pax_global_header00006660000000000000000000000064133130002620014500gustar00rootroot0000000000000052 comment=1506ab8784a7935827e32a41f4205f4ff7ecac33 kbibtex-0.8.1/000077500000000000000000000000001331300026200131365ustar00rootroot00000000000000kbibtex-0.8.1/.gitignore000066400000000000000000000000031331300026200151170ustar00rootroot00000000000000po kbibtex-0.8.1/.krazy000066400000000000000000000000241331300026200142730ustar00rootroot00000000000000CHECKSETS kde5,foss kbibtex-0.8.1/.reviewboardrc000066400000000000000000000002141331300026200157720ustar00rootroot00000000000000REPOSITORY = 'git://anongit.kde.org/kbibtex' REVIEWBOARD_URL = "https://git.reviewboard.kde.org" GUESS_DESCRIPTION = True BRANCH = "master" kbibtex-0.8.1/CMakeLists.txt000066400000000000000000000120501331300026200156740ustar00rootroot00000000000000if(POLICY CMP0048) cmake_policy(SET CMP0048 NEW) endif(POLICY CMP0048) project( kbibtex VERSION "0.8.1" ) cmake_minimum_required( VERSION 3.2.0 FATAL_ERROR ) set( QT_MIN_VERSION "5.6.0" ) set( KF5_MIN_VERSION "5.26.0" ) find_package(ECM 5.19 REQUIRED NO_MODULE) add_definitions( -DTRANSLATION_DOMAIN="kbibtex" -DHAVE_QTWIDGETS -DHAVE_KF5 -DHAVE_ICU ) set( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules ${ECM_MODULE_PATH} ${ECM_KDE_MODULE_DIR} ${CMAKE_MODULE_PATH} ) include(KDEInstallDirs) include(KDECompilerSettings NO_POLICY_SCOPE) include(KDECMakeSettings) include(ECMInstallIcons) include(ECMSetupVersion) include(ECMAddAppIcon) include(GenerateExportHeader) find_package( Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Core Widgets Network XmlPatterns ) if( BUILD_TESTING ) find_package( Qt5Test ${QT_MIN_VERSION} CONFIG REQUIRED ) if (WRITE_RAWDATAFILE) add_definitions(-DWRITE_RAWDATAFILE) endif(WRITE_RAWDATAFILE) set( TESTSET_DIRECTORY "" CACHE PATH "Directory where the local checkout of Git repository 'kbibtex-testset' is located" ) endif( BUILD_TESTING ) find_package( Qt5WebEngineWidgets ${QT_MIN_VERSION} QUIET CONFIG ) find_package( Qt5WebKitWidgets ${QT_MIN_VERSION} QUIET CONFIG ) find_package( KF5 ${KF5_MIN_VERSION} REQUIRED I18n XmlGui KIO IconThemes ItemViews Completion Parts CoreAddons Service Wallet Crash ) find_package(KF5DocTools) ecm_setup_version( PROJECT VARIABLE_PREFIX KBIBTEX SOVERSION ${KBIBTEX_VERSION_MAJOR} VERSION_HEADER "${CMAKE_CURRENT_BINARY_DIR}/kbibtex-version.h" ) # Compute a 'patch level' even if none were given in the program version if(KBIBTEX_VERSION_PATCH STREQUAL "") set(KBIBTEX_VERSION_PATCH_VALUE 0) else(KBIBTEX_VERSION_PATCH STREQUAL "") set(KBIBTEX_VERSION_PATCH_VALUE KBIBTEX_VERSION_PATCH) endif(KBIBTEX_VERSION_PATCH STREQUAL "") if((${KBIBTEX_VERSION_PATCH_VALUE} GREATER 50) OR (${KBIBTEX_VERSION_PATCH_VALUE} EQUAL 50)) # If the version number indicates a pre-release version such as # '0.7.90', i.e. a beta version for the major release 0.8, so # increment release version from 0.7 to 0.8 math(EXPR KBIBTEX_RELEASE_VERSION_MINOR "${KBIBTEX_VERSION_MINOR} + 1") set( KBIBTEX_RELEASE_VERSION ${KBIBTEX_VERSION_MAJOR}.${KBIBTEX_RELEASE_VERSION_MINOR} ) else((${KBIBTEX_VERSION_PATCH_VALUE} GREATER 50) OR (${KBIBTEX_VERSION_PATCH_VALUE} EQUAL 50)) # Patch level is less than 50, i.e. it is a regular bugfix release # on a stable release set( KBIBTEX_RELEASE_VERSION ${KBIBTEX_VERSION_MAJOR}.${KBIBTEX_VERSION_MINOR} ) endif((${KBIBTEX_VERSION_PATCH_VALUE} GREATER 50) OR (${KBIBTEX_VERSION_PATCH_VALUE} EQUAL 50)) option( UNITY_BUILD "Compile multiple C++ files in one big, merged file (\"Unity build\")\nSee also http://t-fischer.dreamwidth.org/3054.html" ) if(UNITY_BUILD) message(STATUS "Unity build enabled") else(UNITY_BUILD) message(STATUS "Unity build disabled (default), use option UNITY_BUILD to enable it") endif(UNITY_BUILD) # # FIXME may have to be cleaned up a little bit # # Contributed by Jeremy Cribb # if( # APPLE # ) # find_library( # SYS_CONFIG_LIBRARY # SystemConfiguration # ) # mark_as_advanced( # SYS_CONFIG_LIBRARY # ) # # SET(TARGET_EXTERNAL_LIBRARIES iconv ${SYS_CONFIG_LIBRARY}) # set( # ICONV_INCLUDE_DIR # "/opt/local/include" # ) # set( # ICONV_LIBRARIES # "/opt/local/lib/libiconv.dylib" # ) # set( # LIBXSLT_LIBRARIES # "/opt/local/lib/libxslt.dylib" # ) # endif( # APPLE # ) find_package( Poppler REQUIRED COMPONENTS Qt5 ) find_package( ICU REQUIRED COMPONENTS uc i18n ) if( ICU_FOUND ) message( STATUS "Found ICU " ${ICU_VERSION} ) include_directories(${ICU_INCLUDE_DIRS}) endif( ICU_FOUND ) find_package( Qca-qt5 "2.1.0" ) find_package( QtOAuth ) if (Qca-qt5_FOUND AND QTOAUTH_FOUND) message(STATUS "Found Qca-qt5 " ${Qca-qt5_VERSION} " and QtOAuth") add_definitions(-DHAVE_ZOTERO=1) set(BUILD_ZOTERO ON) else(Qca-qt5_FOUND AND QTOAUTH_FOUND) message(STATUS "No Qca-qt5 or no QtOAuth, disabling certain functionality") set(BUILD_ZOTERO OFF) endif(Qca-qt5_FOUND AND QTOAUTH_FOUND) # Make an educated guess where to find headers for QCA-Qt5 # TODO isn't there an "official" way to determine this directory? find_path( QTCRYPTO_INCLUDE_DIR qca.h HINTS ENV ${Qt5Core_INCLUDE_DIRS} ENV ${QT_INCLUDES} PATH_SUFFIXES QtCrypto ) add_subdirectory( config ) add_subdirectory( src ) add_subdirectory( xslt ) add_subdirectory( mime ) if(KF5DocTools_FOUND) add_subdirectory(doc) endif() # macro_optional_add_subdirectory( # po # ) feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES) kbibtex-0.8.1/ChangeLog000066400000000000000000000231301331300026200147070ustar00rootroot00000000000000ChangeLog Diff 0.7 to 0.8 Porting from Qt4 to Qt5, from KDE4 (kdelibs) to KDE Frameworks 5, as well as updating various dependencies in the process (e.g. Qt5-based poppler) - Removing old scripts and configuration files - Updating/adding translations - Removing dependency on Qxt as well as sources in src/3rdparty/libqxt - Refactoring various files' location - Various fundamental classes have only optional dependency on KDE Frameworks 5 (default for KDE-based builds, but allows using those classes in Qt5-only setups) - Various modernizations of C++ code towards C++11, including deprecation of SIGNAL/SLOT - Moving bibliography files that previously resided in testset/ into their own Git repository (kbibtex-testset) - Removing ISBNdb as it is no longer a free service - KDE Bug 393032: Updating list of journal abbreviations - KDE Bug 393224: LyX pipe detection (issues with Kile 3 fixed) - KDE Bug 391198: Preview image/vnd.djvu+multipage files - KDE Bug 389306: Removal of libQxt - KDE Bug 387638: Locating correct QtOAuth library fixed - KDE Bug 388688: Screenshots for appdata updated - KDE Bug 386226: Character '~' not recognized in localfile entry - KDE Bug 352517: Invalid report, but more verbose output will be logged - KDE Bug 384741: Wrong ID Reported in Duplicate Dialog - KDE Bug 381119: Do not refer to defunct Gna! anymore (note: Gna! infrastructure shut down before all materials (postings) could be retrieved) - KDE Bug 378497: Fixing crash when closing settings dialog - KDE Bug 368732: More options for ID generation: volume number, first page - Numerous small fixes and changes, run 'git diff v0.6.2..v0.7' for details Contributing authors include: Allen Winter, Andreas Sturmlechner, Andrius Štikonas, Antonio Rojas, Bastien Roucaries, Burkhard Lück, Christoph Feck, Frederik Schwarzer, Joao Carreira, Juergen Spitzmueller, Luigi Toscano, Pino Toscano, Raymond Wooninck, Thomas Fischer, and Yuri Chornoivan Diff 0.6.2 to 0.7 - Dependency on Qt WebKit can be disabled at compile time - New dependency on ICU, used to transliterate text to plain ASCII - Generally improved code quality as detected by code checkers such as Clazy or Coverity - New online search: bioRxiv - Various minor fixes - Search in Zotero is rate limited to avoid overloading server - Using KWallet to store Zotero credentials - Adding basic DBUS support to, for example, open files or paste text - Numerous small fixes and changes, run 'git diff v0.6.2..v0.7' for details Diff 0.6.1 to 0.6.2 - KDE Bug 377401: https://bugs.kde.org/show_bug.cgi?id=377401 KBibTeX fails to load zotero bibliography - Numerous small fixes and changes, run 'git diff v0.6.1..v0.6.2' for details Diff 0.6 to 0.6.1 - KDE Bug 351455: https://bugs.kde.org/show_bug.cgi?id=351455 Removing soversion from KBibTeX Part - KDE Bug 353898: https://bugs.kde.org/show_bug.cgi?id=353898 Fixing build issues on ARM architecture - KDE Bug 354785: https://bugs.kde.org/show_bug.cgi?id=354785 Using QTextDocument/QTextEdit instead of WebKit/WebEngine: more lightweight and supported on all platforms - KDE Bug 371515: Speeding up selection of elements in bibliography lists - KDE Bug 371593: Sorting field and entry types in comboboxes alphabetically - Fixing crash when open file got modified externally - Correcting choke on PubMed searches to 10 seconds - Fixing search issues for ACM, Google Scholar, JSTOR, and ScienceDirect - Setting foreground color of colored rows to either black or white for better readability - Disabling OCLC WorldCat (request for support denied by this organization) - Generally improved code quality as detected by code checkers such as Clazy or Coverity - Fixing handling of URLs and their protocols for local files - Fixing setting default id suggestion - Adding 'Keywords' field to .desktop file - Removing file that was licensed under CC BY-NC, but never got installed - Improved Unicode support - Refactoring writing of bibliography files, both to local and to remote places, including writing to symbolic links - Better handling quotation marks and protective curly brackets around titles - Updating translations - Numerous small fixes and changes, run 'git diff v0.6..v0.6.1' for details Diff 0.5.2 to 0.6 - Allowing "unity builds", i.e. merging source code files for faster compilation - Enabling BibUtils support to import/export exotic file formats - Entries can be rated with stars - Adding entry type for Master's thesis - Setting entry identifiers automatically if configured by user - Files (e.g. PDF) can be 'associated' with an entry, including moving/copying/renaming the file to match the bibliography's location and the entry's id - In the element editor, unused tabs are no longer just disabled, but hidden instead - Automatic column-resizing improved - Bibliographies can be imported from Zotero - Adding user interface translations to various languages - New online search engines: CERN Document Server, DOI, IDEAS (RePEc), MR Lookup; fixes to existing search engines - New dockets for file settings, file statistics, and browsing Zotero bibliographies - Value selected in the value list can be added or removed from selected entries - Enhancing the Id Suggestion system - Various fixes as suggested by KDE's code analysis tool Krazy - Numerous small fixes and changes, run 'git diff v0.5.2..v0.6' for details Diff 0.5.1 to 0.5.2 - Migrating to KDE's Git infrastructure - Gna Bug 22418: http://gna.org/bugs/?22418: Relative paths fail to get resolved - KDE Bug 339086: https://bugs.kde.org/show_bug.cgi?id=339086 Fixing ScienceDirect search - KDE Bug 343855: https://bugs.kde.org/show_bug.cgi?id=343855 'Copy Reference' setting in GUI correctly stored - KDE Bug 344495: https://bugs.kde.org/show_bug.cgi?id=344495 Uninitialized variable causes crash - KDE Bug 344497: https://bugs.kde.org/show_bug.cgi?id=344497 Message next to Import button in Search Results - Various minor changes and backports from 0.6.x Run git log v0.5.1..v0.5.2 for a more detailed change log Diff 0.5 to 0.5.1 - KDE Bug 329724: https://bugs.kde.org/show_bug.cgi?id=329724 Fixing sorting issue in main list - KDE Bug 329750: https://bugs.kde.org/show_bug.cgi?id=329750 KBibTeX will set itself as default bibliography editor in KDE - KDE Bug 330700: https://bugs.kde.org/show_bug.cgi?id=330700 Crash when finding PDFs - KDE Bug 332043: https://bugs.kde.org/show_bug.cgi?id=332043 Fixing crash in id suggestion editor - Gentoo Bug 498932: https://bugs.gentoo.org/show_bug.cgi?id=498932 Fixing compilation issue - Gna Bug 21581: http://gna.org/bugs/?21581 Restoring session state (1) - Gna Bug 21545: http://gna.org/bugs/?21545 Restoring session state (2) - Debian Bug 689310: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689310 Correctly parsing command line arguments if relative paths are given - Various minor clean-ups and improvements Run git log v0.5..v0.5.1 for a more detailed change log Diff 0.4.1 to 0.5 - Initial support for BibLaTeX - Id Suggestion editor like available in old KDE3 version - "Find PDF" function to locate PDF files through web search engines - New online database searches: MathSciNet, Ingenta Connect, Inspire Hep, SAO/NASA ADS, ISBN DB, JStor - Improved memory management - Numerous bug fixes and improvements Diff 0.4 to 0.4.1 - Web searches: Improved support for user-triggered cancelling - SpringerLink search: GUI changes, using api.springer.com for search - PubMed: Limiting search requests per time - ACM Portal: Retrieving "month", fixing HTTP header - JSTOR: fixing HTTP header - Google Scholar: Updates to compensate for changes in Google's web layout; handling redirects - Science Direct: Updates to compensate for changes in Science Direct's web layout; handling redirects - arXiv: Trying to extract bibliographic information from journal strings - BibSonomy: Specifying number of hits to find - Minor changes in IEEExplore search; non-functional due to Qt bug? - Web search uses KDE's proxy settings - Using KDE subsystem to open external files (e.g. PDF files) - Adding preview for images (in addition to PDF or HTML files); handling references to arXiv - Squeezing long file names in user interface - Handling quit actions more gracefully - Improving interface to external programs such as pdflatex - More robust XSL transformations - BibTeX import: guessing encoding information left by JabRef, more informative debug output, improved handling of multiple fields with same name - Reference preview: supporting dark color schemes - Fixing sorting in value list - Fixes in setting color tag to entries - Fixes in name formatting - Keeping user interface read-only for read-only use cases - Numerous bug fixes, closing memory leaks, speed improvements - Fixes in duplicate merging code: remove fields user doesn't want to keep Diff 0.3 to 0.4 - Support for Windows (compiles out of the box) - Configuration file system refactored - Adding more online search engines: SpringerLink, PubMed, ACM Digital Library, JSTOR, IEEE Xplorer, Science Direct - Improving all other online search engines: Google Scholar, arXiv, BibSonomy - "List of Values" refactored, allows to search for items - Introducing preferences dialog to manage various settings - Improved support for drag'n'drop throughout the program - Improving tagging elements with color - Introducing global keyword list to select from - Editing widgets get "history" to select from - Widget for cross references allows to select from existing elements - Introducing duplicate finding and merging code and user interface - Improvements in usability of filter line edit - File view can resize and order columns, settings get stored - Improving file importer and exporter filters - BibTeX references can be sent to LyX via a pipe - Numerous bug fixes kbibtex-0.8.1/LICENSE000066400000000000000000000431331331300026200141470ustar00rootroot00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. kbibtex-0.8.1/Mainpage.dox000066400000000000000000000006341331300026200153760ustar00rootroot00000000000000/** @mainpage KBibTeX API Reference KBibTeX is a graphical editor for BibTeX and BibLaTeX files. @authors Thomas Fischer @maintainers Thomas Fischer @licenses @gpl */ // DOXYGEN_ENABLE = YES // DOXYGEN_SET_RECURSIVE=YES // DOXYGEN_SET_PROJECT_NAME = KBibTeX // DOXYGEN_COPYRIGHT = 2004-2014 Thomas Fischer // vim:ts=4:sw=4:expandtab:filetype=doxygen kbibtex-0.8.1/Messages.sh000066400000000000000000000020211331300026200152340ustar00rootroot00000000000000#!/bin/sh # Suggested by Yuri Chornoivan in Git Review Board request 114119 # https://git.reviewboard.kde.org/r/114119/ # to extract strings in configuration files to be translated as well. # In C++ code used like this: # QString translated = i18n(configGroup.readEntry("uiCaption", QString()).toUtf8().constData()); find config -name \*.kbstyle -exec sed -ne '/Label=\|uiLabel\|uiCaption/p' {} \; | sed 's/.*=\([A-Za-z\(\)\/].*\)/i18n("\1");/' >>rc.cpp # Taking instructions from # http://techbase.kde.org/Development/Tutorials/Localization/i18n_Build_Systems # invoke the extractrc script on all .ui, .rc, and .kcfg files in the sources # the results are stored in a pseudo .cpp file to be picked up by xgettext. $EXTRACTRC `find src -name \*.rc -o -name \*.ui -o -name \*.kcfg | sort -u` >>rc.cpp # call xgettext on all source files. If your sources have other filename # extensions besides .cpp and .h, just add them in the find call. $XGETTEXT `find src -name \*.h -o -name \*.cpp | grep -v '/test/'` rc.cpp -o $podir/kbibtex.pot kbibtex-0.8.1/README000066400000000000000000000026741331300026200140270ustar00rootroot00000000000000KBibTeX ======= Copyright: 2004-2017 Thomas Fischer Author/Maintainer: Thomas Fischer Description ----------- The program KBibTeX is a bibliography editor by KDE. Its main purpose is to provide a user-friendly interface to BibTeX files. Homepage -------- Visit https://userbase.kde.org/KBibTeX for more information. Dependencies ------------ KBibTeX makes heavily use of KDE Frameworks 5 and therefore Qt 5. Furthermore a number of additional dependencies exist to, for example, parse PDF or XML files. In detail, the following dependencies exist: * Compile time - Qt 5.6 or later, required components Core, Widgets, and Network - KDE Frameworks 5.26 or later, required components I18n, XmlGui, KIO, IconThemes, ItemViews, Completion, Parts, CoreAddons, Service, DocTools, Wallet, Crash, and has helper package: extra-cmake-modules (ECM) - libxml2 (any recent version should suffice) - libxslt (any recent version should suffice) - Poppler 0.32 or later with Qt5 bindings installed - QCA 2.0 or later with Qt5 bindings installed - ICU (any recent version should suffice), required components uc and i18n - QtOAuth 2.0 or later (OPTIONAL) * Runtime - BibUtils to import/export various bibliography formats In case this list is incomplete, wrong, or out-dated, please file a bug for KBibTeX at https://bugs.kde.org/ kbibtex-0.8.1/TODO000066400000000000000000000040541331300026200136310ustar00rootroot00000000000000INFO: This TODO list will most likely outdate very quickly Within the scope of more future releases (0.6.x), the following features and bugs are to be addressed: - Consider "QScopedPointer" and "QPointer" for cleaner memory management - Look into QtConcurrent if it may be of use for KBibTeX - Bug 21007: Make formatting, indentation, and capitalization customizable when writing BibTeX files - Bug 19750: Filter bar looks into every field including localfile. Needs more information. - Bug 19657: Add support for isbndb - Bug 19516: Add spell-checking support - Bug 18183: Increase number of search hits after initial search is complete. Should be added before more search engines are added - Bug 18142: Library mode, where both bibliography and PDF files are managed by KBibTeX. - Bugs 17318, 18038: Zotero support, e.g. accessing the bibliographic database or using its search capabilities. Jorg Ehrichs is working on some code as part of the Conquirere project; this code may be used here. - Adding support for MODS XML format - Bug 17893: Z39.50 support: At least basic support should be integrated. - Bug 18038: There is something called BrowserInterface. Look into that - Bug 20042: Create your own custom fields like in KDE3 version - Bug 20090: Improved drag'n'drop support for PDF files - Bug 20094: Rearrange items order manually - Bug 21012: Element editor too large, resizing issues More far future: - Bug 19863: slow "author list generator"? Due to generation of user interface. May need considerable redesign in the future. BibLaTeX-related: - Bug 20928: Conversion of aliases in biblatex files - Bug 20407: Dynamic crossref resolution - Bug 18662: BibLaTeX support needs to be refined and tested. Related Bug 20407: Dynamic crossref resolution using "xdata" and "xref" BibLaTeX amplifies bug 21012 Unconfirmed or need info: - Bug 20922: list doesn't scroll down when browsing with cursor keys - Bug 20798: Crash when opening kbibtex - Bug 20732: KBibTeX doesn't remember its window width correctly - Bug 20813: Selected entries are deleted kbibtex-0.8.1/cmake/000077500000000000000000000000001331300026200142165ustar00rootroot00000000000000kbibtex-0.8.1/cmake/modules/000077500000000000000000000000001331300026200156665ustar00rootroot00000000000000kbibtex-0.8.1/cmake/modules/FindICU.cmake000066400000000000000000000415731331300026200201230ustar00rootroot00000000000000# This module can find the International Components for Unicode (ICU) Library # # Requirements: # - CMake >= 2.8.3 (for new version of find_package_handle_standard_args) # # The following variables will be defined for your use: # - ICU_FOUND : were all of your specified components found (include dependencies)? # - ICU_INCLUDE_DIRS : ICU include directory # - ICU_LIBRARIES : ICU libraries # - ICU_VERSION : complete version of ICU (x.y.z) # - ICU_MAJOR_VERSION : major version of ICU # - ICU_MINOR_VERSION : minor version of ICU # - ICU_PATCH_VERSION : patch version of ICU # - ICU__FOUND : were found? (FALSE for non specified component if it is not a dependency) # # For windows or non standard installation, define ICU_ROOT variable to point to the root installation of ICU. Two ways: # - run cmake with -DICU_ROOT= # - define an environment variable with the same name before running cmake # With cmake-gui, before pressing "Configure": # 1) Press "Add Entry" button # 2) Add a new entry defined as: # - Name: ICU_ROOT # - Type: choose PATH in the selection list # - Press "..." button and select the root installation of ICU # # Example Usage: # # 1. Copy this file in the root of your project source directory # 2. Then, tell CMake to search this non-standard module in your project directory by adding to your CMakeLists.txt: # set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}) # 3. Finally call find_package() once, here are some examples to pick from # # Require ICU 4.4 or later # find_package(ICU 4.4 REQUIRED) # # if(ICU_FOUND) # include_directories(${ICU_INCLUDE_DIRS}) # add_executable(myapp myapp.c) # target_link_libraries(myapp ${ICU_LIBRARIES}) # endif(ICU_FOUND) #============================================================================= # Copyright (c) 2011-2013, julp # # Distributed under the OSI-approved BSD License # # This software is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. #============================================================================= find_package(PkgConfig QUIET) ########## Private ########## if(NOT DEFINED ICU_PUBLIC_VAR_NS) set(ICU_PUBLIC_VAR_NS "ICU") # Prefix for all ICU relative public variables endif(NOT DEFINED ICU_PUBLIC_VAR_NS) if(NOT DEFINED ICU_PRIVATE_VAR_NS) set(ICU_PRIVATE_VAR_NS "_${ICU_PUBLIC_VAR_NS}") # Prefix for all ICU relative internal variables endif(NOT DEFINED ICU_PRIVATE_VAR_NS) if(NOT DEFINED PC_ICU_PRIVATE_VAR_NS) set(PC_ICU_PRIVATE_VAR_NS "_PC${ICU_PRIVATE_VAR_NS}") # Prefix for all pkg-config relative internal variables endif(NOT DEFINED PC_ICU_PRIVATE_VAR_NS) function(icudebug _VARNAME) if(${ICU_PUBLIC_VAR_NS}_DEBUG) if(DEFINED ${ICU_PUBLIC_VAR_NS}_${_VARNAME}) message("${ICU_PUBLIC_VAR_NS}_${_VARNAME} = ${${ICU_PUBLIC_VAR_NS}_${_VARNAME}}") else(DEFINED ${ICU_PUBLIC_VAR_NS}_${_VARNAME}) message("${ICU_PUBLIC_VAR_NS}_${_VARNAME} = ") endif(DEFINED ${ICU_PUBLIC_VAR_NS}_${_VARNAME}) endif(${ICU_PUBLIC_VAR_NS}_DEBUG) endfunction(icudebug) set(${ICU_PRIVATE_VAR_NS}_ROOT "") if(DEFINED ENV{ICU_ROOT}) set(${ICU_PRIVATE_VAR_NS}_ROOT "$ENV{ICU_ROOT}") endif(DEFINED ENV{ICU_ROOT}) if (DEFINED ICU_ROOT) set(${ICU_PRIVATE_VAR_NS}_ROOT "${ICU_ROOT}") endif(DEFINED ICU_ROOT) set(${ICU_PRIVATE_VAR_NS}_BIN_SUFFIXES ) set(${ICU_PRIVATE_VAR_NS}_LIB_SUFFIXES ) if(CMAKE_SIZEOF_VOID_P EQUAL 8) list(APPEND ${ICU_PRIVATE_VAR_NS}_BIN_SUFFIXES "bin64") list(APPEND ${ICU_PRIVATE_VAR_NS}_LIB_SUFFIXES "lib64") endif(CMAKE_SIZEOF_VOID_P EQUAL 8) list(APPEND ${ICU_PRIVATE_VAR_NS}_BIN_SUFFIXES "bin") list(APPEND ${ICU_PRIVATE_VAR_NS}_LIB_SUFFIXES "lib") set(${ICU_PRIVATE_VAR_NS}_COMPONENTS ) # ... macro(icu_declare_component _NAME) list(APPEND ${ICU_PRIVATE_VAR_NS}_COMPONENTS ${_NAME}) set("${ICU_PRIVATE_VAR_NS}_COMPONENTS_${_NAME}" ${ARGN}) endmacro(icu_declare_component) icu_declare_component(data icudata) icu_declare_component(uc icuuc) # Common and Data libraries icu_declare_component(i18n icui18n icuin) # Internationalization library icu_declare_component(io icuio ustdio) # Stream and I/O Library icu_declare_component(le icule) # Layout library icu_declare_component(lx iculx) # Paragraph Layout library ########## Public ########## set(${ICU_PUBLIC_VAR_NS}_FOUND TRUE) set(${ICU_PUBLIC_VAR_NS}_LIBRARIES ) set(${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS ) set(${ICU_PUBLIC_VAR_NS}_C_FLAGS "") set(${ICU_PUBLIC_VAR_NS}_CXX_FLAGS "") set(${ICU_PUBLIC_VAR_NS}_CPP_FLAGS "") set(${ICU_PUBLIC_VAR_NS}_C_SHARED_FLAGS "") set(${ICU_PUBLIC_VAR_NS}_CXX_SHARED_FLAGS "") set(${ICU_PUBLIC_VAR_NS}_CPP_SHARED_FLAGS "") foreach(${ICU_PRIVATE_VAR_NS}_COMPONENT ${${ICU_PRIVATE_VAR_NS}_COMPONENTS}) string(TOUPPER "${${ICU_PRIVATE_VAR_NS}_COMPONENT}" ${ICU_PRIVATE_VAR_NS}_UPPER_COMPONENT) set("${ICU_PUBLIC_VAR_NS}_${${ICU_PRIVATE_VAR_NS}_UPPER_COMPONENT}_FOUND" FALSE) # may be done in the icu_declare_component macro endforeach(${ICU_PRIVATE_VAR_NS}_COMPONENT) # Check components if(NOT ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS) # uc required at least set(${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS uc) else(NOT ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS) list(APPEND ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS uc) list(REMOVE_DUPLICATES ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS) foreach(${ICU_PRIVATE_VAR_NS}_COMPONENT ${${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS}) if(NOT DEFINED ${ICU_PRIVATE_VAR_NS}_COMPONENTS_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) message(FATAL_ERROR "Unknown ICU component: ${${ICU_PRIVATE_VAR_NS}_COMPONENT}") endif(NOT DEFINED ${ICU_PRIVATE_VAR_NS}_COMPONENTS_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) endforeach(${ICU_PRIVATE_VAR_NS}_COMPONENT) endif(NOT ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS) # Includes find_path( ${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS NAMES unicode/utypes.h utypes.h HINTS ${${ICU_PRIVATE_VAR_NS}_ROOT} PATH_SUFFIXES "include" DOC "Include directories for ICU" ) if(${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS) ########## ########## if(EXISTS "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/uvernum.h") # ICU >= 4 file(READ "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/uvernum.h" ${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS) elseif(EXISTS "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/uversion.h") # ICU [2;4[ file(READ "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/uversion.h" ${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS) elseif(EXISTS "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/utypes.h") # ICU [1.4;2[ file(READ "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/unicode/utypes.h" ${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS) elseif(EXISTS "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/utypes.h") # ICU 1.3 file(READ "${${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS}/utypes.h" ${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS) else() message(FATAL_ERROR "ICU version header not found") endif() if(${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS MATCHES ".*# *define *ICU_VERSION *\"([0-9]+)\".*") # ICU 1.3 # [1.3;1.4[ as #define ICU_VERSION "3" (no patch version, ie all 1.3.X versions will be detected as 1.3.0) set(${ICU_PUBLIC_VAR_NS}_MAJOR_VERSION "1") set(${ICU_PUBLIC_VAR_NS}_MINOR_VERSION "${CMAKE_MATCH_1}") set(${ICU_PUBLIC_VAR_NS}_PATCH_VERSION "0") elseif(${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS MATCHES ".*# *define *U_ICU_VERSION_MAJOR_NUM *([0-9]+).*") # # Since version 4.9.1, ICU release version numbering was totaly changed, see: # - http://site.icu-project.org/download/49 # - http://userguide.icu-project.org/design#TOC-Version-Numbers-in-ICU # set(${ICU_PUBLIC_VAR_NS}_MAJOR_VERSION "${CMAKE_MATCH_1}") string(REGEX REPLACE ".*# *define *U_ICU_VERSION_MINOR_NUM *([0-9]+).*" "\\1" ${ICU_PUBLIC_VAR_NS}_MINOR_VERSION "${${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS}") string(REGEX REPLACE ".*# *define *U_ICU_VERSION_PATCHLEVEL_NUM *([0-9]+).*" "\\1" ${ICU_PUBLIC_VAR_NS}_PATCH_VERSION "${${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS}") elseif(${ICU_PRIVATE_VAR_NS}_VERSION_HEADER_CONTENTS MATCHES ".*# *define *U_ICU_VERSION *\"(([0-9]+)(\\.[0-9]+)*)\".*") # ICU [1.4;1.8[ # [1.4;1.8[ as #define U_ICU_VERSION "1.4.1.2" but it seems that some 1.4.1(?:\.\d)? have releasing error and appears as 1.4.0 set(${ICU_PRIVATE_VAR_NS}_FULL_VERSION "${CMAKE_MATCH_1}") # copy CMAKE_MATCH_1, no longer valid on the following if if(${ICU_PRIVATE_VAR_NS}_FULL_VERSION MATCHES "^([0-9]+)\\.([0-9]+)$") set(${ICU_PUBLIC_VAR_NS}_MAJOR_VERSION "${CMAKE_MATCH_1}") set(${ICU_PUBLIC_VAR_NS}_MINOR_VERSION "${CMAKE_MATCH_2}") set(${ICU_PUBLIC_VAR_NS}_PATCH_VERSION "0") elseif(${ICU_PRIVATE_VAR_NS}_FULL_VERSION MATCHES "^([0-9]+)\\.([0-9]+)\\.([0-9]+)") set(${ICU_PUBLIC_VAR_NS}_MAJOR_VERSION "${CMAKE_MATCH_1}") set(${ICU_PUBLIC_VAR_NS}_MINOR_VERSION "${CMAKE_MATCH_2}") set(${ICU_PUBLIC_VAR_NS}_PATCH_VERSION "${CMAKE_MATCH_3}") endif() else() message(FATAL_ERROR "failed to detect ICU version") endif() set(${ICU_PUBLIC_VAR_NS}_VERSION "${${ICU_PUBLIC_VAR_NS}_MAJOR_VERSION}.${${ICU_PUBLIC_VAR_NS}_MINOR_VERSION}.${${ICU_PUBLIC_VAR_NS}_PATCH_VERSION}") ########## ########## # Check dependencies (implies pkg-config) if(PKG_CONFIG_FOUND) set(${ICU_PRIVATE_VAR_NS}_COMPONENTS_DUP ${${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS}) foreach(${ICU_PRIVATE_VAR_NS}_COMPONENT ${${ICU_PRIVATE_VAR_NS}_COMPONENTS_DUP}) pkg_check_modules(PC_ICU_PRIVATE_VAR_NS "icu-${${ICU_PRIVATE_VAR_NS}_COMPONENT}" QUIET) if(${PC_ICU_PRIVATE_VAR_NS}_FOUND) foreach(${PC_ICU_PRIVATE_VAR_NS}_LIBRARY ${PC_ICU_LIBRARIES}) string(REGEX REPLACE "^icu" "" ${PC_ICU_PRIVATE_VAR_NS}_STRIPPED_LIBRARY ${${PC_ICU_PRIVATE_VAR_NS}_LIBRARY}) list(APPEND ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS ${${PC_ICU_PRIVATE_VAR_NS}_STRIPPED_LIBRARY}) endforeach(${PC_ICU_PRIVATE_VAR_NS}_LIBRARY) endif(${PC_ICU_PRIVATE_VAR_NS}_FOUND) endforeach(${ICU_PRIVATE_VAR_NS}_COMPONENT) list(REMOVE_DUPLICATES ${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS) endif(PKG_CONFIG_FOUND) # Check libraries foreach(${ICU_PRIVATE_VAR_NS}_COMPONENT ${${ICU_PUBLIC_VAR_NS}_FIND_COMPONENTS}) set(${ICU_PRIVATE_VAR_NS}_POSSIBLE_RELEASE_NAMES ) set(${ICU_PRIVATE_VAR_NS}_POSSIBLE_DEBUG_NAMES ) foreach(${ICU_PRIVATE_VAR_NS}_BASE_NAME ${${ICU_PRIVATE_VAR_NS}_COMPONENTS_${${ICU_PRIVATE_VAR_NS}_COMPONENT}}) list(APPEND ${ICU_PRIVATE_VAR_NS}_POSSIBLE_RELEASE_NAMES "${${ICU_PRIVATE_VAR_NS}_BASE_NAME}") list(APPEND ${ICU_PRIVATE_VAR_NS}_POSSIBLE_DEBUG_NAMES "${${ICU_PRIVATE_VAR_NS}_BASE_NAME}d") list(APPEND ${ICU_PRIVATE_VAR_NS}_POSSIBLE_RELEASE_NAMES "${${ICU_PRIVATE_VAR_NS}_BASE_NAME}${ICU_MAJOR_VERSION}${ICU_MINOR_VERSION}") list(APPEND ${ICU_PRIVATE_VAR_NS}_POSSIBLE_DEBUG_NAMES "${${ICU_PRIVATE_VAR_NS}_BASE_NAME}${ICU_MAJOR_VERSION}${ICU_MINOR_VERSION}d") endforeach(${ICU_PRIVATE_VAR_NS}_BASE_NAME) find_library( ${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT} NAMES ${${ICU_PRIVATE_VAR_NS}_POSSIBLE_RELEASE_NAMES} HINTS ${${ICU_PRIVATE_VAR_NS}_ROOT} PATH_SUFFIXES ${_ICU_LIB_SUFFIXES} DOC "Release libraries for ICU" ) find_library( ${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT} NAMES ${${ICU_PRIVATE_VAR_NS}_POSSIBLE_DEBUG_NAMES} HINTS ${${ICU_PRIVATE_VAR_NS}_ROOT} PATH_SUFFIXES ${_ICU_LIB_SUFFIXES} DOC "Debug libraries for ICU" ) string(TOUPPER "${${ICU_PRIVATE_VAR_NS}_COMPONENT}" ${ICU_PRIVATE_VAR_NS}_UPPER_COMPONENT) if(NOT ${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT} AND NOT ${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) # both not found set("${ICU_PUBLIC_VAR_NS}_${${ICU_PRIVATE_VAR_NS}_UPPER_COMPONENT}_FOUND" FALSE) set("${ICU_PUBLIC_VAR_NS}_FOUND" FALSE) else(NOT ${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT} AND NOT ${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) # one or both found set("${ICU_PUBLIC_VAR_NS}_${${ICU_PRIVATE_VAR_NS}_UPPER_COMPONENT}_FOUND" TRUE) if(NOT ${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) # release not found => we are in debug set(${ICU_PRIVATE_VAR_NS}_LIB_${${ICU_PRIVATE_VAR_NS}_COMPONENT} "${${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}}") elseif(NOT ${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) # debug not found => we are in release set(${ICU_PRIVATE_VAR_NS}_LIB_${${ICU_PRIVATE_VAR_NS}_COMPONENT} "${${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT}}") else() # both found set( ${ICU_PRIVATE_VAR_NS}_LIB_${${ICU_PRIVATE_VAR_NS}_COMPONENT} optimized ${${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT}} debug ${${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}} ) endif() list(APPEND ${ICU_PUBLIC_VAR_NS}_LIBRARIES ${${ICU_PRIVATE_VAR_NS}_LIB_${${ICU_PRIVATE_VAR_NS}_COMPONENT}}) endif(NOT ${ICU_PRIVATE_VAR_NS}_LIB_RELEASE_${${ICU_PRIVATE_VAR_NS}_COMPONENT} AND NOT ${ICU_PRIVATE_VAR_NS}_LIB_DEBUG_${${ICU_PRIVATE_VAR_NS}_COMPONENT}) endforeach(${ICU_PRIVATE_VAR_NS}_COMPONENT) # Try to find out compiler flags find_program(${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE icu-config HINTS ${${ICU_PRIVATE_VAR_NS}_ROOT}) if(${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cflags OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_C_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cxxflags OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_CXX_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cppflags OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_CPP_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cflags-dynamic OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_C_SHARED_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cxxflags-dynamic OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_CXX_SHARED_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) execute_process(COMMAND ${${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE} --cppflags-dynamic OUTPUT_VARIABLE ${ICU_PUBLIC_VAR_NS}_CPP_SHARED_FLAGS OUTPUT_STRIP_TRAILING_WHITESPACE) endif(${ICU_PUBLIC_VAR_NS}_CONFIG_EXECUTABLE) # Check find_package arguments include(FindPackageHandleStandardArgs) if(${ICU_PUBLIC_VAR_NS}_FIND_REQUIRED AND NOT ${ICU_PUBLIC_VAR_NS}_FIND_QUIETLY) find_package_handle_standard_args( ${ICU_PUBLIC_VAR_NS} REQUIRED_VARS ${ICU_PUBLIC_VAR_NS}_LIBRARIES ${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS VERSION_VAR ${ICU_PUBLIC_VAR_NS}_VERSION ) else(${ICU_PUBLIC_VAR_NS}_FIND_REQUIRED AND NOT ${ICU_PUBLIC_VAR_NS}_FIND_QUIETLY) find_package_handle_standard_args(${ICU_PUBLIC_VAR_NS} "ICU not found" ${ICU_PUBLIC_VAR_NS}_LIBRARIES ${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS) endif(${ICU_PUBLIC_VAR_NS}_FIND_REQUIRED AND NOT ${ICU_PUBLIC_VAR_NS}_FIND_QUIETLY) else(${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS) if(${ICU_PUBLIC_VAR_NS}_FIND_REQUIRED AND NOT ${ICU_PUBLIC_VAR_NS}_FIND_QUIETLY) message(FATAL_ERROR "Could not find ICU include directory") endif(${ICU_PUBLIC_VAR_NS}_FIND_REQUIRED AND NOT ${ICU_PUBLIC_VAR_NS}_FIND_QUIETLY) endif(${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS) mark_as_advanced( ${ICU_PUBLIC_VAR_NS}_INCLUDE_DIRS ${ICU_PUBLIC_VAR_NS}_LIBRARIES ) # IN (args) icudebug("FIND_COMPONENTS") icudebug("FIND_REQUIRED") icudebug("FIND_QUIETLY") icudebug("FIND_VERSION") # OUT # Found icudebug("FOUND") icudebug("UC_FOUND") icudebug("I18N_FOUND") icudebug("IO_FOUND") icudebug("LE_FOUND") icudebug("LX_FOUND") icudebug("DATA_FOUND") # Flags icudebug("C_FLAGS") icudebug("CPP_FLAGS") icudebug("CXX_FLAGS") icudebug("C_SHARED_FLAGS") icudebug("CPP_SHARED_FLAGS") icudebug("CXX_SHARED_FLAGS") # Linking icudebug("INCLUDE_DIRS") icudebug("LIBRARIES") # Version icudebug("MAJOR_VERSION") icudebug("MINOR_VERSION") icudebug("PATCH_VERSION") icudebug("VERSION") kbibtex-0.8.1/cmake/modules/FindQtOAuth.cmake000066400000000000000000000041521331300026200210200ustar00rootroot00000000000000# - Try to find the QtOAuth library # Once done this will define # # QTOAUTH_FOUND - system has the QtOAuth library # QTOAUTH_INCLUDE_DIR - the QtOAuth include directory # QTOAUTH_LIBRARY - Link this to use the QtOAuth # QTOAUTH_DEFINITIONS - Compiler switches required for using QOAuth # # File taken from project Choqok # https://projects.kde.org/projects/extragear/network/choqok/ # # Copyright © 2010, Mehrdad Momeny # Copyright © 2010, Harald Sitter # # Redistribution and use is allowed according to the terms of the BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. if (QTOAUTH_INCLUDE_DIR AND QTOAUTH_LIBRARY) # in cache already set(QTOAUTH_FOUND TRUE) else (QTOAUTH_INCLUDE_DIR AND QTOAUTH_LIBRARY) if (NOT WIN32) find_package(PkgConfig) pkg_check_modules(PC_QTOAUTH QUIET qoauth-qt5) if ("${PC_QTOAUTH_INCLUDEDIR}" STREQUAL "" AND "${PC_QTOAUTH_INCLUDE_DIRS}" STREQUAL "") # Testing explicitly for Qt5 variant of qoauth failed, # maybe testing for a generic qoauth variant will succeed? pkg_check_modules(PC_QTOAUTH QUIET qoauth) endif ("${PC_QTOAUTH_INCLUDEDIR}" STREQUAL "" AND "${PC_QTOAUTH_INCLUDE_DIRS}" STREQUAL "") set(QTOAUTH_DEFINITIONS ${PC_QTOAUTH_CFLAGS_OTHER}) endif(NOT WIN32) find_library(QTOAUTH_LIBRARY NAMES qoauth-qt5 HINTS ${PC_QTOAUTH_LIBDIR} ${PC_QTOAUTH_LIBRARY_DIRS} ) if ("${QTOAUTH_LIBRARY}" STREQUAL "QTOAUTH_LIBRARY-NOTFOUND") # Similar problem as above: maybe the library is not # called '*qoauth-qt5*', but just '*qoauth*' find_library(QTOAUTH_LIBRARY NAMES qoauth HINTS ${PC_QTOAUTH_LIBDIR} ${PC_QTOAUTH_LIBRARY_DIRS} ) endif ("${QTOAUTH_LIBRARY}" STREQUAL "QTOAUTH_LIBRARY-NOTFOUND") find_path(QTOAUTH_INCLUDE_DIR QtOAuth/interface.h HINTS ${PC_QTOAUTH_INCLUDEDIR} ${PC_QTOAUTH_INCLUDE_DIRS} ) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(QtOAuth DEFAULT_MSG QTOAUTH_LIBRARY QTOAUTH_INCLUDE_DIR) mark_as_advanced(QTOAUTH_INCLUDE_DIR QTOAUTH_LIBRARY) endif (QTOAUTH_INCLUDE_DIR AND QTOAUTH_LIBRARY) kbibtex-0.8.1/config/000077500000000000000000000000001331300026200144035ustar00rootroot00000000000000kbibtex-0.8.1/config/CMakeLists.txt000066400000000000000000000003401331300026200171400ustar00rootroot00000000000000install( FILES kbibtexrc DESTINATION ${KDE_INSTALL_CONFDIR} ) install( FILES bibtex.kbstyle biblatex.kbstyle jabref_journalabbrevlist.txt DESTINATION ${KDE_INSTALL_DATADIR}/kbibtex ) kbibtex-0.8.1/config/biblatex.kbstyle000066400000000000000000000763201331300026200176040ustar00rootroot00000000000000[EntryType] count=29 [EntryType1] UpperCamelCase=Article Label=Journal Article RequiredItems=author,title,journaltitle,year^date OptionalItems=translator,annotator,commentator,subtitle,titleaddon,editor,editora,editorb,editorc,journalsubtitle,issuetitle,issuesubtitle,language,origlanguage,series,volume,number,eid,issue,month,pages,version,note,issn,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType2] UpperCamelCase=Book Label=Book RequiredItems=author,title,year^date OptionalItems=editor,editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType3] UpperCamelCase=MVBook Label=Multi-volume Book RequiredItems=author,title,year^date OptionalItems=editor,editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,language,origlanguage,edition,volumes,series,number,note,publisher,location,isbn,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType4] UpperCamelCase=InBook Label=Part of a Book RequiredItems=author,title,booktitle,year^date OptionalItems=bookauthor,editor,editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType5] UpperCamelCase=BookInBook Label=Former Monograph as Part of a Book RequiredItems=author,title,booktitle,year^date OptionalItems=bookauthor,editor,editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType6] UpperCamelCase=SuppBook Label=Supplemental Material in a Book RequiredItems=author,title,booktitle,year^date OptionalItems=bookauthor,editor,editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType7] UpperCamelCase=Booklet Label=Booklet RequiredItems=author^editor,title,year^date OptionalItems=subtitle,titleaddon,language,howpublished,type,note,location,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType8] UpperCamelCase=Collection Label=Single-volume Collection RequiredItems=editor,title,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType9] UpperCamelCase=MVCollection Label=Multi-volume Collection RequiredItems=editor,title,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,language,origlanguage,edition,volumes,series,number,note,publisher,location,isbn,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType10] UpperCamelCase=InCollection Label=Part of a Book with own Title RequiredItems=author,editor,title,booktitle,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType11] UpperCamelCase=SuppCollection Label=Supplemental Material in a Collection RequiredItems=author,editor,title,booktitle,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType12] UpperCamelCase=Manual Label=Manual RequiredItems=author^editor,title,year^date OptionalItems=subtitle,titleaddon,language,edition,type,series,number,version,note,organization,publisher,location,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType13] UpperCamelCase=Misc Label=Miscellaneous RequiredItems=author^editor,title,year^date OptionalItems=subtitle,titleaddon,language,howpublished,type,version,note,organization,location,date,month,year,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType14] UpperCamelCase=Online UpperCamelCaseAlt=Electronic Label=Online Resource RequiredItems=author^editor,title,year^date,url OptionalItems=subtitle,titleaddon,language,version,note,organization,date,month,year,addendum,pubstate,urldate [EntryType15] UpperCamelCase=Patent Label=Patent RequiredItems=author,title,number,year^date OptionalItems=holder,subtitle,titleaddon,type,version,location,note,date,month,year,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType16] UpperCamelCase=Periodical Label=Periodical (Complete Issue) RequiredItems=editor,title,year^date OptionalItems=editora,editorb,editorc,subtitle,issuetitle,issuesubtitle,language,series,volume,number,issue,date,month,year,note,issn,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType17] UpperCamelCase=SuppPeriodical Label=Supplemental Material in a Periodical RequiredItems=author,title,journaltitle,year^date OptionalItems=translator,annotator,commentator,subtitle,titleaddon,editor,editora,editorb,editorc,journalsubtitle,issuetitle,issuesubtitle,language,origlanguage,series,volume,number,eid,issue,month,pages,version,note,issn,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType18] UpperCamelCase=Proceedings Label=Conference or Workshop Proceedings RequiredItems=editor,title,year^date OptionalItems=subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,eventtitle,eventdate,venue,language,volume,part,volumes,series,number,note,organization,publisher,location,month,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType19] UpperCamelCase=MVProceedings Label=Multi-volume Proceedings RequiredItems=editor,title,year^date OptionalItems=subtitle,titleaddon,eventtitle,eventdate,venue,language,volumes,series,number,note,organization,publisher,location,month,isbn,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType20] UpperCamelCase=InProceedings UpperCamelCaseAlt=Conference Label=Publication in Conference Proceedings RequiredItems= author,editor,title,booktitle,year^date OptionalItems=subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,eventtitle,eventdate,venue,language,volume,part,volumes,series,number,note,organization,publisher,location,month,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType21] UpperCamelCase=Reference Label=Single-volume Reference (e.g. Encyclopedia) RequiredItems=editor,title,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType22] UpperCamelCase=MVReference Label=Multi-volume Reference (e.g. Encyclopedia) RequiredItems=editor,title,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,language,origlanguage,edition,volumes,series,number,note,publisher,location,isbn,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType23] UpperCamelCase=InReference Label=Part of a Reference RequiredItems=author,editor,title,booktitle,year^date OptionalItems=editora,editorb,editorc,translator,annotator,commentator,introduction,foreword,afterword,subtitle,titleaddon,maintitle,mainsubtitle,maintitleaddon,booksubtitle,booktitleaddon,language,origlanguage,volume,part,edition,volumes,series,number,note,publisher,location,isbn,chapter,pages,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType24] UpperCamelCase=Report Label=Report RequiredItems=author,title,type,institution,year^date OptionalItems=subtitle,titleaddon,language,number,version,note,location,month,isrn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType25] UpperCamelCase=Thesis Label=Thesis RequiredItems=author,title,type,institution,year^date OptionalItems=subtitle,titleaddon,language,note,location,month,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType26] UpperCamelCase=Unpublished Label=Unpublished Material RequiredItems=author,title,year^date OptionalItems=subtitle,titleaddon,language,howpublished,note,location,isbn,date,month,year,addendum,pubstate,url,urldate [EntryType27] UpperCamelCase=MastersThesis Label=Master's Thesis RequiredItems=author,title,institution,year^date OptionalItems=subtitle,titleaddon,type,language,note,location,month,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType28] UpperCamelCase=PhDThesis Label=PhD Thesis RequiredItems=author,title,institution,year^date OptionalItems=subtitle,titleaddon,type,language,note,location,month,isbn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [EntryType29] UpperCamelCase=TechReport Label=Technical Report RequiredItems=author,title,institution,year^date OptionalItems=subtitle,titleaddon,type,language,number,version,note,location,month,isrn,chapter,pages,pagetotal,addendum,pubstate,doi,eprint,eprintclass,eprinttype,url,urldate [Column] count=117 [Column1] UpperCamelCase=^type Label=Element Type DefaultWidth=5 TypeIndependent=true [Column2] UpperCamelCase=^id Label=Identifier DefaultWidth=6 TypeIndependent=true [Column3] UpperCamelCase=Title Label=Title DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column4] UpperCamelCase=Title UpperCamelCaseAlt=BookTitle Label=Title or Book Title DefaultWidth=14 [Column5] UpperCamelCase=SubTitle Label=Subtitle DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column6] UpperCamelCase=TitleAddon Label=Title Addon DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column7] UpperCamelCase=ShortTitle Label=Shortitle DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column8] UpperCamelCase=OrigTitle Label=Original Title DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column9] UpperCamelCase=ReprintTitle Label=Reprint Title DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column10] UpperCamelCase=MainTitle Label=Main Title DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column11] UpperCamelCase=MainSubTitle Label=Main Subtitle DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column12] UpperCamelCase=MainTitleAddon Label=Maintitle Addon DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column13] UpperCamelCase=Author UpperCamelCaseAlt=Editor Label=Author or Editor DefaultWidth=7 [Column14] UpperCamelCase=Author Label=Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column15] UpperCamelCase=ShortAuthor Label=Short Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column16] UpperCamelCase=NameAddon Label=Name Addon DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column17] UpperCamelCase=AuthorType Label=Author Type DefaultWidth=7 Visible=false [Column18] UpperCamelCase=BookAuthor Label=Book Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column19] UpperCamelCase=Editor Label=Editor DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column20] UpperCamelCase=ShortEditor Label=Short Editor DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column21] UpperCamelCase=EditorType Label=Editor Type DefaultWidth=7 Visible=false [Column22] UpperCamelCase=EditorA Label=Editor A DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column23] UpperCamelCase=EditorAType Label=Editor A Type DefaultWidth=7 Visible=false [Column24] UpperCamelCase=EditorB Label=Editor B DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column25] UpperCamelCase=EditorBType Label=Editor B Type DefaultWidth=7 Visible=false [Column26] UpperCamelCase=EditorC Label=Editor C DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column27] UpperCamelCase=EditorCType Label=Editor C Type DefaultWidth=7 Visible=false [Column28] UpperCamelCase=Translator Label=Translator DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column29] UpperCamelCase=Afterword Label=Afterword Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column30] UpperCamelCase=Introduction Label=Introduction Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column31] UpperCamelCase=Foreword Label=Foreword Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column32] UpperCamelCase=Annotator Label=Annotator DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column33] UpperCamelCase=Commentator Label=Commentator DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column34] UpperCamelCase=Holder Label=Patent Holder DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column35] UpperCamelCase=Month Label=Month DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column36] UpperCamelCase=Year Label=Year DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column37] UpperCamelCase=Date Label=Date DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column38] UpperCamelCase=EventDate Label=Event Date DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column39] UpperCamelCase=OrigDate Label=Original Date DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column40] UpperCamelCase=Year UpperCamelCaseAlt=Date Label=Date or Year DefaultWidth=2 Visible=true TypeFlags=Text;Reference;Source [Column41] UpperCamelCase=JournalTitle Label=Journal Title DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column42] UpperCamelCase=JournalSubTitle Label=Journal Subtitle DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column43] UpperCamelCase=ShortJournal Label=Journal Shortitle DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column44] UpperCamelCase=Volume Label=Volume DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column45] UpperCamelCase=Volumes Label=Number of Volumes DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column46] UpperCamelCase=Number Label=Number DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column47] UpperCamelCase=Version Label=Version DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column48] UpperCamelCase=Part Label=Part DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column49] UpperCamelCase=Issue Label=Issue DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column50] UpperCamelCase=IASN Label=IASN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column51] UpperCamelCase=ISMN Label=ISMN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column52] UpperCamelCase=ISRN Label=ISRN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column53] UpperCamelCase=ISSN Label=ISSN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column54] UpperCamelCase=ISBN Label=ISBN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column55] UpperCamelCase=ISBN UpperCamelCaseAlt=ISSN Label=ISBN or ISSN DefaultWidth=2 Visible=false [Column56] UpperCamelCase=ISWC Label=ISWC DefaultWidth=2 Visible=false [Column57] UpperCamelCase=HowPublished Label=How Published DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column58] UpperCamelCase=Note Label=Note DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column59] UpperCamelCase=Addendum Label=Addendum DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column60] UpperCamelCase=Annotation Label=Annotation DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column61] UpperCamelCase=Abstract Label=Abstract DefaultWidth=7 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column62] UpperCamelCase=Pages Label=Pages DefaultWidth=2 Visible=true TypeFlags=Text;Reference;Source [Column63] UpperCamelCase=PageTotal Label=Total Pages DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column64] UpperCamelCase=Pagination Label=Pagination DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column65] UpperCamelCase=BookPagination Label=Book Pagination DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column66] UpperCamelCase=Publisher Label=Publisher DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column67] UpperCamelCase=OrigPublisher Label=Original Publisher DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column68] UpperCamelCase=Institution Label=Institution DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column69] UpperCamelCase=BookTitle Label=Book Title DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column70] UpperCamelCase=BookSubTitle Label=Book Subtitle DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column71] UpperCamelCase=IssueTitle Label=Issue Title DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column72] UpperCamelCase=IssueSubTitle Label=Issue Subtitle DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column73] UpperCamelCase=BookTitleAddon Label=Booktitle Addon DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column74] UpperCamelCase=Series Label=Series DefaultWidth=12 Visible=false TypeFlags=Text;Reference;Source [Column75] UpperCamelCase=ShortSeries Label=Series Shortitle DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column76] UpperCamelCase=Edition Label=Edition DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column77] UpperCamelCase=Chapter Label=Chapter DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column78] UpperCamelCase=Organization Label=Organization DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column79] UpperCamelCase=Institution UpperCamelCaseAlt=School Label=Institution DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column80] UpperCamelCase=EventTitle Label=Event Title DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column81] UpperCamelCase=Venue Label=Venue DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column82] UpperCamelCase=IndexTitle Label=Index Title DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column83] UpperCamelCase=Keywords Label=Keywords DefaultWidth=3 Visible=false TypeFlags=Keyword;Source TypeIndependent=true [Column84] UpperCamelCase=CrossRef Label=Cross Reference DefaultWidth=3 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column85] UpperCamelCase=XRef Label=XRef DefaultWidth=3 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column86] UpperCamelCase=DOI Label=DOI DefaultWidth=1 Visible=false TypeFlags=Verbatim [Column87] UpperCamelCase=EPrint Label=E-Print DefaultWidth=1 Visible=false TypeFlags=Verbatim [Column88] UpperCamelCase=EPrintClass Label=E-Print Class DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column89] UpperCamelCase=EPrintType Label=E-Print Type DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column90] UpperCamelCase=URL Label=URL DefaultWidth=3 Visible=false TypeFlags=Verbatim [Column91] UpperCamelCase=URLDate Label=URL Date DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column92] UpperCamelCase=File UpperCamelCaseAlt=PDF Label=Local File URL DefaultWidth=3 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column93] UpperCamelCase=Location UpperCamelCaseAlt=Address Label=Location DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column94] UpperCamelCase=OrigLocation Label=Original Location DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column95] UpperCamelCase=Type Label=Type DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column96] UpperCamelCase=EID Label=EID DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column97] UpperCamelCase=SortKey UpperCamelCaseAlt=Key Label=Sort Key DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column98] UpperCamelCase=Label Label=Label DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column99] UpperCamelCase=ShortHand Label=Shorthand DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column100] UpperCamelCase=ShortHandIntro Label=Shorthand Intro DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column101] UpperCamelCase=PubState Label=Publication State DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column102] UpperCamelCase=Language Label=Language DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column103] UpperCamelCase=OrigLanguage Label=Original Language DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column104] UpperCamelCase=Library Label=Library DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column105] UpperCamelCase=X-Color Label=Color DefaultWidth=2 Visible=false TypeFlags=Verbatim;Source TypeIndependent=true [Column106] UpperCamelCase=Gender Label=Gender DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column107] UpperCamelCase=Hyphenation Label=Hyphenation DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column108] UpperCamelCase=IndexSortTitle Label=Index Sorttitle DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column109] UpperCamelCase=Options Label=Entry Options DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column110] UpperCamelCase=Presort Label=Presort DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column111] UpperCamelCase=SortKey Label=Sort Key DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column112] UpperCamelCase=SortName Label=Sort Names DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column113] UpperCamelCase=SortShortHand Label=Sort Shorthand DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column114] UpperCamelCase=SortTitle Label=Sort Title DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column115] UpperCamelCase=SortYear Label=Sort Year DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column116] UpperCamelCase=ISAN Label=ISAN DefaultWidth=2 Visible=false [Column117] UpperCamelCase=Location Label=Location DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [EntryLayoutTab] count=9 [EntryLayoutTab1] uiCaption=Title columns=1 count=9 bibtexLabel1=title uiLabel1=Title fieldInputLayout1=SingleLine bibtexLabel2=subtitle uiLabel2=Subtitle fieldInputLayout2=SingleLine bibtexLabel3=titleaddon uiLabel3=Title Addon fieldInputLayout3=SingleLine bibtexLabel4=booktitle uiLabel4=Book Title fieldInputLayout4=SingleLine bibtexLabel5=booksubtitle uiLabel5=Book Subtitle fieldInputLayout5=SingleLine bibtexLabel6=booktitleaddon uiLabel6=Book Title Addon fieldInputLayout6=SingleLine bibtexLabel7=maintitle uiLabel7=Main Title fieldInputLayout7=SingleLine bibtexLabel8=mainsubtitle uiLabel8=Main Subtitle fieldInputLayout8=SingleLine bibtexLabel9=maintitleaddon uiLabel9=Main Title Addon fieldInputLayout9=SingleLine [EntryLayoutTab2] uiCaption=Author/Editor iconName=user-identity columns=2 count=6 bibtexLabel1=author uiLabel1=Author fieldInputLayout1=PersonList bibtexLabel2=authortype uiLabel2=Author Type fieldInputLayout2=SingleLine bibtexLabel3=editor uiLabel3=Editor fieldInputLayout3=PersonList bibtexLabel4=editortype uiLabel4=Editor Type fieldInputLayout4=SingleLine bibtexLabel5=gender uiLabel5=Gender fieldInputLayout5=SingleLine bibtexLabel6=nameaddon uiLabel6=Name Addon fieldInputLayout6=SingleLine [EntryLayoutTab3] uiCaption=Further Persons iconName=user-identity columns=2 count=14 bibtexLabel1=bookauthor uiLabel1=Book Author fieldInputLayout1=PersonList bibtexLabel2=editora uiLabel2=Editor A fieldInputLayout2=PersonList bibtexLabel3=editoratype uiLabel3=Editor A Type fieldInputLayout3=SingleLine bibtexLabel4=editorb uiLabel4=Editor B fieldInputLayout4=PersonList bibtexLabel5=editorbtype uiLabel5=Editor B Type fieldInputLayout5=SingleLine bibtexLabel6=editorc uiLabel6=Editor C fieldInputLayout6=PersonList bibtexLabel7=editorctype uiLabel7=Editor C Type fieldInputLayout7=SingleLine bibtexLabel8=translator uiLabel8=Translator fieldInputLayout8=PersonList bibtexLabel9=annotator uiLabel9=Annotator fieldInputLayout9=PersonList bibtexLabel10=commentator uiLabel10=Commentator fieldInputLayout10=PersonList bibtexLabel11=foreword uiLabel11=Foreword Author fieldInputLayout11=PersonList bibtexLabel12=introduction uiLabel12=Introduction Author fieldInputLayout12=PersonList bibtexLabel13=afterword uiLabel13=Afterword Author fieldInputLayout13=PersonList bibtexLabel14=holder uiLabel14=Patent Holder fieldInputLayout14=PersonList [EntryLayoutTab4] uiCaption=Publication columns=2 count=28 bibtexLabel1=journaltitle uiLabel1=Journal Title fieldInputLayout1=SingleLine bibtexLabel2=journalsubtitle uiLabel2=Journal Subtitle fieldInputLayout2=SingleLine bibtexLabel3=issuetitle uiLabel3=Issue Title fieldInputLayout3=SingleLine bibtexLabel4=issuesubtitle uiLabel4=Issue Subtitle fieldInputLayout4=SingleLine bibtexLabel5=volume uiLabel5=Volume fieldInputLayout5=SingleLine bibtexLabel6=part uiLabel6=Volume Part fieldInputLayout6=SingleLine bibtexLabel7=volumes uiLabel7=Total Volumes fieldInputLayout7=SingleLine bibtexLabel8=series uiLabel8=Series fieldInputLayout8=SingleLine bibtexLabel9=number uiLabel9=Number/Issue fieldInputLayout9=SingleLine bibtexLabel10=month uiLabel10=Month fieldInputLayout10=Month bibtexLabel11=year uiLabel11=Year fieldInputLayout11=SingleLine bibtexLabel12=date uiLabel12=Date fieldInputLayout12=SingleLine bibtexLabel13=pubstate uiLabel13=Publication State fieldInputLayout13=SingleLine bibtexLabel14=pages uiLabel14=Pages fieldInputLayout14=SingleLine bibtexLabel15=pagetotal uiLabel15=Total Pages fieldInputLayout15=SingleLine bibtexLabel16=pagination uiLabel16=Pagination fieldInputLayout16=SingleLine bibtexLabel17=edition uiLabel17=Edition fieldInputLayout17=SingleLine bibtexLabel18=chapter uiLabel18=Chapter fieldInputLayout18=SingleLine bibtexLabel19=organization uiLabel19=Organization fieldInputLayout19=SingleLine bibtexLabel20=publisher uiLabel20=Publisher fieldInputLayout20=SingleLine bibtexLabel21=institution uiLabel21=Institution fieldInputLayout21=SingleLine bibtexLabel22=location uiLabel22=Location fieldInputLayout22=SingleLine bibtexLabel23=eventtitle uiLabel23=Event Title fieldInputLayout23=SingleLine bibtexLabel24=eventdate uiLabel24=Event Date fieldInputLayout24=SingleLine bibtexLabel25=venue uiLabel25=Venue fieldInputLayout25=SingleLine bibtexLabel26=howpublished uiLabel26=How Published fieldInputLayout26=SingleLine bibtexLabel27=crossref uiLabel27=Cross-Reference fieldInputLayout27=CrossRef bibtexLabel28=xref uiLabel28=X-Reference fieldInputLayout28=CrossRef [EntryLayoutTab5] uiCaption=Identifiers columns=2 count=12 bibtexLabel1=isan uiLabel1=ISAN fieldInputLayout1=ISAN bibtexLabel2=isbn uiLabel2=ISBN fieldInputLayout2=ISBN bibtexLabel3=ismn uiLabel3=ISMN fieldInputLayout3=ISBN bibtexLabel4=isrn uiLabel4=ISRN fieldInputLayout4=ISBN bibtexLabel5=issn uiLabel5=ISSN fieldInputLayout5=ISBN bibtexLabel6=iswc uiLabel6=ISWC fieldInputLayout6=ISBN bibtexLabel7=doi uiLabel7=DOI fieldInputLayout7=SingleLine bibtexLabel8=eid uiLabel8=EID fieldInputLayout8=SingleLine bibtexLabel9=eprint uiLabel9=E-Print fieldInputLayout9=SingleLine bibtexLabel10=eprinttype uiLabel10=E-Print Type fieldInputLayout10=SingleLine bibtexLabel11=eprintclass uiLabel11=E-Print Class fieldInputLayout11=SingleLine bibtexLabel12=library uiLabel12=Library fieldInputLayout12=SingleLine [EntryLayoutTab6] uiCaption=Sorting columns=1 count=6 bibtexLabel1=sortkey uiLabel1=Sort Key fieldInputLayout1=SingleLine bibtexLabel2=sortname uiLabel2=Sort Name fieldInputLayout2=SingleLine bibtexLabel3=sorttitle uiLabel3=Sort Title fieldInputLayout3=SingleLine bibtexLabel4=sortyear uiLabel4=Sort Year fieldInputLayout4=SingleLine bibtexLabel5=presort uiLabel5=Presort fieldInputLayout5=SingleLine bibtexLabel6=indextitle uiLabel6=Index Title fieldInputLayout6=SingleLine [EntryLayoutTab7] uiCaption=Abbreviations columns=1 count=7 bibtexLabel1=shortauthor uiLabel1=Short Author fieldInputLayout1=PersonList bibtexLabel2=shorteditor uiLabel2=Short Editor fieldInputLayout2=PersonList bibtexLabel3=shorthand uiLabel3=Shorthand fieldInputLayout3=SingleLine bibtexLabel4=shorthandintro uiLabel4=Shorthand Intro fieldInputLayout4=SingleLine bibtexLabel5=shortjournal uiLabel5=Short Journal fieldInputLayout5=SingleLine bibtexLabel6=shortseries uiLabel6=Short Series fieldInputLayout6=SingleLine bibtexLabel7=shorttitle uiLabel7=Short Title fieldInputLayout7=SingleLine [EntryLayoutTab8] uiCaption=Reprint Data columns=1 count=6 bibtexLabel1=origtitle uiLabel1=Original Title fieldInputLayout1=SingleLine bibtexLabel2=reprinttitle uiLabel2=Reprint Title fieldInputLayout2=SingleLine bibtexLabel3=origpublisher uiLabel3=Original Publisher fieldInputLayout3=SingleLine bibtexLabel4=origlocation uiLabel4=Original Location fieldInputLayout4=SingleLine bibtexLabel5=origdate uiLabel5=Original Date fieldInputLayout5=SingleLine bibtexLabel6=origlanguage uiLabel6=Original Language fieldInputLayout6=SingleLine [EntryLayoutTab9] uiCaption=Misc columns=1 count=11 bibtexLabel1=type uiLabel1=Type fieldInputLayout1=SingleLine bibtexLabel2=label uiLabel2=Label fieldInputLayout2=SingleLine bibtexLabel3=note uiLabel3=Note fieldInputLayout3=SingleLine bibtexLabel3=addendum uiLabel3=Addendum fieldInputLayout3=SingleLine bibtexLabel5=url uiLabel5=URL fieldInputLayout5=SingleLine bibtexLabel6=urldate uiLabel6=URL Date fieldInputLayout6=SingleLine bibtexLabel7=file uiLabel7=Local File fieldInputLayout7=SingleLine bibtexLabel8=hyphenation uiLabel8=Hyphenation fieldInputLayout8=SingleLine bibtexLabel9=abstract uiLabel9=Abstract fieldInputLayout9=MultiLine bibtexLabel10=keywords uiLabel10=Keywords fieldInputLayout10=KeywordList bibtexLabel11=x-color uiLabel11=Color fieldInputLayout11=Color kbibtex-0.8.1/config/bibtex.kbstyle000066400000000000000000000205111331300026200172560ustar00rootroot00000000000000[EntryType] count=13 [EntryType1] UpperCamelCase=Article Label=Journal Article RequiredItems=author,title,journal,year OptionalItems=volume,number,pages,month,note [EntryType2] UpperCamelCase=InProceedings UpperCamelCaseAlt=Conference Label=Publication in Conference Proceedings RequiredItems=author,title,booktitle,year OptionalItems=editor,volume^number,series,pages,address,month,organization,publisher,note [EntryType3] UpperCamelCase=Proceedings Label=Conference or Workshop Proceedings RequiredItems=title,year OptionalItems=editor,volume^number,series,address,month,organization,publisher,note [EntryType4] UpperCamelCase=TechReport Label=Technical Report RequiredItems=author,title,institution,year OptionalItems=type,number,address,month,note [EntryType5] UpperCamelCase=Misc Label=Miscellaneous RequiredItems= OptionalItems=author,title,howpublished,month,year,note [EntryType6] UpperCamelCase=Book Label=Book RequiredItems=author^editor,title,publisher,year OptionalItems=volume^number,series,address,edition,month,note [EntryType7] UpperCamelCase=InBook Label=Part of a Book RequiredItems=author^editor,title,chapter|pages,publisher,year OptionalItems=volume^number,series,type,address,edition,month,note [EntryType8] UpperCamelCase=InCollection Label=Part of a Book with own Title RequiredItems=author,title,booktitle,publisher,year OptionalItems=editor,volume^number,series,type,chapter,pages,address,edition,month,note [EntryType9] UpperCamelCase=PhDThesis Label=PhD Thesis RequiredItems=author,title,school,year OptionalItems=type,address,month,note [EntryType10] UpperCamelCase=MastersThesis Label=Master's Thesis RequiredItems=author,title,school,year OptionalItems=type,address,month,note [EntryType11] UpperCamelCase=Unpublished Label=Unpublished Material RequiredItems=author,title,note OptionalItems=month,year [EntryType12] UpperCamelCase=Manual Label=Manual RequiredItems=title OptionalItems=author,organization,address,edition,month,year,note [EntryType13] UpperCamelCase=Booklet RequiredItems=title OptionalItems=author,howpublished,address,month,year,note [Column] count=37 [Column1] UpperCamelCase=^type Label=Element Type DefaultWidth=5 TypeIndependent=true [Column2] UpperCamelCase=^id Label=Identifier DefaultWidth=6 TypeIndependent=true [Column3] UpperCamelCase=Title Label=Title DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column4] UpperCamelCase=Title UpperCamelCaseAlt=BookTitle Label=Title or Book Title DefaultWidth=14 [Column5] UpperCamelCase=Author UpperCamelCaseAlt=Editor Label=Author or Editor DefaultWidth=7 [Column6] UpperCamelCase=Author Label=Author DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column7] UpperCamelCase=Editor Label=Editor DefaultWidth=7 Visible=false TypeFlags=Person;Reference [Column8] UpperCamelCase=Month Label=Month DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column9] UpperCamelCase=Year Label=Year DefaultWidth=2 TypeFlags=Text;Reference;Source [Column10] UpperCamelCase=Journal Label=Journal DefaultWidth=4 Visible=false TypeFlags=Text;Reference;Source [Column11] UpperCamelCase=Volume Label=Volume DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column12] UpperCamelCase=Number Label=Number DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column13] UpperCamelCase=ISSN Label=ISSN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column14] UpperCamelCase=ISBN Label=ISBN DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column15] UpperCamelCase=ISBN UpperCamelCaseAlt=ISSN Label=ISBN or ISSN DefaultWidth=2 Visible=false [Column16] UpperCamelCase=HowPublished Label=How Published DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column17] UpperCamelCase=Note Label=Note DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column18] UpperCamelCase=Abstract Label=Abstract DefaultWidth=7 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column19] UpperCamelCase=Pages Label=Pages DefaultWidth=2 Visible=true TypeFlags=Text;Reference;Source [Column20] UpperCamelCase=Publisher Label=Publisher DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column21] UpperCamelCase=Institution Label=Institution DefaultWidth=5 Visible=false TypeFlags=Text;Reference;Source [Column22] UpperCamelCase=BookTitle Label=Book Title DefaultWidth=14 Visible=false TypeFlags=Text;Reference;Source [Column23] UpperCamelCase=Series Label=Series DefaultWidth=12 Visible=false TypeFlags=Text;Reference;Source [Column24] UpperCamelCase=Edition Label=Edition DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column25] UpperCamelCase=Chapter Label=Chapter DefaultWidth=1 Visible=false TypeFlags=Text;Reference;Source [Column26] UpperCamelCase=Organization Label=Organization DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column27] UpperCamelCase=School Label=School DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column28] UpperCamelCase=Keywords Label=Keywords DefaultWidth=3 Visible=false TypeFlags=Keyword;Source TypeIndependent=true [Column29] UpperCamelCase=CrossRef Label=Cross Reference DefaultWidth=3 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column30] UpperCamelCase=DOI Label=DOI DefaultWidth=1 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column31] UpperCamelCase=URL Label=URL DefaultWidth=3 Visible=false TypeFlags=Verbatim TypeIndependent=true [Column32] UpperCamelCase=Address Label=Address DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column33] UpperCamelCase=Location Label=Location DefaultWidth=3 Visible=false TypeFlags=Text;Reference;Source [Column34] UpperCamelCase=Type Label=Type DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source [Column35] UpperCamelCase=Key Label=Key DefaultWidth=2 Visible=false TypeFlags=Text;Reference;Source TypeIndependent=true [Column36] UpperCamelCase=X-Color Label=Color DefaultWidth=2 Visible=false TypeFlags=Verbatim;Source TypeIndependent=true [Column37] UpperCamelCase=X-Stars Label=Stars DefaultWidth=4 Visible=false TypeFlags=Verbatim;Source TypeIndependent=true [EntryLayoutTab] count=4 [EntryLayoutTab1] uiCaption=Title columns=1 count=3 bibtexLabel1=title uiLabel1=Title fieldInputLayout1=SingleLine bibtexLabel2=booktitle uiLabel2=Book Title fieldInputLayout2=SingleLine bibtexLabel3=series uiLabel3=Series fieldInputLayout3=SingleLine [EntryLayoutTab2] uiCaption=Author/Editor iconName=user-identity columns=2 count=2 bibtexLabel1=author uiLabel1=Author fieldInputLayout1=PersonList bibtexLabel2=editor uiLabel2=Editor fieldInputLayout2=PersonList [EntryLayoutTab3] uiCaption=Publication columns=2 count=18 bibtexLabel1=journal uiLabel1=Journal fieldInputLayout1=SingleLine bibtexLabel2=volume uiLabel2=Volume fieldInputLayout2=SingleLine bibtexLabel3=number uiLabel3=Number/Issue fieldInputLayout3=SingleLine bibtexLabel4=month uiLabel4=Month fieldInputLayout4=Month bibtexLabel5=year uiLabel5=Year fieldInputLayout5=SingleLine bibtexLabel6=pages uiLabel6=Pages fieldInputLayout6=SingleLine bibtexLabel7=edition uiLabel7=Edition fieldInputLayout7=SingleLine bibtexLabel8=chapter uiLabel8=Chapter fieldInputLayout8=SingleLine bibtexLabel9=organization uiLabel9=Organization fieldInputLayout9=SingleLine bibtexLabel10=publisher uiLabel10=Publisher fieldInputLayout10=SingleLine bibtexLabel11=school uiLabel11=School fieldInputLayout11=SingleLine bibtexLabel12=institution uiLabel12=Institution fieldInputLayout12=SingleLine bibtexLabel13=location uiLabel13=Location fieldInputLayout13=SingleLine bibtexLabel14=address uiLabel14=Address fieldInputLayout14=SingleLine bibtexLabel15=isbn uiLabel15=ISBN fieldInputLayout15=ISBN bibtexLabel16=issn uiLabel16=ISSN fieldInputLayout165=ISSN bibtexLabel17=howpublished uiLabel17=How Published fieldInputLayout17=SingleLine bibtexLabel18=crossref uiLabel18=Cross-Reference fieldInputLayout18=CrossRef [EntryLayoutTab4] uiCaption=Misc columns=1 count=7 bibtexLabel1=type uiLabel1=Type fieldInputLayout1=SingleLine bibtexLabel2=key uiLabel2=Key fieldInputLayout2=SingleLine bibtexLabel3=note uiLabel3=Note fieldInputLayout3=SingleLine bibtexLabel4=abstract uiLabel4=Abstract fieldInputLayout4=MultiLine bibtexLabel5=keywords uiLabel5=Keywords fieldInputLayout5=KeywordList bibtexLabel6=x-color uiLabel6=Color fieldInputLayout6=Color bibtexLabel7=x-stars uiLabel7=Star Rating fieldInputLayout7=StarRating kbibtex-0.8.1/config/jabref_journalabbrevlist.txt000066400000000000000000667367321331300026200222430ustar00rootroot00000000000000 ## ## ############################################################ ############################################################# ############################################################################# 100 Volumes of 'notes On Numerical Fluid Mechanics' = Notes Numer Fluid Me 100 Volumes of 'notes On Numerical Fluid Mechanics' = Notes. Numer. Fluid Me. 10th Annual Conference 1989 - Canadian Nuclear Society, Proceedings, Vol 2 = P Can Nuc S 10th Annual Conference 1989 - Canadian Nuclear Society, Proceedings, Vol 2 = P. Can. Nuc. S. 10th Annual Conference 1989 - Canadian Nuclear Society, Proceedings Vol 3 = P Can Nuc S 10th Annual Conference 1989 - Canadian Nuclear Society, Proceedings Vol 3 = P. Can. Nuc. S. 10th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P 10th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. 10th Annual Symposium On Microlithography = P Soc Photo-opt Ins 10th Annual Symposium On Microlithography = P. Soc. Photo-opt. Ins. 10th Asian International Conference On Fluid Machinery = Aip Conf Proc 10th Asian International Conference On Fluid Machinery = Aip. Conf. Proc. 10th Australian Tunnelling Conference - The Race for Space: Keynote Addresses and Asia-pacific Forum = Australas I Min Met 10th Australian Tunnelling Conference - The Race for Space: Keynote Addresses and Asia-pacific Forum = Australas. I. Min. Met. 10th Australian Tunnelling Conference - The Race for Space: Proceedings = Australas I Min Met 10th Australian Tunnelling Conference - The Race for Space: Proceedings = Australas. I. Min. Met. 10th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 10th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 10th Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 10th Computer Security Foundations Workshop, Proceedings = P. Ieee. Csfw. 10th Esaform Conference On Material Forming, Pts A and B = Aip Conf Proc 10th Esaform Conference On Material Forming, Pts A and B = Aip. Conf. Proc. 10th Euromicro Workshop On Real-time Systems, Proceedings = Euromicro 10th European Space Mechanisms and Tribology Symposium, Proceedings = Esa Spec Publ 10th European Space Mechanisms and Tribology Symposium, Proceedings = Esa. Spec. Publ. 10th European Space Mechanisms and Tribology Symposium, Proceedings = Esa Sp Publ 10th European Space Mechanisms and Tribology Symposium, Proceedings = Esa. Sp. Publ. 10th Ieee International Enterprise Distributed Object Computing Conference, Proceedings = Ieee Edoc Conf 10th Ieee International Enterprise Distributed Object Computing Conference, Proceedings = Ieee Edoc. Conf. 10th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int Wkshp Fut Tr Dis 10th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int. Wkshp. Fut. Tr. Dis. 10th Ieee Symposium On Computers and Communications, Proceedings = Ieee Symp Comp Commu 10th Ieee Symposium On Computers and Communications, Proceedings = Ieee Symp. Comp. Commu. 10th International Cold Forging Congress 2000 = Vdi Bericht 10th International Cold Forging Congress 2000 = Vdi. Bericht. 10th International Conference On Automated Deduction = Lect Notes Artif Int 10th International Conference On Automated Deduction = Lect. Notes. Artif. Int. 10th International Conference On Harmonics and Quality of Power, Vols I and Ii, Proceedings = Int C Harmon Qual Po 10th International Conference On Harmonics and Quality of Power, Vols I and Ii, Proceedings = Int. C. Harmon. Qual. Po. 10th International Database Engineering and Applications Symposium, Proceedings = Int Database Eng App 10th International Database Engineering and Applications Symposium, Proceedings = Int. Database Eng. App. 10th International Design Conference - Design 2008, Vols 1 and 2 = Des Soc Pub Ds 10th International Design Conference - Design 2008, Vols 1 and 2 = Des. Soc. Pub. Ds. 10th International Spring Seminar On Nuclear Physics: New Quests in Nuclear Structure = J Phys Conf Ser 10th International Spring Seminar On Nuclear Physics: New Quests in Nuclear Structure = J. Phys. Conf. Ser. 10th International Symposium On Aerodynamics and Ventilation of Vehicle Tunnels = Bhr Gr Conf Ser Publ 10th International Symposium On Aerodynamics and Ventilation of Vehicle Tunnels = Bhr. Gr. Conf. Ser. Publ. 10th International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res 10th International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. 10th International Symposium On Nanostructures: Physics and Technology = Proc Spie 10th International Symposium On Nanostructures: Physics and Technology = Proc. Spie. 10th International Symposium On Nanostructures: Physics and Technology = P Soc Photo-opt Ins 10th International Symposium On Nanostructures: Physics and Technology = P. Soc. Photo-opt. Ins. 10th International Symposium On Origin of Matter and Evolution of Galaxies = Aip Conf Proc 10th International Symposium On Origin of Matter and Evolution of Galaxies = Aip. Conf. Proc. 10th International Symposium On Process Systems Engineering: Part A = Comput-aided Chem En 10th International Symposium On Process Systems Engineering: Part A = Comput-aided. Chem. En. 10th International Workshop On Petri Nets and Performance Models, Proceedings = Int Worksh Petri Net 10th International Workshop On Petri Nets and Performance Models, Proceedings = Int. Worksh. Petri Net. 10th International Workshop On Program Comprehension, Proceedings = Prog Comprehen 10th International Workshop On Program Comprehension, Proceedings = Prog. Comprehen. 10th Meeting On Optical Engineering in Israel = P Soc Photo-opt Ins 10th Meeting On Optical Engineering in Israel = P. Soc. Photo-opt. Ins. 10th Process Technology Conference Proceedings - 2nd International Symposium On Modeling in The Iron and Steel Industry = Proc Tech C 10th Process Technology Conference Proceedings - 2nd International Symposium On Modeling in The Iron and Steel Industry = Proc. Tech. C. 10th Symposium On Space Nuclear Power and Propulsion, Pts 1-3 = Aip Conf Proc 10th Symposium On Space Nuclear Power and Propulsion, Pts 1-3 = Aip. Conf. Proc. 10th Topical Workshop On Proton-antiproton Collider Physics = Aip Conf Proc 10th Topical Workshop On Proton-antiproton Collider Physics = Aip. Conf. Proc. 10th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 10th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 1199 news. National Union of Hospital and Health Care Employees. District 1199 = 1199 News 11th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 11th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 11th Annual Symposium On Photomask Technology = P Soc Photo-opt Ins 11th Annual Symposium On Photomask Technology = P. Soc. Photo-opt. Ins. 11th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 11th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 11th Central Hardwood Forest Conference, Proceedings = Us For Serv T R Nc 11th Central Hardwood Forest Conference, Proceedings = Us. For. Serv. T. R. Nc. 11th Conference On Artificial Intelligence for Applications, Proceedings = Pr Conf Art Int Appl 11th Conference On Artificial Intelligence for Applications, Proceedings = Pr. Conf. Art. Int. Appl. 11th Ethylene Producers Conference, Proceedings = Proc Ethyl Produc C 11th Ethylene Producers Conference, Proceedings = Proc. Ethyl. Produc. C. 11th European Space Mechanisms and Tribology Symposium, Proceedings = Esa Sp Publ 11th European Space Mechanisms and Tribology Symposium, Proceedings = Esa. Sp. Publ. 11th European Workshop On White Dwarfs = Astr Soc P 11th European Workshop On White Dwarfs = Astr. Soc. P. 11th Heidelberg Meeting of Industrial Truck Operators = Vdi Bericht 11th Heidelberg Meeting of Industrial Truck Operators = Vdi. Bericht. 11th Iaea Technical Meeting On H-mode Physics and Transport Barriers = J Phys Conf Ser 11th Iaea Technical Meeting On H-mode Physics and Transport Barriers = J. Phys. Conf. Ser. 11th Ieee High Assurance Systems Engineering Symposium, Proceedings = Ieee Hi Ass Sys Engr 11th Ieee High Assurance Systems Engineering Symposium, Proceedings = Ieee Hi. Ass. Sys. Engr. 11th Ieee International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res 11th Ieee International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. 11th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int Wkshp Fut Tr Dis 11th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int. Wkshp. Fut. Tr. Dis. 11th Ieee International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot 11th Ieee International Workshop On Rapid System Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. 11th Ieee Mediterranean Electrotechnical Conference, Proceedings = Ieee Mediterr Elect 11th Ieee Mediterranean Electrotechnical Conference, Proceedings = Ieee Mediterr. Elect. 11th International Conference Information Visualization = Ieee Int Conf Inf Vi 11th International Conference Information Visualization = Ieee. Int. Conf. Inf. Vi. 11th International Conference On Computer-aided Production Engineering = Imeche Conf Trans 11th International Conference On Computer-aided Production Engineering = Imeche. Conf. Trans. 11th International Conference On Optics of Excitons in Confined Systems (oecs11) = J Phys Conf Ser 11th International Conference On Optics of Excitons in Confined Systems (oecs11) = J. Phys. Conf. Ser. 11th International Conference On Pipeline Protection = Bhr Gr Conf Ser Publ 11th International Conference On Pipeline Protection = Bhr. Gr. Conf. Ser. Publ. 11th International Congress On Catalysis - 40th Anniversary, Pts A and B = Stud Surf Sci Catal 11th International Congress On Catalysis - 40th Anniversary, Pts A and B = Stud. Surf. Sci. Catal. 11th International Parallel Processing Symposium, Proceedings = Ipps Proc 11th International Parallel Processing Symposium, Proceedings = Ipps. Proc. 11th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 11th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 11th International School On Quantum Electronics: Laser Physics and Applications = P Soc Photo-opt Ins 11th International School On Quantum Electronics: Laser Physics and Applications = P. Soc. Photo-opt. Ins. 11th International Symposium On High-performance Computer Architecture, Proceedings = Int S High Perf Comp 11th International Symposium On High-performance Computer Architecture, Proceedings = Int. S. High. Perf. Comp. 11th International Symposium On System Synthesis - Proceedings = Proc Int Symp Syst 11th International Symposium On System Synthesis - Proceedings = Proc. Int. Symp. Syst. 11th International Vavilov Conference On Nonlinear Optics = P Soc Photo-opt Ins 11th International Vavilov Conference On Nonlinear Optics = P. Soc. Photo-opt. Ins. 11th Mediterranean Conference On Medical and Biological Engineering and Computing 2007, Vols 1 and 2 = Ifmbe Proc 11th Mediterranean Conference On Medical and Biological Engineering and Computing 2007, Vols 1 and 2 = Ifmbe. Proc. 11th Process Technology Conference Proceedings = Proc Tech C 11th Process Technology Conference Proceedings = Proc. Tech. C. 11th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = Proc Spie 11th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = Proc. Spie. 11th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P Soc Photo-opt Ins 11th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P. Soc. Photo-opt. Ins. 11th Symposium and School On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins 11th Symposium and School On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. 11th U.s./ North American Mine Ventilation Symposium 2006 = Proc Monogr Eng Wate 11th U.s./ North American Mine Ventilation Symposium 2006 = Proc. Monogr. Eng. Wate. 11th Workshop On Labour and Labour Management = Acta Hortic 11th Workshop On Labour and Labour Management = Acta. Hortic. 11. Workshop Fuzzy Control Des Gma-fa 5.22, Proceedings = Fzka Tech Umw Wis B 11. Workshop Fuzzy Control Des Gma-fa 5.22, Proceedings = Fzka. Tech. Umw. Wis. B. 12th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P 12th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. 12th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 12th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 12th Annual Symposium On Photomask Technology and Management = P Soc Photo-opt Ins 12th Annual Symposium On Photomask Technology and Management = P. Soc. Photo-opt. Ins. 12th Central European Workshop On Quantum Optics = J Phys Conf Ser 12th Central European Workshop On Quantum Optics = J. Phys. Conf. Ser. 12th Conference On Theoretical Nuclear Physics in Italy = J Phys Conf Ser 12th Conference On Theoretical Nuclear Physics in Italy = J. Phys. Conf. Ser. 12th Czech-slovak-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P Soc Photo-opt Ins 12th Czech-slovak-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P. Soc. Photo-opt. Ins. 12th Ethylene Producers' Conference, Proceedings = Proc Ethyl Produc C 12th Ethylene Producers' Conference, Proceedings = Proc. Ethyl. Produc. C. 12th European Conference On White Dwarf Stars, Proceedings = Astr Soc P 12th European Conference On White Dwarf Stars, Proceedings = Astr. Soc. P. 12th Ieee International Conference On Engineering Complex Computer Systems, Proceedings = Ieee Int C Eng Comp 12th Ieee International Conference On Engineering Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. 12th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art 12th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. 12th Ieee International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res 12th Ieee International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. 12th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int Wkshp Fut Tr Dis 12th Ieee International Workshop On Future Trends of Distributed Computing Systems, Proceedings = Int. Wkshp. Fut. Tr. Dis. 12th International Conference On Magnetic Fluids Icmf12 = Physcs Proc 12th International Conference On Magnetic Fluids Icmf12 = Physcs. Proc. 12th International Conference On Phonon Scattering in Condensed Matter (phonons 2007) = J Phys Conf Ser 12th International Conference On Phonon Scattering in Condensed Matter (phonons 2007) = J. Phys. Conf. Ser. 12th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 12th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 12th International School On Quantum Electronics: Laser Physics and Applications = P Soc Photo-opt Ins 12th International School On Quantum Electronics: Laser Physics and Applications = P. Soc. Photo-opt. Ins. 12th International Symposium for Electromachining (isem) = Vdi Bericht 12th International Symposium for Electromachining (isem) = Vdi. Bericht. 12th International Symposium On Electrets (ise 12), Proceedings = Int Symp Electrets 12th International Symposium On Electrets (ise 12), Proceedings = Int. Symp. Electrets 12th International Symposium On Space Flight Dynamics = Esa Sp Publ 12th International Symposium On Space Flight Dynamics = Esa. Sp. Publ. 12th International Workshop On Lidar Multiple Scattering Experiments = Proc Spie 12th International Workshop On Lidar Multiple Scattering Experiments = Proc. Spie. 12th International Workshop On Lidar Multiple Scattering Experiments = P Soc Photo-opt Ins 12th International Workshop On Lidar Multiple Scattering Experiments = P. Soc. Photo-opt. Ins. 12th International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot 12th International Workshop On Rapid System Prototyping, Proceedings = P. Ieee. Rap. Syst. Prot. 12th International Workshop On Slow Positron Beam Tecniques (slopos12) = J Phys Conf Ser 12th International Workshop On Slow Positron Beam Tecniques (slopos12) = J. Phys. Conf. Ser. 12th Kingston Meeting : Computational Astrophysics = Astr Soc P 12th Kingston Meeting : Computational Astrophysics = Astr. Soc. P. 12th Nrel Photovoltaic Program Review = Aip Conf Proc 12th Nrel Photovoltaic Program Review = Aip. Conf. Proc. 12th Symposium and School On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins 12th Symposium and School On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. 12th Symposium On Space Nuclear Power and Propulsion, Pts 1 and 2 = Aip Conf Proc 12th Symposium On Space Nuclear Power and Propulsion, Pts 1 and 2 = Aip. Conf. Proc. 13th Annual Ieee International Asic/soc Conference, Proceedings = P Ieee Int Asic C&e 13th Annual Ieee International Asic/soc Conference, Proceedings = P. Ieee Int. Asic. C&e. 13th Annual Symposium On Photomask Technology and Management = P Soc Photo-opt Ins 13th Annual Symposium On Photomask Technology and Management = P. Soc. Photo-opt. Ins. 13th Asian Test Symposium, Proceedings = Asian Test Symposium 13th Asian Test Symposium, Proceedings = Asian Test Symposium. 13th Central Hardwood Forest Conference, Proceedings = Us For Serv T R Nc 13th Central Hardwood Forest Conference, Proceedings = Us. For. Serv. T. R. Nc. 13th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp Publ 13th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp. Publ. 13th Ethylene Producers' Conference, Proceedings = Proc Ethyl Produc C 13th Ethylene Producers' Conference, Proceedings = Proc. Ethyl. Produc. C. 13th Euromicro Conference On Real-time Systems, Proceedings = Euromicro 13th European Conference On Software Maintenance and Reengineering: Csmr 2009, Proceedings = Eur Con Sftwr Mtnce 13th European Conference On Software Maintenance and Reengineering: Csmr 2009, Proceedings = Eur. Con. Sftwr. Mtnce. 13th Ieee/acm International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm Dis Sim 13th Ieee/acm International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee. Acm. Dis. Sim. 13th Ieee Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 13th Ieee Computer Security Foundations Workshop, Proceedings = P. Ieee Csfw. 13th Ieee International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot 13th Ieee International Workshop On Rapid System Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. 13th Ieee Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm 13th Ieee Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. 13th Imeko Tc1-tc7 Joint Symposium - Without Measurement No Science, Without Science No Measurement = J Phys Conf Ser 13th Imeko Tc1-tc7 Joint Symposium - Without Measurement No Science, Without Science No Measurement = J. Phys. Conf. Ser. 13th International Conference On Biomedical Engineering, Vols 1-3 = Ifmbe Proc 13th International Conference On Biomedical Engineering, Vols 1-3 = Ifmbe. Proc. 13th International Conference On Data Engineering - Proceedings = Proc Int Conf Data 13th International Conference On Data Engineering - Proceedings = Proc. Int. Conf. Data 13th International Conference On Electrical Bioimpedance and The 8th Conference On Electrical Impedance Tomography 2007 = Ifmbe Proc 13th International Conference On Electrical Bioimpedance and The 8th Conference On Electrical Impedance Tomography 2007 = Ifmbe. Proc. 13th International Conference On Jetting Technology = Bhr Gr Conf Ser Publ 13th International Conference On Jetting Technology = Bhr. Gr. Conf. Ser. Publ. 13th International Conference On Liquid and Amorphous Metals = J Phys Conf Ser 13th International Conference On Liquid and Amorphous Metals = J. Phys. Conf. Ser. 13th International Conference On Pipeline Protection = Bhr Gr Conf Ser Publ 13th International Conference On Pipeline Protection = Bhr. Gr. Conf. Ser. Publ. 13th International Conference On Rapidly Quenched and Metastable Materials = J Phys Conf Ser 13th International Conference On Rapidly Quenched and Metastable Materials = J. Phys. Conf. Ser. 13th International Conference On Slurry Handling and Pipeline Transport - Hydrotransport 13 = Bhr Gr Conf Ser Publ 13th International Conference On Slurry Handling and Pipeline Transport - Hydrotransport 13 = Bhr. Gr. Conf. Ser. Publ. 13th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 13th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 13th International School On Quantum Electronics: Laser Physics and Applications = P Soc Photo-opt Ins 13th International School On Quantum Electronics: Laser Physics and Applications = P. Soc. Photo-opt. Ins. 13th International Symposium On System Synthesis, Proceedings = Proc Int Symp Syst 13th International Symposium On System Synthesis, Proceedings = Proc. Int. Symp. Syst. 13th International Workshop On Lidar Multiple Scattering Experiments = Proc Spie 13th International Workshop On Lidar Multiple Scattering Experiments = Proc. Spie. 13th International Workshop On Lidar Multiple Scattering Experiments = P Soc Photo-opt Ins 13th International Workshop On Lidar Multiple Scattering Experiments = P. Soc. Photo-opt. Ins. 13th International Workshop On Program Comprehension, Proceedings = Prog Comprehen 13th International Workshop On Program Comprehension, Proceedings = Prog. Comprehen. 13th Nrel Photovoltaics Program Review = Aip Conf Proc 13th Nrel Photovoltaics Program Review = Aip. Conf. Proc. 13th Polish-czech-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = Proc Spie 13th Polish-czech-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = Proc. Spie. 13th Polish-czech-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = P Soc Photo-opt Ins 13th Polish-czech-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = P. Soc. Photo-opt. Ins. 13th Symposium and School On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins 13th Symposium and School On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. 13th Tron Project International Symposium / Teps '96, Proceedings = P Tron Proj Symp 13th Tron Project International Symposium / Teps '96, Proceedings = P. Tron Proj. Symp. 13th Working Conference On Reverse Engineering Proceedings = Work Conf Reverse En 13th Working Conference On Reverse Engineering Proceedings = Work. Conf. Reverse En. 14th Annual Bacus Symposium On Photomask Technology and Management, Proceedings = P Soc Photo-opt Ins 14th Annual Bacus Symposium On Photomask Technology and Management, Proceedings = P. Soc. Photo-opt. Ins. 14th Annual Conference On Composites and Advanced Ceramic Materials, Pts 1 and 2 = Ceram Eng Sci Proc 14th Annual Conference On Composites and Advanced Ceramic Materials, Pts 1 and 2 = Ceram. Eng. Sci. Proc. 14th Annual Ieee International Asic/soc Conference, Proceedings = P Ieee Int Asic C&e 14th Annual Ieee International Asic/soc Conference, Proceedings = P. Ieee Int. Asic. C&e. 14th Asian Test Symposium, Proceedings = Asian Test Symposium 14th Asian Test Symposium, Proceedings = Asian Test Symposium. 14th Cambridge Workshop On Cool Stars, Stellar Systems, and The Sun = Astr Soc P 14th Cambridge Workshop On Cool Stars, Stellar Systems, and The Sun = Astr. Soc. P. 14th Conference On Metal Matrix, Carbon, and Ceramic Matrix Composites, Pts 1 and 2 = Nasa Conf P 14th Conference On Metal Matrix, Carbon, and Ceramic Matrix Composites, Pts 1 and 2 = Nasa. Conf. P. 14th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Sp Publ 14th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Sp. Publ. 14th European Workshop On White Dwarfs, Proceedings = Astr Soc P 14th European Workshop On White Dwarfs, Proceedings = Astr. Soc. P. 14th Ieee/acm International Symposium On Distributed Simulation and Real-time Applications (ds-rt 2010) = Ieee Acm Dis Sim 14th Ieee/acm International Symposium On Distributed Simulation and Real-time Applications (ds-rt 2010) = Ieee. Acm. Dis. Sim. 14th Ieee Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 14th Ieee Computer Security Foundations Workshop, Proceedings = P. Ieee Csfw. 14th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect 14th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. 14th Ieee International Conference On Program Comprehension (icpc 2006), Proceedings = Int C Program Compre 14th Ieee International Conference On Program Comprehension (icpc 2006), Proceedings = Int. C. Program Compre. 14th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art 14th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. 14th Ieee International Workshop On Rapid Systems Prototyping, Proceedings = P Ieee Rap Syst Prot 14th Ieee International Workshop On Rapid Systems Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. 14th Ieee Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm 14th Ieee Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. 14th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 14th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 14th International Conference On Jetting Technology = Bhr Gr Conf Ser Publ 14th International Conference On Jetting Technology = Bhr. Gr. Conf. Ser. Publ. 14th International Conference On Mechatronics and Machine Vision in Practice 2007, Proceedings = I C Mech Mach Vis Pr 14th International Conference On Mechatronics and Machine Vision in Practice 2007, Proceedings = I. C. Mech. Mach. Vis. Pr. 14th International Conference On Optical Fiber Sensors = Proc Spie 14th International Conference On Optical Fiber Sensors = Proc. Spie. 14th International Conference On Optical Fiber Sensors = P Soc Photo-opt Ins 14th International Conference On Optical Fiber Sensors = P. Soc. Photo-opt. Ins. 14th International Conference On The Physics of Highly Charged Ions (hci 2008) = J Phys Conf Ser 14th International Conference On The Physics of Highly Charged Ions (hci 2008) = J. Phys. Conf. Ser. 14th International Conference On X-ray Absorption Fine Structure (xafs14), Proceedings = J Phys Conf Ser 14th International Conference On X-ray Absorption Fine Structure (xafs14), Proceedings = J. Phys. Conf. Ser. 14th International Couette Taylor Workshop = J Phys Conf Ser 14th International Couette Taylor Workshop = J. Phys. Conf. Ser. 14th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 14th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 14th International School On Quantum Electronics: Laser Physics and Applications = P Soc Photo-opt Ins 14th International School On Quantum Electronics: Laser Physics and Applications = P. Soc. Photo-opt. Ins. 14th International Symposium for The Advancement of Boundary Layer Remote Sensing = Iop C Ser Earth Env 14th International Symposium for The Advancement of Boundary Layer Remote Sensing = Iop. C. Ser. Earth. Env. 14th Nordic-baltic Conference On Biomedical Engineering and Medical Physics = Ifmbe Proc 14th Nordic-baltic Conference On Biomedical Engineering and Medical Physics = Ifmbe. Proc. 14th Symposium On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins 14th Symposium On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. 14th Symposium On Photonic Measurements = P Soc Photo-opt Ins 14th Symposium On Photonic Measurements = P. Soc. Photo-opt. Ins. 150 Years of Mathematics At Washington University in St. Louis = Contemp Math 150 Years of Mathematics At Washington University in St. Louis = Contemp. Math. 15 Flurforderzeug-tagung 2009: Mit Fachausstellung = Vdi Bericht 15 Flurforderzeug-tagung 2009: Mit Fachausstellung = Vdi. Bericht. 15th Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput 15th Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. 15th Annual Ieee International Asic/soc Conference, Proceedings = P Ieee Int Asic C&e 15th Annual Ieee International Asic/soc Conference, Proceedings = P. Ieee Int. Asic. C&e. 15th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 15th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 15th Annual Symposium On Photomask Technology and Management, Proceedings = P Soc Photo-opt Ins 15th Annual Symposium On Photomask Technology and Management, Proceedings = P. Soc. Photo-opt. Ins. 15th Czech-polish-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = Proc Spie 15th Czech-polish-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = Proc. Spie. 15th Czech-polish-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = P Soc Photo-opt Ins 15th Czech-polish-slovak Conference On Wave and Quantum Aspects of Contemporary Optics = P. Soc. Photo-opt. Ins. 15th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Spec Publ 15th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Spec. Publ. 15th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp Publ 15th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp. Publ. 15th European Conference On Mask Technology for Integrated Circuits and Microcomponents '98 = P Soc Photo-opt Ins 15th European Conference On Mask Technology for Integrated Circuits and Microcomponents '98 = P. Soc. Photo-opt. Ins. 15th European Triga Conference = Vtt Symp 15th European Triga Conference = Vtt. Symp. 15th European Workshop On White Dwarfs, Proceedings = Astr Soc P 15th European Workshop On White Dwarfs, Proceedings = Astr. Soc. P. 15th Ieee Computer Security Foundation Workshop, Proceedings = P Ieee Csfw 15th Ieee Computer Security Foundation Workshop, Proceedings = P. Ieee Csfw. 15th Ieee International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int Conf Asap 15th Ieee International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int. Conf. Asap. 15th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art 15th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. 15th Ieee International Requirements Engineering Conference, Proceedings = Int Requir Eng Conf 15th Ieee International Requirements Engineering Conference, Proceedings = Int. Requir. Eng. Conf. 15th Ieee International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot 15th Ieee International Workshop On Rapid System Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. 15th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 15th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 15th Interdisciplinary Forum of The Bundesarztekammer = For For Med 15th Interdisciplinary Forum of The Bundesarztekammer = For. For. Med. 15th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 15th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 15th International Conference On Fluid Sealing = Bhr Gr Conf Ser Publ 15th International Conference On Fluid Sealing = Bhr. Gr. Conf. Ser. Publ. 15th International Conference On Jetting Technology = Bhr Gr Conf Ser Publ 15th International Conference On Jetting Technology = Bhr. Gr. Conf. Ser. Publ. 15th International Conference On Pattern Recognition, Vol 1, Proceedings = Int C Patt Recog 15th International Conference On Pattern Recognition, Vol 1, Proceedings = Int. C. Patt. Recog. 15th International Conference On Pattern Recognition, Vol 2, Proceedings = Int C Patt Recog 15th International Conference On Pattern Recognition, Vol 2, Proceedings = Int. C. Patt. Recog. 15th International Conference On Pattern Recognition, Vol 3, Proceedings = Int C Patt Recog 15th International Conference On Pattern Recognition, Vol 3, Proceedings = Int. C. Patt. Recog. 15th International Conference On Pattern Recognition, Vol 4, Proceedings = Int C Patt Recog 15th International Conference On Pattern Recognition, Vol 4, Proceedings = Int. C. Patt. Recog. 15th International Conference On Photoacoustic and Photothermal Phenomena (icppp15) = J Phys Conf Ser 15th International Conference On Photoacoustic and Photothermal Phenomena (icppp15) = J. Phys. Conf. Ser. 15th International Conference On The Strength of Materials (icsma-15) = J Phys Conf Ser 15th International Conference On The Strength of Materials (icsma-15) = J. Phys. Conf. Ser. 15th International Conference The Knowledge-based Organization: Administrative and Juridical Sciences, Conference Proceedings 5 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Administrative and Juridical Sciences, Conference Proceedings 5 = Knowl. Bas. Organ. Int. 15th International Conference The Knowledge-based Organization: Applied Technical Sciences and Advanced Military Technologies, Conference Proceedings 6 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Applied Technical Sciences and Advanced Military Technologies, Conference Proceedings 6 = Knowl. Bas. Organ. Int. 15th International Conference The Knowledge-based Organization: Behavioral and Social Sciences, Conference Proceedings 4 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Behavioral and Social Sciences, Conference Proceedings 4 = Knowl. Bas. Organ. Int. 15th International Conference The Knowledge-based Organization: Economics Science, Conference Proceedings 3 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Economics Science, Conference Proceedings 3 = Knowl. Bas. Organ. Int. 15th International Conference The Knowledge-based Organization: Management, Conference Proceedings 2 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Management, Conference Proceedings 2 = Knowl. Bas. Organ. Int. 15th International Conference The Knowledge-based Organization: Military Sciences. Security and Defense, Conference Proceedings 1 = Knowl Bas Organ Int 15th International Conference The Knowledge-based Organization: Military Sciences. Security and Defense, Conference Proceedings 1 = Knowl. Bas. Organ. Int. 15th International Couette-taylor Workshop = J Phys Conf Ser 15th International Couette-taylor Workshop = J. Phys. Conf. Ser. 15th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 15th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 15th Paul D Converse Symposium = Amer Mar As 15th Paul D Converse Symposium = Amer. Mar. As. 15th Symposium On High-resolution Molecular Spectroscopy = Proc Spie 15th Symposium On High-resolution Molecular Spectroscopy = Proc. Spie. 15th Symposium On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins 15th Symposium On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. 1604-2004: Supernovae As Cosmological Lighthouses = Astr Soc P 1604-2004: Supernovae As Cosmological Lighthouses = Astr. Soc. P. 16th Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput 16th Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. 16th Annual Ieee Symposium On High-performance Interconnects, Proceedings = Symp Hi Per Int 16th Annual Ieee Symposium On High-performance Interconnects, Proceedings = Symp. Hi. Per. Int. 16th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 16th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 16th Annual Symposium On Photomask Technology and Management = P Soc Photo-opt Ins 16th Annual Symposium On Photomask Technology and Management = P. Soc. Photo-opt. Ins. 16th Congress of The International Commission for Optics : Optics As A Key to High Technology, Pts 1 and 2 = P Soc Photo-opt Ins 16th Congress of The International Commission for Optics : Optics As A Key to High Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 16th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Spec Publ 16th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Spec. Publ. 16th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp Publ 16th Esa Symposium On European Rocket and Balloon Programmes and Related Research, Proceedings = Esa Sp. Publ. 16th Euromicro Conference On Real-time Systems, Proceedings = Euromicro 16th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P Soc Photo-opt Ins 16th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P. Soc. Photo-opt. Ins. 16th European Symposium On Computer Aided Process Engineering and 9th International Symposium On Process Systems Engineering = Comput-aided Chem En 16th European Symposium On Computer Aided Process Engineering and 9th International Symposium On Process Systems Engineering = Comput-aided. Chem. En. 16th European White Dwarfs Workshop = J Phys Conf Ser 16th European White Dwarfs Workshop = J. Phys. Conf. Ser. 16th Ieee Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 16th Ieee Computer Security Foundations Workshop, Proceedings = P. Ieee Csfw. 16th Ieee International Conference On Network Protocols: Icnp'08 = I C Network Protocol 16th Ieee International Conference On Network Protocols: Icnp'08 = I. C. Network Protocol. 16th Ieee Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm 16th Ieee Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. 16th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 16th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 16th International Conference On Application-specific Systems, Architecture and Processors, Proceedings = Ieee Int Conf Asap 16th International Conference On Application-specific Systems, Architecture and Processors, Proceedings = Ieee. Int. Conf. Asap. 16th International Conference On Computer-aided Production Engineering - Cape 2000 = Imeche Conf Trans 16th International Conference On Computer-aided Production Engineering - Cape 2000 = Imeche. Conf. Trans. 16th International Conference On Computer Animation and Social Agents, Proceedings = Comp Anim Conf Proc 16th International Conference On Computer Animation and Social Agents, Proceedings = Comp. Anim. Conf. Proc. 16th International Conference On Electron Dynamics in Semiconductors, Optoelectronics and Nanostructures (edison 16) = J Phys Conf Ser 16th International Conference On Electron Dynamics in Semiconductors, Optoelectronics and Nanostructures (edison 16) = J. Phys. Conf. Ser. 16th International Conference On Fluid Sealing = Bhr Gr Conf Ser Publ 16th International Conference On Fluid Sealing = Bhr. Gr. Conf. Ser. Publ. 16th International Conference On Microscopy of Semiconducting Materials = J Phys Conf Ser 16th International Conference On Microscopy of Semiconducting Materials = J. Phys. Conf. Ser. 16th International Conference On Pattern Recognition, Vol Iii, Proceedings = Int C Patt Recog 16th International Conference On Pattern Recognition, Vol Iii, Proceedings = Int. C. Patt. Recog. 16th International Conference On Pattern Recognition, Vol Ii, Proceedings = Int C Patt Recog 16th International Conference On Pattern Recognition, Vol Ii, Proceedings = Int. C. Patt. Recog. 16th International Conference On Pattern Recognition, Vol I, Proceedings = Int C Patt Recog 16th International Conference On Pattern Recognition, Vol I, Proceedings = Int. C. Patt. Recog. 16th International Conference On Pattern Recogniton, Vol Iv, Proceedings = Int C Patt Recog 16th International Conference On Pattern Recogniton, Vol Iv, Proceedings = Int. C. Patt. Recog. 16th International Conference On Photoelectronics and Night Vision Devices = Proc Spie 16th International Conference On Photoelectronics and Night Vision Devices = Proc. Spie. 16th International Conference On Photoelectronics and Night Vision Devices = P Soc Photo-opt Ins 16th International Conference On Photoelectronics and Night Vision Devices = P. Soc. Photo-opt. Ins. 16th International Conference On Soft Computing Mendel 2010 = Mendel 16th International Conference On Software Engineering = Proc Int Conf Softw 16th International Conference On Software Engineering = Proc. Int. Conf. Softw. 16th International School On Quantum Electronics: Laser Physics and Applications = Proc Spie 16th International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. 16th International Symposium On Boron, Borides and Related Materials (isbb 2008) = J Phys Conf Ser 16th International Symposium On Boron, Borides and Related Materials (isbb 2008) = J. Phys. Conf. Ser. 16th Space Simulation Conference = Nasa Conf P 16th Space Simulation Conference = Nasa. Conf. P. 1755 Lisbon Earthquake: Revisited = Geotech Geol Earthq 1755 Lisbon Earthquake: Revisited = Geotech. Geol. Earthq. 1755 Lisbon Earthquake: Revisited = Geot Geol Earthquake 1755 Lisbon Earthquake: Revisited = Geot. Geol. Earthquake. 17th Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput 17th Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. 17th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 17th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 17th Annual Symposium On Photomask Technology and Management = P Soc Photo-opt Ins 17th Annual Symposium On Photomask Technology and Management = P. Soc. Photo-opt. Ins. 17th Congress of The International Commission for Optics: Optics for Science and New Technology, Pts 1 and 2 = P Soc Photo-opt Ins 17th Congress of The International Commission for Optics: Optics for Science and New Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 17th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Spec Publ 17th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Spec. Publ. 17th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Sp Publ 17th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Sp. Publ. 17th Euromicro Conference On Real-time Systems, Proceedings = Euromicro 17th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P Soc Photo-opt Ins 17th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P. Soc. Photo-opt. Ins. 17th European Symposium On Computer Aided Process Engineering = Comput-aided Chem En 17th European Symposium On Computer Aided Process Engineering = Comput-aided. Chem. En. 17th European White Dwarf Workshop = Aip Conf Proc 17th European White Dwarf Workshop = Aip. Conf. Proc. 17th Grs Conference - Report On A Meeting = Grs Bericht 17th Grs Conference - Report On A Meeting = Grs Bericht. 17th Ieee Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 17th Ieee Computer Security Foundations Workshop, Proceedings = P. Ieee Csfw. 17th Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int Symp Defect 17th Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int. Symp. Defect 17th Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 17th Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 17th Ieee Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm 17th Ieee Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. 17th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 17th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 17th International Conference On Biomagnetism Advances in Biomagnetism - Biomag2010 = Ifmbe Proc 17th International Conference On Biomagnetism Advances in Biomagnetism - Biomag2010 = Ifmbe. Proc. 17th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 17th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 17th International Conference On Optical Fibre Sensors, Pts 1 and 2 = Proc Spie 17th International Conference On Optical Fibre Sensors, Pts 1 and 2 = Proc. Spie. 17th International Conference On Optical Fibre Sensors, Pts 1 and 2 = P Soc Photo-opt Ins 17th International Conference On Optical Fibre Sensors, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 17th International Conference On Photoelectronics and Night Vision Devices = Proc Spie 17th International Conference On Photoelectronics and Night Vision Devices = Proc. Spie. 17th International Conference On Photoelectronics and Night Vision Devices = P Soc Photo-opt Ins 17th International Conference On Photoelectronics and Night Vision Devices = P. Soc. Photo-opt. Ins. 17th International Conference On Software Engineering, Proceedings = Proc Int Conf Softw 17th International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. 17th International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops: Fruit Tree Diseases, Vols 1 and 2 = Acta Hortic 17th International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops: Fruit Tree Diseases, Vols 1 and 2 = Acta. Hortic. 17th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = Proc Spie 17th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = Proc. Spie. 17th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P Soc Photo-opt Ins 17th Slovak-czech-polish Optical Conference On Wave and Quantum Aspects of Contemporary Optics = P. Soc. Photo-opt. Ins. 18th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 18th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 18th Annual International Symposium On Computer Architecture = Acm Comp Ar 18th Annual International Symposium On Computer Architecture = Acm. Comp. Ar. 18th Annual Symposium On Photomask Technology and Management = P Soc Photo-opt Ins 18th Annual Symposium On Photomask Technology and Management = P. Soc. Photo-opt. Ins. 18th Century Studies, Vol 17 = U Lib Bruxe 18th Century Studies, Vol 17 = U. Lib. Bruxe. 18th Conference On Radio- and Microwave Spectroscopy, Ramis'99 = Molecul Phys Rep 18th Conference On Radio- and Microwave Spectroscopy, Ramis'99 = Molecul. Phys. Rep. 18th Conference On Software Engineering Education & Training, Proceedings = Conf Softw Eng Educ 18th Conference On Software Engineering Education & Training, Proceedings = Conf. Softw. Eng. Educ. 18th Congress of The International Commission for Optics: Optics for The Next Millennium, Technical Digest = Proc Spie 18th Congress of The International Commission for Optics: Optics for The Next Millennium, Technical Digest = Proc. Spie. 18th Congress of The International Commission for Optics: Optics for The Next Millennium, Technical Digest = P Soc Photo-opt Ins 18th Congress of The International Commission for Optics: Optics for The Next Millennium, Technical Digest = P. Soc. Photo-opt. Ins. 18th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Spec Publ 18th Esa Symposium On European Rocket and Balloon Programmes and Related Research = Esa Spec. Publ. 18th Euromicro Conference On Real-time Systems, Proceedings = Euromicro 18th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P Soc Photo-opt Ins 18th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P. Soc. Photo-opt. Ins. 18th European Symposium On Computer Aided Process Engineering = Comput-aided Chem En 18th European Symposium On Computer Aided Process Engineering = Comput-aided. Chem. En. 18th Ieee Annual Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput 18th Ieee Annual Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. 18th Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int Symp Defect 18th Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int. Symp. Defect 18th Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 18th Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 18th Ieee Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm 18th Ieee Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. 18th Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy 18th Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. 18th International Conference Electromagnetic Disturbances Emd 2008, Vol 1, Proceedings = Int Conf Electromag 18th International Conference Electromagnetic Disturbances Emd 2008, Vol 1, Proceedings = Int. Conf. Electromag. 18th International Conference Electromagnetic Disturbances Emd 2008, Vol 2, Proceedings = Int Conf Electromag 18th International Conference Electromagnetic Disturbances Emd 2008, Vol 2, Proceedings = Int. Conf. Electromag. 18th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 18th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 18th International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 18th International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 18th International Conference On Parallel Architectures and Compilation Techniques, Proceedings = Int Confer Para 18th International Conference On Parallel Architectures and Compilation Techniques, Proceedings = Int. Confer. Para. 18th International Conference On Pattern Recognition, Vol 1, Proceedings = Int C Patt Recog 18th International Conference On Pattern Recognition, Vol 1, Proceedings = Int. C. Patt. Recog. 18th International Conference On Pattern Recognition, Vol 2, Proceedings = Int C Patt Recog 18th International Conference On Pattern Recognition, Vol 2, Proceedings = Int. C. Patt. Recog. 18th International Conference On Pattern Recognition, Vol 3, Proceedings = Int C Patt Recog 18th International Conference On Pattern Recognition, Vol 3, Proceedings = Int. C. Patt. Recog. 18th International Conference On Pattern Recognition, Vol 4, Proceedings = Int C Patt Recog 18th International Conference On Pattern Recognition, Vol 4, Proceedings = Int. C. Patt. Recog. 18th International Conference On Photoelectronics and Night Vision Devices = P Soc Photo-opt Ins 18th International Conference On Photoelectronics and Night Vision Devices = P. Soc. Photo-opt. Ins. 18th International Conference On Vlsi Design, Proceedings = I Conf Vlsi Design 18th International Conference On Vlsi Design, Proceedings = I. Conf. Vlsi Design. 18th International Water Supply Congress and Exhibition = Water Supp 18th International Water Supply Congress and Exhibition = Water Supp. 18th Saint Flour Summer School On Probabilities - 1988 = Lect Notes Math 18th Saint Flour Summer School On Probabilities - 1988 = Lect. Notes. Math. 1966 Hot Melt Symposium = P Tech As P 1966 Hot Melt Symposium = P. Tech. As. P. 1966 International Conference On Multichip Modules, Proceedings = P Soc Photo-opt Ins 1966 International Conference On Multichip Modules, Proceedings = P. Soc. Photo-opt. Ins. 1968 in Europe: A History of Protest and Activism, 1956-1977 = Palg Mac Ser Trans 1968 in Europe: A History of Protest and Activism, 1956-1977 = Palg. Mac. Ser. Trans. 1968 in Europe: A History of Protest and Activism, 1956-1977 = Palg Mac Transnat H 1968 in Europe: A History of Protest and Activism, 1956-1977 = Palg. Mac. Transnat. H. 1977 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc 1977 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc. 1988 Ama Educators Proceedings : Efficiency and Effectiveness in Marketing = Ama Educ Pr 1988 Ama Educators Proceedings : Efficiency and Effectiveness in Marketing = Ama Educ. Pr. 1989 Acm Sigmetrics and Performance 89 : International Conference On Measurement and Modeling of Computer Systems = Perf E R Si 1989 Acm Sigmetrics and Performance 89 : International Conference On Measurement and Modeling of Computer Systems = Perf. E. R. Si. 1989 Advances in Powder Metallurgy, Vols 1-3 = Adv Pow Met 1989 Advances in Powder Metallurgy, Vols 1-3 = Adv. Pow. Met. 1989 Ama Educators Proceedings : Enhancing Knowledge Development in Marketing = Ama Educ Pr 1989 Ama Educators Proceedings : Enhancing Knowledge Development in Marketing = Ama Educ. Pr. 1989 Cern-jinr School of Physics : Proceedings = Cern Report 1989 Cern-jinr School of Physics : Proceedings = Cern. Report. 1989 Coating Conference = P Tech As P 1989 Coating Conference = P. Tech. As. P. 1989 Goddard Conference On Space Applications of Artificial Intelligence = Nasa Conf P 1989 Goddard Conference On Space Applications of Artificial Intelligence = Nasa. Conf. P. 1989 Ieee Military Communications Conference, Vols 1-3 = Ieee Conf R 1989 Ieee Military Communications Conference, Vols 1-3 = Ieee Conf. R. 1989 Proceedings of Pakistan Congress of Zoology, Vol 9 = Proc Pak Cong Zool 1989 Proceedings of Pakistan Congress of Zoology, Vol 9 = Proc. Pak. Cong. Zool. 1989 Wet End Operations Seminar = Notes Tech 1989 Wet End Operations Seminar = Notes. Tech. 1990 Acm Sigmetrics Conference On Measurement and Modeling of Computer Systems = Perf E R Si 1990 Acm Sigmetrics Conference On Measurement and Modeling of Computer Systems = Perf. E. R. Si. 1990 Ama Educators Proceedings : Enhancing Knowledge Development in Marketing = Ama Educ Pr 1990 Ama Educators Proceedings : Enhancing Knowledge Development in Marketing = Ama Educ. Pr. 1990 Ama Winter Educators Conference = Amer Mar As 1990 Ama Winter Educators Conference = Amer. Mar. As. 1990 Bleach Plant Operations Short Course = Notes Tech 1990 Bleach Plant Operations Short Course = Notes. Tech. 1990 Dyes, Fillers & Pigments Short Course = Notes Tech 1990 Dyes, Fillers & Pigments Short Course = Notes. Tech. 1990 Engineering Conference, Book 1 and 2 = P Tech As P 1990 Engineering Conference, Book 1 and 2 = P. Tech. As. P. 1990 Environmental Conference, Books 1 and 2 = P Tech As P 1990 Environmental Conference, Books 1 and 2 = P. Tech. As. P. 1990 Finishing and Converting Conference = P Tech As P 1990 Finishing and Converting Conference = P. Tech. As. P. 1990 Goddard Conference On Space Applications of Artificial Intelligence = Nasa Conf P 1990 Goddard Conference On Space Applications of Artificial Intelligence = Nasa. Conf. P. 1990 Neutral/alkaline Papermaking Short Course = Notes Tech 1990 Neutral/alkaline Papermaking Short Course = Notes. Tech. 1990 Papermakers Conference = P Tech As P 1990 Papermakers Conference = P. Tech. As. P. 1990 Polymers, Laminations & Coatings Conference, Book 1 and 2 = P Tech As P 1990 Polymers, Laminations & Coatings Conference, Book 1 and 2 = P. Tech. As. P. 1990 Practical Aspects of Pressing and Drying Short Course = Notes Tech 1990 Practical Aspects of Pressing and Drying Short Course = Notes. Tech. 1990 Proceedings : Annual Reliability and Maintainability Symposium = P Rel Maint S 1990 Proceedings : Annual Reliability and Maintainability Symposium = P. Rel. Maint. S. 1990 Pulping Conference, Books 1 and 2 = P Tech As P 1990 Pulping Conference, Books 1 and 2 = P. Tech. As. P. 1990 Southeastern Recreation Research Conference, Vol 12 = Usda Southe 1990 Southeastern Recreation Research Conference, Vol 12 = Usda. Southe. 1990 Summer School in High Energy Physics and Cosmology = Ictp S Theo 1990 Summer School in High Energy Physics and Cosmology = Ictp. S. Theo. 1990 Tissue Seminar = Notes Tech 1990 Tissue Seminar = Notes. Tech. 1990 Training for The Future : A Seminar for Training Professionals = Notes Tech 1990 Training for The Future : A Seminar for Training Professionals = Notes. Tech. 1990 Wet End Operations Short Course = Notes Tech 1990 Wet End Operations Short Course = Notes. Tech. 1991 Ama Educators Proceedings = Ama Educ Pr 1991 Ama Educators Proceedings = Ama Educ. Pr. 1991 Ama Winter Educators Conference : Marketing Theory and Applications, Vol 2 = Ama Winter Educ Conf 1991 Ama Winter Educators Conference : Marketing Theory and Applications, Vol 2 = Ama Winter Educ. Conf. 1991 Bleach Plant Operations Short Course = Notes Tech 1991 Bleach Plant Operations Short Course = Notes. Tech. 1991 Cern School of Computing : Proceedings = Cern Report 1991 Cern School of Computing : Proceedings = Cern Report. 1991 Chemical Processing Aids Short Course = Notes Tech 1991 Chemical Processing Aids Short Course = Notes. Tech. 1991 Coated Paperboard Short Course = Notes Tech 1991 Coated Paperboard Short Course = Notes. Tech. 1991 Coating Conference = P Tech As P 1991 Coating Conference = P. Tech. As. P. 1991 Environmental Conference, Books 1 and 2 = P Tech As P 1991 Environmental Conference, Books 1 and 2 = P. Tech. As. P. 1991 Film Extrusion Short Course = Notes Tech 1991 Film Extrusion Short Course = Notes. Tech. 1991 Forage and Grassland Conference : Proceedings = P Forag Gr 1991 Forage and Grassland Conference : Proceedings = P. Forag. Gr. 1991 Goddard Conference On Space Applications of Artificial Intelligence = Nasa Conf P 1991 Goddard Conference On Space Applications of Artificial Intelligence = Nasa. Conf. P. 1991 Hot Melt Symposium = Notes Tech 1991 Hot Melt Symposium = Notes. Tech. 1991 Ieee International Joint Conference On Neural Networks, Vols 1-3 = Ieee Ijcnn 1991 Ieee International Joint Conference On Neural Networks, Vols 1-3 = Ieee Ijcnn. 1991 International Mechanical Pulping Conference = P Tech As P 1991 International Mechanical Pulping Conference = P. Tech. As. P. 1991 International Paper Physics Conference, Book 1 and 2 = P Tech As P 1991 International Paper Physics Conference, Book 1 and 2 = P. Tech. As. P. 1991 Kraft Recovery Operations Short Course = Notes Tech 1991 Kraft Recovery Operations Short Course = Notes. Tech. 1991 Lectures in Complex Systems = Sfi Sci C L 1991 Lectures in Complex Systems = Sfi. Sci. C. L. 1991 Nonwovens Conference = P Tech As P 1991 Nonwovens Conference = P. Tech. As. P. 1991 Paper Machine Drives Short Course = Notes Tech 1991 Paper Machine Drives Short Course = Notes. Tech. 1991 Papermakers Conference = P Tech As P 1991 Papermakers Conference = P. Tech. As. P. 1991 Practical Aspects of Pressing & Drying Short Course = Notes Tech 1991 Practical Aspects of Pressing & Drying Short Course = Notes. Tech. 1991 Proceedings : Annual Reliability and Maintainability Symposium = P Rel Maint S 1991 Proceedings : Annual Reliability and Maintainability Symposium = P. Rel. Maint. S. 1991 Sheet Flutter & Windage Problems Seminar = P Tech As P 1991 Sheet Flutter & Windage Problems Seminar = P. Tech. As. P. 1991 Summer School in High Energy Physics and Cosmology, Vols 1 and 2 = Ictp S Theo 1991 Summer School in High Energy Physics and Cosmology, Vols 1 and 2 = Ictp. S. Theo. 1991 Tappi / Isa Pupid Process Control Conference = P Tech As P 1991 Tappi / Isa Pupid Process Control Conference = P. Tech. As. P. 1991 Tissue Runnability Seminar = Notes Tech 1991 Tissue Runnability Seminar = Notes. Tech. 1991 Transactions of The American Association of Cost Engineers = Trans Annu Meet Amer 1991 Transactions of The American Association of Cost Engineers = Trans. Annu. Meet. Amer. 1991 Wet End Operations Short Course = Notes Tech 1991 Wet End Operations Short Course = Notes. Tech. 1992 Ama Educators Proceedings, Vol 3 = Ama Educ Pr 1992 Ama Educators Proceedings, Vol 3 = Ama Educ. Pr. 1992 Ama Winter Educators Conference : Marketing Theory and Applications, Vol 3 = Ama Educ Pr 1992 Ama Winter Educators Conference : Marketing Theory and Applications, Vol 3 = Ama Educ. Pr. 1992 American Forage and Grassland Council, Proceedings - Forages 92 : Grassroots of Animals Agriculture = P Forag Gr 1992 American Forage and Grassland Council, Proceedings - Forages 92 : Grassroots of Animals Agriculture = P. Forag. Gr. 1992 Bleach Plant Operations Short Course = Notes Tech 1992 Bleach Plant Operations Short Course = Notes. Tech. 1992 Calendering & Winding Short Course = Notes Tech 1992 Calendering & Winding Short Course = Notes. Tech. 1992 Cern School of Computing : Proceedings = Cern Report 1992 Cern School of Computing : Proceedings = Cern Report. 1992 Chip Preparation and Quality Seminar = Notes Tech 1992 Chip Preparation and Quality Seminar = Notes. Tech. 1992 Coated Paperboard Short Course = Notes Tech 1992 Coated Paperboard Short Course = Notes. Tech. 1992 Coating Binders Short Course = Notes Tech 1992 Coating Binders Short Course = Notes. Tech. 1992 Coating Conference = P Tech As P 1992 Coating Conference = P. Tech. As. P. 1992 Coextrusion Short Course = Notes Tech 1992 Coextrusion Short Course = Notes. Tech. 1992 Contaminant Problems & Strategies in Wastepaper Recycling Seminar = Notes Tech 1992 Contaminant Problems & Strategies in Wastepaper Recycling Seminar = Notes. Tech. 1992 Corrugated Containers Conference = P Tech As P 1992 Corrugated Containers Conference = P. Tech. As. P. 1992 Engineering Conference, Books 1-3 = P Tech As P 1992 Engineering Conference, Books 1-3 = P. Tech. As. P. 1992 Environmental Conference, Books 1-3 = P Tech As P 1992 Environmental Conference, Books 1-3 = P. Tech. As. P. 1992 Finishing and Converting Conference = P Tech As P 1992 Finishing and Converting Conference = P. Tech. As. P. 1992 Hot Melt Symposium = Notes Tech 1992 Hot Melt Symposium = Notes. Tech. 1992 Ico Topical Meeting On Optical Computing = P Soc Photo-opt Ins 1992 Ico Topical Meeting On Optical Computing = P. Soc. Photo-opt. Ins. 1992 Ieee Cement Industry Technical Conference Xxxiv = Ieee Cem Ind Tech Co 1992 Ieee Cement Industry Technical Conference Xxxiv = Ieee Cem. Ind. Tech. Co. 1992 Implementing Iso 9000 Quality Standards Tutorial = Notes Tech 1992 Implementing Iso 9000 Quality Standards Tutorial = Notes. Tech. 1992 International Chemical Recovery Conference : Proceedings, Books 1 and 2 = P Tech As P 1992 International Chemical Recovery Conference : Proceedings, Books 1 and 2 = P. Tech. As. P. 1992 International Conference On Lasers and Optoelectronics = P Soc Photo-opt Ins 1992 International Conference On Lasers and Optoelectronics = P. Soc. Photo-opt. Ins. 1992 International Printing & Graphic Arts Conference = P Tech As P 1992 International Printing & Graphic Arts Conference = P. Tech. As. P. 1992 Kraft Recovery Operations Short Course = Notes Tech 1992 Kraft Recovery Operations Short Course = Notes. Tech. 1992 Lectures in Complex Systems = Sfi Sci C L 1992 Lectures in Complex Systems = Sfi. Sci. C. L. 1992 Nonwoven Fibers : Properties, Characteristics and Applications Short Course = Notes Tech 1992 Nonwoven Fibers : Properties, Characteristics and Applications Short Course = Notes. Tech. 1992 Nonwovens Conference = P Tech As P 1992 Nonwovens Conference = P. Tech. As. P. 1992 Plastic Laminates Short Course = Notes Tech 1992 Plastic Laminates Short Course = Notes. Tech. 1992 Polymers, Laminations & Coatings Conference = P Tech As P 1992 Polymers, Laminations & Coatings Conference = P. Tech. As. P. 1992 Practical Aspects of Pressing and Drying Short Course = Notes Tech 1992 Practical Aspects of Pressing and Drying Short Course = Notes. Tech. 1992 Process and Product Quality Conference = P Tech As P 1992 Process and Product Quality Conference = P. Tech. As. P. 1992 Pulping Conference, Books 1-3 = P Tech As P 1992 Pulping Conference, Books 1-3 = P. Tech. As. P. 1992 Report to The Aerospace Profession, Setp 36th Symposium = Symp P Soc Exp T Pil 1992 Report to The Aerospace Profession, Setp 36th Symposium = Symp. P. Soc. Exp. T. Pil. 1992 Shanghai International Symposium On Quantum Optics = P Soc Photo-opt Ins 1992 Shanghai International Symposium On Quantum Optics = P. Soc. Photo-opt. Ins. 1992: Shaw and The Law Hundred Years = Shaw 1992 Sizing Short Course = Notes Tech 1992 Sizing Short Course = Notes. Tech. 1992 Solvent Pulping Symposium = Notes Tech 1992 Solvent Pulping Symposium = Notes. Tech. 1992 Stock Preparation Short Course = Notes Tech 1992 Stock Preparation Short Course = Notes. Tech. 1992 Tissue Runnability Seminar = Notes Tech 1992 Tissue Runnability Seminar = Notes. Tech. 1992 Topical Meeting On Photonic Switching = P Soc Photo-opt Ins 1992 Topical Meeting On Photonic Switching = P. Soc. Photo-opt. Ins. 1992 Wet End Operations Short Course = Notes Tech 1992 Wet End Operations Short Course = Notes. Tech. 1993 Advanced Coating Fundamentals Symposium = Notes Tech 1993 Advanced Coating Fundamentals Symposium = Notes. Tech. 1993 Ama Educators Proceedings, Vol 4 = Ama Educ Pr 1993 Ama Educators Proceedings, Vol 4 = Ama Educ. Pr. 1993 Ama Winter Educators' Conference = Ama Winter Educ Conf 1993 Ama Winter Educators' Conference = Ama Winter Educ. Conf. 1993 American Forage and Grassland Council Proceedings = P Forag Gr 1993 American Forage and Grassland Council Proceedings = P. Forag. Gr. 1993 Coating Conference = P Tech As P 1993 Coating Conference = P. Tech. As. P. 1993 Engineering Conference, Books 1-3 = P Tech As P 1993 Engineering Conference, Books 1-3 = P. Tech. As. P. 1993 Environmental Conference, Books 1 and 2 = P Tech As P 1993 Environmental Conference, Books 1 and 2 = P. Tech. As. P. 1993 European School of High-energy Physics = Cern Report 1993 European School of High-energy Physics = Cern. Report. 1993 Hot Melt Symposium = Notes Tech 1993 Hot Melt Symposium = Notes. Tech. 1993 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 1993 International Symposium On Microelectronics = P Soc Photo-opt Ins 1993 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 1993 Kraft Recovery Operations Short Course = Notes Tech 1993 Kraft Recovery Operations Short Course = Notes. Tech. 1993 Nonwovens Conference : Proceedings = P Tech As P 1993 Nonwovens Conference : Proceedings = P. Tech. As. P. 1993 Paper Machine Drives Short Course = Notes Tech 1993 Paper Machine Drives Short Course = Notes. Tech. 1993 Papermakers Conference : Proceedings, Books 1 and 2 = P Tech As P 1993 Papermakers Conference : Proceedings, Books 1 and 2 = P. Tech. As. P. 1993 Polymers, Laminations & Coatings Conference, Vols 1 and 2 = P Tech As P 1993 Polymers, Laminations & Coatings Conference, Vols 1 and 2 = P. Tech. As. P. 1993 Practical Aspects of Pressing and Drying Seminar = Notes Tech 1993 Practical Aspects of Pressing and Drying Seminar = Notes. Tech. 1993 Pulping Conference, Books 1-3 = P Tech As P 1993 Pulping Conference, Books 1-3 = P. Tech. As. P. 1993 Recycling Symposium = Notes Tech 1993 Recycling Symposium = Notes. Tech. 1993 Tappi Applications in Wet End Chemistry = Notes Tech 1993 Tappi Applications in Wet End Chemistry = Notes. Tech. 1993 Tappi / Isa Pupid Process-control Conference = P Tech As P 1993 Tappi / Isa Pupid Process-control Conference = P. Tech. As. P. 1993 Transactions of Aace International: 37th Annual Meeting = Trans Annu Meet Amer 1993 Transactions of Aace International: 37th Annual Meeting = Trans. Annu. Meet. Amer. 1993 Wet End Operations Short Course = Notes Tech 1993 Wet End Operations Short Course = Notes. Tech. 1994 Ausimm Annual Conference: Australian Mining Looks North - The Challenges and Choices = Australas I Min Met 1994 Ausimm Annual Conference: Australian Mining Looks North - The Challenges and Choices = Australas. I. Min. Met. 1994 Biological Sciences Symposium, Proceedings = P Tech As P 1994 Biological Sciences Symposium, Proceedings = P. Tech. As. P. 1994 Cern School of Computing, Proceedings = Cern Report 1994 Cern School of Computing, Proceedings = Cern Report. 1994 Coating Conference, Proceedings = P Tech As P 1994 Coating Conference, Proceedings = P. Tech. As. P. 1994 Deinking Short Course = Notes Tech 1994 Deinking Short Course = Notes. Tech. 1994 Educational Conference and 81st Annual Meeting of Appa: The Association of Higher Education Facilities Officers, Proceedings = Ann M Appa 1994 Educational Conference and 81st Annual Meeting of Appa: The Association of Higher Education Facilities Officers, Proceedings = Ann. M. Appa. 1994 Engineering Conference, Proceedings, Books 1-3 = P Tech As P 1994 Engineering Conference, Proceedings, Books 1-3 = P. Tech. As. P. 1994 European School of High-energy Physics, Proceedings = Cern Report 1994 European School of High-energy Physics, Proceedings = Cern. Report. 1994 Finishing and Converting Conference, Proceedings = P Tech As P 1994 Finishing and Converting Conference, Proceedings = P. Tech. As. P. 1994 Hot Melt Symposium = P Tech As P 1994 Hot Melt Symposium = P. Tech. As. P. 1994 Ieee/acm International Conference On Computer-aided Design - Digest of Technical Papers = Ieee Ic Cad 1994 Ieee/acm International Conference On Computer-aided Design - Digest of Technical Papers = Ieee. Ic. Cad. 1994 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text F 1994 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text. F. 1994 Ieee First World Conference On Photovoltaic Energy Conversion/conference Record of The Twenty Fourth Ieee Photovoltaic Specialists Conference-1994, Vols I and Ii = Ieee Phot Spec Conf 1994 Ieee First World Conference On Photovoltaic Energy Conversion/conference Record of The Twenty Fourth Ieee Photovoltaic Specialists Conference-1994, Vols I and Ii = Ieee Phot. Spec. Conf. 1994 Ieee International Conference On Robotics and Automation: Proceedings, Vols 1-4 = Ieee Int Conf Robot 1994 Ieee International Conference On Robotics and Automation: Proceedings, Vols 1-4 = Ieee Int. Conf. Robot. 1994 Ieee International Solid-state Circuits Conference - Digest of Technical Papers = Isscc Dig Tech Pap I 1994 Ieee International Solid-state Circuits Conference - Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 1994 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 1994 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 1994 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 1994 Ieee Seventh Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy 1994 Ieee Seventh Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. 1994 Ieee Ultrasonics Symposium Proceedings, Vols 1-3 = Ultrason 1994 Ieee Ultrasonics Symposium Proceedings, Vols 1-3 = Ultrason. 1994 International Conference On Hydraulics in Civil Engineering - Hydraulics Working With The Environment, Preprints of Papers = Inst Eng A 1994 International Conference On Hydraulics in Civil Engineering - Hydraulics Working With The Environment, Preprints of Papers = Inst. Eng. A. 1994 Nonwovens Conference = P Tech As P 1994 Nonwovens Conference = P. Tech. As. P. 1994 Papermakers Conferences, Books 1-2 = P Tech As P 1994 Papermakers Conferences, Books 1-2 = P. Tech. As. P. 1994 Plastic Laminates Symposium = P Tech As P 1994 Plastic Laminates Symposium = P. Tech. As. P. 1994 Polymers, Laminations & Coatings Conference = P Tech As P 1994 Polymers, Laminations & Coatings Conference = P. Tech. As. P. 1994 Practical Aspects of Pressing and Drying Seminar = Notes Tech 1994 Practical Aspects of Pressing and Drying Seminar = Notes. Tech. 1994 Process and Product Quality Conference = P Tech As P 1994 Process and Product Quality Conference = P. Tech. As. P. 1994 Process Control Symposium = P Tech As P 1994 Process Control Symposium = P. Tech. As. P. 1994 Pulping Conference, Books 1-3 = P Tech As P 1994 Pulping Conference, Books 1-3 = P. Tech. As. P. 1994 Recycling Symposium = P Tech As P 1994 Recycling Symposium = P. Tech. As. P. 1994 Tappi Paper Properties: What, How, and Why Short Course = Notes Tech 1994 Tappi Paper Properties: What, How, and Why Short Course = Notes. Tech. 1994 Topical Meeting On Optical Data Storage = P Soc Photo-opt Ins 1994 Topical Meeting On Optical Data Storage = P. Soc. Photo-opt. Ins. 1994 Wet End Operations Short Course = Notes Tech 1994 Wet End Operations Short Course = Notes. Tech. 1995 25th International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 1995 25th International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 1995 Ama Educators' Proceedings - Enhancing Knowledge Development in Marketing = Ama Educ Pr 1995 Ama Educators' Proceedings - Enhancing Knowledge Development in Marketing = Ama Educ. Pr. 1995 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ Conf 1995 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ. Conf. 1995 Avionics Conference and Exhibition - Low-cost Avionics: Can We Afford It?, Conference Proceedings = Era Rep 1995 Avionics Conference and Exhibition - Low-cost Avionics: Can We Afford It?, Conference Proceedings = Era. Rep. 1995 Cern School of Computing, Proceedings = Cern Report 1995 Cern School of Computing, Proceedings = Cern Report. 1995 Coating Conference, Books 1 and 2 = P Tech As P 1995 Coating Conference, Books 1 and 2 = P. Tech. As. P. 1995 Coating Fundamentals Symposium = P Tech As P 1995 Coating Fundamentals Symposium = P. Tech. As. P. 1995 Educational Conference & 82nd Annual Meeting, Proceedings = Ann M Appa 1995 Educational Conference & 82nd Annual Meeting, Proceedings = Ann. M. Appa. 1995 European School of High-energy Physics, Proceedings = Cern Report 1995 European School of High-energy Physics, Proceedings = Cern. Report. 1995 Hot Melt Symposium = P Tech As P 1995 Hot Melt Symposium = P. Tech. As. P. 1995 Ieee Cement Industry Technical Conference: Xxxvii Conference Record = Ieee Cem Ind Tech Co 1995 Ieee Cement Industry Technical Conference: Xxxvii Conference Record = Ieee Cem. Ind. Tech. Co. 1995 Ieee International Conference On Evolutionary Computation, Vols 1 and 2 = Ieee C Evol Computat 1995 Ieee International Conference On Evolutionary Computation, Vols 1 and 2 = Ieee C. Evol. Computat. 1995 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc Dig Tech Pap I 1995 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 1995 Ieee International Symposium On Circuits and Systems, Vols 1-3 = Ieee Int Symp Circ S 1995 Ieee International Symposium On Circuits and Systems, Vols 1-3 = Ieee Int. Symp. Circ. S. 1995 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 1995 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 1995 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 1995 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 1995 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 1995 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 1995 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 1995 International Conference On Acoustics, Speech, and Signal Processing - Conference Proceedings, Vols 1-5 = Int Conf Acoust Spee 1995 International Conference On Acoustics, Speech, and Signal Processing - Conference Proceedings, Vols 1-5 = Int. Conf. Acoust. Spee. 1995 International Conference On Education in Optics = P Soc Photo-opt Ins 1995 International Conference On Education in Optics = P. Soc. Photo-opt. Ins. 1995 International Conference On Multichip Modules = P Soc Photo-opt Ins 1995 International Conference On Multichip Modules = P. Soc. Photo-opt. Ins. 1995 International Environmental Conference, Books 1 and 2 = P Tech As P 1995 International Environmental Conference, Books 1 and 2 = P. Tech. As. P. 1995 International Symposium On Microelectronics = Proc Spie 1995 International Symposium On Microelectronics = Proc. Spie. 1995 International Symposium On Microelectronics = P Soc Photo-opt Ins 1995 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 1995 Meeting of The Northern Global Change Program, Proceedings = Usda Ne Exp 1995 Meeting of The Northern Global Change Program, Proceedings = Usda. Ne. Exp. 1995 Nonwovens Conference = P Tech As P 1995 Nonwovens Conference = P. Tech. As. P. 1995 Papermakers Conference = P Tech As P 1995 Papermakers Conference = P. Tech. As. P. 1995 Polymers, Laminations & Coatings Conference, Books 1 and 2 = P Tech As P 1995 Polymers, Laminations & Coatings Conference, Books 1 and 2 = P. Tech. As. P. 1995 Proceedings of The Eighty-eighth Annual Conference On Taxation = P A Con Tax 1995 Proceedings of The Eighty-eighth Annual Conference On Taxation = P. A. Con. Tax. 1995 Process & Product Quality Conference = P Tech As P 1995 Process & Product Quality Conference = P. Tech. As. P. 1995 Pulping Conference, Books 1 and 2 = P Tech As P 1995 Pulping Conference, Books 1 and 2 = P. Tech. As. P. 1995 Recycling Symposium = P Tech As P 1995 Recycling Symposium = P. Tech. As. P. 1995 Supreme Court Review = Supreme Court Rev 1995 Supreme Court Review = Supreme Court Rev. 1995 Tappi/isa Pupid Process Control, Electrical & Information Conference = P Tech As P 1995 Tappi/isa Pupid Process Control, Electrical & Information Conference = P. Tech. As. P. 1995 Transactions of Aace International - Proceedings of The 39th Annual Meeting of Aace International = Trans Annu Meet Amer 1995 Transactions of Aace International - Proceedings of The 39th Annual Meeting of Aace International = Trans. Annu. Meet. Amer. 1996 26th International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 1996 26th International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 1996 Ama Educators' Proceedings, Vol 7 - Enhancing Knowledge Development in Marketing = Ama Educ Pr 1996 Ama Educators' Proceedings, Vol 7 - Enhancing Knowledge Development in Marketing = Ama Educ. Pr. 1996 Ama Winter Educators' Conference, Vol 7 - Marketing Theory and Applications = Ama Winter Educ Conf 1996 Ama Winter Educators' Conference, Vol 7 - Marketing Theory and Applications = Ama Winter Educ. Conf. 1996 American Forage and Grassland Council, Proceedings = P Forag Gr 1996 American Forage and Grassland Council, Proceedings = P. Forag. Gr. 1996 Cern School of Computing = Cern Report 1996 Cern School of Computing = Cern Report. 1996 Coating Conference Proceedings = P Tech As P 1996 Coating Conference Proceedings = P. Tech. As. P. 1996 Deinking Short Course = Notes Tech 1996 Deinking Short Course = Notes. Tech. 1996 Engineering Conference, Books 1 and 2 = P Tech As P 1996 Engineering Conference, Books 1 and 2 = P. Tech. As. P. 1996 European School of High-energy Physics = Cern Report 1996 European School of High-energy Physics = Cern. Report. 1996 Finishing & Converting Conference = P Tech As P 1996 Finishing & Converting Conference = P. Tech. As. P. 1996 Ieee/acm International Conference On Computer-aided Design - Digest of Technical Papers = Ieee Ic Cad 1996 Ieee/acm International Conference On Computer-aided Design - Digest of Technical Papers = Ieee. Ic. Cad. 1996 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text F 1996 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text. F. 1996 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc Cvpr Ieee 1996 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc. Cvpr. Ieee 1996 Ieee International Conference On Acoustics, Speech, and Signal Processing, Conference Proceedings, Vols 1-6 = Int Conf Acoust Spee 1996 Ieee International Conference On Acoustics, Speech, and Signal Processing, Conference Proceedings, Vols 1-6 = Int. Conf. Acoust. Spee. 1996 Ieee International Conference On Evolutionary Computation (icec '96), Proceedings Of = Ieee C Evol Computat 1996 Ieee International Conference On Evolutionary Computation (icec '96), Proceedings Of = Ieee C. Evol. Computat. 1996 Ieee International Conference On Robotics and Automation, Proceedings, Vols 1-4 = Ieee Int Conf Robot 1996 Ieee International Conference On Robotics and Automation, Proceedings, Vols 1-4 = Ieee Int. Conf. Robot. 1996 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc Dig Tech Pap I 1996 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 1996 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 1996 Ieee Nuclear Science Symposium - Conference Record, Vols 1-3 = Ieee Nucl Sci Conf R 1996 Ieee Nuclear Science Symposium - Conference Record, Vols 1-3 = Ieee Nucl. Sci. Conf. R. 1996 Ieee/pca Cement Industry Technical Conference - Xxxviii Conference Record = Ieee Cem Ind Tech Co 1996 Ieee/pca Cement Industry Technical Conference - Xxxviii Conference Record = Ieee. Cem. Ind. Tech. Co. 1996 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 1996 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 1996 Ieee Tencon - Digital Signal Processing Applications Proceedings, Vols 1 and 2 = Tencon Ieee Region 1996 Ieee Tencon - Digital Signal Processing Applications Proceedings, Vols 1 and 2 = Tencon Ieee Region. 1996 Ieee Ultrasonics Symposium, Proceedings, Vols 1 and 2 = Ultrason 1996 Ieee Ultrasonics Symposium, Proceedings, Vols 1 and 2 = Ultrason. 1996 International Conference On Simulation and Multimedia in Engineering Education (icsee '96) / Communication Networks Modeling and Simulation Conference = Simul Series 1996 International Conference On Simulation and Multimedia in Engineering Education (icsee '96) / Communication Networks Modeling and Simulation Conference = Simul. Series. 1996 International Environmental Conference Books 1 and 2 = P Tech As P 1996 International Environmental Conference Books 1 and 2 = P. Tech. As. P. 1996 International Printing & Graphic Arts Conference = P Tech As P 1996 International Printing & Graphic Arts Conference = P. Tech. As. P. 1996 International Pulp Bleaching Conference, Books 1 and 2 = P Tech As P 1996 International Pulp Bleaching Conference, Books 1 and 2 = P. Tech. As. P. 1996 International Symposium On Microelectronics = P Soc Photo-opt Ins 1996 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 1996 Metered Size Press Forum Proceedings = P Tech As P 1996 Metered Size Press Forum Proceedings = P. Tech. As. P. 1996 Nonwovens Conference = P Tech As P 1996 Nonwovens Conference = P. Tech. As. P. 1996 Papermakers Conference = P Tech As P 1996 Papermakers Conference = P. Tech. As. P. 1996 Plastic Laminates Symposium = P Tech As P 1996 Plastic Laminates Symposium = P. Tech. As. P. 1996 Polymers, Laminations & Coatings Conference, Books 1 and 2 = P Tech As P 1996 Polymers, Laminations & Coatings Conference, Books 1 and 2 = P. Tech. As. P. 1996 Process Control Electrical & Information Conference = P Tech As P 1996 Process Control Electrical & Information Conference = P. Tech. As. P. 1996 Process & Product Quality Conference = P Tech As P 1996 Process & Product Quality Conference = P. Tech. As. P. 1996 Pulping Conference, Books 1 and 2 = P Tech As P 1996 Pulping Conference, Books 1 and 2 = P. Tech. As. P. 1996 Recycling Symposium = P Tech As P 1996 Recycling Symposium = P. Tech. As. P. 1996 Rural Electric Power Conference = Rur Elec P 1996 Rural Electric Power Conference = Rur. Elec. P. 1996 Symposium for The Marketing of Higher Education = Amer Mar As 1996 Symposium for The Marketing of Higher Education = Amer. Mar. As. 1996 Tappi, Apa, Cppa & Motag-south Chip Preparation and Quality Short Course = Notes Tech 1996 Tappi, Apa, Cppa & Motag-south Chip Preparation and Quality Short Course = Notes. Tech. 1996 Tappi Coated Paperboard Short Course = Notes Tech 1996 Tappi Coated Paperboard Short Course = Notes. Tech. 1996 Tappi Life Cycle Assessment Symposium = P Tech As P 1996 Tappi Life Cycle Assessment Symposium = P. Tech. As. P. 1996 Tappi Minimum Effluent Mills Symposium = P Tech As P 1996 Tappi Minimum Effluent Mills Symposium = P. Tech. As. P. 1996 The Supreme Court Review = Supreme Court Rev 1996 The Supreme Court Review = Supreme Court Rev. 1997 Asian International Laminates Symposium = P Tech As P 1997 Asian International Laminates Symposium = P. Tech. As. P. 1997 Biological Sciences Symposium = P Tech As P 1997 Biological Sciences Symposium = P. Tech. As. P. 1997 Brighton Crop Protection Conference - Weeds, Conference Proceedings Vols 1-3 = Proc Brighton Crop 1997 Brighton Crop Protection Conference - Weeds, Conference Proceedings Vols 1-3 = Proc. Brighton Crop 1997 Cern School of Computing = Cern Report 1997 Cern School of Computing = Cern Report. 1997 Coating Conference = P Tech As P 1997 Coating Conference = P. Tech. As. P. 1997 Deinking Short Course = Notes Tech 1997 Deinking Short Course = Notes. Tech. 1997 Environmental Conference & Exhibit, Books 1 and 2 = P Tech As P 1997 Environmental Conference & Exhibit, Books 1 and 2 = P. Tech. As. P. 1997 Federal Budget: Retrospect and Prospect = Policy Forum Series 1997 Federal Budget: Retrospect and Prospect = Policy. Forum. Series. 1997 Finishing and Converting Conference & Trade Fair = P Tech As P 1997 Finishing and Converting Conference & Trade Fair = P. Tech. As. P. 1997 Hot Melt Symposium = P Tech As P 1997 Hot Melt Symposium = P. Tech. As. P. 1997 Ieee 47th Vehicular Technology Conference Proceedings, Vols 1-3 = Ieee Vtc P 1997 Ieee 47th Vehicular Technology Conference Proceedings, Vols 1-3 = Ieee Vtc. P. 1997 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp Conf Proc 1997 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp. Conf. Proc. 1997 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee A Text 1997 Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee A. Text. 1997 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc Cvpr Ieee 1997 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc. Cvpr. Ieee 1997 Ieee Conference On Information Visualization, Proceedings = Ieee Infor Vis 1997 Ieee Conference On Information Visualization, Proceedings = Ieee Infor. Vis. 1997 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I - V = Int Conf Acoust Spee 1997 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I - V = Int. Conf. Acoust. Spee. 1997 Ieee International Conference On Robotics and Automation - Proceedings, Vols 1-4 = Ieee Int Conf Robot 1997 Ieee International Conference On Robotics and Automation - Proceedings, Vols 1-4 = Ieee Int. Conf. Robot. 1997 Ieee International Solid-state Circuits Conference - Digest of Technical Papers = Isscc Dig Tech Pap I 1997 Ieee International Solid-state Circuits Conference - Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 1997 Ieee Mtt-s International Microwave Symposium Digest, Vols I-iii = Ieee Mtt-s 1997 Ieee Mtt-s International Microwave Symposium Digest, Vols I-iii = Ieee Mtt S Int Micr 1997 Ieee Mtt-s International Microwave Symposium Digest, Vols I-iii = Ieee Mtt. S. Int. Micr. 1997 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing, Vols 1 and 2 = Ieee Pacif 1997 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing, Vols 1 and 2 = Ieee Pacif. 1997 Ieee/pca Cement Industry Technical Conference - Xxxix Conference Record = Ieee Cem Ind Tech Co 1997 Ieee/pca Cement Industry Technical Conference - Xxxix Conference Record = Ieee. Cem. Ind. Tech. Co. 1997 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop - Asmc 97 Proceedings = Asmc Proc 1997 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop - Asmc 97 Proceedings = Asmc Proc. 1997 Ieee Symposium On Security and Privacy - Proceedings = P Ieee S Secur Priv 1997 Ieee Symposium On Security and Privacy - Proceedings = P. Ieee S. Secur. Priv. 1997 Ieee Symposium On Visual Languages, Proceedings = Ieee Vislang 1997 Ieee Symposium On Visual Languages, Proceedings = Ieee Vislang. 1997 International Conference On Bond Graph Modeling and Simulation (icbgm'97) = Simul Series 1997 International Conference On Bond Graph Modeling and Simulation (icbgm'97) = Simul. Series. 1997 International Conference On Indium Phosphide and Related Materials - Conference Proceedings = Conf P Indium Phosph 1997 International Conference On Indium Phosphide and Related Materials - Conference Proceedings = Conf. P. Indium Phosph. 1997 International Conference On Simulation in Engineering Education (icsee'97) = Simul Series 1997 International Conference On Simulation in Engineering Education (icsee'97) = Simul. Series. 1997 International Symposium On Microelectronics, Proceedings = P Soc Photo-opt Ins 1997 International Symposium On Microelectronics, Proceedings = P. Soc. Photo-opt. Ins. 1997 Kraft Pulping Short Course = Notes Tech 1997 Kraft Pulping Short Course = Notes. Tech. 1997 Newsprint Forum = P Tech As P 1997 Newsprint Forum = P. Tech. As. P. 1997 Nonwovens Conference = P Tech As P 1997 Nonwovens Conference = P. Tech. As. P. 1997 Pacific Rim Conference On Stellar Astrophysics = Astr Soc P 1997 Pacific Rim Conference On Stellar Astrophysics = Astr. Soc. P. 1997 Polymers, Laminations, & Coating Conference, Books 1 and 2 = P Tech As P 1997 Polymers, Laminations, & Coating Conference, Books 1 and 2 = P. Tech. As. P. 1997 Process & Product Quality Conference & Trade Fair = P Tech As P 1997 Process & Product Quality Conference & Trade Fair = P. Tech. As. P. 1997 Pulping Conference, Books 1 and 2 = P Tech As P 1997 Pulping Conference, Books 1 and 2 = P. Tech. As. P. 1997 Recycling Symposium = P Tech As P 1997 Recycling Symposium = P. Tech. As. P. 1997 Shanghai International Conference On Laser Medicine and Surgery = P Soc Photo-opt Ins 1997 Shanghai International Conference On Laser Medicine and Surgery = P. Soc. Photo-opt. Ins. 1997 Tappi Advanced Coating Fundamentals Symposium, Proceedings = P Tech As P 1997 Tappi Advanced Coating Fundamentals Symposium, Proceedings = P. Tech. As. P. 1997 Tissue Runnability Short Course = Notes Tech 1997 Tissue Runnability Short Course = Notes. Tech. 1998 28th Ieee International Symposium On Multiple-valued Logic - Proceedings = Int Sym Mvl 1998 28th Ieee International Symposium On Multiple-valued Logic - Proceedings = Int. Sym. Mvl. 1998 American Forage and Grassland Council, Proceedings = P Forag Gr 1998 American Forage and Grassland Council, Proceedings = P. Forag. Gr. 1998 Cern School of Computing, Proceedings = Cern Report 1998 Cern School of Computing, Proceedings = Cern Report. 1998 European School of High-energy Physics, Proceedings = Cern Report 1998 European School of High-energy Physics, Proceedings = Cern. Report. 1998 Hot Melt Symposium = P Tech As P 1998 Hot Melt Symposium = P. Tech. As. P. 1998 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp Conf Proc 1998 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp. Conf. Proc. 1998 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc Cvpr Ieee 1998 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Proceedings = Proc. Cvpr. Ieee 1998 Ieee Conference On Information Visualization - Proceedings = Ieee Infor Vis 1998 Ieee Conference On Information Visualization - Proceedings = Ieee Infor. Vis. 1998 Ieee International Conference On Evolutionary Computation - Proceedings = Ieee C Evol Computat 1998 Ieee International Conference On Evolutionary Computation - Proceedings = Ieee C. Evol. Computat. 1998 Ieee International Conference On Robotics and Automation, Vols 1-4 = Ieee Int Conf Robot 1998 Ieee International Conference On Robotics and Automation, Vols 1-4 = Ieee Int. Conf. Robot. 1998 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys Man Cybern 1998 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys. Man. Cybern. 1998 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc 1998 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc. 1998 Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int Symp Defect 1998 Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int. Symp. Defect 1998 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 1998 Ieee Ultrasonics Symposium - Proceedings, Vols 1 and 2 = Ultrason 1998 Ieee Ultrasonics Symposium - Proceedings, Vols 1 and 2 = Ultrason. 1998 International Conference On Indium Phosphide and Related Materials - Conference Proceedings = Conf P Indium Phosph 1998 International Conference On Indium Phosphide and Related Materials - Conference Proceedings = Conf. P. Indium Phosph. 1998 International Conference On Parallel Processing - Proceedings = Proc Int Conf Paral 1998 International Conference On Parallel Processing - Proceedings = Proc. Int. Conf. Paral. 1998 International Symposium On Microelectronics = Proc Spie 1998 International Symposium On Microelectronics = Proc. Spie. 1998 International Symposium On Microelectronics = P Soc Photo-opt Ins 1998 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 1998 International Workshop On Memory Technology, Design and Testing - Proceedings = Rec Ieee Int Wkshp M 1998 International Workshop On Memory Technology, Design and Testing - Proceedings = Rec. Ieee. Int. Wkshp. M. 1998 Sixth International Workshop On Quality of Service (iwqos '98) = Int Worksh Qual Serv 1998 Sixth International Workshop On Quality of Service (iwqos '98) = Int. Worksh. Qual. Serv. 1998 The Supreme Court Review = Supreme Court Rev 1998 The Supreme Court Review = Supreme Court Rev. 1998 Trb Distinguished Lecture, Pt 1/maintenance Challenges and Safety Issues, Pt 2 = Transport Res Rec 1998 Trb Distinguished Lecture, Pt 1/maintenance Challenges and Safety Issues, Pt 2 = Transport. Res. Rec. 1999 29th Ieee International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 1999 29th Ieee International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 1999 Cern School of Computing, Proceedings = Cern Report 1999 Cern School of Computing, Proceedings = Cern Report. 1999 Ieee 49th Vehicular Technology Conference, Vols 1-3 = Ieee Vts Veh Technol 1999 Ieee 49th Vehicular Technology Conference, Vols 1-3 = Ieee Vts. Veh. Technol. 1999 Ieee-ias/pca Cement Industry Technical Conference - Conference Record = Ieee Cem Ind Tech Co 1999 Ieee-ias/pca Cement Industry Technical Conference - Conference Record = Ieee. Cem. Ind. Tech. Co. 1999 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc 1999 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc. 1999 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt-s 1999 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt S Int Micr 1999 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt. S. Int. Micr. 1999 Ieee Nuclear Science Symposium - Conference Record, Vols 1-3 = Ieee Nucl Sci Conf R 1999 Ieee Nuclear Science Symposium - Conference Record, Vols 1-3 = Ieee Nucl. Sci. Conf. R. 1999 Ieee Radio Frequency Integrated Circuits (rfic) Symposium - Digest of Papers = Ieee Rad Freq Integr 1999 Ieee Radio Frequency Integrated Circuits (rfic) Symposium - Digest of Papers = Ieee Rad. Freq. Integr. 1999 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 1999 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 1999 International Conference On Biomedical Optics (bmo'99) = P Soc Photo-opt Ins 1999 International Conference On Biomedical Optics (bmo'99) = P. Soc. Photo-opt. Ins. 1999 International Conference On High Density Packaging and Mcms, Proceedings = Proc Spie 1999 International Conference On High Density Packaging and Mcms, Proceedings = Proc. Spie. 1999 International Conference On High Density Packaging and Mcms, Proceedings = P Soc Photo-opt Ins 1999 International Conference On High Density Packaging and Mcms, Proceedings = P. Soc. Photo-opt. Ins. 1999 International Conference On Industrial Lasers (il'99) = P Soc Photo-opt Ins 1999 International Conference On Industrial Lasers (il'99) = P. Soc. Photo-opt. Ins. 1999 International Symposium On Microelectronics, Proceedings = Proc Spie 1999 International Symposium On Microelectronics, Proceedings = Proc. Spie. 1999 International Symposium On Microelectronics, Proceedings = P Soc Photo-opt Ins 1999 International Symposium On Microelectronics, Proceedings = P. Soc. Photo-opt. Ins. 1999 Supreme Court Review = Supreme Court Rev 1999 Supreme Court Review = Supreme Court Rev. 19th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 19th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 19th Annual International Symposium On Computer Architecture : Proceedings = Acm Comp Ar 19th Annual International Symposium On Computer Architecture : Proceedings = Acm. Comp. Ar. 19th Annual Symposium On Photomask Technology, Pts 1 and 2 = P Soc Photo-opt Ins 19th Annual Symposium On Photomask Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 19th Conference On Software Engineering Education & Training, Proceedings = Conf Softw Eng Educ 19th Conference On Software Engineering Education & Training, Proceedings = Conf. Softw. Eng. Educ. 19th Euromicro Conference On Real-time Systems, Proceedings = Euromicro 19th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P Soc Photo-opt Ins 19th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P. Soc. Photo-opt. Ins. 19th European Symposium On Computer Aided Process Engineering = Comput-aided Chem En 19th European Symposium On Computer Aided Process Engineering = Comput-aided. Chem. En. 19th Ieee Annual Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput 19th Ieee Annual Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. 19th Ieee International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 19th Ieee International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 19th Ieee International Conference On Tools With Artificial Intelligence, Vol Ii, Proceedings = Proc Int C Tools Art 19th Ieee International Conference On Tools With Artificial Intelligence, Vol Ii, Proceedings = Proc. Int. C. Tools Art. 19th Ieee International Conference On Tools With Artificial Intelligence, Vol I, Proceedings = Proc Int C Tools Art 19th Ieee International Conference On Tools With Artificial Intelligence, Vol I, Proceedings = Proc. Int. C. Tools Art. 19th Ieee International Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy 19th Ieee International Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. 19th Ieee International Workshops On Enabling Technologies: Infrastructure for Collaborative Enterprises (wetice 2010) = Ieee Enabl Technol 19th Ieee International Workshops On Enabling Technologies: Infrastructure for Collaborative Enterprises (wetice 2010) = Ieee Enabl. Technol. 19th Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 19th Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 19th Ieee Symposium On Reliable Distributed Systems - Proceedings = Sym Rel Dist Syst 19th Ieee Symposium On Reliable Distributed Systems - Proceedings = Sym. Rel. Dist. Syst. 19th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 19th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 19th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 19th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 19th International Conference On Optical Fibre Sensors, Pts 1 and 2 = Proc Spie 19th International Conference On Optical Fibre Sensors, Pts 1 and 2 = Proc. Spie. 19th International Conference On Optical Fibre Sensors, Pts 1 and 2 = P Soc Photo-opt Ins 19th International Conference On Optical Fibre Sensors, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 19th International Conference On Pattern Recognition, Vols 1-6 = Int C Patt Recog 19th International Conference On Pattern Recognition, Vols 1-6 = Int. C. Patt. Recog. 19th International Conference On Photoelectronics and Night Vision Devices = P Soc Photo-opt Ins 19th International Conference On Photoelectronics and Night Vision Devices = P. Soc. Photo-opt. Ins. 19th International Conference On Vlsi Design, Proceedings = I Conf Vlsi Design 19th International Conference On Vlsi Design, Proceedings = I. Conf. Vlsi Design. 19th International Congress On High-speed Photography and Photonics, Pts 1 and 2 = P Soc Photo-opt Ins 19th International Congress On High-speed Photography and Photonics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 19th International Iupap Conference On Few-body Problems in Physics = Epj Web Conf 19th International Iupap Conference On Few-body Problems in Physics = Epj. Web. Conf. 19th International Symposium On Computer Architecture and High Performance Computing, Proceedings = Int Sym Comp Archit 19th International Symposium On Computer Architecture and High Performance Computing, Proceedings = Int. Sym. Comp. Archit. 19th International Water Supply Congress and Exhibition = Water Supp 19th International Water Supply Congress and Exhibition = Water Supp. 19th Saint Flour Summer School On Probabilities - 1989 = Lect Notes Math 19th Saint Flour Summer School On Probabilities - 1989 = Lect. Notes. Math. 19th Space Simulation Conference = Nasa Conf P 19th Space Simulation Conference = Nasa. Conf. P. 1st Annual International Conference On Solid State Lasers for Application to Inertial Confinement Fusion, Proceedings = P Soc Photo-opt Ins 1st Annual International Conference On Solid State Lasers for Application to Inertial Confinement Fusion, Proceedings = P. Soc. Photo-opt. Ins. 1st Arena Conference On Large Astronomical Infrastructures At Concordia, Prospects and Constraints for Antarctic Optical/ir Astronomy = Eas Publications 1st Arena Conference On Large Astronomical Infrastructures At Concordia, Prospects and Constraints for Antarctic Optical/ir Astronomy = Eas. Publications. 1st Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas Engn Educ Ser 1st Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas. Engn. Educ. Ser. 1st Austrian-hungarian Workshop On Distributed and Parallel Systems, Proceedings = Kfki Prep R 1st Austrian-hungarian Workshop On Distributed and Parallel Systems, Proceedings = Kfki. Prep. R. 1st Collaborative Innovation Networks Conference - Coins2009 = Procd Soc Behv 1st Collaborative Innovation Networks Conference - Coins2009 = Procd. Soc. Behv. 1st Conference On Evacuation Modeling and Management = Procedia Engineer 1st Conference On Evacuation Modeling and Management = Procedia. Engineer. 1st Crisis in Cosmology Conference, Ccc-i = Aip Conf Proc 1st Crisis in Cosmology Conference, Ccc-i = Aip. Conf. Proc. 1st Eps Conference On History of Physics in Europe in The 19th and 20th Centuries = Ital Phy So 1st Eps Conference On History of Physics in Europe in The 19th and 20th Centuries = Ital. Phy. So. 1st Eucomas = Vdi Bericht 1st Eucomas = Vdi. Bericht. 1st European Nonlinear Oscillations Conference = Math Res 1st European Nonlinear Oscillations Conference = Math. Res. 1st International Conference On Large Scale Applications and Radiation Hardness of Semiconductor Detectors = Ital Phy So 1st International Conference On Large Scale Applications and Radiation Hardness of Semiconductor Detectors = Ital. Phy. So. 1st International Conference On Magnetic Refrigeration At Room Temperature = Refr Sci T 1st International Conference On Magnetic Refrigeration At Room Temperature = Refr. Sci. T. 1st International Conference On New Materials for Extreme Environments = Adv Mat Res 1st International Conference On New Materials for Extreme Environments = Adv. Mat. Res. 1st International Conference On Process Intensification for The Chemical Industry = Bhr Gr Conf Ser Publ 1st International Conference On Process Intensification for The Chemical Industry = Bhr. Gr. Conf. Ser. Publ. 1st International Conference On Protecting The Environment - in Process Industry = Bhr Gr Conf Ser Publ 1st International Conference On Protecting The Environment - in Process Industry = Bhr. Gr. Conf. Ser. Publ. 1st International Conference On Security Camera Network, Privacy Protection and Community Safety 2009 = Procd Soc Behv 1st International Conference On Security Camera Network, Privacy Protection and Community Safety 2009 = Procd. Soc. Behv. 1st International Ieee Embs Conference On Neural Engineering 2003, Conference Proceedings = I Ieee Embs C Neur E 1st International Ieee Embs Conference On Neural Engineering 2003, Conference Proceedings = I. Ieee Embs C. Neur. E. 1st International Rilem Symposium On Self Compacting Concrete = Rilem Proc 1st International Rilem Symposium On Self Compacting Concrete = Rilem Proc. 1st International Rilem Symposium On Timber Engineering = Rilem Proc 1st International Rilem Symposium On Timber Engineering = Rilem Proc. 1st International Symposium On Design, Performance and Use of Self-consolidating Concrete = Rilem Proc 1st International Symposium On Design, Performance and Use of Self-consolidating Concrete = Rilem. Proc. 1st International Symposium On Laser Precision Microfabrication = P Soc Photo-opt Ins 1st International Symposium On Laser Precision Microfabrication = P. Soc. Photo-opt. Ins. 1st North American Conference On Multiphase Technology = Bhr Gr Conf Ser Publ 1st North American Conference On Multiphase Technology = Bhr. Gr. Conf. Ser. Publ. 1st Uicee Annual Conference On Engineering Education Under The Theme: Globalisation of Engineering Education, Conference Proceedings = Monas Engn Educ Ser 1st Uicee Annual Conference On Engineering Education Under The Theme: Globalisation of Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 1st Workshop Italian Research On Antarctic Atmosphere = Ital Phy So 1st Workshop Italian Research On Antarctic Atmosphere = Ital. Phy. So. 1st Workshop On Intense Hadron Facilities and Antiproton Physics = Ital Phy So 1st Workshop On Intense Hadron Facilities and Antiproton Physics = Ital. Phy. So. 1st Workshop On Specialty Optical Fibers and Their Applications = Aip Conf Proc 1st Workshop On Specialty Optical Fibers and Their Applications = Aip. Conf. Proc. 1v Cmos G(m)-c Filters = Analog Circ Sig Proc 1v Cmos G(m)-c Filters = Analog. Circ. Sig. Proc. 2000 Ama Educators' Proceedings - Enhancing Knowledge Development in Marketing = Ama Winter Educ Conf 2000 Ama Educators' Proceedings - Enhancing Knowledge Development in Marketing = Ama Winter. Educ. Conf. 2000 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ Conf 2000 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ. Conf. 2000 Cern School of Computing = Cern Report 2000 Cern School of Computing = Cern Report. 2000 European School of High-energy Physics = Cern Report 2000 European School of High-energy Physics = Cern. Report. 2000 Hd International Conference On High-density Interconnect and Systems Packaging = Proc Spie 2000 Hd International Conference On High-density Interconnect and Systems Packaging = Proc. Spie. 2000 Hd International Conference On High-density Interconnect and Systems Packaging = P Soc Photo-opt Ins 2000 Hd International Conference On High-density Interconnect and Systems Packaging = P. Soc. Photo-opt. Ins. 2000 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 1 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 2 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 2 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 3 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 3 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 4 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 4 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 5 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 5 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 6 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 6 = Aerosp. Conf. Proc. 2000 Ieee Aerospace Conference Proceedings, Vol 7 = Aerosp Conf Proc 2000 Ieee Aerospace Conference Proceedings, Vol 7 = Aerosp. Conf. Proc. 2000 Ieee Embs International Conference On Information Technology Applications in Biomedicine, Proceedings = Eng Med Biol Soc Ann 2000 Ieee Embs International Conference On Information Technology Applications in Biomedicine, Proceedings = Eng. Med. Biol. Soc. Ann. 2000 Ieee-ias/pca Cement Industry Technical Conference, Conference Record = Ieee Cem Ind Tech Co 2000 Ieee-ias/pca Cement Industry Technical Conference, Conference Record = Ieee. Cem. Ind. Tech. Co. 2000 Ieee International Conference On Acoustics, Speech, and Signal Processing, Proceedings, Vols I-vi = Int Conf Acoust Spee 2000 Ieee International Conference On Acoustics, Speech, and Signal Processing, Proceedings, Vols I-vi = Int. Conf. Acoust. Spee. 2000 Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr Ieee Comp Design 2000 Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr. Ieee Comp. Design. 2000 Ieee International Conference On Information Visualisation, Proceedings = Ieee Infor Vis 2000 Ieee International Conference On Information Visualisation, Proceedings = Ieee Infor. Vis. 2000 Ieee International Symposium On Visual Languages, Proceedings = Ieee Vislang 2000 Ieee International Symposium On Visual Languages, Proceedings = Ieee Vislang. 2000 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 2000 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 2000 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 2000 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc 2000 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc. Proc. 2000 Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P 2000 Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. 2000 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2000 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2000 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 2000 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 2000 International Conference On Image Processing, Vol I, Proceedings = Ieee Image Proc 2000 International Conference On Image Processing, Vol I, Proceedings = Ieee. Image Proc. 2000 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf P Indium Phosph 2000 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf. P. Indium Phosph. 2000 International Conference On Parallel Processing, Proceedings = Proc Int Conf Paral 2000 International Conference On Parallel Processing, Proceedings = Proc. Int. Conf. Paral. 2000 International Symposium On Microelectronics = Proc Spie 2000 International Symposium On Microelectronics = Proc. Spie. 2000 International Symposium On Microelectronics = P Soc Photo-opt Ins 2000 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 2000 Symposium for The Marketing of Higher Education = Amer Mar As 2000 Symposium for The Marketing of Higher Education = Amer. Mar. As. 2000 Trb Distinguished Lecture, Pt 1 - Asphalt Mixtures 2000, Pt 2 = Transport Res Rec 2000 Trb Distinguished Lecture, Pt 1 - Asphalt Mixtures 2000, Pt 2 = Transport. Res. Rec. 2001: A Materials and Processes Odyssey, Books 1 and 2 = Int Sampe Tech Conf 2001: A Materials and Processes Odyssey, Books 1 and 2 = Int. Sampe. Tech. Conf. 2001 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ Conf 2001 Ama Winter Educators' Conference - Marketing Theory and Applications = Ama Winter Educ. Conf. 2001 Cern-claf School of High-energy Physics = Cern Report 2001 Cern-claf School of High-energy Physics = Cern. Report. 2001 European School of High-energy Physics = Cern Report 2001 European School of High-energy Physics = Cern. Report. 2001 Hd International Conference On High-density Interconnect and Systems Packaging, Proceedings = Proc Spie 2001 Hd International Conference On High-density Interconnect and Systems Packaging, Proceedings = Proc. Spie. 2001 Hd International Conference On High-density Interconnect and Systems Packaging, Proceedings = P Soc Photo-opt Ins 2001 Hd International Conference On High-density Interconnect and Systems Packaging, Proceedings = P. Soc. Photo-opt. Ins. 2001 Ieee Aerospace Conference Proceedings, Vols 1-7 = Aerosp Conf Proc 2001 Ieee Aerospace Conference Proceedings, Vols 1-7 = Aerosp. Conf. Proc. 2001 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc Cvpr Ieee 2001 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc. Cvpr. Ieee 2001 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2, Proceedings = Proc Cvpr Ieee 2001 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2, Proceedings = Proc. Cvpr. Ieee 2001 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I-vi, Proceedings = Int Conf Acoust Spee 2001 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I-vi, Proceedings = Int. Conf. Acoust. Spee. 2001 Ieee International Conference On Robotics and Automation, Vols I-iv, Proceedings = Ieee Int Conf Robot 2001 Ieee International Conference On Robotics and Automation, Vols I-iv, Proceedings = Ieee Int. Conf. Robot. 2001 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys Man Cybern 2001 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys. Man. Cybern. 2001 Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int Symp Defect 2001 Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int. Symp. Defect 2001 Ieee International Workshop On Memory Technology, Design and Testing, Proceedings = Rec Ieee Int Wkshp M 2001 Ieee International Workshop On Memory Technology, Design and Testing, Proceedings = Rec. Ieee Int. Wkshp. M. 2001 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 2001 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 2001 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 2001 Ieee Nuclear Science Symposium, Conference Records, Vols 1-4 = Ieee Nucl Sci Conf R 2001 Ieee Nuclear Science Symposium, Conference Records, Vols 1-4 = Ieee Nucl. Sci. Conf. R. 2001 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2001 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2001 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc Proc 2001 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc. Proc. 2001 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2001 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2001 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 2001 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 2001 International Conference On Computer Design, Iccd 2001, Proceedings = Pr Ieee Comp Design 2001 International Conference On Computer Design, Iccd 2001, Proceedings = Pr. Ieee. Comp. Design. 2001 International Conference On Image Processing, Vol I, Proceedings = Ieee Image Proc 2001 International Conference On Image Processing, Vol I, Proceedings = Ieee. Image Proc. 2001 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf P Indium Phosph 2001 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf. P. Indium Phosph. 2001 International Symposium On Microelectronics, Proceedings = Proc Spie 2001 International Symposium On Microelectronics, Proceedings = Proc. Spie. 2001 International Symposium On Microelectronics, Proceedings = P Soc Photo-opt Ins 2001 International Symposium On Microelectronics, Proceedings = P. Soc. Photo-opt. Ins. 2001 Spring School On Superstrings and Related Matters = Ictp Lect Notes 2001 Spring School On Superstrings and Related Matters = Ictp. Lect. Notes. 2001 Summer School On Particle Physics = Ictp Lect Notes 2001 Summer School On Particle Physics = Ictp. Lect. Notes. 2001 The Supreme Court Review = Supreme Court Rev 2001 The Supreme Court Review = Supreme Court Rev. 2001 Trb Distinguished Lecture, Pt 1 - Bicycle and Pedestrian Research, Pt 2 = Transport Res Rec 2001 Trb Distinguished Lecture, Pt 1 - Bicycle and Pedestrian Research, Pt 2 = Transport. Res. Rec. 2002 23rd International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int Conf Microelectr 2002 23rd International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int. Conf. Microelectr. 2002 European School of High-energy Physics, Proceedings = Cern Report 2002 European School of High-energy Physics, Proceedings = Cern. Report. 2002 Ieee Aerospace Conference Proceedings, Vols 1-7 = Aerosp Conf Proc 2002 Ieee Aerospace Conference Proceedings, Vols 1-7 = Aerosp. Conf. Proc. 2002 Ieee Africon, Vols 1 and 2 = Ieee Africon 2002 Ieee Africon, Vols 1 and 2 = Ieee Africon. 2002 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I-iv, Proceedings = Int Conf Acoust Spee 2002 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols I-iv, Proceedings = Int. Conf. Acoust. Spee. 2002 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr 2002 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. 2002 Ieee International Workshop On Workload Characterization = I S Workl Char Proc 2002 Ieee International Workshop On Workload Characterization = I. S. Workl. Char. Proc. 2002 Ieee/leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann Mtg 2002 Ieee/leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee. Leos. Ann. Mtg. 2002 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 2002 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 2002 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 2002 Ieee Nuclear Science Symposium, Conference Record, Vols 1-3 = Ieee Nucl Sci Conf R 2002 Ieee Nuclear Science Symposium, Conference Record, Vols 1-3 = Ieee Nucl. Sci. Conf. R. 2002 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2002 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2002 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc 2002 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc. Proc. 2002 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2002 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2002 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 2002 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 2002 International Conference On Advanced Packaging and Systems, Proceedings = P Soc Photo-opt Ins 2002 International Conference On Advanced Packaging and Systems, Proceedings = P. Soc. Photo-opt. Ins. 2002 International Conference On Image Processing, Vol I, Proceedings = Ieee Image Proc 2002 International Conference On Image Processing, Vol I, Proceedings = Ieee. Image Proc. 2002 International Conference On Parallel Processing, Proceeding = Proc Int Conf Paral 2002 International Conference On Parallel Processing, Proceeding = Proc. Int. Conf. Paral. 2002 International Symposium On Microelectronics, Proceedings = Proc Spie 2002 International Symposium On Microelectronics, Proceedings = Proc. Spie. 2002 International Symposium On Microelectronics, Proceedings = P Soc Photo-opt Ins 2002 International Symposium On Microelectronics, Proceedings = P. Soc. Photo-opt. Ins. 2002 Tenth Ieee International Workshop On Quality of Service = Int Worksh Qual Serv 2002 Tenth Ieee International Workshop On Quality of Service = Int. Worksh. Qual. Serv. 2003 Ieee 58th Vehicular Technology Conference, Vols1-5, Proceedings = Ieee Vts Veh Technol 2003 Ieee 58th Vehicular Technology Conference, Vols1-5, Proceedings = Ieee Vts. Veh. Technol. 2003 Ieee Aerospace Conference Proceedings, Vols 1-8 = Aerosp Conf Proc 2003 Ieee Aerospace Conference Proceedings, Vols 1-8 = Aerosp. Conf. Proc. 2003 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc Cvpr Ieee 2003 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc. Cvpr. Ieee 2003 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol Ii, Proceedings = Proc Cvpr Ieee 2003 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol Ii, Proceedings = Proc. Cvpr. Ieee 2003 Ieee Industry Applications Conference, Vols 1-3 = Ieee Ind Applic Soc 2003 Ieee Industry Applications Conference, Vols 1-3 = Ieee Ind. Applic. Soc. 2003 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int Conf Acoust Spee 2003 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int. Conf. Acoust. Spee. 2003 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Proceedings = Int Conf Acoust Spee 2003 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Proceedings = Int. Conf. Acoust. Spee. 2003 Ieee International Conference On Robotics and Automation, Vols 1-3, Proceedings = Ieee Int Conf Robot 2003 Ieee International Conference On Robotics and Automation, Vols 1-3, Proceedings = Ieee Int. Conf. Robot. 2003 Ieee International Conference On Systems, Man and Cybernetics, Vols 1-5, Conference Proceedings = Ieee Sys Man Cybern 2003 Ieee International Conference On Systems, Man and Cybernetics, Vols 1-5, Conference Proceedings = Ieee Sys. Man Cybern. 2003 Ieee International Performance, Computing, and Communications Conference Proceedings = Ieee Ipccc 2003 Ieee International Performance, Computing, and Communications Conference Proceedings = Ieee Ipccc. 2003 Ieee International Solid-state Circuits Conference: Digest of Technical Papers = Isscc Dig Tech Pap I 2003 Ieee International Solid-state Circuits Conference: Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 2003 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr 2003 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. 2003 Ieee International Symposium On Intelligent Signal Processing, Proceedings = I S Intell Sig Pr 2003 Ieee International Symposium On Intelligent Signal Processing, Proceedings = I. S. Intell. Sig. Pr. 2003 Ieee International Workshop On Workload Characterization = I S Workl Char Proc 2003 Ieee International Workshop On Workload Characterization = I. S. Workl. Char. Proc. 2003 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann Mtg 2003 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann. Mtg. 2003 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt-s 2003 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt S Int Micr 2003 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-3 = Ieee Mtt. S. Int. Micr. 2003 Ieee Nuclear Science Symposium, Conference Record, Vols 1-5 = Ieee Nucl Sci Conf R 2003 Ieee Nuclear Science Symposium, Conference Record, Vols 1-5 = Ieee Nucl. Sci. Conf. R. 2003 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2003 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2003 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2003 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2003 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason 2003 Ieee Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. 2003 International Conference Indium Phosphide and Related Materials, Conference Proceedings = Conf P Indium Phosph 2003 International Conference Indium Phosphide and Related Materials, Conference Proceedings = Conf. P. Indium Phosph. 2003 International Conference On Image Processing, Vol 1, Proceedings = Ieee Image Proc 2003 International Conference On Image Processing, Vol 1, Proceedings = Ieee. Image Proc. 2003 International Symposium On Microelectronics = Proc Spie 2003 International Symposium On Microelectronics = Proc. Spie. 2003 International Symposium On Microelectronics = P Soc Photo-opt Ins 2003 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 2003 International Symposium On Technology and Society: Crime Prevention, Security and Design, Proceedings = Int Symp Technol Soc 2003 International Symposium On Technology and Society: Crime Prevention, Security and Design, Proceedings = Int. Symp. Technol. Soc. 2003 Physics Education Research Conference = Aip Conf Proc 2003 Physics Education Research Conference = Aip. Conf. Proc. 2004 11th International Conference On Harmonics and Quality of Power = Int C Harmon Qual Po 2004 11th International Conference On Harmonics and Quality of Power = Int. C. Harmon. Qual. Po. 2004 12th Ieee International Conference On Networks, Vols 1 and 2 , Proceedings = Ieee Int Conf Networ 2004 12th Ieee International Conference On Networks, Vols 1 and 2 , Proceedings = Ieee Int. Conf. Networ. 2004 23rd Ieee Convention of Electrical and Electronics Engineers in Israel, Proceedings = Ieee Conv El Elect I 2004 23rd Ieee Convention of Electrical and Electronics Engineers in Israel, Proceedings = Ieee Conv. El. Elect. I. 2004 24th International Conference On Microelectronics, Proceedings, Vols 1 and 2 = Int Conf Microelectr 2004 24th International Conference On Microelectronics, Proceedings, Vols 1 and 2 = Int. Conf. Microelectr. 2004 43rd Ieee Conference On Decision and Control (cdc), Vols 1-5 = Ieee Decis Contr P 2004 43rd Ieee Conference On Decision and Control (cdc), Vols 1-5 = Ieee Decis. Contr. P. 2004 Ieee Aerospace Conference Proceedings, Vols 1-6 = Aerosp Conf Proc 2004 Ieee Aerospace Conference Proceedings, Vols 1-6 = Aerosp. Conf. Proc. 2004 Ieee Africon: 7th Africon Conference in Africa, Vols 1 and 2 = Ieee Africon 2004 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf Cybern Intell S 2004 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf. Cybern. Intell. S. 2004 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int Conf Acoust Spee 2004 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int. Conf. Acoust. Spee. 2004 Ieee International Conference On Fuzzy Systems, Vols 1-3, Proceedings = Ieee Int Conf Fuzzy 2004 Ieee International Conference On Fuzzy Systems, Vols 1-3, Proceedings = Ieee Int. Conf. Fuzzy 2004 Ieee International Conference On Robotics and Automation, Vols 1- 5, Proceedings = Ieee Int Conf Robot 2004 Ieee International Conference On Robotics and Automation, Vols 1- 5, Proceedings = Ieee Int. Conf. Robot. 2004 Ieee International Conference On Systems, Man & Cybernetics, Vols 1-7 = Ieee Sys Man Cybern 2004 Ieee International Conference On Systems, Man & Cybernetics, Vols 1-7 = Ieee Sys. Man Cybern. 2004 Ieee International Integrated Reliability Workshop Final Report = Int Integ Rel Wrksp 2004 Ieee International Integrated Reliability Workshop Final Report = Int. Integ. Rel. Wrksp. 2004 Ieee International Joint Conference On Neural Networks, Vols 1-4, Proceedings = Ieee Ijcnn 2004 Ieee International Joint Conference On Neural Networks, Vols 1-4, Proceedings = Ieee Ijcnn. 2004 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc Dig Tech Pap I 2004 Ieee International Solid-state Circuits Conference, Digest of Technical Papers = Isscc. Dig. Tech. Pap. I. 2004 Ieee International Workshop On Imaging Systems and Techniques (ist) = I W Imag Syst Techni 2004 Ieee International Workshop On Imaging Systems and Techniques (ist) = I. W. Imag. Syst. Techni. 2004 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann Mtg 2004 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann. Mtg. 2004 Ieee Nuclear Science Symposium Conference Record, Vols 1-7 = Ieee Nucl Sci Conf R 2004 Ieee Nuclear Science Symposium Conference Record, Vols 1-7 = Ieee Nucl. Sci. Conf. R. 2004 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2004 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2004 Ieee/sarnoff Symposium On Advances in Wired and Wireless Communication = Ieee Sarnoff Sympos 2004 Ieee/sarnoff Symposium On Advances in Wired and Wireless Communication = Ieee. Sarnoff. Sympos. 2004 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc 2004 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc. Proc. 2004 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2004 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2004 Ieee Ultrasonics Symposium, Vols 1-3 = Ultrason 2004 Ieee Ultrasonics Symposium, Vols 1-3 = Ultrason. 2004 Ieee Wireless Communications and Networking Conference, Vols 1-4 = Ieee Wcnc 2004 Ieee Wireless Communications and Networking Conference, Vols 1-4 = Ieee Wcnc. 2004 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf P Indium Phosph 2004 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf. P. Indium Phosph. 2004 International Conference On Parallel Processing, Proceedings = Proc Int Conf Paral 2004 International Conference On Parallel Processing, Proceedings = Proc. Int. Conf. Paral. 2004 International Conference On Parallel Processing Workshops, Proceedings = Proc Int Conf Paral 2004 International Conference On Parallel Processing Workshops, Proceedings = Proc. Int. Conf. Paral. 2004 International Symposium On Technology and Society - Istas '04 = Int Symp Technol Soc 2004 International Symposium On Technology and Society - Istas '04 = Int. Symp. Technol. Soc. 2004 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 73 = J Assoc Asphalt Pav 2004 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 73 = J. Assoc. Asphalt Pav. 2004 Physics Education Research Conference = Aip Conf Proc 2004 Physics Education Research Conference = Aip. Conf. Proc. 2004 The Supreme Court Review = Supreme Court Rev 2004 The Supreme Court Review = Supreme Court Rev. 2004 Twelfth Ieee International Workshop On Quality of Service = Int Worksh Qual Serv 2004 Twelfth Ieee International Workshop On Quality of Service = Int. Worksh. Qual. Serv. 2005 13th Ieee International Conference On Networks Jointly Held With The 2005 7th Ieee Malaysia International Conference On Communications, Proceedings 1 and 2 = Ieee Int Conf Networ 2005 13th Ieee International Conference On Networks Jointly Held With The 2005 7th Ieee Malaysia International Conference On Communications, Proceedings 1 and 2 = Ieee Int. Conf. Networ. 2005 14th Ieee Workshop On Local & Metropolitan Area Networks (lanman) = Wrks Loc Metro Area 2005 14th Ieee Workshop On Local & Metropolitan Area Networks (lanman) = Wrks. Loc. Metro. Area 2005/2006 Ieee/pes Transmission & Distribution Conference & Exposition, Vols 1-3 = Trans Distrib Conf 2005/2006 Ieee/pes Transmission & Distribution Conference & Exposition, Vols 1-3 = Trans. Distrib. Conf. 2005 27th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-7 = P Ann Int Ieee Embs 2005 27th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-7 = P. Ann. Int. Ieee Embs. 2005 28th International Spring Seminar On Electronics Technology = Int Spr Sem Elect Te 2005 28th International Spring Seminar On Electronics Technology = Int. Spr. Sem. Elect. Te. 2005 2nd Internatinoal Ieee/embs Conference On Neural Engineering = I Ieee Embs C Neur E 2005 2nd Internatinoal Ieee/embs Conference On Neural Engineering = I. Ieee. Embs. C. Neur. E. 2005 3rd Ieee/embs Special Topic Conference On Microtechnology in Medicine and Biology = Eng Med Biol Soc Ann 2005 3rd Ieee/embs Special Topic Conference On Microtechnology in Medicine and Biology = Eng. Med. Biol. Soc. Ann. 2005 44th Ieee Conference On Decision and Control & European Control Conference, Vols 1-8 = Ieee Decis Contr P 2005 44th Ieee Conference On Decision and Control & European Control Conference, Vols 1-8 = Ieee Decis. Contr. P. 2005 4th Ieee International Conference On Development and Learning = Int C Devel Learn 2005 4th Ieee International Conference On Development and Learning = Int. C. Devel. Learn. 2005 Asia-pacific Microwave Conference Proceedings, Vols 1-5 = Asia Pacif Microwave 2005 Asia-pacific Microwave Conference Proceedings, Vols 1-5 = Asia. Pacif. Microwave 2005 European Conference On Wireless Technologies (ecwt), Conference Proceedings = Euro Wirel Technol C 2005 European Conference On Wireless Technologies (ecwt), Conference Proceedings = Euro. Wirel. Technol. C. 2005 Ieee 31st Annual Northeast Bioengineering Conference = Northeast Bioengin C 2005 Ieee 31st Annual Northeast Bioengineering Conference = Northeast Bioengin. C. 2005 Ieee 36th Power Electronic Specialists Conference (pesc), Vols 1-3 = Ieee Power Electron 2005 Ieee 36th Power Electronic Specialists Conference (pesc), Vols 1-3 = Ieee Power Electron. 2005 Ieee 9th International Conference On Rehabilitation Robotics = Int C Rehab Robot 2005 Ieee 9th International Conference On Rehabilitation Robotics = Int. C. Rehab. Robot. 2005 Ieee Aerospace Conference, Vols 1-4 = Aerosp Conf Proc 2005 Ieee Aerospace Conference, Vols 1-4 = Aerosp. Conf. Proc. 2005 Ieee Asian Solid-state Circuits Conference, Proceedings of Technical Papers = Ieee Asian Solid Sta 2005 Ieee Asian Solid-state Circuits Conference, Proceedings of Technical Papers = Ieee Asian Solid. Sta. 2005 Ieee Cement Industry Technical Conference Record = Ieee Cem Ind Tech Co 2005 Ieee Cement Industry Technical Conference Record = Ieee Cem. Ind. Tech. Co. 2005 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc Cvpr Ieee 2005 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1, Proceedings = Proc. Cvpr. Ieee 2005 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2, Proceedings = Proc Cvpr Ieee 2005 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2, Proceedings = Proc. Cvpr. Ieee 2005 Ieee Conference On Electron Devices and Solid-state Circuits, Proceedings = Ieee C Elec Devices 2005 Ieee Conference On Electron Devices and Solid-state Circuits, Proceedings = Ieee C. Elec. Devices 2005 Ieee Congress On Evolutionary Computation, Vols 1-3, Proceedings = Ieee C Evol Computat 2005 Ieee Congress On Evolutionary Computation, Vols 1-3, Proceedings = Ieee C. Evol. Computat. 2005 Ieee Csic Symposium, Technical Digest = Comp Semicond Integr 2005 Ieee Csic Symposium, Technical Digest = Comp. Semicond. Integr. 2005 Ieee Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int Worksh Int Data 2005 Ieee Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int. Worksh. Int. Data 2005 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int Conf Acoust Spee 2005 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int. Conf. Acoust. Spee. 2005 Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr Ieee Comp Design 2005 Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr. Ieee Comp. Design. 2005 Ieee International Conference On Control Applications (cca), Vols 1and 2 = Ieee Intl Conf Contr 2005 Ieee International Conference On Control Applications (cca), Vols 1and 2 = Ieee Intl. Conf. Contr. 2005 Ieee International Conference On Electro/information Technology (eit 2005) = Int Conf Electro Inf 2005 Ieee International Conference On Electro/information Technology (eit 2005) = Int. Conf. Electro. Inf. 2005 Ieee International Conference On Robotics and Automation (icra), Vols 1-4 = Ieee Int Conf Robot 2005 Ieee International Conference On Robotics and Automation (icra), Vols 1-4 = Ieee Int. Conf. Robot. 2005 Ieee International Frequency Control Symposium and Exhibition = P Ieee Int Freq Cont 2005 Ieee International Frequency Control Symposium and Exhibition = P. Ieee Int. Freq. Cont. 2005 Ieee International Radar, Conference Record = Ieee Rad Conf 2005 Ieee International Radar, Conference Record = Ieee Rad. Conf. 2005 Ieee International Radar, Conference Record = Radar Conf 2005 Ieee International Radar, Conference Record = Radar. Conf. 2005 Ieee International Reliability Physics Symposium Proceedings - 43rd Annual = Int Rel Phy 2005 Ieee International Reliability Physics Symposium Proceedings - 43rd Annual = Int. Rel. Phy. 2005 Ieee International Symposium On Circuits and Systems (iscas), Vols 1-6, Conference Proceedings = Ieee Int Symp Circ S 2005 Ieee International Symposium On Circuits and Systems (iscas), Vols 1-6, Conference Proceedings = Ieee Int. Symp. Circ. S. 2005 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr 2005 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. 2005 Ieee International Symposium On Technology and Society (istas), Proceedings = Int Symp Technol Soc 2005 Ieee International Symposium On Technology and Society (istas), Proceedings = Int. Symp. Technol. Soc. 2005 Ieee International Workshop On Memory Technology, Design, and Testing - Proceedings = Rec Ieee Int Wkshp M 2005 Ieee International Workshop On Memory Technology, Design, and Testing - Proceedings = Rec. Ieee Int. Wkshp. M. 2005 Ieee Leos Annual Meeting Conference Proceedings (leos) = Ieee Leos Ann Mtg 2005 Ieee Leos Annual Meeting Conference Proceedings (leos) = Ieee Leos Ann. Mtg. 2005 Ieee Mtt-s International Microwave Symposium, Vols 1-4 = Ieee Mtt-s 2005 Ieee Mtt-s International Microwave Symposium, Vols 1-4 = Ieee Mtt S Int Micr 2005 Ieee Mtt-s International Microwave Symposium, Vols 1-4 = Ieee Mtt. S. Int. Micr. 2005 Ieee Nuclear Science Symposium Conference Record, Vols 1-5 = Ieee Nucl Sci Conf R 2005 Ieee Nuclear Science Symposium Conference Record, Vols 1-5 = Ieee Nucl. Sci. Conf. R. 2005 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing (pacrim) = Ieee Pacif 2005 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing (pacrim) = Ieee Pacif. 2005 Ieee Particle Accelerator Conference (pac), Vols 1-4 = Ieee Part Acc Conf 2005 Ieee Particle Accelerator Conference (pac), Vols 1-4 = Ieee Part. Acc. Conf. 2005 Ieee Power Engineering Society General Meeting, Vols, 1-3 = Ieee Power Eng Soc 2005 Ieee Power Engineering Society General Meeting, Vols, 1-3 = Ieee Power Eng. Soc. 2005 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2005 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2005 Ieee Sarnoff Symposium On Advances in Wired and Wireless Communication = Ieee Sarnoff Sympos 2005 Ieee Sarnoff Symposium On Advances in Wired and Wireless Communication = Ieee Sarnoff Sympos. 2005 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop: Advancing Semiconductor Manufacturing Excellence = Asmc Proc 2005 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop: Advancing Semiconductor Manufacturing Excellence = Asmc. Proc. 2005 Ieee Sensors, Vols 1 and 2 = Ieee Sensor 2005 Ieee Sensors, Vols 1 and 2 = Ieee Sensor. 2005 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2005 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2005 Ieee Ultrasonics Symposium, Vols 1-4 = Ultrason 2005 Ieee Ultrasonics Symposium, Vols 1-4 = Ultrason. 2005 Ieee Wireless Communications and Networking Conference, Vols 1-4 = Ieee Wcnc 2005 Ieee Wireless Communications and Networking Conference, Vols 1-4 = Ieee Wcnc. 2005 Ieee Workshop On Machine Learning for Signal Processing (mlsp) = Machine Learn Sign P 2005 Ieee Workshop On Machine Learning for Signal Processing (mlsp) = Machine Learn. Sign. P. 2005 Ieee Workshop On Signal Processing Systems - Design and Implementation (sips) = Ieee Wrk Sig Pro Sys 2005 Ieee Workshop On Signal Processing Systems - Design and Implementation (sips) = Ieee Wrk. Sig. Pro. Sys. 2005 International Conference On Communications, Circuits and Systems, Vols 1 and 2, Proceedings = Int C Commun Circuit 2005 International Conference On Communications, Circuits and Systems, Vols 1 and 2, Proceedings = Int. C. Commun. Circuit. 2005 International Conference On Dependable Systems and Networks, Proceedings = I C Depend Sys Netwo 2005 International Conference On Dependable Systems and Networks, Proceedings = I. C. Depend. Sys. Netwo. 2005 International Conference On Image Processing (icip), Vols 1-5 = Ieee Image Proc 2005 International Conference On Image Processing (icip), Vols 1-5 = Ieee. Image Proc. 2005 International Conference On Indium Phosphide and Related Materials = Conf P Indium Phosph 2005 International Conference On Indium Phosphide and Related Materials = Conf. P. Indium Phosph. 2005 International Conference On Parallel Processing Workshops, Proceedings = Proc Int Conf Paral 2005 International Conference On Parallel Processing Workshops, Proceedings = Proc. Int. Conf. Paral. 2005 International Conference On Parallel Processsing, Proceedings = Proc Int Conf Paral 2005 International Conference On Parallel Processsing, Proceedings = Proc. Int. Conf. Paral. 2005 International Conference On Wireless Communications, Networking and Mobile Computing Proceedings, Vols 1 and 2 = I C Wirel Comm Netw 2005 International Conference On Wireless Communications, Networking and Mobile Computing Proceedings, Vols 1 and 2 = I. C. Wirel. Comm. Netw. 2005 International Symposium On Collaborative Technologies and Systems, Proceedings = Int S Collab Technol 2005 International Symposium On Collaborative Technologies and Systems, Proceedings = Int. S. Collab. Technol. 2005 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 74 = J Assoc Asphalt Pav 2005 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 74 = J. Assoc. Asphalt Pav. 2005 Physics Education Research Conference = Aip Conf Proc 2005 Physics Education Research Conference = Aip. Conf. Proc. 2005 The Supreme Court Review = Supreme Court Rev 2005 The Supreme Court Review = Supreme Court Rev. 2005 Workshop On Applications of Signal Processing to Audio and Acoustics (waspaa) = Int Integ Rel Wrksp 2005 Workshop On Applications of Signal Processing to Audio and Acoustics (waspaa) = Int. Integ. Rel. Wrksp. 2006 10th International Conference On Computer Supported Cooperative Work in Design, Proceedings, Vols 1 and 2 = Int C Comp Supp Coop 2006 10th International Conference On Computer Supported Cooperative Work in Design, Proceedings, Vols 1 and 2 = Int. C. Comp. Supp. Coop. 2006 12th International Power Electronics and Motion Control Conference, Vols 1-4 = Int Power Elect Mot 2006 12th International Power Electronics and Motion Control Conference, Vols 1-4 = Int. Power Elect. Mot. 2006 14th Ieee International Workshop On Quality of Service, Proceedings = Int Worksh Qual Serv 2006 14th Ieee International Workshop On Quality of Service, Proceedings = Int. Worksh. Qual. Serv. 2006 15th Ieee International Symposium On Applications of Ferroelectrics = Ieee Int Ferro 2006 15th Ieee International Symposium On Applications of Ferroelectrics = Ieee Int. Ferro. 2006 25th International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int Conf Microelectr 2006 25th International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int. Conf. Microelectr. 2006 29th International Spring Seminar On Electronics Technology = Int Spr Sem Elect Te 2006 29th International Spring Seminar On Electronics Technology = Int. Spr. Sem. Elect. Te. 2006 38th Annual North American Power Symposium, Naps-2006 Proceedings = North Amer Pow Symp 2006 38th Annual North American Power Symposium, Naps-2006 Proceedings = North Amer. Pow. Symp. 2006 3rd Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum Comm Network 2006 3rd Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum. Comm. Network. 2006 3rd Ieee International Symposium On Biomedical Imaging: Macro to Nano, Vols 1-3 = I S Biomed Imaging 2006 3rd Ieee International Symposium On Biomedical Imaging: Macro to Nano, Vols 1-3 = I. S. Biomed. Imaging. 2006: 40th Annual Ieee International Carnahan Conferences Security Technology, Proceedings = Car C Secur 2006: 40th Annual Ieee International Carnahan Conferences Security Technology, Proceedings = Car. C. Secur. 2006 8th International Conference On Signal Processing, Vols 1-4 = Int Conf Sign Proces 2006 8th International Conference On Signal Processing, Vols 1-4 = Int. Conf. Sign. Proces. 2006 American Control Conference, Vols 1-12 = P Amer Contr Conf 2006 American Control Conference, Vols 1-12 = P. Amer. Contr. Conf. 2006 Bimw: 2006 Beijing International Materials Week, Pts 1-4 = Mater Sci Forum 2006 Bimw: 2006 Beijing International Materials Week, Pts 1-4 = Mater. Sci. Forum. 2006 Canadian Conference On Electrical and Computer Engineering, Vols 1-5 = Can Con El Comp En 2006 Canadian Conference On Electrical and Computer Engineering, Vols 1-5 = Can. Con. El. Comp. En. 2006 Design Automation and Test in Europe, Vols 1-3, Proceedings = Des Aut Test Europe 2006 Design Automation and Test in Europe, Vols 1-3, Proceedings = Des. Aut. Test Europe. 2006 European Conference On Wireless Technologies = Euro Wirel Technol C 2006 European Conference On Wireless Technologies = Euro. Wirel. Technol. C. 2006 European Microwave Integrated Circuits Conference = Eur Microw Integrat 2006 European Microwave Integrated Circuits Conference = Eur. Microw. Integrat. 2006 European Radar Conference = Europ Radar Conf 2006 European Radar Conference = Europ. Radar Conf. 2006 Fortieth Asilomar Conference On Signals, Systems and Computers, Vols 1-5 = Conf Rec Asilomar C 2006 Fortieth Asilomar Conference On Signals, Systems and Computers, Vols 1-5 = Conf. Rec. Asilomar C. 2006 Ieee 24th Convention of Electrical & Electronics Engineers in Israel = Ieee Conv El Elect I 2006 Ieee 24th Convention of Electrical & Electronics Engineers in Israel = Ieee Conv. El. Elect. I. 2006 Ieee 63rd Vehicular Technology Conference, Vols 1-6 = Ieee Vts Veh Technol 2006 Ieee 63rd Vehicular Technology Conference, Vols 1-6 = Ieee Vts. Veh. Technol. 2006 Ieee 64th Vehicular Technology Conference, Vols 1-6 = Ieee Vts Veh Technol 2006 Ieee 64th Vehicular Technology Conference, Vols 1-6 = Ieee Vts. Veh. Technol. 2006 Ieee Aerospace Conference, Vols 1-9 = Aerosp Conf Proc 2006 Ieee Aerospace Conference, Vols 1-9 = Aerosp. Conf. Proc. 2006 Ieee/aiaa 25th Digital Avionics Systems Conference, Vols 1- 3 = Digit Avion Syst Con 2006 Ieee/aiaa 25th Digital Avionics Systems Conference, Vols 1- 3 = Digit. Avion. Syst. Con. 2006 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon 2006 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon. 2006 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf Cybern Intell S 2006 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf. Cybern. Intell. S. 2006 Ieee Congress On Evolutionary Computation, Vols 1-6 = Ieee C Evol Computat 2006 Ieee Congress On Evolutionary Computation, Vols 1-6 = Ieee C. Evol. Computat. 2006 Ieee/ifip Network Operations and Management Symposium, Vols 1 and 2 = Ieee Ifip Netw Oper 2006 Ieee/ifip Network Operations and Management Symposium, Vols 1 and 2 = Ieee. Ifip. Netw. Oper. 2006 Ieee Instrumentation and Measurement Technology Conference Proceedings, Vols 1-5 = Ieee Imtc P 2006 Ieee Instrumentation and Measurement Technology Conference Proceedings, Vols 1-5 = Ieee Imtc. P. 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iii, Proceedings = Int Conf Acoust Spee 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iii, Proceedings = Int. Conf. Acoust. Spee. 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int Conf Acoust Spee 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Proceedings = Int. Conf. Acoust. Spee. 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Processing = Int Conf Acoust Spee 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Processing = Int. Conf. Acoust. Spee. 2006 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-13 = Int Conf Acoust Spee 2006 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-13 = Int. Conf. Acoust. Spee. 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol V, Proceedings = Int Conf Acoust Spee 2006 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol V, Proceedings = Int. Conf. Acoust. Spee. 2006 Ieee International Conference On Communications, Vols 1-12 = Ieee Icc 2006 Ieee International Conference On Communications, Vols 1-12 = Ieee Icc. 2006 Ieee International Conference On Computer Systems and Applications, Vols 1-3 = I C Comp Syst Applic 2006 Ieee International Conference On Computer Systems and Applications, Vols 1-3 = I. C. Comp. Syst. Applic. 2006 Ieee International Conference On Electro/information Technology = Int Conf Electro Inf 2006 Ieee International Conference On Electro/information Technology = Int. Conf. Electro. Inf. 2006 Ieee International Conference On Fuzzy Systems, Vols 1-5 = Ieee Int Conf Fuzzy 2006 Ieee International Conference On Fuzzy Systems, Vols 1-5 = Ieee Int. Conf. Fuzzy 2006 Ieee International Conference On Image Processing, Icip 2006, Proceedings = Ieee Image Proc 2006 Ieee International Conference On Image Processing, Icip 2006, Proceedings = Ieee Image Proc. 2006 Ieee International Conference On Robotics and Automation (icra), Vols 1-10 = Ieee Int Conf Robot 2006 Ieee International Conference On Robotics and Automation (icra), Vols 1-10 = Ieee Int. Conf. Robot. 2006 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-6, Proceedings = Ieee Sys Man Cybern 2006 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-6, Proceedings = Ieee Sys. Man. Cybern. 2006 Ieee International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-4 = I C Wirel Comm Netw 2006 Ieee International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-4 = I. C. Wirel. Comm. Netw. 2006 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-8 = Int Geosci Remote Se 2006 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-8 = Int. Geosci. Remote Se. 2006 Ieee International Integrated Reliability Workshop, Final Report = Int Integ Rel Wrksp 2006 Ieee International Integrated Reliability Workshop, Final Report = Int. Integ. Rel. Wrksp. 2006 Ieee International Joint Conference On Neural Network Proceedings, Vols 1-10 = Ieee Ijcnn 2006 Ieee International Joint Conference On Neural Network Proceedings, Vols 1-10 = Ieee Ijcnn. 2006 Ieee International Performance Computing and Communications Conference, Vols 1 and 2 = Ieee Ipccc 2006 Ieee International Performance Computing and Communications Conference, Vols 1 and 2 = Ieee Ipccc. 2006 Ieee International Reliability Physics Symposium Proceedings - 44th Annual = Int Rel Phy 2006 Ieee International Reliability Physics Symposium Proceedings - 44th Annual = Int. Rel. Phy. 2006 Ieee International Symposium On Circuits and Systems, Vols 1-11, Proceedings = Ieee Int Symp Circ S 2006 Ieee International Symposium On Circuits and Systems, Vols 1-11, Proceedings = Ieee Int. Symp. Circ. S. 2006 Ieee International Symposium On Technology and Society = Int Symp Technol Soc 2006 Ieee International Symposium On Technology and Society = Int. Symp. Technol. Soc. 2006 Ieee International Test Conference, Vols 1 and 2 = Int Test Conf P 2006 Ieee International Test Conference, Vols 1 and 2 = Int. Test Conf. P. 2006 Ieee International Vacuum Electronics Conference Held Jointly With 2006 Ieee International Vacuum Electron Sources = Ieee Int Vac Elect C 2006 Ieee International Vacuum Electronics Conference Held Jointly With 2006 Ieee International Vacuum Electron Sources = Ieee Int. Vac. Elect. C. 2006 Ieee International Workshop On Medical Measurement and Applications = Ieee Int Work Med Me 2006 Ieee International Workshop On Medical Measurement and Applications = Ieee Int. Work. Med. Me. 2006 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann Mtg 2006 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann. Mtg. 2006 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-5 = Ieee Mtt-s 2006 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-5 = Ieee Mtt S Int Micr 2006 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-5 = Ieee Mtt. S. Int. Micr. 2006 Ieee Nuclear Science Symposium Conference Record, Vol 1-6 = Ieee Nucl Sci Conf R 2006 Ieee Nuclear Science Symposium Conference Record, Vol 1-6 = Ieee Nucl. Sci. Conf. R. 2006 Ieee/pes Transmission & Distribution Conference & Exposition: Latin America, Vols 1-3 = Tr Dist C Exp Lat Am 2006 Ieee/pes Transmission & Distribution Conference & Exposition: Latin America, Vols 1-3 = Tr. Dist. C. Exp. Lat. Am. 2006 Ieee Power Electronics Specialists Conference, Vols 1-7 = Ieee Power Electron 2006 Ieee Power Electronics Specialists Conference, Vols 1-7 = Ieee Power Electron. 2006 Ieee Radar Conference, Vols 1 and 2 = Ieee Rad Conf 2006 Ieee Radar Conference, Vols 1 and 2 = Ieee Rad. Conf. 2006 Ieee Radar Conference, Vols 1 and 2 = Radar Conf 2006 Ieee Radar Conference, Vols 1 and 2 = Radar Conf. 2006 Ieee Radio and Wireless Symposium, Proceedings = Ieee Radio Wireless 2006 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2006 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2006 Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad Freq Integr 2006 Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad. Freq. Integr. 2006 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos 2006 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos. 2006 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc 2006 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc. Proc. 2006 Ieee Sensors, Vols 1-3 = Ieee Sensor 2006 Ieee Sensors, Vols 1-3 = Ieee Sensor. 2006 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2006 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2006 Ieee Tenth International Symposium On Consumer Electronics, Proceedings = I Symp Consum Electr 2006 Ieee Tenth International Symposium On Consumer Electronics, Proceedings = I. Symp. Consum. Electr. 2006 Ieee Ultrasonics Symposium, Vols 1-5, Proceedings = Ultrason 2006 Ieee Ultrasonics Symposium, Vols 1-5, Proceedings = Ultrason. 2006 Ieee Wireless Communications and Networking Conference (wcnc 2006), Vols 1-4 = Ieee Wcnc 2006 Ieee Wireless Communications and Networking Conference (wcnc 2006), Vols 1-4 = Ieee Wcnc. 2006 Ieee Workshop On Signal Processing Systems Design and Implementation = Ieee Wrk Sig Pro Sys 2006 Ieee Workshop On Signal Processing Systems Design and Implementation = Ieee Wrk. Sig. Pro. Sys. 2006 International Conference On Communications, Circuits and Systems Proceedings, Vols 1-4 = Int C Commun Circuit 2006 International Conference On Communications, Circuits and Systems Proceedings, Vols 1-4 = Int. C. Commun. Circuit. 2006 International Conference On Field Programmable Logic and Applications, Proceedings = I C Field Prog Logic 2006 International Conference On Field Programmable Logic and Applications, Proceedings = I. C. Field Prog. Logic 2006 International Conference On Parallel Processing, Proceedings = Proc Int Conf Paral 2006 International Conference On Parallel Processing, Proceedings = Proc. Int. Conf. Paral. 2006 International Electron Devices Meeting, Vols 1 and 2 = Int El Devices Meet 2006 International Electron Devices Meeting, Vols 1 and 2 = Int. El. Devices Meet. 2006 International Symposium On Collaborative Technologies and Systems, Proceedings = Int S Collab Technol 2006 International Symposium On Collaborative Technologies and Systems, Proceedings = Int. S. Collab. Technol. 2006 International Symposium On Intelligent Signal Processing and Communications, Vols 1 and 2 = I S Intell Sig Proc 2006 International Symposium On Intelligent Signal Processing and Communications, Vols 1 and 2 = I. S. Intell. Sig. Proc. 2006 International Symposium On Power Electronics, Electrical Drives, Automation and Motion, Vols 1-3 = Int Power Elect Elec 2006 International Symposium On Power Electronics, Electrical Drives, Automation and Motion, Vols 1-3 = Int. Power Elect. Elec. 2006 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 75 = J Assoc Asphalt Pav 2006 Journal of The Association of Asphalt Paving Technologists: From The Proceedings of The Technical Sessions, Vol 75 = J. Assoc. Asphalt Pav. 2006 Military Takeover in Fiji: A Coup to End All Coups = Stud St Soc Pac 2006 Military Takeover in Fiji: A Coup to End All Coups = Stud. St. Soc. Pac. 2006 Physics Education Research Conference = Aip Conf Proc 2006 Physics Education Research Conference = Aip. Conf. Proc. 2006 Power Engineering Society General Meeting, Vols 1-9 = Ieee Power Eng Soc 2006 Power Engineering Society General Meeting, Vols 1-9 = Ieee. Power Eng. Soc. 2006 Proceedings - Annual Reliability and Maintainability Symposium, Vols 1 and 2 = P Rel Maint S 2006 Proceedings - Annual Reliability and Maintainability Symposium, Vols 1 and 2 = P. Rel. Maint. S. 2006 Supreme Court Review = Supreme Court Rev 2006 Supreme Court Review = Supreme Court Rev. 2007 11th Ieee International Enterprise Distributed Object Computing Conference Workshops = Ieee Edoc Conf 2007 11th Ieee International Enterprise Distributed Object Computing Conference Workshops = Ieee Edoc. Conf. 2007 12th International Symposium On Advanced Packaging Materials: Processes, Properties, and Interfaces = Int Sym Adv Pkg Mat 2007 12th International Symposium On Advanced Packaging Materials: Processes, Properties, and Interfaces = Int. Sym. Adv. Pkg. Mat. 2007 14th Ieee International Conference On Electronics, Circuits and Systems, Vols 1-4 = Ieee I C Elect Circ 2007 14th Ieee International Conference On Electronics, Circuits and Systems, Vols 1-4 = Ieee I. C. Elect. Circ. 2007 15th Ieee International Conference On Networks = Ieee Int Conf Networ 2007 15th Ieee International Conference On Networks = Ieee Int. Conf. Networ. 2007 15th Ieee Workshop On Local & Metropolitan Area Networks = Wrks Loc Metro Area 2007 15th Ieee Workshop On Local & Metropolitan Area Networks = Wrks. Loc. Metro. Area 2007 30th International Spring Seminar On Electronics Technology = Int Spr Sem Elect Te 2007 30th International Spring Seminar On Electronics Technology = Int. Spr. Sem. Elect. Te. 2007 37th Annual Frontiers in Education Conference, Global Engineering : Knowledge Without Borders - Opportunities Without Passports, Vols 1- 4 = Proc Front Educ Conf 2007 37th Annual Frontiers in Education Conference, Global Engineering : Knowledge Without Borders - Opportunities Without Passports, Vols 1- 4 = Proc. Front. Educ. Conf. 2007 39th North American Power Symposium, Vols 1 and 2 = North Amer Pow Symp 2007 39th North American Power Symposium, Vols 1 and 2 = North Amer. Pow. Symp. 2007 44th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des Aut Con 2007 44th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des. Aut. Con. 2007 4th Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum Comm Network 2007 4th Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum. Comm. Network. 2007 4th Ieee International Symposium On Biomedical Imaging : Macro to Nano, Vols 1-3 = I S Biomed Imaging 2007 4th Ieee International Symposium On Biomedical Imaging : Macro to Nano, Vols 1-3 = I. S. Biomed. Imaging 2007 50th Midwest Symposium On Circuits and Systems, Vols 1-3 = Midwest Symp Circuit 2007 50th Midwest Symposium On Circuits and Systems, Vols 1-3 = Midwest Symp. Circuit. 2007 5th Ieee International Conference On Industrial Informatics, Vols 1-3 = Ieee Intl Conf Ind I 2007 5th Ieee International Conference On Industrial Informatics, Vols 1-3 = Ieee Intl. Conf. Ind. I. 2007 5th International Symposium On Intelligent Systems & Informatics = I S Intell Syst Info 2007 5th International Symposium On Intelligent Systems & Informatics = I. S. Intell. Syst. Info. 2007 9th Electronics Packaging Technology Conference, Vols 1 and 2 = El Packag Tech Conf 2007 9th Electronics Packaging Technology Conference, Vols 1 and 2 = El. Packag. Tech. Conf. 2007 Africon, Vols 1-3 = Ieee Africon 2007 Africon, Vols 1-3 = Ieee. Africon. 2007 American Control Conference, Vols 1-13 = P Amer Contr Conf 2007 American Control Conference, Vols 1-13 = P. Amer. Contr. Conf. 2007 Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-16 = P Ann Int Ieee Embs 2007 Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-16 = P. Ann. Int. Ieee Embs. 2007 Asia Pacific Microwave Conference, Vols 1-5 = Asia Pacif Microwave 2007 Asia Pacific Microwave Conference, Vols 1-5 = Asia Pacif. Microwave 2007 Australasian Universities Power Engineering, Vols 1-2 = Austr Univ Power Eng 2007 Australasian Universities Power Engineering, Vols 1-2 = Austr. Univ. Power Eng. 2007 Canadian Conference On Electrical and Computer Engineering, Vols 1-3 = Can Con El Comp En 2007 Canadian Conference On Electrical and Computer Engineering, Vols 1-3 = Can. Con. El. Comp. En. 2007 Design, Automation & Test in Europe Conference & Exhibition, Vols 1-3 = Des Aut Test Europe 2007 Design, Automation & Test in Europe Conference & Exhibition, Vols 1-3 = Des. Aut. Test Europe 2007 European Conference On Wireless Technologies = Euro Wirel Technol C 2007 European Conference On Wireless Technologies = Euro. Wirel. Technol. C. 2007 European Microwave Integrated Circuits Conference, Vols 1 and 2 = Eur Microw Integrat 2007 European Microwave Integrated Circuits Conference, Vols 1 and 2 = Eur. Microw. Integrat. 2007 European Radar Conference = Europ Radar Conf 2007 European Radar Conference = Europ. Radar Conf. 2007 Fifteenth Ieee International Workshop On Quality of Service = Int Worksh Qual Serv 2007 Fifteenth Ieee International Workshop On Quality of Service = Int. Worksh. Qual. Serv. 2007 Icton Mediterranean Winter Conference = Icton Medit Win Conf 2007 Icton Mediterranean Winter Conference = Icton Medit. Win. Conf. 2007 Ieee 10th International Conference On Rehabilitation Robotics, Vols 1 and 2 = Int C Rehab Robot 2007 Ieee 10th International Conference On Rehabilitation Robotics, Vols 1 and 2 = Int. C. Rehab. Robot. 2007 Ieee 11th International Conference On Computer Vision, Vols 1-6 = Ieee I Conf Comp Vis 2007 Ieee 11th International Conference On Computer Vision, Vols 1-6 = Ieee I. Conf. Comp. Vis. 2007 Ieee 23rd International Conference On Data Engineering, Vols 1-3 = Proc Int Conf Data 2007 Ieee 23rd International Conference On Data Engineering, Vols 1-3 = Proc. Int. Conf. Data 2007 Ieee 23rd International Conference On Data Engineering Workshop, Vols 1-2 = I C Data Engin Works 2007 Ieee 23rd International Conference On Data Engineering Workshop, Vols 1-2 = I. C. Data Engin. Works. 2007 Ieee 33rd Annual Northeast Bioengineering Conference = Northeast Bioengin C 2007 Ieee 33rd Annual Northeast Bioengineering Conference = Northeast Bioengin. C. 2007 Ieee 65th Vehicular Technology Conference, Vols 1-6 = Ieee Vts Veh Technol 2007 Ieee 65th Vehicular Technology Conference, Vols 1-6 = Ieee Vts. Veh. Technol. 2007 Ieee 66th Vehicular Technology Conference, Vols 1-5 = Ieee Vts Veh Technol 2007 Ieee 66th Vehicular Technology Conference, Vols 1-5 = Ieee Vts. Veh. Technol. 2007 Ieee 6th International Conference On Development and Learning = Int C Devel Learn 2007 Ieee 6th International Conference On Development and Learning = Int. C. Devel. Learn. 2007 Ieee/acm/ifip Workshop On Embedded Systems for Real-time Multimedia = Emb Syst Real Time M 2007 Ieee/acm/ifip Workshop On Embedded Systems for Real-time Multimedia = Emb. Syst. Real. Time. M. 2007 Ieee/acs International Conference On Computer Systems and Applications, Vols 1 and 2 = I C Comp Syst Applic 2007 Ieee/acs International Conference On Computer Systems and Applications, Vols 1 and 2 = I. C. Comp. Syst. Applic. 2007 Ieee Aerospace Conference, Vols 1-9 = Aerosp Conf Proc 2007 Ieee Aerospace Conference, Vols 1-9 = Aerosp. Conf. Proc. 2007 Ieee/aiaa 26th Digital Avionics Systems Conference, Vols 1-3 = Digit Avion Syst Con 2007 Ieee/aiaa 26th Digital Avionics Systems Conference, Vols 1-3 = Digit. Avion. Syst. Con. 2007 Ieee Antennas and Propagation Society International Symposium, Vols 1-12 = Ieee Antennas Prop 2007 Ieee Antennas and Propagation Society International Symposium, Vols 1-12 = Ieee Antennas Prop. 2007 Ieee Applied Electromagnetics Conference = Appl Electromagn C 2007 Ieee Applied Electromagnetics Conference = Appl. Electromagn. C. 2007 Ieee Asian Solid-state Circuits Conference, Proceedings of Technical Papers = Ieee Asian Solid Sta 2007 Ieee Asian Solid-state Circuits Conference, Proceedings of Technical Papers = Ieee Asian Solid. Sta. 2007 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon 2007 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon. 2007 Ieee Cement Industry Technical Conference Record = Ieee Cem Ind Tech Co 2007 Ieee Cement Industry Technical Conference Record = Ieee Cem. Ind. Tech. Co. 2007 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-8 = Proc Cvpr Ieee 2007 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-8 = Proc. Cvpr. Ieee 2007 Ieee Congress On Evolutionary Computation, Vols 1-10, Proceedings = Ieee C Evol Computat 2007 Ieee Congress On Evolutionary Computation, Vols 1-10, Proceedings = Ieee C. Evol. Computat. 2007 Ieee Instrumentation & Measurement Technology Conference, Vols 1-5 = Ieee Imtc P 2007 Ieee Instrumentation & Measurement Technology Conference, Vols 1-5 = Ieee Imtc. P. 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iii, Pts 1-3, Proceedings = Int Conf Acoust Spee 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iii, Pts 1-3, Proceedings = Int. Conf. Acoust. Spee. 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Pts 1-3 = Int Conf Acoust Spee 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Ii, Pts 1-3 = Int. Conf. Acoust. Spee. 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol I, Pts 1-3, Proceedings = Int Conf Acoust Spee 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol I, Pts 1-3, Proceedings = Int. Conf. Acoust. Spee. 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Pts 1-3 = Int Conf Acoust Spee 2007 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vol Iv, Pts 1-3 = Int. Conf. Acoust. Spee. 2007 Ieee International Conference On Application-specific Systems, Architectures, and Processors = Ieee Int Conf Asap 2007 Ieee International Conference On Application-specific Systems, Architectures, and Processors = Ieee Int. Conf. Asap. 2007 Ieee International Conference On Communications, Vols 1-14 = Ieee Icc 2007 Ieee International Conference On Communications, Vols 1-14 = Ieee Icc. 2007 Ieee International Conference On Computer Design, Vols, 1 and 2 = Pr Ieee Comp Design 2007 Ieee International Conference On Computer Design, Vols, 1 and 2 = Pr. Ieee Comp. Design. 2007 Ieee International Conference On Fuzzy Systems, Vols 1-4 = Ieee Int Conf Fuzzy 2007 Ieee International Conference On Fuzzy Systems, Vols 1-4 = Ieee Int. Conf. Fuzzy 2007 Ieee International Conference On Image Processing, Vols 1-7 = Ieee Image Proc 2007 Ieee International Conference On Image Processing, Vols 1-7 = Ieee Image Proc. 2007 Ieee International Conference On Industrial Engineering and Engineering Management, Vols 1-4 = In C Ind Eng Eng Man 2007 Ieee International Conference On Industrial Engineering and Engineering Management, Vols 1-4 = In. C. Ind. Eng. Eng. Man. 2007 Ieee International Conference On Microelectronic Test Structures, Proceedings = Ieee Int C Microelec 2007 Ieee International Conference On Microelectronic Test Structures, Proceedings = Ieee Int. C. Microelec. 2007 Ieee International Conference On Networking, Sensing, and Control, Vols 1 and 2 = Ieee Int C Netw Sens 2007 Ieee International Conference On Networking, Sensing, and Control, Vols 1 and 2 = Ieee Int. C. Netw. Sens. 2007 Ieee International Conference On Software Maintenance = Proc Ieee Int Conf S 2007 Ieee International Conference On Software Maintenance = Proc. Ieee Int. Conf. S. 2007 Ieee International Conference On Systems, Man and Cybernetics, Vols 1-8 = Ieee Sys Man Cybern 2007 Ieee International Conference On Systems, Man and Cybernetics, Vols 1-8 = Ieee Sys. Man Cybern. 2007 Ieee International Electron Devices Meeting, Vols 1 and 2 = Int El Devices Meet 2007 Ieee International Electron Devices Meeting, Vols 1 and 2 = Int. El. Devices Meet. 2007 Ieee International High Level Design Validation and Test Workshop, Proceedings = Int High Level Desig 2007 Ieee International High Level Design Validation and Test Workshop, Proceedings = Int. High Level Desig. 2007 Ieee International Integrated Reliability Workshop Final Report = Int Integ Rel Wrksp 2007 Ieee International Integrated Reliability Workshop Final Report = Int. Integ. Rel. Wrksp. 2007 Ieee International Joint Conference On Neural Networks, Vols 1-6 = Ieee Ijcnn 2007 Ieee International Joint Conference On Neural Networks, Vols 1-6 = Ieee Ijcnn. 2007 Ieee International Performance Computing and Communications Conference, Vols 1 and 2 = Ieee Ipccc 2007 Ieee International Performance Computing and Communications Conference, Vols 1 and 2 = Ieee Ipccc. 2007 Ieee International Reliability Physics Symposium Proceedings - 45th Annual = Int Rel Phy 2007 Ieee International Reliability Physics Symposium Proceedings - 45th Annual = Int. Rel. Phy. 2007 Ieee International Soi Conference Proceedings = Ieee Int Soi Conf 2007 Ieee International Soi Conference Proceedings = Ieee Int. Soi Conf. 2007 Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks, Vol 1 = I S World Wirel Mobi 2007 Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks, Vol 1 = I. S. World Wirel. Mobi. 2007 Ieee International Symposium On Circuits and Systems, Vols 1-11 = Ieee Int Symp Circ S 2007 Ieee International Symposium On Circuits and Systems, Vols 1-11 = Ieee Int. Symp. Circ. S. 2007 Ieee International Symposium On Consumer Electronics, Vols 1 and 2 = I Symp Consum Electr 2007 Ieee International Symposium On Consumer Electronics, Vols 1 and 2 = I. Symp. Consum. Electr. 2007 Ieee International Symposium On Intelligent Signal Processing, Conference Proceedings Book = I S Intell Sig Pr 2007 Ieee International Symposium On Intelligent Signal Processing, Conference Proceedings Book = I. S. Intell. Sig. Pr. 2007 Ieee International Symposium On Precision Clock Synchronization for Measurement Control and Communication = I S Precis Clock Syn 2007 Ieee International Symposium On Precision Clock Synchronization for Measurement Control and Communication = I. S. Precis. Clock Syn. 2007 Ieee International Symposium On Technology and Society = Int Symp Technol Soc 2007 Ieee International Symposium On Technology and Society = Int. Symp. Technol. Soc. 2007 Ieee International Test Conference, Vols 1 and 2 = Int Test Conf P 2007 Ieee International Test Conference, Vols 1 and 2 = Int. Test Conf. P. 2007 Ieee International Workshop On Imaging Systems and Techniques = I W Imag Syst Techni 2007 Ieee International Workshop On Imaging Systems and Techniques = I. W. Imag. Syst. Techni. 2007 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann Mtg 2007 Ieee Leos Annual Meeting Conference Proceedings, Vols 1 and 2 = Ieee Leos Ann. Mtg. 2007 Ieee Military Communications Conference, Vols 1-8 = Ieee Milit Commun C 2007 Ieee Military Communications Conference, Vols 1-8 = Ieee Milit. Commun. C. 2007 Ieee/mtt-s International Microwave Symposium Digest, Vols 1-6 = Ieee Mtt-s 2007 Ieee/mtt-s International Microwave Symposium Digest, Vols 1-6 = Ieee. Mtt-s. 2007 Ieee/mtt-s International Microwave Symposium Digest, Vols 1-6 = Ieee Mtt S Int Micr 2007 Ieee/mtt-s International Microwave Symposium Digest, Vols 1-6 = Ieee. Mtt. S. Int. Micr. 2007 Ieee Nuclear Science Symposium Conference Record, Vols 1-11 = Ieee Nucl Sci Conf R 2007 Ieee Nuclear Science Symposium Conference Record, Vols 1-11 = Ieee Nucl. Sci. Conf. R. 2007 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing, Vols 1 and 2 = Ieee Pacif 2007 Ieee Pacific Rim Conference On Communications, Computers and Signal Processing, Vols 1 and 2 = Ieee Pacif. 2007 Ieee Particle Accelerator Conference, Vols 1-11 = Ieee Part Acc Conf 2007 Ieee Particle Accelerator Conference, Vols 1-11 = Ieee Part. Acc. Conf. 2007 Ieee Power Electronics Specialists Conference, Vols 1-6 = Ieee Power Electron 2007 Ieee Power Electronics Specialists Conference, Vols 1-6 = Ieee Power Electron. 2007 Ieee Power Engineering Society General Meeting, Vols 1-10 = Ieee Power Eng Soc 2007 Ieee Power Engineering Society General Meeting, Vols 1-10 = Ieee Power Eng. Soc. 2007 Ieee Radio and Wireless Symposium = Ieee Radio Wireless 2007 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad Freq Integr 2007 Ieee Radio Frequency Integrated Circuits (rfic) Symposium, Digest of Papers = Ieee Rad. Freq. Integr. 2007 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos 2007 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos. 2007 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc Proc 2007 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc. Proc. 2007 Ieee Sensors, Vols 1-3 = Ieee Sensor 2007 Ieee Sensors, Vols 1-3 = Ieee Sensor. 2007 Ieee Symposium On Artificial Life = Ieee Symp Art Life 2007 Ieee Symposium On Artificial Life = Ieee Symp. Art. Life 2007 Ieee Symposium On Computers and Communications, Vols 1-3 = Ieee Symp Comp Commu 2007 Ieee Symposium On Computers and Communications, Vols 1-3 = Ieee Symp. Comp. Commu. 2007 Ieee Symposium On Security and Privacy, Proceedings = P Ieee S Secur Priv 2007 Ieee Symposium On Security and Privacy, Proceedings = P. Ieee S. Secur. Priv. 2007 Ieee Ultrasonics Symposium Proceedings, Vols 1-6 = Ultrason 2007 Ieee Ultrasonics Symposium Proceedings, Vols 1-6 = Ultrason. 2007 Ieee Wireless Communications & Networking Conference, Vols 1-9 = Ieee Wcnc 2007 Ieee Wireless Communications & Networking Conference, Vols 1-9 = Ieee Wcnc. 2007 Ieee Workshop On Signal Processing Systems, Vols 1 and 2 = Ieee Wrk Sig Pro Sys 2007 Ieee Workshop On Signal Processing Systems, Vols 1 and 2 = Ieee Wrk. Sig. Pro. Sys. 2007 Ifip International Conference On Network and Parallel Computing Workshops, Proceedings = Ifip Int C Netw Para 2007 Ifip International Conference On Network and Parallel Computing Workshops, Proceedings = Ifip Int. C. Netw. Para. 2007 Inaugural Ieee International Conference On Digital Ecosystems and Technologies = I C Digit Ecosyst Te 2007 Inaugural Ieee International Conference On Digital Ecosystems and Technologies = I. C. Digit. Ecosyst. Te. 2007 International Conference On Communications, Circuits and Systems Proceedings, Vols 1 and 2 = Int C Commun Circuit 2007 International Conference On Communications, Circuits and Systems Proceedings, Vols 1 and 2 = Int. C. Commun. Circuit. 2007 International Conference On Field Programmable Logic and Applications, Proceedings, Vols 1 and 2 = I C Field Prog Logic 2007 International Conference On Field Programmable Logic and Applications, Proceedings, Vols 1 and 2 = I. C. Field Prog. Logic 2007 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf P Indium Phosph 2007 International Conference On Indium Phosphide and Related Materials, Conference Proceedings = Conf. P. Indium Phosph. 2007 International Conference On Parallel and Distributed Systems, Vols 1 and 2 = Int C Par Distrib Sy 2007 International Conference On Parallel and Distributed Systems, Vols 1 and 2 = Int. C. Par. Distrib. Sy. 2007 International Conference On Parallel Processing Workshops (icpp) = Int Conf Para Proc 2007 International Conference On Parallel Processing Workshops (icpp) = Int. Conf. Para. Proc. 2007 International Conference On Power Electronics and Drive Systems, Vols 1-4 = Int C Power Elect Dr 2007 International Conference On Power Electronics and Drive Systems, Vols 1-4 = Int. C. Power Elect. Dr. 2007 International Conference On Service Systems and Service Management, Vols 1-3 = I C Serv Syst Serv M 2007 International Conference On Service Systems and Service Management, Vols 1-3 = I. C. Serv. Syst. Serv. M. 2007 International Conference On Wavelet Analysis and Pattern Recognition, Vols 1-4, Proceedings = Int C Wavel Anal Pat 2007 International Conference On Wavelet Analysis and Pattern Recognition, Vols 1-4, Proceedings = Int. C. Wavel. Anal. Pat. 2007 International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-15 = I C Wirel Comm Netw 2007 International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-15 = I. C. Wirel. Comm. Netw. 2007 International Symposium On Intelligent Signal Processing and Communication Systems, Vols 1 and 2 = I S Intell Sig Proc 2007 International Symposium On Intelligent Signal Processing and Communication Systems, Vols 1 and 2 = I. S. Intell. Sig. Proc. 2007 Oceans, Vols 1-5 = Oceans-ieee 2007 Oceans, Vols 1-5 = Oceans-ieee. 2007 Physics Education Research Conference = Aip Conf Proc 2007 Physics Education Research Conference = Aip. Conf. Proc. 2007 Sid International Symposium, Digest of Technical Papers, Vol Xxxviii, Books I and Ii = Sid Int Symp Dig Tec 2007 Sid International Symposium, Digest of Technical Papers, Vol Xxxviii, Books I and Ii = Sid Int. Symp. Dig. Tec. 2007 Sixteenth Ieee International Symposium On The Applications of Ferroelectrics, Vols 1 and 2 = Ieee Int Ferro 2007 Sixteenth Ieee International Symposium On The Applications of Ferroelectrics, Vols 1 and 2 = Ieee Int. Ferro. 2007 Supreme Court Review = Supreme Court Rev 2007 Supreme Court Review = Supreme Court Rev. 2007 Wireless Telecommunications Symposium = Wirel Telecomm Symp 2007 Wireless Telecommunications Symposium = Wirel. Telecomm. Symp. 2008 11th Ieee Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems, Vols 1-3 = Intersoc C Thermal T 2008 11th Ieee Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems, Vols 1-3 = Intersoc. C. Thermal T. 2008 13th International Conference On Harmonics and Quality of Power, Vols 1 and 2 = Int C Harmon Qual Po 2008 13th International Conference On Harmonics and Quality of Power, Vols 1 and 2 = Int. C. Harmon. Qual. Po. 2008 13th International Power Electronics and Motion Control Conference, Vols 1-5 = Int Power Elect Mot 2008 13th International Power Electronics and Motion Control Conference, Vols 1-5 = Int. Power Elect. Mot. 2008 15th Ieee International Conference On Image Processing, Vols 1-5 = Ieee Image Proc 2008 15th Ieee International Conference On Image Processing, Vols 1-5 = Ieee Image Proc. 2008 15th International Conference On Mechatronics and Machine Vision in Practice (m2vip) = I C Mech Mach Vis Pr 2008 15th International Conference On Mechatronics and Machine Vision in Practice (m2vip) = I. C. Mech. Mach. Vis. Pr. 2008 16th International Workshop On Quality of Service, Proceedings = Int Worksh Qual Serv 2008 16th International Workshop On Quality of Service, Proceedings = Int. Worksh. Qual. Serv. 2008 17th Biennial University/government/industry Micro-nano Symposium, Proceedings = U Gov Ind Micro Nano 2008 17th Biennial University/government/industry Micro-nano Symposium, Proceedings = U. Gov. Ind. Micro. Nano. 2008 17th Ieee International Symposium On The Applications of Ferroelectrics = Ieee Int Ferro 2008 17th Ieee International Symposium On The Applications of Ferroelectrics = Ieee Int. Ferro. 2008 26th International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int Conf Microelectr 2008 26th International Conference On Microelectronics, Vols 1 and 2, Proceedings = Int. Conf. Microelectr. 2008 2nd Icton Mediterranean Winter (icton-mw) = Icton Medit Win Conf 2008 2nd Icton Mediterranean Winter (icton-mw) = Icton Medit. Win. Conf. 2008 2nd Ieee International Conference On Digital Ecosystems and Technologies = I C Digit Ecosyst Te 2008 2nd Ieee International Conference On Digital Ecosystems and Technologies = I. C. Digit. Ecosyst. Te. 2008 30th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-8 = Ieee Eng Med Bio 2008 30th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-8 = Ieee Eng. Med. Bio. 2008 30th International Conference On Software Engineering: (icse), Vols 1 and 2 = Proc Int Conf Softw 2008 30th International Conference On Software Engineering: (icse), Vols 1 and 2 = Proc. Int. Conf. Softw. 2008 31st International Spring Seminar On Electronics Technology = Int Spr Sem Elect Te 2008 31st International Spring Seminar On Electronics Technology = Int. Spr. Sem. Elect. Te. 2008 37th Ieee Applied Imagery Pattern Recognition Workshop = Ieee App Img Pat 2008 37th Ieee Applied Imagery Pattern Recognition Workshop = Ieee App. Img. Pat. 2008 40th North American Power Symposium (naps 2008) = North Amer Pow Symp 2008 40th North American Power Symposium (naps 2008) = North Amer. Pow. Symp. 2008 42nd Asilomar Conference On Signals, Systems and Computers, Vols 1-4 = Conf Rec Asilomar C 2008 42nd Asilomar Conference On Signals, Systems and Computers, Vols 1-4 = Conf. Rec. Asilomar C. 2008 45th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des Aut Con 2008 45th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des. Aut. Con. 2008 4th International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-31 = I C Wirel Comm Netw 2008 4th International Conference On Wireless Communications, Networking and Mobile Computing, Vols 1-31 = I. C. Wirel. Comm. Netw. 2008 51st Midwest Symposium On Circuits and Systems, Vols 1 and 2 = Midwest Symp Circuit 2008 51st Midwest Symposium On Circuits and Systems, Vols 1 and 2 = Midwest Symp. Circuit. 2008 5th Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum Comm Network 2008 5th Ieee Consumer Communications and Networking Conference, Vols 1-3 = Consum. Comm. Network. 2008 5th International Conference On Service Systems and Service Management, Vols 1 and 2 = I C Serv Syst Serv M 2008 5th International Conference On Service Systems and Service Management, Vols 1 and 2 = I. C. Serv. Syst. Serv. M. 2008 5th International Symposium On Mechatronics & Its Applications, Symposium Proceedings = Int S Mechatr Applic 2008 5th International Symposium On Mechatronics & Its Applications, Symposium Proceedings = Int. S. Mechatr. Applic. 2008 6th Ieee International Conference On Industrial Informatics, Vols 1-3 = Ieee Intl Conf Ind I 2008 6th Ieee International Conference On Industrial Informatics, Vols 1-3 = Ieee Intl. Conf. Ind. I. 2008 6th International Symposium On Intelligent Systems and Informatics = I S Intell Syst Info 2008 6th International Symposium On Intelligent Systems and Informatics = I. S. Intell. Syst. Info. 2008 8th International Conference On Application of Concurrency to System Design, Proceedings = Int Conf Appl Concur 2008 8th International Conference On Application of Concurrency to System Design, Proceedings = Int. Conf. Appl. Concur. 2008 American Control Conference, Vols 1-12 = P Amer Contr Conf 2008 American Control Conference, Vols 1-12 = P. Amer. Contr. Conf. 2008 Asia and South Pacific Design Automation Conference, Vols 1 and 2 = Asia S Pacif Des Aut 2008 Asia and South Pacific Design Automation Conference, Vols 1 and 2 = Asia S. Pacif. Des. Aut. 2008 Canadian Conference On Electrical and Computer Engineering, Vols 1-4 = Can Con El Comp En 2008 Canadian Conference On Electrical and Computer Engineering, Vols 1-4 = Can. Con. El. Comp. En. 2008 Conference On Human System Interactions, Vols 1 and 2 = Eurogr Tech Rep Ser 2008 Conference On Human System Interactions, Vols 1 and 2 = Eurogr. Tech. Rep. Ser. 2008 Conference On Lasers and Electro-optics & Quantum Electronics and Laser Science Conference, Vols 1-9 = Ieee Leos Ann Mtg 2008 Conference On Lasers and Electro-optics & Quantum Electronics and Laser Science Conference, Vols 1-9 = Ieee. Leos. Ann. Mtg. 2008 Design, Automation and Test in Europe, Vols 1-3 = Des Aut Test Europe 2008 Design, Automation and Test in Europe, Vols 1-3 = Des. Aut. Test Europe. 2008 Digest of Technical Papers International Conference On Consumer Electronics = Ieee Icce 2008 Digest of Technical Papers International Conference On Consumer Electronics = Ieee. Icce. 2008 Digest of The Leos Summer Topical Meetings = Digest Leos Sum Top 2008 Digest of The Leos Summer Topical Meetings = Digest Leos Sum. Top. 2008 European Radar Conference = Europ Radar Conf 2008 European Radar Conference = Europ. Radar Conf. 2008 Ieee 14th International Symposium On High Peformance Computer Architecture = Int S High Perf Comp 2008 Ieee 14th International Symposium On High Peformance Computer Architecture = Int. S. High Perf. Comp. 2008 Ieee 20th International Conference On Indium Phosphide and Related Materials (iprm) = Conf P Indium Phosph 2008 Ieee 20th International Conference On Indium Phosphide and Related Materials (iprm) = Conf. P. Indium Phosph. 2008 Ieee 24th International Conference On Data Engineering, Vols 1-3 = Proc Int Conf Data 2008 Ieee 24th International Conference On Data Engineering, Vols 1-3 = Proc. Int. Conf. Data 2008 Ieee 24th International Conference On Data Engineering Workshop, Vols 1 and 2 = I C Data Engin Works 2008 Ieee 24th International Conference On Data Engineering Workshop, Vols 1 and 2 = I. C. Data Engin. Works. 2008 Ieee 25th Convention of Electrical and Electronics Engineers in Israel, Vols 1 and 2 = Ieee Conv El Elect I 2008 Ieee 25th Convention of Electrical and Electronics Engineers in Israel, Vols 1 and 2 = Ieee Conv. El. Elect. I. 2008 Ieee 33rd Conference On Local Computer Networks, Vols 1 and 2 = C Local Comput Netw 2008 Ieee 33rd Conference On Local Computer Networks, Vols 1 and 2 = C. Local Comput. Netw. 2008 Ieee 33rd Conference On Local Computer Networks, Vols 1 and 2 = Conf Local Comput Ne 2008 Ieee 33rd Conference On Local Computer Networks, Vols 1 and 2 = Conf. Local Comput. Ne. 2008 Ieee 4th International Conference On Intelligent Computer Communication and Processing, Proceedings = Int C Intell Comp Co 2008 Ieee 4th International Conference On Intelligent Computer Communication and Processing, Proceedings = Int. C. Intell. Comp. Co. 2008 Ieee 67th Vehicular Technology Conference-spring, Vols 1-7 = Ieee Vts Veh Technol 2008 Ieee 67th Vehicular Technology Conference-spring, Vols 1-7 = Ieee Vts. Veh. Technol. 2008 Ieee 7th International Conference On Development and Learning = Int C Devel Learn 2008 Ieee 7th International Conference On Development and Learning = Int. C. Devel. Learn. 2008 Ieee/acs International Conference On Computer Systems and Applications, Vols 1-3 = I C Comp Syst Applic 2008 Ieee/acs International Conference On Computer Systems and Applications, Vols 1-3 = I. C. Comp. Syst. Applic. 2008 Ieee Aerospace Conference, Vols 1-9 = Aerosp Conf Proc 2008 Ieee Aerospace Conference, Vols 1-9 = Aerosp. Conf. Proc. 2008 Ieee Asian Solid-state Circuits Conference = Ieee Asian Solid Sta 2008 Ieee Asian Solid-state Circuits Conference = Ieee Asian Solid. Sta. 2008 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon 2008 Ieee Autotestcon, Vols 1 and 2 = Ieee Autotestcon. 2008 Ieee Cement Industry Technical Conference Record = Ieee Cem Ind Tech Co 2008 Ieee Cement Industry Technical Conference Record = Ieee Cem. Ind. Tech. Co. 2008 Ieee Computer Society Conference On Computer Vision and Pattern Recognition Workshops, Vols 1-3 = Proc Cvpr Ieee 2008 Ieee Computer Society Conference On Computer Vision and Pattern Recognition Workshops, Vols 1-3 = Proc. Cvpr. Ieee 2008 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-12 = Proc Cvpr Ieee 2008 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-12 = Proc. Cvpr. Ieee 2008 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf Cybern Intell S 2008 Ieee Conference On Cybernetics and Intelligent Systems, Vols 1 and 2 = Conf. Cybern. Intell. S. 2008 Ieee Congress On Evolutionary Computation, Vols 1-8 = Ieee C Evol Computat 2008 Ieee Congress On Evolutionary Computation, Vols 1-8 = Ieee C. Evol. Computat. 2008 Ieee Csic Symposium = Comp Semicond Integr 2008 Ieee Csic Symposium = Comp. Semicond. Integr. 2008 Ieee Industry Applications Society Annual Meeting, Vols 1-5 = Ieee Ind Applic Soc 2008 Ieee Industry Applications Society Annual Meeting, Vols 1-5 = Ieee Ind. Applic. Soc. 2008 Ieee Instrumentation and Measurement Technology Conference, Vols 1-5 = Ieee Imtc P 2008 Ieee Instrumentation and Measurement Technology Conference, Vols 1-5 = Ieee Imtc. P. 2008 Ieee Intelligent Vehicles Symposium, Vols 1-3 = Ieee Int Veh Sym 2008 Ieee Intelligent Vehicles Symposium, Vols 1-3 = Ieee Int. Veh. Sym. 2008 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-12 = Int Conf Acoust Spee 2008 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-12 = Int. Conf. Acoust. Spee. 2008 Ieee International Conference On Cluster Computing = Ieee Int C Cl Comp 2008 Ieee International Conference On Cluster Computing = Ieee Int. C. Cl. Comp. 2008 Ieee International Conference On Communications, Proceedings, Vols 1-13 = Ieee Icc 2008 Ieee International Conference On Communications, Proceedings, Vols 1-13 = Ieee Icc. 2008 Ieee International Conference On Computer Design = Pr Ieee Comp Design 2008 Ieee International Conference On Computer Design = Pr. Ieee Comp. Design 2008 Ieee International Conference On Control Applications, Vols 1 and 2 = Ieee Intl Conf Contr 2008 Ieee International Conference On Control Applications, Vols 1 and 2 = Ieee Intl. Conf. Contr. 2008 Ieee International Conference On Dependable Systems & Networks With Ftcs & Dcc = I C Depend Sys Netwo 2008 Ieee International Conference On Dependable Systems & Networks With Ftcs & Dcc = I. C. Depend. Sys. Netwo. 2008 Ieee International Conference On Electro/information Technology = Int Conf Electro Inf 2008 Ieee International Conference On Electro/information Technology = Int. Conf. Electro. Inf. 2008 Ieee International Conference On Emerging Technologies and Factory Automation, Proceedings = Int Conf Emerg Techn 2008 Ieee International Conference On Emerging Technologies and Factory Automation, Proceedings = Int. Conf. Emerg. Techn. 2008 Ieee International Conference On Fuzzy Systems, Vols 1-5 = Ieee Int Conf Fuzzy 2008 Ieee International Conference On Fuzzy Systems, Vols 1-5 = Ieee Int. Conf. Fuzzy 2008 Ieee International Conference On Image Processing, Proceedings = Ieee Image Proc 2008 Ieee International Conference On Image Processing, Proceedings = Ieee Image Proc. 2008 Ieee International Conference On Microelectronic Test Structures, Conference Proceedings = Ieee Int C Microelec 2008 Ieee International Conference On Microelectronic Test Structures, Conference Proceedings = Ieee Int. C. Microelec. 2008 Ieee International Conference On Robotics and Automation, Vols 1-9 = Ieee Int Conf Robot 2008 Ieee International Conference On Robotics and Automation, Vols 1-9 = Ieee Int. Conf. Robot. 2008 Ieee International Conference On Software Maintenance = Proc Ieee Int Conf S 2008 Ieee International Conference On Software Maintenance = Proc. Ieee Int. Conf. S. 2008 Ieee International Conference On Systems, Man and Cybernetics (smc), Vols 1-6 = Ieee Sys Man Cybern 2008 Ieee International Conference On Systems, Man and Cybernetics (smc), Vols 1-6 = Ieee Sys. Man Cybern. 2008 Ieee International Conference On Ultra-wideband, Vol 1, Proceedings = Hann Beitr Nachricht 2008 Ieee International Conference On Ultra-wideband, Vol 1, Proceedings = Hann. Beitr. Nachricht. 2008 Ieee International Conference On Ultra-wideband, Vol 2, Proceedings = Hann Beitr Nachricht 2008 Ieee International Conference On Ultra-wideband, Vol 2, Proceedings = Hann. Beitr. Nachricht. 2008 Ieee International Conference On Ultra-wideband, Vol 3, Proceedings = Hann Beitr Nachricht 2008 Ieee International Conference On Ultra-wideband, Vol 3, Proceedings = Hann. Beitr. Nachricht. 2008 Ieee International Integrated Reliability Workshop Final Report = Int Integ Rel Wrksp 2008 Ieee International Integrated Reliability Workshop Final Report = Int. Integ. Rel. Wrksp. 2008 Ieee International Joint Conference On Neural Networks, Vols 1-8 = Ieee Ijcnn 2008 Ieee International Joint Conference On Neural Networks, Vols 1-8 = Ieee Ijcnn. 2008 Ieee International Performance, Computing and Communications Conference (ipccc 2008) = Ieee Ipccc 2008 Ieee International Performance, Computing and Communications Conference (ipccc 2008) = Ieee Ipccc. 2008 Ieee International Reliability Physics Symposium Proceedings - 46th Annual = Int Rel Phy 2008 Ieee International Reliability Physics Symposium Proceedings - 46th Annual = Int. Rel. Phy. 2008 Ieee International Soi Conference, Proceedings = Ieee Int Soi Conf 2008 Ieee International Soi Conference, Proceedings = Ieee Int. Soi Conf. 2008 Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks, Vols 1 and 2 = Handb Syst Autoimmun 2008 Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks, Vols 1 and 2 = Handb. Syst. Autoimmun. 2008 Ieee International Symposium On Biomedical Imaging: From Nano to Macro, Vols 1-4 = I S Biomed Imaging 2008 Ieee International Symposium On Biomedical Imaging: From Nano to Macro, Vols 1-4 = I. S. Biomed. Imaging. 2008 Ieee International Symposium On Consumer Electronics, Vols 1 and 2 = I Symp Consum Electr 2008 Ieee International Symposium On Consumer Electronics, Vols 1 and 2 = I. Symp. Consum. Electr. 2008 Ieee International Symposium On Electronics and The Environment = Ieee Int Symp Electr 2008 Ieee International Symposium On Electronics and The Environment = Ieee Int. Symp. Electr. 2008 Ieee International Symposium On Modeling, Analysis & Simulation of Computer and Telecommunication Systems (mascots) = I S Mod Anal Sim Com 2008 Ieee International Symposium On Modeling, Analysis & Simulation of Computer and Telecommunication Systems (mascots) = I. S. Mod. Anal. Sim. Com. 2008 Ieee International Symposium On Precision Clock Synchronization for Measurement, Control and Communication = I S Precis Clock Syn 2008 Ieee International Symposium On Precision Clock Synchronization for Measurement, Control and Communication = I. S. Precis. Clock Syn. 2008 Ieee International Symposium On Technology and Society = Int Symp Technol Soc 2008 Ieee International Symposium On Technology and Society = Int. Symp. Technol. Soc. 2008 Ieee International Symposium On Workload Characterization = I S Workl Char Proc 2008 Ieee International Symposium On Workload Characterization = I. S. Workl. Char. Proc. 2008 Ieee International Test Conference, Vols 1 and 2, Proceedings = Int Test Conf P 2008 Ieee International Test Conference, Vols 1 and 2, Proceedings = Int. Test Conf. P. 2008 Ieee International Vacuum Electronics Conference = Ieee Int Vac Elect C 2008 Ieee International Vacuum Electronics Conference = Ieee Int. Vac. Elect. C. 2008 Ieee International Workshop On Imaging Systems and Techniques = I W Imag Syst Techni 2008 Ieee International Workshop On Imaging Systems and Techniques = I. W. Imag. Syst. Techni. 2008 Ieee International Workshop On Medical Measurements and Applications = Ieee Int Work Med Me 2008 Ieee International Workshop On Medical Measurements and Applications = Ieee Int. Work. Med. Me. 2008 Ieee Mediterranean Electrotechnical Conference, Vols 1 and 2 = Ieee Mediterr Elect 2008 Ieee Mediterranean Electrotechnical Conference, Vols 1 and 2 = Ieee Mediterr. Elect. 2008 Ieee Military Communications Conference: Milcom 2008, Vols 1-7 = Ieee Milit Commun C 2008 Ieee Military Communications Conference: Milcom 2008, Vols 1-7 = Ieee Milit. Commun. C. 2008 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt-s 2008 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt S Int Micr 2008 Ieee Mtt-s International Microwave Symposium Digest, Vols 1-4 = Ieee Mtt. S. Int. Micr. 2008 Ieee Network Operations and Management Symposium, Vols 1 and 2 = Ieee Ifip Netw Oper 2008 Ieee Network Operations and Management Symposium, Vols 1 and 2 = Ieee Ifip. Netw. Oper. 2008 Ieee Nuclear Science Symposium and Medical Imaging Conference (2008 Nss/mic), Vols 1-9 = Ieee Nucl Sci Conf R 2008 Ieee Nuclear Science Symposium and Medical Imaging Conference (2008 Nss/mic), Vols 1-9 = Ieee Nucl. Sci. Conf. R. 2008 Ieee/oes Autonomous Underwater Vehicles = Ieee Auto Under Veh 2008 Ieee/oes Autonomous Underwater Vehicles = Ieee. Auto. Under. Veh. 2008 Ieee/pes Transmission and Distribution Conference and Exposition: Latin America, Vols 1 and 2 = Tr Dist C Exp Lat Am 2008 Ieee/pes Transmission and Distribution Conference and Exposition: Latin America, Vols 1 and 2 = Tr. Dist. C. Exp. Lat. Am. 2008 Ieee/pes Transmission & Distribution Conference & Exposition, Vols 1-3 = Trans Distrib Conf 2008 Ieee/pes Transmission & Distribution Conference & Exposition, Vols 1-3 = Trans. Distrib. Conf. 2008 Ieee Power Electronics Specialists Conference, Vols 1-10 = Ieee Power Electron 2008 Ieee Power Electronics Specialists Conference, Vols 1-10 = Ieee Power Electron. 2008 Ieee Power & Energy Society General Meeting, Vols 1-11 = Ieee Pow Ener Soc Ge 2008 Ieee Power & Energy Society General Meeting, Vols 1-11 = Ieee Pow. Ener. Soc. Ge. 2008 Ieee Radar Conference, Vols. 1-4 = Ieee Rad Conf 2008 Ieee Radar Conference, Vols. 1-4 = Ieee Rad. Conf. 2008 Ieee Radio and Wireless Symposium, Vols 1 and 2 = Ieee Radio Wireless 2008 Ieee Radio Frequency Integrated Circuits Symposium, Vols 1 and 2 = Ieee Rad Freq Integr 2008 Ieee Radio Frequency Integrated Circuits Symposium, Vols 1 and 2 = Ieee Rad. Freq. Integr. 2008 Ieee Region 10 Conference: Tencon 2008, Vols 1-4 = Tencon Ieee Region 2008 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos 2008 Ieee Sarnoff Symposium = Ieee Sarnoff Sympos. 2008 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc Proc 2008 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc. Proc. 2008 Ieee Symposium On Computers and Communications, Vols 1-3 = Ieee Symp Comp Commu 2008 Ieee Symposium On Computers and Communications, Vols 1-3 = Ieee Symp. Comp. Commu. 2008 Ieee Ultrasonics Symposium, Vols 1-4 and Appendix = Ultrason 2008 Ieee Ultrasonics Symposium, Vols 1-4 and Appendix = Ultrason. 2008 Ieee Workshop On Applications of Computer Vision = Ieee Work App Comp 2008 Ieee Workshop On Applications of Computer Vision = Ieee Work. App. Comp. 2008 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems, Proceedings = Des Diag Elec Circ S 2008 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems, Proceedings = Des. Diag. Elec. Circ. S. 2008 Ieee Workshop On Machine Learning for Signal Processing = Machine Learn Sign P 2008 Ieee Workshop On Machine Learning for Signal Processing = Machine Learn. Sign. P. 2008 Ieee Workshop On Signal Processing Systems: Sips 2008, Proceedings = Ieee Wrk Sig Pro Sys 2008 Ieee Workshop On Signal Processing Systems: Sips 2008, Proceedings = Ieee Wrk. Sig. Pro. Sys. 2008 Ifip International Conference On Network and Parallel Computing, Proceedings = Ifip Int C Netw Para 2008 Ifip International Conference On Network and Parallel Computing, Proceedings = Ifip Int. C. Netw. Para. 2008 International Conference On Application-specific Systems, Architectures and Processors = Ieee Int Conf Asap 2008 International Conference On Application-specific Systems, Architectures and Processors = Ieee. Int. Conf. Asap. 2008 International Conference On Communications, Circuits and Systems Proceedings, Vols 1 and 2 = Int C Commun Circuit 2008 International Conference On Communications, Circuits and Systems Proceedings, Vols 1 and 2 = Int. C. Commun. Circuit. 2008 International Conference On Field Programmable and Logic Applications, Vols 1 and 2 = I C Field Prog Logic 2008 International Conference On Field Programmable and Logic Applications, Vols 1 and 2 = I. C. Field Prog. Logic 2008 International Conference On Luminescence and Optical Spectroscopy of Condensed Matter = Physcs Proc 2008 International Conference On Luminescence and Optical Spectroscopy of Condensed Matter = Physcs. Proc. 2008 International Conference On Microelectronics = Int C Microelectron 2008 International Conference On Microelectronics = Int. C. Microelectron. 2008 International Conference On Microelectronics = Int Conf Microelect 2008 International Conference On Microelectronics = Int. Conf. Microelect. 2008 International Conference On Optical Instruments and Technology: Advanced Sensor Technologies and Applications = Proc Spie 2008 International Conference On Optical Instruments and Technology: Advanced Sensor Technologies and Applications = Proc. Spie. 2008 International Conference On Optical Instruments and Technology: Advanced Sensor Technologies and Applications = P Soc Photo-opt Ins 2008 International Conference On Optical Instruments and Technology: Advanced Sensor Technologies and Applications = P. Soc. Photo-opt. Ins. 2008 International Conference On Optical Instruments and Technology: Mems/nems Technology and Applications = P Soc Photo-opt Ins 2008 International Conference On Optical Instruments and Technology: Mems/nems Technology and Applications = P. Soc. Photo-opt. Ins. 2008 International Conference On Optical Instruments and Technology: Microelectronic and Optoelectronic Devices and Integration = Proc Spie 2008 International Conference On Optical Instruments and Technology: Microelectronic and Optoelectronic Devices and Integration = Proc. Spie. 2008 International Conference On Optical Instruments and Technology: Microelectronic and Optoelectronic Devices and Integration = P Soc Photo-opt Ins 2008 International Conference On Optical Instruments and Technology: Microelectronic and Optoelectronic Devices and Integration = P. Soc. Photo-opt. Ins. 2008 International Conference On Optical Instruments and Technology: Optical Systems and Optoelectronic Instruments = P Soc Photo-opt Ins 2008 International Conference On Optical Instruments and Technology: Optical Systems and Optoelectronic Instruments = P. Soc. Photo-opt. Ins. 2008 International Conference On Optical Instruments and Technology: Optoelectronic Measurement Technology and Applications = P Soc Photo-opt Ins 2008 International Conference On Optical Instruments and Technology: Optoelectronic Measurement Technology and Applications = P. Soc. Photo-opt. Ins. 2008 International Symposium On Intelligent Signal Processing and Communications Systems (ispacs 2008) = I S Intell Sig Proc 2008 International Symposium On Intelligent Signal Processing and Communications Systems (ispacs 2008) = I. S. Intell. Sig. Proc. 2008 International Symposium On Power Electronics, Electrical Drives, Automation and Motion, Vols 1-3 = Int Power Elect Elec 2008 International Symposium On Power Electronics, Electrical Drives, Automation and Motion, Vols 1-3 = Int. Power Elect. Elec. 2008 Journal of The Association of Asphalt Paving Technologists, Vol 77 = J Assoc Asphalt Pav 2008 Journal of The Association of Asphalt Paving Technologists, Vol 77 = J. Assoc. Asphalt Pav. 2008 Nanjing Gamma-ray Burst Conference = Aip Conf Proc 2008 Nanjing Gamma-ray Burst Conference = Aip. Conf. Proc. 2008 Physics Education Research Conference = Aip Conf Proc 2008 Physics Education Research Conference = Aip. Conf. Proc. 2008 Proceedings of 17th International Conference On Computer Communications and Networks, Vols 1 and 2 = Ieee Ic Comp Com Net 2008 Proceedings of 17th International Conference On Computer Communications and Networks, Vols 1 and 2 = Ieee. Ic. Comp. Com. Net. 2008 Seismic Engineering Conference Commemorating The 1908 Messina and Reggio Calabria Earthquake, Pts 1 and 2 = Aip Conf Proc 2008 Seismic Engineering Conference Commemorating The 1908 Messina and Reggio Calabria Earthquake, Pts 1 and 2 = Aip. Conf. Proc. 2008 Sid International Symposium, Digest of Technical Papers, Vol Xxxix, Books I-iii = Sid Int Symp Dig Tec 2008 Sid International Symposium, Digest of Technical Papers, Vol Xxxix, Books I-iii = Sid Int. Symp. Dig. Tec. 2008 Supreme Court Review = Supreme Court Rev 2008 Supreme Court Review = Supreme Court Rev. 2009 11th Ieee International Conference On Computer-aided Design and Computer Graphics, Proceedings = Int C Comp Aid Des C 2009 11th Ieee International Conference On Computer-aided Design and Computer Graphics, Proceedings = Int. C. Comp. Aid. Des. C. 2009 13th International Conference On Computer Supported Cooperative Work in Design = Int C Comp Supp Coop 2009 13th International Conference On Computer Supported Cooperative Work in Design = Int. C. Comp. Supp. Coop. 2009 15th Ieee International Conference On Embedded and Real-time Computing Systems and Applications, Proceedings = Ieee Int Conf Embed 2009 15th Ieee International Conference On Embedded and Real-time Computing Systems and Applications, Proceedings = Ieee Int. Conf. Embed. 2009 17th Ieee International Conference On Network Protocols (icnp 2009) = I C Network Protocol 2009 17th Ieee International Conference On Network Protocols (icnp 2009) = I. C. Network Protocol. 2009 18th Ieee International Workshop On Enabling Technologies: Infrastructures for Collaborative Enterprises = Ieee Enabl Technol 2009 18th Ieee International Workshop On Enabling Technologies: Infrastructures for Collaborative Enterprises = Ieee Enabl. Technol. 2009 20th Ieee International Conference On Application-specific Systems, Architectures and Processors = Ieee Int Conf Asap 2009 20th Ieee International Conference On Application-specific Systems, Architectures and Processors = Ieee Int. Conf. Asap. 2009 21st International Symposium On Power Semiconductor Devices & Ics = Proc Int Symp Power 2009 21st International Symposium On Power Semiconductor Devices & Ics = Proc. Int. Symp. Power 2009 22nd Ieee International Symposium On Computer-based Medical Systems = Comp Med Sy 2009 22nd Ieee International Symposium On Computer-based Medical Systems = Comp. Med. Sy. 2009 27th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 2009 27th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 2009 28th Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst 2009 28th Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. 2009 29th Ieee International Conference On Distributed Computing Systems = Int Con Distr Comp S 2009 29th Ieee International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. 2009 30th Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 2009 30th Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 2009 31st International Conference On Software Engineering, Companion Volume = Proc Int Conf Softw 2009 31st International Conference On Software Engineering, Companion Volume = Proc. Int. Conf. Softw. 2009 31st International Conference On Software Engineering, Proceedings = Proc Int Conf Softw 2009 31st International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. 2009 32nd International Spring Seminar On Electronics Technology = Int Spr Sem Elect Te 2009 32nd International Spring Seminar On Electronics Technology = Int. Spr. Sem. Elect. Te. 2009 34th Ieee Photovoltaic Specialists Conference, Vols 1-3 = Ieee Phot Spec Conf 2009 34th Ieee Photovoltaic Specialists Conference, Vols 1-3 = Ieee Phot. Spec. Conf. 2009 4th International Ieee/embs Conference On Neural Engineering = I Ieee Embs C Neur E 2009 4th International Ieee/embs Conference On Neural Engineering = I. Ieee. Embs. C. Neur. E. 2009 50th Annual Ieee Symposium On Foundations of Computer Science: Focs 2009, Proceedings = Ann Ieee Symp Found 2009 50th Annual Ieee Symposium On Foundations of Computer Science: Focs 2009, Proceedings = Ann. Ieee Symp. Found. 2009 52nd Ieee International Midwest Symposium On Circuits and Systems, Vols 1 and 2 = Midwest Symp Circuit 2009 52nd Ieee International Midwest Symposium On Circuits and Systems, Vols 1 and 2 = Midwest Symp. Circuit. 2009 5th Ieee International Workshop On Visualizing Software for Understanding and Analysis = Ieee Int Work Vis So 2009 5th Ieee International Workshop On Visualizing Software for Understanding and Analysis = Ieee Int. Work. Vis. So. 2009 6th International Conference On Service Systems and Service Management, Vols 1 and 2 = I C Serv Syst Serv M 2009 6th International Conference On Service Systems and Service Management, Vols 1 and 2 = I. C. Serv. Syst. Serv. M. 2009 6th International Symposium On Mechatronics and Its Applications (isma) = Int S Mechatr Applic 2009 6th International Symposium On Mechatronics and Its Applications (isma) = Int. S. Mechatr. Applic. 2009 7th Ieee International Conference On Industrial Informatics, Vols 1 and 2 = Ieee Intl Conf Ind I 2009 7th Ieee International Conference On Industrial Informatics, Vols 1 and 2 = Ieee Intl. Conf. Ind. I. 2009 9th Ieee International Conference On Data Mining = Ieee Data Mining 2009 American Control Conference, Vols 1-9 = P Amer Contr Conf 2009 American Control Conference, Vols 1-9 = P. Amer. Contr. Conf. 2009 Annual Ieee Compound Semiconductor Integrated Circuit Symposium - 2009 Ieee Csic Symposium, Technical Digest 2009 = Comp Semicond Integr 2009 Annual Ieee Compound Semiconductor Integrated Circuit Symposium - 2009 Ieee Csic Symposium, Technical Digest 2009 = Comp. Semicond. Integr. 2009 Applied Electronics, International Conference = Applied Electronics 2009 Applied Electronics, International Conference = Applied Electronics. 2009 Asian Test Symposium, Proceedings = Asian Test Symposium 2009 Asian Test Symposium, Proceedings = Asian Test Symposium. 2009 European Radar Conference (eurad 2009) = Europ Radar Conf 2009 European Radar Conference (eurad 2009) = Europ. Radar Conf. 2009 Ieee 10th International Conference On Computer-aided Industrial Design & Conceptual Design, Vols 1-3 = Int C Comp Aid Ind D 2009 Ieee 10th International Conference On Computer-aided Industrial Design & Conceptual Design, Vols 1-3 = Int. C. Comp. Aid. Ind. D. 2009 Ieee 11th International Conference On Rehabilitation Robotics, Vols 1 and 2 = Int C Rehab Robot 2009 Ieee 11th International Conference On Rehabilitation Robotics, Vols 1 and 2 = Int. C. Rehab. Robot. 2009 Ieee 12th International Conference On Computer Vision (iccv) = Ieee I Conf Comp Vis 2009 Ieee 12th International Conference On Computer Vision (iccv) = Ieee I. Conf. Comp. Vis. 2009 Ieee 16th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2, Proceedings = In C Ind Eng Eng Man 2009 Ieee 16th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2, Proceedings = In. C. Ind. Eng. Eng. Man. 2009 Ieee 21st International Conference On Indium Phosphide & Related Materials (iprm) = Conf P Indium Phosph 2009 Ieee 21st International Conference On Indium Phosphide & Related Materials (iprm) = Conf. P. Indium Phosph. 2009 Ieee 33rd International Computer Software and Applications Conference, Vols 1 and 2 = P Int Comp Softw App 2009 Ieee 33rd International Computer Software and Applications Conference, Vols 1 and 2 = P. Int. Comp. Softw. App. 2009 Ieee 34th Conference On Local Computer Networks (lcn 2009) = C Local Comput Netw 2009 Ieee 34th Conference On Local Computer Networks (lcn 2009) = C. Local Comput. Netw. 2009 Ieee 5th International Conference On Intelligent Computer Communication and Processing, Proceedings = Int C Intell Comp Co 2009 Ieee 5th International Conference On Intelligent Computer Communication and Processing, Proceedings = Int. C. Intell. Comp. Co. 2009 Ieee 6th International Power Electronics and Motion Control Conference, Vols 1-4 = Ieee Int Power Elec 2009 Ieee 6th International Power Electronics and Motion Control Conference, Vols 1-4 = Ieee Int. Power Elec. 2009 Ieee 70th Vehicular Technology Conference Fall, Vols 1-4 = Ieee Vts Veh Technol 2009 Ieee 70th Vehicular Technology Conference Fall, Vols 1-4 = Ieee Vts. Veh. Technol. 2009 Ieee/acm International Conference On Automated Software Engineering, Proceedings = Ieee Int Conf Autom 2009 Ieee/acm International Conference On Automated Software Engineering, Proceedings = Ieee. Int. Conf. Autom. 2009 Ieee Aerospace Conference, Vols 1-7 = Aerosp Conf Proc 2009 Ieee Aerospace Conference, Vols 1-7 = Aerosp. Conf. Proc. 2009 Ieee/aiaa 28th Digital Avionics Systems Conference, Vols 1-3 = Digit Avion Syst Con 2009 Ieee/aiaa 28th Digital Avionics Systems Conference, Vols 1-3 = Digit. Avion. Syst. Con. 2009 Ieee Computer Society Conference On Computer Vision and Pattern Recognition Workshops (cvpr Workshops 2009), Vols 1 and 2 = Proc Cvpr Ieee 2009 Ieee Computer Society Conference On Computer Vision and Pattern Recognition Workshops (cvpr Workshops 2009), Vols 1 and 2 = Proc. Cvpr. Ieee 2009 Ieee Congress On Evolutionary Computation, Vols 1-5 = Ieee C Evol Computat 2009 Ieee Congress On Evolutionary Computation, Vols 1-5 = Ieee C. Evol. Computat. 2009 Ieee Control Applications Cca & Intelligent Control (isic), Vols 1-3 = Ieee Intl Conf Contr 2009 Ieee Control Applications Cca & Intelligent Control (isic), Vols 1-3 = Ieee Intl. Conf. Contr. 2009 Ieee-ias/pca Cement Industry Conference = Ieee Cem Ind Tech Co 2009 Ieee-ias/pca Cement Industry Conference = Ieee. Cem. Ind. Tech. Co. 2009 Ieee Industry Applications Society Annual Meeting = Ieee Ind Applic Soc 2009 Ieee Industry Applications Society Annual Meeting = Ieee Ind. Applic. Soc. 2009 Ieee Intelligent Vehicles Symposium, Vols 1 and 2 = Ieee Int Veh Sym 2009 Ieee Intelligent Vehicles Symposium, Vols 1 and 2 = Ieee Int. Veh. Sym. 2009 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1- 8, Proceedings = Int Conf Acoust Spee 2009 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1- 8, Proceedings = Int. Conf. Acoust. Spee. 2009 Ieee International Conference On Communications, Vols 1-8 = Ieee Icc 2009 Ieee International Conference On Communications, Vols 1-8 = Ieee Icc. 2009 Ieee International Conference On Computer Design = Pr Ieee Comp Design 2009 Ieee International Conference On Computer Design = Pr. Ieee Comp. Design 2009 Ieee International Conference On Control and Automation, Vols 1-3 = Ieee Int Conf Con Au 2009 Ieee International Conference On Control and Automation, Vols 1-3 = Ieee Int. Conf. Con. Au. 2009 Ieee International Conference On Electro/information Technology = Int Conf Electro Inf 2009 Ieee International Conference On Electro/information Technology = Int. Conf. Electro. Inf. 2009 Ieee International Conference On Industrial Engineering and Engineering Management, Vols 1-4 = In C Ind Eng Eng Man 2009 Ieee International Conference On Industrial Engineering and Engineering Management, Vols 1-4 = In. C. Ind. Eng. Eng. Man. 2009 Ieee International Conference On Networking, Sensing and Control, Vols 1 and 2 = Ieee Int C Netw Sens 2009 Ieee International Conference On Networking, Sensing and Control, Vols 1 and 2 = Ieee Int. C. Netw. Sens. 2009 Ieee International Conference On Software Maintenance, Conference Proceedings = Proc Ieee Int Conf S 2009 Ieee International Conference On Software Maintenance, Conference Proceedings = Proc. Ieee Int. Conf. S. 2009 Ieee International Conference On Systems, Man and Cybernetics (smc 2009), Vols 1-9 = Ieee Sys Man Cybern 2009 Ieee International Conference On Systems, Man and Cybernetics (smc 2009), Vols 1-9 = Ieee Sys. Man Cybern. 2009 Ieee International Electron Devices Meeting = Int El Devices Meet 2009 Ieee International Electron Devices Meeting = Int. El. Devices Meet. 2009 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-5 = Int Geosci Remote Se 2009 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-5 = Int. Geosci. Remote Se. 2009 Ieee International Symposium On Parallel & Distributed Processing, Vols 1-5 = Int Parall Distrib P 2009 Ieee International Symposium On Parallel & Distributed Processing, Vols 1-5 = Int. Parall. Distrib. P. 2009 Ieee International Symposium On Sustainable Systems and Technology = Ieee I Symp Sust Sys 2009 Ieee International Symposium On Sustainable Systems and Technology = Ieee I. Symp. Sust. Sys. 2009 Ieee International Symposium On Technology and Society = Int Symp Technol Soc 2009 Ieee International Symposium On Technology and Society = Int. Symp. Technol. Soc. 2009 Ieee International Vacuum Electronics Conference = Ieee Int Vac Elect C 2009 Ieee International Vacuum Electronics Conference = Ieee Int. Vac. Elect. C. 2009 Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int Worksh Int Data 2009 Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int. Worksh. Int. Data 2009 Ieee Leos Annual Meeting Conference Proceedings, Vols 1and 2 = Ieee Leos Ann Mtg 2009 Ieee Leos Annual Meeting Conference Proceedings, Vols 1and 2 = Ieee Leos Ann. Mtg. 2009 Ieee/mtt-s International Microwave Symposium, Vols 1-3 = Ieee Mtt-s 2009 Ieee/mtt-s International Microwave Symposium, Vols 1-3 = Ieee. Mtt-s. 2009 Ieee/mtt-s International Microwave Symposium, Vols 1-3 = Ieee Mtt S Int Micr 2009 Ieee/mtt-s International Microwave Symposium, Vols 1-3 = Ieee. Mtt. S. Int. Micr. 2009 Ieee Nuclear Science Symposium Conference Record, Vols 1-5 = Ieee Nucl Sci Conf R 2009 Ieee Nuclear Science Symposium Conference Record, Vols 1-5 = Ieee Nucl. Sci. Conf. R. 2009 Ieee Power & Energy Society General Meeting, Vols 1-8 = Ieee Pow Ener Soc Ge 2009 Ieee Power & Energy Society General Meeting, Vols 1-8 = Ieee Pow. Ener. Soc. Ge. 2009 Ieee Radar Conference, Vols 1 and 2 = Ieee Rad Conf 2009 Ieee Radar Conference, Vols 1 and 2 = Ieee Rad. Conf. 2009 Ieee Sarnoff Symposium, Conference Proceedings = Ieee Sarnoff Sympos 2009 Ieee Sarnoff Symposium, Conference Proceedings = Ieee Sarnoff Sympos. 2009 Ieee Symposium On Artificial Life = Ieee Symp Art Life 2009 Ieee Symposium On Artificial Life = Ieee Symp. Art. Life 2009 Ieee Symposium On Visual Languages and Human-centric Computing, Proceedings = S Vis Lang Hum Cen C 2009 Ieee Symposium On Visual Languages and Human-centric Computing, Proceedings = S. Vis. Lang. Hum. Cen. C. 2009 Ieee Vehicle Power and Propulsion Conference, Vols 1-3 = Ieee Vehicle Power 2009 Ieee Vehicular Technology Conference, Vols 1-5 = Veh Technol Confe 2009 Ieee Vehicular Technology Conference, Vols 1-5 = Veh. Technol. Confe. 2009 Ieee Wireless Communications & Networking Conference, Vols 1-5 = Ieee Wcnc 2009 Ieee Wireless Communications & Networking Conference, Vols 1-5 = Ieee Wcnc. 2009 International Conference On Advanced Information Networking and Applications = Int Con Adv Info Net 2009 International Conference On Advanced Information Networking and Applications = Int. Con. Adv. Info. Net. 2009 International Conference On Electrical Machines and Systems, Vols 1-3 = Int C Electr Mach Sy 2009 International Conference On Electrical Machines and Systems, Vols 1-3 = Int. C. Electr. Mach. Sy. 2009 International Conference On Information and Communication Technologies = Int Conf Inf Commun 2009 International Conference On Information and Communication Technologies = Int. Conf. Inf. Commun. 2009 International Conference On Intelligent Engineering Systems = Int C Intell Eng Sys 2009 International Conference On Intelligent Engineering Systems = Int. C. Intell. Eng. Sys. 2009 International Conference On Power Electronics and Drive Systems, Vols 1 and 2 = Int C Power Elect Dr 2009 International Conference On Power Electronics and Drive Systems, Vols 1 and 2 = Int. C. Power Elect. Dr. 2009 International Conference On Simulation of Semiconductor Processes and Devices = Int Conf Sim Semi Pr 2009 International Conference On Simulation of Semiconductor Processes and Devices = Int. Conf. Sim. Semi. Pr. 2009 International Symposium On Computational Models for Life Sciences (cmls '09) = Aip Conf Proc 2009 International Symposium On Computational Models for Life Sciences (cmls '09) = Aip. Conf. Proc. 2009 International Symposium On Wearable Computers, Proceedings = Ieee Int Sym Wrbl Co 2009 International Symposium On Wearable Computers, Proceedings = Ieee. Int. Sym. Wrbl. Co. 2009 International Workshop On Information Optics = J Phys Conf Ser 2009 International Workshop On Information Optics = J. Phys. Conf. Ser. 2009 Joint Annual Conference of The National Society of Black Physicists and The National Society of Hispanic Physicists, Proceedings = Aip Conf Proc 2009 Joint Annual Conference of The National Society of Black Physicists and The National Society of Hispanic Physicists, Proceedings = Aip. Conf. Proc. 2009 Joint Meeting of The European Frequency and Time Forum and The Ieee International Frequency Control Symposium, Vols 1 and 2 = P Ieee Int Freq Cont 2009 Joint Meeting of The European Frequency and Time Forum and The Ieee International Frequency Control Symposium, Vols 1 and 2 = P. Ieee Int. Freq. Cont. 2009 Physics Education Research Conference = Aip Conf Proc 2009 Physics Education Research Conference = Aip. Conf. Proc. 2009 Proceedings of Esscirc = Proc Eur Solid-state 2009 Proceedings of Esscirc = Proc. Eur. Solid-state. 2009 Rural Electric Power Conference = Rur Elec P 2009 Rural Electric Power Conference = Rur. Elec. P. 2009 Xxii Brazilian Symposium On Computer Graphics and Image Processing (sibgrapi 2009) = Sibgrapi 2009 Xxii Brazilian Symposium On Computer Graphics and Image Processing (sibgrapi 2009) = Sibgrapi. 200 Years of British Hydrogeology = Geol Soc Spec Publ 200 Years of British Hydrogeology = Geol. Soc. Spec. Publ. 2010 12th Ieee Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems = Intersoc C Thermal T 2010 12th Ieee Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems = Intersoc. C. Thermal T. 2010 15th Asia and South Pacific Design Automation Conference (asp-dac 2010) = Asia S Pacif Des Aut 2010 15th Asia and South Pacific Design Automation Conference (asp-dac 2010) = Asia S. Pacif. Des. Aut. 2010 18th Biennial University/government/industry Micro-nano Symposium = U Gov Ind Micro Nano 2010 18th Biennial University/government/industry Micro-nano Symposium = U. Gov. Ind. Micro. Nano. 2010 22nd International Conference On Indium Phosphide and Related Materials (iprm) = Conf P Indium Phosph 2010 22nd International Conference On Indium Phosphide and Related Materials (iprm) = Conf. P. Indium Phosph. 2010 22nd International Symposium On Power Semiconductor Devices and Ics (ispsd) = Proc Int Symp Power 2010 22nd International Symposium On Power Semiconductor Devices and Ics (ispsd) = Proc. Int. Symp. Power 2010 23rd Canadian Conference On Electrical and Computer Engineering (ccece) = Can Con El Comp En 2010 23rd Canadian Conference On Electrical and Computer Engineering (ccece) = Can. Con. El. Comp. En. 2010 29th Ieee International Symposium On Reliable Distributed Systems Srds 2010 = Sym Rel Dist Syst 2010 29th Ieee International Symposium On Reliable Distributed Systems Srds 2010 = Sym. Rel. Dist. Syst. 2010 42nd Southeastern Symposium On System Theory (ssst) = Se Sym Sys Thry 2010 42nd Southeastern Symposium On System Theory (ssst) = Se. Sym. Sys. Thry. 2010 7th Ieee Consumer Communications and Networking Conference-ccnc 2010 = Consum Comm Network 2010 7th Ieee Consumer Communications and Networking Conference-ccnc 2010 = Consum. Comm. Network. 2010 7th Ieee International Symposium On Biomedical Imaging: From Nano to Macro = I S Biomed Imaging 2010 7th Ieee International Symposium On Biomedical Imaging: From Nano to Macro = I. S. Biomed. Imaging. 2010 American Control Conference = P Amer Contr Conf 2010 American Control Conference = P. Amer. Contr. Conf. 2010 Annual International Conference of The Ieee Engineering in Medicine and Biology Society (embc) = Ieee Eng Med Bio 2010 Annual International Conference of The Ieee Engineering in Medicine and Biology Society (embc) = Ieee Eng. Med. Bio. 2010 Digest of Technical Papers International Conference On Consumer Electronics Icce = Ieee Icce 2010 Digest of Technical Papers International Conference On Consumer Electronics Icce = Ieee. Icce 2010 European Microwave Integrated Circuits Conference (eumic) = Eur Microw Integrat 2010 European Microwave Integrated Circuits Conference (eumic) = Eur. Microw. Integrat. 2010 Ieee 26th Symposium On Mass Storage Systems and Technologies (msst) = Ieee Sym Mass Stor 2010 Ieee 26th Symposium On Mass Storage Systems and Technologies (msst) = Ieee Sym. Mass Stor. 2010 Ieee 29th International Performance Computing and Communications Conference (ipccc) = Ieee Ipccc 2010 Ieee 29th International Performance Computing and Communications Conference (ipccc) = Ieee Ipccc. 2010 Ieee 36th Annual Northeast Bioengineering Conference = Northeast Bioengin C 2010 Ieee 36th Annual Northeast Bioengineering Conference = Northeast Bioengin. C. 2010 Ieee 51st Annual Symposium On Foundations of Computer Science = Ann Ieee Symp Found 2010 Ieee 51st Annual Symposium On Foundations of Computer Science = Ann. Ieee Symp. Found. 2010 Ieee 71st Vehicular Technology Conference = Veh Technol Confe 2010 Ieee 71st Vehicular Technology Conference = Veh. Technol. Confe. 2010 Ieee 72nd Vehicular Technology Conference Fall = Ieee Vts Veh Technol 2010 Ieee 72nd Vehicular Technology Conference Fall = Ieee Vts. Veh. Technol. 2010 Ieee and Acm International Conference On Computer-aided Design (iccad) = Iccad-ieee Acm Int 2010 Ieee and Acm International Conference On Computer-aided Design (iccad) = Iccad-ieee. Acm Int. 2010 Ieee Antennas and Propagation Society International Symposium = Ieee Antennas Prop 2010 Ieee Antennas and Propagation Society International Symposium = Ieee Antennas Prop. 2010 Ieee Autotestcon = Ieee Autotestcon 2010 Ieee Bipolar/bicmos Circuits and Technology Meeting (bctm) = Bctm Proc 2010 Ieee Bipolar/bicmos Circuits and Technology Meeting (bctm) = Bctm. Proc. 2010 Ieee Compound Semiconductor Integrated Circuit Symposium (csics) = Comp Semicond Integr 2010 Ieee Compound Semiconductor Integrated Circuit Symposium (csics) = Comp. Semicond. Integr. 2010 Ieee Conference On Computer Vision and Pattern Recognition (cvpr) = Proc Cvpr Ieee 2010 Ieee Conference On Computer Vision and Pattern Recognition (cvpr) = Proc. Cvpr. Ieee 2010 Ieee Congress On Evolutionary Computation (cec) = Ieee C Evol Computat 2010 Ieee Congress On Evolutionary Computation (cec) = Ieee C. Evol. Computat. 2010 Ieee Frontiers in Education Conference (fie) = Proc Front Educ Conf 2010 Ieee Frontiers in Education Conference (fie) = Proc. Front. Educ. Conf. 2010 Ieee Global Telecommunications Conference Globecom 2010 = Glob Telecomm Conf 2010 Ieee Global Telecommunications Conference Globecom 2010 = Glob. Telecomm. Conf. 2010 Ieee-ias/pca 52nd Cement Industry Technical Conference = Ieee Cem Ind Tech Co 2010 Ieee-ias/pca 52nd Cement Industry Technical Conference = Ieee. Cem. Ind. Tech. Co. 2010 Ieee-ifip International Conference On Dependable Systems and Networks Dsn = I C Depend Sys Netwo 2010 Ieee-ifip International Conference On Dependable Systems and Networks Dsn = I. C. Depend. Sys. Netwo. 2010 Ieee Industrial and Commercial Power Systems Technical Conference = Ind Commer Power 2010 Ieee Industrial and Commercial Power Systems Technical Conference = Ind. Commer. Power 2010 Ieee Industry Applications Society Annual Meeting = Ieee Ind Applic Soc 2010 Ieee Industry Applications Society Annual Meeting = Ieee Ind. Applic. Soc. 2010 Ieee International Conference On Acoustics, Speech, and Signal Processing = Int Conf Acoust Spee 2010 Ieee International Conference On Acoustics, Speech, and Signal Processing = Int. Conf. Acoust. Spee. 2010 Ieee International Conference On Communications - Icc 2010 = Ieee Icc 2010 Ieee International Conference On Communications = Ieee Icc 2010 Ieee International Conference On Communications = Ieee Icc. 2010 Ieee International Conference On Computer Design = Pr Ieee Comp Design 2010 Ieee International Conference On Computer Design = Pr. Ieee Comp. Design 2010 Ieee International Conference On Control Applications = Ieee Intl Conf Contr 2010 Ieee International Conference On Control Applications = Ieee Intl. Conf. Contr. 2010 Ieee International Conference On Fuzzy Systems (fuzz-ieee 2010) = Ieee Int Conf Fuzzy 2010 Ieee International Conference On Fuzzy Systems (fuzz-ieee 2010) = Ieee Int. Conf. Fuzzy 2010 Ieee International Conference On Image Processing = Ieee Image Proc 2010 Ieee International Conference On Image Processing = Ieee Image Proc. 2010 Ieee International Conference On Multimedia and Expo (icme 2010) = Ieee Int Con Multi 2010 Ieee International Conference On Multimedia and Expo (icme 2010) = Ieee Int. Con. Multi. 2010 Ieee International Conference On Robotics and Automation (icra) = Ieee Int Conf Robot 2010 Ieee International Conference On Robotics and Automation (icra) = Ieee Int. Conf. Robot. 2010 Ieee International Conference On Software Maintenance = Proc Ieee Int Conf S 2010 Ieee International Conference On Software Maintenance = Proc. Ieee Int. Conf. S. 2010 Ieee International Conference On Systems, Man and Cybernetics (smc 2010) = Ieee Sys Man Cybern 2010 Ieee International Conference On Systems, Man and Cybernetics (smc 2010) = Ieee Sys. Man Cybern. 2010 Ieee International Frequency Control Symposium (fcs) = P Ieee Int Freq Cont 2010 Ieee International Frequency Control Symposium (fcs) = P. Ieee Int. Freq. Cont. 2010 Ieee International Geoscience and Remote Sensing Symposium = Int Geosci Remote Se 2010 Ieee International Geoscience and Remote Sensing Symposium = Int. Geosci. Remote Se. 2010 Ieee International Instrumentation and Measurement Technology Conference I2mtc 2010, Proceedings = Ieee Imtc P 2010 Ieee International Instrumentation and Measurement Technology Conference I2mtc 2010, Proceedings = Ieee Imtc. P. 2010 Ieee International Professional Communication Conference = Int Pro Com 2010 Ieee International Professional Communication Conference = Int. Pro. Com. 2010 Ieee International Soi Conference = Ieee Int Soi Conf 2010 Ieee International Soi Conference = Ieee Int. Soi Conf. 2010 Ieee International Symposium On Circuits and Systems = Ieee Int Symp Circ S 2010 Ieee International Symposium On Circuits and Systems = Ieee Int. Symp. Circ. S. 2010 Ieee International Symposium On Information Theory = Ieee Int Symp Info 2010 Ieee International Symposium On Information Theory = Ieee Int. Symp. Info. 2010 Ieee International Symposium On Intelligent Control = Ieee Int Symp Intell 2010 Ieee International Symposium On Intelligent Control = Ieee Int. Symp. Intell. 2010 Ieee International Symposium On The Applications of Ferroelectrics (isaf) = Ieee Int Ferro 2010 Ieee International Symposium On The Applications of Ferroelectrics (isaf) = Ieee Int. Ferro. 2010 Ieee-ion Position Location and Navigation Symposium Plans = Ieee Position Locat 2010 Ieee-ion Position Location and Navigation Symposium Plans = Ieee. Position Locat. 2010 Ieee Mtt-s International Microwave Symposium Digest (mtt) = Ieee Mtt S Int Micr 2010 Ieee Mtt-s International Microwave Symposium Digest (mtt) = Ieee Mtt. S. Int. Micr. 2010 Ieee Radar Conference = Ieee Natl Radar Conf 2010 Ieee Radar Conference = Ieee Natl. Radar Conf. 2010 Ieee Radio Frequency Integrated Circuits Rfic Symposium = Ieee Rad Freq Integr 2010 Ieee Radio Frequency Integrated Circuits Rfic Symposium = Ieee Rad. Freq. Integr. 2010 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc Proc 2010 Ieee/semi Advanced Semiconductor Manufacturing Conference = Asmc. Proc. 2010 Ieee Sensors = Ieee Sensor 2010 Ieee Sensors = Ieee Sensor. 2010 Ieee Symposium On Security and Privacy = P Ieee S Secur Priv 2010 Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. 2010 International Conference On Display and Photonics = P Soc Photo-opt Ins 2010 International Conference On Display and Photonics = P. Soc. Photo-opt. Ins. 2010 International Conference On Distributed Computing Systems Icdcs 2010 = Int Con Distr Comp S 2010 International Conference On Distributed Computing Systems Icdcs 2010 = Int. Con. Distr. Comp. S. 2010 International Conference On Microelectronics = Int C Microelectron 2010 International Conference On Microelectronics = Int. C. Microelectron. 2010 International Conference On Microelectronic Test Structures, 23rd Ieee Icmts Conference Proceedings = Ieee Int C Microelec 2010 International Conference On Microelectronic Test Structures, 23rd Ieee Icmts Conference Proceedings = Ieee Int. C. Microelec. 2010 International Conference On Mine Hazards Prevention and Control = Adv Intel Sys Res 2010 International Conference On Mine Hazards Prevention and Control = Adv. Intel. Sys. Res. 2010 International Electron Devices Meeting - Technical Digest = Int El Devices Meet 2010 International Electron Devices Meeting - Technical Digest = Int. El. Devices Meet. 2010 International Joint Conference On Neural Networks Ijcnn 2010 = Ieee Ijcnn 2010 International Joint Conference On Neural Networks Ijcnn 2010 = Ieee. Ijcnn 2010 International Reliability Physics Symposium = Int Rel Phy 2010 International Reliability Physics Symposium = Int. Rel. Phy. 2010 Journal of The Association of Asphalt Paving Technologists = J Assoc Asphalt Pav 2010 Journal of The Association of Asphalt Paving Technologists = J. Assoc. Asphalt Pav. 2010 Physics Education Research Conference = Aip Conf Proc 2010 Physics Education Research Conference = Aip. Conf. Proc. 2010 Proceedings 60th Electronic Components and Technology Conference (ectc) = Elec Comp C 2010 Proceedings 60th Electronic Components and Technology Conference (ectc) = Elec. Comp. C. 2010 Proceedings Ieee Infocom = Ieee Infocom Ser 2010 Proceedings Ieee Infocom = Ieee Infocom Ser. 2010 Record of Conference Papers Industry Applications Society 57th Annual Petroleum and Chemical Industry Conference Pcic = Record Conf Pap Petr 2010 Record of Conference Papers Industry Applications Society 57th Annual Petroleum and Chemical Industry Conference Pcic = Record Conf. Pap. Petr. 2010 Rural Electric Power Conference = Rur Elec P 2010 Rural Electric Power Conference = Rur. Elec. P. 2010 Second International Conference On Computer Engineering and Applications: Iccea 2010, Proceedings, Vol 1 = Int C Comput Eng App 2010 Second International Conference On Computer Engineering and Applications: Iccea 2010, Proceedings, Vol 1 = Int. C. Comput. Eng. App. 2010 Second International Conference On Computer Engineering and Applications: Iccea 2010, Proceedings, Vol 2 = Int C Comput Eng App 2010 Second International Conference On Computer Engineering and Applications: Iccea 2010, Proceedings, Vol 2 = Int. C. Comput. Eng. App. 2010 Symposium On Security Detection and Information Processing = Procedia Engineer 2010 Symposium On Security Detection and Information Processing = Procedia. Engineer. 2010 Symposium On Vlsi Circuits, Digest of Technical Papers = Symp Vlsi Circuits 2010 Symposium On Vlsi Circuits, Digest of Technical Papers = Symp. Vlsi Circuits. 2010 Symposium On Vlsi Technology, Digest of Technical Papers = S Vlsi Tech 2010 Symposium On Vlsi Technology, Digest of Technical Papers = S. Vlsi Tech. 2010 Twenty-fifth Annual Ieee Applied Power Electronics Conference and Exposition (apec) = Appl Power Elect Co 2010 Twenty-fifth Annual Ieee Applied Power Electronics Conference and Exposition (apec) = Appl. Power Elect. Co. 2010 Wide Bandgap Cubic Semiconductors: From Growth to Devices = Aip Conf Proc 2010 Wide Bandgap Cubic Semiconductors: From Growth to Devices = Aip. Conf. Proc. 2011 Ieee International Conference On Microelectronic Test Structures (icmts) = Ieee Int C Microelec 2011 Ieee International Conference On Microelectronic Test Structures (icmts) = Ieee Int. C. Microelec. 2011 Ieee Rural Electric Power Conference (repc) = Rur Elec P 2011 Ieee Rural Electric Power Conference (repc) = Rur. Elec. P. 2011 International Symposium On Computational Models for Life Sciences (cmls-11) = Aip Conf Proc 2011 International Symposium On Computational Models for Life Sciences (cmls-11) = Aip. Conf. Proc. 20 21 = 20 21 20 century British history = 20 Century Br Hist 20th Anniversary - Geothermal Resources Council = Geoth Res T 20th Anniversary - Geothermal Resources Council = Geoth. Res. T. 20th Anniversary Ieee International Soc Conference, Proceedings = Ieee Int Soc Conf 20th Anniversary Ieee International Soc Conference, Proceedings = Ieee Int. Soc Conf. 20th Annual Bacus Symposium On Photomask Technology = Proc Spie 20th Annual Bacus Symposium On Photomask Technology = Proc. Spie. 20th Annual Bacus Symposium On Photomask Technology = P Soc Photo-opt Ins 20th Annual Bacus Symposium On Photomask Technology = P. Soc. Photo-opt. Ins. 20th Annual International Symposium On Computer Architecture : Proceedings = Conf Proc Int Symp C 20th Annual International Symposium On Computer Architecture : Proceedings = Conf. Proc. Int. Symp. C. 20th Conference On Software Engineering Education & Training, Proceedings = Conf Softw Eng Educ 20th Conference On Software Engineering Education & Training, Proceedings = Conf. Softw. Eng. Educ. 20th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P Soc Photo-opt Ins 20th European Conference On Mask Technology for Integrated Circuits and Microcomponents = P. Soc. Photo-opt. Ins. 20th European Symposium On Computer Aided Process Engineering = Comput-aided Chem En 20th European Symposium On Computer Aided Process Engineering = Comput-aided. Chem. En. 20th Ieee/11th Nasa Goddard Conference On Mass Storage and Technologies (msst 2003), Proceedings = Ieee S Mass Stor Sys 20th Ieee/11th Nasa Goddard Conference On Mass Storage and Technologies (msst 2003), Proceedings = Ieee. S. Mass Stor. Sys. 20th Ieee International Conference On Software Maintenance, Proceedings = Proc Ieee Int Conf S 20th Ieee International Conference On Software Maintenance, Proceedings = Proc. Ieee Int. Conf. S. 20th Ieee International Conference On Tools With Artificial Intelligence, Vol 1, Proceedings = Proc Int C Tools Art 20th Ieee International Conference On Tools With Artificial Intelligence, Vol 1, Proceedings = Proc. Int. C. Tools Art. 20th Ieee International Conference On Tools With Artificial Intelligence, Vol 2, Proceedings = Proc Int C Tools Art 20th Ieee International Conference On Tools With Artificial Intelligence, Vol 2, Proceedings = Proc. Int. C. Tools Art. 20th Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst 20th Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. 20th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 20th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 20th International Conference On Data Engineering, Proceedings = Proc Int Conf Data 20th International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data 20th International Conference On Spectral Line Shapes = Aip Conf Proc 20th International Conference On Spectral Line Shapes = Aip. Conf. Proc. 20th International Conference On Vlsi Design, Proceedings = I Conf Vlsi Design 20th International Conference On Vlsi Design, Proceedings = I. Conf. Vlsi Design. 20th International Congress On High-speed Photography and Photonics, Pts 1 and 2 = P Soc Photo-opt Ins 20th International Congress On High-speed Photography and Photonics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 20th International Symposium On Computer Architecture and High Performance Computing, Proceedings = Int Sym Comp Archit 20th International Symposium On Computer Architecture and High Performance Computing, Proceedings = Int. Sym. Comp. Archit. 21st Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P Soc Photo-opt Ins 21st Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 21st Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 21st Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 21st Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 21st Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 21st Application of The Computers and Operations Research in The Mineral Industry = Appl Comp O 21st Application of The Computers and Operations Research in The Mineral Industry = Appl. Comp. O. 21st Century Dissent: Anarchism, Anti-globalization and Environmentalism = Int Polit Econ Ser 21st Century Dissent: Anarchism, Anti-globalization and Environmentalism = Int. Polit. Econ. Ser. 21st Century Imaging = Quintessent Dent Pra 21st Century Imaging = Quintessent. Dent. Pra. 21st Century Keynesian Economics = Int Pap Polit Econ 21st Century Keynesian Economics = Int. Pap. Polit. Econ. 21st Century Literacy: If We Are Scripted, Are We Literate = Explor Educ Purp 21st Century Literacy: If We Are Scripted, Are We Literate = Explor. Educ. Purp. 21st century science & technology = 21st Century Sci Technol 21st Conference On Software Engineering Education and Training, Proceedings = Conf Softw Eng Educ 21st Conference On Software Engineering Education and Training, Proceedings = Conf. Softw. Eng. Educ. 21st Congress of The Iabs On Progress in Animal Retroviruses = Dev Biologicals 21st Congress of The Iabs On Progress in Animal Retroviruses = Dev. Biologicals. 21st European Symposium On Computer Aided Process Engineering = Comput-aided Chem En 21st European Symposium On Computer Aided Process Engineering = Comput-aided. Chem. En. 21st Ieee Conference On Local Computer Networks, Proceedings = C Local Comput Netw 21st Ieee Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. 21st Ieee Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne 21st Ieee Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. 21st Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 21st Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 21st Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst 21st Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. 21st Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 21st Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 21st International Conference On Computer Design, Proceedings = Pr Ieee Comp Design 21st International Conference On Computer Design, Proceedings = Pr. Ieee. Comp. Design. 21st International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 21st International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 21st International Conference On Optical Fiber Sensors = Proc Spie 21st International Conference On Optical Fiber Sensors = Proc. Spie. 21st International Conference On Vlsi Design: Held Jointly With The 7th International Conference On Embedded Systems, Proceedings = I Conf Vlsi Design 21st International Conference On Vlsi Design: Held Jointly With The 7th International Conference On Embedded Systems, Proceedings = I. Conf. Vlsi Design. 21st International Congress On High-speed Photography and Photonics = P Soc Photo-opt Ins 21st International Congress On High-speed Photography and Photonics = P. Soc. Photo-opt. Ins. 22nd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = Proc Spie 22nd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = Proc. Spie. 22nd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P Soc Photo-opt Ins 22nd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 22nd Annual Computer Security Applications Conference, Proceedings = Ann Comput Security 22nd Annual Computer Security Applications Conference, Proceedings = Ann. Comput. Security 22nd Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: A = Ceram Eng Sci Proc 22nd Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: A = Ceram. Eng. Sci. Proc. 22nd Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: B = Ceram Eng Sci Proc 22nd Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: B = Ceram. Eng. Sci. Proc. 22nd Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 22nd Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 22nd Annual International Symposium On Computer Architecture, Proceedings = Acm Comp Ar 22nd Annual International Symposium On Computer Architecture, Proceedings = Acm. Comp. Ar. 22nd Conference of The European Colloid and Interface Society, Ecis 2008 = Procedia Chem 22nd Conference of The European Colloid and Interface Society, Ecis 2008 = Procedia. Chem. 22nd Conference On Software Engineering Education and Training, Proceedings = Conf Softw Eng Educ 22nd Conference On Software Engineering Education and Training, Proceedings = Conf. Softw. Eng. Educ. 22nd Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 22nd Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 22nd International Conference On Atomic Physics = J Phys Conf Ser 22nd International Conference On Atomic Physics = J. Phys. Conf. Ser. 22nd International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 22nd International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 22nd International Conference On Tools With Artificial Intelligence (ictai 2010), Proceedings, Vol 1 = Proc Int C Tools Art 22nd International Conference On Tools With Artificial Intelligence (ictai 2010), Proceedings, Vol 1 = Proc. Int. C. Tools Art. 22nd International Conference On Tools With Artificial Intelligence (ictai 2010), Proceedings, Vol 2 = Proc Int C Tools Art 22nd International Conference On Tools With Artificial Intelligence (ictai 2010), Proceedings, Vol 2 = Proc. Int. C. Tools Art. 22nd International Conference On Vlsi Design Held Jointly With 8th International Conference On Embedded Systems, Proceedings = I Conf Vlsi Design 22nd International Conference On Vlsi Design Held Jointly With 8th International Conference On Embedded Systems, Proceedings = I. Conf. Vlsi Design 22nd International Congress On High-speed Photography and Photonics = P Soc Photo-opt Ins 22nd International Congress On High-speed Photography and Photonics = P. Soc. Photo-opt. Ins. 22nd International Laser Radar Conference (ilrc 2004), Vols 1 and 2 = Esa Spec Publ 22nd International Laser Radar Conference (ilrc 2004), Vols 1 and 2 = Esa. Spec. Publ. 22nd International Laser Radar Conference (ilrc 2004), Vols 1 and 2 = Esa Sp Publ 22nd International Laser Radar Conference (ilrc 2004), Vols 1 and 2 = Esa. Sp. Publ. 22nd International Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst 22nd International Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. 22nd International Water Services Congress and Exhibition = Water Supp 22nd International Water Services Congress and Exhibition = Water Supp. 23rd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = Proc Spie 23rd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = Proc. Spie. 23rd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P Soc Photo-opt Ins 23rd Annual Bacus Symposium On Photomask Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 23rd Euromicro Conference - New Frontiers of Information Technology, Proceedings = Euromicro Conf Proc 23rd Euromicro Conference - New Frontiers of Information Technology, Proceedings = Euromicro Conf. Proc. 23rd European Meeting On Atmospheric Studies By Optical Methods = P Soc Photo-opt Ins 23rd European Meeting On Atmospheric Studies By Optical Methods = P. Soc. Photo-opt. Ins. 23rd Ieee International Symposium On Defect and Fault-tolerance in Vlsi Systems, Proceedings = Int Sym Defec Fau To 23rd Ieee International Symposium On Defect and Fault-tolerance in Vlsi Systems, Proceedings = Int. Sym. Defec. Fau. To. 23rd Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst 23rd Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. 23rd Ieee Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 23rd Ieee Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 23rd Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 23rd Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 23rd International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 23rd International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 23rd International Congress On High-speed Photography and Photonics, Pt 1 = Proc Spie 23rd International Congress On High-speed Photography and Photonics, Pt 1 = Proc. Spie. 23rd International Congress On High-speed Photography and Photonics, Pt 1 = P Soc Photo-opt Ins 23rd International Congress On High-speed Photography and Photonics, Pt 1 = P. Soc. Photo-opt. Ins. 23rd International Sampe Technical Conference : Advanced Materials / Affordable Processes = Int Sampe Tech Conf 23rd International Sampe Technical Conference : Advanced Materials / Affordable Processes = Int. Sampe Tech. Conf. 23rd International Symposium On Controlled Release of Bioactive Materials, 1996 Proceedings = Crs Bui Nat 23rd International Symposium On Controlled Release of Bioactive Materials, 1996 Proceedings = Crs. Bui. Nat. 23rd National Symposium On Plasma Science and Technology (plasma-2008) = J Phys Conf Ser 23rd National Symposium On Plasma Science and Technology (plasma-2008) = J. Phys. Conf. Ser. 23rd Tall Timbers Fire Ecology Conference: Fire in Grassland and Shrubland Ecosystems = Tall Timb Fire Ecol 23rd Tall Timbers Fire Ecology Conference: Fire in Grassland and Shrubland Ecosystems = Tall Timb. Fire Ecol. 24th Aerospace Mechanisms Symposium = Nasa Conf P 24th Aerospace Mechanisms Symposium = Nasa. Conf. P. 24th Annual Bacus Symposium On Photomask Technology, Pt 1 and 2 = Proc Spie 24th Annual Bacus Symposium On Photomask Technology, Pt 1 and 2 = Proc. Spie. 24th Annual Bacus Symposium On Photomask Technology, Pt 1 and 2 = P Soc Photo-opt Ins 24th Annual Bacus Symposium On Photomask Technology, Pt 1 and 2 = P. Soc. Photo-opt. Ins. 24th Annual Computer Security Applications Conference, Proceedings = Ann Comput Security 24th Annual Computer Security Applications Conference, Proceedings = Ann. Comput. Security 24th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log 24th Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. 24th Annual International Computer Software and Applications Conference (cospsac 2000) = P Int Comp Softw App 24th Annual International Computer Software and Applications Conference (cospsac 2000) = P. Int. Comp. Softw. App. 24th Annual International Symposium On Computer Architecture, Conference Proceedings = Acm Comp Ar 24th Annual International Symposium On Computer Architecture, Conference Proceedings = Acm. Comp. Ar. 24th Annual Symposium of The Society of Flight Test Engineers, Proceedings = Proc Ann Symp Sfte 24th Annual Symposium of The Society of Flight Test Engineers, Proceedings = Proc. Ann. Symp. Sfte. 24th Euromicro Conference - Proceeding, Vols 1 and 2 = Euromicro Conf Proc 24th Euromicro Conference - Proceeding, Vols 1 and 2 = Euromicro Conf. Proc. 24th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 24th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 24th International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 24th International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 24th International Congress On High-speed Photography and Photonics = Proc Spie 24th International Congress On High-speed Photography and Photonics = Proc. Spie. 24th International Congress On High-speed Photography and Photonics = P Soc Photo-opt Ins 24th International Congress On High-speed Photography and Photonics = P. Soc. Photo-opt. Ins. 24th Summer School and International Symposium On The Physics of Ionized Gases, Contributed Papers = Pub Astro Obs Belgr 24th Summer School and International Symposium On The Physics of Ionized Gases, Contributed Papers = Pub. Astro. Obs. Belgr. 24th Summer School and International Symposium On The Physics of Ionized Gases = J Phys Conf Ser 24th Summer School and International Symposium On The Physics of Ionized Gases = J. Phys. Conf. Ser. 25th Aerospace Mechanisms Symposium = Nasa Conf P 25th Aerospace Mechanisms Symposium = Nasa. Conf. P. 25th Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: A = Ceram Eng Sci Proc 25th Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: A = Ceram. Eng. Sci. Proc. 25th Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: B = Ceram Eng Sci Proc 25th Annual Conference On Composites, Advanced Ceramics, Materials, and Structures: B = Ceram. Eng. Sci. Proc. 25th Annual Ieee Conference On Computational Complexity - Ccc 2010 = Ann Ieee Conf Comput 25th Annual Ieee Conference On Computational Complexity - Ccc 2010 = Ann. Ieee Conf. Comput. 25th Annual Ieee Conference On Local Computer Networks - Proceedings = C Local Comput Netw 25th Annual Ieee Conference On Local Computer Networks - Proceedings = C. Local Comput. Netw. 25th Annual Ieee Conference On Local Computer Networks - Proceedings = Conf Local Comput Ne 25th Annual Ieee Conference On Local Computer Networks - Proceedings = Conf. Local Comput. Ne. 25th Annual Ieee Symposium On Logic in Computer Science (lics 2010) = Ieee S Log 25th Annual Ieee Symposium On Logic in Computer Science (lics 2010) = Ieee S. Log. 25th Annual International Computer Software & Applications Conference = P Int Comp Softw App 25th Annual International Computer Software & Applications Conference = P. Int. Comp. Softw. App. 25th Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 25th Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 25th Annual Simulation Symposium : Proceedings = Proc Annu Simul Symp 25th Annual Simulation Symposium : Proceedings = Proc. Annu. Simul. Symp. 25th Ieee International Conference On Computer Communications, Vols 1-7, Proceedings Ieee Infocom 2006 = Ieee Infocom Ser 25th Ieee International Conference On Computer Communications, Vols 1-7, Proceedings Ieee Infocom 2006 = Ieee Infocom Ser. 25th Ieee International Conference On Distributed Computing Systems, Proceedings = Int Con Distr Comp S 25th Ieee International Conference On Distributed Computing Systems, Proceedings = Int. Con. Distr. Comp. S. 25th Ieee International Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 25th Ieee International Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 25th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 25th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 25th International Conference On Low Temperature Physics (lt25), Part 1 = J Phys Conf Ser 25th International Conference On Low Temperature Physics (lt25), Part 1 = J. Phys. Conf. Ser. 25th International Conference On Low Temperature Physics (lt25), Part 2 = J Phys Conf Ser 25th International Conference On Low Temperature Physics (lt25), Part 2 = J. Phys. Conf. Ser. 25th International Conference On Low Temperature Physics (lt25), Part 3 = J Phys Conf Ser 25th International Conference On Low Temperature Physics (lt25), Part 3 = J. Phys. Conf. Ser. 25th International Conference On Low Temperature Physics (lt25), Part 4 = J Phys Conf Ser 25th International Conference On Low Temperature Physics (lt25), Part 4 = J. Phys. Conf. Ser. 25th International Conference On Low Temperature Physics (lt25), Part 5 = J Phys Conf Ser 25th International Conference On Low Temperature Physics (lt25), Part 5 = J. Phys. Conf. Ser. 25th International Conference On Software Engineering, Proceedings = Proc Int Conf Softw 25th International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. 25th International Congress On High-speed Photography and Photonics = Proc Spie 25th International Congress On High-speed Photography and Photonics = Proc. Spie. 25th International Congress On High-speed Photography and Photonics = P Soc Photo-opt Ins 25th International Congress On High-speed Photography and Photonics = P. Soc. Photo-opt. Ins. 25th Summer School and International Symposium On The Physics of Ionized Gases - Spig 2010 = J Phys Conf Ser 25th Summer School and International Symposium On The Physics of Ionized Gases - Spig 2010 = J. Phys. Conf. Ser. 25-year Perspective On Logic Programming: Achievements of The Italian Association for Logic Programming, Gulp = Lect Notes Comput Sc 25-year Perspective On Logic Programming: Achievements of The Italian Association for Logic Programming, Gulp = Lect. Notes. Comput. Sc. 25 Years of Model Checking: History, Achievements, Perspectives = Lect Notes Comput Sc 25 Years of Model Checking: History, Achievements, Perspectives = Lect. Notes. Comput. Sc. 25 Years of Non-equilibrium Statistical Mechanics = Lect Notes Phys 25 Years of Non-equilibrium Statistical Mechanics = Lect. Notes. Phys. 26th Acm/ieee Design Automation Conference = Acm Ieee D 26th Acm/ieee Design Automation Conference = Acm. Ieee. D. 26th Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2010 = P Ieee Semicond Ther 26th Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2010 = P. Ieee Semicond. Ther. 26th Annual International Computer Software and Applications Conference, Proceedings = P Int Comp Softw App 26th Annual International Computer Software and Applications Conference, Proceedings = P. Int. Comp. Softw. App. 26th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 26th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 26th European Mask and Lithography Conference = Proc Spie 26th European Mask and Lithography Conference = Proc. Spie. 26th European Mask and Lithography Conference = P Soc Photo-opt Ins 26th European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. 26th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp 26th Ieee Vlsi Test Symposium, Proceedings = Ieee Vlsi Test Symp. 26th International Conference On Data Engineering Icde 2010 = Proc Int Conf Data 26th International Conference On Data Engineering Icde 2010 = Proc. Int. Conf. Data 26th International Congress On High Speed Photography and Photonics = Proc Spie 26th International Congress On High Speed Photography and Photonics = Proc. Spie. 26th International Congress On High Speed Photography and Photonics = P Soc Photo-opt Ins 26th International Congress On High Speed Photography and Photonics = P. Soc. Photo-opt. Ins. 26th International Cosmic Ray Conference = Aip Conf Proc 26th International Cosmic Ray Conference = Aip. Conf. Proc. 27 Annual Conference : Water Management of River Systems and Symposium : Resource Development of The Lower Mississippi River = Am Wat Res 27 Annual Conference : Water Management of River Systems and Symposium : Resource Development of The Lower Mississippi River = Am. Wat. Res. 27th Annual Simulation Symp, Proceedings = Proc Annu Simul Symp 27th Annual Simulation Symp, Proceedings = Proc. Annu. Simul. Symp. 27th European Mask and Lithography Conference = P Soc Photo-opt Ins 27th European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. 27th Ieee Conference On Computer Communications (infocom), Vols 1-5 = Ieee Infocom Ser 27th Ieee Conference On Computer Communications (infocom), Vols 1-5 = Ieee Infocom. Ser. 27th Ieee International Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P 27th Ieee International Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. 27th International Cocoa Beach Conference On Advanced Ceramics and Composites: A = Ceram Eng Sci Proc 27th International Cocoa Beach Conference On Advanced Ceramics and Composites: A = Ceram. Eng. Sci. Proc. 27th International Cocoa Beach Conference On Advanced Ceramics and Composites: B = Ceram Eng Sci Proc 27th International Cocoa Beach Conference On Advanced Ceramics and Composites: B = Ceram. Eng. Sci. Proc. 27th International Congress On High Speed Photography and Photonics, Prts 1-3 = Proc Spie 27th International Congress On High Speed Photography and Photonics, Prts 1-3 = Proc. Spie. 27th International Congress On High Speed Photography and Photonics, Prts 1-3 = P Soc Photo-opt Ins 27th International Congress On High Speed Photography and Photonics, Prts 1-3 = P. Soc. Photo-opt. Ins. 27th International Symposium On Microelectronics = P Soc Photo-opt Ins 27th International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. 27th International Symposium On Multiple-valued Logic - 1997 Proceedings = Int Sym Mvl 27th International Symposium On Multiple-valued Logic - 1997 Proceedings = Int. Sym. Mvl. 28th Aipr Workshop: 3d Visualization for Data Exploration and Decision Making = P Soc Photo-opt Ins 28th Aipr Workshop: 3d Visualization for Data Exploration and Decision Making = P. Soc. Photo-opt. Ins. 28th Annual Conference of The Western Region Home Management Family Economics Educators = Pap Wrhmfee 28th Annual Conference of The Western Region Home Management Family Economics Educators = Pap. Wrhmfee. 28th Annual Frontiers in Education Conference - Conference Proceedings, Vols 1-3 = Proc Front Educ Conf 28th Annual Frontiers in Education Conference - Conference Proceedings, Vols 1-3 = Proc. Front. Educ. Conf. 28th Annual International Symposium On Computer Architecture, Proceedings = Acm Comp Ar 28th Annual International Symposium On Computer Architecture, Proceedings = Acm. Comp. Ar. 28th Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 28th Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 28th International Conference On Distributed Computing Systems, Vols 1 and 2, Proceedings = Int Con Distr Comp S 28th International Conference On Distributed Computing Systems, Vols 1 and 2, Proceedings = Int. Con. Distr. Comp. S. 28th International Congress On High-speed Imaging and Photonics = Proc Spie 28th International Congress On High-speed Imaging and Photonics = Proc. Spie. 28th International Congress On High-speed Imaging and Photonics = P Soc Photo-opt Ins 28th International Congress On High-speed Imaging and Photonics = P. Soc. Photo-opt. Ins. 29th Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 29th Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 29th Annual Proceedings : Reliability Physics 1991 = Int Rel Phy 29th Annual Proceedings : Reliability Physics 1991 = Int. Rel. Phy. 29th Digital Avionics Systems Conference: Improving Our Environment Through Green Avionics and Atm Solutions = Digit Avion Syst Con 29th Digital Avionics Systems Conference: Improving Our Environment Through Green Avionics and Atm Solutions = Digit. Avion. Syst. Con. 29th International Conference On Software Engineering: Icse 2007 Companion Volume, Proceedings = Proc Int Conf Softw 29th International Conference On Software Engineering: Icse 2007 Companion Volume, Proceedings = Proc. Int. Conf. Softw. 29th International Electronics Manufacturing Technology Symposium = Ieee/cpmt Int El Mfg 29th International Electronics Manufacturing Technology Symposium = Ieee/cpmt. Int. El. Mfg. 2nd Annual International Ieee-embs Special Topic Conference On Microtechnologies in Medicine & Biology, Proceedings = Eng Med Biol Soc Ann 2nd Annual International Ieee-embs Special Topic Conference On Microtechnologies in Medicine & Biology, Proceedings = Eng. Med. Biol. Soc. Ann. 2nd Arena Conference On The Astrophysical Science Cases At Dome C = Eas Publications 2nd Arena Conference On The Astrophysical Science Cases At Dome C = Eas. Publications. 2nd Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas Engn Educ Ser 2nd Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas. Engn. Educ. Ser. 2nd Austrian-hungarian Workshop On Transputer Applications = Kfki Prep R 2nd Austrian-hungarian Workshop On Transputer Applications = Kfki. Prep. R. 2nd Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 2nd Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 2nd Conference On Academic and Industrial Cooperation in Space Research = Esa Sp Publ 2nd Conference On Academic and Industrial Cooperation in Space Research = Esa. Sp. Publ. 2nd Crisis in Cosmology Conference, Ccc-2 = Astr Soc P 2nd Crisis in Cosmology Conference, Ccc-2 = Astr. Soc. P. 2nd Electronics Packaging Technology Conference, Proceedings = El Packag Tech Conf 2nd Electronics Packaging Technology Conference, Proceedings = El. Packag. Tech. Conf. 2nd European Fugitive Emissions Conference = Vdi Bericht 2nd European Fugitive Emissions Conference = Vdi. Bericht. 2nd European Symposium On Enzymes in Grain Processing, Esegp-2 = Vtt Symp 2nd European Symposium On Enzymes in Grain Processing, Esegp-2 = Vtt. Symp. 2nd European Symposium On Utilisation of The International Space Station = Esa Spec Publ 2nd European Symposium On Utilisation of The International Space Station = Esa. Spec. Publ. 2nd European Symposium On Utilisation of The International Space Station = Esa Sp Publ 2nd European Symposium On Utilisation of The International Space Station = Esa. Sp. Publ. 2nd Finnish-french Colloquium for Information Technology in Construction = Vtt Symp 2nd Finnish-french Colloquium for Information Technology in Construction = Vtt. Symp. 2nd Global Congress On Vaccines = Procedia Vaccinol 2nd Global Congress On Vaccines = Procedia. Vaccinol. 2nd International Conference On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = P Soc Photo-opt Ins 2nd International Conference On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = P. Soc. Photo-opt. Ins. 2nd International Conference On Advances in Nuclear Science and Engineering - Icanse 2009 = Aip Conf Proc 2nd International Conference On Advances in Nuclear Science and Engineering - Icanse 2009 = Aip. Conf. Proc. 2nd International Conference On Advances in Power System Control, Operation & Management, Vols 1 and 2 = Iee Conf Publ 2nd International Conference On Advances in Power System Control, Operation & Management, Vols 1 and 2 = Iee. Conf. Publ. 2nd International Conference On Process Intensification in Practice = Bhr Gr Conf Ser Publ 2nd International Conference On Process Intensification in Practice = Bhr. Gr. Conf. Ser. Publ. 2nd International Conference On Ultra-intense Laser Interaction Science = Aip Conf Proc 2nd International Conference On Ultra-intense Laser Interaction Science = Aip. Conf. Proc. 2nd International Conference On Waste Engineering Management, Icwem 2010 = Rilem Proc 2nd International Conference On Waste Engineering Management, Icwem 2010 = Rilem. Proc. 2nd International Rilem Workshop On Hydration and Setting = Rilem Proc 2nd International Rilem Workshop On Hydration and Setting = Rilem Proc. 2nd International Rilem Workshop On Testing and Modelling The Chloride Ingress Into Concrete = Rilem Proc 2nd International Rilem Workshop On Testing and Modelling The Chloride Ingress Into Concrete = Rilem Proc. 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = Proc Spie 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = Proc. Spie. 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P Soc Photo-opt Ins 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P. Soc. Photo-opt. Ins. 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Pts 1 and 2 = Proc Spie 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Pts 1 and 2 = Proc. Spie. 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Pts 1 and 2 = P Soc Photo-opt Ins 2nd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Pts 1 and 2 = P. Soc. Photo-opt. Ins. 2nd International Symposium On Aqua Science, Water Resource and Low Carbon Energy = Aip Conf Proc 2nd International Symposium On Aqua Science, Water Resource and Low Carbon Energy = Aip. Conf. Proc. 2nd International Symposium On Design, Performance and Use of Self-consolidating Concrete = Rilem Proc 2nd International Symposium On Design, Performance and Use of Self-consolidating Concrete = Rilem. Proc. 2nd International Workshop On Practical Applications of Computational Biology and Bioinformatics (iwpacbb 2008) = Adv Soft Comp 2nd International Workshop On Practical Applications of Computational Biology and Bioinformatics (iwpacbb 2008) = Adv. Soft. Comp. 2nd Iter International Summer School: Confinement = Aip Conf Proc 2nd Iter International Summer School: Confinement = Aip. Conf. Proc. 2nd North American Conference On Multiphase Technology = Bhr Gr Conf Ser Publ 2nd North American Conference On Multiphase Technology = Bhr. Gr. Conf. Ser. Publ. 2nd Radio Research Symposium = Esomar Publ 2nd Radio Research Symposium = Esomar. Publ. 2nd Uicee Annual Conference On Engineering Education Under The Theme: Networking in Engineering Education, Conference Proceedings = Monas Engn Educ Ser 2nd Uicee Annual Conference On Engineering Education Under The Theme: Networking in Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 2nd Workshop : Italian Research On Antarctic Atmosphere = Ital Phy So 2nd Workshop : Italian Research On Antarctic Atmosphere = Ital. Phy. So. 2nd Workshop On Specialty Optical Fibers and Their Applications Wsof-2 = Proc Spie 2nd Workshop On Specialty Optical Fibers and Their Applications Wsof-2 = Proc. Spie. 2nd Workshop On Specialty Optical Fibers and Their Applications Wsof-2 = P Soc Photo-opt Ins 2nd Workshop On Specialty Optical Fibers and Their Applications Wsof-2 = P. Soc. Photo-opt. Ins. 2nd World Congress On Superconductivity = Progr High Temp Supe 2nd World Congress On Superconductivity = Progr. High. Temp. Supe. 2nd World Water Congress: Drinking Water Treatment = Wa Sci Technol 2nd World Water Congress: Drinking Water Treatment = Wa. Sci. Technol. 2nd World Water Congress: Water and Health-microbiology, Monitoring and Disinfection = Wa Sci Technol 2nd World Water Congress: Water and Health-microbiology, Monitoring and Disinfection = Wa. Sci. Technol. 2nd World Water Congress: Water Distribution and Water Services Management = Wa Sci Technol 2nd World Water Congress: Water Distribution and Water Services Management = Wa. Sci. Technol. 2n Pollen Formation: 40 Cytological Mechanisms of Nuclear Meiotic Restitution = Bot Res Pract 2n Pollen Formation: 40 Cytological Mechanisms of Nuclear Meiotic Restitution = Bot. Res. Pract. 30th Annual Conference of The Western Region Home Management Family Economics Educators = Pap Wrhmfee 30th Annual Conference of The Western Region Home Management Family Economics Educators = Pap. Wrhmfee. 30th Annual International Computer Software and Applications Conference, Vol 1, Regular Papers/panels, Proceedings = P Int Comp Softw App 30th Annual International Computer Software and Applications Conference, Vol 1, Regular Papers/panels, Proceedings = P. Int. Comp. Softw. App. 30th Annual International Computer Software and Applications Conference, Vol 2, Short Papers/workshops/fast Abstracts/doctoral Symposium, Proceedings = P Int Comp Softw App 30th Annual International Computer Software and Applications Conference, Vol 2, Short Papers/workshops/fast Abstracts/doctoral Symposium, Proceedings = P. Int. Comp. Softw. App. 30th Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 30th Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 30th Annual Proceedings : Reliability Physics 1992 = Int Rel Phy 30th Annual Proceedings : Reliability Physics 1992 = Int. Rel. Phy. 30th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 30th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 30th Annual Symposium On Foundations of Computer Science = Ann Ieee Symp Found 30th Annual Symposium On Foundations of Computer Science = Ann. Ieee. Symp. Found. 30th Design Automation Conference : Proceedings 1993 = Acm Ieee D 30th Design Automation Conference : Proceedings 1993 = Acm. Ieee. D. 30th Ieee International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 30th Ieee International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 30th R3-nordic Contamination Control Symposium = Vtt Symp 30th R3-nordic Contamination Control Symposium = Vtt. Symp. 30 Years of Epidemiology for The Benefit of Occupational Health, Proceedings = People Work Res Rep 30 Years of Epidemiology for The Benefit of Occupational Health, Proceedings = People. Work. Res. Rep. 31st Annual International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 31st Annual International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 31st Annual Proceedings : Reliability Physics 1993 = Int Rel Phy 31st Annual Proceedings : Reliability Physics 1993 = Int. Rel. Phy. 31st Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 31st Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 31st Annual Symposium On Foundations of Computer Science, Vols 1 and 2 = Ann Ieee Symp Found 31st Annual Symposium On Foundations of Computer Science, Vols 1 and 2 = Ann. Ieee. Symp. Found. 31st Design Automation Conference - Proceedings 1994 = Acm Ieee D 31st Design Automation Conference - Proceedings 1994 = Acm. Ieee. D. 31st Eslab Symposium On Correlated Phenomena At The Sun, in The Heliosphere and in Geospace = Esa Spec Publ 31st Eslab Symposium On Correlated Phenomena At The Sun, in The Heliosphere and in Geospace = Esa. Spec. Publ. 31st Eslab Symposium On Correlated Phenomena At The Sun, in The Heliosphere and in Geospace = Esa Sp Publ 31st Eslab Symposium On Correlated Phenomena At The Sun, in The Heliosphere and in Geospace = Esa. Sp. Publ. 31st Ieee Conference On Local Computer Networks, Proceedings = C Local Comput Netw 31st Ieee Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. 31st Ieee Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne 31st Ieee Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. 31st Ieee Real-time Systems Symposium (rtss 2010) = Real Tim Syst Symp P 31st Ieee Real-time Systems Symposium (rtss 2010) = Real. Tim. Syst. Symp. P. 31st Ieee Software Engineering Workshop, Proceedings = Ieee Annu Softw Eng 31st Ieee Software Engineering Workshop, Proceedings = Ieee Annu. Softw. Eng. 31st International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 31st International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 32nd Annual Conference of The Canadian Nuclear Association : Proceedings = Can Nucl As 32nd Annual Conference of The Canadian Nuclear Association : Proceedings = Can. Nucl. As. 32nd Annual Conference of The Western Region Home Management Family Economics Educators, = Pap Wrhmfee 32nd Annual Conference of The Western Region Home Management Family Economics Educators, = Pap. Wrhmfee. 32nd Annual Ieee Software Engineering Workshop, Proceedings = Ieee Annu Softw Eng 32nd Annual Ieee Software Engineering Workshop, Proceedings = Ieee Annu. Softw. Eng. 32nd Annual International Symposium On Microarchitecture, (micro-32), Proceedings = Int Symp Microarch 32nd Annual International Symposium On Microarchitecture, (micro-32), Proceedings = Int. Symp. Microarch. 32nd Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 32nd Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 32nd Design Automation Conference, Proceedings 1995 = Des Aut Con 32nd Design Automation Conference, Proceedings 1995 = Des. Aut. Con. 32nd Euromicro Conference On Software Engineering and Advanced Applications (seaa) - Proceedings = Euromicro Conf Proc 32nd Euromicro Conference On Software Engineering and Advanced Applications (seaa) - Proceedings = Euromicro Conf. Proc. 32nd Ieee/cpmt International Electronic Manufacturing Technology Symposium = Ieee/cpmt Int El Mfg 32nd Ieee/cpmt International Electronic Manufacturing Technology Symposium = Ieee/cpmt Int. El. Mfg. 32nd International Symposium On Computer Architecture, Proceedings = Conf Proc Int Symp C 32nd International Symposium On Computer Architecture, Proceedings = Conf. Proc. Int. Symp. C. 32nd International Telecommunications Energy Conference (intelec) = Int Telecom Energy 32nd International Telecommunications Energy Conference (intelec) = Int. Telecom. Energy 33rd Annual Ieee/acm International Symposium On Microarchitecture: Micro-33 2000, Proceedings = Int Symp Microarch 33rd Annual Ieee/acm International Symposium On Microarchitecture: Micro-33 2000, Proceedings = Int. Symp. Microarch. 33rd Annual Meeting of The American Association of Cost Engineers = Trans Annu Meet Amer 33rd Annual Meeting of The American Association of Cost Engineers = Trans. Annu. Meet. Amer. 33rd Annual Symposium On Foundations of Computer Science : Proceedings = An S Fdn Co 33rd Annual Symposium On Foundations of Computer Science : Proceedings = An. S. Fdn. Co. 33rd Design Automation Conference, Proceedings 1996 = Des Aut Con 33rd Design Automation Conference, Proceedings 1996 = Des. Aut. Con. 33rd Eslab Symposium On Star Formation From The Small to The Large Scale = Esa Spec Publ 33rd Eslab Symposium On Star Formation From The Small to The Large Scale = Esa. Spec. Publ. 33rd Eslab Symposium On Star Formation From The Small to The Large Scale = Esa Sp Publ 33rd Eslab Symposium On Star Formation From The Small to The Large Scale = Esa. Sp. Publ. 33rd International Conference Proceedings : American Production and Inventory Control Society = Lib Am Prod 33rd International Conference Proceedings : American Production and Inventory Control Society = Lib. Am. Prod. 33rd International Symposium On Computer Archtiecture, Proceedings = Conf Proc Int Symp C 33rd International Symposium On Computer Archtiecture, Proceedings = Conf. Proc. Int. Symp. C. 33rd International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 33rd International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 34th Acm/ieee International Symposium On Microarchitecture, Micro-34, Proceedings = Int Symp Microarch 34th Acm/ieee International Symposium On Microarchitecture, Micro-34, Proceedings = Int. Symp. Microarch. 34th Annual Air Traffic Control Association Conference Proceedings = Atca Conf P 34th Annual Air Traffic Control Association Conference Proceedings = Atca. Conf. P. 34th Annual Meeting of The American Association of Cost Engineers = Trans Annu Meet Amer 34th Annual Meeting of The American Association of Cost Engineers = Trans. Annu. Meet. Amer. 34th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 34th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 34th Annual Symposium On Foundations of Computer Science: Proceedings = An S Fdn Co 34th Annual Symposium On Foundations of Computer Science: Proceedings = An. S. Fdn. Co. 34th International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 34th International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 34th Liege International Astrophysics Colloquium - The Next Generation Space Telescope Science Drivers and Technological Challenges = Esa Sp Publ 34th Liege International Astrophysics Colloquium - The Next Generation Space Telescope Science Drivers and Technological Challenges = Esa. Sp. Publ. 34th R3-nordic Contamination Control Symposium = Vtt Symp 34th R3-nordic Contamination Control Symposium = Vtt. Symp. 35th Annual Ieee/acm International Symposium On Microarchitecture (micro-35), Proceedings = Int Symp Microarch 35th Annual Ieee/acm International Symposium On Microarchitecture (micro-35), Proceedings = Int. Symp. Microarch. 35th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 35th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 35th Annual Symposium On Foundations of Computer Science, Proceedings = An S Fdn Co 35th Annual Symposium On Foundations of Computer Science, Proceedings = An. S. Fdn. Co. 35th Ieee Cement Industry Technical Conference : Record of Conference Papers = Ieee Cem Ind Tech Co 35th Ieee Cement Industry Technical Conference : Record of Conference Papers = Ieee Cem. Ind. Tech. Co. 35th Ieee Photovoltaic Specialists Conference = Ieee Phot Spec Conf 35th Ieee Photovoltaic Specialists Conference = Ieee Phot. Spec. Conf. 35th International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl 35th International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. 35 Vdi Jahrestagung Schadensanalyse:produktverbesserung Durch Schadensanalyse = Vdi Bericht 35 Vdi Jahrestagung Schadensanalyse:produktverbesserung Durch Schadensanalyse = Vdi Bericht. 35 Years of Chemical Sensors - An Honorary Symposium for Professor Jiri Janata's 70th Birthday Celebration = Ecs Transactions 35 Years of Chemical Sensors - An Honorary Symposium for Professor Jiri Janata's 70th Birthday Celebration = Ecs. Transactions. 35 Years of Fuzzy Set Theory: Celebratory Volume Dedicated to The Retirement of Etienne E. Kerre = Stud Fuzz Soft Comp 35 Years of Fuzzy Set Theory: Celebratory Volume Dedicated to The Retirement of Etienne E. Kerre = Stud. Fuzz. Soft. Comp. 36th Annual Frontiers in Education, Conference Program, Vols 1-4 = Proc Front Educ Conf 36th Annual Frontiers in Education, Conference Program, Vols 1-4 = Proc. Front. Educ. Conf. 36th Annual New Mexico Water Conference, Proceedings = Wrri Rep 36th Annual New Mexico Water Conference, Proceedings = Wrri. Rep. 36th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 36th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 36th Annual Symposium On Foundations of Computer Science, Proceedings = An S Fdn Co 36th Annual Symposium On Foundations of Computer Science, Proceedings = An. S. Fdn. Co. 36th International Sampe Symposium and Exhibition, Book 1 and 2 = Int Sampe Tech Conf 36th International Sampe Symposium and Exhibition, Book 1 and 2 = Int. Sampe Tech. Conf. 37th Annual Ieee/ifip International Conference On Dependable Systems and Networks, Proceedings = I C Depend Sys Netwo 37th Annual Ieee/ifip International Conference On Dependable Systems and Networks, Proceedings = I. C. Depend. Sys. Netwo. 37th Annual New Mexico Water Conference, Proceedings = Wrri Rep 37th Annual New Mexico Water Conference, Proceedings = Wrri. Rep. 37th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 37th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 37th Annual Symposium On Foundations of Computer Science, Proceedings = An S Fdn Co 37th Annual Symposium On Foundations of Computer Science, Proceedings = An. S. Fdn. Co. 37th Design Automation Conference, Proceedings 2000 = Des Aut Con 37th Design Automation Conference, Proceedings 2000 = Des. Aut. Con. 37th Mechanical Working and Steel Processing Conference Proceedings = Iss Mwsp Conf P 37th Mechanical Working and Steel Processing Conference Proceedings = Iss. Mwsp. Conf. P. 37th North American Power Symposium, Proceedings = North Amer Pow Symp 37th North American Power Symposium, Proceedings = North Amer. Pow. Symp. 37th R3-nordic Contamination Control Symposium = Vtt Symp 37th R3-nordic Contamination Control Symposium = Vtt. Symp. 38th Annual Air Traffic Control Association Convention Proceedings, Fall 1993 = Atca Conf P 38th Annual Air Traffic Control Association Convention Proceedings, Fall 1993 = Atca. Conf. P. 38th Annual New Mexico Water Conference, Proceedings = Wrri Rep 38th Annual New Mexico Water Conference, Proceedings = Wrri. Rep. 38th Annual Proceedings - Association for The Advancement of Automotive Medicine = P Ann C Ass 38th Annual Proceedings - Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. 38th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 38th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 38th Annual Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 38th Annual Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee. Symp. Found. 38th Design Automation Conference Proceedings 2001 = Des Aut Con 38th Design Automation Conference Proceedings 2001 = Des. Aut. Con. 38th Symposium On Physicochemical Problems of Mineral Processing = Sci P Inst Min Conf 38th Symposium On Physicochemical Problems of Mineral Processing = Sci. P. Inst. Min. Conf. 395th Wilhelm and Else Heraeus Seminar - Time Dependent Phenomena in Quantum Mechanics = J Phys Conf Ser 395th Wilhelm and Else Heraeus Seminar - Time Dependent Phenomena in Quantum Mechanics = J. Phys. Conf. Ser. 39th Annual 2005 International Carnahan Conference On Security Technology, Proceedings = Car C Secur 39th Annual 2005 International Carnahan Conference On Security Technology, Proceedings = Car. C. Secur. 39th Annual Proceedings - Association for The Advancement of Automotive Medicine = P Ann C Ass 39th Annual Proceedings - Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. 39th Annual Proceedings: International Reliability Physics Symposium 2001 = Int Rel Phy 39th Annual Proceedings: International Reliability Physics Symposium 2001 = Int. Rel. Phy. 39th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 39th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 39th Annual Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 39th Annual Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee. Symp. Found. 39th Design Automation Conference, Proceedings 2002 = Des Aut Con 39th Design Automation Conference, Proceedings 2002 = Des. Aut. Con. 3d and Hd Broadband Video Networking = Artech Hse Telecom S 3d and Hd Broadband Video Networking = Artech. Hse. Telecom. S. 3d Cell Culture: Methods and Protocols = Methods Mol Biol 3d Cell Culture: Methods and Protocols = Methods Mol. Biol. 3d Computer Vision: Efficient Methods and Applications = X Media Publ 3d Computer Vision: Efficient Methods and Applications = X. Media. Publ. 3-d Fibrous Assemblies = Woodhead Publ Text 3-d Fibrous Assemblies = Woodhead. Publ. Text. 3d Imaging for Safety and Security = Comp Imag Vis 3d Imaging for Safety and Security = Comp. Imag. Vis. 3d Imaging for Safety and Security = Comput Imaging Vis 3d Imaging for Safety and Security = Comput. Imaging Vis. 3d Imaging in Medicine = Nato Adv Sci I F-com 3d Imaging in Medicine = Nato. Adv. Sci. I. F-com. 3d Imaging: Theory, Technology and Applications = Comput Sci Tech Appl 3d Imaging: Theory, Technology and Applications = Comput. Sci. Tech. Appl. 3d Integration for Noc-based Soc Architectures = Integr Circuit Syst 3d Integration for Noc-based Soc Architectures = Integr. Circuit. Syst. 3d-position Tracking and Control for All-terrain Robots = Springer Trac Adv Ro 3d-position Tracking and Control for All-terrain Robots = Springer. Trac. Adv. Ro. 3d Robotic Mapping: The Simultaneous Localization and Mapping Problems With Six Degrees of Freedom = Springer Trac Adv Ro 3d Robotic Mapping: The Simultaneous Localization and Mapping Problems With Six Degrees of Freedom = Springer. Trac. Adv. Ro. 3d Stellar Evolution = Astr Soc P 3d Stellar Evolution = Astr. Soc. P. 3 K Cosmology = Aip Conf Proc 3 K Cosmology = Aip. Conf. Proc. 3rd Arena Conference On An Astronomical Observatory At Concordia (dome C, Antarctia) = Eas Publications 3rd Arena Conference On An Astronomical Observatory At Concordia (dome C, Antarctia) = Eas. Publications. 3rd Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas Engn Educ Ser 3rd Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas. Engn. Educ. Ser. 3rd Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 3rd Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 3rd European Conference On Satellite Communications = Iee Conf Publ 3rd European Conference On Satellite Communications = Iee. Conf. Publ. 3rd Iberoamerican Optics Meeting and 6th Latin American Meeting On Optics, Lasers, and Their Applications = P Soc Photo-opt Ins 3rd Iberoamerican Optics Meeting and 6th Latin American Meeting On Optics, Lasers, and Their Applications = P. Soc. Photo-opt. Ins. 3rd International Conference On Optical Information Processing = P Soc Photo-opt Ins 3rd International Conference On Optical Information Processing = P. Soc. Photo-opt. Ins. 3rd International Conference On Water and Waste Water Treatment = Bhr Gr Conf Ser Publ 3rd International Conference On Water and Waste Water Treatment = Bhr. Gr. Conf. Ser. Publ. 3rd International Conference On Water Pipeline Systems = Bhr Gr Conf Ser Publ 3rd International Conference On Water Pipeline Systems = Bhr. Gr. Conf. Ser. Publ. 3rd International Imeko-symposium On Laser Metrology for Precision Measurement and Inspection in Industry = Vdi Bericht 3rd International Imeko-symposium On Laser Metrology for Precision Measurement and Inspection in Industry = Vdi. Bericht. 3rd International Photonics and Optoelectronics Meetings (poem 2010) = J Phys Conf Ser 3rd International Photonics and Optoelectronics Meetings (poem 2010) = J. Phys. Conf. Ser. 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P Soc Photo-opt Ins 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P. Soc. Photo-opt. Ins. 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Parts 1-3 = Proc Spie 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Parts 1-3 = Proc. Spie. 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Parts 1-3 = P Soc Photo-opt Ins 3rd International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment, Parts 1-3 = P. Soc. Photo-opt. Ins. 3rd International Symposium On Shape Memory Materials for Smart Systems/e-mrs 2010 Spring Meeting = Physcs Proc 3rd International Symposium On Shape Memory Materials for Smart Systems/e-mrs 2010 Spring Meeting = Physcs. Proc. 3rd Kuala Lumpur International Conference On Biomedical Engineering 2006 = Ifmbe Proc 3rd Kuala Lumpur International Conference On Biomedical Engineering 2006 = Ifmbe. Proc. 3rd Mexico-korea Conference On Astrophysics: Telescopes of The Future and San Pedro Martir = Rev Mex Ast Astr 3rd Mexico-korea Conference On Astrophysics: Telescopes of The Future and San Pedro Martir = Rev. Mex. Ast. Astr. 3rd Symposium of Ubiquitous Computing and Ambient Intelligence 2008 = Adv Soft Comp 3rd Symposium of Ubiquitous Computing and Ambient Intelligence 2008 = Adv. Soft. Comp. 3rd Symposium On Large Tpcs for Low Energy Rare Event Detection = J Phys Conf Ser 3rd Symposium On Large Tpcs for Low Energy Rare Event Detection = J. Phys. Conf. Ser. 3rd Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 3rd Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 3rd Vaccine Global Congress, Singapore 2009 = Procedia Vaccinol 3rd Vaccine Global Congress, Singapore 2009 = Procedia. Vaccinol. 3rd Workshop : Italian Research On Antarctic Atmosphere = Ital Phy So 3rd Workshop : Italian Research On Antarctic Atmosphere = Ital. Phy. So. 3rd World Congress On Oxidation Catalysis = Stud Surf Sci Catal 3rd World Congress On Oxidation Catalysis = Stud. Surf. Sci. Catal. 3rd World Water Congress: Drinking Water Treatment = Wa Sci Technol 3rd World Water Congress: Drinking Water Treatment = Wa. Sci. Technol. 3rd World Water Congress: Efficient Water Supply and Water Reuse = Wa Sci Technol 3rd World Water Congress: Efficient Water Supply and Water Reuse = Wa. Sci. Technol. 3rd World Water Congress: Water Services Management, Operations and Monitoring = Wa Sci Technol 3rd World Water Congress: Water Services Management, Operations and Monitoring = Wa. Sci. Technol. 40th Annual Proceedings: International Reliability Physics Symposium = Int Rel Phy 40th Annual Proceedings: International Reliability Physics Symposium = Int. Rel. Phy. 40th Annual Simulation Symposium, Proceedings = Proc Annu Simul Symp 40th Annual Simulation Symposium, Proceedings = Proc. Annu. Simul. Symp. 40th Design Automation Conference, Proceedings 2003 = Des Aut Con 40th Design Automation Conference, Proceedings 2003 = Des. Aut. Con. 40th Ieee International Symposium On Multiple-valued Logic Ismvl 2010 = Int Sym Mvl 40th Ieee International Symposium On Multiple-valued Logic Ismvl 2010 = Int. Sym. Mvl. 40th Mechanical Working and Steel Processing Conference Proceedings, Vol Xxxvi = Iss Mwsp Conf P 40th Mechanical Working and Steel Processing Conference Proceedings, Vol Xxxvi = Iss. Mwsp. Conf. P. 40th Stapp Car Crash Conference Proceedings = Stapp Car C 40th Stapp Car Crash Conference Proceedings = Stapp Car C. 40 Years of Pulsars: Millisecond Pulsars, Magnetars and More = Aip Conf Proc 40 Years of Pulsars: Millisecond Pulsars, Magnetars and More = Aip. Conf. Proc. 41st Annual Ieee International Carnahan Conference On Security Technology, Proceedings = Car C Secur 41st Annual Ieee International Carnahan Conference On Security Technology, Proceedings = Car. C. Secur. 41st Annual Proceedings: International Reliability Physics Symposium = Int Rel Phy 41st Annual Proceedings: International Reliability Physics Symposium = Int. Rel. Phy. 41st Annual Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 41st Annual Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee. Symp. Found. 41st Design Automation Conference, Proceedings 2004 = Des Aut Con 41st Design Automation Conference, Proceedings 2004 = Des. Aut. Con. 41st Mechanical Working and Steel Processing Conference Proceedings, Vol 37 = Iss Mwsp Conf P 41st Mechanical Working and Steel Processing Conference Proceedings, Vol 37 = Iss. Mwsp. Conf. P. 42nd Annual Proceedings - Association for The Advancement of Automotive Medicine = P Ann C Ass 42nd Annual Proceedings - Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. 42nd Annual Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 42nd Annual Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee. Symp. Found. 42nd Design Automation Conference, Proceedings 2005 = Des Aut Con 42nd Design Automation Conference, Proceedings 2005 = Des. Aut. Con. 42nd Electronic Components & Technology Conference : 1992 Proceedings = P Electr C 42nd Electronic Components & Technology Conference : 1992 Proceedings = P. Electr. C. 42nd Mechanical Working and Steel Processing Conference Proceedings = Iss Mwsp Conf P 42nd Mechanical Working and Steel Processing Conference Proceedings = Iss. Mwsp. Conf. P. 43rd Annual Proceedings - Association for The Advancement of Automotive Medicine = P Ann C Ass 43rd Annual Proceedings - Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. 43rd Design Automation Conference, Proceedings 2006 = Des Aut Con 43rd Design Automation Conference, Proceedings 2006 = Des. Aut. Con. 43rd Electronic Components & Technology Conference : 1993 Proceedings = P Electr C 43rd Electronic Components & Technology Conference : 1993 Proceedings = P. Electr. C. 43rd Hawaii International Conference On Systems Sciences Vols 1-5 (hicss 2010) = P Ann Hicss 43rd Hawaii International Conference On Systems Sciences Vols 1-5 (hicss 2010) = P. Ann. Hicss. 43rd Mechanical Working and Steel Processing Conference Proceedings = Iss Mwsp Conf P 43rd Mechanical Working and Steel Processing Conference Proceedings = Iss. Mwsp. Conf. P. 44th Annual 2010 Ieee International Carnahan Conference On Security Technology = Int Carn Conf Secu 44th Annual 2010 Ieee International Carnahan Conference On Security Technology = Int. Carn. Conf. Secu. 44th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 44th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee Symp. Found. 44th Electronic Components & Technology Conference - 1994 Proceedings = P Electr C 44th Electronic Components & Technology Conference - 1994 Proceedings = P. Electr. C. 45th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 45th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee Symp. Found. 45th Electronic Components & Technology Conference - 1995 Proceedings = P Electr C 45th Electronic Components & Technology Conference - 1995 Proceedings = P. Electr. C. 46th Annual Air Traffic Control Association Conference Proceedings, Fall 2001 = Atca Conf P 46th Annual Air Traffic Control Association Conference Proceedings, Fall 2001 = Atca. Conf. P. 46th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 46th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee Symp. Found. 46th Electronic Components & Technology Conference - 1996 Proceedings = Elec Comp C 46th Electronic Components & Technology Conference - 1996 Proceedings = Elec. Comp. C. 46th International Symposium On Crop Protection, Proceedings, Vols 1-4 = Int S Crop 46th International Symposium On Crop Protection, Proceedings, Vols 1-4 = Int. S. Crop 47th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found 47th Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee Symp. Found. 47th Electronic Components & Technology Conference, 1997 Proceedings = P Electr C 47th Electronic Components & Technology Conference, 1997 Proceedings = P. Electr. C. 48th Electric Furnace Conference Proceedings = T Iss Aime 48th Electric Furnace Conference Proceedings = T. Iss. Aime. 48th Electronic Components & Technology Conference - 1998 Proceedings = P Electr C 48th Electronic Components & Technology Conference - 1998 Proceedings = P. Electr. C. 48th Ieee Vehicular Technology Conference, Vols 1-3 = Ieee Vtc P 48th Ieee Vehicular Technology Conference, Vols 1-3 = Ieee Vtc. P. 48th International Symposium On Crop Protection, Pts I-iv = Int S Crop 48th International Symposium On Crop Protection, Pts I-iv = Int. S. Crop 48th Ironmaking Conference Proceedings = Ironm Conf Proc 48th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 49th Electric Furnace Conference Proceedings = T Iss Aime 49th Electric Furnace Conference Proceedings = T. Iss. Aime. 49th Ironmaking Conference Proceedings = Ironm Conf Proc 49th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 4-d Framework of Continental Crust = Geol Soc Am Mem 4-d Framework of Continental Crust = Geol. Soc. Am. Mem. 4-hydroxyandrostenedione - A New Approach to Hormone-dependent Cancer = Roy Soc Med Int Cong 4-hydroxyandrostenedione - A New Approach to Hormone-dependent Cancer = Roy. Soc. Med. Int. Cong. 4or-a Quarterly Journal of Operations Research = 4or-q J Oper Res 4or-a Quarterly Journal of Operations Research = 4or-q. J. Oper. Res. 4th Asian Physics Symposium: An International Event = Aip Conf Proc 4th Asian Physics Symposium: An International Event = Aip. Conf. Proc. 4th Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas Engn Educ Ser 4th Asia-pacific Forum On Engineering and Technology Education, Forum Proceedings = Monas. Engn. Educ. Ser. 4th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 4th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 4th Bobigny Conference On Medical Responsibility and Expertise = Col Med Le 4th Bobigny Conference On Medical Responsibility and Expertise = Col. Med. Le. 4th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems and Tutorial On Modern and Robust Control: Theory, Tools and Applications = Esa Sp Publ 4th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems and Tutorial On Modern and Robust Control: Theory, Tools and Applications = Esa Sp. Publ. 4th European Symposium On Aerothermodynamics for Space Vehicles, Proceedings = Esa Spec Publ 4th European Symposium On Aerothermodynamics for Space Vehicles, Proceedings = Esa. Spec. Publ. 4th European Symposium On Aerothermodynamics for Space Vehicles, Proceedings = Esa Sp Publ 4th European Symposium On Aerothermodynamics for Space Vehicles, Proceedings = Esa. Sp. Publ. 4th European Workshop On Hot Structures and Thermal Protection Systems for Space Vehicles = Esa Spec Publ 4th European Workshop On Hot Structures and Thermal Protection Systems for Space Vehicles = Esa. Spec. Publ. 4th European Workshop On Hot Structures and Thermal Protection Systems for Space Vehicles = Esa Sp Publ 4th European Workshop On Hot Structures and Thermal Protection Systems for Space Vehicles = Esa. Sp. Publ. 4th Iberoamerican Meeting On Optics and 7th Latin American Meeting On Optics, Lasers, and Their Applications = Proc Spie 4th Iberoamerican Meeting On Optics and 7th Latin American Meeting On Optics, Lasers, and Their Applications = Proc. Spie. 4th Iberoamerican Meeting On Optics and 7th Latin American Meeting On Optics, Lasers, and Their Applications = P Soc Photo-opt Ins 4th Iberoamerican Meeting On Optics and 7th Latin American Meeting On Optics, Lasers, and Their Applications = P. Soc. Photo-opt. Ins. 4th International Conference - Non-destructive Testing of Works of Art = Dgzfp Ber 4th International Conference - Non-destructive Testing of Works of Art = Dgzfp. Ber. 4th International Conference Non-destructive Testing of Works of Art = Dgzfp Ber 4th International Conference Non-destructive Testing of Works of Art = Dgzfp. Ber. 4th International Conference On Bioreactor & Bioprocess Fluid Dynamics = Bhr Gr Conf Ser Publ 4th International Conference On Bioreactor & Bioprocess Fluid Dynamics = Bhr. Gr. Conf. Ser. Publ. 4th International Conference On Laser Probing - Lap 2008 = Aip Conf Proc 4th International Conference On Laser Probing - Lap 2008 = Aip. Conf. Proc. 4th International Symposium On Environmental Testing for Space Programmes, Proceedings = Esa Sp Publ 4th International Symposium On Environmental Testing for Space Programmes, Proceedings = Esa. Sp. Publ. 4th International Symposium On Instrumentation Science and Technology (isist' 2006) = J Phys Conf Ser 4th International Symposium On Instrumentation Science and Technology (isist' 2006) = J. Phys. Conf. Ser. 4th International Symposium On Therapeutic Ultrasound = Aip Conf Proc 4th International Symposium On Therapeutic Ultrasound = Aip. Conf. Proc. 4th International Workshop On Microprocessor Test and Verification: Common Challenges and Solutions, Proceedings = Int Workshop Micropr 4th International Workshop On Microprocessor Test and Verification: Common Challenges and Solutions, Proceedings = Int. Workshop Micropr. 4th International Workshop On Nuclear Fission and Fission-product Spectroscopy = Aip Conf Proc 4th International Workshop On Nuclear Fission and Fission-product Spectroscopy = Aip. Conf. Proc. 4th International Workshop On Polymer Reaction Engineering = Dech Monog 4th International Workshop On Polymer Reaction Engineering = Dech. Monog. 4th International Workshop On Wearable and Implantable Body Sensor Networks (bsn 2007) = Ifmbe Proc 4th International Workshop On Wearable and Implantable Body Sensor Networks (bsn 2007) = Ifmbe. Proc. 4th Kuala Lumpur International Conference On Biomedical Engineering 2008, Vols 1 and 2 = Ifmbe Proc 4th Kuala Lumpur International Conference On Biomedical Engineering 2008, Vols 1 and 2 = Ifmbe. Proc. 4th Large Open Pit Mining Conference - Managing Risk = Australas I Min Met 4th Large Open Pit Mining Conference - Managing Risk = Australas. I. Min. Met. 4th Neural Computation and Psychology Workshop, London, 9-11 April 1997 = Persp Neural Comp 4th Neural Computation and Psychology Workshop, London, 9-11 April 1997 = Persp. Neural Comp. 4th Symposium On Nuclear Physics = Aip Conf Proc 4th Symposium On Nuclear Physics = Aip. Conf. Proc. 4th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 4th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 4th Uk National Conference On Heat Transfer = Imeche Conf Trans 4th Uk National Conference On Heat Transfer = Imeche. Conf. Trans. 4th Workshop, Italian Research On Antarctic Atmosphere = Ital Phy So 4th Workshop, Italian Research On Antarctic Atmosphere = Ital. Phy. So. 4th World Water Congress: Innovation in Drinking Water Treatment = Wa Sci Technol 4th World Water Congress: Innovation in Drinking Water Treatment = Wa. Sci. Technol. 4th World Water Congress: Innovation in Water Supply - Reuse and Efficiency = Wa Sci Technol 4th World Water Congress: Innovation in Water Supply - Reuse and Efficiency = Wa. Sci. Technol. 4th World Water Congress: Water Supply and Water Services Management = Wa Sci Technol 4th World Water Congress: Water Supply and Water Services Management = Wa. Sci. Technol. 50th Anniversary Cracow University of Technology = 50th Anniv. Cracow Univ. Technol. Anniv. Issue 50th Electric Furnace Conference = T Iss Aime 50th Electric Furnace Conference = T. Iss. Aime. 50th Electronic Components & Technology Conference - 2000 Proceedings = P Electr C 50th Electronic Components & Technology Conference - 2000 Proceedings = P. Electr. C. 50th International Symposium On Crop Protection, Pts I-iv = Int S Crop 50th International Symposium On Crop Protection, Pts I-iv = Int. S. Crop 50th Ironmaking Conference Proceedings = Ironm Conf Proc 50th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 50 Years of Artificial Intelligence = Lect Notes Artif Int 50 Years of Artificial Intelligence = Lect. Notes. Artif. Int. 50 Years of The Research Institute of Geodesy, Topography and Cartography: Jubilee Proceedings, 1954-2004 = Res Inst Geodesy Top 50 Years of The Research Institute of Geodesy, Topography and Cartography: Jubilee Proceedings, 1954-2004 = Res. Inst. Geodesy. Top. 51st Electronic Components & Technology Conference = Elec Comp C 51st Electronic Components & Technology Conference = Elec. Comp. C. 51st Ironmaking Conference Proceedings = Ironm Conf Proc 51st Ironmaking Conference Proceedings = Ironm. Conf. Proc. 52nd Electronic Components & Technology Conference, 2002 Proceedings = Elec Comp C 52nd Electronic Components & Technology Conference, 2002 Proceedings = Elec. Comp. C. 52nd International Symposium On Crop Protection, Pts I and Ii, Proceedings = Int S Crop 52nd International Symposium On Crop Protection, Pts I and Ii, Proceedings = Int. S. Crop 52nd Ironmaking Conference Proceedings = Ironm Conf Proc 52nd Ironmaking Conference Proceedings = Ironm. Conf. Proc. 53rd Electronic Components & Technology Conference, 2003 Proceedings = Elec Comp C 53rd Electronic Components & Technology Conference, 2003 Proceedings = Elec. Comp. C. 53rd Ieee International Midwest Symposium On Circuits and Systems = Midwest Symp Circuit 53rd Ieee International Midwest Symposium On Circuits and Systems = Midwest Symp. Circuit. 53rd Ironmaking Conference Proceedings = Ironm Conf Proc 53rd Ironmaking Conference Proceedings = Ironm. Conf. Proc. 54th Electric Furnace Conference Proceedings = Elect Furn Conf Proc 54th Electric Furnace Conference Proceedings = Elect. Furn. Conf. Proc. 54th Electronic Components & Technology Conference, Vols 1 and 2, Proceedings = Elec Comp C 54th Electronic Components & Technology Conference, Vols 1 and 2, Proceedings = Elec. Comp. C. 55th Electronic Components & Technology Conference, Vols 1 and 2, 2005 Proceedings = Elec Comp C 55th Electronic Components & Technology Conference, Vols 1 and 2, 2005 Proceedings = Elec. Comp. C. 55th Ironmaking Conference Proceedings = Ironm Conf Proc 55th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 56th Electronic Components & Technology Conference 2006, Vol 1 and 2, Proceedings = Elec Comp C 56th Electronic Components & Technology Conference 2006, Vol 1 and 2, Proceedings = Elec. Comp. C. 57th Electronic Components & Technology Conference, 2007 Proceedings = Elec Comp C 57th Electronic Components & Technology Conference, 2007 Proceedings = Elec. Comp. C. 57th Ieee Vehicular Technology Conference, Vtc 2003-spring, Vols 1-4, Proceedings = Ieee Vts Veh Technol 57th Ieee Vehicular Technology Conference, Vtc 2003-spring, Vols 1-4, Proceedings = Ieee Vts. Veh. Technol. 58th Conference On Glass Problems = Ceram Eng Sci Proc 58th Conference On Glass Problems = Ceram. Eng. Sci. Proc. 58th Electric Furnace Conference and 17th Process Technology Conference Proceedings = Elect Furn Conf Proc 58th Electric Furnace Conference and 17th Process Technology Conference Proceedings = Elect. Furn. Conf. Proc. 58th Electronic Components & Technology Conference, Proceedings = Elec Comp C 58th Electronic Components & Technology Conference, Proceedings = Elec. Comp. C. 58th Ironmaking Conference Proceedings = Ironm Conf Proc 58th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 59th Conference On Glass Problems = Ceram Eng Sci Proc 59th Conference On Glass Problems = Ceram. Eng. Sci. Proc. 59th Electric Furnace Conference and 19th Process Technology Conference Proceedings = Elect Furn Conf Proc 59th Electric Furnace Conference and 19th Process Technology Conference Proceedings = Elect. Furn. Conf. Proc. 5-ht2c Receptors in The Pathophysiology of Cns Disease = Recept Ser 5-ht2c Receptors in The Pathophysiology of Cns Disease = Recept. Ser. 5-hydroxytryptamine in Psychiatry = Ox Med Publ 5-hydroxytryptamine in Psychiatry = Ox. Med. Publ. 5th Baltic Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 5th Baltic Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 5th European Conference On Cognitive Science Approaches to Process Control = Vtt Symp 5th European Conference On Cognitive Science Approaches to Process Control = Vtt. Symp. 5th European Conference On Integrated Optics = P Soc Photo-opt Ins 5th European Conference On Integrated Optics = P. Soc. Photo-opt. Ins. 5th European Symposium On Electrochemical Engineering = Inst Chem E 5th European Symposium On Electrochemical Engineering = Inst. Chem. E. 5th International Conference On Ac and Dc Power Transmission = Iee Conf Publ 5th International Conference On Ac and Dc Power Transmission = Iee. Conf. Publ. 5th International Conference On Industrial Lasers and Laser Applications '95 = P Soc Photo-opt Ins 5th International Conference On Industrial Lasers and Laser Applications '95 = P. Soc. Photo-opt. Ins. 5th International Conference On Inertial Fusion Sciences and Applications (ifsa2007) = J Phys Conf Ser 5th International Conference On Inertial Fusion Sciences and Applications (ifsa2007) = J. Phys. Conf. Ser. 5th International Conference On Laser Applications in Life Sciences = Proc Spie 5th International Conference On Laser Applications in Life Sciences = Proc. Spie. 5th International Conference On Laser Applications in Life Sciences = P Soc Photo-opt Ins 5th International Conference On Laser Applications in Life Sciences = P. Soc. Photo-opt. Ins. 5th International Conference On Physics and Astrophysics of Quark Gluon Plasma = J Phys Conf Ser 5th International Conference On Physics and Astrophysics of Quark Gluon Plasma = J. Phys. Conf. Ser. 5th International Conference On Practical Applications of Computational Biology & Bioinformatics (pacbb 2011) = Adv Intel Soft Compu 5th International Conference On Practical Applications of Computational Biology & Bioinformatics (pacbb 2011) = Adv. Intel. Soft. Compu. 5th International Conference On Profitable Condition Monitoring = Bhr Gr Conf Ser Publ 5th International Conference On Profitable Condition Monitoring = Bhr. Gr. Conf. Ser. Publ. 5th International Conference On Thermophysical Properties = Aip Conf Proc 5th International Conference On Thermophysical Properties = Aip. Conf. Proc. 5th International Conference On Times of Polymers Top and Composites = Aip Conf Proc 5th International Conference On Times of Polymers Top and Composites = Aip. Conf. Proc. 5th International Eeigm-amase-forgemat Conference On Advanced Materials Research = Iop Conf Ser-mat Sci 5th International Eeigm-amase-forgemat Conference On Advanced Materials Research = Iop. Conf. Ser-mat. Sci. 5th International Mango Symposium, Vols 1 and 2 = Acta Hortic 5th International Mango Symposium, Vols 1 and 2 = Acta. Hortic. 5th International Mining Geology Conference = Australas I Min Met 5th International Mining Geology Conference = Australas. I. Min. Met. 5th International Photodynamic Association Biennial Meeting = P Soc Photo-opt Ins 5th International Photodynamic Association Biennial Meeting = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = Proc Spie 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = Proc. Spie. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Advanced Optical Manufacturing Technologies = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Large Mirrors and Telescopes = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment = Proc Spie 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment = Proc. Spie. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optical Test and Measurement Technology and Equipment = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optoelectronic Materials and Devices for Detector, Imager, Display, and Energy Conversion Technology = Proc Spie 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optoelectronic Materials and Devices for Detector, Imager, Display, and Energy Conversion Technology = Proc. Spie. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optoelectronic Materials and Devices for Detector, Imager, Display, and Energy Conversion Technology = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Optoelectronic Materials and Devices for Detector, Imager, Display, and Energy Conversion Technology = P. Soc. Photo-opt. Ins. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Smart Structures and Materials in Manufacturing and Testing = Proc Spie 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Smart Structures and Materials in Manufacturing and Testing = Proc. Spie. 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Smart Structures and Materials in Manufacturing and Testing = P Soc Photo-opt Ins 5th International Symposium On Advanced Optical Manufacturing and Testing Technologies: Smart Structures and Materials in Manufacturing and Testing = P. Soc. Photo-opt. Ins. 5th International Symposium On Quantum Theory and Symmetries Qts5 = J Phys Conf Ser 5th International Symposium On Quantum Theory and Symmetries Qts5 = J. Phys. Conf. Ser. 5th International Workshop On Adaptive Optics for Industry and Medicine = P Soc Photo-opt Ins 5th International Workshop On Adaptive Optics for Industry and Medicine = P. Soc. Photo-opt. Ins. 5th International Workshop On High-pt Physics At Lhc = Aip Conf Proc 5th International Workshop On High-pt Physics At Lhc = Aip. Conf. Proc. 5th International Workshop On Image Processing and Computer Optics (dip-94) = P Soc Photo-opt Ins 5th International Workshop On Image Processing and Computer Optics (dip-94) = P. Soc. Photo-opt. Ins. 5th International Workshop On Microprocessor Test and Verification: Common Challenges and Solutions, Proceedings = Int Workshop Micropr 5th International Workshop On Microprocessor Test and Verification: Common Challenges and Solutions, Proceedings = Int. Workshop Micropr. 5th International Workshop On Multi-rate Processes and Hysteresis (murphys 2010) = J Phys Conf Ser 5th International Workshop On Multi-rate Processes and Hysteresis (murphys 2010) = J. Phys. Conf. Ser. 5th International Workshop On Polymer Reaction Engineering = Dech Monog 5th International Workshop On Polymer Reaction Engineering = Dech. Monog. 5th Symposium By Nordic Separation Science Society (nosss 2009) = Procedia Chem 5th Symposium By Nordic Separation Science Society (nosss 2009) = Procedia. Chem. 5th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 5th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 5th Workshop: Italian Research On Antarctic Atmosphere = Ital Phy So 5th Workshop: Italian Research On Antarctic Atmosphere = Ital. Phy. So. 5th Workshop of Young Researchers in Astronomy & Astrophysics = J Phys Conf Ser 5th Workshop of Young Researchers in Astronomy & Astrophysics = J. Phys. Conf. Ser. 5th Workshop On Atomic and Molecular Physics = P Soc Photo-opt Ins 5th Workshop On Atomic and Molecular Physics = P. Soc. Photo-opt. Ins. 5th World Water Congress: Drinking Water Quality and Treatment = Wa Sci Technol 5th World Water Congress: Drinking Water Quality and Treatment = Wa. Sci. Technol. 5th World Water Congress: Drinking Water Treatment Processes = Wa Sci Technol 5th World Water Congress: Drinking Water Treatment Processes = Wa. Sci. Technol. 5th World Water Congress: Water Services Management = Wa Sci Technol 5th World Water Congress: Water Services Management = Wa. Sci. Technol. 5-year Study of The First Edition of The Core-plus Mathematics Curriculum = Res Math Educ Ser 5-year Study of The First Edition of The Core-plus Mathematics Curriculum = Res. Math. Educ. Ser. 60th Ironmaking Conference Proceedings = Ironm Conf Proc 60th Ironmaking Conference Proceedings = Ironm. Conf. Proc. 60th Porcelain Enamel Institute Technical Forum = Ceram Eng Sci Proc 60th Porcelain Enamel Institute Technical Forum = Ceram. Eng. Sci. Proc. 60 Years of The Casimir Effect = J Phys Conf Ser 60 Years of The Casimir Effect = J. Phys. Conf. Ser. 61st Ironmaking Conference Proceedings = Ironm Conf Proc 61st Ironmaking Conference Proceedings = Ironm. Conf. Proc. 67th Conference On Glass Problems: Ceramic Engineering and Science Proceedings = Ceram Eng Sci Proc 67th Conference On Glass Problems: Ceramic Engineering and Science Proceedings = Ceram. Eng. Sci. Proc. 67th Porcelain Enamel Institute Technical Forum, Proceedings = Ceram Eng Sci Proc 67th Porcelain Enamel Institute Technical Forum, Proceedings = Ceram. Eng. Sci. Proc. 68th Conference On Glass Problems = Ceram Eng Sci Proc 68th Conference On Glass Problems = Ceram. Eng. Sci. Proc. 68th Ieee Vehicular Technology Conference, Fall 2008 = Ieee Vts Veh Technol 68th Ieee Vehicular Technology Conference, Fall 2008 = Ieee Vts. Veh. Technol. 68th Porcelain Enamel Institute Technical Forum = Ceram Eng Sci Proc 68th Porcelain Enamel Institute Technical Forum = Ceram. Eng. Sci. Proc. 69th Conference On Glass Problems = Ceram Eng Sci Proc 69th Conference On Glass Problems = Ceram. Eng. Sci. Proc. 69th Porcelain Enamel Institute Technical Forum = Ceram Eng Sci Proc 69th Porcelain Enamel Institute Technical Forum = Ceram. Eng. Sci. Proc. 6th Ausimm Extractive Metallurgy Conference = Australas I Min Met 6th Ausimm Extractive Metallurgy Conference = Australas. I. Min. Met. 6th Dresden Polymer Discussion - Surface Modification = Macromol Sy 6th Dresden Polymer Discussion - Surface Modification = Macromol. Sy. 6th Electronics Packaging Technology Conference, Proceedings (eptc 2004) = El Packag Tech Conf 6th Electronics Packaging Technology Conference, Proceedings (eptc 2004) = El. Packag. Tech. Conf. 6th Integral Workshop: The Obscured Universe = Esa Spec Publ 6th Integral Workshop: The Obscured Universe = Esa. Spec. Publ. 6th Integral Workshop: The Obscured Universe = Esa Sp Publ 6th Integral Workshop: The Obscured Universe = Esa. Sp. Publ. 6th International Conference On Aperiodic Crystals (aperiodic'09) = J Phys Conf Ser 6th International Conference On Aperiodic Crystals (aperiodic'09) = J. Phys. Conf. Ser. 6th International Conference On City Logistics = Procd Soc Behv 6th International Conference On City Logistics = Procd. Soc. Behv. 6th International Conference On Concentrating Photovoltaic Systems (cpv-6) = Aip Conf Proc 6th International Conference On Concentrating Photovoltaic Systems (cpv-6) = Aip. Conf. Proc. 6th International Conference On Industrial Lasers and Laser Applications '98 = Proc Spie 6th International Conference On Industrial Lasers and Laser Applications '98 = Proc. Spie. 6th International Conference On Industrial Lasers and Laser Applications '98 = P Soc Photo-opt Ins 6th International Conference On Industrial Lasers and Laser Applications '98 = P. Soc. Photo-opt. Ins. 6th International Conference On Medical Applications of Synchrotron Radiation = Aip Conf Proc 6th International Conference On Medical Applications of Synchrotron Radiation = Aip. Conf. Proc. 6th International Conference On The Physics of Highly Charged Ions = Aip Conf Proc 6th International Conference On The Physics of Highly Charged Ions = Aip. Conf. Proc. 6th International Mining Geology Conference = Australas I Min Met 6th International Mining Geology Conference = Australas. I. Min. Met. 6th International Sampe Electronics Conference = Int Sampe E 6th International Sampe Electronics Conference = Int. Sampe E. 6th International Scientific Conference Business and Management 2010, Vols I and Ii = Bus Manag 6th International Scientific Conference Business and Management 2010, Vols I and Ii = Bus. Manag. 6th International Symposium On Geodesy and Physics of The Earth, Pt 1 = Ver Zent Ph 6th International Symposium On Geodesy and Physics of The Earth, Pt 1 = Ver. Zent. Ph. 6th International Symposium On Geodesy and Physics of The Earth, Pt 2 = Ver Zent Ph 6th International Symposium On Geodesy and Physics of The Earth, Pt 2 = Ver. Zent. Ph. 6th International Symposium On Geodesy and Physics of The Earth, Pt 3 = Ver Zent Ph 6th International Symposium On Geodesy and Physics of The Earth, Pt 3 = Ver. Zent. Ph. 6th International Symposium On Multiphase Flow, Heat Mass Transfer and Energy Conversion = Aip Conf Proc 6th International Symposium On Multiphase Flow, Heat Mass Transfer and Energy Conversion = Aip. Conf. Proc. 6th International Symposium On Precision Engineering Measurements and Instrumentation = Proc Spie 6th International Symposium On Precision Engineering Measurements and Instrumentation = Proc. Spie. 6th International Symposium On Therapeutic Ultrasound = Aip Conf Proc 6th International Symposium On Therapeutic Ultrasound = Aip. Conf. Proc. 6th International Workshop On Digital Image Processing and Computer Graphics (dip-97) = P Soc Photo-opt Ins 6th International Workshop On Digital Image Processing and Computer Graphics (dip-97) = P. Soc. Photo-opt. Ins. 6th International Workshop On Information Optics (wio '07) = Aip Conf Proc 6th International Workshop On Information Optics (wio '07) = Aip. Conf. Proc. 6th International Workshop On Program Comprehension (iwpc 98) - Proceedings = Prog Comprehen 6th International Workshop On Program Comprehension (iwpc 98) - Proceedings = Prog. Comprehen. 6th Large Open Pit Mining Conference 2007 = Australas I Min Met 6th Large Open Pit Mining Conference 2007 = Australas. I. Min. Met. 6th Meeting of The Wg Tools for Simulation and Modelling in Environmental Applications = Fzka Tech Umw Wis B 6th Meeting of The Wg Tools for Simulation and Modelling in Environmental Applications = Fzka. Tech. Umw. Wis. B. 6th Mexican Nuclear Physics School = Aip Conf Proc 6th Mexican Nuclear Physics School = Aip. Conf. Proc. 6th Uicee Annual Conference On Enineering Education, Conference Proceedings = Monas Engn Educ Ser 6th Uicee Annual Conference On Enineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 6th Workshop - Italian Research On Antarctic Atmosphere = Ital Phy So 6th Workshop - Italian Research On Antarctic Atmosphere = Ital. Phy. So. 6th Workshop On Parallel and Distributed Simulation ( Pads92 ) = Simul Series 6th Workshop On Parallel and Distributed Simulation ( Pads92 ) = Simul. Series. 6th Wseas Int Conf On Instrumentation, Measurement, Circuits & Systems/7th Wseas Int Conf On Robotics, Control and Manufacturing Technology, Proceedings = Ele Com Eng 6th Wseas Int Conf On Instrumentation, Measurement, Circuits & Systems/7th Wseas Int Conf On Robotics, Control and Manufacturing Technology, Proceedings = Ele. Com. Eng. 72nd Steelmaking Conference Proceedings = Steel Proc 72nd Steelmaking Conference Proceedings = Steel. Proc. 73rd Steelmaking Conference Proceedings = Steel Proc 73rd Steelmaking Conference Proceedings = Steel. Proc. 74th Steelmaking Conference Proceedings = Steel Proc 74th Steelmaking Conference Proceedings = Steel. Proc. 75th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints A & B = Can Pulp P 75th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints A & B = Can. Pulp P. 75th Steelmaking Conference Proceedings = Steel Proc 75th Steelmaking Conference Proceedings = Steel. Proc. 75 Years of Radon Transform = Conf Proc Lec N Phys 75 Years of Radon Transform = Conf. Proc. Lec. N. Phys. 76th Steelmaking Conference Proceedings = Steel Proc 76th Steelmaking Conference Proceedings = Steel. Proc. 77th Steelmaking Conference = Steel Proc 77th Steelmaking Conference = Steel. Proc. 79th Steelmaking Conference Proceedings = Steel Proc 79th Steelmaking Conference Proceedings = Steel. Proc. 7th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 7th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 7th Ethylene Producers' Conference, Proceedings = Proc Ethyl Produc C 7th Ethylene Producers' Conference, Proceedings = Proc. Ethyl. Produc. C. 7th European Conference On Applied Superconductivity (eucas'05) = J Phys Conf Ser 7th European Conference On Applied Superconductivity (eucas'05) = J. Phys. Conf. Ser. 7th European Space Mechanisms & Tribology Symposium, Proceedings = Esa Sp Publ 7th European Space Mechanisms & Tribology Symposium, Proceedings = Esa. Sp. Publ. 7th International Asparagus Symposium = Acta Hortic 7th International Asparagus Symposium = Acta. Hortic. 7th International Conference of The Balkan Physical Union Vols 1 and 2 = Aip Conf Proc 7th International Conference of The Balkan Physical Union Vols 1 and 2 = Aip. Conf. Proc. 7th International Conference On Atomic and Molecular Data and Their Applications Icamdata-2010 = Aip Conf Proc 7th International Conference On Atomic and Molecular Data and Their Applications Icamdata-2010 = Aip. Conf. Proc. 7th International Conference On Computer-aided Industrial Design & Conceptual Design = I C Comp Aid Des Con 7th International Conference On Computer-aided Industrial Design & Conceptual Design = I. C. Comp. Aid. Des. Con. 7th International Conference On Computer Communications and Networks - Proceedings = Ieee Ic Comp Com Net 7th International Conference On Computer Communications and Networks - Proceedings = Ieee. Ic. Comp. Com. Net. 7th International Conference On Fourier Transform Spectroscopy = P Soc Photo-opt Ins 7th International Conference On Fourier Transform Spectroscopy = P. Soc. Photo-opt. Ins. 7th International Conference On Laser Applications-icla 2009 = Aip Conf Proc 7th International Conference On Laser Applications-icla 2009 = Aip. Conf. Proc. 7th International Conference On Modern Practice in Stress and Vibration Analysis = J Phys Conf Ser 7th International Conference On Modern Practice in Stress and Vibration Analysis = J. Phys. Conf. Ser. 7th International Conference On Practical Applications of Agents and Multi-agent Systems (paams 2009) = Adv Intell Soft Comp 7th International Conference On Practical Applications of Agents and Multi-agent Systems (paams 2009) = Adv. Intell. Soft. Comp. 7th International Conference On Practical Applications of Agents and Multi-agent Systems (paams 2009) = Adv Intel Soft Compu 7th International Conference On Practical Applications of Agents and Multi-agent Systems (paams 2009) = Adv. Intel. Soft. Compu. 7th International Conference On Pressure Surges and Fluid Transients in Pipelines and Open Channels = Bhr Gr Conf Ser Publ 7th International Conference On Pressure Surges and Fluid Transients in Pipelines and Open Channels = Bhr. Gr. Conf. Ser. Publ. 7th International Conference On Structural Analysis of Historic Constructions: Strenthening and Retrofitting, Pts 1 and 2 = Adv Mater Res-switz 7th International Conference On Structural Analysis of Historic Constructions: Strenthening and Retrofitting, Pts 1 and 2 = Adv. Mater. Res-switz. 7th International Scientific Conference - Engineering for Rural Development, Proceedings = Eng Rur Develop 7th International Scientific Conference - Engineering for Rural Development, Proceedings = Eng. Rur. Develop. 7th International Symposium On Corrosion in The Pulp & Paper Industry : Proceedings = P Tech As P 7th International Symposium On Corrosion in The Pulp & Paper Industry : Proceedings = P. Tech. As. P. 7th International Symposium On Instrumentation and Control Technology: Measurement Theory and Systems and Aeronautical Equipment = P Soc Photo-opt Ins 7th International Symposium On Instrumentation and Control Technology: Measurement Theory and Systems and Aeronautical Equipment = P. Soc. Photo-opt. Ins. 7th International Symposium On Materials in Space Environment = Esa Sp Publ 7th International Symposium On Materials in Space Environment = Esa. Sp. Publ. 7th International Symposium On Measurement Technology and Intelligent Instruments = J Phys Conf Ser 7th International Symposium On Measurement Technology and Intelligent Instruments = J. Phys. Conf. Ser. 7th Mediterranean Electrotechnical Conference, Vols 1-3 = Ieee Mediterr Elect 7th Mediterranean Electrotechnical Conference, Vols 1-3 = Ieee. Mediterr. Elect. 7th Meeting in Israel On Optical Engineering = P Soc Photo-opt Ins 7th Meeting in Israel On Optical Engineering = P. Soc. Photo-opt. Ins. 7th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 7th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 7th Workshop - Italian Research On Antarctic Atmosphere = Ital Phy So 7th Workshop - Italian Research On Antarctic Atmosphere = Ital. Phy. So. 802.11 Wireless Networks: Security and Analysis = Comput Commun Netw S 802.11 Wireless Networks: Security and Analysis = Comput. Commun. Netw. S. 80th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints A = Can Pulp P 80th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints A = Can. Pulp P. 80th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints B = Can Pulp P 80th Annual Meeting, Technical Section, Canadian Pulp and Paper Association, Preprints B = Can. Pulp P. 84th Steelmaking Conference Proceedings = Steel Proc 84th Steelmaking Conference Proceedings = Steel. Proc. 85th Steelmaking Conference Proceedings = Steel Proc 85th Steelmaking Conference Proceedings = Steel. Proc. 8th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 8th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 8th China International Nanoscience and Technology Symposium (cinsts09) = J Phys Conf Ser 8th China International Nanoscience and Technology Symposium (cinsts09) = J. Phys. Conf. Ser. 8th Edoardo Amaldi Conference On Gravitational Waves = J Phys Conf Ser 8th Edoardo Amaldi Conference On Gravitational Waves = J. Phys. Conf. Ser. 8th European Conference On Applied Superconductivity (eucas'07) = J Phys Conf Ser 8th European Conference On Applied Superconductivity (eucas'07) = J. Phys. Conf. Ser. 8th Ieee International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot 8th Ieee International Workshop On Rapid System Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. 8th Internatioanl Conference On The Scientific and Clinical Applications of Magnetic Carriers = Aip Conf Proc 8th Internatioanl Conference On The Scientific and Clinical Applications of Magnetic Carriers = Aip. Conf. Proc. 8th International Conference On Correlation Optics = Proc Spie 8th International Conference On Correlation Optics = Proc. Spie. 8th International Conference On Correlation Optics = P Soc Photo-opt Ins 8th International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. 8th International Conference On Fourier Transform Spectroscopy = P Soc Photo-opt Ins 8th International Conference On Fourier Transform Spectroscopy = P. Soc. Photo-opt. Ins. 8th International Conference On Harmonics and Quality of Power, Proceedings, Vols 1 and 2 = Int C Harmon Qual Po 8th International Conference On Harmonics and Quality of Power, Proceedings, Vols 1 and 2 = Int. C. Harmon. Qual. Po. 8th International Conference On Hf Radio Systems and Techniques = Iee Conf Publ 8th International Conference On Hf Radio Systems and Techniques = Iee. Conf. Publ. 8th International Conference On Multiphase '97 - How Deep? How Far? How Soon? = Bhr Gr Conf Ser Publ 8th International Conference On Multiphase '97 - How Deep? How Far? How Soon? = Bhr. Gr. Conf. Ser. Publ. 8th International Conference On Pressure Surges = Bhr Gr Conf Ser Publ 8th International Conference On Pressure Surges = Bhr. Gr. Conf. Ser. Publ. 8th International Symposium : Hardness Testing in Theory and Practice = Vdi Bericht 8th International Symposium : Hardness Testing in Theory and Practice = Vdi. Bericht. 8th International Symposium On Small Fruit Virus Diseases = Acta Hortic 8th International Symposium On Small Fruit Virus Diseases = Acta. Hortic. 8th International Symposium On Therapeutic Ultrasound = Aip Conf Proc 8th International Symposium On Therapeutic Ultrasound = Aip. Conf. Proc. 8th International Symposium On Timing of Field Production in Vegetable Crops = Acta Hortic 8th International Symposium On Timing of Field Production in Vegetable Crops = Acta. Hortic. 8th International Workshop On Program Comprehension (iwpc 2000), Proceedings = Prog Comprehen 8th International Workshop On Program Comprehension (iwpc 2000), Proceedings = Prog. Comprehen. 8th Soho Workshop: Plasma Dynamics and Diagnostics in The Solar Transition Region and Corona, Proceedings = Esa Spec Publ 8th Soho Workshop: Plasma Dynamics and Diagnostics in The Solar Transition Region and Corona, Proceedings = Esa. Spec. Publ. 8th Soho Workshop: Plasma Dynamics and Diagnostics in The Solar Transition Region and Corona, Proceedings = Esa Sp Publ 8th Soho Workshop: Plasma Dynamics and Diagnostics in The Solar Transition Region and Corona, Proceedings = Esa. Sp. Publ. 8th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 8th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 8th Workshop Italian Research On Antarctic Atmosphere = Soc Ital Fi 8th Workshop Italian Research On Antarctic Atmosphere = Soc. Ital. Fi. 91 Electroweak Interaction and Unified Theories = Moriond Par 91 Electroweak Interaction and Unified Theories = Moriond. Par. 91 High Energy Hadronic Interactions = Moriond Par 91 High Energy Hadronic Interactions = Moriond. Par. 97th Annual Conference On Taxation, Proceedings = P A Con Tax 97th Annual Conference On Taxation, Proceedings = P. A. Con. Tax. 9th Annual Conference 1988 - Canadian Nuclear Society = P Can Nuc S 9th Annual Conference 1988 - Canadian Nuclear Society = P. Can. Nuc. S. 9th Ausimm Underground Operators Conference 2005 = Australas I Min Met 9th Ausimm Underground Operators Conference 2005 = Australas. I. Min. Met. 9th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas Engn Educ Ser 9th Baltic Region Seminar On Engineering Education, Seminar Proceedings = Monas. Engn. Educ. Ser. 9th Ethylene Producers' Conference, Proceedings = Proc Ethyl Produc C 9th Ethylene Producers' Conference, Proceedings = Proc. Ethyl. Produc. C. 9th European Aerospace Congress - Visions and Limits of Long-term Aerospace Developments, Proceedings = Dglr Ber 9th European Aerospace Congress - Visions and Limits of Long-term Aerospace Developments, Proceedings = Dglr. Ber. 9th European Meeting On Solar Physics: Magnetic Fields and Solar Processes, Vols 1 and 2 = Esa Spec Publ 9th European Meeting On Solar Physics: Magnetic Fields and Solar Processes, Vols 1 and 2 = Esa. Spec. Publ. 9th European Meeting On Solar Physics: Magnetic Fields and Solar Processes, Vols 1 and 2 = Esa Sp Publ 9th European Meeting On Solar Physics: Magnetic Fields and Solar Processes, Vols 1 and 2 = Esa. Sp. Publ. 9th European Space Mechanisms and Tribology Symposium = Esa Sp Publ 9th European Space Mechanisms and Tribology Symposium = Esa. Sp. Publ. 9th Ieee Computer Security Foundations Workshop, Proceedings = P Ieee Csfw 9th Ieee Computer Security Foundations Workshop, Proceedings = P. Ieee Csfw. 9th International Conference On Aerodynamics and Ventilation of Vehicle Tunnels = Bhr Gr Conf Ser Publ 9th International Conference On Aerodynamics and Ventilation of Vehicle Tunnels = Bhr. Gr. Conf. Ser. Publ. 9th International Conference On Computer-aided Industrial Design & Conceptual Design, Vols 1 and 2 = I C Comp Aid Des Con 9th International Conference On Computer-aided Industrial Design & Conceptual Design, Vols 1 and 2 = I. C. Comp. Aid. Des. Con. 9th International Conference On Fourier Transform Spectroscopy = P Soc Photo-opt Ins 9th International Conference On Fourier Transform Spectroscopy = P. Soc. Photo-opt. Ins. 9th International Conference On Multiphase '99 = Bhr Gr Conf Ser Publ 9th International Conference On Multiphase '99 = Bhr. Gr. Conf. Ser. Publ. 9th International Conference On Vibration Measurements By Laser and Noncontact Techniques and Short Course = Aip Conf Proc 9th International Conference On Vibration Measurements By Laser and Noncontact Techniques and Short Course = Aip. Conf. Proc. 9th International Conference On X-ray Microscopy = J Phys Conf Ser 9th International Conference On X-ray Microscopy = J. Phys. Conf. Ser. 9th International Design Conference - Design 2006, Vols 1 and 2 = Des Soc Pub Ds 9th International Design Conference - Design 2006, Vols 1 and 2 = Des. Soc. Pub. Ds. 9th International Scientific Conference: Engineering for Rural Development, Proceedings = Eng Rur Develop 9th International Scientific Conference: Engineering for Rural Development, Proceedings = Eng. Rur. Develop. 9th International Symposium On Therapeutic Ultrasound = Aip Conf Proc 9th International Symposium On Therapeutic Ultrasound = Aip. Conf. Proc. 9th International Workshop On Petri Nets and Performance Models, Proceedings = Int Worksh Petri Net 9th International Workshop On Petri Nets and Performance Models, Proceedings = Int. Worksh. Petri Net. 9th International Workshop On Program Comprehension, Proceedings = Prog Comprehen 9th International Workshop On Program Comprehension, Proceedings = Prog. Comprehen. 9th Meeting On Optical Engineering in Israel = P Soc Photo-opt Ins 9th Meeting On Optical Engineering in Israel = P. Soc. Photo-opt. Ins. 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 1 = Vtt Symp 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 1 = Vtt. Symp. 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 2 = Vtt Symp 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 2 = Vtt. Symp. 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 3 = Vtt Symp 9th Nordic Symposium On Tribology Nordtrib 2000, Vol 3 = Vtt. Symp. 9th Pacific Basin Nuclear Conference - Nuclear Energy, Science & Technology Pacific Partnership, Proceedings, Vols 1 and 2 = Inst Eng A 9th Pacific Basin Nuclear Conference - Nuclear Energy, Science & Technology Pacific Partnership, Proceedings, Vols 1 and 2 = Inst. Eng. A. 9th Process Technology Conference Proceedings = Proc Tech C 9th Process Technology Conference Proceedings = Proc. Tech. C. 9th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas Engn Educ Ser 9th Uicee Annual Conference On Engineering Education, Conference Proceedings = Monas. Engn. Educ. Ser. 9th World Congress On Computational Mechanics and 4th Asian Pacific Congress On Computational Mechanics = Iop Conf Ser-mat Sci 9th World Congress On Computational Mechanics and 4th Asian Pacific Congress On Computational Mechanics = Iop. Conf. Ser-mat. Sci. Aaa-arbeiten Aus Anglistik Und Amerikanistik = Aaa-arb Anglist Am Aaa-arbeiten Aus Anglistik Und Amerikanistik = Aaa-arb. Anglist. Am. Aaas08: 2nd Advanced Atmospheric Aerosol Symposium = Chem Engineer Trans Aaas08: 2nd Advanced Atmospheric Aerosol Symposium = Chem. Engineer. Trans. Aaas10: Advanced Atmospheric Aerosol Symposium = Chem Engineer Trans Aaas10: Advanced Atmospheric Aerosol Symposium = Chem. Engineer. Trans. Aaas R&d Budget and Policy Project = Aaas R&d B Aaas R&d Budget and Policy Project = Aaas R&d B. Aaas Selected Symposia Series = Aaas Select Aaas Selected Symposia Series = Aaas Select. Aace Bulletin = Aace Bull Aace Bulletin = Aace Bull. Aachener Kunstblatter (DuMont Buchverlag) = Aachen Kunstbl AACN advanced critical care = AACN Adv Crit Care AACN clinical issues = AACN Clin Issues AACN Clinical Issues = AACN Clin. Issues AACN clinical issues in critical care nursing = AACN Clin Issues Crit Care Nurs AACN Clinical Issues in Critical Care Nursing = AACN Clin. Issues Crit. Care Nurs. AADE editors' journal = AADE Ed J AADE Editors Journal = AADE Ed. J. A.A.G. bijdragen / Afdeling Agrarische Geschiedenis, Landbouwhogeschool = A A G Bijdr AAHS journal / American Aviation Historical Society = AAHS J AA : l'architecture d'aujourd'hui = Archit Aujourdhui Aall Publications Series = Aall Publ S Aall Publications Series = Aall Publ. S. AANA journal = AANA J AANA Journal = AANA J. Aana Journal-american Association of Nurse Anesthetists = Aana J Aana Journal-american Association of Nurse Anesthetists = Aana J. AANNT Journal = AANNT J. AANNT journal / the American Association of Nephrology Nurses and Technicians = AANNT J Aaohn Journal = Aaohn J Aaohn Journal = Aaohn J. AAOHN Journal = AAOHN J. AAOHN journal : official journal of the American Association of Occupational Health Nurses = AAOHN J Aapg Bulletin = Aapg Bull Aapg Bulletin = Aapg Bull. AAPG Bulletin = AAPG Bull. AAPG bulletin = Am Assoc Pet Geol Bull Aapg Bulletin-american Association of Petroleum Geologists = Aapg Bull Aapg Bulletin-american Association of Petroleum Geologists = Aapg Bull. AAPG Memoir = AAPG Mem. Aapg Memoirs = Aapg Memoir Aapg Memoirs = Aapg Memoir. Aapg Studies in Geology = Aapg Stud Geol Aapg Studies in Geology = Aapg Stud. Geol. AAPPO Journal = AAPPO J. AAPPO journal : the journal of the American Association of Preferred Provider Organizations = AAPPO J Aaps Advances in The Pharmaceutical Sciences Series = Aaps Adv Pharm Sci Aaps Advances in The Pharmaceutical Sciences Series = Aaps Adv. Pharm. Sci. Aaps Journal = Aaps J Aaps Journal = Aaps J. AAPS Journal = AAPS J. Aaps Pharmsci = Aaps Pharmsci AAPS pharmSci = AAPS PharmSci AAPS PharmSci = AAPS PharmSci Aaps Pharmscitech = Aaps Pharmscitech AAPS PharmSciTech = AAPS PharmSciTech Aarbøger for nordisk oldkyndighed og historie = AarbKøb AARCTimes = AARC Times AARN news letter = AARN News Lett AARN News Letter = AARN News Lett. Aarsberetning - Kobenhavns universitets medicinsk-historiske institut og museum = Arsberet Kbh Univ Med Hist Inst Mus Aarsberetning - Kobenhavns universitets medicinsk-historiske museum = Arsberet Kobenhavns Univ Med Hist Mus Aascu Issues = Aascu Iss Aascu Issues = Aascu Iss. Aas History Series = Aas Hist S Aas History Series = Aas Hist. S. Aas History Series = Aas Hist Ser Aas History Series = Aas Hist. Ser. Aastaraamat - Eesti Teadusliku Seltsi Rootsis. Annales - Societatis Litterarum Estonicae in Svecia. Eesti Teaduslik Selts Rootsis = Aastaraam Eesti Tead Seltsi Rootsis Aatcc Review = Aatcc Rev Aatcc Review = Aatcc Rev. Aatcc Symposium = Aatcc Symp Aatcc Symposium = Aatcc Symp. Aaup Bulletin-american Association of University Professors = Aaup B Aaup Bulletin-american Association of University Professors = Aaup B. Aau Reports = Aau Reports Abacus-a Journal of Accounting and Business Studies = Abacus-j Account Bus Abacus-a Journal of Accounting and Business Studies = Abacus-j. Account. Bus. Abacus-a Journal of Accounting Finance and Business Studies = Abacus Abacus-a Journal of Accounting Finance and Business Studies = Abacus. Abacus-new York = Abacus-new York Aba Journal = Aba J Aba Journal = Aba J. ABA journal = ABA J AB bookman's weekly : for the specialist book world = AB Bookm Wkly Abbottempo = Abbottempo ABC decor = ABC Decor Abc's of Cultural Understanding and Communication: National and International Adaptations = Lit Lang Learn Abc's of Cultural Understanding and Communication: National and International Adaptations = Lit. Lang. Learn. Abct Clinical Assessment Series = Abct Clin Assess Ser Abct Clinical Assessment Series = Abct Clin. Assess. Ser. Abc Transporters: Biochemical, Cellular, and Molecular Aspects = Method Enzymol Abc Transporters: Biochemical, Cellular, and Molecular Aspects = Method. Enzymol. Abdominal Aortic Aneurysm: Genetics, Pathophysiology and Molecular Biology = Ann Ny Acad Sci Abdominal Aortic Aneurysm: Genetics, Pathophysiology and Molecular Biology = Ann. Ny. Acad. Sci. Abdominal Aortic Aneurysm: Genetics, Pathophysiology, and Molecular Biology = Ann Ny Acad Sci Abdominal Aortic Aneurysm: Genetics, Pathophysiology, and Molecular Biology = Ann. Ny. Acad. Sci. Abdominal Aortic Aneurysms: New Approaches to Rupture Risk Assessment = Cardiol Res Clin Dev Abdominal Aortic Aneurysms: New Approaches to Rupture Risk Assessment = Cardiol. Res. Clin. Dev. Abdominal imaging = Abdom Imaging Abdominal Imaging = Abdom Imaging Abdominal Imaging = Abdom. Imaging Abdominal IMAging=Abdom Imaging;; Abdominal surgery = Abdom Surg Abductive Cognition: The Epistemological and Eco-cognitive Dimensions of Hypothetical Reasoning = Cogn Syst Monogr Abductive Cognition: The Epistemological and Eco-cognitive Dimensions of Hypothetical Reasoning = Cogn. Syst. Monogr. Abelian Groups and Modules = Lect Notes Pure Appl Abelian Groups and Modules = Lect. Notes. Pure. Appl. Abelian Groups and Modules = Math Appl Abelian Groups and Modules = Math. Appl. Abelian Groups and Modules = Trends Math Abelian Groups and Modules = Trends. Math. Abelian Groups = Lect Notes Pure Appl Abelian Groups = Lect. Notes. Pure. Appl. Abelian Groups, Module Theory, and Topology = Lect Notes Pure Appl Abelian Groups, Module Theory, and Topology = Lect. Notes. Pure. Appl. Abelian Groups, Rings, Modules, and Homological Algebra = Mg Txb Pur Appl Math Abelian Groups, Rings, Modules, and Homological Algebra = Mg. Txb. Pur. Appl. Math. Abelian Groups, Rings, Modules, and Homological Algebra = Monogr Txb Pure Appl Abelian Groups, Rings, Modules, and Homological Algebra = Monogr. Txb. Pure. Appl. Abel Symposia = Abel Symp Abel Symposia = Abel Symp. Aberdeen University review = Aberdeen Univ Rev Abhandlung Der Akademie Der Wissenschaften Zu Gottingen Philologisch Historische Klasse Neue Folge = Abh Akad Wiss Got Ph Abhandlung Der Akademie Der Wissenschaften Zu Gottingen Philologisch Historische Klasse Neue Folge = Abh. Akad. Wiss. Got. Ph. Abhandlungen Aus Dem Mathematischen Seminar Der Universitat Hamburg = Abh Math Sem Hamburg Abhandlungen Aus Dem Mathematischen Seminar Der Universitat Hamburg = Abh. Math. Sem. Hamburg Abhandlungen aus dem Mathematischen Seminar der Universität Hamburg = Abh. Math. Sem. Univ. Hamburg Abhandlungen aus dem Westfälischen Museum für Naturkunde = Abh. Westfäl. Mus. Nat.kd. Abhandlungen der Akademie der Wissenschaften in Mainz, Geistes und sozialwissenschaftliche Klasse = AAWM Abhandlungen der Akademie der Wissenschaften zu Göttingen. Philologisch-Historische Klasse = AbhGoettingen Abhandlungen der Bayerischen Akademie der Wissenschaften, Philos.-Hist. Klasse = ABAW Abhandlungen der Braunschweigischen Wissenschaftlichen Gesellschaft = Abh. Braunschweig. Wiss. Ges. Abhandlungen der Deutschen Akademie der Wissenschaften zu Berlin = AbhBerlin Abhandlungen der Deutschen Orient-Gesellschaft = ADOG Abhandlungen der Heidelberger Akademie der Wissenschaften, Philos.- Hist. Klasse = AHAW Abhandlungen der Mathematisch-Naturwissenschaftlichen Klasse = Abh. Math.-Naturwiss. Kl. Akad. Wiss. Lit. Mainz Abhandlungen der Naturforschenden Gesellschaft in Zürich = Abh. Nat.forsch. Ges. Zür. Abhandlungen der Rheinisch-Westfälischen Akademie der Wissenschaften = AbhDüsseldorf Abhandlungen der Sächsischen Akademie der Wissenschaften zu Leipzig = ASAW Abhandlungen der Sächsischen Akademie der Wissenschaften zu Leipzig. Philologisch-Historische Klasse = AbhLeipzig Abhandlungen der Senckenbergischen Naturforschenden Gesellschaft = Abh. Senckb. Naturforsch. Ges. Abhandlungen des Deutschen Archäologischen Instituts, Abteilung Kairo = ADAIK Abhandlungen Des Naturwissenschaftlichen Vereins in Hamburg, Nf = Abh Nat Ver Abhandlungen Des Naturwissenschaftlichen Vereins in Hamburg, Nf = Abh. Nat. Ver. Abhandlungen des Naturwissenschaftlichen Vereins zu Bremen = Abh. Nat.wiss. Ver. Bremen Abhandlungen und Berichte des Staatlichen Museums fur Volkerkunde, Dresden. Staatliches Museum fur Volkerkunde Dresden = Abh Ber Staatl Mus Voelkerkd Dres Abhandlungen und Berichte (Deutsches Museum (Germany)) = Abh Ber Dtsch Mus Abhandlungen zur Geschichte der Medizin und der Naturwissenschaften = Abh Gesch Med Naturwiss Ab Initio Simulation of Crystalline Solids: History and Prospects - Contributions in Honor of Cesare Pisani = J Phys Conf Ser Ab Initio Simulation of Crystalline Solids: History and Prospects - Contributions in Honor of Cesare Pisani = J. Phys. Conf. Ser. Abjection, Melancholia, and Love = Warw St Phl Abjection, Melancholia, and Love = Warw. St. Phl. ABNF Journal = ABNF J. Abnormal Cortical Development and Epilepsy: From Basic to Clinical Science = Mariani F P Abnormal Cortical Development and Epilepsy: From Basic to Clinical Science = Mariani. F. P. Abnormal Pressures in Hydrocarbon Environments = Aapg Memoir Abnormal Pressures in Hydrocarbon Environments = Aapg. Memoir. Aboriginal And Islander Health Worker Journal = Aborig Isl Health Work J Aboriginal History Monograph Series = Aborig Hist Mg Ser Aboriginal History Monograph Series = Aborig. Hist. Mg. Ser. Aboriginal Justice Issues = Aic Conf P Aboriginal Justice Issues = Aic. Conf. P. Aboriginal Placenames: Naming and Re-naming The Australian Landscape = Aborig Hist Mg Ser Aboriginal Placenames: Naming and Re-naming The Australian Landscape = Aborig. Hist. Mg. Ser. Aboriginal Studies Series = Aboriginal Stud Ser Aboriginal Studies Series = Aboriginal Stud. Ser. Abortion and The Moral Significance of Merely Possible Persons: Finding Middle Ground in Hard Cases = Philos Med Abortion and The Moral Significance of Merely Possible Persons: Finding Middle Ground in Hard Cases = Philos. Med. Abortion: Legislative and Legal Issues = Laws Legis Abortion: Legislative and Legal Issues = Laws. Legis. Abortion research notes / International Reference Center for Abortion Research = Abort Res Notes Abortion Review = Abortion Rev About Depression = Confr Psych About Depression = Confr. Psych. About The House = About House A Bradford Book = Bradford Book Abraham in Arms: War and Gender in Colonial New England = Early Am Stud Ser Abraham in Arms: War and Gender in Colonial New England = Early. Am. Stud. Ser. Abraham J. (abe) Briloff: A Biography = Stud Dev Account Tho Abraham J. (abe) Briloff: A Biography = Stud. Dev. Account. Tho. Abraham Kuenen ( 1828-1891 ) : His Major Contributions to The Study of The Old Testament = Old Test St Abraham Kuenen ( 1828-1891 ) : His Major Contributions to The Study of The Old Testament = Old Test. St. Abram - Abraham: Kompositionsgeschichtliche Untersuchungen Zu Genesis 14, 15 Und 17 = Beih Z Alttest Wiss Abram - Abraham: Kompositionsgeschichtliche Untersuchungen Zu Genesis 14, 15 Und 17 = Beih. Z. Alttest. Wiss. Abrasive Engineering = Abrasive Eng Abrasive Engineering = Abrasive Eng. Abr-Nahrain. An Annual Published by the Department of Middle Eastern Studies, University of Melbourne = Abr-Nahrain Abr-Nahrain : an annual under the auspices of the Department of Semitic Studies, University of Melbourne = Abr Nahain Abschluss Des Zwolfprophetenbuches: Buchubergreifende Redaktionsprozesse in Den Spaten Sammlungen = Beih Z Alttest Wiss Abschluss Des Zwolfprophetenbuches: Buchubergreifende Redaktionsprozesse in Den Spaten Sammlungen = Beih. Z. Alttest. Wiss. Absent Environments: Theorising Environmental Law and The City = Law Sci Soc Absent Environments: Theorising Environmental Law and The City = Law Sci. Soc. Absolute Stability of Nonlinear Control Systems, Second Edition = Math Model-theor App Absolute Stability of Nonlinear Control Systems, Second Edition = Math. Model-theor. App. Abstracta Botanica = Abstr. Bot. Abstract and Applied Analysis = Abstr. Appl. Anal. Abstract and Applied Analysis = Abstr Appl Anal Abstract and Applied Analysis = Abstr. Appl. Anal. Abstract Harmonic Analysis of Continous Wavelet Transforms = Lect Notes Math Abstract Harmonic Analysis of Continous Wavelet Transforms = Lect. Notes. Math. Abstraction, Reformulation and Approximation, Proceedings = Lect Notes Artif Int Abstraction, Reformulation and Approximation, Proceedings = Lect. Notes. Artif. Int. Abstraction, Reformulation, and Approximation, Proceedings = Lect Notes Artif Int Abstraction, Reformulation, and Approximation, Proceedings = Lect. Notes. Artif. Int. Abstract Machine Models for Parallel and Distributed Computing = Concur Syst Engn Ser Abstract Machine Models for Parallel and Distributed Computing = Concur. Syst. Engn. Ser. Abstract Parabolic Evolution Equations and Their Applications = Springer Monogr Math Abstract Parabolic Evolution Equations and Their Applications = Springer. Monogr. Math. Abstract Phonology in A Concrete Model = Cogn Linguist Res Abstract Phonology in A Concrete Model = Cogn. Linguist. Res. Abstracts of Papers of The American Chemical Society = Abstr Pap Am Chem S Abstracts of Papers of The American Chemical Society = Abstr. Pap. Am. Chem. S. Abstracts of Papers Presented to the American Mathematical Society = Abstracts Amer. Math. Soc. Abstracts of the ... General Meeting of the American Society for Microbiology. American Society for Microbiology. General Meeting = Abstr Gen Meet Am Soc Microbiol Abstracts - Society for Neuroscience. Society for Neuroscience = Abstr Soc Neurosci Abstract State Machines 2003: Advances in Theory and Practice, Proceedings = Lect Notes Comput Sc Abstract State Machines 2003: Advances in Theory and Practice, Proceedings = Lect. Notes. Comput. Sc. Abstract State Machines 2003: Advances in Theory and Practic, Proceedings = Lect Notes Comput Sc Abstract State Machines 2003: Advances in Theory and Practic, Proceedings = Lect. Notes. Comput. Sc. Abstract State Machines 2004: Advances in Theory and Practice, Proceedings = Lect Notes Comput Sc Abstract State Machines 2004: Advances in Theory and Practice, Proceedings = Lect. Notes. Comput. Sc. Abstract State Machines, Alloy, B and Z, Proceedings = Lect Notes Comput Sc Abstract State Machines, Alloy, B and Z, Proceedings = Lect. Notes. Comput. Sc. Abstract State Machines, B and Z, Proceedings = Lect Notes Comput Sc Abstract State Machines, B and Z, Proceedings = Lect. Notes. Comput. Sc. Abundance Profiles: Diagnostic Tools for Galaxy History = Astr Soc P Abundance Profiles: Diagnostic Tools for Galaxy History = Astr. Soc. P. Abuse of Dominant Position: New Interpretation, New Enforcement Mechanisms? = Mpi Stud Intell Prop Abuse of Dominant Position: New Interpretation, New Enforcement Mechanisms? = Mpi. Stud. Intell. Prop. Abwicklung Des Masseunzulanglichen Insolvenzverfahrens = Schr Deut Eur Int In Abwicklung Des Masseunzulanglichen Insolvenzverfahrens = Schr. Deut. Eur. Int. In. Aca Arts Research Seminar Series = Aca Art R S Aca Arts Research Seminar Series = Aca Art. R. S. Acacia in Senegal = Colloq Semi Acacia in Senegal = Colloq. Semi. Academe-bulletin of The Aaup = Academe Academe-bulletin of The Aaup = Academe. Academia = Academia Academia Colombiana de Ciencias Exactas, Físicas y Naturales = Rev. Acad. Colombiana Cienc. Exact. Fís. Natur. Academia Economic Papers=Academia Econ. Pap. Academiæ Scientiarum Fennicæ = Ann. Acad. Sci. Fenn. Math. Diss. Academia Peruana de Cirugia = Acad Peru Cir Academia Peruana de Cirugia = Acad. Peru. Cir. Academia-revista Latinoamericana De Administracion = Acad-rev Latinoam Ad Academia-revista Latinoamericana De Administracion = Acad-rev. Latinoam. Ad. Academia Română = Mem. Secţ. Ştiinţ. Acad. Română Ser. IV Academia Studies in Asian Economics = Acad Stud Asian Econ Academia Studies in Asian Economics = Acad. Stud. Asian Econ. Academic Administration: A Quest for Better Management and Leadership in Higher Education = Educ Compet Glob Wor Academic Administration: A Quest for Better Management and Leadership in Higher Education = Educ. Compet. Glob. Wor. Academic and Professional Identities in Higher Education: The Challenges of A Diversifying Workforce = Int Stud High Educ Academic and Professional Identities in Higher Education: The Challenges of A Diversifying Workforce = Int. Stud. High. Educ. Academic Emergency Medicine=Acad Emerg Med;; Academic Emergency Medicine = Acad Emerg Med Academic Emergency Medicine = Acad. Emerg. Med. Academic emergency medicine : official journal of the Society for Academic Emergency Medicine = Acad Emerg Med Academic Medicine=Acad Med;; Academic Medicine = Acad Med Academic Medicine = Acad. Med. Academic medicine : journal of the Association of American Medical Colleges = Acad Med Academic Nurse = Acad. Nurse Academic Pediatrics = Acad Pediatr Academic Pediatrics = Acad. Pediatr. Academic Psychiatry = Acad Psychiatr Academic Psychiatry = Acad. Psychiatr. Academic psychiatry : the journal of the American Association of Directors of Psychiatric Residency Training and the Association for Academic Psychiatry = Acad Psychiatry Academic psychology bulletin = Academic Psychol Bull Academic Psychology Bulletin = Acad Psychol B Academic Psychology Bulletin = Acad. Psychol. B. Academic radiology = Acad Radiol Academic Radiology=Acad Radiol;; Academic Radiology = Acad Radiol Academic Radiology = Acad. Radiol. Academic Research Library in A Decade of Change = Chandos Inf Prof Ser Academic Research Library in A Decade of Change = Chandos. Inf. Prof. Ser. Academic Therapy = Acad Ther Academic Therapy = Acad. Ther. Académie des inscriptions et belles-lettres. Comptes rendus des séances de l'Académie = CRAI Académie Roumaine = Mathematica (Cluj) Académie Royale de Belgique = Acad. Roy. Belg. Bull. Cl. Sci. (6) Académie Royale de Belgique = Acad. Roy. Belg. Cl. Sci. Mém. Collect. 8$\sp \rm o$ (3) Académie Serbe des Sciences et des Arts = Acad. Serbe Sci. Arts Glas Académie Serbe des Sciences et des Arts = Bull. Acad. Serbe Sci. Arts Cl. Sci. Math. Natur. Academie Serbe Des Sciences Et Des Arts Bulletin, Tome Cxv: Classe Des Sciences Mathematiques Et Naturelles, Sciences Naturelles No 37 = Serb Ac B Academie Serbe Des Sciences Et Des Arts Bulletin, Tome Cxv: Classe Des Sciences Mathematiques Et Naturelles, Sciences Naturelles No 37 = Serb. Ac. B. Academy news (Milwaukee, Wis.) = Acad News Academy of International Business Series = Acad Int Bus Ser Academy of International Business Series = Acad. Int. Bus. Ser. Academy of International Business Series = Acad Int Bus Series Academy of International Business Series = Acad. Int. Bus. Series Academy of Management Annals = Acad Manag Ann Academy of Management Annals = Acad. Manag. Ann. Academy of Management Executive = Acad Manage Exec Academy of Management Executive = Acad. Manage. Exec. Academy of Management journal. Academy of Management = Acad Manage J Academy of Management Journal = Acad Manage J Academy of Management Journal = Acad. Manage. J. Academy of Management Learning & Education = Acad Manag Learn Edu Academy of Management Learning & Education = Acad. Manag. Learn. Edu. Academy of Management Perspectives = Acad Manage Perspect Academy of Management Perspectives = Acad. Manage. Perspect. Academy of management review. Academy of Management = Acad Manage Rev Academy of Management Review = Acad Manage Rev Academy of Management Review = Acad. Manage. Rev. Academy of Science of the People's Democratic Republic of Korea = Su-hak Academy of Sciences of Moldova = Comput. Sci. J. Moldova Academy of Sciences of the Czech Republic = Math. Bohem. Academy Review of the California Academy of Periodontology = Acad. Rev. Calif. Acad. Periodontol. Academy review of the California Academy of Periodontology, United States Section, ARPA Internationale = Acad Rev Calif Acad Periodontol Acadiensis = Acadiensis Acarologia = Acarologia ACA Transactions = ACA Trans. Accademia delle Scienze di Torino = Mem. Accad. Sci. Torino Cl. Sci. Fis. Mat. Natur. (5) Accademia Ligure di Scienze e Lettere = Atti Accad. Ligure Sci. Lett. (5) Accademia medica = Accad Medica Accademia nazionale dei Lincei. Fondazione Leone Caetani = Accad Naz Lincei Rome Accademia Nazionale delle Scienze detta dei XL = Rend. Accad. Naz. Sci. XL Mem. Mat. Appl. (5) Accademia Nazionale Virgiliana Di Scienze Lettere E Arti - Miscellana = Accad Naz Virg Sci M Accademia Nazionale Virgiliana Di Scienze Lettere E Arti - Miscellana = Accad. Naz. Virg. Sci. M. Accademia Peloritana dei Pericolanti = Atti Accad. Peloritana Pericolanti Cl. Sci. Fis. Mat. Natur. Accademia Toscana Di Science E Lettere "la Colombaria" Studies = Acad Tosc S Accademia Toscana Di Science E Lettere "la Colombaria" Studies = Acad. Tosc. S. Accademie e biblioteche d'Italia = AcBibl Accademie e biblioteche d'Italia = Accad Bibl Ital Accelerated and Outdoor Durability Testing of Organic Materials = Am Soc Test Mater Accelerated and Outdoor Durability Testing of Organic Materials = Am. Soc. Test. Mater. Accelerating Japan's Economic Growth = Routledge Stud Growt Accelerating Japan's Economic Growth = Routledge. Stud. Growt. Acceleration and Heating in The Magnetosphere = Adv Space Res Acceleration and Heating in The Magnetosphere = Adv. Space. Res. Acceleration and Heating in The Magnetosphere = Adv Space Res-series Acceleration and Heating in The Magnetosphere = Adv. Space. Res-series. Acceleration and Transport of Energetic Particles Observed in The Heliosphere = Aip Conf Proc Acceleration and Transport of Energetic Particles Observed in The Heliosphere = Aip. Conf. Proc. Accelerator-based Infrared Sources and Applications = P Soc Photo-opt Ins Accelerator-based Infrared Sources and Applications = P. Soc. Photo-opt. Ins. Accelerator-based Sources of Infrared and Spectroscopic Applications = P Soc Photo-opt Ins Accelerator-based Sources of Infrared and Spectroscopic Applications = P. Soc. Photo-opt. Ins. Accelerator Driven Systems for Energy Production and Waste Incineration: Physics, Design and Related Nuclear Data = Ictp Lect Notes Accelerator Driven Systems for Energy Production and Waste Incineration: Physics, Design and Related Nuclear Data = Ictp. Lect. Notes. Accelerator Instrumentation = Aip Conf Proc Accelerator Instrumentation = Aip. Conf. Proc. Accelerator Instrumentation / = Aip Conf Proc Accelerator Instrumentation / = Aip. Conf. Proc. Accelerator Instrumentation // = Aip Conf Proc Accelerator Instrumentation // = Aip. Conf. Proc. Accelerator Instrumentation : Second Annual Workshop = Aip Conf Proc Accelerator Instrumentation : Second Annual Workshop = Aip. Conf. Proc. Accelerator Physics At The Superconducting Super Collider = Aip Conf Proc Accelerator Physics At The Superconducting Super Collider = Aip. Conf. Proc. Accelerators in The Universe = Aip Conf Proc Accelerators in The Universe = Aip. Conf. Proc. Accentuation and Interpretation = Palg Stud Pragm Lang Accentuation and Interpretation = Palg. Stud. Pragm. Lang. Acceptability of Risk From Radiation - Application to Human Space Flight = Ncrp Symp Proc Acceptability of Risk From Radiation - Application to Human Space Flight = Ncrp. Symp. Proc. Accepting The Invisible Hand: Market-based Approaches to Social-economic Problems = Persp Soc Econ Accepting The Invisible Hand: Market-based Approaches to Social-economic Problems = Persp. Soc. Econ. Access, A Zone of Comprehension, and Intrusion = Adv Prog Eval Access, A Zone of Comprehension, and Intrusion = Adv. Prog. Eval. Accès Sciences = Accès Sci. Accessing and Sharing The Benefits of The Genomics Revolution = Int Libr Environ Agr Accessing and Sharing The Benefits of The Genomics Revolution = Int. Libr. Environ. Agr. Accessing Multilingual Information Repositories = Lect Notes Comput Sc Accessing Multilingual Information Repositories = Lect. Notes. Comput. Sc. Access, Quality and Satisfaction With Care = Res Sociol Health Ca Access, Quality and Satisfaction With Care = Res. Sociol. Health. Ca. Access to Care in Mali = Coll Homm Soc Access to Care in Mali = Coll. Homm. Soc. Access to Justice = Sociol Crime Law Dev Access to Justice = Sociol. Crime. Law. Dev. Access to Mobile Services = Adv Database Syst Access to Mobile Services = Adv. Database. Syst. Accf Center for Policy Research Monograph Series On Tax, Regulatory, and Environmental Policies and U.s, Economic Growth = Accf Ms Tax Accf Center for Policy Research Monograph Series On Tax, Regulatory, and Environmental Policies and U.s, Economic Growth = Accf Ms. Tax. Accidental Presidents: Death, Assassination, Resignation, and Democratic Succession = Evol Am Presid Accidental Presidents: Death, Assassination, Resignation, and Democratic Succession = Evol. Am. Presid. Accident; analysis and prevention = Accid Anal Prev Accident Analysis and Prevention=Accid Anal Prev;; Accident Analysis and Prevention = Accid. Anal. Prev. Accident Analysis and Prevention = Accident Anal Prev Accident Analysis and Prevention = Accident Anal. Prev. Accident and emergency nursing = Accid Emerg Nurs Accident and Emergency Nursing = Accid. Emerg. Nurs. Accidents: Causes, Analysis and Prevention = Saf Risk Soc Accidents: Causes, Analysis and Prevention = Saf. Risk. Soc. Accomplishments of The Past and Challenges of The Future = Geoth Res T Accomplishments of The Past and Challenges of The Future = Geoth. Res. T. Accountability in research = Account Res Accountability in Research-policies and Quality Assurance = Account Res Accountability in Research-policies and Quality Assurance = Account. Res. Accounting and Business Research = Account Bus Res Accounting and Business Research = Account. Bus. Res. Accounting and Causal Effects: Econometric Challenges = Springer Ser Account Accounting and Causal Effects: Econometric Challenges = Springer. Ser. Account. Accounting and Finance = Account Financ Accounting and Finance = Account. Financ. Accounting, Banking and Corporate Financial Management in Emerging Economies = Res Account Emerg Ec Accounting, Banking and Corporate Financial Management in Emerging Economies = Res. Account. Emerg. Ec. Accounting, Business and Financial History=Acc., Bus. Finan. Hist. Accounting for Goodwill = Routl Stud Account Accounting for Goodwill = Routl. Stud. Account. Accounting for Worker Well-being = Res Labor Econ Accounting for Worker Well-being = Res. Labor. Econ. Accounting Horizons = Account Horiz Accounting Horizons = Account. Horiz. Accounting in Emerging Economies = Res Account Emerg Ec Accounting in Emerging Economies = Res. Account. Emerg. Ec. Accounting Organizations and Society = Account Org Soc Accounting Organizations and Society = Account. Org. Soc. Accounting Review = Account Rev Accounting Review = Account. Rev. Accounting Review=Acc. Rev. Accounts in Drug Discovery: Case Studies in Medicinal Chemistry = Rsc Drug Discov Accounts in Drug Discovery: Case Studies in Medicinal Chemistry = Rsc. Drug Discov. Accounts of chemical research = Acc Chem Res Accounts of Chemical Research = Acc. Chem. Res. Accounts of Chemical Research = Accounts Chem Res Accounts of Chemical Research = Accounts Chem. Res. Acc: Proceedings of The 2005 American Control Conference, Vols 1-7 = P Amer Contr Conf Acc: Proceedings of The 2005 American Control Conference, Vols 1-7 = P. Amer. Contr. Conf. Accreditation and Quality Assurance = Accredit Qual Assur Accreditation and Quality Assurance = Accredit. Qual. Assur. Accretion and Ejection in Agn : A Global View = Astr Soc P Accretion and Ejection in Agn : A Global View = Astr. Soc. P. Accretionary Prisms and Convergent Margin Tectonics in The Northwest Pacific Basin = Mod Appr Sol Earth S Accretionary Prisms and Convergent Margin Tectonics in The Northwest Pacific Basin = Mod. Appr. Sol. Earth. S. Accretion Discs, Jets and High Energy Phenomena in Astrophysics = Les Houch S Accretion Discs, Jets and High Energy Phenomena in Astrophysics = Les. Houch. S. Accretion Disks and Magnetic Fields in Astrophysics = Astrophys Space Sc L Accretion Disks and Magnetic Fields in Astrophysics = Astrophys. Space. Sc. L. Accretion Disks - New Aspects = Lect Notes Phys Accretion Disks - New Aspects = Lect. Notes. Phys. Accretion Phenomena and Related Outflows = Astr Soc P Accretion Phenomena and Related Outflows = Astr. Soc. P. Accretion Processes in Astrophysical Systems: Some Like It Hot! = Aip Conf Proc Accretion Processes in Astrophysical Systems: Some Like It Hot! = Aip. Conf. Proc. Accuracy in Powder Diffraction Ii = Nist Spec Publ Accuracy in Powder Diffraction Ii = Nist. Spec. Publ. Accuracy of Element Abundances From Stellar Atmospheres = Lect Notes Phys Accuracy of Element Abundances From Stellar Atmospheres = Lect. Notes. Phys. Acdi Seminaires & Colloques = Acdi Semin Colloq Acdi Seminaires & Colloques = Acdi Semin. Colloq. Aceee Books On Energy Policy and Energy Efficiency = Aceee Ener Pol Ener Aceee Books On Energy Policy and Energy Efficiency = Aceee Ener. Pol. Ener. Aceh, Indonesia: Securing The Insecure State = Ethnogr Polit Violen Aceh, Indonesia: Securing The Insecure State = Ethnogr. Polit. Violen. Aceh Peace Process: Why It Failed = Pol Stud Aceh Peace Process: Why It Failed = Pol. Stud. ACE quarterly = ACE Q ACES Bulletin=ACES Bull. Acetylcholine in The Cerebral Cortex = Prog Brain Res Acetylcholine in The Cerebral Cortex = Prog. Brain. Res. Acheulian Site of Gesher Benot Ya'aqov, Vol 2: Ancient Flames and Controlled Use of Fire = Vertebr Paleobiol Pa Acheulian Site of Gesher Benot Ya'aqov, Vol 2: Ancient Flames and Controlled Use of Fire = Vertebr. Paleobiol. Pa. Achievement Gap Research Practice and Policy = Achiev Gap Res Pract Achievement Gap Research Practice and Policy = Achiev. Gap Res. Pract. Achievements and New Directions in Subatomic Physics: Festschrift in Honour of Tony Thomas 60th Birthday = Aip Conf Proc Achievements and New Directions in Subatomic Physics: Festschrift in Honour of Tony Thomas 60th Birthday = Aip. Conf. Proc. Achievements in Engineering Materials, Energy, Management and Control Based On Information Technology, Pts 1 and 2 = Adv Mater Res-switz Achievements in Engineering Materials, Energy, Management and Control Based On Information Technology, Pts 1 and 2 = Adv. Mater. Res-switz. Achieving A Sustainable Global Energy System: Identifying Possibilities Using Long-term Energy Scenarios = Esri Stud Environ Achieving A Sustainable Global Energy System: Identifying Possibilities Using Long-term Energy Scenarios = Esri. Stud. Environ. Achieving Complete Band Gaps Using Low Refractive Index Material = Nanotechnol Sci Tech Achieving Complete Band Gaps Using Low Refractive Index Material = Nanotechnol. Sci. Tech. Achieving Economic Development in The Era of Globalization = Routl Stud Dev Econ Achieving Economic Development in The Era of Globalization = Routl. Stud. Dev. Econ. Achieving Interoperability in Critical It and Communication Systems = Artech Hse Mob Comm Achieving Interoperability in Critical It and Communication Systems = Artech. Hse. Mob. Comm. Achieving Price Stability = Fed Bank Ks Achieving Price Stability = Fed. Bank. Ks. Achieving The Millennium Development Goals = Stud Dev Econ Policy Achieving The Millennium Development Goals = Stud. Dev. Econ. Policy. Achilles of Rationalist Psychology = Stud Hist Philos Min Achilles of Rationalist Psychology = Stud. Hist. Philos. Min. Ach-models in Chemistry = Ach-models Chem Ach-models in Chemistry = Ach-models Chem. ACH - Models in Chemistry = ACH - Models Chem. ACH - Models in Chemistry =ACH - Models Chem. Achse, Rad und Wagen. Beiträge zur Geschichte der Landfahrzeuge = Achse Aciar Monograph Series = Aciar Mg S Aciar Monograph Series = Aciar Mg. S. Aciar Proceedings Series = Aciar Proc Aciar Proceedings Series = Aciar Proc. Aciar Technical Reports = Aciar Tec R Aciar Technical Reports = Aciar Tec. R. Acid-base Catalysis Ii = Stud Surf Sci Catal Acid-base Catalysis Ii = Stud. Surf. Sci. Catal. Acidic Mining Lakes = Environm Sci Acidic Mining Lakes = Environm. Sci. Acidification of Inland Waters = Publ Wat Environ Adm Acidification of Inland Waters = Publ. Wat. Environ. Adm. Acidification Research : Evaluation and Policy Applications = Stud Environ Sci Acidification Research : Evaluation and Policy Applications = Stud. Environ. Sci. Acidity and Basicity = Mol Sieves Sci Techn Acidity and Basicity = Mol. Sieves. Sci. Techn. Acidity and Basicity of Solids = Nato Adv Sci Inst Se Acidity and Basicity of Solids = Nato. Adv. Sci. Inst. Se. Acido-basic Catalysis: Application to Refining and Petrochemistry, Vol 1 = Inst Fran Petr Publ Acido-basic Catalysis: Application to Refining and Petrochemistry, Vol 1 = Inst. Fran. Petr. Publ. Acido-basic Catalysis: Application to Refining and Petrochemistry, Vol 2 = Inst Fran Petr Publ Acido-basic Catalysis: Application to Refining and Petrochemistry, Vol 2 = Inst. Fran. Petr. Publ. Acid Rain: Are The Problems Solved? Conference Proceedings = Tr Fish Sci Acid Rain: Are The Problems Solved? Conference Proceedings = Tr. Fish. Sci. Acid Rain Research: Do We Have Enough Answers? = Stud Environ Sci Acid Rain Research: Do We Have Enough Answers? = Stud. Environ. Sci. Aci Materials Journal = Aci Mater J Aci Materials Journal = Aci Mater. J. ACI Materials Journal = ACI Mater. J. Aci Structural Journal = Aci Struct J Aci Structural Journal = Aci Struct. J. Acl-mit Press Series in Natural Language Processing = Acl Mit Nat Acl-mit Press Series in Natural Language Processing = Acl. Mit. Nat. Acm Computing Surveys = Acm Comput Surv Acm Computing Surveys = Acm Comput. Surv. ACM Distinguished Theses = ACM Disting. Theses Acme. Annali della Facoltà di lettere e filosofia dell'Università degli studi di Milano = Acme Acm-ieee Design Automation Conference, Proceedings = Acm Ieee D Acm-ieee Design Automation Conference, Proceedings = Acm. Ieee. D. Acm Journal On Emerging Technologies in Computing Systems = Acm J Emerg Tech Com Acm Journal On Emerging Technologies in Computing Systems = Acm J. Emerg. Tech. Com. Acmos '08: Proceedings of The 10th Wseas International Conference On Automatic Control, Modelling and Simulation = Ele Com Eng Acmos '08: Proceedings of The 10th Wseas International Conference On Automatic Control, Modelling and Simulation = Ele. Com. Eng. ACM queue : tomorrow's computing today = ACM Queue Acm Sigada Annual International Conference (sigada'99) - Proceedings = Ada Letters Acm Sigada Annual International Conference (sigada'99) - Proceedings = Ada. Letters. Acm Sigarch Computer Architecture News = Acm Comp Ar Acm Sigarch Computer Architecture News = Acm Comp. Ar. Acm Sigcomm'99 Conference: Applications, Technologies, Architectures, and Protocols for Computer Communications = Comp Comm R Acm Sigcomm'99 Conference: Applications, Technologies, Architectures, and Protocols for Computer Communications = Comp. Comm. R. Acm Sigmetrics Performance Evaluation Review Special Issue = Perf E R Si Acm Sigmetrics Performance Evaluation Review Special Issue = Perf. E. R. Si. Acm Sigmetrics Performance Evaluation Review, Special Issue = Perf E R Si Acm Sigmetrics Performance Evaluation Review, Special Issue = Perf. E. R. Si. Acm Sigmod Record = Sigmod Rec Acm Sigmod Record = Sigmod Rec. Acm Sigplan Notices = Acm Sigplan Notices Acm Sigsoft Software Engineering Notes = Acm Sigsoft Acm Symposium On Modeling Analysis and Simulation of Wireless and Mobile Systems = Acm S Model Anal Sim Acm Symposium On Modeling Analysis and Simulation of Wireless and Mobile Systems = Acm S. Model. Anal. Sim. Acm Transactions On Algorithms = Acm T Algorithms Acm Transactions On Algorithms = Acm T. Algorithms Acm Transactions On Applied Perception = Acm T Appl Percept Acm Transactions On Applied Perception = Acm T. Appl. Percept. Acm Transactions On Architecture and Code Optimization = Acm T Archit Code Op Acm Transactions On Architecture and Code Optimization = Acm T. Archit. Code Op. Acm Transactions On Autonomous and Adaptive Systems = Acm T Auton Adap Sys Acm Transactions On Autonomous and Adaptive Systems = Acm T. Auton. Adap. Sys. Acm Transactions On Computational Logic = Acm T Comput Log Acm Transactions On Computational Logic = Acm T. Comput. Log. Acm Transactions On Computer-human Interaction = Acm T Comput-hum Int Acm Transactions On Computer-human Interaction = Acm T. Comput-hum. Int. Acm Transactions On Computer Systems = Acm T Comput Syst Acm Transactions On Computer Systems = Acm T. Comput. Syst. Acm Transactions On Database Systems = Acm T Database Syst Acm Transactions On Database Systems = Acm T. Database Syst. Acm Transactions On Design Automation of Electronic Systems = Acm T Des Automat El Acm Transactions On Design Automation of Electronic Systems = Acm T. Des. Automat. El. Acm Transactions On Embedded Computing Systems = Acm T Embed Comput S Acm Transactions On Embedded Computing Systems = Acm T. Embed. Comput. S. Acm Transactions On Graphics = Acm T Graphic Acm Transactions On Graphics = Acm T. Graphic. Acm Transactions On Information and System Security = Acm T Inform Syst Se Acm Transactions On Information and System Security = Acm T. Inform. Syst. Se. Acm Transactions On Information Systems = Acm T Inform Syst Acm Transactions On Information Systems = Acm T. Inform. Syst. Acm Transactions On Internet Technology = Acm T Internet Techn Acm Transactions On Internet Technology = Acm T. Internet Techn. Acm Transactions On Mathematical Software = Acm T Math Software Acm Transactions On Mathematical Software = Acm T. Math. Software Acm Transactions On Modeling and Computer Simulation = Acm T Model Comput S Acm Transactions On Modeling and Computer Simulation = Acm T. Model. Comput. S. Acm Transactions On Multimedia Computing Communications and Applications = Acm T Multim Comput Acm Transactions On Multimedia Computing Communications and Applications = Acm T. Multim. Comput. Acm Transactions On Office Information Systems = Acm T Inform Syst Acm Transactions On Office Information Systems = Acm T. Inform. Syst. Acm Transactions On Office Information Systems = Acm T Off Inf Syst Acm Transactions On Office Information Systems = Acm T. Off. Inf. Syst. Acm Transactions On Programming Languages and Systems = Acm T Progr Lang Sys Acm Transactions On Programming Languages and Systems = Acm T. Progr. Lang. Sys. Acm Transactions On Sensor Networks = Acm Trans Sens Netw Acm Transactions On Sensor Networks = Acm Trans. Sens. Netw. Acm Transactions On Sensor Networks = Acm T Sensor Network Acm Transactions On Sensor Networks = Acm T. Sensor Network. Acm Transactions On Software Engineering and Methodology = Acm T Softw Eng Meth Acm Transactions On Software Engineering and Methodology = Acm T. Softw. Eng. Meth. Acm Transactions On The Web = Acm T Web Acm Transactions On The Web = Acm T. Web Acne: Causes, Treatment and Myths = Dermatol Lab Clin Re Acne: Causes, Treatment and Myths = Dermatol. Lab. Clin. Re. Acne: Review of Current Treatments and Best Practice = Roy S Med S Acne: Review of Current Treatments and Best Practice = Roy. S. Med. S. ACOG committee opinion = ACOG Comm Opin ACOG educational bulletin = ACOG Educ Bull ACOG nurses bulletin = Acog Nurse Bull ACOG technical bulletin = ACOG Tech Bull A common place = Common Place Acontia. Revista de arqueología = Acontia Acoustical Imaging = Acoust Imag Acoustical Imaging = Acoust. Imag. Acoustical Imaging = Acoust. Imaging Acoustical Imaging, Vol 19 = Acoust Imag Acoustical Imaging, Vol 19 = Acoust. Imag. Acoustical Imaging, Vol 20 = Acoust Imag Acoustical Imaging, Vol 20 = Acoust. Imag. Acoustical Imaging, Vol 22 = Acoust Imag Acoustical Imaging, Vol 22 = Acoust. Imag. Acoustical Imaging, Vol 23 = Acoust Imag Acoustical Imaging, Vol 23 = Acoust. Imag. Acoustical Imaging, Vol 24 = Acoust Imag Acoustical Imaging, Vol 24 = Acoust. Imag. Acoustical Imaging, Vol 25 = Acoust Imag Acoustical Imaging, Vol 25 = Acoust. Imag. Acoustical Imaging, Vol 26 = Acoust Imag Acoustical Imaging, Vol 26 = Acoust. Imag. Acoustical Imaging, Vol 27 = Acoust Imag Acoustical Imaging, Vol 27 = Acoust. Imag. Acoustical Imaging, Vol 28 = Acoust Imag Acoustical Imaging, Vol 28 = Acoust. Imag. Acoustical Imaging, Vol 29 = Acoust Imag Acoustical Imaging, Vol 29 = Acoust. Imag. Acoustical Physics = Acoust Phys+ Acoustical Physics = Acoust. Phys. Acoustical Physics = Acoust. Phys+.+ Acoustic Cavitation Theory and Equipment Design Principles for Industrial Applications of High-intensity Ultrasound = Phys Res Technol Acoustic Cavitation Theory and Equipment Design Principles for Industrial Applications of High-intensity Ultrasound = Phys. Res. Technol. Acoustic Emission : Current Practice and Future Directions = Am Soc Test Mater Acoustic Emission : Current Practice and Future Directions = Am. Soc. Test. Mater. Acoustic Emission: Standards and Technology Update = Am Soc Test Mater Acoustic Emission: Standards and Technology Update = Am. Soc. Test. Mater. Acoustic Emission Testing = Adv Mater Res-switz Acoustic Emission Testing = Adv. Mater. Res-switz. Acoustic Emission Testing = Adv Mat Res Acoustic Emission Testing = Adv. Mat. Res. Acoustic Emission Testing of Aerial Devices and Associated Equipment Used in The Utility Industries = Am Soc Test Mater Acoustic Emission Testing of Aerial Devices and Associated Equipment Used in The Utility Industries = Am. Soc. Test. Mater. Acoustic Neuroma = Keio U Int Symp Life Acoustic Neuroma = Keio. U. Int. Symp. Life. Acoustic Particle Velocity Sensors: Design, Performance, and Applications = Aip Conf Proc Acoustic Particle Velocity Sensors: Design, Performance, and Applications = Aip. Conf. Proc. Acoustics Australia = Acoust Aust Acoustics Australia = Acoust. Aust. Acoustics Australia / Australian Acoustical Society = Acoust Aust Acoustic Signal Processing for Ocean Exploration = Nato Adv Sci Inst Se Acoustic Signal Processing for Ocean Exploration = Nato. Adv. Sci. Inst. Se. Acoustics Research Letters Online = Acoust. Res. Lett. Online Acoustics Research Letters Online-arlo = Acoust Res Lett Onl Acoustics Research Letters Online-arlo = Acoust. Res. Lett. Onl. Acoustics research letters online : ARLO = Acoust Res Lett Online Acoustics Today = Acoust. Today Acoustic Technology 90 = Vdi Bericht Acoustic Technology 90 = Vdi. Bericht. Acoustic Wave and Electromechanical Resonators = Artech Hse Integr Mi Acoustic Wave and Electromechanical Resonators = Artech. Hse. Integr. Mi. Acousto-optics and Applications Iii = Proc Spie Acousto-optics and Applications Iii = Proc. Spie. Acousto-optics and Applications Iii = P Soc Photo-opt Ins Acousto-optics and Applications Iii = P. Soc. Photo-opt. Ins. Acousto-optics and Applications Ii = P Soc Photo-opt Ins Acousto-optics and Applications Ii = P. Soc. Photo-opt. Ins. Acousto-optics and Applications Iv = P Soc Photo-opt Ins Acousto-optics and Applications Iv = P. Soc. Photo-opt. Ins. Acousto-optics and Applications = P Soc Photo-opt Ins Acousto-optics and Applications = P. Soc. Photo-opt. Ins. Acousto-optics and Applications V = P Soc Photo-opt Ins Acousto-optics and Applications V = P. Soc. Photo-opt. Ins. Acp-applied Cardiopulmonary Pathophysiology = Acp-appl Cardiopul P Acp-applied Cardiopulmonary Pathophysiology = Acp-appl. Cardiopul. P. ACP journal club = ACP J Club ACP Journal Club=ACP J Club;; ACP Journal Club = ACP J. Club Acquired Aphasia in Children = Nato Adv Sci I D-beh Acquired Aphasia in Children = Nato. Adv. Sci. I. D-beh. Acquired immunodeficiency syndrome (AIDS) weekly surveillance report / AIDS Activity, Center for Infectious Diseases, Centers for Disease Control = Acquir Immunodefic Syndr (AIDS) Wkly Surveill Rep Acquisition of Finiteness = Stud Generat Gramm Acquisition of Finiteness = Stud. Generat. Gramm. Acquisition of Intensifiers: Emphatic Reflexives in English and German Child Language = Stud Lang Acquis Acquisition of Intensifiers: Emphatic Reflexives in English and German Child Language = Stud. Lang. Acquis. Acquisition of Numeral Classifiers: The Case of Japanese Children = Stud Lang Acquis Acquisition of Numeral Classifiers: The Case of Japanese Children = Stud. Lang. Acquis. Acquisition of Verbs and Their Grammar: The Effect of Particular Languages = Stud Theor Psycholin Acquisition of Verbs and Their Grammar: The Effect of Particular Languages = Stud. Theor. Psycholin. Acquisition of Word Order in Chinese As A Foreign Language = Stud Lang Acquis Acquisition of Word Order in Chinese As A Foreign Language = Stud. Lang. Acquis. Acquisitions medicales recentes = Acquis Med Recent Acquisitions Medicales Recentes = Acquis. Med. Recent. Acquisitions, Tracking, Pointing, and Laser Systems Technologies Xxi = P Soc Photo-opt Ins Acquisitions, Tracking, Pointing, and Laser Systems Technologies Xxi = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Iii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Iii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Ix = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Ix = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Viii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Viii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Vii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Vii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Vi = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Vi = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing V = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing V = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xiii = Proc Spie Acquisition, Tracking, and Pointing Xiii = Proc. Spie. Acquisition, Tracking, and Pointing Xiii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xiii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xi = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xi = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xiv = Proc Spie Acquisition, Tracking, and Pointing Xiv = Proc. Spie. Acquisition, Tracking, and Pointing Xiv = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xiv = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xix = Proc Spie Acquisition, Tracking, and Pointing Xix = Proc. Spie. Acquisition, Tracking, and Pointing Xix = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xix = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing X = Proc Spie Acquisition, Tracking, and Pointing X = Proc. Spie. Acquisition, Tracking, and Pointing X = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing X = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xviii = Proc Spie Acquisition, Tracking, and Pointing Xviii = Proc. Spie. Acquisition, Tracking, and Pointing Xviii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xviii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xvii = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xvii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xvi = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xvi = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xv = Proc Spie Acquisition, Tracking, and Pointing Xv = Proc. Spie. Acquisition, Tracking, and Pointing Xv = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xv = P. Soc. Photo-opt. Ins. Acquisition, Tracking, and Pointing Xx = Proc Spie Acquisition, Tracking, and Pointing Xx = Proc. Spie. Acquisition, Tracking, and Pointing Xx = P Soc Photo-opt Ins Acquisition, Tracking, and Pointing Xx = P. Soc. Photo-opt. Ins. Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxii = Proc Spie Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxii = Proc. Spie. Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxii = P Soc Photo-opt Ins Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxii = P. Soc. Photo-opt. Ins. Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxv = Proc Spie Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxv = Proc. Spie. Acquisition, Utilisation and The Impact of Patent and Market Information On Innovation Activities = Vtt Res Notes Acquisition, Utilisation and The Impact of Patent and Market Information On Innovation Activities = Vtt. Res. Notes. Acquistion, Tracking, and Pointing Iv = P Soc Photo-opt Ins Acquistion, Tracking, and Pointing Iv = P. Soc. Photo-opt. Ins. ACRH Reports = ACRH Rep. ACRH [reports]. U.S. Atomic Energy Commission = ACRH Rep A Crianca portuguesa = Crianca Port Acrida = Acrida A Critical Review: Laser Technologies for Defense and Security = P Soc Photo-opt Ins A Critical Review: Laser Technologies for Defense and Security = P. Soc. Photo-opt. Ins. Across Languages and Cultures = Across Lang Cult Across Languages and Cultures = Across Lang. Cult. Across The Board = Across Board Across the board = Across Board (NY) Across the Board = Across Board (N. Y.) Across The Religious Divide = Routl Res Gend Soc Across The Religious Divide = Routl. Res. Gend. Soc. Acrylamide and Other Hazardous Compounds in Heat-treated Foods = Woodhead Food Ser Acrylamide and Other Hazardous Compounds in Heat-treated Foods = Woodhead. Food. Ser. Acs'09: Proceedings of The 9th Wseas International Conference On Applied Computer Science = Rec Adv Comput Eng Acs'09: Proceedings of The 9th Wseas International Conference On Applied Computer Science = Rec. Adv. Comput. Eng. Acsa Architectural Education Series = Acsa Archit Educ Ser Acsa Architectural Education Series = Acsa Archit. Educ. Ser. Acs Applied Materials & Interfaces = Acs Appl Mater Inter Acs Applied Materials & Interfaces = Acs Appl. Mater. Inter. ACS Applied Materials & Interfaces = ACS Appl. Mater. Interfaces Acs Catalysis = Acs Catal Acs Catalysis = Acs Catal. Acs Chemical Biology = Acs Chem Biol Acs Chemical Biology = Acs Chem. Biol. ACS chemical biology = ACS Chem Biol ACS Chemical Biology = ACS Chem. Biol. Acs Chemical Neuroscience = Acs Chem Neurosci Acs Chemical Neuroscience = Acs Chem. Neurosci. ACS Chemical Neuroscience = ACS Chem. Neurosci. Acs Combinatorial Science = Acs Comb Sci Acs Combinatorial Science = Acs Comb. Sci. Acs Medicinal Chemistry Letters = Acs Med Chem Lett Acs Medicinal Chemistry Letters = Acs Med. Chem. Lett. ACS Medicinal Chemistry Letters = ACS Med. Chem. Lett. Acs Miscellaneous Publication = Acs Misc P Acs Miscellaneous Publication = Acs Misc. P. Acsms Health & Fitness Journal = Acsms Health Fit J Acsms Health & Fitness Journal = Acsms Health Fit. J. Acs Nano = Acs Nano ACS Nano = ACS Nano ACS Symposium Series = ACS Symp. Ser. Acs Symposium Series = Acs Sym Ser Acs Symposium Series = Acs Sym. Ser. Acta Academiae Aboensis = ActaAcAbo Acta Academiae Aboensis = Acta Acad. Abo. Ser. B Acta Academiae Aboensis : Ser B Math Et Phys = Act Acad Ab Acta Academiae Aboensis : Ser B Math Et Phys = Act. Acad. Ab. Acta Academiae Medicinae Wuhan = Acta Acad. Med. Wuhan Acta Academiae Scientiarum Polonae / Polska Akademia Nauk = Acta Acad Sci Pol Acta Acustica = Acta Acust Acta Acustica = Acta Acust. Acta Acustica United With Acustica = Acta Acust United Ac Acta Acustica United With Acustica = Acta Acust. United Ac. Acta ad archaeologiam et artium historiam pertinentia = AAAH Acta ad archaeologiam et artium historiam pertinentia = ActaAArtHist Acta ad archaeologiam et artium historiam pertinentia. Series altera in 8 = ActaAArtHist SA Acta Adriatica = Acta Adriat Acta Adriatica = Acta Adriat. Acta Agralia Fennica = Acta Agral. Fenn. Acta Agraria et Silvestria, Seria Lesna, Krakau = Acta Agrar. Silv., Ser. Lesn. (Krak.) Acta Agriculturae Scandinavica = Acta Agr Scand Acta Agriculturae Scandinavica = Acta Agr. Scand. Acta Agriculturae Scandinavica Section A: Animal Science = Acta Agric. Scand. Sect A Acta Agriculturae Scandinavica Section A-animal Science = Acta Agr Scand A-an Acta Agriculturae Scandinavica Section A-animal Science = Acta Agr. Scand. A-an. Acta Agriculturae Scandinavica Section B: Soil and Plant Science = Acta Agric. Scand. Sect B Acta Agriculturae Scandinavica Section B-soil and Plant Science = Acta Agr Scand B-s P Acta Agriculturae Scandinavica Section B-soil and Plant Science = Acta Agr. Scand. B-s. P. Acta Agrobotanica = Acta Agrobot Acta Agrobotanica = Acta Agrobot. Acta Agronomica Academiae Scientiarum Hungaricae = Acta Agron Hung Acta Agronomica Academiae Scientiarum Hungaricae = Acta Agron. Hung. Acta agronomica = Acta Agron Acta Alimentaria = Acta Aliment Hung Acta Alimentaria = Acta Aliment. Hung. Acta allergologica = Acta Allergol Acta Allergologica = Acta Allergol Acta Allergologica = Acta Allergol. Acta allergologica. Supplementum = Acta Allergol Suppl (Copenh) Acta anaesthesiologica = Acta Anaesthesiol Acta Anaesthesiologica = Acta Anaesthesiol. Acta Anaesthesiologica Belgica = Acta Anaesth Belg Acta Anaesthesiologica Belgica = Acta Anaesth. Belg. Acta anaesthesiologica Belgica = Acta Anaesthesiol Belg Acta Anaesthesiologica Belgica=Acta Anaesthesiol Belg;; Acta Anaesthesiologica Belgica = Acta Anaesthesiol. Belg. Acta anaesthesiologica italica = Acta Anaesthesiol Ital Acta anaesthesiologica Scandinavica = Acta Anaesthesiol Scand Acta Anaesthesiologica Scandinavica=Acta Anaesthesiol Scand;; Acta Anaesthesiologica Scandinavica = Acta Anaesthesiol. Scand. Acta Anaesthesiologica Scandinavica = Acta Anaesth Scand Acta Anaesthesiologica Scandinavica = Acta Anaesth. Scand. Acta anaesthesiologica Scandinavica. Supplementum = Acta Anaesthesiol Scand Suppl Acta Anaesthesiologica Scandinavica. Supplementum=Acta Anaesthesiol Scand Suppl;; Acta Anaesthesiologica Scandinavica. Supplementum = Acta Anaesthesiol. Scand. Suppl. Acta anaesthesiologica Sinica = Acta Anaesthesiol Sin Acta Anaesthesiologica Sinica = Acta Anaesthesiol. Sin. Acta Anaesthesiologica Taiwanica = Acta Anaesthesiol. Taiwan. Acta anaesthesiologica Taiwanica : official journal of the Taiwan Society of Anesthesiologists = Acta Anaesthesiol Taiwan Acta Analytica-international Periodical for Philosophy in The Analytical Tradition = Acta Anal Acta Analytica-international Periodical for Philosophy in The Analytical Tradition = Acta Anal. Acta Analytica: Philosophy and Psychology = Acta Analyt Acta Analytica: Philosophy and Psychology = Acta Analyt. Acta Anatomica = Acta Anat Acta Anatomica = Acta Anat. Acta anatomica = Acta Anat (Basel) Acta Anatomica=Acta Anat (Basel);; Acta Anatomica = Acta Anat. (Basel) Acta Anatomica. Supplement = Acta Anat. Suppl. (Basel) Acta anatomica. Supplementum = Acta Anat Suppl (Basel) Acta anthropogenetica = Acta Anthropogenet Acta Anthropogenetica = Acta Anthropogenet. Acta Antiqua Academiae Scientiarum Hungaricae = AAntHung Acta antiqua Academiae scientiarum Hungaricae = ActaAntHung Acta antiqua Academiae Scientiarum Hungaricae = Acta Antiq Hung Acta Antiqua Academiae Scientiarum Hungaricae = Acta Antiqua Hung Acta Antiqua Academiae Scientiarum Hungaricae = Acta Antiqua Hung. Acta applicandae mathematicae = Acta Appl Math Acta Applicandae Mathematicae = Acta Appl. Math. Acta Applicandae Mathematicae = Acta Appl Math Acta Applicandae Mathematicae = Acta Appl. Math. Acta Archaeologica = AArch Acta Archaeologica Academiae Scientiarum Hungaricae = AArchHung Acta archaeologica Academiae scientiarum Hungaricae = ActaArchHung Acta Archaeologica = Acta Archaeol. Acta Archaeologica = Acta Archaeol-den Acta Archaeologica = Acta Archaeol-den. Acta Archaeologica (Arheoloski Vestnik) = AArchSlov Acta archaeologica Carpathica = ActaACarp Acta archaeologica. København = ActaArch Acta archaeologica Lovaniensia = ActaALov Acta archaeologica Lovaniensia. Monographiae = ActaALovMono Acta argentina de fisiologia y fisiopatologia = Acta Argent Fisiol Fisiopatol Acta Arithmetica = Acta Arith. Acta Arithmetica = Acta Arith Acta Arithmetica = Acta Arith. Acta Associationis internationalis »Terra antiqua balcanica« = TerraAntBalc Acta astronautica = Acta Astronaut Acta Astronautica = Acta Astronaut Acta Astronautica = Acta Astronaut. Acta Astronomica = Acta Astron. Acta Astronomica = Acta Astronom Acta Astronomica = Acta Astronom. Acta Astronomica Sinica = Acta Astronom. Sinica Acta Astrophysica Sinica = Acta Astrophys. Sinica Acta Automatica Sinica = Acta Automat. Sinica Acta Automatica Sinica = Acta Autom. Sin. Acta Baltica = Acta Balt Acta Belgica de arte medicinali et pharmaceutica militari = Acta Belg Arte Med Pharm Mil Acta Belgica historiae medicinae : official journal of the Belgian Association for the History of Medicine / Societas Belgica Historiae Medicinae = Acta Belg Hist Med Acta Belgica. Medica Physica = Acta Belg. Med. Phys. Acta Belgica. Medica physica : organe officiel de la Societe royale belge de medecine physique et de rehabilitation = Acta Belg Med Phys Acta Bernensia = Acta Bern. Acta Bibliothecae R. Universitatis Upsaliensis = Acta Bibl Upsal Acta Bibliothecae R. Universitatis Upsaliensis = Acta Bibl. Upsal. Acta Biochimica and Biophysica Academiae Scientarium Hungarica = Acta Biochimica B A Acta Biochimica and Biophysica Academiae Scientarium Hungarica = Acta Biochimica B. A. Acta biochimica et biophysica; Academiae Scientiarum Hungaricae = Acta Biochim Biophys Acad Sci Hung Acta Biochimica et Biophysica Academiae Scientiarum Hungaricae = Acta Biochim. Biophys. Acad. Sci. Hung. Acta Biochimica Et Biophysica Hungarica = Acta Biochim Biophys Acta Biochimica Et Biophysica Hungarica = Acta Biochim. Biophys. Acta biochimica et biophysica Hungarica = Acta Biochim Biophys Hung Acta Biochimica et Biophysica Hungarica = Acta Biochim. Biophys. Hung. Acta Biochimica Et Biophysica Sinica = Acta Bioch Bioph Sin Acta Biochimica Et Biophysica Sinica = Acta Bioch. Bioph. Sin. Acta Biochimica et Biophysica Sinica = Acta Biochim. Biophy. Sin. Acta Biochimica et Biophysica Sinica = Acta Biochim. Biophys. Sin. Acta biochimica et biophysica Sinica = Acta Biochim Biophys Sin (Shanghai) Acta Biochimica Iranica = Acta Biochim Iran Acta Biochimica Iranica = Acta Biochim. Iran. Acta biochimica Polonica = Acta Biochim Pol Acta Biochimica Polonica=Acta Biochim Pol;; Acta Biochimica Polonica = Acta Biochim Pol Acta Biochimica Polonica = Acta Biochim. Pol. Acta Bioethica = Acta Bioeth Acta Bioethica = Acta Bioeth. Acta biologiae experimentalis = Acta Biol Exp (Warsz) Acta Biologiae Experimentalis = Acta Biol. Exp. (Warsz.) Acta Biologica Academiae Scientiarum Hungaricae = Acta Biol Acad Sci H Acta Biologica Academiae Scientiarum Hungaricae = Acta Biol. Acad. Sci. H. Acta biologica Academiae Scientiarum Hungaricae = Acta Biol Acad Sci Hung Acta Biologica Academiae Scientiarum Hungaricae = Acta Biol. Acad. Sci. Hung. Acta Biologica Cracoviensia Series Botanica = Acta Biol Cracov Bot Acta Biologica Cracoviensia Series Botanica = Acta Biol. Cracov. Bot. Acta Biologica Cracoviensia Series Zoologia = Acta Biol Cracov Zoo Acta Biologica Cracoviensia Series Zoologia = Acta Biol. Cracov. Zoo. Acta biologica et medica = Acta Biol Med (Gdansk) Acta Biologica et Medica = Acta Biol. Med. (Gdansk) Acta biologica et medica Germanica = Acta Biol Med Ger Acta Biologica et Medica Germanica = Acta Biol. Med. Ger. Acta Biologica Et Medica Germanica = Acta Biol Med Ger Acta Biologica Et Medica Germanica = Acta Biol. Med. Ger. Acta biologica Hungarica = Acta Biol Hung Acta Biologica Hungarica=Acta Biol Hung;; Acta Biologica Hungarica = Acta Biol Hung Acta Biologica Hungarica = Acta Biol. Hung. Acta Biologica Montana = Acta Biol. Mont. Acta biomaterialia = Acta Biomater Acta Biomaterialia = Acta Biomater Acta Biomaterialia = Acta Biomater. Acta bio-medica : Atenei Parmensis = Acta Biomed Acta Bio-Medica de l'Ateneo Parmense = Acta Biomed. Ateneo Parmense Acta Bio-Medica de L Ateneo Parmense=Acta Biomed Ateneo Parmense;; Acta bio-medica de L'Ateneo parmense : organo della Societa di medicina e scienze naturali di Parma = Acta Biomed Ateneo Parmense Acta Bioquimica Clinica Latinoamericana = Acta Bioquim Clin L Acta Bioquimica Clinica Latinoamericana = Acta Bioquim. Clin. L. Acta Bioquimica Clinica Latinoamericana = Acta Bioquim. Clin. Latinoam. Acta biotechnologica = Acta Biotechnol Acta Biotechnologica = Acta Biotechnol Acta Biotechnologica = Acta Biotechnol. Acta biotheoretica = Acta Biotheor Acta Biotheoretica=Acta Biotheor;; Acta Biotheoretica = Acta Biotheor Acta Biotheoretica = Acta Biotheor. Acta Borealia = Acta Boreal Acta Borealia = Acta Boreal. Acta Botanica Academiae Scientiarum Hungaricae = Acta Bot. Acad. Sci. Hung. Acta Botanica Academiae Scientiarum Hungaricae = Acta Bot Hung Acta Botanica Academiae Scientiarum Hungaricae = Acta Bot. Hung. Acta Botanica Brasilica = Acta Bot Bras Acta Botanica Brasilica = Acta Bot. Bras. Acta Botanica Croatica = Acta Bot Croat Acta Botanica Croatica = Acta Bot. Croat. Acta Botanica Fennica = Acta Bot. Fenn. Acta Botanica Gallica = Acta Bot Gallica Acta Botanica Gallica = Acta Bot. Gallica Acta botanica Gallica : bulletin de la Societe botanique de France = Acta Bot Gallica Acta Botanica Hungarica = Acta Bot Hung Acta Botanica Hungarica = Acta Bot. Hung. Acta Botanica Indica = Acta Bot Indica Acta Botanica Indica = Acta Bot. Indica Acta Botanica Mexicana = Acta Bot Mex Acta Botanica Mexicana = Acta Bot. Mex. Acta Botanica Neerlandica = Acta Bot Neerl Acta Botanica Neerlandica = Acta Bot. Neerl. Acta Botanica Sinica = Acta Bot Sin Acta Botanica Sinica = Acta Bot. Sin. Acta brevia Neerlandica de physiologia, pharmacologia, microbiologia e.a = Acta Brevia Neerl Physiol Pharmacol Microbiol E A Acta cancerologica = Acta Cancerol (Lima) Acta Cancerologica = Acta Cancerol. (Lima) Acta cardiologica = Acta Cardiol Acta Cardiologica=Acta Cardiol;; Acta Cardiologica = Acta Cardiol Acta Cardiologica = Acta Cardiol. Acta Cardiologica Sinica = Acta Cardiol Sin Acta Cardiologica Sinica = Acta Cardiol. Sin. Acta cardiologica. Supplementum = Acta Cardiol Suppl Acta Cardiologica. Supplementum = Acta Cardiol. Suppl. Acta Carsologica = Acta Carsologica Acta Carsologica: Krasoslovni Zbornik = Acta Carsol Acta Carsologica: Krasoslovni Zbornik = Acta Carsol. Acta Carsologica: Krasoslovni Zbornik = Acta Carsolog Acta Carsologica: Krasoslovni Zbornik = Acta Carsolog. Acta Carsologica: Krasoslovni Zbornik, Xxiv, 1995 = Acta Carsol Acta Carsologica: Krasoslovni Zbornik, Xxiv, 1995 = Acta Carsol. Acta Carsologica: Krasoslovni Zbornik, Xxiv, 1995 = Acta Carsolog Acta Carsologica: Krasoslovni Zbornik, Xxiv, 1995 = Acta Carsolog. Acta Carsologica: Krasoslovni Zbornik Xxvii/2 1998 = Acta Carsol Acta Carsologica: Krasoslovni Zbornik Xxvii/2 1998 = Acta Carsol. Acta chemica Scandinavica = Acta Chem Scand Acta Chemica Scandinavica=Acta Chem Scand;; Acta Chemica Scandinavica = Acta Chem Scand Acta Chemica Scandinavica = Acta Chem. Scand. Acta chemica Scandinavica (Copenhagen, Denmark : 1989) = Acta Chem Scand Acta chemica Scandinavica. Series A: Physical and inorganic chemistry = Acta Chem Scand A Acta Chemica Scandinavica Series A-physical and Inorganic Chemistry = Acta Chem Scand A Acta Chemica Scandinavica Series A-physical and Inorganic Chemistry = Acta Chem. Scand. A. Acta Chemica Scandinavica. Series A, Physical and Inorganic Chemistry = Acta Chem. Scand. A Acta Chemica Scandinavica, Series A: Physical and Inorganic Chemistry = Acta Chem. Scand. Ser. A Acta chemica Scandinavica. Series B: Organic chemistry and biochemistry = Acta Chem Scand B Acta Chemica Scandinavica Series B-organic Chemistry and Biochemistry = Acta Chem Scand B Acta Chemica Scandinavica Series B-organic Chemistry and Biochemistry = Acta Chem. Scand. B. Acta Chemica Scandinavica. Series B, Organic Chemistry and Biochemistry = Acta Chem. Scand. B Acta Chemica Scandinavica, Series B: Organic Chemistry and Biochemistry = Acta Chem. Scand. Ser. B Acta Chimica Academiae Scientarium Hungaricae = Acta Chim Hung Acta Chimica Academiae Scientarium Hungaricae = Acta Chim. Hung. Acta Chimica Hungarica = Acta Chim. Hung. Acta Chimica Hungarica-models in Chemistry = Acta Chim Hung Acta Chimica Hungarica-models in Chemistry = Acta Chim. Hung. Acta Chimica Sinica = Acta Chim Sinica Acta Chimica Sinica = Acta Chim. Sinica Acta Chimica Slovenica = Acta Chim Slov Acta Chimica Slovenica = Acta Chim. Slov. Acta Chiropterologica = Acta Chiropterol Acta Chiropterologica = Acta Chiropterol. Acta Chirurgiae Orthopaedicae Et Traumatologiae Cechoslovaca = Acta Chir Orthop Tr Acta Chirurgiae Orthopaedicae Et Traumatologiae Cechoslovaca = Acta Chir. Orthop. Tr. Acta chirurgiae orthopaedicae et traumatologiae Cechoslovaca = Acta Chir Orthop Traumatol Cech Acta Chirurgiae Orthopaedicae et Traumatologiae Cechoslovaca = Acta Chir. Orthop. Traumatol. Cech. Acta chirurgiae plasticae = Acta Chir Plast Acta Chirurgiae Plasticae=Acta Chir Plast;; Acta Chirurgiae Plasticae = Acta Chir Plast Acta Chirurgiae Plasticae = Acta Chir. Plast. Acta chirurgica Academiae Scientiarum Hungaricae = Acta Chir Acad Sci Hung Acta Chirurgica Academiae Scientiarum Hungaricae = Acta Chir. Acad. Sci. Hung. Acta Chirurgica Academiae Scientiarum Hungaricae = Acta Chir Hung Acta Chirurgica Academiae Scientiarum Hungaricae = Acta Chir. Hung. Acta Chirurgica Austriaca = Acta Chir Austriaca Acta Chirurgica Austriaca = Acta Chir. Austriaca Acta chirurgica Belgica = Acta Chir Belg Acta Chirurgica Belgica=Acta Chir Belg;; Acta Chirurgica Belgica = Acta Chir Belg Acta Chirurgica Belgica = Acta Chir. Belg. Acta chirurgica Hungarica = Acta Chir Hung Acta Chirurgica Hungarica=Acta Chir Hung;; Acta Chirurgica Hungarica = Acta Chir. Hung. Acta chirurgica Italica = Acta Chir Ital Acta Chirurgica Italica = Acta Chir. Ital. Acta chirurgica Iugoslavica = Acta Chir Iugosl Acta Chirurgica Iugoslavica=Acta Chir Iugosl;; Acta Chirurgica Iugoslavica = Acta Chir. Iugosl. Acta chirurgica Patavina = Acta Chir Patav Acta chirurgica Scandinavica = Acta Chir Scand Acta Chirurgica Scandinavica = Acta Chir Scand Acta Chirurgica Scandinavica = Acta Chir. Scand. Acta chirurgica Scandinavica. Supplementum = Acta Chir Scand Suppl Acta Chirurgica Scandinavica. Supplementum = Acta Chir. Scand. Suppl. Acta Chirurgica-the European Journal of Surgery = Acta Chir-eur J Surg Acta Chirurgica-the European Journal of Surgery = Acta Chir-eur. J. Surg. Acta Chromatographica = Acta Chromatogr Acta Chromatographica = Acta Chromatogr. Acta Cienceia Indica Chemistry = Acta Cienc. Indica, Chem. Acta Ciencia Indica = Acta Cienc. Indica Math. Acta Ciencia Indica Phyics = Acta Cienc. Indica, Phys. Acta cientifica venezolana = Acta Cient Venez Acta Cientifica Venezolana=Acta Cient Venez;; Acta Cientifica Venezolana = Acta Cient Venez Acta Cientifica Venezolana = Acta Cient. Venez. Acta Científica Venezolana = Acta Cient. Venezolana Acta Cirurgica Brasileira = Acta Cir Bras Acta Cirurgica Brasileira = Acta Cir. Bras. Acta cirurgica brasileira / Sociedade Brasileira para Desenvolvimento Pesquisa em Cirurgia = Acta Cir Bras Acta classica = Acta Cl Acta Classica = Acta Class Acta Classica = Acta Class. Acta classica: proceedings of the Classical Association of South Africa = AClass Acta classica. Proceedings of the Classical Association of South Africa = ActaCl Acta classica Universitatis Scientiarum Debreceniensis = ACD Acta classica Universitatis scientiarum Debreceniensis = ActaClDebrec Acta clinica Belgica = Acta Clin Belg Acta Clinica Belgica=Acta Clin Belg;; Acta Clinica Belgica = Acta Clin Belg Acta Clinica Belgica = Acta Clin. Belg. Acta clinica Belgica. Supplementum = Acta Clin Belg Suppl Acta Clinica Belgica. Supplementum=Acta Clin Belg Suppl;; Acta Clinica Belgica. Supplementum = Acta Clin. Belg. Suppl. Acta Clinica Croatica = Acta Clin Croat Acta Clinica Croatica = Acta Clin. Croat. Acta Clinica Odontologica = Acta Clin. Odontol. Acta clinica odontologica : organo de difusion academica de Sociedad Antioquena de Endodoncistas ... [et al.] = Acta Clin Odontol Acta Conventus Neo-latini Abulensis = Mediev Ren Tex Stud Acta Conventus Neo-latini Abulensis = Mediev. Ren. Tex. Stud. Acta crystallographica = Acta Crystallogr Acta Crystallographica = Acta Crystallogr Acta Crystallographica = Acta Crystallogr. Acta Crystallographica = Acta Cryst. Sect. A Acta Crystallographica Section A = Acta Crystallogr A Acta Crystallographica Section A = Acta Crystallogr. A Acta Crystallographica Section A-crystal Physics Diffraction Theoretical and General Crystallography = Acta Crystall A-crys Acta Crystallographica Section A-crystal Physics Diffraction Theoretical and General Crystallography = Acta Crystall. A-crys. Acta crystallographica. Section A, Crystal physics, diffraction, theoretical and general crystallography = Acta Crystallogr A Acta Crystallographica. Section A, Crystal Physics, Diffraction, Theoretical and General Crystallography = Acta Crystallogr. A Acta Crystallographica Section A: Foundations = Acta Crystallogr., Sect. A: Found. Crystallogr. Acta crystallographica. Section A, Foundations of crystallography = Acta Crystallogr A Acta Crystallographica. Section A, Foundations of Crystallography=Acta Crystallogr A;; Acta Crystallographica. Section A, Foundations of Crystallography = Acta Crystallogr. A Acta Crystallographica, Section A: Foundations of Crystallography = Acta Crystallogr., Sect. A: Found. Crystallogr. Acta Crystallographica Section B-structural Crystallography and Crystal Chemistry = Acta Crystall B-stru Acta Crystallographica Section B-structural Crystallography and Crystal Chemistry = Acta Crystall. B-stru. Acta crystallographica. Section B: Structural crystallography and crystal chemistry = Acta Crystallogr B Acta Crystallographica. Section B, Structural Crystallography and Crystal Chemistry = Acta Crystallogr. B Acta crystallographica. Section B, Structural science = Acta Crystallogr B Acta Crystallographica Section B-structural Science = Acta Crystallogr B Acta Crystallographica Section B-structural Science = Acta Crystallogr. B. Acta Crystallographica. Section B, Structural Science=Acta Crystallogr B;; Acta Crystallographica. Section B, Structural Science = Acta Crystallogr. B Acta Crystallographica Section B: Structural Science = Acta Crystallogr., Sect. B: Struct. Sci Acta Crystallographica, Section B: Structural Science = Acta Crystallogr., Sect. B: Struct. Sci. Acta crystallographica. Section C, Crystal structure communications = Acta Crystallogr C Acta Crystallographica Section C-crystal Structure Communications = Acta Crystallogr C Acta Crystallographica Section C-crystal Structure Communications = Acta Crystallogr. C. Acta Crystallographica. Section C, Crystal Structure Communications=Acta Crystallogr C;; Acta Crystallographica. Section C, Crystal Structure Communications = Acta Crystallogr. C Acta Crystallographica Section C: Crystal Structure Communications = Acta Crystallogr., Sect. C: Cryst. Struct. Commun. Acta Crystallographica, Section C: Crystal Structure Communications = Acta Crystallogr., Sect. C: Cryst. Struct. Commun. Acta Crystallographica Section D-biological Crystallography = Acta Crystallogr D Acta Crystallographica Section D-biological Crystallography = Acta Crystallogr. D. Acta crystallographica. Section D, Biological crystallography = Acta Crystallogr D Biol Crystallogr Acta Crystallographica. Section D, Biological Crystallography = Acta Crystallogr. D Biol. Crystallogr. Acta Crystallographica Section D: Biological Crystallography = Acta Crystallogr., Sect. D: Biol. Crystallogr. Acta Crystallographica, Section D: Biological Crystallography = Acta Crystallogr., Sect. D: Biol. Crystallogr. Acta Crystallographica Section E-structure Reports Online = Acta Crystallogr E Acta Crystallographica Section E-structure Reports Online = Acta Crystallogr. E. Acta crystallographica. Section E, Structure reports online = Acta Crystallogr Sect E Struct Rep Online Acta Crystallographica Section E Structure Reports Online = Acta Crystallogr., Sect. E: Struct. Rep. Online Acta Crystallographica, Section E: Structure Reports Online = Acta Crystallogr., Sect. E: Struct. Rep. Online Acta Crystallographica. Section F, Structural Biology and Crystallization Communications = Acta Crystallograph. Sect. F Struct. Biol. Cryst. Commun. Acta Crystallographica Section F-structural Biology and Crystallization Communications = Acta Crystallogr F Acta Crystallographica Section F-structural Biology and Crystallization Communications = Acta Crystallogr. F. Acta crystallographica. Section F, Structural biology and crystallization communications = Acta Crystallogr Sect F Struct Biol Cryst Commun Acta Crystallographica Section F: Structural Biology and Crystallization Communications = Acta Crystallogr., Sect. F: Struct. Biol. Cryst. Commun. Acta Crystallographica, Section F: Structural Biology and Crystallization Communications = Acta Crystallogr., Sect. F: Struct. Biol. Cryst. Commun. Acta Cybernetica = Acta Cybernet. Acta cytologica = Acta Cytol Acta Cytologica=Acta Cytol;; Acta Cytologica = Acta Cytol Acta Cytologica = Acta Cytol. Acta demographica = Acta Demogr Acta de odontologia pediatrica = Acta Odontol Pediatr Acta de Odontologia Pediatrica = Acta Odontol. Pediatr. Acta dermatologica-Kyoto. English edition = Acta Dermatol Kyoto Engl Ed Acta Dermatologica Kyoto. English Edition = Acta Dermatol. Kyoto Engl. Ed. Acta dermato-venereologica = Acta Derm Venereol Acta Dermato-venereologica = Acta Derm-venereol Acta Dermato-venereologica = Acta Derm-venereol. Acta Dermato-Venereologica=Acta Derm Venereol;; Acta Dermato-Venereologica = Acta Derm. Venereol. Acta dermato-venereologica. Supplementum = Acta Derm Venereol Suppl (Stockh) Acta Dermato-Venereologica. Supplementum=Acta Derm Venereol Suppl (Stockh);; Acta Dermato-Venereologica. Supplementum = Acta Derm. Venereol. Suppl. (Stockh.) Acta dermatovenerologica Alpina, Panonica, et Adriatica = Acta Dermatovenerol Alp Panonica Adriat Acta Dermatovenerologica Croatica = Acta Dermatovener Cr Acta Dermatovenerologica Croatica = Acta Dermatovener. Cr. Acta dermatovenerologica Croatica : ADC / Hrvatsko dermatolosko drustvo = Acta Dermatovenerol Croat Acta diabetologica = Acta Diabetol Acta Diabetologica=Acta Diabetol;; Acta Diabetologica = Acta Diabetol Acta Diabetologica = Acta Diabetol. Acta diabetologica latina = Acta Diabetol Lat Acta Diabetologica Latina = Acta Diabetol Lat Acta Diabetologica Latina = Acta Diabetol. Lat. Acta Electronica = Acta Electron Acta Electronica = Acta Electron. Acta embryologiae et morphologiae experimentalis = Acta Embryol Morphol Exp Acta Embryologiae et Morphologiae Experimentalis = Acta Embryol. Morphol. Exp. Acta embryologiae et morphologiae experimentalis ("Halocynthia" Association") = Acta Embryol Morphol Exp Acta Embryologiae Experimentalis = Acta Embryol Exp Acta Embryologiae Experimentalis = Acta Embryol. Exp. Acta embryologiae experimentalis = Acta Embryol Exp (Palermo) Acta Embryologiae Experimentalis = Acta Embryol. Exp. (Palermo) Acta Endocrinologica = Acta Endocrinol. Acta Endocrinologica = Acta Endocrinol-cop Acta Endocrinologica = Acta Endocrinol-cop. Acta endocrinologica = Acta Endocrinol (Copenh) Acta Endocrinologica = Acta Endocrinol. (Copenh.) Acta Endocrinologica-bucharest = Acta Endocrinol Acta Endocrinologica-bucharest = Acta Endocrinol. Acta Endocrinologica-bucharest = Acta Endocrinol-buch Acta Endocrinologica-bucharest = Acta Endocrinol-buch. Acta endocrinologica Iberica = Acta Endocrinol Iber Acta Endocrinologica Panamericana = Acta Endocrinol Pan Acta Endocrinologica Panamericana = Acta Endocrinol. Pan. Acta Endocrinologica Panamericana = Acta Endocrinol Panam Acta endocrinologica. Supplementum = Acta Endocrinol Suppl (Copenh) Acta Endocrinologica. Supplementum = Acta Endocrinol. Suppl. (Copenh.) Acta Endoscopica = Acta Endosc Acta Endoscopica = Acta Endosc. Acta endoscopica = Acta Endoscopica Acta Entomologica Bohemoslovaca = Acta Entomol Bohemos Acta Entomologica Bohemoslovaca = Acta Entomol. Bohemos. Acta Entomologica Musei Nationalis Pragae = Acta Ent Mus Nat Pra Acta Entomologica Musei Nationalis Pragae = Acta Ent. Mus. Nat. Pra. Acta Entomologica Sinica = Acta Entomol Sinica Acta Entomologica Sinica = Acta Entomol. Sinica Acta Ethnographica Academiae Scientiarum Hungaricae = Acta Ethnogr Hung Acta Ethnographica Academiae Scientiarum Hungaricae = Acta Ethnogr. Hung. Acta Ethnographica = Acta Ethnogr Acta Ethnographica = Acta Ethnogr. Acta ethnologica et linguistica = Acta Ethnol Linguist Acta Ethologica = Acta Ethol Acta Ethologica = Acta Ethol. Acta Ethologica = Acta Etholog Acta Ethologica = Acta Etholog. Acta Europaea fertilitatis = Acta Eur Fertil Acta Europaea Fertilitatis=Acta Eur Fertil;; Acta Europaea Fertilitatis = Acta Eur. Fertil. Acta Facultatis Rerum Naturalium Universitatis Comenianae Series Physiologia Plantarum = Acta Fac Rerum Phy Acta Facultatis Rerum Naturalium Universitatis Comenianae Series Physiologia Plantarum = Acta Fac. Rerum Phy. Acta Facultatis Rerum Naturalium Universitatis Comenianae Series Zoologia = Acta Fac Rerum Zoo Acta Facultatis Rerum Naturalium Universitatis Comenianae Series Zoologia = Acta Fac. Rerum Zoo. Acta Farmaceutica Bonaerense = Acta Farm. Bonaerense Acta Forestalia Fennica = Acta For. Fenn. Acta Gastro-enterologica Belgica = Acta Gastro-ent Belg Acta Gastro-enterologica Belgica = Acta Gastro-ent. Belg. Acta gastro-enterologica Belgica = Acta Gastroenterol Belg Acta Gastroenterologica Belgica=Acta Gastroenterol Belg;; Acta Gastroenterologica Belgica = Acta Gastroenterol. Belg. Acta Gastroenterologica Latinoamericana = Acta Gastroen Latam Acta Gastroenterologica Latinoamericana = Acta Gastroen. Latam. Acta gastroenterologica Latinoamericana = Acta Gastroenterol Latinoam Acta Gastroenterologica Latinoamericana=Acta Gastroenterol Latinoam;; Acta Gastroenterologica Latinoamericana = Acta Gastroenterol. Latinoam. Acta Geneticae Medicae Et Gemellologiae = Acta Genet Med Gemel Acta Geneticae Medicae Et Gemellologiae = Acta Genet. Med. Gemel. Acta geneticae medicae et gemellologiae = Acta Genet Med Gemellol (Roma) Acta Geneticae Medicae et Gemellologiae = Acta Genet. Med. Gemellol. (Roma) Acta Geneticae Medicae Et Gemellologiae=Acta Genet Med Gemellol (Roma);; Acta genetica et statistica medica = Acta Genet Stat Med Acta Genetica et Statistica Medica = Acta Genet. Stat. Med. Acta Genetica Et Statistica Medica = Acta Genet Stat Med Acta Genetica Et Statistica Medica = Acta Genet. Stat. Med. Acta Geodaetica Et Geophysica Hungarica = Acta Geod Geophys Hu Acta Geodaetica Et Geophysica Hungarica = Acta Geod. Geophys. Hu. Acta Geodynamica Et Geomaterialia = Acta Geodyn Geomater Acta Geodynamica Et Geomaterialia = Acta Geodyn. Geomater. Acta Geodynamics et Geomaterialia = Acta Geodyn. Geomater. Acta geographica = Acta Geogr Acta Geographica = Acta Geogr Acta Geographica = Acta Geogr. Acta geographica Croatica : glasilo Geografskog odjela PMF-a Sveucilista u Zagrebu = Acta Geogr Croat Acta Geographica-france = Acta Geogr-france Acta Geographica-france = Acta Geogr-france. Acta Geographica Sinica = Acta Geogr. Sin. Acta Geographica Slovenica-geografski Zbornik = Acta Geogr Slov Acta Geographica Slovenica-geografski Zbornik = Acta Geogr. Slov. Acta Geologica Polonica = Acta Geol Pol Acta Geologica Polonica = Acta Geol. Pol. Acta Geologica Sinica = Acta Geol. Sin. Acta Geologica Sinica = Acta Geol Sin-engl Acta Geologica Sinica = Acta Geol. Sin-engl. Acta Geologica Sinica-english Edition = Acta Geol Sin-engl Acta Geologica Sinica-english Edition = Acta Geol. Sin-engl. Acta Geophysica = Acta Geophys Acta Geophysica = Acta Geophys. Acta Geophysica Sinica = Acta Geophys Sinica Acta Geophysica Sinica = Acta Geophys. Sinica Acta Geotechnica = Acta Geotech Acta Geotechnica = Acta Geotech. Acta Geotechnica Slovenica = Acta Geotech Slov Acta Geotechnica Slovenica = Acta Geotech. Slov. Acta Gerontologica = Acta Gerontol Acta Gerontologica = Acta Gerontol. Acta gerontologica = Acta Gerontol (Milano) Acta Gerontologica = Acta Gerontol. (Milano) Acta ginecologica = Acta Ginecol (Madr) Acta Ginecologica = Acta Ginecol. (Madr.) Acta Ginecologica = Acta Ginecol-madrid Acta Ginecologica = Acta Ginecol-madrid. Acta gynaecologica et obstetrica Hispano-Lusitana = Acta Gynaecol Obstet Hisp Lusit Acta Gynaecologica et Obstetrica Hispano-Lusitana = Acta Gynaecol. Obstet. Hisp. Lusit. Acta haematologica = Acta Haematol Acta Haematologica=Acta Haematol;; Acta Haematologica = Acta Haematol. Acta Haematologica = Acta Haematol-basel Acta Haematologica = Acta Haematol-basel. Acta Haematologica Japonica = Acta Haematol Japon Acta Haematologica Japonica = Acta Haematol. Japon. Acta haematologica Polonica = Acta Haematol Pol Acta Haematologica Polonica = Acta Haematol. Pol. Acta Hepato-gastroenterologica = Acta Hepato-gastro Acta Hepato-gastroenterologica = Acta Hepato-gastro. Acta hepato-gastroenterologica = Acta Hepatogastroenterol (Stuttg) Acta Hepato-Gastroenterologica = Acta Hepatogastroenterol. (Stuttg.) Acta hepatologica = Act Hepato Acta hepato-splenologica = Acta Hepatosplenol Acta Hepato-splenologica = Acta Hepato-splenol Acta Hepato-splenologica = Acta Hepato-splenol. Acta Hepato-Splenologica = Acta Hepatosplenol. Acta Herpetologica = Acta Herpetol Acta Herpetologica = Acta Herpetol. Acta histochemica = Acta Histochem Acta Histochemica=Acta Histochem;; Acta Histochemica = Acta Histochem Acta Histochemica = Acta Histochem. Acta Histochemica Et Cytochemica = Acta Histochem Cytoc Acta Histochemica Et Cytochemica = Acta Histochem. Cytoc. Acta histochemica et cytochemica = Acta Histochem Cytochem Acta histochemica. Supplementband = Acta Histochem Suppl Acta Histochemica. Supplementband=Acta Histochem Suppl;; Acta Histochemica. Supplementband = Acta Histochem. Suppl. Acta Historiae Artium Academiae Scientiarum Hungaricae = Acta Hist Artium Acta Historiae Artium Academiae Scientiarum Hungaricae = Acta Hist. Artium Acta historiae rerum naturalium necnon technicarum. Special issue = Acta Hist Rerum Nat Tech Acta Historica Academiae Scientiarum Hungaricae = Acta Historica Hung Acta Historica Academiae Scientiarum Hungaricae = Acta Historica Hung. Acta Historica Academiae Scientiarum Hungaricae = AHistHung Acta Historica Leopoldina = Acta Hist. Leopold. Acta historica Leopoldina = Acta Hist Leopoldina Acta Historica Leopoldina = Acta Hist. Leopoldina Acta historica medicinae, pharmaciae, veterinae = Acta Hist Med Pharm Vet (Beograd) Acta historica scientiarum naturalium et medicinalium = Acta Hist Sci Nat Med Acta Historica Scientiarum Naturalium et Medicinalium = Acta Hist. Sci. Nat. Med. Acta historica. Societas academica Dacoromana = ActaHistDac Acta Historica Tallinnensia = Acta Hist Tallinensi Acta Historica Tallinnensia = Acta Hist. Tallinensi. Acta historico-medica vallisoletana. Monografias = Acta Hist Med Vallisoletana Monogr Acta Histriae = Acta Histriae Acta horticulturae = Acta Hortic Acta Horticulturae = Acta Hortic Acta Horticulturae = Acta Hortic. Acta hospitalia = Acta Hosp Acta Hospitalia = Acta Hosp. Acta Hydrochimica et Hydrobiologica = Acta Hydroch. Hydrob. Acta Hydrochimica Et Hydrobiologica = Acta Hydroch Hydrob Acta Hydrochimica Et Hydrobiologica = Acta Hydroch. Hydrob. Acta Hydrochimica et Hydrobiologica = Acta Hydrochim. Hydrobiol. Acta Hydrophysica = Acta Hydrophys. Acta hyperborea. Danish Studies in Classical Archaeology = ActaHyp Acta Hyperborea: Danish Studies in Classical Archaeology = Acta Hyperborea Acta Hyperborea: Danish Studies in Classical Archaeology = Acta Hyperborea. Acta iberica radiologica-cancerologica = Acta Iber Radiol Cancerol Acta Iberica Radiologica-Cancerologica = Acta Iber. Radiol. Cancerol. Acta Ichthyologica Et Piscatoria = Acta Ichthyol Piscat Acta Ichthyologica Et Piscatoria = Acta Ichthyol. Piscat. Acta Informatica = Acta Inform. Acta Informatica = Acta Inform Acta Informatica = Acta Inform. Acta Instituti Atheniensis regni Sueciae = ActaAth Acta Instituti Forestalis Zvolenensis = Acta Inst. For. Zvolen. Acta Instituti Romani Finlandiae = ActaInstRomFin Acta Iranica: encyclopédie permanente des études iraniennes = AI Acta isotopica = Acta Isot (Padova) Acta Isotopica = Acta Isot. (Padova) Acta Isotopica = Act Isotopi Acta Isotopica = Act. Isotopi. Acta Jutlandica = Act Jutland Acta Jutlandica = Act. Jutland. Acta Jutlandica  = Acta Jutl. Acta Leidensia = Acta Leiden Acta Leidensia = Acta Leiden. Acta Leidensia = Act Leidens Acta Leidensia = Act. Leidens. Acta Leidensia, Vol 59, Nos 1 and 2 = Act Leidens Acta Leidensia, Vol 59, Nos 1 and 2 = Act. Leidens. Acta Leidensia, Vol 60, No 1 = Act Leidens Acta Leidensia, Vol 60, No 1 = Act. Leidens. Acta leprologica = Acta Leprol Acta Leprologica=Acta Leprol;; Acta Leprologica = Acta Leprol. Acta Linguistica Academiae Scientiarum Hungaricae = Acta Linguist Hung Acta Linguistica Academiae Scientiarum Hungaricae = Acta Linguist. Hung. Acta Linguistica Hungarica = Acta Linguist Hungar Acta Linguistica Hungarica = Acta Linguist. Hungar. Acta Literaria = Acta Lit Acta Literaria = Acta Lit. Acta Manilana = Acta Manila Ser A Acta Materialia = Acta Mater Acta Materialia = Acta Mater. Acta Mathematica Academiae Scientiarum Hungaricae = Acta Math Acad Sci H Acta Mathematica Academiae Scientiarum Hungaricae = Acta Math. Acad. Sci. H. Acta Mathematica = Acta Math. Acta Mathematica = Acta Math-djursholm Acta Mathematica = Acta Math-djursholm. Acta Mathematicae Applicatae Sinica = Acta Math. Appl. Sinica Acta Mathematicae Applicatae Sinica = Acta Math. Appl. Sinica (English Ser.) Acta Mathematicae Applicatae Sinica-english Series = Acta Math Appl Sin-e Acta Mathematicae Applicatae Sinica-english Series = Acta Math. Appl. Sin-e. Acta Mathematica et Informatica Universitatis Ostraviensis = Acta Math. Inform. Univ. Ostraviensis Acta Mathematica Hungarica = Acta Math Hung Acta Mathematica Hungarica = Acta Math. Hung. Acta Mathematica Hungarica = Acta Math. Hungar. Acta Mathematica Scientia = Acta Math Sci Acta Mathematica Scientia = Acta Math. Sci. Acta Mathematica Scientia = Acta Math. Sci. (Chinese) Acta Mathematica Scientia = Acta Math. Sci. (English Ed.) Acta Mathematica Sinica = Acta Math. Sinica Acta Mathematica Sinica = Acta Math. Sinica (N.S.) Acta Mathematica Sinica-english Series = Acta Math Sin Acta Mathematica Sinica-english Series = Acta Math. Sin. Acta Mathematica Sinica-new Series = Acta Math Sin Acta Mathematica Sinica-new Series = Acta Math. Sin. Acta Mathematica Universitatis Comenianae = Acta Math. Univ. Comenian. (N.S.) Acta Mathematica Uppsala = Acta Math-uppsala Acta Mathematica Uppsala = Acta Math-uppsala. Acta Mathematica Vietnamica = Acta Math. Vietnam. Acta Mechanica = Acta Mech. Acta Mechanica = Acta Mech Acta Mechanica = Acta Mech. Acta Mechanica Sinica = Acta Mech. Sin. Acta Mechanica Sinica = Acta Mech Sinica Acta Mechanica Sinica = Acta Mech. Sinica Acta Mechanica Sinica = Acta Mech. Sinica (Beijing) Acta Mechanica Sinica = Acta Mech. Sinica (English Ed.) Acta Mechanica Sinica = Acta Mech Sinica-prc Acta Mechanica Sinica = Acta Mech. Sinica-prc. Acta Mechanica Solida Sinica = Acta Mech Solida Sin Acta Mechanica Solida Sinica = Acta Mech. Solida Sin. Acta medica Academiae Scientiarum Hungaricae = Acta Med Acad Sci Hung Acta Medica Academiae Scientiarum Hungaricae = Acta Med. Acad. Sci. Hung. Acta Medica Academiae Scientiarum Hungaricae = Acta Med Hung Acta Medica Academiae Scientiarum Hungaricae = Acta Med. Hung. Acta medica = Acta Medica Cordoba Acta Medica Austriaca = Acta Med Aust Acta Medica Austriaca = Acta Med. Aust. Acta medica Austriaca = Acta Med Austriaca Acta Medica Austriaca=Acta Med Austriaca;; Acta Medica Austriaca = Acta Med. Austriaca Acta medica Austriaca. Supplement = Acta Med Austriaca Suppl Acta Medica Austriaca. Supplement = Acta Med. Austriaca. Suppl. Acta medica auxologica = Acta Med Auxol (Milano) Acta medica Catholica = Acta Med Cathol Acta medica colombiana : AMC : organo de la Asociacion Columbiana de Medicina Interna = Acta Med Colomb Acta medica costarricense = Acta Med Costarric Acta Médica Costarricense = Acta méd. costarric. Acta Medica Croatica=Acta Med Croatica;; Acta Medica Croatica = Acta Med. Croatica Acta medica Croatica : casopis Hravatske akademije medicinskih znanosti = Acta Med Croatica Acta medica del valle = Acta Med Valle Acta medica de Tenerife = Acta Med Tenerife Acta medica dominicana : revista cientifica para medicos = Acta Med Dom Acta medicae historiae Patavina = Acta Med Hist Patav Acta medica et biologica = Acta Med Biol (Niigata) Acta Medica et Biologica = Acta Med. Biol. (Niigata) Acta medica hidalguense = Acta Med Hidalguense Acta medica hispanica = Acta Med Hisp Acta Medica (Hradec Kralove)=Acta Medica (Hradec Kralove);; Acta Medica (Hradec Kralove) = Acta Medica (Hradec Kralove) Acta Medica (Hradec Kralove). Supplementum=Acta Medica (Hradec Kralove) Suppl;; Acta Medica (Hradec Kralove). Supplementum = Acta Medica (Hradec Kralove) Suppl. Acta medica (Hradec Kralove). Supplementum Universitas Carolina, Facultas Medica Hradec Kralove = Acta Medica (Hradec Kralove) Suppl Acta medica (Hradec Kralove) / Universitas Carolina, Facultas Medica Hradec Kralove = Acta Medica (Hradec Kralove) Acta medica Hungarica = Acta Med Hung Acta Medica Hungarica = Acta Med Hung Acta Medica Hungarica = Acta Med. Hung. Acta medica Indonesiana = Acta Med Indones Acta medica Iranica = Acta Med Iran Acta Medica Iranica = Acta Med. Iran. Acta medica Italica di malattie infettive e parassitarie = Acta Med Ital Mal Infett Parassit Acta medica Italica di medicina tropicale e subtropicale e di gastroenterologia = Acta Med Ital Med Trop Subtrop Gastroenterol Acta Medica Italica di Medicina Tropicale e Subtropicale e di Gastroenterologia = Acta Med. Ital. Med. Trop. Subtrop. Gastroenterol. Acta medica Iugoslavica = Acta Med Iugosl Acta Medica Iugoslavica = Acta Med. Iugosl. Acta Medica Mediterranea = Acta Medica Mediterr Acta Medica Mediterranea = Acta Medica Mediterr. Acta medica Nagasakiensia = Acta Med Nagasaki Acta Medica Nagasakiensia = Acta Med. Nagasaki. Acta medica Okayama = Acta Med Okayama Acta Medica Okayama=Acta Med Okayama;; Acta Medica Okayama = Acta Med Okayama Acta Medica Okayama = Acta Med. Okayama Acta medica Orientalia = Acta Med Orient Acta medica Patavina = Acta Med Patav Acta medica Patavina. Supplemento = Acta Med Patavina Suppl Acta Medica Peruana = Acta Med Peru Acta Medica Peruana = Acta Med. Peru. Acta medica Philippina = Acta Med Philipp Acta Medica Philippina = Acta Med. Philipp. Acta medica Polona = Acta Med Pol Acta Medica Polona = Acta Med Pol Acta Medica Polona = Acta Med. Pol. Acta Medica Portuguesa = Acta Medica Port Acta Medica Portuguesa = Acta Medica Port. Acta medica portuguesa = Acta Med Port Acta Medica Portuguesa=Acta Med Port;; Acta Medica Portuguesa = Acta Med. Port. Acta medica romana; annali della Facolta di medicina e chirurgia, Universita cattolica del Sacro Cuore = Acta Med Rom Acta medica Scandinavica = Acta Med Scand Acta Medica Scandinavica = Acta Med Scand Acta Medica Scandinavica = Acta Med. Scand. Acta medica Scandinavica. Supplementum = Acta Med Scand Suppl Acta Medica Scandinavica. Supplementum = Acta Med. Scand. Suppl. Acta medica veterinaria = Acta Med Vet (Napoli) Acta Medica Veterinaria = Acta Med. Vet. (Napoli) Acta medica Vietnamica = Acta Med Vietnam Acta medicinae legalis et socialis = Acta Med Leg Soc (Liege) Acta Medicinae Legalis et Socialis = Acta Med. Leg. Soc. (Liege) Acta medicinae Okayama = Acta Med Okayama Acta Metallurgica = Acta Metall. Acta Metallurgica = Acta Metall Mater Acta Metallurgica = Acta Metall. Mater. Acta Metallurgica et Materialia = Acta Metall. Mater. Acta Metallurgica Et Materialia = Acta Metall Mater Acta Metallurgica Et Materialia = Acta Metall. Mater. Acta Metallurgica Sinica = Acta Metall Sin Acta Metallurgica Sinica = Acta Metall. Sin. Acta Metallurgica Sinica = Acta Metall. Sinica Acta Metallurgica Sinica-english Letters = Acta Metall Sin-engl Acta Metallurgica Sinica-english Letters = Acta Metall. Sin-engl. Acta Meteorologica Sinica = Acta Meteorol Sin Acta Meteorologica Sinica = Acta Meteorol. Sin. Acta microbiologica Academiae Scientiarum Hungaricae = Acta Microbiol Acad Sci Hung Acta Microbiologica Academiae Scientiarum Hungaricae = Acta Microbiol. Acad. Sci. Hung. Acta Microbiologica Academiae Scientiarum Hungaricae = Acta Microbiol Hung Acta Microbiologica Academiae Scientiarum Hungaricae = Acta Microbiol. Hung. Acta microbiologica Bulgarica = Acta Microbiol Bulg Acta Microbiologica Bulgarica=Acta Microbiol Bulg;; Acta Microbiologica Bulgarica = Acta Microbiol. Bulg. Acta Microbiologica Et Immunologica Hungarica = Acta Microbiol Imm H Acta Microbiologica Et Immunologica Hungarica = Acta Microbiol. Imm. H. Acta microbiologica et immunologica Hungarica = Acta Microbiol Immunol Hung Acta Microbiologica et Immunologica Hungarica = Acta Microbiol. Immunol. Hung. Acta Microbiologica Et Immunologica Hungarica=Acta Microbiol Immunol Hung;; Acta microbiologica Hungarica = Acta Microbiol Hung Acta Microbiologica Hungarica = Acta Microbiol Hung Acta Microbiologica Hungarica = Acta Microbiol. Hung. Acta microbiologica Polonica = Acta Microbiol Pol Acta Microbiologica Polonica=Acta Microbiol Pol;; Acta Microbiologica Polonica = Acta Microbiol Pol Acta Microbiologica Polonica = Acta Microbiol. Pol. Acta Microbiologica Polonica Series A-microbiologia Generalis = Acta Microbiol Pol Acta Microbiologica Polonica Series A-microbiologia Generalis = Acta Microbiol. Pol. Acta microbiologica Polonica. Series A: Microbiologia generalis = Acta Microbiol Pol A Acta Microbiologica Polonica. Series A, Microbiologia Generalis = Acta Microbiol. Pol. A Acta Microbiologica Polonica Series B-microbiologia Applicata = Acta Microbiol Pol Acta Microbiologica Polonica Series B-microbiologia Applicata = Acta Microbiol. Pol. Acta microbiologica Polonica. Series B: Microbiologia applicata = Acta Microbiol Pol B Acta Microbiologica Polonica. Series B, Microbiologia Applicata = Acta Microbiol. Pol. B Acta microbiologica Sinica = Acta Microbiol Sin Acta microbiologica, virologica et immunologica = Acta Microbiol Virol Immunol (Sofiia) Acta Microbiologica, Virologica et Immunologica = Acta Microbiol. Virol. Immunol. (Sofiia) Acta Microscopica = Acta Microsc Acta Microscopica = Acta Microsc. Acta Montanistica Slovaca = Acta Montan Slovaca Acta Montanistica Slovaca = Acta Montan. Slovaca Acta morphologica Academiae Scientiarum Hungaricae = Acta Morphol Acad Sci Hung Acta Morphologica Academiae Scientiarum Hungaricae = Acta Morphol. Acad. Sci. Hung. Acta Morphologica Academiae Scientiarum Hungaricae = Acta Morphol Hung Acta Morphologica Academiae Scientiarum Hungaricae = Acta Morphol. Hung. Acta morphologica Academiae Scientiarum Hungaricae. Supplementum = Acta Morphol Acad Sci Hung Suppl Acta morphologica Hungarica = Acta Morphol Hung Acta Morphologica Hungarica = Acta Morphol Hung Acta Morphologica Hungarica = Acta Morphol. Hung. Acta morphologica Neerlando-Scandinavica = Acta Morphol Neerl Scand Acta Morphologica Neerlando-Scandinavica = Acta Morphol. Neerl. Scand. Acta Morphologica Neerlando-scandinavica = Acta Morphol Neer Sc Acta Morphologica Neerlando-scandinavica = Acta Morphol. Neer. Sc. Acta Mozartiana = Acta Mozartiana Acta Musei Napocensis = ActaMusNapoca Acta Musei Napocensis = Acta Mus Napocensis Acta Musei Porolissensis = ActaMusPorol Acta Musicologica = Acta Musicologica Acta myologica : myopathies and cardiomyopathies : official journal of the Mediterranean Society of Myology / edited by the Gaetano Conte Academy for the study of striated muscle diseases = Acta Myol Acta Myriapodologica = Memoir Mus Natl Hist Acta Myriapodologica = Memoir. Mus. Natl. Hist. Acta Neurobiologiae Experimentalis = Acta Neurobiol Exp Acta Neurobiologiae Experimentalis = Acta Neurobiol. Exp. Acta neurobiologiae experimentalis = Acta Neurobiol Exp (Wars) Acta Neurobiologiae Experimentalis=Acta Neurobiol Exp (Warsz);; Acta Neurobiologiae Experimentalis = Acta Neurobiol. Exp. (Warsz.) Acta Neurochirurgica = Acta Neurochir Acta Neurochirurgica = Acta Neurochir. Acta neurochirurgica = Acta Neurochir (Wien) Acta Neurochirurgica=Acta Neurochir (Wien);; Acta Neurochirurgica = Acta Neurochir. (Wien) Acta Neurochirurgica Supplementa = Act Neur S Acta Neurochirurgica Supplementa = Act. Neur. S. Acta neurochirurgica. Supplement = Acta Neurochir Suppl Acta Neurochirurgica Supplementum = Acta Neurochir Suppl Acta Neurochirurgica Supplementum = Acta Neurochir. Suppl. Acta neurochirurgica. Supplementum = Acta Neurochir Suppl (Wien) Acta Neurochirurgica. Supplementum=Acta Neurochir Suppl (Wien);; Acta Neurochirurgica. Supplementum = Acta Neurochir. Suppl. (Wien) Acta Neurochirurgica Supplementum = Act Neur S Acta Neurochirurgica Supplementum = Act. Neur. S. Acta Neurologica = Acta Neurol Acta Neurologica = Acta Neurol. Acta neurologica = Acta Neurol (Napoli) Acta Neurologica = Acta Neurol. (Napoli) Acta neurologica Belgica = Acta Neurol Belg Acta Neurologica Belgica=Acta Neurol Belg;; Acta Neurologica Belgica = Acta Neurol Belg Acta Neurologica Belgica = Acta Neurol. Belg. Acta neurologica et psychiatrica Belgica = Acta Neurol Psychiatr Belg Acta Neurologica et Psychiatrica Belgica = Acta Neurol. Psychiatr. Belg. Acta neurologica latinoamericana = Acta Neurol Latinoam Acta Neurologica Latinoamericana = Acta Neurol. Latinoam. Acta neurologica. Quaderni = Acta Neurol [Quad] (Napoli) Acta Neurologica. Quaderni = Acta Neurol. [Quad.] (Napoli) Acta neurologica Scandinavica = Acta Neurol Scand Acta Neurologica Scandinavica=Acta Neurol Scand;; Acta Neurologica Scandinavica = Acta Neurol Scand Acta Neurologica Scandinavica = Acta Neurol. Scand. Acta neurologica Scandinavica. Supplementum = Acta Neurol Scand Suppl Acta Neurologica Scandinavica. Supplementum=Acta Neurol Scand Suppl;; Acta Neurologica Scandinavica. Supplementum = Acta Neurol. Scand. Suppl. Acta neurologica Taiwanica = Acta Neurol Taiwan Acta neuropathologica = Acta Neuropathol Acta Neuropathologica = Acta Neuropathol Acta Neuropathologica = Acta Neuropathol. Acta Neuropathologica=Acta Neuropathol (Berl);; Acta Neuropathologica = Acta Neuropathol. (Berl.) Acta Neuropathologica. Supplement = Acta Neuropathol. Suppl. (Berl.) Acta neuropathologica. Supplementum = Acta Neuropathol Suppl Acta Neuropsychiatrica = Acta Neuropsychiatr Acta Neuropsychiatrica = Acta Neuropsychiatr. Acta Neurovegetativa = Acta Neuroveg Acta Neurovegetativa = Acta Neuroveg. Acta neurovegetativa = Acta Neuroveg (Wien) Acta Neurovegetativa = Acta Neuroveg. (Wien) Acta neurovegetativa. Supplementum = Acta Neuroveg Suppl Acta Numerica 2008, Vol 17 = Acta Numer Acta Numerica 2008, Vol 17 = Acta Numer. Acta Numerica 2009, Vol 18 = Acta Numer Acta Numerica 2009, Vol 18 = Acta Numer. Acta Numerica 2010, Vol 19 = Acta Numer Acta Numerica 2010, Vol 19 = Acta Numer. Acta Numerica 2011, Vol 20 = Acta Numer Acta Numerica 2011, Vol 20 = Acta Numer. Acta Numerica = Acta Numer. Acta Numerica = Acta Numer Acta Numerica = Acta Numer. Acta numismatica = Acta Numis Acta numismática (Barcelona) = ActaNum Acta obstetrica et gynaecologica Japonica = Acta Obstet Gynaecol Jpn Acta Obstetrica et Gynaecologica Japonica = Acta Obstet. Gynaecol. Jpn. Acta Obstetrica Et Gynaecologica Japonica = Acta Obstet Gyn Jpn Acta Obstetrica Et Gynaecologica Japonica = Acta Obstet. Gyn. Jpn. Acta obstetrica y ginecologica hispano-lusitana = Acta Obstet Ginecol Hisp Lusit Acta Obstetrica y Ginecologica Hispano-Lusitana = Acta Obstet. Ginecol. Hisp. Lusit. Acta obstetrica y ginecologica hispano-lusitana. Suplemento = Acta Obstet Ginecol Hisp Lusit Suppl Acta Obstetrica y Ginecologica Hispano-Lusitana. Suplemento = Acta Obstet. Ginecol. Hisp. Lusit. Suppl. Acta obstetricia et gynecologica Scandinavica = Acta Obstet Gynecol Scand Acta Obstetricia et Gynecologica Scandinavica = Acta Obstet. Gynecol. Scand. Acta Obstetricia Et Gynecologica Scandinavica=Acta Obstet Gynecol Scand;; Acta Obstetricia Et Gynecologica Scandinavica = Acta Obstet Gyn Scan Acta Obstetricia Et Gynecologica Scandinavica = Acta Obstet. Gyn. Scan. Acta obstetricia et gynecologica Scandinavica. Supplement = Acta Obstet Gynecol Scand Suppl Acta Obstetricia et Gynecologica Scandinavica. Supplement = Acta Obstet. Gynecol. Scand. Suppl. Acta Obstetricia Et Gynecologica Scandinavica. Supplement=Acta Obstet Gynecol Scand Suppl;; Acta Oceanologica Sinica = Acta Oceanolog. Sin. Acta Oceanologica Sinica = Acta Oceanol Sin Acta Oceanologica Sinica = Acta Oceanol. Sin. Acta Odontologica Latinoamericana = Acta Odontol. Latinoam. Acta odontologica latinoamericana : AOL = Acta Odontol Latinoam Acta odontologica Scandinavica = Acta Odontol Scand Acta Odontologica Scandinavica=Acta Odontol Scand;; Acta Odontologica Scandinavica = Acta Odontol Scand Acta Odontologica Scandinavica = Acta Odontol. Scand. Acta odontologica Scandinavica. Supplementum = Acta Odontol Scand Suppl Acta Odontologica Scandinavica. Supplementum = Acta Odontol. Scand. Suppl. Acta odontologica venezolana = Acta Odontol Venez Acta Odontologica Venezolana = Acta Odontol. Venez. Acta Oecologica = Acta Oecol. Acta Oecologica-international Journal of Ecology = Acta Oecol Acta Oecologica-international Journal of Ecology = Acta Oecol. Acta Oecologica-oecologia Applicata = Acta Oecol-oec Appl Acta Oecologica-oecologia Applicata = Acta Oecol-oec. Appl. Acta Oecologica-oecologia Generalis = Acta Oecol-oec Gen Acta Oecologica-oecologia Generalis = Acta Oecol-oec. Gen. Acta Oecologica-oecologia Plantarum = Acta Oecol-oec Plant Acta Oecologica-oecologia Plantarum = Acta Oecol-oec. Plant. Acta Oeconomica=Acta Oecon. Acta Oeconomica = Acta Oecon Acta Oeconomica = Acta Oecon. Acta of Bioengineering and Biomechanics = Acta Bioeng Biomech Acta of Bioengineering and Biomechanics = Acta Bioeng. Biomech. Acta of bioengineering and biomechanics / Wroclaw University of Technology = Acta Bioeng Biomech Acta Oncologica=Acta Oncol;; Acta Oncologica = Acta Oncol Acta Oncologica = Acta Oncol. Acta oncologica = Acta Oncol (Madr) Acta oncologica (Stockholm, Sweden) = Acta Oncol Acta Ophthalmologica = Acta Ophthalmol Acta Ophthalmologica = Acta Ophthalmol. Acta ophthalmologica = Acta Ophthalmol (Copenh) Acta Ophthalmologica = Acta Ophthalmol. (Copenh.) Acta Ophthalmologica Scandinavica = Acta Ophthalmol Scan Acta Ophthalmologica Scandinavica = Acta Ophthalmol. Scan. Acta ophthalmologica Scandinavica = Acta Ophthalmol Scand Acta Ophthalmologica Scandinavica=Acta Ophthalmol Scand;; Acta Ophthalmologica Scandinavica = Acta Ophthalmol. Scand. Acta ophthalmologica Scandinavica. Supplement = Acta Ophthalmol Scand Suppl Acta Ophthalmologica Scandinavica. Supplement=Acta Ophthalmol Scand Suppl;; Acta Ophthalmologica Scandinavica. Supplement = Acta Ophthalmol. Scand. Suppl. Acta ophthalmologica. Supplement = Acta Ophthalmol Suppl Acta Ophthalmologica. Supplement = Acta Ophthalmol. Suppl. Acta ophthalmologica. Supplementum = Acta Ophthalmol Suppl Acta Ophthalmologica. Supplementum = Acta Ophthalmol. Suppl. Acta orientalia Academiae scientiarum Hungaricae = ActaOrHung Acta Orientalia Academiae Scientiarum Hungaricae = AOrientHung Acta Orientalia = Acta Orient Acta Orientalia = Acta Orient. Acta orientalia (Kopenhagen) = ActaOr Acta Ornithologica = Acta Ornithol Acta Ornithologica = Acta Ornithol. Acta orthopaedica = Acta Orthop Acta Orthopaedica = Acta Orthop Acta Orthopaedica = Acta Orthop. Acta orthopaedica Belgica = Acta Orthop Belg Acta Orthopaedica Belgica=Acta Orthop Belg;; Acta Orthopaedica Belgica = Acta Orthop Belg Acta Orthopaedica Belgica = Acta Orthop. Belg. Acta Orthopaedica Et Traumatologica Turcica = Acta Orthop Traumato Acta Orthopaedica Et Traumatologica Turcica = Acta Orthop. Traumato. Acta orthopaedica et traumatologica turcica = Acta Orthop Traumatol Turc Acta orthopaedica Scandinavica = Acta Orthop Scand Acta Orthopaedica Scandinavica=Acta Orthop Scand;; Acta Orthopaedica Scandinavica = Acta Orthop Scand Acta Orthopaedica Scandinavica = Acta Orthop. Scand. Acta orthopaedica Scandinavica. Supplementum = Acta Orthop Scand Suppl Acta Orthopaedica Scandinavica. Supplementum=Acta Orthop Scand Suppl;; Acta Orthopaedica Scandinavica. Supplementum = Acta Orthop. Scand. Suppl. Acta orthopaedica. Supplementum = Acta Orthop Suppl Acta Orthopaedica. Supplementum = Acta Orthop. Suppl. Acta Ortopedica Brasileira = Acta Ortop Bras Acta Ortopedica Brasileira = Acta Ortop. Bras. Acta ortopedica mexicana = Acta Ortop Mex Acta oto-laryngologica = Acta Otolaryngol Acta Oto-laryngologica = Acta Oto-laryngol Acta Oto-laryngologica = Acta Oto-laryngol. Acta Oto-Laryngologica=Acta Otolaryngol (Stockh);; Acta Oto-Laryngologica = Acta Otolaryngol. (Stockh.) Acta Oto-Laryngologica. Supplement=Acta Otolaryngol Suppl (Stockh);; Acta Oto-Laryngologica. Supplement = Acta Otolaryngol. Suppl. (Stockh.) Acta oto-laryngologica. Supplementum = Acta Otolaryngol Suppl Acta oto-rhino-laryngologica Belgica = Acta Otorhinolaryngol Belg Acta Oto-Rhino-Laryngologica Belgica=Acta Otorhinolaryngol Belg;; Acta Oto-Rhino-Laryngologica Belgica = Acta Otorhinolaryngol. Belg. Acta Otorhinolaryngologica Italica = Acta Otorhinolaryngo Acta Otorhinolaryngologica Italica = Acta Otorhinolaryngo. Acta Otorhinolaryngologica Italica=Acta Otorhinolaryngol Ital;; Acta Otorhinolaryngologica Italica = Acta Otorhinolaryngol. Ital. Acta otorhinolaryngologica Italica : organo ufficiale della Societa italiana di otorinolaringologia e chirurgia cervico-facciale = Acta Otorhinolaryngol Ital Acta oto-rino-laringologica ibero-americana = Acta Otorinolaryngol Iber Am Acta Oto-Rino-Laringologica Ibero-Americana = Acta Otorinolaryngol. Iber. Am. Acta otorrinolaringologica espanola = Acta Otorrinolaringol Esp Acta Otorrinolaringologica Espanola=Acta Otorrinolaringol Esp;; Acta Otorrinolaringologica Espanola = Acta Otorrinolaringol. Esp. Acta paediatrica Academiae Scientiarum Hungaricae = Acta Paediatr Acad Sci Hung Acta Paediatrica Academiae Scientiarum Hungaricae = Acta Paediatr. Acad. Sci. Hung. Acta Paediatrica Academiae Scientiarum Hungaricae = Acta Paediatr Hung Acta Paediatrica Academiae Scientiarum Hungaricae = Acta Paediatr. Hung. Acta paediatrica = Acta Paediatr Acta Paediatrica=Acta Paediatr;; Acta Paediatrica = Acta Paediatr Acta Paediatrica = Acta Paediatr. Acta paediatrica Belgica = Acta Paediatr Belg Acta Paediatrica Belgica = Acta Paediatr Belg Acta Paediatrica Belgica = Acta Paediatr. Belg. Acta paediatrica Hungarica = Acta Paediatr Hung Acta Paediatrica Hungarica = Acta Paediatr. Hung. Acta Paediatrica Japonica = Acta Paediatr Japon Acta Paediatrica Japonica = Acta Paediatr. Japon. Acta Paediatrica Japonica=Acta Paediatr Jpn;; Acta Paediatrica Japonica = Acta Paediatr. Jpn. Acta paediatrica Japonica; Overseas edition = Acta Paediatr Jpn Acta paediatrica Latina = Acta Paediatr Lat Acta paediatrica (Oslo, Norway : 1992) = Acta Paediatr Acta paediatrica (Oslo, Norway : 1992). Supplement = Acta Paediatr Suppl Acta paediatrica Scandinavica = Acta Paediatr Scand Acta Paediatrica Scandinavica = Acta Paediatr Scand Acta Paediatrica Scandinavica = Acta Paediatr. Scand. Acta paediatrica Scandinavica. Supplement = Acta Paediatr Scand Suppl Acta Paediatrica Scandinavica. Supplement = Acta Paediatr. Scand. Suppl. Acta Paediatrica. Supplement=Acta Paediatr Suppl;; Acta Paediatrica. Supplement = Acta Paediatr. Suppl. Acta paediatrica. Supplementum = Acta Paediatr Suppl Acta Paediatrica Taiwanica = Acta Paediatr. Taiwan. Acta paedologica = Acta Paedolog Acta paedopsychiatrica = Acta Paedopsychiatr Acta Paedopsychiatrica = Acta Paedopsychiatr Acta Paedopsychiatrica = Acta Paedopsychiatr. Acta Palaeobotanica = Acta Palaeobot. Acta palaeontologica Polonica = Acta Palaeontol Pol Acta Palaeontologica Polonica = Acta Palaeontol Pol Acta Palaeontologica Polonica = Acta Palaeontol. Pol. Acta Parasitologica = Acta Parasitol Acta Parasitologica = Acta Parasitol. Acta pathologica et microbiologica Scandinavica = Acta Pathol Microbiol Scand Acta Pathologica et Microbiologica Scandinavica = Acta Pathol. Microbiol. Scand. Acta Pathologica Et Microbiologica Scandinavica = Acta Pathol Mic Sc Acta Pathologica Et Microbiologica Scandinavica = Acta Pathol. Mic. Sc. Acta Pathologica Et Microbiologica Scandinavica Section A-pathology = Acta Path Micro Im A Acta Pathologica Et Microbiologica Scandinavica Section A-pathology = Acta Path. Micro. Im. A. Acta pathologica et microbiologica Scandinavica. Section A, Pathology = Acta Pathol Microbiol Scand [A] Acta Pathologica et Microbiologica Scandinavica. Section A, Pathology = Acta Pathol. Microbiol. Scand. [A] Acta Pathologica Et Microbiologica Scandinavica Section B-microbiology = Acta Path Micro Im B Acta Pathologica Et Microbiologica Scandinavica Section B-microbiology = Acta Path. Micro. Im. B. Acta pathologica et microbiologica Scandinavica. Section B, Microbiology = Acta Pathol Microbiol Scand [B] Acta Pathologica et Microbiologica Scandinavica. Section B, Microbiology = Acta Pathol. Microbiol. Scand. [B] Acta pathologica et microbiologica Scandinavica. Section B: Microbiology and immunology = Acta Pathol Microbiol Scand [B] Microbiol Immunol Acta Pathologica et Microbiologica Scandinavica. Section B, Microbiology and Immunology = Acta Pathol. Microbiol. Scand. [B] Microbiol. Immunol. Acta Pathologica Et Microbiologica Scandinavica Section B-microbiology and Immunology = Acta Patholog Microb Acta Pathologica Et Microbiologica Scandinavica Section B-microbiology and Immunology = Acta Patholog. Microb. Acta Pathologica Et Microbiologica Scandinavica Section C-immunology = Acta Path Micro Im C Acta Pathologica Et Microbiologica Scandinavica Section C-immunology = Acta Path. Micro. Im. C. Acta pathologica et microbiologica Scandinavica. Section C, Immunology = Acta Pathol Microbiol Scand [C] Acta Pathologica et Microbiologica Scandinavica. Section C, Immunology = Acta Pathol. Microbiol. Scand. [C] Acta pathologica et microbiologica Scandinavica. Supplement = Acta Pathol Microbiol Scand Suppl Acta Pathologica et Microbiologica Scandinavica. Supplement = Acta Pathol. Microbiol. Scand. Suppl. Acta pathologica et microbiologica Scandinavica. Supplementum = Acta Pathol Microbiol Scand Suppl Acta Pathologica Japonica = Acta Pathol Japon Acta Pathologica Japonica = Acta Pathol. Japon. Acta pathologica japonica = Acta Pathol Jpn Acta Pathologica Japonica = Acta Pathol. Jpn. Acta Pathologica Microbiologica Et Immunologica Scandinavica Section A-pathology = Acta Path Micro Im A Acta Pathologica Microbiologica Et Immunologica Scandinavica Section A-pathology = Acta Path. Micro. Im. A. Acta pathologica, microbiologica, et immunologica Scandinavica. Section A, Pathology = Acta Pathol Microbiol Immunol Scand [A] Acta Pathologica, Microbiologica, et Immunologica Scandinavica. Section A, Pathology = Acta Pathol. Microbiol. Immunol. Scand. [A] Acta Pathologica Microbiologica Et Immunologica Scandinavica Section B-microbiology = Acta Path Micro Im B Acta Pathologica Microbiologica Et Immunologica Scandinavica Section B-microbiology = Acta Path. Micro. Im. B. Acta pathologica, microbiologica, et immunologica Scandinavica. Section B, Microbiology = Acta Pathol Microbiol Immunol Scand [B] Acta Pathologica, Microbiologica, et Immunologica Scandinavica. Section B, Microbiology = Acta Pathol. Microbiol. Immunol. Scand. [B] Acta Pathologica Microbiologica Et Immunologica Scandinavica Section C-immunology = Acta Path Micro Im C Acta Pathologica Microbiologica Et Immunologica Scandinavica Section C-immunology = Acta Path. Micro. Im. C. Acta pathologica, microbiologica, et immunologica Scandinavica. Section C, Immunology = Acta Pathol Microbiol Immunol Scand [C] Acta Pathologica, Microbiologica, et Immunologica Scandinavica. Section C, Immunology = Acta Pathol. Microbiol. Immunol. Scand. [C] Acta pathologica, microbiologica, et immunologica Scandinavica. Supplement = Acta Pathol Microbiol Immunol Scand Suppl Acta Pathologica, Microbiologica, et Immunologica Scandinavica. Supplement = Acta Pathol. Microbiol. Immunol. Scand. Suppl. Acta Paulista De Enfermagem = Acta Paul Enferm Acta Paulista De Enfermagem = Acta Paul. Enferm. Acta pediatrica espanola = Acta Pediatr Esp Acta Pediatrica Espanola = Acta Pediatr. Esp. Acta Petrologica Sinica = Acta Petrol Sin Acta Petrologica Sinica = Acta Petrol. Sin. Acta Pharmaceutica = Acta Pharmaceut Acta Pharmaceutica = Acta Pharmaceut. Acta pharmaceutica Hungarica = Acta Pharm Hung Acta Pharmaceutica Hungarica=Acta Pharm Hung;; Acta Pharmaceutica Hungarica = Acta Pharm. Hung. Acta pharmaceutica internationalia = Acta Pharm Int Acta pharmaceutica Jugoslavica = Acta Pharm Jugosl Acta Pharmaceutica Jugoslavica = Acta Pharm Jugosl Acta Pharmaceutica Jugoslavica = Acta Pharm. Jugosl. Acta pharmaceutica Nordica = Acta Pharm Nord Acta Pharmaceutica Nordica = Acta Pharm. Nord. Acta Pharmaceutica Nordica = Acta Pharm Nordica Acta Pharmaceutica Nordica = Acta Pharm. Nordica Acta pharmaceutica Suecica = Acta Pharm Suec Acta Pharmaceutica Suecica = Acta Pharm Suec Acta Pharmaceutica Suecica = Acta Pharm. Suec. Acta Pharmaceutica Technologica-international Journal of Drug Forumlation and Biopharmaceutics = Acta Pharm Technol Acta Pharmaceutica Technologica-international Journal of Drug Forumlation and Biopharmaceutics = Acta Pharm. Technol. Acta pharmaceutica (Zagreb, Croatia) = Acta Pharm Acta Pharmaceutica (Zagreb, Croatia) = Acta Pharm. (Zagreb, Croatia) Acta Pharmacologica Et Toxicologica = Acta Pharmacol Tox Acta Pharmacologica Et Toxicologica = Acta Pharmacol. Tox. Acta pharmacologica et toxicologica = Acta Pharmacol Toxicol (Copenh) Acta Pharmacologica et Toxicologica = Acta Pharmacol. Toxicol. (Copenh.) Acta pharmacologica Sinica = Acta Pharmacol Sin Acta Pharmacologica Sinica = Acta Pharmacol Sin Acta Pharmacologica Sinica = Acta Pharmacol. Sin. Acta Pharmacologica Sinica = Acta Pharm Sinic Acta Pharmacologica Sinica = Acta Pharm. Sinic. Acta philologica. Societas academica Dacoromana = ActaPhilSocDac Acta Philosophica = Acta Philos Acta Philosophica = Acta Philos. Acta Physica Academiae Scientiarum Hungaricae = Acta Phys Hung Acta Physica Academiae Scientiarum Hungaricae = Acta Phys. Hung. Acta Physica Austriaca = Acta Phys Austriaca Acta Physica Austriaca = Acta Phys. Austriaca Acta Physica Debrecina = Acta Phys. Debrecina Acta Physica Et Chemica = Acta Phys Chem Acta Physica Et Chemica = Acta Phys. Chem. Acta Physica et Chimica Debrecina = Acta Phys. Chim. Debrecina Acta Physica Hungarica = Acta Phys Hung Acta Physica Hungarica = Acta Phys. Hung. Acta Physica Hungarica A-heavy Ion Physics = Acta Phys Hung A Acta Physica Hungarica A-heavy Ion Physics = Acta Phys. Hung. A. Acta Physica Hungarica New Series-heavy Ion Physics = Acta Phys Hung Ns-h Acta Physica Hungarica New Series-heavy Ion Physics = Acta Phys. Hung. Ns-h. Acta Physica Polonica A = Acta Phys Pol A Acta Physica Polonica A = Acta Phys. Pol. A Acta Physica Polonica, A = Acta Phys. Pol., A Acta Physica Polonica B = Acta Phys Pol B Acta Physica Polonica B = Acta Phys. Pol. B Acta Physica Polonica, B = Acta Phys. Pol., B Acta Physica Polonica B Proceedings Supplement = Acta Phys Pol B Pr S Acta Physica Polonica B Proceedings Supplement = Acta Phys. Pol. B Pr. S. Acta Physica Polonica Proceedings Supplement = Acta Phys. Pol. B. Proc. Suppl. Acta Physica Sinica = Acta Phys Sin-ch Ed Acta Physica Sinica = Acta Phys. Sin-ch. Ed. Acta Physica Sinica = Acta Phys. Sinica Acta Physica Sinica-overseas Edition = Acta Phys Sin-ov Ed Acta Physica Sinica-overseas Edition = Acta Phys. Sin-ov. Ed. Acta Physica Slovaca = Acta Phys Slovaca Acta Physica Slovaca = Acta Phys. Slovaca Acta Physico-chimica Sinica = Acta Phys-chim Sin Acta Physico-chimica Sinica = Acta Phys-chim. Sin. Acta Physico-Chimica Sinica = Acta Phys. Chim. Sin. Acta Physicochimica Urss = Acta Physicochim Urs Acta Physicochimica Urss = Acta Physicochim. Urs. Acta Physiologiae Plantarum = Acta Physiol Plant Acta Physiologiae Plantarum = Acta Physiol. Plant. Acta physiologiae plantarum / Polish Academy of Sciences, Committee of Plant Physiology Genetics and Breeding = Acta Physiol Plant Acta physiologica Academiae Scientiarum Hungaricae = Acta Physiol Acad Sci Hung Acta Physiologica Academiae Scientiarum Hungaricae = Acta Physiol. Acad. Sci. Hung. Acta Physiologica Academiae Scientiarum Hungaricae = Acta Physiol Hung Acta Physiologica Academiae Scientiarum Hungaricae = Acta Physiol. Hung. Acta Physiologica = Acta Physiol Acta Physiologica = Acta Physiol. Acta physiologica et pharmacologica Bulgarica = Acta Physiol Pharmacol Bulg Acta Physiologica et Pharmacologica Bulgarica = Acta Physiol. Pharmacol. Bulg. Acta Physiologica Et Pharmacologica Bulgarica=Acta Physiol Pharmacol Bulg;; Acta Physiologica et Pharmacologica Latinoamericana = Acta Physiol. Pharmacol. Latinoam. Acta Physiologica Et Pharmacologica Latinoamericana = Acta Physiol Pharm L Acta Physiologica Et Pharmacologica Latinoamericana = Acta Physiol. Pharm. L. Acta physiologica et pharmacologica latinoamericana : organo de la Asociacion Latinoamericana de Ciencias Fisiologicas y de la Asociacion Latinoamericana de Farmacologia = Acta Physiol Pharmacol Latinoam Acta physiologica et pharmacologica Neerlandica = Acta Physiol Pharmacol Neerl Acta Physiologica et Pharmacologica Neerlandica = Acta Physiol. Pharmacol. Neerl. Acta Physiologica Et Pharmacologica Neerlandica = Acta Physiol Pharm N Acta Physiologica Et Pharmacologica Neerlandica = Acta Physiol. Pharm. N. Acta physiologica Hungarica = Acta Physiol Hung Acta Physiologica Hungarica=Acta Physiol Hung;; Acta Physiologica Hungarica = Acta Physiol Hung Acta Physiologica Hungarica = Acta Physiol. Hung. Acta physiologica latino americana = Acta Physiol Lat Am Acta Physiologica Latinoamericana = Acta Physiol Lat Am Acta Physiologica Latinoamericana = Acta Physiol. Lat. Am. Acta physiologica (Oxford, England) = Acta Physiol (Oxf) Acta Physiologica, Pharmacologica et Therapeutica Latinoamericana = Acta Physiol. Pharmacol. Ther. Latinoam. Acta Physiologica, Pharmacologica Et Therapeutica Latinoamericana=Acta Physiol Pharmacol Ther Latinoam;; Acta physiologica, pharmacologica et therapeutica latinoamericana : organo de la Asociacion Latinoamericana de Ciencias Fisiologicas y [de] la Asociacion Latinoamericana de Farmacologia = Acta Physiol Pharmacol Ther Latinoam Acta physiologica Polonica = Acta Physiol Pol Acta Physiologica Polonica = Acta Physiol Pol Acta Physiologica Polonica = Acta Physiol. Pol. Acta physiologica Scandinavica = Acta Physiol Scand Acta Physiologica Scandinavica=Acta Physiol Scand;; Acta Physiologica Scandinavica = Acta Physiol Scand Acta Physiologica Scandinavica = Acta Physiol. Scand. Acta physiologica Scandinavica. Supplementum = Acta Physiol Scand Suppl Acta Physiologica Scandinavica. Supplementum=Acta Physiol Scand Suppl;; Acta Physiologica Scandinavica. Supplementum = Acta Physiol. Scand. Suppl. Acta physiotherapica et rheumatologica Belgica = Acta Physiother Rheumatol Belg Acta Phytogeographica Suecica = Acta Phytogeogr. Suec. Acta Phytomedica = Acta Phytomed. Acta Phytopathologica Academiae Scientiarum Hungaricae = Acta Phytopathol Hun Acta Phytopathologica Academiae Scientiarum Hungaricae = Acta Phytopathol. Hun. Acta Phytopathologica et Entomologica Hungarica = Acta Phytopathol. Entomol. Hung. Acta Phytopathologica Et Entomologica Hungarica = Acta Phytopathol Hun Acta Phytopathologica Et Entomologica Hungarica = Acta Phytopathol. Hun. Acta Phytotaxonomica Sinica = Acta Phytotaxon Sin Acta Phytotaxonomica Sinica = Acta Phytotaxon. Sin. Acta Politica = Acta Polit Acta Politica = Acta Polit. Acta Poloniae historica = Acta Pol Hist Acta Poloniae Historica = Acta Pol Hist Acta Poloniae Historica = Acta Pol. Hist. Acta poloniae pharmaceutica = Acta Pol Pharm Acta Poloniae Pharmaceutica=Acta Pol Pharm;; Acta Poloniae Pharmaceutica = Acta Pol Pharm Acta Poloniae Pharmaceutica = Acta Pol. Pharm. Acta Polymerica = Acta Polym Acta Polymerica = Acta Polym. Acta Polymerica Sinica = Acta Polym Sin Acta Polymerica Sinica = Acta Polym. Sin. Acta Polytechnica Hungarica = Acta Polytech Hung Acta Polytechnica Hungarica = Acta Polytech. Hung. Acta Polytechnica Scandinavica = Acta Polytech. Scand. Math. Manage. Comput. Eng. Ser. Acta Polytechnica Scandinavica-applied Physics Series = Acta Polytech Sc Ap Acta Polytechnica Scandinavica-applied Physics Series = Acta Polytech. Sc. Ap. Acta Polytechnica Scandinavica - Chemical Technology Series = Acta Polytech. Scand., Chem. Technol. Ser Acta Polytechnica Scandinavica-chemical Technology Series = Acta Polytech Sc Ch Acta Polytechnica Scandinavica-chemical Technology Series = Acta Polytech. Sc. Ch. Acta Polytechnica Scandinavica-chemistry Including Metallurgy Series = Acta Polytech Scand Acta Polytechnica Scandinavica-chemistry Including Metallurgy Series = Acta Polytech. Scand. Acta Polytechnica Scandinavica-civil Engineering and Building Construction Series = Acta Polytech Sc Ci Acta Polytechnica Scandinavica-civil Engineering and Building Construction Series = Acta Polytech. Sc. Ci. Acta Polytechnica Scandinavica-electrical Engineering Series = Acta Polytech Sc El Acta Polytechnica Scandinavica-electrical Engineering Series = Acta Polytech. Sc. El. Acta Polytechnica Scandinavica-mathematics and Computer Science Series = Acta Polytech Sc Ma Acta Polytechnica Scandinavica-mathematics and Computer Science Series = Acta Polytech. Sc. Ma. Acta Polytechnica Scandinavica-mathematics and Computing Machinery Series = Acta Polytec Scand-m Acta Polytechnica Scandinavica-mathematics and Computing Machinery Series = Acta Polytec. Scand-m. Acta Polytechnica Scandinavica-mechanical Engineering Series = Acta Polytech Sc Me Acta Polytechnica Scandinavica-mechanical Engineering Series = Acta Polytech. Sc. Me. Acta Polytechnica Scandinavica-physics Including Nucleonics Series = Acta Polytech Sc Ph Acta Polytechnica Scandinavica-physics Including Nucleonics Series = Acta Polytech. Sc. Ph. Acta praehistorica et archaeologica = ActaPraehistA Acta protozoologica = Acta Protozool Acta Protozoologica = Acta Protozool Acta Protozoologica = Acta Protozool. Acta Psiquiatrica Y Psicologica De America Latina = Acta Psiquiat Psicol Acta Psiquiatrica Y Psicologica De America Latina = Acta Psiquiat. Psicol. Acta psiquiatrica y psicologica de America latina = Acta Psiquiatr Psicol Am Lat Acta Psiquiatrica y Psicologica de America Latina = Acta Psiquiatr. Psicol. Am. Lat. Acta psychiatrica Belgica = Acta Psychiatr Belg Acta Psychiatrica Belgica = Acta Psychiatr. Belg. Acta psychiatrica et neurologica = Acta Psychiatr Neurol Acta Psychiatrica Et Neurologica = Acta Psych Neurol Acta Psychiatrica Et Neurologica = Acta Psych. Neurol. Acta psychiatrica et neurologica Scandinavica = Acta Psychiatr Neurol Scand Acta Psychiatrica Et Neurologica Scandinavica = Acta Psych Neurol Acta Psychiatrica Et Neurologica Scandinavica = Acta Psych. Neurol. Acta psychiatrica et neurologica Scandinavica. Supplementum = Acta Psychiatr Neurol Scand Suppl Acta Psychiatrica Et Neurologica Scandinavica Supplementum = Acta Psych Neurol Sc Acta Psychiatrica Et Neurologica Scandinavica Supplementum = Acta Psych. Neurol. Sc. Acta psychiatrica et neurologica. Supplementum = Acta Psychiatr Neurol Suppl Acta Psychiatrica Et Neurologica Supplementum = Acta Psych Neurol Su Acta Psychiatrica Et Neurologica Supplementum = Acta Psych. Neurol. Su. Acta psychiatrica Scandinavica = Acta Psychiatr Scand Acta Psychiatrica Scandinavica=Acta Psychiatr Scand;; Acta Psychiatrica Scandinavica = Acta Psychiatr. Scand. Acta Psychiatrica Scandinavica = Acta Psychiat Scand Acta Psychiatrica Scandinavica = Acta Psychiat. Scand. Acta psychiatrica Scandinavica. Supplementum = Acta Psychiatr Scand Suppl Acta Psychiatrica Scandinavica. Supplementum=Acta Psychiatr Scand Suppl;; Acta Psychiatrica Scandinavica. Supplementum = Acta Psychiatr. Scand. Suppl. Acta Psychologica = Acta Psychol Acta Psychologica = Acta Psychol. Acta psychologica = Acta Psychol (Amst) Acta Psychologica=Acta Psychol (Amst);; Acta Psychologica = Acta Psychol. (Amst.) Acta Psychologica Taiwanica = Acta Psychol Taiwan Acta Psychologica Taiwanica = Acta Psychol. Taiwan. Acta Psychotherapeutica Et Psychosomatica = Acta Psychother Acta Psychotherapeutica Et Psychosomatica = Acta Psychother. Acta psychotherapeutica et psychosomatica = Acta Psychother Psychosom Acta psychotherapeutica, psychosomatica et orthopaedagogica = Acta Psychother Psychosom Orthopaedagog Acta radiologica = Acta radiol Acta Radiologica=Acta Radiol;; Acta Radiologica = Acta Radiol Acta Radiologica = Acta Radiol. Acta Radiologica-diagnosis = Acta Radiol Acta Radiologica-diagnosis = Acta Radiol. Acta Radiologica-diagnosis = Acta Radiol Diagn Acta Radiologica-diagnosis = Acta Radiol. Diagn. Acta radiologica: diagnosis = Acta Radiol Diagn (Stockh) Acta Radiologica. Diagnosis = Acta Radiol. Diagn. (Stockh.) Acta radiologica et cancerologica. Bohemoslovencia = Acta Radiol Cancerol Acta Radiologica Oncology = Acta Oncol Acta Radiologica Oncology = Acta Oncol. Acta radiologica. Oncology = Acta Radiol Oncol Acta Radiologica Oncology = Acta Radiol Oncol Acta Radiologica Oncology = Acta Radiol. Oncol. Acta Radiologica. Oncology = Acta Radiol. Oncol. Acta radiologica: oncology, radiation, physics, biology = Acta Radiol Oncol Radiat Phys Biol Acta Radiologica. Oncology, Radiation, Physics, Biology = Acta Radiol. Oncol. Radiat. Phys. Biol. Acta radiologica (Stockholm, Sweden : 1987) = Acta Radiol Acta radiologica. Supplementum = Acta Radiol Suppl Acta Radiologica. Supplementum=Acta Radiol Suppl;; Acta Radiologica. Supplementum = Acta Radiol. Suppl. Acta Radiologica-therapy Physics Biology = Acta Radiol Ther Phy Acta Radiologica-therapy Physics Biology = Acta Radiol. Ther. Phy. Acta radiologica: therapy, physics, biology = Acta Radiol Ther Phys Biol Acta Radiologica. Therapy, Physics, Biology = Acta Radiol. Ther. Phys. Biol. Acta reproductiva Turcica = Acta Reprod Turc Acta reumatologica portuguesa = Acta Reumatol Port Acta Reumatologica Portuguesa = Acta Reumatol Port Acta Reumatologica Portuguesa = Acta Reumatol. Port. Acta rheumatologica Scandinavica = Acta Rheumatol Scand Acta Rheumatologica Scandinavica = Acta Rheumatol. Scand. Acta rheumatologica Scandinavica. Supplementum = Acta Rheumatol Scand Suppl Acta rhumatologica = Acta Rhumatol Acta Rhumatologica = Acta Rhumatol. Acta rhumatologica Belgica = Acta Rhumatol Belg Acta Rhumatologica Belgica = Acta Rhumatol. Belg. Acta Salmanticensia. Filosofia y letras = Acta Salmanticensia Ser Filos Letra Acta Salmanticensia. Historia de la medicina = Acta Salmant Hist Med Acta Scholae Medicinalis Universitatis in Kioto = Acta Sch Med Univ Kioto Acta Scholae Medicinalis Universitatis in Kioto = Acta Sch. Med. Univ. Kioto Acta Scientiae Veterinariae = Acta Sci Vet Acta Scientiae Veterinariae = Acta Sci. Vet. Acta Scientiarum-agronomy = Acta Sci-agron Acta Scientiarum-agronomy = Acta Sci-agron. Acta Scientiarum Mathematicarum = Acta Sci Math Acta Scientiarum Mathematicarum = Acta Sci. Math. Acta scientiarum naturalium Academiae scientiarum Bohemoslovaca = Acta sci. nat. Acad. sci. Bohemoslov. Acta Scientiarum Naturalium Universitatis Jilinensis = Acta Sci. Natur. Univ. Jilin. Acta Scientiarum Naturalium Universitatis Normalis Hunanensis = Acta Sci. Natur. Univ. Norm. Hunan. Acta Scientiarum Naturalium Universitatis Sunyatseni = Acta Sci. Natur. Univ. Sunyatseni Acta Scientiarum Polonorum-hortorum Cultus = Acta Sci Pol-hortoru Acta Scientiarum Polonorum-hortorum Cultus = Acta Sci. Pol-hortoru. Acta Scientiarum-technology = Acta Sci-technol Acta Scientiarum-technology = Acta Sci-technol. Actas de dermatologia & dermatopatologia = Actas Dermatol Dermatopatol Actas de las reuniones cientificas del cuerpo facultativo del Instituto Policlinico = Actas Reun Cient Cuerfo Fac Inst Policlin Actas dermo-sifiliograficas = Actas Dermosifiliogr Actas Dermo-Sifiliograficas = Actas Dermosifiliogr. Acta Seismologica Sinica = Acta Seismol. Sin. Actas espanolas de psiquiatria = Actas Esp Psiquiatr Actas Espanolas de Psiquiatria = Actas Esp. Psiquiatr. Actas Espanolas De Psiquiatria = Actas Esp Psiquiatri Actas Espanolas De Psiquiatria = Actas Esp. Psiquiatri. Actas Luso-espanolas De Neurologia Psiquiatria Y Ciencias Afines = Actas Luso-esp Neur Actas Luso-espanolas De Neurologia Psiquiatria Y Ciencias Afines = Actas Luso-esp. Neur. Actas luso-espanolas de neurologia, psiquiatria y ciencias afines = Actas Luso Esp Neurol Psiquiatr Cienc Afines Actas Luso-Espanolas de Neurologia, Psiquiatria y Ciencias Afines = Actas Luso. Esp. Neurol. Psiquiatr. Cienc. Afines Actas luso-espanolas de neurologia y psiquiatria = Actas Luso Esp Neurol Psiquiatr Actas Luso-Espanolas de Neurologia y Psiquiatria = Actas Luso. Esp. Neurol. Psiquiatr. Acta Societatis Botanicorum Poloniae = Acta Soc Bot Pol Acta Societatis Botanicorum Poloniae = Acta Soc. Bot. Pol. Acta Societatis Medicorum Upsaliensis = Acta Soc Med Ups Acta Societatis Medicorum Upsaliensis = Acta Soc. Med. Ups. Acta Societatis Medicorum Upsaliensis Scientifiques De Bruxelles Serie 1-sciences Mathematiques Astronomiques Et Physiques = Acta Soc Med Ups Sci Acta Societatis Medicorum Upsaliensis Scientifiques De Bruxelles Serie 1-sciences Mathematiques Astronomiques Et Physiques = Acta Soc. Med. Ups. Sci. Acta Societatis Medicorum Upsaliensis. Supplementum = Acta Soc Med Ups Suppl Acta Societatis pro Fauna et Flora Fennica = Acta Soc. Fauna Flora Fenn. Acta sociologica = Acta Sociol Acta Sociologica = Acta Sociol Acta Sociologica = Acta Sociol. Acta socio-medica Scandinavica = Acta Sociomed Scand Acta Socio-medica Scandinavica = Acta Socio-med Scand Acta Socio-medica Scandinavica = Acta Socio-med. Scand. Acta Socio-Medica Scandinavica = Acta Sociomed. Scand. Acta socio-medica Scandinavica. Supplement = Acta Sociomed Scand Suppl Acta Socio-Medica Scandinavica. Supplement = Acta Sociomed. Scand. Suppl. Acta Stereologica = Acta Stereol Acta Stereologica = Acta Stereol. Acta Stereologica, Vol 10, No 1 = Acta Stereol Acta Stereologica, Vol 10, No 1 = Acta Stereol. Acta Stereologica, Vol 10, No 2 = Acta Stereol Acta Stereologica, Vol 10, No 2 = Acta Stereol. Acta Stereologica, Vol 11, Supp 1, Pts 1 and 2 = Acta Stereol Acta Stereologica, Vol 11, Supp 1, Pts 1 and 2 = Acta Stereol. Acta Stereologica, Vol 12 No 2 = Acta Stereol Acta Stereologica, Vol 12 No 2 = Acta Stereol. Acta Stereologica, Vol 13, No 1, May 1994 = Acta Stereol Acta Stereologica, Vol 13, No 1, May 1994 = Acta Stereol. Acta Stereologica, Vol 14, No 1, 1995 = Acta Stereol Acta Stereologica, Vol 14, No 1, 1995 = Acta Stereol. Acta Stereologica, Vol 14, No 2, Nov 1995 = Acta Stereol Acta Stereologica, Vol 14, No 2, Nov 1995 = Acta Stereol. Acta Stereologica, Vol 6, Supp 3, Parts 1-2 = Acta Stereol Acta Stereologica, Vol 6, Supp 3, Parts 1-2 = Acta Stereol. Acta Stereologica, Vol 9, No 1 = Acta Stereol Acta Stereologica, Vol 9, No 1 = Acta Stereol. Acta Stereologica, Vol 9, No 2 = Acta Stereol Acta Stereologica, Vol 9, No 2 = Acta Stereol. Acta stomatologica Belgica = Acta Stomatol Belg Acta Stomatologica Belgica=Acta Stomatol Belg;; Acta Stomatologica Belgica = Acta Stomatol. Belg. Acta stomatologica Croatica = Acta Stomatol Croat Acta Stomatologica Croatica = Acta Stomatol. Croat. Acta Stomatologica Internationalia = Acta Stomatol. Int. Acta stomatologica internationalia : revue scientifique et bulletin officiel de l'Association stomatologique internationale = Acta Stomatol Int Actas urologicas espanolas = Actas Urol Esp Actas Urologicas Espanolas=Actas Urol Esp;; Actas Urologicas Espanolas = Actas Urol Esp Actas Urologicas Espanolas = Actas Urol. Esp. Acta Technica Academiae Scientiarum Hungaricae = Acta Tech Hung Acta Technica Academiae Scientiarum Hungaricae = Acta Tech. Hung. Acta Technica = Acta Tech. Acta Technica CSAV = Acta Tech. CSAV Acta Theologica = Acta Theol Acta Theologica = Acta Theol. Acta therapeutica = Acta Ther Acta Therapeutica = Acta Therap Acta Therapeutica = Acta Therap. Acta Theriologica = Acta Theriol Acta Theriologica = Acta Theriol. Acta theriologica = Acta Theriol (Warsz) Acta Theriologica = Acta Theriol. (Warsz.) Acta tropica = Acta Trop Acta Tropica=Acta Trop;; Acta Tropica = Acta Trop Acta Tropica = Acta Trop. Acta Tropica. Supplement = Acta Trop. Suppl. Acta tropica. Supplementum = Acta Trop Suppl Acta tuberculosea Belgica = Acta Tuberc Belg Acta tuberculosea et pneumologica Belgica = Acta Tuberc Pneumol Belg Acta Tuberculosea et Pneumologica Belgica = Acta Tuberc. Pneumol. Belg. Acta tuberculosea et pneumologica Scandinavica = Acta Tuberc Pneumol Scand Acta Tuberculosea et Pneumologica Scandinavica = Acta Tuberc. Pneumol. Scand. Acta Tuberculosea Et Pneumologica Scandinavica = Acta Tuberc Pneum Sc Acta Tuberculosea Et Pneumologica Scandinavica = Acta Tuberc. Pneum. Sc. Acta tuberculosea et pneumologica Scandinavica. Supplementum = Acta Tuberc Pneumol Scand Suppl Acta tuberculosea Japonica = Acta Tuberc Jpn Acta Tuberculosea Japonica = Acta Tuberc. Jpn. Acta tuberculosea Scandinavica = Acta Tuberc Scand Acta tuberculosea Scandinavica. Supplementum = Acta Tuberc Scand Suppl Acta - Unio Internationalis Contra Cancrum = Acta Unio Int Contra Cancrum Acta Unio Internationalis Contra Cancrum = Acta Union Int Contr Acta Unio Internationalis Contra Cancrum = Acta Union. Int. Contr. Acta Univ. de Attila József nominatae, Acta antiqua et archaeologica. = AAASzeged Acta Univ. de Attila Jozsef nominatae, Acta Historica = AHSzeged Acta Universitatis Agriculturae Facultas Agronomica = Acta U Agr Fac Agron Acta Universitatis Agriculturae Facultas Agronomica = Acta U. Agr. Fac. Agron. Acta Universitatis Agriculturae. Facultas agronomica. Vysoka skola zemedelska v Brne. Fakulta agronomicka = Acta Univ Agric Fac Agron Acta Universitatis Agriculturae Facultas Silviculturae = Acta U Agr Fac Silvi Acta Universitatis Agriculturae Facultas Silviculturae = Acta U. Agr. Fac. Silvi. Acta Universitatis Carolinae = Acta Univ. Carolin. Math. Phys. Acta Universitatis Carolinae. Geographica. Univerzita Karlova = Acta Univ Carol Geogr Acta Universitatis Carolinae. Historia Universitatis Carolinae Pragensis. Univerzita Karlova = Acta Univ Carol Univerzita Karlov Acta Universitatis Carolinae Medica = Acta U Carol Med Acta Universitatis Carolinae Medica = Acta U. Carol. Med. Acta Universitatis Carolinae. Medica=Acta Univ Carol [Med] (Praha);; Acta Universitatis Carolinae. Medica = Acta Univ Carol [Med] (Praha) Acta Universitatis Carolinae. Medica = Acta Univ. Carol. [Med.] (Praha) Acta Universitatis Carolinae. Medica. Monographia=Acta Univ Carol Med Monogr;; Acta Universitatis Carolinae. Medica. Monographia = Acta Univ Carol Med Monogr Acta Universitatis Carolinae. Medica. Monographia = Acta Univ. Carol. Med. Monogr. Acta Universitatis Carolinae. Philosophica et historica = Acta Univ Carol Philos Hist Acta Universitatis Lodziensis = Acta Univ. Lodz. Folia Math. Acta Universitatis Lodziensis = Acta Univ. Lodz. Folia Philos. Acta Universitatis Lundensis. Sectio I, Theologica, juridica, humaniora = Acta Univ Lund Acta Universitatis Nicolai Copernici. Archaeologia = ActaTorunA Acta Universitatis Nicolai Copernici. Historia = ActaTorunHist Acta Universitatis Ouluensis = Acta Univ. Oulu. Ser. A Sci. Rerum Natur. Acta Universitatis Palackianae Olomucensis = Acta Univ. Palack. Olomuc. Fac. Rerum Natur. Math. Acta Universitatis Palackianae Olomucensis Facultatis Medicae=Acta Univ Palacki Olomuc Fac Med;; Acta Universitatis Palackianae Olomucensis Facultatis Medicae = Acta Univ Palacki Olomuc Fac Med Acta Universitatis Palackianae Olomucensis Facultatis Medicae = Acta Univ. Palacki. Olomuc. Fac. Med. Acta Universitatis Stockholmiensis : Romanica Stockholmiensia = A U S Rom S Acta Universitatis Stockholmiensis : Romanica Stockholmiensia = A. U. S. Rom. S. Acta Universitatis Stockholmiensis : Studia Baltica Stockholmiensia = Aus St Balt Acta Universitatis Stockholmiensis : Studia Baltica Stockholmiensia = Aus. St. Balt. Acta Universitatis Szegediensis = Acta Sci. Math. (Szeged) Acta Universitatis Szegediensis de Attila Jozsef Nominatae. Acta juridica et politica = Acta Univ Szeged Attila Jozsef Nominatae Acta Universitatis Tamperensis = Acta Univ. Tampere. Acta Universitatis Tamperensis = Acta Univ. Tamper. Ser. A Acta Universitatis Umensis : Umea Studies in The Humanities = A U Um Hum Acta Universitatis Umensis : Umea Studies in The Humanities = A. U. Um. Hum. Acta Universitatis Upsaliensis = Acta Univ. Upsaliensis Skr. Uppsala Univ. C Organ. Hist. Acta Universitatis Upsaliensis = Acta Univ. Ups. Stud. Philos. Ups. Acta Universitatis Upsaliensis = Acta Univ. Ups. Stud. Stat. Ups. Acta Universitatis Upsaliensis : Figura, Nova Series = Act U Ups F Acta Universitatis Upsaliensis : Figura, Nova Series = Act. U. Ups. F. Acta Universitatis Upsaliensis : Studia Anglistica Upsaliensia = A U U St An Acta Universitatis Upsaliensis : Studia Anglistica Upsaliensia = A. U. U. St. An. Acta Universitatis Upsaliensis : Studia Germanistica Upsaliensia = A U U St Ge Acta Universitatis Upsaliensis : Studia Germanistica Upsaliensia = A. U. U. St. Ge. Acta Universitatis Upsaliensis. Studia sociologica Upsaliensia = Acta Univ Ups Acta Universitatis Upsaliensis . Uppsala Studies in Education = Acta Univ U Acta Universitatis Upsaliensis . Uppsala Studies in Education = Acta Univ. U. Acta Universitatis Wratislaviensis = Acta Univ. Wratislav. Acta Universitatis Wratislaviensis. Classica Wratislaviensia. = ClassWrat Acta urologica Belgica = Acta Urol Belg Acta Urologica Belgica=Acta Urol Belg;; Acta Urologica Belgica = Acta Urol Belg Acta Urologica Belgica = Acta Urol. Belg. Acta Veterinaria Academiae Scientiarum Hungaricae = Acta Vet Acad Sci H Acta Veterinaria Academiae Scientiarum Hungaricae = Acta Vet. Acad. Sci. H. Acta veterinaria Academiae Scientiarum Hungaricae = Acta Vet Acad Sci Hung Acta Veterinaria Academiae Scientiarum Hungaricae = Acta Vet. Acad. Sci. Hung. Acta Veterinaria = Acta Vet. (Beogr.) Acta veterinaria = Acta Vet Brno Acta Veterinaria-beograd = Acta Vet-beograd Acta Veterinaria-beograd = Acta Vet-beograd. Acta Veterinaria Brno = Acta Vet Brno Acta Veterinaria Brno = Acta Vet. Brno Acta veterinaria Hungarica = Acta Vet Hung Acta Veterinaria Hungarica=Acta Vet Hung;; Acta Veterinaria Hungarica = Acta Vet Hung Acta Veterinaria Hungarica = Acta Vet. Hung. Acta veterinaria Scandinavica = Acta Vet Scand Acta Veterinaria Scandinavica=Acta Vet Scand;; Acta Veterinaria Scandinavica = Acta Vet Scand Acta Veterinaria Scandinavica = Acta Vet. Scand. Acta Veterinaria Scandinavica. Supplement=Acta Vet Scand Suppl;; Acta Veterinaria Scandinavica. Supplement = Acta Vet. Scand. Suppl. Acta veterinaria Scandinavica. Supplementum = Acta Vet Scand Suppl Acta virologica = Acta Virol Acta Virologica=Acta Virol;; Acta Virologica = Acta Virol Acta Virologica = Acta Virol. Acta vitaminologica = Acta Vitaminol Acta Vitaminologica = Acta Vitaminol Acta Vitaminologica = Acta Vitaminol. Acta Vitaminologica Et Enzymologica = Acta Vitaminol Enzym Acta Vitaminologica Et Enzymologica = Acta Vitaminol. Enzym. Acta vitaminologica et enzymologica = Acta Vitaminol Enzymol Acta Vitaminologica et Enzymologica = Acta Vitaminol. Enzymol. Acta Zoologica Academiae Scientiarum Hungaricae = Acta Zool Acad Sci H Acta Zoologica Academiae Scientiarum Hungaricae = Acta Zool. Acad. Sci. H. Acta Zoologica Academiae Scientiarum Hungaricae = Acta Zool Hung Acta Zoologica Academiae Scientiarum Hungaricae = Acta Zool. Hung. Acta Zoologica = Acta Zool-stockholm Acta Zoologica = Acta Zool-stockholm. Acta Zoologica Bulgarica = Acta Zool Bulgar Acta Zoologica Bulgarica = Acta Zool. Bulgar. Acta Zoologica Et Pathologica Antverpiensia = Acta Zool Pathol Ant Acta Zoologica Et Pathologica Antverpiensia = Acta Zool. Pathol. Ant. Acta zoologica et pathologica Antverpiensia = Acta Zool Pathol Antverp Acta Zoologica et Pathologica Antverpiensia = Acta Zool. Pathol. Antverp. Acta Zoologica Hungarica = Acta Zool Hung Acta Zoologica Hungarica = Acta Zool. Hung. Acta Zoologica Sinica = Acta Zool Sinica Acta Zoologica Sinica = Acta Zool. Sinica Acta zoologica (Stockholm, Sweden) = Acta Zool Actes de la recherche en sciences sociales = Actes Rech Sci Soc Actes De La Recherche En Sciences Sociales = Actes Rech Sci Soc Actes De La Recherche En Sciences Sociales = Actes Rech. Sci. Soc. Actes de la Société helvétique des sciences naturelles = Actes Soc. helv. sci. nat. Actes de la Société jurassienne d'émulation = Actes Soc. jura. émul. Actes Des Colloques Insectes Sociaux = Act Colloq Insect S Actes Des Colloques Insectes Sociaux = Act. Colloq. Insect. S. Actes Des Colloques Insectes Sociaux, Vol 11 = Act Colloq Insect S Actes Des Colloques Insectes Sociaux, Vol 11 = Act. Colloq. Insect. S. Actes Des Colloques Insects Sociaux, Vol 12 = Act Colloq Insect S Actes Des Colloques Insects Sociaux, Vol 12 = Act. Colloq. Insect. S. Actes Du... Congres National Des Societes Savantes, Section Des Sciences = Act Cnss Sc Actes Du... Congres National Des Societes Savantes, Section Des Sciences = Act. Cnss. Sc. Actes Du Trente-septieme Congres Des Algoniquinistes = Pap Algon Conf Actes Du Trente-septieme Congres Des Algoniquinistes = Pap. Algon. Conf. Actexpress = Actexpress Acth, Cushings Syndrome, and Other Hypercortisolemic States = Prog Endoc Acth, Cushings Syndrome, and Other Hypercortisolemic States = Prog. Endoc. Actin = Adv Exp Med Biol Actin = Adv. Exp. Med. Biol. Acting With Technology = Act Technol Acting With Technology = Act. Technol. Actinides 2005-basic Science, Applications and Technology = Mater Res Soc Symp P Actinides 2005-basic Science, Applications and Technology = Mater. Res. Soc. Symp. P. Actinides 2006-basic Science, Applications and Technology = Mater Res Soc Symp P Actinides 2006-basic Science, Applications and Technology = Mater. Res. Soc. Symp. P. Actinides 2008 - Basic Science, Applications and Technology = Mater Res Soc Symp P Actinides 2008 - Basic Science, Applications and Technology = Mater. Res. Soc. Symp. P. Actinides 2009 = Iop Conf Ser-mat Sci Actinides 2009 = Iop. Conf. Ser-mat. Sci. Actinides-basic Science, Applications and Technology = Mater Res Soc Symp P Actinides-basic Science, Applications and Technology = Mater. Res. Soc. Symp. P. Actinides Reviews = Actin Rev Actinides Reviews = Actin. Rev. Actin-monomer-binding Proteins = Mol Biol Intell Unit Actin-monomer-binding Proteins = Mol. Biol. Intell. Unit. ActionAid disability news : the newsletter of Disability Division, ActionAid, India = Actionaid Disabil News Action and Performance : Models and Tests = Poznan Stud Action and Performance : Models and Tests = Poznan. Stud. Action As An Organizer of Learning and Development = Minn Sym Child Psych Action As An Organizer of Learning and Development = Minn. Sym. Child. Psych. Action contre le SIDA = Action Contre SIDA Action For Children = Action Child Action (National Fund for Research into Crippling Diseases) = Action Natl Action-perspective in School Health Education = P Res Ctr E Action-perspective in School Health Education = P. Res. Ctr. E. Action Potential: Biophysical and Cellular Context, Initiation, Phases and Propagation = Cell Bio Res Prog Action Potential: Biophysical and Cellular Context, Initiation, Phases and Propagation = Cell. Bio. Res. Prog. Action Principle and Partial Differential Equations = Ann Math Stud Action Principle and Partial Differential Equations = Ann. Math. Stud. Action Research = Action Res-london Action Research = Action Res-london. Actions, Norms, Values = Perspekt Analyt Phil Actions, Norms, Values = Perspekt. Analyt. Phil. Action Theory and Communication Research: Recent Developments in Europe = Commun Monog Action Theory and Communication Research: Recent Developments in Europe = Commun. Monog. Activation and Desensitization of Transducing Pathways = Nato Adv Sci I H-cel Activation and Desensitization of Transducing Pathways = Nato. Adv. Sci. I. H-cel. Activation of Hormone and Growth Factor Receptors = Nato Adv Sci I C-mat Activation of Hormone and Growth Factor Receptors = Nato. Adv. Sci. I. C-mat. Active and Adaptive Optical Components and Systems Ii = P Soc Photo-opt Ins Active and Adaptive Optical Components and Systems Ii = P. Soc. Photo-opt. Ins. Active and Adaptive Optical Components = P Soc Photo-opt Ins Active and Adaptive Optical Components = P. Soc. Photo-opt. Ins. Active and Adaptive Optical Systems = P Soc Photo-opt Ins Active and Adaptive Optical Systems = P. Soc. Photo-opt. Ins. Active and Passive Electronic Components = Act. Passive Electron. Compon. Active and Passive Optical Components for Communications Vii = Proc Spie Active and Passive Optical Components for Communications Vii = Proc. Spie. Active and Passive Optical Components for Communications Vii = P Soc Photo-opt Ins Active and Passive Optical Components for Communications Vii = P. Soc. Photo-opt. Ins. Active and Passive Optical Components for Communications Vi = P Soc Photo-opt Ins Active and Passive Optical Components for Communications Vi = P. Soc. Photo-opt. Ins. Active and Passive Optical Components for Wdm Communication = Proc Spie Active and Passive Optical Components for Wdm Communication = Proc. Spie. Active and Passive Optical Components for Wdm Communication = P Soc Photo-opt Ins Active and Passive Optical Components for Wdm Communication = P. Soc. Photo-opt. Ins. Active and Passive Optical Components for Wdm Communications Iii = Proc Spie Active and Passive Optical Components for Wdm Communications Iii = Proc. Spie. Active and Passive Optical Components for Wdm Communications Iii = P Soc Photo-opt Ins Active and Passive Optical Components for Wdm Communications Iii = P. Soc. Photo-opt. Ins. Active and Passive Optical Components for Wdm Communications Ii = Proc Spie Active and Passive Optical Components for Wdm Communications Ii = Proc. Spie. Active and Passive Optical Components for Wdm Communications Ii = P Soc Photo-opt Ins Active and Passive Optical Components for Wdm Communications Ii = P. Soc. Photo-opt. Ins. Active and Passive Optical Components for Wdm Communications Iv = Proc Spie Active and Passive Optical Components for Wdm Communications Iv = Proc. Spie. Active and Passive Optical Components for Wdm Communications Iv = P Soc Photo-opt Ins Active and Passive Optical Components for Wdm Communications Iv = P. Soc. Photo-opt. Ins. Active and Passive Remote Sensing of The Oceans = Proc Spie Active and Passive Remote Sensing of The Oceans = Proc. Spie. Active and Passive Remote Sensing of The Oceans = P Soc Photo-opt Ins Active and Passive Remote Sensing of The Oceans = P. Soc. Photo-opt. Ins. Active and Passive Signatures Ii = Proc Spie Active and Passive Signatures Ii = Proc. Spie. Active and Passive Signatures = Proc Spie Active and Passive Signatures = Proc. Spie. Active and Passive Signatures = P Soc Photo-opt Ins Active and Passive Signatures = P. Soc. Photo-opt. Ins. Active and Passive Smart Structures and Integrated Systems 2007 = Proc Spie Active and Passive Smart Structures and Integrated Systems 2007 = Proc. Spie. Active and Passive Smart Structures and Integrated Systems 2007 = P Soc Photo-opt Ins Active and Passive Smart Structures and Integrated Systems 2007 = P. Soc. Photo-opt. Ins. Active and Passive Smart Structures and Integrated Systems 2008 = Proc Spie Active and Passive Smart Structures and Integrated Systems 2008 = Proc. Spie. Active and Passive Smart Structures and Integrated Systems 2008 = P Soc Photo-opt Ins Active and Passive Smart Structures and Integrated Systems 2008 = P. Soc. Photo-opt. Ins. Active and Passive Smart Structures and Integrated Systems 2010, Pts 1 and 2 = Proc Spie Active and Passive Smart Structures and Integrated Systems 2010, Pts 1 and 2 = Proc. Spie. Active and Passive Smart Structures and Integrated Systems 2010, Pts 1 and 2 = P Soc Photo-opt Ins Active and Passive Smart Structures and Integrated Systems 2010, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Active and Programmable Networks = Lect Notes Comput Sc Active and Programmable Networks = Lect. Notes. Comput. Sc. Active and Real-time Database Systems (artdb-95) = Work Comp Active and Real-time Database Systems (artdb-95) = Work. Comp. Active Assessment: Assessing Scientific Inquiry = Mentor Acad Ind Active Assessment: Assessing Scientific Inquiry = Mentor. Acad. Ind. Active Braking Control Systems Design for Vehicles = Adv Ind Control Active Braking Control Systems Design for Vehicles = Adv. Ind. Control Active Close Binaries = Nato Adv Sci I C-mat Active Close Binaries = Nato. Adv. Sci. I. C-mat. Active Conceptual Modeling of Learning = Lect Notes Comput Sc Active Conceptual Modeling of Learning = Lect. Notes. Comput. Sc. Active Control of Flexible Structures-from Modeling to Implementation = Adv Ind Control Active Control of Flexible Structures-from Modeling to Implementation = Adv. Ind. Control Active Experiments/critical Ionization Velocity = Adv Space E Active Experiments/critical Ionization Velocity = Adv. Space. E. Active Experiments in Space = Adv Space Res-series Active Experiments in Space = Adv. Space Res-series. Active Experiments in Space Plasmas - 1996 Proceedings of The D0.6 Symposium of Cospar Scientific Commission D = Adv Space Res Active Experiments in Space Plasmas - 1996 Proceedings of The D0.6 Symposium of Cospar Scientific Commission D = Adv. Space Res. Active Experiments in Space Plasmas - 1996 Proceedings of The D0.6 Symposium of Cospar Scientific Commission D = Adv Space Res-series Active Experiments in Space Plasmas - 1996 Proceedings of The D0.6 Symposium of Cospar Scientific Commission D = Adv. Space Res-series. Active Experiments in Space Plasmas = Adv Space Res Active Experiments in Space Plasmas = Adv. Space Res. Active Experiments in Space Plasmas = Adv Space Res-series Active Experiments in Space Plasmas = Adv. Space Res-series. Active Fault Tolerant Control Systems: Stochastic Analysis and Synthesis = Lect Notes Contr Inf Active Fault Tolerant Control Systems: Stochastic Analysis and Synthesis = Lect. Notes. Contr. Inf. Active Flow Control Ii = Note N Fl Mech Mul D Active Flow Control Ii = Note. N. Fl. Mech. Mul. D. Active Flow Control = Note N Fl Mech Mul D Active Flow Control = Note. N. Fl. Mech. Mul. D. Active Galactic Nuclei and Related Phenomena = Iau Symp Active Galactic Nuclei and Related Phenomena = Iau. Symp. Active Galactic Nuclei / = Iau Symp Active Galactic Nuclei / = Iau. Symp. Active Implants and Scaffolds for Tissue Regeneration = Stud Mechanobiol Tis Active Implants and Scaffolds for Tissue Regeneration = Stud. Mechanobiol. Tis. Active Infective Aortic Valve Endocarditis With Infection Extension: Clinical Features, Perioperative Echocardiographic Findings and Results of Surgical Treatment = Fortschr Herz Thorax Active Infective Aortic Valve Endocarditis With Infection Extension: Clinical Features, Perioperative Echocardiographic Findings and Results of Surgical Treatment = Fortschr. Herz. Thorax. Active Learning: Models From The Analytical Sciences = Acs Sym Ser Active Learning: Models From The Analytical Sciences = Acs. Sym. Ser. Active Materials and Adaptive Structures = Smar Mat St Active Materials and Adaptive Structures = Smar. Mat. St. Active Materials and Smart Structures = P Soc Photo-opt Ins Active Materials and Smart Structures = P. Soc. Photo-opt. Ins. Active Materials, Nanoscale Materials, Composites, Glass and Fundamentals = Fract Mech Active Materials, Nanoscale Materials, Composites, Glass and Fundamentals = Fract. Mech. Active Matrix Liquid Crystal Displays Technology and Applications = P Soc Photo-opt Ins Active Matrix Liquid Crystal Displays Technology and Applications = P. Soc. Photo-opt. Ins. Active Media Technology = Lect Notes Comput Sc Active Media Technology = Lect. Notes. Comput. Sc. Active Media Technology, Proceedings = Lect Notes Comput Sc Active Media Technology, Proceedings = Lect. Notes. Comput. Sc. Active Middle Ear Implants = Adv Oto-rhino-laryng Active Middle Ear Implants = Adv. Oto-rhino-laryng. Active Mining = Lect Notes Artif Int Active Mining = Lect. Notes. Artif. Int. Active Mining = Lect Notes Comput Sc Active Mining = Lect. Notes. Comput. Sc. Active Networks = Lect Notes Comput Sc Active Networks = Lect. Notes. Comput. Sc. Active Networks, Proceedings = Lect Notes Comput Sc Active Networks, Proceedings = Lect. Notes. Comput. Sc. Active Ob-stars: Laboratories for Stellar and Circumstellar Physics, Proceedings = Astr Soc P Active Ob-stars: Laboratories for Stellar and Circumstellar Physics, Proceedings = Astr. Soc. P. Active Ob Stars: Structure, Evolution, Mass-loss, and Critical Limits = Iau Symp P Series Active Ob Stars: Structure, Evolution, Mass-loss, and Critical Limits = Iau. Symp. P. Series. Active Participation Revisited: La Participation Active = Tex Etu Lit Active Participation Revisited: La Participation Active = Tex. Etu. Lit. Active Photonic Crystals Ii = Proc Spie Active Photonic Crystals Ii = Proc. Spie. Active Photonic Crystals Ii = P Soc Photo-opt Ins Active Photonic Crystals Ii = P. Soc. Photo-opt. Ins. Active Photonic Crystals = P Soc Photo-opt Ins Active Photonic Crystals = P. Soc. Photo-opt. Ins. Active Photonic Materials Iii = Proc Spie Active Photonic Materials Iii = Proc. Spie. Active Photonic Materials Iii = P Soc Photo-opt Ins Active Photonic Materials Iii = P. Soc. Photo-opt. Ins. Active Polymers = Mater Res Soc Symp P Active Polymers = Mater. Res. Soc. Symp. P. Active, Real-time, and Temporal Database Systems, Proceedings = Lect Notes Comput Sc Active, Real-time, and Temporal Database Systems, Proceedings = Lect. Notes. Comput. Sc. Active Tectonics and Seismic Hazards of Puerto Rico, The Virgin Islands, and Offshore Areas = Geol Soc Am Spec Pap Active Tectonics and Seismic Hazards of Puerto Rico, The Virgin Islands, and Offshore Areas = Geol. Soc. Am. Spec. Pap. Active Telescope Systems = P Soc Photo-opt Ins Active Telescope Systems = P. Soc. Photo-opt. Ins. Activins and Inhibins = Vitam Horm Activins and Inhibins = Vitam. Horm. Activitas Nervosa Superior = Activ Nerv Super Activitas Nervosa Superior = Activ. Nerv. Super. Activitas nervosa superior = Act Nerv Super (Praha) Activitas Nervosa Superior = Act. Nerv. Super. (Praha) Activities Report and Minutes of Work Groups & Sub-work Groups of The R & D Associates = Act Rep R&d Activities Report and Minutes of Work Groups & Sub-work Groups of The R & D Associates = Act. Rep. R&d. Activities Report of The R&d Associates = Act Rep R&d Activities Report of The R&d Associates = Act. Rep. R&d Activities Report of The R&d Associates, Vol 42, No 2 = Act Rep R&d Activities Report of The R&d Associates, Vol 42, No 2 = Act. Rep. R&d Activities Report of The R & D Associates, Vol 43, No 1 = Act Rep R&d Activities Report of The R & D Associates, Vol 43, No 1 = Act. Rep. R&d. Activities Report-research and Development Associates for Military Food and Packaging Systems Inc = Activ Rep Activities Report-research and Development Associates for Military Food and Packaging Systems Inc = Activ. Rep. Activity-centered Design: An Ecological Approach to Designing Smart Tools and Usable Systems = Act Technol Activity-centered Design: An Ecological Approach to Designing Smart Tools and Usable Systems = Act. Technol. Activity-driven Cns Changes in Learning and Development = Ann Ny Acad Sci Activity-driven Cns Changes in Learning and Development = Ann. Ny. Acad. Sci. Activity Pattern Analysis and Exploration: Travel Behavior Analysis and Modeling = Transport Res Rec Activity Pattern Analysis and Exploration: Travel Behavior Analysis and Modeling = Transport. Res. Rec. Actors and Audience in The Roman Courtroom = Routl Monogr Class S Actors and Audience in The Roman Courtroom = Routl. Monogr. Class. S. Actors of Collective Bargaining: A World Report = Bull Comparat Lab Re Actors of Collective Bargaining: A World Report = Bull. Comparat. Lab. Re. Act Research Report = Act Res Rep Act Research Report = Act Res. Rep. Acts of the Legislature of the province of Manitoba : passed in the session held in the ... year of the reign of ... Manitoba = Acts Legis Prov Manit Manit Actualidad juridica Aranzadi = Actual Jurid Aranzadi Actualidad medica = Actual Medica Actualidad Pediatrica = Actual. Pediatr. (Granada) Actualidad pediatrica; revista de bibliografia internacional = Actual Pediatr (Granada) Actualite Chimique = Actual. Chim. Actualite Chimique = Actual Chimique Actualite Chimique = Actual. Chimique Actualite Economique = Actual Econ Actualite Economique = Actual. Econ. Actualites anatomo-pathologiques = Actual Anatpathol Actualites biologiques = Actual Biol Actualites cardiologiques et angeiologiques internationales = Actual Cardiol Angeiol Int (Paris) Actualites Cardiologiques et Angeiologiques Internationales = Actual. Cardiol. Angeiol. Int. (Paris) Actualites de physiologie pathologique = Actual Physiol Pathol (Paris) Actualites de Physiologie Pathologique = Actual. Physiol. Pathol. (Paris) Actualites endocrinologiques = Actual Endocrinol (Paris) Actualites Endocrinologiques = Actual. Endocrinol. (Paris) Actualites hepato-gastro-enterologiques = Actual Hepatogastroenterol (Paris) Actualites Hepato-Gastro-Enterologiques = Actual. Hepatogastroenterol. (Paris) Actualités Mathématiques = Actualités Math. Actualites neurophysiologiques = Actual Neurophysiol (Paris) Actualites Neurophysiologiques = Actual. Neurophysiol. (Paris) Actualites Odonto-stomatologiques = Actual Odonto-stomat Actualites Odonto-stomatologiques = Actual. Odonto-stomat. Actualites odonto-stomatologiques = Actual Odontostomatol (Paris) Actualites Odonto-Stomatologiques = Actual. Odontostomatol. (Paris) Actualites pharmaceutiques = Actual Pharm Actualites pharmacologiques = Actual Pharmacol (Paris) Actualites Pharmacologiques = Actual. Pharmacol. (Paris) Actualites psychiatriques = Actual Psychiatr Actualités Scientifiques et Industrielles = Actualités Sci. Indust. Actualization: Linguistic Change in Progress = Amst Stud Theory His Actualization: Linguistic Change in Progress = Amst. Stud. Theory. His. Actual Problems of Contemporary Physics = Actual Probl Cont Ph Actual Problems of Contemporary Physics = Actual Probl. Cont. Ph. Actual Problems of Economics = Actual Probl Econ Actual Problems of Economics = Actual Probl. Econ. Actual Tasks On Agricultural Engineering = Act Tasks Agric Eng Actual Tasks On Agricultural Engineering = Act. Tasks Agric. Eng. Actual Tasks On Agricultural Engineering, Proceedings = Act Tasks Agric Eng Actual Tasks On Agricultural Engineering, Proceedings = Act. Tasks Agric. Eng. Actual Tasks On Agricultural Engineering-zagreb = Act Tasks Agric Eng Actual Tasks On Agricultural Engineering-zagreb = Act. Tasks Agric. Eng. Actuator 08, Conference Proceedings = Actuator Actuator 10, Conference Proceedings = Actuator Actuator-international Conference and Exhibition On New Actuators and Drive Systems = Actuator Actuator-international Conference and Exhibition On New Actuators and Drive Systems = Actuator. Actuator Technology and Applications = P Soc Photo-opt Ins Actuator Technology and Applications = P. Soc. Photo-opt. Ins. Actuelle Gerontologie = Actuelle Gerontol Actuelle Gerontologie = Actuelle Gerontol. Actuelle Traumatologie = Actuelle Traumatol Actuelle Traumatologie = Actuelle Traumatol. Actuelle Urologie = Actuel Urol Acupuncture and Electro-Therapeutics Research=Acupunct Electrother Res;; Acupuncture and Electro-Therapeutics Research = Acupunct. Electrother. Res. Acupuncture & electro-therapeutics research = Acupunct Electrother Res Acupuncture & Electro-therapeutics Research = Acupuncture Electro Acupuncture & Electro-therapeutics Research = Acupuncture Electro. Acupuncture in Medicine = Acupunct Med Acupuncture in Medicine = Acupunct. Med. Acupuncture in medicine : journal of the British Medical Acupuncture Society = Acupunct Med Acupuncture: Is There A Physiological Basis? = Int Congr Ser Acupuncture: Is There A Physiological Basis? = Int. Congr. Ser. A Current bibliography on African affairs = Curr Bibliogr Afr Aff Acustica = Acustica Acute and Chronic Pain: Where We Are and Where We Have to Go = Eur J Pain Supp Acute and Chronic Pain: Where We Are and Where We Have to Go = Eur. J. Pain. Supp. Acute and Procedure Pain in Infants and Children = Prog Pain Res Manag Acute and Procedure Pain in Infants and Children = Prog. Pain Res. Manag. Acute Appendicitis in Pregnancy = Preg Infants-med Psy Acute Appendicitis in Pregnancy = Preg. Infants-med. Psy. Acute Asthma : Clinical Assessment and Treatment = Res Clin Forums Acute Asthma : Clinical Assessment and Treatment = Res. Clin. Forums. Acute Asthma : Epidemiology and Physiology = Res Clin Forums Acute Asthma : Epidemiology and Physiology = Res. Clin. Forums. Acute Blood Purification = Contrib Nephrol Acute Blood Purification = Contrib. Nephrol. Acute cardiac care = Acute Card Care Acute Cardiac Care = Acute Card. Care Acute care = Acute Care Acute Care = Acute Care Acute Endocrinology: From Cause to Consequence = Contemp Endocrinol S Acute Endocrinology: From Cause to Consequence = Contemp. Endocrinol. S. Acute Kidney Injury = Contrib Nephrol Acute Kidney Injury = Contrib. Nephrol. Acute Leukemias = Hematol Malig Acute Leukemias = Hematol. Malig. Acute Lung Injury = Upd Int Car Acute Lung Injury = Upd. Int. Car. Acute Lymphoblastic Leukemia = Ucla Sym Bi Acute Lymphoblastic Leukemia = Ucla. Sym. Bi. Acute Management of Atrial Fibrillation and Flutter: Current Perspectives and Treatment Trends = Roy S Med S Acute Management of Atrial Fibrillation and Flutter: Current Perspectives and Treatment Trends = Roy. S. Med. S. Acute Myelogenous Leukemia = Cancer Treat Res Acute Myelogenous Leukemia = Cancer. Treat. Res. Acute Myelogenous Leukemia : Progress and Controversies = Ucla Sym Bi Acute Myelogenous Leukemia : Progress and Controversies = Ucla. Sym. Bi. Acute Pain: Causes, Effects and Treatment = Pain Orig Diagn Trea Acute Pain: Causes, Effects and Treatment = Pain. Orig. Diagn. Trea. Acute Promyelocytic Leukemia: Molecular Genetics, Mouse Models and Targeted Therapy = Curr Top Microbiol Acute Promyelocytic Leukemia: Molecular Genetics, Mouse Models and Targeted Therapy = Curr. Top. Microbiol. Acute Respiratory Distress Syndrome = Nato Adv Sci I A-lif Acute Respiratory Distress Syndrome = Nato. Adv. Sci. I. A-lif. Acute Therapy of Heart Failure = Roy Soc Med Int Cong Acute Therapy of Heart Failure = Roy. Soc. Med. Int. Cong. Ada 2005 Rationale = Lect Notes Comput Sc Ada 2005 Rationale = Lect. Notes. Comput. Sc. Ada in Transition = St Comp Com Ada in Transition = St. Comp. Com. Ada Letters = Ada Letters Adalya = Adalya Adalya. Annual of the Suna \& Inan Kiraç-Research Institute on Mediterranean Civilizations = Adalya Adamantiades-behcet's Disease = Adv Exp Med Biol Adamantiades-behcet's Disease = Adv. Exp. Med. Biol. Adam Hilger Series On Sensors = Ah S Sens Adam Hilger Series On Sensors = Ah. S. Sens. Ada : Moving Towards 2000 = Lect Notes Comput Sc Ada : Moving Towards 2000 = Lect. Notes. Comput. Sc. Adam Smith: A Moral Philosopher and His Political Economy = Great Think Econ Adam Smith: A Moral Philosopher and His Political Economy = Great. Think. Econ. Adam Smith As Theologian = Routl Stud Relig Adam Smith As Theologian = Routl. Stud. Relig. Adam Smith Review = Adam Smith Rev Adam Smith Review = Adam Smith Rev. Adam Smith Review, Vol 2 = Adam Smith Rev Adam Smith Review, Vol 2 = Adam Smith Rev. Adam Smith Review, Vol 3 = Adam Smith Rev Adam Smith Review, Vol 3 = Adam Smith Rev. Adances in Experimental Social Psychology, Vol 39 = Adv Exp Soc Psychol Adances in Experimental Social Psychology, Vol 39 = Adv. Exp. Soc. Psychol. ADA news = ADA News ADA News = ADA News Adansonia = Adansonia Adaptation and Cross Layer Design in Wireless Networks = Electr Eng Appl Sign Adaptation and Cross Layer Design in Wireless Networks = Electr. Eng. Appl. Sign. Adaptation and Evolution in Collective Systems = Adv Nat Comput Adaptation and Evolution in Collective Systems = Adv. Nat. Comput. Adaptation and Learning in Control and Signal Processing 2001 = Ifac Work S Adaptation and Learning in Control and Signal Processing 2001 = Ifac. Work. S. Adaptation Learning and Optimization = Adapt Learn Optim Adaptation Learning and Optimization = Adapt. Learn. Optim. Adaptation to Life At High Salt Concentrations in Archaea, Bacteria, and Eukarya = Cell Origin Life Ext Adaptation to Life At High Salt Concentrations in Archaea, Bacteria, and Eukarya = Cell. Origin. Life Ext. Adaptation to Life At High Salt Concentrations in Archaea, Bacteria, and Eukarya = Cell Orig Life Extre Adaptation to Life At High Salt Concentrations in Archaea, Bacteria, and Eukarya = Cell. Orig. Life Extre. Adapted Physical Activity Quarterly = Adapt Phys Act Q Adapted Physical Activity Quarterly = Adapt. Phys. Act. Q. Adapted physical activity quarterly : APAQ = Adapt Phys Activ Q Adapting Plants to Arid Environment = Univ Fra S Adapting Plants to Arid Environment = Univ. Fra. S. Adapting The Arthurian Legends for Children: Essays On Arthurian Juvenilia = Stud Arthur Court Cu Adapting The Arthurian Legends for Children: Essays On Arthurian Juvenilia = Stud. Arthur. Court. Cu. Adapting to A Changing Railway = Imeche Sem Adapting to A Changing Railway = Imeche. Sem. Adaptive Agents and Multi-agent Systems Ii = Lect Notes Comput Sc Adaptive Agents and Multi-agent Systems Ii = Lect. Notes. Comput. Sc. Adaptive Agents and Multi-agent Systems = Lect Notes Artif Int Adaptive Agents and Multi-agent Systems = Lect. Notes. Artif. Int. Adaptive and Learning Agents = Lect Notes Artif Int Adaptive and Learning Agents = Lect. Notes. Artif. Int. Adaptive and Learning Systems for Signal Processing, Communications, and Control = Adapt. Learn. Syst. Signal Process. Commun. Control Adaptive and Learning Systems Ii = P Soc Photo-opt Ins Adaptive and Learning Systems Ii = P. Soc. Photo-opt. Ins. Adaptive and Learning Systems = P Soc Photo-opt Ins Adaptive and Learning Systems = P. Soc. Photo-opt. Ins. Adaptive and Natural Computing Algorithms = Lect Notes Comput Sc Adaptive and Natural Computing Algorithms = Lect. Notes. Comput. Sc. Adaptive and Natural Computing Algorithms, Pt 1 = Lect Notes Comput Sc Adaptive and Natural Computing Algorithms, Pt 1 = Lect. Notes. Comput. Sc. Adaptive and Natural Computing Algorithms, Pt 2 = Lect Notes Comput Sc Adaptive and Natural Computing Algorithms, Pt 2 = Lect. Notes. Comput. Sc. Adaptive and Natural Computing Algorithms = Spring Comp Sci Adaptive and Natural Computing Algorithms = Spring. Comp. Sci. Adaptive and Personalized Semantic Web = Stud Comp Intell Adaptive and Personalized Semantic Web = Stud. Comp. Intell. Adaptive Backstepping Control of Uncertain Systems = Lect Notes Contr Inf Adaptive Backstepping Control of Uncertain Systems = Lect. Notes. Contr. Inf. Adaptive Behavior = Adapt Behav Adaptive Behavior = Adapt. Behav. Adaptive Capacity and Environmental Governance = Springer Ser Env Man Adaptive Capacity and Environmental Governance = Springer. Ser. Env. Man. Adaptive Coded Aperture Imaging and Non - Imaging Sensors Ii = P Soc Photo-opt Ins Adaptive Coded Aperture Imaging and Non - Imaging Sensors Ii = P. Soc. Photo-opt. Ins. Adaptive Coded Aperture Imaging and Non-imaging Sensors = P Soc Photo-opt Ins Adaptive Coded Aperture Imaging and Non-imaging Sensors = P. Soc. Photo-opt. Ins. Adaptive Coded Aperture Imaging, Non-imaging, and Unconventional Imaging Sensor Systems Ii = Proc Spie Adaptive Coded Aperture Imaging, Non-imaging, and Unconventional Imaging Sensor Systems Ii = Proc. Spie. Adaptive Coded Aperture Imaging, Non-imaging, and Unconventional Imaging Sensor Systems Ii = P Soc Photo-opt Ins Adaptive Coded Aperture Imaging, Non-imaging, and Unconventional Imaging Sensor Systems Ii = P. Soc. Photo-opt. Ins. Adaptive Computation and Machine Learning = Adapt Comput Mach Le Adaptive Computation and Machine Learning = Adapt. Comput. Mach. Le. Adaptive Computing: Mathematical and Physical Methods for Complex Environments = P Soc Photo-opt Ins Adaptive Computing: Mathematical and Physical Methods for Complex Environments = P. Soc. Photo-opt. Ins. Adaptive Control: Algorithms, Analysis and Applications, Second Edition = Commun Control Eng Adaptive Control: Algorithms, Analysis and Applications, Second Edition = Commun. Control. Eng. Adaptive Control Tutorial = Adv Des Control Adaptive Control Tutorial = Adv. Des. Control Adaptive Designs = Inst Math S Adaptive Designs = Inst. Math. S. Adaptive Differential Evolution: A Robust Approach to Multimodal Problem Optimization = Adapt Learn Optim Adaptive Differential Evolution: A Robust Approach to Multimodal Problem Optimization = Adapt. Learn. Optim. Adaptive Dual Control: Theory and Applications = Lect Notes Contr Inf Adaptive Dual Control: Theory and Applications = Lect. Notes. Contr. Inf. Adaptive Effects of Ginkgo Biloba Extract (egb 761) = Adv Ginkgo Adaptive Effects of Ginkgo Biloba Extract (egb 761) = Adv. Ginkgo Adaptive Governance: The Dynamics of Atlantic Fisheries Management = Glob Environ Accord Adaptive Governance: The Dynamics of Atlantic Fisheries Management = Glob. Environ. Accord. Adaptive Hypermedia and Adapotive Web-based Systems, Proceedings = Lect Notes Comput Sc Adaptive Hypermedia and Adapotive Web-based Systems, Proceedings = Lect. Notes. Comput. Sc. Adaptive Hypermedia and Adaptive Web-based Systems = Lect Notes Comput Sc Adaptive Hypermedia and Adaptive Web-based Systems = Lect. Notes. Comput. Sc. Adaptive Hypermedia and Adaptive Web-based Systems, Proceedings = Lect Notes Comput Sc Adaptive Hypermedia and Adaptive Web-based Systems, Proceedings = Lect. Notes. Comput. Sc. Adaptive Information Systems and Modelling in Economics and Management Science = Interd Stud Econ Man Adaptive Information Systems and Modelling in Economics and Management Science = Interd. Stud. Econ. Man. Adaptive Mesh Refinement - Theory and Applications = Lect Notes Comp Sci Adaptive Mesh Refinement - Theory and Applications = Lect. Notes. Comp. Sci. Adaptive Moving Mesh Methods = Appl Math Sci Adaptive Moving Mesh Methods = Appl. Math. Sci. Adaptive Multimedial Retrieval: Retrieval, User, and Semantics = Lect Notes Comput Sc Adaptive Multimedial Retrieval: Retrieval, User, and Semantics = Lect. Notes. Comput. Sc. Adaptive Multimedia Retrieval: Identifying, Summarizing, and Recommending Image and Music = Lect Notes Comput Sc Adaptive Multimedia Retrieval: Identifying, Summarizing, and Recommending Image and Music = Lect. Notes. Comput. Sc. Adaptive Multimedia Retrieval = Lect Notes Comput Sc Adaptive Multimedia Retrieval = Lect. Notes. Comput. Sc. Adaptive Multimedia Retrieval: User, Context, and Feedback = Lect Notes Comput Sc Adaptive Multimedia Retrieval: User, Context, and Feedback = Lect. Notes. Comput. Sc. Adaptive Multi-standard Rf Front-ends = Analog Circ Sig Proc Adaptive Multi-standard Rf Front-ends = Analog. Circ. Sig. Proc. Adaptive Networks: Theory, Models and Applications = Underst Complex Syst Adaptive Networks: Theory, Models and Applications = Underst. Complex. Syst. Adaptive Nonlinear System Identification: The Volterra and Wiener Model Approaches = Signals Commun Techn Adaptive Nonlinear System Identification: The Volterra and Wiener Model Approaches = Signals. Commun. Techn. Adaptive Optical Systems and Applications = P Soc Photo-opt Ins Adaptive Optical Systems and Applications = P. Soc. Photo-opt. Ins. Adaptive Optical Systems Technology, Pts 1 and 2 = Proc Spie Adaptive Optical Systems Technology, Pts 1 and 2 = Proc. Spie. Adaptive Optical Systems Technology, Pts 1 and 2 = P Soc Photo-opt Ins Adaptive Optical Systems Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Adaptive Optical System Technologies Ii, Pts 1 and 2 = P Soc Photo-opt Ins Adaptive Optical System Technologies Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Adaptive Optical System Technologies, Parts 1 and 2 = P Soc Photo-opt Ins Adaptive Optical System Technologies, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Adaptive Optics and Applications Iii = Proc Spie Adaptive Optics and Applications Iii = Proc. Spie. Adaptive Optics and Applications Iii = P Soc Photo-opt Ins Adaptive Optics and Applications Iii = P. Soc. Photo-opt. Ins. Adaptive Optics and Applications Ii = P Soc Photo-opt Ins Adaptive Optics and Applications Ii = P. Soc. Photo-opt. Ins. Adaptive Optics and Applications = P Soc Photo-opt Ins Adaptive Optics and Applications = P. Soc. Photo-opt. Ins. Adaptive Optics and Optical Structures = Crit Rev Op Adaptive Optics and Optical Structures = Crit. Rev. Op. Adaptive Optics for Astronomy = Nato Adv Sci Inst Se Adaptive Optics for Astronomy = Nato. Adv. Sci. Inst. Se. Adaptive Optics for Industry and Medicine, Proceedings = Springer Proc Phys Adaptive Optics for Industry and Medicine, Proceedings = Springer. Proc. Phys. Adaptive Optics for Laser Systems and Other Applications = Proc Spie Adaptive Optics for Laser Systems and Other Applications = Proc. Spie. Adaptive Optics for Laser Systems and Other Applications = P Soc Photo-opt Ins Adaptive Optics for Laser Systems and Other Applications = P. Soc. Photo-opt. Ins. Adaptive Optics in Astronomy = P Soc Photo-opt Ins Adaptive Optics in Astronomy = P. Soc. Photo-opt. Ins. Adaptive Optics Systems and Technology Ii = Proc Spie Adaptive Optics Systems and Technology Ii = Proc. Spie. Adaptive Optics Systems and Technology Ii = P Soc Photo-opt Ins Adaptive Optics Systems and Technology Ii = P. Soc. Photo-opt. Ins. Adaptive Optics Systems and Technology = P Soc Photo-opt Ins Adaptive Optics Systems and Technology = P. Soc. Photo-opt. Ins. Adaptive Optics Systems Ii = Proc Spie Adaptive Optics Systems Ii = Proc. Spie. Adaptive Optics Systems Ii = P Soc Photo-opt Ins Adaptive Optics Systems Ii = P. Soc. Photo-opt. Ins. Adaptive Optics Systems, Pts 1-3 = Proc Spie Adaptive Optics Systems, Pts 1-3 = Proc. Spie. Adaptive Optics Systems, Pts 1-3 = P Soc Photo-opt Ins Adaptive Optics Systems, Pts 1-3 = P. Soc. Photo-opt. Ins. Adaptive Processing of Sequences and Data Structures = Lect Notes Artif Int Adaptive Processing of Sequences and Data Structures = Lect. Notes. Artif. Int. Adaptive Representations for Reinforcement Learning = Stud Comput Intell Adaptive Representations for Reinforcement Learning = Stud. Comput. Intell. Adaptive Rf Front-ends for Hand-held Applications = Analog Circ Sig Proc Adaptive Rf Front-ends for Hand-held Applications = Analog. Circ. Sig. Proc. Adaptive Scalarization Methods in Multiobjective Optimization = Vector Optim Adaptive Scalarization Methods in Multiobjective Optimization = Vector. Optim. Adaptive Signal Processing in Wireless Communications = Electr Eng Appl Sign Adaptive Signal Processing in Wireless Communications = Electr. Eng. Appl. Sign. Adaptive Signal Processing = P Soc Photo-opt Ins Adaptive Signal Processing = P. Soc. Photo-opt. Ins. Adaptive Spatial Filters for Electromagnetic Brain Imaging = Ser Biomed Eng Adaptive Spatial Filters for Electromagnetic Brain Imaging = Ser. Biomed. Eng. Adaptive Systems in Control and Signal Processing 1992 = Ifac Symp Series Adaptive Systems in Control and Signal Processing 1992 = Ifac. Symp. Series. Adaptive Techniques for Dynamic Processor Optimization: Theory and Practice = Integr Circuit Syst Adaptive Techniques for Dynamic Processor Optimization: Theory and Practice = Integr. Circuit. Syst. Adaptive Techniques for Dynamic Processor Optimization: Theory and Practice = Ser Integr Circuits Adaptive Techniques for Dynamic Processor Optimization: Theory and Practice = Ser. Integr. Circuits. Adaptive Techniques for Mixed Signal System On Chip = Springer Int Ser Eng Adaptive Techniques for Mixed Signal System On Chip = Springer. Int. Ser. Eng. Adaptive User Interfaces = Hum Fac Inf Adaptive User Interfaces = Hum. Fac. Inf. Adaptive Voltage Control in Power Systems: Modeling, Design and Applications = Adv Ind Control Adaptive Voltage Control in Power Systems: Modeling, Design and Applications = Adv. Ind. Control Adaptive Web Sites: A Knowledge Extraction From Web Data Approach = Front Artif Intel Ap Adaptive Web Sites: A Knowledge Extraction From Web Data Approach = Front. Artif. Intel. Ap. Adaptive X-ray Optics = Proc Spie Adaptive X-ray Optics = Proc. Spie. Adaptive X-ray Optics = P Soc Photo-opt Ins Adaptive X-ray Optics = P. Soc. Photo-opt. Ins. Adas: International Conference On Advanced Driver Assistance Systems = Iee Conf Publ Adas: International Conference On Advanced Driver Assistance Systems = Iee. Conf. Publ. Adas Quarterly Review = Adas Quart Rev Adas Quarterly Review = Adas Quart. Rev. Ad astra (Washington, D.C.) = Ad Astra Ada : The Choice for 92 = Lect Notes Comput Sc Ada : The Choice for 92 = Lect. Notes. Comput. Sc. Added Mases of Ship Structures = Fluid Mech Appl Added Mases of Ship Structures = Fluid. Mech. Appl. Addendum to The 1993 European School of High-energy Physics = Cern Report Addendum to The 1993 European School of High-energy Physics = Cern. Report. Addiction (Abingdon, England) = Addiction Addiction=Addiction;; Addiction = Addiction Addiction biology = Addict Biol Addiction Biology = Addict Biol Addiction Biology = Addict. Biol. Addiction: Processes of Change = Soc St Add Mg Addiction: Processes of Change = Soc. St. Add. Mg. Addiction Recovery Management: Theory, Research and Practice = Curr Clin Psychiat Addiction Recovery Management: Theory, Research and Practice = Curr. Clin. Psychiat. Addiction Research = Addict Res Addiction Research = Addict. Res. Addiction Research & Theory = Addict Res Theory Addiction Research & Theory = Addict. Res. Theory Addiction Reviews 2008 = Ann Ny Acad Sci Addiction Reviews 2008 = Ann. Ny. Acad. Sci. Addiction Reviews 2 = Ann Ny Acad Sci Addiction Reviews 2 = Ann. Ny. Acad. Sci. Addiction Reviews = Ann Ny Acad Sci Addiction Reviews = Ann. Ny. Acad. Sci. Addiction to Exercise: A Symptom Or A Disorder? = Psychol Res Prog Addiction to Exercise: A Symptom Or A Disorder? = Psychol. Res. Prog. Addictive behaviors = Addict Behav Addictive Behaviors=Addict Behav;; Addictive Behaviors = Addict Behav Addictive Behaviors = Addict. Behav. Addictive diseases = Addict Dis Addictive Diseases = Addict Dis Addictive Diseases = Addict. Dis. Addictive States = Res P Arnmd Addictive States = Res. P. Arnmd. Addison-wesley Signature Series = Add-wes Signat Ser Addison-wesley Signature Series = Add-wes. Signat. Ser. Additamenta ad Folia Medica Neerlandica = Additamenta Folia Med. Neerl. Additive Combinatorics = Crm Proc & Lect Note Additive Combinatorics = Crm. Proc. &. Lect. Note. Additive for Water-based Coatings = Roy Soc Ch Additive for Water-based Coatings = Roy. Soc. Ch. Additives for Polymers = Addit. Polym. Addressing Community Problems = Clar Symp Addressing Community Problems = Clar. Symp. Addressing Global Environmental Security Through Innovative Educational Curricula = Nato Sci Peace Secur Addressing Global Environmental Security Through Innovative Educational Curricula = Nato. Sci. Peace. Secur. Addressing The Achievement Gap: Findings and Applications = Res Educ Product Addressing The Achievement Gap: Findings and Applications = Res. Educ. Product. A Debreceni Déri múzeum évkönyve = DebrecMuzEvk Adelphi Papers = Adelp Pap Adelphi Papers = Adelp. Pap. Adeno-associated Virus (aav) Vectors in Gene Therapy = Curr Top Microbiol Adeno-associated Virus (aav) Vectors in Gene Therapy = Curr. Top. Microbiol. Adenocarcinoma of The Esophagogastric Junction = Recent Results Canc Adenocarcinoma of The Esophagogastric Junction = Recent. Results. Canc. Adenosine in The Diagnosis and Treatment of Cardiac Arrhythmias = Res Clin Forums Adenosine in The Diagnosis and Treatment of Cardiac Arrhythmias = Res. Clin. Forums. Adenoviruses: Model and Vectors in Virus-host Interactions = Curr Top Microbiol Adenoviruses: Model and Vectors in Virus-host Interactions = Curr. Top. Microbiol. Adherence to Pediatric Medical Regimens, Second Edition = Issues Clin Child Ps Adherence to Pediatric Medical Regimens, Second Edition = Issues. Clin. Child. Ps. Adhesion 13 = Adhesion Adhesion 15 = Adhesion Adhesion = Adhesion Adhesion-gpcrs: Structure to Function = Adv Exp Med Biol Adhesion-gpcrs: Structure to Function = Adv. Exp. Med. Biol. Adhesion Molecules: Function and Inhibition = Prog Inflamm Res Ser Adhesion Molecules: Function and Inhibition = Prog. Inflamm. Res. Ser. Adhesion Molecules = Mod Insights Dis Mol Adhesion Molecules = Mod. Insights. Dis. Mol. Adhesion of Microbial Pathogens = Method Enzymol Adhesion of Microbial Pathogens = Method. Enzymol. Adhesion of Microbial Pathogens = Methods Enzymol Adhesion of Microbial Pathogens = Methods. Enzymol. Adhesives Age = Adhes Age Adhesives Age = Adhes. Age Adhesives Engineering = P Soc Photo-opt Ins Adhesives Engineering = P. Soc. Photo-opt. Ins. Ad-hoc, Mobile and Wireless Networks = Lect Notes Comput Sc Ad-hoc, Mobile and Wireless Networks = Lect. Notes. Comput. Sc. Ad-hoc, Mobile and Wireless Networks, Proceedings = Lect Notes Comput Sc Ad-hoc, Mobile and Wireless Networks, Proceedings = Lect. Notes. Comput. Sc. Ad-hoc, Mobile, and Wireless Networks, Proceedings = Lect Notes Comput Sc Ad-hoc, Mobile, and Wireless Networks, Proceedings = Lect. Notes. Comput. Sc. Ad-hoc Networking = Int Fed Info Proc Ad-hoc Networking = Int. Fed. Info. Proc. Ad Hoc Networking Towards Seamless Communications = Signals Commun Techn Ad Hoc Networking Towards Seamless Communications = Signals. Commun. Techn. Ad Hoc Networks = Ad Hoc Netw Ad Hoc Networks = Ad Hoc Netw. Ad Hoc Networks = Ad Hoc Networks Ad Hoc & Sensor Wireless Networks = Ad Hoc Sens Wirel Ne Ad Hoc & Sensor Wireless Networks = Ad Hoc Sens. Wirel. Ne. Adiabatic Perturbation Theory in Quantum Dynamics = Lect Notes Math Adiabatic Perturbation Theory in Quantum Dynamics = Lect. Notes. Math. Adicciones = Adicciones Adigma-a European Initiative On The Development of Adaptive Higher-order Variational Methods for Aerospace Applications: Results of A Collaborative Research Project Funded By The European Union, 2006-2009 = Notes Numer Fluid Me Adigma-a European Initiative On The Development of Adaptive Higher-order Variational Methods for Aerospace Applications: Results of A Collaborative Research Project Funded By The European Union, 2006-2009 = Notes. Numer. Fluid. Me. Adipose-derived Stem Cells: Methods and Protocols = Methods Mol Biol Adipose-derived Stem Cells: Methods and Protocols = Methods Mol. Biol. Adipose Tissue Development: From Animal Models to Clinical Conditions = Endocrin Dev Adipose Tissue Development: From Animal Models to Clinical Conditions = Endocrin. Dev. 'Adiyat Halab = Adiyat Halab Adjusting to Emu = One Eur Several Adjusting to Emu = One. Eur. Several. Adjustment and Beyond = Iea Conf Vol Adjustment and Beyond = Iea. Conf. Vol. Adjustment Lending Revisited = World Bank Adjustment Lending Revisited = World. Bank. Adjuvant Therapy for Breast Cancer = Cancer Treat Res Adjuvant Therapy for Breast Cancer = Cancer Treat. Res. Adjuvant Therapy of Cancer = Adj Ther Canc Adjuvant Therapy of Cancer = Adj. Ther. Canc. Adjuvant Therapy of Cancer Viii = Adj Ther Canc Adjuvant Therapy of Cancer Viii = Adj. Ther. Canc. Adjuvant Therapy of Primary Breast Cancer Vi = Recent Res Cancer Adjuvant Therapy of Primary Breast Cancer Vi = Recent. Res. Cancer Adjuvant Therapy of Primary Breast Cancer Vi = Recent Results Canc Adjuvant Therapy of Primary Breast Cancer Vi = Recent. Results. Canc. Adler = Adler Adler Museum bulletin = Adler Mus Bull ADM = ADM ADM (Asociacion Dental Mexicana : 1986) = ADM Administration and policy in mental health = Adm Policy Ment Health Administration and Policy in Mental Health = Adm. Policy Ment. Health Administration and Policy In Mental Health=Adm Policy Ment Health;; Administration and Policy in Mental Health = Adm Policy Ment Hlth Administration and Policy in Mental Health = Adm. Policy Ment. Hlth. Administration and Policy in Mental Health and Mental Health Services Research = Adm Policy Ment Hlth Administration and Policy in Mental Health and Mental Health Services Research = Adm. Policy Ment. Hlth. Administration for development = Adm Dev Administration in mental health = Adm Ment Health Administration in Mental Health = Adm Ment Health Administration in Mental Health = Adm. Ment. Health Administration in Mental Health = Adm Policy Ment Hlth Administration in Mental Health = Adm. Policy. Ment. Hlth. Administration in Social Work = Admin Soc Work Administration in Social Work = Admin. Soc. Work Administration in social work = Adm Soc Work Administration in Social Work = Adm. Soc. Work Administration of Debt Relief By The International Financial Institutions = Beitr Ausl Offentl R Administration of Debt Relief By The International Financial Institutions = Beitr. Ausl. Offentl. R. Administration & Society = Admin Soc Administration & Society = Admin. Soc. Administration & society = Adm Soc Administrative Aspects of Investment-based Social Security Reform = Nber Conf R Administrative Aspects of Investment-based Social Security Reform = Nber. Conf. R. Administrative change = Adm Change Administrative law journal = Adm Law J Administrative Law Review = Admin Law Rev Administrative Law Review = Admin. Law Rev. Administrative law review = Adm Law Rev Administrative Management = Admin Manage Administrative Management = Admin. Manage. Administrative management = Adm Manage Administrative Management = Adm. Manage. Administrative Passages: Navigating The Transition From Teacher to Assistant Principal = Stud Educ Leadersh Administrative Passages: Navigating The Transition From Teacher to Assistant Principal = Stud. Educ. Leadersh. Administrative Radiology = Adm. Radiol. Administrative radiology : AR = Adm Radiol Administrative Radiology Journal = Adm. Radiol. J. Administrative radiology journal : AR = Adm Radiol J Administrative Science Quarterly = Admin Sci Quart Administrative Science Quarterly = Admin. Sci. Quart. Administrative science quarterly = Adm Sci Q Administrative Science Quarterly = Adm. Sci. Q. Admitting Management Journal = Admit. Manage. J. Admixtures for Concrete = Rilem Proc Admixtures for Concrete = Rilem. Proc. ADM; revista de la Asociacion Dental Mexicana = ADM AD nurse = AD Nurse AD Nurse = AD Nurse Adolescence=Adolescence;; Adolescence = Adolescence Adolescence and Chronic Illness: A Public Health Concern = Health Hum Dev Adolescence and Chronic Illness: A Public Health Concern = Health Hum. Dev. Adolescence and Education = Adolesc Educ Adolescence and Education = Adolesc. Educ. Adolescence and Sports = Health Hum Dev Adolescence and Sports = Health. Hum. Dev. Adolescence, Careers, and Cultures = Sp R Prev I Adolescence, Careers, and Cultures = Sp. R. Prev. I. Adolescence education newsletter = Adolesc Educ Newsl Adolescent and Pediatric Gynecology = Adolescent Pediat G Adolescent and Pediatric Gynecology = Adolescent Pediat. G. Adolescent and pediatric gynecology = Adolesc Pediatr Gynecol Adolescent Brain Development: Vulnerabilities and Opportunities = Ann Ny Acad Sci Adolescent Brain Development: Vulnerabilities and Opportunities = Ann. Ny. Acad. Sci. Adolescent Gynecology and Endocrinology: Basic and Clinical Aspects = Ann Ny Acad Sci Adolescent Gynecology and Endocrinology: Basic and Clinical Aspects = Ann. Ny. Acad. Sci. Adolescent Medicine = Adolesc. Med. Adolescent medicine clinics = Adolesc Med Clin Adolescent Medicine Clinics = Adolesc. Med. Clin. Adolescent medicine (Philadelphia, Pa.) = Adolesc Med Adolescent Nutritional Disorders = Ann Ny Acad Sci Adolescent Nutritional Disorders = Ann. Ny. Acad. Sci. Adolescent Psychiatry = Adolescent Psychiat Adolescent Psychiatry = Adolescent Psychiat. Adolescent psychiatry = Adolesc Psychiatry Adolescent Psychiatry = Adolesc. Psychiatry Adolescent Psychiatry, Vol 23 = Adolescent Psychiat Adolescent Psychiatry, Vol 23 = Adolescent Psychiat. Adolescent Psychiatry, Vol 24 = Adolescent Psychiat Adolescent Psychiatry, Vol 24 = Adolescent Psychiat. Adolescent Psychiatry, Vol 27 = Adolescent Psychiat Adolescent Psychiatry, Vol 27 = Adolescent Psychiat. Adolescent Psychiatry, Vol 30 = Adolescent Psychiat Adolescent Psychiatry, Vol 30 = Adolescent Psychiat. Adolescent Reputations and Risk: Developmental Trajectories to Delinquency = Adv Respons Adol Dev Adolescent Reputations and Risk: Developmental Trajectories to Delinquency = Adv. Respons. Adol. Dev. Adolescents in The Internet Age = Lifesp Learn Adolescents in The Internet Age = Lifesp. Learn. Adolescent Stress = So Inst S Adolescent Stress = So. Inst. S. Adolescent Substance Abuse: Evidence-based Approaches to Prevention and Treatment = Issues Child Fam Liv Adolescent Substance Abuse: Evidence-based Approaches to Prevention and Treatment = Issues. Child. Fam. Liv. Adolpho Lutz and The Helminthological Collection of The Oswaldo Cruz Institute = Ser Livros Mus Nac Adolpho Lutz and The Helminthological Collection of The Oswaldo Cruz Institute = Ser. Livros. Mus. Nac. Adopting Blended Learning for Collaborative Work in Higher Education = Educ Compet Glob Wor Adopting Blended Learning for Collaborative Work in Higher Education = Educ. Compet. Glob. Wor. Adopting New Medical Technology = Med Inn Cr Adopting New Medical Technology = Med. Inn. Cr. Adoption in Japan: Comparing Policies for Children in Need = Routl Contemp Jpn Se Adoption in Japan: Comparing Policies for Children in Need = Routl. Contemp. Jpn. Se. Adp-ribosylation in Animal Tissues = Adv Exp Med Biol Adp-ribosylation in Animal Tissues = Adv. Exp. Med. Biol. Adrenal Imaging = Contemp Med Imag Adrenal Imaging = Contemp. Med. Imag. Adrenoceptors : Structure, Mechanisms, Function = Adv Phar Sc Adrenoceptors : Structure, Mechanisms, Function = Adv. Phar. Sc. Adrenoleukodystrophy and Other Peroxisomal Disorders = Int Congr Ser Adrenoleukodystrophy and Other Peroxisomal Disorders = Int. Congr. Ser. Adria Microplate Gps Geodesy, Tectonics and Hazards = Nato Sci S Ss Iv Ear Adria Microplate Gps Geodesy, Tectonics and Hazards = Nato. Sci. S. Ss. Iv. Ear. Ads/cft Correspondence: Einstein Metrics and Their Conformal Boundaries = Irma L Math The Phys Ads/cft Correspondence: Einstein Metrics and Their Conformal Boundaries = Irma. L. Math. The. Phys. Adsorption = Adsorption Adsorption and Aggregation of Surfactants in Solution = Surfactant Sci Ser Adsorption and Aggregation of Surfactants in Solution = Surfactant. Sci. Ser. Adsorption and Aggregation of Surfactants in Solution = Surf Sci Series Adsorption and Aggregation of Surfactants in Solution = Surf. Sci. Series. Adsorption and Diffusion = Mol Sieves Sci Techn Adsorption and Diffusion = Mol. Sieves. Sci. Techn. Adsorption and Its Applications in Industry and Environmental Protection, Vol I: Applications in Industry = Stud Surf Sci Catal Adsorption and Its Applications in Industry and Environmental Protection, Vol I: Applications in Industry = Stud. Surf. Sci. Catal. Adsorption and Its Applications in Industry and Environmental Protection, Vol Ii: Applications in Environmental Protection = Stud Surf Sci Catal Adsorption and Its Applications in Industry and Environmental Protection, Vol Ii: Applications in Environmental Protection = Stud. Surf. Sci. Catal. Adsorption and Nanostructures = Prog Coll Pol Sci S Adsorption and Nanostructures = Prog. Coll. Pol. Sci. S. Adsorption-journal of The International Adsorption Society = Adsorption Adsorption On New and Modified Inorganic Sorbents = Stud Surf Sci Catal Adsorption On New and Modified Inorganic Sorbents = Stud. Surf. Sci. Catal. Adsorption Science and Technology = Adsorpt. Sci. Technol. Adsorption Science & Technology = Adsorpt Sci Technol Adsorption Science & Technology = Adsorpt. Sci. Technol. A. D. Trendall, The Red-figured Vases of Lucania, Campania and Sicily (Oxford 1967--­1983) = LCS Adult Acute Lymphocytic Leukemia: Biology and Treatment = Contemp Hematol Adult Acute Lymphocytic Leukemia: Biology and Treatment = Contemp. Hematol. Adult Attachment in Clinical Social Work: Practice, Research, and Policy = Essent Clin Soc Work Adult Attachment in Clinical Social Work: Practice, Research, and Policy = Essent. Clin. Soc. Work. Adult Attention Deficit Disorder = Ann Ny Acad Sci Adult Attention Deficit Disorder = Ann. Ny. Acad. Sci. Adult Education = Adult Ed Adult Education = Adult Ed. Adult education = Adult Educ Adult Education = Adult Educ. Adult Education-london = Adult Educ-lond Adult Education-london = Adult Educ-lond. Adult Education Quarterly = Adult Educ Quart Adult Education Quarterly = Adult Educ. Quart. Adult Education Special Topics-theory Research and Practice in Lifelong Learning = Adult Educ Spec Top Adult Education Special Topics-theory Research and Practice in Lifelong Learning = Adult Educ. Spec. Top. Adult Learning and Relationships = Lifesp Learn Adult Learning and Relationships = Lifesp. Learn. Adult Learning Disorders: Contemporary Issues = Neuropsychologist Hb Adult Learning Disorders: Contemporary Issues = Neuropsychologist. Hb. Adults in The Academy = Natl B Educ Adults in The Academy = Natl. B. Educ. Adult Stem Cells: Biology and Methods of Analysis = Stem Cells Biol Reg Adult Stem Cells: Biology and Methods of Analysis = Stem Cells. Biol. Reg. Adult Stem Cells = Method Enzymol Adult Stem Cells = Method. Enzymol. Adult Stem Cell Survival = Stem Cells Lab Clin Adult Stem Cell Survival = Stem Cells. Lab. Clin. Adult Years : Continuity and Change = Master Lect Adult Years : Continuity and Change = Master. Lect. Adumatu. A Semi-Annual Archeological Refereed Journal on the Arab World = Adumatu Advance Ceramics for Use in Highly Oxidizing / Corrosive Enviro Nments = Key Eng Mat Advance Ceramics for Use in Highly Oxidizing / Corrosive Enviro Nments = Key. Eng. Mat. Advanced Accelerator Concepts = Aip Conf Proc Advanced Accelerator Concepts = Aip. Conf. Proc. Advanced Accelerator Concepts, Eighth Workshop = Aip Conf Proc Advanced Accelerator Concepts, Eighth Workshop = Aip. Conf. Proc. Advanced Agent-based Environmental Management Systems = Whitestein Ser Softw Advanced Agent-based Environmental Management Systems = Whitestein. Ser. Softw. Advanced Algorithms and Architectures for Signal Processing Iv = P Soc Photo-opt Ins Advanced Algorithms and Architectures for Signal Processing Iv = P. Soc. Photo-opt. Ins. Advanced and Next-generation Satellites Ii = P Soc Photo-opt Ins Advanced and Next-generation Satellites Ii = P. Soc. Photo-opt. Ins. Advanced and Next-generation Satellites = P Soc Photo-opt Ins Advanced and Next-generation Satellites = P. Soc. Photo-opt. Ins. Advance data = Adv Data Advance Data = Adv. Data Advanced Autonomic Networking and Communication = Whitestein Ser Softw Advanced Autonomic Networking and Communication = Whitestein. Ser. Softw. Advanced Bacterial Genetics: Use of Transposons and Phage for Genomic Engieering = Method Enzymol Advanced Bacterial Genetics: Use of Transposons and Phage for Genomic Engieering = Method. Enzymol. Advanced Beam Dynamics Workshop On Effects of Errors in Accelerators, Their Diagnosis and Corrections = Aip Conf Proc Advanced Beam Dynamics Workshop On Effects of Errors in Accelerators, Their Diagnosis and Corrections = Aip. Conf. Proc. Advanced Bioceramics in Nanomedicine and Tissue Engineering = Key Eng Mater Advanced Bioceramics in Nanomedicine and Tissue Engineering = Key. Eng. Mater. Advanced Biologically Active Polyfunctional Compounds and Composites: Health Cultural Heritage and Environmental Protection = Environ Sci Eng Tech Advanced Biologically Active Polyfunctional Compounds and Composites: Health Cultural Heritage and Environmental Protection = Environ. Sci. Eng. Tech. Advanced Biomaterials-characterization, Tissue Engineering and Complexity = Mater Res Soc Symp P Advanced Biomaterials-characterization, Tissue Engineering and Complexity = Mater. Res. Soc. Symp. P. Advanced Biomaterials for Medical Applications = Nato Sci Ser Ii-math Advanced Biomaterials for Medical Applications = Nato. Sci. Ser. Ii-math. Advanced Biomaterials for Medical Applications = Nato Sci Ser Ii Math Advanced Biomaterials for Medical Applications = Nato. Sci. Ser. Ii. Math. Advanced Biomedical and Clinical Diagnostic Systems Iii = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems Iii = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems Ii = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Ii = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Ii = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems Ii = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems Iv = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Iv = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Iv = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems Iv = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems Ix = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Ix = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Ix = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems Ix = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems Viii = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Viii = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Vii = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Vii = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Vi = Proc Spie Advanced Biomedical and Clinical Diagnostic Systems Vi = Proc. Spie. Advanced Biomedical and Clinical Diagnostic Systems Vi = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems Vi = P. Soc. Photo-opt. Ins. Advanced Biomedical and Clinical Diagnostic Systems V = P Soc Photo-opt Ins Advanced Biomedical and Clinical Diagnostic Systems V = P. Soc. Photo-opt. Ins. Advanced Book Classics = Adv. Book Class. Advanced Cancer: Pain and Quality of Life = Health Hum Dev Advanced Cancer: Pain and Quality of Life = Health. Hum. Dev. Advanced Catalytic Materials-1998 = Mater Res Soc Symp P Advanced Catalytic Materials-1998 = Mater. Res. Soc. Symp. P. Advanced Cement Based Materials = Adv Cem Based Mater Advanced Cement Based Materials = Adv. Cem. Based Mater. Advanced Cementitious Systems : Mechanisms and Properties = Mater Res Soc Symp P Advanced Cementitious Systems : Mechanisms and Properties = Mater. Res. Soc. Symp. P. Advanced Ceramic Coatings and Interfaces = Ceram Eng Sci Proc Advanced Ceramic Coatings and Interfaces = Ceram. Eng. Sci. Proc. Advanced Ceramic Coatings and Interfaces Ii = Ceram Eng Sci Proc Advanced Ceramic Coatings and Interfaces Ii = Ceram. Eng. Sci. Proc. Advanced Ceramic Coatings and Interfaces Iii = Ceram Eng Sci Proc Advanced Ceramic Coatings and Interfaces Iii = Ceram. Eng. Sci. Proc. Advanced Ceramic Coatings and Interfaces Iv = Ceram Eng Sci Proc Advanced Ceramic Coatings and Interfaces Iv = Ceram. Eng. Sci. Proc. Advanced Ceramic Materials = Adv Ceram Mater Advanced Ceramic Materials = Adv. Ceram. Mater. Advanced Ceramic Materials = Key Eng Mat Advanced Ceramic Materials = Key. Eng. Mat. Advanced Ceramic Materials = Key Eng Mater Advanced Ceramic Materials = Key. Eng. Mater. Advanced Ceramics and Composites = Key Eng Mat Advanced Ceramics and Composites = Key. Eng. Mat. Advanced Ceramics and Composites = Key Eng Mater Advanced Ceramics and Composites = Key. Eng. Mater. Advanced Ceramics / = Key Eng Mat Advanced Ceramics / = Key. Eng. Mat. Advanced Ceramic Tools for Machining Application - Iii = Key Eng Mat Advanced Ceramic Tools for Machining Application - Iii = Key. Eng. Mat. Advanced Ceramic Tools for Machining Application - Iii = Key Eng Mater Advanced Ceramic Tools for Machining Application - Iii = Key. Eng. Mater. Advanced Ceramic Tools for Machining Application - Ii = Key Eng Mat Advanced Ceramic Tools for Machining Application - Ii = Key. Eng. Mat. Advanced Characterisation of Pavement Soil Engineering Materials, Vols 1 and 2 = Proc Monogr Eng Wate Advanced Characterisation of Pavement Soil Engineering Materials, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Advanced Characterization Techniques Ceramics = Ceram Trans Advanced Characterization Techniques Ceramics = Ceram. Trans. Advanced Characterization Techniques for Optical, Semiconductor, and Data Storage Components = P Soc Photo-opt Ins Advanced Characterization Techniques for Optical, Semiconductor, and Data Storage Components = P. Soc. Photo-opt. Ins. Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies Iii = Proc Spie Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies Iii = Proc. Spie. Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies Iii = P Soc Photo-opt Ins Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies Iii = P. Soc. Photo-opt. Ins. Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies = P Soc Photo-opt Ins Advanced Characterization Techniques for Optics, Semiconductors, and Nanotechnologies = P. Soc. Photo-opt. Ins. Advanced Combustion and Aerothermal Technologies: Environmental Protection and Pollution Reductions = Nato Sci Peace Secur Advanced Combustion and Aerothermal Technologies: Environmental Protection and Pollution Reductions = Nato. Sci. Peace. Secur. Advanced Communication and Networking = Comm Com Inf Sc Advanced Communication and Networking = Comm. Com. Inf. Sc. Advanced Communications and Multimedia Security = Int Fed Info Proc Advanced Communications and Multimedia Security = Int. Fed. Info. Proc. Advanced Composite Materials = Adv Compos Mater Advanced Composite Materials = Adv. Compos. Mater Advanced Composite Materials = Adv. Compos. Mater. Advanced Composites Letters = Adv Compos Lett Advanced Composites Letters = Adv. Compos. Lett. Advanced Computational and Design Techniques in Applied Electromagnetic Systems = Els Appl Elect Mat Advanced Computational and Design Techniques in Applied Electromagnetic Systems = Els. Appl. Elect. Mat. Advanced Computational Intelligence Paradigms in Healthcare - 1 = Stud Comput Intell Advanced Computational Intelligence Paradigms in Healthcare - 1 = Stud. Comput. Intell. Advanced Computational Intelligence Paradigms in Healthcare - 2 = Stud Comput Intell Advanced Computational Intelligence Paradigms in Healthcare - 2 = Stud. Comput. Intell. Advanced Computational Intelligence Paradigms in Healthcare - 3 = Stud Comput Intell Advanced Computational Intelligence Paradigms in Healthcare - 3 = Stud. Comput. Intell. Advanced Computational Intelligence Paradigms in Healthcare 5: Intelligent Decision Support Systems = Stud Comput Intell Advanced Computational Intelligence Paradigms in Healthcare 5: Intelligent Decision Support Systems = Stud. Comput. Intell. Advanced Computational Intelligence Paradigms in Healthcare 6: Virtual Reality in Psychotherapy, Rehabilitation, and Assessment = Stud Comput Intell Advanced Computational Intelligence Paradigms in Healthcare 6: Virtual Reality in Psychotherapy, Rehabilitation, and Assessment = Stud. Comput. Intell. Advanced Computational Methods and Experiments in Heat Transfer Xi = Wit Trans Eng Sci Advanced Computational Methods and Experiments in Heat Transfer Xi = Wit. Trans. Eng. Sci. Advanced Computational Methods and Experiments in Heat Transfer X = Wit Trans Eng Sci Advanced Computational Methods and Experiments in Heat Transfer X = Wit. Trans. Eng. Sci. Advanced Computational Methods in Heat Transer Vii = Computat Studies Advanced Computational Methods in Heat Transer Vii = Computat. Studies. Advanced Computational Methods in Heat Transfer Ix = Wit Trans Eng Sci Advanced Computational Methods in Heat Transfer Ix = Wit. Trans. Eng. Sci. Advanced Computational Methods in Heat Transfer V = Computat Studies Advanced Computational Methods in Heat Transfer V = Computat. Studies. Advanced Computational Methods in Heat Transfer Vi = Computat Studies Advanced Computational Methods in Heat Transfer Vi = Computat. Studies. Advanced Computational Methods in Heat Transfer Viii = Computat Studies Advanced Computational Methods in Heat Transfer Viii = Computat. Studies. Advanced Computer Science and Information Technology = Comm Com Inf Sc Advanced Computer Science and Information Technology = Comm. Com. Inf. Sc. Advanced Computer Simulation Approaches for Soft Matter Sciences I = Adv Polym Sci Advanced Computer Simulation Approaches for Soft Matter Sciences I = Adv. Polym. Sci. Advanced Computer Simulation Approaches for Soft Matter Sciences Ii = Adv Polym Sci Advanced Computer Simulation Approaches for Soft Matter Sciences Ii = Adv. Polym. Sci. Advanced Computer Simulation Approaches for Soft Matter Sciences Iii = Adv Polym Sci Advanced Computer Simulation Approaches for Soft Matter Sciences Iii = Adv. Polym. Sci. Advanced Computer Systems, Proceedings = Kluwer Int Ser Eng C Advanced Computer Systems, Proceedings = Kluwer. Int. Ser. Eng. C. Advanced Computer Systems, Proceedings = Springer Int Ser Eng Advanced Computer Systems, Proceedings = Springer. Int. Ser. Eng. Advanced Computer Techniques in Applied Electromagnetics = Stud Appl Electromag Advanced Computer Techniques in Applied Electromagnetics = Stud. Appl. Electromag. Advanced Computing and Analysis Techniques in Physics Research = Aip Conf Proc Advanced Computing and Analysis Techniques in Physics Research = Aip. Conf. Proc. Advanced Computing, Pt Iii = Comm Com Inf Sc Advanced Computing, Pt Iii = Comm. Com. Inf. Sc. Advanced Concepts for Intelligent Vision Systems, Proceedings = Lect Notes Comput Sc Advanced Concepts for Intelligent Vision Systems, Proceedings = Lect. Notes. Comput. Sc. Advanced Concepts for Intelligent Vision Systems, Pt Ii = Lect Notes Comput Sc Advanced Concepts for Intelligent Vision Systems, Pt Ii = Lect. Notes. Comput. Sc. Advanced Concepts for Intelligent Vision Systems, Pt I = Lect Notes Comput Sc Advanced Concepts for Intelligent Vision Systems, Pt I = Lect. Notes. Comput. Sc. Advanced Conceptual Modeling Techniques = Lect Notes Comput Sc Advanced Conceptual Modeling Techniques = Lect. Notes. Comput. Sc. Advanced Control and Instrumentation Systems in Nuclear Power Plants Design, Verification and Validation = Vtt Symp Advanced Control and Instrumentation Systems in Nuclear Power Plants Design, Verification and Validation = Vtt. Symp. Advanced Control and Supervision of Mineral Processing Plants = Adv Ind Control Advanced Control and Supervision of Mineral Processing Plants = Adv. Ind. Control Advanced Control of Industrial Processes: Structures and Algorithms = Adv Ind Control Advanced Control of Industrial Processes: Structures and Algorithms = Adv. Ind. Control Advanced Courses in Mathematics Crm Barcelona = Ad Co Math Advanced Courses in Mathematics Crm Barcelona = Ad. Co. Math. Advanced Courses in Mathematics Crm Barcelona = Adv Courses Math Crm Advanced Courses in Mathematics Crm Barcelona = Adv. Courses Math. Crm Advanced Database Research and Development Series = Adv Datab R Advanced Database Research and Development Series = Adv. Datab. R. Advanced Database Systems = Lect Notes Comput Sc Advanced Database Systems = Lect. Notes. Comput. Sc. Advanced Data Mining and Applications, Proceedings = Lect Notes Artif Int Advanced Data Mining and Applications, Proceedings = Lect. Notes. Artif. Int. Advanced Data Mining and Applications, Proceedings = Lect Notes Comput Sc Advanced Data Mining and Applications, Proceedings = Lect. Notes. Comput. Sc. Advanced Data Storage Materials and Characterization Techniques = Mater Res Soc Symp P Advanced Data Storage Materials and Characterization Techniques = Mater. Res. Soc. Symp. P. Advanced Data Warehouse Design: From Conventional to Spatial and Temporal Applications = Data Centric Syst Ap Advanced Data Warehouse Design: From Conventional to Spatial and Temporal Applications = Data Centric. Syst. Ap. Advanced Democracy Through Education? U.s. Influence Abroad and Domestic Practices = Educ Policy Pract-cr Advanced Democracy Through Education? U.s. Influence Abroad and Domestic Practices = Educ. Policy. Pract-cr. Advanced Design and Manufacture Iii = Key Eng Mater Advanced Design and Manufacture Iii = Key. Eng. Mater. Advanced Design and Manufacture Ii = Key Eng Mat Advanced Design and Manufacture Ii = Key. Eng. Mat. Advanced Design and Manufacture Ii = Key Eng Mater Advanced Design and Manufacture Ii = Key. Eng. Mater. Advanced Design and Manufacturing Based On Step = Springer Ser Adv Man Advanced Design and Manufacturing Based On Step = Springer. Ser. Adv. Man. Advanced Design and Manufacturing Technology I = Adv Mater Res-switz Advanced Design and Manufacturing Technology I = Adv. Mater. Res-switz. Advanced Design of Concrete Structures = Theor Engn Applicat Advanced Design of Concrete Structures = Theor. Engn. Applicat. Advanced Design of Mechanical Systems: From Analysis to Optimization = Cism Courses Lect Advanced Design of Mechanical Systems: From Analysis to Optimization = Cism. Courses. Lect. Advanced Design Problems in Aerospace Engineering, Vol I = Math C Sci Advanced Design Problems in Aerospace Engineering, Vol I = Math. C. Sci. Advanced Devices and Materials for Laser Remote Sensing = Mater Res Soc Symp P Advanced Devices and Materials for Laser Remote Sensing = Mater. Res. Soc. Symp. P. Advanced Differential Quadrature Methods = Ch Crc Appl Math Non Advanced Differential Quadrature Methods = Ch. Crc. Appl. Math. Non. Advanced Display Technologies: Basic Studies of Problems in Information Display (flowers 2000) = P Soc Photo-opt Ins Advanced Display Technologies: Basic Studies of Problems in Information Display (flowers 2000) = P. Soc. Photo-opt. Ins. Advanced Distributed Systems = Lect Notes Comput Sc Advanced Distributed Systems = Lect. Notes. Comput. Sc. Advanced Distrubuted Systems = Lect Notes Comput Sc Advanced Distrubuted Systems = Lect. Notes. Comput. Sc. Advanced Driver Assistance Systems (adas) = Imeche Sem Advanced Driver Assistance Systems (adas) = Imeche. Sem. Advanced Drug Delivery Reviews = Adv Drug Deliver Rev Advanced Drug Delivery Reviews = Adv. Drug Deliver. Rev. Advanced Drug Delivery Reviews = Adv. Drug Delivery Rev. Advanced drug delivery reviews = Adv Drug Deliv Rev Advanced Dynamics and Control of Structures and Machines = Cism Cour L Advanced Dynamics and Control of Structures and Machines = Cism. Cour. L. Advanced Dynamics and Control of Structures and Machines = Cism Courses Lect Advanced Dynamics and Control of Structures and Machines = Cism. Courses. Lect. Advanced Econometrics of Tourism Demand = Routl Adv Tour Advanced Econometrics of Tourism Demand = Routl. Adv. Tour. Advanced Educational Technologies (edute 10) = Rec Adv Comput Eng Advanced Educational Technologies (edute 10) = Rec. Adv. Comput. Eng. Advanced Electical Drives: Analysis, Modeling, Control = Power Syst Advanced Electical Drives: Analysis, Modeling, Control = Power. Syst. Advanced Electronic Packaging Materials = Mater Res Soc Symp P Advanced Electronic Packaging Materials = Mater. Res. Soc. Symp. P. Advanced Electronic Packaging = Mater Res Soc Symp P Advanced Electronic Packaging = Mater. Res. Soc. Symp. P. Advanced Electronic Technologies and Systems Based On Low-dimensional Quantum Devices = Nato Asi 3 High Tech Advanced Electronic Technologies and Systems Based On Low-dimensional Quantum Devices = Nato. Asi. 3. High. Tech. Advanced Electron Microscopy and Nanomaterials = Mater Sci Forum Advanced Electron Microscopy and Nanomaterials = Mater. Sci. Forum. Advanced Encryption Standard - Aes = Lect Notes Comput Sc Advanced Encryption Standard - Aes = Lect. Notes. Comput. Sc. Advanced Energy Conversion and Application = Vdi Bericht Advanced Energy Conversion and Application = Vdi. Bericht. Advanced Energy Materials = Adv Energy Mater Advanced Energy Materials = Adv. Energy Mater. Advanced Energy Systems Division of The American Society of Mechanical Engineers = Adv Energy Syst Div Advanced Energy Systems Division of The American Society of Mechanical Engineers = Adv. Energy Syst. Div. Advanced Engineering Informatics = Adv. Eng. Inf. Advanced Engineering Informatics = Adv Eng Inform Advanced Engineering Informatics = Adv. Eng. Inform. Advanced Engineering Materials = Adv Eng Mater Advanced Engineering Materials = Adv. Eng. Mater. Advanced Engineering Materials, Pts 1-3 = Adv Mater Res-switz Advanced Engineering Materials, Pts 1-3 = Adv. Mater. Res-switz. Advanced Engineering Research = Adv Eng Res Advanced Engineering Research = Adv. Eng. Res. Advanced Engineering Systems for Specialty Crops: A Review of Precision Agriculture for Water, Chemical, and Nutrient Application, and Yield Monitoring = Landbauforsch-vti Ag Advanced Engineering Systems for Specialty Crops: A Review of Precision Agriculture for Water, Chemical, and Nutrient Application, and Yield Monitoring = Landbauforsch-vti. Ag. Advanced Engineering With Ceramics = Brit Cer Pr Advanced Engineering With Ceramics = Brit. Cer. Pr. Advanced Environmental and Chemical Sensing Technology = Proc Spie Advanced Environmental and Chemical Sensing Technology = Proc. Spie. Advanced Environmental and Chemical Sensing Technology = P Soc Photo-opt Ins Advanced Environmental and Chemical Sensing Technology = P. Soc. Photo-opt. Ins. Advanced Environmental, Chemical, and Biological Sensing Technologies Ii = P Soc Photo-opt Ins Advanced Environmental, Chemical, and Biological Sensing Technologies Ii = P. Soc. Photo-opt. Ins. Advanced Environmental, Chemical, and Biological Sensing Technologies Iv = P Soc Photo-opt Ins Advanced Environmental, Chemical, and Biological Sensing Technologies Iv = P. Soc. Photo-opt. Ins. Advanced Environmental, Chemical, and Biological Sensing Technologies Viii = Proc Spie Advanced Environmental, Chemical, and Biological Sensing Technologies Viii = Proc. Spie. Advanced Environmental, Chemical, and Biological Sensing Technologies Vii = Proc Spie Advanced Environmental, Chemical, and Biological Sensing Technologies Vii = Proc. Spie. Advanced Environmental, Chemical, and Biological Sensing Technologies Vii = P Soc Photo-opt Ins Advanced Environmental, Chemical, and Biological Sensing Technologies Vii = P. Soc. Photo-opt. Ins. Advanced Environmental, Chemical, and Biological Sensing Technologies Vi = Proc Spie Advanced Environmental, Chemical, and Biological Sensing Technologies Vi = Proc. Spie. Advanced Environmental, Chemical, and Biological Sensing Technologies Vi = P Soc Photo-opt Ins Advanced Environmental, Chemical, and Biological Sensing Technologies Vi = P. Soc. Photo-opt. Ins. Advanced Environmental, Chemical, and Biological Sensing Technologies V = P Soc Photo-opt Ins Advanced Environmental, Chemical, and Biological Sensing Technologies V = P. Soc. Photo-opt. Ins. Advanced Environmental Sensing Technology Ii = P Soc Photo-opt Ins Advanced Environmental Sensing Technology Ii = P. Soc. Photo-opt. Ins. Advanced Environments, Tools, and Applications for Cluster Computing = Lect Notes Comput Sc Advanced Environments, Tools, and Applications for Cluster Computing = Lect. Notes. Comput. Sc. Advanced Experimental Methods for Noise Research in Nanoscale Electronic Devices = Nato Sci Ser Ii Math Advanced Experimental Methods for Noise Research in Nanoscale Electronic Devices = Nato. Sci. Ser. Ii. Math. Advanced Fabrication Technologies for Micro/nano Optics and Photonics Iii = Proc Spie Advanced Fabrication Technologies for Micro/nano Optics and Photonics Iii = Proc. Spie. Advanced Fabrication Technologies for Micro/nano Optics and Photonics Iii = P Soc Photo-opt Ins Advanced Fabrication Technologies for Micro/nano Optics and Photonics Iii = P. Soc. Photo-opt. Ins. Advanced Fabrication Technologies for Micro/nano Optics and Photonics Ii = P Soc Photo-opt Ins Advanced Fabrication Technologies for Micro/nano Optics and Photonics Ii = P. Soc. Photo-opt. Ins. Advanced Fabrication Technologies for Micro/nano Optics and Photonics = Proc Spie Advanced Fabrication Technologies for Micro/nano Optics and Photonics = Proc. Spie. Advanced Fabrication Technologies for Micro/nano Optics and Photonics = P Soc Photo-opt Ins Advanced Fabrication Technologies for Micro/nano Optics and Photonics = P. Soc. Photo-opt. Ins. Advanced Fiber Communications Technologies = P Soc Photo-opt Ins Advanced Fiber Communications Technologies = P. Soc. Photo-opt. Ins. Advanced Fibers, Plastics, Laminates and Composites = Mater Res Soc Symp P Advanced Fibers, Plastics, Laminates and Composites = Mater. Res. Soc. Symp. P. Advanced Financial Modelling = Radon Ser Comput App Advanced Financial Modelling = Radon. Ser. Comput. App. Advanced Flat Panel Display Technologies = P Soc Photo-opt Ins Advanced Flat Panel Display Technologies = P. Soc. Photo-opt. Ins. Advanced Flourescence Reporters in Chemistry and Biology I = Springer Ser Fluores Advanced Flourescence Reporters in Chemistry and Biology I = Springer. Ser. Fluores. Advanced Fluorescence Reporters in Chemistry and Biology Iii: Applications in Sensing and Imaging = Springer Ser Fluores Advanced Fluorescence Reporters in Chemistry and Biology Iii: Applications in Sensing and Imaging = Springer. Ser. Fluores. Advanced Fluorescence Reporters in Chemistry and Biology Ii: Molecular Constructions, Polymers and Nanoparticles = Springer Ser Fluores Advanced Fluorescence Reporters in Chemistry and Biology Ii: Molecular Constructions, Polymers and Nanoparticles = Springer. Ser. Fluores. Advanced Focal Plane Arrays and Electronic Cameras Ii = P Soc Photo-opt Ins Advanced Focal Plane Arrays and Electronic Cameras Ii = P. Soc. Photo-opt. Ins. Advanced Focal Plane Arrays and Electronic Cameras = P Soc Photo-opt Ins Advanced Focal Plane Arrays and Electronic Cameras = P. Soc. Photo-opt. Ins. Advanced Free-space Optical Communications Techniques and Technologies = P Soc Photo-opt Ins Advanced Free-space Optical Communications Techniques and Technologies = P. Soc. Photo-opt. Ins. Advanced Free-space Optical Communication Techniques/applications Ii and Photonic Components Architectures for Microwave Systems and Displays = Proc Spie Advanced Free-space Optical Communication Techniques/applications Ii and Photonic Components Architectures for Microwave Systems and Displays = Proc. Spie. Advanced Free-space Optical Communication Techniques/applications Ii and Photonic Components Architectures for Microwave Systems and Displays = P Soc Photo-opt Ins Advanced Free-space Optical Communication Techniques/applications Ii and Photonic Components Architectures for Microwave Systems and Displays = P. Soc. Photo-opt. Ins. Advanced Functional Materials = Adv Funct Mater Advanced Functional Materials = Adv. Funct. Mater. Advanced Functional Programming = Lect Notes Comput Sc Advanced Functional Programming = Lect. Notes. Comput. Sc. Advanced Fuzzy-neural Control 2001 = Ifac Work S Advanced Fuzzy-neural Control 2001 = Ifac. Work. S. Advanced Galileo and Gps Receiver Techniques: Enhanced Sensitivity and Improved Accuracy = Electr Eng Dev Advanced Galileo and Gps Receiver Techniques: Enhanced Sensitivity and Improved Accuracy = Electr. Eng. Dev. Advanced Gate Stacks for High-mobility Semiconductors = Spr Ser Adv Microele Advanced Gate Stacks for High-mobility Semiconductors = Spr. Ser. Adv. Microele. Advanced Gate Stack, Source/drain, and Channel Engineering for Si-based Cmos 5: New Materials, Processes, and Equipment = Ecs Transactions Advanced Gate Stack, Source/drain, and Channel Engineering for Si-based Cmos 5: New Materials, Processes, and Equipment = Ecs. Transactions. Advanced Gibbs Energy Methods for Functional Materials and Processes: Chemsheet 1999-2009 = Vtt Res Notes Advanced Gibbs Energy Methods for Functional Materials and Processes: Chemsheet 1999-2009 = Vtt. Res. Notes. Advanced Global Communications Technologies for Astronomy Ii = P Soc Photo-opt Ins Advanced Global Communications Technologies for Astronomy Ii = P. Soc. Photo-opt. Ins. Advanced Global Communications Technologies for Astronomy = Proc Spie Advanced Global Communications Technologies for Astronomy = Proc. Spie. Advanced Global Communications Technologies for Astronomy = P Soc Photo-opt Ins Advanced Global Communications Technologies for Astronomy = P. Soc. Photo-opt. Ins. Advanced Glycation End Products in Nephrology = Contrib Nephrol Advanced Glycation End Products in Nephrology = Contrib. Nephrol. Advanced Hard and Soft Magnetic Materials = Mater Res Soc Symp P Advanced Hard and Soft Magnetic Materials = Mater. Res. Soc. Symp. P. Advanced Health Telematics and Telemedicine = St Heal T Advanced Health Telematics and Telemedicine = St. Heal. T. Advanced Health Telematics and Telemedicine = Stud Health Technol Advanced Health Telematics and Telemedicine = Stud. Health Technol. Advanced High-power Lasers = Proc Spie Advanced High-power Lasers = Proc. Spie. Advanced High-power Lasers = P Soc Photo-opt Ins Advanced High-power Lasers = P. Soc. Photo-opt. Ins. Advanced Iii-v Compound Semiconductor Growth, Processing and Devices = Mater Res Soc Symp P Advanced Iii-v Compound Semiconductor Growth, Processing and Devices = Mater. Res. Soc. Symp. P. Advanced Image and Video Communications and Storage Technologies = P Soc Photo-opt Ins Advanced Image and Video Communications and Storage Technologies = P. Soc. Photo-opt. Ins. Advanced Imaging in Coronary Artery Disease = Dev Cardiovasc Med Advanced Imaging in Coronary Artery Disease = Dev. Cardiovasc. Med. Advanced Imaging Technologies and Commercial Applications = P Soc Photo-opt Ins Advanced Imaging Technologies and Commercial Applications = P. Soc. Photo-opt. Ins. Advanced imaging (Woodbury, N.Y.) = Adv Imaging Advanced Information and Knowledge Processing = Adv Info Know Proc Advanced Information and Knowledge Processing = Adv. Info. Know. Proc. Advanced Information and Knowledge Processing = Adv Inform Knowl Pro Advanced Information and Knowledge Processing = Adv. Inform. Knowl. Pro. Advanced Information Processing Techniques for Lan and Man Management = Ifip Trans C Advanced Information Processing Techniques for Lan and Man Management = Ifip. Trans. C. Advanced Information Processing Technology = Adv Info Proc Tech Advanced Information Processing Technology = Adv. Info. Proc. Tech. Advanced Information Systems Engineering = Lect Notes Comput Sc Advanced Information Systems Engineering = Lect. Notes. Comput. Sc. Advanced Information Systems Engineering / = Lect Notes Comput Sc Advanced Information Systems Engineering / = Lect. Notes. Comput. Sc. Advanced Information Systems Engineering // = Lect Notes Comput Sc Advanced Information Systems Engineering // = Lect. Notes. Comput. Sc. Advanced Information Systems Engineering, Proceedings = Biomed Sci Instrum Advanced Information Systems Engineering, Proceedings = Biomed. Sci. Instrum. Advanced Information Systems Engineering, Proceedings = Lect Notes Comput Sc Advanced Information Systems Engineering, Proceedings = Lect. Notes. Comput. Sc. Advanced Information Technology = Adv Inform Technol Advanced Information Technology = Adv. Inform. Technol. Advanced Intelligent Computing Theories and Applications = Comm Com Inf Sc Advanced Intelligent Computing Theories and Applications = Comm. Com. Inf. Sc. Advanced Intelligent Computing Theories and Applications = Lect Notes Comput Sc Advanced Intelligent Computing Theories and Applications = Lect. Notes. Comput. Sc. Advanced Intelligent Computing Theories and Applications, Proceedings = Comm Com Inf Sc Advanced Intelligent Computing Theories and Applications, Proceedings = Comm. Com. Inf. Sc. Advanced Intelligent Computing Theories and Applications, Proceedings = Lect Notes Artif Int Advanced Intelligent Computing Theories and Applications, Proceedings = Lect. Notes. Artif. Int. Advanced Intelligent Computing Theories and Applications, Proceedings = Lect Notes Comput Sc Advanced Intelligent Computing Theories and Applications, Proceedings = Lect. Notes. Comput. Sc. Advanced Intelligent Computing Theories and Applications: With Aspects of Artificial Intelligence = Lect Notes Artif Int Advanced Intelligent Computing Theories and Applications: With Aspects of Artificial Intelligence = Lect. Notes. Artif. Int. Advanced Intelligent Computing Theories and Applications: With Aspects of Theoretical and Methodological Issues = Lect Notes Comput Sc Advanced Intelligent Computing Theories and Applications: With Aspects of Theoretical and Methodological Issues = Lect. Notes. Comput. Sc. Advanced Intelligent Paradigms in Computer Games = Stud Comput Intell Advanced Intelligent Paradigms in Computer Games = Stud. Comput. Intell. Advanced Interconnects and Contact Materials and Processes for Future Integrated Circuits = Mater Res Soc Symp P Advanced Interconnects and Contact Materials and Processes for Future Integrated Circuits = Mater. Res. Soc. Symp. P. Advanced Interconnects and Contacts = Mater Res Soc Symp P Advanced Interconnects and Contacts = Mater. Res. Soc. Symp. P. Advanced Intermetallic-based Alloys for Extreme Environment and Energy Applications = Mater Res Soc Symp P Advanced Intermetallic-based Alloys for Extreme Environment and Energy Applications = Mater. Res. Soc. Symp. P. Advanced Intermetallic-based Alloys = Mater Res Soc Symp P Advanced Intermetallic-based Alloys = Mater. Res. Soc. Symp. P. Advanced Internet Based Systems and Applications = Lect Notes Comput Sc Advanced Internet Based Systems and Applications = Lect. Notes. Comput. Sc. Advanced Internet Services and Appplications, Proceedings = Lect Notes Comput Sc Advanced Internet Services and Appplications, Proceedings = Lect. Notes. Comput. Sc. Advanced Laser Concepts and Applications = P Soc Photo-opt Ins Advanced Laser Concepts and Applications = P. Soc. Photo-opt. Ins. Advanced Laser Dentistry = P Soc Photo-opt Ins Advanced Laser Dentistry = P. Soc. Photo-opt. Ins. Advanced Laser Processing of Materials - Fundamentals and Applications = Mater Res Soc Symp P Advanced Laser Processing of Materials - Fundamentals and Applications = Mater. Res. Soc. Symp. P. Advanced Lasers and Systems = P Soc Photo-opt Ins Advanced Lasers and Systems = P. Soc. Photo-opt. Ins. Advanced Laser Technologies 2004 = P Soc Photo-opt Ins Advanced Laser Technologies 2004 = P. Soc. Photo-opt. Ins. Advanced Laser Technologies 2005, Pts 1 and 2 = Proc Spie Advanced Laser Technologies 2005, Pts 1 and 2 = Proc. Spie. Advanced Laser Technologies 2005, Pts 1 and 2 = P Soc Photo-opt Ins Advanced Laser Technologies 2005, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advanced Laser Technologies 2006 = P Soc Photo-opt Ins Advanced Laser Technologies 2006 = P. Soc. Photo-opt. Ins. Advanced Laser Technologies 2007 = Proc Spie Advanced Laser Technologies 2007 = Proc. Spie. Advanced Laser Technologies 2007 = P Soc Photo-opt Ins Advanced Laser Technologies 2007 = P. Soc. Photo-opt. Ins. Advanced Lectures in Mathematics = Adv. Lectures Math. Advanced Lectures On Machine Learning = Lect Notes Artif Int Advanced Lectures On Machine Learning = Lect. Notes. Artif. Int. Advanced Lectures On Networking = Lect Notes Comput Sc Advanced Lectures On Networking = Lect. Notes. Comput. Sc. Advanced Lectures On Software Engineering: Laser Summer School 2007/2008 = Lect Notes Comput Sc Advanced Lectures On Software Engineering: Laser Summer School 2007/2008 = Lect. Notes. Comput. Sc. Advanced Leds for Solid State Lighting = Proc Spie Advanced Leds for Solid State Lighting = Proc. Spie. Advanced Leds for Solid State Lighting = P Soc Photo-opt Ins Advanced Leds for Solid State Lighting = P. Soc. Photo-opt. Ins. Advanced Light Alloys and Composites = Nato Asi 3 High Tech Advanced Light Alloys and Composites = Nato. Asi. 3. High. Tech. Advanced Lukasiewicz Calculus and Mv-algebras = Trends Log Stud Log Advanced Lukasiewicz Calculus and Mv-algebras = Trends. Log. Stud. Log. Advanced Luminescent Materials and Quantum Confinement = Elec Soc S Advanced Luminescent Materials and Quantum Confinement = Elec. Soc. S. Advanced Manufacture: Focusing On New and Emerging Technologies = Mater Sci Forum Advanced Manufacture: Focusing On New and Emerging Technologies = Mater. Sci. Forum. Advanced Manufacturing and Sustainable Logistics, Proceedings = Lect Notes Bus Inf Advanced Manufacturing and Sustainable Logistics, Proceedings = Lect. Notes. Bus. Inf. Advanced Manufacturing and Sustainable Logistics, Proceedings = Lect Notes Bus Inf P Advanced Manufacturing and Sustainable Logistics, Proceedings = Lect. Notes. Bus. Inf. P. Advanced Manufacturing Engineering, Quality and Production Systems = Ele Com Eng Advanced Manufacturing Engineering, Quality and Production Systems = Ele. Com. Eng. Advanced Manufacturing Series = Adv Manuf S Advanced Manufacturing Series = Adv. Manuf. S. Advanced Manufacturing Systems, Pts 1-3 = Adv Mater Res-switz Advanced Manufacturing Systems, Pts 1-3 = Adv. Mater. Res-switz. Advanced Manufacturing Technology, Pts 1, 2 = Adv Mater Res-switz Advanced Manufacturing Technology, Pts 1, 2 = Adv. Mater. Res-switz. Advanced Materials '93, I - A & B = T Mrs Jap Advanced Materials '93, I - A & B = T. Mrs. Jap. Advanced Materials '93, Ii - A & B = T Mrs Jap Advanced Materials '93, Ii - A & B = T. Mrs. Jap. Advanced Materials '93, Iii - A & B = T Mrs Jap Advanced Materials '93, Iii - A & B = T. Mrs. Jap. Advanced Materials '93, Iv = T Mrs Jap Advanced Materials '93, Iv = T. Mrs. Jap. Advanced Materials '93, V - A & B = T Mrs Jap Advanced Materials '93, V - A & B = T. Mrs. Jap. Advanced Materials '93, Vi - A & B = T Mrs Jap Advanced Materials '93, Vi - A & B = T. Mrs. Jap. Advanced Materials = Adv Mater Advanced Materials = Adv. Mater. Advanced Materials and Devices for Sensing and Imaging Iii = Proc Spie Advanced Materials and Devices for Sensing and Imaging Iii = Proc. Spie. Advanced Materials and Devices for Sensing and Imaging Iii = P Soc Photo-opt Ins Advanced Materials and Devices for Sensing and Imaging Iii = P. Soc. Photo-opt. Ins. Advanced Materials and Devices for Sensing and Imaging Ii = Proc Spie Advanced Materials and Devices for Sensing and Imaging Ii = Proc. Spie. Advanced Materials and Devices for Sensing and Imaging Ii = P Soc Photo-opt Ins Advanced Materials and Devices for Sensing and Imaging Ii = P. Soc. Photo-opt. Ins. Advanced Materials and Devices for Sensing and Imaging = P Soc Photo-opt Ins Advanced Materials and Devices for Sensing and Imaging = P. Soc. Photo-opt. Ins. Advanced Materials and Nanotechnology, Proceedings = Aip Conf Proc Advanced Materials and Nanotechnology, Proceedings = Aip. Conf. Proc. Advanced Materials and Optical Systems for Chemical and Biological Detection = Proc Spie Advanced Materials and Optical Systems for Chemical and Biological Detection = Proc. Spie. Advanced Materials and Optical Systems for Chemical and Biological Detection = P Soc Photo-opt Ins Advanced Materials and Optical Systems for Chemical and Biological Detection = P. Soc. Photo-opt. Ins. Advanced Materials and Processes = Adv. Mater. Processes Advanced Materials and Processes = Mater Sci Forum Advanced Materials and Processes = Mater. Sci. Forum. Advanced Materials and Processing = Adv Mater Res-switz Advanced Materials and Processing = Adv. Mater. Res-switz. Advanced Materials and Processing Iv = Adv Mat Res Advanced Materials and Processing Iv = Adv. Mat. Res. Advanced Materials and Systems for Energy Conversion: Fundamentals and Applications = Energ Sci Eng Tech Advanced Materials and Systems for Energy Conversion: Fundamentals and Applications = Energ. Sci. Eng. Tech. Advanced Materials and Technologies for Micro/nano-devices, Sensors and Actuators = Nato Sci Peace Sec B Advanced Materials and Technologies for Micro/nano-devices, Sensors and Actuators = Nato. Sci. Peace. Sec. B. Advanced Materials and Technologies = Mater Sci Forum Advanced Materials and Technologies = Mater. Sci. Forum. Advanced Materials : Cost Effectiveness, Quality Control, Health and Environment = Mater Sci Monog Advanced Materials : Cost Effectiveness, Quality Control, Health and Environment = Mater. Sci. Monog. Advanced materials (Deerfield Beach, Fla.) = Adv Mater Deerfield Advanced Materials: Expanding The Horizons = Int Sampe Tech Conf Advanced Materials: Expanding The Horizons = Int. Sampe. Tech. Conf. Advanced Materials for Fluid Machinery = Imeche Conf Trans Advanced Materials for Fluid Machinery = Imeche. Conf. Trans. Advanced Materials for High Technology Applications = Mater Sci Forum Advanced Materials for High Technology Applications = Mater. Sci. Forum. Advanced Materials for Optics and Electronics = Adv Mater Opt Electr Advanced Materials for Optics and Electronics = Adv. Mater. Opt. Electr. Advanced Materials for Optics and Electronics = Adv. Mater. Opt. Electron. Advanced Materials for Optics and Precision Structures = P Soc Photo-opt Ins Advanced Materials for Optics and Precision Structures = P. Soc. Photo-opt. Ins. Advanced Materials for Thermal Management of Electronic Packaging = Spr Ser Adv Microele Advanced Materials for Thermal Management of Electronic Packaging = Spr. Ser. Adv. Microele. Advanced Materials Forum Iii, Pts 1 and 2 = Mater Sci Forum Advanced Materials Forum Iii, Pts 1 and 2 = Mater. Sci. Forum Advanced Materials Forum Ii = Mater Sci Forum Advanced Materials Forum Ii = Mater. Sci. Forum Advanced Materials Forum I = Key Eng Mat Advanced Materials Forum I = Key. Eng. Mat. Advanced Materials Forum I = Key Eng Mater Advanced Materials Forum I = Key. Eng. Mater. Advanced Materials Forum Iv = Mater Sci Forum Advanced Materials Forum Iv = Mater. Sci. Forum Advanced Materials Forum V, Pt 1 and 2 = Mater Sci Forum Advanced Materials Forum V, Pt 1 and 2 = Mater. Sci. Forum Advanced Materials : Looking Ahead to The 21st Century = Int Sampe Tech Conf Advanced Materials : Looking Ahead to The 21st Century = Int. Sampe. Tech. Conf. Advanced Materials : Meeting The Economic Challenge / Advancements in Synthesis and Processes = Int Sampe Tech Conf Advanced Materials : Meeting The Economic Challenge / Advancements in Synthesis and Processes = Int. Sampe. Tech. Conf. Advanced Materials & Processes = Adv Mater Process Advanced Materials & Processes = Adv. Mater. Process. Advanced Materials & Processes Preparing for The New Millennium = Int Sampe Tech Conf Advanced Materials & Processes Preparing for The New Millennium = Int. Sampe. Tech. Conf. Advanced Materials Processing Ii = Mater Sci Forum Advanced Materials Processing Ii = Mater. Sci. Forum. Advanced Materials Research = Adv Mater Res-switz Advanced Materials Research = Adv. Mater. Res-switz. Advanced Materials Research = Adv Mat Res Advanced Materials Research = Adv. Mat. Res. Advanced Materials Science and Technology = Mater Sci Forum Advanced Materials Science and Technology = Mater. Sci. Forum. Advanced Materials Science and Technology, Pts 1-2 = Adv Mater Res-switz Advanced Materials Science and Technology, Pts 1-2 = Adv. Mater. Res-switz. Advanced Materials : The Big Payoff = Int Sampe Tech Conf Advanced Materials : The Big Payoff = Int. Sampe. Tech. Conf. Advanced Materials (Weinheim, Germany) = Adv. Mater. (Weinheim, Ger.) Advanced Materials Xi = Key Eng Mat Advanced Materials Xi = Key. Eng. Mat. Advanced Materials Xi = Key Eng Mater Advanced Materials Xi = Key. Eng. Mater. Advanced Mathematical and Computational Geomechanics = Lect Notes Appl Comp Advanced Mathematical and Computational Geomechanics = Lect. Notes. Appl. Comp. Advanced Mathematical and Computational Geomechanics = Ln App C M Advanced Mathematical and Computational Geomechanics = Ln. App. C. M. Advanced Mathematical and Computational Tools in Metrology and Testing Viii = S Adv Math Advanced Mathematical and Computational Tools in Metrology and Testing Viii = S. Adv. Math. Advanced Mathematical and Computational Tools in Metrology and Testing Viii = Ser Adv Math Appl Sc Advanced Mathematical and Computational Tools in Metrology and Testing Viii = Ser. Adv. Math. Appl. Sc. Advanced Mathematical and Computational Tools in Metrology Vii = S Adv Math Advanced Mathematical and Computational Tools in Metrology Vii = S. Adv. Math. Advanced Mathematical and Computational Tools in Metrology V = S Adv Math Advanced Mathematical and Computational Tools in Metrology V = S. Adv. Math. Advanced Mathematical and Computational Tools in Metrology V = Ser Adv Math Appl Sc Advanced Mathematical and Computational Tools in Metrology V = Ser. Adv. Math. Appl. Sc. Advanced Mathematical & Computational Tools in Metrology Iv = S Adv Math Advanced Mathematical & Computational Tools in Metrology Iv = S. Adv. Math. Advanced Mathematical & Computational Tools in Metrology Iv = Ser Adv Math Appl Sc Advanced Mathematical & Computational Tools in Metrology Iv = Ser. Adv. Math. Appl. Sc. Advanced Mathematical & Computational Tools in Metrology Vi = S Adv Math Advanced Mathematical & Computational Tools in Metrology Vi = S. Adv. Math. Advanced Mathematical & Computational Tools in Metrology Vi = Ser Adv Math Appl Sc Advanced Mathematical & Computational Tools in Metrology Vi = Ser. Adv. Math. Appl. Sc. Advanced Mathematics for Engineers With Applications in Stochastic Processes = Math Res Dev Advanced Mathematics for Engineers With Applications in Stochastic Processes = Math. Res. Dev. Advanced Measurement and Test, Parts 1 and 2 = Key Eng Mat Advanced Measurement and Test, Parts 1 and 2 = Key. Eng. Mat. Advanced Measurement and Test, Parts 1 and 2 = Key Eng Mater Advanced Measurement and Test, Parts 1 and 2 = Key. Eng. Mater. Advanced Mechanical Properties and Deformation Mechanisms of Bulk Nanostructured Materials = Mater Sci Forum Advanced Mechanical Properties and Deformation Mechanisms of Bulk Nanostructured Materials = Mater. Sci. Forum. Advanced Membrane Technology = Ann Ny Acad Sci Advanced Membrane Technology = Ann. Ny. Acad. Sci. Advanced Metallization and Processing for Semiconductor Devices and Circuits - Ii = Mater Res Soc Symp P Advanced Metallization and Processing for Semiconductor Devices and Circuits - Ii = Mater. Res. Soc. Symp. P. Advanced Metallization Conference 2000 (amc 2000) = Mat Res S C Advanced Metallization Conference 2000 (amc 2000) = Mat. Res. S. C. Advanced Metallization Conference 2001 (amc 2001) = Mat Res S C Advanced Metallization Conference 2001 (amc 2001) = Mat. Res. S. C. Advanced Metallization Conference 2003 (amc 2003) = Mat Res S C Advanced Metallization Conference 2003 (amc 2003) = Mat. Res. S. C. Advanced Metallization Conference 2007 (amc 2007) = Mat Res S C Advanced Metallization Conference 2007 (amc 2007) = Mat. Res. S. C. Advanced Metallization for Devices and Circuits - Science, Technology and Manufacturability = Mater Res Soc Symp P Advanced Metallization for Devices and Circuits - Science, Technology and Manufacturability = Mater. Res. Soc. Symp. P. Advanced Metallization for Future Ulsi = Mat Res S C Advanced Metallization for Future Ulsi = Mat. Res. S. C. Advanced Metallization in Microelectronics = Mater Res Soc Symp P Advanced Metallization in Microelectronics = Mater. Res. Soc. Symp. P. Advanced Methods for Satellite and Deep Space Communications = Lect Notes Contr Inf Advanced Methods for Satellite and Deep Space Communications = Lect. Notes. Contr. Inf. Advanced Methods in Materials Processing Defects = Stud Appl Mech Advanced Methods in Materials Processing Defects = Stud. Appl. Mech. Advanced Methods of Solid Oxide Fuel Cell Modeling = Green Energy Technol Advanced Methods of Solid Oxide Fuel Cell Modeling = Green. Energy. Technol. Advanced Microdevices and Space Science Sensors = P Soc Photo-opt Ins Advanced Microdevices and Space Science Sensors = P. Soc. Photo-opt. Ins. Advanced Microelectronic Processing Techniques = P Soc Photo-opt Ins Advanced Microelectronic Processing Techniques = P. Soc. Photo-opt. Ins. Advanced Microlithography Technologies = P Soc Photo-opt Ins Advanced Microlithography Technologies = P. Soc. Photo-opt. Ins. Advanced Micro & Nanosystems = Adv Micro Nanosyst Advanced Micro & Nanosystems = Adv. Micro Nanosyst. Advanced Micro & Nanosystems, Vol 2: Cmos-mems = Adv Micro Nanosyst Advanced Micro & Nanosystems, Vol 2: Cmos-mems = Adv. Micro Nanosyst. Advanced Microscopy Techniques Ii = Proc Spie Advanced Microscopy Techniques Ii = Proc. Spie. Advanced Microwave and Millimeter-wave Detectors = P Soc Photo-opt Ins Advanced Microwave and Millimeter-wave Detectors = P. Soc. Photo-opt. Ins. Advanced Modeling and Optimization of Manufacturing Processes: International Research and Development = Springer Ser Adv Man Advanced Modeling and Optimization of Manufacturing Processes: International Research and Development = Springer. Ser. Adv. Man. Advanced Monitoring and Numerical Analysis of Coastal Water and Urban Air Environment = Csur Ut Ser Lib Sust Advanced Monitoring and Numerical Analysis of Coastal Water and Urban Air Environment = Csur. Ut. Ser. Lib. Sust. Advanced Multilayered and Fibre-reinforced Composites = Nato Asi 3 High Tech Advanced Multilayered and Fibre-reinforced Composites = Nato. Asi. 3. High. Tech. Advanced Multimedia Content Processing = Lect Notes Comput Sc Advanced Multimedia Content Processing = Lect. Notes. Comput. Sc. Advanced Neutron Sources 1988 = Inst Phys Conf Ser Advanced Neutron Sources 1988 = Inst. Phys. Conf. Ser. Advanced Nondestructive Evaluation for Structural and Biological Health Monitoring = P Soc Photo-opt Ins Advanced Nondestructive Evaluation for Structural and Biological Health Monitoring = P. Soc. Photo-opt. Ins. Advanced Nondestructive Evaluation I, Pts 1 and 2, Proceedings = Key Eng Mat Advanced Nondestructive Evaluation I, Pts 1 and 2, Proceedings = Key. Eng. Mat. Advanced Nondestructive Evaluation I, Pts 1 and 2, Proceedings = Key Eng Mater Advanced Nondestructive Evaluation I, Pts 1 and 2, Proceedings = Key. Eng. Mater. Advanced Nondestructuve Evaluation I, Pts 1 and 2, Proceedings = Key Eng Mat Advanced Nondestructuve Evaluation I, Pts 1 and 2, Proceedings = Key. Eng. Mat. Advanced Nonlinear Strategies for Vibration Mitigation and System Identification = Cism Cour L Advanced Nonlinear Strategies for Vibration Mitigation and System Identification = Cism. Cour. L. Advanced Nonlinear Studies = Adv Nonlinear Stud Advanced Nonlinear Studies = Adv. Nonlinear Stud. Advanced Nuclear Systems Consuming Excess Plutonium = Nato Sci S 1 Disarm Advanced Nuclear Systems Consuming Excess Plutonium = Nato. Sci. S. 1. Disarm. Advanced Numerical Applications and Plasticity in Geomechanics = Cism Cour L Advanced Numerical Applications and Plasticity in Geomechanics = Cism. Cour. L. Advanced Numerical Methods to Optimize Cutting Operations of Five-axis Milling Machines = Springer Ser Adv Man Advanced Numerical Methods to Optimize Cutting Operations of Five-axis Milling Machines = Springer. Ser. Adv. Man. Advanced Numerical Models for Simulating Tsunami Waves and Runup = Adv Coastal Ocean En Advanced Numerical Models for Simulating Tsunami Waves and Runup = Adv. Coastal. Ocean. En. Advanced Optical and Mechanical Technologies in Telescopes and Instrumentation, Pts 1-3 = Proc Spie Advanced Optical and Mechanical Technologies in Telescopes and Instrumentation, Pts 1-3 = Proc. Spie. Advanced Optical and Mechanical Technologies in Telescopes and Instrumentation, Pts 1-3 = P Soc Photo-opt Ins Advanced Optical and Mechanical Technologies in Telescopes and Instrumentation, Pts 1-3 = P. Soc. Photo-opt. Ins. Advanced Optical and Quantum Memories and Computing Iii = P Soc Photo-opt Ins Advanced Optical and Quantum Memories and Computing Iii = P. Soc. Photo-opt. Ins. Advanced Optical and Quantum Memories and Computing Ii = P Soc Photo-opt Ins Advanced Optical and Quantum Memories and Computing Ii = P. Soc. Photo-opt. Ins. Advanced Optical and Quantum Memories and Computing Iv = P Soc Photo-opt Ins Advanced Optical and Quantum Memories and Computing Iv = P. Soc. Photo-opt. Ins. Advanced Optical and Quantum Memories and Computing = Proc Spie Advanced Optical and Quantum Memories and Computing = Proc. Spie. Advanced Optical and Quantum Memories and Computing = P Soc Photo-opt Ins Advanced Optical and Quantum Memories and Computing = P. Soc. Photo-opt. Ins. Advanced Optical Concepts in Quantum Computing, Memory, and Communication Ii = P Soc Photo-opt Ins Advanced Optical Concepts in Quantum Computing, Memory, and Communication Ii = P. Soc. Photo-opt. Ins. Advanced Optical Concepts in Quantum Computing, Memory, and Communication = P Soc Photo-opt Ins Advanced Optical Concepts in Quantum Computing, Memory, and Communication = P. Soc. Photo-opt. Ins. Advanced Optical Data Storage: Materials, Systems, and Interfaces to Computers = P Soc Photo-opt Ins Advanced Optical Data Storage: Materials, Systems, and Interfaces to Computers = P. Soc. Photo-opt. Ins. Advanced Optical Data Storage = P Soc Photo-opt Ins Advanced Optical Data Storage = P. Soc. Photo-opt. Ins. Advanced Optical Devices, Technologies, and Medical Applications = Proc Spie Advanced Optical Devices, Technologies, and Medical Applications = Proc. Spie. Advanced Optical Devices, Technologies, and Medical Applications = P Soc Photo-opt Ins Advanced Optical Devices, Technologies, and Medical Applications = P. Soc. Photo-opt. Ins. Advanced Optical Instrumentation for Remote Sensing of The Earths Surface From Space = P Soc Photo-opt Ins Advanced Optical Instrumentation for Remote Sensing of The Earths Surface From Space = P. Soc. Photo-opt. Ins. Advanced Optical Manufacturing and Testing Ii = P Soc Photo-opt Ins Advanced Optical Manufacturing and Testing Ii = P. Soc. Photo-opt. Ins. Advanced Optical Manufacturing and Testing Iv = P Soc Photo-opt Ins Advanced Optical Manufacturing and Testing Iv = P. Soc. Photo-opt. Ins. Advanced Optical Manufacturing and Testing = P Soc Photo-opt Ins Advanced Optical Manufacturing and Testing = P. Soc. Photo-opt. Ins. Advanced Optical Manufacturing and Testing Technology 2000 = P Soc Photo-opt Ins Advanced Optical Manufacturing and Testing Technology 2000 = P. Soc. Photo-opt. Ins. Advanced Optical Manufacturing Technologies, Pts 1 and 2 = Proc Spie Advanced Optical Manufacturing Technologies, Pts 1 and 2 = Proc. Spie. Advanced Optical Manufacturing Technologies, Pts 1 and 2 = P Soc Photo-opt Ins Advanced Optical Manufacturing Technologies, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advanced Optical Materials, Technologies, and Devices = P Soc Photo-opt Ins Advanced Optical Materials, Technologies, and Devices = P. Soc. Photo-opt. Ins. Advanced Optical Memories and Interfaces to Computer Storage = P Soc Photo-opt Ins Advanced Optical Memories and Interfaces to Computer Storage = P. Soc. Photo-opt. Ins. Advanced Optical Methods for Ultrasensitive Detection = P Soc Photo-opt Ins Advanced Optical Methods for Ultrasensitive Detection = P. Soc. Photo-opt. Ins. Advanced Optical Processing of Materials = Mater Res Soc Symp P Advanced Optical Processing of Materials = Mater. Res. Soc. Symp. P. Advanced Optical Storage Technology = P Soc Photo-opt Ins Advanced Optical Storage Technology = P. Soc. Photo-opt. Ins. Advanced Optoelectronics and Lasers = Proc Spie Advanced Optoelectronics and Lasers = Proc. Spie. Advanced Optoelectronics and Lasers = P Soc Photo-opt Ins Advanced Optoelectronics and Lasers = P. Soc. Photo-opt. Ins. Advanced Organic and Inorganic Optical Materials = Proc Spie Advanced Organic and Inorganic Optical Materials = Proc. Spie. Advanced Organic and Inorganic Optical Materials = P Soc Photo-opt Ins Advanced Organic and Inorganic Optical Materials = P. Soc. Photo-opt. Ins. Advanced Organic Solid State Materials = Mater Res Soc Symp P Advanced Organic Solid State Materials = Mater. Res. Soc. Symp. P. Advanced Parallel Processing Technologies, Proceedings = Lect Notes Comput Sc Advanced Parallel Processing Technologies, Proceedings = Lect. Notes. Comput. Sc. Advanced Performance Materials = Adv Perform Mater Advanced Performance Materials = Adv. Perform. Mater. Advanced Peripheral Nerve Surgery and Minimal Invasive Spinal Surgery = Act Neur S Advanced Peripheral Nerve Surgery and Minimal Invasive Spinal Surgery = Act. Neur. S. Advanced Phase-lock Techniques = Artech Hse Microw Li Advanced Phase-lock Techniques = Artech. Hse. Microw. Li. Advanced Photon Counting Techniques Iii = Proc Spie Advanced Photon Counting Techniques Iii = Proc. Spie. Advanced Photon Counting Techniques Iii = P Soc Photo-opt Ins Advanced Photon Counting Techniques Iii = P. Soc. Photo-opt. Ins. Advanced Photon Counting Techniques Ii = Proc Spie Advanced Photon Counting Techniques Ii = Proc. Spie. Advanced Photon Counting Techniques Ii = P Soc Photo-opt Ins Advanced Photon Counting Techniques Ii = P. Soc. Photo-opt. Ins. Advanced Photon Counting Techniques Iv = Proc Spie Advanced Photon Counting Techniques Iv = Proc. Spie. Advanced Photon Counting Techniques Iv = P Soc Photo-opt Ins Advanced Photon Counting Techniques Iv = P. Soc. Photo-opt. Ins. Advanced Photon Counting Techniques = Proc Spie Advanced Photon Counting Techniques = Proc. Spie. Advanced Photon Counting Techniques = P Soc Photo-opt Ins Advanced Photon Counting Techniques = P. Soc. Photo-opt. Ins. Advanced Photon Counting Techniques V = Proc Spie Advanced Photon Counting Techniques V = Proc. Spie. Advanced Photonic Sensors and Applications Ii = Proc Spie Advanced Photonic Sensors and Applications Ii = Proc. Spie. Advanced Photonic Sensors and Applications Ii = P Soc Photo-opt Ins Advanced Photonic Sensors and Applications Ii = P. Soc. Photo-opt. Ins. Advanced Photonic Sensors and Applications = Proc Spie Advanced Photonic Sensors and Applications = Proc. Spie. Advanced Photonic Sensors and Applications = P Soc Photo-opt Ins Advanced Photonic Sensors and Applications = P. Soc. Photo-opt. Ins. Advanced Photonic Sensors: Technology and Applications = P Soc Photo-opt Ins Advanced Photonic Sensors: Technology and Applications = P. Soc. Photo-opt. Ins. Advanced Photonics Materials for Information Technology = P Soc Photo-opt Ins Advanced Photonics Materials for Information Technology = P. Soc. Photo-opt. Ins. Advanced Photonic Structures for Biological and Chemical Detection = Integr Anal Syst Advanced Photonic Structures for Biological and Chemical Detection = Integr. Anal. Syst. Advanced Photonics With Second-order Optically Nonlinear Processes = Nato Asi 3 High Tech Advanced Photonics With Second-order Optically Nonlinear Processes = Nato. Asi. 3. High. Tech. Advanced Planning in Fresh Food Industries : Integrating Shelf Life Into Production Planning = Contrib Manag Sci Advanced Planning in Fresh Food Industries : Integrating Shelf Life Into Production Planning = Contrib. Manag. Sci. Advanced Polymer Processing = Adv Mater Res-switz Advanced Polymer Processing = Adv. Mater. Res-switz. Advanced Polymer Processing = Adv Mat Res Advanced Polymer Processing = Adv. Mat. Res. Advanced Polymer Science and Engineering = Adv Mater Res-switz Advanced Polymer Science and Engineering = Adv. Mater. Res-switz. Advanced Powder Technology = Adv Powder Technol Advanced Powder Technology = Adv. Powder Technol. Advanced Powder Technology Iii = Mater Sci Forum Advanced Powder Technology Iii = Mater. Sci. Forum. Advanced Powder Technology Ii = Key Eng Mat Advanced Powder Technology Ii = Key. Eng. Mat. Advanced Powder Technology Ii = Key Eng Mater Advanced Powder Technology Ii = Key. Eng. Mater. Advanced Powder Technology Iv = Mater Sci Forum Advanced Powder Technology Iv = Mater. Sci. Forum. Advanced Powder Technology = Mater Sci Forum Advanced Powder Technology = Mater. Sci. Forum. Advanced Powder Technology Vi = Mater Sci Forum Advanced Powder Technology Vi = Mater. Sci. Forum. Advanced Powder Technology V = Mater Sci Forum Advanced Powder Technology V = Mater. Sci. Forum. Advanced Power Plant Materials, Design and Technology = Woodhead Publ Ser En Advanced Power Plant Materials, Design and Technology = Woodhead. Publ. Ser. En. Advanced practice nursing quarterly = Adv Pract Nurs Q Advanced Practice Nursing Quarterly = Adv. Pract. Nurs. Q. Advanced Precision Engineering = Key Eng Mater Advanced Precision Engineering = Key. Eng. Mater. Advanced Problems in Constructive Approximation = Int Ser Numer Math Advanced Problems in Constructive Approximation = Int. Ser. Numer. Math. Advanced Problems in Constructive Approximation = Int S Num M Advanced Problems in Constructive Approximation = Int. S. Num. M. Advanced Process Control and Automation = Proc Spie Advanced Process Control and Automation = Proc. Spie. Advanced Process Control and Automation = P Soc Photo-opt Ins Advanced Process Control and Automation = P. Soc. Photo-opt. Ins. Advanced Processing and Characterization Technologies = Aip Conf Proc Advanced Processing and Characterization Technologies = Aip. Conf. Proc. Advanced Processing and Manufacturing Technologies for Structural and Multifunctional Materials = Ceram Eng Sci Proc Advanced Processing and Manufacturing Technologies for Structural and Multifunctional Materials = Ceram. Eng. Sci. Proc. Advanced Processing and Manufacturing Technologies for Structural and Multifunctional Materials Ii = Ceram Eng Sci Proc Advanced Processing and Manufacturing Technologies for Structural and Multifunctional Materials Ii = Ceram. Eng. Sci. Proc. Advanced Processing and Manufacturingtechnologies for Structural and Multifunctional Materials Iii = Ceram Eng Sci Proc Advanced Processing and Manufacturingtechnologies for Structural and Multifunctional Materials Iii = Ceram. Eng. Sci. Proc. Advanced Propulsion Systems and Technologies, Today to 2020 = Prog Astronaut Aeron Advanced Propulsion Systems and Technologies, Today to 2020 = Prog. Astronaut. Aeron. Advanced Protocols in Oxidative Stress Ii = Methods Mol Biol Advanced Protocols in Oxidative Stress Ii = Methods. Mol. Biol. Advanced Public Procurement As Industrial Policy: The Aircraft Industry As A Technical University = Econ Sci Technol Inn Advanced Public Procurement As Industrial Policy: The Aircraft Industry As A Technical University = Econ. Sci. Technol. Inn. Advanced Quantitative Techniques in the Social Sciences = Adv. Quant. Tech. Soc. Sci. Advanced Radiation Sources and Applications = Nato Sci Ser Ii-math Advanced Radiation Sources and Applications = Nato. Sci. Ser. Ii-math. Advanced Radiation Sources and Applications = Nato Sci Ser Ii Math Advanced Radiation Sources and Applications = Nato. Sci. Ser. Ii. Math. Advanced Reliability Models and Maintenance Policies = Springer Ser Reliab Advanced Reliability Models and Maintenance Policies = Springer. Ser. Reliab. Advanced Research in Asian Economic Studies = Adv Res Asian Econ Advanced Research in Asian Economic Studies = Adv. Res. Asian Econ. Advanced Research in Computers and Communications in Education, Vol 1 = Fr Art Int Advanced Research in Computers and Communications in Education, Vol 1 = Fr. Art. Int. Advanced Research in Computers and Communications in Education, Vol 1 = Front Artif Intel Ap Advanced Research in Computers and Communications in Education, Vol 1 = Front. Artif. Intel. Ap. Advanced Research in Computers and Communications in Education, Vol 2 = Fr Art Int Advanced Research in Computers and Communications in Education, Vol 2 = Fr. Art. Int. Advanced Research in Computers and Communications in Education, Vol 2 = Front Artif Intel Ap Advanced Research in Computers and Communications in Education, Vol 2 = Front. Artif. Intel. Ap. Advanced Research in Physics and Engineering = Ma Comput Sci Eng Advanced Research in Physics and Engineering = Ma. Comput. Sci. Eng. Advanced Research in Physics and Engineering = Math Comput Sci Eng Advanced Research in Physics and Engineering = Math. Comput. Sci. Eng. Advanced Research On Automation, Communication, Architectonics and Materials, Pts 1 and 2 = Adv Mater Res-switz Advanced Research On Automation, Communication, Architectonics and Materials, Pts 1 and 2 = Adv. Mater. Res-switz. Advanced Research On Industry, Information Systems and Material Engineering, Pts 1-7 = Adv Mater Res-switz Advanced Research On Industry, Information Systems and Material Engineering, Pts 1-7 = Adv. Mater. Res-switz. Advanced Research On Information Science, Automation and Material System, Pts 1-6 = Adv Mater Res-switz Advanced Research On Information Science, Automation and Material System, Pts 1-6 = Adv. Mater. Res-switz. Advanced Robot Control = Lect Notes Contr Inf Advanced Robot Control = Lect. Notes. Contr. Inf. Advanced Robotics = Adv Robotics Advanced Robotics = Adv. Robotics Advanced robotics : the international journal of the Robotics Society of Japan = Adv Robot Advanced Robust and Nonparametric Methods in Efficiency Analysis: Methodology and Applications = Stud Product Effic Advanced Robust and Nonparametric Methods in Efficiency Analysis: Methodology and Applications = Stud. Product. Effic. Advanced Rubber Composites = Adv Polym Sci Advanced Rubber Composites = Adv. Polym. Sci. Advanced Science and Technology for Biological Decontamination of Sites Affected By Chemical and Radiological Nuclear Agents = Nato Sci S Ss Iv Ear Advanced Science and Technology for Biological Decontamination of Sites Affected By Chemical and Radiological Nuclear Agents = Nato. Sci. S. Ss. Iv. Ear. Advanced Science Letters = Adv Sci Lett Advanced Science Letters = Adv. Sci. Lett. Advanced Science Research Symposium 2009: Positron, Muon and Other Exotic Particle Beams for Materials and Atomic/molecular Sciences = J Phys Conf Ser Advanced Science Research Symposium 2009: Positron, Muon and Other Exotic Particle Beams for Materials and Atomic/molecular Sciences = J. Phys. Conf. Ser. Advanced Security Technologies in Networking = Nato Sc S Ss Iii C S Advanced Security Technologies in Networking = Nato. Sc. S. Ss. Iii. C. S. Advanced Semiconductor Epitaxial Growth Processes and Lateral and Vertical Fabrication = P Soc Photo-opt Ins Advanced Semiconductor Epitaxial Growth Processes and Lateral and Vertical Fabrication = P. Soc. Photo-opt. Ins. Advanced Semiconductor Manufacturing Conference and Workshop-proceedings = Asmc Proc Advanced Semiconductor Manufacturing Conference and Workshop-proceedings = Asmc. Proc. Advanced Semiconductor Manufacturing Conference and Workshop - Proceedings = Asmc Proc Advanced Semiconductor Manufacturing Conference and Workshop - Proceedings = Asmc. Proc. Advanced Sensor and Control-system Interface = P Soc Photo-opt Ins Advanced Sensor and Control-system Interface = P. Soc. Photo-opt. Ins. Advanced Sensors and Monitors for Process Industries and The Environment = P Soc Photo-opt Ins Advanced Sensors and Monitors for Process Industries and The Environment = P. Soc. Photo-opt. Ins. Advanced Sensor Systems and Applications Iii = P Soc Photo-opt Ins Advanced Sensor Systems and Applications Iii = P. Soc. Photo-opt. Ins. Advanced Sensor Systems and Applications Ii Pt 1and 2 = Proc Spie Advanced Sensor Systems and Applications Ii Pt 1and 2 = Proc. Spie. Advanced Sensor Systems and Applications Ii Pt 1and 2 = P Soc Photo-opt Ins Advanced Sensor Systems and Applications Ii Pt 1and 2 = P. Soc. Photo-opt. Ins. Advanced Sensor Systems and Applications Iv = Proc Spie Advanced Sensor Systems and Applications Iv = Proc. Spie. Advanced Sensor Systems and Applications Iv = P Soc Photo-opt Ins Advanced Sensor Systems and Applications Iv = P. Soc. Photo-opt. Ins. Advanced Sensor Systems and Applications = Proc Spie Advanced Sensor Systems and Applications = Proc. Spie. Advanced Sensor Systems and Applications = P Soc Photo-opt Ins Advanced Sensor Systems and Applications = P. Soc. Photo-opt. Ins. Advanced Sensor Technologies for Nondestructive Evaluation and Structural Health Monitoring Ii = P Soc Photo-opt Ins Advanced Sensor Technologies for Nondestructive Evaluation and Structural Health Monitoring Ii = P. Soc. Photo-opt. Ins. Advanced Sensor Technologies for Nondestructive Evaluation and Structural Health Monitoring = P Soc Photo-opt Ins Advanced Sensor Technologies for Nondestructive Evaluation and Structural Health Monitoring = P. Soc. Photo-opt. Ins. Advanced Separation Techniques for Nuclear Fuel Reprocessing and Radioactive Waste Treatment = Woodhead Publ Ser En Advanced Separation Techniques for Nuclear Fuel Reprocessing and Radioactive Waste Treatment = Woodhead. Publ. Ser. En. Advanced Series in Biomechanics = Adv Ser Biomech Advanced Series in Biomechanics = Adv. Ser. Biomech. Advanced Series in Dynamical Systems = Adv S Dy Sy Advanced Series in Dynamical Systems = Adv. S. Dy. Sy. Advanced Series in Dynamical Systems = Adv. Ser. Dynam. Systems Advanced Series in Electrical and Computer Engineering = Adv. Ser. Electr. Comput. Engrg. Advanced Series in Management = Adv Ser Manag Advanced Series in Management = Adv. Ser. Manag. Advanced Series in Management = Adv Ser Manage Advanced Series in Management = Adv. Ser. Manage. Advanced Series in Mathematical Physics = Adv. Ser. Math. Phys. Advanced Series in Mathematical Science and Engineering = Adv. Ser. Math. Sci. Eng. Advanced Series in Neuroscience = Adv. Ser. Neurosci. Advanced Series in Nonlinear Dynamics = Adv. Ser. Nonlinear Dynam. Advanced Series On Ocean Engineering = Adv Ser Ocean Eng Advanced Series On Ocean Engineering = Adv. Ser. Ocean Eng. Advanced Series on Statistical Science & Applied Probability = Adv. Ser. Stat. Sci. Appl. Probab. Advanced Series on Theoretical Physical Science = Adv. Ser. Theoret. Phys. Sci. Advanced Si-based Ceramics and Composites = Key Eng Mat Advanced Si-based Ceramics and Composites = Key. Eng. Mat. Advanced Si-based Ceramics and Composites = Key Eng Mater Advanced Si-based Ceramics and Composites = Key. Eng. Mater. Advanced Sic/sic Ceramic Composites: Developments and Applications in Energy Systems = Ceram Trans Advanced Sic/sic Ceramic Composites: Developments and Applications in Energy Systems = Ceram. Trans. Advanced Signal Processing Algorithms, Architectures, and Implementations Iii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Iii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Ii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Ii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Iv = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Iv = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures,and Implementations Ix = Proc Spie Advanced Signal Processing Algorithms, Architectures,and Implementations Ix = Proc. Spie. Advanced Signal Processing Algorithms, Architectures,and Implementations Ix = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures,and Implementations Ix = P. Soc. Photo-opt. Ins. Advanced Signal-processing Algorithms, Architectures, and Implementations = P Soc Photo-opt Ins Advanced Signal-processing Algorithms, Architectures, and Implementations = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Viii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Viii = P. Soc. Photo-opt. Ins. Advanced Signal Processing: Algorithms, Architectures, and Implementations Vii = P Soc Photo-opt Ins Advanced Signal Processing: Algorithms, Architectures, and Implementations Vii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Vi = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Vi = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xiii = Proc Spie Advanced Signal Processing Algorithms, Architectures, and Implementations Xiii = Proc. Spie. Advanced Signal Processing Algorithms, Architectures, and Implementations Xiii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xiii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xi = Proc Spie Advanced Signal Processing Algorithms, Architectures, and Implementations Xi = Proc. Spie. Advanced Signal Processing Algorithms, Architectures, and Implementations Xi = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xi = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xiv = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xiv = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations X = Proc Spie Advanced Signal Processing Algorithms, Architectures, and Implementations X = Proc. Spie. Advanced Signal Processing Algorithms, Architectures, and Implementations X = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations X = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xviii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xviii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xvii = Proc Spie Advanced Signal Processing Algorithms, Architectures, and Implementations Xvii = Proc. Spie. Advanced Signal Processing Algorithms, Architectures, and Implementations Xvii = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xvii = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms, Architectures, and Implementations Xvi = Proc Spie Advanced Signal Processing Algorithms, Architectures, and Implementations Xvi = Proc. Spie. Advanced Signal Processing Algorithms, Architectures, and Implementations Xvi = P Soc Photo-opt Ins Advanced Signal Processing Algorithms, Architectures, and Implementations Xvi = P. Soc. Photo-opt. Ins. Advanced Signal Processing Algorithms = P Soc Photo-opt Ins Advanced Signal Processing Algorithms = P. Soc. Photo-opt. Ins. Advanced Signal Processing for Communication Systems = Kluwer Int Ser Eng C Advanced Signal Processing for Communication Systems = Kluwer. Int. Ser. Eng. C. Advanced Software and Control for Astronomy Ii, Pts 1 & 2 = Proc Spie Advanced Software and Control for Astronomy Ii, Pts 1 & 2 = Proc. Spie. Advanced Software and Control for Astronomy Ii, Pts 1 & 2 = P Soc Photo-opt Ins Advanced Software and Control for Astronomy Ii, Pts 1 & 2 = P. Soc. Photo-opt. Ins. Advanced Software and Control for Astronomy = Proc Spie Advanced Software and Control for Astronomy = Proc. Spie. Advanced Software and Control for Astronomy = P Soc Photo-opt Ins Advanced Software and Control for Astronomy = P. Soc. Photo-opt. Ins. Advanced Software, Control, and Communication Systems for Astronomy = Proc Spie Advanced Software, Control, and Communication Systems for Astronomy = Proc. Spie. Advanced Software, Control, and Communication Systems for Astronomy = P Soc Photo-opt Ins Advanced Software, Control, and Communication Systems for Astronomy = P. Soc. Photo-opt. Ins. Advanced Software Engineering: Expanding The Frontiers of Software Technology = Int Fed Info Proc Advanced Software Engineering: Expanding The Frontiers of Software Technology = Int. Fed. Info. Proc. Advanced Solar Polarimetry: Theory, Observation, and Instrumenta Tion = Astr Soc P Advanced Solar Polarimetry: Theory, Observation, and Instrumenta Tion = Astr. Soc. P. Advanced Solid State Chemistry = Mater Sci Monog Advanced Solid State Chemistry = Mater. Sci. Monog. Advanced Solid-state Lasers = Osa Trends Opt Photo Advanced Solid-state Lasers = Osa. Trends. Opt. Photo. Advanced Solid-state Lasers, Proceedings = Osa Trends Opt Photo Advanced Solid-state Lasers, Proceedings = Osa. Trends. Opt. Photo. Advanced Solid State Lasers, Proceedings = Osa Trends Opt Photo Advanced Solid State Lasers, Proceedings = Osa. Trends. Opt. Photo. Advanced Steel Construction = Adv Steel Constr Advanced Steel Construction = Adv. Steel Constr. Advanced Strategies in Control Systems With Input and Output Constraints = Lect Notes Contr Inf Advanced Strategies in Control Systems With Input and Output Constraints = Lect. Notes. Contr. Inf. Advanced Structural and Functional Materials Design, Proceedings = Mater Sci Forum Advanced Structural and Functional Materials Design, Proceedings = Mater. Sci. Forum. Advanced Structural and Functional Materials for Protection = Solid State Phenomen Advanced Structural and Functional Materials for Protection = Solid. State. Phenomen. Advanced Structural and Functional Materials for Protection = Sol St Phen Advanced Structural and Functional Materials for Protection = Sol. St. Phen. Advanced Structural Materials Iii = Mater Sci Forum Advanced Structural Materials Iii = Mater. Sci. Forum. Advanced Structural Materials Ii = Mater Sci Forum Advanced Structural Materials Ii = Mater. Sci. Forum. Advanced Structural Materials = Mater Sci Forum Advanced Structural Materials = Mater. Sci. Forum. Advanced Structured Materials = Adv Struct Mat Advanced Structured Materials = Adv. Struct. Mat. Advanced Studies in Biometrics = Lect Notes Comput Sc Advanced Studies in Biometrics = Lect. Notes. Comput. Sc. Advanced Studies in Music Education Series = Adv Stud Music Ed S Advanced Studies in Music Education Series = Adv. Stud. Music Ed. S. Advanced Studies in Pure Mathematics = Adv. Stud. Pure Math. Advanced Studies in Pure Mathematics = Adv Stu P M Advanced Studies in Pure Mathematics = Adv. Stu. P. M. Advanced Studies in Theoretical and Applied Econometrics = Adv St Theo Advanced Studies in Theoretical and Applied Econometrics = Adv. St. Theo. Advanced Studies in Theoretical and Applied Econometrics = Adv Stud Theor Appl Advanced Studies in Theoretical and Applied Econometrics = Adv. Stud. Theor. Appl. Advanced Studies in Theoretical Physics = Adv. Stud. Theor. Phys. Advanced Summer School in Physics 2005 = Aip Conf Proc Advanced Summer School in Physics 2005 = Aip. Conf. Proc. Advanced Summer School in Physics 2006 = Aip Conf Proc Advanced Summer School in Physics 2006 = Aip. Conf. Proc. Advanced Summer School in Physics 2007 = Aip Conf Proc Advanced Summer School in Physics 2007 = Aip. Conf. Proc. Advanced Summer School in Physics 2009: Frontiers in Contemporary Physics, 5th Edition = Aip Conf Proc Advanced Summer School in Physics 2009: Frontiers in Contemporary Physics, 5th Edition = Aip. Conf. Proc. Advanced Symbolic Analysis for Compilers = Lect Notes Comput Sc Advanced Symbolic Analysis for Compilers = Lect. Notes. Comput. Sc. Advanced Synthesis and Catalysis = Adv. Synth. Catal. Advanced Synthesis and Processing Technology for Materials = Adv Mat Res Advanced Synthesis and Processing Technology for Materials = Adv. Mat. Res. Advanced Synthesis & Catalysis = Adv Synth Catal Advanced Synthesis & Catalysis = Adv. Synth. Catal. Advanced System for Automatically Detecting Faults Occurring in Bearings = Eng Tools Tech Table Advanced System for Automatically Detecting Faults Occurring in Bearings = Eng. Tools. Tech. Table. Advanced Techniques for Clearance of Flight Control Laws = Lect Notes Contr Inf Advanced Techniques for Clearance of Flight Control Laws = Lect. Notes. Contr. Inf. Advanced Techniques for Integrated Circuit Processing Ii = P Soc Photo-opt Ins Advanced Techniques for Integrated Circuit Processing Ii = P. Soc. Photo-opt. Ins. Advanced Techniques for Integrated Circuit Processing = P Soc Photo-opt Ins Advanced Techniques for Integrated Circuit Processing = P. Soc. Photo-opt. Ins. Advanced Techniques for Materials Characterization = Mater Sci Found Advanced Techniques for Materials Characterization = Mater. Sci. Found. Advanced Techniques for Surface Engineering = Euro Mech M Advanced Techniques for Surface Engineering = Euro. Mech. M. Advanced Techniques in Web Intelligence - 1 = Stud Comput Intell Advanced Techniques in Web Intelligence - 1 = Stud. Comput. Intell. Advanced Technologies and Societal Change = Adv Technol Soc Ch Advanced Technologies and Societal Change = Adv. Technol. Soc. Ch. Advanced Technologies Based On Wave and Beam Generated Plasmas = Nato Asi 3 High Tech Advanced Technologies Based On Wave and Beam Generated Plasmas = Nato. Asi. 3. High. Tech. Advanced Technologies for Environmental Monitoring and Remediation = P Soc Photo-opt Ins Advanced Technologies for Environmental Monitoring and Remediation = P. Soc. Photo-opt. Ins. Advanced Technologies for Fluid-particle Systems = Aiche Sym S Advanced Technologies for Fluid-particle Systems = Aiche. Sym. S. Advanced Technologies in Earth Sciences = Adv Technol Earth Sc Advanced Technologies in Earth Sciences = Adv. Technol. Earth Sc. Advanced Technologies in Rehabilitation: Empowering Cognitive, Physical, Social and Communicative Skills Through Virtual Reality, Robots, Wearable Systems and Brain-computer Interfaces = Stud Health Technol Advanced Technologies in Rehabilitation: Empowering Cognitive, Physical, Social and Communicative Skills Through Virtual Reality, Robots, Wearable Systems and Brain-computer Interfaces = Stud. Health. Technol. Advanced Technologies in Research, Diagnosis and Treatment of Aids and in Oncology = Antibiot Chemother Advanced Technologies in Research, Diagnosis and Treatment of Aids and in Oncology = Antibiot. Chemother. Advanced Technology for Design and Fabrication of Composite Materials and Structures = Eng Appl Fr Advanced Technology for Design and Fabrication of Composite Materials and Structures = Eng. Appl. Fr. Advanced Technology Mmw, Radio, and Terahertz Telescopes = P Soc Photo-opt Ins Advanced Technology Mmw, Radio, and Terahertz Telescopes = P. Soc. Photo-opt. Ins. Advanced Technology Optical/ir Telescopes Vi = Proc Spie Advanced Technology Optical/ir Telescopes Vi = Proc. Spie. Advanced Technology Optical/ir Telescopes Vi = P Soc Photo-opt Ins Advanced Technology Optical/ir Telescopes Vi = P. Soc. Photo-opt. Ins. Advanced Technology Optical Telescopes Iv, Pts 1 and 2 = P Soc Photo-opt Ins Advanced Technology Optical Telescopes Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advanced Technology Optical Telescopes V = P Soc Photo-opt Ins Advanced Technology Optical Telescopes V = P. Soc. Photo-opt. Ins. Advanced Telescope and Instrumentation Control Software Ii = Proc Spie Advanced Telescope and Instrumentation Control Software Ii = Proc. Spie. Advanced Telescope and Instrumentation Control Software Ii = P Soc Photo-opt Ins Advanced Telescope and Instrumentation Control Software Ii = P. Soc. Photo-opt. Ins. Advanced Telescope and Instrumentation Control Software = P Soc Photo-opt Ins Advanced Telescope and Instrumentation Control Software = P. Soc. Photo-opt. Ins. Advanced Telescope Design, Fabrication, and Control = Proc Spie Advanced Telescope Design, Fabrication, and Control = Proc. Spie. Advanced Telescope Design, Fabrication, and Control = P Soc Photo-opt Ins Advanced Telescope Design, Fabrication, and Control = P. Soc. Photo-opt. Ins. Advanced Textbooks in Control and Signal Processing = Adv Txb Contr Sig Pr Advanced Textbooks in Control and Signal Processing = Adv. Txb. Contr. Sig. Pr. Advanced Textiles for Wound Care = Woodhead Publ Text Advanced Textiles for Wound Care = Woodhead. Publ. Text. Advanced Texts in Econometrics = Adv. Texts Econometrics Advanced Tomographic Imaging Methods for The Analysis of Materials = Mater Res Soc Symp P Advanced Tomographic Imaging Methods for The Analysis of Materials = Mater. Res. Soc. Symp. P. Advanced Topics in Artificial Intelligence = Lect Notes Artif Int Advanced Topics in Artificial Intelligence = Lect. Notes. Artif. Int. Advanced Topics in Control Systems Theory = Lect Notes Contr Inf Advanced Topics in Control Systems Theory = Lect. Notes. Contr. Inf. Advanced Topics in Exception Handling Techniques = Lect Notes Comput Sc Advanced Topics in Exception Handling Techniques = Lect. Notes. Comput. Sc. Advanced Topics in Information Retrieval = Inform Retrieval Ser Advanced Topics in Information Retrieval = Inform. Retrieval Ser. Advanced Topics in Mathematics = Adv. Top. Math. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iii = Proc Spie Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iii = Proc. Spie. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iii = P Soc Photo-opt Ins Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iii = P. Soc. Photo-opt. Ins. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iv = Proc Spie Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iv = Proc. Spie. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iv = P Soc Photo-opt Ins Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies Iv = P. Soc. Photo-opt. Ins. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies = Proc Spie Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies = Proc. Spie. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies = P Soc Photo-opt Ins Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies = P. Soc. Photo-opt. Ins. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies V = Proc Spie Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies V = Proc. Spie. Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies V = P Soc Photo-opt Ins Advanced Topics in Optoelectronics, Microelectronics, and Nanotechnologies V = P. Soc. Photo-opt. Ins. Advanced Topics in Science and Technology in China = Adv Top Sci Tech Chi Advanced Topics in Science and Technology in China = Adv. Top. Sci. Tech. Chi. Advanced Topics in System and Signal Theory: A Mathematical Approach = Found Signal Process Advanced Topics in System and Signal Theory: A Mathematical Approach = Found. Signal Process. Advanced Topics in Theoretical Chemical Physics = Prog T Chem Advanced Topics in Theoretical Chemical Physics = Prog. T. Chem. Advanced Topics in Theoretical Chemical Physics = Prog Theor Chem Phys Advanced Topics in Theoretical Chemical Physics = Prog. Theor. Chem. Phys. Advanced Topics On Evolutionary Computing = Artif Int Ser Wseas Advanced Topics On Evolutionary Computing = Artif. Int. Ser. Wseas. Advanced Topics On Water Resources, Hydraulics and Hydrology = Ma Comput Sci Eng Advanced Topics On Water Resources, Hydraulics and Hydrology = Ma. Comput. Sci. Eng. Advanced Topics On Water Resources, Hydraulics and Hydrology = Math Comput Sci Eng Advanced Topics On Water Resources, Hydraulics and Hydrology = Math. Comput. Sci. Eng. Advanced Traffic Management Systems and Automated Highway Systems 2000 = Transport Res Rec Advanced Traffic Management Systems and Automated Highway Systems 2000 = Transport. Res. Rec. Advanced Traffic Management Systems and Vehicle-highway Automation 2001 = Transport Res Rec Advanced Traffic Management Systems and Vehicle-highway Automation 2001 = Transport. Res. Rec. Advanced Traffic Management Systems for Freeways and Traffic Signal Systems 2002 = Transport Res Rec Advanced Traffic Management Systems for Freeways and Traffic Signal Systems 2002 = Transport. Res. Rec. Advanced Traveler Information Systems, Warning Systems and Intelligent Vehicles = Transport Res Rec Advanced Traveler Information Systems, Warning Systems and Intelligent Vehicles = Transport. Res. Rec. Advanced Water Supply and Wastewater Treatment: A Road to Safer Society and Environment = Nato Sci Peace Secur Advanced Water Supply and Wastewater Treatment: A Road to Safer Society and Environment = Nato. Sci. Peace. Secur. Advanced Wavefront Control: Methods, Devices, and Applications Ii = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. Advanced Wavefront Control: Methods, Devices, and Applications Iv = Proc Spie Advanced Wavefront Control: Methods, Devices, and Applications Iv = Proc. Spie. Advanced Wavefront Control: Methods, Devices, and Applications Iv = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications Iv = P. Soc. Photo-opt. Ins. Advanced Wavefront Control: Methods, Devices, and Applications = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications = P. Soc. Photo-opt. Ins. Advanced Wavefront Control: Methods, Devices, and Applications Viii = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications Viii = P. Soc. Photo-opt. Ins. Advanced Wavefront Control: Methods, Devices, and Applications Vi = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications Vi = P. Soc. Photo-opt. Ins. Advanced Wavefront Control: Methods, Devices, and Applications V = P Soc Photo-opt Ins Advanced Wavefront Control: Methods, Devices, and Applications V = P. Soc. Photo-opt. Ins. Advanced Web and Network Technologies, and Applications = Lect Notes Comput Sc Advanced Web and Network Technologies, and Applications = Lect. Notes. Comput. Sc. Advanced Web and Network Technologies, and Applications, Proceedings = Lect Notes Comput Sc Advanced Web and Network Technologies, and Applications, Proceedings = Lect. Notes. Comput. Sc. Advanced Web Technologies and Applications = Lect Notes Comput Sc Advanced Web Technologies and Applications = Lect. Notes. Comput. Sc. Advanced Welding and Micro Joining / Packaging for The 21st Century = Mater Sci Forum Advanced Welding and Micro Joining / Packaging for The 21st Century = Mater. Sci. Forum. Advanced Wired and Wireless Networks = Mu Sys Appl Advanced Wired and Wireless Networks = Mu. Sys. Appl. Advanced X-ray/euv Radiation Sources and Applications = P Soc Photo-opt Ins Advanced X-ray/euv Radiation Sources and Applications = P. Soc. Photo-opt. Ins. Advanced Zeolite Science and Applications = Stud Surf Sci Catal Advanced Zeolite Science and Applications = Stud. Surf. Sci. Catal. Advance for nurse practitioners = Adv Nurse Pract Advance for Nurse Practitioners = Adv. Nurse Pract. Advance in Ecological Environment Functional Materials and Ion Industry = Adv Mater Res-switz Advance in Ecological Environment Functional Materials and Ion Industry = Adv. Mater. Res-switz. Advance in Ecological Environment Functional Materials and Ion Industry = Adv Mat Res Advance in Ecological Environment Functional Materials and Ion Industry = Adv. Mat. Res. Advance in Ecological Environment Functional Materials and Ion Industry Ii = Adv Mater Res-switz Advance in Ecological Environment Functional Materials and Ion Industry Ii = Adv. Mater. Res-switz. Advancement of Assistive Technology = Assist Technol Res S Advancement of Assistive Technology = Assist. Technol. Res. S. Advancement of Assistive Technology = Assist Techn Res Ser Advancement of Assistive Technology = Assist. Techn. Res. Ser. Advancement of Intelligent Production = Jspe Publ Ser Advancement of Intelligent Production = Jspe. Publ. Ser. Advancement of science = Adv Sci Advancement of Science = Adv Sci Advancement of Science = Adv. Sci. Advancements in Adaptive Optics, Pts 1-3 = Proc Spie Advancements in Adaptive Optics, Pts 1-3 = Proc. Spie. Advancements in Adaptive Optics, Pts 1-3 = P Soc Photo-opt Ins Advancements in Adaptive Optics, Pts 1-3 = P. Soc. Photo-opt. Ins. Advancements in Electric Machines = Power Syst Advancements in Electric Machines = Power. Syst. Advancements in Marine Structures = Proc Monogr Eng Wate Advancements in Marine Structures = Proc. Monogr. Eng. Wate. Advancements in The Scientific Study of Combative Sports = Sports Athl Prep Per Advancements in The Scientific Study of Combative Sports = Sports Athl. Prep. Per. Advances and Applications in Radiation Protection and Shielding = Adv Appl Rad Protect Advances and Applications in Radiation Protection and Shielding = Adv. Appl. Rad. Protect. Advances and Applications in The Metallography and Characterization of Materials and Microelectronic Components = Microstr Sc Advances and Applications in The Metallography and Characterization of Materials and Microelectronic Components = Microstr. Sc. Advances and Challenges in Chemical Mechanical Planarization = Mater Res Soc Symp P Advances and Challenges in Chemical Mechanical Planarization = Mater. Res. Soc. Symp. P. Advances and Continuing Education in Medicine = For For Med Advances and Continuing Education in Medicine = For. For. Med. Advances and Continuing Education in Medicine, Vol 18 (1994/95) = For For Med Advances and Continuing Education in Medicine, Vol 18 (1994/95) = For. For. Med. Advances and Continuing Education in Medicine, Vol 19 (1995/96) = For For Med Advances and Continuing Education in Medicine, Vol 19 (1995/96) = For. For. Med. Advances and Continuing Education in Medicine, Vol 20, (1996/97) = For For Med Advances and Continuing Education in Medicine, Vol 20, (1996/97) = For. For. Med. Advances and Continuing Education in Medicine, Vol 25 (2001/2002) = For For Med Advances and Continuing Education in Medicine, Vol 25 (2001/2002) = For. For. Med. Advances and Issues in Snow-removal and Ice-control Technology = Transport Res Rec Advances and Issues in Snow-removal and Ice-control Technology = Transport. Res. Rec. Advances and Technical Standards in Neurosurgery = Adv Tech Stand Neuro Advances and Technical Standards in Neurosurgery = Adv. Tech. Stand. Neuro. Advances and technical standards in neurosurgery = Adv Tech Stand Neurosurg Advances and Technical Standards in Neurosurgery = Adv. Tech. Stand. Neurosurg. Advances and Technical Standards In Neurosurgery=Adv Tech Stand Neurosurg;; Advances and Technical Standards in Neurosurgery, Vol 32 = Adv Tech Stand Neuro Advances and Technical Standards in Neurosurgery, Vol 32 = Adv. Tech. Stand. Neuro. Advances and Technical Standards in Neurosurgery, Vol 33 = Adv Tech Stand Neuro Advances and Technical Standards in Neurosurgery, Vol 33 = Adv. Tech. Stand. Neuro. Advances and Technical Standards in Neurosurgery, Vol 34 = Adv Tech Stand Neuro Advances and Technical Standards in Neurosurgery, Vol 34 = Adv. Tech. Stand. Neuro. Advances and Technical Standards in Neurosurgery, Vol 36 = Adv Tech Stand Neuro Advances and Technical Standards in Neurosurgery, Vol 36 = Adv. Tech. Stand. Neuro. Advances Ecoometrics, Vol 15, 2000 = Adv Econometrics Advances Ecoometrics, Vol 15, 2000 = Adv. Econometrics. Advance Signal Processing: Algorithms, Architectures, and Implementations V = P Soc Photo-opt Ins Advance Signal Processing: Algorithms, Architectures, and Implementations V = P. Soc. Photo-opt. Ins. Advances in 3d Geoinformation Systems = Lec Not Geo Carto Advances in 3d Geoinformation Systems = Lec. Not. Geo. Carto. Advances in abortion care / IPAS = Adv Abort Care Advances in Abrasive Processes = Key Eng Mat Advances in Abrasive Processes = Key. Eng. Mat. Advances in Abrasive Processes = Key Eng Mater Advances in Abrasive Processes = Key. Eng. Mater. Advances in Abrasive Technology Viii = Key Eng Mat Advances in Abrasive Technology Viii = Key. Eng. Mat. Advances in Abrasive Technology Viii = Key Eng Mater Advances in Abrasive Technology Viii = Key. Eng. Mater. Advances in Abrasive Technology Vi = Key Eng Mat Advances in Abrasive Technology Vi = Key. Eng. Mat. Advances in Abrasive Technology Vi = Key Eng Mater Advances in Abrasive Technology Vi = Key. Eng. Mater. Advances in Abrasive Technology V = Key Eng Mat Advances in Abrasive Technology V = Key. Eng. Mat. Advances in Abrasive Technology V = Key Eng Mater Advances in Abrasive Technology V = Key. Eng. Mater. Advances in Abrasive Technology Xii = Adv Mater Res-switz Advances in Abrasive Technology Xii = Adv. Mater. Res-switz. Advances in Abrasive Technology Xii = Adv Mat Res Advances in Abrasive Technology Xii = Adv. Mat. Res. Advances in Abrasive Technology Xiii = Adv Mater Res-switz Advances in Abrasive Technology Xiii = Adv. Mater. Res-switz. Advances in Abrasive Technology Xi = Key Eng Mat Advances in Abrasive Technology Xi = Key. Eng. Mat. Advances in Abrasive Technology Xi = Key Eng Mater Advances in Abrasive Technology Xi = Key. Eng. Mater. Advances in Accounting Behavioral Research = Adv Acct Beh Res Advances in Accounting Behavioral Research = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 11 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 11 = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 12 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 12 = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 6 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 6 = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 7 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 7 = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 8 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 8 = Adv. Acct. Beh. Res. Advances in Accounting Behavioral Research, Vol 9 = Adv Acct Beh Res Advances in Accounting Behavioral Research, Vol 9 = Adv. Acct. Beh. Res. Advances in Accounting Education-teaching and Curriculum Innovations = Adv Acc Educ-teach Advances in Accounting Education-teaching and Curriculum Innovations = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 10 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 10 = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 5 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 5 = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 6 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 6 = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 7 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 7 = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 8 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 8 = Adv. Acc. Educ-teach. Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 9 = Adv Acc Educ-teach Advances in Accounting Education: Teaching and Curriculum Innovations, Vol 9 = Adv. Acc. Educ-teach. Advances in Accounting Information Systems = Adv Acc Inform Syst Advances in Accounting Information Systems = Adv. Acc. Inform. Syst. Advances in Accounting Information Systems, Vol 4, 1996 = Adv Acc Inform Syst Advances in Accounting Information Systems, Vol 4, 1996 = Adv. Acc. Inform. Syst. Advances in Accounting Information Systems, Vol 5 - 1997 = Adv Acc Inform Syst Advances in Accounting Information Systems, Vol 5 - 1997 = Adv. Acc. Inform. Syst. Advances in Adaptive Optics Ii, Prs 1-3 = Proc Spie Advances in Adaptive Optics Ii, Prs 1-3 = Proc. Spie. Advances in Adaptive Optics Ii, Prs 1-3 = P Soc Photo-opt Ins Advances in Adaptive Optics Ii, Prs 1-3 = P. Soc. Photo-opt. Ins. Advances in Additives for Water-based Coatings = Roy Soc Ch Advances in Additives for Water-based Coatings = Roy. Soc. Ch. Advances in Adhesives, Adhesion Science, and Testing = Am Soc Test Mater Advances in Adhesives, Adhesion Science, and Testing = Am. Soc. Test. Mater. Advances in Ad Hoc Networking = Int Fed Info Proc Advances in Ad Hoc Networking = Int. Fed. Info. Proc. Advances in adolescent mental health = Adv Adolesc Mental Health Advances in Adrenergic Receptor Biology = Curr Top Membr Advances in Adrenergic Receptor Biology = Curr. Top. Membr. Advances in Adsorption Technology = Chem Res Appl-nova Advances in Adsorption Technology = Chem. Res. Appl-nova. Advances in African Linguistics = Tr Afr Ling Advances in African Linguistics = Tr. Afr. Ling. Advances in Agent-based Complex Automated Negotiations = Stud Comput Intell Advances in Agent-based Complex Automated Negotiations = Stud. Comput. Intell. Advances in Agent Communication = Lect Notes Artif Int Advances in Agent Communication = Lect. Notes. Artif. Int. Advances in Agile Manufacturing = Adv Des Man Advances in Agile Manufacturing = Adv. Des. Man. Advances in Agricultural Biotechnology = Adv Agr Bio Advances in Agricultural Biotechnology = Adv. Agr. Bio. Advances in Agroforestry = Adv Agrofor Advances in Agroforestry = Adv. Agrofor. Advances in Agronomy = Adv Agron Advances in Agronomy = Adv. Agron. Advances in Agronomy, Vol 100 = Adv Agron Advances in Agronomy, Vol 100 = Adv. Agron. Advances in Agronomy, Vol 101 = Adv Agron Advances in Agronomy, Vol 101 = Adv. Agron. Advances in Agronomy, Vol 102 = Adv Agron Advances in Agronomy, Vol 102 = Adv. Agron. Advances in Agronomy, Vol 103 = Adv Agron Advances in Agronomy, Vol 103 = Adv. Agron. Advances in Agronomy, Vol 105 = Adv Agron Advances in Agronomy, Vol 105 = Adv. Agron. Advances in Agronomy, Vol 106 = Adv Agron Advances in Agronomy, Vol 106 = Adv. Agron. Advances in Agronomy, Vol 107 = Adv Agron Advances in Agronomy, Vol 107 = Adv. Agron. Advances in Agronomy, Vol 108 = Adv Agron Advances in Agronomy, Vol 108 = Adv. Agron. Advances in Agronomy, Vol 109 = Adv Agron Advances in Agronomy, Vol 109 = Adv. Agron. Advances in Agronomy, Vol 110 = Adv Agron Advances in Agronomy, Vol 110 = Adv. Agron. Advances in Agronomy, Vol 111 = Adv Agron Advances in Agronomy, Vol 111 = Adv. Agron. Advances in Agronomy, Vol 112 = Adv Agron Advances in Agronomy, Vol 112 = Adv. Agron. Advances in Agronomy, Vol 49 = Adv Agron Advances in Agronomy, Vol 49 = Adv. Agron. Advances in Agronomy, Vol 50 = Adv Agron Advances in Agronomy, Vol 50 = Adv. Agron. Advances in Agronomy, Vol 51 = Adv Agron Advances in Agronomy, Vol 51 = Adv. Agron. Advances in Agronomy, Vol 52 = Adv Agron Advances in Agronomy, Vol 52 = Adv. Agron. Advances in Agronomy, Vol 53 = Adv Agron Advances in Agronomy, Vol 53 = Adv. Agron. Advances in Agronomy, Vol 54 = Adv Agron Advances in Agronomy, Vol 54 = Adv. Agron. Advances in Agronomy, Vol 55 = Adv Agron Advances in Agronomy, Vol 55 = Adv. Agron. Advances in Agronomy, Vol 56 = Adv Agron Advances in Agronomy, Vol 56 = Adv. Agron. Advances in Agronomy, Vol 57 = Adv Agron Advances in Agronomy, Vol 57 = Adv. Agron. Advances in Agronomy, Vol 58 = Adv Agron Advances in Agronomy, Vol 58 = Adv. Agron. Advances in Agronomy, Vol 59 = Adv Agron Advances in Agronomy, Vol 59 = Adv. Agron. Advances in Agronomy, Vol 60 = Adv Agron Advances in Agronomy, Vol 60 = Adv. Agron. Advances in Agronomy, Vol 61 = Adv Agron Advances in Agronomy, Vol 61 = Adv. Agron. Advances in Agronomy, Vol 62 = Adv Agron Advances in Agronomy, Vol 62 = Adv. Agron. Advances in Agronomy, Vol 63 = Adv Agron Advances in Agronomy, Vol 63 = Adv. Agron. Advances in Agronomy, Vol 64 = Adv Agron Advances in Agronomy, Vol 64 = Adv. Agron. Advances in Agronomy, Vol 65 = Adv Agron Advances in Agronomy, Vol 65 = Adv. Agron. Advances in Agronomy, Vol 66 = Adv Agron Advances in Agronomy, Vol 66 = Adv. Agron. Advances in Agronomy, Vol 67 = Adv Agron Advances in Agronomy, Vol 67 = Adv. Agron. Advances in Agronomy, Vol 68 = Adv Agron Advances in Agronomy, Vol 68 = Adv. Agron. Advances in Agronomy, Vol 69 = Adv Agron Advances in Agronomy, Vol 69 = Adv. Agron. Advances in Agronomy, Vol 70 = Adv Agron Advances in Agronomy, Vol 70 = Adv. Agron. Advances in Agronomy, Vol 71 = Adv Agron Advances in Agronomy, Vol 71 = Adv. Agron. Advances in Agronomy, Vol 72 = Adv Agron Advances in Agronomy, Vol 72 = Adv. Agron. Advances in Agronomy, Vol 73 = Adv Agron Advances in Agronomy, Vol 73 = Adv. Agron. Advances in Agronomy, Vol 74 = Adv Agron Advances in Agronomy, Vol 74 = Adv. Agron. Advances in Agronomy, Vol 75 = Adv Agron Advances in Agronomy, Vol 75 = Adv. Agron. Advances in Agronomy, Vol 76 = Adv Agron Advances in Agronomy, Vol 76 = Adv. Agron. Advances in Agronomy, Vol 77 = Adv Agron Advances in Agronomy, Vol 77 = Adv. Agron. Advances in Agronomy, Vol 78 = Adv Agron Advances in Agronomy, Vol 78 = Adv. Agron. Advances in Agronomy, Vol 79 = Adv Agron Advances in Agronomy, Vol 79 = Adv. Agron. Advances in Agronomy, Vol 80 = Adv Agron Advances in Agronomy, Vol 80 = Adv. Agron. Advances in Agronomy, Vol 81 = Adv Agron Advances in Agronomy, Vol 81 = Adv. Agron. Advances in Agronomy, Vol 82 = Adv Agron Advances in Agronomy, Vol 82 = Adv. Agron. Advances in Agronomy, Vol 83 = Adv Agron Advances in Agronomy, Vol 83 = Adv. Agron. Advances in Agronomy, Vol 84 = Adv Agron Advances in Agronomy, Vol 84 = Adv. Agron. Advances in Agronomy, Vol 85 = Adv Agron Advances in Agronomy, Vol 85 = Adv. Agron. Advances in Agronomy, Vol 87 = Adv Agron Advances in Agronomy, Vol 87 = Adv. Agron. Advances in Agronomy, Vol 88 = Adv Agron Advances in Agronomy, Vol 88 = Adv. Agron. Advances in Agronomy, Vol 89 = Adv Agron Advances in Agronomy, Vol 89 = Adv. Agron. Advances in Agronomy, Vol 90 = Adv Agron Advances in Agronomy, Vol 90 = Adv. Agron. Advances in Agronomy, Vol 91 = Adv Agron Advances in Agronomy, Vol 91 = Adv. Agron. Advances in Agronomy, Vol 92 = Adv Agron Advances in Agronomy, Vol 92 = Adv. Agron. Advances in Agronomy, Vol 93 = Adv Agron Advances in Agronomy, Vol 93 = Adv. Agron. Advances in Agronomy, Vol 94 = Adv Agron Advances in Agronomy, Vol 94 = Adv. Agron. Advances in Agronomy, Vol 95 = Adv Agron Advances in Agronomy, Vol 95 = Adv. Agron. Advances in Agronomy, Vol 96 = Adv Agron Advances in Agronomy, Vol 96 = Adv. Agron. Advances in Agronomy, Vol 97 = Adv Agron Advances in Agronomy, Vol 97 = Adv. Agron. Advances in Agronomy, Vol 98 = Adv Agron Advances in Agronomy, Vol 98 = Adv. Agron. Advances in Agronomy, Vol 99 = Adv Agron Advances in Agronomy, Vol 99 = Adv. Agron. Advances in Agronomy, Volume 104 = Adv Agron Advances in Agronomy, Volume 104 = Adv. Agron. Advances in Agronomy, Volume 86 = Adv Agron Advances in Agronomy, Volume 86 = Adv. Agron. Advances in Ai and Simulation = Simul Series Advances in Ai and Simulation = Simul. Series. Advances in Air Pollution Modeling for Environmental Security = Nato Sci S Ss Iv Ear Advances in Air Pollution Modeling for Environmental Security = Nato. Sci. S. Ss. Iv. Ear. Advances in Air Pollution Series = Adv Air Pollut Ser Advances in Air Pollution Series = Adv. Air Pollut. Ser. Advances in Alcohol and Substance Abuse = Adv. Alcohol Subst. Abuse Advances in alcohol & substance abuse = Adv Alcohol Subst Abuse Advances in Algebraic Geometry Codes = Ser Coding Theory Cr Advances in Algebraic Geometry Codes = Ser. Coding. Theory. Cr. Advances in Alzheimer's and Parkinson's Disease: Insights, Progress, and Perspectives = Adv Behav Biol Advances in Alzheimer's and Parkinson's Disease: Insights, Progress, and Perspectives = Adv. Behav. Biol. Advances in Analysis and Geometry: New Developments Using Clifford Algebras = Trends Math Advances in Analysis and Geometry: New Developments Using Clifford Algebras = Trends. Math. Advances in Analytical Cellular Pathology = Int Congr Ser Advances in Analytical Cellular Pathology = Int. Congr. Ser. Advances in anatomic pathology = Adv Anat Pathol Advances in Anatomic Pathology = Adv Anat Pathol Advances in Anatomic Pathology = Adv. Anat. Pathol. Advances in Anatomy Embryology and Cell Biology = Adv Anat Embryol Cel Advances in Anatomy Embryology and Cell Biology = Adv. Anat. Embryol. Cel. Advances in anatomy, embryology, and cell biology = Adv Anat Embryol Cell Biol Advances in Anatomy, Embryology and Cell Biology = Adv. Anat. Embryol. Cell Biol. Advances In Anatomy, Embryology and Cell Biology=Adv Anat Embryol Cell Biol;; Advances in Angiosperm Paleobotany and Paleoclimatic Reconstruction = Cour For Sekenbg Advances in Angiosperm Paleobotany and Paleoclimatic Reconstruction = Cour. For. Sekenbg. Advances in Animal Biosciences = Adv. Anim. Biosci. Advances in Anti-aging Medicine = Adv Anti Aging Med Advances in Anti-aging Medicine = Adv. Anti. Aging. Med. Advances in Anti-aging Medicine, Vol 1 = Adv Anti Aging Med Advances in Anti-aging Medicine, Vol 1 = Adv. Anti. Aging. Med. Advances in Apparel Production = Woodhead Text Ser Advances in Apparel Production = Woodhead. Text. Ser. Advances in Applied Articial Intelligence, Proceedings = Lect Notes Comput Sc Advances in Applied Articial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Applied Artificial Intelligence, Proceedings = Lect Notes Comput Sc Advances in Applied Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Applied Bioremediation = Soil Biol Advances in Applied Bioremediation = Soil. Biol. Advances in Applied Biotechnology Series = Adv Ap Biot Advances in Applied Biotechnology Series = Adv. Ap. Biot. Advances in Applied Business Strategy = Adv Appl Bus Strateg Advances in Applied Business Strategy = Adv. Appl. Bus. Strateg. Advances in Applied Business Strategy, Vol 10 = Adv Appl Bus Strateg Advances in Applied Business Strategy, Vol 10 = Adv. Appl. Bus. Strateg. Advances in Applied Ceramics = Adv Appl Ceram Advances in Applied Ceramics = Adv. Appl. Ceram. Advances in Applied Clifford Algebras = Adv Appl Clifford Al Advances in Applied Clifford Algebras = Adv. Appl. Clifford Al. Advances in Applied Clifford Algebras = Adv. Appl. Clifford Algebras Advances in Applied Clifford Algebras (proc. Suppl.) = Adv Appl Cliff Algeb Advances in Applied Clifford Algebras (proc. Suppl.) = Adv. Appl. Cliff. Algeb. Advances in Applied Mathematics = Adv Appl Math Advances in Applied Mathematics = Adv. Appl. Math. Advances in Applied Mathematics = Adv. in Appl. Math. Advances in Applied Mathematics and Global Optimization = Adv Mech Math Advances in Applied Mathematics and Global Optimization = Adv. Mech. Math. Advances in Applied Mathematics and Mechanics = Adv Appl Math Mech Advances in Applied Mathematics and Mechanics = Adv. Appl. Math. Mech. Advances in Applied Mathematics, Systems, Communications and Computers = Ma Comput Sci Eng Advances in Applied Mathematics, Systems, Communications and Computers = Ma. Comput. Sci. Eng. Advances in Applied Mathematics, Systems, Communications and Computers = Math Comput Sci Eng Advances in Applied Mathematics, Systems, Communications and Computers = Math. Comput. Sci. Eng. Advances in Applied Mechanics = Adv Appl Mech Advances in Applied Mechanics = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 28 = Adv Appl Mech Advances in Applied Mechanics, Vol 28 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 29 = Adv Appl Mech Advances in Applied Mechanics, Vol 29 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 30 = Adv Appl Mech Advances in Applied Mechanics, Vol 30 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 32 = Adv Appl Mech Advances in Applied Mechanics, Vol 32 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 33 = Adv Appl Mech Advances in Applied Mechanics, Vol 33 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 34 = Adv Appl Mech Advances in Applied Mechanics, Vol 34 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 36 = Adv Appl Mech Advances in Applied Mechanics, Vol 36 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 37 = Adv Appl Mech Advances in Applied Mechanics, Vol 37 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 38 = Adv Appl Mech Advances in Applied Mechanics, Vol 38 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 39 = Adv Appl Mech Advances in Applied Mechanics, Vol 39 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 40 = Adv Appl Mech Advances in Applied Mechanics, Vol 40 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 41 = Adv Appl Mech Advances in Applied Mechanics, Vol 41 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 42 = Adv Appl Mech Advances in Applied Mechanics, Vol 42 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 43 = Adv Appl Mech Advances in Applied Mechanics, Vol 43 = Adv. Appl. Mech. Advances in Applied Mechanics, Vol 44 = Adv Appl Mech Advances in Applied Mechanics, Vol 44 = Adv. Appl. Mech. Advances in applied microbiology = Adv Appl Microbiol Advances in Applied Microbiology = Adv Appl Microbiol Advances in Applied Microbiology = Adv. Appl. Microbiol. Advances In Applied Microbiology=Adv Appl Microbiol;; Advances in Applied Microbiology, Vol 39 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 39 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 40 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 40 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 41 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 41 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 42 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 42 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 43 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 43 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 44 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 44 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 45 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 45 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 47 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 47 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 48 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 48 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 49 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 49 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 51 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 51 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 52 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 52 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 53 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 53 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 54 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 54 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 55 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 55 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 56 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 56 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 57 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 57 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 58 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 58 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 59 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 59 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 60 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 60 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 62 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 62 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 63 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 63 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 64 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 64 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 65 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 65 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 66 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 66 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 68 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 68 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 70 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 70 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 71 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 71 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 72 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 72 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 73 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 73 = Adv. Appl. Microbiol. Advances in Applied Microbiology, Vol 74 = Adv Appl Microbiol Advances in Applied Microbiology, Vol 74 = Adv. Appl. Microbiol. Advances in Applied Mircobiology, Vol 67 = Adv Appl Microbiol Advances in Applied Mircobiology, Vol 67 = Adv. Appl. Microbiol. Advances in Applied Probability = Adv Appl Probab Advances in Applied Probability = Adv. Appl. Probab. Advances in Applied Probability = Adv. in Appl. Probab. Advances in Applied Self-organizing Systems = Adv Inform Knowl Pro Advances in Applied Self-organizing Systems = Adv. Inform. Knowl. Pro. Advances in Applied Statistics = Adv. Appl. Statist. Advances in Archaeological Method and Theory = AMethTh Advances in Architecture Series = Adv Arc Ser Advances in Architecture Series = Adv. Arc. Ser. Advances in Arsenic Research = Acs Sym Ser Advances in Arsenic Research = Acs. Sym. Ser. Advances in Art and Urban Futures = Adv Art Urban Future Advances in Art and Urban Futures = Adv. Art Urban Future. Advances in Artifical Life, Proceedings = Lect Notes Artif Int Advances in Artifical Life, Proceedings = Lect. Notes. Artif. Int. Advances in Artificial Economics: The Economy As A Complex Dynamic System = Lect Notes Econ Math Advances in Artificial Economics: The Economy As A Complex Dynamic System = Lect. Notes. Econ. Math. Advances in Artificial Intelligence for Privacy Protection and Security = Intel Inform Syst Se Advances in Artificial Intelligence for Privacy Protection and Security = Intel. Inform. Syst. Se. Advances in Artificial Intelligence - Iberamia 2002, Proceedings = Lect Notes Artif Int Advances in Artificial Intelligence - Iberamia 2002, Proceedings = Lect. Notes. Artif. Int. Advances in Artificial Intelligence - Iberamia 2004 = Lect Notes Artif Int Advances in Artificial Intelligence - Iberamia 2004 = Lect. Notes. Artif. Int. Advances in Artificial Intelligence - Iberamia 2008, Proceedings = Lect Notes Comput Sc Advances in Artificial Intelligence - Iberamia 2008, Proceedings = Lect. Notes. Comput. Sc. Advances in Artificial Intelligence - Iberamia-sbia 2006, Proceedings = Lect Notes Comput Sc Advances in Artificial Intelligence - Iberamia-sbia 2006, Proceedings = Lect. Notes. Comput. Sc. Advances in Artificial Intelligence = Lect Notes Artif Int Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Advances in Artificial Intelligence = Lect Notes Comput Sc Advances in Artificial Intelligence = Lect. Notes. Comput. Sc. Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Advances in Artificial Intelligence, Proceedings = Lect Notes Comput Sc Advances in Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Artificial Intelligence Research : A Research Annual = Adv Art Int Advances in Artificial Intelligence Research : A Research Annual = Adv. Art. Int. Advances in Artificial Intelligence Research, Vol 1 = Adv Art Int Advances in Artificial Intelligence Research, Vol 1 = Adv. Art. Int. Advances in Artificial Intelligence - Sbia 2004 = Lect Notes Artif Int Advances in Artificial Intelligence - Sbia 2004 = Lect. Notes. Artif. Int. Advances in Artificial Intelligence - Sbia 2008, Proceedings = Lect Notes Artif Int Advances in Artificial Intelligence - Sbia 2008, Proceedings = Lect. Notes. Artif. Int. Advances in Artificial Life = Lect Notes Artif Int Advances in Artificial Life = Lect. Notes. Artif. Int. Advances in Artificial Life, Proceedings = Lect Notes Artif Int Advances in Artificial Life, Proceedings = Lect. Notes. Artif. Int. Advances in Artificial Reality and Tele-existence, Proceedings = Lect Notes Comput Sc Advances in Artificial Reality and Tele-existence, Proceedings = Lect. Notes. Comput. Sc. Advances in Asian Human-environmental Research = Adv Asian Hum-env Re Advances in Asian Human-environmental Research = Adv. Asian Hum-env. Re. Advances in Asthmology 1990 = Int Congr Ser Advances in Asthmology 1990 = Int. Congr. Ser. Advances in Astrobiology and Biogeophysics = Adv Astrobio Biogeop Advances in Astrobiology and Biogeophysics = Adv. Astrobio. Biogeop. Advances in Astrobiology and Biogeophysics = Adv Astrobiol Biogeo Advances in Astrobiology and Biogeophysics = Adv. Astrobiol. Biogeo. Advances in Astronomy: From The Big Bang to The Solar System = Roy Soc Ser Adv Sci Advances in Astronomy: From The Big Bang to The Solar System = Roy. Soc. Ser. Adv. Sci. Advances in Atmospheric Sciences = Adv Atmos Sci Advances in Atmospheric Sciences = Adv. Atmos. Sci. Advances in Atomic and Molecular Physics = Adv Atom Mol Phys Advances in Atomic and Molecular Physics = Adv. Atom. Mol. Phys. Advances in Atomic Molecular and Optical Physics = Adv. At. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics = Adv. At., Mol., Opt. Phys. Advances in Atomic Molecular and Optical Physics = Adv Atom Mol Opt Phy Advances in Atomic Molecular and Optical Physics = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular and Optical Physics <d> = Adv Atom Mol Opt <d> Advances in Atomic Molecular and Optical Physics <d> = Adv. Atom. Mol. Opt. <d> Advances in Atomic, Molecular, and Optical Physics, Vol 31 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 31 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 32 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 32 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 36 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 36 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 37 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 37 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular, and Optical Physics, Vol. 42 = Adv Atom Mol Opt Phy Advances in Atomic Molecular, and Optical Physics, Vol. 42 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 43 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 43 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 44 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 44 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 45 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 45 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 46 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 46 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 47 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 47 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 48 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 48 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular, and Optical Physics, Vol 49 = Adv Atom Mol Opt Phy Advances in Atomic Molecular, and Optical Physics, Vol 49 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 50 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 50 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular, and Optical Physics, Vol 51 = Adv Atom Mol Opt Phy Advances in Atomic Molecular, and Optical Physics, Vol 51 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular and Optical Physics, Vol 52 = Adv Atom Mol Opt Phy Advances in Atomic Molecular and Optical Physics, Vol 52 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular, and Optical Physics, Vol 53 = Adv Atom Mol Opt Phy Advances in Atomic Molecular, and Optical Physics, Vol 53 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic Molecular and Optical Physics, Vol 54 = Adv Atom Mol Opt Phy Advances in Atomic Molecular and Optical Physics, Vol 54 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 55 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 55 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 56 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 56 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 57 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 57 = Adv. Atom. Mol. Opt. Phy. Advances in Atomic, Molecular, and Optical Physics, Vol 58 = Adv Atom Mol Opt Phy Advances in Atomic, Molecular, and Optical Physics, Vol 58 = Adv. Atom. Mol. Opt. Phy. Advances in Audiology = Adv Audiol Advances in Audiology = Adv. Audiol. Advances in Auroral Physics = Adv Space Res Advances in Auroral Physics = Adv. Space. Res. Advances in Auroral Physics = Adv Space Res-series Advances in Auroral Physics = Adv. Space. Res-series. Advances in Austrian Economics = Adv Aus Eco Advances in Austrian Economics = Adv. Aus. Eco. Advances in Austrian Economics = Adv Austrian Econ Advances in Austrian Economics = Adv. Austrian Econ. Advances in Automotive Control 2001 = Ifac Work S Advances in Automotive Control 2001 = Ifac. Work. S. Advances in Automotive Control = Ifac Work S Advances in Automotive Control = Ifac. Work. S. Advances in Bacterial Paracrystalline Surface Layers = Nato Adv Sci Inst Se Advances in Bacterial Paracrystalline Surface Layers = Nato. Adv. Sci. Inst. Se. Advances in Bayesian Networks = Stud Fuzziness Soft Advances in Bayesian Networks = Stud. Fuzziness. Soft. Advances in Bayesian Networks = Stud Fuzz Soft Comp Advances in Bayesian Networks = Stud. Fuzz. Soft. Comp. Advances in behavioral biology = Adv Behav Biol Advances in Behavioral Biology = Adv Behav Biol Advances in Behavioral Biology = Adv. Behav. Biol. Advances in Behavioral Economics = Roundtable Ser Behav Advances in Behavioral Economics = Roundtable. Ser. Behav. Advances in Behavioral Pharmacology = Adv Behav Pharmacol Advances in Behavioral Pharmacology = Adv. Behav. Pharmacol. Advances in Behavioural Brain Science = Adv Behav Brain Sci Advances in Behavioural Brain Science = Adv. Behav. Brain Sci. Advances in Behaviour Research and Therapy = Adv Behav Res Ther Advances in Behaviour Research and Therapy = Adv. Behav. Res. Ther. Advances in Bem in Japan and Usa = T Engineer Advances in Bem in Japan and Usa = T. Engineer. Advances in Bioceramics and Biocomposites = Ceram Eng Sci Proc Advances in Bioceramics and Biocomposites = Ceram. Eng. Sci. Proc. Advances in Bioceramics and Biocomposites Ii = Ceram Eng Sci Proc Advances in Bioceramics and Biocomposites Ii = Ceram. Eng. Sci. Proc. Advances in Bioceramics and Biotechnologies = Ceram Trans Advances in Bioceramics and Biotechnologies = Ceram. Trans. Advances in Bioceramics and Porous Ceramics = Ceram Eng Sci Proc Advances in Bioceramics and Porous Ceramics = Ceram. Eng. Sci. Proc. Advances in Bioceramics and Porous Ceramics Ii = Ceram Eng Sci Proc Advances in Bioceramics and Porous Ceramics Ii = Ceram. Eng. Sci. Proc. Advances in Biochemical Engineering-biotechnology = Adv Biochem Eng Biot Advances in Biochemical Engineering-biotechnology = Adv. Biochem. Eng. Biot. Advances in Biochemical Engineering / Biotechnology = Adv Biochem Eng Biot Advances in Biochemical Engineering / Biotechnology = Adv. Biochem. Eng. Biot. Advances in biochemical engineering/biotechnology = Adv Biochem Eng Biotechnol Advances in Biochemical Engineering / Biotechnology = Adv. Biochem. Eng./Biotechnol. Advances in Biochemical Engineering/Biotechnology = Adv. Biochem. Eng. Biotechnol. Advances In Biochemical Engineering/Biotechnology=Adv Biochem Eng Biotechnol;; Advances in Biochemical Psychopharmacology = Adv Biochem Psychoph Advances in Biochemical Psychopharmacology = Adv. Biochem. Psychoph. Advances in biochemical psychopharmacology = Adv Biochem Psychopharmacol Advances in Biochemical Psychopharmacology = Adv. Biochem. Psychopharmacol. Advances In Biochemical Psychopharmacology=Adv Biochem Psychopharmacol;; Advances in Bioengineering = Bioeng Div Asme Advances in Bioengineering = Bioeng. Div. Asme. Advances in bioethics = Adv Bioeth Advances in Bioethics = Adv Bioethics Advances in Bioethics = Adv. Bioethics Advances in Bioethics, Vol 1 - 1996 = Adv Bioethics Advances in Bioethics, Vol 1 - 1996 = Adv. Bioethics. Advances in Bioinformatics = Adv Intel Soft Compu Advances in Bioinformatics = Adv. Intel. Soft. Compu. Advances in Bioinformatics and Computational Biology = Lect N Bioinformat Advances in Bioinformatics and Computational Biology = Lect. N. Bioinformat. Advances in Bioinformatics and Computational Biology, Proceedings = Lect N Bioinformat Advances in Bioinformatics and Computational Biology, Proceedings = Lect. N. Bioinformat. Advances in Bioinformatics and Computational Biology, Proceedings = Lect Notes Comput Sc Advances in Bioinformatics and Computational Biology, Proceedings = Lect. Notes. Comput. Sc. Advances in biological and medical physics = Adv Biol Med Phys Advances in Biological and Medical Physics = Adv. Biol. Med. Phys. Advances in Biologically Inspired Information Systems: Models, Methods, and Tools = Stud Comp Intell Advances in Biologically Inspired Information Systems: Models, Methods, and Tools = Stud. Comp. Intell. Advances in Biologically Inspired Information Systems: Models, Methods, and Tools = Stud Comput Intell Advances in Biologically Inspired Information Systems: Models, Methods, and Tools = Stud. Comput. Intell. Advances in Biological Psychiatry = Adv Biol P Advances in Biological Psychiatry = Adv. Biol. P. Advances in Biological Psychiatry = Adv Biol Psych-karg Advances in Biological Psychiatry = Adv. Biol. Psych-karg. Advances in Biology and Medicine = Adv Biol Med Advances in Biology and Medicine = Adv. Biol. Med. Advances in biology of skin = Adv Biol Skin Advances in Biology of Skin = Adv. Biol. Skin Advances in Biomaterials-uk = Adv Biomat Advances in Biomaterials-uk = Adv. Biomat. Advances in Biomedical and Biomimetic Materials = Ceram Trans Advances in Biomedical and Biomimetic Materials = Ceram. Trans. Advances in Biomedical Engineering = Adv Biomed Eng Advances in Biomedical Engineering = Adv. Biomed. Eng. Advances in Biomedical Engineering = Adv Biom Eng Advances in Biomedical Engineering = Adv. Biom. Eng. Advances in biomedical engineering and medical physics = Adv Biomed Eng Med Phys Advances in Biomedical Engineering and Medical Physics = Adv. Biomed. Eng. Med. Phys. Advances in Biomedical Research, Proceedings = Rec Adv Biol Biomed Advances in Biomedical Research, Proceedings = Rec. Adv. Biol. Biomed. Advances in Biometric Person Authentication, Proceedings = Lect Notes Comput Sc Advances in Biometric Person Authentication, Proceedings = Lect. Notes. Comput. Sc. Advances in Biometrics = Lect Notes Comput Sc Advances in Biometrics = Lect. Notes. Comput. Sc. Advances in Biometrics, Proceedings = Lect Notes Comput Sc Advances in Biometrics, Proceedings = Lect. Notes. Comput. Sc. Advances in Biomolecular Simulations = Aip Conf Proc Advances in Biomolecular Simulations = Aip. Conf. Proc. Advances in biophysics = Adv Biophys Advances in Biophysics = Adv Biophys Advances in Biophysics = Adv. Biophys. Advances In Biophysics=Adv Biophys;; Advances in Biophysics, Vol 30, 1994 = Adv Biophys Advances in Biophysics, Vol 30, 1994 = Adv. Biophys. Advances in Biophysics, Vol 31, 1995 = Adv Biophys Advances in Biophysics, Vol 31, 1995 = Adv. Biophys. Advances in Biophysics, Vol 32, 1996 = Adv Biophys Advances in Biophysics, Vol 32, 1996 = Adv. Biophys. Advances in Biophysics, Vol. 33, 1996 = Adv Biophys Advances in Biophysics, Vol. 33, 1996 = Adv. Biophys. Advances in Biophysics, Vol 34, 1997 = Adv Biophys Advances in Biophysics, Vol 34, 1997 = Adv. Biophys. Advances in Biophysics, Vol 35 1998 = Adv Biophys Advances in Biophysics, Vol 35 1998 = Adv. Biophys. Advances in Biophysics, Vol 36, 1999 = Adv Biophys Advances in Biophysics, Vol 36, 1999 = Adv. Biophys. Advances in Biophysics, Vol 37, 2003 = Adv Biophys Advances in Biophysics, Vol 37, 2003 = Adv. Biophys. Advances in biotechnological processes = Adv Biotechnol Processes Advances in Biotechnological Processes = Adv. Biotechnol. Processes Advances in Bladder Research = Adv Exp Med Biol Advances in Bladder Research = Adv. Exp. Med. Biol. Advances in Blended Learning = Lect Notes Comput Sc Advances in Blended Learning = Lect. Notes. Comput. Sc. Advances in Blood Disorders = Adv Blood Disord Advances in Blood Disorders = Adv. Blood Disord. Advances in botanical research = Adv Bot Res Advances in Botanical Research = Adv Bot Res Advances in Botanical Research = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 23 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 23 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 24 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 24 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 25 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 25 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 26 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 26 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 29 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 29 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 30 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 30 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 31 2000 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 31 2000 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 32 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 32 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 33 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 33 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 34 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 34 = Adv. Bot. Res. Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 41 = Adv Bot Res Advances in Botanical Research Incorporating Advances in Plant Pathology, Vol 41 = Adv. Bot. Res. Advances in Botanical Research: Incorporating Advances in Plant Pathology, Vol 44 = Adv Bot Res Advances in Botanical Research: Incorporating Advances in Plant Pathology, Vol 44 = Adv. Bot. Res. Advances in Botanical Research: Incorporating Advances in Plant Pathology, Vol 45 = Adv Bot Res Advances in Botanical Research: Incorporating Advances in Plant Pathology, Vol 45 = Adv. Bot. Res. Advances in Botanical Research: Oxidative Stress and Redox Regulation in Plants, Vol 52 = Adv Bot Res Advances in Botanical Research: Oxidative Stress and Redox Regulation in Plants, Vol 52 = Adv. Bot. Res. Advances in Botanical Research, Vol 19 = Adv Bot Res Advances in Botanical Research, Vol 19 = Adv. Bot. Res. Advances in Botanical Research, Vol 20 = Adv Bot Res Advances in Botanical Research, Vol 20 = Adv. Bot. Res. Advances in Botanical Research, Vol 21 = Adv Bot Res Advances in Botanical Research, Vol 21 = Adv. Bot. Res. Advances in Botanical Research, Vol 22 = Adv Bot Res Advances in Botanical Research, Vol 22 = Adv. Bot. Res. Advances in Botanical Research, Vol 27 = Adv Bot Res Advances in Botanical Research, Vol 27 = Adv. Bot. Res. Advances in Botanical Research, Vol 28 = Adv Bot Res Advances in Botanical Research, Vol 28 = Adv. Bot. Res. Advances in Botanical Research, Vol 35 = Adv Bot Res Advances in Botanical Research, Vol 35 = Adv. Bot. Res. Advances in Botanical Research, Vol 36 = Adv Bot Res Advances in Botanical Research, Vol 36 = Adv. Bot. Res. Advances in Botanical Research, Vol 37 = Adv Bot Res Advances in Botanical Research, Vol 37 = Adv. Bot. Res. Advances in Botanical Research, Vol 38 = Adv Bot Res Advances in Botanical Research, Vol 38 = Adv. Bot. Res. Advances in Botanical Research, Vol 40 = Adv Bot Res Advances in Botanical Research, Vol 40 = Adv. Bot. Res. Advances in Botanical Research, Vol 42 = Adv Bot Res Advances in Botanical Research, Vol 42 = Adv. Bot. Res. Advances in Botanical Research, Vol 43 = Adv Bot Res Advances in Botanical Research, Vol 43 = Adv. Bot. Res. Advances in Botanical Research, Vol 48 = Adv Bot Res Advances in Botanical Research, Vol 48 = Adv. Bot. Res. Advances in Botanical Research, Vol 49 = Adv Bot Res Advances in Botanical Research, Vol 49 = Adv. Bot. Res. Advances in Botanical Research, Vol 50 = Adv Bot Res Advances in Botanical Research, Vol 50 = Adv. Bot. Res. Advances in Botanical Research, Vol 53 = Adv Bot Res Advances in Botanical Research, Vol 53 = Adv. Bot. Res. Advances in Botanical Research, Vol 54 = Adv Bot Res Advances in Botanical Research, Vol 54 = Adv. Bot. Res. Advances in Botanical Research, Vol 55 = Adv Bot Res Advances in Botanical Research, Vol 55 = Adv. Bot. Res. Advances in Botanical Research, Vol 56 = Adv Bot Res Advances in Botanical Research, Vol 56 = Adv. Bot. Res. Advances in Boundary Elements Series = Adv. Bound. Elem. Ser. Advances in Boundary Elements Series = Adv Bound Elem Ser Advances in Boundary Elements Series = Adv. Bound. Elem. Ser. Advances in Brain Research: Cerebrovascular Disorders and Neurodegeneration = Int Congr Ser Advances in Brain Research: Cerebrovascular Disorders and Neurodegeneration = Int. Congr. Ser. Advances in Brain Vasopressin = Prog Brain Res Advances in Brain Vasopressin = Prog. Brain Res. Advances in Brain, Vision, and Artificial Intelligence, Proceedings = Lect Notes Comput Sc Advances in Brain, Vision, and Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Breast Cancer Detection = Recent Res Cancer Advances in Breast Cancer Detection = Recent. Res. Cancer Advances in Building Materials, Pts 1-3 = Adv Mater Res-switz Advances in Building Materials, Pts 1-3 = Adv. Mater. Res-switz. Advances in Business and Management Forecasting = Adv Bus Manag Foreca Advances in Business and Management Forecasting = Adv. Bus. Manag. Foreca. Advances in Business and Management Forecasting, Vol 4 = Adv Bus Manag Foreca Advances in Business and Management Forecasting, Vol 4 = Adv. Bus. Manag. Foreca. Advances in Business and Management Forecasting, Vol 5 = Adv Bus Manag Foreca Advances in Business and Management Forecasting, Vol 5 = Adv. Bus. Manag. Foreca. Advances in Business and Management Forecasting, Vol 6 = Adv Bus Manag Foreca Advances in Business and Management Forecasting, Vol 6 = Adv. Bus. Manag. Foreca. Advances in Business Education and Training = Adv Bus Educ Train Advances in Business Education and Training = Adv. Bus. Educ. Train. Advances in Business Intelligence and Financial Engineering = Adv Intel Sys Res Advances in Business Intelligence and Financial Engineering = Adv. Intel. Sys. Res. Advances in Business Marketing and Purchasing = Adv Bus Mark Purch Advances in Business Marketing and Purchasing = Adv. Bus. Mark. Purch. Advances in Cable-supported Bridges = Proc Monogr Eng Wate Advances in Cable-supported Bridges = Proc. Monogr. Eng. Wate. Advances in Calculus of Variations = Adv Calc Var Advances in Calculus of Variations = Adv. Calc. Var. Advances in Cancer Control /// = Prog Clin Biol Res Advances in Cancer Control /// = Prog. Clin. Biol. Res. Advances in cancer research = Adv Cancer Res Advances in Cancer Research = Adv Cancer Res Advances in Cancer Research = Adv. Cancer Res. Advances In Cancer Research=Adv Cancer Res;; Advances in Cancer Research, Vol 100 = Adv Cancer Res Advances in Cancer Research, Vol 100 = Adv. Cancer Res. Advances in Cancer Research, Vol 101 = Adv Cancer Res Advances in Cancer Research, Vol 101 = Adv. Cancer Res. Advances in Cancer Research, Vol 102 = Adv Cancer Res Advances in Cancer Research, Vol 102 = Adv. Cancer Res. Advances in Cancer Research, Vol 103 = Adv Cancer Res Advances in Cancer Research, Vol 103 = Adv. Cancer Res. Advances in Cancer Research, Vol 104 = Adv Cancer Res Advances in Cancer Research, Vol 104 = Adv. Cancer Res. Advances in Cancer Research, Vol 105 = Adv Cancer Res Advances in Cancer Research, Vol 105 = Adv. Cancer Res. Advances in Cancer Research, Vol 108 = Adv Cancer Res Advances in Cancer Research, Vol 108 = Adv. Cancer Res. Advances in Cancer Research, Vol 109 = Adv Cancer Res Advances in Cancer Research, Vol 109 = Adv. Cancer Res. Advances in Cancer Research, Vol 110 = Adv Cancer Res Advances in Cancer Research, Vol 110 = Adv. Cancer Res. Advances in Cancer Research, Vol 111 = Adv Cancer Res Advances in Cancer Research, Vol 111 = Adv. Cancer Res. Advances in Cancer Research, Vol 61 = Adv Cancer Res Advances in Cancer Research, Vol 61 = Adv. Cancer Res. Advances in Cancer Research, Vol 62 = Adv Cancer Res Advances in Cancer Research, Vol 62 = Adv. Cancer Res. Advances in Cancer Research, Vol 63 = Adv Cancer Res Advances in Cancer Research, Vol 63 = Adv. Cancer Res. Advances in Cancer Research, Vol 64 = Adv Cancer Res Advances in Cancer Research, Vol 64 = Adv. Cancer Res. Advances in Cancer Research, Vol 65 = Adv Cancer Res Advances in Cancer Research, Vol 65 = Adv. Cancer Res. Advances in Cancer Research, Vol 66 = Adv Cancer Res Advances in Cancer Research, Vol 66 = Adv. Cancer Res. Advances in Cancer Research, Vol 67 = Adv Cancer Res Advances in Cancer Research, Vol 67 = Adv. Cancer Res. Advances in Cancer Research, Vol 68 = Adv Cancer Res Advances in Cancer Research, Vol 68 = Adv. Cancer Res. Advances in Cancer Research, Vol 69 = Adv Cancer Res Advances in Cancer Research, Vol 69 = Adv. Cancer Res. Advances in Cancer Research, Vol 70 = Adv Cancer Res Advances in Cancer Research, Vol 70 = Adv. Cancer Res. Advances in Cancer Research, Vol 71 = Adv Cancer Res Advances in Cancer Research, Vol 71 = Adv. Cancer Res. Advances in Cancer Research, Vol 72 = Adv Cancer Res Advances in Cancer Research, Vol 72 = Adv. Cancer Res. Advances in Cancer Research, Vol 74 = Adv Cancer Res Advances in Cancer Research, Vol 74 = Adv. Cancer Res. Advances in Cancer Research, Vol 75 = Adv Cancer Res Advances in Cancer Research, Vol 75 = Adv. Cancer Res. Advances in Cancer Research, Vol 76 = Adv Cancer Res Advances in Cancer Research, Vol 76 = Adv. Cancer Res. Advances in Cancer Research, Vol 77 = Adv Cancer Res Advances in Cancer Research, Vol 77 = Adv. Cancer Res. Advances in Cancer Research, Vol 78 = Adv Cancer Res Advances in Cancer Research, Vol 78 = Adv. Cancer Res. Advances in Cancer Research, Vol 79 = Adv Cancer Res Advances in Cancer Research, Vol 79 = Adv. Cancer Res. Advances in Cancer Research, Vol 80 = Adv Cancer Res Advances in Cancer Research, Vol 80 = Adv. Cancer Res. Advances in Cancer Research, Vol 81 = Adv Cancer Res Advances in Cancer Research, Vol 81 = Adv. Cancer Res. Advances in Cancer Research, Vol 82 = Adv Cancer Res Advances in Cancer Research, Vol 82 = Adv. Cancer Res. Advances in Cancer Research, Vol 83 = Adv Cancer Res Advances in Cancer Research, Vol 83 = Adv. Cancer Res. Advances in Cancer Research, Vol 84 = Adv Cancer Res Advances in Cancer Research, Vol 84 = Adv. Cancer Res. Advances in Cancer Research, Vol 85 = Adv Cancer Res Advances in Cancer Research, Vol 85 = Adv. Cancer Res. Advances in Cancer Research, Vol 86 = Adv Cancer Res Advances in Cancer Research, Vol 86 = Adv. Cancer Res. Advances in Cancer Research, Vol 87 = Adv Cancer Res Advances in Cancer Research, Vol 87 = Adv. Cancer Res. Advances in Cancer Research, Vol 88 = Adv Cancer Res Advances in Cancer Research, Vol 88 = Adv. Cancer Res. Advances in Cancer Research, Vol 89 = Adv Cancer Res Advances in Cancer Research, Vol 89 = Adv. Cancer Res. Advances in Cancer Research, Vol 90 = Adv Cancer Res Advances in Cancer Research, Vol 90 = Adv. Cancer Res. Advances in Cancer Research, Vol 91 = Adv Cancer Res Advances in Cancer Research, Vol 91 = Adv. Cancer Res. Advances in Cancer Research, Vol 92 = Adv Cancer Res Advances in Cancer Research, Vol 92 = Adv. Cancer Res. Advances in Cancer Research, Vol 93 = Adv Cancer Res Advances in Cancer Research, Vol 93 = Adv. Cancer Res. Advances in Cancer Research, Vol 94 = Adv Cancer Res Advances in Cancer Research, Vol 94 = Adv. Cancer Res. Advances in Cancer Research, Vol 95 = Adv Cancer Res Advances in Cancer Research, Vol 95 = Adv. Cancer Res. Advances in Cancer Research, Vol 96 = Adv Cancer Res Advances in Cancer Research, Vol 96 = Adv. Cancer Res. Advances in Cancer Research, Vol 97 = Adv Cancer Res Advances in Cancer Research, Vol 97 = Adv. Cancer Res. Advances in Cancer Research, Vol 98 = Adv Cancer Res Advances in Cancer Research, Vol 98 = Adv. Cancer Res. Advances in Cancer Research, Vol 99 = Adv Cancer Res Advances in Cancer Research, Vol 99 = Adv. Cancer Res. Advances in Carbohydrate Chemistry = Adv Carbohyd Chem Advances in Carbohydrate Chemistry = Adv. Carbohyd. Chem. Advances in carbohydrate chemistry = Adv Carbohydr Chem Advances in Carbohydrate Chemistry and Biochemistry = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry = Adv. Carbohyd. Chem. Bi. Advances in carbohydrate chemistry and biochemistry = Adv Carbohydr Chem Biochem Advances in Carbohydrate Chemistry and Biochemistry = Adv. Carbohydr. Chem. Biochem. Advances In Carbohydrate Chemistry and Biochemistry=Adv Carbohydr Chem Biochem;; Advances in Carbohydrate Chemistry and Biochemistry, Vol 50 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 50 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 51 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 51 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 52 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 52 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 53 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 53 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 55 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 55 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 56 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 56 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 57 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 57 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 58 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 58 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 59 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 59 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 60 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 60 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 61 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 61 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 62 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 62 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 63 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 63 = Adv. Carbohyd. Chem. Bi. Advances in Carbohydrate Chemistry and Biochemistry, Vol 64 = Adv Carbohyd Chem Bi Advances in Carbohydrate Chemistry and Biochemistry, Vol 64 = Adv. Carbohyd. Chem. Bi. Advances in cardiac surgery = Adv Card Surg Advances in Cardiac Surgery = Adv. Card. Surg. Advances In Cardiac Surgery=Adv Card Surg;; Advances in cardiology = Adv Cardiol Advances in Cardiology = Adv Cardiol Advances in Cardiology = Adv. Cardiol. Advances In Cardiology=Adv Cardiol;; Advances in cardiopulmonary diseases = Adv Cardiopulm Dis Advances in Cardiopulmonary Diseases = Adv. Cardiopulm. Dis. Advances in Cardiovascular Engineering = Nato Adv Sci Inst Se Advances in Cardiovascular Engineering = Nato. Adv. Sci. Inst. Se. Advances in Cardiovascular Surgery / = Int Congr Ser Advances in Cardiovascular Surgery / = Int. Congr. Ser. Advances in Carpet Manufacture = Woodhead Publ Text Advances in Carpet Manufacture = Woodhead. Publ. Text. Advances in Case-based Reasoning = Lect Notes Artif Int Advances in Case-based Reasoning = Lect. Notes. Artif. Int. Advances in Case-based Reasoning, Proceedings = Lect Notes Artif Int Advances in Case-based Reasoning, Proceedings = Lect. Notes. Artif. Int. Advances in Case-based Reasoning, Proceedings = Lect Notes Comput Sc Advances in Case-based Reasoning, Proceedings = Lect. Notes. Comput. Sc. Advances in Catalysis = Adv Catal Advances in Catalysis = Adv. Catal. Advances in Catalysis, Vol 39 = Adv Catal Advances in Catalysis, Vol 39 = Adv. Catal. Advances in Catalysis, Vol 40 = Adv Catal Advances in Catalysis, Vol 40 = Adv. Catal. Advances in Catalysis, Vol 41 = Adv Catal Advances in Catalysis, Vol 41 = Adv. Catal. Advances in Catalysis, Vol 42 = Adv Catal Advances in Catalysis, Vol 42 = Adv. Catal. Advances in Catalysis, Vol 44 = Adv Catal Advances in Catalysis, Vol 44 = Adv. Catal. Advances in Catalysis, Vol 45 = Adv Catal Advances in Catalysis, Vol 45 = Adv. Catal. Advances in Catalysis, Vol 46 = Adv Catal Advances in Catalysis, Vol 46 = Adv. Catal. Advances in Catalysis, Vol 47 = Adv Catal Advances in Catalysis, Vol 47 = Adv. Catal. Advances in Catalysis, Vol 48 = Adv Catal Advances in Catalysis, Vol 48 = Adv. Catal. Advances in Catalysis, Vol 49 = Adv Catal Advances in Catalysis, Vol 49 = Adv. Catal. Advances in Catalysis, Vol 50 = Adv Catal Advances in Catalysis, Vol 50 = Adv. Catal. Advances in Catalysis, Vol 51 = Adv Catal Advances in Catalysis, Vol 51 = Adv. Catal. Advances in Catalysis, Vol 52 = Adv Catal Advances in Catalysis, Vol 52 = Adv. Catal. Advances in Catalysis, Vol 53 = Adv Catal Advances in Catalysis, Vol 53 = Adv. Catal. Advances in cell biology = Adv Cell Biol Advances in Cell Biology = Adv. Cell Biol. Advances in Cement Research = Adv Cem Res Advances in Cement Research = Adv. Cem. Res. Advances in Ceramic Armor Ii = Ceram Eng Sci Proc Advances in Ceramic Armor Ii = Ceram. Eng. Sci. Proc. Advances in Ceramic Armor Iii = Ceram Eng Sci Proc Advances in Ceramic Armor Iii = Ceram. Eng. Sci. Proc. Advances in Ceramic Armor Iv = Ceram Eng Sci Proc Advances in Ceramic Armor Iv = Ceram. Eng. Sci. Proc. Advances in Ceramic Armor V = Ceram Eng Sci Proc Advances in Ceramic Armor V = Ceram. Eng. Sci. Proc. Advances in Ceramic Coatings and Ceramic-metal Systems = Ceram Eng Sci Proc Advances in Ceramic Coatings and Ceramic-metal Systems = Ceram. Eng. Sci. Proc. Advances in Ceramic Materials = Mater Sci Forum Advances in Ceramic Materials = Mater. Sci. Forum. Advances in Ceramic Matrix Composites Iv = Ceram Trans Advances in Ceramic Matrix Composites Iv = Ceram. Trans. Advances in Ceramic Matrix Composites Ix = Ceram Trans Advances in Ceramic Matrix Composites Ix = Ceram. Trans. Advances in Ceramic Matrix Composites Vi = Ceram Trans Advances in Ceramic Matrix Composites Vi = Ceram. Trans. Advances in Ceramic Matrix Composites Viii = Ceram Trans Advances in Ceramic Matrix Composites Viii = Ceram. Trans. Advances in Ceramic Matrix Composites X = Ceram Trans Advances in Ceramic Matrix Composites X = Ceram. Trans. Advances in Ceramics = Adv Ceramic Advances in Ceramics = Adv. Ceramic. Advances in Chemical Conversions for Mitigating Carbon Dioxide = Stud Surf Sci Catal Advances in Chemical Conversions for Mitigating Carbon Dioxide = Stud. Surf. Sci. Catal. Advances in Chemical-mechanical Polishing = Mater Res Soc Symp P Advances in Chemical-mechanical Polishing = Mater. Res. Soc. Symp. P. Advances in Chemical Physics = Adv. Chem. Phys. Advances in Chemical Physics = Adv Chem Phys Advances in Chemical Physics = Adv. Chem. Phys. Advances in Chemical Physics <d> = Adv Chem Phys <d> Advances in Chemical Physics <d> = Adv. Chem. Phys. <d> Advances in Chemical Physics, Vol. 103 = Adv Chem Phys Advances in Chemical Physics, Vol. 103 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 104 = Adv Chem Phys Advances in Chemical Physics, Vol 104 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 108 = Adv Chem Phys Advances in Chemical Physics, Vol 108 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 109 = Adv Chem Phys Advances in Chemical Physics, Vol 109 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 110 = Adv Chem Phys Advances in Chemical Physics, Vol 110 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 111 = Adv Chem Phys Advances in Chemical Physics, Vol 111 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 112 = Adv Chem Phys Advances in Chemical Physics, Vol 112 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 113 = Adv Chem Phys Advances in Chemical Physics, Vol 113 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 114 = Adv Chem Phys Advances in Chemical Physics, Vol 114 = Adv. Chem. Phys. Advances in Chemical Physics, Vol. 117 = Adv Chem Phys Advances in Chemical Physics, Vol. 117 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 118 = Adv Chem Phys Advances in Chemical Physics, Vol 118 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 123 = Adv Chem Phys Advances in Chemical Physics, Vol 123 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 125 = Adv Chem Phys Advances in Chemical Physics, Vol 125 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 126 = Adv Chem Phys Advances in Chemical Physics, Vol 126 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 127 = Adv Chem Phys Advances in Chemical Physics, Vol 127 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 128 = Adv Chem Phys Advances in Chemical Physics, Vol 128 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 129 = Adv Chem Phys Advances in Chemical Physics, Vol 129 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 131 = Adv Chem Phys Advances in Chemical Physics, Vol 131 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 136 = Adv Chem Phys Advances in Chemical Physics, Vol 136 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 137 = Adv Chem Phys Advances in Chemical Physics, Vol 137 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 138 = Adv Chem Phys Advances in Chemical Physics, Vol 138 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 139 = Adv Chem Phys Advances in Chemical Physics, Vol 139 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 140 = Adv Chem Phys Advances in Chemical Physics, Vol 140 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 141 = Adv Chem Phys Advances in Chemical Physics, Vol 141 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 142 = Adv Chem Phys Advances in Chemical Physics, Vol 142 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 143 = Adv Chem Phys Advances in Chemical Physics, Vol 143 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 91 = Adv Chem Phys Advances in Chemical Physics, Vol 91 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 95 - Surface Properties = Adv Chem Phys Advances in Chemical Physics, Vol 95 - Surface Properties = Adv. Chem. Phys. Advances in Chemical Physics, Vol 96 = Adv Chem Phys Advances in Chemical Physics, Vol 96 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 98 = Adv Chem Phys Advances in Chemical Physics, Vol 98 = Adv. Chem. Phys. Advances in Chemical Physics, Vol 99 = Adv Chem Phys Advances in Chemical Physics, Vol 99 = Adv. Chem. Phys. Advances in Chemical Physics, Vol Lxxxix = Adv Chem Phys Advances in Chemical Physics, Vol Lxxxix = Adv. Chem. Phys. Advances in Chemical Physics, Volume 115 = Adv Chem Phys Advances in Chemical Physics, Volume 115 = Adv. Chem. Phys. Advances in Chemical Physics, Volume 121 = Adv Chem Phys Advances in Chemical Physics, Volume 121 = Adv. Chem. Phys. Advances in Chemical Physics, Volume 144 = Adv Chem Phys Advances in Chemical Physics, Volume 144 = Adv. Chem. Phys. Advances in Chemical Physics, Vol Xciii = Adv Chem Phys Advances in Chemical Physics, Vol Xciii = Adv. Chem. Phys. Advances in Chemical Physics, Vol Xciv = Adv Chem Phys Advances in Chemical Physics, Vol Xciv = Adv. Chem. Phys. Advances in Chemistry Research = Adv Chem Res Advances in Chemistry Research = Adv. Chem. Res. Advances in Chemistry Research, Vol 3 = Adv Chem Res Advances in Chemistry Research, Vol 3 = Adv. Chem. Res. Advances in Chemistry Research, Vol 4 = Adv Chem Res Advances in Chemistry Research, Vol 4 = Adv. Chem. Res. Advances in chemistry series = Adv Chem Ser Advances in Chemistry Series = Adv Chem Ser Advances in Chemistry Series = Adv. Chem. Ser. Advances in Chemistry Series <d> = Adv Chem Ser Advances in Chemistry Series <d> = Adv. Chem. Ser. Advances in chemotherapy = Adv Chemother Advances in Chemotherapy = Adv. Chemother. Advances in child development and behavior = Adv Child Dev Behav Advances in Child Development and Behavior = Adv Child Dev Behav Advances in Child Development and Behavior = Adv. Child Dev. Behav. Advances In Child Development and Behavior=Adv Child Dev Behav;; Advances in Child Development and Behavior: Developmental Disorders and Interventions, Vol 39 = Adv Child Dev Behav Advances in Child Development and Behavior: Developmental Disorders and Interventions, Vol 39 = Adv. Child Dev. Behav. Advances in Child Development and Behavior: Varieties of Early Experience: Implications for The Development of Declarative Memory in Infancy, Vol 38 = Adv Child Dev Behav Advances in Child Development and Behavior: Varieties of Early Experience: Implications for The Development of Declarative Memory in Infancy, Vol 38 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 24 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 24 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 25 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 25 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol. 26 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol. 26 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 27 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 27 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 28 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 28 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 29 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 29 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 30 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 30 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 31 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 31 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 32 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 32 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 33 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 33 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 34 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 34 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 35 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 35 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 36 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 36 = Adv. Child Dev. Behav. Advances in Child Development and Behavior Vol 37 = Adv Child Dev Behav Advances in Child Development and Behavior Vol 37 = Adv. Child Dev. Behav. Advances in Child Development and Behavior, Vol 40 = Adv Child Dev Behav Advances in Child Development and Behavior, Vol 40 = Adv. Child Dev. Behav. Advances in Chinese Economic Studies = Adv Chin Econ Stud Advances in Chinese Economic Studies = Adv. Chin. Econ. Stud. Advances in Chinese Industrial Studies : A Research Annual = Adv Chin In Advances in Chinese Industrial Studies : A Research Annual = Adv. Chin. In. Advances in Chinese Industrial Studies, Vol 1, Pts A and B = Adv Chin In Advances in Chinese Industrial Studies, Vol 1, Pts A and B = Adv. Chin. In. Advances in Chinese Industrial Studies, Vol 2 = Adv Chin In Advances in Chinese Industrial Studies, Vol 2 = Adv. Chin. In. Advances in Chinese Industrial Studies, Vol 4, 1994 = Adv Chin In Advances in Chinese Industrial Studies, Vol 4, 1994 = Adv. Chin. In. Advances in Chinese Medical Ethics, Chinese and International Perspectives = Mit Inst Asienk Hamb Advances in Chinese Medical Ethics, Chinese and International Perspectives = Mit. Inst. Asienk. Hamb. Advances in chromatography = Adv Chromatogr Advances in Chromatography = Adv Chromatogr Advances in Chromatography = Adv. Chromatogr. Advances In Chromatography=Adv Chromatogr;; Advances in Chromatography (Boca Raton, FL, United States) = Adv. Chromatogr. (Boca Raton, FL, U. S.) Advances in Chromatography (New York, NY, United States) = Adv. Chromatogr. (N. Y., NY, U. S.) Advances in Chromatography, Vol 34 = Adv Chromatogr Advances in Chromatography, Vol 34 = Adv. Chromatogr. Advances in Chromatography, Vol 35 = Adv Chromatogr Advances in Chromatography, Vol 35 = Adv. Chromatogr. Advances in Chromatography, Vol 36 = Adv Chromatogr Advances in Chromatography, Vol 36 = Adv. Chromatogr. Advances in Chromatography, Vol 37 = Adv Chromatogr Advances in Chromatography, Vol 37 = Adv. Chromatogr. Advances in Chromatography, Vol 38 = Adv Chromatogr Advances in Chromatography, Vol 38 = Adv. Chromatogr. Advances in Chromatography, Vol 39 = Adv Chromatogr Advances in Chromatography, Vol 39 = Adv. Chromatogr. Advances in Chromatography, Vol 40 = Adv Chromatogr Advances in Chromatography, Vol 40 = Adv. Chromatogr. Advances in Chromatography, Vol 41 = Adv Chromatogr Advances in Chromatography, Vol 41 = Adv. Chromatogr. Advances in Chromatography, Vol 42 = Adv Chromatogr Advances in Chromatography, Vol 42 = Adv. Chromatogr. Advances in Chromatography, Vol 43 = Adv Chromatogr Advances in Chromatography, Vol 43 = Adv. Chromatogr. Advances in Chromatography, Vol 44 = Adv Chromatogr Advances in Chromatography, Vol 44 = Adv. Chromatogr. Advances in Chromatography, Vol 45 = Adv Chromatogr Advances in Chromatography, Vol 45 = Adv. Chromatogr. Advances in Chromatography, Vol 46 = Adv Chromatogr Advances in Chromatography, Vol 46 = Adv. Chromatogr. Advances in Chromatography, Vol 47 = Adv Chromatogr Advances in Chromatography, Vol 47 = Adv. Chromatogr. Advances in Chromatography, Vol 48 = Adv Chromatogr Advances in Chromatography, Vol 48 = Adv. Chromatogr. Advances in Chromatography, Vol 49 = Adv Chromatogr Advances in Chromatography, Vol 49 = Adv. Chromatogr. Advances in Chronic Kidney Disease = Adv Chronic Kidney D Advances in Chronic Kidney Disease = Adv. Chronic Kidney D. Advances in chronic kidney disease = Adv Chronic Kidney Dis Advances in Chronic Kidney Disease = Adv. Chronic Kidney Dis. Advances in Cirrhosis, Hyperammonemia, and Hepatic Encephalopathy = Adv Exp Med Biol Advances in Cirrhosis, Hyperammonemia, and Hepatic Encephalopathy = Adv. Exp. Med. Biol. Advances in Classical Trajectory Methods : A Research Annual = Adv Clas Tr Advances in Classical Trajectory Methods : A Research Annual = Adv. Clas. Tr. Advances in Classical Trajectory Methods, Vol 3 = Adv Clas Tr Advances in Classical Trajectory Methods, Vol 3 = Adv. Clas. Tr. Advances in Classification Research = Asis Monogr Advances in Classification Research = Asis. Monogr. Advances in Classification Research, Vol 10 = Asis Monogr Advances in Classification Research, Vol 10 = Asis. Monogr. Advances in Classification Research, Vol 2 = Asis Monogr Advances in Classification Research, Vol 2 = Asis. Monogr. Advances in Classification Research, Vol 3 = Asis Monogr Advances in Classification Research, Vol 3 = Asis. Monogr. Advances in Classification Research, Vol 4 = Asis Monogr Advances in Classification Research, Vol 4 = Asis. Monogr. Advances in Classification Research, Vol 8 = Asis Monogr Advances in Classification Research, Vol 8 = Asis. Monogr. Advances in Clear Air Technology = Vdi Bericht Advances in Clear Air Technology = Vdi. Bericht. Advances in Clinical and Experimental Medicine = Adv Clin Exp Med Advances in Clinical and Experimental Medicine = Adv. Clin. Exp. Med. Advances in clinical chemistry = Adv Clin Chem Advances in Clinical Chemistry = Adv Clin Chem Advances in Clinical Chemistry = Adv. Clin. Chem. Advances In Clinical Chemistry=Adv Clin Chem;; Advances in Clinical Chemistry, Vol 30 = Adv Clin Chem Advances in Clinical Chemistry, Vol 30 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 31 = Adv Clin Chem Advances in Clinical Chemistry, Vol 31 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 32 = Adv Clin Chem Advances in Clinical Chemistry, Vol 32 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 33 = Adv Clin Chem Advances in Clinical Chemistry, Vol 33 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 35 = Adv Clin Chem Advances in Clinical Chemistry, Vol 35 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 36 = Adv Clin Chem Advances in Clinical Chemistry, Vol 36 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 37 = Adv Clin Chem Advances in Clinical Chemistry, Vol 37 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol. 38 = Adv Clin Chem Advances in Clinical Chemistry, Vol. 38 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 39 = Adv Clin Chem Advances in Clinical Chemistry, Vol 39 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 40 = Adv Clin Chem Advances in Clinical Chemistry, Vol 40 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 41 = Adv Clin Chem Advances in Clinical Chemistry, Vol 41 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 42 = Adv Clin Chem Advances in Clinical Chemistry, Vol 42 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 43 = Adv Clin Chem Advances in Clinical Chemistry, Vol 43 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 44 = Adv Clin Chem Advances in Clinical Chemistry, Vol 44 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 45 = Adv Clin Chem Advances in Clinical Chemistry, Vol 45 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 46 = Adv Clin Chem Advances in Clinical Chemistry, Vol 46 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 47 = Adv Clin Chem Advances in Clinical Chemistry, Vol 47 = Adv. Clin. Chem. Advances in Clinical Chemistry Vol 48 = Adv Clin Chem Advances in Clinical Chemistry Vol 48 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 49 = Adv Clin Chem Advances in Clinical Chemistry, Vol 49 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 50 = Adv Clin Chem Advances in Clinical Chemistry, Vol 50 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 51 = Adv Clin Chem Advances in Clinical Chemistry, Vol 51 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 53 = Adv Clin Chem Advances in Clinical Chemistry, Vol 53 = Adv. Clin. Chem. Advances in Clinical Chemistry, Vol 54 = Adv Clin Chem Advances in Clinical Chemistry, Vol 54 = Adv. Clin. Chem. Advances in Clinical Child Psychology = Adv Clin Child Psych Advances in Clinical Child Psychology = Adv. Clin. Child Psych. Advances in Clinical Child Psychology, Vol 16 = Adv Clin Child Psych Advances in Clinical Child Psychology, Vol 16 = Adv. Clin. Child Psych. Advances in Clinical Child Psychology, Vol 17 = Adv Clin Child Psych Advances in Clinical Child Psychology, Vol 17 = Adv. Clin. Child Psych. Advances in Clinical Child Psychology, Vol 18 = Adv Clin Child Psych Advances in Clinical Child Psychology, Vol 18 = Adv. Clin. Child Psych. Advances in Clinical Child Psychology, Vol 19 = Adv Clin Child Psych Advances in Clinical Child Psychology, Vol 19 = Adv. Clin. Child Psych. Advances in Clinical Child Psychology, Volume 20 = Adv Clin Child Psych Advances in Clinical Child Psychology, Volume 20 = Adv. Clin. Child Psych. Advances in Clinical Pathology = Adv. Clin. Path. Advances in clinical pathology : the official journal of Adriatic Society of Pathology = Adv Clin Path Advances in clinical pharmacology = Adv Clin Pharmacol Advances in Clinical Pharmacology = Adv. Clin. Pharmacol. Advances in clinical rehabilitation = Adv Clin Rehabil Advances in Clinical Rehabilitation = Adv. Clin. Rehabil. Advances in Coal Spectroscopy = Mod Anal Ch Advances in Coal Spectroscopy = Mod. Anal. Ch. Advances in Coastal and Ocean Engineering (series) = Adv Coastal Ocean En Advances in Coastal and Ocean Engineering (series) = Adv. Coastal Ocean En. Advances in Coastal and Ocean Engineering Series = Adv Coastal Ocean En Advances in Coastal and Ocean Engineering Series = Adv. Coastal Ocean En. Advances in Coding Theory and Cryptography = Ser Coding Th Crypto Advances in Coding Theory and Cryptography = Ser. Coding Th. Crypto. Advances in Cognition and Educational Practice : A Research Annual = Adv Cogn Ed Advances in Cognition and Educational Practice : A Research Annual = Adv. Cogn. Ed. Advances in Cognition and Educational Practice, Vol 3, 1995 = Adv Cogn Ed Advances in Cognition and Educational Practice, Vol 3, 1995 = Adv. Cogn. Ed. Advances in Cognitive Ergonomics = Adv Hum Fact Erg Ser Advances in Cognitive Ergonomics = Adv. Hum. Fact. Erg. Ser. Advances in Cognitive Informatics and Cognitive Computing = Stud Comp Intell Advances in Cognitive Informatics and Cognitive Computing = Stud. Comp. Intell. Advances in Cognitive Informatics and Cognitive Computing = Stud Comput Intell Advances in Cognitive Informatics and Cognitive Computing = Stud. Comput. Intell. Advances in Cold-region Thermal Engineering and Sciences = Lect Notes Phys Advances in Cold-region Thermal Engineering and Sciences = Lect. Notes. Phys. Advances in Colloid and Interface Science = Adv Colloid Interfac Advances in Colloid and Interface Science = Adv. Colloid Interfac. Advances in colloid and interface science = Adv Colloid Interface Sci Advances in Colloid and Interface Science = Adv. Colloid Interface Sci. Advances In Colloid and Interface Science=Adv Colloid Interface Sci;; Advances in Colloid Structures = Prog Coll Pol Sci S Advances in Colloid Structures = Prog. Coll. Pol. Sci. S. Advances in Commercial Deployment of Spoken Dialog Systems = Springerbrief Speech Advances in Commercial Deployment of Spoken Dialog Systems = Springerbrief. Speech. Advances in Communication and Networking = Comm Com Inf Sc Advances in Communication and Networking = Comm. Com. Inf. Sc. Advances in Communication Control Networks = Lect Notes Contr Inf Advances in Communication Control Networks = Lect. Notes. Contr. Inf. Advances in Communications and Signal Processing = Lect Notes Contr Inf Advances in Communications and Signal Processing = Lect. Notes. Contr. Inf. Advances in Communications, Computers, Systems, Circuits and Devices = Eur Conf Syst Advances in Communications, Computers, Systems, Circuits and Devices = Eur. Conf. Syst. Advances in Commutative Ring Theory = Lect Notes Pure Appl Advances in Commutative Ring Theory = Lect. Notes. Pure. Appl. Advances in Comparative Physiology and Biochemistry = Adv Comp Physiol Bio Advances in Comparative Physiology and Biochemistry = Adv. Comp. Physiol. Bio. Advances in comparative physiology and biochemistry = Adv Comp Physiol Biochem Advances in Comparative Physiology and Biochemistry = Adv. Comp. Physiol. Biochem. Advances in Comparative Psychology = Adv Com Psy Advances in Comparative Psychology = Adv. Com. Psy. Advances in Complex Analysis and Its Applications = Adv Comp Anal Appl Advances in Complex Analysis and Its Applications = Adv. Comp. Anal. Appl. Advances in Complex Electromagnetic Materials = Nato Asi 3 High Tech Advances in Complex Electromagnetic Materials = Nato. Asi. 3. High. Tech. Advances in Complex Systems = Adv Complex Syst Advances in Complex Systems = Adv. Complex Syst. Advances in Composite Materials and Structures, Pts 1 and 2 = Key Eng Mater Advances in Composite Materials and Structures, Pts 1 and 2 = Key. Eng. Mater. Advances in Composite Materials and Structures Vii = Struct Mat Advances in Composite Materials and Structures Vii = Struct. Mat. Advances in Composites, Pts 1 and 2 = Adv Mater Res-switz Advances in Composites, Pts 1 and 2 = Adv. Mater. Res-switz. Advances in Computational and Stochastic Optimization, Logic Programming, and Heuristic Search = Operat Res Comp Sci Advances in Computational and Stochastic Optimization, Logic Programming, and Heuristic Search = Operat. Res. Comp. Sci. Advances in Computational Bioengineering = Adv Comp Bioeng Advances in Computational Bioengineering = Adv. Comp. Bioeng. Advances in Computational Biology = Adv Exp Med Biol Advances in Computational Biology = Adv. Exp. Med. Biol. Advances in Computational Economics = Adv Comp Econ Advances in Computational Economics = Adv. Comp. Econ. Advances in Computational Economics = Adv Comput Econ Advances in Computational Economics = Adv. Comput. Econ. Advances in Computational Intelligence = Adv Intell Soft Comp Advances in Computational Intelligence = Adv. Intell. Soft. Comp. Advances in Computational Intelligence = Adv Intel Soft Compu Advances in Computational Intelligence = Adv. Intel. Soft. Compu. Advances in Computational Intelligence in Transport, Logistics, and Supply Chain Management = Stud Comput Intell Advances in Computational Intelligence in Transport, Logistics, and Supply Chain Management = Stud. Comput. Intell. Advances in Computational Management Science = Adv Comput Manag Sci Advances in Computational Management Science = Adv. Comput. Manag. Sci. Advances in Computational Materials Science - Proceedings of The Vi Italian-swiss Workshop = Ital Phy So Advances in Computational Materials Science - Proceedings of The Vi Italian-swiss Workshop = Ital. Phy. So. Advances in Computational Mathematics = Adv. Comput. Math. Advances in Computational Mathematics = Adv Comput Math Advances in Computational Mathematics = Adv. Comput. Math. Advances in Computational Mathematics = Lect Notes Pure Appl Advances in Computational Mathematics = Lect. Notes. Pure. Appl. Advances in Computational Methods for X-ray and Neutron Optics = P Soc Photo-opt Ins Advances in Computational Methods for X-ray and Neutron Optics = P. Soc. Photo-opt. Ins. Advances in Computational Methods in Sciences and Engineering 2005, Vols 4 A & 4 B = Lect Ser Computer Co Advances in Computational Methods in Sciences and Engineering 2005, Vols 4 A & 4 B = Lect. Ser. Computer. Co. Advances in Computational Multibody Systems = Comp Meth Appl Sci Advances in Computational Multibody Systems = Comp. Meth. Appl. Sci. Advances in Computational Science and Engineering = Comm Com Inf Sc Advances in Computational Science and Engineering = Comm. Com. Inf. Sc. Advances in Computational Vision and Medical Image Processing: Methods and Applications = Comp Meth Appl Sci Advances in Computational Vision and Medical Image Processing: Methods and Applications = Comp. Meth. Appl. Sci. Advances in Computational Vision and Medical Image Processing: Methods and Applications = Comput Meth Appl Sci Advances in Computational Vision and Medical Image Processing: Methods and Applications = Comput. Meth. Appl. Sci. Advances in Computation and Intelligence = Lect Notes Comput Sc Advances in Computation and Intelligence = Lect. Notes. Comput. Sc. Advances in Computation and Intelligence, Proceedings = Lect Notes Comput Sc Advances in Computation and Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Computation: Theory and Practice = Adv Comp The Pract Advances in Computation: Theory and Practice = Adv. Comp. The. Pract. Advances in Computer and Information Sciences '98 = Concur Syst Engn Ser Advances in Computer and Information Sciences '98 = Concur. Syst. Engn. Ser. Advances in Computer-assisted Recognition = Proc Spie Advances in Computer-assisted Recognition = Proc. Spie. Advances in Computer-assisted Recognition = P Soc Photo-opt Ins Advances in Computer-assisted Recognition = P. Soc. Photo-opt. Ins. Advances in Computer Games = Lect Notes Comput Sc Advances in Computer Games = Lect. Notes. Comput. Sc. Advances in Computer Games: Many Games, Many Challenges = Int Fed Info Proc Advances in Computer Games: Many Games, Many Challenges = Int. Fed. Info. Proc. Advances in Computer Graphics and Computer Vision = Comm Com Inf Sc Advances in Computer Graphics and Computer Vision = Comm. Com. Inf. Sc. Advances in Computer Graphics, Proceedings = Lect Notes Comput Sc Advances in Computer Graphics, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Graphics Vi = Eurograph S Advances in Computer Graphics Vi = Eurograph. S. Advances in Computers = Adv Comput Advances in Computers = Adv. Comput. Advances in Computer Science and Engineering = Comm Com Inf Sc Advances in Computer Science and Engineering = Comm. Com. Inf. Sc. Advances in Computer Science and Information Technology, Proceedings = Lect Notes Comput Sc Advances in Computer Science and Information Technology, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Science and Information Technology, Pt I = Comm Com Inf Sc Advances in Computer Science and Information Technology, Pt I = Comm. Com. Inf. Sc. Advances in Computer Science - Asian 2004, Proceedings = Lect Notes Comput Sc Advances in Computer Science - Asian 2004, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Science - Asian 2005, Proceedings = Lect Notes Comput Sc Advances in Computer Science - Asian 2005, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Science - Asian 2006: Secure Software and Related Issues = Lect Notes Comput Sc Advances in Computer Science - Asian 2006: Secure Software and Related Issues = Lect. Notes. Comput. Sc. Advances in Computer Science - Asian 2007: Computer and Network Security, Proceedings = Lect Notes Comput Sc Advances in Computer Science - Asian 2007: Computer and Network Security, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Science - Asian 2009: Information Security and Privacy, Proceedings = Lect Notes Comput Sc Advances in Computer Science - Asian 2009: Information Security and Privacy, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Simulation = Lect Notes Phys Advances in Computer Simulation = Lect. Notes. Phys. Advances in Computers: Social Networking and The Web, Vol 76 = Adv Comput Advances in Computers: Social Networking and The Web, Vol 76 = Adv. Comput. Advances in Computers, Vol 36 = Adv Comput Advances in Computers, Vol 36 = Adv. Comput. Advances in Computers, Vol 37 = Adv Comput Advances in Computers, Vol 37 = Adv. Comput. Advances in Computers, Vol 48 = Adv Comput Advances in Computers, Vol 48 = Adv. Comput. Advances in Computers, Vol 49 = Adv Comput Advances in Computers, Vol 49 = Adv. Comput. Advances in Computers, Vol 52 = Adv Comput Advances in Computers, Vol 52 = Adv. Comput. Advances in Computers, Vol 53 = Adv Comput Advances in Computers, Vol 53 = Adv. Comput. Advances in Computers, Vol 54 = Adv Comput Advances in Computers, Vol 54 = Adv. Comput. Advances in Computers, Vol 55 = Adv Comput Advances in Computers, Vol 55 = Adv. Comput. Advances in Computers, Vol 56 = Adv Comput Advances in Computers, Vol 56 = Adv. Comput. Advances in Computers, Vol 57 = Adv Comput Advances in Computers, Vol 57 = Adv. Comput. Advances in Computers, Vol 58 = Adv Comput Advances in Computers, Vol 58 = Adv. Comput. Advances in Computers, Vol 59 = Adv Comput Advances in Computers, Vol 59 = Adv. Comput. Advances in Computers, Vol. 60 = Adv Comput Advances in Computers, Vol. 60 = Adv. Comput. Advances in Computers, Vol. 61 = Adv Comput Advances in Computers, Vol. 61 = Adv. Comput. Advances in Computers, Vol 62 = Adv Comput Advances in Computers, Vol 62 = Adv. Comput. Advances in Computers, Vol 63: Parallel, Distributed, and Pervasive Computing = Adv Comput Advances in Computers, Vol 63: Parallel, Distributed, and Pervasive Computing = Adv. Comput. Advances in Computers, Vol 64 = Adv Comput Advances in Computers, Vol 64 = Adv. Comput. Advances in Computers, Vol 65 = Adv Comput Advances in Computers, Vol 65 = Adv. Comput. Advances in Computers, Vol 66 = Adv Comput Advances in Computers, Vol 66 = Adv. Comput. Advances in Computers, Vol 67 = Adv Comput Advances in Computers, Vol 67 = Adv. Comput. Advances in Computers , Vol 68 = Adv Comput Advances in Computers , Vol 68 = Adv. Comput. Advances in Computers, Vol 70 = Adv Comput Advances in Computers, Vol 70 = Adv. Comput. Advances in Computers, Vol 71 = Adv Comput Advances in Computers, Vol 71 = Adv. Comput. Advances in Computers, Vol 72 = Adv Comput Advances in Computers, Vol 72 = Adv. Comput. Advances in Computers, Vol 73 = Adv Comput Advances in Computers, Vol 73 = Adv. Comput. Advances in Computers, Vol 74 = Adv Comput Advances in Computers, Vol 74 = Adv. Comput. Advances in Computers, Vol 75 = Adv Comput Advances in Computers, Vol 75 = Adv. Comput. Advances in Computers, Vol 77 = Adv Comput Advances in Computers, Vol 77 = Adv. Comput. Advances in Computers, Vol 78 = Adv Comput Advances in Computers, Vol 78 = Adv. Comput. Advances in Computers, Vol 79 = Adv Comput Advances in Computers, Vol 79 = Adv. Comput. Advances in Computers, Vol 80 = Adv Comput Advances in Computers, Vol 80 = Adv. Comput. Advances in Computers, Vol 81 = Adv Comput Advances in Computers, Vol 81 = Adv. Comput. Advances in Computers, Vol 82 = Adv Comput Advances in Computers, Vol 82 = Adv. Comput. Advances in Computers, Vol 83 = Adv Comput Advances in Computers, Vol 83 = Adv. Comput. Advances in Computer Systems Architecture = Lect Notes Comput Sc Advances in Computer Systems Architecture = Lect. Notes. Comput. Sc. Advances in Computer Systems Architecture, Proceedings = Lect Notes Comput Sc Advances in Computer Systems Architecture, Proceedings = Lect. Notes. Comput. Sc. Advances in Computer Vision and Pattern Recognition = Adv Comput Vis Patt Advances in Computer Vision and Pattern Recognition = Adv. Comput. Vis. Patt. Advances in Computing and Control = Lect Notes Contr Inf Advances in Computing and Control = Lect. Notes. Contr. Inf. Advances in Computing and Information - Icci 90 = Lect Notes Comput Sc Advances in Computing and Information - Icci 90 = Lect. Notes. Comput. Sc. Advances in Computing Science = Adv. Comput. Sci. Advances in Computing Science-asian 2000, Proceedings = Lect Notes Comput Sc Advances in Computing Science-asian 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Computing Science-asian 2002 = Lect Notes Comput Sc Advances in Computing Science-asian 2002 = Lect. Notes. Comput. Sc. Advances in Computing Science - Asian 2003 = Lect Notes Comput Sc Advances in Computing Science - Asian 2003 = Lect. Notes. Comput. Sc. Advances in Computing Science-asian' 98 = Lect Notes Comput Sc Advances in Computing Science-asian' 98 = Lect. Notes. Comput. Sc. Advances in Conceptual Modeling: Applications and Challenges = Lect Notes Comput Sc Advances in Conceptual Modeling: Applications and Challenges = Lect. Notes. Comput. Sc. Advances in Conceptual Modeling - Challenges and Opportunities = Lect Notes Comput Sc Advances in Conceptual Modeling - Challenges and Opportunities = Lect. Notes. Comput. Sc. Advances in Conceptual Modeling - Challenges Perspectives = Lect Notes Comput Sc Advances in Conceptual Modeling - Challenges Perspectives = Lect. Notes. Comput. Sc. Advances in Conceptual Modeling - Foundations and Applications = Lect Notes Comput Sc Advances in Conceptual Modeling - Foundations and Applications = Lect. Notes. Comput. Sc. Advances in Conceptual Modeling - Theory and Practice, Proceedings = Lect Notes Comput Sc Advances in Conceptual Modeling - Theory and Practice, Proceedings = Lect. Notes. Comput. Sc. Advances in Concrete and Concrete Pavement Construction = Transport Res Rec Advances in Concrete and Concrete Pavement Construction = Transport. Res. Rec. Advances in Concrete and Structures = Key Eng Mat Advances in Concrete and Structures = Key. Eng. Mat. Advances in Concrete and Structures = Key Eng Mater Advances in Concrete and Structures = Key. Eng. Mater. Advances in Concrete Technology = Amer Conc I Advances in Concrete Technology = Amer. Conc. I. Advances in Concurrent Engineering = Adv Concurrent Engn Advances in Concurrent Engineering = Adv. Concurrent Engn. Advances in Concurrent Engineering: Ce96 = Adv Concurrent Engn Advances in Concurrent Engineering: Ce96 = Adv. Concurrent Engn. Advances in Concurrent Engineering: Ce97 = Adv Concurrent Engn Advances in Concurrent Engineering: Ce97 = Adv. Concurrent Engn. Advances in Concurrent Engineering: Ce99 = Adv Concurrent Engn Advances in Concurrent Engineering: Ce99 = Adv. Concurrent Engn. Advances in Condensed Matter and Materials Research = Adv Condens Matt Mat Advances in Condensed Matter and Materials Research = Adv. Condens. Matt. Mat. Advances in Condensed Matter and Materials Research, Vol 6 = Adv Condens Matt Mat Advances in Condensed Matter and Materials Research, Vol 6 = Adv. Condens. Matt. Mat. Advances in Condensed Matter and Materials Research, Vol 7 = Adv Condens Matt Mat Advances in Condensed Matter and Materials Research, Vol 7 = Adv. Condens. Matt. Mat. Advances in Condensed Matter Physics = Adv. Condens. Matter Phys. Advances in Condensed Matter Physics = Adv Cond Matter Phys Advances in Condensed Matter Physics = Adv. Cond. Matter Phys. Advances in Condensed Matter Science = Adv Condens Mat Sci Advances in Condensed Matter Science = Adv. Condens. Mat. Sci. Advances in Consciousness Research = Adv Consc Res Advances in Consciousness Research = Adv. Consc. Res. Advances in Constitutive Relations Applied in Computer Codes = Cism Courses Lect Advances in Constitutive Relations Applied in Computer Codes = Cism. Courses. Lect. Advances in Consumer Research = Adv Consum Res Advances in Consumer Research = Adv. Consum. Res. Advances in consumer research. Association for Consumer Research (U.S.) = Adv Consum Res Advances in Consumer Research, Vol 17 = Adv Consum Res Advances in Consumer Research, Vol 17 = Adv. Consum. Res. Advances in Consumer Research, Vol 18 = Adv Consum Res Advances in Consumer Research, Vol 18 = Adv. Consum. Res. Advances in Consumer Research, Vol 19 = Adv Consum Res Advances in Consumer Research, Vol 19 = Adv. Consum. Res. Advances in Consumer Research, Vol 20 = Adv Consum Res Advances in Consumer Research, Vol 20 = Adv. Consum. Res. Advances in Consumer Research, Vol 23 = Adv Consum Res Advances in Consumer Research, Vol 23 = Adv. Consum. Res. Advances in Consumer Research, Vol 26 = Adv Consum Res Advances in Consumer Research, Vol 26 = Adv. Consum. Res. Advances in Consumer Research, Vol 27 = Adv Consum Res Advances in Consumer Research, Vol 27 = Adv. Consum. Res. Advances in Consumer Research, Vol 30 = Adv Consum Res Advances in Consumer Research, Vol 30 = Adv. Consum. Res. Advances in Consumer Research, Vol 32 = Adv Consum Res Advances in Consumer Research, Vol 32 = Adv. Consum. Res. Advances in Consumer Research, Vol 33 = Adv Consum Res Advances in Consumer Research, Vol 33 = Adv. Consum. Res. Advances in Consumer Research, Vol 35 = Adv Consum Res Advances in Consumer Research, Vol 35 = Adv. Consum. Res. Advances in Consumer Research, Volume Xxix = Adv Consum Res Advances in Consumer Research, Volume Xxix = Adv. Consum. Res. Advances in Consumer Research, Volume Xxxi = Adv Consum Res Advances in Consumer Research, Volume Xxxi = Adv. Consum. Res. Advances in Consumer Research, Vol Xxi = Adv Consum Res Advances in Consumer Research, Vol Xxi = Adv. Consum. Res. Advances in Consumer Research, Vol Xxii = Adv Consum Res Advances in Consumer Research, Vol Xxii = Adv. Consum. Res. Advances in Consumer Research, Vol Xxiv = Adv Consum Res Advances in Consumer Research, Vol Xxiv = Adv. Consum. Res. Advances in Consumer Research, Vol. Xxv = Adv Consum Res Advances in Consumer Research, Vol. Xxv = Adv. Consum. Res. Advances in Consumer Research, Vol Xxviii = Adv Consum Res Advances in Consumer Research, Vol Xxviii = Adv. Consum. Res. Advances in Consumer Research Vol Xxxiv = Adv Consum Res Advances in Consumer Research Vol Xxxiv = Adv. Consum. Res. Advances in Consumer Research, Vol Xxxvi = Adv Consum Res Advances in Consumer Research, Vol Xxxvi = Adv. Consum. Res. Advances in Contraception = Adv Contracept Advances in Contraception = Adv. Contracept. Advances In Contraception=Adv Contracept;; Advances in contraception : the official journal of the Society for the Advancement of Contraception = Adv Contracept Advances in contraceptive delivery systems : CDS = Adv Contracept Deliv Syst Advances in Control Communication Networks, and Transportation Systems = Sys Con Fdn Advances in Control Communication Networks, and Transportation Systems = Sys. Con. Fdn. Advances in Control Communication Networks, and Transportation Systems = Syst Control-found A Advances in Control Communication Networks, and Transportation Systems = Syst. Control-found. A. Advances in Control Education 2000 = Ifac Symp Series Advances in Control Education 2000 = Ifac. Symp. Series. Advances in Control Education = Ifac Symp Series Advances in Control Education = Ifac. Symp. Series. Advances in Controlled Clinical Inhalation Studies = Ilsi Monogr Advances in Controlled Clinical Inhalation Studies = Ilsi. Monogr. Advances in Controlled Drug Delivery: Science, Technology, and Products = Acs Sym Ser Advances in Controlled Drug Delivery: Science, Technology, and Products = Acs. Sym. Ser. Advances in Controlled/living Radical Polymerization = Acs Sym Ser Advances in Controlled/living Radical Polymerization = Acs. Sym. Ser. Advances in Control Theory and Applications = Lect Notes Contr Inf Advances in Control Theory and Applications = Lect. Notes. Contr. Inf. Advances in Cooperative Control and Optimization = Lect Notes Contr Inf Advances in Cooperative Control and Optimization = Lect. Notes. Contr. Inf. Advances in Core Evaluation = Adv Core Evaluat Advances in Core Evaluation = Adv. Core Evaluat. Advances in Core Evaluation Iii - Reservoir Management = Adv Core Evaluat Advances in Core Evaluation Iii - Reservoir Management = Adv. Core Evaluat. Advances in Corpus Linguistics = Lang Comput Advances in Corpus Linguistics = Lang. Comput. Advances in Corrosion Control and Materials in Oil and Gas Production = Eur Fed Corr Publ Advances in Corrosion Control and Materials in Oil and Gas Production = Eur. Fed. Corr. Publ. Advances in Corrosion-deformation Interactions = Mater Sci Forum Advances in Corrosion-deformation Interactions = Mater. Sci. Forum. Advances in Corrosion Protection By Organic Coatings Iii = Elec Soc S Advances in Corrosion Protection By Organic Coatings Iii = Elec. Soc. S. Advances in Cross-language Information Retrieval = Lect Notes Comput Sc Advances in Cross-language Information Retrieval = Lect. Notes. Comput. Sc. Advances in cryogenic engineering = Adv Cryog Eng Advances in Cryogenic Engineering = Adv Cryog Eng Advances in Cryogenic Engineering = Adv. Cryog. Eng. Advances in Cryogenic Engineering Materials, Vol 44, Pts A and B = Adv Cryog Eng Advances in Cryogenic Engineering Materials, Vol 44, Pts A and B = Adv. Cryog. Eng. Advances in Cryogenic Engineering (materials), Vol 56: Transactions of The International Cryogenic Materials Conference - Icmc = Aip Conf Proc Advances in Cryogenic Engineering (materials), Vol 56: Transactions of The International Cryogenic Materials Conference - Icmc = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vol 38, Pts A and B : Materials = Adv Cryog Eng Advances in Cryogenic Engineering, Vol 38, Pts A and B : Materials = Adv. Cryog. Eng. Advances in Cryogenic Engineering, Vol 39, Pts A and B = Adv Cryog Eng Advances in Cryogenic Engineering, Vol 39, Pts A and B = Adv. Cryog. Eng. Advances in Cryogenic Engineering, Vol 40, Pts A and B = Adv Cryog Eng Advances in Cryogenic Engineering, Vol 40, Pts A and B = Adv. Cryog. Eng. Advances in Cryogenic Engineering, Vol 41, Pts A and B = Adv Cryog Eng Advances in Cryogenic Engineering, Vol 41, Pts A and B = Adv. Cryog. Eng. Advances in Cryogenic Engineering, Vol 43 Pts A and B = Adv Cryog Eng Advances in Cryogenic Engineering, Vol 43 Pts A and B = Adv. Cryog. Eng. Advances in Cryogenic Engineering, Vol 47, Pts A and B = Aip Conf Proc Advances in Cryogenic Engineering, Vol 47, Pts A and B = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vol 52a & 52b = Aip Conf Proc Advances in Cryogenic Engineering, Vol 52a & 52b = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vol 54: Transactions of The International Cryogenic Materials Conference - Icmc = Aip Conf Proc Advances in Cryogenic Engineering, Vol 54: Transactions of The International Cryogenic Materials Conference - Icmc = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols 48a and B = Aip Conf Proc Advances in Cryogenic Engineering, Vols 48a and B = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols. 49a and B = Aip Conf Proc Advances in Cryogenic Engineering, Vols. 49a and B = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols 50a and B = Aip Conf Proc Advances in Cryogenic Engineering, Vols 50a and B = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols 51a and B = Aip Conf Proc Advances in Cryogenic Engineering, Vols 51a and B = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols 53a and 53b = Aip Conf Proc Advances in Cryogenic Engineering, Vols 53a and 53b = Aip. Conf. Proc. Advances in Cryogenic Engineering, Vols 55a and 55b = Aip Conf Proc Advances in Cryogenic Engineering, Vols 55a and 55b = Aip. Conf. Proc. Advances in Cryptology Asiacrypt 2000, Proceedings = Lect Notes Comput Sc Advances in Cryptology Asiacrypt 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2002, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2002, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2003 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2003 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2004, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2004, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology Asiacrypt 2005 = Lect Notes Comput Sc Advances in Cryptology Asiacrypt 2005 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2006 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2006 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2007 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2007 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2008 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2008 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2009 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2009 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt 2010 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt 2010 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt '94 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt '94 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt'98 = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt'98 = Lect. Notes. Comput. Sc. Advances in Cryptology - Asiacrypt'99, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Asiacrypt'99, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Auscrypt 90 = Lect Notes Comput Sc Advances in Cryptology - Auscrypt 90 = Lect. Notes. Comput. Sc. Advances in Cryptology-crypto 2000, Proceedings = Lect Notes Comput Sc Advances in Cryptology-crypto 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2002, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2002, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology-crypto 2003, Proceedings = Lect Notes Comput Sc Advances in Cryptology-crypto 2003, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2004, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2004, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2005, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2005, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2006, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2006, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2007, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2007, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2008, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto 2008, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2009 = Lect Notes Comput Sc Advances in Cryptology - Crypto 2009 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 2010 = Lect Notes Comput Sc Advances in Cryptology - Crypto 2010 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 88 = Lect Notes Comput Sc Advances in Cryptology - Crypto 88 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 89 = Lect Notes Comput Sc Advances in Cryptology - Crypto 89 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 90 = Lect Notes Comput Sc Advances in Cryptology - Crypto 90 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto 91 = Lect Notes Comput Sc Advances in Cryptology - Crypto 91 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto '95 = Lect Notes Comput Sc Advances in Cryptology - Crypto '95 = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto'97, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Crypto'97, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Crypto'98 = Lect Notes Comput Sc Advances in Cryptology - Crypto'98 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2000 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2000 = Lect. Notes. Comput. Sc. Advances in Cryptology-eurocrypt 2001, Proceedings = Lect Notes Comput Sc Advances in Cryptology-eurocrypt 2001, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2002, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2002, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology-eurocrypt 2003 = Lect Notes Comput Sc Advances in Cryptology-eurocrypt 2003 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2004, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2004, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2005,proceedings = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2005,proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2006, Proceedings = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2006, Proceedings = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2007 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2007 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2008 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2008 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2009 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2009 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 2010 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 2010 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt 91 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt 91 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt '96 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt '96 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt '98 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt '98 = Lect. Notes. Comput. Sc. Advances in Cryptology - Eurocrypt'99 = Lect Notes Comput Sc Advances in Cryptology - Eurocrypt'99 = Lect. Notes. Comput. Sc. Advances in Crystal Growth = Mater Sci Forum Advances in Crystal Growth = Mater. Sci. Forum. Advances in Cultural Psychology-constructing Human Development = Adv Cult Psychol Con Advances in Cultural Psychology-constructing Human Development = Adv. Cult. Psychol. Con. Advances in Cultural Psychology - Constructing Human Development = Adv Cult Psychol Con Advances in Cultural Psychology - Constructing Human Development = Adv. Cult. Psychol. Con. Advances in Culture Tourism and Hospitality Research = Adv Cult Tour Hosp R Advances in Culture Tourism and Hospitality Research = Adv. Cult. Tour. Hosp. R. Advances in Culture, Tourism and Hospitality Research, Vol 2 = Adv Cult Tour Hosp R Advances in Culture, Tourism and Hospitality Research, Vol 2 = Adv. Cult. Tour. Hosp. R. Advances in cyclic nucleotide and protein phosphorylation research = Adv Cyclic Nucleotide Protein Phosphorylation Res Advances in Cyclic Nucleotide and Protein Phosphorylation Research = Adv. Cyclic Nucleotide Protein Phosphorylation Res. Advances in Cyclic Nucleotide and Protein Phosphorylation Research = Adv Cyclic Nucl Prot Advances in Cyclic Nucleotide and Protein Phosphorylation Research = Adv. Cyclic Nucl. Prot. Advances in cyclic nucleotide research = Adv Cyclic Nucleotide Res Advances in Cyclic Nucleotide Research = Adv. Cyclic Nucleotide Res. Advances in Cyclic Nucleotide Research = Adv Cycl Nucl Res<d> Advances in Cyclic Nucleotide Research = Adv. Cycl. Nucl. Res<d>. Advances in cytopharmacology = Adv Cytopharmacol Advances in Cytopharmacology = Adv. Cytopharmacol. Advances in Dairy Technology = Adv Dairy Technol Advances in Dairy Technology = Adv. Dairy Technol. Advances in Dairy Technology, Vol 10 = Adv Dairy Technol Advances in Dairy Technology, Vol 10 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 12 = Adv Dairy Technol Advances in Dairy Technology, Vol 12 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 14 = Adv Dairy Technol Advances in Dairy Technology, Vol 14 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 15 = Adv Dairy Technol Advances in Dairy Technology, Vol 15 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 16 = Adv Dairy Technol Advances in Dairy Technology, Vol 16 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 17 = Adv Dairy Technol Advances in Dairy Technology, Vol 17 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 18 = Adv Dairy Technol Advances in Dairy Technology, Vol 18 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 19 = Adv Dairy Technol Advances in Dairy Technology, Vol 19 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 20 = Adv Dairy Technol Advances in Dairy Technology, Vol 20 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 21 = Adv Dairy Technol Advances in Dairy Technology, Vol 21 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 7 = Adv Dairy Technol Advances in Dairy Technology, Vol 7 = Adv. Dairy Technol. Advances in Dairy Technology, Vol 8 = Adv Dairy Technol Advances in Dairy Technology, Vol 8 = Adv. Dairy Technol. Advances in Damage Mechanics = Adv. Damage Mech. Advances in Damage Mechanics = Adv Damage Mechan Advances in Damage Mechanics = Adv. Damage Mechan. Advances in Data Analysis and Classification = Adv Data Anal Classi Advances in Data Analysis and Classification = Adv. Data Anal. Classi. Advances in Data Analysis, Data Handling and Business Intelligence = Stud Class Data Anal Advances in Data Analysis, Data Handling and Business Intelligence = Stud. Class. Data Anal. Advances in Data Analysis = Stat Ind Technol Advances in Data Analysis = Stat. Ind. Technol. Advances in Data Analysis = St Class Dat Anal Advances in Data Analysis = St. Class. Dat. Anal. Advances in Data Analysis = Stud Class Data Anal Advances in Data Analysis = Stud. Class. Data Anal. Advances in Data and Web Management, Proceedings = Lect Notes Comput Sc Advances in Data and Web Management, Proceedings = Lect. Notes. Comput. Sc. Advances in Databases and Information Systems = Lect Notes Comput Sc Advances in Databases and Information Systems = Lect. Notes. Comput. Sc. Advances in Databases and Information Systems, Proceedings = Lect Notes Comput Sc Advances in Databases and Information Systems, Proceedings = Lect. Notes. Comput. Sc. Advances in Databases and Information Systems = Work Comp Advances in Databases and Information Systems = Work. Comp. Advances in Databases: Concepts, Systems and Applications = Lect Notes Comput Sc Advances in Databases: Concepts, Systems and Applications = Lect. Notes. Comput. Sc. Advances in Databases = Lect Notes Comput Sc Advances in Databases = Lect. Notes. Comput. Sc. Advances in Database Systems = Adv Database Syst Advances in Database Systems = Adv. Database Syst. Advances in Database Technologies = Lect Notes Comput Sc Advances in Database Technologies = Lect. Notes. Comput. Sc. Advances in Database Technology-debt 2000, Proceedings = Lect Notes Comput Sc Advances in Database Technology-debt 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt 2002 = Lect Notes Comput Sc Advances in Database Technology - Edbt 2002 = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt 2004, Proceedings = Lect Notes Comput Sc Advances in Database Technology - Edbt 2004, Proceedings = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt 2006 = Lect Notes Comput Sc Advances in Database Technology - Edbt 2006 = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt 90 = Lect Notes Comput Sc Advances in Database Technology - Edbt 90 = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt 92 = Lect Notes Comput Sc Advances in Database Technology - Edbt 92 = Lect. Notes. Comput. Sc. Advances in Database Technology - Edbt'98 = Lect Notes Comput Sc Advances in Database Technology - Edbt'98 = Lect. Notes. Comput. Sc. Advances in Databse Technology-edbt 2000, Proceedings = Lect Notes Comput Sc Advances in Databse Technology-edbt 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Data Management = Stud Comput Intell Advances in Data Management = Stud. Comput. Intell. Advances in Data Mining: Applications and Theoretical Aspects = Lect Notes Artif Int Advances in Data Mining: Applications and Theoretical Aspects = Lect. Notes. Artif. Int. Advances in Data Mining = Lect Notes Artif Int Advances in Data Mining = Lect. Notes. Artif. Int. Advances in Data Mining = Lect Notes Comput Sc Advances in Data Mining = Lect. Notes. Comput. Sc. Advances in Data Mining, Proceedings = Lect Notes Artif Int Advances in Data Mining, Proceedings = Lect. Notes. Artif. Int. Advances in Data Mining: Theoretical Aspects and Applications, Proceedings = Lect Notes Artif Int Advances in Data Mining: Theoretical Aspects and Applications, Proceedings = Lect. Notes. Artif. Int. Advances in Data Networks, Communications, Computers = Adv Data Netw Commun Advances in Data Networks, Communications, Computers = Adv. Data Netw. Commun. Advances in Data Networks Communications Computers-proceedings = Adv Data Netw Commun Advances in Data Networks Communications Computers-proceedings = Adv. Data Netw. Commun. Advances in Decision Analysis = Math Modell Advances in Decision Analysis = Math. Modell. Advances in Decision Analysis = Math Model-theor App Advances in Decision Analysis = Math. Model-theor. App. Advances in Decision Making Under Risk and Uncertainty = Theory Decis Ser C G Advances in Decision Making Under Risk and Uncertainty = Theory. Decis. Ser. C. G. Advances in Deep-fat Frying of Foods = Contemp Food Eng Advances in Deep-fat Frying of Foods = Contemp. Food. Eng. Advances in Degradation Modeling: Applications to Reliability, Survival Analysis, and Finance = Stat Ind Technol Advances in Degradation Modeling: Applications to Reliability, Survival Analysis, and Finance = Stat. Ind. Technol. Advances in Delivery Science and Technology = Adv Del Sci Technol Advances in Delivery Science and Technology = Adv. Del. Sci. Technol. Advances in dental research = Adv Dent Res Advances in Dental Research = Adv. Dent. Res. Advances in dermatology = Adv Dermatol Advances in Dermatology = Adv. Dermatol. Advances In Dermatology=Adv Dermatol;; Advances in Design and Control = Adv Des Control Advances in Design and Control = Adv. Des. Control Advances in Design and Manufacturing = Adv Des Man Advances in Design and Manufacturing = Adv. Des. Man. Advances in Design and Specification Languages for Socs = Chdl Ser Advances in Design and Specification Languages for Socs = Chdl. Ser. Advances in Design = Springer Ser Adv Man Advances in Design = Springer. Ser. Adv. Man. Advances in Design = Spr Ser Adv Manuf Advances in Design = Spr. Ser. Adv. Manuf. Advances in Destructive and Non-destructive Analysis for Environmental Monitoring and Nuclear Forensics = P S Iaea Advances in Destructive and Non-destructive Analysis for Environmental Monitoring and Nuclear Forensics = P. S. Iaea. Advances in Developmental Biology = Adv. Dev. Biol. Advances in Diagnostic and Therapeutic Ultrasound Imaging = Artech Hse Bioinf Bi Advances in Diagnostic and Therapeutic Ultrasound Imaging = Artech. Hse. Bioinf. Bi. Advances in Dielectric Ceramic Materials = Ceram Trans Advances in Dielectric Ceramic Materials = Ceram. Trans. Advances in Dielectrics = Adv Dielectr Advances in Dielectrics = Adv. Dielectr. Advances in Difference Equations = Adv Differ Equ-ny Advances in Difference Equations = Adv. Differ. Equ-ny. Advances in Differential Equations = Adv Differential Equ Advances in Differential Equations = Adv. Differential Equ. Advances in Differential Equations = Adv. Differential Equations Advances in Differential Evolution = Stud Comput Intell Advances in Differential Evolution = Stud. Comput. Intell. Advances in Digital Forensic Iii = Int Fed Info Proc Advances in Digital Forensic Iii = Int. Fed. Info. Proc. Advances in Digital Forensics Ii = Int Fed Info Proc Advances in Digital Forensics Ii = Int. Fed. Info. Proc. Advances in Digital Forensics = Int Fed Info Proc Advances in Digital Forensics = Int. Fed. Info. Proc. Advances in Digital Forensics Iv = Int Fed Info Proc Advances in Digital Forensics Iv = Int. Fed. Info. Proc. Advances in Digital Forensics V = Ifip Adv Inf Comm Te Advances in Digital Forensics V = Ifip. Adv. Inf. Comm. Te. Advances in Discrete Mathematics and Applications = Adv Discrete Math Advances in Discrete Mathematics and Applications = Adv. Discrete Math. Advances in Discrete Tomography and Its Applications = Appl Numer Harmon An Advances in Discrete Tomography and Its Applications = Appl. Numer. Harmon. An. Advances in Disordered Semiconductors = Adv Disord Advances in Disordered Semiconductors = Adv. Disord. Advances in Display Technologies and E-papers and Flexible Displays = Proc Spie Advances in Display Technologies and E-papers and Flexible Displays = Proc. Spie. Advances in Distributed Systems = Lect Notes Comput Sc Advances in Distributed Systems = Lect. Notes. Comput. Sc. Advances in Distribution Theory, Order Statistics, and Inference = Stat Ind Technol Advances in Distribution Theory, Order Statistics, and Inference = Stat. Ind. Technol. Advances in Dna Damage and Repair = Nato Adv Sci I A-lif Advances in Dna Damage and Repair = Nato. Adv. Sci. I. A-lif. Advances in Downy Mildew Research - Vol 2 = Dev Plant Pathol Advances in Downy Mildew Research - Vol 2 = Dev. Plant. Pathol. Advances in drug research = Adv Drug Res Advances in Drug Research = Adv. Drug Res. Advances in Dynamic Games and Applications = Ann Int Soc Dyn Game Advances in Dynamic Games and Applications = Ann. Int. Soc. Dyn. Game. Advances in Dynamic Games and Their Applications = Ann Int Soc Dyn Game Advances in Dynamic Games and Their Applications = Ann. Int. Soc. Dyn. Game. Advances in Dynamic Games = Ann Int Soc Dyn Game Advances in Dynamic Games = Ann. Int. Soc. Dyn. Game. Advances in Dynamic Game Theory = Ann Int Soc Dyn Game Advances in Dynamic Game Theory = Ann. Int. Soc. Dyn. Game Advances in Early Education and Day Care = Adv Early Educ Day C Advances in Early Education and Day Care = Adv. Early Educ. Day C. Advances in Earth Oriented Applications of Space Technology = Adv Earth Orient Sp Advances in Earth Oriented Applications of Space Technology = Adv. Earth Orient. Sp. Advances in Earthquake Engineering = Adv Earthq Engn Advances in Earthquake Engineering = Adv. Earthq. Engn. Advances in Earthquake Engineering for Urban Risk Reduction = Nato Sci S Ss Iv Ear Advances in Earthquake Engineering for Urban Risk Reduction = Nato. Sci. S. Ss. Iv. Ear. Advances in Earth Science: From Earthquakes to Global Warming = Roy Soc Ser Adv Sci Advances in Earth Science: From Earthquakes to Global Warming = Roy. Soc. Ser. Adv. Sci. Advances in Ecological Economics = Adv Ecol Econ Advances in Ecological Economics = Adv. Ecol. Econ. Advances in Ecological Research = Adv Ecol Res Advances in Ecological Research = Adv. Ecol. Res. Advances in ecological research = Adv Ecol Rs Advances in Ecological Research: Ecological Networks, Vol 42 = Adv Ecol Res Advances in Ecological Research: Ecological Networks, Vol 42 = Adv. Ecol. Res. Advances in Ecological Research, Vol 24 = Adv Ecol Res Advances in Ecological Research, Vol 24 = Adv. Ecol. Res. Advances in Ecological Research, Vol 25 = Adv Ecol Res Advances in Ecological Research, Vol 25 = Adv. Ecol. Res. Advances in Ecological Research, Vol 27 = Adv Ecol Res Advances in Ecological Research, Vol 27 = Adv. Ecol. Res. Advances in Ecological Research, Vol 28 = Adv Ecol Res Advances in Ecological Research, Vol 28 = Adv. Ecol. Res. Advances in Ecological Research, Vol 29 = Adv Ecol Res Advances in Ecological Research, Vol 29 = Adv. Ecol. Res. Advances in Ecological Research, Vol 30 = Adv Ecol Res Advances in Ecological Research, Vol 30 = Adv. Ecol. Res. Advances in Ecological Research, Vol 31 = Adv Ecol Res Advances in Ecological Research, Vol 31 = Adv. Ecol. Res. Advances in Ecological Research, Vol 32 = Adv Ecol Res Advances in Ecological Research, Vol 32 = Adv. Ecol. Res. Advances in Ecological Research, Vol 33 = Adv Ecol Res Advances in Ecological Research, Vol 33 = Adv. Ecol. Res. Advances in Ecological Research, Vol 36 = Adv Ecol Res Advances in Ecological Research, Vol 36 = Adv. Ecol. Res. Advances in Ecological Research, Vol. 37: Population Dynamics and Laboratory Ecology = Adv Ecol Res Advances in Ecological Research, Vol. 37: Population Dynamics and Laboratory Ecology = Adv. Ecol. Res. Advances in Ecological Research, Vol 38 = Adv Ecol Res Advances in Ecological Research, Vol 38 = Adv. Ecol. Res. Advances in Ecological Research, Vol 39 = Adv Ecol Res Advances in Ecological Research, Vol 39 = Adv. Ecol. Res. Advances in Ecological Research, Vol 40 = Adv Ecol Res Advances in Ecological Research, Vol 40 = Adv. Ecol. Res. Advances in Ecological Research, Vol 41 = Adv Ecol Res Advances in Ecological Research, Vol 41 = Adv. Ecol. Res. Advances in Ecological Research, Vol 44 = Adv Ecol Res Advances in Ecological Research, Vol 44 = Adv. Ecol. Res. Advances in Ecological Sciences = Adv Ecol Sci Advances in Ecological Sciences = Adv. Ecol. Sci. Advances in Econometrics = Adv Econom Advances in Econometrics = Adv. Econom. Advances in Econometrics = Adv Econometrics Advances in Econometrics = Adv. Econometrics Advances in Econometrics and Modelling = Adv St Theo Advances in Econometrics and Modelling = Adv. St. Theo. Advances in Econometrics : A Research Annual = Adv E Advances in Econometrics : A Research Annual = Adv. E. Advances in Econometrics : A Research Annual = Adv Econometrics Advances in Econometrics : A Research Annual = Adv. Econometrics Advances in Econometrics, Vol 13 1998 = Adv E Advances in Econometrics, Vol 13 1998 = Adv. E. Advances in Econometrics, Vol 14 = Adv E Advances in Econometrics, Vol 14 = Adv. E. Advances in Economics and Econometrics: Theory and Applications, Ninth World Congress, Vol I = Econ Soc Monogr Advances in Economics and Econometrics: Theory and Applications, Ninth World Congress, Vol I = Econ. Soc. Monogr. Advances in Education in Diverse Communities-research Policy and Praxis = Adv Educ Di Advances in Education in Diverse Communities-research Policy and Praxis = Adv. Educ. Di. Advances in Education in Diverse Communities-research Policy and Praxis = Adv Educ Divers Comm Advances in Education in Diverse Communities-research Policy and Praxis = Adv. Educ. Divers. Comm. Advances in Eicosanoid Research = E Schering Res Fdn W Advances in Eicosanoid Research = E. Schering. Res. Fdn. W. Advances in Electrical and Computer Engineering = Adv Electr Comput En Advances in Electrical and Computer Engineering = Adv. Electr. Comput. En. Advances in Electrical and Electronic Engineering = Adv Elect Electr Eng Advances in Electrical and Electronic Engineering = Adv. Elect. Electr. Eng. Advances in Electrical Engineering and Electromagnetics = Adv Elec Eng Electro Advances in Electrical Engineering and Electromagnetics = Adv. Elec. Eng. Electro. Advances in Electrocardiology = Int Congr Ser Advances in Electrocardiology = Int. Congr. Ser. Advances in Electroceramic Materials = Ceram Trans Advances in Electroceramic Materials = Ceram. Trans. Advances in Electroceramic Materials Ii = Ceram Trans Advances in Electroceramic Materials Ii = Ceram. Trans. Advances in Electrochemical Science and Engineering = Adv. Electrochem. Sci. Eng. Advances in Electrochemistry and Electrochemical Engineering = Adv Electroch El Eng Advances in Electrochemistry and Electrochemical Engineering = Adv. Electroch. El. Eng. Advances in Electromagnetic Fields in Living Systems = Adv Electromag Field Advances in Electromagnetic Fields in Living Systems = Adv. Electromag. Field. Advances in Electromagnetic Fields in Living Systems, Vol 5 = Adv Electromag Field Advances in Electromagnetic Fields in Living Systems, Vol 5 = Adv. Electromag. Field. Advances in Electromagnetics of Complex Media and Metamaterials = Nato Sci Ser Ii-math Advances in Electromagnetics of Complex Media and Metamaterials = Nato. Sci. Ser. Ii-math. Advances in Electromagnetics of Complex Media and Metamaterials = Nato Sci Ser Ii Math Advances in Electromagnetics of Complex Media and Metamaterials = Nato. Sci. Ser. Ii. Math. Advances in Electronic Ceramic Materials = Ceram Eng Sci Proc Advances in Electronic Ceramic Materials = Ceram. Eng. Sci. Proc. Advances in Electronic Ceramics = Ceram Eng Sci Proc Advances in Electronic Ceramics = Ceram. Eng. Sci. Proc. Advances in Electronic Ceramics Ii = Ceram Eng Sci Proc Advances in Electronic Ceramics Ii = Ceram. Eng. Sci. Proc. Advances in Electronic Materials = Mater Sci Forum Advances in Electronic Materials = Mater. Sci. Forum. Advances in Electronics and Electron Physics = Adv Electron El Phys Advances in Electronics and Electron Physics = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 83 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 83 = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 84 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 84 = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 85 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 85 = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 86 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 86 = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 87 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 87 = Adv. Electron El. Phys. Advances in Electronics and Electron Physics, Vol 88 = Adv Electron El Phys Advances in Electronics and Electron Physics, Vol 88 = Adv. Electron El. Phys. Advances in Electronic Testing = Front Electron Test Advances in Electronic Testing = Front. Electron. Test. Advances in Electronincs and Electron Physics = Adv Electron El Phys Advances in Electronincs and Electron Physics = Adv. Electron El. Phys. Advances in endocrinology and metabolism = Adv Endocrinol Metab Advances in Endocrinology and Metabolism = Adv. Endocrinol. Metab. Advances in Energy Materials = Ceram Trans Advances in Energy Materials = Ceram. Trans. Advances in Engineering = Adv Eng Advances in Engineering = Adv. Eng. Advances in Engineering Materials = Key Eng Mat Advances in Engineering Materials = Key. Eng. Mat. Advances in Engineering Plasticity and Its Applications, Pts 1 and 2 = Key Eng Mat Advances in Engineering Plasticity and Its Applications, Pts 1 and 2 = Key. Eng. Mat. Advances in Engineering Plasticity and Its Applications, Pts 1 and 2 = Key Eng Mater Advances in Engineering Plasticity and Its Applications, Pts 1 and 2 = Key. Eng. Mater. Advances in Engineering Plasticity, Pts 1-2 = Key Eng Mat Advances in Engineering Plasticity, Pts 1-2 = Key. Eng. Mat. Advances in Engineering Plasticity, Pts 1-2 = Key Eng Mater Advances in Engineering Plasticity, Pts 1-2 = Key. Eng. Mater. Advances in Engineering Software = Adv Eng Softw Advances in Engineering Software = Adv. Eng. Softw. Advances in Engineering Software = Adv. Eng. Software Advances in Engineering Software and Workstations = Adv Eng Softw Workst Advances in Engineering Software and Workstations = Adv. Eng. Softw. Workst. Advances in Engineering Structures, Mechanics & Construction, Proceedings = Solid Mech Appl Advances in Engineering Structures, Mechanics & Construction, Proceedings = Solid. Mech. Appl. Advances in Enterprise Engineering Iii = Lect Notes Bus Inf Advances in Enterprise Engineering Iii = Lect. Notes. Bus. Inf. Advances in Enterprise Engineering Iii = Lect Notes Bus Inf P Advances in Enterprise Engineering Iii = Lect. Notes. Bus. Inf. P. Advances in Enterprise Engineering Ii, Proceedings = Lect Notes Bus Inf Advances in Enterprise Engineering Ii, Proceedings = Lect. Notes. Bus. Inf. Advances in Enterprise Engineering Ii, Proceedings = Lect Notes Bus Inf P Advances in Enterprise Engineering Ii, Proceedings = Lect. Notes. Bus. Inf. P. Advances in Enterprise Engineering I, Proceedings = Lect Notes Bus Inf Advances in Enterprise Engineering I, Proceedings = Lect. Notes. Bus. Inf. Advances in Enterprise Engineering I, Proceedings = Lect Notes Bus Inf P Advances in Enterprise Engineering I, Proceedings = Lect. Notes. Bus. Inf. P. Advances in Enterprise Engineering Iv = Lect Notes Bus Inf Advances in Enterprise Engineering Iv = Lect. Notes. Bus. Inf. Advances in Enterprise Engineering Iv = Lect Notes Bus Inf P Advances in Enterprise Engineering Iv = Lect. Notes. Bus. Inf. P. Advances in Enterprise Engineering V = Lect Notes Bus Inf P Advances in Enterprise Engineering V = Lect. Notes. Bus. Inf. P. Advances in Entrepreneurship Firm Emergence and Growth = Adv Entrep Firm Emer Advances in Entrepreneurship Firm Emergence and Growth = Adv. Entrep. Firm Emer. Advances in Entrepreneurship, Firm Emergence and Growth, Vol 7 = Adv Entrep Firm Emer Advances in Entrepreneurship, Firm Emergence and Growth, Vol 7 = Adv. Entrep. Firm Emer. Advances in Environmental Accounting and Management = Adv Environ Acc Man Advances in Environmental Accounting and Management = Adv. Environ. Acc. Man. Advances in Environmental Measurement Methods for Asbestos = Am Soc Test Mater Advances in Environmental Measurement Methods for Asbestos = Am. Soc. Test. Mater. Advances in Environmental Research = Adv Environ Res Advances in Environmental Research = Adv. Environ. Res. Advances in Environmental Research-nova = Adv Environ Res-ser Advances in Environmental Research-nova = Adv. Environ. Res-ser. Advances in Environmental Research, Vol 2 = Adv Environ Res-ser Advances in Environmental Research, Vol 2 = Adv. Environ. Res-ser. Advances in enzyme regulation = Adv Enzyme Regul Advances in Enzyme Regulation = Adv Enzyme Regul Advances in Enzyme Regulation = Adv. Enzyme Regul. Advances In Enzyme Regulation=Adv Enzyme Regul;; Advances in Enzyme Regulation, Vol 28 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 28 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 29 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 29 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 30 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 30 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 31 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 31 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 32 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 32 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 33 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 33 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 34 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 34 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 35 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 35 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 36 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 36 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 37 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 37 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 38 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 38 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 39 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 39 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 40 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 40 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 41 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 41 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 42, Proceedings = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 42, Proceedings = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 43 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 43 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 44 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 44 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 45 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 45 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 46, Proceedings = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 46, Proceedings = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 47 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 47 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 48 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 48 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 49 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 49 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 50 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 50 = Adv. Enzyme Regul. Advances in Enzyme Regulation, Vol 51 = Adv Enzyme Regul Advances in Enzyme Regulation, Vol 51 = Adv. Enzyme Regul. Advances in Enzymology and Related Areas of Molecular Biology = Adv Enzymol Ramb Advances in Enzymology and Related Areas of Molecular Biology = Adv. Enzymol. Ramb. Advances in enzymology and related areas of molecular biology = Adv Enzymol Relat Areas Mol Biol Advances in Enzymology and Related Areas of Molecular Biology = Adv. Enzymol. Relat. Areas Mol. Biol. Advances In Enzymology and Related Areas of Molecular Biology=Adv Enzymol Relat Areas Mol Biol;; Advances in Enzymology and Related Areas of Molecular Biology, Vol 67 = Adv Enzymol Ramb Advances in Enzymology and Related Areas of Molecular Biology, Vol 67 = Adv. Enzymol. Ramb. Advances in Enzymology and Related Areas of Molecular Biology, Vol 68 = Adv Enzymol Ramb Advances in Enzymology and Related Areas of Molecular Biology, Vol 68 = Adv. Enzymol. Ramb. Advances in Enzymology and Related Areas of Molecular Biology, Vol 69 = Adv Enzymol Ramb Advances in Enzymology and Related Areas of Molecular Biology, Vol 69 = Adv. Enzymol. Ramb. Advances in enzymology and related subjects of biochemistry = Adv Enzymol Relat Subj Biochem Advances in Enzymology and Related Subjects of Biochemistry = Adv Enzymol Rel S Bi Advances in Enzymology and Related Subjects of Biochemistry = Adv. Enzymol. Rel. S. Bi. Advances in Enzymology & Related Areas of Molecular Biology, Vol 71 = Adv Enzymol Ramb Advances in Enzymology & Related Areas of Molecular Biology, Vol 71 = Adv. Enzymol. Ramb. Advances in Enzymology, Vol 72 = Adv Enzymol Ramb Advances in Enzymology, Vol 72 = Adv. Enzymol. Ramb. Advances in Enzymology, Vol 73 = Adv Enzymol Ramb Advances in Enzymology, Vol 73 = Adv. Enzymol. Ramb. Advances in Enzymology, Vol 74 = Adv Enzymol Ramb Advances in Enzymology, Vol 74 = Adv. Enzymol. Ramb. Advances in Ethology = Adv. Ethol. Advances in Evolutionary Computing for System Design = Stud Comput Intell Advances in Evolutionary Computing for System Design = Stud. Comput. Intell. Advances in Experimental Mechanics = Appl Mech Mater Advances in Experimental Mechanics = Appl. Mech. Mater. Advances in Experimental Mechanics Iv = Appl Mech Mater Advances in Experimental Mechanics Iv = Appl. Mech. Mater. Advances in Experimental Mechanics V = Appl Mech Mater Advances in Experimental Mechanics V = Appl. Mech. Mater. Advances in Experimental Mechanics Vi = Appl Mech Mater Advances in Experimental Mechanics Vi = Appl. Mech. Mater. Advances in experimental medicine and biology = Adv Exp Med Biol Advances in Experimental Medicine and Biology = Adv Exp Med Biol Advances in Experimental Medicine and Biology = Adv. Exp. Med. Biol. Advances In Experimental Medicine and Biology=Adv Exp Med Biol;; Advances in Experimental Social Psychology = Adv Exp Soc Psychol Advances in Experimental Social Psychology = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 26 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 26 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 29 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 29 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 30 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 30 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 32 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 32 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 33 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 33 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 34 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 34 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 35 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 35 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol. 36 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol. 36 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 37 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 37 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 38 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 38 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 41 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 41 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 42 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 42 = Adv. Exp. Soc. Psychol. Advances in Experimental Social Psychology, Vol 43 = Adv Exp Soc Psychol Advances in Experimental Social Psychology, Vol 43 = Adv. Exp. Soc. Psychol. Advances in Family Research = Adv Fam Res Advances in Family Research = Adv. Fam. Res. Advances in Fatigue Crack Closure Measurement and Analysis: Vol 2 = Am Soc Test Mater Advances in Fatigue Crack Closure Measurement and Analysis: Vol 2 = Am. Soc. Test. Mater. Advances in Fatigue Lifetime Predictive Techniques : 2nd Vol = Am Soc Test Mater Advances in Fatigue Lifetime Predictive Techniques : 2nd Vol = Am. Soc. Test. Mater. Advances in Fatigue Lifetime Predictive Techniques = Am Soc Test Mater Advances in Fatigue Lifetime Predictive Techniques = Am. Soc. Test. Mater. Advances in Fertility and Reproductive Medicine = Int Congr Ser Advances in Fertility and Reproductive Medicine = Int. Congr. Ser. Advances in fertility control = Adv Fertil Control Advances in Fiber Lasers = P Soc Photo-opt Ins Advances in Fiber Lasers = P. Soc. Photo-opt. Ins. Advances in Filtration and Separation Technology = Adv. Filtr. Sep. Technol. Advances in Financial Economics = Adv Financ Econ Advances in Financial Economics = Adv. Financ. Econ. Advances in Fisheries Science = Adv Fish Sc Advances in Fisheries Science = Adv. Fish. Sc. Advances in Fission-track Geochronology = Solid Earth Advances in Fission-track Geochronology = Solid. Earth. Advances in Fluidized Systems = Aiche Sym S Advances in Fluidized Systems = Aiche. Sym. S. Advances in Fluid Mechanics = Adv. Fluid Mech. Advances in Fluid Mechanics = Adv. Fluid Mech. Advances in Fluid Mechanics = Adv Fluid Mech Ser Advances in Fluid Mechanics = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics Ii = Adv Fluid Mech Ser Advances in Fluid Mechanics Ii = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics Iii = Adv Fluid Mech Ser Advances in Fluid Mechanics Iii = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics Iv = Adv Fluid Mech Ser Advances in Fluid Mechanics Iv = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics Series = Adv Fluid Mech Ser Advances in Fluid Mechanics Series = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics V = Adv Fluid Mech Ser Advances in Fluid Mechanics V = Adv. Fluid Mech. Ser. Advances in Fluid Mechanics Vii = Wit Trans Eng Sci Advances in Fluid Mechanics Vii = Wit. Trans. Eng. Sci. Advances in Fluid Mechanics Vi = Wit Trans Eng Sci Advances in Fluid Mechanics Vi = Wit. Trans. Eng. Sci. Advances in Fluorescence Sensing Technology Iii = P Soc Photo-opt Ins Advances in Fluorescence Sensing Technology Iii = P. Soc. Photo-opt. Ins. Advances in Fluorescence Sensing Technology Ii = P Soc Photo-opt Ins Advances in Fluorescence Sensing Technology Ii = P. Soc. Photo-opt. Ins. Advances in Fluorescence Sensing Technology Iv, Proceedings Of = P Soc Photo-opt Ins Advances in Fluorescence Sensing Technology Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Advances in Fluorescence Sensing Technology V = P Soc Photo-opt Ins Advances in Fluorescence Sensing Technology V = P. Soc. Photo-opt. Ins. Advances in fluorine research and dental caries prevention = Adv Fluorine Res Advances in Fluorine Research and Dental Caries Prevention = Adv. Fluorine Res. Advances in Focused Retrieval = Lect Notes Comput Sc Advances in Focused Retrieval = Lect. Notes. Comput. Sc. Advances in food and nutrition research = Adv Food Nutr Res Advances in Food and Nutrition Research = Adv. Food Nutr. Res. Advances In Food and Nutrition Research=Adv Food Nutr Res;; Advances in Food Dehydration = Contemp Food Eng Advances in Food Dehydration = Contemp. Food Eng. Advances in Food Engineering = Crc Food En Advances in Food Engineering = Crc. Food En. Advances in Food Mycology = Adv Exp Med Biol Advances in Food Mycology = Adv. Exp. Med. Biol. Advances in food research = Adv Food Res Advances in Food Research = Adv Food Res Advances in Food Research = Adv. Food Res. Advances in food research. Supplement = Adv Food Res Suppl Advances in Food Research. Supplement = Adv. Food Res. Suppl. Advances in Food Science and Technology = Food Sci Technol Advances in Food Science and Technology = Food Sci. Technol. Advances in Foreign Policy Analysis = Adv Foreign Policy A Advances in Foreign Policy Analysis = Adv. Foreign Policy A. Advances in Forensic Haemogenetics, 6 = Adv Foren H Advances in Forensic Haemogenetics, 6 = Adv. Foren. H. Advances in Forensic Haemogenetics = Adv Foren H Advances in Forensic Haemogenetics = Adv. Foren. H. Advances in Forensic Haemogenetics = Adv. Forensic Haemogenet. Advances in Forest Inventory for Sustainable Forest Management and Biodiversity Monitoring = For Sci Advances in Forest Inventory for Sustainable Forest Management and Biodiversity Monitoring = For. Sci. Advances in Fracture and Damage Mechanics Ix = Key Eng Mat Advances in Fracture and Damage Mechanics Ix = Key. Eng. Mat. Advances in Fracture and Damage Mechanics Ix = Key Eng Mater Advances in Fracture and Damage Mechanics Ix = Key. Eng. Mater. Advances in Fracture and Damage Mechanics = Key Eng Mat Advances in Fracture and Damage Mechanics = Key. Eng. Mat. Advances in Fracture and Damage Mechanics = Key Eng Mater Advances in Fracture and Damage Mechanics = Key. Eng. Mater. Advances in Fracture and Damage Mechanics Viii = Key Eng Mat Advances in Fracture and Damage Mechanics Viii = Key. Eng. Mat. Advances in Fracture and Damage Mechanics Viii = Key Eng Mater Advances in Fracture and Damage Mechanics Viii = Key. Eng. Mater. Advances in Fracture and Damage Mechanics Vii = Key Eng Mat Advances in Fracture and Damage Mechanics Vii = Key. Eng. Mat. Advances in Fracture and Damage Mechanics Vii = Key Eng Mater Advances in Fracture and Damage Mechanics Vii = Key. Eng. Mater. Advances in Fracture and Damage Mechanics Vi = Key Eng Mat Advances in Fracture and Damage Mechanics Vi = Key. Eng. Mat. Advances in Fracture and Damage Mechanics Vi = Key Eng Mater Advances in Fracture and Damage Mechanics Vi = Key. Eng. Mater. Advances in Fracture and Failure Prevention, Pts 1 and 2 = Key Eng Mat Advances in Fracture and Failure Prevention, Pts 1 and 2 = Key. Eng. Mat. Advances in Fracture and Failure Prevention, Pts 1 and 2 = Key Eng Mater Advances in Fracture and Failure Prevention, Pts 1 and 2 = Key. Eng. Mater. Advances in Fracture and Materials Behavior, Pts 1 and 2 = Adv Mater Res-switz Advances in Fracture and Materials Behavior, Pts 1 and 2 = Adv. Mater. Res-switz. Advances in Fracture and Materials Behavior, Pts 1 and 2 = Adv Mat Res Advances in Fracture and Materials Behavior, Pts 1 and 2 = Adv. Mat. Res. Advances in Fracture and Strength, Pts 1- 4 = Key Eng Mat Advances in Fracture and Strength, Pts 1- 4 = Key. Eng. Mat. Advances in Fracture and Strength, Pts 1- 4 = Key Eng Mater Advances in Fracture and Strength, Pts 1- 4 = Key. Eng. Mater. Advances in Fracture Resistance and Structural Integrity = Int S Stren Advances in Fracture Resistance and Structural Integrity = Int. S. Stren. Advances in Free Radical Biology and Medicine = Adv Free Radical Bio Advances in Free Radical Biology and Medicine = Adv. Free Radical Bio. Advances in Functional and Reparative Neurosurgery = Acta Neurochir Suppl Advances in Functional and Reparative Neurosurgery = Acta. Neurochir. Suppl. Advances in Functional and Reparative Neurosurgery = Act Neur S Advances in Functional and Reparative Neurosurgery = Act. Neur. S. Advances in Fusion and Processing of Glass = Ceram Trans Advances in Fusion and Processing of Glass = Ceram. Trans. Advances in Fusion and Processing of Glass Ii = Ceram Trans Advances in Fusion and Processing of Glass Ii = Ceram. Trans. Advances in Fusion and Processing of Glass Iii = Ceram Trans Advances in Fusion and Processing of Glass Iii = Ceram. Trans. Advances in Fuzzy Systems---Applications and Theory = Adv. Fuzzy Systems Appl. Theory Advances in Gan, Gaas, Sic and Related Alloys On Silicon Substrates = Mater Res Soc Symp P Advances in Gan, Gaas, Sic and Related Alloys On Silicon Substrates = Mater. Res. Soc. Symp. P. Advances in Gender Research = Adv Gend Res Advances in Gender Research = Adv. Gend. Res. Advances in genetics = Adv Genet Advances in Genetics = Adv Genet Advances in Genetics = Adv. Genet. Advances In Genetics=Adv Genet;; Advances in Genetics Incorporating Molecular Genetic Medicine = Adv Genet Advances in Genetics Incorporating Molecular Genetic Medicine = Adv. Genet. Advances in Genetics Research Series = Adv Genet Res Ser Advances in Genetics Research Series = Adv. Genet. Res. Ser. Advances in Genetics Research, Vol 1 = Adv Genet Res Ser Advances in Genetics Research, Vol 1 = Adv. Genet. Res. Ser. Advances in Genetics Research, Vol 2 = Adv Genet Res Ser Advances in Genetics Research, Vol 2 = Adv. Genet. Res. Ser. Advances in Genetics, Vol 31 = Adv Genet Advances in Genetics, Vol 31 = Adv. Genet. Advances in Genetics, Vol 32 = Adv Genet Advances in Genetics, Vol 32 = Adv. Genet. Advances in Genetics, Vol 33 = Adv Genet Advances in Genetics, Vol 33 = Adv. Genet. Advances in Genetics, Vol 34 = Adv Genet Advances in Genetics, Vol 34 = Adv. Genet. Advances in Genetics, Vol 35 = Adv Genet Advances in Genetics, Vol 35 = Adv. Genet. Advances in Genetics, Vol 36 = Adv Genet Advances in Genetics, Vol 36 = Adv. Genet. Advances in Genetics, Vol. 37 = Adv Genet Advances in Genetics, Vol. 37 = Adv. Genet. Advances in Genetics, Vol 38 = Adv Genet Advances in Genetics, Vol 38 = Adv. Genet. Advances in Genetics, Vol 39 = Adv Genet Advances in Genetics, Vol 39 = Adv. Genet. Advances in Genetics, Vol 41 = Adv Genet Advances in Genetics, Vol 41 = Adv. Genet. Advances in Genetics, Vol 43 = Adv Genet Advances in Genetics, Vol 43 = Adv. Genet. Advances in Genetics, Vol 47 = Adv Genet Advances in Genetics, Vol 47 = Adv. Genet. Advances in Genetics, Vol 49 = Adv Genet Advances in Genetics, Vol 49 = Adv. Genet. Advances in Genetics, Vol 62 = Adv Genet Advances in Genetics, Vol 62 = Adv. Genet. Advances in Genetics, Vol 63 = Adv Genet Advances in Genetics, Vol 63 = Adv. Genet. Advances in Genetics, Vol 64 = Adv Genet Advances in Genetics, Vol 64 = Adv. Genet. Advances in Genetics, Vol 66 = Adv Genet Advances in Genetics, Vol 66 = Adv. Genet. Advances in Geocomputing = Lect Notes Earth Sci Advances in Geocomputing = Lect. Notes. Earth. Sci. Advances in Geoecology = Adv Geoecol Advances in Geoecology = Adv. Geoecol. Advances in Geographic Information Science = Adv Geogr Inform Sci Advances in Geographic Information Science = Adv. Geogr. Inform. Sci. Advances in Geometric Modeling and Processing = Lect Notes Comput Sc Advances in Geometric Modeling and Processing = Lect. Notes. Comput. Sc. Advances in Geometric Modeling and Processing, Proceedings = Lect Notes Comput Sc Advances in Geometric Modeling and Processing, Proceedings = Lect. Notes. Comput. Sc. Advances in Geometry = Adv Geom Advances in Geometry = Adv. Geom. Advances in Geophysical and Environmental Mechanics and Mathematics = Adv Geophys Env Mech Advances in Geophysical and Environmental Mechanics and Mathematics = Adv. Geophys. Env. Mech. Advances in Geophysics = Adv Geophys Advances in Geophysics = Adv. Geophys. Advances in Geophysics, Vol 34 = Adv Geophys Advances in Geophysics, Vol 34 = Adv. Geophys. Advances in Geophysics, Vol 35 = Adv Geophys Advances in Geophysics, Vol 35 = Adv. Geophys. Advances in Geophysics, Vol 36 = Adv Geophys Advances in Geophysics, Vol 36 = Adv. Geophys. Advances in Geophysics, Vol 37 = Adv Geophys Advances in Geophysics, Vol 37 = Adv. Geophys. Advances in Geophysics, Vol 38 = Adv Geophys Advances in Geophysics, Vol 38 = Adv. Geophys. Advances in Geophysics, Vol. 39 = Adv Geophys Advances in Geophysics, Vol. 39 = Adv. Geophys. Advances in Geophysics, Vol 40 = Adv Geophys Advances in Geophysics, Vol 40 = Adv. Geophys. Advances in Geophysics, Vol 41 = Adv Geophys Advances in Geophysics, Vol 41 = Adv. Geophys. Advances in Geophysics, Vol. 43 = Adv Geophys Advances in Geophysics, Vol. 43 = Adv. Geophys. Advances in Geophysics, Vol. 44 = Adv Geophys Advances in Geophysics, Vol. 44 = Adv. Geophys. Advances in Geophysics, Vol 45 = Adv Geophys Advances in Geophysics, Vol 45 = Adv. Geophys. Advances in Geophysics, Vol 46 = Adv Geophys Advances in Geophysics, Vol 46 = Adv. Geophys. Advances in Geophysics, Vol 47 = Adv Geophys Advances in Geophysics, Vol 47 = Adv. Geophys. Advances in Geophysics, Vol 48 = Adv Geophys Advances in Geophysics, Vol 48 = Adv. Geophys. Advances in Geophysics, Vol 49 = Adv Geophys Advances in Geophysics, Vol 49 = Adv. Geophys. Advances in Geophysics, Vol 50 = Adv Geophys Advances in Geophysics, Vol 50 = Adv. Geophys. Advances in Geophysics, Vol 51 = Adv Geophys Advances in Geophysics, Vol 51 = Adv. Geophys. Advances in Geophysics, Vol 52 = Adv Geophys Advances in Geophysics, Vol 52 = Adv. Geophys. Advances in Geosynthetic Clay Liner Technology: 2nd Symposium = Am Soc Test Mater Advances in Geosynthetic Clay Liner Technology: 2nd Symposium = Am. Soc. Test. Mater. Advances in Geotechnical Engineering and Tunnelling = Adv Geotech Engn Tun Advances in Geotechnical Engineering and Tunnelling = Adv. Geotech. Engn. Tun. Advances in gerontological research = Adv Gerontol Res Advances in Gerontological Research = Adv. Gerontol. Res. Advances in Ginkgo Biloba Extract Research = Adv Ginkgo Advances in Ginkgo Biloba Extract Research = Adv. Ginkgo Advances in Global Change Research = Adv Glob Change Res Advances in Global Change Research = Adv. Glob. Change Res. Advances in Global Leadership = Adv Glob Leadership Advances in Global Leadership = Adv. Glob. Leadership Advances in Global Leadership, Vol 3 = Adv Glob Leadership Advances in Global Leadership, Vol 3 = Adv. Glob. Leadership. Advances in Global Leadership, Vol 4 = Adv Glob Leadership Advances in Global Leadership, Vol 4 = Adv. Glob. Leadership. Advances in Global Leadership, Vol 5 = Adv Glob Leadership Advances in Global Leadership, Vol 5 = Adv. Glob. Leadership. Advances in Global Leadership, Vol 6 = Adv Glob Leadership Advances in Global Leadership, Vol 6 = Adv. Glob. Leadership. Advances in Global Magnetospheric Structure, Dynamics, and Region Coupling, Proceedings = Adv Space Res Advances in Global Magnetospheric Structure, Dynamics, and Region Coupling, Proceedings = Adv. Space. Res. Advances in Global Magnetospheric Structure, Dynamics, and Region Coupling, Proceedings = Adv Space Res-series Advances in Global Magnetospheric Structure, Dynamics, and Region Coupling, Proceedings = Adv. Space. Res-series. Advances in Global/regional Descriptions of Ionospheric Parameters = Adv Space Res-series Advances in Global/regional Descriptions of Ionospheric Parameters = Adv. Space. Res-series. Advances in Grey Systems Research = Underst Complex Syst Advances in Grey Systems Research = Underst. Complex. Syst. Advances in Grid and Pervasive Computing, Proceedings = Lect Notes Comput Sc Advances in Grid and Pervasive Computing, Proceedings = Lect. Notes. Comput. Sc. Advances in Grid Computing - Egc 2005 = Lect Notes Comput Sc Advances in Grid Computing - Egc 2005 = Lect. Notes. Comput. Sc. Advances in Grinding and Abrasive Processes = Key Eng Mat Advances in Grinding and Abrasive Processes = Key. Eng. Mat. Advances in Grinding and Abrasive Processes = Key Eng Mater Advances in Grinding and Abrasive Processes = Key. Eng. Mater. Advances in Grinding and Abrasive Technology Xiii = Key Eng Mat Advances in Grinding and Abrasive Technology Xiii = Key. Eng. Mat. Advances in Grinding and Abrasive Technology Xiii = Key Eng Mater Advances in Grinding and Abrasive Technology Xiii = Key. Eng. Mater. Advances in Grinding and Abrasive Technology Xiv = Key Eng Mat Advances in Grinding and Abrasive Technology Xiv = Key. Eng. Mat. Advances in Grinding and Abrasive Technology Xv = Key Eng Mat Advances in Grinding and Abrasive Technology Xv = Key. Eng. Mat. Advances in Grinding and Abrasive Technology Xv = Key Eng Mater Advances in Grinding and Abrasive Technology Xv = Key. Eng. Mater. Advances in Group Decision and Negotiation = Adv Group Decis Nego Advances in Group Decision and Negotiation = Adv. Group Decis. Nego. Advances in Group Processes = Adv Group Process Advances in Group Processes = Adv. Group Process. Advances in Gynecological and Obstetric Research Series = Adv Gyn Obs Advances in Gynecological and Obstetric Research Series = Adv. Gyn. Obs. Advances in Hadrontherapy = Int Congr Ser Advances in Hadrontherapy = Int. Congr. Ser. Advances in Health Care Management = Adv Health Care Mana Advances in Health Care Management = Adv. Health Care Mana. Advances in Health Economics and Health Services Research = Adv Health Advances in Health Economics and Health Services Research = Adv. Health Advances in Health Economics and Health Services Research = Adv Health Econ Heal Advances in Health Economics and Health Services Research = Adv. Health Econ. Heal. Advances in health economics and health services research = Adv Health Econ Health Serv Res Advances in Health Economics and Health Services Research = Adv. Health Econ. Health Serv. Res. Advances in health economics and health services research. Supplement = Adv Health Econ Health Serv Res Suppl Advances in Health Economics and Health Services Research. Supplement = Adv. Health Econ. Health Serv. Res. Suppl. Advances in Health Sciences Education = Adv Health Sci Educ Advances in Health Sciences Education = Adv. Health Sci. Educ. Advances in health sciences education : theory and practice = Adv Health Sci Educ Theory Pract Advances in Health Sciences Education Theory and Practice = Adv. Health Sci. Educ. Theory Pract. Advances in Hellenic Astronomy During The Iya09 = Astr Soc P Advances in Hellenic Astronomy During The Iya09 = Astr. Soc. P. Advances in Hematopoietic Stem Cell Transplantation and Molecular Therapy = Recent Res Cancer Advances in Hematopoietic Stem Cell Transplantation and Molecular Therapy = Recent. Res. Cancer. Advances in Hepatobiliary and Pancreatic Diseases - Special Clinical Topics = Falk Symp Advances in Hepatobiliary and Pancreatic Diseases - Special Clinical Topics = Falk. Symp. Advances in heterocyclic chemistry = Adv Heterocycl Chem Advances in Heterocyclic Chemistry = Adv Heterocycl Chem Advances in Heterocyclic Chemistry = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 102 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 102 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 53 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 53 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 56 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 56 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 57 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 57 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 58 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 58 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 59 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 59 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 60 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 60 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 61 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 61 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 62 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 62 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol. 67 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol. 67 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 68 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 68 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 69 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 69 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 70 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 70 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 71 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 71 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol. 72 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol. 72 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 73 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 73 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 74 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 74 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 75 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 75 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 76 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 76 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 77 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 77 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol. 78 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol. 78 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 79 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 79 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 80 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 80 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 81 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 81 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 82 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 82 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 83 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 83 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 84 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 84 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 85 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 85 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 86 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 86 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 87 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 87 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 88 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 88 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 89 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 89 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 90 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 90 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 91 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 91 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 92 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 92 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 93 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 93 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 94 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 94 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 95 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 95 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 96 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 96 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 97 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 97 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 98 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 98 = Adv. Heterocycl. Chem. Advances in Heterocyclic Chemistry, Vol 99 = Adv Heterocycl Chem Advances in Heterocyclic Chemistry, Vol 99 = Adv. Heterocycl. Chem. Advances in Heterocylic Chemistry, Vol 100 = Adv Heterocycl Chem Advances in Heterocylic Chemistry, Vol 100 = Adv. Heterocycl. Chem. Advances in High Energy Physics = Adv High Energy Phys Advances in High Energy Physics = Adv. High Energy Phys. Advances in High Performance Computing and Computational Sciences = Note N Fl Mech Mul D Advances in High Performance Computing and Computational Sciences = Note. N. Fl. Mech. Mul. D. Advances in High Performance Computing = Nato Asi 3 High Tech Advances in High Performance Computing = Nato. Asi. 3. High Tech. Advances in High Performance Computing (series) = Adv High Perf Com S Advances in High Performance Computing (series) = Adv. High Perf. Com. S. Advances in Homotopy Theory = Lond Math S Advances in Homotopy Theory = Lond. Math. S. Advances in Hopf Algebras = Lect Notes Pure Appl Advances in Hopf Algebras = Lect. Notes. Pure. Appl. Advances in Hospitality and Leisure = Adv Hosp Leisure Advances in Hospitality and Leisure = Adv. Hosp. Leisure Advances in Hospitality and Leisure, Vol 1 = Adv Hosp Leisure Advances in Hospitality and Leisure, Vol 1 = Adv. Hosp. Leisure. Advances in Hospitality and Leisure, Vol 2 = Adv Hosp Leisure Advances in Hospitality and Leisure, Vol 2 = Adv. Hosp. Leisure. Advances in Hospitality and Leisure, Vol 3 = Adv Hosp Leisure Advances in Hospitality and Leisure, Vol 3 = Adv. Hosp. Leisure. Advances in Hospitality and Leisure, Vol 4 = Adv Hosp Leisure Advances in Hospitality and Leisure, Vol 4 = Adv. Hosp. Leisure. Advances in Hospitality and Leisure, Vol 5 = Adv Hosp Leisure Advances in Hospitality and Leisure, Vol 5 = Adv. Hosp. Leisure. Advances in Human Factors and Ergonomics Series = Adv Hum Fact Erg Ser Advances in Human Factors and Ergonomics Series = Adv. Hum. Fact. Erg. Ser. Advances in Human Factors / Ergonomics = Adv Hum Fact Ergon Advances in Human Factors / Ergonomics = Adv. Hum. Fact. Ergon. Advances in Human Genetics, 22 = Adv Hum Genet Advances in Human Genetics, 22 = Adv. Hum. Genet. Advances in human genetics = Adv Hum Genet Advances in Human Genetics = Adv Hum Genet Advances in Human Genetics = Adv. Hum. Genet. Advances In Human Genetics=Adv Hum Genet;; Advances in Human Reproduction = I C S S Advances in Human Reproduction = I. C. S. S. Advances in Hybrid Information Technology = Lect Notes Comput Sc Advances in Hybrid Information Technology = Lect. Notes. Comput. Sc. Advances in Hydrogen Energy = Adv. Hydrogen Energy Advances in Hydroscience = Adv Hydrosci Advances in Hydroscience = Adv. Hydrosci. Advances in Image and Video Technology, Proceedings = Lect Notes Comput Sc Advances in Image and Video Technology, Proceedings = Lect. Notes. Comput. Sc. Advances in Image Compression and Automatic Target Recognition = P Soc Photo-opt Ins Advances in Image Compression and Automatic Target Recognition = P. Soc. Photo-opt. Ins. Advances in Imaging and Electron Physics = Adv Imag Elect Phys Advances in Imaging and Electron Physics = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics = Adv Imag Electr Phys Advances in Imaging and Electron Physics = Adv. Imag. Electr. Phys. Advances in Imaging and Electron Physics: Selected Problems of Computational Charge Particle Optics, Vol 155 = Adv Imag Elect Phys Advances in Imaging and Electron Physics: Selected Problems of Computational Charge Particle Optics, Vol 155 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol. 101 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol. 101 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 102 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 102 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 103 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 103 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 105 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 105 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 107 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 107 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 108 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 108 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 111 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 111 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 112 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 112 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 113 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 113 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 114 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 114 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 115 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 115 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 116 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 116 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 117 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 117 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 118 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 118 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 119 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 119 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 120 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 120 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 121 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 121 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 122 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 122 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 123 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 123 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 124 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 124 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 125 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 125 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 126 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 126 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 127 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 127 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 128 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 128 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 129 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 129 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 130 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 130 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol. 131 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol. 131 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 132 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 132 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 133 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 133 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 134 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 134 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 135 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 135 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 136 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 136 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 138 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 138 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 139 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 139 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 140 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 140 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 141 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 141 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 142 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 142 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 143 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 143 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 144 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 144 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 145 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 145 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 146 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 146 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 147 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 147 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 148 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 148 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 150 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 150 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 151 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 151 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 152 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 152 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 153 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 153 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 154 : Dirac's Difference Equation and The Physics of Finite Differences = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 154 : Dirac's Difference Equation and The Physics of Finite Differences = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 156 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 156 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics Vol 158 = Adv Imag Elect Phys Advances in Imaging and Electron Physics Vol 158 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 159 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 159 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 160 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 160 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 161 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 161 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 162 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 162 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 163 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 163 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 164 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 164 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 165 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 165 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 168 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 168 = Adv. Imag. Elect. Phys. Advances in Imaging and Electron Physics, Vol 99 = Adv Imag Elect Phys Advances in Imaging and Electron Physics, Vol 99 = Adv. Imag. Elect. Phys. Advances in immunity and cancer therapy = Adv Immun Cancer Ther Advances in Immunity and Cancer Therapy = Adv. Immun. Cancer Ther. Advances in immunology = Adv Immunol Advances in Immunology = Adv Immunol Advances in Immunology = Adv. Immunol. Advances In Immunology=Adv Immunol;; Advances in Immunology: Immunopathogenesis of Type 1 Diabetes Mellitus, Vol 100 = Adv Immunol Advances in Immunology: Immunopathogenesis of Type 1 Diabetes Mellitus, Vol 100 = Adv. Immunol. Advances in Immunology, Vol 101 = Adv Immunol Advances in Immunology, Vol 101 = Adv. Immunol. Advances in Immunology, Vol 102 = Adv Immunol Advances in Immunology, Vol 102 = Adv. Immunol. Advances in Immunology, Vol 103 = Adv Immunol Advances in Immunology, Vol 103 = Adv. Immunol. Advances in Immunology, Vol 104 = Adv Immunol Advances in Immunology, Vol 104 = Adv. Immunol. Advances in Immunology, Vol 105 = Adv Immunol Advances in Immunology, Vol 105 = Adv. Immunol. Advances in Immunology, Vol 106 = Adv Immunol Advances in Immunology, Vol 106 = Adv. Immunol. Advances in Immunology, Vol 108 = Adv Immunol Advances in Immunology, Vol 108 = Adv. Immunol. Advances in Immunology, Vol 109 = Adv Immunol Advances in Immunology, Vol 109 = Adv. Immunol. Advances in Immunology, Vol 110 = Adv Immunol Advances in Immunology, Vol 110 = Adv. Immunol. Advances in Immunology, Vol 53 = Adv Immunol Advances in Immunology, Vol 53 = Adv. Immunol. Advances in Immunology, Vol 54 = Adv Immunol Advances in Immunology, Vol 54 = Adv. Immunol. Advances in Immunology, Vol 55 = Adv Immunol Advances in Immunology, Vol 55 = Adv. Immunol. Advances in Immunology, Vol 57 = Adv Immunol Advances in Immunology, Vol 57 = Adv. Immunol. Advances in Immunology, Vol 58 = Adv Immunol Advances in Immunology, Vol 58 = Adv. Immunol. Advances in Immunology, Vol 59 = Adv Immunol Advances in Immunology, Vol 59 = Adv. Immunol. Advances in Immunology, Vol 60 = Adv Immunol Advances in Immunology, Vol 60 = Adv. Immunol. Advances in Immunology, Vol 61 = Adv Immunol Advances in Immunology, Vol 61 = Adv. Immunol. Advances in Immunology, Vol 62 = Adv Immunol Advances in Immunology, Vol 62 = Adv. Immunol. Advances in Immunology, Vol 63 = Adv Immunol Advances in Immunology, Vol 63 = Adv. Immunol. Advances in Immunology, Vol 64 = Adv Immunol Advances in Immunology, Vol 64 = Adv. Immunol. Advances in Immunology, Vol 65 = Adv Immunol Advances in Immunology, Vol 65 = Adv. Immunol. Advances in Immunology, Vol 66 = Adv Immunol Advances in Immunology, Vol 66 = Adv. Immunol. Advances in Immunology, Vol 68 = Adv Immunol Advances in Immunology, Vol 68 = Adv. Immunol. Advances in Immunology, Vol 69 = Adv Immunol Advances in Immunology, Vol 69 = Adv. Immunol. Advances in Immunology, Vol 70 = Adv Immunol Advances in Immunology, Vol 70 = Adv. Immunol. Advances in Immunology, Vol. 72 = Adv Immunol Advances in Immunology, Vol. 72 = Adv. Immunol. Advances in Immunology, Vol 73 = Adv Immunol Advances in Immunology, Vol 73 = Adv. Immunol. Advances in Immunology, Vol 75 = Adv Immunol Advances in Immunology, Vol 75 = Adv. Immunol. Advances in Immunology, Vol. 76 = Adv Immunol Advances in Immunology, Vol. 76 = Adv. Immunol. Advances in Immunology, Vol 77 = Adv Immunol Advances in Immunology, Vol 77 = Adv. Immunol. Advances in Immunology, Vol 78 = Adv Immunol Advances in Immunology, Vol 78 = Adv. Immunol. Advances in Immunology, Vol 79 = Adv Immunol Advances in Immunology, Vol 79 = Adv. Immunol. Advances in Immunology, Vol 80 = Adv Immunol Advances in Immunology, Vol 80 = Adv. Immunol. Advances in Immunology, Vol 81 = Adv Immunol Advances in Immunology, Vol 81 = Adv. Immunol. Advances in Immunology, Vol 82 = Adv Immunol Advances in Immunology, Vol 82 = Adv. Immunol. Advances in Immunology, Vol 83 = Adv Immunol Advances in Immunology, Vol 83 = Adv. Immunol. Advances in Immunology, Vol 84 = Adv Immunol Advances in Immunology, Vol 84 = Adv. Immunol. Advances in Immunology, Vol 86 = Adv Immunol Advances in Immunology, Vol 86 = Adv. Immunol. Advances in Immunology, Vol 87 = Adv Immunol Advances in Immunology, Vol 87 = Adv. Immunol. Advances in Immunology, Vol 88 = Adv Immunol Advances in Immunology, Vol 88 = Adv. Immunol. Advances in Immunology, Vol 89 = Adv Immunol Advances in Immunology, Vol 89 = Adv. Immunol. Advances in Immunology, Vol 90 = Adv Immunol Advances in Immunology, Vol 90 = Adv. Immunol. Advances in Immunology, Vol 91 = Adv Immunol Advances in Immunology, Vol 91 = Adv. Immunol. Advances in Immunology, Vol 92 = Adv Immunol Advances in Immunology, Vol 92 = Adv. Immunol. Advances in Immunology, Vol 93 = Adv Immunol Advances in Immunology, Vol 93 = Adv. Immunol. Advances in Immunology, Vol 95 = Adv Immunol Advances in Immunology, Vol 95 = Adv. Immunol. Advances in Immunology, Vol 96 = Adv Immunol Advances in Immunology, Vol 96 = Adv. Immunol. Advances in Immunology, Vol 97 = Adv Immunol Advances in Immunology, Vol 97 = Adv. Immunol. Advances in Immunology, Vol 98 = Adv Immunol Advances in Immunology, Vol 98 = Adv. Immunol. Advances in Immunology, Vol 99 = Adv Immunol Advances in Immunology, Vol 99 = Adv. Immunol. Advances in Immunology, Volume 56 = Adv Immunol Advances in Immunology, Volume 56 = Adv. Immunol. Advances in Independent Component Analysis = Persp Neural Comp Advances in Independent Component Analysis = Persp. Neural. Comp. Advances in Industrial and Hazardous Wastes Treatment = Adv Ind Hazard Waste Advances in Industrial and Hazardous Wastes Treatment = Adv. Ind. Hazard. Waste. Advances in Industrial and Labor Relations = Adv Ind Labor Relat Advances in Industrial and Labor Relations = Adv. Ind. Labor Relat. Advances in Industrial and Labor Relations : A Research Annual = Adv Ind Lab Advances in Industrial and Labor Relations : A Research Annual = Adv. Ind. Lab. Advances in Industrial and Labor Relations, Vol 14 = Adv Ind Labor Relat Advances in Industrial and Labor Relations, Vol 14 = Adv. Ind. Labor Relat. Advances in Industrial and Labor Relations, Vol 15 = Adv Ind Labor Relat Advances in Industrial and Labor Relations, Vol 15 = Adv. Ind. Labor Relat. Advances in Industrial and Labor Relations, Vol 16 = Adv Ind Labor Relat Advances in Industrial and Labor Relations, Vol 16 = Adv. Ind. Labor Relat. Advances in Industrial and Labor Relations, Vol 7, 1996 = Adv Ind Lab Advances in Industrial and Labor Relations, Vol 7, 1996 = Adv. Ind. Lab. Advances in Industrial and Labor Relations, Vol 8 - 1998 = Adv Ind Lab Advances in Industrial and Labor Relations, Vol 8 - 1998 = Adv. Ind. Lab. Advances in Industrial Control = Adv Ind Control Advances in Industrial Control = Adv. Ind. Control Advances in Industrial Engineering = Adv Ind Eng Advances in Industrial Engineering = Adv. Ind. Eng. Advances in Industrial Ergonomics and Safety = Adv Ind Erg Advances in Industrial Ergonomics and Safety = Adv. Ind. Erg. Advances in Industrial Ergonomics and Safety Ii = Adv Ind Erg Advances in Industrial Ergonomics and Safety Ii = Adv. Ind. Erg. Advances in Industrial Ergonomics and Safety Iii = Adv Ind Erg Advances in Industrial Ergonomics and Safety Iii = Adv. Ind. Erg. Advances in Industrial Ergonomics and Safety Iv = Adv Ind Erg Advances in Industrial Ergonomics and Safety Iv = Adv. Ind. Erg. Advances in Industrial Ergonomics and Safety Vi = Adv Ind Erg Advances in Industrial Ergonomics and Safety Vi = Adv. Ind. Erg. Advances in Industrial Ergonomics and Safety Vii = Adv Ind Erg Advances in Industrial Ergonomics and Safety Vii = Adv. Ind. Erg. Advances in Inflammatory Bowel Diseases = Falk Symp Advances in Inflammatory Bowel Diseases = Falk. Symp. Advances in Informatics = Lect Notes Comput Sc Advances in Informatics = Lect. Notes. Comput. Sc. Advances in Informatics, Proceedings = Lect Notes Comput Sc Advances in Informatics, Proceedings = Lect. Notes. Comput. Sc. Advances in Information and Computer Security = Lect Notes Comput Sc Advances in Information and Computer Security = Lect. Notes. Comput. Sc. Advances in Information and Computer Security, Proceedings = Lect Notes Comput Sc Advances in Information and Computer Security, Proceedings = Lect. Notes. Comput. Sc. Advances in Information and Intelligent Systems = Stud Comput Intell Advances in Information and Intelligent Systems = Stud. Comput. Intell. Advances in Information and Systems Sciences = Adv Inf Syst Sci Advances in Information and Systems Sciences = Adv. Inf. Syst. Sci. Advances in Information Processing in Organizations : A Research Annual = Adv Inf Pr Advances in Information Processing in Organizations : A Research Annual = Adv. Inf. Pr. Advances in Information Processing in Organizations, Vol 4 = Adv Inf Pr Advances in Information Processing in Organizations, Vol 4 = Adv. Inf. Pr. Advances in Information Recording = Dimacs Ser Discret M Advances in Information Recording = Dimacs. Ser. Discret. M. Advances in Information Reftrieval = Lect Notes Comput Sc Advances in Information Reftrieval = Lect. Notes. Comput. Sc. Advances in Information Retrieval = Lect Notes Comput Sc Advances in Information Retrieval = Lect. Notes. Comput. Sc. Advances in Information Retrieval, Proceedings = Lect Notes Comput Sc Advances in Information Retrieval, Proceedings = Lect. Notes. Comput. Sc. Advances in Information Retrieval Theory = Lect Notes Comput Sc Advances in Information Retrieval Theory = Lect. Notes. Comput. Sc. Advances in Information Security = Adv Inform Secur Advances in Information Security = Adv. Inform. Secur. Advances in Information Security = Adv Inf Sec Advances in Information Security = Adv. Inf. Sec. Advances in Information Security and Assurance = Lect Notes Comput Sc Advances in Information Security and Assurance = Lect. Notes. Comput. Sc. Advances in Information Security and Its Application = Comm Com Inf Sc Advances in Information Security and Its Application = Comm. Com. Inf. Sc. Advances in Information Systems = Lect Notes Comput Sc Advances in Information Systems = Lect. Notes. Comput. Sc. Advances in Information Systems, Proceedings = Lect Notes Comput Sc Advances in Information Systems, Proceedings = Lect. Notes. Comput. Sc. Advances in Information Systems Research, Education and Practice = Int Fed Info Proc Advances in Information Systems Research, Education and Practice = Int. Fed. Info. Proc. Advances in Information Technology and Communication in Health = St Heal T Advances in Information Technology and Communication in Health = St. Heal. T. Advances in Information Technology = Comm Com Inf Sc Advances in Information Technology = Comm. Com. Inf. Sc. Advances in Information Technology, Proceedings = Comm Com Inf Sc Advances in Information Technology, Proceedings = Comm. Com. Inf. Sc. Advances in Infrared Photodetectors = Semiconduct Semimet Advances in Infrared Photodetectors = Semiconduct. Semimet. Advances in inorganic biochemistry = Adv Inorg Biochem Advances in Inorganic Biochemistry = Adv Inorg Biochem Advances in Inorganic Biochemistry = Adv. Inorg. Biochem. Advances In Inorganic Biochemistry=Adv Inorg Biochem;; Advances in Inorganic Chemistry = Adv Inorg Chem Advances in Inorganic Chemistry = Adv. Inorg. Chem. Advances in Inorganic Chemistry = Adv Inorg Chem Rad Advances in Inorganic Chemistry = Adv. Inorg. Chem. Rad. Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 54 = Adv Inorg Chem Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 54 = Adv. Inorg. Chem. Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 55 = Adv Inorg Chem Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 55 = Adv. Inorg. Chem. Advances in Inorganic Chemistry - Including Bioinorganic Studies, Vol 56 = Adv Inorg Chem Advances in Inorganic Chemistry - Including Bioinorganic Studies, Vol 56 = Adv. Inorg. Chem. Advances in Inorganic Chemistry - Including Bioinorganic Studies, Vol 57 = Adv Inorg Chem Advances in Inorganic Chemistry - Including Bioinorganic Studies, Vol 57 = Adv. Inorg. Chem. Advances in Inorganic Chemistry Including Bioinorganic Studies, Vol 58 = Adv Inorg Chem Advances in Inorganic Chemistry Including Bioinorganic Studies, Vol 58 = Adv. Inorg. Chem. Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 59 = Adv Inorg Chem Advances in Inorganic Chemistry: Including Bioinorganic Studies, Vol 59 = Adv. Inorg. Chem. Advances in Inorganic Chemistry: Theoretical and Computational Inorganic Chemistry, Vol 62 = Adv Inorg Chem Advances in Inorganic Chemistry: Theoretical and Computational Inorganic Chemistry, Vol 62 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol. 44 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol. 44 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 45 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 45 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 46 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 46 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 47 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 47 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 49 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 49 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 50 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 50 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 51 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 51 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 52 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 52 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 53 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 53 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 60 = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 60 = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 61: Metal Ion Controlled Reactivity = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 61: Metal Ion Controlled Reactivity = Adv. Inorg. Chem. Advances in Inorganic Chemistry, Vol 63: Inorganic Photochemistry = Adv Inorg Chem Advances in Inorganic Chemistry, Vol 63: Inorganic Photochemistry = Adv. Inorg. Chem. Advances in Insect Physiology = Adv Insect Physiol Advances in Insect Physiology = Adv. Insect Physiol. Advances in Insect Physiology: Insect Integument and Colour = Adv Insect Physiol Advances in Insect Physiology: Insect Integument and Colour = Adv. Insect Physiol. Advances in Insect Physiology: Insect Mechanics and Control = Adv Insect Physiol Advances in Insect Physiology: Insect Mechanics and Control = Adv. Insect Physiol. Advances in Insect Physiology, Vol 24 = Adv Insect Physiol Advances in Insect Physiology, Vol 24 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 25 = Adv Insect Physiol Advances in Insect Physiology, Vol 25 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 26 = Adv Insect Physiol Advances in Insect Physiology, Vol 26 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 27 = Adv Insect Physiol Advances in Insect Physiology, Vol 27 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 28 = Adv Insect Physiol Advances in Insect Physiology, Vol 28 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 29 = Adv Insect Physiol Advances in Insect Physiology, Vol 29 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 31 = Adv Insect Physiol Advances in Insect Physiology, Vol 31 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 32 = Adv Insect Physiol Advances in Insect Physiology, Vol 32 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 33 = Adv Insect Physiol Advances in Insect Physiology, Vol 33 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 35 = Adv Insect Physiol Advances in Insect Physiology, Vol 35 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 36 = Adv Insect Physiol Advances in Insect Physiology, Vol 36 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 37 = Adv Insect Physiol Advances in Insect Physiology, Vol 37 = Adv. Insect Physiol. Advances in Insect Physiology, Vol 39 = Adv Insect Physiol Advances in Insect Physiology, Vol 39 = Adv. Insect Physiol. Advances in Instrumentation and Control = Adv Instr Advances in Instrumentation and Control = Adv. Instr. Advances in Instrumentation and Control = Adv. Instrum. Control Advances in Instrumentation and Control, Vol 44, Pt 1-4 = Adv Instr Advances in Instrumentation and Control, Vol 44, Pt 1-4 = Adv. Instr. Advances in Instrumentation and Control, Vol 45, Pts 1-4 = Adv Instr Advances in Instrumentation and Control, Vol 45, Pts 1-4 = Adv. Instr. Advances in Instrumentation and Control, Vol 46, Pts 1 and 2 = Adv Instr Advances in Instrumentation and Control, Vol 46, Pts 1 and 2 = Adv. Instr. Advances in Intelligent and Distributed Computing = Stud Comp Intell Advances in Intelligent and Distributed Computing = Stud. Comp. Intell. Advances in Intelligent and Distributed Computing = Stud Comput Intell Advances in Intelligent and Distributed Computing = Stud. Comput. Intell. Advances in Intelligent and Soft Computing = Adv Intell Soft Comp Advances in Intelligent and Soft Computing = Adv. Intell. Soft Comp. Advances in Intelligent and Soft Computing = Adv Intel Soft Compu Advances in Intelligent and Soft Computing = Adv. Intel. Soft Compu. Advances in Intelligent Computing - Ipmu '94 = Lect Notes Comput Sc Advances in Intelligent Computing - Ipmu '94 = Lect. Notes. Comput. Sc. Advances in Intelligent Computing, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Intelligent Computing, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Computing, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Intelligent Computing, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis Ix, Proceedings = Lect Notes Comput Sc Advances in Intelligent Data Analysis Ix, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis = Lect Notes Comput Sc Advances in Intelligent Data Analysis = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis, Proceedings = Lect Notes Comput Sc Advances in Intelligent Data Analysis, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis Viii, Proceedings = Lect Notes Comput Sc Advances in Intelligent Data Analysis Viii, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis Vii, Proceedings = Lect Notes Comput Sc Advances in Intelligent Data Analysis Vii, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis Vi, Proceedings = Lect Notes Comput Sc Advances in Intelligent Data Analysis Vi, Proceedings = Lect. Notes. Comput. Sc. Advances in Intelligent Data Analysis V = Lect Notes Comput Sc Advances in Intelligent Data Analysis V = Lect. Notes. Comput. Sc. Advances in Intelligent Decision Technologies = Smart Innov Syst Tec Advances in Intelligent Decision Technologies = Smart. Innov. Syst. Tec. Advances in Intelligent Information and Database Systems = Stud Comp Intell Advances in Intelligent Information and Database Systems = Stud. Comp. Intell. Advances in Intelligent Information Processing:tools and Applications = Stat Sci Interdisc R Advances in Intelligent Information Processing:tools and Applications = Stat. Sci. Interdisc. R. Advances in Intelligent Information Systems = Stud Comput Intell Advances in Intelligent Information Systems = Stud. Comput. Intell. Advances in Intelligent It: Active Media Technology 2006 = Fr Art Int Advances in Intelligent It: Active Media Technology 2006 = Fr. Art. Int. Advances in Intelligent It: Active Media Technology 2006 = Front Artif Intel Ap Advances in Intelligent It: Active Media Technology 2006 = Front. Artif. Intel. Ap. Advances in Intelligent System Research = Adv Intel Sys Res Advances in Intelligent System Research = Adv. Intel. Sys. Res. Advances in Intelligent Systems and Robotics = Fr Art Int Advances in Intelligent Systems and Robotics = Fr. Art. Int. Advances in Intelligent Systems and Robotics = Front Artif Intel Ap Advances in Intelligent Systems and Robotics = Front. Artif. Intel. Ap. Advances in Intelligent Systems = Fr Art Int Advances in Intelligent Systems = Fr. Art. Int. Advances in Intelligent Systems = Front Artif Intel Ap Advances in Intelligent Systems = Front. Artif. Intel. Ap. Advances in Intelligent Systems = Int S Micro Advances in Intelligent Systems = Int. S. Micro. Advances in Intelligent Systems Research = Adv Intel Sys Res Advances in Intelligent Systems Research = Adv. Intel. Sys. Res. Advances in Intelligent Systems: Theory and Applications = Fr Art Int Advances in Intelligent Systems: Theory and Applications = Fr. Art. Int. Advances in Intelligent Systems: Theory and Applications = Front Artif Intel Ap Advances in Intelligent Systems: Theory and Applications = Front. Artif. Intel. Ap. Advances in Intelligent Tutoring Systems = Stud Comput Intell Advances in Intelligent Tutoring Systems = Stud. Comput. Intell. Advances in Intelligent Web Mastering-2, Proceedings = Adv Intell Soft Comp Advances in Intelligent Web Mastering-2, Proceedings = Adv. Intell. Soft. Comp. Advances in Intelligent Web Mastering-2, Proceedings = Adv Intel Soft Compu Advances in Intelligent Web Mastering-2, Proceedings = Adv. Intel. Soft. Compu. Advances in Intelligent Web Mastering 3 = Adv Intel Soft Compu Advances in Intelligent Web Mastering 3 = Adv. Intel. Soft. Compu. Advances in Intelligent Web Mastering = Adv Soft Comp Advances in Intelligent Web Mastering = Adv. Soft. Comp. Advances in Interdisciplinary Studies of Work Teams = Adv Int St Advances in Interdisciplinary Studies of Work Teams = Adv. Int. St. Advances in Interdisciplinary Studies of Work Teams, Vol 2, 1995 = Adv Int St Advances in Interdisciplinary Studies of Work Teams, Vol 2, 1995 = Adv. Int. St. Advances in Interdisciplinary Studies of Work Teams, Vol 3, 1996 = Adv Int St Advances in Interdisciplinary Studies of Work Teams, Vol 3, 1996 = Adv. Int. St. Advances in Interdisciplinary Studies of Work Teams, Vol 5 - 2000 = Adv Int St Advances in Interdisciplinary Studies of Work Teams, Vol 5 - 2000 = Adv. Int. St. Advances in Interdisciplinary Studies of Work Teams, Vol 7 = Adv Int St Advances in Interdisciplinary Studies of Work Teams, Vol 7 = Adv. Int. St. Advances in Interfacial Engineering Series = Adv Interf Advances in Interfacial Engineering Series = Adv. Interf. Advances in Internal Medicine = Adv Internal Med Advances in Internal Medicine = Adv. Internal Med. Advances in internal medicine = Adv Intern Med Advances in Internal Medicine = Adv. Intern. Med. Advances In Internal Medicine=Adv Intern Med;; Advances in Internal Medicine, Vol 37 = Adv Internal Med Advances in Internal Medicine, Vol 37 = Adv. Internal Med. Advances in Internal Medicine, Vol 39 = Adv Internal Med Advances in Internal Medicine, Vol 39 = Adv. Internal Med. Advances in Internal Medicine, Vol 41 = Adv Internal Med Advances in Internal Medicine, Vol 41 = Adv. Internal Med. Advances in Internal Medicine, Vol 42 = Adv Internal Med Advances in Internal Medicine, Vol 42 = Adv. Internal Med. Advances in Internal Medicine, Volume 38 = Adv Internal Med Advances in Internal Medicine, Volume 38 = Adv. Internal Med. Advances in International Accounting : A Research Annual = Adv Int Acc Advances in International Accounting : A Research Annual = Adv. Int. Acc. Advances in International Accounting, Supplement 1 - 1998 = Adv Int Acc Advances in International Accounting, Supplement 1 - 1998 = Adv. Int. Acc. Advances in International Marketing : A Research Annual = Adv Int Mar Advances in International Marketing : A Research Annual = Adv. Int. Mar. Advances in International Marketing: A Research Annual = Adv Int Mar Advances in International Marketing: A Research Annual = Adv. Int. Mar. Advances in International Marketing: A Research Annual = Adv Int Marketing Advances in International Marketing: A Research Annual = Adv. Int. Marketing. Advances in International Marketing, Vol 5 = Adv Int Mar Advances in International Marketing, Vol 5 = Adv. Int. Mar. Advances in International Marketing, Vol 7, 1996 = Adv Int Mar Advances in International Marketing, Vol 7, 1996 = Adv. Int. Mar. Advances in International Marketing, Vol 8, 1996 = Adv Int Mar Advances in International Marketing, Vol 8, 1996 = Adv. Int. Mar. Advances in Interpretation of Geological Processes: Refinement of Multi-scale Data and Integration in Numerical Modelling = Geol Soc Spec Publ Advances in Interpretation of Geological Processes: Refinement of Multi-scale Data and Integration in Numerical Modelling = Geol. Soc. Spec. Publ. Advances in Joining of Ceramics = Ceram Trans Advances in Joining of Ceramics = Ceram. Trans. Advances in Jurassic Research = Geores Forum Advances in Jurassic Research = Geores. Forum. Advances in Key Engineering Materials = Adv Mater Res-switz Advances in Key Engineering Materials = Adv. Mater. Res-switz. Advances in Knowledge Acquisition and Management = Lect Notes Comput Sc Advances in Knowledge Acquisition and Management = Lect. Notes. Comput. Sc. Advances in Knowledge Acquisition = Lect Notes Artif Int Advances in Knowledge Acquisition = Lect. Notes. Artif. Int. Advances in Knowledge Discovery and Data Mining = Lect Notes Artif Int Advances in Knowledge Discovery and Data Mining = Lect. Notes. Artif. Int. Advances in Knowledge Discovery and Data Mining, Proceedings = Lect Notes Artif Int Advances in Knowledge Discovery and Data Mining, Proceedings = Lect. Notes. Artif. Int. Advances in Knowledge Discovery and Data Mining, Proceedings = Lect Notes Comput Sc Advances in Knowledge Discovery and Data Mining, Proceedings = Lect. Notes. Comput. Sc. Advances in Knowledge Discovery and Data Mining, Pt Ii, Proceedings = Lect Notes Artif Int Advances in Knowledge Discovery and Data Mining, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Advances in Knowledge Discovery and Data Mining, Pt I, Proceedings = Lect Notes Artif Int Advances in Knowledge Discovery and Data Mining, Pt I, Proceedings = Lect. Notes. Artif. Int. Advances in Knowledge Discovery and Management = Stud Comp Intell Advances in Knowledge Discovery and Management = Stud. Comp. Intell. Advances in Knowledge Organization = Adv Know Or Advances in Knowledge Organization = Adv. Know. Or. Advances in Laboratory Automation Robotics = Adv Lab Aut Advances in Laboratory Automation Robotics = Adv. Lab. Aut. Advances in Laboratory Automation Robotics, Vol 7 = Adv Lab Aut Advances in Laboratory Automation Robotics, Vol 7 = Adv. Lab. Aut. Advances in Laboratory-based X-ray Sources and Optics Iii = P Soc Photo-opt Ins Advances in Laboratory-based X-ray Sources and Optics Iii = P. Soc. Photo-opt. Ins. Advances in Laboratory-based X-ray Sources and Optics Ii = P Soc Photo-opt Ins Advances in Laboratory-based X-ray Sources and Optics Ii = P. Soc. Photo-opt. Ins. Advances in Laboratory-based X-ray Sources and Optics = P Soc Photo-opt Ins Advances in Laboratory-based X-ray Sources and Optics = P. Soc. Photo-opt. Ins. Advances in Lactoferrin Research = Adv Exp Med Biol Advances in Lactoferrin Research = Adv. Exp. Med. Biol. Advances in Languages and Compilers for Parallel Processing = Res Mg Par Advances in Languages and Compilers for Parallel Processing = Res. Mg. Par. Advances in Laser Ablation of Materials = Mater Res Soc Symp P Advances in Laser Ablation of Materials = Mater. Res. Soc. Symp. P. Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases Iii: Optical Biopsy, Proceedings = P Soc Photo-opt Ins Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases Iii: Optical Biopsy, Proceedings = P. Soc. Photo-opt. Ins. Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases Ii, Proceedings Of = P Soc Photo-opt Ins Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases = P Soc Photo-opt Ins Advances in Laser and Light Spectroscopy to Diagnose Cancer and Other Diseases = P. Soc. Photo-opt. Ins. Advances in Laser and Optics Research = Adv Laser Opt Res Advances in Laser and Optics Research = Adv. Laser Opt. Res. Advances in Laser and Optics Research, Vol 3 = Adv Laser Opt Res Advances in Laser and Optics Research, Vol 3 = Adv. Laser Opt. Res. Advances in Laser and Optics Research, Vol 4 = Adv Laser Opt Res Advances in Laser and Optics Research, Vol 4 = Adv. Laser Opt. Res. Advances in Laser Materials Processing: Technology, Research and Applications = Woodhead Publ Mech E Advances in Laser Materials Processing: Technology, Research and Applications = Woodhead. Publ. Mech. E. Advances in Laser Medicine = Adv Las Med Advances in Laser Medicine = Adv. Las. Med. Advances in Laser Remote Sensing for Terrestrial and Hydrographic Applications = P Soc Photo-opt Ins Advances in Laser Remote Sensing for Terrestrial and Hydrographic Applications = P. Soc. Photo-opt. Ins. Advances in Laser Remote Sensing for Terrestrial and Oceanographic Applications = P Soc Photo-opt Ins Advances in Laser Remote Sensing for Terrestrial and Oceanographic Applications = P. Soc. Photo-opt. Ins. Advances in Lasers and Applications = Sussp Proc Advances in Lasers and Applications = Sussp. Proc. Advances in Learning and Behavioral Disabilities = Adv Learn Behav Disa Advances in Learning and Behavioral Disabilities = Adv. Learn. Behav. Disa. Advances in Learning and Instruction Series = Adv Learn Ins Series Advances in Learning and Instruction Series = Adv. Learn. Ins. Series Advances in Learning Classifier Systems = Lect Notes Artif Int Advances in Learning Classifier Systems = Lect. Notes. Artif. Int. Advances in Learning Software Organizations = Lect Notes Comput Sc Advances in Learning Software Organizations = Lect. Notes. Comput. Sc. Advances in Learning Software Organizations, Proceedings = Lect Notes Comput Sc Advances in Learning Software Organizations, Proceedings = Lect. Notes. Comput. Sc. Advances in Legume Systematics = Adv Legum Systemat Advances in Legume Systematics = Adv. Legum. Systemat. Advances in Legume Systematics, Pt 5 = Adv Legum Systemat Advances in Legume Systematics, Pt 5 = Adv. Legum. Systemat. Advances in Legume Systematics, Pt 6 = Adv Legum Systemat Advances in Legume Systematics, Pt 6 = Adv. Legum. Systemat. Advances in Legume Systematics, Pt 7 = Adv Legum Systemat Advances in Legume Systematics, Pt 7 = Adv. Legum. Systemat. Advances in Librarianship = Adv Libr Advances in Librarianship = Adv. Libr. Advances in Librarianship, Vol 28 = Adv Libr Advances in Librarianship, Vol 28 = Adv. Libr. Advances in Librarianship, Vol 29 = Adv Libr Advances in Librarianship, Vol 29 = Adv. Libr. Advances in Librarianship, Vol 30 = Adv Libr Advances in Librarianship, Vol 30 = Adv. Libr. Advances in Librarianship, Vol 33 = Adv Libr Advances in Librarianship, Vol 33 = Adv. Libr. Advances in Library Administration and Organization = Adv Libr Adm Organ Advances in Library Administration and Organization = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 21 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 21 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 22 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 22 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 23 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 23 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 24 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 24 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 25 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 25 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization Vol 26 = Adv Libr Adm Organ Advances in Library Administration and Organization Vol 26 = Adv. Libr. Adm. Organ. Advances in Library Administration and Organization, Vol 27 = Adv Libr Adm Organ Advances in Library Administration and Organization, Vol 27 = Adv. Libr. Adm. Organ. Advances in Life Course Research = Adv Life Course Res Advances in Life Course Research = Adv. Life Course Res. Advances in Life Sciences = Adv Lif Sci Advances in Life Sciences = Adv. Lif. Sci. Advances in Light Emitting Materials = Mater Sci Forum Advances in Light Emitting Materials = Mater. Sci. Forum. Advances in Limnology 46 = Ergeb Limnol Advances in Limnology 46 = Ergeb. Limnol. Advances in Limnology 47 = Ergeb Limnol Advances in Limnology 47 = Ergeb. Limnol. Advances in Limnology 50 = Ergeb Limnol Advances in Limnology 50 = Ergeb. Limnol. Advances in Limnology 51 = Ergeb Limnol Advances in Limnology 51 = Ergeb. Limnol. Advances in Limnology 57 = Ergeb Limnol Advances in Limnology 57 = Ergeb. Limnol. Advances in Limnology = Adv Limnol Advances in Limnology = Adv. Limnol. Advances in Limnology, Vol 39 = Ergeb Limnol Advances in Limnology, Vol 39 = Ergeb. Limnol. Advances in Limnology, Vol 40 = Ergeb Limnol Advances in Limnology, Vol 40 = Ergeb. Limnol. Advances in Limnology, Vol 52 = Ergeb Limnol Advances in Limnology, Vol 52 = Ergeb. Limnol. Advances in lipid research = Adv Lipid Res Advances in Lipid Research = Adv Lipid Res Advances in Lipid Research = Adv. Lipid Res. Advances In Lipid Research=Adv Lipid Res;; Advances in Lipid Research, Vol 25 = Adv Lipid Res Advances in Lipid Research, Vol 25 = Adv. Lipid Res. Advances in Lipid Research, Vol 26 = Adv Lipid Res Advances in Lipid Research, Vol 26 = Adv. Lipid Res. Advances in Liquid Crystalline Materials and Technologies = Mater Res Soc Symp P Advances in Liquid Crystalline Materials and Technologies = Mater. Res. Soc. Symp. P. Advances in Liquid Crystals = Adv Liq Cryst Advances in Liquid Crystals = Adv. Liq. Cryst. Advances in Liquid Crystals = Key Eng Mat Advances in Liquid Crystals = Key. Eng. Mat. Advances in Liquid Crystals = Key Eng Mater Advances in Liquid Crystals = Key. Eng. Mater. Advances in Logic, Artificial Intelligence and Robotics = Fr Art Int Advances in Logic, Artificial Intelligence and Robotics = Fr. Art. Int. Advances in Logic, Artificial Intelligence and Robotics = Front Artif Intel Ap Advances in Logic, Artificial Intelligence and Robotics = Front. Artif. Intel. Ap. Advances in Logic = Contemp Math Advances in Logic = Contemp. Math. Advances in Machine Learning and Cybernetics = Lect Notes Artif Int Advances in Machine Learning and Cybernetics = Lect. Notes. Artif. Int. Advances in Machine Learning Ii = Stud Comput Intell Advances in Machine Learning Ii = Stud. Comput. Intell. Advances in Machine Learning I = Stud Comput Intell Advances in Machine Learning I = Stud. Comput. Intell. Advances in Machine Learning, Proceedings = Lect Notes Artif Int Advances in Machine Learning, Proceedings = Lect. Notes. Artif. Int. Advances in Machine Vision, Image Processing, and Pattern Analysis = Lect Notes Comput Sc Advances in Machine Vision, Image Processing, and Pattern Analysis = Lect. Notes. Comput. Sc. Advances in Machining and Manufacturing Technology Ix = Key Eng Mat Advances in Machining and Manufacturing Technology Ix = Key. Eng. Mat. Advances in Machining and Manufacturing Technology Ix = Key Eng Mater Advances in Machining and Manufacturing Technology Ix = Key. Eng. Mater. Advances in Machining & Manufacturing Technology Viii = Key Eng Mat Advances in Machining & Manufacturing Technology Viii = Key. Eng. Mat. Advances in Magnetic and Optical Resonance = Adv. Magn. Opt. Reson. Advances in Magnetic Resonance = Adv Magn Reson Advances in Magnetic Resonance = Adv. Magn. Reson. Advances in Magnetic Resonance in Food Science = Roy Soc Ch Advances in Magnetic Resonance in Food Science = Roy. Soc. Ch. Advances in Magnetic Resonance, Vol 13 = Adv Magn Reson Advances in Magnetic Resonance, Vol 13 = Adv. Magn. Reson. Advances in Magnetic Shape Memory Materials = Mater Sci Forum Advances in Magnetic Shape Memory Materials = Mater. Sci. Forum. Advances in Male Mediated Developmental Toxicity = Adv Exp Med Biol Advances in Male Mediated Developmental Toxicity = Adv. Exp. Med. Biol. Advances in Management Accounting = Adv Manag Account Advances in Management Accounting = Adv. Manag. Account. Advances in Management Accounting, Vol 11 = Adv Manag Account Advances in Management Accounting, Vol 11 = Adv. Manag. Account. Advances in Management Accounting, Vol 14 = Adv Manag Account Advances in Management Accounting, Vol 14 = Adv. Manag. Account. Advances in Management Accounting, Vol 15 = Adv Manag Account Advances in Management Accounting, Vol 15 = Adv. Manag. Account. Advances in Management Accounting, Vol 16 = Adv Manag Account Advances in Management Accounting, Vol 16 = Adv. Manag. Account. Advances in Management Accounting, Vol 17 = Adv Manag Account Advances in Management Accounting, Vol 17 = Adv. Manag. Account. Advances in Management Accounting, Vol 19 = Adv Manag Account Advances in Management Accounting, Vol 19 = Adv. Manag. Account. Advances in Management Information = Adv Manag Inform Advances in Management Information = Adv. Manag. Inform. Advances in Management Information Systems = Adv Manag Inform Sys Advances in Management Information Systems = Adv. Manag. Inform. Sys. Advances in Manufacturing Engineering, Quality and Production Systems, Vol I = Ma Comput Sci Eng Advances in Manufacturing Engineering, Quality and Production Systems, Vol I = Ma. Comput. Sci. Eng. Advances in Manufacturing Engineering, Quality and Production Systems, Vol I = Math Comput Sci Eng Advances in Manufacturing Engineering, Quality and Production Systems, Vol I = Math. Comput. Sci. Eng. Advances in Marine Antifouling Coatings and Technologies = Woodhead Publ Mater Advances in Marine Antifouling Coatings and Technologies = Woodhead. Publ. Mater. Advances in marine biology = Adv Mar Biol Advances in Marine Biology = Adv Mar Biol Advances in Marine Biology = Adv. Mar. Biol. Advances in Marine Biology: Endogenous and Exogenous Control of Gametogenesis and Spawning in Echinoderms = Adv Mar Biol Advances in Marine Biology: Endogenous and Exogenous Control of Gametogenesis and Spawning in Echinoderms = Adv. Mar. Biol. Advances in Marine Biology, Vol 29 = Adv Mar Biol Advances in Marine Biology, Vol 29 = Adv. Mar. Biol. Advances in Marine Biology, Vol 30 = Adv Mar Biol Advances in Marine Biology, Vol 30 = Adv. Mar. Biol. Advances in Marine Biology, Vol 31 = Adv Mar Biol Advances in Marine Biology, Vol 31 = Adv. Mar. Biol. Advances in Marine Biology, Vol 32 = Adv Mar Biol Advances in Marine Biology, Vol 32 = Adv. Mar. Biol. Advances in Marine Biology, Vol 33 = Adv Mar Biol Advances in Marine Biology, Vol 33 = Adv. Mar. Biol. Advances in Marine Biology, Vol 34 = Adv Mar Biol Advances in Marine Biology, Vol 34 = Adv. Mar. Biol. Advances in Marine Biology, Vol 35 = Adv Mar Biol Advances in Marine Biology, Vol 35 = Adv. Mar. Biol. Advances in Marine Biology, Vol 36 = Adv Mar Biol Advances in Marine Biology, Vol 36 = Adv. Mar. Biol. Advances in Marine Biology, Vol 37 = Adv Mar Biol Advances in Marine Biology, Vol 37 = Adv. Mar. Biol. Advances in Marine Biology, Vol. 38 = Adv Mar Biol Advances in Marine Biology, Vol. 38 = Adv. Mar. Biol. Advances in Marine Biology, Vol 39 = Adv Mar Biol Advances in Marine Biology, Vol 39 = Adv. Mar. Biol. Advances in Marine Biology, Vol 40 = Adv Mar Biol Advances in Marine Biology, Vol 40 = Adv. Mar. Biol. Advances in Marine Biology, Vol 41 = Adv Mar Biol Advances in Marine Biology, Vol 41 = Adv. Mar. Biol. Advances in Marine Biology, Vol 42 = Adv Mar Biol Advances in Marine Biology, Vol 42 = Adv. Mar. Biol. Advances in Marine Biology, Vol 43 = Adv Mar Biol Advances in Marine Biology, Vol 43 = Adv. Mar. Biol. Advances in Marine Biology, Vol 44 = Adv Mar Biol Advances in Marine Biology, Vol 44 = Adv. Mar. Biol. Advances in Marine Biology, Vol 46 = Adv Mar Biol Advances in Marine Biology, Vol 46 = Adv. Mar. Biol. Advances in Marine Biology, Vol 47 = Adv Mar Biol Advances in Marine Biology, Vol 47 = Adv. Mar. Biol. Advances in Marine Biology, Vol 50 = Adv Mar Biol Advances in Marine Biology, Vol 50 = Adv. Mar. Biol. Advances in Marine Biology, Vol 51 = Adv Mar Biol Advances in Marine Biology, Vol 51 = Adv. Mar. Biol. Advances in Marine Biology, Vol 52 = Adv Mar Biol Advances in Marine Biology, Vol 52 = Adv. Mar. Biol. Advances in Marine Biology, Vol 54 = Adv Mar Biol Advances in Marine Biology, Vol 54 = Adv. Mar. Biol. Advances in Marine Biology, Vol 56 = Adv Mar Biol Advances in Marine Biology, Vol 56 = Adv. Mar. Biol. Advances in Marine Biology, Vol 57 = Adv Mar Biol Advances in Marine Biology, Vol 57 = Adv. Mar. Biol. Advances in Marine Biology, Vol 58 = Adv Mar Biol Advances in Marine Biology, Vol 58 = Adv. Mar. Biol. Advances in Marine Biology, Vol 59 = Adv Mar Biol Advances in Marine Biology, Vol 59 = Adv. Mar. Biol. Advances in Marine Genomics = Adv Mar Genomics Advances in Marine Genomics = Adv. Mar. Genomics Advances in Maritime and Naval Science and Engineering = Math Comput Sci Eng Advances in Maritime and Naval Science and Engineering = Math. Comput. Sci. Eng. Advances in Mass Data Analysis of Images and Signals in Medicine, Biotechnology, Chemistry and Food Industry, Prceedings = Lect Notes Artif Int Advances in Mass Data Analysis of Images and Signals in Medicine, Biotechnology, Chemistry and Food Industry, Prceedings = Lect. Notes. Artif. Int. Advances in Mass Data Analysis of Signals and Images in Medicine Biotechnology and Chemistry = Lect Notes Artif Int Advances in Mass Data Analysis of Signals and Images in Medicine Biotechnology and Chemistry = Lect. Notes. Artif. Int. Advances in mass spectrometry = Adv Mass Spectrom Advances in Mass Spectrometry = Adv Mass Spectrom Advances in Mass Spectrometry = Adv. Mass Spectrom. Advances in Mass Spectrometry, Vol 13 = Adv Mass Spectrom Advances in Mass Spectrometry, Vol 13 = Adv. Mass Spectrom. Advances in Mass Spectrometry, Vol 16 = Adv Mass Spectrom Advances in Mass Spectrometry, Vol 16 = Adv. Mass Spectrom. Advances in Material Design for Regenerative Medicine, Drug Delivery and Targeting/imaging = Mater Res Soc Symp P Advances in Material Design for Regenerative Medicine, Drug Delivery and Targeting/imaging = Mater. Res. Soc. Symp. P. Advances in Materials and Processing Technologies, Pts 1 and 2 = Adv Mater Res-switz Advances in Materials and Processing Technologies, Pts 1 and 2 = Adv. Mater. Res-switz. Advances in Materials and Processing Technologies, Pts 1 and 2 = Adv Mat Res Advances in Materials and Processing Technologies, Pts 1 and 2 = Adv. Mat. Res. Advances in Materials and Systems Technologies = Adv Mat Res Advances in Materials and Systems Technologies = Adv. Mat. Res. Advances in Materials and Systems Technologies Ii = Adv Mat Res Advances in Materials and Systems Technologies Ii = Adv. Mat. Res. Advances in Materials Manufacturing Science and Technology Ii = Mater Sci Forum Advances in Materials Manufacturing Science and Technology Ii = Mater. Sci. Forum. Advances in Materials Manufacturing Science and Technology = Mater Sci Forum Advances in Materials Manufacturing Science and Technology = Mater. Sci. Forum. Advances in Materials Manufacturing Science and Technology Xiii, Vol 1 = Mater Sci Forum Advances in Materials Manufacturing Science and Technology Xiii, Vol 1 = Mater. Sci. Forum. Advances in Materials Manufacturing Science and Technology Xiii, Vol Ii = Mater Sci Forum Advances in Materials Manufacturing Science and Technology Xiii, Vol Ii = Mater. Sci. Forum. Advances in Materials Problem Solving With The Electron Microscope = Mater Res Soc Symp P Advances in Materials Problem Solving With The Electron Microscope = Mater. Res. Soc. Symp. P. Advances in Materials, Processing and Devices in Iii-v Compound Semiconductors = Mater Res Soc Symp P Advances in Materials, Processing and Devices in Iii-v Compound Semiconductors = Mater. Res. Soc. Symp. P. Advances in Materials Processing Ix = Key Eng Mat Advances in Materials Processing Ix = Key. Eng. Mat. Advances in Materials Processing Ix = Key Eng Mater Advances in Materials Processing Ix = Key. Eng. Mater. Advances in Materials Processing Technologies = Mater Sci Forum Advances in Materials Processing Technologies = Mater. Sci. Forum. Advances in Materials Research = Adv Materials Res Advances in Materials Research = Adv. Materials Res. Advances in Materials Research = Adv. Mater. Res. Advances in Materials Research = Adv Mater Res-ger Advances in Materials Research = Adv. Mater. Res-ger. Advances in Materials Science and Engineering = Adv Mater Sci Eng Advances in Materials Science and Engineering = Adv. Mater. Sci. Eng. Advances in Materials Science and Implant Orthopedic Surgery = Nato Adv Sci Inst Se Advances in Materials Science and Implant Orthopedic Surgery = Nato. Adv. Sci. Inst. Se. Advances in Materials Science for Environmental and Nuclear Technology = Ceram Trans Advances in Materials Science for Environmental and Nuclear Technology = Ceram. Trans. Advances in Materials Science of Wood = Mater Sci Forum Advances in Materials Science of Wood = Mater. Sci. Forum. Advances in Mathematical and Statistical Modeling = Stat Ind Technol Advances in Mathematical and Statistical Modeling = Stat. Ind. Technol. Advances in Mathematical Economics = Adv Math Econ Advances in Mathematical Economics = Adv. Math. Econ. Advances in Mathematical Economics, Vol 10 = Adv Math Econ Advances in Mathematical Economics, Vol 10 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 11 = Adv Math Econ Advances in Mathematical Economics, Vol 11 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 12 = Adv Math Econ Advances in Mathematical Economics, Vol 12 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 13 = Adv Math Econ Advances in Mathematical Economics, Vol 13 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 7 = Adv Math Econ Advances in Mathematical Economics, Vol 7 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 8 = Adv Math Econ Advances in Mathematical Economics, Vol 8 = Adv. Math. Econ. Advances in Mathematical Economics, Vol 9 = Adv Math Econ Advances in Mathematical Economics, Vol 9 = Adv. Math. Econ. Advances in Mathematical Finance = Appl Numer Harmon An Advances in Mathematical Finance = Appl. Numer. Harmon. An. Advances in Mathematical Fluid Mechanics Series = Adv Math Fluid Mech Advances in Mathematical Fluid Mechanics Series = Adv. Math. Fluid Mech. Advances in Mathematical Modeling and Experimental Methods for Materials and Structures: The Jacob Aboudi Volume = Solid Mech Appl Advances in Mathematical Modeling and Experimental Methods for Materials and Structures: The Jacob Aboudi Volume = Solid. Mech. Appl. Advances in Mathematical Sciences and Applications = Adv. Math. Sci. Appl. Advances in Mathematical Systems Theory = Syst Control Advances in Mathematical Systems Theory = Syst. Control. Advances in Mathematics = Adv. Math. Advances in Mathematics = Adv Math Advances in Mathematics = Adv. Math. Advances in Mathematics (China) = Adv. in Math. (China) Advances in Mathematics (China) = Adv. Math. (China) Advances in Mathematics Education = Advncs Mthmtcs Educ Advances in Mathematics Education = Advncs. Mthmtcs. Educ. Advances in Mathematics of Communications = Adv Math Commun Advances in Mathematics of Communications = Adv. Math. Commun. Advances in Mathematics Research = Adv Math Res Advances in Mathematics Research = Adv. Math. Res. Advances in Mathematics Research, Vol 10 = Adv Math Res Advances in Mathematics Research, Vol 10 = Adv. Math. Res. Advances in Mathematics Research, Volume 11 = Adv Math Res Advances in Mathematics Research, Volume 11 = Adv. Math. Res. Advances in Measurement of Soil Physical Properties : Bringing Theory Into Practice = Sssa Spec Publ Advances in Measurement of Soil Physical Properties : Bringing Theory Into Practice = Sssa. Spec. Publ. Advances in Mechanical Design, Pts 1 and 2 = Adv Mater Res-switz Advances in Mechanical Design, Pts 1 and 2 = Adv. Mater. Res-switz. Advances in Mechanics and Mathematics = Adv Mech Math Advances in Mechanics and Mathematics = Adv. Mech. Math. Advances in Medical and Dental Sciences = Adv. Med. Dent. Sci. Advances in Medical Engineering = Springer Proc Phys Advances in Medical Engineering = Springer. Proc. Phys. Advances in medical sciences = Adv Med Sci Advances in Medical Sciences = Adv Med Sci Advances in Medical Sciences = Adv. Med. Sci. Advances in Medical Sciences = Adv Med Sci-poland Advances in Medical Sciences = Adv. Med. Sci-poland. Advances in medical sociology = Adv Med Sociol Advances in Medical Sociology = Adv Med Sociol Advances in Medical Sociology = Adv. Med. Sociol. Advances in Medicine and Biology = Adv Med Biol Advances in Medicine and Biology = Adv. Med. Biol. Advances in Medicine and Biology, Vol 12 = Adv Med Biol Advances in Medicine and Biology, Vol 12 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 1 = Adv Biol Med Advances in Medicine and Biology, Vol 1 = Adv. Biol. Med. Advances in Medicine and Biology, Vol 2 = Adv Med Biol Advances in Medicine and Biology, Vol 2 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 5 = Adv Med Biol Advances in Medicine and Biology, Vol 5 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 6 = Adv Med Biol Advances in Medicine and Biology, Vol 6 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 7 = Adv Med Biol Advances in Medicine and Biology, Vol 7 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 8 = Adv Med Biol Advances in Medicine and Biology, Vol 8 = Adv. Med. Biol. Advances in Medicine and Biology, Vol 9 = Adv Med Biol Advances in Medicine and Biology, Vol 9 = Adv. Med. Biol. Advances in Mercury Toxicology = Roch S Env Advances in Mercury Toxicology = Roch. S. Env. Advances in Mergers & Acquisitions, Vol 3 = Adv Mergers Acquis Advances in Mergers & Acquisitions, Vol 3 = Adv. Mergers Acquis. Advances in Mergers & Acquisitions, Vol 4 = Adv Mergers Acquis Advances in Mergers & Acquisitions, Vol 4 = Adv. Mergers Acquis. Advances in Mergers and Acquisitions, Vol 5 = Adv Mergers Acquis Advances in Mergers and Acquisitions, Vol 5 = Adv. Mergers Acquis. Advances in Mergers and Acquisitions, Vol 6 = Adv Mergers Acquis Advances in Mergers and Acquisitions, Vol 6 = Adv. Mergers Acquis. Advances in Mergers and Acquisitions, Vol 7 = Adv Mergers Acquis Advances in Mergers and Acquisitions, Vol 7 = Adv. Mergers Acquis. Advances in Mergers and Acquisitions, Vol 8 = Adv Mergers Acquis Advances in Mergers and Acquisitions, Vol 8 = Adv. Mergers Acquis. Advances in Mergers and Acquistions = Adv Mergers Acquis Advances in Mergers and Acquistions = Adv. Mergers Acquis. Advances in Meshfree Techniques = Comp Meth Appl Sci Advances in Meshfree Techniques = Comp. Meth. Appl. Sci. Advances in Meshfree Techniques = Comput Meth Appl Sci Advances in Meshfree Techniques = Comput. Meth. Appl. Sci. Advances in metabolic disorders = Adv Metab Disord Advances in Metabolic Disorders = Adv. Metab. Disord. Advances in Metabolic Mapping Techniques for Brain Imaging of Behavioral and Learning Functions = Nato Adv Sci I D-beh Advances in Metabolic Mapping Techniques for Brain Imaging of Behavioral and Learning Functions = Nato. Adv. Sci. I. D-beh. Advances in Metaheuristics for Hard Optimization = Nat Comput Ser Advances in Metaheuristics for Hard Optimization = Nat. Comput. Ser. Advances in Metal Carbene Chemistry = Nato Adv Sci I C-mat Advances in Metal Carbene Chemistry = Nato. Adv. Sci. I. C-mat. Advances in Metallic Alloys = Adv Met Alloy Advances in Metallic Alloys = Adv. Met. Alloy. Advances in Metal Matrix Composite = Mater Sci Forum Advances in Metal Matrix Composite = Mater. Sci. Forum. Advances in Metal Matrix Composites = Key Eng Mat Advances in Metal Matrix Composites = Key. Eng. Mat. Advances in Metrology for X-ray and Euv Optics Iii = P Soc Photo-opt Ins Advances in Metrology for X-ray and Euv Optics Iii = P. Soc. Photo-opt. Ins. Advances in Metrology for X-ray and Euv Optics Ii = P Soc Photo-opt Ins Advances in Metrology for X-ray and Euv Optics Ii = P. Soc. Photo-opt. Ins. Advances in Microanatomy of Cells and Tissues, Biophysical and Biochemical Correlates = Marc Malpig Symp Ser Advances in Microanatomy of Cells and Tissues, Biophysical and Biochemical Correlates = Marc. Malpig. Symp. Ser. Advances in microbial ecology = Adv Microb Ecol Advances in Microbial Ecology = Adv Microb Ecol Advances in Microbial Ecology = Adv. Microb. Ecol. Advances in Microbial Ecology, Vol 14 = Adv Microb Ecol Advances in Microbial Ecology, Vol 14 = Adv. Microb. Ecol. Advances in Microbial Ecology, Vol 15 = Adv Microb Ecol Advances in Microbial Ecology, Vol 15 = Adv. Microb. Ecol. Advances in Microbial Ecology, Vol 16 = Adv Microb Ecol Advances in Microbial Ecology, Vol 16 = Adv. Microb. Ecol. Advances in microbial physiology = Adv Microb Physiol Advances in Microbial Physiology = Adv Microb Physiol Advances in Microbial Physiology = Adv. Microb. Physiol. Advances In Microbial Physiology=Adv Microb Physiol;; Advances in Microbial Physiology, Vol 34 = Adv Microb Physiol Advances in Microbial Physiology, Vol 34 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 35 = Adv Microb Physiol Advances in Microbial Physiology, Vol 35 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 36 = Adv Microb Physiol Advances in Microbial Physiology, Vol 36 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 38 = Adv Microb Physiol Advances in Microbial Physiology, Vol 38 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 39 = Adv Microb Physiol Advances in Microbial Physiology, Vol 39 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 40 = Adv Microb Physiol Advances in Microbial Physiology, Vol 40 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 41 = Adv Microb Physiol Advances in Microbial Physiology, Vol 41 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 42 = Adv Microb Physiol Advances in Microbial Physiology, Vol 42 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 43 = Adv Microb Physiol Advances in Microbial Physiology, Vol 43 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 44 = Adv Microb Physiol Advances in Microbial Physiology, Vol 44 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 45 = Adv Microb Physiol Advances in Microbial Physiology, Vol 45 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 46 = Adv Microb Physiol Advances in Microbial Physiology, Vol 46 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 47 = Adv Microb Physiol Advances in Microbial Physiology, Vol 47 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol. 49 = Adv Microb Physiol Advances in Microbial Physiology, Vol. 49 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 50 = Adv Microb Physiol Advances in Microbial Physiology, Vol 50 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 51 = Adv Microb Physiol Advances in Microbial Physiology, Vol 51 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 52 = Adv Microb Physiol Advances in Microbial Physiology, Vol 52 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 53 = Adv Microb Physiol Advances in Microbial Physiology, Vol 53 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 54 = Adv Microb Physiol Advances in Microbial Physiology, Vol 54 = Adv. Microb. Physiol. Advances in Microbial Physiology, Vol 57 = Adv Microb Physiol Advances in Microbial Physiology, Vol 57 = Adv. Microb. Physiol. Advances in Microcirculation = Adv Microcirculat Advances in Microcirculation = Adv. Microcirculat. Advances in Microcrystalline and Nanocrystalline Semiconductors - 1996 = Mater Res Soc Symp P Advances in Microcrystalline and Nanocrystalline Semiconductors - 1996 = Mater. Res. Soc. Symp. P. Advances in Microelectronic Device Technology = P Soc Photo-opt Ins Advances in Microelectronic Device Technology = P. Soc. Photo-opt. Ins. Advances in mind-body medicine = Adv Mind Body Med Advances in Mind-Body Medicine = Adv. Mind Body Med. Advances in Minimally Invasive Surgery and Therapy for Spine and Nerves = Acta Neurochir Suppl Advances in Minimally Invasive Surgery and Therapy for Spine and Nerves = Acta. Neurochir. Suppl. Advances in Minimum Description Length Theory and Applications = Neu Inf Pro Advances in Minimum Description Length Theory and Applications = Neu. Inf. Pro. Advances in Minimum Description Length Theory and Applications = Neural Inf Process S Advances in Minimum Description Length Theory and Applications = Neural. Inf. Process. S. Advances in Mirror Technology for Synchrotron X-ray and Laser Applications = P Soc Photo-opt Ins Advances in Mirror Technology for Synchrotron X-ray and Laser Applications = P. Soc. Photo-opt. Ins. Advances in Mirror Technology for X-ray, Euv Lithography, Laser, and Other Applications Ii = P Soc Photo-opt Ins Advances in Mirror Technology for X-ray, Euv Lithography, Laser, and Other Applications Ii = P. Soc. Photo-opt. Ins. Advances in Mirror Technology for X-ray, Euv Lithography, Laser, and Other Applications = Proc Spie Advances in Mirror Technology for X-ray, Euv Lithography, Laser, and Other Applications = Proc. Spie. Advances in Modal Logic, Vol 1 = Csli Lect N Advances in Modal Logic, Vol 1 = Csli. Lect. N. Advances in Modeling Agricultural Systems = Springer Ser Optim A Advances in Modeling Agricultural Systems = Springer. Ser. Optim. A. Advances in Modeling and Control of Ventilation = Adv Exp Med Biol Advances in Modeling and Control of Ventilation = Adv. Exp. Med. Biol. Advances in Modeling The Management of Stormwater Impacts = Adv Mod Manag Stormw Advances in Modeling The Management of Stormwater Impacts = Adv. Mod. Manag. Stormw. Advances in Modeling The Management of Stormwater Impacts, Vol 4 = Adv Mod Manag Stormw Advances in Modeling The Management of Stormwater Impacts, Vol 4 = Adv. Mod. Manag. Stormw. Advances in Modeling The Management of Stormwater Impacts, Vol 5 = Adv Mod Manag Stormw Advances in Modeling The Management of Stormwater Impacts, Vol 5 = Adv. Mod. Manag. Stormw. Advances in Modeling The Management of Stormwater Impacts, Vol 6 = Adv Mod Manag Stormw Advances in Modeling The Management of Stormwater Impacts, Vol 6 = Adv. Mod. Manag. Stormw. Advances in Modelling and Clinical Application of Intravenous Anaesthesia = Adv Exp Med Biol Advances in Modelling and Clinical Application of Intravenous Anaesthesia = Adv. Exp. Med. Biol. Advances in Modern Environmental Toxicology = Adv Mod Env Advances in Modern Environmental Toxicology = Adv. Mod. Env. Advances in Molecular and Cellular Microbiology = Adv M C M Advances in Molecular and Cellular Microbiology = Adv. M. C. M. Advances in Molecular Biology and Targeted Treatment for Aids = Gwumc Dept Advances in Molecular Biology and Targeted Treatment for Aids = Gwumc. Dept. Advances in Molecular Ecology = Nato Adv Sci I A-lif Advances in Molecular Ecology = Nato. Adv. Sci. I. A-lif. Advances in Molecular Genetics of Plant-microbe Interactions, Vol 1 = Curr Plant Sci Biot Advances in Molecular Genetics of Plant-microbe Interactions, Vol 1 = Curr. Plant. Sci. Biot. Advances in Molecular Genetics of Plant-microbe Interactions, Vol 2 = Curr Plant Sci Biot Advances in Molecular Genetics of Plant-microbe Interactions, Vol 2 = Curr. Plant. Sci. Biot. Advances in Molecular Genetics of Plant-microbe Interactions, Vol 3 = Curr Plant Sci Biot Advances in Molecular Genetics of Plant-microbe Interactions, Vol 3 = Curr. Plant. Sci. Biot. Advances in Molecular Oncology = Adv Exp Med Biol Advances in Molecular Oncology = Adv. Exp. Med. Biol. Advances in Molecular Plant Nematology = Nato Adv Sci Inst Se Advances in Molecular Plant Nematology = Nato. Adv. Sci. Inst. Se. Advances in Molecular Relaxation and Interaction Processes = Adv. Mol. Relax. Interact. Processes Advances in Molecular Relaxation and Interaction Processes = Adv Mol Relax Int Pr Advances in Molecular Relaxation and Interaction Processes = Adv. Mol. Relax. Int. Pr. Advances in Molecular Relaxation Processes = Adv Mol Relax Int Pr Advances in Molecular Relaxation Processes = Adv. Mol. Relax. Int. Pr. Advances in Molecular Similarity = Adv Molec Simil Advances in Molecular Similarity = Adv. Molec. Simil. Advances in Molecular Similarity, Vol 2 - 1998 = Adv Molec Simil Advances in Molecular Similarity, Vol 2 - 1998 = Adv. Molec. Simil. Advances in Molten Salt Chemistry = Adv. Molten Salt Chem. Advances in morphogenesis = Adv Morphog Advances in Morphogenesis = Adv. Morphog. Advances in Morphometrics = Nato Adv Sci Inst Se Advances in Morphometrics = Nato. Adv. Sci. Inst. Se. Advances in Mucosal Immunology, Pts A and B = Adv Exp Med Biol Advances in Mucosal Immunology, Pts A and B = Adv. Exp. Med. Biol. Advances in Multidisciplinary Retrieval = Lect Notes Comput Sc Advances in Multidisciplinary Retrieval = Lect. Notes. Comput. Sc. Advances in Multifield Theories for Continua With Substructure = Model Simul Sci Eng Advances in Multifield Theories for Continua With Substructure = Model. Simul. Sci. Eng. Advances in Multi-fluid Flows = Siam Proc S Advances in Multi-fluid Flows = Siam. Proc. S. Advances in Multifunctional Materials and Systems = Ceram Trans Advances in Multifunctional Materials and Systems = Ceram. Trans. Advances in Multilayer and Grazing Incidence X-ray/euv/fuv Optics = P Soc Photo-opt Ins Advances in Multilayer and Grazing Incidence X-ray/euv/fuv Optics = P. Soc. Photo-opt. Ins. Advances in Multilingual and Multimodal Information Retrieval = Lect Notes Comput Sc Advances in Multilingual and Multimodal Information Retrieval = Lect. Notes. Comput. Sc. Advances in Multimedia and Databases for The New Century = Adv Datab R Advances in Multimedia and Databases for The New Century = Adv. Datab. R. Advances in Multimedia and Network Information System Technologies = Adv Intel Soft Compu Advances in Multimedia and Network Information System Technologies = Adv. Intel. Soft. Compu. Advances in Multimedia Information Processing - Pcm 2002, Proceeding = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2002, Proceeding = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2004, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2004, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2004, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2004, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2004, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2004, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2005, Pt 1 = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2005, Pt 1 = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2005, Pt 2 = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2005, Pt 2 = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2006, Proceedings = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2006, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2007 = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2007 = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2008, 9th Pacific Rim Conference On Multimedia = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2008, 9th Pacific Rim Conference On Multimedia = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing - Pcm 2009 = Lect Notes Comput Sc Advances in Multimedia Information Processing - Pcm 2009 = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing-pcm 2010, Pt Ii = Lect Notes Comput Sc Advances in Multimedia Information Processing-pcm 2010, Pt Ii = Lect. Notes. Comput. Sc. Advances in Multimedia Information Processing-pcm 2010, Pt I = Lect Notes Comput Sc Advances in Multimedia Information Processing-pcm 2010, Pt I = Lect. Notes. Comput. Sc. Advances in Multimedia Information Systems, Proceedings = Lect Notes Comput Sc Advances in Multimedia Information Systems, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Modeling, Proceedings = Lect Notes Comput Sc Advances in Multimedia Modeling, Proceedings = Lect. Notes. Comput. Sc. Advances in Multimedia Modeling, Pt 1 = Lect Notes Comput Sc Advances in Multimedia Modeling, Pt 1 = Lect. Notes. Comput. Sc. Advances in Multimedia Modeling, Pt 2 = Lect Notes Comput Sc Advances in Multimedia Modeling, Pt 2 = Lect. Notes. Comput. Sc. Advances in Multimodal Interfaces - Icmi 2000, Proceedings = Lect Notes Comput Sc Advances in Multimodal Interfaces - Icmi 2000, Proceedings = Lect. Notes. Comput. Sc. Advances in Multi-objective Nature Inspired Computing = Stud Comput Intell Advances in Multi-objective Nature Inspired Computing = Stud. Comput. Intell. Advances in Multiple Sclerosis and Experimental Demyelinating Diseases = Curr Top Microbiol Advances in Multiple Sclerosis and Experimental Demyelinating Diseases = Curr. Top. Microbiol. Advances in Multiresolution for Geometric Modelling = Math Vis Advances in Multiresolution for Geometric Modelling = Math. Vis. Advances in Multiresolution for Geometric Modelling = Math Visual Advances in Multiresolution for Geometric Modelling = Math. Visual. Advances in Multivariate Approximation = Math Res Advances in Multivariate Approximation = Math. Res. Advances in Multivariate Data Analysis = St Class Dat Anal Advances in Multivariate Data Analysis = St. Class. Dat. Anal. Advances in Multivariate Data Analysis = Stud Class Data Anal Advances in Multivariate Data Analysis = Stud. Class. Data Anal. Advances in Multivariate Statistical Methods = Stat Sci Int Res Advances in Multivariate Statistical Methods = Stat. Sci. Int. Res. Advances in Music Education Research = Adv Music Educ Res Advances in Music Education Research = Adv. Music Educ. Res. Advances in Music Information Retrieval = Stud Comput Intell Advances in Music Information Retrieval = Stud. Comput. Intell. Advances in Mutlimedia Information Processing - Pcm 2001, Proceedings = Lect Notes Comput Sc Advances in Mutlimedia Information Processing - Pcm 2001, Proceedings = Lect. Notes. Comput. Sc. Advances in myocardiology = Adv Myocardiol Advances in Myocardiology = Adv. Myocardiol. Advances in Myochemistry : 2 = Adv Myochem Advances in Myochemistry : 2 = Adv. Myochem. Advances in myochemistry = Adv Myochem Advances in Myochemistry = Adv Myochem Advances in Myochemistry = Adv. Myochem. Advances in Nanocrystallization = Mater Sci Forum Advances in Nanocrystallization = Mater. Sci. Forum. Advances in Nanoengineering: Electronics, Materials and Assembly = Roy Soc Ser Adv Sci Advances in Nanoengineering: Electronics, Materials and Assembly = Roy. Soc. Ser. Adv. Sci. Advances in Nanomaterials and Processing, Pts 1 and 2 = Solid State Phenomen Advances in Nanomaterials and Processing, Pts 1 and 2 = Solid. State. Phenomen. Advances in Nanomaterials and Processing, Pts 1 and 2 = Sol St Phen Advances in Nanomaterials and Processing, Pts 1 and 2 = Sol. St. Phen. Advances in Nanophotonics Ii = Aip Conf Proc Advances in Nanophotonics Ii = Aip. Conf. Proc. Advances in Nanoscale Magnetism = Springer Proc Phys Advances in Nanoscale Magnetism = Springer. Proc. Phys. Advances in Nanoscale Phsics, Electronics and Engineering : An International Book Series = Adv Nan Phy Advances in Nanoscale Phsics, Electronics and Engineering : An International Book Series = Adv. Nan. Phy. Advances in Nanostructured Materials Processed By Severe Plastic Deformation = Mater Sci Forum Advances in Nanostructured Materials Processed By Severe Plastic Deformation = Mater. Sci. Forum. Advances in Nanotechnology = Adv Nanotechnol Advances in Nanotechnology = Adv. Nanotechnol. Advances in Nanotechnology, Vol 1 = Adv Nanotechnol Advances in Nanotechnology, Vol 1 = Adv. Nanotechnol. Advances in Nanotechnology, Vol 2 = Adv Nanotechnol Advances in Nanotechnology, Vol 2 = Adv. Nanotechnol. Advances in Nanotechnology, Volume 3 = Adv Nanotechnol Advances in Nanotechnology, Volume 3 = Adv. Nanotechnol. Advances in Nanotechnology, Volume 4 = Adv Nanotechnol Advances in Nanotechnology, Volume 4 = Adv. Nanotechnol. Advances in Natural and Applied Science = Adv. Nat. Appl. Sci. Advances in Natural and Technological Hazards Research = Adv Nat Tech Haz Res Advances in Natural and Technological Hazards Research = Adv. Nat. Tech. Haz. Res. Advances in Natural and Technological Hazards Research = Adv Nat Technol Haz Advances in Natural and Technological Hazards Research = Adv. Nat. Technol. Haz. Advances in Natural Computation = Adv Nat Comput Advances in Natural Computation = Adv. Nat. Comput. Advances in Natural Computation = Adv Nat Computation Advances in Natural Computation = Adv. Nat. Computation Advances in Natural Computation, Pt 1 = Lect Notes Comput Sc Advances in Natural Computation, Pt 1 = Lect. Notes. Comput. Sc. Advances in Natural Computation, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Natural Computation, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Natural Computation, Pt 2 = Lect Notes Comput Sc Advances in Natural Computation, Pt 2 = Lect. Notes. Comput. Sc. Advances in Natural Computation, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Natural Computation, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Natural Computation, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Natural Computation, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Natural Language Processing = Lect Notes Artif Int Advances in Natural Language Processing = Lect. Notes. Artif. Int. Advances in Natural Language Processing, Proceedings = Lect Notes Artif Int Advances in Natural Language Processing, Proceedings = Lect. Notes. Artif. Int. Advances in Natural Multimodal Dialogue Systems = Text Speech Lang Tec Advances in Natural Multimodal Dialogue Systems = Text. Speech. Lang. Tec. Advances in Neonatal Care = Adv. Neonatal Care Advances in neonatal care : official journal of the National Association of Neonatal Nurses = Adv Neonatal Care Advances in nephrology from the Necker Hospital = Adv Nephrol Necker Hosp Advances in Nephrology from the Necker Hospital = Adv. Nephrol. Necker Hosp. Advances In Nephrology From The Necker Hospital=Adv Nephrol Necker Hosp;; Advances in Network and Distributed Systems Security = Int Fed Info Proc Advances in Network and Distributed Systems Security = Int. Fed. Info. Proc. Advances in Networks and Communications, Pt Ii = Comm Com Inf Sc Advances in Networks and Communications, Pt Ii = Comm. Com. Inf. Sc. Advances in Neural Information Processing Systems 10 = Adv Neur In Advances in Neural Information Processing Systems 10 = Adv. Neur. In. Advances in Neural Information Processing Systems 11 = Adv Neur In Advances in Neural Information Processing Systems 11 = Adv. Neur. In. Advances in Neural Information Processing Systems 12 = Adv Neur In Advances in Neural Information Processing Systems 12 = Adv. Neur. In. Advances in Neural Information Processing Systems 13 = Adv Neur In Advances in Neural Information Processing Systems 13 = Adv. Neur. In. Advances in Neural Information Processing Systems 14, Vols 1 and 2 = Adv Neur In Advances in Neural Information Processing Systems 14, Vols 1 and 2 = Adv. Neur. In. Advances in Neural Information Processing Systems 16 = Adv Neur In Advances in Neural Information Processing Systems 16 = Adv. Neur. In. Advances in Neural Information Processing Systems 4 = Adv Neur In Advances in Neural Information Processing Systems 4 = Adv. Neur. In. Advances in Neural Information Processing Systems 8 = Adv Neur In Advances in Neural Information Processing Systems 8 = Adv. Neur. In. Advances in Neural Information Processing Systems 9 = Adv Neur In Advances in Neural Information Processing Systems 9 = Adv. Neur. In. Advances in neural information processing systems = Adv Neural Inf Process Syst Advances in Neural Information Processing Systems = Adv Neur In Advances in Neural Information Processing Systems = Adv. Neur. In. Advances in Neural Networks - Isnn 2004, Pt 1 = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2004, Pt 1 = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2004, Pt 2 = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2004, Pt 2 = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2005, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2005, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2005, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2005, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2005, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2005, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2006, Pt 1 = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2006, Pt 1 = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2006, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2006, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2006, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2006, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2007, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2007, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2007, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2007, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2008, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2008, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2008, Pt I, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2008, Pt I, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2009, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2009, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2009, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2009, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2009, Pt 3, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2009, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2010, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2010, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Networks - Isnn 2010, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Neural Networks - Isnn 2010, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Neural Regeneration Research = Neurol Neur Advances in Neural Regeneration Research = Neurol. Neur. Advances in Neurobiology = Adv Neurobiol Advances in Neurobiology = Adv. Neurobiol. Advances in Neuroblastoma Research 3 = Prog Clin Biol Res Advances in Neuroblastoma Research 3 = Prog. Clin. Biol. Res. Advances in neuroimmunology = Adv Neuroimmunol Advances in Neuroimmunology = Adv Neuroimmunol Advances in Neuroimmunology = Adv. Neuroimmunol. Advances in Neuro-information Processing, Pt Ii = Lect Notes Comput Sc Advances in Neuro-information Processing, Pt Ii = Lect. Notes. Comput. Sc. Advances in Neuro-information Processing, Pt I = Lect Notes Comput Sc Advances in Neuro-information Processing, Pt I = Lect. Notes. Comput. Sc. Advances in neurology = Adv Neurol Advances in Neurology = Adv Neurol Advances in Neurology = Adv. Neurol. Advances In Neurology=Adv Neurol;; Advances in Neurology / = Int Congr Ser Advances in Neurology / = Int. Congr. Ser. Advances in Neurology, Volume 74 = Adv Neurol Advances in Neurology, Volume 74 = Adv. Neurol. Advances in Neuropharmacology = Int Rev Neurobiol Advances in Neuropharmacology = Int. Rev. Neurobiol. Advances in Neuroscience = Adv Neurosc Advances in Neuroscience = Adv. Neurosc. Advances in Neurosurgery = Adv Neuros Advances in Neurosurgery = Adv. Neuros. Advances in Neutron Capture Therapy, Vols I and Ii = Int Congr Ser Advances in Neutron Capture Therapy, Vols I and Ii = Int. Congr. Ser. Advances in Neutron Scattering Instrumentation = Proc Spie Advances in Neutron Scattering Instrumentation = Proc. Spie. Advances in Neutron Scattering Instrumentation = P Soc Photo-opt Ins Advances in Neutron Scattering Instrumentation = P. Soc. Photo-opt. Ins. Advances in New Catalytic Materials = Adv Mater Res-switz Advances in New Catalytic Materials = Adv. Mater. Res-switz. Advances in Nondestructive Evaluation, Pt 1-3 = Key Eng Mat Advances in Nondestructive Evaluation, Pt 1-3 = Key. Eng. Mat. Advances in Nondestructive Evaluation, Pt 1-3 = Key Eng Mater Advances in Nondestructive Evaluation, Pt 1-3 = Key. Eng. Mater. Advances in Noninvasive Electrocardiographic Monitoring Techniques = Dev Cardiovasc Med Advances in Noninvasive Electrocardiographic Monitoring Techniques = Dev. Cardiovasc. Med. Advances in Nonlinear Speech Processing = Lect Notes Artif Int Advances in Nonlinear Speech Processing = Lect. Notes. Artif. Int. Advances in Nonlinear Variational Inequalities = Adv. Nonlinear Var. Inequal. Advances in Nuclear Physics = Adv Nucl Phys Advances in Nuclear Physics = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 21 = Adv Nucl Phys Advances in Nuclear Physics, Vol 21 = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 22 = Adv Nucl Phys Advances in Nuclear Physics, Vol 22 = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 23 = Adv Nucl Phys Advances in Nuclear Physics, Vol 23 = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 25 = Adv Nucl Phys Advances in Nuclear Physics, Vol 25 = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 26 = Adv Nucl Phys Advances in Nuclear Physics, Vol 26 = Adv. Nucl. Phys. Advances in Nuclear Physics, Vol 27 = Adv Nucl Phys Advances in Nuclear Physics, Vol 27 = Adv. Nucl. Phys. Advances in Nucleic Acid and Protein Analyses, Manipulation, and Sequencing = P Soc Photo-opt Ins Advances in Nucleic Acid and Protein Analyses, Manipulation, and Sequencing = P. Soc. Photo-opt. Ins. Advances in Numerical Analysis = Adv. Numer. Anal. Advances in Numerical Heat Transfer = Adv Numer Heat Trans Advances in Numerical Heat Transfer = Adv. Numer. Heat Trans. Advances in Numerical Heat Transfer, Vol 3 = Adv Numer Heat Trans Advances in Numerical Heat Transfer, Vol 3 = Adv. Numer. Heat Trans. Advances in Numerical Mathematics = Adv. Numer. Math. Advances in Numerical Partial Differential Equations and Optimization = Siam Proc S Advances in Numerical Partial Differential Equations and Optimization = Siam. Proc. S. Advances in Nursing Science = Adv Nurs Sci Advances in Nursing Science = Adv. Nurs. Sci. Advances in nutritional research = Adv Nutr Res Advances in Nutritional Research = Adv Nutr Res Advances in Nutritional Research = Adv. Nutr. Res. Advances In Nutritional Research=Adv Nutr Res;; Advances in Nutritional Research, Vol 10 = Adv Nutr Res Advances in Nutritional Research, Vol 10 = Adv. Nutr. Res. Advances in Nutritional Research, Vol 9 = Adv Nutr Res Advances in Nutritional Research, Vol 9 = Adv. Nutr. Res. Advances in Nutrition and Cancer 2 = Adv Exp Med Biol Advances in Nutrition and Cancer 2 = Adv. Exp. Med. Biol. Advances in Nutrition and Cancer = Adv Exp Med Biol Advances in Nutrition and Cancer = Adv. Exp. Med. Biol. Advances in Obstetrics and Gynaecology = Fortschr Geb Gynaek Advances in Obstetrics and Gynaecology = Fortschr. Geb. Gynaek. Advances in Occupational Ergonomics and Safety = Adv Occup Ergo Saf Advances in Occupational Ergonomics and Safety = Adv. Occup. Ergo. Saf. Advances in Occupational Ergonomics and Safety, Vol 2 = Adv Occup Ergo Saf Advances in Occupational Ergonomics and Safety, Vol 2 = Adv. Occup. Ergo. Saf. Advances in Occupational Medicine & Rehabilitation = Adv Occup Med Rehab Advances in Occupational Medicine & Rehabilitation = Adv. Occup. Med. Rehab. Advances in Occupational, Social, and Organizational Ergonomics = Adv Hum Fact Erg Ser Advances in Occupational, Social, and Organizational Ergonomics = Adv. Hum. Fact. Erg. Ser. Advances in Ocular Immunology = Int Congr Ser Advances in Ocular Immunology = Int. Congr. Ser. Advances in Open Domain Question Answering = Text Speech Lang Tec Advances in Open Domain Question Answering = Text. Speech. Lang. Tec. Advances In Operative Orthopaedics=Adv Oper Orthop;; Advances in ophthalmic plastic and reconstructive surgery = Adv Ophthalmic Plast Reconstr Surg Advances in Ophthalmic, Plastic, and Reconstructive Surgery = Adv. Ophthalmic. Plast. Reconstr. Surg. Advances in Ophthalmology = Adv Ophthalmol Advances in Ophthalmology = Adv. Ophthalmol. Advances in Optical Beam Characterization and Measurements = P Soc Photo-opt Ins Advances in Optical Beam Characterization and Measurements = P. Soc. Photo-opt. Ins. Advances in Optical Biophysics, Proceedings Of = P Soc Photo-opt Ins Advances in Optical Biophysics, Proceedings Of = P. Soc. Photo-opt. Ins. Advances in Optical Biopsy and Optical Mammography = Ann Ny Acad Sci Advances in Optical Biopsy and Optical Mammography = Ann. Ny. Acad. Sci. Advances in Optical Data Storage Technology = Proc Spie Advances in Optical Data Storage Technology = Proc. Spie. Advances in Optical Data Storage Technology = P Soc Photo-opt Ins Advances in Optical Data Storage Technology = P. Soc. Photo-opt. Ins. Advances in Optical & Electron Microscopy = Adv Opt Electron Mic Advances in Optical & Electron Microscopy = Adv. Opt. Electron Mic. Advances in Optical Information Processing Iv = P Soc Photo-opt Ins Advances in Optical Information Processing Iv = P. Soc. Photo-opt. Ins. Advances in Optical Information Processing Ix = P Soc Photo-opt Ins Advances in Optical Information Processing Ix = P. Soc. Photo-opt. Ins. Advances in Optical Information Processing Viii = P Soc Photo-opt Ins Advances in Optical Information Processing Viii = P. Soc. Photo-opt. Ins. Advances in Optical Information Processing Vii = P Soc Photo-opt Ins Advances in Optical Information Processing Vii = P. Soc. Photo-opt. Ins. Advances in Optical Information Processing Vi = P Soc Photo-opt Ins Advances in Optical Information Processing Vi = P. Soc. Photo-opt. Ins. Advances in Optical Information Processing V = P Soc Photo-opt Ins Advances in Optical Information Processing V = P. Soc. Photo-opt. Ins. Advances in Optical Interference Coatings = P Soc Photo-opt Ins Advances in Optical Interference Coatings = P. Soc. Photo-opt. Ins. Advances in Optical Structure Systems = P Soc Photo-opt Ins Advances in Optical Structure Systems = P. Soc. Photo-opt. Ins. Advances in Optical Thin Films Iii = P Soc Photo-opt Ins Advances in Optical Thin Films Iii = P. Soc. Photo-opt. Ins. Advances in Optical Thin Films = P Soc Photo-opt Ins Advances in Optical Thin Films = P. Soc. Photo-opt. Ins. Advances in Optimization and Numerical Analysis = Math Appl Advances in Optimization and Numerical Analysis = Math. Appl. Advances in Optimization = Lect Notes Econ Math Advances in Optimization = Lect. Notes. Econ. Math. Advances in oral biology = Adv Oral Biol Advances in Oral Biology = Adv. Oral Biol. Advances in Organic Coatings Science and Technology Series = Adv Org Co Advances in Organic Coatings Science and Technology Series = Adv. Org. Co. Advances in Organic Synthesis = Adv. Org. Synth. Advances in Organobromine Chemistry Ii = Ind Chem L Advances in Organobromine Chemistry Ii = Ind. Chem. L. Advances in Organobromine Chemistry I = Ind Chem L Advances in Organobromine Chemistry I = Ind. Chem. L. Advances in Organometallic Chemistry = Adv Organomet Chem Advances in Organometallic Chemistry = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 35 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 35 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 36 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 36 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 37 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 37 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 41 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 41 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 42 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 42 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 43 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 43 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 44 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 44 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol. 46 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol. 46 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 47 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 47 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 48 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 48 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 49 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 49 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol. 50 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol. 50 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol. 51 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol. 51 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 52 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 52 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 53 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 53 = Adv. Organomet. Chem. Advances in Organometallic, Chemistry, Vol 54 = Adv Organomet Chem Advances in Organometallic, Chemistry, Vol 54 = Adv. Organomet. Chem. Advances in Organometallic Chemistry Vol 55 = Adv Organomet Chem Advances in Organometallic Chemistry Vol 55 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 57 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 57 = Adv. Organomet. Chem. Advances in Organometallic Chemistry, Vol 58 = Adv Organomet Chem Advances in Organometallic Chemistry, Vol 58 = Adv. Organomet. Chem. Advances in Oto-rhino-laryngology = Adv Oto-rhino-laryng Advances in Oto-rhino-laryngology = Adv. Oto-rhino-laryng. Advances in oto-rhino-laryngology = Adv Otorhinolaryngol Advances in Oto-Rhino-Laryngology = Adv. Otorhinolaryngol. Advances In Oto-Rhino-Laryngology=Adv Otorhinolaryngol;; Advances in P-adic and Non-archimedean Analysis = Contemp Math Advances in P-adic and Non-archimedean Analysis = Contemp. Math. Advances in pain research and therapy = Adv Pain Res Ther Advances in Pain Research and Therapy = Adv Pain Res Ther Advances in Pain Research and Therapy = Adv. Pain Res. Ther. Advances in Parallel and Distributed Simulation = Simul Series Advances in Parallel and Distributed Simulation = Simul. Series. Advances in Parallel Computing = Adv. Parallel Comput. Advances in Parallel Computing = Adv Parallel Comput Advances in Parallel Computing = Adv. Parallel Comput. Advances in Parallel Computing = Adv Par Com Advances in Parallel Computing = Adv. Par. Com. Advances in Parasitology = Adv Parasit Advances in Parasitology = Adv. Parasit. Advances in parasitology = Adv Parasitol Advances in Parasitology = Adv. Parasitol. Advances In Parasitology=Adv Parasitol;; Advances in Parasitology - Opportunistic Protozoa in Humans = Adv Parasit Advances in Parasitology - Opportunistic Protozoa in Humans = Adv. Parasit. Advances in Parasitology, Vol 32 = Adv Parasit Advances in Parasitology, Vol 32 = Adv. Parasit. Advances in Parasitology, Vol 33 = Adv Parasit Advances in Parasitology, Vol 33 = Adv. Parasit. Advances in Parasitology, Vol 34 = Adv Parasit Advances in Parasitology, Vol 34 = Adv. Parasit. Advances in Parasitology, Vol 35 = Adv Parasit Advances in Parasitology, Vol 35 = Adv. Parasit. Advances in Parasitology, Vol 37 = Adv Parasit Advances in Parasitology, Vol 37 = Adv. Parasit. Advances in Parasitology, Vol 38 = Adv Parasit Advances in Parasitology, Vol 38 = Adv. Parasit. Advances in Parasitology, Vol 39 = Adv Parasit Advances in Parasitology, Vol 39 = Adv. Parasit. Advances in Parasitology, Vol 41 = Adv Parasit Advances in Parasitology, Vol 41 = Adv. Parasit. Advances in Parasitology, Vol 42 = Adv Parasit Advances in Parasitology, Vol 42 = Adv. Parasit. Advances in Parasitology, Vol 43 = Adv Parasit Advances in Parasitology, Vol 43 = Adv. Parasit. Advances in Parasitology, Vol 44 = Adv Parasit Advances in Parasitology, Vol 44 = Adv. Parasit. Advances in Parasitology, Vol 45 = Adv Parasit Advances in Parasitology, Vol 45 = Adv. Parasit. Advances in Parasitology, Vol 46 = Adv Parasit Advances in Parasitology, Vol 46 = Adv. Parasit. Advances in Parasitology, Vol 47 = Adv Parasit Advances in Parasitology, Vol 47 = Adv. Parasit. Advances in Parasitology, Vol 48 = Adv Parasit Advances in Parasitology, Vol 48 = Adv. Parasit. Advances in Parasitology, Vol 49 = Adv Parasit Advances in Parasitology, Vol 49 = Adv. Parasit. Advances in Parasitology, Vol 50 = Adv Parasit Advances in Parasitology, Vol 50 = Adv. Parasit. Advances in Parasitology, Vol 51 = Adv Parasit Advances in Parasitology, Vol 51 = Adv. Parasit. Advances in Parasitology, Vol 52 = Adv Parasit Advances in Parasitology, Vol 52 = Adv. Parasit. Advances in Parasitology, Vol 53 = Adv Parasit Advances in Parasitology, Vol 53 = Adv. Parasit. Advances in Parasitology, Vol 54 = Adv Parasit Advances in Parasitology, Vol 54 = Adv. Parasit. Advances in Parasitology, Vol 56 = Adv Parasit Advances in Parasitology, Vol 56 = Adv. Parasit. Advances in Parasitology, Vol 57 = Adv Parasit Advances in Parasitology, Vol 57 = Adv. Parasit. Advances in Parasitology, Vol 58 = Adv Parasit Advances in Parasitology, Vol 58 = Adv. Parasit. Advances in Parasitology, Vol 59 = Adv Parasit Advances in Parasitology, Vol 59 = Adv. Parasit. Advances in Parasitology, Vol 60 = Adv Parasit Advances in Parasitology, Vol 60 = Adv. Parasit. Advances in Parasitology, Vol 61 = Adv Parasit Advances in Parasitology, Vol 61 = Adv. Parasit. Advances in Parasitology, Vol 62 = Adv Parasit Advances in Parasitology, Vol 62 = Adv. Parasit. Advances in Parasitology, Vol 63 = Adv Parasit Advances in Parasitology, Vol 63 = Adv. Parasit. Advances in Parasitology, Vol 64 = Adv Parasit Advances in Parasitology, Vol 64 = Adv. Parasit. Advances in Parasitology, Vol 65 = Adv Parasit Advances in Parasitology, Vol 65 = Adv. Parasit. Advances in Parasitology, Vol 66 = Adv Parasit Advances in Parasitology, Vol 66 = Adv. Parasit. Advances in Parasitology, Vol 67 = Adv Parasit Advances in Parasitology, Vol 67 = Adv. Parasit. Advances in Parasitology, Vol 68 = Adv Parasit Advances in Parasitology, Vol 68 = Adv. Parasit. Advances in Parasitology Vol 69 = Adv Parasit Advances in Parasitology Vol 69 = Adv. Parasit. Advances in Parasitology, Vol 70 = Adv Parasit Advances in Parasitology, Vol 70 = Adv. Parasit. Advances in Parasitology, Vol 71 = Adv Parasit Advances in Parasitology, Vol 71 = Adv. Parasit. Advances in Parasitology, Vol 72 = Adv Parasit Advances in Parasitology, Vol 72 = Adv. Parasit. Advances in Parasitology, Vol 73 = Adv Parasit Advances in Parasitology, Vol 73 = Adv. Parasit. Advances in Parasitology, Vol 74 = Adv Parasit Advances in Parasitology, Vol 74 = Adv. Parasit. Advances in Partial Differential Equations = Adv. Partial Differential Equations Advances in pathobiology = Adv Pathobiol Advances in Pathobiology = Adv. Pathobiol. Advances in Pattern Recognition = Adv Pattern Recognit Advances in Pattern Recognition = Adv. Pattern Recognit. Advances in Pattern Recognition = Lect Notes Comput Sc Advances in Pattern Recognition = Lect. Notes. Comput. Sc. Advances in Pattern Recognition (series) = Adv Ptrn Recognit Advances in Pattern Recognition (series) = Adv. Ptrn. Recognit. Advances in pediatric infectious diseases = Adv Pediatr Infect Dis Advances in Pediatric Infectious Diseases = Adv. Pediatr. Infect. Dis. Advances In Pediatric Infectious Diseases=Adv Pediatr Infect Dis;; Advances in Pediatric Pulmonology = Pediat Adol Advances in Pediatric Pulmonology = Pediat. Adol. Advances in pediatrics = Adv Pediatr Advances in Pediatrics = Adv Pediatr Advances in Pediatrics = Adv. Pediatr. Advances In Pediatrics=Adv Pediatr;; Advances in Performance-based Earthquake Engineering = Geotech Geol Earthq Advances in Performance-based Earthquake Engineering = Geotech. Geol. Earthq. Advances in Performance-based Earthquake Engineering = Geot Geol Earthquake Advances in Performance-based Earthquake Engineering = Geot. Geol. Earthquake Advances in Perinatal Thyroidology = Adv Exp Med Biol Advances in Perinatal Thyroidology = Adv. Exp. Med. Biol. Advances in Peritoneal Dialysis/1995, Vol 11 = Adv Perit D Advances in Peritoneal Dialysis/1995, Vol 11 = Adv. Perit. D. Advances in Peritoneal Dialysis/1996, Vol 12 = Adv Perit D Advances in Peritoneal Dialysis/1996, Vol 12 = Adv. Perit. D. Advances in Peritoneal Dialysis/1997, Vol 13 = Adv Perit D Advances in Peritoneal Dialysis/1997, Vol 13 = Adv. Perit. D. Advances in Peritoneal Dialysis/1998, Vol 14 = Adv Perit D Advances in Peritoneal Dialysis/1998, Vol 14 = Adv. Perit. D. Advances in Peritoneal Dialysis/1999, Vol 15 = Adv Perit D Advances in Peritoneal Dialysis/1999, Vol 15 = Adv. Perit. D. Advances in Peritoneal Dialysis = Adv Perit D Advances in Peritoneal Dialysis = Adv. Perit. D. Advances in Peritoneal Dialysis = Adv. Perit. Dial. Advances In Peritoneal Dialysis=Adv Perit Dial;; Advances in peritoneal dialysis. Conference on Peritoneal Dialysis = Adv Perit Dial Advances in Peritoneal Dialysis, Vol 5, 1989 = Adv Perit D Advances in Peritoneal Dialysis, Vol 5, 1989 = Adv. Perit. D. Advances in Peritoneal Dialysis, Vol 6 = Adv Perit D Advances in Peritoneal Dialysis, Vol 6 = Adv. Perit. D. Advances in Peritoneal Dialysis, Vol 7, 1991 = Adv Perit D Advances in Peritoneal Dialysis, Vol 7, 1991 = Adv. Perit. D. Advances in Peritoneal Dialysis, Vol 8, 1992 = Adv Perit D Advances in Peritoneal Dialysis, Vol 8, 1992 = Adv. Perit. D. Advances in Peritoneal Dialysis, Vol 9, 1993 = Adv Perit D Advances in Peritoneal Dialysis, Vol 9, 1993 = Adv. Perit. D. Advances in Personality Assessment = Adv Pers As Advances in Personality Assessment = Adv. Pers. As. Advances in Personality Assessment, Vol 9 = Adv Pers As Advances in Personality Assessment, Vol 9 = Adv. Pers. As. Advances in Personality Psychology = Adv Pers Psychol Advances in Personality Psychology = Adv. Pers. Psychol. Advances in Personality Psychology, Vol 2 = Adv Pers Psychol Advances in Personality Psychology, Vol 2 = Adv. Pers. Psychol. Advances in pest control research = Adv Pest Control Res Advances in Pest Control Research = Adv. Pest Control Res. Advances in Petri Nets 1989 = Lect Notes Comput Sc Advances in Petri Nets 1989 = Lect. Notes. Comput. Sc. Advances in Petri Nets 1990 = Lect Notes Comput Sc Advances in Petri Nets 1990 = Lect. Notes. Comput. Sc. Advances in Petri Nets 1991 = Lect Notes Comput Sc Advances in Petri Nets 1991 = Lect. Notes. Comput. Sc. Advances in pharmaceutical sciences = Adv Pharm Sci Advances in Pharmaceutical Sciences = Adv. Pharm. Sci. Advances in Pharmacological Sciences = Adv Phar Sc Advances in Pharmacological Sciences = Adv. Phar. Sc. Advances in pharmacology = Adv Pharmacol Advances in Pharmacology = Adv Pharmacol Advances in Pharmacology = Adv. Pharmacol. Advances In Pharmacology=Adv Pharmacol;; Advances in Pharmacology and Chemotherapy = Adv Pharmacol Chemot Advances in Pharmacology and Chemotherapy = Adv. Pharmacol. Chemot. Advances in pharmacology and chemotherapy = Adv Pharmacol Chemother Advances in Pharmacology and Chemotherapy = Adv. Pharmacol. Chemother. Advances in pharmacology (San Diego, Calif.) = Adv Pharmacol Advances in Phase Space Analysis of Partial Differential Equations = Prog Nonlinear Diffe Advances in Phase Space Analysis of Partial Differential Equations = Prog. Nonlinear. Diffe. Advances in Photochemistry = Adv. Photochem. Advances in Photonic Materials and Devices = Ceram Trans Advances in Photonic Materials and Devices = Ceram. Trans. Advances in Photonics of Quantum Computing, Memory, and Communication Iii = Proc Spie Advances in Photonics of Quantum Computing, Memory, and Communication Iii = Proc. Spie. Advances in Photonics of Quantum Computing, Memory, and Communication Iv = Proc Spie Advances in Photonics of Quantum Computing, Memory, and Communication Iv = Proc. Spie. Advances in Photosynthesis and Respiration = Adv Photosynth Resp Advances in Photosynthesis and Respiration = Adv. Photosynth. Resp. Advances in Physical Organic Chemistry = Adv Phys Org Chem Advances in Physical Organic Chemistry = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 27 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 27 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 29 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 29 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 31 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 31 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 32 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 32 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 35 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 35 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 36 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 36 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 37 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 37 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 38 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 38 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 39 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 39 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 40 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 40 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 41 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 41 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 43 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 43 = Adv. Phys. Org. Chem. Advances in Physical Organic Chemistry, Vol 44 = Adv Phys Org Chem Advances in Physical Organic Chemistry, Vol 44 = Adv. Phys. Org. Chem. Advances in Physics = Adv Phys Advances in Physics = Adv. Phys. Advances in physiology education = Adv Physiol Educ Advances in Physiology Education = Adv Physiol Educ Advances in Physiology Education = Adv. Physiol. Educ. Advances in Pineal Research : 4 = Adv Pineal Advances in Pineal Research : 4 = Adv. Pineal Advances in Pineal Research : 5 = Adv Pineal Advances in Pineal Research : 5 = Adv. Pineal Advances in Pineal Research : 6 = Adv Pineal Advances in Pineal Research : 6 = Adv. Pineal Advances in Pineal Research: 7 = Adv Pineal Advances in Pineal Research: 7 = Adv. Pineal Advances in Pineal Research: 8 = Adv Pineal Advances in Pineal Research: 8 = Adv. Pineal Advances in Pineal Research = Adv Pineal Advances in Pineal Research = Adv. Pineal Advances in Plan-based Control of Robotic Agents = Lect Notes Artif Int Advances in Plan-based Control of Robotic Agents = Lect. Notes. Artif. Int. Advances in planned parenthood = Adv Plan Parent Advances in Planned Parenthood = Adv. Plan. Parent. Advances in Plant Biology = Advan Pl Bio Advances in Plant Biology = Advan. Pl. Bio. Advances in Plant Glycosides, Chemistry and Biology = Stud Plan S Advances in Plant Glycosides, Chemistry and Biology = Stud. Plan. S. Advances in Plant Pathology = Adv. Plant Pathol. Advances in Plasma Physics - Thomas H. Stix Symposium = Aip Conf Proc Advances in Plasma Physics - Thomas H. Stix Symposium = Aip. Conf. Proc. Advances in Polaron Physics = Springer Ser Solid-s Advances in Polaron Physics = Springer. Ser. Solid-s. Advances in Police Theory and Practice = Adv Polic Theor Prac Advances in Police Theory and Practice = Adv. Polic. Theor. Prac. Advances in Polyamine Research = Adv Polyamine Res Advances in Polyamine Research = Adv. Polyamine Res. Advances in Polycarbonates = Acs Sym Ser Advances in Polycarbonates = Acs. Sym. Ser. Advances in Polymer Derived Ceramics and Composites = Ceram Trans Advances in Polymer Derived Ceramics and Composites = Ceram. Trans. Advances in Polymer Nanocomposite Technology = Polym Sci Technol Se Advances in Polymer Nanocomposite Technology = Polym. Sci. Technol. Se. Advances in Polymer Processing: From Macro to Nano Scales = Woodhead Publ Mater Advances in Polymer Processing: From Macro to Nano Scales = Woodhead. Publ. Mater. Advances in Polymer Science = Adv Polym Sci Advances in Polymer Science = Adv. Polym. Sci. Advances in Polymer Science: Viscoelasticity, Atomistic Models, Statistical Chemistry = Adv Polym Sci Advances in Polymer Science: Viscoelasticity, Atomistic Models, Statistical Chemistry = Adv. Polym. Sci. Advances in Polymer Technology = Adv Polym Tech Advances in Polymer Technology = Adv. Polym. Tech. Advances in Polymer Technology = Adv. Polym. Technol. Advances in population : psychosocial perspectives = Adv Popul Advances in Porcelain Enamel Technology = Ceram Trans Advances in Porcelain Enamel Technology = Ceram. Trans. Advances in Porous Materials = Mater Res Soc Symp P Advances in Porous Materials = Mater. Res. Soc. Symp. P. Advances in Powder Metallurgy = Adv. Powder Metall. Advances in Powder Metallurgy = Adv Pow Met Advances in Powder Metallurgy = Adv. Pow. Met. Advances in Powder Metallurgy and Particulate Materials = Adv. Powder. Metall. Part. Mater. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 1 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 1 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 2 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 2 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 3 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 3 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 4 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 4 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 5 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 5 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 6 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1993, Vol 6 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 1 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 1 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 2 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 2 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 3 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 3 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 4 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 4 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 5 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 5 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 6 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 6 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 7 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1994, Vol 7 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials - 1997 = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials - 1997 = Adv. Pm. Part. Advances in Powder Metallurgy & Particulate Materials = Adv Pm Part Advances in Powder Metallurgy & Particulate Materials = Adv. Pm. Part. Advances in Practical Applications of Agents and Multiagent Systems = Adv Intell Soft Comp Advances in Practical Applications of Agents and Multiagent Systems = Adv. Intell. Soft. Comp. Advances in Practical Applications of Agents and Multiagent Systems = Adv Intel Soft Compu Advances in Practical Applications of Agents and Multiagent Systems = Adv. Intel. Soft. Compu. Advances in Practical Multi-agent Systems = Stud Comp Intell Advances in Practical Multi-agent Systems = Stud. Comp. Intell. Advances in Practical Multi-agent Systems = Stud Comput Intell Advances in Practical Multi-agent Systems = Stud. Comput. Intell. Advances in Printing and Media Technology, Vol 32 = Adv Pr Sci Advances in Printing and Media Technology, Vol 32 = Adv. Pr. Sci. Advances in Printing and Media Technology, Vol Xxxiii = Adv Pr Sci Advances in Printing and Media Technology, Vol Xxxiii = Adv. Pr. Sci. Advances in Printing and Media Technology, Vol Xxxiv = Adv Pr Sci Advances in Printing and Media Technology, Vol Xxxiv = Adv. Pr. Sci. Advances in Printing and Media Technology, Vol Xxxv = Adv Pr Sci Advances in Printing and Media Technology, Vol Xxxv = Adv. Pr. Sci. Advances in Printing Science and Technology = Adv Pr Sci Advances in Printing Science and Technology = Adv. Pr. Sci. Advances in Printing Science and Technology, Vol 21 = Adv Pr Sci Advances in Printing Science and Technology, Vol 21 = Adv. Pr. Sci. Advances in Printing Science and Technology, Vol 22 = Adv Pr Sci Advances in Printing Science and Technology, Vol 22 = Adv. Pr. Sci. Advances in Printing Science and Technology, Vol 31 = Adv Pr Sci Advances in Printing Science and Technology, Vol 31 = Adv. Pr. Sci. Advances in Probabilistic Graphical Models = Stud Fuzz Soft Comp Advances in Probabilistic Graphical Models = Stud. Fuzz. Soft. Comp. Advances in Probability Distributions With Given Marginals = Math Appl Advances in Probability Distributions With Given Marginals = Math. Appl. Advances in Production Management Systems = Ifip Trans B Advances in Production Management Systems = Ifip. Trans. B. Advances in Production Management Systems = Int Fed Info Proc Advances in Production Management Systems = Int. Fed. Info. Proc. Advances in Program Evaluation = Adv Prog Eval Advances in Program Evaluation = Adv. Prog. Eval. Advances in Prostaglandin and Leukotriene Research: Basic Science and New Clinical Applications = Med Sci Symp Ser Advances in Prostaglandin and Leukotriene Research: Basic Science and New Clinical Applications = Med. Sci. Symp. Ser. Advances in prostaglandin and thromboxane research = Adv Prostaglandin Thromboxane Res Advances in Prostaglandin and Thromboxane Research = Adv. Prostaglandin Thromboxane Res. Advances in Prostaglandin and Thromboxane Research = Adv Prostag Thromb R Advances in Prostaglandin and Thromboxane Research = Adv. Prostag. Thromb. R. Advances in Prostaglandin, Leukotriene, and Other Bioactive Lipid Research: Basic Science and Clinical Applications = Adv Exp Med Biol Advances in Prostaglandin, Leukotriene, and Other Bioactive Lipid Research: Basic Science and Clinical Applications = Adv. Exp. Med. Biol. Advances in prostaglandin, thromboxane, and leukotriene research = Adv Prostaglandin Thromboxane Leukot Res Advances in Prostaglandin, Thromboxane, and Leukotriene Research = Adv. Prostaglandin. Thromboxane. Leukot. Res. Advances In Prostaglandin, Thromboxane, and Leukotriene Research=Adv Prostaglandin Thromboxane Leukot Res;; Advances in Prostaglandin, Thromboxane, and Leukotriene Research = Adv. Prostaglandin, Thromboxane, Leukotriene Res. Advances in Prostaglandin Thromboxane and Leukotriene Research = Adv Prostag Thromb L Advances in Prostaglandin Thromboxane and Leukotriene Research = Adv. Prostag. Thromb. L. Advances in protein chemistry = Adv Protein Chem Advances in Protein Chemistry = Adv Protein Chem Advances in Protein Chemistry = Adv. Protein Chem. Advances In Protein Chemistry=Adv Protein Chem;; Advances in Protein Chemistry and Structural Biology = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology = Adv. Protein Chem. Str. Advances in Protein Chemistry and Structural Biology: Protein Structure and Diseases, Vol 83 = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology: Protein Structure and Diseases, Vol 83 = Adv. Protein Chem. Str. Advances in Protein Chemistry and Structural Biology: Recent Advances in Electron Cryomicroscopy, Pt A = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology: Recent Advances in Electron Cryomicroscopy, Pt A = Adv. Protein Chem. Str. Advances in Protein Chemistry and Structural Biology, Vol 78 = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology, Vol 78 = Adv. Protein Chem. Str. Advances in Protein Chemistry and Structural Biology, Vol 79 = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology, Vol 79 = Adv. Protein Chem. Str. Advances in Protein Chemistry and Structural Biology, Vol 82: Recent Advances in Electron Cryomicroscopy, Pt B = Adv Protein Chem Str Advances in Protein Chemistry and Structural Biology, Vol 82: Recent Advances in Electron Cryomicroscopy, Pt B = Adv. Protein Chem. Str. Advances in Protein Chemistry, Vol 44 = Adv Protein Chem Advances in Protein Chemistry, Vol 44 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 45 = Adv Protein Chem Advances in Protein Chemistry, Vol 45 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 46 = Adv Protein Chem Advances in Protein Chemistry, Vol 46 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 47 = Adv Protein Chem Advances in Protein Chemistry, Vol 47 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 48 = Adv Protein Chem Advances in Protein Chemistry, Vol 48 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 49 = Adv Protein Chem Advances in Protein Chemistry, Vol 49 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 50 = Adv Protein Chem Advances in Protein Chemistry, Vol 50 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 51 = Adv Protein Chem Advances in Protein Chemistry, Vol 51 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 53 = Adv Protein Chem Advances in Protein Chemistry, Vol 53 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 54 = Adv Protein Chem Advances in Protein Chemistry, Vol 54 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 55 = Adv Protein Chem Advances in Protein Chemistry, Vol 55 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 56 = Adv Protein Chem Advances in Protein Chemistry, Vol 56 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 57 = Adv Protein Chem Advances in Protein Chemistry, Vol 57 = Adv. Protein Chem. Advances in Protein Chemistry, Vol 58 = Adv Protein Chem Advances in Protein Chemistry, Vol 58 = Adv. Protein Chem. Advances in Protein Design : International Workshop 1988 = Gbf Monog Series Advances in Protein Design : International Workshop 1988 = Gbf. Monog. Series. Advances in Pseudo-differential Operators = Oper Theory Adv Appl Advances in Pseudo-differential Operators = Oper. Theory. Adv. Appl. Advances in psychobiology = Adv Psychobiol Advances in Psychobiology = Adv. Psychobiol. Advances in Psychology = Adv Psychol Advances in Psychology = Adv. Psychol. Advances in psychology research = Adv Psychol Res Advances in Psychology Research = Adv Psychol Res Advances in Psychology Research = Adv. Psychol. Res. Advances in Psychology Research, Vol 60 = Adv Psychol Res Advances in Psychology Research, Vol 60 = Adv. Psychol. Res. Advances in Psychology Research, Vol 61 = Adv Psychol Res Advances in Psychology Research, Vol 61 = Adv. Psychol. Res. Advances in Psychology Research, Vol 63 = Adv Psychol Res Advances in Psychology Research, Vol 63 = Adv. Psychol. Res. Advances in Psychology Research, Vol 64 = Adv Psychol Res Advances in Psychology Research, Vol 64 = Adv. Psychol. Res. Advances in Psychology Research, Vol 66 = Adv Psychol Res Advances in Psychology Research, Vol 66 = Adv. Psychol. Res. Advances in Psychology Research, Vol 67 = Adv Psychol Res Advances in Psychology Research, Vol 67 = Adv. Psychol. Res. Advances in Psychology Research, Vol 68 = Adv Psychol Res Advances in Psychology Research, Vol 68 = Adv. Psychol. Res. Advances in Psychology Research, Vol 69 = Adv Psychol Res Advances in Psychology Research, Vol 69 = Adv. Psychol. Res. Advances in Psychology Research, Vol 70 = Adv Psychol Res Advances in Psychology Research, Vol 70 = Adv. Psychol. Res. Advances in Psychology Research, Volume 71 = Adv Psychol Res Advances in Psychology Research, Volume 71 = Adv. Psychol. Res. Advances in psychosomatic medicine = Adv Psychosom Med Advances in Psychosomatic Medicine = Adv Psychosom Med Advances in Psychosomatic Medicine = Adv. Psychosom. Med. Advances In Psychosomatic Medicine=Adv Psychosom Med;; Advances in Public Economics: Utility, Choice and Welfare = Theory Decis Ser C G Advances in Public Economics: Utility, Choice and Welfare = Theory. Decis. Ser. C. G. Advances in Public Interest Accounting = Adv Pub Int Advances in Public Interest Accounting = Adv. Pub. Int. Advances in Public Interest Accounting = Adv Public Inter Acc Advances in Public Interest Accounting = Adv. Public Inter. Acc. Advances in Quality of Life Theory and Research = Social Indic Res Advances in Quality of Life Theory and Research = Social. Indic. Res. Advances in Quality of Life Theory and Research = Soc Indic Res Ser Advances in Quality of Life Theory and Research = Soc. Indic. Res. Ser. Advances in Quantitative Asset Management = Stud Computat Fin Advances in Quantitative Asset Management = Stud. Computat. Fin. Advances in Quantum Chemistry = Adv Quantum Chem Advances in Quantum Chemistry = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 25 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 25 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 26 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 26 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol. 28 = Adv Quantum Chem Advances in Quantum Chemistry, Vol. 28 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol. 29 = Adv Quantum Chem Advances in Quantum Chemistry, Vol. 29 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 30 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 30 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 31: Quantum Systems in Chemistry and Physics, Pt I = Adv Quantum Chem Advances in Quantum Chemistry, Vol 31: Quantum Systems in Chemistry and Physics, Pt I = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 32: Quantum Systems in Chemistry and Physics, Pt Ii = Adv Quantum Chem Advances in Quantum Chemistry, Vol 32: Quantum Systems in Chemistry and Physics, Pt Ii = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 34 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 34 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 35 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 35 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 36 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 36 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 37 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 37 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 38 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 38 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 39: New Perspectives in Quantum Systems in Chemistry and Physics, Pt 1 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 39: New Perspectives in Quantum Systems in Chemistry and Physics, Pt 1 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 40: New Perspectives in Quantum Systems in Chemistry and Physics, Pt 2 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 40: New Perspectives in Quantum Systems in Chemistry and Physics, Pt 2 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 41 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 41 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 42 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 42 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 43 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 43 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 44 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 44 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 45: Theory of The Interaction of Swift Ions With Matter, Pt 1 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 45: Theory of The Interaction of Swift Ions With Matter, Pt 1 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 46: Theory of The Interaction of Swift Ions With Matter, Pt 2 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 46: Theory of The Interaction of Swift Ions With Matter, Pt 2 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 47 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 47 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 48 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 48 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 49 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 49 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 50 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 50 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 51 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 51 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 52 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 52 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 53 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 53 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 54 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 54 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 55: Applications of Theoretical Methods to Atmospheric Science = Adv Quantum Chem Advances in Quantum Chemistry, Vol 55: Applications of Theoretical Methods to Atmospheric Science = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 56 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 56 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 57 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 57 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 58 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 58 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 59 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 59 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 60: Unstable States in The Continuous Spectra, Part 1: Analysis, Concepts, Methods, and Results = Adv Quantum Chem Advances in Quantum Chemistry, Vol 60: Unstable States in The Continuous Spectra, Part 1: Analysis, Concepts, Methods, and Results = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol. 61 = Adv Quantum Chem Advances in Quantum Chemistry, Vol. 61 = Adv. Quantum Chem. Advances in Quantum Chemistry, Vol 62 = Adv Quantum Chem Advances in Quantum Chemistry, Vol 62 = Adv. Quantum Chem. Advances in Quantum Computation = Contemp Math Advances in Quantum Computation = Contemp. Math. Advances in Quantum Phenomena = Nato Adv Sci Inst Se Advances in Quantum Phenomena = Nato. Adv. Sci. Inst. Se. Advances in Quantum Theory = Aip Conf Proc Advances in Quantum Theory = Aip. Conf. Proc. Advances in radiation biology = Adv Radiat Biol Advances in Radiation Biology = Adv Radiat Biol Advances in Radiation Biology = Adv. Radiat. Biol. Advances in Radiation Biology, Vol 17 = Adv Radiat Biol Advances in Radiation Biology, Vol 17 = Adv. Radiat. Biol. Advances in Radiation Biology, Vol 18 = Adv Radiat Biol Advances in Radiation Biology, Vol 18 = Adv. Radiat. Biol. Advances in Radiation Protection = Euro Health Phys Rad Advances in Radiation Protection = Euro. Health. Phys. Rad. Advances in Radiosurgery = Act Neur S Advances in Radiosurgery = Act. Neur. S. Advances in Rapid Thermal Processing = Elec Soc S Advances in Rapid Thermal Processing = Elec. Soc. S. Advances in Regenerative Medicine: Role of Nanotechnology and Engineering Principles = Nato Sci Peace Sec A Advances in Regenerative Medicine: Role of Nanotechnology and Engineering Principles = Nato. Sci. Peace. Sec. A. Advances in Regulatory Economics = Adv Regul Econ Advances in Regulatory Economics = Adv. Regul. Econ. Advances in Rehabilitation Robotics = Lect Notes Contr Inf Advances in Rehabilitation Robotics = Lect. Notes. Contr. Inf. Advances in Remote Sensing of The Atmosphere From Space and From The Ground = Adv Space Res Advances in Remote Sensing of The Atmosphere From Space and From The Ground = Adv. Space Res. Advances in Remote Sensing of The Atmosphere From Space and From The Ground = Adv Space Res-series Advances in Remote Sensing of The Atmosphere From Space and From The Ground = Adv. Space Res-series. Advances in Remote Sensing of The Middle and Upper Atmosphere and The Ionosphere = Adv Space Res Advances in Remote Sensing of The Middle and Upper Atmosphere and The Ionosphere = Adv. Space. Res. Advances in Renal Replacement Therapy = Adv Renal Replace Th Advances in Renal Replacement Therapy = Adv. Renal Replace. Th. Advances in renal replacement therapy = Adv Ren Replace Ther Advances in Renal Replacement Therapy = Adv. Ren. Replace. Ther. Advances In Renal Replacement Therapy=Adv Ren Replace Ther;; Advances in Reproduction in Dogs, Cats and Exotic Carnivores = J Rep Fer S Advances in Reproduction in Dogs, Cats and Exotic Carnivores = J. Rep. Fer. S. Advances in Reproductive Endocrinology = Adv Rep End Advances in Reproductive Endocrinology = Adv. Rep. End. Advances in reproductive physiology = Adv Reprod Physiol Advances in Reproductive Physiology = Adv Reprod Physiol Advances in Reproductive Physiology = Adv. Reprod. Physiol. Advances in Research and Theories of School Management and Educational Policy = Adv Res Th Sch Manag Advances in Research and Theories of School Management and Educational Policy = Adv. Res. Th. Sch. Manag. Advances in Research and Theories of School Management and Educational Policy, Vol 3, 1995 = Adv Res Th Sch Manag Advances in Research and Theories of School Management and Educational Policy, Vol 3, 1995 = Adv. Res. Th. Sch. Manag. Advances in Research On Neurodegeneration = Adv Res Neurodegener Advances in Research On Neurodegeneration = Adv. Res. Neurodegener. Advances in Research On Neurodegeneration, Vol 7 = Adv Res Neurodegener Advances in Research On Neurodegeneration, Vol 7 = Adv. Res. Neurodegener. Advances in Research On Neurodegeneration, Vol 8 = Adv Res Neurodegener Advances in Research On Neurodegeneration, Vol 8 = Adv. Res. Neurodegener. Advances in Research On Teaching = Adv Res Teach Advances in Research On Teaching = Adv. Res. Teach. Advances in Resist Materials and Processing Technology Xxiv = Proc Spie Advances in Resist Materials and Processing Technology Xxiv = Proc. Spie. Advances in Resist Materials and Processing Technology Xxiv = P Soc Photo-opt Ins Advances in Resist Materials and Processing Technology Xxiv = P. Soc. Photo-opt. Ins. Advances in Resist Materials and Processing Technology Xxviii = Proc Spie Advances in Resist Materials and Processing Technology Xxviii = Proc. Spie. Advances in Resist Materials and Processing Technology Xxvii, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Materials and Processing Technology Xxvii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Materials and Processing Technology Xxv, Pts 1 and 2 = Proc Spie Advances in Resist Materials and Processing Technology Xxv, Pts 1 and 2 = Proc. Spie. Advances in Resist Materials and Processing Technology Xxv, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Materials and Processing Technology Xxv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Ix = P Soc Photo-opt Ins Advances in Resist Technology and Processing Ix = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing = P Soc Photo-opt Ins Advances in Resist Technology and Processing = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Vi = P Soc Photo-opt Ins Advances in Resist Technology and Processing Vi = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xiii = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xiii = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xii = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xii = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xi = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xi = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xiv = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xiv = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xix, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xix, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing X = P Soc Photo-opt Ins Advances in Resist Technology and Processing X = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xviii, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xviii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xvii, Pts 1 and 2 = Proc Spie Advances in Resist Technology and Processing Xvii, Pts 1 and 2 = Proc. Spie. Advances in Resist Technology and Processing Xvii, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xvii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xv, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xxiii, Pts 1 and 2 = Proc Spie Advances in Resist Technology and Processing Xxiii, Pts 1 and 2 = Proc. Spie. Advances in Resist Technology and Processing Xxiii, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xxiii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xxii, Pt 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xxii, Pt 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xxi, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xxi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Resist Technology and Processing Xx, Pts 1 and 2 = P Soc Photo-opt Ins Advances in Resist Technology and Processing Xx, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Rice Blast Research = Dev Plant Pathol Advances in Rice Blast Research = Dev. Plant. Pathol. Advances in Ring Theory = Trends Math Advances in Ring Theory = Trends. Math. Advances in Risk Analysis = Adv Risk Anal Advances in Risk Analysis = Adv. Risk Anal. Advances in Robotics = Lect Notes Comput Sc Advances in Robotics = Lect. Notes. Comput. Sc. Advances in Robot Learning, Proceedings = Lect Notes Artif Int Advances in Robot Learning, Proceedings = Lect. Notes. Artif. Int. Advances in Rockfill Structures = Nato Adv Sci I E-app Advances in Rockfill Structures = Nato. Adv. Sci. I. E-app. Advances in Rolling Equipment and Technologies = Adv Mater Res-switz Advances in Rolling Equipment and Technologies = Adv. Mater. Res-switz. Advances in Rule Interchange and Applications, Proceedings = Lect Notes Comput Sc Advances in Rule Interchange and Applications, Proceedings = Lect. Notes. Comput. Sc. Advances in Safety and Structural Integrity 2005 = Sol St Phen Advances in Safety and Structural Integrity 2005 = Sol. St. Phen. Advances in Science and Technology = Adv Sci Tech Advances in Science and Technology = Adv. Sci. Tech. Advances in Sciences and Engineering = Adv Sci Eng Advances in Sciences and Engineering = Adv. Sci. Eng. Advances in Second Messenger and Phosphoprotein Research = Adv Sec Mess Phosph Advances in Second Messenger and Phosphoprotein Research = Adv. Sec. Mess. Phosph. Advances in second messenger and phosphoprotein research = Adv Second Messenger Phosphoprotein Res Advances in Second Messenger and Phosphoprotein Research = Adv. Second Messenger Phosphoprotein Res. Advances In Second Messenger and Phosphoprotein Research=Adv Second Messenger Phosphoprotein Res;; Advances in Security Technology = Comm Com Inf Sc Advances in Security Technology = Comm. Com. Inf. Sc. Advances in Self-organizing Maps, Proceedings = Lect Notes Comput Sc Advances in Self-organizing Maps, Proceedings = Lect. Notes. Comput. Sc. Advances in Self Research = Adv Self Res Advances in Self Research = Adv. Self Res. Advances in Semantic Media Adaptation and Personalization = Stud Comp Intell Advances in Semantic Media Adaptation and Personalization = Stud. Comp. Intell. Advances in Semantic Media Adaptation and Personalization = Stud Comput Intell Advances in Semantic Media Adaptation and Personalization = Stud. Comput. Intell. Advances in Semiconducting Materials = Adv Mat Res Advances in Semiconducting Materials = Adv. Mat. Res. Advances in Sensing With Security Applications = Nato Security Sci A Advances in Sensing With Security Applications = Nato. Security Sci. A. Advances in Sensing With Security Applications = Nato Secur Sci Ser A Advances in Sensing With Security Applications = Nato. Secur. Sci. Ser. A. Advances in Separation Processes = Inst Chem E Advances in Separation Processes = Inst. Chem. E. Advances in Serotonin Receptor Research = Ann Ny Acad Sci Advances in Serotonin Receptor Research = Ann. Ny. Acad. Sci. Advances in Service-learning Research = Adv Serv Learn Res Advances in Service-learning Research = Adv. Serv. Learn. Res. Advances in Services Marketing and Management = Adv Serv Mark Man Advances in Services Marketing and Management = Adv. Serv. Mark. Man. Advances in sex hormone research = Adv Sex Horm Res Advances in Sex Hormone Research = Adv. Sex Horm. Res. Advances in Shape Memory Materials: Magnetic Shape Memory Alloys = Mater Sci Forum Advances in Shape Memory Materials: Magnetic Shape Memory Alloys = Mater. Sci. Forum. Advances in shock research = Adv Shock Res Advances in Shock Research = Adv. Shock Res. Advances in Signal Processing for Nondestructive Evaluation of Materials = Nato Adv Sci Inst Se Advances in Signal Processing for Nondestructive Evaluation of Materials = Nato. Adv. Sci. Inst. Se. Advances in Silicon Science = Adv Silicon Sci Advances in Silicon Science = Adv. Silicon Sci. Advances in Sintering Science and Technology = Ceram Trans Advances in Sintering Science and Technology = Ceram. Trans. Advances in skin & wound care = Adv Skin Wound Care Advances in Slow and Fast Light Iii = Proc Spie Advances in Slow and Fast Light Iii = Proc. Spie. Advances in Slow and Fast Light Ii = P Soc Photo-opt Ins Advances in Slow and Fast Light Ii = P. Soc. Photo-opt. Ins. Advances in Slow and Fast Light Iv = Proc Spie Advances in Slow and Fast Light Iv = Proc. Spie. Advances in Slow and Fast Light = Proc Spie Advances in Slow and Fast Light = Proc. Spie. Advances in Slow and Fast Light = P Soc Photo-opt Ins Advances in Slow and Fast Light = P. Soc. Photo-opt. Ins. Advances in Small Business Finance = Finan Mon P Advances in Small Business Finance = Finan. Mon. P. Advances in Smalltalk = Lect Notes Comput Sc Advances in Smalltalk = Lect. Notes. Comput. Sc. Advances in Smart Technologies in Structural Engineering = Comp Meth Appl Sci Advances in Smart Technologies in Structural Engineering = Comp. Meth. Appl. Sci. Advances in Social Computing, Proceedings = Lect Notes Comput Sc Advances in Social Computing, Proceedings = Lect. Notes. Comput. Sc. Advances in Social Network Mining and Analysis = Lect Notes Comput Sc Advances in Social Network Mining and Analysis = Lect. Notes. Comput. Sc. Advances in socio-dental research = Adv Sociodent Res Advances in Socio-Dental Research = Adv. Sociodent. Res. Advances in Sociology Research = Adv Sociol Res Advances in Sociology Research = Adv. Sociol. Res. Advances in Sociology Research, Vol 6 = Adv Sociol Res Advances in Sociology Research, Vol 6 = Adv. Sociol. Res. Advances in Soft Computing = Adv Soft Comp Advances in Soft Computing = Adv. Soft Comp. Advances in Software Engineering = Comm Com Inf Sc Advances in Software Engineering = Comm. Com. Inf. Sc. Advances in Software Engineering = Lect Notes Comput Sc Advances in Software Engineering = Lect. Notes. Comput. Sc. Advances in Software Engineering, Proceedings = Comm Com Inf Sc Advances in Software Engineering, Proceedings = Comm. Com. Inf. Sc. Advances in Software Tools for Scientific Computing = Lect Notes Comp Sci Advances in Software Tools for Scientific Computing = Lect. Notes. Comp. Sci. Advances in Soil Science = Adv Soil Sci-ser Advances in Soil Science = Adv. Soil Sci-ser. Advances in Soil Science-boca Raton = Adv Soil S Advances in Soil Science-boca Raton = Adv. Soil S. Advances in Solar Research At Eclipses From Ground and From Space = Nato Adv Sci I C-mat Advances in Solar Research At Eclipses From Ground and From Space = Nato. Adv. Sci. I. C-mat. Advances in Solid Oxide Fuel Cells = Ceram Eng Sci Proc Advances in Solid Oxide Fuel Cells = Ceram. Eng. Sci. Proc. Advances in Solid Oxide Fuel Cells Ii = Ceram Eng Sci Proc Advances in Solid Oxide Fuel Cells Ii = Ceram. Eng. Sci. Proc. Advances in Solid Oxide Fuel Cells Iii = Ceram Eng Sci Proc Advances in Solid Oxide Fuel Cells Iii = Ceram. Eng. Sci. Proc. Advances in Solid Oxide Fuel Cells Iv = Ceram Eng Sci Proc Advances in Solid Oxide Fuel Cells Iv = Ceram. Eng. Sci. Proc. Advances in Solid Oxide Fuel Cells V = Ceram Eng Sci Proc Advances in Solid Oxide Fuel Cells V = Ceram. Eng. Sci. Proc. Advances in Solid State Nmr Studies of Materials and Polymers: A Special Volume Dedicated to Isao Ando = Ann R Nmr S Advances in Solid State Nmr Studies of Materials and Polymers: A Special Volume Dedicated to Isao Ando = Ann. R. Nmr S. Advances in Solid State Physics 41 = Adv Solid State Phys Advances in Solid State Physics 41 = Adv. Solid State Phys. Advances in Solid State Physics 42 = Adv Solid State Phys Advances in Solid State Physics 42 = Adv. Solid State Phys. Advances in Solid State Physics 43 = Adv Solid State Phys Advances in Solid State Physics 43 = Adv. Solid State Phys. Advances in Solid State Physics 44 = Adv Solid State Phys Advances in Solid State Physics 44 = Adv. Solid State Phys. Advances in Solid State Physics 45 = Adv Solid State Phys Advances in Solid State Physics 45 = Adv. Solid State Phys. Advances in Solid State Physics 46 = Adv Solid State Phys Advances in Solid State Physics 46 = Adv. Solid State Phys. Advances in Solid State Physics = Adv Solid State Phys Advances in Solid State Physics = Adv. Solid State Phys. Advances in Solid State Physics, Vol 35 = Festkor A S Advances in Solid State Physics, Vol 35 = Festkor. A. S. Advances in Solid State Physics, Vol 48 = Adv Solid State Phys Advances in Solid State Physics, Vol 48 = Adv. Solid State Phys. Advances in Solid State Technology ( Asst ) = Adv Sol Tec Advances in Solid State Technology ( Asst ) = Adv. Sol. Tec. Advances in space biology and medicine = Adv Space Biol Med Advances in Space Biology and Medicine = Adv. Space Biol. Med. Advances in Space Exploration : Cospar Symposium Series = Adv Space E Advances in Space Exploration : Cospar Symposium Series = Adv. Space E. Advances in Space Research = Adv Space Res Advances in Space Research = Adv. Space Res. Advances in Space Research = Adv Space Res-series Advances in Space Research = Adv. Space Res-series. Advances in Space Research-series = Adv Space Res Advances in Space Research-series = Adv. Space Res. Advances in Space Research-series = Adv Space Res-series Advances in Space Research-series = Adv. Space Res-series. Advances in space research : the official journal of the Committee on Space Research (COSPAR) = Adv Space Res Advances in Space Science and Technology = Adv Space Sci Tech Advances in Space Science and Technology = Adv. Space Sci. Tech. Advances in Spatial Analysis and Decision Making = Int Soc Photogramme Advances in Spatial Analysis and Decision Making = Int. Soc. Photogramme. Advances in Spatial and Temporal Databases, Proceedings = Lect Notes Comput Sc Advances in Spatial and Temporal Databases, Proceedings = Lect. Notes. Comput. Sc. Advances in Spatial Databases = Lect Notes Comput Sc Advances in Spatial Databases = Lect. Notes. Comput. Sc. Advances in Spatial Science = Adv. Spat. Sci. Advances in Spatial Science = Adv Spat Sci Advances in Spatial Science = Adv. Spat. Sci. Advances in Special Education = Adv Spec Educ Advances in Special Education = Adv. Spec. Educ. Advances in Specifying Plasma Temperatures and Ion Composition in The Ionosphere = Adv Space Res Advances in Specifying Plasma Temperatures and Ion Composition in The Ionosphere = Adv. Space. Res. Advances in Specifying Plasma Temperatures and Ion Composition in The Ionosphere = Adv Space Res-series Advances in Specifying Plasma Temperatures and Ion Composition in The Ionosphere = Adv. Space. Res-series. Advances in Spectroscopy = Adv. Spectrosc. Advances in Spectroscopy for Lasers and Sensing = Nato Sci Ser Ii-math Advances in Spectroscopy for Lasers and Sensing = Nato. Sci. Ser. Ii-math. Advances in Spectroscopy for Lasers and Sensing = Nato Sci Ser Ii Math Advances in Spectroscopy for Lasers and Sensing = Nato. Sci. Ser. Ii. Math. Advances in Statistical Control, Algebraic Systems Theory, and Dynamic Systems Characteristics = Sys Con Fdn Advances in Statistical Control, Algebraic Systems Theory, and Dynamic Systems Characteristics = Sys. Con. Fdn. Advances in Statistical Methods for The Health Sciences: Applications to Cancer and Aids Studies, Genome Sequence Analysis, and Survival Analysis = Stat Ind Technol Advances in Statistical Methods for The Health Sciences: Applications to Cancer and Aids Studies, Genome Sequence Analysis, and Survival Analysis = Stat. Ind. Technol. Advances in Stellar Interferometry Pts 1 and 2 = Proc Spie Advances in Stellar Interferometry Pts 1 and 2 = Proc. Spie. Advances in Stellar Interferometry Pts 1 and 2 = P Soc Photo-opt Ins Advances in Stellar Interferometry Pts 1 and 2 = P. Soc. Photo-opt. Ins. Advances in Stereotactic and Functional Neurosurgery 11 = Adv Ster F Advances in Stereotactic and Functional Neurosurgery 11 = Adv. Ster. F. Advances in Stereotactic and Functional Neurosurgery 12 = Adv Ster F Advances in Stereotactic and Functional Neurosurgery 12 = Adv. Ster. F. Advances in Stereotactic and Functional Neurosurgery = Adv Ster F Advances in Stereotactic and Functional Neurosurgery = Adv. Ster. F. Advances in Steroid Biochemistry and Pharmacology = Adv Steroid Biochem Advances in Steroid Biochemistry and Pharmacology = Adv. Steroid Biochem. Advances in steroid biochemistry and pharmacology = Adv Steroid Biochem Pharmacol Advances in Steroid Biochemistry and Pharmacology = Adv. Steroid Biochem. Pharmacol. Advances in Stochastic Models for Reliability, Quality and Safety = Stat Ind Technol Advances in Stochastic Models for Reliability, Quality and Safety = Stat. Ind. Technol. Advances in Stochastic Simulation Methods = Stat Ind Technol Advances in Stochastic Simulation Methods = Stat. Ind. Technol. Advances in Strabismus Research: Basic and Clinical Aspects = Wenn Gr Int Advances in Strabismus Research: Basic and Clinical Aspects = Wenn. Gr. Int. Advances in Strategic Alliances = Adv Strateg Alliance Advances in Strategic Alliances = Adv. Strateg. Alliance. Advances in Strategic Management = Adv Strateg Manage Advances in Strategic Management = Adv. Strateg. Manage. Advances in Strategic Management-a Research Annual = Adv Strateg Manage Advances in Strategic Management-a Research Annual = Adv. Strateg. Manage. Advances in Strategic Management : A Research Annual = Adv Strat M Advances in Strategic Management : A Research Annual = Adv. Strat. M. Advances in Strategic Management, Vol 11, Pt A = Adv Strat M Advances in Strategic Management, Vol 11, Pt A = Adv. Strat. M. Advances in Strategic Management, Vol 11, Pt B = Adv Strat M Advances in Strategic Management, Vol 11, Pt B = Adv. Strat. M. Advances in Strategic Management, Vol 15, 1998 = Adv Strat M Advances in Strategic Management, Vol 15, 1998 = Adv. Strat. M. Advances in Strategic Management, Vol 16 - 1999 = Adv Strateg Manage Advances in Strategic Management, Vol 16 - 1999 = Adv. Strateg. Manage. Advances in Strategic Management, Vol 16 - 1999 = Adv Strat M Advances in Strategic Management, Vol 16 - 1999 = Adv. Strat. M. Advances in Strategic Management, Vol 17, 2000 = Adv Strat M Advances in Strategic Management, Vol 17, 2000 = Adv. Strat. M. Advances in Strength and Conditioning Research = Sports Athl Prep Per Advances in Strength and Conditioning Research = Sports. Athl. Prep. Per. Advances in Strength of Materials = Key Eng Mat Advances in Strength of Materials = Key. Eng. Mat. Advances in Strength of Materials = Key Eng Mater Advances in Strength of Materials = Key. Eng. Mater. Advances in Structural Adhesive Bonding = Woodhead Publ Mater Advances in Structural Adhesive Bonding = Woodhead. Publ. Mater. Advances in Structural Analysis of Advanced Materials = Adv Mater Res-switz Advances in Structural Analysis of Advanced Materials = Adv. Mater. Res-switz. Advances in Structural Biology : A Research Annual = Adv Str Bio Advances in Structural Biology : A Research Annual = Adv. Str. Bio. Advances in Structural Biology, Vol 5 - 1998 = Adv Str Bio Advances in Structural Biology, Vol 5 - 1998 = Adv. Str. Bio. Advances in Structural Dynamics, Vols I & Ii = Stud Manag Financ Ac Advances in Structural Dynamics, Vols I & Ii = Stud. Manag. Financ. Ac. Advances in Structural Engineering = Adv Struct Eng Advances in Structural Engineering = Adv. Struct. Eng. Advances in Structures, Pts 1-5 = Adv Mater Res-switz Advances in Structures, Pts 1-5 = Adv. Mater. Res-switz. Advances in Superalloys, Pts 1 and 2 = Adv Mater Res-switz Advances in Superalloys, Pts 1 and 2 = Adv. Mater. Res-switz. Advances in Surface and Thin Film Diffraction = Mater Res Soc Symp P Advances in Surface and Thin Film Diffraction = Mater. Res. Soc. Symp. P. Advances in Surface Research = Sol St Phen Advances in Surface Research = Sol. St. Phen. Advances in surgery = Adv Surg Advances in Surgery = Adv. Surg. Advances in Surgery = Serono Sym Advances in Surgery = Serono. Sym. Advances In Surgery (St. Louis, Mo=Adv Surg;; Advances in Swarm Intelligence, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Swarm Intelligence, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Swarm Intelligence, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Swarm Intelligence, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Switching Networks = Dimacs Ser Discret M Advances in Switching Networks = Dimacs. Ser. Discret. M. Advances in Synchrotron Radiation = Adv. Synchrotron Radiat. Advances in Systems Biology = Adv Exp Med Biol Advances in Systems Biology = Adv. Exp. Med. Biol. Advances in Teaching Physical Chemistry = Acs Sym Ser Advances in Teaching Physical Chemistry = Acs. Sym. Ser. Advances in Technological Applications of Logical and Intelligent System = Fr Art Int Advances in Technological Applications of Logical and Intelligent System = Fr. Art. Int. Advances in Telecommunication Management, Vol 1 = Adv Telec M Advances in Telecommunication Management, Vol 1 = Adv. Telec. M. Advances in Telecommunications Management = Adv Telec M Advances in Telecommunications Management = Adv. Telec. M. Advances in Telecommunications Management, Vol 2 = Adv Telec M Advances in Telecommunications Management, Vol 2 = Adv. Telec. M. Advances in Telecommunications Management, Vol 3 = Adv Telec M Advances in Telecommunications Management, Vol 3 = Adv. Telec. M. Advances in Textile Biotechnology = Woodhead Publ Text Advances in Textile Biotechnology = Woodhead. Publ. Text. Advances in The Astronautical Sciences = Adv Astronaut Sci Advances in The Astronautical Sciences = Adv. Astronaut. Sci. Advances in The Biomechanics of The Hand and Wrist = Nato Adv Sci Inst Se Advances in The Biomechanics of The Hand and Wrist = Nato. Adv. Sci. Inst. Se. Advances in the biosciences = Adv Biosci Advances in the Biosciences = Adv. Biosci. Advances in The Biosciences = Adv Biosci Advances in The Biosciences = Adv. Biosci. Advances in The Characterisation of Ceramics = Brit Cer Pr Advances in The Characterisation of Ceramics = Brit. Cer. Pr. Advances in The Computer Simulations of Liquid Crystals = Nato Adv Sci I C-mat Advances in The Computer Simulations of Liquid Crystals = Nato. Adv. Sci. I. C-mat. Advances in The Economic Analysis of Participatory & Labor-managed Firms = Adv Econ Anal Partic Advances in The Economic Analysis of Participatory & Labor-managed Firms = Adv. Econ. Anal. Partic. Advances in The Economics of Aging = Nat Bur Ec Advances in The Economics of Aging = Nat. Bur. Ec. Advances in The Economics of Energy and Resources : A Research Annual = Adv Econ En Advances in The Economics of Energy and Resources : A Research Annual = Adv. Econ. En. Advances in The Economics of Energy and Resources, Vol 11 - 1999 = Adv Econ En Advances in The Economics of Energy and Resources, Vol 11 - 1999 = Adv. Econ. En. Advances in The Geological Storage of Carbon Dioxide: International Approaches to Reduce Anthropogenic Greenhouse Gas Emissions = Nato Sci S Ss Iv Ear Advances in The Geological Storage of Carbon Dioxide: International Approaches to Reduce Anthropogenic Greenhouse Gas Emissions = Nato. Sci. S. Ss. Iv. Ear. Advances in The Innervation of The Gastro-intestinal Tract = Int Congr Ser Advances in The Innervation of The Gastro-intestinal Tract = Int. Congr. Ser. Advances in The Interplay Between Quantum and Gravity Physics = Nato Sci Ser Ii-math Advances in The Interplay Between Quantum and Gravity Physics = Nato. Sci. Ser. Ii-math. Advances in The Interplay Between Quantum and Gravity Physics = Nato Sci Ser Ii Math Advances in The Interplay Between Quantum and Gravity Physics = Nato. Sci. Ser. Ii. Math. Advances in The Management of Acute Pain = Roy Soc Med Int Cong Advances in The Management of Acute Pain = Roy. Soc. Med. Int. Cong. Advances in The Management of Testosterone Deficiency = Front Horm Res Advances in The Management of Testosterone Deficiency = Front. Horm. Res. Advances in the Mathematical Sciences = Adv. Math. Sci. Advances in The Neuroscience of Addiction = Front Neurosci Advances in The Neuroscience of Addiction = Front. Neurosci. Advances in Theoretical and Mathematical Physics = Adv. Theor. Math. Phys. Advances in Theoretical and Mathematical Physics = Adv Theor Math Phys Advances in Theoretical and Mathematical Physics = Adv. Theor. Math. Phys. Advances in Theoretical Physics = Aip Conf Proc Advances in Theoretical Physics = Aip. Conf. Proc. Advances in The Physics of Particles and Nuclei = Adv Phys Part Nucl Advances in The Physics of Particles and Nuclei = Adv. Phys. Part. Nucl. Advances in The Physics of Particles and Nuclei, Vol 30 = Adv Phys Part Nucl Advances in The Physics of Particles and Nuclei, Vol 30 = Adv. Phys. Part. Nucl. Advances in The Prevention of Occupational Respiratory Diseases = Int Congr Ser Advances in The Prevention of Occupational Respiratory Diseases = Int. Congr. Ser. Advances in The Production and Use of Steel With Improved Internal Cleanliness = Am Soc Test Mater Advances in The Production and Use of Steel With Improved Internal Cleanliness = Am. Soc. Test. Mater. Advances in therapy = Adv Ther Advances in Therapy = Adv Ther Advances in Therapy = Adv. Ther. Advances in Thermal, Catalytic and Sorptive Waste-gas Management = Vdi Bericht Advances in Thermal, Catalytic and Sorptive Waste-gas Management = Vdi. Bericht. Advances in The Study of Behavior = Adv Stud Behav Advances in The Study of Behavior = Adv. Stud. Behav. Advances in The Study of Behavior: Behavioral Ecology of Tropical Animals = Adv Stud Behav Advances in The Study of Behavior: Behavioral Ecology of Tropical Animals = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 22 = Adv Stud Behav Advances in The Study of Behavior, Vol 22 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 23 = Adv Stud Behav Advances in The Study of Behavior, Vol 23 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 24 = Adv Stud Behav Advances in The Study of Behavior, Vol 24 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 26 = Adv Stud Behav Advances in The Study of Behavior, Vol 26 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol. 28 = Adv Stud Behav Advances in The Study of Behavior, Vol. 28 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol. 29 = Adv Stud Behav Advances in The Study of Behavior, Vol. 29 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 30 = Adv Stud Behav Advances in The Study of Behavior, Vol 30 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 31 = Adv Stud Behav Advances in The Study of Behavior, Vol 31 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 32 = Adv Stud Behav Advances in The Study of Behavior, Vol 32 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 33 = Adv Stud Behav Advances in The Study of Behavior, Vol 33 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 34 = Adv Stud Behav Advances in The Study of Behavior, Vol 34 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 35 = Adv Stud Behav Advances in The Study of Behavior, Vol 35 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 36 = Adv Stud Behav Advances in The Study of Behavior, Vol 36 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 37 = Adv Stud Behav Advances in The Study of Behavior, Vol 37 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 38 = Adv Stud Behav Advances in The Study of Behavior, Vol 38 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 39 = Adv Stud Behav Advances in The Study of Behavior, Vol 39 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 40 = Adv Stud Behav Advances in The Study of Behavior, Vol 40 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 41 = Adv Stud Behav Advances in The Study of Behavior, Vol 41 = Adv. Stud. Behav. Advances in The Study of Behavior, Vol 43 = Adv Stud Behav Advances in The Study of Behavior, Vol 43 = Adv. Stud. Behav. Advances in The Study of Entrepreneurship Innovation and Economic Growth = Adv St Entr Advances in The Study of Entrepreneurship Innovation and Economic Growth = Adv. St. Entr. Advances in The Study of Entrepreneurship, Innovation, and Economic Growth = Adv St Entr Advances in The Study of Entrepreneurship, Innovation, and Economic Growth = Adv. St. Entr. Advances in The Study of Entrepreneurship Innovation and Economic Growth = Adv Stud Entrep Inno Advances in The Study of Entrepreneurship Innovation and Economic Growth = Adv. Stud. Entrep. Inno. Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 10 1998 = Adv St Entr Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 10 1998 = Adv. St. Entr. Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 4 = Adv St Entr Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 4 = Adv. St. Entr. Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 8, 1996 = Adv St Entr Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 8, 1996 = Adv. St. Entr. Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 9 - 1997 = Adv St Entr Advances in The Study of Entrepreneurship, Innovation, and Economic Growth, Vol 9 - 1997 = Adv. St. Entr. Advances in The Theory of Atomic and Molecular Systems: Conceptual and Computational Advances in Quantum Chemistry = Prog T Chem Advances in The Theory of Atomic and Molecular Systems: Conceptual and Computational Advances in Quantum Chemistry = Prog. T. Chem. Advances in The Theory of Atomic and Molecular Systems: Conceptual and Computational Advances in Quantum Chemistry = Prog Theor Chem Phys Advances in The Theory of Atomic and Molecular Systems: Conceptual and Computational Advances in Quantum Chemistry = Prog. Theor. Chem. Phys. Advances in The Theory of Atomic and Molecular Systems: Dynamics, Spectroscopy, Clusters, and Nanostructures = Prog T Chem Advances in The Theory of Atomic and Molecular Systems: Dynamics, Spectroscopy, Clusters, and Nanostructures = Prog. T. Chem. Advances in The Theory of Control, Signals and Systems With Physical Modeling = Lect Notes Contr Inf Advances in The Theory of Control, Signals and Systems With Physical Modeling = Lect. Notes. Contr. Inf. Advances in The Theory of Frechet Spaces = Nato Adv Sci I C-mat Advances in The Theory of Frechet Spaces = Nato. Adv. Sci. I. C-mat. Advances in The Theory of Special Functions and Orthogonal Polynomials = Adv Theor Sp Funct Advances in The Theory of Special Functions and Orthogonal Polynomials = Adv. Theor. Sp. Funct. Advances in The Theory of The Lexicon = Interface Explor Advances in The Theory of The Lexicon = Interface. Explor. Advances in The Treatment of Radiation Injuries = Adv Biosci Advances in The Treatment of Radiation Injuries = Adv. Biosci. Advances in The Understanding and Treatment of Asthma = Ann Ny Acad Sci Advances in The Understanding and Treatment of Asthma = Ann. Ny. Acad. Sci. Advances in Thin - Film Coatings for Optical Applications Iii = P Soc Photo-opt Ins Advances in Thin - Film Coatings for Optical Applications Iii = P. Soc. Photo-opt. Ins. Advances in Thin Film Coatings for Optical Applications = P Soc Photo-opt Ins Advances in Thin Film Coatings for Optical Applications = P. Soc. Photo-opt. Ins. Advances in Thin-film Coatings for Optical Applications V = P Soc Photo-opt Ins Advances in Thin-film Coatings for Optical Applications V = P. Soc. Photo-opt. Ins. Advances in Tnf Family Research = Adv Exp Med Biol Advances in Tnf Family Research = Adv. Exp. Med. Biol. Advances in Topical Anaesthesia = Res Clin Forums Advances in Topical Anaesthesia = Res. Clin. Forums. Advances in Topological Quantum Field Theory = Nato Sci Ser Ii Math Advances in Topological Quantum Field Theory = Nato. Sci. Ser. Ii. Math. Advances in Touch = J&j Cons Pr Advances in Touch = J&j. Cons. Pr. Advances in tracer methodology = Adv Tracer Methodol Advances in Tracer Methodology = Adv. Tracer Methodol. Advances in Trace Substances Research = Adv Tr Sub Advances in Trace Substances Research = Adv. Tr. Sub. Advances in Transfusion Safety = Dev Biologicals Advances in Transfusion Safety = Dev. Biologicals. Advances in Transfusion Safety, Vol Iv = Dev Biologicals Advances in Transfusion Safety, Vol Iv = Dev. Biologicals. Advances in Transport = Adv Transport Advances in Transport = Adv. Transport Advances in Transport Phenomena 2009 = Adv Transp Phenom Advances in Transport Phenomena 2009 = Adv. Transp. Phenom. Advances in Transport Phenomena 2010 = Adv Transp Phenom Advances in Transport Phenomena 2010 = Adv. Transp. Phenom. Advances in Transport Phenomena = Adv Transp Phenom Advances in Transport Phenomena = Adv. Transp. Phenom. Advances in Tropical Acacia Research = Aciar Proc Advances in Tropical Acacia Research = Aciar. Proc. Advances in Tuberculosis Research = Adv. Tuberc. Res. Advances in tuberculosis research. Fortschritte der Tuberkuloseforschung. Progres de l'exploration de la tuberculose = Adv Tuberc Res Advances in Turbulences Vi = Fluid Mec A Advances in Turbulences Vi = Fluid. Mec. A. Advances in Turbulences Vi = Fluid Mech Appl Advances in Turbulences Vi = Fluid. Mech. Appl. Advances in Turbulence Vii = Fluid Mec A Advances in Turbulence Vii = Fluid. Mec. A. Advances in Turbulence Vii = Fluid Mech Appl Advances in Turbulence Vii = Fluid. Mech. Appl. Advances in Turbulence Xii - Proceedings of The 12th Euromech European Turbulence Conference = Springer Proc Phys Advances in Turbulence Xii - Proceedings of The 12th Euromech European Turbulence Conference = Springer. Proc. Phys. Advances in Turbulence Xi = Springer Proc Phys Advances in Turbulence Xi = Springer. Proc. Phys. Advances in Ubiquitous User Modelling = Lect Notes Comput Sc Advances in Ubiquitous User Modelling = Lect. Notes. Comput. Sc. Advances in Underwater Technology, Ocean Science and Offshore Engineering = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 18 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 18 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 19 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 19 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 21 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 21 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 22 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 22 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 23 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 23 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 25 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 25 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 26 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 26 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 27 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 27 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 29 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 29 = Adv. Underwat. Technol. Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 31 = Adv Underwat Technol Advances in Underwater Technology, Ocean Science and Offshore Engineering, Vol 31 = Adv. Underwat. Technol. Advances in Urban Stormwater and Agricultural Runoff Source Controls = Nato Sci S Ss Iv Ear Advances in Urban Stormwater and Agricultural Runoff Source Controls = Nato. Sci. S. Ss. Iv. Ear. Advances in Urethane Science and Technology = Adv Urethane Sci Tec Advances in Urethane Science and Technology = Adv. Urethane Sci. Tec. Advances in Variable Structure and Sliding Mode Control = Lect Notes Contr Inf Advances in Variable Structure and Sliding Mode Control = Lect. Notes. Contr. Inf. Advances in Vascular Pathology 1989, Vols 1 & 2 = Int Congr Ser Advances in Vascular Pathology 1989, Vols 1 & 2 = Int. Congr. Ser. Advances in Vascular Pathology 1990, Vol 3 = Int Congr Ser Advances in Vascular Pathology 1990, Vol 3 = Int. Congr. Ser. Advances in Vascular Pathology 1997 = Int Congr Ser Advances in Vascular Pathology 1997 = Int. Congr. Ser. Advances in Vasopressin and Oxytocin: From Genes to Behaviour to Disease = Prog Brain Res Advances in Vasopressin and Oxytocin: From Genes to Behaviour to Disease = Prog. Brain. Res. Advances in Vegetable Breeding = Acta Hortic Advances in Vegetable Breeding = Acta. Hortic. Advances in Veterinary Dermatology = Adv Vet Dermatol Advances in Veterinary Dermatology = Adv. Vet. Dermatol. Advances in Veterinary Dermatology, Vol 4 = Adv Vet Dermatol Advances in Veterinary Dermatology, Vol 4 = Adv. Vet. Dermatol. Advances in Veterinary Medicine (academic Press) = Adv Veter Med Ap Advances in Veterinary Medicine (academic Press) = Adv. Veter. Med. Ap. Advances in Veterinary Medicine (academic Press) = Adv Vet Med-acad Pr Advances in Veterinary Medicine (academic Press) = Adv. Vet. Med-acad. Pr. Advances in veterinary medicine = Adv Vet Med Advances in Veterinary Medicine = Adv. Vet. Med. Advances In Veterinary Medicine=Adv Vet Med;; Advances in Veterinary Medicine, Vol 41 = Adv Veter Med Ap Advances in Veterinary Medicine, Vol 41 = Adv. Veter. Med. Ap. Advances in Veterinary Medicine, Vol 41 = Adv Vet Med-acad Pr Advances in Veterinary Medicine, Vol 41 = Adv. Vet. Med-acad. Pr. Advances in veterinary science = Adv Vet Sci Advances in Veterinary Science = Adv. Vet. Sci. Advances in veterinary science and comparative medicine = Adv Vet Sci Comp Med Advances in Veterinary Science and Comparative Medicine = Adv Vet Sci Comp Med Advances in Veterinary Science and Comparative Medicine = Adv. Vet. Sci. Comp. Med. Advances in Vibration Engineering = Adv Vib Eng Advances in Vibration Engineering = Adv. Vib. Eng. Advances in virus research = Adv Virus Res Advances in Virus Research = Adv Virus Res Advances in Virus Research = Adv. Virus Res. Advances In Virus Research=Adv Virus Res;; Advances in Virus Research: Research Advances in Rabies, Vol 79 = Adv Virus Res Advances in Virus Research: Research Advances in Rabies, Vol 79 = Adv. Virus Res. Advances in Virus Research, Vol 42 = Adv Virus Res Advances in Virus Research, Vol 42 = Adv. Virus Res. Advances in Virus Research, Vol 43 = Adv Virus Res Advances in Virus Research, Vol 43 = Adv. Virus Res. Advances in Virus Research, Vol 44 = Adv Virus Res Advances in Virus Research, Vol 44 = Adv. Virus Res. Advances in Virus Research, Vol 45 = Adv Virus Res Advances in Virus Research, Vol 45 = Adv. Virus Res. Advances in Virus Research, Vol 46 = Adv Virus Res Advances in Virus Research, Vol 46 = Adv. Virus Res. Advances in Virus Research, Vol 47 = Adv Virus Res Advances in Virus Research, Vol 47 = Adv. Virus Res. Advances in Virus Research, Vol 48 = Adv Virus Res Advances in Virus Research, Vol 48 = Adv. Virus Res. Advances in Virus Research, Vol 50 = Adv Virus Res Advances in Virus Research, Vol 50 = Adv. Virus Res. Advances in Virus Research, Vol 51 = Adv Virus Res Advances in Virus Research, Vol 51 = Adv. Virus Res. Advances in Virus Research, Vol 52 = Adv Virus Res Advances in Virus Research, Vol 52 = Adv. Virus Res. Advances in Virus Research, Vol 53 = Adv Virus Res Advances in Virus Research, Vol 53 = Adv. Virus Res. Advances in Virus Research, Vol 54 = Adv Virus Res Advances in Virus Research, Vol 54 = Adv. Virus Res. Advances in Virus Research, Vol 55 = Adv Virus Res Advances in Virus Research, Vol 55 = Adv. Virus Res. Advances in Virus Research, Vol 56 = Adv Virus Res Advances in Virus Research, Vol 56 = Adv. Virus Res. Advances in Virus Research, Vol 57 = Adv Virus Res Advances in Virus Research, Vol 57 = Adv. Virus Res. Advances in Virus Research, Vol 58 = Adv Virus Res Advances in Virus Research, Vol 58 = Adv. Virus Res. Advances in Virus Research, Vol 62 = Adv Virus Res Advances in Virus Research, Vol 62 = Adv. Virus Res. Advances in Virus Research, Vol. 63 = Adv Virus Res Advances in Virus Research, Vol. 63 = Adv. Virus Res. Advances in Virus Research, Vol 65 = Adv Virus Res Advances in Virus Research, Vol 65 = Adv. Virus Res. Advances in Virus Research, Vol 66 = Adv Virus Res Advances in Virus Research, Vol 66 = Adv. Virus Res. Advances in Virus Research, Vol 69 = Adv Virus Res Advances in Virus Research, Vol 69 = Adv. Virus Res. Advances in Virus Research, Vol 70 = Adv Virus Res Advances in Virus Research, Vol 70 = Adv. Virus Res. Advances in Virus Research, Vol 71 = Adv Virus Res Advances in Virus Research, Vol 71 = Adv. Virus Res. Advances in Virus Research, Vol 72 = Adv Virus Res Advances in Virus Research, Vol 72 = Adv. Virus Res. Advances in Virus Research, Vol 73 = Adv Virus Res Advances in Virus Research, Vol 73 = Adv. Virus Res. Advances in Virus Research, Vol 74 = Adv Virus Res Advances in Virus Research, Vol 74 = Adv. Virus Res. Advances in Virus Research, Vol 75 = Adv Virus Res Advances in Virus Research, Vol 75 = Adv. Virus Res. Advances in Virus Research, Vol 77 = Adv Virus Res Advances in Virus Research, Vol 77 = Adv. Virus Res. Advances in Virus Research, Vol 78 = Adv Virus Res Advances in Virus Research, Vol 78 = Adv. Virus Res. Advances in Virus Research, Vol 80 = Adv Virus Res Advances in Virus Research, Vol 80 = Adv. Virus Res. Advances in Visual Computing, Proceedings = Lect Notes Comput Sc Advances in Visual Computing, Proceedings = Lect. Notes. Comput. Sc. Advances in Visual Computing, Proceedings, Pt 2 = Lect Notes Comput Sc Advances in Visual Computing, Proceedings, Pt 2 = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt 1 = Lect Notes Comput Sc Advances in Visual Computing, Pt 1 = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt 1, Proceedings = Lect Notes Comput Sc Advances in Visual Computing, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt 2 = Lect Notes Comput Sc Advances in Visual Computing, Pt 2 = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt 2, Proceedings = Lect Notes Comput Sc Advances in Visual Computing, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt Iii = Lect Notes Comput Sc Advances in Visual Computing, Pt Iii = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt Ii = Lect Notes Comput Sc Advances in Visual Computing, Pt Ii = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt Ii, Proceedings = Lect Notes Comput Sc Advances in Visual Computing, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt I = Lect Notes Comput Sc Advances in Visual Computing, Pt I = Lect. Notes. Comput. Sc. Advances in Visual Computing, Pt I, Proceedings = Lect Notes Comput Sc Advances in Visual Computing, Pt I, Proceedings = Lect. Notes. Comput. Sc. Advances in Visual Information Systems = Lect Notes Comput Sc Advances in Visual Information Systems = Lect. Notes. Comput. Sc. Advances in Visual Information Systems, Proceedings = Lect Notes Comput Sc Advances in Visual Information Systems, Proceedings = Lect. Notes. Comput. Sc. Advances in Water Pollution Control = Adv Wat Pol Advances in Water Pollution Control = Adv. Wat. Pol. Advances in Water Resources = Adv. Water Res. Advances in Water Resources = Adv Water Resour Advances in Water Resources = Adv. Water Resour. Advances in Web-age Information Management, Proceedings = Lect Notes Comput Sc Advances in Web-age Information Management, Proceedings = Lect. Notes. Comput. Sc. Advances in Web-age Information Management: Proceedings = Lect Notes Comput Sc Advances in Web-age Information Management: Proceedings = Lect. Notes. Comput. Sc. Advances in Web and Network Technologies, and Information Management = Lect Notes Comput Sc Advances in Web and Network Technologies, and Information Management = Lect. Notes. Comput. Sc. Advances in Web and Network Technologies, and Information Management, Proceedings = Lect Notes Comput Sc Advances in Web and Network Technologies, and Information Management, Proceedings = Lect. Notes. Comput. Sc. Advances in Web-based Learning - Icwl 2003, Proceedings = Lect Notes Comput Sc Advances in Web-based Learning - Icwl 2003, Proceedings = Lect. Notes. Comput. Sc. Advances in Web-based Learning - Icwl 2004 = Lect Notes Comput Sc Advances in Web-based Learning - Icwl 2004 = Lect. Notes. Comput. Sc. Advances in Web-based Learning - Icwl 2005 = Lect Notes Comput Sc Advances in Web-based Learning - Icwl 2005 = Lect. Notes. Comput. Sc. Advances in Web Based Learning - Icwl 2006 = Lect Notes Comput Sc Advances in Web Based Learning - Icwl 2006 = Lect. Notes. Comput. Sc. Advances in Web Based Learning - Icwl 2007 = Lect Notes Comput Sc Advances in Web Based Learning - Icwl 2007 = Lect. Notes. Comput. Sc. Advances in Web Based Learning - Icwl 2008, Proceedings = Lect Notes Comput Sc Advances in Web Based Learning - Icwl 2008, Proceedings = Lect. Notes. Comput. Sc. Advances in Web Based Learning - Icwl 2009 = Lect Notes Comput Sc Advances in Web Based Learning - Icwl 2009 = Lect. Notes. Comput. Sc. Advances in Web-based Learning-icwl 2010 = Lect Notes Comput Sc Advances in Web-based Learning-icwl 2010 = Lect. Notes. Comput. Sc. Advances in Web Intelligence and Data Mining = Stud Comp Intell Advances in Web Intelligence and Data Mining = Stud. Comp. Intell. Advances in Web Intelligence and Data Mining = Stud Comput Intell Advances in Web Intelligence and Data Mining = Stud. Comput. Intell. Advances in Web Intelligence = Lect Notes Artif Int Advances in Web Intelligence = Lect. Notes. Artif. Int. Advances in Web Intelligence, Proceedings = Lect Notes Artif Int Advances in Web Intelligence, Proceedings = Lect. Notes. Artif. Int. Advances in Web Intelligence, Proceedings = Lect Notes Comput Sc Advances in Web Intelligence, Proceedings = Lect. Notes. Comput. Sc. Advances in Web Mining and Web Usage Analysis = Lect Notes Artif Int Advances in Web Mining and Web Usage Analysis = Lect. Notes. Artif. Int. Advances in Web Mining and Web Usage Analysis = Lect Notes Comput Sc Advances in Web Mining and Web Usage Analysis = Lect. Notes. Comput. Sc. Advances in Web Semantics I: Ontologies, Web Services and Applied Semantic Web = Lect Notes Comput Sc Advances in Web Semantics I: Ontologies, Web Services and Applied Semantic Web = Lect. Notes. Comput. Sc. Advances in Wind Energy Conversion Technology = Environ Sci Eng Advances in Wind Energy Conversion Technology = Environ. Sci. Eng. Advances in Wireless Ad Hoc and Sensor Networks = Signals Commun Techn Advances in Wireless Ad Hoc and Sensor Networks = Signals. Commun. Techn. Advances in Wool Technology = Woodhead Publ Text Advances in Wool Technology = Woodhead. Publ. Text. Advances in Wound Care = Adv Wound Care Advances in Wound Care = Adv. Wound Care Advances in wound care : the journal for prevention and healing = Adv Wound Care Advances in Wound Care, Vol 1 = Adv Wound Care Advances in Wound Care, Vol 1 = Adv. Wound Care. Advances in Xml Information Retrieval and Evaluation = Lect Notes Comput Sc Advances in Xml Information Retrieval and Evaluation = Lect. Notes. Comput. Sc. Advances in Xml Information Retrieval = Lect Notes Comput Sc Advances in Xml Information Retrieval = Lect. Notes. Comput. Sc. Advances in X-ray Analysis = Adv X Ray Anal Advances in X-ray Analysis = Adv. X. Ray. Anal. Advances in X-Ray Analysis = Adv. X-Ray Anal. Advances in X-ray Analysis, Vol 34 = Adv X Ray Anal Advances in X-ray Analysis, Vol 34 = Adv. X. Ray. Anal. Advances in X-ray Analysis, Vol 36 = Adv X Ray Anal Advances in X-ray Analysis, Vol 36 = Adv. X. Ray. Anal. Advances in X-ray Analysis, Vol 37 = Adv X Ray Anal Advances in X-ray Analysis, Vol 37 = Adv. X. Ray. Anal. Advances in X-ray/euv Optics and Components Iii = Proc Spie Advances in X-ray/euv Optics and Components Iii = Proc. Spie. Advances in X-ray/euv Optics and Components Iii = P Soc Photo-opt Ins Advances in X-ray/euv Optics and Components Iii = P. Soc. Photo-opt. Ins. Advances in X-ray/euv Optics and Components Ii = Proc Spie Advances in X-ray/euv Optics and Components Ii = Proc. Spie. Advances in X-ray/euv Optics and Components Ii = P Soc Photo-opt Ins Advances in X-ray/euv Optics and Components Ii = P. Soc. Photo-opt. Ins. Advances in X-ray/euv Optics and Components Iv = Proc Spie Advances in X-ray/euv Optics and Components Iv = Proc. Spie. Advances in X-ray/euv Optics and Components V = P Soc Photo-opt Ins Advances in X-ray/euv Optics and Components V = P. Soc. Photo-opt. Ins. Advances in X-ray/euv Optics, Components, and Applications = P Soc Photo-opt Ins Advances in X-ray/euv Optics, Components, and Applications = P. Soc. Photo-opt. Ins. Advances in X-ray Free-electron Lasers: Radiation Schemes, X-ray Optics, and Instrumentation = Proc Spie Advances in X-ray Free-electron Lasers: Radiation Schemes, X-ray Optics, and Instrumentation = Proc. Spie. Advances in X-ray Optics = P Soc Photo-opt Ins Advances in X-ray Optics = P. Soc. Photo-opt. Ins. Advances in Yarn Spinning Technology = Woodhead Publ Text Advances in Yarn Spinning Technology = Woodhead. Publ. Text. Advances of Computational Intelligence in Industrial Systems = Stud Comput Intell Advances of Computational Intelligence in Industrial Systems = Stud. Comput. Intell. Advances of Diabetes Mellitus in East Asia = Int Congr Ser Advances of Diabetes Mellitus in East Asia = Int. Congr. Ser. Advances of Soft Computing in Engineering = Cism Cour L Advances of Soft Computing in Engineering = Cism. Cour. L. Advances of Soft Computing in Engineering = Cism Courses Lect Advances of Soft Computing in Engineering = Cism. Courses. Lect. Advances On Artificial Intelligence, Knowledge Engineering and Data Bases, Proceedings = Artif Int Ser Wseas Advances On Artificial Intelligence, Knowledge Engineering and Data Bases, Proceedings = Artif. Int. Ser. Wseas. Advances On Clinical Chemistry, Vol 52 = Adv Clin Chem Advances On Clinical Chemistry, Vol 52 = Adv. Clin. Chem. Advances On Extrusion Technology and Simulation of Light Alloys = Key Eng Mater Advances On Extrusion Technology and Simulation of Light Alloys = Key. Eng. Mater. Advances On Fractional Inequalities = Springerbrief Math Advances On Fractional Inequalities = Springerbrief. Math. Advances On Hot Extrusion and Simulation of Light Alloys = Key Eng Mat Advances On Hot Extrusion and Simulation of Light Alloys = Key. Eng. Mat. Advances On Income Inequality and Concentration Measures = Routl Front Polit Ec Advances On Income Inequality and Concentration Measures = Routl. Front. Polit. Ec. Advances On Practical Applications of Agents and Multiagent Systems = Adv Intel Soft Compu Advances On Practical Applications of Agents and Multiagent Systems = Adv. Intel. Soft. Compu. Advances On The Pathophysiology of Pregnancy, 40 = Adv Pathophys Preg Advances On The Pathophysiology of Pregnancy, 40 = Adv. Pathophys. Preg. Advances On The Pathophysiology of Pregnancy = Adv Pathophys Preg Advances On The Pathophysiology of Pregnancy = Adv. Pathophys. Preg. Advancing Affordable Materials Technology = Int Sampe Tech Conf Advancing Affordable Materials Technology = Int. Sampe. Tech. Conf. Advancing Business Ethics Education = Ethics Pract Advancing Business Ethics Education = Ethics Pract. Advancing Clinical Care = Adv. Clin. Care Advancing clinical care : official journal of NOAADN = Adv Clin Care Advancing Development - Core Themes in Global Economics = Stud Dev Econ Policy Advancing Development - Core Themes in Global Economics = Stud. Dev. Econ. Policy. Advancing Development - Core Themes in Global Economics = Stud Devel Econ Advancing Development - Core Themes in Global Economics = Stud. Devel. Econ. Advancing From The Ventral Striatum to The Extended Amygdala = Ann Ny Acad Sci Advancing From The Ventral Striatum to The Extended Amygdala = Ann. Ny. Acad. Sci. Advancing Gender Research From The Nineteenth to The Twenty-first Centuries = Adv Gend Res Advancing Gender Research From The Nineteenth to The Twenty-first Centuries = Adv. Gend. Res. Advancing Governance in The South: What Roles for International Financial Institutions in Developing States = Int Polit Econ Ser Advancing Governance in The South: What Roles for International Financial Institutions in Developing States = Int. Polit. Econ. Ser. Advancing Knowledge in Service-learning: Research to Transform The Field = Adv Serv Learn Res Advancing Knowledge in Service-learning: Research to Transform The Field = Adv. Serv. Learn. Res. Advancing Phenomenology: Essays in Honor of Lester Embree = Contrib Phenomenol Advancing Phenomenology: Essays in Honor of Lester Embree = Contrib. Phenomenol. Advancing Public Goods = Cournot Cent Econ St Advancing Public Goods = Cournot. Cent. Econ. St. Advancing Quality of Life in A Turbulent World = Soc Indic Res Ser Advancing Quality of Life in A Turbulent World = Soc. Indic. Res. Ser. Advancing Responsible Adolescent Development = Adv Respons Adol Dev Advancing Responsible Adolescent Development = Adv. Respons. Adol. Dev. Advancing Social Studies Education Through Self-study Methodology: The Power, Promise, and Use of Self-study in Social Studies Education = Self Study Teach Tea Advancing Social Studies Education Through Self-study Methodology: The Power, Promise, and Use of Self-study in Social Studies Education = Self. Study. Teach. Tea. Advancing Sustainability Through Green Chemistry and Engineering = Acs Sym Ser Advancing Sustainability Through Green Chemistry and Engineering = Acs. Sym. Ser. Advancing the Consumer Interest=Advanc. Cons. Interest Advancing The Frontiers of Simulation = Int Ser Oper Res Man Advancing The Frontiers of Simulation = Int. Ser. Oper. Res. Man. Advancing Theory in Labour Law and Industral Reations in A Global Context = Knaw Verhan Advancing Theory in Labour Law and Industral Reations in A Global Context = Knaw. Verhan. Advancs in Cryptology - Crypto 2004, Proceedings = Lect Notes Comput Sc Advancs in Cryptology - Crypto 2004, Proceedings = Lect. Notes. Comput. Sc. Adventist heritage = Advent Herit Adventures in Chemical Physics = Adv Chem Phys Adventures in Chemical Physics = Adv. Chem. Phys. Adventures in Mathematical Physics = Contemp Math Adventures in Mathematical Physics = Contemp. Math. Adventures Through Deep Time: The Central Mississippi River Valley and Its Earthquakes = Geol Soc Am Spec Pap Adventures Through Deep Time: The Central Mississippi River Valley and Its Earthquakes = Geol. Soc. Am. Spec. Pap. Adverbs and Adverbial Adjuncts At The Interfaces = Interface Explor Adverbs and Adverbial Adjuncts At The Interfaces = Interface. Explor. Adverse drug reaction bulletin = Adverse Drug React Bull Adverse drug reactions and acute poisoning reviews = Adverse Drug React Acute Poisoning Rev Adverse Drug Reactions and Acute Poisoning Reviews = Adverse Drug React. Acute Poisoning Rev. Adverse Drug Reactions and Toxicological Reviews = Adverse Drug React T Adverse Drug Reactions and Toxicological Reviews = Adverse Drug React. T. Adverse drug reactions and toxicological reviews = Adverse Drug React Toxicol Rev Adverse Drug Reactions and Toxicological Reviews=Adverse Drug React Toxicol Rev;; Adverse Drug Reactions and Toxicological Reviews = Adverse Drug React. Toxicol. Rev. Adverse Impact: Implications for Organizational Staffing and High Stakes Selection = Siop Organ Front Ser Adverse Impact: Implications for Organizational Staffing and High Stakes Selection = Siop. Organ. Front. Ser. Advertising age = Advert Age Advertising Age = Advert. Age Advertising and Consumer Psychology = Advert Cons Advertising and Consumer Psychology = Advert. Cons. Advertising and The World Wide Web = Advert Cons Advertising and The World Wide Web = Advert. Cons. Advertising = Rout Intro Media Com Advertising = Rout. Intro. Media. Com. Advertising, Subjectivity and The Nineteenth-century Novel: Dickens, Balzac and The Language of The Walls = Palgrave Stud Ninet- Advertising, Subjectivity and The Nineteenth-century Novel: Dickens, Balzac and The Language of The Walls = Palgrave. Stud. Ninet-. Advocacy Leadership: Toward A Post-reform Agenda in Education = Crit Soc Thought Advocacy Leadership: Toward A Post-reform Agenda in Education = Crit. Soc. Thought. Advocacy now = Advocacy Now Advocate = Advocate Advocate (Boston, Mass.) = Advocate Advocating Dignity: Human Rights Mobilizations in Global Politics = Pa Stud Hum Rights Advocating Dignity: Human Rights Mobilizations in Global Politics = Pa. Stud. Hum. Rights Aebd '09: Proceedings of The World Multiconference On Applied Economics, Business and Development = Rec Adv Comput Eng Aebd '09: Proceedings of The World Multiconference On Applied Economics, Business and Development = Rec. Adv. Comput. Eng. Aee '07: Proceedings of The 6th Wseas International Conference On Applications of Electrical Engineering = Ele Com Eng Aee '07: Proceedings of The 6th Wseas International Conference On Applications of Electrical Engineering = Ele. Com. Eng. Aee' 08: Proceedings of The 7th Wseas International Conference On Application of Electrical Engineering = Rec Adv Electr Eng Aee' 08: Proceedings of The 7th Wseas International Conference On Application of Electrical Engineering = Rec. Adv. Electr. Eng. Aee '10: Proceedings of The 9th Wseas International Conference On Applications of Electrical Engineering = Rec Adv Electr Eng Aee '10: Proceedings of The 9th Wseas International Conference On Applications of Electrical Engineering = Rec. Adv. Electr. Eng. Aegaeum. Annales d'archéologie égéenne de l'Université de Liège = Aegaeum Aegean Archaeology = AeA Aegyptus = Aegyptus Aei Automazione Energia Informazione = Aei Autom Energ Inf Aei Automazione Energia Informazione = Aei Autom. Energ. Inf. Aei Studies = Aei Studies Aei Studies in Postal Regulation = Aei St Post Regulat Aei Studies in Postal Regulation = Aei St. Post. Regulat. Aeolian Research = Aeolian Res. Aequationes Mathematicae = Aequationes Math. Aequationes Mathematicae = Aequationes Math Aequationes Mathematicae = Aequationes Math. Aere perennius = Aere Perennius Aerial Archaeology: Developing Future Practice = Nato Sci Ser I Life Aerial Archaeology: Developing Future Practice = Nato. Sci. Ser. I. Life. Aerial Surveillance Sensing Including Obscured and Underground Object Detection = P Soc Photo-opt Ins Aerial Surveillance Sensing Including Obscured and Underground Object Detection = P. Soc. Photo-opt. Ins. Aerobic Exercise and Athletic Performance: Types, Duration and Health Benefits = Sports Athl Prep Per Aerobic Exercise and Athletic Performance: Types, Duration and Health Benefits = Sports. Athl. Prep. Per. Aerobic Exercise in Special Populations = Sports Athl Prep Per Aerobic Exercise in Special Populations = Sports. Athl. Prep. Per. Aerobiologia = Aerobiologia Aerodynamic Drag Reduction Technologies = Note Num Fl Aerodynamic Drag Reduction Technologies = Note. Num. Fl. Aeromedica acta = Aeromed Acta Aeromedical Review = Aeromed. Rev. Aeromedical reviews = Aeromed Rev Aeronautical Journal = Aeronaut J Aeronautical Journal = Aeronaut. J. Aeronautical Quarterly = Aeronaut Quart Aeronautical Quarterly = Aeronaut. Quart. Aeronautique Astronautique = Aeronaut Astronaut Aeronautique Astronautique = Aeronaut. Astronaut. Aeronomy of The Earth's Atmosphere and Ionosphere = Iaga Spec Sopron Aeronomy of The Earth's Atmosphere and Ionosphere = Iaga. Spec. Sopron. Aeropolitics = Transp Issues Polici Aeropolitics = Transp. Issues. Polici. Aeropropulsion 87 = Nasa Conf P Aeropropulsion 87 = Nasa. Conf. P. Aerosol and Air Quality Research = Aerosol Air Qual Res Aerosol and Air Quality Research = Aerosol Air Qual. Res. Aerosol Forcing of Climate = Dahl Ws Env Aerosol Forcing of Climate = Dahl. Ws. Env. Aerosol Optics: Light Absorption and Scattering By Particles in The Atmosphere = S-p B Environ Sci Aerosol Optics: Light Absorption and Scattering By Particles in The Atmosphere = S-p. B. Environ. Sci. Aerosol Science and Technology = Aerosol Sci Tech Aerosol Science and Technology = Aerosol Sci. Tech. Aerosol Science and Technology = Aerosol Sci. Technol. Aerosol science and technology : the journal of the American Association for Aerosol Research = Aerosol Sci Technol Aerospace = Aerospace Aerospace America = Aerospace Am Aerospace America = Aerospace Am. Aerospace America = Aerosp Am Aerospace Application of Computational Methods Versus Testing = Imeche Sem Aerospace Application of Computational Methods Versus Testing = Imeche. Sem. Aerospace Engineering = Aerospace Eng Aerospace Engineering = Aerospace Eng. Aerospace engineering (Society of Automotive Engineers) = Aerosp Eng Aerospace historian = Aerosp Hist Aerospace Medicine = Aerospace Med Aerospace Medicine = Aerospace Med. Aerospace medicine = Aerosp Med Aerospace Medicine = Aerosp. Med. Aerospace Science and Technology = Aerosp. Sci. Technol. Aerospace Science and Technology = Aerosp Sci Technol Aerospace Science and Technology = Aerosp. Sci. Technol. Aerospace Transmission Systems - Concurrent Design and Manufacture = Imeche Sem Aerospace Transmission Systems - Concurrent Design and Manufacture = Imeche. Sem. Aerospace Transmission Technology = Imeche Sem Aerospace Transmission Technology = Imeche. Sem. Aerotecnica = Aerotecnica Aerotecnica Missili E Spazio = Aerotec Missili Spaz Aerotecnica Missili E Spazio = Aerotec. Missili Spaz. Aerzteblatt Rheinland-Pfalz = Arztebl Rheinl Pfalz Aerztliche Praxis = Arztl Prax Aesthetic Anxiety: Uncanny Symptoms in German Literature and Culture = Int Forsch Allg Vgl Aesthetic Anxiety: Uncanny Symptoms in German Literature and Culture = Int. Forsch. Allg. Vgl. Aesthetic Autonomy: Problems and Perspectives = Gr Stud Cult Aesthetic Autonomy: Problems and Perspectives = Gr. Stud. Cult. Aesthetic Discourse of The Arts = Anal Hus Yb Aesthetic Discourse of The Arts = Anal. Hus. Yb. Aesthetic Experience = Rout Stud Contemp Ph Aesthetic Experience = Rout. Stud. Contemp. Ph. Aesthetic Formations: Media, Religion, and The Senses = Relig Cult Crit Aesthetic Formations: Media, Religion, and The Senses = Relig. Cult. Crit. Aestheticism and The Philosophy of Death: Walter Pater and Post- Hegelianism = Stud Comp Lit Ser Aestheticism and The Philosophy of Death: Walter Pater and Post- Hegelianism = Stud. Comp. Lit. Ser. Aesthetic plastic surgery = Aesthetic Plast Surg Aesthetic Plastic Surgery=Aesthetic Plast Surg;; Aesthetic Plastic Surgery = Aesthetic Plast. Surg. Aesthetic Plastic Surgery = Aesthet Plast Surg Aesthetic Plastic Surgery = Aesthet. Plast. Surg. Aesthetics and Functionality in Ear Reconstruction = Adv Oto-rhino-laryng Aesthetics and Functionality in Ear Reconstruction = Adv. Oto-rhino-laryng. Aesthetics and Philosophy of Art = Contemp Philos New S Aesthetics and Philosophy of Art = Contemp. Philos. New. S. Aesthetics and World Politics = Rethink Peace Confl Aesthetics and World Politics = Rethink. Peace. Confl. Aesthetics of Law and Culture: Texts, Images, Screens = Stud Law Politics So Aesthetics of Law and Culture: Texts, Images, Screens = Stud. Law Politics. So. Aesthetic Surgery Journal = Aesthetic Surg. J. Aestivation: Molecular and Physiological Aspects = Prog Mol Subcell Bio Aestivation: Molecular and Physiological Aspects = Prog. Mol. Subcell. Bio. Aeu-archiv Fur Elektronik Und Ubertragungstechnik-international Journal of Electronics and Communications = Aeu-arch Elektron Ub Aeu-archiv Fur Elektronik Und Ubertragungstechnik-international Journal of Electronics and Communications = Aeu-arch. Elektron. Ub. Aeu-international Journal of Electronics and Communications = Aeu-int J Electron C Aeu-international Journal of Electronics and Communications = Aeu-int. J. Electron. C. AEU International Journal of Electronics and Communications = AEU Int. J. Electron. Commun. Aevum = Aevum Aevum antiquum = Aevum(ant) Aevum antiquum = AevumAnt Aevum: rassegna di scienze storiche, linguistiche e filologiche = Aevum Aevum. Rassegna di scienze storiche linguistiche e filologiche = Aevum Aevum-rassegna Di Scienze Storiche Linguistiche E Filologiche = Aevum-rass Sci Stor Aevum-rassegna Di Scienze Storiche Linguistiche E Filologiche = Aevum-rass. Sci. Stor. Afar Volcanic Province Within The East African Rift System = Geol Soc Spec Publ Afar Volcanic Province Within The East African Rift System = Geol. Soc. Spec. Publ. Affari sociali internazionali = Aff Soc Int Affect and Accuracy in Recall = Emory S Cog Affect and Accuracy in Recall = Emory. S. Cog. Affect and Emotion in Human-computer Interaction: From Theory to Applications = Lect Notes Comput Sc Affect and Emotion in Human-computer Interaction: From Theory to Applications = Lect. Notes. Comput. Sc. Affect and Groups = Res Manag Group Team Affect and Groups = Res. Manag. Group. Team. Affective Computing and Intelligent Interaction, Proceedings = Lect Notes Comput Sc Affective Computing and Intelligent Interaction, Proceedings = Lect. Notes. Comput. Sc. Affective Dialogue Systems, Proceedings = Lect Notes Comput Sc Affective Dialogue Systems, Proceedings = Lect. Notes. Comput. Sc. Affective Meditation and The Invention of Medieval Compassion = Middle Ages Ser Affective Meditation and The Invention of Medieval Compassion = Middle. Ages. Ser. Affilia = Affilia Affilia-journal of Women and Social Work = Affilia J Wom Soc Wo Affilia-journal of Women and Social Work = Affilia. J. Wom. Soc. Wo. Affine Algebraic Geometry = Contemp Math Affine Algebraic Geometry = Contemp. Math. Affine Density in Wavelet Analysis = Lect Notes Math Affine Density in Wavelet Analysis = Lect. Notes. Math. Affinity, That Elusive Dream: A Genealogy of The Chemical Revolution = Transformations-stud Affinity, That Elusive Dream: A Genealogy of The Chemical Revolution = Transformations-stud. Affirmative Action in China and The U.s.: A Dialogue On Inequality and Minority Education = Int Dev Educ Affirmative Action in China and The U.s.: A Dialogue On Inequality and Minority Education = Int. Dev. Educ. Affluence, Mobility and Second Home Ownership = Hous Soc Ser Affluence, Mobility and Second Home Ownership = Hous. Soc. Ser. Afghanistan: A Cultural and Political History = Princ Stud Muslim Po Afghanistan: A Cultural and Political History = Princ. Stud. Muslim. Po. Afghanistan = Afghanistan Afghanistan, Arms and Conflict = Contemp Secur Stud Afghanistan, Arms and Conflict = Contemp. Secur. Stud. Afghanistan: Political Frailty and External Interference = Rout Stud Mid E Hist Afghanistan: Political Frailty and External Interference = Rout. Stud. Mid. E. Hist. Afghanistan: Transition Under Threat = Stud Int Gov Afghanistan: Transition Under Threat = Stud. Int. Gov. Afghan medical journal = Afghan Med J Afinidad = Afinidad Afips Conference Proceedings = Afips Conf P Afips Conference Proceedings = Afips Conf. P. Afl-cio American Federationist = Afl-cio Am Fed Afl-cio American Federationist = Afl-cio Am. Fed. AFL-CIO American Federationist = AFL. CIO Am. Fed. AFOSR TN. United States. Air Force. Office of Scientific Research = AFOSR TN United States Air Force Off Sci Res AFOSR TR. United States. Air Force. Office of Scientific Research = AFOSR TR United States Air Force Off Sci Res Africa = Africa Africa = Africa (Lond) Africa analysis = Afr Anal Africa and Europe = Afrikan Stud Africa and Europe = Afrikan. Stud. Africa development. Afrique et developpement = Afr Dev Africa health = Afr Health Africa, Human Rights, and The Global System = Stud Hum Rights Africa, Human Rights, and The Global System = Stud. Hum. Rights. Africa insight = Afr Insight Africa. Institut national d'archéologie et d'art, Tunis = Africa Africa in The New Millennium = Discuss Pap Africa in The New Millennium = Discuss. Pap. Africa : journal of the International Institute of African Languages and Cultures = Africa Africa link : a publication of the Africa Region = Afr Link Africa media review = Afr Media Rev Africana Cultures and Policy Studies = Contemp Black Hist Africana Cultures and Policy Studies = Contemp. Black. Hist. African Affairs = Afr Affairs African Affairs = Afr. Affairs African affairs = Afr Aff (Lond) Africana Linguistica = Afr Linguist Africana Linguistica = Afr. Linguist. African alternatives / Africa Operations Research and Technical Assistance Project = Afr Alternat Africana Marburgensia = Afr Marburgen African American Girls: Reframing Perceptions and Changing Experiences = Adv Respons Adol Dev African American Girls: Reframing Perceptions and Changing Experiences = Adv. Respons. Adol. Dev. African American Review = Afr Am Rev African American Review = Afr. Am. Rev. African and Asian Studies = Afr Asian Stud African and Asian Studies = Afr. Asian Stud. Africana notes and news. Africana aantekeninge en nuus = Afr Notes News African Archaeological Review = Afr Archaeol Rev African Archaeological Review = Afr. Archaeol. Rev. African Archaeology Network: Research in Progress = Stud Afr Past African Archaeology Network: Research in Progress = Stud. Afr. Past. Africana research bulletin = Afr Res Bull African Arts = Afr Arts African Arts = Afr. Arts African Biogeography, Climate Change & Human Evolution = Human Evolut Ser African Biogeography, Climate Change & Human Evolution = Human Evolut. Ser. African Century Publication Series = Afr Cent Publ Ser African Century Publication Series = Afr. Cent. Publ. Ser. African Climate and Climate Change: Physical, Social and Political Perspectives = Adv Glob Change Res African Climate and Climate Change: Physical, Social and Political Perspectives = Adv. Glob. Change. Res. African concord = Afr Concord African Constitutionalism and The Role of Islam = Pa Stud Hum Rights African Constitutionalism and The Role of Islam = Pa. Stud. Hum. Rights. African Cultural Astronomy = Astrophysics Space African Cultural Astronomy = Astrophysics. Space. African demography = Afr Demogr African Dental Journal = Afr. Dent. J. African Development Review=African Devel. Rev. African Development Review-revue Africaine De Developpement = Afr Dev Rev African Development Review-revue Africaine De Developpement = Afr. Dev. Rev. African Diaspora and The Study of Religion = Relig Cult Crit African Diaspora and The Study of Religion = Relig. Cult. Crit. African Discourse in Islam, Oral Traditions, and Performance = Afr Stud-hist Polit African Discourse in Islam, Oral Traditions, and Performance = Afr. Stud-hist. Polit. African Dynamics = Afr Dyn African Dynamics = Afr. Dyn. African economic history = Afr Econ Hist African Economic History = Afr Econ Hist African Economic History = Afr. Econ. Hist. African Economic History=African Econ. Hist. African Entomology = Afr Entomol African Entomology = Afr. Entomol. African environment = Afr Environ African Erosion Surface: A Continental-scale Synthesis of Geomorphology, Tectonics, and Environmental Change Over The Past 180 Million Year = Geol Soc Am Mem African Erosion Surface: A Continental-scale Synthesis of Geomorphology, Tectonics, and Environmental Change Over The Past 180 Million Year = Geol. Soc. Am. Mem. African farmer : the key to Africa's future = Afr Farmer African Finance Journal=African Finance J. African health sciences = Afr Health Sci African Health Sciences = Afr Health Sci African Health Sciences = Afr. Health Sci. African historical studies = Afr Hist Stud African Historical Studies = Afr Hist Stud African Historical Studies = Afr. Hist. Stud. African Images: Recent Studies and Text in China = Ann Sel Pap African Images: Recent Studies and Text in China = Ann. Sel. Pap. African Invertebrates = Afr Invertebr African Invertebrates = Afr. Invertebr. African journal for the psychological study of social issues : journal of the African Society for the Psychological Study of Social Issues = Afr J Psychol Study Soc Issues African Journal of Agricultural Research = Afr J Agric Res African Journal of Agricultural Research = Afr. J. Agric. Res. African Journal of Agricultural Research = Afr J Agr Res African Journal of Agricultural Research = Afr. J. Agr. Res. African Journal of Aquatic Science = Afr J Aquat Sci African Journal of Aquatic Science = Afr. J. Aquat. Sci. African Journal of Biochemistry Research = Afr. J. Biochem. Res. African Journal of Biotechnology = Afr J Biotechnol African Journal of Biotechnology = Afr. J. Biotechnol. African Journal of Business Management = Afr J Bus Manag African Journal of Business Management = Afr. J. Bus. Manag. African Journal of Business Management = Afr J Bus Manage African Journal of Business Management = Afr. J. Bus. Manage. African Journal of Clinical and Experimental Immunology = Afr J Clin Exp Immun African Journal of Clinical and Experimental Immunology = Afr. J. Clin. Exp. Immun. African Journal of Ecology = Afr J Ecol African Journal of Ecology = Afr. J. Ecol. African Journal of Environmental Science and Technology = Afr. J. Environ. Sci. Technol. African journal of fertility, sexuality, and reproductive health = Afr J Fertil Sexual Reprod Heal African Journal of Food, Agriculture, Nutrition and Development = Afr. J. Food Agric. Nutr. Dev. African Journal of Food Science = Afr. J. Food Sci. African journal of health sciences = Afr J Health Sci African Journal of Herpetology = Afr J Herpetol African Journal of Herpetology = Afr. J. Herpetol. African Journal of Library Archives and Information Science = Afr J Libr Arch Info African Journal of Library Archives and Information Science = Afr. J. Libr. Arch. Info. African Journal of Marine Science = Afr J Mar Sci African Journal of Marine Science = Afr. J. Mar. Sci. African journal of medical practice / African Academy of Sciences = Afr J Med Pract African Journal of Medical Sciences = Afr. J. Med. Sci. African journal of medicine and medical sciences = Afr J Med Med Sci African Journal of Medicine and Medical Sciences=Afr J Med Med Sci;; African Journal of Medicine and Medical Sciences = Afr J Med Med Sci African Journal of Medicine and Medical Sciences = Afr. J. Med. Med. Sci. African Journal of Microbiology Research = Afr J Microbiol Res African Journal of Microbiology Research = Afr. J. Microbiol. Res. African Journal of Pharmacy and Pharmacology = Afr J Pharm Pharmaco African Journal of Pharmacy and Pharmacology = Afr. J. Pharm. Pharmaco. African Journal of Plant Science = Afr. J. Plant Sci. African Journal of Psychiatry = Afr J Psychiatry African Journal of Psychiatry = Afr. J. Psychiatry African Journal of Range and Forage Science = Afr. J. Range Forage Sci. African Journal of Range & Forage Science = Afr J Range For Sci African Journal of Range & Forage Science = Afr. J. Range For. Sci. African journal of reproductive health = Afr J Reprod Health African Journal of Reproductive Health = Afr. J. Reprod. Health African journal of sociology = Afr J Sociol African Journal of Traditional Complementary and Alternative Medicines = Afr J Tradit Complem African Journal of Traditional Complementary and Alternative Medicines = Afr. J. Tradit. Complem. African Landscapes: Interdisciplinary Approaches = Stud Hum Ecol Adapt African Landscapes: Interdisciplinary Approaches = Stud. Hum. Ecol. Adapt. African Languages in Basic Education = Dtsch Stift Int Entw African Languages in Basic Education = Dtsch. Stift. Int. Entw. African Literature Today = Afr Lit Today African Literature Today = Afr. Lit. Today African Media and The Digital Public Sphere = Palgr Mac Ser Int Po African Media and The Digital Public Sphere = Palgr. Mac. Ser. Int. Po. African Modernization and Development Series = Afr Mod Dev African Modernization and Development Series = Afr. Mod. Dev. African Music = Afr Music African Music = Afr. Music African Natural History = Afr Nat Hist African Natural History = Afr. Nat. Hist. African notes : bulletin of the Institute of African Studies, University of Ibadan = Afr Notes African Origins of Rhetoric = Afr Stud-hist Polit African Origins of Rhetoric = Afr. Stud-hist. Polit. Africa : notiziario dell'Associazione fra le imprese italiane in Africa = Africa (Roma) African Political Economic and Security Issues Series = Afr Polit Econ Secur African Political Economic and Security Issues Series = Afr. Polit. Econ. Secur. African population newsletter = Afr Popul Newsl African Press, Civic Cynicism, and Democracy = Palgr Mac Ser Int Po African Press, Civic Cynicism, and Democracy = Palgr. Mac. Ser. Int. Po. African Review = Afr Rev African Review = Afr. Rev. African review (Dar es Salaam, Tanzania) = Afr Rev African Small Mammals = Colloq Semi African Small Mammals = Colloq. Semi. African social research = Afr Soc Res African Social Research = Afr Soc Res African Social Research = Afr. Soc. Res. African studies = Afr Stud African Studies = Afr Stud African Studies = Afr. Stud. African Studies = Afr Stud-uk African Studies = Afr. Stud-uk. African Studies Centre Research Series = Afr Stud Ctr Res Ser African Studies Centre Research Series = Afr. Stud. Ctr. Res. Ser. African Studies-history Politics Economics and Culture = Afr Stud-hist Polit African Studies-history Politics Economics and Culture = Afr. Stud-hist. Polit. African studies review = Afr Stud Rev African Studies Review = Afr Stud Rev African Studies Review = Afr. Stud. Rev. African study monographs = Afr Study Monogr African Union: Challenges of Globalization, Security, and Governance = Glob Inst African Union: Challenges of Globalization, Security, and Governance = Glob. Inst. African urban notes. Ser. B = Afr Urban Notes B African urban quarterly = Afr Urban Q African urban studies (Michigan State University. African Studies Center) = Afr Urban Stud African Yearbook of Rhetoric = Afr Yearb Rhetor African Yearbook of Rhetoric = Afr. Yearb. Rhetor. African Zoology = Afr Zool African Zoology = Afr. Zool. Africa quarterly = Afr Q Africa recovery = Afr Recovery Africa report = Afr Rep Africa (Roma), Quaderni = Africa Africa's Experience With Structural Adjustment = World B Dis Africa's Experience With Structural Adjustment = World. B. Dis. AfricAsia (Paris, France : 1984) = Africasia Africa South of the Sahara = Afr South Africa Spectrum = Afr Spectr Africa Spectrum = Afr. Spectr. Africa's population and development bulletin = Afr Popul Dev Bull Africa today = Afr Today Africa Today = Afr Today Africa Today = Afr. Today Africa woman = Afr Woman Africa women & health : a Safe Motherhood magazine = Afr Women Health Africom / African Council on Communication Education = Africom Afrika Matematika = Afrika Mat. (3) Afrikanische Studien = Afrikan Stud Afrikanische Studien = Afrikan. Stud. Afrika Spectrum=Afrika Spec. Afrika Spectrum = Afr Spectr Afrika Spectrum = Afr. Spectr. Afrika und Ubersee = Afr Uebersee Afrique 2000 (Geneva, Switzerland) = Afrique 2000 Afrique contemporaine = Afr Contemp Afrique documents = Afr Doc Afrique francaise chirurgicale = Afr Francaise Chir Afrique Litteraire = Afr Litt Afrique Litteraire = Afr. Litt. Afrique medicale = Afr Med Afro-Americans in New York life and history = Afro Am N Y Life Hist Afro-american Studies = Afro-am Stud Afro-american Studies = Afro-am. Stud. AFRO technical papers = Afro Tech Pap After 2015: International Development Policy At A Crossroads = Rethink Int Dev After 2015: International Development Policy At A Crossroads = Rethink. Int. Dev. After Alice = Cassell Ed After Alice = Cassell. Ed. After Beckett D'apres Beckett = Sam Beckett Today After Beckett D'apres Beckett = Sam. Beckett Today. After Beckett D'apres Beckett = Samuel Beckett Today After Beckett D'apres Beckett = Samuel. Beckett Today. After Communism: Perspectives On Democracy = F I Ser Int Aff After Communism: Perspectives On Democracy = F. I. Ser. Int. Aff. After Hardship Cometh Ease: The Jews As Backdrop for Muslim Moderation = Stud Gesch Kult Isla After Hardship Cometh Ease: The Jews As Backdrop for Muslim Moderation = Stud. Gesch. Kult. Isla. Afterlife of Character, 1726-1825 = Mater Texts Afterlife of Character, 1726-1825 = Mater. Texts. Afterlife of Gardens = Penn Stud Landsc Arc Afterlife of Gardens = Penn. Stud. Landsc. Arc. Aftermath: The Clinton Impeachment and The Presidency in The Age of Political Spectacle = Critical America Aftermath: The Clinton Impeachment and The Presidency in The Age of Political Spectacle = Critical. America. After Perestroika : Democracy in The Soviet Union = Signif Is S After Perestroika : Democracy in The Soviet Union = Signif. Is. S. After Socialism = New Dir Anthr After Socialism = New. Dir. Anthr. After The Dark Ages: When Galaxies Were Young (the Universe At 2<z<5) = Aip Conf Proc After The Dark Ages: When Galaxies Were Young (the Universe At 2<z<5) = Aip. Conf. Proc. After The First Three Minutes = Aip Conf Proc After The First Three Minutes = Aip. Conf. Proc. After The Gdr = Germ Monit After The Gdr = Germ. Monit. After The Rescue: Jewish Identity and Community in Contemporary Denmark = Contemp Anthr Relig After The Rescue: Jewish Identity and Community in Contemporary Denmark = Contemp. Anthr. Relig. After The Wall = Eur Media M After The Wall = Eur. Media. M. After Tutankhamun = Stud Egypt After Tutankhamun = Stud. Egypt. After-words: Post-holocaust Struggles With Forgiveness, Reconciliation, Justice = Pastora Goldner Ser After-words: Post-holocaust Struggles With Forgiveness, Reconciliation, Justice = Pastora. Goldner. Ser. A. Furtwängler – K. Reichhold, Griechische Vasenmalerei (München 1900--1925) = FR Afya = Afya Against Automobility = Soc Rev Mon Against Automobility = Soc. Rev. Mon. Against Theatre: Creative Destructions On The Modernist Stage = Perform Interv Against Theatre: Creative Destructions On The Modernist Stage = Perform. Interv. Against The Spiritual Turn = Routl Stud Crit Real Against The Spiritual Turn = Routl. Stud. Crit. Real. Against The Wall: Poor, Young, Black, and Male = City 21st Century Against The Wall: Poor, Young, Black, and Male = City. 21st. Century. Agatha Christie: Power and Illusion = Crime Files Ser Agatha Christie: Power and Illusion = Crime. Files. Ser. Ag Chem and Commerical Fertilizer = Ag Chem Comm Fertil Ag Chem and Commerical Fertilizer = Ag Chem Comm. Fertil. Age = Age Age = Age (Omaha) Age and ageing = Age Ageing Age and Ageing=Age Ageing;; Age and Ageing = Age Ageing Aged Care and Services Review = Aged Care Serv. Rev. Aged care & services review = Aged Care Serv Rev Age (Dordrecht, Netherlands) = Age Dordr Neth Age Factor and Early Language Learning = Interface Explor Age Factor and Early Language Learning = Interface. Explor. Ageing and society = Ageing Soc Ageing and Society = Ageing Soc Ageing and Society = Ageing Soc. Ageing and The Glass Transition = Lect Notes Phys Ageing and The Glass Transition = Lect. Notes. Phys. Ageing and The Labor Market in Japan: Problems and Policies = Esri Stud Ser Ageing Ageing and The Labor Market in Japan: Problems and Policies = Esri. Stud. Ser. Ageing Ageing in Advanced Industrial States = Int Stud Popul Ageing in Advanced Industrial States = Int. Stud. Popul. Ageing in East Asia = Comp Dev Policy Asia Ageing in East Asia = Comp. Dev. Policy. Asia Ageing in Singapore: Service Needs and The State = Routl Cont Se Asia S Ageing in Singapore: Service Needs and The State = Routl. Cont. Se. Asia. S. Ageing international = Ageing Int Ageing of Composites = Woodhead Publ Mater Ageing of Composites = Woodhead. Publ. Mater. Ageing Pipelines = Imeche Conf Trans Ageing Pipelines = Imeche. Conf. Trans. Ageing research reviews = Ageing Res Rev Ageing Research Reviews = Ageing Res Rev Ageing Research Reviews = Ageing Res. Rev. Ageing & Society = Ageing Soc Ageing & Society = Ageing Soc. Age (Melbourne, Vic.) = Age Agenda=Agenda Agenda = Agenda Agenda (Durban, South Africa) = Agenda Agenda salud = Agenda Salud Agenda-setting in The European Union = Palgrave Stud Eur Un Agenda-setting in The European Union = Palgrave. Stud. Eur. Un. Agent and Multi-agent Systems: Technologies and Applications, Proceedings = Lect Notes Artif Int Agent and Multi-agent Systems: Technologies and Applications, Proceedings = Lect. Notes. Artif. Int. Agent and Multi-agent Systems: Technologies and Applications, Pt Ii, Proceedings = Lect Notes Artif Int Agent and Multi-agent Systems: Technologies and Applications, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Agent and Multi-agent Systems: Technologies and Applications, Pt I, Proceedings = Lect Notes Artif Int Agent and Multi-agent Systems: Technologies and Applications, Pt I, Proceedings = Lect. Notes. Artif. Int. Agent and Multi-agent Technology for Internet and Enterprise Systems = Stud Comput Intell Agent and Multi-agent Technology for Internet and Enterprise Systems = Stud. Comput. Intell. Agent-based Approaches in Economic and Social Complex Systems = Fr Art Int Agent-based Approaches in Economic and Social Complex Systems = Fr. Art. Int. Agent-based Approaches in Economic and Social Complex Systems = Front Artif Intel Ap Agent-based Approaches in Economic and Social Complex Systems = Front. Artif. Intel. Ap. Agent-based Approaches in Economic and Social Complex Systems Iv = Agent Based Soc Syst Agent-based Approaches in Economic and Social Complex Systems Iv = Agent. Based. Soc. Syst. Agent-based Approaches in Economic and Social Complex Systems Iv = Springer Ser Agent B Agent-based Approaches in Economic and Social Complex Systems Iv = Springer. Ser. Agent. B. Agent-based Approaches in Economic and Social Complex Systems Vi = Sp S Ag Ba So Syst Agent-based Approaches in Economic and Social Complex Systems Vi = Sp. S. Ag. Ba. So. Syst. Agent-based Computational Demography = Contrib Econ Agent-based Computational Demography = Contrib. Econ. Agent-based Computational Demography = Contribut Econ Agent-based Computational Demography = Contribut. Econ. Agent-based Computational Modelling: Applications in Demography, Social, Economic and Environmental Sciences = Contrib Econ Agent-based Computational Modelling: Applications in Demography, Social, Economic and Environmental Sciences = Contrib. Econ. Agent-based Computing = Comput Sci Tech Appl Agent-based Computing = Comput. Sci. Tech. Appl. Agent-based Evolutionary Search = Adapt Learn Optim Agent-based Evolutionary Search = Adapt. Learn. Optim. Agent-based Hybrid Intelligent Systems: Agent-based Framework for Complex Problem Solving = Lect Notes Artif Int Agent-based Hybrid Intelligent Systems: Agent-based Framework for Complex Problem Solving = Lect. Notes. Artif. Int. Agent-based Modeling Meets Gaming Simulation = Springer Ser Agent B Agent-based Modeling Meets Gaming Simulation = Springer. Ser. Agent. B. Agent-based Modeling: The Santa Fe Institute Artificial Stock Market Model Revisited = Lect Notes Econ Math Agent-based Modeling: The Santa Fe Institute Artificial Stock Market Model Revisited = Lect. Notes. Econ. Math. Agent-based Models of Energy Investment Decisions = Sustain Innov Agent-based Models of Energy Investment Decisions = Sustain. Innov. Agent-based Service-oriented Computing = Adv Inform Knowl Pro Agent-based Service-oriented Computing = Adv. Inform. Knowl. Pro. Agent-based Simulation: From Modeling Methodologies to Real-world Applications = Agent Based Soc Syst Agent-based Simulation: From Modeling Methodologies to Real-world Applications = Agent. Based. Soc. Syst. Agent-based Simulation: From Modeling Methodologies to Real-world Applications = Springer Ser Agent B Agent-based Simulation: From Modeling Methodologies to Real-world Applications = Springer. Ser. Agent. B. Agent-based Social Systems = Agent Based Soc Syst Agent-based Social Systems = Agent. Based. Soc. Syst. Agent Communication Ii = Lect Notes Comput Sc Agent Communication Ii = Lect. Notes. Comput. Sc. Agent Communication = Lect Notes Comput Sc Agent Communication = Lect. Notes. Comput. Sc. Agent Computing and Multi-agent Systems = Lect Notes Artif Int Agent Computing and Multi-agent Systems = Lect. Notes. Artif. Int. Agent-mediated Electronic Commerce and Trading Agent Design and Analysis = Lect Notes Bus Inf Agent-mediated Electronic Commerce and Trading Agent Design and Analysis = Lect. Notes. Bus. Inf. Agent-mediated Electronic Commerce and Trading Agent Design and Analysis = Lect Notes Bus Inf P Agent-mediated Electronic Commerce and Trading Agent Design and Analysis = Lect. Notes. Bus. Inf. P. Agent-mediated Electronic Commerce: Designing Trading Agents and Mechanisms = Lect Notes Artif Int Agent-mediated Electronic Commerce: Designing Trading Agents and Mechanisms = Lect. Notes. Artif. Int. Agent-mediated Electronic Commerce = Lect Notes Artif Int Agent-mediated Electronic Commerce = Lect. Notes. Artif. Int. Agent-mediated Electronic Commerce = Lect Notes Comput Sc Agent-mediated Electronic Commerce = Lect. Notes. Comput. Sc. Agent-mediated Electronic Commerce V: Designing Mechanisms and Systems = Lect Notes Artif Int Agent-mediated Electronic Commerce V: Designing Mechanisms and Systems = Lect. Notes. Artif. Int. Agent-mediated Electronic Commerce Vi = Lect Notes Artif Int Agent-mediated Electronic Commerce Vi = Lect. Notes. Artif. Int. Agent-mediated Knowledge Management = Lect Notes Artif Int Agent-mediated Knowledge Management = Lect. Notes. Artif. Int. Agent-oriented Information Systems Iii = Lect Notes Comput Sc Agent-oriented Information Systems Iii = Lect. Notes. Comput. Sc. Agent-oriented Information Systems Ii = Lect Notes Artif Int Agent-oriented Information Systems Ii = Lect. Notes. Artif. Int. Agent-oriented Information Systems Iv = Lect Notes Artif Int Agent-oriented Information Systems Iv = Lect. Notes. Artif. Int. Agent-oriented Information Systems = Lect Notes Comput Sc Agent-oriented Information Systems = Lect. Notes. Comput. Sc. Agent-oriented Programming = Lect Notes Artif Int Agent-oriented Programming = Lect. Notes. Artif. Int. Agent-oriented Software Engineering Iii = Lect Notes Comput Sc Agent-oriented Software Engineering Iii = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering Iv = Lect Notes Comput Sc Agent-oriented Software Engineering Iv = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering Ix = Lect Notes Comput Sc Agent-oriented Software Engineering Ix = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering Viii = Lect Notes Comput Sc Agent-oriented Software Engineering Viii = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering Vii = Lect Notes Comput Sc Agent-oriented Software Engineering Vii = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering Vi = Lect Notes Comput Sc Agent-oriented Software Engineering Vi = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering V = Lect Notes Comput Sc Agent-oriented Software Engineering V = Lect. Notes. Comput. Sc. Agent-oriented Software Engineering X = Lect Notes Comput Sc Agent-oriented Software Engineering X = Lect. Notes. Comput. Sc. Agents and actions = Agents Actions Agents and Actions = Agents Actions Agents and Actions Supplements = Agent Action Suppl Agents and Actions Supplements = Agent. Action. Suppl. Agents and actions. Supplements = Agents Actions Suppl Agents and Actions Supplements = Agents Actions Suppl. Agents and Actions. Supplements=Agents Actions Suppl;; Agents and Actions. Supplements = Agents Actions. Suppl. Agents and Artificial Intelligence = Comm Com Inf Sc Agents and Artificial Intelligence = Comm. Com. Inf. Sc. Agents and Computational Autonomy: Potential, Risks, and Solutions = Lect Notes Comput Sc Agents and Computational Autonomy: Potential, Risks, and Solutions = Lect. Notes. Comput. Sc. Agents and Data Mining Interaction = Lect Notes Artif Int Agents and Data Mining Interaction = Lect. Notes. Artif. Int. Agents and Data Mining Interaction = Lect Notes Comput Sc Agents and Data Mining Interaction = Lect. Notes. Comput. Sc. Agents and Peer-to-peer Computing = Lect Notes Artif Int Agents and Peer-to-peer Computing = Lect. Notes. Artif. Int. Agents and Peer- to Peer Computing = Lect Notes Artif Int Agents and Peer- to Peer Computing = Lect. Notes. Artif. Int. Agents and Peer-to-peer Computing = Lect Notes Comput Sc Agents and Peer-to-peer Computing = Lect. Notes. Comput. Sc. Agents for Games and Simulations: Trends in Techniques, Concepts and Design = Lect Notes Artif Int Agents for Games and Simulations: Trends in Techniques, Concepts and Design = Lect. Notes. Artif. Int. Agents of Change : Progress and Innovation in The Library / Information Profession = Mc F S Rutg Agents of Change : Progress and Innovation in The Library / Information Profession = Mc. F. S. Rutg. Agent Systems, Mobile Agents and Applications = Lect Notes Comput Sc Agent Systems, Mobile Agents and Applications = Lect. Notes. Comput. Sc. Agent Technologies, Infrastructures, Tools, and Applications for E-services = Lect Notes Artif Int Agent Technologies, Infrastructures, Tools, and Applications for E-services = Lect. Notes. Artif. Int. Agent Technology and E-health = Whitestein Ser Softw Agent Technology and E-health = Whitestein. Ser. Softw. Age of Alternative Logics: Assessing Philosophy of Logic and Mathematics Today = Logic Epistemol Unit Age of Alternative Logics: Assessing Philosophy of Logic and Mathematics Today = Logic Epistemol. Unit. Age of Apology: Facing Up to The Past = Pa Stud Hum Rights Age of Apology: Facing Up to The Past = Pa. Stud. Hum. Rights. Age of Saints: Power, Conflict and Dissent in Early Medieval Christianity = Brill Ser Early Midd Age of Saints: Power, Conflict and Dissent in Early Medieval Christianity = Brill. Ser. Early Midd. Age of Tetrarchs = Serb Ac Sci Age of Tetrarchs = Serb. Ac. Sci. Age of The Earth: From 4004 Bc to Ad 2002 = Geol Soc Spec Publ Age of The Earth: From 4004 Bc to Ad 2002 = Geol. Soc. Spec. Publ. Age-related Dopamine-dependent Disorders = Mg Neur Sci Age-related Dopamine-dependent Disorders = Mg. Neur. Sci. Age-related Macular Degeneration (amd) and Lutein - Assessing The Evidence = Roy S Med S Age-related Macular Degeneration (amd) and Lutein - Assessing The Evidence = Roy. S. Med. S. Ages of Stars = Iau Symp P Series Ages of Stars = Iau. Symp. P. Series. Aggiornamenti clinicoterapeutici = Aggiorn Clinico Ter Aggiornamenti Clinicoterapeutici = Aggiorn. Clinico Ter. Aggiornamenti di fisiologia = Aggiorn Fisiol Aggiornamenti di terapia oftalmologica = Aggiorn Ter Oftalmol Aggiornamenti in ostetricia e ginecologia = Aggiorn Ostet Ginecol Aggiornamenti sulle malattie da infezione = Aggiorn Sulle Mal Infez Aggiornamento pediatrico = Aggiorn Pediatr Aggregate Contribution to Hot Mix Asphalt (hma) Performance = Am Soc Test Mater Aggregate Contribution to Hot Mix Asphalt (hma) Performance = Am. Soc. Test. Mater. Aggregation and Divisibility of Damage = Tort Insur Law Aggregation and Divisibility of Damage = Tort. Insur. Law. Aggregation Functions: A Guide for Practitioners = Stud Fuzz Soft Comp Aggregation Functions: A Guide for Practitioners = Stud. Fuzz. Soft. Comp. Aggression and Violent Behavior = Aggress Violent Beh Aggression and Violent Behavior = Aggress. Violent Beh. Aggression, Crime and International Security = Contemp Secur Stud Aggression, Crime and International Security = Contemp. Secur. Stud. Aggressive behavior = Aggress Behav Aggressive Behavior = Aggressive Behav Aggressive Behavior = Aggressive Behav. Aggressive Breast Cancer = Cancer Etiol Diagn T Aggressive Breast Cancer = Cancer Etiol. Diagn. T. Agid Report Series : Geosciences in International Development = Agid Geo In Agid Report Series : Geosciences in International Development = Agid Geo. In. Agile Processes in Software Engineering and Extreme Programming = Lect Notes Bus Inf Agile Processes in Software Engineering and Extreme Programming = Lect. Notes. Bus. Inf. Agile Processes in Software Engineering and Extreme Programming = Lect Notes Bus Inf P Agile Processes in Software Engineering and Extreme Programming = Lect. Notes. Bus. Inf. P. Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect Notes Bus Inf Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect. Notes. Bus. Inf. Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect Notes Bus Inf P Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect. Notes. Bus. Inf. P. Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect Notes Comput Sc Agile Processes in Software Engineering and Extreme Programming, Proceedings = Lect. Notes. Comput. Sc. Aging = Aging Aging=Aging (Milano);; Aging = Aging (Milano) Aging and Age-related Disorders = Oxid Stress Appl Bas Aging and Age-related Disorders = Oxid. Stress. Appl. Bas. Aging and Alzheimers Disease = Ann Ny Acad Sci Aging and Alzheimers Disease = Ann. Ny. Acad. Sci. Aging and Cellular Defense Mechanisms = Ann Ny Acad Sci Aging and Cellular Defense Mechanisms = Ann. Ny. Acad. Sci. Aging and Cognition = Aging Cognition Aging and Human Development = Aging Hum Develop Aging and Human Development = Aging Hum. Develop. Aging and Leisure Living = Aging Leis. Living Aging and Mental Health = Aging Ment. Health Aging and work = Aging Work Aging and Work = Aging Work Aging and Working Capacity = Who Tech Rep Ser Aging and Working Capacity = Who. Tech. Rep. Ser. Aging and Work / = P Finn Inst Aging and Work / = P. Finn. Inst. Aging Auditory System = Springer Handb Audit Aging Auditory System = Springer. Handb. Audit. Aging Brain and Dementia = Neurol Neur Aging Brain and Dementia = Neurol. Neur. Aging, Cancer, and Age-related Diseases: Common Mechanism? = Ann Ny Acad Sci Aging, Cancer, and Age-related Diseases: Common Mechanism? = Ann. Ny. Acad. Sci. Aging cell = Aging Cell Aging Cell = Aging Cell Aging clinical and experimental research = Aging Clin Exp Res Aging-clinical and Experimental Research = Aging-clin Exp Res Aging-clinical and Experimental Research = Aging-clin. Exp. Res. Aging Clinical and Experimental Research = Aging Clin Exp Res Aging Clinical and Experimental Research = Aging Clin. Exp. Res. Aging Clock = Ann Ny Acad Sci Aging Clock = Ann. Ny. Acad. Sci. Aging Consumer: Perspectives From Psychology and Economics = Market Consum Psych Aging Consumer: Perspectives From Psychology and Economics = Market. Consum. Psych. Aging, Disability and Independence = Assist Techn Res Ser Aging, Disability and Independence = Assist. Techn. Res. Ser. Aging Friendly Technology for Health and Independence = Lect Notes Comput Sc Aging Friendly Technology for Health and Independence = Lect. Notes. Comput. Sc. Aging, Health Behaviors, and Health Outcomes = Soc Struct Aging, Health Behaviors, and Health Outcomes = Soc. Struct. Aging in Asia = Aging Iss Health Fin Aging in Asia = Aging Iss. Health. Fin. Aging Issues, Health and Financial Alternatives = Aging Iss Health Fin Aging Issues, Health and Financial Alternatives = Aging Iss. Health Fin. Aging Issues in The United States and Japan = Nber Conf R Aging Issues in The United States and Japan = Nber. Conf. R. Aging & leisure living = Aging Leis Living Aging Male = Aging Male Aging Medicine = Aging Med Aging Medicine = Aging Med. Aging & mental health = Aging Ment Health Aging & Mental Health = Aging Ment Health Aging & Mental Health = Aging Ment. Health Aging (Milan, Italy) = Aging (Milano) Aging: Morphological, Biochemical, Molecular and Social Aspects = Res Leg Med Aging: Morphological, Biochemical, Molecular and Social Aspects = Res. Leg. Med. Aging Neuropsychology and Cognition = Aging Neuropsychol C Aging Neuropsychology and Cognition = Aging Neuropsychol. C. Aging of The Brain = Tanig Symp Brain Sci Aging of The Brain = Tanig. Symp. Brain Sci. Aging, Theory and Globalization = Soc Perspect Aging Aging, Theory and Globalization = Soc. Perspect. Aging. Aging Trends = Aging Trends Aging trends (Hyattsville, Md.) = Aging Trends Aging-us = Aging-us Agmatine and Imidazolines: Their Novel Receptors and Enzymes = Ann Ny Acad Sci Agmatine and Imidazolines: Their Novel Receptors and Enzymes = Ann. Ny. Acad. Sci. Agnes Karll-Schwester. Der Krankenpfleger = Agnes Karll Schwest. Krankenpfleger Agn/normal Galaxy Connection = Adv Space Res Agn/normal Galaxy Connection = Adv. Space. Res. Agn/normal Galaxy Connection = Adv Space Res-series Agn/normal Galaxy Connection = Adv. Space. Res-series. Agnone Tablet in Its Italic Context = Lingue Iscr Agnone Tablet in Its Italic Context = Lingue. Iscr. Agn Physics With The Sloan Digital Sky Survey = Astr Soc P Agn Physics With The Sloan Digital Sky Survey = Astr. Soc. P. Agn Surveys: Iau Colloquium 184 = Astr Soc P Agn Surveys: Iau Colloquium 184 = Astr. Soc. P. Agn Variability From X-rays to Radio Waves = Astr Soc P Agn Variability From X-rays to Radio Waves = Astr. Soc. P. Agora-estudos Classicos Em Debate = Agora-estud Class De Agora-estudos Classicos Em Debate = Agora-estud. Class. De. A-gps: Assisted Gps, Gnss, and Sbas = Artech Hse Gnss Tech A-gps: Assisted Gps, Gnss, and Sbas = Artech. Hse. Gnss. Tech. Agrarforschung = Agrarforschung Agrarforschung Schweiz = Agrarforsch Schweiz+ Agrarforschung Schweiz = Agrarforsch. Schweiz+.+ Agrarian Angst and Rural Resistance in Contemporary Southeast Asia = Routl Iss Stud Rural Agrarian Angst and Rural Resistance in Contemporary Southeast Asia = Routl. Iss. Stud. Rural Agrarian Policy for European Agriculture, in Light of Gatt and The Eec 1992 = Ver Sem Agr Agrarian Policy for European Agriculture, in Light of Gatt and The Eec 1992 = Ver. Sem. Agr. Agrartechnik = Agrartechnik Agrartechnische Forschung-agricultural Engineering Research = Agrartech Forsch-agr Agrartechnische Forschung-agricultural Engineering Research = Agrartech. Forsch-agr. Agrartorteneti Szemle = Agrartort Szemle Agrartorteneti Szemle = Agrartort. Szemle Agreement Restrictions = Interface Explor Agreement Restrictions = Interface. Explor. Agrégation de Mathématiques = Agrég. Math. Agrekon = Agrekon Agressologie = Agressologie Agressologie: revue internationale de physio-biologie et de pharmacologie appliquees aux effets de l'agression = Agressologie Agribiological Research-zeitschrift Fur Agrarbiologie Agrikulturchemie Okologie = Agribiol Res Agribiological Research-zeitschrift Fur Agrarbiologie Agrikulturchemie Okologie = Agribiol. Res. Agribusiness=Agribusiness Agribusiness = Agribusiness Agricoltore ticinese = Agric. ticin. Agricoltura Italiana = Agric. Ital. Agricultura De Las Americas = Agr Am Agricultura De Las Americas = Agr. Am. Agricultural Administration = Agr Admin Ext Agricultural Administration = Agr. Admin. Ext. Agricultural Administration and Extension = Agr Admin Ext Agricultural Administration and Extension = Agr. Admin. Ext. Agricultural and Biological Chemistry = Agr Biol Chem Tokyo Agricultural and Biological Chemistry = Agr. Biol. Chem. Tokyo. Agricultural and biological chemistry = Agric Biol Chem Agricultural and Biological Chemistry = Agric. Biol. Chem. Agricultural and Food Processing Wastes = Asae Publ Agricultural and Food Processing Wastes = Asae. Publ. Agricultural and Food Research - Who Benefits = Cas Paper Agricultural and Food Research - Who Benefits = Cas. Paper. Agricultural and Food Science = Agr Food Sci Agricultural and Food Science = Agr. Food Sci. Agricultural and Food Science in Finland = Agr Food Sci Finland Agricultural and Food Science in Finland = Agr. Food Sci. Finland Agricultural and Forest Entomology = Agr Forest Entomol Agricultural and Forest Entomology = Agr. Forest Entomol. Agricultural and Forest Entomology = Agric For Entomol Agricultural and Forest Entomology = Agric. For. Entomol. Agricultural and Forest Meteorology = Agr Forest Meteorol Agricultural and Forest Meteorology = Agr. Forest Meteorol. Agricultural and Forest Meteorology = Agric. For. Meteorol. Agricultural and Resource Economics Review=Agr. Resource Econ. Rev. Agricultural and Synthetic Polymers = Acs Sym Ser Agricultural and Synthetic Polymers = Acs. Sym. Ser. Agricultural Applications in Green Chemistry = Acs Sym Ser Agricultural Applications in Green Chemistry = Acs. Sym. Ser. Agricultural Biodiversity and Biotechnology in Economic Development = Nat Res Manag Policy Agricultural Biodiversity and Biotechnology in Economic Development = Nat. Res. Manag. Policy. Agricultural Biotechnology: Challenges and Prospects = Acs Sym Ser Agricultural Biotechnology: Challenges and Prospects = Acs. Sym. Ser. Agricultural Biotechnology: Finding Common International Goals = Nabc Rep Agricultural Biotechnology: Finding Common International Goals = Nabc. Rep. Agricultural Biotechnology in International Development = Biotechn Ag Agricultural Biotechnology in International Development = Biotechn. Ag. Agricultural Biotechnology & The Public Good = Nabc Rep Agricultural Biotechnology & The Public Good = Nabc. Rep. Agricultural Chemicals = Agric Chem Agricultural Chemicals = Agric. Chem. Agricultural Economics=Agr. Econ. Agricultural Economics = Agr Econ Agricultural Economics = Agr. Econ. Agricultural Economics = Agr Econ-blackwell Agricultural Economics = Agr. Econ-blackwell. Agricultural Economics: New Research = Agr Issues Policies Agricultural Economics: New Research = Agr. Issues. Policies. Agricultural Economics Research=Agr. Econ. Res. Agricultural Economics Research = Agr Econ Res Agricultural Economics Research = Agr. Econ. Res. Agricultural economics research = Agric Econ Res Agricultural Economics-zemedelska Ekonomika = Agr Econ-czech Agricultural Economics-zemedelska Ekonomika = Agr. Econ-czech. Agricultural Ecosystem Effects On Trace Gases and Global Climate Change = Asa Spec P Agricultural Ecosystem Effects On Trace Gases and Global Climate Change = Asa. Spec. P. Agricultural Education = Agr Educ Mag Agricultural Education = Agr. Educ. Mag. Agricultural Education Magazine = Agr Educ Mag Agricultural Education Magazine = Agr. Educ. Mag. Agricultural Effects On Ground and Surface Waters: Research At The Edge of Science and Society = Iahs-aish P Agricultural Effects On Ground and Surface Waters: Research At The Edge of Science and Society = Iahs-aish. P. Agricultural Engineering 1997 = Vdi Bericht Agricultural Engineering 1997 = Vdi. Bericht. Agricultural Engineering = Agr Eng Agricultural Engineering = Agr. Eng. Agricultural Engineering Conference 1990 = Inst Eng A Agricultural Engineering Conference 1990 = Inst. Eng. A. Agricultural Engineering for Professionals = Vdi Bericht Agricultural Engineering for Professionals = Vdi. Bericht. Agricultural Engineering: Land-technik 2008 = Vdi Bericht Agricultural Engineering: Land-technik 2008 = Vdi. Bericht. Agricultural Ethics: Issues for The 21st Century = Asa Spec P Agricultural Ethics: Issues for The 21st Century = Asa. Spec. P. Agricultural Finance and Credit Infrastructure in Transition Economies = Oecd Proc Agricultural Finance and Credit Infrastructure in Transition Economies = Oecd. Proc. Agricultural Finance Review=Agr. Finance Rev. Agricultural Firm: Current Organizational and Managerial Issues = Quad Riv Ec Agricultural Firm: Current Organizational and Managerial Issues = Quad. Riv. Ec. Agricultural History = Agr Hist Agricultural History = Agr. Hist. Agricultural history = Agric Hist Agricultural History Review = Agr Hist Rev Agricultural History Review = Agr. Hist. Rev. Agricultural Impacts On Groundwater Quality = Aciar Proc Agricultural Impacts On Groundwater Quality = Aciar. Proc. Agricultural Information Bulletin USDA Forest Service = Agric. Inf. Bull. USDA For. Serv. Agricultural information development bulletin = Agric Inf Dev Bull Agricultural Marketing in Tropical Africa = Afr Stud Ctr Res Ser Agricultural Marketing in Tropical Africa = Afr. Stud. Ctr. Res. Ser. Agricultural Markets: Mechanisms, Failures, and Regulations = Contrib To Econ Anal Agricultural Markets: Mechanisms, Failures, and Regulations = Contrib. To. Econ. Anal. Agricultural Materials As Renewable Resources = Acs Sym Ser Agricultural Materials As Renewable Resources = Acs. Sym. Ser. Agricultural Meteorology = Agric. Meteorol. Agricultural Meteorology = Agr Meteorol Agricultural Meteorology = Agr. Meteorol. Agricultural Policies in China = Oecd Chin Glob Econ Agricultural Policies in China = Oecd. Chin. Glob. Econ. Agricultural Policy and The Environment = Cas Paper Agricultural Policy and The Environment = Cas. Paper. Agricultural Policy and The Environment = Polit Econ Forum Agricultural Policy and The Environment = Polit. Econ. Forum. Agricultural Policy Proceedings = Agr Policy Agricultural Policy Proceedings = Agr. Policy Agricultural Production = Agr Issues Policies Agricultural Production = Agr. Issues. Policies. Agricultural Record = Agr Rec Agricultural Record = Agr. Rec. Agricultural Research = Agr Res Agricultural Research = Agr. Res. Agricultural Research in An Era of Adjustment = Edi Semin S Agricultural Research in An Era of Adjustment = Edi. Semin. S. Agricultural Research Involving Technology, Economics and Ecology = Schr Eidg F Agricultural Research Involving Technology, Economics and Ecology = Schr. Eidg. F. Agricultural Research Service Publication = Agr Res Ser Sp Pub Agricultural Research Service Publication = Agr. Res. Ser. Sp. Pub. Agricultural Runoff, Coastal Engineering and Flooding = Environ Sci Eng Tech Agricultural Runoff, Coastal Engineering and Flooding = Environ. Sci. Eng. Tech. Agricultural Science in Finland = Agr Sci Finland Agricultural Science in Finland = Agr. Sci. Finland Agricultural Science Review = Agr Sci Rev Agricultural Science Review = Agr. Sci. Rev. Agricultural Sciences in China = Agric Sci China Agricultural Sciences in China = Agric. Sci. China Agricultural Sciences in China = Agr Sci China Agricultural Sciences in China = Agr. Sci. China Agricultural Standards: The Shape of The Global Food and Fiber System = Int Libr Environ Agr Agricultural Standards: The Shape of The Global Food and Fiber System = Int. Libr. Environ. Agr. Agricultural systems = Agric Syst Agricultural Systems = Agric. Syst. Agricultural Systems = Agr Syst Agricultural Systems = Agr. Syst. Agricultural Technologies for Market-led Development Opportunities in The 1990s = World Ban T Agricultural Technologies for Market-led Development Opportunities in The 1990s = World. Ban. T. Agricultural Technology in Sub-saharan Africa = World B Dis Agricultural Technology in Sub-saharan Africa = World. B. Dis. Agricultural Use of Groundwater = Econ Energy Environm Agricultural Use of Groundwater = Econ. Energy. Environm. Agricultural Uses of By-products and Wastes = Acs Sym Ser Agricultural Uses of By-products and Wastes = Acs. Sym. Ser. Agricultural Wastes = Agr Wastes Agricultural Wastes = Agr. Wastes Agricultural Water Management = Agric. Water Manage. Agricultural Water Management = Agr Water Manage Agricultural Water Management = Agr. Water Manage. Agricultura Tecnica = Agr Tec Agricultura Tecnica = Agr. Tec. Agriculture = Agriculture-london Agriculture = Agriculture-london. Agriculture and Agricultural Science Procedia = Agric Agric Sci Proc Agriculture and Agricultural Science Procedia = Agric. Agric. Sci. Proc. Agriculture and Economic Development in Europe Since 1870 = Routl Explor Econ Hi Agriculture and Economic Development in Europe Since 1870 = Routl. Explor. Econ. Hi. Agriculture and Environment = Agr Environ Agriculture and Environment = Agr. Environ. Agriculture and Forestry Bulletin = Agric. For. Bull. Agriculture and Human Values=Agr. Human Values Agriculture and Human Values = Agr Hum Values Agriculture and Human Values = Agr. Hum. Values Agriculture and human values = Agric Human Values Agriculture and Human Values = Agric Human Values Agriculture and Human Values = Agric. Human Values Agriculture And Human Values = Agric. Human Values Agriculture and Hydrology Applications of Remote Sensing = P Soc Photo-opt Ins Agriculture and Hydrology Applications of Remote Sensing = P. Soc. Photo-opt. Ins. Agriculture and Resources Quarterly=Agr. Resources Quart. Agriculture and The Environment: Bridging Food Production and Environmental Protection in Developing Countries = Asa Spec P Agriculture and The Environment: Bridging Food Production and Environmental Protection in Developing Countries = Asa. Spec. P. Agriculture and The Wto: Towards A New Theory of International Agricultural Trade Regulation = Elgar Int Econ Law Agriculture and The Wto: Towards A New Theory of International Agricultural Trade Regulation = Elgar. Int. Econ. Law. Agriculture Ecosystems and Environment = Agric. Ecosyst. Environ. Agriculture, Ecosystems and Environment = Agric. Ecosyst. Environ. Agriculture Ecosystems & Environment = Agr Ecosyst Environ Agriculture Ecosystems & Environment = Agr. Ecosyst. Environ. Agriculture Handbook = Agric. Handb. Agriculture in Ancient Greece = Skr Ut S In Agriculture in Ancient Greece = Skr. Ut. S. In. Agriculture in China and Oecd Countries = Oecd Proc Agriculture in China and Oecd Countries = Oecd Proc. Agriculture in Egypt = P Brit Acad Agriculture in Egypt = P. Brit. Acad. Agriculture in Northern Ireland = Agr Northern Ireland Agriculture in Northern Ireland = Agr. Northern Ireland Agriculture Issues and Policies = Agr Issues Policies Agriculture Issues and Policies = Agr. Issues Policies Agriculture Research and Technology = Agr Issues Policies Agriculture Research and Technology = Agr. Issues. Policies. Agriculture Series of The Commission of The European Communities = Agric S Cec Agriculture Series of The Commission of The European Communities = Agric. S. Cec. Agriculture Utilization of Urban and Industrial By-products = Asa Spec P Agriculture Utilization of Urban and Industrial By-products = Asa. Spec. P. Agri Hortique Genetica = Agr Hortique Genet Agri Hortique Genetica = Agr. Hortique Genet. Agri-practice = Agri-practice Agrobiological Management of Soils and Cropping Systems = Cirad Colloques Agrobiological Management of Soils and Cropping Systems = Cirad. Colloques. Agroborealis = Agroborealis Agrochimica = Agrochimica Agrociencia = Agrociencia Agrociencia = Agrociencia-mexico Agrociencia = Agrociencia-mexico. Agro-Ecosystems = Agro-Ecosyst. Agro-ecosystems = Agro-ecosystems Agro-food Chains and Networks for Development = Wag Ur Fron Agro-food Chains and Networks for Development = Wag. Ur. Fron. Agro Food Industry Hi-tech = Agro Food Ind Hi Tec Agro Food Industry Hi-tech = Agro Food Ind. Hi. Tec. Agroforestry and Animal Production for Human Welfare = Aciar Proc Agroforestry and Animal Production for Human Welfare = Aciar. Proc. Agroforestry and Sustainable Systems: Symposium Proceedings = Usda Rocky Agroforestry and Sustainable Systems: Symposium Proceedings = Usda. Rocky. Agroforestry Development On The Canadian Prairies = Agr Issues Policies Agroforestry Development On The Canadian Prairies = Agr. Issues. Policies. Agroforestry Systems = Agroforest Syst Agroforestry Systems = Agroforest. Syst. Agroforestry Systems = Agrofor. Syst. Agrokemia es Talajtan = Agrokem. Talajtan Agrokemia Es Talajtan = Agrokem Talajtan Agrokemia Es Talajtan = Agrokem. Talajtan Agrokhimiya = Agrokhimiya Agrologist = Agrologist Agronomia Costarricense = Agron Costarric Agronomia Costarricense = Agron. Costarric. Agronomia Mesoamericana=Agronomia Mesoamericana Agronomie = Agronomie Agronomie Tropicale = Agron Trop Agronomie Tropicale = Agron. Trop. Agronomy for Sustainable Development = Agron. Sustainable Dev. Agronomy for Sustainable Development = Agron Sustain Dev Agronomy for Sustainable Development = Agron. Sustain. Dev. Agronomy journal = Agron J Agronomy Journal = Agron J Agronomy Journal = Agron. J. Agronomy New Zealand 2007 = P Ag Soc Nz Agronomy New Zealand 2007 = P. Ag. Soc. Nz. Agronomy New Zealand 2008 = P Ag Soc Nz Agronomy New Zealand 2008 = P. Ag. Soc. Nz. Agronomy New Zealand, Proceedings = P Ag Soc Nz Agronomy New Zealand, Proceedings = P. Ag. Soc. Nz. Agronomy Research and Developments = Agron Res Dev Agronomy Research and Developments = Agron. Res. Dev. Agronomy Society of New Zealand (inc.) - Proceedings - Twenty-fourth Annual Conference, 1994 = P Ag Soc Nz Agronomy Society of New Zealand (inc.) - Proceedings - Twenty-fourth Annual Conference, 1994 = P. Ag. Soc. Nz. Agronomy Society of New Zealand - Proceedings, Twenty-eighth Annual Conference, 1998 = P Ag Soc Nz Agronomy Society of New Zealand - Proceedings, Twenty-eighth Annual Conference, 1998 = P. Ag. Soc. Nz. Agronomy Society of New Zealand - Proceedings, Twenty-fifth Annual Conference 1995/96 = P Ag Soc Nz Agronomy Society of New Zealand - Proceedings, Twenty-fifth Annual Conference 1995/96 = P. Ag. Soc. Nz. Agronomy Society of New Zealand - Proceedings, Twenty-ninth Annual Conference, 1999 = P Ag Soc Nz Agronomy Society of New Zealand - Proceedings, Twenty-ninth Annual Conference, 1999 = P. Ag. Soc. Nz. Agronomy Society of New Zealand Twenty-third Annual Conference, 1993 Proceedings = P Ag Soc Nz Agronomy Society of New Zealand Twenty-third Annual Conference, 1993 Proceedings = P. Ag. Soc. Nz. AGSO Journal of Australian Geology and Geophysics = AGSO J. Aust. Geol. Geophys. AGSO journal of Australian geology & geophysics = AGSO J Aust Geol Geophys Aguiaine / Societe d'etudes folkloriques du Centre-Ouest = Aguiaine Ägypten und Levante. Egypt and the Levant. Internationale Zeitschrift für ägyptische Archäologie und deren Nachbargebiete = ÄgLev AHA hospital technology series = AHA Hosp Technol Ser AHA Hospital Technology Series = AHA Hosp. Technol. Ser. Aharonov-bohm and Other Cyclic Phenomena = Springer Tr Mod Phys Aharonov-bohm and Other Cyclic Phenomena = Springer. Tr. Mod. Phys. Ahi Conference Proceedings = Ahi Conf Pr Ahi Conference Proceedings = Ahi Conf. Pr. AHIP Coverage = AHIP Cover A History of Auditing: The Changing Audit Process in Britain From The Nineteenth Century to The Present Day = Routl New Works Acct A History of Auditing: The Changing Audit Process in Britain From The Nineteenth Century to The Present Day = Routl. New. Works. Acct. AHME journal = AHME J AHME Journal = AHME J. Ahme Journal-association for Hospital Medical Education = Ahme J Ass Hos Med E Ahme Journal-association for Hospital Medical Education = Ahme J. Ass. Hos. Med. E. Ahot Be-Yisrael = Ahot Beyisrael. AHP journal / Association for Healthcare Philanthropy = AHP J Ai 2003: Advances in Artificial Intelligence = Lect Notes Artif Int Ai 2003: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Ai 2004: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ai 2004: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ai 2005: Advances in Artificial Intelligence = Lect Notes Artif Int Ai 2005: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Ai 2006: Advances in Artificial Intelligence, Proceedings = Lect Notes Comput Sc Ai 2006: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Ai 2007: Advances in Artificial Intelligence, Proceedings = Lect Notes Comput Sc Ai 2007: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Ai 2008: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ai 2008: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ai 2009: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ai 2009: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ai 2010: Advances in Artificial Intelligence = Lect Notes Artif Int Ai 2010: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Ai 88 = Lect Notes Artif Int Ai 88 = Lect. Notes. Artif. Int. Aiaa Education Series = Aiaa Educ Ser Aiaa Education Series = Aiaa Educ. Ser. Aiaa Journal = Aiaa J Aiaa Journal = Aiaa J. AIAA student journal. American Institute of Aeronautics and Astronautics = AIAA Stud J AIA Journal = AIA J. AIA journal. American Institute of Architects = AIA J Aia Journal-american Institute of Architects = Architecture-aia J Aia Journal-american Institute of Architects = Architecture-aia. J. Ai Applications = Ai Applications Ai Applications in Natural Resource Management = Ai Appl Nat Res Man Ai Applications in Natural Resource Management = Ai Appl. Nat. Res. Man. Ai-art Insight = Art Insight Ai-art Insight = Art. Insight Aias Occasional Publications Series = Aias Oc Pub Aias Occasional Publications Series = Aias Oc. Pub. Ai(asterisk)ia 2003: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ai(asterisk)ia 2003: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ai(asterisk)ia 2007: Artificial Intelligence and Human-oriented Computing = Lect Notes Comput Sc Ai(asterisk)ia 2007: Artificial Intelligence and Human-oriented Computing = Lect. Notes. Comput. Sc. Ai (asterisk) Ia 2009: Emergent Perspectives in Artificial Intelligence = Lect Notes Artif Int Ai (asterisk) Ia 2009: Emergent Perspectives in Artificial Intelligence = Lect. Notes. Artif. Int. Ai(asterisk)ia 99: Advances in Artificial Intelligence = Lect Notes Artif Int Ai(asterisk)ia 99: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Aibr-revista De Antropologia Iberoamericana = Aibr-rev Antropol Ib Aibr-revista De Antropologia Iberoamericana = Aibr-rev. Antropol. Ib. Aic '09: Proceedings of The 9th Wseas International Conference On Applied Informatics and Communications = Rec Adv Comput Eng Aic '09: Proceedings of The 9th Wseas International Conference On Applied Informatics and Communications = Rec. Adv. Comput. Eng. Aic: 9th Congress of The International Colour Association = Proc Spie Aic: 9th Congress of The International Colour Association = Proc. Spie. Aic: 9th Congress of The International Colour Association = P Soc Photo-opt Ins Aic: 9th Congress of The International Colour Association = P. Soc. Photo-opt. Ins. Aicam 2005 = Adv Mater Res-switz Aicam 2005 = Adv. Mater. Res-switz. Aicam 2005 = Adv Mat Res Aicam 2005 = Adv. Mat. Res. AICC economic review. Indian National Congress. All India Congress Committee = AICC Econ Rev Aic Conference Proceedings = Aic Conf P Aic Conference Proceedings = Aic Conf. P. Aiche Journal = Aiche J Aiche Journal = Aiche J. AIChE Journal = AIChE J. AIChE Journal = AlChE J. AIChE journal. American Institute of Chemical Engineers = AIChE J AIChE Symposium Series = AIChE Symp. Ser. Aiche Symposium Series = Aiche Sym S Aiche Symposium Series = Aiche Sym. S. AIChE Symposium Series = AlChE Symp. Ser. Aichi Gakuin Daigaku Shigakkai shi = Aichi Gakuin Daigaku Shigakkai Shi Aichi Gakuin Daigaku Shigakkai Shi (Aichi-Gakuin Journal of Dental Science) = Aichi Gakuin Daigaku Shigakkai Shi Aichi-Gakuin dental science = Aichi Gakuin Dent Sci Aichi-Gakuin Dental Science = Aichi Gakuin Dent. Sci. Ai Communications = Ai Commun Ai Communications = Ai Commun. A.I.D. evaluation news = AID Eval News Aid for Trade: Global and Regional Perspectives, 2nd World Report On Regional Integration = Un U Ser Regionalism Aid for Trade: Global and Regional Perspectives, 2nd World Report On Regional Integration = Un. U. Ser. Regionalism. Aid Impact and Poverty Reduction = Palgr Stud Gov Secur Aid Impact and Poverty Reduction = Palgr. Stud. Gov. Secur. Aiding and Aging = Contr St Ag Aiding and Aging = Contr. St. Ag. AIDoS news : bimonthly bulletin of the Italian Association for Women in Development. Associazione italiana donne per lo sviluppo = Aidos News AIDS action = AIDS Action AIDS Action policy brief = AIDS Action Policy Brief AIDS action update / AIDS Action Foundation = AIDS Action Update Aids: Activism and Alliances = Soc As Aids Aids: Activism and Alliances = Soc. As. Aids. Aids = Aids AIDS=AIDS;; AIDS = AIDS AIDS alert = AIDS Alert AIDS analysis Africa = AIDS Anal Afr AIDS analysis Asia = AIDS Anal Asia Aids and Aid: A Public Good Approach = Contrib Econ Aids and Aid: A Public Good Approach = Contrib. Econ. Aids and Behavior = Aids Behav Aids and Behavior = Aids Behav. AIDS and behavior = AIDS Behav Aids and Intravenous Drug Use : Future Directions for Community-based Prevention Research = Nida Res Mg Aids and Intravenous Drug Use : Future Directions for Community-based Prevention Research = Nida. Res. Mg. Aids and Womens Reproductive Health = Reprod Biol Aids and Womens Reproductive Health = Reprod. Biol. Aids : Anti-hiv Agents, Therapies, and Vaccines = Ann Ny Acad Sci Aids : Anti-hiv Agents, Therapies, and Vaccines = Ann. Ny. Acad. Sci. Aids Asia : voice of the Asian solidarity against AIDS = AIDS Asia Aidscaptions = Aidscaptions AIDS care = AIDS Care AIDS Care=AIDS Care;; AIDS Care = AIDS Care Aids Care-psychological and Socio-medical Aspects of Aids/hiv = Aids Care Aids Care-psychological and Socio-medical Aspects of Aids/hiv = Aids Care. AIDS clinical care = AIDS Clin Care AIDS clinical review = AIDS Clin Rev AIDS Clinical Review=AIDS Clin Rev;; AIDS Clinical Review = AIDS Clin. Rev. Aids, Drugs of Abuse, and The Neuroimmune Axis = Adv Exp Med Biol Aids, Drugs of Abuse, and The Neuroimmune Axis = Adv. Exp. Med. Biol. AIDSED newsletter : newsletter of the WHO/Unesco AIDS Education and Health Promotion Materials Exchange Centre for Asia and the Pacific = AIDSED Newsl Aids Education and Prevention = Aids Educ Prev Aids Education and Prevention = Aids Educ. Prev. AIDS Education and Prevention=AIDS Educ Prev;; AIDS Education and Prevention = AIDS Educ. Prev. AIDS education and prevention : official publication of the International Society for AIDS Education = AIDS Educ Prev Aids: Facing The Second Decade = Soc As Aids Aids: Facing The Second Decade = Soc. As. Aids. Aids: Foundations for The Future = Soc As Aids Aids: Foundations for The Future = Soc. As. Aids. AIDS health promotion exchange / World Health Organization, Global Programme on AIDS, Health Promotion Unit = AIDS Health Promot Exch AIDS illustrated = AIDS Illus AIDS information exchange / the United States Conference of Mayors = AIDS Inf Exch AIDS Institute newsletter. New York (State). AIDS Institute = AIDS Inst Newsl Aids Issues = Cur Think E Aids Issues = Cur. Think. E. AIDSlink : Eastern, Central & Southern Africa = AIDSlink AIDS (London, England) = AIDS Aids Patient Care = Aids Patient Care AIDS patient care = AIDS Patient Care Aids Patient Care and Stds = Aids Patient Care St Aids Patient Care and Stds = Aids Patient Care St. AIDS patient care and STDs = AIDS Patient Care STDS AIDS Patient Care and STDs = AIDS Patient Care STDS AIDS policy & law = AIDS Policy Law Aids & Public Policy Journal = Aids Public Policy J Aids & Public Policy Journal = Aids Public Policy J. AIDS & public policy journal = AIDS Public Policy J Aids Reader = Aids Read Aids Reader = Aids Read. AIDS research = AIDS Res AIDS Research = AIDS Res. Aids Research = Aids Res Hum Retrov Aids Research = Aids Res. Hum. Retrov. Aids Research and Human Retroviruses = Aids Res Hum Retrov Aids Research and Human Retroviruses = Aids Res. Hum. Retrov. AIDS research and human retroviruses = AIDS Res Hum Retroviruses AIDS Research and Human Retroviruses=AIDS Res Hum Retroviruses;; AIDS Research and Human Retroviruses = AIDS Res. Hum. Retroviruses AIDS research and therapy = AIDS Res Ther Aids : Responses, Interventions and Care = Soc As Aids Aids : Responses, Interventions and Care = Soc. As. Aids Aids Reviews = Aids Rev Aids Reviews = Aids Rev. AIDS reviews = AIDS Rev AIDS Reviews = AIDS Rev. Aids : Rights, Risk and Reason = Soc As Aids Aids : Rights, Risk and Reason = Soc. As. Aids AIDS & society = AIDS Soc AIDS/STD health promotion exchange = AIDS STD Health Promot Exch AIDS treatment news = AIDS Treat News AIDS updates = AIDS Updates AIDS watch = AIDS Watch AIDS weekly = AIDS Wkly AIDS weekly plus = AIDS Wkly Plus Aid, Trade, and Farm Policies = Winr Dev Ed Aid, Trade, and Farm Policies = Winr. Dev. Ed. Ai Edam-artificial Intelligence for Engineering Design Analysis and Manufacturing = Ai Edam Ai Edam-artificial Intelligence for Engineering Design Analysis and Manufacturing = Ai Edam. Aiel Series in Labour Economics = Aiel Ser Labour Econ Aiel Series in Labour Economics = Aiel Ser. Labour Econ. Aihaj = Aihaj AIHAJ = AIHAJ AIHAJ : a journal for the science of occupational and environmental health and safety = AIHAJ Aiha Journal = Aiha J Aiha Journal = Aiha J. AIHA Journal = AIHA J. Aiha Journal = Aiha J-j Sci Occup E Aiha Journal = Aiha J-j. Sci. Occup. E. AIHA journal : a journal for the science of occupational and environmental health and safety = AIHA J (Fairfax, Va) Ai*ia2005: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ai*ia2005: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ai*ia 99: Advances in Artificial Intelligence = Lect Notes Artif Int Ai*ia 99: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Aiie Transactions = Aiie T Aiie Transactions = Aiie T. Aija Law Library = Aija Law Lib Aija Law Library = Aija Law Lib. Aila Review = Aila Rev Aila Review = Aila Rev. Ai Magazine = Ai Mag Ai Magazine = Ai Mag. Aimr Industry Analysis Series = Aimr Ind Anal Ser Aimr Industry Analysis Series = Aimr Ind. Anal. Ser. Ain Shams medical journal = Ain Shams Med J Aip Conference Proceedings = Aip Conf Proc Aip Conference Proceedings = Aip Conf. Proc. AIP Conference Proceedings = AIP Conf. Proc. AIP Conference Proceedings = AIP Conf. Proc. AIPLA quarterly journal / American Intellectual Property Law Association = AIPLA Q J AIP Series in Computational and Applied Mathematical Physics = AIP Ser. Comput. Appl. Math. Phys. AIP Series in Modern Acoustics and Signal Processing = AIP Ser. Modern Acoust. Signal Process. Air and Waste = Air Waste Air and water pollution = Air Water Pollut Air and Water Pollution = Air Water Pollut Air and Water Pollution = Air Water Pollut. Air-assisted Spraying in Crop Protection = Br Crop Pr Air-assisted Spraying in Crop Protection = Br. Crop Pr. Airborne and In-water Underwater Imaging = P Soc Photo-opt Ins Airborne and In-water Underwater Imaging = P. Soc. Photo-opt. Ins. Airborne Astronomy Symposium On The Galactic Ecosystem: From Gas to Stars to Dust = Astr Soc P Airborne Astronomy Symposium On The Galactic Ecosystem: From Gas to Stars to Dust = Astr. Soc. P. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Iii = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Iii = P. Soc. Photo-opt. Ins. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Ii = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Ii = P. Soc. Photo-opt. Ins. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Iv = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Iv = P. Soc. Photo-opt. Ins. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications = P. Soc. Photo-opt. Ins. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Viii = Proc Spie Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Viii = Proc. Spie. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Vii = Proc Spie Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Vii = Proc. Spie. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Vii = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications Vii = P. Soc. Photo-opt. Ins. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications V = Proc Spie Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications V = Proc. Spie. Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications V = P Soc Photo-opt Ins Airborne Intelligence, Surveillance, Reconnaissance (isr) Systems and Applications V = P. Soc. Photo-opt. Ins. Airborne Laser Advanced Technology Ii = P Soc Photo-opt Ins Airborne Laser Advanced Technology Ii = P. Soc. Photo-opt. Ins. Airborne Laser Advanced Technology = P Soc Photo-opt Ins Airborne Laser Advanced Technology = P. Soc. Photo-opt. Ins. Airborne Multispectral Scanning for Forestry and Mapping ( With Emphasis On Meis ) : International Forum = For Can Pi Airborne Multispectral Scanning for Forestry and Mapping ( With Emphasis On Meis ) : International Forum = For. Can. Pi. Airborne Reconnaissance Xiv = P Soc Photo-opt Ins Airborne Reconnaissance Xiv = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xix = P Soc Photo-opt Ins Airborne Reconnaissance Xix = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xviii = P Soc Photo-opt Ins Airborne Reconnaissance Xviii = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xvii = P Soc Photo-opt Ins Airborne Reconnaissance Xvii = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xvi = P Soc Photo-opt Ins Airborne Reconnaissance Xvi = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xv = P Soc Photo-opt Ins Airborne Reconnaissance Xv = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxiii = Proc Spie Airborne Reconnaissance Xxiii = Proc. Spie. Airborne Reconnaissance Xxiii = P Soc Photo-opt Ins Airborne Reconnaissance Xxiii = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxii = P Soc Photo-opt Ins Airborne Reconnaissance Xxii = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxi = P Soc Photo-opt Ins Airborne Reconnaissance Xxi = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxiv = P Soc Photo-opt Ins Airborne Reconnaissance Xxiv = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xx = P Soc Photo-opt Ins Airborne Reconnaissance Xx = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxvii = P Soc Photo-opt Ins Airborne Reconnaissance Xxvii = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxvi = P Soc Photo-opt Ins Airborne Reconnaissance Xxvi = P. Soc. Photo-opt. Ins. Airborne Reconnaissance Xxv = P Soc Photo-opt Ins Airborne Reconnaissance Xxv = P. Soc. Photo-opt. Ins. Airborne Telescope Systems Ii = P Soc Photo-opt Ins Airborne Telescope Systems Ii = P. Soc. Photo-opt. Ins. Airborne Telescope Systems = P Soc Photo-opt Ins Airborne Telescope Systems = P. Soc. Photo-opt. Ins. Airbourne Reconnaissance Xiii = P Soc Photo-opt Ins Airbourne Reconnaissance Xiii = P. Soc. Photo-opt. Ins. Air Change Rate and Airtightness in Buildings = Am Soc Test Mater Air Change Rate and Airtightness in Buildings = Am. Soc. Test. Mater. Air Conditioning Systems: Performance, Environment and Energy Factors = Energ Sci Eng Tech Air Conditioning Systems: Performance, Environment and Energy Factors = Energ. Sci. Eng. Tech. Aircraft & Aerospace Asia-pacific = Aircr Aerosp Asia-pa Aircraft & Aerospace Asia-pacific = Aircr. Aerosp. Asia-pa. Aircraft Design = Aircr. Des. Aircraft Engine Controls: Design, System Analysis, and Health Monitoring = Aiaa Educ Ser Aircraft Engine Controls: Design, System Analysis, and Health Monitoring = Aiaa. Educ. Ser. Aircraft Engineering = Aircraft Eng Aircraft Engineering = Aircraft Eng. Aircraft Engineering = Aircr. Eng. Aircraft Engineering and Aerospace Technology = Aircr Eng Aerosp Tec Aircraft Engineering and Aerospace Technology = Aircr. Eng. Aerosp. Tec. Airea Research Series : Research Report = Airea Res S Airea Research Series : Research Report = Airea Res. S. Air Engineering = Air Eng Air Engineering = Air Eng. Airflow Performance of Building Envelopes, Components, and Systems = Am Soc Test Mater Airflow Performance of Building Envelopes, Components, and Systems = Am. Soc. Test. Mater. Air Force Civil Engineer = Air Force Civ Eng Air Force Civil Engineer = Air Force Civ. Eng. Airglow and Aurora = P Soc Photo-opt Ins Airglow and Aurora = P. Soc. Photo-opt. Ins. Airline Industry: Challenges in The 21st Century = Contrib Econ Airline Industry: Challenges in The 21st Century = Contrib. Econ. Airline Liability = Eur Air Law Assoc Airline Liability = Eur. Air. Law. Assoc. Air line pilot = Air Line Pilot Airlines, Airports, and Airspace: Economic and Infrastructure Analysis = Transport Res Rec Airlines, Airports, and Airspace: Economic and Infrastructure Analysis = Transport. Res. Rec. Air medical journal = Air Med J Air Medical Journal = Air Med. J. Air Monitoring and Detection of Chemical and Biological Agents Ii = P Soc Photo-opt Ins Air Monitoring and Detection of Chemical and Biological Agents Ii = P. Soc. Photo-opt. Ins. Air Monitoring and Detection of Chemical and Biological Agents = P Soc Photo-opt Ins Air Monitoring and Detection of Chemical and Biological Agents = P. Soc. Photo-opt. Ins. Air Pollution and Visibility Measurements = P Soc Photo-opt Ins Air Pollution and Visibility Measurements = P. Soc. Photo-opt. Ins. Air Pollution From Agricultural Operations Iii, Proceedings = Asae Publ Air Pollution From Agricultural Operations Iii, Proceedings = Asae. Publ. Air Pollution, Global Change and Forests in The New Millennium = Dev Environm Sci Air Pollution, Global Change and Forests in The New Millennium = Dev. Environm. Sci. Air Pollution in The 21st Century: Priority Issues and Policy = Stud Environ Sci Air Pollution in The 21st Century: Priority Issues and Policy = Stud. Environ. Sci. Air Pollution in The Ural Mountains = Nato Asi 2 Air Pollution in The Ural Mountains = Nato. Asi. 2. Air Pollution Ix = Adv Air Pollut Ser Air Pollution Ix = Adv. Air Pollut. Ser. Air Pollution Modeling and Its Application Ix = Nato Chal M Air Pollution Modeling and Its Application Ix = Nato. Chal. M. Air Pollution Modeling and Its Applications Viii = Nato-chal M Air Pollution Modeling and Its Applications Viii = Nato-chal. M. Air Pollution Modeling and Its Applications Xvii = Nato-chal M Air Pollution Modeling and Its Applications Xvii = Nato-chal. M. Air Pollution Modeling and Its Application Xiii = Nato Chal M Air Pollution Modeling and Its Application Xiii = Nato. Chal. M. Air Pollution Modeling and Its Application Xii = Nato Chal M Air Pollution Modeling and Its Application Xii = Nato. Chal. M. Air Pollution Modeling and Its Application Xix = Nato Sci Peace Secur Air Pollution Modeling and Its Application Xix = Nato. Sci. Peace. Secur. Air Pollution Modeling and Its Application X = Nato-chal M Air Pollution Modeling and Its Application X = Nato-chal. M. Air Pollution Modeling and Its Application Xvi = Nato-chal M Air Pollution Modeling and Its Application Xvi = Nato-chal. M. Air Pollution Modeling and Its Application Xx = Nato Sci Peace Sec B Air Pollution Modeling and Its Application Xx = Nato. Sci. Peace. Sec. B. Air Pollution Processes in Regional Scale = Nato Sci S Ss Iv Ear Air Pollution Processes in Regional Scale = Nato. Sci. S. Ss. Iv. Ear. Air Pollution Research Report = Air Poll R Air Pollution Research Report = Air Poll. R. Air Pollution Vi = Adv Air Pollut Ser Air Pollution Vi = Adv. Air Pollut. Ser. Air Pollution Vii = Adv Air Pollut Ser Air Pollution Vii = Adv. Air Pollut. Ser. Air Pollution Viii = Adv Air Pollut Ser Air Pollution Viii = Adv. Air Pollut. Ser. Air Pollution X = Adv Air Pollut Ser Air Pollution X = Adv. Air Pollut. Ser. Air Pollution Xi = Adv Air Pollut Ser Air Pollution Xi = Adv. Air Pollut. Ser. Air Pollution Xii = Adv Air Pollut Ser Air Pollution Xii = Adv. Air Pollut. Ser. Air Pollution Xiii = Wit Trans Ecol Envir Air Pollution Xiii = Wit. Trans. Ecol. Envir. Air Pollution Xiv = Wit Trans Ecol Envir Air Pollution Xiv = Wit. Trans. Ecol. Envir. Air Pollution Xvii = Wit Trans Ecol Envir Air Pollution Xvii = Wit. Trans. Ecol. Envir. Air Pollution Xvi = Wit Trans Ecol Envir Air Pollution Xvi = Wit. Trans. Ecol. Envir. Air Pollution Xv = Wit Trans Ecol Envir Air Pollution Xv = Wit. Trans. Ecol. Envir. Airport Analysis, Planning and Design: Demand, Capacity and Congestion = Transp Infrastruct-r Airport Analysis, Planning and Design: Demand, Capacity and Congestion = Transp. Infrastruct-r. Airports, Airspace, and Passenger Management = Transport Res Rec Airports, Airspace, and Passenger Management = Transport. Res. Rec. Air Progress = Air Prog Air Progress = Air Prog. Air Quality 2006 = Transport Res Rec Air Quality 2006 = Transport. Res. Rec. Air Quality and Comfort in Airliner Cabins = Am Soc Test Mater Air Quality and Comfort in Airliner Cabins = Am. Soc. Test. Mater. Air Quality, Atmosphere and Health = Air Qual. Atmos. Health Air Quality Control in Areas for Smokers and Nonsmokers = Vdi Bericht Air Quality Control in Areas for Smokers and Nonsmokers = Vdi. Bericht. Air Quality in Urban Environments = Iss Environ Sci Tech Air Quality in Urban Environments = Iss. Environ. Sci. Tech. Air Quality Monographs = Air Qual Mg Air Quality Monographs = Air Qual. Mg. Air & space Smithsonian = Air Space Air Toxics and Water Monitoring = P Soc Photo-opt Ins Air Toxics and Water Monitoring = P. Soc. Photo-opt. Ins. Air Traffic Control Association, Fall Conference Proceedings = Atca Conf P Air Traffic Control Association, Fall Conference Proceedings = Atca. Conf. P. Air Traffic Control Technologies Ii = P Soc Photo-opt Ins Air Traffic Control Technologies Ii = P. Soc. Photo-opt. Ins. Air Traffic Control Technologies = P Soc Photo-opt Ins Air Traffic Control Technologies = P. Soc. Photo-opt. Ins. Air Transport and The European Union: Europeanization and Its Limits = Palgrave Stud Eur Un Air Transport and The European Union: Europeanization and Its Limits = Palgrave. Stud. Eur. Un. Air Transportation Challenges: Airspace, Airports, and Access = Transport Res Rec Air Transportation Challenges: Airspace, Airports, and Access = Transport. Res. Rec. Air Transportation = Transport Res Rec Air Transportation = Transport. Res. Rec. Air University review (United States edition) = Air Univ Rev (US ed) Air & waste : journal of the Air & Waste Management Association = Air Waste Air, Water and Soil Quality Modelling for Risk and Impact Assessment = Nato Sci Peace Secur Air, Water and Soil Quality Modelling for Risk and Impact Assessment = Nato. Sci. Peace. Secur. Air Water and Soil Science and Technology = Air Water Soil Sci T Air Water and Soil Science and Technology = Air Water Soil Sci. T. Airway Inflammation = Res Clin Forums Airway Inflammation = Res. Clin. Forums. Airway Obstruction and Inflammation = Prog R Res Airway Obstruction and Inflammation = Prog. R. Res. Aitna. Quaderni di topografia antica = Aitna Ajalooline ajakiri (Tartu, Estonia : 1998) = Ajalooline Ajak Ajar-african Journal of Aids Research = Ajar-afr J Aids Res Ajar-african Journal of Aids Research = Ajar-afr. J. Aids Res. Ajia Keizai-journal of The Institute of Developing Economies- = Ajia Keizai Ajia Keizai-journal of The Institute of Developing Economies- = Ajia Keizai. Ajidd-american Journal On Intellectual and Developmental Disabilities = Ajidd-am J Intellect Ajidd-american Journal On Intellectual and Developmental Disabilities = Ajidd-am. J. Intellect. AJNR. American journal of neuroradiology = AJNR Am J Neuroradiol AJNR: American Journal of Neuroradiology = AJNR Am. J. Neuroradiol. AJNR. American Journal of Neuroradiology=AJNR Am J Neuroradiol;; A Journal of Church and State = J Church State A journal of Jewish medical ethics and halacha = J Jew Med Ethics Halacha AJR. American journal of roentgenology = AJR Am J Roentgenol AJR: American Journal of Roentgenology = AJR Am. J. Roentgenol. AJR. American Journal of Roentgenology=AJR Am J Roentgenol;; AJS; American journal of sociology = AJS AJS: American Journal of Sociology = AJS AJS review. Association for Jewish Studies = AJS Rev Ajs Review-the Journal of The Association for Jewish Studies = Ajs Rev Ajs Review-the Journal of The Association for Jewish Studies = Ajs Rev. Akademaike iatrike = Akad Iatr Akademie der Wissenschaften und der Literatur in Mainz. Abhandlungen der Geistes- und Sozialwissenschaftlichen Klasse = AbhMainz Akademija Nauka i Umjetnosti Bosne i Hercegovine = Akad. Nauka Umjet. Bosne Hercegov. Rad. Odjelj. Prirod. Mat. Nauka Akademija Nauka i Umjetnosti Bosne i Hercegovine = Akad. Nauka Umjet. Bosne Hercegov. Rad. Odjelj. Tehn. Nauka Akademiska Dzive = Akad Dzive Akademiya Nauk Armenii = Akad. Nauk Armenii Dokl. Akademiya Nauk Azerbay dzhana = Dokl. Akad. Nauk Azerbay dzhana Akademiya Nauk Gruzii = Soobshch. Akad. Nauk Gruzii Akademiya Nauk Latviiskoy SSR = Magnit. Gidrodinamika Akademiya Nauk Respubliki Armeniya = Izv. Akad. Nauk Respub. Armeniya Mekh. Akademiya Nauk Respubliki Kazakhstan = Akad. Nauk Respub. Kazakhstan Trudy Astrofiz. Inst. Akademiya Nauk Respubliki Kazakhstan = Vestnik Akad. Nauk Respub. Kazakhstan Akademiya Nauk Respubliki Kyrgyzstan = Izv. Akad. Nauk Respub. Kyrgyzstan Akademiya Nauk Respubliki Moldova = Izv. Akad. Nauk Respub. Moldova Fiz. Tekhn. Akademiya Nauk Respubliki Moldova = Izv. Akad. Nauk Respub. Moldova Mat. Akademiya Nauk Respubliki Tadzhikistan = Dokl. Akad. Nauk Respub. Tadzhikistan Akademiya Nauk Respubliki Uzbekistan = Uzbek. Mat. Zh. Akademiya Nauk Respubliki Uzbekistan = Voprosy Vychisl. i Prikl. Mat. Akademiya Nauk Ukrainy = Gibrid. Vychisl. Mashiny Kompleksy Akademiya Nauk Ukrainy = Kibernet. i Vychisl. Tekhn. Akademiya Nauk Ukrainy = Mat. Fiz. Neliney n. Mekh. Akademiya Nauk Ukrainy = Mat. Metody i Fiz.-Mekh. Polya Akademiya Nauk Ukrainy = Ocherki Istor. Estestvoznan. Tekhn. Akademiya Nauk Ukrainy = Otbor i Obrabotka Informatsii Akari, A Light to Illuminate The Misty Universe = Astr Soc P Akari, A Light to Illuminate The Misty Universe = Astr. Soc. P. Akkadica = Akkadica AKP Classics = AKP Class. Akron business and economic review = Akron Bus Econ Rev Akron Business and Economic Review = Akron Bus Econ Rev Akron Business and Economic Review = Akron Bus. Econ. Rev. Akron law review = Akron Law Rev Akroterion: quarterly for the Classics in South Africa = Akroterion Akten der Gesellschaft für griechische und hellenistische Rechts- geschichte = AGR Aktualni Zadaci Mehanizacije Poljoprivrede = Act Tasks Agric Eng Aktualni Zadaci Mehanizacije Poljoprivrede = Act. Tasks. Agric. Eng. Aktuelle Chirurgie = Aktuel Chir Aktuelle Chirurgie = Aktuel. Chir. Aktuelle Dermatologie = Aktuelle Derm Aktuelle Endokrinologie und Stoffwechsel = Aktuel Endokrinol Stoffwechsel Aktuelle Ernahrungsmedizin = Aktuel Ernahrungsmed Aktuelle Ernahrungsmedizin = Aktuel. Ernahrungsmed. Aktuelle Gerontologie = Aktuel Gerontol Aktuelle Gerontologie = Aktuel. Gerontol. Aktuelle Gerontologie = Aktuelle Gerontol Aktuelle Gerontologie = Aktuelle Gerontol. Aktuelle Neurologie = Aktuel Neurol Aktuelle Neurologie = Aktuel. Neurol. Aktuelle Oto-Rhino-Laryngologie = Aktuelle Otorhinolaryngol Aktuelle Oto-Rhino-Laryngologie = Aktuelle Otorhinolaryngol. Aktuelle Probleme Der Otorhinolaryngologie = Akt Prob Ot Aktuelle Probleme Der Otorhinolaryngologie = Akt. Prob. Ot. Aktuelle Probleme der Phoniatrie und Logopadie. Current problems in phoniatrics and logopedics. Problemes actuels de phoniatrie et de logopedie = Aktuel Probl Phoniatr Logop Aktuelle Probleme in Chirurgie und Orthopadie = Aktuelle Probl Chir Orthop Aktuelle Probleme in Chirurgie und Orthopadie = Aktuelle Probl. Chir. Orthop. Aktuelle Probleme in der Chirurgie = Aktuelle Probl Chir Aktuelle Probleme in der Chirurgie = Aktuelle Probl. Chir. Aktuelle Radiologie=Aktuelle Radiol;; Aktuelle Radiologie = Aktuelle Radiol Aktuelle Radiologie = Aktuelle Radiol. Aktuelle Rheumatologie = Aktuel Rheumatol Aktuelle Rheumatologie = Aktuel. Rheumatol. Aktuelle Traumatologie = Aktuelle Traumatol Aktuelle Traumatologie = Aktuelle Traumatol. Aktuelle Traumatologie = Aktuel Traumatol Aktuelle Traumatologie = Aktuel. Traumatol. Aktuelle Urologie = Aktuelle Urol Aktuelle Urologie = Aktuel Urol Aktuelle Urologie = Aktuel. Urol. Akusherstvo i ginekologiia = Akush Ginekol (Sofiia) Akusherstvo i Ginekologiia = Akush. Ginekol. (Sofiia) Akusherstvo I Ginekologiia=Akush Ginekol (Sofiia);; Akustische Beihefte = Akust Beih Akustische Beihefte = Akust. Beih. Akwesasne notes = Akwesasne Notes Akzente-zeitschrift Fur Literatur = Akzente-z Lit Akzente-zeitschrift Fur Literatur = Akzente-z. Lit. Al 2002: Advances in Artificial Intelligence = Lect Notes Artif Int Al 2002: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Alabama Agricultural Experiment Station Bulletin = Ala Agr Exp Sta Bull Alabama Agricultural Experiment Station Bulletin = Ala. Agr. Exp. Sta. Bull. Alabama Agricultural Experiment Station Circular = Ala Agr Exp Sta Circ Alabama Agricultural Experiment Station Circular = Ala. Agr. Exp. Sta. Circ. Alabama Agricultural Experiment Station Progress Report Series = Ala Agr Exp Sta Prog Alabama Agricultural Experiment Station Progress Report Series = Ala. Agr. Exp. Sta. Prog. Alabama dental review = Ala Dent Rev Alabama heritage = Ala Herit Alabama Historical Quarterly = Ala Hist Quart Alabama Historical Quarterly = Ala. Hist. Quart. Alabama Journal of Medical Sciences = Ala J Med Sci Alabama Journal of Medical Sciences = Ala. J. Med. Sci. Alabama law review = Ala Law Rev Alabama Marine Resources Bulletin = Ala Mar Resour Bull Alabama Marine Resources Bulletin = Ala. Mar. Resour. Bull. Alabama Medicine = Ala. Med. Alabama medicine : journal of the Medical Association of the State of Alabama = Ala Med Alabama Nurse = Ala. Nurse ALAFO; revista de la Asociacion Latinoamericana de Facultades de Odontologia = ALAFO ALAFO: Revista de la Asociacion Latinoamericana de Facultades de Odontologia = ALAFO al-'Arabi = Al-Arabi Al-arabiyya Monograph Series = Al Arabiyya Mon Ser Al-arabiyya Monograph Series = Al. Arabiyya. Mon. Ser. Alaska Agricultural and Forestry Experiment Station Bulletin = Alaska Afes Bull Alaska Agricultural and Forestry Experiment Station Bulletin = Alaska Afes. Bull. Alaska history (Anchorage, Alaska) = Alsk Hist Alaska journal (Juneau, Alaska : 1971) = Alaska J Alaska medicine = Alaska Med Alaska Medicine=Alaska Med;; Alaska Medicine = Alaska Med Alaska Medicine = Alaska Med. Alaska Nurse = Alaska Nurse Alaska Sea Grant Report = Alaska Sea Alaska statutes, 1962 : containing the general and permanent laws of the State of Alaska / Annotated, indexed, and printed by the Michie Company. Alaska = Alsk Statut 1962 Alsk Albany Birth Defects Symposium Volumes = Alb Bir Def Albany Birth Defects Symposium Volumes = Alb. Bir. Def. Albany law journal of science & technology = Albany Law J Sci Technol Albany law review = Albany Law Rev Albany Law Review = Albany Law Rev. Alba Regia: annales Musei Stephani Regis = Alba Regia Alba Regia. Annales Musei Stephani regis = AlbaRegia Albatrosses = Austral Nat Hist Ser Albatrosses = Austral. Nat. Hist. Ser. Alberta history = Alberta Hist Alberta History = Alberta Hist Alberta History = Alberta Hist. Alberta Journal of Educational Research = Alberta J Educ Res Alberta Journal of Educational Research = Alberta J. Educ. Res. Alberta law review = Alta Law Rev Alberta medical bulletin = Alberta Med Bull Alberta RN / Alberta Association of Registered Nurses = Alta RN Albert Camus: The Extremes and Equilibrium = False Title Albert Camus: The Extremes and Equilibrium = False. Title. Albert Einstein Century International Conference = Aip Conf Proc Albert Einstein Century International Conference = Aip. Conf. Proc. Albertus Magnus Blatter = Albertus Magnus Blaett Albion = Albion Albion Mathematics & Applications Series = Albion Math. Appl. Ser. Albrecht Von Graefes Archiv Fur Klinische Und Experimentelle Ophthalmologie = A Graef Arch Klin Ex Albrecht Von Graefes Archiv Fur Klinische Und Experimentelle Ophthalmologie = A. Graef. Arch. Klin. Ex. Albrecht von Graefes Archiv fur klinische und experimentelle Ophthalmologie. Albrecht von Graefe's archive for clinical and experimental ophthalmology = Albrecht Von Graefes Arch Klin Exp Ophthalmol Albrecht von Graefes Archiv fur Klinische und Experimentelle Ophthalmologie = Albrecht von Graefes Arch. Klin. Exp. Ophthalmol. Albrecht von Graefe's Archiv fur Ophthalmologie = Albrecht Von Graefes Arch Ophthalmol Alcatel Telecommunications Review = Alcatel Telecommun R Alcatel Telecommunications Review = Alcatel Telecommun. R. Alces 25 - Including Papers From The 25th North American Moose Conference and Workshop = Alces-n Am Moose Con Alces 25 - Including Papers From The 25th North American Moose Conference and Workshop = Alces-n. Am. Moose Con. Alces 28 - Including Papers From The 28th North American Moose Conference and Workshop = Alces N Am Alces 28 - Including Papers From The 28th North American Moose Conference and Workshop = Alces N. Am. Alces 29, Including Papers From The 29th North American Moose Conference and Workshop = Alces N Am Alces 29, Including Papers From The 29th North American Moose Conference and Workshop = Alces N. Am. Alces 32 - Including Papers From The 32nd North American Moose Conference and Workshop = Alces N Am Alces 32 - Including Papers From The 32nd North American Moose Conference and Workshop = Alces N. Am. Alces 33 - Including Papers From The 32nd North American Moose Conference and Workshop = Alces N Am Alces 33 - Including Papers From The 32nd North American Moose Conference and Workshop = Alces N. Am. Alces 34 = Alces-n Am Moose Con Alces 34 = Alces-n. Am. Moose. Con. Alces 35 - Including Papers From The 34th North American Conference and Workshop = Alces-n Am Moose Con Alces 35 - Including Papers From The 34th North American Conference and Workshop = Alces-n. Am. Moose. Con. Alces 37(1) = Alces-n Am Moose Con Alces 37(1) = Alces-n. Am. Moose. Con. Alces 37(2) = Alces-n Am Moose Con Alces 37(2) = Alces-n. Am. Moose. Con. Alces : North American Moose Conference and Workshop Proceedings = Alces N Am Alces : North American Moose Conference and Workshop Proceedings = Alces N. Am. Alces : North American Moose Conference and Workshop Proceedings = Alces-n Am Moose Con Alces : North American Moose Conference and Workshop Proceedings = Alces-n. Am. Moose Con. Alces Supplement No 1 1992 - Including Papers From The 3rd International Moose Symposium = Alces N Am Alces Supplement No 1 1992 - Including Papers From The 3rd International Moose Symposium = Alces N. Am. Alces, Vol 31, 1995 = Alces N Am Alces, Vol 31, 1995 = Alces. N. Am. Alces, Vol 34, No 2 - 1998 = Alces-n Am Moose Con Alces, Vol 34, No 2 - 1998 = Alces-n. Am. Moose. Con. Alcheringa = Alcheringa Alcohol=Alcohol;; Alcohol = Alcohol Alcohol and Alcoholism=Alcohol Alcohol;; Alcohol and Alcoholism = Alcohol Alcohol Alcohol and Alcoholism = Alcohol Alcohol. Alcohol and Alcoholism = Alcohol Alcoholism Alcohol and alcoholism (Oxford, Oxfordshire) = Alcohol Alcohol Alcohol and alcoholism (Oxford, Oxfordshire). Supplement. = Alcohol Alcohol Suppl Alcohol and Alcoholism. Supplement=Alcohol Alcohol Suppl;; Alcohol and Alcoholism. Supplement = Alcohol Alcohol Suppl. Alcohol and Cardiovascular Diseases = Novart Fdn Symp Alcohol and Cardiovascular Diseases = Novart. Fdn. Symp. Alcohol and drug research = Alcohol Drug Res Alcohol and Drug Research = Alcohol Drug Res Alcohol and Drug Research = Alcohol Drug Res. Alcohol and Wine in Health and Disease = Ann Ny Acad Sci Alcohol and Wine in Health and Disease = Ann. Ny. Acad. Sci. Alcohol, drugs, and driving : abstracts and reviews = Alcohol Drugs Driving Alcohol, Drugs of Abuse and Immunomodulation = Adv Biosci Alcohol, Drugs of Abuse and Immunomodulation = Adv. Biosci. Alcohol (Fayetteville, N.Y.) = Alcohol Alcohol health and research world = Alcohol Health Res World Alcohol Health and Research World=Alcohol Health Res World;; Alcohol Health and Research World = Alcohol Health Res. World Alcohol Health & Research World = Alcohol Health Res W Alcohol Health & Research World = Alcohol Health Res. W. Alcoholic Beverage Consumption and Health = Food Bev Consum Hlth Alcoholic Beverage Consumption and Health = Food. Bev. Consum. Hlth. Alcoholic Fuels = Chem Ind-ser Alcoholic Fuels = Chem. Ind-ser. Alcohol, Immunomodulation, and Aids = Prog Clin Biol Res Alcohol, Immunomodulation, and Aids = Prog. Clin. Biol. Res. Alcoholism : A Molecular Perspective = Nato Adv Sci I A-lif Alcoholism : A Molecular Perspective = Nato. Adv. Sci. I. A-lif. Alcoholism, clinical and experimental research = Alcohol Clin Exp Res Alcoholism-clinical and Experimental Research = Alcohol Clin Exp Res Alcoholism-clinical and Experimental Research = Alcohol. Clin. Exp. Res. Alcoholism, Clinical and Experimental Research=Alcohol Clin Exp Res;; Alcoholism, Clinical and Experimental Research = Alcohol. Clin. Exp. Res. Alcoholism treatment quarterly = Alcohol Treat Q Alcohol (New York) = Alcohol (N.Y.) Alcohol-related Cognitive Disorders: Research and Clinical Perspectives = Health Hum Dev Alcohol-related Cognitive Disorders: Research and Clinical Perspectives = Health. Hum. Dev. Alcohol Research and Health = Alcohol Res. Health Alcohol Research & Health = Alcohol Res Health Alcohol Research & Health = Alcohol Res. Health Alcohol research & health : the journal of the National Institute on Alcohol Abuse and Alcoholism = Alcohol Res Health Alcohol, Young Persons and Violence = Res Pub Pol Series Alcohol, Young Persons and Violence = Res. Pub. Pol. Series. Alcts Papers On Library Technical Services and Collections = Alcts P Lib Tech Ser Alcts Papers On Library Technical Services and Collections = Alcts P. Lib. Tech. Ser. al-Darah = Aldarah Al Darat = Al Darat Aldo-keto Reductases and Toxicant Metabolism = Acs Sym Ser Aldo-keto Reductases and Toxicant Metabolism = Acs. Sym. Ser. Aldosterone = Colloq Inse Aldosterone = Colloq. Inse. Aldrichimica Acta = Aldrichim Acta Aldrichimica Acta = Aldrichim. Acta Alea-estudos Neolatinos = Alea-estud Neolat Alea-estudos Neolatinos = Alea-estud. Neolat. Alebra and Coalgebra in Computer Science, Proceedings = Lect Notes Comput Sc Alebra and Coalgebra in Computer Science, Proceedings = Lect. Notes. Comput. Sc. Aleph-historical Studies in Science & Judaism = Aleph Aleph-historical Studies in Science & Judaism = Aleph. Alergia = Alergia Alexander The Great: Coinage, Finances, and Policy = Mem Am Philos Soc Alexander The Great: Coinage, Finances, and Policy = Mem. Am. Philos. Soc. Alexander The Great: Lessons in Strategy = Strateg Hist Alexander The Great: Lessons in Strategy = Strateg. Hist. Alexandria dental journal : ADJ = Alex Dent J Alexandria Dental Journal = Alex. Dent. J. Alexandria journal of pharmaceutical sciences = Alex J Pharm Sci Alexandru Myller Mathematical Seminar = Aip Conf Proc Alexandru Myller Mathematical Seminar = Aip. Conf. Proc. Alfred Benzon Symposium Series = Alfred Benzon Symp S Alfred Benzon Symposium Series = Alfred Benzon Symp. S. Alfred Doblin: Paradigms of Modernism = Publ I Ger Stud Alfred Doblin: Paradigms of Modernism = Publ. I. Ger. Stud. Alfred Marshall: Economist 1842-1924 = Great Think Econ Alfred Marshall: Economist 1842-1924 = Great. Think. Econ. Alfredo Casella = Stud Mus V Alfredo Casella = Stud. Mus. V. Alfred Tarski and The Vienna Circle = Vien Cir Inst Yearbk Alfred Tarski and The Vienna Circle = Vien. Cir. Inst. Yearbk. Alfvenic Structures: From The Sun to The Magnetosphere = Adv Space Res Alfvenic Structures: From The Sun to The Magnetosphere = Adv. Space. Res. Alfvenic Structures: From The Sun to The Magnetosphere = Adv Space Res-series Alfvenic Structures: From The Sun to The Magnetosphere = Adv. Space. Res-series. Algae Energy: Algae As A New Source of Biodiesel = Green Energy Technol Algae Energy: Algae As A New Source of Biodiesel = Green. Energy. Technol. Algal Toxins: Nature, Occurrence, Effect and Detection = Nato Scie Peace Secu Algal Toxins: Nature, Occurrence, Effect and Detection = Nato. Scie. Peace. Secu. Algebra and Applications = Algebra Appl Algebra and Applications = Algebra Appl. Algebra and Coalgebra in Computer Science, Proceedings = Lect Notes Comput Sc Algebra and Coalgebra in Computer Science, Proceedings = Lect. Notes. Comput. Sc. Algebra and Discrete Mathematics = Alg Dis Mthm Algebra and Discrete Mathematics = Alg. Dis. Mthm. Algebra and Its Applications = Contemp Math Algebra and Its Applications = Contemp. Math. Algebra and Logic = Algebra and Logic Algebra and Logic = Algebr Log+ Algebra and Logic = Algebr. Log+.+ Algebra and Number Theory = Lect Notes Pure Appl Algebra and Number Theory = Lect. Notes. Pure. Appl. Algebra, Arithmetic, and Geometry: in Honor of Yu I Manin, Vol I = Prog Math Algebra, Arithmetic, and Geometry: in Honor of Yu I Manin, Vol I = Prog. Math. Algebra, Arithmetic, and Geometry: in Hounor of Yu I Mani, Vol Ii = Prog Math Algebra, Arithmetic, and Geometry: in Hounor of Yu I Mani, Vol Ii = Prog. Math. Algebra Berichte = Algebra Ber. Algebra Colloquium = Algebra Colloq. Algebra Colloquium = Algebr Colloq Algebra Colloquium = Algebr. Colloq. Algebra, Geometry and Their Interactions = Contemp Math Algebra, Geometry and Their Interactions = Contemp. Math. Algebraic and Arithmetic Theory of Quadratic Forms, Proceedings = Contemp Math Algebraic and Arithmetic Theory of Quadratic Forms, Proceedings = Contemp. Math. Algebraic and Coalgebraic Methods in The Mathematics of Program Construction = Lect Notes Comput Sc Algebraic and Coalgebraic Methods in The Mathematics of Program Construction = Lect. Notes. Comput. Sc. Algebraic and Geometric Combinatorics = Contemp Math Algebraic and Geometric Combinatorics = Contemp. Math. Algebraic and Geometric Methods in Mathematical Physics = Math Phys S Algebraic and Geometric Methods in Mathematical Physics = Math. Phys. S. Algebraic and Geometric Topology = Algebr Geom Topol Algebraic and Geometric Topology = Algebr. Geom. Topol. Algebraic and Logic Programming = Lect Notes Comput Sc Algebraic and Logic Programming = Lect. Notes. Comput. Sc. Algebraic and Logic Programming / = Lect Notes Comput Sc Algebraic and Logic Programming / = Lect. Notes. Comput. Sc. Algebraic and Proof-theoretic Aspects of Non-classical Logics = Lect Notes Artif Int Algebraic and Proof-theoretic Aspects of Non-classical Logics = Lect. Notes. Artif. Int. Algebraic and Topological Dynamics = Contemp Math Algebraic and Topological Dynamics = Contemp. Math. Algebraic Biology, Proceedings = Lect Notes Comput Sc Algebraic Biology, Proceedings = Lect. Notes. Comput. Sc. Algebraic Coding = Lect Notes Comput Sc Algebraic Coding = Lect. Notes. Comput. Sc. Algebraic Coding Theory and Information Theory = Dimacs Ser Discret M Algebraic Coding Theory and Information Theory = Dimacs. Ser. Discret. M. Algebraic Combinatorics = Universitext Algebraic Combinatorics = Universitext. Algebraic Computing in Control = Lect Notes Contr Inf Algebraic Computing in Control = Lect. Notes. Contr. Inf. Algebraic Curves and Cryptography = Fields I Commun Algebraic Curves and Cryptography = Fields. I. Commun. Algebraic Cycles, Sheaves, Shtukas, and Moduli = Trends Math Algebraic Cycles, Sheaves, Shtukas, and Moduli = Trends. Math. Algebraic Frames for The Perception-action Cycle, Proceedings = Lect Notes Comput Sc Algebraic Frames for The Perception-action Cycle, Proceedings = Lect. Notes. Comput. Sc. Algebraic Function Fields and Codes, Second Edition = Grad Texts Math Algebraic Function Fields and Codes, Second Edition = Grad. Texts. Math. Algebraic Geometry and Geometric Modeling = Math Vis Algebraic Geometry and Geometric Modeling = Math. Vis. Algebraic Geometry and Geometric Modeling = Math Visual Algebraic Geometry and Geometric Modeling = Math. Visual. Algebraic Geometry and Its Applications = A Mathemat Algebraic Geometry and Its Applications = A. Mathemat. Algebraic Geometry and Related Topics = Conf Pr Lect Not Alg Algebraic Geometry and Related Topics = Conf. Pr. Lect. Not. Alg. Algebraic Geometry = Contemp Math Algebraic Geometry = Contemp. Math. Algebraic Geometry = Lect Notes Math Algebraic Geometry = Lect. Notes. Math. Algebraic Geometry = Lect Notes Pure Appl Algebraic Geometry = Lect. Notes. Pure. Appl. Algebraic Groups and Lie Groups With Few Factors = Lect Notes Math Algebraic Groups and Lie Groups With Few Factors = Lect. Notes. Math. Algebraic Groups and Their Representations = Nato Adv Sci I C-mat Algebraic Groups and Their Representations = Nato. Adv. Sci. I. C-mat. Algebraic Informatics = Lect Notes Comput Sc Algebraic Informatics = Lect. Notes. Comput. Sc. Algebraic Methodology and Software Technology = Lect Notes Comput Sc Algebraic Methodology and Software Technology = Lect. Notes. Comput. Sc. Algebraic Methodology and Software Technology, Proceedings = Lect Notes Comput Sc Algebraic Methodology and Software Technology, Proceedings = Lect. Notes. Comput. Sc. Algebraic Methodology and Software Technology: Proceedings = Lect Notes Comput Sc Algebraic Methodology and Software Technology: Proceedings = Lect. Notes. Comput. Sc. Algebraic Methods for Nonlinear Control Systems, Second Edition = Commun Control Eng Algebraic Methods for Nonlinear Control Systems, Second Edition = Commun. Control Eng. Algebraic Methods in Cryptography = Contemp Math Algebraic Methods in Cryptography = Contemp. Math. Algebraic Methods in Physics = Crm Ser Math Phys Algebraic Methods in Physics = Crm. Ser. Math. Phys. Algebraic Methods in Statistics and Probability Ii = Contemp Math Algebraic Methods in Statistics and Probability Ii = Contemp. Math. Algebraic Methods : Theory, Tools and Applications = Lect Notes Comput Sc Algebraic Methods : Theory, Tools and Applications = Lect. Notes. Comput. Sc. Algebraic Model Theory = Nato Adv Sci I C-mat Algebraic Model Theory = Nato. Adv. Sci. I. C-mat. Algebraic Patching = Springer Monogr Math Algebraic Patching = Springer. Monogr. Math. Algebraic Structures and Moduli Spaces = Crm Proc & Lect Note Algebraic Structures and Moduli Spaces = Crm. Proc. &. Lect. Note. Algebraic Structures and Their Representations = Contemp Math Algebraic Structures and Their Representations = Contemp. Math. Algebraic Theory of Locally Nilpotent Derivations = Encycl Math Sci Algebraic Theory of Locally Nilpotent Derivations = Encycl. Math. Sci. Algebraic Topology = Ems Textb Math Algebraic Topology = Ems. Textb. Math. Algebraic Topology : Homotopy and Group Cohomology = Lect Notes Math Algebraic Topology : Homotopy and Group Cohomology = Lect. Notes. Math. Algebraic Topology: New Trends in Localization and Periodicity = Prog Math Algebraic Topology: New Trends in Localization and Periodicity = Prog. Math. Algebraic Topology Poznan 1989 = Lect Notes Math Algebraic Topology Poznan 1989 = Lect. Notes. Math. Algebraic Topology: The Abel Symposium 2007 = Abel Symp Algebraic Topology: The Abel Symposium 2007 = Abel Symp. Algebraic Transformation Groups and Algebraic Varieties = Enc Mat Sci Algebraic Transformation Groups and Algebraic Varieties = Enc. Mat. Sci. Algebraic Transformation Groups and Algebraic Varieties = Encycl Math Sci Algebraic Transformation Groups and Algebraic Varieties = Encycl. Math. Sci. Algebra, Logic and Applications = Algebra Logic Appl. Algebra, Logic and Applications = Alg Log App Algebra, Logic and Applications = Alg. Log. App. Algebra, Meaning, and Computation = Lect Notes Comput Sc Algebra, Meaning, and Computation = Lect. Notes. Comput. Sc. Algebra & Number Theory = Algebr Number Theory Algebra & Number Theory = Algebr. Number Theory Algebras and Orders = Nato Adv Sci Inst Se Algebras and Orders = Nato. Adv. Sci. Inst. Se. Algebras and Representation Theory = Algebr Represent Th Algebras and Representation Theory = Algebr. Represent. Th. Algebras, Groups and Geometries = Algebras Groups Geom. Algebras, Representations and Applications = Contemp Math Algebras, Representations and Applications = Contemp. Math. Algebras, Rings and Modules, Vol 2 = Math Appl Algebras, Rings and Modules, Vol 2 = Math. Appl. Algebra Universalis = Algebra Univ Algebra Universalis = Algebra Univ. Algebra Universalis = Algebra Universalis Algebra Universalis = Algebr Univ Algebra Universalis = Algebr. Univ. Algebra, Vol Ii: Fields With Structure, Algebras and Advanced Topics = Universitext Algebra, Vol Ii: Fields With Structure, Algebras and Advanced Topics = Universitext. Algerie medicale = Alger Medicale Al-ghazali and The Qur'an: One Book, Many Meanings = Cult Civiliz Mid E Al-ghazali and The Qur'an: One Book, Many Meanings = Cult. Civiliz. Mid. E. Al-ghazali, Averroes and The Interpretation of The Qur'an: Common Sense and Philosophy in Islam = Cult Civiliz Mid E Al-ghazali, Averroes and The Interpretation of The Qur'an: Common Sense and Philosophy in Islam = Cult. Civiliz. Mid. E. Alginates: Biology and Applications = Microbiol Monogr Alginates: Biology and Applications = Microbiol. Monogr. Algological studies = Arch Hydrobiol Suppl Algol Stud Algonquian and Iroquoian Linguistics Memoirs = Algonq Iroq Linguist Algonquian and Iroquoian Linguistics Memoirs = Algonq. Iroq. Linguist. Algorithm and Computation, Proceedings = Lect Notes Comput Sc Algorithm and Computation, Proceedings = Lect. Notes. Comput. Sc. Algorithm Engineering and Experimentation = Lect Notes Comput Sc Algorithm Engineering and Experimentation = Lect. Notes. Comput. Sc. Algorithm Engineering and Experiments = Lect Notes Comput Sc Algorithm Engineering and Experiments = Lect. Notes. Comput. Sc. Algorithm Engineering: Bridging The Gap Between Algorithm Theory and Practice = Lect Notes Comput Sc Algorithm Engineering: Bridging The Gap Between Algorithm Theory and Practice = Lect. Notes. Comput. Sc. Algorithm Engineering = Lect Notes Comput Sc Algorithm Engineering = Lect. Notes. Comput. Sc. Algorithm for Synthetic Aperture Radar Imagery X = Proc Spie Algorithm for Synthetic Aperture Radar Imagery X = Proc. Spie. Algorithm for Synthetic Aperture Radar Imagery X = P Soc Photo-opt Ins Algorithm for Synthetic Aperture Radar Imagery X = P. Soc. Photo-opt. Ins. Algorithmica = Algorithmica Algorithmica = Algorithmica Algorithmic Applications in Management, Proceedings = Lect Notes Comput Sc Algorithmic Applications in Management, Proceedings = Lect. Notes. Comput. Sc. Algorithmic Aspects in Information and Management = Lect Notes Comput Sc Algorithmic Aspects in Information and Management = Lect. Notes. Comput. Sc. Algorithmic Aspects in Information and Management, Proceedings = Lect Notes Comput Sc Algorithmic Aspects in Information and Management, Proceedings = Lect. Notes. Comput. Sc. Algorithmic Aspects of Wireless Sensor Networks = Lect Notes Comput Sc Algorithmic Aspects of Wireless Sensor Networks = Lect. Notes. Comput. Sc. Algorithmic Beauty of Sea Shells, Fourth Edition = Virtual Lab Algorithmic Beauty of Sea Shells, Fourth Edition = Virtual. Lab. Algorithmic Bioprocesses = Nat Comp Ser Algorithmic Bioprocesses = Nat. Comp. Ser. Algorithmic Decision Theory, Proceedings = Lect Notes Artif Int Algorithmic Decision Theory, Proceedings = Lect. Notes. Artif. Int. Algorithmic Foundation of Robotics Vii = Springer Trac Adv Ro Algorithmic Foundation of Robotics Vii = Springer. Trac. Adv. Ro. Algorithmic Foundation of Robotics Vii = Spr Tra Adv Robot Algorithmic Foundation of Robotics Vii = Spr. Tra. Adv. Robot. Algorithmic Foundations of Robotics Ix = Springer Trac Adv Ro Algorithmic Foundations of Robotics Ix = Springer. Trac. Adv. Ro. Algorithmic Foundations of Robotics Ix = Springer Tracts Adv Algorithmic Foundations of Robotics Ix = Springer. Tracts. Adv. Algorithmic Foundations of Robotics Viii = Springer Trac Adv Ro Algorithmic Foundations of Robotics Viii = Springer. Trac. Adv. Ro. Algorithmic Foundations of Robotics Viii = Spr Tra Adv Robot Algorithmic Foundations of Robotics Viii = Spr. Tra. Adv. Robot. Algorithmic Foundations of Robotics Vi = Springer Trac Adv Ro Algorithmic Foundations of Robotics Vi = Springer. Trac. Adv. Ro. Algorithmic Foundations of Robotics Vi = Springer Tracts Adv Algorithmic Foundations of Robotics Vi = Springer. Tracts. Adv. Algorithmic Foundations of Robotics Vi = Spr Tra Adv Robot Algorithmic Foundations of Robotics Vi = Spr. Tra. Adv. Robot. Algorithmic Foundations of Robotics V = Springer Trac Adv Ro Algorithmic Foundations of Robotics V = Springer. Trac. Adv. Ro. Algorithmic Foundations of Robotics V = Spr Tra Adv Robot Algorithmic Foundations of Robotics V = Spr. Tra. Adv. Robot. Algorithmic Game Theory = Lect Notes Comput Sc Algorithmic Game Theory = Lect. Notes. Comput. Sc. Algorithmic Game Theory, Proceedings = Lect Notes Comput Sc Algorithmic Game Theory, Proceedings = Lect. Notes. Comput. Sc. Algorithmic Learning Theory = Lect Notes Artif Int Algorithmic Learning Theory = Lect. Notes. Artif. Int. Algorithmic Learning Theory, Proceedings = Lect Notes Artif Int Algorithmic Learning Theory, Proceedings = Lect. Notes. Artif. Int. Algorithmic Lie Theory for Solving Ordinary Differential Equations = Monogr Txb Pure Appl Algorithmic Lie Theory for Solving Ordinary Differential Equations = Monogr. Txb. Pure. Appl. Algorithmic Methods for Railway Optimization = Lect Notes Comput Sc Algorithmic Methods for Railway Optimization = Lect. Notes. Comput. Sc. Algorithmic Number Theory = Lect Notes Comput Sc Algorithmic Number Theory = Lect. Notes. Comput. Sc. Algorithmic Number Theory, Prceedings = Lect Notes Comput Sc Algorithmic Number Theory, Prceedings = Lect. Notes. Comput. Sc. Algorithmic Number Theory, Proceedings = Lect Notes Comput Sc Algorithmic Number Theory, Proceedings = Lect. Notes. Comput. Sc. Algorithmic Probability and Combinatorics = Contemp Math Algorithmic Probability and Combinatorics = Contemp. Math. Algorithmic Problems in Groups and Semigroups = Trends Math Algorithmic Problems in Groups and Semigroups = Trends. Math. Algorithmic Randomness and Complexity = Theor Appl Comput Algorithmic Randomness and Complexity = Theor. Appl. Comput. Algorithmics of Large and Complex Networks: Design, Analysis, and Simulation = Lect Notes Comput Sc Algorithmics of Large and Complex Networks: Design, Analysis, and Simulation = Lect. Notes. Comput. Sc. Algorithms and Applications = Lect Notes Comput Sc Algorithms and Applications = Lect. Notes. Comput. Sc. Algorithms and Architectures for Parallel Processing, Proceedings = Lect Notes Comput Sc Algorithms and Architectures for Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Architectures for Parallel Processing, Pt 1, Proceedings = Lect Notes Comput Sc Algorithms and Architectures for Parallel Processing, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Architectures for Parallel Processing, Pt 2, Proceedings = Lect Notes Comput Sc Algorithms and Architectures for Parallel Processing, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Architectures for Real-time Control = Ifac Work S Algorithms and Architectures for Real-time Control = Ifac. Work. S. Algorithms and Architectures of Artificial Intelligence = Front Artif Intel Ap Algorithms and Architectures of Artificial Intelligence = Front. Artif. Intel. Ap. Algorithms and Classification in Combinatorial Group Theory = Math Sci R Algorithms and Classification in Combinatorial Group Theory = Math. Sci. R. Algorithms and Combinatorics = Algorithms Comb Algorithms and Combinatorics = Algorithms Comb. Algorithms and Combinatorics = Algorithms Combin. Algorithms and Complexity = Lect Notes Comput Sc Algorithms and Complexity = Lect. Notes. Comput. Sc. Algorithms and Complexity, Proceedings = Lect Notes Comput Sc Algorithms and Complexity, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Computation in Mathematics = Algorithm Comp Math Algorithms and Computation in Mathematics = Algorithm. Comp. Math. Algorithms and Computation in Mathematics = Algorithms Comput. Math. Algorithms and Computation = Lect Notes Comput Sc Algorithms and Computation = Lect. Notes. Comput. Sc. Algorithms and Computation, Proceedings = Lect Notes Comput Sc Algorithms and Computation, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Computations = Lect Notes Comput Sc Algorithms and Computations = Lect. Notes. Comput. Sc. Algorithms and Data Structures = Lect Notes Comput Sc Algorithms and Data Structures = Lect. Notes. Comput. Sc. Algorithms and Data Structures / = Lect Notes Comput Sc Algorithms and Data Structures / = Lect. Notes. Comput. Sc. Algorithms and Data Structures, Proceedings = Lect Notes Comput Sc Algorithms and Data Structures, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Models for The Web-graph = Lect Notes Comput Sc Algorithms and Models for The Web-graph = Lect. Notes. Comput. Sc. Algorithms and Models for The Web-graph, Proceedings = Lect Notes Comput Sc Algorithms and Models for The Web-graph, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Models for The Web-graphs, Proceedings = Lect Notes Comput Sc Algorithms and Models for The Web-graphs, Proceedings = Lect. Notes. Comput. Sc. Algorithms and Principles of Non-photorealistic Graphics: Artistic Rendering and Cartoon Animation = Adv Top Sci Tech Chi Algorithms and Principles of Non-photorealistic Graphics: Artistic Rendering and Cartoon Animation = Adv. Top. Sci. Tech. Chi. Algorithms and Systems for Optical Information Processing Iv = P Soc Photo-opt Ins Algorithms and Systems for Optical Information Processing Iv = P. Soc. Photo-opt. Ins. Algorithms and Systems for Optical Information Processing Vi = P Soc Photo-opt Ins Algorithms and Systems for Optical Information Processing Vi = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral and Ultraspectral Imagery Ix = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral and Ultraspectral Imagery Ix = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral and Ultraspectral Imagery Ix = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral and Ultraspectral Imagery Ix = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Viii = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Viii = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Viii = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Viii = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiii = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiii = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiii = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiii = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xii Pts 1 and 2 = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xii Pts 1 and 2 = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xii Pts 1 and 2 = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xii Pts 1 and 2 = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xi = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xi = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xi = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xi = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiv = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiv = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiv = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xiv = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery X = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery X = P. Soc. Photo-opt. Ins. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvii = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvii = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvi = Proc Spie Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvi = Proc. Spie. Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvi = P Soc Photo-opt Ins Algorithms and Technologies for Multispectral, Hyperspectral, and Ultraspectral Imagery Xvi = P. Soc. Photo-opt. Ins. Algorithms, Architectures and Information Systems Security = Stat Sci Int Res Algorithms, Architectures and Information Systems Security = Stat. Sci. Int. Res. Algorithms, Devices, and Systems for Optical Information Processing Iii = P Soc Photo-opt Ins Algorithms, Devices, and Systems for Optical Information Processing Iii = P. Soc. Photo-opt. Ins. Algorithms, Devices, and Systems for Optical Information Processing = Proc Spie Algorithms, Devices, and Systems for Optical Information Processing = Proc. Spie. Algorithms, Devices, and Systems for Optical Information Processing = P Soc Photo-opt Ins Algorithms, Devices, and Systems for Optical Information Processing = P. Soc. Photo-opt. Ins. Algorithms-esa 2002, Proceedings = Lect Notes Comput Sc Algorithms-esa 2002, Proceedings = Lect. Notes. Comput. Sc. Algorithms - Esa 2003, Proceedings = Lect Notes Comput Sc Algorithms - Esa 2003, Proceedings = Lect. Notes. Comput. Sc. Algorithms Esa 2004, Proceedings = Lect Notes Comput Sc Algorithms Esa 2004, Proceedings = Lect. Notes. Comput. Sc. Algorithms - Esa 2005 = Lect Notes Comput Sc Algorithms - Esa 2005 = Lect. Notes. Comput. Sc. Algorithms - Esa 2006, Proceedings = Lect Notes Comput Sc Algorithms - Esa 2006, Proceedings = Lect. Notes. Comput. Sc. Algorithms - Esa 2007, Proceedings = Lect Notes Comput Sc Algorithms - Esa 2007, Proceedings = Lect. Notes. Comput. Sc. Algorithms - Esa 2008 = Lect Notes Comput Sc Algorithms - Esa 2008 = Lect. Notes. Comput. Sc. Algorithms - Esa 2009, Proceedings = Lect Notes Comput Sc Algorithms - Esa 2009, Proceedings = Lect. Notes. Comput. Sc. Algorithms-esa 2010 = Lect Notes Comput Sc Algorithms-esa 2010 = Lect. Notes. Comput. Sc. Algorithms-esa 2010, Pt Ii = Lect Notes Comput Sc Algorithms-esa 2010, Pt Ii = Lect. Notes. Comput. Sc. Algorithms - Esa'99 = Lect Notes Comput Sc Algorithms - Esa'99 = Lect. Notes. Comput. Sc. Algorithms for Continuous Optimization = Nato Adv Sci Inst Se Algorithms for Continuous Optimization = Nato. Adv. Sci. Inst. Se. Algorithms for Fuzzy Clustering: Methods in C-means Clustering With Applications = Stud Fuzz Soft Comp Algorithms for Fuzzy Clustering: Methods in C-means Clustering With Applications = Stud. Fuzz. Soft. Comp. Algorithms for Large Scale Linear Algebraic Systems = Nato Adv Sci I C-mat Algorithms for Large Scale Linear Algebraic Systems = Nato. Adv. Sci. I. C-mat. Algorithms for Memory Hierarchies = Lect Notes Comput Sc Algorithms for Memory Hierarchies = Lect. Notes. Comput. Sc. Algorithms for Molecular Biology = Algorithm Mol Biol Algorithms for Molecular Biology = Algorithm. Mol. Biol. Algorithms for molecular biology : AMB = Algorithms Mol Biol Algorithms for Multispectral and Hyperspectral Imagery Iii = P Soc Photo-opt Ins Algorithms for Multispectral and Hyperspectral Imagery Iii = P. Soc. Photo-opt. Ins. Algorithms for Multispectral and Hyperspectral Imagery Ii = P Soc Photo-opt Ins Algorithms for Multispectral and Hyperspectral Imagery Ii = P. Soc. Photo-opt. Ins. Algorithms for Multispectral and Hyperspectral Imagery Iv = P Soc Photo-opt Ins Algorithms for Multispectral and Hyperspectral Imagery Iv = P. Soc. Photo-opt. Ins. Algorithms for Multispectral and Hyperspectral Imagery = P Soc Photo-opt Ins Algorithms for Multispectral and Hyperspectral Imagery = P. Soc. Photo-opt. Ins. Algorithms for Multispectral and Hyperspectral Imagery V = Proc Spie Algorithms for Multispectral and Hyperspectral Imagery V = Proc. Spie. Algorithms for Multispectral and Hyperspectral Imagery V = P Soc Photo-opt Ins Algorithms for Multispectral and Hyperspectral Imagery V = P. Soc. Photo-opt. Ins. Algorithms for Multispectral, Hyperspectral and Ultraspectral Imagery Vii = Proc Spie Algorithms for Multispectral, Hyperspectral and Ultraspectral Imagery Vii = Proc. Spie. Algorithms for Multispectral, Hyperspectral and Ultraspectral Imagery Vii = P Soc Photo-opt Ins Algorithms for Multispectral, Hyperspectral and Ultraspectral Imagery Vii = P. Soc. Photo-opt. Ins. Algorithms for Multispectral, Hyperspectral, and Ultraspectral Imagery Vi = Proc Spie Algorithms for Multispectral, Hyperspectral, and Ultraspectral Imagery Vi = Proc. Spie. Algorithms for Multispectral, Hyperspectral, and Ultraspectral Imagery Vi = P Soc Photo-opt Ins Algorithms for Multispectral, Hyperspectral, and Ultraspectral Imagery Vi = P. Soc. Photo-opt. Ins. Algorithms for Next Generation Networks = Comput Commun Netw S Algorithms for Next Generation Networks = Comput. Commun. Netw. S. Algorithms for Sensor Systems = Lect Notes Comput Sc Algorithms for Sensor Systems = Lect. Notes. Comput. Sc. Algorithms for Synthetic Aperture Radar Imagery Iii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Iii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Ii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Ii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Iv = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Iv = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Ix = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Ix = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Viii = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Viii = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Viii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Viii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Vii = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Vii = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Vii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Vii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Vi = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Vi = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Vi = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Vi = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery V = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery V = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xiii = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xiii = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Xiii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Xiii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xii = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xii = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Xii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Xii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xi = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xi = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Xi = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Xi = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xiv = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xiv = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Xiv = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Xiv = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xviii = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xviii = Proc. Spie. Algorithms for Synthetic Aperture Radar Imagery Xvii = P Soc Photo-opt Ins Algorithms for Synthetic Aperture Radar Imagery Xvii = P. Soc. Photo-opt. Ins. Algorithms for Synthetic Aperture Radar Imagery Xv = Proc Spie Algorithms for Synthetic Aperture Radar Imagery Xv = Proc. Spie. Algorithms in Algebraic Geometry and Applications = Prog Math Algorithms in Algebraic Geometry and Applications = Prog. Math. Algorithms in Algebraic Geometry = Ima Vol Math Appl Algorithms in Algebraic Geometry = Ima. Vol. Math. Appl. Algorithms in Ambient Intelligence = Philips Res Book Ser Algorithms in Ambient Intelligence = Philips. Res. Book. Ser. Algorithms in Bioinformatics = Lect N Bioinformat Algorithms in Bioinformatics = Lect. N. Bioinformat. Algorithms in Bioinformatics, Proceedings = Lect N Bioinformat Algorithms in Bioinformatics, Proceedings = Lect. N. Bioinformat. Algorithms in Bioinformatics, Proceedings = Lect Notes Comput Sc Algorithms in Bioinformatics, Proceedings = Lect. Notes. Comput. Sc. Algorithms in Bioinformatics, Wabi 2008 = Lect N Bioinformat Algorithms in Bioinformatics, Wabi 2008 = Lect. N. Bioinformat. Algorithms = Lect Notes Comput Sc Algorithms = Lect. Notes. Comput. Sc. Algorithms, Software, Architecture : Information Processing 92, Vol 1 = Ifip Trans A Algorithms, Software, Architecture : Information Processing 92, Vol 1 = Ifip. Trans. A. Algorithm Theory - Swat 2000 = Lect Notes Comput Sc Algorithm Theory - Swat 2000 = Lect. Notes. Comput. Sc. Algorithm Theory - Swat 2002 = Lect Notes Comput Sc Algorithm Theory - Swat 2002 = Lect. Notes. Comput. Sc. Algorithm Theory- Swat 2004 = Lect Notes Comput Sc Algorithm Theory- Swat 2004 = Lect. Notes. Comput. Sc. Algorithm Theory - Swat 2006, Proceedings = Lect Notes Comput Sc Algorithm Theory - Swat 2006, Proceedings = Lect. Notes. Comput. Sc. Algorithm Theory - Swat 2008 = Lect Notes Comput Sc Algorithm Theory - Swat 2008 = Lect. Notes. Comput. Sc. Algorithm Theory - Swat 2010, Proceedings = Lect Notes Comput Sc Algorithm Theory - Swat 2010, Proceedings = Lect. Notes. Comput. Sc. Algorithm Theory - Swat 92 = Lect Notes Comput Sc Algorithm Theory - Swat 92 = Lect. Notes. Comput. Sc. Algorithm Theory - Swat'98 = Lect Notes Comput Sc Algorithm Theory - Swat'98 = Lect. Notes. Comput. Sc. Alienation and Theatricality: Diderot After Brecht = Stud Comp Lit Ser Alienation and Theatricality: Diderot After Brecht = Stud. Comp. Lit. Ser. Aliens and Sojourners: Self As Other in Early Christianity = Divin Reread Late An Aliens and Sojourners: Self As Other in Early Christianity = Divin. Reread. Late. An. Alignment Change in Iranian Languages: A Construction Grammar Approach = Empir Approach Lang Alignment Change in Iranian Languages: A Construction Grammar Approach = Empir. Approach Lang. Alignment-free Models in Plant Genomics = Agr Issues Policies Alignment-free Models in Plant Genomics = Agr. Issues. Policies. Alimenta = Alimenta Alimentary Pharmacology and Therapeutics=Aliment Pharmacol Ther;; Alimentary Pharmacology and Therapeutics = Aliment. Pharmacol. Ther. Alimentary pharmacology & therapeutics = Aliment Pharmacol Ther Alimentary Pharmacology & Therapeutics = Aliment Pharm Ther Alimentary Pharmacology & Therapeutics = Aliment. Pharm. Ther. Alimentary Pharmacology & Therapeutics = Aliment Pharm Therap Alimentary Pharmacology & Therapeutics = Aliment. Pharm. Therap. Alimentary Pharmacology & Therapeutics Symposium Series = Aliment Pharm Ther S Alimentary Pharmacology & Therapeutics Symposium Series = Aliment. Pharm. Ther. S. Alimentation et la Vie = Aliment. Vie Aliso = Aliso Alkalmazott Matematikai Lapok = Alkalmaz. Mat. Lapok Alkaloids = Alkaloids Alkaloids, Chemistry and Biology = Alkaloids Chem. Biol. Alkene Polymerization Reactions With Transition Metal Catalysts = Stud Surf Sci Catal Alkene Polymerization Reactions With Transition Metal Catalysts = Stud. Surf. Sci. Catal. All Apes Great and Small, Vol 1: African Apes = Dev Primatol All Apes Great and Small, Vol 1: African Apes = Dev. Primatol. All Apes Great and Small, Vol 1: African Apes = Dev Primatol-prog Pr All Apes Great and Small, Vol 1: African Apes = Dev. Primatol-prog. Pr. Allegorica = Allegorica Allegory and Sexual Ethics in The High Middle Ages = New Middle Ages Allegory and Sexual Ethics in The High Middle Ages = New. Middle Ages Allegory = New Crit Idiom Allegory = New. Crit. Idiom. Allelopathy = Acs Sym Ser Allelopathy = Acs. Sym. Ser. Allelopathy Journal = Allelopathy J Allelopathy Journal = Allelopathy J. Allemagne d'aujourd'hui : revue francaise d'information sur les deux l'Allemagnes = Allem Aujourdhui Allergic Diseases and The Environment = Nestle Nutr Works Se Allergic Diseases and The Environment = Nestle. Nutr. Works. Se. Allergie et immunologie = Allerg Immunol (Paris) Allergie et Immunologie = Allerg. Immunol. (Paris) Allergie Et Immunologie=Allerg Immunol (Paris);; Allergie (Pointe-Claire, Quebec). = Allerg Pointe Claire Allergies and Infectious Diseases = Allergy Infect Dis Allergies and Infectious Diseases = Allergy. Infect. Dis. Allergie und Asthma = Allerg Asthma (Leipz) Allergie und Asthma = Allerg. Asthma (Leipz.) Allergie und Asthmaforschung = Allerg. Asthmaforsch. Allergie- und Asthmaforschung = Allerg Asthmaforsch Allergie und Immunologie = Allerg Immunol (Leipz) Allergie und Immunologie = Allerg. Immunol. (Leipz.) Allergo Journal : interdisziplinare Zeitschrift fur Allergologie und Umweltmedizin : Organ der Deutschen Gesellschaft fur Allergie- und Immunitatsforschung = Allergo J Allergologia Et Immunopathologia = Allergol Immunopath Allergologia Et Immunopathologia = Allergol. Immunopath. Allergologia et immunopathologia = Allergol Immunopathol (Madr) Allergologia et Immunopathologia = Allergol. Immunopathol. (Madr.) Allergologia Et Immunopathologia=Allergol Immunopathol (Madr);; Allergologie = Allergologie Allergology international : official journal of the Japanese Society of Allergology = Allergol Int Allergy=Allergy;; Allergy = Allergy Allergy and Asthma Proceedings=Allergy Asthma Proc;; Allergy and Asthma Proceedings = Allergy Asthma Proc Allergy and Asthma Proceedings = Allergy Asthma Proc. Allergy and asthma proceedings : the official journal of regional and state allergy societies = Allergy Asthma Proc Allergy Asthma & Immunology Research = Allergy Asthma Immun Allergy Asthma & Immunology Research = Allergy Asthma Immun. Allergy & Clinical Immunology International-journal of The World Allergy Organization = Allergy Clin Immunol Allergy & Clinical Immunology International-journal of The World Allergy Organization = Allergy Clin. Immunol. Allergy Frontiers = Allergy Front Allergy Frontiers = Allergy Front. Allergy Frontiers: Future Perspectives, Vol 6 = Allergy Front Allergy Frontiers: Future Perspectives, Vol 6 = Allergy Front. Allergy Frontiers: Therapy and Prevention, Vol 5 = Allergy Front Allergy Frontiers: Therapy and Prevention, Vol 5 = Allergy Front. Allergy Matters: New Approaches to Allergy Prevention and Management = Wag Ur Fron Allergy Matters: New Approaches to Allergy Prevention and Management = Wag. Ur. Fron. Allergy Proceedings = Allergy Proc Allergy Proceedings = Allergy Proc. Allergy proceedings : the official journal of regional and state allergy societies = Allergy Proc Allerton Park Institute = Allerton Pa Allerton Park Institute = Allerton Pa. Aller Weishait Anevang Ist Ze Brufen An Dem Aussgang: Akten Des Symposiums Zum 650 Geburtstag Hugos Von Montfort = Innsbr Beitr Kult Ge Aller Weishait Anevang Ist Ze Brufen An Dem Aussgang: Akten Des Symposiums Zum 650 Geburtstag Hugos Von Montfort = Innsbr. Beitr. Kult. Ge. All Flesh Is Grass: Plant-animal Interrelationships = Cell Orig Life Extre All Flesh Is Grass: Plant-animal Interrelationships = Cell. Orig. Life. Extre. Allgemeine Forst- und Jagdzeitung = Allg. Forst- Jagdztg. Allgemeine Forst Und Jagdzeitung = Allg Forst Jagdztg Allgemeine Forst Und Jagdzeitung = Allg. Forst Jagdztg. Allgemeine Forst Zeitschrift für Waldwirtschaft und Umweltvorsorge [AFZ-Der Wald] = Allg. Forst Z. Waldwirtsch. Umweltvorsorge Allgemeine Forstzeitung = Allg Forstztg Allgemeine Forstzeitung = Allg. Forstztg. Allgemeine Forstzeitung = Allg. Forstztg. (Wien) Allgemeine homoopathische Zeitung fur wissenschaftliche und praktische Homoopathie = Allg Homoopath Ztg Allgemeines Statistisches Archiv=Allgemeines Statistisches Arch. Allgemeines statistisches Archiv = All Stat Arch Allgemeine Zeitschrift Fur Philosophie = Allg Z Philos Allgemeine Zeitschrift Fur Philosophie = Allg. Z. Philos. Allgemeine Zeitschrift für Philosophie = AZP Allgemeine Zeitschrift Fur Psychiatrie Und Ihre Grenzgebiete = Allg Z Psychiatr Gre Allgemeine Zeitschrift Fur Psychiatrie Und Ihre Grenzgebiete = Allg. Z. Psychiatr. Gre. Allgemeine Zeitschrift Fur Psychiatrie Und Psychisch-gerichtliche Medizin = Allg Z Psychiatr Ps Allgemeine Zeitschrift Fur Psychiatrie Und Psychisch-gerichtliche Medizin = Allg. Z. Psychiatr. Ps. Allgemeine Zellforschung Und Mikroskopische Anatomie = Allg Zell Mikro Anat Allgemeine Zellforschung Und Mikroskopische Anatomie = Allg. Zell. Mikro. Anat. Allgorithms in Bioniformatics, Proceedings = Lect Notes Comput Sc Allgorithms in Bioniformatics, Proceedings = Lect. Notes. Comput. Sc. Alliance Capitalism and Corporate Management: Entrepreneurial Cooperation in Knowledge Based Economies = New Horiz Int Bus Alliance Capitalism and Corporate Management: Entrepreneurial Cooperation in Knowledge Based Economies = New. Horiz. Int. Bus. Alliance for Global Sustainability = All Glo Sus Alliance for Global Sustainability = All. Glo. Sus. Alliance for Global Sustainability = Alliance Glob Sustai Alliance for Global Sustainability = Alliance Glob. Sustai. Alliance for Global Sustainability Series = All Glo Sus Alliance for Global Sustainability Series = All. Glo. Sus. Allied health and behavioral sciences = Allied Health Behav Sci Allied Health and Behavioral Sciences = Allied Health Behav. Sci. Allionia = Allionia Allison Research and Engineering = Allison Res Eng Allison Research and Engineering = Allison Res. Eng. Allocating Scarce Medical Resources: Roman Catholic Perspectives = Clin Med Ethics Ser Allocating Scarce Medical Resources: Roman Catholic Perspectives = Clin. Med. Ethics. Ser. Allogeneic Stem Cell Transplantation, Second Edition = Contemp Hematol Allogeneic Stem Cell Transplantation, Second Edition = Contemp. Hematol. All-optical Communication Systems: Architecture, Control, and Network Issues Iii = P Soc Photo-opt Ins All-optical Communication Systems: Architecture, Control, and Network Issues Iii = P. Soc. Photo-opt. Ins. All-optical Communication Systems: Architecture, Control, and Network Issues Ii = P Soc Photo-opt Ins All-optical Communication Systems: Architecture, Control, and Network Issues Ii = P. Soc. Photo-opt. Ins. All-optical Communication Systems: Architecture, Control, and Network Issues = P Soc Photo-opt Ins All-optical Communication Systems: Architecture, Control, and Network Issues = P. Soc. Photo-opt. Ins. All-optical Networking 1999: Architecture, Control, and Management Issues = P Soc Photo-opt Ins All-optical Networking 1999: Architecture, Control, and Management Issues = P. Soc. Photo-opt. Ins. All-optical Networking: Architecture, Control, and Management Issues = P Soc Photo-opt Ins All-optical Networking: Architecture, Control, and Management Issues = P. Soc. Photo-opt. Ins. Alloy Phase Stability and Design = Mater Res Soc Symp P Alloy Phase Stability and Design = Mater. Res. Soc. Symp. P. All Sturm and No Drang: Beckett and Romanticism, Beckett At Reading 2006 = Samuel Beckett Today All Sturm and No Drang: Beckett and Romanticism, Beckett At Reading 2006 = Samuel. Beckett Today. All's Well That Ends Well: New Critical Essays = Shakespear Crit All's Well That Ends Well: New Critical Essays = Shakespear. Crit. Allusion and Meaning in John 6 = Beih Z Neutest Wiss Allusion and Meaning in John 6 = Beih. Z. Neutest. Wiss. Alluvial Fans: Geomorphology, Sedimentology, Dynamics = Geol Soc Spec Publ Alluvial Fans: Geomorphology, Sedimentology, Dynamics = Geol. Soc. Spec. Publ. al-Maghrib al-tibbi. Maroc medical = Maroc Med Alma Mater = Alma Mater (Baltimore) Alma Mater Philippina = Alma Mater Philipp Alma mater studiorum Almanacco calabrese Almoraima = AlmaMaterSt Almanac (National Academy of Television Arts and Sciences (U.S.). International Council) = Almanac Al-masaq-islam and The Medieval Mediterranean = Al-masaq Al-masaq-islam and The Medieval Mediterranean = Al-masaq. al-Mihan al-tibbiyah = Al Mihan Al Tibbiyah Almost Ring Theory = Lect Notes Math Almost Ring Theory = Lect. Notes. Math. al-Mustaqbal al-'Arabi = Almustaqbal Alarabi 'Alon mahleqat ha-'atiqot šel medinat Jisra'el = AlonJisrael Alpen, Die = Alpen Alpha-keto Acid Dehydrogenase Complexes : Organization, Regulation, and Biomedical Ramifications = Ann Ny Acad Sci Alpha-keto Acid Dehydrogenase Complexes : Organization, Regulation, and Biomedical Ramifications = Ann. Ny. Acad. Sci. Alpha Omega France = Alpha Omega Fr Alpha Omega France = Alpha Omega Fr. Alpha Omegan = Alpha Omegan Alpha-revista De Artes Letras Y Filosofia = Alpha-rev Artes Let Alpha-revista De Artes Letras Y Filosofia = Alpha-rev. Artes Let. Alphonsus M De Liguori and Society During His Time = Bibl A Ro I Alphonsus M De Liguori and Society During His Time = Bibl. A. Ro. I. Alpine Anthology of Homotopy Theory = Contemp Math Alpine Anthology of Homotopy Theory = Contemp. Math. Alpine Botany = Alpine Bot Alpine Botany = Alpine Bot. Alpine Perspectives On Algebraic Topology = Contemp Math Alpine Perspectives On Algebraic Topology = Contemp. Math. Alpine Waters = Handb Environ Chem Alpine Waters = Handb. Environ. Chem. Al-Qanniš. Boletín del Taller de arqueología de Alcañiz = Al-Qannis al-Qantara = Al Qantara Al-qantara = Al-qantara al-Raida / Institute for Women's Studies in the Arab World, Beirut University College = Al Raida Al servizio del bosco e del paesaggio = Al serv. bosco paesaggio Al-shajarah = Al-shajarah Alt'01 International Conference On Advanced Laser Technologies = P Soc Photo-opt Ins Alt'01 International Conference On Advanced Laser Technologies = P. Soc. Photo-opt. Ins. Alt'02 International Conference On Advanced Laser Technologies = Proc Spie Alt'02 International Conference On Advanced Laser Technologies = Proc. Spie. Alt'02 International Conference On Advanced Laser Technologies = P Soc Photo-opt Ins Alt'02 International Conference On Advanced Laser Technologies = P. Soc. Photo-opt. Ins. Alt'03 International Conference On Advanced Laser Technologies: Biomedical Optics = P Soc Photo-opt Ins Alt'03 International Conference On Advanced Laser Technologies: Biomedical Optics = P. Soc. Photo-opt. Ins. Alt '95 International Symposium On Advanced Materials for Optics and Optoelectronics = P Soc Photo-opt Ins Alt '95 International Symposium On Advanced Materials for Optics and Optoelectronics = P. Soc. Photo-opt. Ins. Alt '96 International Symposium On Laser Methods for Biomedical Applications = P Soc Photo-opt Ins Alt '96 International Symposium On Laser Methods for Biomedical Applications = P. Soc. Photo-opt. Ins. Alt '97 International Conference On Laser Surface Processing = P Soc Photo-opt Ins Alt '97 International Conference On Laser Surface Processing = P. Soc. Photo-opt. Ins. Alt'99 International Conference On Advanced Laser Technologies = Proc Spie Alt'99 International Conference On Advanced Laser Technologies = Proc. Spie. Alt'99 International Conference On Advanced Laser Technologies = P Soc Photo-opt Ins Alt'99 International Conference On Advanced Laser Technologies = P. Soc. Photo-opt. Ins. Alta Frequenza = Alta Freq Alta Frequenza = Alta Freq. Altaica Berolinensia = Asiat Forsch Mg Ges Altaica Berolinensia = Asiat. Forsch. Mg. Ges. Altamura = Altamura Altamura. Bollettino dell'Archivio-biblioteca-museo civico = Altamura Altered Ecologies: Fire, Climate and Human Influence On Terrestrial Landscapes = Terra Australis Altered Ecologies: Fire, Climate and Human Influence On Terrestrial Landscapes = Terra. Australis. Altered Sensations: Rudolph Koenig's Acoustical Workshop in Nineteenth-century Paris = Archimedes Altered Sensations: Rudolph Koenig's Acoustical Workshop in Nineteenth-century Paris = Archimedes. Alter Ego: The Critical Writings of Michel Leiris = Res Monogr Fr Stud Alter Ego: The Critical Writings of Michel Leiris = Res. Monogr. Fr. Stud. Altering Nature, Vol Ii = Philos Med Altering Nature, Vol Ii = Philos. Med. Altering Nature, Vol I = Philos Med Altering Nature, Vol I = Philos. Med. Alternative Approaches to Human Blood Resources in Clinical Practice = Dev Hematol Alternative Approaches to Human Blood Resources in Clinical Practice = Dev. Hematol. Alternative Bearing Surfaces in Total Joint Replacement = Am Soc Test Mater Alternative Bearing Surfaces in Total Joint Replacement = Am. Soc. Test. Mater. Alternative Education: Global Perspectives Relevant to The Asia-pacific Region = Educ Asia Pac Reg-is Alternative Education: Global Perspectives Relevant to The Asia-pacific Region = Educ. Asia. Pac. Reg-is. Alternative Faming Systems, Biotechnology, Drought Stress and Ecological Fertilisation = Sustain Agr Rev Alternative Faming Systems, Biotechnology, Drought Stress and Ecological Fertilisation = Sustain. Agr. Rev. Alternative Futures = Alternative Futures Alternative Institutional Structures: Evolution and Impact = Econ Legal Relation Alternative Institutional Structures: Evolution and Impact = Econ. Legal. Relation. Alternative Life-history Styles of Animals = Persp Vert Alternative Life-history Styles of Animals = Persp. Vert. Alternative lifestyles = Alternative Lifestyles Alternative Lithographic Technologies Iii = P Soc Photo-opt Ins Alternative Lithographic Technologies Iii = P. Soc. Photo-opt. Ins. Alternative Lithographic Technologies Ii = P Soc Photo-opt Ins Alternative Lithographic Technologies Ii = P. Soc. Photo-opt. Ins. Alternative Lithographic Technologies = P Soc Photo-opt Ins Alternative Lithographic Technologies = P. Soc. Photo-opt. Ins. Alternatively Fuelled Vehicles = Imeche Sem Alternatively Fuelled Vehicles = Imeche. Sem. Alternative medicine review : a journal of clinical therapeutic = Altern Med Rev Alternative Medicine Review = Altern Med Rev Alternative Medicine Review = Altern. Med. Rev. Alternative Methods in Toxicology Series = Altern Meth Alternative Methods in Toxicology Series = Altern. Meth. Alternative Perspectives On Economic Policies in The European Union = Int Pap Polit Econ Alternative Perspectives On Economic Policies in The European Union = Int. Pap. Polit. Econ. Alternative Pseudodifferential Analysis: With An Application to Modular Forms = Lect Notes Math Alternative Pseudodifferential Analysis: With An Application to Modular Forms = Lect. Notes. Math. Alternatives = Alternative Alternatives = Alternative. Alternatives = Alternatives Alternatives Journal = Altern J Alternatives Journal = Altern. J. Alternative Solvents for Green Chemistry = Rsc Green Chem Ser Alternative Solvents for Green Chemistry = Rsc. Green Chem. Ser. Alternative Sources of Energy = Alternative Sourc En Alternative Sources of Energy = Alternative Sourc. En. Alternatives-perspectives On Society Technology and Environment = Altern-p Soc Tec Alternatives-perspectives On Society Technology and Environment = Altern-p. Soc. Tec. Alternative Splicing in The Postgenomic Era = Adv Exp Med Biol Alternative Splicing in The Postgenomic Era = Adv. Exp. Med. Biol. Alternatives-social Transformation and Humane Governance = Altern-soc Transform Alternatives-social Transformation and Humane Governance = Altern-soc. Transform. Alternatives to Cartography = Stud Genera Grammar Alternatives to Cartography = Stud. Genera. Grammar. Alternatives to Cartography = Stud Generat Gramm Alternatives to Cartography = Stud. Generat. Gramm. Alternatives to Chemical Control of Weeds = Fri Bull Alternatives to Chemical Control of Weeds = Fri. Bull. Alternatives to Chlorofluorocarbon Fluids in The Cleaning of Oxygen and Aerospace Systems and Components = Am Soc Test Mater Alternatives to Chlorofluorocarbon Fluids in The Cleaning of Oxygen and Aerospace Systems and Components = Am. Soc. Test. Mater. Alternatives to Conventional Food Processing = Rsc Green Chem Ser Alternatives to Conventional Food Processing = Rsc. Green. Chem. Ser. Alternatives to laboratory animals : ATLA = Altern Lab Anim Alternative Therapies in Health and Medicine = Altern Ther Health M Alternative Therapies in Health and Medicine = Altern. Ther. Health M. Alternative therapies in health and medicine = Altern Ther Health Med Alternative Therapies in Health and Medicine = Altern. Ther. Health Med. Alternative Therapies In Health and Medicine=Altern Ther Health Med;; Altern und Entwicklung. Aging and development = Altern Entwickl Aging Dev Altern und Entwicklung (Aging and Development) = Altern Entwickl. Aging Dev. Alter Orient und Altes Testament. Veröffentlichungen zur Kultur und Geschichte des Alten Orients und des Alten Testaments = AOAT Altertümer von Pergamon = AvP ALTEX : Alternativen zu Tierexperimenten = ALTEX Altex-alternativen Zu Tierexperimenten = Altex-altern Tierexp Altex-alternativen Zu Tierexperimenten = Altex-altern. Tierexp. Altex-alternatives to Animal Experimentation = Altex-altern Anim Ex Altex-alternatives to Animal Experimentation = Altex-altern. Anim. Ex. Alto medioevo = AltoMed Altorientalische Forschungen = AoF Altreitalie: Cittadinanza E Diritto Al Voto = Filibrary Ser Altreitalie: Cittadinanza E Diritto Al Voto = Filibrary. Ser. Altruism and Prosocial Behavior in Groups = Adv Group Process Altruism and Prosocial Behavior in Groups = Adv. Group. Process. Altschul Symposia Series = Altschul Sy Altschul Symposia Series = Altschul Sy. Alt-Thüringen = AltThür Alt-Thuringen = Alt Thuring Aluminium Alloys 2006, Pts 1 and 2 = Mater Sci Forum Aluminium Alloys 2006, Pts 1 and 2 = Mater. Sci. Forum. Aluminium Alloys: Their Physical and Mechanical Properties, Part 4/supplement = Mater Sci Forum Aluminium Alloys: Their Physical and Mechanical Properties, Part 4/supplement = Mater. Sci. Forum. Aluminium Alloys: Their Physical and Mechanical Properties, Pts 1-3 = Mater Sci Forum Aluminium Alloys: Their Physical and Mechanical Properties, Pts 1-3 = Mater. Sci. Forum. Aluminium Cast House Technology Xi = Mater Sci Forum Aluminium Cast House Technology Xi = Mater. Sci. Forum. Aluminium (Duesseldorf) = Aluminium (Duesseldorf) Aluminium in Biology and Medicine = Ciba F Symp Aluminium in Biology and Medicine = Ciba. F. Symp. Aluminum Alloys 2002: Their Physical and Mechanical Properties Pts 1-3 = Mater Sci Forum Aluminum Alloys 2002: Their Physical and Mechanical Properties Pts 1-3 = Mater. Sci. Forum. Aluminum Transactions = Alum. Trans. Alumnae magazine (Columbia University-Presbyterian Hospital School of Nursing Alumnae Association) = Alumnae Mag Columbia Univ Presbyt Hosp Sch Nurs Alumnae Assoc Alumnae Magazine, Columbia University-Presbyterian Hospital School of Nursing Alumnae Association = Alumnae Mag. Columbia Univ. Presbyt. Hosp. Sch. Nurs. Alumnae Assoc. Alumnae Magazine, Johns Hopkins Hospital School of Nursing Alumnae Association = Alumnae Mag. Johns Hopkins Hosp. Sch. Nurs. Alumnae Assoc. Alumni bulletin - School of Dentistry, Indiana University = Alumni Bull Sch Dent Indiana Univ Alumni Bulletin, School of Dentistry, Indiana University = Alumni Bull. Sch. Dent. Indiana Univ. Alumni bulletin. University of Michigan. School of Dentistry = Alumni Bull Univ Mich Sch Dent Alumni Bulletin, University of Michigan School of Dentistry = Alumni Bull. Univ. Mich. Sch. Dent. Alumni Magazine, Alumni Association of the Johns Hopkins Hospital School of Nursing = Alumni Mag. Alumni magazine (Columbia University-Presbyterian Hospital School of Nursing Alumni Association) = Alumni Mag Columbia Univ Presbyt Hosp Sch Nurs Alumni Assoc Alumni Magazine, Columbia University-Presbyterian Hospital School of Nursing Alumni Association = Alumni Mag. Columbia Univ. Presbyt. Hosp. Sch. Nurs. Alumni Assoc. al-Usrah wa-al-'umran al-bashari = Al Usrah Wa Al Umran Al Bashari Álxebra = Álxebra Alzeheimer's Disease: A Compendium of Current Theories = Ann Ny Acad Sci Alzeheimer's Disease: A Compendium of Current Theories = Ann. Ny. Acad. Sci. Alzheimer: 100 Years and Beyond = Res Per Alz Alzheimer: 100 Years and Beyond = Res. Per. Alz. Alzheimer disease and associated disorders = Alzheimer Dis Assoc Disord Alzheimer Disease and Associated Disorders=Alzheimer Dis Assoc Disord;; Alzheimer Disease and Associated Disorders = Alzheimer Dis. Assoc. Disord. Alzheimer Disease & Associated Disorders = Alz Dis Assoc Dis Alzheimer Disease & Associated Disorders = Alz. Dis. Assoc. Dis. Alzheimer's and Parkinson's Diseases = Adv Behav Biol Alzheimer's and Parkinson's Diseases = Adv. Behav. Biol. Alzheimers & Dementia = Alzheimers Dement Alzheimers & Dementia = Alzheimers Dement. Alzheimer's & dementia : the journal of the Alzheimer's Association = Alzheimers Dement Alzheimers Disease: A Compendium of Current Theories = Ann Ny Acad Sci Alzheimers Disease: A Compendium of Current Theories = Ann. Ny. Acad. Sci. Alzheimers Disease: Amyloid Precusor Proteins, Signal Transduction, and Neuronal Transplantation = Ann Ny Acad Sci Alzheimers Disease: Amyloid Precusor Proteins, Signal Transduction, and Neuronal Transplantation = Ann. Ny. Acad. Sci. Alzheimer's Disease and Frontotemporal Dementia: Methods and Protocols = Methods Mol Biol Alzheimer's Disease and Frontotemporal Dementia: Methods and Protocols = Methods Mol. Biol. Alzheimers Disease and Related Disorders : Selected Communications = Adv Biosci Alzheimers Disease and Related Disorders : Selected Communications = Adv. Biosci. Alzheimers Disease /// = Key Top Brain Res Alzheimers Disease /// = Key. Top. Brain. Res. Alzheimer's Disease: Lessons From Cell Biology = Res Per Alz Alzheimer's Disease: Lessons From Cell Biology = Res. Per. Alz. Alzheimer's Disease: Vascular Etiology and Pathology = Ann Ny Acad Sci Alzheimer's Disease: Vascular Etiology and Pathology = Ann. Ny. Acad. Sci. Alzheimers Reports = Alzheimers Rep Alzheimers Reports = Alzheimers Rep. Ama-agricultural Mechanization in Asia Africa and Latin America = Ama-agr Mech Asia Af Ama-agricultural Mechanization in Asia Africa and Latin America = Ama-agr. Mech. Asia Af. Ama American Journal of Diseases of Children = Ama Am J Dis Child Ama American Journal of Diseases of Children = Ama Am. J. Dis. Child. A.M.A. American journal of diseases of children = AMA Am J Dis Child A. M. A. archives of dermatology = AMA Arch Derm Ama Archives of Dermatology and Syphilology = Ama Arch Derm Syph Ama Archives of Dermatology and Syphilology = Ama Arch. Derm. Syph. A. M. A. archives of dermatology and syphilology = AMA Arch Derm Syphilol A.M.A. archives of industrial health = AMA Arch Ind Health Ama Archives of Industrial Hygiene and Occupational Medicine = Ama Arch Ind Hyg Occ Ama Archives of Industrial Hygiene and Occupational Medicine = Ama Arch. Ind. Hyg. Occ. A. M. A. archives of industrial hygiene and occupational medicine = A M A Arch Ind Hyg Occup Med A.M.A. archives of internal medicine = AMA Arch Intern Med A. M. A. archives of neurology = AMA Arch Neurol Ama Archives of Neurology and Psychiatry = Ama Arch Neurol Psy Ama Archives of Neurology and Psychiatry = Ama Arch. Neurol. Psy. A. M. A. archives of neurology and psychiatry = AMA Arch Neurol Psychiatry Ama Archives of Ophthalmology = Ama Arch Ophthalmol Ama Archives of Ophthalmology = Ama Arch. Ophthalmol. A.M.A. archives of ophthalmology = AMA Arch Ophthalmol Ama Archives of Otolaryngology = Ama Arch Otolaryngol Ama Archives of Otolaryngology = Ama Arch. Otolaryngol. A.M.A. archives of otolaryngology = AMA Arch Otolaryngol Ama Archives of Pathology = Ama Arch Pathol Ama Archives of Pathology = Ama Arch. Pathol. A. M. A. archives of pathology = AMA Arch Pathol Ama Archives of Surgery = Ama Arch Surg Ama Archives of Surgery = Ama Arch. Surg. A.M.A. archives of surgery = AMA Arch Surg A&M : advertising and marketing = A & M Ama Educators Proceedings = Ama Educ Pr Ama Educators Proceedings = Ama Educ. Pr. Ama Journal of Diseases of Children = Ama J Dis Child Ama Journal of Diseases of Children = Ama J. Dis. Child. A.M.A. journal of diseases of children = AMA J Dis Child Amartya Sens Capability Approach: Theoretical Insights and Empirical Applications = Stud Choice Welf Amartya Sens Capability Approach: Theoretical Insights and Empirical Applications = Stud. Choice. Welf. Amateur - Professional Partnerships in Astronomy, Proceedings = Astr Soc P Amateur - Professional Partnerships in Astronomy, Proceedings = Astr. Soc. P. Amatus Lusitanus; revista de medicina e cirurgia = Amatus Lusit Ama Winter Educators Conference = Ama Winter Educ Conf Ama Winter Educators Conference = Ama Winter Educ. Conf. Amazon Basin: Plant Life, Wildlife and Environment = Environ Res Adv Amazon Basin: Plant Life, Wildlife and Environment = Environ. Res. Adv. Amazon Gold Rush and Environmental Mercury Contamination = Environ Sci Eng Tech Amazon Gold Rush and Environmental Mercury Contamination = Environ. Sci. Eng. Tech. Amazonia and Global Change = Geophys Monogr Ser Amazonia and Global Change = Geophys. Monogr. Ser. Amazoniana-limnologia Et Oecologia Regionalis Systemae Fluminis Amazonas = Amazoniana Amazoniana-limnologia Et Oecologia Regionalis Systemae Fluminis Amazonas = Amazoniana. Amazonian Floodplain Forests: Ecophysiology, Biodiversity and Sustainable Management = Ecol Stud-anal Synth Amazonian Floodplain Forests: Ecophysiology, Biodiversity and Sustainable Management = Ecol. Stud-anal. Synth. Amber, Resinite, and Fossil Resins = Acs Sym Ser Amber, Resinite, and Fossil Resins = Acs. Sym. Ser. Ambient Assisted Living = Adv Technol Soc Ch Ambient Assisted Living = Adv. Technol. Soc. Ch. Ambient Assistive Health and Wellness Management in The Heart of The City, Proceeding = Lect Notes Comput Sc Ambient Assistive Health and Wellness Management in The Heart of The City, Proceeding = Lect. Notes. Comput. Sc. Ambient Intelligence and Future Trends - International Symposium On Ambient Intelligence (isaml 2010) = Adv Intel Soft Compu Ambient Intelligence and Future Trends - International Symposium On Ambient Intelligence (isaml 2010) = Adv. Intel. Soft. Compu. Ambient Intelligence and Smart Environments = Amb Intell Smart Env Ambient Intelligence and Smart Environments = Amb. Intell. Smart Env. Ambient Intelligence and Smart Environments = Amb Int Sm Env Ambient Intelligence and Smart Environments = Amb. Int. Sm. Env. Ambient Intelligence for Scientific Discovery: Foundations, Theories, and Systems = Lect Notes Comput Sc Ambient Intelligence for Scientific Discovery: Foundations, Theories, and Systems = Lect. Notes. Comput. Sc. Ambient Intelligence in Everday Life = Lect Notes Comput Sc Ambient Intelligence in Everday Life = Lect. Notes. Comput. Sc. Ambient Intelligence = Lect Notes Comput Sc Ambient Intelligence = Lect. Notes. Comput. Sc. Ambient Intelligence Perspectives = Amb Intell Smart Env Ambient Intelligence Perspectives = Amb. Intell. Smart. Env. Ambient Intelligence Perspectives = Amb Int Sm Env Ambient Intelligence Perspectives = Amb. Int. Sm. Env. Ambient Intelligence, Proceedings = Lect Notes Comput Sc Ambient Intelligence, Proceedings = Lect. Notes. Comput. Sc. Ambient Intelligence: Software and Applications = Adv Intel Soft Compu Ambient Intelligence: Software and Applications = Adv. Intel. Soft. Compu. Ambient Intelligence With Microsystems: Augmented Materials and Smart Objects = Microsyst Ser Ambient Intelligence With Microsystems: Augmented Materials and Smart Objects = Microsyst. Ser. Ambient Networks = Lect Notes Comput Sc Ambient Networks = Lect. Notes. Comput. Sc. Ambiguities in Decision-oriented Life Cycle Inventories: The Role of Mental Models and Values = Eco-effic Ind Sci Ambiguities in Decision-oriented Life Cycle Inventories: The Role of Mental Models and Values = Eco-effic. Ind. Sci. Ambiguity in Mind and Nature = Springer Series Syne Ambiguity in Mind and Nature = Springer. Series. Syne. Ambiguity in Mind and Nature = Springer Ser Synerg Ambiguity in Mind and Nature = Springer. Ser. Synerg. Ambio = Ambio Ambivalence of Progress - Is Less More? = Langeng Arc Ambivalence of Progress - Is Less More? = Langeng. Arc. Ambix = Ambix AMB; revista da Associacao Medica Brasileira = AMB Rev Assoc Med Bras AMB: Revista da Associacao Medica Brasileira = AMB Rev. Assoc. Med. Bras. Ambulatory care = Ambul Care Ambulatory Care = Ambul. Care Ambulatory outreach = Ambul Outreach Ambulatory Outreach = Ambul. Outreach Ambulatory Pediatrics = Ambul Pediatr Ambulatory Pediatrics = Ambul. Pediatr. Ambulatory pediatrics : the official journal of the Ambulatory Pediatric Association = Ambul Pediatr Ambulatory surgery = Ambul Surg AMDI bollettino = AMDI Boll AMDI Bollettino = AMDI Boll. AMD-TR Reports = AMD. TR Rep. AMD-TR [reports]. United States. Aerospace Medical Division = AMD TR Rep Ameghiniana = Ameghiniana Aménagement du territoire = Aménage. territ. Amenagement Du Territoire Et Environnement = Amenag Terr Env Amenagement Du Territoire Et Environnement = Amenag. Terr. Env. Amendment-enhanced Phytoextraction of Soil Contaminants = Env Remed Tech Regul Amendment-enhanced Phytoextraction of Soil Contaminants = Env. Remed. Tech. Regul. Amenorrhea: A Case-based, Clinical Guide = Contemp Endocrinol S Amenorrhea: A Case-based, Clinical Guide = Contemp. Endocrinol. S. Amerasia journal = Amerasia J Amerasia Journal = Amerasia J Amerasia Journal = Amerasia J. America = America (NY) America and Enlightenment Constitutionalism = Stud Am America and Enlightenment Constitutionalism = Stud. Am. America and Iraq = Contemp Secur Stud America and Iraq = Contemp. Secur. Stud. America indigena = Am Indig America in The 21st Century Political and Economic Issues = Am 21 Century Polit America in The 21st Century Political and Economic Issues = Am. 21. Century Polit. America latina = Am Lat America Latina = Am Latina America Latina = Am. Latina American Academy of Orthopaedic Surgeons Instructional Course Lectures = Aaos Instr Cours Lec American Academy of Orthopaedic Surgeons Instructional Course Lectures = Aaos. Instr. Cours. Lec. American Academy of Physical Education Papers = Am Acad Pe American Academy of Physical Education Papers = Am. Acad. Pe. American Academy of Political and Social Science Monographs = Am Aca Pol Soc Sci M American Academy of Political and Social Science Monographs = Am. Aca. Pol. Soc. Sci. M. American and Comparative Environmental Policy = Am Comp Environ Poli American and Comparative Environmental Policy = Am. Comp. Environ. Poli. American annals of the deaf = Am Ann Deaf American Annals of the Deaf = Am. Ann. Deaf American Annals of The Deaf=Am Ann Deaf;; American Annals of The Deaf = Am Ann Deaf American Annals of The Deaf = Am. Ann. Deaf American anthropologist = Am Anthropol American Anthropologist = Am Anthropol American Anthropologist = Am. Anthropol. American antiquity = Am Antiq American Antiquity = Am. Antiqu. American Antiquity = Am Antiquity American Antiquity = Am. Antiquity American archives of rehabilitation therapy = Am Arch Rehabil Ther American Archives of Rehabilitation Therapy = Am. Arch. Rehabil. Ther. American Archivist = Am Archivist American Archivist = Am. Archivist American Art = Am Art American Art = Am. Art American Art Journal = Am Art J American Art Journal = Am. Art J. American Art Review = Am Art Rev American Art Review = Am. Art Rev. American Association for the Advancement of Science = Science American Association of Industrial Nurses journal = Am Assoc Ind Nurses J American Association of Industrial Nurses Journal = Am. Assoc. Ind. Nurses J. American Association of Petroleum Geologists Bulletin = Am. Assoc. Pet. Geol. Bull. American Association of Petroleum Geologists Bulletin = Am Assoc Petr Geol B American Association of Petroleum Geologists Bulletin = Am. Assoc. Petr. Geol. B. American Association of University Professors Bulletin = Amer Assoc Univ Pr B American Association of University Professors Bulletin = Amer. Assoc. Univ. Pr. B. American Astronautical Society = J. Astronaut. Sci. American Bankruptcy Law Journal = Am Bankrupt Law J American Bankruptcy Law Journal = Am. Bankrupt. Law J. American Bar Association Journal = Am Bar Assoc J American Bar Association Journal = Am. Bar Assoc. J. American Bar Association journal. American Bar Association = Am Bar Assoc J American Bar Foundation Research Journal = Am Bar Found Res J American Bar Foundation Research Journal = Am. Bar Found. Res. J. American Bar Foundation research journal. American Bar Foundation = Am Bar Found Res J American Bee Journal = Am Bee J American Bee Journal = Am. Bee J. American Bee Journal = Am. Bee. J. American Behavioral Scientist = Am Behav Sci American Behavioral Scientist = Am. Behav. Sci. American Biology Teacher = Am Biol Teach American Biology Teacher = Am. Biol. Teach. American biotechnology laboratory = Am Biotechnol Lab American Biotechnology Laboratory = Am Biotechnol Lab American Biotechnology Laboratory = Am. Biotechnol. Lab. American Book Review = Am Book Rev American Book Review = Am. Book Rev. American Bourgeoisie: Distinction and Identity in The Nineteenth Century = Palgrave Stud Cult American Bourgeoisie: Distinction and Identity in The Nineteenth Century = Palgrave. Stud. Cult. American-british-canadian Intelligence Relations 1939-2000 = Cass Ser Stud Intell American-british-canadian Intelligence Relations 1939-2000 = Cass. Ser. Stud. Intell. American Business Law Journal = Am Bus Law J American Business Law Journal = Am. Bus. Law J. American Business Politics and Society = Amer Bus Polit American Business Politics and Society = Amer. Bus. Polit. American Capitalism: Social Thought and Political Economy in The Twentieth Century = Polit Cult Mod Am American Capitalism: Social Thought and Political Economy in The Twentieth Century = Polit. Cult. Mod. Am. American Cartographer = Am Cartographer American Cartographer = Am. Cartographer American Catholic Philosophical Association - Proceedings = Amer Cath Phil Assoc American Catholic Philosophical Association - Proceedings = Amer. Cath. Phil. Assoc. American Catholic Philosophical Quarterly = Am Cath Philos Quart American Catholic Philosophical Quarterly = Am. Cath. Philos. Quart. American Ceramic Society Bulletin = Am Ceram Soc Bull American Ceramic Society Bulletin = Am. Ceram. Soc. Bull. American Chemical Journal = Am. Chem. J. American Choral Review = Am Choral Rev American Choral Review = Am. Choral Rev. American Christmas Tree Journal = Am. Christmas Tree J. American City & County = Am City County American City & County = Am. City County American clinical laboratory = Am Clin Lab American Clinical Laboratory = Am. Clin. Lab. American College of Physicians observer = Am Coll Physicians Obs American College of Physicians Observer = Am. Coll. Physicians Obs. American College Testing Research Reports = Amer Coll Test Res R American College Testing Research Reports = Amer. Coll. Test. Res. R. American Concrete Institute, SP = Am. Concr. Inst., SP American Concrete Institute Special Publication = Amer Conc I American Concrete Institute Special Publication = Amer. Conc. I. American Constitution As A Symbol and Reality for Italy = Stud Amer H American Constitution As A Symbol and Reality for Italy = Stud. Amer. H. American Control Conference = Amer Contr Conf Conf American Control Conference = Amer. Contr. Conf. Conf. American corrective therapy journal = Am Correct Ther J American Corrective Therapy Journal = Am. Correct. Ther. J. American Council On Education/macmillian Series On Higher Education = Am C Educ M American Council On Education/macmillian Series On Higher Education = Am. C. Educ. M. American Council On Education/oryx Press Series On Higher Education = Am C Educ Oryz American Council On Education/oryx Press Series On Higher Education = Am. C. Educ. Oryz. American Criminal Law Quarterly = Am Crim Law Q American Criminal Law Quarterly = Am. Crim. Law Q. American Criminal Law Review = Am Crim Law Rev American Criminal Law Review = Am. Crim. Law Rev. American Dairy Review = Am Dairy Rev American Dairy Review = Am. Dairy Rev. American demographics = Am Demogr American Demographics = Am. Demogr. American Documentation = Am Doc American Documentation = Am. Doc. American Dyestuff Reporter = Am Dyest Rep American Dyestuff Reporter = Am. Dyest. Rep. American Economic Growth and Standards of Living Before The Civil War = Nber Conf R American Economic Growth and Standards of Living Before The Civil War = Nber. Conf. R. American Economic Journal-applied Economics = Am Econ J-appl Econ American Economic Journal-applied Economics = Am. Econ. J-appl. Econ. American Economic Journal-economic Policy = Am Econ J-econ Polic American Economic Journal-economic Policy = Am. Econ. J-econ. Polic. American Economic Journal-macroeconomics = Am Econ J-macroecon American Economic Journal-macroeconomics = Am. Econ. J-macroecon. American Economic Journal-microeconomics = Am Econ J-microecon American Economic Journal-microeconomics = Am. Econ. J-microecon. American Economic Review = Am Econ Rev American Economic Review = Am. Econ. Rev. American Economic Review=Amer. Econ. Rev. American Economist = Am Econ American Economist = Am. Econ. American Economist=Amer. Economist American Educational History Journal = Am Educ Hist J American Educational History Journal = Am. Educ. Hist. J. American Educational History Journal, Vol 34, Nos 1 and 2 = Am Educ Hist J American Educational History Journal, Vol 34, Nos 1 and 2 = Am. Educ. Hist. J. American Educational History Journal, Vol 35, Nos 1 and 2 = Am Educ Hist J American Educational History Journal, Vol 35, Nos 1 and 2 = Am. Educ. Hist. J. American Educational History Journal, Vol 37, Nos 1 and 2 = Am Educ Hist J American Educational History Journal, Vol 37, Nos 1 and 2 = Am. Educ. Hist. J. American educational research journal = Am Educ Res J American Educational Research Journal = Am Educ Res J American Educational Research Journal = Am. Educ. Res. J. American education = Am Educ American Education = Am. Educ. American Empire and The Political Economy of Global Finance = Int Polit Econ Ser American Empire and The Political Economy of Global Finance = Int. Polit. Econ. Ser. American Enterprise=Amer. Enterprise American enterprise (Washington, D.C.) = Am Enterp American Environmental Policy, 1990-2006: Beyond Gridlock = Am Comp Environ Poli American Environmental Policy, 1990-2006: Beyond Gridlock = Am. Comp. Environ. Poli. American Ethnologist = Am Ethnol American Ethnologist = Am. Ethnol. American family physician = Am Fam Physician American Family Physician=Am Fam Physician;; American Family Physician = Am Fam Physician American Family Physician = Am. Fam. Physician American Family Physician/gp = Am Fam Phys-gp American Family Physician/gp = Am. Fam. Phys-gp. American family physician/GP = Am Fam Physician GP American Family Physician/GP = Am. Fam. Physician. GP American Federationist = Am Fed American Federationist = Am. Fed. American Fern Journal = Am Fern J American Fern Journal = Am. Fern J. American Film = Am Film American Film = Am. Film American Fisheries Society Symposium = Am Fish S S American Fisheries Society Symposium = Am. Fish. S. S. American Fisheries Society Symposium Series = Am Fish S S American Fisheries Society Symposium Series = Am. Fish. S. S. American Forage and Grassland Council - The First 50 Years/1994 American Forage and Grassland Council Proceedings = P Forag Gr American Forage and Grassland Council - The First 50 Years/1994 American Forage and Grassland Council Proceedings = P. Forag. Gr. American Forage and Grassland Council, Vol 10, Proceedings = P Forag Gr American Forage and Grassland Council, Vol 10, Proceedings = P. Forag. Gr. American Forage and Grassland Council, Vol 11, Proceedings = P Forag Gr American Forage and Grassland Council, Vol 11, Proceedings = P. Forag. Gr. American Forage and Grassland Council, Vol 9, Proceedings = P Forag Gr American Forage and Grassland Council, Vol 9, Proceedings = P. Forag. Gr. American Foreign Policy and The Politics of Fear = Rout Glob Secur Stud American Foreign Policy and The Politics of Fear = Rout. Glob. Secur. Stud. American Forests = Am Forests American Forests = Am. Forests American Fruit Grower = Am Fruit Grow American Fruit Grower = Am. Fruit Grow. American Gas Association Monthly = Am Gas Assoc Mon American Gas Association Monthly = Am. Gas Assoc. Mon. American Gas Journal = Amer Gas J American Gas Journal = Amer. Gas J. American Governance and Public Policy = Am Gov Public Policy American Governance and Public Policy = Am. Gov. Public Policy American Governance and Public Policy = Am Gov Publ Pol American Governance and Public Policy = Am. Gov. Publ. Pol. American health = Am Health American Health Foundation Series = Amer Hlth F American Health Foundation Series = Amer. Hlth. F. American Heart Association Monograph Series = Am Heart Monogr S American Heart Association Monograph Series = Am. Heart Monogr. S. American Heart Hospital Journal = Am. Heart Hosp. J. American heart journal = Am Heart J American Heart Journal=Am Heart J;; American Heart Journal = Am Heart J American Heart Journal = Am. Heart J. American heritage = Am Herit American Heritage = Am Heritage American Heritage = Am. Heritage American heritage of invention & technology = Am Herit Invent Technol American Historical Review = AHR American Historical Review=Amer. Historical Rev. American Historical Review = Am Hist Rev American Historical Review = Am. Hist. Rev. American History = Am Hist American History = Am. Hist. American history illustrated = Am Hist Illus American History Illustrated = Am Hist Illus American History Illustrated = Am. Hist. Illus. American horseman = Am Horseman American Horticultural Magazine = Amer Horticult Mag American Horticultural Magazine = Amer. Horticult. Mag. American Horticulturist = Am Hortic American Horticulturist = Am. Hortic. American Hungers: The Problem of Poverty in U.s. Literature, 1840-1945 = 20 21 American Hungers: The Problem of Poverty in U.s. Literature, 1840-1945 = 20. 21. American Icons: The Genesis of A National Visual Language = Routl Res Cult Media American Icons: The Genesis of A National Visual Language = Routl. Res. Cult. Media. American Imago = Am Imago American Imago = Am. Imago American Immigration Policy: Confronting The Nation's Challenges = Public Adm Gov Glob American Immigration Policy: Confronting The Nation's Challenges = Public. Adm. Gov. Glob. American Indian and Alaska Native Mental Health Research = Am Indian Alaska Nat American Indian and Alaska Native Mental Health Research = Am. Indian Alaska Nat. American Indian and Alaska Native Mental Health Research=Am Indian Alsk Native Ment Health Res;; American Indian and Alaska Native Mental Health Research = Am. Indian Alsk. Native Ment. Health Res. American Indian and Alaska native mental health research : journal of the National Center = Am Indian Alsk Native Ment Health Res American Indian and Alaska native mental health research (Monographic series) = Am Indian Alsk Native Ment Health Res Monogr Ser American Indian and Alaska Native Mental Health Research. MonographSeries Am Indian Alsk Native Ment Health Re=Monogr Ser;; American Indian and Alaska Native Mental Health Research. Monograph Series = Am. Indian Alsk. Native Ment. Health Res. Monogr. Ser. American Indian and Alaska native mental health research (Online) = Am Indian Alsk Native Ment Health Res American Indian art magazine = Am Indian Art Mag American Indian culture and research journal = Am Indian Cult Res J American Indian Culture and Research Journal = Am Indian Cult Res J American Indian Culture and Research Journal = Am. Indian Cult. Res. J. American Indian quarterly = Am Indian Q American Individualisms: Child Rearing and Social Class in Three Neighborhoods = Cult Mind Soc American Individualisms: Child Rearing and Social Class in Three Neighborhoods = Cult. Mind. Soc. American Industrial Hygiene Association journal = Am Ind Hyg Assoc J American Industrial Hygiene Association Journal=Am Ind Hyg Assoc J;; American Industrial Hygiene Association Journal = Am Ind Hyg Assoc J American Industrial Hygiene Association Journal = Am. Ind. Hyg. Assoc. J. American Industrial Hygiene Association quarterly = Am Ind Hyg Assoc Q American Italian Historical Association Proceedings = Amer Ital Hist Assoc American Italian Historical Association Proceedings = Amer. Ital. Hist. Assoc. American Jewish archives = Am Jew Arch American Jewish Archives = Am Jewish Arch American Jewish Archives = Am. Jewish Arch. American Jewish Civilization Series = Am Jew Civ American Jewish Civilization Series = Am. Jew. Civ. American Jewish historical quarterly = Am Jew Hist Q American Jewish Historical Quarterly = Am Jewish Hist Quart American Jewish Historical Quarterly = Am. Jewish Hist. Quart. American Jewish history = Am Jew Hist American Jewish History = Am Jewish Hist American Jewish History = Am. Jewish Hist. American Journalist in The 21st Century = Lea Commun Ser American Journalist in The 21st Century = Lea. Commun. Ser. American journal of acupuncture = Am J Acupunct American Journal of Acupuncture = Am J Acupuncture American Journal of Acupuncture = Am. J. Acupuncture American Journal of Agricultural Economics=Amer. J. Agr. Econ. American Journal of Agricultural Economics = Am J Agr Econ American Journal of Agricultural Economics = Am. J. Agr. Econ. American journal of agricultural economics = Am J Agric Econ American Journal of Alternative Agriculture = Am. J. Altern. Agric. American Journal of Alternative Agriculture = Am J Alternative Agr American Journal of Alternative Agriculture = Am. J. Alternative Agr. American Journal of Alzheimers Disease and Other Dementias = Am J Alzheimers Dis American Journal of Alzheimers Disease and Other Dementias = Am. J. Alzheimers Dis. American journal of Alzheimer's disease and other dementias = Am J Alzheimers Dis Other Demen American Journal of Alzheimer's Disease and Other Dementias = Am. J. Alzheimers Dis. Other Demen. American Journal of Anatomy = Am J Anat American Journal of Anatomy = Am. J. Anat. American Journal of Ancient History = AJAH American Journal of Ancient History = AmJAncHist American Journal of Anesthesiology = Am. J. Anesthesiol. American Journal of Archaeology = AJA American Journal of Archaeology = AJA American Journal of Archaeology = Am J Archaeol American Journal of Archaeology = Am. J. Archaeol. American journal of art therapy = Am J Art Ther American Journal of Art Therapy = Am J Art Ther American Journal of Art Therapy = Am. J. Art Ther. American journal of audiology = Am J Audiol American Journal of Audiology = Am J Audiol American Journal of Audiology = Am. J. Audiol. American Journal of Biochemistry and Biotechnology = Am. J. Biochem. Biotechnol. American Journal of Bioethics = Am. J. Bioeth. American Journal of Bioethics = Am J Bioethics American Journal of Bioethics = Am. J. Bioethics American journal of botany = Am J Bot American Journal of Botany = Am J Bot American Journal of Botany = Am. J. Bot. American journal of cardiac imaging = Am J Card Imaging American Journal of Cardiac Imaging = Am. J. Card. Imaging American Journal of Cardiac IMAging=Am J Card Imaging;; American Journal of Cardiology=Am J Cardiol;; American Journal of Cardiology = Am J Cardiol American Journal of Cardiology = Am. J. Cardiol. American Journal of Cardiovascular Drugs = Am J Cardiovasc Drug American Journal of Cardiovascular Drugs = Am. J. Cardiovasc. Drug. American Journal of Cardiovascular Drugs = Am. J. Cardiovasc. Drugs American journal of cardiovascular drugs : drugs, devices, and other interventions = Am J Cardiovasc Drugs American Journal of Cardiovascular Pathology=Am J Cardiovasc Pathol;; American Journal of Cardiovascular Pathology = Am. J. Cardiovasc. Pathol. American Journal of Chinese Medicine = Am J Chinese Med American Journal of Chinese Medicine = Am. J. Chinese Med. American Journal of Chinese Medicine=Am J Chin Med;; American Journal of Chinese Medicine = Am. J. Chin. Med. American journal of clinical dermatology = Am J Clin Dermatol American Journal of Clinical Dermatology = Am J Clin Dermatol American Journal of Clinical Dermatology = Am. J. Clin. Dermatol. American Journal of Clinical Hypnosis=Am J Clin Hypn;; American Journal of Clinical Hypnosis = Am J Clin Hypn American Journal of Clinical Hypnosis = Am. J. Clin. Hypn. American Journal of Clinical Nutrition=Am J Clin Nutr;; American Journal of Clinical Nutrition = Am J Clin Nutr American Journal of Clinical Nutrition = Am. J. Clin. Nutr. American journal of clinical oncology = Am J Clin Oncol American Journal of Clinical Oncology=Am J Clin Oncol;; American Journal of Clinical Oncology = Am. J. Clin. Oncol. American Journal of Clinical Oncology-cancer Clinical Trials = Am J Clin Oncol-canc American Journal of Clinical Oncology-cancer Clinical Trials = Am. J. Clin. Oncol-canc. American journal of clinical pathology = Am J Clin Pathol American Journal of Clinical Pathology=Am J Clin Pathol;; American Journal of Clinical Pathology = Am J Clin Pathol American Journal of Clinical Pathology = Am. J. Clin. Pathol. American journal of community psychology = Am J Community Psychol American Journal of Community Psychology=Am J Community Psychol;; American Journal of Community Psychology = Am. J. Community Psychol. American Journal of Community Psychology = Am J Commun Psychol American Journal of Community Psychology = Am. J. Commun. Psychol. American Journal of Comparative Law = Am J Comp Law American Journal of Comparative Law = Am. J. Comp. Law American Journal of Contact Dermatitis=Am J Contact Dermat;; American Journal of Contact Dermatitis = Am. J. Contact Dermat. American journal of contact dermatitis : official journal of the American Contact Dermatitis Society = Am J Contact Dermat American journal of correction = Am J Correct American journal of criminal law = Am J Crim Law American Journal of Criminal Law = Am J Crim Law American Journal of Criminal Law = Am. J. Crim. Law American Journal of Critical Care=Am J Crit Care;; American Journal of Critical Care = Am J Crit Care American Journal of Critical Care = Am. J. Crit. Care American journal of critical care : an official publication, American Association of Critical-Care Nurses = Am J Crit Care American Journal of Dance Therapy = Am J Dance Ther American Journal of Dance Therapy = Am. J. Dance Ther. American journal of dentistry = Am J Dent American Journal of Dentistry = Am J Dent American Journal of Dentistry = Am. J. Dent. American Journal of Dermatopathology = Am J Dermatopath American Journal of Dermatopathology = Am. J. Dermatopath. American Journal of Dermatopathology=Am J Dermatopathol;; American Journal of Dermatopathology = Am. J. Dermatopathol. American Journal of Digestive Diseases = Am J Dig Dis American Journal of Digestive Diseases = Am. J. Dig. Dis. American journal of diseases of children (1911) = Am J Dis Child American journal of diseases of children (1960) = Am J Dis Child American Journal of Diseases of Children = Am J Dis Child American Journal of Diseases of Children = Am. J. Dis. Child. American Journal of Drug and Alcohol Abuse = Am J Drug Alcohol Ab American Journal of Drug and Alcohol Abuse = Am. J. Drug Alcohol Ab. American Journal of Drug and Alcohol Abuse=Am J Drug Alcohol Abuse;; American Journal of Drug and Alcohol Abuse = Am. J. Drug Alcohol Abuse American Journal of Economics and Sociology=Amer. J. Econ. Sociology American journal of economics and sociology = Am J Econ Sociol American Journal of Economics and Sociology = Am J Econ Sociol American Journal of Economics and Sociology = Am. J. Econ. Sociol. American Journal Of Economics And Sociology = Am. J. Econ. Sociol. American Journal of Education = Am J Educ American Journal of Education = Am. J. Educ. American Journal of Eeg Technology = Am J Eeg Technol American Journal of Eeg Technology = Am. J. Eeg Technol. American Journal of EEG Technology = Am. J. EEG Technol. American journal of electroneurodiagnostic technology = Am J Electroneurodiagnostic Technol American Journal of Electroneurodiagnostic Technology = Am J Electroneurod T American Journal of Electroneurodiagnostic Technology = Am. J. Electroneurod. T. American Journal of Emergency Medicine=Am J Emerg Med;; American Journal of Emergency Medicine = Am J Emerg Med American Journal of Emergency Medicine = Am. J. Emerg. Med. American Journal of Enology and Viticulture = Am J Enol Viticult American Journal of Enology and Viticulture = Am. J. Enol. Viticult. American journal of epidemiology = Am J Epidemiol American Journal of Epidemiology=Am J Epidemiol;; American Journal of Epidemiology = Am J Epidemiol American Journal of Epidemiology = Am. J. Epidemiol. American journal of ethics & medicine : a national medical student journal published by the University of Pennsylvania School of Medicine = Am J Ethics Med American Journal of Evaluation = Am J Eval American Journal of Evaluation = Am. J. Eval. American journal of family law = Am J Fam Law American Journal of Family Therapy = Am J Fam Ther American Journal of Family Therapy = Am. J. Fam. Ther. American Journal of Food Technology = Am. J. Food Technol. American Journal of Forensic Medicine and Pathology = Am J Foren Med Path American Journal of Forensic Medicine and Pathology = Am. J. Foren. Med. Path. American Journal of Forensic Medicine and Pathology=Am J Forensic Med Pathol;; American Journal of Forensic Medicine and Pathology = Am. J. Forensic Med. Pathol. American Journal of Gastroenterology=Am J Gastroenterol;; American Journal of Gastroenterology = Am J Gastroenterol American Journal of Gastroenterology = Am. J. Gastroenterol. American Journal of Geriatric Cardiology = Am J Geriatr Cardiol American Journal of Geriatric Cardiology = Am. J. Geriatr. Cardiol. American Journal of Geriatric Pharmacotherapy = Am J Geriatr Pharmac American Journal of Geriatric Pharmacotherapy = Am. J. Geriatr. Pharmac. American Journal of Geriatric Pharmacotherapy = Am. J. Geriatr. Pharmacother. American Journal of Geriatric Psychiatry = Am J Geriat Psychiat American Journal of Geriatric Psychiatry = Am. J. Geriat. Psychiat. American Journal of Geriatric Psychiatry=Am J Geriatr Psychiatry;; American Journal of Geriatric Psychiatry = Am. J. Geriatr. Psychiatry American journal of health behavior = Am J Health Behav American Journal of Health Behavior = Am J Health Behav American Journal of Health Behavior = Am. J. Health Behav. American journal of health planning = Am J Health Plann American Journal of Health Planning = Am. J. Health Plann. American journal of health promotion : AJHP = Am J Health Promot American Journal of Health Promotion = Am J Health Promot American Journal of Health Promotion = Am. J. Health Promot. American journal of health-system pharmacy : AJHP : official journal of the American Society of Health-System Pharmacists = Am J Health Syst Pharm American Journal of Health-system Pharmacy = Am J Health-syst Ph American Journal of Health-system Pharmacy = Am. J. Health-syst. Ph. American Journal of Health-System Pharmacy=Am J Health Syst Pharm;; American Journal of Health-System Pharmacy = Am. J. Health. Syst. Pharm. American journal of hematology = Am J Hematol American Journal of Hematology=Am J Hematol;; American Journal of Hematology = Am J Hematol American Journal of Hematology = Am. J. Hematol. American Journal of Hospice and Palliative Care = Am. J. Hosp. Palliat. Care American Journal of Hospice Care = Am. J. Hosp. Care American Journal of Hospice Care = Am J Hospice Care American Journal of Hospice Care = Am. J. Hospice Care American Journal of Hospice & Palliative Medicine = Am J Hosp Palliat Me American Journal of Hospice & Palliative Medicine = Am. J. Hosp. Palliat. Me. American journal of hospital pharmacy = Am J Hosp Pharm American Journal of Hospital Pharmacy = Am J Hosp Pharm American Journal of Hospital Pharmacy = Am. J. Hosp. Pharm. American Journal of Human Biology = Am J Hum Biol American Journal of Human Biology = Am. J. Hum. Biol. American journal of human biology : the official journal of the Human Biology Council = Am J Hum Biol American journal of human genetics = Am J Hum Genet American Journal of Human Genetics=Am J Hum Genet;; American Journal of Human Genetics = Am J Hum Genet American Journal of Human Genetics = Am. J. Hum. Genet. American journal of hygiene = Am J Hyg American Journal of Hygiene = Am J Hyg American Journal of Hygiene = Am. J. Hyg. American Journal of Hygiene-monographic Series = Am J Hyg-monogr Ser American Journal of Hygiene-monographic Series = Am. J. Hyg-monogr. Ser. American Journal of Hypertension=Am J Hypertens;; American Journal of Hypertension = Am J Hypertens American Journal of Hypertension = Am. J. Hypertens. American journal of hypertension : journal of the American Society of Hypertension = Am J Hypertens American journal of industrial medicine = Am J Ind Med American Journal of Industrial Medicine=Am J Ind Med;; American Journal of Industrial Medicine = Am J Ind Med American Journal of Industrial Medicine = Am. J. Ind. Med. American journal of infection control = Am J Infect Control American Journal of Infection Control=Am J Infect Control;; American Journal of Infection Control = Am J Infect Control American Journal of Infection Control = Am. J. Infect. Control American journal of infectious diseases = Am J Infect Dis American Journal of Insanity = Am J Insanity American Journal of Insanity = Am. J. Insanity American Journal of International Law = Am J Int Law American Journal of International Law = Am. J. Int. Law American Journal of Kidney Diseases=Am J Kidney Dis;; American Journal of Kidney Diseases = Am J Kidney Dis American Journal of Kidney Diseases = Am. J. Kidney Dis. American journal of kidney diseases : the official journal of the National Kidney Foundation = Am J Kidney Dis American Journal of Knee Surgery=Am J Knee Surg;; American Journal of Knee Surgery = Am. J. Knee Surg. American Journal of Law and Medicine=Am J Law Med;; American Journal of Law and Medicine = Am. J. Law Med. American journal of law & medicine = Am J Law Med American Journal of Law & Medicine = Am J Law Med American Journal of Law & Medicine = Am. J. Law Med. American Journal of Legal History = Am J Legal Hist American Journal of Legal History = Am. J. Legal Hist. American Journal of Managed Care = Am J Manag C American Journal of Managed Care = Am. J. Manag. C. American Journal of Managed Care = Am J Manag Care American Journal of Managed Care = Am. J. Manag. Care American Journal of Mathematical and Management Sciences, 1998 = Am J Math-s American Journal of Mathematical and Management Sciences, 1998 = Am. J. Math-s. American Journal of Mathematical and Management Sciences, 2001 = Am J Math-s American Journal of Mathematical and Management Sciences, 2001 = Am. J. Math-s. American Journal of Mathematical and Management Sciences = Amer. J. Math. Management Sci. American Journal of Mathematical and Management Sciences-series = Am J Math-s American Journal of Mathematical and Management Sciences-series = Am. J. Math-s. American Journal of Mathematical and Management Sciences, Vol 11, Nos 1 & 2 = Am S Math M American Journal of Mathematical and Management Sciences, Vol 11, Nos 1 & 2 = Am. S. Math. M. American Journal of Mathematical and Management Sciences, Vol 11, Nos. 3 and 4 = Am J Math-s American Journal of Mathematical and Management Sciences, Vol 11, Nos. 3 and 4 = Am. J. Math-s. American Journal of Mathematical and Management Sciences, Vol 16, Nos 1 and 2 = Am J Math-s American Journal of Mathematical and Management Sciences, Vol 16, Nos 1 and 2 = Am. J. Math-s. American Journal of Mathematical and Management Sciences, Vol 17, Nos 1 and 2, 1997 = Am J Math-s American Journal of Mathematical and Management Sciences, Vol 17, Nos 1 and 2, 1997 = Am. J. Math-s. American Journal of Mathematical and Management Sciences, Vol 18, Nos 1 and 2 = Am S Math M American Journal of Mathematical and Management Sciences, Vol 18, Nos 1 and 2 = Am. S. Math. M. American Journal of Mathematical and Management Sciences, Vol 22, Nos 1&2 = Am J Math-s American Journal of Mathematical and Management Sciences, Vol 22, Nos 1&2 = Am. J. Math-s. American Journal of Mathematical and Management Sciences, Vol 22 Nos 3 & 4 = Am J Math-s American Journal of Mathematical and Management Sciences, Vol 22 Nos 3 & 4 = Am. J. Math-s. American Journal of Mathematics = Amer. J. Math. American Journal of Mathematics = Am J Math American Journal of Mathematics = Am. J. Math. American Journal of Medical Electronics = Am J Med Electron American Journal of Medical Electronics = Am. J. Med. Electron. American journal of medical genetics = Am J Med Genet American Journal of Medical Genetics=Am J Med Genet;; American Journal of Medical Genetics = Am J Med Genet American Journal of Medical Genetics = Am. J. Med. Genet. American journal of medical genetics. Part A = Am J Med Genet A American Journal of Medical Genetics Part A = Am J Med Genet A American Journal of Medical Genetics Part A = Am. J. Med. Genet. A American Journal of Medical Genetics. Part A = Am. J. Med. Genet. A. American Journal of Medical Genetics Part B-neuropsychiatric Genetics = Am J Med Genet B American Journal of Medical Genetics Part B-neuropsychiatric Genetics = Am. J. Med. Genet. B. American Journal of Medical Genetics. Part B, Neuropsychiatric Genetics = Am. J. Med. Genet. B Neuropsychiatr. Genet. American journal of medical genetics. Part B, Neuropsychiatric genetics : the official publication of the International Society of Psychiatric Genetics = Am J Med Genet B Neuropsychiatr Genet American Journal of Medical Genetics Part C-seminars in Medical Genetics = Am J Med Genet C American Journal of Medical Genetics Part C-seminars in Medical Genetics = Am. J. Med. Genet. C. American journal of medical genetics. Part C, Seminars in medical genetics = Am J Med Genet C Semin Med Genet American Journal of Medical Genetics. Part C, Seminars in Medical Genetics = Am. J. Med. Genet. C Semin. Med. Genet. American journal of medical genetics. Supplement = Am J Med Genet Suppl American Journal of Medical Genetics. Supplement=Am J Med Genet Suppl;; American Journal of Medical Genetics. Supplement = Am. J. Med. Genet. Suppl. American Journal of Medical Quality=Am J Med Qual;; American Journal of Medical Quality = Am J Med Qual American Journal of Medical Quality = Am. J. Med. Qual. American journal of medical quality : the official journal of the American College of Medical Quality = Am J Med Qual American Journal of Medical Technology = Am J Med Technol American Journal of Medical Technology = Am. J. Med. Technol. American Journal of Medicine=Am J Med;; American Journal of Medicine = Am J Med American Journal of Medicine = Am. J. Med. American Journal of Mens Health = Am J Mens Health American Journal of Mens Health = Am. J. Mens Health American Journal of Mental Deficiency = Am J Ment Def American Journal of Mental Deficiency = Am. J. Ment. Def. American journal of mental deficiency = Am J Ment Defic American Journal of Mental Deficiency = Am. J. Ment. Defic. American Journal of Mental Deficiency = Am J Ment Retard American Journal of Mental Deficiency = Am. J. Ment. Retard. American journal of mental retardation : AJMR = Am J Ment Retard American Journal of Mental Retardation=Am J Ment Retard;; American Journal of Mental Retardation = Am. J. Ment. Retard. American journal of nephrology = Am J Nephrol American Journal of Nephrology=Am J Nephrol;; American Journal of Nephrology = Am J Nephrol American Journal of Nephrology = Am. J. Nephrol. American Journal of Neuroradiology = Am J Neuroradiol American Journal of Neuroradiology = Am. J. Neuroradiol. American Journal of Noninvasive Cardiology = Am J Noninvas Card American Journal of Noninvasive Cardiology = Am. J. Noninvas. Card. American Journal of Numismatics = AJN American Journal of Numismatics = AmJNum American Journal of Nursing=Am J Nurs;; American Journal of Nursing = Am J Nurs American Journal of Nursing = Am. J. Nurs. American journal of obstetrics and gynecology = Am J Obstet Gynecol American Journal of Obstetrics and Gynecology=Am J Obstet Gynecol;; American Journal of Obstetrics and Gynecology = Am J Obstet Gynecol American Journal of Obstetrics and Gynecology = Am. J. Obstet. Gynecol. American Journal of Occupational Therapy=Am J Occup Ther;; American Journal of Occupational Therapy = Am J Occup Ther American Journal of Occupational Therapy = Am. J. Occup. Ther. American journal of ophthalmology = Am J Ophthalmol American Journal of Ophthalmology=Am J Ophthalmol;; American Journal of Ophthalmology = Am J Ophthalmol American Journal of Ophthalmology = Am. J. Ophthalmol. American Journal of Optometry and Archives of American Academy of Optometry = Amer J Opt Arch Am A American Journal of Optometry and Archives of American Academy of Optometry = Amer. J. Opt. Arch. Am. A. American journal of optometry and archives of American Academy of Optometry = Am J Optom Arch Am Acad Optom American Journal of Optometry and Archives of American Academy of Optometry = Am. J. Optom. Arch. Am. Acad. Optom. American journal of optometry and physiological optics = Am J Optom Physiol Opt American Journal of Optometry and Physiological Optics = Am. J. Optom. Physiol. Opt. American Journal of Optometry and Physiological Optics = Am J Optom Phys Opt American Journal of Optometry and Physiological Optics = Am. J. Optom. Phys. Opt. American Journal of Orthodontics = Amer J Orthodontics American Journal of Orthodontics = Amer. J. Orthodontics American journal of orthodontics = Am J Orthod American Journal of Orthodontics = Am. J. Orthod. American Journal of Orthodontics and Dentofacial Orthopedics = Am J Orthod Dentofac American Journal of Orthodontics and Dentofacial Orthopedics = Am. J. Orthod. Dentofac. American Journal of Orthodontics and Dentofacial Orthopedics=Am J Orthod Dentofacial Orthop;; American Journal of Orthodontics and Dentofacial Orthopedics = Am. J. Orthod. Dentofacial Orthop. American journal of orthodontics and dentofacial orthopedics : official publication of the American Association of Orthodontists, its constituent societies, and the American Board of Orthodontics = Am J Orthod Dentofacial Orthop American Journal of Orthodontics and Oral Surgery-oral Surgery = Am J Orthod Oral Sur American Journal of Orthodontics and Oral Surgery-oral Surgery = Am. J. Orthod. Oral Sur. American Journal of Orthodontics and Oral Surgery-orthodontics = Am J Orthod Oral Sur American Journal of Orthodontics and Oral Surgery-orthodontics = Am. J. Orthod. Oral Sur. American Journal of Orthopedics=Am J Orthop;; American Journal of Orthopedics = Am. J. Orthop. American journal of orthopedics (Belle Mead, N.J.) = Am J Orthop American Journal of Orthopedic Surgery = Am. J. Orthop. Surg. American Journal of Orthopsychiatry = Am J Orthopsychiat American Journal of Orthopsychiatry = Am. J. Orthopsychiat. American Journal of Orthopsychiatry=Am J Orthopsychiatry;; American Journal of Orthopsychiatry = Am. J. Orthopsychiatry American Journal of Otolaryngology = Am J Otolaryng American Journal of Otolaryngology = Am. J. Otolaryng. American journal of otolaryngology = Am J Otolaryngol American Journal of Otolaryngology=Am J Otolaryngol;; American Journal of Otolaryngology = Am. J. Otolaryngol. American Journal of Otology=Am J Otol;; American Journal of Otology = Am J Otol American Journal of Otology = Am. J. Otol. American Journal of Pathology=Am J Pathol;; American Journal of Pathology = Am J Pathol American Journal of Pathology = Am. J. Pathol. American Journal of Pediatric Hematology Oncology = Am J Pediat Hematol American Journal of Pediatric Hematology Oncology = Am. J. Pediat. Hematol. American Journal of Pediatric Hematology/Oncology = Am. J. Pediatr. Hematol. Oncol. American Journal of Perinatology = Am J Perinat American Journal of Perinatology = Am. J. Perinat. American journal of perinatology = Am J Perinatol American Journal of Perinatology=Am J Perinatol;; American Journal of Perinatology = Am. J. Perinatol. American journal of pharmaceutical education = Am J Pharm Educ American Journal of Pharmaceutical Education = Am J Pharm Educ American Journal of Pharmaceutical Education = Am. J. Pharm. Educ. American Journal of Pharmacogenomics = Am J Pharmacogenomic American Journal of Pharmacogenomics = Am. J. Pharmacogenomic. American Journal of Pharmacogenomics = Am. J. Pharmacogenomics American journal of pharmacogenomics : genomics-related research in drug development and clinical practice = Am J Pharmacogenomics American Journal of Pharmacology and Toxicology = Am. J. Pharmacol. Toxicol. American Journal of Pharmacy = Am J Pharm American Journal of Pharmacy = Am. J. Pharm. American journal of pharmacy and the sciences supporting public health = Am J Pharm Sci Support Public Health American Journal of Pharmacy and the Sciences Supporting Public Health = Am. J. Pharm. Sci. Support. Public Health American Journal of Philology = AJPh American Journal of Philology = AJPh American journal of philology = Am J Philol American Journal of Philology = Am J Philology American Journal of Philology = Am. J. Philology American journal of physical anthropology = Am J Phys Anthropol American Journal of Physical Anthropology=Am J Phys Anthropol;; American Journal of Physical Anthropology = Am J Phys Anthropol American Journal of Physical Anthropology = Am. J. Phys. Anthropol. American Journal of Physical Anthropology-new Series = Am J Phys Anthrop-ne American Journal of Physical Anthropology-new Series = Am. J. Phys. Anthrop-ne. American Journal of Physical Medicine = Amer J Physical Med American Journal of Physical Medicine = Amer. J. Physical Med. American journal of physical medicine = Am J Phys Med American Journal of Physical Medicine = Am. J. Phys. Med. American Journal of Physical Medicine and Rehabilitation=Am J Phys Med Rehabil;; American Journal of Physical Medicine and Rehabilitation = Am. J. Phys. Med. Rehabil. American Journal of Physical Medicine & Rehabilitation = Am J Phys Med Rehab American Journal of Physical Medicine & Rehabilitation = Am. J. Phys. Med. Rehab. American journal of physical medicine & rehabilitation / Association of Academic Physiatrists = Am J Phys Med Rehabil American Journal of Physics = Amer. J. Phys. American journal of physics = Am J Phys American Journal of Physics = Am J Phys American Journal of Physics = Am. J. Phys. American journal of physiologic imaging = Am J Physiol Imaging American Journal of Physiologic Imaging = Am. J. Physiol. Imaging American Journal of Physiology=Am J Physiol;; American Journal of Physiology = Am J Physiol American Journal of Physiology = Am. J. Physiol. American Journal of Physiology-cell Physiology = Am J Physiol-cell Ph American Journal of Physiology-cell Physiology = Am. J. Physiol-cell. Ph. American journal of physiology. Cell physiology = Am J Physiol Cell Physiol American Journal of Physiology-endocrinology and Metabolism = Am J Physiol-endoc M American Journal of Physiology-endocrinology and Metabolism = Am. J. Physiol-endoc. M. American journal of physiology. Endocrinology and metabolism = Am J Physiol Endocrinol Metab American Journal of Physiology-gastrointestinal and Liver Physiology = Am J Physiol-gastr L American Journal of Physiology-gastrointestinal and Liver Physiology = Am. J. Physiol-gastr. L. American journal of physiology. Gastrointestinal and liver physiology = Am J Physiol Gastrointest Liver Physiol American Journal of Physiology-heart and Circulatory Physiology = Am J Physiol-heart C American Journal of Physiology-heart and Circulatory Physiology = Am. J. Physiol-heart. C. American journal of physiology. Heart and circulatory physiology = Am J Physiol Heart Circ Physiol American Journal of Physiology-lung Cellular and Molecular Physiology = Am J Physiol-lung C American Journal of Physiology-lung Cellular and Molecular Physiology = Am. J. Physiol-lung. C. American journal of physiology. Lung cellular and molecular physiology = Am J Physiol Lung Cell Mol Physiol American Journal of Physiology-regulatory Integrative and Comparative Physiology = Am J Physiol-reg I American Journal of Physiology-regulatory Integrative and Comparative Physiology = Am. J. Physiol-reg. I. American journal of physiology. Regulatory, integrative and comparative physiology = Am J Physiol Regul Integr Comp Physiol American Journal of Physiology-renal Fluid and Electrolyte Physiology = Am J Physiol-renal American Journal of Physiology-renal Fluid and Electrolyte Physiology = Am. J. Physiol-renal. American Journal of Physiology-renal Physiology = Am J Physiol-renal American Journal of Physiology-renal Physiology = Am. J. Physiol-renal. American journal of physiology. Renal physiology = Am J Physiol Renal Physiol American Journal of Physiology. Renal Physiology = Am. J. Physiol. Renal Physiol. American Journal of Political Science = Am J Polit Sci American Journal of Political Science = Am. J. Polit. Sci. American journal of political science = Am J Pol Sci American Journal of Potato Research = Am J Potato Res American Journal of Potato Research = Am. J. Potato Res. American journal of practical nursing = Am J Pract Nurs American Journal of Practical Nursing = Am. J. Pract. Nurs. American journal of preventive medicine = Am J Prev Med American Journal of Preventive Medicine=Am J Prev Med;; American Journal of Preventive Medicine = Am J Prev Med American Journal of Preventive Medicine = Am. J. Prev. Med. American journal of primatology = Am J Primatol American Journal of Primatology=Am J Primatol;; American Journal of Primatology = Am J Primatol American Journal of Primatology = Am. J. Primatol. American journal of proctology = Am J Proctol American Journal of Proctology = Am. J. Proctol. American Journal of Proctology = Am J Proctol Gastro American Journal of Proctology = Am. J. Proctol. Gastro. American Journal of Proctology, Gastroenterology and Colon and Rectal Surgery = Am. J. Proctol. Gastroenterol. Colon Rectal Surg. American Journal of Proctology Gastroenterology & Colon & Rectal Surgery = Am J Proctol Gastro American Journal of Proctology Gastroenterology & Colon & Rectal Surgery = Am. J. Proctol. Gastro. American journal of proctology, gastroenterology & colon & rectal surgery = Am J Proctol Gastroenterol Colon Rectal Surg American Journal of Psychiatry = Am J Psychiat American Journal of Psychiatry = Am. J. Psychiat. American Journal of Psychiatry=Am J Psychiatry;; American Journal of Psychiatry = Am. J. Psychiatry American journal of psychoanalysis = Am J Psychoanal American Journal of Psychoanalysis=Am J Psychoanal;; American Journal of Psychoanalysis = Am J Psychoanal American Journal of Psychoanalysis = Am. J. Psychoanal. American Journal of Psychology=Am J Psychol;; American Journal of Psychology = Am J Psychol American Journal of Psychology = Am. J. Psychol. American journal of psychotherapy = Am J Psychother American Journal of Psychotherapy=Am J Psychother;; American Journal of Psychotherapy = Am J Psychother American Journal of Psychotherapy = Am. J. Psychother. American journal of public health = Am J Public Health American Journal of Public Health=Am J Public Health;; American Journal of Public Health = Am J Public Health American Journal of Public Health = Am. J. Public Health American Journal of Public Health and The Nations Health = Am J Public Health N American Journal of Public Health and The Nations Health = Am. J. Public Health N. American journal of public health and the nation's health = Am J Public Health Nations Health American Journal of Public Health and the Nation's Health = Am. J. Public Health Nations Health American Journal of Public Hygiene = Am J Public Hyg American Journal of Public Hygiene = Am. J. Public Hyg. American Journal of Public Hygiene and Journal of The Massachusetts Association of Boards of Health = Am J Publ Hyg J Mass American Journal of Public Hygiene and Journal of The Massachusetts Association of Boards of Health = Am. J. Publ. Hyg. J. Mass. American journal of reproductive immunology : AJRI : official journal of the American Society for the Immunology of Reproduction and the International Coordination Committee for Immunology of Reproduction = Am J Reprod Immunol American Journal of Reproductive Immunology=Am J Reprod Immunol;; American Journal of Reproductive Immunology = Am J Reprod Immunol American Journal of Reproductive Immunology = Am. J. Reprod. Immunol. American journal of reproductive immunology and microbiology : AJRIM = Am J Reprod Immunol Microbiol American Journal of Reproductive Immunology and Microbiology = Am J Reprod Im Mic American Journal of Reproductive Immunology and Microbiology = Am. J. Reprod. Im. Mic. American Journal of Reproductive Immunology and Microbiology = Am J Reprod Immunol American Journal of Reproductive Immunology and Microbiology = Am. J. Reprod. Immunol. American Journal of Reproductive Immunology and Microbiology = Am. J. Reprod. Immunol. Microbiol. American journal of reproductive immunology (New York, N.Y. : 1989) = Am J Reprod Immunol American Journal of Respiratory and Critical Care Medicine = Am J Resp Crit Care American Journal of Respiratory and Critical Care Medicine = Am. J. Resp. Crit. Care American journal of respiratory and critical care medicine = Am J Respir Crit Care Med American Journal of Respiratory and Critical Care Medicine=Am J Respir Crit Care Med;; American Journal of Respiratory and Critical Care Medicine = Am. J. Respir. Crit. Care Med. American Journal of Respiratory Cell and Molecular Biology = Am J Resp Cell Mol American Journal of Respiratory Cell and Molecular Biology = Am. J. Resp. Cell Mol. American journal of respiratory cell and molecular biology = Am J Respir Cell Mol Biol American Journal of Respiratory Cell and Molecular Biology=Am J Respir Cell Mol Biol;; American Journal of Respiratory Cell and Molecular Biology = Am. J. Respir. Cell Mol. Biol. American journal of respiratory medicine : drugs, devices, and other interventions = Am J Respir Med American Journal of Rhinology & Allergy = Amj Rhinol Allergy American Journal of Rhinology & Allergy = Amj. Rhinol. Allergy American Journal of Rhinology & Allergy = Am J Rhinol Allergy American Journal of Rhinology & Allergy = Am. J. Rhinol. Allergy American journal of rhinology = Am J Rhinol American Journal of Rhinology=Am J Rhinol;; American Journal of Rhinology = Am J Rhinol American Journal of Rhinology = Am. J. Rhinol. American Journal of Roentgenology = Am J Roentgenol American Journal of Roentgenology = Am. J. Roentgenol. American Journal of Roentgenology and Radium Therapy = Am J Roentgenol Radi American Journal of Roentgenology and Radium Therapy = Am. J. Roentgenol. Radi. American Journal of Roentgenology Radium Therapy and Nuclear Medicine = Amer J Roentgenol Ra American Journal of Roentgenology Radium Therapy and Nuclear Medicine = Amer. J. Roentgenol. Ra. American Journal of Roentgenology, Radium Therapy and Nuclear Medicine = Am. J. Roentgenol. Radium Ther. Nucl. Med. American journal of science = Am J Sci American Journal of Science = Am J Sci American Journal of Science = Am. J. Sci. American Journal of Semiotics = Am J Semiotics American Journal of Semiotics = Am. J. Semiotics American Journal of Sociology = Am J Sociol American Journal of Sociology = Am. J. Sociol. American Journal Of Sociology = Am J Sociol American journal of speech-language pathology / American Speech-Language-Hearing Association = Am J Speech Lang Pathol American Journal of Speech-language Pathology = Am J Speech-lang Pat American Journal of Speech-language Pathology = Am. J. Speech-lang. Pat. American Journal of Sports Medicine = Am J Sport Med American Journal of Sports Medicine = Am. J. Sport. Med. American Journal of Sports Medicine=Am J Sports Med;; American Journal of Sports Medicine = Am. J. Sports Med. American journal of surgery = Am J Surg American Journal of Surgery=Am J Surg;; American Journal of Surgery = Am J Surg American Journal of Surgery = Am. J. Surg. American Journal of Surgical Pathology=Am J Surg Pathol;; American Journal of Surgical Pathology = Am J Surg Pathol American Journal of Surgical Pathology = Am. J. Surg. Pathol. American journal of syphilis, gonorrhea, and venereal diseases = Am J Syph Gonorrhea Vener Dis American Journal of the Medical Sciences = Am. J. Med. Sci. American Journal of The Medical Sciences=Am J Med Sci;; American Journal of The Medical Sciences = Am J Med Sci American Journal of The Medical Sciences = Am. J. Med. Sci. American journal of therapeutics = Am J Ther American Journal of Therapeutics = Am J Ther American Journal of Therapeutics = Am. J. Ther. American Journal of Transplantation = Am J Transplant American Journal of Transplantation = Am. J. Transplant. American journal of transplantation : official journal of the American Society of Transplantation and the American Society of Transplant Surgeons = Am J Transplant American Journal of Tropical Medicine = Am J Trop Med American Journal of Tropical Medicine = Am. J. Trop. Med. American Journal of Tropical Medicine and Hygiene=Am J Trop Med Hyg;; American Journal of Tropical Medicine and Hygiene = Am J Trop Med Hyg American Journal of Tropical Medicine and Hygiene = Am. J. Trop. Med. Hyg. American journal of veterinary medicine = Am J Vet Med American journal of veterinary research = Am J Vet Res American Journal of Veterinary Research=Am J Vet Res;; American Journal of Veterinary Research = Am J Vet Res American Journal of Veterinary Research = Am. J. Vet. Res. American Journal on Addictions=Am J Addict;; American Journal on Addictions = Am. J. Addict. American Journal On Addictions = Am J Addiction American Journal On Addictions = Am. J. Addiction. American Journal On Mental Retardation = Am J Ment Retard American Journal On Mental Retardation = Am. J. Ment. Retard. American laboratory = Am Lab American Laboratory = Am Lab American Laboratory = Am. Lab. American Land & Life Series = Am Land Lif American Land & Life Series = Am. Land Lif. American Landscape in The Poetry of Frost, Bishop, and Ashbery: The House Abandoned = Am Lit Read Twenty-f American Landscape in The Poetry of Frost, Bishop, and Ashbery: The House Abandoned = Am. Lit. Read. Twenty-f. American laundry digest = Am Laund Dig American Laundry Digest = Am. Laund. Dig. American Law and Economics Review=Amer. Law Econ. Rev. American Law and Economics Review = Am Law Econ Rev American Law and Economics Review = Am. Law Econ. Rev. American Law Register = Am Law Regist American Law Register = Am. Law Regist. American law reports. ALR 3d. Cases and annotations = Am Law Rep ALR 3rd Cases Annot American Liberal Religious Thought = Amer Lib Rel Thought American Liberal Religious Thought = Amer. Lib. Rel. Thought American libraries = Am Libr American Libraries = Am. Libr. American Literacy Scholarship: An Annual 2008 = Am Lit Scholarship American Literacy Scholarship: An Annual 2008 = Am. Lit. Scholarship. American Literary History = Am Lit Hist American Literary History = Am. Lit. Hist. American Literary Realism 1870-1910 = Am Lit Realism American Literary Realism 1870-1910 = Am. Lit. Realism American Literary Realism = Am Lit Realism American Literary Realism = Am. Lit. Realism American Literary Scholarship-an Annual = Am Lit Scholarship American Literary Scholarship-an Annual = Am. Lit. Scholarship. American literature; a journal of literary history, criticism and bibliography = Am Lit American Literature = Am Lit American Literature = Am. Lit. American Literature and The Culture of Reprinting, 1834-1853 = Mater Texts American Literature and The Culture of Reprinting, 1834-1853 = Mater. Texts. American Literature Readings in The Twenty-first Century = Am Lit Read Twenty-f American Literature Readings in The Twenty-first Century = Am. Lit. Read. Twenty-f. American Lung Association bulletin = Am Lung Assoc Bull American Lung Association Bulletin = Am. Lung Assoc. Bull. American Machinist = Am Mach American Machinist = Am. Mach. American Malacological Bulletin = Am Malacol Bull American Malacological Bulletin = Am. Malacol. Bull. American Marketing Association Conference Proceedings = Ama Conf P American Marketing Association Conference Proceedings = Ama. Conf. P. American Marketing Association Proceedings Series = Ama Educ Pr American Marketing Association Proceedings Series = Ama. Educ. Pr. American Marketing Association Proceedings Series = Amer Mar As American Marketing Association Proceedings Series = Amer. Mar. As. American Mathematical Monthly = Am Math Mon American Mathematical Monthly = Am. Math. Mon. American Mathematical Society = Bull. Amer. Math. Soc. (N.S.) American Mathematical Society Colloquium Publications = Amer. Math. Soc. Colloq. Publ. American Mathematical Society Translations, Series 2 = Amer. Math. Soc. Transl. Ser. 2 American medical news = Am Med News American Medical News = Am. Med. News American Metric Journal = Am Metric J American Metric Journal = Am. Metric J. American Midland Naturalist = Am Midl Nat American Midland Naturalist = Am. Midl. Nat. American Midwest = Midwes Hist Cult American Midwest = Midwes. Hist. Cult. American Mineralogist = Am Mineral American Mineralogist = Am. Mineral. American Mining Congress Journal = Am Min Congr J American Mining Congress Journal = Am. Min. Congr. J. American Museum novitates = Am Mus Novit American Museum Novitates = Am Mus Novit American Museum Novitates = Am. Mus. Novit. American Music = Am Music American Music = Am. Music American Naturalist = Am Nat American Naturalist = Am. Nat. American Neptune = Am Neptune American Neptune = Am. Neptune American Nineteenth Century History = Am 19 Century Hist American Nineteenth Century History = Am. 19. Century Hist. American Notes & Queries = Am Note Queries American Notes & Queries = Am. Note. Queries American Notes & Queries = Anq-q J Short Art N American Notes & Queries = Anq-q. J. Short. Art. N. American Numismatic Society. Numismatic Notes and Monographs = NNM American Nurse = Am. Nurse American Nurses Association Publications = ANA Publ American Nurses Association Publications = ANA Publ. American Orthoptic Journal = Am. Orthopt. J. American Paper Industry = Am Pap Ind American Paper Industry = Am. Pap. Ind. American pharmacy = Am Pharm American Pharmacy = Am Pharm American Pharmacy = Am. Pharm. American philosophical quarterly = Am Philos Q American Philosophical Quarterly = Am Philos Quart American Philosophical Quarterly = Am. Philos. Quart. American Philosophical Quarterly = APhQ American Phytopathological Society Symposium Series = Aps Symp Ser American Phytopathological Society Symposium Series = Aps. Symp. Ser. American Poetry Review = Am Poetry Rev American Poetry Review = Am. Poetry Rev. American Policy Toward Israel: The Power and Limits of Beliefs = Lse Int Stud Ser American Policy Toward Israel: The Power and Limits of Beliefs = Lse. Int. Stud. Ser. American Political Economic and Security Issue = Am Polit Econ Secur American Political Economic and Security Issue = Am. Polit. Econ. Secur. American Political Parties and Constitutional Politics = Ashbr Const American Political Parties and Constitutional Politics = Ashbr. Const. American Political Poetry Into The 21st Century = Am Lit Read Twenty-f American Political Poetry Into The 21st Century = Am. Lit. Read. Twenty-f. American Political Science Review=Amer. Polit. Sci. Rev. American Political Science Review = Am Polit Sci Rev American Political Science Review = Am. Polit. Sci. Rev. American politics quarterly = Am Polit Q American Politics Quarterly = Am Polit Quart American Politics Quarterly = Am. Polit. Quart. American Politics Research = Am Polit Res American Politics Research = Am. Polit. Res. American potato journal = Am Potato J American Potato Journal = Am Potato J American Potato Journal = Am. Potato J. American practitioner and digest of treatment = Am Pract Dig Treat American Practitioner and Digest of Treatment = Am Pract Dig Treat American Practitioner and Digest of Treatment = Am. Pract. Dig. Treat. American Presbyterian = Am Presbyt American Presbyterians-journal of Presbyterian History = Am Presbyterian American Presbyterians-journal of Presbyterian History = Am. Presbyterian American Programmer = Am Program American Programmer = Am. Program. American Prospect=Amer. Prospect American Protestants and Tv in The 1950s: Responses to A New Medium = Relig Cult Crit American Protestants and Tv in The 1950s: Responses to A New Medium = Relig. Cult. Crit. American Psychologist=Am Psychol;; American Psychologist = Am Psychol American Psychologist = Am. Psychol. American Psychopathological Association Series = Am Psychop American Psychopathological Association Series = Am. Psychop. American quarterly = Am Q American Quarterly = Am Quart American Quarterly = Am. Quart. American Railway Engineering Assoc Bulletin, Bulletin 736, ( Proceedings Vol 93, 1992 ) = Am Rail Eng American Railway Engineering Assoc Bulletin, Bulletin 736, ( Proceedings Vol 93, 1992 ) = Am. Rail. Eng. American Railway Engineering Association Bulletin = Am Rail Eng American Railway Engineering Association Bulletin = Am. Rail. Eng. American Railway Engineering Association Bulletin, No 732, ( Proceedings Vol 92, 1991 ) = Am Rail Eng American Railway Engineering Association Bulletin, No 732, ( Proceedings Vol 92, 1991 ) = Am. Rail. Eng. American Railway Engineering Association Bulletin, No 733, ( Proceedings Vol 92, 1991 ) = Am Rail Eng American Railway Engineering Association Bulletin, No 733, ( Proceedings Vol 92, 1991 ) = Am. Rail. Eng. American Railway Engineering Association Bulletin, Vol 91, No 726 ( 1990 ) = Am Rail Eng American Railway Engineering Association Bulletin, Vol 91, No 726 ( 1990 ) = Am. Rail. Eng. American Real Estate and Urban Economics Association Journal=Amer. Real Estate Urban Econ. Assoc. J. American rehabilitation = Am Rehabil American Rehabilitation = Am. Rehabil. American Review of Public Administration = Am Rev Public Adm American Review of Public Administration = Am. Rev. Public Adm. American Review of Respiratory Disease = Am Rev Respir Dis American Review of Respiratory Disease = Am. Rev. Respir. Dis. American review of tuberculosis = Am Rev Tuberc American Review of Tuberculosis = Am Rev Tuberc Pulm American Review of Tuberculosis = Am. Rev. Tuberc. Pulm. American Review of Tuberculosis and Pulmonary Diseases = Am Rev Tuberc Pulm American Review of Tuberculosis and Pulmonary Diseases = Am. Rev. Tuberc. Pulm. American Royalty: The Bush and Clinton Families and The Danger to The American Presidency = Evol Am Presid American Royalty: The Bush and Clinton Families and The Danger to The American Presidency = Evol. Am. Presid. American Scholar = Am Scholar American Scholar = Am. Scholar American Schools of Oriental Research Archaeological Reports = Amer Sch Orient Res American Schools of Oriental Research Archaeological Reports = Amer. Sch. Orient. Res. American Scientist = Amer. Sci. American scientist = Am Sci American Scientist = Am Sci American Scientist = Am. Sci. American Scientist On The Research Frontier = Archimedes American Scientist On The Research Frontier = Archimedes. American Series in Mathematical and Management Sciences = Am S Math M American Series in Mathematical and Management Sciences = Am. S. Math. M. American Society for Public Administration Series On Public Administration and Public Policy = Am Soc Public Admin American Society for Public Administration Series On Public Administration and Public Policy = Am. Soc. Public Admin. American Society for Testing and Materials Special Technical Publication = Am Soc Test Mater American Society for Testing and Materials Special Technical Publication = Am. Soc. Test. Mater. American Society for Testing and Materials Special Technical Publications = Am Soc Test Mater American Society for Testing and Materials Special Technical Publications = Am. Soc. Test. Mater. American Society of International Law - Proceedings of The 88th Annual Meeting = P Am S In L American Society of International Law - Proceedings of The 88th Annual Meeting = P. Am. S. In. L. American Society of Mechanical Engineers = Trans. ASME J. Appl. Mech. American Society of Plant Physiologists Symposium Publications = Aspp Symp P American Society of Plant Physiologists Symposium Publications = Aspp. Symp. P. American Sociological Association Presidential Series = Asa Pres S American Sociological Association Presidential Series = Asa. Pres. S. American sociological review = Am Sociol Rev American Sociological Review = Am Sociol Rev American Sociological Review = Am. Sociol. Rev. American Sociologist = Am Sociol American Sociologist = Am. Sociol. American Soc of Animal Science, Western Section - Proceedings = Asas Ws P American Soc of Animal Science, Western Section - Proceedings = Asas. Ws. P. American speech = Am Speech American Speech = Am Speech American Speech = Am. Speech American Statistician=Amer. Statistician American Statistician = Am Stat American Statistician = Am. Stat. American Story: Mexican American Entrepreneurship and Wealth Creation = Int Ser Technol Poli American Story: Mexican American Entrepreneurship and Wealth Creation = Int. Ser. Technol. Poli. American Studies in Greece = Amer St Gr American Studies in Greece = Amer. St. Gr. American Studies in Papyrology = AmStP American Studies in Scandinavia = Am Stud Scand American Studies in Scandinavia = Am. Stud. Scand. American Studies International = Am Stud Int American Studies International = Am. Stud. Int. American studies (Lawrence, Kan.) = Am Stud (Lawrence) American Surgeon=Am Surg;; American Surgeon = Am. Surg. American Surgeon = Am Surgeon American Surgeon = Am. Surgeon American Theorists of The Novel: Henry James, Lionel Trilling and Wayne C. Booth = Routl Crit Thinkers American Theorists of The Novel: Henry James, Lionel Trilling and Wayne C. Booth = Routl. Crit. Thinkers. American Transcendental Quarterly = Am Transcend Quart American Transcendental Quarterly = Am. Transcend. Quart. American Universities Field Staff reports: Africa = Am Univ Field Staff Rep Afr American Universities Field Staff reports: Asia = Am Univ Field Staff Rep Asia American Universities Field Staff reports: North America = Am Univ Field Staff Rep North Am American Universities Field Staff reports: South America = Am Univ Field Staff Rep South Am American University Law Review = Am. Univ. Law Rev. American University Studies = Amer. Univ. Stud. Ser. V Philos. American University Studies = Am. Univ. Stud. Ser. IX Hist. American University Studies, Series Ix, History = Amer Univ St Ser Ix American University Studies, Series Ix, History = Amer. Univ. St. Ser. Ix. American University Studies, Series Xiv, Education = Am Un St Ed American University Studies, Series Xiv, Education = Am. Un. St. Ed. American Vegetable Grower = Am Veg Grow American Vegetable Grower = Am. Veg. Grow. American-vietnamese Dialogue, Feb 8-11, 1993 = Aspen Inst Conf Rep American-vietnamese Dialogue, Feb 8-11, 1993 = Aspen. Inst. Conf. Rep. American-vietnamese Dialogue, February 11-14, 1992 = Aspen Inst Conf Rep American-vietnamese Dialogue, February 11-14, 1992 = Aspen. Inst. Conf. Rep. American Water Resources Association Technical Publication Series = Am Wat Res American Water Resources Association Technical Publication Series = Am. Wat. Res. American West = Am West American West = Am. West American zoologist = Am Zool American Zoologist = Am Zool American Zoologist = Am. Zool. Americas = Americas Americas = Americas (Engl ed) America's Curious Botanist: A Tercentennial Reappraisal of John Bartram 1699-1777 = Mem A Philo America's Curious Botanist: A Tercentennial Reappraisal of John Bartram 1699-1777 = Mem. A Philo. America's Family Farms = Agr Issues Policies America's Family Farms = Agr. Issues. Policies. Americas Foods Health Messages and Claims = Crc Contemp Food Sci Americas Foods Health Messages and Claims = Crc. Contemp. Food. Sci. Americas Gold Coinage = Coin Amer P Americas Gold Coinage = Coin. Amer. P. Americas in The Early Modern Atlantic World = Am Early Mod Atl Wor Americas in The Early Modern Atlantic World = Am. Early Mod. Atl. Wor. Americas Most Vulnerable Coastal Communities = Geol Soc Am Spec Pap Americas Most Vulnerable Coastal Communities = Geol. Soc. Am. Spec. Pap. Americas Role in A Changing World, Pt 1 = Adelp Pap Americas Role in A Changing World, Pt 1 = Adelp. Pap. Americas Role in A Changing World, Pt 2 = Adelp Pap Americas Role in A Changing World, Pt 2 = Adelp. Pap. Americas Waterfront Revival: Port Authorities and Urban Redevelopment = City 21st Century Americas Waterfront Revival: Port Authorities and Urban Redevelopment = City. 21st. Century. America, Technology and Strategic Culture = Strateg Hist America, Technology and Strategic Culture = Strateg. Hist. America, The Eu and Strategic Culture = Contemp Secur Stud America, The Eu and Strategic Culture = Contemp. Secur. Stud. America, War and Power: Defining The State, 1775-2005 = War Hist Polit America, War and Power: Defining The State, 1775-2005 = War Hist. Polit. Amerikastudien-american Studies = Amerikastudien Amerikastudien-american Studies = Amerikastudien. Amerikastudien = Amerikastudien Amerind Foundation New World Studies Series = Am Fdn N W Amerind Foundation New World Studies Series = Am. Fdn. N. W. AmFAR report / American Foundation for AIDS Research = AMFAR Rep Amfiteatru Economic = Amfiteatru Econ Amfiteatru Economic = Amfiteatru Econ. AMHC forum = AMHC Forum AMHC Forum = AMHC Forum AMIA Annual Symposium Proceedings = AMIA. Annu. Symp. Proc. AMIA ... Annual Symposium proceedings / AMIA Symposium. AMIA Symposium = AMIA Annu Symp Proc Amiba 2001: High-z Clusters, Missing Baryons, and Cmb Polarization, Proceedings = Astr Soc P Amiba 2001: High-z Clusters, Missing Baryons, and Cmb Polarization, Proceedings = Astr. Soc. P. Amicus = Amicus Amicus Und Amelius: Kriegerfreundschaft Und Gewalt in Mittelalterlicher Erzahltradition = Quell Fors Lit Kul G Amicus Und Amelius: Kriegerfreundschaft Und Gewalt in Mittelalterlicher Erzahltradition = Quell. Fors. Lit. Kul. G. AMIF = Amif Amiloride-sensitive Sodium Channels = Curr Top Membr Amiloride-sensitive Sodium Channels = Curr. Top. Membr. Amines Grafted Cellulose Materials = Mater Sci Technol Amines Grafted Cellulose Materials = Mater. Sci. Technol. Amino-acid Homopolymers Occurring in Nature = Microbiol Monogr Amino-acid Homopolymers Occurring in Nature = Microbiol. Monogr. Amino acids = Amino Acids Amino Acids = Amino Acids Amino Acids Peptides and Proteins-specialist Periodical Report = Amino Acids Pep Prot Amino Acids Peptides and Proteins-specialist Periodical Report = Amino Acids Pep. Prot. Amino Acids, Peptides and Proteins, Vol 35 = Amino Acids Pep Prot Amino Acids, Peptides and Proteins, Vol 35 = Amino Acids. Pep. Prot. Amino Acids, Peptides and Proteins, Vol 36 = Amino Acids Pep Prot Amino Acids, Peptides and Proteins, Vol 36 = Amino Acids. Pep. Prot. Amintaphil = Amintaphil Amiware: Hardware Technology Drivers of Ambient Intelligence = Philips Res Book Ser Amiware: Hardware Technology Drivers of Ambient Intelligence = Philips. Res. Book. Ser. Amme Idaresi Dergisi = Amme Idaresi Derg Amme Idaresi Dergisi = Amme Idaresi Derg. Ammonia Plant Safety = Ammon Plant Ammonia Plant Safety = Ammon. Plant Ammonia Plant Safety and Related Facilities = Ammonia Plant Saf. Relat. Facil Ammonia Plant Safety & Related Facilities, Vol 37 = Ammon Plant Ammonia Plant Safety & Related Facilities, Vol 37 = Ammon. Plant Ammonia Plant Safety & Related Facilities, Vol 38 = Ammon Plant Ammonia Plant Safety & Related Facilities, Vol 38 = Ammon. Plant Ammonia Plant Safety & Related Facilities, Vol 39 = Ammon Plant Ammonia Plant Safety & Related Facilities, Vol 39 = Ammon. Plant Ammonia Plant Safety & Related Facilities, Vol 40 = Ammon Plant Ammonia Plant Safety & Related Facilities, Vol 40 = Ammon. Plant Ammonoidea: Environment, Ecology, and Evolutionary Change = Syst Assoc Ammonoidea: Environment, Ecology, and Evolutionary Change = Syst. Assoc. Amongst Mathematicians: Teaching and Learning Mathematics At University Level = Math Teach Educ Amongst Mathematicians: Teaching and Learning Mathematics At University Level = Math. Teach. Educ. A Móra Ferenc múzeum évkönyve = MuzEvkSzeged Amorphous and Crystalline Insulating Thin Films - 1996 = Mater Res Soc Symp P Amorphous and Crystalline Insulating Thin Films - 1996 = Mater. Res. Soc. Symp. P. Amorphous and Heterogeneous Silicon-based Films-2002 = Mater Res Soc Symp P Amorphous and Heterogeneous Silicon-based Films-2002 = Mater. Res. Soc. Symp. P. Amorphous and Heterogeneous Silicon Thin Films: Fundamentals to Devices-1999 = Mater Res Soc Symp P Amorphous and Heterogeneous Silicon Thin Films: Fundamentals to Devices-1999 = Mater. Res. Soc. Symp. P. Amorphous and Microcrystalline Silicon Technology - 1997 = Mater Res Soc Symp P Amorphous and Microcrystalline Silicon Technology - 1997 = Mater. Res. Soc. Symp. P. Amorphous and Microcrystalline Silicon Technology-1998 = Mater Res Soc Symp P Amorphous and Microcrystalline Silicon Technology-1998 = Mater. Res. Soc. Symp. P. Amorphous and Nanocrystalline Metals = Mater Res Soc Symp P Amorphous and Nanocrystalline Metals = Mater. Res. Soc. Symp. P. Amorphous and Nanocrystalline Silicon-based Films-2003 = Mater Res Soc Symp P Amorphous and Nanocrystalline Silicon-based Films-2003 = Mater. Res. Soc. Symp. P. Amorphous and Nanocrystalline Silicon Science and Technology- 2004 = Mater Res Soc Symp P Amorphous and Nanocrystalline Silicon Science and Technology- 2004 = Mater. Res. Soc. Symp. P. Amorphous and Nanocrystalline Silicon Science and Technology-2005 = Mater Res Soc Symp P Amorphous and Nanocrystalline Silicon Science and Technology-2005 = Mater. Res. Soc. Symp. P. Amorphous and Nanostructured Carbon = Mater Res Soc Symp P Amorphous and Nanostructured Carbon = Mater. Res. Soc. Symp. P. Amorphous and Polycrystalline Thin-film Silicon Science and Technology 2006 = Mater Res Soc Symp P Amorphous and Polycrystalline Thin-film Silicon Science and Technology 2006 = Mater. Res. Soc. Symp. P. Amorphous and Polycrystalline Thin-film Silicon Science and Technology 2007 = Mater Res Soc Symp P Amorphous and Polycrystalline Thin-film Silicon Science and Technology 2007 = Mater. Res. Soc. Symp. P. Amorphous and Polycrystalline Thin-film Silicon Science and Technology-2008 = Mater Res Soc Symp P Amorphous and Polycrystalline Thin-film Silicon Science and Technology-2008 = Mater. Res. Soc. Symp. P. Amorphous Food and Pharmaceutical Systems = Roy Soc Ch Amorphous Food and Pharmaceutical Systems = Roy. Soc. Ch. Amorphous Insulating Thin Films = Mater Res Soc Symp P Amorphous Insulating Thin Films = Mater. Res. Soc. Symp. P. Amorphous Insulators and Semiconductors = Nato Asi 3 High Tech Amorphous Insulators and Semiconductors = Nato. Asi. 3. High. Tech. Amorphous Metallic Materials: Amm Iii = Key Eng Mat Amorphous Metallic Materials: Amm Iii = Key. Eng. Mat. Amorphous Metallic Materials = Key Eng Mat Amorphous Metallic Materials = Key. Eng. Mat. Amorphous Silicon Materials and Solar Cells = Aip Conf Proc Amorphous Silicon Materials and Solar Cells = Aip. Conf. Proc. Amorphous Silicon Technology - 1989 = Mat Res S C Amorphous Silicon Technology - 1989 = Mat. Res. S. C. Amorphous Silicon Technology - 1990 = Mater Res Soc Symp P Amorphous Silicon Technology - 1990 = Mater. Res. Soc. Symp. P. Amorphous Silicon Technology - 1991 = Mater Res Soc Symp P Amorphous Silicon Technology - 1991 = Mater. Res. Soc. Symp. P. Amorphous Silicon Technology-1993 = Mater Res Soc Symp P Amorphous Silicon Technology-1993 = Mater. Res. Soc. Symp. P. Amorphous Silicon Technology-1994 = Mater Res Soc Symp P Amorphous Silicon Technology-1994 = Mater. Res. Soc. Symp. P. Amorphous Silicon Technology - 1996 = Mater Res Soc Symp P Amorphous Silicon Technology - 1996 = Mater. Res. Soc. Symp. P. Amphibian & reptile conservation = Amphib Reptile Conserv Amphibia-reptilia = Amphibia-reptilia Amphiboles: Crystal Chemistry, Occurrence, and Health Issues = Rev Mineral Geochem Amphiboles: Crystal Chemistry, Occurrence, and Health Issues = Rev. Mineral. Geochem. Ampk-s6k1 Signaling Pathway As A Target for Treating Hepatic Insulin Resistance = Hepatol Res Clin Dev Ampk-s6k1 Signaling Pathway As A Target for Treating Hepatic Insulin Resistance = Hepatol. Res. Clin. Dev. Amplification of Chirality = Top Curr Chem Amplification of Chirality = Top. Curr. Chem. Amplitude and Intensity Spatial Interferometry Ii = P Soc Photo-opt Ins Amplitude and Intensity Spatial Interferometry Ii = P. Soc. Photo-opt. Ins. Amplitude and Intensity Spatial Interferometry = P Soc Photo-opt Ins Amplitude and Intensity Spatial Interferometry = P. Soc. Photo-opt. Ins. AM Reports = AM Rep. AM [reports]. United States. Office of Aviation Medicine = AM Rep AMRL-TR. Aerospace Medical Research Laboratories (6570th) = AMRL TR AMRL-TR = AMRL. TR AMRO = AMRO Amsahts 90 = Nasa Conf P Amsahts 90 = Nasa. Conf. P. Amseterdamer Beitrage Zur Alteren Germanistik = Amst Beitr Alter Ger Amseterdamer Beitrage Zur Alteren Germanistik = Amst. Beitr. Alter. Ger. AMS/IP Studies in Advanced Mathematics = AMS/IP Stud. Adv. Math. AMS-MAA Joint Lecture Series = AMS-MAA Joint Lecture Ser. AMS Progress in Mathematics Lecture Series = AMS Progr. Math. Lecture Ser. AMS Short Course Lecture Notes = AMS Short Course Lecture Notes Ams Studies in The Eighteenth Century = Ams St Eigh Ams Studies in The Eighteenth Century = Ams St. Eigh. Ams Studies in The Emblem = Ams St Embl Ams Studies in The Emblem = Ams St. Embl. Amst 02: Advanced Manufacturing Systems and Technology, Proceedings = Cism Cour L Amst 02: Advanced Manufacturing Systems and Technology, Proceedings = Cism. Cour. L. Amst 02: Advanced Manufacturing Systems and Technology, Proceedings = Cism Courses Lect Amst 02: Advanced Manufacturing Systems and Technology, Proceedings = Cism. Courses. Lect. Amst '05: Advanced Manufacturing Systems and Technology, Proceedings = Cism Cour L Amst '05: Advanced Manufacturing Systems and Technology, Proceedings = Cism. Cour. L. Amst '05: Advanced Manufacturing Systems and Technology, Proceedings = Cism Courses Lect Amst '05: Advanced Manufacturing Systems and Technology, Proceedings = Cism. Courses. Lect. Amst'99: Advanced Manufacturing Systems and Technology = Cism Cour L Amst'99: Advanced Manufacturing Systems and Technology = Cism. Cour. L. Amst'99: Advanced Manufacturing Systems and Technology = Cism Courses Lect Amst'99: Advanced Manufacturing Systems and Technology = Cism. Courses. Lect. Amstelodamum = Amstelodamum Amsterdamer Beitrage Zu Alteren Germanistik = Ams B Alt German Amsterdamer Beitrage Zu Alteren Germanistik = Ams. B. Alt. German. Amsterdamer Beitrage Zur Alteren Germanistik = Amst Beitr Alter Ger Amsterdamer Beitrage Zur Alteren Germanistik = Amst. Beitr. Alter. Ger. Amsterdamer Beitrage Zur Alteren Germanistik, Band 66 = Amst Beitr Alter Ger Amsterdamer Beitrage Zur Alteren Germanistik, Band 66 = Amst. Beitr. Alter. Ger. Amsterdamer Beitrage Zur Neueren Germanistik = Ams C Mod G Amsterdamer Beitrage Zur Neueren Germanistik = Ams. C. Mod. G. Amsterdamer Beitrage Zur Neueren Germanistik = Amst Beitr Neuer Ger Amsterdamer Beitrage Zur Neueren Germanistik = Amst. Beitr. Neuer. Ger. Amsterdam Studies in Jewish Philosophy = Amst Stud Jew Philos Amsterdam Studies in Jewish Philosophy = Amst. Stud. Jew. Philos. Amsterdam Studies in Jewish Thought = Amst Stud Jewish Amsterdam Studies in Jewish Thought = Amst. Stud. Jewish Amsterdam Studies in Jewish Thought = Amst Stud Jew Though Amsterdam Studies in Jewish Thought = Amst. Stud. Jew. Though. Amsterdam Studies in the Theory and History of Linguistic Science = Amst. Stud. Theory Hist. Linguist. Sci. Ser. IV Curr. Issues Linguist. Theory Amsterdam Studies in The Theory and History of Linguistic Science : Series Iv - Current Issues in Linguistic Theory = Amst Stud Theory His Amsterdam Studies in The Theory and History of Linguistic Science : Series Iv - Current Issues in Linguistic Theory = Amst. Stud. Theory His. Amsterdam Studies in The Theory and History of Linguistics : Series Iii - Studies in The History of Linguistics = Amst St Th Amsterdam Studies in The Theory and History of Linguistics : Series Iii - Studies in The History of Linguistics = Amst. St. Th. Amsterdam Treaty: National Preference Formation, Interstate Bargaining and Outcome = Oden U St H Amsterdam Treaty: National Preference Formation, Interstate Bargaining and Outcome = Oden. U. St. H. Amta '08: Proceedings of The 9th Wseas International Conference On Acoustics & Music: Theory & Applications = Wseas Mech Eng Ser Amta '08: Proceedings of The 9th Wseas International Conference On Acoustics & Music: Theory & Applications = Wseas Mech. Eng. Ser. Amta '09: Proceedings of The 10th Wseas International Conference On Acoustics and Music: Theory and Applications = Wseas Mech Eng Ser Amta '09: Proceedings of The 10th Wseas International Conference On Acoustics and Music: Theory and Applications = Wseas Mech. Eng. Ser. Amum 2004: Advanced Metrology for Ultrasound in Medicine 2004 = J Phys Conf Ser Amum 2004: Advanced Metrology for Ultrasound in Medicine 2004 = J. Phys. Conf. Ser. Amygdala in Brain Function: Bacic and Clinical Approaches = Ann Ny Acad Sci Amygdala in Brain Function: Bacic and Clinical Approaches = Ann. Ny. Acad. Sci. Amygdala in Brain Function: Basic and Clinical Approaches = Ann Ny Acad Sci Amygdala in Brain Function: Basic and Clinical Approaches = Ann. Ny. Acad. Sci. Amyloid = Amyloid Amyloid-international Journal of Experimental and Clinical Investigation = Amyloid Amyloid-international Journal of Experimental and Clinical Investigation = Amyloid. Amyloid-journal of Protein Folding Disorders = Amyloid Amyloid-journal of Protein Folding Disorders = Amyloid. Amyloidosis: Diagnosis and Treatment = Contemp Hematol Amyloidosis: Diagnosis and Treatment = Contemp. Hematol. Amyloid, Prions, and Other Protein Aggregates = Method Enzymol Amyloid, Prions, and Other Protein Aggregates = Method. Enzymol. Amyloid, Prions, and Other Protein Aggregates = Methods Enzymol Amyloid, Prions, and Other Protein Aggregates = Methods. Enzymol. Amyloid, Prions, and Other Protein Aggregates, Pt B = Method Enzymol Amyloid, Prions, and Other Protein Aggregates, Pt B = Method. Enzymol. Amyloid, Prions, and Other Protein Aggregates, Pt C = Method Enzymol Amyloid, Prions, and Other Protein Aggregates, Pt C = Method. Enzymol. Amyloid : the international journal of experimental and clinical investigation : the official journal of the International Society of Amyloidosis = Amyloid Amyotrophic Lateral Sclerosis = Amyotroph Lateral Sc Amyotrophic Lateral Sclerosis = Amyotroph. Lateral Sc. Amyotrophic Lateral Sclerosis = Amyotroph. Lateral Scler. Amyotrophic Lateral Sclerosis and Other Motor Neuron Diseases = Adv Neurol Amyotrophic Lateral Sclerosis and Other Motor Neuron Diseases = Adv. Neurol. Amyotrophic Lateral Sclerosis and Other Motor Neuron Disorders = Amyotroph Lateral Sc Amyotrophic Lateral Sclerosis and Other Motor Neuron Disorders = Amyotroph. Lateral Sc. Amyotrophic Lateral Sclerosis and Other Motor Neuron Disorders = Amyotroph. Lateral Scler. Other Motor Neuron Disord. Amyotrophic lateral sclerosis and other motor neuron disorders : official publication of the World Federation of Neurology, Research Group on Motor Neuron Diseases = Amyotroph Lateral Scler Other Motor Neuron Disord Amyotrophic Lateral Sclerosis = Int Congr Ser Amyotrophic Lateral Sclerosis = Int. Congr. Ser. Amyotrophic lateral sclerosis : official publication of the World Federation of Neurology Research Group on Motor Neuron Diseases = Amyotroph Lateral Scler ANA clinical conferences = ANA Clin Conf ANA Clinical Conferences = ANA Clin. Conf. ANA clinical sessions = ANA Clin Sess ANA Clinical Sessions = ANA Clin. Sess. Anadolu araştırmaları. Jahrbuch für kleinasiatische Forschung = AnadoluAra Anadolu Kardiyoloji Dergisi = Anadolu Kardiyol. Derg. Anadolu Kardiyoloji Dergisi-the Anatolian Journal of Cardiology = Anadolu Kardiyol Der Anadolu Kardiyoloji Dergisi-the Anatolian Journal of Cardiology = Anadolu Kardiyol. Der. Anadolu Medeniyetleri Müzesi konferansları = AnadoluKonf Anadolu Medeniyetleri Müzesi yıllığı = AnadoluYil Anadolu Psikiyatri Dergisi-anatolian Journal of Psychiatry = Anadolu Psikiyatr De Anadolu Psikiyatri Dergisi-anatolian Journal of Psychiatry = Anadolu Psikiyatr. De. Anadromous Sturgeons: Habitats, Threats, and Management = Am Fish S S Anadromous Sturgeons: Habitats, Threats, and Management = Am. Fish. S. S. A N A E-approche Neuropsychologique Des Apprentissages Chez L Enfant = Anae A N A E-approche Neuropsychologique Des Apprentissages Chez L Enfant = Anae. Anaerobe = Anaerobe Anaerobic Degradation of Chlorinated Solvents = Bioremed Ser Anaerobic Degradation of Chlorinated Solvents = Bioremed. Ser. Anaerobic Treatment of Solid and Liquid Residues = Dech Monog Anaerobic Treatment of Solid and Liquid Residues = Dech. Monog. Anaesthesia=Anaesthesia;; Anaesthesia = Anaesthesia Anaesthesia and Intensive Care = Anaesth Intens Care Anaesthesia and Intensive Care = Anaesth. Intens. Care Anaesthesia and intensive care = Anaesth Intensive Care Anaesthesia and Intensive Care=Anaesth Intensive Care;; Anaesthesia and Intensive Care = Anaesth. Intensive Care Anaesthesia Intensive Care and Pain in Neonates and Children = Anaest Intens Care P Anaesthesia Intensive Care and Pain in Neonates and Children = Anaest. Intens. Care P. Anaesthesia, Intensive Care and Pain in Neonates and Children - Basics = Anaest Intens Care P Anaesthesia, Intensive Care and Pain in Neonates and Children - Basics = Anaest. Intens. Care P. Anaesthesia, resuscitation, and intensive therapy = Anaesth Resusc Intensive Ther Anaesthesia, Resuscitation and Intensive Therapy = Anaesth. Resusc. Intensive Ther. Anaesthesiologie und Reanimation = Anaesthesiol Reanim Anaesthesiologie und Reanimation = Anaesthesiol. Reanim. Anaesthesiologie Und Reanimation=Anaesthesiol Reanim;; Anaesthesist=Anaesthesist;; Anaesthesist = Anaesthesist Anagennesis. A Papyrological Journal = Anagennesis Anais brasileiros de dermatologia = An Bras Dermatol Anais Brasileiros de Dermatologia = An. Bras. Dermatol. Anais Brasileiros De Dermatologia = An Bras Dermatol Anais Brasileiros De Dermatologia = An. Bras. Dermatol. Anais brasileiros de dermatologia e sifilografia = An Bras Derm Sifilogr Anais brasileiros de ginecologia = An Bras Ginecol Anais Brasileiros de Ginecologia = An. Bras. Ginecol. Anais da Academia Brasileira de Ciencias = An Acad Bras Cienc Anais da Academia Brasileira de Ciencias = An. Acad. Bras. Cienc. Anais Da Academia Brasileira de Ciencias=An Acad Bras Cienc;; Anais Da Academia Brasileira De Ciencias = An Acad Bras Cienc Anais Da Academia Brasileira De Ciencias = An. Acad. Bras. Cienc. Anais da Academia Brasileira de Ciências = An Acad. Bras. Cienc. Anais da Academia Brasileira de Ciências = An. Acad. Brasil. Ciênc. Anais da Escola Nacional de Saude Publica e de Medicina Tropical = An Esc Nacl Saude Publica Med Trop (Lisb) Anais da Escola Nacional de Saude Publica e de Medicina Tropical = An. Esc. Nacl. Saude Publica Med. Trop. (Lisb.) Anais da Faculdade de Farmacia do Porto = An Fac Farm Porto Anais da Faculdade de Medicina de Porto Alegre = An Fac Med Porto Alegre Anais da Faculdade de Medicina do Recife = An Fac Med Recife Anais da Faculdade de Odontologia da Universidade Federal de Pernambuco = An Fac Odontol Univ Fed Pernambuco Anais da Faculdade de Odontologia da Universidade Federal de Pernambuco = An. Fac. Odontol. Univ. Fed. Pernambuco Anais de historia : publicacao do Departamento de Historia da Faculdade de Filosofia, Ciencias e Letras de Assis = An Hist Anais de microbiologia = An Microbiol (Rio J) Anais de Microbiologia = An. Microbiol. (Rio. J.) Anais do Instituto de Higiene e Medicina Tropical = An Inst Hig Med Trop (Lisb) Anais do Instituto de Higiene e Medicina Tropical = An. Inst. Hig. Med. Trop. (Lisb.) Anais do Instituto de Medicina Tropical = An Inst Med Trop (Lisb) Anais do Instituto de Medicina Tropical = An. Inst. Med. Trop. (Lisb.) Anais do municípo de Faro = AnMunFaro Anais Nestle = An Nestle (Rio De Janeiro) Anais paulistas de medicina e cirurgia = An Paul Med Cir Anais Paulistas de Medicina e Cirurgia = An. Paul. Med. Cir. Anais. Sao Paulo, Brazil (City) Maternidade = An Matern Sao Paulo Anais. Universidade de Sao Paulo. Faculdade de Medicina = An Fac Med Univ Sao Paulo Analecta Aegyptiaca = AnAe Analecta Bollandiana = AB Analecta Bollandiana = AnalBolland Analecta Husserliana = Analecta Husserl Analecta Husserliana = Analecta Husserl. Analecta Husserliana = Anal Hus Analecta Husserliana = Anal. Hus. Analecta Husserliana-the Yearbook of Phenomenological Research = Anal Hus Yb Analecta Husserliana-the Yearbook of Phenomenological Research = Anal. Hus. Yb. Analecta Malacitana: revista de la Sección de Filología de la Facultad de Filosofía y Letras = AMal Analecta orientalia. Commentationes scientificae de rebus orientis antiqui = AnOr Analecta papyrologica = AnalP Analecta Romana Instituti Danic = ARID Analecta Romana Instituti Danici = AnalRom Analecta sacra Tarraconensia; revista de ciencias historico-eclesiasticas = Analecta Sacra Tarracon Analecta Septentrionalia: Papers On The History of North Germanic Culture and Literature = Reallexikon Ger Alte Analecta Septentrionalia: Papers On The History of North Germanic Culture and Literature = Reallexikon. Ger. Alte. Analele Ştiinţifice ale Universităţii "Al = An. Ştiinţ. Univ. Al. I. Cuza Iaşi Inform. (N.S.) Analele Ştiinţifice ale Universitătii "Al = An. Ştiinţ. Univ. Al. I. Cuza Iaşi. Mat. (N.S.) Analele Ştiinţifice ale Universităţii "Al = An. Ştiinţ. Univ. Al. I. Cuza Iaşi Secţ. I a Mat. Analele stiintifice ale Universitatii "Al. I. Cuza" din Iasi. Sectiunea IIIc, Stiinte economice (1976) = An Stiint Univ AI I Cuza Iasi Sect III C Stiint Econ Analele Stiintifice Ale Universitatii Al I Cuza Din Iasi-serie Noua-matematica = An Stiint U Al I-mat Analele Stiintifice Ale Universitatii Al I Cuza Din Iasi-serie Noua-matematica = An. Stiint. U. Al I-mat. Analele Stiintifice Ale Universitatii Ovidius Constanta-seria Matematica = Analele Stiint Univ Analele Stiintifice Ale Universitatii Ovidius Constanta-seria Matematica = Analele Stiint. Univ. Analele Stiintifice Ale Universitatii Ovidius Constanta-seria Matematica = An Sti U Ovid Co-mat Analele Stiintifice Ale Universitatii Ovidius Constanta-seria Matematica = An. Sti. U. Ovid. Co-mat. Analele Universitatii Bucurersti. Chimie = Ann. Univ. Buc. Chim. Analele Universităţii București = An. Univ. București Mat. Analele Universitatii Bucuresti: Istorie. Universitatea din Bucuresti = An Univ Bucur Istor Analele Universităţii din Craiova = An. Univ. Craiova Ser. Mat. Inform. Analele Universităţii din Galaţi = An. Univ. Galaţi Fasc. II Mat. Fiz. Mec. Teoret. Analele Universităţii din Târgoviște = An. Univ. Târgoviște Fasc. I Analele Universităţii din Timișoara = An. Univ. Timișoara Ser. Ştiinţ. Fiz. Analele Universităţii "Dunărea de Jos" din Galaţi = An. Univ. Dunărea de Jos Galaţi Fasc. II Mat. Fiz. Mec. Teor. Anales Cervantinos = An Cervantinos Anales Cervantinos = An. Cervantinos Anales chilenos de historia de la medicina = An Chil Hist Med Anales De Anatomia = An Anat Anales De Anatomia = An. Anat. Anales de antropologia = An Antropol Anales de arqueología cordobesa = AnCord Anales de Bromatologia = An. Bromatol Anales de cirugia = An Cir (Rosario) Anales de Cirugia = An. Cir. (Rosario) Anales de farmacia hospitalaria = An Farm Hosp (Madr) Anales de Filologia clásica = AFC Anales De Fisica = An Fis Anales De Fisica = An. Fis. Anales de Física = An. Fís. Monogr. Anales De Fisica, Serie B : Aplicacions, Metodos E Instrumentos = An Fis S B Anales De Fisica, Serie B : Aplicacions, Metodos E Instrumentos = An. Fis. S. B Anales De Fisica, Series, Vol 86, No 2 Especial ( 1-164 ) = An Fis S B Anales De Fisica, Series, Vol 86, No 2 Especial ( 1-164 ) = An. Fis. S. B. Anales de Historia antigua y medieval = AHAM Anales de historia antigua y medieval = An Hist Antigua Mediev Anales de historia contemporanea = An Hist Contemp Anales de la Academia de Geografia e Historia de Guatemala. Academia de Geografia e Historia de Guatemala = An Acad Geogr Hist Guatem Anales de la Asociacion Quimica Argentina = An. Asoc. Quim. Argent. Anales De La Asociacion Quimica Argentina = An Asoc Quim Argent Anales De La Asociacion Quimica Argentina = An. Asoc. Quim. Argent. Anales de la Casa de Salud Valdecilla = An Casa Salud Valdecilla Anales de la Facultad de Medicina de Montevideo = An Fac Med Montev Anales de la Facultad de Medicina, Universidad de la Republica, Montevideo, Uruguay = An Fac Med Univ Repub Montev Urug Anales de la Facultad de Medicina, Universidad de la Republica, Montevideo, Uruguay = An. Fac. Med. Univ. Repub. Montev. Urug. Anales de la Facultad de Medicina, Universidad Nacional Mayor de San Marcos de Lima = An. Fac. Med. Lima Anales de la Facultad de Odontologia = An Fac Odontol Anales de la Facultad de Odontologia = An. Fac. Odontol. Anales de la Facultad de Quimica y Farmacia = An Fac Quim Farm (Santiago) Anales De La Literatura Espanola Contemporanea = An Lit Espan Contemp Anales De La Literatura Espanola Contemporanea = An. Lit. Espan. Contemp. Anales de la Real Academia de Farmacia = An Real Acad Farm Anales de la Real Academia de Farmacia; Instituto de Espana = An. Real Acad. Farm. Anales De La Real Academia Nacional De Farmacia = Anal Real Acad Nac F Anales De La Real Academia Nacional De Farmacia = Anal. Real Acad. Nac. F. Anales De La Real Academia Nacional De Farmacia = An Real Acad Nac F Anales De La Real Academia Nacional De Farmacia = An. Real Acad. Nac. F. Anales de la Real Academia Nacional de Medicina = An R Acad Nac Med (Madr) Anales de la Real Academia Nacional de Medicina = An. R. Acad. Nac. Med. (Madr.) Anales de la Real Academia Nacional De Medicina=An R Acad Nac Med (Madr);; Anales De La Real Sociedad Espanola De Fisica Y Quimica = An Soc Esp Fis Quim Anales De La Real Sociedad Espanola De Fisica Y Quimica = An. Soc. Esp. Fis. Quim. Anales De La Real Sociedad Espanola De Fisica Y Quimica Seria A-fisica = An Real Soc Esp Fis Anales De La Real Sociedad Espanola De Fisica Y Quimica Seria A-fisica = An. Real Soc. Esp. Fis. Anales De La Real Sociedad Espanola De Fisica Y Quimica Seria B-quimica = An Real Soc Esp Fis Anales De La Real Sociedad Espanola De Fisica Y Quimica Seria B-quimica = An. Real Soc. Esp. Fis. Anales de la Sociedad de Geografia e Historia. Sociedad de Geografia e Historia de Guatemala = An Soc Geogr Hist Anales de la Sociedad Mexicana de Historia de la Ciencia y de la Tecnologia = An Soc Mex Hist Cienc Tec Anales de la Universidad de Murcia, Facultad de Letras = AUM Anales del Hospital de la Santa Cruz y San Pablo = An Hosp St Cruz San Pablo Anales del Instituto Barraquer = An Inst Barraquer Anales Del Instituto De Biologia = An Inst Biol Anales Del Instituto De Biologia = An. Inst. Biol. Anales del Instituto de Estudios Madrilenos. Instituto de Estudios Madrilenos (Consejo Superior de Investigaciones Cientificas) = An Inst Estud Madr Anales del Instituto de Investigaciones Veterinarias = An Inst Invest Vet Anales del Instituto de Matemáticas = An. Inst. Mat. Univ. Nac. Autónoma México Anales del Instituto Nacional de Antropologia e Historia = An Inst Nac Antropol Hist Anales De Literatura Chilena = An Lit Chil Anales De Literatura Chilena = An. Lit. Chil. Anales Del Jardin Botanico De Madrid = Anal Jardin Bot Mad Anales Del Jardin Botanico De Madrid = Anal. Jardin Bot. Mad. Anales Del Jardin Botanico De Madrid = An Jardin Bot Madrid Anales Del Jardin Botanico De Madrid = An. Jardin Bot. Madrid Anales del Programa Academico de Medicina = An. Programa Acad. Med. (Lima) Anales del Programa Academico de Medicina / Universidad Nacional Mayor de San Marcos de Lima = An Programa Acad Med (Lima) Anales Del Seminario De Historia De La Filosofia = An Semin Hist Filos Anales Del Seminario De Historia De La Filosofia = An. Semin. Hist. Filos. Anales del sistema sanitario de Navarra = An Sist Sanit Navar Anales Del Sistema Sanitario De Navarra = An Sist Sanit Navar Anales Del Sistema Sanitario De Navarra = An. Sist. Sanit. Navar. Anales de medicina = An Med (Barc) Anales de Medicina = An. Med. (Lima) Anales de medicina: Cirugia = An Med Cir Anales de Medicina: Cirugia = An. Med. Cir. Anales de medicina: Especialidades = An Med Espec Anales de Medicina: Especialidades = An. Med. Espec. Anales De Medicina Interna = An Med Intern Anales De Medicina Interna = An. Med. Intern. Anales de Medicina Interna=An Med Interna;; Anales de Medicina Interna = An. Med. Interna Anales de medicina interna (Madrid, Spain : 1984) = An Med Interna Anales de medicina (Lima, Peru) = An Med (Lima) Anales de medicina: Medicina = An Med Med Anales de Medicina: Medicina = An. Med. Med. Anales de medicina publica = An Med Publica Anales de medicina y cirugia = An Med Cir Anales de Pediatria = An. Pediatr. Anales De Pediatria = An Pediatr Anales De Pediatria = An. Pediatr. Anales de pediatria (Barcelona, Spain : 2003) = An Pediatr (Barc) Anales de prehistoria y arqueología. Universidad de Murcia = AnMurcia Anales De Psicologia = An Psicol Anales De Psicologia = An. Psicol. Anales De Psicologia = An Psicol-spain Anales De Psicologia = An. Psicol-spain. Anales de Quimica = An. Quim. Anales De Quimica = An Quim Anales De Quimica = An. Quim. Anales De Quimica-international Edition = An Quim-int Anales De Quimica-international Edition = An. Quim-int. Anales De Quimica Serie A-quimica Fisica Y Quimica Tecnica = An Quim A-fis Tec Anales De Quimica Serie A-quimica Fisica Y Quimica Tecnica = An. Quim. A-fis. Tec. Anales De Quimica Serie B-quimica Inorganica Y Quimica Analytica = An Quim B-inorg Anal Anales De Quimica Serie B-quimica Inorganica Y Quimica Analytica = An. Quim. B-inorg. Anal. Anales De Quimica Serie C-quimica Organica Y Bioquimica = An Quim C-org Bioq Anales De Quimica Serie C-quimica Organica Y Bioquimica = An. Quim. C-org. Bioq. Anales espanoles de odontoestomatologia = An Esp Odontoestomatol Anales Espanoles de Odontoestomatologia = An. Esp. Odontoestomatol. Anales espanoles de pediatria = An Esp Pediatr Anales Espanoles de Pediatria=An Esp Pediatr;; Anales Espanoles de Pediatria = An. Esp. Pediatr. Anales Espanoles De Pediatria = An Esp Pediatr Anales Espanoles De Pediatria = An. Esp. Pediatr. Anales (Ilustre Colegio Oficial de Medicos (Lerida, Spain)) = An Ilustre Col Of Med Anales - Instituto de Investigaciones Odontologicas, Universidad del Zulia = An Inst Invest Odontol (Maracaibo) Anales, Instituto de Investigaciones Odontologicas, Universidad del Zulia = An. Inst. Invest. Odontol. (Maracaibo) Anales medicos de Concepcion = An Med Concepc Anales Nestle = An Nestle (B Aires) Anales otorrinolaringologicos ibero-americanos = An Otorrinolaringol Ibero Am Anales Otorrinolaringologicos Iberoamericanos=An Otorrinolaringol Ibero Am;; Anales Otorrinolaringologicos Iberoamericanos = An. Otorrinolaringol. Ibero. Am. Anales. Universidad Nacional Mayor de San Marcos. Facultad de Medicina = An Fac Med Lima Analgesia: Methods and Protocols = Methods Mol Biol Analgesia: Methods and Protocols = Methods Mol. Biol. Anali Gazi Husrev-begove biblioteke. Gazi Husrevbegova biblioteka u Sarajevu = An Gazi Husrev Begove Bibl Anali Klinicke bolnice "Dr M. Stojanovic" = An Klin Bol Dr M Stojanovic Analise Social = Anal Soc Analisi Numerica: Metodi E Software Matematico, Supplemento = Ann Univ Ferrara Analisi Numerica: Metodi E Software Matematico, Supplemento = Ann. Univ. Ferrara. Analisis politico (Bogota, Colombia) = Anal Polit Analiză Modernă şi Aplicaţii = Anal. Modern. Apl. Analog-baseband Architectures and Circuits for Multistandard and Low-voltage Wireless Transceivers = Analog Circ Sig Proc Analog-baseband Architectures and Circuits for Multistandard and Low-voltage Wireless Transceivers = Analog. Circ. Sig. Proc. Analog Circuits and Signal Processing = Analog Circ Sig Proc Analog Circuits and Signal Processing = Analog Circ. Sig. Proc. Analog Circuits and Systems for Voltage-mode and Current-mode Sensor Interfacing Applications = Analog Circ Sig Proc Analog Circuits and Systems for Voltage-mode and Current-mode Sensor Interfacing Applications = Analog Circ. Sig. Proc. Analog Circuits and Systems Optimization Based On Evolutionary Computation Techniques = Stud Comput Intell Analog Circuits and Systems Optimization Based On Evolutionary Computation Techniques = Stud. Comput. Intell. Analogical and Inductive Inference = Lect Notes Artif Int Analogical and Inductive Inference = Lect. Notes. Artif. Int. Analogical and Inductive Inference / = Lect Notes Artif Int Analogical and Inductive Inference / = Lect. Notes. Artif. Int. Analog Integrated Circuits and Signal Processing = Analog Integr Circ S Analog Integrated Circuits and Signal Processing = Analog Integr. Circ. S. Analog Photonics = P Soc Photo-opt Ins Analog Photonics = P. Soc. Photo-opt. Ins. Analog science fiction/science fact = Analog Sci Fict Sci Fact Analogue and Numerical Modelling of Crustal-scale Processes = Geol Soc Spec Publ Analogue and Numerical Modelling of Crustal-scale Processes = Geol. Soc. Spec. Publ. Analogue and Numerical Modelling of Sedimentary Systems: From Understanding to Prediction = Spec Publ Int Ass Se Analogue and Numerical Modelling of Sedimentary Systems: From Understanding to Prediction = Spec. Publ. Int. Ass. Se. Analogy in Indian and Western Philosophical Thought = Bost Stud Philos Sci Analogy in Indian and Western Philosophical Thought = Bost. Stud. Philos. Sci. Analogy of Reason and Natur Eine Umweltphilosophie Nach Kant = Kantstudien Analogy of Reason and Natur Eine Umweltphilosophie Nach Kant = Kantstudien. Analusis = Analusis Analyomen 1 = Perspekt Analyt Phil Analyomen 1 = Perspekt. Analyt. Phil. Analyomen 2, Vol Iii: Philosophy of Mind, Practical Philosophy, Miscellanea = Perspekt Analyt Phil Analyomen 2, Vol Iii: Philosophy of Mind, Practical Philosophy, Miscellanea = Perspekt. Analyt. Phil. Analyomen 2, Vol Ii: Philosophy of Language, Metaphysics = Perspekt Analyt Phil Analyomen 2, Vol Ii: Philosophy of Language, Metaphysics = Perspekt. Analyt. Phil. Analyomen 2, Vol I: Logic, Epistemology, Philosophy of Science = Perspekt Analyt Phil Analyomen 2, Vol I: Logic, Epistemology, Philosophy of Science = Perspekt. Analyt. Phil. Analyse Et Prevision = Anal Prevision Analyse Et Prevision = Anal. Prevision Analyse Prévision=Anal. Prévision Analyses for Hormonal Substances in Food-producing Animals = Rsc Food Anal Monogr Analyses for Hormonal Substances in Food-producing Animals = Rsc. Food. Anal. Monogr. Analyses of Aristotle = Jaakko Hintikka Sel Analyses of Aristotle = Jaakko. Hintikka. Sel. Analyses of Script: Properties of Characters and Writing Systems = Quant Linguist Analyses of Script: Properties of Characters and Writing Systems = Quant. Linguist. Analyse Von Agrar- Und Umweltmassnahmen Bereich Des Landwirtschaftlichen Gewasserschutzes Von Dem Hintergrund Der Eg-wasserrahmenrichtlinie in Der Flussgebietseinheit Weser = Landbauforsch-vti Ag Analyse Von Agrar- Und Umweltmassnahmen Bereich Des Landwirtschaftlichen Gewasserschutzes Von Dem Hintergrund Der Eg-wasserrahmenrichtlinie in Der Flussgebietseinheit Weser = Landbauforsch-vti. Ag. Analysing Ecological Data = Stat Biol Health Analysing Ecological Data = Stat. Biol. Health. Analysing Seasonal Health Data = Stat Biol Health Analysing Seasonal Health Data = Stat. Biol. Health Analysis, Algebra, and Computers in Mathematical Research = Lect Notes Pure Appl Analysis, Algebra, and Computers in Mathematical Research = Lect. Notes. Pure. Appl. Analysis = Analysis Analysis = Analysis Analysis = Analysis (Munich) Analysis = Analysis (Oxford) Analysis = Analysis-uk Analysis = Analysis-uk. Analysis and Algorithms for Service Parts Supply Chains = Springer Ser Oper Re Analysis and Algorithms for Service Parts Supply Chains = Springer. Ser. Oper. Re. Analysis and Applications = Anal Appl Analysis and Applications = Anal. Appl. Analysis and Applications - Isaac 2001 = Int Soc Anal App Com Analysis and Applications - Isaac 2001 = Int. Soc. Anal. App. Com. Analysis and Control of Boolean Networks: A Semi-tensor Product Approach = Commun Control Eng Analysis and Control of Boolean Networks: A Semi-tensor Product Approach = Commun. Control Eng. Analysis and Control of Mixing With An Application to Micro and Macro Flow Processes = Cism Courses Lect Analysis and Control of Mixing With An Application to Micro and Macro Flow Processes = Cism. Courses. Lect. Analysis and Control of Nonlinear Systems: A Flatness-based Approach = Math Eng Analysis and Control of Nonlinear Systems: A Flatness-based Approach = Math. Eng. Analysis and Control of Ultrafast Photoinduced Reactions = Springer Ser Chem Ph Analysis and Control of Ultrafast Photoinduced Reactions = Springer. Ser. Chem. Ph. Analysis and Design of Descriptor Linear Systems = Adv Mech Math Analysis and Design of Descriptor Linear Systems = Adv. Mech. Math. Analysis and Design of Discrete Part Production Lines = Springer Ser Optim A Analysis and Design of Discrete Part Production Lines = Springer. Ser. Optim. A. Analysis and Design of Intelligent Systems Using Soft Computing Techniques = Adv Soft Comp Analysis and Design of Intelligent Systems Using Soft Computing Techniques = Adv. Soft Comp. Analysis and Design of Marine Structures = Marstruct Bk Series Analysis and Design of Marine Structures = Marstruct. Bk. Series. Analysis and Design of Plated Structures, Vol 1 = Woodhead Publ Mater Analysis and Design of Plated Structures, Vol 1 = Woodhead. Publ. Mater. Analysis and Design of Plated Structures, Vol 2: Dynamics = Woodhead Publ Mater Analysis and Design of Plated Structures, Vol 2: Dynamics = Woodhead. Publ. Mater. Analysis and Design of Quadrature Oscillators = Analog Circ Sig Proc Analysis and Design of Quadrature Oscillators = Analog. Circ. Sig. Proc. Analysis and Design of Univariate Subdivision Schemes = Geom Comput Analysis and Design of Univariate Subdivision Schemes = Geom. Comput. Analysis and Geometry in Several Complex Variables = Trends Math Analysis and Geometry in Several Complex Variables = Trends. Math. Analysis and Intervention in Developmental Disabilities = Anal Interven Devel Analysis and Intervention in Developmental Disabilities = Anal. Interven. Devel. Analysis and its Applications = Anal. Appl. Analysis and Mathematical Physics = Trends Math Analysis and Mathematical Physics = Trends. Math. Analysis and Modeling of Faces and Gestures, Proceedings = Lect Notes Comput Sc Analysis and Modeling of Faces and Gestures, Proceedings = Lect. Notes. Comput. Sc. Analysis and Modelling of Discrete Dynamical Systems = Adv Discrete Math Analysis and Modelling of Discrete Dynamical Systems = Adv. Discrete Math. Analysis and Modelling of Faces and Gestures, Proceedings = Lect Notes Comput Sc Analysis and Modelling of Faces and Gestures, Proceedings = Lect. Notes. Comput. Sc. Analysis and Optimization of Differential Systems = Int Fed Info Proc Analysis and Optimization of Differential Systems = Int. Fed. Info. Proc. Analysis and Optimization of Systems : State and Frequency Domain Approaches for Infinite-dimensional Systems = Lect Notes Contr Inf Analysis and Optimization of Systems : State and Frequency Domain Approaches for Infinite-dimensional Systems = Lect. Notes. Contr. Inf. Analysis and Probability: Wavelets, Signals, Fractals = Grad Texts Math Analysis and Probability: Wavelets, Signals, Fractals = Grad. Texts. Math. Analysis and Simulation of Contact Problems = Lect Notes Appl Comp Analysis and Simulation of Contact Problems = Lect. Notes. Appl. Comp. Analysis and Simulation of Multifield Problems = Lect Notes Appl Comp Analysis and Simulation of Multifield Problems = Lect. Notes. Appl. Comp. Analysis and Simulation of Multifield Problems = Ln App C M Analysis and Simulation of Multifield Problems = Ln. App. C. M. Analysis and Synthesis of Dynamical Systems With Time-delays = Lect Notes Contr Inf Analysis and Synthesis of Dynamical Systems With Time-delays = Lect. Notes. Contr. Inf. Analysis and Synthesis of Logics: How to Cut and Paste Reasoning Systems = Appl Log Ser Analysis and Synthesis of Logics: How to Cut and Paste Reasoning Systems = Appl. Log. Ser. Analysis and Synthesis of Networked Control Systems = Lect Notes Contr Inf Analysis and Synthesis of Networked Control Systems = Lect. Notes. Contr. Inf. Analysis and Visualization Tools for Constraint Programming = Lect Notes Comput Sc Analysis and Visualization Tools for Constraint Programming = Lect. Notes. Comput. Sc. Analysis, Architectures and Modelling of Embedded Systems = Ifip Adv Inf Comm Te Analysis, Architectures and Modelling of Embedded Systems = Ifip. Adv. Inf. Comm. Te. Analysis, Communication, and Perception of Risk = Adv Risk Anal Analysis, Communication, and Perception of Risk = Adv. Risk Anal. Analysis, Controllability and Optimization of Time-disscrete Sys Tems and Dynamical Games = Lect Notes Econ Math Analysis, Controllability and Optimization of Time-disscrete Sys Tems and Dynamical Games = Lect. Notes. Econ. Math. Analysis, Design and Evaluation of Human-machine Systems 2001 = Ifac Symp Series Analysis, Design and Evaluation of Human-machine Systems 2001 = Ifac. Symp. Series. Analysis, Design Construction, and Testing of Deep Foundations = Geotech Sp Analysis, Design Construction, and Testing of Deep Foundations = Geotech. Sp. Analysis, Geometry, and Modeling in Finance: Advanced Methods in Option Pricing = Ch Crc Financ Math Analysis, Geometry, and Modeling in Finance: Advanced Methods in Option Pricing = Ch. Crc. Financ. Math. Analysis Mathematica = Anal. Math. Analysis Mathematica = Anal Math Analysis Mathematica = Anal. Math. Analysis of Biomedical Signals and Images, Proceedings = Biosig Brno Analysis of Biomedical Signals and Images, Proceedings = Biosig. Brno. Analysis of Cardiac Development: From Embryo to Old Age = Ann Ny Acad Sci Analysis of Cardiac Development: From Embryo to Old Age = Ann. Ny. Acad. Sci. Analysis of Censored Data = Inst Math S Analysis of Censored Data = Inst. Math. S. Analysis of Controlled Dynamical Systems = Prog Syst C Analysis of Controlled Dynamical Systems = Prog. Syst. C. Analysis of Divergence: Control and Management of Divergent Processes = Appl Numer Harmon An Analysis of Divergence: Control and Management of Divergent Processes = Appl. Numer. Harmon. An. Analysis of Divergence: Control and Management of Divergent Processes = Appl Num Harm Anal Analysis of Divergence: Control and Management of Divergent Processes = Appl. Num. Harm. Anal. Analysis of Environmental Endocrine Disruptors = Acs Sym Ser Analysis of Environmental Endocrine Disruptors = Acs. Sym. Ser. Analysis of Evolutionary Processes: The Adaptive Dynamics Approach and Its Applications-the Adaptive Dynamics Approach and Its Applications = Princ Ser Theor Comp Analysis of Evolutionary Processes: The Adaptive Dynamics Approach and Its Applications-the Adaptive Dynamics Approach and Its Applications = Princ. Ser. Theor. Comp. Analysis of Excitation and Ionization of Atoms and Molecules By Electron Impact = Springer Ser Atom Op Analysis of Excitation and Ionization of Atoms and Molecules By Electron Impact = Springer. Ser. Atom. Op. Analysis of Fractional Differential Equations: An Application-oriented Exposition Using Differential Operators of Caputo Type = Lect Notes Math Analysis of Fractional Differential Equations: An Application-oriented Exposition Using Differential Operators of Caputo Type = Lect. Notes. Math. Analysis of Heat Equations On Domains = Lond Math Soc Monogr Analysis of Heat Equations On Domains = Lond. Math. Soc. Monogr. Analysis of In-service Failures and Advances in Microstructural Characterization = Microstr Sc Analysis of In-service Failures and Advances in Microstructural Characterization = Microstr. Sc. Analysis of Integrated and Cointegrated Time Series With R, Second Edition = Use R Analysis of Integrated and Cointegrated Time Series With R, Second Edition = Use. R. Analysis of Interplanetary Dust = Aip Conf Proc Analysis of Interplanetary Dust = Aip. Conf. Proc. Analysis of Linear Partial Differential Operators Iv: Fourier Integral Operators = Class Math Analysis of Linear Partial Differential Operators Iv: Fourier Integral Operators = Class. Math. Analysis of Means: A Graphical Method for Comparing Means, Rates and Proportions = Asa Siam Ser Stat Ap Analysis of Means: A Graphical Method for Comparing Means, Rates and Proportions = Asa. Siam. Ser. Stat. Ap. Analysis of Multidimensional Poverty: Theory and Case Studies = Econ Stud Inequal So Analysis of Multidimensional Poverty: Theory and Case Studies = Econ. Stud. Inequal. So. Analysis of Multi-temporal Remote Sensing Images = Ser Remote Sens Analysis of Multi-temporal Remote Sensing Images = Ser. Remote Sens. Analysis of Multivariate Social Science Data, Second Edition = Ch Crc Stat Soc Beha Analysis of Multivariate Social Science Data, Second Edition = Ch. Crc. Stat. Soc. Beha. Analysis of Optical Structures = P Soc Photo-opt Ins Analysis of Optical Structures = P. Soc. Photo-opt. Ins. Analysis of Paints and Related Materials : Current Techniques for Solving Coatings Problems = Am Soc Test Mater Analysis of Paints and Related Materials : Current Techniques for Solving Coatings Problems = Am. Soc. Test. Mater. Analysis of Parallel Spike Trains = Spr Ser Comput Neuro Analysis of Parallel Spike Trains = Spr. Ser. Comput. Neuro. Analysis of Radome-enclosed Antennas, Second Edition = Artech Hse Antenn Pr Analysis of Radome-enclosed Antennas, Second Edition = Artech. Hse. Antenn. Pr. Analysis of Risks Associated With Nuclear Submarine Decommissioning, Dismantling and Disposal = Nato Sci S 1 Disarm Analysis of Risks Associated With Nuclear Submarine Decommissioning, Dismantling and Disposal = Nato. Sci. S. 1. Disarm. Analysis of Soils Contaminated With Petroleum Constituents = Am Soc Test Mater Analysis of Soils Contaminated With Petroleum Constituents = Am. Soc. Test. Mater. Analysis of Urban Growth and Sprawl From Remote Sensing Data = Adv Geogr Inform Sci Analysis of Urban Growth and Sprawl From Remote Sensing Data = Adv. Geogr. Inform. Sci. Analysis On Graphs and Its Applications = P Symp Pure Math Analysis On Graphs and Its Applications = P. Symp. Pure. Math. Analysis, Partial Differential Equations and Applications: The Vladimir Maz'ya Anniversary Volume = Oper Theory Adv Appl Analysis, Partial Differential Equations and Applications: The Vladimir Maz'ya Anniversary Volume = Oper. Theory. Adv. Appl. Analysis & Pde = Anal Pde Analysis & Pde = Anal. Pde Analysis, Synthesis, and Perception of Musical Sounds: The Sound of Music = Mod Acoust Sign Proc Analysis, Synthesis, and Perception of Musical Sounds: The Sound of Music = Mod. Acoust. Sign. Proc. Analyst=Analyst;; Analyst = Analyst Analyst (Cambridge, United Kingdom) = Analyst (Cambridge, U. K.) Analytica = Analytica Analytica chimica acta = Anal Chim Acta Analytica Chimica Acta = Anal Chim Acta Analytica Chimica Acta = Anal. Chim. Acta Analytica Chimica Acta-computer Techniques and Optimization = Anal Chim Acta-comp Analytica Chimica Acta-computer Techniques and Optimization = Anal. Chim. Acta-comp. Analytical Advances for Hydrocarbon Research = Mod Anal Ch Analytical Advances for Hydrocarbon Research = Mod. Anal. Ch. Analytical and Approximate Methods in Transport Phenomena = Mech Eng Ser Txb Ref Analytical and Approximate Methods in Transport Phenomena = Mech. Eng. Ser. Txb. Ref. Analytical and bioanalytical chemistry = Anal Bioanal Chem Analytical and Bioanalytical Chemistry = Anal Bioanal Chem Analytical and Bioanalytical Chemistry = Anal. Bioanal. Chem. Analytical and Bioanalytical Chemistry = Anal. Bioanal.Chem. Analytical and Computational Methods in Electromagnetics = Artech Hse Elec Anal Analytical and Computational Methods in Electromagnetics = Artech. Hse. Elec. Anal. Analytical and Computational Methods in Scattering and Applied Mathematics = Ch Crc Res Notes Analytical and Computational Methods in Scattering and Applied Mathematics = Ch. Crc. Res. Notes. Analytical and Computational Methods in Scattering and Applied Mathematics = Ch Crc Res Notes Mat Analytical and Computational Methods in Scattering and Applied Mathematics = Ch. Crc. Res. Notes. Mat. Analytical and Diagnostic Techniques for Semiconductor Materials, Devices, and Processes = Elec Soc S Analytical and Diagnostic Techniques for Semiconductor Materials, Devices, and Processes = Elec. Soc. S. Analytical and Numerical Approaches to Mathematical Relativity = Lect Notes Phys Analytical and Numerical Approaches to Mathematical Relativity = Lect. Notes. Phys. Analytical and Numerical Aspects of Partial Differential Equations = Degruyter P Math Analytical and Numerical Aspects of Partial Differential Equations = Degruyter. P. Math. Analytical and Quantitative Cardiology = Adv Exp Med Biol Analytical and Quantitative Cardiology = Adv. Exp. Med. Biol. Analytical and quantitative cytology = Anal Quant Cytol Analytical and Quantitative Cytology = Anal. Quant. Cytol. Analytical and Quantitative Cytology and Histology = Anal Quant Cytol Analytical and Quantitative Cytology and Histology = Anal. Quant. Cytol. Analytical and Quantitative Cytology and Histology = Anal. Quant. Cytol. Histol. Analytical and Quantitative Cytology And Histology=Anal Quant Cytol Histol;; Analytical and quantitative cytology and histology / the International Academy of Cytology [and] American Society of Cytology = Anal Quant Cytol Histol Analytical and Stochastic Modeling Techniques and Applications, Proceedings = Lect Notes Comput Sc Analytical and Stochastic Modeling Techniques and Applications, Proceedings = Lect. Notes. Comput. Sc. Analytical and Topological Theory of Semigroups / = De Gruy Mat Analytical and Topological Theory of Semigroups / = De. Gruy. Mat. Analytical biochemistry = Anal Biochem Analytical Biochemistry=Anal Biochem;; Analytical Biochemistry = Anal Biochem Analytical Biochemistry = Anal. Biochem. Analytical Biotechnology = Acs Sym Ser Analytical Biotechnology = Acs. Sym. Ser. Analytical Cellular Pathology=Anal Cell Pathol;; Analytical Cellular Pathology = Anal Cell Pathol Analytical Cellular Pathology = Anal. Cell. Pathol. Analytical Cellular Pathology-cellular Oncology = Anal Cell Pathol Analytical Cellular Pathology-cellular Oncology = Anal. Cell. Pathol. Analytical cellular pathology : the journal of the European Society for Analytical Cellular Pathology = Anal Cell Pathol Analytical chemistry = Anal Chem Analytical Chemistry=Anal Chem;; Analytical Chemistry = Anal Chem Analytical Chemistry = Anal. Chem. Analytical Chemistry Associated With The Destruction of Chemical Weapons = Nato Sci S 1 Disarm Analytical Chemistry Associated With The Destruction of Chemical Weapons = Nato. Sci. S. 1. Disarm. Analytical Chemistry Insights = Anal. Chem. Insights Analytical Chemistry of Bacillus Thuringiensis = Acs Sym Ser Analytical Chemistry of Bacillus Thuringiensis = Acs. Sym. Ser. Analytical Chemistry Series = Anal Chem Ser Analytical Chemistry Series = Anal. Chem. Ser. Analytical Chemistry Symposia Series = Anal. Chem. Symp. Ser. Analytical Chemistry (Washington, DC, United States) = Anal. Chem. (Washington, DC, U. S.) Analytical Communications = Anal Commun Analytical Communications = Anal. Commun. Analytical Instrumentation = Anal Instrum Analytical Instrumentation = Anal. Instrum. Analytical letters = Anal Lett Analytical Letters = Anal Lett Analytical Letters = Anal. Lett. Analytical Letters Part A-chemical Analysis = Anal Lett Pt A Analytical Letters Part A-chemical Analysis = Anal. Lett. Pt. A. Analytical Letters Part B-clinical and Biochemical Analysis = Anal Lett Pt B Analytical Letters Part B-clinical and Biochemical Analysis = Anal. Lett. Pt. B. Analytical Methods = Anal. Methods Analytical Methods = Anal Methods-uk Analytical Methods = Anal. Methods-uk. Analytical Methods and Instrumentation = Anal Method Instrum Analytical Methods and Instrumentation = Anal. Method. Instrum. Analytical Methods for Problems of Molecular Transport = Fluid Mech Appl Analytical Methods for Problems of Molecular Transport = Fluid. Mech. Appl. Analytical Methods in Fuzzy Modeling and Control = Stud Fuzz Soft Comp Analytical Methods in Fuzzy Modeling and Control = Stud. Fuzz. Soft. Comp. Analytical Proceedings = Anal Proc Analytical Proceedings = Anal. Proc. Analytical Proceedings = Anal. Proc. (London) Analytical Proceedings including Analytical Communications = Anal. Proc. incl. Anal. Commun. Analytical Quality Assurance and Good Laboratory Practice in Dairy Laboratories = Int Dairy F Analytical Quality Assurance and Good Laboratory Practice in Dairy Laboratories = Int. Dairy F. Analytical Sciences = Anal Sci Analytical Sciences = Anal. Sci. Analytical sciences : the international journal of the Japan Society for Analytical Chemistry = Anal Sci Analytical Sciences: X-Ray Structure Analysis Online = Anal. Sci.: X-Ray Struct. Anal. Online Analytical Spectroscopy Library = Anal Spectr Analytical Spectroscopy Library = Anal. Spectr. Analytical Ultracentrifugation Iv = Prog Coll Pol Sci S Analytical Ultracentrifugation Iv = Prog. Coll. Pol. Sci. S. Analytical Ultracentrifugation of Polymers and Nanoparticles = Springer Lab Man Pol Analytical Ultracentrifugation of Polymers and Nanoparticles = Springer. Lab. Man. Pol. Analytical Ultracentrifugation = Prog Coll Pol Sci S Analytical Ultracentrifugation = Prog. Coll. Pol. Sci. S. Analytical Ultracentrifugation Viii = Prog Coll Pol Sci S Analytical Ultracentrifugation Viii = Prog. Coll. Pol. Sci. S. Analytical Ultracentrifugation Vii = Prog Coll Pol Sci S Analytical Ultracentrifugation Vii = Prog. Coll. Pol. Sci. S. Analytical Ultracentrifugation Vi = Prog Coll Pol Sci S Analytical Ultracentrifugation Vi = Prog. Coll. Pol. Sci. S. Analytical Ultracentrifugation V = Prog Coll Pol Sci S Analytical Ultracentrifugation V = Prog. Coll. Pol. Sci. S. Analytical Use of Fluorescent Probes in Oncology = Nato Adv Sci I A-lif Analytical Use of Fluorescent Probes in Oncology = Nato. Adv. Sci. I. A-lif. Analytic Extension Formulas and Their Applications = Int Soc Anal App Com Analytic Extension Formulas and Their Applications = Int. Soc. Anal. App. Com. Analytic Introduction to The Philosophy of Mind = Degruyter Studienb Analytic Introduction to The Philosophy of Mind = Degruyter. Studienb. Analyticity = New Probl Philos Analyticity = New. Probl. Philos. Analytic Number Theory = Dev Math Analytic Number Theory = Dev. Math. Analytic Number Theory = Lect Notes Math Analytic Number Theory = Lect. Notes. Math. Analytic Number Theory = Prog Math Analytic Number Theory = Prog. Math. Analytic Number Theory, Vol 1 = Prog Math Analytic Number Theory, Vol 1 = Prog. Math. Analytic Number Theory, Vol. 2 - Proceedings of A Conference in Honor of Heini Halberstam = Prog Math Analytic Number Theory, Vol. 2 - Proceedings of A Conference in Honor of Heini Halberstam = Prog. Math. Analytic Philosophy Without Naturalism = Rout Stud Tw Cen Phi Analytic Philosophy Without Naturalism = Rout. Stud. Tw. Cen. Phi. Analytics of Protein-dna Interactions = Adv Biochem Eng Biot Analytics of Protein-dna Interactions = Adv. Biochem. Eng. Biot. Analytic Theory of Continued Fractions Iii = Lect Notes Math Analytic Theory of Continued Fractions Iii = Lect. Notes. Math. Analytic Turn: Analysis in Early Analytic Philosophy and Phenomenology = Rout Stud Twent Analytic Turn: Analysis in Early Analytic Philosophy and Phenomenology = Rout. Stud. Twent. Analytische Psychologie = Anal Psychol Analytische Psychologie = Anal. Psychol. Analyzable Functions and Applications = Contemp Math Analyzable Functions and Applications = Contemp. Math. Analyzer = Analyzer Analyzing Interactions in Cscl: Methods, Approaches and Issues = Comput-supp Collab L Analyzing Interactions in Cscl: Methods, Approaches and Issues = Comput-supp. Collab. L. Analyzing School Contexts: Influences of Principals and Teachers in The Service of Students = Res Theor Educ Admin Analyzing School Contexts: Influences of Principals and Teachers in The Service of Students = Res. Theor. Educ. Admin. Anaphora: Analysis, Algorithms and Applications = Lect Notes Comput Sc Anaphora: Analysis, Algorithms and Applications = Lect. Notes. Comput. Sc. Anaphora and Type Logical Grammar = Trends Log Stud Log Anaphora and Type Logical Grammar = Trends. Log. Stud. Log. Anaphora Processing = Amst Stud Theory His Anaphora Processing = Amst. Stud. Theory. His. Anaphora Processing and Applications = Lect Notes Artif Int Anaphora Processing and Applications = Lect. Notes. Artif. Int. Anaphylaxis = Chem Immunol Allergy Anaphylaxis = Chem. Immunol. Allergy. Anarchism and Education: A Philosophical Perspective = Rout Int Stud Philos Anarchism and Education: A Philosophical Perspective = Rout. Int. Stud. Philos. Anarchy, State and Public Choice = New Think Polit Econ Anarchy, State and Public Choice = New. Think. Polit. Econ. AN. Arkansas nurse = AN Ark Nurse AN: Arkansas Nurse = AN Ark. Nurse Anas. Museo nacional de arte romano de Mérida = Anas Anasthesie Intensivtherapie Notfallmedizin = Anasth Intensiv Notf Anasthesie Intensivtherapie Notfallmedizin = Anasth. Intensiv. Notf. Anasthesie, Intensivtherapie, Notfallmedizin = Anasth Intensivther Notfallmed Anasthesie, Intensivtherapie, Notfallmedizin = Anasth. Intensivther. Notf. Med. Anasthesiologie & Intensivmedizin = Anasth Intensivmed Anasthesiologie & Intensivmedizin = Anasth. Intensivmed. Anasthesiologie, Intensivmedizin, Notfallmedizin, Schmerztherapie : AINS = Anasthesiol Intensivmed Notfallmed Schmerzther Anasthesiologie, Intensivmedizin, Notfallmedizin, Schmerztherapie = Anasthesiol. Intensivmed. Notfallmed. Schmerzther. Anasthesiologie, Intensivmedizin, Notfallmedizin, SchmerztherapieAnasthesiol Intensivmed Notfallme=Schmerzther;; Anasthesiologie Intensivmedizin Notfallmedizin Schmerztherapie = Anasth Intensiv Notf Anasthesiologie Intensivmedizin Notfallmedizin Schmerztherapie = Anasth. Intensiv. Notf. Anasthesiologie Und Intensivmedizin = Anasth Intensivmed Anasthesiologie Und Intensivmedizin = Anasth. Intensivmed. Anasthesiologische und intensivmedizinische Praxis = Anasthesiol Intensivmed Prax Anasthesiologische und Intensivmedizinische Praxis = Anasthesiol. Intensivmed. Prax. Anatolian Archaeology. Reports on Research Conducted in Turkey = AnatA Anatolian Studies = Anatol Stud Anatolian Studies = Anatol. Stud. Anatolian Studies = AnSt Anatolian Studies: journal of the British Inst. of Archaeology at Ankara = AS Anatolia. Revue annuelle de l’Institut d’archéologie de l’Université d’Ankara = Anatolia Anatomia clinica = Anat Clin Anatomia Clinica = Anat Clin Anatomia Clinica = Anat. Clin. Anatomia e chirurgia = Anat Chir Anatomia, histologia, embryologia = Anat Histol Embryol Anatomia Histologia Embryologia = Anat Histol Embryol Anatomia Histologia Embryologia = Anat. Histol. Embryol. Anatomia, Histologia, Embryologia=Anat Histol Embryol;; Anatomia, Histologia, Embryologia = Anat. Histol. Embryol. Anatomia Histologia Embryologia-journal of Veterinary Medicine Series C = Anat Histol Embryol Anatomia Histologia Embryologia-journal of Veterinary Medicine Series C = Anat. Histol. Embryol. Anatomia Histologia Embryologia-journal of Veterinary Medicine Series C-zentralblatt Fur Veterinarmedizin Reihe C = Anat Histol Embryol Anatomia Histologia Embryologia-journal of Veterinary Medicine Series C-zentralblatt Fur Veterinarmedizin Reihe C = Anat. Histol. Embryol. Anatomia Histologia Embryologia-zentralblatt Fur Veterinarmedizin Reihe = Anat Histol Emb-zbl Anatomia Histologia Embryologia-zentralblatt Fur Veterinarmedizin Reihe = Anat. Histol. Emb-zbl. Anatomical Record-advances in Integrative Anatomy and Evolutionary Biology = Anat Rec Anatomical Record-advances in Integrative Anatomy and Evolutionary Biology = Anat. Rec. Anatomical Record=Anat Rec;; Anatomical Record = Anat Rec Anatomical Record = Anat. Rec. Anatomical Record = Anat Record Anatomical Record = Anat. Record Anatomical record (Hoboken, N.J. : 2007) = Anat Rec (Hoboken) Anatomical Record. Part A, Discoveries in Molecular, Cellular, and Evolutionary Biology = Anat. Rec. A. Discov. Mol. Cell. Evol. Biol. Anatomical Record Part A-discoveries in Molecular Cellular and Evolutionary Biology = Anat Rec Part A Anatomical Record Part A-discoveries in Molecular Cellular and Evolutionary Biology = Anat. Rec. Part A. Anatomical record. Part B, New anatomist = Anat Rec B New Anat Anatomical Record. Part B, New Anatomist = Anat. Rec. B. New Anat. Anatomical Record. Supplement = Anat. Rec. Suppl. Anatomical Science International = Anat Sci Int Anatomical Science International = Anat. Sci. Int. Anatomical science international / Japanese Association of Anatomists = Anat Sci Int Anatomical Sciences Education = Anat Sci Educ Anatomical Sciences Education = Anat. Sci. Educ. Anatomic Pathology = Anat. Pathol. Anatomic pathology (Chicago, Ill. : annual) = Anat Pathol Anatomischer Anzeiger=Anat Anz;; Anatomischer Anzeiger = Anat Anz Anatomischer Anzeiger = Anat. Anz. Anatomischer Anzeiger = Anat Anzeiger Anatomischer Anzeiger = Anat. Anzeiger Anatomy and Embryology = Anat Embryol Anatomy and Embryology = Anat. Embryol. Anatomy and embryology = Anat Embryol (Berl) Anatomy and Embryology=Anat Embryol (Berl);; Anatomy and Embryology = Anat. Embryol. (Berl.) Anatomy of Gender = Carl Wom Ex Anatomy of Gender = Carl. Wom. Ex. Anatomy of Integers = Crm Proc & Lect Note Anatomy of Integers = Crm. Proc. &. Lect. Note. Anatomy of Laughter = Stud Comp Lit Anatomy of Laughter = Stud. Comp. Lit. Anca-associated Vasculitides = Adv Exp Med Biol Anca-associated Vasculitides = Adv. Exp. Med. Biol. Ancestors in Post-contact Religion: Roots, Ruptures and Modernity's Memory = Religions World Ancestors in Post-contact Religion: Roots, Ruptures and Modernity's Memory = Religions. World. Ancient China On Postmodern War - Enduring Ideas From The Chinese Strategic Tradition = Cass Mil Stud Ancient China On Postmodern War - Enduring Ideas From The Chinese Strategic Tradition = Cass. Mil. Stud. Ancient Civilizations from Scythia to Siberia. An International Journal of Comparative Studies in History and Archaeology = AncCivScytSib Ancient Earthquakes = Geol Soc Am Spec Pap Ancient Earthquakes = Geol. Soc. Am. Spec. Pap. Ancient Egypt & Antique Europe : Two Parts of The Mediterranean World = Brit Archaeol Rep In Ancient Egypt & Antique Europe : Two Parts of The Mediterranean World = Brit. Archaeol. Rep. In. Ancient Engineers' Inventions = Hist Mech Mach Sci Ancient Engineers' Inventions = Hist. Mech. Mach. Sci. Ancient Floods, Modern Hazards: Principles and Applications of Paleoflood Hydrology = Water Sci Appl Ancient Floods, Modern Hazards: Principles and Applications of Paleoflood Hydrology = Water. Sci. Appl. Ancient Graffiti in Context = Rout Stud Anc Hist Ancient Graffiti in Context = Rout. Stud. Anc. Hist. Ancient History = AH Ancient Judaism in Its Hellenistic Context = Supp J Stud Judaism Ancient Judaism in Its Hellenistic Context = Supp. J. Stud. Judaism Ancient Mesoamerica = Ancient Mesoam Ancient Mesoamerica = Ancient Mesoam. Ancient Near Eastern Studies. An Annual = AncNearEastSt Ancient Orogens and Modern Analogues = Geol Soc Spec Publ Ancient Orogens and Modern Analogues = Geol. Soc. Spec. Publ. Ancient Philosophy = AncPhil Ancient philosophy (Garland Publishing) = Anc Philos Ancient Philosophy of The Self = New Syn Hist L Ancient Philosophy of The Self = New. Syn. Hist. L. Ancient Philosophy of The Self = New Synth Hist Lib Ancient Philosophy of The Self = New. Synth. Hist. Lib. Ancient Portraiture: Image and Message = Acta Hyperborea Ancient Portraiture: Image and Message = Acta. Hyperborea. Ancient Seismites = Geol S Am S Ancient Seismites = Geol. S. Am. S. Ancient Seismites = Geol Soc Am Spec Pap Ancient Seismites = Geol. Soc. Am. Spec. Pap. Ancient Society = AncSoc Ancient Society = AncSoc Ancient West and East = AncWestEast Ancient World = Ancient World Andamios = Andamios Andean Geology = Andean Geol Andean Geology = Andean Geol. Anderson Localization and Its Ramifications = Lect Notes Phys Anderson Localization and Its Ramifications = Lect. Notes. Phys. Andes: Active Subduction Orogeny = Front Earth Sci Andes: Active Subduction Orogeny = Front. Earth. Sci. And Never Know The Joy: Sex and The Erotic in English Poetry = Dqr Stu Lit And Never Know The Joy: Sex and The Erotic in English Poetry = Dqr. Stu. Lit. And Now for The Bbc ... = Curr Deb Br And Now for The Bbc ... = Curr. Deb. Br. Andover Newton quarterly = Andover Newton Q Andreas Capellanus On Love? Desire, Seduction, and Subversion in A Twelfth-century Latin Text = Stud Arthur Court Cu Andreas Capellanus On Love? Desire, Seduction, and Subversion in A Twelfth-century Latin Text = Stud. Arthur. Court. Cu. Andrew Jackson in Context = First Men Am Pres Ne Andrew Jackson in Context = First. Men. Am. Pres. Ne. Andrew R Cecil Lectures On Moral Values in A Free Society = A R Cecil L Andrew R Cecil Lectures On Moral Values in A Free Society = A R Cecil L. Andrew Seybolds Outlook On Professional Computing = Andrew Seybold Out P Andrew Seybolds Outlook On Professional Computing = Andrew Seybold. Out. P. Andrologia=Andrologia;; Andrologia = Andrologia Andrologie = Andrologie Andvances in Information and Communication Technologies = Adv Info Comm Tech Andvances in Information and Communication Technologies = Adv. Info. Comm. Tech. ANEC = ANEC Anejos De Criticon = Anejos Criticon Anemona: A Multi-agent Methodology for Holonic Manufacturing Systems = Springer Ser Adv Man Anemona: A Multi-agent Methodology for Holonic Manufacturing Systems = Springer. Ser. Adv. Man. Anestesia e rianimazione = Anest Rianim Anesteziologiia i reanimatologiia = Anesteziol Reanimatol Anesteziologiia i Reanimatologiia = Anesteziol. Reanimatol. Anesteziologiia I Reanimatologiia=Anesteziol Reanimatol;; Anesthesia and analgesia = Anesth Analg Anesthesia and Analgesia=Anesth Analg;; Anesthesia and Analgesia = Anesth Analg Anesthesia and Analgesia = Anesth. Analg. Anesthesia and Analgesia Current Researches = Anesth Anal Curr Res Anesthesia and Analgesia Current Researches = Anesth. Anal. Curr. Res. Anesthesia and Pain Control in Dentistry = Anesth. Pain Control Dent. Anesthesia and The Central Nervous System = Dev C C Med Anesthesia and The Central Nervous System = Dev. C. C. Med. Anesthesia and The Lung 1992 = Dev C C Med Anesthesia and The Lung 1992 = Dev. C. C. Med. Anesthesia and The Lung = Dev C C Med Anesthesia and The Lung = Dev. C. C. Med. Anesthesia for The New Millennium = Dev C C Med Anesthesia for The New Millennium = Dev. C. C. Med. Anesthesia Informatics = Health Inform Ser Anesthesia Informatics = Health. Inform. Ser. Anesthesia, Intensive Care and Related Issues in Surgery = Beitr Inten Anesthesia, Intensive Care and Related Issues in Surgery = Beitr. Inten. Anesthesia & pain control in dentistry = Anesth Pain Control Dent Anesthesia progress = Anesth Prog Anesthesia Progress = Anesth. Prog. Anesthesie, analgesie, reanimation = Anesth Analg (Paris) Anesthesie, Analgesie, Reanimation = Anesth. Analg. (Paris) Anesthesie Analgesie Reanimation = Anesth Analg Reanim Anesthesie Analgesie Reanimation = Anesth. Analg. Reanim. Anesthesie et analgesie = Anesth Anal Anesthesiology and Pain Management = Dev C C Med Anesthesiology and Pain Management = Dev. C. C. Med. Anesthesiology and The Cardiovascular Patient = Dev C C Med Anesthesiology and The Cardiovascular Patient = Dev. C. C. Med. Anesthesiology and The Heart = Dev C C Med Anesthesiology and The Heart = Dev. C. C. Med. Anesthesiology=Anesthesiology;; Anesthesiology = Anesthesiology Anesthesiology clinics = Anesthesiol Clin Anesthesiology Clinics = Anesthesiol. Clin. Anesthesiology Clinics of North America = Anesthesiol Clin N A Anesthesiology Clinics of North America = Anesthesiol. Clin. N. A. Anesthesiology clinics of North America = Anesthesiol Clin North America Anesthesiology review = Anesthesiol Rev Anesthesiology Review = Anesthesiol. Rev. Anfang Vom Ende Der Ottonen: Konstitutionsbedingungen Historiographischer Nachrichten in Der Chronik Thietmars Von Merseburg = Millenn Stud Kult Ge Anfang Vom Ende Der Ottonen: Konstitutionsbedingungen Historiographischer Nachrichten in Der Chronik Thietmars Von Merseburg = Millenn. Stud. Kult. Ge. Angebots-und Projektkalkulation: Leitfaden Fur Praktiker = Vdi-buch Angebots-und Projektkalkulation: Leitfaden Fur Praktiker = Vdi-buch. Angeiologie = Angeiologie Angeiologie et annales de la Societe francaise d'angeiologie et d'histopathologie = Angeiol Ann Soc Fr Angeiol Histopathol Angela Carter's Nights At The Circus = Routledge Guides Lit Angela Carter's Nights At The Circus = Routledge. Guides. Lit. Angelaki-journal of The Theoretical Humanities = Angelaki Angelaki-journal of The Theoretical Humanities = Angelaki. Angelicum = Angelicum Angewandte Botanik = Angew Bot Angewandte Botanik = Angew. Bot. Angewandte Chemie = Angew. Chem. Angewandte Chemie = Angew Chem-ger Edit Angewandte Chemie = Angew. Chem-ger. Edit. Angewandte Chemie (International ed. in English) = Angew Chem Int Ed Engl Angewandte Chemie International Edition = Angew. Chem. Int. Ed. Angewandte Chemie, International Edition = Angew. Chem., Int. Ed. Angewandte Chemie-international Edition = Angew Chem Int Edit Angewandte Chemie-international Edition = Angew. Chem. Int. Edit. Angewandte Chemie, International Edition in English = Angew. Chem., Int. Ed. Engl. Angewandte Chemie. International Edition in English = Angew. Chem. Int. Ed. Engl. Angewandte Chemie-international Edition in English = Angew Chem Int Edit Angewandte Chemie-international Edition in English = Angew. Chem. Int. Edit. Angewandte Chemie (Weinheim an der Bergstrasse, Germany) = Angew Chem Weinheim Bergstr Ger Angewandte Entomologie = Angew. Entomol. Angewandte Informatik = Angew Inform Angewandte Informatik = Angew. Inform. Angewandte Landschaftsökologie = Angew. Landsch.ökol. Angewandte Makromolekulare Chemie = Angew Makromol Chem Angewandte Makromolekulare Chemie = Angew. Makromol. Chem. Angewandte Mathematik = Angew. Math. Angewandte Parasitologie = Angew Parasitol Angewandte Parasitologie = Angew. Parasitol. Angewandte Pflanzensoziologie = Angew. Pflanzensoziol. Angewandte Statistik und Ökonometrie = Angew. Statist. Ökonom. Angiogenesis = Angiogenesis Angiogenesis: From The Molecular to Integrative Pharmacology = Adv Exp Med Biol Angiogenesis: From The Molecular to Integrative Pharmacology = Adv. Exp. Med. Biol. Angiogenesis in Health and Disease = Nato Adv Sci I A-lif Angiogenesis in Health and Disease = Nato. Adv. Sci. I. A-lif. Angiogenesis Inhibition = Recent Results Canc Angiogenesis Inhibition = Recent. Results. Canc. Angiogenesis: in Vitro Systems = Method Enzymol Angiogenesis: in Vitro Systems = Method. Enzymol. Angiogenesis: in Vivo Systems, Pt A = Method Enzymol Angiogenesis: in Vivo Systems, Pt A = Method. Enzymol. Angiogenesis: in Vivo Systems, Pt B = Method Enzymol Angiogenesis: in Vivo Systems, Pt B = Method. Enzymol. Angiogenesis = Nato Adv Sci I A-lif Angiogenesis = Nato. Adv. Sci. I. A-lif. Angiogenesis = Nato Adv Sci Inst Se Angiogenesis = Nato. Adv. Sci. Inst. Se. Angiologia = Angiologia Angiologica = Angiologica Angiology=Angiology;; Angiology = Angiology Angiosperm Woods From British Lower Cretaceous and Palaeogene Deposits = Sp Palaeont Angiosperm Woods From British Lower Cretaceous and Palaeogene Deposits = Sp. Palaeont. Angle and Spin Resolved Auger Emission: Theory and Applications to Atoms and Molecules = Springer Ser Atom Op Angle and Spin Resolved Auger Emission: Theory and Applications to Atoms and Molecules = Springer. Ser. Atom. Op. Angle Orthodontist=Angle Orthod;; Angle Orthodontist = Angle Orthod Angle Orthodontist = Angle Orthod. Anglia (Halle an der Saale, Germany) = Anglia Anglia-zeitschrift Fur Englische Philologie = Anglia-z Engl Philol Anglia-zeitschrift Fur Englische Philologie = Anglia-z. Engl. Philol. Anglican theological review = Anglican Theol Rev Anglistentag 1989 Wurzburg = P Conf Ger Anglistentag 1989 Wurzburg = P. Conf. Ger. Anglistentag 1991 Dusseldorf : Proceedings = P Conf Ger Anglistentag 1991 Dusseldorf : Proceedings = P. Conf. Ger. Anglistentag 1992 Stuttgart: Proceedings = P Conf Ger Anglistentag 1992 Stuttgart: Proceedings = P. Conf. Ger. Anglistica = Anglistica Anglo-american Relations and Cold War Oil: Crisis in Iran = Cold War Hist-palgr Anglo-american Relations and Cold War Oil: Crisis in Iran = Cold War Hist-palgr. Anglo-german Foundation Series = Anglo German Fdn Ser Anglo-german Foundation Series = Anglo. German. Fdn. Ser. Anglo-German Medical Review = Anglo. Ger. Med. Rev. Anglo-German medical review. Deutsch-englische medizinische Rundschau = Anglo Ger Med Rev Anglophone Jewish Literature = Rout Stud Tw Cen Lit Anglophone Jewish Literature = Rout. Stud. Tw. Cen. Lit. Anglophonia-french Journal of English Studies = Anglophonia Anglophonia-french Journal of English Studies = Anglophonia. Anglophonia - French Journal of English Studies = Anglophonia Anglo-saxon England 37 = Anglo-sax Engl Anglo-saxon England 37 = Anglo-sax. Engl. Anglo-saxon England = Anglo-sax Engl Anglo-saxon England = Anglo-sax. Engl. Anglo-Saxon England = Anglo Sax Engl Anglo-saxon England = Anglo-saxon England Anglo-Saxon England = ASE Anglo Saxon England, Vol 35 = Anglo-sax Engl Anglo Saxon England, Vol 35 = Anglo-sax. Engl. Anglo Saxon England, Vol 36 = Anglo-sax Engl Anglo Saxon England, Vol 36 = Anglo-sax. Engl. Anglo-welsh Review = Anglo-welsh Rev Anglo-welsh Review = Anglo-welsh Rev. Angular Momentum and Mass Loss for Hot Stars = Nato Adv Sci I C-mat Angular Momentum and Mass Loss for Hot Stars = Nato. Adv. Sci. I. C-mat. Angular Momentum Evolution of Young Stars = Nato Adv Sci I C-mat Angular Momentum Evolution of Young Stars = Nato. Adv. Sci. I. C-mat. Anhui nongxueyuan xuebao = Journal of Anhui Agricultural College|Anhui Nongxueyuan Xuebao Anhui Shida Xuebao = Anhui Shida Xuebao Ziran Kexue Ban An IEEE/OUP Classic Reissue = IEEE/OUP Class. Reissue Animal, Agricultural and Food Processing Wastes Ix, Proceedings = Asae Publ Animal, Agricultural and Food Processing Wastes Ix, Proceedings = Asae. Publ. Animal Alternatives, Welfare, and Ethics = Dev An Vet Animal Alternatives, Welfare, and Ethics = Dev. An. Vet. Animal = Animal Animal behaviour = Anim Behav Animal Behaviour = Anim Behav Animal Behaviour = Anim. Behav. Animal Biodiversity and Conservation = Anim Biodiv Conserv Animal Biodiversity and Conservation = Anim. Biodiv. Conserv. Animal Biodiversity and Emerging Diseases: Prediction and Prevention = Ann Ny Acad Sci Animal Biodiversity and Emerging Diseases: Prediction and Prevention = Ann. Ny. Acad. Sci. Animal Biology = Anim Biol Animal Biology = Anim. Biol. Animal biology (Leiden, Netherlands) = Anim Biol Leiden Neth Animal Biotechnology and The Quality of Meat Production = Dev An Vet Animal Biotechnology and The Quality of Meat Production = Dev. An. Vet. Animal biotechnology = Anim Biotechnol Animal Biotechnology = Anim Biotechnol Animal Biotechnology = Anim. Biotechnol. Animal Blood Groups and Biochemical Genetics = Anim Blood Groups Bi Animal Blood Groups and Biochemical Genetics = Anim. Blood Groups Bi. Animal blood groups and biochemical genetics = Anim Blood Groups Biochem Genet Animal Blood Groups and Biochemical Genetics = Anim. Blood Groups Biochem. Genet. Animal Blood Groups and Biochemical Genetics = Anim Genet Animal Blood Groups and Biochemical Genetics = Anim. Genet. Animal blood groups and biochemical genetics. Supplement = Anim Blood Groups Biochem Genet Suppl Animal Blood Groups and Biochemical Genetics. Supplement = Anim. Blood Groups Biochem. Genet. Suppl. Animal Cells and Systems = Anim Cells Syst Animal Cells and Systems = Anim. Cells Syst. Animal Cell Technology: Basic and Applied Aspects, Vol 15 = Anima Cell Tech Animal Cell Technology: Basic and Applied Aspects, Vol 15 = Anima. Cell Tech. Animal Cell Technology Basic & Applied = Anima Cell Tech Animal Cell Technology Basic & Applied = Anima. Cell Tech. Animal Cell Technology: From Target to Market = Esact Proceed Animal Cell Technology: From Target to Market = Esact. Proceed. Animal cognition = Anim Cogn Animal Cognition = Anim Cogn Animal Cognition = Anim. Cogn. Animal Cognition = Compar Cogn Animal Cognition = Compar. Cogn. Animal Conservation = Anim Conserv Animal Conservation = Anim. Conserv. Animal Control Management: A New Look At A Public Responsibility = New Dir Hum-anim Bon Animal Control Management: A New Look At A Public Responsibility = New Dir. Hum-anim. Bon. Animal Epidemiology and Protection of Public Health = Rev Epid San Anim Animal Epidemiology and Protection of Public Health = Rev. Epid. San. Anim. Animal Experimentation and The Future of Medical Research = Portl Pr P Animal Experimentation and The Future of Medical Research = Portl. Pr. P. Animal Feed Science and Technology = Anim Feed Sci Tech Animal Feed Science and Technology = Anim. Feed Sci. Tech. Animal Feed Science and Technology = Anim. Feed Sci. Technol. Animal genetics = Anim Genet Animal Genetics=Anim Genet;; Animal Genetics = Anim Genet Animal Genetics = Anim. Genet. Animal Genetics = Anim Sci Issues Prof Animal Genetics = Anim. Sci. Issues. Prof. Animal Genomics for Animal Health = Dev Biologicals Animal Genomics for Animal Health = Dev. Biologicals. Animal Health Research Reviews = Anim. Health Res. Rev. Animal health research reviews / Conference of Research Workers in Animal Diseases = Anim Health Res Rev Animal Husbandry in Warm Climates = Eaap Public Animal Husbandry in Warm Climates = Eaap. Public. Animal Learning and Behavior = Anim. Learn. Behav. Animal learning & behavior = Anim Learn Behav Animal Learning & Behavior = Anim Learn Behav Animal Learning & Behavior = Anim. Learn. Behav. Animal Models = Anim Models Animal Models = Anim. Models Animal Models for Neurodegenerative Disease = Rsc Drug Discov Animal Models for Neurodegenerative Disease = Rsc. Drug. Discov. Animal Models for Retinal Diseases = Neuromethods Animal Models for Retinal Diseases = Neuromethods. Animal Models in Aids = Anim Models Animal Models in Aids = Anim. Models Animal Models in Liver Research = Adv Vet Sci Comp Med Animal Models in Liver Research = Adv. Vet. Sci. Comp. Med. Animal Models in Psychopharmacology = Adv Phar Sc Animal Models in Psychopharmacology = Adv. Phar. Sc. Animal Models of Behavioral Analysis = Neuromethods Animal Models of Behavioral Analysis = Neuromethods. Animal Models of Dementia = Neuromethods Animal Models of Dementia = Neuromethods. Animal Models of Drug Addiction = Neuromethods Animal Models of Drug Addiction = Neuromethods. Animal Models of Epilepsy: Methods and Innovations = Neuromethods Animal Models of Epilepsy: Methods and Innovations = Neuromethods. Animal Models of Pain = Neuromethods Animal Models of Pain = Neuromethods. Animal Models of Schizophrenia and Related Disorders = Neuromethods Animal Models of Schizophrenia and Related Disorders = Neuromethods. Animal Models of T Cell-mediated Skin Diseases = E Schering Res Fdn W Animal Models of T Cell-mediated Skin Diseases = E. Schering. Res. Fdn. W. Animal Nutrition and Feed Technology = Anim Nutr Feed Techn Animal Nutrition and Feed Technology = Anim. Nutr. Feed Techn. Animal Nutrition and Feed Technology = Anim. Nutr. Feed Technol. Animal Nutrition and Transport Processes, 1 = Comp Physiol Animal Nutrition and Transport Processes, 1 = Comp. Physiol. Animal Nutrition and Transport Processes, 2 = Comp Physiol Animal Nutrition and Transport Processes, 2 = Comp. Physiol. Animal Production and Rural Tourism in Mediterranean Regions = Eaap Public Animal Production and Rural Tourism in Mediterranean Regions = Eaap. Public. Animal production = Anim Prod Animal Production = Anim Prod Animal Production = Anim. Prod. Animal Production in Australia = P Aus S Ani Animal Production in Australia = P. Aus. S. Ani. Animal Production Science = Anim Prod Sci Animal Production Science = Anim. Prod. Sci. Animal Regulation Studies = Anim Regulat Stud Animal Regulation Studies = Anim. Regulat. Stud. Animal reproduction science = Anim Reprod Sci Animal Reproduction Science=Anim Reprod Sci;; Animal Reproduction Science = Anim Reprod Sci Animal Reproduction Science = Anim. Reprod. Sci. Animal Research = Anim Res Animal Research = Anim. Res. Animals and Environments = Int Congr Ser Animals and Environments = Int. Congr. Ser. Animal Science and Issues = Anim Sci Issues Prof Animal Science and Issues = Anim. Sci. Issues Prof. Animal Science and Technology = Anim. Sci. Technol. Animal Science = Anim Sci Animal Science = Anim. Sci. Animal Science Issues and Professions = Anim Sci Issues Prof Animal Science Issues and Professions = Anim. Sci. Issues Prof. Animal Science Journal = Anim Sci J Animal Science Journal = Anim. Sci. J. Animal science journal = Nihon chikusan Gakkaiho|Anim. Sci. J. Animal Science Papers and Reports 6 = Anim Sci P Animal Science Papers and Reports 6 = Anim. Sci. P. Animal Science Papers and Reports = Anim Sci P Animal Science Papers and Reports = Anim. Sci. P. Animal Science Papers and Reports = Anim Sci Pap Rep Animal Science Papers and Reports = Anim. Sci. Pap. Rep. Animals in Space: From Research Rockets to The Space Shuttle = S-p B Space Explor Animals in Space: From Research Rockets to The Space Shuttle = S-p. B. Space Explor. Animal Subjects: An Ethical Reader in A Posthuman World = Cult Stud Ser Animal Subjects: An Ethical Reader in A Posthuman World = Cult. Stud. Ser. Animal technology : journal of the Institute of Animal Technicians = Anim Technol Animal Welfare = Anim Welfare Animal Welfare = Anim. Welfare Animal Welfare Information Center Bulletin = Anim. Welfare Inf. Cent. Bull. Animal Welfare Series = Anim Welfare Ser Animal Welfare Series = Anim. Welfare Ser. Animal welfare (South Mimms, England) = Anim Welf Anima Mundi: The Rise of The World Soul Theory in Modern German Philosophy = Arch Int Hist Idees Anima Mundi: The Rise of The World Soul Theory in Modern German Philosophy = Arch. Int. Hist. Idees. Animation and Performance Capture Using Digitized Models = Cogn Syst Monogr Animation and Performance Capture Using Digitized Models = Cogn. Syst. Monogr. Animation-an Interdisciplinary Journal = Animation Animation-an Interdisciplinary Journal = Animation. An Introduction to Recent Developments in Theory and Numerics for Conservation Laws = Lect Notes Comp Sci An Introduction to Recent Developments in Theory and Numerics for Conservation Laws = Lect. Notes. Comp. Sci. Anion Sensing = Top Curr Chem Anion Sensing = Top. Curr. Chem. Anisotropic Behaviour of Damaged Materials = Lect Notes Appl Comp Anisotropic Behaviour of Damaged Materials = Lect. Notes. Appl. Comp. Anisotropic Behaviour of Damaged Materials = Ln App C M Anisotropic Behaviour of Damaged Materials = Ln. App. C. M. Anisotropy 2000: Fractures, Converted Waves and Case Studies = Open File Publ Anisotropy 2000: Fractures, Converted Waves and Case Studies = Open. File. Publ. Ani = U Pa Armen Ani = U. Pa. Armen. Ankara Universitesi Dis Hekimligi Fakultesi Dergisi (Journal of the Dental Faculty of Ankara University) = Ankara Univ. Hekim. Fak. Derg. Ankara Universitesi Veteriner Fakultesi Dergisi = Ankara Univ Vet Fak Ankara Universitesi Veteriner Fakultesi Dergisi = Ankara Univ. Vet. Fak. Ankara Universitesi Yilligi. Annales de l'Universite d'Ankara. Ankara Universitesi = Ann Univ Ankara ANL = ANL Rep ANL Reports = ANL Rep. ANNA journal / American Nephrology Nurses' Association = ANNA J ANNA Journal = ANNA J. Annalen Der Chemie-justus Liebig = Liebigs Ann Chem Annalen Der Chemie-justus Liebig = Liebigs. Ann. Chem. Annalen der Meteorologie = Ann. Meteor. Annalen der Meteorologie = Ann. Meteorol. Annalen der Physik (8) = Ann. Physik (8) Annalen der Physik = Ann. Phys. Annalen Der Physik = Ann Phys-berlin Annalen Der Physik = Ann. Phys-berlin. Annalen Der Physik = Ann Phys-leipzig Annalen Der Physik = Ann. Phys-leipzig. Annalen der Schweizerischen meteorologischen Anstalt = Ann. Schweiz. meteorol. Anst. Annales Academiae Medicae Stetinensis=Ann Acad Med Stetin;; Annales Academiae Medicae Stetinensis = Ann Acad Med Stetin Annales Academiae Medicae Stetinensis = Ann. Acad. Med. Stetin. Annales Academiae Medicae Stetinensis. Suplement = Ann Acad Med Stetin Supl Annales Academiae Medicae Stetinensis. Suplement = Ann. Acad. Med. Stetin. Supl. Annales Academiæ Scientiarum Fennicæ = Ann. Acad. Sci. Fenn. Math. Annales Academiae Scientiarum Fennicae-mathematica = Ann Acad Sci Fenn-m Annales Academiae Scientiarum Fennicae-mathematica = Ann. Acad. Sci. Fenn-m. Annales Academiae Scientiarum Fennicae. Ser. A.5, Medica = Ann Acad Sci Fenn A Annales Academiae Scientiarum Fennicae Series A1-mathematica = Ann Acad Sci Fenn A1 Annales Academiae Scientiarum Fennicae Series A1-mathematica = Ann. Acad. Sci. Fenn. A1. Annales Academiae Scientiarum Fennicae. Series A IV, Biologica = Ann. Acad. Sci. Fenn. [Biol.] Annales Academiae Scientiarum Fennicae. Series A V, Medica = Ann. Acad. Sci. Fenn. A Annales Academiae Scientiarum Fennicae, Series B = Ann Acad Sc Annales Academiae Scientiarum Fennicae, Series B = Ann. Acad. Sc. Annales Agriculturae Fenniae = Ann Agr Fenn Annales Agriculturae Fenniae = Ann. Agr. Fenn. Annales agronomiques = Ann. agron. Annales Agronomiques = Ann Agron Annales Agronomiques = Ann. Agron. Annales-anali Za Istrske in Mediteranske Studije-series Historia Et Sociologia = Ann-anal Istrske Med Annales-anali Za Istrske in Mediteranske Studije-series Historia Et Sociologia = Ann-anal. Istrske Med. Annales archeologiques arabes syriennes = Ann Archeol Syrie Annales belges de medecine militaire. Belgisch tijdschrift voor militaire geneeskunde = Ann Belg Med Mil Annales Botanici Fennici = Ann Bot Fenn Annales Botanici Fennici = Ann. Bot. Fenn. Annales chirurgiae et gynaecologiae = Ann Chir Gynaecol Annales Chirurgiae et Gynaecologiae = Ann. Chir. Gynaecol. Annales Chirurgiae Et Gynaecologiae=Ann Chir Gynaecol;; Annales Chirurgiae Et Gynaecologiae = Ann Chir Gynaecol Annales Chirurgiae Et Gynaecologiae = Ann. Chir. Gynaecol. Annales Chirurgiae Et Gynaecologiae = Ann Chir Gynaecol Fe Annales Chirurgiae Et Gynaecologiae = Ann. Chir. Gynaecol. Fe. Annales chirurgiae et gynaecologiae Fenniae = Ann Chir Gynaecol Fenn Annales Chirurgiae et Gynaecologiae Fenniae = Ann. Chir. Gynaecol. Fenn. Annales Chirurgiae et Gynaecologiae Fenniae. Supplement = Ann. Chir. Gynaecol. Fenn. Suppl. Annales chirurgiae et gynaecologiae Fenniae. Supplementum = Ann Chir Gynaecol Fenn Suppl Annales chirurgiae et gynaecologiae. Supplementum = Ann Chir Gynaecol Suppl Annales Chirurgiae et Gynaecologiae. Supplementum = Ann. Chir. Gynaecol. Suppl. Annales Chirurgiae Et Gynaecologiae. Supplementum=Ann Chir Gynaecol Suppl;; Annales cisalpines d'histoire sociale. Serie I = Ann Cisalp Hist Soc Annales D Anatomie Pathologique = Ann Anat Pathol Annales D Anatomie Pathologique = Ann. Anat. Pathol. Annales d'anatomie pathologique = Ann Anat Pathol (Paris) Annales d'Anatomie Pathologique = Ann. Anat. Pathol. (Paris) Annales D Astrophysique = Ann Astrophys Annales D Astrophysique = Ann. Astrophys. Annales de Biochimie Clinque du Quebec = Ann. Biochim. Clin. Que. Annales De Biologie Animale Biochimie Biophysique = Ann Biol Anim Bioch Annales De Biologie Animale Biochimie Biophysique = Ann. Biol. Anim. Bioch. Annales de biologie animale, biochimie, biophysique = Ann Biol Anim Biochim Biophys Annales de Biologie Animale, Biochimie, Biophysique = Ann. Biol. Anim. Biochim. Biophys. Annales de Biologie Clinique = Ann. Biol. Clin. Annales de biologie clinique = Ann Biol Clin (Paris) Annales de Biologie Clinique=Ann Biol Clin (Paris);; Annales de Biologie Clinique = Ann. Biol. Clin. (Paris) Annales De Biologie Clinique = Ann Biol Clin-paris Annales De Biologie Clinique = Ann. Biol. Clin-paris. Annales de Biologie Clinique du Quebec = Ann. Biol. Clin. Que. Annales de Bourgogne = Ann Bourgogne Annales de Bretagne et des Pays de l'Ouest = ABPO Annales de Bretagne et des pays de l'Ouest = Ann Bretagne Payes Ouest Annales De Bretagne Et Des Pays De L Ouest = Ann Bretagne Pays Annales De Bretagne Et Des Pays De L Ouest = Ann. Bretagne Pays Annales De Cardiologie Et D Angeiologie = Ann Cardiol Angeiol Annales De Cardiologie Et D Angeiologie = Ann. Cardiol. Angeiol. Annales de cardiologie et d'angeiologie = Ann Cardiol Angeiol (Paris) Annales de Cardiologie et d'Angeiologie = Ann. Cardiol. Angeiol. (Paris) Annales de Cardiologie Et D Angeiologie=Ann Cardiol Angeiol (Paris);; Annales de Chimie Analytique et Revue de Chimie Analytique Reunies = Ann. Chim. Anal. Rev. Chim. Anal. Reunies Annales de Chimie = Ann. Chim. Annales de Chimie (Cachan, France) = Ann. Chim. (Cachan, Fr.) Annales De Chimie Et De Physique = Ann Chim Phys Annales De Chimie Et De Physique = Ann. Chim. Phys. Annales De Chimie France = Ann Chim France Annales De Chimie France = Ann. Chim. France Annales de Chimie (Paris, France) = Ann. Chim. (Paris, Fr.) Annales de Chimie - Science des Materiaux = Ann. Chim. - Sci. Mat. Annales de Chimie Science des Materiaux = Ann. Chim. Sci. Mat. Annales De Chimie-science Des Materiaux = Ann Chim-sci Mat Annales De Chimie-science Des Materiaux = Ann. Chim-sci. Mat. Annales de chirurgie = Ann Chir Annales de Chirurgie=Ann Chir;; Annales de Chirurgie = Ann. Chir. Annales De Chirurgie = Ann Chir Annales De Chirurgie = Ann. Chir. Annales de Chirurgie de la Main = Ann. Chir. Main Annales de Chirurgie de la Main et du Membre Superieur = Ann. Chir. Main Memb. Super. Annales de Chirurgie De la Main Et Du Membre Superieur=Ann Chir Main Memb Super;; Annales de chirurgie de la main : organe officiel des societes de chirurgie de la main = Ann Chir Main Annales de chirurgie infantile = Ann Chir Infant Annales de Chirurgie Infantile = Ann. Chir. Infant. Annales De Chirurgie Infantile = Ann Chir Infant Annales De Chirurgie Infantile = Ann. Chir. Infant. Annales de chirurgie plastique = Ann Chir Plast Annales de Chirurgie Plastique = Ann. Chir. Plast. Annales De Chirurgie Plastique = Ann Chir Plast Esth Annales De Chirurgie Plastique = Ann. Chir. Plast. Esth. Annales De Chirurgie Plastique Esthetique = Ann Chir Plast Esth Annales De Chirurgie Plastique Esthetique = Ann. Chir. Plast. Esth. Annales De Chirurgie Plastique Et Esthetique = Ann Chir Plast Esth Annales De Chirurgie Plastique Et Esthetique = Ann. Chir. Plast. Esth. Annales de chirurgie plastique et esthetique = Ann Chir Plast Esthet Annales de Chirurgie Plastique et Esthetique = Ann. Chir. Plast. Esthet. Annales de Chirurgie Plastique Et Esthetique=Ann Chir Plast Esthet;; Annales de chirurgie thoracique et cardio-vasculaire = Ann Chir Thorac Cardiovasc Annales de Chirurgie Thoracique et Cardio-Vasculaire = Ann. Chir. Thorac. Cardiovasc. Annales D Economie Et De Sociologie Rurales = Ann Econ Soc Rural Annales D Economie Et De Sociologie Rurales = Ann. Econ. Soc. Rural. Annales d'Économie et de Statistique = Ann. Économ. Statist. Annales d'economie et de statistique = Ann Econ Stat Annales d'Economie et de Statistique=Ann. Econ. Statist. Annales de demographie historique = Ann Demogr Hist (Paris) Annales De Dermatologie Et De Syphiligraphie = Ann Dermatol Syphil Annales De Dermatologie Et De Syphiligraphie = Ann. Dermatol. Syphil. Annales de dermatologie et de syphiligraphie = Ann Dermatol Syphiligr (Paris) Annales de Dermatologie et de Syphiligraphie = Ann. Dermatol. Syphiligr. (Paris) Annales De Dermatologie Et De Venereologie = Ann Dermatol Vener Annales De Dermatologie Et De Venereologie = Ann. Dermatol. Vener. Annales de dermatologie et de venereologie = Ann Dermatol Venereol Annales de Dermatologie et de Venereologie = Ann. Dermatol. Venereol. Annales de Dermatologie Et De Venereologie=Ann Dermatol Venereol;; Annales de droit = Annal Droit Annales de droit international medical = Ann Droit Int Med Annales de Droit International Medical = Ann. Droit Int. Med. Annales de gastroenterologie et d'hepatologie = Ann Gastroenterol Hepatol (Paris) Annales de Gastroenterologie et d'Hepatologie = Ann. Gastroenterol. Hepatol. (Paris) Annales De Gastroenterologie Et D Hepatologie = Ann Gastroent Hepato Annales De Gastroenterologie Et D Hepatologie = Ann. Gastroent. Hepato. Annales de genetique = Ann Genet Annales de Genetique=Ann Genet;; Annales de Genetique = Ann. Genet. Annales De Genetique = Ann Genet-paris Annales De Genetique = Ann. Genet-paris. Annales de genetique et de selection animale = Ann Genet Sel Anim Annales de Genetique et de Selection Animale = Ann. Genet. Sel. Anim. Annales De Genetique Et De Selection Animale = Ann Genet Sel Anim Annales De Genetique Et De Selection Animale = Ann. Genet. Sel. Anim. Annales De Geographie = Ann Geogr Annales De Geographie = Ann. Geogr. Annales de geographie = Ann Georgr Annales de Geophysique = Ann. Geophys. Annales De Geophysique = Ann Geophys Annales De Geophysique = Ann. Geophys. Annales De Geophysique = Ann Geophys-fr Annales De Geophysique = Ann. Geophys-fr. Annales de la Faculte des lettres et sciences humaines (Dakar, Senegal) = Ann Fac Lett Sci Hum Annales de la Faculté des Lettres et Sciences humaines de l'Université de Dakar = AFLD Annales de la Faculté des Sciences = Ann. Fac. Sci. Univ. Kinshasa Annales De L Amelioration Des Plantes = Ann Amelior Plant Annales De L Amelioration Des Plantes = Ann. Amelior. Plant. Annales de l'anesthesiologie francaise = Ann Anesthesiol Fr Annales de l'Anesthesiologie Francaise = Ann. Anesthesiol. Fr. Annales De L Anesthesiologie Francaise = Ann Anesthesiol Fr Annales De L Anesthesiologie Francaise = Ann. Anesthesiol. Fr. Annales de la nutrition et de l'alimentation = Ann Nutr Aliment Annales de la Nutrition et de l Alimentation = Ann. Nutr. Aliment. Annales De La Nutrition Et De L Alimentation = Ann Nutr Aliment Annales De La Nutrition Et De L Alimentation = Ann. Nutr. Aliment. Annales De La Societe = Ann Soc Annales De La Societe = Ann. Soc. Annales De La Societe Belge De Medecine Tropicale = Ann Soc Belg Med Tr Annales De La Societe Belge De Medecine Tropicale = Ann. Soc. Belg. Med. Tr. Annales de la Societe belge de medecine tropicale = Ann Soc Belg Med Trop Annales de la Societe Belge de Medecine Tropicale = Ann. Soc. Belg. Med. Trop. Annales de la Societe belge d'histoire des hopitaux = Ann Soc Belg Hist Hop Annales de la Societe d'emulation de Bruges = Ann soc Emul Bruges Annales De La Societe Entomologique De France = Ann Soc Entomol Fr Annales De La Societe Entomologique De France = Ann. Soc. Entomol. Fr. Annales de la Societe entomologique de France. Societe entomologique de France = Ann Soc Entomol Fr Annales de la Societe royale d'archeologie de Bruxelles. Societe royale d'archeologie de Bruxelles (Belgium) = Ann Soc R Archeol Brux Annales de la Societe royale des sciences medicales et naturelles de Bruxelles = Ann Soc R Sci Med Nat Brux Annales de la Societe Royale des Sciences Medicales et Naturelles de Bruxelles = Ann. Soc. R. Sci. Med. Nat. Brux. Annales De La Societe Royale Zoologique De Belgique = Ann Soc Roy Zool Bel Annales De La Societe Royale Zoologique De Belgique = Ann. Soc. Roy. Zool. Bel. Annales De La Societe Scientifique De Bruxelles Series 1-sciences Mathematiques Astronomiques Et Physiques = Ann Soc Sci Brux Annales De La Societe Scientifique De Bruxelles Series 1-sciences Mathematiques Astronomiques Et Physiques = Ann. Soc. Sci. Brux. Annales de l’École nationale des eaux et forêts et de la station de recherches et expériences forestières = Ann. Éc. Natl. Eaux For. Annales de l'Est = Ann Est Annales de limnologie = Ann Limnol Annales De Limnologie-international Journal of Limnology = Ann Limnol-int J Lim Annales De Limnologie-international Journal of Limnology = Ann. Limnol-int. J. Lim. Annales de l'INSEE = Ann Insee Annales de l'INSEE=Ann. INSEE Annales de l'Institut archeologique du Luxembourg. Institut archeologique du Luxembourg (Arlon, Belgium) = Ann Inst Archeol Luxemb Annales de l'Institut de philosophie = AIPh Annales de l'Institute Henri Poincare = Ann. Inst. Henri Poincare Annales De L Institut Fourier = Ann I Fourier Annales De L Institut Fourier = Ann. I. Fourier Annales De L Institut Henri Poincare-analyse Non Lineaire = Ann I H Poincare-an Annales De L Institut Henri Poincare-analyse Non Lineaire = Ann. I. H. Poincare-an. Annales de l'Institut Henri Poincaré = Ann. Inst. H. Poincaré Anal. Non Linéaire Annales de l'Institut Henri Poincaré = Ann. Inst. H. Poincaré Phys. Théor. Annales de l'Institut Henri Poincaré = Ann. Inst. H. Poincaré Probab. Statist. Annales De L Institut Henri Poincare-physique Theorique = Ann I H Poincare-phy Annales De L Institut Henri Poincare-physique Theorique = Ann. I. H. Poincare-phy. Annales De L Institut Henri Poincare-probabilites Et Statistiques = Ann I H Poincare-pr Annales De L Institut Henri Poincare-probabilites Et Statistiques = Ann. I. H. Poincare-pr. Annales De L Institut Henri Poincare Section A Physique Theorique = Ann I H Poincare A Annales De L Institut Henri Poincare Section A Physique Theorique = Ann. I. H. Poincare A Annales De L Institut Henri Poincare Section B-calcul Des Probabilites Et Statistique = Ann I H Poincare B Annales De L Institut Henri Poincare Section B-calcul Des Probabilites Et Statistique = Ann. I. H. Poincare B. Annales De L Institut Oceanographique = Ann I Oceanogr Paris Annales De L Institut Oceanographique = Ann. I. Oceanogr. Paris. Annales de l Institut Pasteur = Ann. Inst. Pasteur (Paris) Annales de l'Institut Pasteur = Ann Inst Pasteur (Paris) Annales De L Institut Pasteur = Ann I Pasteur Paris Annales De L Institut Pasteur = Ann. I. Pasteur Paris. Annales de l Institut Pasteur de Lille = Ann. Inst. Pasteur Lille Annales de l'Institut Pasteur de Lille = Ann Inst Pasteur Lille Annales de l Institut Pasteur. Immunologie = Ann. Inst. Pasteur. Immunol. Annales de l'Institut Pasteur. Immunologie = Ann Inst Pasteur Immunol Annales De L Institut Pasteur-immunology = Ann Inst Pasteur Imm Annales De L Institut Pasteur-immunology = Ann. Inst. Pasteur. Imm. Annales de l Institut Pasteur. Immunology = Ann. Inst. Pasteur. Immunol. Annales de l'Institut Pasteur. Immunology = Ann Inst Pasteur Immunol Annales De L Institut Pasteur-microbiologie = Ann Inst Pasteur Mic Annales De L Institut Pasteur-microbiologie = Ann. Inst. Pasteur. Mic. Annales de l Institut Pasteur. Microbiologie = Ann. Inst. Pasteur. Microbiol. Annales de l'Institut Pasteur. Microbiologie = Ann Inst Pasteur Microbiol Annales de l Institut Pasteur. Microbiology = Ann. Inst. Pasteur. Microbiol. Annales de l'Institut Pasteur. Microbiology = Ann Inst Pasteur Microbiol Annales De L Institut Pasteur-virology = Ann Inst Pasteur Vir Annales De L Institut Pasteur-virology = Ann. Inst. Pasteur. Vir. Annales de l Institut Pasteur. Virology = Ann. Inst. Pasteur. Virol. Annales de l'Institut Pasteur. Virology = Ann Inst Pasteur Virol Annales de l'Universite d'Abidjan. Serie G: Geographie. Universite d'Abidjan = Ann Univ Abidjan Ser G Annales De Medecine Interne = Ann Med Interne Annales De Medecine Interne = Ann. Med. Interne Annales de medecine interne = Ann Med Interne (Paris) Annales de Medecine Interne=Ann Med Interne (Paris);; Annales de Medecine Interne = Ann. Med. Interne (Paris) Annales de medecine legale, criminologie, police scientifique et toxicologie = Ann Med Leg Criminol Police Sci Toxicol Annales de Medecine Legale, Criminologie, Police Scientifique et Toxicologie = Ann. Med. Leg. Criminol. Police Sci. Toxicol. Annales de medecine physique = Ann Med Phys (Lille) Annales De Medecine Veterinaire = Ann Med Vet Annales De Medecine Veterinaire = Ann. Med. Vet. Annales De Microbiologie = Ann Inst Pasteur Mic Annales De Microbiologie = Ann. Inst. Pasteur. Mic. Annales de microbiologie = Ann Microbiol (Paris) Annales de Microbiologie = Ann. Microbiol. (Paris) Annales d'endocrinologie = Ann Endocrinol (Paris) Annales d Endocrinologie = Ann. Endocrinol. (Paris) Annales D Endocrinologie = Ann Endocrinol-paris Annales D Endocrinologie = Ann. Endocrinol-paris. Annales D Endocrinologie=Ann Endocrinol (Paris);; Annales de Normandie = AnnNorm Annales de Normandie = Ann Normandie Annales de Paleontologie = Ann. Paleontol. Annales De Paleontologie = Ann Paleontol Annales De Paleontologie = Ann. Paleontol. Annales De Parasitologie Humaine Et Comparee = Ann Parasit Hum Comp Annales De Parasitologie Humaine Et Comparee = Ann. Parasit. Hum. Comp. Annales de parasitologie humaine et comparee = Ann Parasitol Hum Comp Annales de Parasitologie Humaine et Comparee = Ann. Parasitol. Hum. Comp. Annales de pathologie = Ann Pathol Annales de Pathologie=Ann Pathol;; Annales de Pathologie = Ann. Pathol. Annales De Pathologie = Ann Pathol Annales De Pathologie = Ann. Pathol. Annales de pediatrie = Ann Pediatr (Paris) Annales de Pediatrie = Ann. Pediatr. (Paris) Annales De Pediatrie = Ann Pediatr-paris Annales De Pediatrie = Ann. Pediatr-paris. Annales De Physiologie Vegetale = Ann Physiol Veg Annales De Physiologie Vegetale = Ann. Physiol. Veg. Annales de Physique = Ann. Phys. Annales de physique = Ann Phys (Paris) Annales De Physique = Ann Phys-paris Annales De Physique = Ann. Phys-paris. Annales De Physique Biologique Et Medicale = Ann Phys Biol Med Annales De Physique Biologique Et Medicale = Ann. Phys. Biol. Med. Annales de phytopathologie = Ann. phytopathol. Annales De Phytopathologie = Ann Phytopathol Annales De Phytopathologie = Ann. Phytopathol. Annales De Radioelectricite = Ann Radioelectr Annales De Radioelectricite = Ann. Radioelectr. Annales De Radiologie = Ann Radiol Annales De Radiologie = Ann. Radiol. Annales de radiologie = Ann Radiol (Paris) Annales de Radiologie=Ann Radiol (Paris);; Annales de Radiologie = Ann. Radiol. (Paris) Annales De Radiologie-radiologie Clinique Radiobiologie = Ann Radiol-radiol Cl Annales De Radiologie-radiologie Clinique Radiobiologie = Ann. Radiol-radiol. Cl. Annales de readaptation et de medecine physique : revue scientifique de la Societe francaise de reeducation fonctionnelle de readaptation et de medecine physique = Ann Readapt Med Phys Annales de recherches veterinaires. Annals of veterinary research = Ann Rech Vet Annales de Recherches Veterinaires = Ann. Rech. Vet. Annales De Recherches Veterinaires = Ann Rech Vet Annales De Recherches Veterinaires = Ann. Rech. Vet. Annales De Sciences Economiques Appliquees = Ann Sci Econ Appl Annales De Sciences Economiques Appliquees = Ann. Sci. Econ. Appl. Annales de Sciences Economiques Appliqués=Ann. Sci. Econ. Appl. Annales des Composites = Ann. Compos. Annales Des Epiphyties = Ann Epiphyt Annales Des Epiphyties = Ann. Epiphyt. Annales Des Mines = Ann Mines Annales Des Mines = Ann. Mines Annales des Ponts et Chausses = Ann. Ponts Chaussees Annales des sciences forestières = Ann. sci. for. Annales Des Sciences Forestieres = Ann Sci Forest Annales Des Sciences Forestieres = Ann. Sci. Forest. Annales des Sciences Mathématiques du Québec = Ann. Sci. Math. Québec Annales Des Sciences Naturelles-botanique Et Biologie Vegetale = Ann Sci Nat Bot Biol Annales Des Sciences Naturelles-botanique Et Biologie Vegetale = Ann. Sci. Nat. Bot. Biol. Annales Des Sciences Naturelles-zoologie Et Biologie Animale = Ann Sci Nat Zool Annales Des Sciences Naturelles-zoologie Et Biologie Animale = Ann. Sci. Nat. Zool. Annales des Sciences Naturelles - Zoologie et Biologie Animale = Ann. Sci. Nat. Zool. Biol. Anim. Annales Des Telecommunications = Annales Telecommun Annales Des Telecommunications = Annales Telecommun. Annales Des Telecommunications-annals of Telecommunications = Ann Telecommun Annales Des Telecommunications-annals of Telecommunications = Ann. Telecommun. Annales De Technologie Agricole = Ann Technol Agr Annales De Technologie Agricole = Ann. Technol. Agr. Annales d'Éthiopie = AnnEth Annales de Toxicologie Analytique = Ann. Toxicol. Anal. Annales De Virologie = Ann Inst Pasteur Vir Annales De Virologie = Ann. Inst. Pasteur. Vir. Annales De Zoologie Ecologie Animale = Ann Zool Ecol Anim Annales De Zoologie Ecologie Animale = Ann. Zool. Ecol. Anim. Annales De Zootechnie = Ann Zootech Annales De Zootechnie = Ann. Zootech. Annales d'histochimie = Ann Histochim Annales d Histochimie = Ann. Histochim. Annales D Histochimie = Ann Histochim Annales D Histochimie = Ann. Histochim. Annales d'histoire et d'archéologie = AnnHistA Annales d'histoire et d'archéologie / Université Saint-Joseph = AHAUSJ Annales D Hydrobiologie = Ann Hydrobiol Annales D Hydrobiologie = Ann. Hydrobiol. Annales d'hygiene et de medecine coloniales = Ann Hyg Med Colon Annales d'immunologie = Ann Immunol (Paris) Annales d Immunologie = Ann. Immunol. (Paris) Annales D Immunologie = Ann Inst Pasteur Imm Annales D Immunologie = Ann. Inst. Pasteur. Imm. Annales D Oculistique = Ann Ocul Annales D Oculistique = Ann. Ocul. Annales d'oculistique = Ann Ocul (Paris) Annales d Oculistique = Ann. Ocul. (Paris) Annales D Oto-laryngologie Et De Chirurgie Cervico-faciale = Ann Oto-lar Chir C-f Annales D Oto-laryngologie Et De Chirurgie Cervico-faciale = Ann. Oto-lar. Chir. C-f. Annales d Oto-Laryngologie et de Chirurgie Cervico-Faciale = Ann. Otolaryngol. Chir. Cervicofac. Annales D Oto-Laryngologie Et de Chirurgie Cervico-Faciale=Ann Otolaryngol Chir Cervicofac;; Annales d'oto-laryngologie et de chirurgie cervico faciale : bulletin de la Societe d'oto-laryngologie des hopitaux de Paris = Ann Otolaryngol Chir Cervicofac Annales du Cercle royal d'histoire et d'archeologie d'Ath et de la region et musees athois = Ann Cerc Roy Hist Archeol Ath Annales du Midi = Ann Midi Annales D Urologie = Ann Urol Annales D Urologie = Ann. Urol. Annales d'urologie = Ann Urol (Paris) Annales d Urologie = Ann. Urol. (Paris) Annales D Urologie=Ann Urol (Paris);; Annales du Service des Antiquités d'égypte = ASAE Annales du Service des antiquités de l’Égypte = ASAE Annales du Service des antiquites de l'Egypte / Ministere des travaux publics = Ann Serv Antiq Egypte Annales-economies Societes = Annales-econ Soc Annales-economies Societes = Annales-econ. Soc. Annales: économies, sociétés, civilisations = Annales (ESC) Annales. Economies, sociétés, civilisations = AnnEconSocCiv Annales-economies Societes Civilisations = Ann Econ Soc Civil Annales-economies Societes Civilisations = Ann. Econ. Soc. Civil. Annales Entomologici Fennici = Ann Entomol Fenn Annales Entomologici Fennici = Ann. Entomol. Fenn. Annales. Faculte des lettres et sciences humaines de Nice = Ann Fac Lett Sci Hum Nice Annales Francaises D Anesthesie Et De Reanimation = Ann Fr Anesth Annales Francaises D Anesthesie Et De Reanimation = Ann. Fr. Anesth. Annales francaises d'anesthesie et de reanimation = Ann Fr Anesth Reanim Annales Francaises d'Anesthesie et de Reanimation = Ann. Fr. Anesth. Reanim. Annales Francaises D Anesthesie Et de Reanimation=Ann Fr Anesth Reanim;; Annales Geophysicae = Ann Geophys Annales Geophysicae = Ann. Geophys. Annales Geophysicae = Ann Geophys-germany Annales Geophysicae = Ann. Geophys-germany. Annales Geophysicae-atmospheres Hydrospheres and Space Sciences = Ann Geophys Annales Geophysicae-atmospheres Hydrospheres and Space Sciences = Ann. Geophys. Annales Geophysicae-atmospheres Hydrospheres and Space Sciences = Ann Geophys-atm Hydr Annales Geophysicae-atmospheres Hydrospheres and Space Sciences = Ann. Geophys-atm. Hydr. Annales Geophysicae Series A-upper Atmosphere and Space Sciences = Ann Geophys A-upper Annales Geophysicae Series A-upper Atmosphere and Space Sciences = Ann. Geophys. A-upper Annales Geophysicae Series B-terrestrial and Planetary Physics = Ann Geophys B-terr P Annales Geophysicae Series B-terrestrial and Planetary Physics = Ann. Geophys. B-terr. P. Annales Henri Poincare = Ann Henri Poincare Annales Henri Poincare = Ann. Henri Poincare Annales: histoire, sciences sociales = Annales (HSS) Annales-histoire Sciences Sociales = Ann Hist Sci Soc Annales-histoire Sciences Sociales = Ann. Hist. Sci. Soc. Annales. Histoire, sciences sociales = AnnHistScSoc Annales Historico-Naturales Musei Nationalis Hungarici = Ann. Hist.-Nat. Mus. Natl. Hung. Annales Historiques De La Revolution Francaise = Ann Hist Revol Fr Annales Historiques De La Revolution Francaise = Ann. Hist. Revol. Fr. Annales historiques de la Revolution francaise = Ann Hist Revolut Fr Annales historiques du Mantois = Ann Hist Mantois Annales Hydrographiques = Ann. Hydrogr. Annales immunologiae Hungaricae = Ann Immunol Hung Annales Immunologiae Hungaricae = Ann. Immunol. Hung. Annales Latini Montium Arvernorum: bulletin du Groupe d'études latines de l'Université de Clermont = ALMArv Annales Mathematicae Silesianae = Ann. Math. Sil. Annales Mathématiques Blaise Pascal = Ann. Math. Blaise Pascal Annales medicales de Nancy = Ann Med Nancy Annales Medicales de Nancy = Ann. Med. Nancy Annales Medicinae Experimentalis Et Biologiae Fenniae = Ann Med Exp Biol Fen Annales Medicinae Experimentalis Et Biologiae Fenniae = Ann. Med. Exp. Biol. Fen. Annales medicinae experimentalis et biologiae Fenniae = Ann Med Exp Biol Fenn Annales Medicinae Experimentalis et Biologiae Fenniae = Ann. Med. Exp. Biol. Fenn. Annales medicinae internae Fenniae = Ann Med Intern Fenn Annales Medicinae Internae Fenniae = Ann. Med. Intern. Fenn. Annales medicinae internae Fenniae. Supplementum = Ann Med Intern Fenn Suppl Annales Medico-psychologiques = Ann Med-psychol Annales Medico-psychologiques = Ann. Med-psychol. Annales medico-psychologiques = Ann Med Psychol (Paris) Annales Medico-Psychologiques = Ann. Med. Psychol. (Paris) Annales Nestle = Ann. Nestle [Fr.] Annales Nestle. [Deutsche Aufl.] = Ann Nestle [Ger] Annales Nestle. [Ed. francaise] = Ann Nestle [Fr] Annales Nestle [English ed.] = Ann Nestle [Eng] Annales odonto-stomatologiques = Ann Odontostomatol (Lyon) Annales Odonto-Stomatologiques = Ann. Odontostomatol. (Lyon) Annales of The University of Ferra, Section Vii, Mathematical Sciences = Ann Univ Ferrara Annales of The University of Ferra, Section Vii, Mathematical Sciences = Ann. Univ. Ferrara. Annales paediatriae Fenniae = Ann Paediatr Fenn Annales Paediatriae Fenniae = Ann. Paediatr. Fenn. Annales Paediatrici = Ann Paediatr-basel Annales Paediatrici = Ann. Paediatr-basel. Annales paediatrici. International review of pediatrics = Ann Paediatr Annales Paediatrici (International Review of Pediatrics) = Ann. Paediatr. Int. Rev. Pediatr. Annales Paediatrici Japonici = Ann Paediatr Japon Annales Paediatrici Japonici = Ann. Paediatr. Japon. Annales (Paris, France : 1946) = Ann Econ Soc Civilis Annales pharmaceutiques francaises = Ann Pharm Fr Annales Pharmaceutiques Francaises=Ann Pharm Fr;; Annales Pharmaceutiques Francaises = Ann Pharm Fr Annales Pharmaceutiques Francaises = Ann. Pharm. Fr. Annales Polonici Mathematici = Ann Pol Math Annales Polonici Mathematici = Ann. Pol. Math. Annales Polonici Mathematici = Ann. Polon. Math. Annales Scientifiques De L Ecole Normale Superieure = Ann Sci Ecole Norm S Annales Scientifiques De L Ecole Normale Superieure = Ann. Sci. Ecole Norm. S. Annales Scientifiques de l'École Normale Supérieure = Ann. Sci. École Norm. Sup. (4) Annales scientifiques de l'Universite de Besancon. Medecine = Ann Sci Univ Besancon Med Annales Societatis Geologorum Poloniae = Ann Soc Geol Pol Annales Societatis Geologorum Poloniae = Ann. Soc. Geol. Pol. Annales. Societe francaise d'angeiologie et d'histopathologie = Ann Soc Angeiol Histopathologie Annales Universitatis Budapestinensis de Rolando Eötvös nominatae, Ê Sectio philosophica et sociologica = AUB(phil) Annales Universitatis Budapestinensis de Rolando Eötvös nominatae, Sectio classica = AUB(class) Annales Universitatis Budapestinensis de Rolando Eötvös nominatae, Ê Sectio iuridica = AUBFjur.) Annales Universitatis Mariae Curie-Skłodowska = Ann. Univ. Mariae Curie-Skłodowska Sect. A Annales Universitatis Mariae Curie-Sklodowska. Sectio D, Medicina=Ann Univ Mariae Curie Sklodowska [Med];; Annales Universitatis Mariae Curie-Sklodowska. Sectio D, Medicina = Ann. Univ. Mariae Curie Sklodowska [Med.] Annales Universitatis Mariae Curie-Sklodowska. Sectio D: Medicina = Ann Univ Mariae Curie Sklodowska [Med] Annales Universitatis Saraviensis = Ann. Univ. Sarav. Ser. Math. Annales Universitatis Saraviensis. Medizin = Ann Univ Sarav [Med] Annales Universitatis Saraviensis. Medizin = Ann. Univ. Sarav. [Med.] Annales Universitatis scientiarum Budapestinensis de Rolando Eötvös nominatae = AnnUnBud Annales Universitatis Scientiarum Budapestinensis de Rolando Eötvös Nominatae = Ann. Univ. Sci. Budapest. Eötvös Sect. Math. Annales Universitatis Scientiarum Budapestinensis de Rolando Eötvös Nominatae = Ann. Univ. Sci. Budapest. Sect. Comput. Annales Universitatis Scientiarum Budapestinensis de Rolando Eotvos Nominatae. Sectio Biologica = Ann Univ Sci Budap Rolando Eotvos Nominatae [Biol] Annales Universitatis Scientiarum Budapestinensis de Rolando Eotvos Nominatae. Sectio geographica. Eotvos Lorand Tudomanyegyetem = Ann Univ Sci Budap Rolando Eotvos Nom Sect Geogr Annales Universitatis Turkuensis = Ann. Univ. Turku. Ser. A I Annales Valaisannes = AV Annales Zoologici = Ann Zool Annales Zoologici = Ann. Zool. Annales Zoologici Fennici = Ann Zool Fenn Annales Zoologici Fennici = Ann. Zool. Fenn. Annali Accademia Italiana di Scienze Forestali = Ann. Accad. Ital. Sci. For. Annali. Associazione nomentana di storia e archeologia = AnnNoment Annali Benacensi = AnnBenac Annali del Dipartimento di filosofia dell'Università di Firenze = ADFF Annali della Facolta di economia e commercio (Universita di Messina) = Ann Fac Econ Commer Annali della facoltà di Economia e Commercio, Università Palermo=Ann. Fac. Econ. Com., Univ. Palermo Annali della Facoltà di Giurisprudenza, Università di Genova = AFGG Annali della Facoltà di Lettere di Lecce = AFLL Annali della Facoltà di Lettere e Filosofia della Università di Cagliari = AFLC Annali della Facoltà di Lettere e Filosofia della Università di Napoli = AFLN Annali della Facoltà di Lettere e Filosofia dell'Università di Siena = AFLS Annali della Facoltà di Lettere e Filosofia di Bari = AFLB Annali della Facoltà di Lettere e Filosofia di Perugia = AFLPer Annali della Facoltà di lettere e filosofia, Università degli Studi, Bari = AnnBari Annali della Facoltà di lettere e filosofia, Università degli studi di Perugia, 1. Studi classici = AnnPerugia Annali della Facoltà di Lettere e Filosofia, Università di Macerata = AFLM Annali della Facoltà di lettere e filosofia, Università di Macerata = AnnMacerata Annali della Facoltà di lettere e filosofia, Università di Napoli = AnnNap Annali della Facoltà di lettere e filosofia, Università di Siena = AnnSiena Annali della Facoltà di Magistero dell'Università di Cagliari = AFMC Annali della Facoltà di magistero dell'Università di Cagliari = AnnCaglMag Annali della Facolta di medicina e chirurgia della Universita degli studi di Perugia = Ann Fac Med Chir Univ Studi Perugia Annali della Facoltà di Scienze della Formazione dell'Università di Cagliari = AFSFC Annali della Fondazione Luigi Einaudi. Fondazione Luigi Einaudi = Ann Fond Luigi Einaudi Annali della Fondazione per il Museo Claudio Faina = AnnFaina Annali della sanita pubblica = Ann Sanita Pubblica Annali della Sanita Pubblica = Ann. Sanita Pubblica Annali della Scuola normale superiore di Pisa = AnnPisa Annali della Scuola Normale Superiore di Pisa = Ann. Scuola Norm. Sup. Pisa Cl. Sci. (4) Annali della Scuola Normale Superiore di Pisa, Classe di Lettere e Filosofia = ASNP Annali della Scuola normale superiore di Pisa. Classe di lettere e filosofia. Scuola normale superiore (Italy) = Ann Sc Norm Super Pisa Annali Della Scuola Normale Superiore Di Pisa-classe Di Scienze = Ann Scuola Norm-sci Annali Della Scuola Normale Superiore Di Pisa-classe Di Scienze = Ann. Scuola Norm-sci. Annali della Sperimentazione Agraria = Ann. Sper. Agrar. Annali del Liceo classico G. Garibaldi di Palermo = ALGP Annali dell'Instituto di corrispondenza archeologica = AdI Annali dell'Istituto "Carlo Forlanini" = Ann Ist Carlo Forlanini Annali dell'Istituto Carlo Forlanini = Ann. Ist. Carlo Forlanini Annali dell'Istituto di Storia, Univ. di Firenze = AISF Annali dell'Istituto e museo di storia della scienza di Firenze = Ann Ist Mus Stor Sci Fir Annali dell'Istituto Italiano di Numismatica = AIIN Annali dell'Istituto Italiano per gli Studi Storici = AIIS Annali dell’Istituto Sperimentale per la Selvicoltura = Ann. Ist. Sper. Selvic. Annali dell’Istituto Sperimentale per l’Assestamento Forestale e per l’Alpicoltura = Ann. Ist. Sper. Assest. For. Alpic. Annali dell'Istituto superiore di sanita = Ann Ist Super Sanita Annali dell Istituto Superiore di Sanita=Ann Ist Super Sanita;; Annali dell'Istituto Superiore di Sanita = Ann. Ist. Super. Sanita Annali Dell Istituto Superiore Di Sanita = Ann I Super Sanita Annali Dell Istituto Superiore Di Sanita = Ann. I. Super. Sanita Annali dell'Istituto universitario orientale di Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione di archeologia e storia antica = AIONArch Annali dell'Istituto universitario orientale di Napoli, Dipartimento di studi del mondo classico e del Mediterraneo antico, Sezione di archeologia e storia antica = AION(archeol) Annali dell'Istituto universitario orientale di Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione filologicoletteraria = AIONFil Annali dell'Istituto universitario orientale di Napoli, Dipartimento di studi del mondo classico e del Mediterraneo antico, Sezione filologico-letteraria = AION(filol) Annali dell'Istituto universitario orientale di Napoli, Dipartimento di studi del mondo classico e del Mediterraneo antico, Sezione linguistica = AION(ling) Annali dell'Istituto universitario orientale di Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico. Sezione linguistica = AIONLing Annali dell Ospedale Maria Vittoria di Torino = Ann. Osp. Maria Vittoria Torino Annali dell'Ospedale Maria Vittoria di Torino = Ann Osp Maria Vittoria Torino Annali dell'Università di Ferrara = Ann. Univ. Ferrara Sez. VII (N.S.) Annali Dell'universita Di Ferrara, Sezione Vii, Scienze Matematiche = Ann Univ Ferrara Annali Dell'universita Di Ferrara, Sezione Vii, Scienze Matematiche = Ann. Univ. Ferrara. Annali Dell'universita Di Ferrara Sezione Vii, Scienze Matematiche, Vol 52, No 2 = Ann Univ Ferrara Annali Dell'universita Di Ferrara Sezione Vii, Scienze Matematiche, Vol 52, No 2 = Ann. Univ. Ferrara Annali dell'Università di Ferrara, Sez. V, Sc. giurid = AUFG Annali dell'Università di Lecce. Facoltà di lettere e filosofia e di magistero = AnnLecce Annali del Museo civico di Rovereto. Sezione archeologia, storia, scienze naturali = AnnMusRov Annali del Seminario Giuridico dell'Univ. di Palermo = ASGP Annali di chimica = Ann Chim Annali di Chimica = Ann. Chim. (Rome) Annali Di Chimica = Ann Chim-rome Annali Di Chimica = Ann. Chim-rome. Annali di Chimica (Rome, Italy) = Ann. Chim. (Rome, Italy) Annali di Geofisica = Ann. Geofis. Annali Di Geofisica = Ann Geofis Annali Di Geofisica = Ann. Geofis. Annali Di Geofisica = Ann Geofis-rome Annali Di Geofisica = Ann. Geofis-rome. Annali d'igiene = Ann Ig (Roma) Annali di Igiene=Ann Ig;; Annali di Igiene = Ann. Ig. Annali di igiene : medicina preventiva e di comunita = Ann Ig Annali di laringologia, otologia, rinologia, faringologia = Ann Laringol Otol Rinol Faringol Annali di Laringologia, Otologia, Rinologia, Faringologia = Ann. Laringol. Otol. Rinol. Faringol. Annali di Matematica Pura ed Applicata = Ann. Mat. Pura Appl. (4) Annali Di Matematica Pura Ed Applicata = Ann Mat Pur Appl Annali Di Matematica Pura Ed Applicata = Ann. Mat. Pur. Appl. Annali di medicina navale = Ann Med Nav (Roma) Annali di Medicina Navale = Ann. Med. Nav. (Roma) Annali di medicina navale e tropicale = Ann Med Nav Trop Annali Di Microbiologia Ed Enzimologia = Ann Microbiol Enzim Annali Di Microbiologia Ed Enzimologia = Ann. Microbiol. Enzim. Annali di microbiologia ed enzimologia = Ann Microbiol Enzimol Annali di neuropsichiatria e psicoanalisi = Ann Neuropsichiatr Psicoanal Annali di ostetricia e ginecologia = Ann Ostet Ginecol Annali di ostetricia, ginecologia, medicina perinatale = Ann Ostet Ginecol Med Perinat Annali di Ostetricia, Ginecologia, Medicina Perinatale = Ann. Ostet. Ginecol. Med. Perinat. Annali di ottalmologia e clinica oculistica = Ann Ottalmol Clin Ocul Annali di Ottalmologia e Clinica Oculistica = Ann. Ottalmol. Clin. Ocul. Annali di radiologia diagnostica = Ann Radiol Diagn (Bologna) Annali di Radiologia Diagnostica = Ann. Radiol. Diagn. (Bologna) Annali di stomatologia = Ann Stomatol (Roma) Annali di Stomatologia = Ann. Stomatol. (Roma) Annali di storia dell'esegesi = AnnSE Annali Isnardi di auxologia normale e patologica = Ann Isnardi Auxol Norm Patol Annali - Istituto Giangiacomo Feltrinelli = Ann Ist Giangiacomo Feltrinelli Annali. Istituto italiano di numismatica = AnnIstItNum Annali italiani di chirurgia = Ann Ital Chir Annali Italiani di Chirurgia=Ann Ital Chir;; Annali Italiani di Chirurgia = Ann. Ital. Chir. Annali Italiani Di Chirurgia = Ann Ital Chir Annali Italiani Di Chirurgia = Ann. Ital. Chir. Annali italiani di dermatologia e sifilografia = Ann Ital Dermatol Sifilogr Annali Italiani di Medicina Interna=Ann Ital Med Int;; Annali Italiani di Medicina Interna = Ann. Ital. Med. Int. Annali italiani di medicina interna : organo ufficiale della Societa italiana di medicina interna = Ann Ital Med Int Annali italiani di pediatria = Ann Ital Pediatr Annali medici = Ann Med (Milano) Annali medici di Sondalo = Ann Med Sondalo Annali. Rivista del Dipartimento di studi asiatici e del Dipartimento di studi e ricerche su Africa e paesi arabi, Istituto universitario orientale di Napoli = AnnOrNap Annali Sclavo = Ann Sclavo Annali Sclavo = Ann. Sclavo Annali Sclavo. Collana monografica = Ann Sclavo Collana Monogr Annali Sclavo. Collana Monografica = Ann. Sclavo. Collana Monogr. Annali Sclavo; rivista di microbiologia e di immunologia = Ann Sclavo Annali. Sezione di archeologia e storia antica. Istituto universitario orientale di Napoli. Dipartimento di studi del mondo classico e del Mediterraneo antico = AnnAStorAnt Annali Zavoda za povijesne znanosti Istraivakog centra Jugoslavenske akademije znanosti i umjetnosti u Dubrovniku = AnDubr Annals Academy of Medicine Singapore = Ann Acad Med Singap Annals Academy of Medicine Singapore = Ann. Acad. Med. Singap. Annals and Magazine of Natural History = Ann Mag Nat Hist Annals and Magazine of Natural History = Ann. Mag. Nat. Hist. Annals Chimie Analytique = Ann. Chim. Anal. Annals Meeting Reports = Ann Ny Acad Sci Annals Meeting Reports = Ann. Ny. Acad. Sci. Annals Meeting Reports: Hiv/aids; Swine Flu; and Autism = Ann Ny Acad Sci Annals Meeting Reports: Hiv/aids; Swine Flu; and Autism = Ann. Ny. Acad. Sci. Annals of agricultural and environmental medicine : AAEM = Ann Agric Environ Med Annals of Agricultural and Environmental Medicine = Ann Agr Env Med Annals of Agricultural and Environmental Medicine = Ann. Agr. Env. Med. Annals of Agricultural and Environmental Medicine = Ann. Agric. Environ. Med. Annals of allergy = Ann Allergy Annals of Allergy = Ann Allergy Annals of Allergy = Ann. Allergy Annals of Allergy, Asthma, and Immunology=Ann Allergy Asthma Immunol;; Annals of Allergy, Asthma, and Immunology = Ann. Allergy. Asthma. Immunol. Annals of Allergy Asthma & Immunology = Ann Allerg Asthma Im Annals of Allergy Asthma & Immunology = Ann. Allerg. Asthma Im. Annals of allergy, asthma & immunology : official publication of the American College of Allergy, Asthma, & Immunology = Ann Allergy Asthma Immunol Annals of Anatomy-anatomischer Anzeiger = Ann Anat Annals of Anatomy-anatomischer Anzeiger = Ann. Anat. Annals of Animal Science = Ann Anim Sci Annals of Animal Science = Ann. Anim. Sci. Annals of Applied Biology = Ann Appl Biol Annals of Applied Biology = Ann. Appl. Biol. Annals of Applied Nematology = Ann Appl Nematol Annals of Applied Nematology = Ann. Appl. Nematol. Annals of Applied Probability = Ann Appl Probab Annals of Applied Probability = Ann. Appl. Probab. Annals of Applied Statistics = Ann Appl Stat Annals of Applied Statistics = Ann. Appl. Stat. Annals of arid zone = Ann Arid Zone Annals of Arid Zone = Ann Arid Zone Annals of Arid Zone = Ann. Arid Zone Annals of Behavioral Medicine=Ann Behav Med;; Annals of Behavioral Medicine = Ann Behav Med Annals of Behavioral Medicine = Ann. Behav. Med. Annals of behavioral medicine : a publication of the Society of Behavioral Medicine = Ann Behav Med Annals of biochemistry and experimental medicine = Ann Biochem Exp Med Annals of Biochemistry and Experimental Medicine = Ann Biochem Exp Med Annals of Biochemistry and Experimental Medicine = Ann. Biochem. Exp. Med. Annals of biology = Ann Biol Annals of biomedical engineering = Ann Biomed Eng Annals of Biomedical Engineering=Ann Biomed Eng;; Annals of Biomedical Engineering = Ann Biomed Eng Annals of Biomedical Engineering = Ann. Biomed. Eng. Annals of Botany = Ann. Bot. Annals of botany = Ann Bot (Lond) Annals of Botany = Ann Bot-london Annals of Botany = Ann. Bot-london. Annals of cardiac anaesthesia = Ann Card Anaesth Annals of Carnegie Museum = Ann Carnegie Mus Annals of Carnegie Museum = Ann. Carnegie Mus. Annals of clinical and laboratory science = Ann Clin Lab Sci Annals of Clinical and Laboratory Science=Ann Clin Lab Sci;; Annals of Clinical and Laboratory Science = Ann Clin Lab Sci Annals of Clinical and Laboratory Science = Ann. Clin. Lab. Sci. Annals of clinical biochemistry = Ann Clin Biochem Annals of Clinical Biochemistry=Ann Clin Biochem;; Annals of Clinical Biochemistry = Ann Clin Biochem Annals of Clinical Biochemistry = Ann. Clin. Biochem. Annals of clinical laboratory science = Ann Clin Lab Sci Annals of Clinical Laboratory Science = Ann. Clin. Lab. Sci. Annals of clinical microbiology and antimicrobials = Ann Clin Microbiol Antimicrob Annals of Clinical Psychiatry=Ann Clin Psychiatry;; Annals of Clinical Psychiatry = Ann Clin Psychiatry Annals of Clinical Psychiatry = Ann. Clin. Psychiatry Annals of clinical psychiatry : official journal of the American Academy of Clinical Psychiatrists = Ann Clin Psychiatry Annals of clinical research = Ann Clin Res Annals of Clinical Research = Ann Clin Res Annals of Clinical Research = Ann. Clin. Res. Annals of Combinatorics = Ann. Comb. Annals of Combinatorics = Ann Comb Annals of Combinatorics = Ann. Comb. Annals of Daaam and Proceedings = Ann Daaam Annals of Daaam and Proceedings = Ann. Daaam Annals of Daaam for 2008 & Proceedings of The 19th International Daaam Symposium = Ann Daaam Annals of Daaam for 2008 & Proceedings of The 19th International Daaam Symposium = Ann. Daaam Annals of Daaam for 2009 & Proceedings of The 20th International Daaam Symposium = Ann Daaam Annals of Daaam for 2009 & Proceedings of The 20th International Daaam Symposium = Ann. Daaam Annals of dentistry = Ann Dent Annals of Dentistry=Ann Dent;; Annals of Dentistry = Ann. Dent. Annals of Dermatology = Ann Dermatol Annals of Dermatology = Ann. Dermatol. Annals of diagnostic pathology = Ann Diagn Pathol Annals of Diagnostic Pathology = Ann Diagn Pathol Annals of Diagnostic Pathology = Ann. Diagn. Pathol. Annals of Differential Equations = Ann. Differential Equations Annals of Discrete Mathematics = Ann. Discrete Math. Annals of dyslexia = Ann Dyslexia Annals of Dyslexia = Ann Dyslexia Annals of Dyslexia = Ann. Dyslexia Annals of Economic and Social Measurement=Ann. Econ. Soc. Meas. Annals of Economic and Social Measurement = Ann Econ Soc Meas Annals of Economic and Social Measurement = Ann. Econ. Soc. Meas. Annals of Economics and Finance = Ann Econ Financ Annals of Economics and Finance = Ann. Econ. Financ. Annals of Economics and Finance=Ann. Econ. Finance Annals of emergency medicine = Ann Emerg Med Annals of Emergency Medicine=Ann Emerg Med;; Annals of Emergency Medicine = Ann Emerg Med Annals of Emergency Medicine = Ann. Emerg. Med. Annals of epidemiology = Ann Epidemiol Annals of Epidemiology=Ann Epidemiol;; Annals of Epidemiology = Ann Epidemiol Annals of Epidemiology = Ann. Epidemiol. Annals of eugenics = Ann Eugen Annals of Eugenics = Ann Eugenic Annals of Eugenics = Ann. Eugenic. Annals of family medicine = Ann Fam Med Annals of Family Medicine = Ann Fam Med Annals of Family Medicine = Ann. Fam. Med. Annals of Forest Science = Ann Forest Sci Annals of Forest Science = Ann. Forest Sci. Annals of Forest Science = Ann For Sci Annals of Forest Science = Ann. For. Sci. Annals of general hospital psychiatry = Ann Gen Hosp Psychiatry Annals of general psychiatry = Ann Gen Psychiatry Annals of Geophysics = Ann Geophys-italy Annals of Geophysics = Ann. Geophys-italy. Annals of GIS = Ann. Gis Annals of Glaciology = Ann Glaciol Annals of Glaciology = Ann. Glaciol. Annals of Glaciology-series = Ann Glaciol-ser Annals of Glaciology-series = Ann. Glaciol-ser. Annals of Glaciology, Vol 15 = Ann Glaciol Annals of Glaciology, Vol 15 = Ann. Glaciol. Annals of Glaciology, Vol 16, 1992 = Ann Glaciol Annals of Glaciology, Vol 16, 1992 = Ann. Glaciol. Annals of Glaciology, Vol 18, 1993 = Ann Glaciol Annals of Glaciology, Vol 18, 1993 = Ann. Glaciol. Annals of Glaciology, Vol 19, 1994 = Ann Glaciol Annals of Glaciology, Vol 19, 1994 = Ann. Glaciol. Annals of Glaciology, Vol 19, 1994 = Ann Glaciol-ser Annals of Glaciology, Vol 19, 1994 = Ann. Glaciol-ser. Annals of Glaciology, Vol 20, 1994 = Ann Glaciol Annals of Glaciology, Vol 20, 1994 = Ann. Glaciol. Annals of Glaciology, Vol. 22, 1996 = Ann Glaciol Annals of Glaciology, Vol. 22, 1996 = Ann. Glaciol. Annals of Glaciology, Vol 24, 1997 = Ann Glaciol Annals of Glaciology, Vol 24, 1997 = Ann. Glaciol. Annals of Glaciology, Vol 25, 1997 = Ann Glaciol Annals of Glaciology, Vol 25, 1997 = Ann. Glaciol. Annals of Glaciology, Vol 26, 1998 = Ann Glaciol Annals of Glaciology, Vol 26, 1998 = Ann. Glaciol. Annals of Glaciology, Vol 27, 1998 = Ann Glaciol Annals of Glaciology, Vol 27, 1998 = Ann. Glaciol. Annals of Glaciology, Vol 27, 1998 = Ann Glaciol-ser Annals of Glaciology, Vol 27, 1998 = Ann. Glaciol-ser. Annals of Glaciology, Vol 28 = Ann Glaciol-ser Annals of Glaciology, Vol 28 = Ann. Glaciol-ser. Annals of Glaciology, Vol 29, 1999 = Ann Glaciol Annals of Glaciology, Vol 29, 1999 = Ann. Glaciol. Annals of Glaciology, Vol 29, 1999 = Ann Glaciol-ser Annals of Glaciology, Vol 29, 1999 = Ann. Glaciol-ser. Annals of Glaciology, Vol 30, 2000 = Ann Glaciol Annals of Glaciology, Vol 30, 2000 = Ann. Glaciol. Annals of Glaciology, Vol 30, 2000 = Ann Glaciol-ser Annals of Glaciology, Vol 30, 2000 = Ann. Glaciol-ser. Annals of Glaciology, Vol 31, 2000 = Ann Glaciol Annals of Glaciology, Vol 31, 2000 = Ann. Glaciol. Annals of Glaciology, Vol 31, 2000 = Ann Glaciol-ser Annals of Glaciology, Vol 31, 2000 = Ann. Glaciol-ser. Annals of Glaciology, Vol 32, 2001 = Ann Glaciol Annals of Glaciology, Vol 32, 2001 = Ann. Glaciol. Annals of Glaciology, Vol 32, 2001 = Ann Glaciol-ser Annals of Glaciology, Vol 32, 2001 = Ann. Glaciol-ser. Annals of Glaciology, Vol 33 = Ann Glaciol Annals of Glaciology, Vol 33 = Ann. Glaciol. Annals of Glaciology, Vol 33 = Ann Glaciol-ser Annals of Glaciology, Vol 33 = Ann. Glaciol-ser. Annals of Glaciology, Vol 34, 2002 = Ann Glaciol Annals of Glaciology, Vol 34, 2002 = Ann. Glaciol. Annals of Glaciology, Vol 34, 2002 = Ann Glaciol-ser Annals of Glaciology, Vol 34, 2002 = Ann. Glaciol-ser. Annals of Glaciology, Vol 35 = Ann Glaciol Annals of Glaciology, Vol 35 = Ann. Glaciol. Annals of Glaciology, Vol 35 = Ann Glaciol-ser Annals of Glaciology, Vol 35 = Ann. Glaciol-ser. Annals of Glaciology, Vol 36 = Ann Glaciol Annals of Glaciology, Vol 36 = Ann. Glaciol. Annals of Glaciology, Vol 36 = Ann Glaciol-ser Annals of Glaciology, Vol 36 = Ann. Glaciol-ser. Annals of Glaciology, Vol 37 = Ann Glaciol Annals of Glaciology, Vol 37 = Ann. Glaciol. Annals of Glaciology, Vol 37 = Ann Glaciol-ser Annals of Glaciology, Vol 37 = Ann. Glaciol-ser. Annals of Glaciology, Vol 38 2004 = Ann Glaciol Annals of Glaciology, Vol 38 2004 = Ann. Glaciol. Annals of Glaciology, Vol 38, 2004 = Ann Glaciol Annals of Glaciology, Vol 38, 2004 = Ann. Glaciol. Annals of Glaciology, Vol 38, 2004 = Ann Glaciol-ser Annals of Glaciology, Vol 38, 2004 = Ann. Glaciol-ser. Annals of Glaciology, Vol 39, 2005 = Ann Glaciol Annals of Glaciology, Vol 39, 2005 = Ann. Glaciol. Annals of Glaciology, Vol 39, 2005 = Ann Glaciol-ser Annals of Glaciology, Vol 39, 2005 = Ann. Glaciol-ser. Annals of Glaciology, Vol 40, 2005 = Ann Glaciol Annals of Glaciology, Vol 40, 2005 = Ann. Glaciol. Annals of Glaciology, Vol 40, 2005 = Ann Glaciol-ser Annals of Glaciology, Vol 40, 2005 = Ann. Glaciol-ser. Annals of Glaciology, Vol 41 2005 = Ann Glaciol Annals of Glaciology, Vol 41 2005 = Ann. Glaciol. Annals of Glaciology, Vol 41, 2005 = Ann Glaciol Annals of Glaciology, Vol 41, 2005 = Ann. Glaciol. Annals of Glaciology, Vol 41, 2005 = Ann Glaciol-ser Annals of Glaciology, Vol 41, 2005 = Ann. Glaciol-ser. Annals of Glaciology, Vol 42, 2005 = Ann Glaciol Annals of Glaciology, Vol 42, 2005 = Ann. Glaciol. Annals of Glaciology, Vol 43, 2006 = Ann Glaciol Annals of Glaciology, Vol 43, 2006 = Ann. Glaciol. Annals of Glaciology, Vol 43, 2006 = Ann Glaciol-ser Annals of Glaciology, Vol 43, 2006 = Ann. Glaciol-ser. Annals of Glaciology, Vol 44, 2006 = Ann Glaciol Annals of Glaciology, Vol 44, 2006 = Ann. Glaciol. Annals of Glaciology, Vol 44, 2006 = Ann Glaciol-ser Annals of Glaciology, Vol 44, 2006 = Ann. Glaciol-ser. Annals of Glaciology, Vol 45, 2007 = Ann Glaciol Annals of Glaciology, Vol 45, 2007 = Ann. Glaciol. Annals of Glaciology, Vol 45, 2007 = Ann Glaciol-ser Annals of Glaciology, Vol 45, 2007 = Ann. Glaciol-ser. Annals of Glaciology, Vol 46, 2007 = Ann Glaciol Annals of Glaciology, Vol 46, 2007 = Ann. Glaciol. Annals of Glaciology, Vol 46, 2007 = Ann Glaciol-ser Annals of Glaciology, Vol 46, 2007 = Ann. Glaciol-ser. Annals of Glaciology, Vol 47, 2007 = Ann Glaciol Annals of Glaciology, Vol 47, 2007 = Ann. Glaciol. Annals of Glaciology, Vol 48 = Ann Glaciol Annals of Glaciology, Vol 48 = Ann. Glaciol. Annals of Glaciology, Vol 48 = Ann Glaciol-ser Annals of Glaciology, Vol 48 = Ann. Glaciol-ser. Annals of Glaciology, Vol 49, 2008 = Ann Glaciol Annals of Glaciology, Vol 49, 2008 = Ann. Glaciol. Annals of Glaciology, Vol 49, 2008 = Ann Glaciol-ser Annals of Glaciology, Vol 49, 2008 = Ann. Glaciol-ser. Annals of Global Analysis and Geometry = Ann. Global Anal. Geom. Annals of Global Analysis and Geometry = Ann Glob Anal Geom Annals of Global Analysis and Geometry = Ann. Glob. Anal. Geom. Annals of Health Law = Ann. Health Law Annals of health law / Loyola University Chicago, School of Law, Institute for Health Law = Ann Health Law Annals of hematology = Ann Hematol Annals of Hematology=Ann Hematol;; Annals of Hematology = Ann Hematol Annals of Hematology = Ann. Hematol. Annals of Hepatology = Ann Hepatol Annals of Hepatology = Ann. Hepatol. Annals of hepatology : official journal of the Mexican Association of Hepatology = Ann Hepatol Annals of human biology = Ann Hum Biol Annals of Human Biology=Ann Hum Biol;; Annals of Human Biology = Ann Hum Biol Annals of Human Biology = Ann. Hum. Biol. Annals of human genetics = Ann Hum Genet Annals of Human Genetics=Ann Hum Genet;; Annals of Human Genetics = Ann Hum Genet Annals of Human Genetics = Ann. Hum. Genet. Annals of hygiene = Ann Hyg Annals of immunology = Ann Immunol Annals of Indian Academy of Neurology = Ann Indian Acad Neur Annals of Indian Academy of Neurology = Ann. Indian Acad. Neur. Annals of Information Systems = Ann Inform Syst Annals of Information Systems = Ann. Inform. Syst. Annals of Information Systems = Ann Info Syst Annals of Information Systems = Ann. Info. Syst. Annals of internal medicine = Ann Intern Med Annals of Internal Medicine=Ann Intern Med;; Annals of Internal Medicine = Ann Intern Med Annals of Internal Medicine = Ann. Intern. Med. Annals of Iowa = Ann Iowa Annals of Mathematical Logic = Ann Math Logic Annals of Mathematical Logic = Ann. Math. Logic Annals of Mathematical Statistics = Ann Math Stat Annals of Mathematical Statistics = Ann. Math. Stat. Annals of Mathematics and Artificial Intelligence = Ann. Math. Artificial Intelligence Annals of Mathematics and Artificial Intelligence = Ann Math Artif Intel Annals of Mathematics and Artificial Intelligence = Ann. Math. Artif. Intel. Annals of Mathematics = Ann Math Annals of Mathematics = Ann. Math. Annals of Mathematics = Ann. of Math. (2) Annals of Mathematics Studies = Ann Math Stud Annals of Mathematics Studies = Ann. Math. Stud. Annals of Mathematics Studies = Ann. of Math. Stud. Annals of medical history = Ann Med Hist Annals of medicine = Ann Med Annals of Medicine=Ann Med;; Annals of Medicine = Ann Med Annals of Medicine = Ann. Med. Annals of microbiology = Ann Microbiol Annals of Microbiology = Ann Microbiol Annals of Microbiology = Ann. Microbiol. Annals of neurology = Ann Neurol Annals of Neurology=Ann Neurol;; Annals of Neurology = Ann Neurol Annals of Neurology = Ann. Neurol. Annals of Noninvasive Electrocardiology = Ann Noninvas Electro Annals of Noninvasive Electrocardiology = Ann. Noninvas. Electro. Annals of Noninvasive Electrocardiology = Ann. Noninvasive Electrocardiol. Annals of noninvasive electrocardiology : the official journal of the International Society for Holter and Noninvasive Electrocardiology, Inc = Ann Noninvasive Electrocardiol Annals of Nuclear Energy = Ann Nucl Energy Annals of Nuclear Energy = Ann. Nucl. Energy Annals of Nuclear Engineering = Ann. Nucl. Eng. Annals of nuclear medicine = Ann Nucl Med Annals of Nuclear Medicine=Ann Nucl Med;; Annals of Nuclear Medicine = Ann Nucl Med Annals of Nuclear Medicine = Ann. Nucl. Med. Annals of Nuclear Science and Engineering = Ann Nucl Sci Eng Annals of Nuclear Science and Engineering = Ann. Nucl. Sci. Eng. Annals of Numerical Mathematics = Ann. Numer. Math. Annals of Nutrition and Metabolism=Ann Nutr Metab;; Annals of Nutrition and Metabolism = Ann Nutr Metab Annals of Nutrition and Metabolism = Ann. Nutr. Metab. Annals of nutrition & metabolism = Ann Nutr Metab Annals of Nutrition & Metabolism = Ann. Nutr. Metab. Annals of Occupational Hygiene=Ann Occup Hyg;; Annals of Occupational Hygiene = Ann Occup Hyg Annals of Occupational Hygiene = Ann. Occup. Hyg. Annals of Oncology=Ann Oncol;; Annals of Oncology = Ann Oncol Annals of Oncology = Ann. Oncol. Annals of oncology : official journal of the European Society for Medical Oncology / ESMO = Ann Oncol Annals of Operations Research = Ann. Oper. Res. Annals of Operations Research = Ann Oper Res Annals of Operations Research = Ann. Oper. Res. Annals of ophthalmology = Ann Ophthalmol Annals of Ophthalmology = Ann Ophthalmol Annals of Ophthalmology = Ann. Ophthalmol. Annals of Ophthalmology-glaucoma = Ann Ophthalmol-glauc Annals of Ophthalmology-glaucoma = Ann. Ophthalmol-glauc. Annals of Ophthalmology & Glaucoma = Ann Ophthalmol Glauc Annals of Ophthalmology & Glaucoma = Ann. Ophthalmol. Glauc. Annals of ophthalmology (Skokie, Ill.) = Ann Ophthalmol (Skokie) Annals of Otology, Rhinology and Laryngology=Ann Otol Rhinol Laryngol;; Annals of Otology, Rhinology and Laryngology = Ann. Otol. Rhinol. Laryngol. Annals of Otology Rhinology and Laryngology = Ann Oto Rhinol Laryn Annals of Otology Rhinology and Laryngology = Ann. Oto. Rhinol. Laryn. Annals of Otology, Rhinology, and Laryngology. Supplement=Ann Otol Rhinol Laryngol Suppl;; Annals of Otology, Rhinology, and Laryngology. Supplement = Ann. Otol. Rhinol. Laryngol. Suppl. Annals of Periodontology = Ann. Periodontol. Annals of periodontology / the American Academy of Periodontology = Ann Periodontol Annals of Pharmacotherapy=Ann Pharmacother;; Annals of Pharmacotherapy = Ann Pharmacother Annals of Pharmacotherapy = Ann. Pharmacother. Annals of Phenomenological Sociology = Ann Phenomen Sociol Annals of Phenomenological Sociology = Ann. Phenomen. Sociol. Annals of physical medicine = Ann Phys Med Annals of Physical Medicine = Ann. Phys. Med. Annals of Physics = Ann. Phys. Annals of Physics = Ann. Physics Annals of Physics = Ann Phys-new York Annals of Physics = Ann. Phys-new. York. Annals of Physics (Oxford, United Kingdom) = Ann. Phys. (Oxford, U. K.) Annals of Physics (San Diego, CA, United States) = Ann. Phys. (San Diego, CA, U. S.) Annals of Physiological Anthropology = Ann. Physiol. Anthropol. Annals of Plastic Surgery = Ann Plas Surg Annals of Plastic Surgery = Ann. Plas. Surg. Annals of plastic surgery = Ann Plast Surg Annals of Plastic Surgery=Ann Plast Surg;; Annals of Plastic Surgery = Ann. Plast. Surg. Annals of Probability = Ann Probab Annals of Probability = Ann. Probab. Annals of Public and Cooperative Economics=Ann. Public Coop. Econ. Annals of Public and Co-operative Economy = Ann Public Coop Econ Annals of Public and Co-operative Economy = Ann. Public Coop. Econ. Annals of Pure and Applied Logic = Ann. Pure Appl. Logic Annals of Pure and Applied Logic = Ann Pure Appl Logic Annals of Pure and Applied Logic = Ann. Pure Appl. Logic Annals of Regional Science = Ann Regional Sci Annals of Regional Science = Ann. Regional Sci. Annals of Regional Science=Ann. Reg. Sci. Annals of Saudi medicine = Ann Saudi Med Annals of Saudi Medicine = Ann Saudi Med Annals of Saudi Medicine = Ann. Saudi Med. Annals of Science = Ann. of Sci. Annals of science = Ann Sci Annals of Science = Ann Sci Annals of Science = Ann. Sci. Annals of Software Engineering = Ann Softw Eng Annals of Software Engineering = Ann. Softw. Eng. Annals of Statistics = Ann Stat Annals of Statistics = Ann. Stat. Annals of surgery = Ann Surg Annals of Surgery=Ann Surg;; Annals of Surgery = Ann Surg Annals of Surgery = Ann. Surg. Annals of surgical innovation and research = Ann Surg Innov Res Annals of surgical oncology = Ann Surg Oncol Annals of Surgical Oncology=Ann Surg Oncol;; Annals of Surgical Oncology = Ann Surg Oncol Annals of Surgical Oncology = Ann. Surg. Oncol. Annals of Telecommunications-annales Des Telecommunications = Ann Telecommun Annals of Telecommunications-annales Des Telecommunications = Ann. Telecommun. Annals of Telecommunications = Ann. Telecommun. Annals of the Academy of Medicine, Singapore = Ann Acad Med Singapore Annals of the Academy of Medicine, Singapore = Ann. Acad. Med. Singapore Annals of The Academy Of Medicine, Singapore=Ann Acad Med Singapore;; Annals of The American Academy of Political and Social Science = Ann Am Acad Polit Ss Annals of The American Academy of Political and Social Science = Ann. Am. Acad. Polit. Ss. Annals of the American Academy of Political and Social Science = Ann. Am. Acad. Pol. Soc. Sci. Annals of the American Academy of Political and Social Science=Ann. Amer. Acad. Polit. Soc. Sci. Annals of the Association of American Geographers = Ann. Assoc. Am. Geogr. Annals of The Association of American Geographers = Ann Assoc Am Geogr Annals of The Association of American Geographers = Ann. Assoc. Am. Geogr. Annals of the Association of American Geographers. Association of American Geographers = Ann Assoc Am Geogr Annals of the Australian College of Dental Surgeons = Ann Aust Coll Dent Surg Annals of the Australian College of Dental Surgeons = Ann. Aust. Coll. Dent. Surg. Annals of the Entomological Society of America = Ann Entomol Soc Am Annals of the Entomological Society of America = Ann. Entomol. Soc. Am. Annals of The Entomological Society of America = Ann Entomol Soc Am Annals of The Entomological Society of America = Ann. Entomol. Soc. Am. Annals of the history of computing = Ann Hist Comput Annals of The History of Computing = Ann Hist Comput Annals of The History of Computing = Ann. Hist. Comput. Annals of the ICRP = Ann ICRP Annals of the ICRP = Ann. ICRP Annals of The Icrp=Ann ICRP;; Annals of the Institute of Statistical Mathematics = Ann. Inst. Statist. Math. Annals of The Institute of Statistical Mathematics = Ann I Stat Math Annals of The Institute of Statistical Mathematics = Ann. I. Stat. Math. Annals of The International Institute of Sociology. New Series = Ann Int Inst Sociol Annals of The International Institute of Sociology. New Series = Ann. Int. Inst. Sociol. Annals of the International Society of Dynamic Games = Ann. Internat. Soc. Dynam. Games Annals of The International Society of Dynamic Games = Ann Int Soc Dyn Game Annals of The International Society of Dynamic Games = Ann. Int. Soc. Dyn. Game. Annals of the Israel Physical Society = Ann. Israel Phys. Soc. Annals of The Israel Physical Society = Ann Isr Phy Annals of The Israel Physical Society = Ann. Isr. Phy. Annals of the Japan Association for Philosophy of Science = Ann. Japan Assoc. Philos. Sci. Annals of The Medical Section of The Polish Academy of Sciences = Ann Med Sect Pol Ac Annals of The Medical Section of The Polish Academy of Sciences = Ann. Med. Sect. Pol. Ac. Annals of the Medical Section of the Polish Academy of Sciences = Ann Med Sect Pol Acad Sci Annals of the Medical Section of the Polish Academy of Sciences = Ann. Med. Sect. Pol. Acad. Sci. Annals of the Medical University, Bialystok, Poland = Ann. Med. Univ. Bialyst. Pol. Annals of the Missouri Botanical Garden = Ann. Mo. Bot. Gard. Annals of The Missouri Botanical Garden = Ann Mo Bot Gard Annals of The Missouri Botanical Garden = Ann. Mo. Bot. Gard. Annals of the National Academy of Medical Sciences (India) = Ann Natl Acad Med Sci Annals of the National Association of Geographers, India = Ann Natl Assoc Geogr Annals of the New York Academy of Dentistry = Annals. N. Y. Acad. Dent. Annals of the New York Academy of Sciences = Ann. New York Acad. Sci. Annals of the New York Academy of Sciences = Ann N Y Acad Sci Annals of the New York Academy of Sciences = Ann. N. Y. Acad. Sci. Annals of the New York Academy of Sciences = Ann. N.Y. Acad. Sci. Annals of The New York Academy of Sciences = Ann Ny Acad Sci Annals of The New York Academy of Sciences = Ann. Ny. Acad. Sci. Annals of The New York Academy Of Sciences=Ann N Y Acad Sci;; Annals of the rheumatic diseases = Ann Rheum Dis Annals of the Rheumatic Diseases = Ann. Rheum. Dis. Annals of The Rheumatic Diseases=Ann Rheum Dis;; Annals of The Rheumatic Diseases = Ann Rheum Dis Annals of The Rheumatic Diseases = Ann. Rheum. Dis. Annals of the Royal Australasian College of Dental Surgeons = Ann R Australas Coll Dent Surg Annals of the Royal Australasian College of Dental Surgeons = Ann. R. Australas. Coll. Dent. Surg. Annals of The Royal College of Physicians and Surgeons of Canada = Ann Roy Coll Physic Annals of The Royal College of Physicians and Surgeons of Canada = Ann. Roy. Coll. Physic. Annals of the Royal College of Surgeons of England = Ann R Coll Surg Engl Annals of the Royal College of Surgeons of England = Ann. R. Coll. Surg. Engl. Annals of The Royal College Of Surgeons Of England=Ann R Coll Surg Engl;; Annals of The Royal College of Surgeons of England = Ann Roy Coll Surg Annals of The Royal College of Surgeons of England = Ann. Roy. Coll. Surg. Annals of the Social Science Council of Nigeria = Ann Soc Sci Counc Niger Annals of Thoracic and Cardiovascular Surgery = Ann Thorac Cardiovas Annals of Thoracic and Cardiovascular Surgery = Ann. Thorac. Cardiovas. Annals of Thoracic and Cardiovascular Surgery = Ann. Thorac. Cardiovasc. Surg. Annals of thoracic and cardiovascular surgery : official journal of the Association of Thoracic and Cardiovascular Surgeons of Asia = Ann Thorac Cardiovasc Surg Annals of Thoracic Medicine = Ann Thorac Med Annals of Thoracic Medicine = Ann. Thorac. Med. Annals of Thoracic Surgery=Ann Thorac Surg;; Annals of Thoracic Surgery = Ann Thorac Surg Annals of Thoracic Surgery = Ann. Thorac. Surg. Annals of Tourism Research = Ann Tourism Res Annals of Tourism Research = Ann. Tourism Res. Annals Of Tourism Research = Ann. Touris. Res. Annals of Transplantation = Ann Transpl Annals of Transplantation = Ann. Transpl. Annals of Transplantation = Ann. Transplant. Annals of transplantation : quarterly of the Polish Transplantation Society = Ann Transplant Annals of Tropical Medicine and Parasitology = Ann Trop Med Parasit Annals of Tropical Medicine and Parasitology = Ann. Trop. Med. Parasit. Annals of tropical medicine and parasitology = Ann Trop Med Parasitol Annals of Tropical Medicine and Parasitology=Ann Trop Med Parasitol;; Annals of Tropical Medicine and Parasitology = Ann. Trop. Med. Parasitol. Annals of tropical paediatrics = Ann Trop Paediatr Annals of Tropical Paediatrics=Ann Trop Paediatr;; Annals of Tropical Paediatrics = Ann Trop Paediatr Annals of Tropical Paediatrics = Ann. Trop. Paediatr. Annals of tuberculosis = Ann Tuberc Annals of vascular surgery = Ann Vasc Surg Annals of Vascular Surgery=Ann Vasc Surg;; Annals of Vascular Surgery = Ann Vasc Surg Annals of Vascular Surgery = Ann. Vasc. Surg. Annals of western medicine and surgery = Ann West Med Surg Annals of Wyoming (Cheyenne, Wyo. : 1925) = Ann Wyo Annals (Royal College of Physicians and Surgeons of Canada) = Ann R Coll Physicians Surg Can Annapolis Workshop On Magnetic Cataclysmic Variables = Astr Soc P Annapolis Workshop On Magnetic Cataclysmic Variables = Astr. Soc. P. Anne Duden A Revolution of Words: Approaches to Her Fiction, Poetry and Essays = Germ Monit Anne Duden A Revolution of Words: Approaches to Her Fiction, Poetry and Essays = Germ. Monit. Annee Biologique = Ann Biol-paris Annee Biologique = Ann. Biol-paris. Annee Biologique = Annee Biol. Annee Endocrinologique = Annee Endocrinol. Annee Psychologique = Annee Psychol. Annee Psychologique = Ann Psychol Annee Psychologique = Ann. Psychol. Annee Therapeutique et Clinique en Ophtalmologie = Annee Ther. Clin. Ophtalmol. Annexins = Annexins Annihilation in Gases and Galaxies = Nasa Conf P Annihilation in Gases and Galaxies = Nasa. Conf. P. Annnali della Facoltà di lettere e filosofia dell'Università di Cagliari = AnnCagl Annotated laws of Massachusetts : containing all the laws of Massachusetts of a general and permanent nature / completely annotated by the editorial staff of the publisher. Massachusetts = Annot Laws Mass Mass Annotating, Extracting and Reasoning About Time and Events = Lect Notes Comput Sc Annotating, Extracting and Reasoning About Time and Events = Lect. Notes. Comput. Sc. Annotationes Zoologicae Japonenses = Annot Zool Japon Annotationes Zoologicae Japonenses = Annot. Zool. Japon. Annotationes zoologicae Japonenses = Annot Zool Jpn Annotation : the newsletter of the National Historical Publications and Records Commission = Annotation Annotazioni numismatiche = AnnotNum Annuaire de l'Afrique du Nord = Annu Afr Nord Annuaire de l'école pratique des Hautes études, IV' sect., Sciences hist. & philol = AEHE IV Annuaire de l'école pratique des Hautes études, Ve sect., Sciences religieuses = AEHE V Annuaire de l'Institut de Philologie et d'Histoire Orientales et Slaves de l'Université Libre de Bruxelles = AIPhO Annuaire de l'Institut de philologie et d'histoire orientales et slaves (Université Libre de Bruxelles) = AIPhOr Annuaire de l'Université de Sofia, Faculté des Lettres = AUS Annuaire des amis de la Bibliothèque de Sélestat = AABS Annuaire des pays de l'ocean indien = Annu Pays Ocean Indien Annuaire du Collège de France = ACF Annuaire - Facultes catholiques de Lille (1972) = Fac Cathol Lille Annual 2004 of The Croatian Academy of Engineering = Annu Croat Acad Eng Annual 2004 of The Croatian Academy of Engineering = Annu. Croat. Acad. Eng. Annual 2006 of The Croatian Academy of Engineering = Annu Croat Acad Eng Annual 2006 of The Croatian Academy of Engineering = Annu. Croat. Acad. Eng. Annual 2007 of The Croatian Academy of Engineering = Annu Croat Acad Eng Annual 2007 of The Croatian Academy of Engineering = Annu. Croat. Acad. Eng. Annual 2008 of The Croatian Academy of Engineering = Annu Croat Acad Eng Annual 2008 of The Croatian Academy of Engineering = Annu. Croat. Acad. Eng. Annual Acm Symposium On Theory of Computing = Acm S Theory Comput Annual Acm Symposium On Theory of Computing = Acm S. Theory Comput. Annual Byzantine Studies Conference. Abstracts of Papers = AnnByzConf Annual Cira Proceedings = Ann Cira P Annual Cira Proceedings = Ann. Cira P. Annual Computer Security Applications Conference - Proceedings = Ann Comput Security Annual Computer Security Applications Conference - Proceedings = Ann. Comput. Security Annual Conference On Avian Medicine and Surgery = Ann Con Avi Med Sur Annual Conference On Avian Medicine and Surgery = Ann. Con. Avi. Med. Sur. Annual Conference on Research in Medical Education = Annu. Conf. Res. Med. Educ. Annual Conference on Research in Medical Education. Conference on Research in Medical Education = Annu Conf Res Med Educ Annual Egyptological Bibliography = AnnEgBibl Annuale mediaevale = Annu Mediaev Annuale Mediaevale = Annu Mediaevale Annuale Mediaevale = Annu. Mediaevale Annual Ieee Conference On Applied Power Electronics Conference and Exposition (apec) = Appl Power Elect Co Annual Ieee Conference On Applied Power Electronics Conference and Exposition (apec) = Appl. Power Elect. Co. Annual Ieee Conference On Computational Complexity = Ann Ieee Conf Comput Annual Ieee Conference On Computational Complexity = Ann. Ieee Conf. Comput. Annual Ieee Conference On Computational Complexity - Proceedings = Ieee Conf Comp Compl Annual Ieee Conference On Computational Complexity - Proceedings = Ieee Conf. Comp. Compl. Annual Ieee Northeast Bioengineering Conference = Northeast Bioengin C Annual Ieee Northeast Bioengineering Conference = Northeast Bioengin. C. Annual Ieee Symposium On Field-programmable Custom Computing Machines = Ann Ieee Sym Field P Annual Ieee Symposium On Field-programmable Custom Computing Machines = Ann. Ieee Sym. Field. P. Annual Ieee Symposium On Field Programmable Custom Computing Machines = Ann Ieee Sym Field P Annual Ieee Symposium On Field Programmable Custom Computing Machines = Ann. Ieee Sym. Field P. Annual Ieee Symposium On Foundations of Computer Science = Ann Ieee Symp Found Annual Ieee Symposium On Foundations of Computer Science = Ann. Ieee Symp. Found. Annual International Conference Proceedings - American Production and Inventory Control Society, International Conference = Ann Apics Annual International Conference Proceedings - American Production and Inventory Control Society, International Conference = Ann. Apics. Annual Meeting 1998 - Nondestructive Materials Testing = Dgzfp Ber Annual Meeting 1998 - Nondestructive Materials Testing = Dgzfp. Ber. Annual meeting - American Institute of Oral Biology = Annu Meet Am Inst Oral Biol Annual Meeting, American Institute of Oral Biology = Annu. Meet. Am. Inst. Oral Biol. Annual Meeting of The Appa: The Association of Higher Education Facilities Officers = Ann M Appa Annual Meeting of The Appa: The Association of Higher Education Facilities Officers = Ann. M. Appa. Annual Meeting On Nuclear Technology '95, Proceedings = Jahres Kern Annual Meeting On Nuclear Technology '95, Proceedings = Jahres. Kern. Annual Meeting On Nuclear Technology '96 = Jahres Kern Annual Meeting On Nuclear Technology '96 = Jahres. Kern. Annual Meeting On Nuclear Technology '97 = Jahres Kern Annual Meeting On Nuclear Technology '97 = Jahres. Kern. Annual Meeting On Nuclear Technology '98, Proceedings = Jahres Kern Annual Meeting On Nuclear Technology '98, Proceedings = Jahres. Kern. Annual Meeting On Nuclear Technology '99, Proceedings = Jahres Kern Annual Meeting On Nuclear Technology '99, Proceedings = Jahres. Kern. Annual of Animal Psychology = Annu Anim Psychol Annual of Animal Psychology = Annu. Anim. Psychol. Annual of The American Schools of Oriental Research = Ann Amer Sc Annual of The American Schools of Oriental Research = Ann. Amer. Sc. Annual of the British School at Athens = ABSA Annual of The Croatian Academy of Engineering = Annu Croat Acad Eng Annual of The Croatian Academy of Engineering = Annu. Croat. Acad. Eng. Annual of the Department of Antiquities of Jordan = AAJ Annual of The Society of Christian Ethics = Annu Soc Christ Eth Annual of The Society of Christian Ethics = Annu. Soc. Christ. Eth. Annual proceedings / Association for the Advancement of Automotive Medicine. Association for the Advancement of Automotive Medicine = Annu Proc Assoc Adv Automot Med Annual progress in reproductive medicine = Annu Prog Reprod Med Annual Publication of The College Theology Society = Ann Pub Coll Theol S Annual Publication of The College Theology Society = Ann. Pub. Coll. Theol. S. Annual Reliability and Maintainability Symposium : 1992 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium : 1992 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium : 1993 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium : 1993 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium - 1995 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium - 1995 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 1996 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 1996 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium - 1997 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium - 1997 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 1999 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 1999 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 1999 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 1999 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium - 2000 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium - 2000 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium - 2000 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium - 2000 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2001 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 2001 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 2001 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2001 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2002 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 2002 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 2002 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2002 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2003 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 2003 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 2003 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2003 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2004 Proceedings = P A Rel Mai Annual Reliability and Maintainability Symposium, 2004 Proceedings = P. A. Rel. Mai. Annual Reliability and Maintainability Symposium, 2004 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2004 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2005 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2005 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2007 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2007 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2008 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2008 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2009 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2009 Proceedings = P. Rel. Maint. S. Annual Reliability and Maintainability Symposium, 2010 Proceedings = P Rel Maint S Annual Reliability and Maintainability Symposium, 2010 Proceedings = P. Rel. Maint. S. Annual report - Division of Biological and Medical Research, Argonne National Laboratory. Argonne National Laboratory. Division of Biological and Medical Research = Annu Rep Div Biol Med Res Argonne Natl Lab Annual Report of Council. British School of Archaeology at Athens = AnnRepBSA Annual report of the Council. Royal Society of Health (Great Britain) = Annu Rep R Soc Promot Health Annual Report of the Department of Antiquities, Republic of Cyprus = AnnRepCypr Annual report of the Research Institute of Environmental Medicine, Nagoya University = Annu Rep Res Inst Environ Med Nagoya Univ Annual Report of the Research Institute of Environmental Medicine, Nagoya University = Annu. Rep. Res. Inst. Environ. Med. Nagoya Univ. Annual reports in medicinal chemistry = Annu Rep Med Chem Annual Reports in Medicinal Chemistry = Annu Rep Med Chem Annual Reports in Medicinal Chemistry = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 28 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 28 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 29 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 29 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 31 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 31 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 32 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 32 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 34 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 34 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 35 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 35 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 36 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 36 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 37 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 37 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 38 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 38 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 39 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 39 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 40 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 40 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 41 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 41 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 42 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 42 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 43 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 43 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 44 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 44 = Annu. Rep. Med. Chem. Annual Reports in Medicinal Chemistry, Vol 45 = Annu Rep Med Chem Annual Reports in Medicinal Chemistry, Vol 45 = Annu. Rep. Med. Chem. Annual Reports of The Progress of Chemistry = Annu Rep Prog Chem Annual Reports of The Progress of Chemistry = Annu. Rep. Prog. Chem. Annual Reports on Analytical Atomic Spectroscopy = Annu. Rep. Anal. At. Spectrosc. Annual Reports On Nmr Spectroscopy = Ann R Nmr S Annual Reports On Nmr Spectroscopy = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy = Annu. Rep. Nmr Spectro. Annual Reports on NMR Spectroscopy = Annu. Rep. NMR Spectrosc. Annual Reports On Nmr Spectroscopy, Vol 37 = Ann R Nmr S Annual Reports On Nmr Spectroscopy, Vol 37 = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy, Vol 37 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 37 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 38 = Ann R Nmr S Annual Reports On Nmr Spectroscopy, Vol 38 = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy, Vol 38 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 38 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 41 = Ann R Nmr S Annual Reports On Nmr Spectroscopy, Vol 41 = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy, Vol 41 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 41 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 43 = Ann R Nmr S Annual Reports On Nmr Spectroscopy, Vol 43 = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy, Vol 43 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 43 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 53 = Ann R Nmr S Annual Reports On Nmr Spectroscopy, Vol 53 = Ann. R. Nmr S. Annual Reports On Nmr Spectroscopy, Vol 53 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 53 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 54 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 54 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 55 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 55 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 56 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 56 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 57 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 57 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 58 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 58 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 59 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 59 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 60 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 60 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 61 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 61 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 62 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 62 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 63 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 63 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 64 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 64 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 65 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 65 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 66 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 66 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 67 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 67 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 68 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 68 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 69 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 69 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 70 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 70 = Annu. Rep. Nmr Spectro. Annual Reports On Nmr Spectroscopy, Vol 72 = Annu Rep Nmr Spectro Annual Reports On Nmr Spectroscopy, Vol 72 = Annu. Rep. Nmr Spectro. Annual Reports On The Progress of Chemistry 2008, Vol 104, Section B: Organic Chemistry = Annu Rep Prog Chem B Annual Reports On The Progress of Chemistry 2008, Vol 104, Section B: Organic Chemistry = Annu. Rep. Prog. Chem. B. Annual Reports On The Progress of Chemistry 2008, Vol 104, Section C: Physical Chemistry = Annu Rep Prog Chem C Annual Reports On The Progress of Chemistry 2008, Vol 104, Section C: Physical Chemistry = Annu. Rep. Prog. Chem. C. Annual Reports On The Progress of Chemistry 2009, Vol 105, Section B: Organic Chemistry = Annu Rep Prog Chem B Annual Reports On The Progress of Chemistry 2009, Vol 105, Section B: Organic Chemistry = Annu. Rep. Prog. Chem. B. Annual Reports On The Progress of Chemistry 2009, Vol 105, Section C: Physical Chemistry = Annu Rep Prog Chem C Annual Reports On The Progress of Chemistry 2009, Vol 105, Section C: Physical Chemistry = Annu. Rep. Prog. Chem. C. Annual Reports On The Progress of Chemistry Section A-inorganic Chemistry = Annu Rep Prog Chem A Annual Reports On The Progress of Chemistry Section A-inorganic Chemistry = Annu. Rep. Prog. Chem. A. Annual Reports on the Progress of Chemistry, Section A: Inorganic Chemistry = Annu. Rep. Prog. Chem. Sect. A: Inorg. Chem. Annual Reports on the Progress of Chemistry, Section A: Inorganic Chemistry = Annu. Rep. Prog. Chem., Sect. A: Inorg. Chem. Annual Reports On The Progress of Chemistry Section A-physical & Inorganic Chemistry = Ann Rep Progr Chem A Annual Reports On The Progress of Chemistry Section A-physical & Inorganic Chemistry = Ann. Rep. Progr. Chem. A. Annual Reports On The Progress of Chemistry Section A-physical & Inorganic Chemistry = Annu Rep Prog Chem A Annual Reports On The Progress of Chemistry Section A-physical & Inorganic Chemistry = Annu. Rep. Prog. Chem. A. Annual Reports On The Progress of Chemistry Section B-organic Chemistry = Ann Rep Progr Chem B Annual Reports On The Progress of Chemistry Section B-organic Chemistry = Ann. Rep. Progr. Chem. B. Annual Reports On The Progress of Chemistry Section B-organic Chemistry = Annu Rep Prog Chem B Annual Reports On The Progress of Chemistry Section B-organic Chemistry = Annu. Rep. Prog. Chem. B. Annual Reports On The Progress of Chemistry Section B- Organic Chemistry = Annu Rep Prog Chem B Annual Reports On The Progress of Chemistry Section B- Organic Chemistry = Annu. Rep. Prog. Chem. B. Annual Reports on the Progress of Chemistry, Section B: Organic Chemistry = Annu. Rep. Prog. Chem. Sect. B: Org. Chem. Annual Reports on the Progress of Chemistry, Section B: Organic Chemistry = Annu. Rep. Prog. Chem., Sect. B: Org. Chem. Annual Reports On The Progress of Chemistry Section C-physical Chemistry = Annu Rep Prog Chem C Annual Reports On The Progress of Chemistry Section C-physical Chemistry = Annu. Rep. Prog. Chem. C. Annual Reports on the Progress of Chemistry, Section C: Physical Chemistry = Annu. Rep. Prog. Chem. Sect. C: Phys. Chem. Annual Reports on the Progress of Chemistry, Section C: Physical Chemistry = Annu. Rep. Prog. Chem., Sect. C: Phys. Chem. Annual Reports On The Progress of Chemistry, Vol 103, Section A: Inorganic Chemistry = Annu Rep Prog Chem A Annual Reports On The Progress of Chemistry, Vol 103, Section A: Inorganic Chemistry = Annu. Rep. Prog. Chem. A. Annual Reports On The Progress of Chemistry, Vol 103, Section B: Organic Chemistry = Annu Rep Prog Chem B Annual Reports On The Progress of Chemistry, Vol 103, Section B: Organic Chemistry = Annu. Rep. Prog. Chem. B. Annual Reports On The Progress of Chemistry, Vol 105, Section A: Inorganic Chemistry = Annu Rep Prog Chem A Annual Reports On The Progress of Chemistry, Vol 105, Section A: Inorganic Chemistry = Annu. Rep. Prog. Chem. A. Annual Reports - Royal Society of Chemistry, Section Section A: Inorganic Chemistry = Annu. Rep. R. Soc. Chem. Sect. A: Inorg. Chem. Annual Reports - Royal Society of Chemistry, Section Section B: Organic Chemistry = Annu. Rep. R. Soc. Chem. Sect. B. Org. Chem. Annual Reports - Royal Society of Chemistry, Section Section C: Physical Chemistry = Annu. Rep. R. Soc. Chem. Sect. C. Phys. Chem. Annual Report. The Society for Libyan Studies = RepSocLibSt Annual (Report). Worcester Art Museum = AnnWorcArtMus Annual Review in Automatic Programming = Ann R Aut P Annual Review in Automatic Programming = Ann. R. Aut. P. Annual Review in Control = Annu. Rev. Control Annual Review of Analytical Chemistry = Annu Rev Anal Chem Annual Review of Analytical Chemistry = Annu. Rev. Anal. Chem. Annual Review of Analytical Chemistry, Vol 3 = Annu Rev Anal Chem Annual Review of Analytical Chemistry, Vol 3 = Annu. Rev. Anal. Chem. Annual Review of Analytical Chemistry, Vol 4 = Annu Rev Anal Chem Annual Review of Analytical Chemistry, Vol 4 = Annu. Rev. Anal. Chem. Annual review of anthropology = Annu Rev Anthropol Annual Review of Anthropology = Annu Rev Anthropol Annual Review of Anthropology = Annu. Rev. Anthropol. Annual Review of Anthropology, Volume 39 = Annu Rev Anthropol Annual Review of Anthropology, Volume 39 = Annu. Rev. Anthropol. Annual Review of Applied Linguistics = Annu Rev Appl Lingui Annual Review of Applied Linguistics = Annu. Rev. Appl. Lingui. Annual Review of Astronomy and Astrophysics = Annu Rev Astron Astr Annual Review of Astronomy and Astrophysics = Annu. Rev. Astron. Astr. Annual review of astronomy and astrophysics = Annu Rev Astron Astrophys Annual Review of Astronomy and Astrophysics = ARA\&A Annual Review of Astronomy and Astrophysics, Vol 47 = Annu Rev Astron Astr Annual Review of Astronomy and Astrophysics, Vol 47 = Annu. Rev. Astron. Astr. Annual Review of Astronomy and Astrophysics, Vol 48 = Annu Rev Astron Astr Annual Review of Astronomy and Astrophysics, Vol 48 = Annu. Rev. Astron. Astr. Annual review of biochemistry = Annu Rev Biochem Annual Review of Biochemistry=Annu Rev Biochem;; Annual Review of Biochemistry = Annu Rev Biochem Annual Review of Biochemistry = Annu. Rev. Biochem. Annual Review of Biochemistry, Vol 79 = Annu Rev Biochem Annual Review of Biochemistry, Vol 79 = Annu. Rev. Biochem. Annual Review of Biochemistry, Vol 80 = Annu Rev Biochem Annual Review of Biochemistry, Vol 80 = Annu. Rev. Biochem. Annual review of biomedical engineering = Annu Rev Biomed Eng Annual Review of Biomedical Engineering = Annu Rev Biomed Eng Annual Review of Biomedical Engineering = Annu. Rev. Biomed. Eng. Annual Review of Biomedical Engineering, Vol 12 = Annu Rev Biomed Eng Annual Review of Biomedical Engineering, Vol 12 = Annu. Rev. Biomed. Eng. Annual Review of Biophysics and Bioengineering = Annu Rev Biophys Bio Annual Review of Biophysics and Bioengineering = Annu. Rev. Biophys. Bio. Annual review of biophysics and bioengineering = Annu Rev Biophys Bioeng Annual Review of Biophysics and Bioengineering = Annu. Rev. Biophys. Bioeng. Annual Review of Biophysics and Biomolecular Structure = Annu Rev Bioph Biom Annual Review of Biophysics and Biomolecular Structure = Annu. Rev. Bioph. Biom. Annual review of biophysics and biomolecular structure = Annu Rev Biophys Biomol Struct Annual Review of Biophysics and Biomolecular Structure=Annu Rev Biophys Biomol Struct;; Annual Review of Biophysics and Biomolecular Structure = Annu. Rev. Biophys. Biomol. Struct. Annual Review of Biophysics and Biophysical Chemistry = Annu Rev Biophys Bio Annual Review of Biophysics and Biophysical Chemistry = Annu. Rev. Biophys. Bio. Annual review of biophysics and biophysical chemistry = Annu Rev Biophys Biophys Chem Annual Review of Biophysics and Biophysical Chemistry = Annu. Rev. Biophys. Biophys. Chem. Annual Review of Biophysics = Annu Rev Bioph Biom Annual Review of Biophysics = Annu. Rev. Bioph. Biom. Annual Review of Biophysics = Annu Rev Biophys Annual Review of Biophysics = Annu. Rev. Biophys. Annual Review of Biophysics, Vol 39 = Annu Rev Biophys Annual Review of Biophysics, Vol 39 = Annu. Rev. Biophys. Annual Review of Biophysics, Vol 40 = Annu Rev Biophys Annual Review of Biophysics, Vol 40 = Annu. Rev. Biophys. Annual Review of Cell and Developmental Biology=Ann Rev Cell Dev Biol;; Annual Review of Cell and Developmental Biology = Annu Rev Cell Dev Bi Annual Review of Cell and Developmental Biology = Annu. Rev. Cell Dev. Bi. Annual review of cell and developmental biology = Annu Rev Cell Dev Biol Annual Review of Cell and Developmental Biology = Annu. Rev. Cell Dev. Biol. Annual Review of Cell and Developmental Biology, Vol 26 = Annu Rev Cell Dev Bi Annual Review of Cell and Developmental Biology, Vol 26 = Annu. Rev. Cell Dev. Bi. Annual review of cell biology = Annu Rev Cell Biol Annual Review of Cell Biology = Annu Rev Cell Biol Annual Review of Cell Biology = Annu. Rev. Cell Biol. Annual Review of Chemical and Biomolecular Engineering = Annu Rev Chem Biomol Annual Review of Chemical and Biomolecular Engineering = Annu. Rev. Chem. Biomol. Annual Review of Chemical and Biomolecular Engineering, Vol 1 = Annu Rev Chem Biomol Annual Review of Chemical and Biomolecular Engineering, Vol 1 = Annu. Rev. Chem. Biomol. Annual Review of Chemical and Biomolecular Engineering, Vol 2 = Annu Rev Chem Biomol Annual Review of Chemical and Biomolecular Engineering, Vol 2 = Annu. Rev. Chem. Biomol. Annual Review of Chronopharmacology = Ann R Chron Annual Review of Chronopharmacology = Ann. R. Chron. Annual Review of Chronopharmacology, Vol 7 = Ann R Chron Annual Review of Chronopharmacology, Vol 7 = Ann. R. Chron. Annual Review of Clinical Psychology = Annu Rev Clin Psycho Annual Review of Clinical Psychology = Annu. Rev. Clin. Psycho. Annual review of clinical psychology = Annu Rev Clin Psychol Annual Review of Clinical Psychology, Vol 6 = Annu Rev Clin Psycho Annual Review of Clinical Psychology, Vol 6 = Annu. Rev. Clin. Psycho. Annual Review of Computer Science = Annu Rev Comput Sci Annual Review of Computer Science = Annu. Rev. Comput. Sci. Annual Review of Condensed Matter Physics = Annu Rev Conden Ma P Annual Review of Condensed Matter Physics = Annu. Rev. Conden. Ma. P. Annual Review of Condensed Matter Physics, Vol 1 = Annu Rev Conden Ma P Annual Review of Condensed Matter Physics, Vol 1 = Annu. Rev. Conden. Ma. P. Annual Review of Condensed Matter Physics, Vol 2 = Annu Rev Conden Ma P Annual Review of Condensed Matter Physics, Vol 2 = Annu. Rev. Conden. Ma. P. Annual Review of Cybertherapy and Telemedicine 2009: Advanced Technologies in The Behavioral, Social and Neurosciences = Stud Health Technol Annual Review of Cybertherapy and Telemedicine 2009: Advanced Technologies in The Behavioral, Social and Neurosciences = Stud. Health. Technol. Annual Review of Earth and Planetary Science Letters = Annu. Rev. Earth Planet. Sci. Lett. Annual review of earth and planetary sciences = Annu Rev Earth Planet Sci Annual Review of Earth and Planetary Sciences = Annu. Rev. Earth Planet. Sci. Annual Review of Earth and Planetary Sciences = Annu Rev Earth Pl Sc Annual Review of Earth and Planetary Sciences = Annu. Rev. Earth Pl. Sc. Annual Review of Earth and Planetary Sciences, Vol 38 = Annu Rev Earth Pl Sc Annual Review of Earth and Planetary Sciences, Vol 38 = Annu. Rev. Earth Pl. Sc. Annual Review of Earth and Planetary Sciences, Vol 39 = Annu Rev Earth Pl Sc Annual Review of Earth and Planetary Sciences, Vol 39 = Annu. Rev. Earth Pl. Sc. Annual review of ecology and systematics = Annu Rev Ecol Syst Annual Review of Ecology and Systematics = Annu Rev Ecol Syst Annual Review of Ecology and Systematics = Annu. Rev. Ecol. Syst. Annual Review of Ecology Evolution and Systematics = Annu Rev Ecol Evol S Annual Review of Ecology Evolution and Systematics = Annu. Rev. Ecol. Evol. S. Annual Review of Ecology, Evolution, and Systematics, Vol 41 = Annu Rev Ecol Evol S Annual Review of Ecology, Evolution, and Systematics, Vol 41 = Annu. Rev. Ecol. Evol. S. Annual Review of Economics = Annu Rev Econ Annual Review of Economics = Annu. Rev. Econ. Annual Review of Economics, Vol 2 = Annu Rev Econ Annual Review of Economics, Vol 2 = Annu. Rev. Econ. Annual Review of Economics, Vol 3 = Annu Rev Econ Annual Review of Economics, Vol 3 = Annu. Rev. Econ. Annual Review of Energy and The Environment = Annu Rev Energ Env Annual Review of Energy and The Environment = Annu. Rev. Energ. Env. Annual Review of Energy and the Environment = Annu. Rev. Energy Env. Annual Review of Energy = Annu Rev Energy Annual Review of Energy = Annu. Rev. Energy Annual review of entomology = Annu Rev Entomol Annual Review of Entomology=Annu Rev Entomol;; Annual Review of Entomology = Annu Rev Entomol Annual Review of Entomology = Annu. Rev. Entomol. Annual Review of Entomology, Vol 56 = Annu Rev Entomol Annual Review of Entomology, Vol 56 = Annu. Rev. Entomol. Annual Review of Environment and Resources = Annu Rev Env Resour Annual Review of Environment and Resources = Annu. Rev. Env. Resour. Annual Review of Environment and Resources, Vol 35 = Annu Rev Env Resour Annual Review of Environment and Resources, Vol 35 = Annu. Rev. Env. Resour. Annual Review of Financial Economics = Annu Rev Financ Econ Annual Review of Financial Economics = Annu. Rev. Financ. Econ. Annual Review of Financial Economics, Vol 2 = Annu Rev Financ Econ Annual Review of Financial Economics, Vol 2 = Annu. Rev. Financ. Econ. Annual review of fluid mechanics = Annu Rev Fluid Mech Annual Review of Fluid Mechanics = Annu. Rev. Fluid Mech. Annual Review of Fluid Mechanics = Annu Rev Fluid Mech Annual Review of Fluid Mechanics = Annu. Rev. Fluid Mech. Annual Review of Fluid Mechanics, Vol 43 = Annu Rev Fluid Mech Annual Review of Fluid Mechanics, Vol 43 = Annu. Rev. Fluid Mech. Annual Review of Food Science and Technology = Annu Rev Food Sci T Annual Review of Food Science and Technology = Annu. Rev. Food Sci. T. Annual Review of Food Science and Technology, Vol 1 = Annu Rev Food Sci T Annual Review of Food Science and Technology, Vol 1 = Annu. Rev. Food Sci. T. Annual Review of Food Science and Technology, Vol 2 = Annu Rev Food Sci T Annual Review of Food Science and Technology, Vol 2 = Annu. Rev. Food Sci. T. Annual review of genetics = Annu Rev Genet Annual Review of Genetics=Annu Rev Genet;; Annual Review of Genetics = Annu Rev Genet Annual Review of Genetics = Annu. Rev. Genet. Annual Review of Genetics, Vol 44 = Annu Rev Genet Annual Review of Genetics, Vol 44 = Annu. Rev. Genet. Annual Review of Genomics and Human Genetics = Annu Rev Genom Hum G Annual Review of Genomics and Human Genetics = Annu. Rev. Genom. Hum. G. Annual review of genomics and human genetics = Annu Rev Genomics Hum Genet Annual Review of Genomics and Human Genetics = Annu. Rev. Genomics Hum. Genet. Annual Review of Genomics and Human Genetics, Vol 11 = Annu Rev Genom Hum G Annual Review of Genomics and Human Genetics, Vol 11 = Annu. Rev. Genom. Hum. G. Annual Review of Gerontology and Geriatrics = Annu Rev Gerontol Ge Annual Review of Gerontology and Geriatrics = Annu. Rev. Gerontol. Ge. Annual Review of Gerontology and Geriatrics = Annu. Rev. Gerontol. Geriatr. Annual Review of Gerontology and Geriatrics: Life-course Perspectives On Late-life Health Inequalities, Vol 29, 2009 = Annu Rev Gerontol Ge Annual Review of Gerontology and Geriatrics: Life-course Perspectives On Late-life Health Inequalities, Vol 29, 2009 = Annu. Rev. Gerontol. Ge. Annual Review of Gerontology and Geriatrics, Vol 27 = Annu Rev Gerontol Ge Annual Review of Gerontology and Geriatrics, Vol 27 = Annu. Rev. Gerontol. Ge. Annual Review of Gerontology and Geriatrics, Vol 28, 2008 = Annu Rev Gerontol Ge Annual Review of Gerontology and Geriatrics, Vol 28, 2008 = Annu. Rev. Gerontol. Ge. Annual review of gerontology & geriatrics = Annu Rev Gerontol Geriatr Annual review of immunology = Annu Rev Immunol Annual Review of Immunology=Annu Rev Immunol;; Annual Review of Immunology = Annu Rev Immunol Annual Review of Immunology = Annu. Rev. Immunol. Annual Review of Immunology, Vol 28 = Annu Rev Immunol Annual Review of Immunology, Vol 28 = Annu. Rev. Immunol. Annual Review of Immunology, Vol 29 = Annu Rev Immunol Annual Review of Immunology, Vol 29 = Annu. Rev. Immunol. Annual Review of Information Science and Technology = Annu Rev Inform Sci Annual Review of Information Science and Technology = Annu. Rev. Inform. Sci. Annual Review of Law and Social Science = Annu Rev Law Soc Sci Annual Review of Law and Social Science = Annu. Rev. Law Soc. Sci. Annual Review of Law and Social Science, Vol 6 = Annu Rev Law Soc Sci Annual Review of Law and Social Science, Vol 6 = Annu. Rev. Law Soc. Sci. Annual Review of Marine Science = Annu Rev Mar Sci Annual Review of Marine Science = Annu. Rev. Mar. Sci. Annual Review of Marine Science, Vol 3 = Annu Rev Mar Sci Annual Review of Marine Science, Vol 3 = Annu. Rev. Mar. Sci. Annual Review of Materials Research = Ann Rev Mater Res Annual Review of Materials Research = Ann. Rev. Mater. Res. Annual Review of Materials Research = Annu Rev Mater Res Annual Review of Materials Research = Annu. Rev. Mater. Res. Annual Review of Materials Research, Vol 40 = Annu Rev Mater Res Annual Review of Materials Research, Vol 40 = Annu. Rev. Mater. Res. Annual Review of Materials Research, Vol 41 = Annu Rev Mater Res Annual Review of Materials Research, Vol 41 = Annu. Rev. Mater. Res. Annual Review of Materials Science = Annu Rev Mater Sci Annual Review of Materials Science = Annu. Rev. Mater. Sci. Annual review of medicine = Annu Rev Med Annual Review of Medicine=Annu Rev Med;; Annual Review of Medicine = Annu Rev Med Annual Review of Medicine = Annu. Rev. Med. Annual Review of Medicine-selected Topics in The Clinical Sciences = Annu Rev Med Annual Review of Medicine-selected Topics in The Clinical Sciences = Annu. Rev. Med. Annual Review of Medicine, Vol 62, 2011 = Annu Rev Med Annual Review of Medicine, Vol 62, 2011 = Annu. Rev. Med. Annual review of microbiology = Annu Rev Microbiol Annual Review of Microbiology=Annu Rev Microbiol;; Annual Review of Microbiology = Annu Rev Microbiol Annual Review of Microbiology = Annu. Rev. Microbiol. Annual Review of Microbiology, Vol 64, 2010 = Annu Rev Microbiol Annual Review of Microbiology, Vol 64, 2010 = Annu. Rev. Microbiol. Annual review of neuroscience = Annu Rev Neurosci Annual Review of Neuroscience=Annu Rev Neurosci;; Annual Review of Neuroscience = Annu Rev Neurosci Annual Review of Neuroscience = Annu. Rev. Neurosci. Annual Review of Neuroscience, Vol 33 = Annu Rev Neurosci Annual Review of Neuroscience, Vol 33 = Annu. Rev. Neurosci. Annual Review of Neuroscience, Vol 34 = Annu Rev Neurosci Annual Review of Neuroscience, Vol 34 = Annu. Rev. Neurosci. Annual Review of Nuclear and Particle Science = Annu Rev Nucl Part S Annual Review of Nuclear and Particle Science = Annu. Rev. Nucl. Part. S. Annual Review of Nuclear and Particle Science = Annu. Rev. Nucl. Part. Sci. Annual Review of Nuclear and Particle Science, Vol 60 = Annu Rev Nucl Part S Annual Review of Nuclear and Particle Science, Vol 60 = Annu. Rev. Nucl. Part. S. Annual Review of Nuclear Science = Ann Rev Nucl Sci Annual Review of Nuclear Science = Ann. Rev. Nucl. Sci. Annual review of nuclear science = Annu Rev Nucl Sci Annual Review of Nuclear Science = Annu. Rev. Nucl. Sci. Annual review of nursing research = Annu Rev Nurs Res Annual Review of Nursing Research=Annu Rev Nurs Res;; Annual Review of Nursing Research = Annu. Rev. Nurs. Res. Annual review of nutrition = Annu Rev Nutr Annual Review of Nutrition=Annu Rev Nutr;; Annual Review of Nutrition = Annu Rev Nutr Annual Review of Nutrition = Annu. Rev. Nutr. Annual Review of Nutrition, Vol 30 = Annu Rev Nutr Annual Review of Nutrition, Vol 30 = Annu. Rev. Nutr. Annual Review of Nutrition, Vol 31 = Annu Rev Nutr Annual Review of Nutrition, Vol 31 = Annu. Rev. Nutr. Annual Review of Pathology-mechanisms of Disease = Annu Rev Pathol-mech Annual Review of Pathology-mechanisms of Disease = Annu. Rev. Pathol-mech. Annual Review of Pathology: Mechanisms of Disease = Annu. Rev. Pathol.: Mech. Dis. Annual Review of Pathology: Mechanisms of Disease, Vol 6 = Annu Rev Pathol-mech Annual Review of Pathology: Mechanisms of Disease, Vol 6 = Annu. Rev. Pathol-mech. Annual Review of Pharmacology and Toxicology = Annu Rev Pharmacol Annual Review of Pharmacology and Toxicology = Annu. Rev. Pharmacol. Annual review of pharmacology and toxicology = Annu Rev Pharmacol Toxicol Annual Review of Pharmacology and Toxicology=Annu Rev Pharmacol Toxicol;; Annual Review of Pharmacology and Toxicology = Annu. Rev. Pharmacol. Toxicol. Annual Review of Pharmacology and Toxicology, Vol 51, 2011 = Annu Rev Pharmacol Annual Review of Pharmacology and Toxicology, Vol 51, 2011 = Annu. Rev. Pharmacol. Annual review of pharmacology = Annu Rev Pharmacol Annual Review of Pharmacology = Annu. Rev. Pharmacol. Annual Review of Pharmacology = Annu Rev Pharmacolog Annual Review of Pharmacology = Annu. Rev. Pharmacolog. Annual review of physical chemistry = Annu Rev Phys Chem Annual Review of Physical Chemistry=Annu Rev Phys Chem;; Annual Review of Physical Chemistry = Annu Rev Phys Chem Annual Review of Physical Chemistry = Annu. Rev. Phys. Chem. Annual Review of Physical Chemistry, Vol 61 = Annu Rev Phys Chem Annual Review of Physical Chemistry, Vol 61 = Annu. Rev. Phys. Chem. Annual Review of Physical Chemistry, Vol 62 = Annu Rev Phys Chem Annual Review of Physical Chemistry, Vol 62 = Annu. Rev. Phys. Chem. Annual review of physiology = Annu Rev Physiol Annual Review of Physiology=Annu Rev Physiol;; Annual Review of Physiology = Annu Rev Physiol Annual Review of Physiology = Annu. Rev. Physiol. Annual Review of Physiology, Vol 73 = Annu Rev Physiol Annual Review of Physiology, Vol 73 = Annu. Rev. Physiol. Annual review of phytopathology = Annu Rev Phytopathol Annual Review of Phytopathology = Annu Rev Phytopathol Annual Review of Phytopathology = Annu. Rev. Phytopathol. Annual Review of Phytopathology, Vol 48 = Annu Rev Phytopathol Annual Review of Phytopathology, Vol 48 = Annu. Rev. Phytopathol. Annual Review of Phytopathology, Vol 49 = Annu Rev Phytopathol Annual Review of Phytopathology, Vol 49 = Annu. Rev. Phytopathol. Annual review of plant biology = Annu Rev Plant Biol Annual Review of Plant Biology = Annu Rev Plant Biol Annual Review of Plant Biology = Annu. Rev. Plant Biol. Annual Review of Plant Biology, Vol 61 = Annu Rev Plant Biol Annual Review of Plant Biology, Vol 61 = Annu. Rev. Plant Biol. Annual Review of Plant Biology, Vol 62 = Annu Rev Plant Biol Annual Review of Plant Biology, Vol 62 = Annu. Rev. Plant Biol. Annual Review of Plant Physiology and Plant Molecular Biology = Annu Rev Plant Phys Annual Review of Plant Physiology and Plant Molecular Biology = Annu. Rev. Plant Phys. Annual review of plant physiology and plant molecular biology = Annu Rev Plant Physiol Plant Mol Biol Annual Review of Plant Physiology = Ann Rev Plant Physio Annual Review of Plant Physiology = Ann. Rev. Plant Physio. Annual review of plant physiology = Annu Rev Plant Physiol Annual Review of Plant Physiology = Annu. Rev. Plant Physiol. Annual Review of Political Science = Annu Rev Polit Sci Annual Review of Political Science = Annu. Rev. Polit. Sci. Annual Review of Political Science, Vol 13 = Annu Rev Polit Sci Annual Review of Political Science, Vol 13 = Annu. Rev. Polit. Sci. Annual review of population law = Annu Rev Popul Law Annual review of psychology = Annu Rev Psychol Annual Review of Psychology=Annu Rev Psychol;; Annual Review of Psychology = Annu Rev Psychol Annual Review of Psychology = Annu. Rev. Psychol. Annual Review of Psychology, Vol 62 = Annu Rev Psychol Annual Review of Psychology, Vol 62 = Annu. Rev. Psychol. Annual Review of Public Health = Annu Rev Publ Health Annual Review of Public Health = Annu. Rev. Publ. Health Annual review of public health = Annu Rev Public Health Annual Review of Public Health=Annu Rev Public Health;; Annual Review of Public Health = Annu. Rev. Public Health Annual Review of Public Health, Vol 31 = Annu Rev Publ Health Annual Review of Public Health, Vol 31 = Annu. Rev. Publ. Health. Annual Review of Public Health, Vol 32 = Annu Rev Publ Health Annual Review of Public Health, Vol 32 = Annu. Rev. Publ. Health. Annual review of rehabilitation = Annu Rev Rehabil Annual Review of Rehabilitation = Annu. Rev. Rehabil. Annual Review of Resource Economics = Annu Rev Resour Econ Annual Review of Resource Economics = Annu. Rev. Resour. Econ. Annual Review of Resource Economics, Vol 2, 2010 = Annu Rev Resour Econ Annual Review of Resource Economics, Vol 2, 2010 = Annu. Rev. Resour. Econ. Annual review of sex research = Annu Rev Sex Res Annual Review of Sex Research = Annu. Rev. Sex Res. Annual review of sociology = Annu Rev Sociol Annual Review of Sociology = Annu Rev Sociol Annual Review of Sociology = Annu. Rev. Sociol. Annual Review Of Sociology = Annu. Rev. Sociol. Annual Review of Sociology, Vol 36 = Annu Rev Sociol Annual Review of Sociology, Vol 36 = Annu. Rev. Sociol. Annual Review of South Asian Languages and Linguistics 2007 = Trends Linguist-stud Annual Review of South Asian Languages and Linguistics 2007 = Trends. Linguist-stud. Annual Review of South Asian Languages and Linguistics 2009 = Trends Linguist-stud Annual Review of South Asian Languages and Linguistics 2009 = Trends. Linguist-stud. Annual Reviews in Control = Annu Rev Control Annual Reviews in Control = Annu. Rev. Control Annual Reviews of Computational Physics = Annual Rev. Comput. Phys. Annual Selected Papers of The African Literature Association = Ann Sel Pap Annual Selected Papers of The African Literature Association = Ann. Sel. Pap. Annual Series of European Research in Behavior Therapy = Ann S Eur R Annual Series of European Research in Behavior Therapy = Ann. S. Eur. R. Annual statistical supplement, ... to the Social security bulletin = Annu Stat Suppl Soc Secur Bull Annual survey of American law = Annu Surv Am Law Annual Symposia On Instrumentation in The Process Industries = Ann Symp In Annual Symposia On Instrumentation in The Process Industries = Ann. Symp. In. Annual Symposium On Foundations of Computer Science = Ann Ieee Symp Found Annual Symposium On Foundations of Computer Science = Ann. Ieee. Symp. Found. Annual Symposium On Foundations of Computer Science = An S Fdn Co Annual Symposium On Foundations of Computer Science = An. S. Fdn. Co. Annual Symposium On Incremental Motion Control Systems and Devices - Proceedings = Ann Sym Inc Annual Symposium On Incremental Motion Control Systems and Devices - Proceedings = Ann. Sym. Inc. Annual Symposium on Nursing Faculty Practice = Annu Symp Nurs Fac Pract Annual Symposium on Nursing Faculty Practice = Annu. Symp. Nurs. Fac. Pract. Annual Transactions of The Nordic Rheology Society = Ann T Nord Rheol Soc Annual Transactions of The Nordic Rheology Society = Ann. T. Nord. Rheol. Soc. Annual Transactions of The Nordic Rheology Society, Vol 3, 1995 = Ann T Nord Rheol Soc Annual Transactions of The Nordic Rheology Society, Vol 3, 1995 = Ann. T. Nord. Rheol. Soc. Annual Transactions of The Nordic Rheology Society, Vol 4, 1996 = Ann T Nord Rheol Soc Annual Transactions of The Nordic Rheology Society, Vol 4, 1996 = Ann. T. Nord. Rheol. Soc. Annual Update in Intensive Care and Emergency Medicine 2011 = Ann Upd Intens Care Annual Update in Intensive Care and Emergency Medicine 2011 = Ann. Upd. Intens. Care Annual Update in Intensive Care and Emergency Medicine = Ann Upd Intens Care Annual Update in Intensive Care and Emergency Medicine = Ann. Upd. Intens. Care Annual Work Bank Conference On Development Economics 1999 = Ann Wb Conf Dev Econ Annual Work Bank Conference On Development Economics 1999 = Ann. Wb. Conf. Dev. Econ. Annual Workshop On Computers in Power Electronics = Ann Worksh Comp Pow Annual Workshop On Computers in Power Electronics = Ann. Worksh. Comp. Pow. Annual Workshop On Formal Approaches to Slavic Linguistics = Mich Slav Mat Annual Workshop On Formal Approaches to Slavic Linguistics = Mich. Slav. Mat. Annual Workshop On Formal Approaches to Slavic Linguistics - The Ann Arbor Meeting: Functional Categories in Slavic Syntax = Mich Slav Mat Annual Workshop On Formal Approaches to Slavic Linguistics - The Ann Arbor Meeting: Functional Categories in Slavic Syntax = Mich. Slav. Mat. Annual World Bank Conference On Development Economics 1995 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 1995 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 1996 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 1996 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 1998 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 1998 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 2000 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 2000 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 2001/2002 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 2001/2002 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 2004 = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 2004 = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 2005: Lessons of Experience = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 2005: Lessons of Experience = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics 2006: Growth and Integration = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics 2006: Growth and Integration = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development Economics-regional 2007: Beyond Transition = Ann Wb Conf Dev Econ Annual World Bank Conference On Development Economics-regional 2007: Beyond Transition = Ann. Wb. Conf. Dev. Econ. Annual World Bank Conference On Development in Latin America and The Caribbean 1996: Poverty and Inequality = World B Lat Amer Car Annual World Bank Conference On Development in Latin America and The Caribbean 1996: Poverty and Inequality = World B. Lat. Amer. Car. Annua Nuntia Lovaniensia = Annu Nunt Lovanien Annua Nuntia Lovaniensia = Annu. Nunt. Lovanien. Annuario. Accademia etrusca di Cortona = AnnAcEtr Annuario bibliografico di archeologia. Modena = AnnBiblAModena Annuario bibliografico di archeologia. Nuove accessioni del \ldots. Biblioteca dell’Istituto nazionale di archeologia e storia dell’arte, Roma = AnnBiblARom Annuario del Ginnasio Liceo A. Volta di Como = AGLComo Annuario della Accademia delle scienze di Torino = AnnAcTorino Annuario della Accademia nazionale dei Lincei = AnnuarioAcLinc Annuario dell'Accademia etrusca di Cortona = AAEC Annuario della Pontificia accademia romana di archeologia = AnnPontAcRom Annuario della Scuola Archeologica di Atene a delle Missioni Italiane in Oriente = ASAA Annuario della Scuola archeologica di Atene e delle missioni italiane in Oriente = ASAtene Annuario. Istituto giapponese di cultura in Roma = AnnIstGiapp Annuario. Liceo-ginnasio statale G. Palmieri, Lecce = AnnuarioLecce Annuario statistico dell'assistenza e della previdenza sociale. Istituto centrale di statistica (Italy) = Annu Stat Assist Previd Soc Annuarium Historiae Conciliorum = AHC Anodos. Studies of Ancient World = Anodos Anomalous Diffusion: From Basics to Applications = Lect Notes Phys Anomalous Diffusion: From Basics to Applications = Lect. Notes. Phys. Anomalous Magnetic Moment of The Muon = Springer Tr Mod Phys Anomalous Magnetic Moment of The Muon = Springer. Tr. Mod. Phys. Anomalous Nuclear Effects in Deuterium / Solid Systems = Aip Conf Proc Anomalous Nuclear Effects in Deuterium / Solid Systems = Aip. Conf. Proc. Anomalous X-ray Scattering for Materials Characterization: Atomic-scale Structure Determination = Springer Tr Mod Phys Anomalous X-ray Scattering for Materials Characterization: Atomic-scale Structure Determination = Springer. Tr. Mod. Phys. Anomeric Effect and Associated Stereoelectronic Effects = Acs Sym Ser Anomeric Effect and Associated Stereoelectronic Effects = Acs. Sym. Ser. An Optical Believe It Or Not: Key Lessons Learned Ii = P Soc Photo-opt Ins An Optical Believe It Or Not: Key Lessons Learned Ii = P. Soc. Photo-opt. Ins. Anotaciones pediatricas = Anot Pediatr Another Europe: Conceptions and Practices of Democracy in The European Social Forums = Routl Ecpr Stud Eur Another Europe: Conceptions and Practices of Democracy in The European Social Forums = Routl. Ecpr. Stud. Eur. An Overview of Genetic Factors and Environmental Triggers in The Pathogenesis of Tourette's Syndrome = Neurosci Res Prog Se An Overview of Genetic Factors and Environmental Triggers in The Pathogenesis of Tourette's Syndrome = Neurosci. Res. Prog. Se. Anpassungsmoglichkeiten Der Deutschen Rindermast An Die Liberalisierung Der Agrarmarkte = Landbauforsch-vti Ag Anpassungsmoglichkeiten Der Deutschen Rindermast An Die Liberalisierung Der Agrarmarkte = Landbauforsch-vti. Ag. ANPHI papers = ANPHI Pap ANPHI Papers = ANPHI Pap. ANQ = ANQ Anq-a Quarterly Journal of Short Articles Notes and Reviews = Anq-q J Short Art N Anq-a Quarterly Journal of Short Articles Notes and Reviews = Anq-q. J. Short Art. N. Ans. Advances In Nursing Science=ANS Adv Nurs Sci;; ANS. Advances in nursing science = ANS Adv Nurs Sci ANS: Advances in Nursing Science = ANS Adv. Nurs. Sci. Ans Proceedings : 1989 National Heat Transfer Conference = Ans Proc Ans Proceedings : 1989 National Heat Transfer Conference = Ans Proc. Ans Proceedings = Ans Proc Ans Proceedings = Ans Proc. Anspruch Und Rechtfertigung = Phaenomenologica Anspruch Und Rechtfertigung = Phaenomenologica. Anspruch Und Tendenzen in Der Experimentellen Strukturmechanik = Vdi Bericht Anspruch Und Tendenzen in Der Experimentellen Strukturmechanik = Vdi. Bericht. Antaeus = Antaeus Antaeus. Communicationes ex Instituto archaeologico Academiae scientiarum hungaricae = Antaeus Antaios = Antaios Antarctica and Global Climatic Change = Polar Res S Antarctica and Global Climatic Change = Polar. Res. S. Antarctica: Global, Environmental and Economic Issues = Arct Reg Antarct Iss Antarctica: Global, Environmental and Economic Issues = Arct. Reg. Antarct. Iss. Antarctic and Arctic Middle Atmospheres: Their Differences and Similarities = Adv Space Res Antarctic and Arctic Middle Atmospheres: Their Differences and Similarities = Adv. Space. Res. Antarctic Environment and International Law = Int Env Law Antarctic Environment and International Law = Int. Env. Law Antarctic Journal of The United States = Antarct J Us Antarctic Journal of The United States = Antarct. J. Us. Antarctic Journal of The United States = Antarct J U S Antarctic Journal of The United States = Antarct. J. U. S. Antarctic journal of the United States / National Science Foundation = Antarct J US Antarctic Paleoenvironment: A Perspective On Global Change, Pt 2 = Antar Res S Antarctic Paleoenvironment: A Perspective On Global Change, Pt 2 = Antar. Res. S. Antarctic Peninsula Climate Variability: Historical and Paleoenvironmental Perspectives = Antarct Res Ser Antarctic Peninsula Climate Variability: Historical and Paleoenvironmental Perspectives = Antarct. Res. Ser. Antarctic Research Series = Antarct Res Ser Antarctic Research Series = Antarct. Res. Ser. Antarctic Research Series = Antar Res S Antarctic Research Series = Antar. Res. S. Antarctic Science = Antarct Sci Antarctic Science = Antarct. Sci. Antarctic science / Blackwell Scientific Publications = Antarct Sci Antarctic Stratigraphic Drilling: Cape Roberts Project = Misc S Rsnz Antarctic Stratigraphic Drilling: Cape Roberts Project = Misc. S. Rsnz. Antartic Subglacial Aquatic Environments = Geophys Monogr Ser Antartic Subglacial Aquatic Environments = Geophys. Monogr. Ser. Ant Colony Optimization and Swarm Intelligence, Proceedings = Lect Notes Comput Sc Ant Colony Optimization and Swarm Intelligence, Proceedings = Lect. Notes. Comput. Sc. Antebellum Slave Narratives = Stud Am Popul Hist C Antebellum Slave Narratives = Stud. Am. Popul. Hist. C. Antec 93 : Be in That Number, Vols 1-3 = Soc Plast E Antec 93 : Be in That Number, Vols 1-3 = Soc. Plast. E. Antec '96: Plastics - Racing Into The Future, Vols I-iii = Soc Plast E Antec '96: Plastics - Racing Into The Future, Vols I-iii = Soc. Plast. E. Anterior Cruciate Ligament (acl): Causes of Injury, Adverse Effects and Treatment Options = Muscular Syst-anat F Anterior Cruciate Ligament (acl): Causes of Injury, Adverse Effects and Treatment Options = Muscular. Syst-anat. F. Anthologies of British Poetry = Int For Lit Anthologies of British Poetry = Int. For. Lit. Anthology of Statistics in Sports = Asa Siam Ser Stat Ap Anthology of Statistics in Sports = Asa. Siam. Ser. Stat. Ap. Anthracycline Antibiotics = Acs Sym Ser Anthracycline Antibiotics = Acs. Sym. Ser. Anthracycline Chemistry and Biology I: Biological Occurence and Biosynthesis, Synthesis and Chemistry = Top Curr Chem Anthracycline Chemistry and Biology I: Biological Occurence and Biosynthesis, Synthesis and Chemistry = Top. Curr. Chem. Anthracycline Chemistry and Biology Ii: Mode of Action, Clinical Aspects and New Drugs = Top Curr Chem Anthracycline Chemistry and Biology Ii: Mode of Action, Clinical Aspects and New Drugs = Top. Curr. Chem. Anthrax = Curr Top Microbiol Anthrax = Curr. Top. Microbiol. Anthropologia = Anthropologia Anthropologiai kozlemenyek = Anthropol Kozl Anthropologiai Kozlemenyek-anthropological Communications = Anthropol Kozlem Anthropologiai Kozlemenyek-anthropological Communications = Anthropol. Kozlem. Anthropologica = Anthropologica Anthropological Forum = Anthropol Forum Anthropological Forum = Anthropol. Forum Anthropological Journal of Canada = Anthropol J Can Anthropological Journal of Canada = Anthropol. J. Can. Anthropological Linguistics = Anthropol Linguist Anthropological Linguistics = Anthropol. Linguist. Anthropological Notebooks = Anthropol Noteb Anthropological Notebooks = Anthropol. Noteb. Anthropological Papers = Anthr Paper Anthropological Papers = Anthr. Paper. Anthropological Papers of The American Museum of Natural History = Anthropol Pap Am Mus Anthropological Papers of The American Museum of Natural History = Anthropol. Pap. Am. Mus. Anthropological papers of the American Museum of Natural History = Anthropol Pap Am Mus Nat Hist Anthropological Papers of The Museum of Anthropology of The University Michigan = Anthropol Pap U Mich Anthropological Papers of The Museum of Anthropology of The University Michigan = Anthropol. Pap. U. Mich. Anthropological Perspectives On Local Development = Euro Assoc Social Anthropological Perspectives On Local Development = Euro. Assoc. Social. Anthropological Perspectives On Technology = Am Fdn N W Anthropological Perspectives On Technology = Am. Fdn. N. W. Anthropological quarterly = Anthropol Q Anthropological Quarterly = Anthropol Quart Anthropological Quarterly = Anthropol. Quart. Anthropological Science = Anthropol Sci Anthropological Science = Anthropol. Sci. Anthropological science : journal of the Anthropological Society of Nippon = Jinruigaku zasshi|Anthropol. Sci. Anthropological Theory = Anthropol Theor Anthropological Theory = Anthropol. Theor. Anthropologie = Anthropologie Anthropologie et societes = Anthropol Soc Anthropologies of Art = Clark Stud Vis Arts Anthropologies of Art = Clark. Stud. Vis. Arts. Anthropologiques = Anthropologiques Anthropologische Asthetik: Philosophie, Psychologie Und Asthetische Theorie Der Emotionen Im Diskurs Der Aufklarung = Hallesche Beitr Eur Anthropologische Asthetik: Philosophie, Psychologie Und Asthetische Theorie Der Emotionen Im Diskurs Der Aufklarung = Hallesche. Beitr. Eur. Anthropologische Differenz = Quellen Stud Philos Anthropologische Differenz = Quellen. Stud. Philos. Anthropologischer Anzeiger=Anthropol Anz;; Anthropologischer Anzeiger = Anthropol Anz Anthropologischer Anzeiger = Anthropol. Anz. Anthropologischer Anzeiger; Bericht uber die biologisch-anthropologische Literatur = Anthropol Anz Anthropology and Archeology of Eurasia = Anthr Archeol Euras Anthropology and Archeology of Eurasia = Anthr. Archeol. Euras. Anthropology & archeology of Eurasia = Anthropol Archeol Eurasia Anthropology, Culture and Society = Anthropol Cult Soc Anthropology, Culture and Society = Anthropol. Cult. Soc. Anthropology & education quarterly = Anthropol Educ Q Anthropology & Education Quarterly = Anthropol Educ Quart Anthropology & Education Quarterly = Anthropol. Educ. Quart. Anthropology History and The Critical Imagination = Anthr Hist Crit Imag Anthropology History and The Critical Imagination = Anthr. Hist. Crit. Imag. Anthropology of Asia = Anthropol Asia Anthropology of Asia = Anthropol. Asia Anthropology of Lower Income Urban Enclaves = Ann Ny Acad Sci Anthropology of Lower Income Urban Enclaves = Ann. Ny. Acad. Sci. Anthropology of work review : AWR = Anthropol Work Rev Anthropology Southern Africa = Anthropol South Afr Anthropology Southern Africa = Anthropol. South. Afr. Anthropology today = Anthropol Today Anthropology Ucla = Anthropology-ucla Anthropology Ucla = Anthropology-ucla. Anthropology U.C.L.A = Anthropol UCLA Anthropos = Anthropos Anthropos Today: Reflections On Modern Equipment = In-formation Anthropos Today: Reflections On Modern Equipment = In-formation. Anthropotes / Istituto Giovanni Paolo II per studi su matrimonio e famiglia = Anthropotes Anthroquest : the L.S.B. Leakey Foundation news = Anthroquest Anthrozoos = Anthrozoos Antibiotica = Antibiotica Antibiotica Et Chemotherapia = Antibiot Chemother Antibiotica Et Chemotherapia = Antibiot. Chemother. Antibiotica et chemotherapia. Fortschritte. Advances. Progres = Antibiot Chemother Antibiotica. Quaderni = Antibiotica. [Quad.] Antibiotic medicine & clinical therapy = Antibiotic Med Clin Ther Antibiotic Policy in The Western Pacific: The Next Decade? = Res Clin Forums Antibiotic Policy in The Western Pacific: The Next Decade? = Res. Clin. Forums. Antibiotic Resistance: Causes and Risk Factors Mechanisms and Alternatives = Pharm Res Saf Test Antibiotic Resistance: Causes and Risk Factors Mechanisms and Alternatives = Pharm. Res. Saf. Test. Antibiotic Resistance: Origins, Evolution, Selection and Spread = Ciba F Symp Antibiotic Resistance: Origins, Evolution, Selection and Spread = Ciba. F. Symp. Antibiotic Resistance Protocols, Second Edition = Methods Mol Biol Antibiotic Resistance Protocols, Second Edition = Methods. Mol. Biol. Antibiotics and chemotherapy = Antibiot Chemother Antibiotics and Chemotherapy=Antibiot Chemother;; Antibiotics and Chemotherapy = Antibiot Chemother Antibiotics and Chemotherapy = Antibiot. Chemother. Antibiotics annual = Antibiot Annu Antibiotiki = Antibiotiki Antibiotiki = Antibiot Med Biotek Antibiotiki = Antibiot. Med. Biotek. Antibiotiki i Khimioterapiia = Antibiot. Khimioter. Antibiotiki I Khimioterapiia=Antibiot Khimioter;; Antibiotiki i Khimioterapiya = Antibiot. Khimioter. Antibiotiki I Khimioterapiya = Antibiot Khimioterap Antibiotiki I Khimioterapiya = Antibiot. Khimioterap. Antibiotiki i Meditsinskaia Biotekhnologiia = Antibiot. Med. Biotekhnol. Antibiotiki I Meditsinskaya Biotekhnologiya = Antibiot Med Biotek Antibiotiki I Meditsinskaya Biotekhnologiya = Antibiot. Med. Biotek. Antibiotiques = Antibiotiques Antibodies in Viral Infection = Curr Top Microbiol Antibodies in Viral Infection = Curr. Top. Microbiol. Antibody Engineering = Chem Immunol Antibody Engineering = Chem. Immunol. Antibody Expression and Engineering = Acs Sym Ser Antibody Expression and Engineering = Acs. Sym. Ser. Antibody Immunoconjugates and Radiopharmaceuticals = Antibody Immunoconj Antibody Immunoconjugates and Radiopharmaceuticals = Antibody Immunoconj. Antibody Phage Display: Methods and Protocols, Second Edition = Methods Mol Biol Antibody Phage Display: Methods and Protocols, Second Edition = Methods Mol. Biol. Anti-cancer Agents in Medicinal Chemistry = Anti-cancer Agent Me Anti-cancer Agents in Medicinal Chemistry = Anti-cancer Agent. Me. Anti-cancer agents in medicinal chemistry = Anticancer Agents Med Chem Anti-Cancer Agents in Medicinal Chemistry = Anticancer Agents Med. Chem. Anti-Cancer Agents in Medicinal Chemistry = Anti-Cancer Agents Med. Chem. Anti-cancer drug design = Anticancer Drug Des Anti-cancer Drug Design = Anti-cancer Drug Des Anti-cancer Drug Design = Anti-cancer Drug Des. Anti-Cancer Drug Design=Anticancer Drug Des;; Anti-Cancer Drug Design = Anticancer. Drug Des. Anti-Cancer Drug Design = Anti-Cancer Drug Des. Anticancer Drug Discovery and Development: Natural Products and New Molecular Models = Dev Oncol Anticancer Drug Discovery and Development: Natural Products and New Molecular Models = Dev. Oncol. Anti-cancer Drugs = Anti-cancer Drug Anti-cancer Drugs = Anti-cancer Drug. Anti-cancer drugs = Anticancer Drugs Anti-Cancer Drugs=Anticancer Drugs;; Anti-Cancer Drugs = Anticancer. Drugs Anti-Cancer Drugs = Anti-Cancer Drugs Anticancer Drugs = Colloq Inse Anticancer Drugs = Colloq. Inse. Anticancer Molecules: Structure, Function, and Design = Ann Ny Acad Sci Anticancer Molecules: Structure, Function, and Design = Ann. Ny. Acad. Sci. Anticancer research = Anticancer Res Anticancer Research=Anticancer Res;; Anticancer Research = Anticancer Res Anticancer Research = Anticancer Res. Antichità altoadriatiche = AAAD Antichità pisane = AntPisa Antichthon = Antichthon Antichthon. Journal of the Australian Society for Classical Studies = Antichthon Anticipating A Solar Probe = Adv Space Res Anticipating A Solar Probe = Adv. Space. Res. Anticipating A Solar Probe = Adv Space Res-series Anticipating A Solar Probe = Adv. Space. Res-series. Anticipation = Anticipation Anticipatory Behavior in Adaptive Learning Systems: Foundations, Theories, and Systems = Lect Notes Artif Int Anticipatory Behavior in Adaptive Learning Systems: Foundations, Theories, and Systems = Lect. Notes. Artif. Int. Anticipatory Behavior in Adaptive Learning Systems: From Brains to Individual and Social Behavior = Lect Notes Artif Int Anticipatory Behavior in Adaptive Learning Systems: From Brains to Individual and Social Behavior = Lect. Notes. Artif. Int. Anticipatory Behavior in Adaptive Learning Systems = Lect Notes Comput Sc Anticipatory Behavior in Adaptive Learning Systems = Lect. Notes. Comput. Sc. Anticipatory Optimization for Dynamic Decision Making = Oper Res Comput Sci Anticipatory Optimization for Dynamic Decision Making = Oper. Res. Comput. Sci. Anticnaja drevnost'i srednije veka (L'antiquité et le Moyen Âge) = ADSV Anticnyj mir i arkheologija (Le monde antique et l'archéologie) = AMA Anticoagulants, Antiplatelets, and Thrombolytics, Second Edition = Methods Mol Biol Anticoagulants, Antiplatelets, and Thrombolytics, Second Edition = Methods. Mol. Biol. Anticommunism and The African American Freedom Movement : Another Side of The Story = Contemp Black Hist Anticommunism and The African American Freedom Movement : Another Side of The Story = Contemp. Black. Hist. Anticonvulsants in Psychiatry = Roy S Med S Anticonvulsants in Psychiatry = Roy. S. Med. S. Anti-corrosion = Anti-corros Anti-corrosion = Anti-corros. Anti-corrosion Methods and Materials = Anti-corros Method M Anti-corrosion Methods and Materials = Anti-corros. Method. M. Anti-counterfeit Image Analysis Methods (a Special Session of Icsxii) = J Phys Conf Ser Anti-counterfeit Image Analysis Methods (a Special Session of Icsxii) = J. Phys. Conf. Ser. Antidepressants Therapy and Risk of Suicide Among Patients With Major Depressive Disorders = Psychiat Theor Appl Antidepressants Therapy and Risk of Suicide Among Patients With Major Depressive Disorders = Psychiat. Theor. Appl. Antiek = Antiek Antiepileptic Drugs: Mechanism, Modalities and Clinical Benefits = Roy Soc Med Int Cong Antiepileptic Drugs: Mechanism, Modalities and Clinical Benefits = Roy. Soc. Med. Int. Cong. Antigen and Antibody Molecular Engineering in Breast Cancer Diagnosis and Treatment = Adv Exp Med Biol Antigen and Antibody Molecular Engineering in Breast Cancer Diagnosis and Treatment = Adv. Exp. Med. Biol. Antigen and Clone-specific Immunoregulation = Ann Ny Acad Sci Antigen and Clone-specific Immunoregulation = Ann. Ny. Acad. Sci. Antigen Binding Molecules: Antibodies and T-cell Receptors = Adv Protein Chem Antigen Binding Molecules: Antibodies and T-cell Receptors = Adv. Protein. Chem. Antigen Depository of The Immune System: Follicular Dendritic Cells = Curr Top Microbiol Antigen Depository of The Immune System: Follicular Dendritic Cells = Curr. Top. Microbiol. Antigen Presentation = Curr Top Microbiol Antigen Presentation = Curr. Top. Microbiol. Antigonish Review = Antigonish Rev Antigonish Review = Antigonish Rev. Antigüedad y cristianismo. Monografías históricas sobre la antigüedad tardía = AntigCr Anti-hero in The American Novel: From Joseph Heller to Kurt Vonnegut = Am Lit Read Twenty-f Anti-hero in The American Novel: From Joseph Heller to Kurt Vonnegut = Am. Lit. Read. Twenty-f. Antihormones in Health and Disease = Front Horm Res Antihormones in Health and Disease = Front. Horm. Res. Anti-Infective Agents in Medicinal Chemistry = Anti-Infect. Agents Med. Chem. Anti-Inflammatory & Anti-Allergy Agents in Medicinal Chemistry = Anti-Inflammatory Anti-Allergy Agents Med. Chem. Anti-italianism: Essays On A Prejudice = Ital Ital Am Stud Anti-italianism: Essays On A Prejudice = Ital. Ital. Am. Stud. Antike Denkmäler = AD Antike Gemmen in deutschen Sammlungen = AGD Antike Kunst = AntK Antike Kunst, hrsg. von der Vereiningung der Freunde antiker Kunst = AK Antike Münzen und geschnittene Steine = AMuGS Antike Plastik = AntPl Antike Und Abendland = Antike Abendland Antike und Abendland = AuA Antike und Abendland: Beiträge zum Verständnis der Griechen und Römer und ihre Nachlebens = A&A Antike und Christentum = AntChr Antike Welt = Antike Welt Antike Welt = AW Antike Welt. Zeitschrift für Archäologie und Kulturgeschichte = AW Antimalarial Drugs: Costs, Safety and Efficacy = Trop Dis-etiol Patho Antimalarial Drugs: Costs, Safety and Efficacy = Trop. Dis-etiol. Patho. Antimicrobial Agents and Chemotherapy = Antimicrob Agents Ch Antimicrobial Agents and Chemotherapy = Antimicrob. Agents Ch. Antimicrobial Agents and Chemotherapy=Antimicrob Agents Chemother;; Antimicrobial Agents and Chemotherapy = Antimicrob. Agents Chemother. Antimicrobial agents and chemotherapy = Antimicrobial Agents Chemother (Bethesda) Antimicrobial Drug Resistance, Vol 1: Mechanisms of Drug Resistance = Infect Dis Antimicrobial Drug Resistance, Vol 1: Mechanisms of Drug Resistance = Infect. Dis. Antimicrobial Drug Resistance, Vol 2: Clinical and Epidemiological Aspects = Infect Dis Antimicrobial Drug Resistance, Vol 2: Clinical and Epidemiological Aspects = Infect. Dis. Antimicrobial Peptides and Human Disease = Curr Top Microbiol Antimicrobial Peptides and Human Disease = Curr. Top. Microbiol. Antimicrobial Peptides = Ciba F Symp Antimicrobial Peptides = Ciba. F. Symp. Antimicrobial Peptides: Discovery, Design and Novel Therapeutic Strategies = Adv M C M Antimicrobial Peptides: Discovery, Design and Novel Therapeutic Strategies = Adv. M. C. M. Antimicrobial Peptides: Methods and Protocols = Methods Mol Biol Antimicrobial Peptides: Methods and Protocols = Methods Mol. Biol. Antimicrobial Resistance = Adv Exp Med Biol Antimicrobial Resistance = Adv. Exp. Med. Biol. Antimicrobial Resistance: Beyond The Breakpoint = Issues Infect Dis Antimicrobial Resistance: Beyond The Breakpoint = Issues. Infect. Dis. Antimicrobial Resistance = Roy Soc Med Int Cong Antimicrobial Resistance = Roy. Soc. Med. Int. Cong. Antimicrobial Susceptibility Testing = Adv Exp Med Biol Antimicrobial Susceptibility Testing = Adv. Exp. Med. Biol. Antimicrobial Therapeutics Reviews = Ann Ny Acad Sci Antimicrobial Therapeutics Reviews = Ann. Ny. Acad. Sci. Antimutagenesis and Anticarcinogenesis Mechanisms Ii = Basic Life Sci Antimutagenesis and Anticarcinogenesis Mechanisms Ii = Basic. Life. Sci. Antimutagenesis and Anticarcinogenesis Mechanisms Iii = Basic Life Sci Antimutagenesis and Anticarcinogenesis Mechanisms Iii = Basic. Life. Sci. Antinutrients and Phytochemicals in Food = Acs Sym Ser Antinutrients and Phytochemicals in Food = Acs. Sym. Ser. Antioch Review = Antioch Rev Antioch Review = Antioch Rev. Antioquia medica = Antioquia Med Antioquia Medica = Antioquia Med. Antioxidant Measurement and Applications = Acs Sym Ser Antioxidant Measurement and Applications = Acs. Sym. Ser. Antioxidant Nutrients and Immune Functions = Adv Exp Med Biol Antioxidant Nutrients and Immune Functions = Adv. Exp. Med. Biol. Antioxidants and Redox Signalling = Antioxid. Redox. Signal. Antioxidants in Therapy and Preventive Medicine = Adv Exp Med Biol Antioxidants in Therapy and Preventive Medicine = Adv. Exp. Med. Biol. Antioxidants & Redox Signaling = Antioxid Redox Sign Antioxidants & Redox Signaling = Antioxid. Redox Sign. Antioxidants & redox signaling = Antioxid Redox Signal Antioxidants & Redox Signaling = Antioxid. Redox Signaling Antipode = Antipode Antipolis. A Journal of Mediterranean Archaeology = Antipolis Antiproton-nucleon and Antiproton-nucleus Interactions = E Maj Int S Antiproton-nucleon and Antiproton-nucleus Interactions = E. Maj. Int. S. Antiqua = Antiqua Antiquarianism, Hagiography and History in The 17th Century = Fruhe Neuzeit-stud D Antiquarianism, Hagiography and History in The 17th Century = Fruhe. Neuzeit-stud. D. Antiquaries Journal = Antiq J Antiquaries Journal = Antiq. J. Antiqua. Rivista dell'Archeoclub d'Italia = Antiqua Antiques = Antiques AntiqueWeek = Antiqueweek Antiquités africaines = AntAfr Antiquités africaines = AntAfr Antiquités nationales. Saint-Germain-en-Laye = AntNat Antiquité tardive. Revue internationale d'histoire et d'archéologie = AntTard Antiquity and Survival = AntSurv Antiquity = Antiquity Antiquity. A Quarterly Review of Archaeology = Antiquity Anti-seismic Measures On Water Supply = Water Supp Anti-seismic Measures On Water Supply = Water Supp. Antisemitism and Modernity = Routl Jew Stud Ser Antisemitism and Modernity = Routl. Jew. Stud. Ser. Antisense and Nucleic Acid Drug Development=Antisense Nucleic Acid Drug Dev;; Antisense and Nucleic Acid Drug Development = Antisense Nucleic Acid Drug Dev. Antisense & Nucleic Acid Drug Development = Antisense Nucleic A Antisense & Nucleic Acid Drug Development = Antisense Nucleic A. Antisense & nucleic acid drug development = Antisense Nucleic Acid Drug Dev Antisense research and development = Antisense Res Dev Antisense Research and Development = Antisense Res Dev Antisense Research and Development = Antisense Res. Dev. Antisense Strategies = Ann Ny Acad Sci Antisense Strategies = Ann. Ny. Acad. Sci. Antisense Technology, Pt A = Method Enzymol Antisense Technology, Pt A = Method. Enzymol. Antisense Technology, Pt B = Method Enzymol Antisense Technology, Pt B = Method. Enzymol. Anti-submarine Warfare in World War I: British Naval Aviation and The Defeat of The U-boats = Cass Ser Nav Policy Anti-submarine Warfare in World War I: British Naval Aviation and The Defeat of The U-boats = Cass. Ser. Nav. Policy. Antiterrorism and Homeland Defense: Polymers and Materials = Acs Sym Ser Antiterrorism and Homeland Defense: Polymers and Materials = Acs. Sym. Ser. Antiterrorist Emergency Ventilation: System, Strategy and Decision-making = Terror Hot Spots Con Antiterrorist Emergency Ventilation: System, Strategy and Decision-making = Terror. Hot. Spots. Con. Antitrust Bulletin=Antitrust Bull. Antitrust Law and Economics Review=Antitrust Law Econ. Antitrust Law Journal = Antitrust Law J Antitrust Law Journal = Antitrust Law J. Antitrust Modernization = Laws Legis Antitrust Modernization = Laws. Legis. Anti-vegf = Dev Ophthalmol Anti-vegf = Dev. Ophthalmol. Antiviral Chemistry and Chemotherapy = Antiviral Chem. Chemother. Antiviral Chemistry and Chemotherapy = Antivir. Chem. Chemother. Antiviral Chemistry & Chemotherapy = Antiviral Chem. Chemother. Antiviral Chemistry & Chemotherapy = Antivir Chem Chemoth Antiviral Chemistry & Chemotherapy = Antivir. Chem. Chemoth. Antiviral chemistry & chemotherapy = Antivir Chem Chemother Antiviral Chemotherapy 4 = Adv Exp Med Biol Antiviral Chemotherapy 4 = Adv. Exp. Med. Biol. Antiviral Chemotherapy 5 = Adv Exp Med Biol Antiviral Chemotherapy 5 = Adv. Exp. Med. Biol. Antiviral research = Antiviral Res Antiviral Research=Antiviral Res;; Antiviral Research = Antiviral Res. Antiviral Research = Antivir Res Antiviral Research = Antivir. Res. Antiviral Rnai: Concepts, Methods, and Applications = Methods Mol Biol Antiviral Rnai: Concepts, Methods, and Applications = Methods. Mol. Biol. Antiviral therapy = Antivir Ther Antiviral Therapy = Antivir Ther Antiviral Therapy = Antivir. Ther. Anti-war Activism: New Media and Protest in The Information Age = New Secur Chall Anti-war Activism: New Media and Protest in The Information Age = New Secur. Chall. Antonie van Leeuwenhoek = Antonie van Leeuwenhoek Antonie van Leeuwenhoek = Antonie Van Leeuwenhoek Antonie Van Leeuwenhoek=Antonie Van Leeuwenhoek;; Antonie Van Leeuwenhoek International Journal of General and Molecular Microbiology = Anton Leeuw Int J G Antonie Van Leeuwenhoek International Journal of General and Molecular Microbiology = Anton. Leeuw. Int. J. G. Antonie Van Leeuwenhoek Journal of Microbiology and Serology = Anton Van Lee J M S Antonie Van Leeuwenhoek Journal of Microbiology and Serology = Anton. Van Lee. J. M. S. Antonie Van Leeuwenhoek Journal of Microbiology = A Van Leeuw J Microb Antonie Van Leeuwenhoek Journal of Microbiology = A. Van Leeuw. J. Microb. Antonio Gramsci = Routl Crit Thinkers Antonio Gramsci = Routl. Crit. Thinkers. Antropologica = Antropologica Anuari de filologia, Secció D, Studia Graeca et Latina = AFB Anuari de Filologia (Universitat de Barcelona) = Anu. Filol. Univ. Barc. Anuario arqueológico de Andalucía = AnArqAnd Anuario Brasileiro de Odontologia = Anu. Bras. Odontol. Anuario Brasileiro De Odontologia = Anu Bras Odontol Anuario de estudios americanos = Anu Estud Am Anuario De Estudios Americanos = Anu Estud Am Anuario De Estudios Americanos = Anu. Estud. Am. Anuario de estudios Atlanticos = Anu Estud Atl Anuario de estudios centroamericanos = Anu Estud Centroam Anuario de estudios medievales = Anu Estud Mediev Anuario De Estudios Medievales = Anu Estud Mediev Anuario De Estudios Medievales = Anu. Estud. Mediev. Anuario De Historia De La Iglesia = Anu Hist Iglesia Anuario De Historia De La Iglesia = Anu. Hist. Iglesia Anuario de Historia del Derecho Español = AHDE Anuario Filosofico = Anu Filos Anuario Filosofico = Anu. Filos. Anuario indigenista = Anu Indig Anuarul Institutului de Istorie si Arheologie "A. D. Xenopol" Academia Republicii Socialiste Romania. Institutul de Istorie si Arheologie "A.D. Xenopol." = Anu Isnt Istor Arheol Xenopol ANU historical journal = ANU Hist J Anwendungsorientierte Statistik = Anwend.orientier. Stat. Anwendungstechnologie Aluminum = Vdi-buch Anwendungstechnologie Aluminum = Vdi-buch. Anwendung Von Rfid-systemen = Vdi-buch Anwendung Von Rfid-systemen = Vdi-buch. Anxiety and Substance Use Disorders: The Vicious Cycle of Comorbidity = Ser Anxiety Relat Di Anxiety and Substance Use Disorders: The Vicious Cycle of Comorbidity = Ser. Anxiety Relat. Di. Anxiety and The Heart = S Hlth Psyc Anxiety and The Heart = S. Hlth. Psyc. Anxiety = Anxiety Anxiety, Depression, and Emotion = Ser Affective Sci Anxiety, Depression, and Emotion = Ser. Affective. Sci. Anxiety Disorders: A Pocket Guide for Primary Care = Curr Clin Pract Anxiety Disorders: A Pocket Guide for Primary Care = Curr. Clin. Pract. Anxiety in Health Behaviors and Physical Illness = Ser Anxiety Relat Di Anxiety in Health Behaviors and Physical Illness = Ser. Anxiety Relat. Di. Anxiety : Neurobiology, Clinic and Therapeutic Perspectives = Colloq Inse Anxiety : Neurobiology, Clinic and Therapeutic Perspectives = Colloq. Inse. Anxiety = Otago Con S Anxiety = Otago. Con. S. Anxiety : Recent Developments in Cognitive, Psychophysiological, and Health Research = S Hlth Psyc Anxiety : Recent Developments in Cognitive, Psychophysiological, and Health Research = S. Hlth. Psyc. Anxiety Stress and Coping = Anxiety Stress Copin Anxiety Stress and Coping = Anxiety Stress Copin. Anxiety, stress, and coping = Anxiety Stress Coping Anzeiger der Österreichischen Akademie der Wissenschaften in Wien, Philos.-Hist. Klasse = AAWW Anzeiger fur die Altertumswissenschaft = Anz Altertwiss Anzeiger für die Altertumswissenschaft = AnzAW Anzeiger für die Altertumswissenschaft, hrsg. von der Österreichischen Humanistischen Gesellschaft = AAHG Anzeiger Fur Schadlingskunde-journal of Pest Science = Anz Schadl-j Pest Sc Anzeiger Fur Schadlingskunde-journal of Pest Science = Anz. Schadl-j. Pest Sc. Anzeiger Fur Schadlingskunde Pflanzenschutz Umweltschutz = Anz Schadlingskd Pfl Anzeiger Fur Schadlingskunde Pflanzenschutz Umweltschutz = Anz. Schadlingskd. Pfl. Anzeiger für Schädlingskunde, Pflanzenschutz, Umweltschutz = Anz. Schädl.kd. Pflanzenschutz Umweltschutz Anzeiger (Osterreichische Akademie der Wissenschaften. Philosophisch-Historische Klasse) = Anz Philol Hist Kl Osterr Akad Wiss Anzeiger. Österreichische Akademie der Wissenschaften, Philosophisch-Historische Klasse = AnzWien ANZHES journal. Australian and New Zealand History of Education Society = Anzhes J Anziam Journal = Anziam J Anziam Journal = Anziam J. Anz Journal of Surgery = Anz J Surg Anz Journal of Surgery = Anz J. Surg. ANZ journal of surgery = ANZ J Surg ANZ Journal of Surgery = ANZ J. Surg. Anzsog Monographs = Anzsog Monogr Anzsog Monographs = Anzsog Monogr. Aoa2010, 48th Academy of Aphasia Proceedings = Procd Soc Behv Aoa2010, 48th Academy of Aphasia Proceedings = Procd. Soc. Behv. Aoc 2002: Asia-pacific Optical and Wireless Communications; Applications of Broadband Optical and Wireless Networks = P Soc Photo-opt Ins Aoc 2002: Asia-pacific Optical and Wireless Communications; Applications of Broadband Optical and Wireless Networks = P. Soc. Photo-opt. Ins. AOHA = AOHA AOHA : a publication of the American Osteopathic Hospital Association = AOHA AOHA Progress = AOHA Prog. AOHA today = AOHA Today AOHA Today = AOHA Today Aorn Journal=AORN J;; AORN journal = AORN J AORN Journal = AORN J. Aorn Journal = Assoc Oper Room Nurs Aorn Journal = Assoc. Oper. Room. Nurs. Aortic Aneurysms: Pathogenesis and Treatment = Contemp Cardiol Aortic Aneurysms: Pathogenesis and Treatment = Contemp. Cardiol. Apa Decade of Behavior Volumes = Apa Decade Behav Vol Apa Decade of Behavior Volumes = Apa Decade Behav. Vol. Apcmbe 2008: 7th Asian-pacific Conference On Medical and Biological Engineering = Ifmbe Proc Apcmbe 2008: 7th Asian-pacific Conference On Medical and Biological Engineering = Ifmbe. Proc. Apcom Xxv 1995: Application of Computers and Operations Research in The Minerals Industries = Australas I Min Met Apcom Xxv 1995: Application of Computers and Operations Research in The Minerals Industries = Australas. I. Min. Met. Apc Proteins = Adv Exp Med Biol Apc Proteins = Adv. Exp. Med. Biol. Apctp-asean Workshop On Advanced Materials Science and Nanotechnology (amsn08) = J Phys Conf Ser Apctp-asean Workshop On Advanced Materials Science and Nanotechnology (amsn08) = J. Phys. Conf. Ser. APDI newsletter. United Nations Asian and Pacific Development Institute = APDI Newsl Apec 2001: Sixteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec 2001: Sixteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec 2002: Seventeenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 23 = Appl Power Elect Co Apec 2002: Seventeenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 23 = Appl. Power Elect. Co. Apec 2003: Eighteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec 2003: Eighteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec 2004: Nineteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl Power Elect Co Apec 2004: Nineteenth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl. Power Elect. Co. Apec 2005: Twentieth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl Power Elect Co Apec 2005: Twentieth Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl. Power Elect. Co. Apec 2006: Twenty-first Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl Power Elect Co Apec 2006: Twenty-first Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-3 = Appl. Power Elect. Co. Apec 2007: Twenty-second Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec 2007: Twenty-second Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec 2008: Twenty-third Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-4 = Appl Power Elect Co Apec 2008: Twenty-third Annual Ieee Applied Power Electronics Conference and Exposition, Vols 1-4 = Appl. Power Elect. Co. Apec 90 = Appl Power Elect Co Apec 90 = Appl. Power. Elect. Co. Apec 91 = Appl Power Elect Co Apec 91 = Appl. Power. Elect. Co. Apec 92 : Seventh Annual Applied Power Electronics Conference and Exposition = Appl Power Elect Co Apec 92 : Seventh Annual Applied Power Electronics Conference and Exposition = Appl. Power Elect. Co. Apec 93 : Eighth Annual Applied Power Electronics Conference and Exposition = Appl Power Elect Co Apec 93 : Eighth Annual Applied Power Electronics Conference and Exposition = Appl. Power Elect. Co. Apec '94 - Ninth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec '94 - Ninth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec '95 - Tenth Annual Applied Power Electronics Conference and Exposition, Conference Proceedings 1995, Vols 1 and 2 = Appl Power Elect Co Apec '95 - Tenth Annual Applied Power Electronics Conference and Exposition, Conference Proceedings 1995, Vols 1 and 2 = Appl. Power Elect. Co. Apec '96 - Eleventh Annual Applied Power Electronics Conference and Expositions, Vols 1 & 2, Conference Proceedings = Appl Power Elect Co Apec '96 - Eleventh Annual Applied Power Electronics Conference and Expositions, Vols 1 & 2, Conference Proceedings = Appl. Power Elect. Co. Apec '97 - Twelfth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec '97 - Twelfth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec '98 - Thirteenth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl Power Elect Co Apec '98 - Thirteenth Annual Applied Power Electronics Conference and Exposition, Vols 1 and 2 = Appl. Power Elect. Co. Apec'99: Fourteenth Annual Applied Power Electronics Conference and Exposition, Conference Proceedings, Vols 1 & 2 = Appl Power Elect Co Apec'99: Fourteenth Annual Applied Power Electronics Conference and Exposition, Conference Proceedings, Vols 1 & 2 = Appl. Power Elect. Co. A Pediatria; revista mensal de clinica, patologia e higiene infantil = Pediatria (Rio) Apeiron (Montreal, Quebec) = Apeiron Aperiodic Structures in Condensed Matter: Fundamentals and Applications = Condens Matt Phy-crc Aperiodic Structures in Condensed Matter: Fundamentals and Applications = Condens. Matt. Phy-crc. Aperture = Aperture Aperture Synthesis: Methods and Applications to Optical Astronomy = Astron Astrophys Lib Aperture Synthesis: Methods and Applications to Optical Astronomy = Astron. Astrophys. Lib. Apex = Apex Aphasia: Symptoms, Diagnosis and Treatment = Lang Linguist Ser Aphasia: Symptoms, Diagnosis and Treatment = Lang. Linguist. Ser. Aphasiology = Aphasiology Apheresis = Prog Clin Biol Res Apheresis = Prog. Clin. Biol. Res. Aphids in A New Millennium = Sci Update Aphids in A New Millennium = Sci. Update. APIC = APIC Apics 32nd International Conference Proceedings : Solutions for Progress = Lib Am Prod Apics 32nd International Conference Proceedings : Solutions for Progress = Lib. Am. Prod. Apics 34th International Conference Proceedings = Lib Am Prod Apics 34th International Conference Proceedings = Lib. Am. Prod. Apics 36th International Conference Proceedings = Ann Apics Apics 36th International Conference Proceedings = Ann. Apics Apics 37th International Conference Proceedings = Ann Apics Apics 37th International Conference Proceedings = Ann. Apics Apidologie = Apidologie Apl 89 Conference Proceedings = Apl Quote Quad Apl 89 Conference Proceedings = Apl Quote. Quad. Aplicacoes Da Ficologia: Anais Do Xi Congresso Brasileiro De Ficologia E Simposio Latino-americano Sobre Algas Nocivas = Mus Nac Ser Livros Aplicacoes Da Ficologia: Anais Do Xi Congresso Brasileiro De Ficologia E Simposio Latino-americano Sobre Algas Nocivas = Mus. Nac. Ser. Livros. Apl Quote Quad = Apl Quote Quad Apmc: 2008 Asia Pacific Microwave Conference (apmc 2008), Vols 1-5 = Asia Pacif Microwave Apmc: 2008 Asia Pacific Microwave Conference (apmc 2008), Vols 1-5 = Asia Pacif. Microwave APMIS : acta pathologica, microbiologica, et immunologica Scandinavica = APMIS Apmis = Apmis Apmis=APMIS;; APMIS = APMIS Apmis. Supplementum=APMIS Suppl;; APMIS. Supplementum = APMIS Suppl APMIS. Supplementum = APMIS. Suppl. Apoc 2001: Asia-pacific Optical and Wireless Communications, Metro and Access Networks = Proc Spie Apoc 2001: Asia-pacific Optical and Wireless Communications, Metro and Access Networks = Proc. Spie. Apoc 2001: Asia-pacific Optical and Wireless Communications, Metro and Access Networks = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications, Metro and Access Networks = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Fiber and Planar Waveguide Technology = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Fiber and Planar Waveguide Technology = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Network Design and Management = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Network Design and Management = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Networking = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Networking = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Switching and Optical Interconnection = Proc Spie Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Switching and Optical Interconnection = Proc. Spie. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Switching and Optical Interconnection = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Optical Switching and Optical Interconnection = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Optoelectronics, Materials, and Devices for Communications = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Optoelectronics, Materials, and Devices for Communications = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications, Passive Components and Transmission Systems = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications, Passive Components and Transmission Systems = P. Soc. Photo-opt. Ins. Apoc 2001: Asia-pacific Optical and Wireless Communications: Wireless and Mobile Communications = Proc Spie Apoc 2001: Asia-pacific Optical and Wireless Communications: Wireless and Mobile Communications = Proc. Spie. Apoc 2001: Asia-pacific Optical and Wireless Communications: Wireless and Mobile Communications = P Soc Photo-opt Ins Apoc 2001: Asia-pacific Optical and Wireless Communications: Wireless and Mobile Communications = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communication; Metro and Access Networks Ii = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communication; Metro and Access Networks Ii = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications; Materials and Devices for Optical and Wireless Communications = Proc Spie Apoc 2002: Asia-pacific Optical and Wireless Communications; Materials and Devices for Optical and Wireless Communications = Proc. Spie. Apoc 2002: Asia-pacific Optical and Wireless Communications; Materials and Devices for Optical and Wireless Communications = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications; Materials and Devices for Optical and Wireless Communications = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications; Network Design and Management = Proc Spie Apoc 2002: Asia-pacific Optical and Wireless Communications; Network Design and Management = Proc. Spie. Apoc 2002: Asia-pacific Optical and Wireless Communications; Network Design and Management = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications; Network Design and Management = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications, Optial Fiber and Planar Waveguide Technology Ii = Proc Spie Apoc 2002: Asia-pacific Optical and Wireless Communications, Optial Fiber and Planar Waveguide Technology Ii = Proc. Spie. Apoc 2002: Asia-pacific Optical and Wireless Communications, Optial Fiber and Planar Waveguide Technology Ii = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications, Optial Fiber and Planar Waveguide Technology Ii = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Components and Transmission Systems = Proc Spie Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Components and Transmission Systems = Proc. Spie. Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Components and Transmission Systems = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Components and Transmission Systems = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Networking Ii = Proc Spie Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Networking Ii = Proc. Spie. Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Networking Ii = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications; Optical Networking Ii = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications, Optical Switching and Optical Interconnection Ii = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications, Optical Switching and Optical Interconnection Ii = P. Soc. Photo-opt. Ins. Apoc 2002: Asia-pacific Optical and Wireless Communications; Wireless and Mobile Communications Ii = P Soc Photo-opt Ins Apoc 2002: Asia-pacific Optical and Wireless Communications; Wireless and Mobile Communications Ii = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Materials, Active Devices, and Optical Amplifiers, Pts 1 and 2 = Proc Spie Apoc 2003: Asia-pacific Optical and Wireless Communications; Materials, Active Devices, and Optical Amplifiers, Pts 1 and 2 = Proc. Spie. Apoc 2003: Asia-pacific Optical and Wireless Communications; Materials, Active Devices, and Optical Amplifiers, Pts 1 and 2 = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Materials, Active Devices, and Optical Amplifiers, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Mobile Service and Application = Proc Spie Apoc 2003: Asia-pacific Optical and Wireless Communications; Mobile Service and Application = Proc. Spie. Apoc 2003: Asia-pacific Optical and Wireless Communications; Mobile Service and Application = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Mobile Service and Application = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Network Architectures, Management, and Applications, Pts 1 and 2 = Proc Spie Apoc 2003: Asia-pacific Optical and Wireless Communications; Network Architectures, Management, and Applications, Pts 1 and 2 = Proc. Spie. Apoc 2003: Asia-pacific Optical and Wireless Communications; Network Architectures, Management, and Applications, Pts 1 and 2 = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Network Architectures, Management, and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Fibers and Passive Components = Proc Spie Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Fibers and Passive Components = Proc. Spie. Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Fibers and Passive Components = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Fibers and Passive Components = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Transmission, Switching, and Subsystems = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Optical Transmission, Switching, and Subsystems = P. Soc. Photo-opt. Ins. Apoc 2003: Asia-pacific Optical and Wireless Communications; Wireless Communications and Networks = Proc Spie Apoc 2003: Asia-pacific Optical and Wireless Communications; Wireless Communications and Networks = Proc. Spie. Apoc 2003: Asia-pacific Optical and Wireless Communications; Wireless Communications and Networks = P Soc Photo-opt Ins Apoc 2003: Asia-pacific Optical and Wireless Communications; Wireless Communications and Networks = P. Soc. Photo-opt. Ins. Apocalypse for The Church and for The World = Beih Z Neutest Wiss Apocalypse for The Church and for The World = Beih. Z. Neutest. Wiss. Apocalypse When? Calculating How Long The Human Race Will Survive = Cathol Stud Bioethic Apocalypse When? Calculating How Long The Human Race Will Survive = Cathol. Stud. Bioethic. Apocalyptic Time = St Hist Rel Apocalyptic Time = St. Hist. Rel. Apolipoprotein E Genotyping in Alzheimer's Disease = Ann Ny Acad Sci Apolipoprotein E Genotyping in Alzheimer's Disease = Ann. Ny. Acad. Sci. Apollo. Bolletino dei musei provinciali del Salernitano = Apollo Apollonia = Apollonia (Sydney) Apollonius De Perge, Coniques, Tome 2.2 = Sci Graeco-arab Apollonius De Perge, Coniques, Tome 2.2 = Sci. Graeco-arab. Apollonius De Perge, Coniques, Tome 4 = Sci Graeco-arab Apollonius De Perge, Coniques, Tome 4 = Sci. Graeco-arab. Apollonius De Perge, La Section Des Droites Selon Des Rapports = Sci Graeco-arab Apollonius De Perge, La Section Des Droites Selon Des Rapports = Sci. Graeco-arab. Apollo-the International Magazine for Collectors = Apollo Apollo-the International Magazine for Collectors = Apollo. Apollo-the International Magazine of Art and Antiques = Apollo Apollo-the International Magazine of Art and Antiques = Apollo. Apollo-the International Magazine of The Arts = Apollo Apollo-the International Magazine of The Arts = Apollo. Apollo. The International Magazine of the Arts = ApolloLond Apologetics of Evil: The Case of Iago = Princ Monogr Philos Apologetics of Evil: The Case of Iago = Princ. Monogr. Philos. Apoptosis : an international journal on programmed cell death = Apoptosis Apoptosis = Apoptosis Apoptosis: From Signaling Pathways to Therapeutic Tools = Ann Ny Acad Sci Apoptosis: From Signaling Pathways to Therapeutic Tools = Ann. Ny. Acad. Sci. Apoptosis = Method Enzymol Apoptosis = Method. Enzymol. Apoptosis: Methods and Protocols, Second Edition = Methods Mol Biol Apoptosis: Methods and Protocols, Second Edition = Methods Mol. Biol. Apoptosis = Mod Insights Dis Mol Apoptosis = Mod. Insights. Dis. Mol. Apoptosis = Pez Fdn Sym Apoptosis = Pez. Fdn. Sym. Aportaciones Matemáticas: Comunicaciones = Aportaciones Mat. Comun. Aportaciones Matemáticas: Notas de Investigación = Aportaciones Mat. Notas Investigación Aportaciones Matemáticas: Textos = Aportaciones Mat. Textos A Posteriori Estimates for Partial Differential Equations = Radon Ser Comput App A Posteriori Estimates for Partial Differential Equations = Radon. Ser. Comput. App. Apotheker und Kunst = Apoth Kunst Appalachian Journal = Appalachian J Appalachian Journal = Appalachian J. Appalachian journal = Appalach J Apparateelemente: Praxis Der Sicheren Auslegung = Vdi-buch Apparateelemente: Praxis Der Sicheren Auslegung = Vdi-buch. Apparitions and Miracles = Prob Hist R Apparitions and Miracles = Prob. Hist. R. Appearance Versus Reality = Mind Assoc Occas Ser Appearance Versus Reality = Mind. Assoc. Occas. Ser. Appetite and Nutritional Assessment = Nutr Diet Res Prog Appetite and Nutritional Assessment = Nutr. Diet. Res. Prog. Appetite=Appetite;; Appetite = Appetite Appita = Appita Appita = Appita J Appita = Appita J. Appita Journal = Appita J Appita Journal = Appita J. Appled Entomology and Zoology = Appl. Entomol. Zool. Applicable Algebra in Engineering, Communication and Computing = Appl. Algebra Eng. Commun. Comput. Applicable Algebra in Engineering, Communication and Computing = Appl. Algebra Engrg. Comm. Comput. Applicable Algebra in Engineering Communication and Computing = Appl Algebr Eng Comm Applicable Algebra in Engineering Communication and Computing = Appl. Algebr. Eng. Comm. Applicable Analysis and Discrete Mathematics = Appl Anal Discr Math Applicable Analysis and Discrete Mathematics = Appl. Anal. Discr. Math. Applicable analysis = Appl Anal Applicable Analysis = Appl. Anal. Applicable Analysis = Appl Anal Applicable Analysis = Appl. Anal. Application and Multidisciplinary Aspects of Wireless Sensor Networks: Concepts, Integration, and Case Studies = Comput Commun Netw S Application and Multidisciplinary Aspects of Wireless Sensor Networks: Concepts, Integration, and Case Studies = Comput. Commun. Netw. S. Application and Theory of Periodic Structures = P Soc Photo-opt Ins Application and Theory of Periodic Structures = P. Soc. Photo-opt. Ins. Application and Theory of Petri Nets 1995 = Lect Notes Comput Sc Application and Theory of Petri Nets 1995 = Lect. Notes. Comput. Sc. Application and Theory of Petri Nets 1997 = Lect Notes Comput Sc Application and Theory of Petri Nets 1997 = Lect. Notes. Comput. Sc. Application and Theory of Petri Nets 1998 = Lect Notes Comput Sc Application and Theory of Petri Nets 1998 = Lect. Notes. Comput. Sc. Application and Theory of Petri Nets 2000, Proceedings = Lect Notes Comput Sc Application and Theory of Petri Nets 2000, Proceedings = Lect. Notes. Comput. Sc. Application and Theory of The Petri Nets 1992 = Lect Notes Comput Sc Application and Theory of The Petri Nets 1992 = Lect. Notes. Comput. Sc. Application-driven Architecture Synthesis = Kluw S Vlsi Application-driven Architecture Synthesis = Kluw. S. Vlsi. Applicationes Mathematicae = Appl. Math. (Warsaw) Application of Accelerated Corrosion Tests to Service Life Prediction of Materials = Am Soc Test Mater Application of Accelerated Corrosion Tests to Service Life Prediction of Materials = Am. Soc. Test. Mater. Application of Accelerators in Research and Industry = Aip Conf Proc Application of Accelerators in Research and Industry = Aip. Conf. Proc. Application of Accelerators in Research and Industry - Proceedings of The Fourteenth International Conference, Pts 1 and 2 = Aip Conf Proc Application of Accelerators in Research and Industry - Proceedings of The Fourteenth International Conference, Pts 1 and 2 = Aip. Conf. Proc. Application of Accelerators in Research and Industry, Pts 1 and 2 = Aip Conf Proc Application of Accelerators in Research and Industry, Pts 1 and 2 = Aip. Conf. Proc. Application of Advanced Information Technologies: Effective Management of Natural Resources = Asae Publ Application of Advanced Information Technologies: Effective Management of Natural Resources = Asae. Publ. Application of Agricultural Analysis in Environmental Studies = Am Soc Test Mater Application of Agricultural Analysis in Environmental Studies = Am. Soc. Test. Mater. Application of Basic Science to Hematopoiesis and Treatment of Disease = Bris Myer C Application of Basic Science to Hematopoiesis and Treatment of Disease = Bris. Myer. C. Application of Charge Density Research to Chemistry and Drug Design = Nato Adv Sci I B-phy Application of Charge Density Research to Chemistry and Drug Design = Nato. Adv. Sci. I. B-phy. Application of Computerized Ec Soil Map and Climate Data = Agric S Cec Application of Computerized Ec Soil Map and Climate Data = Agric. S. Cec. Application of Demilitarized Gun and Rocket Propellants in Commercial Explosives = Nato Sci Ser Ii Math Application of Demilitarized Gun and Rocket Propellants in Commercial Explosives = Nato. Sci. Ser. Ii. Math. Application of Diatom Biofacies in Reconstructing The Evolution of Sedimentary Basins = Diatom Monogr Application of Diatom Biofacies in Reconstructing The Evolution of Sedimentary Basins = Diatom Monogr. Application of Geographic Information Systems in Hydrology and Water Resources Management = Iahs-aish P Application of Geographic Information Systems in Hydrology and Water Resources Management = Iahs-aish. P. Application of Geotechnical Principles in Pavement Engineering = Geotech Sp Application of Geotechnical Principles in Pavement Engineering = Geotech. Sp. Application of Lidar to Current Atmospheric Topics Ii = P Soc Photo-opt Ins Application of Lidar to Current Atmospheric Topics Ii = P. Soc. Photo-opt. Ins. Application of Lidar to Current Atmospheric Topics = P Soc Photo-opt Ins Application of Lidar to Current Atmospheric Topics = P. Soc. Photo-opt. Ins. Application of Mathematics in Technical and Natural Sciences = Aip Conf Proc Application of Mathematics in Technical and Natural Sciences = Aip. Conf. Proc. Application of Particle and Laser Beams in Materials Technology = Nato Adv Sci Inst Se Application of Particle and Laser Beams in Materials Technology = Nato. Adv. Sci. Inst. Se. Application of Phytotechnologies for Cleanup of Industrial, Agricultural, and Wastewater Contamination = Nato Sci Peace Secur Application of Phytotechnologies for Cleanup of Industrial, Agricultural, and Wastewater Contamination = Nato. Sci. Peace. Secur. Application of Scattering Methods to The Dynamics of Polymer Systems = Prog Coll Pol Sci S Application of Scattering Methods to The Dynamics of Polymer Systems = Prog. Coll. Pol. Sci. S. Application of Semiochemicals for Management of Bark Beetle Infestations-proceedings of An Informal Conference = Usda Interm Application of Semiochemicals for Management of Bark Beetle Infestations-proceedings of An Informal Conference = Usda. Interm. Application of Solution Protein Chemistry to Biotechnology = Protein Sci-crc Application of Solution Protein Chemistry to Biotechnology = Protein Sci-crc. Application of The Finite Element Method in Implant Dentistry = Adv Top Sci Tech Chi Application of The Finite Element Method in Implant Dentistry = Adv. Top. Sci. Tech. Chi. Application of Titanium Dioxide Photocatalysis to Construction Materials: State-of-the-art Report of The Rilem Technical Committee 194-tdp = Rilem State Art Rep Application of Titanium Dioxide Photocatalysis to Construction Materials: State-of-the-art Report of The Rilem Technical Committee 194-tdp = Rilem State. Art. Rep. Application of Tracers in Arid Zone Hydrology = Iahs-aish P Application of Tracers in Arid Zone Hydrology = Iahs-aish. P. Application of Tunable Diode and Other Infrared Sources for Atmospheric Studies and Industrial Processing Monitoring Ii = P Soc Photo-opt Ins Application of Tunable Diode and Other Infrared Sources for Atmospheric Studies and Industrial Processing Monitoring Ii = P. Soc. Photo-opt. Ins. Application of Tunable Diode and Other Infrared Sources for Atmospheric Studies and Industrial Process Monitoring = P Soc Photo-opt Ins Application of Tunable Diode and Other Infrared Sources for Atmospheric Studies and Industrial Process Monitoring = P. Soc. Photo-opt. Ins. Application of Vibrational Spectroscopy to Clay Minerals and Layered Double Hydroxides = Cms Work Lect Application of Vibrational Spectroscopy to Clay Minerals and Layered Double Hydroxides = Cms. Work. Lect. Applications and Applied Mathematics = Appl. Appl. Math. Applications and Computation of Orthogonal Polynomials = Int S Num M Applications and Computation of Orthogonal Polynomials = Int. S. Num. M. Applications and Innovations in Intelligent Systems Vii = Bcs Conf Series Applications and Innovations in Intelligent Systems Vii = Bcs. Conf. Series. Applications and Innovations in Intelligent Systems X = Bcs Conf Series Applications and Innovations in Intelligent Systems X = Bcs. Conf. Series. Applications and Innovations in Intelligent Systems Xiii = Bcs Conf Series Applications and Innovations in Intelligent Systems Xiii = Bcs. Conf. Series. Applications and Innovations in Intelligent Systems Xii, Proceedings = Bcs Conference S Applications and Innovations in Intelligent Systems Xii, Proceedings = Bcs. Conference. S. Applications and Innovations in Intelligent Systems Xi, Proceedings = Bcs Conference S Applications and Innovations in Intelligent Systems Xi, Proceedings = Bcs. Conference. S. Applications and Modelling in Learning and Teaching Mathematics = E H S Math Applications and Modelling in Learning and Teaching Mathematics = E. H. S. Math. Applications and Science in Soft Computing = Adv Soft Comp Applications and Science in Soft Computing = Adv. Soft Comp. Applications and Science of Artificial Neural Networks Iii = P Soc Photo-opt Ins Applications and Science of Artificial Neural Networks Iii = P. Soc. Photo-opt. Ins. Applications and Science of Artificial Neural Networks Ii = P Soc Photo-opt Ins Applications and Science of Artificial Neural Networks Ii = P. Soc. Photo-opt. Ins. Applications and Science of Artificial Neural Networks, Pts 1 and 2 = P Soc Photo-opt Ins Applications and Science of Artificial Neural Networks, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Applications and Science of Computational Intelligence Iii = Proc Spie Applications and Science of Computational Intelligence Iii = Proc. Spie. Applications and Science of Computational Intelligence Iii = P Soc Photo-opt Ins Applications and Science of Computational Intelligence Iii = P. Soc. Photo-opt. Ins. Applications and Science of Computational Intelligence Ii = Proc Spie Applications and Science of Computational Intelligence Ii = Proc. Spie. Applications and Science of Computational Intelligence Ii = P Soc Photo-opt Ins Applications and Science of Computational Intelligence Ii = P. Soc. Photo-opt. Ins. Applications and Science of Computational Intelligence Iv = Proc Spie Applications and Science of Computational Intelligence Iv = Proc. Spie. Applications and Science of Computational Intelligence Iv = P Soc Photo-opt Ins Applications and Science of Computational Intelligence Iv = P. Soc. Photo-opt. Ins. Applications and Science of Computational Intelligence = P Soc Photo-opt Ins Applications and Science of Computational Intelligence = P. Soc. Photo-opt. Ins. Applications and Science of Computational Intelligence V = P Soc Photo-opt Ins Applications and Science of Computational Intelligence V = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iii = Proc Spie Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iii = Proc. Spie. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iii = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iii = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Ii = Proc Spie Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Ii = Proc. Spie. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Ii = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Ii = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iv = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Iv = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Vi = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation Vi = P. Soc. Photo-opt. Ins. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation V = Proc Spie Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation V = Proc. Spie. Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation V = P Soc Photo-opt Ins Applications and Science of Neural Networks, Fuzzy Systems, and Evolutionary Computation V = P. Soc. Photo-opt. Ins. Applications and Theory of Petri Nets 2002 = Lect Notes Comput Sc Applications and Theory of Petri Nets 2002 = Lect. Notes. Comput. Sc. Applications and Theory of Petri Nets 2003, Proceedings = Lect Notes Comput Sc Applications and Theory of Petri Nets 2003, Proceedings = Lect. Notes. Comput. Sc. Applications and Theory of Petri Nets 2004, Proceedings = Lect Notes Comput Sc Applications and Theory of Petri Nets 2004, Proceedings = Lect. Notes. Comput. Sc. Applications and Theory of Petri Nets 2005, Proceedings = Lect Notes Comput Sc Applications and Theory of Petri Nets 2005, Proceedings = Lect. Notes. Comput. Sc. Applications and Theory of Petri Nets = Lect Notes Comput Sc Applications and Theory of Petri Nets = Lect. Notes. Comput. Sc. Applications and Theory of Petri Nets, Proceedings = Lect Notes Comput Sc Applications and Theory of Petri Nets, Proceedings = Lect. Notes. Comput. Sc. Applications for Natural Refrigerants = Refr Sci T Applications for Natural Refrigerants = Refr. Sci. T. Applications in Multicriteria Decision Making, Data Envelopment Analysis, and Finance = Appl Manag Sci Applications in Multicriteria Decision Making, Data Envelopment Analysis, and Finance = Appl. Manag. Sci. Applications in Parallel and Distributed Computing = Ifip Trans A Applications in Parallel and Distributed Computing = Ifip. Trans. A. Applications of Agent Technology in Traffic and Transportation = Ws So Ag Te Applications of Agent Technology in Traffic and Transportation = Ws. So. Ag. Te. Applications of Algebraic Geometry to Coding Theory, Physics and Computation = Nato Sci Ser Ii-math Applications of Algebraic Geometry to Coding Theory, Physics and Computation = Nato. Sci. Ser. Ii-math. Applications of Algebraic Geometry to Coding Theory, Physics and Computation = Nato Sci Ser Ii Math Applications of Algebraic Geometry to Coding Theory, Physics and Computation = Nato. Sci. Ser. Ii. Math. Applications of Analytic and Geometric Methods to Nonlinear Differential Equations = Nato Adv Sci I C-mat Applications of Analytic and Geometric Methods to Nonlinear Differential Equations = Nato. Adv. Sci. I. C-mat. Applications of Analytic and Geometric Methods to Nonlinear Differential Equations = Nato Adv Sci Inst Se Applications of Analytic and Geometric Methods to Nonlinear Differential Equations = Nato. Adv. Sci. Inst. Se. Applications of Artificial Intelligence 1993 : Knowledge-based Systems in Aerospace and Industry = P Soc Photo-opt Ins Applications of Artificial Intelligence 1993 : Knowledge-based Systems in Aerospace and Industry = P. Soc. Photo-opt. Ins. Applications of Artificial Intelligence 1993 : Machine Vision and Robotics = P Soc Photo-opt Ins Applications of Artificial Intelligence 1993 : Machine Vision and Robotics = P. Soc. Photo-opt. Ins. Applications of Artificial Intelligence in Finance and Economics = Adv Econometrics Applications of Artificial Intelligence in Finance and Economics = Adv. Econometrics. Applications of Artificial Intelligence Ix, Parts 1 & Ii = P Soc Photo-opt Ins Applications of Artificial Intelligence Ix, Parts 1 & Ii = P. Soc. Photo-opt. Ins. Applications of Artificial Intelligence X : Knowledge-based Systems = P Soc Photo-opt Ins Applications of Artificial Intelligence X : Knowledge-based Systems = P. Soc. Photo-opt. Ins. Applications of Artificial Intelligence X : Machine Vision and Robotics = P Soc Photo-opt Ins Applications of Artificial Intelligence X : Machine Vision and Robotics = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks Iii, Pts 1 and 2 = P Soc Photo-opt Ins Applications of Artificial Neural Networks Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks Ii, Pts 1 and 2 = P Soc Photo-opt Ins Applications of Artificial Neural Networks Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing Iii = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing Iii = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing Ii = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing Ii = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing Iv = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing Iv = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing Vii = Proc Spie Applications of Artificial Neural Networks in Image Processing Vii = Proc. Spie. Applications of Artificial Neural Networks in Image Processing Vii = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing Vii = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing Vi = Proc Spie Applications of Artificial Neural Networks in Image Processing Vi = Proc. Spie. Applications of Artificial Neural Networks in Image Processing Vi = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing Vi = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks in Image Processing V = P Soc Photo-opt Ins Applications of Artificial Neural Networks in Image Processing V = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks Iv = P Soc Photo-opt Ins Applications of Artificial Neural Networks Iv = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks = P Soc Photo-opt Ins Applications of Artificial Neural Networks = P. Soc. Photo-opt. Ins. Applications of Artificial Neural Networks V = P Soc Photo-opt Ins Applications of Artificial Neural Networks V = P. Soc. Photo-opt. Ins. Applications of Automation Technology in Fatigue and Fracture Testing and Analysis, Vol 4 = Am Soc Test Mater Applications of Automation Technology in Fatigue and Fracture Testing and Analysis, Vol 4 = Am. Soc. Test. Mater. Applications of Bioinformatics in Cancer Detection = Ann Ny Acad Sci Applications of Bioinformatics in Cancer Detection = Ann. Ny. Acad. Sci. Applications of Category Theory to Fuzzy Subsets = Theo Dec L Applications of Category Theory to Fuzzy Subsets = Theo. Dec. L. Applications of Chimeric Genes and Hybrid Proteins, Pt A = Method Enzymol Applications of Chimeric Genes and Hybrid Proteins, Pt A = Method. Enzymol. Applications of Chimeric Genes and Hybrid Proteins Pt B = Method Enzymol Applications of Chimeric Genes and Hybrid Proteins Pt B = Method. Enzymol. Applications of Chimeric Genes and Hybrid Proteins, Pt C = Method Enzymol Applications of Chimeric Genes and Hybrid Proteins, Pt C = Method. Enzymol. Applications of Cognitive Linguistics = Appl Cognit Ling Applications of Cognitive Linguistics = Appl. Cognit. Ling. Applications of Cognitive Linguistics = Appl Cogn Linguist Applications of Cognitive Linguistics = Appl. Cogn. Linguist. Applications of Combinatorics and Graph Theory to The Biological and Social Sciences = Ima V Math Applications of Combinatorics and Graph Theory to The Biological and Social Sciences = Ima. V. Math. Applications of Communications Theory = Appl. Commun. Theory Applications of Computational Intelligence in Biology: Current Trends and Open Problems = Stud Comput Intell Applications of Computational Intelligence in Biology: Current Trends and Open Problems = Stud. Comput. Intell. Applications of Computational Mechanics in Geotechnical Engineering V = Proc Monogr Eng Wate Applications of Computational Mechanics in Geotechnical Engineering V = Proc. Monogr. Eng. Wate. Applications of Computers and Operations Research in The Mineral Industry = Appl Comp O Applications of Computers and Operations Research in The Mineral Industry = Appl. Comp. O. Applications of Cryogenic Technology = Appl Cryog Applications of Cryogenic Technology = Appl. Cryog. Applications of Cryogenic Technology, Vol 10 = Appl Cryog Applications of Cryogenic Technology, Vol 10 = Appl. Cryog. Applications of Declarative Programming and Knowledge Management = Lect Notes Artif Int Applications of Declarative Programming and Knowledge Management = Lect. Notes. Artif. Int. Applications of Declarative Programming and Knowledge Management = Lect Notes Comput Sc Applications of Declarative Programming and Knowledge Management = Lect. Notes. Comput. Sc. Applications of Diamond Films and Related Materials = Mater Sci Monog Applications of Diamond Films and Related Materials = Mater. Sci. Monog. Applications of Digital Image Processing Xiii = P Soc Photo-opt Ins Applications of Digital Image Processing Xiii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xii = P Soc Photo-opt Ins Applications of Digital Image Processing Xii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xiv = P Soc Photo-opt Ins Applications of Digital Image Processing Xiv = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xix = P Soc Photo-opt Ins Applications of Digital Image Processing Xix = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xviii = P Soc Photo-opt Ins Applications of Digital Image Processing Xviii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xvii = P Soc Photo-opt Ins Applications of Digital Image Processing Xvii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xvi = P Soc Photo-opt Ins Applications of Digital Image Processing Xvi = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xv = P Soc Photo-opt Ins Applications of Digital Image Processing Xv = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxiii = P Soc Photo-opt Ins Applications of Digital Image Processing Xxiii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxii = Proc Spie Applications of Digital Image Processing Xxii = Proc. Spie. Applications of Digital Image Processing Xxii = P Soc Photo-opt Ins Applications of Digital Image Processing Xxii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxi = P Soc Photo-opt Ins Applications of Digital Image Processing Xxi = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxiv = Proc Spie Applications of Digital Image Processing Xxiv = Proc. Spie. Applications of Digital Image Processing Xxiv = P Soc Photo-opt Ins Applications of Digital Image Processing Xxiv = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxix = Proc Spie Applications of Digital Image Processing Xxix = Proc. Spie. Applications of Digital Image Processing Xxix = P Soc Photo-opt Ins Applications of Digital Image Processing Xxix = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xx = P Soc Photo-opt Ins Applications of Digital Image Processing Xx = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxvii, Pts 1and 2 = Proc Spie Applications of Digital Image Processing Xxvii, Pts 1and 2 = Proc. Spie. Applications of Digital Image Processing Xxvii, Pts 1and 2 = P Soc Photo-opt Ins Applications of Digital Image Processing Xxvii, Pts 1and 2 = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxvi = Proc Spie Applications of Digital Image Processing Xxvi = Proc. Spie. Applications of Digital Image Processing Xxvi = P Soc Photo-opt Ins Applications of Digital Image Processing Xxvi = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxv = Proc Spie Applications of Digital Image Processing Xxv = Proc. Spie. Applications of Digital Image Processing Xxv = P Soc Photo-opt Ins Applications of Digital Image Processing Xxv = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxxiii = Proc Spie Applications of Digital Image Processing Xxxiii = Proc. Spie. Applications of Digital Image Processing Xxxiii = P Soc Photo-opt Ins Applications of Digital Image Processing Xxxiii = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxxi = P Soc Photo-opt Ins Applications of Digital Image Processing Xxxi = P. Soc. Photo-opt. Ins. Applications of Digital Image Processing Xxx, Pts 1 and 2 = Proc Spie Applications of Digital Image Processing Xxx, Pts 1 and 2 = Proc. Spie. Applications of Digital Image Processing Xxx, Pts 1 and 2 = P Soc Photo-opt Ins Applications of Digital Image Processing Xxx, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Applications of Digital Techniques in Industrial Design Engineering-caid&cd' 2005 = I C Comp Aid Des Con Applications of Digital Techniques in Industrial Design Engineering-caid&cd' 2005 = I. C. Comp. Aid. Des. Con. Applications of Ecosystem Management = Usda Pac Nw Applications of Ecosystem Management = Usda. Pac. Nw. Applications of Electronic Imaging = Crit Rev Op Applications of Electronic Imaging = Crit. Rev. Op. Applications of Electrospun Nanofiber Membranes for Bioseparations = Nanotechnol Sci Tech Applications of Electrospun Nanofiber Membranes for Bioseparations = Nanotechnol. Sci. Tech. Applications of Emerging Technologies in Transportation = Transport Res Rec Applications of Emerging Technologies in Transportation = Transport. Res. Rec. Applications of Enzymes Biotechnology = Ind Univ C Applications of Enzymes Biotechnology = Ind. Univ. C. Applications of Enzymes to Lignocellulosics = Acs Sym Ser Applications of Enzymes to Lignocellulosics = Acs. Sym. Ser. Applications of Evolutionary Computation in Chemistry = Struct Bond Applications of Evolutionary Computation in Chemistry = Struct. Bond. Applications of Evolutionary Computation, Pt Ii, Proceedings = Lect Notes Comput Sc Applications of Evolutionary Computation, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Applications of Evolutionary Computation, Pt I, Proceedings = Lect Notes Comput Sc Applications of Evolutionary Computation, Pt I, Proceedings = Lect. Notes. Comput. Sc. Applications of Evolutionary Computing = Lect Notes Comput Sc Applications of Evolutionary Computing = Lect. Notes. Comput. Sc. Applications of Evolutionary Computing, Proceedings = Lect Notes Comput Sc Applications of Evolutionary Computing, Proceedings = Lect. Notes. Comput. Sc. Applications of Finite Element Methods for Reliability Studies On Ulsi Interconnections = Springer Ser Reliab Applications of Finite Element Methods for Reliability Studies On Ulsi Interconnections = Springer. Ser. Reliab. Applications of Fourier Transform to Smile Modeling: Theory and Implementation = Springer Financ Applications of Fourier Transform to Smile Modeling: Theory and Implementation = Springer. Financ. Applications of Fuzzy Logic Technology Iii = P Soc Photo-opt Ins Applications of Fuzzy Logic Technology Iii = P. Soc. Photo-opt. Ins. Applications of Fuzzy Logic Technology Ii = P Soc Photo-opt Ins Applications of Fuzzy Logic Technology Ii = P. Soc. Photo-opt. Ins. Applications of Fuzzy Logic Technology = P Soc Photo-opt Ins Applications of Fuzzy Logic Technology = P. Soc. Photo-opt. Ins. Applications of Fuzzy Sets Theory = Lect Notes Artif Int Applications of Fuzzy Sets Theory = Lect. Notes. Artif. Int. Applications of Graph Transformations With Industrial Relevance = Lect Notes Comput Sc Applications of Graph Transformations With Industrial Relevance = Lect. Notes. Comput. Sc. Applications of Graph Transformations With Industrial Relevance, Proceedings = Lect Notes Comput Sc Applications of Graph Transformations With Industrial Relevance, Proceedings = Lect. Notes. Comput. Sc. Applications of High-performance Computing in Engineering Vi = Adv High Perf Com S Applications of High-performance Computing in Engineering Vi = Adv. High. Perf. Com. S. Applications of High-performance Computing in Engineering Vii = Adv High Perf Com S Applications of High-performance Computing in Engineering Vii = Adv. High. Perf. Com. S. Applications of High Performance Computing in Engineering V = Int Ser Adv High Per Applications of High Performance Computing in Engineering V = Int. Ser. Adv. High Per. Applications of Ichnology to Petroleum Exploration = Sepm Core Workshop Applications of Ichnology to Petroleum Exploration = Sepm. Core. Workshop. Applications of Inductively Coupled Plasma-mass Spectrometry to Radionuclide Determinations = Am Soc Test Mater Applications of Inductively Coupled Plasma-mass Spectrometry to Radionuclide Determinations = Am. Soc. Test. Mater. Applications of Interval Computations = Appl Optimizat Applications of Interval Computations = Appl. Optimizat. Applications of Knot Theory = Proc Sym Ap Applications of Knot Theory = Proc. Sym. Ap. Applications of Laser-plasma Interactions = Ser Plasma Phys Applications of Laser-plasma Interactions = Ser. Plasma. Phys. Applications of Laser Plasma Radiation Ii = P Soc Photo-opt Ins Applications of Laser Plasma Radiation Ii = P. Soc. Photo-opt. Ins. Applications of Laser Plasma Radiation = P Soc Photo-opt Ins Applications of Laser Plasma Radiation = P. Soc. Photo-opt. Ins. Applications of Lidar to Current Atmospheric Topics Iii = P Soc Photo-opt Ins Applications of Lidar to Current Atmospheric Topics Iii = P. Soc. Photo-opt. Ins. Applications of Management Science = Appl Manag Sci Applications of Management Science = Appl. Manag. Sci. Applications of Management Science: in Productivity, Finance, and Operations = Appl Manag Sci Applications of Management Science: in Productivity, Finance, and Operations = Appl. Manag. Sci. Applications of Mass Spectrometry in Life Safety = Nato Scie Peace Secu Applications of Mass Spectrometry in Life Safety = Nato. Scie. Peace. Secu. Applications of Mathematics = Appl. Math. Applications of Mathematics = Appl Math-czech Applications of Mathematics = Appl. Math-czech. Applications of Mathematics in Engineering and Economics '33 = Aip Conf Proc Applications of Mathematics in Engineering and Economics '33 = Aip. Conf. Proc. Applications of Mathematics in Engineering and Economics '34 = Aip Conf Proc Applications of Mathematics in Engineering and Economics '34 = Aip. Conf. Proc. Applications of Mathematics in Engineering and Economics = Aip Conf Proc Applications of Mathematics in Engineering and Economics = Aip. Conf. Proc. Applications of Mathematics in Engineering and Economics (amee '09) = Aip Conf Proc Applications of Mathematics in Engineering and Economics (amee '09) = Aip. Conf. Proc. Applications of Matrix Theory = Inst Math C Applications of Matrix Theory = Inst. Math. C. Applications of Multiple Scattering Theory to Materials Science = Mater Res Soc Symp P Applications of Multiple Scattering Theory to Materials Science = Mater. Res. Soc. Symp. P. Applications of Neural Networks and Machine Learning in Image Processing Ix = Proc Spie Applications of Neural Networks and Machine Learning in Image Processing Ix = Proc. Spie. Applications of Neural Networks and Machine Learning in Image Processing Ix = P Soc Photo-opt Ins Applications of Neural Networks and Machine Learning in Image Processing Ix = P. Soc. Photo-opt. Ins. Applications of Neural Networks in High Assurance Systems = Stud Comput Intell Applications of Neural Networks in High Assurance Systems = Stud. Comput. Intell. Applications of Nonlinear Dynamics-model and Design of Complex Systems = Und Com Sys Applications of Nonlinear Dynamics-model and Design of Complex Systems = Und. Com. Sys. Applications of Nonlinear Dynamics-model and Design of Complex Systems = Underst Complex Syst Applications of Nonlinear Dynamics-model and Design of Complex Systems = Underst. Complex Syst. Applications of Nonverbal Communication = Clar Symp Applications of Nonverbal Communication = Clar. Symp. Applications of Nonwovens in Technical Textiles = Woodhead Publ Text Applications of Nonwovens in Technical Textiles = Woodhead. Publ. Text. Applications of Optical Engineering : Proceedings of Oe/midwest 90 = P Soc Photo-opt Ins Applications of Optical Engineering : Proceedings of Oe/midwest 90 = P. Soc. Photo-opt. Ins. Applications of Optical Fiber Sensors = Europto Ser Applications of Optical Fiber Sensors = Europto. Ser. Applications of Photonic Technology 3 = Proc Spie Applications of Photonic Technology 3 = Proc. Spie. Applications of Photonic Technology 3 = P Soc Photo-opt Ins Applications of Photonic Technology 3 = P. Soc. Photo-opt. Ins. Applications of Photonic Technology 4 = P Soc Photo-opt Ins Applications of Photonic Technology 4 = P. Soc. Photo-opt. Ins. Applications of Photonic Technology 5 = Proc Spie Applications of Photonic Technology 5 = Proc. Spie. Applications of Photonic Technology 5 = P Soc Photo-opt Ins Applications of Photonic Technology 5 = P. Soc. Photo-opt. Ins. Applications of Photonic Technology 6 = Proc Spie Applications of Photonic Technology 6 = Proc. Spie. Applications of Photonic Technology 6 = P Soc Photo-opt Ins Applications of Photonic Technology 6 = P. Soc. Photo-opt. Ins. Applications of Photonic Technology, Closing The Gap Between Theory, Development, and Application, Pt 1 and 2 = Proc Spie Applications of Photonic Technology, Closing The Gap Between Theory, Development, and Application, Pt 1 and 2 = Proc. Spie. Applications of Photonic Technology, Closing The Gap Between Theory, Development, and Application, Pt 1 and 2 = P Soc Photo-opt Ins Applications of Photonic Technology, Closing The Gap Between Theory, Development, and Application, Pt 1 and 2 = P. Soc. Photo-opt. Ins. Applications of Plasma Source Mass Spectrometry Ii = Roy Soc Ch Applications of Plasma Source Mass Spectrometry Ii = Roy. Soc. Ch. Applications of Polyhedral Oligomeric Silsesquioxanes = Adv Silicon Sci Applications of Polyhedral Oligomeric Silsesquioxanes = Adv. Silicon. Sci. Applications of Random Matrices in Physics = Nato Sci Ser Ii-math Applications of Random Matrices in Physics = Nato. Sci. Ser. Ii-math. Applications of Random Matrices in Physics = Nato Sci Ser Ii Math Applications of Random Matrices in Physics = Nato. Sci. Ser. Ii. Math. Applications of Rapd Technology to Plant Breedings: Proceedings of The Symposium = Joint Plant Breed S Applications of Rapd Technology to Plant Breedings: Proceedings of The Symposium = Joint. Plant Breed. S. Applications of Rasch Measurements in Education = Educ Compet Glob Wor Applications of Rasch Measurements in Education = Educ. Compet. Glob. Wor. Applications of Remote Sensing in Agriculture = East Sch Ag Applications of Remote Sensing in Agriculture = East. Sch. Ag. Applications of Research Methodology = Adv Learn Behav Disa Applications of Research Methodology = Adv. Learn. Behav. Disa. Applications of Scanned Probe Microscopy to Polymers = Acs Sym Ser Applications of Scanned Probe Microscopy to Polymers = Acs. Sym. Ser. Applications of Seasonal Climate Forecasting in Agricultural and Natural Ecosystems = Atmos Ocean Sci Lib Applications of Seasonal Climate Forecasting in Agricultural and Natural Ecosystems = Atmos. Ocean. Sci. Lib. Applications of Signal and Image Processing in Explosives Detection Systems = P Soc Photo-opt Ins Applications of Signal and Image Processing in Explosives Detection Systems = P. Soc. Photo-opt. Ins. Applications of Social Network Analysis = Procd Soc Behv Applications of Social Network Analysis = Procd. Soc. Behv. Applications of Soft Computing = Adv Soft Comp Applications of Soft Computing = Adv. Soft Comp. Applications of Soft Computing: From Theory to Praxis = Adv Intell Soft Comp Applications of Soft Computing: From Theory to Praxis = Adv. Intell. Soft Comp. Applications of Soft Computing: From Theory to Praxis = Adv Intel Soft Compu Applications of Soft Computing: From Theory to Praxis = Adv. Intel. Soft Compu. Applications of Soft Computing = P Soc Photo-opt Ins Applications of Soft Computing = P. Soc. Photo-opt. Ins. Applications of Soft Computing: Recent Trends = Adv Soft Comp Applications of Soft Computing: Recent Trends = Adv. Soft Comp. Applications of Statisics and Probability in Civil Engineering = Proc Monogr Eng Wate Applications of Statisics and Probability in Civil Engineering = Proc. Monogr. Eng. Wate. Applications of Statistical and Field Theory Methods to Condensed Matter = Nato Adv Sci I B-phy Applications of Statistical and Field Theory Methods to Condensed Matter = Nato. Adv. Sci. I. B-phy. Applications of Superconductivity = Nato Adv Sci I E-app Applications of Superconductivity = Nato. Adv. Sci. I. E-app. Applications of Supervised and Unsupervised Ensemble Methods = Stud Comp Intell Applications of Supervised and Unsupervised Ensemble Methods = Stud. Comp. Intell. Applications of Supply Chain Management and E-commerce Research = Appl Optimizat Applications of Supply Chain Management and E-commerce Research = Appl. Optimizat. Applications of Symmetry Methods to Partial Differential Equations = Appl Math Sci Applications of Symmetry Methods to Partial Differential Equations = Appl. Math. Sci. Applications of Synchrotron Light to Scattering and Diffraction in Materials and Life Sciences = Lect Notes Phys Applications of Synchrotron Light to Scattering and Diffraction in Materials and Life Sciences = Lect. Notes. Phys. Applications of Synchrotron Radiation in Low-temperature Geochemistry and Environmental Sciences = Rev Mineral Geochem Applications of Synchrotron Radiation in Low-temperature Geochemistry and Environmental Sciences = Rev. Mineral. Geochem. Applications of Synchrotron Radiation Techniques to Materials Science Iii = Mater Res Soc Symp P Applications of Synchrotron Radiation Techniques to Materials Science Iii = Mater. Res. Soc. Symp. P. Applications of Synchrotron Radiation Techniques to Materials Science Ii = Mater Res Soc Symp P Applications of Synchrotron Radiation Techniques to Materials Science Ii = Mater. Res. Soc. Symp. P. Applications of Synchrotron Radiation Techniques to Materials Science Iv = Mater Res Soc Symp P Applications of Synchrotron Radiation Techniques to Materials Science Iv = Mater. Res. Soc. Symp. P. Applications of Synchrotron Radiation Techniques to Materials Science = Mater Res Soc Symp P Applications of Synchrotron Radiation Techniques to Materials Science = Mater. Res. Soc. Symp. P. Applications of Synchrotron Radiation Techniques to Materials Science V = Mater Res Soc Symp P Applications of Synchrotron Radiation Techniques to Materials Science V = Mater. Res. Soc. Symp. P. Applications of Systems Approaches At The Farm and Regional Levels = Syst Appr S Applications of Systems Approaches At The Farm and Regional Levels = Syst. Appr. S. Applications of Systems Approaches At The Field Level = Syst Appr S Applications of Systems Approaches At The Field Level = Syst. Appr. S. Applications of Texture Analysis = Ceram Trans Applications of Texture Analysis = Ceram. Trans. Applications of Time Delay Systems = Lect Notes Contr Inf Applications of Time Delay Systems = Lect. Notes. Contr. Inf. Applications of Transputer 3 = Transput Occam Eng S Applications of Transputer 3 = Transput. Occam. Eng. S. Applications of Transputers = Appl Transp Applications of Transputers = Appl. Transp. Applications of Ultrashort Laser Pulses in Science and Technology = P Soc Photo-opt Ins Applications of Ultrashort Laser Pulses in Science and Technology = P. Soc. Photo-opt. Ins. Applications of Ultrashort-pulse Lasers in Medicine and Biology = P Soc Photo-opt Ins Applications of Ultrashort-pulse Lasers in Medicine and Biology = P. Soc. Photo-opt. Ins. Applications of X Rays Generated From Lasers and Other Bright Sources Ii = P Soc Photo-opt Ins Applications of X Rays Generated From Lasers and Other Bright Sources Ii = P. Soc. Photo-opt. Ins. Applications of X Rays Generated From Lasers and Other Bright Sources = P Soc Photo-opt Ins Applications of X Rays Generated From Lasers and Other Bright Sources = P. Soc. Photo-opt. Ins. Applications & Services in Wireless Networks = Inn Tec Ser Applications & Services in Wireless Networks = Inn. Tec. Ser. Applications With Weather Satellites Ii = P Soc Photo-opt Ins Applications With Weather Satellites Ii = P. Soc. Photo-opt. Ins. Applications With Weather Satellites = P Soc Photo-opt Ins Applications With Weather Satellites = P. Soc. Photo-opt. Ins. Applied Accoustics = Appl. Acoust. Applied Acoustics = Appl Acoust Applied Acoustics = Appl. Acoust. Applied Algebra, Algebraic Algorithms and Error-correcting Codes = Lect Notes Comput Sc Applied Algebra, Algebraic Algorithms and Error-correcting Codes = Lect. Notes. Comput. Sc. Applied Algebra, Algebraic Algorithms and Error-correcting Codes / = Lect Notes Comput Sc Applied Algebra, Algebraic Algorithms and Error-correcting Codes / = Lect. Notes. Comput. Sc. Applied Algebra, Algebraic Algorithms, and Error-correcting Codes = Lect Notes Comput Sc Applied Algebra, Algebraic Algorithms, and Error-correcting Codes = Lect. Notes. Comput. Sc. Applied Algebra, Algebraic Algorithms and Error-correcting Codes, Proceedings = Lect Notes Comput Sc Applied Algebra, Algebraic Algorithms and Error-correcting Codes, Proceedings = Lect. Notes. Comput. Sc. Applied Algebraic Dynamics = Degruyter Expos Math Applied Algebraic Dynamics = Degruyter. Expos. Math. Applied and Computational Harmonic Analysis = Appl Comput Harmon A Applied and Computational Harmonic Analysis = Appl. Comput. Harmon. A. Applied and Computational Harmonic Analysis = Appl. Comput. Harmon. Anal. Applied and Computational Harmonic Analysis = Appl. Comput. Harmon. Anal. Applied and Computational Mathematics, 2nd Edition = Ma Comput Sci Eng Applied and Computational Mathematics, 2nd Edition = Ma. Comput. Sci. Eng. Applied and Computational Mathematics, 2nd Edition = Math Comput Sci Eng Applied and Computational Mathematics, 2nd Edition = Math. Comput. Sci. Eng. Applied and Computational Mathematics = Appl Comput Math Applied and Computational Mathematics = Appl. Comput. Math. Applied and Computational Mathematics = Appl Comput Math-bak Applied and Computational Mathematics = Appl. Comput. Math-bak. Applied and Engineering Mathematics Series = Appl. Engrg. Math. Ser. Applied and Environmental Microbiology = Appl Environ Microb Applied and Environmental Microbiology = Appl. Environ. Microb. Applied and environmental microbiology = Appl Environ Microbiol Applied and Environmental Microbiology=Appl Environ Microbiol;; Applied and Environmental Microbiology = Appl. Environ. Microbiol. Applied and Industrial Mathematics in Italy Iii = S Adv Math Applied and Industrial Mathematics in Italy Iii = S. Adv. Math. Applied and Industrial Mathematics in Italy Iii = Ser Adv Math Appl Sc Applied and Industrial Mathematics in Italy Iii = Ser. Adv. Math. Appl. Sc. Applied and Industrial Mathematics in Italy Ii = S Adv Math Applied and Industrial Mathematics in Italy Ii = S. Adv. Math. Applied and Industrial Mathematics in Italy Ii = Ser Adv Math Appl Sc Applied and Industrial Mathematics in Italy Ii = Ser. Adv. Math. Appl. Sc. Applied and Industrial Mathematics in Italy = S Adv Math Applied and Industrial Mathematics in Italy = S. Adv. Math. Applied and Industrial Mathematics in Italy = Ser Adv Math Appl Sc Applied and Industrial Mathematics in Italy = Ser. Adv. Math. Appl. Sc. Applied and Industrial Mathematics = Math Appl Applied and Industrial Mathematics = Math. Appl. Applied and Numerical Harmonic Analysis = Appl Numer Harmon An Applied and Numerical Harmonic Analysis = Appl. Numer. Harmon. An. Applied and Numerical Harmonic Analysis = Appl. Numer. Harmon. Anal. Applied and Numerical Harmonic Analysis = Appl Num Harm Anal Applied and Numerical Harmonic Analysis = Appl. Num. Harm. Anal. Applied and Theoretical Electrophoresis = Appl Theor Electroph Applied and Theoretical Electrophoresis = Appl. Theor. Electroph. Applied and Theoretical Electrophoresis=Appl Theor Electrophor;; Applied and Theoretical Electrophoresis = Appl. Theor. Electrophor. Applied and theoretical electrophoresis : the official journal of the International Electrophoresis Society = Appl Theor Electrophor Applied animal behaviour science = Appl Anim Behav Sci Applied Animal Behaviour Science = Appl Anim Behav Sci Applied Animal Behaviour Science = Appl. Anim. Behav. Sci. Applied Animal Ethology = Appl Anim Ethol Applied Animal Ethology = Appl. Anim. Ethol. Applied Anthropology = Appl Anthropol Applied Anthropology = Appl. Anthropol. Applied Artificial Intelligence = Appl Artif Intell Applied Artificial Intelligence = Appl. Artif. Intell. Applied Asymptotic Expansions in Momenta and Masses = Springer Tr Mod Phys Applied Asymptotic Expansions in Momenta and Masses = Springer. Tr. Mod. Phys. Applied behavioral science review = Appl Behav Sci Rev Applied Biochemistry and Biotechnology = Appl Biochem Biotech Applied Biochemistry and Biotechnology = Appl. Biochem. Biotech. Applied biochemistry and biotechnology = Appl Biochem Biotechnol Applied Biochemistry and Biotechnology=Appl Biochem Biotechnol;; Applied Biochemistry and Biotechnology = Appl. Biochem. Biotechnol. Applied Biochemistry and Microbiology = Appl Biochem Micro+ Applied Biochemistry and Microbiology = Appl. Biochem. Micro+.+ Applied biochemistry and microbiology = Appl Biochem Microbiol Applied Biochemistry and Microbiology = Appl. Biochem. Microbiol. Applied Biochemistry and Microbiology (Translation of Prikladnaya Biokhimiya i Mikrobiologiya) = Appl. Biochem. Microbiol. Applied Bioinformatics and Biostatistics in Cancer Research = Appl Bioinf Biostat Applied Bioinformatics and Biostatistics in Cancer Research = Appl. Bioinf. Biostat. Applied bioinformatics = Appl Bioinformatics Applied Bioinformatics = Appl. Bioinformatics Applied Bionics and Biomechanics = Appl. Bionics Biomech. Applied Bioremediation of Petroleum Hydrocarbons = Bioremed Ser Applied Bioremediation of Petroleum Hydrocarbons = Bioremed. Ser. Applied cardiology = Appl Cardiol Applied Cardiology = Appl. Cardiol. Applied cardiopulmonary pathophysiology : ACP = Appl Cardiopulm Pathophysiol Applied Cardiopulmonary Pathophysiology = Appl. Cardiopulm. Pathophysiol. Applied Cardiovascular Biology 1989 = Int S App C Applied Cardiovascular Biology 1989 = Int. S. App. C. Applied Cardiovascular Biology, 1990-91 = Int S App C Applied Cardiovascular Biology, 1990-91 = Int. S. App. C. Applied Catalysis A: General = Appl. Catal., A Applied Catalysis, A: General = Appl. Catal., A Applied Catalysis A-general = Appl Catal A-gen Applied Catalysis A-general = Appl. Catal. A-gen. Applied catalysis = Appl Catal Applied Catalysis = Appl Catal Applied Catalysis = Appl. Catal. Applied Catalysis B: Environmental = Appl. Catal., B Applied Catalysis, B: Environmental = Appl. Catal., B Applied Catalysis B-environmental = Appl Catal B-environ Applied Catalysis B-environmental = Appl. Catal. B-environ. Applied Categorical Structures = Appl Categor Struct Applied Categorical Structures = Appl. Categor. Struct. Applied Categorical Structures = Appl. Categ. Structures Applied Clay Science = Appl Clay Sci Applied Clay Science = Appl. Clay Sci. Applied Cognitive Psychology = Appl Cognitive Psych Applied Cognitive Psychology = Appl. Cognitive Psych. Applied cognitive psychology = Appl Cogn Psychol Applied Composite Materials = Appl Compos Mater Applied Composite Materials = Appl. Compos. Mater. Applied Computational Electromagnetics = Nato Adv Sci I F-com Applied Computational Electromagnetics = Nato. Adv. Sci. I. F-com. Applied Computational Electromagnetics Society Journal = Appl Comput Electrom Applied Computational Electromagnetics Society Journal = Appl. Comput. Electrom. Applied Computing, Computer Science, and Advanced Communication, Proceedings = Comm Com Inf Sc Applied Computing, Computer Science, and Advanced Communication, Proceedings = Comm. Com. Inf. Sc. Applied Computing, Proceedings = Lect Notes Comput Sc Applied Computing, Proceedings = Lect. Notes. Comput. Sc. Applied Corpus Linguistics: A Multidimensional Perspective = Lang Comput Applied Corpus Linguistics: A Multidimensional Perspective = Lang. Comput. Applied Cryptography and Network Security = Lect Notes Comput Sc Applied Cryptography and Network Security = Lect. Notes. Comput. Sc. Applied Cryptography and Network Security, Proceedings = Lect Notes Comput Sc Applied Cryptography and Network Security, Proceedings = Lect. Notes. Comput. Sc. Applied Crystallography Xxi = Sol St Phen Applied Crystallography Xxi = Sol. St. Phen. Applied Crystallography Xx = Sol St Phen Applied Crystallography Xx = Sol. St. Phen. Applied demography / Population Association of America, Applied Demography Interest Group = Appl Demor Applied developmental science = Appl Dev Sci Applied Developmental Science = Appl Dev Sci Applied Developmental Science = Appl. Dev. Sci. Applied Discrete Mathematics and Theoretical Computer Science = Appl. Discrete Math. Theoret. Comput. Sci. Applied Ecology Abstracts = Appl. Ecol. Abstr. Applied Ecology and Environmental Research = Appl Ecol Env Res Applied Ecology and Environmental Research = Appl. Ecol. Env. Res. Applied Econometrics Association Series = Appl Econom Ass Ser Applied Econometrics Association Series = Appl. Econom. Ass. Ser. Applied Econometrics Association Series = Appl Economet Ass Se Applied Econometrics Association Series = Appl. Economet. Ass. Se. Applied Econometrics With R = Use R Applied Econometrics With R = Use. R Applied Economic Perspectives and Policy = Appl Econ Perspect P Applied Economic Perspectives and Policy = Appl. Econ. Perspect. P. Applied economics = Appl Econ Applied Economics=Appl. Econ. Applied Economics = Appl Econ Applied Economics = Appl. Econ. Applied economics discussion paper series / University of Oxford, Institute of Economics and Statistics = Appl Econ Discuss Pap Ser Applied economics letters = Appl Econ Lett Applied Economics Letters = Appl Econ Lett Applied Economics Letters = Appl. Econ. Lett. Applied Economics Letters=Appl. Econ. Letters Applied Electrochemistry = Chem Res Appl-nova Applied Electrochemistry = Chem. Res. Appl-nova. Applied Electromagnetics and Computational Technology Ii, Proceedings = Stud Appl Electromag Applied Electromagnetics and Computational Technology Ii, Proceedings = Stud. Appl. Electromag. Applied Electromagnetics and Mechanics (ii) = Jsaem St Appl Electr Applied Electromagnetics and Mechanics (ii) = Jsaem. St. Appl. Electr. Applied Electromagnetics Conference Aemc = Appl Electromagn C Applied Electromagnetics Conference Aemc = Appl. Electromagn. C. Applied Electromagnetics (iii) = Jsaem St Appl Electr Applied Electromagnetics (iii) = Jsaem. St. Appl. Electr. Applied Electromagnetics (ii) = Jsaem St Appl Electr Applied Electromagnetics (ii) = Jsaem. St. Appl. Electr. Applied Electromagnetics = Jsaem Appl Electrom Applied Electromagnetics = Jsaem. Appl. Electrom. Applied Electronics = Applied Electronics Applied Energy = Appl Energ Applied Energy = Appl. Energ. Applied Energy = Appl. Energy Applied engineering in agriculture = Appl Eng Agric Applied Engineering in Agriculture = Appl Eng Agric Applied Engineering in Agriculture = Appl. Eng. Agric. Applied Entomology and Zoology = Appl Entomol Zool Applied Entomology and Zoology = Appl. Entomol. Zool. Applied entomology and zoology = Appl Entomol Zool (Jpn) Applied ergonomics = Appl Ergon Applied Ergonomics=Appl Ergon;; Applied Ergonomics = Appl Ergon Applied Ergonomics = Appl. Ergon. Applied Financial Economics=Appl. Finan. Econ. Applied Formal Methods - Fm-trends 98 = Lect Notes Comput Sc Applied Formal Methods - Fm-trends 98 = Lect. Notes. Comput. Sc. Applied Geochemistry = Appl Geochem Applied Geochemistry = Appl. Geochem. Applied geochemistry : journal of the International Association of Geochemistry and Cosmochemistry = Appl Geochem Applied geography and development = Appl Geogr Dev Applied Geography and Development = Appl. Geogr. Dev. Applied Geography and Development=Appl. Geogr. Devel. Applied Geography = Appl Geogr Applied Geography = Appl. Geogr. Applied geography (Sevenoaks, England) = Appl Geogr Applied Geophysics = Appl Geophys Applied Geophysics = Appl. Geophys. Applied Graph Theory in Computer Vision and Pattern Recognition = Stud Comput Intell Applied Graph Theory in Computer Vision and Pattern Recognition = Stud. Comput. Intell. Applied health economics and health policy = Appl Health Econ Health Policy Applied Health Economics and Health Policy = Appl. Health Econ. Health Policy. Applied Health Economics = Routl Adv Texts Econ Applied Health Economics = Routl. Adv. Texts. Econ. Applied Herpetology = Appl Herpetol Applied Herpetology = Appl. Herpetol. Applied Human Science=Appl Human Sci;; Applied Human Science = Appl. Human Sci. Applied human science : journal of physiological anthropology = Appl Human Sci Applied Hydrogeophysics = Nato Sci S Ss Iv Ear Applied Hydrogeophysics = Nato. Sci. S. Ss. Iv. Ear. Applied Immunohistochemistry and Molecular Morphology = Appl. Immunohistochem. Mol. Morphol. Applied Immunohistochemistry = Appl Immunohistochem Applied Immunohistochemistry = Appl. Immunohistochem. Applied immunohistochemistry & molecular morphology : AIMM / official publication of the Society for Applied Immunohistochemistry = Appl Immunohistochem Mol Morphol Applied Immunohistochemistry & Molecular Morphology = Appl Immunohisto M M Applied Immunohistochemistry & Molecular Morphology = Appl. Immunohisto. M. M. Applied Information Technology = Appl Info T Applied Information Technology = Appl. Info. T. Applied Intelligence = Appl Intell Applied Intelligence = Appl. Intell. Applied Laser Radar Technology Ii = P Soc Photo-opt Ins Applied Laser Radar Technology Ii = P. Soc. Photo-opt. Ins. Applied Laser Radar Technology = P Soc Photo-opt Ins Applied Laser Radar Technology = P. Soc. Photo-opt. Ins. Applied Laser Spectroscopy = Nato Adv Sci I B-phy Applied Laser Spectroscopy = Nato. Adv. Sci. I. B-phy. Applied Linguistics = Appl Linguist Applied Linguistics = Appl. Linguist. Applied Logic: How, What and Why = Synth Libr Applied Logic: How, What and Why = Synth. Libr. Applied Logic Series = Appl. Log. Ser. Applied Logic Series = Appl Log Ser Applied Logic Series = Appl. Log. Ser. Applied magnetic resonance = Appl Magn Reson Applied Magnetic Resonance = Appl Magn Reson Applied Magnetic Resonance = Appl. Magn. Reson. Applied Magnetism = Nato Adv Sci Inst Se Applied Magnetism = Nato. Adv. Sci. Inst. Se. Applied Material Research At Vtt = Vtt Symp Applied Material Research At Vtt = Vtt Symp. Applied Mathematical Demography = Stat Biol Health Applied Mathematical Demography = Stat. Biol. Health. Applied Mathematical Finance=Appl. Math. Finance Applied mathematical modelling = Appl Math Model Applied Mathematical Modelling = Appl Math Model Applied Mathematical Modelling = Appl. Math. Model. Applied Mathematical Modelling = Appl. Math. Modell. Applied Mathematical Sciences = Appl. Math. Sci. Applied Mathematical Sciences = Appl Math Sci Applied Mathematical Sciences = Appl. Math. Sci. Applied Mathematics-a Journal of Chinese Universities Series B = Appl Math Ser B Applied Mathematics-a Journal of Chinese Universities Series B = Appl. Math. Ser. B Applied Mathematics and Computation = Appl. Math. Comput. Applied Mathematics and Computation = Appl Math Comput Applied Mathematics and Computation = Appl. Math. Comput. Applied Mathematics and Computer Science = Appl. Math. Comput. Sci. Applied Mathematics and Engineering Science Texts = Appl. Math. Engrg. Sci. Texts Applied Mathematics and Mathematical Computation = Appl. Math. Math. Comput. Applied Mathematics and Mechanics = Appl. Math. Mech. Applied Mathematics and Mechanics = Appl. Math. Mech. (English Ed.) Applied Mathematics and Mechanics-english Edition = Appl Math Mech-engl Applied Mathematics and Mechanics-english Edition = Appl. Math. Mech-engl. Applied Mathematics and Optimization = Appl Math Opt Applied Mathematics and Optimization = Appl. Math. Opt. Applied Mathematics and Optimization = Appl. Math. Optim. Applied Mathematics and Optimization = Appl. Math. Optim. Applied Mathematics = Appl. Math. J. Chinese Univ. Ser. B Applied Mathematics for Restructured Electric Power Systems: Optimization, Control, and Computational Intelligence = Power Electronics P Applied Mathematics for Restructured Electric Power Systems: Optimization, Control, and Computational Intelligence = Power Electronics. P. Applied Mathematics for Restructured Electric Power Systems: Optimization, Control, and Computational Intelligence = Power Electron Power Applied Mathematics for Restructured Electric Power Systems: Optimization, Control, and Computational Intelligence = Power Electron. Power Applied Mathematics in Aerospace Science and Engineering = Math C Sci Applied Mathematics in Aerospace Science and Engineering = Math. C. Sci. Applied Mathematics & Information Sciences = Appl Math Inform Sci Applied Mathematics & Information Sciences = Appl. Math. Inform. Sci. Applied Mathematics in Integrated Navigation Systems, Third Edition = Aiaa Educ Ser Applied Mathematics in Integrated Navigation Systems, Third Edition = Aiaa. Educ. Ser. Applied Mathematics Letters = Appl. Math. Lett. Applied Mathematics Letters = Appl Math Lett Applied Mathematics Letters = Appl. Math. Lett. Applied Measurement in Education = Appl Meas Educ Applied Measurement in Education = Appl. Meas. Educ. Applied Mechanics and Materials = Appl Mech Mater Applied Mechanics and Materials = Appl. Mech. Mater. Applied Mechanics and Mechanical Engineering, Pts 1-3 = Appl Mech Mater Applied Mechanics and Mechanical Engineering, Pts 1-3 = Appl. Mech. Mater. Applied Mechanics Division of The American Society of Mechanical Engineers = Appl Mech Div Asme Applied Mechanics Division of The American Society of Mechanical Engineers = Appl. Mech. Div. Asme. Applied Mechanics Reviews = Appl Mech Rev Applied Mechanics Reviews = Appl. Mech. Rev. Applied Microbiology and Biotechnology = Appl Microbiol Biot Applied Microbiology and Biotechnology = Appl. Microbiol. Biot. Applied microbiology and biotechnology = Appl Microbiol Biotechnol Applied Microbiology and Biotechnology = Appl. Microbiol. Biotechnol. Applied microbiology = Appl Microbiol Applied Microbiology = Appl Microbiol Applied Microbiology = Appl. Microbiol. Applied microgravity technology = Appl Micrograv Technol Applied Micromechanics of Porous Materials = Cism Cour L Applied Micromechanics of Porous Materials = Cism. Cour. L. Applied Micromechanics of Porous Materials = Cism Courses Lect Applied Micromechanics of Porous Materials = Cism. Courses. Lect. Applied Modeling of Urban Water Systems, Monograph 8 = Adv Mod Manag Stormw Applied Modeling of Urban Water Systems, Monograph 8 = Adv. Mod. Manag. Stormw. Applied Multivariate Analysis in Sar and Environmental Studies = Euro Ch Env Applied Multivariate Analysis in Sar and Environmental Studies = Euro. Ch. Env. Applied Myrmecology = Westv Stud Applied Myrmecology = Westv. Stud. Applied neurophysiology = Appl Neurophysiol Applied Neurophysiology = Appl Neurophysiol Applied Neurophysiology = Appl. Neurophysiol. Applied neuropsychology = Appl Neuropsychol Applied Neuropsychology = Appl Neuropsychol Applied Neuropsychology = Appl. Neuropsychol. Applied Nonlinear Dynamics and Stochastic Systems Near The Millennium = Aip Conf Proc Applied Nonlinear Dynamics and Stochastic Systems Near The Millennium = Aip. Conf. Proc. Applied Nonparametric Statistics in Reliability = Springer Ser Reliab Applied Nonparametric Statistics in Reliability = Springer. Ser. Reliab. Applied Numerical Mathematics = Appl. Numer. Math. Applied Numerical Mathematics = Appl Numer Math Applied Numerical Mathematics = Appl. Numer. Math. Applied nursing research : ANR = Appl Nurs Res Applied Nursing Research=Appl Nurs Res;; Applied Nursing Research = Appl Nurs Res Applied Nursing Research = Appl. Nurs. Res. Applied Occlusion = Quintessent Dent Pra Applied Occlusion = Quintessent. Dent. Pra. Applied occupational and environmental hygiene = Appl Occup Environ Hyg Applied Occupational and Environmental Hygiene = Appl. Occup. Environ. Hyg. Applied Ocean Research = Appl Ocean Res Applied Ocean Research = Appl. Ocean Res. Applied Ontology = Appl Ontol Applied Ontology = Appl. Ontol. Applied optics = Appl Opt Applied Optics = Appl. Opt. Applied Optics = Appl Optics Applied Optics = Appl. Optics Applied Optimization = Appl. Optim. Applied Optimization = Appl Optim Applied Optimization = Appl. Optim. Applied Optimization = Appl Optimizat Applied Optimization = Appl. Optimizat. Applied Organizational Communication: Theory and Practice in A Global Environment, Third Edition = Lea Commun Ser Applied Organizational Communication: Theory and Practice in A Global Environment, Third Edition = Lea. Commun. Ser. Applied Organometallic Chemistry = Appl Organomet Chem Applied Organometallic Chemistry = Appl. Organomet. Chem. Applied Parallel Computing = Lect Notes Comput Sc Applied Parallel Computing = Lect. Notes. Comput. Sc. Applied Parallel Computing, Proceedings = Lect Notes Comput Sc Applied Parallel Computing, Proceedings = Lect. Notes. Comput. Sc. Applied Parallel Computing: State of The Art in Scientific Computing = Lect Notes Comput Sc Applied Parallel Computing: State of The Art in Scientific Computing = Lect. Notes. Comput. Sc. Applied parasitology = Appl Parasitol Applied Parasitology = Appl. Parasitol. Applied pathology = Appl Pathol Applied Pathology = Appl. Pathol. Applied Pattern Recognition = Stud Comput Intell Applied Pattern Recognition = Stud. Comput. Intell. Applied philosophy (Fort Pierce, Fla.) = Appl Philos Applied Physics A = Appl. Phys. A Applied Physics A-materials Science & Processing = Appl Phys A-mater Applied Physics A-materials Science & Processing = Appl. Phys. A-mater. Applied Physics A: Materials Science & Processing = Appl. Phys. A: Mater. Sci. Process. Applied Physics = Appl Phys Applied Physics = Appl. Phys. Applied Physics A: Solids and Surfaces = Appl. Phys. A Applied Physics B = Appl. Phys. B Applied physics. B, Lasers and optics = Appl Phys B Applied Physics B-lasers and Optics = Appl Phys B-lasers O Applied Physics B-lasers and Optics = Appl. Phys. B-lasers O. Applied Physics B: Lasers and Optics = Appl. Phys. B: Lasers Opt. Applied Physics B: Photophysics and Laser Chemistry = Appl. Phys. B Applied Physics B-photophysics and Laser Chemistry = Appl Phys B-photo Applied Physics B-photophysics and Laser Chemistry = Appl. Phys. B-photo. Applied Physics Express = Appl Phys Express Applied Physics Express = Appl. Phys. Express Applied Physics in Serbia = Sasa Dep Math Phys G Applied Physics in Serbia = Sasa. Dep. Math. Phys. G. Applied Physics in The 21st Century = Horiz World Phys Ser Applied Physics in The 21st Century = Horiz. World. Phys. Ser. Applied physics letters = Appl Phys Lett Applied Physics Letters = Appl Phys Lett Applied Physics Letters = Appl. Phys. Lett. Applied Physics Research = Appl. Phys. Res. Applied Physiology, Nutrition and Metabolism = Appl. Physiol. Nutr. Metab. Applied Physiology, Nutrition, and Metabolism = Appl. Physiol. Nutr. Metab. Applied Physiology Nutrition and Metabolism-physiologie Appliquee Nutrition Et Metabolisme = Appl Physiol Nutr Me Applied Physiology Nutrition and Metabolism-physiologie Appliquee Nutrition Et Metabolisme = Appl. Physiol. Nutr. Me. Applied Plasticity, Second Edition = Mech Eng Ser Applied Plasticity, Second Edition = Mech. Eng. Ser. Applied Plastics and Reinforced Plastics Review = Appl Plas Reinf Pl R Applied Plastics and Reinforced Plastics Review = Appl. Plas. Reinf. Pl. R. Applied polymer symposia = Appl Polym Symp Applied Polymer Symposia = Appl Polym Symp Applied Polymer Symposia = Appl. Polym. Symp. Applied Polymer Symposia Series = Appl Polym Symp Ser Applied Polymer Symposia Series = Appl. Polym. Symp. Ser. Applied Positive Psychology: Improving Everyday Life, Health, Schools, Work, and Society = S Appl Psyc Applied Positive Psychology: Improving Everyday Life, Health, Schools, Work, and Society = S. Appl. Psyc. Applied & Preventive Psychology = Appl Prev Psychol Applied & Preventive Psychology = Appl. Prev. Psychol. Applied & preventive psychology : journal of the American Association of Applied and Preventive Psychology = Appl Prev Psychol Applied Probability = Appl. Probab. Index Applied Probability, Second Ed = Springer Texts Stat Applied Probability, Second Ed = Springer. Texts. Stat. Applied Proof Theory: Proof Interpretations and Their Use in Mathematics = Springer Monogr Math Applied Proof Theory: Proof Interpretations and Their Use in Mathematics = Springer. Monogr. Math. Applied Pseudoanalytic Function Theory = Front Math Applied Pseudoanalytic Function Theory = Front. Math. Applied psycholinguistics = Appl Psycholinguist Applied Psycholinguistics = Appl Psycholinguist Applied Psycholinguistics = Appl. Psycholinguist. Applied Psychological Measurement = Appl Psych Meas Applied Psychological Measurement = Appl. Psych. Meas. Applied Psychology-an International Review-psychologie Appliquee-revue Internationale = Appl Psychol-int Rev Applied Psychology-an International Review-psychologie Appliquee-revue Internationale = Appl. Psychol-int. Rev. Applied Psychology - Individual, Social, and Community Issues = Appl Psy-indiv Soc Applied Psychology - Individual, Social, and Community Issues = Appl. Psy-indiv. Soc. Applied Psychology: New Frontiers and Rewarding Careers = Stauffer Symp Appl P Applied Psychology: New Frontiers and Rewarding Careers = Stauffer. Symp. Appl. P. Applied Psychophysiology and Biofeedback = Appl Psychophys Biof Applied Psychophysiology and Biofeedback = Appl. Psychophys. Biof. Applied psychophysiology and biofeedback = Appl Psychophysiol Biofeedback Applied Psychophysiology and Biofeedback=Appl Psychophysiol Biofeedback;; Applied Psychophysiology and Biofeedback = Appl. Psychophysiol. Biofeedback Applied Public Key Infrastructure = Fr Art Int Applied Public Key Infrastructure = Fr. Art. Int. Applied Quantum Cryptography = Lect Notes Phys Applied Quantum Cryptography = Lect. Notes. Phys. Applied Radiation and Isotopes=Appl Radiat Isot;; Applied Radiation and Isotopes = Appl. Radiat. Isot. Applied Radiation and Isotopes = Appl Radiat Isotopes Applied Radiation and Isotopes = Appl. Radiat. Isotopes Applied radiation and isotopes : including data, instrumentation and methods for use in agriculture, industry and medicine = Appl Radiat Isot Applied radiology = Appl Radiol Applied Radiology = Appl. Radiol. Applied Rasch Measurement : A Book of Exemplars = Educ Asia Pac Reg-is Applied Rasch Measurement : A Book of Exemplars = Educ. Asia. Pac. Reg-is. Applied Reliability and Quality: Fundamentals, Methods and Procedures = Springer Ser Reliab Applied Reliability and Quality: Fundamentals, Methods and Procedures = Springer. Ser. Reliab. Applied Research in Environmental Economics = Zew Econ Stud Applied Research in Environmental Economics = Zew. Econ. Stud. Applied research in mental retardation = Appl Res Ment Retard Applied Research in Mental Retardation = Appl Res Ment Retard Applied Research in Mental Retardation = Appl. Res. Ment. Retard. Applied Research in Quality of Life = Appl Res Qual Life Applied Research in Quality of Life = Appl. Res. Qual. Life Applied Rheed = Springer Tr Mod Phys Applied Rheed = Springer. Tr. Mod. Phys. Applied Rheology = Appl Rheol Applied Rheology = Appl. Rheol. Applied rheology (Lappersdorf, Germany : Online) = Appl Rheol Applied Scanning Probe Methods Ix: Characterization = Nanosci Technol Applied Scanning Probe Methods Ix: Characterization = Nanosci. Technol. Applied Scanning Probe Methods Vi: Characterization = Nanosci Technol Applied Scanning Probe Methods Vi: Characterization = Nanosci. Technol. Applied Scanning Probe Methods Vii: Biomimetics and Industrial Applications = Nanosci Technol Applied Scanning Probe Methods Vii: Biomimetics and Industrial Applications = Nanosci. Technol. Applied Scanning Probe Methods Viii: Scanning Probe Microscopy Techniques = Nanosci Technol Applied Scanning Probe Methods Viii: Scanning Probe Microscopy Techniques = Nanosci. Technol. Applied Scanning Probe Methods V: Scanning Probe Microscopy Techniques = Nanosci Technol Applied Scanning Probe Methods V: Scanning Probe Microscopy Techniques = Nanosci. Technol. Applied Scanning Probe Methods X: Biomimetics and Industrial Applications = Nanosci Technol Applied Scanning Probe Methods X: Biomimetics and Industrial Applications = Nanosci. Technol. Applied Scanning Probe Methods Xii: Characterization = Nanosci Technol Applied Scanning Probe Methods Xii: Characterization = Nanosci. Technol. Applied Scanning Probe Methods Xiii: Biomimetics and Industrial Applications = Nanosci Technol Applied Scanning Probe Methods Xiii: Biomimetics and Industrial Applications = Nanosci. Technol. Applied Scanning Probe Methods Xi: Scanning Probe Microscopy Techniques = Nanosci Technol Applied Scanning Probe Methods Xi: Scanning Probe Microscopy Techniques = Nanosci. Technol. Applied Sciences and The Environment = Environm Engn Applied Sciences and The Environment = Environm. Engn. Applied Scientific Research = Appl. Sci. Res. Applied Scientific Research = Appl Sci Res Applied Scientific Research = Appl. Sci. Res. Applied Scientific Research Section A-mechanics Heat Chemical Engineering Mathematical Methods = Appl Sci Res Applied Scientific Research Section A-mechanics Heat Chemical Engineering Mathematical Methods = Appl. Sci. Res. Applied Scientific Research Section B-electrophysics Acoustics Optics Mathematical Methods = Appl Sci Res B-elec Applied Scientific Research Section B-electrophysics Acoustics Optics Mathematical Methods = Appl. Sci. Res. B-elec. Applied Semantics = Lect Notes Comput Sc Applied Semantics = Lect. Notes. Comput. Sc. Applied Social Studies = Appl Soc Stud Applied Social Studies = Appl. Soc. Stud. Applied Soft Computing = Appl Soft Comput Applied Soft Computing = Appl. Soft Comput. Applied Soft Computing Technologies: The Challenge of Complexity = Adv Soft Comp Applied Soft Computing Technologies: The Challenge of Complexity = Adv. Soft Comp. Applied Soil Ecology = Appl Soil Ecol Applied Soil Ecology = Appl. Soil Ecol. Applied Solar Energy = Appl. Solar Energy Applied Solid Mechanics - 4 = Appl Sol M Applied Solid Mechanics - 4 = Appl. Sol. M. Applied Solid Mechanics = Appl Sol M Applied Solid Mechanics = Appl. Sol. M. Applied Spatial Data Analysis With R = Use R Applied Spatial Data Analysis With R = Use. R Applied spectroscopy = Appl Spectrosc Applied Spectroscopy = Appl Spectrosc Applied Spectroscopy = Appl. Spectrosc. Applied Spectroscopy in Material Science = P Soc Photo-opt Ins Applied Spectroscopy in Material Science = P. Soc. Photo-opt. Ins. Applied Spectroscopy in Materials Science Ii = P Soc Photo-opt Ins Applied Spectroscopy in Materials Science Ii = P. Soc. Photo-opt. Ins. Applied Spectroscopy Reviews = Appl Spectrosc Rev Applied Spectroscopy Reviews = Appl. Spectrosc. Rev. Applied Statistical Science = Appl Statist Applied Statistical Science = Appl. Statist. Applied Statistical Science Iv = Appl Statist Applied Statistical Science Iv = Appl. Statist. Applied statistics = Appl Stat Applied Statistics = Appl. Stat. Applied Statistics-journal of The Royal Statistical Society Series C = Appl Stat-j Roy St C Applied Statistics-journal of The Royal Statistical Society Series C = Appl. Stat-j. Roy. St. C Applied Stochastic Modelling, Second Edition = Ch Crc Text Stat Sci Applied Stochastic Modelling, Second Edition = Ch. Crc. Text. Stat. Sci. Applied Stochastic Models and Data Analysis = Appl. Stochastic Models Data Anal. Applied Stochastic Models and Data Analysis = Appl Stoch Model D A Applied Stochastic Models and Data Analysis = Appl. Stoch. Model. D. A. Applied Stochastic Models in Business and Industry = Appl Stoch Model Bus Applied Stochastic Models in Business and Industry = Appl. Stoch. Model. Bus. Applied Stochastic Processes and Control for Jump-diffusions: Modeling, Analysis, and Computation = Adv Des Control Applied Stochastic Processes and Control for Jump-diffusions: Modeling, Analysis, and Computation = Adv. Des. Control Applied Superconductivity 1995, Vols. 1 and 2 = Inst Phys Conf Ser Applied Superconductivity 1995, Vols. 1 and 2 = Inst. Phys. Conf. Ser. Applied Superconductivity 1997, Vols 1 and 2 = Inst Phys Conf Ser Applied Superconductivity 1997, Vols 1 and 2 = Inst. Phys. Conf. Ser. Applied Superconductivity = Appl Supercond Applied Superconductivity = Appl. Supercond. Applied Surface Science = Appl Surf Sci Applied Surface Science = Appl. Surf. Sci. Applied therapeutics = Appl Ther Applied Therapeutics = Appl. Ther. Applied Thermal Engineering = Appl Therm Eng Applied Thermal Engineering = Appl. Therm. Eng. Applied Vegetation Science = Appl Veg Sci Applied Vegetation Science = Appl. Veg. Sci. Applying Formal Methods: Testing, Performance, and M/e- Commerce, Proceedings = Lect Notes Comput Sc Applying Formal Methods: Testing, Performance, and M/e- Commerce, Proceedings = Lect. Notes. Comput. Sc. Applying Fuzzy Mathematics to Formal Models in Comparative Politics = Stud Fuzz Soft Comp Applying Fuzzy Mathematics to Formal Models in Comparative Politics = Stud. Fuzz. Soft. Comp. Applying Gis Technologies in Water Utilities: A Challenge and A Necessity = Water Supp Applying Gis Technologies in Water Utilities: A Challenge and A Necessity = Water Supp. Applying Multiple Criteria Aid for Decision to Environmental Management = Euro Environm Manag Applying Multiple Criteria Aid for Decision to Environmental Management = Euro. Environm. Manag. Applying Research to Practice = Allerton Pa Applying Research to Practice = Allerton. Pa. Applying Social Cognition to Consumer-focused Strategy = Advert Cons Applying Social Cognition to Consumer-focused Strategy = Advert. Cons. Appollonius Rhodius = Hellenist Groningana Appollonius Rhodius = Hellenist. Groningana. Apprehension and Argument: Ancient Theories of Starting Points for Knowledge = Stud Hist Philos Min Apprehension and Argument: Ancient Theories of Starting Points for Knowledge = Stud. Hist. Philos. Min. Apprenctice in A Changing Trade = Adv Cult Psychol Con Apprenctice in A Changing Trade = Adv. Cult. Psychol. Con. Approaches and Applications of Inductive Programming = Lect Notes Comput Sc Approaches and Applications of Inductive Programming = Lect. Notes. Comput. Sc. Approaches to Applied Semiotics = Approach Appl Semiot Approaches to Applied Semiotics = Approach. Appl. Semiot. Approaches to Discourse Particles = Stud Pragmat Approaches to Discourse Particles = Stud. Pragmat. Approaches to Early Childhood and Elementary Education = Educ Compet Glob Wor Approaches to Early Childhood and Elementary Education = Educ. Compet. Glob. Wor. Approaches to Fundamental Physics = Lect Notes Phys Approaches to Fundamental Physics = Lect. Notes. Phys. Approaches to Handling Environmental Problems in The Mining and Metallurgical Regions = Nato Sci S Ss Iv Ear Approaches to Handling Environmental Problems in The Mining and Metallurgical Regions = Nato. Sci. S. Ss. Iv. Ear. Approaches to Hungarian = Approach Hung Approaches to Hungarian = Approach. Hung. Approaches to Improving The Quality of Life: How to Enhance The Quality of Life = Soc Indic Res Ser Approaches to Improving The Quality of Life: How to Enhance The Quality of Life = Soc. Indic. Res. Ser. Approaches to Legal Ontologies: Theories, Domains, Methodologies = Law Gov Technol Ser Approaches to Legal Ontologies: Theories, Domains, Methodologies = Law. Gov. Technol. Ser. Approaches to Legal Rationality = Logic Epistemol Unit Approaches to Legal Rationality = Logic. Epistemol. Unit. Approaches to Metaphysics = Stud Philos Relig Se Approaches to Metaphysics = Stud. Philos. Relig. Se. Approaches to Phonological Complexity = Phonol Phonet Approaches to Phonological Complexity = Phonol. Phonet. Approaches to Scaling of Trace Gas Fluxes in Ecosystems = Dev Atmosph Approaches to Scaling of Trace Gas Fluxes in Ecosystems = Dev. Atmosph. Approaches to Semiotics = Approach S Approaches to Semiotics = Approach. S. Approaches to Singular Analysis = Oper Theor Approaches to Singular Analysis = Oper. Theor. Approaches to Singular Analysis = Oper Theory Adv Appl Approaches to Singular Analysis = Oper. Theory. Adv. Appl. Approaching Micro-arcsecond Resolution With Vsop-2: Astrophysics and Technology = Astr Soc P Approaching Micro-arcsecond Resolution With Vsop-2: Astrophysics and Technology = Astr. Soc. P. Appropriate Dose Selection - How to Optimize Clinical Drug Development = E Schering Res Fdn W Appropriate Dose Selection - How to Optimize Clinical Drug Development = E. Schering. Res. Fdn. W. Appropriate Housing Systems for Farm Animals = Schrift Fat Appropriate Housing Systems for Farm Animals = Schrift. Fat. Appropriate Technology = Appropriate Tech Appropriate Technology = Appropriate Tech. Appropriation As Practice: Art and Identity in Argentina = Stud Am Appropriation As Practice: Art and Identity in Argentina = Stud. Am. Approximate and Noisy Realization of Discrete-time Dynamical Systems = Lect Notes Contr Inf Approximate and Noisy Realization of Discrete-time Dynamical Systems = Lect. Notes. Contr. Inf. Approximate and Renormgroup Symmetries = Nonlinear Phys Sci Approximate and Renormgroup Symmetries = Nonlinear. Phys. Sci. Approximate Commutative Algebra = Text Mg Symb Comput Approximate Commutative Algebra = Text. Mg. Symb. Comput. Approximate Reasoning By Parts: An Introduction to Rough Mereology = Intel Syst Ref Libr Approximate Reasoning By Parts: An Introduction to Rough Mereology = Intel. Syst. Ref. Libr. Approximation Algorithms for Combinatorial Optimization, Proceedings = Lect Notes Comput Sc Approximation Algorithms for Combinatorial Optimization, Proceedings = Lect. Notes. Comput. Sc. Approximation and Computation: A Festschrift in Honor of Walter Gautschi = Int S Num M Approximation and Computation: A Festschrift in Honor of Walter Gautschi = Int. S. Num. M. Approximation and Computation: in Honor of Gradimir V. Milovanovic = Springer Ser Optim A Approximation and Computation: in Honor of Gradimir V. Milovanovic = Springer. Ser. Optim. A. Approximation and Online Algorithms = Lect Notes Comput Sc Approximation and Online Algorithms = Lect. Notes. Comput. Sc. Approximation By Multivariate Singular Integrals = Springerbrief Math Approximation By Multivariate Singular Integrals = Springerbrief. Math. Approximation By Solutions of Partial Differential Equations = Nato Adv Sci I C-mat Approximation By Solutions of Partial Differential Equations = Nato. Adv. Sci. I. C-mat. Approximation, Complex Analysis, and Potential Theory = Nato Sci Ser Ii Math Approximation, Complex Analysis, and Potential Theory = Nato. Sci. Ser. Ii. Math. Approximation Methods for Efficient Learning of Bayesian Networks = Front Artif Intel Ap Approximation Methods for Efficient Learning of Bayesian Networks = Front. Artif. Intel. Ap. Approximation of Additive Convolution-like Operators: Real C-algebra Approach = Front Math Approximation of Additive Convolution-like Operators: Real C-algebra Approach = Front. Math. Approximation & Optimization = Approx. Optim. Approximation, Randomization and Combinatorial Optimization: Algorithms and Techniques = Lect Notes Comput Sc Approximation, Randomization and Combinatorial Optimization: Algorithms and Techniques = Lect. Notes. Comput. Sc. Approximation, Randomization, and Combinatorial Optimization: Algorithms and Techniques = Lect Notes Comput Sc Approximation, Randomization, and Combinatorial Optimization: Algorithms and Techniques = Lect. Notes. Comput. Sc. Approximation Randomization and Combinatorial Optimization: Algorithms and Techniques, Proceedings = Lect Notes Comput Sc Approximation Randomization and Combinatorial Optimization: Algorithms and Techniques, Proceedings = Lect. Notes. Comput. Sc. Approximation, Randomization, and Combinatorial Optimization: Algorithms and Techniques, Proceedings = Lect Notes Comput Sc Approximation, Randomization, and Combinatorial Optimization: Algorithms and Techniques, Proceedings = Lect. Notes. Comput. Sc. Approximation, Randomization, and Combinatorial Optimization = Lect Notes Comput Sc Approximation, Randomization, and Combinatorial Optimization = Lect. Notes. Comput. Sc. Approximations and Endomorphism Algebras of Modules = Degruyter Expos Math Approximations and Endomorphism Algebras of Modules = Degruyter. Expos. Math. Approximations and Numerical Methods for The Solution of Maxwell's Equations = Inst Math C Approximations and Numerical Methods for The Solution of Maxwell's Equations = Inst. Math. C. Approximation Theory and Function Series = Bolyai Math Stud Approximation Theory and Function Series = Bolyai. Math. Stud. Approximation Theory and Function Series = Bolyai Soc Math Stud Approximation Theory and Function Series = Bolyai. Soc. Math. Stud. Approximation Theory and its Applications = Approx. Theory Appl. (N.S.) Approximation Theory / = Colloq Math Approximation Theory / = Colloq. Math. Approximation Theory = Math Res Approximation Theory = Math. Res. Approximation Theory = Pure A Math Approximation Theory = Pure. A. Math. Approximation Theory, Spline Functions and Applications = Nato Adv Sci I C-mat Approximation Theory, Spline Functions and Applications = Nato. Adv. Sci. I. C-mat. Approximation Theory, Wavelets and Applications = Nato Adv Sci Inst Se Approximation Theory, Wavelets and Applications = Nato. Adv. Sci. Inst. Se. Approximative Algorithmen Und Nichtapproximierbarkeit = Degruyter Lehrb Approximative Algorithmen Und Nichtapproximierbarkeit = Degruyter. Lehrb. Appunti romani di filologia. Studi e comunicazioni di filologia, linguistica e letteratura greca e latina = AppRomFil Appunti Scuola Normale Superiore Pisa-lecture Notes Scuola Normale Superiore Pisa = Appunti Sc Norm Supe Appunti Scuola Normale Superiore Pisa-lecture Notes Scuola Normale Superiore Pisa = Appunti Sc. Norm. Supe. Apres-demain / fonde par la Ligue des droits de l'homme = Apres Demain Apsec 09: Sixteenth Asia-pacific Software Engineering Conference, Proceedings = Asia Pac Sofwr Eng Apsec 09: Sixteenth Asia-pacific Software Engineering Conference, Proceedings = Asia. Pac. Sofwr. Eng. Apsec 2008:15th Asia-pacific Software Engineering Conference, Proceedings = Asia Pac Sofwr Eng Apsec 2008:15th Asia-pacific Software Engineering Conference, Proceedings = Asia. Pac. Sofwr. Eng. Aps Journal = Aps J Aps Journal = Aps J. APS observer = APS Obs Aptechnoe delo = Aptechn Delo Aptechnoe Delo = Aptechn. Delo Apulum. Acta Musei Apulensis = Apulum AQ (Balmain, N.S.W.) = AQ AQEIC Boletin Tecnico = AQEIC Bol. Tec. Aquacultural Engineering = Aquacult Eng Aquacultural Engineering = Aquacult. Eng. Aquaculture (Amsterdam, Netherlands) = Aquaculture Aquaculture and The Environment = Sp Pub Eur Aquacult Aquaculture and The Environment = Sp. Pub. Eur. Aquacult. Aquaculture = Aquaculture Aquaculture Association of Canada Special Publication = Aquac Assoc Can Spec Aquaculture Association of Canada Special Publication = Aquac. Assoc. Can. Spec. Aquaculture Canada 2000 = Aquac Assoc Can Spec Aquaculture Canada 2000 = Aquac. Assoc. Can. Spec. Aquaculture Canada 2001 = Aquac Assoc Can Spec Aquaculture Canada 2001 = Aquac. Assoc. Can. Spec. Aquaculture Canada 2002 = Aquac Assoc Can Spec Aquaculture Canada 2002 = Aquac. Assoc. Can. Spec. Aquaculture Economics and Management=Aquaculture Econ. Manage. Aquaculture Economics = Asian F Ind Aquaculture Economics = Asian. F. Ind. Aquaculture Environment Interactions = Aquacult Env Interac Aquaculture Environment Interactions = Aquacult. Env. Interac. Aquaculture, Innovation and Social Transformation = Int Lib Env Agric Fo Aquaculture, Innovation and Social Transformation = Int. Lib. Env. Agric. Fo. Aquaculture International = Aquacult Int Aquaculture International = Aquacult. Int. Aquaculture in The 21st Century = Am Fish S S Aquaculture in The 21st Century = Am. Fish. S. S. Aquaculture Nutrition = Aquacult Nutr Aquaculture Nutrition = Aquacult. Nutr. Aquaculture Research = Aquac Res Aquaculture Research = Aquac. Res. Aquaculture Research = Aquacult. Res. Aquaculture Systems Engineering = Asae Publ Aquaculture Systems Engineering = Asae. Publ. Aquaporins = Curr Top Membr Aquaporins = Curr. Top. Membr. Aquatic Biology = Aquat Biol Aquatic Biology = Aquat. Biol. Aquatic Botany = Aquat Bot Aquatic Botany = Aquat. Bot. Aquatic Chemistry = Adv Chem Ser Aquatic Chemistry = Adv. Chem. Ser. Aquatic Conservation-marine and Freshwater Ecosystems = Aquat Conserv Aquatic Conservation-marine and Freshwater Ecosystems = Aquat. Conserv. Aquatic Ecology = Aquat Ecol Aquatic Ecology = Aquat. Ecol. Aquatic Ecology Series = Aquat Ecol Ser Aquatic Ecology Series = Aquat. Ecol. Ser. Aquatic Ecosystem Health & Management = Aquat Ecosyst Health Aquatic Ecosystem Health & Management = Aquat. Ecosyst. Health Aquatic Ecosystem Health & Management = Aquat. Ecosyst. Health Manage. Aquatic Environment : Description, Management, Conservation = Iamslic C S Aquatic Environment : Description, Management, Conservation = Iamslic. C. S. Aquatic Geochemistry = Aquat Geochem Aquatic Geochemistry = Aquat. Geochem. Aquatic Geomicrobiology = Adv Mar Biol Aquatic Geomicrobiology = Adv. Mar. Biol. Aquatic Information Resources : Tools of Our Trade = Iamslic C S Aquatic Information Resources : Tools of Our Trade = Iamslic. C. S. Aquatic Insects = Aquat Insect Aquatic Insects = Aquat. Insect. Aquatic Invasions = Aquat Invasions Aquatic Invasions = Aquat. Invasions Aquatic Invasions in The Black, Caspian, and Mediterranean Seas = Nato Sci S Ss Iv Ear Aquatic Invasions in The Black, Caspian, and Mediterranean Seas = Nato. Sci. S. Ss. Iv. Ear. Aquatic Living Resources = Aquat Living Resour Aquatic Living Resources = Aquat. Living Resour. Aquatic Mammals = Aquat Mamm Aquatic Mammals = Aquat. Mamm. Aquatic Microbial Ecology = Aquat Microb Ecol Aquatic Microbial Ecology = Aquat. Microb. Ecol. Aquatic Protected Areas As Fisheries Management Tools = Am Fish S S Aquatic Protected Areas As Fisheries Management Tools = Am. Fish. S. S. Aquatic Sciences = Aquat Sci Aquatic Sciences = Aquat. Sci. Aquatic Stewardship Education in Theory and Practice = Am Fish S S Aquatic Stewardship Education in Theory and Practice = Am. Fish. S. S. Aquatic toxicology (Amsterdam, Netherlands) = Aquat Toxicol Aquatic Toxicology and Risk Assessment : Fourteenth Volume = Am Soc Test Mater Aquatic Toxicology and Risk Assessment : Fourteenth Volume = Am. Soc. Test. Mater. Aquatic Toxicology and Risk Assessment : Thirteenth Volume = Am Soc Test Mater Aquatic Toxicology and Risk Assessment : Thirteenth Volume = Am. Soc. Test. Mater. Aquatic Toxicology = Aquat Toxicol Aquatic Toxicology = Aquat. Toxicol. Aqueous Chemistry and Geochemistry of Oxides, Oxyhydroxides, and Related Materials = Mater Res Soc Symp P Aqueous Chemistry and Geochemistry of Oxides, Oxyhydroxides, and Related Materials = Mater. Res. Soc. Symp. P. Aqueous Microwave Assisted Chemistry: Synthesis and Catalysis = Rsc Green Chem Ser Aqueous Microwave Assisted Chemistry: Synthesis and Catalysis = Rsc. Green. Chem. Ser. Aqueous Organometallic Chemistry and Catalysis = Nato Asi 3 High Tech Aqueous Organometallic Chemistry and Catalysis = Nato. Asi. 3. High. Tech. Aqueous Polymer Dispersions = Prog Coll Pol Sci S Aqueous Polymer Dispersions = Prog. Coll. Pol. Sci. S. Aqueous Two-phase Systems = Method Enzymol Aqueous Two-phase Systems = Method. Enzymol. Aquichan = Aquichan Aquila legionis. Cuadernos des estudios sobre el ejército romano = AquiLeg Aquileia nostra: bolletino dell'Associazione nazionale per Aquileia = AN Aquileia nostra. Bollettino dell'Associazione nazionale per Aquileia = AquilNost Aquinas and Maimonides On The Possibility of The Knowledge of God = Amst Stud Jew Though Aquinas and Maimonides On The Possibility of The Knowledge of God = Amst. Stud. Jew. Though. Aquinas and Maimonides On The Possibility of The Knowledge of God: An Examination of The Quaestio De Attributis = Amst Stud Jew Though Aquinas and Maimonides On The Possibility of The Knowledge of God: An Examination of The Quaestio De Attributis = Amst. Stud. Jew. Though. Aquinas As Authority = Pub Thomas Inst Aquinas As Authority = Pub. Thomas. Inst. Aquitania. Une revue inter-régionale d'archéologie = Aquitania Arab affairs (London, England) = Arab Aff Arab American Literary Fictions, Cultures, and Politics = Am Lit Read Twenty-f Arab American Literary Fictions, Cultures, and Politics = Am. Lit. Read. Twenty-f. Arab and Islamic Law Series = Arab Isl L Arab and Islamic Law Series = Arab Isl. L. Arab Culture and The Novel = Routl Stud Mid E Lit Arab Culture and The Novel = Routl. Stud. Mid. E. Lit. Arab Diaspora: Voices of An Anguished Scream = Routl Adv Midd E Isl Arab Diaspora: Voices of An Anguished Scream = Routl. Adv. Midd. E. Isl. Arab Gulf Journal of Scientific Research = Arab Gulf J. Sci. Res. Arab Gulf Journal of Scientific Research = Arab Gulf J Sci Res Arab Gulf Journal of Scientific Research = Arab Gulf J. Sci. Res. Arab Gulf Journal of Scientific Research B-agricultural and Biological Sciences = Arab Gulf J Sci Res Arab Gulf Journal of Scientific Research B-agricultural and Biological Sciences = Arab Gulf J. Sci. Res. Arabia (London, England) = Arabia Arabian Archaeology and Epigraphy = ArabAEpigr Arabian Archaeology and Epigraphy = Arab Archaeol Epigr Arabian Archaeology and Epigraphy = Arab. Archaeol. Epigr. Arabian Journal for Science and Engineering = Arab J Sci Eng Arabian Journal for Science and Engineering = Arab. J. Sci. Eng. Arabian Journal of Chemistry = Arabian J. Chem. Arabian Journal of Chemistry = Arab J Chem Arabian Journal of Chemistry = Arab. J. Chem. Arabian Journal of Geosciences = Arabian J. Geosci. Arabian Journal of Geosciences = Arab J Geosci Arabian Journal of Geosciences = Arab. J. Geosci. Arabica = Arabica Arabic and Chinese Handwriting Recognition = Lect Notes Comput Sc Arabic and Chinese Handwriting Recognition = Lect. Notes. Comput. Sc. Arabic Computational Morphology: Knowledge-based and Empirical Methods = Text Speech Lang Tec Arabic Computational Morphology: Knowledge-based and Empirical Methods = Text. Speech. Lang. Tec. Arabic in The City: Issues in Dialect Contact and Language Variation = Routl Arab Lingu Ser Arabic in The City: Issues in Dialect Contact and Language Variation = Routl. Arab. Lingu. Ser. Arabic Poetry: Trajectories of Modernity and Tradition = Routl Stud Mid E Lit Arabic Poetry: Trajectories of Modernity and Tradition = Routl. Stud. Mid. E. Lit. Arabic Rhetoric: A Pragmatic Analysis = Cult Civiliz Mid E Arabic Rhetoric: A Pragmatic Analysis = Cult. Civiliz. Mid. E. Arabic Sciences and Philosophy = Arabic Sci. Philos. Arabic Sciences and Philosophy = Arab Sci Philos Arabic Sciences and Philosophy = Arab. Sci. Philos. Arab-israeli Accords: Legal Perspectives = Cimel Bk Ser Arab-israeli Accords: Legal Perspectives = Cimel. Bk. Ser. Arab Journal of Mathematical Sciences = Arab J. Math. Sci. Arab, Muslim, Woman: Voice and Vision in Postcolonial Literature and Film = Transform Think Fem Arab, Muslim, Woman: Voice and Vision in Postcolonial Literature and Film = Transform. Think. Fem. Arab Representations of The Occident: East-west Encounters in Arabic Fiction = Cult Civiliz Mid E Arab Representations of The Occident: East-west Encounters in Arabic Fiction = Cult. Civiliz. Mid. E. Arab studies quarterly = Arab Stud Q Arachidonic Acid Metabolism in The Nervous System = Ann Ny Acad Sci Arachidonic Acid Metabolism in The Nervous System = Ann. Ny. Acad. Sci. Arachne = Arachne Arachnologische Mitteilungen = Arachnol. Mitt. A.R.A.G. national newsletter / Abortion Reform Action Group = ARAG Natl Newsl Aramco world magazine = Aramco World Mag AratirmaSonuçlariToplantisi = AST Arbeiten aus dem Paul-Ehrlich-Institut (Bundesamt fur Sera und Impfstoffe) zu Frankfurt a. M. = Arb. Paul Ehrlich Inst. Bundesamt Sera Impfstoffe Frankf. a. M. Arbeiten aus dem Paul-Ehrlich-Institut (Bundesamt fur Sera und Impfstoffe) zu Frankfurt a.M = Arb Paul Ehrlich Inst Bundesamt Sera Impfstoffe Frankf A M Arbeiten Aus Dem Paul-Ehrlich-Institut (Bundesamt Fur Sera UndImpfstoffe) Zu Frankfurt A.M. Arb Paul Ehrlich Inst Bundesamt Ser=Impfstoffe Frankf A M;; Arbeiten Aus Dem Paul-ehrlich-institut (bundesant Fur Sera Und Impfstoffe), Dem Georg-speyer-haus Und Dem Ferdinand-blum-institut Zu Frankfurt A.m. = Arb Pei Gsh Arbeiten Aus Dem Paul-ehrlich-institut (bundesant Fur Sera Und Impfstoffe), Dem Georg-speyer-haus Und Dem Ferdinand-blum-institut Zu Frankfurt A.m. = Arb. Pei. Gsh. Arbeiten aus dem Paul-Ehrlich-Institut, dem Georg-Speyer-Haus und dem Ferdinand-Blum-Institut zu Frankfurt a. M. = Arb. Paul Ehrlich Inst. Georg Speyer Haus Ferdinand Blum Inst. Frankf. a. M. Arbeiten aus dem Paul-Ehrlich-Institut, dem Georg-Speyer-Haus und dem Ferdinand-Blum-Institut zu Frankfurt a.M = Arb Paul Ehrlich Inst Georg Speyer Haus Ferdinand Blum Inst Frankf A M Arbeiten der DLG = Arb. DLG Arbeiten der Kaiserlichen Biologischen Anstalt fur Land- und Forstwirtschaft = Arb. Kais. Biol. Anst. Land Forstwirtsch. Arbeiten zur Geschichte der Medizin in Giessen = Arb Gesch Med Giessen Arbeiten Zur Kirchengeschichte = Arb Kirch Arbeiten Zur Kirchengeschichte = Arb. Kirch. Arbeiten Zur Kirchengeschichte = Arb Kirchengesch Arbeiten Zur Kirchengeschichte = Arb. Kirchengesch. Arbeiten Zur Neutestamentlichen Textforschung = Arb Neutest Textfors Arbeiten Zur Neutestamentlichen Textforschung = Arb. Neutest. Textfors. Arbeitsberichte des Instituts für Mathematische Maschinen und Datenverarbeitung (Informatik) = Arbeitsber. Inst. Math. Masch. Datenverarb. Inform. Arbeitsmedizin, Sozialmedizin, Praventivmedizin = Arbeitsmed Sozialmed Praventivmed Arbeitsmedizin Sozialmedizin Praventivmedizin = Arb Sozialmed Praven Arbeitsmedizin Sozialmedizin Praventivmedizin = Arb. Sozialmed. Praven. Arbeitspapiere des Sonderforschungsbereichs 340, Sprachtheoretische Grundlagen für die Computerlinguistik = Arbeitspapiere Sonderforschungsbereichs 340 Sprachtheor. Grundlagen Computerlinguist. Ber. Arbeitsphysiologie; internationale Zeitschrift fur angewandte Physiologie = Arbeitsphysiologie Arbeits- und Forschungsberichte zur sächsischen Bodendenkmalpflege = ArbFBerSaechs Arbeitswissenschaft in Der Betrieblichen Praxis = Arbeitswiss Betr Pra Arbeitswissenschaft in Der Betrieblichen Praxis = Arbeitswiss. Betr. Pra. Arbeit und Soziales = Arb Soz Arbetarrorelsens arsbok = Arbetarrorel Arsb Arbitration 1997: The Next Fifty Years = P Ann Meet Arbitration 1997: The Next Fifty Years = P. Ann. Meet. Arbitration in Air, Space and Telecommunications Law = Pca Peace Palace Pap Arbitration in Air, Space and Telecommunications Law = Pca. Peace. Palace. Pap. Arbitration Journal = Arbitrat J Arbitration Journal = Arbitrat. J. Arbok for Universitetet I Bergen-matematisk-naturvitenskapelig Serie = Arb U Bergen Mat-nat Arbok for Universitetet I Bergen-matematisk-naturvitenskapelig Serie = Arb. U. Bergen. Mat-nat. Arbor = Arbor Arbor-ciencia Pensamiento Y Cultura = Arbor Arbor-ciencia Pensamiento Y Cultura = Arbor. Arboreal Group Theory = Math Sci R Arboreal Group Theory = Math. Sci. R. Arboricultural Journal = Arboric. J. Arcadia = Arcadia Arcadia-zeitschrift Fur Vergleichende Literaturwissenschaft = Arcadia-z Vergleich Arcadia-zeitschrift Fur Vergleichende Literaturwissenschaft = Arcadia-z. Vergleich. Arc de cercle : an international journal of the history of the mind-sciences = Arc Cercle Archaea: Ancient Microbes, Extreme Environments, and The Origin of Life = Adv Appl Microbiol Archaea: Ancient Microbes, Extreme Environments, and The Origin of Life = Adv. Appl. Microbiol. Archaea: Ancient Microbes, Extreme Environoments, and The Origin of Life = Adv Appl Microbiol Archaea: Ancient Microbes, Extreme Environoments, and The Origin of Life = Adv. Appl. Microbiol. Archaea-an International Microbiological Journal = Archaea Archaea-an International Microbiological Journal = Archaea. Archaea = Archaea Archaea (Vancouver, B.C.) = Archaea Archaebacteria : Biochemistry and Biotechnology = Biochem Soc Symp Archaebacteria : Biochemistry and Biotechnology = Biochem. Soc. Symp. Archaeoastronomy = Archaeoastronomy Archaeofauna = Archaeofauna Archaeologia aeliana, or, Miscellaneous tracts relating to antiquity = Archaeol Aeliana Archaeologia = Archaeologia Archaeologia Austriaca = AAustr Archaeologia Bulgarica = ABulg Archaeologia Cantiana = ACant Archaeologia cantiana = Archaeol Cantiana Archaeologia geographica = AGeo Archaeologia Homerica = ArchHom Archaeologiai értesitő = AErt Archaeologiai Ertesitö = AErt Archaeologia Jugoslavica = AJug Archaeologia medievale. Cultura materiale, insediamenti, territorio = AMediev Archaeologia Mosellana = AMosel Archaeologia or Miscellaneous Tracts Relating to Antiquity Published by the Society of Antiquaries of London = Archaeologia Archaeologia Polona = APol Archaeological and Ethnological Papers of The Peabody Museum = Archaeol Ethnol Pap Archaeological and Ethnological Papers of The Peabody Museum = Archaeol. Ethnol. Pap. Archaeological and Historical Studies. The Archaeological Society of Alexandria = AHistStAlex Archaeological Chemistry = Acs Sym Ser Archaeological Chemistry = Acs. Sym. Ser. Archaeological Chemistry: Analytical Techniques and Archaeological Interpretation = Acs Sym Ser Archaeological Chemistry: Analytical Techniques and Archaeological Interpretation = Acs. Sym. Ser. Archaeological Chemistry: Materials, Methods, and Meaning = Acs Sym Ser Archaeological Chemistry: Materials, Methods, and Meaning = Acs. Sym. Ser. Archaeological Dialogues = Archaeol Dialog Archaeological Dialogues = Archaeol. Dialog. Archaeological News = ANews Archaeological news = ArchN Archaeological Prospection = Archaeol Prospect Archaeological Prospection = Archaeol. Prospect. Archaeological Reports = AR Archaeological Reports = ARepLond Archaeological Sciences '97, Proceedings = Brit Archaeol Rep In Archaeological Sciences '97, Proceedings = Brit. Archaeol. Rep. In. Archaeological Science Under A Microscope: Studies in Residue and Ancient Dna Analysis in Honour of Thomas H. Loy = Terra Australis Archaeological Science Under A Microscope: Studies in Residue and Ancient Dna Analysis in Honour of Thomas H. Loy = Terra. Australis. Archaeological Study of Rural Capitalism and Material Life: The Gibbs Farmstead in Southern Appalachia, 1790-1920 = Contrib Glob Hist Ar Archaeological Study of Rural Capitalism and Material Life: The Gibbs Farmstead in Southern Appalachia, 1790-1920 = Contrib. Glob. Hist. Ar. Archaeological Wood Properties, Chemistry, and Preservation = Adv Chem Ser Archaeological Wood Properties, Chemistry, and Preservation = Adv. Chem. Ser. Archaeologie Der Westlichen Slawen: Siedlung, Wirtschaft Und Gesellschaft Im Fruh- Und Hochmittelalterlichen Ostmitteleuropa = Reallexikon Ger Alte Archaeologie Der Westlichen Slawen: Siedlung, Wirtschaft Und Gesellschaft Im Fruh- Und Hochmittelalterlichen Ostmitteleuropa = Reallexikon. Ger. Alte. Archaeologies-journal of The World Archaeological Congress = Archaeologies Archaeologies-journal of The World Archaeological Congress = Archaeologies. Archaeologies of Internment = One World Archaeol Archaeologies of Internment = One. World. Archaeol. Archaeology. A Magazine Dealing with the Antiquity of the World = Archaeology Archaeology and Anthropology of Landscape = One World Archaeol Archaeology and Anthropology of Landscape = One. World. Archaeol. Archaeology = Archaeology Archaeology Culture and Society = Archaeol Cult Soc Archaeology Culture and Society = Archaeol. Cult. Soc. Archaeology in Oceania = Archaeol Ocean Archaeology in Oceania = Archaeol. Ocean. Archaeology of Australia Since 1788 = Contrib Glob Hist Ar Archaeology of Australia Since 1788 = Contrib. Glob. Hist. Ar. Archaeology of Capitalism in Colonial Contexts: Postcolonial Historical Archaeologies = Contrib Glob Hist Ar Archaeology of Capitalism in Colonial Contexts: Postcolonial Historical Archaeologies = Contrib. Glob. Hist. Ar. Archaeology of Colonial Identity: Power and Material Culture in The Dwars Valley, South Africa = Contrib Glob Hist Ar Archaeology of Colonial Identity: Power and Material Culture in The Dwars Valley, South Africa = Contrib. Glob. Hist. Ar. Archaeology of Industrialization = Soc Post Med Arch M Archaeology of Industrialization = Soc. Post. Med. Arch. M. Archaeology of Maritime Landscapes = When Land Meets Sea Archaeology of Maritime Landscapes = When. Land. Meets. Sea. Archaeology of Reformation 1480-1580 = Soc Post Med Arch M Archaeology of Reformation 1480-1580 = Soc. Post. Med. Arch. M. Archaeology of The Aru Islands, Eastern Indonesia = Terra Australis Archaeology of The Aru Islands, Eastern Indonesia = Terra. Australis. Archaeometallurgy of Copper: Evidence From Faynan, Jordan = Nat Sci Archaeol Archaeometallurgy of Copper: Evidence From Faynan, Jordan = Nat. Sci. Archaeol. Archaeometry = Archaeometry Archaeometry. Bulletin of the Research Laboratory for Archaeology and History of Art, Oxford University = Archaeometry Archaeomineralogy, Second Edition = Nat Sci Archaeol Archaeomineralogy, Second Edition = Nat. Sci. Archaeol. Archaiologike Ephemeris = AE Archaiologike ephemeris = AEph Archaiologikon Deltion = AD Archäographie. Archäologie und elektronische Datenverarbeitung = Archäographie Archäologie der Schweiz = Archäol. Schweiz Archäologie der Schweiz: Mitteilungsblatt der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = ArchS Archäologie der Schweiz. Mitteilungsblatt der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = ASchw Archäologie des Kantons Solothurn = ASoloth Archäologie im Kanton Bern: Fundberichte und Aufsätze = AKBern Archäologie in Deutschland = AiD Archäologie in Sachsen-Anhalt = ASachs Archäologie und Naturwissenschaften = ANaturwiss Archäologische Ausgrabungen in Baden-Württemberg = AausgrBadWürt Archäologische Berichte aus dem Yemen = ABADY Archäologische Forschungen = AF Archäologische Informationen. Mitteilungen zur Ur- und Frühgeschichte = AInf Archäologische Mitteilungen aus Iran = AMI Archäologische Mitteilungen aus Iran und Turan = AMIT Archäologische Nachrichten aus Baden = ANachrBad Archäologischer Anzeiger = AA Archäologischer Anzeiger = AA Archaologischer Anzeiger = Archaeol Anz Archäologische Sammlung der Universität Zürich = ASammlUnZuerch Archäologisches Korrespondenzblatt = AKorrBl Archaologisches Korrespondenzblatt = Archaol Korresponden Archaologisches Korrespondenzblatt = Archaol. Korresponden. Archäologisches Korrespondenzblatt: Urgeschichte, Römerzeit, Frühmittelalter = AKB Archäologisches Nachrichtenblatt = ANachr Archaologisches Nachrichtenblatt = Archaol Nachr Archaologisches Nachrichtenblatt = Archaol. Nachr. Archäologische Veröffentlichungen. Deutsches Archäologisches Institut, Abteilung Kairo = AV Archäologische Zeitung = AZ Archean Geodynamics and Environments = Geoph Monog Series Archean Geodynamics and Environments = Geoph. Monog. Series. Archean Geodynamics and Environments = Geophys Monogr Ser Archean Geodynamics and Environments = Geophys. Monogr. Ser. Archeion iatrikon epistemon = Arch Iatr Epistem Archeo. Attualità del passato = Archeo Archeografo triestino = ArcheogrTriest Archeologia classica = ArchCl Archeologia classica: rivista della Scuola naz. di Archeologia, pubbl. a cura degli Ist. di Archeologia e Storia dell'arte greca e romana e di Etruscologia e antichità italiche dell'Univ. di Roma = ArchClass Archeologia corsa = ACors Archeologia dell'architettura = AArchit Archeologia delle acque. Rivista semestrale di antropologia, archeologia, etnografia, storia dell'acqua = AAcque Archeologia delle Alpi = AAlpi Archeologia dell'Emilia-Romagna = AEmil Archeologia e calcolatori = ACalc Archeologia e società = ASoc Archeologia in Campania. Bolletino di informazioni a cura della Soprintendenza archeologica delle province di Napoli e Caserta = ACamp Archeologia, Paris. L'archéologie dans le monde et tout ce qui concerne les recherches historiques, artistiques et scientifiques sur terre et dans les mers = ArcheologiaParis Archeologia. Rivista bimestrale. Roma = ArcheologiaRoma Archeologia. Rocznik Instytutu archeologii i etnologii, Polskiej akademii nauk = ArcheologiaWarsz Archeologia subacquea. Studi, ricerche e documenti = ASubacq Archeologia (Torun, Poland) = Archeologia Archeologia, uomo, territorio. Rivista dei Gruppi archeologici Nord Italia = AUTerr Archeologia veneta = AVen Archeologia viva = AViva Archeological Papers of The American Anthropological Association = Archeol Pap Am Anthr Archeological Papers of The American Anthropological Association = Archeol. Pap. Am. Anthr. Archeological Papers of The American Anthropological Association = Arch P Amer Ant Asso Archeological Papers of The American Anthropological Association = Arch. P. Amer. Ant. Asso. Archeological Research On The History of The Italian Early Middle Ages (6th-10th Centuries) = Biblio Archeol Med Archeological Research On The History of The Italian Early Middle Ages (6th-10th Centuries) = Biblio. Archeol. Med. Archeologičeskie otkrytija = AOtkryt Archeologičeskij sbornik. Gosudarstvennyj ordena Lenina Ermitaž = ASbor Archeologické rozhledy = ARozhl Archeologični pamjatki URSR = APamKiiv Archéologie du Nil moyen = ANilMoy Archéologie en Bretagne. Bulletin d'information = ABret Archéologie neuchâteloise = Archéol. neuchâtel. Archeologija. Nacional'na akademija nauk Ukraini. Institut archeologii = ArcheologijaKiiv Archeologija. Organ na Archeologičeskija institut i muzej (pri Bălgarskata akademii nauk) = ArcheologijaSof Arche Papers On The Mathematics of Abstraction = W Ont Ser Philos Sci Arche Papers On The Mathematics of Abstraction = W. Ont. Ser. Philos. Sci. Archief. Mededelingen van het Koninklijk zeeuwsch genootschap der wetenschappen. Zeeuwsch genootschap der wetenschappen = Archief Meded k Zeeuwsch Genoot Wet Archifacts = Archifacts Archimede = Archimede Archimedes = Archimedes Archimedes: New Studies in The History and Philosophy of Science and Technology = Archimedes Archimedes: New Studies in The History and Philosophy of Science and Technology = Archimedes. Archipel-etudes Interdisciplinaires Sur Le Monde Insulindien = Archipel Archipel-etudes Interdisciplinaires Sur Le Monde Insulindien = Archipel. Architect = Architect Architecting Critical Systems, Proceedings = Lect Notes Comput Sc Architecting Critical Systems, Proceedings = Lect. Notes. Comput. Sc. Architecting Dependable Systems Iii = Lect Notes Comput Sc Architecting Dependable Systems Iii = Lect. Notes. Comput. Sc. Architecting Dependable Systems Ii = Lect Notes Comput Sc Architecting Dependable Systems Ii = Lect. Notes. Comput. Sc. Architecting Dependable Systems Iv = Lect Notes Comput Sc Architecting Dependable Systems Iv = Lect. Notes. Comput. Sc. Architecting Dependable Systems = Lect Notes Comput Sc Architecting Dependable Systems = Lect. Notes. Comput. Sc. Architecting Dependable Systems Vii = Lect Notes Comput Sc Architecting Dependable Systems Vii = Lect. Notes. Comput. Sc. Architecting Dependable Systems Vi = Lect Notes Comput Sc Architecting Dependable Systems Vi = Lect. Notes. Comput. Sc. Architecting Systems With Trustworthy Components = Lect Notes Comput Sc Architecting Systems With Trustworthy Components = Lect. Notes. Comput. Sc. Architects Journal = Architects J Architects Journal = Architects J. Architectural Design = Archit Design Architectural Design = Archit. Design Architectural Digest = Archit Digest Architectural Digest = Archit. Digest Architectural Glass to Resist Seismic and Extreme Climatic Events = Woodhead Publ Mater Architectural Glass to Resist Seismic and Extreme Climatic Events = Woodhead. Publ. Mater. Architectural Historian in America = St His A Ss Architectural Historian in America = St. His. A. Ss. Architectural History = Archit Hist Architectural History = Archit. Hist. Architectural Monographs = Archit Monogr Architectural Monographs = Archit. Monogr. Architectural record = Archit Rec Architectural Record = Archit Rec Architectural Record = Archit. Rec. Architectural Review = Archit Rev Architectural Review = Archit. Rev. Architectural Science Review = Archit Sci Rev Architectural Science Review = Archit. Sci. Rev. Architectural Theory Review = Archit Theory Rev Architectural Theory Review = Archit. Theory Rev. Architectura-zeitschrift Fur Geschichte Der Baukunst = Architectura Architectura-zeitschrift Fur Geschichte Der Baukunst = Architectura. Architectura. Zeitschrift für Geschichte der Baukunst = Architectura Architecture and Application of Biomaterials and Biomolecular Materials = Mater Res Soc Symp P Architecture and Application of Biomaterials and Biomolecular Materials = Mater. Res. Soc. Symp. P. Architecture and Civil Engineering = Adv Eng Res Architecture and Civil Engineering = Adv. Eng. Res. Architecture and Design for The Future Internet: 4ward Project = Signals Commun Techn Architecture and Design for The Future Internet: 4ward Project = Signals. Commun. Techn. Architecture and Design of Distributed Embedded Systems = Int Fed Info Proc Architecture and Design of Distributed Embedded Systems = Int. Fed. Info. Proc. Architecture = Architecture Architecture: Between Spectacle and Use = Clark Stud Vis Arts Architecture: Between Spectacle and Use = Clark. Stud. Vis. Arts. Architecture D Aujourd Hui = Archit Aujourd Hui Architecture D Aujourd Hui = Archit. Aujourd Hui Architecture Description Languages = Int Fed Info Proc Architecture Description Languages = Int. Fed. Info. Proc. Architecture, Hardware, and Forward-looking Infrared Issues in Automatic Target Recognition = P Soc Photo-opt Ins Architecture, Hardware, and Forward-looking Infrared Issues in Automatic Target Recognition = P. Soc. Photo-opt. Ins. Architecture Multifunctional Materials = Mater Res Soc Symp P Architecture Multifunctional Materials = Mater. Res. Soc. Symp. P. Architecture of Computing Systems - Arcs 2006, Proceedings = Lect Notes Comput Sc Architecture of Computing Systems - Arcs 2006, Proceedings = Lect. Notes. Comput. Sc. Architecture of Computing Systems - Arcs 2007, Proceedings = Lect Notes Comput Sc Architecture of Computing Systems - Arcs 2007, Proceedings = Lect. Notes. Comput. Sc. Architecture of Computing Systems - Arcs 2008, Proceedings = Lect Notes Comput Sc Architecture of Computing Systems - Arcs 2008, Proceedings = Lect. Notes. Comput. Sc. Architecture of Computing Systems-arcs 2009, 22nd International Conference = Lect Notes Comput Sc Architecture of Computing Systems-arcs 2009, 22nd International Conference = Lect. Notes. Comput. Sc. Architecture of Computing Systems - Arcs 2010, Proceedings = Lect Notes Comput Sc Architecture of Computing Systems - Arcs 2010, Proceedings = Lect. Notes. Comput. Sc. Architecture of Forest and Fruit Trees = Colloq Inra Architecture of Forest and Fruit Trees = Colloq. Inra. Architecture of Scientific Software = Int Fed Info Proc Architecture of Scientific Software = Int. Fed. Info. Proc. Architecture Principles: The Cornerstones of Enterprise Architecture = Enterp Eng Ser Architecture Principles: The Cornerstones of Enterprise Architecture = Enterp. Eng. Ser. Architectures and Compilation Techniques for Fine and Medium Grain Parallelism = Ifip Trans A Architectures and Compilation Techniques for Fine and Medium Grain Parallelism = Ifip. Trans. A. Architectures and Synthesizers for Ultra-low Power Fast Frequency-hopping Wsn Radios = Analog Circ Sig Proc Architectures and Synthesizers for Ultra-low Power Fast Frequency-hopping Wsn Radios = Analog. Circ. Sig. Proc. Architectures for Adaptive Software Systems = Lect Notes Comput Sc Architectures for Adaptive Software Systems = Lect. Notes. Comput. Sc. Architectures for Quality of Service in The Internet = Lect Notes Comput Sc Architectures for Quality of Service in The Internet = Lect. Notes. Comput. Sc. Architectures, Languages and Patterns for Parallel and Distributed Applications = Concur Syst Engn Ser Architectures, Languages and Patterns for Parallel and Distributed Applications = Concur. Syst. Engn. Ser. Architectures, Languages and Techniques for Concurrent Systems = Concur Syst Engn Ser Architectures, Languages and Techniques for Concurrent Systems = Concur. Syst. Engn. Ser. Architectures, Networks, and Intelligent Systems for Manufacturing Integration = P Soc Photo-opt Ins Architectures, Networks, and Intelligent Systems for Manufacturing Integration = P. Soc. Photo-opt. Ins. Architecture-the Aia Journal = Architecture-aia J Architecture-the Aia Journal = Architecture-aia. J. Architecture (Washington, D.C.) = Architecture Architext = Architext Archivalische Zeitschrift = Arch Z Archivaria = Archivaria Archiv Der Elektrischen Und Ubertragung = Arch Elektr Ubertrag Archiv Der Elektrischen Und Ubertragung = Arch. Elektr. Ubertrag. Archiv der Geschichte der Naturwissenschaften = Arch Gesch Naturwiss Archiv der Julius Klaus-Stiftung fur Vererbungsforschung, Sozialanthropologie und Rassenhygiene = Arch Julius Klaus Stift Vererbungsforsch Sozialanthropol Rassenhyg Archiv der Julius Klaus-Stiftung fur Vererbungsforschung, Sozialanthropologie und Rassenhygiene = Arch. Julius Klaus Stift. Vererbungsforsch. Sozialanthropol. Rassenhyg. Archiv Der Mathematik = Arch Math Archiv Der Mathematik = Arch. Math. Archiv der Mathematik = Arch. Math. (Basel) Archiv der Pharmazie = Arch Pharm Archiv der Pharmazie = Arch. Pharm. Archiv Der Pharmazie = Arch Pharm Archiv Der Pharmazie = Arch. Pharm. Archiv der Pharmazie = Arch. Pharm. (Weinheim) Archiv Der Pharmazie=Arch Pharm (Weinheim);; Archiv der Pharmazie und Berichte der Deutschen Pharmazeutischen Gesellschaft = Arch Pharm Ber Dtsch Pharm Ges Archiv der Pharmazie und Berichte der Deutschen Pharmazeutischen Gesellschaft = Arch. Pharm. Ber. Dtsch. Pharm. Ges. Archiv Der Pharmazie Und Berichte Der Deutschen Pharmazeutischen Gesselschaft = Archiv Pharm Bericht Archiv Der Pharmazie Und Berichte Der Deutschen Pharmazeutischen Gesselschaft = Archiv Pharm. Bericht. Archiv der Pharmazie (Weinheim, Germany) = Arch. Pharm. (Weinheim, Ger.) Archive for history of exact sciences = AHES Archive for history of exact sciences = Arch Hist Exact Sci Archive for History of Exact Sciences = Arch. Hist. Exact Sci. Archive for History of Exact Sciences = Arch Hist Exact Sci Archive for History of Exact Sciences = Arch. Hist. Exact Sci. Archive for Mathematical Logic = Arch. Math. Logic Archive for Mathematical Logic = Arch Math Logic Archive for Mathematical Logic = Arch. Math. Logic Archive for Rational Mechanics and Analysis = Arch. Rational Mech. Anal. Archive for Rational Mechanics and Analysis = Arch Ration Mech An Archive for Rational Mechanics and Analysis = Arch. Ration. Mech. An. Archive for Rational Mechanics and Analysis = Arch. Ration. Mech. Anal. Archive for The Psychology of Religion-archiv Fur Religionspsychologie = Arch Psychol Relig Archive for The Psychology of Religion-archiv Fur Religionspsychologie = Arch. Psychol. Relig. Archive of Applied Mechanics = Arch Appl Mech Archive of Applied Mechanics = Arch. Appl. Mech. Archive of Fishery and Marine Research = Arch Fish Mar Res Archive of Fishery and Marine Research = Arch. Fish. Mar. Res. Archive reporter. Data Archive on Adolescent Pregnancy and Pregnancy Prevention = Arch Report Archives = Archives Archives Belges = Arch. Belg. Archives belges de dermatologie = Arch Belg Dermatol Archives Belges de Dermatologie = Arch. Belg. Dermatol. Archives belges de dermatologie et de syphiligraphie = Arch Belg Dermatol Syphiligr Archives Belges de Dermatologie et de Syphiligraphie = Arch. Belg. Dermatol. Syphiligr. Archives Belges de Medecine Sociale, Hygiene, Medecine du Travail et Medecine Legale = Arch. Belg. Med. Soc. Archives belges de medecine sociale, hygiene, medecine du travail et medecine legale. Belgisch archief van sociale geneeskunde, hygiene, arbeidsgeneeskunde en gerechtelijke geneeskunde = Arch Belg Med Soc Archives d'Anatomie, d'Histologie et d'Embryologie = Arch. Anat. Histol. Embryol. Archives d'anatomie, d'histologie et d'embryologie normales et experimentales = Arch Anat Histol Embryol Archives D Anatomie Et De Cytologie Pathologiques = Arch Anat Cytol Path Archives D Anatomie Et De Cytologie Pathologiques = Arch. Anat. Cytol. Path. Archives d'anatomie et de cytologie pathologiques = Arch Anat Cytol Pathol Archives d'Anatomie et de Cytologie Pathologiques = Arch. Anat. Cytol. Pathol. Archives D Anatomie Et de Cytologie Pathologiques=Arch Anat Cytol Pathol;; Archives D Anatomie Microscopique Et De Morphologie Experimentale = Arch Anat Microsc Mo Archives D Anatomie Microscopique Et De Morphologie Experimentale = Arch. Anat. Microsc. Mo. Archives d'anatomie microscopique et de morphologie experimentale = Arch Anat Microsc Morphol Exp Archives d'Anatomie Microscopique et de Morphologie Experimentale = Arch. Anat. Microsc. Morphol. Exp. Archives d'anatomie pathologique = Arch Anat Pathol (Paris) Archives d'Anatomie Pathologique = Arch. Anat. Pathol. (Paris) Archives De Biochimie Et Cosmetologie = Arch Biochim Cosmeto Archives De Biochimie Et Cosmetologie = Arch. Biochim. Cosmeto. Archives de biologie = Arch Biol (Liege) Archives de Biologie = Arch. Biol. (Liege) Archives de l'Institut Pasteur d Algerie = Arch. Inst. Pasteur Alger. Archives de L Institut Pasteur D Algerie=Arch Inst Pasteur Alger;; Archives de l'Institut Pasteur d'Algerie Institut Pasteur d'Algerie = Arch Inst Pasteur Alger Archives de l'Institut Pasteur de la Martinique = Arch Inst Pasteur Martinique Archives de l'Institut Pasteur de Madagascar = Arch Inst Pasteur Madagascar Archives de l'Institut Pasteur de Madagascar = Arch. Inst. Pasteur Madagascar Archives de L Institut Pasteur De Madagascar=Arch Inst Pasteur Madagascar;; Archives de l'Institut Pasteur de Tunis = Arch Inst Pasteur Tunis Archives de l'Institut Pasteur de Tunis = Arch. Inst. Pasteur Tunis Archives de L Institut Pasteur De Tunis=Arch Inst Pasteur Tunis;; Archives de l'Institut Pasteur hellenique = Arch Inst Pasteur Hell Archives de medecine generale et tropicale = Arch Med Gen Trop Archives de Medecine Generale et Tropicale = Arch. Med. Gen. Trop. Archives de medecine sociale = Arch Med Soc Archives de Pediatrie=Arch Pediatr;; Archives de Pediatrie = Arch. Pediatr. Archives De Pediatrie = Arch Pediatrie Archives De Pediatrie = Arch. Pediatrie Archives de pediatrie : organe officiel de la Societe francaise de pediatrie = Arch Pediatr Archives de philosophie = Arch Philos Archives De Philosophie = Arch Philos Archives De Philosophie = Arch. Philos. Archives de philosophie du droit = APhD Archives de philosophie: recherches et documentation = ArchPhilos Archives De Psychologie = Arch Psychologie Archives De Psychologie = Arch. Psychologie Archives de sciences sociales des religions = Arch Sci Soc Relig Archives De Sciences Sociales Des Religions = Arch Sci Soc Relig Archives De Sciences Sociales Des Religions = Arch. Sci. Soc. Relig. Archives des maladies de l'appareil digestif et des maladies de la nutrition = Arch Mal Appar Dig Mal Nutr Archives des Maladies de l'Appareil Digestif et des Maladies de la Nutrition = Arch. Mal. Appar. Dig. Mal. Nutr. Archives des maladies du coeur et des vaisseaux = Arch Mal Coeur Vaiss Archives des Maladies du Coeur et des Vaisseaux = Arch. Mal. Coeur Vaiss. Archives Des Maladies Du Coeur Et Des Vaisseaux=Arch Mal Coeur Vaiss;; Archives Des Maladies Du Coeur Et Des Vaisseaux = Arch Mal Coeur Vaiss Archives Des Maladies Du Coeur Et Des Vaisseaux = Arch. Mal. Coeur Vaiss. Archives des maladies professionnelles de medecine du travail et de securite sociale = Arch Mal Prof Archives des Maladies Professionnelles de Medecine du Travail et de Securite Sociale = Arch. Mal. Prof. Archives Des Maladies Professionnelles De Medecine Du Travail Et De Securite Sociale = Arch Mal Prof Med Archives Des Maladies Professionnelles De Medecine Du Travail Et De Securite Sociale = Arch. Mal. Prof. Med. Archives des Maladies Professionnelles et de l'Environment = Arch. Mal. Prof. Environ. Archives Des Maladies Professionnelles Et De L Environnement = Arch Mal Prof Enviro Archives Des Maladies Professionnelles Et De L Environnement = Arch. Mal. Prof. Enviro. Archives Des Sciences = Arch Sci Archives Des Sciences = Arch. Sci. Archives des sciences / editees par la Societe de physique et d'histoire naturelle de Geneve = Arch Sci Archives des sciences et compte rendu des seances de la Societe / edites par la Societe de physique et d'histoire naturelle de Geneve = Arch Sci Compte Rendu Seances Soc Archives Des Sciences Physiologiques = Arch Sci Physiol Archives Des Sciences Physiologiques = Arch. Sci. Physiol. Archives des sciences physiologiques = Arch Sci Physiol (Paris) Archives des Sciences Physiologiques = Arch. Sci. Physiol. (Paris) Archives de stomatologie = Arch Stomatol Archives De Zoologie Experimentale Et Generale = Arch Zool Exp Gen Archives De Zoologie Experimentale Et Generale = Arch. Zool. Exp. Gen. Archives d'histoire doctrinale et littéraire du Moyen Âge = AHMA Archives d'ophtalmologie = Arch Ophtalmol (Paris) Archives d'Ophtalmologie = Arch. Ophtalmol. (Paris) Archives D Ophtalmologie = Arch Ophtalmol-paris Archives D Ophtalmologie = Arch. Ophtalmol-paris. Archives d'ophtalmologie et revue generale d'ophtalmologie = Arch Ophtalmol Rev Gen Ophtalmol Archives d'Ophtalmologie et Revue Generale d'Ophtalmologie = Arch. Ophtalmol. Rev. Gen. Ophtalmol. Archives Europeennes De Sociologie = Arch Eur Sociol Archives Europeennes De Sociologie = Arch. Eur. Sociol. Archives europeennes de sociologie. European journal of sociology. Europaisches Archiv fur Soziologie = Arch Eur Sociol Archives for dermatological research. Archiv fur dermatologische Forschung = Arch Dermatol Res Archives for Dermatological Research (Archiv fur Dermatologische Forschung) = Arch. Dermatol. Res. Archives for Meteorology Geophysics and Bioclimatology Series A-meteorology and Atmospheric Physics = Arch Meteor Geophy A Archives for Meteorology Geophysics and Bioclimatology Series A-meteorology and Atmospheric Physics = Arch. Meteor. Geophy. A. Archives for Meteorology Geophysics and Bioclimatology Series B-theoretical and Applied Climatology = Arch Meteor Geophy B Archives for Meteorology Geophysics and Bioclimatology Series B-theoretical and Applied Climatology = Arch. Meteor. Geophy. B. Archives for Philosophy of Law and Social Philosophy, Supplement = Arsp Beiheft Archives for Philosophy of Law and Social Philosophy, Supplement = Arsp. Beiheft. Archives francaises de pediatrie = Arch Fr Pediatr Archives Francaises de Pediatrie = Arch. Fr. Pediatr. Archives Francaises De Pediatrie = Arch Fr Pediatr Archives Francaises De Pediatrie = Arch. Fr. Pediatr. Archives francaises des maladies de l'appareil digestif = Arch Fr Mal App Dig Archives Francaises des Maladies de l'Appareil Digestif = Arch. Fr. Mal. App. Dig. Archives Francaises Des Maladies De L Appareil Digestif = Arch Fr Mal App Dig Archives Francaises Des Maladies De L Appareil Digestif = Arch. Fr. Mal. App. Dig. Archives hospitalieres = Arch Hosp (Paris) Archives internationales Claude Bernard = Arch Int Claude Bernard Archives internationales de neurologie, des maladies hereditaires, de medecine mentale et psychosomatique = Arch Int Neurol Archives Internationales De Pharmacodynamie Et De Therapie = Arch Int Pharmacod T Archives Internationales De Pharmacodynamie Et De Therapie = Arch. Int. Pharmacod. T. Archives internationales de pharmacodynamie et de therapie = Arch Int Pharmacodyn Ther Archives Internationales de Pharmacodynamie et de Therapie = Arch. Int. Pharmacodyn. Ther. Archives internationales de physiologie = Arch Int Physiol Archives Internationales De Physiologie De Biochimie Et De Biophysique = Arch Int Physiol Bio Archives Internationales De Physiologie De Biochimie Et De Biophysique = Arch. Int. Physiol. Bio. Archives internationales de physiologie, de biochimie et de biophysique = Arch Int Physiol Biochim Biophys Archives Internationales de Physiologie, de Biochimie et de Biophysique = Arch. Int. Physiol. Biochim. Biophys. Archives Internationales De Physiologie Et De Biochimie = Arch Int Phys Bioch Archives Internationales De Physiologie Et De Biochimie = Arch. Int. Phys. Bioch. Archives internationales de physiologie et de biochimie = Arch Int Physiol Biochim Archives Internationales de Physiologie et de Biochimie = Arch. Int. Physiol. Biochim. Archives Internationales D'histoire Des Idees = Arch Int Hist Idees Archives Internationales D'histoire Des Idees = Arch. Int. Hist. Idees Archives Internationales D Histoire Des Idees = Arch Int Hist Idees Archives Internationales D Histoire Des Idees = Arch. Int. Hist. Idees Archives Internationales D'histoire Des Idees = Int Arch H Archives Internationales D'histoire Des Idees = Int. Arch. H. Archives internationales d'histoire des sciences = AIHS Archives Internationales d'Histoire des Sciences = Arch. Internat. Hist. Sci. Archives internationales d'histoire des sciences = Arch Int Hist Sci (Paris) Archives italiennes de biologie = Arch Ital Biol Archives Italiennes de Biologie=Arch Ital Biol;; Archives Italiennes de Biologie = Arch. Ital. Biol. Archives Italiennes De Biologie = Arch Ital Biol Archives Italiennes De Biologie = Arch. Ital. Biol. Archives medicales de l'Ouest: Angers/Nantes/Rennes = Arch Med Ouest Archives mediterraneennes de medecine = Arch Mediterr Med Archives Mediterraneennes de Medecine = Arch. Mediterr. Med. Archives. Middlesex Hospital = Arch Middx Hosp Archives Neerlandaises Sci Exactes et Naturelles = Arch. Neerl. Sci. Exactes Nat. Archives of Acoustics = Arch Acoust Archives of Acoustics = Arch. Acoust. Archives of Agronomy and Soil Science = Arch. Agron. Soil Sci. Archives of AIDS research = Arch AIDS Res Archives of American Art Journal = Arch Am Art J Archives of American Art Journal = Arch. Am. Art J. Archives of andrology = Arch Androl Archives of Andrology=Arch Androl;; Archives of Andrology = Arch. Androl. Archives of Andrology = Arch Andrology Archives of Andrology = Arch. Andrology Archives of animal nutrition = Arch Anim Nutr Archives of Animal Nutrition = Arch Anim Nutr Archives of Animal Nutrition = Arch. Anim. Nutr. Archives of Animal Nutrition-archiv Fur Tierernahrung = Arch Anim Nutr Archives of Animal Nutrition-archiv Fur Tierernahrung = Arch. Anim. Nutr. Archives of Asian Art = Arch Asian Art Archives of Asian Art = Arch. Asian Art Archives of biochemistry and biophysics = Arch Biochem Biophys Archives of Biochemistry and Biophysics=Arch Biochem Biophys;; Archives of Biochemistry and Biophysics = Arch Biochem Biophys Archives of Biochemistry and Biophysics = Arch. Biochem. Biophys. Archives of biochemistry = Arch Biochem Archives of Biochemistry = Arch Biochem Archives of Biochemistry = Arch. Biochem. Archives of Biological Sciences = Arch Biol Sci Archives of Biological Sciences = Arch. Biol. Sci. Archives of Biology = Arch Biol Archives of Biology = Arch. Biol. Archives of Budo = Arch Budo Archives of Budo = Arch. Budo Archives of Cardiovascular Diseases = Arch Cardiovasc Dis Archives of Cardiovascular Diseases = Arch. Cardiovasc. Dis. Archives of child health = Arch Child Health Archives of Civil and Mechanical Engineering = Arch Civ Mech Eng Archives of Civil and Mechanical Engineering = Arch. Civ. Mech. Eng. Archives of Clinical Neuropsychology = Arch Clin Neuropsych Archives of Clinical Neuropsychology = Arch. Clin. Neuropsych. Archives of clinical neuropsychology : the official journal of the National Academy of Neuropsychologists = Arch Clin Neuropsychol Archives of Computational Methods in Engineering = Arch. Comput. Meth. Eng. Archives of Computational Methods in Engineering = Arch Comput Method E Archives of Computational Methods in Engineering = Arch. Comput. Method. E. Archives of Computational Methods in Engineering = Arch. Comput. Methods Engrg. Archives of dermatological research = Arch Dermatol Res Archives of Dermatological Research=Arch Dermatol Res;; Archives of Dermatological Research = Arch Dermatol Res Archives of Dermatological Research = Arch. Dermatol. Res. Archives of Dermatology and Syphilology = Arch Dermatol Syph Archives of Dermatology and Syphilology = Arch. Dermatol. Syph. Archives of dermatology and syphilology = Arch Derm Syphilol Archives of dermatology = Arch Dermatol Archives of Dermatology=Arch Dermatol;; Archives of Dermatology = Arch Dermatol Archives of Dermatology = Arch. Dermatol. Archives of disease in childhood = Arch Dis Child Archives of Disease in Childhood = Arch Dis Child Archives of Disease in Childhood = Arch. Dis. Child. Archives of Disease In Childhood=Arch Dis Child;; Archives of disease in childhood. Education and practice edition = Arch Dis Child Educ Pract Ed Archives of Disease in Childhood-education and Practice Edition = Arch Dis Childhood-e Archives of Disease in Childhood-education and Practice Edition = Arch. Dis. Childhood-e. Archives of Disease in Childhood-fetal and Neonatal Edition = Arch Dis Child-fetal Archives of Disease in Childhood-fetal and Neonatal Edition = Arch. Dis. Child-fetal. Archives of disease in childhood. Fetal and neonatal edition = Arch Dis Child Fetal Neonatal Ed Archives of Disease in Childhood. Fetal and Neonatal Edition = Arch. Dis. Child. Fetal Neonatal Ed. Archives of Disease In Childhood. Fetal and Neonatal Edition=Arch Dis Child Fetal Neonatal Ed;; Archives of Economic History=Archives Econ. Hist. Archives of emergency medicine = Arch Emerg Med Archives of Emergency Medicine = Arch Emerg Med Archives of Emergency Medicine = Arch. Emerg. Med. Archives of Environmental and Occupational Health = Arch. Environ. Occup. Health Archives of environmental contamination and toxicology = Arch Environ Contam Toxicol Archives of Environmental Contamination and Toxicology=Arch Environ Contam Toxicol;; Archives of Environmental Contamination and Toxicology = Arch. Environ. Contam. Toxicol. Archives of Environmental Contamination and Toxicology = Arch Environ Con Tox Archives of Environmental Contamination and Toxicology = Arch. Environ. Con. Tox. Archives of environmental health = Arch Environ Health Archives of Environmental Health=Arch Environ Health;; Archives of Environmental Health = Arch Environ Health Archives of Environmental Health = Arch. Environ. Health Archives of Environmental & Occupational Health = Arch Environ Occup H Archives of Environmental & Occupational Health = Arch. Environ. Occup. H. Archives of environmental & occupational health = Arch Environ Occup Health Archives of Environmental & Occupational Health = Arch. Environ. Occup. Health Archives of Environmental Protection = Arch Environ Prot Archives of Environmental Protection = Arch. Environ. Prot. Archives of Environment Contamination and Toxicology = Arch. Environ. Contam. Toxicol. Archives of Environment Health = Arch. Environ. Health Archives of Facial Plastic Surgery = Arch Facial Plast S Archives of Facial Plastic Surgery = Arch. Facial Plast. S. Archives of Facial Plastic Surgery = Arch. Facial Plast. Surg. Archives of facial plastic surgery : official publication for the American Academy of Facial Plastic and Reconstructive Surgery, Inc. and the International Federation of Facial Plastic Surgery Societies = Arch Facial Plast Surg Archives of family medicine = Arch Fam Med Archives of Family Medicine=Arch Fam Med;; Archives of Family Medicine = Arch Fam Med Archives of Family Medicine = Arch. Fam. Med. Archives of Foundry Engineering = Arch. Foundry Eng. Archives of General Psychiatry = Arch Gen Psychiat Archives of General Psychiatry = Arch. Gen. Psychiat. Archives of general psychiatry = Arch Gen Psychiatry Archives of General Psychiatry=Arch Gen Psychiatry;; Archives of General Psychiatry = Arch. Gen. Psychiatry Archives of Gerontology and Geriatrics = Arch Gerontol Geriat Archives of Gerontology and Geriatrics = Arch. Gerontol. Geriat. Archives of gerontology and geriatrics = Arch Gerontol Geriatr Archives of Gerontology and Geriatrics = Arch. Gerontol. Geriatr. Archives of gerontology and geriatrics. Supplement = Arch Gerontol Geriatr Suppl Archives of Gerontology and Geriatrics. Supplement = Arch. Gerontol. Geriatr. Suppl. Archives of gynecology and obstetrics = Arch Gynecol Obstet Archives of Gynecology and Obstetrics=Arch Gynecol Obstet;; Archives of Gynecology and Obstetrics = Arch Gynecol Obstet Archives of Gynecology and Obstetrics = Arch. Gynecol. Obstet. Archives of gynecology = Arch Gynecol Archives of Gynecology = Arch Gynecol Archives of Gynecology = Arch. Gynecol. Archives of Gynecology = Arch Gynecol Obstet Archives of Gynecology = Arch. Gynecol. Obstet. Archives of histology and cytology = Arch Histol Cytol Archives of Histology and Cytology=Arch Histol Cytol;; Archives of Histology and Cytology = Arch Histol Cytol Archives of Histology and Cytology = Arch. Histol. Cytol. Archives of Industrial Hygiene and Occupational Medicine = Arch Indhyg Occ Med Archives of Industrial Hygiene and Occupational Medicine = Arch. Indhyg. Occ. Med. Archives of industrial hygiene and occupational medicine = Arch Ind Hyg Occup Med Archives of Insect Biochemistry and Physiology = Arch Insect Biochem Archives of Insect Biochemistry and Physiology = Arch. Insect Biochem. Archives of insect biochemistry and physiology = Arch Insect Biochem Physiol Archives of Insect Biochemistry and Physiology=Arch Insect Biochem Physiol;; Archives of Insect Biochemistry and Physiology = Arch. Insect Biochem. Physiol. Archives of interamerican rheumatology : A.I.R = Arch Interam Rheumatol Archives of Interamerican Rheumatology = Arch Interam Rheumat Archives of Interamerican Rheumatology = Arch. Interam. Rheumat. Archives of Interamerican Rheumatology = Arch. Interam. Rheumatol. Archives of internal medicine = Arch Intern Med Archives of Internal Medicine=Arch Intern Med;; Archives of Internal Medicine = Arch Intern Med Archives of Internal Medicine = Arch. Intern. Med. Archives of Iranian medicine = Arch Iran Med Archives of Iranian Medicine = Arch Iran Med Archives of Iranian Medicine = Arch. Iran. Med. Archives of Mechanics = Arch Mech Archives of Mechanics = Arch. Mech. Archives of medical research = Arch Med Res Archives of Medical Research=Arch Med Res;; Archives of Medical Research = Arch Med Res Archives of Medical Research = Arch. Med. Res. Archives of Medical Science = Arch Med Sci Archives of Medical Science = Arch. Med. Sci. Archives of Metallurgy and Materials = Arch Metall Mater Archives of Metallurgy and Materials = Arch. Metall. Mater. Archives of Metallurgy = Arch Metall Archives of Metallurgy = Arch. Metall. Archives of microbiology = Arch Microbiol Archives of Microbiology=Arch Microbiol;; Archives of Microbiology = Arch Microbiol Archives of Microbiology = Arch. Microbiol. Archives of Mining Sciences = Arch Min Sci Archives of Mining Sciences = Arch. Min. Sci. Archives of natural history = Arch Nat Hist Archives of neurology and psychiatry = Arch Neurol Psychiatry Archives of Neurology and Psychiatry = Arch Neuro Psychiatr Archives of Neurology and Psychiatry = Arch. Neuro. Psychiatr. Archives of neurology = Arch Neurol Archives of Neurology=Arch Neurol;; Archives of Neurology = Arch. Neurol. Archives of Neurology = Arch Neurol-chicago Archives of Neurology = Arch. Neurol-chicago. Archives of ophthalmology = Arch Ophthal Archives of Ophthalmology=Arch Ophthalmol;; Archives of Ophthalmology = Arch. Ophthalmol. Archives of Ophthalmology = Arch Ophthalmol-chic Archives of Ophthalmology = Arch. Ophthalmol-chic. Archives of oral biology = Arch Oral Biol Archives of Oral Biology=Arch Oral Biol;; Archives of Oral Biology = Arch Oral Biol Archives of Oral Biology = Arch. Oral Biol. Archives of orthopaedic and trauma surgery = Arch Orthop Trauma Surg Archives of Orthopaedic and Trauma Surgery=Arch Orthop Trauma Surg;; Archives of Orthopaedic and Trauma Surgery = Arch. Orthop. Trauma Surg. Archives of Orthopaedic and Trauma Surgery = Arch Orthop Traum Su Archives of Orthopaedic and Trauma Surgery = Arch. Orthop. Traum. Su. Archives of orthopaedic and traumatic surgery. Archiv fur orthopadische und Unfall-Chirurgie = Arch Orthop Trauma Surg Archives of Orthopaedic and Traumatic Surgery = Arch. Orthop. Trauma. Surg. Archives of Otolaryngology = Archiv Otolaryngol Archives of Otolaryngology = Archiv. Otolaryngol. Archives of otolaryngology = Arch Otolaryngol Archives of Otolaryngology = Arch. Otolaryngol. Archives of otolaryngology (Chicago, Ill. : 1960) = Arch Otolaryngol Archives of Otolaryngology -- Head and Neck Surgery=Arch Otolaryngol Head Neck Surg;; Archives of Otolaryngology -- Head and Neck Surgery = Arch. Otolaryngol. Head Neck Surg. Archives of Otolaryngology-head & Neck Surgery = Arch Otolaryngol Archives of Otolaryngology-head & Neck Surgery = Arch. Otolaryngol. Archives of Oto-rhino-laryngology-archiv Fur Ohren-nasen-und Kehlkopfheilkunde = Arch Oto-rhino-laryn Archives of Oto-rhino-laryngology-archiv Fur Ohren-nasen-und Kehlkopfheilkunde = Arch. Oto-rhino-laryn. Archives of Oto-rhino-laryngology = Arch Oto-rhino-laryn Archives of Oto-rhino-laryngology = Arch. Oto-rhino-laryn. Archives of oto-rhino-laryngology = Arch Otorhinolaryngol Archives of Oto-Rhino-Laryngology = Arch. Otorhinolaryngol. Archives of Oto-Rhino-Laryngology. Supplement = Arch. Otorhinolaryngol. Suppl. Archives of Pathology and Laboratory Medicine=Arch Pathol Lab Med;; Archives of Pathology and Laboratory Medicine = Arch. Pathol. Lab. Med. Archives of Pathology = Arch Pathol Archives of Pathology = Arch. Pathol. Archives of pathology = Arch Pathol (Chic) Archives of pathology & laboratory medicine = Arch Pathol Lab Med Archives of Pathology & Laboratory Medicine = Arch Pathol Lab Med Archives of Pathology & Laboratory Medicine = Arch. Pathol. Lab. Med. Archives of Pediatrics & Adolescent Medicine = Arch Pediat Adol Med Archives of Pediatrics & Adolescent Medicine = Arch. Pediat. Adol. Med. Archives of pediatrics & adolescent medicine = Arch Pediatr Adolesc Med Archives of Pediatrics and Adolescent Medicine=Arch Pediatr Adolesc Med;; Archives of Pediatrics and Adolescent Medicine = Arch. Pediatr. Adolesc. Med. Archives of pediatrics = Arch Pediatr Archives of Pediatrics = Arch Pediatr Archives of Pediatrics = Arch. Pediatr. Archives of Pharmacal Research = Arch. Pharmacal Res. Archives of pharmacal research = Arch Pharm Res Archives of Pharmacal Research = Arch Pharm Res Archives of Pharmacal Research = Arch. Pharm. Res. Archives of Physical Medicine and Rehabilitation = Arch Phys Med Rehab Archives of Physical Medicine and Rehabilitation = Arch. Phys. Med. Rehab. Archives of physical medicine and rehabilitation = Arch Phys Med Rehabil Archives of Physical Medicine and Rehabilitation=Arch Phys Med Rehabil;; Archives of Physical Medicine and Rehabilitation = Arch. Phys. Med. Rehabil. Archives of physical medicine = Arch Phys Med Archives of physical therapy = Arch Phys Ther Archives of physiology and biochemistry = Arch Physiol Biochem Archives of Physiology and Biochemistry=Arch Physiol Biochem;; Archives of Physiology and Biochemistry = Arch Physiol Biochem Archives of Physiology and Biochemistry = Arch. Physiol. Biochem. Archives of Podiatric Medicine and Foot Surgery = Arch Podiat Med Ft S Archives of Podiatric Medicine and Foot Surgery = Arch. Podiat. Med. Ft. S. Archives of Psychiatric Nursing = Arch Psychiat Nurs Archives of Psychiatric Nursing = Arch. Psychiat. Nurs. Archives of psychiatric nursing = Arch Psychiatr Nurs Archives of Psychiatric Nursing=Arch Psychiatr Nurs;; Archives of Psychiatric Nursing = Arch. Psychiatr. Nurs. Archives of Psychology = Arch Psychol Archives of Psychology = Arch. Psychol. Archives of Razi Institute = Arch. Razi Inst. Archives of sexual behavior = Arch Sex Behav Archives of Sexual Behavior=Arch Sex Behav;; Archives of Sexual Behavior = Arch Sex Behav Archives of Sexual Behavior = Arch. Sex. Behav. Archives of STD/HIV research = Arch STD HIV Res Archives of Suicide Research = Arch Suicide Res Archives of Suicide Research = Arch. Suicide Res. Archives of suicide research : official journal of the International Academy for Suicide Research = Arch Suicide Res Archives of surgery = Arch Surg Archives of Surgery=Arch Surg;; Archives of Surgery = Arch. Surg. Archives of Surgery = Arch Surg-chicago Archives of Surgery = Arch. Surg-chicago. Archives of surgery (Chicago, Ill. : 1960) = Arch Surg Archives of The Foundation of Thanatology = Arch Found Thanatol Archives of The Foundation of Thanatology = Arch. Found. Thanatol. Archives of toxicology = Arch Toxicol Archives of Toxicology=Arch Toxicol;; Archives of Toxicology = Arch Toxicol Archives of Toxicology = Arch. Toxicol. Archives of Toxicology. Supplement=Arch Toxicol Suppl;; Archives of Toxicology. Supplement = Arch. Toxicol. Suppl. Archives of Toxicology : Supplement = Arch Tox S Archives of Toxicology : Supplement = Arch. Tox. S. Archives of virology = Arch Virol Archives of Virology=Arch Virol;; Archives of Virology = Arch Virol Archives of Virology = Arch. Virol Archives of Virology = Arch. Virol. Archives of virology. Supplementum = Arch Virol Suppl Archives of Virology. Supplementum=Arch Virol Suppl;; Archives of Virology. Supplementum = Arch. Virol. Suppl. Archives of Virology, Supplementum = Arch Vir S Archives of Virology, Supplementum = Arch. Vir. S. Archives of Womens Mental Health = Arch Women Ment Hlth Archives of Womens Mental Health = Arch. Women. Ment. Hlth. Archives of women's mental health = Arch Womens Ment Health Archives Roumaines de Pathologie Experimentale et de Microbiologie = Arch. Roum. Pathol. Exp. Microbiol. Archives roumaines de pathologie experimentales et de microbiologie = Arch Roum Pathol Exp Microbiol Archiv for pharmaci og chemi = Arch Pharm Chem (Kbh) Archiv Fur Acker Und Pflanzenbau Und Bodenkunde-archives of Agronomy and Soil Science = Arch Acker Pfl Boden Archiv Fur Acker Und Pflanzenbau Und Bodenkunde-archives of Agronomy and Soil Science = Arch. Acker Pfl. Boden. Archiv für Begriffsgeschichte = ArchBegriffsGesch Archiv für Begriffsgeschichte: Bausteine zu einem historischen Wörterbuch der Philosophie = ABG Archiv Fur Das Eisenhuttenwesen = Arch Eisenhuttenwes Archiv Fur Das Eisenhuttenwesen = Arch. Eisenhuttenwes. Archiv Fur Das Studium Der Neueren Sprachen Und Literaturen = Arch Stud Neue Spr Archiv Fur Das Studium Der Neueren Sprachen Und Literaturen = Arch. Stud. Neue. Spr. Archiv Fur Dermatologie Und Syphilis = Arch Dermatol Syph-g Archiv Fur Dermatologie Und Syphilis = Arch. Dermatol. Syph-g. Archiv fur dermatologische Forschung = Arch Dermatol Forsch Archiv fur Dermatologische Forschung = Arch. Dermatol. Forsch. Archiv Fur Dermatologische Forschung = Arch Dermatol Forsch Archiv Fur Dermatologische Forschung = Arch. Dermatol. Forsch. Archiv Fur Die Gesamte Physiologie Des Menschen Und Der Tiere = Arch Gesamte Physiol Archiv Fur Die Gesamte Physiologie Des Menschen Und Der Tiere = Arch. Gesamte Physiol. Archiv fur die gesamte Psychologie = Arch Gesamte Psychol Archiv fur die Gesamte Psychologie = Arch. Gesamte Psychol. Archiv Fur Die Gesamte Psychologie = Arch Gesamte Psychol Archiv Fur Die Gesamte Psychologie = Arch. Gesamte Psychol. Archiv fur die gesamte Virusforschung = Arch Gesamte Virusforsch Archiv fur die Gesamte Virusforschung = Arch. Gesamte Virusforsch. Archiv Fur Die Gesamte Virusforschung = Arch Ges Virusforsch Archiv Fur Die Gesamte Virusforschung = Arch. Ges. Virusforsch. Archiv fur die Geschichte von Oberfranken = Arch Gesch Oberfranken Archiv Fur Elektronik Und Ubertragungstechnik = Aeu-arch Elektron Ub Archiv Fur Elektronik Und Ubertragungstechnik = Aeu-arch. Elektron. Ub. Archiv fur Elektrotechnik = Arch. Elektrotech. Archiv Fur Elektrotechnik = Arch Elektrotech Archiv Fur Elektrotechnik = Arch. Elektrotech. Archiv Fur Entwicklungsmechanik Der Organismen = Arch Entwicklung Org Archiv Fur Entwicklungsmechanik Der Organismen = Arch. Entwicklung. Org. Archiv fur Experimentalle Pathologie und Pharmakologie = Arch. Exp. Pathol. Pharmakol. Archiv Fur Experimentelle Pathologie Und Pharmakologie = Arch Exp Pathol Phar Archiv Fur Experimentelle Pathologie Und Pharmakologie = Arch. Exp. Pathol. Phar. Archiv fur experimentelle Veterinarmedizin = Arch Exp Veterinarmed Archiv fur Experimentelle Veterinarmedizin = Arch. Exp. Veterinarmed. Archiv Fur Experimentelle Veterinarmedizin = Arch Exp Vet Med Archiv Fur Experimentelle Veterinarmedizin = Arch. Exp. Vet. Med. Archiv Fur Experimentelle Zellforschung = Arch Exp Zellforsch Archiv Fur Experimentelle Zellforschung = Arch. Exp. Zellforsch. Archiv Fur Fischereiwissenschaft = Arch Fischereiwiss Archiv Fur Fischereiwissenschaft = Arch. Fischereiwiss. Archiv für Forstwesen = Arch. Forstwes. Archiv Fur Geflugelkunde = Arch Geflugelkd Archiv Fur Geflugelkunde = Arch. Geflugelkd. Archiv fur Genetik = Arch Genet (Zur) Archiv fur Genetik = Arch. Genet. (Zur.) Archiv für Geschichte der Philosophie = AGPh Archiv Fur Geschichte Der Philosophie = Arch Gesch Philos Archiv Fur Geschichte Der Philosophie = Arch. Gesch. Philos. Archiv fur Geschichte des Buchwesens = Arch Gesch Buchwes Archiv Fur Geschichte Des Buchwesens = Arch Gesch Buchwes Archiv Fur Geschichte Des Buchwesens = Arch. Gesch. Buchwes. Archiv Fur Geschichte Des Buchwesens, Bd 64 = Arch Gesch Buchwes Archiv Fur Geschichte Des Buchwesens, Bd 64 = Arch. Gesch. Buchwes. Archiv Fur Geschichte Des Buchwesens-studien = Arch Gesch Buchwes-s Archiv Fur Geschichte Des Buchwesens-studien = Arch. Gesch. Buchwes-s. Archiv Fur Geschwulstforschung = Arch Geschwulstforsc Archiv Fur Geschwulstforschung = Arch. Geschwulstforsc. Archiv fur Geschwulstforschung = Arch Geschwulstforsch Archiv fur Geschwulstforschung = Arch. Geschwulstforsch. Archiv fur Gewerbepathologie und Gewerbehygiene = Arch Gewerbepathol Gewerbehyg Archiv fur Gynakologie = Arch Gynakol Archiv fur Gynakologie = Arch. Gynakol. Archiv Fur Gynakologie = Arch Gynakol Archiv Fur Gynakologie = Arch. Gynakol. Archiv Fur Hydrobiologie = Arch Hydrobiol Archiv Fur Hydrobiologie = Arch. Hydrobiol. Archiv für Hydrobiologie = Arch. Hydrobiol. Archiv fur Hydrobiologie, Supplement = Arch. Hydrobiol. Suppl. Archiv fur Hygiene und Bakteriologie = Arch Hyg Bakteriol Archiv fur Hygiene und Bakteriologie = Arch. Hyg. Bakteriol. Archiv Fur Hygiene Und Bakteriologie = Arch Hyg Bakteriol Archiv Fur Hygiene Und Bakteriologie = Arch. Hyg. Bakteriol. Archiv Fur Japanische Chirurgie = Arch Jpn Chir Archiv Fur Japanische Chirurgie = Arch. Jpn. Chir. Archiv fur Kinderheilkunde = Arch Kinderheilkd Archiv fur Kinderheilkunde = Arch. Kinderheilkd. Archiv fur Kinderheilkunde. Beihefte = Arch Kinderheilkd Suppl Archiv fur klinische Medizin = Arch Klin Med Archiv fur Klinische Medizin = Arch. Klin. Med. Archiv Fur Klinische Medizin = Arch Klin Med Archiv Fur Klinische Medizin = Arch. Klin. Med. Archiv Fur Klinische Und Experimentelle Dermatologie = Arch Klin Exp Derm Archiv Fur Klinische Und Experimentelle Dermatologie = Arch. Klin. Exp. Derm. Archiv fur klinische und experimentelle Dermatologie = Arch Klin Exp Dermatol Archiv fur Klinische und Experimentelle Dermatologie = Arch. Klin. Exp. Dermatol. Archiv Fur Klinische Und Experimentelle Ohren-nasen-und Kehlkopfheilkunde = Arch Klin Exp Ohr Archiv Fur Klinische Und Experimentelle Ohren-nasen-und Kehlkopfheilkunde = Arch. Klin. Exp. Ohr. Archiv fur klinische und experimentelle Ohren- Nasen- und Kehlkopfheilkunde = Arch Klin Exp Ohren Nasen Kehlkopfheilkd Archiv fur Klinische und Experimentelle Ohren-, Nasen- und Kehlkopfheilkunde = Arch. Klin. Exp. Ohren. Nasen. Kehlkopfheilkd. Archiv fur Kreislaufforschung = Arch Kreislaufforsch Archiv fur Kreislaufforschung = Arch. Kreislaufforsch. Archiv Fur Kreislaufforschung = Arch Kreislaufforsch Archiv Fur Kreislaufforschung = Arch. Kreislaufforsch. Archiv fur Kriminologie = Arch. Krim. Archiv fur Kriminologie = Arch Kriminol Archiv fur Kriminologie = Arch. Kriminol. Archiv Fur Kriminologie=Arch Kriminol;; Archiv für Kulturgeschichte = AKG Archiv fur Kultur-geschichte = Arch Kulturgesch Archiv fur Lagerstattenforschung = Arch. Lagerstattenforsch. Archiv fur lebensmittelhygiene = Arch Lebensmittelhyg Archiv fur Lebensmittelhygiene = Arch. Lebensmittelhyg. Archiv Fur Lebensmittelhygiene = Arch Lebensmittelhyg Archiv Fur Lebensmittelhygiene = Arch. Lebensmittelhyg. Archiv für Meteorologie, Geophysik und Bioklimatologie = Arch. Meteor. Geophys. Bioklimatol. Archiv Fur Meteorologie Geophysik Und Bioklimatologie Serie A-meteorologie Und Geophysik = Arch Meteor Geophy A Archiv Fur Meteorologie Geophysik Und Bioklimatologie Serie A-meteorologie Und Geophysik = Arch. Meteor. Geophy. A. Archiv fur Meteorologie, Geophysik, und Bioklimatologie Serie A Meteorologie und Geophysik = Arch. Meteorol. Geophys. Bioklimatol. A Archiv für Meteorologie, Geophysik und Bioklimatologie, Serie B = Arch. Meteorol. Geophys. Bioklimatol., Ser. B Archiv Fur Meteorologie Geophysik Und Bioklimatologie Serie B-klimatologie Umweltmeteorologie Strahlungsforschung = Arch Meteor Geophy B Archiv Fur Meteorologie Geophysik Und Bioklimatologie Serie B-klimatologie Umweltmeteorologie Strahlungsforschung = Arch. Meteor. Geophy. B. Archiv fur Meteorologie, Geophysik und Bioklimatologie. Serie B: Klimatologie, Umweltmeteorologie, Strahlungsforschung = Arch Meteorol Geophys Bioklimatol [B] Archiv fur Mikrobiologie = Arch Mikrobiol Archiv fur Mikrobiologie = Arch. Mikrobiol. Archiv Fur Mikrobiologie = Arch Mikrobiol Archiv Fur Mikrobiologie = Arch. Mikrobiol. Archiv Fur Mikroskopische Anatomie = Arch Mikrosk Anat Archiv Fur Mikroskopische Anatomie = Arch. Mikrosk. Anat. Archiv Fur Mikroskopische Anatomie Und Entwicklungsgeschichte = Arch Mikro Anat Entw Archiv Fur Mikroskopische Anatomie Und Entwicklungsgeschichte = Arch. Mikro. Anat. Entw. Archiv Fur Mikroskopische Anatomie Und Entwicklungsmechanik = Arch Mikrosk Anat En Archiv Fur Mikroskopische Anatomie Und Entwicklungsmechanik = Arch. Mikrosk. Anat. En. Archiv Fur Molluskenkunde = Archiv Molluskenkd Archiv Fur Molluskenkunde = Archiv Molluskenkd. Archiv Fur Molluskenkunde = Arch Molluskenkd Archiv Fur Molluskenkunde = Arch. Molluskenkd. Archiv für Musikwissenschaft = AMW Archiv Fur Musikwissenschaft = Arch Musikwiss Archiv Fur Musikwissenschaft = Arch. Musikwiss. Archiv für Naturschutz und Landschaftsforschung = Arch. Nat.schutz Landsch.forsch. Archiv Fur Ohren-nasen-und Kehlkopfheilkunde-archives of Oto-rhino-laryngology = Arch Ohren Nasen Keh Archiv Fur Ohren-nasen-und Kehlkopfheilkunde-archives of Oto-rhino-laryngology = Arch. Ohren. Nasen. Keh. Archiv fur Ohren-, Nasen- und Kehlkopfheilkunde = Arch. Ohren Nasen Kehlkopfheilkd. Archiv fur Ohren-, Nasen- und Kehlkopfheilkunde, vereinigt mit Zeitschrift fur Hals-, Nasen- und Ohrenheilkunde = Arch Ohren Nasen Kehlkopfheilkd Archiv für Orientforschung = AfO Archiv fur Orientforschung = Arch Orientforsch Archiv für Orientforschung: Internationale Zeitschrift für die Wissenschaft vom Vorderen Orient = AOF Archiv Fur Orthopadische Und Unfallchirurgie = Arch Orthopad Unfall Archiv Fur Orthopadische Und Unfallchirurgie = Arch. Orthopad. Unfall. Archiv fur orthopadische und Unfall-Chirurgie = Arch Orthop Unfallchir Archiv fur Orthopadische und Unfall-Chirurgie = Arch. Orthop. Unfallchir. Archiv für Papyrusforschung und verwandte Gebiete = APF Archiv fur Papyrusforschung und verwandte Gebiete = Arch Papyrusforsch Archiv für Papyrusforschung und verwandte Gebiete = ArchPF Archiv Fur Papyrusforschung Und Verwandte Gebiete Beihefte = Arch Papyrus Verwand Archiv Fur Papyrusforschung Und Verwandte Gebiete Beihefte = Arch. Papyrus. Verwand. Archiv Fur Pathologische Anatomie Und Physiologie Und Fur Klinische Medicin = Arch Pathol Anat Ph Archiv Fur Pathologische Anatomie Und Physiologie Und Fur Klinische Medicin = Arch. Pathol. Anat. Ph. Archiv fur physikalische Therapie = Arch Phys Ther (Leipz) Archiv fur Physikalische Therapie = Arch. Phys. Ther. (Leipz.) Archiv Fur Phytopathologie Und Pflanzenschutz-archives of Phytopathology and Plant Protection = Arch Phytopathol Pfl Archiv Fur Phytopathologie Und Pflanzenschutz-archives of Phytopathology and Plant Protection = Arch. Phytopathol. Pfl. Archiv fur Protistenkunde = Arch Protistenkd Archiv Fur Protistenkunde = Arch Protistenkd Archiv Fur Protistenkunde = Arch. Protistenkd. Archiv Fur Psychiatrie Und Nervenkrankheiten = Arch Psychiat Nerven Archiv Fur Psychiatrie Und Nervenkrankheiten = Arch. Psychiat. Nerven. Archiv fur Psychiatrie und Nervenkrankheiten = Arch Psychiatr Nervenkr Archiv fur Psychiatrie und Nervenkrankheiten = Arch. Psychiatr. Nervenkr. Archiv fur Psychiatrie und Nervenkrankheiten, vereinigt mit Zeitschrift fur die gesamte Neurologie und Psychiatrie = Arch Psychiatr Nervenkr Z Gesamte Neurol Psychiatr Archiv fur Psychologie = Arch Psychol (Frankf) Archiv fur Psychologie = Arch. Psychol. (Frankf.) Archiv Fur Psychologie=Arch Psychol (Frankf);; Archiv Fur Psychologie = Arch Psychol-ger Archiv Fur Psychologie = Arch. Psychol-ger. Archiv Fur Reformationsgeschichte-archive for Reformation History = Arch Reformationsges Archiv Fur Reformationsgeschichte-archive for Reformation History = Arch. Reformationsges. Archiv fur Reformationsgeschichte = Arch Reformation Hist Archiv für Religionsgeschichte = ArchRel Archiv Fur Soziale Gesetzgebung Und Statistik = Arch Soz Gesetzgeb S Archiv Fur Soziale Gesetzgebung Und Statistik = Arch. Soz. Gesetzgeb. S. Archiv Fur Sozialgeschichte, 34 Band, 1994 = Arch Sozialgesch Archiv Fur Sozialgeschichte, 34 Band, 1994 = Arch. Sozialgesch. Archiv Fur Sozialgeschichte, 35. Bd, 1995 = Arch Sozialgesch Archiv Fur Sozialgeschichte, 35. Bd, 1995 = Arch. Sozialgesch. Archiv fur Sozialgeschichte = Arch Sozialgesch Archiv Fur Sozialgeschichte = Arch Sozialgesch Archiv Fur Sozialgeschichte = Arch. Sozialgesch. Archiv Fur Sozialgeschichte <d> = Arch Sozialgesch Archiv Fur Sozialgeschichte <d> = Arch. Sozialgesch. Archiv Fur Sozialwissenschaft Und Sozialpolitik = Arch Sozialwiss Sozi Archiv Fur Sozialwissenschaft Und Sozialpolitik = Arch. Sozialwiss. Sozi. Archiv Fur Technisches Messen Und Industrielle Messtechnik = Arch Tech Mess Ind M Archiv Fur Technisches Messen Und Industrielle Messtechnik = Arch. Tech. Mess. Ind. M. Archiv Fur Technisches Messen Und Messtechnische Praxis = Arch Tech Mess Archiv Fur Technisches Messen Und Messtechnische Praxis = Arch. Tech. Mess. Archiv Fur Tierernahrung-archives of Animal Nutrition = Arch Tierernahr Archiv Fur Tierernahrung-archives of Animal Nutrition = Arch. Tierernahr. Archiv fur Tierernahrung = Arch Tierernahr Archiv fur Tierernahrung = Arch. Tierernahr. Archiv Fur Tierernahrung=Arch Tierernahr;; Archiv Fur Tierzucht-archives of Animal Breeding = Arch Tierzucht Archiv Fur Tierzucht-archives of Animal Breeding = Arch. Tierzucht. Archiv fur Toxikologie = Arch Toxikol Archiv fur Toxikologie = Arch. Toxikol. Archiv Fur Toxikologie = Arch Toxikol Archiv Fur Toxikologie = Arch. Toxikol. Archivi. Archivi d'Italia e rassegna internazionale degli archivi = Archivi Archivii italiani di laringologia = Arch Ital Laringol Archivii Italiani di Laringologia = Arch. Ital. Laringol. Archivio della Corrispondenza degli Scienziati Italiani = Arch. Corrisp. Sci. Italiani Archivio della Societa romana di storia patria = Arch Soc Rom Stor Patria Archivio della Società romana di storia patria = ArchStorRom Archivio "de Vecchi" per l'anatomia patologica e la medicina clinica = Arch De Vecchi Anat Patol Archivio de Vecchi per l'Anatomia Patologica e la Medicina Clinica = Arch. de Vecchi Anat. Patol. Archivio di chirurgia del torace = Archivio Chir Torace Archivio di chirurgia toracica e cardiovascolare = Arch Chir Torac Cardiovasc Archivio di Chirurgia Toracica e Cardiovascolare = Arch. Chir. Torac. Cardiovasc. Archivio di farmacologia sperimentale e scienze affini = Arch Farmacol Sper Sci Affin Archivio di fisiologia = Arch Fisiol Archivio di Fisiologia = Arch. Fisiol. Archivio di medicina interna = Arch Med Interna Archivio di Medicina Interna = Arch. Med. Interna Archivio di medicina mutualistica = Arch Med Mutual Archivio Di Oceanografia E Limnologia = Arch Oceanogr Limnol Archivio Di Oceanografia E Limnologia = Arch. Oceanogr. Limnol. Archivio di ortopedia = Arch Ortop Archivio di Ortopedia = Arch. Ortop. Archivio di ostetricia e ginecologia = Arch Ostet Ginecol Archivio di Ostetricia e Ginecologia = Arch. Ostet. Ginecol. Archivio di ottalmologia = Arch Ottamol Archivio di patologia e clinica medica = Arch Patol Clin Med Archivio di Patologia e Clinica Medica = Arch. Patol. Clin. Med. Archivio di psicologia, neurologia e psichiatria = Arch Psicol Neurol Psichiatr Archivio di Psicologia, Neurologia e Psichiatria = Arch. Psicol. Neurol. Psichiatr. Archivio di radiologia = Arch Radiol Archivio di scienze biologiche = Arch Sci Biol (Bologna) Archivio di Scienze Biologiche = Arch. Sci. Biol. (Bologna) Archivio di tisiologia = Arch Tisiol Archivio di tisiologia e delle malattie dell'apparato respiratorio = Arch Tisiol Mal Appar Respir Archivio di Tisiologia e delle Malattie dell Apparato Respiratorio = Arch. Tisiol. Mal. Appar. Respir. Archivio "E. Maragliano" di patologia e clinica = Arch Maragliano Patol Clin Archivio "E. Maragliano" di Patologia e Clinica = Arch. Maragliano Patol. Clin. Archivio Glottologico Italiano = AGI Archivio internazionale di studi neurologici = Arch Internazionale Studi Neurol Archivio italiano delle malattie dell'apparato digerente = Arch Ital Mal Appar Dig Archivio Italiano delle Malattie dell Apparato Digerente = Arch. Ital. Mal. Appar. Dig. Archivio Italiano di Anatomia e di Embriologia = Arch. Ital. Anat. Embriol. Archivio italiano di anatomia e di embriologia. Italian journal of anatomy and embryology = Arch Ital Anat Embriol Archivio italiano di anatomia e istologia patologica = Arch Ital Anat Istol Patol Archivio Italiano di Anatomia e Istologia Patologica = Arch. Ital. Anat. Istol. Patol. Archivio italiano di chirurgia = Arch Ital Chir Archivio Italiano di Chirurgia = Arch. Ital. Chir. Archivio italiano di dermatologia, sifilografia, e venereologia = Arch Ital Dermatol Sifilogr Venereol Archivio italiano di dermatologia, venereologia, e sessuologia = Arch Ital Dermatol Venereol Sessuol Archivio Italiano di Dermatologia, Venereologia e Sessuologia = Arch. Ital. Dermatol. Venereol. Sessuol. Archivio italiano di otologia, rinologia e laringologia = Arch Ital Otol Rinol Laringol Archivio Italiano di Otologia, Rinologia e Laringologia = Arch. Ital. Otol. Rinol. Laringol. Archivio italiano di otologia, rinologia e laringologia. Supplemento = Arch Ital Otol Rinol Laringol Suppl Archivio Italiano di Otologia, Rinologia e Laringologia. Supplemento = Arch. Ital. Otol. Rinol. Laringol. Suppl. Archivio italiano di otologia, rinologia, laringologia, e patologia cervico-facciale = Arch Ital Otol Rinol Laringol Patol Cervicofacc Archivio Italiano di Otologia, Rinologia, Laringologia e Patologia Cervico-Facciale = Arch. Ital. Otol. Rinol. Laringol. Patol. Cervicofacc. Archivio italiano di otologia, rinologia, laringologia e patologia cervico-facciale. Supplemento = Arch Ital Otol Rinol Laringol Patol Cervicofacc Suppl Archivio Italiano di Otologia, Rinologia, Laringologia e Patologia Cervico-Facciale. Supplemento = Arch. Ital. Otol. Rinol. Laringol. Patol. Cervicofacc. Suppl. Archivio italiano di patologia e clinica dei tumori = Arch Ital Patol Clin Tumori Archivio Italiano di Patologia e Clinica dei Tumori = Arch. Ital. Patol. Clin. Tumori Archivio italiano di pediatria e puericoltura = Arch Ital Pediatr Pueric Archivio Italiano di Pediatria e Puericoltura = Arch. Ital. Pediatr. Pueric. Archivio italiano di scienze farmacologiche = Arch Ital Sci Farmacol Archivio Italiano di Scienze Farmacologiche = Arch. Ital. Sci. Farmacol. Archivio italiano di scienze mediche tropicali e di parassitologia = Arch Ital Sci Med Trop Parassitol Archivio Italiano di Scienze Mediche Tropicali e di Parassitologia = Arch. Ital. Sci. Med. Trop. Parassitol. Archivio Italiano di Urologia, Andrologia=Arch Ital Urol Androl;; Archivio Italiano di Urologia, Andrologia = Arch. Ital. Urol. Androl. Archivio italiano di urologia, andrologia : organo ufficiale [di] Societa italiana di ecografia urologica e nefrologica / Associazione ricerche in urologia = Arch Ital Urol Androl Archivio italiano di urologia = Arch Ital Urol Archivio Italiano di Urologia = Arch. Ital. Urol. Archivio italiano di urologia e nefrologia = Arch Ital Urol Nefrol Archivio Italiano di Urologia e Nefrologia = Arch. Ital. Urol. Nefrol. Archivio Italiano di Urologia, Nefrologia, Andrologia = Arch. Ital. Urol. Nefrol. Androl. Archivio Monaldi per la tisiologia e le malattie dell'apparato respiratorio = Arch Monaldi Archivio Monaldi per la Tisiologia e le Malattie dell Apparato Respiratorio = Arch. Monaldi Archivio Monaldi per le malattie del torace = Arch Monaldi Mal Torace Archivio Monaldi per le Malattie del Torace = Arch. Monaldi Mal. Torace Archivio - Ospedale al mare = Arch Osp Mare Archivio per le scienze mediche = Arch Sci Med (Torino) Archivio per le Scienze Mediche = Arch. Sci. Med. (Torino) Archivio "Putti" di chirurgia degli organi di movimento = Arch Putti Chir Organi Mov Archivio Putti di Chirurgia degli Organi di Movimento = Arch. Putti Chir. Organi Mov. Archivio stomatologico = Arch Stomatol (Napoli) Archivio Stomatologico = Arch. Stomatol. (Napoli) Archivio Storico Italiano = Arch Storico Ital Archivio Storico Italiano = Arch. Storico Ital. Archivio storico italiano = Arch Stor Ital Archivio storico lombardo = Arch Stor Lomb Archivio storico per la Calabria e la Lucania = ArchStorCal Archivio Storico per la Calabria e la Lucania = ASCL Archivio storico per la Sicilia orientale = ArchStorSicOr Archivio storico per le province napoletane = Arch Stor Prov Napol Archivio storico pugliese = ArchStorPugl Archivio Storico Pugliese = ASP Archivio Storico Sardo = ASSARD Archivio storico siciliano (Palermo, Italy : 1946) = Arch Stor Sicil Archivio storico siracusano = ArchStorSir Archivio veneto (1927) = Arch Veneto Archivio veterinario italiano = Arch Vet Ital Archivio Veterinario Italiano = Arch Vet Ital Archivio Veterinario Italiano = Arch. Vet. Ital. Archivists Library = Arch Lib Archivists Library = Arch. Lib. Archivmitteilungen = Archivmitteilungen Archivni casopis = Arch Cas Archivo de prehistoria levantina = ArchPrehistLev Archivo Español de Arqueología = AEA Archivo español de arqueología = AEspA Archivo Espanol De Arqueologia = Arch Espan Arqueol Archivo Espanol De Arqueologia = Arch. Espan. Arqueol. Archivo Espanol De Arte = Arch Espan Art Archivo Espanol De Arte = Arch. Espan. Art. Archivo espanol de morfologia = Arch Esp Morfol Archivo Espanol de Morfologia = Arch. Esp. Morfol. Archivo hispalense = Arch Hisp Archivo Hispalense-revista Historica Literaria Y Artistica = Arch Hispal-rev Hist Archivo Hispalense-revista Historica Literaria Y Artistica = Arch. Hispal-rev. Hist. Archivo ibero-americano = Arch Ibero Am Archiv orientalni = Arch Orient Archiv Orientalni = Arch Orient Archiv Orientalni = Arch. Orient. Archiv orientální = ArchOrient Archív orientální. Quarterly Journal of African and Asian Studies = ArOr Archív orientální. Quarterly Journal of African, Asian and Latin American Studies. Monografie Archívu orientálního = ArOrMono Archív orientální. Quarterly Journal of African, Asian and Latin American Studies. Supplementa = ArOrSuppl Archivos argentinos de dermatologia = Arch Argent Dermatol Archivos Argentinos de Dermatologia = Arch. Argent. Dermatol. Archivos argentinos de pediatria = Arch Argent Pediatr Archivos Argentinos de Pediatria = Arch. Argent. Pediatr. Archivos Argentinos De Pediatria = Arch Argent Pediatr Archivos Argentinos De Pediatria = Arch. Argent. Pediatr. Archivos argentinos de tisiologia = Arch Argent Tisiol Archivos argentinos de tisiologia y neumonologia = Arch Argent Tisiol Neumonol Archivos cubanos de cancerologia = Arch Cuba Cancerol Archivos De Alergia E Inmunologia Clinica = Arch Alerg Inmunol C Archivos De Alergia E Inmunologia Clinica = Arch. Alerg. Inmunol. C. Archivos de biologia andina = Arch Biol Andina Archivos de Biologia Andina = Arch. Biol. Andina Archivos De Biologia Y Medicina Experimentales = Arch Biol Med Exp Archivos De Biologia Y Medicina Experimentales = Arch. Biol. Med. Exp. Archivos de biologia y medicina experimentales = Arch Biol Med Exp (Santiago) Archivos de Biologia y Medicina Experimentales = Arch. Biol. Med. Exp. (Santiago) Archivos de bronconeumologia = Arch Bronconeumol Archivos de Bronconeumologia=Arch Bronconeumol;; Archivos de Bronconeumologia = Arch. Bronconeumol. Archivos De Bronconeumologia = Arch Bronconeumol Archivos De Bronconeumologia = Arch. Bronconeumol. Archivos de cardiologia de Mexico = Arch Cardiol Mex Archivos de Cardiologia de Mexico = Arch. Cardiol. Mex. Archivos de enfermedades del corazon y vasos = Arch Enferm Coraz Vasos Archivos de Enfermedades del Corazon y Vasos = Arch. Enferm. Coraz. Vasos Archivos de farmacologia y toxicologia = Arch Farmacol Toxicol Archivos de Farmacologia y Toxicologia = Arch. Farmacol. Toxicol. Archivos de histologia normal y patologica = Arch Histol Norm Patol Archivos de Histologia Normal y Patologica. = Arch. Histol. Norm. Patol. Archivos De Historia Da Medicina Portugueza = Arch Hist Med Port Archivos De Investigacion Medica = Arch Invest Med Archivos De Investigacion Medica = Arch. Invest. Med. Archivos de investigacion medica = Arch Invest Med (Mex) Archivos de Investigacion Medica = Arch. Invest. Med. (Mex.) Archivos de la Fundacion Roux-Ocefa = Arch Fund Roux Ocefa Archivos de la Fundacion Roux-Ocefa = Arch. Fund. Roux. Ocefa Archivos De La Sociedad Americana De Oftalmologia Y Optometria = Arch Soc Am Oftalmol Archivos De La Sociedad Americana De Oftalmologia Y Optometria = Arch. Soc. Am. Oftalmol. Archivos de la Sociedad de Cirujanos de Chile = Arch Soc Cir Chile Archivos de la Sociedad Espanola de Oftalmologia = Arch Soc Esp Oftalmol Archivos de la Sociedad Oftalmologica Hispano-Americana = Archivos Soc Oftalmol Hisp Am Archivos del Colegio Medico de El Salvador = Arch Col Med El Salv Archivos del Colegio Medico de El Salvador = Arch. Col. Med. El Salv. Archivos Del Instituto De Biologia Andina = Arch I Biol Andina Archivos Del Instituto De Biologia Andina = Arch. I. Biol. Andina Archivos del Instituto de Biologia Andina = Arch Inst Biol Andina Archivos del Instituto de Biologia Andina = Arch. Inst. Biol. Andina Archivos Del Instituto De Cardiologia De Mexico = Arch I Cardiol Mex Archivos Del Instituto De Cardiologia De Mexico = Arch. I. Cardiol. Mex. Archivos del Instituto de Cardiologia de Mexico = Arch Inst Cardiol Mex Archivos del Instituto de Cardiologia de Mexico = Arch. Inst. Cardiol. Mex. Archivos Del Instituto de Cardiologia De Mexico=Arch Inst Cardiol Mex;; Archivos del Instituto de Farmacologia Experimental = Arch. Inst. Farmacol. Exp. (Madr.) Archivos del Instituto de Farmacologia Experimental (Medicina) = Arch Inst Farmacol Exp (Madr) Archivos de medicina experimental; trabajos del Instituto Nacional de Ciencias Medicas = Arch Med Exp Archivos de medicina infantil = Arch Med Infant Archivos de medicina interna (Montevideo, Uruguay) = Arch Med Intern Archivos De Medicina Veterinaria = Arch Med Vet Archivos De Medicina Veterinaria = Arch. Med. Vet. Archivos De Neurobiologia = Arch Neurobiol Archivos De Neurobiologia = Arch. Neurobiol. Archivos de neurobiologia = Arch Neurobiol (Madr) Archivos de Neurobiologia = Arch. Neurobiol. (Madr.) Archivos de odonto estomatologia = Arch Odonto Estomatol Archivos de Odonto Estomatologia = Arch. Odonto Estomatol. Archivos de oftalmologia de Buenos Aires = Arch Oftalmol B Aires Archivos de Oftalmologia de Buenos Aires = Arch. Oftalmol. B. Aires Archivos de pediatria = Arch Pediatr (Barc) Archivos de pediatria del Uruguay = Arch Pediatr Urug Archivos de Pediatria del Uruguay = Arch. Pediatr. Urug. Archivos De Zootecnia = Arch Zootec Archivos De Zootecnia = Arch. Zootec. Archivos dominicanos de pediatria = Arch Domin Pediatr Archivos espanoles de urologia = Arch Esp Urol Archivos Espanoles de Urologia=Arch Esp Urol;; Archivos Espanoles de Urologia = Arch. Esp. Urol. Archivos. Havana. Universidad. Hospital Universitario "General Calixto Garcia" = Arch Hosp Univ Archivos latinoamericanos de nutricion = Arch Latinoam Nutr Archivos Latinoamericanos de Nutricion=Arch Latinoam Nutr;; Archivos Latinoamericanos de Nutricion = Arch. Latinoam. Nutr. Archivos Latinoamericanos De Nutricion = Arch Latinoam Nutr Archivos Latinoamericanos De Nutricion = Arch. Latinoam. Nutr. Archivos medicos de Cuba = Arch Med Cuba Archivos medicos mexicanos = Arch Medicos Mex Archivos medicos panamenos = Arch Med Panamenos Archivos Medicos Panamenos = Arch. Med. Panamenos Archivos uruguayos de medicina, cirugia y especialidades = Arch Urug Med Cir Espec Archivos venezolanos de medicina tropical y parasitologia medica = Arch Venez Med Trop Parasitol Med Archivos venezolanos de puericultura y pediatria = Arch Venez Pueric Pediatr Archivum chirurgicum Neerlandicum = Arch Chir Neerl Archivum Chirurgicum Neerlandicum = Arch Chir Neerl Archivum Chirurgicum Neerlandicum = Arch. Chir. Neerl. Archivum Combustionis = Arch. Combust. Archivum franciscanum historicum : periodica publicatio trimestris cura pp. Collegii D. Bonaventurae = Arch Franciscanum Hist Archivum Histologicum Japonicum = Arch Histol Cytol Archivum Histologicum Japonicum = Arch. Histol. Cytol. Archivum Histologicum Japonicum = Arch Histol Japon Archivum Histologicum Japonicum = Arch. Histol. Japon. Archivum Histologicum Japonicum = Arch. Histol. Jpn. Archivum histologicum Japonicum. Nippon soshikigaku kiroku = Arch Histol Jpn Archivum Immunolgiae et Therapiae Experimentalis = Arch. Immunol. Ther. Exp. Archivum Immunologiae Et Therapiae Experimentalis = Arch Immunol Ther Ex Archivum Immunologiae Et Therapiae Experimentalis = Arch. Immunol. Ther. Ex. Archivum immunologiae et therapiae experimentalis = Arch Immunol Ther Exp (Warsz) Archivum Immunologiae et Therapiae Experimentalis = Arch. Immunol. Ther. Exp. (Warsz.) Archivum Immunologiae Et Therapiae Experimentalis=Arch Immunol Ther Exp (Warsz);; Archivum : International Review On Archives = Arch Int Re Archivum : International Review On Archives = Arch. Int. Re. Archivum Latinitatis Medii Aevi (Bulletin Du Cange) = ALMA Archivum Linguisticum = Arch Linguist Archivum Linguisticum = Arch. Linguist. Archivum Societatis Zoologicae Botanicae Fennicae Vanamo = Arch. Soc. Zool. Bot. Fenn. Vanamo Archivum Veterinarium Polonicum = Arch. Vet. Pol. Archivum veterinarium Polonicum / Polish Academy of Sciences, Committee of Veterinary Sciences = Arch Vet Pol Archiwum Historii i Filozofii Medycyny = Arch. Hist. Filoz. Med. Archiwum historii i filozofii medycyny / Polskii Towarzystwo Historii Medycyny i Farmacji = Arch Hist Filoz Med Archiwum historii medycyny = Arch Hist Med (Warsz) Archiwum Historii Medycyny = Arch. Hist. Med. (Warsz.) Archiwum Mechaniki Stosowanej = Arch Mech Archiwum Mechaniki Stosowanej = Arch. Mech. Archiwum medycyny sadowej i kryminologii = Arch Med Sadowej Kryminol Arcispedale S. Anna di Ferrara = Arcisp. S. Anna Ferrara Arctic and Alpine Biodiversity: Patterns, Causes and Ecosystem Consequences = Ecol Stu An Arctic and Alpine Biodiversity: Patterns, Causes and Ecosystem Consequences = Ecol. Stu. An. Arctic and Alpine Research = Arct. Alp. Res. Arctic and Alpine Research = Arctic Alpine Res Arctic and Alpine Research = Arctic Alpine Res. Arctic, Antarctic, and Alpine Research = Arct., Antarc., Alp. Res. Arctic Antarctic and Alpine Research = Arct Antarct Alp Res Arctic Antarctic and Alpine Research = Arct. Antarct. Alp. Res. Arctic anthropology = Arctic Anthropol Arctic Anthropology = Arctic Anthropol Arctic Anthropology = Arctic Anthropol. Arctic = Arctic Arctic medical research = Arctic Med Res Arctic Medical Research = Arctic Med. Res. Arctic Oil and Gas: Sustainability At Risk? = Routl Explor Environ Arctic Oil and Gas: Sustainability At Risk? = Routl. Explor. Environ. Arctic Region and Antartica Issues and Research = Arct Reg Antarct Iss Arctic Region and Antartica Issues and Research = Arct. Reg. Antarct. Iss. Arctic Sea Ice Decline: Observations, Projections, Mechanisms, and Implications = Geophys Monogr Ser Arctic Sea Ice Decline: Observations, Projections, Mechanisms, and Implications = Geophys. Monogr. Ser. Arctos. Acta philologica Fennica = Arctos Ardea = Ardea Ardeola = Ardeola Area = Area Arealstatistik der Schweiz = Arealstat. Schweiz #A recent list of abbreviations is available at https://www.ieee.org/documents/trans_journal_names.pdf Arena 2006-acoustic and Radio Eev Neutrino Detection Activities = J Phys Conf Ser Arena 2006-acoustic and Radio Eev Neutrino Detection Activities = J. Phys. Conf. Ser. Arenaviruses I = Curr Top Microbiol Arenaviruses I = Curr. Top. Microbiol. Arenaviruses Ii = Curr Top Microbiol Arenaviruses Ii = Curr. Top. Microbiol. A report of the ... National Forum on Hospital and Health Affairs / conducted by the Graduate Program in Hospital Administration of Duke University. National Forum on Hospital and Health Affairs = Rep Natl Forum Hosp Health Aff Are Prisons Any Better = Sage Crim J Are Prisons Any Better = Sage. Crim. J. Arerugi (Japanese Journal of Allergology) = Arerugi Arerugi. Japanese Journal of Allergology=Arerugi;; Are The Distinctions Between Debt and Equity Disappearing = Fed Bank Bo Are The Distinctions Between Debt and Equity Disappearing = Fed. Bank. Bo. Arethusa = Arethusa Areuea Journal-journal of The American Real Estate & Urban Economics Association = Areuea J Areuea Journal-journal of The American Real Estate & Urban Economics Association = Areuea J. Are Women Achieving Equity in Chemistry: Dissolving Disparity and Catalyzing Change = Acs Sym Ser Are Women Achieving Equity in Chemistry: Dissolving Disparity and Catalyzing Change = Acs. Sym. Ser. Arfificial Intelligence and Cognitive Sicence, Proceedings = Lect Notes Artif Int Arfificial Intelligence and Cognitive Sicence, Proceedings = Lect. Notes. Artif. Int. Argeion oikonomikes istorias (Archives of Economic History, Athens) = AEH Argentine Republic. Laws, statutes, etc = Argent Repub Laws Statut Argo. časopis slovenskih muzejev, Narodni Muzej Slovenije = Argo Argonaute Proteins: Methods and Protocols = Methods Mol Biol Argonaute Proteins: Methods and Protocols = Methods Mol. Biol. Argos = Argos Argos = Argos-venezuela Argos = Argos-venezuela. Argos (Utrecht, Netherlands) = Argos Arguing: Exchanging Reasons Face to Face = Lea Commun Ser Arguing: Exchanging Reasons Face to Face = Lea. Commun. Ser. Arguing Fundamental Rights = Law Philos Libr Arguing Fundamental Rights = Law. Philos. Libr. Arguing On The Toulmin Model = Argumentation Lib Arguing On The Toulmin Model = Argumentation. Lib. Arguing On The Toulmin Model = Argum Lib Arguing On The Toulmin Model = Argum. Lib. Argument and Rhetoric: Adverbial Connectors in The History of English = Top Engl Linguist Argument and Rhetoric: Adverbial Connectors in The History of English = Top. Engl. Linguist. Argumenta Oeconomica = Argum Oecon Argumenta Oeconomica = Argum. Oecon. Argument = Argument Argumentation = Argumentation Argumentation in Multi-agent Systems = Lect Notes Artif Int Argumentation in Multi-agent Systems = Lect. Notes. Artif. Int. Argumentation in Multi-agent Systems = Lect Notes Comput Sc Argumentation in Multi-agent Systems = Lect. Notes. Comput. Sc. Argumentation in Science Education: Perspectives From Classroom-based Research = Sci Technol Educ Lib Argumentation in Science Education: Perspectives From Classroom-based Research = Sci. Technol. Educ. Lib. Argumentation Library = Argumentation Lib Argumentation Library = Argumentation Lib. Argumentation Library = Argum Lib Argumentation Library = Argum. Lib. Argumentatiton in Multi-agent Systems = Lect Notes Comput Sc Argumentatiton in Multi-agent Systems = Lect. Notes. Comput. Sc. Argumentative Indicators in Discourse: A Pragma-dialectical Study = Argum Lib Argumentative Indicators in Discourse: A Pragma-dialectical Study = Argum. Lib. Arguments and Structure: Studies On The Architecture of The Sentence = Stud Generat Gramm Arguments and Structure: Studies On The Architecture of The Sentence = Stud. Generat. Gramm. Arguments = Arguments Arheologia Moldovei = AMold Arheologiâ, publ. par l'Inst. d'Archéol. de l'Acad. des Sciences d'Ukraine et par la Soc. ukrainienne pour la préservation des monuments culturels et historiques = ARH Arheolokiradovi i rasprave = ARadRaspr Arheološki pregled. Arheološko društvo Jugoslavije = APregl Arheoloski Vestnik = Arheoloski Vestn Arheoloski Vestnik = Arheoloski Vestn. Arheološki vestnik (Ljubljana) = AVes Arhiv za farmaciju = Arh Farm (Belgr) Arhiv za higijenu rada = Arh Hig Rada Arhiv Za Higijenu Rada I Toksikologiju = Arh Hig Rada Toksiko Arhiv Za Higijenu Rada I Toksikologiju = Arh. Hig. Rada Toksiko. Arhiv za higijenu rada i toksikologiju = Arh Hig Rada Toksikol Arhiv za Higijenu Rada i Toksikologiju = Arh. Hig. Rada Toksikol. Arhiv Za Higijenu Rada I Toksikologiju=Arh Hig Rada Toksikol;; Arhiv Za Poljoprivredne Nauke = Arh Poljopr Nauke Arhiv Za Poljoprivredne Nauke = Arh. Poljopr. Nauke Arhiv za zastitu majke i djeteta. Archives of mother and child welfare. Archives pour la protection de la mere et de l'enfant = Arh Zast Arid Land Research and Management = Arid Land Res Manag Arid Land Research and Management = Arid Land Res. Manag. Arid Soil Research and Rehabilitation = Arid Soil Res Rehab Arid Soil Research and Rehabilitation = Arid Soil Res. Rehab. Ariel-a Review of International English Literature = Ariel-rev Int Engl Ariel-a Review of International English Literature = Ariel-rev. Int. Engl. Ariel. Ari'el = Ariel (Jerus) Arion-a Journal of Humanities and The Classics = Arion Arion-a Journal of Humanities and The Classics = Arion. Ari-springer Asia Series = Ari-springer Asia Se Ari-springer Asia Series = Ari-springer Asia Se. Aristocracy in The County of Champagne, 1100-1300 = Middle Ages Ser Aristocracy in The County of Champagne, 1100-1300 = Middle. Ages. Ser. Aristocratic Women and The Literary Nation, 1832-1867 = Palgrave Stud Ninet- Aristocratic Women and The Literary Nation, 1832-1867 = Palgrave. Stud. Ninet-. Aristotelian Society Publications Supplementary Volume = Arist Soc P Aristotelian Society Publications Supplementary Volume = Arist. Soc. P. Aristotelian Society, Supplementary Vol 72 = Arist Soc P Aristotelian Society, Supplementary Vol 72 = Arist. Soc. P. Aristotelian Society, Supplementary Vol Lxxi, 1997 = Arist Soc P Aristotelian Society, Supplementary Vol Lxxi, 1997 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 64 = Arist Soc P Aristotelian Society - Supplementary Volume 64 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 65, 1991 = Arist Soc P Aristotelian Society - Supplementary Volume 65, 1991 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 66 = Arist Soc P Aristotelian Society - Supplementary Volume 66 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 67 = Arist Soc P Aristotelian Society - Supplementary Volume 67 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 68, 1994 = Arist Soc P Aristotelian Society - Supplementary Volume 68, 1994 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 69, 1995 = Arist Soc P Aristotelian Society - Supplementary Volume 69, 1995 = Arist. Soc. P. Aristotelian Society - Supplementary Volume 70, 1996 = Arist Soc P Aristotelian Society - Supplementary Volume 70, 1996 = Arist. Soc. P. Aristotle and Plotinus On Memory = Quellen Stud Philos Aristotle and Plotinus On Memory = Quellen. Stud. Philos. Aristotle = Routl Philos Aristotle = Routl. Philos. Arith-15 2001: 15th Symposium On Computer Arithmetic, Proceedings = P S Comp Arithm Arith-15 2001: 15th Symposium On Computer Arithmetic, Proceedings = P. S. Comp. Arithm. Arith: 2009 19th Ieee International Symposium On Computer Arithmetic = P S Comp Arithm Arith: 2009 19th Ieee International Symposium On Computer Arithmetic = P. S. Comp. Arithm. Arithmetical Investigations: Representation Theory, Orthogonal Polynomials, and Quantum Interpolations = Lect Notes Math Arithmetical Investigations: Representation Theory, Orthogonal Polynomials, and Quantum Interpolations = Lect. Notes. Math. Arithmetical Properties of Commutative Rings and Monoids = Lect Notes Pure Appl Arithmetical Properties of Commutative Rings and Monoids = Lect. Notes. Pure. Appl. Arithmetic and Geometry Around Hypergeometric Functions = Prog Math Arithmetic and Geometry Around Hypergeometric Functions = Prog. Math. Arithmetic and Geometry Around Quantization = Prog Math Arithmetic and Geometry Around Quantization = Prog. Math. Arithmetic and Geometry of Algebraic Cycles = Nato Adv Sci I C-mat Arithmetic and Geometry of Algebraic Cycles = Nato. Adv. Sci. I. C-mat. Arithmetic, Geometry, Cryptography and Coding Theory 2009 = Contemp Math Arithmetic, Geometry, Cryptography and Coding Theory 2009 = Contemp. Math. Arithmetic, Geometry, Cryptography and Coding Theory = Contemp Math Arithmetic, Geometry, Cryptography and Coding Theory = Contemp. Math. Arithmetic Geometry = Lect Notes Math Arithmetic Geometry = Lect. Notes. Math. Arithmetic of Complex Manifolds = Lect Notes Math Arithmetic of Complex Manifolds = Lect. Notes. Math. Arithmetic of Elliptic Curves, Second Edition = Grad Texts Math Arithmetic of Elliptic Curves, Second Edition = Grad. Texts. Math. Arithmetic of Finite Fields, Proceedings = Lect Notes Comput Sc Arithmetic of Finite Fields, Proceedings = Lect. Notes. Comput. Sc. Arithmetic of Function Fields = Ohio St U M Arithmetic of Function Fields = Ohio. St. U. M. Arithmetic of Higher-dimensional Algebraic Varieties = Prog Math Arithmetic of Higher-dimensional Algebraic Varieties = Prog. Math. Arithmetic of Quadratic Forms = Springer Monogr Math Arithmetic of Quadratic Forms = Springer. Monogr. Math. Arithmetic Theory of Elliptic Curves = Lect Notes Math Arithmetic Theory of Elliptic Curves = Lect. Notes. Math. Arizona Agricultural Experiment Station Research Report = Ariz Aes Res Rep Arizona Agricultural Experiment Station Research Report = Ariz. Aes. Res. Rep. Arizona Agricultural Experiment Station Technical Bulletin = Ariz Aes Tech Bull Arizona Agricultural Experiment Station Technical Bulletin = Ariz. Aes. Tech. Bull. Arizona and The West-a Quarterly Journal of History = Ariz West Arizona and The West-a Quarterly Journal of History = Ariz. West. Arizona and the West = Ariz West Arizona Dental Journal = Ariz. Dent. J. Arizona journal of international and comparative law = Ariz J Int Comp Law Arizona law review = Ariz Law Rev Arizona medicine = Ariz Med Arizona Medicine = Ariz Med Arizona Medicine = Ariz. Med. Arizona Nurse = Ariz. Nurse Arizona Phonology Conference, Vol 1 = Coyote Pap Arizona Phonology Conference, Vol 1 = Coyote. Pap. Arizona Phonology Conference, Vol 2 = Coyote Pap Arizona Phonology Conference, Vol 2 = Coyote. Pap. Arizona Phonology Conference, Vol 3 = Coyote Pap Arizona Phonology Conference, Vol 3 = Coyote. Pap. Arizona revised statutes, annotated : prepared under legislative authority, Laws 1956, chapter 129. Arizona = Ariz Revis Statut Annot Ariz Arizona State law journal = Ariz State Law J Arizona State University Anthropological Research Papers = Anthr Res P Arizona State University Anthropological Research Papers = Anthr. Res. P. Arizona Water Policy: Management Innovations in An Urbanizing, Arid Region = Issues Water Resourc Arizona Water Policy: Management Innovations in An Urbanizing, Arid Region = Issues. Water Resourc. Arkansas Agricultural Experiment Station Bulletin = Arkansas Aes Bull Arkansas Agricultural Experiment Station Bulletin = Arkansas Aes. Bull. Arkansas Agricultural Experiment Station Mimeograph Series = Arkansas Aes Res Ser Arkansas Agricultural Experiment Station Mimeograph Series = Arkansas Aes. Res. Ser. Arkansas Agricultural Experiment Station Report Series = Arkansas Aes Rep Ser Arkansas Agricultural Experiment Station Report Series = Arkansas Aes. Rep. Ser. Arkansas Agricultural Experiment Station Research Series = Arkansas Aes Res Ser Arkansas Agricultural Experiment Station Research Series = Arkansas Aes. Res. Ser. Arkansas Agricultural Experiment Station Special Reports = Arkansas Aes Spec Re Arkansas Agricultural Experiment Station Special Reports = Arkansas Aes. Spec. Re. Arkansas and The Natural Environment : Water, Waste and War = Arkansas Aes Spec Re Arkansas and The Natural Environment : Water, Waste and War = Arkansas Aes. Spec. Re. Arkansas Archeological Survey Research Series = Ark Archeol Sur Res Arkansas Archeological Survey Research Series = Ark. Archeol. Sur. Res. Arkansas archeology = Ark Archeol Arkansas Dental Journal = Ark. Dent. J. Arkansas dentistry = Ark Dent Arkansas Dentistry = Ark. Dent. Arkansas Farm Research = Arkansas Farm Res Arkansas Farm Research = Arkansas Farm Res. Arkansas Historical Quarterly = Arkansas Hist Quart Arkansas Historical Quarterly = Arkansas Hist. Quart. Arkansas law review = Ark Law Rev Arkansas statutes, 1947 : comprising statutes of a general and permanent nature ... Arkansas = Ark Statut 1947 Ark Arkeoloji dergisi. Ege Üniversitesi Edebiyat Fakültesi = ADerg Arkheologiya = Arkheologiya Arkhimedes = Arkhimedes Arkhiv anatomii, gistologii i embriologii = Arkh Anat Gistol Embriol Arkhiv Anatomii, Gistologii i Embriologii = Arkh. Anat. Gistol. Embriol. Arkhiv patologii = Arkh Patol Arkhiv Patologii=Arkh Patol;; Arkhiv Patologii = Arkh. Patol. Arkhiv Patologii = Ark Patol Arkhiv Patologii = Ark. Patol. Arkiv foer Geohysik = Ark. Geofys. Arkiv foer Kemi, Mineralogi och Geologi = Ark. Kemi Mineral. Geol. Arkiv foer Matematik, Astronomi, och Fysik = Ark. Mat. Astron. Fys. Arkiv foer Physik = Ark. Fys. Arkiv for Astronomi = Ark Astron Arkiv for Astronomi = Ark. Astron. Arkiv for Botanik = Ark Bot Arkiv for Botanik = Ark. Bot. Arkiv for Fysik = Ark Fys Arkiv for Fysik = Ark. Fys. Arkiv for Geofysik = Ark Geofys Arkiv for Geofysik = Ark. Geofys. Arkiv for Kemi = Ark Kemi Arkiv for Kemi = Ark. Kemi Arkiv for Kemi Mineralogi Och Geologi = Ark Kem Mineral Geol Arkiv for Kemi Mineralogi Och Geologi = Ark. Kem. Mineral. Geol. Arkiv for Matematik = Ark Mat Arkiv for Matematik = Ark. Mat. Arkiv for Mineralogi Och Geologi = Ark Mineral Och Geol Arkiv for Mineralogi Och Geologi = Ark. Mineral. Och Geol. Arkiv für Matematik = Ark. Mat. Arkiv Fur Zoologi = Ark Zool Arkiv Fur Zoologi = Ark. Zool. Arkivoc = Arkivoc ARKIVOC : free online journal of organic chemistry / Arkat-USA, Inc = ARKIVOC ARKIVOC (Gainesville, FL, United States) = ARKIVOC (Gainesville, FL, U. S.) Ark-Light Newsletter = Ark. Light Newsl. Armed Forces and Conflict Resolution: Sociological Perspectives = Contrib Confl Manag Armed Forces and Conflict Resolution: Sociological Perspectives = Contrib. Confl. Manag. Armed forces and society = Armed Forces Soc Armed Forces medical journal, India = Armed Forces Med J India Armed Forces & Society = Armed Forces Soc Armed Forces & Society = Armed Forces Soc. Armed Forces, Soldiers and Civil-military Relations: Essays in Honor of Jurgen Kuhlmann = Schr Sozialw I Bunde Armed Forces, Soldiers and Civil-military Relations: Essays in Honor of Jurgen Kuhlmann = Schr. Sozialw. I. Bunde. Armed Groups and The Balance of Power = Lse Int Stud Ser Armed Groups and The Balance of Power = Lse. Int. Stud. Ser. Arming America At War: A Model for Rapid Defense Acquisition in Time of War = Res Public Manag Arming America At War: A Model for Rapid Defense Acquisition in Time of War = Res. Public. Manag. Arming Conflict: The Proliferation of Small Arms = Glob Iss Ser Arming Conflict: The Proliferation of Small Arms = Glob. Iss. Ser. Arms & Armour = Arms Armour Arms Control and Disarmament Law = Arms Control Disarma Arms Control and Disarmament Law = Arms Control Disarma. Arms Control At The End of The Cold War: An Oral History of The Negotiations On Conventional Armed Forces In... = Keck Ctr Int St Stud Arms Control At The End of The Cold War: An Oral History of The Negotiations On Conventional Armed Forces In... = Keck. Ctr. Int. St. Stud. Arms Control in The Middle East = Publ Jc Str Arms Control in The Middle East = Publ. Jc. Str. Arms of His Love = Women Conf Ser Arms of His Love = Women. Conf. Ser. Armyanskii Khimicheskii Zhurnal = Arm Khim Zh Armyanskii Khimicheskii Zhurnal = Arm. Khim. Zh. Arne Ryde Memorial Lecture Series = Arne Ryde Mem Lect S Arne Ryde Memorial Lecture Series = Arne Ryde Mem. Lect. S. ARN Journal = ARN J. ARN journal : the official journal of the Association of Rehabilitation Nurses = ARN J Arnoldia = Arnoldia Arnoldian = Arnoldian Aromatase Inhibitors: Types, Mode of Action and Indications = Cancer Etiol Diagn T Aromatase Inhibitors: Types, Mode of Action and Indications = Cancer. Etiol. Diagn. T. Aromaticity in Heterocyclic Compounds = Top Heterocycl Chem Aromaticity in Heterocyclic Compounds = Top. Heterocycl. Chem. Around Caspar Wessel and The Geometric Representation of Complex Numbers, Proceedings = Kong Dansk Vidensk Around Caspar Wessel and The Geometric Representation of Complex Numbers, Proceedings = Kong. Dansk. Vidensk. Around The Research of Vladimir Maz'ya I: Function Spaces = Int Mat Ser Around The Research of Vladimir Maz'ya I: Function Spaces = Int. Mat. Ser. Around The Research of Vladimir Maz'ya Iii = Int Mat Ser Around The Research of Vladimir Maz'ya Iii = Int. Mat. Ser. Around The Research of Vladimir Maz'ya Ii: Partial Differential Equations = Int Mat Ser Around The Research of Vladimir Maz'ya Ii: Partial Differential Equations = Int. Mat. Ser. Arq-architectural Research Quarterly = Arq-archit Res Q Arq-architectural Research Quarterly = Arq-archit. Res. Q. Arq = Arq Arqueologia e história = AHist Arquitetura Revista = Arquitetura Rev Arquitetura Revista = Arquitetura Rev. Arquivo Brasileiro De Medicina Veterinaria E Zootecnia = Arq Bras Med Vet Zoo Arquivo Brasileiro De Medicina Veterinaria E Zootecnia = Arq. Bras. Med. Vet. Zoo. Arquivo de Beja. Boletim, estudos, arquivo = ArqBeja Arquivo de patologia = Arq Patol Arquivo de Patologia = Arq. Patol. Arquivo do Instituto Gulbenkian de Ciência=Arquivo Inst. Arquivo: Orgao da Sociedade Brasileira de Implantologia Bucal = Arquivo Arquivo; Orgao Da Sociedade Brasileira De Implantologia Bucal = Arquivo Arquivos brasileiros de cardiologia = Arq Bras Cardiol Arquivos Brasileiros de Cardiologia=Arq Bras Cardiol;; Arquivos Brasileiros de Cardiologia = Arq. Bras. Cardiol. Arquivos Brasileiros De Cardiologia = Arq Bras Cardiol Arquivos Brasileiros De Cardiologia = Arq. Bras. Cardiol. Arquivos Brasileiros De Endocrinologia E Metabologia = Arq Bras Endocrinol Arquivos Brasileiros De Endocrinologia E Metabologia = Arq. Bras. Endocrinol. Arquivos brasileiros de endocrinologia e metabologia = Arq Bras Endocrinol Metabol Arquivos Brasileiros de Endocrinologia e Metabologia = Arq. Bras. Endocrinol. Metabol. Arquivos brasileiros de medicina = Arq Bras Med Arquivos Brasileiros de Medicina = Arq. Bras. Med. Arquivos brasileiros de medicina naval = Arq Bras Med Nav Arquivos brasileiros de oftalmologia = Arq Bras Oftalmol Arquivos Brasileiros de Oftalmologia = Arq. Bras. Oftalmol. Arquivos Brasileiros De Oftalmologia = Arq Bras Oftalmol Arquivos Brasileiros De Oftalmologia = Arq. Bras. Oftalmol. Arquivos Brasileiros De Psicologia Aplicada = Arq Bras Psicol Apl Arquivos Brasileiros De Psicologia Aplicada = Arq. Bras. Psicol. Apl. Arquivos brasileiros de psicologia = Arq Bras Psicol Arquivos Brasileros De Psicologia = Arq Bras Psicol Apl Arquivos Brasileros De Psicologia = Arq. Bras. Psicol. Apl. Arquivos. Coimbra. Universidade. Instituto de Farmacologia e Terapeutica Experimental = Arq Inst Farm Arquivos Da Escola De Veterinaria Da Universidade Federal De Minas Gerais = Arq Esc Vet Univ Fed Arquivos Da Escola De Veterinaria Da Universidade Federal De Minas Gerais = Arq. Esc. Vet. Univ. Fed. Arquivos da Faculdade de Higiene e Saude Publica da Universidade de Sao Paulo = Arq Fac Hig Saude Publica Univ Sao Paulo Arquivos da Faculdade de Higiene e Saude Publica da Universidade de Sao Paulo = Arq. Fac. Hig. Saude Publica Univ. Sao Paulo Arquivos De Biologia E Tecnologia = Arq Biol Tecnol Arquivos De Biologia E Tecnologia = Arq. Biol. Tecnol. Arquivos de cirurgia clinica e experimental = Arq Cir Clin Exp Arquivos de Cirurgia Clinica e Experimental = Arq. Cir. Clin. Exp. Arquivos de clinica = Arq Clin (Rio De J) Arquivos de gastroenterologia = Arq Gastroenterol Arquivos de Gastroenterologia=Arq Gastroenterol;; Arquivos de Gastroenterologia = Arq. Gastroenterol. Arquivos de higiene e saude publica = Arq Hig Saude Publica Arquivos de Higiene e Saude Publica = Arq. Hig. Saude Publica Arquivos de medicina e cirurgia de Pernambuco = Arq Med Cirur Pernamb Arquivos De Medicina : Revista De Ciencia E Arte Medicas = Arq Medicin Arquivos De Medicina : Revista De Ciencia E Arte Medicas = Arq. Medicin. Arquivos De Neuro-psiquiatria = Arq Neuro-psiquiat Arquivos De Neuro-psiquiatria = Arq. Neuro-psiquiat. Arquivos de neuro-psiquiatria = Arq Neuropsiquiatr Arquivos de Neuro-Psiquiatria=Arq Neuropsiquiatr;; Arquivos de Neuro-Psiquiatria = Arq. Neuropsiquiatr. Arquivos de oncologia = Arq Oncol Arquivos de pediatria ... = Arq Pediatr Arquivos do Centro Cultural Portugues. Centre culturel portugais = Arq Cent Cult Port Arquivos do Centro de Estudos, Curso de Odontologia Universidade Federal de Minas Gerais = Arq. Cent. Estud. Curso Odontol. Univ. Fed. Minas Gerais Arquivos do Centro de Estudos da Faculdade de Odontologia da U. F. M. G = Arq Cent Estud Fac Odontol UFMG (Belo Horiz) Arquivos do Centro de Estudos da Faculdade de Odontologia da U.F.M.G. = Arq. Cent. Estud. Fac. Odontol. UFMG. (Belo. Horiz.) Arquivos do Centro de Estudos do curso de odontologia = Arq Cent Estud Curso Odontol Arquivos do Instituto Biologico = Arq Inst Biol (Sao Paulo) Arquivos do Instituto Biologico = Arq. Inst. Biol. (Sao Paulo) Arquivos. Instituto Brasileiro para Investigacao da Tuberculose = Arq Inst Bras Invest Tubers Arquivos mineiros de leprologia = Arq Min Leprol Arquivos portugueses de bioquimica = Arq Port Bioquim Arquivos portugueses de oftalmologia = Arq Port Oftalmol Arriere-boutiques De La Litterature: Auteurs Et Imprimeurs-libraires Aux Xvie Et Xviie Siecles = Cribles Arriere-boutiques De La Litterature: Auteurs Et Imprimeurs-libraires Aux Xvie Et Xviie Siecles = Cribles. Arrigo Boito = Linea Venet Arrigo Boito = Linea. Venet. Arrows for change = Arrows Change Arsbok. Goteborgs tandlakare-sallskap = Arsb Goteb Tandlak Sallsk Arsbok. Odontologiska samfundet i Finland = Arsb Odontol Samf Finl Ars Combinatoria = Ars Combin. Ars Combinatoria = Ars Combinatoria Ars curandi em odontologia = Ars Curandi Odontol Ars Curandi em Odontologia = Ars Curandi Odontol. Arse. Boletín del Centro arqueológico saguntino = Arse Arsenic and Old Mustard: Chemical Problems in The Destruction of Old Arsenical and 'mustard' Munitions = Nato Sci S 1 Disarm Arsenic and Old Mustard: Chemical Problems in The Destruction of Old Arsenical and 'mustard' Munitions = Nato. Sci. S. 1. Disarm. Ars Georgica = ArsGeorg Ars Journal = Arsj-am Rocket Soc J Ars Journal = Arsj-am. Rocket. Soc. J. Ars Mathematica Contemporanea = Ars Math Contemp Ars Mathematica Contemporanea = Ars Math. Contemp. Ars Semeiotica = Ars Semeiotica Arsskrift Den Kongelige Veterinaer-og Landbohojskole = Arsskr/kgl Vet Land Arsskrift Den Kongelige Veterinaer-og Landbohojskole = Arsskr/kgl. Vet. Land. Ars Topica: The Classical Technique of Constructing Arguments From Aristotle to Cicero = Argum Lib Ars Topica: The Classical Technique of Constructing Arguments From Aristotle to Cicero = Argum. Lib. Art and Architecture in Discussion = Art Archit Discuss Art and Architecture in Discussion = Art Archit. Discuss. Art and Science of Epilepsy = Int Congr Ser Art and Science of Epilepsy = Int. Congr. Ser. Art and Science of Interface and Interaction Design (vol. 1) = Stud Comput Intell Art and Science of Interface and Interaction Design (vol. 1) = Stud. Comput. Intell. Art and Science of Structural Concrete Design = Amer Conc I Art and Science of Structural Concrete Design = Amer. Conc. I. Art and Symmetry in Experimental Physics = Aip Conf Proc Art and Symmetry in Experimental Physics = Aip. Conf. Proc. Art and The Early Photographic Album = Stud Hist Art Symp Art and The Early Photographic Album = Stud. Hist. Art Symp. Art and The Human Blastocyst = Serono Symp Art and The Human Blastocyst = Serono. Symp. Art and The State:the Visual Arts in Comparative Perspective = St Antonys Ser Art and The State:the Visual Arts in Comparative Perspective = St. Antonys. Ser. Art Bulletin = Art Bull Art Bulletin = Art Bull. Art, Community and Environment: Educational Perspectives = Read Art Des Edu Art, Community and Environment: Educational Perspectives = Read. Art. Des. Edu. Art Criticism = Art Criticism Arte antica e moderna = ArtAntMod Artech House Antenna Library = Artech House Antenna Lib. Artech House Antennas and Propagation Series = Artech Hse Antenn Pr Artech House Antennas and Propagation Series = Artech Hse. Antenn. Pr. Artech House Bioinformatics and Biomedical Imaging Series = Artech Hse Bioinf Bi Artech House Bioinformatics and Biomedical Imaging Series = Artech Hse. Bioinf. Bi. Artech House Biomedical Signals and Systems Series = Artech Hse Biom Sign Artech House Biomedical Signals and Systems Series = Artech Hse. Biom. Sign. Artech House Electromagnetic Analysis Series = Artech Hse Elec Anal Artech House Electromagnetic Analysis Series = Artech Hse. Elec. Anal. Artech House Electronic Radar Series = Artech Hse Elec Rad Artech House Electronic Radar Series = Artech Hse. Elec. Rad. Artech House Electronic Warfare Library = Artech Hse Elec Warf Artech House Electronic Warfare Library = Artech Hse. Elec. Warf. Artech House Gnss Technology and Applications Library = Artech Hse Gnss Tech Artech House Gnss Technology and Applications Library = Artech Hse. Gnss Tech. Artech House Information Security and Privacy Series = Artech Hse Inf Secur Artech House Information Security and Privacy Series = Artech Hse. Inf. Secur. Artech House Integrated Microsystems Series = Artech Hse Integr Mi Artech House Integrated Microsystems Series = Artech Hse. Integr. Mi. Artech House Intelligence and Information Operations Series = Artech Hse Intel Inf Artech House Intelligence and Information Operations Series = Artech Hse. Intel. Inf. Artech House Intelligent Transportation Systems Library = Artech Hse Intel Tra Artech House Intelligent Transportation Systems Library = Artech Hse. Intel. Tra. Artech House Methods in Bioengineering Series = Artech Hse Meth Bioe Artech House Methods in Bioengineering Series = Artech Hse. Meth. Bioe. Artech House Microelectromechanical Systems Series = Artech Hse Microel S Artech House Microelectromechanical Systems Series = Artech Hse. Microel. S. Artech House Microwave Library = Artech Hse Microw Li Artech House Microwave Library = Artech Hse. Microw. Li. Artech House Microwave Library = Artech Micr Artech House Microwave Library = Artech Micr. Artech House Mobile Communications Series = Artech Hse Mob Comm Artech House Mobile Communications Series = Artech Hse. Mob. Comm. Artech House Nanoscale Science and Engineering Series = Art Hse Nano Sci Eng Artech House Nanoscale Science and Engineering Series = Art. Hse. Nano. Sci. Eng. Artech House Optoelectronics Library = Art H Opto Artech House Optoelectronics Library = Art. H. Opto. Artech House Radar Library = Artech Hse Radar Lib Artech House Radar Library = Artech Hse. Radar Lib. Artech House Remote Sensing Library = Artech Hse Remote Se Artech House Remote Sensing Library = Artech Hse. Remote Se. Artech House Signal Processing Library = Artech Hse Sig Proc Artech House Signal Processing Library = Artech Hse. Sig. Proc. Artech House Telecommunications Series = Artech Hse Telecom S Artech House Telecommunications Series = Artech Hse. Telecom. S. Artech House Universal Personal Communications Series = Artech Hse Univers P Artech House Universal Personal Communications Series = Artech Hse. Univers. P. Artech House Universal Personal Communications Series = Art H Uni Per Commun Artech House Universal Personal Communications Series = Art. H. Uni. Per. Commun. Arte Individuo Y Sociedad = Arte Individuo Soc Arte Individuo Y Sociedad = Arte Individuo Soc. Arte lombarda = ArtLomb Arte medievale = ArtMediev Art Encounters Deleuze and Guattari: Thought Beyond Representation = Renew Philos Art Encounters Deleuze and Guattari: Thought Beyond Representation = Renew. Philos. Arteres et veines = Arteres Veines Arterial Chemoreceptors = Adv Exp Med Biol Arterial Chemoreceptors = Adv. Exp. Med. Biol. Arteriosclerosis and thrombosis : a journal of vascular biology / American Heart Association = Arterioscler Thromb Arteriosclerosis and Thrombosis = Arterioscler Thromb Arteriosclerosis and Thrombosis = Arterioscler. Thromb. Arteriosclerosis = Arteriosclerosis Arteriosclerosis (Dallas, Tex.) = Arteriosclerosis Arteriosclerosis, thrombosis, and vascular biology = Arterioscler Thromb Vasc Biol Arteriosclerosis, Thrombosis, and Vascular Biology=Arterioscler Thromb Vasc Biol;; Arteriosclerosis, Thrombosis, and Vascular Biology = Arterioscler. Thromb. Vasc. Biol. Arteriosclerosis, Thrombosis, and Vascular Biology = Arterioscler., Thromb., Vasc. Biol. Arteriosclerosis Thrombosis and Vascular Biology = Arterioscl Throm Vas Arteriosclerosis Thrombosis and Vascular Biology = Arterioscl. Throm. Vas. Artery=Artery;; Artery = Artery Artes de Mexico = Artes Mex Artes De Mexico = Art Mex Artes De Mexico = Art. Mex. Art et archéologie en Rhône-Alpes = ArtARhone Art, Fashion and Work for Hire: Thomas Demand, Peter Saville, Hedi Slimane, Hans Ulrich Obrist and Cristina Bechtler in Conversation = Art Archit Discuss Art, Fashion and Work for Hire: Thomas Demand, Peter Saville, Hedi Slimane, Hans Ulrich Obrist and Cristina Bechtler in Conversation = Art. Archit. Discuss. Artficial Evolution = Lect Notes Comput Sc Artficial Evolution = Lect. Notes. Comput. Sc. Artforum = Artforum Artforum International = Artforum Int Artforum International = Artforum Int. Arthaniti=Arthaniti Artha-Vikas=Artha-Vikas Art Historian: National Traditions and Institutional Practices = Clark Stud Vis Arts Art Historian: National Traditions and Institutional Practices = Clark. Stud. Vis. Arts. Art History, Aesthetics, Visual Studies = Clark Stud Vis Arts Art History, Aesthetics, Visual Studies = Clark. Stud. Vis. Arts. Art history = Art Hist Art History = Art Hist Art History = Art Hist. Arthritic Rat As A Model of Clinical Pain = Int Congr Ser Arthritic Rat As A Model of Clinical Pain = Int. Congr. Ser. Arthritis and rheumatism = Arthritis Rheum Arthritis and Rheumatism=Arthritis Rheum;; Arthritis and Rheumatism = Arthritis Rheum Arthritis and Rheumatism = Arthritis Rheum. Arthritis and Rheumatism = Arthritis Rheum-us Arthritis and Rheumatism = Arthritis Rheum-us. Arthritis Care and Research = Arthrit Care Res Arthritis Care and Research = Arthrit. Care Res. Arthritis Care and Research = Arthritis Care Res. Arthritis care and research : the official journal of the Arthritis Health Professions Association = Arthritis Care Res Arthritis Care & Research = Arthrit Care Res Arthritis Care & Research = Arthrit. Care Res. Arthritis Research and Therapy = Arthritis Res. Ther. Arthritis research = Arthritis Res Arthritis Research = Arthritis Res Arthritis Research = Arthritis Res. Arthritis research & therapy = Arthritis Res Ther Arthritis Research & Therapy = Arthritis Res Ther Arthritis Research & Therapy = Arthritis Res. Ther. Arthritis + Rheuma = Arthritis Rheum (Munch) Arthritis & Rheumatism-arthritis Care & Research = Arthrit Rheum-arthr Arthritis & Rheumatism-arthritis Care & Research = Arthrit. Rheum-arthr. Arthropod Management Tests = Arthropod Manage. Tests Arthropod Natural Enemies in Arable Land I = Act Jutland Arthropod Natural Enemies in Arable Land I = Act. Jutland. Arthropod Natural Enemies in Arable Land Ii = Act Jutland Arthropod Natural Enemies in Arable Land Ii = Act. Jutland. Arthropod-plant Interactions = Arthropod-plant Inte Arthropod-plant Interactions = Arthropod-plant Inte. Arthropod Structure = Arthropod Struct. Dev. Arthropod Structure & Development = Arthropod Struct Dev Arthropod Structure & Development = Arthropod Struct. Dev. Arthropod Systematics & Phylogeny = Arthropod Syst Phylo Arthropod Systematics & Phylogeny = Arthropod Syst. Phylo. Arthroscopic Techniques of The Hip: A Visual Guide = Vis Arthrosc Ser Arthroscopic Techniques of The Hip: A Visual Guide = Vis. Arthrosc. Ser. Arthroscopic Techniques of The Knee: A Visual Guide = Vis Arthrosc Ser Arthroscopic Techniques of The Knee: A Visual Guide = Vis. Arthrosc. Ser. Arthroscopic Techniques of The Shoulder: A Visual Guide = Vis Arthrosc Ser Arthroscopic Techniques of The Shoulder: A Visual Guide = Vis. Arthrosc. Ser. Arthroscopy=Arthroscopy;; Arthroscopy = Arthroscopy Arthroscopy for Damaged Cartilage and Arthritis = Fort Arthr Arthroscopy for Damaged Cartilage and Arthritis = Fort. Arthr. Arthroscopy-the Journal of Arthroscopic and Related Surgery = Arthroscopy Arthroscopy-the Journal of Arthroscopic and Related Surgery = Arthroscopy. Arthroscopy : the journal of arthroscopic & related surgery : official publication of the Arthroscopy Association of North America and the International Arthroscopy Association = Arthroscopy Arthuriana = Arthuriana Arthurian Romance and Gender = Int For Lit Arthurian Romance and Gender = Int. For. Lit. Artibus Asiae = ArtAs Artibus Asiae = Artibus Asiae Artibus Et Historiae = Artibus Hist Artibus Et Historiae = Artibus Hist. Artic Centre Reports = U Lap A C R Artic Centre Reports = U. Lap. A. C. R. Articular Cartilage and Knee Joint Function = Bris Myer Z Articular Cartilage and Knee Joint Function = Bris. Myer. Z. Articulated Motion and Deformable Objects, Proceedings = Lect Notes Comput Sc Articulated Motion and Deformable Objects, Proceedings = Lect. Notes. Comput. Sc. Articulated Motion An Deformable Objects, Proceedings = Lect Notes Comput Sc Articulated Motion An Deformable Objects, Proceedings = Lect. Notes. Comput. Sc. Articulator = Articulator (Columb.) Artificail Neural Networks and Neural Information Processing - Ican/iconip 2003 = Lect Notes Comput Sc Artificail Neural Networks and Neural Information Processing - Ican/iconip 2003 = Lect. Notes. Comput. Sc. Artificial Cells Blood Substitutes and Biotechnology = Artif Cell Blood Sub Artificial Cells Blood Substitutes and Biotechnology = Artif. Cell. Blood Sub. Artificial Cells Blood Substitutes and Immobilization Biotechnology = Artif Cell Blood Sub Artificial Cells Blood Substitutes and Immobilization Biotechnology = Artif. Cell. Blood Sub. Artificial Cells, Blood Substitutes, and Immobilization BiotechnologyArtif Cells Blood Substit Immobi=Biotechnol;; Artificial cells, blood substitutes, and immobilization biotechnology = Artif Cells Blood Substit Immobil Biotechnol Artificial Cells, Blood Substitutes, and Immobilization Biotechnology = Artif. Cells. Blood Substit. Immobil. Biotechnol. Artificial Cells Blood Substitutes and Immobilization Biotechnology = Artif. Cells, Blood Substitues, Immobilization Biotechnol. Artificial Chemical Sensing: Olfaction and The Electronic Nose (isoen 2001) = Elec Soc S Artificial Chemical Sensing: Olfaction and The Electronic Nose (isoen 2001) = Elec. Soc. S. Artificial Evolution = Lect Notes Comput Sc Artificial Evolution = Lect. Notes. Comput. Sc. Artificial General Intelligence 2008 = Fr Art Int Artificial General Intelligence 2008 = Fr. Art. Int. Artificial General Intelligence 2008 = Front Artif Intel Ap Artificial General Intelligence 2008 = Front. Artif. Intel. Ap. Artificial General Intelligence Proceedings = Adv Intel Sys Res Artificial General Intelligence Proceedings = Adv. Intel. Sys. Res. Artificial Gravity = Spac Tec L Artificial Gravity = Spac. Tec. L. Artificial Immune Systems = Lect Notes Comput Sc Artificial Immune Systems = Lect. Notes. Comput. Sc. Artificial Immune Systems, Proceedings = Lect Notes Comput Sc Artificial Immune Systems, Proceedings = Lect. Notes. Comput. Sc. Artificial Intelligence and Advanced Computing Applications = Transport Res Rec Artificial Intelligence and Advanced Computing Applications = Transport. Res. Rec. Artificial Intelligence and Cognitive Science, = Lect Notes Artif Int Artificial Intelligence and Cognitive Science, = Lect. Notes. Artif. Int. Artificial Intelligence and Cognitive Science, Proceedings = Lect Notes Artif Int Artificial Intelligence and Cognitive Science, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence and Computational Intelligence, Proceedings = Lect Notes Artif Int Artificial Intelligence and Computational Intelligence, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence and Computational Intelligence, Pt I = Lect Notes Artif Int Artificial Intelligence and Computational Intelligence, Pt I = Lect. Notes. Artif. Int. Artificial Intelligence and Education / = Fr Art Int Artificial Intelligence and Education / = Fr. Art. Int. Artificial Intelligence and Expert Systems : Will They Change The Library ? = Cl Lib Appl Artificial Intelligence and Expert Systems : Will They Change The Library ? = Cl. Lib. Appl. Artificial Intelligence and Heuristic Methods in Bioinformatics = Nato Sc S Ss Iii C S Artificial Intelligence and Heuristic Methods in Bioinformatics = Nato. Sc. S. Ss. Iii. C. S. Artificial Intelligence and Innovations 2007: From Theory to Applications = Int Fed Info Proc Artificial Intelligence and Innovations 2007: From Theory to Applications = Int. Fed. Info. Proc. Artificial Intelligence and Intelligent Transportation Systems = Transport Res Rec Artificial Intelligence and Intelligent Transportation Systems = Transport. Res. Rec. Artificial Intelligence and Knowledge Engineering Applications: A Bioinspired Approach, Pt 2, Proceedings = Lect Notes Comput Sc Artificial Intelligence and Knowledge Engineering Applications: A Bioinspired Approach, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Artificial Intelligence and Neural Networks = Lect Notes Artif Int Artificial Intelligence and Neural Networks = Lect. Notes. Artif. Int. Artificial Intelligence and Security in Computing Systems = Kluwer Int Ser Eng C Artificial Intelligence and Security in Computing Systems = Kluwer. Int. Ser. Eng. C. Artificial Intelligence and Security in Computing Systems = Springer Int Ser Eng Artificial Intelligence and Security in Computing Systems = Springer. Int. Ser. Eng. Artificial Intelligence and Simulation = Lect Notes Comput Sc Artificial Intelligence and Simulation = Lect. Notes. Comput. Sc. Artificial Intelligence and Simulation = Simul Series Artificial Intelligence and Simulation = Simul. Series. Artificial Intelligence and Soft Computing - Icaisc 2004 = Lect Notes Artif Int Artificial Intelligence and Soft Computing - Icaisc 2004 = Lect. Notes. Artif. Int. Artificial Intelligence and Soft Computing - Icaisc 2006, Proceedings = Lect Notes Comput Sc Artificial Intelligence and Soft Computing - Icaisc 2006, Proceedings = Lect. Notes. Comput. Sc. Artificial Intelligence and Soft Computing - Icaisc 2008, Proceedings = Lect Notes Artif Int Artificial Intelligence and Soft Computing - Icaisc 2008, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence and Soft Computing, Pt Ii = Lect Notes Artif Int Artificial Intelligence and Soft Computing, Pt Ii = Lect. Notes. Artif. Int. Artificial Intelligence and Soft Computing, Pt I = Lect Notes Artif Int Artificial Intelligence and Soft Computing, Pt I = Lect. Notes. Artif. Int. Artificial Intelligence and Symbolic Computation = Lect Notes Artif Int Artificial Intelligence and Symbolic Computation = Lect. Notes. Artif. Int. Artificial Intelligence and Symbolic Computation, Proceedings = Lect Notes Artif Int Artificial Intelligence and Symbolic Computation, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence and Symbolic Computation, Proceedings = Lect Notes Comput Sc Artificial Intelligence and Symbolic Computation, Proceedings = Lect. Notes. Comput. Sc. Artificial Intelligence: An International Perspective = Lect Notes Comput Sc Artificial Intelligence: An International Perspective = Lect. Notes. Comput. Sc. Artificial Intelligence Applications and Innovations = Ifip Adv Inf Comm Te Artificial Intelligence Applications and Innovations = Ifip. Adv. Inf. Comm. Te. Artificial Intelligence Applications and Innovations Iii = Int Fed Info Proc Artificial Intelligence Applications and Innovations Iii = Int. Fed. Info. Proc. Artificial Intelligence Applications and Innovations Ii = Int Fed Info Proc Artificial Intelligence Applications and Innovations Ii = Int. Fed. Info. Proc. Artificial Intelligence Applications and Innovations = Int Fed Info Proc Artificial Intelligence Applications and Innovations = Int. Fed. Info. Proc. Artificial Intelligence = Artificial Intelligence Artificial Intelligence = Artif Intell Artificial Intelligence = Artif. Intell. Artificial Intelligence for Human Computing = Lect Notes Comput Sc Artificial Intelligence for Human Computing = Lect. Notes. Comput. Sc. Artificial Intelligence in Education = Fr Art Int Artificial Intelligence in Education = Fr. Art. Int. Artificial Intelligence in Education = Front Artif Intel Ap Artificial Intelligence in Education = Front. Artif. Intel. Ap. Artificial Intelligence in Engineering = Artif Intell Eng Artificial Intelligence in Engineering = Artif. Intell. Eng. Artificial Intelligence in Manufacturing Research = Mater Manuf Technol Artificial Intelligence in Manufacturing Research = Mater. Manuf. Technol. Artificial intelligence in medicine = Artif Intell Med Artificial Intelligence in Medicine = Artif Intell Med Artificial Intelligence in Medicine = Artif. Intell. Med. Artificial Intelligence In Medicine=Artif Intell Med;; Artificial Intelligence in Medicine = Lect Notes Artif Int Artificial Intelligence in Medicine = Lect. Notes. Artif. Int. Artificial Intelligence in Medicine, Proceedings = Lect Notes Artif Int Artificial Intelligence in Medicine, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence in Medicine = St Heal T Artificial Intelligence in Medicine = St. Heal. T. Artificial Intelligence in Real-time Control 1991 = Ann R Aut P Artificial Intelligence in Real-time Control 1991 = Ann. R. Aut. P. Artificial Intelligence in Real-time Control 1992 = Ann R Aut P Artificial Intelligence in Real-time Control 1992 = Ann. R. Aut. P. Artificial Intelligence in Real-time Control 1995 (airtc'95) = Ifac Work S Artificial Intelligence in Real-time Control 1995 (airtc'95) = Ifac. Work. S. Artificial Intelligence in Real-time Control 1997 = Ifac Symp Series Artificial Intelligence in Real-time Control 1997 = Ifac. Symp. Series. Artificial Intelligence in Real-time Control 1998 = Ifac Symp Series Artificial Intelligence in Real-time Control 1998 = Ifac. Symp. Series. Artificial Intelligence in Real-time Control 2000 = Ifac Symp Series Artificial Intelligence in Real-time Control 2000 = Ifac. Symp. Series. Artificial Intelligence in Recognition and Classification of Astrophysical and Medical Images = Stud Comput Intell Artificial Intelligence in Recognition and Classification of Astrophysical and Medical Images = Stud. Comput. Intell. Artificial Intelligence in Scientific Computation : Towards Second Generation Systems = Imacs Ann C Artificial Intelligence in Scientific Computation : Towards Second Generation Systems = Imacs. Ann. C. Artificial Intelligence in Theory and Practice Ii = Int Fed Info Proc Artificial Intelligence in Theory and Practice Ii = Int. Fed. Info. Proc. Artificial Intelligence in Theory and Practice = Int Fed Info Proc Artificial Intelligence in Theory and Practice = Int. Fed. Info. Proc. Artificial Intelligence in Wireless Communications = Artech Hse Mob Comm Artificial Intelligence in Wireless Communications = Artech. Hse. Mob. Comm. Artificial Intelligence: Methodology Systems and Applications = Lect Notes Artif Int Artificial Intelligence: Methodology Systems and Applications = Lect. Notes. Artif. Int. Artificial Intelligence: Methodology, Systems, and Applications = Lect Notes Artif Int Artificial Intelligence: Methodology, Systems, and Applications = Lect. Notes. Artif. Int. Artificial Intelligence: Methodology, Systems and Applications, Proceedings = Lect Notes Artif Int Artificial Intelligence: Methodology, Systems and Applications, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence: Methodology, Systems, and Applications, Proceedings = Lect Notes Comput Sc Artificial Intelligence: Methodology, Systems, and Applications, Proceedings = Lect. Notes. Comput. Sc. Artificial Intelligence: Methodology, Systems, Applications = Fr Art Int Artificial Intelligence: Methodology, Systems, Applications = Fr. Art. Int. Artificial Intelligence: Methodology, Systems, Applications, Proceedings = Lect Notes Artif Int Artificial Intelligence: Methodology, Systems, Applications, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence Research and Development = Fr Art Int Artificial Intelligence Research and Development = Fr. Art. Int. Artificial Intelligence Research and Development = Front Artif Intel Ap Artificial Intelligence Research and Development = Front. Artif. Intel. Ap. Artificial Intelligence Review = Artif Intell Rev Artificial Intelligence Review = Artif. Intell. Rev. Artificial Intelligence Series = Artif Int Artificial Intelligence Series = Artif. Int. Artificial Intelligence Series-wseas = Artif Int Ser Wseas Artificial Intelligence Series-wseas = Artif. Int. Ser. Wseas. Artificial Intelligence Techniques for Computer Graphics = Stud Comp Intell Artificial Intelligence Techniques for Computer Graphics = Stud. Comp. Intell. Artificial Intelligence Techniques for Networked Manufacturing Enterprises Management = Springer Ser Adv Man Artificial Intelligence Techniques for Networked Manufacturing Enterprises Management = Springer. Ser. Adv. Man. Artificial Intelligence: Theories, Models and Applications, Proceedings = Lect Notes Artif Int Artificial Intelligence: Theories, Models and Applications, Proceedings = Lect. Notes. Artif. Int. Artificial Intelligence: Theories, Models and Applications, Setn 2008 = Lect Notes Artif Int Artificial Intelligence: Theories, Models and Applications, Setn 2008 = Lect. Notes. Artif. Int. Artificial life = Artif Life Artificial Life=Artif Life;; Artificial Life = Artif Life Artificial Life = Artif. Life Artificial Life: Borrowing From Biology, Proceedings = Lect Notes Artif Int Artificial Life: Borrowing From Biology, Proceedings = Lect. Notes. Artif. Int. Artificial Life Ii = Sfi S Sci C Artificial Life Ii = Sfi. S. Sci. C. Artificial Life Vi = From Anim Animat Artificial Life Vi = From. Anim. Animat. Artificial Life Vii = From Anim Animat Artificial Life Vii = From. Anim. Animat. Artificial limbs = Artif Limbs Artificial Limbs = Artif. Limbs Artificial Liver Support = Falk Symp Artificial Liver Support = Falk. Symp. Artificially Induced Grain Alignment in Thin Films = Mater Res Soc Symp P Artificially Induced Grain Alignment in Thin Films = Mater. Res. Soc. Symp. P. Artificial Market Experiments With The U-mart System = Springer Ser Agent B Artificial Market Experiments With The U-mart System = Springer. Ser. Agent. B. Artificial Markets Modeling: Methods and Applications = Lect Notes Econ Math Artificial Markets Modeling: Methods and Applications = Lect. Notes. Econ. Math. Artificial Muscle Actuators Using Electroactive Polymers = Adv Sci Tech Artificial Muscle Actuators Using Electroactive Polymers = Adv. Sci. Tech. Artificial Neural Nets and Genetic Algorithms, Proceedings = Spring Comp Sci Artificial Neural Nets and Genetic Algorithms, Proceedings = Spring. Comp. Sci. Artificial Neural Nets and Genetic Algorithms = Spring Comp Sci Artificial Neural Nets and Genetic Algorithms = Spring. Comp. Sci. Artificial Neural Nets Problem Solving Methods, Pt Ii = Lect Notes Comput Sc Artificial Neural Nets Problem Solving Methods, Pt Ii = Lect. Notes. Comput. Sc. Artificial Neural Networks and Neural Information Processing - Ican/iconip 2003 = Lect Notes Comput Sc Artificial Neural Networks and Neural Information Processing - Ican/iconip 2003 = Lect. Notes. Comput. Sc. Artificial Neural Networks: Biological Inspirations - Icann 2005, Pt 1, Proceedings = Lect Notes Comput Sc Artificial Neural Networks: Biological Inspirations - Icann 2005, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Artificial Neural Networks: Formal Models and Their Applications - Icann 2005, Pt 2, Proceedings = Lect Notes Comput Sc Artificial Neural Networks: Formal Models and Their Applications - Icann 2005, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Artificial Neural Networks for The Modelling and Fault Diagnosis of Technical Processes = Lect Notes Contr Inf Artificial Neural Networks for The Modelling and Fault Diagnosis of Technical Processes = Lect. Notes. Contr. Inf. Artificial Neural Networks-icann 2001, Proceedings = Lect Notes Comput Sc Artificial Neural Networks-icann 2001, Proceedings = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2002 = Lect Notes Comput Sc Artificial Neural Networks - Icann 2002 = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2006, Pt 1 = Lect Notes Comput Sc Artificial Neural Networks - Icann 2006, Pt 1 = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2006, Pt 2 = Lect Notes Comput Sc Artificial Neural Networks - Icann 2006, Pt 2 = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2007, Pt 1, Proceedings = Lect Notes Comput Sc Artificial Neural Networks - Icann 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2007, Pt 2, Proceedings = Lect Notes Comput Sc Artificial Neural Networks - Icann 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2008, Pt Ii = Lect Notes Comput Sc Artificial Neural Networks - Icann 2008, Pt Ii = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2008, Pt I = Lect Notes Comput Sc Artificial Neural Networks - Icann 2008, Pt I = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2009, Pt Ii = Lect Notes Comput Sc Artificial Neural Networks - Icann 2009, Pt Ii = Lect. Notes. Comput. Sc. Artificial Neural Networks - Icann 2009, Pt I = Lect Notes Comput Sc Artificial Neural Networks - Icann 2009, Pt I = Lect. Notes. Comput. Sc. Artificial Neural Networks (icann 2010), Pt Iii = Lect Notes Comput Sc Artificial Neural Networks (icann 2010), Pt Iii = Lect. Notes. Comput. Sc. Artificial Neural Networks-icann 2010, Pt Ii = Lect Notes Comput Sc Artificial Neural Networks-icann 2010, Pt Ii = Lect. Notes. Comput. Sc. Artificial Neural Networks-icann 2010, Pt I = Lect Notes Comput Sc Artificial Neural Networks-icann 2010, Pt I = Lect. Notes. Comput. Sc. Artificial Neural Networks in Medicine and Biology = Persp Neural Comp Artificial Neural Networks in Medicine and Biology = Persp. Neural Comp. Artificial Neural Networks in Pattern Recognition, Proceedings = Lect Notes Artif Int Artificial Neural Networks in Pattern Recognition, Proceedings = Lect. Notes. Artif. Int. Artificial Neural Networks / = Lect Notes Comput Sc Artificial Neural Networks / = Lect. Notes. Comput. Sc. Artificial Nutrition and Hydration = Philos Med Artificial Nutrition and Hydration = Philos. Med. Artificial organs = Artif Organs Artificial Organs=Artif Organs;; Artificial Organs = Artif Organs Artificial Organs = Artif. Organs Artificial Organs = New Tech Surg Artificial Organs = New. Tech. Surg. Artificial Oxygen Carrier: Its Front Line = Keio U Int Symp Life Artificial Oxygen Carrier: Its Front Line = Keio. U. Int. Symp. Life. Artificial Turbulence for Imaging and Wave Propagation = P Soc Photo-opt Ins Artificial Turbulence for Imaging and Wave Propagation = P. Soc. Photo-opt. Ins. Artiifical Evolution = Lect Notes Comput Sc Artiifical Evolution = Lect. Notes. Comput. Sc. Arti Musices = Arti Music Arti Musices = Arti Music. Art in America = Art Am Art in America = Art Am. Art in A Season of Revolution: Painters, Artisans, and Patrons in Early America = Early Am Stud Ser Art in A Season of Revolution: Painters, Artisans, and Patrons in Early America = Early Am. Stud. Ser. Art in Comparison to Phenomenology = Philosophic Art in Comparison to Phenomenology = Philosophic. Art Inspiring Transmutations of Life = Analecta Husserl Art Inspiring Transmutations of Life = Analecta. Husserl. Art Institute of Chicago Museum Studies = Art Inst Chicago Mus Art Institute of Chicago Museum Studies = Art Inst. Chicago Mus. Art International = Art Int Art International = Art Int. Art Journal = ArtJ Art Journal = Art J Art Journal = Art J. Art Matters: A Critical Commentary On Heidegger's The Origin of The Work of Art = Contrib Phenomenol Art Matters: A Critical Commentary On Heidegger's The Origin of The Work of Art = Contrib. Phenomenol. Art Meets Law in Education: Yearbook of The European Association for Education Law and Policy = Yearb Eur Asso Edu Art Meets Law in Education: Yearbook of The European Association for Education Law and Policy = Yearb. Eur. Asso. Edu. Art, Memoire Et Territoire = Sci Soc-france Art, Memoire Et Territoire = Sci. Soc-france. Artnews = Art News Artnews = Art. News. ARTnews = ARTnews Art of Being Jewish in Modern Times = Jew Cult Context Art of Being Jewish in Modern Times = Jew. Cult. Context. Art of Full Employment = Contrib To Econ Anal Art of Full Employment = Contrib. To. Econ. Anal. Art of Grief: The Use of Expressive Arts in A Grief Support Group = Ser Death Dying Art of Grief: The Use of Expressive Arts in A Grief Support Group = Ser. Death. Dying. Art of Modelling Stars in The 21st Century = Iau Symp P Series Art of Modelling Stars in The 21st Century = Iau. Symp. P. Series. Art of Random Walks = Lect Notes Math Art of Random Walks = Lect. Notes. Math. Art of Resisting Extreme Natural Forces = Wit Trans Eng Sci Art of Resisting Extreme Natural Forces = Wit. Trans. Eng. Sci. Art of Semiparametrics = Contr Stat Art of Semiparametrics = Contr. Stat. Art Outside The Lines: New Perspectives On Gdr Art Culture = Ger Monitor Art Outside The Lines: New Perspectives On Gdr Art Culture = Ger. Monitor. Art Psychotherapy = Art Psychotherapy Art Quarterly = Art Quart Art Quarterly = Art Quart. Arts and Intellectual Life in Modern America = Arts Intell Life Mod Arts and Intellectual Life in Modern America = Arts Intell. Life Mod. Arts Biomechanics: An Infant Science: Its Challenges and Future = Biomech Theor Appl Arts Biomechanics: An Infant Science: Its Challenges and Future = Biomech. Theor. Appl. Artscanada = Artscanada Art Seminar = Art Semin Art Seminar = Art Semin. Arts in Psychotherapy = Art Psychother Arts in Psychotherapy = Art. Psychother. Arts in Virginia = ArtVirg Arts Magazine = Art Mag Arts Magazine = Art. Mag. Arts of Asia = Art Asia Arts of Asia = Art. Asia Arts of Calculation: Quantifying Thought in Early Modern Europe = Ear Mod Cult Stud Arts of Calculation: Quantifying Thought in Early Modern Europe = Ear. Mod. Cult. Stud. Art Work: Women Artists and Democracy in Mid-nineteenth-century New York = Arts Intell Life Mod Art Work: Women Artists and Democracy in Mid-nineteenth-century New York = Arts. Intell. Life. Mod. Arukoru Kenkyu-to Yakubutsu Ison (Japanese Journal of Alcohol Studies and Drug Dependence) = Arukoru Kenkyuto Yakubutsu Ison Arundhati Roy's The God of Small Things = Routledge Guides Lit Arundhati Roy's The God of Small Things = Routledge. Guides. Lit. Arv = Arv Arvonluonnin Uudet Muodot Ja Verkostot = Vtt Res Notes Arvonluonnin Uudet Muodot Ja Verkostot = Vtt. Res. Notes. arXiv.org, e-Print Archive Astrophysics = arXiv.org, e-Print Arch. Astrophys. arXiv.org, e-Print Archive Condensed Matter = arXiv.org, e-Print Arch. Condens. Matter arXiv.org, e-Print Archive General Relativity and Quantum Cosmology = arXiv.org, e-Print Arch. Gen. Relativ. Quantum Cosmol. arXiv.org, e-Print Archive High Energy Physics - Experimental = arXiv.org, e-Print Arch. High Energy Phys. Exp. arXiv.org, e-Print Archive High Energy Physics - Lattice = arXiv.org, e-Print Arch. High Energy Phys. Lattice arXiv.org, e-Print Archive High Energy Physics - Phenomenology = arXiv.org, e-Print Arch. High Energy Phys. Phenomenol. arXiv.org, e-Print Archive High Energy Physics - Theory = arXiv.org, e-Print Arch. High Energy Phys.Theor. arXiv.org, e-Print Archive Nuclear Experiment = arXiv.org, e-Print Arch. Nucl. Exp. arXiv.org, e-Print Archive Nuclear Theory = arXiv.org, e-Print Arch. Nucl. Theory arXiv.org, e-Print Archive Physics = arXiv.org, e-Print Arch. Phys. arXiv.org, e-Print Archive Quantitative Biology = arXiv.org, e-Print Arch. Quant. Biol. arXiv.org, e-Print Archive Quantum Physics = arXiv.org, e-Print Arch. Quantum Phys. Arzneimittel-forschung = Arznei-forschung Arzneimittel-forschung = Arznei-forschung. Arzneimittel Forschung = Arzneim. Forsch. Arzneimittel-Forschung=Arzneimittelforschung;; Arzneimittel-Forschung = Arzneimittelforschung Arzneimittel-Forschung = Arzneimittelforschung. Arzneimittel-Forschung/Drug Research = Arzneim.-Forsch. Arzneimittel-forschung-drug Research = Arzneimittel-forsch Arzneimittel-forschung-drug Research = Arzneimittel-forsch. Arzneimittel-forschung/drug Research = Arzneimittel-forsch Arzneimittel-forschung/drug Research = Arzneimittel-forsch. Arzteblatt Baden-Wurttemberg : Offizielles Organ der Landesarztekammer Baden-Wurttemberg ... [etc.] = Arztebl Baden Wurtt Arztliche Forschung = Arztl Forsch Arztliche Forschung = Arztl. Forsch. Arztliche Jugendkunde = Arztl Jugendkd Arztliche Jugendkunde = Arztl. Jugendkd. Arztliche Laboratorium = Arztl Lab Arztliche Laboratorium = Arztl. Lab. Arztliche Sammelblatter = Arztl Sammelbl Arztliche Wochenschrift = Arztl Wochensch Asa Decennial Conference Series - The Uses of Knowledge: Global and Local Relations = Asa Decen Conf Ser Asa Decennial Conference Series - The Uses of Knowledge: Global and Local Relations = Asa Decen. Conf. Ser. Asae Publication = Asae Publ Asae Publication = Asae Publ. ASAIO journal (American Society for Artificial Internal Organs : 1992) = ASAIO J Asaio Journal = Asaio J Asaio Journal = Asaio J. Asaio Journal=ASAIO J;; ASAIO Journal = ASAIO J. ASAIO transactions / American Society for Artificial Internal Organs = ASAIO Trans ASAIO Transactions = ASAIO Trans. Asa Miscellaneous Publication = Asa Misc P Asa Miscellaneous Publication = Asa Misc. P. Asa Monographs = Asa Monogr Asa Monographs = Asa Monogr. ASA newsletter = ASA Newsl ASA Newsletter = ASA Newsl. Asao Monograph Series = Asao Monog Ser Asao Monograph Series = Asao Monog. Ser. Asa-siam Series On Statistics and Applied Probability = Asa Siam Ser Stat Ap Asa-siam Series On Statistics and Applied Probability = Asa. Siam. Ser. Stat. Ap. ASA-SIAM Series on Statistics and Applied Probability = ASA-SIAM Ser. Stat. Appl. Probab. Asa Special Publication = Asa Spec P Asa Special Publication = Asa Spec. P. Asbestos: Risks, Environment and Impact = Env Health Phys Chem Asbestos: Risks, Environment and Impact = Env. Health. Phys. Chem. Asbm6: Advanced Biomaterials Vi = Key Eng Mat Asbm6: Advanced Biomaterials Vi = Key. Eng. Mat. Asbm6: Advanced Biomaterials Vi = Key Eng Mater Asbm6: Advanced Biomaterials Vi = Key. Eng. Mater. Asbm7: Advanced Biomaterials Vii = Key Eng Mat Asbm7: Advanced Biomaterials Vii = Key. Eng. Mat. Asbm7: Advanced Biomaterials Vii = Key Eng Mater Asbm7: Advanced Biomaterials Vii = Key. Eng. Mater. Ascania = Ascania Asci Journal of Management = Asci J Manage Asci Journal of Management = Asci J. Manage. Ascites, Hyponatremia and Hepatorenal Syndrome: Progress in Treatment = Front Gastroint Res Ascites, Hyponatremia and Hepatorenal Syndrome: Progress in Treatment = Front. Gastroint. Res. Asclepio; archivo iberoamericano de historia de la medicina y antropologia medica = Asclepio Asclepio-revista De Historia De La Medicina Y De La Ciencia = Asclepio Asclepio-revista De Historia De La Medicina Y De La Ciencia = Asclepio. Ascmc 2003: Ieee/semi (r) Advanced Semiconductor Manufacturing Conference and Workshop, Proceedings = Asmc Proc Ascmc 2003: Ieee/semi (r) Advanced Semiconductor Manufacturing Conference and Workshop, Proceedings = Asmc. Proc. Ascomycete Systematics = Nato Adv Sci Inst Se Ascomycete Systematics = Nato. Adv. Sci. Inst. Se. ASDA news (American Student Dental Association : 1981) = ASDA News ASDA News = ASDA News Asdc Journal of Dentistry For Children=ASDC J Dent Child;; ASDC journal of dentistry for children = ASDC J Dent Child ASDC Journal of Dentistry for Children = ASDC J. Dent. Child. Ase 2006: 21st Ieee International Conference On Automated Software Engineering, Proceedings = Ieee Int Conf Autom Ase 2006: 21st Ieee International Conference On Automated Software Engineering, Proceedings = Ieee Int. Conf. Autom. Asea Brown Boveri Symposia Series = Asea Br B S Asea Brown Boveri Symposia Series = Asea Br. B. S. ASEAN economic bulletin = ASEAN Econ Bull ASEAN Economic Bulletin=ASEAN Econ. Bull. Asean Economic Integration: Trade, Foreign Direct Investment, and Finance = Adv Res Asian Econ Asean Economic Integration: Trade, Foreign Direct Investment, and Finance = Adv. Res. Asian. Econ. Asem: A Window of Opportunity = Stud Int Inst Asian Asem: A Window of Opportunity = Stud. Int. Inst. Asian. Asepsis = Asepsis ASGSB bulletin : publication of the American Society for Gravitational and Space Biology = ASGSB Bull ASHA=ASHA;; ASHA = ASHA ASHA monographs = ASHA Monogr ASHA Monographs = ASHA Monogr. Asha Reports = Asha Report Asha Reports = Asha Report. ASHA. Supplement=ASHA Suppl;; ASHA. Supplement = ASHA Suppl ASHA. Supplement = ASHA. Suppl. Ashbrook Series in Constitutional Politics = Ashbr Const Ashbrook Series in Constitutional Politics = Ashbr. Const. Ashrae Journal-american Society of Heating Refrigerating and Air-conditioning Engineers = Ashrae J Ashrae Journal-american Society of Heating Refrigerating and Air-conditioning Engineers = Ashrae J. Ashrae Journal = Ashrae J Ashrae Journal = Ashrae J. Ashrae Journal = Ashrae Journal Ashrae Special Publications = Ashrae Spec Ashrae Special Publications = Ashrae Spec. Ashrae Transactions 1991, Vol 97, Pt 1 = Ashrae Tran Ashrae Transactions 1991, Vol 97, Pt 1 = Ashrae Tran. Ashrae Transactions 1991, Vol 97, Pt 2 = Ashrae Tran Ashrae Transactions 1991, Vol 97, Pt 2 = Ashrae Tran. Ashrae Transactions, 1992, Vol 98, Pt 1 = Ashrae Tran Ashrae Transactions, 1992, Vol 98, Pt 1 = Ashrae Tran. Ashrae Transactions 1992, Vol 98, Pt 2 = Ashrae Tran Ashrae Transactions 1992, Vol 98, Pt 2 = Ashrae Tran. Ashrae Transactions 1993, Vol 99, Pt 1 = Ashrae Tran Ashrae Transactions 1993, Vol 99, Pt 1 = Ashrae Tran. Ashrae Transactions 1993, Vol 99, Pt 2 = Ashrae Tran Ashrae Transactions 1993, Vol 99, Pt 2 = Ashrae Tran. Ashrae Transactions 1995, Vol 101, Pt 1 = Ashrae Tran Ashrae Transactions 1995, Vol 101, Pt 1 = Ashrae Tran. Ashrae Transactions 1995, Vol 101, Pt 2 = Ashrae Tran Ashrae Transactions 1995, Vol 101, Pt 2 = Ashrae Tran. Ashrae Transactions 1996, Vol 102, Pt 1 = Ashrae Tran Ashrae Transactions 1996, Vol 102, Pt 1 = Ashrae Tran. Ashrae Transactions 1996, Vol 102, Pt 2 = Ashrae Tran Ashrae Transactions 1996, Vol 102, Pt 2 = Ashrae Tran. Ashrae Transactions 1997, Vol 103, Pt I = Ashrae Tran Ashrae Transactions 1997, Vol 103, Pt I = Ashrae Tran. Ashrae Transactions 2005, Vol 111, Pt 1 = Ashrae Tran Ashrae Transactions 2005, Vol 111, Pt 1 = Ashrae Tran. Ashrae Transactions 2005, Vol 111, Pt 2 = Ashrae Tran Ashrae Transactions 2005, Vol 111, Pt 2 = Ashrae Tran. Ashrae Transactions 2006, Vol 112, Pt 1 = Ashrae Tran Ashrae Transactions 2006, Vol 112, Pt 1 = Ashrae Tran. Ashrae Transactions 2006, Vol 112, Pt 2 = Ashrae Tran Ashrae Transactions 2006, Vol 112, Pt 2 = Ashrae Tran. Ashrae Transactions 2007 Vol 113, Pt 2 = Ashrae Tran Ashrae Transactions 2007 Vol 113, Pt 2 = Ashrae Tran. Ashrae Transactions 2008, Vol 114, Pt 1 = Ashrae Tran Ashrae Transactions 2008, Vol 114, Pt 1 = Ashrae Tran. Ashrae Transactions 2008, Vol 114, Pt 2 = Ashrae Tran Ashrae Transactions 2008, Vol 114, Pt 2 = Ashrae Tran. Ashrae Transactions 2009, Vol 115, Pt 1 = Ashrae Tran Ashrae Transactions 2009, Vol 115, Pt 1 = Ashrae Tran. Ashrae Transactions 2009, Vol 115, Pt 2 = Ashrae Tran Ashrae Transactions 2009, Vol 115, Pt 2 = Ashrae Tran. Ashrae Transactions 2010, Vol 116, Pt 1 = Ashrae Tran Ashrae Transactions 2010, Vol 116, Pt 1 = Ashrae Tran. Ashrae Transactions 2010, Vol 116, Pt 2 = Ashrae Tran Ashrae Transactions 2010, Vol 116, Pt 2 = Ashrae Tran. Ashrae Transactions = Ashrae Tran Ashrae Transactions = Ashrae Tran. Ashrae Transactions, Vol 96, Pt 1, 1990 = Ashrae Tran Ashrae Transactions, Vol 96, Pt 1, 1990 = Ashrae Tran. Ashrae Transactions, Vol 96, Pt 2, 1990 = Ashrae Tran Ashrae Transactions, Vol 96, Pt 2, 1990 = Ashrae Tran. Asia and South Pacific Design Automation Conference Proceedings = Asia S Pacif Des Aut Asia and South Pacific Design Automation Conference Proceedings = Asia S. Pacif. Des. Aut. Asia = Asia Asia Europe Journal = Asia Eur J Asia Europe Journal = Asia Eur. J. Asia-europe Meeting:the Theory and Practice of Interregionalism = Routl Contemp Asia Asia-europe Meeting:the Theory and Practice of Interregionalism = Routl. Contemp. Asia. Asia-europe Studies Series = Asia Europ Stud Asia-europe Studies Series = Asia. Europ. Stud. Asia in The 1990s = Res Pap Pol Asia in The 1990s = Res. Pap. Pol. Asia in The Twenty-first Century = Econ Id Lead 21st C Asia in The Twenty-first Century = Econ. Id. Lead. 21st. C. Asia Life Sciences = Asia Life Sci Asia Life Sciences = Asia Life Sci. Asia major = Asia Major Asia Minor Studien = AMS Asian American and Pacific Islander journal of health = Asian Am Pac Isl J Health Asian American Parenting and Parent-adolescent Relationships = Adv Respons Adol Dev Asian American Parenting and Parent-adolescent Relationships = Adv. Respons. Adol. Dev. Asian Americans = Assoc As Am Asian Americans = Assoc. As. Am. Asian and African studies = Asian Afr Stud Asian and Pacific census forum / East-West Population Institute = Asian Pac Cens Forum Asian and Pacific census newsletter = Asian Pac Census Newsl Asian and Pacific Education: Learning, Socialization, and Identity = Res Educ Asian Pac Asian and Pacific Education: Learning, Socialization, and Identity = Res. Educ. Asian Pac. Asian and Pacific migration journal : APMJ = Asian Pac Migr J Asian and Pacific Migration Journal = Asian Pac Migr J Asian and Pacific Migration Journal = Asian Pac. Migr. J. Asian and Pacific population forum / East-West Population Institute, East-West Center = Asian Pac Popul Forum Asian Anthropology = Anthropol Asia Asian Anthropology = Anthropol. Asia. Asian anthropology = Asian Anthropol Asian Art = Asian Art Asian Art & Culture = Asian Art Cult Asian Art & Culture = Asian Art Cult. Asian-australasian Journal of Animal Sciences = Asian Austral J Anim Asian-australasian Journal of Animal Sciences = Asian. Austral. J. Anim. Asian Biomedicine = Asian Biomed Asian Biomedicine = Asian Biomed. Asian Business & Management = Asian Bus Manag Asian Business & Management = Asian Bus. Manag. Asian cardiovascular & thoracic annals = Asian Cardiovasc Thorac Ann Asian Case Research Journal = Asian Case Res J Asian Case Research Journal = Asian Case Res. J. Asian Ceramic Science for Electronics Ii and Electroceramics in Japan V, Proceedings = Key Eng Mat Asian Ceramic Science for Electronics Ii and Electroceramics in Japan V, Proceedings = Key. Eng. Mat. Asian Ceramic Science for Electronics Iii and Electroceramics in Japan Xii = Key Eng Mat Asian Ceramic Science for Electronics Iii and Electroceramics in Japan Xii = Key. Eng. Mat. Asian Ceramic Science for Electronics Iii and Electroceramics in Japan Xii = Key Eng Mater Asian Ceramic Science for Electronics Iii and Electroceramics in Japan Xii = Key. Eng. Mater. Asian Ceramic Science for Electronics I = Key Eng Mat Asian Ceramic Science for Electronics I = Key. Eng. Mat. Asian Development Review=Asian Devel. Rev. Asian development review = Asian Dev Rev Asian Diaspora Poetry in North America = Lit Crit Cult Theory Asian Diaspora Poetry in North America = Lit. Crit. Cult. Theory. Asian Digital Libraries: Looking Back 10 Years and Forging New Frontiers, Proceedings = Lect Notes Comput Sc Asian Digital Libraries: Looking Back 10 Years and Forging New Frontiers, Proceedings = Lect. Notes. Comput. Sc. Asian Economic Journal=Asian Econ. J. Asian Economic Journal = Asian Econ J Asian Economic Journal = Asian Econ. J. Asian Economic Papers = Asian Econ Pap Asian Economic Papers = Asian Econ. Pap. Asian Economic Policy Review = Asian Econ Policy R Asian Economic Policy Review = Asian Econ. Policy R. Asian Economic Review=Asian Econ. Rev. Asian economies = Asian Econ Asian Economy and Asian Money = Contrib Econ Anal Asian Economy and Asian Money = Contrib. Econ. Anal. Asian Economy and Finance: A Post-crisis Perspective = Innov Financ Market Asian Economy and Finance: A Post-crisis Perspective = Innov. Financ. Market. Asian Empire and British Knowledge: China and The Networks of British Imperial Expansion = Camb Imp Post-col St Asian Empire and British Knowledge: China and The Networks of British Imperial Expansion = Camb. Imp. Post-col. St. Asian Ethnology = Asian Ethnol Asian Ethnology = Asian Ethnol. Asian-european Relations: Building Blocks for Global Governance? = Routl Contemp Asia Asian-european Relations: Building Blocks for Global Governance? = Routl. Contemp. Asia. Asian Fisheries Society Special Publication = Asian Fish Soc Spec Asian Fisheries Society Special Publication = Asian Fish. Soc. Spec. Asian Fisheries Society Special Publication - Indian Branch = Asian F Ind Asian Fisheries Society Special Publication - Indian Branch = Asian F. Ind. Asian Folklore Studies = Asian Folklore Stud Asian Folklore Studies = Asian Folklore Stud. Asian folklore studies = Asian Folkl Stud Asian Forum newsletter : official organ of the Asian Forum of Parliamentarians on Population and Development = Asian Forum Newsl Asian geographer = Asian Geogr Asian Herpetological Research = Asian Herpetol Res Asian Herpetological Research = Asian Herpetol. Res. Asian Informal Workers: Global Risks Local Protection = Routledge Stud Growt Asian Informal Workers: Global Risks Local Protection = Routledge. Stud. Growt. Asian Journal of Aesthetic Dentistry = Asian J. Aesthet. Dent. Asian journal of aesthetic dentistry / the Asian Academy of Aesthetic Dentistry = Asian J Aesthet Dent Asian Journal of Agricultural Economics=Asian J. Agr. Econ. Asian journal of andrology = Asian J Androl Asian Journal of Andrology = Asian J Androl Asian Journal of Andrology = Asian J. Androl. Asian Journal of Animal and Veterinary Advances = Asian J Anim Vet Adv Asian Journal of Animal and Veterinary Advances = Asian J. Anim. Vet. Adv. Asian Journal of Biochemistry = Asian J. Biochem. Asian Journal of Biotechnology = Asian J. Biotechnol. Asian Journal of Business & Information Systems = Asian J Bus Inf Syst Asian Journal of Business & Information Systems = Asian J. Bus. Inf. Syst. Asian Journal of Chemistry = Asian J Chem Asian Journal of Chemistry = Asian J. Chem. Asian Journal of Chemistry Reviews = Asian J Chem Rev Asian Journal of Chemistry Reviews = Asian J. Chem. Rev. Asian journal of communication = Asian J Commun Asian Journal of Communication = Asian J Commun Asian Journal of Communication = Asian J. Commun. Asian journal of control = Asian J Control Asian Journal of Control = Asian J Control Asian Journal of Control = Asian J. Control Asian journal of economics and social studies = Asian J Econ Soc Stud Asian Journal of Experimental Biological Sciences = Asian J. Exp. Biol. Sci. Asian Journal of Experimental Sciences = Asian J. Exp. Sci. Asian journal of infectious diseases = Asian J Infect Dis Asian Journal of Infectious Diseases = Asian J. Infect. Dis. Asian Journal of Materials Science = Asian J. Mater. Sci. Asian Journal of Mathematics = Asian J Math Asian Journal of Mathematics = Asian J. Math. Asian journal of medicine = Asian Med J Asian Journal of Microbiology, Biotechnology & Environmental Sciences = Asian J. Microbiol. Biotechnol. Environ. Exp. Sci. Asian Journal of Pharmaceutical Sciences = Asian J. Pharm. Sci. Asian Journal of Physics = Asian J. Phys. Asian Journal of Social Psychology = Asian J Soc Psychol Asian Journal of Social Psychology = Asian J. Soc. Psychol. Asian Journal of Social Science = Asian J Soc Sci Asian Journal of Social Science = Asian J. Soc. Sci. Asian Journal of Spectroscopy = Asian J. Spectro. Asian Journal of Spectroscopy = Asian J Spectrosc Asian Journal of Spectroscopy = Asian J. Spectrosc. Asian Journal of Surgery = Asian J Surg Asian Journal of Surgery = Asian J. Surg. Asian journal of surgery / Asian Surgical Association = Asian J Surg Asian Journal of Technology Innovation = Asian J Technol Inno Asian Journal of Technology Innovation = Asian J. Technol. Inno. Asian Journal of Water, Environment and Pollution = Asian J. Water Environ. Pollut. Asian Journal of Womens Studies = Asian J Women Stud Asian Journal of Womens Studies = Asian J. Women. Stud. Asian Journal of Wto & International Health Law and Policy = Asian J Wto Int Heal Asian Journal of Wto & International Health Law and Policy = Asian J. Wto Int. Heal. Asian medical journal = Asian Med J Asian Medicine and Globalization = Encounters Asia Asian Medicine and Globalization = Encounters. Asia. Asian migrant = Asian Migr Asian Migrants and Education = Educ Asia-pacific Asian Migrants and Education = Educ. Asia-pacific. Asian Migrants and Education = Educ Asia Pac Reg-is Asian Migrants and Education = Educ. Asia. Pac. Reg-is. Asian Music = Asian Music Asian Myrmecology = Asian Myrmecol Asian Myrmecology = Asian Myrmecol. Asian Nursing Research = Asian Nurs Res Asian Nursing Research = Asian Nurs. Res. Asian-pacific Economic Literature = Asian-pac Econ Lit Asian-pacific Economic Literature = Asian-pac. Econ. Lit. Asian-Pacific Economic Literature=Asian-Pacific Econ. Lit. Asian-Pacific economic literature = Asia Pac Econ Lit Asian Pacific Journal of Allergy and Immunology = Asian Pac J Allergy Asian Pacific Journal of Allergy and Immunology = Asian Pac. J. Allergy Asian Pacific Journal of Allergy and Immunology=Asian Pac J Allergy Immunol;; Asian Pacific Journal of Allergy and Immunology = Asian Pac. J. Allergy Immunol. Asian Pacific journal of allergy and immunology / launched by the Allergy and Immunology Society of Thailand = Asian Pac J Allergy Immunol Asian Pacific journal of cancer prevention : APJCP = Asian Pac J Cancer Prev Asian Pacific Journal of Cancer Prevention = Asian Pac J Cancer P Asian Pacific Journal of Cancer Prevention = Asian Pac. J. Cancer P. Asian Pacific Journal of Cancer Prevention = Asian Pac. J. Cancer Prev. Asian Pacific Journal of Tropical Medicine = Asian Pac J Trop Med Asian Pacific Journal of Tropical Medicine = Asian Pac. J. Trop. Med. Asian & Pacific population programme news = Asian Pac Popul Programme News Asian-Pacific population programme news = Asian Pac Popul Programme News Asian Paleoanthropology: From Africa to China and Beyond = Vertebr Paleobiol Pa Asian Paleoanthropology: From Africa to China and Beyond = Vertebr. Paleobiol. Pa. Asian Perspective = Asian Perspec Asian Perspective = Asian Perspec. Asian perspective = Asian Perspect Asian Perspective = Asian Perspect-seoul Asian Perspective = Asian Perspect-seoul. Asian Perspectives = Asian Perspect Asian Perspectives = Asian Perspect. Asian Philosophy = Asian Philos Asian Philosophy = Asian Philos. Asian Plants With Unique Horticultural Potential: Genetic Resources, Cultural Practices, and Utilization = Acta Hortic Asian Plants With Unique Horticultural Potential: Genetic Resources, Cultural Practices, and Utilization = Acta. Hortic. Asian Political Economic and Security Issues = Asian Polit Econ Sec Asian Political Economic and Security Issues = Asian Polit. Econ. Sec. Asian population programme news = Asian Popul Programme News Asian population studies series / Economic Commission for Asia and the Far East = Asian Popul Stud Ser Asian profile = Asian Profile Asian Security Studies = Asian Secur Stud Asian Security Studies = Asian Secur. Stud. Asian Studies Association of Australia = Asian Stud Assoc Aus Asian Studies Association of Australia = Asian Stud. Assoc. Aus. Asian studies (Quezon City, Philippines) = Asian Stud Asian Studies Review = Asian Stud Rev Asian Studies Review = Asian Stud. Rev. Asian Summer School On Laser Plasma Acceleration and Radiation = Aip Conf Proc Asian Summer School On Laser Plasma Acceleration and Radiation = Aip. Conf. Proc. Asian survey = Asian Surv Asian Survey = Asian Surv Asian Survey = Asian Surv. Asian Test Symposium Proceedings = Asian Test Symposium Asian Textile Journal = Asian Text. J. Asian Theatre Journal = Asian Theatre J Asian Theatre Journal = Asian Theatre J. Asian thought & society = Asian Thought Soc Asian Turtle Trade: Proceedings of A Workshop On Conservation An D Trade of Freshwater Turtles and Tortoises in Asia = Chelon Res Monogr Asian Turtle Trade: Proceedings of A Workshop On Conservation An D Trade of Freshwater Turtles and Tortoises in Asia = Chelon. Res. Monogr. Asian Women = Asian Women Asian Yearbook of International Law = Asian Yearb Int Law Asian Yearbook of International Law = Asian Yearb. Int. Law Asian Yearbook of International Law, Vol 14 = Asian Yearb Int Law Asian Yearbook of International Law, Vol 14 = Asian Yearb. Int. Law. Asia-Oceania journal of obstetrics and gynaecology / AOFOG = Asia Oceania J Obstet Gynaecol Asia-Oceania Journal of Obstetrics and Gynaecology = Asia. Oceania J. Obstet. Gynaecol. Asia Pacific Business Review = Asia Pac Bus Rev Asia Pacific Business Review = Asia Pac. Bus. Rev. Asia Pacific Business Review=Asia Pacific Bus. Rev. Asia Pacific Community = Asia Pac Commun Asia Pacific Community = Asia Pac. Commun. Asia-Pacific Development Journal=Asia-Pacific Devel. J. Asia-Pacific Economic Review=Asia-Pacific Econ. Rev. Asia-pacific Education Researcher = Asia-pac Educ Res Asia-pacific Education Researcher = Asia-pac. Educ. Res. Asia Pacific Education Review = Asia Pac Educ Rev Asia Pacific Education Review = Asia Pac. Educ. Rev. Asia-pacific Environment Monograph = Asia-pac Env Monogr Asia-pacific Environment Monograph = Asia-pac. Env. Monogr. Asia Pacific Financial Deregulation = Pac Trad Dev Conf S Asia Pacific Financial Deregulation = Pac. Trad. Dev. Conf. S. Asia-Pacific Financial Markets=Asia-Pacific Finan. Markets Asia-pacific Financial Markets: Integration, Innovation and Challenges = Int Financ Rev Asia-pacific Financial Markets: Integration, Innovation and Challenges = Int. Financ. Rev. Asia-pacific Journal of Accounting & Economics = Asia-pac J Account E Asia-pacific Journal of Accounting & Economics = Asia-pac. J. Account. E. Asia Pacific Journal of Anthropology = Asia Pac J Anthropol Asia Pacific Journal of Anthropology = Asia Pac. J. Anthropol. Asia-pacific Journal of Atmospheric Sciences = Asia-pac J Atmos Sci Asia-pacific Journal of Atmospheric Sciences = Asia-pac. J. Atmos. Sci. Asia-Pacific Journal of Atmospheric Sciences = Asia-Pac. J. Atmos. Sci. Asia-pacific Journal of Chemical Engineering = Asia-pac J Chem Eng Asia-pacific Journal of Chemical Engineering = Asia-pac. J. Chem. Eng. Asia-Pacific Journal of Chemical Engineering = Asia-Pac. J. Chem. Eng. Asia Pacific journal of clinical nutrition = Asia Pac J Clin Nutr Asia Pacific Journal of Clinical Nutrition = Asia Pac J Clin Nutr Asia Pacific Journal of Clinical Nutrition = Asia Pac. J. Clin. Nutr. Asia-pacific Journal of Clinical Oncology = Asia-pac J Clin Onco Asia-pacific Journal of Clinical Oncology = Asia-pac. J. Clin. Onco. Asia Pacific Journal of Economics and Business=Asia Pacific J. Econ. Bus. Asia Pacific Journal of Education = Asia Pac J Educ Asia Pacific Journal of Education = Asia Pac. J. Educ. Asia-pacific Journal of Financial Studies = Asia-pac J Financ St Asia-pacific Journal of Financial Studies = Asia-pac. J. Financ. St. Asia Pacific Journal of Human Resources = Asia Pac J Hum Resou Asia Pacific Journal of Human Resources = Asia Pac. J. Hum. Resou. Asia Pacific Journal of Management = Asia Pac J Manag Asia Pacific Journal of Management = Asia Pac. J. Manag. Asia-pacific Journal of Molecular Biology and Biotechnology = Asia-pac J Mol Biol Asia-pacific Journal of Molecular Biology and Biotechnology = Asia-pac. J. Mol. Biol. Asia-Pacific Journal of Operational Research = Asia-Pacific J. Oper. Res. Asia-pacific Journal of Operational Research = Asia Pac J Oper Res Asia-pacific Journal of Operational Research = Asia. Pac. J. Oper. Res. Asia Pacific Journal of Pharmacology = Asia Pac J Pharmacol Asia Pacific Journal of Pharmacology = Asia Pac. J. Pharmacol. Asia-Pacific journal of public health / Asia-Pacific Academic Consortium for Public Health = Asia Pac J Public Health Asia-pacific Journal of Public Health = Asia-pac J Public He Asia-pacific Journal of Public Health = Asia-pac. J. Public He. Asia-Pacific Journal of Public Health=Asia Pac J Public Health;; Asia-Pacific Journal of Public Health = Asia. Pac. J. Public Health Asia-Pacific journal of rural development = Asia Pac J Rural Dev Asia Pacific Journal of Social Work and Development = Asia Pac J Soc Work Asia Pacific Journal of Social Work and Development = Asia Pac. J. Soc. Work Asia Pacific journal of social work = Asia Pac J Soc Work Asia Pacific Journal of Social Work = Asia Pac J Soc Work Asia Pacific Journal of Social Work = Asia Pac. J. Soc. Work Asia-pacific Journal of Teacher Education = Asia-pac J Teach Edu Asia-pacific Journal of Teacher Education = Asia-pac. J. Teach. Edu. Asia Pacific Journal of Tourism Research = Asia Pac J Tour Res Asia Pacific Journal of Tourism Research = Asia Pac. J. Tour. Res. Asia Pacific Law Review = Asia Pac Law Rev Asia Pacific Law Review = Asia Pac. Law Rev. Asia Pacific Microwave Conference-proceedings = Asia Pacif Microwave Asia Pacific Microwave Conference-proceedings = Asia Pacif. Microwave Asia Pacific Microwave Conference Proceedings = Asia Pacif Microwave Asia Pacific Microwave Conference Proceedings = Asia Pacif. Microwave Asia Pacific observer : a quarterly newsletter from the East-West Center = Asia Pac Obs Asia-Pacific POPIN bulletin = Asia Pac POPIN Bull Asia-Pacific POPIN newsletter = Asia-Pac POPIN Newsl Asia-Pacific population journal / United Nations = Asia Pac Popul J Asia-Pacific population & policy = Asia Pac Pop Policy Asia-Pacific population research abstracts / East-West Center, Program on Population = Asia Pac Popul Res Abstr Asia-pacific Psychiatry = Asia-pac Psychiat Asia-pacific Psychiatry = Asia-pac. Psychiat. Asia-pacific Security: Us, Australia and Japan and The New Security Triangle = Asian Secur Stud Asia-pacific Security: Us, Australia and Japan and The New Security Triangle = Asian. Secur. Stud. Asia-pacific Software Engineering Conference = Asia Pac Sofwr Eng Asia-pacific Software Engineering Conference = Asia. Pac. Sofwr. Eng. Asia Pacific viewpoint = Asia Pac Viewp Asia Pacific Viewpoint = Asia Pac Viewp Asia Pacific Viewpoint = Asia Pac. Viewp. Asia quarterly = Asia Q Asia Quarterly = Asia Quart Asia Quarterly = Asia Quart. Asia's Debt Capital Markets: Prospects and Strategies for Development = Milken Inst Ser Fina Asia's Debt Capital Markets: Prospects and Strategies for Development = Milken. Inst. Ser. Fina. Asiasim 2007 = Comm Com Inf Sc Asiasim 2007 = Comm. Com. Inf. Sc. Asias International Role in The Post-cold War Era, Pt 1 : Conference Paper = Adelp Pap Asias International Role in The Post-cold War Era, Pt 1 : Conference Paper = Adelp. Pap. Asias Transformations = Asia's Transform Asias Transformations = Asia's. Transform. Asias Transformations = Asias Transform Asias Transformations = Asias Transform. Asiatische Forschungen = Asiat Forsch Asiatische Forschungen = Asiat Forsch Mg Ges Asiatische Forschungen = Asiat. Forsch. Mg. Ges. Asiaweek = Asiaweek Asien, Afrika, Lateinamerika (Berlin, Germany : 1973) = Asien Afr Lateinam Asil Proceedings of The 89th Annual Meeting - Structures of World Order = P Am S In L Asil Proceedings of The 89th Annual Meeting - Structures of World Order = P. Am. S. In. L. Asis 2000: Proceedings of The 63rd Asis Annual Meeting, Vol 37, 2000 = P Asis Ann Asis 2000: Proceedings of The 63rd Asis Annual Meeting, Vol 37, 2000 = P. Asis Ann. Asis 90 = P Asis Ann Asis 90 = P. Asis Ann. Asis '95 - Proceedings of The 58th Asis Annual Meeting, Vol 32, 1995 = P Asis Ann Asis '95 - Proceedings of The 58th Asis Annual Meeting, Vol 32, 1995 = P. Asis Ann. Asis '96 - Proceedings of The 59th Asis Annual Meeting, Vol 33, 1996 = P Asis Ann Asis '96 - Proceedings of The 59th Asis Annual Meeting, Vol 33, 1996 = P. Asis Ann. Asis '97 - Proceedings of The 60th Asis Annual Meeting, Vol 34 1997 = P Asis Ann Asis '97 - Proceedings of The 60th Asis Annual Meeting, Vol 34 1997 = P. Asis Ann. Asis '98 - Proceedings of The 61st Asis Annual Meeting, Vol 35, 1998 = P Asis Ann Asis '98 - Proceedings of The 61st Asis Annual Meeting, Vol 35, 1998 = P. Asis Ann. Asis 99: Proceedings of The 62nd Asis Annual Meeting, Vol 36, 1999 = P Asis Ann Asis 99: Proceedings of The 62nd Asis Annual Meeting, Vol 36, 1999 = P. Asis Ann. Asis Monograph Series = Asis Monogr Asis Monograph Series = Asis Monogr. Asist 2001: Proceedings of The 64th Asist Annual Meeting, Vol 38, 2001 = P Asist Annu Asist 2001: Proceedings of The 64th Asist Annual Meeting, Vol 38, 2001 = P. Asist Annu. Asist 2002: Proceedings of The 65th Asist Annual Meeting, Vol 39, 2002 = P Asist Annu Asist 2002: Proceedings of The 65th Asist Annual Meeting, Vol 39, 2002 = P. Asist Annu. Asist 2003: Proceedings of The 66th Asist Annual Meeting, Vol 40, 2003 = P Asist Annu Asist 2003: Proceedings of The 66th Asist Annual Meeting, Vol 40, 2003 = P. Asist Annu. Asist 2004: Proceedings of The 67th Asis&t Annual Meeting, Vol 41, 2004 = P Asist Annu Asist 2004: Proceedings of The 67th Asis&t Annual Meeting, Vol 41, 2004 = P. Asist Annu. Asist Monograph Series = Asist Monogr Ser Asist Monograph Series = Asist Monogr. Ser. Asist Monograph Series = Asist Mon Ser Asist Monograph Series = Asist Mon. Ser. Askeri sihhiye dergisi = Ask Sihhiye Derg Asklepii : bolgaro-sovetskii ezhegodnik istorii i teorii meditsiny = Asklepii Asle Transactions = Asle Trans Asle Transactions = Asle Trans. Aslib proceedings = Aslib Proc Aslib Proceedings = Aslib Proc Aslib Proceedings = Aslib Proc. Asmc 98 Proceedings - 1998 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc Asmc 98 Proceedings - 1998 Ieee/semi Advanced Semiconductor Manufacturing Conference and Workshop = Asmc Proc. Asme Rtd = Asme Rtd Asm News = Asm News ASM news = ASM News Asm Transactions Quarterly = Asm Trans Q Asm Transactions Quarterly = Asm Trans. Q. ASNA reporter = ASNA Rep ASNA Reporter = ASNA Rep. Asn Neuro = Asn Neuro Asociacion Paleontologica Aegentina - Publicacion Especial = Asoc Pal Argent Publ Asociacion Paleontologica Aegentina - Publicacion Especial = Asoc. Pal. Argent. Publ. Aspartic Proteinases = Adv Exp Med Biol Aspartic Proteinases = Adv. Exp. Med. Biol. As Pastoralists Settle: Social, Health, and Economic Consequences of Pastoral Sedentarization in Marsabit District, Kenya = Stud Hum Ecol Adapt As Pastoralists Settle: Social, Health, and Economic Consequences of Pastoral Sedentarization in Marsabit District, Kenya = Stud. Hum. Ecol. Adapt. Asp-dac 2004: Proceedings of The Asia and South Pacific Design Automation Conference = Asia S Pacif Des Aut Asp-dac 2004: Proceedings of The Asia and South Pacific Design Automation Conference = Asia S. Pacif. Des. Aut. Asp-dac 2005: Proceedings of The Asia and South Pacific Design Automation Conference, Vols 1 and 2 = Asia S Pacif Des Aut Asp-dac 2005: Proceedings of The Asia and South Pacific Design Automation Conference, Vols 1 and 2 = Asia S. Pacif. Des. Aut. Asp-dac 2006: 11th Asia and South Pacific Design Automation Conference, Proceedings = Asia S Pacif Des Aut Asp-dac 2006: 11th Asia and South Pacific Design Automation Conference, Proceedings = Asia S. Pacif. Des. Aut. Aspect '94: Advances in Subsea Pipeline Engineering and Technology = Adv Underwat Technol Aspect '94: Advances in Subsea Pipeline Engineering and Technology = Adv. Underwat. Technol. Aspects and Prospects of Theoretical Computer Science = Lect Notes Comput Sc Aspects and Prospects of Theoretical Computer Science = Lect. Notes. Comput. Sc. Aspects of African Biodiversity = Roy Soc Ch Aspects of African Biodiversity = Roy. Soc. Ch. Aspects of Automated Natural Language Generation = Lect Notes Artif Int Aspects of Automated Natural Language Generation = Lect. Notes. Artif. Int. Aspects of Brownian Motion = Universitext Aspects of Brownian Motion = Universitext. Aspects of Complexity = De Gru Log Applicat Aspects of Complexity = De. Gru. Log. Applicat. Aspects of Educational and Training Technology = Asp Educ Tr Aspects of Educational and Training Technology = Asp. Educ. Tr. Aspects of Educational and Training Technology, Vol 24 = Asp Educ Tr Aspects of Educational and Training Technology, Vol 24 = Asp. Educ. Tr. Aspects of Educational and Training Technology, Vol 25 = Asp Educ Tr Aspects of Educational and Training Technology, Vol 25 = Asp. Educ. Tr. Aspects of Education and Training Technology, Vol 23 = Asp Educ Tr Aspects of Education and Training Technology, Vol 23 = Asp. Educ. Tr. Aspects of Education = Aspects Educ Aspects of Education = Aspects Educ. Aspects of Education in The Middle East and North Africa = Oxf Stud Comp Educ Aspects of Education in The Middle East and North Africa = Oxf. Stud. Comp. Educ. Aspects of Electron-molecule Scattering and Photoionization = Aip Conf Proc Aspects of Electron-molecule Scattering and Photoionization = Aip. Conf. Proc. Aspects of Homogeneous Catalysis = Aspects Homogeneous Catal. Aspects of Infinite Groups = Alg Dis Mthm Aspects of Infinite Groups = Alg. Dis. Mthm. Aspects of Language Contact = Empir Approach Lang Aspects of Language Contact = Empir. Approach. Lang. Aspects of Mathematical Modelling: Applications in Science, Medicine, Economics and Management = Math Biosci Interact Aspects of Mathematical Modelling: Applications in Science, Medicine, Economics and Management = Math. Biosci. Interact. Aspects of Mathematics = A Mathemat Aspects of Mathematics = A. Mathemat. Aspects of Mathematics = Aspects Math. Aspects of Molecular Computing = Lect Notes Comput Sc Aspects of Molecular Computing = Lect. Notes. Comput. Sc. Aspects of Morphogenesis of Leaves, Flowers and Somatic Embryos = Scripta Botan Belg Aspects of Morphogenesis of Leaves, Flowers and Somatic Embryos = Scripta. Botan. Belg. Aspects of Natural Language Processing = Lect Notes Comput Sc Aspects of Natural Language Processing = Lect. Notes. Comput. Sc. Aspects of Operator Algebras and Applications = Contemp Math Aspects of Operator Algebras and Applications = Contemp. Math. Aspects of Physical Biology: Biological Water, Protein Solutions, Transport and Replication = Lect Notes Phys Aspects of Physical Biology: Biological Water, Protein Solutions, Transport and Replication = Lect. Notes. Phys. Aspects of Soft Computing, Intelligent Robotics and Control = Stud Comput Intell Aspects of Soft Computing, Intelligent Robotics and Control = Stud. Comput. Intell. Aspects of Sustainable Economic Development = Int Marktwirtsch Aspects of Sustainable Economic Development = Int. Marktwirtsch. Aspects of Synaptic Transmission = A Syn Trans Aspects of Synaptic Transmission = A. Syn. Trans. Aspects of Synaptic Transmission : Ltp, Galanin, Opioids, Autonomic and 5-ht = A Syn Trans Aspects of Synaptic Transmission : Ltp, Galanin, Opioids, Autonomic and 5-ht = A. Syn. Trans. Aspects of The History of Psychology in America: 1892-1992 = Ann Ny Acad Sci Aspects of The History of Psychology in America: 1892-1992 = Ann. Ny. Acad. Sci. Aspects of The Syntax of Agreement = Routl Lead Linguists Aspects of The Syntax of Agreement = Routl. Lead. Linguists. Aspects of The Tectonic Evolution of China = Geol Soc Spec Publ Aspects of The Tectonic Evolution of China = Geol. Soc. Spec. Publ. Aspects of The Theory of Morphology = Trends Linguist-stud Aspects of The Theory of Morphology = Trends. Linguist-stud. Aspects of Worker Well-being = Res Labor Econ Aspects of Worker Well-being = Res. Labor. Econ. Aspects On Literacy = Linkop Stud Ed Psych Aspects On Literacy = Linkop. Stud. Ed. Psych. Aspekte Komplexer Systeme = Asp. Komplexer Systeme Aspen Emphysema Conference = Aspen Emphysema Conf Aspen Emphysema Conference = Aspen Emphysema Conf. Aspen Institute Conference Report = Aspen Inst Conf Rep Aspen Institute Conference Report = Aspen Inst. Conf. Rep. Aspen's advisor for nurse executives = Aspens Advis Nurse Exec Aspen's Advisor for Nurse Executives = Aspens Advis. Nurse Exec. Aspen Symposium 89 = Us For Serv T R Nc Aspen Symposium 89 = Us. For. Serv. T. R. Nc. Asphalt Binders 2000 = Transport Res Rec Asphalt Binders 2000 = Transport. Res. Rec. Asphalt Binders 2001 = Transport Res Rec Asphalt Binders 2001 = Transport. Res. Rec. Asphaltenes: Characterization, Properties and Applications = Chem Eng Method Tech Asphaltenes: Characterization, Properties and Applications = Chem. Eng. Method. Tech. Asphaltenes: Chemical Transformation During Hydroprocessing of Heavy Oils = Chem Ind-ser Asphaltenes: Chemical Transformation During Hydroprocessing of Heavy Oils = Chem. Ind-ser. Asphalt Mixture Components = Transport Res Rec Asphalt Mixture Components = Transport. Res. Rec. Asphalt Mixture Quality, Characteristics, and Performance = Transport Res Rec Asphalt Mixture Quality, Characteristics, and Performance = Transport. Res. Rec. Asphalt Mixtures 2001 = Transport Res Rec Asphalt Mixtures 2001 = Transport. Res. Rec. Asphalt Mixtures = Transport Res Rec Asphalt Mixtures = Transport. Res. Rec. Asphalt Pavement Construction and Surface Mixtures = Transport Res Rec Asphalt Pavement Construction and Surface Mixtures = Transport. Res. Rec. Assaph. Studies in Art History = Assaph Assassinations and Murder in Modern Italy: Transformations in Society and Culture = Ital Ital Am Stud Assassinations and Murder in Modern Italy: Transformations in Society and Culture = Ital. Ital. Am. Stud. Assay and Drug Development Technologies = Assay Drug Dev Techn Assay and Drug Development Technologies = Assay Drug Dev. Techn. Assay and drug development technologies = Assay Drug Dev Technol Assay and Drug Development Technologies = Assay Drug Dev. Technol. Assembly Automation = Assembly Autom Assembly Automation = Assembly Autom. Assertive Nurse = Assertive Nurse Assessing and Evaluating Pavements = Transport Res Rec Assessing and Evaluating Pavements = Transport. Res. Rec. Assessing Emotional Intelligence: Theory, Research, and Applications = Springer Ser Hum Exc Assessing Emotional Intelligence: Theory, Research, and Applications = Springer. Ser. Hum. Exc. Assessing Exposures and Reducing Risks to People From The Use of Pesticides = Acs Sym Ser Assessing Exposures and Reducing Risks to People From The Use of Pesticides = Acs. Sym. Ser. Assessing George W. Bushs Legacy: The Right Man = Evol Am Presid Assessing George W. Bushs Legacy: The Right Man = Evol. Am. Presid. Assessing Outcomes in Child and Family Services: Comparative Design and Policy Issues = Mod Appl Sw Assessing Outcomes in Child and Family Services: Comparative Design and Policy Issues = Mod. Appl. Sw. Assessing Skills and Practice = Key Guid Eff Teach H Assessing Skills and Practice = Key. Guid. Eff. Teach. H. Assessing Teachers for Professional Certification = Adv Prog Eval Assessing Teachers for Professional Certification = Adv. Prog. Eval. Assessing The Benefits and Costs of Its: Making The Business Case for Its Investments = Transp Res Econ Pol Assessing The Benefits and Costs of Its: Making The Business Case for Its Investments = Transp. Res. Econ. Pol. Assessing The Evidence On Indigenous Socioeconomic Outcomes: A Focus On The 2002 Natsiss = Cent Abor Econ Pol Assessing The Evidence On Indigenous Socioeconomic Outcomes: A Focus On The 2002 Natsiss = Cent. Abor. Econ. Pol. Assessing The Greenhouse Gas Emissions of Waste-derived Ethanol in Accordance With Eu Red Methodology for Biofuels = Vtt Res Notes Assessing The Greenhouse Gas Emissions of Waste-derived Ethanol in Accordance With Eu Red Methodology for Biofuels = Vtt. Res. Notes. Assessing The Risks of Nuclear and Chemical Contamination in The Former Soviet Union = Nato Asi 2 Assessing The Risks of Nuclear and Chemical Contamination in The Former Soviet Union = Nato. Asi. 2. Assessing The Sustainability of Liquid Biofuels From Evolving Technologies: A Finnish Approach = Vtt Res Notes Assessing The Sustainability of Liquid Biofuels From Evolving Technologies: A Finnish Approach = Vtt. Res. Notes. Assessing Well-being: The Collected Works of Ed Diener = Soc Indic Res Ser Assessing Well-being: The Collected Works of Ed Diener = Soc. Indic. Res. Ser. Assessment and Future Directions of Nonlinear Model Predictive Control = Lect Notes Contr Inf Assessment and Future Directions of Nonlinear Model Predictive Control = Lect. Notes. Contr. Inf. Assessment and Intervention = Adv Learn Behav Disa Assessment and Intervention = Adv. Learn. Behav. Disa. Assessment and Promotion of Work Ability, Health and Well-being of Ageing Workers = Int Congr Ser Assessment and Promotion of Work Ability, Health and Well-being of Ageing Workers = Int. Congr. Ser. Assessment and Remediation of Contaminated Sediments = Nato Sci S Ss Iv Ear Assessment and Remediation of Contaminated Sediments = Nato. Sci. S. Ss. Iv. Ear. Assessment and Treatment of Cancer Pain = Prog Pain Res Manag Assessment and Treatment of Cancer Pain = Prog. Pain Res. Manag. Assessment and Treatment of Child Psychopathology and Developmental Disabilities = Assess Treat Child P Assessment and Treatment of Child Psychopathology and Developmental Disabilities = Assess. Treat. Child P. Assessment = Assessment Assessment & Evaluation in Higher Education = Assess Eval High Edu Assessment & Evaluation in Higher Education = Assess. Eval. High. Edu. Assessment in Technical and Professional Communication = Baywoods Tech Commun Assessment in Technical and Professional Communication = Baywoods. Tech. Commun. Assessment of Biodiversity for Improved Forest Planning = For Sci Assessment of Biodiversity for Improved Forest Planning = For. Sci. Assessment of Cold Welding Between Separable Contact Surfaces Due to Impact and Fretting Under Vacuum = Eur Space Agency Sci Assessment of Cold Welding Between Separable Contact Surfaces Due to Impact and Fretting Under Vacuum = Eur. Space. Agency. Sci. Assessment of Fracture Risk and Its Application to Screening for Postmenopausal Osteoporosis = Who Tech Rep Ser Assessment of Fracture Risk and Its Application to Screening for Postmenopausal Osteoporosis = Who. Tech. Rep. Ser. Assessment of Higher and Professional Competence - International Conference = Imare Conf Assessment of Higher and Professional Competence - International Conference = Imare. Conf. Assessment of Human Reproductive Function = Ann Ny Acad Sci Assessment of Human Reproductive Function = Ann. Ny. Acad. Sci. Assessment of Hydrogen Energy for Sustainable Development = Nato Sci Peace Secur Assessment of Hydrogen Energy for Sustainable Development = Nato. Sci. Peace. Secur. Assessment of Pupil Achievement : Motivation and School Success = Eur Educ R Assessment of Pupil Achievement : Motivation and School Success = Eur. Educ. R. Assessment of Reserves in Low Rank Coals = Aimm Spectr Ser Assessment of Reserves in Low Rank Coals = Aimm. Spectr. Ser. Assessment of Teaching : Purposes, Practices, and Implications for The Profession = Buros Neb S Assessment of Teaching : Purposes, Practices, and Implications for The Profession = Buros. Neb. S. Assessment of The Ergonomic Quality of Hand-held Tools and Computer Input Devices = Ergon Hum Fact Safe Assessment of The Ergonomic Quality of Hand-held Tools and Computer Input Devices = Ergon. Hum. Fact. Safe. Assessment of The Fate and Effects of Toxic Agents On Water Resources = Nato Sci Peace Secur Assessment of The Fate and Effects of Toxic Agents On Water Resources = Nato. Sci. Peace. Secur. Assessment Reform in Education: Policy and Practice = Educ Asia Pac Reg-is Assessment Reform in Education: Policy and Practice = Educ. Asia. Pac. Reg-is. Assessment Reform in Science: Fairness and Fear = Cont Trends Iss Sci Assessment Reform in Science: Fairness and Fear = Cont. Trends. Iss. Sci. Assesssing and Evaluating Pavements 2002 = Transport Res Rec Assesssing and Evaluating Pavements 2002 = Transport. Res. Rec. Asset Price Bubbles: Implications for Monetary and Regulatory Policies = Res Fin Serv Asset Price Bubbles: Implications for Monetary and Regulatory Policies = Res. Fin. Serv. Assia Djebar: in Dialogue With Feminisms = Francopolyphonies Assia Djebar: in Dialogue With Feminisms = Francopolyphonies. Assignment children = Assignment Child Assignment of The Glass Transition = Am Soc Test Mater Assignment of The Glass Transition = Am. Soc. Test. Mater. Assignment Problems = Other Titl Appl Math Assignment Problems = Other. Titl. Appl. Math. Assimilation of Remote Sensing and in Situ Data in Modern Numerical Weather and Environmental Prediction Models = Proc Spie Assimilation of Remote Sensing and in Situ Data in Modern Numerical Weather and Environmental Prediction Models = Proc. Spie. Assimilation of Remote Sensing and in Situ Data in Modern Numerical Weather and Environmental Prediction Models = P Soc Photo-opt Ins Assimilation of Remote Sensing and in Situ Data in Modern Numerical Weather and Environmental Prediction Models = P. Soc. Photo-opt. Ins. Assisted Dying = Biomed Law Ethics Li Assisted Dying = Biomed. Law. Ethics. Li. Assisted Reproduction = Adv Rep End Assisted Reproduction = Adv. Rep. End. Assisted reproduction reviews = Assist Reprod Rev Assistenza infermieristica e ricerca : AIR = Assist Inferm Ric Assistenza Infermieristica E Ricerca = Assist Inferm Ric Assistenza Infermieristica E Ricerca = Assist. Inferm. Ric. Assistive Technology - Added Value to The Quality of Life = Assist Technol Res S Assistive Technology - Added Value to The Quality of Life = Assist. Technol. Res. S. Assistive Technology - Added Value to The Quality of Life = Assist Techn Res Ser Assistive Technology - Added Value to The Quality of Life = Assist. Techn. Res. Ser. Assistive Technology = Assist Technol Assistive Technology = Assist. Technol. Assistive Technology From Adapted Equipment to Inclusive Environments = Assist Technol Res S Assistive Technology From Adapted Equipment to Inclusive Environments = Assist. Technol. Res. S. Assistive Technology From Adapted Equipment to Inclusive Environments = Assist Techn Res Ser Assistive Technology From Adapted Equipment to Inclusive Environments = Assist. Techn. Res. Ser. Assistive Technology: From Virtuality to Reality = Assist Technol Res S Assistive Technology: From Virtuality to Reality = Assist. Technol. Res. S. Assistive Technology: From Virtuality to Reality = Assist Techn Res Ser Assistive Technology: From Virtuality to Reality = Assist. Techn. Res. Ser. Assistive Technology On The Threshold of The New Millennium = Assist Technol Res S Assistive Technology On The Threshold of The New Millennium = Assist. Technol. Res. S. Assistive Technology On The Threshold of The New Millennium = Assist Techn Res Ser Assistive Technology On The Threshold of The New Millennium = Assist. Techn. Res. Ser. Assistive Technology Research Series = Assist Technol Res S Assistive Technology Research Series = Assist. Technol. Res. S. Assistive Technology Research Series = Assist Techn Res Ser Assistive Technology Research Series = Assist. Techn. Res. Ser. Assistive technology : the official journal of RESNA = Assist Technol Association and Society Manager = Assoc. Soc. Manager Association for Asian American Studies Series = Assoc As Am Association for Asian American Studies Series = Assoc. As. Am. Association for Computing Machinery = ACM Trans. Math. Software Association for Recorded Sound Collections-journal = Assoc Rec Sound Coll Association for Recorded Sound Collections-journal = Assoc. Rec. Sound Coll. Association for Scottish Literary Studies Occasional Papers = Assoc Scot Association for Scottish Literary Studies Occasional Papers = Assoc. Scot. Association for Social Anthropology in Oceania Monograph Series = Assoc Soc Anth Oc Mo Association for Social Anthropology in Oceania Monograph Series = Assoc. Soc. Anth. Oc. Mo. Association for The Advancement of Automotive Medicine - 40th Annual Proceedings = P Ann C Ass Association for The Advancement of Automotive Medicine - 40th Annual Proceedings = P. Ann. C. Ass. Association for The Study of German Politics/dartmouth Publishing Studies in Modern Policy and Politics = Asgp Dart P Association for The Study of German Politics/dartmouth Publishing Studies in Modern Policy and Politics = Asgp. Dart. P. Association management = Assoc Manage Association Management = Assoc. Manage. Association of Engineering Geologists, Special Publication = Assoc Engn Geologist Association of Engineering Geologists, Special Publication = Assoc. Engn. Geologist. Association of Food & Drug Officials Quarterly Bulletin = Assoc Food Drug Off Association of Food & Drug Officials Quarterly Bulletin = Assoc. Food Drug Off. Association of Research Libraries Minutes = A R L Minut Association of Research Libraries Minutes = A. R. L. Minut. Association Review = Assoc Rev Association Review = Assoc. Rev. Association Rule Hiding for Data Mining = Adv Database Syst Association Rule Hiding for Data Mining = Adv. Database. Syst. Association Rule Mining: Models and Algorithms = Lect Notes Artif Int Association Rule Mining: Models and Algorithms = Lect. Notes. Artif. Int. Association & society manager = Assoc Soc Manager Assyriological Miscellanies = AssyrMisc Asta-advances in Statistical Analysis = Asta-adv Stat Anal Asta-advances in Statistical Analysis = Asta-adv. Stat. Anal. Asterisque = Asterisque Astérisque = Astérisque Asteroid and Spacecraft Dynamics = Adv Space Res-series Asteroid and Spacecraft Dynamics = Adv. Space. Res-series. Asteroid Hazard: Evaluating and Avoiding The Threat of Asteroid Impacts = Esa Spec Publ Asteroid Hazard: Evaluating and Avoiding The Threat of Asteroid Impacts = Esa. Spec. Publ. Asteroids, Comets, Meteors 1993 = Iau Symp Asteroids, Comets, Meteors 1993 = Iau. Symp. Asteroseismology = Astron Astrophys Lib Asteroseismology = Astron. Astrophys. Lib. Aste Series in Science Education = Aste Ser Sci Educ Aste Series in Science Education = Aste Ser. Sci. Educ. Asthetische Medizin = Asthet Med (Berl) Asthetische Medizin = Asthet. Med. (Berl.) As The Workforce Ages = F W Pierce Mem Lect As The Workforce Ages = F. W. Pierce. Mem. Lect. Asthma in Real Life: Patient-centred Management = Roy Soc Med Int Cong Asthma in Real Life: Patient-centred Management = Roy. Soc. Med. Int. Cong. Asthma Treatment = Nato Adv Sci I A-lif Asthma Treatment = Nato. Adv. Sci. I. A-lif. Astin Bulletin = Astin Bull Astin Bulletin = Astin Bull. Asti Workshop On Anomalies in Hydrogen/deuterium Loaded Metals = Ital Phy So Asti Workshop On Anomalies in Hydrogen/deuterium Loaded Metals = Ital. Phy. So. Astm Manual Series = Astm Man Ser Astm Manual Series = Astm Man. Ser. ASTM Special Technical Publication = ASTM Spec. Tech. Publ. ASTM Specical Technical Publication = ASTM Spec. Tech. Publ. Astm's Role in Performance-based Fire Codes and Standards = Am Soc Test Mater Astm's Role in Performance-based Fire Codes and Standards = Am. Soc. Test. Mater. Astm Standardization News = Astm Stand News Astm Standardization News = Astm Stand. News ASTM standardization news = ASTM Stand News ASTM Standardization News = ASTM Stand. News Astragale = Astragale Astrameddelande = Astrameddelande Astrobiology = Astrobiology Astrobiology: Future Perspectives = Astrophys Space Sc L Astrobiology: Future Perspectives = Astrophys. Space. Sc. L. Astrobiology: Physical Origin, Biological Evolution and Spatial Distribution = Space Sci Explor Pol Astrobiology: Physical Origin, Biological Evolution and Spatial Distribution = Space. Sci. Explor. Pol. Astrochemistry: From Laboratory Studies to Astronomical Observations = Aip Conf Proc Astrochemistry: From Laboratory Studies to Astronomical Observations = Aip. Conf. Proc. Astrochemistry: From Molecular Clouds to Planetary Systems = Iau Symp Astrochemistry: From Molecular Clouds to Planetary Systems = Iau. Symp. Astrochemistry of Cosmic Phenomena = Iau Symp Astrochemistry of Cosmic Phenomena = Iau. Symp. Astrodynamics 1991, Pts 1-3 = Adv Astronaut Sci Astrodynamics 1991, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics 1993, Pts 1-3 = Adv Astronaut Sci Astrodynamics 1993, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics 1995 = Adv Astronaut Sci Astrodynamics 1995 = Adv. Astronaut. Sci. Astrodynamics 1997 = Adv Astronaut Sci Astrodynamics 1997 = Adv. Astronaut. Sci. Astrodynamics 1999, Pts 1-3 = Adv Astronaut Sci Astrodynamics 1999, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics 2001, Pts I-iii = Adv Astronaut Sci Astrodynamics 2001, Pts I-iii = Adv. Astronaut. Sci. Astrodynamics 2003, Pts 1-3 = Adv Astronaut Sci Astrodynamics 2003, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics 2005, Vol 123, Pts 1-3 = Adv Astronaut Sci Astrodynamics 2005, Vol 123, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics 2007, Pts I-iii = Adv Astronaut Sci Astrodynamics 2007, Pts I-iii = Adv. Astronaut. Sci. Astrodynamics 2009, Vol 135, Pts 1-3 = Adv Astronaut Sci Astrodynamics 2009, Vol 135, Pts 1-3 = Adv. Astronaut. Sci. Astrodynamics, Space Missions, and Chaos = Ann Ny Acad Sci Astrodynamics, Space Missions, and Chaos = Ann. Ny. Acad. Sci. Astrofizika = Astrofizika Astrometry in The Age of The Next Generation of Large Telescopes = Astr Soc P Astrometry in The Age of The Next Generation of Large Telescopes = Astr. Soc. P. Astromineralogy, Second Edition = Lect Notes Phys Astromineralogy, Second Edition = Lect. Notes. Phys. Astronautica Acta = Astronaut Acta Astronautica Acta = Astronaut. Acta Astronautics & Aeronautics = Astronaut Aeronaut Astronautics & Aeronautics = Astronaut. Aeronaut. Astronomers Universe = Astron Univers Astronomers Universe = Astron. Univers. Astronomical Adaptative Optics Systems and Applications Iii = P Soc Photo-opt Ins Astronomical Adaptative Optics Systems and Applications Iii = P. Soc. Photo-opt. Ins. Astronomical Adaptive Optics Systems and Applications = P Soc Photo-opt Ins Astronomical Adaptive Optics Systems and Applications = P. Soc. Photo-opt. Ins. Astronomical and Astrophysical Objectives of Sub-milliarcsecond Optical Astrometry = Iau Symp Astronomical and Astrophysical Objectives of Sub-milliarcsecond Optical Astrometry = Iau. Symp. Astronomical Ccd Observing and Reduction Techniques = Astr Soc P Astronomical Ccd Observing and Reduction Techniques = Astr. Soc. P. Astronomical Data Analysis Ii = Proc Spie Astronomical Data Analysis Ii = Proc. Spie. Astronomical Data Analysis Ii = P Soc Photo-opt Ins Astronomical Data Analysis Ii = P. Soc. Photo-opt. Ins. Astronomical Data Analysis = Proc Spie Astronomical Data Analysis = Proc. Spie. Astronomical Data Analysis = P Soc Photo-opt Ins Astronomical Data Analysis = P. Soc. Photo-opt. Ins. Astronomical Data Analysis Software and Systems 1 = Astr Soc P Astronomical Data Analysis Software and Systems 1 = Astr. Soc. P. Astronomical Data Analysis Software and Systems Ii = Astr Soc P Astronomical Data Analysis Software and Systems Ii = Astr. Soc. P. Astronomical Data Analysis Software and Systems, Iii = Astr Soc P Astronomical Data Analysis Software and Systems, Iii = Astr. Soc. P. Astronomical Data Analysis Software and Systems Iv = Astr Soc P Astronomical Data Analysis Software and Systems Iv = Astr. Soc. P. Astronomical Data Analysis Software and Systems Ix = Astr Soc P Astronomical Data Analysis Software and Systems Ix = Astr. Soc. P. Astronomical Data Analysis Software and Systems V = Astr Soc P Astronomical Data Analysis Software and Systems V = Astr. Soc. P. Astronomical Data Analysis Software and Systems Vi = Astr Soc P Astronomical Data Analysis Software and Systems Vi = Astr. Soc. P. Astronomical Data Analysis Software and Systems Vii (adass) = Astr Soc P Astronomical Data Analysis Software and Systems Vii (adass) = Astr. Soc. P. Astronomical Data Analysis Software and Systems Viii = Astr Soc P Astronomical Data Analysis Software and Systems Viii = Astr. Soc. P. Astronomical Data Analysis Software and Systems X = Astr Soc P Astronomical Data Analysis Software and Systems X = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xi = Astr Soc P Astronomical Data Analysis Software and Systems Xi = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xiii = Astr Soc P Astronomical Data Analysis Software and Systems Xiii = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xiv, Proceedings = Astr Soc P Astronomical Data Analysis Software and Systems Xiv, Proceedings = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xix = Astr Soc P Astronomical Data Analysis Software and Systems Xix = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xvi = Astr Soc P Astronomical Data Analysis Software and Systems Xvi = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xvii = Astr Soc P Astronomical Data Analysis Software and Systems Xvii = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xviii = Astr Soc P Astronomical Data Analysis Software and Systems Xviii = Astr. Soc. P. Astronomical Data Analysis Software and Systems Xx = Astr Soc P Astronomical Data Analysis Software and Systems Xx = Astr. Soc. P. Astronomical Infrared Spectroscopy: Future Observational Directions = Astr Soc P Astronomical Infrared Spectroscopy: Future Observational Directions = Astr. Soc. P. Astronomical Instrumentation and The Birth and Growth of Astrophysics: A Symposium Held in Honor of Robert G. Tull = Astr Soc P Astronomical Instrumentation and The Birth and Growth of Astrophysics: A Symposium Held in Honor of Robert G. Tull = Astr. Soc. P. Astronomical Interferometry, Pts 1 and 2 = P Soc Photo-opt Ins Astronomical Interferometry, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Astronomical Journal = Astron J Astronomical Journal = Astron. J. Astronomical Optics and Elasticity Theory: Active Optics Methods = Astron Astrophys Lib Astronomical Optics and Elasticity Theory: Active Optics Methods = Astron. Astrophys. Lib. Astronomical Photometry: Past, Present, and Future = Astrophys Space Sc L Astronomical Photometry: Past, Present, and Future = Astrophys. Space. Sc. L. Astronomical Polarimetry: Current Status and Future Directions = Astr Soc P Astronomical Polarimetry: Current Status and Future Directions = Astr. Soc. P. Astronomical Site Evaluation in The Visible and Radio Range = Astr Soc P Astronomical Site Evaluation in The Visible and Radio Range = Astr. Soc. P. Astronomical Society of The Pacific Conference Series = Astr Soc P Astronomical Society of The Pacific Conference Series = Astr. Soc. P. Astronomical Structures and Mechanisms Technology = P Soc Photo-opt Ins Astronomical Structures and Mechanisms Technology = P. Soc. Photo-opt. Ins. Astronomical Time Series = Astrophys Space Sc L Astronomical Time Series = Astrophys. Space. Sc. L. Astronomicheskii Zhurnal = Astron Zh+ Astronomicheskii Zhurnal = Astron. Zh. Astronomicheskii Zhurnal = Astron. Zh+.+ Astronomische Nachrichten = Astron. Nachr. Astronomische Nachrichten = Astron Nachr Astronomische Nachrichten = Astron. Nachr. Astronomische Nachrichten = Astron. Nachrichten Astronomische Nachrichten = Astronom. Nachr. Astronomy and Astrophysics = A\&A Astronomy and astrophysics = Astron Astrophys Astronomy and Astrophysics = Astron Astrophys Astronomy and Astrophysics = Astron. Astrophys. Astronomy and Astrophysics At Sub Millimeter Wavelengths, Workshop = Soc Ital Fi Astronomy and Astrophysics At Sub Millimeter Wavelengths, Workshop = Soc. Ital. Fi. Astronomy and Astrophysics in Italy in The Second Half of The Xx Century = Ital Phy So Astronomy and Astrophysics in Italy in The Second Half of The Xx Century = Ital. Phy. So. Astronomy and Astrophysics Library = Astron Astrophys Lib Astronomy and Astrophysics Library = Astron. Astrophys. Lib. Astronomy and Astrophysics Library = Astronom. Astrophys. Lib. Astronomy and Astrophysics Review = Astron Astrophys Rev Astronomy and Astrophysics Review = Astron. Astrophys. Rev. Astronomy and Civilization in The New Enlightenment: Passions of The Skies = Analecta Husserl Astronomy and Civilization in The New Enlightenment: Passions of The Skies = Analecta. Husserl. Astronomy and Space Science From The Moon = Adv Space Res Astronomy and Space Science From The Moon = Adv. Space Res. Astronomy and Space Science From The Moon = Adv Space Res-series Astronomy and Space Science From The Moon = Adv. Space Res-series. Astronomy = Astronomy Astronomy & Astrophysics = Astron Astrophys Astronomy & Astrophysics = Astron. Astrophys. Astronomy & Astrophysics Supplement Series = Astron Astrophys Sup Astronomy & Astrophysics Supplement Series = Astron. Astrophys. Sup. Astronomy & astrophysics. Supplement series = Astron Astrophys Suppl Ser Astronomy & Astrophysics, Supplement Series = Astron. Astrophys., Suppl. Ser. Astronomy At Ir/submm and The Microwave Backgound = Adv Space Res Astronomy At Ir/submm and The Microwave Backgound = Adv. Space. Res. Astronomy At Ir/submm and The Microwave Background = Adv Space Res-series Astronomy At Ir/submm and The Microwave Background = Adv. Space. Res-series. Astronomy, Cosmology and Fundamental Physics = Astrophys Space Sc L Astronomy, Cosmology and Fundamental Physics = Astrophys. Space. Sc. L. Astronomy Education Review = Astron. Educ. Rev. Astronomy From Wide-field Imaging = Iau Symp Astronomy From Wide-field Imaging = Iau. Symp. Astronomy & Geophysics = Astron Geophys Astronomy & Geophysics = Astron. Geophys. Astronomy in The Submillimeter and Far Infrared Domains With The Herschel Space Observatory = Eas Publications Astronomy in The Submillimeter and Far Infrared Domains With The Herschel Space Observatory = Eas. Publications. Astronomy Journal = Astron. J. Astronomy Letters-a Journal of Astronomy and Space Astrophysics = Astron Lett+ Astronomy Letters-a Journal of Astronomy and Space Astrophysics = Astron. Lett+.+ Astronomy Letters = Astron. Lett. Astronomy Reports = Astron Rep+ Astronomy Reports = Astron. Rep. Astronomy Reports = Astron. Rep+.+ Astronomy With High Contrast Imaging: From Planetary Systems to Active Galactic Nuclei = Eas Publications Astronomy With High Contrast Imaging: From Planetary Systems to Active Galactic Nuclei = Eas. Publications. Astronomy With High Contrast Imaging Iii: Instrumental Techniques, Modeling and Data Processing = Eas Publications Astronomy With High Contrast Imaging Iii: Instrumental Techniques, Modeling and Data Processing = Eas. Publications. Astronomy With High Contrast Imaging Ii: Instrumentation for Coronagraphy and Nulling Interferometry = Eas Publications Astronomy With High Contrast Imaging Ii: Instrumentation for Coronagraphy and Nulling Interferometry = Eas. Publications. Astronomy With Millimeter and Submillimeter Wave Interferometry = Astr Soc P Astronomy With Millimeter and Submillimeter Wave Interferometry = Astr. Soc. P. Astronomy With Radioactivities = Lect Notes Phys Astronomy With Radioactivities = Lect. Notes. Phys. Astroparticle Physics and Novel Gamma-ray Telescopes = P Soc Photo-opt Ins Astroparticle Physics and Novel Gamma-ray Telescopes = P. Soc. Photo-opt. Ins. Astroparticle Physics = Astropart Phys Astroparticle Physics = Astropart. Phys. Astrophysical Ages and Time Scales = Astr Soc P Astrophysical Ages and Time Scales = Astr. Soc. P. Astrophysical Applications of Gravitational Lensing = Iau Symp Astrophysical Applications of Gravitational Lensing = Iau. Symp. Astrophysical Applications of Powerful New Databases = Astr Soc P Astrophysical Applications of Powerful New Databases = Astr. Soc. P. Astrophysical Applications of Stellar Pulsation = Astr Soc P Astrophysical Applications of Stellar Pulsation = Astr. Soc. P. Astrophysical Bulletin = Astrophys Bull Astrophysical Bulletin = Astrophys. Bull. Astrophysical Discs = Astr Soc P Astrophysical Discs = Astr. Soc. P. Astrophysical Disks = Ann Ny Acad Sci Astrophysical Disks = Ann. Ny. Acad. Sci. Astrophysical Disks: Collective and Stochastic Phenomena = Astrophys Space Sc L Astrophysical Disks: Collective and Stochastic Phenomena = Astrophys. Space. Sc. L. Astrophysical Implications of The Laboratory Study of Presolar Materials = Aip Conf Proc Astrophysical Implications of The Laboratory Study of Presolar Materials = Aip. Conf. Proc. Astrophysical Journal = Astrophys J Astrophysical Journal = Astrophys. J. Astrophysical Journal Letters = Astrophys J Lett Astrophysical Journal Letters = Astrophys. J. Lett. Astrophysical Journal Supplement Series = Astrophys J Suppl S Astrophysical Journal Supplement Series = Astrophys. J. Suppl. S. Astrophysical Letters = Astrophys Lett Astrophysical Letters = Astrophys. Lett. Astrophysical Letters & Communications = Astrophys Lett Comm Astrophysical Letters & Communications = Astrophys. Lett. Comm. Astrophysical letters & communications = Astrophys Lett Commun Astrophysical Polarized Backgrounds = Aip Conf Proc Astrophysical Polarized Backgrounds = Aip. Conf. Proc. Astrophysical Sources for Ground-based Gravitational Wave Detectors = Aip Conf Proc Astrophysical Sources for Ground-based Gravitational Wave Detectors = Aip. Conf. Proc. Astrophysical Sources of High Energy Particles and Radiation = Aip Conf Proc Astrophysical Sources of High Energy Particles and Radiation = Aip. Conf. Proc. Astrophysical Supercomputing Using Particle Simulations = Iau Symp Astrophysical Supercomputing Using Particle Simulations = Iau. Symp. Astrophysical Turbulence and Convection = Ann Ny Acad Sci Astrophysical Turbulence and Convection = Ann. Ny. Acad. Sci. Astrophysics = Adv Space Res Astrophysics = Adv. Space. Res. Astrophysics = Adv Space Res-series Astrophysics = Adv. Space. Res-series. Astrophysics and Cosmology After Gamow = Aip Conf Proc Astrophysics and Cosmology After Gamow = Aip. Conf. Proc. Astrophysics and Space Science = Ap\&SS Astrophysics and space science = Astrophys Space Sci Astrophysics and Space Science = Astrophys. Space Sci. Astrophysics and Space Science = Astrophys Space Sci Astrophysics and Space Science = Astrophys. Space Sci. Astrophysics and Space Science Library = Astrophys. Space Sci. Lib. Astrophysics and Space Science Library = Astrophys. Space Sci. Libr. Astrophysics and Space Science Library = Astrophys Space Sc L Astrophysics and Space Science Library = Astrophys. Space Sc. L. Astrophysics and Space Science Proceedings = Astrophysics Space Astrophysics = Astrophysics Astrophysics = Astrophysics+ Astrophysics = Astrophysics+.+ Astrophysics At Fuv and Euv Wavelengths = Adv Space Res-series Astrophysics At Fuv and Euv Wavelengths = Adv. Space. Res-series. Astrophysics, Clocks and Fundamental Constants = Lect Notes Phys Astrophysics, Clocks and Fundamental Constants = Lect. Notes. Phys. Astrophysics Detector Workshop 2008 = Eas Publications Astrophysics Detector Workshop 2008 = Eas. Publications. Astrophysics From Antarctica = Astr Soc P Astrophysics From Antarctica = Astr. Soc. P. Astrophysics From The Moon = Aip Conf Proc Astrophysics From The Moon = Aip. Conf. Proc. Astrophysics in Antarctica = Aip Conf Proc Astrophysics in Antarctica = Aip. Conf. Proc. Astrophysics in The Far Ultraviolet: Five Years of Discovery With Fuse = Astr Soc P Astrophysics in The Far Ultraviolet: Five Years of Discovery With Fuse = Astr. Soc. P. Astrophysics in The Next Decade = Astrophysics Space Astrophysics in The Next Decade = Astrophysics Space. Astrophysics Journal = Astrophys. J. Astrophysics Journal Supplement Series = Astrophys. J. Suppl. Ser. Astrophysics of Cataclysmic Variables and Related Objects = Astr Soc P Astrophysics of Cataclysmic Variables and Related Objects = Astr. Soc. P. Astrophysics of Compact Objects = Aip Conf Proc Astrophysics of Compact Objects = Aip. Conf. Proc. Astrophysics of Gravitational Wave Sources = Aip Conf Proc Astrophysics of Gravitational Wave Sources = Aip. Conf. Proc. Astrophysics of Life = Space Tel S Astrophysics of Life = Space. Tel. S. Astrophysics of Variable Stars = Astr Soc P Astrophysics of Variable Stars = Astr. Soc. P. Astrophysics Update 2 = Springer-prax Books Astrophysics Update 2 = Springer-prax. Books. Astrophysics With Infrared Surveys: A Prelude to Sirtf = Astr Soc P Astrophysics With Infrared Surveys: A Prelude to Sirtf = Astr. Soc. P. Asuntosprinklaus Suomessa: Vaikuttavuuden Arvioint, Osa 2 = Vtt Res Notes Asuntosprinklaus Suomessa: Vaikuttavuuden Arvioint, Osa 2 = Vtt. Res. Notes. Aswec 2009: 20th Australian Software Engineering Conference, Proceedings = Ieee Aus Soft Engr Aswec 2009: 20th Australian Software Engineering Conference, Proceedings = Ieee. Aus. Soft. Engr. Asylsuchende Und Migranten Auf See: Staatliche Rechte Und Pflichten Aus Volkerrechtlicher Sicht = Hamb Stud Marit Aff Asylsuchende Und Migranten Auf See: Staatliche Rechte Und Pflichten Aus Volkerrechtlicher Sicht = Hamb. Stud. Marit. Aff. Asymmetrical Planetary Nebulae = Ann Isr Phy Asymmetrical Planetary Nebulae = Ann. Isr. Phy. Asymmetrical Planetary Nebulae Ii: From Origins to Microstructures = Astr Soc P Asymmetrical Planetary Nebulae Ii: From Origins to Microstructures = Astr. Soc. P. Asymmetrical Planetary Nebulae Iii = Astr Soc P Asymmetrical Planetary Nebulae Iii = Astr. Soc. P. Asymmetric Autonomy and The Settlement of Ethnic Conflicts = Natl Ethn Confl 21st Asymmetric Autonomy and The Settlement of Ethnic Conflicts = Natl. Ethn. Confl. 21st. Asymmetric Catalysis From A Chinese Perspective = Top Organometal Chem Asymmetric Catalysis From A Chinese Perspective = Top. Organometal. Chem. Asymmetric Fluoroorganic Chemistry = Acs Sym Ser Asymmetric Fluoroorganic Chemistry = Acs. Sym. Ser. Asymmetric Organocatalysis = Top Curr Chem Asymmetric Organocatalysis = Top. Curr. Chem. Asymmetries of Globalization = Routl Stud Dev Econ Asymmetries of Globalization = Routl. Stud. Dev. Econ. Asymmetry in Morphology = Linguist Inq Monogr Asymmetry in Morphology = Linguist. Inq. Monogr. Asymmetry: The Foundation of Information = Front Collect Asymmetry: The Foundation of Information = Front. Collect. Asymptomatic Atherosclerosis: Pathophysiology, Detection and Treatment = Contemp Cardiol Asymptomatic Atherosclerosis: Pathophysiology, Detection and Treatment = Contemp. Cardiol. Asymptotic Analysis and The Numerical Solution of Partial Differential Equations = Lect Notes Pure Appl Asymptotic Analysis and The Numerical Solution of Partial Differential Equations = Lect. Notes. Pure. Appl. Asymptotic Analysis = Asymptot. Anal. Asymptotic Analysis = Asymptotic Anal Asymptotic Analysis = Asymptotic Anal. Asymptotic and Numerical Methods for Partial Differential Equations With Critical Parameters = Nato Adv Sci Inst Se Asymptotic and Numerical Methods for Partial Differential Equations With Critical Parameters = Nato. Adv. Sci. Inst. Se. Asymptotic Behavior of Dynamical and Control Systems Under Perturbation and Discretization = Lect Notes Math Asymptotic Behavior of Dynamical and Control Systems Under Perturbation and Discretization = Lect. Notes. Math. Asymptotic Combinatorics With Applications to Mathematical Physics = Lect Notes Math Asymptotic Combinatorics With Applications to Mathematical Physics = Lect. Notes. Math. Asymptotic Combinatorics With Applications to Mathematical Physics = Nato Sci Ser Ii-math Asymptotic Combinatorics With Applications to Mathematical Physics = Nato. Sci. Ser. Ii-math. Asymptotic Combinatorics With Applications to Mathematical Physics = Nato Sci Ser Ii Math Asymptotic Combinatorics With Applications to Mathematical Physics = Nato. Sci. Ser. Ii. Math. Asymptotic Giant Branch Stars = Iau Symp Asymptotic Giant Branch Stars = Iau. Symp. Asymptotic Methods in Stochastics = Fields I Commun Asymptotic Methods in Stochastics = Fields. I. Commun. Asymptotic Methods in Stochastics = Fields Inst Commun Asymptotic Methods in Stochastics = Fields. Inst. Commun. Asymptotic Modelling in Fluid Mechanics = Lect Notes Phys Asymptotic Modelling in Fluid Mechanics = Lect. Notes. Phys. Asymptotics and Borel Summability = Ch Crc Monogr Surv P Asymptotics and Borel Summability = Ch. Crc. Monogr. Surv. P. Asymptotics Beyond All Orders = Nato Adv Sci I B-phy Asymptotics Beyond All Orders = Nato. Adv. Sci. I. B-phy. Asymptotics for Dissipative Nonlinear Equations = Lect Notes Math Asymptotics for Dissipative Nonlinear Equations = Lect. Notes. Math. Asymptotic Theory of Statistics and Probability = Springer Texts Stat Asymptotic Theory of Statistics and Probability = Springer. Texts. Stat. Async 2007: 13th Ieee International Symposium On Asynchronous Circuits and Systems = Pr Int Symp Adv Res Async 2007: 13th Ieee International Symposium On Asynchronous Circuits and Systems = Pr. Int. Symp. Adv. Res. Async: 2009 15th Ieee International Symposium On Asynchronous Circuits and Systems = Pr Int Symp Adv Res Async: 2009 15th Ieee International Symposium On Asynchronous Circuits and Systems = Pr. Int. Symp. Adv. Res. Async: Eighth International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res Async: Eighth International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. Asynchronous Design Methodologies = Ifip Trans A Asynchronous Design Methodologies = Ifip. Trans. A. Atalante-revista De Estudios Cinematograficos = Atalante Atalante-revista De Estudios Cinematograficos = Atalante. At-automatisierungstechnik = At-autom At-automatisierungstechnik = At-autom. Atemwegs-und Lungenkrankheiten = Atemweg Lungenkrank Atemwegs-und Lungenkrankheiten = Atemweg. Lungenkrank. Atencion Farmaceutica = Aten Farm Atencion Farmaceutica = Aten. Farm. Atencion Primaria = Aten Prim Atencion Primaria = Aten. Prim. Atencion Primaria=Aten Primaria;; Atencion Primaria = Aten. Primaria Atencion primaria / Sociedad Espanola de Medicina de Familia y Comunitaria = Aten Primaria Atenea = Atenea Atene e Roma = AeR Atene e Roma = Atene Roma Atene E Roma = Atene Roma Atene E Roma-nuova Serie Seconda = Atene Roma Atene E Roma-nuova Serie Seconda = Atene Roma. Atene e Roma: rassegna trimestrale dell'Associazione Italiana di Cultura classica = A&R Ateneo Parmense. Acta Bio-Medica = Ateneo Parmense. Acta Biomed. Ateneo Parmense. Sezione I, Acta Bio-Medica = Ateneo Parmense. [1] Ateneo Veneto : revista di scienze, lettere ed arti = Ateneo Veneto Atesea Occasional Papers = Atesea Oc P Atesea Occasional Papers = Atesea Oc. P. Atesea Occasional Papers No 9 = Atesea Oc P Atesea Occasional Papers No 9 = Atesea Oc. P. Athabaskan Languages: Perspectives On A Native American Language Family = Ox St Anthropol Ling Athabaskan Languages: Perspectives On A Native American Language Family = Ox. St. Anthropol. Ling. Athenaeum. Studi di letteratura e storia dell'antichità = Athenaeum Athenaeum-studi Periodici Di Letteratura E Storia Dell Antichita = Athenaeum Athenaeum-studi Periodici Di Letteratura E Storia Dell Antichita = Athenaeum. Athena = Gods Heroes Anc Worl Athena = Gods. Heroes. Anc. Worl. Athena; rassegna mensile di biologia, clinica e terapia = Athena Atheroma to Heart Failure : A Continuum of Disease ? = Roy Brom R Atheroma to Heart Failure : A Continuum of Disease ? = Roy. Brom. R. Atherosclerosis / = Altschul Sy Atherosclerosis / = Altschul. Sy. Atherosclerosis (Amsterdam, Netherlands) = Atherosclerosis (Amsterdam, Neth.) Atherosclerosis=Atherosclerosis;; Atherosclerosis = Atherosclerosis Atherosclerosis Iii: Recent Advances in Atherosclerosis Research = Ann Ny Acad Sci Atherosclerosis Iii: Recent Advances in Atherosclerosis Research = Ann. Ny. Acad. Sci. Atherosclerosis Ii : Recent Progress in Atherosclerosis Research = Ann Ny Acad Sci Atherosclerosis Ii : Recent Progress in Atherosclerosis Research = Ann. Ny. Acad. Sci. Atherosclerosis : Its Pathogenesis and The Role of Cholesterol = Ather Rev Atherosclerosis : Its Pathogenesis and The Role of Cholesterol = Ather. Rev. Atherosclerosis Iv: Recent Advances in Atherosclerosis Research = Ann Ny Acad Sci Atherosclerosis Iv: Recent Advances in Atherosclerosis Research = Ann. Ny. Acad. Sci. Atherosclerosis, Large Arteries and Cardiovascular Risk = Adv Cardiol Atherosclerosis, Large Arteries and Cardiovascular Risk = Adv. Cardiol. Atherosclerosis Reviews = Ather Rev Atherosclerosis Reviews = Ather. Rev. Atherosclerosis (Shannon, Ireland) = Atherosclerosis (Shannon, Irel.) Atherosclerosis Supplements = Atherosclerosis Supp Atherosclerosis Supplements = Atherosclerosis Supp. Atherosclerosis. Supplements = Atheroscler Suppl Atherosclerosis. Supplements = Atheroscler. Suppl. Atherosclerosis Vi = Ann Ny Acad Sci Atherosclerosis Vi = Ann. Ny. Acad. Sci. Atherosclerosis Viii = Int Congr Ser Atherosclerosis Viii = Int. Congr. Ser. Atherosclerosis V: The Fifth Saratoga Conference = Ann Ny Acad Sci Atherosclerosis V: The Fifth Saratoga Conference = Ann. Ny. Acad. Sci. Atherosclerosis Xii = Int Congr Ser Atherosclerosis Xii = Int. Congr. Ser. Atherosclerosis Xi = Int Congr Ser Atherosclerosis Xi = Int. Congr. Ser. Atherosclerosis X = Int Congr Ser Atherosclerosis X = Int. Congr. Ser. Atherosclerotic Plaques = Nato Adv Sci I A-lif Atherosclerotic Plaques = Nato. Adv. Sci. I. A-lif. Athletic Therapy Today = Athlet Ther Today Athletic Therapy Today = Athlet. Ther. Today `Atiqot. Journal of the Israel Department of Antiquities = Atiqot `Atiqot. Journal of the Israel Department of Antiquities. Hebrew Series = AtiqotHeb ATLA abstracts = ATLA Abstr Atla-alternatives to Laboratory Animals = Atla-altern Lab Anim Atla-alternatives to Laboratory Animals = Atla-altern. Lab. Anim. ATLA, Alternatives to Laboratory Animals = ATLA, Altern. Lab. Anim. Atlal. The Journal of Saudi Arabian Archaeology = Atlal Atlanta = Atlanta Atlanta Economic Review = Atlanta Econ Rev Atlanta Economic Review = Atlanta Econ. Rev. Atlanta history = Atlanta Hist Atlanta medicine : bulletin of the Medical Association of Atlanta = Atlanta Med Atlanta weekly = Atlanta Wkly Atlantic = Atlantic Atlantic (Boston, Mass. : 1981) = Atlantic Atlantic Communications = Krefeld Hist Symp Atlantic Communications = Krefeld. Hist. Symp. Atlantic Community Quarterly = Atl Community Quart Atlantic Community Quarterly = Atl. Community Quart. Atlantic economic journal : AEJ = Atl Econ J Atlantic Economic Journal=Atlantic Econ. J. Atlantic Economy During The Seventeenth and Eighteenth Centuries: Organization, Operation, Practice, and Personnel = Carol Lowcount Atl Atlantic Economy During The Seventeenth and Eighteenth Centuries: Organization, Operation, Practice, and Personnel = Carol. Lowcount. Atl. Atlantic Geology = Atlantic Geol Atlantic Geology = Atlantic Geol. Atlantic Geology = Atl Geol Atlantic Geology = Atl. Geol. Atlantic monthly (Boston, Mass. : 1971) = Atl Mon Atlantic monthly (Boston, Mass. : 1993) = Atl Mon Atlantic Papers = Atl Pap Atlantic Papers = Atl. Pap. Atlantic reporter = Atl Report Atlantida (Lisbon, Portugal) = Atlantida Atlantis-journal of The Spanish Association of Anglo-american Studies = Atlantis-spain Atlantis-journal of The Spanish Association of Anglo-american Studies = Atlantis-spain. Atlantis (Montreal, Quebec) = Atlantis (Montr) Atlantis (Wolfville, N.S.) = Atlantis (Wolfv) Atlas de radiologie clinique de la Presse medicale = Atlas Radiol Clin Presse Med Atlas de Radiologie Clinique de la Presse Medicale = Atlas Radiol. Clin. Presse Med. Atlas of Robotic Urologic Surgery = Curr Clin Urol Atlas of Robotic Urologic Surgery = Curr. Clin. Urol. Atlas of the oral and maxillofacial surgery clinics of North America = Atlas Oral Maxillofac Surg Clin North Am Atlas of the Oral and Maxillofacial Surgery Clinics of North America = Atlas Oral Maxillofac. Surg. Clin. North Am. Atlas world press review = Atlas World Press Rev Atm Messtechnische Praxis = Atm Messtech Prax Atm Messtechnische Praxis = Atm Messtech. Prax. Atmosfera = Atmosfera Atmósphera = Atmósphera Atmosphere and Ionosphere: Dynamics, Processes and Monitoring = Phys Earth Space Env Atmosphere and Ionosphere: Dynamics, Processes and Monitoring = Phys. Earth. Space. Env. Atmosphere: Atmosphere—Ocean = Atmos.—Ocean Atmosphere-ocean = Atmos Ocean Atmosphere-ocean = Atmos. Ocean. Atmosphere-Ocean = Atmos. Ocean Atmospheres in The Solar System = Geoph Monog Series Atmospheres in The Solar System = Geoph. Monog. Series. Atmospheres in The Solar System = Geophys Monogr Ser Atmospheres in The Solar System = Geophys. Monogr. Ser. Atmospheres of Venus and Mars = Adv Space Res Atmospheres of Venus and Mars = Adv. Space. Res. Atmospheric and Environmental Remote Sensing Data Processing and Utilization: An End to End System Perspective = P Soc Photo-opt Ins Atmospheric and Environmental Remote Sensing Data Processing and Utilization: An End to End System Perspective = P. Soc. Photo-opt. Ins. Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iii: Readiness for Geoss = Proc Spie Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iii: Readiness for Geoss = Proc. Spie. Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iii: Readiness for Geoss = P Soc Photo-opt Ins Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iii: Readiness for Geoss = P. Soc. Photo-opt. Ins. Atmospheric and Environmental Remote Sensing Data Processing and Utilization Ii: Perspective On Calibration/validation Initiatives and Strategies = P Soc Photo-opt Ins Atmospheric and Environmental Remote Sensing Data Processing and Utilization Ii: Perspective On Calibration/validation Initiatives and Strategies = P. Soc. Photo-opt. Ins. Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iv: Readiness for Geoss Ii = P Soc Photo-opt Ins Atmospheric and Environmental Remote Sensing Data Processing and Utilization Iv: Readiness for Geoss Ii = P. Soc. Photo-opt. Ins. Atmospheric and Environmental Remote Sensing Data Processing and Utilization Vi: Readiness for Geoss Iv = P Soc Photo-opt Ins Atmospheric and Environmental Remote Sensing Data Processing and Utilization Vi: Readiness for Geoss Iv = P. Soc. Photo-opt. Ins. Atmospheric and Oceanic Optics = Atmos. Oceanic Opt. Atmospheric and Oceanic Processes, Dynamics, and Climate Change = P Soc Photo-opt Ins Atmospheric and Oceanic Processes, Dynamics, and Climate Change = P. Soc. Photo-opt. Ins. Atmospheric and Oceanic Propagation of Electromagnetic Waves Iv = Proc Spie Atmospheric and Oceanic Propagation of Electromagnetic Waves Iv = Proc. Spie. Atmospheric and Oceanographic Sciences Library = Atmos Ocean Sci Lib Atmospheric and Oceanographic Sciences Library = Atmos. Ocean. Sci. Lib. Atmospheric Chemistry and Physics = Atmos Chem Phys Atmospheric Chemistry and Physics = Atmos. Chem. Phys. Atmospheric Chemistry and Physics Discussions = Atmos. Chem. Phys. Discuss. Atmospheric Corrosion = Am Soc Test Mater Atmospheric Corrosion = Am. Soc. Test. Mater. Atmospheric Deposition of Contaminants to The Great Lakes and Coastal Waters = Setac Tech Publicat Atmospheric Deposition of Contaminants to The Great Lakes and Coastal Waters = Setac. Tech. Publicat. Atmospheric environment = Atmos Environ Atmospheric Environment = Atmos Environ Atmospheric Environment = Atmos. Environ. Atmospheric Environment Part A-general Topics = Atmos Environ A-gen Atmospheric Environment Part A-general Topics = Atmos. Environ. A-gen. Atmospheric Environment Part A General Topics = Atmos. Environ. Part A Atmospheric Environment, Part A: General Topics = Atmos. Environ., Part A Atmospheric Environment Part B-urban Atmosphere = Atmos Environ B-urb Atmospheric Environment Part B-urban Atmosphere = Atmos. Environ. B-urb. Atmospheric Environment Part B Urban Atmosphere = Atmos. Environ. Part B Atmospheric Measurement Techniques = Atmos Meas Tech Atmospheric Measurement Techniques = Atmos. Meas. Tech. Atmospheric Modeling = Ima V Math Atmospheric Modeling = Ima. V. Math. Atmospheric Modeling = Ima Vol Math Appl Atmospheric Modeling = Ima. Vol. Math. Appl. Atmospheric Optical Modeling, Measurement, and Simulation Ii = P Soc Photo-opt Ins Atmospheric Optical Modeling, Measurement, and Simulation Ii = P. Soc. Photo-opt. Ins. Atmospheric Optics: Models, Measurements, and Target-in-the-loop Propagation Ii = P Soc Photo-opt Ins Atmospheric Optics: Models, Measurements, and Target-in-the-loop Propagation Ii = P. Soc. Photo-opt. Ins. Atmospheric Optics: Models, Measurements, and Target-in-the Loop Propagation = P Soc Photo-opt Ins Atmospheric Optics: Models, Measurements, and Target-in-the Loop Propagation = P. Soc. Photo-opt. Ins. Atmospheric Ozone As A Climate Gas = Nato Asi Ser Ser I Atmospheric Ozone As A Climate Gas = Nato. Asi. Ser. Ser. I. Atmospheric Ozone Dynamics = Nato Asi Ser Ser I Atmospheric Ozone Dynamics = Nato. Asi. Ser. Ser. I. Atmospheric Ozone = P Soc Photo-opt Ins Atmospheric Ozone = P. Soc. Photo-opt. Ins. Atmospheric Processes Over Complex Terrain = Meteor Mon Atmospheric Processes Over Complex Terrain = Meteor. Mon. Atmospheric Propagation, Adaptive Systems, and Laser Radar Technology for Remote Sensing = Proc Spie Atmospheric Propagation, Adaptive Systems, and Laser Radar Technology for Remote Sensing = Proc. Spie. Atmospheric Propagation, Adaptive Systems, and Laser Radar Technology for Remote Sensing = P Soc Photo-opt Ins Atmospheric Propagation, Adaptive Systems, and Laser Radar Technology for Remote Sensing = P. Soc. Photo-opt. Ins. Atmospheric Propagation, Adaptive Systems, and Lidar Techniques for Remote Sensing Ii = P Soc Photo-opt Ins Atmospheric Propagation, Adaptive Systems, and Lidar Techniques for Remote Sensing Ii = P. Soc. Photo-opt. Ins. Atmospheric Propagation and Remote Sensing Iii = P Soc Photo-opt Ins Atmospheric Propagation and Remote Sensing Iii = P. Soc. Photo-opt. Ins. Atmospheric Propagation and Remote Sensing Ii = P Soc Photo-opt Ins Atmospheric Propagation and Remote Sensing Ii = P. Soc. Photo-opt. Ins. Atmospheric Propagation and Remote Sensing Iv = P Soc Photo-opt Ins Atmospheric Propagation and Remote Sensing Iv = P. Soc. Photo-opt. Ins. Atmospheric Propagation and Remote Sensing = P Soc Photo-opt Ins Atmospheric Propagation and Remote Sensing = P. Soc. Photo-opt. Ins. Atmospheric Propagation Iii = P Soc Photo-opt Ins Atmospheric Propagation Iii = P. Soc. Photo-opt. Ins. Atmospheric Propagation Ii = P Soc Photo-opt Ins Atmospheric Propagation Ii = P. Soc. Photo-opt. Ins. Atmospheric Propagation Iv = Proc Spie Atmospheric Propagation Iv = Proc. Spie. Atmospheric Propagation Iv = P Soc Photo-opt Ins Atmospheric Propagation Iv = P. Soc. Photo-opt. Ins. Atmospheric Propagation of Electromagnetic Waves Iii = Proc Spie Atmospheric Propagation of Electromagnetic Waves Iii = Proc. Spie. Atmospheric Propagation of Electromagnetic Waves Ii = P Soc Photo-opt Ins Atmospheric Propagation of Electromagnetic Waves Ii = P. Soc. Photo-opt. Ins. Atmospheric Propagation = P Soc Photo-opt Ins Atmospheric Propagation = P. Soc. Photo-opt. Ins. Atmospheric Propagation Viii = P Soc Photo-opt Ins Atmospheric Propagation Viii = P. Soc. Photo-opt. Ins. Atmospheric Propagation Vii = P Soc Photo-opt Ins Atmospheric Propagation Vii = P. Soc. Photo-opt. Ins. Atmospheric Propagation V = Proc Spie Atmospheric Propagation V = Proc. Spie. Atmospheric Propagation V = P Soc Photo-opt Ins Atmospheric Propagation V = P. Soc. Photo-opt. Ins. Atmospheric Radiation Measurements and Applications in Climate = P Soc Photo-opt Ins Atmospheric Radiation Measurements and Applications in Climate = P. Soc. Photo-opt. Ins. Atmospheric Radiation = P Soc Photo-opt Ins Atmospheric Radiation = P. Soc. Photo-opt. Ins. Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - I = Adv Space Res Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - I = Adv. Space. Res. Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - I = Adv Space Res-series Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - I = Adv. Space. Res-series. Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - Ii = Adv Space Res Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - Ii = Adv. Space. Res. Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - Ii = Adv Space Res-series Atmospheric Remote Sensing: Earth's Surface, Troposphere, Stratosphere and Mesosphere - Ii = Adv. Space. Res-series. Atmospheric Research = Atmos Res Atmospheric Research = Atmos. Res. Atmospheric Research Letters = Atmos. Res. Lett. Atmospheric Science Letters = Atmos Sci Lett Atmospheric Science Letters = Atmos. Sci. Lett. Atmospheric Sensing and Modeling Ii = P Soc Photo-opt Ins Atmospheric Sensing and Modeling Ii = P. Soc. Photo-opt. Ins. Atmospheric Sensing and Modeling = P Soc Photo-opt Ins Atmospheric Sensing and Modeling = P. Soc. Photo-opt. Ins. Atmospheric Studies of Earth, Venus and Mars = Adv Space Res Atmospheric Studies of Earth, Venus and Mars = Adv. Space. Res. Atmospheric Tidal Dynamics and E- and D-region Physics = Adv Space Res Atmospheric Tidal Dynamics and E- and D-region Physics = Adv. Space. Res. Atmospheric Tidal Dynamics and E- and D-region Physics = Adv Space Res-series Atmospheric Tidal Dynamics and E- and D-region Physics = Adv. Space. Res-series. Atoll research bulletin = Atoll Res Bull Atomic and Molecular Data and Their Applications = Aip Conf Proc Atomic and Molecular Data and Their Applications = Aip. Conf. Proc. Atomic and Molecular Physics = P Soc Photo-opt Ins Atomic and Molecular Physics = P. Soc. Photo-opt. Ins. Atomic and Molecular Pulsed Lasers Ii = P Soc Photo-opt Ins Atomic and Molecular Pulsed Lasers Ii = P. Soc. Photo-opt. Ins. Atomic and Molecular Pulsed Lasers Vi = P Soc Photo-opt Ins Atomic and Molecular Pulsed Lasers Vi = P. Soc. Photo-opt. Ins. Atomic and Molecular Pulsed Lasers V = Proc Spie Atomic and Molecular Pulsed Lasers V = Proc. Spie. Atomic and Molecular Pulsed Lasers V = P Soc Photo-opt Ins Atomic and Molecular Pulsed Lasers V = P. Soc. Photo-opt. Ins. Atomic and Molecular Pulsed Laser Vii = Proc Spie Atomic and Molecular Pulsed Laser Vii = Proc. Spie. Atomic and Molecular Pulsed Laser Vii = P Soc Photo-opt Ins Atomic and Molecular Pulsed Laser Vii = P. Soc. Photo-opt. Ins. Atomic and Molecular Wires = Nato Adv Sci I E-app Atomic and Molecular Wires = Nato. Adv. Sci. I. E-app. Atomic and Nanometer-scale Modification of Materials : Fundamentals and Applications = Nato Adv Sci Inst Se Atomic and Nanometer-scale Modification of Materials : Fundamentals and Applications = Nato. Adv. Sci. Inst. Se. Atomic and Quantum Optics: High-precision Measurements = P Soc Photo-opt Ins Atomic and Quantum Optics: High-precision Measurements = P. Soc. Photo-opt. Ins. Atomic Collisions: A Symposium in Honor of Christopher Bottcher (1945-1993) = Aip Conf Proc Atomic Collisions: A Symposium in Honor of Christopher Bottcher (1945-1993) = Aip. Conf. Proc. Atomic Data and Nuclear Data Tables = At. Data Nucl. Data Tables Atomic Data and Nuclear Data Tables = Atom Data Nucl Data Atomic Data and Nuclear Data Tables = Atom. Data Nucl. Data Atomic Energy = At. Energ. Atomic Energy = Atom Energy+ Atomic Energy = Atom. Energy+.+ Atomic Energy in Australia = Atom Energy Aust Atomic Energy in Australia = Atom. Energy Aust. Atomic energy law journal = At Energy Law J Atomic Energy (New York, NY, United States) = At. Energy (N. Y., NY, U. S.) Atomic energy review = At Energy Rev Atomic Energy Review = At. Energy Rev. Atomic Energy Review = Atom Energy Rev Atomic Energy Review = Atom. Energy Rev. Atomic Force Microscopy in Biomedical Research: Methods and Protocols = Methods Mol Biol Atomic Force Microscopy in Biomedical Research: Methods and Protocols = Methods Mol. Biol. Atomic Force Microscopy in Cell Biology = Method Cell Biol Atomic Force Microscopy in Cell Biology = Method. Cell Biol. Atomic Layer Deposition Applications 4 = Ecs Transactions Atomic Layer Deposition Applications 4 = Ecs. Transactions. Atomic Layer Growth and Processing = Mater Res Soc Symp P Atomic Layer Growth and Processing = Mater. Res. Soc. Symp. P. Atomic Physics 12 = Aip Conf Proc Atomic Physics 12 = Aip. Conf. Proc. Atomic Physics 13 = Aip Conf Proc Atomic Physics 13 = Aip. Conf. Proc. Atomic Physics 14 = Aip Conf Proc Atomic Physics 14 = Aip. Conf. Proc. Atomic Physics 16 = Aip Conf Proc Atomic Physics 16 = Aip. Conf. Proc. Atomic Physics 17 = Aip Conf Proc Atomic Physics 17 = Aip. Conf. Proc. Atomic Physics 19 = Aip Conf Proc Atomic Physics 19 = Aip. Conf. Proc. Atomic Physics 20 = Aip Conf Proc Atomic Physics 20 = Aip. Conf. Proc. Atomic Processes in Plasmas = Aip Conf Proc Atomic Processes in Plasmas = Aip. Conf. Proc. Atomic Resolution Microscopy of Surfaces and Interfaces = Mater Res Soc Symp P Atomic Resolution Microscopy of Surfaces and Interfaces = Mater. Res. Soc. Symp. P. Atomic Scale Calculations of Structure in Materials = Mater Res Soc Symp P Atomic Scale Calculations of Structure in Materials = Mater. Res. Soc. Symp. P. Atomic Scale Characterization and First-principles Studies of Si3n4 Interfaces = Springer Theses-reco Atomic Scale Characterization and First-principles Studies of Si3n4 Interfaces = Springer. Theses-reco. Atomic-scale Imaging of Surface and Interfaces = Mater Res Soc Symp P Atomic-scale Imaging of Surface and Interfaces = Mater. Res. Soc. Symp. P. Atomic-scale Modeling of Nanosystems and Nanostructured Materials = Lect Notes Phys Atomic-scale Modeling of Nanosystems and Nanostructured Materials = Lect. Notes. Phys. Atomic Scale Structure of Interfaces = Mater Res Soc Symp P Atomic Scale Structure of Interfaces = Mater. Res. Soc. Symp. P. Atomic Simulation of Electrooptic and Magnetooptic Oxide Materials = Springer Trac Mod Ph Atomic Simulation of Electrooptic and Magnetooptic Oxide Materials = Springer. Trac. Mod. Ph. Atomic Simulation of Electrooptic and Magnetooptic Oxide Materials = Springer Tr Mod Phys Atomic Simulation of Electrooptic and Magnetooptic Oxide Materials = Springer. Tr. Mod. Phys. Atomic Spectroscopy = Atom Spectrosc Atomic Spectroscopy = Atom. Spectrosc. Atomic Spectroscopy = At. Spectrosc. Atomistic and Continuum Modeling of Nanocrystalline Materials: Deformation Mechanisms and Scale Transition = Springer Ser Mater S Atomistic and Continuum Modeling of Nanocrystalline Materials: Deformation Mechanisms and Scale Transition = Springer. Ser. Mater. S. Atomistic Approaches in Modern Biology: From Quantum Chemistry to Molecular Simulations = Top Curr Chem Atomistic Approaches in Modern Biology: From Quantum Chemistry to Molecular Simulations = Top. Curr. Chem. Atomistic Aspects of Epitaxial Growth = Nato Sci Ser Ii-math Atomistic Aspects of Epitaxial Growth = Nato. Sci. Ser. Ii-math. Atomistic Aspects of Epitaxial Growth = Nato Sci Ser Ii Math Atomistic Aspects of Epitaxial Growth = Nato. Sci. Ser. Ii. Math. Atomistic Mechanisms in Beam Synthesis and Irradiation of Materials = Mater Res Soc Symp P Atomistic Mechanisms in Beam Synthesis and Irradiation of Materials = Mater. Res. Soc. Symp. P. Atomistic Modeling of Physical Properties = Adv Polym Sci Atomistic Modeling of Physical Properties = Adv. Polym. Sci. Atomization and Sprays = Atomization Spray Atomization and Sprays = Atomization Spray. Atomization and Sprays = Atomization Sprays Atomkernenergie = Atomkernenerg/kernt Atomkernenergie = Atomkernenerg/kernt. Atomkernenergie-kerntechnik = Atomkernenerg/kernt Atomkernenergie-kerntechnik = Atomkernenerg/kernt. Atomnaya Energiya = At. Energ. Atomnaya Energiya = Sov Atom Energy+ Atomnaya Energiya = Sov. Atom. Energy+.+ Atom Optics = P Soc Photo-opt Ins Atom Optics = P. Soc. Photo-opt. Ins. Atompraxis = Atompraxis Atom Resolved Surface Reactions: Nanocatalysis = Rsc Nanosci Nanotech Atom Resolved Surface Reactions: Nanocatalysis = Rsc. Nanosci. Nanotech. Atoms and Molecules in Intense Fields = Struct Bond Atoms and Molecules in Intense Fields = Struct. Bond. Atoms in Chemistry: From Dalton's Predecessors to Complex Atoms and Beyond = Acs Sym Ser Atoms in Chemistry: From Dalton's Predecessors to Complex Atoms and Beyond = Acs. Sym. Ser. Atoms in Strong Fields = Nato Adv Sci I B-phy Atoms in Strong Fields = Nato. Adv. Sci. I. B-phy. Atoms, Molecules and Photons: An Introduction to Atomic-, Molecular- and Quantum Physics, Second Edition = Grad Texts Phys Atoms, Molecules and Photons: An Introduction to Atomic-, Molecular- and Quantum Physics, Second Edition = Grad. Texts. Phys. Atom & Strom = Atom Strom Atomwirtschaft-atomtechnik = Atomwirtsch Atomtech Atomwirtschaft-atomtechnik = Atomwirtsch. Atomtech. Atomwirtschaft = Atomwirtschaft Atopy Syndrome in The Third Millennium = Curr Probl Dermatol Atopy Syndrome in The Third Millennium = Curr. Probl. Dermatol. Atq-19th C American Literature and Culture = Atq Atq-19th C American Literature and Culture = Atq. Atrial Arrhythmias = Am Heart Monogr S Atrial Arrhythmias = Am. Heart. Monogr. S. Atrial Fibrillation: From Bench to Bedside = Contemp Cardiol Atrial Fibrillation: From Bench to Bedside = Contemp. Cardiol. Atrial Fibrillation: New Therapeutic Concepts = Solvay Pharmaceut Atrial Fibrillation: New Therapeutic Concepts = Solvay. Pharmaceut. Atrium in Health and Disease = Cardios Mon Atrium in Health and Disease = Cardios. Mon. Attachment and Human Development = Attach. Hum. Dev. Attachment and Sexuality = Psychoanal Inq Book Attachment and Sexuality = Psychoanal. Inq. Book. Attachment: Expanding The Cultural Connections = Fam Ther Counsel Attachment: Expanding The Cultural Connections = Fam. Ther. Counsel. Attachment & human development = Attach Hum Dev Attachment & Human Development = Attach Hum Dev Attachment & Human Development = Attach. Hum. Dev. At&t Bell Laboratories Technical Journal = At&t Tech J At&t Bell Laboratories Technical Journal = At&t Tech. J. Attempts At General Union: A Study in British Trade Union History 1818-1834 = Rout Libr Edition Attempts At General Union: A Study in British Trade Union History 1818-1834 = Rout. Libr. Edition. Attempts to Understand Metastasis Formation I = Curr Top Microbiol Attempts to Understand Metastasis Formation I = Curr. Top. Microbiol. Attempts to Understand Metastasis Formation Ii = Curr Top Microbiol Attempts to Understand Metastasis Formation Ii = Curr. Top. Microbiol. Attempts to Understand Metastasis Formation Iii = Curr Top Microbiol Attempts to Understand Metastasis Formation Iii = Curr. Top. Microbiol. Attending Krishna's Image: Chaitanya Vaishnava Murti-seva As Devotional Truth = Routl Hindu Stud Ser Attending Krishna's Image: Chaitanya Vaishnava Murti-seva As Devotional Truth = Routl. Hindu. Stud. Ser. Attending Madness: At Work in The Australian Colonial Asylum = Clio Med Attending Madness: At Work in The Australian Colonial Asylum = Clio. Med. Attention and Performance = Attention Perform Attention and Performance = Attention Perform. Attention and Performance in Computational Vision = Lect Notes Comput Sc Attention and Performance in Computational Vision = Lect. Notes. Comput. Sc. Attention and Performance Xiii = Attention Perform Attention and Performance Xiii = Attention Perform. Attention and Performance Xiv = Attention Perform Attention and Performance Xiv = Attention Perform. Attention and Performance Xv = Attention Perform Attention and Performance Xv = Attention Perform. Attention and Performance Xvii = Attention Perform Attention and Performance Xvii = Attention Perform. Attention-deficit Hyperactivity Disorder (adhd) in Adults = Key Issues Ment Heal Attention-deficit Hyperactivity Disorder (adhd) in Adults = Key. Issues. Ment. Heal. Attention Deficit Hyperactivity Disorder (adhd) = Psychiat Theor Appl Attention Deficit Hyperactivity Disorder (adhd) = Psychiat. Theor. Appl. Attention in Action: Advances From Cognitive Neuroscience = Adv Behav Brain Sci Attention in Action: Advances From Cognitive Neuroscience = Adv. Behav. Brain. Sci. Attention in Cognitive Systems = Lect Notes Artif Int Attention in Cognitive Systems = Lect. Notes. Artif. Int. Attention Perception & Psychophysics = Atten Percept Psycho Attention Perception & Psychophysics = Atten. Percept. Psycho. Attention = Prog Brain Res Attention = Prog. Brain. Res. Atterbury Plot = Stud Mod Hist Atterbury Plot = Stud. Mod. Hist. At The Crossroads: The World Trading System and The Doha Round = Schr Ost Ges Eur Ecs At The Crossroads: The World Trading System and The Doha Round = Schr. Ost. Ges. Eur. Ecs. At The Edge of The Universe: Latest Results From The Deepest Astronomical Surveys = Astr Soc P At The Edge of The Universe: Latest Results From The Deepest Astronomical Surveys = Astr. Soc. P. At The Interface = Mg Econ Ant At The Interface = Mg. Econ. Ant. At The Interface / Probing The Boundaries = At The Interface At The Same Time...the Expression of Simultaneity in Learner Varieties = Stud Lang Acquis At The Same Time...the Expression of Simultaneity in Learner Varieties = Stud. Lang. Acquis. Atti Associazione Genetica Italiana = Atti Assoc Genet It Atti Associazione Genetica Italiana = Atti Assoc. Genet. It. Atti. Centro di ricerche storiche, Rovigno = AttiRovigno Atti. Centro ricerche e documentazione sull'antichità classica = AttiCAntCl Atti. Centro studi e documentazione sull'Italia romana = AttiCItRom Atti dei Civici musei di storia ed arte di Trieste = AttiMusTrieste Atti dei Convegni dell'A = Atti Convegni A.I.C.M. Atti de la Accademia delle scienze dell'Istituto di Bologna. Memorie = MemBologna Atti del Centro ricerche e documentazione sull'antichità classica = CRDAC Atti del congresso nazionale. Societa italiana di medicina legale e delle assicurazioni = Atti Congr Naz Soc Ital Med Leg Atti della Accademia dei fisiocritici in Siena. Sezione medico-fisica = Atti Accad Fisiocrit Siena [Med Fis] Atti della Accademia dei Fisiocritici in Siena. Sezione Medico-Fisica = Atti Accad. Fisiocrit. Siena. [Med. Fis.] Atti della Accademia delle Scienze dell'Istituto di Bologna = Atti Accad. Sci. Istit. Bologna Cl. Sci. Fis. Rend. (14) Atti della Accademia delle scienze dell'Istituto di Bologna, Classe di scienze fisiche. Memorie = Atti Accad Sci Ist Bologna Classe Sci Fis Rend Atti della Accademia delle scienze dell’Istituto di Bologna. Rendiconti = RendBologna Atti della Accademia delle scienze di Torino, 2. Classe di scienze morali, storiche e filologiche = AttiAcTorino Atti della Accademia delle Scienze di Torino = Atti Accad. Sci. Torino Cl. Sci. Fis. Mat. Natur. Atti della Accademia delle Scienze di Torino, Classe di Scienze morali, storiche e filologiche = AAT Atti della Accademia di scienze, lettere e arti di Palermo = AttiPalermo Atti della Accademia di Scienze morali e politiche della Società nazionale di Scienze, Lettere ed Arti di Napoli = AAN Atti della Accademia medica lombarda = Atti Accad Med Lomb Atti della Accademia Medica Lombarda = Atti Accad. Med. Lomb. Atti della Accademia Mediterranea delle Scienze = AAMed Atti della Accademia nazionale dei Lincei = Atti Accad Naz Lincei Atti della Accademia Nazionale dei Lincei = Atti Accad. Naz. Lincei Cl. Sci. Fis. Mat. Natur. Rend. Lincei (9) Mat. Appl. Atti della Accademia Nazionale dei Lincei = Atti Accad. Naz. Lincei Cl. Sci. Fis. Mat. Natur. Rend. Lincei (9) Suppl. Atti della Accademia Nazionale dei Lincei, Classe di Scienze Fisiche, Matematiche e Naturali, Rendiconti = Atti Accad. Naz. Lincei Cl. Sci. Fis. Mat. Nat. Rend. Atti della Accademia Nazionale dei Lincei, Classe di Scienze Morali, Storiche e Filologiche. Rendiconti = RAL Atti Della Accademia Nazionale Dei Lincei Rendiconti-classe Di Scienze Fisiche-matematiche & Naturali = Atti Accad Naz Lin Atti Della Accademia Nazionale Dei Lincei Rendiconti-classe Di Scienze Fisiche-matematiche & Naturali = Atti Accad. Naz. Lin. Atti della Accademia Peloritana dei Pericolanti, Classe di Lettere, Filosofia e Belle Arti = AAPel Atti della Accademia Pontaniana = Atti Accad. Pontaniana (N.S.) Atti della Accademia pontaniana = AttiAcPontan Atti della Accademia Roveretana degli Agiati, Classe di Scienze umane, Lettere ed Arti = AARov Atti della Accademia Roveretana degli Agiati. Contributi della classe di scienze umane, di lettere ed arti = AttiAcRov Atti dell'Accademia dei Fisiocritici in Siena = Atti Accad. Fisiocrit. Siena Atti dell'Accademia di Scienze, Lettere e Arti di Palermo = AAPal Atti dell'Accademia Ligure di Scienze e Lettere = AALIG Atti dell'Accademia nazionale dei Lincei, Classe di scienze morali, storiche e filologiche. Memorie = MemLinc Atti dell'Accademia Pontaniana = AAP Atti della Pontificia accademia romana di archeologia. Memorie = MemPontAc Atti della Pontificia Accademia romana di Archeologia, Ser. IIIa, Memorie (in-4¡) = MPAA Atti della R. Accademia dei fisiocritici in Siena = Atti Accad Fisiocrit Siena Atti della Societa italiana di cardiologia = Atti Soc Ital Cardiol Atti della Societa Italiana di Cardiologia = Atti Soc. Ital. Cardiol. Atti della Societa italiana di dermatologia e sifilografia e delle sezioni interprovinciali. Societa italiana di dermatologia e sifilografia = Soc Ital Dermatol Sifilogr Sezioni Interprov Soc Ital Dermatol Sifilogr Atti della Società per la preistoria e protostoria della regione Friuli -- Venezia Giulia = AttiSocFriuli Atti dell'Istituto Veneto di Scienze, Lettere ed Arti, Classe di Scienze morali e Lettere = AIV Atti del Seminario Matematico e Fisico dell'Università di Modena = Atti Sem. Mat. Fis. Univ. Modena Atti del Sodalizio glottologico milanese = ASGM Atti e memorie - Accademia nazionale di scienze, lettere e arti, Modena. Accademia di scienze, lettere e arti (Modena, Italy) = Atti Mem Accad Naz Sci Lett Arti Modena Atti e memorie della Accademia di storia dell'arte sanitaria = Atti Mem Accad Stor Arte Sanit Atti e Memorie della Accademia di Storia dell'Arte Sanitaria = Atti Mem. Accad. Stor. Arte Sanit. Atti e memorie della Accademia italiana di storia della farmacia = Atti Mem Accad Ital Stor Farm Atti e memorie della Accademia Virgiliana di Mantova = AVM Atti e memorie dell'Academia toscana di scienze e lettere »La Columbaria« = AttiMemFirenze Atti e Memorie dell'Accademia Patavina di Scienze, Lettere ed Arti, Classe di Sc. mor., Lett. ed Arti = AAPat Atti e memorie dell'Accademia toscana di scienze e lettere La Colombaria = Atti Mem Accad Toscana Sci Lett Colombaria Atti e Memorie dell'Accademia Toscana La Colombaria = AATC Atti e Memorie dell'Arcadia = AMArc Atti e memorie della Reale Accademia Petrarca di lettere, arti e scienze = Atti Mem R Accad Petrarca Lett Arti Sci Atti e memorie della Società dalmata di storia patria = AttiMemDal Atti e Memorie della Società Istriana di Archeologia e Storia Patria = AMSI Atti e memorie della Società istriana di archeologia e storia patria = AttiMemIstria Atti e memorie della Società Magna Grecia = ASMG Atti e memorie della Società Magna Grecia = AttiMemMagnaGr Atti e memorie della Società tiburtina di storia e d'arte = AttiMemTivoli Atti e Memorie delle Accademie di Agricoltura, Scienze e Lettere di Verona = AMAV Atti e memorie. Deputazione di storia patria per le antiche provincie modenesi = AttiMemModena Atti e memorie - Deputazione di storia patria per le antiche provincie modenesi. Deputazione di storia patria per le antiche provincie modenesi = Atti Mem Deput Stor Patria Antiche Prov Modenesi Atti e memorie. Deputazione di storia patria per le province di Romagna = AttiMemBologna Atti. Istituto veneto di scienze, lettere ed arti = AttiVenezia Attitudes and Attitude Change = Front Soc Psychol Attitudes and Attitude Change = Front. Soc. Psychol. Attitudes of Religions and Ideologies Toward The Outsider = Relig Dial Attitudes of Religions and Ideologies Toward The Outsider = Relig. Dial. Atti. Universita di Palermo. Clinica oto-rino-laringoiatrica = Atti Clin Otorinolaringoitr Univ Palermo Attractivity and Bifurcation for Nonautonomous Dynamical Systems = Lect Notes Math Attractivity and Bifurcation for Nonautonomous Dynamical Systems = Lect. Notes. Math. Attractor Mechanism = Springer Proc Phys Attractor Mechanism = Springer. Proc. Phys. Attribute Grammars and Their Applications = Lect Notes Comput Sc Attribute Grammars and Their Applications = Lect. Notes. Comput. Sc. Attribute Grammars, Applications and Systems = Lect Notes Comput Sc Attribute Grammars, Applications and Systems = Lect. Notes. Comput. Sc. At&t Technical Journal = At&t Tech J At&t Technical Journal = At&t Tech. J. Attualita dentale = Attual Dent Attualita Dentale = Attual. Dent. Attualita di ostetricia e ginecologia = Attual Ostet Ginecol Attualita di Ostetricia e Ginecologia = Attual. Ostet. Ginecol. Attualita in ematologia = Attual Ematol Atw-internationale Zeitschrift Fur Kernenergie = Atw-int Z Kernenerg Atw-internationale Zeitschrift Fur Kernenergie = Atw-int. Z. Kernenerg. Atw-international Journal for Nuclear Power = Atw-int J Nucl Power Atw-international Journal for Nuclear Power = Atw-int. J. Nucl. Power At Your Service: Service-oriented Computing From An Eu Perspective = Coop Inform Syst At Your Service: Service-oriented Computing From An Eu Perspective = Coop. Inform. Syst. AUAA Journal = AUAA J. AUAA journal : official journal of the American Urological Association Allied = AUAA J A + U-architecture and Urbanism = A U-archit Urban A + U-architecture and Urbanism = A U-archit. Urban. Auckland University law review = Auckl Univ Law Rev Audience, Agency and Identity in Black Popular Culture = Stud Afr Am Hist Cul Audience, Agency and Identity in Black Popular Culture = Stud. Afr. Am. Hist. Cul. Audiences and Publics: When Cultural Engagement Matters for The Public Sphere = Changing Media Audiences and Publics: When Cultural Engagement Matters for The Public Sphere = Changing. Media. Audience Studies: A Japanese Perspective = Routl Adv Int Media Audience Studies: A Japanese Perspective = Routl. Adv. Int. Media. Audio- and Video-based Biometric Person Authentication = Lect Notes Comput Sc Audio- and Video-based Biometric Person Authentication = Lect. Notes. Comput. Sc. Audio- and Video-based Biometric Person Authentication, Proceedings = Lect Notes Comput Sc Audio- and Video-based Biometric Person Authentication, Proceedings = Lect. Notes. Comput. Sc. Audio-and Video-based Biometric Person Authentication, Proceedings = Lect Notes Comput Sc Audio-and Video-based Biometric Person Authentication, Proceedings = Lect. Notes. Comput. Sc. Audio and Video Based Biometric Person Authentication, Proceedings = Lect Notes Comput Sc Audio and Video Based Biometric Person Authentication, Proceedings = Lect. Notes. Comput. Sc. Audio = Audio Audio-based and Video-based Biometric Person Authentication, Proceedings = Lect Notes Comput Sc Audio-based and Video-based Biometric Person Authentication, Proceedings = Lect. Notes. Comput. Sc. Audiology and Neuro-otology = Audiol Neuro-otol Audiology and Neuro-otology = Audiol. Neuro-otol. Audiology and Neuro-Otology=Audiol Neurootol;; Audiology and Neuro-Otology = Audiol. Neurootol. Audiology=Audiology;; Audiology = Audiology Audiology & neuro-otology = Audiol Neurootol Audiology : official organ of the International Society of Audiology = Audiology Audio System for Technical Readings = Lect Notes Comput Sc Audio System for Technical Readings = Lect. Notes. Comput. Sc. Auditing-a Journal of Practice & Theory = Auditing-j Pract Th Auditing-a Journal of Practice & Theory = Auditing-j. Pract. Th. Auditory and Vestibular Efferents = Springer Handb Audit Auditory and Vestibular Efferents = Springer. Handb. Audit. Auditory Display = Lect Notes Comput Sc Auditory Display = Lect. Notes. Comput. Sc. Auditory Display = Sfi S Sci C Auditory Display = Sfi. S. Sci. C. Auditory Neuroscience = Audit Neurosci Auditory Neuroscience = Audit. Neurosci. Auditory Physiology and Perception = Adv Biosci Auditory Physiology and Perception = Adv. Biosci. Auditory Spectral Processing = Int Rev Neurobiol Auditory Spectral Processing = Int. Rev. Neurobiol. Audit Unit News = Audit Unit News Audubon = Audubon Auerbach Series On Applied Software Engineering = Auerbach S Appl Soft Auerbach Series On Applied Software Engineering = Auerbach S. Appl. Soft. Aufstieg und Niedergang der römischen Welt = ANRW Aufstieg und Niedergang der römischen Welt: Geschichte und Kultur Roms im Spiegel der neueren Forschung = ANRW Augmentative and Alternative Communication = Augment Altern Comm Augmentative and Alternative Communication = Augment. Altern. Comm. Augmentative and alternative communication (Baltimore, Md. : 1985) = Augment Altern Commun Augmentative and Alternative Communications Perspectives = Aug Alt Comm Persp Augmentative and Alternative Communications Perspectives = Aug. Alt. Comm. Persp. Augmented Vision and Reality = Augment Vis Real Augmented Vision and Reality = Augment. Vis. Real. Augmented Vision Perception in Infrared: Algorithms and Applied Systems = Adv Pattern Recognit Augmented Vision Perception in Infrared: Algorithms and Applied Systems = Adv. Pattern. Recognit. Augsburger Mathematisch-Naturwissenschaftliche Schriften = Augsbg. Math.-Naturwiss. Schrift. Augsburger Ökologische Schriften = Augsbg. Ökol. Schr. Augustan Age = AugAge Augustine's Manichaean Dilemma, I: Conversion and Apostasy, 373-388 C.e. = Divin Reread Late An Augustine's Manichaean Dilemma, I: Conversion and Apostasy, 373-388 C.e. = Divin. Reread. Late. An. Augustinian Studies = AugStud August Strindberg and His Translators = Kungl Vit H August Strindberg and His Translators = Kungl. Vit. H. August Strindberg and The Other New Critical Approaches = Int For Lit August Strindberg and The Other New Critical Approaches = Int. For. Lit. Auk = Auk Auk, The = Auk Aula orientalis. Revista de estudios del Próximo Oriente antiguo = AulaOr Aumla-journal of The Australasian Universities Language and Literature Association = Aumla Aumla-journal of The Australasian Universities Language and Literature Association = Aumla. Auralization: Fundamentals of Acoustics, Modelling, Simulation, Algorithms and Acoustic Virtual Reality, First Edition = Rwthedition Auralization: Fundamentals of Acoustics, Modelling, Simulation, Algorithms and Acoustic Virtual Reality, First Edition = Rwthedition. Auris, nasus, larynx = Auris Nasus Larynx Auris Nasus Larynx = Auris Nasus Larynx Auris, Nasus, Larynx=Auris Nasus Larynx;; Auris, Nasus, Larynx = Auris. Nasus. Larynx Auroral and Related Phenomena = Adv Space Res Auroral and Related Phenomena = Adv. Space. Res. Ausgaben Deutscher Literatur Des 15 Bis 18 Jahrhunderts = Ausg Deut Lit 15 18 Ausgaben Deutscher Literatur Des 15 Bis 18 Jahrhunderts = Ausg. Deut. Lit. 15 18 Ausgrabungen der Deutschen Forschungsgemeinschaft in Uruk-Warka = ADFU Ausgrabungen in Alt-Paphos auf Cypern = Alt-Paphos Ausgrabungen in Uruk-Warka. Endberichte = AUWE Ausgrabungen und Funde = Ausgrab Funde Ausgrabungen Und Funde = Ausgrabungen Funde Ausgrabungen und Funde in Westfalen-Lippe = AusgrFuWestf Ausgrabungen und Funde. Nachrichtenblatt der Landesarchäologie = AusgrFu Aus Grunden Handeln = Ideen Argumente Aus Grunden Handeln = Ideen. Argumente. Ausimm'98: The Mining Cycle = Australas I Min Met Ausimm'98: The Mining Cycle = Australas. I. Min. Met. Ausimm Annual Conference 1995: Adding Value to Our Resources - Our Future = Australas I Min Met Ausimm Annual Conference 1995: Adding Value to Our Resources - Our Future = Australas. I. Min. Met. Ausimm New Leaders' Conference 2005 = Australas I Min Met Ausimm New Leaders' Conference 2005 = Australas. I. Min. Met. Ausimm New Leaders' Conference 2006 = Australas I Min Met Ausimm New Leaders' Conference 2006 = Australas. I. Min. Met. Ausimm New Leaders' Conference 2007 = Australas I Min Met Ausimm New Leaders' Conference 2007 = Australas. I. Min. Met. Ausimm New Leaders' Conference 2008 = Australas I Min Met Ausimm New Leaders' Conference 2008 = Australas. I. Min. Met. Ausimm New Leaders Conference 2009 = Australas I Min Met Ausimm New Leaders Conference 2009 = Australas. I. Min. Met. Ausimm New Leaders' Conference = Australas I Min Met Ausimm New Leaders' Conference = Australas. I. Min. Met. Auslegung-a Graduate Journal of Philosophy = Auslegung Auslegung-a Graduate Journal of Philosophy = Auslegung. Auslegung-a Journal of Philosophy = Auslegung Auslegung-a Journal of Philosophy = Auslegung. Aus Politik und Zeitgeschichte = Polit Zeitgesch Aussen Politik = Aussen Polit Aussen Politik = Aussen Polit. Aussenwirtschaft=Aussenwirtschaft Aussenwirtschaft : Zeitschrift fur internationale Wirtschaftsbeziehungen / herausgegeben vom Schweizerischen Institut fur Aussenwirtschafts- und Marktforschung an der Handels-Hochschule St. Gallen = Aussenwirtschaft Aust-Agder arv = Aust Agder Arv Austere Realism: Contextual Semantics Meets Minimal Ontology = Represent Mind Austere Realism: Contextual Semantics Meets Minimal Ontology = Represent. Mind. Australasian annals of medicine = Australas Ann Med Australasian Annals of Medicine = Australas Ann Med Australasian Annals of Medicine = Australas. Ann. Med. Australasian biotechnology = Australas Biotechnol Australasian Biotechnology = Australas Biotechnol Australasian Biotechnology = Australas. Biotechnol. Australasian chiropractic & osteopathy : journal of the Chiropractic & Osteopathic College of Australasia = Australas Chiropr Osteopathy Australasian Drama Studies = Australas Drama Stud Australasian Drama Studies = Australas. Drama Stud. Australasian historical archaeology : journal of the Australasian Society for Historical Archaeology = Australas Hist Archaeol Australasian Institute of Mining and Metallurgy Monograph Series = Aimm Monogr Ser Australasian Institute of Mining and Metallurgy Monograph Series = Aimm. Monogr. Ser. Australasian Institute of Mining and Metallurgy Monograph Series = Aust Imm M Australasian Institute of Mining and Metallurgy Monograph Series = Aust. Imm. M. Australasian Institute of Mining and Metallurgy Publication Series = Australas I Min Met Australasian Institute of Mining and Metallurgy Publication Series = Australas. I. Min. Met. Australasian Institute of Mining and Metallurgy Spectrum Series = Aimm Spectr Ser Australasian Institute of Mining and Metallurgy Spectrum Series = Aimm. Spectr. Ser. Australasian Institute of Mining and Metallurgy Symposia Series = Aust I Min Australasian Institute of Mining and Metallurgy Symposia Series = Aust. I. Min. Australasian Journal of Dermatology=Australas J Dermatol;; Australasian Journal of Dermatology = Australas J Dermatol Australasian Journal of Dermatology = Australas. J. Dermatol. Australasian Journal of Educational Technology = Australas J Educ Tec Australasian Journal of Educational Technology = Australas. J. Educ. Tec. Australasian Journal of Environmental Management = Australas J Environ Australasian Journal of Environmental Management = Australas. J. Environ. Australasian Journal of Environmental Management = Australas J Env Man Australasian Journal of Environmental Management = Australas. J. Env. Man. Australasian journal of philosophy = Australas J Philos Australasian Journal of Philosophy = Australas J Philos Australasian Journal of Philosophy = Australas. J. Philos. Australasian Journal of Regional Studies=Australasian J. Reg. Stud. Australasian journal on ageing = Australas J Ageing Australasian Journal On Ageing = Australas J Ageing Australasian Journal On Ageing = Australas. J. Ageing Australasian Nurses Journal = Australas. Nurses J. Australasian of Mining and Metallurgy Publication = Astrlsn Inst Min Met Australasian of Mining and Metallurgy Publication = Astrlsn. Inst. Min. Met. Australasian Physical and Engineering Sciences in Medicine = Australas. Phys. Eng. Sci. Med. Australasian Physical and Engineering Sciences In Medicine=Australas Phys Eng Sci Med;; Australasian Physical & Engineering Sciences in Medicine = Australas Phys Eng S Australasian Physical & Engineering Sciences in Medicine = Australas. Phys. Eng. S. Australasian physical & engineering sciences in medicine / supported by the Australasian College of Physical Scientists in Medicine and the Australasian Association of Physical Sciences in Medicine = Australas Phys Eng Sci Med Australasian Pig Science Association (apsa) - Conference Proceedings = Apsa Conf P Australasian Pig Science Association (apsa) - Conference Proceedings = Apsa. Conf. P. Australasian Plant Pathology = Australas Plant Path Australasian Plant Pathology = Australas. Plant Path. Australasian Plant Pathology = Australas. Plant Pathol. Australasian Psychiatry = Australas Psychiatry Australasian Psychiatry = Australas. Psychiatry Australasian psychiatry : bulletin of Royal Australian and New Zealand College of Psychiatrists = Australas Psychiatry Australasian Public Libraries and Information Services = Aus Pub Lib Australasian Public Libraries and Information Services = Aus. Pub. Lib. Australasian Public Libraries and Information Services, Vol 3, No 3 = Aus Pub Lib Australasian Public Libraries and Information Services, Vol 3, No 3 = Aus. Pub. Lib. Australasian radiology = Australas Radiol Australasian Radiology=Australas Radiol;; Australasian Radiology = Australas Radiol Australasian Radiology = Australas. Radiol. Australasian Studies in History and Philosophy of Science = Aust S Hist Australasian Studies in History and Philosophy of Science = Aust. S. Hist. Australasian Universities Power Engineering Conference = Austr Univ Power Eng Australasian Universities Power Engineering Conference = Austr. Univ. Power Eng. Austral Ecology = Austral Ecol Austral Ecology = Austral Ecol. Australia and New Zealand health policy = Aust New Zealand Health Policy Australia As An Asia-pacific Regional Power: Friendships in Flux? = Routl Secur Asia-pac Australia As An Asia-pacific Regional Power: Friendships in Flux? = Routl. Secur. Asia-pac. Australian Aboriginal Studies = Aust Aborig Stud Australian Aboriginal Studies = Aust. Aborig. Stud. Australian Academic & Research Libraries = Aust Acad Res Libr Australian Academic & Research Libraries = Aust. Acad. Res. Libr. Australian Academy of Technological Sciences and Engineering - Invitation Symposia = Aatse Inv Symp Australian Academy of Technological Sciences and Engineering - Invitation Symposia = Aatse. Inv. Symp. Australian Accounting Review = Aust Account Rev Australian Accounting Review = Aust. Account. Rev. Australian and New Zealand Journal of Criminology = Aust Nz J Criminol Australian and New Zealand Journal of Criminology = Aust. Nz. J. Criminol. Australian and New Zealand Journal of Family Therapy = Aust Nz J Fam Ther Australian and New Zealand Journal of Family Therapy = Aust. Nz. J. Fam. Ther. Australian and New Zealand Journal of Family Therapy = Aust N Z J Fam Ther Australian and New Zealand Journal of Family Therapy = Aust. N. Z. J. Fam. Ther. Australian and New Zealand journal of medicine = Aust N Z J Med Australian and New Zealand Journal of Medicine = Aust Nz J Med Australian and New Zealand Journal of Medicine = Aust. Nz. J. Med. Australian and New Zealand Journal of Medicine=Aust N Z J Med;; Australian and New Zealand Journal of Medicine = Aust. N. Z. J. Med. Australian and New Zealand Journal of Mental Health Nursing = Aust. N. Z. J. Ment. Health Nurs. Australian and New Zealand Journal of Obstetrics and Gynaecology = Aust. N. Z. J. Obstet. Gynaecol. Australian and New Zealand Journal of Obstetrics And Gynaecology=Aust N Z J Obstet Gynaecol;; Australian and New Zealand Journal of Obstetrics and Gynaecology. Supplement = Aust. N. Z. J. Obstet. Gynaecol. Suppl. Australian and New Zealand journal of ophthalmology = Aust N Z J Ophthalmol Australian and New Zealand Journal of Ophthalmology = Aust Nz J Ophthalmol Australian and New Zealand Journal of Ophthalmology = Aust. Nz. J. Ophthalmol. Australian and New Zealand Journal of Ophthalmology=Aust N Z J Ophthalmol;; Australian and New Zealand Journal of Ophthalmology = Aust. N. Z. J. Ophthalmol. Australian and New Zealand Journal of Psychiatry = Aust Nz J Psychiat Australian and New Zealand Journal of Psychiatry = Aust. Nz. J. Psychiat. Australian and New Zealand Journal of Psychiatry=Aust N Z J Psychiatry;; Australian and New Zealand Journal of Psychiatry = Aust. N. Z. J. Psychiatry Australian and New Zealand Journal of Public Health = Aust Nz J Publ Heal Australian and New Zealand Journal of Public Health = Aust. Nz. J. Publ. Heal. Australian and New Zealand journal of public health = Aust N Z J Public Health Australian and New Zealand Journal of Public Health=Aust N Z J Public Health;; Australian and New Zealand Journal of Public Health = Aust. N. Z. J. Public Health Australian and New Zealand Journal of Sociology = Aust Nz J Sociol Australian and New Zealand Journal of Sociology = Aust. Nz. J. Sociol. Australian and New Zealand Journal of Surgery = Aust Nz J Surg Australian and New Zealand Journal of Surgery = Aust. Nz. J. Surg. Australian and New Zealand Journal of Surgery=Aust N Z J Surg;; Australian and New Zealand Journal of Surgery = Aust. N. Z. J. Surg. Australian Archaeology = Aust Archaeol Australian Archaeology = Aust. Archaeol. Australian Archaeology = Austral Archaeol Australian Archaeology = Austral. Archaeol. Australian bulletin of labour = Aust Bull Labour Australian Bulletin of Labour=Australian Bull. Lab. Australian Bustard = Austral Nat Hist Ser Australian Bustard = Austral. Nat. Hist. Ser. Australian Civil Engineering = Aust Civ Eng Australian Civil Engineering = Aust. Civ. Eng. Australian Clinical Review = Aust. Clin. Rev. Australian clinical review / Australian Medical Association [and] the Australian Council on Hospital Standards = Aust Clin Rev Australian College of Midwives Incorporated journal = Aust Coll Midwives Inc J Australian Commodities Forecasts and Issues=Australian Commodities Forecasts Issues Australian Computer Journal = Aust Comput J Australian Computer Journal = Aust. Comput. J. Australian Computer Science Communications = Aust Comp S Australian Computer Science Communications = Aust. Comp. S. Australian Computer Science Communications = Austral. Comput. Sci. Comm. Australian Conference On Manufacturing Engineering, 1993 = Inst Eng A Australian Conference On Manufacturing Engineering, 1993 = Inst. Eng. A. Australian Critical Care = Aust Crit Care Australian Critical Care = Aust. Crit. Care Australian critical care : official journal of the Confederation of Australian Critical Care Nurses = Aust Crit Care Australian cultural history = Aust Cult Hist Australian dental journal = Aust Dent J Australian Dental Journal=Aust Dent J;; Australian Dental Journal = Aust Dent J Australian Dental Journal = Aust. Dent. J. Australian dental practice = Aust Dent Pract Australian Dental Practice = Aust. Dent. Pract. Australian economic history review = Aust Econ Hist Rev Australian Economic History Review = Aust Econ Hist Rev Australian Economic History Review = Aust. Econ. Hist. Rev. Australian Economic History Review=Australian Econ. Hist. Rev. Australian economic papers = Aust Econ Pap Australian Economic Papers = Aust Econ Pap Australian Economic Papers = Aust. Econ. Pap. Australian Economic Papers=Australian Econ. Pap. Australian Economic Review = Aust Econ Rev Australian Economic Review = Aust. Econ. Rev. Australian Economic Review=Australian Econ. Rev. Australian Educational Researcher = Aust Educ Res Australian Educational Researcher = Aust. Educ. Res. Australian Endodontic Journal = Aust Endod J Australian Endodontic Journal = Aust. Endod. J. Australian endodontic journal : the journal of the Australian Society of Endodontology Inc = Aust Endod J Australian family physician = Aust Fam Physician Australian Family Physician=Aust Fam Physician;; Australian Family Physician = Aust Fam Physician Australian Family Physician = Aust. Fam. Physician Australian Feminist Studies = Aust Feminist Stud Australian Feminist Studies = Aust. Feminist Stud. Australian Forest Research = Aust Forest Res Australian Forest Research = Aust. Forest Res. Australian Forest Research = Aust. For. Res. Australian Forestry = Aust Forestry Australian Forestry = Aust. Forestry Australian Forestry = Austral For Australian Forestry = Austral. For. Australian Gemmologist = Aust. Gemmol. Australian Geographer = Aust Geogr Australian Geographer = Aust. Geogr. Australian geographical studies = Aust Geogr Stud Australian Geographical Studies = Aust Geogr Stud Australian Geographical Studies = Aust. Geogr. Stud. Australian health review : a publication of the Australian Hospital Association = Aust Health Rev Australian Health Review = Aust Health Rev Australian Health Review = Aust. Health Rev. Australian Historical Studies = Aust Historical Stud Australian Historical Studies = Aust. Historical Stud. Australian historical studies = Aust Hist Stud Australian hospital = Aust Hosp Australian Hospital = Aust. Hosp. Australian intellectual property journal = Aust Intellect Prop J Australian Journal of Adult Learning = Aust J Adult Learn Australian Journal of Adult Learning = Aust. J. Adult Learn. Australian Journal of Advanced Nursing = Aust J Adv Nurs Australian Journal of Advanced Nursing = Aust. J. Adv. Nurs. Australian Journal of Agricultural and Resource Economics = Aust J Agr Resour Ec Australian Journal of Agricultural and Resource Economics = Aust. J. Agr. Resour. Ec. Australian Journal of Agricultural and Resource Economics=Australian J. Agr. Resource Econ. Australian Journal of Agricultural Economics = Aust J Agr Econ Australian Journal of Agricultural Economics = Aust. J. Agr. Econ. Australian Journal of Agricultural Economics=Australian J. Agr. Econ. Australian journal of agricultural research = Aust J Agric Res Australian Journal of Agricultural Research = Aust. J. Agric. Res. Australian Journal of Agricultural Research = Aust J Agr Res Australian Journal of Agricultural Research = Aust. J. Agr. Res. Australian Journal of Anthropology = Aust J Anthropol Australian Journal of Anthropology = Aust. J. Anthropol. Australian Journal of Applied Science = Aust J Appl Sci Australian Journal of Applied Science = Aust. J. Appl. Sci. Australian Journal of Basic and Applied Sciences = Aust. J. Basic Appl. Sci. Australian journal of biological sciences = Aust J Biol Sci Australian Journal of Biological Sciences = Aust J Biol Sci Australian Journal of Biological Sciences = Aust. J. Biol. Sci. Australian journal of biotechnology = Aust J Biotechnol Australian Journal of Biotechnology = Aust. J. Biotechnol. Australian Journal of Botany = Aust J Bot Australian Journal of Botany = Aust. J. Bot. Australian Journal of Chemistry = Aust J Chem Australian Journal of Chemistry = Aust. J. Chem. Australian Journal of Chinese Affairs = Aust J Chinese Aff Australian Journal of Chinese Affairs = Aust. J. Chinese Aff. Australian Journal of Crop Science = Aust J Crop Sci Australian Journal of Crop Science = Aust. J. Crop Sci. Australian Journal of Dairy Technology = Aust J Dairy Technol Australian Journal of Dairy Technology = Aust. J. Dairy Technol. Australian journal of dermatology = Aust J Dermatol Australian journal of early childhood = Aust J Early Child Australian Journal of Early Childhood = Aust J Early Child Australian Journal of Early Childhood = Aust. J. Early Child. Australian Journal of Earth Sciences = Aust J Earth Sci Australian Journal of Earth Sciences = Aust. J. Earth Sci. Australian Journal of Ecology = Aust J Ecol Australian Journal of Ecology = Aust. J. Ecol. Australian Journal of Education = Aust J Educ Australian Journal of Education = Aust. J. Educ. Australian Journal of Education in Chemistry = Aust. J. Edu. Chem. Australian Journal of Entomology = Aust J Entomol Australian Journal of Entomology = Aust. J. Entomol. Australian Journal of Experimental Agriculture = Aust J Exp Agr Australian Journal of Experimental Agriculture = Aust. J. Exp. Agr. Australian Journal of Experimental Biology and Medical Science = Aust J Exp Biol Med Australian Journal of Experimental Biology and Medical Science = Aust. J. Exp. Biol. Med. Australian Journal of Experimental Biology and Medical Science = Aust. J. Exp. Biol. Med. Sci. Australian Journal of Experimental Research = Aust. J. Exp. Agric. Australian journal of family law = Aust J Fam Law Australian Journal of Forensic Sciences = Aust J Forensic Sci Australian Journal of Forensic Sciences = Aust. J. Forensic Sci. Australian journal of French studies = Aust J Fr Stud Australian Journal of French Studies = Aust J Fr Stud Australian Journal of French Studies = Aust. J. Fr. Stud. Australian journal of geodesy, photogrammetry, and surveying = Aust J Geod Photogramm Surv Australian Journal of Grape and Wine Research = Aust J Grape Wine R Australian Journal of Grape and Wine Research = Aust. J. Grape Wine R. Australian Journal of Grape and Wine Research = Aust. J. Grape Wine Res. Australian Journal of Guidance and Counselling = Aust J Guid Couns Australian Journal of Guidance and Counselling = Aust. J. Guid. Couns. Australian Journal of Instrumentation & Control = Aust J Instrum Contr Australian Journal of Instrumentation & Control = Aust. J. Instrum. Contr. Australian Journal of Instrument Technology = Aust J Instrum Tech Australian Journal of Instrument Technology = Aust. J. Instrum. Tech. Australian Journal of International Affairs = Aust J Int Aff Australian Journal of International Affairs = Aust. J. Int. Aff. Australian Journal of Labour Economics=Australian J. Lab. Econ. Australian Journal of Linguistics = Aust J Linguist Australian Journal of Linguistics = Aust. J. Linguist. Australian Journal of Management = Aust J Manage Australian Journal of Management = Aust. J. Manage. Australian Journal of Management=Australian J. Manage. Australian Journal of Marine and Freshwater Research = Aust J Mar Fresh Res Australian Journal of Marine and Freshwater Research = Aust. J. Mar. Fresh. Res. Australian Journal of Marine & Freshwater Research = Aust. J. Mar. Freshwater Res. Australian journal of marriage & family = Aust J Marriage Fam Australian journal of midwifery : professional journal of the Australian College of Midwives Incorporated = Aust J Midwifery Australian journal of ophthalmology = Aust J Ophthalmol Australian Journal of Ophthalmology = Aust J Ophthalmol Australian Journal of Ophthalmology = Aust. J. Ophthalmol. Australian Journal of Pharmacy = Aust J Pharm Australian Journal of Pharmacy = Aust. J. Pharm. Australian Journal of Physics = Aust J Phys Australian Journal of Physics = Aust. J. Phys. Australian Journal of Physics = Austral. J. Phys. Australian Journal of Physiotherapy = Aust J Physiother Australian Journal of Physiotherapy = Aust. J. Physiother. Australian journal of plant physiology = Aust J Plant Physiol Australian Journal of Plant Physiology = Aust J Plant Physiol Australian Journal of Plant Physiology = Aust. J. Plant Physiol. Australian journal of political science = Aust J Polit Sci Australian Journal of Political Science = Aust J Polit Sci Australian Journal of Political Science = Aust. J. Polit. Sci. Australian Journal of Politics and History = Aust J Polit Hist Australian Journal of Politics and History = Aust. J. Polit. Hist. Australian Journal of Primary Health = Aust J Prim Health Australian Journal of Primary Health = Aust. J. Prim. Health Australian journal of professional and applied ethics = Aust J Prof Appl Ethics Australian journal of psychology = Aust J Psychol Australian Journal of Psychology = Aust J Psychol Australian Journal of Psychology = Aust. J. Psychol. Australian Journal of Public Administration = Aust J Publ Admin Australian Journal of Public Administration = Aust. J. Publ. Admin. Australian journal of public health = Aust J Public Health Australian Journal of Public Health = Aust J Public Health Australian Journal of Public Health = Aust. J. Public Health Australian Journal of Rural Health = Aust J Rural Health Australian Journal of Rural Health = Aust. J. Rural Health Australian journal of science and medicine in sport = Aust J Sci Med Sport Australian Journal of Science and Medicine in Sport = Aust. J. Sci. Med. Sport Australian Journal of Science and Medicine In Sport=Aust J Sci Med Sport;; Australian journal of scientific research. Ser. B: Biological sciences = Aust J Sci Res (B) Australian Journal of Scientific Research Series A-physical Sciences = Aust J Sci Res Ser A Australian Journal of Scientific Research Series A-physical Sciences = Aust. J. Sci. Res. Ser. A. Australian Journal of Scientific Research Series B-biological Sciences = Aust J Sci Res Ser B Australian Journal of Scientific Research Series B-biological Sciences = Aust. J. Sci. Res. Ser. B. Australian journal of sex, marriage & family = Aust J Sex Marriage And Fam Australian Journal of Social Issues = Aust J Soc Issues Australian Journal of Social Issues = Aust. J. Soc. Issues Australian Journal of Soil Research = Aust J Soil Res Australian Journal of Soil Research = Aust. J. Soil Res. Australian Journal of Statistics = Aust J Stat Australian Journal of Statistics = Aust. J. Stat. Australian journal of zoology = Aust J Zool Australian Journal of Zoology = Aust J Zool Australian Journal of Zoology = Aust. J. Zool. Australian journal on ageing = Aust J Ageing Australian Journal On Ageing = Aust J Ageing Australian Journal On Ageing = Aust. J. Ageing Australian Landscapes = Geol Soc Spec Publ Australian Landscapes = Geol. Soc. Spec. Publ. Australian Library Journal = Aust Libr J Australian Library Journal = Aust. Libr. J. Australian Literary Studies = Aust Lit Stud Australian Literary Studies = Aust. Lit. Stud. Australian Mathematical Society = J. Austral. Math. Soc. Ser. A Australian Mathematical Society = J. Austral. Math. Soc. Ser. B Australian Mathematical Society Lecture Series = Austral. Math. Soc. Lect. Ser. Australian Medical Record Journal = Aust. Med. Rec. J. Australian medical record journal / Medical Record Association of Australia = Aust Med Rec J Australian Meteorological and Oceanographic Journal = Aust Meteorol Ocean Australian Meteorological and Oceanographic Journal = Aust. Meteorol. Ocean. Australian Meteorological Magazine = Aust. Meteor. Mag. Australian Meteorological Magazine = Aust Meteorol Mag Australian Meteorological Magazine = Aust. Meteorol. Mag. Australian Mineral Economics: A Survey of Important Issues, Monograph 24 = Aimm Monogr Ser Australian Mineral Economics: A Survey of Important Issues, Monograph 24 = Aimm. Monogr. Ser. Australian Natural History Series = Austral Nat Hist Ser Australian Natural History Series = Austral. Nat. Hist. Ser. Australian & New Zealand Journal of Obstetrics & Gynaecology = Aust Nz J Obstet Gyn Australian & New Zealand Journal of Obstetrics & Gynaecology = Aust. Nz. J. Obstet. Gyn. Australian & New Zealand Journal of Statistics = Aust Nz J Stat Australian & New Zealand Journal of Statistics = Aust. Nz. J. Stat. Australian & New Zealand Journal of Statistics = Aust. N. Z. J. Stat. Australian Nurses' Journal = Aust. Nurses J. Australian Nursing Journal = Aust. Nurs. J. Australian nursing journal (July 1993) = Aust Nurs J Australian Occupational Therapy Journal = Aust Occup Ther J Australian Occupational Therapy Journal = Aust. Occup. Ther. J. Australian orthodontic journal = Aust Orthod J Australian Orthodontic Journal = Aust Orthod J Australian Orthodontic Journal = Aust. Orthod. J. Australian Outlook = Aust Outlook Australian Outlook = Aust. Outlook Australian paediatric journal = Aust Paediatr J Australian Paediatric Journal = Aust Paediatr J Australian Paediatric Journal = Aust. Paediatr. J. Australian People and Animals in Todays Dreamtime = Adv Com Psy Australian People and Animals in Todays Dreamtime = Adv. Com. Psy. Australian Political Lives: Chronicling Political Careers and Administrative Histories = Anzsog Monogr Australian Political Lives: Chronicling Political Careers and Administrative Histories = Anzsog. Monogr. Australian Prescriber = Aust Prescr Australian Prescriber = Aust. Prescr. Australian Prosthodontic Journal = Aust. Prosthodont. J. Australian prosthodontic journal / Australian Prosthodontic Society = Aust Prosthodont J Australian Prosthodontic Society bulletin = Aust Prosthodont Soc Bull Australian Prosthodontic Society Bulletin = Aust. Prosthodont. Soc. Bull. Australian psychologist = Aust Psychol Australian Psychologist = Aust Psychol Australian Psychologist = Aust. Psychol. Australian Quarterly = Aust Quart Australian Quarterly = Aust. Quart. Australian Social Work = Aust Soc Work Australian Social Work = Aust. Soc. Work Australian society = Aust Soc Australian Society of Prosthodontists Bulletin = Aust. Soc. Prosthodontists Bull. Australian Society Of Prosthodontists Bulletin = Aust Soc Prosthodontists Bull Australian Software Engineering Conference = Ieee Aus Soft Engr Australian Software Engineering Conference = Ieee. Aus. Soft. Engr. Australian Systematic Botany = Aust Syst Bot Australian Systematic Botany = Aust. Syst. Bot. Australian Tax Forum=Australian Tax Forum Australian Teacher of The Deaf = Aust Teach Deaf Australian Teacher of The Deaf = Aust. Teach. Deaf Australian Telecommunication Research = Aust Telecommun Res Australian Telecommunication Research = Aust. Telecommun. Res. Australian Tree Species Research in China = Aciar Proc Australian Tree Species Research in China = Aciar. Proc. Australian veterinary journal = Aust Vet J Australian Veterinary Journal=Aust Vet J;; Australian Veterinary Journal = Aust Vet J Australian Veterinary Journal = Aust. Vet. J. Australian Veterinary Practitioner = Aust Vet Pract Australian Veterinary Practitioner = Aust. Vet. Pract. Australian Water Resources Council Technical Paper = Aust Water Resour Co Australian Water Resources Council Technical Paper = Aust. Water Resour. Co. Australian Wildlife Research = Aust Wildlife Res Australian Wildlife Research = Aust. Wildlife Res. Australia Pacific Extension Conference, 1993, Vols 1-3 = Proc Austr Pacif Ext Australia Pacific Extension Conference, 1993, Vols 1-3 = Proc. Austr. Pacif. Ext. Australia's Arc of Instability: The Political and Cultural Dynamics of Regional Security = Geojournal Lib Australia's Arc of Instability: The Political and Cultural Dynamics of Regional Security = Geojournal. Lib. Australias Many Voices: Australian English-the National Language = Contrib Sociol Lang Australias Many Voices: Australian English-the National Language = Contrib. Sociol. Lang. Australia's Many Voices: Ethnic Englishes, Indigenous and Migrant Languages - Policy and Education = Contrib Sociol Lang Australia's Many Voices: Ethnic Englishes, Indigenous and Migrant Languages - Policy and Education = Contrib. Sociol. Lang. Australias Renewable Resources : Sustainability and Global Change = Brr Proc Australias Renewable Resources : Sustainability and Global Change = Brr. Proc. Australia Under Construction: Nation-building: Past, Present and Future = Anzsog Monogr Australia Under Construction: Nation-building: Past, Present and Future = Anzsog. Monogr. Austria 1945-95 = Asgp Dart P Austria 1945-95 = Asgp. Dart. P. Austriaca = Austriaca Austria in The Thirties : Culture and Politics = St Aust Lit Austria in The Thirties : Culture and Politics = St. Aust. Lit. Austrian Contribution to Analytic Philosophy = Lond Stud Hist Philo Austrian Contribution to Analytic Philosophy = Lond. Stud. Hist. Philo. Austrian History Yearbook = Austrian Hist Yearbk Austrian History Yearbook = Austrian Hist. Yearbk. Austrian History Yearbook Series = Austrian Hist Yearb Austrian History Yearbook Series = Austrian Hist. Yearb. Austrian History Yearbook, Vol 41 = Austrian Hist Yearb Austrian History Yearbook, Vol 41 = Austrian Hist. Yearb. Austrian History Yearbook, Vol 41 = Austrian Hist Yearbk Austrian History Yearbook, Vol 41 = Austrian Hist. Yearbk. Austrian Institute for International Affairs Series = Austrian Inst Int Af Austrian Institute for International Affairs Series = Austrian Inst. Int. Af. Austrian Journal of Earth Sciences = Austrian J Earth Sc Austrian Journal of Earth Sciences = Austrian J. Earth Sc. Austrian Journal of Earth Sciences = Austrian J Earth Sci Austrian Journal of Earth Sciences = Austrian J. Earth Sci. Austrian Journal of Forest Science = Austrian J For Sci Austrian Journal of Forest Science = Austrian J. For. Sci. Austrian Writers and The Anschluss : Understanding The Past - Overcoming The Past = St Aust Lit Austrian Writers and The Anschluss : Understanding The Past - Overcoming The Past = St. Aust. Lit. Auswirkungen Einer Handelsliberalisierung Auf Die Deutsche Und Europaische Landwirtschaft = Landbauforsch-vti Ag Auswirkungen Einer Handelsliberalisierung Auf Die Deutsche Und Europaische Landwirtschaft = Landbauforsch-vti. Ag. Auswirkungen Eines Eu-beitritts Der Turkei = Landbauforsch-vti Ag Auswirkungen Eines Eu-beitritts Der Turkei = Landbauforsch-vti. Ag. Aut Aut = Aut Aut Authentic Professional Learning: Making A Difference Through Learning At Work = Prof Pract-based Lea Authentic Professional Learning: Making A Difference Through Learning At Work = Prof. Pract-based. Lea. ## author: Alistair Auffret Authoritarianism, Democracy, and Adjustment = Sem P Scand Authoritarianism, Democracy, and Adjustment = Sem. P. Scand. Authoritarianism in Latin America Since Independence = Contr Lat A Authoritarianism in Latin America Since Independence = Contr. Lat. A. Authoritative Communities: The Scientific Case for Nurturing The Whole Child = Search Inst Ser Dev Authoritative Communities: The Scientific Case for Nurturing The Whole Child = Search. Inst. Ser. Dev. Authoritative Communities: The Scientific Case for Nurturing The Whole Child = Search I Ser Dev Att Authoritative Communities: The Scientific Case for Nurturing The Whole Child = Search. I. Ser. Dev. Att. Authority in Contention = Res Soc Mov Confl Ch Authority in Contention = Res. Soc. Mov. Confl. Ch. Authority Matters: Rethinking The Theory and Practice of Authorship = Dqr Stud Lit Authority Matters: Rethinking The Theory and Practice of Authorship = Dqr. Stud. Lit. Authority, Privacy and Public Order in Islam = Orient Lovan Anal Authority, Privacy and Public Order in Islam = Orient. Lovan. Anal. ## author: José Ribeiro ## Author: Ronggui Huang Authorship and Publicity Before Print = Middle Ages Ser Authorship and Publicity Before Print = Middle. Ages. Ser. Autism and Developmental Disabilities: Current Practices and Issues = Adv Spec Educ Autism and Developmental Disabilities: Current Practices and Issues = Adv. Spec. Educ. Autism and Representation = Routl Res Cult Media Autism and Representation = Routl. Res. Cult. Media. Autism = Autism Autism: Current Theories and Evidence = Curr Clin Neurol Autism: Current Theories and Evidence = Curr. Clin. Neurol. Autism: Neural Basis and Treatment Possibilities = Novart Fdn Symp Autism: Neural Basis and Treatment Possibilities = Novart. Fdn. Symp. Autism Research = Autism Res Autism Research = Autism Res. Autism : the international journal of research and practice = Autism Autoantigens and Autoantibodies: Diagnostic Tools and Clues to Understanding Autoimmunity = Aut Aut Autoantibod Autoantigens and Autoantibodies: Diagnostic Tools and Clues to Understanding Autoimmunity = Aut. Aut. Autoantibod. Autobiography As Philosophy: The Philosophical Uses of Self-presentation = Routl Adv Hist Philo Autobiography As Philosophy: The Philosophical Uses of Self-presentation = Routl. Adv. Hist. Philo. Auto/biography in Canada: Critical Directions = Life Writ Ser Auto/biography in Canada: Critical Directions = Life. Writ. Ser. Autobiography, Travel and Postnational Identity: Narratives of Selfhood in Gandhi, Nehru and Iqbal = Camb Imp Post-col St Autobiography, Travel and Postnational Identity: Narratives of Selfhood in Gandhi, Nehru and Iqbal = Camb. Imp. Post-col. St. Autocrine and Paracrine Mechanisms in Reproductive Endocrinology = Reprod Biol Autocrine and Paracrine Mechanisms in Reproductive Endocrinology = Reprod. Biol. Autogenous Deformation of Concrete = Amer Conc I Autogenous Deformation of Concrete = Amer. Conc. I. Autoimmune Diseases and Treatment: Organ-specific and Systemic Disorders = Ann Ny Acad Sci Autoimmune Diseases and Treatment: Organ-specific and Systemic Disorders = Ann. Ny. Acad. Sci. Autoimmune Diseases in Endocrinology = Contemp Endocrinol S Autoimmune Diseases in Endocrinology = Contemp. Endocrinol. S. Autoimmune Diseases in Pediatric Gastroenterology = Falk Symp Autoimmune Diseases in Pediatric Gastroenterology = Falk. Symp. Autoimmune Liver Disease = Falk Symp Autoimmune Liver Disease = Falk. Symp. Autoimmunity, Autoantigens, Autoantibodies = Aut Aut Autoantibod Autoimmunity, Autoantigens, Autoantibodies = Aut. Aut. Autoantibod. Autoimmunity = Autoimmunity Autoimmunity: Concepts and Diagnosis At The Cutting Edge = Ann Ny Acad Sci Autoimmunity: Concepts and Diagnosis At The Cutting Edge = Ann. Ny. Acad. Sci. Autoimmunity: Experimental Aspects = Nato Adv Sci Inst Se Autoimmunity: Experimental Aspects = Nato. Adv. Sci. Inst. Se. Autoimmunity, Part A: Basic Principles and New Diagnostic Tools = Ann Ny Acad Sci Autoimmunity, Part A: Basic Principles and New Diagnostic Tools = Ann. Ny. Acad. Sci. Autoimmunity, Pt B: Novel Applications of Basic Research = Ann Ny Acad Sci Autoimmunity, Pt B: Novel Applications of Basic Research = Ann. Ny. Acad. Sci. Autoimmunity, Pt C = Ann Ny Acad Sci Autoimmunity, Pt C = Ann. Ny. Acad. Sci. Autoimmunity, Pt D = Ann Ny Acad Sci Autoimmunity, Pt D = Ann. Ny. Acad. Sci. Autoimmunity reviews = Autoimmun Rev Autoimmunity Reviews = Autoimmun Rev Autoimmunity Reviews = Autoimmun. Rev. Autoimmunity (Yverdon-Les-Bains=Autoimmunity;; Automata for Branching and Layered Temporal Structures = Lect Notes Artif Int Automata for Branching and Layered Temporal Structures = Lect. Notes. Artif. Int. Automata Implementation = Lect Notes Comput Sc Automata Implementation = Lect. Notes. Comput. Sc. Automata, Langages and Programming, Pt 2 = Lect Notes Comput Sc Automata, Langages and Programming, Pt 2 = Lect. Notes. Comput. Sc. Automata Languages and Programming = Lect Notes Comput Sc Automata Languages and Programming = Lect. Notes. Comput. Sc. Automata, Languages and Programming = Lect Notes Comput Sc Automata, Languages and Programming = Lect. Notes. Comput. Sc. Automata, Languages and Programming / = Lect Notes Comput Sc Automata, Languages and Programming / = Lect. Notes. Comput. Sc. Automata, Languages, and Programming // = Lect Notes Comput Sc Automata, Languages, and Programming // = Lect. Notes. Comput. Sc. Automata Languages and Programming, Proceeding = Lect Notes Comput Sc Automata Languages and Programming, Proceeding = Lect. Notes. Comput. Sc. Automata , Languages and Programming, Proceedings = Lect Notes Comput Sc Automata , Languages and Programming, Proceedings = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Proceedings = Lect Notes Comput Sc Automata, Languages and Programming, Proceedings = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt 1 = Lect Notes Comput Sc Automata, Languages and Programming, Pt 1 = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt 1, Proceedings = Lect Notes Comput Sc Automata, Languages and Programming, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt 2 = Lect Notes Comput Sc Automata, Languages and Programming, Pt 2 = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt 2, Proceedings = Lect Notes Comput Sc Automata, Languages and Programming, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt Ii = Lect Notes Comput Sc Automata, Languages and Programming, Pt Ii = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt Ii, Proceedings = Lect Notes Comput Sc Automata, Languages and Programming, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Automata, Languages and Programming, Pt I = Lect Notes Comput Sc Automata, Languages and Programming, Pt I = Lect. Notes. Comput. Sc. Automata, Logics, and Infinite Games: A Guide to Current Research = Lect Notes Comput Sc Automata, Logics, and Infinite Games: A Guide to Current Research = Lect. Notes. Comput. Sc. Automated 3d and 2d Vision = P Soc Photo-opt Ins Automated 3d and 2d Vision = P. Soc. Photo-opt. Ins. Automated Agriculture for The 21st Century = Asae Publ Automated Agriculture for The 21st Century = Asae. Publ. Automated Deduction - Cade-11 = Lect Notes Artif Int Automated Deduction - Cade-11 = Lect. Notes. Artif. Int. Automated Deduction - Cade-14 = Lect Notes Artif Int Automated Deduction - Cade-14 = Lect. Notes. Artif. Int. Automated Deduction - Cade-17 = Lect Notes Artif Int Automated Deduction - Cade-17 = Lect. Notes. Artif. Int. Automated Deduction - Cade-19, Proceedings = Lect Notes Artif Int Automated Deduction - Cade-19, Proceedings = Lect. Notes. Artif. Int. Automated Deduction - Cade-20, Proceedings = Lect Notes Artif Int Automated Deduction - Cade-20, Proceedings = Lect. Notes. Artif. Int. Automated Deduction - Cade-21, Proceedings = Lect Notes Artif Int Automated Deduction - Cade-21, Proceedings = Lect. Notes. Artif. Int. Automated Deduction - Cade-22 = Lect Notes Artif Int Automated Deduction - Cade-22 = Lect. Notes. Artif. Int. Automated Deduction in Classical and Non-classical Logics = Lect Notes Artif Int Automated Deduction in Classical and Non-classical Logics = Lect. Notes. Artif. Int. Automated Deduction in Geometry = Lect Notes Artif Int Automated Deduction in Geometry = Lect. Notes. Artif. Int. Automated Deduction in Geometry, Proceedings = Lect Notes Artif Int Automated Deduction in Geometry, Proceedings = Lect. Notes. Artif. Int. Automated Geo-spatial Image and Data Exploitation = P Soc Photo-opt Ins Automated Geo-spatial Image and Data Exploitation = P. Soc. Photo-opt. Ins. Automated Inspection and High-speed Vision Architectures Iii = P Soc Photo-opt Ins Automated Inspection and High-speed Vision Architectures Iii = P. Soc. Photo-opt. Ins. Automated Multi-camera Surveillance: Algorithms and Practice = Int Ser Video Comput Automated Multi-camera Surveillance: Algorithms and Practice = Int. Ser. Video. Comput. Automated Nanohandling By Microrobots = Springer Ser Adv Man Automated Nanohandling By Microrobots = Springer. Ser. Adv. Man. Automated Optical Inspection for Industry = P Soc Photo-opt Ins Automated Optical Inspection for Industry = P. Soc. Photo-opt. Ins. Automated Optical Inspection for Industry: Theory, Technology, and Applications Ii = P Soc Photo-opt Ins Automated Optical Inspection for Industry: Theory, Technology, and Applications Ii = P. Soc. Photo-opt. Ins. Automated Reasoning for Security Protocol Analysis and Issues in The Theory of Security = Lect Notes Comput Sc Automated Reasoning for Security Protocol Analysis and Issues in The Theory of Security = Lect. Notes. Comput. Sc. Automated Reasoning = Ifip Trans A Automated Reasoning = Ifip. Trans. A. Automated Reasoning = Lect Notes Artif Int Automated Reasoning = Lect. Notes. Artif. Int. Automated Reasoning, Proceedings = Lect Notes Artif Int Automated Reasoning, Proceedings = Lect. Notes. Artif. Int. Automated Reasoning Series = Automat. Reason. Ser. Automated Reasoning With Analytic Tableaux and Related Methods = Lect Notes Artif Int Automated Reasoning With Analytic Tableaux and Related Methods = Lect. Notes. Artif. Int. Automated Reasoning With Analytic Tableaux and Related Methods, Proceedings = Lect Notes Artif Int Automated Reasoning With Analytic Tableaux and Related Methods, Proceedings = Lect. Notes. Artif. Int. Automated Reasoning With Analytic Tableaux and Related Methods, Proceedings = Lect Notes Comput Sc Automated Reasoning With Analytic Tableaux and Related Methods, Proceedings = Lect. Notes. Comput. Sc. Automated Software Engineering = Automat Softw Eng Automated Software Engineering = Automat. Softw. Eng. Automated Synthetic Methods for Speciality Chemicals = Roy Soc Ch Automated Synthetic Methods for Speciality Chemicals = Roy. Soc. Ch. Automated Systems Based On Human Skill (and Intelligence) = Ifac Symp Series Automated Systems Based On Human Skill (and Intelligence) = Ifac. Symp. Series. Automated Taxon Identification in Systematics: Theory, Approaches and Applications = Syst Assoc Spec Vol Automated Taxon Identification in Systematics: Theory, Approaches and Applications = Syst. Assoc. Spec. Vol. Automated Technology for Verification and Analysis = Lect Notes Comput Sc Automated Technology for Verification and Analysis = Lect. Notes. Comput. Sc. Automated Technology for Verification and Analysis, Proceedings = Lect Notes Comput Sc Automated Technology for Verification and Analysis, Proceedings = Lect. Notes. Comput. Sc. Automatica = Automatica Automatica = Automatica J. IFAC Automatic Control and Computer Sciences = Autom Control Comp+ Automatic Control and Computer Sciences = Autom. Control Comp+.+ Automatic Control and Computer Sciences = Autom Control Comp S Automatic Control and Computer Sciences = Autom. Control Comp. S. Automatic Control and Computer Sciences = Autom. Control Comput. Sci. Automatic Control in Aerospace 2001 = Ifac Symp Series Automatic Control in Aerospace 2001 = Ifac. Symp. Series. Automatic Control of Food and Biological Processes = Dev Food Sci Automatic Control of Food and Biological Processes = Dev. Food Sci. Automatic Differentiation of Algorithms : Theory, Implementation, and Application = Siam Proc S Automatic Differentiation of Algorithms : Theory, Implementation, and Application = Siam. Proc. S. Automatic Digital Document Processing and Management: Problems, Algorithms and Techniques = Adv Pattern Recognit Automatic Digital Document Processing and Management: Problems, Algorithms and Techniques = Adv. Pattern. Recognit. Automatic Documentation and Mathematical Linguistics = Autom. Doc. Math. Ling. Automatic Inspection and Novel Instrumentation = P Soc Photo-opt Ins Automatic Inspection and Novel Instrumentation = P. Soc. Photo-opt. Ins. Automaticity and Control in Language Processing = Adv Behav Brain Sci Automaticity and Control in Language Processing = Adv. Behav. Brain. Sci. Automatic Object Recognition Iii = P Soc Photo-opt Ins Automatic Object Recognition Iii = P. Soc. Photo-opt. Ins. Automatic Object Recognition Ii = P Soc Photo-opt Ins Automatic Object Recognition Ii = P. Soc. Photo-opt. Ins. Automatic Object Recognition Iv = P Soc Photo-opt Ins Automatic Object Recognition Iv = P. Soc. Photo-opt. Ins. Automatic Object Recognition = P Soc Photo-opt Ins Automatic Object Recognition = P. Soc. Photo-opt. Ins. Automatic Object Recognition Vi = P Soc Photo-opt Ins Automatic Object Recognition Vi = P. Soc. Photo-opt. Ins. Automatic Object Recognition V = P Soc Photo-opt Ins Automatic Object Recognition V = P. Soc. Photo-opt. Ins. Automatic Speech Recognition On Mobile Devices and Over Communication Networks = Adv Pattern Recognit Automatic Speech Recognition On Mobile Devices and Over Communication Networks = Adv. Pattern. Recognit. Automatic Systems for The Identification and Inspection of Humans = P Soc Photo-opt Ins Automatic Systems for The Identification and Inspection of Humans = P. Soc. Photo-opt. Ins. Automatic Target Recognition Ix = Proc Spie Automatic Target Recognition Ix = Proc. Spie. Automatic Target Recognition Ix = P Soc Photo-opt Ins Automatic Target Recognition Ix = P. Soc. Photo-opt. Ins. Automatic Target Recognition Viii = P Soc Photo-opt Ins Automatic Target Recognition Viii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Vii = P Soc Photo-opt Ins Automatic Target Recognition Vii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xiii = Proc Spie Automatic Target Recognition Xiii = Proc. Spie. Automatic Target Recognition Xiii = P Soc Photo-opt Ins Automatic Target Recognition Xiii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xii = Proc Spie Automatic Target Recognition Xii = Proc. Spie. Automatic Target Recognition Xii = P Soc Photo-opt Ins Automatic Target Recognition Xii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xi = Proc Spie Automatic Target Recognition Xi = Proc. Spie. Automatic Target Recognition Xi = P Soc Photo-opt Ins Automatic Target Recognition Xi = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xiv = Proc Spie Automatic Target Recognition Xiv = Proc. Spie. Automatic Target Recognition Xiv = P Soc Photo-opt Ins Automatic Target Recognition Xiv = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xix = P Soc Photo-opt Ins Automatic Target Recognition Xix = P. Soc. Photo-opt. Ins. Automatic Target Recognition X = Proc Spie Automatic Target Recognition X = Proc. Spie. Automatic Target Recognition X = P Soc Photo-opt Ins Automatic Target Recognition X = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xviii = Proc Spie Automatic Target Recognition Xviii = Proc. Spie. Automatic Target Recognition Xviii = P Soc Photo-opt Ins Automatic Target Recognition Xviii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xvii = Proc Spie Automatic Target Recognition Xvii = Proc. Spie. Automatic Target Recognition Xvii = P Soc Photo-opt Ins Automatic Target Recognition Xvii = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xvi = P Soc Photo-opt Ins Automatic Target Recognition Xvi = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xx; Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxiv; and Optical Pattern Recognition Xxi = Proc Spie Automatic Target Recognition Xx; Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxiv; and Optical Pattern Recognition Xxi = Proc. Spie. Automatic Target Recognition Xx; Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxiv; and Optical Pattern Recognition Xxi = P Soc Photo-opt Ins Automatic Target Recognition Xx; Acquisition, Tracking, Pointing, and Laser Systems Technologies Xxiv; and Optical Pattern Recognition Xxi = P. Soc. Photo-opt. Ins. Automatic Target Recognition Xxi = P Soc Photo-opt Ins Automatic Target Recognition Xxi = P. Soc. Photo-opt. Ins. Automatic Target Recogniton Xv = P Soc Photo-opt Ins Automatic Target Recogniton Xv = P. Soc. Photo-opt. Ins. Automatic Verification Methods for Finite State Systems = Lect Notes Comput Sc Automatic Verification Methods for Finite State Systems = Lect. Notes. Comput. Sc. Automatic Welding Ussr = Automat Weld+ Automatic Welding Ussr = Automat. Weld+.+ Automatika = Automatika Automating The Design of Data Mining Algorithms: An Evolutionary Computation Approach = Nat Comput Ser Automating The Design of Data Mining Algorithms: An Evolutionary Computation Approach = Nat. Comput. Ser. Automation 2009 = Vdi Bericht Automation 2009 = Vdi. Bericht. Automation and Control Engineering Series = Autom Control Eng Se Automation and Control Engineering Series = Autom. Control Eng. Se. Automation and Remote Control = Automat Rem Contr+ Automation and Remote Control = Automat. Rem. Contr+.+ Automation and Remote Control = Automat. Remote Control Automation and Remote Control = Autom. Remote Control Automation Computers Applied Mathematics = Automat. Comput. Appl. Math. Automation in Blood Transfusion = Dev Hematol Automation in Blood Transfusion = Dev. Hematol. Automation in Construction = Automat Constr Automation in Construction = Automat. Constr. Automation in Construction = Autom. Constr. Automation in Mining, Mineral and Metal Processing 1992 = Ifac Symp Series Automation in Mining, Mineral and Metal Processing 1992 = Ifac. Symp. Series. Automation of Mechanical Testing = Am Soc Test Mater Automation of Mechanical Testing = Am. Soc. Test. Mater. Automatisme = Automatisme Automobile Insurance: Road Safety, New Drivers, Risks, Insurance Fraud and Regulation = Ctr Res Transp 25th Automobile Insurance: Road Safety, New Drivers, Risks, Insurance Fraud and Regulation = Ctr. Res. Transp. 25th. Automobile Quarterly = Automob Quart Automobile Quarterly = Automob. Quart. Automobiles: Performance, Safety Assessment, and Energy = Transp Issues Polici Automobiles: Performance, Safety Assessment, and Energy = Transp. Issues. Polici. Automorphic Forms and L-functions I. Global Aspects = Contemp Math Automorphic Forms and L-functions I. Global Aspects = Contemp. Math. Automorphic Forms and L-functions Ii. Local Aspects = Contemp Math Automorphic Forms and L-functions Ii. Local Aspects = Contemp. Math. Automorphic Forms and Lie Superalgebras = Algebra Appl Automorphic Forms and Lie Superalgebras = Algebra. Appl. Automotive Body, Volume I: Components Design = Mech Eng Ser Automotive Body, Volume I: Components Design = Mech. Eng. Ser. Automotive Body, Volume Ii: System Design = Mech Eng Ser Automotive Body, Volume Ii: System Design = Mech. Eng. Ser. Automotive Chassis, Vol 1: Components Design = Mech Eng Ser Automotive Chassis, Vol 1: Components Design = Mech. Eng. Ser. Automotive Chassis, Vol 2: System Design = Mech Eng Ser Automotive Chassis, Vol 2: System Design = Mech. Eng. Ser. Automotive Electronics - Autotech'97 = Imeche Sem Automotive Electronics - Autotech'97 = Imeche. Sem. Automotive Electronics = Proc Inst Mech Eng S Automotive Electronics = Proc. Inst. Mech. Eng. S. Automotive Embedded Systems Handbook = Ind Inform Technol Automotive Embedded Systems Handbook = Ind. Inform. Technol. Automotive Engineer = Automot Eng-uk Automotive Engineer = Automot. Eng-uk. Automotive Engineering = Automot Eng Automotive Engineering = Automot. Eng. Automotive Engineering International = Automot Eng Int Automotive Engineering International = Automot. Eng. Int. Automotive Engineering: Lightweight, Functional, and Novel Materials = Ser Mater Sci Eng Automotive Engineering: Lightweight, Functional, and Novel Materials = Ser. Mater. Sci. Eng. Automotive Engines and Powertrains - Autotech '97 = Imeche Sem Automotive Engines and Powertrains - Autotech '97 = Imeche. Sem. Automotive Environmental Impact and Safety - Autotech '97 = Imeche Sem Automotive Environmental Impact and Safety - Autotech '97 = Imeche. Sem. Automotive Fuels for The 21st Century = Imeche Sem Automotive Fuels for The 21st Century = Imeche. Sem. Automotive Industries = Automot Ind Automotive Industries = Automot. Ind. Automotive Industry: Technical Challenges, Design Issues and Global Economic Crisis = Transp Issues Polici Automotive Industry: Technical Challenges, Design Issues and Global Economic Crisis = Transp. Issues Polici. Automotive Lubricant Testing and Additive Development = Am Soc Test Mater Automotive Lubricant Testing and Additive Development = Am. Soc. Test. Mater. Automotive Manufacturing - Autotech '97 = Imeche Sem Automotive Manufacturing - Autotech '97 = Imeche. Sem. Automotive Manufacturing = Imeche Sem Automotive Manufacturing = Imeche. Sem. Automotive Materials Technolog - Autotech '97 = Imeche Sem Automotive Materials Technolog - Autotech '97 = Imeche. Sem. Automotive Mechatronics: Operational and Practical Issues, Vol 1 = Intel Syst Contr Aut Automotive Mechatronics: Operational and Practical Issues, Vol 1 = Intel. Syst. Contr. Aut. Automotive Mechatronics: Operational and Practical Issues, Vol Ii = Intel Syst Contr Aut Automotive Mechatronics: Operational and Practical Issues, Vol Ii = Intel. Syst. Contr. Aut. Automotive Modelling and Nvh = Imeche Sem Automotive Modelling and Nvh = Imeche. Sem. Automotive Model Predictive Control: Models, Methods and Applications = Lect Notes Contr Inf Automotive Model Predictive Control: Models, Methods and Applications = Lect. Notes. Contr. Inf. Automotive Passenger Safety = Imeche Sem Automotive Passenger Safety = Imeche. Sem. Automotive Plastics = Automot Plast Automotive Plastics = Automot. Plast. Automotive Powertrains = Imeche Sem Automotive Powertrains = Imeche. Sem. Automotive Production Systems and Standardisation : From Ford to The Case of Mercedes-benz = Contrib Manag Sci Automotive Production Systems and Standardisation : From Ford to The Case of Mercedes-benz = Contrib. Manag. Sci. Automotive Refinement = Imeche Sem Automotive Refinement = Imeche. Sem. Automotive Security = Vdi Bericht Automotive Security = Vdi. Bericht. Automotive Software-connected Services in Mobile Networks = Lect Notes Comput Sc Automotive Software-connected Services in Mobile Networks = Lect. Notes. Comput. Sc. Automotive Systems, Sensors, and Signalling = Imeche Sem Automotive Systems, Sensors, and Signalling = Imeche. Sem. Automotive Vehicle Technologies - Autotech '97 = Imeche Sem Automotive Vehicle Technologies - Autotech '97 = Imeche. Sem. Autonkuljettajan Liikenneturvallisuustestin Kehittaminen = Vtt Res Notes Autonkuljettajan Liikenneturvallisuustestin Kehittaminen = Vtt. Res. Notes. Autonome Produktionszellen = Vdi-buch Autonome Produktionszellen = Vdi-buch. Autonomic and Autacoid Pharmacology = Auton. Autacoid Pharmacol. Autonomic and Trusted Computing = Lect Notes Comput Sc Autonomic and Trusted Computing = Lect. Notes. Comput. Sc. Autonomic and Trusted Computing, Proceedings = Lect Notes Comput Sc Autonomic and Trusted Computing, Proceedings = Lect. Notes. Comput. Sc. Autonomic & autacoid pharmacology = Auton Autacoid Pharmacol Autonomic & Autacoid Pharmacology = Auton. Autacoid Pharmacol. Autonomic Communication = Lect Notes Comput Sc Autonomic Communication = Lect. Notes. Comput. Sc. Autonomic Dysfunction After Spinal Cord Injury = Prog Brain Res Autonomic Dysfunction After Spinal Cord Injury = Prog. Brain. Res. Autonomic Management of Mobile Multimedia Services, Proceedings = Lect Notes Artif Int Autonomic Management of Mobile Multimedia Services, Proceedings = Lect. Notes. Artif. Int. Autonomic Networking = Lect Notes Comput Sc Autonomic Networking = Lect. Notes. Comput. Sc. Autonomic Neuroscience = Auton. Neurosci. Autonomic neuroscience : basic & clinical = Auton Neurosci Autonomic Neuroscience-basic & Clinical = Auton Neurosci-basic Autonomic Neuroscience-basic & Clinical = Auton. Neurosci-basic. Autonomic Principles of Ip Operations and Management, Proceedings = Lect Notes Comput Sc Autonomic Principles of Ip Operations and Management, Proceedings = Lect. Notes. Comput. Sc. Autonomics Development: A Domain-specific Aspect Language Approach = Auton Syst Autonomics Development: A Domain-specific Aspect Language Approach = Auton. Syst. Autonomic Systems = Auton Syst Autonomic Systems = Auton. Syst. Autonomous Agents and Multi-agent Systems = Auton Agent Multi-ag Autonomous Agents and Multi-agent Systems = Auton. Agent. Multi-ag. Autonomous agents and multi-agent systems = Auton Agent Multi Agent Syst Autonomous and Autonomic Systems: With Applications to Nasa Intelligent Spacecraft Operations and Exploration Systems = Nasa Monogr Syst Sof Autonomous and Autonomic Systems: With Applications to Nasa Intelligent Spacecraft Operations and Exploration Systems = Nasa Monogr. Syst. Sof. Autonomous Dynamic Reconfiguation in Mult-agent Systems = Lect Notes Artif Int Autonomous Dynamic Reconfiguation in Mult-agent Systems = Lect. Notes. Artif. Int. Autonomous Dynamic Reconfiguration in Multi-agent Systems = Lect Notes Artif Int Autonomous Dynamic Reconfiguration in Multi-agent Systems = Lect. Notes. Artif. Int. Autonomous Intelligent Systems: Agents and Data Mining, Proceedings = Lect Notes Comput Sc Autonomous Intelligent Systems: Agents and Data Mining, Proceedings = Lect. Notes. Comput. Sc. Autonomous Robotic Systems = Stud Fuzz Soft Comp Autonomous Robotic Systems = Stud. Fuzz. Soft. Comp. Autonomous Robots and Agents = Stud Comp Intell Autonomous Robots and Agents = Stud. Comp. Intell. Autonomous Robots and Agents = Stud Comput Intell Autonomous Robots and Agents = Stud. Comput. Intell. Autonomous Robots = Auton Robot Autonomous Robots = Auton. Robot. Autonomous robots = Auton Robots Autonomy and Human Rights in Health Care: An International Perspective = Int Libr Eth Law New Autonomy and Human Rights in Health Care: An International Perspective = Int. Libr. Eth. Law. New. Autonomy and Judaism = Suny Jew Ph Autonomy and Judaism = Suny. Jew. Ph. Autonomy, Consent and The Law = Biomed Law Ethics Li Autonomy, Consent and The Law = Biomed. Law Ethics. Li. Autonomy: in The Law = Ius Gentium Autonomy: in The Law = Ius. Gentium. Autonomy: in The Law = Ius Gentium-comp Per Autonomy: in The Law = Ius. Gentium-comp. Per. Autonomy in Xinjiang: Han Nationalist Imperatives and Uyghur Discontent = Pol Stud Autonomy in Xinjiang: Han Nationalist Imperatives and Uyghur Discontent = Pol. Stud. Autophagy = Autophagy Autophagy in Infection and Immunity = Curr Top Microbiol Autophagy in Infection and Immunity = Curr. Top. Microbiol. Autophagy: Lower Eukaryotes and Non-mammalian Systems, Pt A = Method Enzymol Autophagy: Lower Eukaryotes and Non-mammalian Systems, Pt A = Method. Enzymol. Autopoiesis in Organization Theory and Practice = Adv Ser Manag Autopoiesis in Organization Theory and Practice = Adv. Ser. Manag. Autopsia: Self, Death, and God After Kierkegaard and Derrida = Kierke Stud Monogr S Autopsia: Self, Death, and God After Kierkegaard and Derrida = Kierke. Stud. Monogr. S. Autoren Und Redaktoren Als Editoren = Beih Editio Autoren Und Redaktoren Als Editoren = Beih. Editio. Autosomal Dominant Polycystic Kidney Disease = Contrib Nephrol Autosomal Dominant Polycystic Kidney Disease = Contrib. Nephrol. Autotestcon 2005 = Ieee Autotestcon Autotestcon 2005 = Ieee. Autotestcon Auxiliaire = Auxiliaire Aux Marges D'al-andalus, Vol 1 = Suom Tiedeakat Toim Aux Marges D'al-andalus, Vol 1 = Suom. Tiedeakat. Toim. Avances en odontoestomatologia = Av Odontoestomatol Avances en Odontoestomatologia = Av. Odontoestomatol. Avances en periodoncia = Av Periodoncia Avances en Periodoncia = Av. Periodoncia Avances en psicologia clinica latinoamericana = Av Piscol Clin Latinonot Avances en Quimica = Av. Quim. Avant-garde Critical Studies = Avant-garde Crit Stu Avant-garde Critical Studies = Avant-garde Crit. Stu. Avant Garde Critical Studies = Avant Garde Crit Stu Avant Garde Critical Studies = Avant Garde Crit. Stu. Avant-garde Film = Avant-garde Crit Stu Avant-garde Film = Avant-garde Crit. Stu. Avant-garde/neo-avant-garde = Avant Garde Crit Stu Avant-garde/neo-avant-garde = Avant. Garde. Crit. Stu. Avant-garde Performance and Material Exchange: Vectors of The Radical = Perform Interv Avant-garde Performance and Material Exchange: Vectors of The Radical = Perform. Interv. Avant Scene Ballet Danse = Avant Scene Ballet-d Avant Scene Ballet Danse = Avant Scene Ballet-d. Avant Scene Cinema = Avant Scene Cinema Avant Scene Opera = Avant Scene Opera Avant Scene Theatre = Avant Scene Theatre Avant Series = Avant Ser Avant Series = Avant Ser. Av Communication Review = Av Commun Rev Av Communication Review = Av Commun. Rev. AV communication review = Av Commun Rev Avebury Series in Philosophy = Aveb S Phil Avebury Series in Philosophy = Aveb. S. Phil. Avebury Studies in Green Research = Aveb St Gr Avebury Studies in Green Research = Aveb. St. Gr. Avebury Studies of Care in The Community = Aveb St Car Commun Avebury Studies of Care in The Community = Aveb. St. Car. Commun. Aventure Ibadite Dans Le Sud Tunisien (viii-xiii Siecle): Effervescence D'une Region Meconnue = Suom Tiedeakat Toim Aventure Ibadite Dans Le Sud Tunisien (viii-xiii Siecle): Effervescence D'une Region Meconnue = Suom. Tiedeakat. Toim. Average-case Analysis of Numerical Problems = Lect Notes Math Average-case Analysis of Numerical Problems = Lect. Notes. Math. Averroes and The Aristotelian Tradition = Islam Ph Th Sci Averroes and The Aristotelian Tradition = Islam. Ph. Th. Sci. Aversive and Nonaversive Interventions : Controlling Life-threatening Behavior By The Developmentally Disabled = Spr S Beh Aversive and Nonaversive Interventions : Controlling Life-threatening Behavior By The Developmentally Disabled = Spr. S. Beh. Aviakosmicheskaia i Ekologicheskaia Meditsina = Aviakosm. Ekolog. Med. Aviakosmicheskaia I Ekologicheskaia Meditsina=Aviakosm Ekolog Med;; Avian and Poultry Biology Reviews = Avian Poult Biol Rev Avian and Poultry Biology Reviews = Avian Poult. Biol. Rev. Avian Biology Research = Avian Biol Res Avian Biology Research = Avian Biol. Res. Avian Conservation and Ecology = Avian Conserv Ecol Avian Conservation and Ecology = Avian Conserv. Ecol. Avian diseases = Avian Dis Avian Diseases=Avian Dis;; Avian Diseases = Avian Dis Avian Diseases = Avian Dis. Avian Embryology, 2nd Edition = Method Cell Biol Avian Embryology, 2nd Edition = Method. Cell. Biol. Avian Immunology in Progress = Colloq Inra Avian Immunology in Progress = Colloq. Inra. Avian Incubation = Poult Sci S Avian Incubation = Poult. Sci. S. Avian Influenza: Etiology, Pathogenesis and Interventions = Public Health 21st C Avian Influenza: Etiology, Pathogenesis and Interventions = Public. Health. 21st. C. Avian Paleontology At The Close of The 20th Century = Sm C Paleob Avian Paleontology At The Close of The 20th Century = Sm. C. Paleob. Avian Pathology = Avian Pathol Avian Pathology = Avian Pathol. Avian pathology : journal of the W.V.P.A = Avian Pathol Aviation: Airport and Air Traffic Economic and Operational Issues = Transport Res Rec Aviation: Airport and Air Traffic Economic and Operational Issues = Transport. Res. Rec. Aviation and Climate Change = Routl Stud Phys Geog Aviation and Climate Change = Routl. Stud. Phys. Geog. Aviation Fuel : Thermal Stability Requirements = Am Soc Test Mater Aviation Fuel : Thermal Stability Requirements = Am. Soc. Test. Mater. Aviation Ground Support Equipment = Imeche Sem Aviation Ground Support Equipment = Imeche. Sem. Aviation Safety Challenges in The 1990s = Int Air Saf Sem P Aviation Safety Challenges in The 1990s = Int. Air. Saf. Sem. P. Aviation Safety in The '90s = Int Air Saf Sem P Aviation Safety in The '90s = Int. Air. Saf. Sem. P. Aviation Security Engineering: A Holistic Approach = Artech Hse Intel Inf Aviation Security Engineering: A Holistic Approach = Artech. Hse. Intel. Inf. Aviation Space and Environmental Medicine = Aviat Space Envir Md Aviation Space and Environmental Medicine = Aviat. Space Envir. Md. Aviation, space, and environmental medicine = Aviat Space Environ Med Aviation Space and Environmental Medicine=Aviat Space Environ Med;; Aviation Space and Environmental Medicine = Aviat. Space Environ. Med. Aviation, Space and Environmental Medicine = Aviat. Space Environ. Med. Aviation Week & Space Technology = Aviat Week Space Tec Aviation Week & Space Technology = Aviat. Week Space Tec. Aviation week & space technology = Aviat Week Space Technol Avicultural Magazine = Avic. Mag. AVISO (Ottawa, Ont.) = AVISO Avoided Deforestation: Prospects for Mitigating Climate Change = Routl Explor Environ Avoided Deforestation: Prospects for Mitigating Climate Change = Routl. Explor. Environ. Avoiding Treatment Failures in The Anxiety Disorders = Ser Anxiety Relat Di Avoiding Treatment Failures in The Anxiety Disorders = Ser. Anxiety Relat. Di. Avrdc Publication = Avrdc Publ Avrdc Publication = Avrdc Publ. AVSC news (Association for Voluntary Surgical Contraception (U.S.)) = AVSC News AVS news / Association for Voluntary Sterilization = AVS News Avtomaticheskaya Svarka = Avtom. Svarka Avtomatika = Avtomatika+ Avtomatika = Avtomatika+.+ Avtomatika I Vychislitelnaya Tekhnika = Avtom Vychisl Tekh+ Avtomatika I Vychislitelnaya Tekhnika = Avtom. Vychisl. Tekh+.+ Avt Publications = Avt Publ Avt Publications = Avt Publ. A Wake Newslitter = Wake Newsl A Wake Newslitter = Wake Newsl. Awarded for Valour: A History of The Victoria Cross and The Evolution of British Heroism = Stud Mil Strateg His Awarded for Valour: A History of The Victoria Cross and The Evolution of British Heroism = Stud. Mil. Strateg. His. Awareness Systems: Advances in Theory, Methodology and Design = Hum-comput Int-sprin Awareness Systems: Advances in Theory, Methodology and Design = Hum-comput. Int-sprin. AWHONN lifelines / Association of Women's Health, Obstetric and Neonatal Nurses = AWHONN Lifelines AWHONN Lifelines = AWHONN Lifelines AWHONN's clinical issues in perinatal and women's health nursing = AWHONNS Clin Issues Perinat Womens Health Nurs AWHONN's Clinical Issues in Perinatal and Women's Health Nursing = AWHONNS Clin. Issues Perinat. Womens Health Nurs. AWHONN voice / Association of Women's Health, Obstetric, and Neonatal Nurses (AWHONN) = AWHONN Voice AWHONN Voice = AWHONN Voice A Wiley-Interscience Publication = Wiley-Intersci. Publ. Awkward Echo: Matthew Arnold and John Dewey = Res Curric Instruct Awkward Echo: Matthew Arnold and John Dewey = Res. Curric. Instruct. A.W.R. Bulletin. Association for the Study of the World Refugee Problem = AWR Bull Axelsson Series On Preventive Dentistry = Axelss Ser Prev Dent Axelsson Series On Preventive Dentistry = Axelss. Ser. Prev. Dent. Axial Civilizations and World History = Jerusalem Stud Rel C Axial Civilizations and World History = Jerusalem. Stud. Rel. C. Axiomathes = Axiomathes Axiomatic, Enriched and Motivic Homotopy Theory = Nato Sci Ser Ii Math Axiomatic, Enriched and Motivic Homotopy Theory = Nato. Sci. Ser. Ii. Math. Axiomatic Fuzzy Set Theory and Its Applications = Stud Fuzz Soft Comp Axiomatic Fuzzy Set Theory and Its Applications = Stud. Fuzz. Soft. Comp. Axiom of Choice = Lect Notes Math Axiom of Choice = Lect. Notes. Math. Axions 2010: Proceedings of The International Conference = Aip Conf Proc Axions 2010: Proceedings of The International Conference = Aip. Conf. Proc. Axions: Theory, Cosmology, and Experimental Searches = Lect Notes Phys Axions: Theory, Cosmology, and Experimental Searches = Lect. Notes. Phys. Axonal Branching and Recovery of Coordinated Muscle Activity After Transection of The Facial Nerve in Adult Rats = Adv Anat Embryol Cel Axonal Branching and Recovery of Coordinated Muscle Activity After Transection of The Facial Nerve in Adult Rats = Adv. Anat. Embryol. Cel. Axone = Axone Axone (Dartmouth, N.S.) = Axone Axon Growth and Guidance = Adv Exp Med Biol Axon Growth and Guidance = Adv. Exp. Med. Biol. Ayasofia Müzesi yıllığı. Annual of Ayasofya Museum = AyasofyaMuezYil Azania-archaeological Research in Africa = Azania Azania-archaeological Research in Africa = Azania. Azerbaidzhanskii Khimicheskii Zhurnal = Azerb. Khim. Zh. Aziia i Afrika segodnia = Aziia Afr Segodnia Azotea. Revista de cultura del Ayuntamiento de Coria del Río = Azotea Aztlan = Aztlan B 1 Lymphocytes in B Cell Neoplasia = Curr Top Microbiol B 1 Lymphocytes in B Cell Neoplasia = Curr. Top. Microbiol. B 2007: Formal Specification and Development in B, Proceedings = Lect Notes Comput Sc B 2007: Formal Specification and Development in B, Proceedings = Lect. Notes. Comput. Sc. B'98: Recent Advances in The Development and Use of The B Method = Lect Notes Comput Sc B'98: Recent Advances in The Development and Use of The B Method = Lect. Notes. Comput. Sc. Baalbek. Ergebnisse der Ausgrabungen und Untersuchungen in den Jahren 1898 bis 1905 = Baalbek Babesch Bulletin Antieke Beschaving = Babesch Bull Ant Bes Babesch Bulletin Antieke Beschaving = Babesch Bull. Ant. Bes. Bach = Bach Back-arc Spreading Systems: Geological, Biological, Chemical, and Physical Interactions = Geoph Monog Series Back-arc Spreading Systems: Geological, Biological, Chemical, and Physical Interactions = Geoph. Monog. Series. Back-arc Spreading Systems: Geological, Biological, Chemical, and Physical Interactions = Geophys Monogr Ser Back-arc Spreading Systems: Geological, Biological, Chemical, and Physical Interactions = Geophys. Monogr. Ser. Backbone of The Americas: Shallow Subduction, Plateau Uplift, and Ridge and Terrane Collision = Geol Soc Am Mem Backbone of The Americas: Shallow Subduction, Plateau Uplift, and Ridge and Terrane Collision = Geol. Soc. Am. Mem. Back-end of The Fuel Cycle in A 1000 Gwe Nuclear Scenario = Oecd Proc Back-end of The Fuel Cycle in A 1000 Gwe Nuclear Scenario = Oecd. Proc. Backer Und Konditor = Backer Konditor Backgrounder (Washington, D.C.) = Backgrounder Back Pain : Classification of Syndromes = Brit Back P Back Pain : Classification of Syndromes = Brit. Back P. Back to The Galaxy = Aip Conf Proc Back to The Galaxy = Aip. Conf. Proc. Back to The Roots and Back to The Future: Towards A New Synthesis Amongst Taxonomic, Ecological and Biogeographical Approaches in Carabidology, Proceedings = Pensoft Ser Faunist Back to The Roots and Back to The Future: Towards A New Synthesis Amongst Taxonomic, Ecological and Biogeographical Approaches in Carabidology, Proceedings = Pensoft. Ser. Faunist. Bac-min 2004 Conference, Proceedings = Australas I Min Met Bac-min 2004 Conference, Proceedings = Australas. I. Min. Met. Bacon Und Kant: Ein Erkenntnistheoretischer Vergleich Zwischen Dem Novum Organum Und Der Kritik Der Reinen Vernunft = Kantstudien Bacon Und Kant: Ein Erkenntnistheoretischer Vergleich Zwischen Dem Novum Organum Und Der Kritik Der Reinen Vernunft = Kantstudien. Bacterial Adhesion: Chemistry, Biology and Physics = Adv Exp Med Biol Bacterial Adhesion: Chemistry, Biology and Physics = Adv. Exp. Med. Biol. Bacterial Biofilms = Curr Top Microbiol Bacterial Biofilms = Curr. Top. Microbiol. Bacterial Diversity and Systematics = Fems Symp Bacterial Diversity and Systematics = Fems. Symp. Bacterial Dna, Dna Polymerase and Dna Helicases = Gen-res Issues Bacterial Dna, Dna Polymerase and Dna Helicases = Gen-res. Issues. Bacterial Ecology of Aquatic Environments = Oceanis S D Bacterial Ecology of Aquatic Environments = Oceanis. S. D. Bacterial Endotoxin : Recognition and Effector Mechanisms = Int Congr Ser Bacterial Endotoxin : Recognition and Effector Mechanisms = Int. Congr. Ser. Bacterial Endotoxins = Prog Clin Biol Res Bacterial Endotoxins = Prog. Clin. Biol. Res. Bacterial Growth and Lysis = Fems Symp Bacterial Growth and Lysis = Fems. Symp. Bacterial Infection: Close Encounters At The Host Pathogen Interface = Curr Top Microbiol Bacterial Infection: Close Encounters At The Host Pathogen Interface = Curr. Top. Microbiol. Bacterial Invasiveness = Curr Top Microbiol Bacterial Invasiveness = Curr. Top. Microbiol. Bacterial Pathogenesis, Pt A = Method Enzymol Bacterial Pathogenesis, Pt A = Method. Enzymol. Bacterial Pathogenesis, Pt B = Method Enzymol Bacterial Pathogenesis, Pt B = Method. Enzymol. Bacterial Pathogenesis, Pt C = Method Enzymol Bacterial Pathogenesis, Pt C = Method. Enzymol. Bacterial Protein Toxins = Zbl Bakt S Bacterial Protein Toxins = Zbl. Bakt. S. Bacterial Response to Ph = Novart Fdn Symp Bacterial Response to Ph = Novart. Fdn. Symp. Bacterial Sensing and Signaling = Contrib Microbiol Bacterial Sensing and Signaling = Contrib. Microbiol. Bacterial Signal Transduction: Networks and Drug Targets = Adv Exp Med Biol Bacterial Signal Transduction: Networks and Drug Targets = Adv. Exp. Med. Biol. Bacterial Virulence Factors and Rho Gtpases = Curr Top Microbiol Bacterial Virulence Factors and Rho Gtpases = Curr. Top. Microbiol. Bacterial Wilt = Aciar Proc Bacterial Wilt = Aciar. Proc. Bacterial Wilt of Groundnut = Aciar Proc Bacterial Wilt of Groundnut = Aciar. Proc. Bacteriologia, Virusologia, Parazitologia, Epidemiologia = Bacteriol. Virusol. Parazitol. Epidemiol. Bacteriologia, virusologia, parazitologia, epidemiologia = Bacteriol Virusol Parazitol Epidemiol (Bucur) Bacteriologia, virusologia, parazitologia, epidemiologia (Bucharest, Romania : 1990) = Bacteriol Virusol Parazitol Epidemiol Bacteriological reviews = Bacteriol Rev Bacteriological Reviews = Bacteriol Rev Bacteriological Reviews = Bacteriol. Rev. Bacteriology Research Developments = Bacteriol Res Dev Bacteriology Research Developments = Bacteriol. Res. Dev. Badener Neujahrsblätter = Baden. Neujahrsbl. Badische Fundberichte = BadFuBer Baetica. Estudios de arte, geografía e historia = Baetica Baghdader Forschungen = BaF Baghdader Mitteilungen = BaM Bahai Studies Notebook, Vol V, No 1 = Bahai St N Bahai Studies Notebook, Vol V, No 1 = Bahai St. N. Bailliere's Best Practice and Research. Clinical Endocrinology and Metabolism = Baillieres Best Pract. Res. Clin. Endocrinol. Metab. Bailliere's Best Practice and Research. Clinical Gastroenterology = Baillieres Best Pract. Res. Clin. Gastroenterol. Bailliere's Best Practice and Research. Clinical Haematology = Baillieres Best Pract. Res. Clin. Haematol. Bailliere's Best Practice and Research. Clinical Obstetrics and Gynaecology = Baillieres Best Pract. Res. Clin. Obstet. Gynaecol. Bailliere's Best Practice and Research. Clinical Rheumatology = Baillieres Best Pract. Res. Clin. Rheumatol. Bailliere's best practice & research. Clinical endocrinology & metabolism = Baillieres Best Pract Res Clin Endocrinol Metab Bailliere's best practice & research. Clinical gastroenterology = Baillieres Best Pract Res Clin Gastroenterol Bailliere's best practice & research. Clinical haematology = Baillieres Best Pract Res Clin Haematol Bailliere's best practice & research. Clinical obstetrics & gynaecology = Baillieres Best Pract Res Clin Obstet Gynaecol Bailliere's best practice & research. Clinical rheumatology = Baillieres Best Pract Res Clin Rheumatol Baillieres Clinical Anaesthesiology = Bailliere Clin Anaes Baillieres Clinical Anaesthesiology = Bailliere. Clin. Anaes. Bailliere's clinical anaesthesiology = Baillieres Clin Anaesthesiol Baillieres Clinical Endocrinology and Metabolism = Bailliere Clin Endoc Baillieres Clinical Endocrinology and Metabolism = Bailliere. Clin. Endoc. Bailliere's clinical endocrinology and metabolism = Baillieres Clin Endocrinol Metab Bailliere's Clinical Endocrinology and Metabolism = Baillieres Clin. Endocrinol. Metab. Baillieres Clinical Endocrinology and Metabolism=Baillieres Clin Endocrinol Metab;; Baillieres Clinical Gastroenterology = Bailliere Clin Gastr Baillieres Clinical Gastroenterology = Bailliere. Clin. Gastr. Bailliere's clinical gastroenterology = Baillieres Clin Gastroenterol Bailliere's Clinical Gastroenterology = Baillieres Clin. Gastroenterol. Baillieres Clinical Gastroenterology=Baillieres Clin Gastroenterol;; Baillieres Clinical Haematology = Bailliere Clin Haem Baillieres Clinical Haematology = Bailliere. Clin. Haem. Bailliere's clinical haematology = Baillieres Clin Haematol Bailliere's Clinical Haematology = Baillieres Clin. Haematol. Baillieres Clinical Haematology=Baillieres Clin Haematol;; Baillieres Clinical Haematology-international Practice and Research = Bail Cl Hae Baillieres Clinical Haematology-international Practice and Research = Bail. Cl. Hae. Bailliere's Clinical Haematology, Vol 7, No 4, December 1994 = Bail Cl Hae Bailliere's Clinical Haematology, Vol 7, No 4, December 1994 = Bail. Cl. Hae. Bailliere's clinical immunology and allergy = Baillieres Clin Immunol Allergy Baillieres Clinical Infectious Diseases = Bailliere Clin Inf D Baillieres Clinical Infectious Diseases = Bailliere. Clin. Inf. D. Baillieres Clinical Neurology = Bailliere Clin Neur Baillieres Clinical Neurology = Bailliere. Clin. Neur. Bailliere's clinical neurology = Baillieres Clin Neurol Bailliere's Clinical Neurology = Baillieres Clin. Neurol. Baillieres Clinical Neurology=Baillieres Clin Neurol;; Baillieres Clinical Obstetrics and Gynaecology = Bailliere Clin Ob Gy Baillieres Clinical Obstetrics and Gynaecology = Bailliere. Clin. Ob. Gy. Bailliere's clinical obstetrics and gynaecology = Baillieres Clin Obstet Gynaecol Bailliere's Clinical Obstetrics and Gynaecology = Baillieres Clin. Obstet. Gynaecol. Baillieres Clinical Obstetrics and Gynaecology=Baillieres Clin Obstet Gynaecol;; Baillieres Clinical Oncology = Baillieres Clin Oncol Baillieres Clinical Rheumatology = Bailliere Clin Rheum Baillieres Clinical Rheumatology = Bailliere. Clin. Rheum. Bailliere's clinical rheumatology = Baillieres Clin Rheumatol Bailliere's Clinical Rheumatology = Baillieres Clin. Rheumatol. Baillieres Clinical Rheumatology=Baillieres Clin Rheumatol;; Bail Or Remand? = Aic Conf P Bail Or Remand? = Aic. Conf. P. Baked Apple? = Ann Ny Acad Sci Baked Apple? = Ann. Ny. Acad. Sci. Baker-Cederberg notebook. Baker-Cederberg Museum & Archives = Baker Cederberg Noteb Bakers Digest = Bakers Dig Bakers Digest = Bakers Dig. Bakhtin Carnival and Other Subjects = Crit Stud Bakhtin Carnival and Other Subjects = Crit. Stud. Bakken Research Center Series = Bakken Res Bakken Research Center Series = Bakken Res. Balácai közlemények = BalacaiKoez Balance (Alexandria, Va.) = Balance Balance = Balance Balance Control of Flexible Structures = Lect Notes Contr Inf Balance Control of Flexible Structures = Lect. Notes. Contr. Inf. Balanced Automation Systems for Future Manufacturing Networks = Ifip Adv Inf Comm Te Balanced Automation Systems for Future Manufacturing Networks = Ifip. Adv. Inf. Comm. Te. Balanced Omega-6/omega-3 Fatty Acid Ratio, Cholesterol and Coronary Heart Disease = World Rev Nutr Diet Balanced Omega-6/omega-3 Fatty Acid Ratio, Cholesterol and Coronary Heart Disease = World. Rev. Nutr. Diet. Balance of Power in Asia-pacific Security: Us-china Policies On Regional Order = Polit Asia Balance of Power in Asia-pacific Security: Us-china Policies On Regional Order = Polit. Asia. Balancing Agility and Formalism in Software Engineering = Lect Notes Comput Sc Balancing Agility and Formalism in Software Engineering = Lect. Notes. Comput. Sc. Balancing Dilemmas in Assessment and Learning in Contemporary Education = Routl Res Educ Balancing Dilemmas in Assessment and Learning in Contemporary Education = Routl. Res. Educ. Balancing Ecosystem Values: Innovative Experiments for Sustainable Forestry = Us For Serv T R Pnw Balancing Ecosystem Values: Innovative Experiments for Sustainable Forestry = Us. For. Serv. T. R. Pnw. Balancing Fisheries Management and Water Uses for Impounded River Systems = Am Fish S S Balancing Fisheries Management and Water Uses for Impounded River Systems = Am. Fish. S. S. Balancing Written History With Oral Tradition: The Legacy of The Songhoy People = Afr Stud-hist Polit Balancing Written History With Oral Tradition: The Legacy of The Songhoy People = Afr. Stud-hist. Polit. Balcanica (Rome, Italy) = Balcanica Baldwin's Kentucky revised statutes annotated : KRS. Kentucky = Baldwins Ky Revis Statut Annot Ky Balkan Currents = Mg Balkan Stud Balkan Currents = Mg. Balkan Stud. Balkan Journal of Geometry and its Applications = Balkan J. Geom. Appl. Balkan Journal of Geometry and Its Applications = Balk J Geom Appl Balkan Journal of Geometry and Its Applications = Balk. J. Geom. Appl. Balkan Journal of Medical Genetics = Balk J Med Gen Balkan Journal of Medical Genetics = Balk. J. Med. Gen. Balkan Journal of Medical Genetics = Balk J Med Genet Balkan Journal of Medical Genetics = Balk. J. Med. Genet. Balkan Medical Journal = Balk Med J Balkan Medical Journal = Balk. Med. J. Balkan Society of Geometers Monographs and Textbooks = Balkan Soc. Geom. Monogr. Textb. Balkan Sprachbund Morpho-syntactic Features = Stud Nat Lang Lingui Balkan Sprachbund Morpho-syntactic Features = Stud. Nat. Lang. Lingui. Balkan Studies = Balkan Stud Balkan Studies = Balkan Stud. Balkan Studies = BalkSt Ball Bearing Journal = Ball Bearing J Ball Bearing Journal = Ball Bearing J. Ballet News = Ballet News Ballet Review = Ballet Rev Ballet Review = Ballet Rev. Ballettanz = Ballettanz Ballett International = Ballett Int Ballett International = Ballett Int. Ballett International-tanz Aktuell = Ballett Int-tanz Akt Ballett International-tanz Aktuell = Ballett Int-tanz. Akt. Balloon Technology and Observations = Adv Space Res Balloon Technology and Observations = Adv. Space. Res. Ball State University Forum = Ball St Univ Forum Ball State University Forum = Ball St. Univ. Forum Baltica = Baltica Baltica Iii - International Conference On Plant Condition & Life Management, Vol Ii = Vtt Symp Baltica Iii - International Conference On Plant Condition & Life Management, Vol Ii = Vtt. Symp. Baltica Iii - International Conference On Plant Condition & Life Management, Vol I = Vtt Symp Baltica Iii - International Conference On Plant Condition & Life Management, Vol I = Vtt. Symp. Baltic Astronomy = Balt Astron Baltic Astronomy = Balt. Astron. Baltica Vii: Life Management and Maintenance for Power Plants, Vol 1 = Vtt Symp Baltica Vii: Life Management and Maintenance for Power Plants, Vol 1 = Vtt. Symp. Baltica Vii: Life Management and Maintenance for Power Plants, Vol 2 = Vtt Symp Baltica Vii: Life Management and Maintenance for Power Plants, Vol 2 = Vtt. Symp. Baltica Vi: Life Management and Maintenance for Power Plants, Vol 1 and 2 = Vtt Symp Baltica Vi: Life Management and Maintenance for Power Plants, Vol 1 and 2 = Vtt. Symp. Baltic Coastal Ecosystems = Cent E Eur Dev Stud Baltic Coastal Ecosystems = Cent. E. Eur. Dev. Stud. Baltic Forestry = Balt For Baltic Forestry = Balt. For. Baltic Forestry = Baltic For Baltic Forestry = Baltic For. Baltic Journal of Economics = Balt J Econ Baltic Journal of Economics = Balt. J. Econ. Baltic Journal of Management = Balt J Manag Baltic Journal of Management = Balt. J. Manag. Baltic Journal of Road and Bridge Engineering = Balt J Road Bridge E Baltic Journal of Road and Bridge Engineering = Balt. J. Road Bridge E. Baltic Marine Biologists Publication = Balt Mar Biolog Publ Baltic Marine Biologists Publication = Balt. Mar. Biolog. Publ. Baltic Question During The Cold War = Cold War Hist-routl Baltic Question During The Cold War = Cold War Hist-routl. Baltic Sea Basin = Cent E Eur Dev Stud Baltic Sea Basin = Cent. E. Eur. Dev. Stud. Baltic Sea Fishery Resources = Rap Proces Baltic Sea Fishery Resources = Rap. Proces. Baltimore magazine = Baltim Mag Balto-slavic Accentual Mobility = Trends Linguist-stud Balto-slavic Accentual Mobility = Trends. Linguist-stud. Balzac and The Model of Painting: Artist Stories in 'la Comedie Humaine' = Res Monogr Fr Stud Balzac and The Model of Painting: Artist Stories in 'la Comedie Humaine' = Res. Monogr. Fr. Stud. Bamboos = Linnean Soc Bamboos = Linnean. Soc. Bamidgeh = Bamidgeh Banach Algebras and Their Applications = Contemp Math Banach Algebras and Their Applications = Contemp. Math. Banach Center Publications = Banach Cent Banach Center Publications = Banach Cent. Banach Center Publications = Banach Center Publ. Banach Journal of Mathematical Analysis = Banach J Math Anal Banach Journal of Mathematical Analysis = Banach J. Math. Anal. Banach Spaces and Descriptive Set Theory: Selected Topics = Lect Notes Math Banach Spaces and Descriptive Set Theory: Selected Topics = Lect. Notes. Math. Banach Spaces of Analytic Functions = Contemp Math Banach Spaces of Analytic Functions = Contemp. Math. Banach Space Theory: The Basis for Linear and Nonlinear Analysis = Cms Books Math Banach Space Theory: The Basis for Linear and Nonlinear Analysis = Cms. Books. Math. Bananas and Plantains, 2nd Edition = Crop Prod Sci Hortic Bananas and Plantains, 2nd Edition = Crop. Prod. Sci. Hortic. Banbury Report = Banb Report Banbury Report = Banb. Report Banca Nazionale del Lavoro Quarterly Review=Banca Naz. Lavoro Quart. Rev. Bancaria=Bancaria Banco de España Economic Bulletin=Banco España Econ. Bull. Bandaoti Xuebao = Bandaoti Xuebao Banded Iron Formation-related High-grade Iron Ore = Rev Econ Geol Banded Iron Formation-related High-grade Iron Ore = Rev. Econ. Geol. Band-ferromagnetism = Lect Notes Phys Band-ferromagnetism = Lect. Notes. Phys. Bandwidth Extension of Speech Signals = Lect Notes Electr En Bandwidth Extension of Speech Signals = Lect. Notes. Electr. En. Banff International Behavioral Science Series = Banf Int Behav Ser Banff International Behavioral Science Series = Banf. Int. Behav. Ser. Bangladesh Development Studies=Bangladesh Devel. Stud. Bangladesh Development Studies = Bangladesh Dev Stud Bangladesh Economic Review=Bangladesh Econ. Rev. Bangladesh Journal of Botany = Bangladesh J Botany Bangladesh Journal of Botany = Bangladesh J. Botany Bangladesh Journal of Botany = Bangl J Bot Bangladesh Journal of Botany = Bangl. J. Bot. Bangladesh journal of microbiology / Bangladesh Society of Microbiologists = Banglad J Microbiol Bangladesh Journal of Pharmacology = Bangl J Pharmacol Bangladesh Journal of Pharmacology = Bangl. J. Pharmacol. Bangladesh Journal of Plant Taxonomy = Bangl J Plant Taxon Bangladesh Journal of Plant Taxonomy = Bangl. J. Plant Taxon. Bangladesh medical journal = Bangladesh Med J Bangladesh Medical Research Council bulletin = Bangladesh Med Res Counc Bull Bangladesh Medical Research Council Bulletin=Bangladesh Med Res Counc Bull;; Bangladesh Medical Research Council Bulletin = Bangladesh Med. Res. Counc. Bull. Bank Capital and Risk-taking: The Impact of Capital Regulation, Charter Value, and The Business Cycle = Kiel Stud Bank Capital and Risk-taking: The Impact of Capital Regulation, Charter Value, and The Business Cycle = Kiel. Stud. Banker=Banker Banking and Monetary Policy in Eastern Europe = Stud Econ Trans Banking and Monetary Policy in Eastern Europe = Stud. Econ. Trans. Banking in China, 2nd Edition = Palgr Mac Stud Bank Banking in China, 2nd Edition = Palgr. Mac. Stud. Bank. Banking Law Journal = Banking Law J Banking Law Journal = Banking Law J. Banking On Innovation: Modernisation of Payment Systems = Contrib Econ Banking On Innovation: Modernisation of Payment Systems = Contrib. Econ. Banking Reform in Southeast Asia: The Region's Decisive Decade = Routledge Stud Growt Banking Reform in Southeast Asia: The Region's Decisive Decade = Routledge. Stud. Growt. Banking Reforms in South-east Europe = Nh Mon Fin Ser Banking Reforms in South-east Europe = Nh. Mon. Fin. Ser. Banking Sector Liberalization in India: Evaluation of Reforms and Comparative Perspectives On China = Contrib Econ Banking Sector Liberalization in India: Evaluation of Reforms and Comparative Perspectives On China = Contrib. Econ. Bank of England Quarterly Bulletin=Bank Engl. Quart. Bull. Bank of Israel Banking Review=Bank Israel Banking Rev. Bank of Israel Economic Review=Bank Israel Econ. Rev. Bank of Japan Monetary and Economic Studies=Bank Japan Monet. Econ. Stud. Bank of Korea Economic Papers=Bank Korea Econ. Pap. Bank of Valletta Review=Bank Valletta Rev. Bank Performance: A Theoretical and Empirical Framework for The Analysis of Profitability, Competition and Efficiency = Routl Int Stud Money Bank Performance: A Theoretical and Empirical Framework for The Analysis of Profitability, Competition and Efficiency = Routl. Int. Stud. Money. Bankruptcy & Distressed Restructurings = Nyu Salomon Bankruptcy & Distressed Restructurings = Nyu. Salomon. Banque = Banque Bantu Studies = Bantu Stud Bantu Studies = Bantu Stud. Baoji College of Arts and Science = J. Baoji College Arts Sci. Nat. Sci. Baptist history and heritage = Baptist Hist Herit Barbados nursing journal = Barbados Nurs J Barbados Nursing Journal = Barbados Nurs. J. Barbarian Tides: The Migration Age and The Later Roman Empire = Middle Ages Ser Barbarian Tides: The Migration Age and The Later Roman Empire = Middle. Ages. Ser. Bar British Series = Bar Brit Ser Bar British Series = Bar Brit. Ser. Barcelona quirurgica = Barc Quir Barclays Bank Review = Barclay Bank Rev Barclays Bank Review = Barclay. Bank Rev. Barclays Review = Barclays Rev Barclays Review = Barclays Rev. Bard Music Festival = Bard Music Festiv Bard Music Festival = Bard Music Festiv. Bariatric Nursing and Surgical Patient Care = Bariat Nurs Surg Pat Bariatric Nursing and Surgical Patient Care = Bariat. Nurs. Surg. Pat. Bar Kokhba War Reconsidered = Texte Stud Antik Jud Bar Kokhba War Reconsidered = Texte. Stud. Antik. Jud. Barnes Foundation-journal of The Art Department = Barnes Found-j Art Barnes Foundation-journal of The Art Department = Barnes Found-j. Art Baroda Journal of Nutrition = Baroda J Nutr Baroda Journal of Nutrition = Baroda J. Nutr. Barometers of Quality of Life Around The Globe: How Are We Doing = Social Indic Res Barometers of Quality of Life Around The Globe: How Are We Doing = Social. Indic. Res. Barometers of Quality of Life Around The Globe: How Are We Doing = Soc Indic Res Ser Barometers of Quality of Life Around The Globe: How Are We Doing = Soc. Indic. Res. Ser. Barons' Crusade: A Call to Arms and Its Consequences = Middle Ages Ser Barons' Crusade: A Call to Arms and Its Consequences = Middle. Ages. Ser. Barrier Polymers and Structures = Acs Sym Ser Barrier Polymers and Structures = Acs. Sym. Ser. Barrier Properties of Polymer Clay Nanocomposites = Nanotechnol Sci Tech Barrier Properties of Polymer Clay Nanocomposites = Nanotechnol. Sci. Tech. Barriers and Biases in Computer-mediated Knowledge Communication: and How They May Be Overcome = Comput-supp Collab L Barriers and Biases in Computer-mediated Knowledge Communication: and How They May Be Overcome = Comput-supp. Collab. L. Barriers to International Technology Transfer = Nato Asi S 4 Sci Tec Barriers to International Technology Transfer = Nato. Asi. S. 4. Sci. Tec. Barrister (Chicago, Ill.) = Barrister Barron's = Barrons Barron's national business and financial weekly = Barrons Bartle-dunford-schwartz Integral: Integration With Respect to A Sigma-additive Vector Measure = Monogr Mat Bartle-dunford-schwartz Integral: Integration With Respect to A Sigma-additive Vector Measure = Monogr. Mat. Bartonia; proceedings of the Philadelphia botanical club ... = Bartonia Baryon Excitations = Schr Forsch Zent Jul Baryon Excitations = Schr. Forsch. Zent. Jul. Baryonic Dark Matter = Nato Adv Sci I C-mat Baryonic Dark Matter = Nato. Adv. Sci. I. C-mat. Basal facts = Basal Facts Basal Facts = Basal Facts Basal Forebrain = Adv Exp Med Biol Basal Forebrain = Adv. Exp. Med. Biol. Basal Ganglia Iii = Adv Behav Biol Basal Ganglia Iii = Adv. Behav. Biol. Basal Ganglia Iv = Adv Behav Biol Basal Ganglia Iv = Adv. Behav. Biol. Basal Ganglia Ix = Adv Behav Biol Basal Ganglia Ix = Adv. Behav. Biol. Basal Ganglia V = Adv Behav Biol Basal Ganglia V = Adv. Behav. Biol. Basal Ganglia Vii = Adv Behav Biol Basal Ganglia Vii = Adv. Behav. Biol. Basal Ganglia Viii = Adv Behav Biol Basal Ganglia Viii = Adv. Behav. Biol. Baseband Analog Circuits for Software Defined Radio = Analog Circ Sig Proc Baseband Analog Circuits for Software Defined Radio = Analog Circ. Sig. Proc. Base Colonies in The Western Hemisphere, 1940-1967 = Stud Am Base Colonies in The Western Hemisphere, 1940-1967 = Stud. Am. Basees-routledge Series On Russian and East European Studies = Basees-rout Ser Russ Basees-routledge Series On Russian and East European Studies = Basees-rout. Ser. Russ. Basees Routledge Series On Russian and East European Studies = Rout Ser Rus Eas Eur Basees Routledge Series On Russian and East European Studies = Rout. Ser. Rus. Eas. Eur. Basement Membranes: Cell and Molecular Biology = Curr Top Membr Basement Membranes: Cell and Molecular Biology = Curr. Top. Membr. Basement Tectonics 10 = P Int C Bas Basement Tectonics 10 = P. Int. C. Bas. Basement Tectonics 11 = P Int C Bas Basement Tectonics 11 = P. Int. C. Bas. Basement Tectonics 13 = P Int C Bas Basement Tectonics 13 = P. Int. C. Bas. Basement Tectonics 9 = P Int C Bas Basement Tectonics 9 = P. Int. C. Bas. Bases in Function Spaces, Sampling, Discrepancy, Numerical Integration = Ems Tracts Math Bases in Function Spaces, Sampling, Discrepancy, Numerical Integration = Ems. Tracts. Math. Basic and Applied Aspects of Seed Biology = Curr Plant Sci Biot Basic and Applied Aspects of Seed Biology = Curr. Plant. Sci. Biot. Basic and Applied Ecology = Basic Appl Ecol Basic and Applied Ecology = Basic Appl. Ecol. Basic and applied histochemistry = Basic Appl Histochem Basic and Applied Histochemistry = Basic Appl Histochem Basic and Applied Histochemistry = Basic Appl. Histochem. Basic and applied myology : BAM = Basic Appl Myol Basic and Applied Myology = Basic Appl Myol Basic and Applied Myology = Basic Appl. Myol. Basic and Applied Perspectives On Learning, Cognition, and Development = Minn Sym Child Psych Basic and Applied Perspectives On Learning, Cognition, and Development = Minn. Sym. Child. Psych. Basic and applied social psychology = Basic Appl Soc Psych Basic and Applied Social Psychology = Basic Appl Soc Psych Basic and Applied Social Psychology = Basic Appl. Soc. Psych. Basic and Clinical Applications of Vision Science = Doc Ophth P Basic and Clinical Applications of Vision Science = Doc. Ophth. P. Basic and Clinical Approach to Turner Syndrome = Int Congr Ser Basic and Clinical Approach to Turner Syndrome = Int. Congr. Ser. Basic and Clinical Aspects of Neuroendocrine Immunology in Rheumatic Diseases = Ann Ny Acad Sci Basic and Clinical Aspects of Neuroendocrine Immunology in Rheumatic Diseases = Ann. Ny. Acad. Sci. Basic and Clinical Aspects of Vertigo and Dizziness = Ann Ny Acad Sci Basic and Clinical Aspects of Vertigo and Dizziness = Ann. Ny. Acad. Sci. Basic and Clinical Pharmacology and Toxicology = Basic Clin. Pharmacol. Toxicol. Basic and Clinical Science of Mental and Addictive Disorders = Bibl Psychiat Basic and Clinical Science of Mental and Addictive Disorders = Bibl. Psychiat. Basic and Clinical Science of Opioid Addiction = Bibl Psychiat Basic and Clinical Science of Opioid Addiction = Bibl. Psychiat. Basic and Clinical Science of Substance Related Disorders = Bibl Psychiat Basic and Clinical Science of Substance Related Disorders = Bibl. Psychiat. Basic and New Aspects of Gastrointestinal Ultrasonography = Adv Ser Biomech Basic and New Aspects of Gastrointestinal Ultrasonography = Adv. Ser. Biomech. Basic Aspects of Catechol-o-methyltransterase and The Clinical Applications of Its Inhibitors = Int Rev Neurobiol Basic Aspects of Catechol-o-methyltransterase and The Clinical Applications of Its Inhibitors = Int. Rev. Neurobiol. Basic Bioethics = Basic Bioeth Basic Bioethics = Basic Bioeth. Basic Bundle Theory and K-cohomology Invariants = Lect Notes Phys Basic Bundle Theory and K-cohomology Invariants = Lect. Notes. Phys. Basic Chemometric Techniques in Atomic Spectroscopy = Rsc Anal Spectrosc M Basic Chemometric Techniques in Atomic Spectroscopy = Rsc. Anal. Spectrosc. M. Basic, Clinical, and Therapeutic Aspects of Alzheimers and Parkinsons Diseases, Vol 1 = Adv Behav Biol Basic, Clinical, and Therapeutic Aspects of Alzheimers and Parkinsons Diseases, Vol 1 = Adv. Behav. Biol. Basic, Clinical, and Therapeutic Aspects of Alzheimers and Parkinsons Diseases, Vol 2 = Adv Behav Biol Basic, Clinical, and Therapeutic Aspects of Alzheimers and Parkinsons Diseases, Vol 2 = Adv. Behav. Biol. Basic & Clinical Pharmacology & Toxicology = Basic Clin Pharmacol Basic & Clinical Pharmacology & Toxicology = Basic Clin. Pharmacol. Basic & clinical pharmacology & toxicology = Basic Clin Pharmacol Toxicol Basic & Clinical Pharmacology & Toxicology = Basic Clin. Pharmacol. Toxicol. Basic Concepts of Molecular Pathology = Mol Pathol Lib Basic Concepts of Molecular Pathology = Mol. Pathol. Lib. Basic Concepts of Probability and Statistics, Second Edition = Class Appl Math Basic Concepts of Probability and Statistics, Second Edition = Class. Appl. Math. Basic Functions of Language, Reading and Reading Disability = Neurops Cog Basic Functions of Language, Reading and Reading Disability = Neurops. Cog. Basic life sciences = Basic Life Sci Basic Life Sciences=Basic Life Sci;; Basic Life Sciences = Basic Life Sci Basic Life Sciences = Basic Life Sci. Basic Mechanisms Controlling Term and Preterm Birth = E Schering Res Fdn W Basic Mechanisms Controlling Term and Preterm Birth = E. Schering. Res. Fdn. W. Basic Mechanisms in Cognition and Language = Wenn Gr Int Basic Mechanisms in Cognition and Language = Wenn. Gr. Int. Basic Mechanisms of Granulomatous Inflammation = Int Congr Ser Basic Mechanisms of Granulomatous Inflammation = Int. Congr. Ser. Basic Mechanisms of Physiologic and Aberrant Lymphoproliferation in The Skin = Nato Adv Sci Inst Se Basic Mechanisms of Physiologic and Aberrant Lymphoproliferation in The Skin = Nato. Adv. Sci. Inst. Se. Basic Noncommutative Geometry = Ems Ser Lect Math Basic Noncommutative Geometry = Ems. Ser. Lect. Math. Basic Plasma Processes On The Sun = Iau Symp Basic Plasma Processes On The Sun = Iau. Symp. Basic Principles of Fresnel Antenna Arrays = Lect Notes Electr En Basic Principles of Fresnel Antenna Arrays = Lect. Notes. Electr. En. Basic Reactions in Organic Synthesis = Basic React Org Synt Basic Reactions in Organic Synthesis = Basic React. Org. Synt. Basic Relativity: An Introductory Essay = Springer Briefs Phys Basic Relativity: An Introductory Essay = Springer. Briefs. Phys. Basic Research and Treatment of Renal Cell Carcinoma Metastasis = Prog Clin Biol Res Basic Research and Treatment of Renal Cell Carcinoma Metastasis = Prog. Clin. Biol. Res. Basic research in cardiology = Basic Res Cardiol Basic Research in Cardiology = Basic Res Cardiol Basic Research in Cardiology = Basic Res. Cardiol. Basic Research In Cardiology=Basic Res Cardiol;; Basic Research On Lung Surfactant = Prog R Res Basic Research On Lung Surfactant = Prog. R. Res. Basics and Highlights in Fundamental Physics = Subnucl Ser Basics and Highlights in Fundamental Physics = Subnucl. Ser. Basics = Basics Basic Science for The Cardiologist = Bas Sci Cardiologist Basic Science for The Cardiologist = Bas. Sci. Cardiologist Basics of Applied Stochastic Processes = Probab Appl Ser Basics of Applied Stochastic Processes = Probab. Appl. Ser. Basics of Contemporary Cryptography for It Practitioners = Ser Coding Theory Cr Basics of Contemporary Cryptography for It Practitioners = Ser. Coding. Theory. Cr. Basic Space Science = Aip Conf Proc Basic Space Science = Aip. Conf. Proc. Basics Series = Basics Ser Basics Series = Basics Ser. Basin Research = Basin Res Basin Research = Basin Res. Basis for Cancer Management = Ann Ny Acad Sci Basis for Cancer Management = Ann. Ny. Acad. Sci. Basis of Civilization - Water Science? = Iahs-aish P Basis of Civilization - Water Science? = Iahs-aish. P. Basis of The Quality of Typical Mediterranean Animal Products = Eaap Public Basis of The Quality of Typical Mediterranean Animal Products = Eaap. Public. Basis Theory Primer, Expanded Edition = Appl Numer Harmon An Basis Theory Primer, Expanded Edition = Appl. Numer. Harmon. An. Basket Currency for Asia = Routledge Stud Growt Basket Currency for Asia = Routledge. Stud. Growt. Basler Beiträge zur Geographie = Basl. Beitr. Geogr. Basler Beiträge zur Geschichtswissenschaft = Basl. Beitr. Gesch.wiss. Basler Zeitschrift für Geschichte und Altertumskunde = BZG Basler Zeitschrift fur Geschichte und Altertumskunde / herausgegeben von der Historischen und Antiquarischen Gesellechaft zu Basel = Basl Z Gesch Altertumskd Basque Cultural Studies = Basque Stud Basque Cultural Studies = Basque Stud. Basque Politics and Nationalism On The Eve of The Millennium = Basque Stud Basque Politics and Nationalism On The Eve of The Millennium = Basque Stud. Basque Studies Program Occasional Papers Series = Basque Stud Basque Studies Program Occasional Papers Series = Basque Stud. Bassin Du Rio De La Plata: Developpement Local Et Integration Regionale = Hesperides Bassin Du Rio De La Plata: Developpement Local Et Integration Regionale = Hesperides. Bataille = Warw St Eur Phil Bataille = Warw. St. Eur. Phil. Bates 25: Celebrating 25 Years of Beam to Experiment = Aip Conf Proc Bates 25: Celebrating 25 Years of Beam to Experiment = Aip. Conf. Proc. Ba(ti,zr)o3-functional Materials: From Nanopowders to Bulk Ceramics = Nanotechnol Sci Tech Ba(ti,zr)o3-functional Materials: From Nanopowders to Bulk Ceramics = Nanotechnol. Sci. Tech. Bats and Forests Symposium = Bc Min For Res Progr Bats and Forests Symposium = Bc. Min. For. Res. Progr. Battelle Monographs = Battelle Monogr Battelle Monographs = Battelle Monogr. Battelle Technical Review = Battelle Tech Rev Battelle Technical Review = Battelle Tech. Rev. Batten Disease: Diagnosis, Treatment, and Research = Adv Genet Batten Disease: Diagnosis, Treatment, and Research = Adv. Genet. Batterer Intervention: Program Approaches and Criminal Justice Strategies = Crim Justice Law Enf Batterer Intervention: Program Approaches and Criminal Justice Strategies = Crim. Justice Law. Enf. Batteries and Supercapacitors = Elec Soc S Batteries and Supercapacitors = Elec. Soc. S. Battery Management Systems: Accurate State-of-charge Indication for Battery-powered Applications = Philips Res Book Ser Battery Management Systems: Accurate State-of-charge Indication for Battery-powered Applications = Philips. Res. Book. Ser. Battlefield Biomedical Technologies = P Soc Photo-opt Ins Battlefield Biomedical Technologies = P. Soc. Photo-opt. Ins. Battle for Welfare Rights: Politics and Poverty in Modern America = Polit Cult Mod Am Battle for Welfare Rights: Politics and Poverty in Modern America = Polit. Cult. Mod. Am. Battlefronts Real and Imagined: War, Border, and Identity in The Chinese Middle Period = New Middle Ages Battlefronts Real and Imagined: War, Border, and Identity in The Chinese Middle Period = New. Middle Ages. Battlespace Digitization and Network-centric Systems Iii = P Soc Photo-opt Ins Battlespace Digitization and Network-centric Systems Iii = P. Soc. Photo-opt. Ins. Battlespace Digitization and Network-centric Systems Iv = P Soc Photo-opt Ins Battlespace Digitization and Network-centric Systems Iv = P. Soc. Photo-opt. Ins. Battlespace Digitization and Network-centric Warfare Ii = Proc Spie Battlespace Digitization and Network-centric Warfare Ii = Proc. Spie. Battlespace Digitization and Network-centric Warfare Ii = P Soc Photo-opt Ins Battlespace Digitization and Network-centric Warfare Ii = P. Soc. Photo-opt. Ins. Battlespace Digitization and Network-centric Warfare = P Soc Photo-opt Ins Battlespace Digitization and Network-centric Warfare = P. Soc. Photo-opt. Ins. Battlespace Technologies: Network-enabled Information Dominance = Artech Hse Intel Inf Battlespace Technologies: Network-enabled Information Dominance = Artech. Hse. Intel. Inf. Baubetrieb = Vdi-buch Baubetrieb = Vdi-buch. Bauhinia = Bauhinia Bauingenieur = Bauingenieur-germany Bauingenieur = Bauingenieur-germany. Baulicher Und Gebaudetechnischer Brandschutz = Vdi Bericht Baulicher Und Gebaudetechnischer Brandschutz = Vdi. Bericht. Bauphysik = Bauphysik Bautechnik = Bautechnik Bayer CropScience Journal = Bayer CropSci J. Bayerische Akademie der Wissenschaften = Bayer. Akad. Wiss. Math.-Natur. Kl. Abh. (N.F.) Bayerische Akademie der Wissenschaften = Bayer. Akad. Wiss. Math.-Natur. Kl. Sitzungsber. Bayerische Akademie der Wissenschaften = Bayer. Akad. Wiss. Philos.-Hist. Kl. Sitzungsber. Bayerische Akademie der Wissenschaften. Jahrbuch = JbMuench Bayerische Akademie der Wissenschaften. Philosophisch-Historische Klasse. Abhandlungen = AbhMünchen Bayerische Akademie der Wissenschaften. Philosophisch-Historische Klasse. Sitzungsberichte = SBMuenchen Bayerische Vorgeschichtsblätter = BayVgBl Bayerische Vorgeschichtsblätter = BVBl Bayesian Analysis = Bayesian Anal Bayesian Analysis = Bayesian Anal. Bayesian Computation With R, Second Edition = Use R Bayesian Computation With R, Second Edition = Use. R. Bayesian Econometrics = Adv Econometrics Bayesian Econometrics = Adv. Econometrics Bayesian Inference and Maximum Entropy Methods in Science and Engineering = Aip Conf Proc Bayesian Inference and Maximum Entropy Methods in Science and Engineering = Aip. Conf. Proc. Bayesian Inference and Maximum Entropy Methods in Science and Engineering, Pt 2 = Aip Conf Proc Bayesian Inference and Maximum Entropy Methods in Science and Engineering, Pt 2 = Aip. Conf. Proc. Bayesian Inference for Inverse Problems = P Soc Photo-opt Ins Bayesian Inference for Inverse Problems = P. Soc. Photo-opt. Ins. Bayesian Item Response Modeling: Theory and Applications = Stat Soc Behav Sc Bayesian Item Response Modeling: Theory and Applications = Stat. Soc. Behav. Sc. Bayesian Methods for Data Analysis, Third Edition = Ch Crc Text Stat Sci Bayesian Methods for Data Analysis, Third Edition = Ch. Crc. Text. Stat. Sci. Bayesian Methods for Measures of Agreement = Ch Crc Biostat Ser Bayesian Methods for Measures of Agreement = Ch. Crc. Biostat. Ser. Bayesian Networks and Influence Diagrams: A Guide to Construction and Analysis = Inform Sci Stat Bayesian Networks and Influence Diagrams: A Guide to Construction and Analysis = Inform. Sci. Stat. Bayesian Reliability = Springer Ser Stat Bayesian Reliability = Springer. Ser. Stat. Bayesian Robustness = Inst Math S Bayesian Robustness = Inst. Math. S. Bayesian Statistics and Quality Modelling in The Agro-food Production Chain = Wag Ur Fron Bayesian Statistics and Quality Modelling in The Agro-food Production Chain = Wag. Ur. Fron. Baylor Dental Journal = Baylor Dent. J. Baylor law review = Bayl Law Rev Baylor Law Review = Baylor Law Rev Baylor Law Review = Baylor Law Rev. Baylor nursing educator = Baylor Nurs Educ Baylor Nursing Educator = Baylor Nurs. Educ. Bayreuther Mathematische Schriften = Bayreuth. Math. Schr. Baywoods Technical Communications Series = Baywoods Tech Commun Baywoods Technical Communications Series = Baywoods Tech. Commun. Bba Library = Bba Lib Bba Library = Bba Lib. Bbb 2001: Botanical Biodiversity and The Belgian Expertise, Proceedings = Scripta Botan Belg Bbb 2001: Botanical Biodiversity and The Belgian Expertise, Proceedings = Scripta. Botan. Belg. Bcl-2 Protein Family: Essential Regulators of Cell Death = Adv Exp Med Biol Bcl-2 Protein Family: Essential Regulators of Cell Death = Adv. Exp. Med. Biol. Bcpc Conference: Pests & Diseases 2000, Vols 1-3, Proceedings = Proc Brighton Crop Bcpc Conference: Pests & Diseases 2000, Vols 1-3, Proceedings = Proc. Brighton. Crop. Bcs Conference Series = Bcs Conference S Bcs Conference Series = Bcs Conference S. B C S Conference Series = Bcs Conf Series B C S Conference Series = Bcs. Conf. Series Bcsia Studies in International Security = Bcsia Stud Int Bcsia Studies in International Security = Bcsia Stud. Int. Bcsia Studies in International Security = Bcsia Stud Int Secur Bcsia Studies in International Security = Bcsia Stud. Int. Secur. BC studies = B C Stud Bctm Proceedings = Bctm Proc Bctm Proceedings = Bctm Proc. BDD : be-khol derakhekha da'ehu : ketav-'et le-'inyene Torah u-mada' = BDD Beach Nourishment Engineering and Management Considerations = Coastl Worl Beach Nourishment Engineering and Management Considerations = Coastl. Worl. Beam Control, Diagnostics, Standards, and Propagation = P Soc Photo-opt Ins Beam Control, Diagnostics, Standards, and Propagation = P. Soc. Photo-opt. Ins. Beam Cooling and Related Topics = Aip Conf Proc Beam Cooling and Related Topics = Aip. Conf. Proc. Beam Deflection and Scanning Technologies = P Soc Photo-opt Ins Beam Deflection and Scanning Technologies = P. Soc. Photo-opt. Ins. Beam Dynamics and Technology Issues for Mu(plus)mu(minus) Colliders = Aip Conf Proc Beam Dynamics and Technology Issues for Mu(plus)mu(minus) Colliders = Aip. Conf. Proc. Beam Dynamics Issues of High-luminosity Asymmetric Collider Rings = Aip Conf Proc Beam Dynamics Issues of High-luminosity Asymmetric Collider Rings = Aip. Conf. Proc. Beamed Energy Propulsion = Aip Conf Proc Beamed Energy Propulsion = Aip. Conf. Proc. Beam Halo Dynamics, Diagnostics, and Collimation = Aip Conf Proc Beam Halo Dynamics, Diagnostics, and Collimation = Aip. Conf. Proc. Beam Injection Assessment of Microstructures in Semiconductors, 2000 = Solid State Phenomen Beam Injection Assessment of Microstructures in Semiconductors, 2000 = Solid. State. Phenomen. Beam Injection Assessment of Microstructures in Semiconductors, 2000 = Sol St Phen Beam Injection Assessment of Microstructures in Semiconductors, 2000 = Sol. St. Phen. Beam Instrumentation - Proceedings of The Seventh Workshop = Aip Conf Proc Beam Instrumentation - Proceedings of The Seventh Workshop = Aip. Conf. Proc. Beam Instrumentation Workshop 2000 = Aip Conf Proc Beam Instrumentation Workshop 2000 = Aip. Conf. Proc. Beam Instrumentation Workshop 2002 = Aip Conf Proc Beam Instrumentation Workshop 2002 = Aip. Conf. Proc. Beam Instrumentation Workshop 2004 = Aip Conf Proc Beam Instrumentation Workshop 2004 = Aip. Conf. Proc. Beam Instrumentation Workshop 2006 = Aip Conf Proc Beam Instrumentation Workshop 2006 = Aip. Conf. Proc. Beam Instrumentation Workshop = Aip Conf Proc Beam Instrumentation Workshop = Aip. Conf. Proc. Beams 2002 = Aip Conf Proc Beams 2002 = Aip. Conf. Proc. Beam Shaping and Control With Nonlinear Optics = Nato Adv Sci I B-phy Beam Shaping and Control With Nonlinear Optics = Nato. Adv. Sci. I. B-phy. Beam-solid Interactions for Materials Synthesis and Characterization = Mater Res Soc Symp P Beam-solid Interactions for Materials Synthesis and Characterization = Mater. Res. Soc. Symp. P. Beam Solid Interactions : Fundamentals and Applications = Mater Res Soc Symp P Beam Solid Interactions : Fundamentals and Applications = Mater. Res. Soc. Symp. P. Beam-solid Interactions : Physical Phenomena = Mater Res Soc Symp P Beam-solid Interactions : Physical Phenomena = Mater. Res. Soc. Symp. P. Beam Stability and Nonlinear Dynamics = Aip Conf Proc Beam Stability and Nonlinear Dynamics = Aip. Conf. Proc. Bearing Dreams, Shaping Visions = Assoc As Am Bearing Dreams, Shaping Visions = Assoc. As. Am. Bearing of Basic Research On Clinical Otolaryngology = Adv Oto-rhino-laryng Bearing of Basic Research On Clinical Otolaryngology = Adv. Oto-rhino-laryng. Bearing Steel Technology-advances and State of The Art in Bearing Steel Quality Assurance: 7th Volume = Am Soc Test Mater Bearing Steel Technology-advances and State of The Art in Bearing Steel Quality Assurance: 7th Volume = Am. Soc. Test. Mater. Bearing Steel Technology = Am Soc Test Mater Bearing Steel Technology = Am. Soc. Test. Mater. Bearing The European North: The Northern Dimension and Alternative Scenarios = U Lap A C R Bearing The European North: The Northern Dimension and Alternative Scenarios = U. Lap. A. C. R. Bearing Witness to The Holocaust 1939-1989 = Symposium S Bearing Witness to The Holocaust 1939-1989 = Symposium. S. Bears - Their Biology and Management = Int C Bear Bears - Their Biology and Management = Int. C. Bear. Beauty's Appeal: Measure and Excess = Anal Hus Yb Beauty's Appeal: Measure and Excess = Anal. Hus. Yb. Bec 2008: 2008 International Biennial Baltic Electronics Conference, Proceedings = Pro Bienn Balt El C Bec 2008: 2008 International Biennial Baltic Electronics Conference, Proceedings = Pro. Bienn. Balt. El. C. Beckett and Religion: Beckett/aesthetics/politics = Sam Beckett Today Beckett and Religion: Beckett/aesthetics/politics = Sam. Beckett Today. Beckett in The 1990s = Sam Beckett Today Beckett in The 1990s = Sam. Beckett Today. Becketts Masculinity = New Interpret Becket Becketts Masculinity = New. Interpret. Becket. Becoming An Urban Physics and Math Teacher: Infinite Potential = Sci Technol Educ Lib Becoming An Urban Physics and Math Teacher: Infinite Potential = Sci. Technol. Educ. Lib. Becoming A Professional: An Interdisciplinary Analysis of Professional Learning = Lifelong Learn Book Becoming A Professional: An Interdisciplinary Analysis of Professional Learning = Lifelong. Learn. Book. Becoming Loquens = Boch Publ Evolu Cult Becoming Loquens = Boch. Publ. Evolu. Cult. Becoming Muslim: Western Women's Conversions to Islam = Cult Mind Soc Becoming Muslim: Western Women's Conversions to Islam = Cult. Mind. Soc. Becoming Virtual: Knowledge Management and Transformation of The Distributed Organization = Contrib Manag Sci Becoming Virtual: Knowledge Management and Transformation of The Distributed Organization = Contrib. Manag. Sci. Becoming Visible: Women's Presence in Late Nineteenth-century America = Dqr Stud Lit Becoming Visible: Women's Presence in Late Nineteenth-century America = Dqr. Stud. Lit. Bedi Kartlisa. Revue de kartvélologie = BediKart Bedside nurse = Bedside Nurse Bedside Nurse = Bedside Nurse Bee and The Eagle: Napoleonic France and The End of The Holy Roman Empire, 1806 = War Cult Soc 1750-18 Bee and The Eagle: Napoleonic France and The End of The Holy Roman Empire, 1806 = War. Cult. Soc. 1750-18. Beech Bark Disease: Proceedings of The Beech Bark Disease Symposium = Usda Fs Ne Res St Gt Beech Bark Disease: Proceedings of The Beech Bark Disease Symposium = Usda. Fs. Ne. Res. St. Gt. Beer and Wine Production: Analysis, Characterization, and Technological Advances = Acs Sym Ser Beer and Wine Production: Analysis, Characterization, and Technological Advances = Acs. Sym. Ser. Bee World = Bee World Before and After Avicenna = Islam Ph Th Sci Before and After Avicenna = Islam. Ph. Th. Sci. Before Auschwitz: Irene Nemirovsky and The Cultural Landscape of Inter-war France = Rout Stud Tw Cen Lit Before Auschwitz: Irene Nemirovsky and The Cultural Landscape of Inter-war France = Rout. Stud. Tw. Cen. Lit. Before Haiti: Race and Citizenship in French Saint-domingue = Am Early Mod Atl Wor Before Haiti: Race and Citizenship in French Saint-domingue = Am. Early. Mod. Atl. Wor. Before Harlem: The Black Experience in New York City Before World War I = Polit Cult Mod Am Before Harlem: The Black Experience in New York City Before World War I = Polit. Cult. Mod. Am. Before Modernism Was: Modern History and The Constituency of Writing = Lang Discourse Soc Before Modernism Was: Modern History and The Constituency of Writing = Lang. Discourse. Soc. Begg journal of orthodontic theory and treatment = Begg J Orthod Theory Treat Begg Journal of Orthodontic Theory and Treatment = Begg J. Orthod. Theory Treat. Beginner's Guide to R = Use R Beginner's Guide to R = Use. R Beginnings (American Holistic Nurses' Association) = Beginnings Beginnings = Beginnings Beginnings of Piezoelectricity: A Study in Mundane Physics = Bost Stud Philos Sci Beginnings of Piezoelectricity: A Study in Mundane Physics = Bost. Stud. Philos. Sci. Beginnings of Political Economy: Johann Heinrich Gottlob Von Justi = Eur Herit Econ Soc S Beginnings of Political Economy: Johann Heinrich Gottlob Von Justi = Eur. Herit. Econ. Soc. S. Beginning to Remember: The Past in The Indonesian Present = Crit Dialogues South Beginning to Remember: The Past in The Indonesian Present = Crit. Dialogues. South. Begriff Der Dichtung in Der Fruhen Neuzeit = Hist Hermen Ser Stud Begriff Der Dichtung in Der Fruhen Neuzeit = Hist. Hermen. Ser. Stud. Begriff Der Homogenitat in Der Verfassungslehre Und Europarechtswissenschaft = Beitr Ausl Offentl R Begriff Der Homogenitat in Der Verfassungslehre Und Europarechtswissenschaft = Beitr. Ausl. Offentl. R. Begrunden Und Rechtfertigen = Quellen Stud Philos Begrunden Und Rechtfertigen = Quellen. Stud. Philos. Behauptete Subjektivitat: Eine Skizze Zur Deutschsprachigen Judischen Autobiographie Im20 Jahrhundert = Conditio Jud Behauptete Subjektivitat: Eine Skizze Zur Deutschsprachigen Judischen Autobiographie Im20 Jahrhundert = Conditio. Jud. Behavioral and brain functions : BBF = Behav Brain Funct Behavioral and Brain Functions = Behav Brain Funct Behavioral and Brain Functions = Behav. Brain Funct. Behavioral and Brain Sciences=Behav Brain Sci;; Behavioral and Brain Sciences = Behav Brain Sci Behavioral and Brain Sciences = Behav. Brain Sci. Behavioral and Chemical Ecology = Environ Res Adv Behavioral and Chemical Ecology = Environ. Res. Adv. Behavioral and cognitive neuroscience reviews = Behav Cogn Neurosci Rev Behavioral and Cognitive Neuroscience Reviews = Behav. Cogn. Neurosci. Rev. Behavioral and Distributional Effects of Environmental Policy = Nber Conf R Behavioral and Distributional Effects of Environmental Policy = Nber. Conf. R. Behavioral and Morphological Asymmetries in Vertebrates = Mol B Int U Behavioral and Morphological Asymmetries in Vertebrates = Mol. B. Int. U. Behavioral and neural biology = Behav Neural Biol Behavioral and Neural Biology = Behav Neural Biol Behavioral and Neural Biology = Behav. Neural Biol. Behavioral Aspects of Cardiovascular Disease = Persp Beh M Behavioral Aspects of Cardiovascular Disease = Persp. Beh. M. Behavioral assessment = Behav Assess Behavioral Assessment = Behav Assess Behavioral Assessment = Behav. Assess. Behavioral biology = Behav Biol Behavioral Biology = Behav Biol Behavioral Biology = Behav. Biol. Behavioral Characteristics of Residual Soils = Geotech Sp Behavioral Characteristics of Residual Soils = Geotech. Sp. Behavioral Disorders = Behav Disorders Behavioral Disorders = Behav. Disorders Behavioral ecology and sociobiology = Behav Ecol Sociobiol Behavioral Ecology and Sociobiology = Behav Ecol Sociobiol Behavioral Ecology and Sociobiology = Behav. Ecol. Sociobiol. Behavioral Ecology = Behav Ecol Behavioral Ecology = Behav. Ecol. Behavioral ecology : official journal of the International Society for Behavioral Ecology = Behav Ecol Behavioral engineering = Behav Eng Behavioral Engineering = Behav Eng Behavioral Engineering = Behav. Eng. Behavioral Health As Primary Care: Beyond Efficacy to Effectiveness = Hlthc Util Behavioral Health As Primary Care: Beyond Efficacy to Effectiveness = Hlthc. Util. Behavioral healthcare = Behav Healthc Behavioral Healthcare Tomorrow = Behav Healthc Tom Behavioral Healthcare Tomorrow = Behav. Healthc. Tom. Behavioral healthcare tomorrow = Behav Healthc Tomorrow Behavioral Healthcare Tomorrow = Behav. Healthc. Tomorrow Behavioral Interventions = Behav Intervent Behavioral Interventions = Behav. Intervent. Behavioral Issues in Autism = Curr I Aut Behavioral Issues in Autism = Curr. I. Aut. Behavioral Medicine=Behav Med;; Behavioral Medicine = Behav Med Behavioral Medicine = Behav. Med. Behavioral medicine update : a publication of the Society of Behavioral Medicine = Behav Med Update Behavioral medicine (Washington, D.C.) = Behav Med Behavioral Neurobiology of Anxiety and Its Treatment = Curr Top Behav Neuro Behavioral Neurobiology of Anxiety and Its Treatment = Curr. Top. Behav. Neuro. Behavioral Neurobiology of Bipolar Disorder and Its Treatment = Curr Top Behav Neuro Behavioral Neurobiology of Bipolar Disorder and Its Treatment = Curr. Top. Behav. Neuro. Behavioral Neurobiology of Birdsong = Ann Ny Acad Sci Behavioral Neurobiology of Birdsong = Ann. Ny. Acad. Sci. Behavioral Neurobiology of Eating Disorders = Curr Top Behav Neuro Behavioral Neurobiology of Eating Disorders = Curr. Top. Behav. Neuro. Behavioral Neurobiology of Schizophrenia and Its Treatment = Curr Top Behav Neuro Behavioral Neurobiology of Schizophrenia and Its Treatment = Curr. Top. Behav. Neuro. Behavioral Neurobiology of The Endocannabinoid System = Curr Top Behav Neuro Behavioral Neurobiology of The Endocannabinoid System = Curr. Top. Behav. Neuro. Behavioral neuropsychiatry = Behav Neuropsychiatry Behavioral Neuropsychiatry = Behav. Neuropsychiatry Behavioral neuroscience = Behav Neurosci Behavioral Neuroscience=Behav Neurosci;; Behavioral Neuroscience = Behav Neurosci Behavioral Neuroscience = Behav. Neurosci. Behavioral Neuroscience of Drug Addiction = Curr Top Behav Neuro Behavioral Neuroscience of Drug Addiction = Curr. Top. Behav. Neuro. Behavioral Psychology-psicologia Conductual = Behav Psychol Behavioral Psychology-psicologia Conductual = Behav. Psychol. Behavioral Research in Accounting=Behavioral Res. Acc. Behavioral science = Behav Sci Behavioral Science = Behav Sci Behavioral Science = Behav. Sci. Behavioral Sciences and the Law = Behav. Sci. Law Behavioral Sciences and The Law=Behav Sci Law;; Behavioral sciences & the law = Behav Sci Law Behavioral Sciences & The Law = Behav Sci Law Behavioral Sciences & The Law = Behav. Sci. Law Behavioral sleep medicine = Behav Sleep Med Behavioral Sleep Medicine = Behav Sleep Med Behavioral Sleep Medicine = Behav. Sleep Med. Behavioral Sleep Medicine = Behav. Sleep. Med. Behavioral & Social Sciences Librarian = Behav Soc Sci Libr Behavioral & Social Sciences Librarian = Behav. Soc. Sci. Libr. Behavioral & social sciences librarian = Behav Soc Sci Librar Behavioral Technologies for Fish Guidance = Am Fish S S Behavioral Technologies for Fish Guidance = Am. Fish S. S. Behavioral Theories and Interventions for Autism = Neurodev Dis Lab Cli Behavioral Theories and Interventions for Autism = Neurodev. Dis. Lab. Cli. Behavior Analyst = Behav Analyst Behavior Analyst = Behav. Analyst Behavior and Mechanics of Multifunctional and Composite Materials 2007 = Proc Spie Behavior and Mechanics of Multifunctional and Composite Materials 2007 = Proc. Spie. Behavior and Mechanics of Multifunctional and Composite Materials 2007 = P Soc Photo-opt Ins Behavior and Mechanics of Multifunctional and Composite Materials 2007 = P. Soc. Photo-opt. Ins. Behavior and Mechanics of Multifunctional and Composite Materials 2008 = Proc Spie Behavior and Mechanics of Multifunctional and Composite Materials 2008 = Proc. Spie. Behavior and Mechanics of Multifunctional Materials and Composites 2010 = Proc Spie Behavior and Mechanics of Multifunctional Materials and Composites 2010 = Proc. Spie. Behavior and Mechanics of Multifunctional Materials and Composites 2010 = P Soc Photo-opt Ins Behavior and Mechanics of Multifunctional Materials and Composites 2010 = P. Soc. Photo-opt. Ins. Behavior and Mechanics of Multifunctional Materials and Composites 2011 = Proc Spie Behavior and Mechanics of Multifunctional Materials and Composites 2011 = Proc. Spie. Behavior and Philosophy = Behav Philos Behavior and Philosophy = Behav. Philos. Behavior genetics = Behav Genet Behavior Genetics=Behav Genet;; Behavior Genetics = Behav Genet Behavior Genetics = Behav. Genet. Behavior Genetics Principles: Perspectives in Development, Personality, and Psychopathology = Decade Behav Behavior Genetics Principles: Perspectives in Development, Personality, and Psychopathology = Decade. Behav. Behaviorism = Behaviorism Behaviorists for Social Action journal = Behav Soc Action J Behaviormetrika = Behaviormetrika Behavior modification = Behav Modif Behavior Modification=Behav Modif;; Behavior Modification = Behav Modif Behavior Modification = Behav. Modif. Behavior of Pipe Piles in Sand: Plugging and Pore-water Pressure Generation During Installation and Loading = Springer Ser Geomech Behavior of Pipe Piles in Sand: Plugging and Pore-water Pressure Generation During Installation and Loading = Springer. Ser. Geomech. Behavior of Plants Subject to Environmental Stress = Colloq Inra Behavior of Plants Subject to Environmental Stress = Colloq. Inra. Behavior of Systems in The Space Environment = Nato Adv Sci Inst Se Behavior of Systems in The Space Environment = Nato. Adv. Sci. Inst. Se. Behavior research methods = Behav Res Methods Behavior Research Methods = Behav Res Methods Behavior Research Methods = Behav. Res. Methods Behavior Research Methods & Instrumentation = Behav Res Meth Instr Behavior Research Methods & Instrumentation = Behav. Res. Meth. Instr. Behavior research methods, instruments, & computers : a journal of the Psychonomic Society, Inc = Behav Res Methods Instrum Comput Behavior Research Methods Instruments & Computers = Behav Res Meth Ins C Behavior Research Methods Instruments & Computers = Behav. Res. Meth. Ins. C. Behavior Research Methods Instruments & Computers = Behav Res Meth Instr Behavior Research Methods Instruments & Computers = Behav. Res. Meth. Instr. Behavior Research of Severe Developmental Disabilities = Behav Res Severe Dev Behavior Research of Severe Developmental Disabilities = Behav. Res. Severe Dev. Behavior Science Notes = Behav Sci Notes Behavior Science Notes = Behav. Sci. Notes Behavior science research = Behav Sci Res Behavior Science Research = Behav Sci Res Behavior Science Research = Behav. Sci. Res. Behavior therapy = Behav Ther Behavior Therapy = Behav Ther Behavior Therapy = Behav. Ther. Behavioural Analysis and Modification = Behav Anal Modif Behavioural Analysis and Modification = Behav. Anal. Modif. Behavioural and Cognitive Psychotherapy = Behav Cogn Psychoth Behavioural and Cognitive Psychotherapy = Behav. Cogn. Psychoth. Behavioural Approaches in Neuropsychological Rehabilitation: Optimising Rehabilitation Procedures = Neuropsycholog Rehab Behavioural Approaches in Neuropsychological Rehabilitation: Optimising Rehabilitation Procedures = Neuropsycholog. Rehab. Behavioural brain research = Behav Brain Res Behavioural Brain Research=Behav Brain Res;; Behavioural Brain Research = Behav Brain Res Behavioural Brain Research = Behav. Brain Res. Behavioural Ecology and Sociobiology = Behav. Ecol. Sociobiol. Behavioural Ecology = Behav. Ecol. Behavioural Mechanisms of Food Selection = Nato Adv Sci I G-eco Behavioural Mechanisms of Food Selection = Nato. Adv. Sci. I. G-eco. Behavioural neurology = Behav Neurol Behavioural Neurology = Behav Neurol Behavioural Neurology = Behav. Neurol. Behavioural pharmacology = Behav Pharmacol Behavioural Pharmacology=Behav Pharmacol;; Behavioural Pharmacology = Behav Pharmacol Behavioural Pharmacology = Behav. Pharmacol. Behavioural Processes = Behav Process Behavioural Processes = Behav. Process. Behavioural processes = Behav Processes Behavioural Psychotherapy = Behav Psychother Behavioural Psychotherapy = Behav. Psychother. Behavioural Sciences and Community Development = Behav Sci Commun Dev Behavioural Sciences and Community Development = Behav. Sci. Commun. Dev. Behavioural Sciences and Rural Development = Behav Sci Rural Dev Behavioural Sciences and Rural Development = Behav. Sci. Rural Dev. Behaviour Analysis Letters = Behav Anal Lett Behaviour Analysis Letters = Behav. Anal. Lett. Behaviour and Rationality in Corporate Governance = Rout Stud Corpor Gov Behaviour and Rationality in Corporate Governance = Rout. Stud. Corpor. Gov. Behaviour = Behaviour Behaviour Change = Behav Change Behaviour Change = Behav. Change Behaviour change : journal of the Australian Behaviour Modification Association = Behav Change Behaviour & Information Technology = Behav Inform Technol Behaviour & Information Technology = Behav. Inform. Technol. Behaviour & information technology = Behav Inf Technol Behaviour Monitoring and Interpretation - Bmi - Smart Environments = Amb Intell Smart Env Behaviour Monitoring and Interpretation - Bmi - Smart Environments = Amb. Intell. Smart Env. Behaviour research and therapy = Behav Res Ther Behaviour Research and Therapy=Behav Res Ther;; Behaviour Research and Therapy = Behav Res Ther Behaviour Research and Therapy = Behav. Res. Ther. Behcets Disease = Infl Dis Th Behcets Disease = Infl. Dis. Th. Behcets Disease = Int Congr Ser Behcets Disease = Int. Congr. Ser. Behring Institute Mitteilungen = Behring Inst Mitt Behring Institute Mitteilungen = Behring Inst. Mitt. Behring Institute Mitteilungen = Behr Inst Mitt Behring Institute Mitteilungen = Behr. Inst. Mitt. Behring Institute Mitteilungen (Marburg/Lahn=Behring Inst Mitt;; Behring Institute Mitteilungen, No 84 = Behr Inst Mitt Behring Institute Mitteilungen, No 84 = Behr. Inst. Mitt. Behring Institute Mitteilungen, No 88 = Behr Inst Mitt Behring Institute Mitteilungen, No 88 = Behr. Inst. Mitt. Behring Institute Mitteilungen, No 90 = Behr Inst Mitt Behring Institute Mitteilungen, No 90 = Behr. Inst. Mitt. Behring Institute Mitteilungen, No 93, December 1993 = Behr Inst Mitt Behring Institute Mitteilungen, No 93, December 1993 = Behr. Inst. Mitt. Beihefte Der Konjunkturpolitik : Zeitschrift Fur Angewandte Wirtschaftsforschung = Beih Konjun Beihefte Der Konjunkturpolitik : Zeitschrift Fur Angewandte Wirtschaftsforschung = Beih. Konjun. Beihefte zum Botanischen Centralblatt = Beih. Bot. Cent.bl. Beihefte Zur Iberoromania = Beih Iberoromania Beihefte Zur Iberoromania = Beih. Iberoromania Beihefte Zur Zeitschrift Fur Deutsche Philologie = Beih Zeit Deut Phil Beihefte Zur Zeitschrift Fur Deutsche Philologie = Beih. Zeit. Deut. Phil. Beihefte Zur Zeitschrift Fur Die Alttestamentliche Wissenschaft = Beih Z Alttest Wiss Beihefte Zur Zeitschrift Fur Die Alttestamentliche Wissenschaft = Beih. Z. Alttest. Wiss. Beihefte Zur Zeitschrift Fur Die Neutestamentliche Wissenschaft Und Die Kunde Der Alteren Kirche = Beih Z Neutest Wiss Beihefte Zur Zeitschrift Fur Die Neutestamentliche Wissenschaft Und Die Kunde Der Alteren Kirche = Beih. Z. Neutest. Wiss. Beihefte Zur Zeitschrift Fur Romanische Philologie = Beih Z Roman Philol Beihefte Zur Zeitschrift Fur Romanische Philologie = Beih. Z. Roman. Philol. Beiheft zu den Annalen der Schweizerischen meteorologischen Anstalt = Beih. Ann. Schweiz. meteorol. Anst. Beiheft zu den Zeitschriften des Schweiz. Forstvereins = Beih. Z. Schweiz. Forstver. Beiheft zum Jahrbuch der Schweizerischen naturforschenden Gesellschaft = Beih. Jahrb. Schweiz. nat.forsch. Ges. Beiheft zu Nova Hedwigia = Beih. Nova Hedwigia Beiheft zur Schweizerischen Zeitschrift für Forstwesen = Beih. Schweiz. Z. Forst.wes. Beiheft zur Zeitschrift für Mykologie = Beih. Z. Mykol. Beijing: A Concise History = Routl Stud Mod Hist Beijing: A Concise History = Routl. Stud. Mod. Hist. Beijing Daxue Xuebao = Beijing Daxue Xuebao Ziran Kexue Ban Beijing Da Xue Xue Bao. Yi Xue Ban (Journal of Peking University. Health Sciences) = Beijing Da Xue Xue Bao Beijing Institute of Technology = J. Beijing Inst. Tech. Beijing Shifan Daxue Xuebao = Beijing Shifan Daxue Xuebao Beijing's Tibet Policy: Securing Sovereignty and Legitimacy = Pol Stud Beijing's Tibet Policy: Securing Sovereignty and Legitimacy = Pol. Stud. Beijing yi ke da xue xue bao = Journal of Beijing Medical University|Beijing Yi Ke Da Xue Xue Bao Beilstein journal of organic chemistry = Beilstein J Org Chem Beilstein Journal of Organic Chemistry = Beilstein J Org Chem Beilstein Journal of Organic Chemistry = Beilstein J. Org. Chem. Being and Becoming A Management Education Scholar = Res Manag Educ Dev Being and Becoming A Management Education Scholar = Res. Manag. Educ. Dev. Being and Dialectic: Metaphysics and Culture = Suny Se Heg Being and Dialectic: Metaphysics and Culture = Suny. Se. Heg. Being An Expert Professional Practitioner: The Relational Turn in Expertise = Prof Pract-based Lea Being An Expert Professional Practitioner: The Relational Turn in Expertise = Prof. Pract-based. Lea. Being A Person and Telling A Story = Quellen Stud Philos Being A Person and Telling A Story = Quellen. Stud. Philos. Being: Developments in Contemporary Metaphysics = Roy I Ph S Being: Developments in Contemporary Metaphysics = Roy. I. Ph. S. Being in The Pampas: The Question of Being in Argentine Literature = Int Stud Philos Mono Being in The Pampas: The Question of Being in Argentine Literature = Int. Stud. Philos. Mono. Being No One: The Self-model Theory of Subjectivity = Bradford Books Being No One: The Self-model Theory of Subjectivity = Bradford. Books. Being Versus Word in Paul Tillich's Theology? = Theol Bibl Topelmann Being Versus Word in Paul Tillich's Theology? = Theol. Bibl. Topelmann. Being Versus Word in Paul Tillich's Theology? = Theol Bilb Being Versus Word in Paul Tillich's Theology? = Theol. Bilb. Beiruter Texte Und Studien = Beiruter Text Stud Beiruter Texte Und Studien = Beiruter Text. Stud. Beitraege zur Chemischen Physiologie und Pathologie = Beitr. Chem. Physiol. Pathol. Beitraege zur Gerichtlichen Medizin = Beitr. Gerichtl. Med. Beitraege zur Physik der Atmosphaere = Beitr. Phys. Atmos. Beitrage Aus Der Plasmaphysik-contributions to Plasma Physics = Beit Plasmaphys-cont Beitrage Aus Der Plasmaphysik-contributions to Plasma Physics = Beit. Plasmaphys-cont. Beiträge für die Forstwirtschaft = Beitr. Forstwirtsch. Beiträge für Forstwirtschaft und Landschaftsökologie = Beitr. Forstwirtsch. Landsch.ökol. Beitrage zu Infusionstherapie und klinische Ernahrung = Beitr Infusionther Klin Ernahr Beitrage zu Infusionstherapie und Klinische Ernahrung = Beitr. Infusionther. Klin. Ernahr. Beitrage Zum Auslandischen Offentlichen Recht Und Volkerrecht = Beitr Ausland Offent Beitrage Zum Auslandischen Offentlichen Recht Und Volkerrecht = Beitr. Ausland. Offent. Beitrage Zum Auslandischen Offentlichen Recht Und Volkerrecht = Beitr Ausl Offentl R Beitrage Zum Auslandischen Offentlichen Recht Und Volkerrecht = Beitr. Ausl. Offentl. R. Beitrage Zum Auslandischen Und Internationalen Privatrecht = Beitr Ausland Int Pr Beitrage Zum Auslandischen Und Internationalen Privatrecht = Beitr. Ausland. Int. Pr. Beiträge zum Naturschutz in der Schweiz = Beitr. Nat.schutz Schweiz Beiträge zum römischen Oberwinterthur – Vitudurum. Ausgrabungen im Unteren Bühl = Vitudurum Beiträge zur Algebra und Geometrie = Beiträge Algebra Geom. Beiträge zur allgemeinen und vergleichenden Archäologie = BAVA Beiträge zur Allgemeinen und Vergleichenden Archäologie = BAVA Beitrage Zur Altertumskunde = Beitr Altertumskunde Beitrage Zur Altertumskunde = Beitr. Altertumskunde Beiträge zur Avifauna des Rheinlandes = Beitr. Avifauna Rheinl. Beiträge zur Biologie der Pflanzen = Beitr. Biol. Pflanzen Beitrage zur deutschen Philologie = Beitr Dtsch Philol Beiträge zur Erschließung hellenistischer und kaiserzeitlicher Skulptur und Architektur = BeitrESkAr Beiträge zur geobotanischen Landesaufnahme der Schweiz = Beitr. geobot. Landesaufn. Schweiz Beiträge zur Geologie der Schweiz: Hydrologie = Beitr. Geol. Schweiz: Hydrol. Beitrage zur gerichtlichen Medizin = Beitr Gerichtl Med Beitrage zur Gerichtlichen Medizin = Beitr. Gerichtl. Med. Beitrage Zur Gerichtlichen Medizin=Beitr Gerichtl Med;; Beitrage Zur Geschichte Der Arbeiterbewegung = Beitr Gesch Arbeit Beitrage Zur Geschichte Der Arbeiterbewegung = Beitr. Gesch. Arbeit. Beitrage zur Geschichte der Arbeiterbewegung : BZG = Beitr Gesch Arb Beitrage Zur Geschichte Der Deutschen Sprache Und Literatur = Beitr Gesch Deut Spr Beitrage Zur Geschichte Der Deutschen Sprache Und Literatur = Beitr. Gesch. Deut. Spr. Beitrage zur Geschichte der Medizin und ihrer Nebengebiete = Beitr Gesch Med Nebengeb Beitrage zur Geschichte der Pharmazie und ihrer Nachbargebiete = Beitr Gesch Pharm Ihrer Nachbargeb Beitrage zur Hochschul- und Wissenschaftsgeschichte Erfurts / herausgegeben vom Rektor der Medizinischen Akademie Erfurt = Beitr Hochsch Wissenschaftsgesch Erfurts Beiträge zur Hydrologie der Schweiz = Beitr. Hydrol. Schweiz Beitrage zur Hygiene und Epidemiologie = Beitr Hyg Epidemiol Beitrage zur Hygiene und Epidemiologie = Beitr. Hyg. Epidemiol. Beitrage zur Infusionstherapie = Beitr. Infusionsther. Beitrage Zur Infusionstherapie/contributions to Infusion Therapy = Beitr Infus Beitrage Zur Infusionstherapie/contributions to Infusion Therapy = Beitr. Infus. Beitrage zur Infusionstherapie und Transfusionsmedizin = Beitr. Infusionsther. Transfusionsmed. Beitrage Zur Infusionstherapie Und Transfusionsmedizin=Beitr Infusionsther Transfusionsmed;; Beitrage Zur Intensiv Und Notfallmedizin = Beitr Inten Beitrage Zur Intensiv Und Notfallmedizin = Beitr. Inten. Beiträge zur Jagd- und Wildforschung = Beitr. Jagd- Wildforsch. Beitrage zur Klinik der Tuberkulose und spezifischen Tuberkulose-Forschung = Beitr Klin Tuberk Spezif Tuberkuloseforsch Beitrage Zurklinik Und Ereoschung Der Tuberkulose Und Der Lungenkrankheiten = Beitr Klin Erforsch Beitrage Zurklinik Und Ereoschung Der Tuberkulose Und Der Lungenkrankheiten = Beitr. Klin. Erforsch. Beitrage zur Klinik und Erforschung der Tuberkulose und der Lungenkrankheiten = Beitr Klin Erforsch Tuberk Lungenkr Beitrage zur Klinik und Erforschung der Tuberkulose und der Lungenkrankheiten = Beitr. Klin. Erforsch. Tuberk. Lungenkr. Beitrage zur klinischen Chirurgie = Beitr Klin Chir Beitrage zur klinischen Neurologie und Psychiatrie = Beitr Klin Neurol Psychiatr Beitrage zur Klinischen Neurologie und Psychiatrie = Beitr. Klin. Neurol. Psychiatr. Beitrage Zur Konfliktforschung = Beitr Konfliktforsch Beitrage Zur Konfliktforschung = Beitr. Konfliktforsch. Beitrage zur Krebsforschung = Beitr Krebsforsch Beitrage zur Krebsforschung = Beitr. Krebsforsch. Beiträge zur Kryptogamenflora der Schweiz = Beitr. Kryptogamenflora Schweiz Beitrage Zur Meereskunde = Beitr Meereskd Beitrage Zur Meereskunde = Beitr. Meereskd. Beitrage Zur Musikwissenschaft = Beitr Musikwiss Beitrage Zur Musikwissenschaft = Beitr. Musikwiss. Beiträge zur Namenforschung = BeitrNamF Beiträge zur Namenforschung = BN Beiträge zur naturkundlichen Forschung in Südwestdeutschland = Beitr. nat.kdl. Forsch. Südwestdtschl. Beitrage zur Neurochirurgie = Beitr Neurochir Beitrage zur Neurochirurgie = Beitr. Neurochir. Beitrage Zur Okologischen Technologie = Beitr Okol Technol Beitrage Zur Okologischen Technologie = Beitr. Okol. Technol. Beitrage zur Orthopadie und Traumatologie = Beitr Orthop Traumatol Beitrage zur Orthopadie und Traumatologie = Beitr. Orthop. Traumatol. Beitrage zur Pathologie = Beitr Pathol Beitrage zur Pathologie = Beitr. Pathol. Beitrage Zur Pathologie = Beitr Pathol Beitrage Zur Pathologie = Beitr. Pathol. Beitrage zur pathologischen Anatomie und zur allgemeinen Pathologie = Beitr Pathol Anat Beitrage zur Pathologischen Anatomie und zur Allgemeinen Pathologie = Beitr. Pathol. Anat. Beitrage Zur Pathologischen Anatomie Und Zur Allgemeinen Pathologie = Beitr Pathol Anat Al Beitrage Zur Pathologischen Anatomie Und Zur Allgemeinen Pathologie = Beitr. Pathol. Anat. Al. Beitrage zur Rheumatologie = Beitr Rheumatol Beitrage zur Rheumatologie = Beitr. Rheumatol. Beitrage Zur Romanischen Philologie = Beitr Roman Philol Beitrage Zur Romanischen Philologie = Beitr. Roman. Philol. Beitrage zur Sexualforschung = Beitr Sexualforsch Beitrage zur Sexualforschung = Beitr. Sexualforsch. Beitrage zur Silikose-Forschung = Beitr Silikoseforsch Beitrage zur Silikose-Forschung = Beitr. Silikoseforsch. Beitrage zur Silikose-Forschung (Pneumokoniose) = Beitr Silikoseforsch Pneumokoniose Beitrage zur Silikose-Forschung. Pneumokoniose = Beitr. Silikoseforsch. Pneumokoniose Beiträge zur Sudanforschung = BeitrSudanF Beitrage Zur Tabakforschung International = Beitr Tabakforsch Beitrage Zur Tabakforschung International = Beitr. Tabakforsch. Beitrage Zur Tropischen Landwirtschaft Und Veterinarmedizin = Beitr Trop Landwirt Beitrage Zur Tropischen Landwirtschaft Und Veterinarmedizin = Beitr. Trop. Landwirt. Beitrage zur tropischen Landwirtschaft und Veterinarmedizin = Beitr Trop Landwirtsch Veterinarmed Beitrage zur Tropischen Landwirtschaft und Veterinarmedizin = Beitr. Trop. Landwirtsch. Veterinarmed. Beitrage zur wurttembergischen Apothekengeschichte = Beitr Wurttemb Apothekengesch Beitrage Zur Zuchtungsforschung = Beitrage Zf Beitrage Zur Zuchtungsforschung = Beitrage Zf. B E Journal of Economic Analysis & Policy = Be J Econ Anal Poli B E Journal of Economic Analysis & Policy = Be. J. Econ. Anal. Poli. B E Journal of Macroeconomics = Be J Macroecon B E Journal of Macroeconomics = Be. J. Macroecon. B E Journal of Theoretical Economics = Be J Theor Econ B E Journal of Theoretical Economics = Be. J. Theor. Econ. BELCAST journal of Belizean affairs = Belcast J Belizean Aff Beleid & maatschappij = Beleid Maatsch Belfagor = Belfagor Belgian Journal of Botany = Belg J Bot Belgian Journal of Botany = Belg. J. Bot. Belgian Journal of Linguistics = Belg J Ling Belgian Journal of Linguistics = Belg. J. Ling. Belgian Journal of Operations Research Statistics and Computer Science (JORBEL) = Belg. J. Oper. Res. Statist. Comput. Sci. Belgian Journal of Zoology = Belg J Zool Belgian Journal of Zoology = Belg. J. Zool. Belgisch tijdschrift voor geneeskunde = Belg Tijdschr Geneesk Belgisch Tijdschrift voor Geneeskunde = Belg. Tijdschr. Geneesk. Belgisch Tijdschrift Voor Nieuwste Geschiedenis-revue Belge D Histoire Contemporaine = Belg Tijdschr Nieuws Belgisch Tijdschrift Voor Nieuwste Geschiedenis-revue Belge D Histoire Contemporaine = Belg. Tijdschr. Nieuws. Belief Revision Meets Philosophy of Science = Logic Epistemol Unit Belief Revision Meets Philosophy of Science = Logic. Epistemol. Unit. Beliefs About Sla: New Research Approaches = Educat Linguistics Beliefs About Sla: New Research Approaches = Educat. Linguistics. Beliefs About Sla: New Research Approaches = Educ Linguist Beliefs About Sla: New Research Approaches = Educ. Linguist. Beliefs: A Hidden Variable in Mathematics Education = Math Educ Lib Beliefs: A Hidden Variable in Mathematics Education = Math. Educ. Lib. Beliefs and Mathematics: Festschrift in Honor of Gunter Torner's 60th Birthday = Mont Math Enthus Mon Beliefs and Mathematics: Festschrift in Honor of Gunter Torner's 60th Birthday = Mont. Math. Enthus. Mon. Belizean studies = Belizean Stud Bellas artes (Madrid) = BelArt Bell Canada Papers On Economic and Public Policy = Bell Canada Pap Econ Bell Canada Papers On Economic and Public Policy = Bell Canada Pap. Econ. Belleten = Belleten Belleten (Turk Tarih Kurumu) = Belleten Belleten. Türk Tarih Kurumu = Belleten Belle W Baruch Library in Marine Science = Bel Bar Lib Belle W Baruch Library in Marine Science = Bel. Bar. Lib. Bell Journal of Economics and Management Science = Bell J Econ Bell Journal of Economics and Management Science = Bell J. Econ. Bell Journal of Economics=Bell J. Econ. Bell Journal of Economics = Bell J Econ Bell Journal of Economics = Bell J. Econ. Bell Laboratories Record = Bell Lab Rec Bell Laboratories Record = Bell Lab. Rec. Bell Labs Technical Journal = Bell Labs Tech J Bell Labs Technical Journal = Bell Labs Tech. J. Bells Theorem, Quantum Theory and Conceptions of The Universe = Fund Theor Bells Theorem, Quantum Theory and Conceptions of The Universe = Fund. Theor. Bell System Technical Journal = At&t Tech J Bell System Technical Journal = At&t. Tech. J. Bell System Technical Journal = Bell Syst Tech J Bell System Technical Journal = Bell Syst. Tech. J. Beloit Poetry Journal = Beloit Poetry J Beloit Poetry Journal = Beloit Poetry J. Belorusskiy Politekhnicheskiy Institut = Teoret. i Prikl. Mekh. (Minsk) Belt Conveying of Minerals = Woodhead Publ Mech E Belt Conveying of Minerals = Woodhead. Publ. Mech. E. Beltsville Symposia in Agricultural Research = Beltsv Symp Beltsville Symposia in Agricultural Research = Beltsv. Symp. Benàcus. Museo archeologico della Val Tenesi = Benacus Benazepril : Profile of A New Ace Inhibitor = Roy Soc Med Int Cong Benazepril : Profile of A New Ace Inhibitor = Roy. Soc. Med. Int. Cong. Bench Testing of Industrial Fluid Lubrication and Wear Properties Used in Machinery Applications = Am Soc Test Mater Bench Testing of Industrial Fluid Lubrication and Wear Properties Used in Machinery Applications = Am. Soc. Test. Mater. Bender's health care law monthly = Benders Health Care Law Mon Bender's Health Care Law Monthly = Benders Health Care Law Mon. Beneficial Effects of Perhexiline in Cardiovascular Disease States = Cardiol Res Clin Dev Beneficial Effects of Perhexiline in Cardiovascular Disease States = Cardiol. Res. Clin. Dev. Benefits quarterly = Benefits Q Benefits Quarterly = Benefits Q. Benelux = Benelux Bengal, past & present : journal of the Calcutta Historical Society = Bengal Past Present Ben-gurion, Zionism and American Jewry 1948 - 1963 = Isr Hist Polit Soc Ben-gurion, Zionism and American Jewry 1948 - 1963 = Isr. Hist. Polit. Soc. Beni culturali e ambientali. Sicilia = BCASic Benign By Design = Acs Sym Ser Benign By Design = Acs. Sym. Ser. Benign Prostatic Hyperplasia = Prog Clin Biol Res Benign Prostatic Hyperplasia = Prog. Clin. Biol. Res. Benjamins Translation Library = Benjamin Transl Lib Benjamins Translation Library = Benjamin. Transl. Lib. B-ent = B-ent B-ENT = B-ENT Benthic Habitats and The Effects of Fishing = Am Fish S S Benthic Habitats and The Effects of Fishing = Am. Fish. S. S. Be Phenomenon in Early-type Stars, Proceedings = Astr Soc P Be Phenomenon in Early-type Stars, Proceedings = Astr. Soc. P. BERC bulletin / Basic Education Resource Centre = BERC Bull Berenguela of Castile (1180-1246) and Political Women in The High Middle Ages = New Middle Ages Berenguela of Castile (1180-1246) and Political Women in The High Middle Ages = New. Middle Ages Bergamo Spring Conferences On Haematology = Bergamo Hae Bergamo Spring Conferences On Haematology = Bergamo Hae. Berg European Studies Series = Berg Eur St Berg European Studies Series = Berg Eur. St. Bergman Spaces and Related Topics in Complex Analysis, Proceedings = Contemp Math Bergman Spaces and Related Topics in Complex Analysis, Proceedings = Contemp. Math. Berg- und Huettenmaennische Monatshefte = Berg- Huettenmaenn. Monatsh. Bericht = Bericht Bericht der Bayerischen Bodendenkmalpflege = BerBayDenkmPfl Bericht der Deutschen Forschungsgemeinschaft = BerDFG Bericht der Römisch-Germanischen Kommission = BerRGK Bericht der Römisch-Germanischen Kommission des Deutschen Archäologischen Instituts = BRGK Berichte aus der Bayerischen Landesanstalt für Wald und Forstwirtschaft = Ber. Bayer. Landesanst. Wald Forstwirtsch. Berichte aus der Bonner Universitatsklinik und Poliklinik fur Mund-, Zahn- und Kieferkrankheiten = Ber. Bonn. Univ. Poliklin. Mund. Zahn. Kieferkr. Berichte Aus Der Bonner Universitatsklinik Und Poliklinik Fur Mund-, Zahn- Und Kieferkrankheiten = Ber Bonn Univ Poliklin Mund Zahn Kieferkr Berichte aus der Mathematik = Ber. Math. Berichte der Akademie für Naturschutz und Landschaftspflege = Ber. Akad. Nat.schutz Landsch.pfl. Berichte der Botanisch-Zoologischen Gesellschaft Liechtenstein- Sargans-Werdenberg = Ber. Bot.-Zool. Ges. Liecht.-Sargans-Werdenberg Berichte der Bunsen-Gesellschaft = Ber. Bunsen Ges. Berichte der Bunsen-Gesellschaft fur Physikalische Chemie = Ber. Bunsen Ges. Phys. Chem. Berichte der Bunsen-Gesellschaft für Physikalische Chemie = Ber. Bunsen-Ges. Phys. Chem. Berichte Der Bunsen-gesellschaft Fur Physikalische Chemie = Berich Bunsen Gesell Berichte Der Bunsen-gesellschaft Fur Physikalische Chemie = Berich. Bunsen. Gesell. Berichte der Bunsen-Gesellschaft Physical Chemistry Chemical Physics = Ber. Bunsen-Ges. Phys. Chem Berichte Der Bunsen-gesellschaft-physical Chemistry Chemical Physics = Ber Bunsen Phys Chem Berichte Der Bunsen-gesellschaft-physical Chemistry Chemical Physics = Ber. Bunsen. Phys. Chem. Berichte Der Deutschen Botanischen Gesellschaft = Ber Deut Bot Ges Berichte Der Deutschen Botanischen Gesellschaft = Ber. Deut. Bot. Ges. Berichte der Deutschen botanischen Gesellschaft = Ber. Dtsch. bot. Ges. Berichte der Deutschen Botanischen Gesellschaft = Ber Dtsch Bot Ges Berichte der Deutschen Chemischen Gesellschaft = Ber. Dtsch. Chem. Ges. Berichte Der Deutschen Chemischen Gesellschaft = Ber Dtsch Chem Ges Berichte Der Deutschen Chemischen Gesellschaft = Ber. Dtsch. Chem. Ges. Berichte der Deutschen Gesellschaft fur Geologische Wissenschaft Reihe A: Geologie und Palaeontologie = Ber. Dtsch. Ges. Geol. Wiss. Reihe A Berichte der Deutschen Gesellschaft fur Geologische Wissenschaft Reihe B: Mineralogie und Lagerstattenforschung = Ber. Dtsch. Ges. Geol. Wiss. Reihe B Berichte der Deutschen Keramischen Gesellschaft = Ber. Dtsch. Keram. Ges. Berichte der Deutschen Pharmazeutischen Gesellschaft = Ber. Dtsch. Pharm. Ges. Berichte der Deutschen Physikalischen Gesellschaft = Ber. Dtsch. Phys. Ges. Berichte der Deutschen Wetterdienstes = Ber. Dtsch. Wetterdienstes Berichte Der Deutschen Wissenschaftlichen Kommission Fur Meeresforschung = Ber Deut Wiss Komm Berichte Der Deutschen Wissenschaftlichen Kommission Fur Meeresforschung = Ber. Deut. Wiss. Komm. Berichte der Eidg. Forschungsanstalt für Wald, Schnee und Landschaft = Ber. Eidgenöss. Forsch.anst. Wald Schnee Landsch. Berichte der Gesellschaft für Mathematik und Datenverarbeitung = Ber. Gesellsch. Math. Datenverarb. Berichte der Sankt Gallischen Naturwissenschaftlichen Gesellschaft = Ber. St. Gallen Nat.wiss. Ges. Berichte der Schweizerischen botanischen Gesellschaft = Ber. Schweiz. bot. Ges. Berichte Der Schweizerischen Botanischen Gesellschaft = Ber Schweiz Bot Ges Berichte Der Schweizerischen Botanischen Gesellschaft = Ber. Schweiz. Bot. Ges. Berichte der Schwyzerischen Naturforschenden Gesellschaft = Ber. Schwyzerische Nat.forsch. Ges. Berichte der Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie an der Eidg. Technischen Hochschule Zürich = Ber. Vers.anst. Wasserbau Hydrol. Glaziol. Eidgenöss. Tech. Hochsch. Zür. Berichte des Bundesamtes für Wasser und Geologie = Ber. Bundesamt Wasser Geol. Berichte des Deutschen Wetterdienstes = Ber. Dtsch. Wetterd. Berichte des Forschungszentrums Waldökosysteme = Ber. Forsch.zent. Waldökosyst. Berichte des Geobotanischen Institutes der Eidg. Technischen Hochschule, Stiftung Rübel = Ber. Geobot. Inst. Eidgenöss. Tech. Hochsch., Stift. Rübel Berichte Des Germany Chapter of The Acm = Ber Ger Acm Berichte Des Germany Chapter of The Acm = Ber. Ger. Acm Berichte Eidg. Anstalt für das forstliche Versuchswesen = Ber. Eidgenöss. Anst. forstl. Vers.wes. Berichte Freiburger Forstliche Forschung = Ber. Freibg. Forstl. Forsch. Berichte. Naturforschende Gesellschaft zu Freiburg i. B = Ber Naturforsch Ges Freibg Br Berichten van de Rijksdienst voor het oudheidkundig bodemonderzoek = BerOudhBod Berichte. Physikalisch-Medicinische Gesellschaft, Wurzburg = Ber Phys Med Ges Wurzbg Berichte uber die Gesamte Physiologie und Experimentalle Pharmakologie = Ber. Gesamte Physiol. Exp. Pharmakol. Berichte über die Verhandlungen der Sächsischen Akademie der Wissenschaften zu Leipzig = BerVerhLeipz Berichte Uber Landwirtschaft = Ber Landwirtsch Berichte Uber Landwirtschaft = Ber. Landwirtsch. Berichte zur deutschen Landeskunde = Ber Dtsch Landeskd Berichte zur Raumforschung und Raumplanung (Vienna, Austria) = Ber Raumforsch Raumplan Berichte zur Wissenschaftsgeschichte = Ber Wiss Berichte zur Wissenschaftsgeschichte = Ber. Wiss.gesch. Berichte zur Wissenschaftsgeschichte = Ber. Wiss.-Gesch. Berichte Zur Wissenschaftsgeschichte = Ber Wissgesch Berichte Zur Wissenschaftsgeschichte = Ber. Wissgesch. Berichte zur Wissenschaftsgeschichte = BWG Bericht über die Ausgrabungen in Olympia = OlBer Bericht uber die Zusammenkunft der Deutschen Ophthalmologischen Gesellschaft = Ber. Zusammenkunft Dtsch. Ophthalmol. Ges. Bericht uber die Zusammenkunft. Deutsche Ophthalmologische Gesellschaft = Ber Zusammenkunft Dtsch Ophthalmol Ges Bering Glacier: Interdisciplinary Studies of Earths Largest Temperate Surging Glacier = Geol Soc Am Spec Pap Bering Glacier: Interdisciplinary Studies of Earths Largest Temperate Surging Glacier = Geol. Soc. Am. Spec. Pap. Berita jururawat = Berita Jururawat Berita Jururawat = Berita Jururawat Berkala ilmu kedokteran = Berkala Ilmu Kedokteran Berkeley Conference On Dutch Linguistics 1993 = Publ Aans Berkeley Conference On Dutch Linguistics 1993 = Publ. Aans. Berkeley Conference On Dutch Literature 1987 = Publ Aans Berkeley Conference On Dutch Literature 1987 = Publ. Aans. Berkeley Conference On Dutch Literature 1995 = Publ Aans Berkeley Conference On Dutch Literature 1995 = Publ. Aans. Berkeley Insights in Linguistics and Semiotics = Berk Insigh Linguist Berkeley Insights in Linguistics and Semiotics = Berk. Insigh. Linguist. Berkeley journal of sociology = Berkeley J Sociol Berkeley municipal code, 1976 : a codification of the general ordinances of the city of Berkeley, California / codified, indexed by Book Publishing Company. Berkeley (Calif.) = Berkeley Munic Code 1976 Berkeley Calif Berkeley Seminar On Federalism Series = Berk S Fed Berkeley Seminar On Federalism Series = Berk. S. Fed. Berkeley technology law journal / Boalt Hall School of Law, University of California, Berkeley = Berkeley Technol Law J Berkeley women's law journal = Berkeley Womens Law J Berlin-Brandenburgische Akademie der Wissenschaften = Berlin-Brandenburgische Akad. Wiss. Ber. Abh. Berliner Asien-afrika-studien = Berliner As Afr St Berliner Asien-afrika-studien = Berliner As. Afr. St. Berliner Beiträge zur Archäometrie = BerlBeitrArchaeom Berliner Blätter für Vor- und Frühgeschichte = BerlBlVFruehGesch Berliner geographische Studien = Berl Geogr Stud Berliner Grenzgangerproblem: Verflechtung Und Systemkonkurrenz Vor Dem Mauerbau = Veroff Hist Komm Ber Berliner Grenzgangerproblem: Verflechtung Und Systemkonkurrenz Vor Dem Mauerbau = Veroff. Hist. Komm. Ber. Berliner historische Studien = Berl Hist Stud Berliner Jahrbuch für Vor- und Frühgeschichte = BerlJbVFruehGesch Berliner Journal fr Soziologie = Berliner J. Soz. Berliner journal fur Soziologie = Berl J Soziol Berliner Journal Fur Soziologie = Berl J Soziol Berliner Journal Fur Soziologie = Berl. J. Soziol. Berliner Medizin = Berl Med Berliner Museen = BerlMus Berliner numismatische Zeitschrift = BerlNumZ Berliner Statistik = Berl Stat Berliner Statistik. Monatsschrift / Herausgeber, Statistisches Landesamt Berlin = Berl Stat Mon Schr Berliner Studienreihe zur Mathematik = Berliner Studienreihe Math. Berliner tierarztliche Wochenschrift = Berl Tierarztl Wochenschr Berliner Und Munchener Tierarztliche Wochenschrift = Berl Munch Tierarztl Berliner Und Munchener Tierarztliche Wochenschrift = Berl. Munch. Tierarztl. Berliner und Munchener tierarztliche Wochenschrift = Berl Munch Tierarztl Wochenschr Berliner und Munchener Tierarztliche Wochenschrift = Berl. Munch. Tierarztl. Wochenschr. Berliner Und Munchener Tierarztliche Wochenschrift=Berl Munch Tierarztl Wochenschr;; Berlin Workshop Series = Berlin Workshop Ser Berlin Workshop Series = Berlin Workshop Ser. Bernardin Center Series = Bern Cent Ser Bernardin Center Series = Bern. Cent. Ser. Berner Wald = Bern. Wald Berner Zeitschrift für Geschichte und Heimatkunde = Bern. Z. Gesch. Heim.kd. Berner Zeitung = Bern. Ztg. Bernice P Bishop Museum Bulletin = Bernice P Bish Mus B Bernice P Bishop Museum Bulletin = Bernice P Bish. Mus. B. Bernoulli = Bernoulli Bernoulli = Bernoulli Bernoulli Potential in Superconductors = Lect Notes Phys Bernoulli Potential in Superconductors = Lect. Notes. Phys. Bernstein Functions: Theory and Applications = Degruyter Stud Math Bernstein Functions: Theory and Applications = Degruyter. Stud. Math. Berry Crop Breeding, Production and Utilization for A New Century = Acta Hortic Berry Crop Breeding, Production and Utilization for A New Century = Acta. Hortic. Bertrand Russell and The Edwardian Philosophers: Constructing The World = Hist Anal Philos Bertrand Russell and The Edwardian Philosophers: Constructing The World = Hist. Anal. Philos. Berufs-dermatosen = Berufs-dermatosen Berufs-Dermatosen = Berufsdermatosen Berufs-Dermatosen = Berufsdermatosen. Berufsdermatosen. Monographien = Berufsdermatosen (Monogr) Beryllium: Mineralogy, Petrology, and Geochemistry = Rev Mineral Geochem Beryllium: Mineralogy, Petrology, and Geochemistry = Rev. Mineral. Geochem. Beryllium: Sampling and Analysis = Am Soc Test Mater Beryllium: Sampling and Analysis = Am. Soc. Test. Mater. Berytus. Archaeological Studies = Berytus Berytus = Berytus Besa Studies in International Security = Besa Stud Int Secur Besa Studies in International Security = Besa Stud. Int. Secur. Bestia : Yearbook of The Beast Fable Soc = Bestia Bestia : Yearbook of The Beast Fable Society, Vol 1 = Bestia Best Interests of The Child in Healthcare = Biomed Law Ethics Li Best Interests of The Child in Healthcare = Biomed. Law. Ethics. Li. Best Papers Proceedings = Best Pap Proc Best Papers Proceedings = Best Pap. Proc. Best Papers Proceedings - Fifty-fifth Annual Meeting of The Academy of Management = Best Pap Proc Best Papers Proceedings - Fifty-fifth Annual Meeting of The Academy of Management = Best Pap. Proc. Best Practice and Research. Clinical Anaesthesiology = Best Pract. Res. Clin. Anaesthesiol. Best Practice and Research. Clinical Endocrinology and Metabolism = Best Pract. Res. Clin. Endocrinol. Metab. Best Practice and Research. Clinical Gastroenterology = Best Pract. Res. Clin. Gastroenterol. Best Practice and Research. Clinical Haematology = Best Pract. Res. Clin. Haematol. Best Practice and Research. Clinical Obstetrics and Gynaecology = Best Pract. Res. Clin. Obstet. Gynaecol. Best Practice and Research. Clinical Rheumatology = Best Pract. Res. Clin. Rheumatol. Best practice & research. Clinical anaesthesiology = Best Pract Res Clin Anaesthesiol Best Practice & Research Clinical Endocrinology & Metabolism = Best Pract Res Cl En Best Practice & Research Clinical Endocrinology & Metabolism = Best Pract. Res. Cl. En. Best practice & research. Clinical endocrinology & metabolism = Best Pract Res Clin Endocrinol Metab Best practice & research. Clinical gastroenterology = Best Pract Res Clin Gastroenterol Best Practice & Research Clinical Haematology = Best Pract Res Cl Ha Best Practice & Research Clinical Haematology = Best Pract. Res. Cl. Ha. Best practice & research. Clinical haematology = Best Pract Res Clin Haematol Best Practice & Research, Clinical Haematology = Best Pract. Res. Clin. Haematol. Best practice & research. Clinical obstetrics & gynaecology = Best Pract Res Clin Obstet Gynaecol Best Practice & Research Clinical Obstetrics & Gynaecology = Best Pract Res Cl Ob Best Practice & Research Clinical Obstetrics & Gynaecology = Best Pract. Res. Cl. Ob. Best practice & research. Clinical rheumatology = Best Pract Res Clin Rheumatol Best Practice & Research in Clinical Gastroenterology = Best Pract Res Cl Ga Best Practice & Research in Clinical Gastroenterology = Best Pract. Res. Cl. Ga. Best Practice & Research in Clinical Obstetrics & Gynaecology = Best Pract Res Cl Ob Best Practice & Research in Clinical Obstetrics & Gynaecology = Best Pract. Res. Cl. Ob. Best Practice & Research in Clinical Rheumatology = Best Pract Res Cl Rh Best Practice & Research in Clinical Rheumatology = Best Pract. Res. Cl. Rh. Best practices and benchmarking in healthcare : a practical journal for clinical and management application = Best Pract Benchmarking Healthc Best Practices and Benchmarking in Healthcare = Best Pract. Benchmarking Healthc. Best Practices for The Knowledge Society: Knowledge, Learning, Development and Technology for All = Comm Com Inf Sc Best Practices for The Knowledge Society: Knowledge, Learning, Development and Technology for All = Comm. Com. Inf. Sc. Best Practices in Literacy Instruction = Rutg Inv Symp Educ S Best Practices in Literacy Instruction = Rutg. Inv. Symp. Educ. S. Best's review. Life-health insurance edition = Bests Rev Life Health Insur Ed Best's Review. Life/Health Insurance Edition = Bests Rev. Life. Health Insur. Ed. Beta-aluminas and Beta-batteries = Key Eng Mat Beta-aluminas and Beta-batteries = Key. Eng. Mat. Beta-amyloid Precursor Proteins and Neurotransmitter Function = Int Congr Ser Beta-amyloid Precursor Proteins and Neurotransmitter Function = Int. Congr. Ser. BETA bulletin of experimental treatments for AIDS : a publication of the San Francisco AIDS foundation = BETA Beta Carotene: Dietary Sources, Cancer and Cognition = Nutr Diet Res Prog Beta Carotene: Dietary Sources, Cancer and Cognition = Nutr. Diet. Res. Prog. Beta-glucosidases = Acs Sym Ser Beta-glucosidases = Acs. Sym. Ser. Beta Phi Mu Monograph Series = Beta Phi Mu Betasys: Systems Biology of Regulated Exocytosis in Pancreatic Beta-cells = Syst Bio Betasys: Systems Biology of Regulated Exocytosis in Pancreatic Beta-cells = Syst. Bio. Beton- und Stahlbetonbau = Beton- Stahlbetonbau Beton- Und Stahlbetonbau = Beton- Stahlbetonbau Betonwerk und Fertigteil Technik = Betonwerk Fertigteil Tech Betonwerk und Fertigteil Technik = Betonwerk Fertigteil Tech. Betrieb = Betrieb Betriebliche Instandhaltung = Vdi-buch Betriebliche Instandhaltung = Vdi-buch. Betriebsfestigkeit, 3rd Edition = Vdi-buch Betriebsfestigkeit, 3rd Edition = Vdi-buch. Betriebswirt = Betriebswirt Betriebswirtschaftliche Forschung Und Praxis = Betrieb Forsch Prax Betriebswirtschaftliche Forschung Und Praxis = Betrieb. Forsch. Prax. Better Ceramics Through Chemistry Iv = Mater Res Soc Symp P Better Ceramics Through Chemistry Iv = Mater. Res. Soc. Symp. P. Better Ceramics Through Chemistry Vii: Organic/inorganic Hybrid Materials = Mater Res Soc Symp P Better Ceramics Through Chemistry Vii: Organic/inorganic Hybrid Materials = Mater. Res. Soc. Symp. P. Better Ceramics Through Chemistry Vi = Mater Res Soc Symp P Better Ceramics Through Chemistry Vi = Mater. Res. Soc. Symp. P. Better Ceramics Through Chemistry V = Mater Res Soc Symp P Better Ceramics Through Chemistry V = Mater. Res. Soc. Symp. P. Better Ceramics Through Processing = Brit Cer Pr Better Ceramics Through Processing = Brit. Cer. Pr. Better homes and gardens = Better Homes Gard Better Land Husbandry: From Soil Conservation to Holistic Land Management = Land Reconstr Manag Better Land Husbandry: From Soil Conservation to Holistic Land Management = Land Reconstr. Manag. Bettongs, Potoroos and The Musky Rat-kangaroo = Austral Nat Hist Ser Bettongs, Potoroos and The Musky Rat-kangaroo = Austral. Nat. Hist. Ser. Between Cultures: Theory and Practice of Cross Cultural Dialogs = Condit Jud Between Cultures: Theory and Practice of Cross Cultural Dialogs = Condit. Jud. Between Data Science and Applied Data Analysis = St Class Dat Anal Between Data Science and Applied Data Analysis = St. Class. Dat. Anal. Between Data Science and Applied Data Analysis = Stud Class Data Anal Between Data Science and Applied Data Analysis = Stud. Class. Data Anal. Between Disclosure and Concealment: An Analysis of Barbara Honigmann's Prose Writing = Conditio Jud Between Disclosure and Concealment: An Analysis of Barbara Honigmann's Prose Writing = Conditio. Jud. Between Rome and Persia: The Middle Euphrates, Mesopotamia and Palmyra Under Roman Control = Routl Monogr Class S Between Rome and Persia: The Middle Euphrates, Mesopotamia and Palmyra Under Roman Control = Routl. Monogr. Class. S. Between Scholarship and Autobiographical Project: Saul Friedlander Und Ruth Kluger = Conditio Jud Between Scholarship and Autobiographical Project: Saul Friedlander Und Ruth Kluger = Conditio. Jud. Between Science and Technology = N-holland D Between Science and Technology = N-holland. D. Between Syntax and Semantics = Routl Lead Linguists Between Syntax and Semantics = Routl. Lead. Linguists. Between The Grammar and The Lexicon = Ling Arb Between The Grammar and The Lexicon = Ling. Arb. Between The Local and The Global = Res Rural Sociol Dev Between The Local and The Global = Res. Rural. Sociol. Dev. Between Theory and Observations: Tobias Mayer's Explorations of Lunar Motion, 1751-1755 = Sourc Stud Hist Math Between Theory and Observations: Tobias Mayer's Explorations of Lunar Motion, 1751-1755 = Sourc. Stud. Hist. Math. Between the species : a journal of ethics = Between Species Between Understanding and Misunderstanding = Cont Stud E Between Understanding and Misunderstanding = Cont. Stud. E. Between Vision and Reality: Cfsps Progress On The Path to Maturity = Curr Europe Iss Between Vision and Reality: Cfsps Progress On The Path to Maturity = Curr. Europe. Iss. Bevolking en gezin = Bevolking Gezin Beyond 2001: Silvicultural Odyssey to Sustaining Terrestrial and Aquatic Ecosystems = Us For Serv T R Pnw Beyond 2001: Silvicultural Odyssey to Sustaining Terrestrial and Aquatic Ecosystems = Us. For. Serv. T. R. Pnw. Beyond Afghanistan = Res Pap Pol Beyond Afghanistan = Res. Pap. Pol. Beyond Cartesian Dualism: Encountering Affect in The Teaching and Learning of Science = Sci Technol Educ Lib Beyond Cartesian Dualism: Encountering Affect in The Teaching and Learning of Science = Sci. Technol. Educ. Lib. Beyond Deficiency = Ann Ny Acad Sci Beyond Deficiency = Ann. Ny. Acad. Sci. Beyond Degrees: Professional Learning for Knowledge Services = Inform Serv Man Ser Beyond Degrees: Professional Learning for Knowledge Services = Inform. Serv. Man. Ser. Beyond Einstein Gravity: A Survey of Gravitational Theories for Cosmology and Astrophysics = Fund Theor Phys Beyond Einstein Gravity: A Survey of Gravitational Theories for Cosmology and Astrophysics = Fund. Theor. Phys. Beyond Enlightenment: Buddhism, Religion, Modernity = Routl Crit Stud Budd Beyond Enlightenment: Buddhism, Religion, Modernity = Routl. Crit. Stud. Budd. Beyond Health Insurance: Public Policy to Improve Health = Adv Health Econ Heal Beyond Health Insurance: Public Policy to Improve Health = Adv. Health Econ. Heal. Beyond Kyoto: Addressing The Challenges of Climate Change - Science Meets Industry, Policy and Public = Iop C Ser Earth Env Beyond Kyoto: Addressing The Challenges of Climate Change - Science Meets Industry, Policy and Public = Iop. C. Ser. Earth. Env. Beyond Loop Level Parallelism in Openmp: Accelerators, Tasking and More, Proceedings = Lect Notes Comput Sc Beyond Loop Level Parallelism in Openmp: Accelerators, Tasking and More, Proceedings = Lect. Notes. Comput. Sc. Beyond Market Access for Economic Development = Routl Stud Eur Econ Beyond Market Access for Economic Development = Routl. Stud. Eur. Econ. Beyond Memory: The Crimean Tatars' Deportation and Return = Anthr Hist Crit Imag Beyond Memory: The Crimean Tatars' Deportation and Return = Anthr. Hist. Crit. Imag. Beyond Metallocenes: Next Generation Polmerization Catalysts = Acs Sym Ser Beyond Metallocenes: Next Generation Polmerization Catalysts = Acs. Sym. Ser. Beyond Metallocenes: Next Generation Polymerization Catalysts = Acs Sym Ser Beyond Metallocenes: Next Generation Polymerization Catalysts = Acs. Sym. Ser. Beyond Mimesis and Convention: Representation in Art and Science = Bost Stud Philos Sci Beyond Mimesis and Convention: Representation in Art and Science = Bost. Stud. Philos. Sci. Beyond Neoliberalism in Latin America?: Societies and Politics At The Crossroads = Stud Am Beyond Neoliberalism in Latin America?: Societies and Politics At The Crossroads = Stud. Am. Beyond Partial Differential Equations - Linear and Quasi-linear Abstract Hyperbolic Evolution Equations = Lect Notes Math Beyond Partial Differential Equations - Linear and Quasi-linear Abstract Hyperbolic Evolution Equations = Lect. Notes. Math. Beyond Pedagogies of Exclusion in Diverse Childhood Contexts: Transnational Challenges = Crit Cult Stud Child Beyond Pedagogies of Exclusion in Diverse Childhood Contexts: Transnational Challenges = Crit. Cult. Stud. Child. Beyond relief = Beyond Relief Beyond Slavery: Overcoming Its Religious and Sexual Legacies = Black Relig Woman Th Beyond Slavery: Overcoming Its Religious and Sexual Legacies = Black. Relig. Woman. Th. Beyond Small Numbers: Voices of African American Phd Chemists = Divers High Educ Beyond Small Numbers: Voices of African American Phd Chemists = Divers. High. Educ. Beyond The Canon = Hellenist Groningana Beyond The Canon = Hellenist. Groningana. Beyond The City Limits = Confl Urb R Beyond The City Limits = Confl. Urb. R. Beyond The Cold War = Res Series Beyond The Cold War = Res. Series. Beyond The Consumption Bubble = Rout Interp Mark Res Beyond The Consumption Bubble = Rout. Interp. Mark. Res. Beyond The Crisis: Preserving The Capacity for Excellence in Health Care and Medical Science = Ann Ny Acad Sci Beyond The Crisis: Preserving The Capacity for Excellence in Health Care and Medical Science = Ann. Ny. Acad. Sci. Beyond The Cultural Turn = Stud Hist Soc Cult Beyond The Cultural Turn = Stud. Hist. Soc. Cult. Beyond The Desert 2002: Accelerator, Non-accelerator and Space Approaches in The New Millenium = Inst Phys Conf Ser Beyond The Desert 2002: Accelerator, Non-accelerator and Space Approaches in The New Millenium = Inst. Phys. Conf. Ser. Beyond The Desert 2003 = Springer Proc Phys Beyond The Desert 2003 = Springer. Proc. Phys. Beyond The Farm: National Ambitions in Rural New England = Early Am Stud Ser Beyond The Farm: National Ambitions in Rural New England = Early. Am. Stud. Ser. Beyond The Golden Door: Jewish American Drama and Jewish American Experience = Palg Stud Theat Perf Beyond The Golden Door: Jewish American Drama and Jewish American Experience = Palg. Stud. Theat. Perf. Beyond The International Space Station: The Future of Human Spaceflight = Spac Stud Beyond The International Space Station: The Future of Human Spaceflight = Spac. Stud. Beyond The Legacy of Genghis Khan = Islamic Hist Civiliz Beyond The Legacy of Genghis Khan = Islamic. Hist. Civiliz. Beyond The New Public Management = New Horiz Pub Pol Beyond The New Public Management = New Horiz. Pub. Pol. Beyond The Rural-urban Divide = Res Rural Sociol Dev Beyond The Rural-urban Divide = Res. Rural. Sociol. Dev. Beyond The Standard Model V. Fifth Conference = Aip Conf Proc Beyond The Standard Model V. Fifth Conference = Aip. Conf. Proc. Beyond The Steppe and The Sown = Colloq Pontica Beyond The Steppe and The Sown = Colloq. Pontica. Beyond Topology = Contemp Math Beyond Topology = Contemp. Math. Beyond Two: Theory and Applications of Multiple-valued Logic = Stud Fuzz Soft Comp Beyond Two: Theory and Applications of Multiple-valued Logic = Stud. Fuzz. Soft. Comp. Beyond Words = Brit S Ap L Beyond Words = Brit. S. Ap. L. Bfi Working Papers = Bfi Work P Bfi Working Papers = Bfi Work. P. Bfpp-connaissance Et Gestion Du Patrimoine Aquatique = Bfpp-connaiss Gest P Bfpp-connaissance Et Gestion Du Patrimoine Aquatique = Bfpp-connaiss. Gest. P. Bga Schriften = Bga Schrift Bga Schriften = Bga Schrift. BHM Berg- und Huttenmannische Monatshefte = BHM Berg- Huttenmann. Monatsh. Bhr Group Conference Series Publication = Bhr Gr Conf Ser Publ Bhr Group Conference Series Publication = Bhr Gr. Conf. Ser. Publ. Biaxial/multiaxial Fatigue and Fracture = Esis Publ Biaxial/multiaxial Fatigue and Fracture = Esis. Publ. Bible Witness in Black Churches = Black Relig Woman Th Bible Witness in Black Churches = Black Relig. Woman. Th. Biblica = Biblica Biblical Archaeologist = Biblic Archaeol Biblical Archaeologist = Biblic. Archaeol. Biblical Concepts and Our World = Claremon Stud Philos Biblical Concepts and Our World = Claremon. Stud. Philos. Biblical Perspectives : Early Use and Interpretation of The Bible in Light of The Dead Sea Scrolls = Stud Text Des Judah Biblical Perspectives : Early Use and Interpretation of The Bible in Light of The Dead Sea Scrolls = Stud. Text. Des. Judah. Bibliografia italiana di storia della scienza / Istituto e museo di storia della scienza = Bibliogr Ital Stor Sci Bibliographia Genetica = Bibliogr Genet Bibliographia Genetica = Bibliogr. Genet. Bibliographia Scientiae Naturalis Helvetica = Bibliogr. Sci. Nat. Helv. Bibliographic Instruction in Practice: A Tribute to The Legacy of Evan Ira Farber = Lib Orient Bibliographic Instruction in Practice: A Tribute to The Legacy of Evan Ira Farber = Lib. Orient. Bibliographie internationale de la demographie historique / Comite international des sciences historiques, Commission internationale de demographie historique ; Societe de demographie historique ; Union internationale pour l'etude scien... = Bibliogr Int Demogr Hist Bibliographie zur Symbolik, Ikonographie und Mythologie. Internationales Referateorgan = BiblSymb Bibliography and The Book Trades: Studies in The Print Culture of Early New England = Mater Texts Bibliography and The Book Trades: Studies in The Print Culture of Early New England = Mater. Texts. Bibliography of reproduction; a classified monthly list of references compiled from the research literature, vertebrates including man = Bibliographr Reprod Biblioteca de la Ciencia Española = Bibl. Cienc. Esp. Biblioteca de la Revista Matemática Iberoamericana = Bibl. Rev. Mat. Iberoamericana Biblioteca Dell Archivum Romanicum - Serie I - Storia, Letteratura, Paleografia = Bibliot Arc Biblioteca Dell Archivum Romanicum - Serie I - Storia, Letteratura, Paleografia = Bibliot. Arc. Biblioteca Dell Edizione Nazionale Del Carteggio Di L.a. Muratori = Bibl C Muratori Biblioteca Dell Edizione Nazionale Del Carteggio Di L.a. Muratori = Bibl. C. Muratori Biblioteca Di Archeologia Medievale = Biblio Archeol Med Biblioteca Di Archeologia Medievale = Biblio. Archeol. Med. Biblioteca di Bibliografia Italiana = Bibl. Bibliogr. Ital. Biblioteca di "Metron" = Bibl. Metron Biblioteca Di Nuncius - Studi E Testi = Biblio Nuncius Biblioteca Di Nuncius - Studi E Testi = Biblio. Nuncius Biblioteca di Nuncius: Studi e Testi = Bibl. Nuncius Studi Testi Biblioteca di Storia della Scienza = Bibl. Storia Sci. Biblioteca di storia della scienza = Bibl Stor Sci Biblioteca Storica Toscana : Sezione Di Storia Del Risorgimento = Bibl Stor T Biblioteca Storica Toscana : Sezione Di Storia Del Risorgimento = Bibl. Stor. T. Biblioteka Higijenskog instituta NR Srbije = Bibl Hig Instituta NR Srb Bibliotek for laeger = Bibl Laeger Bibliotek for Laeger = Bibl. Laeger Bibliotheca anatomica = Bibl Anat Bibliotheca Anatomica = Bibl Anat Bibliotheca Anatomica = Bibl. Anat. Bibliotheca Botanica = Bibl. Bot. Bibliotheca cardiologica = Bibl Cardiol Bibliotheca Cardiologica = Bibl Cardiol Bibliotheca Cardiologica = Bibl. Cardiol. Bibliotheca classica orientalis = BiblClOr Bibliotheca Dell'archivum Romanicum - Serie I - Storia, Letteratura, Paleografia = Bibl A Ro I Bibliotheca Dell'archivum Romanicum - Serie I - Storia, Letteratura, Paleografia = Bibl. A. Ro. I Bibliotheca Diatomologica = Bibl Diatomol Bibliotheca Diatomologica = Bibl. Diatomol. Bibliotheca Ephemeridium Theologicarum Lovaniensium = Bib Eph The Bibliotheca Ephemeridium Theologicarum Lovaniensium = Bib. Eph. The. Bibliotheca gastroenterologica = Bibl Gastroenterol Bibliotheca Gastroenterologica = Bibl Gastroenterol Bibliotheca Gastroenterologica = Bibl. Gastroenterol. Bibliotheca gynaecologica = Bibl Gynaecol Bibliotheca Gynaecologica = Bibl Gynaecol Bibliotheca Gynaecologica = Bibl. Gynaecol. Bibliotheca haematologica = Bibl Haematol Bibliotheca Haematologica = Bibl Haematol Bibliotheca Haematologica = Bibl. Haematol. Bibliotheca Lichenologica = Bibl Lichenol Bibliotheca Lichenologica = Bibl. Lichenol. Bibliotheca Microbiologica = Bibl Microb Bibliotheca Microbiologica = Bibl. Microb. Bibliotheca microbiologica = Bibl Microbiol Bibliotheca Microbiologica = Bibl. Microbiol. Bibliotheca Mycologica = Bibl. Mycol. Bibliotheca Nutritio Et Dieta = Bibl Nutr Diet Bibliotheca Nutritio Et Dieta = Bibl. Nutr. Diet. Bibliotheca nutritio et dieta = Bibl Nutr Dieta Bibliotheca Nutritio et Dieta = Bibl. Nutr. Dieta Bibliotheca Nutritio Et Dieta=Bibl Nutr Dieta;; Bibliotheca Ophthalmologica = Bibl Ophthalmol Bibliotheca Ophthalmologica = Bibl. Ophthalmol. Bibliotheca ophthalmologica : supplementa ad ophthalmologica = Bibl Ophthalmol Bibliotheca orientalis = BiOr Bibliotheca Orientalis, uitg. van het Nederlandsch Instituut voor het Nabije Oosten = BO Bibliotheca Oto-rhino-laryngologica = Bibl Oto-rhino-laryn Bibliotheca Oto-rhino-laryngologica = Bibl. Oto-rhino-laryn. Bibliotheca paediatrica = Bibl Paediatr Bibliotheca Paediatrica = Bibl Paediatr Bibliotheca Paediatrica = Bibl. Paediatr. Bibliotheca Phonetica = Bibl Phonet Bibliotheca Phonetica = Bibl. Phonet. Bibliotheca Primatologica = Bibl Primatol Bibliotheca Primatologica = Bibl. Primatol. Bibliotheca Psychiatrica = Bibl Psychiat Bibliotheca Psychiatrica = Bibl. Psychiat. Bibliotheca psychiatrica = Bibl Psychiatr Bibliotheca Psychiatrica = Bibl. Psychiatr. Bibliotheca Psychiatrica Et Neurologica = Bibl Psychiat Neurol Bibliotheca Psychiatrica Et Neurologica = Bibl. Psychiat. Neurol. Bibliotheca psychiatrica et neurologica = Bibl Psychiatr Neurol Bibliotheca Psychiatrica et Neurologica = Bibl. Psychiatr. Neurol. Bibliotheca radiologica = Bibl Radiol Bibliotheca Radiologica = Bibl Radiol Bibliotheca Radiologica = Bibl. Radiol. Bibliotheca Shamanistica = Bibl Shaman Bibliotheca Shamanistica = Bibl. Shaman. Bibliotheca tuberculosea = Bibl Tuberc Bibliotheca Tuberculosea = Bibl Tuberc Bibliotheca Tuberculosea = Bibl. Tuberc. Bibliotheca Tuberculosea Et Medicinae Thoracalis = Bibl Tuberc Med Thor Bibliotheca Tuberculosea Et Medicinae Thoracalis = Bibl. Tuberc. Med. Thor. Bibliotheca Vita Humana = Bibl Vita Hum Bibliotheca Vita Humana = Bibl. Vita Hum. Bibliothekspraxis = Bibliothekspraxis Bibliothek und Wissenschaft = Bibl Wiss Bibliothek und Wissenschaft = B&W Bibliothèque de l'école des Chartes = BECh Bibliotheque de l'Ecole des chartes = Bibl Ec Chartes Bibliotheque De L Ecole Des Chartes = Bibl Ec Chartes Bibliotheque De L Ecole Des Chartes = Bibl. Ec. Chartes Bibliotheque De L'information Grammaticale = Bib Info Gramm Bibliotheque De L'information Grammaticale = Bib. Info. Gramm. Bibliotheque De Litterature Moderne = Bib Lit Modern Bibliotheque De Litterature Moderne = Bib. Lit. Modern. Bibliotheque Des Cahiers De L Institut De Linguistique De Louvain = Bibl Des Cah De L In Bibliotheque Des Cahiers De L Institut De Linguistique De Louvain = Bibl. Des Cah. De L In. Bibliothèque des Écoles françaises d'Athènes et de Rome = BEFAR Bibliothèque d'études coptes, Institut français d'archéologie orientale, Kairo = BdEC Bibliothèque d'études, Institut français d'archéologie orientale, Kairo = BdE Bibliothèque d'Histoire des Sciences = Bibl. Hist. Sci. Bibliothèque d'humanisme et Renaissance = BiblH&R Bibliotheque D Humanisme Et Renaissance = Bibl Hum Renaissance Bibliotheque D Humanisme Et Renaissance = Bibl. Hum. Renaissance Bibliotheque d'humanisme et renaissance; travaux et documents = Bibl Humanisme Renaiss Biblische Zeitschrift = Biblische Z Biblische Zeitschrift = Biblische Z. Biblische Zeitschrift = BZ Biblische Zeitschrift (Neue Folge) = BiZ Biblos = Biblos BIB-Mitteilungen : Informationen aus dem Bundesinstitut fur Bevolkerungsforschung = Bib Mitt Bicarbonate, Chloride, and Proton Transport Systems = Ann Ny Acad Sci Bicarbonate, Chloride, and Proton Transport Systems = Ann. Ny. Acad. Sci. Bics 2008: Proceedings of The 1st International Conference On Bio-inspired Computational Methods Used for Solving Difficult Problems-development of Intelligent and Complex Systems = Aip Conf Proc Bics 2008: Proceedings of The 1st International Conference On Bio-inspired Computational Methods Used for Solving Difficult Problems-development of Intelligent and Complex Systems = Aip. Conf. Proc. Biculturalism, Self Identity and Societal Transformation = Res Race Ethn Relat Biculturalism, Self Identity and Societal Transformation = Res. Race. Ethn. Relat. Bicycle and Pedestrian Research 1998 = Transport Res Rec Bicycle and Pedestrian Research 1998 = Transport. Res. Rec. Bicycles and Pedestrians; Developing Countries 2005 = Transport Res Rec Bicycles and Pedestrians; Developing Countries 2005 = Transport. Res. Rec. Bidding Strategies in Agent-based Continuous Double Auctions = Whitestein Ser Softw Bidding Strategies in Agent-based Continuous Double Auctions = Whitestein. Ser. Softw. Biedermanns Zentralblatt Abteilung A: Allgemeiner und Referierender Teil = Biedermanns Zentralbl. Abt. A Biedermanns Zentralblatt Abteilung B: Tierernahrung = Biedermanns Zentralbl. Abt. B Biedermanns Zentralblatt = Biedermanns Zentralbl. Biedermeier and Beyond = Brit Irish Stud Germ Biedermeier and Beyond = Brit. Irish. Stud. Germ. Bienes Habices Del Reino De Granada: Las Alquerias De Las Gabias = Suom Tiedeakat Toim Bienes Habices Del Reino De Granada: Las Alquerias De Las Gabias = Suom. Tiedeakat. Toim. Bien-naitre / Association beninoise pour la promotion de la famille. Association beninoise pour la promotion de la famille = Bien Naitre Biennial Review of Counseling Psychology = Bienn Rev Couns Psyc Biennial Review of Counseling Psychology = Bienn. Rev. Couns. Psyc. Biennial Review of Counseling Psychology, Vol 1 = Bienn Rev Couns Psyc Biennial Review of Counseling Psychology, Vol 1 = Bienn. Rev. Couns. Psyc. Biennial Review of Health Care Management: Meso Perspective = Adv Health Care Mana Biennial Review of Health Care Management: Meso Perspective = Adv. Health Care Mana. Bifunctional Molecular Catalysis = Top Organometal Chem Bifunctional Molecular Catalysis = Top. Organometal. Chem. Bifurcation and Chaos : Analysis, Algorithms, Applications = Int S Num M Bifurcation and Chaos : Analysis, Algorithms, Applications = Int. S. Num. M. Bifurcation and Chaos in Discontinuous and Continuous Systems = Nonlinear Phys Sci Bifurcation and Chaos in Discontinuous and Continuous Systems = Nonlinear. Phys. Sci. Bifurcation and Symmetry = Int S Num M Bifurcation and Symmetry = Int. S. Num. M. Bifurcation Control: Theory and Applications = Lect Notes Contr Inf Bifurcation Control: Theory and Applications = Lect. Notes. Contr. Inf. Bifurcations and Periodic Orbits of Vector Fields = Nato Adv Sci Inst Se Bifurcations and Periodic Orbits of Vector Fields = Nato. Adv. Sci. Inst. Se. Bifurcations in Hamiltonian Systems = Lect Notes Math Bifurcations in Hamiltonian Systems = Lect. Notes. Math. Bifurcations, Instabilities and Degradations in Geomaterials = Spr Ser Geomch Geong Bifurcations, Instabilities and Degradations in Geomaterials = Spr. Ser. Geomch. Geong. Bifurcations of Planar Vector Fields = Lect Notes Math Bifurcations of Planar Vector Fields = Lect. Notes. Math. Bifurcation Theory and Spatio-temporal Pattern Formation = Fields Inst Commun Bifurcation Theory and Spatio-temporal Pattern Formation = Fields. Inst. Commun. Big Business and Economic Development = Routl Stud Int Bus W Big Business and Economic Development = Routl. Stud. Int. Bus. W. Big Digs Around The World = Geotech Sp Big Digs Around The World = Geotech. Sp. Big Queues = Lect Notes Math Big Queues = Lect. Notes. Math. Big Shake: Implications of A Major Earthquake in California = Nat Disaster Res Pr Big Shake: Implications of A Major Earthquake in California = Nat. Disaster. Res. Pr. Big Wars and Small Wars = Mil Hist Policy Big Wars and Small Wars = Mil. Hist. Policy. Bihar Mathematical Society = J. Bihar Math. Soc. Bijdragen en mededelingen betreffende de geschiedenis der Nederlanden = Bijdr Meded Geschied Ned Bijdragen en mededelingen (Gelre, Vereeniging tot Beoefening van Geldersche Geschiedenis, Oudheidkunde, en Recht) = Bijdr Meded Bijdragen tijdschrift voor filosofie en theologie = Bijdragen Bijdragen Tot De Dierkunde = Bijdr Dierkd Bijdragen Tot De Dierkunde = Bijdr. Dierkd. Bijdragen tot de geschiedenis = Bijdr Geschied Bijdragen Tot De Taal- Land- En Volkenkunde = Bijdr Taal-land-v Bijdragen Tot De Taal- Land- En Volkenkunde = Bijdr. Taal-land-v. Biken journal = Biken J Biken Journal = Biken J Biken Journal = Biken J. Biko Lives: Contesting The Legacies of Steve Biko = Contemp Black Hist Biko Lives: Contesting The Legacies of Steve Biko = Contemp. Black. Hist. Bilanz = Bilanz Bilateral Bargaining: Theory and Applications = Lect Notes Econ Math Bilateral Bargaining: Theory and Applications = Lect. Notes. Econ. Math. Bild der Wissenschaft = Bild Wiss Bild der Wissenschaft = Bild Wiss. Bildgebung = Bildgebung Bildgebung-imaging = Bildgebung Bildgebung-imaging = Bildgebung. Bildmessung und Luftbildwesen = Bildmess. Luftbildwes. Bildung, Erziehung Und Religion in Europa: Politische, Rechtshermeneutische Und Padagogische Untersuchungen Zum Europaischen Bildungsauftrag in Evangelischer Perspektive = Prakt Theol Wiss Bildung, Erziehung Und Religion in Europa: Politische, Rechtshermeneutische Und Padagogische Untersuchungen Zum Europaischen Bildungsauftrag in Evangelischer Perspektive = Prakt. Theol. Wiss. Bildung Und Erziehung = Bild Erzieh Bildung Und Erziehung = Bild. Erzieh. Bile Acid Biology and Its Therapeutic Implications = Falk Symp Bile Acid Biology and Its Therapeutic Implications = Falk. Symp. Bile Acid Biology and Therapeutic Actions = Falk Symp Bile Acid Biology and Therapeutic Actions = Falk. Symp. Bile Acids and Cholestasis = Falk Symp Bile Acids and Cholestasis = Falk. Symp. Bile Acids and Immunology = Falk Symp Bile Acids and Immunology = Falk. Symp. Bile Acids and Pregnancy = Falk Symp Bile Acids and Pregnancy = Falk. Symp. Bile Acids and The Hepatobiliary System = Falk Symp Bile Acids and The Hepatobiliary System = Falk. Symp. Bile Acids: From Genomics to Disease and Therapy = Falk Symp Bile Acids: From Genomics to Disease and Therapy = Falk. Symp. Bile Acids in Gastroenterology = Falk Symp Bile Acids in Gastroenterology = Falk. Symp. Bile Acids in Hepatobiliary Disease = Falk Symp Bile Acids in Hepatobiliary Disease = Falk. Symp. Bile Acids in Hepatobiliary Diseases: Basic Research and Clinical Application = Falk Symp Bile Acids in Hepatobiliary Diseases: Basic Research and Clinical Application = Falk. Symp. Bile Acids in Liver Diseases = Falk Symp Bile Acids in Liver Diseases = Falk. Symp. Bilig = Bilig Bilinear Control Systems: Matrices in Action = Appl Math Sci Bilinear Control Systems: Matrices in Action = Appl. Math. Sci. Bilinear Integrable Systems: From Classical to Quatum, Continuous to Discrete = Nato Sci Ser Ii-math Bilinear Integrable Systems: From Classical to Quatum, Continuous to Discrete = Nato. Sci. Ser. Ii-math. Bilinear Integrable Systems: From Classical to Quatum, Continuous to Discrete = Nato Sci Ser Ii Math Bilinear Integrable Systems: From Classical to Quatum, Continuous to Discrete = Nato. Sci. Ser. Ii. Math. Bilingualism and The Individual = Multiling Bilingualism and The Individual = Multiling. Bilingualism: A Social Approach = Palgrave Adv Bilingualism: A Social Approach = Palgrave. Adv. Bilingualism in Deaf Education = Int Stud Sign Lang C Bilingualism in Deaf Education = Int. Stud. Sign. Lang. C. Bilingualism in Society and School = Multiling Bilingualism in Society and School = Multiling. Bilingualism-language and Cognition = Biling-lang Cogn Bilingualism-language and Cognition = Biling-lang. Cogn. Bilingual Review-revista Bilingue = Bilingual Rev Bilingual Review-revista Bilingue = Bilingual Rev. Bilinguals: Cognition, Education and Language Processing = Lang Linguist Ser Bilinguals: Cognition, Education and Language Processing = Lang. Linguist. Ser. Billy Graham and The Rise of The Republic South = Polit Cult Mod Am Billy Graham and The Rise of The Republic South = Polit. Cult. Mod. Am. Bilten Mednarodne Federacije Zobotehnikov (Bulletin of the International Federation of Dental Technicians) = Bilt. Mednar. Fed. Zob. Teh. Bilten Udruzenja Ortodonata Jugoslavije = Bilt. Udruz. Ortodonata Jugosl. Bilten za hematologiju i transfuziju = Bilt Hematol Transfuz Bilten za Hematologiju i Transfuziju = Bilt. Hematol. Transfuz. Bi-monthly Research Notes = Bi-mon. Res. Notes Binaries - Key to Comprehension of The Universe = Astr Soc P Binaries - Key to Comprehension of The Universe = Astr. Soc. P. Binary-computing in Microbiology = Binary-comput Microb Binary-computing in Microbiology = Binary-comput. Microb. Bing du xue za zhi = Virologica Sinica|Ping Tu Hsueh Tsa Chih Binghamton Symposia in Geomorphology : International Series = Bing Symp G Binghamton Symposia in Geomorphology : International Series = Bing. Symp. G. Binocular Vision and Strabismus Quarterly = Binocul. Vis. Strabismus Q. Binocular Vision: Development, Depth Perception and Disorders = Eye Vis Res Dev Binocular Vision: Development, Depth Perception and Disorders = Eye. Vis. Res. Dev. Binocular vision & strabismus quarterly = Binocul Vis Strabismus Q Bio'07: Proceedings of The 3rd Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering = Ma Comput Sci Eng Bio'07: Proceedings of The 3rd Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering = Ma. Comput. Sci. Eng. Bio'07: Proceedings of The 3rd Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering = Math Comput Sci Eng Bio'07: Proceedings of The 3rd Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering = Math. Comput. Sci. Eng. Bioacoustics-the International Journal of Animal Sound and Its Recording = Bioacoustics Bioacoustics-the International Journal of Animal Sound and Its Recording = Bioacoustics. Bioactive Carbohydrate Polymers = Pr Phyt Soc Bioactive Carbohydrate Polymers = Pr. Phyt. Soc. Bioactive Components of Human Milk = Adv Exp Med Biol Bioactive Components of Human Milk = Adv. Exp. Med. Biol. Bioactive Components of Milk = Adv Exp Med Biol Bioactive Components of Milk = Adv. Exp. Med. Biol. Bioactive Compounds and Cancer = Nutr Health Ser Bioactive Compounds and Cancer = Nutr. Health. Ser. Bioactive Compounds From Plants = Ciba F Symp Bioactive Compounds From Plants = Ciba. F. Symp. Bioactive Compounds in Foods = Acs Sym Ser Bioactive Compounds in Foods = Acs. Sym. Ser. Bioactive Conformation Ii = Top Curr Chem Bioactive Conformation Ii = Top. Curr. Chem. Bioactive Conformation I = Top Curr Chem Bioactive Conformation I = Top. Curr. Chem. Bioactive Hetercycles Ii = Top Heterocycl Chem Bioactive Hetercycles Ii = Top. Heterocycl. Chem. Bioactive Heterocycles Iii = Top Heterocycl Chem Bioactive Heterocycles Iii = Top. Heterocycl. Chem. Bioactive Heterocycles Iv = Top Heterocycl Chem Bioactive Heterocycles Iv = Top. Heterocycl. Chem. Bioactive Heterocycles Vii: Flavonoids and Anthocyanins in Plants, and Latest Bioactive Heterocycles Ii = Top Heterocycl Chem Bioactive Heterocycles Vii: Flavonoids and Anthocyanins in Plants, and Latest Bioactive Heterocycles Ii = Top. Heterocycl. Chem. Bioactive Heterocycles Vi = Top Heterocycl Chem Bioactive Heterocycles Vi = Top. Heterocycl. Chem. Bioactive Heterocycles V = Top Heterocycl Chem Bioactive Heterocycles V = Top. Heterocycl. Chem. Bioactive Metabolites From Microorganisms = Prog Ind M Bioactive Metabolites From Microorganisms = Prog. Ind. M. Bioactive Molecules = Bioact Mol Bioactive Molecules = Bioact. Mol. Bioactive Oligosaccharides: Production, Biological Functions and Potential Commercial Applications = Biotech Agr Ind Med Bioactive Oligosaccharides: Production, Biological Functions and Potential Commercial Applications = Biotech. Agr. Ind. Med. Bioactive Surfaces = Adv Polym Sci Bioactive Surfaces = Adv. Polym. Sci. Bioactive Volatile Compounds From Plants = Acs Sym Ser Bioactive Volatile Compounds From Plants = Acs. Sym. Ser. Bioalcohol Production: Biochemical Conversion of Lignocellulosic Biomass = Woodhead Publ Ser En Bioalcohol Production: Biochemical Conversion of Lignocellulosic Biomass = Woodhead. Publ. Ser. En. Bioanalysis = Bioanalysis Bioanalytical Approaches for Drugs, Including Anti-asthmatics and Metabolities = Meth Surv A Bioanalytical Approaches for Drugs, Including Anti-asthmatics and Metabolities = Meth. Surv. A. Bio-applications of Nanoparticles = Adv Exp Med Biol Bio-applications of Nanoparticles = Adv. Exp. Med. Biol. Bioartificial Organs = Ann Ny Acad Sci Bioartificial Organs = Ann. Ny. Acad. Sci. Bioartificial Organs Iii: Tissue Sourcing, Immunoisolation, and Clinical Trials = Ann Ny Acad Sci Bioartificial Organs Iii: Tissue Sourcing, Immunoisolation, and Clinical Trials = Ann. Ny. Acad. Sci. Bioartificial Organs Ii: Technology, Medicine, and Materials = Ann Ny Acad Sci Bioartificial Organs Ii: Technology, Medicine, and Materials = Ann. Ny. Acad. Sci. Bioassay Methods in Natural Product Research and Drug Development = Pr Phyt Soc Bioassay Methods in Natural Product Research and Drug Development = Pr. Phyt. Soc. Bioastronomy 2002: Life Among The Stars = Iau Symp Bioastronomy 2002: Life Among The Stars = Iau. Symp. Bioastronomy 2007: Molecules, Microbes, and Extraterrestrial Life = Astr Soc P Bioastronomy 2007: Molecules, Microbes, and Extraterrestrial Life = Astr. Soc. P. Bioastronomy'99, A New Era in Bioastronomy, Proceedings = Astr Soc P Bioastronomy'99, A New Era in Bioastronomy, Proceedings = Astr. Soc. P. Bioaugmentation, Biobarriers, and Biogeochemistry = Bioremed Ser Bioaugmentation, Biobarriers, and Biogeochemistry = Bioremed. Ser. Bioaugmentation for Site Remediation = Bioremed Ser Bioaugmentation for Site Remediation = Bioremed. Ser. Bioavailability of Metals in Terrestrial Ecosystems: Importance of Partitioning for Bioavailability to Invertebrates, Microbes, and Plants = Met Environm Bioavailability of Metals in Terrestrial Ecosystems: Importance of Partitioning for Bioavailability to Invertebrates, Microbes, and Plants = Met. Environm. Biobased Economy of The Twenty-first Century: Agriculture Expanding Into Health, Energy, Chemicals and Material = Nabc Rep Biobased Economy of The Twenty-first Century: Agriculture Expanding Into Health, Energy, Chemicals and Material = Nabc. Rep. Biobehavioral Reviews = Biobehav Rev Biobehavioral Reviews = Biobehav. Rev. Biobehavioral Stress Response: Protective and Damaging Effects = Ann Ny Acad Sci Biobehavioral Stress Response: Protective and Damaging Effects = Ann. Ny. Acad. Sci. Biocatalysis and Biotransformation = Biocatal Biotransfor Biocatalysis and Biotransformation = Biocatal. Biotransfor. Biocatalysis and Biotransformation = Biocatal. Biotransform. Biocatalysis At Extreme Temperatures = Acs Sym Ser Biocatalysis At Extreme Temperatures = Acs. Sym. Ser. Biocatalysis = Biocatalysis Biocatalysis - From Discovery to Application = Top Curr Chem Biocatalysis - From Discovery to Application = Top. Curr. Chem. Biocatalysis in Non-conventional Media = Progr Biotechnol Biocatalysis in Non-conventional Media = Progr. Biotechnol. Biocatalysis in Oil Refining = Stud Surf Sci Catal Biocatalysis in Oil Refining = Stud. Surf. Sci. Catal. Biocatalysis in Polymer Science = Acs Sym Ser Biocatalysis in Polymer Science = Acs. Sym. Ser. Biocatalyst Design for Stability and Specificity = Acs Sym Ser Biocatalyst Design for Stability and Specificity = Acs. Sym. Ser. Biocell=Biocell;; Biocell = Biocell Biocell : official journal of the Sociedades Latinoamericanas de Microscopia Electronica ... et. al = Biocell Bioceramics 14 = Key Eng Mat Bioceramics 14 = Key. Eng. Mat. Bioceramics 14 = Key Eng Mater Bioceramics 14 = Key. Eng. Mater. Bioceramics 15 = Key Eng Mat Bioceramics 15 = Key. Eng. Mat. Bioceramics 16 = Key Eng Mater Bioceramics 16 = Key. Eng. Mater. Bioceramics 17 = Key Eng Mat Bioceramics 17 = Key. Eng. Mat. Bioceramics 17 = Key Eng Mater Bioceramics 17 = Key. Eng. Mater. Bioceramics 18, Pts 1 and 2 = Key Eng Mat Bioceramics 18, Pts 1 and 2 = Key. Eng. Mat. Bioceramics 18, Pts 1 and 2 = Key Eng Mater Bioceramics 18, Pts 1 and 2 = Key. Eng. Mater. Bioceramics 21 = Key Eng Mat Bioceramics 21 = Key. Eng. Mat. Bioceramics 21 = Key Eng Mater Bioceramics 21 = Key. Eng. Mater. Bioceramics and Alternative Bearings in Joint Arthroplasty = Cer Ortho Bioceramics and Alternative Bearings in Joint Arthroplasty = Cer. Ortho. Bioceramics and Their Clinical Applications = Woodhead Publ Mater Bioceramics and Their Clinical Applications = Woodhead. Publ. Mater. Bioceramics = Key Eng Mat Bioceramics = Key. Eng. Mat. Bioceramics = Key Eng Mater Bioceramics = Key. Eng. Mater. Bioceramics: Materials and Applications Iv = Ceram Trans Bioceramics: Materials and Applications Iv = Ceram. Trans. Bioceramics: Materials and Applications V = Ceram Trans Bioceramics: Materials and Applications V = Ceram. Trans. Bioceramics = Mater Sci Forum Bioceramics = Mater. Sci. Forum. Bioceramics, Vol 16 = Key Eng Mat Bioceramics, Vol 16 = Key. Eng. Mat. Bioceramics, Vol 17 = Key Eng Mat Bioceramics, Vol 17 = Key. Eng. Mat. Bioceramics, Vol 19, Pts 1 and 2 = Key Eng Mat Bioceramics, Vol 19, Pts 1 and 2 = Key. Eng. Mat. Bioceramics, Vol 19, Pts 1 and 2 = Key Eng Mater Bioceramics, Vol 19, Pts 1 and 2 = Key. Eng. Mater. Bioceramics, Vol 20, Pts 1 and 2 = Key Eng Mat Bioceramics, Vol 20, Pts 1 and 2 = Key. Eng. Mat. Bioceramics, Vol 20, Pts 1 and 2 = Key Eng Mater Bioceramics, Vol 20, Pts 1 and 2 = Key. Eng. Mater. Biochemia Medica = Biochem Medica Biochemia Medica = Biochem. Medica Biochemical Actions of Hormones = Biochem Action Horm Biochemical Actions of Hormones = Biochem. Action. Horm. Biochemical and Biomolecular Sensing = P Soc Photo-opt Ins Biochemical and Biomolecular Sensing = P. Soc. Photo-opt. Ins. Biochemical and Biophysical Research Communications = Biochem Bioph Res Co Biochemical and Biophysical Research Communications = Biochem. Bioph. Res. Co. Biochemical and biophysical research communications = Biochem Biophys Res Commun Biochemical and Biophysical Research Communications=Biochem Biophys Res Commun;; Biochemical and Biophysical Research Communications = Biochem. Biophys. Res. Commun. Biochemical and Biotechnological Applications of Electrospray Ionization Mass Spectrometry = Acs Sym Ser Biochemical and Biotechnological Applications of Electrospray Ionization Mass Spectrometry = Acs. Sym. Ser. Biochemical and Cellular Mechanisms of Stress Tolerance in Plants = Nato Adv Sci Inst Se Biochemical and Cellular Mechanisms of Stress Tolerance in Plants = Nato. Adv. Sci. Inst. Se. Biochemical and molecular medicine = Biochem Mol Med Biochemical and Molecular Medicine = Biochem Mol Med Biochemical and Molecular Medicine = Biochem. Mol. Med. Biochemical and Physiological Aspects of Ethylene Production in Lower and Higher Plants = Adv Agr Bio Biochemical and Physiological Aspects of Ethylene Production in Lower and Higher Plants = Adv. Agr. Bio. Biochemical Approaches to Cellular Calcium = Meth Surv I Biochemical Approaches to Cellular Calcium = Meth. Surv. I. Biochemical archives = Biochem Arch Biochemical Archives = Biochem Arch Biochemical Archives = Biochem. Arch. Biochemical clinics = Biochem Clin Biochemical Diagnostic Instrumentation, Proceedings Of = P Soc Photo-opt Ins Biochemical Diagnostic Instrumentation, Proceedings Of = P. Soc. Photo-opt. Ins. Biochemical education = Biochem Educ Biochemical Education = Biochem Educ Biochemical Education = Biochem. Educ. Biochemical Engineering = Biotech Agr Ind Med Biochemical Engineering = Biotech. Agr. Ind. Med. Biochemical engineering journal = Biochem Eng J Biochemical Engineering Journal = Biochem Eng J Biochemical Engineering Journal = Biochem. Eng. J. Biochemical Engineering Vii = Ann Ny Acad Sci Biochemical Engineering Vii = Ann. Ny. Acad. Sci. Biochemical Engineering Viii = Ann Ny Acad Sci Biochemical Engineering Viii = Ann. Ny. Acad. Sci. Biochemical genetics = Biochem Genet Biochemical Genetics=Biochem Genet;; Biochemical Genetics = Biochem Genet Biochemical Genetics = Biochem. Genet. Biochemical Journal=Biochem J;; Biochemical Journal = Biochem J Biochemical Journal = Biochem. J Biochemical Journal = Biochem. J. Biochemical Medicine and Metabolic Biology = Biochem Med Metab B Biochemical Medicine and Metabolic Biology = Biochem. Med. Metab. B. Biochemical medicine and metabolic biology = Biochem Med Metab Biol Biochemical Medicine and Metabolic Biology = Biochem. Med. Metab. Biol. Biochemical medicine = Biochem Med Biochemical Medicine = Biochem. Med. Biochemical Medicine = Biochem Med Metab B Biochemical Medicine = Biochem. Med. Metab. B. Biochemical pharmacology = Biochem Pharmacol Biochemical Pharmacology=Biochem Pharmacol;; Biochemical Pharmacology = Biochem Pharmacol Biochemical Pharmacology = Biochem. Pharmacol. Biochemical Preparations = Biochem. Prep. Biochemical Preparations = Biochem Preparat Biochemical Preparations = Biochem. Preparat. Biochemical Society Symposia=Biochem Soc Symp;; Biochemical Society Symposia = Biochem Soc Symp Biochemical Society Symposia = Biochem. Soc. Symp. Biochemical Society symposium = Biochem Soc Symp Biochemical Society Symposium = Biochem Soc Symp Biochemical Society Symposium = Biochem. Soc. Symp. Biochemical Society Transactions = Biochem Soc T Biochemical Society Transactions = Biochem. Soc. T. Biochemical Society transactions = Biochem Soc Trans Biochemical Society Transactions=Biochem Soc Trans;; Biochemical Society Transactions = Biochem. Soc. Trans. Biochemical Spectroscopy = Method Enzymol Biochemical Spectroscopy = Method. Enzymol. Biochemical Spectroscopy = Methods Enzymol Biochemical Spectroscopy = Methods. Enzymol. Biochemical systematics and ecology = Biochem Syst Ecol Biochemical Systematics and Ecology = Biochem Syst Ecol Biochemical Systematics and Ecology = Biochem. Syst. Ecol. Biochemie Und Physiologie Der Pflanzen = Biochem Physiol Pfl Biochemie Und Physiologie Der Pflanzen = Biochem. Physiol. Pfl. Biochemie und Physiologie der Pflanzen : BPP = Biochem Physiol Pflanz Biochemische Zeitschrift = Biochem Z Biochemische Zeitschrift = Biochem. Z. Biochemistry and Cell Biology=Biochem Cell Biol;; Biochemistry and Cell Biology = Biochem. Cell Biol. Biochemistry and Cell Biology-biochimie Et Biologie Cellulaire = Biochem Cell Biol Biochemistry and Cell Biology-biochimie Et Biologie Cellulaire = Biochem. Cell Biol. Biochemistry and Cell Biology-Biochimie et Biologie Cellulaire = Biochem. Cell Biol. Biochemistry and experimental biology = Biochem Exp Biol Biochemistry and Experimental Biology = Biochem Exp Biol Biochemistry and Experimental Biology = Biochem. Exp. Biol. Biochemistry and Histocytochemistry Research Developments = Biochem Res Trends Biochemistry and Histocytochemistry Research Developments = Biochem. Res. Trends. Biochemistry and Molecular Biology Education = Biochem Mol Biol Edu Biochemistry and Molecular Biology Education = Biochem. Mol. Biol. Edu. Biochemistry and Molecular Biology Education = Biochem. Mol. Biol. Educ. Biochemistry and molecular biology international = Biochem Mol Biol Int Biochemistry and Molecular Biology International=Biochem Mol Biol Int;; Biochemistry and Molecular Biology International = Biochem Mol Biol Int Biochemistry and Molecular Biology International = Biochem. Mol. Biol. Int. Biochemistry=Biochemistry;; Biochemistry = Biochemistry Biochemistry=Biochemistry (Mosc);; Biochemistry = Biochemistry (Mosc.) Biochemistry = Biochemistry-us Biochemistry = Biochemistry-us. Biochemistry. Biokhimiia = Biochemistry (Mosc) Biochemistry, Biological Functions, Gene Regulation and Expression = Int Congr Ser Biochemistry, Biological Functions, Gene Regulation and Expression = Int. Congr. Ser. Biochemistry international = Biochem Int Biochemistry International = Biochem Int Biochemistry International = Biochem. Int. Biochemistry, Molecular Biology, and Physiology of Phospholipase A2 and Its Regulatory Factors = Adv Exp Med Biol Biochemistry, Molecular Biology, and Physiology of Phospholipase A2 and Its Regulatory Factors = Adv. Exp. Med. Biol. Biochemistry-moscow = Biochemistry-moscow+ Biochemistry-moscow = Biochemistry-moscow+.+ Biochemistry (Moscow) = Biochemistry (Moscow) Biochemistry of Breast Cyst Fluid = Ann Ny Acad Sci Biochemistry of Breast Cyst Fluid = Ann. Ny. Acad. Sci. Biochemistry of Exercise Vii = Int S Sport Biochemistry of Exercise Vii = Int. S. Sport. Biochemistry of Exercise X = Int S Sport Biochemistry of Exercise X = Int. S. Sport. Biochemistry of Marine Organisms = Oceanis S D Biochemistry of Marine Organisms = Oceanis. S. D. Biochemistry of Pulmonary Emphysema = Curr T Reh Biochemistry of Pulmonary Emphysema = Curr. T. Reh. Biochemistry of The Mevalonic Acid Pathway to Terpenoids = Recent Adv Phytochem Biochemistry of The Mevalonic Acid Pathway to Terpenoids = Recent. Adv. Phytochem. BioChemistry (Rajkot, India) = BioChemistry (Rajkot, India) Biochemistry Research Trends = Biochem Res Trends Biochemistry Research Trends = Biochem. Res. Trends Biochimica clinica = Biochim Clin Biochimica et Biophysica Acta (BBA) - Biophysics including Photosynthesis = Biochim. Biophys. Acta, Biophys. Incl. Photsynth. Biochimica et biophysica acta = Biochim Biophys Acta Biochimica et Biophysica Acta = Biochim. Biophys. Acta Biochimica Et Biophysica Acta=Biochim Biophys Acta;; Biochimica Et Biophysica Acta = Biochim Biophys Acta Biochimica Et Biophysica Acta = Biochim. Biophys. Acta Biochimica Et Biophysica Acta-bioenergetics = Bba-bioenergetics Biochimica Et Biophysica Acta-bioenergetics = Bba-bioenergetics. Biochimica et Biophysica Acta, Bioenergetics = Biochim. Biophys. Acta, Bioenerg. Biochimica Et Biophysica Acta-biomembranes = Bba-biomembranes Biochimica Et Biophysica Acta-biomembranes = Bba-biomembranes. Biochimica et Biophysica Acta, Biomembranes = Biochim. Biophys. Acta, Biomembr. Biochimica et Biophysica Acta, Biophysics Including Photosynthesis = Biochim. Biophys. Acta, Biophys. Incl. Photosynth. Biochimica et Biophysica Acta, Enzymology and Biological Oxidation = Biochim. Biophys. Acta, Enzymol. Biol. Oxid. Biochimica et Biophysica Acta, Enzymology = Biochim. Biophys. Acta, Enzymol. Biochimica Et Biophysica Acta-general Subjects = Bba-gen Subjects Biochimica Et Biophysica Acta-general Subjects = Bba-gen. Subjects Biochimica et Biophysica Acta, General Subjects = Biochim. Biophys. Acta, Gen. Subj. Biochimica Et Biophysica Acta-gene Regulatory Mechanisms = Bba-gene Regul Mech Biochimica Et Biophysica Acta-gene Regulatory Mechanisms = Bba-gene. Regul. Mech. Biochimica et Biophysica Acta, Gene Regulatory Mechanisms = Biochim. Biophys. Acta, Gene Regul. Mech. Biochimica Et Biophysica Acta-gene Structure and Expression = Bba-gene Struct Expr Biochimica Et Biophysica Acta-gene Structure and Expression = Bba-gene. Struct. Expr. Biochimica et Biophysica Acta, Gene Structure and Expression = Biochim. Biophys. Acta, Gene Struct. Expression Biochimica Et Biophysica Acta-lipids and Lipid Metabolism = Bba-lipid Lipid Met Biochimica Et Biophysica Acta-lipids and Lipid Metabolism = Bba-lipid. Lipid Met. Biochimica et Biophysica Acta, Lipids and Lipid Metabolism = Biochim. Biophys. Acta, Lipids Lipid Metab. Biochimica Et Biophysica Acta-molecular and Cell Biology of Lipids = Bba-mol Cell Biol L Biochimica Et Biophysica Acta-molecular and Cell Biology of Lipids = Bba-mol. Cell Biol. L. Biochimica et Biophysica Acta, Molecular and Cell Biology of Lipids = Biochim. Biophys. Acta, Mol. Cell Biol. Lipids Biochimica et Biophysica Acta, Molecular and Cell Biology of Lipids = Biochim. Biophys. Acta, Mol. Cell. Biol. Lipids Biochimica Et Biophysica Acta-molecular Basis of Disease = Bba-mol Basis Dis Biochimica Et Biophysica Acta-molecular Basis of Disease = Bba-mol. Basis Dis. Biochimica et Biophysica Acta, Molecular Basis of Disease = Biochim. Biophys. Acta, Mol. Basis Dis. Biochimica Et Biophysica Acta-molecular Cell Research = Bba-mol Cell Res Biochimica Et Biophysica Acta-molecular Cell Research = Bba-mol. Cell Res. Biochimica et Biophysica Acta, Molecular Cell Research = Biochim. Biophys. Acta, Mol. Cell Res. Biochimica et Biophysica Acta, Molecular Cell Research = Biochim. Biophys. Acta, Mol. Cell. Res. Biochimica et Biophysica Acta, Mucoproteins and Mucopolysaccharides = Biochim. Biophys. Acta, Mucoproteins Mucopolysaccharides Biochimica et Biophysica Acta, Mucoproteins and Mucopolysaccharides = Biochim. Biophys. Acta, Mucroproteins Mucopolysaccharides Biochimica et Biophysica Acta, Nucleic Acids and Protein Synthesis = Biochim. Biophys. Acta, Nucleic Acids Protein Synth. Biochimica Et Biophysica Acta-proteins and Proteomics = Bba-proteins Proteom Biochimica Et Biophysica Acta-proteins and Proteomics = Bba-proteins. Proteom. Biochimica et Biophysica Acta, Proteins and Proteomics = Biochim. Biophys. Acta, Proteins Proteomics Biochimica Et Biophysica Acta-protein Structure and Molecular Enzymology = Bba-protein Struct M Biochimica Et Biophysica Acta-protein Structure and Molecular Enzymology = Bba-protein. Struct. M. Biochimica et Biophysica Acta, Protein Structure and Molecular Enzymology = Biochim. Biophys. Acta, Protein Struct. Mol. Enzymol. Biochimica et Biophysica Acta, Protein Structure = Biochim. Biophys. Acta, Protein Struct. Biochimica et Biophysica Acta, Reviews on Bioenergetics = Biochim. Biophys. Acta, Rev. Bioenerg. Biochimica Et Biophysica Acta-reviews On Biomembranes = Bba-rev Biomembranes Biochimica Et Biophysica Acta-reviews On Biomembranes = Bba-rev. Biomembranes Biochimica et Biophysica Acta, Reviews on Biomembranes = Biochim. Biophys. Acta, Rev. Biomembr. Biochimica Et Biophysica Acta-reviews On Cancer = Bba-rev Cancer Biochimica Et Biophysica Acta-reviews On Cancer = Bba-rev. Cancer Biochimica et Biophysica Acta, Reviews on Cancer = Biochim. Biophys. Acta, Rev. Cancer Biochimica et Biophysica Acta, Specialized Section on Biophysical Subjects = Biochim. Biophys. Acta, Spec. Sect. Biophys. Subj. Biochimica et Biophysica Acta, Specialized Section on Enzymological Subjects = Biochim. Biophys. Acta, Spec. Sect. Enzymol. Subj. Biochimica et Biophysica Acta, Specialized Section on Lipids and Related Subjects = Biochim. Biophys. Acta, Spec. Sect. Lipids Relat. Subj. Biochimie=Biochimie;; Biochimie = Biochimie Biochip Journal = Biochip J Biochip Journal = Biochip J. Biocombinatorial Approaches for Drug Finding = E Schering Res Fdn W Biocombinatorial Approaches for Drug Finding = E. Schering. Res. Fdn. W. Biocommunication in Soil Microorganisms = Soil Biol Biocommunication in Soil Microorganisms = Soil Biol. Biocompatible Nanomaterials: Synthesis, Characterization and Applications = Nanotechnol Sci Tech Biocompatible Nanomaterials: Synthesis, Characterization and Applications = Nanotechnol. Sci. Tech. Biocompatible Polymeric Materials and Tourniquets for Wounds = Top Appl Chem Biocompatible Polymeric Materials and Tourniquets for Wounds = Top. Appl. Chem. Biocomputing = Biocomp Ser Biocomputing = Biocomp. Ser. Biocomputing (series) = Biocomp Ser Biocomputing (series) = Biocomp. Ser. Bioconductor Case Studies = Use R Bioconductor Case Studies = Use. R. Bioconjugate Chemistry = Bioconjugate Chem Bioconjugate Chemistry = Bioconjugate Chem. Bioconjugate chemistry = Bioconjug Chem Bioconjugate Chemistry=Bioconjug Chem;; Bioconjugate Chemistry = Bioconjug. Chem. Bioconjugation Protocols: Strategies and Methods, Second Edition = Methods Mol Biol Bioconjugation Protocols: Strategies and Methods, Second Edition = Methods. Mol. Biol. Biocontrol = Biocontrol Biocontrol Science and Technology = Biocontrol Sci Techn Biocontrol Science and Technology = Biocontrol Sci. Techn. Biocontrol Science and Technology = Biocontrol Sci. Technol. Biocontrol science = Biocontrol Sci Biocontrol Science = Biocontrol Sci Biocontrol Science = Biocontrol Sci. Bioconversion of Plant Raw Materials - Biotechnology Advancement = Vtt Symp Bioconversion of Plant Raw Materials - Biotechnology Advancement = Vtt. Symp. Biocybernetics and Biomedical Engineering = Biocybern Biomed Eng Biocybernetics and Biomedical Engineering = Biocybern. Biomed. Eng. Biocybernetics of Vision = Ser Biophys Biocyber Biocybernetics of Vision = Ser. Biophys. Biocyber. Biocycle = Biocycle BioCycle = Biocycle Biodefence: Advanced Materials and Methods for Health Protection = Nato Sci Peace Sec A Biodefence: Advanced Materials and Methods for Health Protection = Nato. Sci. Peace. Sec. A. Biodegradability Prediction = Nato Asi 2 Biodegradability Prediction = Nato. Asi. 2. Biodegradable Composites for Bone Regeneration = Biomat Prop Prod Dev Biodegradable Composites for Bone Regeneration = Biomat. Prop. Prod. Dev. Biodegradable Plastics and Polymers = Stud Polym Sci Biodegradable Plastics and Polymers = Stud. Polym. Sci. Biodegradation = Biodegradation Biodegradation of Azo Dyes = Handb Environ Chem Biodegradation of Azo Dyes = Handb. Environ. Chem. Biodegradation of Cellulose Fibers = Bacteriol Res Dev Biodegradation of Cellulose Fibers = Bacteriol. Res. Dev. Biodegradation of Nitroaromatic Compounds = Envir Sci R Biodegradation of Nitroaromatic Compounds = Envir. Sci. R. Biodemography and Social Biology = Biodemogr Soc Biol Biodemography and Social Biology = Biodemogr. Soc. Biol. Biodeterioration and Biodegradation = Dech Monog Biodeterioration and Biodegradation = Dech. Monog. Biodiesel Science and Technology: From Soil to Oil = Woodhead Publ Ser En Biodiesel Science and Technology: From Soil to Oil = Woodhead. Publ. Ser. En. Biodiversidade Da Fauna Marinha Profunda Na Costa Central Brasileira = Ser Livros Mus Nac Biodiversidade Da Fauna Marinha Profunda Na Costa Central Brasileira = Ser. Livros. Mus. Nac. Biodiversity and Conservation = Biodivers Conserv Biodiversity and Conservation = Biodivers. Conserv. Biodiversity and Ecosystem Function = Ecol Stu An Biodiversity and Ecosystem Function = Ecol. Stu. An. Biodiversity and Ecosystem Processes in Tropical Forests = Ecol Stu An Biodiversity and Ecosystem Processes in Tropical Forests = Ecol. Stu. An. Biodiversity and Management of The Madrean Archipelago: The Sky Islands of Southwestern United States and Northwestern Mexico = Usda Rocky Biodiversity and Management of The Madrean Archipelago: The Sky Islands of Southwestern United States and Northwestern Mexico = Usda. Rocky. Biodiversity and Savanna Ecosystem Processes = Ecol Stu An Biodiversity and Savanna Ecosystem Processes = Ecol. Stu. An. Biodiversity and Terrestrial Ecosystems = Inst Bot Ac Biodiversity and Terrestrial Ecosystems = Inst. Bot. Ac. Biodiversity, Biofuels, Agroforestry and Conservation Agriculture = Sustain Agr Rev Biodiversity, Biofuels, Agroforestry and Conservation Agriculture = Sustain. Agr. Rev. Biodiversity Crisis and Crustacea = Crustacean Iss Biodiversity Crisis and Crustacea = Crustacean. Iss. Biodiversity Hotspots = Environ Sci Eng Tech Biodiversity Hotspots = Environ. Sci. Eng. Tech. Biodiversity Letters = Biodivers. Lett. Biodiversity of Cyanoprocaryotes Algae and Fungi of Israel = Biodivers Cyanoproca Biodiversity of Cyanoprocaryotes Algae and Fungi of Israel = Biodivers. Cyanoproca. Biodiversity of Microorganisms and Invertebrates : Its Role in Sustainable Agriculture = Casafa Rep Biodiversity of Microorganisms and Invertebrates : Its Role in Sustainable Agriculture = Casafa. Rep. Biodiversity of The Powdery Mildew Fungi (erysiphales, Ascomycota) of Israel = Biodivers Cyanoproca Biodiversity of The Powdery Mildew Fungi (erysiphales, Ascomycota) of Israel = Biodivers. Cyanoproca. Biodiversity Research in The Horn of Africa Region = Biol Skrif Biodiversity Research in The Horn of Africa Region = Biol. Skrif. Biodiversity = Roy Soc Ch Biodiversity = Roy. Soc. Ch. Biodiversity, Status, and Conservation of The World's Shads = Am Fish S S Biodiversity, Status, and Conservation of The World's Shads = Am. Fish. S. S. Biodrugs = Biodrugs BioDrugs = BioDrugs BioDrugs : clinical immunotherapeutics, biopharmaceuticals and gene therapy = BioDrugs Biodynamica = Biodynamica Bioeconomic Modelling and Valuation of Exploited Marine Ecosystems = Econ Environ Bioeconomic Modelling and Valuation of Exploited Marine Ecosystems = Econ. Environ. Bioelectrochemistry (Amsterdam, Netherlands) = Bioelectrochemistry Bioelectrochemistry and Bioenergetics = Bioelectroch Bioener Bioelectrochemistry and Bioenergetics = Bioelectroch. Bioener. Bioelectrochemistry and Bioenergetics = Bioelectrochem. Bioenerg. Bioelectrochemistry and bioenergetics (Lausanne, Switzerland) = Bioelectrochem Bioenerg Bioelectrochemistry = Bioelectrochemistry Bioelectrochemistry Iv = Nato Adv Sci Inst Se Bioelectrochemistry Iv = Nato. Adv. Sci. Inst. Se. Bioelectromagnetics=Bioelectromagnetics;; Bioelectromagnetics = Bioelectromagnetics Bioelectronic Applications of Photochromic Pigments = Nato Sci Ser I Life Bioelectronic Applications of Photochromic Pigments = Nato. Sci. Ser. I. Life. Bioelectronics, Biomedical, and Bioinspired Systems V and Nanotechnology V = Proc Spie Bioelectronics, Biomedical, and Bioinspired Systems V and Nanotechnology V = Proc. Spie. Bioencapsulation in Silica-based Nanoporous Sol-gel Glasses = Nanotechnol Sci Tech Bioencapsulation in Silica-based Nanoporous Sol-gel Glasses = Nanotechnol. Sci. Tech. Bioenergy Research = Bioenerg Res Bioenergy Research = Bioenerg. Res. Bioengineered and Bioinspired Systems Iii = P Soc Photo-opt Ins Bioengineered and Bioinspired Systems Iii = P. Soc. Photo-opt. Ins. Bioengineered and Bioinspired Systems Ii = Proc Spie Bioengineered and Bioinspired Systems Ii = Proc. Spie. Bioengineered and Bioinspired Systems Ii = P Soc Photo-opt Ins Bioengineered and Bioinspired Systems Ii = P. Soc. Photo-opt. Ins. Bioengineered and Bioinspired Systems Iv = Proc Spie Bioengineered and Bioinspired Systems Iv = Proc. Spie. Bioengineered and Bioinspired Systems = P Soc Photo-opt Ins Bioengineered and Bioinspired Systems = P. Soc. Photo-opt. Ins. Bioengineered Molecules : Basic and Clinical Aspects = Ser Symp Ad Bioengineered Molecules : Basic and Clinical Aspects = Ser. Symp. Ad. Bioengineering Division of The American Society of Mechanical Engineers = Bioeng Div Asme Bioengineering Division of The American Society of Mechanical Engineers = Bioeng. Div. Asme. Bioengineering: Principles, Methodologies and Applications = Biotech Agr Ind Med Bioengineering: Principles, Methodologies and Applications = Biotech. Agr. Ind. Med. Bioengineering Research of Chronic Wounds: A Multidisciplinary Study Approach = Stud Mechanobiol Tis Bioengineering Research of Chronic Wounds: A Multidisciplinary Study Approach = Stud. Mechanobiol. Tis. Bioequivalence and Statistics in Clinical Pharmacology = Interd Stat Bioequivalence and Statistics in Clinical Pharmacology = Interd. Stat. Bioessays=Bioessays;; Bioessays = Bioessays BioEssays = BioEssays BioEssays : news and reviews in molecular, cellular and developmental biology = Bioessays Bioethanol: Production, Benefits and Economics = Energ Sci Eng Tech Bioethanol: Production, Benefits and Economics = Energ. Sci. Eng. Tech. Bioethical Issues, Sociological Perspectives = Adv Med Sociol Bioethical Issues, Sociological Perspectives = Adv. Med. Sociol. Bioethics and The Humanities: Attitudes and Perceptions = Biomed Law Ethics Li Bioethics and The Humanities: Attitudes and Perceptions = Biomed. Law. Ethics. Li. Bioethics = Bioethics Bioethics bulletin (Washington, D.C.) = Bioeth Bull Bioethics digest = Bioethics Dig Bioethics examiner = Bioeth Exam Bioethics forum = Bioethics Forum Bioethics in A Small World = Wissensch Technikfol Bioethics in A Small World = Wissensch. Technikfol. Bioethics news = Bioeth News Bioethics Northwest = Bioethics Northwest Bioethics of Regenerative Medicine = Philos Med Bioethics of Regenerative Medicine = Philos. Med. Bioethics quarterly = Bioethics Q Bioethics Quarterly = Bioethics Q. Bioethics research notes = Bioeth Res Notes Bioethics With Liberty and Justice: Themes in The Work of Joseph M. Boyle = Philos Med Bioethics With Liberty and Justice: Themes in The Work of Joseph M. Boyle = Philos. Med. Bioetica Y Debat = Bioet Debat Biofabrication = Biofabrication Biofactors=Biofactors;; Biofactors = Biofactors BioFactors = BioFactors BioFactors (Oxford, England) = Biofactors Bio-farms for Nutraceuticals: Functional Food and Safety Control By Biosensors = Adv Exp Med Biol Bio-farms for Nutraceuticals: Functional Food and Safety Control By Biosensors = Adv. Exp. Med. Biol. Biofeedback and Self-regulation = Biofeedback Self-reg Biofeedback and Self-regulation = Biofeedback Self-reg. Biofeedback and self-regulation = Biofeedback Self Regul Biofeedback and Self Regulation = Biofeedback Self Regul. Biofilms = Biofilms Biofilms in The Aquatic Environment = Roy Soc Ch Biofilms in The Aquatic Environment = Roy. Soc. Ch. Biofilms in The Food and Beverage Industries = Woodhead Food Ser Biofilms in The Food and Beverage Industries = Woodhead. Food Ser. Biofilms = Method Enzymol Biofilms = Method. Enzymol. Biofilms = Methods Enzymol Biofilms = Methods. Enzymol. Biofilms - Science and Technology = Nato Adv Sci Inst Se Biofilms - Science and Technology = Nato. Adv. Sci. Inst. Se. Biofizika=Biofizika;; Biofizika = Biofizika Biofizika = Biofizika+ Biofizika = Biofizika+.+ Bioflavour 95 = Colloq Inra Bioflavour 95 = Colloq. Inra. Biofluid Mechanics, 3 = Nyu M Biom Biofluid Mechanics, 3 = Nyu. M. Biom. Bioformation of Flavours = Roy Soc Ch Bioformation of Flavours = Roy. Soc. Ch. Bioformosa = Sheng wu xue bao|Bioformosa Biofouling = Biofouling Biofouling: Types, Impact and Anti-fouling = Pollut Sci Technol A Biofouling: Types, Impact and Anti-fouling = Pollut. Sci. Technol. A. Biofuels = Adv Biochem Eng Biot Biofuels = Adv. Biochem. Eng. Biot. Biofuels, Bioproducts and Biorefining = Biofuels, Bioprod. Biorefin. Biofuels Bioproducts & Biorefining-biofpr = Biofuel Bioprod Bior Biofuels Bioproducts & Biorefining-biofpr = Biofuel. Bioprod. Bior. Biofuels, Bioproducts & Biorefining = Biofuels, Bioprod. Biorefin. Biofuels for Road Transport: A Seed to Wheel Perspective = Green Energy Technol Biofuels for Road Transport: A Seed to Wheel Perspective = Green. Energy. Technol. Biofuels From Fischer-tropsch Synthesis = Energ Sci Eng Tech Biofuels From Fischer-tropsch Synthesis = Energ. Sci. Eng. Tech. Biofuels: Methods and Protocols = Methods Mol Biol Biofuels: Methods and Protocols = Methods Mol. Biol. Biofuels - Techniques and Applications = Vdi Bericht Biofuels - Techniques and Applications = Vdi. Bericht. Biofutur = Biofutur Biogas 2009 = Vdi Bericht Biogas 2009 = Vdi. Bericht. Biogas As Regenerative Energy - Present and Future = Vdi Bericht Biogas As Regenerative Energy - Present and Future = Vdi. Bericht. Biogenic amines = Biog Amines Biogenic Amines = Biog. Amines Biogenic Amines = Biogenic Amines Biogenic Amines: Pharmacological, Neurochemical and Molecular Aspects in The Cns = Pharm Res Saf Test Biogenic Amines: Pharmacological, Neurochemical and Molecular Aspects in The Cns = Pharm. Res. Saf. Test. Biogeochemical Controls On Palaeoceanographic Environmental Proxies = Geol Soc Spec Publ Biogeochemical Controls On Palaeoceanographic Environmental Proxies = Geol. Soc. Spec. Publ. Biogeochemical Cycles of Elements = Met Ions Biol Syst Biogeochemical Cycles of Elements = Met. Ions. Biol. Syst. Biogeochemical Cycling and Sediment Ecology = Nato Asi 2 Biogeochemical Cycling and Sediment Ecology = Nato. Asi. 2. Biogeochemical Processes of Biogenic Elements in China Marginal Seas = Adv Top Sci Tech Chi Biogeochemical Processes of Biogenic Elements in China Marginal Seas = Adv. Top. Sci. Tech. Chi. Biogeochemical Silicium Cycle: Elemental to Global Scale = Oceanis S D Biogeochemical Silicium Cycle: Elemental to Global Scale = Oceanis. S. D. Biogeochemical Silicium Cycle: Elemental to Global Scale = Oceanis-ser Doc Biogeochemical Silicium Cycle: Elemental to Global Scale = Oceanis-ser. Doc. Biogeochemistry and Pedogenetic Process in Saltmarsh and Mangrove Systems = Environ Sci Eng Tech Biogeochemistry and Pedogenetic Process in Saltmarsh and Mangrove Systems = Environ. Sci. Eng. Tech. Biogeochemistry = Biogeochemistry Biogeochemistry of Environmentally Important Trace Elements = Acs Sym Ser Biogeochemistry of Environmentally Important Trace Elements = Acs. Sym. Ser. Biogeochemistry of Seasonally Snow-covered Catchments = Iahs-aish P Biogeochemistry of Seasonally Snow-covered Catchments = Iahs-aish. P. Biogeochemistry of Small Catchments = Scope Ser Biogeochemistry of Small Catchments = Scope. Ser. Biogeochemistry of Trace Metals = Adv Tr Sub Biogeochemistry of Trace Metals = Adv. Tr. Sub. Biogeochimie Marine = Oceanis-ser Doc Biogeochimie Marine = Oceanis-ser. Doc. Biogeography and Madagascar = Colloq Semi Biogeography and Madagascar = Colloq. Semi. Biogeography = Environ Res Adv Biogeography = Environ. Res. Adv. Biogeography in A Changing World = Syst Assoc Spec Vol Biogeography in A Changing World = Syst. Assoc. Spec. Vol. Biogeosciences = Biogeosciences Biogerontology = Biogerontology Biogerontology: Mechanisms and Interventions = Ann Ny Acad Sci Biogerontology: Mechanisms and Interventions = Ann. Ny. Acad. Sci. Biogradski zbornik = BiogrZbor Biographical memoirs. National Academy of Sciences (U.S.) = Biogr Mem Natl Acad Sci Biographical memoirs of fellows of the Royal Society. Royal Society (Great Britain) = Biogr Mem Fellows R Soc Biography-an Interdisciplinary Quarterly = Biography Biography-an Interdisciplinary Quarterly = Biography. Biography = Biography Biography East and West = Lit St E W Biography East and West = Lit. St. E. W. Biography in Early Modern France 1540-1630: Forms and Functions = Res Monogr Fr Stud Biography in Early Modern France 1540-1630: Forms and Functions = Res. Monogr. Fr. Stud. Biohydrogen: for Future Engine Fuel Demands = Green Energy Technol Biohydrogen: for Future Engine Fuel Demands = Green. Energy. Technol. Biohydrometallurgy: A Meeting Point Between Microbial Ecology, Metal Recovery Processes and Environmental Remediation = Adv Mater Res-switz Biohydrometallurgy: A Meeting Point Between Microbial Ecology, Metal Recovery Processes and Environmental Remediation = Adv. Mater. Res-switz. Biohydrometallurgy: A Meeting Point Between Microbial Ecology, Metal Recovery Processes and Environmental Remediation = Adv Mat Res Biohydrometallurgy: A Meeting Point Between Microbial Ecology, Metal Recovery Processes and Environmental Remediation = Adv. Mat. Res. Biohydrometallurgy and The Environment Toward The Mining of The 21st Century, Pt A 1999 = Process Met Biohydrometallurgy and The Environment Toward The Mining of The 21st Century, Pt A 1999 = Process. Met. Biohydrometallurgy and The Environment Toward The Mining of The 21st Century, Pt B 1999 = Process Met Biohydrometallurgy and The Environment Toward The Mining of The 21st Century, Pt B 1999 = Process. Met. Biohydrometallury: From The Single Cell to The Environment = Adv Mater Res-switz Biohydrometallury: From The Single Cell to The Environment = Adv. Mater. Res-switz. Biohydrometallury: From The Single Cell to The Environment = Adv Mat Res Biohydrometallury: From The Single Cell to The Environment = Adv. Mat. Res. Bioimaging and Two-dimensional Spectroscopy = P Soc Photo-opt Ins Bioimaging and Two-dimensional Spectroscopy = P. Soc. Photo-opt. Ins. Bioimaging = Bioimaging Bioindicators of Environmental Health = Ecovis World Mg Ser Bioindicators of Environmental Health = Ecovis. World. Mg. Ser. Bioindicator Systems for Soil Pollution = Nato Asi 2 Bioindicator Systems for Soil Pollution = Nato. Asi. 2. Bioinformatics and Biology Insights = Bioinf. Biol. Insights Bioinformatics and Computational Biology, Proceedings = Lect N Bioinformat Bioinformatics and Computational Biology, Proceedings = Lect. N. Bioinformat. Bioinformatics and Genome Analysis = E Schering Res Fdn W Bioinformatics and Genome Analysis = E. Schering. Res. Fdn. W. Bioinformatics: A Practical Approach = Ch Crc Math Comp Bio Bioinformatics: A Practical Approach = Ch. Crc. Math. Comp. Bio. Bioinformatics=Bioinformatics;; Bioinformatics = Bioinformatics Bioinformatics for Comparative Proteomics = Methods Mol Biol Bioinformatics for Comparative Proteomics = Methods. Mol. Biol. Bioinformatics for Dna Sequence Analysis = Methods Mol Biol Bioinformatics for Dna Sequence Analysis = Methods. Mol. Biol. Bioinformatics for Immunomics = Immunomics Rev Bioinformatics for Immunomics = Immunomics Rev. Bioinformatics for Omics Data: Methods and Protocols = Methods Mol Biol Bioinformatics for Omics Data: Methods and Protocols = Methods Mol. Biol. Bioinformatics: High Performance Parallel Computer Architectures = Embed Multi-cor Syst Bioinformatics: High Performance Parallel Computer Architectures = Embed. Multi-cor. Syst. Bioinformatics = Lect Notes Comput Sc Bioinformatics = Lect. Notes. Comput. Sc. Bioinformatics = Method Biochem Anal Bioinformatics = Method. Biochem. Anal. Bioinformatics Methods in Clinical Research = Methods Mol Biol Bioinformatics Methods in Clinical Research = Methods Mol. Biol. Bioinformatics (Oxford, England) = Bioinformatics Bioinformatics Research and Applications = Lect N Bioinformat Bioinformatics Research and Applications = Lect. N. Bioinformat. Bioinformatics Research and Applications, Proceedings = Lect N Bioinformat Bioinformatics Research and Applications, Proceedings = Lect. N. Bioinformat. Bioinformatics Research and Development, Proceedings = Comm Com Inf Sc Bioinformatics Research and Development, Proceedings = Comm. Com. Inf. Sc. Bioinformatics Research and Development, Proceedings = Lect Notes Comput Sc Bioinformatics Research and Development, Proceedings = Lect. Notes. Comput. Sc. Bioinformation = Bioinformation Bioinorganic chemistry and applications = Bioinorg Chem Appl Bioinorganic Chemistry and Applications = Bioinorg Chem Appl Bioinorganic Chemistry and Applications = Bioinorg. Chem. Appl. Bioinorganic chemistry = Bioinorg Chem Bioinorganic Chemistry = Bioinorg Chem Bioinorganic Chemistry = Bioinorg. Chem. Bioinorganic Chemistry: Cellular Systems and Synthetic Models = Acs Sym Ser Bioinorganic Chemistry: Cellular Systems and Synthetic Models = Acs. Sym. Ser. Bioinorganic Chemistry = Nato Adv Sci Inst Se Bioinorganic Chemistry = Nato. Adv. Sci. Inst. Se. Bioinspiration, Biomimetics, and Bioreplication = Proc Spie Bioinspiration, Biomimetics, and Bioreplication = Proc. Spie. Bioinspiration & Biomimetics = Bioinspiration Biomimetics Bioinspiration & biomimetics = Bioinspir Biomim Bioinspiration & Biomimetics = Bioinspir Biomim Bioinspiration & Biomimetics = Bioinspir. Biomim. Bioinspired Applications in Artificial and Natural Computation, Pt Ii = Lect Notes Comput Sc Bioinspired Applications in Artificial and Natural Computation, Pt Ii = Lect. Notes. Comput. Sc. Bio-inspired Artificial Intelligence: Theories, Methods, and Technologies = Intel Robot Auton Ag Bio-inspired Artificial Intelligence: Theories, Methods, and Technologies = Intel. Robot. Auton. Ag. Bio-inspired/biomimetic Sensor Technologies and Applications = P Soc Photo-opt Ins Bio-inspired/biomimetic Sensor Technologies and Applications = P. Soc. Photo-opt. Ins. Bio-inspired Catalysts = Top Organometal Chem Bio-inspired Catalysts = Top. Organometal. Chem. Bio-inspired Computational Intelligence and Applications = Lect Notes Comput Sc Bio-inspired Computational Intelligence and Applications = Lect. Notes. Comput. Sc. Bioinspired Computation in Combinatorial Optimization: Algorithms and Their Computational Complex = Nat Comput Ser Bioinspired Computation in Combinatorial Optimization: Algorithms and Their Computational Complex = Nat. Comput. Ser. Bio-inspired Computing and Communication = Lect Notes Comput Sc Bio-inspired Computing and Communication = Lect. Notes. Comput. Sc. Bio-inspired Hybrid Intelligent Systems for Image Analysis and Pattern Recognition = Stud Comput Intell Bio-inspired Hybrid Intelligent Systems for Image Analysis and Pattern Recognition = Stud. Comput. Intell. Bio-inspired Modeling of Cognitive Tasks, Pt 1, Proceedings = Lect Notes Comput Sc Bio-inspired Modeling of Cognitive Tasks, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Bio-inspired Nanomaterials and Nanotechnology = Nanotechnol Sci Tech Bio-inspired Nanomaterials and Nanotechnology = Nanotechnol. Sci. Tech. Bioinspired Nanoscale Hybrid Systems = Mater Res Soc Symp P Bioinspired Nanoscale Hybrid Systems = Mater. Res. Soc. Symp. P. Bio-inspired Self-organizing Robotic Systems = Stud Comput Intell Bio-inspired Self-organizing Robotic Systems = Stud. Comput. Intell. Bio-inspired Systems: Computational and Ambient Intelligence, Pt 1 = Lect Notes Comput Sc Bio-inspired Systems: Computational and Ambient Intelligence, Pt 1 = Lect. Notes. Comput. Sc. Bio-inspired Technologies for The Hardware of Adaptive Systems = Stud Comput Intell Bio-inspired Technologies for The Hardware of Adaptive Systems = Stud. Comput. Intell. Bio-international 2 = F I P Paperback Bio-international 2 = F. I. P. Paperback. Bio-international = F I P Paperback Bio-international = F. I. P. Paperback. Biointerphases = Biointerphases Biokhimiia = Biokhimiia Biokhimiia (Moscow, Russia) = Biokhimiia Biokhimiya = Biochemistry-ussr+ Biokhimiya = Biochemistry-ussr+.+ Biokhimiya = Biokhimiya Biokhimiya (Moscow) = Biokhimiya (Moscow) Biolers in Europe = Imeche Sem Biolers in Europe = Imeche. Sem. Biologia = Biologia Biologia = Biologia (Bratisl.) Biologia = Biologia (Bratisl) Biologia Gallo-hellenica = Biol. Gallo-hellenica Biologia (Lahore, Pakistan) = Biologia Biologia Neonatorum = Biol. Neonat. Biologia Neonatorum = Biol Neonatorum Biologia Neonatorum = Biol. Neonatorum Biologia neonatorum. Neo-natal studies = Biol Neonat Biologia plantarum = Biol Plant Biologia Plantarum = Biol Plantarum Biologia Plantarum = Biol. Plantarum Biologica = Biologica (Santiago). Biological Actions of Extracellular Atp = Ann Ny Acad Sci Biological Actions of Extracellular Atp = Ann. Ny. Acad. Sci. Biological Activity of Phytochemicals = Recent Adv Phytochem Biological Activity of Phytochemicals = Recent. Adv. Phytochem. Biological Agriculture & Horticulture = Biol Agric Hortic Biological Agriculture & Horticulture = Biol. Agric. Hortic. Biological and Artificial Computation: From Neuroscience to Technology = Lect Notes Comput Sc Biological and Artificial Computation: From Neuroscience to Technology = Lect. Notes. Comput. Sc. Biological and Bioinspired Materials and Devices = Mater Res Soc Symp P Biological and Bioinspired Materials and Devices = Mater. Res. Soc. Symp. P. Biological and Environmental Applications of Gas Discharge Plasmas = Environ Res Adv Biological and Environmental Applications of Gas Discharge Plasmas = Environ. Res. Adv. Biological and Medical Data Analysis, Proceedings = Lect Notes Comput Sc Biological and Medical Data Analysis, Proceedings = Lect. Notes. Comput. Sc. Biological and Medical Physics Biomedical Engineering = Biol Med Phys Biomed Biological and Medical Physics Biomedical Engineering = Biol. Med. Phys. Biomed. Biological and Medical Physics, Biomedical Engineering = Biol Med Phys Biomed Biological and Medical Physics, Biomedical Engineering = Biol. Med. Phys. Biomed. Biological and Medical Physics, Biomedical Engineering = Biol. Med. Phys. Biomed. Eng. Biological and Pharmaceutical Bulletin=Biol Pharm Bull;; Biological and Pharmaceutical Bulletin = Biol. Pharm. Bull. Biological and Physical Aspects of Dredging, Kings Bay, Georgia = Coastl Worl Biological and Physical Aspects of Dredging, Kings Bay, Georgia = Coastl. Worl. Biological and Psychological Aspects of Orofacial Pain = Cranio Grow Biological and Psychological Aspects of Orofacial Pain = Cranio. Grow. Biological Assessment and Treatment of Posttraumatic Stress Disorder = Prog Psych Biological Assessment and Treatment of Posttraumatic Stress Disorder = Prog. Psych. Biological Asymmetry and Handedness = Ciba F Symp Biological Asymmetry and Handedness = Ciba. F. Symp. Biologica Latina = Biol Lat Biologica Latina = Biol. Lat. Biological Basis for Mind Body Interactions = Prog Brain Res Biological Basis for Mind Body Interactions = Prog. Brain. Res. Biological Basis for Risk Assessment of Dioxins and Related Compounds = Banb Report Biological Basis for Risk Assessment of Dioxins and Related Compounds = Banb. Report. Biological Basis of Cocaine Addiction = Ann Ny Acad Sci Biological Basis of Cocaine Addiction = Ann. Ny. Acad. Sci. Biological Basis of Schizophrenic Disorders = Tanig Symp Brain Sci Biological Basis of Schizophrenic Disorders = Tanig. Symp. Brain. Sci. Biological Basis of Sex Differences in Psychopharmacology = Curr Top Behav Neuro Biological Basis of Sex Differences in Psychopharmacology = Curr. Top. Behav. Neuro. Biological Basis of Sustainable Animal Production = Eaap Public Biological Basis of Sustainable Animal Production = Eaap. Public. Biological Biomimetic Materials-properties to Function = Mater Res Soc Symp P Biological Biomimetic Materials-properties to Function = Mater. Res. Soc. Symp. P. Biological Bulletin=Biol Bull;; Biological Bulletin = Biol Bull Biological Bulletin = Biol. Bull. Biological Bulletin = Biol Bull-us Biological Bulletin = Biol. Bull-us. Biological chemistry = Biol Chem Biological Chemistry=Biol Chem;; Biological Chemistry = Biol Chem Biological Chemistry = Biol. Chem. Biological chemistry Hoppe-Seyler = Biol Chem Hoppe Seyler Biological Chemistry Hoppe-Seyler = Biol. Chem. Hoppe-Seyler Biological Chemistry Hoppe-Seyler = Biol. Chem. Hoppe. Seyler Biological Chemistry Hoppe-seyler = Biol Chem H-s Biological Chemistry Hoppe-seyler = Biol. Chem. H-s. Biological Clocks: Effects On Behavior, Health and Outlook = Public Health 21st C Biological Clocks: Effects On Behavior, Health and Outlook = Public. Health 21st. C. Biological Clocks = Int Congr Ser Biological Clocks = Int. Congr. Ser. Biological conservation = Biol Conserv Biological Conservation = Biol Conserv Biological Conservation = Biol. Conserv. Biological Contaminants in Indoor Environments = Am Soc Test Mater Biological Contaminants in Indoor Environments = Am. Soc. Test. Mater. Biological Control = Biol Control Biological Control = Biol. Control Biological Control Introductions - Opportunities for Improved Crop Production = Bcpc Symp Ser Biological Control Introductions - Opportunities for Improved Crop Production = Bcpc. Symp. Ser. Biological Control of Native Or Indigenous Insect Pests: Challenges, Constraints and Potential = Thom Say P Biological Control of Native Or Indigenous Insect Pests: Challenges, Constraints and Potential = Thom. Say. P. Biological Control of Plant Diseases = Nato Adv Sci I A-lif Biological Control of Plant Diseases = Nato. Adv. Sci. I. A-lif. Biological Control of Plant-parasitic Nematodes: Building Coherence Between Microbial Ecology and Molecular Mechanisms = Prog Biol Control Biological Control of Plant-parasitic Nematodes: Building Coherence Between Microbial Ecology and Molecular Mechanisms = Prog. Biol. Control Biological Control of Rice Diseases = Prog Biol Control Biological Control of Rice Diseases = Prog. Biol. Control Biological Council Symposia On Drug Action = Biol Coun S Biological Council Symposia On Drug Action = Biol. Coun. S. Biological cybernetics = Biol Cybern Biological Cybernetics=Biol Cybern;; Biological Cybernetics = Biol Cybern Biological Cybernetics = Biol. Cybern. Biological Effects and Physics of Solar and Galactic Cosmic Radiation, Pt A = Nato Adv Sci Inst Se Biological Effects and Physics of Solar and Galactic Cosmic Radiation, Pt A = Nato. Adv. Sci. Inst. Se. Biological Effects and Physics of Solar and Galactic Cosmic Radiation, Pt B = Nato Adv Sci Inst Se Biological Effects and Physics of Solar and Galactic Cosmic Radiation, Pt B = Nato. Adv. Sci. Inst. Se. Biological Effects and Safety Aspects of Nuclear Magnetic Resonance Imaging and Spectroscopy = Ann Ny Acad Sci Biological Effects and Safety Aspects of Nuclear Magnetic Resonance Imaging and Spectroscopy = Ann. Ny. Acad. Sci. Biological Effects of B-carotene = Nutr Diet Res Prog Biological Effects of B-carotene = Nutr. Diet. Res. Prog. Biological Engineering = Biol. Eng. Biological Evolution of Religious Mind and Behavior = Front Collect Biological Evolution of Religious Mind and Behavior = Front. Collect. Biological Flows = World Congr Biomech Biological Flows = World. Congr. Biomech. Biological Foundations and Origin of Syntax = Ernst Strung For Biological Foundations and Origin of Syntax = Ernst. Strung. For. Biological Foundations of Music = Ann Ny Acad Sci Biological Foundations of Music = Ann. Ny. Acad. Sci. Biological Function of Gangliosides = Prog Brain Res Biological Function of Gangliosides = Prog. Brain. Res. Biological Functions for Information and Communication Technologies: Theory and Inspiration = Stud Comput Intell Biological Functions for Information and Communication Technologies: Theory and Inspiration = Stud. Comput. Intell. Biological Invasions = Biol Invasions Biological Invasions = Biol. Invasions Biological Invasions: Towards A Synthesis, Proceedings = Neobiota Biological Invasions: Towards A Synthesis, Proceedings = Neobiota. Biological Journal of the Linnean Society = Biol. J. Linn. Soc. Biological Journal of The Linnean Society = Biol J Linn Soc Biological Journal of The Linnean Society = Biol. J. Linn. Soc. Biological journal of the Linnean Society. Linnean Society of London = Biol J Linn Soc Lond Biological Journal of the Linnean Society of London = Biol. J. Linn. Soc. Lond. Biological Life Support Technologies : Commercial Opportunities = Nasa Conf P Biological Life Support Technologies : Commercial Opportunities = Nasa. Conf. P. Biologically Active Peptides = Coll Sympos Series Biologically Active Peptides = Coll. Sympos. Series. Biologically-active Phytochemicals in Food = Roy Soc Ch Biologically-active Phytochemicals in Food = Roy. Soc. Ch. Biologically Inspired Approaches to Advanced Information Technology = Lect Notes Comput Sc Biologically Inspired Approaches to Advanced Information Technology = Lect. Notes. Comput. Sc. Biologically Inspired Approaches to Advanced Information Technology, Proceedings = Lect Notes Comput Sc Biologically Inspired Approaches to Advanced Information Technology, Proceedings = Lect. Notes. Comput. Sc. Biologically-inspired Collaborative Computing = Int Fed Info Proc Biologically-inspired Collaborative Computing = Int. Fed. Info. Proc. Biologically Inspired Cooperative Computing = Int Fed Info Proc Biologically Inspired Cooperative Computing = Int. Fed. Info. Proc. Biologically-inspired Optimisation Methods: Parallel Algorithms, Systems and Applications = Stud Comput Intell Biologically-inspired Optimisation Methods: Parallel Algorithms, Systems and Applications = Stud. Comput. Intell. Biologically Inspired Physics = Nato Adv Sci I B-phy Biologically Inspired Physics = Nato. Adv. Sci. I. B-phy. Biologically Inspired Signal Processing for Chemical Sensing = Stud Comp Intell Biologically Inspired Signal Processing for Chemical Sensing = Stud. Comp. Intell. Biologically-inspired Systems = Biol Inspir Syst Biologically-inspired Systems = Biol. Inspir. Syst. Biologically Inspired Textiles = Woodhead Publ Text Biologically Inspired Textiles = Woodhead. Publ. Text. Biologically Motivated Computer Vision, Proceeding = Lect Notes Comput Sc Biologically Motivated Computer Vision, Proceeding = Lect. Notes. Comput. Sc. Biologically Motivated Computer Vision, Proceedings = Lect Notes Comput Sc Biologically Motivated Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Biological Magnetic Resonance = Biol Magn Reson Biological Magnetic Resonance = Biol. Magn. Reson. Biological Magnetic Resonance = Bio Magn Re Biological Magnetic Resonance = Bio. Magn. Re. Biological Markers of Depression : State of The Art = Int Congr Ser Biological Markers of Depression : State of The Art = Int. Congr. Ser. Biological mass spectrometry = Biol Mass Spectrom Biological Mass Spectrometry = Biol Mass Spectrom Biological Mass Spectrometry = Biol. Mass Spectrom. Biological Mass Spectrometry = Biol. Mass. Spectrom. Biological Mass Spectrometry = Method Enzymol Biological Mass Spectrometry = Method. Enzymol. Biological, Material, and Mechanical Considerations of Joint Replacement = Bris Myer Z Biological, Material, and Mechanical Considerations of Joint Replacement = Bris. Myer. Z. Biological Materials of Marine Origin: Invertbrates = Biol Inspir Syst Biological Materials of Marine Origin: Invertbrates = Biol. Inspir. Syst. Biological Membranes = Biol Membr Biological Membranes = Biol. Membr. Biological memoirs = Biol Mem Biological Microarrays: Methods and Protocols = Methods Mol Biol Biological Microarrays: Methods and Protocols = Methods Mol. Biol. Biological Modeling and Simulation: A Survey of Practical Models, Algorithms, and Numerical Methods = Comput Mol Biol Ser Biological Modeling and Simulation: A Survey of Practical Models, Algorithms, and Numerical Methods = Comput. Mol. Biol. Ser. Biological Nitrogen Fixation Associated With Rice Production = Dev Plant Soil Sci Biological Nitrogen Fixation Associated With Rice Production = Dev. Plant. Soil. Sci. Biological Nitrogen Fixation, Sustainable Agriculture and The Environment = Curr Plant Sci Biot Biological Nitrogen Fixation, Sustainable Agriculture and The Environment = Curr. Plant. Sci. Biot. Biological Nitrogen Fixation: Towards Poverty Alleviation Through Sustainable Agriculture = Curr Plant Sci Biot Biological Nitrogen Fixation: Towards Poverty Alleviation Through Sustainable Agriculture = Curr. Plant. Sci. Biot. Biological Oxidation of Nitrogen in Organic Molecules = Pr Pharm Cl Biological Oxidation of Nitrogen in Organic Molecules = Pr. Pharm. Cl. Biological & pharmaceutical bulletin = Biol Pharm Bull Biological & Pharmaceutical Bulletin = Biol Pharm Bull Biological & Pharmaceutical Bulletin = Biol. Pharm. Bull. Biological Physics = Aip Conf Proc Biological Physics = Aip. Conf. Proc. Biological procedures online = Biol Proced Online Biological Procedures Online = Biol Proced Online Biological Procedures Online = Biol. Proced. Online Biological Processes Associated With Impact Events = Impact Stud Biological Processes Associated With Impact Events = Impact Stud. Biological Psychiatry = Biol Psychiat Biological Psychiatry = Biol. Psychiat. Biological psychiatry = Biol Psychiatry Biological Psychiatry=Biol Psychiatry;; Biological Psychiatry = Biol. Psychiatry Biological Psychiatry, Vol 1 = Int Congr Ser Biological Psychiatry, Vol 1 = Int. Congr. Ser. Biological Psychiatry, Vol 2 = Int Congr Ser Biological Psychiatry, Vol 2 = Int. Congr. Ser. Biological psychology = Biol Psychol Biological Psychology=Biol Psychol;; Biological Psychology = Biol Psychol Biological Psychology = Biol. Psychol. Biological psychology bulletin = Biol Psychol Bull Biological Quality and Precision Agriculture Ii = P Soc Photo-opt Ins Biological Quality and Precision Agriculture Ii = P. Soc. Photo-opt. Ins. Biological Reactive Intermediates Iv = Adv Exp Med Biol Biological Reactive Intermediates Iv = Adv. Exp. Med. Biol. Biological Reactive Intermediates V = Adv Exp Med Biol Biological Reactive Intermediates V = Adv. Exp. Med. Biol. Biological Reactive Intermediates Vi = Adv Exp Med Biol Biological Reactive Intermediates Vi = Adv. Exp. Med. Biol. Biological research = Biol Res Biological Research=Biol Res;; Biological Research = Biol Res Biological Research = Biol. Res. Biological research for nursing = Biol Res Nurs Biological Research for Nursing = Biol Res Nurs Biological Research for Nursing = Biol. Res. Nurs. Biological research in pregnancy and perinatology = Biol Res Pregnancy Perinatol Biological Research in Pregnancy and Perinatology = Biol. Res. Pregnancy Perinatol. Biological Research in Pregnancy and Perinatology = Biol Res Preg Perin Biological Research in Pregnancy and Perinatology = Biol. Res. Preg. Perin. Biological Response to Planned and Unplanned Injuries: Cellular, Molecular and Genetic Aspects = Int Congr Ser Biological Response to Planned and Unplanned Injuries: Cellular, Molecular and Genetic Aspects = Int. Congr. Ser. Biological Reviews and Biological Proceedings of The Cambridge Philosophical Society = Biol Rev Biol P Camb Biological Reviews and Biological Proceedings of The Cambridge Philosophical Society = Biol. Rev. Biol. P. Camb. Biological Reviews = Biol Rev Biological Reviews = Biol. Rev. Biological Reviews of The Cambridge Philosophical Society = Biol Rev Biological Reviews of The Cambridge Philosophical Society = Biol. Rev. Biological Reviews of The Cambridge Philosophical Society = Biol Rev Camb Philos Biological Reviews of The Cambridge Philosophical Society = Biol. Rev. Camb. Philos. Biological reviews of the Cambridge Philosophical Society = Biol Rev Camb Philos Soc Biological Reviews of the Cambridge Philosophical Society = Biol. Rev. Camb. Philos. Soc. Biological Reviews of The Cambridge Philosophical Society=Biol Rev Camb Philos Soc;; Biological rhythm research = Biol Rhythm Res Biological Rhythm Research = Biol Rhythm Res Biological Rhythm Research = Biol. Rhythm Res. Biologicals=Biologicals;; Biologicals = Biologicals Biological Signals and Receptors = Biol Signal Recept Biological Signals and Receptors = Biol. Signal. Recept. Biological signals and receptors = Biol Signals Recept Biological Signals and Receptors = Biol. Signals Recept. Biological Signals = Biol Signal Biological Signals = Biol. Signal. Biological signals = Biol Signals Biological Signals=Biol Signals;; Biological Signals = Biol. Signals Biologicals : journal of the International Association of Biological Standardization = Biologicals Biological structures and morphogenesis = Biol Struct Morphog Biological Structures and Morphogenesis = Biol. Struct. Morphog. Biological Systems Engineering = Acs Sym Ser Biological Systems Engineering = Acs. Sym. Ser. Biological Trace Element Research / = Acs Sym Ser Biological Trace Element Research / = Acs. Sym. Ser. Biological trace element research = Biol Trace Elem Res Biological Trace Element Research=Biol Trace Elem Res;; Biological Trace Element Research = Biol Trace Elem Res Biological Trace Element Research = Biol. Trace Elem. Res. Biological Unit Processes for Hazardous Waste Treatment = Bioremed Ser Biological Unit Processes for Hazardous Waste Treatment = Bioremed. Ser. Biological Wastes = Biol Waste Biological Wastes = Biol. Waste. Biologica (Santiago, Chile) = Biologica (Santiago) Biologicheskie membrany / Akademiia nauk SSSR = Biol Membr Biologicheskie Membrany = Biol. Membr. Biologicheskie Membrany = Biol Membrany Biologicheskie Membrany = Biol. Membrany Biologicheskie Nauki = Biol. Nauki Biologicheskie Nauki (Moscow) = Biol. Nauki (Moscow) Biologicke listy = Biol Listy Biologie Cellulaire = Biol. Cell. Biologie Cellulaire = Biol Cellulaire Biologie Cellulaire = Biol. Cellulaire Biologie Et Gastro-enterologie = Biol Gastro-enterol Biologie Et Gastro-enterologie = Biol. Gastro-enterol. Biologie et gastro-enterologie = Biol Gastroenterol (Paris) Biologie et Gastro-Enterologie = Biol. Gastroenterol. (Paris) Biologie in unserer Zeit = Biol. unserer Zeit Biologie medicale = Biol Med (Paris) Biologie Medicale = Biol. Med. (Paris) Biologische Rundschau = Biol. Rundsch. Biologisches Zentralblatt = Biol Zbl Biologisches Zentralblatt = Biol. Zbl. Biologisches Zentralblatt = Biol. Zent.bl. Biologisches Zentralblatt = Biol Zent Bl Biologiske Skrifter = Biol Skrif Biologiske Skrifter = Biol. Skrif. Biologiske Skrifter Kongelige Danske Videnskabernes Selskab = Biol Skr Dan Vid Sel Biologiske Skrifter Kongelige Danske Videnskabernes Selskab = Biol. Skr. Dan. Vid. Sel. Biologist = Biologist Biologist (Columbus, Ohio) = Biologist Biologist (London, England) = Biologist (London) Biologiya Morya-marine Biology = Biol Morya-vlad+ Biologiya Morya-marine Biology = Biol. Morya-vlad+.+ Biologizace A Chemizace Zivocisne Vyroby-veterinaria = Biol Chem Zivocisme Biologizace A Chemizace Zivocisne Vyroby-veterinaria = Biol. Chem. Zivocisme. Biology and Biotechnology of The Plant Hormone Ethylene Iii = Nato Sci Ser I Life Biology and Biotechnology of The Plant Hormone Ethylene Iii = Nato. Sci. Ser. I. Life. Biology and Chemistry of Polyamines = Icsu Press Biology and Chemistry of Polyamines = Icsu. Press. Biology and Conservation of Owls of The Northern Hemisphere = Us For Serv T R Nc Biology and Conservation of Owls of The Northern Hemisphere = Us. For. Serv. T. R. Nc. Biology and Control Theory: Current Challenges = Lect Notes Contr Inf Biology and Control Theory: Current Challenges = Lect. Notes. Contr. Inf. Biology and Criminology: The Biosocial Synthesis = Routl Adv Criminol Biology and Criminology: The Biosocial Synthesis = Routl. Adv. Criminol. Biology and Ecology of Shallow Coastal Waters = Olsen Int S Biology and Ecology of Shallow Coastal Waters = Olsen. Int. S. Biology and Environment-proceedings of The Royal Irish Academy = Biol Environ Biology and Environment-proceedings of The Royal Irish Academy = Biol. Environ. Biology and Epidemiology of Hormone Replacement Therapy = E Schering Res Fdn W Biology and Epidemiology of Hormone Replacement Therapy = E. Schering. Res. Fdn. W. Biology and Fertility of Soils = Biol. Fertil. Soils Biology and Fertility of Soils = Biol Fert Soils Biology and Fertility of Soils = Biol. Fert. Soils Biology and human affairs : a British Social Hygiene Council publication = Biol Hum Aff Biology and Management of Coregonid Fishes - 2005 = Adv Limnol Biology and Management of Coregonid Fishes - 2005 = Adv. Limnol. Biology and Mariculture of Giant Clams = Aciar Proc Biology and Mariculture of Giant Clams = Aciar. Proc. Biology and Mechanics of Blood Flows, Pt I: Biology = Crm Ser Math Phys Biology and Mechanics of Blood Flows, Pt I: Biology = Crm. Ser. Math. Phys. Biology and Mechanics of Blood Flows, Pt Ii: Mechanics and Medical Aspects = Crm Ser Math Phys Biology and Mechanics of Blood Flows, Pt Ii: Mechanics and Medical Aspects = Crm. Ser. Math. Phys. Biology and Medicine Into The 21st Century = Iss Biom M Biology and Medicine Into The 21st Century = Iss. Biom. M. Biology and Medicine of Signal Transduction = Adv Sec Mess Phosph Biology and Medicine of Signal Transduction = Adv. Sec. Mess. Phosph. Biology and Palaeobiology of Bryozoans = Olsen Int S Biology and Palaeobiology of Bryozoans = Olsen. Int. S. Biology and Pathology of Astrocyte-neuron Interactions = Altschul Sy Biology and Pathology of Astrocyte-neuron Interactions = Altschul. Sy. Biology and Pathology of Innate Immunity Mechanisms = Adv Exp Med Biol Biology and Pathology of Innate Immunity Mechanisms = Adv. Exp. Med. Biol. Biology and Physiology of Amphibians = Forts Zool Biology and Physiology of Amphibians = Forts. Zool. Biology and Physiology of The Blood-brain Barrier = Adv Behav Biol Biology and Physiology of The Blood-brain Barrier = Adv. Behav. Biol. Biology and Prevention of Aerodigestive Tract Cancers = Adv Exp Med Biol Biology and Prevention of Aerodigestive Tract Cancers = Adv. Exp. Med. Biol. Biology and Resource Management Series = Biol Resource Manage Biology and Resource Management Series = Biol. Resource Manage. Biology and society : the journal of the Eugenics Society = Biol Soc Biology, Assessment, and Management of North Pacific Rockfishes = Low Wake Fi Biology, Assessment, and Management of North Pacific Rockfishes = Low. Wake. Fi. Biology, Brains and Behavior = Sch Am Res Biology, Brains and Behavior = Sch. Am. Res. Biology Bulletin = Biol Bull+ Biology Bulletin = Biol. Bull+.+ Biology bulletin of the Academy of Sciences of the USSR = Biol Bull Acad Sci USSR Biology Bulletin of the Academy of Sciences of the USSR = Biol. Bull. Acad. Sci. USSR Biology, Conservation and Sustainable Development of Sturgeons = Fish Fisheries Serie Biology, Conservation and Sustainable Development of Sturgeons = Fish. Fisheries. Serie. Biology, Conservation and Sustainable Development of Sturgeons = Fish Fish Ser Biology, Conservation and Sustainable Development of Sturgeons = Fish. Fish. Ser. Biology, Damage and Management of Seed Orchard Pests = Fpm Inf Rep Biology, Damage and Management of Seed Orchard Pests = Fpm. Inf. Rep. Biology direct = Biol Direct Biology Direct = Biol Direct Biology Direct = Biol. Direct Biology, Epidemiology and Management of Pyrodinium Red Tides = Iclarm Cont Biology, Epidemiology and Management of Pyrodinium Red Tides = Iclarm. Cont. Biology, Evolution and Conservation of River Dolphins Within South America and Asia = Wildl Prot Destr Ext Biology, Evolution and Conservation of River Dolphins Within South America and Asia = Wildl. Prot. Destr. Ext. Biology & Knowledge Revisited: From Neurogenesis to Psychogenesis = J Piaget Sy Biology & Knowledge Revisited: From Neurogenesis to Psychogenesis = J. Piaget. Sy. Biology letters = Biol Lett Biology Letters = Biol. Lett. Biology Letters = Biol Letters Biology Letters = Biol. Letters Biology Letters = Biol Lett-uk Biology Letters = Biol. Lett-uk. Biology Letters = Biology Lett Biology Letters = Biology Lett. Biology, Management, and Conservation of Lampreys in North America = Am Fish S S Biology, Management, and Conservation of Lampreys in North America = Am. Fish. S. S. Biology, Management, and Protection of Catadromous Eels = Am Fish S S Biology, Management, and Protection of Catadromous Eels = Am. Fish. S. S. Biology, Management, and Protection of North American Sturgeons = Am Fish S S Biology, Management, and Protection of North American Sturgeons = Am. Fish. S. S. Biology, Nanotechnology, Toxicology, and Applications = Aip Conf Proc Biology, Nanotechnology, Toxicology, and Applications = Aip. Conf. Proc. Biology of Acinetobacter = Fems Symp Biology of Acinetobacter = Fems. Symp. Biology of Adventitious Root Formation = Basic Life Sci Biology of Adventitious Root Formation = Basic. Life. Sci. Biology of Alpha2-macroglobulin, Its Receptor, and Related Proteins = Ann Ny Acad Sci Biology of Alpha2-macroglobulin, Its Receptor, and Related Proteins = Ann. Ny. Acad. Sci. Biology of Behaviour = Biol Behav Biology of Behaviour = Biol. Behav. Biology of Bile Acids in Health and Disease = Falk Symp Biology of Bile Acids in Health and Disease = Falk. Symp. Biology of Blood and Marrow Transplantation = Biol Blood Marrow Tr Biology of Blood and Marrow Transplantation = Biol. Blood Marrow Tr. Biology of Blood and Marrow Transplantation=Biol Blood Marrow Transplant;; Biology of Blood and Marrow Transplantation = Biol. Blood Marrow Transplant. Biology of blood and marrow transplantation : journal of the American Society for Blood and Marrow Transplantation = Biol Blood Marrow Transplant Biology of Breeding Poultry = Poult Sci S Biology of Breeding Poultry = Poult. Sci. S. Biology of Cellular Transducing Signals = Gwumc Dept Biology of Cellular Transducing Signals = Gwumc. Dept. Biology of Disadvantage: Socioeconomic Status and Health = Ann Ny Acad Sci Biology of Disadvantage: Socioeconomic Status and Health = Ann. Ny. Acad. Sci. Biology of Earthworms = Soil Biol Biology of Earthworms = Soil. Biol. Biology of Emerging Viruses: Sars, Avian and Human Influenza, Metapneumovirus, Nipah, West Nile, and Ross River Virus = Ann Ny Acad Sci Biology of Emerging Viruses: Sars, Avian and Human Influenza, Metapneumovirus, Nipah, West Nile, and Ross River Virus = Ann. Ny. Acad. Sci. Biology of Extracellular Matrix = Biol Extracell Matr Biology of Extracellular Matrix = Biol. Extracell. Matr. Biology of Free-living Heterotrophic Flagellates = Syst Assoc Spec Vol Biology of Free-living Heterotrophic Flagellates = Syst. Assoc. Spec. Vol. Biology of Gall-inducing Arthropods = Us For Serv T R Nc Biology of Gall-inducing Arthropods = Us. For. Serv. T. R. Nc. Biology of Hematopoiesis = Prog Clin Biol Res Biology of Hematopoiesis = Prog. Clin. Biol. Res. Biology of Large African Mammals in Their Environment = Sym Zool S Biology of Large African Mammals in Their Environment = Sym. Zool. S. Biology of Lichens-symbiosis, Ecology, Environmental Monitoring, Systematics and Cyber Applications = Bibl Lichenol Biology of Lichens-symbiosis, Ecology, Environmental Monitoring, Systematics and Cyber Applications = Bibl. Lichenol. Biology of Memory = Symp Med H Biology of Memory = Symp. Med. H. Biology of Menopause = Serono Symp Biology of Menopause = Serono. Symp. Biology of metals = Biol Met Biology of Metals = Biol Met Biology of Metals = Biol. Met. Biology of Negative Strand Rna Viruses: The Power of Reverse Genetics = Curr Top Microbiol Biology of Negative Strand Rna Viruses: The Power of Reverse Genetics = Curr. Top. Microbiol. Biology of Nicotine Dependence = Ciba F Symp Biology of Nicotine Dependence = Ciba. F. Symp. Biology of Nitric Oxide 1 : Physiological and Clinical Aspects = Portl Pr P Biology of Nitric Oxide 1 : Physiological and Clinical Aspects = Portl. Pr. P. Biology of Nitric Oxide 2 : Enzymology, Biochemistry and Immunology = Portl Pr P Biology of Nitric Oxide 2 : Enzymology, Biochemistry and Immunology = Portl. Pr. P. Biology of Nitric Oxide, Pt 3 = Portl Pr P Biology of Nitric Oxide, Pt 3 = Portl. Pr. P. Biology of Nitric Oxide, Pt 4 = Portl Pr P Biology of Nitric Oxide, Pt 4 = Portl. Pr. P. Biology of Nitric Oxide, Pt 5 = Portl Pr P Biology of Nitric Oxide, Pt 5 = Portl. Pr. P. Biology of Nitric Oxide, Pt 7 = Portl Pr P Biology of Nitric Oxide, Pt 7 = Portl. Pr. P. Biology of reproduction = Biol Reprod Biology of Reproduction=Biol Reprod;; Biology of Reproduction = Biol Reprod Biology of Reproduction = Biol. Reprod. Biology of reproduction. Supplement = Biol Reprod Suppl Biology of Rhodococcus = Microbiol Monogr Biology of Rhodococcus = Microbiol. Monogr. Biology of Salmonella = Nato Adv Sci Inst Se Biology of Salmonella = Nato. Adv. Sci. Inst. Se. Biology of Schizophrenia = Dev Psychia Biology of Schizophrenia = Dev. Psychia. Biology of Sport = Biol Sport Biology of Sport = Biol. Sport Biology of sport / Institute of Sport = Biol Sport Biology of Stem Cells and The Molecular Basis of The Stem State = Stem Cells Biol Reg Biology of Stem Cells and The Molecular Basis of The Stem State = Stem Cells Biol. Reg. Biology of Terrestrial Isopods V, Proceedings = Crustaceana Monogr Biology of Terrestrial Isopods V, Proceedings = Crustaceana. Monogr. Biology of the Cell = Biol. Cell Biology of The Cell=Biol Cell;; Biology of The Cell = Biol Cell Biology of The Cell = Biol. Cell Biology of the cell / under the auspices of the European Cell Biology Organization = Biol Cell Biology of The Mammary Gland = Adv Exp Med Biol Biology of The Mammary Gland = Adv. Exp. Med. Biol. Biology of the neonate = Biol Neonate Biology of the Neonate = Biol. Neonate Biology of The Neonate=Biol Neonate;; Biology of The Neonate = Biol Neonate Biology of The Neonate = Biol. Neonate Biology of The Nmda Receptor = Front Neurosci Biology of The Nmda Receptor = Front. Neurosci. Biology of The Ocular Microcirculation = Int Congr Ser Biology of The Ocular Microcirculation = Int. Congr. Ser. Biology of The Pancreas in Growing Animals = Dev An Vet Biology of The Pancreas in Growing Animals = Dev. An. Vet. Biology of The Skin = Sem Ens Inserm Biology of The Skin = Sem. Ens. Inserm. Biology of The Skin = Sem Inserm Biology of The Skin = Sem. Inserm. Biology of Vitronectins and Their Receptors = Int Congr Ser Biology of Vitronectins and Their Receptors = Int. Congr. Ser. Biology & Philosophy = Biol Philos Biology & Philosophy = Biol. Philos. Bioluminescence and Chemiluminescence, Pt C = Method Enzymol Bioluminescence and Chemiluminescence, Pt C = Method. Enzymol. Bioluminescence: Methods and Protocols, Second Edition = Methods Mol Biol Bioluminescence: Methods and Protocols, Second Edition = Methods Mol. Biol. Biomacromolecules = Biomacromolecules Biomagnetic research and technology = Biomagn Res Technol Biomagnetism and Magnetic Biosystems Based On Molecular Recognition Processes = Aip Conf Proc Biomagnetism and Magnetic Biosystems Based On Molecular Recognition Processes = Aip. Conf. Proc. Biomagnetism : Clinical Aspects = Int Congr Ser Biomagnetism : Clinical Aspects = Int. Congr. Ser. Biomagnetism: Fundamental Research and Clinical Applications = Stud Appl Electromag Biomagnetism: Fundamental Research and Clinical Applications = Stud. Appl. Electromag. Biomarkers and Biological Spectral Imaging = Proc Spie Biomarkers and Biological Spectral Imaging = Proc. Spie. Biomarkers and Biological Spectral Imaging = P Soc Photo-opt Ins Biomarkers and Biological Spectral Imaging = P. Soc. Photo-opt. Ins. Biomarkers and Surrogate Endpoints: Clinical Research and Applications = Int Congr Ser Biomarkers and Surrogate Endpoints: Clinical Research and Applications = Int. Congr. Ser. Biomarkers : biochemical indicators of exposure, response, and susceptibility to chemicals = Biomarkers Biomarkers = Biomarkers Biomarkers for Agrochemicals and Toxic Substances = Acs Sym Ser Biomarkers for Agrochemicals and Toxic Substances = Acs. Sym. Ser. Biomarkers in Brain Disease = Ann Ny Acad Sci Biomarkers in Brain Disease = Ann. Ny. Acad. Sci. Biomarkers in Medicine = Biomark Med Biomarkers in Medicine = Biomark. Med. Biomarkers of Human Exposure to Pesticides = Acs Sym Ser Biomarkers of Human Exposure to Pesticides = Acs. Sym. Ser. Biomarkers = Setac Sp P Biomarkers = Setac. Sp. P. Biomass and Bioenergy = Biomass Bioenergy Biomass & Bioenergy = Biomass Bioenerg Biomass & Bioenergy = Biomass Bioenerg. Biomass = Biomass Biomass Burning and Its Inter-relationships With The Climate System = Adv Glob Change Res Biomass Burning and Its Inter-relationships With The Climate System = Adv. Glob. Change. Res. Biomass Gasification: Chemistry, Processes and Applications = Renew Energy Res Dev Biomass Gasification: Chemistry, Processes and Applications = Renew. Energy. Res. Dev. Biomass Production By Fast-growing Trees = Nato Adv Sci I E-app Biomass Production By Fast-growing Trees = Nato. Adv. Sci. I. E-app. Biomaterial-living System Interactions = Biomater Living Syst Biomaterial-living System Interactions = Biomater. Living. Syst. Biomaterials and Tissue Engineering in Urology = Woodhead Publ Mater Biomaterials and Tissue Engineering in Urology = Woodhead. Publ. Mater. Biomaterials Artificial Cells and Artificial Organs = Biomater Artif Cell Biomaterials Artificial Cells and Artificial Organs = Biomater. Artif. Cell. Biomaterials, artificial cells, and artificial organs = Biomater Artif Cells Artif Organs Biomaterials Artificial Cells and Artificial Organs = Biomater. Artif. Cells Artif. Organs Biomaterials, Artificial Cells, and Artificial Organs = Biomater. Artif. Cells. Artif. Organs Biomaterials Artificial Cells and Immobilization Biotechnology = Biomat Artif Cell Im Biomaterials Artificial Cells and Immobilization Biotechnology = Biomat. Artif. Cell. Im. Biomaterials, Artificial Cells, and Immobilization Biotechnology = Biomater. Artif. Cells. Immobilization Biotechnol. Biomaterials, artificial cells, and immobilization biotechnology : official journal of the International Society for Artificial Cells and Immobilization Biotechnology = Biomater Artif Cells Immobilization Biotechnol Biomaterials As Stem Cell Niche = Stud Mechanobiol Tis Biomaterials As Stem Cell Niche = Stud. Mechanobiol. Tis. Biomaterials: A Tantalus Experience = Biol Med Phys Biomed Biomaterials: A Tantalus Experience = Biol. Med. Phys. Biomed. Biomaterials=Biomaterials;; Biomaterials = Biomaterials Biomaterials Developments and Applications = Adv Biol Med Biomaterials Developments and Applications = Adv. Biol. Med. Biomaterials for Bone Regenerative Medicine = Mater Sci Found Biomaterials for Bone Regenerative Medicine = Mater. Sci. Found. Biomaterials for Drug and Cell Delivery = Mater Res Soc Symp P Biomaterials for Drug and Cell Delivery = Mater. Res. Soc. Symp. P. Biomaterials for Treating Skin Loss = Woodhead Publ Mater Biomaterials for Treating Skin Loss = Woodhead. Publ. Mater. Biomaterials: From Molecules to Engineered Tissues = Adv Exp Med Biol Biomaterials: From Molecules to Engineered Tissues = Adv. Exp. Med. Biol. Biomaterials Mechanical Properties = Am Soc Test Mater Biomaterials Mechanical Properties = Am. Soc. Test. Mater. Biomaterials Medical Devices and Artificial Organs = Biomater Artif Cell Biomaterials Medical Devices and Artificial Organs = Biomater. Artif. Cell. Biomaterials, medical devices, and artificial organs = Biomater Med Devices Artif Organs Biomaterials Medical Devices and Artificial Organs = Biomater. Med. Devices Artif. Organs Biomaterials, Medical Devices and Artificial Organs = Biomater. Med. Devices Artif. Organs Biomaterials Properties Production and Devices = Biomat Prop Prod Dev Biomaterials Properties Production and Devices = Biomat. Prop. Prod. Dev. Biomaterials Regulating Cell Function and Tissue Development = Mater Res Soc Symp P Biomaterials Regulating Cell Function and Tissue Development = Mater. Res. Soc. Symp. P. Biomaterial-tissue Interfaces = Adv Biomat Biomaterial-tissue Interfaces = Adv. Biomat. Biomechanical Engineering of Textiles and Clothing = Woodhead Text Ser Biomechanical Engineering of Textiles and Clothing = Woodhead. Text. Ser. Biomechanical Modelling At The Molecular, Cellular and Tissue Levels = Cism Courses Lect Biomechanical Modelling At The Molecular, Cellular and Tissue Levels = Cism. Courses. Lect. Biomechanical Transport Processes = Nato Adv Sci I A-lif Biomechanical Transport Processes = Nato. Adv. Sci. I. A-lif. Biomechanics and Modeling in Mechanobiology = Biomech Model Mechan Biomechanics and Modeling in Mechanobiology = Biomech. Model. Mechan. Biomechanics and modeling in mechanobiology = Biomech Model Mechanobiol Biomechanics and Modeling in Mechanobiology = Biomech. Model. Mechanobiol. Biomechanics and Sports = Cism Cour L Biomechanics and Sports = Cism. Cour. L. Biomechanics and Sports = Cism Courses Lect Biomechanics and Sports = Cism. Courses. Lect. Biomechanics of Active Movement and Division of Cells = Nato Adv Sci Inst Se Biomechanics of Active Movement and Division of Cells = Nato. Adv. Sci. Inst. Se. Biomechanics of Soft Tissue in Cardiovascular Systems = Cism Cour L Biomechanics of Soft Tissue in Cardiovascular Systems = Cism. Cour. L. Biomechanics of Soft Tissue in Cardiovascular Systems = Cism Courses Lect Biomechanics of Soft Tissue in Cardiovascular Systems = Cism. Courses. Lect. Biomechanics of The Brain = Biol Med Phys Biomed Biomechanics of The Brain = Biol. Med. Phys. Biomed. Biomechanics Principles, Trends and Applications = Biomech Theor Appl Biomechanics Principles, Trends and Applications = Biomech. Theor. Appl. Biomechanics Theory and Applications = Biomech Theor Appl Biomechanics Theory and Applications = Biomech. Theor. Appl. Biomedica biochimica acta = Biomed Biochim Acta Biomedica Biochimica Acta = Biomed Biochim Acta Biomedica Biochimica Acta = Biomed. Biochim. Acta Biomedica = Biomedica Biomedical Advances in Aging = Gwumc Dept Biomedical Advances in Aging = Gwumc. Dept. Biomedical and Clinical Aspects of Coenzyme Q = Biomed Clin Biomedical and Clinical Aspects of Coenzyme Q = Biomed. Clin. Biomedical and Clinical Aspects of Coenzyme Q, Vol 6 = Biomed Clin Biomedical and Clinical Aspects of Coenzyme Q, Vol 6 = Biomed. Clin. Biomedical and Environmental Mass Spectrometry = Biomed Environ Mass Biomedical and Environmental Mass Spectrometry = Biomed. Environ. Mass Biomedical and Environmental Mass Spectrometry = Biomed. Environ. Mass Spectrom. Biomedical and environmental sciences : BES = Biomed Environ Sci Biomedical and Environmental Sciences=Biomed Environ Sci;; Biomedical and Environmental Sciences = Biomed Environ Sci Biomedical and Environmental Sciences = Biomed. Environ. Sci. Biomedical and Health Research = Biomed Health Res Biomedical and Health Research = Biomed. Health Res. Biomedical and Health Research = Biom Hlth R Biomedical and Health Research = Biom. Hlth. R. Biomedical and Social Aspects of Alcohol and Alcoholism = Int Congr Ser Biomedical and Social Aspects of Alcohol and Alcoholism = Int. Congr. Ser. Biomedical and Social Developments in Aids and Associated Tumors = Antibiot Chemother Biomedical and Social Developments in Aids and Associated Tumors = Antibiot. Chemother. Biomedical Applications of Biophysics = Handb Mod Biophys Biomedical Applications of Biophysics = Handb. Mod. Biophys. Biomedical Applications of Free-electron Lasers = P Soc Photo-opt Ins Biomedical Applications of Free-electron Lasers = P. Soc. Photo-opt. Ins. Biomedical Applications of Light Scattering Iii = P Soc Photo-opt Ins Biomedical Applications of Light Scattering Iii = P. Soc. Photo-opt. Ins. Biomedical Applications of Light Scattering Ii = Proc Spie Biomedical Applications of Light Scattering Ii = Proc. Spie. Biomedical Applications of Light Scattering Ii = P Soc Photo-opt Ins Biomedical Applications of Light Scattering Ii = P. Soc. Photo-opt. Ins. Biomedical Applications of Light Scattering Iv = P Soc Photo-opt Ins Biomedical Applications of Light Scattering Iv = P. Soc. Photo-opt. Ins. Biomedical Applications of Light Scattering = P Soc Photo-opt Ins Biomedical Applications of Light Scattering = P. Soc. Photo-opt. Ins. Biomedical Applications of Light Scattering V = P Soc Photo-opt Ins Biomedical Applications of Light Scattering V = P. Soc. Photo-opt. Ins. Biomedical Applications of Micro- and Nanoengineering Iii = P Soc Photo-opt Ins Biomedical Applications of Micro- and Nanoengineering Iii = P. Soc. Photo-opt. Ins. Biomedical Applications of Micro- and Nanoengineering Ii = Proc Spie Biomedical Applications of Micro- and Nanoengineering Ii = Proc. Spie. Biomedical Applications of Micro- and Nanoengineering Ii = P Soc Photo-opt Ins Biomedical Applications of Micro- and Nanoengineering Ii = P. Soc. Photo-opt. Ins. Biomedical Applications of Micro- and Nanoengineering = Proc Spie Biomedical Applications of Micro- and Nanoengineering = Proc. Spie. Biomedical Applications of Micro- and Nanoengineering = P Soc Photo-opt Ins Biomedical Applications of Micro- and Nanoengineering = P. Soc. Photo-opt. Ins. Biomedical Applications of Raman Spectroscopy, Proceedings Of = P Soc Photo-opt Ins Biomedical Applications of Raman Spectroscopy, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Applications of Smart Materials, Nanotechnology and Micro/nano Engineering = Adv Sci Tech Biomedical Applications of Smart Materials, Nanotechnology and Micro/nano Engineering = Adv. Sci. Tech. Biomedical Applications of Synchrotron Infrared Microspectroscopy = Rsc Anal Spectrosc M Biomedical Applications of Synchrotron Infrared Microspectroscopy = Rsc. Anal. Spectrosc. M. Biomedical Applications of Synchrotron Radiation = P Int Sch Phys Biomedical Applications of Synchrotron Radiation = P. Int. Sch. Phys. Biomedical Applications: Polymer Blends = Adv Polym Sci Biomedical Applications: Polymer Blends = Adv. Polym. Sci. Biomedical bulletin / Association for Voluntary Sterilization, Inc = Biomed Bull Biomedical Chromatography=Biomed Chromatogr;; Biomedical Chromatography = Biomed Chromatogr Biomedical Chromatography = Biomed. Chromatogr. Biomedical chromatography : BMC = Biomed Chromatogr Biomedical Chromatography = Chem Eng Method Tech Biomedical Chromatography = Chem. Eng. Method. Tech. Bio-medical Cmos Ics = Integr Circuit Syst Bio-medical Cmos Ics = Integr. Circuit. Syst. Biomedical communications = Biomed Commun Biomedical Communications = Biomed. Commun. Biomedical Data and Applications = Stud Comput Intell Biomedical Data and Applications = Stud. Comput. Intell. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iii = Proc Spie Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iii = Proc. Spie. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iii = P Soc Photo-opt Ins Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iii = P. Soc. Photo-opt. Ins. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Ii = Proc Spie Biomedical Diagnostic, Guidance, and Surgical-assist Systems Ii = Proc. Spie. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Ii = P Soc Photo-opt Ins Biomedical Diagnostic, Guidance, and Surgical-assist Systems Ii = P. Soc. Photo-opt. Ins. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iv = Proc Spie Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iv = Proc. Spie. Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iv = P Soc Photo-opt Ins Biomedical Diagnostic, Guidance, and Surgical-assist Systems Iv = P. Soc. Photo-opt. Ins. Biomedical Diagnostic, Guidance, and Surgical-assist Systems = Proc Spie Biomedical Diagnostic, Guidance, and Surgical-assist Systems = Proc. Spie. Biomedical Diagnostic, Guidance, and Surgical-assist Systems = P Soc Photo-opt Ins Biomedical Diagnostic, Guidance, and Surgical-assist Systems = P. Soc. Photo-opt. Ins. Biomedical digital libraries = Biomed Digit Libr Biomedical Engineering-applications Basis Communications = Biomed Eng-app Bas C Biomedical Engineering-applications Basis Communications = Biomed. Eng-app. Bas. C. Biomedical Engineering = Biomed Eng Biomedical Engineering = Biomed. Eng. BioMedical Engineering = Biomed. Eng. Biomedical engineering = Biomed Eng (NY) Biomedical engineering online = Biomed Eng Online Biomedical Engineering Online = Biomed Eng Online Biomedical Engineering Online = Biomed. Eng. Online Biomedical Engineering : Opening New Doors = Nyu M Biom Biomedical Engineering : Opening New Doors = Nyu. M. Biom. Biomedical Engineering Principles of The Bionic Man = Ser Bioeng Biomed En Biomedical Engineering Principles of The Bionic Man = Ser. Bioeng. Biomed. En. Biomedical Engineering Series = Biomed Eng Ser Biomedical Engineering Series = Biomed. Eng. Ser. Biomedical Engineering Systems and Technologies = Comm Com Inf Sc Biomedical Engineering Systems and Technologies = Comm. Com. Inf. Sc. Biomedical & environmental mass spectrometry = Biomed Environ Mass Spectrom Biomedical Ethics Reviews = Biomed Ethics Rev Biomedical Ethics Reviews = Biomed. Ethics Rev. Biomedical ethics (Tubingen, Germany) = Biomed Ethics Biomedical Fiber Optic Instrumentation, Proceedings Of = P Soc Photo-opt Ins Biomedical Fiber Optic Instrumentation, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Fiber Optics, Proceedings Of = P Soc Photo-opt Ins Biomedical Fiber Optics, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Frontiers of Fluorine Chemistry = Acs Sym Ser Biomedical Frontiers of Fluorine Chemistry = Acs. Sym. Ser. Biomedical Functions and Biotechnology of Natural and Artificial Polymers = Front Biom Biomedical Functions and Biotechnology of Natural and Artificial Polymers = Front. Biom. Biomedical Hydrogels: Biochemistry, Manufacture and Medical Applications = Woodhead Publ Mater Biomedical Hydrogels: Biochemistry, Manufacture and Medical Applications = Woodhead. Publ. Mater. Biomedical Image Processing and Biomedical Visualization, Pts 1 and 2 = P Soc Photo-opt Ins Biomedical Image Processing and Biomedical Visualization, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Biomedical Image Processing and Three-dimensional Microscopy, Pts 1 and 2 = P Soc Photo-opt Ins Biomedical Image Processing and Three-dimensional Microscopy, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Biomedical Image Processing = Biol Med Phys Biomed Biomedical Image Processing = Biol. Med. Phys. Biomed. Biomedical Image Processing Ii = P Soc Photo-opt Ins Biomedical Image Processing Ii = P. Soc. Photo-opt. Ins. Biomedical Image Processing = P Soc Photo-opt Ins Biomedical Image Processing = P. Soc. Photo-opt. Ins. Biomedical Image Registration = Lect Notes Comput Sc Biomedical Image Registration = Lect. Notes. Comput. Sc. Biomedical Image Registration, Proceedings = Lect Notes Comput Sc Biomedical Image Registration, Proceedings = Lect. Notes. Comput. Sc. Biomedical Imaging and Intervention Journal = Biomed. Imaging Intervention J. Biomedical Imaging: Reporters, Dyes, and Instrumentation, Proceedings Of = P Soc Photo-opt Ins Biomedical Imaging: Reporters, Dyes, and Instrumentation, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Informatics = Methods Mol Biol Biomedical Informatics = Methods. Mol. Biol. Biomedical Instrumentation and Technology=Biomed Instrum Technol;; Biomedical Instrumentation and Technology = Biomed. Instrum. Technol. Biomedical Instrumentation Based On Micro- and Nanotechnology = Proc Spie Biomedical Instrumentation Based On Micro- and Nanotechnology = Proc. Spie. Biomedical Instrumentation Based On Micro- and Nanotechnology = P Soc Photo-opt Ins Biomedical Instrumentation Based On Micro- and Nanotechnology = P. Soc. Photo-opt. Ins. Bio-Medical instrumentation = Biomed Instrum Bio/Medical Instrumentation = Biomed. Instrum. Biomedical instrumentation & technology / Association for the Advancement of Medical Instrumentation = Biomed Instrum Technol Biomedical Instrumentation & Technology = Biomed Instrum Techn Biomedical Instrumentation & Technology = Biomed. Instrum. Techn. Biomedical Law and Ethics Library = Biomed Law Ethics Li Biomedical Law and Ethics Library = Biomed. Law Ethics Li. Biomedical Letters = Biomed Lett Biomedical Letters = Biomed. Lett. Biomedical Library bulletin (La Jolla, San Diego, Calif.) = Biomed Lib Bull Biomedical mass spectrometry = Biomed Mass Spectrom Biomedical Mass Spectrometry = Biomed Mass Spectrom Biomedical Mass Spectrometry = Biomed. Mass Spectrom. Bio-medical materials and engineering = Biomed Mater Eng Bio-medical Materials and Engineering = Bio-med Mater Eng Bio-medical Materials and Engineering = Bio-med. Mater. Eng. Bio-Medical Materials and Engineering=Biomed Mater Eng;; Bio-Medical Materials and Engineering = Biomed. Mater. Eng. Bio-Medical Materials and Engineering = Bio-Med. Mater. Eng. Biomedical Materials = Biomed Mater Biomedical Materials = Biomed. Mater. Biomedical Materials (Bristol, United Kingdom) = Biomed. Mater. (Bristol, U. K.) Biomedical Materials-drug Delivery, Implants and Tissue Engineering = Mater Res Soc Symp P Biomedical Materials-drug Delivery, Implants and Tissue Engineering = Mater. Res. Soc. Symp. P. Biomedical microdevices = Biomed Microdevices Biomedical Microdevices = Biomed Microdevices Biomedical Microdevices = Biomed. Microdevices Biomedical Nanoetechnology: Methods and Protocols = Methods Mol Biol Biomedical Nanoetechnology: Methods and Protocols = Methods Mol. Biol. Biomedical Nanotechnology Architectures and Applications = Proc Spie Biomedical Nanotechnology Architectures and Applications = Proc. Spie. Biomedical Nanotechnology Architectures and Applications = P Soc Photo-opt Ins Biomedical Nanotechnology Architectures and Applications = P. Soc. Photo-opt. Ins. Biomedical news; the newspaper for the life scientist = Biomed News Biomedical Optical Spectroscopy = P Soc Photo-opt Ins Biomedical Optical Spectroscopy = P. Soc. Photo-opt. Ins. Biomedical Optics and Lasers: Diagnostics and Treatment = P Soc Photo-opt Ins Biomedical Optics and Lasers: Diagnostics and Treatment = P. Soc. Photo-opt. Ins. Biomedical Optoacoustics Iii = Proc Spie Biomedical Optoacoustics Iii = Proc. Spie. Biomedical Optoacoustics Iii = P Soc Photo-opt Ins Biomedical Optoacoustics Iii = P. Soc. Photo-opt. Ins. Biomedical Optoacoustics Ii = P Soc Photo-opt Ins Biomedical Optoacoustics Ii = P. Soc. Photo-opt. Ins. Biomedical Optoacoustics Iv = Proc Spie Biomedical Optoacoustics Iv = Proc. Spie. Biomedical Optoacoustics Iv = P Soc Photo-opt Ins Biomedical Optoacoustics Iv = P. Soc. Photo-opt. Ins. Biomedical Optoacoustics = Proc Spie Biomedical Optoacoustics = Proc. Spie. Biomedical Optoacoustics = P Soc Photo-opt Ins Biomedical Optoacoustics = P. Soc. Photo-opt. Ins. Biomedical Optoelectronic Devices and Systems Ii, Proceedings Of = P Soc Photo-opt Ins Biomedical Optoelectronic Devices and Systems Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Optoelectronic Instrumentation, Proceedings Of = P Soc Photo-opt Ins Biomedical Optoelectronic Instrumentation, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Optoelectronics in Clinical Chemistry and Biotechnology, Proceedings Of = P Soc Photo-opt Ins Biomedical Optoelectronics in Clinical Chemistry and Biotechnology, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical papers of the Medical Faculty of the University Palacky, Olomouc, Czechoslovakia = Biomed Pap Med Fac Univ Palacky Olomouc Czech Repub Biomedical Papers-olomouc = Biomed Pap Biomedical Papers-olomouc = Biomed. Pap. Biomedical Peptides, Proteins and Nucleic Acids=Biomed Pept Proteins Nucleic Acids;; Biomedical Peptides, Proteins and Nucleic Acids = Biomed. Pept. Proteins Nucleic Acids Biomedical peptides, proteins & nucleic acids : structure, synthesis & biological activity = Biomed Pept Proteins Nucleic Acids Biomedical Photonics and Optoelectronic Imaging = P Soc Photo-opt Ins Biomedical Photonics and Optoelectronic Imaging = P. Soc. Photo-opt. Ins. Biomedical Platforms: Realigning The Normal and The Pathological in Late-twentieth-century Medicine = Inside Technol Biomedical Platforms: Realigning The Normal and The Pathological in Late-twentieth-century Medicine = Inside. Technol. Biomedical Polymers = Woodhead Publ Mater Biomedical Polymers = Woodhead. Publ. Mater. Bio-medical purview = Biomed Purv Biomedical Research and Beyond: Expanding The Ethics of Inquiry = Routl Ann Bioethics Biomedical Research and Beyond: Expanding The Ethics of Inquiry = Routl. Ann. Bioethics. Biomedical Research = Biomed. Res. Biomedical Research-india = Biomed Res-india Biomedical Research-india = Biomed. Res-india. Biomedical Research on Trace Elements = Biomed. Res. Trace Ele. Biomedical Research on Trace Elements = Biomed. Res. Trace Elem. Biomedical Research-tokyo = Biomed Res-tokyo Biomedical Research-tokyo = Biomed. Res-tokyo. Biomedical research (Tokyo, Japan) = Biomed Res Biomedical science and technology = Biomed Sci Technol Biomedical Science and Technology = Biomed. Sci. Technol. Biomedical Science and The Third World = Ann Ny Acad Sci Biomedical Science and The Third World = Ann. Ny. Acad. Sci. Biomedical science = Biomed Sci Biomedical Science = Biomed. Sci. Biomedical sciences instrumentation = Biomed Sci Instrum Biomedical Sciences Instrumentation=Biomed Sci Instrum;; Biomedical Sciences Instrumentation = Biomed Sci Instrum Biomedical Sciences Instrumentation = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 26 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 26 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 27 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 27 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 28 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 28 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 36 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 36 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 38 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 38 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 39 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 39 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 40 = Tech Papers Isa Biomedical Sciences Instrumentation, Vol 40 = Tech. Papers. Isa. Biomedical Sciences Instrumentation, Vol 41 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 41 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 42 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 42 = Biomed. Sci. Instrum. Biomedical Sciences Instrumentation, Vol 43 = Biomed Sci Instrum Biomedical Sciences Instrumentation, Vol 43 = Biomed. Sci. Instrum. Biomedical Sensing and Imaging Technologies, Proceedings Of = P Soc Photo-opt Ins Biomedical Sensing and Imaging Technologies, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Sensing, Imaging, and Tracking Technologies Ii = P Soc Photo-opt Ins Biomedical Sensing, Imaging, and Tracking Technologies Ii = P. Soc. Photo-opt. Ins. Biomedical Sensing, Imaging, and Tracking Technologies I = P Soc Photo-opt Ins Biomedical Sensing, Imaging, and Tracking Technologies I = P. Soc. Photo-opt. Ins. Biomedical Sensors and Measurement = Adv Top Sci Tech Chi Biomedical Sensors and Measurement = Adv. Top. Sci. Tech. Chi. Biomedical Sensors, Fibers, and Optical Delivery Systems, Proceedings = P Soc Photo-opt Ins Biomedical Sensors, Fibers, and Optical Delivery Systems, Proceedings = P. Soc. Photo-opt. Ins. Biomedical Signal Processing and Control = Biomed Signal Proces Biomedical Signal Processing and Control = Biomed. Signal Proces. Biomedical Signal Processing and Control = Biomed. Signal Process. Control Biomedical Simulation, Proceedings = Lect Notes Comput Sc Biomedical Simulation, Proceedings = Lect. Notes. Comput. Sc. Biomedical Spectroscopy: Vibrational Spectroscopy and Other Novel Techniques = Proc Spie Biomedical Spectroscopy: Vibrational Spectroscopy and Other Novel Techniques = Proc. Spie. Biomedical Spectroscopy: Vibrational Spectroscopy and Other Novel Techniques = P Soc Photo-opt Ins Biomedical Spectroscopy: Vibrational Spectroscopy and Other Novel Techniques = P. Soc. Photo-opt. Ins. Biomedical Systems and Technologies Ii, Proceedings Of = P Soc Photo-opt Ins Biomedical Systems and Technologies Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Systems and Technologies, Proceedings Of = P Soc Photo-opt Ins Biomedical Systems and Technologies, Proceedings Of = P. Soc. Photo-opt. Ins. Biomedical Topical Meetings, Technical Digest = Osa Trends Opt Photo Biomedical Topical Meetings, Technical Digest = Osa. Trends. Opt. Photo. Biomedical Vibrational Spectroscopy and Biohazard Detection Technologies = Proc Spie Biomedical Vibrational Spectroscopy and Biohazard Detection Technologies = Proc. Spie. Biomedical Vibrational Spectroscopy and Biohazard Detection Technologies = P Soc Photo-opt Ins Biomedical Vibrational Spectroscopy and Biohazard Detection Technologies = P. Soc. Photo-opt. Ins. Biomedical Vibrational Spectroscopy Iii: Advances in Research and Industry = P Soc Photo-opt Ins Biomedical Vibrational Spectroscopy Iii: Advances in Research and Industry = P. Soc. Photo-opt. Ins. Biomedical Vibrational Spectroscopy Ii = P Soc Photo-opt Ins Biomedical Vibrational Spectroscopy Ii = P. Soc. Photo-opt. Ins. Biomedical Vibrational Spectroscopy Iv: Advances in Research and Industry = Proc Spie Biomedical Vibrational Spectroscopy Iv: Advances in Research and Industry = Proc. Spie. Biomedica : revista del Instituto Nacional de Salud = Biomedica Biomedicine and Pharmacotherapy=Biomed Pharmacother;; Biomedicine and Pharmacotherapy = Biomed. Pharmacother. Biomedicine As Culture: Instrumental Practices, Technoscientific Knowledge, and New Modes of Life = Routledge Stud Sci T Biomedicine As Culture: Instrumental Practices, Technoscientific Knowledge, and New Modes of Life = Routledge. Stud. Sci. T. Biomedicine As Culture: Instrumental Practices, Technoscientific Knowledge, and New Modes of Life = Rout Stud Sci Tech Biomedicine As Culture: Instrumental Practices, Technoscientific Knowledge, and New Modes of Life = Rout. Stud. Sci. Tech. Biomedicine = Biomedicine Biomedicine Express = Biomed Express Biomedicine Express = Biomed. Express Biomedicine in The Twentieth Century: Practices, Policies, and Politics = Biomed Health Res Biomedicine in The Twentieth Century: Practices, Policies, and Politics = Biomed. Health. Res. Biomedicine & Pharmacotherapy = Biomed Pharmacother Biomedicine & Pharmacotherapy = Biomed. Pharmacother. Biomedicine / [publiee pour l'A.A.I.C.I.G.] = Biomedicine Biomeditsinskaia khimiia = Biomed Khim Biomeditsinskaya Khimiya = Biomed. Khim. Biomedizinische Technik. Biomedical engineering = Biomed Tech (Berl) Biomedizinische Technik (Biomedical Engineering) = Biomed. Tech. (Berl) Biomedizinische Technik = Biomed Tech Biomedizinische Technik = Biomed. Tech. Biomedizinische Technik=Biomed Tech (Berl);; Biomedizinisch Technik = Biomed. Tech. Biomembrane Electrochemistry = Adv Chem Ser Biomembrane Electrochemistry = Adv. Chem. Ser. Biomembrane Frontiers: Nanostructures, Models and The Design of Life, Vol 2 = Handb Mod Biophys Biomembrane Frontiers: Nanostructures, Models and The Design of Life, Vol 2 = Handb. Mod. Biophys. Biomembrane Frontiers: Nanostructures, Models and The Design of Life, Vol 2 = Handbook Mod Biophys Biomembrane Frontiers: Nanostructures, Models and The Design of Life, Vol 2 = Handbook. Mod. Biophys. Biomembranes and Nutrition = Colloq Inse Biomembranes and Nutrition = Colloq. Inse. Biomembranes = Biomembrane Biomembranes = Biomembrane. Biomembranes = Biomembranes Biomems and Bionanotechnology = Mater Res Soc Symp P Biomems and Bionanotechnology = Mater. Res. Soc. Symp. P. Biomems and Nanotechnology Iii = Proc Spie Biomems and Nanotechnology Iii = Proc. Spie. Biomems and Nanotechnology Iii = P Soc Photo-opt Ins Biomems and Nanotechnology Iii = P. Soc. Photo-opt. Ins. Biomems and Nanotechnology Ii = Pro Biomed Opt Imag Biomems and Nanotechnology Ii = Pro. Biomed. Opt. Imag. Biomems and Nanotechnology = Proc Spie Biomems and Nanotechnology = Proc. Spie. Biomems and Nanotechnology = P Soc Photo-opt Ins Biomems and Nanotechnology = P. Soc. Photo-opt. Ins. Biomems and Smart Nanostructures = Proc Spie Biomems and Smart Nanostructures = Proc. Spie. Biomems and Smart Nanostructures = P Soc Photo-opt Ins Biomems and Smart Nanostructures = P. Soc. Photo-opt. Ins. Biometals : an international journal on the role of metal ions in biology, biochemistry, and medicine = Biometals Biometals=Biometals;; Biometals = Biometals BioMetals = BioMetals Biometals: Molecular Structures, Binding Properties and Applications = Biotech Agr Ind Med Biometals: Molecular Structures, Binding Properties and Applications = Biotech. Agr. Ind. Med. Biometrical Journal = Biometrical J. Biometrical Journal = Biometrical J Biometrical Journal = Biometrical J. Biometrical journal. Biometrische Zeitschrift = Biom J Biometrical Journal = Biom. J. Biometric Authentication, Proceedings = Lect Notes Comput Sc Biometric Authentication, Proceedings = Lect. Notes. Comput. Sc. Biometric Id Management and Multimodal Communication, Proceedings = Lect Notes Comput Sc Biometric Id Management and Multimodal Communication, Proceedings = Lect. Notes. Comput. Sc. Biometrics and Identity Management = Lect Notes Comput Sc Biometrics and Identity Management = Lect. Notes. Comput. Sc. Biometrics = Biometrics Biometrics=Biometrics;; Biometrics = Biometrics Biometrics Bulletin = Biometrics Bull Biometrics Bulletin = Biometrics Bull. Biometrics: Methods, Applications and Analysis = Comput Sci Tech Appl Biometrics: Methods, Applications and Analysis = Comput. Sci. Tech. Appl. Biometric Technology for Human Identification Iii = P Soc Photo-opt Ins Biometric Technology for Human Identification Iii = P. Soc. Photo-opt. Ins. Biometric Technology for Human Identification Ii = Proc Spie Biometric Technology for Human Identification Ii = Proc. Spie. Biometric Technology for Human Identification Ii = P Soc Photo-opt Ins Biometric Technology for Human Identification Ii = P. Soc. Photo-opt. Ins. Biometric Technology for Human Identification Iv = Proc Spie Biometric Technology for Human Identification Iv = Proc. Spie. Biometric Technology for Human Identification Iv = P Soc Photo-opt Ins Biometric Technology for Human Identification Iv = P. Soc. Photo-opt. Ins. Biometric Technology for Human Identification = Proc Spie Biometric Technology for Human Identification = Proc. Spie. Biometric Technology for Human Identification = P Soc Photo-opt Ins Biometric Technology for Human Identification = P. Soc. Photo-opt. Ins. Biometric Technology for Human Identification Vii = P Soc Photo-opt Ins Biometric Technology for Human Identification Vii = P. Soc. Photo-opt. Ins. Biometric Technology for Human Identification V = Proc Spie Biometric Technology for Human Identification V = Proc. Spie. Biometric Technology for Human Identification V = P Soc Photo-opt Ins Biometric Technology for Human Identification V = P. Soc. Photo-opt. Ins. Biometrie humaine = Biom Hum Biometrie und Informatik in der Biologie und Medizin = Biom. Inform. Biol. Med. Biometrika = Biometrika Biometrika = Biometrika Biometrische Zeitschrift = Biometr Z Biometrische Zeitschrift = Biometr. Z. Biometrische Zeitschrift = Biom Z Biometrische Zeitschrift = Biom. Z. Biomicroelectromechanical Systems (biomems) = Mater Res Soc Symp P Biomicroelectromechanical Systems (biomems) = Mater. Res. Soc. Symp. P. Biomicrofluidics = Biomicrofluidics Biomimetic Neural Learning for Intelligent Robots: Intelligent Systems, Cognitive Robotics, and Neuroscience = Lect Notes Artif Int Biomimetic Neural Learning for Intelligent Robots: Intelligent Systems, Cognitive Robotics, and Neuroscience = Lect. Notes. Artif. Int. Biomimetics = Biomimetics Biomimetics - Materials, Structures and Processes: Examples, Ideas and Case Studies = Biol Med Phys Biomed Biomimetics - Materials, Structures and Processes: Examples, Ideas and Case Studies = Biol. Med. Phys. Biomed. Biomineralization I: Crystallization and Self-organization Process = Top Curr Chem Biomineralization I: Crystallization and Self-organization Process = Top. Curr. Chem. Biomineralization Ii: Mineralization Using Synthetic Polymers and Templates = Top Curr Chem Biomineralization Ii: Mineralization Using Synthetic Polymers and Templates = Top. Curr. Chem. Biomineralization = Rev Mineral Geochem Biomineralization = Rev. Mineral. Geochem. Biomodular Therapy : Forward Looking Concept of Treatment = Fors Prax D Biomodular Therapy : Forward Looking Concept of Treatment = Fors. Prax. D. Biomolecular Action of Ionizing Radiation = Ser Med Phys Biomed Biomolecular Action of Ionizing Radiation = Ser. Med. Phys. Biomed. Biomolecular Cytoplasmic Therapy After 35 Year = Fors Prax D Biomolecular Cytoplasmic Therapy After 35 Year = Fors. Prax. D. Biomolecular engineering = Biomol Eng Biomolecular Engineering = Biomol Eng Biomolecular Engineering = Biomol. Eng Biomolecular Engineering = Biomol. Eng. Biomolecular Materials By Design = Mater Res Soc Symp P Biomolecular Materials By Design = Mater. Res. Soc. Symp. P. Biomolecular Materials = Mater Res Soc Symp P Biomolecular Materials = Mater. Res. Soc. Symp. P. Biomolecular Nmr Assignments = Biomol Nmr Assigm Biomolecular Nmr Assignments = Biomol. Nmr Assigm. Biomolecular Nmr Assignments = Biomol Nmr Assign Biomolecular Nmr Assignments = Biomol. Nmr Assign. Biomolecular NMR Assignments = Biomol. NMR Assignments Biomolecular Photonics and Multidimensional Microscopy = P Soc Photo-opt Ins Biomolecular Photonics and Multidimensional Microscopy = P. Soc. Photo-opt. Ins. Biomolecular Spectroscopy Ii = P Soc Photo-opt Ins Biomolecular Spectroscopy Ii = P. Soc. Photo-opt. Ins. Biomolecular Structure and Dynamics = Nato Adv Sci I E-app Biomolecular Structure and Dynamics = Nato. Adv. Sci. I. E-app. Biomolecules & Therapeutics = Biomol Ther Biomolecules & Therapeutics = Biomol. Ther. Biomonitoring and Endoscopy Technologies = Proc Spie Biomonitoring and Endoscopy Technologies = Proc. Spie. Biomonitoring and Endoscopy Technologies = P Soc Photo-opt Ins Biomonitoring and Endoscopy Technologies = P. Soc. Photo-opt. Ins. Biomonitoring, Ecology, and Systematics of Lichens: Recognizing The Lichenological Legacy of Thomas H. Nash Iii On His 65th Birthday = Bibl Lichenol Biomonitoring, Ecology, and Systematics of Lichens: Recognizing The Lichenological Legacy of Thomas H. Nash Iii On His 65th Birthday = Bibl. Lichenol. Biomonitoring for Physiological and Cognitive Performance During Military Operations = P Soc Photo-opt Ins Biomonitoring for Physiological and Cognitive Performance During Military Operations = P. Soc. Photo-opt. Ins. Biomonitors and Biomarkers As Indicators of Environmental Change 2: A Handbook = Envir Sci R Biomonitors and Biomarkers As Indicators of Environmental Change 2: A Handbook = Envir. Sci. R. Biomonitors and Biomarkers As Indicators of Environmental Change = Envir Sci R Biomonitors and Biomarkers As Indicators of Environmental Change = Envir. Sci. R. Bionanodesign: Following Nature's Touch = Rsc Nanosci Nanotech Bionanodesign: Following Nature's Touch = Rsc. Nanosci. Nanotech. Bionanofluidic Mems = Mems Ref Shelf Bionanofluidic Mems = Mems Ref. Shelf. Bioorganic and Medicinal Chemistry=Bioorg Med Chem;; Bioorganic and Medicinal Chemistry = Bioorg. Med. Chem. Bioorganic and Medicinal Chemistry Letters = Bioorg. Med. Chem. Lett. Bioorganic Chemistry and Applications = Bioorg. Chem. App. Bioorganic chemistry = Bioorg Chem Bioorganic Chemistry = Bioorg Chem Bioorganic Chemistry = Bioorg. Chem. Bioorganic Chemistry Deoxysugars, Polyketides and Related Classes: Synthesis, Biosynthesis, Enzymes = Top Curr Chem Bioorganic Chemistry Deoxysugars, Polyketides and Related Classes: Synthesis, Biosynthesis, Enzymes = Top. Curr. Chem. Bioorganic Chemistry of Biological Signal Transduction = Top Curr Chem Bioorganic Chemistry of Biological Signal Transduction = Top. Curr. Chem. Bioorganic Chemistry = Top Curr Chem Bioorganic Chemistry = Top. Curr. Chem. Bioorganicheskaia khimiia = Bioorg Khim Bioorganicheskaia Khimiia=Bioorg Khim;; Bioorganicheskaia Khimiia = Bioorg. Khim. Bioorganicheskaya Khimiya = Bioorg Khim+ Bioorganicheskaya Khimiya = Bioorg. Khim+.+ Bioorganicheskaya Khimiya (Russian Journal of Bioorganic Chemistry) = Bioorg. Khim Bioorganic & Medicinal Chemistry = Bioorgan Med Chem Bioorganic & Medicinal Chemistry = Bioorgan. Med. Chem. Bioorganic & medicinal chemistry = Bioorg Med Chem Bioorganic & Medicinal Chemistry = Bioorg. Med. Chem. Bioorganic & medicinal chemistry letters = Bioorg Med Chem Lett Bioorganic & Medicinal Chemistry Letters = Bioorg Med Chem Lett Bioorganic & Medicinal Chemistry Letters = Bioorg. Med. Chem. Lett. Biopharmaceutics and Drug Disposition=Biopharm Drug Dispos;; Biopharmaceutics and Drug Disposition = Biopharm. Drug Dispos. Biopharmaceutics and Drug Hypersensitivity = Pharm Res Saf Test Biopharmaceutics and Drug Hypersensitivity = Pharm. Res. Saf. Test. Biopharmaceutics & drug disposition = Biopharm Drug Dispos Biopharmaceutics & Drug Disposition = Biopharm Drug Dispos Biopharmaceutics & Drug Disposition = Biopharm. Drug Dispos. Biopharm International = Biopharm Int Biopharm International = Biopharm Int. Biopharm International-the Applied Technologies of Biopharmaceutical Development = Biopharm Int Biopharm International-the Applied Technologies of Biopharmaceutical Development = Biopharm Int. Biopharm-journal of Veterinary Pharmacy = Biopharm-j Vet Pharm Biopharm-journal of Veterinary Pharmacy = Biopharm-j. Vet. Pharm. Biopharm-the Applied Technologies of Biopharmaceutical Development = Biopharm-appl T Bio Biopharm-the Applied Technologies of Biopharmaceutical Development = Biopharm-appl. T. Bio. Biopharm-the Technology & Business of Biopharmaceuticals = Biopharm-technol Bus Biopharm-the Technology & Business of Biopharmaceuticals = Biopharm-technol. Bus. Biophotonics 2007: Optics in Life Science = Proc Spie Biophotonics 2007: Optics in Life Science = Proc. Spie. Biophotonics 2007: Optics in Life Science = P Soc Photo-opt Ins Biophotonics 2007: Optics in Life Science = P. Soc. Photo-opt. Ins. Biophotonics and Immune Repsonses = P Soc Photo-opt Ins Biophotonics and Immune Repsonses = P. Soc. Photo-opt. Ins. Biophotonics and Immune Responses Iii = P Soc Photo-opt Ins Biophotonics and Immune Responses Iii = P. Soc. Photo-opt. Ins. Biophotonics and Immune Responses Ii = P Soc Photo-opt Ins Biophotonics and Immune Responses Ii = P. Soc. Photo-opt. Ins. Biophotonics and Immune Responses Iv = P Soc Photo-opt Ins Biophotonics and Immune Responses Iv = P. Soc. Photo-opt. Ins. Biophotonics and Immune Responses V = Proc Spie Biophotonics and Immune Responses V = Proc. Spie. Biophotonics and New Therapy Frontiers = Proc Spie Biophotonics and New Therapy Frontiers = Proc. Spie. Biophotonics and New Therapy Frontiers = P Soc Photo-opt Ins Biophotonics and New Therapy Frontiers = P. Soc. Photo-opt. Ins. Biophotonics = Biol Med Phys Biomed Biophotonics = Biol. Med. Phys. Biomed. Biophotonics Instrumentation and Analysis = Proc Spie Biophotonics Instrumentation and Analysis = Proc. Spie. Biophotonics Instrumentation and Analysis = P Soc Photo-opt Ins Biophotonics Instrumentation and Analysis = P. Soc. Photo-opt. Ins. Biophotonics Micro-and Nano-imaging = P Soc Photo-opt Ins Biophotonics Micro-and Nano-imaging = P. Soc. Photo-opt. Ins. Biophotonics New Frontier: From Genome to Proteome = P Soc Photo-opt Ins Biophotonics New Frontier: From Genome to Proteome = P. Soc. Photo-opt. Ins. Biophotonics: Photonic Solutions for Better Health Care Ii = Proc Spie Biophotonics: Photonic Solutions for Better Health Care Ii = Proc. Spie. Biophotonics: Photonic Solutions for Better Health Care Ii = P Soc Photo-opt Ins Biophotonics: Photonic Solutions for Better Health Care Ii = P. Soc. Photo-opt. Ins. Biophotonics: Photonic Solutions for Better Health Care = Proc Spie Biophotonics: Photonic Solutions for Better Health Care = Proc. Spie. Biophotonics: Photonic Solutions for Better Health Care = P Soc Photo-opt Ins Biophotonics: Photonic Solutions for Better Health Care = P. Soc. Photo-opt. Ins. Biophotonics, Pt A = Method Enzymol Biophotonics, Pt A = Method. Enzymol. Biophotonics, Pt A = Methods Enzymol Biophotonics, Pt A = Methods. Enzymol. Biophotonics, Pt B = Method Enzymol Biophotonics, Pt B = Method. Enzymol. Biophotonics: Spectroscopy, Imaging, Sensing, and Manipulation = Nato Sci Peace Sec B Biophotonics: Spectroscopy, Imaging, Sensing, and Manipulation = Nato. Sci. Peace. Sec. B. Biophysical Approaches Determining Ligand Binding to Biomolecular Targets: Detection, Measurement and Modelling = Rsc Biomol Sci Biophysical Approaches Determining Ligand Binding to Biomolecular Targets: Detection, Measurement and Modelling = Rsc. Biomol. Sci. Biophysical chemistry = Biophys Chem Biophysical Chemistry=Biophys Chem;; Biophysical Chemistry = Biophys Chem Biophysical Chemistry = Biophys. Chem. Biophysical Chemistry: Membranes and Proteins = Roy Soc Ch Biophysical Chemistry: Membranes and Proteins = Roy. Soc. Ch. Biophysical journal = Biophys J Biophysical Journal=Biophys J;; Biophysical Journal = Biophys J Biophysical Journal = Biophys. J. Biophysical Principles of Hemodynamics = Cardiol Res Clin Dev Biophysical Principles of Hemodynamics = Cardiol. Res. Clin. Dev. Biophysical Regulation of Vascular Differentiation and Assembly = Biol Med Phys Biomed Biophysical Regulation of Vascular Differentiation and Assembly = Biol. Med. Phys. Biomed. Biophysical Reviews and Letters = Biophys. Rev. Lett. Biophysical Reviews = Biophys. Rev. Biophysical Tools for Biologists: Vol 1 in Vitro Techniques = Method Cell Biol Biophysical Tools for Biologists: Vol 1 in Vitro Techniques = Method. Cell. Biol. Biophysical Tools for Biologists, Vol 2: in Vivo Techniques = Method Cell Biol Biophysical Tools for Biologists, Vol 2: in Vivo Techniques = Method. Cell. Biol. Biophysics and The Challenges of Emerging Threats = Nato Science Peace S Biophysics and The Challenges of Emerging Threats = Nato. Science. Peace. S. Biophysics = Biophysics (Oxf) Biophysics From Molecules to Brain: in Memory of Radoslav K. Andjus = Ann Ny Acad Sci Biophysics From Molecules to Brain: in Memory of Radoslav K. Andjus = Ann. Ny. Acad. Sci. Biophysics of Dna- Protein Interactions: From Single Molecules to Biological Systems = Biol Med Phys Biomed Biophysics of Dna- Protein Interactions: From Single Molecules to Biological Systems = Biol. Med. Phys. Biomed. Biophysics of Electron Transfer and Molecular Bioelectronics = Electr Biot Adv For Biophysics of Electron Transfer and Molecular Bioelectronics = Electr. Biot. Adv. For. Biophysics of Human Hair: Structural, Nanomechanical, and Nanotribological Studies = Biol Med Phys Biomed Biophysics of Human Hair: Structural, Nanomechanical, and Nanotribological Studies = Biol. Med. Phys. Biomed. Biophysics of Photoreception = Ser Biophys Biocyber Biophysics of Photoreception = Ser. Biophys. Biocyber. Biophysics of Photoreceptors and Photomovements in Microorganisms = Nato Adv Sci I A-lif Biophysics of Photoreceptors and Photomovements in Microorganisms = Nato. Adv. Sci. I. A-lif. Biophysics of structure and mechanism = Biophys Struct Mech Biophysics of Structure and Mechanism = Biophys Struct Mech Biophysics of Structure and Mechanism = Biophys. Struct. Mech. Biophysics-ussr = Biophys-ussr Biophysics-ussr = Biophys-ussr. Biophysik = Biophysik Biopolimery i kletka = Biopolim Kletka Biopolitics and The Obesity Epidemic: Governing Bodies = Rout Stud Hlth Soc W Biopolitics and The Obesity Epidemic: Governing Bodies = Rout. Stud. Hlth. Soc. W. Biopolymers=Biopolymers;; Biopolymers = Biopolymers Biopolymer Science: Food and Non Food Applications = Colloq Inra Biopolymer Science: Food and Non Food Applications = Colloq. Inra. Biopolymers Ii = Adv Polym Sci Biopolymers Ii = Adv. Polym. Sci. Biopolymers: Lignin, Proteins, Bioactive Nanocomposites = Adv Polym Sci Biopolymers: Lignin, Proteins, Bioactive Nanocomposites = Adv. Polym. Sci. Biopolymers Liquid Crystalline Polymers Phase Emulsion = Adv Polym Sci Biopolymers Liquid Crystalline Polymers Phase Emulsion = Adv. Polym. Sci. Biopolymers/pva Hydrogels/anionic Polymerisation Nanocomposites = Adv Polym Sci Biopolymers/pva Hydrogels/anionic Polymerisation Nanocomposites = Adv. Polym. Sci. Biopotential Readout Circuits for Portable Acquisition Systems = Analog Circ Sig Proc Biopotential Readout Circuits for Portable Acquisition Systems = Analog. Circ. Sig. Proc. Biopreservation and Biobanking = Biopreserv Biobank Biopreservation and Biobanking = Biopreserv. Biobank. Biopreservation and Biobanking = Biopreserv. Biobanking Bioprocess and Biosystems Engineering = Bioproc Biosyst Eng Bioprocess and Biosystems Engineering = Bioproc. Biosyst. Eng. Bioprocess and biosystems engineering = Bioprocess Biosyst Eng Bioprocess and Biosystems Engineering = Bioprocess Biosyst. Eng. Bioprocess and Biosystems Engineering = Bioprocess. Biosyst. Eng. Bioprocess Engineering = Bioprocess Eng Bioprocess Engineering = Bioprocess Eng. Bioprocess Engineering = Bioprocess. Eng. Bioprocessing Journal = Bioprocess. J. Bioprocess International = Bioprocess Int. Bioprocess technology = Bioprocess Technol Bioprocess Technology = Bioprocess Technol. Bioproducts Processing = Inst Chem E Bioproducts Processing = Inst. Chem. E. BioPsychoSocial medicine = Biopsychosoc Med Bio-psycho-social Perspectives On Interpersonal Violence = Psychol Emot Motiv A Bio-psycho-social Perspectives On Interpersonal Violence = Psychol. Emot. Motiv. A. Bioptics : Optics in Biomedicine and Environmental Science = P Soc Photo-opt Ins Bioptics : Optics in Biomedicine and Environmental Science = P. Soc. Photo-opt. Ins. Bioradicals Detected By Esr Spectroscopy = Mcbu Bioradicals Detected By Esr Spectroscopy = Mcbu. Biorational Pest Control Agents = Acs Sym Ser Biorational Pest Control Agents = Acs. Sym. Ser. Bioreactor Systems for Tissue Engineering = Adv Biochem Eng Biot Bioreactor Systems for Tissue Engineering = Adv. Biochem. Eng. Biot. Bioreactor Systems for Tissue Engineering Ii: Strategies for The Expanison and Directed Differentiation of Stem Cells = Adv Biochem Eng Biot Bioreactor Systems for Tissue Engineering Ii: Strategies for The Expanison and Directed Differentiation of Stem Cells = Adv. Biochem. Eng. Biot. Biorecovery = Biorecovery Biorefineries: for Biomass Upgrading Facilities = Green Energy Technol Biorefineries: for Biomass Upgrading Facilities = Green. Energy. Technol. Bioregulators for Crop Protection and Pest Control = Acs Sym Ser Bioregulators for Crop Protection and Pest Control = Acs. Sym. Ser. Bioremediation Journal = Bioremediat J Bioremediation Journal = Bioremediat. J. Bioremediation Journal = Biorem. J. Bioremediation: Methods and Protocols = Methods Mol Biol Bioremediation: Methods and Protocols = Methods Mol. Biol. Bioremediation of Chlorinated Solvents = Bioremed Ser Bioremediation of Chlorinated Solvents = Bioremed. Ser. Bioremediation of Energetics, Phenolics, and Polycyclic Aromatic Hydrocarbons = Bioremed Ser Bioremediation of Energetics, Phenolics, and Polycyclic Aromatic Hydrocarbons = Bioremed. Ser. Bioremediation of Inorganic Compounds = Bioremed Ser Bioremediation of Inorganic Compounds = Bioremed. Ser. Bioremediation of Inorganics = Bioremed Ser Bioremediation of Inorganics = Bioremed. Ser. Bioremediation of Mtbe, Alcohols, and Ethers = Bioremed Ser Bioremediation of Mtbe, Alcohols, and Ethers = Bioremed. Ser. Bioremediation of Pollutants in Soil and Water = Am Soc Test Mater Bioremediation of Pollutants in Soil and Water = Am. Soc. Test. Mater. Bioremediation of Recalcitrant Organics = Bioremed Ser Bioremediation of Recalcitrant Organics = Bioremed. Ser. Bioremediation of Soils Contaminated With Aromatic Compounds = Nato Sci S Ss Iv Ear Bioremediation of Soils Contaminated With Aromatic Compounds = Nato. Sci. S. Ss. Iv. Ear. Bioremediation of Surface and Subsurface Contamination = Ann Ny Acad Sci Bioremediation of Surface and Subsurface Contamination = Ann. Ny. Acad. Sci. Bioremediation Series = Bioremed Ser Bioremediation Series = Bioremed. Ser. Bioremediation = Sssa Spec Publ Bioremediation = Sssa. Spec. Publ. Bioremediation Through Rhizosphere Technology = Acs Sym Ser Bioremediation Through Rhizosphere Technology = Acs. Sym. Ser. Bioresource-based Energy for Sustainable Societies = Energ Sci Eng Tech Bioresource-based Energy for Sustainable Societies = Energ. Sci. Eng. Tech. Bioresources = Bioresources Bioresource Technology = Bioresource Technol Bioresource Technology = Bioresource Technol. Bioresource technology = Bioresour Technol Bioresource Technology = Bioresour. Technol. Biorheology=Biorheology;; Biorheology = Biorheology Biorheology. Supplement = Biorheology. Suppl. Biorheology. Supplement : the official journal of the International Society of Biorheology = Biorheology Suppl Biorthogonal Systems in Banach Spaces = Cms Books Math Biorthogonal Systems in Banach Spaces = Cms. Books. Math. Bios = Bios Bio-science and Bio-technology = Comm Com Inf Sc Bio-science and Bio-technology = Comm. Com. Inf. Sc. Bioscience = Bioscience BioScience = BioScience Bioscience Biotechnology and Biochemistry = Biosci Biotech Bioch Bioscience Biotechnology and Biochemistry = Biosci. Biotech. Bioch. Bioscience, biotechnology, and biochemistry = Biosci Biotechnol Biochem Bioscience Biotechnology and Biochemistry = Biosci. Biotechnol., Biochem. Bioscience, Biotechnology, and Biochemistry = Biosci. Biotechnol. Biochem. Bioscience, Biotechnology, and Biochemistry = Biosci., Biotechnol., Biochem. Bioscience Horizons = Biosci. Horiz. Bioscience Journal = Biosci J Bioscience Journal = Biosci. J. Bioscience Reports = Bioscience Rep Bioscience Reports = Bioscience Rep. Bioscience reports = Biosci Rep Bioscience Reports=Biosci Rep;; Bioscience Reports = Biosci. Rep. Biosciences, Biotechnology Research Asia = Biosci. Biotechnol. Res. Asia Biosciences Communications = Biosci Commun Biosciences Communications = Biosci. Commun. Bioscience - Society = Scher Fdn W Bioscience - Society = Scher. Fdn. W. Bioscience Trends = Biosci Trends Bioscience Trends = Biosci. Trends Biosecurity and bioterrorism : biodefense strategy, practice, and science = Biosecur Bioterror Biosecurity and Bioterrorism-biodefense Strategy Practice and Science = Biosecur Bioterror Biosecurity and Bioterrorism-biodefense Strategy Practice and Science = Biosecur. Bioterror. Biosecurity and Bioterrorism = Biosecur. Bioterror. Biosecurity: Origins, Transformations and Practices = New Secur Chall Biosecurity: Origins, Transformations and Practices = New. Secur. Chall. Biosemiotics = Biosemiotics Biosemiotics = Biosemiotics-neth Biosemiotics = Biosemiotics-neth. Biosemiotics Series = Biosemiotics Ser Biosemiotics Series = Biosemiotics Ser. Biosensing for The 21st Century = Adv Biochem Eng Biot Biosensing for The 21st Century = Adv. Biochem. Eng. Biot. Biosensing Iii = P Soc Photo-opt Ins Biosensing Iii = P. Soc. Photo-opt. Ins. Biosensing Ii = Proc Spie Biosensing Ii = Proc. Spie. Biosensing = Proc Spie Biosensing = Proc. Spie. Biosensing = P Soc Photo-opt Ins Biosensing = P. Soc. Photo-opt. Ins. Biosensor and Chemical Sensor Technology = Acs Sym Ser Biosensor and Chemical Sensor Technology = Acs. Sym. Ser. Biosensor Design and Application = Acs Sym Ser Biosensor Design and Application = Acs. Sym. Ser. Biosensors and Bioelectronics=Biosens Bioelectron;; Biosensors and Bioelectronics = Biosens. Bioelectron. Biosensors and Chemical Sensors = Acs Sym Ser Biosensors and Chemical Sensors = Acs. Sym. Ser. Biosensors : Applications in Medicine, Environmental Protection and Process Control = Gbf Monog Series Biosensors : Applications in Medicine, Environmental Protection and Process Control = Gbf. Monog. Series. Biosensors & bioelectronics = Biosens Bioelectron Biosensors & Bioelectronics = Biosens Bioelectron Biosensors & Bioelectronics = Biosens. Bioelectron. Biosensors = Biosensors Biosensors for Direct Monitoring of Environmental Pollutants in Field = Nato Asi 2 Biosensors for Direct Monitoring of Environmental Pollutants in Field = Nato. Asi. 2. Biosensors : Fundamentals, Technologies and Applications = Gbf Monog Series Biosensors : Fundamentals, Technologies and Applications = Gbf. Monog. Series. Biosensors: Properties, Materials and Applications = Biotech Agr Ind Med Biosensors: Properties, Materials and Applications = Biotech. Agr. Ind. Med. Bioseparation = Bioseparation Bioseparation Engineering = Progr Biotechnol Bioseparation Engineering = Progr. Biotechnol. Bioseparation Processes in Foods = Ift Bas Sym Bioseparation Processes in Foods = Ift. Bas. Sym. Biosignal (brno) = Biosig Brno Biosignal (brno) = Biosig. Brno. Biosocial Bases of Violence = Nato Adv Sci I A-lif Biosocial Bases of Violence = Nato. Adv. Sci. I. A-lif. Biosocial Criminology: New Directions in Theory and Research = Criminol Just Stud Biosocial Criminology: New Directions in Theory and Research = Criminol. Just. Stud. Biosocial Foundations of Family Processes = Natl Symp Fam Iss Biosocial Foundations of Family Processes = Natl. Symp. Fam. Iss. Biosocial Society Series = Biosocial S Biosocial Society Series = Biosocial S. Biosocieties = Biosocieties Biospectroscopy = Biospectroscopy Biostatistics = Biostatistics Biostatistics (Oxford, England) = Biostatistics Biostereometric Technology and Applications = P Soc Photo-opt Ins Biostereometric Technology and Applications = P. Soc. Photo-opt. Ins. Biostratigraphy in Production and Development Geology = Geol Soc Spec Publ Biostratigraphy in Production and Development Geology = Geol. Soc. Spec. Publ. Biosurfactants = Adv Exp Med Biol Biosurfactants = Adv. Exp. Med. Biol. Biosurfactants: From Genes to Applications = Microbiol Monogr Biosurfactants: From Genes to Applications = Microbiol. Monogr. Biosurveillance and Biosecurity, Proceedings = Lect N Bioinformat Biosurveillance and Biosecurity, Proceedings = Lect. N. Bioinformat. Biosynthesis: Aromatic Polyketides, Isoprenoids, Alkaloids = Top Curr Chem Biosynthesis: Aromatic Polyketides, Isoprenoids, Alkaloids = Top. Curr. Chem. Biosynthesis of The Tetrapyrrole Pigments = Ciba F Symp Biosynthesis of The Tetrapyrrole Pigments = Ciba. F. Symp. Biosynthesis = Top Curr Chem Biosynthesis = Top. Curr. Chem. Biosystematics and Ecology Series = Biosyst Ecol Ser Biosystematics and Ecology Series = Biosyst. Ecol. Ser. Biosystems=Biosystems;; Biosystems = Biosystems Bio Systems = Biosystems Biosystems Engineering = Biosystems Eng. Biosystems Engineering = Biosyst Eng Biosystems Engineering = Biosyst. Eng. Biosystems Engineering I: Creating Superior Biocatalysts = Adv Biochem Eng Biot Biosystems Engineering I: Creating Superior Biocatalysts = Adv. Biochem. Eng. Biot. Biosystems Engineering Ii: Linking Cellular Networks and Bioprocesses = Adv Biochem Eng Biot Biosystems Engineering Ii: Linking Cellular Networks and Bioprocesses = Adv. Biochem. Eng. Biot. Biotechforum ( Btf ) = Biotechfor Biotechforum ( Btf ) = Biotechfor. Biotech Forum Europe = Biotech Forum Europe Biotechnic and Histochemistry=Biotech Histochem;; Biotechnic and Histochemistry = Biotech. Histochem. Biotechnic & Histochemistry = Biotech Histochem Biotechnic & Histochemistry = Biotech. Histochem. Biotechnic & histochemistry : official publication of the Biological Stain Commission = Biotech Histochem Biotechniques=Biotechniques;; Biotechniques = Biotechniques BioTechniques = Biotechniques BioTechniques = BioTechniques Biotechniques for Air Pollution Abatement and Odour Control Policies = Stud Environ Sci Biotechniques for Air Pollution Abatement and Odour Control Policies = Stud. Environ. Sci. Biotechnologie Agronomie Societe Et Environnement = Biotechnol Agron Soc Biotechnologie Agronomie Societe Et Environnement = Biotechnol. Agron. Soc. Biotechnologie, Agronomie, Societe et Environnement = Biotechnol. Agron. Soc. Environ. Biotechnologies in Perspective : Socio-economic Implications for Developing Countries = Fut Or St Biotechnologies in Perspective : Socio-economic Implications for Developing Countries = Fut. Or. St. Biotechnology advances = Biotechnol Adv Biotechnology Advances = Biotechnol Adv Biotechnology Advances = Biotechnol. Adv. Biotechnology and Agricultural Development: Transgenic Cotton, Rural Institutions and Resource-poor Farmers = Routl Explor Environ Biotechnology and Agricultural Development: Transgenic Cotton, Rural Institutions and Resource-poor Farmers = Routl. Explor. Environ. Biotechnology and Applied Biochemistry = Biotechnol Appl Bioc Biotechnology and Applied Biochemistry = Biotechnol. Appl. Bioc. Biotechnology and applied biochemistry = Biotechnol Appl Biochem Biotechnology and Applied Biochemistry=Biotechnol Appl Biochem;; Biotechnology and Applied Biochemistry = Biotechnol. Appl. Biochem. Biotechnology and Biodegradation = Adv Ap Biot Biotechnology and Biodegradation = Adv. Ap. Biot. Biotechnology and bioengineering = Biotechnol Bioeng Biotechnology and Bioengineering = Biotechnol Bioeng Biotechnology and Bioengineering = Biotechnol. Bioeng. Biotechnology and bioengineering symposium = Biotechnol Bioeng Symp Biotechnology and Bioengineering Symposium = Biotechnol. Bioeng. Symp. Biotechnology and Bioprocess Engineering = Biotechnol Bioproc E Biotechnology and Bioprocess Engineering = Biotechnol. Bioproc. E. Biotechnology and Bioprocess Engineering = Biotechnol. Bioprocess Eng. Biotechnology and Biotechnological Equipment = Biotechnol. Biotechnol. Equip. Biotechnology and Development Monitor = Biotechnol Dev Monit Biotechnology and Development Monitor = Biotechnol. Dev. Monit. Biotechnology and Food Process Engineering = Ift Bas Sym Biotechnology and Food Process Engineering = Ift. Bas. Sym. Biotechnology and Genetic Engineering Reviews=Biotechnol Genet Eng Rev;; Biotechnology and Genetic Engineering Reviews = Biotechnol. Genet. Eng. Rev. Biotechnology and Genetic Engineering Reviews, Vol 13 = Biotechnol Genet Eng Biotechnology and Genetic Engineering Reviews, Vol 13 = Biotechnol. Genet. Eng. Biotechnology and Genetic Engineering Reviews, Vol 16 = Biotechnol Genet Eng Biotechnology and Genetic Engineering Reviews, Vol 16 = Biotechnol. Genet. Eng. Biotechnology and Genetic Engineering Reviews, Vol 25 = Biotechnol Genet Eng Biotechnology and Genetic Engineering Reviews, Vol 25 = Biotechnol. Genet. Eng. Biotechnology and Genetic Engineering Reviews, Vol 26 = Biotechnol Genet Eng Biotechnology and Genetic Engineering Reviews, Vol 26 = Biotechnol. Genet. Eng. Biotechnology and Genetic Engineering Reviews, Vol 27 = Biotechnol Genet Eng Biotechnology and Genetic Engineering Reviews, Vol 27 = Biotechnol. Genet. Eng. Biotechnology and Human Genetic Predisposition to Disease = Ucla Sym Bi Biotechnology and Human Genetic Predisposition to Disease = Ucla. Sym. Bi. Biotechnology annual review = Biotechnol Annu Rev Biotechnology Annual Review = Biotechnol. Annu. Rev. Bio-technology = Bio-technol Bio-technology = Bio-technol. Biotechnology & Biotechnological Equipment = Biotechnol Biotec Eq Biotechnology & Biotechnological Equipment = Biotechnol. Biotec. Eq. Biotechnology=Biotechnology;; Biotechnology = Biotechnology Bio/Technology = Bio/Technology Bio/Technology = Biotechnology. (N. Y.) Biotechnology Education = Biotechnol Educ Biotechnology Education = Biotechnol. Educ. Biotechnology for Biofuels = Biotechnol Biofuels Biotechnology for Biofuels = Biotechnol. Biofuels Biotechnology for Improved Foods and Flavors = Acs Sym Ser Biotechnology for Improved Foods and Flavors = Acs. Sym. Ser. Biotechnology for The Environment: Soil Remediation, Vol 3b = Focus Biotechnol Biotechnology for The Environment: Soil Remediation, Vol 3b = Focus. Biotechnol. Biotechnology for The Future = Adv Biochem Eng Biot Biotechnology for The Future = Adv. Biochem. Eng. Biot. Biotechnology for Waste Management and Site Restoration = Nato Asi 2 Biotechnology for Waste Management and Site Restoration = Nato. Asi. 2. Biotechnology & Genetic Engineering Reviews = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews = Biotechnol. Genet. Eng. Biotechnology & genetic engineering reviews = Biotechnol Genet Eng Rev Biotechnology & Genetic Engineering Reviews, Vol 14 = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews, Vol 14 = Biotechnol. Genet. Eng. Biotechnology & Genetic Engineering Reviews, Vol. 15 = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews, Vol. 15 = Biotechnol. Genet. Eng. Biotechnology & Genetic Engineering Reviews, Vol 17 = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews, Vol 17 = Biotechnol. Genet. Eng. Biotechnology & Genetic Engineering Reviews, Vol 19 = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews, Vol 19 = Biotechnol. Genet. Eng. Biotechnology & Genetic Engineering Reviews, Vol 20 = Biotechnol Genet Eng Biotechnology & Genetic Engineering Reviews, Vol 20 = Biotechnol. Genet. Eng. Biotechnology in Agriculture and Forestry = Biotech Agr Forest Biotechnology in Agriculture and Forestry = Biotech. Agr. Forest. Biotechnology in Agriculture = Biotechn Ag Biotechnology in Agriculture = Biotechn. Ag. Biotechnology in Agriculture = Curr Plant Sci Biot Biotechnology in Agriculture = Curr. Plant. Sci. Biot. Biotechnology in Agriculture Industry and Medicine = Biotech Agr Ind Med Biotechnology in Agriculture Industry and Medicine = Biotech. Agr. Ind. Med. Biotechnology in Blood Transfusion = Dev Hematol Biotechnology in Blood Transfusion = Dev. Hematol. Biotechnology in China I = Adv Biochem Eng Biot Biotechnology in China I = Adv. Biochem. Eng. Biot. Biotechnology in China Ii: Chemicals, Energy and Environment = Adv Biochem Eng Biot Biotechnology in China Ii: Chemicals, Energy and Environment = Adv. Biochem. Eng. Biot. Biotechnology in Horticultural Crop Improvement: Achievements, Opportunities and Limitations = Acta Hortic Biotechnology in Horticultural Crop Improvement: Achievements, Opportunities and Limitations = Acta. Hortic. Biotechnology in Medicine, Foodstuffs, Biocatalysis, Environment and Biogeotechnology = Biotech Agr Ind Med Biotechnology in Medicine, Foodstuffs, Biocatalysis, Environment and Biogeotechnology = Biotech. Agr. Ind. Med. Biotechnology in The Pulp and Paper Industry: 8th Icbppi = Progr Biotechnol Biotechnology in The Pulp and Paper Industry: 8th Icbppi = Progr. Biotechnol. Biotechnology in The Sustainable Environment = Envir Sci R Biotechnology in The Sustainable Environment = Envir. Sci. R. Biotechnology journal = Biotechnol J Biotechnology Journal = Biotechnol J Biotechnology Journal = Biotechnol. J. Biotechnology Law Report = Biotechnol Law Rep Biotechnology Law Report = Biotechnol. Law Rep. Biotechnology letters = Biotechnol Lett Biotechnology Letters = Biotechnol Lett Biotechnology Letters = Biotechnol. Lett Biotechnology Letters = Biotechnol. Lett. Bio/technology (Nature Publishing Company) = Biotechnology (N Y) Biotechnology of Amylodextrin Oligosaccharides = Acs Sym Ser Biotechnology of Amylodextrin Oligosaccharides = Acs. Sym. Ser. Biotechnology of Blood Proteins = Colloq Inse Biotechnology of Blood Proteins = Colloq. Inse. Biotechnology of Cell Regulation = Ser Symp Ad Biotechnology of Cell Regulation = Ser. Symp. Ad. Biotechnology of Plasma Proteins = Curr Stud Hematol Bl Biotechnology of Plasma Proteins = Curr. Stud. Hematol. Bl. Biotechnology Pharmaceutical Aspects = Biotechnol Pharm Asp Biotechnology Pharmaceutical Aspects = Biotechnol. Pharm. Asp. Biotechnology Pharmaceutical Aspects = Biotech Pharm Aspect Biotechnology Pharmaceutical Aspects = Biotech. Pharm. Aspect. Biotechnology: Pharmaceutical Aspects = Biotech Pharm Aspect Biotechnology: Pharmaceutical Aspects = Biotech. Pharm. Aspect. Biotechnology progress = Biotechnol Prog Biotechnology Progress = Biotechnol. Prog. Biotechnology Progress = Biotechnol Progr Biotechnology Progress = Biotechnol. Progr. BioTechnology (Rajkot, India) = BioTechnology (Rajkot, India) Biotechnology R&d Trends = Ann Ny Acad Sci Biotechnology R&d Trends = Ann. Ny. Acad. Sci. Biotechnology (Reading, Mass.) = Biotechnology Biotechnology Regulation Series = Biotechnol Regul Ser Biotechnology Regulation Series = Biotechnol. Regul. Ser. Biotechnology: Science and Society At A Crossroad = Nabc Rep Biotechnology: Science and Society At A Crossroad = Nabc. Rep. Biotechnology Software & Internet Journal = Biotechnol Softw I J Biotechnology Software & Internet Journal = Biotechnol. Softw. I. J. Biotechnology Software Journal = Biotechnol Softw J Biotechnology Software Journal = Biotechnol. Softw. J. Biotechnology Techniques = Biotechnol Tech Biotechnology Techniques = Biotechnol. Tech. Biotechnology therapeutics = Biotechnol Ther Biotechnology Therapeutics = Biotechnol Ther Biotechnology Therapeutics = Biotechnol. Ther. Biotech: The Countercultural Origins of An Industry = Polit Cult Mod Am Biotech: The Countercultural Origins of An Industry = Polit. Cult. Mod. Am. Biotekhnologiya = Biotekhnologiya Biotelemetry and patient monitoring = Biotelem Patient Monit Biotelemetry and Patient Monitoring = Biotelem. Patient Monit. Biotelemetry and Patient Monitoring = Biotelem Pat Mon Biotelemetry and Patient Monitoring = Biotelem. Pat. Mon. Biotelemetry = Biotelemetry Bioterrorism Preparedness, Attack and Response = Adv Health Care Mana Bioterrorism Preparedness, Attack and Response = Adv. Health. Care. Mana. Biotherapy=Biotherapy;; Biotherapy = Biotherapy Biotherapy (Dordrecht, Netherlands) = Biotherapy Biothiols, Pt A = Method Enzymol Biothiols, Pt A = Method. Enzymol. Biothiols, Pt B = Method Enzymol Biothiols, Pt B = Method. Enzymol. Biotic Diversity and Germplasm Preservation, Global Imperatives = Beltsv Symp Biotic Diversity and Germplasm Preservation, Global Imperatives = Beltsv. Symp. Biotic Recovery From Mass Extinction Events = Geol Soc Sp Biotic Recovery From Mass Extinction Events = Geol. Soc. Sp. Biotransport: Heat and Mass Transfer in Living Systems = Ann Ny Acad Sci Biotransport: Heat and Mass Transfer in Living Systems = Ann. Ny. Acad. Sci. Biotronics = Biotronics Biotropica = Biotropica Biotypologie = Biotypologie Bioworld = Bioworld Bipolar disorders = Bipolar Disord Bipolar Disorders = Bipolar Disord Bipolar Disorders = Bipolar Disord. Bird-banding = Bird Banding Bird-banding = Bird. Banding. Bird Behavior = Bird Behav Bird Behavior = Bird Behav. Bird Behaviour = Bird Behav Bird Behaviour = Bird Behav. Bird Conservation International = Bird Conserv Int Bird Conservation International = Bird Conserv. Int. Bird Hormones and Bird Migrations: Analyzing Hormones in Droppings and Egg Yolks and Assessing Adaptations in Long-distance Migration = Ann Ny Acad Sci Bird Hormones and Bird Migrations: Analyzing Hormones in Droppings and Egg Yolks and Assessing Adaptations in Long-distance Migration = Ann. Ny. Acad. Sci. Birds and Climate Change = Adv Ecol Res Birds and Climate Change = Adv. Ecol. Res. Birds-evolution Behavior and Ecology = Birds-evol Behav Eco Birds-evolution Behavior and Ecology = Birds-evol. Behav. Eco. Bird Study = Bird Stud. Bird Study = Bird Study Birkhauser Advanced Texts = Birkhauser Adv Texts Birkhauser Advanced Texts = Birkhauser Adv. Texts Birkhauser Advances in Infectious Diseases = Birkhauser Adv Infec Birkhauser Advances in Infectious Diseases = Birkhauser Adv. Infec. BIRPERHT publication = BIRPERHT Publ Bir Report = Bir Report Birth and the family journal = Birth Fam J Birth and The Family Journal = Birth Fam J Birth and The Family Journal = Birth Fam. J. Birth (Berkeley, Calif.) = Birth Birth = Birth Birth Defects: Issues On Prevention and Promotion = Health Care Iss Cost Birth Defects: Issues On Prevention and Promotion = Health. Care. Iss. Cost. Birth Defects : Original Article Series = Birth Def Birth Defects : Original Article Series = Birth Def. Birth Defects-original Article Series = Birth Defects-orig Birth Defects-original Article Series = Birth Defects-orig. Birth defects original article series = Birth Defects Orig Artic Ser Birth Defects Original Article Series = Birth Defects Orig. Artic. Ser. Birth Defects Research. Part A, Clinical and Molecular Teratology = Birt. Defects Res. A. Clin. Mol. Teratol. Birth Defects Research Part A-clinical and Molecular Teratology = Birth Defects Res A Birth Defects Research Part A-clinical and Molecular Teratology = Birth Defects Res. A. Birth defects research. Part A, Clinical and molecular teratology = Birth Defects Res A Clin Mol Teratol Birth Defects Research, Part A: Clinical and Molecular Teratology = Birth Defects Res., Part A Birth Defects Research Part B-developmental and Reproductive Toxicology = Birth Defects Res B Birth Defects Research Part B-developmental and Reproductive Toxicology = Birth Defects Res. B. Birth defects research. Part B, Developmental and reproductive toxicology = Birth Defects Res B Dev Reprod Toxicol Birth Defects Research. Part B, Developmental and Reproductive Toxicology = Birth Defects Res. B. Dev. Reprod. Toxicol. Birth Defects Research, Part B: Developmental and Reproductive Toxicology = Birth Defects Res., Part B Birth Defects Research. Part C, Embryo Today = Birth Defects Res. C. Embryo Today Birth Defects Research Part C-embryo Today-reviews = Birth Defects Res C Birth Defects Research Part C-embryo Today-reviews = Birth Defects Res. C. Birth defects research. Part C, Embryo today : reviews = Birth Defects Res C Embryo Today Birth Defects Research, Part C: Embryo Today--Reviews = Birth Defects Res., Part C Birth Gazette = Birth Gaz. Birth-issues in Perinatal Care = Birth-iss Perinat C Birth-issues in Perinatal Care = Birth-iss. Perinat. C. Birth of Biopolitics: Lectures At The College De France, 1978-1979 = Michel Foucault-lect Birth of Biopolitics: Lectures At The College De France, 1978-1979 = Michel. Foucault-lect. Birth of Orientalism = Encounters Asia Birth of Orientalism = Encounters. Asia. Birth of The Prophet Muhammad: Devotional Piety in Sunni Islam = Cult Civiliz Mid E Birth of The Prophet Muhammad: Devotional Piety in Sunni Islam = Cult. Civiliz. Mid. E. Birth of The Universe and Fundamental Physics = Lect Notes Phys Birth of The Universe and Fundamental Physics = Lect. Notes. Phys. Birth Psychology Bulletin = Birth Psychol Bull Birthright = Birthright Birth Risks = Nestle Nutr Works Se Birth Risks = Nestle. Nutr. Works. Se. Biset Functors for Finite Groups = Lect Notes Math Biset Functors for Finite Groups = Lect. Notes. Math. Bisphosphonates and Osteonecrosis of The Jaw = Ann Ny Acad Sci Bisphosphonates and Osteonecrosis of The Jaw = Ann. Ny. Acad. Sci. Bistumer Der Kirchenprovinz Koln, Das Bistum Munster 10: Das Zisterzienserinnen Spater Benediktinerinnenkloster St. Aegidii Zu Munster = Ger Sacrum Dritte Fo Bistumer Der Kirchenprovinz Koln, Das Bistum Munster 10: Das Zisterzienserinnen Spater Benediktinerinnenkloster St. Aegidii Zu Munster = Ger. Sacrum. Dritte. Fo. Bitamin = Bitamin Bit = Bit BIT = BIT Bit Numerical Mathematics = Bit Bitterroot Ecosystem Management Research Project: What We Have L Earned = Us For Serv Rmrs-p Bitterroot Ecosystem Management Research Project: What We Have L Earned = Us. For. Serv. Rmrs-p. Bituminous Binders 2002 = Transport Res Rec Bituminous Binders 2002 = Transport. Res. Rec. Bituminous Binders 2003 = Transport Res Rec Bituminous Binders 2003 = Transport. Res. Rec. Bituminous Binders 2004 = Transport Res Rec Bituminous Binders 2004 = Transport. Res. Rec. Bituminous Binders 2005 = Transport Res Rec Bituminous Binders 2005 = Transport. Res. Rec. Bituminous Materials and Nonbituminous Components of Bituminous Paving Mixtures 2006 = Transport Res Rec Bituminous Materials and Nonbituminous Components of Bituminous Paving Mixtures 2006 = Transport. Res. Rec. Bituminous Paving Mixtures 2002 = Transport Res Rec Bituminous Paving Mixtures 2002 = Transport. Res. Rec. Bituminous Paving Mixtures 2003 = Transport Res Rec Bituminous Paving Mixtures 2003 = Transport. Res. Rec. Bituminous Paving Mixtures 2004 = Transport Res Rec Bituminous Paving Mixtures 2004 = Transport. Res. Rec. Bituminous Paving Mixtures 2005 = Transport Res Rec Bituminous Paving Mixtures 2005 = Transport. Res. Rec. Bituminous Paving Mixtures 2006 = Transport Res Rec Bituminous Paving Mixtures 2006 = Transport. Res. Rec. Biuletyn-Biblioteki Jagiellonskiej = Biul Bibl Jagiellon Biuletyn IGS / Szkola Glowna Handlowa, Instytut Gospodarstwa Spolecznego = Biul IGS Biuletyn Instytutu Medycyny Morskiej w Gdansku = Biul Inst Med Morsk Gdansk Biuletyn Instytutu Medycyny Morskiej w Gdansku = Biul. Inst. Med. Morsk. Gdansk. Biuletyn Panstwowego Instytutu Medycyny Morskiej i Tropikalnej w Gdansku. Biulleten' Gosudarstvennogo Instituta morskoi i tropicheskoi meditsiny v Gdan'ske. Bulletin of the State Institute of Marine and Tropical Medicine in Gdansk, Pola... = Biul Panstw Inst Med Morsk Trop J W Gdansku Biuletyn Zydowskiego Instytutu Historycznego = Biul Zydowskiego Inst Hist Pol Biulleten' eksperimental'noi biologii i meditsiny = Biull Eksp Biol Med Biulleten Eksperimentalnoi Biologii i Meditsiny = Biull. Eksp. Biol. Med. Biulleten Eksperimentalnoi Biologii I Meditsiny=Biull Eksp Biol Med;; Biulleten Eksperimentalnol Biologii I Meditsiny = B Exp Biol Med+ Biulleten Eksperimentalnol Biologii I Meditsiny = B. Exp. Biol. Med+.+ Biulleten' Moskovskogo obshchestva ispytatelei prirody. Otdel biologicheskii = Biull Mosk Ova Ispyt Prir (Biol) Biulleten'. Russian S.F.S.R. Ministerstvo Zdravookhraneniia. Uchenyi meditsinskii sovet = Biulleten Russ SFSR Minist Zdravookhraneniia Uchenyi Meditsinskii sov Biulleten' Vsesoiuznogo kardiologicheskogo nauchnogo tsentra AMN SSSR = Biull Vsesoiuznogo Kardiol Nauchn Tsentra AMN SSSR Biulleten Vsesoiuznogo Kardiologicheskogo Nauchnogo Tsentra AMN SSSR = Biull. Vsesoiuznogo Kardiol. Nauchn. Tsentra AMN SSSR BJOG : an international journal of obstetrics and gynaecology = BJOG Bjog-an International Journal of Obstetrics and Gynaecology = Bjog-int J Obstet Gy Bjog-an International Journal of Obstetrics and Gynaecology = Bjog-int. J. Obstet. Gy. BJOG = BJOG BJR supplement / BIR = BJR Suppl BJR Supplement=BJR Suppl;; BJR Supplement = BJR Suppl. Bju International = Bju Int Bju International = Bju Int. BJU international = BJU Int BJU International = BJU Int. Black aging = Black Aging Black American Literature Forum = Black Am Lit Forum Black American Literature Forum = Black Am. Lit. Forum Black and Blue: African Americans, The Labor Movement, and The Decline of The Democratic Party = Princ Stud Am Polit Black and Blue: African Americans, The Labor Movement, and The Decline of The Democratic Party = Princ. Stud. Am. Polit. Black and White Cultural Interaction in The Antebellum South = Chanc Symp Black and White Cultural Interaction in The Antebellum South = Chanc. Symp. Black Art-an International Quarterly = Black Art Black Art-an International Quarterly = Black Art. Black Bass: Ecology, Conservation, and Management = Am Fish S S Black Bass: Ecology, Conservation, and Management = Am. Fish. S. S. Black Cosmopolitanism: Racial Consciousness and Transnational Identity in The Nineteenth-century Americas = Rethink Am Black Cosmopolitanism: Racial Consciousness and Transnational Identity in The Nineteenth-century Americas = Rethink. Am. Black Earth: Ecological Principles for Sustainable Agriculture On Chernozem Soils = Int Year Planet Eart Black Earth: Ecological Principles for Sustainable Agriculture On Chernozem Soils = Int. Year. Planet. Eart. Blackface Cuba, 1840-1895 = Rethink Am Blackface Cuba, 1840-1895 = Rethink. Am. Black Feminist Politics From Kennedy to Clinton = Contemp Black Hist Black Feminist Politics From Kennedy to Clinton = Contemp. Black Hist. Black Hole Physics = Nato Adv Sci I C-mat Black Hole Physics = Nato. Adv. Sci. I. C-mat. Black Holes and Galaxy Formation = Space Sci Explor Pol Black Holes and Galaxy Formation = Space. Sci. Explor. Pol. Black Holes in Binaries and Galactic Nuclei: Diagnostics, Demography and Formation = Eso Astrophy Symp Black Holes in Binaries and Galactic Nuclei: Diagnostics, Demography and Formation = Eso. Astrophy. Symp. Black Holes: Theory and Observation = Lect Notes Phys Black Holes: Theory and Observation = Lect. Notes. Phys. Black Literate Lives: Historical and Contemporary Perspectives = Crit Soc Thought Black Literate Lives: Historical and Contemporary Perspectives = Crit. Soc. Thought. Black Masculinity and Sexual Politics = Routl Res Race Ethn Black Masculinity and Sexual Politics = Routl. Res. Race. Ethn. Black Music Research Journal = Black Music Res J Black Music Research Journal = Black Music Res. J. Black Perspective in Music = Black Perspect Music Black Perspective in Music = Black Perspect. Music Black Poachers, White Hunters: A Social History of Hunting in Colonial Kenya = E Afr Stud Ser Black Poachers, White Hunters: A Social History of Hunting in Colonial Kenya = E. Afr. Stud. Ser. Black Power in Bermuda: The Struggle for Decolonization = Contemp Black Hist Black Power in Bermuda: The Struggle for Decolonization = Contemp. Black Hist. Black Religion and The Imagination of Matter in The Atlantic World = Black Relig Woman Th Black Religion and The Imagination of Matter in The Atlantic World = Black Relig. Woman. Th. Black Religion Womanist Thought Social Justice = Black Relig Woman Th Black Religion Womanist Thought Social Justice = Black Relig. Woman. Th. Black Routes to Islam = Crit Black Stud Ser Black Routes to Islam = Crit. Black Stud. Ser. Black Scholar = Black Scholar Black Sea Oceanography = Nato Adv Sci I C-mat Black Sea Oceanography = Nato. Adv. Sci. I. C-mat. Blacks of Premodern China = Encounters Asia Blacks of Premodern China = Encounters. Asia. Black Theology in Transatlantic Dialogue = Black Relig Woman Th Black Theology in Transatlantic Dialogue = Black Relig. Woman. Th. Black Townsmen: Urban Slavery and Freedom in The Eighteenth-century Americas = Am Early Mod Atl Wor Black Townsmen: Urban Slavery and Freedom in The Eighteenth-century Americas = Am. Early. Mod. Atl. Wor. Black Walnut in A New Century = Us For Serv T R Nc Black Walnut in A New Century = Us. For. Serv. T. R. Nc. Black Women, Cultural Images and Social Policy = Rout Stud N Am Polit Black Women, Cultural Images and Social Policy = Rout. Stud. N. Am. Polit. Black Women in New South Literature and Culture = Stud Am Popul Hist C Black Women in New South Literature and Culture = Stud. Am. Popul. Hist. C. Black Womens Health: Challenges and Opportunities = Public Health 21st C Black Womens Health: Challenges and Opportunities = Public. Health. 21st. C. Bladder Cancer: Diagnosis, Therapeutics and Management = Curr Clin Urol Bladder Cancer: Diagnosis, Therapeutics and Management = Curr. Clin. Urol. Bladder Cancer: Etymology, Diagnosis Treatments = Cancer Etiol Diagn T Bladder Cancer: Etymology, Diagnosis Treatments = Cancer. Etiol. Diagn. T. Bladder Disease: Research Concepts and Clinical Applications, Pts A and B = Adv Exp Med Biol Bladder Disease: Research Concepts and Clinical Applications, Pts A and B = Adv. Exp. Med. Biol. Bladder Tumors: Molecular Aspects and Clinical Management = Cancer Drug Discov D Bladder Tumors: Molecular Aspects and Clinical Management = Cancer. Drug. Discov. D. Blairs Educational Legacy: Thirteen Years of New Labour = Marx Educ Blairs Educational Legacy: Thirteen Years of New Labour = Marx. Educ. Blake-an Illustrated Quarterly = Blake-illustrated Q Blake-an Illustrated Quarterly = Blake-illustrated. Q. Blake, Lavater and Physiognomy = Stud Comp Lit Ser Blake, Lavater and Physiognomy = Stud. Comp. Lit. Ser. Blake Newsletter = Blake Newsl Blake Newsletter = Blake Newsl. Blake studies = Blake Stud Blake Studies = Blake Stud Blake Studies = Blake Stud. Blameworthy Belief: A Study in Epistemic Deontologism = Synth Libr Blameworthy Belief: A Study in Epistemic Deontologism = Synth. Libr. Blast Furnace and Steel Plant = Blast Furn Steel Pl Blast Furnace and Steel Plant = Blast Furn. Steel Pl. Blast Protection of Civil Infrastructures and Vehicles Using Composites = Woodhead Publ Mater Blast Protection of Civil Infrastructures and Vehicles Using Composites = Woodhead. Publ. Mater. Blast Waves = Shock Wave High Pres Blast Waves = Shock. Wave. High. Pres. Blätter der Vereinigung Pro Sihltal = Bl. Ver. Pro Sihltal Blatter fur deutsche und internationale Politik = Bl Dtsch Int Polit Blatter fur Heimatkunde ... = BL Heimatkd Blätter für Münzfreunde und Münzforschung = BlMueFreundeF Blatter fur wurttembergische Kirchengeschichte = BL Wueritemb Kirchengesch Blatter fur Zahnheilkunde = Bl. Zahnheilkd. Blatter fur Zahnheilkunde. Bulletin dentaire = Bl Zahnheilkd Blaue, Die = Blaue Blaxploitation Films of The 1970s: Blackness and Genre = Stud Afr Am Hist Cul Blaxploitation Films of The 1970s: Blackness and Genre = Stud. Afr. Am. Hist. Cul. Blazar Demographics and Physics, Proceedings = Astr Soc P Blazar Demographics and Physics, Proceedings = Astr. Soc. P. Bleter far geshikhte = BL Gesz Blind Speech Separation = Signals Commun Techn Blind Speech Separation = Signals. Commun. Techn. Bl Lac Phenomenon = Astr Soc P Bl Lac Phenomenon = Astr. Soc. P. Blm-bonniers Litterara Magasin = Blm-bonniers Lit Mag Blm-bonniers Litterara Magasin = Blm-bonniers Lit. Mag. Block Copolymers I = Adv Polym Sci Block Copolymers I = Adv. Polym. Sci. Block Copolymers Ii = Adv Polym Sci Block Copolymers Ii = Adv. Polym. Sci. Blockcopolymers Polyelectrolytes Biodegradation = Adv Polym Sci Blockcopolymers Polyelectrolytes Biodegradation = Adv. Polym. Sci. Blockheizkraftwerke 2008 = Vdi Bericht Blockheizkraftwerke 2008 = Vdi. Bericht. Block-oriented Nonlinear System Identification = Lect Notes Contr Inf Block-oriented Nonlinear System Identification = Lect. Notes. Contr. Inf. Blocks and Families for Cyclotomic Hecke Algebras = Lect Notes Math Blocks and Families for Cyclotomic Hecke Algebras = Lect. Notes. Math. Blood=Blood;; Blood = Blood Blood-brain and Other Neural Barriers: Reviews and Protocols = Methods Mol Biol Blood-brain and Other Neural Barriers: Reviews and Protocols = Methods. Mol. Biol. Blood cells = Blood Cells Blood Cells = Blood Cells Blood Cells Molecules and Diseases = Blood Cell Mol Dis Blood Cells Molecules and Diseases = Blood Cell. Mol. Dis. Blood Cells, Molecules, and Diseases=Blood Cells Mol Dis;; Blood Cells, Molecules, and Diseases = Blood Cells. Mol. Dis. Blood cells, molecules & diseases = Blood Cells Mol Dis Blood Coagulation and Fibrinolysis=Blood Coagul Fibrinolysis;; Blood Coagulation and Fibrinolysis = Blood Coagul. Fibrinolysis Blood coagulation & fibrinolysis : an international journal in haemostasis and thrombosis = Blood Coagul Fibrinolysis Blood Coagulation & Fibrinolysis = Blood Coagul Fibrin Blood Coagulation & Fibrinolysis = Blood Coagul. Fibrin. Blood Flow in Large Arteries : Applications to Atherogenesis and Clinical Medicine = Mg Atherosc Blood Flow in Large Arteries : Applications to Atherogenesis and Clinical Medicine = Mg. Atherosc. Blood pressure = Blood Press Blood Pressure=Blood Press;; Blood Pressure = Blood Press. Blood Pressure = Blood Pressure Blood pressure monitoring = Blood Press Monit Blood Pressure Monitoring = Blood Press Monit Blood Pressure Monitoring = Blood Press. Monit. Blood Pressure Monitoring in Cardiovascular Medicine and Therapeutics, Second Edition = Clin Hypertens Vasc Blood Pressure Monitoring in Cardiovascular Medicine and Therapeutics, Second Edition = Clin. Hypertens. Vasc. Blood pressure. Supplement = Blood Press Suppl Blood Pressure. Supplement=Blood Press Suppl;; Blood Pressure. Supplement = Blood Press. Suppl. Blood purification = Blood Purif Blood Purification=Blood Purif;; Blood Purification = Blood Purif. Blood Purification = Blood Purificat Blood Purification = Blood Purificat. Blood Purification in Intensive Care = Contrib Nephrol Blood Purification in Intensive Care = Contrib. Nephrol. Blood reviews = Blood Rev Blood Reviews=Blood Rev;; Blood Reviews = Blood Rev Blood Reviews = Blood Rev. Blood-the Journal of Hematology = Blood-j Hematol Blood-the Journal of Hematology = Blood-j. Hematol. Blood Transfusion = Blood Transfus-italy Blood Transfusion = Blood Transfus-italy. Blood vessels = Blood Vessels Blood Vessels = Blood Vessels Bloomsbury geographer = Bloomsbury Geogr Blow Up Theories for Semilinear Parabolic Equations = Lect Notes Math Blow Up Theories for Semilinear Parabolic Equations = Lect. Notes. Math. Blow-up Theory for Elliptic Pdes in Riemannian Geometry = Math N Princ Blow-up Theory for Elliptic Pdes in Riemannian Geometry = Math. N. Princ. Blue Cross Association research series = Blue Cross Assoc Res Ser Blue Cross Association Research Series = Blue Cross Assoc. Res. Ser. Blueprint for Promoting Academic and Social Competence in After-school Programs = Issues Child Fam Liv Blueprint for Promoting Academic and Social Competence in After-school Programs = Issues. Child. Fam. Liv. Blues for New Orleans: Mardi Gras and America's Creole Soul = City 21st Century Blues for New Orleans: Mardi Gras and America's Creole Soul = City. 21st. Century. Blue Stragglers = Astr Soc P Blue Stragglers = Astr. Soc. P. Bluetongue Disease in Southeast Asia & The Pacific = Aciar Proc Bluetongue Disease in Southeast Asia & The Pacific = Aciar. Proc. Bluetongue, Pt 1, Proceedings = Veter Ital Ser Bluetongue, Pt 1, Proceedings = Veter. Ital. Ser. Blumea = Blumea Blurring The Lines: Charter, Public, Private and Religious Schools Coming Together = Polit Educ Book Ser Blurring The Lines: Charter, Public, Private and Religious Schools Coming Together = Polit. Educ. Book. Ser. Blutalkohol = Blutalkohol Blut = Blut B Lymphocytes and Autoimmunity = Ann Ny Acad Sci B Lymphocytes and Autoimmunity = Ann. Ny. Acad. Sci. Blys Ligands and Receptors = Contemp Immunol Blys Ligands and Receptors = Contemp. Immunol. Bmb Reports = Bmb Rep Bmb Reports = Bmb Rep. BMC anesthesiology = BMC Anesthesiol Bmc Biochemistry = Bmc Biochem Bmc Biochemistry = Bmc Biochem. BMC biochemistry = BMC Biochem BMC Biochemistry = BMC Biochem. BMC Bioinformatics = BMC Bioinf. Bmc Bioinformatics = Bmc Bioinformatics BMC bioinformatics = BMC Bioinformatics Bmc Biology = Bmc Biol Bmc Biology = Bmc Biol. BMC biology = BMC Biol BMC Biology = BMC Biol. BMC Biotechnology = BMC Biotech. Bmc Biotechnology = Bmc Biotechnol Bmc Biotechnology = Bmc Biotechnol. BMC biotechnology = BMC Biotechnol BMC Biotechnology = BMC Biotechnol. BMC blood disorders = BMC Blood Disord Bmc Cancer = Bmc Cancer BMC cancer = BMC Cancer BMC Cancer = BMC Cancer Bmc Cardiovascular Disorders = Bmc Cardiovasc Disor Bmc Cardiovascular Disorders = Bmc Cardiovasc. Disor. BMC cardiovascular disorders = BMC Cardiovasc Disord BMC Cardiovascular Disorders = BMC Cardiovasc. Disord. Bmc Cell Biology = Bmc Cell Biol Bmc Cell Biology = Bmc Cell Biol. BMC cell biology = BMC Cell Biol BMC Cell Biology = BMC Cell Biol. BMC chemical biology = BMC Chem Biol BMC Chemical Biology = BMC Chem. Biol BMC clinical pathology = BMC Clin Pathol BMC clinical pharmacology = BMC Clin Pharmacol BMC Clinical Pharmacology = BMC Clin. Pharmacol. Bmc Complementary and Alternative Medicine = Bmc Complem Altern M Bmc Complementary and Alternative Medicine = Bmc Complem. Altern. M. BMC complementary and alternative medicine = BMC Complement Altern Med BMC Complementary and Alternative Medicine = BMC Complement. Altern. Med. BMC dermatology = BMC Dermatol BMC Dermatology = BMC Dermatol. Bmc Developmental Biology = Bmc Dev Biol Bmc Developmental Biology = Bmc Dev. Biol. BMC developmental biology = BMC Dev Biol BMC Developmental Biology = BMC Dev. Biol BMC Developmental Biology = BMC Dev. Biol. BMC ear, nose, and throat disorders = BMC Ear Nose Throat Disord BMC ecology = BMC Ecol BMC Ecology = BMC Ecol. BMC emergency medicine = BMC Emerg Med BMC endocrine disorders = BMC Endocr Disord Bmc Evolutionary Biology = Bmc Evol Biol Bmc Evolutionary Biology = Bmc Evol. Biol. BMC evolutionary biology = BMC Evol Biol BMC Evolutionary Biology = BMC Evol. Biol. Bmc Family Practice = Bmc Fam Pract Bmc Family Practice = Bmc Fam. Pract. BMC family practice = BMC Fam Pract Bmc Gastroenterology = Bmc Gastroenterol Bmc Gastroenterology = Bmc Gastroenterol. BMC gastroenterology = BMC Gastroenterol BMC Gastroenterology = BMC Gastroenterol. Bmc Genetics = Bmc Genet Bmc Genetics = Bmc Genet. BMC genetics = BMC Genet BMC Genetics = BMC Genet. Bmc Genomics = Bmc Genomics BMC genomics = BMC Genomics BMC geriatrics = BMC Geriatr BMC Geriatrics = BMC Geriatr. Bmc Health Services Research = Bmc Health Serv Res Bmc Health Services Research = Bmc Health Serv. Res. BMC health services research = BMC Health Serv Res BMC Health Services Research = BMC Health Serv. Res. Bmc Immunology = Bmc Immunol Bmc Immunology = Bmc Immunol. BMC immunology = BMC Immunol Bmc Infectious Diseases = Bmc Infect Dis Bmc Infectious Diseases = Bmc Infect. Dis. BMC infectious diseases = BMC Infect Dis BMC Infectious Diseases = BMC Infect. Dis. Bmc International Health and Human Rights = Bmc Int Health Hum R Bmc International Health and Human Rights = Bmc Int. Health Hum. R. BMC international health and human rights = BMC Int Health Hum Rights Bmc Medical Education = Bmc Med Educ Bmc Medical Education = Bmc Med. Educ. BMC medical education = BMC Med Educ BMC Medical Education = BMC Med. Educ. Bmc Medical Ethics = Bmc Med Ethics Bmc Medical Ethics = Bmc Med. Ethics BMC medical ethics = BMC Med Ethics Bmc Medical Genetics = Bmc Med Genet Bmc Medical Genetics = Bmc Med. Genet. BMC medical genetics = BMC Med Genet BMC Medical Genetics = BMC Med. Genet. BMC Medical Genomics = BMC Med. Genet. Bmc Medical Genomics = Bmc Med Genomics Bmc Medical Genomics = Bmc Med. Genomics BMC medical imaging = BMC Med Imaging BMC Medical Imaging = BMC Med. Imaging BMC Medical Informatics and Decision Making = BMC Med. Inf. Decis. Making Bmc Medical Informatics and Decision Making = Bmc Med Inform Decis Bmc Medical Informatics and Decision Making = Bmc Med. Inform. Decis. BMC medical informatics and decision making = BMC Med Inform Decis Mak BMC Medical Informatics and Decision Making = BMC Med. Inform. Decis. Mak. BMC Medical Physics = BMC Med. Phys. BMC Medical Research Methodology = BMC Med. Res. Method. Bmc Medical Research Methodology = Bmc Med Res Methodol Bmc Medical Research Methodology = Bmc Med. Res. Methodol. BMC medical research methodology = BMC Med Res Methodol BMC Medical Research Methodology = BMC Med. Res. Methodol. Bmc Medicine = Bmc Med Bmc Medicine = Bmc Med. BMC medicine = BMC Med BMC Medicine = BMC Med. Bmc Microbiology = Bmc Microbiol Bmc Microbiology = Bmc Microbiol. BMC microbiology = BMC Microbiol BMC Microbiology = BMC Microbiol. Bmc Molecular Biology = Bmc Mol Biol Bmc Molecular Biology = Bmc Mol. Biol. BMC molecular biology = BMC Mol Biol BMC Molecular Biology = BMC Mol. Biol. Bmc Musculoskeletal Disorders = Bmc Musculoskel Dis Bmc Musculoskeletal Disorders = Bmc Musculoskel. Dis. Bmc Musculoskeletal Disorders = Bmc Musculoskelet Di Bmc Musculoskeletal Disorders = Bmc Musculoskelet. Di. BMC musculoskeletal disorders = BMC Musculoskelet Disord Bmc Nephrology = Bmc Nephrol Bmc Nephrology = Bmc Nephrol. BMC nephrology = BMC Nephrol Bmc Neurology = Bmc Neurol Bmc Neurology = Bmc Neurol. BMC neurology = BMC Neurol BMC Neurology = BMC Neurol. Bmc Neuroscience = Bmc Neurosci Bmc Neuroscience = Bmc Neurosci. BMC neuroscience = BMC Neurosci BMC nuclear medicine = BMC Nucl Med BMC nursing = BMC Nurs Bmc Ophthalmology = Bmc Ophthalmol Bmc Ophthalmology = Bmc Ophthalmol. BMC ophthalmology = BMC Ophthalmol BMC Ophthalmology = BMC Ophthalmol. BMC oral health = BMC Oral Health BMC palliative care = BMC Palliat Care Bmc Pediatrics = Bmc Pediatr Bmc Pediatrics = Bmc Pediatr. BMC pediatrics = BMC Pediatr BMC Pediatrics = BMC Pediatr. BMC pharmacology = BMC Pharmacol BMC Pharmacology = BMC Pharmacol. BMC physiology = BMC Physiol BMC Physiology = BMC Physiol. Bmc Plant Biology = Bmc Plant Biol Bmc Plant Biology = Bmc Plant Biol. BMC plant biology = BMC Plant Biol BMC Plant Biology = BMC Plant Biol. BMC pregnancy and childbirth = BMC Pregnancy Childbirth Bmc Psychiatry = Bmc Psychiatry BMC psychiatry = BMC Psychiatry BMC Psychiatry = BMC Psychiatry Bmc Public Health = Bmc Public Health BMC public health = BMC Public Health BMC Public Health = BMC Public Health BMC pulmonary medicine = BMC Pulm Med BMC Pulmonary Medicine = BMC Pulm. Med. Bmc Structural Biology = Bmc Struct Biol Bmc Structural Biology = Bmc Struct. Biol. BMC structural biology = BMC Struct Biol BMC Structural Biology = BMC Struct. Biol. BMC surgery = BMC Surg BMC Surgery = BMC Surg. Bmc Systems Biology = Bmc Syst Biol Bmc Systems Biology = Bmc Syst. Biol. BMC systems biology = BMC Syst Biol BMC Systems Biology = BMC Syst. Biol. BMC urology = BMC Urol BMC Urology = BMC Urol. Bmc Veterinary Research = Bmc Vet Res Bmc Veterinary Research = Bmc Vet. Res. BMC veterinary research = BMC Vet Res BMC women's health = BMC Womens Health BMJ: British Medical Journal = BMJ BMJ (Clinical research ed.) = BMJ BMJ (Clinical Research Ed.)=BMJ;; Bmj Quality & Safety = Bmj Qual Saf Bmj Quality & Safety = Bmj Qual. Saf. BMQ; the Boston medical quarterly = BMQ BMQ: The Boston Medical Quarterly = BMQ. Bmr Journal of Australian Geology & Geophysics = Bmr J Aust Geol Geop Bmr Journal of Australian Geology & Geophysics = Bmr J. Aust. Geol. Geop. BMR Journal of Geology and Geophysics = BMR J. Aust. Geol. Geophys. Bn-bianco E Nero = Bn-bianco E Nero BNI quarterly = BNI Q BNWL Reports = BNWL Rep. BNWL [reports]. U.S. Atomic Energy Commission = BNWL Rep Board Members and Management Consultants = Res Manag Consult Board Members and Management Consultants = Res. Manag. Consult. Board of International Research in Design = Board Int Res Des Board of International Research in Design = Board Int. Res. Des. Boardroom reports = Boardr Rep Boar Taint in Entire Male Pigs = Eaap Public Boar Taint in Entire Male Pigs = Eaap. Public. Boccaccio and The Book: Production and Reading in Italy 1340-1520 = Ital Perspect Boccaccio and The Book: Production and Reading in Italy 1340-1520 = Ital. Perspect. Bochum Publications in Evolutionary Cultural Semiotics, New Series = Boch Publ Evolu Cult Bochum Publications in Evolutionary Cultural Semiotics, New Series = Boch. Publ. Evolu. Cult. Bodega Marine Laboratory Marine Science Series = Bod Mar Lab Bodega Marine Laboratory Marine Science Series = Bod. Mar. Lab. Bodenkultur = Bodenkultur Bodenkultur, Die = Bodenkultur Bodies in Treatment: The Unspoken Dimension = Relat Perspect Book Bodies in Treatment: The Unspoken Dimension = Relat. Perspect. Book. Bodies of Belief: Baptist Community in Early America = Early Am Stud Ser Bodies of Belief: Baptist Community in Early America = Early Am. Stud. Ser. Body and Embodiment in Netherlandish Art = Neth Yearb Hist Art Body and Embodiment in Netherlandish Art = Neth. Yearb. Hist. Art Body and Mind: Sport in Europe From The Roman Empire to The Renaissance = Sport Glob Soc Body and Mind: Sport in Europe From The Roman Empire to The Renaissance = Sport Glob. Soc. Body and Practice in Kant = Stud Ger Idealism Body and Practice in Kant = Stud. Ger. Idealism. Body and The Book: Writings On Poetry and Sexuality = Dqr Stud Lit Body and The Book: Writings On Poetry and Sexuality = Dqr. Stud. Lit. Body and The Text = St Compar L Body and The Text = St. Compar. L. Body As Object and Instrument of Knowledge = St Hist Phil Sci Ser Body As Object and Instrument of Knowledge = St. Hist. Phil. Sci. Ser. Body Composition and Aging = Interd Top Gerontol Body Composition and Aging = Interd. Top. Gerontol. Body image = Body Image Body Image = Body Image Body in Bioethics = Biomed Law Ethics Li Body in Bioethics = Biomed. Law. Ethics. Li. Body in Mind: A New Look At The Somatosensory Cortices = Neurol Lab Clin Res Body in Mind: A New Look At The Somatosensory Cortices = Neurol. Lab. Clin. Res. Body, Sexuality, and Gender: Versions and Subversions in African Literatures 1 = Matatu Body, Sexuality, and Gender: Versions and Subversions in African Literatures 1 = Matatu. Body & Society = Body Soc Body & Society = Body Soc. Body Temperature Regulation = Physiol Lab Clin Res Body Temperature Regulation = Physiol. Lab. Clin. Res. [Boei eisei] Japanese Defense Forces medical journal = Boei Eisei Boğazköy-Hattuša. Ergebnisse der Ausgrabungen = Bogazkoey-Hattusa Bogens verden = Bogens Verden Bohemia (Munich, Germany) = Bohemia Jahrb Coll Carolinum Boiler Shell Weld Repair = Imeche Sem Boiler Shell Weld Repair = Imeche. Sem. Bois Et Forets Des Tropiques = Bois For Trop Bois Et Forets Des Tropiques = Bois For. Trop. Bois et Forêts des Tropiques = Bois For. Trop. Bold : quarterly journal of the International Institute on Aging (United Nations - Malta) = Bold Boleettino d'informazioni della Consociazione nazionale infermiere professionali e assistenti sanitarie visitatrici = Boll Inf Consoc Naz (Rome) Bolema-mathematics Education Bulletin-boletim De Educacao Matematica = Bolema-math Educ Bul Bolema-mathematics Education Bulletin-boletim De Educacao Matematica = Bolema-math. Educ. Bul. Boletim clinico dos Hospitais Civis de Lisboa = Bol Clin Hosp Civis Lisb Boletim da Academia Nacional de Medicina = Bol Acad Nac Med Boletim da Divisao Nacional de Dermatologia Sanitaria = Bol Div Nac Dermatol Sanit Boletim da Divisao Nacional de Dermatologia Sanitaria = Bol. Div. Nac. Dermatol. Sanit. Boletim da Equipe de Odontologia Sanitaria = Bol. Equipe Odontol. Sanit. Boletim Da Equipe De Odontologia Sanitaria = Bol Equipe Odontol Sanit Boletim da Faculdade de Farmacia e Odontologia de Ribeirao Preto = Bol Fac Farm Odontol Ribeirao Preto Boletim da Faculdade de Farmacia e Odontologia de Ribeirao Preto = Bol. Fac. Farm. Odontol. Ribeirao Preto Boletim da Sociedade Brasileira de Matemática = Bol. Soc. Brasil. Mat. (N.S.) Boletim Da Sociedade Brasileira De Matematica = Bol Soc Bras Mat Boletim Da Sociedade Brasileira De Matematica = Bol. Soc. Bras. Mat. Boletim da Sociedade de Geografia de Lisboa = Bol Soc Geogr Lisb Boletim da Sociedade Portuguesa de Matemática = Bol. Soc. Port. Mat. Boletim De Ciencias Geodesicas = B Cienc Geod Boletim De Ciencias Geodesicas = B. Cienc. Geod. Boletim De Ciencias Geodesicas = Bol Cienc Geod Boletim De Ciencias Geodesicas = Bol. Cienc. Geod. Boletim de Dentistica Operatoria = Bol. Dent. Oper. Boletim De Dentistica Operatoria = Bol Dent Oper Boletim de geografia teoretica = Bol Geogr Teor Boletim de informacao socio-economica / Gabinete de Estudos Economicos, Ministerio do Plano e Cooperacao Internacional = Bol Inf Socio Econ Boletim de materiais dentarios = Bol Mat Dent Boletim de Materias Dentarios = Bol. Mat. Dent. Boletim demografico / Secretaria de Planejamento da Presidencia da Republica, Fundacao Instituto Brasileiro de Geografia e Estatistica, Diretoria de Populacao e Social, Superintendencia de Estudos de Populacao e Sociais = Bol Demogr Boletim do C.B.R. / Ministerio da Educacao e Cultura, Universidade Federal de Juiz de Fora, Centro de Biologia da Reproducao = Bol Cent Biol Reprod Boletim do Centro de Estudos, Hospital dos Servidores do Estado = Bol Cent Estud Hosp Servidores Estado Boletim Do Centro De Pesquisa De Processamento De Alimentos = B Cent Pesqui Proc A Boletim Do Centro De Pesquisa De Processamento De Alimentos = B. Cent. Pesqui. Proc. A. Boletim Do Centro De Pesquisa De Processamento De Alimentos = B Ctr Pesqui Proc Al Boletim Do Centro De Pesquisa De Processamento De Alimentos = B. Ctr. Pesqui. Proc. Al. Boletim do Instituto de Angola = Bol Inst Angola Boletim Do Instituto De Pesca = Bol Inst Pesca Boletim Do Instituto De Pesca = Bol. Inst. Pesca Boletim do Instituto de Puericultura = Bol Inst Pueric Boletim do Instituto de Puericultura e Pediatria Martagao Gesteira = Bol Inst Pueric Martagao Gesteira Boletim do Instituto de Puericultura e Pediatria Martagao Gesteira = Bol. Inst. Pueric. Martagao Gesteira Boletim do Sanatorio Sao Lucas = Bol. Sanat. Sao Lucas Boletim do Servico de Odontologia Sanitaria da Secretaria da Saude do Rio Grande do Sul = Bol. Serv. Odontol. Sanit. (Porto Alegre) Boletim Do Servico De Odontologia Sanitaria Da Secretaria Da Saude Do Rio Grande Do Sul = Bol Serv Odontol Sanit (Porto Alegre) Boletim epidemiologico. AIDS / Ministerio da Saude = Bol Epidemiol AIDS Boletim - Faculdade de Odontologia de Piracicaba = Bol Fac Odontol Piracicaba Boletim, Faculdade de Odontologia de Piracicaba = Bol. Fac. Odontol. Piracicaba Boletim geografico = Bol Geogr Boletim informativo do Centro de Documentacao e Pesquisa / CEDOPE UNISINOS = Bol Inf Cent Doc Pesqui Boletim. Sao Paulo, Brazil (City) Sanatorio Sao Lucas = Bol Sanat Sao Lucas Boletim sobre populacao, emprego e renda no nordeste / Superintendencia do Desenvolvimento do Nordeste, Fundacao Joaquim Nabuco = Bol Popul Emprego Renda Nordeste Boletim Tecnico da Producao de Petroleo = Bol. Tec. Prod. Pet. Boletin. Academia Peruana de Cirugia = Bol Acad Peru Cir Boletín. Asociación española de amigos de la arqueología = BAsEspA Boletín. Asociación española de amigos de la arqueología = BEspA Boletin - Asociacion Medica de Puerto Rico=Bol Asoc Med P R;; Boletin, Asociacion Medica de Puerto Rico = Bol. Asoc. Med. P. R. Boletin. Asociacion Medica Nacional de la Republica Panama = Bol Asoc Medica Nac Repub Panama Boletin. Asociacion Venezolana de Enfermeras Profesionales = Bol Asoc Venez Enferm Prof Boletín auriense = BAur Boletin bibliografico de la Secretaria de Hacienda y Credito Publico = Bol Bibliogr Secr Hacienda Credito Publico Boletin. Buenos Aires. Universidad Nacional. Instituto de Clinica Quirurgica = Bol B Aires Univ Nac Inst Clin Quir Boletin chileno de parasitologia = Bol Chil Parasitol Boletin Chileno de Parasitologia=Bol Chil Parasitol;; Boletin Chileno de Parasitologia = Bol. Chil. Parasitol. Boletín chileno de parasitología = Bol. chil. parasitol. Boletin - Circulo Argentino de Odontologia = Bol Circ Argent Odontol Boletin - Colegio de Profesionales de la Enfermeria de Puerto Rico = Bol Col Prof Enferm P R Boletin, Colegio de Profesionales de la Enfermeria de Puerto Rico = Bol. Col. Prof. Enferm. P. R. Boletin (Consejo Nacional de Poblacion (Peru)) = Bol Cons Nac Poblac Boletin cultural e informativo - Consejo General de Colegios Medicos de Espana = Bol Cult Inf Cons Gen Col Med Esp Boletin cultural y bibliografico = Bol Cult Bibliogr Boletin de analisis demografico = Bol Anal Demogr Boletin de antropologia americana = Bol Antropol Am Boletin de antropologia = Bol Antropol Boletin de estudios latinoamericanos y del Caribe = Bol Estud Latinoam Caribe Boletin de estudios medicos y biologicos = Bol Estud Med Biol Boletin de Estudios Medicos y Biologicos = Bol. Estud. Med. Biol. Boletin de Estudios Medicos Y Biologicos=Bol Estud Med Biol;; Boletin de historia y antiguedades = Bol Hist Antig Boletin de indicadores de coyuntura / Republica de Venezuela, Presidencia de la Republica, Oficina Central de Estadistica e Informatica = Bol Indic Coyunt Boletin de informacion dental = Bol Inf Dent (Madr) Boletin de Informacion Dental = Bol. Inf. Dent. (Madr.) Boletin de informaciones parasitarias chilenas = Bol Inf Parasit Chil Boletin de informacion - Ilustre Colegio Oficial de Odontologos y Estomatologos 2. a Region (Cataluna) = Bol Inf Col Odontol Estomatol (Barc) Boletin de Informacion, Ilustre Colegio Oficial de Odontologos y Estomatologos, 2a Region, Cataluna = Bol. Inf. Col. Odontol. Estomatol. (Barc.) Boletin de la AAON = Bol. AAON Boletin de la Academia Nacional de la Historia. Academia Nacional de la Historia (Argentina) = Bol Acad Nac Hist (Argent) Boletin de la Academia Nacional de la Historia. Academia Nacional de la Historia (Venezuela) = Bol Acad Nac Hist (Caracas) Bolet'in de la Agrupacion Odontologica de la Zona Central de la Capital Federal. = Bol Agrup Odontol Zona Cent Cap Fed B Aires Boletin de la Asociacion Argentina de Odontologia para Ninos = Bol Asoc Argent Odontol Ninos Boletin de la Asociacion de Demografia Historica = Bol Asoc Demogr Hist Boletin De La Asociacion De Geografos Espanoles = B Asoc Geogr Esp Boletin De La Asociacion De Geografos Espanoles = B. Asoc. Geogr. Esp. Boletín de la Asociación española de orientalistas = BEspOr Boletin de la Asociacion Medica de Puerto Rico = Bol Asoc Med P R Boletin de la Asociacion Venezolana de Enfermeras Profesionales = Bol. Asoc. Venez. Enferm. Prof. Boletin de la Biblioteca de Menendez Pelayo / Sociedad de Menendez Pelayo = Bol Bibl Menendez Pelayo Boletín de la Comisión provincial de monumentos históricos y artísticos de Lugo = BLugo Boletin de la Direccion General de Odontologia = Bol. Dir. Gen. Odontol. (Santa Fe) Boletín de la Institución »Sancho el Sabio« = BVitoria Boletin de la Institucion Sancho el Sabio. Institucion "Sancho el Sabio" (Victoria, Spain) = Bol Inst Sancho Sabio Boletin de la Liga Contra el Cancer. Liga Contra el Cancer (Cuba) = Bol Liga Contra Cancer Havana Boletin De La Oficina Sanitaria Panamericana = B Ofic Sanit Panam Boletin De La Oficina Sanitaria Panamericana = B. Ofic. Sanit. Panam. Boletin de la Oficina Sanitaria Panamericana = Bol. Oficina Sanit. Panam. Boletin de la Oficina Sanitaria Panamericana. English ed = Bol Of Sanit Panam (Engl) Boletin de la Oficina Sanitaria Panamericana. Pan American Sanitary Bureau = Bol Oficina Sanit Panam Boletín de la Real academia de la historia = BAcRHist Boletin De La Real Academia De La Historia = Bol Real Acad Hist Boletin De La Real Academia De La Historia = Bol. Real Acad. Hist. Boletin De La Real Academia Espanola = B Real Acad Espan Boletin De La Real Academia Espanola = B. Real Acad. Espan. Boletin de la Real Sociedad Espanola de Historia Natural. Seccion biologica : organo del Instituto de Ciencias Naturales Jose de Acosta = Bol R Soc Esp Hist Nat Secc Biol Boletin De La Sociedad Argentina De Botanica = B Soc Argent Bot Boletin De La Sociedad Argentina De Botanica = B. Soc. Argent. Bot. Boletin De La Sociedad Botanica De Mexico = Bol Soc Bot Mex Boletin De La Sociedad Botanica De Mexico = Bol. Soc. Bot. Mex. Boletin De La Sociedad Botanica De Mexico = B Soc Bot Mex Boletin De La Sociedad Botanica De Mexico = B. Soc. Bot. Mex. Boletin de la Sociedad Castellonense de Cultura. Sociedad Castellonense de Cultura = Bol Soc Castell Cult Boletin de la Sociedad Catalana de Pediatria = Bol Soc Catalana Pediatr Boletin de la Sociedad Chilena de Quimica = Bol. Soc. Chil. Quim. Boletin De La Sociedad Chilena De Quimica = Bol Soc Chil Quim Boletin De La Sociedad Chilena De Quimica = Bol. Soc. Chil. Quim. Boletin de la Sociedad Dental de Guatemala = Bol Soc Dent Guatem Boletin de la Sociedad Dental de Guatemala = Bol. Soc. Dent. Guatem. Boletin De La Sociedad Espanola De Ceramica Y Vidrio = Bol Soc Esp Ceram V Boletin De La Sociedad Espanola De Ceramica Y Vidrio = Bol. Soc. Esp. Ceram. V. Boletin de la Sociedad Espanola de Ceramica y Vidrio = Bol. Soc. Esp. Ceram. Vidrio Boletin de la Sociedad Espanola de Historia de la Farmacia = Bol Soc Esp Hist Farm Boletin de la Sociedad Espanola de Historia de la Medicina = Bol Soc Esp Hist Med Boletin de la Sociedad Estomatologica Argentina = Bol. Soc. Estomatol. Argent. Boletin De La Sociedad Estomatologica Argentina = Bol Soc Estomatol Argent Boletin De La Sociedad Matematica Mexicana = Bol Soc Mat Mex Boletin De La Sociedad Matematica Mexicana = Bol. Soc. Mat. Mex. Boletin de la Sociedad Mexicana de Historia y Filosofia de la Medicina = Bol Soc Mex Hist Filos Med Boletin de la Sociedad Quimica del Peru = Bol Soc Quim Peru Boletin de la Sociedad Quimica del Peru = Bol. Soc. Quim. Peru Boletin de la Sociedad Valenciana de Pediatria = Bol Soc Valencia Pediatr Boletin de la Universidad de Granada. Universidad de Granada = Bol Univ Granada Boletin del Centro de Estudios del Siglo XVIII. Universidad de Oviedo. Centro de Estudios del Siglo XVIII = Bol Cent Estud Siglo XVIII Boletin del Circulo Argentina de Odontologia = Bol. Circ. Argent. Odontol. Boletin del Hospital Militar. Cuba. Ejercito. Hospital Militar Dr. Carlos J. Finlay = Bol Hosp Mil Cuba Ejercito Hosp Mil Dr Carlos J Finlay Boletin del Hospital San Juan de Dios = Bol Hosp San Juan Dios Boletin del Instituto de Estudios Asturianos. Instituto de Estudios Asturianos (Oviedo, Spain) = Bol Inst Estud Asturianos Boletín del Instituto de estudios giennenses = BJaen Boletin del Instituto de Estudios Medicos y Biologicos, Universidad Nacional Autonoma de Mexico = Bol Inst Estud Med Biol Univ Nac Auton Mex Boletin del Instituto de Estudios Medicos y Biologicos, Universidad Nacional Autonoma de Mexico = Bol. Inst. Estud. Med. Biol. Univ. Nac. Auton. Mex. Boletin del Instituto de Historia Argentina y Americana "Doctor Emilio Ravignani" = Bol Inst Hist Argent Am Dr Emilio Ravignani Boletin Del Instituto De Investigaciones Bibliograficas = Bol Inst Invest Bibliogr (Mexico) Boletin Del Instituto De Quimica De La Universidad Nacional Autonoma De Mexico = Bol Inst Quim Univ N Boletin Del Instituto De Quimica De La Universidad Nacional Autonoma De Mexico = Bol. Inst. Quim. Univ. N. Boletin del Instituto Interamericano del Nino = Bol Inst Interam Nino Boletin del Musea Social Argentino=Bol. Mus. Soc. Argent. Boletín del Museo arqueológico nacional = BMAN Boletín del Museo arqueológico nacional, Madrid = BMusMadr Boletín del Museo de Cádiz = BMusCadiz Boletin Del Museo Del Prado = B Museo Prado Boletin Del Museo Del Prado = B. Museo Prado Boletín del Museo provincial de bellas artes = BMusPBelArt Boletin del PROLAP = Bol PROLAP Boletín del Seminario de Estudios de Arte y Arqueología = BSEAA Boletín del Seminario de estudios de arte y arqueología, Universidad de Valladolid = BSAA Boletín del Seminario de estudios de arte y arqueología, Universidad de Valladolid = BVallad Boletin del SIDEMA : publicacion periodico del Centro de Estudios de Poblacion, CENEP = Bol SIDEMA Boletin De Malariologia Y Salud Ambiental = B Malariol Salud Amb Boletin De Malariologia Y Salud Ambiental = B. Malariol. Salud Amb. Boletin De Malariologia Y Salud Ambiental = Bol Malar Salud Ambi Boletin De Malariologia Y Salud Ambiental = Bol. Malar. Salud Ambi. Boletin dental uruguayo = Bol Dent Urug Boletin Dental Uruguayo = Bol. Dent. Urug. Boletin de odontologia = Bol Odontol (Bogota) Boletin de Odontologia = Bol. Odontol. (Bogota) Boletin de poblacion = Bol Poblac Boletin de protesis = Bol Protes Boletin de Protesis = Bol. Protes. Boletin de psicologia / Republica de Cuba, Ministerio de Salud Publica, Hospital Psiquiatrico de la Habana = Bol Psicol Boletin de sanidad militar = Bol Sanid Mil Boletin editorial / El Colegio de Mexico, Departamento de Publicaciones = Bol Ed Col Mex Boletin epidemiologico de Chile / Republica de Chile, Ministerio de Salud = Bol Epidemiol Chile Boletines de la Sociedad de Cirugia de Rosario = Bol Soc Cir Rosario Boletines y trabajos / Academia Argentina de Cirugia. Academia Argentina de Cirugia = Bol Trab Acad Argent Cir Boletines y trabajos - Sociedad Argentina de Cirujanos = Bol Tr Soc Argent Cir Boletines y trabajos - Sociedad de Cirugia de Buenos Aires = Bol Trab Soc Cir B Aires Boletines y Trabajos, Sociedad de Cirugia de Buenos Aires = Bol. Trab. Soc. Cir. B. Aires Boletin Geologico y Minero = Bol. Geol. Min. Boletin (Instituto de Estudios de Poblacion y Desarrollo (Dominican Republic)) = Boletin Boletin Latinoamericano Y Del Caribe De Plantas Medicinales Y Aromaticas = B Latinoam Caribe Pl Boletin Latinoamericano Y Del Caribe De Plantas Medicinales Y Aromaticas = B. Latinoam. Caribe Pl. Boletin Latinoamericano Y Del Caribe De Plantas Medicinales Y Aromaticas = Bol Latinoam Caribe Boletin Latinoamericano Y Del Caribe De Plantas Medicinales Y Aromaticas = Bol. Latinoam. Caribe Boletin Latinoamericano y del Caribe de Plantas Medicinales y Aromaticas = Bol. Latinoam. Caribe Plant. Med. Aromat. Boletin medico del Hospital Infantil de Mexico = Bol Med Hosp Infant Mex Boletin Medico del Hospital Infantil de Mexico = Bol. Med. Hosp. Infant. Mex. Boletin mensual de estadisticas (Colombia. Departamento Administrativo Nacional de Estadisticas) = Bol Mens Estad DANE Boletin mexicano de derecho comparado / Instituto de Investigaciones Juridicas, UNAM = Bol Mex Derecho Comp Boletin. Mexico (City) Hospital Oftalmologico de Nuestra Senora de la Luz = Bol Hosp Oftalmol Boletin odontologico = Bol Odontol (B Aires) Boletin Odontologico = Bol. Odontol. (B. Aires) Boletin odontologico mexicano = Bol Odontol Mex Boletin Odontologico Mexicano = Bol. Odontol. Mex. Boletin oficial del estado: Gaceta de Madrid. Spain = Bol Of Estado Gac Madr Spain Boletin. Santa Fe, Argentine Republic (Province) Direccion General de Odontologia = Bol Dir Gen Odontol (Santa Fe) Boletin. Sociedad Chilena de Obstetricia y Ginecologia = Bol Soc Chil Obstet Ginecol Boletin. Sociedad Cubana de Dermatologia y Sifilografia = Bol Soc Cubana Dermatol Sifilogr Boletin. Sociedad de Cirugia del Uruguay = Bol Soc Cir Urug Boletin (Sociedad Espanola de Hidrologia Medica) = Bol Soc Esp Hidrol Med Boletin socioeconomico (Cali, Colombia : 1985) = Bol Socioecon Boletn Asociacin Chilena de Proteccin de la Familia = Bol Asoc Chil Prot Fam Bolletino del Centro Inernazionale per lo Studio dei Papyri Ercolanesi (Cronache Ercolanesi) = BCPE Bolletino della Società Italiana della Scienza del Suolo = Boll. Soc. Italiana Sci. Suolo Bolletino della Società ticinese di Scienze naturali = Boll. Soc. ticin. Sci. nat. Bollettino annuale. Musei ferraresi = BAnnMusFerr Bollettino. Centro di studi filologici e linguistici siciliani = BFilLingSic Bollettino chimico farmaceutico = Boll Chim Farm Bollettino Chimico Farmaceutico=Boll Chim Farm;; Bollettino Chimico Farmaceutico = Boll. Chim. Farm. Bollettino d'arte = BdA Bollettino d'arte del Ministero per i beni culturali e ambientali = BA Bollettino dei Chimici Igienisti = Boll. Chim. Ig. Bollettino dei classici = BCl Bollettino dei classici = BollClass Bollettino dei monumenti, musei e gallerie pontificie = BMMP Bollettino dei Musei comunali di Roma = BMusRom Bollettino del Centro di studi per la storia dell'architettura = BArchit Bollettino del Centro internazionale A. Beltrame di storia dello spazio e del tempo = Boll Cent Int Beltrame Stor Spazio Tempo Bollettino del Circolo numismatico napoletano = BCircNumNap Bollettino della Badia Greca di Grottaferrata = BBGG Bollettino Della Lega Italiana Contro Lepilessia = Boll Leg It Bollettino Della Lega Italiana Contro Lepilessia = Boll. Leg. It. Bollettino dell'Archivio per la storia del movimento sociale cattolico in Italia = Boll Arch Stor Mov Soc Cattol Ital Bollettino Della Societa Geologica Italiana = Boll Soc Geol Ital Bollettino Della Societa Geologica Italiana = Boll. Soc. Geol. Ital. Bollettino Della Societa Geologica Italiana = B Soc Geol Ital Bollettino Della Societa Geologica Italiana = B. Soc. Geol. Ital. Bollettino della Societa italiana di biologia sperimentale = Boll Soc Ital Biol Sper Bollettino Della Societa Italiana Di Biologia Sperimentale = B Soc Ital Biol Sper Bollettino Della Societa Italiana Di Biologia Sperimentale = B. Soc. Ital. Biol. Sper. Bollettino della Societa italiana di cardiologia = Boll Soc Ital Cardiol Bollettino della Societa Italiana di Cardiologia = Boll. Soc. Ital. Cardiol. Bollettino della Societa medico chirurgica bresciana = Boll Soc Med Chir Bresciana Bollettino Della Societa Paleontologica Italiana = Boll Soc Paleontol I Bollettino Della Societa Paleontologica Italiana = Boll. Soc. Paleontol. I. Bollettino Della Societa Paleontologica Italiana = B Soc Paleontol Ital Bollettino Della Societa Paleontologica Italiana = B. Soc. Paleontol. Ital. Bollettino della Società piemontese di archeologia e belle arti = BTorino Bollettino dell'Associazione Iasos di Caria = BIasos Bollettino della Unione Matematica Italiana = Boll. Unione Mat. Ital. Sez. B Artic. Ric. Mat. (8) Bollettino Della Unione Matematica Italiana = B Unione Mat Ital Bollettino Della Unione Matematica Italiana = B. Unione Mat. Ital. Bollettino della Unione storia ed arte = BStorArt Bollettino delle malattie dell'orecchio, della gola, del naso = Boll Mal Orecch Gola Naso Bollettino delle Malattie dell Orecchio, della Gola, del Naso = Boll. Mal. Orecch. Gola. Naso Bollettino dell'Istituto centrale del restauro = BRest Bollettino dell'Istituto di filologia greca, Università di Padova = BFilGrPadova Bollettino dell'Istituto di storia e di arte del Lazio meridionale = BLazioMerid Bollettino Dell Istituto Sieroterapico Milanese = B I Sieroter Milan Bollettino Dell Istituto Sieroterapico Milanese = B. I. Sieroter. Milan. Bollettino dell'Istituto sieroterapico milanese = Boll Ist Sieroter Milan Bollettino dell Istituto Sieroterapico Milanese = Boll. Ist. Sieroter. Milan. Bollettino dell'Istituto storico artistico orvietano = BIstOrvieto Bollettino dell'Ospedale di Varese = Boll Osp Varese Bollettino del Museo civico di Padova = BMusPadova Bollettino di archeologia = BA Bollettino di archeologia subacquea = BASub Bollettino di demografia storica = Boll Demogr Stor Bollettino Di Geofisica Teorica Ed Applicata = B Geofis Teor Appl Bollettino Di Geofisica Teorica Ed Applicata = B. Geofis. Teor. Appl. Bollettino di informazioni. Associazione archeologica Centumcellae = BInfCentumcellae Bollettino di informazioni del Centro di studi e documentazione sull'area elima = BInfCESDAE Bollettino d'Informazioni della Consociazione Nazionale Infermiere Professionali e Assistenti Sanitaire Visitatrici = Boll. Inf. Consoc. Naz. (Rome) Bollettino di numismatica = BNum Bollettino di numismatica = BNumRoma Bollettino Di Psicologia Applicata = B Psicol Appl Bollettino Di Psicologia Applicata = B. Psicol. Appl. Bollettino di Storia delle Scienze Matematiche = Boll. Storia Sci. Mat. Bollettino Di Storia Delle Scienze Matematiche = Boll Stor Sci Mat Bollettino Di Storia Delle Scienze Matematiche = Boll. Stor. Sci. Mat. Bollettino Di Storia Delle Scienze Matematiche = B Stor Sci Mat Bollettino Di Storia Delle Scienze Matematiche = B. Stor. Sci. Mat. Bollettino di studi e ricerche. Biblioteca comunale di Bolsena = BBolsena Bollettino di studi latini = BStLat Bollettino di studi latini: periodico quadrimestrale d'informazione bibliografica = BStudLat Bollettino Di Zoologia = B Zool Bollettino Di Zoologia = B. Zool. Bollettino d'oculistica = Boll Ocul Bollettino d'Oculistica = Boll. Ocul. Bollettino e memorie della Societa piemontese di chirurgia = Boll Mem Soc Piemont Chir Bollettino e memorie della Societa tosco-umbra di chirurgia = Boll Mem Soc Tosco Umbra Chir Bollettino flegreo. Rivista di storia, arte e scienze = BFlegr Bollettino Metallografico = Boll. Metallogr. Bollettino metallografico. Metallurgical bulletin = Boll Metallogr Bollettino. Monumenti, musei e gallerie pontificie = BMonMusPont Bollettino - Societa Italiana Biologia Sperimentale=Boll Soc Ital Biol Sper;; Bollettino, Societa Italiana Biologia Sperimentale = Boll. Soc. Ital. Biol. Sper. Bollettino - Societa Italiana di Biologia Sperimentale = Boll.-Soc. Ital. Biol. Sper. Bollettino. Societa italiana di medicina e igiene tropicale. Sezione Eritrea = Bull Soc Ital Med Ig Trop Sez Eritrea Bollettino - Societa medico chirurgica Cremona = Boll Soc Med Chir Cremona Bollettino, Societa Medico Chirurgica Cremona = Boll. Soc. Med. Chir. Cremona Bollettino - Societa medico-chirurgica di Pisa = Boll Soc Med Chir Pisa Bollettino storico-bibliografico subalpino = Boll Stor Bibliogr Subalp Bollettino storico della Basilicata = BBasil Bollettino storico della città di Foligno = BFoligno Bollettino - Unione Italiana Chimici Igienisti = Boll. Unione Ital Chim. Ig. Bologna incontri = Bologna Incontri Bologna medica = Bologna Medica Bolskan. Revista de arqueología del Instituto de estudios Altoaragoneses, revista de arqueología Oscense = Bolskan Boltzmann's Legacy = Esi Lect Math Phys Boltzmann's Legacy = Esi. Lect. Math. Phys. Bolyai Society Mathematical Studies = Bolyai Math Stud Bolyai Society Mathematical Studies = Bolyai Math. Stud. Bolyai Society Mathematical Studies = Bolyai Soc. Math. Stud. Bolyai Society Mathematical Studies = Bolyai Soc Math Stud Bolyai Society Mathematical Studies = Bolyai Soc. Math. Stud. Bombs Away! Representing The Air War Over Europe and Japan = Amst Beitr Neuer Ger Bombs Away! Representing The Air War Over Europe and Japan = Amst. Beitr. Neuer. Ger. Bonded Cement-based Material Overlays for The Repair, The Lining Or The Strengthening of Slabs Or Pavements = Rilem State Art Rep Bonded Cement-based Material Overlays for The Repair, The Lining Or The Strengthening of Slabs Or Pavements = Rilem. State. Art. Rep. Bonding Energetics in Organometallic Compounds = Acs Sym Ser Bonding Energetics in Organometallic Compounds = Acs. Sym. Ser. Bond Market Development in Asia = Oecd Proc Bond Market Development in Asia = Oecd. Proc. Bonds of Blood: Gender, Lifecycle, and Sacrifice in Aztec Culture = Early Mod Hist-soc C Bonds of Blood: Gender, Lifecycle, and Sacrifice in Aztec Culture = Early. Mod. Hist-soc. C. Bone and Brain Metastases: Advances in Research and Treatment = Health Hum Dev Bone and Brain Metastases: Advances in Research and Treatment = Health. Hum. Dev. Bone and Development = Top Bone Biol Bone and Development = Top. Bone Biol. Bone and mineral = Bone Miner Bone and Mineral = Bone Miner Bone and Mineral = Bone Miner. Bone and Osteoarthritis = Top Bone Biol Bone and Osteoarthritis = Top. Bone Biol. Bone=Bone;; Bone = Bone Bone Circulation and Vascularization in Normal and Pathological Conditions = Nato Adv Sci Inst Se Bone Circulation and Vascularization in Normal and Pathological Conditions = Nato. Adv. Sci. Inst. Se. Bone Densitometry in Clinical Practice = Curr Clin Pract Bone Densitometry in Clinical Practice = Curr. Clin. Pract. Bone Densitometry in Growing Patients: Guidelines for Clinical Practice = Curr Clin Pract Bone Densitometry in Growing Patients: Guidelines for Clinical Practice = Curr. Clin. Pract. Bone Formation and Repair = Int Congr Ser Bone Formation and Repair = Int. Congr. Ser. BoneKEy osteovision = Bonekey Osteovision Bone Marrow and Peripheral Stem Cell Transplantation = Tumortherap Rehabil Bone Marrow and Peripheral Stem Cell Transplantation = Tumortherap. Rehabil. Bone Marrow Purging and Processing = Prog Clin Biol Res Bone Marrow Purging and Processing = Prog. Clin. Biol. Res. Bone Marrow Transplantation = Bone Marrow Transpl Bone Marrow Transplantation = Bone Marrow Transpl. Bone marrow transplantation = Bone Marrow Transplant Bone Marrow Transplantation=Bone Marrow Transplant;; Bone Marrow Transplantation = Bone Marrow Transplant. Bone Marrow Transplantation: Foundations for The 21st Century = Ann Ny Acad Sci Bone Marrow Transplantation: Foundations for The 21st Century = Ann. Ny. Acad. Sci. Bone Metastases: A Translational and Clinical Approach = Cancer Metast Biol T Bone Metastases: A Translational and Clinical Approach = Cancer. Metast. Biol. T. Bone Regeneration: Growth Factors, Augmentation Procedures and Tissue Engineering Applications = Hum Anat Physiol Bone Regeneration: Growth Factors, Augmentation Procedures and Tissue Engineering Applications = Hum. Anat. Physiol. Bone Regulatory Factors = Nato Adv Sci I A-lif Bone Regulatory Factors = Nato. Adv. Sci. I. A-lif. Bone Repair Biomaterials = Woodhead Publ Mater Bone Repair Biomaterials = Woodhead. Publ. Mater. Bone Research in Biomechanics = St Heal T Bone Research in Biomechanics = St. Heal. T. Bonner Geschichtsblatter / Im Auftrage des Vereins Alt-Bonn herausgegeben von Stadtarchivar = Bonn Geschichtsbl Bonner Hefte zur Vorgeschichte = BonnHVg Bonner Jahrbücher des Rheinischen Landesmuseums in Bonn = BJb Bonner Jahrbücher des Rheinischen Landesmuseums in Bonn und des Vereins von Altertumsfreunden im Rheinlande = BJ Bonner Mathematische Schriften = Bonner Math. Schriften Bonner Zoologische Beiträge = Bonn. Zool. Beitr. Bonner Zoologische Monographien = Bonn Zool Monogr Bonner Zoologische Monographien = Bonn. Zool. Monogr. Bonobos: Behavior, Ecology, and Conservation = Dev Primatol Bonobos: Behavior, Ecology, and Conservation = Dev. Primatol. Bonobos: Behavior, Ecology, and Conservation = Dev Primatol-prog Pr Bonobos: Behavior, Ecology, and Conservation = Dev. Primatol-prog. Pr. Bonsai Project Symposium: Breakthroughs in Nanoparticles for Bio-imaging = Aip Conf Proc Bonsai Project Symposium: Breakthroughs in Nanoparticles for Bio-imaging = Aip. Conf. Proc. Book Alone Is Not Enough: Enriching Printed Learning Material With Digital Mobile Technology = Vtt Res Notes Book Alone Is Not Enough: Enriching Printed Learning Material With Digital Mobile Technology = Vtt. Res. Notes. Book Collector = Book Collect Book Collector = Book Collect. Book Forum = Book Forum Bookish Histories: Books, Literature, and Commercial Modernity, 1700-1900 = Palgrave Stud Enligh Bookish Histories: Books, Literature, and Commercial Modernity, 1700-1900 = Palgrave. Stud. Enligh. Book of Ben Sira in Modern Research = Beih Z Alttest Wiss Book of Ben Sira in Modern Research = Beih. Z. Alttest. Wiss. Book of Daniel : in The Light of New Findings = Bib Eph The Book of Daniel : in The Light of New Findings = Bib. Eph. The Book of Ezekiel: Theological and Anthropological Perspectives = Sbl Symp Ser Book of Ezekiel: Theological and Anthropological Perspectives = Sbl. Symp. Ser. Book of Isaiah = Bib Eph The Book of Isaiah = Bib. Eph. The. Book of Mormon: The Foundation of Our Faith = Sperry Symp Ser Book of Mormon: The Foundation of Our Faith = Sperry. Symp. Ser. Book of Nature in Antiquity and The Middle Ages = Gr Stud Cult Book of Nature in Antiquity and The Middle Ages = Gr. Stud. Cult. Book of Nature in Early Modern and Modern History = Gr Stud Cult Book of Nature in Early Modern and Modern History = Gr. Stud. Cult. Book of The Knight of The Tower: Manners for Young Medieval Women = Stud Arthur Court Cu Book of The Knight of The Tower: Manners for Young Medieval Women = Stud. Arthur. Court. Cu. Book of Tobit: Text, Tradition, Theology = Supp J Stud Judaism Book of Tobit: Text, Tradition, Theology = Supp. J. Stud. Judaism. Books Abroad = Books Abroad Book Series of The Zeitschrift Fur Celtische Philologie = Buch Z Celt Philol Book Series of The Zeitschrift Fur Celtische Philologie = Buch. Z. Celt. Philol. Books in Soils, Plants, and The Environment = Book Soil P Books in Soils, Plants, and The Environment = Book. Soil. P. Books in Soils Plants and The Environment = Books Soil Plant Env Books in Soils Plants and The Environment = Books Soil. Plant. Env. Book supplement to the Journal of child psychology and psychiatry = Book Suppl J Child Psychol Psychiatr Book Supplement to the Journal of Child Psychology and Psychiatry = Book Suppl. J. Child Psychol. Psychiatr. Bootstrapping and Related Techniques = Lect Notes Econ Math Bootstrapping and Related Techniques = Lect. Notes. Econ. Math. Bootstrap Tests for Regression Models = Palgr Texts Economet Bootstrap Tests for Regression Models = Palgr. Texts. Economet. Bopuxue Zazhi = Bopuxue Zazhi Borate-tellurate Glasses: An Alternative of Immobilization of The Hazardous Wastes = Waste Waste Manag Borate-tellurate Glasses: An Alternative of Immobilization of The Hazardous Wastes = Waste. Waste. Manag. Borcherds Products On O(2,l) and Chern Classes of Heegner Divisors = Lect Notes Math Borcherds Products On O(2,l) and Chern Classes of Heegner Divisors = Lect. Notes. Math. Bordeaux chirurgical = Bord Chir Bordeaux Chirurgical = Bord. Chir. Bordeaux medical = Bord Med Bordeaux Medical = Bord. Med. Borden's review of nutrition research = Bordens Rev Nutr Res Borden's Review of Nutrition Research = Bordens Rev. Nutr. Res. Borderless Beckett / Beckett Sans Frontieres = Sam Beckett Today Borderless Beckett / Beckett Sans Frontieres = Sam. Beckett Today. Borderless Beckett / Beckett Sans Frontieres = Samuel Beckett Today Borderless Beckett / Beckett Sans Frontieres = Samuel. Beckett Today. Border Lines: The Partition of Judaeo-christianity = Divin Reread Late An Border Lines: The Partition of Judaeo-christianity = Divin. Reread. Late. An. Border Security and Who Is Responsible for It = Def Secur Strateg Border Security and Who Is Responsible for It = Def. Secur. Strateg. Borders of Culture: Margins of Identity = Xavier Rev Occas Pub Borders of Culture: Margins of Identity = Xavier. Rev. Occas. Pub. Borders, Regions, and People = Eur Res R S Borders, Regions, and People = Eur. Res. R. S. Boreal Environment Research = Boreal Environ Res Boreal Environment Research = Boreal Environ. Res. Boreas = Boreas Boreas. Münstersche Beiträge zur Archäologie = Boreas Boreas (Oslo) = Boreas (Oslo) Boreas. Uppsala Studies in Ancient Mediterranean and Near Eastern Civilization = BoreasUpps Borgyogyaszati es venerologiaia szemle = Borgyogy Venerol Sz Borgyogyaszati Es Venerologiai Szemle = Borgyogy Vener Szle Borgyogyaszati Es Venerologiai Szemle = Borgyogy. Vener. Szle. Borna Disease = Curr Top Microbiol Borna Disease = Curr. Top. Microbiol. Borneo Research Council Proceedings Series = Born Res Co Pro Ser Borneo Research Council Proceedings Series = Born. Res. Co. Pro. Ser. Bornetandlaegen = Bornetandlaegen Boron-containing Polymers = Macromol Contain Met Boron-containing Polymers = Macromol. Contain. Met. Boronic Acids in Saccharide Recognition = Monogr Supramol Chem Boronic Acids in Saccharide Recognition = Monogr. Supramol. Chem. Boron = Rev Mineral Boron = Rev. Mineral. Boron-rich Solids / = Aip Conf Proc Boron-rich Solids / = Aip. Conf. Proc. Boron Rich Solids: Sensors, Ultra High Temperature Ceramics, Thermoelectrics, Armor = Nato Sec Sci B Phys Boron Rich Solids: Sensors, Ultra High Temperature Ceramics, Thermoelectrics, Armor = Nato. Sec. Sci. B. Phys. Boroughs and Small Towns - Proceedings of The Nantes Colloquium = Villes Terr Boroughs and Small Towns - Proceedings of The Nantes Colloquium = Villes. Terr. Borsuye : Zeitschrift fur Medizin u. Kultur = Borsuye Bose Einstein Condensates: Theory, Characteristics and Current Research = Phys Res Technol Bose Einstein Condensates: Theory, Characteristics and Current Research = Phys. Res. Technol. Bose-einstein Condensation in Atomic Gases = P Int Sch Phys Bose-einstein Condensation in Atomic Gases = P. Int. Sch. Phys. Bosnian Journal of Basic Medical Sciences = Bosnian J Basic Med Bosnian Journal of Basic Medical Sciences = Bosnian J. Basic Med. Bosnian Refugees in America: New Communities, New Cultures = Clin Sociol Res Prac Bosnian Refugees in America: New Communities, New Cultures = Clin. Sociol. Res. Prac. Bosnian Security After Dayton: New Perspectives = Contemp Secur Stud Bosnian Security After Dayton: New Perspectives = Contemp. Secur. Stud. Bosque = Bosque Boston bar journal = Boston Bar J Boston = Boston Boston College environmental affairs law review. Boston College. Law School = Boston Coll Environ Aff Law Rev Boston College industrial and commercial law review = Boston Coll Ind Commer Law Rev Boston College international and comparative law review = Boston College Int Comp Law Rev Boston College law review. Boston College. Law School = Boston Coll Law Rev Boston College Third World law journal = Boston Coll Third World Law J Bostonia (Boston, Mass. : 1986) = Bostonia Boston Medical and Surgical Journal = Boston Med Surg J Boston Medical and Surgical Journal = Boston Med. Surg. J. Boston Museum Bulletin = Boston Museum Bull Boston Museum Bulletin = Boston Museum Bull. Boston Studies in the Philosophy of Science = Boston Stud. Philos. Sci. Boston Studies in The Philosophy of Science = Bost Stud Philos Sci Boston Studies in The Philosophy of Science = Bost. Stud. Philos. Sci. Boston Theological Institute Annual Series = Bost Theo I Boston Theological Institute Annual Series = Bost. Theo. I. Boston University international law journal = Boston Univ Int Law J Boston University journal = Boston Univ J Boston University Journal = Boston Univ J Boston University Journal = Boston Univ. J. Boston University Law Review = Boston U Law Rev Boston University Law Review = Boston U. Law Rev. Boston University law review. Boston University. School of Law = Boston Univ Law Rev Botanica Acta = Bot Acta Botanica Acta = Bot. Acta Botanica Helvetica = Bot Helv Botanica Helvetica = Bot. Helv. Botanical Bulletin of Academia Sinica = Bot Bull Acad Sinica Botanical Bulletin of Academia Sinica = Bot. Bull. Acad. Sinica Botanical bulletin of Academia Sinica. New series. Zhong yang yan jiu yuan. Zhi wu yan jiu suo = Bot Bull Acad Sinica (Taiwan) Botanical Gazette = Bot Gaz Botanical Gazette = Bot. Gaz. Botanical gazette (Chicago, Ill.) = Bot Gaz Botanical Journal of the Linnean Society = Bot. J. Linn. Soc. Botanical Journal of The Linnean Society = Bot J Linn Soc Botanical Journal of The Linnean Society = Bot. J. Linn. Soc. Botanical journal of the Linnean Society. Linnean Society of London = Bot J Linn Soc Botanical Magazine-tokyo = Bot Mag Tokyo Botanical Magazine-tokyo = Bot. Mag. Tokyo. Botanical Magazine Tokyo = Bot. Mag. Tokyo Botanical Museum leaflets, Harvard University = Bot Mus Lealf Harv Univ Botanical Research and Practices = Bot Res Pract Botanical Research and Practices = Bot. Res. Pract. Botanical Research: Incorporating Advances in Plant Pathology, Vol. 47 = Adv Bot Res Botanical Research: Incorporating Advances in Plant Pathology, Vol. 47 = Adv. Bot. Res. Botanical Review = Bot Rev Botanical Review = Bot. Rev. Botanical Studies = Bot Stud Botanical Studies = Bot. Stud. Botanica Marina = Bot Mar Botanica Marina = Bot. Mar. Botanikai Kozlemenyek-botanical Publications = Bot Kozl Botanikai Kozlemenyek-botanical Publications = Bot. Kozl. Botanische Jahrbücher für Systematik, Pflanzengeschichte und Pflanzengeographie = Bot. Jahrb. Syst. Pflanzengesch. Pflanzengeogr. Botanisches Centralblatt = Bot. Cent.bl. Botanische Zeitung = Bot. Ztg. Botaniska Notiser = Bot Notiser Botaniska Notiser = Bot. Notiser Botanisk Tidsskrift = Bot Tidsskr Botanisk Tidsskrift = Bot. Tidsskr. Botany-botanique = Botany Botany-botanique = Botany. Bothalia = Bothalia Botnet Detection: Countering The Largest Security Threat = Adv Inf Sec Botnet Detection: Countering The Largest Security Threat = Adv. Inf. Sec. Botswana Defense Force in The Struggle for An African Environment = Initiat Strateg Stud Botswana Defense Force in The Struggle for An African Environment = Initiat. Strateg. Stud. Botswana national health bulletin / issued by the National Health Institute = Botsw Natl Health Bull Botswana notes and records = Botsw Notes Rec Botyu-kagaku-scientific Pest Control = Botyu Kagaku Botyu-kagaku-scientific Pest Control = Botyu. Kagaku. Boulder-munich Ii: Properties of Hot, Luminous Stars = Astr Soc P Boulder-munich Ii: Properties of Hot, Luminous Stars = Astr. Soc. P. Boundaries, Interfaces, and Transitions = Crm Proc & Lect Note Boundaries, Interfaces, and Transitions = Crm. Proc. &. Lect. Note. Boundaries of Babel: Brain and The Enigma of Impossible Languages = Curr Stud Linguist Boundaries of Babel: Brain and The Enigma of Impossible Languages = Curr. Stud. Linguist. Boundaries of Consciousness: Neurobiology and Neuropathology = Prog Brain Res Boundaries of Consciousness: Neurobiology and Neuropathology = Prog. Brain. Res. Boundaries of Eu Enlargement: Finding A Place for Neighbours = Stud Cent E Eur Boundaries of Eu Enlargement: Finding A Place for Neighbours = Stud. Cent. E. Eur. Boundaries of Morphology and Syntax = Amst Stud Theory His Boundaries of Morphology and Syntax = Amst. Stud. Theory. His. Boundaries of Rock Mechanics: Recent Advances and Challenges for The 21st Century = Proc Monogr Eng Wate Boundaries of Rock Mechanics: Recent Advances and Challenges for The 21st Century = Proc. Monogr. Eng. Wate. Boundaries of The West African Craton = Geol Soc Spec Publ Boundaries of The West African Craton = Geol. Soc. Spec. Publ. Boundary 2-an International Journal of Literature and Culture = Boundary Two Boundary 2-an International Journal of Literature and Culture = Boundary Two. Boundary and Mixed Lubrication: Science and Applications = Tribology S Boundary and Mixed Lubrication: Science and Applications = Tribology. S. Boundary Control and Variation = Lect Notes Pure Appl Boundary Control and Variation = Lect. Notes. Pure. Appl. Boundary Control of Pdes: A Course On Backstepping Designs = Adv Des Control Boundary Control of Pdes: A Course On Backstepping Designs = Adv. Des. Control Boundary Element Advances in Solid Mechanics = Cism Cour L Boundary Element Advances in Solid Mechanics = Cism. Cour. L. Boundary Element Advances in Solid Mechanics = Cism Courses Lect Boundary Element Advances in Solid Mechanics = Cism. Courses. Lect. Boundary Element Methods = Spr Ser Comput Math Boundary Element Methods = Spr. Ser. Comput. Math. Boundary Elements and Other Mesh Reduction Methods Xxix = Wit Trans Model Sim Boundary Elements and Other Mesh Reduction Methods Xxix = Wit. Trans. Model. Sim. Boundary Elements and Other Mesh Reduction Methods Xxviii = Wit Trans Model Sim Boundary Elements and Other Mesh Reduction Methods Xxviii = Wit. Trans. Model. Sim. Boundary Elements and Other Mesh Reduction Methods Xxx = Wit Trans Model Sim Boundary Elements and Other Mesh Reduction Methods Xxx = Wit. Trans. Model. Sim. Boundary Elements = Boundr Element Boundary Elements = Boundr. Element. Boundary Elements Xx = Adv Bound Elem Ser Boundary Elements Xx = Adv. Bound. Elem. Ser. Boundary Elements Xxi = Adv Bound Elem Ser Boundary Elements Xxi = Adv. Bound. Elem. Ser. Boundary Elements Xxii = Adv Bound Elem Ser Boundary Elements Xxii = Adv. Bound. Elem. Ser. Boundary Elements Xxiii = Adv Bound Elem Ser Boundary Elements Xxiii = Adv. Bound. Elem. Ser. Boundary Elements Xxiv: Incorporating Meshless Solutions = Adv Bound Elem Ser Boundary Elements Xxiv: Incorporating Meshless Solutions = Adv. Bound. Elem. Ser. Boundary Elements Xxv = Adv Bound Elem Ser Boundary Elements Xxv = Adv. Bound. Elem. Ser. Boundary Elements Xxvi = Adv Bound Elem Ser Boundary Elements Xxvi = Adv. Bound. Elem. Ser. Boundary Elements Xxvii: Incorporating Electrical Engineering and Electromagnetics = Wit Trans Model Sim Boundary Elements Xxvii: Incorporating Electrical Engineering and Electromagnetics = Wit. Trans. Model. Sim. Boundary Element Technology Xiii = Boundr Element Boundary Element Technology Xiii = Boundr. Element Boundary Element Technology Xiv = Boundr Element Boundary Element Technology Xiv = Boundr. Element Boundary Element Technology Xv = Boundr Element Boundary Element Technology Xv = Boundr. Element Boundary Integral Equations = Appl Math Sci Boundary Integral Equations = Appl. Math. Sci. Boundary Integral Equations On Contours With Peaks = Oper Theory Adv Appl Boundary Integral Equations On Contours With Peaks = Oper. Theory. Adv. Appl. Boundary-Layer Meteorology = Boundary Layer Meteorol. Boundary-Layer Meteorology = Boundary-Layer Meteorol. Boundary-Layer Meteorology = Bound.-Layer Meteor. Boundary-layer Meteorology = Bound-lay Meteorol Boundary-layer Meteorology = Bound-lay. Meteorol. Boundary Layers, Waves and Non-linear Dynamical Processes = Adv Space Res Boundary Layers, Waves and Non-linear Dynamical Processes = Adv. Space. Res. Boundary Layers, Waves and Non-linear Dynamical Processes = Adv Space Res-series Boundary Layers, Waves and Non-linear Dynamical Processes = Adv. Space. Res-series. Boundary Properties and Applications of The Differentiated Poisson Integral for Different Domains = Math Res Dev Boundary Properties and Applications of The Differentiated Poisson Integral for Different Domains = Math. Res. Dev. Boundary Value Problems and Integral Equations in Nonsmooth Domains = Lect Notes Pure Appl Boundary Value Problems and Integral Equations in Nonsmooth Domains = Lect. Notes. Pure. Appl. Boundary Value Problems and Markov Processes, Second Edition = Lect Notes Math Boundary Value Problems and Markov Processes, Second Edition = Lect. Notes. Math. Boundary Value Problems = Bound Value Probl Boundary Value Problems = Bound. Value Probl. Bounded Rationality and Public Policy: A Perspective From Behavioural Economics = Econ Non-mark Good Bounded Rationality and Public Policy: A Perspective From Behavioural Economics = Econ. Non-mark. Good. Bounded Rationality = Dahl Ws Env Bounded Rationality = Dahl. Ws. Env. Bourouchaskiana = Bibl Des Cah De L In Bourouchaskiana = Bibl. Des. Cah. De. L. In. Boutiques and Other Retail Spaces: The Architecture of Seduction = Interior Archit Boutiques and Other Retail Spaces: The Architecture of Seduction = Interior. Archit. Bovine Practice = Agri-practice Bovine Practice = Agri-practice. Bovine Practitioner-series = Bovine Pr Bovine Practitioner-series = Bovine Pr. Bovine Practitioner, Vol 35, No 2 = Bovine Pr Bovine Practitioner, Vol 35, No 2 = Bovine Pr. Bovine Practitioner, Vol 36, No 1 = Bovine Pr Bovine Practitioner, Vol 36, No 1 = Bovine Pr. Bovine Practitioner, Vol 36, No 2 = Bovine Pr Bovine Practitioner, Vol 36, No 2 = Bovine Pr. Bovine Practitioner, Vol 37 No 1 = Bovine Pr Bovine Practitioner, Vol 37 No 1 = Bovine Pr. Bovine Practitioner, Vol 37, No 2 = Bovine Pr Bovine Practitioner, Vol 37, No 2 = Bovine Pr. Bovine Practitioner, Vol 38 No 1 = Bovine Pr Bovine Practitioner, Vol 38 No 1 = Bovine Pr. B Physics At Hadron Machines = Aip Conf Proc B Physics At Hadron Machines = Aip. Conf. Proc. B-quark Physics With The Lep Collider: The Development of Experimental Techniques for B-quark Studies From Z(0)-decay = Springer Trac Mod Ph B-quark Physics With The Lep Collider: The Development of Experimental Techniques for B-quark Studies From Z(0)-decay = Springer. Trac. Mod. Ph. Bracara Augusta. Revista cultural da Câmara municipal de Braga = BracaraAugusta Bracara Augusta. Revista cultural da Câmara municipal de Braga = BracAug Brachiopods From The Dashaba Formation (middle Ordovician) of Sichuan Province, South-west China = Sp Palaeont Brachiopods From The Dashaba Formation (middle Ordovician) of Sichuan Province, South-west China = Sp. Palaeont. Brachiopods Past and Present = Syst Assoc Spec Vol Brachiopods Past and Present = Syst. Assoc. Spec. Vol. Brachytherapy = Brachytherapy Brachytherapy Physics, Second Edition = Med Phys Mg Brachytherapy Physics, Second Edition = Med. Phys. Mg. Bracken Biology and Management = Aias Oc Pub Bracken Biology and Management = Aias. Oc. Pub. Bradford Books = Bradford Books Bradford Studies in European Politics = Brad S E P Bradford Studies in European Politics = Brad. S. E. P. Bradleya = Bradleya Bragantia = Bragantia Bragg Gratings, Photosensitivity and Poling in Glass Waveguides = Osa Trends Opt Photo Bragg Gratings, Photosensitivity and Poling in Glass Waveguides = Osa. Trends. Opt. Photo. Braided Rivers: Process, Deposits, Ecology and Management = Spec Publ Int Ass Se Braided Rivers: Process, Deposits, Ecology and Management = Spec. Publ. Int. Ass. Se. Braid Groups = Grad Texts Math Braid Groups = Grad. Texts. Math. Brain Activation and Cbf Control, Proceedings = Int Congr Ser Brain Activation and Cbf Control, Proceedings = Int. Congr. Ser. Brain Aging = Neur Cont B Brain Aging = Neur. Cont. B. Brain : a journal of neurology = Brain Brain and Biodefence = Tanig Symp Brain Sci Brain and Biodefence = Tanig. Symp. Brain Sci. Brain and cognition = Brain Cogn Brain and Cognition=Brain Cogn;; Brain and Cognition = Brain Cogn. Brain and Cognition = Brain Cognition Brain and Development=Brain Dev;; Brain and Development = Brain Dev. Brain and language = Brain Lang Brain and Language=Brain Lang;; Brain and Language = Brain Lang Brain and Language = Brain Lang. Brain and Longevity = Res Perspect Longev Brain and Longevity = Res. Perspect. Longev. Brain and Mind = Biol Skrif Brain and Mind = Biol. Skrif. Brain and Oral Functions = Int Congr Ser Brain and Oral Functions = Int. Congr. Ser. Brain Barrier Systems = Alfred Benzon Symp S Brain Barrier Systems = Alfred. Benzon. Symp. S. Brain, Behavior and Epigenetics = Epigenetics Hum Hlth Brain, Behavior and Epigenetics = Epigenetics Hum. Hlth. Brain, behavior and evolution = Brain Behav Evol Brain, Behavior and Evolution=Brain Behav Evol;; Brain, Behavior and Evolution = Brain. Behav. Evol. Brain Behavior and Evolution = Brain Behav Evolut Brain Behavior and Evolution = Brain Behav. Evolut. Brain, behavior, and immunity = Brain Behav Immun Brain Behavior and Immunity = Brain Behav Immun Brain Behavior and Immunity = Brain Behav. Immun. Brain, Behavior and Immunity = Brain. Behav. Immun. Brain, Behavior, and Immunity=Brain Behav Immun;; Brain, Body and Machine = Adv Intel Soft Compu Brain, Body and Machine = Adv. Intel. Soft. Compu. Brain=Brain;; Brain = Brain Brain cell biology = Brain Cell Biol Brain Cell Biology = Brain Cell Biol Brain Cell Biology = Brain Cell Biol. Brain / = Cold Sh Q B Brain / = Cold. Sh. Q. B. Brain-computer Interfaces: Applying Our Minds to Human-computer Interaction = Hum-comput Int-sprin Brain-computer Interfaces: Applying Our Minds to Human-computer Interaction = Hum-comput. Int-sprin. Brain-computer Interfaces: Revolutionizing Human-computer Interaction = Front Collect Brain-computer Interfaces: Revolutionizing Human-computer Interaction = Front. Collect. Brain Corticosteroid Receptors = Ann Ny Acad Sci Brain Corticosteroid Receptors = Ann. Ny. Acad. Sci. Brain Damage, Behaviour and Cognition : Developments in Clinical Neuropsychology = Brain Dam B Brain Damage, Behaviour and Cognition : Developments in Clinical Neuropsychology = Brain Dam. B. Brain Death and Disorders of Consciousness = Adv Exp Med Biol Brain Death and Disorders of Consciousness = Adv. Exp. Med. Biol. Brain Death = Devel Neur Brain Death = Devel. Neur. Brain & development = Brain Dev Brain & Development = Brain Dev-jpn Brain & Development = Brain Dev-jpn. Brain Development in Drosophila Melanograster = Adv Exp Med Biol Brain Development in Drosophila Melanograster = Adv. Exp. Med. Biol. Brain Dopaminergic Systems : Imaging With Positron Tomography = Dev Nuc Med Brain Dopaminergic Systems : Imaging With Positron Tomography = Dev. Nuc. Med. Brain Dysfunction = Brain Dysfunct Brain Dysfunction = Brain Dysfunct. Brain Edema Ix = Act Neur S Brain Edema Ix = Act. Neur. S. Brain Edema Viii = Act Neur S Brain Edema Viii = Act. Neur. S. Brain Edema X = Act Neur S Brain Edema X = Act. Neur. S. Brain Edema Xi = Acta Neurochir Suppl Brain Edema Xi = Acta. Neurochir. Suppl. Brain Edema Xi = Act Neur S Brain Edema Xi = Act. Neur. S. Brain Edema Xii = Acta Neurochir Suppl Brain Edema Xii = Acta. Neurochir. Suppl. Brain Edema Xii = Act Neur S Brain Edema Xii = Act. Neur. S. Brain Edema Xiii = Act Neur S Brain Edema Xiii = Act. Neur. S. Brain Edema Xiv = Act Neur S Brain Edema Xiv = Act. Neur. S. Brain Fiction: Self-deception and The Riddle of Confabulation = Philos Psychopathol Brain Fiction: Self-deception and The Riddle of Confabulation = Philos. Psychopathol. Brain Function in Hot Environment = Prog Brain Res Brain Function in Hot Environment = Prog. Brain Res. Brain, Heart and Tumor Imaging = Int Congr Ser Brain, Heart and Tumor Imaging = Int. Congr. Ser. Brain Hypoxia and Ischemia = Res Leg Med Brain Hypoxia and Ischemia = Res. Leg. Med. Brain Imaging and Behavior = Brain Imaging Behav Brain Imaging and Behavior = Brain Imaging Behav. Brain Immune Axis and Substance Abuse = Adv Exp Med Biol Brain Immune Axis and Substance Abuse = Adv. Exp. Med. Biol. Brain Impairment = Brain Impair Brain Impairment = Brain Impair. Brain Informatics, Proceedings = Lect Notes Artif Int Brain Informatics, Proceedings = Lect. Notes. Artif. Int. Brain injury : [BI] = Brain Inj Brain Injury=Brain Inj;; Brain Injury = Brain Inj. Brain Injury = Brain Injury Brain Injury Treatment: Theories and Practices = Stud Neuropsych Dev Brain Injury Treatment: Theories and Practices = Stud. Neuropsych. Dev. Brain Inspired Cognitive Systems 2008 = Adv Exp Med Biol Brain Inspired Cognitive Systems 2008 = Adv. Exp. Med. Biol. Brain-inspired Information Technology = Stud Comput Intell Brain-inspired Information Technology = Stud. Comput. Intell. Brain-inspired It I = Int Congr Ser Brain-inspired It I = Int. Congr. Ser. Brain Lesions in The Newborn = Alfred Benzon Symp S Brain Lesions in The Newborn = Alfred. Benzon. Symp. S. Brain Machine Interfaces for Space Applications: Enhancing Astronaut Capabilities = Int Rev Neurobiol Brain Machine Interfaces for Space Applications: Enhancing Astronaut Capabilities = Int. Rev. Neurobiol. Brain Mechanisms = Ann Ny Acad Sci Brain Mechanisms = Ann. Ny. Acad. Sci. Brain Mechanisms for The Integration of Posture and Movement = Prog Brain Res Brain Mechanisms for The Integration of Posture and Movement = Prog. Brain Res. Brain Pathology=Brain Pathol;; Brain Pathology = Brain Pathol Brain Pathology = Brain Pathol. Brain pathology (Zurich, Switzerland) = Brain Pathol Brain Plasticity = Adv Exp Med Biol Brain Plasticity = Adv. Exp. Med. Biol. Brain Plasticity = Adv Neurol Brain Plasticity = Adv. Neurol. Brain Plasticity and Epilepsy = Int Rev Neurobiol Brain Plasticity and Epilepsy = Int. Rev. Neurobiol. Brain Processes and Memory = Int Congr Ser Brain Processes and Memory = Int. Congr. Ser. Brain Repair = Adv Exp Med Biol Brain Repair = Adv. Exp. Med. Biol. Brain research = Brain Res Brain Research=Brain Res;; Brain Research = Brain Res Brain Research = Brain Res. Brain research. Brain research protocols = Brain Res Brain Res Protoc Brain Research. Brain Research Protocols=Brain Res Brain Res Protoc;; Brain Research. Brain Research Protocols = Brain Res. Brain Res. Protoc. Brain research. Brain research reviews = Brain Res Brain Res Rev Brain Research. Brain Research Reviews=Brain Res Brain Res Rev;; Brain Research. Brain Research Reviews = Brain Res. Brain Res. Rev. Brain research bulletin = Brain Res Bull Brain Research Bulletin=Brain Res Bull;; Brain Research Bulletin = Brain Res Bull Brain Research Bulletin = Brain Res. Bull. Brain research. Cognitive brain research = Brain Res Cogn Brain Res Brain Research. Cognitive Brain Research=Brain Res Cogn Brain Res;; Brain Research. Cognitive Brain Research = Brain Res. Cogn. Brain Res. Brain research. Developmental brain research = Brain Res Dev Brain Res Brain Research. Developmental Brain Research=Brain Res Dev Brain Res;; Brain Research. Developmental Brain Research = Brain Res. Dev. Brain Res. Brain research. Gene expression patterns = Brain Res Gene Expr Patterns Brain Research in Language = Lit Stud Brain Research in Language = Lit. Stud. Brain research. Molecular brain research = Brain Res Mol Brain Res Brain Research. Molecular Brain Research=Brain Res Mol Brain Res;; Brain Research. Molecular Brain Research = Brain Res. Mol. Brain Res. Brain Research Protocols = Brain Res Protoc Brain Research Protocols = Brain Res. Protoc. Brain research reviews = Brain Res Rev Brain Research Reviews = Brain Res Rev Brain Research Reviews = Brain Res. Rev. Brain's Eye: Neurobiological and Clinical Aspects of Oculomotor Research = Prog Brain Res Brain's Eye: Neurobiological and Clinical Aspects of Oculomotor Research = Prog. Brain. Res. Brain Stem Cells = Exptl Biol Rev Brain Stem Cells = Exptl. Biol. Rev. Brain Stimulation = Brain Stimul Brain Stimulation = Brain Stimul. Brain Structure and Function = Brain Struct. Funct. Brain structure & function = Brain Struct Funct Brain Structure & Function = Brain Struct Funct Brain Structure & Function = Brain Struct. Funct. Brain topography = Brain Topogr Brain Topography=Brain Topogr;; Brain Topography = Brain Topogr Brain Topography = Brain Topogr. Brain Topography Today = Int Congr Ser Brain Topography Today = Int. Congr. Ser. Brain tumor pathology = Brain Tumor Pathol Brain Tumor Pathology=Brain Tumor Pathol;; Brain Tumor Pathology = Brain Tumor Pathol Brain Tumor Pathology = Brain Tumor Pathol. Brain Tumors = Consult Pathol Brain Tumors = Consult. Pathol. Brain, Vision, and Artificial Intelligence, Proceedings = Lect Notes Comput Sc Brain, Vision, and Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Bram Stoker: A Literary Life = Lit Lives Bram Stoker: A Literary Life = Lit. Lives. Branched-chain Amino Acids, Pt B = Method Enzymol Branched-chain Amino Acids, Pt B = Method. Enzymol. Branched-chain Amino Acids, Pt B = Methods Enzymol Branched-chain Amino Acids, Pt B = Methods. Enzymol. Branched Polymers I = Adv Polym Sci Branched Polymers I = Adv. Polym. Sci. Branched Polymers Ii = Adv Polym Sci Branched Polymers Ii = Adv. Polym. Sci. Branched Standard Spines of 3-manifolds = Lect Notes Math Branched Standard Spines of 3-manifolds = Lect. Notes. Math. Brandeis journal of family law / Louis D. Brandeis School of Law, University of Louisville = Brandeis J Fam Law Brandeis law journal = Brandeis Law J Brandeis review = Brandeis Rev Brand Equity & Advertising = Advert Cons Brand Equity & Advertising = Advert. Cons. Branding Cities: Cosmopolitanism, Parochialism, and Social Change = Routl Adv Geogr Branding Cities: Cosmopolitanism, Parochialism, and Social Change = Routl. Adv. Geogr. Branding New York: How A City in Crisis Was Sold to The World = Cult Spaces Branding New York: How A City in Crisis Was Sold to The World = Cult. Spaces. Brands of Faith: Marketing Religion in A Commercial Age = Relig Media Cult Brands of Faith: Marketing Religion in A Commercial Age = Relig. Media. Cult. Brasil-medico = Bras Med Brassica 97 = Acta Hortic Brassica 97 = Acta. Hortic. Bratislava Medical Journal-bratislavske Lekarske Listy = Bratisl Med J Bratislava Medical Journal-bratislavske Lekarske Listy = Bratisl Med J+ Bratislava Medical Journal-bratislavske Lekarske Listy = Bratisl. Med. J. Bratislava Medical Journal-bratislavske Lekarske Listy = Bratisl. Med. J+.+ Bratislavske lekarske listy = Bratisl Lek Listy Bratislavske Lekarske Listy=Bratisl Lek Listy;; Bratislavske Lekarske Listy = Bratisl. Lek. Listy Braunschweiger Veroffentlichungen zur Geschichte der Pharmazie und der Naturwissenschaften = Braunschw Veroff Gesch Pharm Naturwiss Brauwissenschaft = Monatsschr Brauwiss Brauwissenschaft = Monatsschr. Brauwiss. Brazilian Archives of Biology and Technology = Braz Arch Biol Techn Brazilian Archives of Biology and Technology = Braz. Arch. Biol. Techn. Brazilian dental journal = Braz Dent J Brazilian Dental Journal = Braz. Dent. J. Brazilian economic studies = Braz Econ Stud Brazilian Electronic Journal of Economics=Brazilian Electronic J. Econ. Brazilian Journal of Applied Economics=Brazilian J. Appl. Econ. Brazilian Journal of Aquatic Sciences and Technology = Braz. J. Aquat. Sci. Technol. Brazilian Journal of Biology = Braz J Biol Brazilian Journal of Biology = Braz. J. Biol. Brazilian Journal of Chemical Engineering = Braz J Chem Eng Brazilian Journal of Chemical Engineering = Braz. J. Chem. Eng. Brazilian Journal of Chemistry = Braz. J. Chem. Brazilian Journal of Food Technology = Braz. J. Food Technol. Brazilian Journal of Genetics = Braz J Genet Brazilian Journal of Genetics = Braz. J. Genet. Brazilian Journal of Infectious Diseases = Braz J Infect Dis Brazilian Journal of Infectious Diseases = Braz. J. Infect. Dis. Brazilian Journal of Materials Science and Engineering = Braz. J. Mater. Sci. Eng. Brazilian Journal of Medical and Biological Research=Braz J Med Biol Res;; Brazilian Journal of Medical and Biological Research = Braz J Med Biol Res Brazilian Journal of Medical and Biological Research = Braz. J. Med. Biol. Res. Brazilian Journal of Microbiology = Braz J Microbiol Brazilian Journal of Microbiology = Braz. J. Microbiol. Brazilian Journal of Oceanography = Braz J Oceanogr Brazilian Journal of Oceanography = Braz. J. Oceanogr. Brazilian Journal of Otorhinolaryngology = Braz J Otorhinolar Brazilian Journal of Otorhinolaryngology = Braz. J. Otorhinolar. Brazilian Journal of Pharmaceutical Sciences = Braz J Pharm Sci Brazilian Journal of Pharmaceutical Sciences = Braz. J. Pharm. Sci. Brazilian Journal of Physics = Braz J Phys Brazilian Journal of Physics = Braz. J. Phys. Brazilian Journal of Political Economy=Brazilian J. Polit. Economy Brazilian journal of population studies = Braz J Popul Stud Brazilian Journal of Poultry Science = Braz J Poultry Sci Brazilian Journal of Poultry Science = Braz J Poultry Sci+ Brazilian Journal of Poultry Science = Braz. J. Poultry Sci. Brazilian Journal of Poultry Science = Braz. J. Poultry Sci+.+ Brazilian Journal of Poultry Science = Braz J Poult Sci Brazilian Journal of Poultry Science = Braz. J. Poult. Sci. Brazilian oral research = Braz Oral Res Brazilian Perspectives On Sustainable Development of The Amazon Region = Man Biosph Brazilian Perspectives On Sustainable Development of The Amazon Region = Man. Biosph. Brazilian Review of Econometrics=Brazilian Rev. Econometrics Brazilian Studies in Philosophy and History of Science: An Account of Recent Works = Bost Stud Philos Sci Brazilian Studies in Philosophy and History of Science: An Account of Recent Works = Bost. Stud. Philos. Sci. Breaching The Colonial Contract: Anti-colonialism in The Us and Canada = Explor Educ Purp Breaching The Colonial Contract: Anti-colonialism in The Us and Canada = Explor. Educ. Purp. Breaking Down Barriers to Care: Treatment of Tobacco Dependence in Vulnerable Populations = Public Health 21st C Breaking Down Barriers to Care: Treatment of Tobacco Dependence in Vulnerable Populations = Public. Health. 21st. C. Breaking Ground On Translational Stem Cell Research: The New York Stem Cell Foundation Fourth Annual Translational Stem Cell Research Conference Breaking Ground = Ann Ny Acad Sci Breaking Ground On Translational Stem Cell Research: The New York Stem Cell Foundation Fourth Annual Translational Stem Cell Research Conference Breaking Ground = Ann. Ny. Acad. Sci. Breaking Ocean Waves: Geometry, Structure, and Remote Sensing = Springer-prax Books Breaking Ocean Waves: Geometry, Structure, and Remote Sensing = Springer-prax. Books. Breaking The Barriers to The Free Flow of Information = Iamslic C S Breaking The Barriers to The Free Flow of Information = Iamslic. C. S. Breaking The Pulp Yield Barrier Symposium, 1998 Tappi Proceedings = P Tech As P Breaking The Pulp Yield Barrier Symposium, 1998 Tappi Proceedings = P. Tech. As. P. Breakthrough Communities: Sustainability and Justice in The Next American Metropolis = Urban Ind Environ Breakthrough Communities: Sustainability and Justice in The Next American Metropolis = Urban. Ind. Environ. Breakthrough in Cytokine Therapy : An Overview of Gm-csf = Roy Soc Med Int Cong Breakthrough in Cytokine Therapy : An Overview of Gm-csf = Roy. Soc. Med. Int. Cong. Breast = Breast Breast Cancer and Its Precursor Lesions: Making Sense and Making It Early = Curr Clin Pathol Breast Cancer and Its Precursor Lesions: Making Sense and Making It Early = Curr. Clin. Pathol. Breast Cancer : Biological and Clinical Progress = Dev Oncol Breast Cancer : Biological and Clinical Progress = Dev. Oncol. Breast Cancer = Breast Cancer-tokyo Breast Cancer = Breast Cancer-tokyo. Breast Cancer: Causes, Diagnosis and Treatment = Cancer Etiol Diagn T Breast Cancer: Causes, Diagnosis and Treatment = Cancer. Etiol. Diagn. T. Breast Cancer Chemosensitivity = Adv Exp Med Biol Breast Cancer Chemosensitivity = Adv. Exp. Med. Biol. Breast Cancer = Emerg Cancer Ther Breast Cancer = Emerg. Cancer Ther. Breast Cancer: From Biology to Therapy = Ann Ny Acad Sci Breast Cancer: From Biology to Therapy = Ann. Ny. Acad. Sci. Breast Cancer in The Post-genomic Era = Curr Clin Oncol Breast Cancer in The Post-genomic Era = Curr. Clin. Oncol. Breast Cancer : Progress in Biology, Clinical Management and Prevention = Dev Oncol Breast Cancer : Progress in Biology, Clinical Management and Prevention = Dev. Oncol. Breast Cancer Research and Treatment = Breast Cancer Res Tr Breast Cancer Research and Treatment = Breast Cancer Res. Tr. Breast cancer research and treatment = Breast Cancer Res Treat Breast Cancer Research and Treatment=Breast Cancer Res Treat;; Breast Cancer Research and Treatment = Breast Cancer Res. Treat. Breast cancer research : BCR = Breast Cancer Res Breast Cancer Research = Breast Cancer Res Breast Cancer Research = Breast Cancer Res. Breast Cancer, Second Edition = M D Anderson Cancer Breast Cancer, Second Edition = M. D. Anderson. Cancer. Breast cancer (Tokyo, Japan) = Breast Cancer Breast Care = Breast Care Breast Cytopathology = Essent Cytopathol Breast Cytopathology = Essent. Cytopathol. Breast disease = Breast Dis Breast (Edinburgh, Scotland) = Breast Breast-feeding: Early Influences On Later Health = Adv Exp Med Biol Breast-feeding: Early Influences On Later Health = Adv. Exp. Med. Biol. Breastfeeding Medicine = Breastfeed Med Breastfeeding Medicine = Breastfeed. Med. Breastfeeding medicine : the official journal of the Academy of Breastfeeding Medicine = Breastfeed Med Breastfeeding: Methods, Benefits to The Infant and Mother, and Difficulties = Preg Infants-med Psy Breastfeeding: Methods, Benefits to The Infant and Mother, and Difficulties = Preg. Infants-med. Psy. Breastfeeding Review = Breastfeed. Rev. Breastfeeding review : professional publication of the Nursing Mothers' Association of Australia = Breastfeed Rev Breast Journal = Breast J Breast Journal = Breast J. Breathe, Walk and Chew: The Neural Challenge: Part Ii = Prog Brain Res Breathe, Walk and Chew: The Neural Challenge: Part Ii = Prog. Brain. Res. Breathe, Walk and Chew: The Neural Challenge: Part I = Prog Brain Res Breathe, Walk and Chew: The Neural Challenge: Part I = Prog. Brain. Res. Breeding Science = Breeding Sci Breeding Science = Breeding Sci. Breeding Strategies for Rainfed Lowland Rice in Drought-prone Environments = Aciar Proc Breeding Strategies for Rainfed Lowland Rice in Drought-prone Environments = Aciar. Proc. Breeding Technologies for Tropical Acacias = Aciar Proc Breeding Technologies for Tropical Acacias = Aciar. Proc. Bremer archäologische Blätter = BremABl Brenesia = Brenesia Brennstoff-chemie = Brennst Chem Brennstoff-chemie = Brennst. Chem. Brennstoff-warme-kraft = Brennst-warme-kraft Brennstoff-warme-kraft = Brennst-warme-kraft. Brennstoff-Warme-Kraft = Brennst.-Warme-Kraft Brennstoffzellen Und Virtuelle Kraftwerke: Energie-, Umwelt- Und Technologiepolitische Aspekte Einer Effizienten Hausenergieversorgung = Ethics Sci Tech Ass Brennstoffzellen Und Virtuelle Kraftwerke: Energie-, Umwelt- Und Technologiepolitische Aspekte Einer Effizienten Hausenergieversorgung = Ethics. Sci. Tech. Ass. Brethren life and thought = Brethr Life Thought "Brevia" = Brevia (Rome) Brewers Digest = Brewers Dig Brewers Digest = Brewers Dig. Brewing: New Technologies = Woodhead Food Ser Brewing: New Technologies = Woodhead. Food. Ser. BrewingScience - Monatsschrift fur Brauwissenschaft = BrewingSci. Monatsschr. Brauwiss. Bridge Assessment Management and Design = Dev Civ Eng Bridge Assessment Management and Design = Dev. Civ. Eng. Bridge Evaluation, Repair and Rehabilitation = Nato Adv Sci I E-app Bridge Evaluation, Repair and Rehabilitation = Nato. Adv. Sci. I. E-app. Bridge Health Monitoring, Maintenance and Safety = Key Eng Mater Bridge Health Monitoring, Maintenance and Safety = Key. Eng. Mater. Bridge Leadership = Educ Leader Soc Just Bridge Leadership = Educ. Leader. Soc. Just. Bridge (Washington, D.C. : 1992) = Bridg Wash D C Bridging Boundaries: Making Scale Choices in Multi-actor Policy Analysis On Water Management, Vol 4 = Deltares Sel Ser Bridging Boundaries: Making Scale Choices in Multi-actor Policy Analysis On Water Management, Vol 4 = Deltares. Sel. Ser. Bridging Laboratory and Field Research for Genetic Control of Disease Vectors = Wag Ur Fron Bridging Laboratory and Field Research for Genetic Control of Disease Vectors = Wag. Ur. Fron. Bridging The Digital Divide = Iamslic C S Bridging The Digital Divide = Iamslic. C. S. Bridging The Gap Between Graph Edit Distance and Kernel Machines = Ser Mach Percept Art Bridging The Gap Between Graph Edit Distance and Kernel Machines = Ser. Mach. Percept. Art. Bridging The Gap Between Theory, Research and Practice: The Role of Child Development Laboratory Programs in Early Childhood Education = Adv Early Educ Day C Bridging The Gap Between Theory, Research and Practice: The Role of Child Development Laboratory Programs in Early Childhood Education = Adv. Early Educ. Day. C. Bridging The Knowledge Divide: Educational Technology for Development = Educ Des Tech Know Bridging The Knowledge Divide: Educational Technology for Development = Educ. Des. Tech. Know. Bridging Time Scales: Molecular Simulations for The Next Decade = Lect Notes Phys Bridging Time Scales: Molecular Simulations for The Next Decade = Lect. Notes. Phys. Bridging Tourism Theory and Practice = Bridg Tour Theor Pra Bridging Tourism Theory and Practice = Bridg. Tour. Theor. Pra. Brief Illustrated History of Machines and Mechanisms = Hist Mech Mach Sci Brief Illustrated History of Machines and Mechanisms = Hist. Mech. Mach. Sci. Briefings in bioinformatics = Brief Bioinform Briefings in Bioinformatics = Brief Bioinform Briefings in Bioinformatics = Brief. Bioinform. Briefings in Bioinformatics = Briefings Bioinf. Briefings in Functional Genomics and Proteomics = Brief. Funct. Genomic. Proteomic. Briefings in Functional Genomics = Brief Funct Genomics Briefings in Functional Genomics = Brief. Funct. Genomics Briefings in functional genomics & proteomics = Brief Funct Genomic Proteomic Briefings in medical ethics = Brief Med Ethics Briefs = Briefs Brigantium. Museo arqueolóxico e histórico = Brigantium Brigham Young University law review = Brigh Young Univ Law Rev Brigham Young University studies. Brigham Young University = Brigham Young Univ Stud Brigham Young University Studies = Brigham Young U Stud Brigham Young University Studies = Brigham Young U. Stud. Brighton Crop Protection Conference - Pests and Diseases - 1994, Vols 1-3 = Proc Brighton Crop Brighton Crop Protection Conference - Pests and Diseases - 1994, Vols 1-3 = Proc. Brighton Crop Brighton Crop Protection Conference: Weeds - 1993, Vols 1-3 = Proc Brighton Crop Brighton Crop Protection Conference: Weeds - 1993, Vols 1-3 = Proc. Brighton Crop Brighton Crop Protection Conference, Weeds - 1995, Vols 1-3 = Proc Brighton Crop Brighton Crop Protection Conference, Weeds - 1995, Vols 1-3 = Proc. Brighton Crop Brilliant Light in Life and Material Sciences = Nato Sec Sci B Phys Brilliant Light in Life and Material Sciences = Nato. Sec. Sci. B. Phys. Brillouin-wigner Methods for Many-body Systems = Prog Theor Chem Phys Brillouin-wigner Methods for Many-body Systems = Prog. Theor. Chem. Phys. Brill's Indological Library = Brills Indol Lib Brill's Indological Library = Brills. Indol. Lib. Brill's Japanese Studies Library = Brl Japan Stud Lib Brill's Japanese Studies Library = Brl. Japan. Stud. Lib. Brills Series On The Early Middle Ages = Brill Ser Early Midd Brills Series On The Early Middle Ages = Brill. Ser. Early Midd. Brills Studies in Intellectuals History = Brill S In Brills Studies in Intellectuals History = Brill. S. In. Brill's Tibetan Studies Library = Brills Tibet Stu Lib Brill's Tibetan Studies Library = Brills. Tibet. Stu. Lib. Brimleyana = Brimleyana Bringing Desegregation Home: Memories of The Struggle Toward School Integration in Rural North Carolina = Palgr Stud Oral Hist Bringing Desegregation Home: Memories of The Struggle Toward School Integration in Rural North Carolina = Palgr. Stud. Oral. Hist. Bringing Groundwater Quality Research to The Watershed Scale = Iahs-aish P Bringing Groundwater Quality Research to The Watershed Scale = Iahs-aish. P. Bringing Human Rights Home = Pa Stud Hum Rights Bringing Human Rights Home = Pa. Stud. Hum. Rights Bringing Religion Into International Relations = Cult Relig Int Relat Bringing Religion Into International Relations = Cult. Relig. Int. Relat. Bringing Schools Into The 21st Century = Explor Educ Purp Bringing Schools Into The 21st Century = Explor. Educ. Purp. Bringing Society Back In: Grassroots Ecosystem Management, Accountability, and Sustainable Communities = Am Comp Environ Poli Bringing Society Back In: Grassroots Ecosystem Management, Accountability, and Sustainable Communities = Am. Comp. Environ. Poli. Bringing Telecommunication Services to The People - Is&n '95 = Lect Notes Comput Sc Bringing Telecommunication Services to The People - Is&n '95 = Lect. Notes. Comput. Sc. Bristol medico-chirurgical journal (1963) = Bristol Med Chir J Bristol Medico-Chirurgical Journal = Bristol Med. Chir. J. Bristol-myers Squibb Cancer Symposia = Bris Myer C Bristol-myers Squibb Cancer Symposia = Bris. Myer. C. Bristol-myers Squibb/mead Johnson Nutrition Symposia = Bms Mj Nutr Bristol-myers Squibb/mead Johnson Nutrition Symposia = Bms. Mj. Nutr. Bristol-myers Squibb Symposium On Pain Research Series = Symp Pain R Bristol-myers Squibb Symposium On Pain Research Series = Symp. Pain R. Bristol-myers Squibb / Zimmer Orthopaedic Symposium Series = Bris Myer Z Bristol-myers Squibb / Zimmer Orthopaedic Symposium Series = Bris. Myer. Z. Britain, America and The War Debt Controversy = Brit Polit Soc Britain, America and The War Debt Controversy = Brit. Polit. Soc. Britain and The 1918-19 Influenza Pandemic: A Dark Epilogue = Routl Stud Soc Hist Britain and The 1918-19 Influenza Pandemic: A Dark Epilogue = Routl. Stud. Soc. Hist. Britain and The Balkans: 1991 Until The Present = Routl Adv Eur Polit Britain and The Balkans: 1991 Until The Present = Routl. Adv. Eur. Polit. Britain and The Origins of The Vietnam War: Uk Policy in Indo-china, 1943-50 = Glob Confl Secur Britain and The Origins of The Vietnam War: Uk Policy in Indo-china, 1943-50 = Glob. Confl. Secur. Britain, Germany and The Cold War = Cold War Hist-routl Britain, Germany and The Cold War = Cold War Hist-routl. Britain in Vietnam: Prelude to Disaster, 1945-46 = Mil Hist Policy Britain in Vietnam: Prelude to Disaster, 1945-46 = Mil. Hist. Policy. Britain's Bloodless Revolutions: 1688 and The Romantic Reform of Literature = Palgrave Stud Enligh Britain's Bloodless Revolutions: 1688 and The Romantic Reform of Literature = Palgrave. Stud. Enligh. Britain's Imperial Cornerstone in China: The Chinese Maritime Customs Service, 1854-1949 = Routl Stud Mod Hist Britain's Imperial Cornerstone in China: The Chinese Maritime Customs Service, 1854-1949 = Routl. Stud. Mod. Hist. Britain's Secret War Against Japan, 1937-1945 = Stud Intell Britain's Secret War Against Japan, 1937-1945 = Stud. Intell. Britain, Sweden and The Cold War, 1945-54: Understanding Neutrality = St Antonys Ser Britain, Sweden and The Cold War, 1945-54: Understanding Neutrality = St. Antonys. Ser. Britain, Turkey and The Soviet Union, 1940-45: Strategy, Diplomacy and Intelligence in The Eastern Mediterranean = Stud Mil Strateg His Britain, Turkey and The Soviet Union, 1940-45: Strategy, Diplomacy and Intelligence in The Eastern Mediterranean = Stud. Mil. Strateg. His. Britannia (Society for the Promotion of Roman Studies) = Britannia Britannica yearbook of science and the future = Br Yearb Sci British Abolitionism and The Rhetoric of Sensibility: Writing, Sentiment and Slavery, 1760-1807 = Palgrave Stud Enligh British Abolitionism and The Rhetoric of Sensibility: Writing, Sentiment and Slavery, 1760-1807 = Palgrave. Stud. Enligh. British Aestheticism and Ancient Greece: Hellenism, Reception, Gods in Exile = Palgrave Stud Ninet- British Aestheticism and Ancient Greece: Hellenism, Reception, Gods in Exile = Palgrave. Stud. Ninet-. British and French Mandates in Comparative Perspectives = Soc Econ P British and French Mandates in Comparative Perspectives = Soc. Econ. P. British and Irish Studies in German Language and Literature = Brit Irish Stud Germ British and Irish Studies in German Language and Literature = Brit. Irish Stud. Germ. British Antarctic Survey Bulletin = Brit Antarct Surv B British Antarctic Survey Bulletin = Brit. Antarct. Surv. B. British Archaeological Abstracts = BritAA British Archaeological Association Conference Transactions = Brit Archaeol Assoc British Archaeological Association Conference Transactions = Brit. Archaeol. Assoc. British Archaeological Bibliography = BritAB British Archaeological Reports. British Series = BAR British Archaeological Reports, British Series = Br. Archaeol. Rep., Br. Ser. British Archaeological Reports. International Series = BARIntSer British Archaeological Reports International Series (supplementary) = Brit Archaeol Rep In British Archaeological Reports International Series (supplementary) = Brit. Archaeol. Rep. In. British Asians and Football: Culture, Identity, Exclusion = Routl Crit Stud Spor British Asians and Football: Culture, Identity, Exclusion = Routl. Crit. Stud. Spor. British Association for The Advancement of Science, Section F Series ( Economics ) = Baas F Econ British Association for The Advancement of Science, Section F Series ( Economics ) = Baas. F Econ. British Birds = Brit Birds British Birds = Brit. Birds British book news = Br Book News British Buddhism: Teachings, Practice and Development = Routl Crit Stud Budd British Buddhism: Teachings, Practice and Development = Routl. Crit. Stud. Budd. British Ceramics Proceedings = Brit Cer Pr British Ceramics Proceedings = Brit. Cer. Pr. British Ceramic Transactions and Journal = Brit Ceram Trans J British Ceramic Transactions and Journal = Brit. Ceram. Trans. J. British Ceramic Transactions = Br. Ceram. Trans. British Ceramic Transactions = Brit Ceram T British Ceramic Transactions = Brit. Ceram. T. British Chemical Engineering and Process Technology = Brit Chem Eng Pr Tec British Chemical Engineering and Process Technology = Brit. Chem. Eng. Pr. Tec. British Chemical Engineering = Brit Chem Eng Pr Tec British Chemical Engineering = Brit. Chem. Eng. Pr. Tec. British Columbia medical journal = B C Med J British Columbia Ministry of Forests Research Program, Working Paper = Bc Min For Res Progr British Columbia Ministry of Forests Research Program, Working Paper = Bc. Min. For. Res. Progr. British Communications and Electronics = Br Commun Electron British Communications and Electronics = Br. Commun. Electron. British Computer Society Workshop Series = Brit Comp S British Computer Society Workshop Series = Brit. Comp. S. British Corrosion Journal = Br. Corros. J. British Corrosion Journal = Brit Corros J British Corrosion Journal = Brit. Corros. J. British Crop Protection Council Monograph Series = Br Crop Pr British Crop Protection Council Monograph Series = Br. Crop Pr. British Crop Protection Council Symposium Proceedings = Bcpc Symp Ser British Crop Protection Council Symposium Proceedings = Bcpc. Symp. Ser. British dental journal = Br Dent J British Dental Journal=Br Dent J;; British Dental Journal = Br. Dent. J. British Dental Journal = Brit Dent J British Dental Journal = Brit. Dent. J. British Dental Nurses' Journal = Br. Dent. Nurs. J. British dental nurses' journal (Fleetwood, England : 1994) = Br Dent Nurs J British Dental Surgery Assistant = Br. Dent. Surg. Assist. British Educational Research Journal = Brit Educ Res J British Educational Research Journal = Brit. Educ. Res. J. British Food Journal = Brit Food J British Food Journal = Brit. Food J. British Foreign and Colonial Policy = Brit Foreign Col Pol British Foreign and Colonial Policy = Brit. Foreign Col. Pol. British Foreign Secretaries in An Uncertain World, 1919-1939 = Brit Foreign Col Pol British Foreign Secretaries in An Uncertain World, 1919-1939 = Brit. Foreign Col. Pol. British Geomorphological Research Group, Symposia Series = Brit Geomor British Geomorphological Research Group, Symposia Series = Brit. Geomor. British heart journal = Br Heart J British Heart Journal = Br. Heart J. British Heart Journal = Brit Heart J British Heart Journal = Brit. Heart J. British heritage = Br Herit British history illustrated = Br Hist Illus British Homoeopathic Journal = Br. Homeopath. J. British International Thinkers From Hobbes to Namier = Palgr Mac Ser Hist British International Thinkers From Hobbes to Namier = Palgr. Mac. Ser. Hist. British Journal for Eighteenth-century Studies = Brit J Eighteenth-c British Journal for Eighteenth-century Studies = Brit. J. Eighteenth-c. British Journal for the History of Philosophy = BJHP British journal for the history of philosophy : BJHP : the journal of the British Society for the History of Philosophy = Br J Hist Philos British Journal for The History of Philosophy = Brit J Hist Philos British Journal for The History of Philosophy = Brit. J. Hist. Philos. British Journal for the History of Science = BJHS British Journal for The History of Science = Brit J Hist Sci British Journal for The History of Science = Brit. J. Hist. Sci. British journal for the history of science = Br J Hist Sci British Journal for the History of Science = Br. J. Hist. Sci. British Journal for the Philosophy of Science = British J. Philos. Sci. British Journal for The Philosophy of Science = Brit J Philos Sci British Journal for The Philosophy of Science = Brit. J. Philos. Sci. British Journal of Addiction = Brit J Addict British Journal of Addiction = Brit. J. Addict. British journal of addiction = Br J Addict British Journal of Addiction = Br. J. Addict. British Journal of Addiction to Alcohol and Other Drugs = Br. J. Addict. Alcohol Other Drugs British Journal of Aesthetics = Brit J Aesthet British Journal of Aesthetics = Brit. J. Aesthet. British Journal of Anaesthesia = Brit J Anaesth British Journal of Anaesthesia = Brit. J. Anaesth. British journal of anaesthesia = Br J Anaesth British Journal of Anaesthesia=Br J Anaesth;; British Journal of Anaesthesia = Br. J. Anaesth. British Journal of Applied Physics = Brit J Appl Phys British Journal of Applied Physics = Brit. J. Appl. Phys. British Journal of Applied Physics = Br. J. Appl. Phys. British Journal of Audiology = Brit J Audiol British Journal of Audiology = Brit. J. Audiol. British journal of audiology = Br J Audiol British Journal of Audiology=Br J Audiol;; British Journal of Audiology = Br. J. Audiol. British journal of audiology. Supplement = Br J Audiol Suppl British Journal of Audiology. Supplement = Br. J. Audiol. Suppl. British Journal of Biomedical Science = Brit J Biomed Sci British Journal of Biomedical Science = Brit. J. Biomed. Sci. British journal of biomedical science = Br J Biomed Sci British Journal of Biomedical Science=Br J Biomed Sci;; British Journal of Biomedical Science = Br. J. Biomed. Sci. British Journal of Canadian Studies = Brit J Can Stud British Journal of Canadian Studies = Brit. J. Can. Stud. British Journal of Cancer = Brit J Cancer British Journal of Cancer = Brit. J. Cancer British journal of cancer = Br J Cancer British Journal of Cancer=Br J Cancer;; British Journal of Cancer = Br. J. Cancer British Journal of Cancer. Supplement = Br. J. Cancer. Suppl. British Journal of Clinical Equipment = Brit J Clin Equip British Journal of Clinical Equipment = Brit. J. Clin. Equip. British Journal of Clinical Pharmacology = Brit J Clin Pharmaco British Journal of Clinical Pharmacology = Brit. J. Clin. Pharmaco. British journal of clinical pharmacology = Br J Clin Pharmacol British Journal of Clinical Pharmacology=Br J Clin Pharmacol;; British Journal of Clinical Pharmacology = Br. J. Clin. Pharmacol. British Journal of Clinical Practice = Brit J Clin Pract British Journal of Clinical Practice = Brit. J. Clin. Pract. British Journal of Clinical Practice = Br. J. Clin. Pract. British journal of clinical practice. Supplement = Br J Clin Pract Suppl British Journal of Clinical Practice. Symposium Supplement = Br. J. Clin. Pract. Symp. Suppl. British Journal of Clinical Psychology = Brit J Clin Psychol British Journal of Clinical Psychology = Brit. J. Clin. Psychol. British Journal of Clinical Psychology=Br J Clin Psychol;; British Journal of Clinical Psychology = Br. J. Clin. Psychol. British journal of community nursing = Br J Community Nurs British Journal of Criminology = Brit J Criminol British Journal of Criminology = Brit. J. Criminol. British Journal of Delinquency = Br J Delinquency British Journal of Delinquency = Br. J. Delinquency British Journal of Dermatology and Syphilis = Brit J Dermatol Syph British Journal of Dermatology and Syphilis = Brit. J. Dermatol. Syph. British Journal of Dermatology = Brit J Dermatol British Journal of Dermatology = Brit. J. Dermatol. British Journal of Dermatology=Br J Dermatol;; British Journal of Dermatology = Br. J. Dermatol. British Journal of Developmental Disabilities = Brit J Dev Disabil British Journal of Developmental Disabilities = Brit. J. Dev. Disabil. British Journal of Developmental Psychology = Brit J Dev Psychol British Journal of Developmental Psychology = Brit. J. Dev. Psychol. British Journal of Diseases of The Chest = Brit J Dis Chest British Journal of Diseases of The Chest = Brit. J. Dis. Chest British journal of diseases of the chest = Br J Dis Chest British Journal of Diseases of the Chest = Br. J. Dis. Chest British Journal of Disorders of Communication = Brit J Disord Commun British Journal of Disorders of Communication = Brit. J. Disord. Commun. British Journal of Disorders of Communication = Br. J. Disord. Commun. British Journal of Educational Psychology = Brit J Educ Psychol British Journal of Educational Psychology = Brit. J. Educ. Psychol. British Journal of Educational Psychology=Br J Educ Psychol;; British Journal of Educational Psychology = Br. J. Educ. Psychol. British Journal of Educational Studies = Brit J Educ Stud British Journal of Educational Studies = Brit. J. Educ. Stud. British Journal of Educational Technology = Brit J Educ Technol British Journal of Educational Technology = Brit. J. Educ. Technol. British journal of educational technology : journal of the Council for Educational Technology = Br J Educ Technol British Journal of Experimental Biology = Br J Exp Biol British Journal of Experimental Biology = Br. J. Exp. Biol. British Journal of Experimental Pathology = Brit J Exp Pathol British Journal of Experimental Pathology = Brit. J. Exp. Pathol. British journal of experimental pathology = Br J Exp Pathol British Journal of Experimental Pathology = Br. J. Exp. Pathol. British Journal of Family Planning = Brit J Fam Plan British Journal of Family Planning = Brit. J. Fam. Plan. British Journal of Family Planning = Br. J. Fam. Plann. British Journal of General Practice = Brit J Gen Pract British Journal of General Practice = Brit. J. Gen. Pract. British Journal of General Practice=Br J Gen Pract;; British Journal of General Practice = Br. J. Gen. Pract. British Journal of Guidance & Counselling = Brit J Guid Couns British Journal of Guidance & Counselling = Brit. J. Guid. Couns. British journal of guidance & counselling = Br J Guid Counc British Journal of Haematology = Brit J Haematol British Journal of Haematology = Brit. J. Haematol. British journal of haematology = Br J Haematol British Journal of Haematology=Br J Haematol;; British Journal of Haematology = Br. J. Haematol. British Journal of Healthcare Computing & Information Management = Brit J Healthc Comp British Journal of Healthcare Computing & Information Management = Brit. J. Healthc. Comp. British Journal of Health Psychology = Brit J Health Psych British Journal of Health Psychology = Brit. J. Health Psych. British journal of health psychology = Br J Health Psychol British Journal of Herpetology = Brit J Herpetol British Journal of Herpetology = Brit. J. Herpetol. British Journal of Hospital Medicine = Brit J Hosp Med British Journal of Hospital Medicine = Brit. J. Hosp. Med. British journal of hospital medicine = Br J Hosp Med British Journal of Hospital Medicine=Br J Hosp Med;; British Journal of Hospital Medicine = Br. J. Hosp. Med. British journal of hospital medicine (London, England : 2005) = Br J Hosp Med (Lond) British Journal of Industrial Medicine = Brit J Ind Med British Journal of Industrial Medicine = Brit. J. Ind. Med. British journal of industrial medicine = Br J Ind Med British Journal of Industrial Medicine = Br. J. Ind. Med. British Journal of Industrial Relations=Brit. J. Ind. Relat. British Journal of Industrial Relations = Brit J Ind Relat British Journal of Industrial Relations = Brit. J. Ind. Relat. British journal of international studies = Br J Int Stud British journal of law and society = Br J Law Soc British Journal of Learning Disabilities = Brit J Learn Disabil British Journal of Learning Disabilities = Brit. J. Learn. Disabil. British Journal of Management = Brit J Manage British Journal of Management = Brit. J. Manage. British Journal of Marketing = Brit J Market British Journal of Marketing = Brit. J. Market. British Journal of Mathematical and Statistical Psychology=Br J Math Stat Psychol;; British Journal of Mathematical and Statistical Psychology = Br. J. Math. Stat. Psychol. British Journal of Mathematical & Statistical Psychology = Brit J Math Stat Psy British Journal of Mathematical & Statistical Psychology = Brit. J. Math. Stat. Psy. British Journal of Medical Education = Brit J Med Educ British Journal of Medical Education = Brit. J. Med. Educ. British journal of medical education = Br J Med Educ British Journal of Medical Education = Br. J. Med. Educ. British Journal of Medical Hypnotism = Br. J. Med. Hypn. British journal of medical hypnotism : official organ of the British Society of Medical Hypnotists = Br J Med Hypn British Journal of Medical Psychology = Brit J Med Psychol British Journal of Medical Psychology = Brit. J. Med. Psychol. British Journal of Medical Psychology=Br J Med Psychol;; British Journal of Medical Psychology = Br. J. Med. Psychol. British Journal of Mental Subnormality = Brit J Ment Subnorm British Journal of Mental Subnormality = Brit. J. Ment. Subnorm. British Journal of Middle Eastern Studies = Brit J Middle E Stud British Journal of Middle Eastern Studies = Brit. J. Middle E. Stud. British Journal of Middle Eastern Studies = Brit Middle E Stud British Journal of Middle Eastern Studies = Brit. Middle E. Stud. British Journal of Music Education = Brit J Music Educ British Journal of Music Education = Brit. J. Music Educ. British Journal of Neurosurgery = Brit J Neurosurg British Journal of Neurosurgery = Brit. J. Neurosurg. British journal of neurosurgery = Br J Neurosurg British Journal of Neurosurgery=Br J Neurosurg;; British Journal of Neurosurgery = Br. J. Neurosurg. British Journal of Non-destructive Testing = Brit J Nondestr Test British Journal of Non-destructive Testing = Brit. J. Nondestr. Test. British Journal of Nursing = Br. J. Nurs. British journal of nursing (Mark Allen Publishing) = Br J Nurs British Journal of Nutrition = Brit J Nutr British Journal of Nutrition = Brit. J. Nutr. British Journal of Nutrition=Br J Nutr;; British Journal of Nutrition = Br. J. Nutr. British Journal of Obstetrics and Gynaecology = Brit J Obstet Gynaec British Journal of Obstetrics and Gynaecology = Brit. J. Obstet. Gynaec. British journal of obstetrics and gynaecology = Br J Obstet Gynaecol British Journal of Obstetrics and Gynaecology=Br J Obstet Gynaecol;; British Journal of Obstetrics and Gynaecology = Br. J. Obstet. Gynaecol. British Journal of Occupational Therapy = Brit J Occup Ther British Journal of Occupational Therapy = Brit. J. Occup. Ther. British Journal of Ophthalmology = Brit J Ophthalmol British Journal of Ophthalmology = Brit. J. Ophthalmol. British Journal of Ophthalmology=Br J Ophthalmol;; British Journal of Ophthalmology = Br. J. Ophthalmol. British Journal of Oral and Maxillofacial Surgery=Br J Oral Maxillofac Surg;; British Journal of Oral and Maxillofacial Surgery = Br. J. Oral Maxillofac. Surg. British Journal of Oral & Maxillofacial Surgery = Brit J Oral Max Surg British Journal of Oral & Maxillofacial Surgery = Brit. J. Oral Max. Surg. British Journal of Oral Surgery = Brit J Oral Surg British Journal of Oral Surgery = Brit. J. Oral Surg. British Journal of Oral Surgery = Br. J. Oral Surg. British journal of orthodontics = Br J Orthod British Journal of Orthodontics=Br J Orthod;; British Journal of Orthodontics = Br. J. Orthod. British journal of perioperative nursing : the journal of the National Association of Theatre Nurses = Br J Perioper Nurs British Journal of Pharmacology and Chemotherapy = Brit J Pharm Chemoth British Journal of Pharmacology and Chemotherapy = Brit. J. Pharm. Chemoth. British journal of pharmacology and chemotherapy = Br J Pharmacol Chemother British Journal of Pharmacology = Brit J Pharmacol British Journal of Pharmacology = Brit. J. Pharmacol. British journal of pharmacology = Br J Pharmacol British Journal of Pharmacology=Br J Pharmacol;; British Journal of Pharmacology = Br. J. Pharmacol. British Journal of Physiological Optics = Brit J Physiol Opt British Journal of Physiological Optics = Brit. J. Physiol. Opt. British Journal of Physiological Optics = Br. J. Physiol. Opt. British Journal of Plastic Surgery = Brit J Plast Surg British Journal of Plastic Surgery = Brit. J. Plast. Surg. British journal of plastic surgery = Br J Plast Surg British Journal of Plastic Surgery=Br J Plast Surg;; British Journal of Plastic Surgery = Br. J. Plast. Surg. British Journal of Political Science = Brit J Polit Sci British Journal of Political Science = Brit. J. Polit. Sci. British journal of political science = Br J Polit Sci British Journal of Politics & International Relations = Brit J Polit Int Rel British Journal of Politics & International Relations = Brit. J. Polit. Int. Rel. British Journal of Preventive and Social Medicine = Br. J. Prev. Soc. Med. British Journal of Preventive & Social Medicine = Brit J Prev Soc Med British Journal of Preventive & Social Medicine = Brit. J. Prev. Soc. Med. British journal of preventive & social medicine = Br J Prev Soc Med British Journal of Psychiatry = Brit J Psychiat British Journal of Psychiatry = Brit. J. Psychiat. British Journal of Psychiatry=Br J Psychiatry;; British Journal of Psychiatry = Br. J. Psychiatry British Journal of Psychiatry. Supplement=Br J Psychiatry Suppl;; British Journal of Psychiatry. Supplement = Br. J. Psychiatry. Suppl. British Journal of Psychology = Brit J Psychol British Journal of Psychology = Brit. J. Psychol. British Journal of Psychology=Br J Psychol;; British Journal of Psychology = Br. J. Psychol. British Journal of Psychology-general Section = B J Psychol-gen Sect British Journal of Psychology-general Section = B. J. Psychol-gen. Sect. British journal of psychology (London, England : 1953) = Br J Psychol British Journal of Psychology-medical Section = B J Psychol-med Sect British Journal of Psychology-medical Section = B. J. Psychol-med. Sect. British Journal of Psychology-statistical Section = B J Psychol-stat Sec British Journal of Psychology-statistical Section = B. J. Psychol-stat. Sec. British Journal of Radiology = Brit J Radiol British Journal of Radiology = Brit. J. Radiol. British Journal of Radiology=Br J Radiol;; British Journal of Radiology = Br. J. Radiol. British journal of radiology. Supplement = Br J Radiol Suppl British Journal of Radiology. Supplement = Br. J. Radiol. Suppl. British Journal of Religious Education = Brit J Relig Educ British Journal of Religious Education = Brit. J. Relig. Educ. British Journal of Rheumatology = Brit J Rheumatol British Journal of Rheumatology = Brit. J. Rheumatol. British journal of rheumatology = Br J Rheumatol British Journal of Rheumatology=Br J Rheumatol;; British Journal of Rheumatology = Br. J. Rheumatol. British journal of sexual medicine = Br J Sex Med British Journal of Sexual Medicine = Br. J. Sex. Med. British Journal of Social and Clinical Psychology = Brit J Soc Clin Psyc British Journal of Social and Clinical Psychology = Brit. J. Soc. Clin. Psyc. British Journal of Social and Clinical Psychology = Br. J. Soc. Clin. Psychol. British journal of social medicine = Br J Soc Med British Journal of Social Medicine = Br J Soc Med British Journal of Social Medicine = Br. J. Soc. Med. British Journal of Social Psychiatry = Brit J Soc Psychiat British Journal of Social Psychiatry = Brit. J. Soc. Psychiat. British Journal of Social Psychology = Brit J Soc Psychol British Journal of Social Psychology = Brit. J. Soc. Psychol. British Journal of Social Psychology=Br J Soc Psychol;; British Journal of Social Psychology = Br. J. Soc. Psychol. British Journal of Social Work = Brit J Soc Work British Journal of Social Work = Brit. J. Soc. Work British journal of social work = Br J Soc Work British Journal of Sociology = Brit J Sociol British Journal of Sociology = Brit. J. Sociol. British Journal of Sociology=Br J Sociol;; British Journal of Sociology = Br. J. Sociol. British Journal Of Sociology = Br. J. Sociol. British Journal of Sociology of Education = Brit J Sociol Educ British Journal of Sociology of Education = Brit. J. Sociol. Educ. British journal of sociology of education = Br J Sociol Educ British Journal Of Sociology Of Education = Br. J. Sociol. Educ. British Journal of Sports Medicine = Brit J Sport Med British Journal of Sports Medicine = Brit. J. Sport. Med. British journal of sports medicine = Br J Sports Med British Journal of Sports Medicine=Br J Sports Med;; British Journal of Sports Medicine = Br. J. Sports Med. British Journal of Statistical Psychology = Brit J Statist Psych British Journal of Statistical Psychology = Brit. J. Statist. Psych. British Journal of Surgery = Brit J Surg British Journal of Surgery = Brit. J. Surg. British Journal of Surgery=Br J Surg;; British Journal of Surgery = Br. J. Surg. British Journal of Teacher Education = Brit J Teach Educ British Journal of Teacher Education = Brit. J. Teach. Educ. British Journal of Theatre Nursing = Br. J. Theatre Nurs. British Journal of Tuberculosis and Diseases of The Chest = Brit J Tuberc Dis Ch British Journal of Tuberculosis and Diseases of The Chest = Brit. J. Tuberc. Dis. Ch. British Journal of Urology = Brit J Urol British Journal of Urology = Brit. J. Urol. British journal of urology = Br J Urol British Journal of Urology=Br J Urol;; British Journal of Urology = Br. J. Urol. British Journal of Venereal Diseases = Brit J Vener Dis British Journal of Venereal Diseases = Brit. J. Vener. Dis. British Journal of Venereal Diseases = Br. J. Vener. Dis. British Journal On Alcohol and Alcoholism = Brit J Alcohol Alcoh British Journal On Alcohol and Alcoholism = Brit. J. Alcohol Alcoh. British Library Journal = Brit Libr J British Library Journal = Brit. Libr. J. British Library Occasional Papers = Brit Lib Oc British Library Occasional Papers = Brit. Lib. Oc. British Library Research = Brit Lib Ser British Library Research = Brit. Lib. Ser. British Library Research & Development Reports = Br Lib R D British Library Research & Development Reports = Br. Lib. R. D. British Medical Bulletin = Brit Med Bull British Medical Bulletin = Brit. Med. Bull. British medical bulletin = Br Med Bull British Medical Bulletin=Br Med Bull;; British Medical Bulletin = Br. Med. Bull. British Medical Journal = Brit Med J British Medical Journal = Brit. Med. J. British medical journal = Br Med J British Medical Journal = Br. Med. J. British medical journal (Clinical research ed.) = Br Med J (Clin Res Ed) British Medical Journal (Clinical Research Edition) = Br. Med. J. (Clin. Res. Ed.) British Micropalaeontological Society Series = Br Micropal British Micropalaeontological Society Series = Br. Micropal. British Military and Naval Medicine, 1600-1830 = Clio Med British Military and Naval Medicine, 1600-1830 = Clio. Med. British Military Intervention and The Struggle for Jordan: King Hussein, Nasser and The Middle East Crisis, 1955-1958 = Brit Polit Soc British Military Intervention and The Struggle for Jordan: King Hussein, Nasser and The Middle East Crisis, 1955-1958 = Brit. Polit. Soc. British Missionary Enterprise Since 1700 = Christ Soc Mod World British Missionary Enterprise Since 1700 = Christ. Soc. Mod. World. British Museum Occasional Paper = Brit Mus Occas Pap British Museum Occasional Paper = Brit. Mus. Occas. Pap. British Mycological Society Symposium Series = Br Mycol Sy British Mycological Society Symposium Series = Br. Mycol. Sy. British Mycological Society Transactions = Br Mycol Soc Trans British Mycological Society Transactions = Br. Mycol. Soc. Trans. British National Cinema, Second Edition = Natl Cine British National Cinema, Second Edition = Natl. Cine. British Periodicals and Romantic Identity: The Literary Lower Empire = Ninet-century Major British Periodicals and Romantic Identity: The Literary Lower Empire = Ninet-century. Major. British Phycological Journal = Brit Phycol J British Phycological Journal = Brit. Phycol. J. British Plant Growth Regulator Group Monographs = Br Plant Gr British Plant Growth Regulator Group Monographs = Br. Plant Gr. British Plastics and Rubber = Brit Plast Rubber British Plastics and Rubber = Brit. Plast. Rubber British Plastics = Br Plastics British Plastics = Br. Plastics British Policy in Aden and Protectorates 1955-67: Last Oupost of A Middle East Empire = Brit Foreign Col Pol British Policy in Aden and Protectorates 1955-67: Last Oupost of A Middle East Empire = Brit. Foreign. Col. Pol. British Policy Towards The European Community = Brit Foreign Col Pol British Policy Towards The European Community = Brit. Foreign. Col. Pol. British Politics and Society = Brit Polit Soc British Politics and Society = Brit. Polit. Soc. British Politics = Brit Polit British Politics = Brit. Polit. British Polymer Journa = Br. Polym. J. British Polymer Journal = Brit Polym J British Polymer Journal = Brit. Polym. J. British Popular Cinema = Brit Pop Cine British Popular Cinema = Brit. Pop. Cine. British Poultry Science = Brit Poultry Sci British Poultry Science = Brit. Poultry Sci. British poultry science = Br Poult Sci British Poultry Science=Br Poult Sci;; British Poultry Science = Br. Poult. Sci. British Review of Economic Issues=Brit. Rev. Econ. Issues British review of economic issues = Br Rev Econ Issues British School At Athens Studies = Br Sch Athens Stud British School At Athens Studies = Br. Sch. Athens Stud. British science news = Br Sci News British Society for Back Pain Research Series = Brit Back P British Society for Back Pain Research Series = Brit. Back P. British Society for Plant Growth Regulation Monographs = Brit Soc Pl British Society for Plant Growth Regulation Monographs = Brit. Soc. Pl. British Society for the History of Science = British J. Hist. Sci. British Studies in Applied Linguistics = Brit S Ap L British Studies in Applied Linguistics = Brit. S. Ap. L. British Sugar Beet Review = Brit Sugar Beet Rev British Sugar Beet Review = Brit. Sugar Beet Rev. British Tax Review = Brit Tax Rev British Tax Review = Brit. Tax Rev. British Telecommunications Engineering = Brit Telecommun Eng British Telecommunications Engineering = Brit. Telecommun. Eng. British Telecom Technology Journal = Brit Telecom Technol British Telecom Technology Journal = Brit. Telecom Technol. British Veterinary Journal = Brit Vet J British Veterinary Journal = Brit. Vet. J. British Veterinary Journal = Br. Vet. J. British Victorian Women's Periodicals: Beauty, Civilization, and Poetry = Ninet-century Major British Victorian Women's Periodicals: Beauty, Civilization, and Poetry = Ninet-century. Major. British Welding Journal = Br Weld J British Welding Journal = Br. Weld. J. British Women's Cinema = Brit Pop Cine British Women's Cinema = Brit. Pop. Cine. British Women Writers and The French Revolution: Citizens of The World = Palgrave Stud Enligh British Women Writers and The French Revolution: Citizens of The World = Palgrave. Stud. Enligh. British Women Writers and The Profession of Literary Criticism, 1789-1832 = Palgrave Stud Enligh British Women Writers and The Profession of Literary Criticism, 1789-1832 = Palgrave. Stud. Enligh. Brittonia = Brittonia Broadband Access Communication Technologies Iii = P Soc Photo-opt Ins Broadband Access Communication Technologies Iii = P. Soc. Photo-opt. Ins. Broadband Access Communication Technologies Ii = Proc Spie Broadband Access Communication Technologies Ii = Proc. Spie. Broadband Access Communication Technologies Ii = P Soc Photo-opt Ins Broadband Access Communication Technologies Ii = P. Soc. Photo-opt. Ins. Broadband Access Communication Technologies Iv = Proc Spie Broadband Access Communication Technologies Iv = Proc. Spie. Broadband Access Communication Technologies Iv = P Soc Photo-opt Ins Broadband Access Communication Technologies Iv = P. Soc. Photo-opt. Ins. Broadband Access Communication Technologies = Proc Spie Broadband Access Communication Technologies = Proc. Spie. Broadband Access Communication Technologies = P Soc Photo-opt Ins Broadband Access Communication Technologies = P. Soc. Photo-opt. Ins. Broadband Access Communication Technologies V = Proc Spie Broadband Access Communication Technologies V = Proc. Spie. Broadband Access Networks:technologies and Deployments = Opt Netw Broadband Access Networks:technologies and Deployments = Opt. Netw. Broadband Access Systems = P Soc Photo-opt Ins Broadband Access Systems = P. Soc. Photo-opt. Ins. Broadband Communications = Ifip Trans C Broadband Communications = Ifip. Trans. C. Broadband Communications, Ii = Ifip Trans C Broadband Communications, Ii = Ifip. Trans. C. Broadband Economics: Lessons From Japan = Routl Stud Glob Comp Broadband Economics: Lessons From Japan = Routl. Stud. Glob. Comp. Broadband European Networks and Multimedia Services = P Soc Photo-opt Ins Broadband European Networks and Multimedia Services = P. Soc. Photo-opt. Ins. Broadband Internet Deployment in Japan = Adv Inform Technol Broadband Internet Deployment in Japan = Adv. Inform. Technol. Broadband Mobile Multimedia: Techniques and Applications = Wirel Netw Mob Commu Broadband Mobile Multimedia: Techniques and Applications = Wirel. Netw. Mob. Commu. Broadband Networking Technologies = P Soc Photo-opt Ins Broadband Networking Technologies = P. Soc. Photo-opt. Ins. Broadband Networks: Strategies and Technologies = Proc Spie Broadband Networks: Strategies and Technologies = Proc. Spie. Broadband Networks: Strategies and Technologies = P Soc Photo-opt Ins Broadband Networks: Strategies and Technologies = P. Soc. Photo-opt. Ins. Broadband Opto-electrical Receivers in Standard Cmos = Analog Circ Sig Proc Broadband Opto-electrical Receivers in Standard Cmos = Analog. Circ. Sig. Proc. Broadband Satellite Communication Systems and The Challenges of Mobility = Int Fed Info Proc Broadband Satellite Communication Systems and The Challenges of Mobility = Int. Fed. Info. Proc. Broadband Strategies and Technologies for Wide Area and Local Access Networks = P Soc Photo-opt Ins Broadband Strategies and Technologies for Wide Area and Local Access Networks = P. Soc. Photo-opt. Ins. Broadband Wireless Access and Local Networks: Mobile Wimax and Wifi = Artech Hse Mob Comm Broadband Wireless Access and Local Networks: Mobile Wimax and Wifi = Artech. Hse. Mob. Comm. Broad Band X-ray Spectra of Cosmic Sources = Adv Space Res Broad Band X-ray Spectra of Cosmic Sources = Adv. Space. Res. Broad Band X-ray Spectra of Cosmic Sources = Adv Space Res-series Broad Band X-ray Spectra of Cosmic Sources = Adv. Space. Res-series. Broadcast and Internet Indecency: Defining Free Speech = Lea Commun Ser Broadcast and Internet Indecency: Defining Free Speech = Lea. Commun. Ser. Broadcasting Enters The Marketplace = Curr Deb Br Broadcasting Enters The Marketplace = Curr. Deb. Br. Broadcasting in Japan = Rout Library Ed Jpn Broadcasting in Japan = Rout. Library. Ed. Jpn. Broadening The Spectrum of Clinical Uses of Antiepileptic Drugs = Roy Soc Med Int Cong Broadening The Spectrum of Clinical Uses of Antiepileptic Drugs = Roy. Soc. Med. Int. Cong. Broadway and Corporate Capitalism; The Rise of The Professional-managerial Class, 1900-1920 = Palg Stud Theat Perf Broadway and Corporate Capitalism; The Rise of The Professional-managerial Class, 1900-1920 = Palg. Stud. Theat. Perf. Brock/springer Series in Contemporary Bioscience = Brock Spr S Brock/springer Series in Contemporary Bioscience = Brock. Spr. S. Brodogradnja = Brodogradnja Broken Cisterns of African American Education: Academic Performance and Achievement in The Post-brown Era = Res Afr Am Educ Broken Cisterns of African American Education: Academic Performance and Achievement in The Post-brown Era = Res. Afr. Am. Educ. Broken Symmetries = Lect Notes Phys Broken Symmetries = Lect. Notes. Phys. Brokered World: Go-betweens and Global Intelligence, 1770-1820 = Upps Stud Hist Sci Brokered World: Go-betweens and Global Intelligence, 1770-1820 = Upps. Stud. Hist. Sci. Bromatologia I Chemia Toksykologiczna = Bromatol Chem Toksyk Bromatologia I Chemia Toksykologiczna = Bromatol. Chem. Toksyk. Brominated Flame Retardants = Handb Environ Chem Brominated Flame Retardants = Handb. Environ. Chem. Bromley local history = Bromley Local Hist Bronches = Bronches Bronchiectasis = Eur Respir Monogr Bronchiectasis = Eur. Respir. Monogr. Bronchogenic Carcinoma = Pneumol Kol Bronchogenic Carcinoma = Pneumol. Kol. Bronchology and Bronchoesophagology: State of The Art = Int Congr Ser Bronchology and Bronchoesophagology: State of The Art = Int. Congr. Ser. Broncho-pneumologie = Bronchopneumologie Broncho-Pneumologie = Bronchopneumologie. Bronte Society transactions. Bronte Society = Bronte Soc Trans Bronte Studies = Bronte Stud Bronte Studies = Bronte Stud. Brookhaven Symposia in Biology = Brookhaven Sym Biol Brookhaven Symposia in Biology = Brookhaven Sym. Biol. Brookhaven symposia in biology = Brookhaven Symp Biol Brookhaven Symposia in Biology = Brookhaven Symp. Biol. Brookings Bulletin = Brookings Bull. Brookings bulletin (Washington, D.C. : 1962) = Brookings Bull Brookings Dialogues On Public Policy = Brookings D Brookings Dialogues On Public Policy = Brookings D. Brookings Papers On Economic Activity = Brookings Pap Eco Ac Brookings Papers On Economic Activity = Brookings Pap. Eco. Ac. Brookings papers on economic activity = Brookings Pap Econ Act Brookings Papers on Economic Activity=Brookings Pap. Econ. Act. Brookings Review = Brookings Rev. Brookings-Wharton Papers on Financial Services=Brookings-Wharton Pap. Finan. Services Brookings-Wharton Papers on Urban Affairs=Brookings-Wharton Pap. Urban Aff. Brooklyn journal of international law = Brooklyn J Int Law Brooklyn law review = Brooklyn Law Rev Brouwer Meets Husserl: On The Phenomenology of Choice Sequences = Synth Libr Brouwer Meets Husserl: On The Phenomenology of Choice Sequences = Synth. Libr. Broward review = Broward Rev Brown Boveri Review = Brown Boveri Rev Brown Boveri Review = Brown Boveri Rev. Brown Dwarfs and Extrasolar Planets = Astr Soc P Brown Dwarfs and Extrasolar Planets = Astr. Soc. P. Brown Dwarfs = Iau Symp Brown Dwarfs = Iau. Symp. Brownfield Sites Iii: Prevention, Assessment, Rehabilitation and Development of Brownfield Sites = Wit Trans Ecol Envir Brownfield Sites Iii: Prevention, Assessment, Rehabilitation and Development of Brownfield Sites = Wit. Trans. Ecol. Envir. Brownfield Sites Iv: Prevention, Assessment, Rehabilitation and Development of Brownfield Sites = Wit Trans Ecol Envir Brownfield Sites Iv: Prevention, Assessment, Rehabilitation and Development of Brownfield Sites = Wit. Trans. Ecol. Envir. Browning Institute Studies = Browning Inst Stud Browning Institute Studies = Browning Inst. Stud. Brown Judaic Studies = Brown Jud S Brown Judaic Studies = Brown Jud. S. Bruchids and Legumes : Economics, Ecology and Coevolution = Series Entom Bruchids and Legumes : Economics, Ecology and Coevolution = Series. Entom. Bruniana & Campanelliana = Bruniana Campanell Bruniana & Campanelliana = Bruniana Campanell. Bruns' Beitrage fur klinische Chirurgie = Bruns Beitr Klin Chir Bruns' Beitrage fur Klinische Chirurgie = Bruns Beitr. Klin. Chir. Bruns' Beitrage zur klinischen Chirurgie = Bruns Beitr Klinischen Chir Brussels Convention On Jurisdiction and The Enforcement of Foreign Judgements = Irish Ctr E Brussels Convention On Jurisdiction and The Enforcement of Foreign Judgements = Irish. Ctr. E. Bruun Memorial Lectures, 1991 = Ioc Tech S Bruun Memorial Lectures, 1991 = Ioc. Tech. S. Bruxelles medical = Brux Med Bruxelles Medical = Brux. Med. Bryn Mawr Classical Review = BMCRev Bryologist = Bryologist Bryology and Lichenology in Belgium = Mem S R Bot Bryology and Lichenology in Belgium = Mem. S. R. Bot. Bsas Publication = Bsas Publ Bsas Publication = Bsas Publ. BSCS pamphlets = BSCS Pam BSCS Pamphlets = BSCS Pam. Bsg Proceedings 16 = Bsg Proc Bsg Proceedings 16 = Bsg Proc. Bsg Proceedings = Bsg Proc Bsg Proceedings = Bsg Proc. BSG Proceedings = BSG Proc. B & Ss-bocconi & Springer Series = B & Ss Bocc Spr Ser B & Ss-bocconi & Springer Series = B & Ss. Bocc. Spr. Ser. Btta Review-british Thoracic and Tuberculosis Association = Btta Rev Brit Tho Tu Btta Review-british Thoracic and Tuberculosis Association = Btta Rev. Brit. Tho. Tu. B.T.T.A. review = BTTA Rev BTTA Review = BTTA Rev. Bt Technology Journal = Bt Technol J Bt Technology Journal = Bt Technol. J. Bubble Dynamics and Interface Phenomena = Fluid Mec A Bubble Dynamics and Interface Phenomena = Fluid. Mec. A. Bubbles, Drops, and Particles in Non-newtonian Fluids, Second Edition = Chem Ind-ser Bubbles, Drops, and Particles in Non-newtonian Fluids, Second Edition = Chem. Ind-ser. Bubbly Flows: Analysis, Modelling and Calculation = Heat Mass Transf Bubbly Flows: Analysis, Modelling and Calculation = Heat. Mass. Transf. Bucherei des Augenarztes = Buch Augenarzt Bucherei des Augenarztes = Buch. Augenarzt. Buchreihe Der Anglia = Buchr Anglia Buchreihe Der Anglia = Buchr. Anglia Bucina: The Historic Brass Society Series = Bucina Hist Bras Soc Bucina: The Historic Brass Society Series = Bucina. Hist. Bras. Soc. Bucknell Review = Bucknell Re Bucknell Review = Bucknell Re. Bucld 27: Annual Boston University Conference On Language Development, Vols 1 and 2, Proceedings = Proc Ann Bucld Bucld 27: Annual Boston University Conference On Language Development, Vols 1 and 2, Proceedings = Proc. Ann. Bucld Budapest régiségei = BudReg Buddhism and Islam On The Silk Road = Encounters Asia Buddhism and Islam On The Silk Road = Encounters. Asia. Buddhism in Australia: Traditions in Change = Routl Crit Stud Budd Buddhism in Australia: Traditions in Change = Routl. Crit. Stud. Budd. Buddhism in The Public Sphere: Reorienting Global Interdependence = Routl Crit Stud Budd Buddhism in The Public Sphere: Reorienting Global Interdependence = Routl. Crit. Stud. Budd. Buddhism, Power and Political Order = Rout Crit Stud Buddh Buddhism, Power and Political Order = Rout. Crit. Stud. Buddh. Buddhism, Power and Political Order = Routl Crit Stud Budd Buddhism, Power and Political Order = Routl. Crit. Stud. Budd. Buddhisms = Buddhisms Buddhist Behavioral Codes and The Modern World = Contr St R Buddhist Behavioral Codes and The Modern World = Contr. St. R. Buddhist Ethics and Modern Society = Contr St R Buddhist Ethics and Modern Society = Contr. St. R. Buddhist Manuscript Cultures: Knowledge, Ritual and Art = Routl Crit Stud Budd Buddhist Manuscript Cultures: Knowledge, Ritual and Art = Routl. Crit. Stud. Budd. Buddhist Monasticism in East Asia: Places of Practice = Routl Crit Stud Budd Buddhist Monasticism in East Asia: Places of Practice = Routl. Crit. Stud. Budd. Buddhist Nuns in Taiwan and Sri Lanka: A Critique of The Feminist Perspective = Routl Crit Stud Budd Buddhist Nuns in Taiwan and Sri Lanka: A Critique of The Feminist Perspective = Routl. Crit. Stud. Budd. Buddhist Rituals of Death and Rebirth = Routl Crit Stud Budd Buddhist Rituals of Death and Rebirth = Routl. Crit. Stud. Budd. Budgeting, Financial Management, and Acquisition Reform in The U.s. Department of Defense = Res Public Manag Budgeting, Financial Management, and Acquisition Reform in The U.s. Department of Defense = Res. Public. Manag. Budget-maximizing Bureaucrat = Pitt S Pol Budget-maximizing Bureaucrat = Pitt. S. Pol. Buffalo and Goats in Asia : Genetic Diversity and Its Applications = Aciar Proc Buffalo and Goats in Asia : Genetic Diversity and Its Applications = Aciar. Proc. Buffalo Bulletin = Buffalo Bull Buffalo Bulletin = Buffalo Bull. Buffalo law review = Buffalo Law Rev Buffalo Law Review=Buffalo Law Rev. Buffalo Law Review = Buffalo Law Rev Buffalo Law Review = Buffalo Law Rev. Bugle Resounding = Shades Blue Gray Ser Bugle Resounding = Shades. Blue. Gray. Ser. Building and Environment = Build Environ Building and Environment = Build. Environ. Building A Project Work Breakdown Structure: Visualizing Objectives, Deliverables, Activities, and Schedules = Esi Int Proj Manag S Building A Project Work Breakdown Structure: Visualizing Objectives, Deliverables, Activities, and Schedules = Esi. Int. Proj. Manag. S. Building A Trustworthy State in Post-socialist Transition = Polit Evol Inst Chan Building A Trustworthy State in Post-socialist Transition = Polit. Evol. Inst. Chan. Building Automation = Signals Commun Techn Building Automation = Signals. Commun. Techn. Building Bridges: Between Mathematics and Computer Science = Bolyai Soc Math Stud Building Bridges: Between Mathematics and Computer Science = Bolyai. Soc. Math. Stud. Building Bridges: Collaboration Within and Beyond The Academic Library = Chandos Inf Prof Ser Building Bridges: Collaboration Within and Beyond The Academic Library = Chandos. Inf. Prof. Ser. Building Deck Waterproofing = Am Soc Test Mater Building Deck Waterproofing = Am. Soc. Test. Mater. Building Democracy and Civil Society East of The Elbe: Essays in Honour of Edmund Mokrzycki = Routl Contemp Russ E Building Democracy and Civil Society East of The Elbe: Essays in Honour of Edmund Mokrzycki = Routl. Contemp. Russ. E. Building Facade Maintenance, Repair, and Inspection = Am Soc Test Mater Building Facade Maintenance, Repair, and Inspection = Am. Soc. Test. Mater. Building Global Connections = Iamslic C S Building Global Connections = Iamslic. C. S. Building Healthy Communities for Positive Youth Development = Search I Ser Dev Att Building Healthy Communities for Positive Youth Development = Search. I. Ser. Dev. Att. Building History: The Shoah in Art, Memory, and Myth = Mcgill Euro Studies Building History: The Shoah in Art, Memory, and Myth = Mcgill. Euro. Studies. Building Integrated Photovoltaic Thermal Systems: for Sustainable Developments = Rsc Energy Ser Building Integrated Photovoltaic Thermal Systems: for Sustainable Developments = Rsc. Energy. Ser. Building Intuition: Insights From Basic Operations Management Models and Principles = Int Ser Oper Res Man Building Intuition: Insights From Basic Operations Management Models and Principles = Int. Ser. Oper. Res. Man. Building Learning Experiences in A Changing World = Adv Bus Educ Train Building Learning Experiences in A Changing World = Adv. Bus. Educ. Train. Building Object Categories in Developmental Time = Carn S Cogn Building Object Categories in Developmental Time = Carn. S. Cogn. Building operating management = Build Oper Manage Building Operating Management = Build. Oper. Manage. Building Research and Information = Build Res Inf Building Research and Information = Build. Res. Inf. Buildings and The Environment = Environ Sci Eng Tech Buildings and The Environment = Environ. Sci. Eng. Tech. Building Science = Build. Sci. Building Sealants : Materials, Properties, and Performance = Am Soc Test Mater Building Sealants : Materials, Properties, and Performance = Am. Soc. Test. Mater. Building Services Engineering Research and Technology = Build. Serv. Eng. Res. Technol. Building Services Engineering Research & Technology = Build Serv Eng Res T Building Services Engineering Research & Technology = Build. Serv. Eng. Res. T. Building Simulation = Build. Simul. Building Simulation = Build Simul-china Building Simulation = Build. Simul-china. Buildings: Theory and Applications = Grad Texts Math Buildings: Theory and Applications = Grad. Texts. Math. Building Stone Decay: From Diagnosis to Conservation = Geol Soc Spec Publ Building Stone Decay: From Diagnosis to Conservation = Geol. Soc. Spec. Publ. Building Strong Families = Fdn Family Building Strong Families = Fdn. Family. Building Supply Chain Excellence in Emerging Economies = Int Ser Oper Res Man Building Supply Chain Excellence in Emerging Economies = Int. Ser. Oper. Res. Man. Building systems design = Build Syst Des Building Systems Design = Build Syst Des Building Systems Design = Build. Syst. Des. Building The Cape Verde Islands = Springer Theses-reco Building The Cape Verde Islands = Springer. Theses-reco. Building The E-service Society: E-commerce, E-business, and E-government = Int Fed Info Proc Building The E-service Society: E-commerce, E-business, and E-government = Int. Fed. Info. Proc. Building The European Capacity in Operational Oceanography, Proceedings = Elsev Oceanogr Serie Building The European Capacity in Operational Oceanography, Proceedings = Elsev. Oceanogr. Serie. Building The Information Society = Int Fed Info Proc Building The Information Society = Int. Fed. Info. Proc. Building Tightly Integrated Software Development Environments: The Ipsen Approach = Lect Notes Comput Sc Building Tightly Integrated Software Development Environments: The Ipsen Approach = Lect. Notes. Comput. Sc. Building With Glass = Vdi Bericht Building With Glass = Vdi. Bericht. Building Workforce Competencies in Career and Technical Education = Adult Educ Spec Top Building Workforce Competencies in Career and Technical Education = Adult. Educ. Spec. Top. Built environment = Built Environ Buletin i Universitetit Shteteror te Tiranes. Seria shkencat mjekesore = Bul Univ Shtet Tiranes Ser Shk Mjekesore Buletin keluarga = Bul Keluarga Buletin stiintific. Sectiunea de stiinte medicale. Academia Republicii Populare Romane = Bul Stiint Sect Stiint Medicale Acad Republicii Pop Romane Buletinul Institutului Politehnic din Iaşi = Bul. Inst. Politeh. Iaşi. Secţ. I. Mat. Mec. Teor. Fiz. Buletinul Societăţii numismatice române = BSocNumRom Buletinul Ştiinţific al Institutului Politehnic Cluj-Napoca = Bul. Ştiinţ. Inst. Politehn. Cluj-Napoca Ser. Mat. Apl. Mec. Buletinul Ştiinţific al Universităţii din Baia Mare = Bul. Ştiinţ. Univ. Baia Mare Ser. B Buletinul Ştiinţific al Universităţii "Politehnica" din Timișoara = Bul. Ştiinţ. Univ. Politeh. Timiș. Ser. Mat. Fiz. Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Ser Agricultura Series = B U Agr Med Vet Agr Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Ser Agricultura Series = B. U. Agr. Med. Vet. Agr. Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Horticultura Series = B U Agr Med Vet Hort Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Horticultura Series = B. U. Agr. Med. Vet. Hort. Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Medicina Veterinara Series = B U Agr Med Vet M-ve Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Medicina Veterinara Series = B. U. Agr. Med. Vet. M-ve. Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Zootehni Si Biotehnologii Series = B U Agr Med Vet Zoot Buletinul Universitatii De Stiinte Agricole Si Medicina Veterinaria Cluj-napoca Seria Zootehni Si Biotehnologii Series = B. U. Agr. Med. Vet. Zoot. Bulgarian Chemical Communications = Bulg Chem Commun Bulgarian Chemical Communications = Bulg. Chem. Commun. Bulgarian Historical Review-revue Bulgare D Histoire = Bulg Hist Rev-rev B Bulgarian Historical Review-revue Bulgare D Histoire = Bulg. Hist. Rev-rev. B. Bulgarian Journal of Agricultural Science = Bulg J Agric Sci Bulgarian Journal of Agricultural Science = Bulg. J. Agric. Sci. Bulgarian Journal of Physics = Bulgar. J. Phys. Bulgarian Journal of Physics = Bulg. J. Phys. Bulk and Graded Nanometals = Solid State Phenomen Bulk and Graded Nanometals = Solid. State. Phenomen. Bulk and Graded Nanometals = Sol St Phen Bulk and Graded Nanometals = Sol. St. Phen. Bulk Crystal Growth of Electronic, Optical & Optoelectronic Materials = Wiley Ser Mater Elec Bulk Crystal Growth of Electronic, Optical & Optoelectronic Materials = Wiley. Ser. Mater. Elec. Bulk Materials Handling: Real-time Analysis = Imeche Sem Bulk Materials Handling: Real-time Analysis = Imeche. Sem. Bulk Materials: Research, Technology and Applications = Chem Eng Method Tech Bulk Materials: Research, Technology and Applications = Chem. Eng. Method. Tech. Bulk Metallic Glasses = Mater Res Soc Symp P Bulk Metallic Glasses = Mater. Res. Soc. Symp. P. Bulk Nuclear Properties = Aip Conf Proc Bulk Nuclear Properties = Aip. Conf. Proc. Bull = Bulletin of the Georgian Academy of Sciences Bulletí arqueològic. Reial societat arqueològica tarraconense. Boletín arqueológico. Real sociedad arqueológica tarragonese = BATarr Bulletin - Academy of Medicine of New Jersey = Bull Acad Med N J Bulletin - Alameda County Dental Society = Bull Alameda Cty Dent Soc Bulletin, Alameda County Dental Society = Bull. Alameda Cty. Dent. Soc. Bulletin - American Academy of Arts and Sciences. American Academy of Arts and Sciences = Bull Am Acad Arts Sci Bulletin (American Association for the History of Nursing) = Bull Am Assoc Hist Nurs Bulletin, American Association for the History of Nursing = Bull. Am. Assoc. Hist. Nurs. Bulletin, American Association of Dental Editors = Bull. Am. Assoc. Dent. Ed. Bulletin - American Association of Hospital Dentists = Bull Am Assoc Hosp Dent Bulletin, American Association of Hospital Dentists = Bull. Am. Assoc. Hosp. Dent. Bulletin - American Protestant Hospital Association = Bull Am Protestant Hosp Assoc Bulletin, American Protestant Hospital Association = Bull. Am. Protestant Hosp. Assoc. Bulletin angewandte Geologie = Bull. angew. Geol. Bulletin (annuel) de l'École antique de Nîmes = BEcAntNimes Bulletin antieke beschaving. Annual Papers on Classical Archaeology = BABesch Bulletin Antieke Beschaving = BABesch Bulletin archéologique de Provence = BAProv Bulletin archéologique du Comité des travaux historique = BCTH Bulletin archéologique du Comité des travaux historiques et scientifiques. Antiquités nationales = BAParis Bulletin. Association medicale haitienne = Bull Assoc Med Haiti Bulletin / Atlantic-Cape May County Dental Society = Bull Atl Cape May Cty Dent Soc Bulletin, Atlantic-Cape May County Dental Society = Bull. Atl. Cape May Cty. Dent. Soc. Bulletin - Bibliotheque royale Albert Ier. Bibliotheque royale Albert Ier = Bull Bibl R Albert Bulletin biologique de la France et de la Belgique = Bull Biol Fr Belg Bulletin Biologique de la France et de la Belgique = Bull. Biol. Fr. Belg. Bulletin Bodenkundliche Gesellschaft der Schweiz = Bull. Bodenkd. Ges. Schweiz Bulletin Brazilian Mathematical Society = Bull Braz Math Soc Bulletin Brazilian Mathematical Society = Bull. Braz. Math. Soc. Bulletin - British Society for Middle Eastern Studies. British Society for Middle Eastern Studies = Bull Br Soc Middle East Stud Bulletin. Bronx County Dental Society = Bull Bronx Cty Dent Soc Bulletin. Brooklyn. Jewish Hospital = Bull Brooklyn Bulletin. Buffalo. Millard Fillmore Hospital = Bull Millard Fillmore Hosp Buffalo Bulletin = Bull. Cl. Sci. Math. Nat. Sci. Math. Bulletin - Cercle Benelux d'histoire de la pharmacie = Bull Cercle Benelux Hist Pharm Bulletin. Chicago Medical Society = Bull Chic Med Soc Bulletin - Cincinnati Dental Society = Bull Cincinnati Dent Soc Bulletin, Cincinnati Dental Society = Bull. Cincinnati Dent. Soc. Bulletin. Columbus Dental Society = Columbus Dent Soc Bull Bulletin - Cosmos Club. Cosmos Club (Washington, D.C.) = Bull Cosm Club Bulletin d'archéologie algérienne = BAA Bulletin d'archéologie algérienne = BAAlger Bulletin d'archéologie luxembourgeoise = BALux Bulletin d'archéologie marocaine = BAM Bulletin d'archéologie marocaine = BAMaroc Bulletin d'archéologie sud-est européenne = BASudEstEur Bulletin d'audiophonologie = Bull Audiophonol Bulletin, Dayton Dental Society = Bull. Dayton Dent. Soc. Bulletin. Dayton (Ohio) Dental Society = Bull Dayton Dent Soc Bulletin D Ecologie = B Ecol Bulletin D Ecologie = B. Ecol. Bulletin de correspondance hellénique = BCH Bulletin de correspondance hellénique = BCH Bulletin De Correspondance Hellenique = B Corresp Hellenique Bulletin De Correspondance Hellenique = B. Corresp. Hellenique Bulletin de Groupement europeen pour la recher che scientifique en stomatologie & odontologie = Bull Group Eur Rech Sci Stomatol Odontol Bulletin de la Bibliotheque nationale. Bibliotheque nationale (France) = Bull Bibl Nat Bulletin de l'Academie de chirurgie dentaire = Bull Acad Chir Dent (Paris) Bulletin de l'Academie de Chirurgie Dentaire = Bull. Acad. Chir. Dent. (Paris) Bulletin de l'Academie dentaire = Bull Acad Dent (Paris) Bulletin de l'Academie Dentaire = Bull. Acad. Dent. (Paris) Bulletin de l'Academie lorraine des sciences = Bull Acad Soc Lorraines Sci Bulletin de l'Academie nationale de chirurgie dentaire (1983) = Bull Acad Natl Chir Dent Bulletin de l'Academie Nationale de Chirurgie Dentaire = Bull. Acad. Natl. Chir. Dent. Bulletin De L Academie Nationale De Medecine = B Acad Nat Med Paris Bulletin De L Academie Nationale De Medecine = B. Acad. Nat. Med. Paris. Bulletin de l'Academie nationale de medecine = Bull Acad Natl Med Bulletin de l'Academie Nationale de Medecine = Bull. Acad. Natl. Med. Bulletin de L Academie Nationale De Medecine=Bull Acad Natl Med;; Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Biologiques = B Acad Pol Sci Biol Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Biologiques = B. Acad. Pol. Sci. Biol. Bulletin de l'Academie polonaise des sciences. Serie des sciences biologiques = Bull Acad Pol Sci Biol Bulletin de l'Academie Polonaise des Sciences. Serie des Sciences Biologiques = Bull. Acad. Pol. Sci. [Biol.] Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Chimiques = B Acad Pol Sci-chim Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Chimiques = B. Acad. Pol. Sci-chim. Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences De La Terre = B Pol Acad Sci-earth Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences De La Terre = B. Pol. Acad. Sci-earth. Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Geologiques Et Geographiques = B Acad Pol Sci Geo G Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Geologiques Et Geographiques = B. Acad. Pol. Sci. Geo. G. Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Mathematiques Astronomiques Et Physiques = B Acad Pol Sci Smap Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Mathematiques Astronomiques Et Physiques = B. Acad. Pol. Sci. Smap. Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Techniques = B Acad Pol Sci Tech Bulletin De L Academie Polonaise Des Sciences-serie Des Sciences Techniques = B. Acad. Pol. Sci. Tech. Bulletin de l'Academie royale de medecine de Belgique = Bull Acad R Med Belg Bulletin de l'Academie Royale de Medecine de Belgique = Bull. Acad. R. Med. Belg. Bulletin De L Academie Veterinaire De France = B Acad Vet France Bulletin De L Academie Veterinaire De France = B. Acad. Vet. France Bulletin de l'Academie veterinaire de France = Bull Acad Vet Fr Bulletin de l'Academie Veterinaire de France = Bull. Acad. Vet. Fr. Bulletin de la Classe des Lettres de l'Académie Royale de BelgiqueN = BAB Bulletin de la Classe des lettres et des sciences morales et politiques. Academie royale des sciences, des lettres et des beaux-arts de Belgique. Classe des lettres et des sciences morales et politiques = Bull Cl Lett Sci Morales Polit Bulletin De La Classe Des Sciences Academie Royale De Belgique = B Cl Sci Ac Roy Belg Bulletin De La Classe Des Sciences Academie Royale De Belgique = B. Cl. Sci. Ac. Roy. Belg. Bulletin de la Classe des Sciences, Academie Royale de Belgique = Bull. Cl. Sci. Acad. R. Belg. Bulletin de la Faculté des Lettres de Mulhouse = BFLM Bulletin de la Federation des societes de gynecologie et dobstetrique de langue francaise = Bull Fed Soc Gynecol Obstet Lang Fr Bulletin de la Federation des Societes de Gynecologie et d Obstetrique de Langue Francaise = Bull. Fed. Soc. Gynecol. Obstet. Lang. Fr. Bulletin de la Murithienne = Bull. Murithienne Bulletin de la Section d'histoire moderne et contemporaine. France. Comite des travaux historiques et scientifiques. Section d'histoire moderne et contemporaine = Bull Sect Hist Mod Contemp Bulletin de la Société archéologique champenoise = BSocAChamp Bulletin de la Societe archeologique du Finistere. Societe archeologique du Finistere = Bull Soc Archeol Finistere Bulletin de la societe archeologique, historique et artistique Le vieux papier pour l'etude de la vie et des moeurs d'autrefois = Bull Soc Archeol Hist Artist Vieux Pap Bulletin de la Societe archeologique, historique, litteraire & scientifique du Gers. Societe archeologique, historique, litteraire et scientifique du Gers = Bull Soc Archeol Hist Litt Sci Gers Bulletin de la Societe belge d'etudes geographiques. Tijdschrift van de Belgische Vereniging voor Aardrijkskundige studies. Societe belge d'etudes geographiques = Bull Soc Belg Etud Geogr Bulletin de la Societe belge d'ophtalmologie = Bull Soc Belge Ophtalmol Bulletin de la Societe Belge d'Ophtalmologie = Bull. Soc. Belge Ophtalmol. Bulletin de la Societe Belge D Ophtalmologie=Bull Soc Belge Ophtalmol;; Bulletin De La Societe Botanique De France-actualites Botaniques = B Soc Bot Fr-actual Bulletin De La Societe Botanique De France-actualites Botaniques = B. Soc. Bot. Fr-actual. Bulletin De La Societe Botanique De France = B Soc Bot Fr Bulletin De La Societe Botanique De France = B. Soc. Bot. Fr. Bulletin de la Société Botanique de France = Bull. Soc. Bot. Fr. Bulletin De La Societe Botanique De France-lettres Botaniques = B Soc Bot Fr-lett Bulletin De La Societe Botanique De France-lettres Botaniques = B. Soc. Bot. Fr-lett. Bulletin De La Societe Botanique Suisse = B Soc Bot Suisse Bulletin De La Societe Botanique Suisse = B. Soc. Bot. Suisse Bulletin De La Societe Chimique De France = B Soc Chim Fr Bulletin De La Societe Chimique De France = B. Soc. Chim. Fr. Bulletin de la Societe chimique de France = Bull Soc Chim Fr Bulletin de la Societe Chimique de France = Bull. Soc. Chim. Fr. Bulletin De La Societe Chimique De France Partie Ii-chimie Moleculaire Organique Et Biologique = B Soc Chim Fr Ii-ch Bulletin De La Societe Chimique De France Partie Ii-chimie Moleculaire Organique Et Biologique = B. Soc. Chim. Fr. Ii-ch. Bulletin De La Societe Chimique De France Partie I-physicochimie Des Systemes Liquides Electrochimie Catalyse Genie Chimique = B Soc Chim Fr I-phys Bulletin De La Societe Chimique De France Partie I-physicochimie Des Systemes Liquides Electrochimie Catalyse Genie Chimique = B. Soc. Chim. Fr. I-phys. Bulletin de la Societe d'agriculture, sciences et arts de la Sarthe. Societe d'agriculture, sciences et arts de la Sarthe = Bull Soc Agric Sci Arts Sarthe Bulletin de la Société d'archéologie copte = BACopt Bulletin de la Societe de Borda (Dax, France : 1876) = Bull Soc Borda Bulletin De La Societe De Chimie Biologique = B Soc Chim Biol Bulletin De La Societe De Chimie Biologique = B. Soc. Chim. Biol. Bulletin de la Societe de chimie biologique = Bull Soc Chim Biol (Paris) Bulletin de la Societe de Chimie Biologique = Bull. Soc. Chim. Biol. (Paris) Bulletin de la Societe de l'histoire du protestantisme francais (1852) = Bull Soc Hist Protestant Fr Bulletin de la Société de linguistique de Paris = BSL Bulletin de la Societe de pathologie exotique (1990) = Bull Soc Pathol Exot Bulletin De La Societe De Pathologie Exotique = B Soc Pathol Exot Bulletin De La Societe De Pathologie Exotique = B. Soc. Pathol. Exot. Bulletin de la Societe de Pathologie Exotique = Bull. Soc Pathol. Exot. Bulletin de la Societe de Pathologie Exotique = Bull. Soc. Pathol. Exot. Bulletin de la Societe de pathologie exotique et de ses filiales = Bull Soc Pathol Exot Filiales Bulletin de la Societe de Pathologie Exotique et de Ses Filiales = Bull. Soc. Pathol. Exot. Filiales Bulletin de la Societe de pharmacie de Bordeaux = Bull Soc Pharm Bord Bulletin de la Societe de pharmacie de Strasbourg = Bull Soc Pharm Strasb Bulletin de la Societe des amis des sciences et des lettres de Poznan. Seria C: Medecine = Bull Soc Amis Sci (Med) (Poznan) Bulletin de la Societe des amis du vieux Toulon = Bull Soc Amis Vieux Toulon Bulletin de la Societe des etudes oceaniennes (Polynesie orientale) = Bull Soc Etud Oceaniennes Bulletin de la Societe des lettres, sciences et arts de la Correze. Societe des lettres, sciences et arts de la Correze = Bull Soc Lett Sci Arts Correze Bulletin de la Société des Sciences et des Lettres de Łódź = Bull. Soc. Sci. Lett. Łódź Sér. Rech. Déform. Bulletin De La Societe Des Sciences Medicales Du Grand-duche De Luxembourg = B Soc Sci Med Lux Bulletin De La Societe Des Sciences Medicales Du Grand-duche De Luxembourg = B. Soc. Sci. Med. Lux. Bulletin de la Societe des sciences medicales du Grand-Duche de Luxembourg = Bull Soc Sci Med Grand Duche Luxemb Bulletin de la Societe des Sciences Medicales du Grand-Duche de Luxembourg = Bull. Soc. Sci. Med. Grand. Duche Luxemb. Bulletin de la Societe Des Sciences Medicales Du Grand-Duche De Luxembourg=Bull Soc Sci Med Grand Duche Luxemb;; Bulletin de la Societe d'etudes des Hautes-Alpes. Societe d'etudes des Hautes-Alpes = Bull Soc Etud His Alpes Bulletin de la Societe d'histoire moderne. Societe d'histoire moderne (Paris, France) = Bull Soc Hist Mod Bulletin de la Société entomologique de France = Bull. Soc. entomol. Fr. Bulletin de la société entomologique Suisse = Bull. soc. entomol. Suisse Bulletin De La Societe Francaise De Ceramique = B Soc Fr Ceram Bulletin De La Societe Francaise De Ceramique = B. Soc. Fr. Ceram. Bulletin De La Societe Francaise De Dermatologie Et De Syphiligraphie = B Soc Fr Dermatol Sy Bulletin De La Societe Francaise De Dermatologie Et De Syphiligraphie = B. Soc. Fr. Dermatol. Sy. Bulletin de la Societe francaise de dermatologie et de syphiligraphie = Bull Soc Fr Dermatol Syphiligr Bulletin de la Societe Francaise de Dermatologie et de Syphiligraphie = Bull. Soc. Fr. Dermatol. Syphiligr. Bulletin de la Société française d'égyptologie = BSFE Bulletin de la Société française de numismatique = BNumParis Bulletin de la Société française de numismatique = BSFN Bulletin de la Société française de philosophie = BSPh Bulletin de la Société française de photogrammétrie et télédétection = Bull. Soc. fr. photogramm. télédétect. Bulletin de la Societe Francaise de Physique = Bull. Soc. Fr. Phys. Bulletin De La Societe Francaise Mineralogie Et De Cristallographie = B Soc Fr Mineral Cr Bulletin De La Societe Francaise Mineralogie Et De Cristallographie = B. Soc. Fr. Mineral. Cr. Bulletin de la société fribourgeoise des sciences naturelles = Bull. soc. fribg. sci. nat. Bulletin De La Societe Geologique De France = B Soc Geol Fr Bulletin De La Societe Geologique De France = B. Soc. Geol. Fr. Bulletin de la Societe Geologique de France = Bull. Soc. Geol. Fr. Bulletin de la Société Géologique de France = Bull. Soc. Géol. Fr. Bulletin de la Societe historique et archeologique du Perigord. Societe historique et archeologique du Perigord = Bull Soc Hist Archeol Perigord Bulletin de la Societe industrielle de Mulhouse = Bull Soc Ind Mulhouse Bulletin de la Societe internationale de chirurgie = Bull Soc Int Chir Bulletin de la Societe Internationale de Chirurgie = Bull. Soc. Int. Chir. Bulletin de la Société internationale pour l'étude de la philosophie médiévale = BPHM Bulletin de la Societe languedocienne de geographie = Bull Soc Languedoc Geogr Bulletin de la Societe libanaise d'histoire de la medecine = Bull Soc Liban Hist Med Bulletin De La Societe Mathematique De France = B Soc Math Fr Bulletin De La Societe Mathematique De France = B. Soc. Math. Fr. Bulletin de la Société Mathématique de France = Bull. Soc. Math. France Bulletin de la Societe medicale d'Afrique noire de langue francaise = Bull Soc Med Afr Noire Lang Fr Bulletin de la Societe Medicale d'Afrique Noire de Langue Francaise = Bull. Soc. Med. Afr. Noire Lang. Fr. Bulletin de la Société mycologique de France = Bull. Soc. mycol. Fr. Bulletin de la Société nationale des antiquaires de France = BAntFr Bulletin de la Société nationale des antiquaires de France = BSAF Bulletin de la Societe nationale des antiquaires de France. Societe nationale des antiquaires de France = Bull Soc Nat Antiq Fr Bulletin de la société neuchâteloise des sciences naturelles = Bull. soc. neuchâtel. sci. nat. Bulletin De La Societe Phycologique De France = B Soc Phycol Fr Bulletin De La Societe Phycologique De France = B. Soc. Phycol. Fr. Bulletin De La Societe Prehistorique Francaise = Bull Soc Prehist Fr Bulletin De La Societe Prehistorique Francaise = Bull. Soc. Prehist. Fr. Bulletin de la Societe royale belge de gynecologie et d'obstetrique = Bull Soc R Belge Gynecol Obstet Bulletin de la Societe Royale Belge de Gynecologie et d'Obstetrique = Bull. Soc. R. Belge Gynecol. Obstet. Bulletin De La Societe Royale De Botanique De Belgique = B Soc Roy Bot Belg Bulletin De La Societe Royale De Botanique De Belgique = B. Soc. Roy. Bot. Belg. Bulletin de la Société Royale des Sciences de Liège = Bull. Soc. Roy. Sci. Liège Bulletin de la Société royale forestière de Belgique = Bull. Soc. r. for. Belg. Bulletin de la Société toulousaine d'études classiques = BSTEC Bulletin de la Société Vaudoise des sciences naturelles = Bull. Soc. Vaud. sci. nat. Bulletin De La Societe Zoologique De France = B Soc Zool Fr Bulletin De La Societe Zoologique De France = B. Soc. Zool. Fr. Bulletin De La Societe Zoologique De France-evolution Et Zoologie = B Soc Zool Fr Bulletin De La Societe Zoologique De France-evolution Et Zoologie = B. Soc. Zool. Fr. Bulletin de l'Association de geographes francais = Bull Assoc Geogr Fr Bulletin de l'Association des anatomistes = Bull Assoc Anat (Nancy) Bulletin de l'Association des Anatomistes = Bull. Assoc. Anat. (Nancy) Bulletin de L Association Des Anatomistes=Bull Assoc Anat (Nancy);; Bulletin de l'Association des diplomes de microbiologie de la Faculte de pharmacie de Nancy = Bull Assoc Diplomes Microbiol Fac Pharm Nancy Bulletin De L Association Francaise Pour L Etude Du Cancer = B Assoc Fr Etud Canc Bulletin De L Association Francaise Pour L Etude Du Cancer = B. Assoc. Fr. Etud. Canc. Bulletin de l'Association francaise pour l'etude du cancer = Bull Assoc Fr Etud Cancer Bulletin de l'Association Francaise pour l'Etude du Cancer = Bull. Assoc. Fr. Etud. Cancer Bulletin de l'Association Guillaume Bude. Association Guillaume Bude = Bull Assoc Guillaume Bude Bulletin de l'Association Guillaume Budé = BAGB Bulletin de l'Association Guillaume Budé = BAssBude Bulletin de l'Association pour la Défense des Intérêts du Jura = Bull. Assoc. Déf. Intérêts Jura Bulletin de l'Association Pro Aventico = BProAvent Bulletin de l'Association tunisienne du planning familial : publication interne = Bull Assoc Tunis Plan Fam Bulletin de l'Ecole francaise d'Extreme-Orient = Bull Ec Fr Extr Orient Bulletin de liaison. Centre d'études des peintures murales romaines = BPeintRom Bulletin de liaison de demographie africaine = Bull Liaison Demogr Afr Bulletin de liaison de la Société des amis de la Bibliothèque Salomon Reinach = BSocBiblReinach Bulletin de l'Institut d'Egypte = Bull Inst Egypte Bulletin de l'Institut fondamental d'Afrique noire. Serie B: Sciences humaines = Bull Inst Fond Afr Noire Ser B Bulletin de l'Institut français d'archéologie orientale = BIAO Bulletin de l'Institut français d'archéologie orientale = BIFAO Bulletin de l'Institut francais d'archeologie orientale. Institut francais d'archeologie orientale du Caire = Bull Inst Fr Archeol Orient Bulletin de l'Institut historique belge de Rome = BBelgRom Bulletin de l'Institut historique belge de Rome = BIBR Bulletin de l'Institut national de la sante et de la recherche medicale = Bull Inst Natl Sante Rech Med Bulletin de l'Institut National de la Sante et de la Recherche Medicale = Bull. Inst. Natl. Sante Rech. Med. Bulletin De L Institut Pasteur = B I Pasteur Bulletin De L Institut Pasteur = B. I. Pasteur Bulletin de l'Institut Pasteur = Bull. Inst. Pasteur Bulletin De L Institut Royal Des Sciences Naturelles De Belgique-sciences De La Terre = Bull Inst R Sc N B-s Bulletin De L Institut Royal Des Sciences Naturelles De Belgique-sciences De La Terre = Bull. Inst. R. Sc. N. B-s. Bulletin de littérature ecclésiastique = BLE Bulletin de l'Office International des Epizooties = Bull. Off. Int. Epizoot. Bulletin De Medecine Legale Et De Toxicologie Medicale = B Med Leg Tox Med Bulletin De Medecine Legale Et De Toxicologie Medicale = B. Med. Leg. Tox. Med. Bulletin De Medecine Legale Urgence Medicale Centre Anti-poisons = B Med Leg Urge Med Bulletin De Medecine Legale Urgence Medicale Centre Anti-poisons = B. Med. Leg. Urge. Med. Bulletin de medecine legale, urgence medicale, centre anti-poisons = Bull Med Leg Urgence Med Cent Antipoisons Bulletin de methodologie sociologique : BMS = Bull Methodol Sociol Bulletin de microscopie appliquee = Bull Micr Appl Bulletin De Mineralogie = B Mineral Bulletin De Mineralogie = B. Mineral. Bulletin de philosophie medievale = Bull Philos Mediev Bulletin De Physio-pathologie Respiratoire = B Physio-pathol Resp Bulletin De Physio-pathologie Respiratoire = B. Physio-pathol. Resp. Bulletin de physio-pathologie respiratoire = Bull Physiopathol Respir (Nancy) Bulletin de Physio-Pathologie Respiratoire = Bull. Physiopathol. Respir. (Nancy) Bulletin De Psychologie = B Psychol Bulletin De Psychologie = B. Psychol. Bulletin Der Schweizerischen Akademie Der Medizinischen Wissenschaften = B Schweiz Akad Med Bulletin Der Schweizerischen Akademie Der Medizinischen Wissenschaften = B. Schweiz. Akad. Med. Bulletin der Schweizerischen Akademie der Medizinischen Wissenschaften = Bull Schweiz Akad Med Wiss Bulletin der Schweizerischen Akademie der Medizinischen Wissenschaften = Bull. Schweiz. Akad. Med. Wiss. Bulletin des antiquités luxembourgeoises = BAL Bulletin des antiquités luxembourgeoises = BAntLux Bulletin Des Centres De Recherches Exploration-production Elf Aquitaine = B Cent Rech Expl Bulletin Des Centres De Recherches Exploration-production Elf Aquitaine = B. Cent. Rech. Expl. Bulletin des etudes portugaises = Bull Etud Port Bres Bulletin des etudes Valeryennes = Bull Etud Valeryennes Bulletin des infirmieres catholiques du Canada = Bull Infirm Cathol Can Bulletin des Infirmieres Catholiques du Canada = Bull. Infirm. Cathol. Can. Bulletin des Leo Baeck Instituts. Leo Baeck Institute = Bull Leo Baeck Inst Bulletin des Musées royaux d'Art et d'Histoire = BMAH Bulletin des Musées royaux d'art et d'histoire, Bruxelles = BMusBrux Bulletin des recherches agronomiques de Gembloux = Bull. rech. agron. Gembloux Bulletin Des Sciences Mathematiques = B Sci Math Bulletin Des Sciences Mathematiques = B. Sci. Math. Bulletin des Sciences Mathématiques = Bull. Sci. Math. Bulletin des seances- Academie royale des sciences d'outre-mer = Bull Seances Acad R Sci Outre Mer Bulletin Des Societes Chimiques Belges = B Soc Chim Belg Bulletin Des Societes Chimiques Belges = B. Soc. Chim. Belg. Bulletin des Societes Chimiques Belges = Bull. Soc. Chim. Belg. Bulletin des societes d'ophtalmologie de France = Bull Soc Ophtalmol Fr Bulletin des Societes d'Ophtalmologie de France = Bull. Soc. Ophtalmol. Fr. Bulletin des travaux de l'Institut national du patrimoine. Comptes rendus = BTravTun Bulletin de théologie ancienne et médiévale = BTh Bulletin d'études orientales = BEtOr Bulletin d'études Orientales = Bull. études Orient. Bulletin d'etudes orientales / Institut francais de Damas = Bull Etud Orient Bulletin d'études orientales, publié par l'Institut Français de Damas = BEO Bulletin d'études préhistoriques alpines = BPrehistAlp Bulletin de vulgarisation forestière = Bull. vulg. for. Bulletin d'histoire de l'electricite = Bull Hist Electr Bulletin d'histoire politique = Bull Hist Polit Bulletin d'hygiene. Health bulletin. Montreal (Quebec). Dept. of Health = Bull Hyg Bulletin d'information de l'Association internationale pour l'étude de la mosaïque antique = BAssMosAnt Bulletin d'information de l'Association internationale pour l'étude de la mosaïque antique = BCord Bulletin d'information de l'Association internationale pour l'étude de la mosaïque antique = BullAIEMA Bulletin d'information. Federation pharmaceutique mediterraneenne = Bull Inform Fed Pharm Mediterr Bulletin d’information Office national des forêts = Bull. inf. Off. natl. for. Bulletin D Informations Scientifiques Et Techniques = Bull Info Sci Techn Bulletin D Informations Scientifiques Et Techniques = Bull. Info. Sci. Techn. Bulletin D Informations Scientifiques Et Techniques Du Commissariat A L Energie Atomique = B Inform Sci Tec Cea Bulletin D Informations Scientifiques Et Techniques Du Commissariat A L Energie Atomique = B. Inform. Sci. Tec. Cea. Bulletin d’informations techniques = Bull. inf. tech. Bulletin Du Cancer = B Cancer Bulletin Du Cancer = B. Cancer Bulletin du cancer = Bull Cancer Bulletin Du Cancer=Bull Cancer;; Bulletin du Cancer = Bull. Cancer (Paris) Bulletin du Cancer. Radiotherapie = Bull. Cancer. Radiother. Bulletin du cancer. Radiotherapie : journal de la Societe francaise du cancer : organe de la societe francaise de radiotherapie oncologique = Bull Cancer Radiother Bulletin Du Centre De Recherches Elf Exploration Production = Bull Cent Rech Elf E Bulletin Du Centre De Recherches Elf Exploration Production = Bull. Cent. Rech. Elf E. Bulletin du Centre de recherches et d'enseignement de l'antiquité, Angers = BAngers Bulletin du Centre d'histoire economique et sociale de la region lyonnaise. Centre d'histoire economique et sociale de la region lyonnaise = Bull Cent Hist Econ Soc Reg Lyon Bulletin du Centre international d'étude des textiles anciens = BTextilAnc Bulletin du Cercle d'études numismatiques = BCercleNum Bulletin du Cercle Vaudois de Botanique = Bull. Cercle Vaudois Bot. Bulletin du C. E. R. P = Bull Cerp Bulletin du Groupement Europeen pour la Recherche Scientifique en Stomatologie et Odontologie = Bull. Group. Eur. Rech. Sci. Stomatol. Odontol. Bulletin du Groupement international pour la recherche scientifique en stomatologie = Bull Group Int Rech Sci Stomatol Bulletin du Groupement International pour la Recherche Scientifique en Stomatologie = Bull. Group. Int. Rech. Sci. Stomatol. Bulletin du Groupement International pour la Recherche Scientifique en Stomatologie et Odontologie = Bull. Group. Int. Rech. Sci. Stomatol. Odontol. Bulletin Du Groupement International Pour la Recherche Scientifique En Stomatologie Et Odontologie=Bull Group Int Rech Sci Stomatol Odontol;; Bulletin du Groupement international pour la recherche scientifique en stomatologie & odontologie = Bull Group Int Rech Sci Stomatol Odontol Bulletin du laboratoire du Musée du Louvre = BLaborMusLouvre Bulletin du Musée d'anthropologie préhistorique de Monaco = BMusMonaco Bulletin du Musée de Beyrouth = BMB Bulletin du Musée de Beyrouth = BMusBeyrouth Bulletin du Musée hongrois des beaux-arts = BMusHongr Bulletin du Musée national de Varsovie = BMusVars Bulletin Du Museum National D Histoire Naturelle-section B Adansonia = B Mus Natl Hist Nat Bulletin Du Museum National D Histoire Naturelle-section B Adansonia = B Mus. Natl. Hist. Nat. Bulletin du STATEC. Luxembourg. Service central de la statistique et des etudes economiques = Bull Statec Bulletin economique et social du Maroc = Bull Econ Soc Maroc Bulletin, Essex County Dental Society = Bull. Essex Cty. Dent. Soc. Bulletin et memoires de l'Academie royale de medecine de Belgique = Bull Mem Acad R Med Belg Bulletin et Memoires de l'Academie Royale de Medecine de Belgique = Bull. Mem. Acad. R. Med. Belg. Bulletin Et Memoires de L Academie Royale De Medecine De Belgique=Bull Mem Acad R Med Belg;; Bulletin et memoires de la Societe des chirurgiens de Paris = Bull Mem Soc Chir Paris Bulletin et Memoires de la Societe des Chirurgiens de Paris = Bull. Mem. Soc. Chir. Paris Bulletin (Eugenics Society (London, England)) = Bull Eugen Soc Bulletin europeen de physiopathologie respiratoire = Bull Eur Physiopathol Respir Bulletin Europeen de Physiopathologie Respiratoire = Bull. Eur. Physiopathol. Respir. Bulletin Europeen De Physiopathologie Respiratoire-clinical Respiratory Physiology = B Eur Physiopath Res Bulletin Europeen De Physiopathologie Respiratoire-clinical Respiratory Physiology = B. Eur. Physiopath. Res. Bulletin Forestry Commission = Bull. For. Comm. Bulletin for International Fiscal Documentation = B Int Fiscal Doc Bulletin for International Fiscal Documentation = B. Int. Fiscal Doc. Bulletin for International Fiscal Documentation=Bull. Int. Fiscal Doc. Bulletin for the History of Chemistry = Bull. Hist. Chem. Bulletin Francais De La Peche Et De La Pisciculture = B Fr Peche Piscic Bulletin Francais De La Peche Et De La Pisciculture = B. Fr. Peche Piscic. Bulletin (Gandhigram Institute of Rural Health and Family Welfare Trust) = Bull Gandhigram Inst Rural Health Fam Welf Trust Bulletin - Geisinger Medical Center = Bull Geisinger Bulletin Geodesique = B Geod Bulletin Geodesique = B. Geod. Bulletin Geological Society of America = Bull. Geol. Soc. Am. Bulletin Geological Survey of Canada = Bull. Geol. Surv. Can. Bulletin. Georgetown University. Medical Center = Bull Georgetown Univ Med Cent Bulletin Hispanique = B Hispanique Bulletin Hispanique = B. Hispanique Bulletin hispanique = Bull Hisp Bulletin historique et scientifique de l'Auvergne = Bull His Sci Auvergne Bulletin, Hospital for Joint Diseases = Bull. Hosp. Jt. Dis. Bulletin / Hospital For Joint Diseases=Bull Hosp Jt Dis;; Bulletin (Hospital for Joint Diseases (New York, N.Y.)) = Bull Hosp Jt Dis Bulletin. Hospital for Special Surgery = Bull Hosp Spec Surg Bulletin. Hudson County Dental Society, Jersey City = Bull Hudson Cty Dent Soc Bulletin - Institute for Medical Research, Kuala Lumpur = Bull Inst Med Res Kuala Lumpur Bulletin (Institute of Medical Ethics (Great Britain)) = IME bull Bulletin Institute of Mining and Metallurgy = Bull. Inst. Min. Metall. Bulletin International De L Academie Polonaise Des Sciences Et Des Lettres, Classe De Medecine = Bull Int Acad Pol Sci Let Cl Med Bulletin international des services de sante des armees de terre, de mer et de l'air = Bull Int Serv Sante Armees Terre Mer Air Bulletin. Jami'at al-Iskandariyah. Kulliyat al-Tibb = Bull Alexandria Fac Bulletin. Jersey City. Margaret Hague Maternity Hospital = Bull Jersey City Margaret Hague Mat Hosp Bulletin. John Rylands University Library of Manchester = Bull J Rylands Univ Libr Manchester Bulletin. J. Paul Getty Museum of Art = BulletinGetty Bulletin. Kresge Eye Institute = Bull Kresge Eye Inst Bulletin Mathematical Association of India = Bull. Math. Assoc. India Bulletin Mathematique De La Societe Des Sciences Mathematiques De Roumanie = B Math Soc Sci Math Bulletin Mathematique De La Societe Des Sciences Mathematiques De Roumanie = B. Math. Soc. Sci. Math. Bulletin, McGuire Clinic and St. Luke's Hospital. Richmond. St. Luke's Hospital. McGuire Clinic = Bull McGuire Clin St Lukes Hosp Richmond St Lukes Hosp McGuire Clin Bulletin Medecine Legale Toxicologie = B Med Leg Toxicol Bulletin Medecine Legale Toxicologie = B. Med. Leg. Toxicol. Bulletin medecine legale, toxicologie = Bull Med Leg Toxicol Bulletin medical = Bull Med Bulletin medical. Revue medicale francaise. Guide du praticien = Bull Med Rev Med Fr Guide Prat Bulletin Mensuel De La Societe Linneenne De Lyon = B Mens Soc Linn Lyon Bulletin Mensuel De La Societe Linneenne De Lyon = B. Mens. Soc. Linn. Lyon Bulletin Mensuel De La Societe Linneenne De Lyon = Bull Mens Soc Linn L Bulletin Mensuel De La Societe Linneenne De Lyon = Bull. Mens. Soc. Linn. L. Bulletin Mensuel de la Société Linnéenne de Lyon = Bull. Mens. Soc. Linn. Lyon Bulletin mensuel de la Societe veterinaire pratique de France = Bull Mens Soc Vet Prat Fr Bulletin mensuel - Societe de medecine militaire francaise = Bull Mens Soc Med Mil Fr Bulletin Mensuel, Societe de Medecine Militaire Francaise = Bull. Mens. Soc. Med. Mil. Fr. Bulletin / Midtown Dental Society = Bull Midtown Dent Soc Bulletin, Midtown Dental Society = Bull. Midtown Dent. Soc. Bulletin / Monmouth-Ocean County Dental Society = Bull Monmouth Ocean Cty Dent Soc Bulletin, Monmouth-Ocean County Dental Society = Bull. Monmouth. Ocean Cty. Dent. Soc. Bulletin. Montgomery-Bucks Dental Society = Bull Montg Bucks Dent Soc Bulletin monumental = BMon Bulletin Monumental = B Monumental Bulletin Monumental = B. Monumental Bulletin. Moore-White Medical Foundation, Los Angeles = Bull Moore White Med Found Los Angel Bulletin - Mount Desert Island Biological Laboratory, Salisbury Cove, Maine = Bull Mt Desert Isl Biol Lab Salisb Cove Maine Bulletin municipal officiel de la ville de Marseille = Bull Munic Off Ville Mars Bulletin - Musees royaux des beaux-arts de Belgique. Musees royaux des beaux-arts de Belgique = Bull Mus Rov Beaux Arts Belg Bulletin. Museum of Fine Arts, Boston = BMusFA Bulletin. Museums of Art and Archaeology, University of Michigan = BMusMich Bulletin (National Clearinghouse for Poison Control Centers (U.S.)) = Bull Natl Clgh Poison Control Cent Bulletin. National Institutes of Health (U.S.) = Bull Natl Inst Health Bulletin, National Medical and Dental Association and National Advocates Society = Bull. Natl. Med. Dent. Assoc. Natl. Advocates Soc. Bulletin (National Medical and Dental Association (U.S)). = Bull Natl Med Dent Assoc Natl Advocates Soc Bulletin-national Music Council = Bulletin-natl Music Bulletin-national Music Council = Bulletin-natl. Music Bulletin - National Tuberculosis and Respiratory Disease Association = Bull Natl Tuberc Respir Dis Assoc Bulletin, National Tuberculosis and Respiratory Disease Association = Bull. Natl. Tuberc. Respir. Dis. Assoc. Bulletin - National Tuberculosis Association = Bull Natl Tuberc Assoc Bulletin, National Tuberculosis Association = Bull. Natl. Tuberc. Assoc. Bulletin. New England Medical Center = Bull New Engl Med Cent Bulletin New Jersey Academy of Science = Bull Nj Acad Sci Bulletin New Jersey Academy of Science = Bull. Nj. Acad. Sci. Bulletin - New Jersey Society of Dentistry for Children = Bull N J Soc Dent Child Bulletin. New York Medical College = Bulletin NY Med Coll Bulletin (New York State Archeological Association : 1987) = Bull J N Y State Archeol Assoc Bulletin. Ninth District Dental Society of the State of New York = Bull Ninth Dist Dent Soc Bulletin Norges Geologiske Undersoekels = Bull. Nor. Geol. Unders. Bulletin - Northern District Dental Society = Bull North Dist Dent Soc Bulletin, Northern District Dental Society = Bull. North. Dist. Dent. Soc. Bulletin - N. Z. Society of Periodontology = Bull N Z Soc Periodontol Bulletin, NZ Society of Periodontology = Bull. N. Z. Soc. Periodontol. Bulletin of Academy of Dentistry for the Handicapped = Bull Acad Dent Handicap Bulletin of Academy of Dentistry for the Handicapped = Bull. Acad. Dent. Handicap. Bulletin of anesthesia history = Bull Anesth Hist Bulletin of Animal Behaviour = Bull. Anim. Behav. Bulletin of Animal Health and Production in Africa = Bull. Anim. Health Prod. Afr. Bulletin of animal health and production in Africa. Bulletin des sante et production animales en Afrique = Bull Anim Health Prod Afr Bulletin of bibliography (Westwood, Mass. : 1979) = Bull Bibliogr Bulletin of Biomathematics = Bull. Biomath. Bulletin of British Byzantine Studies = BBrByzSt Bulletin of Canadian Petroleum Geology = B Can Petrol Geol Bulletin of Canadian Petroleum Geology = B. Can. Petrol. Geol. Bulletin of Canadian Petroleum Geology = Bull. Can. Petrol. Geol. Bulletin of Central Research Institute Fukuoka University = Bull. Central Res. Inst. Fukuoka Univ. Bulletin of clinical neurosciences = Bull Clin Neurosci Bulletin of Clinical Neurosciences = Bull. Clin. Neurosci. Bulletin of Comparative Labour Relations = Bull Comparat Lab Re Bulletin of Comparative Labour Relations = Bull. Comparat. Lab. Re. Bulletin of Concerned Asian Scholars = B Concern Asia Schol Bulletin of Concerned Asian Scholars = B. Concern. Asia. Schol. Bulletin of concerned Asian scholars = Bull Concern Asian Sch Bulletin of Czechoslovak law = Bull Czechoslovak Law Bulletin of Department of General Education = Bull. Dept. Gen. Ed. College Sci. Tech. Nihon Univ. Bulletin of Earthquake Engineering = B Earthq Eng Bulletin of Earthquake Engineering = B. Earthq. Eng. Bulletin of Earthquake Engineering = Bull. Earthquake Eng. Bulletin of ECerS = Bull. ECerS Bulletin of Economic Research = B Econ Res Bulletin of Economic Research = B. Econ. Res. Bulletin of economic research = Bull Econ Res Bulletin of Economic Research=Bull. Econ. Res. Bulletin of Electrochemistry = B Electrochem Bulletin of Electrochemistry = B. Electrochem. Bulletin of Electrochemistry = Bull. Electrochem. Bulletin of endemic diseases = Bull Endem Dis (Baghdad) Bulletin of Endemic Diseases = Bull. Endem. Dis. (Baghdad) Bulletin of Engineering Geology and The Environment = B Eng Geol Environ Bulletin of Engineering Geology and The Environment = B. Eng. Geol. Environ. Bulletin of Engineering Geology and the Environment = Bull. Eng. Geol. Env. Bulletin of Engineering Geology and the Environment = Bull. Eng. Geol. Environ. Bulletin of Entomological Research = B Entomol Res Bulletin of Entomological Research = B. Entomol. Res. Bulletin of entomological research = Bull Entomol Res Bulletin of Entomological Research = Bull. Entomol. Res. Bulletin of Environmental Contamination and Toxicology = B Environ Contam Tox Bulletin of Environmental Contamination and Toxicology = B. Environ. Contam. Tox. Bulletin of environmental contamination and toxicology = Bull Environ Contam Toxicol Bulletin of Environmental Contamination and Toxicology=Bull Environ Contam Toxicol;; Bulletin of Environmental Contamination and Toxicology = Bull. Environ. Contam. Toxicol. Bulletin of Environment Contamination and Toxicology = Bull. Environ. Contam. Toxicol. Bulletin of Epizootic Diseases of Africa = Bull. Epizoot. Dis. Afr. Bulletin of epizootic diseases of Africa. Bulletin des epizooties en Afrique = Bull Epizoot Dis Afr Bulletin of Equine Research Institute = B Equine Res Inst Bulletin of Equine Research Institute = B. Equine Res. Inst. Bulletin of Experimental Biology and Medicine = B Exp Biol Med+ Bulletin of Experimental Biology and Medicine = B. Exp. Biol. Med+.+ Bulletin of experimental biology and medicine = Bull Exp Biol Med Bulletin of Experimental Biology and Medicine = Bull. Exp. Biol. Med. Bulletin of Experimental Biology and Medicine,ussr = B Exp Biol Med-ussr Bulletin of Experimental Biology and Medicine,ussr = B. Exp. Biol. Med-ussr. Bulletin - Office international des epizooties = Bull Off Int Epizoot Bulletin officiel. Chambre syndicale des medecins de la Seine = Bull Off Chambre Synd Med Seine Bulletin Officiel, Conseil National, Ordre National des Chirurgiens-Dentistes = Ordre Natl. Chir. Dent. Cons. Natl. Bull. Off. Bulletin officiel du Conseil national de l'Ordre / Ordre national des chirurgiens-dentistes = Ordre Natl Chir Dent Cons Natl Bull Off Bulletin of francophone Africa / Maghreb Research Group = Bull Francoph Afr Bulletin of Fukuoka University of Education = Bull. Fukuoka Univ. Ed. III Bulletin of gastrointestinal endoscopy = Bull Gastrointest Endosc Bulletin of General Education = Bull. Gen. Ed. Dokkyo Univ. School Medicine Bulletin of Geosciences = B Geosci Bulletin of Geosciences = B. Geosci. Bulletin of Geosciences = Bull Geosci Bulletin of Geosciences = Bull. Geosci. Bulletin of Glaciological Research = Bull. Glaciol. Res. Bulletin of Grain Technology = B Grain Technol Bulletin of Grain Technology = B. Grain Technol. Bulletin of Haffkine Institute = B Haffkine I Bulletin of Haffkine Institute = B. Haffkine I. Bulletin of Haffkine Institute = Bull Haffkine Bulletin of Hispanic Studies = B Hispanic Stud Bulletin of Hispanic Studies = B. Hispanic Stud. Bulletin of hygiene = Bull Hyg (Lond) Bulletin of Hygiene = Bull. Hyg. (Lond.) Bulletin of Indonesian Economic Studies = B Indones Econ Stud Bulletin of Indonesian Economic Studies = B. Indones. Econ. Stud. Bulletin of Indonesian economic studies = Bull Indones Econ Stud Bulletin of Indonesian Economic Studies = Bull. Indones. Econ. Stud. Bulletin of Indonesian Economic Studies=Bull. Indonesian Econ. Stud. Bulletin of Informatics and Cybernetics = Bull. Inform. Cybernet. Bulletin of Insectology = B Insectol Bulletin of Insectology = B. Insectol. Bulletin of Insectology = Bull Insectology Bulletin of Insectology = Bull. Insectology Bulletin of Islamic medicine / Kuwait Ministry of Public Health [and] National Council of Culture, Arts and Letters = Bull Islam Med Bulletin of Koshien University = Bull. Koshien Univ. B Bulletin of Latin American Research = B Lat Am Res Bulletin of Latin American Research = B. Lat. Am. Res. Bulletin of Latin American Research Book Series = B Lat Am Res Bk Ser Bulletin of Latin American Research Book Series = B. Lat. Am. Res. Bk. Ser. Bulletin of Latin American Research Book Series = B Lat Am Res Book Se Bulletin of Latin American Research Book Series = B. Lat. Am. Res. Book Se. Bulletin of Latin American research = Bull Lat Am Res Bulletin of Marine Science = B Mar Sci Bulletin of Marine Science = B. Mar. Sci. Bulletin of Marine Science = Bull. Mar. Sci. Bulletin of Materials Science = B Mater Sci Bulletin of Materials Science = B. Mater. Sci. Bulletin of Materials Science = Bull. Mater. Sci. Bulletin of Mathematical Biology = B Math Biol Bulletin of Mathematical Biology = B. Math. Biol. Bulletin of mathematical biology = Bull Math Biol Bulletin of Mathematical Biology=Bull Math Biol;; Bulletin of Mathematical Biology = Bull. Math. Biol. Bulletin of Mathematical Biophysics = B Math Biophys Bulletin of Mathematical Biophysics = B. Math. Biophys. Bulletin of Mathematical Biophysics = Bull. Math. Biophys. Bulletin of Mathematical Statistics = B Math Stat Bulletin of Mathematical Statistics = B. Math. Stat. Bulletin of medical ethics = Bull Med Ethics Bulletin of Molecular Biology and Medicine = B Mol Biol Med Bulletin of Molecular Biology and Medicine = B. Mol. Biol. Med. Bulletin of Nagoya Institute of Technology = Bull. Nagoya Inst. Tech. Bulletin of Nara University of Education = Bull. Nara Univ. Ed. Natur. Sci. Bulletin of Osaka Prefectural College of Technology = Bull. Osaka Prefect. College Tech. Bulletin of Osaka Prefecture University = Bull. Osaka Prefect. Univ. Ser. A Eng. Nat. Sci. Bulletin of Pathology = Bull Pathol Bulletin of Pathology = Bull. Pathol. Bulletin of Peace Proposals = B Peace Proposals Bulletin of Peace Proposals = B. Peace Proposals Bulletin of peace proposals = Bull Peace Propos Bulletin of Pharmaceutical Research Institute = Bull Pharm Res Inst Bulletin of Pharmaceutical Research Institute = Bull. Pharm. Res. Inst. Bulletin of Pharmaceutical Sciences = B Pharm Sci Bulletin of Pharmaceutical Sciences = B. Pharm. Sci. Bulletin of Pharmaceutical Sciences = Bull Pharm Sci Bulletin of Pharmaceutical Sciences = Bull. Pharm. Sci. Bulletin of Polish Medical Science and History = Bull. Pol. Med. Sci. Hist. Bulletin of Postgraduate Institute of Medical Education and Research, Chandigarh = Bull Postgrad Inst Med Educ Res Chandigarh Bulletin of prosthetics research = Bull Prosthet Res Bulletin of Prosthetics Research = Bull. Prosthet. Res. Bulletin of Pure & Applied Sciences = Bull. Pure Appl. Sci. Sect. E Math. Stat. Bulletin of Research in The Humanities = B Res Humanities Bulletin of Research in The Humanities = B. Res. Humanities Bulletin of research in the humanities = Bull Res Humanit Bulletin of Rural Economics and Sociology = B Rural Econ Sociol Bulletin of Rural Economics and Sociology = B. Rural Econ. Sociol. Bulletin of Science and Engineering Research Laboratory = Bull. Sci. Engrg. Res. Lab. Waseda Univ. Bulletin of Science Technology & Society = B Sci Technol Soc Bulletin of Science Technology & Society = B. Sci. Technol. Soc. Bulletin of science, technology & society = Bull Sci Technol Soc Bulletin of Society of Mathematicians = Bull. Soc. Math. Banja Luka Bulletin of Spanish Studies = B Span Stud Bulletin of Spanish Studies = B. Span. Stud. Bulletin of Symbolic Logic = B Symb Log Bulletin of Symbolic Logic = B. Symb. Log. Bulletin of the 8th District Dental Society = Bull Eighth Dist Dent Soc Bulletin of the 8th District Dental Society = Bull. Eighth. Dist. Dent. Soc. Bulletin of the Academy of General Dentistry = Bull. Acad. Gen. Dent. Bulletin of The Academy of Sciences of The Ussr Division of Chemical Science = B Acad Sci Ussr Ch+ Bulletin of The Academy of Sciences of The Ussr Division of Chemical Science = B. Acad. Sci. Ussr Ch+.+ Bulletin of The Agricultural Chemical Society of Japan = B Agr Chem Soc Japan Bulletin of The Agricultural Chemical Society of Japan = B. Agr. Chem. Soc. Japan Bulletin of the Akron Dental Society = Bull Akron Dent Soc Bulletin of the Akron Dental Society = Bull. Akron Dent. Soc. Bulletin of the Allahabad Mathematical Society = Bull. Allahabad Math. Soc. Bulletin of The American Academy of Psychiatry and The Law = B Am Acad Psych Law Bulletin of The American Academy of Psychiatry and The Law = B. Am. Acad. Psych. Law Bulletin of the American Academy of Psychiatry and the Law = Bull. Am. Acad. Psychiatry Law Bulletin of the American College of Nurse-Midwifery = Bull Am Coll Nurse Midwifery Bulletin of the American College of Nurse-Midwifery = Bull. Am. Coll. Nurse. Midwifery Bulletin of the American College of Nurse-Midwives = Bull Am Coll Nurse Midwives Bulletin of the American College of Nurse-Midwives = Bull. Am. Coll. Nurse. Midwives Bulletin of the American College of Physicians = Bull. Am. Coll. Physicians Bulletin of The American College of Surgeons = B Am Coll Surg Bulletin of The American College of Surgeons = B. Am. Coll. Surg. Bulletin of the American College of Surgeons = Bull Am Coll Surg Bulletin of the American College of Surgeons = Bull. Am. Coll. Surg. Bulletin of The American Geographical Society of New York = B Am Geogr Soc N Y Bulletin of The American Geographical Society of New York = B. Am. Geogr. Soc. N. Y. Bulletin of The American Mathematical Society = B Am Math Soc Bulletin of The American Mathematical Society = B. Am. Math. Soc. Bulletin of The American Meteorological Society = B Am Meteorol Soc Bulletin of The American Meteorological Society = B. Am. Meteorol. Soc. Bulletin of the American Meteorological Society = Bull. Amer. Meteor. Soc. Bulletin of the American Meteorological Society = Bull. Am. Meteorol. Soc. Bulletin of The American Museum of Natural History = B Am Mus Nat Hist Bulletin of The American Museum of Natural History = B. Am. Mus. Nat. Hist. Bulletin of The American Physical Society = B Am Phys Soc Bulletin of The American Physical Society = B. Am. Phys. Soc. Bulletin of the American Schools of Oriental Research. American Schools of Oriental Research = Bull Am Schools Orient Res Bulletin of The American Schools of Oriental Research = B Am Sch Oriental Re Bulletin of The American Schools of Oriental Research = B. Am. Sch. Oriental Re. Bulletin of the American Schools of Oriental Research = BASOR Bulletin of the American Schools of Oriental Research in Jerusalem and Baghdad = BASO Bulletin of the American Society for Information Science / ASIS = Bull Am Soc Inf Sci Bulletin of The American Society for Information Science = B Am Soc Inform Inf Bulletin of The American Society for Information Science = B. Am. Soc. Inform. Inf. Bulletin of the American Society for Information Science = Bull. Am. Soc. Inf. Sci. Bulletin of The American Society of Papyrologists = B Am Soc Papyrologis Bulletin of The American Society of Papyrologists = B. Am. Soc. Papyrologis. Bulletin of the American Society of Papyrologists = BASP Bulletin of the Ancient Orient Museum (Tokyo) = BAncOrMus Bulletin of the Anglo-Israel Archaeological Society = BAngloIsrASoc Bulletin of the Asia Institute = BAsInst Bulletin of The Asia Institute New Series = B Asia I New Ser Bulletin of The Asia Institute New Series = B. Asia I. New Ser. Bulletin of The Asia Institute, Vol 17 = B Asia I New Ser Bulletin of The Asia Institute, Vol 17 = B. Asia I. New. Ser. Bulletin of The Asia Institute, Vol 18 = B Asia I New Ser Bulletin of The Asia Institute, Vol 18 = B. Asia I. New. Ser. Bulletin of The Asia Institute, Vol 19 = B Asia I New Ser Bulletin of The Asia Institute, Vol 19 = B. Asia I. New. Ser. Bulletin of The Asia Institute, Vol 20 = B Asia I New Ser Bulletin of The Asia Institute, Vol 20 = B. Asia I. New. Ser. Bulletin of The Association of American Medical Colleges = Bull Assoc Am Med Co Bulletin of The Association of American Medical Colleges = Bull. Assoc. Am. Med. Co. Bulletin of The Astronomical Institutes of Czechoslovakia = B Astron I Czech Bulletin of The Astronomical Institutes of Czechoslovakia = B. Astron. I. Czech. Bulletin of The Astronomical Institutes of The Netherlands = B Astron I Neth Bulletin of The Astronomical Institutes of The Netherlands = B. Astron. I. Neth. Bulletin of The Astronomical Institutes of The Netherlands Supplement Series = B Astron I Neth Bulletin of The Astronomical Institutes of The Netherlands Supplement Series = B. Astron. I. Neth. Bulletin of The Astronomical Society of India = B Astron Soc India Bulletin of The Astronomical Society of India = B. Astron. Soc. India Bulletin of the Astronomical Society of India = Bull. Astron. Soc. India Bulletin of The Atomic Scientists = B Atom Sci Bulletin of The Atomic Scientists = B. Atom. Sci. Bulletin of The Australian Mathematical Society = B Aust Math Soc Bulletin of The Australian Mathematical Society = B. Aust. Math. Soc. Bulletin of the Australian Mathematical Society = Bull. Austral. Math. Soc. Bulletin of the Belgian Mathematical Society = Bull. Belg. Math. Soc. Simon Stevin Bulletin of The Belgian Mathematical Society-simon Stevin = B Belg Math Soc-sim Bulletin of The Belgian Mathematical Society-simon Stevin = B. Belg. Math. Soc-sim. Bulletin of the Bergen County Dental Society = Bull. Bergen Cty. Dent. Soc. Bulletin of The Bingham Oceanographic Collection = B Bingham Oceanogr C Bulletin of The Bingham Oceanographic Collection = B. Bingham Oceanogr. C. Bulletin of the Biogeographical Society of Japan = Bull. Biogeogr. Soc. Jpn. Bulletin of The Board of Celtic Studies-bwletin Y Bwrdd Gwybodau Celtaidd = B Board Celt Stud Bulletin of The Board of Celtic Studies-bwletin Y Bwrdd Gwybodau Celtaidd = B. Board Celt. Stud. Bulletin of The Brazilian Mathematical Society = B Braz Math Soc Bulletin of The Brazilian Mathematical Society = B. Braz. Math. Soc. Bulletin of the British Association of Orientalists. British Association of Orientalists = Bull Br Assoc Orient Bulletin of the British Museum (Natural History). Historical series = Bull Br Mus Bulletin of the British Museum of Natural History, Botany = Bull. Br. Mus. Nat. Hist., Bot. Bulletin of the British Mycological Society = Bull. Br. Mycol. Soc. Bulletin of the British Ornithologists’ Club = Bull. Br. Ornithol. Club Bulletin of The British Psychological Society = B Brit Psychol Soc Bulletin of The British Psychological Society = B. Brit. Psychol. Soc. Bulletin of the British Psychological Society = Bull Br Psychol Soc Bulletin of the Bronx County Dental Society = Bull. Bronx Cty. Dent. Soc. Bulletin of The Calcutta Mathematical Society = Bull Calcutta Math S Bulletin of The Calcutta Mathematical Society = Bull. Calcutta Math. S. Bulletin of the Calcutta Mathematical Society = Bull. Calcutta Math. Soc. Bulletin of the Calcutta School of Tropical Medicine = Bull Calcutta Sch Trop Med Bulletin of the Calcutta School of Tropical Medicine = Bull. Calcutta Sch. Trop. Med. Bulletin of the California Agricultural Experiment Station = Bull. Calif. Agric. Exp. Stn. Bulletin of The Canadian Psychological Association = B Can Psychol Assoc Bulletin of The Canadian Psychological Association = B. Can. Psychol. Assoc. Bulletin of The Chemical Society of Ethiopia = B Chem Soc Ethiopia Bulletin of The Chemical Society of Ethiopia = B. Chem. Soc. Ethiopia Bulletin of the Chemical Society of Ethiopia = Bull. Chem. Soc. Ethiop. Bulletin of The Chemical Society of Japan = B Chem Soc Jpn Bulletin of The Chemical Society of Japan = B. Chem. Soc. Jpn. Bulletin of the Chemical Society of Japan = Bull Chem Soc Jpn Bulletin of the Chemical Society of Japan = Bull. Chem. Soc. Jpn. Bulletin of the Chest Disease Research Institute, Kyoto University = Bull Chest Dis Res Inst Kyoto Univ Bulletin of the Chest Disease Research Institute, Kyoto University = Bull. Chest Dis. Res. Inst. Kyoto Univ. Bulletin of the Cincinnati Dental Society = Bull. Cincinnati Dent. Soc. Bulletin of the Cleveland Dental Society = Bull. Cleve. Dent. Soc. Bulletin of The Cleveland Museum of Art = B Cleveland Mus Art Bulletin of The Cleveland Museum of Art = B. Cleveland Mus. Art Bulletin of The Comediantes = B Comediantes Bulletin of The Comediantes = B. Comediantes Bulletin of the Contra Costa Dental Society = Bull. Contra Costa Dent. Soc. Bulletin Of The Contra Costa Dental Society = Bull Contra Costa Dent Soc Bulletin of The Copyright Society of The Usa = B Copyright Soc Usa Bulletin of The Copyright Society of The Usa = B. Copyright Soc. Usa Bulletin of The Council for Research in Music Education = B Coun Res Music Ed Bulletin of The Council for Research in Music Education = B. Coun. Res. Music Ed. Bulletin of the Dental Guidance Council for Cerebral Palsy = Bull Dent Guid Counc Cereb Palsy Bulletin of the Dental Guidance Council for Cerebral Palsy = Bull. Dent. Guid. Counc. Cereb. Palsy Bulletin of The Earthquake Research Institute-university of Tokyo = B Earthq Res I Tokyo Bulletin of The Earthquake Research Institute-university of Tokyo = B. Earthq. Res. I. Tokyo Bulletin of the Egyptological Seminar = BES Bulletin of the Eleventh District Dental Society = Bull Eleventh Dist Dent Soc Bulletin of the Eleventh District Dental Society = Bull. Eleventh Dist. Dent. Soc. Bulletin of the Entomological Society of America = Bull. Entomol. Soc. Am. Bulletin of the European Association for Theoretical Computer Science = Bull. Eur. Assoc. Theor. Comput. Sci. EATCS Bulletin of The European Association of Fish Pathologists = B Eur Assoc Fish Pat Bulletin of The European Association of Fish Pathologists = B. Eur. Assoc. Fish Pat. Bulletin of The European Association of Fish Pathologists = Bull Eur Assn Fish P Bulletin of The European Association of Fish Pathologists = Bull. Eur. Assn. Fish P. Bulletin of the European Ceramic Society = Bull. Eur. Ceram. Soc. Bulletin of The European Society of Human Genetics = B Eur Soc Hum Genet Bulletin of The European Society of Human Genetics = B. Eur. Soc. Hum. Genet. Bulletin of the Faculty of Education = Bull. Fac. Ed. Kagoshima Univ. Natur. Sci. Bulletin of the Faculty of Education = Bull. Fac. Educ. Utsunomiya Univ. Sect. 2 Bulletin of the Faculty of Engineering = Bull. Fac. Eng. Hiroshima Univ. Bulletin of the Faculty of Liberal Arts = Bull. Fac. Liberal Arts Nagasaki Univ. Bulletin of the Faculty of School Education = Bull. Fac. School Ed. Hiroshima Univ. Part II Bulletin of the Faculty of School Education Hiroshima University = Bull. Fac. Sch. Educ. Hiroshima Univ. Part II Bulletin of the Faculty of Science and Engineering = Bull. Fac. Sci. Engrg. Chuo Univ. Ser. I Math. Bulletin of the Faculty of Science = Bull. Fac. Sci. Assiut Univ. A Bulletin of the Faculty of Science = Bull. Fac. Sci. Assiut Univ. C Bulletin of the Faculty of Science = Bull. Fac. Sci. Ibaraki Univ. Ser. A Bulletin of the Faculty of the Liberal Arts = Bull. Fac. Liberal Arts Chukyo Univ. Bulletin of the Fifth District Dental Society = Bull. Fifth Dist. Dent. Soc. (Fresno) Bulletin of the Fifth District Dental Society of the State of New York = Bull. Fifth Dist. Dent. Soc. State N. Y. Bulletin Of The Fifth District Dental Society Of The State Of New York = Bull Fifth Dist Dent Soc State N Y Bulletin of The Fisheries Research Board of Canada = B Fish Res Board Can Bulletin of The Fisheries Research Board of Canada = B. Fish. Res. Board Can. Bulletin of the Geobotanical Institute ETH = Bull. Geobot. Inst. ETH Bulletin of The Geological Society of America = Bull Geol Soc Am Bulletin of The Geological Society of America = Bull. Geol. Soc. Am. Bulletin of The Geological Society of Denmark = B Geol Soc Denmark Bulletin of The Geological Society of Denmark = B. Geol. Soc. Denmark Bulletin of the Geological Society of Denmark = Bull. Geol. Soc. Den. Bulletin of The Geological Society of Denmark = Bull Geol Soc Den Bulletin of The Geological Society of Denmark = Bull. Geol. Soc. Den. Bulletin of The Geological Society of Finland = B Geol Soc Finland Bulletin of The Geological Society of Finland = B. Geol. Soc. Finland Bulletin of the Geological Society of Finland = Bull. Geol. Soc. Finl. Bulletin of The Geological Society of Finland = Bull Geol Soc Finl Bulletin of The Geological Society of Finland = Bull. Geol. Soc. Finl. Bulletin of the Georgia Academy of Science = Bull Ga Acad Sci Bulletin of the Ghana Geographical Association = Bull Ghana Geogr Assoc Bulletin of the Gloucester County Historical Society = Bull Gloucester Cty Hist Soc Bulletin of the Greek Mathematical Society = Bull. Greek Math. Soc. Bulletin of the history of dentistry = Bull Hist Dent Bulletin of the History of Dentistry = Bull. Hist. Dent. Bulletin of The History of Medicine = B Hist Med Bulletin of The History of Medicine = B. Hist. Med. Bulletin of the History of Medicine = BHM Bulletin of the history of medicine = Bull Hist Med Bulletin of the History of Medicine = Bull. Hist. Med. Bulletin of The History Of Medicine=Bull Hist Med;; Bulletin of the history of medicine. Supplements = Bull Hist Med Suppl Bulletin of the Hong Kong Mathematical Society = Bull. Hong Kong Math. Soc. Bulletin of the Hospital for Joint Diseases = Bull Hosp Joint Dis Bulletin of the Hospital for Joint Diseases = Bull. Hosp. Joint Dis. Bulletin of The Hospital for Joint Diseases Orthopaedic Institute = B Hosp Joint Dis Ort Bulletin of The Hospital for Joint Diseases Orthopaedic Institute = B. Hosp. Joint Dis. Ort. Bulletin of the Hospital for Joint Diseases Orthopaedic Institute = Bull Hosp Jt Dis Orthop Inst Bulletin of the Hospital for Joint Diseases Orthopaedic Institute = Bull. Hosp. Jt. Dis. Orthop. Inst. Bulletin of the Hudson County Dental Society = Bull. Hudson Cty. Dent. Soc. Bulletin of the Hunt Institute for Botanical Documentation. Hunt Institute for Botanical Documentation = Bull Hunt Inst Bot Doc Bulletin of the Illinois Dental Hygienists Association = Bull. Ill. Dent. Hyg. Assoc. Bulletin of the Indian Institute of History of Medicine (Hyderabad) = Bull Indian Inst Hist Med Hyderabad Bulletin of the Indian Vacuum Society = Bull. Indian Vac. Soc. Bulletin of The Indo-pacific Prehistory Association = Bull Indo Pac Pre Hi Bulletin of The Indo-pacific Prehistory Association = Bull. Indo. Pac. Pre. Hi. Bulletin of The Indo-pacific Prehistory Association, Vol 26 = Bull Indo Pac Pre Hi Bulletin of The Indo-pacific Prehistory Association, Vol 26 = Bull. Indo. Pac. Pre. Hi. Bulletin of The Indo-pacific Prehistory Association, Vol 27 = Bull Indo Pac Pre Hi Bulletin of The Indo-pacific Prehistory Association, Vol 27 = Bull. Indo. Pac. Pre. Hi. Bulletin of The Indo-pacific Prehistory Association, Vol 28 = Bull Indo Pac Pre Hi Bulletin of The Indo-pacific Prehistory Association, Vol 28 = Bull. Indo. Pac. Pre. Hi. Bulletin of the Institute for Chemical Research, Kyoto University = Bull Inst Chem Res Kyoto Univ Bulletin of the Institute for Medical Research, University of Madrid = Bull Inst Med Res Univ Madr Bulletin of the Institute for Medical Research, University of Madrid = Bull. Inst. Med. Res. Univ. Madr. Bulletin of the Institute of Archaeology of the Univ. of London = BIAL Bulletin of the Institute of Archaeology, University of London = BALond Bulletin of The Institute of Classical Studies = B I Class Stud Bulletin of The Institute of Classical Studies = B. I. Class. Stud. Bulletin of the Institute of Classical Studies of the University of London = BICS Bulletin of the Institute of Classical Studies of the University of London = BICS Bulletin of the Institute of Combinatorics and its Applications = Bull. Inst. Combin. Appl. Bulletin of The Institute of Historical Research = B I Hist Res Bulletin of The Institute of Historical Research = B. I. Hist. Res. Bulletin of the Institute of Historical Research = Bull Inst Hist Res Bulletin of The Institute of History and Philology Academia Sinica = B Inst Hist Philol Bulletin of The Institute of History and Philology Academia Sinica = B. Inst. Hist. Philol. Bulletin of the Institute of Maritime and Tropical Medicine in Gdynia = Bull Inst Marit Trop Med Gdynia Bulletin of the Institute of Maritime and Tropical Medicine in Gdynia = Bull. Inst. Marit. Trop. Med. Gdynia Bulletin of The Institute Of Maritime and Tropical Medicine In Gdynia=Bull Inst Marit Trop Med Gdynia;; Bulletin of the Institute of Mathematics = Bull. Inst. Math. Acad. Sinica Bulletin of the Institute of Medicine (Hyderabad) = Bull Inst Hist Med Hyderabad Bulletin of The Institute of Zoology Academia Sinica = B I Zool Acad Sinica Bulletin of The Institute of Zoology Academia Sinica = B. I. Zool. Acad. Sinica Bulletin of the International Association of Engineering Geology = Bull. Int. Assoc. Eng. Geol. Bulletin of the International Association of Scientific Hydrology = Bull. Int. Assoc. Sci. Hydrol. Bulletin of the International Committee on Urgent Anthropological and Ethnological Research. International Committee on Urgent Anthropological and Ethnological Research = Bull Int Comm Urgent Anthropol Ethnol Res Bulletin of the International Dairy Association = Bull. Int. Dairy Assoc. Bulletin of the International Pediatric Association. Bulletin de l'Association internationale de pediatrie. Boletin de la Asociacion Internacional de Pediatria = Bull Int Pediatr Assoc Bulletin of The International Statistical Institute = B Int Statist Inst Bulletin of The International Statistical Institute = B. Int. Statist. Inst. Bulletin of the International Union against Tuberculosis and Lung Disease = Bull Int Union Tuberc Lung Dis Bulletin of the International Union Against Tuberculosis and Lung Disease = Bull. Int. Union Tuberc. Lung Dis. Bulletin of the International Union against Tuberculosis = Bull Int Union Tuberc Bulletin of the International Union Against Tuberculosis = Bull. Int. Union Tuberc. Bulletin of The Iranian Mathematical Society = B Iran Math Soc Bulletin of The Iranian Mathematical Society = B. Iran. Math. Soc. Bulletin of The Iranian Mathematical Society = Bull Iran Math Soc Bulletin of The Iranian Mathematical Society = Bull. Iran. Math. Soc. Bulletin of The Japanese Society of Scientific Fisheries = B Jpn Soc Sci Fish Bulletin of The Japanese Society of Scientific Fisheries = B. Jpn. Soc. Sci. Fish. Bulletin of The Japanese Society of Scientific Fisheries = Nippon Suisan Gakk Bulletin of The Japanese Society of Scientific Fisheries = Nippon. Suisan. Gakk. Bulletin of The Japan Society of Precision Engineering = B Jpn Soc Prec Eng Bulletin of The Japan Society of Precision Engineering = B. Jpn. Soc. Prec. Eng. Bulletin of The Japan Society of Precision Engineering = Int J Jpn S Prec Eng Bulletin of The Japan Society of Precision Engineering = Int. J. Jpn. S. Prec. Eng. Bulletin of the John Rylands Library = BRL Bulletin of The John Rylands University Library of Manchester = B John Rylands Libr Bulletin of The John Rylands University Library of Manchester = B. John Rylands Libr. Bulletin of The Johns Hopkins Hospital = B Johns Hopkins Hosp Bulletin of The Johns Hopkins Hospital = B. Johns Hopkins Hosp. Bulletin of the Johns Hopkins Hospital = Bull Johns Hopkins Hosp Bulletin of The Jsme-japan Society of Mechanical Engineers = B Jsme Bulletin of The Jsme-japan Society of Mechanical Engineers = B. Jsme. Bulletin of the Kanagawa Dental College = Bull. Kanagawa Dent. Coll. Bulletin of The Korean Chemical Society = B Kor Chem Soc Bulletin of The Korean Chemical Society = B. Kor. Chem. Soc. Bulletin of The Korean Chemical Society = B Korean Chem Soc Bulletin of The Korean Chemical Society = B. Korean Chem. Soc. Bulletin of the Korean Chemical Society = Bull. Korean Chem. Soc. Bulletin of The Korean Mathematical Society = B Korean Math Soc Bulletin of The Korean Mathematical Society = B. Korean Math. Soc. Bulletin of the Korean Mathematical Society = Bull. Korean Math. Soc. Bulletin of the Kyoto University of Education = Bull. Kyoto Univ. Ed. Ser. B Bulletin of the Kyushu Institute of Technology = Bull. Kyushu Inst. Tech. Math. Natur. Sci. Bulletin of the Kyushu Institute of Technology = Bull. Kyushu Inst. Technol. Pure Appl. Math. Bulletin of The Lebedev Physics Institute = B Lebedev Phys Inst+ Bulletin of The Lebedev Physics Institute = B. Lebedev Phys. Inst+.+ Bulletin of The London Mathematical Society = B Lond Math Soc Bulletin of The London Mathematical Society = B. Lond. Math. Soc. Bulletin of the Los Angeles Dental Society = Bull Los Angeles Dent Soc Bulletin of the Los Angeles Dental Society = Bull. Los Angeles Dent. Soc. Bulletin of the Los Angeles neurological societies = Bull Los Angeles Neurol Soc Bulletin of the Los Angeles Neurological Societies = Bull. Los Angeles Neurol. Soc. Bulletin of the Los Angeles Neurological Society = Bull Los Angel Neuro Soc Bulletin of The Malaysian Mathematical Sciences Society = B Malays Math Sci So Bulletin of The Malaysian Mathematical Sciences Society = B. Malays. Math. Sci. So. Bulletin of the Mason Clinic = Bull Mason Clin Bulletin of the Massachusetts Nurses Association = Bull Mass Nurses Assoc Bulletin of the Massachusetts Nurses Association = Bull. Mass. Nurses Assoc. Bulletin of The Medical Library Association = B Med Libr Assoc Bulletin of The Medical Library Association = B. Med. Libr. Assoc. Bulletin of the Medical Library Association = Bull Med Libr Assoc Bulletin of the Medical Library Association = Bull. Med. Libr. Assoc. Bulletin of The Medical Library Association=Bull Med Libr Assoc;; Bulletin of The Menninger Clinic = B Menninger Clin Bulletin of The Menninger Clinic = B. Menninger Clin. Bulletin of the Menninger Clinic = Bull Menninger Clin Bulletin of the Menninger Clinic = Bull. Menninger Clin. Bulletin of The Menninger Clinic=Bull Menninger Clin;; Bulletin of the Metropolitan Museum of Art = BMM Bulletin of the Michigan Dental Hygienists Association = Bull. Mich. Dent. Hyg. Assoc. Bulletin of The Midwest Modern Language Association = B Midwest Mod Lang Bulletin of The Midwest Modern Language Association = B. Midwest Mod. Lang. Bulletin of the Montgomery-Bucks Dental Society = Bull. Montg. Bucks Dent. Soc. Bulletin of the Museum of Mediterranean and Near Eastern Antiquities = BMNE Bulletin of the Museums of Art and Archaeology of the University of Michigan = BMUSUM Bulletin Of The National Guild Of Catholic Psychiatrists = Bull Natl Guild Cathol Psychiatr Bulletin of The National Institute of Agricultural Sciences Series A-physics and Statistics = B Natl I Agr Sci A Bulletin of The National Institute of Agricultural Sciences Series A-physics and Statistics = B. Natl. I. Agr. Sci. A. Bulletin of The National Tax Association = B Natl Tax Assoc Bulletin of The National Tax Association = B. Natl. Tax Assoc. Bulletin of the Natural Family Planning Council of Victoria = Bull Nat Fam Plan Counc Vic Bulletin of the Newark Dental Club = Bull Newark Dent Club Bulletin of the Newark Dental Club = Bull. Newark Dent. Club Bulletin of the New Jersey College of Medicine and Dentistry = Bull. N. J. Coll. Med. Dent. Bulletin Of The New Jersey College Of Medicine And Dentistry = Bull N J Coll Med Dent Bulletin of the New Jersey Society of Dentistry for Children = Bull. N. J. Soc. Dent. Child. Bulletin of The New York Academy of Medicine = B New York Acad Med Bulletin of The New York Academy of Medicine = B. New York Acad. Med. Bulletin of the New York Academy of Medicine = Bull N Y Acad Med Bulletin of the New York Academy of Medicine = Bull. N. Y. Acad. Med. Bulletin of The New York Academy Of Medicine=Bull N Y Acad Med;; Bulletin of The New York Public Library = B Ny Public Library Bulletin of The New York Public Library = B. Ny. Public Library Bulletin of the New York State Dental Society of Anesthesiology = Bull. N. Y. State Dent. Soc. Anesthesiol. Bulletin Of The New York State Dental Society Of Anesthesiology = Bull N Y State Dent Soc Anesthesiol Bulletin of The New York State Museum = B Ny St Mus Bulletin of The New York State Museum = B. Ny. St. Mus. Bulletin of the New York State Society of Dentistry for Children = Bull N Y State Soc Dent Child Bulletin of the New York State Society of Dentistry for Children = Bull. N. Y. State Soc. Dent. Child. Bulletin of the Ninth District Dental Society = Bull. Ninth Dist. Dent. Soc. Bulletin of the NYU hospital for joint diseases = Bull NYU Hosp Jt Dis Bulletin of the Ophthalmological Society of Egypt = Bull Ophthalmol Soc Egypt Bulletin of the Ophthalmological Society of Egypt = Bull. Ophthalmol. Soc. Egypt Bulletin of the Osaka Medical College = Bull Osaka Med Coll Bulletin of the Osaka Medical College = Bull. Osaka Med. Coll. Bulletin of the Osaka Medical School = Bull Osaka Med Sch Bulletin of the Osaka Medical School = Bull. Osaka Med. Sch. Bulletin of the Osaka Medical School. Supplement = Bull Osaka Med Sch Suppl Bulletin of the Osaka Medical School. Supplement = Bull. Osaka Med. Sch. Suppl. Bulletin of The Oxford University Institute of Economic and Statistics = B Oxford U I Econ St Bulletin of The Oxford University Institute of Economic and Statistics = B. Oxford U. I. Econ. St. Bulletin of the Oxford University Institute of Economics and Statistics=Bull. Oxford Univ. Inst. Econ. Statist. Bulletin of the Pan American Health Organization = Bull Pan Am Health Organ Bulletin of the Pan American Health Organization = Bull. Pan Am. Health Organ. Bulletin of the Parenteral Drug Association = Bull Parenter Drug Assoc Bulletin of the Parenteral Drug Association = Bull. Parenter. Drug Assoc. Bulletin of the Park Ridge Center = Bull Park Ridge Cent Bulletin of the Passaic County Dental Society = Bull Passaic Cty Dent Soc Bulletin of the Passaic County Dental Society = Bull. Passaic Cty. Dent. Soc. Bulletin of The Peabody Museum of Natural History = B Peabody Mus Nat Hi Bulletin of The Peabody Museum of Natural History = B. Peabody Mus. Nat. Hi. Bulletin of the Philadelphia Association for Psychoanalysis = Bull Phila Assoc Psychoanal Bulletin of the Philadelphia County Dental Society = Bull. Phila. Cty. Dent. Soc. Bulletin of the Plainfield Dental Society = Bull. Plainfield Dent. Soc. Bulletin Of The Plainfield Dental Society = Bull Plainfield Dent Soc Bulletin of The Polish Academy of Sciences-chemistry = B Pol Acad Sci-chem Bulletin of The Polish Academy of Sciences-chemistry = B. Pol. Acad. Sci-chem. Bulletin of the Polish Academy of Sciences Chemistry = Bull. Pol. Acad. Sci., Chem. Bulletin of the Polish Academy of Sciences, Chemistry = Bull. Pol. Acad. Sci., Chem. Bulletin of the Polish Academy of Sciences. Chemistry = Bul Pol Acad Sci Chem Bulletin of The Polish Academy of Sciences-earth Sciences = B Pol Acad Sci-earth Bulletin of The Polish Academy of Sciences-earth Sciences = B. Pol. Acad. Sci-earth. Bulletin of The Polish Academy of Sciences-technical Sciences = B Pol Acad Sci-tech Bulletin of The Polish Academy of Sciences-technical Sciences = B. Pol. Acad. Sci-tech. Bulletin of The Polish Academy of Sciences-technical Sciences = Bull Pol Acad Sci-te Bulletin of The Polish Academy of Sciences-technical Sciences = Bull. Pol. Acad. Sci-te. Bulletin of the Population and Development Studies Center. Soul Taehakkyo. In'gu mit Palchon Munje Yon'guso = Bull Popul Dev Stud Cent Bulletin of the Post-Graduate Committee in Medicine, University of Sydney = Bull Postgrad Comm Med Univ Syd Bulletin of The Psychonomic Society = B Psychonomic Soc Bulletin of The Psychonomic Society = B. Psychonomic Soc. Bulletin of the Psychonomic Society = Bull Psychon Soc Bulletin of the Public Health Society = Bull Publ Health Soc (Kuala Lumpur) Bulletin of The Research Council of Israel = B Res Counc Israel Bulletin of The Research Council of Israel = B. Res. Counc. Israel Bulletin of the Research Council of Israel = Bull Res Counc Isr Bulletin of the Research Council of Israel. Section E: Experimental medicine = Bull Res Counc Isr Sect E Exp Med Bulletin of The Research Institute for Food Science Kyoto University = B Res I Food Sci Bulletin of The Research Institute for Food Science Kyoto University = B. Res. I. Food Sci. Bulletin of the Rhode Island School of Design. Museum Notes = BProvidence Bulletin of the Royal Institute for Inter-Faith Studies = Bull R Inst Inter Faith Stud Bulletin of the Royal Ontario Museum of Archaeology, University of Toronto = BOntMus Bulletin of The Royal Society of New Zealand = B Roy S Nz Bulletin of The Royal Society of New Zealand = B. Roy. S. Nz. Bulletin of The Russian Academy of Sciences-division of Chemical Science = B Russ Acad Sci Ch+ Bulletin of The Russian Academy of Sciences-division of Chemical Science = B. Russ. Acad. Sci. Ch+.+ Bulletin of the School of Medicine (Baltimore, Md.) = Bull Sch Med Univ Md Bulletin Of The School Of Medicine = Bull Sch Med Bulletin of the School of Oriental and African Studies (London) = BSOAS Bulletin of The School of Oriental and African Studies-university of London = B Sch Orient Afr St Bulletin of The School of Oriental and African Studies-university of London = B. Sch. Orient. Afr. St. Bulletin of the School of Oriental and African Studies. University of London. School of Oriental and African Studies = Bull Sch Orient Afr Stud Bulletin of The Seismological Society of America = B Seismol Soc Am Bulletin of The Seismological Society of America = B. Seismol. Soc. Am. Bulletin of the Seismological Society of America = Bull. Seismol. Soc. Am. Bulletin of the Seismological Society of America = Bull. Seismol. Soc. Amer. Bulletin of the Sloane Hospital for Women in the Columbia-Presbyterian Medical Center, New York City = Bull Sloane Hosp Women Columbia Presbyt Med Bulletin of the Suffolk County Dental Society = Bull Suffolk Cty Dent Soc Bulletin of the Suffolk County Dental Society = Bull. Suffolk Cty. Dent. Soc. Bulletin of the Tenth District Dental Society of the State of New York = Bull Tenth Dist Dent Soc (Rockville Centre) Bulletin of the Tenth District Dental Society of the State of New York = Bull. Tenth Dist. Dent. Soc. (Rockville. Centre) Bulletin of the Toledo Dental Society = Bull. Toledo Dent. Soc. Bulletin of The Torrey Botanical Club = B Torrey Bot Club Bulletin of The Torrey Botanical Club = B. Torrey Bot. Club Bulletin of the Tri-County Dental Society = Bull. Tri. Cty. Dent. Soc. Bulletin of the Unesco Regional Office for Education in Asia and the Pacific = Bull Unesco Reg Off Educ Asia Pac Bulletin of the Union County Dental Society = Bull. Union Cty. Dent. Soc. Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 60 = Bull Univ Agric Sci Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 60 = Bull. Univ. Agric. Sci. Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 61, 2005 = B U Agr Med Vet Agr Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 61, 2005 = B. U. Agr. Med. Vet. Agr. Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 61, 2005 = B U Agr Med Vet Zoot Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 61, 2005 = B. U. Agr. Med. Vet. Zoot. Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 62, 2005 = B U Agr Med Vet Hort Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 62, 2005 = B. U. Agr. Med. Vet. Hort. Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 62, 2005 = B U Agr Med Vet M-ve Bulletin of The University of Agricultural Science and Veterinary Medicine, Vol 62, 2005 = B. U. Agr. Med. Vet. M-ve. Bulletin of The University of Agricultural Sciences and Veterinary Medicine Cluj-napoca = Bull Univ Agric Sci Bulletin of The University of Agricultural Sciences and Veterinary Medicine Cluj-napoca = Bull. Univ. Agric. Sci. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = B U Agr Med Vet Hort Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = B. U. Agr. Med. Vet. Hort. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = B U Agr Med Vet Zoot Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = B. U. Agr. Med. Vet. Zoot. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = Bull Univ Agric Sci Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 57 = Bull. Univ. Agric. Sci. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 59 = B U Agr Med Vet Zoot Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 59 = B. U. Agr. Med. Vet. Zoot. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 59 = Bull Univ Agric Sci Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 59 = Bull. Univ. Agric. Sci. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B U Agr Med Vet Agr Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B. U. Agr. Med. Vet. Agr. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B U Agr Med Vet M-ve Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B. U. Agr. Med. Vet. M-ve. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B U Agr Med Vet Zoot Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 60 = B. U. Agr. Med. Vet. Zoot. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 61 = B U Agr Med Vet Hort Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 61 = B. U. Agr. Med. Vet. Hort. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 61 = B U Agr Med Vet M-ve Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 61 = B. U. Agr. Med. Vet. M-ve. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 62, 2006 = B U Agr Med Vet Agr Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 62, 2006 = B. U. Agr. Med. Vet. Agr. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 62, 2006 = B U Agr Med Vet M-ve Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 62, 2006 = B. U. Agr. Med. Vet. M-ve. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 63, 2006 = B U Agr Med Vet Hort Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 63, 2006 = B. U. Agr. Med. Vet. Hort. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 63, 2006 = B U Agr Med Vet M-ve Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vol 63, 2006 = B. U. Agr. Med. Vet. M-ve. Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vols 57 and 58 = Bull Univ Agric Sci Bulletin of The University of Agricultural Sciences and Veterinary Medicine, Vols 57 and 58 = Bull. Univ. Agric. Sci. Bulletin of the University of Electro-Communications = Bull. Univ. Electro-Comm. Bulletin of the Valley Dental Society = Bull Val Dent Soc Bulletin of the Valley Dental Society = Bull. Val. Dent. Soc. Bulletin of The Veterinary Institute in Pulawy = B Vet I Pulawy Bulletin of The Veterinary Institute in Pulawy = B. Vet. I. Pulawy Bulletin of the World Health Organization = Bull World Health Organ Bulletin of the World Health Organization = Bull. World Health Organ. Bulletin of The World Health Organization=Bull World Health Organ;; Bulletin of The World Health Organization = B World Health Organ Bulletin of The World Health Organization = B. World Health Organ. Bulletin of the World Health Organization. Supplement = Bull World Health Org Suppl Bulletin of the Yamagata University = Bull. Yamagata Univ. Natur. Sci. Bulletin of Tokyo Dental College = Bull. Tokyo Dent. Coll. Bulletin of Tokyo Gakugei University = Bull. Tokyo Gakugei Univ. (4) Bulletin of Tokyo Gakugei University = Bull. Tokyo Gakugei Univ. Sect. IV Math. Nat. Sci. Bulletin of Tokyo Medical and Dental University = Bull. Tokyo Med. Dent. Univ. Bulletin of University of Osaka Prefecture=Bull. Univ. Osaka Prefect. Bulletin of Volcanology = Bull. Volcanol. Bulletin of Volcanology = B Volcanol Bulletin of Volcanology = B. Volcanol. Bulletin. Okayama Daigaku. Igakubu. Gangen Kenkyu Shisetsu = Bull Cancer Inst Okayama Univ Med Sch Bulletin On Narcotics = B Narcotics Bulletin On Narcotics = B. Narcotics Bulletin on narcotics = Bull Narc Bulletin on Narcotics=Bull Narc;; Bulletin on Narcotics = Bull. Narc. Bulletin On The Rheumatic Diseases = B Rheum Dis Bulletin On The Rheumatic Diseases = B. Rheum. Dis. Bulletin on the rheumatic diseases = Bull Rheum Dis Bulletin on the Rheumatic Diseases = Bull. Rheum. Dis. Bulletin on The Rheumatic Diseases=Bull Rheum Dis;; Bulletin on Training = Bull. Train. Bulletin on training, trends, techniques, topics = Bull Train Bulletin - Pacific Coast Society of Orthodontists = Bull Pac Coast Soc Orthod Bulletin, Pacific Coast Society of Orthodontists = Bull. Pac. Coast Soc. Orthod. Bulletin Peabody Museum of Natural History, Yale University = Bull. Peabody Mus. Nat. Hist., Yale Univ. Bulletin-philadelphia Museum of Art = B Phila Museum Art Bulletin-philadelphia Museum of Art = B. Phila. Museum Art Bulletin. Philadelphia. Pennsylvania Hospital. Ayer Clinical Laboratory = Bull Phila Pa Hosp Ayer Clin Lab Bulletin philologique et historique (jusqu'a 1610) du Comite des travaux historiques et scientifiques = Bull Philol Hist Bulletin. Portland, Or. Clinic = Portland Clin Bull Bulletin Razreda za likovne umjetnosti Hrvatske akademije znanosti i umjetnosti = BLikUm Bulletin romand d'entomologie = Bull. romand entomol. Bulletin. Roslyn, N. Y. St. Francis Hospital and Sanatorium for Cardiac Children = Heart Cent Bull (Roslyn) Bulletin - San Diego County Dental Society = Bull San Diego Cty Dent Soc Bulletin, San Diego County Dental Society = Bull. San Diego Cty. Dent. Soc. Bulletin - San Mateo County Dental Society = Bull San Mateo Cty Dent Soc Bulletin, San Mateo County Dental Society = Bull. San Mateo Cty. Dent. Soc. Bulletins de la Société des Antiquaires de l'Ouest = BSAO Bulletin - Second District Dental Society = Bull Second Dist Dent Soc Bulletin, Second District Dental Society = Bull. Second Dist. Dent. Soc. Bulletin Series of The Royal Tropical Institute = Bul S Rti Bulletin Series of The Royal Tropical Institute = Bul. S. Rti. Bulletins et memoires de la Faculte mixte de medecine et de pharmacie de Dakar = Bull Mem Fac Mixte Med Pharm Dakar Bulletins Et Memoires De La Societe D Anthropologie De Paris = B Mem Soc Anthro Par Bulletins Et Memoires De La Societe D Anthropologie De Paris = B. Mem. Soc. Anthro. Par. Bulletins et memoires de la Societe d'anthropologie de Paris = Bull Mem Soc Anthropol Paris Bulletins et memoires de la Societe francaise d'ophtalmologie = Bull Mem Soc Fr Ophtalmol Bulletins et Memoires de la Societe Francaise d'Ophtalmologie = Bull. Mem. Soc. Fr. Ophtalmol. Bulletins et memoires de la Societe medicale des hopitaux de Paris = Bull Mem Soc Med Hop Paris Bulletins et Memoires de la Societe Medicale des Hopitaux de Paris = Bull. Mem. Soc. Med. Hop. Paris Bulletin Sinai Hospital of Detroit = B Sinai Hosp Detroit Bulletin Sinai Hospital of Detroit = B. Sinai Hosp. Detroit Bulletin - Sinai Hospital of Detroit = Bull Sinai Hosp Detroit Bulletin. Smith College Museum of Art = BulletinNorthampton Bulletin. Société archéologique d'Alexandrie = BArchAlex Bulletin (Societe belge d'etudes Napoleoniennes) = Bull Soc Belge Etud Napoleon Bulletin. Societe de chirurgie de Paris = Bull Soc Chir Paris Bulletin. Societe des medecins hygienistes d'Algerie = Bull Soc Med Hyg Alger Bulletin. Societe des sciences, lettres et arts de Pau = Bull Soc Sci Lettr Arts Pau Bulletin - Societe francaise d'histoire des hopitaux = Bull Soc Fr Hist Hop Bulletin - Society of Vacuum Coaters = Bull. Soc. Vac. Coaters Bulletin. Srpska akademija nauka i umetnosti, Belgrad. Odeljenje medicinskih nauka = Bull Acad Serbe Sci Arts Bulletin's Science Series = Bull. Sci. Ser. Bulletin (St. Louis Park Medical Center) = Bull St Louis Park Med Cen Bulletins trimestriels de la Société des antiquaires de Picardie = BSAP Bulletin Suisse de Mycologie = Bull. Suisse Mycol. Bulletin technique de la Suisse romande = Bull. tech. Suisse romande Bulletin - Tennessee Nurses Association = Bull Tenn Nurses Assoc Bulletin, Tennessee Nurses Association = Bull. Tenn. Nurses Assoc. Bulletin - Texas Nurses Association = Bull Tex Nurses Assoc Bulletin, Texas Nurses Association = Bull. Tex. Nurses Assoc. Bulletin. The Hebrew University, Jerusalem, Rabinowitz Fund = BJerus (Bulletin trimestriel de la) Société de géographie et d’archéologie (de la province) d’Oran = SocGeoAOran Bulletin trimestriel de la Societe mycologique de France = Bull Trimest Soc Mycol Fr Bulletin trimestriel de l'Institut des actuaires francais. Institut des actuaires francais, Paris = Bull Trimest Inst Actuaires Francais Bulletin. Tufts-New England Medical Center = Bull Tufts N Engl Med Cent Bulletin. Union County (N. J.) Dental Society = Bull Union Cty Dent Soc Bulletin. United States. Army Medical Dept = Bull U S Army Med Dep Bulletin. University of London. Institute of Classical Studies = Bull Inst Class Stud Univ Lond Bulletin. Vancouver Medical Association = Bull Vanc Med Assoc Bulletin (Western Dental Society). = West Dent Soc Bull Bulletin. World Medical Association = Bull World Med Assoc Bullettino del Centro Camuno di studi preistorici = BCamuno Bullettino della Commissione archeologica comunale di Roma = BCom Bullettino della Commissione Archeologica Comunale in Roma = BCAR Bullettino delle scienze mediche = Bull Sci Med (Bologna) Bullettino delle Scienze Mediche = Bull. Sci. Med. (Bologna) Bullettino dell'Instituto di corrispondenza archeologica = BdI Bullettino dell'Istituto di Diritto romano = BIDR Bullettino dell'Istituto di diritto romano »Vittorio Scialoja« = BDirRom Bullettino del Museo della civiltà romana = BMusCivRom Bullettino di paletnologia italiana = BPI Bullettino senese di storia patria = BSiena Bundesgesundheitsblatt = Bundesgesundheitsblatt Bundesgesundheitsblatt-gesundheitsforschung-gesundheitsschutz = Bundesgesundheitsbla Bundesgesundheitsblatt-gesundheitsforschung-gesundheitsschutz = Bundesgesundheitsbla. Bundesgesundheitsblatt, Gesundheitsforschung, Gesundheitsschutz = Bundesgesundheitsblatt Gesundheitsforschung Gesundheitsschutz Bündner Monatsblatt = Bündner Mon.bl. Bündnerwald, Beiheft = Bündnerwald, Beih. Bündnerwald = Bündnerwald Bunseki Kagaku = Bunseki Kagaku Buoyant Convection in Geophysical Flows = Nato Adv Sci I C-mat Buoyant Convection in Geophysical Flows = Nato. Adv. Sci. I. C-mat. Buprenorphine - A Substitution Agent for The Treatment of Opioid Addiction: A Uk Perspective = Res Clin Forums Buprenorphine - A Substitution Agent for The Treatment of Opioid Addiction: A Uk Perspective = Res. Clin. Forums. Burbot: Ecology, Management and Culture = Am Fish S S Burbot: Ecology, Management and Culture = Am. Fish. S. S. Bur = Bur Burden of Musculoskeletal Conditions At The Start of The New Millennium = Who Tech Rep Ser Burden of Musculoskeletal Conditions At The Start of The New Millennium = Who. Tech. Rep. Ser. Bureaucrat = Bureaucrat Bureau of American Ethnology Bulletin = Bur Am Ethnol Bull Bureau of American Ethnology Bulletin = Bur. Am. Ethnol. Bull. Bureau of Justice Statistics special report = Bur Justice Stat Spec Rep Bureau of Mines Information Circular = Bur. Mines Inf. Circ. Bureau of Mines Report of Investigations = Bur. Mines Rep. Invest. Bureau of Research Resource Proceedings = Brr Proc Bureau of Research Resource Proceedings = Brr. Proc. Bureau of Rural Resources Proceedings = Bur Rur R P Bureau of Rural Resources Proceedings = Bur. Rur. R. P. Bureau of Rural Resources Workshop Report = Bur Ru W Bureau of Rural Resources Workshop Report = Bur. Ru. W. Bureau of Standards Journal of Research = Bur Stand J Res Bureau of Standards Journal of Research = Bur. Stand. J. Res. Burgenlandische Heimatblatter = Burgenl Heimatbl Burgense = Burgense Bürger im Staat, Der = Bürg. Staat Burg - Vorburg - Suburbium: Zur Problematik Der Nebenareale Fruhmittelalterlicher Zentren = Int Tagung Mikulcice Burg - Vorburg - Suburbium: Zur Problematik Der Nebenareale Fruhmittelalterlicher Zentren = Int. Tagung. Mikulcice. Buried Plastic Pipe Technology : 2nd Volume = Am Soc Test Mater Buried Plastic Pipe Technology : 2nd Volume = Am. Soc. Test. Mater. Buried Plastic Pipe Technology = Am Soc Test Mater Buried Plastic Pipe Technology = Am. Soc. Test. Mater. Burlington Magazine = Burlington Mag Burlington Magazine = Burlington Mag. Burma medical journal = Burma Med J Burners in Heating Technology 2 = Vdi Bericht Burners in Heating Technology 2 = Vdi. Bericht. Burning Issues of North Sea Ecology = Senck Marit Burning Issues of North Sea Ecology = Senck. Marit. Burning Plasma Diagnostics = Aip Conf Proc Burning Plasma Diagnostics = Aip. Conf. Proc. Burns=Burns;; Burns = Burns Burns, including thermal injury = Burns Incl Therm Inj Burns, including Thermal Injury = Burns. Incl. Therm. Inj. Burns : journal of the International Society for Burn Injuries = Burns Buros-nebraska Symposium On Measurement & Testing = Buros Neb S Buros-nebraska Symposium On Measurement & Testing = Buros. Neb. S. Bus 2000: The Heart of City Centre Transportation = Imeche Conf Trans Bus 2000: The Heart of City Centre Transportation = Imeche. Conf. Trans. Bus 92 = Proc Inst Mech Eng S Bus 92 = Proc. Inst. Mech. Eng. S. Bus and Coach '96 = Imeche Conf Trans Bus and Coach '96 = Imeche. Conf. Trans. Bus and Truck - Autotech '97 = Imeche Sem Bus and Truck - Autotech '97 = Imeche. Sem. Bush Administrations and Saddam Hussein: Deciding On Conflict = Adv Foreign Policy A Bush Administrations and Saddam Hussein: Deciding On Conflict = Adv. Foreign. Policy. A. Bush School Series in The Economics of Public Policy = Bush Sch S Publ Bush School Series in The Economics of Public Policy = Bush Sch. S. Publ. Business Agility and Information Technology Diffusion = Int Fed Info Proc Business Agility and Information Technology Diffusion = Int. Fed. Info. Proc. Business and Commercial Aviation = Bus Commer Aviat Business and Commercial Aviation = Bus. Commer. Aviat. Business and Economic History, 2nd Series = Bus Ec His Business and Economic History, 2nd Series = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 14 = Bus Ec His Business and Economic History, 2nd Series, Vol 14 = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 15 = Bus Ec His Business and Economic History, 2nd Series, Vol 15 = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 16 = Bus Ec His Business and Economic History, 2nd Series, Vol 16 = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 17 = Bus Ec His Business and Economic History, 2nd Series, Vol 17 = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 19 = Bus Ec His Business and Economic History, 2nd Series, Vol 19 = Bus. Ec. His. Business and Economic History, 2nd Series, Vol 21 = Bus Ec His Business and Economic History, 2nd Series, Vol 21 = Bus. Ec. His. Business and Economic History=Bus. Econ. Hist. Business and Economic History, Second Series, Vol 20, 1991 = Bus Ec His Business and Economic History, Second Series, Vol 20, 1991 = Bus. Ec. His. Business and Economic History : The Journal of The Business History Conference, Second Series = Bus Econ H Business and Economic History : The Journal of The Business History Conference, Second Series = Bus. Econ. H. Business and Economic History, Vol 22, No 1, Fall 1993 = Bus Ec His Business and Economic History, Vol 22, No 1, Fall 1993 = Bus. Ec. His. Business and Economic History, Vol 23, No 1, Fall 1994 = Bus Econ H Business and Economic History, Vol 23, No 1, Fall 1994 = Bus. Econ. H. Business and Economic History, Vol 24, No 1, Fall 1995 = Bus Econ H Business and Economic History, Vol 24, No 1, Fall 1995 = Bus. Econ. H. Business and Economic History, Vol 24, No 2, Winter 1995 = Bus Econ H Business and Economic History, Vol 24, No 2, Winter 1995 = Bus. Econ. H. Business and Economic History, Vol 25, No 2, Winter 1996 = Bus Econ H Business and Economic History, Vol 25, No 2, Winter 1996 = Bus. Econ. H. Business and Economic History, Vol 26, No 1, Fall 1997 = Bus Econ H Business and Economic History, Vol 26, No 1, Fall 1997 = Bus. Econ. H. Business and economic review (Columbia, S.C.) = Bus Econ Rev Business and health = Bus Health Business and Health = Bus. Health Business and Management-spausdinta = Bus Manag Business and Management-spausdinta = Bus. Manag. Business = Business Business Case for Corporate Social Responsibility = Contrib Manag Sci Business Case for Corporate Social Responsibility = Contrib. Manag. Sci. Business Computing = Handb Info Syst Business Computing = Handb. Info. Syst. Business, Conflict Resolution and Peacebuilding - Contributions From The Private Sector to Address Violent Conflict = Routl Stud Peace Con Business, Conflict Resolution and Peacebuilding - Contributions From The Private Sector to Address Violent Conflict = Routl. Stud. Peace. Con. Business Cycles, Indicators and Forecasting = Stud Bus Cycles Business Cycles, Indicators and Forecasting = Stud. Bus. Cycles. Business Discourse = Res Pract Appl Lingu Business Discourse = Res. Pract. Appl. Lingu. Business Economics=Bus. Econ. Business economics (Cleveland, Ohio) = Bus Econ Business Economics in A Rapidly Changing World = Bus Econ Rapid Chang Business Economics in A Rapidly Changing World = Bus. Econ. Rapid. Chang. Business Ethics-a European Review = Bus Ethics Business Ethics-a European Review = Bus. Ethics. Business Ethics and Corporate Sustainability = Stud Transatl Bus Et Business Ethics and Corporate Sustainability = Stud. Transatl. Bus. Et. Business Ethics and Electronic Economy = St Econ Ethic Philos Business Ethics and Electronic Economy = St. Econ. Ethic. Philos. Business Ethics of Innovation = Ethic Sci Technol As Business Ethics of Innovation = Ethic. Sci. Technol. As. Business Ethics of Innovation = Ethics Sci Tech Ass Business Ethics of Innovation = Ethics Sci. Tech. Ass. Business ethics (Oxford, England) = Bus Ethics Business Ethics Quarterly = Bus Ethics Q Business Ethics Quarterly = Bus. Ethics Q. Business ethics quarterly : the journal of the Society for Business Ethics = Bus Ethics Q Business, Finance and Economics of China = China 21st Century Business, Finance and Economics of China = China 21st. Century. Business-government Relations in Prewar Japan = Routl Stud Mod Hist Business-government Relations in Prewar Japan = Routl. Stud. Mod. Hist. Business history = Bus Hist Business History=Bus. Hist. Business History = Bus Hist Business History = Bus. Hist. Business history review = Bus Hist Rev Business History Review=Bus. Hist. Rev. Business History Review = Bus Hist Rev Business History Review = Bus. Hist. Rev. Business horizons = Bus Horiz Business Horizons = Bus. Horiz. Business Horizons = Bus Horizons Business Horizons = Bus. Horizons Business Improvement Districts: Research, Theories, and Controversies = Public Adm Public Po Business Improvement Districts: Research, Theories, and Controversies = Public. Adm. Public. Po. Business India = BusinessIndia Business Information: Needs and Strategies = Libr Inform Sci Ser Business Information: Needs and Strategies = Libr. Inform. Sci. Ser. Business & Information Systems Engineering = Bus Inform Syst Eng+ Business & Information Systems Engineering = Bus. Inform. Syst. Eng+.+ Business & Information Systems Engineering = Bus Inf Syst Eng Business & Information Systems Engineering = Bus. Inf. Syst. Eng. Business Information Systems = Lect Notes Bus Inf Business Information Systems = Lect. Notes. Bus. Inf. Business Information Systems = Lect Notes Bus Inf P Business Information Systems = Lect. Notes. Bus. Inf. P. Business Information Systems, Proceedings = Lect Notes Bus Inf Business Information Systems, Proceedings = Lect. Notes. Bus. Inf. Business Information Systems, Proceedings = Lect Notes Bus Inf P Business Information Systems, Proceedings = Lect. Notes. Bus. Inf. P. Business Information Systems, Proceedings = Lect Notes Comput Sc Business Information Systems, Proceedings = Lect. Notes. Comput. Sc. Business Information Systems Workshops = Lect Notes Bus Inf Business Information Systems Workshops = Lect. Notes. Bus. Inf. Business Information Systems Workshops = Lect Notes Bus Inf P Business Information Systems Workshops = Lect. Notes. Bus. Inf. P. Business Innovation in Asia: Knowledge and Technology Networks From Japan = Routl Contemp Asia Business Innovation in Asia: Knowledge and Technology Networks From Japan = Routl. Contemp. Asia. Business insurance = Bus Insur Business Insurance = Bus. Insur. Business Intelligence for The Real-time Enterprise = Lect Notes Bus Inf Business Intelligence for The Real-time Enterprise = Lect. Notes. Bus. Inf. Business Intelligence for The Real-time Enterprises = Lect Notes Comput Sc Business Intelligence for The Real-time Enterprises = Lect. Notes. Comput. Sc. Business in Thailand = Bus Thail Business Issues Competition and Entrepreneurship = Bus Iss Compet Entre Business Issues Competition and Entrepreneurship = Bus. Iss. Compet. Entre. Business Japan = Bus Jpn Business Japan = Bus. Jpn. Business Lawyer = Bus Lawyer Business Lawyer = Bus. Lawyer Business Networks = De Gruy St Business Networks = De. Gruy. St. Business Networks in Clusters and Industrial Districts: The Governance of The Global Value Chain = Reg Cities Business Networks in Clusters and Industrial Districts: The Governance of The Global Value Chain = Reg. Cities. Business Networks: Strategy and Structure = Routl Stud Bus Organ Business Networks: Strategy and Structure = Routl. Stud. Bus. Organ. Business of Sports: A Primer for Journalists = Lea Commun Ser Business of Sports: A Primer for Journalists = Lea. Commun. Ser. Business of Tourism: Place, Faith, and History = Hagley Perspect Bus Business of Tourism: Place, Faith, and History = Hagley. Perspect. Bus. Business Processes: An Archival Science Approach to Collaborative Decision Making, Records, and Knowledge Management = Arch Lib Business Processes: An Archival Science Approach to Collaborative Decision Making, Records, and Knowledge Management = Arch. Lib. Business Process Management = Lect Notes Comput Sc Business Process Management = Lect. Notes. Comput. Sc. Business Process Management, Proceedings = Lect Notes Comput Sc Business Process Management, Proceedings = Lect. Notes. Comput. Sc. Business Process Management Workshops, 2009 = Lect Notes Bus Inf Business Process Management Workshops, 2009 = Lect. Notes. Bus. Inf. Business Process Management Workshops = Lect Notes Bus Inf Business Process Management Workshops = Lect. Notes. Bus. Inf. Business Process Management Workshops = Lect Notes Bus Inf P Business Process Management Workshops = Lect. Notes. Bus. Inf. P. Business Process Management Workshops = Lect Notes Comput Sc Business Process Management Workshops = Lect. Notes. Comput. Sc. Business Process Modeling Notation = Lect Notes Bus Inf Business Process Modeling Notation = Lect. Notes. Bus. Inf. Business Process Modeling Notation = Lect Notes Bus Inf P Business Process Modeling Notation = Lect. Notes. Bus. Inf. P. Business Process Re-engineering = Ifip Trans A Business Process Re-engineering = Ifip. Trans. A. Business Process Transformation = Adv Manag Inform Sys Business Process Transformation = Adv. Manag. Inform. Sys. Business & professional ethics = Bus Prof Ethics Business & professional ethics journal = Bus Prof Ethics J Business Quarterly = Bus Quart Business Quarterly = Bus. Quart. Business Regulation and Public Policy: The Costs and Benefits of Compliance = Int Stud Entrep Business Regulation and Public Policy: The Costs and Benefits of Compliance = Int. Stud. Entrep. Business review (Federal Reserve Bank of Philadelphia) = Bus Rev Business & Society = Bus Soc Business & Society = Bus. Soc. Business Software Review = Bus Softw Rev Business Software Review = Bus. Softw. Rev. Business Strategy and The Environment = Bus Strateg Environ Business Strategy and The Environment = Bus. Strateg. Environ. Business Strategy Over The Industry Life Cycle = Adv Strat M Business Strategy Over The Industry Life Cycle = Adv. Strat. M. Business Survey Methods = Wiley S Pro Business Survey Methods = Wiley. S. Pro. Business-to-business Brand Management: Theory, Research and Executivecase Study Exercises = Adv Bus Mark Purch Business-to-business Brand Management: Theory, Research and Executivecase Study Exercises = Adv. Bus. Mark. Purch. Business week = Bus Week Business Week = Bus Week Business Week = Bus. Week Butlletí de la Societat Catalana de Matemàtiques = Butl. Soc. Catalana Mat. Butlleti de la Societat d'Amics de la Historia i de la Ciencia Farmaceutica Catalana : BSAHCFC = Butll Soc Amics Hist Cienc Farm Catalana Butlletí informatiu de l'Institut de prehistòria i arqueologia de la Diputació provincial de Barcelona = BABarcel B. V. Head, Historia Numorum. A Manual of Greek Numismatics (Oxford 1887 = Head Bwk = Bwk Bwk = Bwk-energie-fachmag Bwk = Bwk-energie-fachmag. Bygningsstatiske Meddelelser = Bygningsstatiske Med Bygningsstatiske Meddelelser = Bygningsstatiske Med. Bygone Kent = Bygone Kent By og bygd = By Bygd Byogen biseibutsu kenshutsu joho, geppo = Infectious agents surveillance report (IASR)|Byogen Biseibutsu Kenshutsu Joho Geppo Byron: Heritage and Legacy = Ninet-century Major Byron: Heritage and Legacy = Ninet-century. Major. Byron Journal = Byron J Byron Journal = Byron J. Byron = Routledge Guides Lit Byron = Routledge. Guides. Lit. Byron's Romantic Celebrity: Industrial Culture and The Hermeneutic of Intimacy = Palgrave Stud Enligh Byron's Romantic Celebrity: Industrial Culture and The Hermeneutic of Intimacy = Palgrave. Stud. Enligh. Byte = Byte By The Same Word: Creation and Salvation in Hellenistic Judaism and Early Christianity = Beih Z Neutest Wiss By The Same Word: Creation and Salvation in Hellenistic Judaism and Early Christianity = Beih. Z. Neutest. Wiss. Byulleten Eksperimental'noi Biologii i Meditsiny = Byull. Eksp. Biol. Med. Byu Studies = Byu Stud Byu Studies = Byu Stud. Byzantine and Early Islamic Near East, 1 = St Late Ant Byzantine and Early Islamic Near East, 1 = St. Late. Ant. Byzantine and Modern Greek Studies = Byzantine Mod Greek Byzantine and Modern Greek Studies = Byzantine Mod. Greek Byzantine and Serbian Serres in Xiv Century = Serb Ac Mon Byzantine and Serbian Serres in Xiv Century = Serb. Ac. Mon. Byzantine Constantinople: Monuments, Topography, and Everyday Life = Medieval Mediterr Byzantine Constantinople: Monuments, Topography, and Everyday Life = Medieval. Mediterr. Byzantine Legacy in Eastern Europe = E Europ M Byzantine Legacy in Eastern Europe = E. Europ. M. Byzantine Studies = Byzantine Stud Byzantine Studies = Byzantine Stud. Byzantinische Forschungen = Byzantinische Forsch Byzantinische Forschungen: internationale Zeitschrift für Byzantinistik = ByzF Byzantinische Forschungen. Internationale Zeitschrift für Byzantinistik = ByzF Byzantinisches Archiv = Byzant Arch Byzantinisches Archiv = Byzant. Arch. Byzantinische Zeitschrift = Byzantinische Z Byzantinische Zeitschrift = Byzantinische Z. Byzantinische Zeitschrift = ByzZ Byzantinische Zeitschrift = ByzZ Byzantinisch-neugriechische Jahrbücher = ByzJb Byzantinoslavica = Byzantinoslavica Byzantinoslavica: revue internationale des études byzantines = ByzSlav Byzantion; revue internationale des etudes byzantines = Byzantion Byzantion: revue internationale des études byzantines = Byzantion Byzantium in The Ninth Century: Dead Or Alive? = Soc Prom Byzant St Byzantium in The Ninth Century: Dead Or Alive? = Soc. Prom. Byzant. St. BZB. Bayerisches Zahnarzteblatt = BZB Bayer Zahnarztebl BZB: Bayerisches Zahnarzteblatt, mit Mitteilungen d. Kassenzahnarztlichen Vereinigung Bayerns = BZB Bayer. Zahnarztebl. Mitt. Kassenzahnarztl. Ver. Bayerns C2cr07: Colliders to Cosmic Rays = Aip Conf Proc C2cr07: Colliders to Cosmic Rays = Aip. Conf. Proc. C4 Photosynthesis and Related Co2 Concentrating Mechanisms = Adv Photosynth Resp C4 Photosynthesis and Related Co2 Concentrating Mechanisms = Adv. Photosynth. Resp. Ca 2002: Proceedings of The Computer Animation 2002 = Comp Anim Conf Proc Ca 2002: Proceedings of The Computer Animation 2002 = Comp. Anim. Conf. Proc. Ca-a Cancer Journal for Clinicians = Ca-cancer J Clin Ca-a Cancer Journal for Clinicians = Ca-cancer. J. Clin. CA: a cancer journal for clinicians = CA Cancer J Clin CA: A Cancer Journal for Clinicians = CA. Cancer J. Clin. CA: A Cancer Journal For Clinicians=CA Cancer J Clin;; Caap 90 = Lect Notes Comput Sc Caap 90 = Lect. Notes. Comput. Sc. Caap 92 : 17th Colloquium On Trees in Algebra and Programming = Lect Notes Comput Sc Caap 92 : 17th Colloquium On Trees in Algebra and Programming = Lect. Notes. Comput. Sc. Caas Special Publication = Caas Spec Pub Caas Special Publication = Caas Spec. Pub. Cabi Climate Change Series = Cabi Clim Change Ser Cabi Climate Change Series = Cabi Clim. Change Ser. Cable and Satellite Europe = Cable Satell Eur Cable and Satellite Europe = Cable Satell. Eur. Cable-stayed Bridges = Dev Civ Eng Cable-stayed Bridges = Dev. Civ. Eng. Cables & Transmission = Cables Transm Cables & Transmission = Cables Transm. Cabo = Cabo Cad Do Laboratorio Xeoloxico De Laxe = Cad Lab Xeol Laxe Cad Do Laboratorio Xeoloxico De Laxe = Cad Lab. Xeol. Laxe Caderno de terapeutica Labor = Cad Ter Labor Cadernos da Casa de Oswaldo Cruz = Cad Casa Oswaldo Cruz Cadernos de arqueologia = CadA Cadernos de Ciência e Tecnologia = Cad. Ciênc. Tecnol. Cadernos de História e Filosofia da Ciência = Cad. Hist. Filos. Ciênc. (3) Cadernos de historia e saude / Casa de Oswaldo Cruz = Cad Hist Saude Cadernos De Pesquisas = Cad Pesqui Cadernos De Saude Publica = Cad Saude Publica Cadernos De Saude Publica = Cad. Saude Publica Cadernos de Saúde Pública = Cad. Saúde Pública Cadernos de saude publica / Ministerio da Saude, Fundacao Oswaldo Cruz, Escola Nacional de Saude Publica = Cad Saude Publica Cadernos Do Laboratorio Xeoloxico De Laxe 21 = Cadern Lab Xeol Laxe Cadernos Do Laboratorio Xeoloxico De Laxe 21 = Cadern. Lab. Xeol. Laxe Cadernos Do Laboratorio Xeoloxico De Laxe 21 = Cuad Lab Xe Cadernos Do Laboratorio Xeoloxico De Laxe 21 = Cuad. Lab. Xe. Cadernos Do Laboratorio Xeoloxico De Laxe, No 33 = Cad Lab Xeol Laxe Cadernos Do Laboratorio Xeoloxico De Laxe, No 33 = Cad. Lab. Xeol. Laxe. Cadernos Do Laboratorio Xeoloxico De Laxe-revista De Xeoloxia Galega E Do Hercinico Peninsular = Cadern Lab Xeol Laxe Cadernos Do Laboratorio Xeoloxico De Laxe-revista De Xeoloxia Galega E Do Hercinico Peninsular = Cadern. Lab. Xeol. Laxe. Cadernos Do Laboratorio Xeoloxico De Laxe : Revista De Xeoloxia Galega E Do Hercinico Peninsular = Cad Lab Xeol Laxe Cadernos Do Laboratorio Xeoloxico De Laxe : Revista De Xeoloxia Galega E Do Hercinico Peninsular = Cad. Lab. Xeol. Laxe Cadernos Do Laboratorio Xeoloxico De Laxe : Revista De Xeoloxia Galega E Do Hercinico Peninsular = Cuad Lab Xe Cadernos Do Laboratorio Xeoloxico De Laxe : Revista De Xeoloxia Galega E Do Hercinico Peninsular = Cuad. Lab. Xe. Cadernos Do Laboratorio Xeoloxico De Laxe, Vol 35 = Cadern Lab Xeol Laxe Cadernos Do Laboratorio Xeoloxico De Laxe, Vol 35 = Cadern. Lab. Xeol. Laxe. Cadmium in The Environment = Env Health Phys Chem Cadmium in The Environment = Env. Health. Phys. Chem. Cadmo = Cadmo Cadomian Orogeny = Geol Soc Spec Publ Cadomian Orogeny = Geol. Soc. Spec. Publ. Caduceus=Caduceus;; Caduceus = Caduceus Caduceus (Springfield, Ill.) = Caduceus Caementum = Caementum Caesaraugusta. Publicaciones del Seminario de Arqueología y Numismática Aragonesas = Caesaraugusta Caesarodunum. Bulletin de l'Institut d'études latines et du Centre de recherches A. Piganiol = Caesarodunum Cafe Cacao The = Cafe Cacao The Cafes and Bars: The Architecture of Public Display = Interior Archit Cafes and Bars: The Architecture of Public Display = Interior. Archit. CAFS news : a Centre for African Family Studies (CAFS) newsletter = CAFS News Cahier. Centre d'études chypriotes = CahCEC Cahier du Centre technique du bois = Cah. Cent. tech. bois Cahiers Agricultures = Cah Agric Cahiers Agricultures = Cah. Agric. Cahiers alsaciens d'archéologie, d'art et d'histoire = CAAH Cahiers alsaciens d'archeologie, d'art et d'histoire = Cah Alsac Archeol Art Hist Cahiers archéologiques = CArch Cahiers archéologiques: fin de l'antiquité et Moyen Âge = CArch Cahiers bruxellois = Cah Brux Cahiers Confrontation = Cah Confront Cahiers d'Alexandrie = Cah Alex Cahiers d'anesthesiologie = Cah Anesthesiol Cahiers d'Anesthesiologie = Cah. Anesthesiol. Cahiers D Anesthesiologie=Cah Anesthesiol;; Cahiers danthropologie = Cah Anthropol Cahiers d'archeologie et d'histoire du Berry = Cah Archeol Hist Berry Cahiers d'archéologie subaquatique = CahASubaqu Cahiers De Biologie Marine = Cah Biol Mar Cahiers De Biologie Marine = Cah. Biol. Mar. Cahiers de Byrsa = CahByrsa Cahiers De Civilisation Medievale = Cah Civilis Medieval Cahiers De Civilisation Medievale = Cah. Civilis. Medieval. Cahiers de Clio = Cah Clio Cahiers d'Economie et Sociologie Rurales=Cah. Econ. Sociologie Rurales Cahiers d'Economie Politique=Cah. Econ. Politique Cahiers De Droit Fiscal International = Cah Droit F Cahiers De Droit Fiscal International = Cah. Droit F. Cahiers De Droit Fiscal International, Vol 74a = Cah Droit F Cahiers De Droit Fiscal International, Vol 74a = Cah. Droit F. Cahiers De Droit Fiscal International, Vol Lxxxiiia = Cah Droit F Cahiers De Droit Fiscal International, Vol Lxxxiiia = Cah. Droit F. Cahiers De Droit Fiscal International, Vol Lxxxiiib = Cah Droit F Cahiers De Droit Fiscal International, Vol Lxxxiiib = Cah. Droit F. Cahiers de geographie de Quebec = Cah Geogr Que Cahiers de geographie du Quebec = Cah Geogr Que Cahiers de Karnak = CahKarnak Cahiers de lAcademie de Bretagne = Cah Acad Bretagne Cahiers de la céramique égyptienne = CahCerEg Cahiers de la Délégation française en Iran = CahDelFrIran Cahiers De La Revue De Theologie Et De Philosophie = Cah Rev The Cahiers De La Revue De Theologie Et De Philosophie = Cah. Rev. The. Cahiers de l'Institut du Moyen Âge grec et latin = CIMA Cahiers de Medecine = Cah. Med. Cahiers De Medecine = Cah Med Cahiers De Medecine = Cah. Med. Cahiers de medecine inter professionnelle = Cah Med Inter Prof Cahiers D'enseignement De La Sofcot = Cah Enseign Cahiers D'enseignement De La Sofcot = Cah. Enseign. Cahiers de Numismatique: bulletin de la Société d'études numismatiques et archéologiques = CahNum Cahiers De Nutrition Et De Dietetique = Cah Nutr Diet Cahiers De Nutrition Et De Dietetique = Cah. Nutr. Diet. Cahiers de philosophie politique et juridique = CPhPJ Cahiers de Physique = Cah. Phys. Cahiers de Prothese = Cah. Prothese Cahiers de psychiatrie = Cah Psychiatr Cahiers De Psychologie Cognitive-current Psychology of Cognition = Cah Psychol Cogn Cahiers De Psychologie Cognitive-current Psychology of Cognition = Cah. Psychol. Cogn. Cahiers de recherches de l'Institut de Papyrologie et d'égyptologie de Lille III = CRIPEL Cahiers de recherches de l'Institut de papyrologie et d'égyptologie de Lille. Sociétés urbaines en Égypte et au Soudan = CahPEg Cahiers de recherche sociologique = Cah Rech Sociol Cahiers des Ameriques latines (Paris, France : 1985) = Cah Am Lat Cahiers des annales de Normandie. Annales de Normandie = Cah Ann Normandie Cahiers des etudes anciennes = Cah Etud Anc Cahiers des études anciennes = CEA Cahiers de sexologie clinique = Cah Sexol Clin Cahiers de sociologie et de demographie medicales = Cah Sociol Demogr Med Cahiers de Sociologie et de Demographie Medicales = Cah. Sociol. Demogr. Med. Cahiers de Sociologie Et De Demographie Medicales=Cah Sociol Demogr Med;; Cahiers des religions africaines = Cah Relig Afr Cahiers des sciences humaines = Cah Sci Hum Cahiers de Topologie et Géométrie Différentielle Catégoriques = Cahiers Topologie Géom. Différentielle Catég. Cahiers d'etudes africaines = Cah Etud Afr Cahiers D Etudes Africaines = Cah Etud Afr Cahiers D Etudes Africaines = Cah. Etud. Afr. Cahiers D Etudes Et De Recherches Victoriennes Et Edouardiennes = Cah Etud Rech Victor Cahiers D Etudes Et De Recherches Victoriennes Et Edouardiennes = Cah. Etud. Rech. Victor. Cahiers d'etudes medievales (Montreal, Quebec) = Cah Etud Mediev Cahiers d'etudes sur la Mediterranee orientale et le monde turco-iranien / Fondation nationale des science politiques, Centre d'etudes et de recherches internationales = Cah Mediterr Orient Monde Turco Iran Cahiers de Tunisie = CahTun Cahiers d'histoire = Cah Hist Cahiers D Histoire = Cah Hist Cahiers D Histoire = Cah. Hist. Cahiers d'histoire de la seconde guerre mondiale / Ministere de l'education nationale, Archives generales du royaume, Centre de recherches et d'etudes historiques de la seconde guerre mondiale = Cah Hist Second Guerr Mond Cahiers d'histoire (Espaces Marx (Association)) = Cah Hist Espaces Marx Assoc Cahiers d'histoire mondiale. Journal of world history = Cah Hist Mond Cahiers d'histoire publ. par les Univ. de Clermont-Lyon-Grenoble = CH Cahiers d'Informations Techniques / Revue de Metallurgie = Cah. Inf. Tech./Rev Metall Cahiers d'odonto-stomatologie = Cah Odontostomatol Touraine Cahiers d'Odonto-Stomatologie = Cah. Odontostomatol. (Touraine) Cahiers du Centre de Logique = Cahiers Centre Logique Cahiers du Centre de recherches et d'etudes sur Paris et l'Ile-de-France (CREPIF) = Cah Cent Rech Etud Paris Lle de France Cahiers du Centre d'études Chypriotes = CCEC Cahiers du Centre d'études de Recherche Opérationnelle = Cahiers Centre études Rech. Opér. Cahiers du Centre Georges Radet = CCGR Cahiers du Centre Gustave Glotz = CCG Cahiers du Centre Gustave-Glotz. Revue reconnue par le CNRS = CahGlotz Cahiers Du Cinema = Cah Cinema Cahiers Du Cinema = Cah. Cinema Cahiers du College de Medecine des Hopitaux de Paris = Cah. Coll. Med. Hop. Paris Cahiers du Groupe de recherches sur l'armée romaine et les provinces = CahArmeeRom Cahiers du groupe interdisciplinaire du théâtre antique (Cahiers du GITA) = CGITA Cahiers Du Monde Russe = Cah Monde Russe Cahiers Du Monde Russe = Cah. Monde Russe Cahiers Du Monde Russe Et Sovietique = Cahiers Monde R Sov Cahiers Du Monde Russe Et Sovietique = Cahiers Monde R. Sov. Cahiers du monde russe et sovietique = Cah Monde Russe Sov Cahiers du Musée Champollion. Histoire et archéologie = CahMusChampollion Cahiers Du Musee National D Art Moderne = Cah Musee Natl Art M Cahiers Du Musee National D Art Moderne = Cah. Musee Natl. Art M. Cahiers du Nursing = Cah. Nurs. Cahiers du seminaire de philosophie = Cah Semin Philos Cahiers economiques de Bruxelles = Cah Econ Brux Cahiers Economiques De Bruxelles = Cah Econ Brux Cahiers Economiques De Bruxelles = Cah. Econ. Brux. Cahiers Economiques de Bruxelles=Cah. Econ. Bruxelles Cahiers economiques et sociaux = Cah Econ Soc Cahiers Economiques et Sociaux=Cah. Econ. Soc. Cahiers Elisabethains = Cah Elisabethains Cahiers Elisabethains = Cah. Elisabethains Cahiers Ferdinand de Saussure: review suisse de linguistique générale = CFS Cahiers geographiques de Rouen = Cah Geogr Rouen Cahiers geologiques = Cah Geol Cahiers Histoire Mondiale-journal of World History = Cah Hist Mond J Worl Cahiers Histoire Mondiale-journal of World History = Cah. Hist. Mond. J. Worl. Cahiers Internationaux De Sociologie = Cah Int Sociol Cahiers Internationaux De Sociologie = Cah. Int. Sociol. Cahiers internationaux d'histoire economique et sociale = Cah Int Hist Econ Soc Cahiers Laennec = Cah Laennec Cahiers Leopold Delisle = Cah Leopold Delisle Cahiers ligures de préhistoire et de protohistoire = CahLig Cahiers Mathématiques de l'École Polytechnique Fédérale de Lausanne = Cahiers Math. École Polytech. Féd. Lausanne Cahiers medicaux de l'union francaise; revue medico-chirurgicale de la France d'outre-mer = Cah Medicaux Union Fr Cahiers medicaux lyonnais = Cah Med Lyon Cahiers Orstom Hydrobiologie = Cah Orstom Hydrobiol Cahiers Orstom Hydrobiologie = Cah. Orstom Hydrobiol. Cahiers Orstom Oceanographie = Cah Orstom Oceanogr Cahiers Orstom Oceanographie = Cah. Orstom Oceanogr. Cahiers O. R. S. T. O. M. Serie sciences humaines = Cah Orstom (Sci Hum) Cahiers quebecois de demographie / Association des demographes du Quebec = Cah Que Demogr Cahiers rhodaniens = CahRhod Cahiers R. M. F.: bulletin medical-guide du praticien-revue medicale francaise = Cah Rmf Bull Med Guide Pract Rev Cahiers techniques AFRO = Cah Tech AFRO Cahiers Victoriens & Edouardiens = Cah Victor Edouard Cahiers Victoriens & Edouardiens = Cah. Victor. Edouard. Cahiers victoriens & edouardiens = Cah Victor Edouardiens Cahiers Vilfredo Pareto = Cah Vilfredo Pareto Cahiers Vilfredo Pareto = Cah. Vilfredo Pareto Cailiao Baohu = Cailiao Baohu Cailiao Rechuli Xuebao = Cailiao Rechuli Xuebao Cairo = Cairo Cairo International Conference On High Energy Physics (cichep Ii) = Aip Conf Proc Cairo International Conference On High Energy Physics (cichep Ii) = Aip. Conf. Proc. Cairo today = Cairo Today Caitanya Vaisnava Vedanta of Jiva Gosvami: When Knowledge Meets Devotion = Routl Hindu Stud Ser Caitanya Vaisnava Vedanta of Jiva Gosvami: When Knowledge Meets Devotion = Routl. Hindu. Stud. Ser. Cajal and Consciousness = Ann Ny Acad Sci Cajal and Consciousness = Ann. Ny. Acad. Sci. CAL = CAL Calcified Tissue International = Calcified Tissue Int Calcified Tissue International = Calcified Tissue Int. Calcified tissue international = Calcif Tissue Int Calcified Tissue International=Calcif Tissue Int;; Calcified Tissue International = Calcif. Tissue Int. Calcified tissue research = Calcif Tissue Res Calcified Tissue Research = Calcif. Tissue Res. Calcified Tissue Research = Calc Tiss Res Calcified Tissue Research = Calc. Tiss. Res. Calcitonin Gene-related Peptide = Ann Ny Acad Sci Calcitonin Gene-related Peptide = Ann. Ny. Acad. Sci. Calcium-activated Chloride Channels = Curr Top Membr Calcium-activated Chloride Channels = Curr. Top. Membr. Calcium and Bone Disorders in Children and Adolescents = Endocr Dev Calcium and Bone Disorders in Children and Adolescents = Endocr. Dev. Calcium Antagonists : Pharmacology and Clinical Research = Med Sci Symp Ser Calcium Antagonists : Pharmacology and Clinical Research = Med. Sci. Symp. Ser. Calcium Binding Proteins in Normal and Transformed Cells = Adv Exp Med Biol Calcium Binding Proteins in Normal and Transformed Cells = Adv. Exp. Med. Biol. Calcium-binding Proteins in The Human Developing Brain = Adv Anat Embryol Cel Calcium-binding Proteins in The Human Developing Brain = Adv. Anat. Embryol. Cel. Calcium Channels : Structure and Function = Ann Ny Acad Sci Calcium Channels : Structure and Function = Ann. Ny. Acad. Sci. Calcium Entry and Action At The Presynaptic Nerve Terminal = Ann Ny Acad Sci Calcium Entry and Action At The Presynaptic Nerve Terminal = Ann. Ny. Acad. Sci. Calcium Hypothesis of Aging and Dementia = Ann Ny Acad Sci Calcium Hypothesis of Aging and Dementia = Ann. Ny. Acad. Sci. Calcium in Living Cells = Method Cell Biol Calcium in Living Cells = Method. Cell. Biol. Calcium in Plant Growth and Development = Cur Top Pl Calcium in Plant Growth and Development = Cur. Top. Pl. Calcium Measurement Methods = Neuromethods Calcium Measurement Methods = Neuromethods. Calcium, Membranes, Aging, and Alzheimers Disease = Ann Ny Acad Sci Calcium, Membranes, Aging, and Alzheimers Disease = Ann. Ny. Acad. Sci. Calcium Nutriture for Mothers and Children = Carnation N Calcium Nutriture for Mothers and Children = Carnation. N. Calcium Regulating Hormones and Bone Metabolism : Basic and Clinical Aspects, Vol 11 = Int Congr Ser Calcium Regulating Hormones and Bone Metabolism : Basic and Clinical Aspects, Vol 11 = Int. Congr. Ser. Calcium-regulating Hormones, Ii = Contrib Nephrol Calcium-regulating Hormones, Ii = Contrib. Nephrol. Calcium-regulating Hormones I : Role in Disease and Aging = Contrib Nephrol Calcium-regulating Hormones I : Role in Disease and Aging = Contrib. Nephrol. Calcium Regulation of Cellular Function = Adv Sec Mess Phosph Calcium Regulation of Cellular Function = Adv. Sec. Mess. Phosph. Calcium Signaling = Nato Sci Ser I Life Calcium Signaling = Nato. Sci. Ser. I. Life. Calcium Waves, Gradients and Oscillations = Ciba F Symp Calcium Waves, Gradients and Oscillations = Ciba. F. Symp. Calcolo = Calcolo Calcolo = Calcolo Calculational System Design = Nato Adv Sci I F-com Calculational System Design = Nato. Adv. Sci. I. F-com. Calculation of Health Expectancies : Harmonization, Consensus Achieved and Future Perspectives = Colloq Inse Calculation of Health Expectancies : Harmonization, Consensus Achieved and Future Perspectives = Colloq. Inse. Calculations of Emissions From German Agriculture: National Emission Inventory Report (nir) 2010 for 2008 = Landbauforsch-vti Ag Calculations of Emissions From German Agriculture: National Emission Inventory Report (nir) 2010 for 2008 = Landbauforsch-vti. Ag. Calculus of Selfishness = Princ Ser Theor Comp Calculus of Selfishness = Princ. Ser. Theor. Comp. Calculus of Variations and Differential Equations = Ch Crc Res Notes Calculus of Variations and Differential Equations = Ch. Crc. Res. Notes. Calculus of Variations and Differential Equations = Ch Crc Res Notes Mat Calculus of Variations and Differential Equations = Ch. Crc. Res. Notes. Mat. Calculus of Variations and Non-linear Partial Differential Equations = Lect Notes Math Calculus of Variations and Non-linear Partial Differential Equations = Lect. Notes. Math. Calculus of Variations and Optimal Control = Ch Crc Res Notes Calculus of Variations and Optimal Control = Ch. Crc. Res. Notes. Calculus of Variations and Optimal Control = Ch Crc Res Notes Mat Calculus of Variations and Optimal Control = Ch. Crc. Res. Notes. Mat. Calculus of Variations and Partial Differential Equations = Calc Var Partial Dif Calculus of Variations and Partial Differential Equations = Calc. Var. Partial Dif. Calculus of Variations and Partial Differential Equations = Calc. Var. Partial Differential Equations Calcutta, Bangladesh, and Bengal Studies : 1990 Bengal Studies Conference Proceedings = S Asia S Oc Calcutta, Bangladesh, and Bengal Studies : 1990 Bengal Studies Conference Proceedings = S. Asia. S. Oc. Calcutta Mathematical Society = Rev. Bull. Calcutta Math. Soc. Calcutta medical journal = Calcutta Med J Calcutta Statistical Association Bulletin = Calcutta Stat Assoc Calcutta Statistical Association Bulletin = Calcutta Stat. Assoc. Calcutta Statistical Association Bulletin = Calcutta Statist. Assoc. Bull. Caldasia = Caldasia Caliban = Caliban Calibration and Applications of Satellite Sensors for Environmental Monitoring = Adv Space Res Calibration and Applications of Satellite Sensors for Environmental Monitoring = Adv. Space. Res. Calibration and Characterization of Satellite Sensors = Adv Space Res Calibration and Characterization of Satellite Sensors = Adv. Space. Res. Calibration and Characterization of Satellite Sensors = Adv Space Res-series Calibration and Characterization of Satellite Sensors = Adv. Space. Res-series. Calibration and Characterization of Satellite Sensors and Accuracy of Derived Physical Parameters = Adv Space Res Calibration and Characterization of Satellite Sensors and Accuracy of Derived Physical Parameters = Adv. Space. Res. Calibration and Characterization of Satellite Sensors and Accuracy of Derived Physical Parameters = Adv Space Res-series Calibration and Characterization of Satellite Sensors and Accuracy of Derived Physical Parameters = Adv. Space. Res-series. Calibration and Intercalibration of Satellite Sensors and Early Results of Radarsat = Adv Space Res Calibration and Intercalibration of Satellite Sensors and Early Results of Radarsat = Adv. Space. Res. Calibration and Reliability in Groundwater Modelling: A Few Steps Closer to Reality = Iahs-aish P Calibration and Reliability in Groundwater Modelling: A Few Steps Closer to Reality = Iahs-aish. P. Calibration and Reliability in Groundwater Modelling: Coping With Uncertainty = Iahs-aish P Calibration and Reliability in Groundwater Modelling: Coping With Uncertainty = Iahs-aish. P. Calibration and Reliability in Groundwater Modelling: From Uncertainty to Decision Making = Iahs-aish P Calibration and Reliability in Groundwater Modelling: From Uncertainty to Decision Making = Iahs-aish. P. Calibration and Reliability in Groundwater Modelling = Iahs-aish P Calibration and Reliability in Groundwater Modelling = Iahs-aish. P. Calibration and Validation of Simulation Models 2004 = Transport Res Rec Calibration and Validation of Simulation Models 2004 = Transport. Res. Rec. Calibration, Characterization of Satellite Sensors, Physical Parameters Derived From Satellite Data = Adv Space Res Calibration, Characterization of Satellite Sensors, Physical Parameters Derived From Satellite Data = Adv. Space. Res. Calibration of Passive Remote Observing Optical and Microwave Instrumentation = P Soc Photo-opt Ins Calibration of Passive Remote Observing Optical and Microwave Instrumentation = P. Soc. Photo-opt. Ins. Calibrations: Reading for The Social = Public Worlds Calibrations: Reading for The Social = Public. Worlds. Calidoscopio = Calidoscopio California Agricultural Experiment Station Bulletin = Calif Aes Bull California Agricultural Experiment Station Bulletin = Calif. Aes. Bull. California Agriculture = Calif Agr California Agriculture = Calif. Agr. California anthropologist = Calif Anthropol California Coastal Zone Experience = Coastl Worl California Coastal Zone Experience = Coastl. Worl. California code of regulations = Calif Code Regul California Cooperative Oceanic Fisheries Investigations Reports = Cal Coop Ocean Fish California Cooperative Oceanic Fisheries Investigations Reports = Cal. Coop. Ocean. Fish. California counts / Public Policy Institute of California = Calif Counts California Fish and Game = Calif Fish Game California Fish and Game = Calif. Fish Game California historical quarterly = Calif Hist Q California Historical Quarterly = Calif Hist Quart California Historical Quarterly = Calif. Hist. Quart. California Historical Society quarterly = Calif Hist Soc Q California History = Calif Hist California History = Calif. Hist. California hospitals = Calif Hosp California Hospitals = Calif. Hosp. California journal = Calif J California Journal of Educational Research = Calif J Educ Res California Journal of Educational Research = Calif. J. Educ. Res. California law review = Calif Law Rev California Law Review = Calif Law Rev California Law Review = Calif. Law Rev. California magazine (Beverly Hills, Calif.) = Calif Mag California management review = Calif Manage Rev California Management Review=Calif. Manage. Rev. California Management Review = Calif Manage Rev California Management Review = Calif. Manage. Rev. California medicine = Calif Med California Medicine = Calif Med California Medicine = Calif. Med. Californian journal of health promotion = Californian J Health Promot California nurse = Calif Nurse California Nurse = Calif. Nurse California's health = Calif Health California sociologist = Calif Sociol California State Bar journal = Calif State Bar J California Studies in Classical Antiquity = CalifStClAnt California Western international law journal = Calif West Int Law J California Western law review = Calif West Law Rev Californium-252: Isotope for 21st Century Radiotherapy = Nato Asi 3 High Tech Californium-252: Isotope for 21st Century Radiotherapy = Nato. Asi. 3. High. Tech. Calixarene Complexes With Solvent Molecules = Chem Res Appl-nova Calixarene Complexes With Solvent Molecules = Chem. Res. Appl-nova. Callaloo = Callaloo Calligraphy and Power in Contemporary Chinese Society = Anthropol Asia Calligraphy and Power in Contemporary Chinese Society = Anthropol. Asia. Callosal Agenesis = Adv Behav Biol Callosal Agenesis = Adv. Behav. Biol. Call Research Perspectives = Esl Appl Ling Prof Call Research Perspectives = Esl. Appl. Ling. Prof. CAL [magazine] Certified Akers Laboratories = CAL Calorimetrie et Analyse Thermique = Calorim. Anal. Therm. Calorimetry in High Energy Physics = Aip Conf Proc Calorimetry in High Energy Physics = Aip. Conf. Proc. Calorimetry in Particle Physics = Lect Notes Pure Appl Calorimetry in Particle Physics = Lect. Notes. Pure. Appl. Calphad-computer Coupling of Phase Diagrams and Thermochemistry = Calphad Calphad-computer Coupling of Phase Diagrams and Thermochemistry = Calphad. Calphad - Computer Coupling of Phase Diagrams and Thermochemistry = Calphad CALPHAD: Computer Coupling of Phase Diagrams and Thermochemistry = CALPHAD: Comput. Coupling Phase Diagrams Thermochem. Calvin Center Series = Calvin Ctr Ser Calvin Center Series = Calvin Ctr. Ser. Calvinism's First Battleground: Conflict and Reform in The Pays De Vaud, 1528-1559 = Stud Early Mod Relig Calvinism's First Battleground: Conflict and Reform in The Pays De Vaud, 1528-1559 = Stud. Early. Mod. Relig. Calyx (Toronto, Ont.). = Calyx Cam-94 Physics Meeting = Aip Conf Proc Cam-94 Physics Meeting = Aip. Conf. Proc. Cambodge soir = Cambodge Soir Cambrian - Early Ordovician Brachiopods From Malyi Karatau, The Western Balkhash Region, and Tien Shan, Central Asia = Sp Palaeont Cambrian - Early Ordovician Brachiopods From Malyi Karatau, The Western Balkhash Region, and Tien Shan, Central Asia = Sp. Palaeont. Cambrian Medieval Celtic Studies = Cambr Mediev Celt St Cambrian Medieval Celtic Studies = Cambr. Mediev. Celt. St. Cambridge Aerospace Series = Camb. Aerosp. Ser. Cambridge and Vienna = Vien Cir Inst Yearbk Cambridge and Vienna = Vien. Cir. Inst. Yearbk. Cambridge and Vienna = Vienna Circ Inst Yea Cambridge and Vienna = Vienna Circ. Inst. Yea. Cambridge anthropology : a journal of the Department of Social Anthropology, Cambridge University = Camb Anthropol Cambridge Archaeological Journal = Camb Archaeol J Cambridge Archaeological Journal = Camb. Archaeol. J. Cambridge Archaeological Journal = CambrAJ Cambridge Classical Journal = Camb Class J Cambridge Classical Journal = Camb. Class. J. Cambridge Classical Journal Proceedings of The Cambridge Philological Society - Supplement = Camb C J Proc Cam Ph Cambridge Classical Journal Proceedings of The Cambridge Philological Society - Supplement = Camb. C. J. Proc. Cam. Ph. Cambridge Companions to Philosophy = Camb. Companions Philos. Cambridge Contemporary Astrophysics = Cam Contemp Astrophy Cambridge Contemporary Astrophysics = Cam. Contemp. Astrophy. Cambridge Economic Policy Review=Cambridge Econ. Pol. Rev. Cambridge Imperial and Post-colonial Studies Series = Camb Imp Post-col St Cambridge Imperial and Post-colonial Studies Series = Camb. Imp. Post-col. St. Cambridge International Series on Parallel Computation = Cambridge Internat. Ser. Parallel Comput. Cambridge Journal of Economics = Camb J Econ Cambridge Journal of Economics = Camb. J. Econ. Cambridge journal of economics = Cambridge J Econ Cambridge Journal of Economics=Cambridge J. Econ. Cambridge Journal of Economics = Cambridge J Econ Cambridge Journal of Economics = Cambridge J. Econ. Cambridge Journal of Regions Economy and Society = Camb J Reg Econ Soc Cambridge Journal of Regions Economy and Society = Camb. J. Reg. Econ. Soc. Cambridge Lecture Notes in Physics = Cambridge Lecture Notes Phys. Cambridge Mathematical Library = Cambridge Math. Lib. Cambridge Medieval Celtic Studies = Cambridge Medieval C Cambridge Medieval Celtic Studies = Cambridge Medieval C. Cambridge Medieval Celtic Studies = Cambr Mediev Celt St Cambridge Medieval Celtic Studies = Cambr. Mediev. Celt. St. Cambridge Monographs on Applied and Computational Mathematics = Cambridge Monogr. Appl. Comput. Math. Cambridge Monographs on Atomic, Molecular and Chemical Physics = Camb. Monogr. At. Mol. Chem. Phys. Cambridge Monographs on Mathematical Physics = Cambridge Monogr. Math. Phys. Cambridge Monographs on Mechanics = Cambridge Monogr. Mech. Cambridge Monographs on Particle Physics, Nuclear Physics and Cosmology = Camb. Monogr. Part. Phys. Nucl. Phys. Cosmol. Cambridge Monographs on Physics = Cambridge Monogr. Phys. Cambridge municipal code 1988 : a codification of the general ordinances of the city of Cambridge, Massachusetts / codified, indexed and published by Book Publishing Company. Cambridge (Mass.) = Camb Munic Code 1988 Camb Mass Cambridge N-body Lectures = Lect Notes Phys Cambridge N-body Lectures = Lect. Notes. Phys. Cambridge Nonlinear Science Series = Cambridge Nonlinear Sci. Ser. Cambridge Opera Journal = Camb Opera J Cambridge Opera Journal = Camb. Opera J. Cambridge Quarterly = Cambridge Quart Cambridge Quarterly = Cambridge Quart. Cambridge Quarterly of Healthcare Ethics = Camb Q Healthc Ethic Cambridge Quarterly of Healthcare Ethics = Camb. Q. Healthc. Ethic. Cambridge Quarterly of Healthcare Ethics=Camb Q Healthc Ethics;; Cambridge Quarterly of Healthcare Ethics = Camb. Q. Healthc. Ethics Cambridge quarterly of healthcare ethics : CQ : the international journal of healthcare ethics committees = Camb Q Healthc Ethics Cambridge Review of International Affairs = Camb Rev Int Aff Cambridge Review of International Affairs = Camb. Rev. Int. Aff. Cambridge Series On Electronic Publishing = Cam Electr Cambridge Series On Electronic Publishing = Cam. Electr. Cambridge Series on Statistical and Probabilistic Mathematics = Camb. Ser. Stat. Probab. Math. Cambridge Studies in Advanced Mathematics = Cambridge Stud. Adv. Math. Cambridge Studies in Biological and Evolutionary Anthropology = Cam S Bio Evol Anthr Cambridge Studies in Biological and Evolutionary Anthropology = Cam. S. Bio. Evol. Anthr. Cambridge Studies in Mathematical Biology = Cambridge Stud. Math. Biol. Cambridge Studies in Philosophy and Public Policy = Cam St Phil Cambridge Studies in Philosophy and Public Policy = Cam. St. Phil. Cambridge Studies in Philosophy = Cambridge Stud. Philos. Cambridge Studies in Probability, Induction, and Decision Theory = Cambridge Stud. Probab. Induc. Decis. Theory Cambridge Studies in Social and Emotional Development = Camb St Soc Cambridge Studies in Social and Emotional Development = Camb. St. Soc. Cambridge Texts in Applied Mathematics = Cambridge Texts Appl. Math. Cambridge Texts in the History of Philosophy = Camb. Texts Hist. Philos. Cambridge Tracts in Mathematics = Cambridge Tracts in Math. Cambridge Tracts in Theoretical Computer Science = Cambridge Tracts Theoret. Comput. Sci. Cambridge University Medical Society Magazine = Cambridge Univ. Med. Soc. Mag. Cambro-ordovician Studies Iii = Mem Assoc Australas Cambro-ordovician Studies Iii = Mem. Assoc. Australas. Camden After The Fall: Decline and Renewal in A Post-industrial City = Polit Cult Mod Am Camden After The Fall: Decline and Renewal in A Post-industrial City = Polit. Cult. Mod. Am. Camden Fifth Series = Camden Fifth Ser Camden Fifth Series = Camden Fifth Ser. Camera and Input Scanner Systems = P Soc Photo-opt Ins Camera and Input Scanner Systems = P. Soc. Photo-opt. Ins. Camera = Camera Camera Obscura = Camera Obscura Cameras and Systems for Electronic Photography and Scientific Imaging = Proc Spie Cameras and Systems for Electronic Photography and Scientific Imaging = Proc. Spie. Cameras and Systems for Electronic Photography and Scientific Imaging = P Soc Photo-opt Ins Cameras and Systems for Electronic Photography and Scientific Imaging = P. Soc. Photo-opt. Ins. Cameras, Scanners, and Image Acquisition Systems = P Soc Photo-opt Ins Cameras, Scanners, and Image Acquisition Systems = P. Soc. Photo-opt. Ins. Camorristi, Politicians, and Businessmen: The Transformation of Organized Crime in Post-war Naples = Ital Perspect Camorristi, Politicians, and Businessmen: The Transformation of Organized Crime in Post-war Naples = Ital. Perspect. Campbell law review = Campbell Law Rev Campi del Sapere/Filosofia = Campi Sapere Filos. Camptothecins = Ann Ny Acad Sci Camptothecins = Ann. Ny. Acad. Sci. Camptothecins: Unfolding Their Anticaner Potential = Ann Ny Acad Sci Camptothecins: Unfolding Their Anticaner Potential = Ann. Ny. Acad. Sci. CANA = CANA Canada and International Relations = Can Int Rel Canada and International Relations = Can. Int. Rel. Canada Communicable Disease Report=Can Commun Dis Rep;; Canada Communicable Disease Report = Can. Commun. Dis. Rep. Canada Diseases Weekly Report = Can. Dis. Wkly. Rep. Canada: Fracture(s) But Not Rupture = Anglophonia Canada: Fracture(s) But Not Rupture = Anglophonia. Canada's mental health = Can Ment Health Canada's Mental Health = Can. Ment. Health Canadas Mental Health = Can Ment Health Canadas Mental Health = Can. Ment. Health Canada's Money = Coin Amer P Canada's Money = Coin. Amer. P. Canadas Timber Resources = For Can Pi Canadas Timber Resources = For. Can. Pi. Canada Supreme Court reports. Recueil des arrets de la Cour Supreme du Canada. Canada. Supreme Court = Can Supreme Court Rep Can Supreme Court Canada Us Free Trade Agreement = Geonom Inst Canada Us Free Trade Agreement = Geonom. Inst. Canadian Aeronautics and Space Journal = Can Aeronaut Space J Canadian Aeronautics and Space Journal = Can. Aeronaut. Space J. Canadian aeronautics and space journal. Le journal aeronautique et spatial du Canada = Can Aeronaut Space J Canadian Agricultural Engineering = Can Agr Eng Canadian Agricultural Engineering = Can. Agr. Eng. Canadian AIDS news = Can AIDS News Canadian-american Slavic Studies = Can-am Slav Stud Canadian-american Slavic Studies = Can-am. Slav. Stud. Canadian-american Slavic Studies-revue Canadienne-americaine D Etudes Slaves = Can-am Slavic Stud Canadian-american Slavic Studies-revue Canadienne-americaine D Etudes Slaves = Can-am. Slavic Stud. Canadian-American Slavic studies. Revue canadienne-americaine d'etudes slaves = Can Am Slav Stud Canadian Anaesthetists' Society journal = Can Anaesth Soc J Canadian Anaesthetists Society Journal = Can Anaesth Soc J Canadian Anaesthetists Society Journal = Can. Anaesth. Soc. J. Canadian Anaesthetists Society Journal = Can J Anaesth Canadian Anaesthetists Society Journal = Can. J. Anaesth. Canadian and international education. Education canadienne et internationale = Can Int Educ Canadian Applied Mathematics Quarterly = Can. Appl. Math. Q. Canadian Association of Radiologists Journal=Can Assoc Radiol J;; Canadian Association of Radiologists Journal = Can. Assoc. Radiol. J. Canadian Association of Radiologists Journal-journal De L Association Canadienne Des Radiologistes = Can Assoc Radiol J Canadian Association of Radiologists Journal-journal De L Association Canadienne Des Radiologistes = Can. Assoc. Radiol. J. Canadian bar journal = Can Bar J Canadian Bar Review-revue Du Barreau Canadien = Can Bar Rev-rev Barr Canadian Bar Review-revue Du Barreau Canadien = Can. Bar Rev-rev. Barr. Canadian Bee Journal = Can. Bee J. Canadian bulletin of cardiovascular nursing = Can Bull Cardiovasc Nurs Canadian Bulletin of Cardiovascular Nursing = Can. Bull. Cardiovasc. Nurs. Canadian Bulletin of Fisheries and Aquatic Sciences = Can B Fish Aquat Sci Canadian Bulletin of Fisheries and Aquatic Sciences = Can. B. Fish. Aquat. Sci. Canadian Business Economics=Can. Bus. Econ. Canadian Cancer Conference = Can. Cancer Conf. Canadian Ceramics = Can Ceram Canadian Ceramics = Can. Ceram. Canadian Ceramics Quarterly = Can. Ceram. Q. Canadian Ceramics Quarterly-journal of The Canadian Ceramic Society = Can Ceram Quart Canadian Ceramics Quarterly-journal of The Canadian Ceramic Society = Can. Ceram. Quart. Canadian Chemical News = Can. Chem. News Canadian Chemical Processing = Can Chem Process Canadian Chemical Processing = Can. Chem. Process. Canadian Commentaries = Can Comment Canadian Commentaries = Can. Comment. Canadian Conference On Electrical and Computer Engineering = Can Con El Comp En Canadian Conference On Electrical and Computer Engineering = Can. Con. El. Comp. En. Canadian critical care nursing journal = Can Crit Care Nurs J Canadian Critical Care Nursing Journal = Can. Crit. Care Nurs. J. Canadian Cultural Exchange: Translation and Transculturation = Cult Stud Ser Canadian Cultural Exchange: Translation and Transculturation = Cult. Stud. Ser. Canadian Cultural Poesis: Essays On Canadian Culture = Cult Stud Ser Canadian Cultural Poesis: Essays On Canadian Culture = Cult. Stud. Ser. Canadian Dental Hygienist = Can. Dent. Hyg. Canadian dimension = Can Dimens Canadian doctor = Can Doct Canadian Doctor = Can. Doct. Canadian Entomologist = Can Entomol Canadian Entomologist = Can. Entomol. Canadian ethnic studies = Can Ethn Stud Canadian family law quarterly = Can Fam Law Q Canadian Family Physician=Can Fam Physician;; Canadian Family Physician = Can Fam Physician Canadian Family Physician = Can. Fam. Physician Canadian family physician Medecin de famille canadien = Can Fam Physician Canadian Farm Economics = Can Farm Econ Canadian Farm Economics = Can. Farm Econ. Canadian Field-naturalist = Can Field Nat Canadian Field-naturalist = Can. Field. Nat. Canadian Forces Dental Services Bulletin = Can Forces Dent Serv Bull Canadian Forces Dental Services Bulletin = Can. Forces Dent. Serv. Bull. Canadian Forces Dental Services quarterly = Can Forces Dent Serv Q Canadian Forces Dental Services Quarterly = Can. Forces Dent. Serv. Q. Canadian Foreign Policy and International Economic Regimes = Can Int Rel Canadian Foreign Policy and International Economic Regimes = Can. Int. Rel. Canadian Forest Industries = Can Forest Ind Canadian Forest Industries = Can. Forest Ind. Canadian Forest Service Modelling Working Group: Proceedings of The Ninth Annual Meeting and Workshop = For Can New Canadian Forest Service Modelling Working Group: Proceedings of The Ninth Annual Meeting and Workshop = For. Can. New. Canadian Geographer = Can Geogr Canadian Geographer = Can. Geogr. Canadian Geographer-geographe Canadien = Can Geogr-geogr Can Canadian Geographer-geographe Canadien = Can. Geogr-geogr. Can. Canadian geographic = Can Geogr Canadian Geotechnical Journal = Can Geotech J Canadian Geotechnical Journal = Can. Geotech. J. Canadian Historical Review = Can Hist Rev Canadian Historical Review = Can. Hist. Rev. Canadian HIV/AIDS policy & law review / Canadian HIV/AIDS Legal Network = Can HIV AIDS Policy Law Rev Canadian hospital = Can Hosp Canadian Hospital = Can. Hosp. Canadian human rights advocate = Can Hum Rights Advocate Canadian Institute of Food Science and Technology Journal = Can Inst F Sci Tec J Canadian Institute of Food Science and Technology Journal = Can. Inst. F. Sci. Tec. J. Canadian Institute of Food Science and Technology Journal-journal De L Institut Canadien De Science Et Technologie Alimentaires = Can I Food Sc Tech J Canadian Institute of Food Science and Technology Journal-journal De L Institut Canadien De Science Et Technologie Alimentaires = Can. I. Food Sc. Tech. J. Canadian Institute of Mining and Metallurgy, Annual Conference of Metallurgists = Cim An Conf Canadian Institute of Mining and Metallurgy, Annual Conference of Metallurgists = Cim. An. Conf. Canadian Journal of Administrative Sciences=Can. J. Admin. Sci. Canadian Journal of Administrative Sciences-revue Canadienne Des Sciences De L Administration = Can J Adm Sci Canadian Journal of Administrative Sciences-revue Canadienne Des Sciences De L Administration = Can. J. Adm. Sci. Canadian journal of African studies = Can J Afr Stud Canadian Journal of African Studies = Can J Afr Studies Canadian Journal of African Studies = Can. J. Afr. Studies Canadian Journal of African Studies-revue Canadienne Des Etudes Africaines = Can J Afr Stud Canadian Journal of African Studies-revue Canadienne Des Etudes Africaines = Can. J. Afr. Stud. Canadian Journal of Agricultural Economics=Can. J. Agr. Econ. Canadian Journal of Agricultural Economics-revue Canadienne D Agroeconomie = Can J Agr Econ Canadian Journal of Agricultural Economics-revue Canadienne D Agroeconomie = Can. J. Agr. Econ. Canadian Journal of Agricultural Economics-revue Canadienne D Economie Rurale = Can J Agr Econ Canadian Journal of Agricultural Economics-revue Canadienne D Economie Rurale = Can. J. Agr. Econ. Canadian Journal of Agricultural Science = Can. J. Agr. Sci. Canadian Journal of Anaesthesia=Can J Anaesth;; Canadian Journal of Anaesthesia = Can. J. Anaesth. Canadian Journal of Anaesthesia-journal Canadien D Anesthesie = Can J Anaesth Canadian Journal of Anaesthesia-journal Canadien D Anesthesie = Can. J. Anaesth. Canadian Journal of Analytical Sciences and Spectroscopy = Can J Anal Sci Spect Canadian Journal of Analytical Sciences and Spectroscopy = Can. J. Anal. Sci. Spect. Canadian Journal of Analytical Sciences and Spectroscopy = Can. J. Anal. Sci. Spectros. Canadian Journal of Analytical Sciences and Spectroscopy = Can. J. Anal. Sci. Spectrosc. Canadian Journal of Anesthesia-journal Canadien D Anesthesie = Can J Anesth Canadian Journal of Anesthesia-journal Canadien D Anesthesie = Can. J. Anesth. Canadian Journal of Animal Science = Can J Anim Sci Canadian Journal of Animal Science = Can. J. Anim. Sci. Canadian Journal of Applied Physiology=Can J Appl Physiol;; Canadian Journal of Applied Physiology = Can. J. Appl. Physiol. Canadian Journal of Applied Physiology-revue Canadienne De Physiologie Appliquee = Can J Appl Physiol Canadian Journal of Applied Physiology-revue Canadienne De Physiologie Appliquee = Can. J. Appl. Physiol. Canadian Journal of Applied Spectroscopy = Can J Appl Spectrosc Canadian Journal of Applied Spectroscopy = Can. J. Appl. Spectrosc. Canadian Journal of Applied Sport Sciences = Can. J. Appl. Sport Sci. Canadian journal of applied sport sciences. Journal canadien des sciences appliquees au sport = Can J Appl Sport Sci Canadian Journal of Applied Sport Sciences-journal Canadien Des Sciences Appliquees Au Sport = Can J Appl Sport Sci Canadian Journal of Applied Sport Sciences-journal Canadien Des Sciences Appliquees Au Sport = Can. J. Appl. Sport Sci. Canadian Journal of Behavioural Science = Can J Beh Sci Canadian Journal of Behavioural Science = Can. J. Beh. Sci. Canadian journal of behavioural science. Revue canadienne des sciences du comportement = Can J Behav Sci Canadian Journal of Behavioural Science-revue Canadienne Des Sciences Du Comportement = Can J Behav Sci Canadian Journal of Behavioural Science-revue Canadienne Des Sciences Du Comportement = Can. J. Behav. Sci. Canadian Journal of Biochemistry and Cell Biology = Can J Biochem Cell B Canadian Journal of Biochemistry and Cell Biology = Can. J. Biochem. Cell B. Canadian Journal of Biochemistry and Cell Biology = Can. J. Biochem. Cell Biol. Canadian Journal of Biochemistry and Physiology = Can J Biochem Phys Canadian Journal of Biochemistry and Physiology = Can. J. Biochem. Phys. Canadian journal of biochemistry and physiology = Can J Biochem Physiol Canadian journal of biochemistry = Can J Biochem Canadian Journal of Biochemistry = Can. J. Biochem. Canadian Journal of Biochemistry = Can J Biochem Cell B Canadian Journal of Biochemistry = Can. J. Biochem. Cell. B. Canadian Journal of Botany = Can. J. Bot. Canadian Journal of Botany = Can J Botany Canadian Journal of Botany = Can. J. Botany Canadian journal of botany. Journal canadien de botanique = Can J Bot Canadian Journal of Botany-revue Canadienne De Botanique = Can J Bot Canadian Journal of Botany-revue Canadienne De Botanique = Can. J. Bot. Canadian Journal of Cardiology=Can J Cardiol;; Canadian Journal of Cardiology = Can J Cardiol Canadian Journal of Cardiology = Can. J. Cardiol. Canadian Journal of Cardiovascular Nursing = Can. J. Cardiovasc. Nurs. Canadian Journal of Chemical Engineering = Can J Chem Eng Canadian Journal of Chemical Engineering = Can. J. Chem. Eng. Canadian journal of chemistry = Can J Chem Canadian Journal of Chemistry = Can. J. Chem. Canadian Journal of Chemistry = Can J Chemistry Canadian Journal of Chemistry = Can. J. Chemistry Canadian Journal of Chemistry-revue Canadienne De Chimie = Can J Chem Canadian Journal of Chemistry-revue Canadienne De Chimie = Can. J. Chem. Canadian Journal of Civil Engineering = Can. J. Civ. Eng. Canadian Journal of Civil Engineering = Can J Civil Eng Canadian Journal of Civil Engineering = Can. J. Civil Eng. Canadian Journal of Community Dentistry = Can. J. Community Dent. Canadian Journal of Community Mental Health = Can. J. Commun. Ment. Health Canadian Journal of Comparative Medicine and Veterinary Science = Can J Comp Med Vet S Canadian Journal of Comparative Medicine and Veterinary Science = Can. J. Comp. Med. Vet. S. Canadian journal of comparative medicine and veterinary science = Can J Comp Med Vet Sci Canadian Journal of Comparative Medicine and Veterinary Science = Can. J. Comp. Med. Vet. Sci. Canadian Journal of Comparative Medicine = Can J Comparat Med Canadian Journal of Comparative Medicine = Can. J. Comparat. Med. Canadian Journal of Comparative Medicine = Can. J. Comp. Med. Canadian journal of comparative medicine (Gardenvale, Quebec) = Can J Comp Med Canadian journal of comparative medicine. Revue canadienne de medecine comparee = Can J Comp Med Canadian Journal of Comparative Medicine-revue Canadienne De Medecine Comparee = Can J Comp Med Canadian Journal of Comparative Medicine-revue Canadienne De Medecine Comparee = Can. J. Comp. Med. Canadian Journal of Criminology and Corrections = Can J Criminol Corr Canadian Journal of Criminology and Corrections = Can. J. Criminol. Corr. Canadian Journal of Criminology and Criminal Justice = Can J Criminol Crim Canadian Journal of Criminology and Criminal Justice = Can. J. Criminol. Crim. Canadian journal of criminology. Revue canadienne de criminologie = Can J. Criminol Canadian Journal of Criminology-revue Canadienne De Criminologie = Can J Criminol Canadian Journal of Criminology-revue Canadienne De Criminologie = Can. J. Criminol. Canadian Journal of Development Studies=Can. J. Devel. Stud. Canadian Journal of Development Studies-revue Canadienne D Etudes Du Developpement = Can J Dev Stud Canadian Journal of Development Studies-revue Canadienne D Etudes Du Developpement = Can. J. Dev. Stud. Canadian Journal of Diabetes = Can J Diabetes Canadian Journal of Diabetes = Can. J. Diabetes Canadian Journal of Dietetic Practice and Research = Can J Diet Pract Res Canadian Journal of Dietetic Practice and Research = Can. J. Diet. Pract. Res. Canadian journal of earth sciences = Can J Earth Sci Canadian Journal of Earth Sciences = Can J Earth Sci Canadian Journal of Earth Sciences = Can. J. Earth Sci. Canadian Journal of Economics=Can. J. Econ. Canadian Journal of Economics = Can J Economics Canadian Journal of Economics = Can. J. Economics Canadian Journal of Economics & Political Science = Can J Econ Polit Sci Canadian Journal of Economics & Political Science = Can. J. Econ. Polit. Sci. Canadian Journal of Economics-revue Canadienne D Economique = Can J Econ Canadian Journal of Economics-revue Canadienne D Economique = Can. J. Econ. Canadian Journal of Electrical and Computer Engineering = Canadian J. Elect. Comput. Eng. Canadian Journal of Electrical and Computer Engineering-revue Canadienne De Genie Electrique Et Informatique = Can J Elect Comput E Canadian Journal of Electrical and Computer Engineering-revue Canadienne De Genie Electrique Et Informatique = Can. J. Elect. Comput. E. Canadian Journal of Emergency Medicine = Can J Emerg Med Canadian Journal of Emergency Medicine = Can. J. Emerg. Med. Canadian Journal of Experimental Psychology=Can J Exp Psychol;; Canadian Journal of Experimental Psychology = Can. J. Exp. Psychol. Canadian Journal of Experimental Psychology-revue Canadienne De Psychologie Experimentale = Can J Exp Psychol Canadian Journal of Experimental Psychology-revue Canadienne De Psychologie Experimentale = Can. J. Exp. Psychol. Canadian journal of family law. Revue canadienne de droit familial = Can J Fam Law Canadian Journal of Family Law-revue Canadienne De Droit Familial = Can J Fam Law Canadian Journal of Family Law-revue Canadienne De Droit Familial = Can. J. Fam. Law. Canadian Journal of Film Studies-revue Canadienne D Etudes Cinematographiques = Can J Film Stud Canadian Journal of Film Studies-revue Canadienne D Etudes Cinematographiques = Can. J. Film Stud. Canadian Journal of Fisheries and Aquatic Sciences = Can J Fish Aquat Sci Canadian Journal of Fisheries and Aquatic Sciences = Can. J. Fish. Aquat. Sci. Canadian Journal of Fisheries and Aquatic Sciences = Can. J. Fish. Aquat.Sci. Canadian Journal of Forest Research = Can. J. For. Res. Canadian journal of forest research. Journal canadien de la recherche forestiere = Can J For Res Canadian Journal of Forest Research-revue Canadienne De Recherche Forestiere = Can J Forest Res Canadian Journal of Forest Research-revue Canadienne De Recherche Forestiere = Can. J. Forest Res. Canadian Journal of Gastroenterology=Can J Gastroenterol;; Canadian Journal of Gastroenterology = Can J Gastroenterol Canadian Journal of Gastroenterology = Can. J. Gastroenterol. Canadian Journal of Genetics and Cytology = Can J Genet Cytol Canadian Journal of Genetics and Cytology = Can. J. Genet. Cytol. Canadian journal of genetics and cytology. Journal canadien de genetique et de cytologie = Can J Genet Cytol Canadian Journal of History-annales Canadiennes D Histoire = Can J Hist Canadian Journal of History-annales Canadiennes D Histoire = Can. J. Hist. Canadian journal of history = Can J Hist Canadian Journal of History of Sport and Physical Education = Can J Hist Sport Phy Canadian Journal of History of Sport and Physical Education = Can. J. Hist. Sport Phy. Canadian journal of history of sport and physical education = Can J Hist Sport Phys Educ Canadian Journal of Hospital Pharmacy = Can. J. Hosp. Pharm. Canadian Journal of Infection Control = Can. J. Infect. Control Canadian Journal of Infectious Diseases & Medical Microbiology = Can J Infect Dis Med Canadian Journal of Infectious Diseases & Medical Microbiology = Can. J. Infect. Dis. Med. Canadian Journal of Information and Library Science-revue Canadienne Des Sciences De L Information Et De Bibliotheconomie = Can J Inform Lib Sci Canadian Journal of Information and Library Science-revue Canadienne Des Sciences De L Information Et De Bibliotheconomie = Can. J. Inform. Lib. Sci. Canadian Journal of Information Science-revue Canadienne Des Sciences De L Information = Can J Inform Sci Canadian Journal of Information Science-revue Canadienne Des Sciences De L Information = Can. J. Inform. Sci. Canadian journal of Italian studies = Can J Ital Stud Canadian Journal of Italian Studies = Can J Ital Stud Canadian Journal of Italian Studies = Can. J. Ital. Stud. Canadian Journal of Linguistics-revue Canadienne De Linguistique = Can J Ling/rev Can L Canadian Journal of Linguistics-revue Canadienne De Linguistique = Can. J. Ling/rev. Can. L. Canadian Journal of Mathematics = Canadian J Math Canadian Journal of Mathematics = Canadian J. Math. Canadian Journal of Mathematics = Canad. J. Math. Canadian Journal of Mathematics = Can. J. Math. Canadian Journal of Mathematics-journal Canadien De Mathematiques = Can J Math Canadian Journal of Mathematics-journal Canadien De Mathematiques = Can. J. Math. Canadian Journal of Medical Radiation Technology = Can. J. Med. Radiat. Technol. Canadian journal of medical sciences = Can J Med Sci Canadian Journal of Medical Sciences = Can J Med Sci Canadian Journal of Medical Sciences = Can. J. Med. Sci. Canadian journal of medical technology = Can J Med Technol Canadian Journal of Medical Technology = Can J Med Technol Canadian Journal of Medical Technology = Can. J. Med. Technol. Canadian journal of microbiology = Can J Microbiol Canadian Journal of Microbiology=Can J Microbiol;; Canadian Journal of Microbiology = Can J Microbiol Canadian Journal of Microbiology = Can. J. Microbiol. Canadian Journal of Neurological Sciences=Can J Neurol Sci;; Canadian Journal of Neurological Sciences = Can J Neurol Sci Canadian Journal of Neurological Sciences = Can. J. Neurol. Sci. Canadian journal of nursing administration = Can J Nurs Adm Canadian Journal of Nursing Administration = Can. J. Nurs. Adm. Canadian journal of nursing leadership = Can J Nurs Leadersh Canadian Journal of Nursing Research = Can. J. Nurs. Res. Canadian Journal of Occupational Therapy = Can. J. Occup. Ther. Canadian journal of occupational therapy. Revue canadienne d'ergotherapie = Can J Occup Ther Canadian Journal of Occupational Therapy-revue Canadienne D Ergotherapie = Can J Occup Ther Canadian Journal of Occupational Therapy-revue Canadienne D Ergotherapie = Can. J. Occup. Ther. Canadian Journal of Oncology=Can J Oncol;; Canadian Journal of Oncology = Can. J. Oncol. Canadian Journal of Ophthalmology=Can J Ophthalmol;; Canadian Journal of Ophthalmology = Can. J. Ophthalmol. Canadian Journal of Ophthalmology = Can J Ophthalmology Canadian Journal of Ophthalmology = Can. J. Ophthalmology Canadian journal of ophthalmology. Journal canadien d'ophtalmologie = Can J Ophthalmol Canadian Journal of Ophthalmology-journal Canadien D Ophtalmologie = Can J Ophthalmol Canadian Journal of Ophthalmology-journal Canadien D Ophtalmologie = Can. J. Ophthalmol. Canadian Journal of Otolaryngology = Can J Otolaryngol Canadian Journal of Otolaryngology = Can. J. Otolaryngol. Canadian journal of otolaryngology. Journal canadien d'otolaryngologie = Can J Otolaryngol Canadian journal of otolaryngology. Journal canadien d'otolaryngologie. Supplement = Can J Otolaryngol Suppl Canadian Journal of Otolaryngology. Supplement = Can. J. Otolaryngol. Suppl. Canadian Journal of Pharmaceutical Sciences = Can J Pharm Sci Canadian Journal of Pharmaceutical Sciences = Can. J. Pharm. Sci. Canadian journal of philosophy = Can J Philos Canadian Journal of Philosophy = Can J Philos Canadian Journal of Philosophy = Can. J. Philos. Canadian Journal of Philosophy = CJPh Canadian journal of physics = Can J Phys Canadian Journal of Physics = Can J Phys Canadian Journal of Physics = Can. J. Phys. Canadian Journal of Physiology and Pharmacology = Can J Physiol Pharm Canadian Journal of Physiology and Pharmacology = Can. J. Physiol. Pharm. Canadian journal of physiology and pharmacology = Can J Physiol Pharmacol Canadian Journal of Physiology and Pharmacology=Can J Physiol Pharmacol;; Canadian Journal of Physiology and Pharmacology = Can. J. Physiol. Pharmacol. Canadian Journal of Plant Pathology = Can. J. Plant Pathol. Canadian Journal of Plant Pathology = Can. J. Plant. Pathol. Canadian Journal of Plant Pathology-revue Canadienne De Phytopathologie = Can J Plant Pathol Canadian Journal of Plant Pathology-revue Canadienne De Phytopathologie = Can. J. Plant Pathol. Canadian Journal of Plant Science = Can J Plant Sci Canadian Journal of Plant Science = Can. J. Plant Sci. Canadian Journal of Plant Science = Can. J. Plant. Sci. Canadian Journal of Plastic Surgery = Can J Plast Surg Canadian Journal of Plastic Surgery = Can. J. Plast. Surg. Canadian Journal of Political Science = Can J Political Sci Canadian Journal of Political Science = Can. J. Political Sci. Canadian journal of political science. Revue canadienne de science politique = Can J Polit Sci Canadian Journal of Political Science-revue Canadienne De Science Politique = Can J Polit Sci Canadian Journal of Political Science-revue Canadienne De Science Politique = Can. J. Polit. Sci. Canadian Journal of Psychiatric Nursing = Can. J. Psychiatr. Nurs. Canadian Journal of Psychiatry = Can. J. Psychiatry Canadian Journal of Psychiatry-revue Canadienne De Psychiatrie = Can J Psychiat Canadian Journal of Psychiatry-revue Canadienne De Psychiatrie = Can. J. Psychiat. Canadian journal of psychiatry. Revue canadienne de psychiatrie = Can J Psychiatry Canadian Journal of Psychiatry. Revue Canadienne de Psychiatrie=Can J Psychiatry;; Canadian journal of psychology = Can J Psychol Canadian Journal of Psychology = Can. J. Psychol. Canadian Journal of Psychology = Can J Psychology Canadian Journal of Psychology = Can. J. Psychology Canadian Journal of Psychology-revue Canadienne De Psychologie = Can J Psychol Canadian Journal of Psychology-revue Canadienne De Psychologie = Can. J. Psychol. Canadian Journal of Public Health = Can. J. Public Health. Canadian Journal of Public Health = C J Public Health Canadian Journal of Public Health = C. J. Public Health Canadian journal of public health. Revue canadienne de sante publique = Can J Public Health Canadian Journal of Public Health-revue Canadienne De Sante Publique = Can J Public Health Canadian Journal of Public Health-revue Canadienne De Sante Publique = Can. J. Public Health. Canadian Journal of Public Health. Revue Canadienne de Sante Publique=Can J Public Health;; Canadian Journal of Pure & Applied Science = Can. J. Pure Appl. Sci. Canadian Journal of Radiography, Radiotherapy, Nuclear Medicine = Can. J. Radiogr. Radiother. Nucl. Med. Canadian Journal of Regional Science=Can. J. Reg. Sci. Canadian Journal of Regional Science-revue Canadienne Des Sciences Regionales = Can J Regional Sci Canadian Journal of Regional Science-revue Canadienne Des Sciences Regionales = Can. J. Regional Sci. Canadian Journal of Remote Sensing = Can J Remote Sens Canadian Journal of Remote Sensing = Can. J. Remote Sens. Canadian journal of research = Can J Res Canadian Journal of Research = Can. J. Res. Canadian Journal of Research Section A-physical Sciences = Can J Res A Canadian Journal of Research Section A-physical Sciences = Can. J. Res. A. Canadian Journal of Research Section B-chemical Sciences = Can J Res B Canadian Journal of Research Section B-chemical Sciences = Can. J. Res. B. Canadian Journal of Research Section C-botanical Sciences = Can J Res C Canadian Journal of Research Section C-botanical Sciences = Can. J. Res. C. Canadian Journal of Research Section E-medical Sciences = Can J Res E Canadian Journal of Research Section E-medical Sciences = Can. J. Res. E. Canadian Journal of Sociology-cahiers Canadiens De Sociologie = Can J Sociol Canadian Journal of Sociology-cahiers Canadiens De Sociologie = Can. J. Sociol. Canadian Journal Of Sociology-Cahiers Canadiens De Sociologie = Can. J. Sociol.-Cahiers Can. Sociol. Canadian Journal of Soil Science = Can J Soil Sci Canadian Journal of Soil Science = Can. J. Soil Sci. Canadian Journal of Spectroscopy = Can J Spectrosc Canadian Journal of Spectroscopy = Can. J. Spectrosc. Canadian Journal of Sport Science = Can. J. Sport Sci. Canadian Journal of Sport Sciences = Can. J. Sport Sci. Canadian Journal of Sport Sciences-revue Canadienne Des Sciences Du Sport = Can J Sport Sci Canadian Journal of Sport Sciences-revue Canadienne Des Sciences Du Sport = Can. J. Sport Sci. Canadian Journal of Statistics-revue Canadienne De Statistique = Can J Stat Canadian Journal of Statistics-revue Canadienne De Statistique = Can. J. Stat. Canadian Journal of Surgery=Can J Surg;; Canadian Journal of Surgery = Can J Surg Canadian Journal of Surgery = Can. J. Surg. Canadian journal of surgery. Journal canadien de chirurgie = Can J Surg Canadian journal of urban research = Can J Urban Res Canadian Journal of Urology = Can J Urol Canadian Journal of Urology = Can. J. Urol. Canadian Journal of Veterinary Research=Can J Vet Res;; Canadian Journal of Veterinary Research = Can. J. Vet. Res. Canadian Journal of Veterinary Research-revue Canadienne De Recherche Veterinaire = Can J Vet Res Canadian Journal of Veterinary Research-revue Canadienne De Recherche Veterinaire = Can. J. Vet. Res. Canadian journal of zoology = Can J Zool Canadian Journal of Zoology = Can. J. Zool. Canadian Journal of Zoology = Can J Zoolog Canadian Journal of Zoology = Can. J. Zoolog. Canadian Journal of Zoology-revue Canadienne De Zoologie = Can J Zool Canadian Journal of Zoology-revue Canadienne De Zoologie = Can. J. Zool. Canadian Journal On Aging-revue Canadienne Du Vieillissement = Can J Aging Canadian Journal On Aging-revue Canadienne Du Vieillissement = Can. J. Aging. Canadian labour = Can Labour Canadian Library Journal = Can Libr J Canadian Library Journal = Can. Libr. J. Canadian Literature = Can Literature Canadian Literature = Can. Literature Canadian Mathematical Bulletin-bulletin Canadien De Mathematiques = Can Math Bull Canadian Mathematical Bulletin-bulletin Canadien De Mathematiques = Can. Math. Bull. Canadian Mathematical Bulletin = Canad. Math. Bull. Canadian Mathematical Bulletin = Can. Math. Bull. Canadian Mathematical Bulletin = Can Math Bulletin Canadian Mathematical Bulletin = Can. Math. Bulletin Canadian Mathematical Society Series of Monographs and Advanced Texts = Canad. Math. Soc. Ser. Monogr. Adv. Texts Canadian Medical Association journal = Can Med Assoc J Canadian Medical Association Journal = Can Med Assoc J Canadian Medical Association Journal = Can. Med. Assoc. J. Canadian Metallurgical Quarterly = Can. Metall. Q. Canadian Metallurgical Quarterly = Can Metall Quart Canadian Metallurgical Quarterly = Can. Metall. Quart. Canadian Migration Patterns: From Britain and North America = Int Can Stud Ser Canadian Migration Patterns: From Britain and North America = Int. Can. Stud. Ser. Canadian mineralogist = Can Mineral Canadian Mineralogist = Can Mineral Canadian Mineralogist = Can. Mineral. Canadian Mining and Metallurgical Bulletin = Can Min Metall Bull Canadian Mining and Metallurgical Bulletin = Can. Min. Metall. Bull. Canadian Mining Journal = Can Min J Canadian Mining Journal = Can. Min. J. Canadian Modern Language Review-revue Canadienne Des Langues Vivantes = Can Mod Lang Rev Canadian Modern Language Review-revue Canadienne Des Langues Vivantes = Can. Mod. Lang. Rev. Canadian Nuclear Association International Conference Proceedings = Can Nucl As Canadian Nuclear Association International Conference Proceedings = Can. Nucl. As. Canadian Nuclear Society - Sixteenth Annual Conference 1995 Proceedings, Vols I and Ii = P Can Nuc S Canadian Nuclear Society - Sixteenth Annual Conference 1995 Proceedings, Vols I and Ii = P. Can. Nuc. S. Canadian Nurse = Can. Nurse Canadian Oncology Nursing Journal = Can. Oncol. Nurs. J. Canadian operating room nursing journal = Can Oper Room Nurs J Canadian Operating Room Nursing Journal = Can. Oper. Room Nurs. J. Canadian Pest Management Society Proceedings = Can Pest M Canadian Pest Management Society Proceedings = Can. Pest M. Canadian pharmaceutical journal = Can Pharm J Canadian Pharmaceutical Journal = Can. Pharm. J. Canadian philosophical reviews = CPhRev Canadian Plains Proceedings = Can Plain P Canadian Plains Proceedings = Can. Plain. P. Canadian Plains Studies = Can Plain S Canadian Plains Studies = Can. Plain. S. Canadian Plant Disease Survey = Can Plant Dis Surv Canadian Plant Disease Survey = Can. Plant Dis. Surv. Canadian Poetry = Can Poet Canadian Poetry = Can. Poet. Canadian Psychiatric Association Journal = Can Psychiat Assoc J Canadian Psychiatric Association Journal = Can. Psychiat. Assoc. J. Canadian Psychiatric Association journal = Can Psychiatr Assoc J Canadian Psychiatric Association Journal = Can. Psychiatr. Assoc. J. Canadian psychological review. Psychologie canadienne = Can Psychol Rev Canadian Psychological Review-psychologie Canadienne = Can Psychol Rev Canadian Psychological Review-psychologie Canadienne = Can. Psychol. Rev. Canadian Psychologist = Can Psychologist Canadian Psychologist = Can. Psychologist Canadian Psychologist-psychologie Canadienne = Can Psycholog-psycho Canadian Psychologist-psychologie Canadienne = Can. Psycholog-psycho. Canadian Psychology-psychologie Canadienne = Can Psychol Canadian Psychology-psychologie Canadienne = Can. Psychol. Canadian public administration. Administration publique du Canada = Can Public Adm Canadian Public Administration-administration Publique Du Canada = Can Public Admin Canadian Public Administration-administration Publique Du Canada = Can. Public Admin. Canadian Public Administration = Can Public Adm Canadian Public Administration = Can. Public Adm. Canadian Public Policy-analyse De Politiques = Can Public Pol Canadian Public Policy-analyse De Politiques = Can. Public Pol. Canadian public policy. Analyse de politiques = Can Public Policy Canadian Public Policy=Can. Public Pol. Canadian Pulp & Paper Association Technical Section Annual Meeting = Can Pulp P Canadian Pulp & Paper Association Technical Section Annual Meeting = Can. Pulp P. Canadian Respiratory Journal = Can Respir J Canadian Respiratory Journal = Can. Respir. J. Canadian respiratory journal : journal of the Canadian Thoracic Society = Can Respir J Canadian review of American studies = Can Rev Am Stud Canadian Review of American Studies = Can Rev Am Stud Canadian Review of American Studies = Can. Rev. Am. Stud. Canadian review of comparative literature = CRCL Canadian Review of Comparative Literature-revue Canadienne De Litterature Comparee = Can Rev Comp Lit Canadian Review of Comparative Literature-revue Canadienne De Litterature Comparee = Can. Rev. Comp. Lit. Canadian Review of Sociology and Anthropology = Can Rev Sociol Anthr Canadian Review of Sociology and Anthropology = Can. Rev. Sociol. Anthr. Canadian Review of Sociology and Anthropology-revue Canadienne De Sociologie Et D Anthropologie = Can Rev Soc Anthrop Canadian Review of Sociology and Anthropology-revue Canadienne De Sociologie Et D Anthropologie = Can. Rev. Soc. Anthrop. Canadian Review Of Sociology And Anthropology-Revue Canadienne De Sociologie Et D Anthropologie = Can. Rev. Sociol. Anthropol.-Rev. Can. Sociol. Anthrol. Canadian Review of Sociology-revue Canadienne De Sociologie = Can Rev Sociol Canadian Review of Sociology-revue Canadienne De Sociologie = Can. Rev. Sociol. Canadian Semantic Web = Semantic Web Beyond Canadian Semantic Web = Semantic Web Beyond. Canadian Semantic Web = Semat Web Beyond-com Canadian Semantic Web = Semat. Web Beyond-com. Canadian services medical journal = Can Serv Med J Canadian Slavic Studies = Can Slavic Stud Canadian Slavic Studies = Can. Slavic Stud. Canadian Slavonic papers = Can Slavon Pap Canadian Slavonic Papers-revue Canadienne Des Slavistes = Can Slavonic Pap Canadian Slavonic Papers-revue Canadienne Des Slavistes = Can. Slavonic Pap. Canadian social trends = Can Soc Trends Canadian statistical review (Ottawa, Ont.). = Can Stat Rev Canadian studies in population = Can Stud Popul Canadian Studies in Population = Can Stud Popul Canadian Studies in Population = Can. Stud. Popul. Canadian Surveyor-geometre Canadien = Can Surveyor Canadian Surveyor-geometre Canadien = Can. Surveyor. Canadian Tax Journal=Can. Tax J. Canadian Technical Asphalt Association Proceedings = Can Tec Asp Canadian Technical Asphalt Association Proceedings = Can. Tec. Asp. Canadian Theatre Review = Can Theatre Rev Canadian Theatre Review = Can. Theatre Rev. Canadian Veterinary Journal = Canadian Vet J Canadian Veterinary Journal = Canadian Vet. J. Canadian Veterinary Journal=Can Vet J;; Canadian Veterinary Journal = Can. Vet. J. Canadian Veterinary Journal-revue Veterinaire Canadienne = Can Vet J Canadian Veterinary Journal-revue Veterinaire Canadienne = Can. Vet. J. Canadian Water Resources Journal = Can Water Resour J Canadian Water Resources Journal = Can. Water Resour. J. Canal History and Technology Proceedings = Canal Hist Canal History and Technology Proceedings = Canal Hist. Canal History and Technology Proceedings, Vol 11 = Canal Hist Canal History and Technology Proceedings, Vol 11 = Canal Hist. Canal History and Technology Proceedings, Vol 15 = Canal Hist Canal History and Technology Proceedings, Vol 15 = Canal Hist. Canal History and Technology Proceedings, Vol 8 = Canal Hist Canal History and Technology Proceedings, Vol 8 = Canal Hist. Canal History and Technology Proceedings, Vol X = Canal Hist Canal History and Technology Proceedings, Vol X = Canal Hist. Canal History and Technology Proceedings, Vol Xii = Canal Hist Canal History and Technology Proceedings, Vol Xii = Canal Hist. Canal History & Technology Proceedings, Vol 17 = Canal Hist Canal History & Technology Proceedings, Vol 17 = Canal Hist. Can-am Eastern 90 = P Soc Photo-opt Ins Can-am Eastern 90 = P. Soc. Photo-opt. Ins. Canary Islands Winter Schools of Astrophysics = Can Isl Ast Canary Islands Winter Schools of Astrophysics = Can. Isl. Ast. Canberra Papers On Strategy and Defence = Canber Pap Strategy Canberra Papers On Strategy and Defence = Canber. Pap. Strategy Cancer and Development = Curr Top Dev Biol Cancer and Development = Curr. Top. Dev. Biol. Cancer and Energy Balance, Epidemiology and Overview = Energ Balance Cancer Cancer and Energy Balance, Epidemiology and Overview = Energ. Balance. Cancer Cancer and Metastasis Reviews=Cancer Metastasis Rev;; Cancer and Metastasis Reviews = Cancer Metastasis Rev. Cancer and Metastasis Reviews = Cancer Metast Rev Cancer and Metastasis Reviews = Cancer Metast. Rev. Cancer = Ann Ny Acad Sci Cancer = Ann. Ny. Acad. Sci. Cancer Biochemistry Biophysics = Cancer Biochem Bioph Cancer Biochemistry Biophysics = Cancer Biochem. Bioph. Cancer biochemistry biophysics = Cancer Biochem Biophys Cancer Biochemistry Biophysics=Cancer Biochem Biophys;; Cancer Biochemistry Biophysics = Cancer Biochem. Biophys. Cancer Biology and Therapy = Cancer Biol. Ther. Cancer Biology: An Updated Global Overview = Cancer Etiol Diagn T Cancer Biology: An Updated Global Overview = Cancer Etiol. Diagn. T. Cancer biology & therapy = Cancer Biol Ther Cancer Biology & Therapy = Cancer Biol Ther Cancer Biology & Therapy = Cancer Biol. Ther. Cancer Biomarkers = Cancer Biomark Cancer Biomarkers = Cancer Biomark. Cancer biomarkers : section A of Disease markers = Cancer Biomark Cancer Biotherapy and Radiopharmaceuticals = Cancer Biother Radio Cancer Biotherapy and Radiopharmaceuticals = Cancer Biother. Radio. Cancer Biotherapy and Radiopharmaceuticals = Cancer Biother. Radiopharm. Cancer biotherapy = Cancer Biother Cancer Biotherapy = Cancer Biother. Cancer Biotherapy = Cancer Biotherapy Cancer biotherapy & radiopharmaceuticals = Cancer Biother Radiopharm Cancer bulletin (Houston, Tex.) = Cancer Bull Cancer=Cancer;; Cancer = Cancer Cancer = Cancer-am Cancer Soc Cancer = Cancer-am. Cancer Soc. Cancer Causes and Control=Cancer Causes Control;; Cancer Causes and Control = Cancer Causes Control Cancer Causes & Control = Cancer Cause Control Cancer Causes & Control = Cancer Cause. Control Cancer causes & control : CCC = Cancer Causes Control Cancer cell = Cancer Cell Cancer Cell = Cancer Cell Cancer Cell Culture: Methods and Protocols, Second Edition = Methods Mol Biol Cancer Cell Culture: Methods and Protocols, Second Edition = Methods Mol. Biol. Cancer cell international = Cancer Cell Int Cancer Cell International = Cancer Cell Int Cancer Cell International = Cancer Cell Int. Cancer Cells-a Monthly Review = Cancer Cell-mon Rev Cancer Cells-a Monthly Review = Cancer Cell-mon. Rev. Cancer Cells = Cancer Cells Cancer cells (Cold Spring Harbor, N.Y. : 1989) = Cancer Cells Cancer Cells Series = Cancer Cel Cancer Cells Series = Cancer Cel. Cancer Cells Series = Cancer Cell-mon Rev Cancer Cells Series = Cancer Cell-mon. Rev. Cancer Chemotheraphy and Pharmacology = Cancer Chemother. Pharmacol. Cancer chemotherapy and biological response modifiers = Cancer Chemother Biol Response Modif Cancer Chemotherapy and Biological Response Modifiers=Cancer Chemother Biol Response Modif;; Cancer Chemotherapy and Biological Response Modifiers = Cancer Chemother. Biol. Response Modif. Cancer chemotherapy and pharmacology = Cancer Chemother Pharmacol Cancer Chemotherapy and Pharmacology=Cancer Chemother Pharmacol;; Cancer Chemotherapy and Pharmacology = Cancer Chemother. Pharmacol. Cancer Chemotherapy and Pharmacology = Cancer Chemoth Pharm Cancer Chemotherapy and Pharmacology = Cancer Chemoth. Pharm. Cancer Chemotherapy: Challenges for The Future, Vol 10 = Int Congr Ser Cancer Chemotherapy: Challenges for The Future, Vol 10 = Int. Congr. Ser. Cancer Chemotherapy : Challenges for The Future, Vol 4 = Int Congr Ser Cancer Chemotherapy : Challenges for The Future, Vol 4 = Int. Congr. Ser. Cancer Chemotherapy : Challenges for The Future, Vol 5 = Int Congr Ser Cancer Chemotherapy : Challenges for The Future, Vol 5 = Int. Congr. Ser. Cancer Chemotherapy : Challenges for The Future, Vol 7 = Int Congr Ser Cancer Chemotherapy : Challenges for The Future, Vol 7 = Int. Congr. Ser. Cancer Chemotherapy: Challenges for The Future, Vol 8 = Int Congr Ser Cancer Chemotherapy: Challenges for The Future, Vol 8 = Int. Congr. Ser. Cancer Chemotherapy: Challenges for The Future, Vol 9 = Int Congr Ser Cancer Chemotherapy: Challenges for The Future, Vol 9 = Int. Congr. Ser. Cancer Chemotherapy Reports = Cancer Chemoth Rep Cancer Chemotherapy Reports = Cancer Chemoth. Rep. Cancer chemotherapy reports. Part 1 = Cancer Chemother Rep Cancer Chemotherapy Reports. Part 1 = Cancer Chemother. Rep. Cancer Chemotherapy Reports Part 1 = Cancer Chemoth Rep 1 Cancer Chemotherapy Reports Part 1 = Cancer Chemoth. Rep. 1 Cancer Chemotherapy Reports Part 2 = Canc Chemother Rep 2 Cancer Chemotherapy Reports Part 2 = Canc. Chemother. Rep. 2 Cancer chemotherapy reports. Part 2 = Cancer Chemother Rep 2 Cancer Chemotherapy Reports. Part 2 = Cancer Chemother. Rep. [2] Cancer Chemotherapy Reports Part 2 Supplement = Cancer Chemoth Rep 2 Cancer Chemotherapy Reports Part 2 Supplement = Cancer Chemoth. Rep. 2 Cancer Chemotherapy Reports Part 3 = Canc Chemother Rep Cancer Chemotherapy Reports Part 3 = Canc. Chemother. Rep. Cancer chemotherapy reports. Part 3 = Cancer Chemother Rep 3 Cancer Chemotherapy Reports. Part 3 = Cancer Chemother. Rep. [3] Cancer Chemotherapy Reports Part 3 Program Information-supplement = Cancer Chemoth Rep 3 Cancer Chemotherapy Reports Part 3 Program Information-supplement = Cancer Chemoth. Rep. 3 Cancer clinical trials = Cancer Clin Trials Cancer Clinical Trials = Cancer Clin Trials Cancer Clinical Trials = Cancer Clin. Trials Cancer communications = Cancer Commun Cancer Communications = Cancer Commun Cancer Communications = Cancer Commun. Cancer control : journal of the Moffitt Cancer Center = Cancer Control Cancer Cytogenetics: Methods and Protocols, Second Edition = Methods Mol Biol Cancer Cytogenetics: Methods and Protocols, Second Edition = Methods Mol. Biol. Cancer cytology = Cancer Cytol Cancer Cytopathology = Cancer Cytopathol Cancer Cytopathology = Cancer Cytopathol. Cancer detection and prevention = Cancer Detect Prev Cancer Detection and Prevention=Cancer Detect Prev;; Cancer Detection and Prevention = Cancer Detect Prev Cancer Detection and Prevention = Cancer Detect. Prev. Cancer Detection and Prevention. Supplement = Cancer Detect. Prev. Suppl. Cancer detection and prevention. Supplement : official publication of the International Society for Preventive Oncology, Inc = Cancer Detect Prev Suppl Cancer Discovery = Cancer Discov Cancer Discovery = Cancer Discov. Cancer Drug Delivery = Canc Drug Del Cancer Drug Delivery = Canc. Drug Del. Cancer drug delivery = Cancer Drug Deliv Cancer Drug Delivery = Cancer Drug Deliv. Cancer Drug Discovery and Development = Canc Drug Disc Dev Cancer Drug Discovery and Development = Canc. Drug Disc. Dev. Cancer Drug Discovery and Development = Cancer Drug Discov D Cancer Drug Discovery and Development = Cancer Drug Discov. D. Cancer Epidemiology, Biomarkers and Prevention=Cancer Epidemiol Biomarkers Prev;; Cancer Epidemiology, Biomarkers and Prevention = Cancer Epidemiol. Biomarkers Prev. Cancer epidemiology, biomarkers & prevention : a publication of the American Association for Cancer Research, cosponsored by the American Society of Preventive Oncology = Cancer Epidemiol Biomarkers Prev Cancer Epidemiology Biomarkers & Prevention = Cancer Epidem Biomar Cancer Epidemiology Biomarkers & Prevention = Cancer Epidem. Biomar. Cancer Epidemiology = Cancer Epidemiol Cancer Epidemiology = Cancer Epidemiol. Cancer Etiology Diagnosis and Treatments = Cancer Etiol Diagn T Cancer Etiology Diagnosis and Treatments = Cancer Etiol. Diagn. T. Cancer Gene Profiling: Methods and Protocols = Methods Mol Biol Cancer Gene Profiling: Methods and Protocols = Methods Mol. Biol. Cancer Genes = Pez Fdn Sym Cancer Genes = Pez. Fdn. Sym. Cancer Gene Therapy = Adv Exp Med Biol Cancer Gene Therapy = Adv. Exp. Med. Biol. Cancer gene therapy = Cancer Gene Ther Cancer Gene Therapy=Cancer Gene Ther;; Cancer Gene Therapy = Cancer Gene Ther Cancer Gene Therapy = Cancer Gene Ther. Cancer Genetics and Cytogenetics = Cancer Genet Cytogen Cancer Genetics and Cytogenetics = Cancer Genet. Cytogen. Cancer genetics and cytogenetics = Cancer Genet Cytogenet Cancer Genetics and Cytogenetics=Cancer Genet Cytogenet;; Cancer Genetics and Cytogenetics = Cancer Genet. Cytogenet. Cancer Genetics-bk = Cancer Treat Res Cancer Genetics-bk = Cancer Treat. Res. Cancer Genetics = Cancer Genet-ny Cancer Genetics = Cancer Genet-ny. Cancer Genetics-series = Cancer Genet-ser Cancer Genetics-series = Cancer Genet-ser. Cancer genomics & proteomics = Cancer Genomics Proteomics Cancer Genomics & Proteomics = Cancer Genomics Proteomics Cancer Genomics & Proteomics = Cancer Genom Proteom Cancer Genomics & Proteomics = Cancer Genom. Proteom. Cancer Growth and Progression = Cancer Grow Prog-dor Cancer Growth and Progression = Cancer Grow. Prog-dor. Cancer Imaging = Cancer Imaging Cancer imaging : the official publication of the International Cancer Imaging Society = Cancer Imaging Cancer immunity : a journal of the Academy of Cancer Immunology = Cancer Immun Cancer Immunity = Cancer Immun. Cancer Immunology and Immunotherapy = Curr Top Microbiol Cancer Immunology and Immunotherapy = Curr. Top. Microbiol. Cancer Immunology Immunotherapy = Cancer Immunol Immun Cancer Immunology Immunotherapy = Cancer Immunol. Immun. Cancer Immunology, Immunotherapy=Cancer Immunol Immunother;; Cancer Immunology, Immunotherapy = Cancer Immunol. Immunother. Cancer immunology, immunotherapy : CII = Cancer Immunol Immunother Cancer informatics = Cancer Inform Cancer in The First Year of Life = Contr Oncol Cancer in The First Year of Life = Contr. Oncol. Cancer investigation = Cancer Invest Cancer Investigation=Cancer Invest;; Cancer Investigation = Cancer Invest Cancer Investigation = Cancer Invest. Cancer Journal = Cancer J Cancer Journal = Cancer J. Cancer Journal - France = Cancer J - France Cancer Journal - France = Cancer J. - France Cancer Journal from Scientific American = Cancer J. Sci. Am. Cancer Journal From Scientific American=Cancer J Sci Am;; Cancer Journal From Scientific American = Cancer J Sci Am Cancer Journal From Scientific American = Cancer J. Sci. Am. Cancer journal (Sudbury, Mass.) = Cancer J Cancer Letters (Amsterdam, Netherlands) = Cancer Lett. (Amsterdam, Neth.) Cancer letters = Cancer Lett Cancer Letters=Cancer Lett;; Cancer Letters = Cancer Lett Cancer Letters = Cancer Lett. Cancer Letters (Shannon, Ireland) = Cancer Lett. (Shannon, Irel.) Cancer Management in Man: Chemotherapy, Biological Therapy, Hyperthermia and Supporting Measures = Cancer Grow Prog-dor Cancer Management in Man: Chemotherapy, Biological Therapy, Hyperthermia and Supporting Measures = Cancer Grow. Prog-dor. Cancer Metastasis and The Lymphovascular System: Basis for Rational Therapy = Canc Treat Cancer Metastasis and The Lymphovascular System: Basis for Rational Therapy = Canc. Treat. Cancer Metastasis Biology and Treatment = Cancer Metast Biol T Cancer Metastasis Biology and Treatment = Cancer Metast. Biol. T. Cancer metastasis reviews = Cancer Metastasis Rev Cancer Nanotechnology = Cancer Nanotechnol. Cancer Nanotechnology: Methods and Protocols = Methods Mol Biol Cancer Nanotechnology: Methods and Protocols = Methods Mol. Biol. Cancer nursing = Cancer Nurs Cancer Nursing=Cancer Nurs;; Cancer Nursing = Cancer Nurs Cancer Nursing = Cancer Nurs. Cancer & Nutrition Prevention and Treatment = Nes Nutr Ws Cancer & Nutrition Prevention and Treatment = Nes. Nutr. Ws. Cancer practice = Cancer Pract Cancer Practice = Cancer Pract Cancer Practice = Cancer Pract. Cancer Prevention and Control = Cancer Prev. Control Cancer Prevention = Ann Ny Acad Sci Cancer Prevention = Ann. Ny. Acad. Sci. Cancer Prevention Ii = Recent Res Cancer Cancer Prevention Ii = Recent. Res. Cancer Cancer Prevention: Novel Nutrient and Pharmaceutical Developments = Ann Ny Acad Sci Cancer Prevention: Novel Nutrient and Pharmaceutical Developments = Ann. Ny. Acad. Sci. Cancer Prevention Research = Cancer Prev Res Cancer Prevention Research = Cancer Prev. Res. Cancer progress = Cancer Prog Cancer Radiotherapie=Cancer Radiother;; Cancer Radiotherapie = Cancer Radiother Cancer Radiotherapie = Cancer Radiother. Cancer radiotherapie : journal de la Societe francaise de radiotherapie oncologique = Cancer Radiother Cancer research = Cancer Res Cancer Research=Cancer Res;; Cancer Research = Cancer Res Cancer Research = Cancer Res. Cancer research. Supplement = Can Res Suppl Cancer Research Therapy & Control = Cancer Res Ther Cont Cancer Research Therapy & Control = Cancer Res. Ther. Cont. Cancer science = Cancer Sci Cancer Science = Cancer Sci Cancer Science = Cancer Sci. Cancers of The Skin, Proceedings = Recent Res Cancer Cancers of The Skin, Proceedings = Recent. Res. Cancer. Cancer Stem Cells = Cancer Etiol Diagn T Cancer Stem Cells = Cancer Etiol. Diagn. T. Cancer Stem Cells: Methods and Protocols = Methods Mol Biol Cancer Stem Cells: Methods and Protocols = Methods Mol. Biol. Cancer Stem Cells: Novel Concepts and Prospects for Tumor Therapy = Ernst Schering Found Cancer Stem Cells: Novel Concepts and Prospects for Tumor Therapy = Ernst. Schering. Found. Cancer surveys = Cancer Surv Cancer Surveys=Cancer Surv;; Cancer Surveys = Cancer Surv Cancer Surveys = Cancer Surv. Cancer Survivorship Research and Education: Late Effects On Normal Tissues, Cured Ii = Med Radiol Rad Oncol Cancer Survivorship Research and Education: Late Effects On Normal Tissues, Cured Ii = Med. Radiol. Rad. Oncol. Cancer Susceptibility: Methods and Protocols = Methods Mol Biol Cancer Susceptibility: Methods and Protocols = Methods Mol. Biol. Cancer Systems Biology = Ch Crc Math Comp Bio Cancer Systems Biology = Ch. Crc. Math. Comp. Bio. Cancer therapy = Cancer Ther Cancer treatment and research = Cancer Treat Res Cancer Treatment and Research=Cancer Treat Res;; Cancer Treatment and Research = Cancer Treat Res Cancer Treatment and Research = Cancer Treat. Res. Cancer Treatment and Research = Canc Treat Cancer Treatment and Research = Canc. Treat. Cancer treatment reports = Cancer Treat Rep Cancer Treatment Reports = Cancer Treat Rep Cancer Treatment Reports = Cancer Treat. Rep. Cancer treatment reviews = Cancer Treat Rev Cancer Treatment Reviews=Cancer Treat Rev;; Cancer Treatment Reviews = Cancer Treat Rev Cancer Treatment Reviews = Cancer Treat. Rev. Cancer Vaccines = Ann Ny Acad Sci Cancer Vaccines = Ann. Ny. Acad. Sci. Cancro = Cancro Can Crystal Structures Be Predicted? = Nova Act Lc Can Crystal Structures Be Predicted? = Nova. Act. Lc. Candida and Candidamycosis = Fems Symp Candida and Candidamycosis = Fems. Symp. Candollea = Candollea Canine practice = Canine Pract Canine Practice = Canine Pract Canine Practice = Canine Pract. Can Institutions Have Responsibilities? = Global Issues Can Institutions Have Responsibilities? = Global. Issues. Can Livestock Be Used As A Tool to Enhance Wildlife Habitat = Usda Rocky Can Livestock Be Used As A Tool to Enhance Wildlife Habitat = Usda. Rocky. Cannibalizing The Colony: Cinematic Adaptations of Colonial Literature in Mexico and Brazil = Purdue Stud Roman Li Cannibalizing The Colony: Cinematic Adaptations of Colonial Literature in Mexico and Brazil = Purdue. Stud. Roman. Li. Canon and Beyond: Edvard Fazer and The Imperial Russian Ballet 1908-1910 = Suom Tiedeakat Toim Canon and Beyond: Edvard Fazer and The Imperial Russian Ballet 1908-1910 = Suom. Tiedeakat. Toim. Canonical Debate Today: Crossing Disciplinary and Cultural Boundaries = Int Forsch Allg Vgl Canonical Debate Today: Crossing Disciplinary and Cultural Boundaries = Int. Forsch. Allg. Vgl. Canon Law Monograph Series = Canon Law Monogr S Canon Law Monograph Series = Canon Law Monogr. S. Can Schools Save Indigenous Languages: Policy and Practice On Four Continents = Palg Stud Minor Lang Can Schools Save Indigenous Languages: Policy and Practice On Four Continents = Palg. Stud. Minor. Lang. Can The Japanese Change Their Education System? = Ox Stud Comp Educ Can The Japanese Change Their Education System? = Ox. Stud. Comp. Educ. Can The World Be Governed: Possibilities for Effective Multilateralism = Stud Int Gov Can The World Be Governed: Possibilities for Effective Multilateralism = Stud. Int. Gov. Cantium = Cantium Canto = Canto Can Unlike Students Learn Together? Grade Retention, Tracking, and Grouping = Res Educ Product Can Unlike Students Learn Together? Grade Retention, Tracking, and Grouping = Res. Educ. Product. Capacitors: Theory, Types and Applications = Electr Eng Dev Capacitors: Theory, Types and Applications = Electr. Eng. Dev. Capacity Options for Revenue Management: Theory and Applications in The Air Cargo Industry = Lect Notes Econ Math Capacity Options for Revenue Management: Theory and Applications in The Air Cargo Industry = Lect. Notes. Econ. Math. Capacity Reservation for Capital-intensive Technologies: An Options Approach = Lect Notes Econ Math Capacity Reservation for Capital-intensive Technologies: An Options Approach = Lect. Notes. Econ. Math. Capd - A Decade of Experience = Contrib Nephrol Capd - A Decade of Experience = Contrib. Nephrol. Capd : Host Defence, Nutrition and Ultrafiltration = Contrib Nephrol Capd : Host Defence, Nutrition and Ultrafiltration = Contrib. Nephrol. Cape Breton post = Cape Breton Post Cape Workshop On Magnetic Cataclysmic Variables = Astr Soc P Cape Workshop On Magnetic Cataclysmic Variables = Astr. Soc. P. Capillary Functions and White Cell Interaction = Progr Appl Micr Capillary Functions and White Cell Interaction = Progr. Appl. Micr. Capillary Surfaces = Springer Tr Mod Phys Capillary Surfaces = Springer. Tr. Mod. Phys. Cap-independent Translation = Curr Top Microbiol Cap-independent Translation = Curr. Top. Microbiol. Capital As Power: A Study of Order and Creorder = Ripe Ser Glob Polit Capital As Power: A Study of Order and Creorder = Ripe. Ser. Glob. Polit. Capital, Exploitation and Economic Crisis = Routl Front Polit Ec Capital, Exploitation and Economic Crisis = Routl. Front. Polit. Ec. Capital Flows and The Emerging Economies = Nber Conf R Capital Flows and The Emerging Economies = Nber. Conf. R. Capitalismes A L'est = Coll Gr Deb Capitalismes A L'est = Coll. Gr. Deb. Capitalism in Contrasting Cultures = De Gruy St Capitalism in Contrasting Cultures = De. Gruy. St. Capitalism, Institutions, and Economic Development = Routl Front Polit Ec Capitalism, Institutions, and Economic Development = Routl. Front. Polit. Ec. Capitalism in The East = Coll Gr Deb Capitalism in The East = Coll. Gr. Deb. Capitalism = Routl Front Polit Ec Capitalism = Routl. Front. Polit. Ec. Capitalisms Compared = Comp Soc Res Capitalisms Compared = Comp. Soc. Res. Capitalism, Socialism and Radical Political Economy = New Dir Mod Econ Capitalism, Socialism and Radical Political Economy = New. Dir. Mod. Econ. Capital Markets, Globalization, and Economic Development = Innov Financ Market Capital Markets, Globalization, and Economic Development = Innov. Financ. Market. Capital Needs of Central Banks = Routl Int Stud Money Capital Needs of Central Banks = Routl. Int. Stud. Money. Capital nursing = Cap Nurs Capital Nursing = Cap. Nurs. Capital, Time and Transitional Dynamics = Routl Stud Hist Econ Capital, Time and Transitional Dynamics = Routl. Stud. Hist. Econ. Capital University law review = Cap Univ Law Rev Capitation management report = Capitation Manag Rep Capitation Management Report = Capitation Manag. Rep. Capitation Rates and Data = Capitation Rates Data Capitation rates & data = Capitation Rates Data Capitol Studies = Capitol Stud Capitol Studies = Capitol Stud. Captive of The Dawn: The Life and Work of Peretz Markish (1895-1952) = Stud Yiddish Captive of The Dawn: The Life and Work of Peretz Markish (1895-1952) = Stud. Yiddish. CAP Today = CAP Today CAP today / College of American Pathologists = CAP Today Capture Gamma-ray Spectroscopy = Aip Conf Proc Capture Gamma-ray Spectroscopy = Aip. Conf. Proc. Capture Gamma-ray Spectroscopy and Related Topics = Aip Conf Proc Capture Gamma-ray Spectroscopy and Related Topics = Aip. Conf. Proc. Capturing and Reporting Electronic Data = Acs Sym Ser Capturing and Reporting Electronic Data = Acs. Sym. Ser. Car '96: Computer Assisted Radiology = Int Congr Ser Car '96: Computer Assisted Radiology = Int. Congr. Ser. Car '97 - Computer Assisted Radiology and Surgery = Int Congr Ser Car '97 - Computer Assisted Radiology and Surgery = Int. Congr. Ser. Car '98 - Computer Assisted Radiology and Surgery = Int Congr Ser Car '98 - Computer Assisted Radiology and Surgery = Int. Congr. Ser. Carabid Beetles: Ecology and Evolution = Series Entom Carabid Beetles: Ecology and Evolution = Series. Entom. Caravelle-cahiers Du Monde Hispanique Et Luso-bresilien = Caravelle Caravelle-cahiers Du Monde Hispanique Et Luso-bresilien = Caravelle. Carbohydrate Antigens = Acs Sym Ser Carbohydrate Antigens = Acs. Sym. Ser. Carbohydrate Bioengineering: Interdisciplinary Approaches = Roy Soc Ch Carbohydrate Bioengineering: Interdisciplinary Approaches = Roy. Soc. Ch. Carbohydrate Bioengineering = Progr Biotechnol Carbohydrate Bioengineering = Progr. Biotechnol. Carbohydrate Chemistry = Carbohydr. Chem. Carbohydrate Drug Design = Acs Sym Ser Carbohydrate Drug Design = Acs. Sym. Ser. Carbohydrate Expression in The Intestinal Mucosa = Adv Anat Embryol Cel Carbohydrate Expression in The Intestinal Mucosa = Adv. Anat. Embryol. Cel. Carbohydrate Histochemistry of Vertebrate Taste Organs = Prog Histochem Cytoc Carbohydrate Histochemistry of Vertebrate Taste Organs = Prog. Histochem. Cytoc. Carbohydrate letters = Carbohydr Lett Carbohydrate Letters = Carbohydr. Lett. Carbohydrate Modifications in Antisense Research = Acs Sym Ser Carbohydrate Modifications in Antisense Research = Acs. Sym. Ser. Carbohydrate Polymers = Carbohyd Polym Carbohydrate Polymers = Carbohyd. Polym. Carbohydrate Polymers = Carbohydr. Polym. Carbohydrate Recognition in Cellular Function = Ciba F Symp Carbohydrate Recognition in Cellular Function = Ciba. F. Symp. Carbohydrate Research = Carbohyd Res Carbohydrate Research = Carbohyd. Res. Carbohydrate research = Carbohydr Res Carbohydrate Research=Carbohydr Res;; Carbohydrate Research = Carbohydr. Res. Carbohydrates and Carbohydrate Polymers = Front Biom Carbohydrates and Carbohydrate Polymers = Front. Biom. Carbohydrates in Sustainable Development Ii: A Mine for Functional Molecules and Materials = Top Curr Chem Carbohydrates in Sustainable Development Ii: A Mine for Functional Molecules and Materials = Top. Curr. Chem. Carbohydrates in Sustainable Development I: Renewable Resources for Chemistry and Biotechnology = Top Curr Chem Carbohydrates in Sustainable Development I: Renewable Resources for Chemistry and Biotechnology = Top. Curr. Chem. Carbohydrate Synthons in Natural Products Chemistry: Synthesis, Functionalization and Applications = Acs Sym Ser Carbohydrate Synthons in Natural Products Chemistry: Synthesis, Functionalization and Applications = Acs. Sym. Ser. Carbon and Nutrient Fluxes in Continental Margins: A Global Synthesis = Glob Change Igbp Ser Carbon and Nutrient Fluxes in Continental Margins: A Global Synthesis = Glob. Change. Igbp. Ser. Carbon and Oxide Nanostructures: Synthesis, Characterisation and Applications = Adv Struct Mat Carbon and Oxide Nanostructures: Synthesis, Characterisation and Applications = Adv. Struct. Mat. Carbonate Additions to Cement = Am Soc Test Mater Carbonate Additions to Cement = Am. Soc. Test. Mater. Carbonate Fuel Cell Technology = Elec Soc S Carbonate Fuel Cell Technology = Elec. Soc. S. Carbonate Platform Systems: Components and Interactions = Geol Soc Spec Publ Carbonate Platform Systems: Components and Interactions = Geol. Soc. Spec. Publ. Carbonates and Evaporites = Carbonate Evaporite Carbonates and Evaporites = Carbonate. Evaporite. Carbonates and Evaporites = Carbonates Evaporites Carbonate Sequence Stratigraphy = Aapg Memoir Carbonate Sequence Stratigraphy = Aapg. Memoir. Carbonate Systems During The Oligocene-miocene Climate Transition = Spec Publ Int Ass Se Carbonate Systems During The Oligocene-miocene Climate Transition = Spec. Publ. Int. Ass. Se. Carbon balance and management = Carbon Balance Manag Carbon Balance and Management = Carbon Balance Manage. Carbon Based Nanomaterials = Mater Sci Found Carbon Based Nanomaterials = Mater. Sci. Found. Carbon Capture: Sequestration and Storage = Iss Environ Sci Tech Carbon Capture: Sequestration and Storage = Iss. Environ. Sci. Tech. Carbon = Carbon Carbon Cycling in Northern Peatlands = Geophys Monogr Ser Carbon Cycling in Northern Peatlands = Geophys. Monogr. Ser. Carbon Dioxide Utilization for Global Sustainability = Stud Surf Sci Catal Carbon Dioxide Utilization for Global Sustainability = Stud. Surf. Sci. Catal. Carbon Fibers Filaments and Composites = Nato Adv Sci I C-mat Carbon Fibers Filaments and Composites = Nato. Adv. Sci. I. C-mat. Carbon in The Galaxy : Studies From Earth and Space = Nasa Conf P Carbon in The Galaxy : Studies From Earth and Space = Nasa. Conf. P. Carbon Management in Tourism: Mitigating The Impacts On Climate Change = Rout Int Ser Tour Bu Carbon Management in Tourism: Mitigating The Impacts On Climate Change = Rout. Int. Ser. Tour. Bu. Carbon Materials-chemistry and Physics = Carbon Mater-chem Ph Carbon Materials-chemistry and Physics = Carbon Mater-chem. Ph. Carbon Nanomaterials in Clean Energy Hydrogen Systems - Ii = Nato Sci Peace Secur Carbon Nanomaterials in Clean Energy Hydrogen Systems - Ii = Nato. Sci. Peace. Secur. Carbon Nanomaterials in Clean Energy Hydrogen Systems = Nato Sci Peace Secur Carbon Nanomaterials in Clean Energy Hydrogen Systems = Nato. Sci. Peace. Secur. Carbon Nanostructures = Carbon Nanostruct Carbon Nanostructures = Carbon Nanostruct. Carbon Nanotube Electronics = Integr Circuit Syst Carbon Nanotube Electronics = Integr. Circuit. Syst. Carbon Nanotubes and Associated Devices = Proc Spie Carbon Nanotubes and Associated Devices = Proc. Spie. Carbon Nanotubes and Associated Devices = P Soc Photo-opt Ins Carbon Nanotubes and Associated Devices = P. Soc. Photo-opt. Ins. Carbon Nanotubes for Biomedical Applications = Carbon Nanostruct Carbon Nanotubes for Biomedical Applications = Carbon Nanostruct. Carbon Nanotubes: From Basic Research to Nanotechnology = Nato Sci Ser Ii-math Carbon Nanotubes: From Basic Research to Nanotechnology = Nato. Sci. Ser. Ii-math. Carbon Nanotubes: From Basic Research to Nanotechnology = Nato Sci Ser Ii Math Carbon Nanotubes: From Basic Research to Nanotechnology = Nato. Sci. Ser. Ii. Math. Carbon Nanotubes, Graphene, and Associated Devices Iii = Proc Spie Carbon Nanotubes, Graphene, and Associated Devices Iii = Proc. Spie. Carbon Nanotubes, Graphene, and Associated Devices Iii = P Soc Photo-opt Ins Carbon Nanotubes, Graphene, and Associated Devices Iii = P. Soc. Photo-opt. Ins. Carbon Nanotubes: Methods and Protocols = Methods Mol Biol Carbon Nanotubes: Methods and Protocols = Methods Mol. Biol. Carbon Nanotubes = Top Appl Phys Carbon Nanotubes = Top. Appl. Phys. Carbon Offsets: Examining Their Role in Greenhouse Gas Reduction = Clim Chang Cause Eff Carbon Offsets: Examining Their Role in Greenhouse Gas Reduction = Clim. Chang. Cause. Eff. Carbon Partitioning and Source-sink Interactions in Plants = Cur Top Pl Carbon Partitioning and Source-sink Interactions in Plants = Cur. Top. Pl. Carbon Partitioning : Within and Between Organisms = Env Plant B Carbon Partitioning : Within and Between Organisms = Env. Plant. B. Carbon Rich Compounds Ii = Top Curr Chem Carbon Rich Compounds Ii = Top. Curr. Chem. Carbon Rich Compounds I = Top Curr Chem Carbon Rich Compounds I = Top. Curr. Chem. Carbons and Carbon-supported Catalysts in Hydroprocessing = Rsc Catal Ser Carbons and Carbon-supported Catalysts in Hydroprocessing = Rsc. Catal. Ser. Carbon Sequestration and Its Role in The Global Carbon Cycle = Geophys Monogr Ser Carbon Sequestration and Its Role in The Global Carbon Cycle = Geophys. Monogr. Ser. Carbon Sequestration: Methods, Modeling and Impacts = Clim Chang Cause Eff Carbon Sequestration: Methods, Modeling and Impacts = Clim. Chang. Cause. Eff. Carbon Sinks and Climate Change: Forests in The Fight Against Global Warming = Adv Ecol Econ Carbon Sinks and Climate Change: Forests in The Fight Against Global Warming = Adv. Ecol. Econ. Carbon: The Future Material for Advanced Technology Applications = Top Appl Phys Carbon: The Future Material for Advanced Technology Applications = Top. Appl. Phys. Carcinogenesis; a comprehensive survey = Carcinog Compr Surv Carcinogenesis; A Comprehensive Survey=Carcinog Compr Surv;; Carcinogenesis: A Comprehensive Survey = Carcinog. Compr. Surv. Carcinogenesis Bioassays and Protecting Public Health = Ann Ny Acad Sci Carcinogenesis Bioassays and Protecting Public Health = Ann. Ny. Acad. Sci. Carcinogenesis=Carcinogenesis;; Carcinogenesis = Carcinogenesis Carcinogenicity and Pesticides = Acs Sym Ser Carcinogenicity and Pesticides = Acs. Sym. Ser. Cardiac Arrhythmias, Pacing & Electrophysiology = Dev Cardiovasc Med Cardiac Arrhythmias, Pacing & Electrophysiology = Dev. Cardiovasc. Med. Cardiac Bioassist = Bakken Res Cardiac Bioassist = Bakken. Res. Cardiac Drug Therapy = Contemp Cardiol Cardiac Drug Therapy = Contemp. Cardiol. Cardiac Electrophysiology, Circulation, and Transport = Dev Cardiovasc Med Cardiac Electrophysiology, Circulation, and Transport = Dev. Cardiovasc. Med. Cardiac electrophysiology review = Card Electrophysiol Rev Cardiac Electrophysiology Review = Card. Electrophysiol. Rev. Cardiac Energetics: From Emax to Pressure-volume Area = Dev Cardiovasc Med Cardiac Energetics: From Emax to Pressure-volume Area = Dev. Cardiovasc. Med. Cardiac Engineering: From Genes and Cells to Structure and Function = Ann Ny Acad Sci Cardiac Engineering: From Genes and Cells to Structure and Function = Ann. Ny. Acad. Sci. Cardiac Growth and Regeneration = Ann Ny Acad Sci Cardiac Growth and Regeneration = Ann. Ny. Acad. Sci. Cardiac Imaging : X-ray, Mr, and Ultrasound = Int Congr Ser Cardiac Imaging : X-ray, Mr, and Ultrasound = Int. Congr. Ser. Cardiac Rehabilitation = Cardiol Res Clin Dev Cardiac Rehabilitation = Cardiol. Res. Clin. Dev. Cardiac Rehabilitation = Contemp Cardiol Cardiac Rehabilitation = Contemp. Cardiol. Cardiac Rehabilitation in Women = Cardiol Res Clin Dev Cardiac Rehabilitation in Women = Cardiol. Res. Clin. Dev. Cardiac Remodeling and Failure = Prog Exp Cardiol Cardiac Remodeling and Failure = Prog. Exp. Cardiol. Cardiac Sarcoplasmic Reticulum Function and Regulation of Contractility = Ann Ny Acad Sci Cardiac Sarcoplasmic Reticulum Function and Regulation of Contractility = Ann. Ny. Acad. Sci. Cardiac Surgery = Card Surg Cardiac Surgery = Card. Surg. Cardiac Surgery: Current Issues 4 = Card Surg Cardiac Surgery: Current Issues 4 = Card. Surg. Cardiac Surgery: Current Issues = Card Surg Cardiac Surgery: Current Issues = Card. Surg. Cardiff: Architecture and Archaeology in The Medieval Diocese of Llandaff = Brit Archaeol Assoc Cardiff: Architecture and Archaeology in The Medieval Diocese of Llandaff = Brit. Archaeol. Assoc. Cardinal Numerals: Old English From A Cross-linguistic Perspective = Top Engl Linguist Cardinal Numerals: Old English From A Cross-linguistic Perspective = Top. Engl. Linguist. Cardio-aortic and Aortic Surgery = Keio U Int Symp Life Cardio-aortic and Aortic Surgery = Keio. U. Int. Symp. Life. Cardiologia=Cardiologia;; Cardiologia = Cardiologia Cardiologia pratica = Cardiol Prat Cardiologia Pratica = Cardiol. Prat. Cardiologia (Rome, Italy) = Cardiologia Cardiology=Cardiology;; Cardiology = Cardiology Cardiology clinics = Cardiol Clin Cardiology Clinics=Cardiol Clin;; Cardiology Clinics = Cardiol Clin Cardiology Clinics = Cardiol. Clin. Cardiology in review = Cardiol Rev Cardiology in Review = Cardiol Rev Cardiology in Review = Cardiol. Rev. Cardiology in The Elderly = Cardiol Elder Cardiology in The Elderly = Cardiol. Elder. Cardiology in the young = Cardiol Young Cardiology in the Young = Cardiol. Young Cardiology in The Young = Cardiol Young Cardiology in The Young = Cardiol. Young Cardiology Journal = Cardiol J Cardiology Journal = Cardiol. J. Cardiology management = Cardiol Manage Cardiology Management = Cardiol. Manage. Cardiology Research and Clinical Developments = Cardiol Res Clin Dev Cardiology Research and Clinical Developments = Cardiol. Res. Clin. Dev. Cardiomyoplasty = Bakken Res Cardiomyoplasty = Bakken. Res. Cardiorenal Disease = Contrib Nephrol Cardiorenal Disease = Contrib. Nephrol. Cardiorenal Syndromes in Critical Care = Contrib Nephrol Cardiorenal Syndromes in Critical Care = Contrib. Nephrol. Cardioscience = Cardioscience Cardiostim Monograph Series = Cardios Mon Cardiostim Monograph Series = Cardios. Mon. Cardio-thoracic Surgery = Int Congr Ser Cardio-thoracic Surgery = Int. Congr. Ser. Cardiovascular and Hematological Agents in Medicinal Chemistry = Cardiovasc. Hematol. Agents Med. Chem. Cardiovascular and Hematological Disorders Drug Targets = Cardiovasc. Hematol. Disord. Drug Targets. Cardiovascular and Interventional Radiology = Cardiovasc Inter Rad Cardiovascular and Interventional Radiology = Cardiovasc. Inter. Rad. Cardiovascular and interventional radiology = Cardiovasc Intervent Radiol Cardiovascular and Interventional Radiology=Cardiovasc Intervent Radiol;; Cardiovascular and Interventional Radiology = Cardiovasc. Intervent. Radiol. Cardiovascular and Renal Actions of Dopamine = Adv Biosci Cardiovascular and Renal Actions of Dopamine = Adv. Biosci. Cardiovascular and Respiratory Systems: Modeling, Analysis and Control = Front Appl Math Cardiovascular and Respiratory Systems: Modeling, Analysis and Control = Front. Appl. Math. Cardiovascular clinics = Cardiovasc Clin Cardiovascular Clinics = Cardiovasc. Clin. Cardiovascular diabetology = Cardiovasc Diabetol Cardiovascular Diabetology = Cardiovasc Diabetol Cardiovascular Diabetology = Cardiovasc. Diabetol. Cardiovascular Diabetology: Clinical, Metabolic and Inflammatory Facets = Adv Cardiol Cardiovascular Diabetology: Clinical, Metabolic and Inflammatory Facets = Adv. Cardiol. Cardiovascular Disease 2 = Gwumc Dept Cardiovascular Disease 2 = Gwumc. Dept. Cardiovascular Disease and Steroid Hormone Contraception = Who Tech Rep Ser Cardiovascular Disease and Steroid Hormone Contraception = Who. Tech. Rep. Ser. Cardiovascular Disease in Diabetes = Dev Cardiovasc Med Cardiovascular Disease in Diabetes = Dev. Cardiovasc. Med. Cardiovascular Disease in Racial and Ethnic Minorities = Contemp Cardiol Cardiovascular Disease in Racial and Ethnic Minorities = Contemp. Cardiol. Cardiovascular Disease Risk Factors: New Areas for Research = Who Tech Rep Ser Cardiovascular Disease Risk Factors: New Areas for Research = Who. Tech. Rep. Ser. Cardiovascular diseases = Cardiovasc Dis Cardiovascular Diseases = Cardiovasc Dis Cardiovascular Diseases = Cardiovasc. Dis. Cardiovascular Disorders in Hemodialysis = Contrib Nephrol Cardiovascular Disorders in Hemodialysis = Contrib. Nephrol. Cardiovascular drug reviews = Cardiovasc Drug Rev Cardiovascular Drug Reviews = Cardiovasc Drug Rev Cardiovascular Drug Reviews = Cardiovasc. Drug Rev. Cardiovascular Drugs and Therapy=Cardiovasc Drugs Ther;; Cardiovascular Drugs and Therapy = Cardiovasc. Drugs Ther. Cardiovascular Drugs and Therapy = Cardiovasc Drug Ther Cardiovascular Drugs and Therapy = Cardiovasc. Drug. Ther. Cardiovascular drugs and therapy / sponsored by the International Society of Cardiovascular Pharmacotherapy = Cardiovasc Drugs Ther Cardiovascular Effects of Ginkgo Biloba Extract (egb 761) = Adv Ginkgo Cardiovascular Effects of Ginkgo Biloba Extract (egb 761) = Adv. Ginkgo Cardiovascular Endocrinology = Contemp Endocrinol S Cardiovascular Endocrinology = Contemp. Endocrinol. S. Cardiovascular Engineering = Cardiovasc Eng Cardiovascular Engineering = Cardiovasc. Eng. Cardiovascular engineering (Dordrecht, Netherlands) = Cardiovasc Eng Cardiovascular Flow Modelling and Measurement With Application to Clinical Medicine = Inst Math C Cardiovascular Flow Modelling and Measurement With Application to Clinical Medicine = Inst. Math. C. Cardiovascular Fluid Mechanics = Cism Cour L Cardiovascular Fluid Mechanics = Cism. Cour. L. Cardiovascular Fluid Mechanics = Cism Courses Lect Cardiovascular Fluid Mechanics = Cism. Courses. Lect. Cardiovascular Gap Junctions = Adv Cardiol Cardiovascular Gap Junctions = Adv. Cardiol. Cardiovascular Genomics: Methods and Protocols = Methods Mol Biol Cardiovascular Genomics: Methods and Protocols = Methods Mol. Biol. Cardiovascular Genomics: New Pathophysiological Concepts = Dev Cardiovasc Med Cardiovascular Genomics: New Pathophysiological Concepts = Dev. Cardiovasc. Med. Cardiovascular & Hematological Agents = Cardiovasc. Hematol. Agents Cardiovascular & hematological agents in medicinal chemistry = Cardiovasc Hematol Agents Med Chem Cardiovascular & hematological disorders drug targets = Cardiovasc Hematol Disord Drug Targets Cardiovascular & Hematological Disorders: Drug Targets = Cardiovasc. Hematol. Disord.: Drug Targets Cardiovascular Imaging By Ultrasound = Dev Cardiovasc Med Cardiovascular Imaging By Ultrasound = Dev. Cardiovasc. Med. Cardiovascular journal of Africa = Cardiovasc J Afr Cardiovascular Journal of Africa = Cardiovasc J Afr Cardiovascular Journal of Africa = Cardiovasc. J. Afr. Cardiovascular Journal of South Africa = Cardiovasc. J. S. Afr. Cardiovascular journal of South Africa : official journal for Southern Africa Cardiac Society [and] South African Society of Cardiac Practitioners = Cardiovasc J S Afr Cardiovascular Magnetic Resonance Imaging = Contemp Cardiol Cardiovascular Magnetic Resonance Imaging = Contemp. Cardiol. Cardiovascular Mathematics: Modeling and Simulation of The Circulatory System = Ms A Mod Simul Cardiovascular Mathematics: Modeling and Simulation of The Circulatory System = Ms. A. Mod. Simul. Cardiovascular Medicine = Cardiovasc Med Cardiovascular Medicine = Cardiovasc. Med. Cardiovascular Mri = Contemp Cardiol Cardiovascular Mri = Contemp. Cardiol. Cardio-vascular nursing = Cardiovasc Nurs Cardiovascular Nursing = Cardiovasc. Nurs. Cardiovascular Pathology = Cardiovasc Pathol Cardiovascular Pathology = Cardiovasc. Pathol. Cardiovascular pathology : the official journal of the Society for Cardiovascular Pathology = Cardiovasc Pathol Cardiovascular Pharmacology: Endothelial Control = Adv Pharmacol Cardiovascular Pharmacology: Endothelial Control = Adv. Pharmacol. Cardiovascular Pharmacology of 5-hydroxytryptamine = Dev Cardiovasc Med Cardiovascular Pharmacology of 5-hydroxytryptamine = Dev. Cardiovasc. Med. Cardiovascular radiation medicine = Cardiovasc Radiat Med Cardiovascular Radiation Medicine = Cardiovasc. Radiat. Med. Cardiovascular radiology = Cardiovasc Radiol Cardiovascular Radiology = Cardiovasc Radiol Cardiovascular Radiology = Cardiovasc. Radiol. Cardiovascular research = Cardiovasc Res Cardiovascular Research=Cardiovasc Res;; Cardiovascular Research = Cardiovasc Res Cardiovascular Research = Cardiovasc. Res. Cardiovascular Research Center bulletin = Cardiovasc Res Cent Bull Cardiovascular Research Center Bulletin = Cardiovasc. Res. Cent. Bull. Cardiovascular Research Center Bulletin = Cardiovasc Res Ctr B Cardiovascular Research Center Bulletin = Cardiovasc. Res. Ctr. B. Cardiovascular Revascularization Medicine = Cardiovasc. Revasc. Med. Cardiovascular revascularization medicine : including molecular interventions = Cardiovasc Revasc Med Cardiovascular reviews & reports = Cardiovasc Rev Rep Cardiovascular Risk Factors = Cardiovasc Risk Fact Cardiovascular Risk Factors = Cardiovasc. Risk Fact. Cardiovascular Signals in Diabetes Mellitus: A New Tool to Detect Autonomic Neuropathy = Cardiol Res Clin Dev Cardiovascular Signals in Diabetes Mellitus: A New Tool to Detect Autonomic Neuropathy = Cardiol. Res. Clin. Dev. Cardiovascular Surgery=Cardiovasc Surg;; Cardiovascular Surgery = Cardiovasc Surg Cardiovascular Surgery = Cardiovasc. Surg. Cardiovascular surgery (London, England) = Cardiovasc Surg Cardiovascular Therapeutics = Cardiovasc Ther Cardiovascular Therapeutics = Cardiovasc. Ther. Cardiovascular Therapy and Prevention = Cardiovasc Ther Prev Cardiovascular Therapy and Prevention = Cardiovasc. Ther. Prev. Cardiovascular toxicology = Cardiovasc Toxicol Cardiovascular Toxicology = Cardiovasc Toxicol Cardiovascular Toxicology = Cardiovasc. Toxicol. Cardiovascular Ultrasound = Cardiovasc Ultrasoun Cardiovascular Ultrasound = Cardiovasc. Ultrasoun. Cardiovascular ultrasound = Cardiovasc Ultrasound Cardozo law review = Cardozo Law Rev CARE briefs on development issues = CARE Briefs Develop Isssues Care, Concern and Cure in Perinatal Medicine = I C S S Care, Concern and Cure in Perinatal Medicine = I. C. S. S. Career Development = Educ Compet Glob Wor Career Development = Educ. Compet. Glob. Wor. Career Development in Bioengineering and Biotechnology = Ser Biomed Eng Career Development in Bioengineering and Biotechnology = Ser. Biomed. Eng. Career Development International = Career Dev Int Career Development International = Career Dev. Int. Career Development in The Schools = Res Career Dev Career Development in The Schools = Res. Career Dev. Career Development Quarterly = Career Dev Q Career Development Quarterly = Career Dev. Q. Careers of University Graduates: Views and Experiences in Comparative Perspectives = High Educ Dynam Careers of University Graduates: Views and Experiences in Comparative Perspectives = High. Educ. Dynam. Care for Major Health Problems and Population Health Concerns = Res Sociol Health Ca Care for Major Health Problems and Population Health Concerns = Res. Sociol. Health Ca. Care Giver = Care Giver Care giver : journal of the College of Chaplains = Care Giver Caregiving-research Practice Policy = Caregiving-res Pract Caregiving-research Practice Policy = Caregiving-res. Pract. Caregiving Systems : Informal and Formal Helpers = Soc Struct Caregiving Systems : Informal and Formal Helpers = Soc. Struct. Care Management Journals = Care Manag. J. Care management journals : Journal of case management ; The journal of long term home health care = Care Manag J Cargo Inspection Technologies = P Soc Photo-opt Ins Cargo Inspection Technologies = P. Soc. Photo-opt. Ins. Cari'96 - Proceedings of The 3rd African Conference On Research in Computer Science = Colloq Semi Cari'96 - Proceedings of The 3rd African Conference On Research in Computer Science = Colloq. Semi. Caribbean affairs (Port of Spain, Trinidad and Tobago) = Caribb Aff Caribbean Economic Policy and South-south Co-operation = Warw Univ Carib St Caribbean Economic Policy and South-south Co-operation = Warw. Univ. Carib. St. Caribbean health = Caribb Health Caribbean Journal of Mathematical and Computing Sciences = Caribbean J. Math. Comput. Sci. Caribbean Journal of Science = Caribb J Sci Caribbean Journal of Science = Caribb. J. Sci. Caribbean medical journal = Caribb Med J Caribbean Meetings On Biological Control = Colloq Inra Caribbean Meetings On Biological Control = Colloq. Inra. Caribbean review = Caribb Rev Caribbean Series = Carib Ser Caribbean Series = Carib. Ser. Caribbean-south American Plate Interactions, Venezuela = Geol Soc Am Spec Pap Caribbean-south American Plate Interactions, Venezuela = Geol. Soc. Am. Spec. Pap. Caribbean Studies = Caribbean Stud Caribbean Studies = Caribbean Stud. Caribbean studies (Rio Piedras, San Juan, P.R.) = Caribb Stud Caridad, ciencia y arte = Caridad Cienc Arte Caridad, Ciencia y Arte = Caridad. Cienc. Arte Caries research = Caries Res Caries Research=Caries Res;; Caries Research = Caries Res Caries Research = Caries Res. Caring = Caring Caring : National Association for Home Care magazine = Caring Carinthia I. Geschichtliche und volkskundliche Beiträge zur Heimatkunde Kärntens = CarinthiaI Carinthia I : Mittheilungen des Geschichtsvereins fur Karnten = Carinthia I Caritas = Caritas Caritasschwester = Caritasschwester Carleton Library Series = Carl Lib S Carleton Library Series = Carl. Lib. S. Carleton Womens Experience Series = Carl Wom Ex Carleton Womens Experience Series = Carl. Wom. Ex. Carl G Hempel Lecture Series = Carl G Hemp Lect Ser Carl G Hempel Lecture Series = Carl G Hemp. Lect. Ser. Carlsberg research communications = Carlsberg Res Commun Carlsberg Research Communications = Carlsberg Res Commun Carlsberg Research Communications = Carlsberg Res. Commun. Carmelite Studies = Carmelit Stud Carmelite Studies = Carmelit. Stud. Carmen: From Silent Film to Mtv = Crit Stud Carmen: From Silent Film to Mtv = Crit. Stud. Carnahan Conference On Security Technology = Car C Secur Carnahan Conference On Security Technology = Car. C. Secur. Carnal Inscriptions: Spanish American Narratives of Corporeal Difference and Disability = New Concepts Lat Am Carnal Inscriptions: Spanish American Narratives of Corporeal Difference and Disability = New. Concepts. Lat. Am. Carnation Nutrition Education Series = Carnation N Carnation Nutrition Education Series = Carnation N. Carnegie Institute of Washington Year Book = Carnegie I Wash Carnegie Institute of Washington Year Book = Carnegie I. Wash. Carnegie Mellon Symposia On Cognition = Carn S Cogn Carnegie Mellon Symposia On Cognition = Carn. S. Cogn. Carnegie quarterly = Carnegie Q Carnegie-rochester Conference Series On Public Policy : A Biannual Conference Proceedings, Vol 35, Autumn 1991 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy : A Biannual Conference Proceedings, Vol 35, Autumn 1991 = Carn. Roch. Conf. Serie. Carnegie - Rochester Conference Series On Public Policy : A Bi-annual Conference Proceedings, Vol 36, July 1992 = Carn Roch Conf Serie Carnegie - Rochester Conference Series On Public Policy : A Bi-annual Conference Proceedings, Vol 36, July 1992 = Carn. Roch. Conf. Serie. Carnegie-Rochester Conference Series on Public Policy=Carnegie-Rochester Conf. Ser. Public Pol. Carnegie-rochester Conference Series On Public Policy = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 34 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 34 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 40, June 1994 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 40, June 1994 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 43, December 1995 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 43, December 1995 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 44, June 1996 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 44, June 1996 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol. 45, December 1996 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol. 45, December 1996 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 46, June 1997 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 46, June 1997 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 47, 1997 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 47, 1997 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 48 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 48 = Carn. Roch. Conf. Serie. Carnegie - Rochester Conference Series On Public Policy, Vol 49 - December 1998 = Carn Roch Conf Serie Carnegie - Rochester Conference Series On Public Policy, Vol 49 - December 1998 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 50, June 1999 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 50, June 1999 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 51, December 1999 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 51, December 1999 = Carn. Roch. Conf. Serie. Carnegie-rochester Conference Series On Public Policy, Vol 52, June 2000 = Carn Roch Conf Serie Carnegie-rochester Conference Series On Public Policy, Vol 52, June 2000 = Carn. Roch. Conf. Serie. Carnets De Geologie = Carnets Geol Carnets De Geologie = Carnets Geol. Carnets de l'Enfance = Carnets Enfance Carney Hospital journal = Carney Hosp J Carnitine: The Science Behind A Conditionally Essential Nutrient = Ann Ny Acad Sci Carnitine: The Science Behind A Conditionally Essential Nutrient = Ann. Ny. Acad. Sci. Carnivore = Carnivore Carnivore Conservation = Conserv Biol Ser Carnivore Conservation = Conserv. Biol. Ser. Carnuntum-Jahrbuch. Zeitschrift für Archäologie und Kulturgeschichte des Donauraumes = CarnuntumJb Carola Prosperi = Cslip Guido Gozzano Carola Prosperi = Cslip. Guido. Gozzano. Carolina International Symposium On Neutrino Physics = J Phys Conf Ser Carolina International Symposium On Neutrino Physics = J. Phys. Conf. Ser. Carolina Lowcountry Atlantic World = Carol Lowcount Atl Carolina Lowcountry Atlantic World = Carol. Lowcount. Atl. Carolina planning = Carol Plann Carolina Quarterly = Carolina Quart Carolina Quarterly = Carolina Quart. Carotenoids in Human Health = Ann Ny Acad Sci Carotenoids in Human Health = Ann. Ny. Acad. Sci. Carotenoids Series = Carotenoids Ser Carotenoids Series = Carotenoids Ser. Carotenoids, Vol 5 = Carotenoids Ser Carotenoids, Vol 5 = Carotenoids. Ser. Carotid Artery Stenting: The Basics = Contemp Cardiol Carotid Artery Stenting: The Basics = Contemp. Cardiol. Carpathian Journal of Earth and Environmental Sciences = Carpath J Earth Env Carpathian Journal of Earth and Environmental Sciences = Carpath. J. Earth Env. Carpathian Journal of Mathematics = Carpathian J Math Carpathian Journal of Mathematics = Carpathian J. Math. Carpica. Muzeul judeţean de istorie şi artă, Bacău = Carpica Carrefour africain = Carrefour Afr Carriage of Dangerous Goods By Sea = Hamb Stud Marit Aff Carriage of Dangerous Goods By Sea = Hamb. Stud. Marit. Aff. Carrier and Bioreactor Red Blood Cells for Drug Delivery and Targeting = Adv Biosci Carrier and Bioreactor Red Blood Cells for Drug Delivery and Targeting = Adv. Biosci. Cars 2000: Computer Assisted Radiology and Surgery = Int Congr Ser Cars 2000: Computer Assisted Radiology and Surgery = Int. Congr. Ser. Cars 2001: Computer Assisted Radiology and Surgery = Int Congr Ser Cars 2001: Computer Assisted Radiology and Surgery = Int. Congr. Ser. Cars 2003: Computer Assisted Radiology and Surgery, Proceedings = Int Congr Ser Cars 2003: Computer Assisted Radiology and Surgery, Proceedings = Int. Congr. Ser. Cars 2004: Computer Assisted Radiology and Surgery, Proceedings = Int Congr Ser Cars 2004: Computer Assisted Radiology and Surgery, Proceedings = Int. Congr. Ser. Cars 2005: Computer Assisted Radiology and Surgery = Int Congr Ser Cars 2005: Computer Assisted Radiology and Surgery = Int. Congr. Ser. Cars '99: Computer Assisted Radiology and Surgery = Int Congr Ser Cars '99: Computer Assisted Radiology and Surgery = Int. Congr. Ser. Car Safety 2007: Innovative Occupant and Partner Crash Protection = Vdi Bericht Car Safety 2007: Innovative Occupant and Partner Crash Protection = Vdi. Bericht. Carta economica regional : CER = Carta Econ Reg Carta informativa (Asociacion Demografica Salvadorena) = Carta Inf Carter Lecture Series = Carter Lecture Ser Carter Lecture Series = Carter Lecture Ser. Cartesian Impedance Control of Redundant and Flexible-joint Robots = Springer Trac Adv Ro Cartesian Impedance Control of Redundant and Flexible-joint Robots = Springer. Trac. Adv. Ro. Cartographic Design: Theoretical and Practical Perspectives = Int W Geogr Ser Cartographic Design: Theoretical and Practical Perspectives = Int. W. Geogr. Ser. Cartographic Journal = Cartogr J Cartographic Journal = Cartogr. J. Cartographies of The Mind: Philosophy and Psychology in Intersection = Stud Brain Mind Cartographies of The Mind: Philosophy and Psychology in Intersection = Stud. Brain. Mind. Cartography and Geographic Information Science = Cartogr Geogr Inf Sc Cartography and Geographic Information Science = Cartogr. Geogr. Inf. Sc. Cartography and Geographic Information Systems = Cartogr Geogr Inform Cartography and Geographic Information Systems = Cartogr. Geogr. Inform. Carus Mathematical Monographs = Carus Math. Monogr. Caryologia = Caryologia Cas: 2009 International Semiconductor Conference, Vols 1 and 2, Proceedings = Int Semiconduct Con Cas: 2009 International Semiconductor Conference, Vols 1 and 2, Proceedings = Int. Semiconduct. Con. Casabella = Casabella Casa de la mujer = Casa Mujer Casa De Las Americas = Casa Americas Casafa Report Series = Casafa Rep Casafa Report Series = Casafa Rep. Casa Monographs = Casa Monogr Casa Monographs = Casa Monogr. Cas - Cern Accelerator School - Cyclotrons, Linacs and Their Applications = Cern Report Cas - Cern Accelerator School - Cyclotrons, Linacs and Their Applications = Cern Report. Cas - Cern Accelerator School, Fifth Advanced Accelerator Physics Course, Vol 1 = Cern Report Cas - Cern Accelerator School, Fifth Advanced Accelerator Physics Course, Vol 1 = Cern Report. Cas - Cern Accelerator School : Fourth Advanced Accelerator Physics Course = Cern Report Cas - Cern Accelerator School : Fourth Advanced Accelerator Physics Course = Cern Report. Cas - Cern Accelerator School - Magnetic Measurement and Alignment = Cern Report Cas - Cern Accelerator School - Magnetic Measurement and Alignment = Cern Report. C A S Cern Accelerator School : Power Converters for Particles Accelerators = Cern Report C A S Cern Accelerator School : Power Converters for Particles Accelerators = Cern Report. Cas - Cern Accelerator School: Superconductivity in Particle Accelerators, Proceedings = Cern Report Cas - Cern Accelerator School: Superconductivity in Particle Accelerators, Proceedings = Cern Report. C A S Cern Accelerator School : Synchrotron Radiation and Free Electron Lasers = Cern Report C A S Cern Accelerator School : Synchrotron Radiation and Free Electron Lasers = Cern Report. C A S Cern Accelerator School Third Advanced Accelerator Physics Course = Cern Report C A S Cern Accelerator School Third Advanced Accelerator Physics Course = Cern Report. Cascom: Intelligent Service Coordination in The Semantic Web = Whitestein Ser Softw Cascom: Intelligent Service Coordination in The Semantic Web = Whitestein. Ser. Softw. Case and comment = Case Comment Case and Linking in Language Comprehension: Evidence From German = Stud Theor Psycholin Case and Linking in Language Comprehension: Evidence From German = Stud. Theor. Psycholin. Case Based Design: Applications in Process Engineering = Stud Comput Intell Case Based Design: Applications in Process Engineering = Stud. Comput. Intell. Case-based Reasoning On Images and Signals = Stud Comput Intell Case-based Reasoning On Images and Signals = Stud. Comput. Intell. Case-based Reasoning Research and Development, 18th International Conference On Case-based Reasoning, Iccbr 2010 = Lect Notes Artif Int Case-based Reasoning Research and Development, 18th International Conference On Case-based Reasoning, Iccbr 2010 = Lect. Notes. Artif. Int. Case-based Reasoning Research and Development = Lect Notes Artif Int Case-based Reasoning Research and Development = Lect. Notes. Artif. Int. Case-based Reasoning Research and Development, Proceedings = Lect Notes Artif Int Case-based Reasoning Research and Development, Proceedings = Lect. Notes. Artif. Int. Case-based Reasoning Research and Development, Proceedings = Lect Notes Comput Sc Case-based Reasoning Research and Development, Proceedings = Lect. Notes. Comput. Sc. Casebook of Ethical Challenges in Neuropsychology = Stud Neuropsych Dev Casebook of Ethical Challenges in Neuropsychology = Stud. Neuropsych. Dev. Case-by-case Privatization in The Russian Federation = World B Dis Case-by-case Privatization in The Russian Federation = World. B. Dis. Cased-based Guide to Clinical Endocrinology = Contemp Endocrinol S Cased-based Guide to Clinical Endocrinology = Contemp. Endocrinol. S. Case for Mars 111 : Strategies for Exploration - Technical = Sci Tech Case for Mars 111 : Strategies for Exploration - Technical = Sci. Tech. Case for Mars Vi: Making Mars An Affordable Destination = Sci Tech Case for Mars Vi: Making Mars An Affordable Destination = Sci. Tech. Case for Multinational Federalism: Beyond The All-encompassing Nation = Routl Ser Fed Stud Case for Multinational Federalism: Beyond The All-encompassing Nation = Routl. Ser. Fed. Stud. Cases and Strategies for Preventive Action = Prevent Action Rep Cases and Strategies for Preventive Action = Prevent. Action Rep. Cases in Holistic Ministry = Cas Hol Min Cases in Holistic Ministry = Cas. Hol. Min. Cases 'n' Places: Global Cases in Educational and Performance Technology = Educ Des Tech Know Cases 'n' Places: Global Cases in Educational and Performance Technology = Educ. Des. Tech. Know. Case Studies for Fatigue Education = Am Soc Test Mater Case Studies for Fatigue Education = Am. Soc. Test. Mater. Case Studies in Environmental Archaeology, Second Edition = Interd Contrib Arch Case Studies in Environmental Archaeology, Second Edition = Interd. Contrib. Arch. Case Studies in Food Engineering: Learning From Experience = Food Eng Ser Case Studies in Food Engineering: Learning From Experience = Food Eng. Ser. Case Studies in Food Product Development = Woodhead Food Ser Case Studies in Food Product Development = Woodhead. Food Ser. Case studies in health administration = Case Stud Health Adm Case Studies in Health Administration = Case Stud. Health Adm. Case Studies in Language Curriculum Design: Concepts and Approaches in Action Around The World = Esl Appl Ling Prof Case Studies in Language Curriculum Design: Concepts and Approaches in Action Around The World = Esl. Appl. Ling. Prof. Case Studies in Novel Food Processing Technologies: Innovations in Processing, Packaging, and Predictive Modelling = Woodhead Publ Food S Case Studies in Novel Food Processing Technologies: Innovations in Processing, Packaging, and Predictive Modelling = Woodhead. Publ. Food S. Case Studies in Participatory Irrigation Management = Wbi Learn Resour Ser Case Studies in Participatory Irrigation Management = Wbi. Learn. Resour. Ser. Case Western Reserve journal of international law = Case West Reserve J Int Law Case Western Reserve Journal of International Law = Case West R J Int L Case Western Reserve Journal of International Law = Case West. R. J. Int. L. Case Western Reserve law review = Case West Reserve Law Rev Casi Transactions-canadian Aeronautics and Space Institute = Casi Trans Casi Transactions-canadian Aeronautics and Space Institute = Casi Trans. C A S I Transactions = C A S I Trans C A S I Transactions = C A S I Trans. Casl Reference Manual: The Complete Documentation of The Common Algebraic Specification Language = Lect Notes Comput Sc Casl Reference Manual: The Complete Documentation of The Common Algebraic Specification Language = Lect. Notes. Comput. Sc. Casl User Manual = Lect Notes Comput Sc Casl User Manual = Lect. Notes. Comput. Sc. Casopis ceskeho lekarnictva = Cas Cesk Lek Casopis ceskoslovenskych veterinaru = Cas Cesk Vet Casopis lekaru ceskych = Cas Lek Cesk Casopis Lekaru Ceskych=Cas Lek Cesk;; Casopis Lekaru Ceskych = Cas. Lek. Cesk. Casopis Matice moravske (1968) = Cas Matice Moravske Casopis Narodniho musea = Cas Nar Muz Casopis za zgodovino in narodopisje. Review for history and ethnography = Cas Zgodovino Narodop Cas Papers = Cas Paper Cas Papers = Cas Paper. Caspian Sea: A Quest for Environmental Security = Nato Asi 2 Caspian Sea: A Quest for Environmental Security = Nato. Asi. 2. Cass'98: Proceedings of The 43rd Annual Corporate Aviation Safety Seminar - Safety Outside The Box = P Corp Aviat Saf Sem Cass'98: Proceedings of The 43rd Annual Corporate Aviation Safety Seminar - Safety Outside The Box = P. Corp. Aviat. Saf. Sem. Cassell Education Series = Cassell Ed Cassell Education Series = Cassell Ed. Cassini/huygens: A Mission to The Saturnian Systems = P Soc Photo-opt Ins Cassini/huygens: A Mission to The Saturnian Systems = P. Soc. Photo-opt. Ins. Cassius Dio Und Die Romische Republik = Beitr Altertumskunde Cassius Dio Und Die Romische Republik = Beitr. Altertumskunde. Cass Military Studies = Cass Military Studie Cass Military Studies = Cass Military Studie. Cass Military Studies = Cass Mil Stud Cass Military Studies = Cass Mil. Stud. Cass Series-naval Policy and History = Cass Ser Nav Pol His Cass Series-naval Policy and History = Cass Ser. Nav. Pol. His. Cass Series-naval Policy and History = Cass Ser Nav Policy Cass Series-naval Policy and History = Cass Ser. Nav. Policy Cass Series On Peacekeeping = Cass Ser Peacekeepin Cass Series On Peacekeeping = Cass Ser. Peacekeepin. Cass Series On Political Violence = Cass Ser Polit Viole Cass Series On Political Violence = Cass Ser. Polit. Viole. Cass Series : Studies in Intelligence = Cass Ser Stud Intell Cass Series : Studies in Intelligence = Cass Ser. Stud. Intell. Castanea = Castanea C(asterisk)-algebras and Elliptic Theory Ii = Trends Math C(asterisk)-algebras and Elliptic Theory Ii = Trends. Math. Casting Technology in Engine Design - Requirements in The Automotive Industry = Vdi Bericht Casting Technology in Engine Design - Requirements in The Automotive Industry = Vdi. Bericht. Cataclysmic Variables and Related Objects = Astrophys Space Sc L Cataclysmic Variables and Related Objects = Astrophys. Space. Sc. L. Cataclysmic Variables = Astrophys Space Sc L Cataclysmic Variables = Astrophys. Space. Sc. L. Catalan's Conjecture = Universitext Catalan's Conjecture = Universitext. Catalan Studies: Translations and Criticism = Catalan Stud Catalan Studies: Translations and Criticism = Catalan Stud. Catalogue and Its Users = Acta Bibl Upsal Catalogue and Its Users = Acta. Bibl. Upsal. Catalogue of Oriental Coins in the British Museum I--X = BMCOR Catalogue of the Greek Coins in the British Museums = BMCGreekCoins Catalysis and Adsorption By Zeolites = Stud Surf Sci Catal Catalysis and Adsorption By Zeolites = Stud. Surf. Sci. Catal. Catalysis and Automotive Pollution Control Iii = Stud Surf Sci Catal Catalysis and Automotive Pollution Control Iii = Stud. Surf. Sci. Catal. Catalysis and Automotive Pollution Control Ii = Stud Surf Sci Catal Catalysis and Automotive Pollution Control Ii = Stud. Surf. Sci. Catal. Catalysis and Automotive Pollution Control Iv = Stud Surf Sci Catal Catalysis and Automotive Pollution Control Iv = Stud. Surf. Sci. Catal. Catalysis: An Integrated Approach, Second Ed. = Stud Surf Sci Catal Catalysis: An Integrated Approach, Second Ed. = Stud. Surf. Sci. Catal. Catalysis By Metal Complexes = Catal Met Complexes Catalysis By Metal Complexes = Catal. Met. Complexes Catalysis By Metals and Alloys = Stud Surf Sci Catal Catalysis By Metals and Alloys = Stud. Surf. Sci. Catal. Catalysis By Microporous Materials = Stud Surf Sci Catal Catalysis By Microporous Materials = Stud. Surf. Sci. Catal. Catalysis By Unique Metal Ion Structures in Solid Matrices: From Science to Application = Nato Sci Ser Ii-math Catalysis By Unique Metal Ion Structures in Solid Matrices: From Science to Application = Nato. Sci. Ser. Ii-math. Catalysis By Unique Metal Ion Structures in Solid Matrices: From Science to Application = Nato Sci Ser Ii Math Catalysis By Unique Metal Ion Structures in Solid Matrices: From Science to Application = Nato. Sci. Ser. Ii. Math. Catalysis Communications = Catal Commun Catalysis Communications = Catal. Commun. Catalysis in Industry = Catal. Ind. Catalysis in Polymer Synthesis = Acs Sym Ser Catalysis in Polymer Synthesis = Acs. Sym. Ser. Catalysis in The Refining of Fischer-tropsch Syncrude = Rsc Catal Ser Catalysis in The Refining of Fischer-tropsch Syncrude = Rsc. Catal. Ser. Catalysis Letters = Catal Lett Catalysis Letters = Catal. Lett. Catalysis of Organic Reactions = Chem Ind-ser Catalysis of Organic Reactions = Chem. Ind-ser. Catalysis of Organic Reactions = Chem Indust Catalysis of Organic Reactions = Chem. Indust. Catalysis of Organic Reactions / = Chem Indust Catalysis of Organic Reactions / = Chem. Indust. Catalysis Reviews = Cataly Rev Catalysis Reviews = Cataly. Rev. Catalysis Reviews-science and Engineering = Catal Rev Catalysis Reviews-science and Engineering = Catal. Rev. Catalysis Reviews - Science and Engineering = Catal. Rev. - Sci. Eng. Catalysis Reviews - Science and Engineering = Catal. Rev. Sci. Eng. Catalysis Science & Technology = Catal Sci Technol Catalysis Science & Technology = Catal. Sci. Technol. Catalysis Surveys from Asia = Catal. Surv. Asia Catalysis Surveys From Asia = Catal Surv Asia Catalysis Surveys From Asia = Catal. Surv. Asia Catalysis Surveys from Japan = Catal. Surv. Jpn. Catalysis Surveys From Japan = Catal Surv Jpn Catalysis Surveys From Japan = Catal. Surv. Jpn. Catalysis Today = Catal Today Catalysis Today = Catal. Today Catalysis, Vol 18 = Spr-catal Catalysis, Vol 18 = Spr-catal. Catalysis, Vol 19 = Spr-catal Catalysis, Vol 19 = Spr-catal. Catalysis, Vol 20 = Spr-catal Catalysis, Vol 20 = Spr-catal. Catalysis, Vol 21 = Spr-catal Catalysis, Vol 21 = Spr-catal. Catalyst Deactivation 1991 = Stud Surf Sci Catal Catalyst Deactivation 1991 = Stud. Surf. Sci. Catal. Catalyst Deactivation 1994 = Stud Surf Sci Catal Catalyst Deactivation 1994 = Stud. Surf. Sci. Catal. Catalyst Deactivation 1997 = Stud Surf Sci Catal Catalyst Deactivation 1997 = Stud. Surf. Sci. Catal. Catalyst Deactivation 1999 = Stud Surf Sci Catal Catalyst Deactivation 1999 = Stud. Surf. Sci. Catal. Catalyst Deactivation 2001, Proceedings = Stud Surf Sci Catal Catalyst Deactivation 2001, Proceedings = Stud. Surf. Sci. Catal. Catalyst Design for Tailor-made Polyolefins = Stud Surf Sci Catal Catalyst Design for Tailor-made Polyolefins = Stud. Surf. Sci. Catal. Catalyst for Upgrading Heavy Petroleum Feeds = Stud Surf Sci Catal Catalyst for Upgrading Heavy Petroleum Feeds = Stud. Surf. Sci. Catal. Catalysts in Petroleum Refining 1989 = Stud Surf Sci Catal Catalysts in Petroleum Refining 1989 = Stud. Surf. Sci. Catal. Catalysts in Petroleum Refining and Petrochemical Industries 1995 = Stud Surf Sci Catal Catalysts in Petroleum Refining and Petrochemical Industries 1995 = Stud. Surf. Sci. Catal. Catalytic Activation and Functionalisation of Light Alkanes = Nato Asi 3 High Tech Catalytic Activation and Functionalisation of Light Alkanes = Nato. Asi. 3. High. Tech. Catalytic Antibodies = Chem Immunol Catalytic Antibodies = Chem. Immunol. Catalytic Antibodies = Ciba F Symp Catalytic Antibodies = Ciba. F. Symp. Catalytic Carbonylation Reactions = Top Organometal Chem Catalytic Carbonylation Reactions = Top. Organometal. Chem. Catalytic Control of Air Pollution = Acs Sym Ser Catalytic Control of Air Pollution = Acs. Sym. Ser. Catalytic Hydroprocessing of Petroleum and Distillates = Chem Indust Catalytic Hydroprocessing of Petroleum and Distillates = Chem. Indust. Catalytic Microreactors for Portable Power Generation = Springer Theses-reco Catalytic Microreactors for Portable Power Generation = Springer. Theses-reco. Catalytic Science and Technology = Cat Sci Tec Catalytic Science and Technology = Cat. Sci. Tec. Catalytic Science and Technology, Vol 1 = Cat Sci Tec Catalytic Science and Technology, Vol 1 = Cat. Sci. Tec. Catalytic Selective Oxidation = Acs Sym Ser Catalytic Selective Oxidation = Acs. Sym. Ser. Cataract and Refractive Surgery: Progress Iii = Essent Ophthalmol Cataract and Refractive Surgery: Progress Iii = Essent. Ophthalmol. Cataract Epidemiology = Dev Ophthalmol Cataract Epidemiology = Dev. Ophthalmol. Cataract Pathogenesis: Results of Epidemiological Studies and Experimental Models = Dev Ophthalmol Cataract Pathogenesis: Results of Epidemiological Studies and Experimental Models = Dev. Ophthalmol. Cataracts: Causes, Symptoms, and Surgery = Eye Vis Res Dev Cataracts: Causes, Symptoms, and Surgery = Eye. Vis. Res. Dev. Catastrophe Modeling: A New Approach to Managing Risk = Huebner Int Ser Risk Catastrophe Modeling: A New Approach to Managing Risk = Huebner. Int. Ser. Risk Catastrophic Events and Mass Extinctions: Impacts and Beyond = Geol S Am S Catastrophic Events and Mass Extinctions: Impacts and Beyond = Geol. S. Am. S. Catastrophic Events and Mass Extinctions: Impacts and Beyond = Geol Soc Am Spec Pap Catastrophic Events and Mass Extinctions: Impacts and Beyond = Geol. Soc. Am. Spec. Pap. Catatonia in Autism Spectrum Disorders = Int Rev Neurobiol Catatonia in Autism Spectrum Disorders = Int. Rev. Neurobiol. Catch and Release in Marine Recreational Fisheries = Am Fish S S Catch and Release in Marine Recreational Fisheries = Am. Fish. S. S. Catching Language: The Standing Challenge of Grammar Writing = Trends Linguist-stud Catching Language: The Standing Challenge of Grammar Writing = Trends. Linguist-stud. Catching The Perfect Wave: Adaptive Optics and Interferometry in The 21st Century = Astr Soc P Catching The Perfect Wave: Adaptive Optics and Interferometry in The 21st Century = Astr. Soc. P. Catchment2coast: A Systems Approach to Coupled River-coastal Ecosystem Science and Management, Vol 2 = Deltares Sel Ser Catchment2coast: A Systems Approach to Coupled River-coastal Ecosystem Science and Management, Vol 2 = Deltares. Sel. Ser. Catecholamine Research: From Molecular Insights to Clinical Medicine = Adv Behav Biol Catecholamine Research: From Molecular Insights to Clinical Medicine = Adv. Behav. Biol. Categorical Decomposition Techniques in Algebraic Topology = Prog Math Categorical Decomposition Techniques in Algebraic Topology = Prog. Math. Categorical Perspectives = Trends Math Categorical Perspectives = Trends. Math. Categories in Algebra, Geometry and Mathematical Physics = Contemp Math Categories in Algebra, Geometry and Mathematical Physics = Contemp. Math. Categories in Use = Psychol Learn Motiv Categories in Use = Psychol. Learn. Motiv. Categorization By Humans and Machines = Psychol Learn Motiv Categorization By Humans and Machines = Psychol. Learn. Motiv. Category Theory and Computer Science // = Lect Notes Comput Sc Category Theory and Computer Science // = Lect. Notes. Comput. Sc. Category Theory = Lect Notes Math Category Theory = Lect. Notes. Math. Catena = Catena Catena Supplement = Catena Supp Catena Supplement = Catena Supp. Catena supplement = Catena Suppl Catering and Health = Cater. Health Catering & health = Cater Health Catfish 2000: Proceedings of The International Ictalurid Symposium = Am Fish S S Catfish 2000: Proceedings of The International Ictalurid Symposium = Am. Fish. S. S. Catheter-based Sensing and Imaging Technology = P Soc Photo-opt Ins Catheter-based Sensing and Imaging Technology = P. Soc. Photo-opt. Ins. Catheterization and cardiovascular diagnosis = Cathet Cardiovasc Diagn Catheterization and Cardiovascular Diagnosis=Cathet Cardiovasc Diagn;; Catheterization and Cardiovascular Diagnosis = Cathet. Cardiovasc. Diagn. Catheterization and Cardiovascular Diagnosis = Catheter Cardio Diag Catheterization and Cardiovascular Diagnosis = Catheter. Cardio. Diag. Catheterization and Cardiovascular Interventions = Catheter Cardio Inte Catheterization and Cardiovascular Interventions = Catheter. Cardio. Inte. Catheterization and Cardiovascular Interventions = Catheter. Cardiovasc. Interv. Catheterization and cardiovascular interventions : official journal of the Society for Cardiac Angiography & Interventions = Catheter Cardiovasc Interv Catheters in Cardiology and Angiology = Erg Exp Med Catheters in Cardiology and Angiology = Erg. Exp. Med. Cathodic Arcs: From Fractal Spots to Energetic Condensation = Springer Ser Atom Op Cathodic Arcs: From Fractal Spots to Energetic Condensation = Springer. Ser. Atom. Op. Catholic Biblical Quarterly = Cath Biblical Quart Catholic Biblical Quarterly = Cath. Biblical Quart. Catholic Higher Education in The 1960s: Issues of Identity, Issues of Governance = Res Relig Educ Catholic Higher Education in The 1960s: Issues of Identity, Issues of Governance = Res. Relig. Educ. Catholic Historical Review = Cathol Hist Rev Catholic Historical Review = Cathol. Hist. Rev. Catholic Historical Review = CHR Catholic hospital = Cathol Hosp Catholic Hospital = Cathol. Hosp. Catholicism and Catholicity: Eucharistic Communities in Historical and Contemporary Perspectives = Direct Mod Theol Ser Catholicism and Catholicity: Eucharistic Communities in Historical and Contemporary Perspectives = Direct. Mod. Theol. Ser. Catholicism in Modern Italy: Religion, Society and Politics Since 1861 = Christ Soc Mod World Catholicism in Modern Italy: Religion, Society and Politics Since 1861 = Christ. Soc. Mod. World. Catholic Nurse = Cathol. Nurse Catholic School Journal = Cathol School J Catholic School Journal = Cathol. School J. Catholic standard (Washington, D.C.) = Cathol Stand Catholic Studies in Bioethics = Cathol Stud Bioethic Catholic Studies in Bioethics = Cathol. Stud. Bioethic. Catholic University Law Review = Cathol U Law Rev Catholic University Law Review = Cathol. U. Law Rev. Catholic University law review = Cathol Univers Law Rev Catholic University of America Law Review = Cathol U Law Rev Catholic University of America Law Review = Cathol. U. Law Rev. Catholic update = Cathol Update Catholic woman = Cathol Woman Catholic Woman = P Wethers I Catholic Woman = P. Wethers. I. Catholic world = Cathol World Catholic Writer = P Wethers I Catholic Writer = P. Wethers. I. Cationic Polymerization = Acs Sym Ser Cationic Polymerization = Acs. Sym. Ser. Cato Journal=Cato J. Cato Journal = Cato J Cato Journal = Cato J. Cattech = Cattech Cattle in The Mediterranean Area = Eaap Public Cattle in The Mediterranean Area = Eaap. Public. Cattle Practice = Cattle Pract Cattle Practice = Cattle Pract. Catullus and Sirmio = Grafostorie P D Catullus and Sirmio = Grafostorie. P. D. Caucasus Region Political Economic and Security Issues = Caucas Reg Polit Ec Caucasus Region Political Economic and Security Issues = Caucas. Reg. Polit. Ec. Cauchy Problem in General Relativity = Esi Lect Math Phys Cauchy Problem in General Relativity = Esi. Lect. Math. Phys. Cauchy's Cours D'analyse = Sourc Stud Hist Math Cauchy's Cours D'analyse = Sourc. Stud. Hist. Math. Causal Cognition = Symp Syssen Fdn Causal Cognition = Symp. Syssen. Fdn. Causality and Causal Modelling in The Social Sciences: Measuring Variations = Methods Ser Causality and Causal Modelling in The Social Sciences: Measuring Variations = Methods. Ser. Causality and Locality in Modern Physics = Fund Theor Causality and Locality in Modern Physics = Fund. Theor. Causality and Locality in Modern Physics = Fund Theor Phys Causality and Locality in Modern Physics = Fund. Theor. Phys. Causality, Meaningful Complexity and Embodied Cognition = Theory Decis Lib A Causality, Meaningful Complexity and Embodied Cognition = Theory. Decis. Lib. A. Causal Learning = Psychol Learn Motiv Causal Learning = Psychol. Learn. Motiv. Causation and Laws of Nature = Aust S Hist Causation and Laws of Nature = Aust. S. Hist. Causation and Laws of Nature = Rout Stud Contemp Ph Causation and Laws of Nature = Rout. Stud. Contemp. Ph. Causation and Modern Philosophy = Routl Adv Hist Philo Causation and Modern Philosophy = Routl. Adv. Hist. Philo. Causation and Prevention of Human Cancer = Dev Oncol Causation and Prevention of Human Cancer = Dev. Oncol. Causation, Coherence, and Concepts: A Collection of Essays = Bost Stud Philos Sci Causation, Coherence, and Concepts: A Collection of Essays = Bost. Stud. Philos. Sci. Cause 93 - Managing Information Technology As A Catalyst of Change = P Cause Ann Cause 93 - Managing Information Technology As A Catalyst of Change = P. Cause Ann. Cause 94 - New Opportunities for Partnering = P Cause Ann Cause 94 - New Opportunities for Partnering = P. Cause Ann. Cause 95 - Realizing The Potential of Information Resources: Information, Technology, and Services = P Cause Ann Cause 95 - Realizing The Potential of Information Resources: Information, Technology, and Services = P. Cause Ann. Cause National Conf = Cause Nat C Cause National Conf = Cause Nat. C. Causes and Consequences of Accelerating Tree Growth in Europe = Eur Forest Inst Proc Causes and Consequences of Accelerating Tree Growth in Europe = Eur. Forest. Inst. Proc. Causes and Consequences of International Conflict = Contemp Secur Stud Causes and Consequences of International Conflict = Contemp. Secur. Stud. Cave Biology: Life in Darkness = Ecol Biodivers Cons Cave Biology: Life in Darkness = Ecol. Biodivers. Cons. Cbbi-10: Proceedings of The 10th International Workshop On Ceramic Breeder Blanket Interactions = Fzka Tech Umw Wis B Cbbi-10: Proceedings of The 10th International Workshop On Ceramic Breeder Blanket Interactions = Fzka. Tech. Umw. Wis. B. Cbe-life Sciences Education = Cbe-life Sci Educ Cbe-life Sciences Education = Cbe-life Sci. Educ. CBE life sciences education = CBE Life Sci Educ CBE Life Sciences Education = CBE Life Sci. Educ. CBE views : official publication of the Council of Biology Editors = CBE Views Cbm Physics Book: Compressed Baryonic Matter in Laboratory Experiments = Lect Notes Phys Cbm Physics Book: Compressed Baryonic Matter in Laboratory Experiments = Lect. Notes. Phys. Cbms 2003: 16th Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy Cbms 2003: 16th Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. CBMS Issues in Mathematics Education = CBMS Issues Math. Ed. Cbms-nsf Regional Conference Series in Applied Mathematics = Cbms-nsf Ma Cbms-nsf Regional Conference Series in Applied Mathematics = Cbms-nsf Ma. CBMS-NSF Regional Conference Series in Applied Mathematics = CBMS-NSF Regional Conf. Ser. in Appl. Math. CBMS Regional Conference Series in Mathematics = CBMS Regional Conf. Ser. in Math. Cbs Laboratory Manual Series = Cbs Lab Manual Ser Cbs Laboratory Manual Series = Cbs Lab. Manual Ser. CC AI = CC AI Ccamlr Science = Ccamlr Sci Ccamlr Science = Ccamlr Sci. CCAR journal (New York, N.Y. : 1991) = CCAR J Ccc 2006: Twenty-first Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput Ccc 2006: Twenty-first Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. Ccd Precision Photometry Workshop = Astr Soc P Ccd Precision Photometry Workshop = Astr. Soc. P. Ccgt Plant Components: Development and Reliability = Imeche Sem Ccgt Plant Components: Development and Reliability = Imeche. Sem. Cch Working Papers = Cch Work Pap Cch Working Papers = Cch Work. Pap. CCICA annual : publication of the Catholic Commission on Intellectual and Cultural Affairs = CCICA Annual CCL family foundations = CCL Family Found Ccnc: 2005 2nd Ieee Consumer Communications and Networking Conference = Consum Comm Network Ccnc: 2005 2nd Ieee Consumer Communications and Networking Conference = Consum. Comm. Network. CCQ. Critical care quarterly = CCQ CCQ: Critical Care Quarterly = CCQ. Ccte Studies = Ccte Stud Ccte Studies = Ccte Stud. Ccte Studies, Vol 54, September 1989 = Ccte Stud Ccte Studies, Vol 54, September 1989 = Ccte Stud. Ccte Studies, Vol 55 = Ccte Stud Ccte Studies, Vol 55 = Ccte Stud. Ccte Studies, Vol 56 = Ccte Stud Ccte Studies, Vol 56 = Ccte Stud. Ccte Studies, Vol 60, 1995 = Ccte Stud Ccte Studies, Vol 60, 1995 = Ccte Stud. Ccte Studies, Vol 61, September 1996 = Ccte Stud Ccte Studies, Vol 61, September 1996 = Ccte Stud. Ccte Studies, Vol 62, September 1997 = Ccte Stud Ccte Studies, Vol 62, September 1997 = Ccte Stud. Ccte Studies, Vol 63, 1998 = Ccte Stud Ccte Studies, Vol 63, 1998 = Ccte Stud. Cd14 in The Inflammatory Response = Chem Immunol Cd14 in The Inflammatory Response = Chem. Immunol. Cd4 Molecule = Curr Top Microbiol Cd4 Molecule = Curr. Top. Microbiol. Cd4-pluscd25-plus Regulatory T Cells: Origin, Function and Therapeutic Potential = Curr Top Microbiol Cd4-pluscd25-plus Regulatory T Cells: Origin, Function and Therapeutic Potential = Curr. Top. Microbiol. Cd5 B Cells in Development and Disease = Ann Ny Acad Sci Cd5 B Cells in Development and Disease = Ann. Ny. Acad. Sci. CDA journal California Dental Association = CDA J CDA Journal = CDA J. CDC AIDS weekly = CDC AIDS Wkly Cddea '06: Proceedings of The Conference On Differential and Difference Equations and Applications 2006 = Tatra Mt Math Publ Cddea '06: Proceedings of The Conference On Differential and Difference Equations and Applications 2006 = Tatra. Mt. Math. Publ. Cdiac Communications = Cdiac Commun Cdiac Communications = Cdiac Commun. Cdma Radio With Repeaters = Inform Tech Trans Pr Cdma Radio With Repeaters = Inform. Tech. Trans. Pr. Cdna Libraries: Methods and Applications = Methods Mol Biol Cdna Libraries: Methods and Applications = Methods Mol. Biol. Cdna Preparation and Characterization = Method Enzymol Cdna Preparation and Characterization = Method. Enzymol. CDR (London, England : Review) = CDR (Lond Engl Rev) CDR (London, England : Weekly) = CDR (Lond Engl Wkly) CDR (London, Review) = CDR (Lond. Engl. Rev.) CDR (London, Weekly) = CDR (Lond. Engl. Wkly.) Cd-rom Professional = Cd-rom Prof Cd-rom Professional = Cd-rom Prof. CDS review = CDS Rev CDS Review = CDS Rev. CDT digest = CDT Dig CDT Digest = CDT Dig. Cea'09: Proceedings of The 3rd Wseas International Conference On Computer Engineering and Applications = Ele Com Eng Cea'09: Proceedings of The 3rd Wseas International Conference On Computer Engineering and Applications = Ele. Com. Eng. Cea Critic = Cea Critic Cebaf 1992 Summer Workshop = Aip Conf Proc Cebaf 1992 Summer Workshop = Aip. Conf. Proc. Cec'02: Proceedings of The 2002 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee C Evol Computat Cec'02: Proceedings of The 2002 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee. C. Evol. Computat. Cec: 2003 Congress On Evolutionary Computation, Vols 1-4, Proceedings = Ieee C Evol Computat Cec: 2003 Congress On Evolutionary Computation, Vols 1-4, Proceedings = Ieee. C. Evol. Computat. Cec2004: Proceedings of The 2004 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee C Evol Computat Cec2004: Proceedings of The 2004 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee. C. Evol. Computat. CEDAC. Bulletin. Centre d'études et de documentation archéologique de la conservation de Cartage = CEDAC Cedefop Document = Cedefop Doc Cedefop Document = Cedefop Doc. CEDPA network (Online) = CEDPA Netw CEDPA world wide. Centre for Development and Population Activities = CEDPA World Wide Cefaclor : Into The Next Decade = Roy Soc Med Int Cong Cefaclor : Into The Next Decade = Roy. Soc. Med. Int. Cong. Ce Focus = CE Focus CE Focus = CE Focus Ceidp: 2009 Annual Report Conference On Electrical Insulation and Dielectric Phenomena = C Elect Insul Diel P Ceidp: 2009 Annual Report Conference On Electrical Insulation and Dielectric Phenomena = C. Elect. Insul. Diel. P. Celebrating Ethnicity and Nation = Eur Stud Amer Hist Celebrating Ethnicity and Nation = Eur. Stud. Amer. Hist. Celebrating Minority Professionals in Forestry and Natural Resources Conservation: Proceedings of The Symposium On The Tenth Anniversary of The 2 + 2 Joint Degree Program in Forestry and Natural Resources Conservation = Usda So For Celebrating Minority Professionals in Forestry and Natural Resources Conservation: Proceedings of The Symposium On The Tenth Anniversary of The 2 + 2 Joint Degree Program in Forestry and Natural Resources Conservation = Usda. So. For. Celebration of The Mathematical Legacy of Raoul Bott = Crm Proc & Lect Note Celebration of The Mathematical Legacy of Raoul Bott = Crm. Proc. &. Lect. Note. Celebrity and Glamour in Contemporary Russia: Shocking Chic = Basees-rout Ser Russ Celebrity and Glamour in Contemporary Russia: Shocking Chic = Basees-rout. Ser. Russ. Celestial Mechanics = Celestial Mech Celestial Mechanics = Celestial Mech. Celestial Mechanics & Dynamical Astronomy = Celestial Mech. Dynam. Astronom. Celestial Mechanics & Dynamical Astronomy = Celest Mech Dyn Astr Celestial Mechanics & Dynamical Astronomy = Celest. Mech. Dyn. Astr. Cell Activation and Apoptosis in Hiv Infection = Adv Exp Med Biol Cell Activation and Apoptosis in Hiv Infection = Adv. Exp. Med. Biol. Cell adhesion and communication = Cell Adhes Commun Cell Adhesion and Communication=Cell Adhes Commun;; Cell Adhesion and Communication = Cell Adhes Commun Cell Adhesion and Communication = Cell Adhes. Commun. Cell Adhesion and Human Disease = Ciba F Symp Cell Adhesion and Human Disease = Ciba. F. Symp. Cell Adhesion Molecules in Health and Disease = Falk Symp Cell Adhesion Molecules in Health and Disease = Falk. Symp. Cell Adhesion Molecules = Pez Fdn Sym Cell Adhesion Molecules = Pez. Fdn. Sym. Cell and Biotissue Optics: Applications in Laser Diagnostics and Therapy = P Soc Photo-opt Ins Cell and Biotissue Optics: Applications in Laser Diagnostics and Therapy = P. Soc. Photo-opt. Ins. Cell and Molecular Biology of Artemia Development = Nato Adv Sci I A-lif Cell and Molecular Biology of Artemia Development = Nato. Adv. Sci. I. A-lif. Cell and Molecular Biology of Pancreatic Carcinoma: Recent Developments in Research and Experimental Therapy = Ann Ny Acad Sci Cell and Molecular Biology of Pancreatic Carcinoma: Recent Developments in Research and Experimental Therapy = Ann. Ny. Acad. Sci. Cell and Molecular Biology of The Testis = Front Endocrinol Cell and Molecular Biology of The Testis = Front. Endocrinol. Cell and Molecular Biology of Wood Formation = Exptl Biol Rev Cell and Molecular Biology of Wood Formation = Exptl. Biol. Rev. Cell and muscle motility = Cell Muscle Motil Cell and Muscle Motility = Cell Muscle Motil. Cell and tissue banking = Cell Tissue Bank Cell and Tissue Banking = Cell Tissue Bank Cell and Tissue Banking = Cell Tissue Bank. Cell and tissue kinetics = Cell Tissue Kinet Cell and Tissue Kinetics = Cell Tissue Kinet Cell and Tissue Kinetics = Cell Tissue Kinet. Cell and tissue research = Cell Tissue Res Cell and Tissue Research=Cell Tissue Res;; Cell and Tissue Research = Cell Tissue Res Cell and Tissue Research = Cell Tissue Res. Cell-based Biosensors: Principles and Applications = Eng Med Biol Cell-based Biosensors: Principles and Applications = Eng. Med. Biol. Cell-based Microarrays: Methods and Protocols = Methods Mol Biol Cell-based Microarrays: Methods and Protocols = Methods Mol. Biol. Cell Behaviour : Adhesion and Motility = Sym Soc Exp Biol Cell Behaviour : Adhesion and Motility = Sym. Soc. Exp. Biol. Cell Behaviour: Control and Mechanism of Motility = Biochem Soc Symp Cell Behaviour: Control and Mechanism of Motility = Biochem. Soc. Symp. Cell biochemistry and biophysics = Cell Biochem Biophys Cell Biochemistry and Biophysics=Cell Biochem Biophys;; Cell Biochemistry and Biophysics = Cell Biochem Biophys Cell Biochemistry and Biophysics = Cell Biochem. Biophys. Cell biochemistry and function = Cell Biochem Funct Cell Biochemistry and Function=Cell Biochem Funct;; Cell Biochemistry and Function = Cell Biochem Funct Cell Biochemistry and Function = Cell Biochem. Funct. Cell Biological Applications of Confocal Microscopy, Second Edition = Method Cell Biol Cell Biological Applications of Confocal Microscopy, Second Edition = Method. Cell Biol. Cell Biology and Membrane Transport Processes = Curr Top Membr Cell Biology and Membrane Transport Processes = Curr. Top. Membr. Cell Biology and Pathology of Myelin = Altschul Sy Cell Biology and Pathology of Myelin = Altschul. Sy. Cell biology and toxicology = Cell Biol Toxicol Cell Biology and Toxicology=Cell Biol Toxicol;; Cell Biology and Toxicology = Cell Biol Toxicol Cell Biology and Toxicology = Cell Biol. Toxicol. Cell biology education = Cell Biol Educ Cell biology international = Cell Biol Int Cell Biology International=Cell Biol Int;; Cell Biology International = Cell Biol Int Cell Biology International = Cell Biol. Int. Cell biology international reports = Cell Biol Int Rep Cell Biology International Reports = Cell Biol Int Rep Cell Biology International Reports = Cell Biol. Int. Rep. Cell Biology of Inositol Lipids and Phosphates = Biochem Soc Symp Cell Biology of Inositol Lipids and Phosphates = Biochem. Soc. Symp. Cell Biology of Metals and Nutrients = Plant Cell Monogr Cell Biology of Metals and Nutrients = Plant. Cell Monogr. Cell Biology of Plant and Fungal Tip Growth = Nato Sci Ser I Life Cell Biology of Plant and Fungal Tip Growth = Nato. Sci. Ser. I. Life. Cell Biology of Secretion = G Symp Endo Cell Biology of Secretion = G. Symp. Endo. Cell Biology of Stem Cells = Adv Exp Med Biol Cell Biology of Stem Cells = Adv. Exp. Med. Biol. Cell Biology of The Axon = Results Probl Cell D Cell Biology of The Axon = Results. Probl. Cell D. Cell Biology Research Progress = Cell Bio Res Prog Cell Biology Research Progress = Cell Bio. Res. Prog. Cell biology reviews : CBR = Cell Biol Rev Cell Biology Reviews = Cell Biol Rev Cell Biology Reviews = Cell Biol. Rev. Cell biophysics = Cell Biophys Cell Biophysics = Cell Biophys Cell Biophysics = Cell Biophys. Cell calcium = Cell Calcium Cell Calcium=Cell Calcium;; Cell Calcium = Cell Calcium Cell (Cambridge, MA, United States) = Cell (Cambridge, MA, U. S.) Cell=Cell;; Cell = Cell Cell-cell Interactions in The Release of Inflammatory Mediators = Adv Exp Med Biol Cell-cell Interactions in The Release of Inflammatory Mediators = Adv. Exp. Med. Biol. Cell & chromosome = Cell Chromosome Cell communication & adhesion = Cell Commun Adhes Cell Communication and Adhesion = Cell Commun Adhes Cell Communication and Adhesion = Cell Commun. Adhes. Cell communication and signaling : CCS = Cell Commun Signal Cell Communication and Signaling = Cell Commun Signal Cell Communication and Signaling = Cell Commun. Signal. Cell Culture Engineering = Adv Biochem Eng Biot Cell Culture Engineering = Adv. Biochem. Eng. Biot. Cell Culture Techniques = Neuromethods Cell Culture Techniques = Neuromethods. Cell Cycle and Development = Novart Fdn Symp Cell Cycle and Development = Novart. Fdn. Symp. Cell Cycle = Cell Cycle Cell Cycle = Cold Sh Q B Cell Cycle = Cold. Sh. Q. B. Cell Cycle Control = Method Enzymol Cell Cycle Control = Method. Enzymol. Cell Cycle Control = Methods Enzymol Cell Cycle Control = Methods. Enzymol. Cell Cycle Deregulation in Cancer = Contemp Cancer Res Cell Cycle Deregulation in Cancer = Contemp. Cancer Res. Cell cycle (Georgetown, Tex.) = Cell Cycle Cell Cycle in Development = Results Probl Cell D Cell Cycle in Development = Results. Probl. Cell D. Cell Cycle Regulation = N Hor Th Sk&b Ph Us Cell Cycle Regulation = N. Hor. Th. Sk&b. Ph. Us. Cell Cycle: Regulators, Targets, and Clinical Applications = Gwumc Dept Cell Cycle: Regulators, Targets, and Clinical Applications = Gwumc. Dept. Cell Cycle Synchronization: Methods and Protocols = Methods Mol Biol Cell Cycle Synchronization: Methods and Protocols = Methods Mol. Biol. Cell death and differentiation = Cell Death Differ Cell Death and Differentiation = Cell Death Differ Cell Death and Differentiation = Cell Death Differ. Cell Death & Disease = Cell Death Dis Cell Death & Disease = Cell Death Dis. Cell Determination During Hematopoiesis = Cell Bio Res Prog Cell Determination During Hematopoiesis = Cell Bio. Res. Prog. Cell Differentiation and Development = Cell Differ Dev Cell Differentiation and Development = Cell Differ. Dev. Cell differentiation and development : the official journal of the International Society of Developmental Biologists = Cell Differ Dev Cell differentiation = Cell Differ Cell Differentiation = Cell Differ. Cell Differentiation = Cell Differ Dev Cell Differentiation = Cell Differ. Dev. Cell division = Cell Div Cell Division = Cell Div Cell Division = Cell Div. Cell Division: Theory, Variants and Degradation = Cell Bio Res Prog Cell Division: Theory, Variants and Degradation = Cell Bio. Res. Prog. Cell Engineering = Cell Eng Cell Engineering = Cell Eng. Cell Engineering (series) = Cell Engn Ser Cell Engineering (series) = Cell Engn. Ser. Cell Engineering, Vol 1 = Cell Engn Ser Cell Engineering, Vol 1 = Cell Engn. Ser. Cell Engineering, Vol 6: Cell Line Development = Cell Eng Cell Engineering, Vol 6: Cell Line Development = Cell Eng. Cell Engineering, Vol 7: Antibody Expression and Production = Cell Eng Cell Engineering, Vol 7: Antibody Expression and Production = Cell Eng. Cell Entry By Non-enveloped Viruses = Curr Top Microbiol Cell Entry By Non-enveloped Viruses = Curr. Top. Microbiol. Cell-free Protein Production: Methods and Protocols = Methods Mol Biol Cell-free Protein Production: Methods and Protocols = Methods Mol. Biol. Cell Fusion in Health and Disease Ii: Cell Fusion in Disease = Adv Exp Med Biol Cell Fusion in Health and Disease Ii: Cell Fusion in Disease = Adv. Exp. Med. Biol. Cell Growth and Differentiation=Cell Growth Differ;; Cell Growth and Differentiation = Cell Growth Differ. Cell Growth & Differentiation = Cell Growth Differ Cell Growth & Differentiation = Cell Growth Differ. Cell growth & differentiation : the molecular biology journal of the American Association for Cancer Research = Cell Growth Differ Cell host & microbe = Cell Host Microbe Cell Host & Microbe = Cell Host Microbe Cell Injury: Mechanisms, Responses, and Repair = Ann Ny Acad Sci Cell Injury: Mechanisms, Responses, and Repair = Ann. Ny. Acad. Sci. Cell Journal = Cell J Cell Journal = Cell J. Cell Lineages in Development = Ann Ny Acad Sci Cell Lineages in Development = Ann. Ny. Acad. Sci. Cell Lipids = Curr Top Membr Cell Lipids = Curr. Top. Membr. Cell Mechanics = Method Cell Biol Cell Mechanics = Method. Cell Biol. Cell Membranes-methods and Reviews = Cell Membr Meth Rev Cell Membranes-methods and Reviews = Cell Membr. Meth. Rev. Cell metabolism = Cell Metab Cell Metabolism = Cell Metab Cell Metabolism = Cell Metab. Cell Migration: Developmental Methods and Protocols, Second Edition = Methods Mol Biol Cell Migration: Developmental Methods and Protocols, Second Edition = Methods Mol. Biol. Cell Migration: Signalling and Mechanisms = Transl Res Biomed Cell Migration: Signalling and Mechanisms = Transl. Res. Biomed. Cell Motility and The Cytoskeleton = Cell Motil Cytoskel Cell Motility and The Cytoskeleton = Cell Motil. Cytoskel. Cell motility and the cytoskeleton = Cell Motil Cytoskeleton Cell Motility and the Cytoskeleton = Cell Motil. Cytoskeleton Cell Motility and The Cytoskeleton=Cell Motil Cytoskeleton;; Cell motility = Cell Motil Cell Motility = Cell Motil. Cell Motility Factors = Exp Suppl Cell Motility Factors = Exp. Suppl. Cell Nucleus = Cell Nucleus Cell-penetrating Peptides: Methods and Protocols = Methods Mol Biol Cell-penetrating Peptides: Methods and Protocols = Methods Mol. Biol. Cell Preservation and Technology = Cell Preserv. Technol. Cell preservation technology = Cell Preserv Technol Cell Preservation Technology = Cell Preserv Technol Cell Preservation Technology = Cell Preserv. Technol. Cell proliferation = Cell Prolif Cell Proliferation=Cell Prolif;; Cell Proliferation = Cell Prolif. Cell Proliferation = Cell Proliferat Cell Proliferation = Cell Proliferat. Cell regulation = Cell Regul Cell Regulation = Cell Regul Cell Regulation = Cell Regul. Cell research = Cell Res Cell Research=Cell Res;; Cell Research = Cell Res Cell Research = Cell Res. Cell Respiration and Cell Survival: Processes, Types and Effects = Cell Bio Res Prog Cell Respiration and Cell Survival: Processes, Types and Effects = Cell Bio. Res. Prog. Cells and Cytokines in Lung Inflammation = Ann Ny Acad Sci Cells and Cytokines in Lung Inflammation = Ann. Ny. Acad. Sci. Cells and Materials = Cell Mater Cells and Materials = Cell. Mater. Cellscience = Cellscience Cell Separation: Fundamentals, Analytical and Preparative Methods = Adv Biochem Eng Biot Cell Separation: Fundamentals, Analytical and Preparative Methods = Adv. Biochem. Eng. Biot. Cell Separation Science and Technology = Acs Sym Ser Cell Separation Science and Technology = Acs. Sym. Ser. Cell Signaling, Transcription, and Translation As Therapeutic Targets = Ann Ny Acad Sci Cell Signaling, Transcription, and Translation As Therapeutic Targets = Ann. Ny. Acad. Sci. Cell Signalling : Biology and Medicine of Signal Transduction = Adv Sec Mess Phosph Cell Signalling : Biology and Medicine of Signal Transduction = Adv. Sec. Mess. Phosph. Cell Signalling : Experimental Strategies = Meth Surv I Cell Signalling : Experimental Strategies = Meth. Surv. I. Cell Stem Cell = Cell Stem Cell Cells, tissues, organs = Cells Tissues Organs Cells Tissues Organs = Cells Tissues Organs Cells, Tissues, Organs = Cells Tissues Organs Cell Stress and Chaperones=Cell Stress Chaperones;; Cell Stress and Chaperones = Cell Stress Chaperones Cell Stress & Chaperones = Cell Stress Chaperon Cell Stress & Chaperones = Cell Stress Chaperon. Cell stress & chaperones = Cell Stress Chaperones Cell structure and function = Cell Struct Funct Cell Structure and Function=Cell Struct Funct;; Cell Structure and Function = Cell Struct Funct Cell Structure and Function = Cell Struct. Funct. Cell-surface Aminopeptidases: Basic and Clinical Aspects = Int Congr Ser Cell-surface Aminopeptidases: Basic and Clinical Aspects = Int. Congr. Ser. Cell Surface Proteases = Curr Top Dev Biol Cell Surface Proteases = Curr. Top. Dev. Biol. Cell Surface Receptors = Adv Protein Chem Cell Surface Receptors = Adv. Protein. Chem. Cell Surface Reviews = Cell Surf Rev Cell Surface Reviews = Cell Surf. Rev. Cell Therapy = Keio Univ Symp Life Cell Therapy = Keio. Univ. Symp. Life. Cell transplantation = Cell Transplant Cell Transplantation=Cell Transplant;; Cell Transplantation = Cell Transplant Cell Transplantation = Cell Transplant. Cellular Adhesion = N Horiz Th Cellular Adhesion = N. Horiz. Th. Cellular and Biomolecular Mechancis and Mechanobiology = Stud Mechanobiol Tis Cellular and Biomolecular Mechancis and Mechanobiology = Stud. Mechanobiol. Tis. Cellular and Cytokine Networks in Tissue Immunity = Prog Leuc B Cellular and Cytokine Networks in Tissue Immunity = Prog. Leuc. B. Cellular and Molecular Aspects of Cirrhosis = Colloq Inse Cellular and Molecular Aspects of Cirrhosis = Colloq. Inse. Cellular and Molecular Aspects of Endotoxin Reactions = Int Congr Ser Cellular and Molecular Aspects of Endotoxin Reactions = Int. Congr. Ser. Cellular and Molecular Aspects of The Plant Hormone Ethylene = Curr Plant Sci Biot Cellular and Molecular Aspects of The Plant Hormone Ethylene = Curr. Plant Sci. Biot. Cellular and Molecular Bioengineering = Cell Mol Bioeng Cellular and Molecular Bioengineering = Cell. Mol. Bioeng. Cellular and molecular biology = Cell Mol Biol Cellular and Molecular Biology = Cell Mol Biol Cellular and Molecular Biology = Cell. Mol. Biol. Cellular and molecular biology, including cyto-enzymology = Cell Mol Biol Incl Cyto Enzymol Cellular and Molecular Biology Letters = Cell. Mol. Biol. Lett. Cellular and molecular biology (Noisy-le-Grand, France) = Cell Mol Biol (Noisy-le-grand) Cellular and Molecular Biology of Normal and Abnormal Erythroid Membranes = Ucla Sym Bi Cellular and Molecular Biology of Normal and Abnormal Erythroid Membranes = Ucla. Sym. Bi. Cellular and Molecular Biology of The Adrenal Cortex = Colloq Inse Cellular and Molecular Biology of The Adrenal Cortex = Colloq. Inse. Cellular and Molecular Biology of The Kidney = Contrib Nephrol Cellular and Molecular Biology of The Kidney = Contrib. Nephrol. Cellular and Molecular Biology of The Materno-fetal Relationship = Colloq Inse Cellular and Molecular Biology of The Materno-fetal Relationship = Colloq. Inse. Cellular and Molecular Biology (Paris, France, Online) = Cell. Mol. Biol. (Paris, Fr., Online) Cellular and Molecular Biology (Paris, France, Print) = Cell. Mol. Biol. (Paris, Fr., Print) Cellular and Molecular Biology Research = Cell. Mol. Biol. Res. Cellular and Molecular Biology (Sarreguemines, France, Online) = Cell. Mol. Biol. (Sarreguemines, Fr., Online) Cellular and Molecular Biology (Sarreguemines, France, Print) = Cell. Mol. Biol. (Sarreguemines, Fr., Print) Cellular and Molecular Events in Spermiogenesis = Sci Bas Fer Cellular and Molecular Events in Spermiogenesis = Sci. Bas. Fer. Cellular and Molecular Immunology = Cell. Mol. Immunol. Cellular and Molecular Life Sciences=Cell Mol Life Sci;; Cellular and Molecular Life Sciences = Cell Mol Life Sci Cellular and Molecular Life Sciences = Cell. Mol. Life Sci. Cellular and molecular life sciences : CMLS = Cell Mol Life Sci Cellular and Molecular Mechanisms in Hypertension = Adv Exp Med Biol Cellular and Molecular Mechanisms in Hypertension = Adv. Exp. Med. Biol. Cellular and Molecular Mechanisms of Drugs of Abuse and Neurotoxicity: Cocaine, Ghb, and Substituted Amphetamines = Ann Ny Acad Sci Cellular and Molecular Mechanisms of Drugs of Abuse and Neurotoxicity: Cocaine, Ghb, and Substituted Amphetamines = Ann. Ny. Acad. Sci. Cellular and Molecular Mechanisms of Drugs of Abuse = Ann Ny Acad Sci Cellular and Molecular Mechanisms of Drugs of Abuse = Ann. Ny. Acad. Sci. Cellular and Molecular Mechanisms of Drugs of Abuse Ii: Cocaine, Substituted Amphetamines, Ghb, and Opiates = Ann Ny Acad Sci Cellular and Molecular Mechanisms of Drugs of Abuse Ii: Cocaine, Substituted Amphetamines, Ghb, and Opiates = Ann. Ny. Acad. Sci. Cellular and Molecular Mechanisms of Ischemic Brain Damage = Adv Neurol Cellular and Molecular Mechanisms of Ischemic Brain Damage = Adv. Neurol. Cellular and molecular neurobiology = Cell Mol Neurobiol Cellular and Molecular Neurobiology=Cell Mol Neurobiol;; Cellular and Molecular Neurobiology = Cell Mol Neurobiol Cellular and Molecular Neurobiology = Cell. Mol. Neurobiol. Cellular and Molecular Physiology of Sodium-calcium Exchange = Ann Ny Acad Sci Cellular and Molecular Physiology of Sodium-calcium Exchange = Ann. Ny. Acad. Sci. Cellular and Molecular Procedures in Developmental Biology = Curr Top Dev Biol Cellular and Molecular Procedures in Developmental Biology = Curr. Top. Dev. Biol. Cellular and Porous Materials in Structures and Processes = Cism Courses Lect Cellular and Porous Materials in Structures and Processes = Cism. Courses. Lect. Cellular Automata and Complex Systems = Nonl Phen Compl Syst Cellular Automata and Complex Systems = Nonl. Phen. Compl. Syst. Cellular Automata and Cooperative Systems = Nato Adv Sci Inst Se Cellular Automata and Cooperative Systems = Nato. Adv. Sci. Inst. Se. Cellular Automata and Groups = Springer Monogr Math Cellular Automata and Groups = Springer. Monogr. Math. Cellular Automata, Dynamical Systems and Neural Networks = Math Appl Cellular Automata, Dynamical Systems and Neural Networks = Math. Appl. Cellular Automata = Lect Notes Comput Sc Cellular Automata = Lect. Notes. Comput. Sc. Cellular Automata, Proceedings = Lect Notes Comput Sc Cellular Automata, Proceedings = Lect. Notes. Comput. Sc. Cellular, Biochemical, and Molecular Aspects of Reperfusion Injury = Ann Ny Acad Sci Cellular, Biochemical, and Molecular Aspects of Reperfusion Injury = Ann. Ny. Acad. Sci. Cellular Blood Components in Haemostasis and Thrombosis = Bergamo Hae Cellular Blood Components in Haemostasis and Thrombosis = Bergamo. Hae. Cellular Electron Microscopy = Method Cell Biol Cellular Electron Microscopy = Method. Cell. Biol. Cellular Engineering and Cellular Therapies = Dev Hematol Cellular Engineering and Cellular Therapies = Dev. Hematol. Cellular Factors Involved in Early Steps of Retroviral Replicaton = Curr Top Microbiol Cellular Factors Involved in Early Steps of Retroviral Replicaton = Curr. Top. Microbiol. Cellular Generation, Transport, and Effects of Eicosanoids = Ann Ny Acad Sci Cellular Generation, Transport, and Effects of Eicosanoids = Ann. Ny. Acad. Sci. Cellular Genetic Algorithms = Oper Res Comput Sci Cellular Genetic Algorithms = Oper. Res. Comput. Sci. Cellular Immunity and The Immunotherapy of Cancer = Ucla Sym Bi Cellular Immunity and The Immunotherapy of Cancer = Ucla. Sym. Bi. Cellular immunology = Cell Immunol Cellular Immunology=Cell Immunol;; Cellular Immunology = Cell Immunol Cellular Immunology = Cell. Immunol. Cellular Integration of Signalling Pathways in Plant Development = Nato Adv Sci I H-cel Cellular Integration of Signalling Pathways in Plant Development = Nato. Adv. Sci. I. H-cel. Cellular Mechanisms of Sensory Processing = Nato Adv Sci Inst Se Cellular Mechanisms of Sensory Processing = Nato. Adv. Sci. Inst. Se. Cellular microbiology = Cell Microbiol Cellular Microbiology = Cell Microbiol Cellular Microbiology = Cell. Microbiol. Cellular & molecular biology letters = Cell Mol Biol Lett Cellular & Molecular Biology Letters = Cell Mol Biol Lett Cellular & Molecular Biology Letters = Cell. Mol. Biol. Lett. Cellular & molecular biology research = Cell Mol Biol Res Cellular & Molecular Biology Research = Cell Mol Biol Res Cellular & Molecular Biology Research = Cell. Mol. Biol. Res. Cellular & molecular immunology = Cell Mol Immunol Cellular & Molecular Immunology = Cell Mol Immunol Cellular & Molecular Immunology = Cell. Mol. Immunol. Cellular Neural Networks, Multi-scroll Chaos and Synchronization = World Sci Ser Nonlin Cellular Neural Networks, Multi-scroll Chaos and Synchronization = World. Sci. Ser. Nonlin. Cellular Oncology = Cell Oncol Cellular Oncology = Cell. Oncol. Cellular oncology : the official journal of the International Society for Cellular Oncology = Cell Oncol Cellular Origin and Life in Extreme Habitats and Astrobiology = Cell Origin Life Ext Cellular Origin and Life in Extreme Habitats and Astrobiology = Cell. Origin Life Ext. Cellular Origin Life in Extreme Habitats and Astrobiology = Cell Orig Life Extre Cellular Origin Life in Extreme Habitats and Astrobiology = Cell. Orig. Life Extre. Cellular Oscillatory Mechanisms = Adv Exp Med Biol Cellular Oscillatory Mechanisms = Adv. Exp. Med. Biol. Cellular Peptidases in Immune Functions and Diseases 2 = Adv Exp Med Biol Cellular Peptidases in Immune Functions and Diseases 2 = Adv. Exp. Med. Biol. Cellular Peptidases in Immune Functions and Diseases = Adv Exp Med Biol Cellular Peptidases in Immune Functions and Diseases = Adv. Exp. Med. Biol. Cellular Peptide Hormone Synthesis and Secretory Pathways = Results Probl Cell D Cellular Peptide Hormone Synthesis and Secretory Pathways = Results. Probl. Cell. D. Cellular Physiology and Biochemistry = Cell Physiol Biochem Cellular Physiology and Biochemistry = Cell. Physiol. Biochem. Cellular physiology and biochemistry : international journal of experimental cellular physiology, biochemistry, and pharmacology = Cell Physiol Biochem Cellular Polymers = Cell Polym Cellular Polymers = Cell. Polym. Cellular Programming and Reprogramming: Methods and Protocols = Methods Mol Biol Cellular Programming and Reprogramming: Methods and Protocols = Methods Mol. Biol. Cellular Receptors for Animal Viruses = Cold Spring Harbor M Cellular Receptors for Animal Viruses = Cold. Spring. Harbor. M. Cellular Reprogramming = Cell Reprogram Cellular Reprogramming = Cell. Reprogram. Cellular Responses to Stress = Biochem Soc Symp Cellular Responses to Stress = Biochem. Soc. Symp. Cellular Response to Biomaterials = Woodhead Publ Mater Cellular Response to Biomaterials = Woodhead. Publ. Mater. Cellular Signaling in Health and Disease = Biol Med Phys Biomed Cellular Signaling in Health and Disease = Biol. Med. Phys. Biomed. Cellular signalling = Cell Signal Cellular Signalling=Cell Signal;; Cellular Signalling = Cell Signal Cellular Signalling = Cell. Signal. Cellular Signalling = Cell. Signalling Cellular Stress Responses in Renal Diseases = Contrib Nephrol Cellular Stress Responses in Renal Diseases = Contrib. Nephrol. Cellule = Cellule Cellulose Allomorphs: Structure, Accessibility and Reactivity = Polym Sci Technol Se Cellulose Allomorphs: Structure, Accessibility and Reactivity = Polym. Sci. Technol. Se. Cellulose = Cellulose Cellulose Chemistry and Technology = Cell Chem Technol Cellulose Chemistry and Technology = Cell. Chem. Technol. Cellulose Chemistry and Technology = Cellul. Chem. Technol. Cellulose Nanocomposites: Processing, Characterization, and Properties = Acs Sym Ser Cellulose Nanocomposites: Processing, Characterization, and Properties = Acs. Sym. Ser. Cellulose Solvents: for Analysis, Shaping and Chemical Modification = Acs Sym Ser Cellulose Solvents: for Analysis, Shaping and Chemical Modification = Acs. Sym. Ser. Cellulose Sources and Exploitation = E H S Polym Cellulose Sources and Exploitation = E. H. S. Polym. Cellulose: Structure and Properties, Derivatives and Industrial Uses = Biotech Agr Ind Med Cellulose: Structure and Properties, Derivatives and Industrial Uses = Biotech. Agr. Ind. Med. Cellulosics: Pulp, Fibre and Environmental Aspects = E H S Polym Cellulosics: Pulp, Fibre and Environmental Aspects = E. H. S. Polym. Cell Vision = Cell Vis. Cell vision : the journal of analytical morphology = Cell Vis Cell Volume and Signaling = Adv Exp Med Biol Cell Volume and Signaling = Adv. Exp. Med. Biol. Cell Volume Regulation = Contrib Nephrol Cell Volume Regulation = Contrib. Nephrol. Cell Volume Regulation = Int Congr Ser Cell Volume Regulation = Int. Congr. Ser. Celtic Languages = Routl Lang Fam Ser Celtic Languages = Routl. Lang. Fam. Ser. Celticum. Supplément à Ogam = Celticum Cemaf As A Census Methods: A Proposal for A Re-designed Census and An Independent Us Census Bureau = Springerbrief Popul Cemaf As A Census Methods: A Proposal for A Re-designed Census and An Independent Us Census Bureau = Springerbrief. Popul. Cement and Concrete Composites = Cem. Concr. Compos. Cement and Concrete Research = Cem. Concr. Res. Cement and Concrete Research = Cement Concrete Res Cement and Concrete Research = Cement Concrete Res. Cement Concrete and Aggregates = Cement Concrete Aggr Cement Concrete and Aggregates = Cement Concrete Aggr. Cement & Concrete Composites = Cem. Concr. Compos. Cement & Concrete Composites = Cement Concrete Comp Cement & Concrete Composites = Cement Concrete Comp. Cement Wapno Beton = Cem Wapno Beton Cement Wapno Beton = Cem. Wapno Beton CEMLA Boletin Mensual=CEMLA Bol. Mens. Cenozoic Climate and Environmental Changes in Russia = Geol Soc Am Spec Pap Cenozoic Climate and Environmental Changes in Russia = Geol. Soc. Am. Spec. Pap. Cenozoic Volcanism in The Mediterranean Area = Geol Soc Am Spec Pap Cenozoic Volcanism in The Mediterranean Area = Geol. Soc. Am. Spec. Pap. Censorship and Silencing: Practices of Cultural Regulation = Issues Debates Censorship and Silencing: Practices of Cultural Regulation = Issues. Debates. Censorship & Cultural Regulation in The Modern Age = Crit Stud Censorship & Cultural Regulation in The Modern Age = Crit. Stud. Censor, The Editor and The Text: The Catholic Church and The Shaping of The Jewish Canon in The Sixteenth Century = Jew Cult Context Censor, The Editor and The Text: The Catholic Church and The Shaping of The Jewish Canon in The Sixteenth Century = Jew. Cult. Context. Centaurus = Centaurus Centaurus = Centaurus Centaurus; international magazine of the history of science and medicine = Centaurus Centenarians: Autonomy Versus Dependence in The Oldest Old = Fact Res Interv Ger Centenarians: Autonomy Versus Dependence in The Oldest Old = Fact. Res. Interv. Ger. Centennial Review = Centennial Rev Centennial Review = Centennial Rev. Center Books On Contemporary Landscape Design = Cent Books Contemp Center Books On Contemporary Landscape Design = Cent. Books Contemp. Center, Bulge, and Disk of The Milky Way = Astrophys Space Sc L Center, Bulge, and Disk of The Milky Way = Astrophys. Space. Sc. L. Center for Business Practices = Ctr Bus Pract Center for Business Practices = Ctr. Bus. Pract. Center for Cognitive Science Technical Reports = Ccs Tec Rep Center for Cognitive Science Technical Reports = Ccs. Tec. Rep. Center for Hellenic Studies Colloquia = Ctr Hell Stud Colloq Center for Hellenic Studies Colloquia = Ctr. Hell. Stud. Colloq. Center for Improvement of Early Reading Achievement Series = Cen Im E R Center for Improvement of Early Reading Achievement Series = Cen. Im. E. R. Center for Interdisciplinary Studies of Writing Monograph Series = Ctr Interdis Stud Wr Center for Interdisciplinary Studies of Writing Monograph Series = Ctr. Interdis. Stud. Wr. Center for Renaissance & Baroque Studies = Ctr Ren Bar Stud Center for Renaissance & Baroque Studies = Ctr. Ren. Bar. Stud. Center for Settlement Studies. Occasional Papers. University of Manitoba = Cent Settle Stud O P Center for Settlement Studies. Occasional Papers. University of Manitoba = Cent. Settle. Stud. O. P. Center for Settlement Studies. Research Reports. University of Manitoba = Cent Settle Stud R R Center for Settlement Studies. Research Reports. University of Manitoba = Cent. Settle. Stud. R. R. Center for Theoretical Study Workshop = Cts Workshop Center for Theoretical Study Workshop = Cts. Workshop Center Magazine = Cent Mag Center Magazine = Cent. Mag. Center of The Galaxy = Iau Symp Center of The Galaxy = Iau. Symp. Centerpoint = Centerpoint Center view : a publication of the Center for Applied and Professional Ethics, University of Tennessee, Knoxville = Cent View Centerviews (Honolulu, Hawaii) = Centerviews Central African Journal of Medicine=Cent Afr J Med;; Central African Journal of Medicine = Cent Afr J Med Central African Journal of Medicine = Cent. Afr. J. Med. Central and Eastern European Development Studies = Cent E Eur Dev Stud Central and Eastern European Development Studies = Cent. E. Eur. Dev. Stud. Central and Eastern Europe: Europeanization and Social Change = Sci Po Ser Int Relat Central and Eastern Europe: Europeanization and Social Change = Sci. Po. Ser. Int. Relat. Central and Peripheral Significance of Neuropeptide Y and Its Related Peptides = Ann Ny Acad Sci Central and Peripheral Significance of Neuropeptide Y and Its Related Peptides = Ann. Ny. Acad. Sci. Central and Peripheral Sympathetic Mechanisms in Hypertension : Pathophysiological and Therapeutic = Roy Soc Med Int Cong Central and Peripheral Sympathetic Mechanisms in Hypertension : Pathophysiological and Therapeutic = Roy. Soc. Med. Int. Cong. Central Asia monitor = Cent Asia Monit Central Asian Studies = Cent Asian Stud Central Asian Studies = Cent. Asian Stud. Central Asian Studies Series = Cent Asian Stud Ser Central Asian Studies Series = Cent. Asian Stud. Ser. Central Asian survey = Centr Asian Surv Central Asia Research Forum = Cent Asia Res Forum Central Asia Research Forum = Cent. Asia Res. Forum Central Asiatic Journal = Cent Asiatic J Central Asiatic Journal = Cent. Asiatic J. Central Bank Independence = Stockh Stud Law Central Bank Independence = Stockh. Stud. Law. Central Banking, Asset Prices and Financial Fragility = Routl Int Stud Money Central Banking, Asset Prices and Financial Fragility = Routl. Int. Stud. Money. Central Banking Governance in The European Union = Routl Uaces Contemp Central Banking Governance in The European Union = Routl. Uaces. Contemp. Centralblatt für das gesamte Forstwesen = Cent.bl. gesamte Forstwes. Central Engine of Active Galactic Nuclei = Astr Soc P Central Engine of Active Galactic Nuclei = Astr. Soc. P. Central European Dairying : Transfer From Centrally-planned to Market-oriented Economy = Int Dairy F Central European Dairying : Transfer From Centrally-planned to Market-oriented Economy = Int. Dairy. F. Central European Forests = Cent. Eur. For. Central European Functional Programming School = Lect Notes Comput Sc Central European Functional Programming School = Lect. Notes. Comput. Sc. Central European History and The European Union:the Meaning of Europe = Stud Cent E Eur Central European History and The European Union:the Meaning of Europe = Stud. Cent. E. Eur. Central European history = Cent Eur Hist Central European History = Cent Eur Hist Central European History = Cent. Eur. Hist. Central European Journal for Operations Research and Economics=Central Europ. J. Operations Res. Econ. Central European Journal of Biology = Cent Eur J Biol Central European Journal of Biology = Cent. Eur. J. Biol. Central European Journal of Chemistry = Cent Eur J Chem Central European Journal of Chemistry = Cent. Eur. J. Chem. Central European Journal of Energetic Materials = Cent. Eur. J. Energetic Mater. Central European Journal of Immunology = Cent Eur J Immunol Central European Journal of Immunology = Cent. Eur. J. Immunol. Central European Journal of Mathematics = Cent Eur J Math Central European Journal of Mathematics = Cent. Eur. J. Math. Central European Journal of Medicine = Cent Eur J Med Central European Journal of Medicine = Cent. Eur. J. Med. Central European Journal of Operations Research = Cent Eur J Oper Res Central European Journal of Operations Research = Cent. Eur. J. Oper. Res. Central European Journal of Operations Research = Cent Europ J Oper Re Central European Journal of Operations Research = Cent. Europ. J. Oper. Re. Central European Journal of Operations Research=Central Europ. J. Operations Res. Central European Journal of Physics = Cent Eur J Phys Central European Journal of Physics = Cent. Eur. J. Phys. Central European Journal of Public Health = Cent Eur J Publ Heal Central European Journal of Public Health = Cent. Eur. J. Publ. Heal. Central European journal of public health = Cent Eur J Public Health Central European Journal of Public Health=Cent Eur J Public Health;; Central European Journal of Public Health = Cent. Eur. J. Public Health Central European Neurosurgery = Cent Eur Neurosurg Central European Neurosurgery = Cent. Eur. Neurosurg. Central European Studies = Cent Eur Stud Central European Studies = Cent. Eur. Stud. Central Europe = Cent Eur Central Europe = Cent. Eur. Central Glass and Ceramic Research Institute Bulletin = Cent Glas Ceram Res Central Glass and Ceramic Research Institute Bulletin = Cent. Glas. Ceram. Res. Central issues in anthropology : a journal of the Central States Anthropological Society = Cent Issues Anthropol Centralized Enforcement, Legitimacy and Good Governance in The Eu = Routledge Res Eu Law Centralized Enforcement, Legitimacy and Good Governance in The Eu = Routledge. Res. Eu Law. Central Kiloparsec of Starbursts and Agn: The La Palma Connection = Astr Soc P Central Kiloparsec of Starbursts and Agn: The La Palma Connection = Astr. Soc. P. Central Nervous System Agents in Medicinal Chemistry = Cent. Nerv. Syst. Agents Med. Chem. Central Nervous System Trauma = Cent. Nerv. Syst. Trauma Central nervous system trauma : journal of the American Paralysis Association = Cent Nerv Syst Trauma Central Neural Organization of Cardiovascular Control = Prog Brain Res Central Neural Organization of Cardiovascular Control = Prog. Brain. Res. Central Parsecs of The Galaxy = Astr Soc P Central Parsecs of The Galaxy = Astr. Soc. P. Central states speech journal = Cent States Speech J Central States Speech Journal = Cent States Speech J Central States Speech Journal = Cent. States Speech J. Centre and Periphery in The Hellenistic World = St Hellen C Centre and Periphery in The Hellenistic World = St. Hellen. C. Centre calling = Cent Call Centre De Physique Des Houches = Ctr Phys Houches Centre De Physique Des Houches = Ctr. Phys. Houches Centre de Physique Les Houches = Cent. Phys. Les Houches Centre d'études et de documentation archéologique de la Conservation de Carthage. Bulletin = CEDAC Centre for Aboriginal Economic Policy Research-caepr = Cent Abor Econ Pol Centre for Aboriginal Economic Policy Research-caepr = Cent. Abor. Econ. Pol. Centre for Employment and Labour Relations Law, Occasional Monograph Series = Celrl Oc Mg Ser Centre for Employment and Labour Relations Law, Occasional Monograph Series = Celrl. Oc. Mg. Ser. Centre for Medicines Research Workshop Series = Cmr Worksh Centre for Medicines Research Workshop Series = Cmr. Worksh. Centre for Pure and Applied Differential Geometry (PADGE) = Centre Pure Appl. Differential Geom. (PADGE) Centre for Research On Transportation 25th Anniversary Series: 1971-1996 = Ctr Res Transp 25th Centre for Research On Transportation 25th Anniversary Series: 1971-1996 = Ctr. Res. Transp. 25th Centre for Resource Studies, Proceedings = Ctr R St P Centre for Resource Studies, Proceedings = Ctr. R. St. P. Centre International De Recherche En Amenagement Linguistique, Publication B = Ciral Pub B Centre International De Recherche En Amenagement Linguistique, Publication B = Ciral. Pub. B Centre Internationale De Recherche Sur Le Bilinguisme = Cirb Pub Centre Internationale De Recherche Sur Le Bilinguisme = Cirb. Pub. Centrelink Experiment: Innovation in Service Delivery = Anzsog Monogr Centrelink Experiment: Innovation in Service Delivery = Anzsog. Monogr. Centre medical = Cent Med Centrifugal Pump Low-flow Protection = Imeche Sem Centrifugal Pump Low-flow Protection = Imeche. Sem. Centrifugal Pumps = Imeche Sem Centrifugal Pumps = Imeche. Sem. Centro de Estudios de Recursos Odontologicos para el Nino = Cent. Estud. Recur. Odontol. Nino Centro de Estudios de Recursos Odontologicos para el Nino : CERON = Cent Estud Recur Odontol Nino Centro Di Studi Di Letteratura Italiana in Piemonte "guido Gozzano" = Cslip Guido Gozzano Centro Di Studi Di Letteratura Italiana in Piemonte "guido Gozzano" = Cslip. Guido. Gozzano. Centro Internazionale Di Cultura - Studi Pichiani = Ctr Int Cult St Pich Centro Internazionale Di Cultura - Studi Pichiani = Ctr. Int. Cult. St. Pich. Centro Journal = Cent J Centro Journal = Cent. J. Centro Journal = Centro J Centro Journal = Centro J. Centromere: Structure and Evolution = Prog Mol Subcell Bio Centromere: Structure and Evolution = Prog. Mol. Subcell. Bio. Centrosome in Cell Replication and Early Development = Curr Top Dev Biol Centrosome in Cell Replication and Early Development = Curr. Top. Dev. Biol. Centrum = Centrum Centrum voor Wiskunde en Informatica = CWI Quarterly Century of Ideas: Perspectives From Leading Scientists of The 20th Century = Fund Theor Phys Century of Ideas: Perspectives From Leading Scientists of The 20th Century = Fund. Theor. Phys. Century of Irish Drama = Drama Perform Stud Century of Irish Drama = Drama Perform. Stud. Century of Relativity Physics = Aip Conf Proc Century of Relativity Physics = Aip. Conf. Proc. Century of Rickettsiology: Emerging, Reemerging Rickettsioses, Molecular Diagnostics, and Emerging Veterinary Rickettsioses = Ann Ny Acad Sci Century of Rickettsiology: Emerging, Reemerging Rickettsioses, Molecular Diagnostics, and Emerging Veterinary Rickettsioses = Ann. Ny. Acad. Sci. Century of War and Peace = Melb Stu C Int Law Century of War and Peace = Melb. Stu. C. Int. Law. Ceos Sar Workshop = Esa Spec Publ Ceos Sar Workshop = Esa. Spec. Publ. Ceos Sar Workshop = Esa Sp Publ Ceos Sar Workshop = Esa. Sp. Publ. Cepal Review = Cepal Rev Cepal Review = Cepal Rev. CEPAL review = CEPAL Rev CEPAL Review=CEPAL Rev. Cephalalgia : an international journal of headache = Cephalalgia Cephalalgia=Cephalalgia;; Cephalalgia = Cephalalgia Ceramic Age = Ceram Age Ceramic Age = Ceram. Age Ceramic and Polymer Matrix Composites: Properties, Performance and Applications = Polym Sci Technol Se Ceramic and Polymer Matrix Composites: Properties, Performance and Applications = Polym. Sci. Technol. Se. Ceramic Armor and Armor Systems = Ceram Trans Ceramic Armor and Armor Systems = Ceram. Trans. Ceramic Armor Materials By Design = Ceram Trans Ceramic Armor Materials By Design = Ceram. Trans. Ceramic Dielectrics : Composition, Processing and Properties = Ceram Trans Ceramic Dielectrics : Composition, Processing and Properties = Ceram. Trans. Ceramic Engineering and Science Proceedings = Ceram Eng Sci Proc Ceramic Engineering and Science Proceedings = Ceram. Eng. Sci. Proc. Ceramic Handbook = Ceram Handb Ceramic Handbook = Ceram. Handb. Ceramic Industry = Ceram Ind Ceramic Industry = Ceram. Ind. Ceramic Interconnect Technology: Next Generation = Proc Spie Ceramic Interconnect Technology: Next Generation = Proc. Spie. Ceramic Interconnect Technology: Next Generation = P Soc Photo-opt Ins Ceramic Interconnect Technology: Next Generation = P. Soc. Photo-opt. Ins. Ceramic Interfaces: Properties and Applications V = Key Eng Mat Ceramic Interfaces: Properties and Applications V = Key. Eng. Mat. Ceramic Interfaces: Properties and Applications V = Key Eng Mater Ceramic Interfaces: Properties and Applications V = Key. Eng. Mater. Ceramic Materials and Components for Energy and Environmental Applications = Ceram Trans Ceramic Materials and Components for Energy and Environmental Applications = Ceram. Trans. Ceramic Materials and Multilayer Electronic Devices = Ceram Trans Ceramic Materials and Multilayer Electronic Devices = Ceram. Trans. Ceramic Matrix Composites - Advanced High-temperature Structural Materials = Mater Res Soc Symp P Ceramic Matrix Composites - Advanced High-temperature Structural Materials = Mater. Res. Soc. Symp. P. Ceramic Nanomaterials and Nanotechnology = Ceram Trans Ceramic Nanomaterials and Nanotechnology = Ceram. Trans. Ceramic Nanomaterials and Nanotechnology Ii = Ceram Trans Ceramic Nanomaterials and Nanotechnology Ii = Ceram. Trans. Ceramic Nanomaterials and Nanotechnology Iii = Ceram Trans Ceramic Nanomaterials and Nanotechnology Iii = Ceram. Trans. Ceramic Powder Science Iii = Ceram Trans Ceramic Powder Science Iii = Ceram. Trans. Ceramic Processing Science = Ceram Trans Ceramic Processing Science = Ceram. Trans. Ceramics and Civilization = Ceram Civil Ceramics and Civilization = Ceram. Civil. Ceramics-art and Perception = Ceramics-art Percept Ceramics-art and Perception = Ceramics-art Percept. Ceramics As A Global Enterprise = Ceram Civil Ceramics As A Global Enterprise = Ceram. Civil. Ceramics = Ceramics Ceramics for Environmental and Energy Applications = Ceram Trans Ceramics for Environmental and Energy Applications = Ceram. Trans. Ceramics: From Processing to Production = Brit Cer Pr Ceramics: From Processing to Production = Brit. Cer. Pr. Ceramics in Nuclear and Alternative Energy Applications = Ceram Eng Sci Proc Ceramics in Nuclear and Alternative Energy Applications = Ceram. Eng. Sci. Proc. Ceramics in Nuclear Applications = Ceram Eng Sci Proc Ceramics in Nuclear Applications = Ceram. Eng. Sci. Proc. Ceramics in Orthopaedics = Cer Ortho Ceramics in Orthopaedics = Cer. Ortho. Ceramics International = Ceram Int Ceramics International = Ceram. Int. Ceramics - Silikaty = Ceram. Silik. Ceramics-Silikaty = Ceram.-Silik. Ceramics-silikaty = Ceram-silikaty Ceramics-silikaty = Ceram-silikaty. Ceramics-technical = Ceram Tech Ceramics-technical = Ceram. Tech. Ceramic Superconductors = Progr High Temp Supe Ceramic Superconductors = Progr. High. Temp. Supe. Ceramic Transactions = Ceram Trans Ceramic Transactions = Ceram. Trans. Cercetări numismatice. Muzeul naţional de istorie = CercNum Cercetriarheologice = CercA Cerc Studies in Comparative Education = Cerc Stud Comp Educ Cerc Studies in Comparative Education = Cerc Stud. Comp. Educ. Cereal Breeding = Vort Pflanz Cereal Breeding = Vort. Pflanz. Cereal Chemistry = Cereal Chem Cereal Chemistry = Cereal Chem. Cereal Foods World = Cereal Food World Cereal Foods World = Cereal Food. World Cereal Grains: Assessing and Managing Quality = Woodhead Publ Food S Cereal Grains: Assessing and Managing Quality = Woodhead. Publ. Food. S. Cereal Research Communications = Cereal Res Commun Cereal Research Communications = Cereal Res. Commun. Cereal Science Today = Cereal Sci Today Cereal Science Today = Cereal Sci. Today Cerebellar Infarct - Midline Tumors - Minimally Invasive Endoscopic Neurosurgery (mien) = Adv Neuros Cerebellar Infarct - Midline Tumors - Minimally Invasive Endoscopic Neurosurgery (mien) = Adv. Neuros. Cerebellar Modules: Molecules, Morphology, and Function = Prog Brain Res Cerebellar Modules: Molecules, Morphology, and Function = Prog. Brain. Res. Cerebellum and Cognition = Int Rev Neurobiol Cerebellum and Cognition = Int. Rev. Neurobiol. Cerebellum = Cerebellum Cerebellum: From Structure to Control = Prog Brain Res Cerebellum: From Structure to Control = Prog. Brain. Res. Cerebellum (London, England) = Cerebellum Cerebral Blood Flow = Upd Int Car Cerebral Blood Flow = Upd. Int. Car. Cerebral Cortex=Cereb Cortex;; Cerebral Cortex = Cereb Cortex Cerebral Cortex = Cereb. Cortex Cerebral cortex (New York, N.Y. : 1991) = Cereb Cortex Cerebral Gliomas = Int Congr Ser Cerebral Gliomas = Int. Congr. Ser. Cerebral Hemorrhage = Act Neur S Cerebral Hemorrhage = Act. Neur. S. Cerebral Ischemia in Young Adults: Pathogenic and Clinical Perspectives = Neurol Lab Clin Res Cerebral Ischemia in Young Adults: Pathogenic and Clinical Perspectives = Neurol. Lab. Clin. Res. Cerebral Microcirculation = Progr Appl Micr Cerebral Microcirculation = Progr. Appl. Micr. Cerebral palsy bulletin = Cereb Palsy Bull Cerebral Palsy Journal = Cereb. Palsy J. Cerebral palsy review = Cereb Palsy Rev Cerebral Palsy Review = Cereb. Palsy Rev. Cerebral Vascular Disease 7 = Int Congr Ser Cerebral Vascular Disease 7 = Int. Congr. Ser. Cerebral Vascular Disease 8 = Int Congr Ser Cerebral Vascular Disease 8 = Int. Congr. Ser. Cerebral Vasospasm = Acta Neurochir Suppl Cerebral Vasospasm = Acta. Neurochir. Suppl. Cerebral Vasospasm = Act Neur S Cerebral Vasospasm = Act. Neur. S. Cerebral Vasospasm = Devel Neur Cerebral Vasospasm = Devel. Neur. Cerebral Vasospasm: New Strategies in Research and Treatment = Acta Neurochir Suppl Cerebral Vasospasm: New Strategies in Research and Treatment = Acta. Neurochir. Suppl. Cerebral Vasospasm: New Strategies in Research and Treatment = Act Neur S Cerebral Vasospasm: New Strategies in Research and Treatment = Act. Neur. S. Cerebrospinal fluid research = Cerebrospinal Fluid Res Cerebrovascular and Brain Metabolism Reviews = Cerebrovas Brain Met Cerebrovascular and Brain Metabolism Reviews = Cerebrovas. Brain Met. Cerebrovascular and brain metabolism reviews = Cerebrovasc Brain Metab Rev Cerebrovascular and Brain Metabolism Reviews = Cerebrovasc. Brain Metab. Rev. Cerebrovascular Disease: Momentum At The End of The Second Millennium = Am Heart Monogr S Cerebrovascular Disease: Momentum At The End of The Second Millennium = Am. Heart. Monogr. S. Cerebrovascular diseases (Basel, Switzerland) = Cerebrovasc Dis Cerebrovascular Diseases = Cerebrovasc Dis Cerebrovascular Diseases = Cerebrovasc. Dis. Cerebrovascular Pathology in Alzheimer's Disease = Ann Ny Acad Sci Cerebrovascular Pathology in Alzheimer's Disease = Ann. Ny. Acad. Sci. Cerebrovascular Reseach and Disorders = Cerebrovas Res Disor Cerebrovascular Reseach and Disorders = Cerebrovas. Res. Disor. Cerebrum : the Dana forum on brain science = Cerebrum Ceremonies and Spectacles: Performing American Culture = Eur C Am St Ceremonies and Spectacles: Performing American Culture = Eur. C. Am. St. Ceres = Ceres Ceri Series in International Relations and Political Economy = Ceri Ser Int Relat P Ceri Series in International Relations and Political Economy = Ceri Ser. Int. Relat. P. Ceri Series in International Relations and Political Economy = Ceri Ser Int Rel Pol Ceri Series in International Relations and Political Economy = Ceri Ser. Int. Rel. Pol. Cerium As Capturing Agent in Phosphatase and Oxidase Histochemistry = Prog Histochem Cytoc Cerium As Capturing Agent in Phosphatase and Oxidase Histochemistry = Prog. Histochem. Cytoc. Cerma2006: Electronics, Robotics and Automotive Mechanics Conference, Vol 1, Proceedings = Elect Robot Auto Mec Cerma2006: Electronics, Robotics and Automotive Mechanics Conference, Vol 1, Proceedings = Elect. Robot. Auto. Mec. Cerma2006: Electronics, Robotics and Automotive Mechanics Conference Vol 2, Proceedings = Elect Robot Auto Mec Cerma2006: Electronics, Robotics and Automotive Mechanics Conference Vol 2, Proceedings = Elect. Robot. Auto. Mec. Cerma 2007: Electronics, Robotics and Automotive Mechanics Conference, Proceedings = Elect Robot Auto Mec Cerma 2007: Electronics, Robotics and Automotive Mechanics Conference, Proceedings = Elect. Robot. Auto. Mec. Cerma 2008: Electronics, Robotics and Automotive Mechanics Conference, Proceedings = Elect Robot Auto Mec Cerma 2008: Electronics, Robotics and Automotive Mechanics Conference, Proceedings = Elect. Robot. Auto. Mec. Cern Accelerator School Fifth General Accelerator Physics Course: Proceedings, Vol 1 = Cern Report Cern Accelerator School Fifth General Accelerator Physics Course: Proceedings, Vol 1 = Cern Report. Cern Accelerator School Fifth General Accelerator Physics Course: Proceedings, Vol Ii = Cern Report Cern Accelerator School Fifth General Accelerator Physics Course: Proceedings, Vol Ii = Cern Report. Cern Accelerator School Vacuum Technology, Proceedings = Cern Report Cern Accelerator School Vacuum Technology, Proceedings = Cern Report. Cerne = Cerne Cern Omega Spectrometer 25 Years of Physics, Proceedings = Cern Report Cern Omega Spectrometer 25 Years of Physics, Proceedings = Cern Report. C E R N Reports = Cern Report C E R N Reports = Cern. Report. Cerrahpasa Tip Fakultesi dergisi = Cerrahpasa Tip Fak Derg Certain Number-theoretic Episodes in Algebra = Monogr Txb Pure Appl Certain Number-theoretic Episodes in Algebra = Monogr. Txb. Pure. Appl. Certification and Security in E-services: From E-government to E-business = Int Fed Info Proc Certification and Security in E-services: From E-government to E-business = Int. Fed. Info. Proc. Certification and Security in Inter-organizational E-services = Int Fed Info Proc Certification and Security in Inter-organizational E-services = Int. Fed. Info. Proc. Certified dental technician = Certif Dent Tech Certified Dental Technician = Certif. Dent. Tech. Cesifo Book Series = Cesifo Book Ser Cesifo Book Series = Cesifo Book Ser. Cesifo Economic Studies = Cesifo Econ Stud Cesifo Economic Studies = Cesifo Econ. Stud. Cesifo Seminar Series = Cesifo Seminar Ser Cesifo Seminar Series = Cesifo Seminar Ser. Ceska a Slovenska farmacie : casopis Ceske farmaceuticke spolecnosti a Slovenske farmaceuticke spolecnosti = Ceska Slov Farm Ceska a Slovenska Farmacie = Ceska Slov. Farm. Ceska A Slovenska Farmacie=Ceska Slov Farm;; Ceska A Slovenska Neurologie A Neurochirurgie = Cesk Slov Neurol N Ceska A Slovenska Neurologie A Neurochirurgie = Cesk. Slov. Neurol. N. Ceska a slovenska oftalmologie : casopis Ceske oftalmologicke spolecnosti a Slovenske oftalmologicke spolecnosti = Cesk Slov Oftalmol Ceska a Slovenska Oftalmologie = Cesk. Slov. Oftalmol. Ceska A Slovenska Oftalmologie=Cesk Slov Oftalmol;; Ceska a slovenska psychiatrie / Ceska lekarska spolecnost J.E. Purkyne = Ceska Slov Psychiatr Ceska a Slovenska Psychiatrie = Ceska Slov. Psychiatr. Ceska Gynekologie=Ceska Gynekol;; Ceska Gynekologie = Ceska Gynekol. Ceska gynekologie / Ceska lekarska spolecnost J. Ev. Purkyne = Ceska Gynekol Ceska Literatura = Cesk Lit Ceska Literatura = Cesk. Lit. Ceskoslovenska biologie = Ceskoslov Biol Ceskoslovenska dermatologie = Cesk Dermatol Ceskoslovenska Dermatologie = Cesk. Dermatol. Ceskoslovenska epidemiologie, mikrobiologie, imunologie = Cesk Epidemiol Mikrobiol Imunol Ceskoslovenska Epidemiologie, Mikrobiologie, Imunologie = Cesk. Epidemiol. Mikrobiol. Imunol. Ceskoslovenska farmacie = Cesk Farm Ceskoslovenska Farmacie = Cesk. Farm. Ceskoslovenska Fysiologie=Cesk Fysiol;; Ceskoslovenska Fysiologie = Cesk. Fysiol. Ceskoslovenska fysiologie / Ustredni ustav biologicky = Cesk Fysiol Ceskoslovenska gastroenterologie a vyziva = Cesk Gastroenterol Vyz Ceskoslovenska Gastroenterologie a Vyziva = Cesk. Gastroenterol. Vyz. Ceskoslovenska gynekologie = Cesk Gynekol Ceskoslovenska Gynekologie = Cesk. Gynekol. Ceskoslovenska hygiena = Cesk Hyg Ceskoslovenska Hygiena = Cesk. Hyg. Ceskoslovenska morfologie = Cesk Morfol Ceskoslovenska nemocnice = Ceskoslov Nemocnice Ceskoslovenska neurologie a neurochirurgie = Cesk Neurol Neurochir Ceskoslovenska Neurologie a Neurochirurgie = Cesk. Neurol. Neurochir. Ceskoslovenska neurologie = Cesk Neurol Ceskoslovenska Neurologie = Cesk. Neurol. Ceskoslovenska oftalmologie = Cesk Oftalmol Ceskoslovenska Oftalmologie = Cesk. Oftalmol. Ceskoslovenska onkologia = Cesk Onkol Ceskoslovenska otolaryngologie = Cesk Otolaryngol Ceskoslovenska Otolaryngologie = Cesk. Otolaryngol. Ceskoslovenska patologie = Cesk Patol Ceskoslovenska Patologie=Cesk Patol;; Ceskoslovenska Patologie = Cesk. Patol. Ceskoslovenska pediatrie = Cesk Pediatr Ceskoslovenska Pediatrie = Cesk. Pediatr. Ceskoslovenska psychiatrie = Cesk Psychiatr Ceskoslovenska Psychiatrie = Cesk. Psychiatr. Ceskoslovenska psychologie = Cesk Psychol Ceskoslovenska Psychologie = Cesk Psychol Ceskoslovenska Psychologie = Cesk. Psychol. Ceskoslovenska radiologie = Cesk Radiol Ceskoslovenska Radiologie = Cesk. Radiol. Ceskoslovenska rentgenologie = Cesk Rentgenol Ceskoslovenska stomatologie = Cesk Stomatol Ceskoslovenska Stomatologie = Cesk. Stomatol. Ceskoslovenske zdravotnictvi = Cesk Zdrav Ceskoslovenske Zdravotnictvi = Cesk. Zdrav. Ceskoslovensky casopis historicky / Ceskoslovenska akademie ved = Cesk Cas Hist Ceskoslovensky Casopis Pro Fysiku Sekce A = Cesk Casopis Fyz Ceskoslovensky Casopis Pro Fysiku Sekce A = Cesk. Casopis Fyz. Cesky Lid-ethnologicky Casopis = Ces Lid-ethnol Cas Cesky Lid-ethnologicky Casopis = Ces. Lid-ethnol. Cas. CES Odontologia = CES Odontol. CES odontologia / Instituto de Ciencias de la Salud = CES Odontol Cesra Saule = Cesra Saule Cestode Zoonoses: Echinococcosis and Cysticercosis = Nato Sci Ser I Life Cestode Zoonoses: Echinococcosis and Cysticercosis = Nato. Sci. Ser. I. Life. Ceur Workshop Proceedings = Ceur Workshop Procee Ceur Workshop Proceedings = Ceur Workshop Procee. CEX Reports, Civil Effects Exercise = CEX Rep. Civ. Eff. Exerc. CEX [reports]; civil effects exercise. U.S. Atomic Energy Commission = CEX Rep Civ Eff Exerc Ceylon Dental Journal = Ceylon Dent J Ceylon Dental Journal = Ceylon Dent. J. Ceylon Forester = Ceylon For. Ceylon Medical Journal=Ceylon Med J;; Ceylon Medical Journal = Ceylon Med. J. Cfd in Fluid Machinery Design = Imeche Sem Cfd in Fluid Machinery Design = Imeche. Sem. Cfd Modeling and Analysis of Different Novel Designs of Air-breathing Pem Fuel Cells = Energ Sci Eng Tech Cfd Modeling and Analysis of Different Novel Designs of Air-breathing Pem Fuel Cells = Energ. Sci. Eng. Tech. Cfi-ceramic Forum International = Cfi-ceram Forum Int Cfi-ceramic Forum International = Cfi-ceram. Forum Int. Cfn Lectures On Functional Nanostructures, Vol 1 = Lect Notes Phys Cfn Lectures On Functional Nanostructures, Vol 1 = Lect. Notes. Phys. Cfo-the Magazine for Senior Financial Executives = Cfo-mag Sr Financ Ex Cfo-the Magazine for Senior Financial Executives = Cfo-mag. Sr. Financ. Ex. Cge Models and Capital Income Tax Reforms: The Case of A Dual Income Tax for Germany = Lect Notes Econ Math Cge Models and Capital Income Tax Reforms: The Case of A Dual Income Tax for Germany = Lect. Notes. Econ. Math. Cgiar Study Papers = Cgiar St P Cgiar Study Papers = Cgiar St. P. C.H.A.C. review = CHAC Rev CHAC Review = CHAC Rev. C-h Activation = Top Curr Chem C-h Activation = Top. Curr. Chem. Chain drug review = Chain Drug Rev CHA insight = CHA Insight Chalcogenide Alloys for Reconfigurable Electronics = Mater Res Soc Symp P Chalcogenide Alloys for Reconfigurable Electronics = Mater. Res. Soc. Symp. P. Chalcogenide Letters = Chalcogenide Lett Chalcogenide Letters = Chalcogenide Lett. Chalcogenocarboxylic Acid Derivatives = Top Curr Chem Chalcogenocarboxylic Acid Derivatives = Top. Curr. Chem. Challenge and Innovation: Methodological Advances in Social Research On Hiv/aids = Soc As Aids Challenge and Innovation: Methodological Advances in Social Research On Hiv/aids = Soc. As. Aids. Challenge=Challenge Challenge for European Community : The Upheavals in Central and Eastern Europe = Etud Europ Challenge for European Community : The Upheavals in Central and Eastern Europe = Etud. Europ. Challenge of Anticipation: A Unifying Framework for The Analysis and Design of Artificial Cognitive Systems = Lect Notes Comput Sc Challenge of Anticipation: A Unifying Framework for The Analysis and Design of Artificial Cognitive Systems = Lect. Notes. Comput. Sc. Challenge of Forced Migration in Southern Africa = Afr Cent Publ Ser Challenge of Forced Migration in Southern Africa = Afr. Cent. Publ. Ser. Challenge of Fungal Infection Beyond 2000 = Roy Soc Med Int Cong Challenge of Fungal Infection Beyond 2000 = Roy. Soc. Med. Int. Cong. Challenge of Indochina: An Examination of The U.s. Role = Aspen Inst Conf Rep Challenge of Indochina: An Examination of The U.s. Role = Aspen. Inst. Conf. Rep. Challenge of Jesus Parables = Mcmaster New Test St Challenge of Jesus Parables = Mcmaster. New. Test. St. Challenge of Parenting in The '90s = Aspen Inst Conf Rep Challenge of Parenting in The '90s = Aspen. Inst. Conf. Rep. Challenge of Social Innovation in Urban Revitalization = Des Sci Plan Challenge of Social Innovation in Urban Revitalization = Des. Sci. Plan. Challenges and Advances in Computational Chemistry and Physics = Chall Adv Comput Che Challenges and Advances in Computational Chemistry and Physics = Chall. Adv. Comput. Che. Challenges and Negotiations for Women in Higher Education = Lifelong Learn Book Challenges and Negotiations for Women in Higher Education = Lifelong. Learn. Book. Challenges and Opportunities in Pediatric Oncology = Ann Ny Acad Sci Challenges and Opportunities in Pediatric Oncology = Ann. Ny. Acad. Sci. Challenges and Opportunities of Connected K-covered Wireless Sensor Networks = Stud Comput Intell Challenges and Opportunities of Connected K-covered Wireless Sensor Networks = Stud. Comput. Intell. Challenges and Opportunities of Healthgrids = St Heal T Challenges and Opportunities of Healthgrids = St. Heal. T. Challenges for Assistive Technology = Assist Technol Res S Challenges for Assistive Technology = Assist. Technol. Res. S. Challenges for Assistive Technology = Assist Techn Res Ser Challenges for Assistive Technology = Assist. Techn. Res. Ser. Challenges for Central Banks in An Enlarged Emu = Sch Ost Ges Europa Challenges for Central Banks in An Enlarged Emu = Sch. Ost. Ges. Europa. Challenges for Computational Intelligence = Stud Comput Intell Challenges for Computational Intelligence = Stud. Comput. Intell. Challenges for Diadromous Fishes in A Dynamic Global Environment = Am Fish S S Challenges for Diadromous Fishes in A Dynamic Global Environment = Am. Fish. S. S. Challenges for Neuroscience in The 21st Century = Tanig Symp Brain Sci Challenges for Neuroscience in The 21st Century = Tanig. Symp. Brain. Sci. Challenges for New Principals in The Twenty -first Century = Int Res Sch Leadersh Challenges for New Principals in The Twenty -first Century = Int. Res. Sch. Leadersh. Challenges for Next Generation Network Operations and Service Management, Proceedings = Lect Notes Comput Sc Challenges for Next Generation Network Operations and Service Management, Proceedings = Lect. Notes. Comput. Sc. Challenges in Acute Geriatric Care = Geriatr Gerontol Eld Challenges in Acute Geriatric Care = Geriatr. Gerontol. Eld. Challenges in Ad Hoc Networking = Int Fed Info Proc Challenges in Ad Hoc Networking = Int. Fed. Info. Proc. Challenges in Administrative Political and Developmental Renewal in Africa: Emerging Issues = Afr Polit Econ Secur Challenges in Administrative Political and Developmental Renewal in Africa: Emerging Issues = Afr. Polit. Econ. Secur. Challenges in Adolescent Health: An Australian Perspective = Health Hum Dev Challenges in Adolescent Health: An Australian Perspective = Health. Hum. Dev. Challenges in Medicine = Pub Jung St Challenges in Medicine = Pub. Jung. St. Challenges in Power, High Voltages and Machines = Ele Com Eng Challenges in Power, High Voltages and Machines = Ele. Com. Eng. Challenges in Process Integration and Device Technology = Proc Spie Challenges in Process Integration and Device Technology = Proc. Spie. Challenges in Process Integration and Device Technology = P Soc Photo-opt Ins Challenges in Process Integration and Device Technology = P. Soc. Photo-opt. Ins. Challenges in Radiation Protection and Nuclear Safety Regulation of The Nuclear Legacy = Nato Sci Peace Secur Challenges in Radiation Protection and Nuclear Safety Regulation of The Nuclear Legacy = Nato. Sci. Peace. Secur. Challenges in Remote Sensing = Ele Com Eng Challenges in Remote Sensing = Ele. Com. Eng. Challenges in Taste Chemistry and Biology = Acs Sym Ser Challenges in Taste Chemistry and Biology = Acs. Sym. Ser. Challenges in Volunteer Management = Res Public Manage Challenges in Volunteer Management = Res. Public. Manage. Challenges of A Changing Earth = Glo Ch Igbp Challenges of A Changing Earth = Glo. Ch. Igbp. Challenges of Administrative Political and Developmental Renewal in Africa = Afr Polit Econ Secur Challenges of Administrative Political and Developmental Renewal in Africa = Afr. Polit. Econ. Secur. Challenges of Educating People to Lead in A Challenging World = Educ Innov Econ Bus Challenges of Educating People to Lead in A Challenging World = Educ. Innov. Econ. Bus. Challenges of Education in Brazil = Ox Stud Comp Educ Challenges of Education in Brazil = Ox. Stud. Comp. Educ. Challenges of Expanding Internet: E-commerce, E-business, and E-government = Int Fed Info Proc Challenges of Expanding Internet: E-commerce, E-business, and E-government = Int. Fed. Info. Proc. Challenges of Human Resource Management in Japan = Routl Contemp Jpn Se Challenges of Human Resource Management in Japan = Routl. Contemp. Jpn. Se. Challenges of Modern Medicine = Chall Mod Med Challenges of Modern Medicine = Chall. Mod. Med. Challenges of Quality Education in Sub-saharan African Countries = Educ Compet Glob Wor Challenges of Quality Education in Sub-saharan African Countries = Educ. Compet. Glob. Wor. Challenges of Spatial Development of Ljubljana and Belgrade = Geograff Challenges of Spatial Development of Ljubljana and Belgrade = Geograff. Challenges of Systems Biology: Community Efforts to Harness Biological Complexity = Ann Ny Acad Sci Challenges of Systems Biology: Community Efforts to Harness Biological Complexity = Ann. Ny. Acad. Sci. Challenges to Asian Urbanization in The 21st Century = Geoj Lib Challenges to Asian Urbanization in The 21st Century = Geoj. Lib. Challenges to Globalization: Analyzing The Economics = Nber Conf R Challenges to Globalization: Analyzing The Economics = Nber. Conf. R. Challenges to Library Learning: Solutions for Librarians = Rout Stud Lib Inform Challenges to Library Learning: Solutions for Librarians = Rout. Stud. Lib. Inform. Challenges to The Global Trading System = Pac Trad Dev Conf S Challenges to The Global Trading System = Pac. Trad. Dev. Conf. S. Challenge to Reform Arts Education : What Role Can Research Play = Aca Art R S Challenge to Reform Arts Education : What Role Can Research Play = Aca. Art. R. S. Challenging American Leadership: Impact of National Quality On Risk of Losing Leadership = Top Saf Risk Reliab Challenging American Leadership: Impact of National Quality On Risk of Losing Leadership = Top. Saf. Risk Reliab. Challenging Euro-america's Politics of Identity: The Return of The Native = Rethink Glob Challenging Euro-america's Politics of Identity: The Return of The Native = Rethink. Glob. Challenging Mathematics in and Beyond The Classroom: The 16th Icmi Study = New Icmi Stud Ser Challenging Mathematics in and Beyond The Classroom: The 16th Icmi Study = New. Icmi Stud. Ser. Challenging Moral Particularism = Rout Stud Ethics Mor Challenging Moral Particularism = Rout. Stud. Ethics. Mor. Challenging Questions = Subnucl Ser Challenging Questions = Subnucl. Ser. Challenging Racism in Britain and Germany = Migrat Minor Citizen Challenging Racism in Britain and Germany = Migrat. Minor. Citizen. Challenging The Aid Paradigm: Western Currents and Asian Alternatives = Rethink Int Dev Challenging The Aid Paradigm: Western Currents and Asian Alternatives = Rethink. Int. Dev. Champ Ethique = Champ Ethiq Champ Ethique = Champ Ethiq. Chance Action and Therapy: The Playful Way of Changing = Health Hum Dev Chance Action and Therapy: The Playful Way of Changing = Health. Hum. Dev. Chancellors Symposium Series = Chanc Symp Chancellors Symposium Series = Chanc. Symp. Chandos Asian Studies Series-contemporary Issues and Trends = Chandos Asian Stud Chandos Asian Studies Series-contemporary Issues and Trends = Chandos Asian Stud. Chandos Information Professional Series = Chandos Inf Prof Ser Chandos Information Professional Series = Chandos Inf. Prof. Ser. Chandos Internet Series = Chandos Internet Ser Chandos Internet Series = Chandos Internet Ser. Chandos Publishing Series = Chandos Publ Ser Chandos Publishing Series = Chandos Publ. Ser. Changeable and Reconfigurable Manufacturing Systems = Springer Ser Adv Man Changeable and Reconfigurable Manufacturing Systems = Springer. Ser. Adv. Man. Change and Continuity in Applied Linguistics = Brit S Ap L Change and Continuity in Applied Linguistics = Brit. S. Ap. L. Change and Continuity in Early Modern Cosmology = Archimedes Change and Continuity in Early Modern Cosmology = Archimedes. Change and Development = J Piaget Sy Change and Development = J. Piaget. Sy. Change and Language = Brit S Ap L Change and Language = Brit. S. Ap. L. Change At The Top : The Effects of Corporate Mergers, Takeovers and Management Changes = Probl Ind P Change At The Top : The Effects of Corporate Mergers, Takeovers and Management Changes = Probl. Ind. P. Change = Change Change International = Change Int Change International = Change Int. Change in The Construction Industry: An Account of The Uk Construction Industry Reform Movement 1993-2003 = Routl Stud Bus Organ Change in The Construction Industry: An Account of The Uk Construction Industry Reform Movement 1993-2003 = Routl. Stud. Bus. Organ. Changements A Long Terme De La Diversite Des Ecosystemes = Oceanis-ser Doc Changements A Long Terme De La Diversite Des Ecosystemes = Oceanis-ser. Doc. Change-paris = Change-paris Change-point Problems = Inst Math S Change-point Problems = Inst. Math. S. Changes (Hove, England) = Changes Changes in Exchange Rates in Rapidly Developing Countries = Nber E A Ec Changes in Exchange Rates in Rapidly Developing Countries = Nber. E. A. Ec. Changes in Regional Firm Founding Activities = Routl Stud Glob Comp Changes in Regional Firm Founding Activities = Routl. Stud. Glob. Comp. Changes in Social and Business Environment = Change Soc Bus Env Changes in Social and Business Environment = Change. Soc. Bus. Env. Changes in Social and Business Environment-kaunas = Change Soc Bus Env Changes in Social and Business Environment-kaunas = Change. Soc. Bus. Env. Changes On The Horizon = Iamslic C S Changes On The Horizon = Iamslic. C. S. Changgeng Yi Xue Za Zhi (Chang Gung Medical Journal) = Changgeng Yi Xue Za Zhi Chang Gung medical journal = Chang Gung Med J Chang Gung Medical Journal = Chang Gung Med. J. Changing Aspects in Stroke Surgery: Aneurysms, Dissections, Moyamoya Angiopathy and Ec-ic Bypass = Acta Neurochir Suppl Changing Aspects in Stroke Surgery: Aneurysms, Dissections, Moyamoya Angiopathy and Ec-ic Bypass = Acta. Neurochir. Suppl. Changing Aspects in Stroke Surgery: Aneurysms, Dissections, Moyamoya Angiopathy and Ec-ic Bypass = Act Neur S Changing Aspects in Stroke Surgery: Aneurysms, Dissections, Moyamoya Angiopathy and Ec-ic Bypass = Act. Neur. S. Changing Business Relationships : Small Business Growth and Other Challenges - Proceedings of The Joint Seaanz and Iie Small Enterprise Conference 1996 = Conf S Inst Changing Business Relationships : Small Business Growth and Other Challenges - Proceedings of The Joint Seaanz and Iie Small Enterprise Conference 1996 = Conf. S. Inst. Changing Chinese Legal System, 1978 Present: Centralization of Power and Rationalization of The Legal System = E Asia Hist Polit So Changing Chinese Legal System, 1978 Present: Centralization of Power and Rationalization of The Legal System = E. Asia. Hist. Polit. So. Changing Circumpolar North: Opportunities for Academic Development = U Lap A C P Changing Circumpolar North: Opportunities for Academic Development = U. Lap. A. C. P. Changing Climates, Earth Systems and Society = Int Year Planet Eart Changing Climates, Earth Systems and Society = Int. Year. Planet. Eart. Changing Climates in North American Politics: Institutions, Policymaking, and Multilevel Governance = Am Comp Environ Poli Changing Climates in North American Politics: Institutions, Policymaking, and Multilevel Governance = Am. Comp. Environ. Poli. Changing Conception of Psychological Life = J Piaget Sy Changing Conception of Psychological Life = J. Piaget. Sy. Changing Core Mathematics = Maa Notes Ser Changing Core Mathematics = Maa. Notes. Ser. Changing Distribution of Income in An Open U.s. Economy = Contrib To Econ Anal Changing Distribution of Income in An Open U.s. Economy = Contrib. To. Econ. Anal. Changing Dynamics of Higher Education Middle Management = High Educ Dynam Changing Dynamics of Higher Education Middle Management = High. Educ. Dynam. Changing Economic Geography of Globalization = Routl Stud Glob Comp Changing Economic Geography of Globalization = Routl. Stud. Glob. Comp. Changing Economics of Medical Technology = Med Inn Cr Changing Economics of Medical Technology = Med. Inn. Cr. Changing European Employment and Welfare Regimes = Rout Eui Stud Polit Changing European Employment and Welfare Regimes = Rout. Eui. Stud. Polit. Changing European Employment and Welfare Regimes = Routl Eui Stud Polit Changing European Employment and Welfare Regimes = Routl. Eui. Stud. Polit. Changing Face of Academic Life: Analytical and Comparative Perspectives = Issues High Educ-pal Changing Face of Academic Life: Analytical and Comparative Perspectives = Issues. High. Educ-pal. Changing Face of Call: A Japanese Perspective = Lang L Lang Technol Changing Face of Call: A Japanese Perspective = Lang. L. Lang. Technol. Changing Face of Corpus Linguistics = Lang Comput Changing Face of Corpus Linguistics = Lang. Comput. Changing Face of Disease: Implications for Society = Soc St Hum Changing Face of Disease: Implications for Society = Soc. St. Hum. Changing Face of European Labour Law and Social Policy = Stud Emp Soc Policy Changing Face of European Labour Law and Social Policy = Stud. Emp. Soc. Policy Changing Face of Management in South East Asia = Work Asia Changing Face of Management in South East Asia = Work. Asia Changing Face of People Management in India = Work Asia Changing Face of People Management in India = Work. Asia. Changing Face of Vietnamese Management = Work Asia Changing Face of Vietnamese Management = Work. Asia. Changing Face of Women Managers in Asia = Work Asia Changing Face of Women Managers in Asia = Work. Asia Changing Faces of Journalism = Shap Inq Cult Commun Changing Faces of Journalism = Shap. Inq. Cult. Commun. Changing Faces of Journalism = Shap Inquir Cult Changing Faces of Journalism = Shap. Inquir. Cult. Changing Families, Changing Food = Palgr Mac Stud Fam Changing Families, Changing Food = Palgr. Mac. Stud. Fam. Changing France: The Politics That Markets Make = Fr Polit Soc Cult Changing France: The Politics That Markets Make = Fr. Polit. Soc. Cult. Changing Governance of The Sciences: The Advent of Research Evaluation Systems = Sociol Sci Yearb Changing Governance of The Sciences: The Advent of Research Evaluation Systems = Sociol. Sci. Yearb. Changing Hospital Industry = Nber Conf R Changing Hospital Industry = Nber. Conf. R. Changing Identities in Higher Education: Voicing Perspectives = Key Issues High Educ Changing Identities in Higher Education: Voicing Perspectives = Key. Issues. High. Educ. Changing Images of Civil Society = Routl Stud Gov Publ Changing Images of Civil Society = Routl. Stud. Gov. Publ. Changing Information Technologies: Research Challenges in The Economics of Information = Brit Lib Ser Changing Information Technologies: Research Challenges in The Economics of Information = Brit. Lib. Ser. Changing Landscape of Academic Women's Health Care in The United States = Int Libr Eth Law New Changing Landscape of Academic Women's Health Care in The United States = Int. Libr. Eth. Law. New. Changing Language Education Through Call = Rout Stud Comp Assis Changing Language Education Through Call = Rout. Stud. Comp. Assis. Changing Life Patterns in Western Industrial Societies = Adv Life Course Res Changing Life Patterns in Western Industrial Societies = Adv. Life Course. Res. Changing Lives, Changing Rites : Ritual and Social Dynamics in Philippine and Indonesian Uplands = Mich St S Changing Lives, Changing Rites : Ritual and Social Dynamics in Philippine and Indonesian Uplands = Mich. St. S. Changing Maintenance Business-optimising Your Investment = Proc Inst Mech Eng S Changing Maintenance Business-optimising Your Investment = Proc. Inst. Mech. Eng. S. Changing Media-changing Europe = Changing Media Changing Media-changing Europe = Changing Media. Changing men (Madison, Wis.) = Chang Men Changing Needs in Pediatric Education = Nestle Nutr Works Se Changing Needs in Pediatric Education = Nestle. Nutr. Works. Se. Changing Paradigm of Consulting: Adjusting to The Fast-paced World = Res Manag Consult Changing Paradigm of Consulting: Adjusting to The Fast-paced World = Res. Manag. Consult. Changing Patterns of International Rivalry = Int Conf Bu Changing Patterns of International Rivalry = Int. Conf. Bu. Changing Political Agendas = Ctr R St P Changing Political Agendas = Ctr. R. St. P. Changing Politics of European Security: Europe Alone = Palgrave Stud Eur Un Changing Politics of European Security: Europe Alone = Palgrave. Stud. Eur. Un. Changing Prairie Landscapes = Can Plain P Changing Prairie Landscapes = Can. Plain. P. Changing Role of Government: The Reform of Public Services in Developing Countries = Role Gov Adjust Econ Changing Role of Government: The Reform of Public Services in Developing Countries = Role Gov. Adjust. Econ. Changing Role of Physics Departments in Modern Universities - Proceedings of International Conference On Undergraduate Physics Education, Pts 1 and 2 = Aip Conf Proc Changing Role of Physics Departments in Modern Universities - Proceedings of International Conference On Undergraduate Physics Education, Pts 1 and 2 = Aip. Conf. Proc. Changing Roles of Ceramics in Society : 26,000 B P to The Present = Ceram Civil Changing Roles of Ceramics in Society : 26,000 B P to The Present = Ceram. Civil. Changing Roles of Ngos in The Creation, Storage, and Dissemination of Information in Developing Countries = Ifla Publ Changing Roles of Ngos in The Creation, Storage, and Dissemination of Information in Developing Countries = Ifla. Publ. Changing Soviet Union in The New Europe = St Commun T Changing Soviet Union in The New Europe = St. Commun. T. Changing Strategic Landscape = Int Inst St Changing Strategic Landscape = Int. Inst. St. Changing Tax Law in East and Southeast Asia Towards The 21st Century = Pub Law E Se Asia Changing Tax Law in East and Southeast Asia Towards The 21st Century = Pub. Law E. Se. Asia Changing Television Environments, Proceedings = Lect Notes Comput Sc Changing Television Environments, Proceedings = Lect. Notes. Comput. Sc. Changing The Ways We Work = Adv Des Man Changing The Ways We Work = Adv. Des. Man. Changing times = Changing Times Changing Times = Changing Times Changing to National Health Care = Eth Chang W Changing to National Health Care = Eth. Chang. W. Changing Transatlantic Security Relations = Contemp Secur Stud Changing Transatlantic Security Relations = Contemp. Secur. Stud. Changing Trends in Antarctic Research = Environ Assess Changing Trends in Antarctic Research = Environ. Assess. Changing University = Nato Adv Sci I D-beh Changing University = Nato. Adv. Sci. I. D-beh. Changing Views of Cajal's Neuron = Prog Brain Res Changing Views of Cajal's Neuron = Prog. Brain. Res. Changing Visions of East Asia, 1943-93: Transformations and Continuities = Routl Stud Mod Hist Changing Visions of East Asia, 1943-93: Transformations and Continuities = Routl. Stud. Mod. Hist. Changing Visual System = Nato Adv Sci I A-lif Changing Visual System = Nato. Adv. Sci. I. A-lif. Changing Work Patterns and Social Security = Eiss Kluw Law Int S Changing Work Patterns and Social Security = Eiss. Kluw. Law. Int. S. Chang Keng I Hsueh Chang Gung Medical Journal=Chang Keng I Hsueh;; Changsha Communications University = J. Changsha Comm. Univ. Changsha University of Electric Power = J. Changsha Univ. Electr. Power Nat. Sci. Ed. Channel Flow, Ductile Extrusion and Exhumation in Continental Collision Zones = Geol Soc Spec Publ Channel Flow, Ductile Extrusion and Exhumation in Continental Collision Zones = Geol. Soc. Spec. Publ. Channels = Channels Chanoyu Quarterly-tea and The Arts of Japan = Chanoyu Quart Chanoyu Quarterly-tea and The Arts of Japan = Chanoyu Quart. Chanson: Son Histoire Et Sa Famille Dans Les Dictionnaires De Langue Francaise = Beih Z Roman Philol Chanson: Son Histoire Et Sa Famille Dans Les Dictionnaires De Langue Francaise = Beih. Z. Roman. Philol. Chaos and Quantum Physics = Les Houch S Chaos and Quantum Physics = Les. Houch. S. Chaos and Stability in Planetary Systems = Lect Notes Phys Chaos and Stability in Planetary Systems = Lect. Notes. Phys. Chaos and The Changing Nature of Science and Medicine: An Introduction = Aip Conf Proc Chaos and The Changing Nature of Science and Medicine: An Introduction = Aip. Conf. Proc. Chaos-based Cryptography: Theory, Algorithms and Applications = Stud Comput Intell Chaos-based Cryptography: Theory, Algorithms and Applications = Stud. Comput. Intell. Chaos = Chaos Chaos = Chaos Chaos: Concepts, Control and Constructive Use = Underst Complex Syst Chaos: Concepts, Control and Constructive Use = Underst. Complex. Syst. Chaos Control: Theory and Applications = Lect Notes Contr Inf Chaos Control: Theory and Applications = Lect. Notes. Contr. Inf. Chaos Expansions, Multiple Wiener-ito Integrals and Their Applications = Prob Stoch Ser Chaos Expansions, Multiple Wiener-ito Integrals and Their Applications = Prob. Stoch. Ser. Chaos: From Simple Models to Complex Systems = Ser Adv Stat Mech Chaos: From Simple Models to Complex Systems = Ser. Adv. Stat. Mech. Chaos in Astronomy, Conference 2007 = Astrophysics Space Chaos in Astronomy, Conference 2007 = Astrophysics. Space. Chaos in Biology and Medicine = P Soc Photo-opt Ins Chaos in Biology and Medicine = P. Soc. Photo-opt. Ins. Chaos in Communications = P Soc Photo-opt Ins Chaos in Communications = P. Soc. Photo-opt. Ins. Chaos in Mesoscopic Systems = Wss Nonlin Sci Ser B Chaos in Mesoscopic Systems = Wss. Nonlin. Sci. Ser. B. Chaos in Optics = P Soc Photo-opt Ins Chaos in Optics = P. Soc. Photo-opt. Ins. Chaos in Structural Mechanics = Underst Complex Syst Chaos in Structural Mechanics = Underst. Complex. Syst. Chaos/nonlinear Dynamics: Methods and Commercialization = P Soc Photo-opt Ins Chaos/nonlinear Dynamics: Methods and Commercialization = P. Soc. Photo-opt. Ins. Chaos, Nonlinearity, Complexity: The Dynamical Paradigm of Nature = Stud Fuzz Soft Comp Chaos, Nonlinearity, Complexity: The Dynamical Paradigm of Nature = Stud. Fuzz. Soft. Comp. Chaos, Order, and Patterns = Nato Adv Sci I B-phy Chaos, Order, and Patterns = Nato. Adv. Sci. I. B-phy. Chaos Paradigm: Developments and Applications in Engineering and Science = Aip Conf Proc Chaos Paradigm: Developments and Applications in Engineering and Science = Aip. Conf. Proc. Chaos, Resonance and Collective Dynamical Phenomena in The Solar System = Iau Symp Chaos, Resonance and Collective Dynamical Phenomena in The Solar System = Iau. Symp. Chaos, solitons, and fractals = Chaos Solitons Fractals Chaos, Solitons and Fractals = Chaos Solitons Fractals Chaos Solitons & Fractals = Chaos Soliton Fract Chaos Solitons & Fractals = Chaos Soliton. Fract. Chaos, Solitons & Fractals = Chaos, Solitons Fractals Chaos - The Interplay Between Stochastic and Deterministic Behaviour = Lect Notes Phys Chaos - The Interplay Between Stochastic and Deterministic Behaviour = Lect. Notes. Phys. Chaos Uncreated: A Reassessment of The Theme of Chaos in The Hebrew Bible = Beih Z Alttest Wiss Chaos Uncreated: A Reassessment of The Theme of Chaos in The Hebrew Bible = Beih. Z. Alttest. Wiss. Chaos (Woodbury, N.Y.) = Chaos Chaotic Circuits for Communications = P Soc Photo-opt Ins Chaotic Circuits for Communications = P. Soc. Photo-opt. Ins. Chaotic Dynamics and Transport in Classical and Quantum Systems = Nato Sci Ser Ii Math Chaotic Dynamics and Transport in Classical and Quantum Systems = Nato. Sci. Ser. Ii. Math. Chaotic Dynamics and Transport in Fluids and Plasmas = Res Tr Phys Chaotic Dynamics and Transport in Fluids and Plasmas = Res. Tr. Phys. Chaotic Dynamics = Nato Adv Sci Inst Se Chaotic Dynamics = Nato. Adv. Sci. Inst. Se. Chaotic, Fractal, and Nonlinear Signal Processing = Aip Conf Proc Chaotic, Fractal, and Nonlinear Signal Processing = Aip. Conf. Proc. Chaotic Worlds: From Order to Disorder in Gravitational N-body Dynamical Systems = Nato Sci Ser Ii-math Chaotic Worlds: From Order to Disorder in Gravitational N-body Dynamical Systems = Nato. Sci. Ser. Ii-math. Chaotic Worlds: From Order to Disorder in Gravitational N-body Dynamical Systems = Nato Sci Ser Ii Math Chaotic Worlds: From Order to Disorder in Gravitational N-body Dynamical Systems = Nato. Sci. Ser. Ii. Math. [Chapchi] Journal. Taehan Oekwa Hakhoe = Taehan Oekwa Hakhoe Chapchi Chapman and Hall Ecotoxicology Series = Ch Ecotoxic Chapman and Hall Ecotoxicology Series = Ch. Ecotoxic. Chapman and Hall Mathematics Series = Chapman and Hall Math. Ser. Chapman & Hall-crc Applied Mathematics and Nonlinear Science Series = Ch Crc Appl Math Non Chapman & Hall-crc Applied Mathematics and Nonlinear Science Series = Ch. Crc. Appl. Math. Non. Chapman & Hall-crc Biostatistics Series = Ch Crc Biostat Ser Chapman & Hall-crc Biostatistics Series = Ch. Crc. Biostat. Ser. Chapman & Hall-crc Computational Science Series = Ch Crc Comp Sci Ser Chapman & Hall-crc Computational Science Series = Ch. Crc. Comp. Sci. Ser. Chapman & Hall-crc Computer and Information Science Series = Ch Crc Comp Info Sci Chapman & Hall-crc Computer and Information Science Series = Ch. Crc. Comp. Info. Sci. Chapman & Hall-crc Computer Science and Data Analysis Series = Ch Crc Comp Sci Data Chapman & Hall-crc Computer Science and Data Analysis Series = Ch. Crc. Comp. Sci. Data Chapman & Hall-crc Data Mining and Knowledge Discovery Series = Ch Crc Data Min Know Chapman & Hall-crc Data Mining and Knowledge Discovery Series = Ch. Crc. Data Min. Know. Chapman & Hall-crc Finance Series = Ch Crc Financ Ser Chapman & Hall-crc Finance Series = Ch. Crc. Financ. Ser. Chapman & Hall-crc Financial Mathematics Series = Ch Crc Financ Math Chapman & Hall-crc Financial Mathematics Series = Ch. Crc. Financ. Math. Chapman & Hall-crc Handbooks of Modern Statistical Methods = Ch Crc Handb Mod Sta Chapman & Hall-crc Handbooks of Modern Statistical Methods = Ch. Crc. Handb. Mod. Sta. Chapman & Hall-crc Machine Learning & Pattern Recognition Series = Ch Crc Mach Learn Pa Chapman & Hall-crc Machine Learning & Pattern Recognition Series = Ch. Crc. Mach. Learn. Pa. Chapman & Hall Crc Mathematical and Computational Biology Series = Ch Crc Math Comp Bio Chapman & Hall Crc Mathematical and Computational Biology Series = Ch. Crc Math. Comp. Bio. Chapman & Hall Crc Mathematical and Computational Imaging Sciences = Ch Crc Math Comp Ima Chapman & Hall Crc Mathematical and Computational Imaging Sciences = Ch. Crc Math. Comp. Ima. Chapman & Hall/crc Monographs and Surveys in Pure and Applied Mathematics = Ch/c Mon Sur Pur App Chapman & Hall/crc Monographs and Surveys in Pure and Applied Mathematics = Ch/c. Mon. Sur. Pur. App. Chapman & Hall Crc Monographs and Surveys in Pure and Applied Mathematics = Ch Crc Monogr Surv P Chapman & Hall Crc Monographs and Surveys in Pure and Applied Mathematics = Ch. Crc Monogr. Surv. P. Chapman & Hall Crc Numerical Analysis and Scientific Computing = Ch Crc Numer Anal Sc Chapman & Hall Crc Numerical Analysis and Scientific Computing = Ch. Crc Numer. Anal. Sc. Chapman & Hall/crc Research Notes in Mathematics = Ch Crc Res Notes Chapman & Hall/crc Research Notes in Mathematics = Ch. Crc. Res. Notes Chapman & Hall Crc Research Notes in Mathematics = Ch Crc Res Notes Mat Chapman & Hall Crc Research Notes in Mathematics = Ch. Crc Res. Notes Mat. Chapman & Hall/crc Research Notes in Mathematics Series = Ch Crc Res Notes Chapman & Hall/crc Research Notes in Mathematics Series = Ch. Crc. Res. Notes Chapman & Hall Crc Statistics in The Social and Behavioral Sciences Series = Ch Crc Stat Soc Beha Chapman & Hall Crc Statistics in The Social and Behavioral Sciences Series = Ch. Crc Stat. Soc. Beha. Chapman & Hall Crc Studies in Informatics Series = Ch Crc Stud Info Ser Chapman & Hall Crc Studies in Informatics Series = Ch. Crc Stud. Info. Ser. Chapman & Hall Crc Texts in Statistical Science Series = Ch Crc Text Stat Sci Chapman & Hall Crc Texts in Statistical Science Series = Ch. Crc Text. Stat. Sci. Chapman & Hall Probability Series = Chapman & Hall Probab. Ser. Character and Personality = Charact Person Character and Personality = Charact. Person. Character Evidence: An Abductive Theory = Argum Lib Character Evidence: An Abductive Theory = Argum. Lib. Characterisation and Engineering of Protein-carbohydrate Interactions = Vtt Publ Characterisation and Engineering of Protein-carbohydrate Interactions = Vtt. Publ. Characterisation of Porous Solids Viii = Roy Soc Ch Characterisation of Porous Solids Viii = Roy. Soc. Ch. Characteristic Functions, Scattering Functions and Transfer Functions:the Moshe Livsic Memorial Volume = Oper Theor Characteristic Functions, Scattering Functions and Transfer Functions:the Moshe Livsic Memorial Volume = Oper. Theor. Characteristic Functions, Scattering Functions and Transfer Functions:the Moshe Livsic Memorial Volume = Oper Theory Adv Appl Characteristic Functions, Scattering Functions and Transfer Functions:the Moshe Livsic Memorial Volume = Oper. Theory. Adv. Appl. Characteristics and Consequences of Orbital Debris and Natural Space Impactors = P Soc Photo-opt Ins Characteristics and Consequences of Orbital Debris and Natural Space Impactors = P. Soc. Photo-opt. Ins. Characterization and Chemical Modification of The Silica Surface = Stud Surf Sci Catal Characterization and Chemical Modification of The Silica Surface = Stud. Surf. Sci. Catal. Characterization and Control of Interfaces for High Quality Advanced Materials = Ceram Trans Characterization and Control of Interfaces for High Quality Advanced Materials = Ceram. Trans. Characterization and Control of Interfaces for High Quality Advanced Materials Ii = Ceram Trans Characterization and Control of Interfaces for High Quality Advanced Materials Ii = Ceram. Trans. Characterization and Control of Interfaces for High Quality Advanced Materials Iii = Ceram Trans Characterization and Control of Interfaces for High Quality Advanced Materials Iii = Ceram. Trans. Characterization and Design of Zeolite Catalysts: Solid Acidity, Shape Selectivity and Loading Properties = Springer Ser Mater S Characterization and Design of Zeolite Catalysts: Solid Acidity, Shape Selectivity and Loading Properties = Springer. Ser. Mater. S. Characterization and Metrology for Ulsi Technology 2000, International Conference = Aip Conf Proc Characterization and Metrology for Ulsi Technology 2000, International Conference = Aip. Conf. Proc. Characterization and Metrology for Ulsi Technology 2005 = Aip Conf Proc Characterization and Metrology for Ulsi Technology 2005 = Aip. Conf. Proc. Characterization and Metrology for Ulsi Technology = Aip Conf Proc Characterization and Metrology for Ulsi Technology = Aip. Conf. Proc. Characterization and Modeling to Control Sintered Ceramic Microstructures and Properties = Ceram Trans Characterization and Modeling to Control Sintered Ceramic Microstructures and Properties = Ceram. Trans. Characterization and Performance of Calcium Phosphate Coatings for Implants = Am Soc Test Mater Characterization and Performance of Calcium Phosphate Coatings for Implants = Am. Soc. Test. Mater. Characterization and Propagation of Sources and Backgrounds = P Soc Photo-opt Ins Characterization and Propagation of Sources and Backgrounds = P. Soc. Photo-opt. Ins. Characterization and Properties of Petroleum Fractions = Astm Man Ser Characterization and Properties of Petroleum Fractions = Astm. Man. Ser. Characterization and Toxicity of Smoke = Am Soc Test Mater Characterization and Toxicity of Smoke = Am. Soc. Test. Mater. Characterization of Biotechnology Pharmaceutical Products = Dev Biol Stand Characterization of Biotechnology Pharmaceutical Products = Dev. Biol. Stand. Characterization of Nanoparticles Intended for Drug Delivery = Methods Mol Biol Characterization of Nanoparticles Intended for Drug Delivery = Methods. Mol. Biol. Characterization of Partially Polarized Light Fields = Springer Ser Opt Sci Characterization of Partially Polarized Light Fields = Springer. Ser. Opt. Sci. Characterization of Plasma-enhanced Cvd Processes = Mater Res Soc Symp P Characterization of Plasma-enhanced Cvd Processes = Mater. Res. Soc. Symp. P. Characterization of Polymer Surfaces and Thin Films = Prog Coll Pol Sci S Characterization of Polymer Surfaces and Thin Films = Prog. Coll. Pol. Sci. S. Characterization of Porous Solids Iii = Stud Surf Sci Catal Characterization of Porous Solids Iii = Stud. Surf. Sci. Catal. Characterization of Porous Solids Ii = Stud Surf Sci Catal Characterization of Porous Solids Ii = Stud. Surf. Sci. Catal. Characterization of Porous Solids Vii - Proceedings of The 7th International Symposium On The Characterization of Porous Solids (cops-vii), Aix-en-provence, France, 26-28 May 2005 = Stud Surf Sci Catal Characterization of Porous Solids Vii - Proceedings of The 7th International Symposium On The Characterization of Porous Solids (cops-vii), Aix-en-provence, France, 26-28 May 2005 = Stud. Surf. Sci. Catal. Characterization of Porous Solids Vi = Stud Surf Sci Catal Characterization of Porous Solids Vi = Stud. Surf. Sci. Catal. Characterization of Porous Solids V = Stud Surf Sci Catal Characterization of Porous Solids V = Stud. Surf. Sci. Catal. Characterization of Technological Materials = Mater Sci Forum Characterization of Technological Materials = Mater. Sci. Forum. Characterization of Terahertz Emission From High Resitivity Fe-doped Bulk Ga0.69in0.31as Based Photoconducting Antennas = Springer Theses-reco Characterization of Terahertz Emission From High Resitivity Fe-doped Bulk Ga0.69in0.31as Based Photoconducting Antennas = Springer. Theses-reco. Characterization of The Structure and Chemistry of Defects in Materials = Mat Res S C Characterization of The Structure and Chemistry of Defects in Materials = Mat. Res. S. C. Characterization, Propagation, and Simulation of Infrared Scenes = P Soc Photo-opt Ins Characterization, Propagation, and Simulation of Infrared Scenes = P. Soc. Photo-opt. Ins. Characterization, Propagation, and Simulation of Sources and Backgrounds Iii = P Soc Photo-opt Ins Characterization, Propagation, and Simulation of Sources and Backgrounds Iii = P. Soc. Photo-opt. Ins. Characterization, Propagation, and Simulation of Sources and Backgrounds Ii = P Soc Photo-opt Ins Characterization, Propagation, and Simulation of Sources and Backgrounds Ii = P. Soc. Photo-opt. Ins. Characterization, Propagation, and Simulation of Sources and Backgrounds = P Soc Photo-opt Ins Characterization, Propagation, and Simulation of Sources and Backgrounds = P. Soc. Photo-opt. Ins. Character Recognition Technologies = P Soc Photo-opt Ins Character Recognition Technologies = P. Soc. Photo-opt. Ins. Character Theory of Finite Groups = Contemp Math Character Theory of Finite Groups = Contemp. Math. Charcot-marie-tooth Disorders = Ann Ny Acad Sci Charcot-marie-tooth Disorders = Ann. Ny. Acad. Sci. Charge Composition of Ultra Heavy Nuclei = Adv Space Res Charge Composition of Ultra Heavy Nuclei = Adv. Space. Res. Charge-coupled Devices and Solid State Optical Sensors Iii = P Soc Photo-opt Ins Charge-coupled Devices and Solid State Optical Sensors Iii = P. Soc. Photo-opt. Ins. Charge-coupled Devices and Solid State Optical Sensors Iv = P Soc Photo-opt Ins Charge-coupled Devices and Solid State Optical Sensors Iv = P. Soc. Photo-opt. Ins. Charge-coupled Devices and Solid State Optical Sensors = P Soc Photo-opt Ins Charge-coupled Devices and Solid State Optical Sensors = P. Soc. Photo-opt. Ins. Charge-coupled Devices and Solid State Optical Sensors V = P Soc Photo-opt Ins Charge-coupled Devices and Solid State Optical Sensors V = P. Soc. Photo-opt. Ins. Charged Particle Detection, Diagnostics, and Imaging = P Soc Photo-opt Ins Charged Particle Detection, Diagnostics, and Imaging = P. Soc. Photo-opt. Ins. Charged Particle Optics Iii = P Soc Photo-opt Ins Charged Particle Optics Iii = P. Soc. Photo-opt. Ins. Charged-particle Optics Ii = P Soc Photo-opt Ins Charged-particle Optics Ii = P. Soc. Photo-opt. Ins. Charged Particle Optics Iv = P Soc Photo-opt Ins Charged Particle Optics Iv = P. Soc. Photo-opt. Ins. Charged-particle Optics = P Soc Photo-opt Ins Charged-particle Optics = P. Soc. Photo-opt. Ins. Charged Particle Traps Ii: Applications = Springer Ser Atom Op Charged Particle Traps Ii: Applications = Springer. Ser. Atom. Op. Charged Semiconductor Defects: Structure, Thermodynamics and Diffusion = Eng Mater Process Charged Semiconductor Defects: Structure, Thermodynamics and Diffusion = Eng. Mater. Process. Charge Injection Systems: Physical Principles, Experimental and Theoretical Work = Heat Mass Transf Charge Injection Systems: Physical Principles, Experimental and Theoretical Work = Heat. Mass. Transf. Charge Migration in Dna: Perspectives From Physics, Chemistry, and Biology = Nanosci Technol Charge Migration in Dna: Perspectives From Physics, Chemistry, and Biology = Nanosci. Technol. Charity and Giving in Monotheistic Religions = Stud Gesch Kult Isla Charity and Giving in Monotheistic Religions = Stud. Gesch. Kult. Isla. Charity and Mutual Aid in Europe and North America Since 1800 = Routl Stud Mod Hist Charity and Mutual Aid in Europe and North America Since 1800 = Routl. Stud. Mod. Hist. Charity Law & Social Policy: National and International Perspectives On The Functions of The Law Relating to Charities = Libr Public Policy P Charity Law & Social Policy: National and International Perspectives On The Functions of The Law Relating to Charities = Libr. Public. Policy. P. Charlemagne, Muhammad, and The Arab Roots of Capitalism = Stud Gesch Kult Isla Charlemagne, Muhammad, and The Arab Roots of Capitalism = Stud. Gesch. Kult. Isla. Charles Bally( 1865-1947): Historicite Des Debats Linguistiques Et Didactiques = Bib Info Gramm Charles Bally( 1865-1947): Historicite Des Debats Linguistiques Et Didactiques = Bib. Info. Gramm. Charles Dickens, A Tale of Two Cities and The French Revolution = Palgrave Stud Ninet- Charles Dickens, A Tale of Two Cities and The French Revolution = Palgrave. Stud. Ninet-. Charles Dickens, A Tale of Two Cities and The French Revolution = Palgr Stud Nineteen Charles Dickens, A Tale of Two Cities and The French Revolution = Palgr. Stud. Nineteen. Charleston Conference Proceedings 2003 = Charleston Conf Proc Charleston Conference Proceedings 2003 = Charleston Conf. Proc. Charleston Conference Proceedings 2004 = Charleston Conf Proc Charleston Conference Proceedings 2004 = Charleston Conf. Proc. Charleston Conference Proceedings 2006 = Charleston Conf Proc Charleston Conference Proceedings 2006 = Charleston Conf. Proc. Charleston Conference Proceedings 2008 = Charleston Conf Proc Charleston Conference Proceedings 2008 = Charleston Conf. Proc. Charleston Conference Proceedings = Charleston Conf Proc Charleston Conference Proceedings = Charleston Conf. Proc. Charms, Charmers and Charming: International Research On Verbal Magic = Palgr Hist Stud Witc Charms, Charmers and Charming: International Research On Verbal Magic = Palgr. Hist. Stud. Witc. Chart = Chart Charter Schools: From Reform Imagery to Reform Reality = Palg Stud Urban Educ Charter Schools: From Reform Imagery to Reform Reality = Palg. Stud. Urban. Educ. Charting The Topic Maps Research and Applications Landscape = Lect Notes Artif Int Charting The Topic Maps Research and Applications Landscape = Lect. Notes. Artif. Int. Chasqui-revista De Literatura Latinoamericana = Chasqui Chasqui-revista De Literatura Latinoamericana = Chasqui. Chateaubriand, The Timequake = Coll Cribles Chateaubriand, The Timequake = Coll. Cribles. Chatelaine (Toronto, Ont. : 1928) = Chatelaine Chaucer Review = Chaucer Rev Chaucer Review = Chaucer Rev. Chaucer's Queer Nation = Mediev Cult Chaucer's Queer Nation = Mediev. Cult. Chaucers Visions of Manhood = New Middle Ages Chaucers Visions of Manhood = New. Middle. Ages. Chdl Series = Chdl Ser Chdl Series = Chdl Ser. Cheap, Safe and Natural Medicine = Clio Med Cheap, Safe and Natural Medicine = Clio. Med. Chechnya - Russia's War On Terror = Basees-rout Ser Russ Chechnya - Russia's War On Terror = Basees-rout. Ser. Russ. Check Dams, Morphological Adjustments and Erosion Control in Torrential Streams = Environ Sci Eng Tech Check Dams, Morphological Adjustments and Erosion Control in Torrential Streams = Environ. Sci. Eng. Tech. Checkpoint Controls and Targets in Cancer Therapy = Cancer Drug Discov D Checkpoint Controls and Targets in Cancer Therapy = Cancer Drug. Discov. D. Cheiron = Cheiron Chekhoslovatskaia biologiia = Chekhoslovatskaia Biol Chekhoslovatskaia fiziologiia = Chekh Fiziol Chelonian Conservation and Biology = Chelonian Conserv Bi Chelonian Conservation and Biology = Chelonian Conserv. Bi. Chelonian Research Monographs = Chelon Res Monogr Chelonian Research Monographs = Chelon. Res. Monogr. Chelsea = Chelsea Chelyabinskiy Universitet = Vestnik Chelyabinsk. Univ. Ser. 3 Mat. Mekh. Chembiochem : a European journal of chemical biology = Chembiochem Chembiochem = Chembiochem ChemBioChem = ChemBioChem Chem-Bio Informatics Journal = Chem-Bio Inf. J. Chemcatchem = Chemcatchem ChemCatChem = ChemCatChem Chemia analityczna = Chem Analityczna Chemia Analityczna = Chem Anal-warsaw Chemia Analityczna = Chem. Anal-warsaw. Chemia Analityczna = Chem. Anal. (Warsaw) Chemia Analityczna (Warsaw, Poland) = Chem. Anal. (Warsaw, Pol.) Chemical Abundances and Mixing in Stars in The Milky Way and Its Satellites = Eso Astrophy Symp Chemical Abundances and Mixing in Stars in The Milky Way and Its Satellites = Eso. Astrophy. Symp. Chemical Abundances in The Universe: Connecting First Stars to Planets = Iau Symp P Series Chemical Abundances in The Universe: Connecting First Stars to Planets = Iau. Symp. P. Series. Chemical Analysis of Firearms, Ammunition, and Gunshot Residue = Int Forensic Sci Inv Chemical Analysis of Firearms, Ammunition, and Gunshot Residue = Int. Forensic. Sci. Inv. Chemical and Biochemical Engineering Quarterly = Chem Biochem Eng Q Chemical and Biochemical Engineering Quarterly = Chem. Biochem. Eng. Q. Chemical and Biological Early Warning Monitoring for Water, Food and Ground = P Soc Photo-opt Ins Chemical and Biological Early Warning Monitoring for Water, Food and Ground = P. Soc. Photo-opt. Ins. Chemical and Biological Point Sensors for Homeland Defense Ii = Proc Spie Chemical and Biological Point Sensors for Homeland Defense Ii = Proc. Spie. Chemical and Biological Point Sensors for Homeland Defense Ii = P Soc Photo-opt Ins Chemical and Biological Point Sensors for Homeland Defense Ii = P. Soc. Photo-opt. Ins. Chemical and Biological Point Sensors for Homeland Defense = P Soc Photo-opt Ins Chemical and Biological Point Sensors for Homeland Defense = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Iii = P Soc Photo-opt Ins Chemical and Biological Sensing Iii = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Ii = P Soc Photo-opt Ins Chemical and Biological Sensing Ii = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Iv = Proc Spie Chemical and Biological Sensing Iv = Proc. Spie. Chemical and Biological Sensing Iv = P Soc Photo-opt Ins Chemical and Biological Sensing Iv = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing = P Soc Photo-opt Ins Chemical and Biological Sensing = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Viii = Proc Spie Chemical and Biological Sensing Viii = Proc. Spie. Chemical and Biological Sensing Viii = P Soc Photo-opt Ins Chemical and Biological Sensing Viii = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Vii = P Soc Photo-opt Ins Chemical and Biological Sensing Vii = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing Vi = Proc Spie Chemical and Biological Sensing Vi = Proc. Spie. Chemical and Biological Sensing Vi = P Soc Photo-opt Ins Chemical and Biological Sensing Vi = P. Soc. Photo-opt. Ins. Chemical and Biological Sensing V = Proc Spie Chemical and Biological Sensing V = Proc. Spie. Chemical and Biological Sensing V = P Soc Photo-opt Ins Chemical and Biological Sensing V = P. Soc. Photo-opt. Ins. Chemical and Biological Sensors for Industrial and Environmental Monitoring Iii = P Soc Photo-opt Ins Chemical and Biological Sensors for Industrial and Environmental Monitoring Iii = P. Soc. Photo-opt. Ins. Chemical and Biological Sensors for Industrial and Environmental Monitoring Ii = Proc Spie Chemical and Biological Sensors for Industrial and Environmental Monitoring Ii = Proc. Spie. Chemical and Biological Sensors for Industrial and Environmental Monitoring Ii = P Soc Photo-opt Ins Chemical and Biological Sensors for Industrial and Environmental Monitoring Ii = P. Soc. Photo-opt. Ins. Chemical and Biological Standoff Detection Ii = Proc Spie Chemical and Biological Standoff Detection Ii = Proc. Spie. Chemical and Biological Standoff Detection Ii = P Soc Photo-opt Ins Chemical and Biological Standoff Detection Ii = P. Soc. Photo-opt. Ins. Chemical and Biological Standoff Detection = Proc Spie Chemical and Biological Standoff Detection = Proc. Spie. Chemical and Biological Standoff Detection = P Soc Photo-opt Ins Chemical and Biological Standoff Detection = P. Soc. Photo-opt. Ins. Chemical and engineering news = Chem Eng News Chemical and Engineering News = Chem. Eng. News Chemical and Functional Properties of Food Components Series = Chem Funct Prop Food Chemical and Functional Properties of Food Components Series = Chem. Funct. Prop. Food Chemical and Petroleum Engineering = Chem. Pet. Eng. Chemical and Petroleum Engineering = Chem Petrol Eng+ Chemical and Petroleum Engineering = Chem. Petrol. Eng+.+ Chemical and Pharmaceutical Bulletin = Chem. Pharm. Bull. Chemical and Pharmaceutical Bulletin=Chem Pharm Bull (Tokyo);; Chemical and Pharmaceutical Bulletin = Chem. Pharm. Bull. (Tokyo) Chemical and Physical Processes in Combustion = Chem. Phys. Processes Combust. Chemical and Process Engineering = Chem Process Eng Chemical and Process Engineering = Chem. Process Eng. Chemical and Process Engineering-inzynieria Chemiczna I Procesowa = Chem Process Eng-inz Chemical and Process Engineering-inzynieria Chemiczna I Procesowa = Chem. Process Eng-inz. Chemical Applications of Density-functional Theory = Acs Sym Ser Chemical Applications of Density-functional Theory = Acs. Sym. Ser. Chemical Aspects of Electronic Ceramics Processing = Mater Res Soc Symp P Chemical Aspects of Electronic Ceramics Processing = Mater. Res. Soc. Symp. P. Chemical Aspects of Enzyme Biotechnology = Ind Univ C Chemical Aspects of Enzyme Biotechnology = Ind. Univ. C. Chemical, Biochemical, and Environmental Fiber Sensors Iii = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Iii = P. Soc. Photo-opt. Ins. Chemical, Biochemical and Environmental Fiber Sensors Ii = P Soc Photo-opt Ins Chemical, Biochemical and Environmental Fiber Sensors Ii = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors Iv = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Iv = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors Ix = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Ix = P. Soc. Photo-opt. Ins. Chemical, Biochemical and Environmental Fiber Sensors = P Soc Photo-opt Ins Chemical, Biochemical and Environmental Fiber Sensors = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors Viii = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Viii = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors Vii = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Vii = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors Vi = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors Vi = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors V = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors V = P. Soc. Photo-opt. Ins. Chemical, Biochemical, and Environmental Fiber Sensors X = P Soc Photo-opt Ins Chemical, Biochemical, and Environmental Fiber Sensors X = P. Soc. Photo-opt. Ins. Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Ix = Proc Spie Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Ix = Proc. Spie. Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Ix = P Soc Photo-opt Ins Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Ix = P. Soc. Photo-opt. Ins. Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Xi = Proc Spie Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Xi = Proc. Spie. Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Xi = P Soc Photo-opt Ins Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing Xi = P. Soc. Photo-opt. Ins. Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing X = Proc Spie Chemical, Biological, Radiological, Nuclear, and Explosives (cbrne) Sensing X = Proc. Spie. Chemical Biology and Drug Design = Chem. Biol. Drug Des. Chemical biology & drug design = Chem Biol Drug Des Chemical Biology & Drug Design = Chem Biol Drug Des Chemical Biology & Drug Design = Chem. Biol. Drug Des. Chemical Biology of The Tropics: An Interdisciplinary Approach = Signal Commun Plants Chemical Biology of The Tropics: An Interdisciplinary Approach = Signal. Commun. Plants. Chemical Biomedical and Environmental Instrumentation = Chem Biomed Env Inst Chemical Biomedical and Environmental Instrumentation = Chem. Biomed. Env. Inst. Chemical Carcinogenesis = Curr Cancer Res Chemical Carcinogenesis = Curr. Cancer. Res. Chemical communications (Cambridge, England) = Chem Commun (Camb) Chemical Communications (Cambridge, United Kingdom) = Chem. Commun. (Cambridge, U. K.) Chemical Communications = Chem Commun Chemical Communications = Chem. Commun. Chemical Crystallography = Chem Res Appl-nova Chemical Crystallography = Chem. Res. Appl-nova. Chemical dependencies = Chem Depend Chemical Dependencies = Chem. Depend. Chemical Design of Responsive Microgels = Adv Polym Sci Chemical Design of Responsive Microgels = Adv. Polym. Sci. Chemical Deterioration and Physical Instability of Food and Beverages = Woodhead Publ Food S Chemical Deterioration and Physical Instability of Food and Beverages = Woodhead. Publ. Food S. Chemical Ecology and Phytochemistry of Forest Ecosystems = Recent Adv Phytochem Chemical Ecology and Phytochemistry of Forest Ecosystems = Recent. Adv. Phytochem. Chemical Ecology: From Gene to Ecosystem = Wag Ur Fron Chemical Ecology: From Gene to Ecosystem = Wag. Ur. Fron. Chemical Education Research and Practice = Chem. Educ. Res. Pract. Chemical Education Research and Practice in Europe = CHem. Educ. Res. Pract. Eur. Chemical Educator = Chem. Educ. Chemical Elements in Plants and Soil: Parameters Controlling Essentiality = Tasks Veg Sci Chemical Elements in Plants and Soil: Parameters Controlling Essentiality = Tasks. Veg. Sci. Chemical Engineering = Adv Eng Res Chemical Engineering = Adv. Eng. Res. Chemical Engineering and Processing = Chem Eng Process Chemical Engineering and Processing = Chem. Eng. Process. Chemical Engineering and Processing: Process Intensification = Chem. Eng. Process. Chemical Engineering and Technology = Chem. Eng. Technol. Chemical Engineering = Chem Eng-new York Chemical Engineering = Chem. Eng-new. York. Chemical Engineering Communications = Chem Eng Commun Chemical Engineering Communications = Chem. Eng. Commun. Chemical Engineering Education = Chem. Eng. Educ. Chemical Engineering Journal (Amsterdam, Netherlands) = Chem. Eng. J. (Amsterdam, Neth.) Chemical Engineering Journal and the Biochemical Engineering Journal = Chem. Eng. J. Chemical Engineering Journal and The Biochemical Engineering Journal = Chem Eng J Bioch Eng Chemical Engineering Journal and The Biochemical Engineering Journal = Chem. Eng. J. Bioch. Eng. Chemical Engineering Journal = Chem Eng J Chemical Engineering Journal = Chem. Eng. J. Chemical Engineering Journal (Lausanne) = Chem. Eng. J. (Lausanne) Chemical Engineering Methods and Technology = Chem Eng Method Tech Chemical Engineering Methods and Technology = Chem. Eng. Method. Tech. Chemical & Engineering News = Chem Eng News Chemical & Engineering News = Chem. Eng. News Chemical Engineering (New York) = Chem. Eng. (New York) Chemical Engineering (New York) = Chem. Eng. (N.Y.) Chemical Engineering Progress = Chem Eng Prog Chemical Engineering Progress = Chem. Eng. Prog. Chemical Engineering Progress Symposium Series = Chem Eng Prog S Ser Chemical Engineering Progress Symposium Series = Chem. Eng. Prog. S. Ser. Chemical Engineering Research and Design = Chem. Eng. Res. Des. Chemical Engineering Research & Design = Chem Eng Res Des Chemical Engineering Research & Design = Chem. Eng. Res. Des. Chemical Engineering Science = Chem Eng Sci Chemical Engineering Science = Chem. Eng. Sci. Chemical Engineering & Technology = Chem Eng Technol Chemical Engineering & Technology = Chem. Eng. Technol. Chemical Engineering Transactions = Chem Engineer Trans Chemical Engineering Transactions = Chem. Engineer. Trans. Chemical Engineering World = Chem Eng World Chemical Engineering World = Chem. Eng. World Chemical Engineer-london = Chem Eng-london Chemical Engineer-london = Chem. Eng-london. Chemical Engineer (London) = Chem. Eng. (London) Chemical Enrichment of Intracluster and Intergalactic Medium = Astr Soc P Chemical Enrichment of Intracluster and Intergalactic Medium = Astr. Soc. P. Chemical Evolution Across Space and Time: From The Big Bang to Prebiotic Chemistry = Acs Sym Ser Chemical Evolution Across Space and Time: From The Big Bang to Prebiotic Chemistry = Acs. Sym. Ser. Chemical Evolution From Zero to High Redshift = Eso Astrophy Symp Chemical Evolution From Zero to High Redshift = Eso. Astrophy. Symp. Chemical Evolution Ii: From The Origins of Life to Modern Society = Acs Sym Ser Chemical Evolution Ii: From The Origins of Life to Modern Society = Acs. Sym. Ser. Chemical Evolution of Bentonite Buffer in A Final Repository of Spent Nuclear Fuel During The Thermal Phase = Vtt Publ Chemical Evolution of Bentonite Buffer in A Final Repository of Spent Nuclear Fuel During The Thermal Phase = Vtt. Publ. Chemical Evolution: Origin of Life = St Chem Evol & Orig Chemical Evolution: Origin of Life = St. Chem. Evol. &. Orig. Chemical Evolution: Self-organization of The Macromolecules of Life = St Chem Evol & Orig Chemical Evolution: Self-organization of The Macromolecules of Life = St. Chem. Evol. &. Orig. Chemical Explanation: Characteristics, Development, Autonomy = Ann Ny Acad Sci Chemical Explanation: Characteristics, Development, Autonomy = Ann. Ny. Acad. Sci. Chemical Fibers International = Chem. Fibers Int. Chemical Genomics: Small Molecule Probes to Study Cellular Function = E Schering Res Fdn W Chemical Genomics: Small Molecule Probes to Study Cellular Function = E. Schering. Res. Fdn. W. Chemical geology = Chem Geol Chemical Geology = Chem Geol Chemical Geology = Chem. Geol. Chemical Health and Safety = Chem. Health Saf. Chemical heritage / CHF = Chem Herit Chemical immunology and allergy = Chem Immunol Allergy Chemical Immunology and Allergy = Chem Immunol Allergy Chemical Immunology and Allergy = Chem. Immunol. Allergy Chemical immunology = Chem Immunol Chemical Immunology=Chem Immunol;; Chemical Immunology = Chem Immunol Chemical Immunology = Chem. Immunol. Chemical Industries : A Series of Reference Books and Textbooks = Chem Indust Chemical Industries : A Series of Reference Books and Textbooks = Chem. Indust. Chemical Industries = Chem Ind-ser Chemical Industries = Chem. Ind-ser. Chemical Industries = Chem Indust Chemical Industries = Chem. Indust. Chemical Industry & Chemical Engineering Quarterly = Chem Ind Chem Eng Q Chemical Industry & Chemical Engineering Quarterly = Chem. Ind. Chem. Eng. Q. Chemical Industry - Friend to The Environment ? = Roy Soc Ch Chemical Industry - Friend to The Environment ? = Roy. Soc. Ch. Chemical Innovation = Chem Innov Chemical Innovation = Chem. Innov. Chemical Instrumentation = Chem Instrum Chemical Instrumentation = Chem. Instrum. Chemical Journal of Chinese Universities-chinese = Chem J Chinese U Chemical Journal of Chinese Universities-chinese = Chem. J. Chinese U. Chemical Library Design = Methods Mol Biol Chemical Library Design = Methods. Mol. Biol. Chemically Induced Alterations in Functional Development and Reproduction of Fishes = Setac Tech Publicat Chemically Induced Alterations in Functional Development and Reproduction of Fishes = Setac. Tech. Publicat. Chemically-induced Alterations in Sexual and Functional Development : The Wildlife / Human Connection = Adv Mod Env Chemically-induced Alterations in Sexual and Functional Development : The Wildlife / Human Connection = Adv. Mod. Env. Chemically Induced Cell Proliferation = Prog Clin Biol Res Chemically Induced Cell Proliferation = Prog. Clin. Biol. Res. Chemically Modified Oxide Surfaces = Chem Mod S Chemically Modified Oxide Surfaces = Chem. Mod. S. Chemically Modified Surfaces = Chem Mod S Chemically Modified Surfaces = Chem. Mod. S. Chemical Markers for Processed and Stored Foods = Acs Sym Ser Chemical Markers for Processed and Stored Foods = Acs. Sym. Ser. Chemical Mechanical Planarization I = Elec Soc S Chemical Mechanical Planarization I = Elec. Soc. S. Chemical Mechanical Planarization in Ic Device Manufacturing Iii, Proceedings = Elec Soc S Chemical Mechanical Planarization in Ic Device Manufacturing Iii, Proceedings = Elec. Soc. S. Chemical Mechanical Planarization in Integrated Circuit Device Manufacturing = Elec Soc S Chemical Mechanical Planarization in Integrated Circuit Device Manufacturing = Elec. Soc. S. Chemical-mechanical Planarization-integration, Technology and Reliability = Mater Res Soc Symp P Chemical-mechanical Planarization-integration, Technology and Reliability = Mater. Res. Soc. Symp. P. Chemical-mechanical Planarization = Mater Res Soc Symp P Chemical-mechanical Planarization = Mater. Res. Soc. Symp. P. Chemical Mechanical Planarization V = Elec Soc S Chemical Mechanical Planarization V = Elec. Soc. S. Chemical-mechanical Polishing - Fundamentals and Challenges = Mater Res Soc Symp P Chemical-mechanical Polishing - Fundamentals and Challenges = Mater. Res. Soc. Symp. P. Chemical Mechanical Polishing in Silicon Processing = Semiconduct Semimet Chemical Mechanical Polishing in Silicon Processing = Semiconduct. Semimet. Chemical, Microbiological, Health and Comfort Aspects of Indoor Air Quality - State of The Art in Sbs = Euro Ch Env Chemical, Microbiological, Health and Comfort Aspects of Indoor Air Quality - State of The Art in Sbs = Euro. Ch. Env. Chemical Microsensors and Applications Ii = P Soc Photo-opt Ins Chemical Microsensors and Applications Ii = P. Soc. Photo-opt. Ins. Chemical Microsensors and Applications = Proc Spie Chemical Microsensors and Applications = Proc. Spie. Chemical Microsensors and Applications = P Soc Photo-opt Ins Chemical Microsensors and Applications = P. Soc. Photo-opt. Ins. Chemical Modeling of Aqueous Systems Ii = Acs Sym Ser Chemical Modeling of Aqueous Systems Ii = Acs. Sym. Ser. Chemical Modelling Applications and Theory-specialist Periodical Report = Chem Model Appl Theo Chemical Modelling Applications and Theory-specialist Periodical Report = Chem. Model. Appl. Theo. Chemical Modelling: Applications and Theory, Vol 4 = Chem Model Appl Theo Chemical Modelling: Applications and Theory, Vol 4 = Chem. Model. Appl. Theo. Chemical Modelling: Applications and Theory, Vol 5 = Chem Model Appl Theo Chemical Modelling: Applications and Theory, Vol 5 = Chem. Model. Appl. Theo. Chemical Modification of Lignocellulosics = Fri Bull Chemical Modification of Lignocellulosics = Fri. Bull. Chemical Mutagens-principles and Methods for Their Detection = Chem Mutagens Chemical Mutagens-principles and Methods for Their Detection = Chem. Mutagens. Chemical Papers-chemicke Zvesti = Chem Pap-chem Zvesti Chemical Papers-chemicke Zvesti = Chem. Pap-chem. Zvesti Chemical Papers - Chemicke Zvesti = Chem. Pap. - Chem. Zvesti Chemical Papers = Chem Pap Chemical Papers = Chem. Pap. Chemical Perspectives of Microelectronic Materials Iii = Mat Res S C Chemical Perspectives of Microelectronic Materials Iii = Mat. Res. S. C. Chemical Perspectives of Microelectronic Materials Ii = Mater Res Soc Symp P Chemical Perspectives of Microelectronic Materials Ii = Mater. Res. Soc. Symp. P. Chemical & Pharmaceutical Bulletin = Chem Pharm Bull Chemical & Pharmaceutical Bulletin = Chem. Pharm. Bull. Chemical & pharmaceutical bulletin = Chem Pharm Bull (Tokyo) Chemical physics = Chem Phys Chemical Physics = Chem Phys Chemical Physics = Chem. Phys. Chemical physics letters = Chem Phys Lett Chemical Physics Letters = Chem Phys Lett Chemical Physics Letters = Chem. Phys. Lett. Chemical Physics of Atomic and Molecular Clusters = P Int Sch Phys Chemical Physics of Atomic and Molecular Clusters = P. Int. Sch. Phys. Chemical Physics of Fullerenes 10 (and 5) Years Later = Nato Adv Sci I E-app Chemical Physics of Fullerenes 10 (and 5) Years Later = Nato. Adv. Sci. I. E-app. Chemical Physics of Intercalation Ii = Nato Adv Sci Inst Se Chemical Physics of Intercalation Ii = Nato. Adv. Sci. Inst. Se. Chemical Physics of Thin Film Deposition Processes for Micro- and Nano- Technologies = Nato Sci Ser Ii-math Chemical Physics of Thin Film Deposition Processes for Micro- and Nano- Technologies = Nato. Sci. Ser. Ii-math. Chemical Physics of Thin Film Deposition Processes for Micro- and Nano- Technologies = Nato Sci Ser Ii Math Chemical Physics of Thin Film Deposition Processes for Micro- and Nano- Technologies = Nato. Sci. Ser. Ii. Math. Chemical Physics Reports = Chem Phys Rep+ Chemical Physics Reports = Chem. Phys. Rep+.+ Chemical Probes in Biology: Science At The Interface of Chemistry, Biology and Medicine = Nato Sci Ser Ii-math Chemical Probes in Biology: Science At The Interface of Chemistry, Biology and Medicine = Nato. Sci. Ser. Ii-math. Chemical Probes in Biology: Science At The Interface of Chemistry, Biology and Medicine = Nato Sci Ser Ii Math Chemical Probes in Biology: Science At The Interface of Chemistry, Biology and Medicine = Nato. Sci. Ser. Ii. Math. Chemical Processes in Inorganic Materials : Metal and Semiconductor Clusters and Colloids = Mater Res Soc Symp P Chemical Processes in Inorganic Materials : Metal and Semiconductor Clusters and Colloids = Mater. Res. Soc. Symp. P. Chemical Processes in Marine Environments = Environm Sci Chemical Processes in Marine Environments = Environm. Sci. Chemical Processes in Marine Environments = Environ Sci-ger Chemical Processes in Marine Environments = Environ. Sci-ger. Chemical Processing = Chem Process Chemical Processing = Chem. Process. Chemical Processing of Dielectrics, Insulators and Electronic Ceramics = Mater Res Soc Symp P Chemical Processing of Dielectrics, Insulators and Electronic Ceramics = Mater. Res. Soc. Symp. P. Chemical Process Performance Evaluation = Chem Ind-ser Chemical Process Performance Evaluation = Chem. Ind-ser. Chemical Process Research = Acs Sym Ser Chemical Process Research = Acs. Sym. Ser. Chemical Product and Process Modeling = Chem. Prod. Process Model. Chemical Product Design: Toward A Perspective Through Case Studies = Comput-aided Chem En Chemical Product Design: Toward A Perspective Through Case Studies = Comput-aided. Chem. En. Chemical Ranking and Scoring = Setac Sp P Chemical Ranking and Scoring = Setac. Sp. P. Chemical Reactions and Processes Under Flow Conditions = Rsc Green Chem Ser Chemical Reactions and Processes Under Flow Conditions = Rsc. Green. Chem. Ser. Chemical Reactions and Their Control On The Femtosecond Time Scale Xxth Solvay Conference On Chemistry = Adv Chem Phys Chemical Reactions and Their Control On The Femtosecond Time Scale Xxth Solvay Conference On Chemistry = Adv. Chem. Phys. Chemical Reactions in Gas, Liquid and Solid Phases: Synthesis, Properties and Applications = Chem Res Appl-nova Chemical Reactions in Gas, Liquid and Solid Phases: Synthesis, Properties and Applications = Chem. Res. Appl-nova. Chemical Reactor Technology for Environmentally Safe Reactors and Products = Nato Adv Sci Inst Se Chemical Reactor Technology for Environmentally Safe Reactors and Products = Nato. Adv. Sci. Inst. Se. Chemical Record = Chem Rec Chemical Record = Chem. Rec. Chemical record (New York, N.Y.) = Chem Rec Chemical Research in Chinese Universities = Chem Res Chinese U Chemical Research in Chinese Universities = Chem. Res. Chinese U. Chemical Research in Chinese Universities = Chem. Res. Chin. Univ. Chemical research in toxicology = Chem Res Toxicol Chemical Research in Toxicology = Chem Res Toxicol Chemical Research in Toxicology = Chem. Res. Toxicol. Chemical Research In Toxicology=Chem Res Toxicol;; Chemical reviews = Chem Rev Chemical Reviews = Chem Rev Chemical Reviews = Chem. Rev. Chemical Reviews (Washington, DC, United States) = Chem. Rev. (Washington, DC, U. S.) Chemicals and Radioactive Materials and Human Development = Chem Eng Method Tech Chemicals and Radioactive Materials and Human Development = Chem. Eng. Method. Tech. Chemicals As Intentional and Accidental Global Environmental Threats = Nato Sci Peace Secur Chemicals As Intentional and Accidental Global Environmental Threats = Nato. Sci. Peace. Secur. Chemical Science = Chem Sci Chemical Science = Chem. Sci. Chemical senses = Chem Senses Chemical Senses=Chem Senses;; Chemical Senses = Chem Senses Chemical Senses = Chem. Senses Chemical Senses & Flavour = Chem Sens Flav Chemical Senses & Flavour = Chem. Sens. Flav. Chemical Senses Series = Chem Sens Chemical Senses Series = Chem. Sens. Chemical Senses, Vol 3 = Chem Sens Chemical Senses, Vol 3 = Chem. Sens. Chemical Sensors for Hostile Environments = Ceram Trans Chemical Sensors for Hostile Environments = Ceram. Trans. Chemical Sensors Iv, Proceedings of The Symposium = Elec Soc S Chemical Sensors Iv, Proceedings of The Symposium = Elec. Soc. S. Chemical Sensors: Properties, Performance and Applications = Chem Res Appl-nova Chemical Sensors: Properties, Performance and Applications = Chem. Res. Appl-nova. Chemical Separations With Liquid Membranes = Acs Sym Ser Chemical Separations With Liquid Membranes = Acs. Sym. Ser. Chemical Separation Technologies and Related Methods of Nuclear Waste Management = Nato Asi 2 Chemical Separation Technologies and Related Methods of Nuclear Waste Management = Nato. Asi. 2. Chemicals for The Automotive Industry = Roy Soc Ch Chemicals for The Automotive Industry = Roy. Soc. Ch. Chemical Signalling in The Basal Ganglia = Prog Brain Res Chemical Signalling in The Basal Ganglia = Prog. Brain. Res. Chemical Signals in Vertebrates 10 = Chem Signal Chemical Signals in Vertebrates 10 = Chem. Signal. Chemical Signals in Vertebrates 11 = Chem Signal Chemical Signals in Vertebrates 11 = Chem. Signal. Chemical Signals in Vertebrates 5 = Chem Signal Chemical Signals in Vertebrates 5 = Chem. Signal. Chemical Signals in Vertebrates 9 = Chem Signal Chemical Signals in Vertebrates 9 = Chem. Signal. Chemical Signals in Vertebrates = Chem Signal Chemical Signals in Vertebrates = Chem. Signal. Chemical Signals in Vertebrates Vii = Adv Biosci Chemical Signals in Vertebrates Vii = Adv. Biosci. Chemical Society reviews = Chem Soc Rev Chemical Society Reviews = Chem Soc Rev Chemical Society Reviews = Chem. Soc. Rev. Chemical Speciation and Bioavailability = Chem Spec Bioavailab Chemical Speciation and Bioavailability = Chem. Spec. Bioavailab. Chemical Speciation and Bioavailability = Chem. Speciation Bioavailability Chemical, Structural and Electronic Analysis of Heterogeneous Surfaces On Nanometer Scale = Nato Adv Sci I E-app Chemical, Structural and Electronic Analysis of Heterogeneous Surfaces On Nanometer Scale = Nato. Adv. Sci. I. E-app. Chemical Surface Preparation, Passivation and Cleaning for Semiconductor Growth and Processing = Mater Res Soc Symp P Chemical Surface Preparation, Passivation and Cleaning for Semiconductor Growth and Processing = Mater. Res. Soc. Symp. P. Chemicals Via Higher Plant Bioengineering = Adv Exp Med Biol Chemicals Via Higher Plant Bioengineering = Adv. Exp. Med. Biol. Chemical Synthesis = Nato Adv Sci Inst Se Chemical Synthesis = Nato. Adv. Sci. Inst. Se. Chemical Technology = Chem Technol Chemical Technology = Chem. Technol. Chemical Vapor Deposition = Chem. Vap. Deposition Chemical Vapor Deposition = Chem Vapor Depos Chemical Vapor Deposition = Chem. Vapor Depos. Chemical Vapor Deposition of Refractory Metals and Ceramics Iii = Mater Res Soc Symp P Chemical Vapor Deposition of Refractory Metals and Ceramics Iii = Mater. Res. Soc. Symp. P. Chemical Vapor Deposition of Refractory Metals and Ceramics Ii = Mater Res Soc Symp P Chemical Vapor Deposition of Refractory Metals and Ceramics Ii = Mater. Res. Soc. Symp. P. Chemical Vapor Deposition of Refractory Metals and Ceramics = Mater Res Soc Symp P Chemical Vapor Deposition of Refractory Metals and Ceramics = Mater. Res. Soc. Symp. P. Chemical Vapour Deposition = Eng Mater Process Chemical Vapour Deposition = Eng. Mater. Process. Chemical Weapon Destruction in Russia: Political, Legal and Technical Aspects = Sipri Chem Chemical Weapon Destruction in Russia: Political, Legal and Technical Aspects = Sipri. Chem. Chemical Weathering Rates of Silicate Minerals = Rev Mineral Chemical Weathering Rates of Silicate Minerals = Rev. Mineral. Chemical week = Chem Week Chemical Week = Chem Week Chemical Week = Chem. Week Chemica scripta = Chem Scr Chemica Scripta = Chem Scripta Chemica Scripta = Chem. Scripta Chemicke Listy = Chem Listy Chemicke Listy = Chem. Listy Chemicke Listy Pro Vedu A Prumysl = Chem Listy Chemicke Listy Pro Vedu A Prumysl = Chem. Listy Chemicke zvesti = Chem Zvesti Chemicke Zvesti = Chem Zvesti Chemicke Zvesti = Chem. Zvesti Chemicky Prumysl = Chem. Prum. Chemico-biological interactions = Chem Biol Interact Chemico-biological Interactions = Chem-biol Interact Chemico-biological Interactions = Chem-biol. Interact. Chemico-Biological Interactions=Chem Biol Interact;; Chemico-Biological Interactions = Chem. Biol. Interact. Chemico-Biological Interactions = Chem.-Biol. Interact. Chemie Anlagen und Verfahren = Chem. -Anlagen Verfahren Chemie Anlagen und Verfahren = Chem. Anlagen Verfahren Chemie der Erde : Beitrage zur chemischen Mineralogie, Petrographie und Geologie = Chem Erde Chemie der Erde = Chem. Erde Chemie der Erde - Geochemistry = Chem. Erde Chemie Der Erde-geochemistry = Chem Erde-geochem Chemie Der Erde-geochemistry = Chem. Erde-geochem. Chemie Ingenieur Technik = Chem-ing-tech Chemie Ingenieur Technik = Chem-ing-tech. Chemie Ingenieur Technik = Chem. Ing. Tech. Chemie-Ingenieur-Technik = Chem.-Ing.-Tech. Chemie in unserer Zeit = Chem. unserer Zeit Chemie in Unserer Zeit = Chem Unserer Zeit Chemie in Unserer Zeit = Chem. Unserer Zeit Chemija = Chemija Chemika Chronika = Chem. Chron. Chemiker-zeitung = Chem Ztg Chemiker-zeitung = Chem. Ztg. Chemiker-Zeitung = Chem. Ztg Chemine Technologija (Kaunas, Lithuania) = Chem. Technol. (Kaunas, Lith.) Chemioterapia = Chemioterapia Chemioterapia : international journal of the Mediterranean Society of Chemotherapy = Chemioterapia Chemische Berichte = Chem Ber Chemische Berichte = Chem. Ber. Chemische Berichte-recueil = Chem Ber-recl Chemische Berichte-recueil = Chem. Ber-recl. Chemische Berichte-Recueil = Chem. Ber. Recl. Chemische Industrie (Duesseldorf) = Chem. Ind. (Duesseldorf) Chemisches Zentralblatt = Chem. Zentralbl. Chemische Technik = Chem Tech-leipzig Chemische Technik = Chem. Tech-leipzig. Chemische Technik = Chem. Tech. (Leipzig) Chemische Technik (Leipzig) = Chem. Tech. (Leipzig) Chemisch weekblad = Chem Weekbl Chemisorption and Reactivity On Supported Clusters and Thin Films = Nato Adv Sci I E-app Chemisorption and Reactivity On Supported Clusters and Thin Films = Nato. Adv. Sci. I. E-app. Chemist-analyst = Chem Analyst Chemist-analyst = Chem. Analyst. Chemistry-a European Journal = Chem-eur J Chemistry-a European Journal = Chem-eur. J. Chemistry A European Journal = Chem. Eur. J. Chemistry--A European Journal = Chem.--Eur. J. Chemistry, an Asian journal = Chem Asian J Chemistry-an Asian Journal = Chem-asian J Chemistry-an Asian Journal = Chem-asian. J. Chemistry - An Asian Journal = Chem. Asian J. Chemistry An Asian Journal = Chem. Asian J. Chemistry--An Asian Journal = Chem.--Asian J. Chemistry and Biodiversity = Chem. Biodivers. Chemistry- and Biology-based Technologies for Contraband Detection = P Soc Photo-opt Ins Chemistry- and Biology-based Technologies for Contraband Detection = P. Soc. Photo-opt. Ins. Chemistry and Biology=Chem Biol;; Chemistry and Biology = Chem. Biol. Chemistry and Biology of Mineralized Tissues = Int Congr Ser Chemistry and Biology of Mineralized Tissues = Int. Congr. Ser. Chemistry and Biology of Pteridines and Folates = Adv Exp Med Biol Chemistry and Biology of Pteridines and Folates = Adv. Exp. Med. Biol. Chemistry and Biology of Serpins = Adv Exp Med Biol Chemistry and Biology of Serpins = Adv. Exp. Med. Biol. Chemistry and Chemical Engineering Research Progress = Chem Eng Method Tech Chemistry and Chemical Engineering Research Progress = Chem. Eng. Method. Tech. Chemistry and Defects in Semiconductor Heterostructures = Mater Res Soc Symp P Chemistry and Defects in Semiconductor Heterostructures = Mater. Res. Soc. Symp. P. Chemistry and Ecology = Chem Ecol Chemistry and Ecology = Chem. Ecol. Chemistry and Industry = Chem. Ind. Chemistry and Industry = Chem. Ind. (London) Chemistry and Mathematics of Dna Polyhedra = Dna Prop Modif Funct Chemistry and Mathematics of Dna Polyhedra = Dna Prop. Modif. Funct. Chemistry and Medicinal Value = Recent Prog Med Plan Chemistry and Medicinal Value = Recent. Prog. Med. Plan. Chemistry and Physics of Carbon = Chem Phys Carbon Chemistry and Physics of Carbon = Chem. Phys. Carbon Chemistry and Physics of Carbon, Vol 24 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 24 = Chem. Phys. Carbon. Chemistry and Physics of Carbon, Vol 25 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 25 = Chem. Phys. Carbon. Chemistry and Physics of Carbon, Vol 26 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 26 = Chem. Phys. Carbon. Chemistry and Physics of Carbon, Vol 27 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 27 = Chem. Phys. Carbon. Chemistry and Physics of Carbon, Vol 28 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 28 = Chem. Phys. Carbon. Chemistry and Physics of Carbon, Vol 30 = Chem Phys Carbon Chemistry and Physics of Carbon, Vol 30 = Chem. Phys. Carbon. Chemistry and Physics of Energetic Materials = Nato Adv Sci I C-mat Chemistry and Physics of Energetic Materials = Nato. Adv. Sci. I. C-mat. Chemistry and physics of lipids = Chem Phys Lipids Chemistry and Physics of Lipids=Chem Phys Lipids;; Chemistry and Physics of Lipids = Chem Phys Lipids Chemistry and Physics of Lipids = Chem. Phys. Lipids Chemistry and Properties of Biomolecular Systems = T Molec Org Chemistry and Properties of Biomolecular Systems = T. Molec. Org. Chemistry and Radiation Changes in The Ozone Layer = Nato Adv Sci I C-mat Chemistry and Radiation Changes in The Ozone Layer = Nato. Adv. Sci. I. C-mat. Chemistry and Safety of Acrylamide in Food = Adv Exp Med Biol Chemistry and Safety of Acrylamide in Food = Adv. Exp. Med. Biol. Chemistry and Specifications of Pesticides = Who Tech Rep Ser Chemistry and Specifications of Pesticides = Who. Tech. Rep. Ser. Chemistry and Technology of Fuels and Oils = Chem Tech Fuels Oil+ Chemistry and Technology of Fuels and Oils = Chem. Tech. Fuels Oil+.+ Chemistry and Technology of Fuels and Oils = Chem. Technol. Fuels Oils Chemistry and Technology of Petroleum, Fourth Edition = Chem Ind-ser Chemistry and Technology of Petroleum, Fourth Edition = Chem. Ind-ser. Chemistry As A Second Language: Chemical Education in A Globalized Society = Acs Sym Ser Chemistry As A Second Language: Chemical Education in A Globalized Society = Acs. Sym. Ser. Chemistry & biodiversity = Chem Biodivers Chemistry & Biodiversity = Chem Biodivers Chemistry & Biodiversity = Chem. Biodivers. Chemistry & Biodiversity = Chem. Biodiversity Chemistry, Biology and Medical Applications of Hyaluronan and Its Derivatives = Wenn Gr Int Chemistry, Biology and Medical Applications of Hyaluronan and Its Derivatives = Wenn. Gr. Int. Chemistry & Biology (Cambridge, MA, United States) = Chem. Biol. (Cambridge, MA, U. S.) Chemistry & biology = Chem Biol Chemistry & Biology = Chem Biol Chemistry & Biology = Chem. Biol. Chemistry Central journal = Chem Cent J Chemistry Central Journal = Chem Cent J Chemistry Central Journal = Chem. Cent. J. Chemistry = Chemistry (Easton) Chemistry, Dynamics and Layered Structures of The Atmosphere = Adv Space Res Chemistry, Dynamics and Layered Structures of The Atmosphere = Adv. Space. Res. Chemistry Education Research and Practice = Chem Educ Res Pract Chemistry Education Research and Practice = Chem. Educ. Res. Pract. Chemistry Express = Chem. Express Chemistry for Electronic Materials = Eur Mat Res Chemistry for Electronic Materials = Eur. Mat. Res. Chemistry for The Protection of The Environment 2 = Envir Sci R Chemistry for The Protection of The Environment 2 = Envir. Sci. R. Chemistry for The Protection of The Environment 3 = Envir Sci R Chemistry for The Protection of The Environment 3 = Envir. Sci. R. Chemistry for The Protection of The Environment 4 = Envir Sci R Chemistry for The Protection of The Environment 4 = Envir. Sci. R. Chemistry for The Protection of The Environment = Envir Sci R Chemistry for The Protection of The Environment = Envir. Sci. R. Chemistry in Australia = Chem. Aust. Chemistry in Britain = Chem Br Chemistry in Britain = Chem. Br. Chemistry in Britain = Chem Brit Chemistry in Britain = Chem. Brit. Chemistry in Canada = Chem Can Chemistry & industry = Chem Ind Chemistry & Industry = Chem Ind-london Chemistry & Industry = Chem. Ind-london. Chemistry & Industry (London, United Kingdom) = Chem. Ind. (London, U. K.) Chemistry in New Zealand = Chem New Zealand Chemistry in New Zealand = Chem. New Zealand Chemistry in New Zealand = Chem. N.Z. Chemistry International = Chem. Int. Chemistry in The Oil Industry Vii = Roy Soc Ch Chemistry in The Oil Industry Vii = Roy. Soc. Ch. Chemistry Letters = Chem Lett Chemistry Letters = Chem. Lett. Chemistry letters = Chem Lett (Jpn) Chemistry of Aquatic Systems: Local and Global Perspectives = Euro Ch Env Chemistry of Aquatic Systems: Local and Global Perspectives = Euro. Ch. Env. Chemistry of Fragrances: From Perfumer to Consumer, Second Edition = Rsc Paperb Chemistry of Fragrances: From Perfumer to Consumer, Second Edition = Rsc. Paperb. Chemistry of Heterocyclic Compound-a Series of Monographs = Chem Heterocycl Comp Chemistry of Heterocyclic Compound-a Series of Monographs = Chem. Heterocycl. Comp. Chemistry of Heterocyclic Compounds-a Series of Monographs = Chem Heterocycl Comp Chemistry of Heterocyclic Compounds-a Series of Monographs = Chem. Heterocycl. Comp. Chemistry of Heterocyclic Compounds = Chem Heterocyc Compd Chemistry of Heterocyclic Compounds = Chem. Heterocyc. Compd. Chemistry of Heterocyclic Compounds = Chem Heterocycl Com+ Chemistry of Heterocyclic Compounds = Chem. Heterocycl. Com+.+ Chemistry of Heterocyclic Compounds = Chem. Heterocycl. Compd. Chemistry of Heterocyclic Compounds (New York, NY, United States) = Chem. Heterocycl. Compd. (N. Y., NY, U. S.) Chemistry of High Polymers = Chem High Polym Chemistry of High Polymers = Chem. High Polym. Chemistry of Inorganic Ring Systems = Stud Inorg Chem Chemistry of Inorganic Ring Systems = Stud. Inorg. Chem. Chemistry of Lifes Origins = Nato Adv Sci Inst Se Chemistry of Lifes Origins = Nato. Adv. Sci. Inst. Se. Chemistry of Marine Water and Sediments = Environm Sci Chemistry of Marine Water and Sediments = Environm. Sci. Chemistry of Marine Water and Sediments = Environ Sci-ger Chemistry of Marine Water and Sediments = Environ. Sci-ger. Chemistry of materials : a publication of the American Chemical Society = Chem Mater Chemistry of Materials = Chem Mater Chemistry of Materials = Chem. Mater. Chemistry of Microporous Crystals = Stud Surf Sci Catal Chemistry of Microporous Crystals = Stud. Surf. Sci. Catal. Chemistry of Natural Compounds = Chem Nat Compd Chemistry of Natural Compounds = Chem Nat Compd+ Chemistry of Natural Compounds = Chem. Nat. Compd. Chemistry of Natural Compounds = Chem. Nat. Compd+.+ Chemistry of Nucleic Acid Components = Coll Sympos Series Chemistry of Nucleic Acid Components = Coll. Sympos. Series. Chemistry of Pheromones and Other Semiochemicals Ii = Top Curr Chem Chemistry of Pheromones and Other Semiochemicals Ii = Top. Curr. Chem. Chemistry of Pheromones and Other Semiochemicals I = Top Curr Chem Chemistry of Pheromones and Other Semiochemicals I = Top. Curr. Chem. Chemistry of Structure-function Relationships in Cheese = Adv Exp Med Biol Chemistry of Structure-function Relationships in Cheese = Adv. Exp. Med. Biol. Chemistry of Taste: Mechanisms, Behaviors, and Mimics = Acs Sym Ser Chemistry of Taste: Mechanisms, Behaviors, and Mimics = Acs. Sym. Ser. Chemistry of The Amazon = Acs Sym Ser Chemistry of The Amazon = Acs. Sym. Ser. Chemistry (Rajkot, India) = Chemistry (Rajkot, India) Chemistry Research and Applications = Chem Res Appl-nova Chemistry Research and Applications = Chem. Res. Appl-nova. Chemistry (Weinheim an der Bergstrasse, Germany) = Chemistry Chemistry World = Chem World-uk Chemistry World = Chem. World-uk. Chemists and Chemistry = Chem Chemis Chemists and Chemistry = Chem. Chemis. Chemmedchem = Chemmedchem ChemMedChem = ChemMedChem Chemoecology = Chemoecology Chemo Fog: Cancer Chemotherapy-related Cognitive Impariment = Adv Exp Med Biol Chemo Fog: Cancer Chemotherapy-related Cognitive Impariment = Adv. Exp. Med. Biol. Chemogenomics: Methods and Applications = Methods Mol Biol Chemogenomics: Methods and Applications = Methods Mol. Biol. Chemoinformatics and Computational Chemical Biology = Methods Mol Biol Chemoinformatics and Computational Chemical Biology = Methods. Mol. Biol. Chemokine Receptors in Cancer = Cancer Drug Discov D Chemokine Receptors in Cancer = Cancer Drug. Discov. D. Chemokine Receptors = Method Enzymol Chemokine Receptors = Method. Enzymol. Chemokine Roles in Immunoregulation and Disease = E Schering Res Fdn W Chemokine Roles in Immunoregulation and Disease = E. Schering. Res. Fdn. W. Chemokines = Adv Exp Med Biol Chemokines = Adv. Exp. Med. Biol. Chemokines and Viral Infection = Curr Top Microbiol Chemokines and Viral Infection = Curr. Top. Microbiol. Chemokines, Chemokine Receptors, and Disease = Curr Top Membr Chemokines, Chemokine Receptors, and Disease = Curr. Top. Membr. Chemokines = Method Enzymol Chemokines = Method. Enzymol. Chemokines, Pt A = Method Enzymol Chemokines, Pt A = Method. Enzymol. Chemokine System in Experimental and Clinical Hematology = Curr Top Microbiol Chemokine System in Experimental and Clinical Hematology = Curr. Top. Microbiol. Chemo-mechanical Couplings in Porous Media Geomechanics and Biomechanics = Cism Cour L Chemo-mechanical Couplings in Porous Media Geomechanics and Biomechanics = Cism. Cour. L. Chemo-mechanical Couplings in Porous Media Geomechanics and Biomechanics = Cism Courses Lect Chemo-mechanical Couplings in Porous Media Geomechanics and Biomechanics = Cism. Courses. Lect. Chemomechanical Instabilities in Responsive Materials = Nato Scie Peace Secu Chemomechanical Instabilities in Responsive Materials = Nato. Scie. Peace. Secu. Chemometrics and Chemoinformatics = Acs Sym Ser Chemometrics and Chemoinformatics = Acs. Sym. Ser. Chemometrics and Intelligent Laborary Systems = Chemom. Intell. Lab. Syst. Chemometrics and Intelligent Laboratory Systems = Chemometr Intell Lab Chemometrics and Intelligent Laboratory Systems = Chemometr. Intell. Lab. Chemometrics and Intelligent Laboratory Systems = Chemom. Intell. Lab. Syst. Chemometrics With R: Multivariate Data Analysis in The Natural Sciences and Life Sciences = Use R Chemometrics With R: Multivariate Data Analysis in The Natural Sciences and Life Sciences = Use. R. Chemoprevention in Cancer Control = Iarc Sci Publ Chemoprevention in Cancer Control = Iarc. Sci. Publ. Chemoprevention of Cancer = Recent Res Cancer Chemoprevention of Cancer = Recent. Res. Cancer Chemoprevention of Cancer = Recent Results Cance Chemoprevention of Cancer = Recent. Results. Cance. Chemoreception: From Cellular Signalling to Functional Plasticity = Adv Exp Med Biol Chemoreception: From Cellular Signalling to Functional Plasticity = Adv. Exp. Med. Biol. Chemosensitivity Testing in Oncology = Recent Res Cancer Chemosensitivity Testing in Oncology = Recent. Res. Cancer. Chemosensors of Ion and Molecule Recognition = Nato Adv Sci I C-mat Chemosensors of Ion and Molecule Recognition = Nato. Adv. Sci. I. C-mat. Chemosensory Perception = Chemosens Percept Chemosensory Perception = Chemosens. Percept. Chemosensory Systems in Mammals, Fishes, and Insects = Results Probl Cell D Chemosensory Systems in Mammals, Fishes, and Insects = Results. Probl. Cell. D. Chemosphere=Chemosphere;; Chemosphere = Chemosphere Chemotactic Cytokines = Adv Exp Med Biol Chemotactic Cytokines = Adv. Exp. Med. Biol. Chemotaxis: Methods and Protocols = Methods Mol Biol Chemotaxis: Methods and Protocols = Methods Mol. Biol. Chemotherapia = Chemotherapia (Basel) Chemotherapy (Basel, Switzerland) = Chemotherapy (Basel, Switz.) Chemotherapy=Chemotherapy;; Chemotherapy = Chemotherapy Chemotherapy-tokyo = Chemotherapy-tokyo Chemotherapy (Tokyo) = Chemotherapy (Tokyo) Chemphyschem : a European journal of chemical physics and physical chemistry = Chemphyschem Chemphyschem = Chemphyschem ChemPhysChem = ChemPhysChem ChemSA = ChemSA Chemsuschem = Chemsuschem ChemSusChem = ChemSusChem Chemtech = Chemtech ChemTech = Chem. Tech. Chemtracts = Chemtracts Chemtracts: Inorganic Chemistry = Chemtracts: Inorg. Chem. Chemtracts: Macromolecular Chemistry = Chemtracts: Macromol. Chem. Chemtracts: Organic Chemistry = Chemtracts: Org. Chem. Chen Tzu Yen Chiu (Acupuncture Research) = Chen Tzu Yen Chiu Chen Tzu Yen Chiu Acupuncture Research=Chen Tzu Yen Chiu;; Chernobyl: A Decade = Int Congr Ser Chernobyl: A Decade = Int. Congr. Ser. Chernobyl: Consequences of The Catastrophe for People and The Environment = Ann Ny Acad Sci Chernobyl: Consequences of The Catastrophe for People and The Environment = Ann. Ny. Acad. Sci. Chernobyl: Message for The 21st Century = Int Congr Ser Chernobyl: Message for The 21st Century = Int. Congr. Ser. Chesapeake Science = Chesapeake Sci Chesapeake Science = Chesapeake Sci. Chest=Chest;; Chest = Chest Chest Pain: Causes, Diagnosis and Treatment = Cardiol Res Clin Dev Chest Pain: Causes, Diagnosis and Treatment = Cardiol. Res. Clin. Dev. Chest surgery clinics of North America = Chest Surg Clin N Am Chest Surgery Clinics of North America=Chest Surg Clin N Am;; Chest Surgery Clinics of North America = Chest Surg. Clin. N. Am. Chevron-notch Fracture Test Experience : Metals and Non-metals = Am Soc Test Mater Chevron-notch Fracture Test Experience : Metals and Non-metals = Am. Soc. Test Mater. Chiang Mai Journal of Science = Chiang Mai J Sci Chiang Mai Journal of Science = Chiang Mai J. Sci. Chiba Igakkai zasshi. The Journal of Chiba Medical Society = J Chiba Med Soc Chicago bar record = Chicago Bar Rec Chicago history = Chic Hist Chicago journal of international law = Chic J Int Law Chicago Journal of Theoretical Computer Science = Chicago J. Theoret. Comput. Sci. Chicago Journal of Theoretical Computer Science = Chic J Theor Comput Chicago Journal of Theoretical Computer Science = Chic. J. Theor. Comput. Chicago-Kent law review = Chic Kent Law Rev Chicago Lectures in Mathematics = Chicago Lectures in Math. Chicago Lectures in Mathematics Series = Chic Lec M Chicago Lectures in Mathematics Series = Chic. Lec. M. Chicago Lectures in Physics = Chicago Lectures Phys. Chicago Medical School Quarterly = Chic. Med. Sch. Q. Chicago medicine = Chic Med Chicago policy review = Chic Pol Rev Chicago Review = Chicago Rev Chicago Review = Chicago Rev. Chicago Series On Sexuality, History, and Society = Chic Sex Hist Soc Chicago Series On Sexuality, History, and Society = Chic. Sex. Hist. Soc. Chicago studies = Chic Stud Chicago today (University of Chicago) = Chic Today Chicano law review = Chicano Law Rev Chicano School Failure and Success : Research and Policy Agendas for The 1990s = Stan Educ P Chicano School Failure and Success : Research and Policy Agendas for The 1990s = Stan. Educ. P. Chief information officer journal = Chief Inf Off J Chief Information Officer Journal = Chief Inf. Off. J. Chikwa Kijae Hakhoe Chi (Journal of the Korea Research Society for Dental Materials) = Chikwa Kijae Hakhoe Chi Ch'ikwa Kijae Hakhoe chi. The Journal of the Korea Research Society for Dental Materials = Chikwa Kijae Hakhoe Chi Child Abuse and Neglect=Child Abuse Negl;; Child Abuse and Neglect = Child Abuse Negl. Child Abuse, Gender and Society = Routl Res Gend Soc Child Abuse, Gender and Society = Routl. Res. Gend. Soc. Child abuse & neglect = Child Abuse Negl Child Abuse & Neglect = Child Abuse Neglect Child Abuse Review = Child Abuse Rev Child Abuse Review = Child Abuse Rev. Child & adolescent social work journal : C & A = Child Adolesc Social Work J Child and Adolescent Analysis : Its Significance for Clinical Work With Adults = Work S Am P Child and Adolescent Analysis : Its Significance for Clinical Work With Adults = Work S. Am. P. Child and Adolescent Mental Health = Child Adol Ment H-uk Child and Adolescent Mental Health = Child Adol. Ment. H-uk. Child and adolescent psychiatric clinics of North America = Child Adolesc Psychiatr Clin N Am Child and Adolescent Psychiatric Clinics of North America=Child Adolesc Psychiatr Clin N Am;; Child and Adolescent Psychiatric Clinics of North America = Child Adolesc. Psychiatr. Clin. N. Am. Child and Adolescent Psychiatric Clinics of North America = Child Adol Psych Cl Child and Adolescent Psychiatric Clinics of North America = Child Adol. Psych. Cl. Child and adolescent psychiatry and mental health = Child Adolesc Psychiatry Ment Health Child and family = Child Fam Child and The Environment = Int Congr Ser Child and The Environment = Int. Congr. Ser. Child and Youth Psychiatry : European Perspectives = Child Y Psy Child and Youth Psychiatry : European Perspectives = Child Y. Psy. Childbirth Across Cultures: Ideas and Practices of Pregnancy, Childbirth and The Postpartum = Sci Across Cult Childbirth Across Cultures: Ideas and Practices of Pregnancy, Childbirth and The Postpartum = Sci. Across Cult. Childbirth As A Metaphor for Crisis: Evidence From The Ancient Near East, The Hebrew Bible, and 1qh Xi, 1-18 = Beih Z Alttest Wiss Childbirth As A Metaphor for Crisis: Evidence From The Ancient Near East, The Hebrew Bible, and 1qh Xi, 1-18 = Beih. Z. Alttest. Wiss. Child: care, health and development = Child Care Health Dev Child: Care, Health and Development=Child Care Health Dev;; Child: Care, Health and Development = Child Care Health Dev. Child Care Health and Development = Child Care Hlth Dev Child Care Health and Development = Child Care Hlth. Dev. Child care quarterly = Child Care Q Child Care Quarterly = Child Youth Care Q Child Care Quarterly = Child Youth. Care Q. Child Development and Child Poverty = Child Iss Laws Progr Child Development and Child Poverty = Child Iss. Laws. Progr. Child development = Child Dev Child Development=Child Dev;; Child Development = Child Dev Child Development = Child Dev. Child Development Perspectives = Child Dev Perspect Child Development Perspectives = Child Dev. Perspect. Child, Family, and State = Nomos Child, Family, and State = Nomos. Child & Family Behavior Therapy = Child Fam Behav Ther Child & Family Behavior Therapy = Child Fam. Behav. Ther. Child & Family Social Work = Child Fam Soc Work Child & Family Social Work = Child Fam. Soc. Work Child health alert = Child Health Alert Child health dialogue = Child Health Dialogue Childhood-a Global Journal of Child Research = Childhood Childhood-a Global Journal of Child Research = Childhood. Childhood: Changing Contexts = Comp Soc Res Childhood: Changing Contexts = Comp. Soc. Res. Childhood (Copenhagen, Denmark) = Childhood Childhood Education = Childhood Educ Childhood Education = Childhood Educ. Childhood Environment and Adult Disease = Ciba F Symp Childhood Environment and Adult Disease = Ciba. F. Symp. Childhood Epilepsies and Brain Development = Curr Prob E Childhood Epilepsies and Brain Development = Curr. Prob. E. Childhood in World History, 2nd Edition = Themes World Hist Childhood in World History, 2nd Edition = Themes. World Hist. Childhood Leukemia: A Practical Handbook = Pediatr Oncol-berlin Childhood Leukemia: A Practical Handbook = Pediatr. Oncol-berlin. Childhood Leukemia : Present Problems and Future Prospects = Dev Oncol Childhood Leukemia : Present Problems and Future Prospects = Dev. Oncol. Childhood Studies and The Impact of Globalization: Policies and Practices At Global and Local Levels = World Yearb Educ Childhood Studies and The Impact of Globalization: Policies and Practices At Global and Local Levels = World. Yearb. Educ. Child Indicators Research = Child Indic Res Child Indicators Research = Child Indic. Res. Child: in French and Francophone Literature = Fr Lit Ser Child: in French and Francophone Literature = Fr. Lit. Ser. Child in The World/the World in The Child = Crit Cult Stud Child Child in The World/the World in The Child = Crit. Cult. Stud. Child Child Language Disability : Implications in An Educational Setting = Multiling Child Language Disability : Implications in An Educational Setting = Multiling. Child Language Disability, Vol 2 = Multiling Child Language Disability, Vol 2 = Multiling. Child Language Teaching & Therapy = Child Lang Teach The Child Language Teaching & Therapy = Child Lang. Teach. The. Child maltreatment = Child Maltreat Child Maltreatment = Child Maltreat. Child Maltreatment = Child Maltreatment Child nephrology and urology = Child Nephrol Urol Child Nephrology and Urology = Child Nephrol Urol Child Nephrology and Urology = Child Nephrol. Urol. Child neuropsychology : a journal on normal and abnormal development in childhood and adolescence = Child Neuropsychol Child Neuropsychology = Child Neuropsychol Child Neuropsychology = Child Neuropsychol. Child Perspectives and Children's Perspectives in Theory and Practice = Int Perspect Early C Child Perspectives and Children's Perspectives in Theory and Practice = Int. Perspect. Early. C. Child psychiatry and human development = Child Psychiatry Hum Dev Child Psychiatry and Human Development=Child Psychiatry Hum Dev;; Child Psychiatry and Human Development = Child Psychiatry Hum. Dev. Child Psychiatry & Human Development = Child Psychiat Hum D Child Psychiatry & Human Development = Child Psychiat. Hum. D. Child Psychiatry Quarterly = Child Psychiat Quart Child Psychiatry Quarterly = Child Psychiat. Quart. Child psychiatry quarterly = Child Psychiatry Q Child Psychology in Retrospect and Prospect = Minn Sym Child Psych Child Psychology in Retrospect and Prospect = Minn. Sym. Child Psych. Children and Death = Ser Death E Children and Death = Ser. Death E. Children and Exercise = Schr Hamb M Children and Exercise = Schr. Hamb. M. Children and Pain = Health Hum Dev Children and Pain = Health. Hum. Dev. Children and Television: Fifty Years of Research = Lea Commun Ser Children and Television: Fifty Years of Research = Lea. Commun. Ser. Children and The Good Life: New Challenges for Research On Children = Child Well-being Ind Children and The Good Life: New Challenges for Research On Children = Child. Well-being. Ind. Children and The Politics of Culture = Prin St Cult Pow His Children and The Politics of Culture = Prin. St. Cult. Pow. His. Children and Young Adults With Sex Chromosome Aneuploidy = Birth Def Children and Young Adults With Sex Chromosome Aneuploidy = Birth. Def. Children and youth services review = Child Youth Serv Rev Children and Youth Services Review = Child Youth Serv Rev Children and Youth Services Review = Child. Youth Serv. Rev. Children At Risk : Assessment, Longitudinal Research, and Intervention = Prev Int Ch Children At Risk : Assessment, Longitudinal Research, and Intervention = Prev. Int. Ch. Children = Children Children, Develoment and Education: Cultural, Historical, Anthropological Perspectives = Int Perspect Early C Children, Develoment and Education: Cultural, Historical, Anthropological Perspectives = Int. Perspect. Early. C. Children, Gender and Families in Mediterranean Welfare States = Child Well-being Ind Children, Gender and Families in Mediterranean Welfare States = Child. Well-being. Ind. Children in the tropics = Child Trop Children, Obesity and Exercise = Int Stud Phys Educ Y Children, Obesity and Exercise = Int. Stud. Phys. Educ. Y. Children of Minorities = Innoc Ins Children of Minorities = Innoc. Ins. Children of Poverty = Ref Books Fam Iss Children of Poverty = Ref. Books. Fam. Iss. Children's Fiction About 9/11: Ethnic, Heroic and National Identities = Child Lit Cult Children's Fiction About 9/11: Ethnic, Heroic and National Identities = Child. Lit. Cult. Childrens Geographies = Child Geogr Childrens Geographies = Child. Geogr. Children's Health Care = Child. Health Care Childrens Health Care = Child Health Care Childrens Health Care = Child. Health Care Children's health care : journal of the Association for the Care of Children's Health = Child Health Care Childrens Issues Laws and Programs = Child Iss Laws Progr Childrens Issues Laws and Programs = Child. Iss. Laws Progr. Children's Language = Child Lang Children's Language = Child. Lang. Childrens Language, Vol 7 = Child Lang Childrens Language, Vol 7 = Child. Lang. Children's Language, Vol 8 = Child Lang Children's Language, Vol 8 = Child. Lang. Children's Language, Vol 9 = Child Lang Children's Language, Vol 9 = Child. Lang. Children's legal rights journal = Child Leg Rights J Childrens Literature and Culture = Child Lit Cult Childrens Literature and Culture = Child. Lit. Cult. Children's Literature and The Fin De Siecle = Contr St Wo Children's Literature and The Fin De Siecle = Contr. St. Wo. Childrens Literature in Education = Child Lit Educ Childrens Literature in Education = Child. Lit. Educ. Childrens Lives and Schooling Across Societies = Res Sociol Educ Childrens Lives and Schooling Across Societies = Res. Sociol. Educ. Children & Society = Child Soc Children & Society = Child. Soc. Childrens Play and Learning = Ear Child E Childrens Play and Learning = Ear. Child. E. Children's Reading Comprehension and Assessment = Cen Im E R Children's Reading Comprehension and Assessment = Cen. Im. E. R. Children's Rights and Traditional Values = Prog Int Rights Chil Children's Rights and Traditional Values = Prog. Int. Rights Chil. Children's Television Community = Lea Commun Ser Children's Television Community = Lea. Commun. Ser. Children, Structure and Agency = Routl Stud Dev Soc Children, Structure and Agency = Routl. Stud. Dev. Soc. Childrens Understanding of Society = Stud Dev Psychol Childrens Understanding of Society = Stud. Dev. Psychol. Childrens Well-being Indicators and Research = Child Well-being Ind Childrens Well-being Indicators and Research = Child. Well-being Ind. Children today = Child Today Children Today = Child. Today Children worldwide = Child Worldw Childs Brain = Child Brain Childs Brain = Child. Brain Child's brain = Childs Brain Child's Brain = Childs Brain Child Sexual Abuse: Media Representations and Government Reactions = Contemp Iss Pub Pol Child Sexual Abuse: Media Representations and Government Reactions = Contemp. Iss. Pub. Pol. Child Sexual Abuse: Pitfalls in The Substantiation Process = Child Iss Laws Progr Child Sexual Abuse: Pitfalls in The Substantiation Process = Child Iss. Laws. Progr. Childs Nervous System = Child Nerv Syst Childs Nervous System = Child. Nerv. Syst. Child's Nervous System = Childs Nerv. Syst. Childs Nervous System=Childs Nerv Syst;; Child's nervous system : ChNS : official journal of the International Society for Pediatric Neurosurgery = Childs Nerv Syst Child Soldiers in Africa = Ethnogr Polit Violen Child Soldiers in Africa = Ethnogr. Polit. Violen. Child Study Journal = Child Study J Child Study Journal = Child Study J. Child survival action news / = Child Surviv Action News Child welfare = Child Welfare Child Welfare=Child Welfare;; Child Welfare = Child Welfare Child & Youth Care Forum = Child Youth Care For Child & Youth Care Forum = Child Youth Care For. Chilean Journal of Agricultural Research = Chil J Agr Res Chilean Journal of Agricultural Research = Chil. J. Agr. Res. Chilled Foods: A Comprehensive Guide, Third Edition = Woodhead Food Ser Chilled Foods: A Comprehensive Guide, Third Edition = Woodhead. Food. Ser. Chilton's Food Eng. = Chilton's Food Eng. Chimia = Chimia Chimia = Chimia (Aarau) Chimica Acta Turcica = Chim. Acta Turc. Chimica e l'Industria = Chim. Ind. Chimica E L Industria-milan = Chim Industr-milan Chimica E L Industria-milan = Chim. Industr-milan. Chimica e l'Industria (Milan, Italy) = Chim. Ind. (Milan, Italy) Chimica & L Industria = Chim Ind-milan Chimica & L Industria = Chim. Ind-milan. Chimica Oggi-chemistry Today = Chim Oggi Chimica Oggi-chemistry Today = Chim. Oggi. Chimica Oggi = Chim. Oggi Chimica therapeutica = Chim Ther Chimica Therapeutica = Chim Ther Chimica Therapeutica = Chim. Ther. Chimie Actualites = Chim. Actual. Chimie Analytique = Chim Anal-paris Chimie Analytique = Chim. Anal-paris. Chimie and Industrie Genie Chimique = Chim Ind Gen Chim Chimie and Industrie Genie Chimique = Chim. Ind. Gen. Chim. Chimie et Industrie, Genie Chimique = Chim. Ind. Genie Chim. Chimie Nouvelle = Chim. Nouv. Chimney Rock Archaeological Symposium = Usda Rocky Chimney Rock Archaeological Symposium = Usda. Rocky. Chimpanzees of Bossou and Nimba = Primatol Monogr Chimpanzees of Bossou and Nimba = Primatol. Monogr. China Agricultural Economic Review = China Agr Econ Rev China Agricultural Economic Review = China Agr. Econ. Rev. China Agricultural Economic Review = China Agric Econ Rev China Agricultural Economic Review = China Agric. Econ. Rev. China: A Guide to Economic and Political Developments = Guide Econ Polit Dev China: A Guide to Economic and Political Developments = Guide Econ. Polit. Dev. China aktuell / Institut fur Asienkunde = China Aktuell China and Africa: Engagement and Compromise = Routl Contemp China China and Africa: Engagement and Compromise = Routl. Contemp. China China and Europe Since 1978: A European Perspective = China Q Spec Iss China and Europe Since 1978: A European Perspective = China Q. Spec. Iss. China and Globalization: The Social, Economic and Political Transformation of Chinese Society = Glob Realities China and Globalization: The Social, Economic and Political Transformation of Chinese Society = Glob. Realities. China and India: A Tale of Two Economies = Routledge Stud Growt China and India: A Tale of Two Economies = Routledge. Stud. Growt. China and India: Opportunities and Threats for The Global Software Industry = Chandos Asian Stud China and India: Opportunities and Threats for The Global Software Industry = Chandos. Asian. Stud. China and International Environmental Liability: Legal Remedies for Transboundary Pollution = New Horiz Environ La China and International Environmental Liability: Legal Remedies for Transboundary Pollution = New. Horiz. Environ. La. China and Its Regions: Economic Growth and Reform in Chinese Provinces = New Horiz Int Bus China and Its Regions: Economic Growth and Reform in Chinese Provinces = New. Horiz. Int. Bus. China and Japan in The Late Meiji Period = Routl Leiden Ser Mod China and Japan in The Late Meiji Period = Routl. Leiden. Ser. Mod. China and The Global Economy = China Global Econ China and The Global Economy = China Global Econ. China and The Global Political Economy = Int Polit Econ Ser China and The Global Political Economy = Int. Polit. Econ. Ser. China and The New International Order = China Policy Ser China and The New International Order = China Policy. Ser. China-an International Journal = China Int J China-an International Journal = China. Int. J. China As The World Factory = Routledge Stud Growt China As The World Factory = Routledge. Stud. Growt. China: Bioethics, Trust, and The Challenge of The Market = Philos Med China: Bioethics, Trust, and The Challenge of The Market = Philos. Med. China Center of Advanced Science and Technology ( World Laboratory ) : Symposium/workshop Proceedings = Ccast Wl Sw China Center of Advanced Science and Technology ( World Laboratory ) : Symposium/workshop Proceedings = Ccast. Wl. Sw. China Challenge : American Policies in East Asia = Proc Acad P China Challenge : American Policies in East Asia = Proc. Acad. P. China Communications = China Commun China Communications = China Commun. China Communications Magazine = China Commun. China Economic Review=China Econ. Rev. China Economic Review = China Econ Rev China Economic Review = China Econ. Rev. China Forum = China Forum China Foundry = China Foundry China: Has The Last Opportunity Passed By?! = China 21st Century China: Has The Last Opportunity Passed By?! = China. 21st. Century. China-india Relations: Contemporary Dynamics = Routl Cont S Asia Se China-india Relations: Contemporary Dynamics = Routl. Cont. S. Asia. Se. China in The 21st Century = China 21st Century China in The Early Bronze Age: Shang Civilization = Encounters Asia China in The Early Bronze Age: Shang Civilization = Encounters. Asia. China in The Wake of Asia's Financial Crisis = Routl Stud Chin Econ China in The Wake of Asia's Financial Crisis = Routl. Stud. Chin. Econ. China Into The Hu-wen Era: Policy Initiatives and Challenges = Ser Contemp China China Into The Hu-wen Era: Policy Initiatives and Challenges = Ser. Contemp. China China journal (Canberra, A.C.T.) = China J China Journal = China J China Journal = China J. China law and practice = China Law Pract China national journal of new gastroenterology = Zhongguo xin xiao hua bing xue za zhi|China Natl. J. New Gastroenterol. China newsletter = China Newsl China Ocean Engineering = China Ocean Eng China Ocean Engineering = China Ocean Eng. China On The Move: Migration, The State, and The Household = Routl Stud Hum Geogr China On The Move: Migration, The State, and The Household = Routl. Stud. Hum. Geogr. China Paper 93 = P Tech As P China Paper 93 = P. Tech. As. P. China Particuology = China Part China Particuology = China Part. China Petroleum Processing & Petrochemical Technology = China Pet Process Pe China Petroleum Processing & Petrochemical Technology = China Pet. Process. Pe. China Policy Series = China Policy Ser China Policy Series = China Policy Ser. China population headliners = China Popul Headl China population newsletter = China Popul Newsl China population research leads = China Popul Res Leads China population research newsletter = China Popul Res Newsl China population today = China Popul Today China Quarterly=China Quart. China Quarterly = China Quart China Quarterly = China Quart. China Quarterly Special Issues = China Q Spec Iss China Quarterly Special Issues = China Q. Spec. Iss. China reconstructs = China Reconstr China report (New Delhi, India) = China Rep China Review-an Interdisciplinary Journal On Greater China = China Rev China Review-an Interdisciplinary Journal On Greater China = China Rev. China Rising: Will The West Be Able to Cope = World Sci Ser 21st C China Rising: Will The West Be Able to Cope = World. Sci. Ser. 21st. C. Chinas Agricultural Modernization = China 21st Century Chinas Agricultural Modernization = China. 21st. Century. China's Agriculture in The International Trading System = Oecd Proc China's Agriculture in The International Trading System = Oecd. Proc. China's Capital Markets: Challenges From Wto Membership = Adv Chin Econ Stud China's Capital Markets: Challenges From Wto Membership = Adv. Chin. Econ. Stud. China's Compliance in Global Affairs: Trade, Arms Control, Environmental Protection, Human Rights = Ser Contemp China China's Compliance in Global Affairs: Trade, Arms Control, Environmental Protection, Human Rights = Ser. Contemp. China. China's Death Penalty: History, Law and Contemporary Practices = Routl Adv Criminol China's Death Penalty: History, Law and Contemporary Practices = Routl. Adv. Criminol. Chinas Economic Reform, 1978-1988 = Res Asia Es Chinas Economic Reform, 1978-1988 = Res. Asia. Es. China's Elite Politics: Political Transition and Power Balancing = Ser Contemp China China's Elite Politics: Political Transition and Power Balancing = Ser. Contemp. China. China's Embedded Activism = Rout Stud China Tran China's Embedded Activism = Rout. Stud. China. Tran. China's Emergent Political Economy: Capitalism in The Dragon's Lair = Routledge Stud Growt China's Emergent Political Economy: Capitalism in The Dragon's Lair = Routledge. Stud. Growt. China's Emerging Cities: The Making of New Urbanism = Rout Cont China Seri China's Emerging Cities: The Making of New Urbanism = Rout. Cont. China. Seri. China's Emerging Cities: The Making of New Urbanism = Routl Contemp China China's Emerging Cities: The Making of New Urbanism = Routl. Contemp. China. China's Emerging Financial Markets: Challenges and Opportunties = Milken Inst Ser Fina China's Emerging Financial Markets: Challenges and Opportunties = Milken. Inst. Ser. Fina. Chinas Environmental Crisis: Domestic and Global Political Impacts and Responses = Environ Polit Theor Chinas Environmental Crisis: Domestic and Global Political Impacts and Responses = Environ. Polit. Theor. China's Foreign Trade Policy = Rout Cont China Seri China's Foreign Trade Policy = Rout. Cont. China. Seri. China's Foreign Trade Policy = Routl Contemp China China's Foreign Trade Policy = Routl. Contemp. China. China's Governmentalities: Governing Change, Changing Government = Rout Stud China Tran China's Governmentalities: Governing Change, Changing Government = Rout. Stud. China. Tran. Chinas Higher Education Reform and Internationalisation = Routl Contemp China Chinas Higher Education Reform and Internationalisation = Routl. Contemp. China. Chinas Higher Education Reform and Internationalisation = Routledge Contemp Ch Chinas Higher Education Reform and Internationalisation = Routledge. Contemp. Ch. China's Information and Communications Technology Revolution: Social Changes and State Responses = China Policy Ser China's Information and Communications Technology Revolution: Social Changes and State Responses = China. Policy. Ser. China's Integration With The Global Economy: Wto Accession, Foreign Direct Investment and International Trade = Adv Chin Econ Stud China's Integration With The Global Economy: Wto Accession, Foreign Direct Investment and International Trade = Adv. Chin. Econ. Stud. China's Local Administration:traditions and Changes in The Sub-national Hierarchy = China Policy Ser China's Local Administration:traditions and Changes in The Sub-national Hierarchy = China. Policy. Ser. Chinas Management Revolution: Spirit, Land, Energy = Int Manage Knowl Chinas Management Revolution: Spirit, Land, Energy = Int. Manage. Knowl. China's medicine = Chinas Med China's Medicine = Chinas Med. Chinas Medicine = Chinas Med Chinas Medicine = Chinas Med. Chinas Military Modernization = Contrib Mil Stud Chinas Military Modernization = Contrib. Mil. Stud. Chinas Modernization and Open Economic Policy = Res Asia Es Chinas Modernization and Open Economic Policy = Res. Asia. Es. Chinas New Place in A World in Crisis: Economic, Geopolitical and Environmental Dimensions = Chin Update Bk Ser Chinas New Place in A World in Crisis: Economic, Geopolitical and Environmental Dimensions = Chin. Update. Bk. Ser. China Society Yearbook = China Soc Yearb China Society Yearbook = China Soc. Yearb. China Society Yearbook, Vol 5 = China Soc Yearb China Society Yearbook, Vol 5 = China Soc. Yearb. China's Opening Society: The Non-state Sector and Governance = China Policy Ser China's Opening Society: The Non-state Sector and Governance = China. Policy. Ser. China's Outbound Tourism = Contemp Geogr Leis T China's Outbound Tourism = Contemp. Geogr. Leis. T. China's Political and Economic Transformation: Theory and Case Studies = China 21st Century China's Political and Economic Transformation: Theory and Case Studies = China. 21st. Century. Chinas Post-reform Economy: Achieving Harmony, Sustaining Growth = Routl Stud Chin Econ Chinas Post-reform Economy: Achieving Harmony, Sustaining Growth = Routl. Stud. Chin. Econ. China's Reforms and International Political Economy = Rout Stud China Tran China's Reforms and International Political Economy = Rout. Stud. China. Tran. China's Reforms At 30: Challenges and Prospects = Ser Contemp China China's Reforms At 30: Challenges and Prospects = Ser. Contemp. China. China's Rise: Implications for U.s. Leadership in Asia = Pol Stud China's Rise: Implications for U.s. Leadership in Asia = Pol. Stud. China's Rise in The World Ict Industry: Industrial Strategies and The Catch-up Development Model = China Policy Ser China's Rise in The World Ict Industry: Industrial Strategies and The Catch-up Development Model = China. Policy. Ser. Chinas Rise: Threat Or Opportunity = Routl Secur Asia Ser Chinas Rise: Threat Or Opportunity = Routl. Secur. Asia. Ser. China's Rising Sea Power: The Pla Navy's Submarine Challenge = Asian Secur Stud China's Rising Sea Power: The Pla Navy's Submarine Challenge = Asian. Secur. Stud. China's Science and Technology Sector and The Forces of Globalisation = Ser Contemp China China's Science and Technology Sector and The Forces of Globalisation = Ser. Contemp. China. China's Security Interests in The 21st Century = Routl Secur Asia Ser China's Security Interests in The 21st Century = Routl. Secur. Asia. Ser. China's State Enterprise Reform: From Marx to The Market = Routl Contemp China China's State Enterprise Reform: From Marx to The Market = Routl. Contemp. China. China's State-owned Enterprise Reforms: An Industrial and Ceo Approach = Routledge Stud Growt China's State-owned Enterprise Reforms: An Industrial and Ceo Approach = Routledge. Stud. Growt. China's Surging Economy: Adjusting for More Balanced Development = Ser Contemp China China's Surging Economy: Adjusting for More Balanced Development = Ser. Contemp. China. China's Three Decades of Economic Reforms = Routl Stud Chin Econ China's Three Decades of Economic Reforms = Routl. Stud. Chin. Econ. Chinas Urban Space: Development Under Market Socialism = Routledge Stud China Chinas Urban Space: Development Under Market Socialism = Routledge. Stud. China. Chinas Urban Space: Development Under Market Socialism = Rout Stud China Tran Chinas Urban Space: Development Under Market Socialism = Rout. Stud. China. Tran. China's War On Terrorism: Counter-insurgency, Politics and Internal Security = Asian Secur Stud China's War On Terrorism: Counter-insurgency, Politics and Internal Security = Asian. Secur. Stud. China : The Crisis of 1989, Vol 1 = C Int St Sp China : The Crisis of 1989, Vol 1 = C. Int. St. Sp. China: The Next Twenty Years of Reform and Development = Chin Update Bk Ser China: The Next Twenty Years of Reform and Development = Chin. Update. Bk. Ser. China, The United States, and South-east Asia: Contending Perspectives On Politics, Security, and Economics = Asian Secur Stud China, The United States, and South-east Asia: Contending Perspectives On Politics, Security, and Economics = Asian. Secur. Stud. China Under Hu Jintao: Opportunities, Dangers, and Dilemmas = Ser Contemp China China Under Hu Jintao: Opportunities, Dangers, and Dilemmas = Ser. Contemp. China China Update Book Series = Chin Update Bk Ser China Update Book Series = Chin. Update Bk. Ser. China-u.s. Relations Transformed: Perspectives and Strategic Interactions = Routl Contemp China China-u.s. Relations Transformed: Perspectives and Strategic Interactions = Routl. Contemp. China. China & World Economy = China World Econ China & World Economy = China World Econ. China, Xinjiang and Central Asia: History, Transition and Crossborder Interaction Into The 21st Century = Rout Cont China Seri China, Xinjiang and Central Asia: History, Transition and Crossborder Interaction Into The 21st Century = Rout. Cont. China. Seri. Chinese American Educational Research and Development Association Book Series = Chin Am Educ Res Dev Chinese American Educational Research and Development Association Book Series = Chin. Am. Educ. Res. Dev. Chinese Annals of Mathematics = Chinese Ann. Math. Ser. A Chinese Annals of Mathematics = Chinese Ann. Math. Ser. B Chinese Annals of Mathematics Series B = Chinese Ann Math B Chinese Annals of Mathematics Series B = Chinese Ann. Math. B Chinese Army Today: Tradition and Transformation for The 21st Century = Asian Secur Stud Chinese Army Today: Tradition and Transformation for The 21st Century = Asian. Secur. Stud. Chinese Astronomy and Astrophysics = Chin. Astron. Astrophy Chinese Astronomy and Astrophysics = Chinese Astron Astr Chinese Astronomy and Astrophysics = Chinese Astron. Astr. Chinese Astronomy and Astrophysics = Chinese Astronom. Astrophys. Chinese Astronomy = Chinese Astron Chinese Astronomy = Chinese Astron. Chinese Banking Industry: Lessons From History for Today's Challenges = Routl Stud Chin Econ Chinese Banking Industry: Lessons From History for Today's Challenges = Routl. Stud. Chin. Econ. Chinese Big Business in Indonesia: The State of Capital = Routl Cont Se Asia S Chinese Big Business in Indonesia: The State of Capital = Routl. Cont. Se. Asia. S. Chinese Century: The Challenge to Global Order = Glob Iss Ser Chinese Century: The Challenge to Global Order = Glob. Iss. Ser. Chinese Ceramics Communications = Adv Mater Res-switz Chinese Ceramics Communications = Adv. Mater. Res-switz. Chinese Chemical Letters = Chin. Chem. Lett. Chinese Chemical Letters = Chinese Chem Lett Chinese Chemical Letters = Chinese Chem. Lett. Chinese Communist Party in Reform = Routl Stud Chin Econ Chinese Communist Party in Reform = Routl. Stud. Chin. Econ. Chinese Consumer Market: Opportunites and Risks = Chandos Asian Stud Chinese Consumer Market: Opportunites and Risks = Chandos. Asian. Stud. Chinese culture = Chin Cult Chinese Cyberspaces: Technological Changes and Political Effects = Asias Transform Chinese Cyberspaces: Technological Changes and Political Effects = Asias. Transform. Chinese Documentaries: From Dogma to Polyphony = Media Cult Soc Chang Chinese Documentaries: From Dogma to Polyphony = Media. Cult. Soc. Chang. Chinese Economic Development and The Environment = New Horiz Environ Ec Chinese Economic Development and The Environment = New. Horiz. Environ. Ec. Chinese Economic Law and Selected Comparisons From The Pacific Rim = Dean Rusk C Chinese Economic Law and Selected Comparisons From The Pacific Rim = Dean. Rusk. C. Chinese Economic Policy = Wor Sss Chi Chinese Economic Policy = Wor. Sss. Chi. Chinese economic studies = Chin Econ Stud Chinese Economic Studies=Chinese Econ. Stud. Chinese Economic Studies = Chinese Econ Stud Chinese Economic Studies = Chinese Econ. Stud. Chinese Economy=Chinese Economy Chinese Education and Society = Chinese Educ Soc Chinese Education and Society = Chinese Educ. Soc. Chinese Education = Chinese Educ Chinese Education = Chinese Educ. Chinese Entrepreneurship in A Global Era = Chin Worlds Chinese Entrepreneurship in A Global Era = Chin. Worlds. Chinese environment & development (Armonk, N.Y.) = Chin Environ Dev Chinese Ethnic Business: Global and Local Perspectives = Chin Worlds Chinese Ethnic Business: Global and Local Perspectives = Chin. Worlds. Chinese Geographical Science = Chinese Geogr Sci Chinese Geographical Science = Chinese Geogr. Sci. Chinese geographical science / Sponsored by Changchun Institute of Geography, Chinese Academy of Sciences = Chin Geogr Sci Chinese-German Journal of Clinical Oncology = Chin. Ger. J. Clin. Oncol. Chinese Heart in A Cognitive Perspective: Culture, Body, and Language = Appl Cogn Linguist Chinese Heart in A Cognitive Perspective: Culture, Body, and Language = Appl. Cogn. Linguist. Chinese History and Society = Chin Hist Soc Chinese History and Society = Chin. Hist. Soc. Chinese Identities, Ethnicity and Cosmopolitanism = Chin Worlds Chinese Identities, Ethnicity and Cosmopolitanism = Chin. Worlds. Chinese in America = Crit Per Asian Chinese in America = Crit. Per. Asian. Chinese in Britain, 1800-present: Economy, Transnationalism, Identity = Palg Mac Ser Trans Chinese in Britain, 1800-present: Economy, Transnationalism, Identity = Palg. Mac. Ser. Trans. Chinese in Britain, 1800-present: Economy, Transnationalism, Identity = Palg Mac Transnat H Chinese in Britain, 1800-present: Economy, Transnationalism, Identity = Palg. Mac. Transnat. H. Chinese in Eastern Europe and Russia: A Middleman Minority in A Transnational Era = Chin Worlds Chinese in Eastern Europe and Russia: A Middleman Minority in A Transnational Era = Chin. Worlds. Chinese Institute of Engineers = J. Chinese Inst. Engrs. Chinese Journal of Aeronautics = Chinese J Aeronaut Chinese Journal of Aeronautics = Chinese J. Aeronaut. Chinese Journal of Aeronautics = Chin. J. Aeronaut. Chinese Journal of Agricultural Biotechnology = Chin. J. Agric. Biotechnol. Chinese Journal of Analytical Chemistry = Chinese J Anal Chem Chinese Journal of Analytical Chemistry = Chinese J. Anal. Chem. Chinese Journal of Analytical Chemistry = Chin. J. Anal. Chem. Chinese Journal of Applied Mechanics = Chinese J. Appl. Mech. Chinese Journal of Applied Probability and Statistics = Chinese J. Appl. Probab. Statist. Chinese Journal of Astronomy and Astrophysics = Chinese J Astron Ast Chinese Journal of Astronomy and Astrophysics = Chinese J. Astron. Ast. Chinese Journal of Astronomy and Astrophysics = Chin. J. Astron. Astrophys. Chinese journal of biotechnology = Chin J Biotechnol Chinese Journal of Biotechnology=Chin J Biotechnol;; Chinese Journal of Biotechnology = Chin. J. Biotechnol. Chinese Journal of Cancer Research = Chinese J Cancer Res Chinese Journal of Cancer Research = Chinese J. Cancer Res. Chinese Journal of Cancer Research = Chin J Cancer Res Chinese Journal of Cancer Research = Chin. J. Cancer Res. Chinese journal of cancer research = Chung-kuo yen cheng yen chiu|Chin. J. Cancer Res. Chinese Journal of Catalysis = Chinese J Catal Chinese Journal of Catalysis = Chinese J Catal+ Chinese Journal of Catalysis = Chinese J. Catal. Chinese Journal of Catalysis = Chinese J. Catal+.+ Chinese Journal of Catalysis = Chin. J. Catal. Chinese Journal of Chemical Engineering = Chinese J Chem Eng Chinese Journal of Chemical Engineering = Chinese J. Chem. Eng. Chinese Journal of Chemical Engineering = Chin. J. Chem. Eng. Chinese Journal of Chemical Physics = Chinese J Chem Phys Chinese Journal of Chemical Physics = Chinese J. Chem. Phys. Chinese Journal of Chemical Physics = Chin J Chem Phys Chinese Journal of Chemical Physics = Chin. J. Chem. Phys. Chinese Journal of Chemistry = Chinese J Chem Chinese Journal of Chemistry = Chinese J. Chem. Chinese Journal of Chemistry = Chin. J. Chem. Chinese Journal of Chromatography = Chin. J. Chromatogr. Chinese Journal of Communication = Chin J Commun Chinese Journal of Communication = Chin. J. Commun. Chinese Journal of Contemporary Mathematics = Chinese J. Contemp. Math. Chinese journal of digestive diseases = Chin J Dig Dis Chinese Journal of Electronics = Chinese J Electron Chinese Journal of Electronics = Chinese J. Electron. Chinese journal of genetics = Acta genetica Sinica|Chin. J. Genet. Chinese Journal of Geochemistry = Chin. J. Geochem. Chinese Journal of Geophysics-chinese Edition = Chinese J Geophys-ch Chinese Journal of Geophysics-chinese Edition = Chinese J. Geophys-ch. Chinese Journal of Inorganic Chemistry = Chinese J Inorg Chem Chinese Journal of Inorganic Chemistry = Chinese J. Inorg. Chem. Chinese Journal of Inorganic Chemistry = Chin J Inorg Chem Chinese Journal of Inorganic Chemistry = Chin. J. Inorg. Chem. Chinese journal of integrative medicine = Chin J Integr Med Chinese Journal of Integrative Medicine = Chin J Integr Med Chinese Journal of Integrative Medicine = Chin. J. Integr. Med. Chinese Journal of International Law = Chin J Int Law Chinese Journal of International Law = Chin. J. Int. Law Chinese Journal of Mechanical Engineering = Chin J Mech Eng Chinese Journal of Mechanical Engineering = Chin. J. Mech. Eng. Chinese Journal of Mechanical Engineering = Chin J Mech Eng-en Chinese Journal of Mechanical Engineering = Chin. J. Mech. Eng-en. Chinese Journal of Mechanics-series A = Chinese J Mech-ser A Chinese Journal of Mechanics-series A = Chinese J. Mech-ser. A Chinese Journal of Mechanics-series A = Chin J Mech-ser A Chinese Journal of Mechanics-series A = Chin. J. Mech-ser. A Chinese Journal of Metal Science & Technology = Chin. J. Met. Sci. Technol. Chinese Journal of Nuclear Physics = Chin. J. Nucl. Phys. Chinese Journal of Numerical Mathematics and Applications = Chinese J. Numer. Math. Appl. Chinese Journal of Oceanology and Limnology = Chin J Oceanol Limn Chinese Journal of Oceanology and Limnology = Chin. J. Oceanol. Limn. Chinese Journal of Oceanology and Limnology = Chin. J. Oceanol. Limnol. Chinese journal of oceanology and limnology = Zhongguo hai yang hu zhao xue bao / edited by the Chinese Society of Oceanology and Limnology|Chin. J. Oceanol. Limnol. Chinese Journal of Organic Chemistry = Chinese J Org Chem Chinese Journal of Organic Chemistry = Chinese J. Org. Chem. Chinese Journal of Physics = Chinese J. Phys. Chinese Journal of Physics = Chinese J Phys Chinese Journal of Physics = Chinese J. Phys. Chinese Journal of Physics = Chin. J. Phys. Chinese Journal of Physiology = Chinese J Physiol Chinese Journal of Physiology = Chinese J. Physiol. Chinese Journal of Physiology=Chin J Physiol;; Chinese Journal of Physiology = Chin. J. Physiol. Chinese Journal of Polymer Science = Chinese J Polym Sci Chinese Journal of Polymer Science = Chinese J. Polym. Sci. Chinese Journal of Polymer Science = Chin. J. Polym. Sci. Chinese journal of population science = Chin J Popul Sci Chinese Journal of Psychology = Chinese J Psychol Chinese Journal of Psychology = Chinese J. Psychol. Chinese Journal of Structural Chemistry = Chinese J Struc Chem Chinese Journal of Structural Chemistry = Chinese J. Struc. Chem. Chinese Journal of Structural Chemistry = Chin J Struct Chem Chinese Journal of Structural Chemistry = Chin. J. Struct. Chem. Chinese Journal of Traumatology = Chin. J. Traumatol. Chinese Kinship: Contemporary Anthropological Perspectives = Rout Cont China Seri Chinese Kinship: Contemporary Anthropological Perspectives = Rout. Cont. China. Seri. Chinese Kinship: Contemporary Anthropological Perspectives = Routl Contemp China Chinese Kinship: Contemporary Anthropological Perspectives = Routl. Contemp. China. Chinese Law and Government = Chinese Law Gov Chinese Law and Government = Chinese Law Gov. Chinese Literature = Chinese Literature Chinese Literature-essays Articles Reviews = Chinese Lit-essays Chinese Literature-essays Articles Reviews = Chinese Lit-essays. Chinese Local Elites and Patterns of Dominance = Stud China Chinese Local Elites and Patterns of Dominance = Stud. China. Chinese Management Studies = Chin Manag Stud Chinese Management Studies = Chin. Manag. Stud. Chinese Mathematics = Chin Mathematics Chinese Mathematics = Chin. Mathematics Chinese Medical Journal = Chinese Med J-peking Chinese Medical Journal = Chinese Med. J-peking. Chinese medical journal = Chin Med J (Engl) Chinese Medical Journal=Chin Med J (Engl);; Chinese Medical Journal = Chin. Med. J. (Engl.) Chinese Medical Sciences Journal=Chin Med Sci J;; Chinese Medical Sciences Journal = Chin. Med. Sci. J. Chinese medicine = Chin Med Chinese Migrants and Internationalism: Forgotten Histories, 1917-1945 = Chin Worlds Chinese Migrants and Internationalism: Forgotten Histories, 1917-1945 = Chin. Worlds. Chinese Military Strategy in The Third Indochina War: The Last Maoist War = Asian Secur Stud Chinese Military Strategy in The Third Indochina War: The Last Maoist War = Asian. Secur. Stud. Chinese Nationalism in The Global Era = Polit Asia Chinese Nationalism in The Global Era = Polit. Asia. Chinese Optics Letters = Chin Opt Lett Chinese Optics Letters = Chin. Opt. Lett. Chinese Particle Le: Discourse Construction and Pragmatic Marking in Chinese = Rout Stud Asian Ling Chinese Particle Le: Discourse Construction and Pragmatic Marking in Chinese = Rout. Stud. Asian. Ling. Chinese Party-state in The 21st Century = Routl Contemp China Chinese Party-state in The 21st Century = Routl. Contemp. China. Chinese Perspective On Risk Analysis and Crisis Response = Adv Intel Sys Res Chinese Perspective On Risk Analysis and Crisis Response = Adv. Intel. Sys. Res. Chinese Physics B = Chinese Phys B Chinese Physics B = Chinese Phys. B Chinese Physics B = Chin. Phys. B Chinese Physics B = Chin. Phys. B. Chinese Physics C = Chinese Phys C Chinese Physics C = Chinese Phys. C Chinese Physics C = Chin. Phys. C Chinese Physics = Chinese Phys Chinese Physics = Chinese Phys. Chinese Physics = Chin. Phys. Chinese Physics-english Tr = Chin Phys Chinese Physics-english Tr = Chin. Phys. Chinese Physics Letters = Chinese Phys. Lett. Chinese Physics Letters = Chinese Phys Lett Chinese Physics Letters = Chinese Phys. Lett. Chinese Physics Letters = Chin. Phys. Lett. Chinese Power and International Institutions - Alternate Paths to Global Power = Asian Secur Stud Chinese Power and International Institutions - Alternate Paths to Global Power = Asian. Secur. Stud. Chinese Quarterly Journal of Mathematics = Chinese Quart. J. Math. Chinese Railways: Reform and Efficiency Improvement Opportunities = Contrib Econ Chinese Railways: Reform and Efficiency Improvement Opportunities = Contrib. Econ. Chinese Science Bulletin = Chinese Sci. Bull. Chinese Science Bulletin = Chinese Sci Bull Chinese Science Bulletin = Chinese Sci. Bull. Chinese Science Bulletin = Chin. Sci. Bull. Chinese science bulletin = Kexue tongbao|Chin. Sci. Bull. Chinese science = Chin Sci Chinese Scientists and Responsibility: Ethical Issues of Human Genetics in Chinese and International Contexts = Mit Inst Asienk Hamb Chinese Scientists and Responsibility: Ethical Issues of Human Genetics in Chinese and International Contexts = Mit. Inst. Asienk. Hamb. Chinese Society On The Eve of Tiananmen = Harv Con Ch Chinese Society On The Eve of Tiananmen = Harv. Con. Ch. Chinese Sociology and Anthropology = Chinese Soc Anthrop Chinese Sociology and Anthropology = Chinese Soc. Anthrop. Chinese sociology and anthropology = Chin Sociol Anthropol Chinese Sociology And Anthropology = Chin. Sociol. Anthropol. Chinese Space Policy: A Study in Domestic and International Politics = Space Power Polit Chinese Space Policy: A Study in Domestic and International Politics = Space Power. Polit. Chinese Spoken Language Processing, Proceedings = Lect Notes Comput Sc Chinese Spoken Language Processing, Proceedings = Lect. Notes. Comput. Sc. Chinese State in Transition = Rout Stud China Tran Chinese State in Transition = Rout. Stud. China. Tran. Chinese Strategic Culture and Foreign Policy Decision-making: Confucianism, Leadership and War = Asian Secur Stud Chinese Strategic Culture and Foreign Policy Decision-making: Confucianism, Leadership and War = Asian. Secur. Stud. Chinese Studies = Brit Lib Oc Chinese Studies = Brit. Lib. Oc. Chinese Studies in History = Chinese Stud Hist Chinese Studies in History = Chinese Stud. Hist. Chinese Studies in Literature = Chinese Stud Lit Chinese Studies in Literature = Chinese Stud. Lit. Chinese Studies in Philosophy = Chinese Stud Philos Chinese Studies in Philosophy = Chinese Stud. Philos. Chinese Transnational Networks = Chin Worlds Chinese Transnational Networks = Chin. Worlds. Chinese Urban Reform = St Cont Ch Chinese Urban Reform = St. Cont. Ch. Chinese Wisdom Alive: Vignettes of Life-thinking = Focus Civiliz Cult Chinese Wisdom Alive: Vignettes of Life-thinking = Focus. Civiliz. Cult. Chinese Women in The Imperial Past = Sinica Leidensia Chinese Women in The Imperial Past = Sinica. Leidensia. Chinese Worlds = Chin Worlds Chinese Worlds = Chin. Worlds Chinua Achebe's Things Fall Apart = Routledge Guides Lit Chinua Achebe's Things Fall Apart = Routledge. Guides. Lit. Chiral Dynamics: Theory and Experiment = Lect Notes Phys Chiral Dynamics: Theory and Experiment = Lect. Notes. Phys. Chirality=Chirality;; Chirality = Chirality Chiral Separations By Liquid Chromatography = Acs Sym Ser Chiral Separations By Liquid Chromatography = Acs. Sym. Ser. Chiral Soliton Models for Baryons = Lect Notes Phys Chiral Soliton Models for Baryons = Lect. Notes. Phys. Chiral Sulfur Ligands: Asymmetric Catalysis = Rsc Catal Ser Chiral Sulfur Ligands: Asymmetric Catalysis = Rsc. Catal. Ser. Chirigaku hyoron = Chirigaku Hyoron Chiron. Mitteilungen der Kommission für Alte Geschichte und Epigraphik des Deutschen Archäologischen Instituts = Chiron Chiropractic history : the archives and journal of the Association for the History of Chiropractic = Chiropr Hist Chiropractic & osteopathy = Chiropr Osteopat Chiropractic Sports Medicine = Chiropr Sport Med Chiropractic Sports Medicine = Chiropr. Sport. Med. Chirurg=Chirurg;; Chirurg = Chirurg Chirurgia (Bucharest, Romania : 1990) = Chirurgia (Bucur) Chirurgia = Chirurgia-bucharest Chirurgia = Chirurgia-bucharest. Chirurgia=Chirurgia (Bucur);; Chirurgia = Chirurgia (Bucur.) Chirurgia = Chirurgia (Bucur) Chirurgia degli Organi di Movimento = Chir. Organi Mov. Chirurgia Degli Organi di Movimento=Chir Organi Mov;; Chirurgia e patologia sperimentale = Chir Patol Sper Chirurgia e Patologia Sperimentale = Chir. Patol. Sper. Chirurgia italiana = Chir Ital Chirurgia Italiana=Chir Ital;; Chirurgia Italiana = Chir. Ital. Chirurgia Maxillofacialis et Plastica = Chir. Maxillofac. Plast. Chirurgia Maxillofacialis Et Plastica=Chir Maxillofac Plast;; Chirurgia maxillofacialis & plastica = Chir Maxillofac Plast Chirurgia narzadow ruchu i ortopedia polska = Chir Narzadow Ruchu Ortop Pol Chirurgia Narzadow Ruchu i Ortopedia Polska = Chir. Narzadow Ruchu Ortop. Pol. Chirurgia Narzadow Ruchu I Ortopedia Polska=Chir Narzadow Ruchu Ortop Pol;; Chirurgia Plastica = Chir Plast Chirurgia Plastica = Chir. Plast. Chirurgia urologica = Chir Urol Chirurgie=Chirurgie;; Chirurgie = Chirurgie Chirurgie de la main = Chir Main Chirurgie de la Main = Chir. Main Chirurgie De La Main = Chir Main Chirurgie De La Main = Chir. Main Chirurgie; memoires de l'Academie de chirurgie = Chirurgie Chirurgien-Dentiste de France = Chir. Dent. Fr. Chirurgie pediatrique = Chir Pediatr Chirurgie Pediatrique = Chir Pediatr Chirurgie Pediatrique = Chir. Pediatr. Chirurgische Gastroenterologie = Chir Gastroenterol Chirurgische Gastroenterologie = Chir. Gastroenterol. Chirurgisches Forum fur experimentelle und klinische Forschung = Chir Forum Exp Klin Forsch Chirurgisches Forum fur Experimentelle und Klinische Forschung = Chir. Forum Exp. Klin. Forsch. [Chiryo] [Therapy] = Chiryo Chitin: Formation Amd Diagenesis = Top Geobiol Chitin: Formation Amd Diagenesis = Top. Geobiol. Chittagong University Studies = Chittagong Univ. Stud. Part II Sci. Chitty's law journal = Chittys Law J Chloe = Chloe Chlor-alkali and Chlorate Technology: R. B. Macmullin Memorial Symposium = Elec Soc S Chlor-alkali and Chlorate Technology: R. B. Macmullin Memorial Symposium = Elec. Soc. S. Chloride Channels = Curr Top Membr Chloride Channels = Curr. Top. Membr. Chlorinated Paraffins = Handb Environ Chem Chlorinated Paraffins = Handb. Environ. Chem. Chlorinated Solvent and Dnapl Remediation = Acs Sym Ser Chlorinated Solvent and Dnapl Remediation = Acs. Sym. Ser. Chlorine in Coal = Coal Sci Technol Chlorine in Coal = Coal Sci. Technol. Chloroplast: Basics and Applications = Adv Photosynth Resp Chloroplast: Basics and Applications = Adv. Photosynth. Resp. Chloroplast: From Molecular Biology to Biotechnology = Nato Asi 3 High Tech Chloroplast: From Molecular Biology to Biotechnology = Nato. Asi. 3. High. Tech. Chocolate, Fast Foods and Sweeteners: Consumption and Health = Food Bev Consum Hlth Chocolate, Fast Foods and Sweeteners: Consumption and Health = Food. Bev. Consum. Hlth. Choice and Control in American Education, Vol 1 = Stan Educ P Choice and Control in American Education, Vol 1 = Stan. Educ. P. Choice and Control in American Education, Vol 2 = Stan Educ P Choice and Control in American Education, Vol 2 = Stan. Educ. P. Choice (Chicago, Ill.) = Choice (Middletown) Choice in Economic Contexts = Res Econ Anthropol Choice in Economic Contexts = Res. Econ. Anthropol. Choices in Financing Health Care and Old Age Security = World B Dis Choices in Financing Health Care and Old Age Security = World. B. Dis. Choices in respiratory management = Choices Respir Manage Choices in Respiratory Management = Choices Respir. Manage. Choices (New York, N.Y.) = Choices Cholecystokinin = Ann Ny Acad Sci Cholecystokinin = Ann. Ny. Acad. Sci. Cholestasis = Int Congr Ser Cholestasis = Int. Congr. Ser. Cholestatic Liver Disease = Clin Gastroent-ser Cholestatic Liver Disease = Clin. Gastroent-ser. Cholestatic Liver Diseases in Children and Adults = Falk Symp Cholestatic Liver Diseases in Children and Adults = Falk. Symp. Cholestatic Liver Diseases: New Strategies for Prevention and Treatment of Hepatobiliary and Cholestatic Liver Diseases = Falk Symp Cholestatic Liver Diseases: New Strategies for Prevention and Treatment of Hepatobiliary and Cholestatic Liver Diseases = Falk. Symp. Cholestatic Liver Diseases: Therapeutic Options and Perspectives = Falk Symp Cholestatic Liver Diseases: Therapeutic Options and Perspectives = Falk. Symp. Cholesterol Binding and Cholesterol Transport Proteins: Structure and Function in Health and Disease = Subcell Biochem Cholesterol Binding and Cholesterol Transport Proteins: Structure and Function in Health and Disease = Subcell. Biochem. Cholinergic Function and Dysfunction = Prog Brain Res Cholinergic Function and Dysfunction = Prog. Brain. Res. Cholinergic Mechanisms: From Molecular Biology to Clinical Significance = Prog Brain Res Cholinergic Mechanisms: From Molecular Biology to Clinical Significance = Prog. Brain. Res. Cholinergic Neurotransmission : Functional and Clinical Aspects = Prog Brain Res Cholinergic Neurotransmission : Functional and Clinical Aspects = Prog. Brain. Res. Chomsky Et L'ordinateur: Approche Critique D'une Theorie Linguistique = Interlangues Chomsky Et L'ordinateur: Approche Critique D'une Theorie Linguistique = Interlangues. Ch'onmun Hakhoe chi. The journal of the Korean Astronomical Society. Han'guk Ch'onmun Hakhoe = J Korean Astron Soc Chonnam Uidae chapchi = Chonnam Med J Choreographing The Global in European Cinema and Theater = Stud Eur Cult Hist Choreographing The Global in European Cinema and Theater = Stud. Eur. Cult. Hist. Choreography of Modernism in France: La Danseuse, 1830-1930 = Res Monogr Fr Stud Choreography of Modernism in France: La Danseuse, 1830-1930 = Res. Monogr. Fr. Stud. Chorus of Different Voices = Amer Univ St Ser Ix Chorus of Different Voices = Amer. Univ. St. Ser. Ix. Chosen i-bo. The Korean medical journal = Chosen Ibo Cho-sŏn Min-ju-ju-ŭi In-min Kong-hwa-kuk Kwa-hak-wŏn = Cho-sŏn In-min Kong-hwa-kuk Kwa-hak-wŏn T'ong-bo [Choson uihak] [Korean medicine] = Choson Uihak Chot mai het kan phayaban = Chot Mai Het Kan Phayaban Chot Mai Het Kan Phayaban = Chot Mai Het Kan Phayaban Chp 2000: Co-generation for The 21st Century = Imeche Conf Trans Chp 2000: Co-generation for The 21st Century = Imeche. Conf. Trans. Christendom and European Identity = Relig Soc Christendom and European Identity = Relig. Soc. Christiana Albertina; Kieler Universitats-Zeitschrift = Christiana Albertina Kiel Univ Z Christian and Lyric Tradition in Victorian Women's Poetry = Routl Stud Ninet Cen Christian and Lyric Tradition in Victorian Women's Poetry = Routl. Stud. Ninet. Cen. Christian Bioethics = Christ Bioet Christian Bioethics = Christ. Bioet. Christian bioethics = Christ Bioeth Christian century (Chicago, Ill. : 1902) = Christ Century Christianity and Civil Society = Bost Theo I Christianity and Civil Society = Bost. Theo. I. Christianity and crisis = Christ Crisis Christianity and Judaism in Antiquity = Chr Jud Ant Christianity and Judaism in Antiquity = Chr. Jud. Ant. Christianity and Society in The Modern World = Christ Soc Mod World Christianity and Society in The Modern World = Christ. Soc. Mod. World Christianity and Western Civilization = P Wethers I Christianity and Western Civilization = P. Wethers. I. Christianity, Empire, and The Making of Religion in Late Antiquity = Divin Reread Late An Christianity, Empire, and The Making of Religion in Late Antiquity = Divin. Reread. Late An. Christianity & Literature = Christian Lit Christianity & Literature = Christian. Lit. Christianity today = Christ Today Christian Medical Dental Society journal = Christ Med Dent Soc J Christian Medical Dental Society Journal = Christ. Med. Dent. Soc. J. Christian Medical Society journal = Christ Med Soc J Christian nurse = Christ Nurse (Mysore) Christian Nurse = Christ. Nurse (Mysore) Christian nurse international = Christ Nurse Int Christian Nurse International = Christ. Nurse Int. Christian Political Ethics = Ethikon Ser Comp Christian Political Ethics = Ethikon. Ser. Comp. Christian Religion and Biotechnology = Int Libr Eth Law New Christian Religion and Biotechnology = Int. Libr. Eth. Law. New. Christians At The Heart of Islamic Rule = Hist Christ Muslim Christians At The Heart of Islamic Rule = Hist. Christ. Muslim. Christian Scholars Review = Christ Sch Christian Scholars Review = Christ. Sch. Christian scholar's review = Christ Sch Rev Christian Scholars Review, Vol 17, No 4 = Christ Sch Christian Scholars Review, Vol 17, No 4 = Christ. Sch. Christian Science monitor (Boston, Mass. : 1983) = Christ Sci Monitor Christian Science monitor (Boston, Mass. : Eastern ed.) = Christ Sci Monitor (East Ed) Christians, Muslims, and Jews in Medieval and Early Modern Spain = N D Conf M Christians, Muslims, and Jews in Medieval and Early Modern Spain = N. D. Conf. M. Christian Studies Today = Christ Stud Christian Studies Today = Christ. Stud. Christ in The Letters of Paul: in Place of A Christology = Beih Z Neutest Wiss Christ in The Letters of Paul: in Place of A Christology = Beih. Z. Neutest. Wiss. Christliche Spiritualitat: Formen Und Traditionen Der Suche Nach Gott = Degruyter Studienb Christliche Spiritualitat: Formen Und Traditionen Der Suche Nach Gott = Degruyter. Studienb. Christ to the world = Christ World Chromaffin Cell: Transmitter Biosynthesis, Storage, Release, Actions, and Informatics = Ann Ny Acad Sci Chromaffin Cell: Transmitter Biosynthesis, Storage, Release, Actions, and Informatics = Ann. Ny. Acad. Sci. Chromaffin Cell: Trnsmitter Biosynthesis, Storage, Release, Actions, and Informatics = Ann Ny Acad Sci Chromaffin Cell: Trnsmitter Biosynthesis, Storage, Release, Actions, and Informatics = Ann. Ny. Acad. Sci. Chromatic Graph Theory = Crc Discr Math Appl Chromatic Graph Theory = Crc. Discr. Math. Appl. Chromatic Monitoring of Complex Conditions = Ser Sensors Chromatic Monitoring of Complex Conditions = Ser. Sensors. Chromatin and Chromatin Remodeling Enzymes, Pt A = Method Enzymol Chromatin and Chromatin Remodeling Enzymes, Pt A = Method. Enzymol. Chromatin and Chromatin Remodeling Enzymes, Pt B = Method Enzymol Chromatin and Chromatin Remodeling Enzymes, Pt B = Method. Enzymol. Chromatin and Chromatin Remodeling Enzymes, Pt C = Method Enzymol Chromatin and Chromatin Remodeling Enzymes, Pt C = Method. Enzymol. Chromatin Immunoprecipitation Assays: Methods and Protocols = Methods Mol Biol Chromatin Immunoprecipitation Assays: Methods and Protocols = Methods Mol. Biol. Chromatin = Method Enzymol Chromatin = Method. Enzymol. Chromatin = Methods Enzymol Chromatin = Methods. Enzymol. Chromatographia = Chromatographia Chromatographic Analysis of The Environment, Third Edition = Chromatogr Sci Ser Chromatographic Analysis of The Environment, Third Edition = Chromatogr. Sci. Ser. Chromatographic Characterization of Polymers = Adv Chem Ser Chromatographic Characterization of Polymers = Adv. Chem. Ser. Chromatographic Methods = Chromat Met Chromatographic Methods = Chromat. Met. Chromatographic reviews = Chromatogr Rev Chromatographic Reviews = Chromatogr. Rev. Chromatographic Science Series = Chromatogr Sci Ser Chromatographic Science Series = Chromatogr. Sci. Ser. Chromatographic Society Symposium Series = Chrom S Sym Chromatographic Society Symposium Series = Chrom. S. Sym. Chromatography for Sustainable Polymeric Materials: Renewable, Degradable and Recyclable = Adv Polym Sci Chromatography for Sustainable Polymeric Materials: Renewable, Degradable and Recyclable = Adv. Polym. Sci. Chromatography in Biotechnology = Acs Sym Ser Chromatography in Biotechnology = Acs. Sym. Ser. Chromatography of Pharmaceuticals = Acs Sym Ser Chromatography of Pharmaceuticals = Acs. Sym. Ser. Chromatography of Polymers = Acs Sym Ser Chromatography of Polymers = Acs. Sym. Ser. Chromatography: Types, Techniques and Methods = Chem Eng Method Tech Chromatography: Types, Techniques and Methods = Chem. Eng. Method. Tech. Chromogenic Phenomena in Polymers = Acs Sym Ser Chromogenic Phenomena in Polymers = Acs. Sym. Ser. Chromogranins: Functional and Clinical Aspects = Adv Exp Med Biol Chromogranins: Functional and Clinical Aspects = Adv. Exp. Med. Biol. Chromophyte Algae = Syst Assoc Spec Vol Chromophyte Algae = Syst. Assoc. Spec. Vol. Chromosoma=Chromosoma;; Chromosoma = Chromosoma Chromosomal Translocations and Oncogenic Transcription Factors = Curr Top Microbiol Chromosomal Translocations and Oncogenic Transcription Factors = Curr. Top. Microbiol. Chromosome Coordinating Meeting 1992 ( Ccm 92 ), Vol 1 = Genome Pr R Chromosome Coordinating Meeting 1992 ( Ccm 92 ), Vol 1 = Genome. Pr. R. Chromosome = John Inn S Chromosome = John. Inn. S. Chromosome research : an international journal on the molecular, supramolecular and evolutionary aspects of chromosome biology = Chromosome Res Chromosome Research=Chromosome Res;; Chromosome Research = Chromosome Res Chromosome Research = Chromosome Res. Chromosomes Today = Chromosom T Chromosomes Today = Chromosom. T. Chromosomes Today, Vol 12 = Chromosom T Chromosomes Today, Vol 12 = Chromosom. T. Chromosomes Today, Vol 13 = Chromosom T Chromosomes Today, Vol 13 = Chromosom. T. Chromosomes Today, Vol 14 = Chromosom T Chromosomes Today, Vol 14 = Chromosom. T. Chronica horticulturae = Chron Horticult Chronic and Recurrent Pain in Children and Adolescents = Prog Pain Res Manag Chronic and Recurrent Pain in Children and Adolescents = Prog. Pain Res. Manag. Chronic Care, Health Care Systems and Services Integration = Res Sociol Health Ca Chronic Care, Health Care Systems and Services Integration = Res. Sociol. Health Ca. Chronic Diseases and Injuries in Canada = Chron Dis Inj Can Chronic Diseases and Injuries in Canada = Chron. Dis. Inj. Can. Chronic diseases in Canada = Chronic Dis Can Chronic Diseases in Canada = Chronic Dis Can Chronic Diseases in Canada = Chronic Dis. Can. Chronic Diseases In Canada=Chronic Dis Can;; Chronic Fatigue Syndrome = Ciba F Symp Chronic Fatigue Syndrome = Ciba. F. Symp. Chronic Fatigue Syndrome: Symptoms, Causes and Prevention = Immunol Immune Syst Chronic Fatigue Syndrome: Symptoms, Causes and Prevention = Immunol. Immune. Syst. Chronic Hepatitis: Metabolic, Cholestatic, Viral and Autoimmune = Falk Symp Chronic Hepatitis: Metabolic, Cholestatic, Viral and Autoimmune = Falk. Symp. Chronic illness = Chronic Illn Chronic Illness = Chronic Illn. Chronic Inflammation of Liver and Gut = Falk Symp Chronic Inflammation of Liver and Gut = Falk. Symp. Chronic Inflammatory Bowel Disease = Falk Symp Chronic Inflammatory Bowel Disease = Falk. Symp. Chronicle = Chronicle Chronicle (Philadelphia, Pa. : 1990) = Chronicle (Phila) Chronicle (Royal College of Physicians of Edinburgh) = Chron R Coll Physicians Edinb Chronicles of Oklahoma = Chron Okla Chronic Liver Damage = Int Congr Ser Chronic Liver Damage = Int. Congr. Ser. Chronic Liver Failure: Mechanisms and Management = Clin Gastroent-ser Chronic Liver Failure: Mechanisms and Management = Clin. Gastroent-ser. Chronic Lymphocytic Leukemia = Curr Top Microbiol Chronic Lymphocytic Leukemia = Curr. Top. Microbiol. Chronic Obstructive Pulmonary Disease: Pathogenesis to Treatment = Novart Fdn Symp Chronic Obstructive Pulmonary Disease: Pathogenesis to Treatment = Novart. Fdn. Symp. Chronic Pain and Addiction = Adv Psychosom Med Chronic Pain and Addiction = Adv. Psychosom. Med. Chronic Pain: A Primary Care Guide to Practical Management, Second Edition = Curr Clin Pract Chronic Pain: A Primary Care Guide to Practical Management, Second Edition = Curr. Clin. Pract. Chronic Prostatitis/chronic Pelvic Pain Syndrome = Curr Clin Urol Chronic Prostatitis/chronic Pelvic Pain Syndrome = Curr. Clin. Urol. Chronic respiratory disease = Chron Respir Dis Chronic Respiratory Disease = Chron. Respir. Dis. Chronic Viral and Inflammatory Cardiomyopathy = E Schering Res Fdn W Chronic Viral and Inflammatory Cardiomyopathy = E. Schering. Res. Fdn. W. Chronic Viral Hepatitis: Diagnosis and Therapeutics, Second Edition = Clin Gastroent-ser Chronic Viral Hepatitis: Diagnosis and Therapeutics, Second Edition = Clin. Gastroent-ser. Chronique d'Egypte; bulletin periodique de la Fondation egyptologique reine Elisabeth = Chron Egypte Chronique d'Egypte = CE Chronique d'Égypte = ChronEg Chroniques d'actualite de la S.E.D.E.I.S = Chron Actual SEDEIS Chronobiologia = Chronobiologia Chronobiology international = Chronobiol Int Chronobiology International=Chronobiol Int;; Chronobiology International = Chronobiol Int Chronobiology International = Chronobiol. Int. Chronobiology : Its Role in Clinical Medicine, General Biology, and Agriculture, Part A = Prog Clin Biol Res Chronobiology : Its Role in Clinical Medicine, General Biology, and Agriculture, Part A = Prog. Clin. Biol. Res. Chronobiology : Its Role in Clinical Medicine, General Biology, and Agriculture, Part B = Prog Clin Biol Res Chronobiology : Its Role in Clinical Medicine, General Biology, and Agriculture, Part B = Prog. Clin. Biol. Res. Chrono-topologies: Hybrid Spatialities and Multiple Temporalities = Crit Stud Chrono-topologies: Hybrid Spatialities and Multiple Temporalities = Crit. Stud. Chrysostomosbilder in 1600 Jahren: Facetten Der Wirkungsgeschichte Eines Kirchenvaters = Arb Kirchengesch Chrysostomosbilder in 1600 Jahren: Facetten Der Wirkungsgeschichte Eines Kirchenvaters = Arb. Kirchengesch. Chuncui Shuxue yu Yingyong Shuxue Zhuanzhu = Chuncui Shuxue yu Yingyong Shuxue Zhuanzhu Chungara-revista De Antropologia Chilena = Chungara Chungara-revista De Antropologia Chilena = Chungara. Chung Chien Wai Ko Ts=Chih;; Chung-Hua Cheng Hsing Shao Shang Wai Ko Tsa Chih [Chinese Journal OfPlastic Surgery and Burns] Chung Hua Cheng Hsing Shao Shang Wai Ko Ts=Chih;; Chung-Hua Chieh Ho Ho Hu Hsi Tsa Chih Chinese Journal of Tuberculosis and Respiratory Diseases=Chung Hua Chieh Ho Ho Hu Hsi Tsa Chih;; Chung-Hua Chung Liu Tsa Chih [Chinese Journal of Oncology]=Chung Hua Chung Liu Tsa Chih;; Chung-Hua Erh Pi Yen Hou Ko Tsa Chih Chinese Journal Of Otorhinolaryngology=Chung Hua Erh Pi Yen Hou Ko Tsa Chih;; Chung-Hua Fu Chan Ko Tsa Chih [Chinese Journal of Obstetrics AndGynecology]=Chung Hua Fu Chan Ko Tsa Chih;; Chung-Hua Hsueh Yeh Hsueh Tsa Chih Chinese Journal of Hematology=Chung Hua Hsueh Yeh Hsueh Tsa Chi;; Chung-Hua I Hsueh Tsa Chih [Chinese Medical Journal]=Chung Hua I Hsueh Tsa Chih;; Chung-Hua I Hsueh Tsa Chih [Chinese Medical Journal]=Chung Hua I Hsueh Tsa Chih (Taipei);; Chung-Hua Kou Chiang I Hsueh Tsa Chih Chinese Journal of Stomatology=Chung Hua Kou Chiang Hsueh Tsa Chih;; Chung-Hua Liu Hsing Ping Hsueh Tsa Chih Chinese Journal of Epidemiology (Pei-Ching=Chung Hua Liu Hsing Ping Hsueh Tsa Chih;; Chung-Hua Min Kuo Hsiao Erh Ko I Hsueh Hui Tsa Chih Chung Hua Min KuoHsiao Erh Ko I Hsueh Hu=Tsa Chih;; Chung-Hua Min Kuo Wei Sheng Wu Chi Mien I Hsueh Tsa Chih Chinese JournalOf Microbiology and Immunology Chung Hua Min Kuo Wei Sheng Wu Chi Mien=Hsueh Tsa Chih;; Chung-Hua Nei Ko Tsa Chih Chinese Journal of Internal Medicine=Chung Hua Nei Ko Tsa Chih;; Chung-Hua Ping Li Hsueh Tsa Chih [Chinese Journal of Pathology]=Chung Hua Ping Li Hsueh Tsa Chih;; Chung-Hua Shih Yen Ho Lin Chuang Ping Tu Hsueh Tsa Chih ChineseJournal of Experimental and Clinical Virology Chung Hua Shih Yen Ho Chung-Hua Wai Ko Tsa Chih [Chinese Journal of Surgery]=Chung Hua Wai Ko Tsa Chih;; Chung-Hua Yen Ko Tsa Chih [Chinese Journal of Ophthalmology]=Chung Hua Yen Ko Tsa Chih;; Chung-Hua Yu Fang I Hsueh Tsa Chih [Chinese Journal Of Preventive Medicine]=Chung Hua Yu Fang I Hsueh Tsa Chih;; Chung-Kuo Chi Sheng Chung Hsueh Yu Chi Sheng Chung Ping Tsa Chih ChineseJournal of Parasitology and Parasitic Diseases Chung Kuo Chi Sheng Chung Chung-Kuo Chung Hsi I Chieh Ho Tsa Chih (Pei-Ching=Chung Kuo Chung Hsi I Chieh Ho Tsa Chih;; Chung-Kuo Chung Yao Tsa Chih China Journal of Chinese Materia Medica (Pei-Ching=Chung Kuo Chung Yao Tsa Chih;; Chung-Kuo Hsiu Fu Chung Chien Wai Ko Tsa Chih Chinesse Journal OfReparative and Reconstructive Surgery (Cheng-Tu Shih) Chung Kuo Hsiu Fu Chung-Kuo I Hsueh Ko Hsueh Yuan Hsueh Pao Acta Academiae Medicinae Sinicae=Chung Kuo I Hsueh Ko Hsueh Yuan Hsueh Pao;; Chung-Kuo I Liao Chi Hsieh Tsa Chih Chinese Journal of Medical Instrumentation (Shang-Hai Shih=Chung Kuo I Liao Chi Hsieh Tsa Chih;; Chung-Kuo Yao Li Hsueh Pao [Acta Pharmacologica Sinica]=Chung Kuo Yao Li Hsueh Pao;; Chung-Kuo Ying Yung Sheng Li Hsueh Tsa Chih Chinese Journal of Applied Physiology=Chung Kuo Ying Yung Sheng Li Hsueh Tsa Chih;; Chung Yao Tsai Journal of Chinese Medicinal Materials (Kuang-Chou Shih=Chung Yao Tsai;; Church and Galileo = St Sci Hum Church and Galileo = St. Sci. Hum. Church and society = Church Soc Church and Theology in Context = Ktc Church and Theology in Context = Ktc. Church As Politeia = Arb Kirch Church As Politeia = Arb. Kirch. Church As Politeia = Arb Kirchengesch Church As Politeia = Arb. Kirchengesch. Church, Change and Revolution = Publ Thom B Church, Change and Revolution = Publ. Thom. B. Church, Chapel and Party: Religious Dissent and Political Modernization in Nineteenth-century England = Stud Mod Hist Church, Chapel and Party: Religious Dissent and Political Modernization in Nineteenth-century England = Stud. Mod. Hist. Church History = ChHist Church history = Church Hist Church History = Church Hist Church History = Church Hist. Churchill, Roosevelt and India = Routl Stud Mod Hist Churchill, Roosevelt and India = Routl. Stud. Mod. Hist. Churchill's Man of Mystery: Desmond Morton and The World of Intelligence = Whitehall Hist Churchill's Man of Mystery: Desmond Morton and The World of Intelligence = Whitehall. Hist. Church & State = Church State Ch. W. Clairmont, Classical Attic Tombstones (Kilchberg 1993--1995) = CAT Ciba Foundation Colloquia On Endocrinology = Ciba F Coll Endocrin Ciba Foundation Colloquia On Endocrinology = Ciba F. Coll. Endocrin. Ciba Foundation study group = Ciba Found Study Group Ciba Foundation Study Group = Ciba Found. Study Group Ciba Foundation Symposia = Ciba F Symp Ciba Foundation Symposia = Ciba F. Symp. Ciba Foundation symposium = Ciba Found Symp Ciba Foundation Symposium=Ciba Found Symp;; Ciba Foundation Symposium = Ciba Found. Symp. Ciba symposia = CIBA Symp Ciba symposium. [English ed.] = Ciba Symp Ciba-Zeitschrift = Ciba Z (Basel) Cicatrising Conjunctivitis = Dev Ophthalmol Cicatrising Conjunctivitis = Dev. Ophthalmol. Cicc: Proceedings of The Ieee 2005 Custom Integrated Circuits Conference = Ieee Cust Integr Cir Cicc: Proceedings of The Ieee 2005 Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Cicero, Philippics 3-9, Vols 1 and 2 = Texte Komment Cicero, Philippics 3-9, Vols 1 and 2 = Texte. Komment. C.I.C.I.A.M.S. nouvelles = CICIAMS Nouv CICIAMS Nouvelles = CICIAMS Nouv. Ciel et terre = Ciel Terre Ciel et Terre = Ciel Terre Ciencia Biologia Molecular and Cellular Biology = Cienc. Biol. Mol. Cell. Biol. Ciencia E Agrotecnologia = Cienc Agrotec Ciencia E Agrotecnologia = Cienc. Agrotec. Ciencia e Agrotecnologia = Cienc. Agrotecnol. Ciencia e cultura = Cienc Cult Ciencia E Investigacion Agraria = Cienc Investig Agrar Ciencia E Investigacion Agraria = Cienc. Investig. Agrar. Ciencia e investigacion = Cienc Invest Ciencia E Investigacion = Cienc Invest Ciencia E Investigacion = Cienc. Invest. Ciencia E Tecnica Vitivinicola = Cienc Tec Vitivinic Ciencia E Tecnica Vitivinicola = Cienc. Tec. Vitivinic. Ciencia E Tecnologia De Alimentos = Ciencia Tecnol Alime Ciencia E Tecnologia De Alimentos = Ciencia Tecnol. Alime. Ciencia Florestal = Cienc Florest Ciencia Florestal = Cienc. Florest. Ciencia Mexico = Cienc Mex Ciencia Mexico = Cienc. Mex. Ciencia Rural = Cienc Rural Ciencia Rural = Cienc. Rural Ciencia & Saude Coletiva = Cienc Saude Coletiva Ciencia & Saude Coletiva = Cienc. Saude Coletiva Ciencia & saude coletiva = Cien Saude Colet Ciencias = Ciencias Ciencias Marinas = Cienc Mar Ciencias Marinas = Cienc. Mar. Ciencia y desarrollo = Cienc Desarro Ciencia Y Sociedad = Cienc Soc Ciencia y Técnica = Cienc. Téc. Ciencia Y Tecnologia Alimentaria = Cienc Tec Alimentar Ciencia Y Tecnologia Alimentaria = Cienc. Tec. Alimentar. Ciencia y Tecnologia Alimentaria = Cienc. Tecnol. Aliment. Ciencia Y Tecnologia Alimentaria = Cienc Tecnol Aliment Ciencia Y Tecnologia Alimentaria = Cienc. Tecnol. Aliment. Ciencia y Tecnología = Cienc. Tecn. Cifa Technical Paper = Cifa Tech Cifa Technical Paper = Cifa Tech. Cigarette Smoking and The Kidney = Contrib Nephrol Cigarette Smoking and The Kidney = Contrib. Nephrol. Ciheam Publication = Ciheam Publ Ciheam Publication = Ciheam Publ. Cilia: Model Organisms and Intraflagellar Transport = Method Cell Biol Cilia: Model Organisms and Intraflagellar Transport = Method. Cell. Biol. Ciliary Function in Mammalian Development = Curr Top Dev Biol Ciliary Function in Mammalian Development = Curr. Top. Dev. Biol. Cilia: Structure and Motility = Method Cell Biol Cilia: Structure and Motility = Method. Cell. Biol. Cimaise = Cimaise Cim Bulletin = Cim Bull Cim Bulletin = Cim Bull. CIM Bulletin = CIM Bull. Cimel Book Series = Cimel Bk Ser Cimel Book Series = Cimel Bk. Ser. Cimmacs '07: Proceedings of The 6th Wseas International Conference On Computational Intelligence, Man-machine Systems and Cybernetics = Ele Com Eng Cimmacs '07: Proceedings of The 6th Wseas International Conference On Computational Intelligence, Man-machine Systems and Cybernetics = Ele. Com. Eng. Cinc: 2009 36th Annual Computers in Cardiology Conference = Comput Cardiol Cinc: 2009 36th Annual Computers in Cardiology Conference = Comput. Cardiol. Cincinnati Dental Society bulletin (1979) = Cincinnati Dent Soc Bull Cincinnati Dental Society Bulletin = Cincinnati Dent. Soc. Bull. Cincinnati journal of medicine = Cinci J Med Cin-computers Informatics Nursing = Cin-comput Inform Nu Cin-computers Informatics Nursing = Cin-comput. Inform. Nu. Cineaste = Cineaste Cineforum = Cineforum Cinema E Traduzione = Cinema E Traduzione Cinema Journal = Cinema J Cinema Journal = Cinema J. Cinemas D Amerique Latine = Cinemas Am Lat Cinemas D Amerique Latine = Cinemas Am. Lat. Cinematic Tourist: Explorations in Globalization, Culture and Resistance = Int Libr Sociol Cinematic Tourist: Explorations in Globalization, Culture and Resistance = Int. Libr. Sociol. C(infinity) Differentiable Spaces = Lect Notes Math C(infinity) Differentiable Spaces = Lect. Notes. Math. CIN plus = CIN Plus Cipa Publication = Cipa Publ Cipa Publication = Cipa Publ. Cirad Colloques = Cirad Colloques Cira Part Iii Reference Atmospheres - Trace Constituent Models - Comparison With Latest Data = Adv Space Res Cira Part Iii Reference Atmospheres - Trace Constituent Models - Comparison With Latest Data = Adv. Space. Res. Cira Part Iii Reference Atmospheres - Trace Constituent Models - Comparison With Latest Data = Adv Space Res-series Cira Part Iii Reference Atmospheres - Trace Constituent Models - Comparison With Latest Data = Adv. Space. Res-series. Circadian Clock = Protein Rev Circadian Clock = Protein. Rev. Circadian Clocks and Their Adjustment = Ciba F Symp Circadian Clocks and Their Adjustment = Ciba. F. Symp. Circadian Rhythms = Method Enzymol Circadian Rhythms = Method. Enzymol. Circle-valued Morse Theory = Degruyter Stud Math Circle-valued Morse Theory = Degruyter. Stud. Math. Circuit and Interconnect Design for Rf and High Bit-rate Applications = Analog Circ Sig Proc Circuit and Interconnect Design for Rf and High Bit-rate Applications = Analog. Circ. Sig. Proc. Circuits and Systems for Future Generations of Wireless Communications = Integr Circuit Syst Circuits and Systems for Future Generations of Wireless Communications = Integr. Circuit. Syst. Circuit Simulation With Spice Opus: Theory and Practice = Model Simul Sci Eng Circuit Simulation With Spice Opus: Theory and Practice = Model. Simul. Sci. Eng. Circuits Systems and Signal Processing = Circ Syst Signal Pr Circuits Systems and Signal Processing = Circ. Syst. Signal Pr. Circuits, Systems, and Signal Processing = Circuits Systems Signal Process. Circuit World = Circuit World Circular farmaceutica = Circ Farm Circular-grating Light-emitting Sources = P Soc Photo-opt Ins Circular-grating Light-emitting Sources = P. Soc. Photo-opt. Ins. Circulating Nucleic Acids in Plasma and Serum Iv = Ann Ny Acad Sci Circulating Nucleic Acids in Plasma and Serum Iv = Ann. Ny. Acad. Sci. Circulating Nucleic Acids in Plasma and Serum V = Ann Ny Acad Sci Circulating Nucleic Acids in Plasma and Serum V = Ann. Ny. Acad. Sci. Circulating Nucleic Acids in Plasma Or Serum = Ann Ny Acad Sci Circulating Nucleic Acids in Plasma Or Serum = Ann. Ny. Acad. Sci. Circulating Nucleic Acids in Plasma Or Serum Ii = Ann Ny Acad Sci Circulating Nucleic Acids in Plasma Or Serum Ii = Ann. Ny. Acad. Sci. Circulating Nucleic Acids in Plasma/serum Iii and Serum Proteomics = Ann Ny Acad Sci Circulating Nucleic Acids in Plasma/serum Iii and Serum Proteomics = Ann. Ny. Acad. Sci. Circulation-arrhythmia and Electrophysiology = Circ-arrhythmia Elec Circulation-arrhythmia and Electrophysiology = Circ-arrhythmia. Elec. Circulation-cardiovascular Genetics = Circ-cardiovasc Gene Circulation-cardiovascular Genetics = Circ-cardiovasc. Gene. Circulation-cardiovascular Imaging = Circ-cardiovasc Imag Circulation-cardiovascular Imaging = Circ-cardiovasc. Imag. Circulation-cardiovascular Interventions = Circ-cardiovasc Inte Circulation-cardiovascular Interventions = Circ-cardiovasc. Inte. Circulation-cardiovascular Quality and Outcomes = Circ-cardiovasc Qual Circulation-cardiovascular Quality and Outcomes = Circ-cardiovasc. Qual. Circulation=Circulation;; Circulation = Circulation Circulation Et Metabolisme Du Cerveau = Circ Metab Cerveau Circulation Et Metabolisme Du Cerveau = Circ. Metab. Cerveau Circulation-heart Failure = Circ-heart Fail Circulation-heart Failure = Circ-heart. Fail. Circulation Journal = Circ J Circulation Journal = Circ. J. Circulation journal : official journal of the Japanese Circulation Society = Circ J Circulation research = Circ Res Circulation Research=Circ Res;; Circulation Research = Circ Res Circulation Research = Circ. Res. Circulatory shock = Circ Shock Circulatory Shock = Circ Shock Circulatory Shock = Circ. Shock Circulatory shock. Supplement = Circ Shock Suppl Circulatory Shock. Supplement = Circ. Shock. Suppl. Circulo De Linguistica Aplicada A La Comunicacion = Circ Linguist Apl Co Circulo De Linguistica Aplicada A La Comunicacion = Circ. Linguist. Apl. Co. Circulo Odontologico de San Martin y Tres de Febrero = Circ. Odontol. San Martin Tres Febr. Circulo Odontologico De San Martin Y Tres De Febrero = Circ Odontol San Martin Tres Febr Circum-pacific Council for Energy and Mineral Resources Earth Science Series = Circ-pac C Circum-pacific Council for Energy and Mineral Resources Earth Science Series = Circ-pac. C. Circumstellar Dust Disks and Planet Formation = Iap Astr M Circumstellar Dust Disks and Planet Formation = Iap. Astr. M. Circumstellar Media and Late Stages of Massive Stellar Evolution = Rev Mex Ast Astr Circumstellar Media and Late Stages of Massive Stellar Evolution = Rev. Mex. Ast. Astr. Circumventricular Organs and Brain Fluid Environment : Molecular and Functional Aspects = Prog Brain Res Circumventricular Organs and Brain Fluid Environment : Molecular and Functional Aspects = Prog. Brain Res. CIRDAP development digest = CIRDAP Dev Dig CIRES, Cahiers ivoiriens de recherche economique et sociale. Centre ivoirien de recherches economiques et sociales = CIRES Cah Ivoir Rech Econ Soc CIRIEC-España, Revista de Economía Pública, Social y Cooperativa=CIRIEC-España, Revista Econ. Pública, Soc. Cooperativa CIRP Annals = CIRP Ann. Cirp Annals-manufacturing Technology = Cirp Ann-manuf Techn Cirp Annals-manufacturing Technology = Cirp Ann-manuf. Techn. CIRP Journal of Manufacturing Science and Technology = CIRP J. Manuf. Sci. Technol. Cirrhosis, Hepatic Encephalopathy, and Ammonium Toxicity = Adv Exp Med Biol Cirrhosis, Hepatic Encephalopathy, and Ammonium Toxicity = Adv. Exp. Med. Biol. Cirrhosis, Hyperammonemia, and Hepatic Encephalopathy = Adv Exp Med Biol Cirrhosis, Hyperammonemia, and Hepatic Encephalopathy = Adv. Exp. Med. Biol. Cirugia Bucal = Cir Bucal Cirugia Bucal = Cir. Bucal Cirugia espanola = Cir Esp Cirugia Espanola = Cir Espan Cirugia Espanola = Cir. Espan. Cirugia, ginecologia y urologia = Cir Ginecol Urol Cirugia, Ginecologia y Urologia = Cir. Ginecol. Urol. Cirugia Pediatrica=Cir Pediatr;; Cirugia Pediatrica = Cir. Pediatr. Cirugia pediatrica : organo oficial de la Sociedad Espanola de Cirugia Pediatrica = Cir Pediatr Cirugia y cirujanos = Cir Cir Cirugia y Cirujanos = Cir. Cir. Cirugia Y Cirujanos = Cir Cir Cirugia Y Cirujanos = Cir. Cir. Cisap4: 4th International Conference On Safety & Environment in Process Industry = Chem Engineer Trans Cisap4: 4th International Conference On Safety & Environment in Process Industry = Chem. Engineer. Trans. Cism Courses and Lectures = Cism Cour L Cism Courses and Lectures = Cism Cour. L. CISM Courses and Lectures = CISM Courses and Lectures Cism Courses and Lectures = Cism Courses Lect Cism Courses and Lectures = Cism Courses Lect. Cisst'09: Proceedings of The 3rd Wseas International Conference On Circuits, Systems, Signal and Telecommunications = Ele Com Eng Cisst'09: Proceedings of The 3rd Wseas International Conference On Circuits, Systems, Signal and Telecommunications = Ele. Com. Eng. Cisst'10: Proceedings of The 4th Wseas International Conference On Circuits, Systems, Signal and Telecommunications = Ele Com Eng Cisst'10: Proceedings of The 4th Wseas International Conference On Circuits, Systems, Signal and Telecommunications = Ele. Com. Eng. Cis, The Eu and Russia: Challenges of Integration = Stud Cent E Eur Cis, The Eu and Russia: Challenges of Integration = Stud. Cent. E. Eur. Citation Analysis in Research Evaluation = Inform Sci Knowl Man Citation Analysis in Research Evaluation = Inform. Sci. Knowl. Man. Cithara-essays in The Judeo-christian Tradition = Cithara Cithara-essays in The Judeo-christian Tradition = Cithara. Cities and Cinema = Routl Crit Intro Urb Cities and Cinema = Routl. Crit. Intro. Urb. Cities and Cultures = Routl Crit Intro Urb Cities and Cultures = Routl. Crit. Intro. Urb. Cities and Development = Routl Perspect Dev Cities and Development = Routl. Perspect. Dev. Cities and Economies = Routl Crit Intro Urb Cities and Economies = Routl. Crit. Intro. Urb. Cities and Gender = Routl Crit Intro Urb Cities and Gender = Routl. Crit. Intro. Urb. Cities and Low Carbon Transitions = Routl Stud Hum Geogr Cities and Low Carbon Transitions = Routl. Stud. Hum. Geogr. Cities and Low Carbon Transitions = Rout Stud Human Geog Cities and Low Carbon Transitions = Rout. Stud. Human. Geog. Cities and Nature = Routl Crit Intro Urb Cities and Nature = Routl. Crit. Intro. Urb. Cities and Race: America's New Black Ghetto = Question Cities Cities and Race: America's New Black Ghetto = Question. Cities Cities, Autonomy, and Decentralization in Japan = Rout Contemp Jap Cities, Autonomy, and Decentralization in Japan = Rout. Contemp. Jap. Cities Between Competitiveness and Cohesion: Discourses, Realities and Implementation = Geojournal Lib Cities Between Competitiveness and Cohesion: Discourses, Realities and Implementation = Geojournal. Lib. Cities = Cities Cities in Globalization: Practices, Policies and Theories = Question Cities Cities in Globalization: Practices, Policies and Theories = Question. Cities Cities in The Pre-modern Islamic World = Soas-rout Stud Mid E Cities in The Pre-modern Islamic World = Soas-rout. Stud. Mid. E. Cities in The World, 1500-2000 = Soc Post Med Arch M Cities in The World, 1500-2000 = Soc. Post. Med. Arch. M. Cities in The World-system = Contrib Econ Econ Hi Cities in The World-system = Contrib. Econ. Econ. Hi. Cities in Transition: Globalization, Political Change and Urban Development = Geojournal Lib Cities in Transition: Globalization, Political Change and Urban Development = Geojournal. Lib. Cities in Transition: New Challenges, New Responsibilities = Anglo German Fdn Ser Cities in Transition: New Challenges, New Responsibilities = Anglo. German. Fdn. Ser. Cities (London, England) = Cities Cities, Nationalism and Democratization = Question Cities Cities, Nationalism and Democratization = Question. Cities. Cities of Europe = Multicult Europe Cities of Europe = Multicult. Europe Cities of The Future Series = Cities Future Series Cities, Words and Images: From Poe to Scorsese = Lang Discourse Soc Cities, Words and Images: From Poe to Scorsese = Lang. Discourse. Soc. Citizen Rights and Access to Electronic Information = Lita Pres S Citizen Rights and Access to Electronic Information = Lita. Pres. S. Citizens and The New Governance: Beyond New Public Management = Int I Adm Sci Monogr Citizens and The New Governance: Beyond New Public Management = Int. I. Adm. Sci. Monogr. Citizens and The New Governance: Beyond New Public Management = Int Inst Adm Sci Mg Citizens and The New Governance: Beyond New Public Management = Int. Inst. Adm. Sci. Mg. Citizen Shakespeare: Freemen and Aliens in The Language of The Plays = Early Mod Cult Stud Citizen Shakespeare: Freemen and Aliens in The Language of The Plays = Early. Mod. Cult. Stud. Citizenship Acquisition and National Belonging - Migration, Membership and The Liberal Democratic State = Migrat Minor Citizen Citizenship Acquisition and National Belonging - Migration, Membership and The Liberal Democratic State = Migrat. Minor. Citizen. Citizenship and Belonging: Immigration and The Politics of Demographic Governance in Postwar Britain = Migrat Minor Citizen Citizenship and Belonging: Immigration and The Politics of Demographic Governance in Postwar Britain = Migrat. Minor. Citizen. Citizenship and Collective Identity in Europe = Routl Adv Eur Polit Citizenship and Collective Identity in Europe = Routl. Adv. Eur. Polit. Citizenship and Involvement in European Democracies: A Comparative Analysis = Routl Res Comp Polit Citizenship and Involvement in European Democracies: A Comparative Analysis = Routl. Res. Comp. Polit. Citizenship and State Succession, Proceedings = Co Sci Tech Democ Citizenship and State Succession, Proceedings = Co. Sci. Tech. Democ. Citizenship Curriculum in Asia and The Pacific = Cerc Stud Comp Educ Citizenship Curriculum in Asia and The Pacific = Cerc. Stud. Comp. Educ. Citizenship in Nordic Welfare States = Routl Adv Eur Polit Citizenship in Nordic Welfare States = Routl. Adv. Eur. Polit. Citizenship Pedagogies in Asia and The Pacific = Cerc Stud Comp Educ Citizenship Pedagogies in Asia and The Pacific = Cerc. Stud. Comp. Educ. Citizenship Studies = Citizenship Stud Citizenship Studies = Citizenship Stud. Citizens of A Christian Nation: Evangelical Missions and The Problem of Race in The Nineteenth Century = Polit Cult Mod Am Citizens of A Christian Nation: Evangelical Missions and The Problem of Race in The Nineteenth Century = Polit. Cult. Mod. Am. Citizens, Soldiers and National Armies: Military Service in France and Germany, 1789-1830 = War Hist Polit Citizens, Soldiers and National Armies: Military Service in France and Germany, 1789-1830 = War. Hist. Polit. Citrus and Other Subtropical and Tropical Fruit Crops: Issues, Advances and Opportunities = Acta Hortic Citrus and Other Subtropical and Tropical Fruit Crops: Issues, Advances and Opportunities = Acta. Hortic. Citrus Industry = Citrus Ind Citrus Industry = Citrus Ind. Citrus & Vegetable Magazine = Citrus Veg Mag Citrus & Vegetable Magazine = Citrus Veg. Mag. City and Spectacle in Medieval Europe = Mediev St M City and Spectacle in Medieval Europe = Mediev. St. M. City & Community = City Community City in South Asia = Asias Transform City in South Asia = Asias. Transform. City in The Twenty-first Century = City 21st Century City in The Twenty-first Century = City 21st. Century City journal (New York, N.Y.) = City J City = Key Ideas Geogr City = Key. Ideas. Geogr. City Reader, 5th Edition = Rout Urb Read Ser City Reader, 5th Edition = Rout. Urb. Read. Ser. City Rehearsed: Object, Architecture, and Print in The Worlds of Hans Vredeman De Vries = Class Tradit Archit City Rehearsed: Object, Architecture, and Print in The Worlds of Hans Vredeman De Vries = Class. Tradit. Archit. Cityscape: A Journal of Policy Development and Research=Cityscape: J. Pol. Devel. Res. Cityscape (Washington, D.C.) = Cityscape City Taxes, City Spending = Stud Fisc Fed Sl Fin City Taxes, City Spending = Stud. Fisc. Fed. Sl. Fin. Civic Engagement in A Network Society = Res Int Civ Engagem Civic Engagement in A Network Society = Res. Int. Civ. Engagem. Civic Engagement in Contemporary Japan: Established and Emerging Repertoires = Nonprofit Civ Soc St Civic Engagement in Contemporary Japan: Established and Emerging Repertoires = Nonprofit. Civ. Soc. St. Civic Insecurity: Law, Order and Hiv in Papua New Guinea = Stud St Soc Pac Civic Insecurity: Law, Order and Hiv in Papua New Guinea = Stud. St. Soc. Pac. Civic Learning Through Agricultural Improvement: Bringing The Loom and The Anvil Into Proximity With The Plow = Stud Hist Educ Civic Learning Through Agricultural Improvement: Bringing The Loom and The Anvil Into Proximity With The Plow = Stud. Hist. Educ. Civil Aerospace Technologies - Fitec 98 = Imeche Conf Trans Civil Aerospace Technologies - Fitec 98 = Imeche. Conf. Trans. Civil code annotated of the State of California / annotated and indexed by the publisher's editorial staff. California = Civ Code Annot State Calif Calif Civil Comp Proceedings = Civil Comp Proceed Civil Comp Proceedings = Civil Comp Proceed. Civil Disobedience and The German Courts = U Tex Aust Stud Fore Civil Disobedience and The German Courts = U. Tex. Aust. Stud. Fore. Civil Engineering and Environmental Systems = Civ Eng Environ Syst Civil Engineering and Environmental Systems = Civ. Eng. Environ. Syst. Civil Engineering = Civil Eng Civil Engineering = Civil Eng. Civil Engineering for Practicing and Design Engineers = Civil Eng Pract Des Civil Engineering for Practicing and Design Engineers = Civil Eng. Pract. Des. Civil Engineering-london = Civil Eng-london Civil Engineering-london = Civil Eng-london. Civil Engineering Systems = Civil Eng Syst Civil Engineering Systems = Civil Eng. Syst. Civil Engineering Technician = Civil Eng Tech Civil Engineering Technician = Civil Eng. Tech. Civil Happiness: Economics and Human Flourishing in Historical Perspective = Routl Stud Hist Econ Civil Happiness: Economics and Human Flourishing in Historical Perspective = Routl. Stud. Hist. Econ. Civilisations = Civilisations Civilizational Identity: The Production and Reproduction of Civilizations in International Relations = Cult Relig Int Relat Civilizational Identity: The Production and Reproduction of Civilizations in International Relations = Cult. Relig. Int. Relat. Civil Liability for Pure Economic Loss = Uk Comp Law Civil Liability for Pure Economic Loss = Uk. Comp. Law. Civil liberties = Civil Lib Civil-military Dynamics, Democracy, and International Conflict: A New Quest for International Peace = Adv Foreign Policy A Civil-military Dynamics, Democracy, and International Conflict: A New Quest for International Peace = Adv. Foreign. Policy. A Civil Rights Digest = Civil Rights Dig Civil Rights Digest = Civil Rights Dig. Civil Service Systems in Anglo-american Countries = Civ Serv Syst Comp P Civil Service Systems in Anglo-american Countries = Civ. Serv. Syst. Comp. P. Civil Service Systems in Comparative Perspective = Civ Serv Syst Comp P Civil Service Systems in Comparative Perspective = Civ. Serv. Syst. Comp. P. Civil Sociality: Children, Sport, and Cultural Policy in Denmark = Educ Policy Pract Cr Civil Sociality: Children, Sport, and Cultural Policy in Denmark = Educ. Policy Pract. Cr. Civil Society and International Governance: The Role of Non-state Actors in Global and Regional Regulatory Frameworks = Routl Garn Ser Eur W Civil Society and International Governance: The Role of Non-state Actors in Global and Regional Regulatory Frameworks = Routl. Garn. Ser. Eur. W. Civil Society and Political Change in Morocco = Hist Soc Islam World Civil Society and Political Change in Morocco = Hist. Soc. Islam. World. Civil Society and The Internet in Japan = Routl Contemp Jpn Se Civil Society and The Internet in Japan = Routl. Contemp. Jpn. Se. Civil Society in Algeria = Routl Stud Mid E Pol Civil Society in Algeria = Routl. Stud. Mid. E. Pol. Civil Society in Comparative Perspective = Comp Soc Res Civil Society in Comparative Perspective = Comp. Soc. Res. Civil Society in Uncivil Places: Soft State and Regime Change in Nepal = Pol Stud Civil Society in Uncivil Places: Soft State and Regime Change in Nepal = Pol. Stud. Civil Society Participation in European and Global Governance: A Cure for The Democratic Deficit = Transform State Civil Society Participation in European and Global Governance: A Cure for The Democratic Deficit = Transform. State. Civil Society, Religion and Global Governance = Rout Adv Int Rel Glo Civil Society, Religion and Global Governance = Rout. Adv. Int. Rel. Glo. Civil Society, Religion and Global Governance = Routl Adv Int Relat Civil Society, Religion and Global Governance = Routl. Adv. Int. Relat. Civil Space in The Clinton Era, 32nd Goddard Memorial Symposium/partners in Space ... 2001, 41st Annual Meeting = Sci Tech Civil Space in The Clinton Era, 32nd Goddard Memorial Symposium/partners in Space ... 2001, 41st Annual Meeting = Sci. Tech. Civil Szemle = Civ Szle Civil Szemle = Civ. Szle. Civiltà classica e cristiana = CCC Civiltà classica e cristiana = CivClCr Civiltà padana. Archeologia e storia del territorio = CivPad Civil War History = Civil War Hist Civil War History = Civil War Hist. Civil War history = Civ War Hist Civil War in Poland, 1942-1948 = Stud Russ E Eur Civil War in Poland, 1942-1948 = Stud. Russ. E. Eur. Civil War times illustrated = Civ War Times Illus Ckm Matrix and The Unitarity Triangle = Cern Report Ckm Matrix and The Unitarity Triangle = Cern. Report. Cladistics = Cladistics Cladistics : the international journal of the Willi Hennig Society = Cladistics Cladistics-the International Journal of The Willi Hennig Society = Cladistics Cladistics-the International Journal of The Willi Hennig Society = Cladistics. Cla Journal-college Language Association = Cla J Cla Journal-college Language Association = Cla J. CLAO Journal=CLAO J;; CLAO Journal = CLAO J. Clara Rhodos = ClRh Claremont Book Series On Applied Social Psychology = Clarem Bk Ser App So Claremont Book Series On Applied Social Psychology = Clarem. Bk. Ser. App. So. Claremont Reading Conference, Fifty-fourth Yearbook = Claremont R Claremont Reading Conference, Fifty-fourth Yearbook = Claremont R. Claremont Reading Conference, Fifty-third Yearbook = Claremont R Claremont Reading Conference, Fifty-third Yearbook = Claremont R. Claremont Reading Conference Yearbook = Claremont R Claremont Reading Conference Yearbook = Claremont R. Claremont Studies in The Philosophy of Religion = Claremon Stud Philos Claremont Studies in The Philosophy of Religion = Claremon. Stud. Philos. Claremont Symposium On Applied Social Psychology = Clar Symp Claremont Symposium On Applied Social Psychology = Clar. Symp. Clarendon Aristotle Series = Clarendon Aristotle Ser. Clarendon Library of Logic and Philosophy = Clarendon Lib. Logic Philos. Clarity of Feelings: What Does It Mean to Understand Emotions? = Ideen Argumente Clarity of Feelings: What Does It Mean to Understand Emotions? = Ideen. Argumente. Clark Studies in The Visual Arts = Clark Stud Vis Arts Clark Studies in The Visual Arts = Clark Stud. Vis. Arts Clash of Ideas in World Politics:transnational Networks, States, and Regime Change, 1510-2010 = Princ Stud Int Hist Clash of Ideas in World Politics:transnational Networks, States, and Regime Change, 1510-2010 = Princ. Stud. Int. Hist. Clash of Ireland : Literary Contrasts and Connections = Dqr Stu Lit Clash of Ireland : Literary Contrasts and Connections = Dqr. Stu. Lit. Class, Culture and Suburban Anxieties in The Victorian Era = Routl Stud Ninet Cen Class, Culture and Suburban Anxieties in The Victorian Era = Routl. Stud. Ninet. Cen. Classes of Modules = Monogr Txb Pure Appl Classes of Modules = Monogr. Txb. Pure. Appl. Class Field Theory = Universitext Class Field Theory = Universitext. Classica: Boletim de pedagogia e cultura = Classica(Lisboa) Classica et mediaevalia. Revue danoise de philologie et d'histoire = ClMediaev Classica et mediaevalia: revue danoise d'histoire et de philologie publiée par la Société danoise pour les études anciennes et médiévales = C&M Classical and Advanced Theories of Thin Structures: Mechanical and Mathematical Aspects = Cism Cour L Classical and Advanced Theories of Thin Structures: Mechanical and Mathematical Aspects = Cism. Cour. L. Classical and Generalized Models of Elastic Rods = Crc Ser Mod Mech Mat Classical and Generalized Models of Elastic Rods = Crc. Ser. Mod. Mech. Mat. Classical and Modern Literature-a Quarterly = Class Mod Lit Classical and Modern Literature-a Quarterly = Class. Mod. Lit. Classical and Modern Literature = CML Classical and Modern Potential Theory and Applications = Nato Adv Sci Inst Se Classical and Modern Potential Theory and Applications = Nato. Adv. Sci. Inst. Se. Classical and Modern Thought On International Relations: From Anarchy to Cosmopolis = Palgr Mac Ser Hist Classical and Modern Thought On International Relations: From Anarchy to Cosmopolis = Palgr. Mac. Ser. Hist. Classical and New Paradigms of Computation and Their Complexity Hierarchies = Trends Log Stud Log Classical and New Paradigms of Computation and Their Complexity Hierarchies = Trends. Log. Stud. Log. Classical and New Paradigms of Computation and Their Complexity Hierarchies = Tr Log Stud Log Lib Classical and New Paradigms of Computation and Their Complexity Hierarchies = Tr. Log. Stud. Log. Lib. Classical and Quantum Gravity = Classical Quant Grav Classical and Quantum Gravity = Classical Quant. Grav. Classical and Quantum Gravity = Classical Quantum Gravity Classical and Quantum Gravity = Classical Quantum Gravity Classical and Three-dimensional Qsar in Agrochemistry = Acs Sym Ser Classical and Three-dimensional Qsar in Agrochemistry = Acs. Sym. Ser. Classical Antiquity = ClAnt Classical Antiquity = ClAnt Classical antiquity = Class Antiq Classical Antiquity = Classical Antiquity Classical Bulletin = Classical Bull Classical Bulletin = Classical Bull. Classical Econophysics = Routl Adv Exp Comput Classical Econophysics = Routl. Adv. Exp. Comput. Classical Finite Transformation Semigroups: An Introduction = Algebra Appl Classical Finite Transformation Semigroups: An Introduction = Algebra. Appl. Classical Foundations = Class Found Classical Foundations = Class. Found. Classical Fourier Analysis, Second Edition = Grad Texts Math Classical Fourier Analysis, Second Edition = Grad. Texts. Math. Classical Journal = Classical J Classical Journal = Classical J. Classical Liberalism and International Relations Theory = Palgr Mac Ser Hist Classical Liberalism and International Relations Theory = Palgr. Mac. Ser. Hist. Classical Mechanics: Theory and Mathematical Modeling = Cornerstones Classical Mechanics: Theory and Mathematical Modeling = Cornerstones. Classical Microlocal Analysis in The Space of Hyperfunctions = Lect Notes Math Classical Microlocal Analysis in The Space of Hyperfunctions = Lect. Notes. Math. Classical Nova Explosions = Aip Conf Proc Classical Nova Explosions = Aip. Conf. Proc. Classical Philology = Classical Philol Classical Philology = Classical Philol. Classical philology = Class Philol Classical Philology = ClPhil Classical Philology = CPh Classical Quarterly = Classical Quart Classical Quarterly = Classical Quart. Classical quarterly = Class Q Classical Quarterly = CQ Classical Receptions Journal = Class Recept J Classical Receptions Journal = Class. Recept. J. Classical Review = Classical Rev Classical Review = Classical Rev. Classical Review = CR Classical Samkhya and Yoga: An Indian Metaphysics of Experience = Routl Hindu Stud Ser Classical Samkhya and Yoga: An Indian Metaphysics of Experience = Routl. Hindu. Stud. Ser. Classical Studies = ClassStud Classical Texts in Critical Realism = Class Texts Crit Rea Classical Texts in Critical Realism = Class. Texts Crit. Rea. Classical Topics in Discrete Geometry = Cms Books Math Classical Topics in Discrete Geometry = Cms. Books. Math. Classical Tradition in Architecture = Class Tradit Archit Classical Tradition in Architecture = Class. Tradit. Archit. Classical World = Classical World Classical world = Class World Classica: revista brasileira de estudos clássicos = Classica(Brasil) Classic Issues in Islamic Philosophy and Theology Today = Islam Ph Occident Classic Issues in Islamic Philosophy and Theology Today = Islam. Ph. Occident. Classic Mechanics: Vom Weitsprung Zum Marsflug = Degruyter Lehrb Classic Mechanics: Vom Weitsprung Zum Marsflug = Degruyter. Lehrb. Classic Petroleum Provinces = Geol Soc Spec Publ Classic Petroleum Provinces = Geol. Soc. Spec. Publ. Classic Problem Collections = Class. Probl. Collect. Classics in Applied Mathematics = Class Appl Math Classics in Applied Mathematics = Class. Appl. Math. Classics in Applied Mathematics = Classics Appl. Math. Classics in Mathematics = Classics Math. Classics in Mathematics = Class Math Classics in Mathematics = Class. Math. Classics in Science Education = Class Sci Educ Classics in Science Education = Class. Sci. Educ. Classics Ireland = ClIre Classics of Soviet Mathematics = Classics Soviet Math. Classic Works of The Dempster-shafer Theory of Belief Functions = Stud Fuzz Soft Comp Classic Works of The Dempster-shafer Theory of Belief Functions = Stud. Fuzz. Soft. Comp. Classification and Clustering for Knowledge Discovery = Stud Comp Intell Classification and Clustering for Knowledge Discovery = Stud. Comp. Intell. Classification and Clustering for Knowledge Discovery = Stud Comput Intell Classification and Clustering for Knowledge Discovery = Stud. Comput. Intell. Classification and Discovery in Large Astronomical Surveys = Aip Conf Proc Classification and Discovery in Large Astronomical Surveys = Aip. Conf. Proc. Classification and Information Processing At The Turn of The Millennium = St Class Dat Anal Classification and Information Processing At The Turn of The Millennium = St. Class. Dat. Anal. Classification and Information Processing At The Turn of The Millennium = Stud Class Data Anal Classification and Information Processing At The Turn of The Millennium = Stud. Class. Data. Anal. Classification and Multivariate Analysis for Complex Data Structures = Stud Class Data Anal Classification and Multivariate Analysis for Complex Data Structures = Stud. Class. Data Anal. Classification, Automation, and New Media = St Class Dat Anal Classification, Automation, and New Media = St. Class. Dat. Anal. Classification, Automation, and New Media = Stud Class Data Anal Classification, Automation, and New Media = Stud. Class. Data. Anal. Classification, Clustering, and Data Mining Applications = St Class Dat Anal Classification, Clustering, and Data Mining Applications = St. Class. Dat. Anal. Classification, Clustering, and Data Mining Applications = Stud Class Data Anal Classification, Clustering, and Data Mining Applications = Stud. Class. Data Anal. Classification in The Information Age = St Class Dat Anal Classification in The Information Age = St. Class. Dat. Anal. Classification in The Information Age = Stud Class Data Anal Classification in The Information Age = Stud. Class. Data. Anal. Classification of Algebraic Varieties = Ems Ser Congr Rep Classification of Algebraic Varieties = Ems. Ser. Congr. Rep. Classification of Higher Dimemsional Algebraic Varieties = Oberwolfach Semin Classification of Higher Dimemsional Algebraic Varieties = Oberwolfach. Semin. Classification of Irregular Varieties = Lect Notes Math Classification of Irregular Varieties = Lect. Notes. Math. Classification of Quadrilaterals: A Study of Definition = Res Math Educ Ser Classification of Quadrilaterals: A Study of Definition = Res. Math. Educ. Ser. Classification Research for Knowledge Representation and Organization = Fid Publ Classification Research for Knowledge Representation and Organization = Fid. Publ. Classification - The Ubiquitous Challenge = St Class Dat Anal Classification - The Ubiquitous Challenge = St. Class. Dat. Anal. Classification - The Ubiquitous Challenge = Stud Class Data Anal Classification - The Ubiquitous Challenge = Stud. Class. Data. Anal. Classifying Madness = Philos Med Classifying Madness = Philos. Med. Class Matters: Early North America and The Atlantic World = Early Am Stud Ser Class Matters: Early North America and The Atlantic World = Early Am. Stud. Ser. Class of Algorithms for Distributed Constraint Optimization = Front Artif Intel Ap Class of Algorithms for Distributed Constraint Optimization = Front. Artif. Intel. Ap. Classroom Management in Language Education = Res Pract Appl Lingu Classroom Management in Language Education = Res. Pract. Appl. Lingu. Classroom Resource Materials Series = Classr. Res. Mater. Ser. Clathrate Hydrates of Natural Gases, Third Edition = Chem Ind-ser Clathrate Hydrates of Natural Gases, Third Edition = Chem. Ind-ser. Claudel Studies = Claudel Stud Claudel Studies = Claudel Stud. Claudins = Curr Top Membr Claudins = Curr. Top. Membr. Claudins: Methods and Protocols = Methods Mol Biol Claudins: Methods and Protocols = Methods Mol. Biol. Clausewitz and America: Strategic Thought and Practice From Vietnam to Iraq = Strateg Hist Clausewitz and America: Strategic Thought and Practice From Vietnam to Iraq = Strateg. Hist. Clausewitzian Dictum and The Future of Western Military Strategy = Nijhoff Law Spec Clausewitzian Dictum and The Future of Western Military Strategy = Nijhoff. Law. Spec. Claustrophilia: The Erotics of Enclosure in Medieval Literature = New Middle Ages Claustrophilia: The Erotics of Enclosure in Medieval Literature = New. Middle. Ages. Clavier = Clavier Clay Materials Used in Construction = Eng Geol Spec Publ S Clay Materials Used in Construction = Eng. Geol. Spec. Publ. S. Clay minerals = Clay Miner Clay Minerals = Clay Miner Clay Minerals = Clay Miner. Clays and Clay Minerals = Clay Clay Miner Clays and Clay Minerals = Clay Clay Miner. Clays and clay minerals = Clays Clay Miner Clays and Clay Minerals = Clays Clay Miner. Clcweb-comparative Literature and Culture = Clcweb-comp Lit Cult Clcweb-comparative Literature and Culture = Clcweb-comp. Lit. Cult. Clean Air = Clean Air Clean Coal = Renew Energy Res Dev Clean Coal = Renew. Energy. Res. Dev. Clean Energy From Waste and Coal = Acs Sym Ser Clean Energy From Waste and Coal = Acs. Sym. Ser. Cleaning Technology in Semiconductor Device Manufacturing = Elec Soc S Cleaning Technology in Semiconductor Device Manufacturing = Elec. Soc. S. Cleaning Technology in Semiconductor Device Manufacturing V = Elec Soc S Cleaning Technology in Semiconductor Device Manufacturing V = Elec. Soc. S. Cleaning Technology in Semiconductor Device Manufacturing Viii = Elec Soc S Cleaning Technology in Semiconductor Device Manufacturing Viii = Elec. Soc. S. Cleaning Technology in Semiconductor Device Manufacturing Vii, Proceedings = Elec Soc S Cleaning Technology in Semiconductor Device Manufacturing Vii, Proceedings = Elec. Soc. S. Cleanroom Technology 1999 = Vdi Bericht Cleanroom Technology 1999 = Vdi. Bericht. Clean Room Technology 2001 = Vdi Bericht Clean Room Technology 2001 = Vdi. Bericht. Clean-soil Air Water = Clean-soil Air Water Clean: Soil, Air, Water = Clean: Soil, Air, Water Clean Solvents = Acs Sym Ser Clean Solvents = Acs. Sym. Ser. Clean Technologies and Environmental Policy = Clean Technol Envir Clean Technologies and Environmental Policy = Clean Technol. Envir. Clean Technologies and Environmental Policy = Clean Technol. Environ. Policy Clean Technology for The Manufacture of Speciality Chemicals = Roy Soc Ch Clean Technology for The Manufacture of Speciality Chemicals = Roy. Soc. Ch. Clean Utilization of Coal = Nato Adv Sci I C-mat Clean Utilization of Coal = Nato. Adv. Sci. I. C-mat. Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol Iii: Practices, Systems & Adoption = Asae Publ Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol Iii: Practices, Systems & Adoption = Asae. Publ. Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol Ii: Nutrients = Asae Publ Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol Ii: Nutrients = Asae. Publ. Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol I: Pesticides = Asae Publ Clean Water - Clean Environment - 21st Century, Team Agriculture - Working to Protect Water Resources, Conference Proceedings, Vol I: Pesticides = Asae. Publ. Clearance of Dying Cells in Healthy and Diseased Immune Systems = Ann Ny Acad Sci Clearance of Dying Cells in Healthy and Diseased Immune Systems = Ann. Ny. Acad. Sci. Clearing house (Menasha, Wis.) = Clearing House Clearinghouse review = Clgh Rev Cleft Palate-Craniofacial Journal=Cleft Palate Craniofac J;; Cleft Palate-Craniofacial Journal = Cleft Palate. Craniofac. J. Cleft Palate-craniofacial Journal = Cleft Palate-cran J Cleft Palate-craniofacial Journal = Cleft Palate-cran. J. Cleft Palate Journal = Cleft Palate J Cleft Palate Journal = Cleft Palate J. Cleveland Clinic Journal of Medicine = Clev Clin J Med Cleveland Clinic Journal of Medicine = Clev. Clin. J. Med. Cleveland Clinic journal of medicine = Cleve Clin J Med Cleveland Clinic Journal of Medicine=Cleve Clin J Med;; Cleveland Clinic Journal of Medicine = Cleve. Clin. J. Med. Cleveland Clinic Quarterly = Clev Clin J Med Cleveland Clinic Quarterly = Clev. Clin. J. Med. Cleveland Clinic quarterly = Cleve Clin Q Cleveland Clinic Quarterly = Cleve. Clin. Q. Cleveland Clinic Quarterly = Cleveland Clin Q Cleveland Clinic Quarterly = Cleveland Clin. Q. Cleveland state law review = Clevel State Law Rev Cleveland Studies in the History of Art = ClevStHistArt Client-consultant Collaboration: Coping With Complexity and Change = Res Manag Consult Client-consultant Collaboration: Coping With Complexity and Change = Res. Manag. Consult. Clifford Algebras and Their Application in Mathematical Physics = Fund Theor Clifford Algebras and Their Application in Mathematical Physics = Fund. Theor. Clifford Algebras and Their Applications in Mathematical Physics = Fund Theor Clifford Algebras and Their Applications in Mathematical Physics = Fund. Theor. Clifford Algebras and Their Applications in Mathematical Physics = Fund Theor Phys Clifford Algebras and Their Applications in Mathematical Physics = Fund. Theor. Phys. Clifford Algebras: Applications to Mathematics, Physics, and Engineering = Prog Math P Clifford Algebras: Applications to Mathematics, Physics, and Engineering = Prog. Math. P. Clifford Algebras: Applications to Mathematics, Physics, and Engineering = Prog Math Phys Clifford Algebras: Applications to Mathematics, Physics, and Engineering = Prog. Math. Phys. Clifford Analysis and Its Applications = Nato Sci Ser Ii-math Clifford Analysis and Its Applications = Nato. Sci. Ser. Ii-math. Clifford Analysis and Its Applications = Nato Sci Ser Ii Math Clifford Analysis and Its Applications = Nato. Sci. Ser. Ii. Math. Clifford Wavelets, Singular Integrals, and Hardy Spaces = Lect Notes Math Clifford Wavelets, Singular Integrals, and Hardy Spaces = Lect. Notes. Math. Climacteric = Climacteric Climacteric : the journal of the International Menopause Society = Climacteric Climate Alert = Clim Alert Climate Alert = Clim. Alert Climate and Development = Clim Dev Climate and Development = Clim. Dev. Climate and Environmental Database Systems = Kluwer Int Ser Eng C Climate and Environmental Database Systems = Kluwer. Int. Ser. Eng. C. Climate and Land Degradation = Environ Sci Eng Climate and Land Degradation = Environ. Sci. Eng. Climate and Trade Policy: Bottom-up Approaches Towards Global Agreement = Esri Stud Environ Climate and Trade Policy: Bottom-up Approaches Towards Global Agreement = Esri. Stud. Environ. Climate and Water: Transboundary Challenges in The Americas = Adv Glob Change Res Climate and Water: Transboundary Challenges in The Americas = Adv. Glob. Change. Res. Climate Change Adaptation in Developed Nations: From Theory to Practice = Adv Glob Change Res Climate Change Adaptation in Developed Nations: From Theory to Practice = Adv. Glob. Change Res. Climate Change Adaptation in New York City: Building A Risk Management Response = Ann Ny Acad Sci Climate Change Adaptation in New York City: Building A Risk Management Response = Ann. Ny. Acad. Sci. Climate Change and Agriculture: Analysis of Potential International Impacts = Asa Spec P Climate Change and Agriculture: Analysis of Potential International Impacts = Asa. Spec. P. Climate Change and Agriculture: An Economic Analysis of Global Impacts, Adapation and Distributional Effects = New Horiz Environ Ec Climate Change and Agriculture: An Economic Analysis of Global Impacts, Adapation and Distributional Effects = New. Horiz. Environ. Ec. Climate Change and Armed Conflict: Hot and Cold Wars = Routl Stud Peace Con Climate Change and Armed Conflict: Hot and Cold Wars = Routl. Stud. Peace. Con. Climate Change and Crop Production = Cabi Clim Change Ser Climate Change and Crop Production = Cabi. Clim. Change Ser. Climate Change and Crops = Environ Sci Eng Climate Change and Crops = Environ. Sci. Eng. Climate Change and Energy Pathways for The Mediterranean, Workshop Proceedings = All Glo Sus Climate Change and Energy Pathways for The Mediterranean, Workshop Proceedings = All. Glo. Sus. Climate Change and Food Security: Adapting Agriculture to A Warmer World = Adv Glob Change Res Climate Change and Food Security: Adapting Agriculture to A Warmer World = Adv. Glob. Change Res. Climate Change and Foreign Policy = Routl Adv Int Relat Climate Change and Foreign Policy = Routl. Adv. Int. Relat. Climate Change and Groundwater = Geol Soc Spec Publ Climate Change and Groundwater = Geol. Soc. Spec. Publ. Climate Change and Its Causes Effects and Prediction = Clim Chang Cause Eff Climate Change and Its Causes Effects and Prediction = Clim. Chang. Cause. Eff. Climate Change and Ontario's Parks = State Art Worksh Ser Climate Change and Ontario's Parks = State. Art. Worksh. Ser. Climate Change and The Economics of The Worlds Fisheries: Example of Small Pelagic Stocks = New Horiz Environ Ec Climate Change and The Economics of The Worlds Fisheries: Example of Small Pelagic Stocks = New. Horiz. Environ. Ec. Climate Change in The Mediterranean = Feem Ser Econ Envir Climate Change in The Mediterranean = Feem. Ser. Econ. Envir. Climate Change Liability = New Hor Env Energ Climate Change Liability = New. Hor. Env. Energ. Climate Change Management = Clim Chang Manag Climate Change Management = Clim. Chang. Manag. Climate Change Processes in The Stratosphere, Earth-atmosphere-ocean Systems, and Oceanographic Processes From Satellite Data = Adv Space Res Climate Change Processes in The Stratosphere, Earth-atmosphere-ocean Systems, and Oceanographic Processes From Satellite Data = Adv. Space. Res. Climate Change Processes in The Stratosphere, Earth-atmosphere-ocean Systems, and Oceanographic Processes From Satellite Data = Adv Space Res-series Climate Change Processes in The Stratosphere, Earth-atmosphere-ocean Systems, and Oceanographic Processes From Satellite Data = Adv. Space. Res-series. Climate Change Research: Evaluation and Policy Implications, A and B = Stud Environ Sci Climate Change Research: Evaluation and Policy Implications, A and B = Stud. Environ. Sci. Climate Change, Transport and Environmental Policy = New Hor Env Eco Climate Change, Transport and Environmental Policy = New. Hor. Env. Eco. Climate Dynamics = Climate Dyn. Climate Dynamics = Clim. Dyn. Climate Dynamics = Clim Dynam Climate Dynamics = Clim. Dynam. Climate Dynamics: Why Does Climate Vary? = Geophys Monogr Ser Climate Dynamics: Why Does Climate Vary? = Geophys. Monogr. Ser. Climate Impact of Solar Variability = Nasa Conf P Climate Impact of Solar Variability = Nasa. Conf. P. Climate in Historical Times: Towards A Synthesis of Holocence Proxy Data and Climate Models = Gkss Sch Environm Climate in Historical Times: Towards A Synthesis of Holocence Proxy Data and Climate Models = Gkss. Sch. Environm. Climate Law and Developing Countries: Legal and Policy Challenges for The World Economy = New Hor Env Energ Climate Law and Developing Countries: Legal and Policy Challenges for The World Economy = New. Hor. Env. Energ. Climate of The Past = Clim Past Climate of The Past = Clim. Past Climate Policy = Clim Policy Climate Policy = Clim. Policy Climate Research = Climate Res Climate Research = Climate Res. Climate Research = Clim Res Climate Research = Clim. Res. Climate Time Series Analysis: Classical Statistical and Bootstrap Methods = Atmos Ocean Sci Lib Climate Time Series Analysis: Classical Statistical and Bootstrap Methods = Atmos. Ocean. Sci. Lib. Climate Variability and Change - Hydrological Impacts = Iahs-aish P Climate Variability and Change - Hydrological Impacts = Iahs-aish. P. Climate Variability and Extremes During The Past 100 Years = Adv Glob Change Res Climate Variability and Extremes During The Past 100 Years = Adv. Glob. Change. Res. Climate-vegetation: Afro-asian Mediterranean and Red Sea Coastal Lands = Plant Veg Climate-vegetation: Afro-asian Mediterranean and Red Sea Coastal Lands = Plant. Veg. Climatic Change = Climatic Change Climatic Change = Clim. Chang. Climatic change = Clim Change Climatic Change = Clim. Change Climatic Changes and Water Resources in The Middle East and North Africa = Environ Sci Eng Climatic Changes and Water Resources in The Middle East and North Africa = Environ. Sci. Eng. Climatological Bulletin = Climatol. Bull. Clinica (Bologna, Italy) = Clinica Clinica Chimica Acta=Clin Chim Acta;; Clinica Chimica Acta = Clin Chim Acta Clinica Chimica Acta = Clin. Chim. Acta Clinica chimica acta; international journal of clinical chemistry = Clin Chim Acta Clinica = Clinica Clinica del torax = Clin Torax Clinica e investigacion en ginecologia y obstetricia = Clin Invest Ginecol Obstet Clinica europea = Clin Eur Clinica Europea = Clin. Eur. Clinical Advances in Hematology and Oncology = Clin. Adv. Hematol. Oncol. Clinical advances in hematology & oncology : H&O = Clin Adv Hematol Oncol Clinical Allergy and Immunology = Cl Aller Im Clinical Allergy and Immunology = Cl. Aller. Im. Clinical allergy and immunology = Clin Allergy Immunol Clinical allergy = Clin Allergy Clinical Allergy = Clin Allergy Clinical Allergy = Clin. Allergy Clinical Allergy: Diagnosis and Management = Curr Clin Pract Clinical Allergy: Diagnosis and Management = Curr. Clin. Pract. Clinical Anatomy=Clin Anat;; Clinical Anatomy = Clin Anat Clinical Anatomy = Clin. Anat. Clinical anatomy (New York, N.Y.) = Clin Anat Clinical Anatomy of The Coronary Arteries = Adv Anat Embryol Cel Clinical Anatomy of The Coronary Arteries = Adv. Anat. Embryol. Cel. Clinical Anatomy of The Pelvic Floor = Adv Anat Embryol Cel Clinical Anatomy of The Pelvic Floor = Adv. Anat. Embryol. Cel. Clinical and Applied Thrombosis-hemostasis = Clin Appl Thromb-hem Clinical and Applied Thrombosis-hemostasis = Clin. Appl. Thromb-hem. Clinical and applied thrombosis/hemostasis : official journal of the International Academy of Clinical and Applied Thrombosis/Hemostasis = Clin Appl Thromb Hemost Clinical and Basic Oculomotor Research: in Honor of David S. Zee = Ann Ny Acad Sci Clinical and Basic Oculomotor Research: in Honor of David S. Zee = Ann. Ny. Acad. Sci. Clinical and Biological Basis of Lung Cancer Prevention = Resp Pharm & Pharmac Clinical and Biological Basis of Lung Cancer Prevention = Resp. Pharm. &. Pharmac. Clinical and Biomedical Spectroscopy and Imaging Ii = Proc Spie Clinical and Biomedical Spectroscopy and Imaging Ii = Proc. Spie. Clinical and Biomedical Spectroscopy = P Soc Photo-opt Ins Clinical and Biomedical Spectroscopy = P. Soc. Photo-opt. Ins. Clinical and Developmental Immunology = Clin. Dev. Immunol. Clinical and Diagnostic Laboratory Immunology = Clin Diagn Lab Immun Clinical and Diagnostic Laboratory Immunology = Clin. Diagn. Lab. Immun. Clinical and diagnostic laboratory immunology = Clin Diagn Lab Immunol Clinical and Diagnostic Laboratory Immunology=Clin Diagn Lab Immunol;; Clinical and Diagnostic Laboratory Immunology = Clin. Diagn. Lab. Immunol. Clinical and diagnostic virology = Clin Diagn Virol Clinical and Diagnostic Virology = Clin Diagn Virol Clinical and Diagnostic Virology = Clin. Diagn. Virol. Clinical and Epidemiological Aspects of End-of-life Decision-making = Knaw Verhan Clinical and Epidemiological Aspects of End-of-life Decision-making = Knaw. Verhan. Clinical and Experimental Allergy=Clin Exp Allergy;; Clinical and Experimental Allergy = Clin Exp Allergy Clinical and Experimental Allergy = Clin. Exp. Allergy Clinical and experimental allergy : journal of the British Society for Allergy and Clinical Immunology = Clin Exp Allergy Clinical and Experimental Approaches to Dermal and Epidermal Repair = Prog Clin Biol Res Clinical and Experimental Approaches to Dermal and Epidermal Repair = Prog. Clin. Biol. Res. Clinical and experimental dermatology = Clin Exp Dermatol Clinical and Experimental Dermatology=Clin Exp Dermatol;; Clinical and Experimental Dermatology = Clin Exp Dermatol Clinical and Experimental Dermatology = Clin. Exp. Dermatol. Clinical and Experimental Dialysis and Apheresis = Clin Exp Dial A Clinical and Experimental Dialysis and Apheresis = Clin. Exp. Dial. A. Clinical and experimental dialysis and apheresis = Clin Exp Dial Apheresis Clinical and Experimental Dialysis and Apheresis = Clin. Exp. Dial. Apheresis Clinical and experimental hypertension = Clin Exp Hypertens Clinical and Experimental Hypertension=Clin Exp Hypertens;; Clinical and Experimental Hypertension = Clin Exp Hypertens Clinical and Experimental Hypertension = Clin. Exp. Hypertens. Clinical and experimental hypertension (New York, N.Y. : 1993) = Clin Exp Hypertens Clinical and experimental hypertension. Part A, Theory and practice = Clin Exp Hypertens A Clinical and Experimental Hypertension Part A-theory and Practice = Clin Exp Hypertens A Clinical and Experimental Hypertension Part A-theory and Practice = Clin. Exp. Hypertens. A. Clinical and Experimental Hypertension. Part A, Theory and Practice = Clin. Exp. Hypertens. A. Clinical and experimental hypertension. Part B, Hypertension in pregnancy = Clin Exp Hypertens B Clinical and Experimental Hypertension Part B-hypertension in Pregnancy = Clin Exp Hypertens B Clinical and Experimental Hypertension Part B-hypertension in Pregnancy = Clin. Exp. Hypertens. B. Clinical and Experimental Hypertension. Part B, Hypertension in Pregnancy = Clin. Exp. Hypertens. B. Clinical and experimental immunology = Clin Exp Immunol Clinical and Experimental Immunology=Clin Exp Immunol;; Clinical and Experimental Immunology = Clin Exp Immunol Clinical and Experimental Immunology = Clin. Exp. Immunol. Clinical and experimental medicine = Clin Exp Med Clinical and Experimental Medicine = Clin Exp Med Clinical and Experimental Medicine = Clin. Exp. Med. Clinical and Experimental Metastasis=Clin Exp Metastasis;; Clinical and Experimental Metastasis = Clin. Exp. Metastasis Clinical and experimental nephrology = Clin Exp Nephrol Clinical and Experimental Nephrology = Clin Exp Nephrol Clinical and Experimental Nephrology = Clin. Exp. Nephrol. Clinical and experimental neurology = Clin Exp Neurol Clinical and Experimental Neurology = Clin. Exp. Neurol. Clinical and Experimental Obstetrics and Gynecology = Clin. Exp. Obstet. Gynecol. Clinical and Experimental Obstetrics And Gynecology=Clin Exp Obstet Gynecol;; Clinical and Experimental Obstetrics & Gynecology = Clin Exp Obstet Gyn Clinical and Experimental Obstetrics & Gynecology = Clin. Exp. Obstet. Gyn. Clinical and experimental obstetrics & gynecology = Clin Exp Obstet Gynecol Clinical and Experimental Ophthalmology = Clin. Experiment. Ophthalmol. Clinical and Experimental Ophthalmology = Clin Exp Ophthalmol Clinical and Experimental Ophthalmology = Clin. Exp. Ophthalmol. Clinical and Experimental Optometry = Clin Exp Optom Clinical and Experimental Optometry = Clin. Exp. Optom. Clinical and Experimental Otorhinolaryngology = Clin Exp Otorhinolar Clinical and Experimental Otorhinolaryngology = Clin. Exp. Otorhinolar. Clinical and experimental pathology = Clin Exp Pathol Clinical and Experimental Pathology = Clin. Exp. Pathol. Clinical and Experimental Pharmacology and Physiology = Clin Exp Pharmacol P Clinical and Experimental Pharmacology and Physiology = Clin. Exp. Pharmacol. P. Clinical and Experimental Pharmacology and Physiology = Clin. Exp. Pharmacol. Physiol. Clinical and Experimental Pharmacology And Physiology=Clin Exp Pharmacol Physiol;; Clinical and Experimental Pharmacology and Physiology. Supplement = Clin. Exp. Pharmacol. Physiol. Suppl. Clinical and Experimental Pharmacology And Physiology. Supplement=Clin Exp Pharmacol Physiol Suppl;; Clinical and experimental pharmacology & physiology = Clin Exp Pharmacol Physiol Clinical and experimental pharmacology & physiology. Supplement = Clin Exp Pharmacol Physiol Suppl Clinical and experimental rheumatology = Clin Exp Rheumatol Clinical and Experimental Rheumatology=Clin Exp Rheumatol;; Clinical and Experimental Rheumatology = Clin Exp Rheumatol Clinical and Experimental Rheumatology = Clin. Exp. Rheumatol. Clinical and Investigative Medicine = Clin Invest Med Clinical and Investigative Medicine = Clin. Invest. Med. Clinical and investigative medicine. Medecine clinique et experimentale = Clin Invest Med Clinical and Investigative Medicine-medecine Clinique Et Experimentale = Clin Invest Med Clinical and Investigative Medicine-medecine Clinique Et Experimentale = Clin. Invest. Med. Clinical and Investigative Medicine. Medecine Clinique Et Experimentale=Clin Invest Med;; Clinical and laboratory haematology = Clin Lab Haematol Clinical and Laboratory Haematology=Clin Lab Haematol;; Clinical and Laboratory Haematology = Clin Lab Haematol Clinical and Laboratory Haematology = Clin. Lab. Haematol. Clinical and Laboratory Performance of Bone Plates = Am Soc Test Mater Clinical and Laboratory Performance of Bone Plates = Am. Soc. Test. Mater. Clinical and molecular allergy : CMA = Clin Mol Allergy Clinical and Translational Oncology = Clin. Transl. Oncol. Clinical and Vaccine Immunology = Clin Vaccine Immunol Clinical and Vaccine Immunology = Clin. Vaccine Immunol. Clinical and vaccine immunology : CVI = Clin Vaccine Immunol Clinical anesthesia = Clin Anesth Clinical Anesthesia = Clin. Anesth. Clinical Aphasiology = Clin Aphasiol Clinical Aphasiology = Clin. Aphasiol. Clinical Aphasiology, Vol 22 = Clin Aphasiol Clinical Aphasiology, Vol 22 = Clin. Aphasiol. Clinical Aphasiology, Vol 23 = Clin Aphasiol Clinical Aphasiology, Vol 23 = Clin. Aphasiol. Clinical Applications of Immunotoxins = Curr Top Microbiol Clinical Applications of Immunotoxins = Curr. Top. Microbiol. Clinical Applications of Mass Spectrometry = Methods Mol Biol Clinical Applications of Mass Spectrometry = Methods. Mol. Biol. Clinical Applications of Modern Imaging Technology Ii = P Soc Photo-opt Ins Clinical Applications of Modern Imaging Technology Ii = P. Soc. Photo-opt. Ins. Clinical Applications of Tgf-beta = Ciba F Symp Clinical Applications of Tgf-beta = Ciba. F. Symp. Clinical Applied Psychophysiology = Pl S Behav Clinical Applied Psychophysiology = Pl. S. Behav. Clinical Aspects of Biomedicine = Clin Asp B Clinical Aspects of Biomedicine = Clin. Asp. B. Clinical Aspects of Microdialysis = Act Neur S Clinical Aspects of Microdialysis = Act. Neur. S. Clinical Assessment, Computerized Methods, and Instrumentation = Comp Psych Clinical Assessment, Computerized Methods, and Instrumentation = Comp. Psych. Clinica latina = Clin Lat Clinical Autonomic Research=Clin Auton Res;; Clinical Autonomic Research = Clin Auton Res Clinical Autonomic Research = Clin. Auton. Res. Clinical autonomic research : official journal of the Clinical Autonomic Research Society = Clin Auton Res Clinical biochemistry = Clin Biochem Clinical Biochemistry=Clin Biochem;; Clinical Biochemistry = Clin Biochem Clinical Biochemistry = Clin. Biochem. Clinical Biochemistry Contemporary Theories and Techniques = Clin Biochem Contemp Clinical Biochemistry Contemporary Theories and Techniques = Clin. Biochem. Contemp. Clinical Bioethics: A Search for The Foundations = Int Lib Ethics Law Clinical Bioethics: A Search for The Foundations = Int. Lib. Ethics. Law. Clinical biomechanics (Bristol, Avon) = Clin Biomech (Bristol, Avon) Clinical Biomechanics = Clin Biomech Clinical Biomechanics = Clin. Biomech. Clinical breast cancer = Clin Breast Cancer Clinical Breast Cancer = Clin Breast Cancer Clinical Breast Cancer = Clin. Breast Cancer Clinical bulletin = Clin Bull Clinical Bulletin = Clin Bull Clinical Bulletin = Clin. Bull. Clinical calcium = Clin Calcium Clinical Cancer Prevention = Recent Results Canc Clinical Cancer Prevention = Recent. Results. Canc. Clinical cancer research : an official journal of the American Association for Cancer Research = Clin Cancer Res Clinical Cancer Research = Clin Cancer Res Clinical Cancer Research = Clin. Cancer Res. Clinical cardiology = Clin Cardiol Clinical Cardiology=Clin Cardiol;; Clinical Cardiology = Clin Cardiol Clinical Cardiology = Clin. Cardiol. Clinical chemistry and laboratory medicine : CCLM / FESCC = Clin Chem Lab Med Clinical Chemistry and Laboratory Medicine=Clin Chem Lab Med;; Clinical Chemistry and Laboratory Medicine = Clin Chem Lab Med Clinical Chemistry and Laboratory Medicine = Clin. Chem. Lab. Med. Clinical chemistry = Clin Chem Clinical Chemistry=Clin Chem;; Clinical Chemistry = Clin Chem Clinical Chemistry = Clin. Chem. Clinical Chemistry (Washington, DC, United States) = Clin. Chem. (Washington, DC, U. S.) Clinical Child and Family Psychology Review = Clin Child Fam Psych Clinical Child and Family Psychology Review = Clin. Child Fam. Psych. Clinical child and family psychology review = Clin Child Fam Psychol Rev Clinical Child and Family Psychology Review = Clin. Child Fam. Psychol. Rev. Clinical child psychology and psychiatry = Clin Child Psychol Psychiatry Clinical Colorectal Cancer = Clin Colorectal Canc Clinical Colorectal Cancer = Clin. Colorectal Canc. Clinical colorectal cancer = Clin Colorectal Cancer Clinical Colorectal Cancer = Clin. Colorectal Cancer Clinical cornerstone = Clin Cornerstone Clinical Cornerstone = Clin. Cornerstone Clinical Decision Making and Quality of Life = Col As Fr R Clinical Decision Making and Quality of Life = Col. As. Fr. R. Clinical & developmental immunology = Clin Dev Immunol Clinical & Developmental Immunology = Clin Dev Immunol Clinical & Developmental Immunology = Clin. Dev. Immunol. Clinical Diagnostic Systems = P Soc Photo-opt Ins Clinical Diagnostic Systems = P. Soc. Photo-opt. Ins. Clinical Diagnostic Systems: Technologies and Instrumentation = Proc Spie Clinical Diagnostic Systems: Technologies and Instrumentation = Proc. Spie. Clinical Diagnostic Systems: Technologies and Instrumentation = P Soc Photo-opt Ins Clinical Diagnostic Systems: Technologies and Instrumentation = P. Soc. Photo-opt. Ins. Clinical Drug Investigation = Clin Drug Invest Clinical Drug Investigation = Clin. Drug Invest. Clinical drug investigation = Clin Drug Investig Clinical dysmorphology = Clin Dysmorphol Clinical Dysmorphology=Clin Dysmorphol;; Clinical Dysmorphology = Clin Dysmorphol Clinical Dysmorphology = Clin. Dysmorphol. Clinical Ecology of Cystic Fibrosis = Int Congr Ser Clinical Ecology of Cystic Fibrosis = Int. Congr. Ser. Clinical Eeg and Neuroscience = Clin Eeg Neurosci Clinical Eeg and Neuroscience = Clin. Eeg Neurosci. Clinical EEG and Neuroscience = Clin. EEG Neurosci. Clinical EEG and neuroscience : official journal of the EEG and Clinical Neuroscience Society (ENCS) = Clin EEG Neurosci Clinical EEG (electroencephalography) = Clin Electroencephalogr Clinical Efficacy and Outcome in The Diagnosis and Treatment of Low Back Pain = Bris Myer Z Clinical Efficacy and Outcome in The Diagnosis and Treatment of Low Back Pain = Bris. Myer. Z. Clinical Electroencephalography = Clin Electroencephal Clinical Electroencephalography = Clin. Electroencephal. Clinical Electroencephalography=Clin Electroencephalogr;; Clinical Electroencephalography = Clin. Electroencephalogr. Clinical Endocrinology = Clin Endocrinol Clinical Endocrinology = Clin. Endocrinol. Clinical endocrinology = Clin Endocrinol (Oxf) Clinical Endocrinology=Clin Endocrinol (Oxf);; Clinical Endocrinology = Clin. Endocrinol. (Oxf.) Clinical Endocrinology / = Int Congr Ser Clinical Endocrinology / = Int. Congr. Ser. Clinical engineering = Clin Eng Clinical Engineering = Clin. Eng. Clinical engineering information service = Clin Eng Inf Serv Clinical Engineering Information Service = Clin. Eng. Inf. Serv. Clinical engineering news = Clin Eng News Clinical Engineering News = Clin. Eng. News Clinical Ethics and The Necessity of Stories: Essays in Honor of Richard M. Zaner = Philos Med Clinical Ethics and The Necessity of Stories: Essays in Honor of Richard M. Zaner = Philos. Med. Clinical ethics report = Clin Ethics Rep Clinical Evaluation of Drug Efficacy in Uti = Int Congr Ser Clinical Evaluation of Drug Efficacy in Uti = Int. Congr. Ser. Clinical evidence = Clin Evid Clinical Evidence = Clin. Evid. Clinical excellence for nurse practitioners : the international journal of NPACE = Clin Excell Nurse Pract Clinical excerpts; a journal devoted to therapeutics = Clin Excerpts J Devoted Ther Clinical exercise physiology = Clin Exerc Physiol Clinical Exercise Testing = Eur Respir Monogr Clinical Exercise Testing = Eur. Respir. Monogr. Clinical & Experimental Metastasis = Clin Exp Metastas Clinical & Experimental Metastasis = Clin. Exp. Metastas. Clinical & experimental metastasis = Clin Exp Metastasis Clinical & experimental ophthalmology = Clin Experiment Ophthalmol Clinical & experimental optometry : journal of the Australian Optometrical Association = Clin Exp Optom Clinical eye and vision care = Clin Eye Vis Care Clinical Flow Cytometry = Ann Ny Acad Sci Clinical Flow Cytometry = Ann. Ny. Acad. Sci. Clinical Functional Mri: Presurgical Functional Neuroimaging = Med Radiol Diagn Ima Clinical Functional Mri: Presurgical Functional Neuroimaging = Med. Radiol. Diagn. Ima. Clinical Gastroenterology and Hepatology = Clin Gastroenterol H Clinical Gastroenterology and Hepatology = Clin. Gastroenterol. H. Clinical Gastroenterology and Hepatology = Clin. Gastroenterol. Hepatol. Clinical gastroenterology and hepatology : the official clinical practice journal of the American Gastroenterological Association = Clin Gastroenterol Hepatol Clinical Gastroenterology = Clin Gastroent-ser Clinical Gastroenterology = Clin. Gastroent-ser. Clinical genetics = Clin Genet Clinical Genetics=Clin Genet;; Clinical Genetics = Clin Genet Clinical Genetics = Clin. Genet. Clinical Genitourinary Cancer = Clin Genitourin Canc Clinical Genitourinary Cancer = Clin. Genitourin. Canc. Clinical genitourinary cancer = Clin Genitourin Cancer Clinical Genitourinary Cancer = Clin. Genitourin. Cancer Clinical gerontologist = Clin Gerontol Clinical Gerontologist = Clin. Gerontol. Clinical Gerontologist = Clin Gerontologist Clinical Gerontologist = Clin. Gerontologist Clinical Handbook of Insomnia, Second Edition = Curr Clin Neurol Clinical Handbook of Insomnia, Second Edition = Curr. Clin. Neurol. Clinical Hemorheology and Microcirculation = Clin Hemorheol Micro Clinical Hemorheology and Microcirculation = Clin. Hemorheol. Micro. Clinical hemorheology and microcirculation = Clin Hemorheol Microcirc Clinical Hemorheology and Microcirculation=Clin Hemorheol Microcirc;; Clinical Hemorheology and Microcirculation = Clin. Hemorheol. Microcirc. Clinical hemorheology = Clin Hemorheol Clinical Hemorheology = Clin Hemorheol Clinical Hemorheology = Clin. Hemorheol. Clinical Hypertension and Vascular Diseases = Clin Hypertens Vasc Clinical Hypertension and Vascular Diseases = Clin. Hypertens. Vasc. Clinical Hypertension in Nephrology = Contrib Nephrol Clinical Hypertension in Nephrology = Contrib. Nephrol. Clinical Imaging = Clin Imag Clinical Imaging = Clin. Imag. Clinical imaging = Clin Imaging Clinical Imaging = Clin. Imaging Clinical IMAging=Clin Imaging;; Clinical Immunology and Allergy Antibiotics: Intolerance and Allergies = Ejd Book Ser Clinical Immunology and Allergy Antibiotics: Intolerance and Allergies = Ejd. Book. Ser. Clinical Immunology and Immunopathology = Clin Immunol Immunop Clinical Immunology and Immunopathology = Clin. Immunol. Immunop. Clinical immunology and immunopathology = Clin Immunol Immunopathol Clinical Immunology and Immunopathology=Clin Immunol Immunopathol;; Clinical Immunology and Immunopathology = Clin. Immunol. Immunopathol. Clinical Immunology = Cl Immunol Clinical Immunology = Cl. Immunol. Clinical Immunology = Clin Immunol Clinical Immunology = Clin. Immunol. Clinical immunology (Orlando, Fla.) = Clin Immunol Clinical immunology reviews = Clin Immunol Rev Clinical Immunology Reviews = Clin. Immunol. Rev. Clinical Immunology (San Diego, CA, United States) = Clin. Immunol. (San Diego, CA, U. S.) Clinical Immunotherapeutics = Clin Immunother Clinical Immunotherapeutics = Clin. Immunother. Clinical Impact of Pneumococcal Disease and Strategies for Its Prevention = Roy Soc Med Int Cong Clinical Impact of Pneumococcal Disease and Strategies for Its Prevention = Roy. Soc. Med. Int. Cong. Clinical Implant Dentistry and Related Research = Clin Implant Dent R Clinical Implant Dentistry and Related Research = Clin. Implant Dent. R. Clinical implant dentistry and related research = Clin Implant Dent Relat Res Clinical Implant Dentistry and Related Research = Clin. Implant Dent. Relat. Res. Clinical Implant Materials = Adv Biomat Clinical Implant Materials = Adv. Biomat. Clinical infectious diseases : an official publication of the Infectious Diseases Society of America = Clin Infect Dis Clinical Infectious Diseases=Clin Infect Dis;; Clinical Infectious Diseases = Clin Infect Dis Clinical Infectious Diseases = Clin. Infect. Dis. Clinical Intensive Care = Clin. Intensive Care Clinical intensive care : international journal of critical & coronary care medicine = Clin Intensive Care Clinical Investigator = Clin. Investig. Clinical Investigator = Clin Investigator Clinical Investigator = Clin. Investigator Clinical Issues in Growth Disorders: Evaluation, Diagnosis and Therapy = Serono Coll Eur Ser Clinical Issues in Growth Disorders: Evaluation, Diagnosis and Therapy = Serono. Coll. Eur. Ser. Clinical journal of oncology nursing = Clin J Oncol Nurs Clinical Journal of Oncology Nursing = Clin J Oncol Nurs Clinical Journal of Oncology Nursing = Clin. J. Oncol. Nurs. Clinical Journal of Pain=Clin J Pain;; Clinical Journal of Pain = Clin J Pain Clinical Journal of Pain = Clin. J. Pain Clinical Journal of Sport Medicine=Clin J Sport Med;; Clinical Journal of Sport Medicine = Clin J Sport Med Clinical Journal of Sport Medicine = Clin. J. Sport Med. Clinical journal of sport medicine : official journal of the Canadian Academy of Sport Medicine = Clin J Sport Med Clinical journal of the American Society of Nephrology : CJASN = Clin J Am Soc Nephrol Clinical Journal of The American Society of Nephrology = Clin J Am Soc Nephro Clinical Journal of The American Society of Nephrology = Clin. J. Am. Soc. Nephro. Clinical laboratory = Clin Lab Clinical Laboratory = Clin Lab Clinical Laboratory = Clin. Lab. Clinical Laboratory Management Review = Clin. Lab. Manage. Rev. Clinical laboratory management review : official publication of the Clinical Laboratory Management Association / CLMA = Clin Lab Manage Rev Clinical Laboratory Science = Clin. Lab. Sci. Clinical laboratory science : journal of the American Society for Medical Technology = Clin Lab Sci Clinical laser monthly = Clin Laser Mon Clinical Laser Monthly = Clin. Laser Mon. Clinical Lasers and Diagnostics = P Soc Photo-opt Ins Clinical Lasers and Diagnostics = P. Soc. Photo-opt. Ins. Clinical leadership & management review : the journal of CLMA = Clin Leadersh Manag Rev Clinical linguistics & phonetics = Clin Linguist Phon Clinical Linguistics & Phonetics = Clin Linguist Phonet Clinical Linguistics & Phonetics = Clin. Linguist. Phonet. Clinical Lipidology = Clin Lipidol Clinical Lipidology = Clin. Lipidol. Clinical lung cancer = Clin Lung Cancer Clinical Lung Cancer = Clin Lung Cancer Clinical Lung Cancer = Clin. Lung Cancer Clinical Lymphoma and Myeloma = Clin. Lymphoma Myeloma Clinical lymphoma = Clin Lymphoma Clinical Lymphoma = Clin Lymphoma Clinical Lymphoma = Clin. Lymphoma Clinical Lymphoma & Myeloma = Clin Lymphoma Myelom Clinical Lymphoma & Myeloma = Clin. Lymphoma Myelom. Clinical lymphoma & myeloma = Clin Lymphoma Myeloma Clinical Lymphoma Myeloma & Leukemia = Cl Lymph Myelom Leuk Clinical Lymphoma Myeloma & Leukemia = Cl. Lymph. Myelom. Leuk. Clinical materials = Clin Mater Clinical Materials = Clin Mater Clinical Materials = Clin. Mater. Clinical Medical Ethics Series = Clin Med Ethics Ser Clinical Medical Ethics Series = Clin. Med. Ethics Ser. Clinical Medicine and Research = Clin. Med. Res. Clinical Medicine = Clin Med Clinical Medicine = Clin. Med. Clinical medicine = Clin Med (Northfield Il) Clinical medicine (London, England) = Clin Med Clinical medicine & research = Clin Med Res Clinical Medicine/us = Clin Med/us Clinical Medicine/us = Clin. Med/us. Clinical Microbiology and Infection = Clin Microbiol Infec Clinical Microbiology and Infection = Clin. Microbiol. Infec. Clinical microbiology and infection : the official publication of the European Society of Clinical Microbiology and Infectious Diseases = Clin Microbiol Infect Clinical microbiology reviews = Clin Microbiol Rev Clinical Microbiology Reviews=Clin Microbiol Rev;; Clinical Microbiology Reviews = Clin Microbiol Rev Clinical Microbiology Reviews = Clin. Microbiol. Rev. Clinical molecular pathology = Clin Mol Pathol Clinical nephrology = Clin Nephrol Clinical Nephrology=Clin Nephrol;; Clinical Nephrology = Clin Nephrol Clinical Nephrology = Clin. Nephrol. Clinical Neurology and Neurosurgery = Clin Neurol Neurosur Clinical Neurology and Neurosurgery = Clin. Neurol. Neurosur. Clinical neurology and neurosurgery = Clin Neurol Neurosurg Clinical Neurology and Neurosurgery=Clin Neurol Neurosurg;; Clinical Neurology and Neurosurgery = Clin. Neurol. Neurosurg. Clinical neuropathology = Clin Neuropathol Clinical Neuropathology=Clin Neuropathol;; Clinical Neuropathology = Clin Neuropathol Clinical Neuropathology = Clin. Neuropathol. Clinical neuropharmacology = Clin Neuropharmacol Clinical Neuropharmacology=Clin Neuropharmacol;; Clinical Neuropharmacology = Clin Neuropharmacol Clinical Neuropharmacology = Clin. Neuropharmacol. Clinical Neurophysiology = Clin Neurophysiol Clinical Neurophysiology = Clin. Neurophysiol. Clinical Neurophysiology: From Receptors to Perception = Eeg Cl N Su Clinical Neurophysiology: From Receptors to Perception = Eeg. Cl. N. Su. Clinical neurophysiology : official journal of the International Federation of Clinical Neurophysiology = Clin Neurophysiol Clinical Neuropsychologist = Clin Neuropsychol Clinical Neuropsychologist = Clin. Neuropsychol. Clinical Neuropsychology = Int J Clin Neuropsyc Clinical Neuropsychology = Int. J. Clin. Neuropsyc. Clinical Neuroradiology = Clin Neuroradiol Clinical Neuroradiology = Clin. Neuroradiol. Clinical Neuroradiology-klinische Neuroradiologie = Clin Neuroradiol Clinical Neuroradiology-klinische Neuroradiologie = Clin. Neuroradiol. Clinical Neuroscience=Clin Neurosci;; Clinical Neuroscience = Clin Neurosci Clinical Neuroscience = Clin. Neurosci. Clinical neuroscience (New York, N.Y.) = Clin Neurosci Clinical neuroscience research = Clin Neurosci Res Clinical Neuroscience Research = Clin Neurosci Res Clinical Neuroscience Research = Clin. Neurosci. Res. Clinical Neurosurgery = Clin Neur Clinical Neurosurgery = Clin. Neur. Clinical neurosurgery = Clin Neurosurg Clinical Neurosurgery=Clin Neurosurg;; Clinical Neurosurgery = Clin. Neurosurg. Clinical Neurosurgery, Vol 36 = Clin Neur Clinical Neurosurgery, Vol 36 = Clin. Neur. Clinical Neurosurgery, Vol 37 = Clin Neur Clinical Neurosurgery, Vol 37 = Clin. Neur. Clinical Neurosurgery, Vol 38 = Clin Neur Clinical Neurosurgery, Vol 38 = Clin. Neur. Clinical notes on respiratory diseases = Clin Notes Respir Dis Clinical Notes on Respiratory Diseases = Clin. Notes Respir. Dis. Clinical nuclear medicine = Clin Nucl Med Clinical Nuclear Medicine=Clin Nucl Med;; Clinical Nuclear Medicine = Clin Nucl Med Clinical Nuclear Medicine = Clin. Nucl. Med. Clinical Nurse Specialist = Clin Nurse Spec Clinical Nurse Specialist = Clin. Nurse Spec. Clinical nurse specialist CNS = Clin Nurse Spec Clinical nursing practice in epilepsy = Clin Nurs Pract Epilepsy Clinical Nursing Practice in Epilepsy = Clin. Nurs. Pract. Epilepsy Clinical nursing research = Clin Nurs Res Clinical Nursing Research = Clin Nurs Res Clinical Nursing Research = Clin. Nurs. Res. Clinical Nutrition = Clin Nutr Clinical Nutrition = Clin. Nutr. Clinical Nutrition: Early Intervention = Nes Nutr Ws Clinical Nutrition: Early Intervention = Nes. Nutr. Ws. Clinical nutrition (Edinburgh, Scotland) = Clin Nutr Clinical obstetrics and gynecology = Clin Obstet Gynecol Clinical Obstetrics and Gynecology=Clin Obstet Gynecol;; Clinical Obstetrics and Gynecology = Clin Obstet Gynecol Clinical Obstetrics and Gynecology = Clin. Obstet. Gynecol. Clinical oncology = Clin Oncol Clinical Oncology = Clin Oncol Clinical Oncology = Clin. Oncol. Clinical Oncology = Clin Oncol-uk Clinical Oncology = Clin. Oncol-uk. Clinical Oncology Monographs = Clin Oncolo Clinical Oncology Monographs = Clin. Oncolo. Clinical Oncology (Royal College of Radiologists)=Clin Oncol (R Coll Radiol);; Clinical Oncology (Royal College of Radiologists) = Clin. Oncol. (R. Coll. Radiol.) Clinical oncology (Royal College of Radiologists (Great Britain)) = Clin Oncol (R Coll Radiol) Clinical Oncology-us = Clin Oncol-us Clinical Oncology-us = Clin. Oncol-us. Clinical Oral Implants Research = Clin Oral Implan Res Clinical Oral Implants Research = Clin. Oral Implan. Res. Clinical oral implants research = Clin Oral Implants Res Clinical Oral Implants Research = Clin. Oral Implants Res. Clinical Oral Investigations = Clin Oral Invest Clinical Oral Investigations = Clin. Oral Invest. Clinical oral investigations = Clin Oral Investig Clinical Oral Investigations = Clin. Oral Investig. Clinical orthodontics and research = Clin Orthod Res Clinical Orthodontics and Research = Clin. Orthod. Res. Clinical Orthopaedics and Related Research=Clin Orthop;; Clinical Orthopaedics and Related Research = Clin. Orthop. Clinical Orthopaedics and Related Research = Clin Orthop Relat R Clinical Orthopaedics and Related Research = Clin. Orthop. Relat. R. Clinical orthopaedics and related research = Clin Orthop Relat Res Clinical orthopaedics = Clin Orthop Clinical otolaryngology and allied sciences = Clin Otolaryngol Allied Sci Clinical Otolaryngology=Clin Otolaryngol;; Clinical Otolaryngology = Clin Otolaryngol Clinical Otolaryngology = Clin. Otolaryngol. Clinical otolaryngology : official journal of ENT-UK ; official journal of Netherlands Society for Oto-Rhino-Laryngology & Cervico-Facial Surgery = Clin Otolaryngol Clinical Pediatrics = Clin Pediatr Clinical Pediatrics = Clin. Pediatr. Clinical pediatrics = Clin Pediatr (Phila) Clinical Pediatrics=Clin Pediatr (Phila);; Clinical Pediatrics = Clin. Pediatr. (Phila.) Clinical performance and quality health care = Clin Perform Qual Health Care Clinical Performance and Quality Health Care = Clin. Perform. Qual. Health Care Clinical Pet = Dev Nuc Med Clinical Pet = Dev. Nuc. Med. Clinical pharmacokinetics = Clin Pharmacokinet Clinical Pharmacokinetics=Clin Pharmacokinet;; Clinical Pharmacokinetics = Clin Pharmacokinet Clinical Pharmacokinetics = Clin. Pharmacokinet. Clinical Pharmacology : Actualities and Perspectives 3 = Colloq Inse Clinical Pharmacology : Actualities and Perspectives 3 = Colloq. Inse. Clinical Pharmacology and Rational Pharmacotherapy = Sch Int Med Clinical Pharmacology and Rational Pharmacotherapy = Sch. Int. Med. Clinical pharmacology and therapeutics = Clin Pharmacol Ther Clinical Pharmacology and Therapeutics=Clin Pharmacol Ther;; Clinical Pharmacology and Therapeutics = Clin. Pharmacol. Ther. Clinical Pharmacology and Therapeutics (St. Louis) = Clin. Pharmacol. Ther. (St. Louis) Clinical Pharmacology : Current Topics and Perspectives = Colloq Inse Clinical Pharmacology : Current Topics and Perspectives = Colloq. Inse. Clinical Pharmacology / Klinische Pharmakologie = Klin Pharm Clinical Pharmacology / Klinische Pharmakologie = Klin. Pharm. Clinical Pharmacology of Biotechnology Products = Int Congr Ser Clinical Pharmacology of Biotechnology Products = Int. Congr. Ser. Clinical Pharmacology & Therapeutics = Clin Pharmacol Ther Clinical Pharmacology & Therapeutics = Clin. Pharmacol. Ther. Clinical pharmacy = Clin Pharm Clinical Pharmacy = Clin. Pharm. Clinical Pharmacy = Clin Pharmacy Clinical Pharmacy = Clin. Pharmacy Clinical physics and physiological measurement : an official journal of the Hospital Physicists' Association, Deutsche Gesellschaft fur Medizinische Physik and the European Federation of Organisations for Medical Physics = Clin Phys Physiol Meas Clinical Physics and Physiological Measurement = Clin Phys Physiol M Clinical Physics and Physiological Measurement = Clin. Phys. Physiol. M. Clinical Physics and Physiological Measurement = Clin. Phys. Physiol. Meas. Clinical Physiology and Biochemistry = Clin Physiol Bioch Clinical Physiology and Biochemistry = Clin. Physiol. Bioch. Clinical physiology and biochemistry = Clin Physiol Biochem Clinical Physiology and Biochemistry = Clin. Physiol. Biochem. Clinical Physiology and Functional Imaging = Clin Physiol Funct I Clinical Physiology and Functional Imaging = Clin. Physiol. Funct. I. Clinical physiology and functional imaging = Clin Physiol Funct Imaging Clinical Physiology and Functional Imaging = Clin. Physiol. Funct. Imaging Clinical Physiology=Clin Physiol;; Clinical Physiology = Clin Physiol Clinical Physiology = Clin. Physiol. Clinical physiology (Oxford, England) = Clin Physiol Clinical Physiology Series = Clin Phys Clinical Physiology Series = Clin. Phys. Clinical positron imaging : official journal of the Institute for Clinical P.E.T = Clin Positron Imaging Clinical practice and epidemiology in mental health : CP & EMH = Clin Pract Epidemol Ment Health Clinical Practice = Clin Prac Clinical Practice = Clin. Prac. Clinical practice guideline. Quick reference guide for clinicians = Clin Pract Guidel Quick Ref Guide Clin Clinical Practice Guideline. Quick Reference Guide for Clinicians = Clin. Pract. Guidel. Quick Ref. Guide Clin. Clinical preventive dentistry = Clin Prev Dent Clinical Preventive Dentistry = Clin. Prev. Dent. Clinical privilege white paper = Clin Privil White Pap Clinical proceedings - Children's Hospital National Medical Center = Clin Proc Child Hosp Natl Med Cent Clinical proceedings - Children's Hospital of the District of Columbia = Clin Proc Child Hosp Dist Columbia Clinical Proceedings, Childrens Hospital of the District of Columbia = Clin. Proc. Child. Hosp. Dist. Columbia Clinical Prostate and Kidney Cancer = Clin. Prostate Kidney Cancer Clinical prostate cancer = Clin Prostate Cancer Clinical Proteomics = Clin. Proteomics Clinical Psychologist = Clin Psychol-uk Clinical Psychologist = Clin. Psychol-uk. Clinical psychology : a publication of the Division of Clinical Psychology of the American Psychological Association = Clin Psychol (New York) Clinical Psychology & Psychotherapy = Clin Psychol Psychot Clinical Psychology & Psychotherapy = Clin. Psychol. Psychot. Clinical psychology & psychotherapy = Clin Psychol Psychother Clinical psychology review = Clin Psychol Rev Clinical Psychology Review=Clin Psychol Rev;; Clinical Psychology Review = Clin Psychol Rev Clinical Psychology Review = Clin. Psychol. Rev. Clinical Psychology-science and Practice = Clin Psychol-sci Pr Clinical Psychology-science and Practice = Clin. Psychol-sci. Pr. Clinical radiology = Clin Radiol Clinical Radiology=Clin Radiol;; Clinical Radiology = Clin Radiol Clinical Radiology = Clin. Radiol. Clinical rehabilitation = Clin Rehabil Clinical Rehabilitation=Clin Rehabil;; Clinical Rehabilitation = Clin Rehabil Clinical Rehabilitation = Clin. Rehabil. Clinical Relevance of Macrophage Function in The Cancer Patient = Roy Soc Med Int Cong Clinical Relevance of Macrophage Function in The Cancer Patient = Roy. Soc. Med. Int. Cong. Clinical reports = Clin Rep Clinical reproduction and fertility = Clin Reprod Fertil Clinical Reproduction and Fertility = Clin. Reprod. Fertil. Clinical Research and Regulatory Affairs = Clin Res Regul Aff Clinical Research and Regulatory Affairs = Clin. Res. Regul. Aff. Clinical research = Clin Res Clinical Research = Clin Res Clinical Research = Clin. Res. Clinical Research in Cardiology = Clin Res Cardiol Clinical Research in Cardiology = Clin. Res. Cardiol. Clinical research in cardiology : official journal of the German Cardiac Society = Clin Res Cardiol Clinical research practices and drug regulatory affairs = Clin Res Pr Drug Regul Aff Clinical resource management = Clin Resour Manag Clinical Respiratory Journal = Clin Respir J Clinical Respiratory Journal = Clin. Respir. J. Clinical Respiratory Physiology-bulletin Europeen De Physiopathologie Respiratoire = Clin Res Proc Clinical Respiratory Physiology-bulletin Europeen De Physiopathologie Respiratoire = Clin. Res. Proc. Clinical Reviews in Allergy and Immunology = Clin. Rev. Allergy Immunol. Clinical Reviews In Allergy and Immunology=Clin Rev Allergy Immunol;; Clinical Reviews in Allergy = Clin Rev Allerg Clinical Reviews in Allergy = Clin. Rev. Allerg. Clinical reviews in allergy = Clin Rev Allergy Clinical Reviews in Allergy = Clin. Rev. Allergy Clinical Reviews in Allergy & Immunology = Clin Rev Allerg Immu Clinical Reviews in Allergy & Immunology = Clin. Rev. Allerg. Immu. Clinical reviews in allergy & immunology = Clin Rev Allergy Immunol Clinical rheumatology = Clin Rheumatol Clinical Rheumatology=Clin Rheumatol;; Clinical Rheumatology = Clin Rheumatol Clinical Rheumatology = Clin. Rheumatol. Clinical Scenarios in Surgery Series = Clin Scenar Surg Ser Clinical Scenarios in Surgery Series = Clin. Scenar. Surg. Ser. Clinical Scenarios in Surgical Oncology = Clin Scenar Surg Ser Clinical Scenarios in Surgical Oncology = Clin. Scenar. Surg. Ser. Clinical science and molecular medicine = Clin Sci Mol Med Clinical Science and Molecular Medicine = Clin Sci Mol Med Clinical Science and Molecular Medicine = Clin. Sci. Mol. Med. Clinical science and molecular medicine. Supplement = Clin Sci Mol Med Suppl Clinical Science and Molecular Medicine. Supplement = Clin. Sci. Mol. Med. Suppl. Clinical science = Clin Sci Clinical Science = Clin Sci Clinical Science = Clin. Sci. Clinical Science=Clin Sci (Colch);; Clinical science (London, England : 1979) = Clin Sci (Lond) Clinical Science of Suicide Prevention = Ann Ny Acad Sci Clinical Science of Suicide Prevention = Ann. Ny. Acad. Sci. Clinical social work journal = Clin Soc Work J Clinical Social Work Journal = Clin Soc Work J Clinical Social Work Journal = Clin. Soc. Work J. Clinical Sociology-research and Practice = Clin Sociol Res Prac Clinical Sociology-research and Practice = Clin. Sociol. Res. Prac. Clinical Symposia=Clin Symp;; Clinical Symposia = Clin. Symp. Clinical symposia (Summit, N.J. : 1957) = Clin Symp Clinical Teacher Education: Reflections From An Urban Professional Development School Network = Read Educ Thought Clinical Teacher Education: Reflections From An Urban Professional Development School Network = Read. Educ. Thought. Clinical techniques in small animal practice = Clin Tech Small Anim Pract Clinical Techniques in Small Animal Practice = Clin. Tech. Small Anim. Pract. Clinical Techniques In Small Animal Practice=Clin Tech Small Anim Pract;; Clinical Techniques in Small Animal Practice = Clin Tech Small An P Clinical Techniques in Small Animal Practice = Clin. Tech. Small An. P. Clinical therapeutics = Clin Ther Clinical Therapeutics=Clin Ther;; Clinical Therapeutics = Clin Ther Clinical Therapeutics = Clin. Ther. Clinical toxicology = Clin Toxicol Clinical Toxicology = Clin Toxicol Clinical Toxicology = Clin. Toxicol. Clinical toxicology (Philadelphia, Pa.) = Clin Toxicol (Phila) Clinical & Translational Oncology = Clin Transl Oncol Clinical & Translational Oncology = Clin. Transl. Oncol. Clinical & translational oncology : official publication of the Federation of Spanish Oncology Societies and of the National Cancer Institute of Mexico = Clin Transl Oncol Clinical transplantation = Clin Transplant Clinical Transplantation=Clin Transplant;; Clinical Transplantation = Clin Transplant Clinical Transplantation = Clin. Transplant. Clinical transplants = Clin Transpl Clinical Transplants=Clin Transpl;; Clinical Transplants = Clin. Transpl. Clinical Trials and Meta-analysis = Clin Trial Meta-anal Clinical Trials and Meta-analysis = Clin. Trial. Meta-anal. Clinical trials and meta-analysis = Clin Trials Metaanal Clinical Trials and Meta-Analysis = Clin. Trials Metaanal. Clinical Trials = Clin Trials Clinical Trials = Clin. Trials Clinical Trials for The Treatment of Sepsis = Upd Int Car Clinical Trials for The Treatment of Sepsis = Upd. Int. Car. Clinical Trial Simulations: Applications and Trends = Aaps Adv Pharm Sci Clinical Trial Simulations: Applications and Trends = Aaps. Adv. Pharm. Sci. Clinical trials journal = Clin Trials J Clinical Trials Journal = Clin Trials J Clinical Trials Journal = Clin. Trials J. Clinical trials (London, England) = Clin Trials Clinical Update On Inflammatory Disorders of The Gastrointestinal Tract = Front Gastroint Res Clinical Update On Inflammatory Disorders of The Gastrointestinal Tract = Front. Gastroint. Res. Clinical Use of Antibodies = Dev Nuc Med Clinical Use of Antibodies = Dev. Nuc. Med. Clinical Vision Sciences = Clin Vision Sci Clinical Vision Sciences = Clin. Vision Sci. Clinica nuova; rassegna del progresso medico internazionale = Clin Nuova Rass Prog Med Internazionale Clinica Ortopedica = Clin. Ortop. Clinica Ostetrica e Ginecologica = Clin. Ostet. Ginecol. Clinica Otorinolaringoiatrica = Clin. Otorinolaringoiatr. Clinica Pediatrica = Clin. Pediatr. (Bologna) Clinica Terapeutica=Clin Ter;; Clinica Terapeutica = Clin Ter Clinica Terapeutica = Clin. Ter. Clinica Veterinaria De Pequenos Animales = Clin Vet Pequenos An Clinica Veterinaria De Pequenos Animales = Clin. Vet. Pequenos An. Clinica y Laboratorio = Clin. Lab. Clinica y laboratorio = Clin Lab (Zaragoza) Clinic = Clinic (Paris) Clinician = Clinician Clinic Odontologia = Clin. Odontol. Clinic odontologia : la revue de l'omnipraticien = Clin Odontol Clinic On Library Applications of Data Processing = Cl Lib Appl Clinic On Library Applications of Data Processing = Cl. Lib. Appl. Clinic (Paris, France) = Clinic (Paris) Clinics and Research in Hepatology and Gastroenterology = Clin Res Hepatol Gas Clinics and Research in Hepatology and Gastroenterology = Clin. Res. Hepatol. Gas. Clinics = Clinics Clinics in Anaesthesiology = Clin Anaesthesiol Clinics in Anaesthesiology = Clin. Anaesthesiol. Clinics in chest medicine = Clin Chest Med Clinics in Chest Medicine = Clin Chest Med Clinics in Chest Medicine = Clin. Chest Med. Clinics In Chest Medicine=Clin Chest Med;; Clinics in communication disorders = Clin Commun Disord Clinics in Communication Disorders = Clin. Commun. Disord. Clinics in dermatology = Clin Dermatol Clinics in Dermatology = Clin Dermatol Clinics in Dermatology = Clin. Dermatol. Clinics In Dermatology=Clin Dermatol;; Clinics in Developmental Medicine = Clin Dev Med Clinics in Developmental Medicine = Clin. Dev. Med. Clinics in diagnostic ultrasound = Clin Diagn Ultrasound Clinics in Diagnostic Ultrasound = Clin. Diagn. Ultrasound Clinics In Diagnostic Ultrasound=Clin Diagn Ultrasound;; Clinics in Endocrinology and Metabolism = Clin Endocrinol Meta Clinics in Endocrinology and Metabolism = Clin. Endocrinol. Meta. Clinics in endocrinology and metabolism = Clin Endocrinol Metab Clinics in Endocrinology and Metabolism = Clin. Endocrinol. Metab. Clinics in gastroenterology = Clin Gastroenterol Clinics in Gastroenterology = Clin Gastroenterol Clinics in Gastroenterology = Clin. Gastroenterol. Clinics in geriatric medicine = Clin Geriatr Med Clinics in Geriatric Medicine = Clin Geriatr Med Clinics in Geriatric Medicine = Clin. Geriatr. Med. Clinics In Geriatric Medicine=Clin Geriatr Med;; Clinics in haematology = Clin Haematol Clinics in Haematology = Clin Haematol Clinics in Haematology = Clin. Haematol. Clinics in Immunology and Allergy = Clin Immunol Allergy Clinics in Immunology and Allergy = Clin. Immunol. Allergy Clinics in laboratory medicine = Clin Lab Med Clinics in Laboratory Medicine = Clin Lab Med Clinics in Laboratory Medicine = Clin. Lab. Med. Clinics In Laboratory Medicine=Clin Lab Med;; Clinics in liver disease = Clin Liver Dis Clinics in Liver Disease = Clin Liver Dis Clinics in Liver Disease = Clin. Liver Dis. Clinics in obstetrics and gynaecology = Clin Obstet Gynaecol Clinics in Obstetrics and Gynaecology = Clin Obstet Gynaecol Clinics in Obstetrics and Gynaecology = Clin. Obstet. Gynaecol. Clinics in occupational and environmental medicine = Clin Occup Environ Med Clinics in Occupational and Environmental Medicine = Clin. Occup. Environ. Med. Clinics in Oncology = Clinics Oncol Clinics in Oncology = Clinics Oncol. Clinics in perinatology = Clin Perinatol Clinics in Perinatology = Clin Perinatol Clinics in Perinatology = Clin. Perinatol. Clinics In Perinatology=Clin Perinatol;; Clinics in plastic surgery = Clin Plast Surg Clinics in Plastic Surgery = Clin Plast Surg Clinics in Plastic Surgery = Clin. Plast. Surg. Clinics In Plastic Surgery=Clin Plast Surg;; Clinics in podiatric medicine and surgery = Clin Podiatr Med Surg Clinics in Podiatric Medicine and Surgery = Clin. Podiatr. Med. Surg. Clinics In Podiatric Medicine and Surgery=Clin Podiatr Med Surg;; Clinics in podiatry = Clin Podiatry Clinics in Podiatry = Clin. Podiatry Clinics in rheumatic diseases = Clin Rheum Dis Clinics in Rheumatic Diseases = Clin Rheum Dis Clinics in Rheumatic Diseases = Clin. Rheum. Dis. Clinics in Sports Medicine = Clin Sport Med Clinics in Sports Medicine = Clin. Sport. Med. Clinics in sports medicine = Clin Sports Med Clinics in Sports Medicine = Clin. Sports Med. Clinics In Sports Medicine=Clin Sports Med;; Clinics (Sao Paulo, Brazil) = Clinics Clinique = Clinique (Paris) Clinique (Paris, France) = Clinique (Paris) Clinton and Blair: The Political Economy of The Third Way = Routl Front Polit Ec Clinton and Blair: The Political Economy of The Third Way = Routl. Front. Polit. Ec. Clinton, Peacekeeping and Humanitarian Interventionism: Rise and Fall of A Policy = Cass Ser Peacekeepin Clinton, Peacekeeping and Humanitarian Interventionism: Rise and Fall of A Policy = Cass. Ser. Peacekeepin. Clinton's Foreign Policy: Between The Bushes, 1992-2000 = Contemp Secur Stud Clinton's Foreign Policy: Between The Bushes, 1992-2000 = Contemp. Secur. Stud. Clio-a Journal of Literature History and The Philosophy of History = Clio Clio-a Journal of Literature History and The Philosophy of History = Clio. Clio = Clio Clio Medica: acta Academiae internationalis historiae medicinae = CM Clio medica (Amsterdam, Netherlands) = Clio Med Clio Medica=Clio Med;; Clio Medica = Clio Med. Clio Medica = Clio Medica Clio Medica-the Wellcome Institute Series in The History of Medicine = Clio Medica Clio Medica-the Wellcome Institute Series in The History of Medicine = Clio Medica. Clio Medica-the Wellcome Series in The History of Medicine = Clio Med Clio Medica-the Wellcome Series in The History of Medicine = Clio Med. Cliometrica = Cliometrica Clio. Revista do Centro de história da Universidade Lisboa = Clio Clitics in Phonology, Morphology and Syntax = Ling Akt Clitics in Phonology, Morphology and Syntax = Ling. Akt. Clocking in Modern Vlsi Systems = Integr Circuit Syst Clocking in Modern Vlsi Systems = Integr. Circuit. Syst. Cloning and stem cells = Cloning Stem Cells Cloning and Stem Cells = Cloning Stem Cells Cloning = Cloning Closed-end Funds, Exchange-traded Funds, and Hedge Funds: Origins, Functions, and Literature = Innov Financ Market Closed-end Funds, Exchange-traded Funds, and Hedge Funds: Origins, Functions, and Literature = Innov. Financ. Market. Closed-loop Control of Blood Glucose = Lect Notes Contr Inf Closed-loop Control of Blood Glucose = Lect. Notes. Contr. Inf. Closed-loop Supply Chains: New Developments to Improve The Sustainability of Business Practices = Supply Chain Integr Closed-loop Supply Chains: New Developments to Improve The Sustainability of Business Practices = Supply Chain. Integr. Close-range Photogrammetry Meets Machine Vision, Pts 1 and 2 = P Soc Photo-opt Ins Close-range Photogrammetry Meets Machine Vision, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Closer: Performance, Technologies, Phenomenology = Leonardo Ser Closer: Performance, Technologies, Phenomenology = Leonardo. Ser. Clostridial Neurotoxins = Curr Top Microbiol Clostridial Neurotoxins = Curr. Top. Microbiol. Clostridium Difficile = Curr Top Microbiol Clostridium Difficile = Curr. Top. Microbiol. Clostridium Difficile: Methods and Protocols = Methods Mol Biol Clostridium Difficile: Methods and Protocols = Methods Mol. Biol. Closure: Emergent Organizations and Their Dynamics = Ann Ny Acad Sci Closure: Emergent Organizations and Their Dynamics = Ann. Ny. Acad. Sci. Clothed With Charity = Women Conf Ser Clothed With Charity = Women. Conf. Ser. Clothing and Textiles Research Journal = Cloth Text Res J Clothing and Textiles Research Journal = Cloth. Text. Res. J. Clothing Biosensory Engineering = Woodhead Text Ser Clothing Biosensory Engineering = Woodhead. Text. Ser. Clothing The Spanish Empire: Families and The Calico Trade in The Early Modern Atlantic World = Am Early Mod Atl Wor Clothing The Spanish Empire: Families and The Calico Trade in The Early Modern Atlantic World = Am. Early Mod. Atl. Wor. Cloud Computing: Principles, Systems and Applications = Comput Commun Netw S Cloud Computing: Principles, Systems and Applications = Comput. Commun. Netw. S. Cloud Computing, Proceedings = Lect Notes Comput Sc Cloud Computing, Proceedings = Lect. Notes. Comput. Sc. Cloud of Witnesses: The Cult of Saints in Past and Present = Liturg Condenda Cloud of Witnesses: The Cult of Saints in Past and Present = Liturg. Condenda. Cloud Optics = Atmos Ocean Sci Lib Cloud Optics = Atmos. Ocean. Sci. Lib. Clouds, Cores, and Low Mass Stars = Astr Soc P Clouds, Cores, and Low Mass Stars = Astr. Soc. P. Clozapine in Treatment-resistant Schizophrenia : A Scientific Update = Roy Soc Med Int Cong Clozapine in Treatment-resistant Schizophrenia : A Scientific Update = Roy. Soc. Med. Int. Cong. Club Cultures: Boundaries, Identities and Otherness = Routl Adv Sociol Club Cultures: Boundaries, Identities and Otherness = Routl. Adv. Sociol. Clumsy Solutions for A Complex World: Governance, Politics and Plural Perceptions = Glob Iss Ser Clumsy Solutions for A Complex World: Governance, Politics and Plural Perceptions = Glob. Iss. Ser. Cluster Active Archive: Studying The Earth's Space Plasma Environment = Astrophysics Space Cluster Active Archive: Studying The Earth's Space Plasma Environment = Astrophysics. Space Cluster Assembled Materials = Mater Sci Forum Cluster Assembled Materials = Mater. Sci. Forum. Cluster Computing-the Journal of Networks Software Tools and Applications = Cluster Comput Cluster Computing-the Journal of Networks Software Tools and Applications = Cluster Comput. Cluster-ii Workshop Multiscale/multipoint Plasma Measurements, Proceedings = Esa Spec Publ Cluster-ii Workshop Multiscale/multipoint Plasma Measurements, Proceedings = Esa. Spec. Publ. Cluster-ii Workshop Multiscale/multipoint Plasma Measurements, Proceedings = Esa Sp Publ Cluster-ii Workshop Multiscale/multipoint Plasma Measurements, Proceedings = Esa. Sp. Publ. Clustering At High Redshift = Astr Soc P Clustering At High Redshift = Astr. Soc. P. Clustering in The Universe = Moriond Ast Clustering in The Universe = Moriond. Ast. Cluster Models for Surface and Bulk Phenomena = Nato Adv Sci I B-phy Cluster Models for Surface and Bulk Phenomena = Nato. Adv. Sci. I. B-phy. Cluster Randomised Trials = Interd Stat Cluster Randomised Trials = Interd. Stat. Clusters and Cluster-assembled Materials = Mater Res Soc Symp P Clusters and Cluster-assembled Materials = Mater. Res. Soc. Symp. P. Clusters and Regional Development: Critical Reflections and Explorations = Reg Cities Clusters and Regional Development: Critical Reflections and Explorations = Reg. Cities. Clusters and Superclusters of Galaxies = Nato Adv Sci I C-mat Clusters and Superclusters of Galaxies = Nato. Adv. Sci. I. C-mat. Clusters in Nuclei, Vol 1 = Lect Notes Phys Clusters in Nuclei, Vol 1 = Lect. Notes. Phys. Clusters, Lensing, and The Future of The Universe = Astr Soc P Clusters, Lensing, and The Future of The Universe = Astr. Soc. P. Clusters of Galaxies = Moriond Ast Clusters of Galaxies = Moriond. Ast. Clusters of Galaxies: New Insights From Xmm-newton, Chandra and Integral = Adv Space Res Clusters of Galaxies: New Insights From Xmm-newton, Chandra and Integral = Adv. Space. Res. Clusters of Galaxies: New Insights From Xmm-newton, Chandra and Integral = Adv Space Res-series Clusters of Galaxies: New Insights From Xmm-newton, Chandra and Integral = Adv. Space. Res-series. CMAJ=CMAJ;; CMAJ = CMAJ Cmas: Computational Methods in Applied Sciences = Cmas Cmas: Computational Methods in Applied Sciences = Cmas. ## CMBI China,http://cmbi.bjmu.edu.cn/ Cmb Polarization Workshop: Theory and Foregrounds = Aip Conf Proc Cmb Polarization Workshop: Theory and Foregrounds = Aip. Conf. Proc. Cmc-computers Materials & Continua = Cmc-comput Mater Con Cmc-computers Materials & Continua = Cmc-comput. Mater. Con. CMD. Current medical dialog = Cmd Cme-chartered Mechanical Engineer = Cme-charter Mech Eng Cme-chartered Mechanical Engineer = Cme-charter. Mech. Eng. Cmes-computer Modeling in Engineering & Sciences = Cmes-comp Model Eng Cmes-computer Modeling in Engineering & Sciences = Cmes-comp. Model. Eng. Cmmc 96 - Proceedings of The First International Conference On Ceramic and Metal Matrix Composites, Pts 1 and 2 = Key Eng Mat Cmmc 96 - Proceedings of The First International Conference On Ceramic and Metal Matrix Composites, Pts 1 and 2 = Key. Eng. Mat. Cmmc 96 - Proceedings of The First International Conference On Ceramic and Metal Matrix Composites, Pts 1 and 2 = Key Eng Mater Cmmc 96 - Proceedings of The First International Conference On Ceramic and Metal Matrix Composites, Pts 1 and 2 = Key. Eng. Mater. Cmos Biotechnology = Integr Circuit Syst Cmos Biotechnology = Integr. Circuit. Syst. Cmos Capacitive Sensors for Lab-on-chip Applications: A Multidisciplinary Approach = Analog Circ Sig Proc Cmos Capacitive Sensors for Lab-on-chip Applications: A Multidisciplinary Approach = Analog. Circ. Sig. Proc. Cmos Current-mode Circuits for Data Communications = Analog Circ Sig Proc Cmos Current-mode Circuits for Data Communications = Analog. Circ. Sig. Proc. Cmos Multichannel Single-chip Receivers for Multi-gigabit Optical Data Communications = Analog Circ Sig Proc Cmos Multichannel Single-chip Receivers for Multi-gigabit Optical Data Communications = Analog. Circ. Sig. Proc. Cmos Processors and Memories = Analog Circ Sig Proc Cmos Processors and Memories = Analog. Circ. Sig. Proc. Cmos Single Chip Fast Frequency Hopping Synthesizers for Wireless Multi-gigahertz Applications = Analog Circ Sig Proc Cmos Single Chip Fast Frequency Hopping Synthesizers for Wireless Multi-gigahertz Applications = Analog. Circ. Sig. Proc. Cmos Sram Circuit Design and Parametric Test in Nano-scaled Technologies = Front Electron Test Cmos Sram Circuit Design and Parametric Test in Nano-scaled Technologies = Front. Electron. Test Cmr International Workshop Series = Cmr Int Works S Cmr International Workshop Series = Cmr Int. Works. S. Cms Books in Mathematics = Cms Books Math Cms Books in Mathematics = Cms Books Math. CMS Conference Proceedings = CMS Conf. Proc. Cms Workshop Lectures = Cms Work Lect Cms Workshop Lectures = Cms Work. Lect. Cmv-related Immunopathology = Mg Virology Cmv-related Immunopathology = Mg. Virology. C-myc in B-cell Neoplasia = Curr Top Microbiol C-myc in B-cell Neoplasia = Curr. Top. Microbiol. CNA bulletin = CNA Bull CNA Bulletin = CNA Bull. Cnn Effect in Action: How The News Media Pushed The West Toward War in Kosovo = Palgr Mac Ser Int Po Cnn Effect in Action: How The News Media Pushed The West Toward War in Kosovo = Palgr. Mac. Ser. Int. Po. Cno in The Universe = Astr Soc P Cno in The Universe = Astr. Soc. P. CNS and Neurological Disorders Drug Targets = CNS Neurol. Disord. Drug Targets Cns Drug Reviews = Cns Drug Rev Cns Drug Reviews = Cns Drug Rev. CNS drug reviews = CNS Drug Rev CNS Drug Reviews = CNS Drug Rev. Cns Drugs = Cns Drugs CNS drugs = CNS Drugs Cns & Neurological Disorders-drug Targets = Cns Neurol Disord-dr Cns & Neurological Disorders-drug Targets = Cns Neurol. Disord-dr. CNS & neurological disorders drug targets = CNS Neurol Disord Drug Targets CNS & Neurological Disorders: Drug Targets = CNS Neurol. Disord.: Drug Targets Cns Neuroscience & Therapeutics = Cns Neurosci Ther Cns Neuroscience & Therapeutics = Cns Neurosci. Ther. CNS Neuroscience & Therapeutics = CNS Neurosci. Ther. Cns Spectrums = Cns Spectr Cns Spectrums = Cns Spectr. CNS spectrums = CNS Spectr Cns Spectrums = Cns Spectrums Co2 Capture: Technologies to Reduce Greenhouse Gas Emissions = Inst Fran Petr Publ Co2 Capture: Technologies to Reduce Greenhouse Gas Emissions = Inst. Fran. Petr. Publ. Co2 Lasers and Applications 2 = P Soc Photo-opt Ins Co2 Lasers and Applications 2 = P. Soc. Photo-opt. Ins. Co2 Lasers and Applications = P Soc Photo-opt Ins Co2 Lasers and Applications = P. Soc. Photo-opt. Ins. Coagulation and Blood Transfusion = Dev Hematol Coagulation and Blood Transfusion = Dev. Hematol. Coal 2005: 6th Australasian Coal Operators' Conference = Australas I Min Met Coal 2005: 6th Australasian Coal Operators' Conference = Australas. I. Min. Met. Coal Age = Coal Age Coal and Coal-related Compounds: Structures, Reactivity and Catalytic Reactions = Stud Surf Sci Catal Coal and Coal-related Compounds: Structures, Reactivity and Catalytic Reactions = Stud. Surf. Sci. Catal. Coaled Natural Gas: Energy and Environment = Energ Sci Eng Tech Coaled Natural Gas: Energy and Environment = Energ. Sci. Eng. Tech. Coal Preparation = Coal Prep Coal Preparation = Coal Prep. Coal Preparation (Philadelphia, PA, United States) = Coal Prep. (Philadelphia, PA, U. S.) Coal Science and Technology = Coal Sci Technol Coal Science and Technology = Coal Sci. Technol. Coal Science Ii = Acs Sym Ser Coal Science Ii = Acs. Sym. Ser. Coal Science, Vols I and Ii = Coal Sci Technol Coal Science, Vols I and Ii = Coal Sci. Technol. Coal Systems Analysis = Geol Soc Am Spec Pap Coal Systems Analysis = Geol. Soc. Am. Spec. Pap. Coastal and Estuarine Environments: Sedimentology, Geomorphology and Geoarchaeology = Geol Soc Spec Publ Coastal and Estuarine Environments: Sedimentology, Geomorphology and Geoarchaeology = Geol. Soc. Spec. Publ. Coastal and Estuarine Fine Sediment Processes = Proceed Marine Sci Coastal and Estuarine Fine Sediment Processes = Proceed. Marine. Sci. Coastal and Estuarine Processes = Adv Ser Ocean Eng Coastal and Estuarine Processes = Adv. Ser. Ocean. Eng. Coastal and Estuarine Sciences = Coast Est S Coastal and Estuarine Sciences = Coast. Est. S. Coastal and Estuarine Sciences, Vol 58 = Coast Est S Coastal and Estuarine Sciences, Vol 58 = Coast. Est. S. Coastal and Estuarine Studies = Coastal Estuarine Stud. Coastal and Estuarine Studies = Coast Estuar Stud Coastal and Estuarine Studies = Coast. Estuar. Stud. Coastal and Marine Geospatial Technologies = Coast Syst Cont Marg Coastal and Marine Geospatial Technologies = Coast. Syst. Cont. Marg. Coastal and Shelf Sediment Transport = Geol Soc Spec Publ Coastal and Shelf Sediment Transport = Geol. Soc. Spec. Publ. Coastal Area Management Education in The Asean Region = Iclarm Conf Coastal Area Management Education in The Asean Region = Iclarm. Conf. Coastal Area Management in Southeast Asia : Policies, Management Strategies and Case Studies = Iclarm Cont Coastal Area Management in Southeast Asia : Policies, Management Strategies and Case Studies = Iclarm. Cont. Coastal Chalk Cliff Instability = Geol Soc Eng Geol Sp Coastal Chalk Cliff Instability = Geol. Soc. Eng. Geol. Sp. Coastal Engineering and Marina Developments = Environ St Coastal Engineering and Marina Developments = Environ. St. Coastal Engineering = Coastal Eng. Coastal Engineering = Coast Eng Coastal Engineering = Coast. Eng. Coastal Engineering Considerations in Coastal Zone Management = Coastl Worl Coastal Engineering Considerations in Coastal Zone Management = Coastl. Worl. Coastal Engineering Journal = Coast Eng J Coastal Engineering Journal = Coast. Eng. J. Coastal Engineering V = Environ St Coastal Engineering V = Environ. St. Coastal Engineering Vi = Environ St Coastal Engineering Vi = Environ. St. Coastal Engineering Vii = Wit Trans Built Env Coastal Engineering Vii = Wit. Trans. Built. Env. Coastal Environment = Environ St Coastal Environment = Environ. St. Coastal Environment V: Incorporating Oil Spill Studies = Environ St Coastal Environment V: Incorporating Oil Spill Studies = Environ. St. Coastal Erosion Responses for Alaska, Workshop Proceedings = Uasgcp Rep Coastal Erosion Responses for Alaska, Workshop Proceedings = Uasgcp. Rep. Coastal Land Loss = Volcan Haz Coastal Land Loss = Volcan. Haz. Coastal management : an international journal of marine environment, resources, law, and society = Coast Manage Coastal Management = Coast Manage Coastal Management = Coast. Manage. Coastal Ocean Remote Sensing = Proc Spie Coastal Ocean Remote Sensing = Proc. Spie. Coastal Ocean Remote Sensing = P Soc Photo-opt Ins Coastal Ocean Remote Sensing = P. Soc. Photo-opt. Ins. Coastal Processes = Wit Trans Ecol Envir Coastal Processes = Wit. Trans. Ecol. Envir. Coastal Research Library = Coast Res Libr Coastal Research Library = Coast. Res. Libr. Coastal Systems and Continental Margins = Coast Syst Cont Marg Coastal Systems and Continental Margins = Coast. Syst. Cont. Marg. Coastal Systems and Sustainable Development in Africa = Unesco R M Coastal Systems and Sustainable Development in Africa = Unesco. R. M. Coastal Systems, Second Edition = Routl Introd Environ Coastal Systems, Second Edition = Routl. Introd. Environ. Coastal Systems Studies and Sustainable Development = Unesco R M Coastal Systems Studies and Sustainable Development = Unesco. R. M. Coastal Watershed Management = Int Ser Prog Wat Res Coastal Watershed Management = Int. Ser. Prog. Wat. Res. Coastal Wetlands / = Coastl Worl Coastal Wetlands / = Coastl. Worl. Coastal Zone Management Journal = Coast Manage Coastal Zone Management Journal = Coast. Manage. Coastal Zone Management Journal = Coast Zone Manage J Coastal Zone Management Journal = Coast. Zone Manage. J. Coastal Zones and Environmental Issues: Methodological Reflections = Oceanis S D Coastal Zones and Environmental Issues: Methodological Reflections = Oceanis. S. D. Coastline Changes: Interrelation of Climate and Geological Processes = Geol S Am S Coastline Changes: Interrelation of Climate and Geological Processes = Geol. S. Am. S. Coastlines of Japan = Coastl Worl Coastlines of Japan = Coastl. Worl. Coastlines of The Black Sea = Coastl Worl Coastlines of The Black Sea = Coastl. Worl. Coastlines of The Caribbean = Coastl Worl Coastlines of The Caribbean = Coastl. Worl. Coastlines of The Gulf of Mexico = Coastl Worl Coastlines of The Gulf of Mexico = Coastl. Worl. Coastlines of The Mediterranean = Coastl Worl Coastlines of The Mediterranean = Coastl. Worl. Coastlines of The World = Coastl Worl Coastlines of The World = Coastl. Worl. Coasts Under Stress Ii = Z Geomorphol Supp Coasts Under Stress Ii = Z. Geomorphol. Supp. Coating/papermakers Conference, Books 1 and 2 = P Tech As P Coating/papermakers Conference, Books 1 and 2 = P. Tech. As. P. Coatings in Manufacturing Engineering = Key Eng Mat Coatings in Manufacturing Engineering = Key. Eng. Mat. Cobalt-base Alloys for Biomedical Applications = Am Soc Test Mater Cobalt-base Alloys for Biomedical Applications = Am. Soc. Test. Mater. Cocaine: Effects On The Developing Brain = Ann Ny Acad Sci Cocaine: Effects On The Developing Brain = Ann. Ny. Acad. Sci. Cocaine : Scientific and Social Dimensions = Ciba F Symp Cocaine : Scientific and Social Dimensions = Ciba. F. Symp. Coccidia and Intestinal Coccidiomorphs = Colloq Inra Coccidia and Intestinal Coccidiomorphs = Colloq. Inra. Coccidioidomycosis: Sixth International Symposium = Ann Ny Acad Sci Coccidioidomycosis: Sixth International Symposium = Ann. Ny. Acad. Sci. Cochlear Implant and Related Sciences Update = Adv Oto-rhino-laryng Cochlear Implant and Related Sciences Update = Adv. Oto-rhino-laryng. Cochlear Implants and Hearing Preservation = Adv Oto-rhino-laryng Cochlear Implants and Hearing Preservation = Adv. Oto-rhino-laryng. Cochlear Implants in Children = Adv Oto-rhino-laryng Cochlear Implants in Children = Adv. Oto-rhino-laryng. Cochlear Implants = Int Congr Ser Cochlear Implants = Int. Congr. Ser. Cochlear implants international = Cochlear Implants Int Cochlear Implants : New Perspectives = Adv Oto-rhino-laryng Cochlear Implants : New Perspectives = Adv. Oto-rhino-laryng. Cochlear Mechanisms and Otoacoustic Emissions = Adv Audiol Cochlear Mechanisms and Otoacoustic Emissions = Adv. Audiol. Cochrane Database of Systematic Reviews = Cochrane Db Syst Rev Cochrane Database of Systematic Reviews = Cochrane Db. Syst. Rev. Cochrane database of systematic reviews (Online) = Cochrane Database Syst Rev Cockatoos = Austral Nat Hist Ser Cockatoos = Austral. Nat. Hist. Ser. Cockpit and Future Displays for Defense and Security = P Soc Photo-opt Ins Cockpit and Future Displays for Defense and Security = P. Soc. Photo-opt. Ins. Cockpit Displays and Visual Simulation = P Soc Photo-opt Ins Cockpit Displays and Visual Simulation = P. Soc. Photo-opt. Ins. Cockpit Displays Iii = P Soc Photo-opt Ins Cockpit Displays Iii = P. Soc. Photo-opt. Ins. Cockpit Displays Ii = P Soc Photo-opt Ins Cockpit Displays Ii = P. Soc. Photo-opt. Ins. Cockpit Displays Iv: Flat Panel Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Displays Iv: Flat Panel Displays for Defense Applications = P. Soc. Photo-opt. Ins. Cockpit Displays Ix: Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Displays Ix: Displays for Defense Applications = P. Soc. Photo-opt. Ins. Cockpit Displays = P Soc Photo-opt Ins Cockpit Displays = P. Soc. Photo-opt. Ins. Cockpit Displays Vi: Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Displays Vi: Displays for Defense Applications = P. Soc. Photo-opt. Ins. Cockpit Displays Vii: Displays for Defense Applications = Proc Spie Cockpit Displays Vii: Displays for Defense Applications = Proc. Spie. Cockpit Displays Vii: Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Displays Vii: Displays for Defense Applications = P. Soc. Photo-opt. Ins. Cockpit Displays Viii: Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Displays Viii: Displays for Defense Applications = P. Soc. Photo-opt. Ins. Cockpit Displays X = Proc Spie Cockpit Displays X = Proc. Spie. Cockpit Displays X = P Soc Photo-opt Ins Cockpit Displays X = P. Soc. Photo-opt. Ins. Cockpit Display V: Displays for Defense Applications = P Soc Photo-opt Ins Cockpit Display V: Displays for Defense Applications = P. Soc. Photo-opt. Ins. Coconut Improvement in The South Pacific = Aciar Proc Coconut Improvement in The South Pacific = Aciar. Proc. Cod and Climate Change - Proceedings of A Symposium = Ices Mar Sc Cod and Climate Change - Proceedings of A Symposium = Ices. Mar. Sc. Code: Collaborative Ownership and The Digital Economy = Leonardo Series Code: Collaborative Ownership and The Digital Economy = Leonardo. Series. Code of Alabama, 1975 : with provision for subsequent pocket parts / prepared under the supervision of the Legislative Council ... by the editorial staff of the publishers ... Alabama = Code Ala 1975 Ala Code of Federal regulations. 45: Public welfare = Code Fed Regul Public Welfare Code of federal regulations. 46, Shipping = Code Fed Regul Shipping Code of Georgia annotated : including Code of 1981; including the Code of 1933, the Code of 1981 and all laws of general application subsequently enacted, with editorial notes and complete annotations of the decisions of the Supreme Cou... = Code Ga Annot Ga Code of laws of South Carolina, 1976, annotated : containing permanent public statutes of general application to the end of the 1975 Legislative session : prepared under the supervision of the Legislative Council and Code Commissioner a... = Code Laws S C 1976 Annot S C Code of Tsar Stefan Dusan = Serb Acd Sc Code of Tsar Stefan Dusan = Serb. Acd. Sc. Code of Virginia, 1950 : With provisions for subsequent pocket parts. Annotated / Prepared under the supervision of the Virginia Code Commission by the editorial staff of the publishers. Virginia = Code Va 1950 Va Codes and Designs = Ohio St U M Codes and Designs = Ohio. St. U. M. Codes and Turbo Codes = Iris Int Ser Codes and Turbo Codes = Iris. Int. Ser. Codes for Error Detection = Ser Coding Theory Cr Codes for Error Detection = Ser. Coding. Theory. Cr. Codesign-international Journal of Cocreation in Design and The Arts = Codesign Codesign-international Journal of Cocreation in Design and The Arts = Codesign. Codes of Good Governance Around The World = Bus Iss Compet Entre Codes of Good Governance Around The World = Bus. Iss. Compet. Entre. Codes Over Rings = Ser Coding Th Crypto Codes Over Rings = Ser. Coding. Th. Crypto. Codes, Systems, and Graphical Models = Ima V Math Codes, Systems, and Graphical Models = Ima. V. Math. Codes, Systems, and Graphical Models = Ima Vol Math Appl Codes, Systems, and Graphical Models = Ima. Vol. Math. Appl. Code-switching in Bilingual Children = Stud Theor Psycholin Code-switching in Bilingual Children = Stud. Theor. Psycholin. Codeswitching Worldwide Ii = Trend Lin S Codeswitching Worldwide Ii = Trend. Lin. S. Codices manuscripti: Zeitschrift für Handschriftenkunde = CodMan Codification of Environmental Law = Int Env Law Codification of Environmental Law = Int. Env. Law Coding and Cryptography = Lect Notes Comput Sc Coding and Cryptography = Lect. Notes. Comput. Sc. Coding and Cryptology, Proceedings = Lect Notes Comput Sc Coding and Cryptology, Proceedings = Lect. Notes. Comput. Sc. Coding and Cryptology = Ser Coding Th Crypto Coding and Cryptology = Ser. Coding Th. Crypto. Coding and Cryptology = Ser Coding Theory Cr Coding and Cryptology = Ser. Coding Theory. Cr. Coding and Signal Processing for Information Storage = P Soc Photo-opt Ins Coding and Signal Processing for Information Storage = P. Soc. Photo-opt. Ins. Coding Theory and Algebraic Geometry = Lect Notes Math Coding Theory and Algebraic Geometry = Lect. Notes. Math. Coding Theory and Applications, Proceedings = Lect Notes Comput Sc Coding Theory and Applications, Proceedings = Lect. Notes. Comput. Sc. Coding Theory and Design Theory, Pt 2 = Ima V Math Coding Theory and Design Theory, Pt 2 = Ima. V. Math. Coding Theory and Number Theory = Math Appl Coding Theory and Number Theory = Math. Appl. Coding Theory and Quantum Computing = Contemp Math Coding Theory and Quantum Computing = Contemp. Math. Coeliac Disease = Dev Gastro Coeliac Disease = Dev. Gastro. Coenoses = Coenoses Coerced Confessions: The Discourse of Bilingual Police Interrogations = Lang Power Soc Proce Coerced Confessions: The Discourse of Bilingual Police Interrogations = Lang. Power. Soc. Proce. Coercion and The State = Amintaphil Coercion and The State = Amintaphil. Coeur = Coeur-rev Card Med-c Coeur = Coeur-rev. Card. Med-c. Coeur et medecine interne = Coeur Med Interne Coeur et Medecine Interne = Coeur Med. Interne Coeur Et Medecine Interne = Coeur Med Interne Coeur Et Medecine Interne = Coeur Med. Interne Coeur; revue de cardiologie medico-chirurgicale = Coeur Coevolutionary Fuzzy Modeling = Lect Notes Comput Sc Coevolutionary Fuzzy Modeling = Lect. Notes. Comput. Sc. Co-evolution of Central Black Holes and Galaxies = Iau Symp P Series Co-evolution of Central Black Holes and Galaxies = Iau. Symp. P. Series. Coevolution of Human Potential and Converging Technologies = Ann Ny Acad Sci Coevolution of Human Potential and Converging Technologies = Ann. Ny. Acad. Sci. Coexistence = Co-existence Coexistence = Co-existence. Co-existence (Glasgow, Scotland) = Coexistence Co-existent Contradictions : Joseph Roth in Retrospect = St Aust Lit Co-existent Contradictions : Joseph Roth in Retrospect = St. Aust. Lit. Cogeneration Fuel Cell-sorption Air Conditioning Systems = Green Energy Technol Cogeneration Fuel Cell-sorption Air Conditioning Systems = Green. Energy. Technol. Cognition and Economics = Adv Austrian Econ Cognition and Economics = Adv. Austrian. Econ. Cognition and Emotion in The Brain = Int Congr Ser Cognition and Emotion in The Brain = Int. Congr. Ser. Cognition and Instruction = Cognition Instruct Cognition and Instruction = Cognition Instruct. Cognition and Instruction: Twenty-five Years of Progress = Carn S Cogn Cognition and Instruction: Twenty-five Years of Progress = Carn. S. Cogn. Cognition and Language A Series in Psycholinguistics = Cogn Lang A Ser Psyc Cognition and Language A Series in Psycholinguistics = Cogn. Lang. A Ser. Psyc. Cognition and Learning in Diverse Settings = Adv Learn Behav Disa Cognition and Learning in Diverse Settings = Adv. Learn. Behav. Disa. Cognition and Social Worlds = Keele Cog S Cognition and Social Worlds = Keele. Cog. S. Cognition = Cognition Cognition-driven Decision Support for Business Intelligence: Models, Techniques, Systems and Applications = Stud Comput Intell Cognition-driven Decision Support for Business Intelligence: Models, Techniques, Systems and Applications = Stud. Comput. Intell. Cognition, Emotion and Autonomic Responses: The Integrative Role of The Prefrontal Cortex and Limbic Structures = Prog Brain Res Cognition, Emotion and Autonomic Responses: The Integrative Role of The Prefrontal Cortex and Limbic Structures = Prog. Brain. Res. Cognition & emotion = Cogn Emot Cognition & Emotion = Cognition Emotion Cognitive, Affective and Behavioral Neuroscience = Cogn. Affect. Behav. Neurosci. Cognitive Affective & Behavioral Neuroscience = Cogn Affect Behav Ne Cognitive Affective & Behavioral Neuroscience = Cogn. Affect. Behav. Ne. Cognitive, affective & behavioral neuroscience = Cogn Affect Behav Neurosci Cognitive and Behavioral Neurology = Cogn Behav Neurol Cognitive and Behavioral Neurology = Cogn. Behav. Neurol. Cognitive and behavioral neurology : official journal of the Society for Behavioral and Cognitive Neurology = Cogn Behav Neurol Cognitive and behavioral practice = Cogn Behav Pract Cognitive and Behavioral Practice = Cogn Behav Pract Cognitive and Behavioral Practice = Cogn. Behav. Pract. Cognitive and Communicative Approaches to Linguistic Analysis = Stud Funct Struct Cognitive and Communicative Approaches to Linguistic Analysis = Stud. Funct. Struct. Cognitive and Linguistic Aspects of Geographic Space = Nato Adv Sci I D-beh Cognitive and Linguistic Aspects of Geographic Space = Nato. Adv. Sci. I. D-beh. Cognitive and Neuroscientific Aspects of Human Love: A Guide for Marriage and Couples Counseling = Psychol Emot Motiv A Cognitive and Neuroscientific Aspects of Human Love: A Guide for Marriage and Couples Counseling = Psychol. Emot. Motiv. A Cognitive and Social Perspectives for Literacy Research and Instruction = Nrc Year Cognitive and Social Perspectives for Literacy Research and Instruction = Nrc. Year. Cognitive Approaches to Entrepreneurship Research = Adv Stud Entrep Inno Cognitive Approaches to Entrepreneurship Research = Adv. Stud. Entrep. Inno. Cognitive Approaches to Lexical Semantics = Cog Lin Res Cognitive Approaches to Lexical Semantics = Cog. Lin. Res. Cognitive Approaches to Lexical Semantics = Cogn Linguist Res Cognitive Approaches to Lexical Semantics = Cogn. Linguist. Res. Cognitive Approaches to Pedagogical Grammar: A Volume in Honour of Rene Dirven = Appl Cogn Linguist Cognitive Approaches to Pedagogical Grammar: A Volume in Honour of Rene Dirven = Appl. Cogn. Linguist. Cognitive Approach to The Verb: Morphological and Constructional Perspectives = Cog Lin Res Cognitive Approach to The Verb: Morphological and Constructional Perspectives = Cog. Lin. Res. Cognitive Approach to The Verb: Morphological and Constructional Perspectives = Cogn Linguist Res Cognitive Approach to The Verb: Morphological and Constructional Perspectives = Cogn. Linguist. Res. Cognitive Aspects of Language = Ling Arb Cognitive Aspects of Language = Ling. Arb. Cognitive Assessment = Persp Indiv Cognitive Assessment = Persp. Indiv. Cognitive-behavioral and Neuropsychological Models of Obsessive-compulsive Disorder = Psychol Res Prog Cognitive-behavioral and Neuropsychological Models of Obsessive-compulsive Disorder = Psychol. Res. Prog. Cognitive behaviour therapy = Cogn Behav Ther Cognitive Behaviour Therapy = Cogn. Behav. Ther. Cognitive Biology: Evolutionary and Developmental Perspectives On Mind, Brain and Behavior = Vienna Ser Theor Bio Cognitive Biology: Evolutionary and Developmental Perspectives On Mind, Brain and Behavior = Vienna. Ser. Theor. Bio. Cognitive Brain Research = Cognitive Brain Res Cognitive Brain Research = Cognitive Brain Res. Cognitive Computation = Cogn Comput Cognitive Computation = Cogn. Comput. Cognitive Development = Cognitive Dev Cognitive Development = Cognitive Dev. Cognitive Dissonance: Progress On A Pivotal Theory in Social Psychology = Sci Con Ser Cognitive Dissonance: Progress On A Pivotal Theory in Social Psychology = Sci. Con. Ser. Cognitive Dysfunction in Children With Temporal Lobe Epilepsy = Prog Epileptic Disor Cognitive Dysfunction in Children With Temporal Lobe Epilepsy = Prog. Epileptic. Disor. Cognitive Ergonomics, Clinical Assessment and Computer-assisted Learning = Comp Psych Cognitive Ergonomics, Clinical Assessment and Computer-assisted Learning = Comp. Psych. Cognitive Foundations of Linguistic Usage Patterns: Empirical Studies = Appl Cogn Linguist Cognitive Foundations of Linguistic Usage Patterns: Empirical Studies = Appl. Cogn. Linguist. Cognitive Impairment: Causes, Diagnosis and Treatment = Neurol Lab Clin Res Cognitive Impairment: Causes, Diagnosis and Treatment = Neurol. Lab. Clin. Res. Cognitive Integration: Mind and Cognition Unbounded = New Dir Philos Cogn Cognitive Integration: Mind and Cognition Unbounded = New. Dir. Philos. Cogn. Cognitive Linguistic Approaches to Teaching Vocabulary and Phraseology = Appl Cogn Linguist Cognitive Linguistic Approaches to Teaching Vocabulary and Phraseology = Appl. Cogn. Linguist. Cognitive Linguistics: Basic Readings = Cogn Linguist Res Cognitive Linguistics: Basic Readings = Cogn. Linguist. Res. Cognitive Linguistics = Cogn Linguist Cognitive Linguistics = Cogn. Linguist. Cognitive Linguistics: Current Applications and Future Perspectives = Appl Cogn Linguist Cognitive Linguistics: Current Applications and Future Perspectives = Appl. Cogn. Linguist. Cognitive Linguistics Research = Cog Lin Res Cognitive Linguistics Research = Cog. Lin. Res. Cognitive Linguistics Research = Cogn Linguist Res Cognitive Linguistics Research = Cogn. Linguist. Res. Cognitive Linguistics, Second Language Acquisition, and Foreign Language Teaching = Stud Lang Acquis Cognitive Linguistics, Second Language Acquisition, and Foreign Language Teaching = Stud. Lang. Acquis. Cognitive Modeling and Verbal Semantics = Trends Linguist-stud Cognitive Modeling and Verbal Semantics = Trends. Linguist-stud. Cognitive Models in Language and Thought: Ideology, Metaphors and Meaning = Cog Lin Res Cognitive Models in Language and Thought: Ideology, Metaphors and Meaning = Cog. Lin. Res. Cognitive Models in Language and Thought: Ideology, Metaphors and Meaning = Cogn Linguist Res Cognitive Models in Language and Thought: Ideology, Metaphors and Meaning = Cogn. Linguist. Res. Cognitive Models of Speech Processing = Acl Mit Nat Cognitive Models of Speech Processing = Acl. Mit. Nat. Cognitive Neurodynamics = Cogn Neurodynamics Cognitive Neurodynamics = Cogn. Neurodynamics Cognitive neuropsychiatry = Cognit Neuropsychiatry Cognitive Neuropsychiatry Special Issue = Cogn Neuropsychiatry Cognitive Neuropsychiatry Special Issue = Cogn. Neuropsychiatry Cognitive Neuropsychology = Cognitive Neuropsych Cognitive Neuropsychology = Cognitive Neuropsych. Cognitive neuropsychology = Cogn Neuropsychol Cognitive Neuropsychology = Cogn Neuropsychol Cognitive Neuropsychology = Cogn. Neuropsychol. Cognitive Neuroscience = Cogn Neurosci Cognitive Neuroscience = Cogn. Neurosci. Cognitive Neuroscience = Cogn Neurosci-uk Cognitive Neuroscience = Cogn. Neurosci-uk. Cognitive Paths Into The Slavic Domain = Cogn Linguist Res Cognitive Paths Into The Slavic Domain = Cogn. Linguist. Res. Cognitive Perspectives On Educational Leadership = Crit Iss Educ Leader Cognitive Perspectives On Educational Leadership = Crit. Iss. Educ. Leader. Cognitive Perspectives On Language = Polish Stud Cognitive Perspectives On Language = Polish. Stud. Cognitive Perspectives On Peer Learning = Rutg Inv Symp Educ S Cognitive Perspectives On Peer Learning = Rutg. Inv. Symp. Educ. S. Cognitive Perspectives On Word Formation = Trends Linguist-stud Cognitive Perspectives On Word Formation = Trends. Linguist-stud. Cognitive Poetics: Goals, Gains and Gaps = Appl Cogn Linguist Cognitive Poetics: Goals, Gains and Gaps = Appl. Cogn. Linguist. Cognitive processing = Cogn Process Cognitive Processing = Cogn Process Cognitive Processing = Cogn. Process. Cognitive Psychology = Cognitive Psychol Cognitive Psychology = Cognitive Psychol. Cognitive psychology = Cognit Psychol Cognitive Psychology = Cognit. Psychol. Cognitive Psychology of Planning = Curr Iss Think Reaso Cognitive Psychology of Planning = Curr. Iss. Think. Reaso. Cognitive Psychology Perspectives = Psychol Res Prog Cognitive Psychology Perspectives = Psychol. Res. Prog. Cognitive Radar: The Knowledge-aided Fully Adaptive Approach = Artech Hse Radar Lib Cognitive Radar: The Knowledge-aided Fully Adaptive Approach = Artech. Hse. Radar. Lib. Cognitive Radio, Software Defined Radio, and Adaptive Wireless Systems = Signals Commun Techn Cognitive Radio, Software Defined Radio, and Adaptive Wireless Systems = Signals. Commun. Techn. Cognitive Radio: Terminology, Technology and Techniques = Media Commun Technol Cognitive Radio: Terminology, Technology and Techniques = Media. Commun. Technol. Cognitive Reasoning = Cogn Technol Cognitive Reasoning = Cogn. Technol. Cognitive Science = Cognitive Sci Cognitive Science = Cognitive Sci. Cognitive Science of Religion Series = Cognitive Sci Rel Cognitive Science of Religion Series = Cognitive Sci. Rel. Cognitive Science Series : Technical Monographs and Edit Collection = Cog Sci Ser Cognitive Science Series : Technical Monographs and Edit Collection = Cog. Sci. Ser. Cognitive Sociolinguistics: Language Variation, Cultural Models, Social Systems = Cogn Linguist Res Cognitive Sociolinguistics: Language Variation, Cultural Models, Social Systems = Cogn. Linguist. Res. Cognitive Studies in Literature and Performance = Cogn Stud Lit Perfor Cognitive Studies in Literature and Performance = Cogn. Stud. Lit. Perfor. Cognitive Systems = Cogn Syst Monogr Cognitive Systems = Cogn. Syst. Monogr. Cognitive Systems = Lect Notes Comput Sc Cognitive Systems = Lect. Notes. Comput. Sc. Cognitive Systems Monographs = Cogn Syst Monogr Cognitive Systems Monographs = Cogn. Syst. Monogr. Cognitive Systems Monographs = Cog Sys Mono Cognitive Systems Monographs = Cog. Sys. Mono. Cognitive Systems Research = Cogn Syst Res Cognitive Systems Research = Cogn. Syst. Res. Cognitive Task Analysis = Exp Res Appl Cognitive Task Analysis = Exp. Res. Appl. Cognitive Techniques in Visual Data Interpretation = Stud Comput Intell Cognitive Techniques in Visual Data Interpretation = Stud. Comput. Intell. Cognitive Technologies = Cogn Technol Cognitive Technologies = Cogn. Technol. Cognitive Technology: Instruments of Mind, Proceedings = Lect Notes Artif Int Cognitive Technology: Instruments of Mind, Proceedings = Lect. Notes. Artif. Int. Cognitive Therapy and Research = Cognitive Ther Res Cognitive Therapy and Research = Cognitive Ther. Res. Cognitive therapy and research = Cognit Ther Res Cognitive Vision = Lect Notes Comput Sc Cognitive Vision = Lect. Notes. Comput. Sc. Cognitive Vision Systems: Sampling The Spectrum of Approachers = Lect Notes Comput Sc Cognitive Vision Systems: Sampling The Spectrum of Approachers = Lect. Notes. Comput. Sc. Cohabitation, Family and Society = Routl Adv Sociol Cohabitation, Family and Society = Routl. Adv. Sociol. Coherence and Quantum Optics = Coher Quant Coherence and Quantum Optics = Coher. Quant. Coherence and Quantum Optics Vi = Coher Quant Coherence and Quantum Optics Vi = Coher. Quant. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Ix = Proc Spie Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Ix = Proc. Spie. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Ix = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Ix = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Viii = Proc Spie Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Viii = Proc. Spie. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Viii = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Viii = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Vii = Proc Spie Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Vii = Proc. Spie. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Vii = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Vii = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xii = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xii = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xi = Proc Spie Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xi = Proc. Spie. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xi = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine Xi = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine X = Proc Spie Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine X = Proc. Spie. Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine X = P Soc Photo-opt Ins Coherence Domain Optical Methods and Optical Coherence Tomography in Biomedicine X = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinica Applications V = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinica Applications V = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iii, Proceedings Of = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Ii, Proceedings Of = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iv = Proc Spie Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iv = Proc. Spie. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iv = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Iv = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications, Proceedings Of = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinical Applications, Proceedings Of = P. Soc. Photo-opt. Ins. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Vi = Proc Spie Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Vi = Proc. Spie. Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Vi = P Soc Photo-opt Ins Coherence Domain Optical Methods in Biomedical Science and Clinical Applications Vi = P. Soc. Photo-opt. Ins. Coherence in Spoken and Written Discourse = Prag Beyond New Ser Coherence in Spoken and Written Discourse = Prag. Beyond. New. Ser. Coherence in Spontaneous Text = Typol St L Coherence in Spontaneous Text = Typol. St. L. Coherence of Kants Transcendental Idealism = Stud Ger Idealism Coherence of Kants Transcendental Idealism = Stud. Ger. Idealism Coherence Phenomena in Atoms and Molecules in Laser Fields = Nato Adv Sci I B-phy Coherence Phenomena in Atoms and Molecules in Laser Fields = Nato. Adv. Sci. I. B-phy. Co-herencia = Co-herencia Coherent and Collective Interactions of Particles and Radiation Beams = P Int Sch Phys Coherent and Collective Interactions of Particles and Radiation Beams = P. Int. Sch. Phys. Coherent Atomic Matter Waves = Les Houch S Coherent Atomic Matter Waves = Les. Houch. S. Coherent Behavior in Neuronal Networks = Spr Ser Comput Neuro Coherent Behavior in Neuronal Networks = Spr. Ser. Comput. Neuro. Coherent Detection At Millimeter Wavelengths and Their Applications = Les Houches Coherent Detection At Millimeter Wavelengths and Their Applications = Les. Houches. Coherent Effects in Primary Visual Perception = Eye Vis Res Dev Coherent Effects in Primary Visual Perception = Eye. Vis. Res. Dev. Coherent Electron-beam X-ray Sources: Techniques and Applications = P Soc Photo-opt Ins Coherent Electron-beam X-ray Sources: Techniques and Applications = P. Soc. Photo-opt. Ins. Coherent Evolution in Noisy Environments = Lect Notes Phys Coherent Evolution in Noisy Environments = Lect. Notes. Phys. Coherent Light Microscopy: Imaging and Quantitative Phase Analysis = Springer Ser Surf Sc Coherent Light Microscopy: Imaging and Quantitative Phase Analysis = Springer. Ser. Surf. Sc. Coherent Lightwave Communications, Fifth in A Series = P Soc Photo-opt Ins Coherent Lightwave Communications, Fifth in A Series = P. Soc. Photo-opt. Ins. Coherent Lightwave Communications = P Soc Photo-opt Ins Coherent Lightwave Communications = P. Soc. Photo-opt. Ins. Coherent Optical Communication: Components, Subsystems, and Systems = Proc Spie Coherent Optical Communication: Components, Subsystems, and Systems = Proc. Spie. Coherent Optical Interactions in Semiconductors = Nato Adv Sci I B-phy Coherent Optical Interactions in Semiconductors = Nato. Adv. Sci. I. B-phy. Coherent Optical Interactions in Semiconductors = Nato Adv Sci Inst Se Coherent Optical Interactions in Semiconductors = Nato. Adv. Sci. Inst. Se. Coherent Phenomena and Amplification Without Inversion - Icono '95 = P Soc Photo-opt Ins Coherent Phenomena and Amplification Without Inversion - Icono '95 = P. Soc. Photo-opt. Ins. Coherent Radiation Generation and Particle Acceleration = Res Tr Phys Coherent Radiation Generation and Particle Acceleration = Res. Tr. Phys. Coherent Vibrational Dynamics = Pract Spectrosc Coherent Vibrational Dynamics = Pract. Spectrosc. Cohomological and Geometric Approaches to Rationality Problems: New Perspectives = Prog Math Cohomological and Geometric Approaches to Rationality Problems: New Perspectives = Prog. Math. Cohomological Theory of Crystals Over Function Fields = Ems Tracts Math Cohomological Theory of Crystals Over Function Fields = Ems. Tracts. Math. Cohomology of Arithmetic Groups and Automorphic Forms = Lect Notes Math Cohomology of Arithmetic Groups and Automorphic Forms = Lect. Notes. Math. Coimbra medica = Coimbra Med Coinage of El Peru = Coin Amer P Coinage of El Peru = Coin. Amer. P. Coincidence Studies of Electron and Photon Impact Ionization = Phys Atoms Coincidence Studies of Electron and Photon Impact Ionization = Phys. Atoms. Coin Hoards. The Royal Numismatic Society, London = CoinHoards Coin world = Coin World Coke and Chemistry = Coke Chem. Coke & Chemistry Ussr = Coke Chem Ussr Coke & Chemistry Ussr = Coke Chem. Ussr Cola'05: 8th International Conference On Laser Ablation = J Phys Conf Ser Cola'05: 8th International Conference On Laser Ablation = J. Phys. Conf. Ser. Colby Library Quarterly = Colby Libr Quart Colby Library Quarterly = Colby Libr. Quart. Colby Quarterly = ColbyQ Colby Quarterly = Colby Quart Colby Quarterly = Colby Quart. Cold Antimatter Plasmas and Application to Fundamental Physics = Aip Conf Proc Cold Antimatter Plasmas and Application to Fundamental Physics = Aip. Conf. Proc. Cold Aqueous Planetary Geochemistry With Frezchem = Adv Astrobiol Biogeo Cold Aqueous Planetary Geochemistry With Frezchem = Adv. Astrobiol. Biogeo. Cold Gas At High Redshift = Astrophys Space Sc L Cold Gas At High Redshift = Astrophys. Space. Sc. L. Cold Regions Science and Technology = Cold Reg Sci Technol Cold Regions Science and Technology = Cold Reg. Sci. Technol. Cold Spray Materials Deposition Process: Fundamentals and Applications = Woodhead Publ Mater Cold Spray Materials Deposition Process: Fundamentals and Applications = Woodhead. Publ. Mater. Cold Spring Harbor Monograph Series = Cold Spring Harb Mon Cold Spring Harbor Monograph Series = Cold Spring Harb. Mon. Cold Spring Harbor Monograph Series = Cold Spring Harbor M Cold Spring Harbor Monograph Series = Cold Spring Harbor M. Cold Spring Harbor Perspectives in Biology = Csh Perspect Biol Cold Spring Harbor Perspectives in Biology = Csh. Perspect. Biol. Cold Spring Harbor Symposia On Quantitative Biology = Cold Sh Q B Cold Spring Harbor Symposia On Quantitative Biology = Cold Sh. Q. B. Cold Spring Harbor Symposia on Quantitative Biology = Cold Spring Harbor Symp. Quant. Biol. Cold Spring Harbor Symposia On Quantitative Biology = Cold Spring Harb Sym Cold Spring Harbor Symposia On Quantitative Biology = Cold Spring Harb. Sym. Cold Spring Harbor symposia on quantitative biology = Cold Spring Harb Symp Quant Biol Cold Spring Harbor Symposia on Quantitative Biology=Cold Spring Harb Symp Quant Biol;; Cold Spring Harbor Symposia on Quantitative Biology = Cold Spring Harb. Symp. Quant. Biol. Cold Spring Harbor Symposia On Quantitative Biology Series = Cold Sh Q B Cold Spring Harbor Symposia On Quantitative Biology Series = Cold Sh. Q. B. Cold Universe = Moriond Ast Cold Universe = Moriond. Ast. Cold War Frontiers in The Asia-pacific = Nissan I Routl Jpn S Cold War Frontiers in The Asia-pacific = Nissan. I. Routl. Jpn. S. Cold War History = Cold War Hist Cold War History = Cold War Hist. Cold War History Series = Cold War Hist-routl Cold War History Series = Cold War Hist-routl. Cold War History Series-palgrave = Cold War Hist-palgr Cold War History Series-palgrave = Cold War Hist-palgr. Cold War in Southern Africa = Cold War Hist-routl Cold War in Southern Africa = Cold War Hist-routl. Cold War in The Middle East = Cold War Hist-routl Cold War in The Middle East = Cold War Hist-routl. Cold War Kitchen: Americanization, Technology, and European Users = Inside Technol Cold War Kitchen: Americanization, Technology, and European Users = Inside. Technol. Cold War Reassessments = Keck Ctr Int St Stud Cold War Reassessments = Keck. Ctr. Int. St. Stud. Cold War Respite = Eisen Ctr Stud Cold War Respite = Eisen. Ctr. Stud. Cold-water Corals and Ecosystems = Erlangen Earth Conf Cold-water Corals and Ecosystems = Erlangen. Earth. Conf. Cold-water Corals and Ecosystems = Erlangen Earth C Ser Cold-water Corals and Ecosystems = Erlangen. Earth. C. Ser. Coleção CLE = Coleç. CLE Colección: Congresos = Colecc. Congr. Colección Enrique Pérez Arbeláez = Colec. Enrique Pérez Arbeláez Coleccion estudios CIEPLAN = Colecc Estud CIEPLAN Colección Estudios CIEPLAN=Colección Estud. CIEPLAN Coleccion historica de ciencias de la salud = Colecc Hist Cienc Salud Colección Julio Carrizosa Valenzuela = Colecc. Julio Carrizosa Valenzuela Colección Memorias = Colec. Mem. Coleccion Tamesis - Serie A : Monografias = Col Tam Am Coleccion Tamesis - Serie A : Monografias = Col. Tam. Am. Colecţia Universitaria = Colecţ. Univ. Coleopterists Bulletin = Coleopts Bull Coleopterists Bulletin = Coleopts. Bull. Coleridge, The Bible, and Religion = Ninet-century Major Coleridge, The Bible, and Religion = Ninet-century. Major. Colistin - New Insights and Practical Issues = Roy Soc Med Int Cong Colistin - New Insights and Practical Issues = Roy. Soc. Med. Int. Cong. Colitis: Diagnosis and Therapeutic Strategies = Falk Symp Colitis: Diagnosis and Therapeutic Strategies = Falk. Symp. Collaboration and Knowledge Economy: Issues, Applications, Case Studies, Pt 1 = Inform Comm Tech Kno Collaboration and Knowledge Economy: Issues, Applications, Case Studies, Pt 1 = Inform. Comm. Tech. Kno. Collaboration and Technology = Lect Notes Comput Sc Collaboration and Technology = Lect. Notes. Comput. Sc. Collaborative and Distributed Chemical Engineering: From Understanding to Substantial Design Process Support = Lect Notes Comput Sc Collaborative and Distributed Chemical Engineering: From Understanding to Substantial Design Process Support = Lect. Notes. Comput. Sc. Collaborative and Individual Learning in Teaching = Educ Compet Glob Wor Collaborative and Individual Learning in Teaching = Educ. Compet. Glob. Wor. Collaborative Business Ecosystems and Virtual Enterprises = Int Fed Info Proc Collaborative Business Ecosystems and Virtual Enterprises = Int. Fed. Info. Proc. Collaborative Decision Making: Perspectives and Challenges = Fr Art Int Collaborative Decision Making: Perspectives and Challenges = Fr. Art. Int. Collaborative Design in Virtual Environments = Intel Syst Contr Aut Collaborative Design in Virtual Environments = Intel. Syst. Contr. Aut. Collaborative Learning, Reasoning, and Technology = Rutg Inv Symp Educ S Collaborative Learning, Reasoning, and Technology = Rutg. Inv. Symp. Educ. S. Collaborative Networks and Their Breeding Environments = Int Fed Info Proc Collaborative Networks and Their Breeding Environments = Int. Fed. Info. Proc. Collaborative Networks for A Sustainable World = Ifip Adv Inf Comm Te Collaborative Networks for A Sustainable World = Ifip. Adv. Inf. Comm. Te. Collaborative Patient Centred Ehealth = St Heal T Collaborative Patient Centred Ehealth = St. Heal. T. Collaborative Planning in Supply Chains = Lect Notes Econ Math Collaborative Planning in Supply Chains = Lect. Notes. Econ. Math. Collaborative Play in Early Childhood Education = Child Iss Laws Progr Collaborative Play in Early Childhood Education = Child. Iss. Laws. Progr. Collaborative Product Design and Manufacturing Methodologies and Applications = Springer Ser Adv Man Collaborative Product Design and Manufacturing Methodologies and Applications = Springer. Ser. Adv. Man. Collaborative Systems for Production Management = Int Fed Info Proc Collaborative Systems for Production Management = Int. Fed. Info. Proc. Collaborative Value Creation: An Empirical Analysis of The European Biotechnology Industry = Contrib Manag Sci Collaborative Value Creation: An Empirical Analysis of The European Biotechnology Industry = Contrib. Manag. Sci. Collagen and Related Research = Collagen Rel Res Collagen and Related Research = Collagen Rel. Res. Collagen and related research = Coll Relat Res Collagen and Related Research = Coll. Relat. Res. Collagen = Top Curr Chem Collagen = Top. Curr. Chem. Collana Di Automatica = Collana Automatica Collana di monografie. Archivio "E. Maragliano" di patologia e clinica = Arch Maragliano Patolog Clin Collana Monogr Collana di Studi = Coll. Studi Collana monografica. Gazzetta medica siciliana = Collana Monogr Gazz Med Sicil Collapse of Communist Power in Poland = Basees-rout Ser Russ Collapse of Communist Power in Poland = Basees-rout. Ser. Russ. Collectanea Mathematica = Collect Math Collectanea Mathematica = Collect. Math. Collect Dont Actes = Coll Dont Act Collect Dont Actes = Coll. Dont Act. Collected Courses of The Academy of European Law = Cc Acad Eur Law Collected Courses of The Academy of European Law = Cc. Acad. Eur. Law Collected Lectures On The Preservation of Stability Under Discretization = Siam Proc S Collected Lectures On The Preservation of Stability Under Discretization = Siam. Proc. S. Collected Papers of Habitat and The High-rise - Tradition and Innovation = Ctbuh Counc Rep Collected Papers of Habitat and The High-rise - Tradition and Innovation = Ctbuh. Counc. Rep. Collected Studies Series = Collect. Studies Ser. Collected Works = Collect. Works Collected Works of Aron Gurwitsch (1901-1973), Vol 1 = Phaenomenologica Collected Works of Aron Gurwitsch (1901-1973), Vol 1 = Phaenomenologica. Collected Works of Aron Gurwitsch (1901-1973), Vol Iii = Phaenomenologica Collected Works of Aron Gurwitsch (1901-1973), Vol Iii = Phaenomenologica. Collected Works of Aron Gurwitsch (1901-1973), Vol Ii = Phaenomenologica Collected Works of Aron Gurwitsch (1901-1973), Vol Ii = Phaenomenologica. Collected works on cardio-pulmonary disease = Coll Works Cardiopulm Dis Collected Works on Cardiopulmonary Disease = Coll. Works Cardiopulm. Dis. Collected Writings of The Orpheus Institute = Collect Writ Orpheus Collected Writings of The Orpheus Institute = Collect. Writ. Orpheus Collection Afrique Et Langage = Collect Afr Et Lang Collection Afrique Et Langage = Collect. Afr. Et Lang. Collection Aléa-Saclay: Monographs and Texts in Statistical Physics = Collect. Aléa-Saclay Monogr. Texts Statist. Phys. Collection Bleuse = Coll Bleuse Collection Bleuse = Coll. Bleuse Collection Camphi = Collect Amphi 7 Collection Camphi = Collect. Amphi. 7. Collection Colloques Et Seminaires - Institut Francais Du Petrole = Coll Col Se Collection Colloques Et Seminaires - Institut Francais Du Petrole = Coll. Col. Se. Collection Cribles: Essays On Literature = Coll Cribles Collection Cribles: Essays On Literature = Coll. Cribles. Collection Debora = Coll Debora Collection Debora = Coll. Debora Collection De L Academie Europeenne De Medecine De Readaptation = Collect Acad Eur Med Collection De L Academie Europeenne De Medecine De Readaptation = Collect. Acad. Eur. Med. Collection De La Revue Des Etudes Juives = Collect Revue Etudes Collection De La Revue Des Etudes Juives = Collect. Revue Etudes Collection De L Association Francaise Pour La Recherche Therapeutique = Col As Fr R Collection De L Association Francaise Pour La Recherche Therapeutique = Col. As. Fr. R. Collection de l'École française de Rome = CEFR Collection De Medicine Legale Et De Toxicologie Medical = Col Med Le Collection De Medicine Legale Et De Toxicologie Medical = Col. Med. Le. Collection des Universités de France = Collect. Univ. France Collection de Travaux de l'Académie Internationale d'Histoire des Sciences = Collect. Trav. Acad. Int. Hist. Sci. Collection Detudes Classiques = Collect Det Class Collection Detudes Classiques = Collect. Det. Class. Collection Development : Survival Tactics in An Age of Less = Lacuny Oc P Collection Development : Survival Tactics in An Age of Less = Lacuny. Oc. P. Collection Environment Et Geologie = C Env Geol Collection Environment Et Geologie = C. Env. Geol. Collection Environnement De L'universite De Montreal = Coll Envir U Montr Collection Environnement De L'universite De Montreal = Coll. Envir. U. Montr. Collection études = Collect. études Collection Geco = Collect Geco Collection Geco = Collect. Geco Collection Grands Debats = Coll Gr Deb Collection Grands Debats = Coll. Gr. Deb. Collection Hesperides = Coll Hesper Collection Hesperides = Coll. Hesper. Collection Histoire de la Pensée = Collect. Hist. Pensée Collection Hommes Et Societes = Coll Homm Soc Collection Hommes Et Societes = Coll. Homm. Soc. Collection Informatique = Collect. Inform. Collection, Laboratory, Theater: Scenes of Knowledge in The 17th Century = Theatr Sci-engl Ed Collection, Laboratory, Theater: Scenes of Knowledge in The 17th Century = Theatr. Sci-engl. Ed. Collection META = Collect. META Collection Méthodes = Collect. Méthodes Collection of Czechoslovak Chemical Communications = Collect Czech Chem C Collection of Czechoslovak Chemical Communications = Collect. Czech. Chem. C. Collection of Czechoslovak Chemical Communications = Collect. Czech. Chem. Commun. Collection Regards sur la Science = Collect. Regards Sci. Collection Science and Technique of Democracy = Co Sci Tech Democ Collection Science and Technique of Democracy = Co. Sci. Tech. Democ. Collection Sciences dans l'Histoire = Collect. Sci. Hist. Collections of the Nova Scotia Historical Society = Collect N S Hist Soc Collection Statistique Et Probabilites Appliquees = Collect Stat Prob Ap Collection Statistique Et Probabilites Appliquees = Collect. Stat. Prob. Ap. Collections : the newsletter of the Archives and Special Collections on Women in Medicine, the Medical College of Pennsylvania = Collections Collection Symposium Series = Coll Sympos Series Collection Symposium Series = Coll. Sympos. Series Collection Turcica = Collect Tur Collection Turcica = Collect. Tur. Collection Unichamp = Coll Unichamp Collection Unichamp = Coll. Unichamp Collective Action in The Formation of Pre-modern States = Fund Issue Archaeol Collective Action in The Formation of Pre-modern States = Fund. Issue. Archaeol. Collective Bargaining in Higher Education: Leadership in Uncertain Times = P A Con Nat Collective Bargaining in Higher Education: Leadership in Uncertain Times = P. A. Con. Nat. Collective Bargaining in Higher Education: The 1990s = P A Con Nat Collective Bargaining in Higher Education: The 1990s = P. A. Con. Nat. Collective Beings = Contemp Syst Think Collective Beings = Contemp. Syst. Think. Collective Creativity: Collaborative Work in The Sciences, Literature and The Arts = Int Forsch Allg Vgl Collective Creativity: Collaborative Work in The Sciences, Literature and The Arts = Int. Forsch. Allg. Vgl. Collective Decision Making: Views From Social Choice and Game Theory = Theory Decis Ser C G Collective Decision Making: Views From Social Choice and Game Theory = Theory Decis. Ser. C. G. Collective Dynamics: Topics On Competition and Cooperation in The Biosciences = Aip Conf Proc Collective Dynamics: Topics On Competition and Cooperation in The Biosciences = Aip. Conf. Proc. Collective Improvisation in A Teacher Education Community = Self Study Teach Tea Collective Improvisation in A Teacher Education Community = Self. Study. Teach. Tea. Collective Phenomena in Synchrotron Radiation Sources: Prediction, Diagnostics, Countermeasures = Part Accel Detect Collective Phenomena in Synchrotron Radiation Sources: Prediction, Diagnostics, Countermeasures = Part. Accel. Detect. College and University = Coll Univ College and University = Coll. Univ. College Choices: The Economics of Where to Go, When to Go, and How to Pay for It = Nber Conf R College Choices: The Economics of Where to Go, When to Go, and How to Pay for It = Nber. Conf. R. College Composition and Communication = Coll Compos Commun College Composition and Communication = Coll. Compos. Commun. College English = Coll Engl College English = Coll. Engl. College Literature = Coll Literature College Literature = Coll. Literature College Mathematics Journal = Coll Math J College Mathematics Journal = Coll. Math. J. College Music Symposium = Coll Music Sym College Music Symposium = Coll. Music Sym. College & Research Libraries = Coll Res Libr College & Research Libraries = Coll. Res. Libr. College Review = Coll. Rev. College review (Denver, Colo.) = Coll Rev College Student-athletes: Challenges, Opportunities, and Policy Implications = Dcarc Ser Educ Polic College Student-athletes: Challenges, Opportunities, and Policy Implications = Dcarc. Ser. Educ. Polic. College student journal = Coll Stud J College Teaching and The Development of Reasoning = Sci Eng Educ Sources College Teaching and The Development of Reasoning = Sci. Eng. Educ. Sources. Collegian = Collegian Collegian (Royal College of Nursing, Australia) = Collegian Collegium antropologicum = Coll Antropol Collegium Antropologicum=Coll Antropol;; Collegium Antropologicum = Coll. Antropol. Collegium Antropologicum = Collegium Antropol Collegium Antropologicum = Collegium Antropol. Collegium Logicum = Coll. Logicum Ann. Kurt-Gödel-Soc. Colli Albani Volcano = Spec Publ Iavcei Colli Albani Volcano = Spec. Publ. Iavcei. Colliders and Collider Physics At The Highest Energies = Aip Conf Proc Colliders and Collider Physics At The Highest Energies = Aip. Conf. Proc. Collisional Delamination in New Guinea: The Geotectonics of Subducting Slab Breakoff = Geol Soc Am Spec Pap Collisional Delamination in New Guinea: The Geotectonics of Subducting Slab Breakoff = Geol. Soc. Am. Spec. Pap. Collision and Collapse At The Africa-arabia-eurasia Subduction Zone = Geol Soc Spec Publ Collision and Collapse At The Africa-arabia-eurasia Subduction Zone = Geol. Soc. Spec. Publ. Collision- and Interaction-induced Spectroscopy = Nato Adv Sci Inst Se Collision- and Interaction-induced Spectroscopy = Nato. Adv. Sci. Inst. Se. Collision Avoidance and Automated Traffic Management Sensors = P Soc Photo-opt Ins Collision Avoidance and Automated Traffic Management Sensors = P. Soc. Photo-opt. Ins. Colloidal Ceramic Processing of Nano-, Micro, and Macro- Particulate Systems = Ceram Trans Colloidal Ceramic Processing of Nano-, Micro, and Macro- Particulate Systems = Ceram. Trans. Colloidal Gold Post-embedding Immunocytochemistry = Prog Histochem Cytoc Colloidal Gold Post-embedding Immunocytochemistry = Prog. Histochem. Cytoc. Colloidal Magnetic Fluids: Basics, Development and Application of Ferrofluids = Lect Notes Phys Colloidal Magnetic Fluids: Basics, Development and Application of Ferrofluids = Lect. Notes. Phys. Colloidal Quantum Dots for Biomedical Applications Iii = P Soc Photo-opt Ins Colloidal Quantum Dots for Biomedical Applications Iii = P. Soc. Photo-opt. Ins. Colloidal Quantum Dots for Biomedical Applications Ii = P Soc Photo-opt Ins Colloidal Quantum Dots for Biomedical Applications Ii = P. Soc. Photo-opt. Ins. Colloidal Quantum Dots for Biomedical Applications Iv = Proc Spie Colloidal Quantum Dots for Biomedical Applications Iv = Proc. Spie. Colloidal Quantum Dots for Biomedical Applications Iv = P Soc Photo-opt Ins Colloidal Quantum Dots for Biomedical Applications Iv = P. Soc. Photo-opt. Ins. Colloidal Quantum Dots for Biomedical Applications = Proc Spie Colloidal Quantum Dots for Biomedical Applications = Proc. Spie. Colloidal Quantum Dots for Biomedical Applications = P Soc Photo-opt Ins Colloidal Quantum Dots for Biomedical Applications = P. Soc. Photo-opt. Ins. Colloidal Quantum Dots for Biomedical Applications V = Proc Spie Colloidal Quantum Dots for Biomedical Applications V = Proc. Spie. Colloidal Quantum Dots for Biomedical Applications V = P Soc Photo-opt Ins Colloidal Quantum Dots for Biomedical Applications V = P. Soc. Photo-opt. Ins. Colloid and Polymer Science = Colloid Polym Sci Colloid and Polymer Science = Colloid Polym. Sci. Colloid and Polymer Science = Colloid. Polym. Sci. Colloid Chemistry 1 = Top Curr Chem Colloid Chemistry 1 = Top. Curr. Chem. Colloid Chemistry Ii = Top Curr Chem Colloid Chemistry Ii = Top. Curr. Chem. Colloid Chemistry of Silica = Adv Chem Ser Colloid Chemistry of Silica = Adv. Chem. Ser. Colloid Journal = Colloid J. Colloid Journal = Colloid J+ Colloid Journal = Colloid J+.+ Colloid Journal of The Russian Academy of Sciences = Colloid J Russ Acad+ Colloid Journal of The Russian Academy of Sciences = Colloid J. Russ. Acad+.+ Colloid Journal of The Ussr = Colloid J Russ Acad+ Colloid Journal of The Ussr = Colloid J. Russ. Acad+.+ Colloid Journal of The Ussr = Colloid J Ussr+ Colloid Journal of The Ussr = Colloid J. Ussr+.+ Colloid Journal-ussr = Colloid J-ussr Colloid Journal-ussr = Colloid J-ussr. Colloid-polymer Interactions = Acs Sym Ser Colloid-polymer Interactions = Acs. Sym. Ser. Colloids and Surfaces A: Physicochemical and Engineering Aspects = Colloids Surf., A Colloids and Surfaces, A: Physicochemical and Engineering Aspects = Colloids Surf., A Colloids and Surfaces A-physicochemical and Engineering Aspects = Colloid Surface A Colloids and Surfaces A-physicochemical and Engineering Aspects = Colloid. Surface. A. Colloids and Surfaces B: Biointerfaces = Colloids Surf., B Colloids and Surfaces, B: Biointerfaces = Colloids Surf., B Colloids and surfaces. B, Biointerfaces = Colloids Surf B Biointerfaces Colloids and Surfaces B-biointerfaces = Colloid Surface B Colloids and Surfaces B-biointerfaces = Colloid. Surface. B. Colloids and Surfaces = Colloids Surf. Colloids and Surfaces = Colloid Surface Colloids and Surfaces = Colloid. Surface. Colloid Science of Lipids = Prog Coll Pol Sci S Colloid Science of Lipids = Prog. Coll. Pol. Sci. S. Colloids for Nano- and Biotechnology = Prog Coll Pol Sci S Colloids for Nano- and Biotechnology = Prog. Coll. Pol. Sci. S. Colloids in Drug Delivery = Surfactant Sci Ser Colloids in Drug Delivery = Surfactant. Sci. Ser. Colloque Inserm = Colloq Inse Colloque Inserm = Colloq. Inse. Colloque INSERM = Colloq. INSERM Colloques, Congres Et Conferences Fur La Renaissance = Ccc Renaiss Colloques, Congres Et Conferences Fur La Renaissance = Ccc. Renaiss. Colloques De L Inra = Colloq Inra Colloques De L Inra = Colloq. Inra Colloques Du C.t.h.s = Colloq Cths Colloques Du C.t.h.s = Colloq. Cths. Colloques Et Seminaires = Colloq Semi Colloques Et Seminaires = Colloq. Semi. Colloques internationaux. Centre national de la recherche scientifique (France) = Colloq Int CNRS Colloques nationaux. Centre national de la recherche scientifique (France) = Colloq Natx Cent Natl Rech Sci Colloques Phytosociologiques = Colloq Phytosiol Colloques Phytosociologiques = Colloq. Phytosiol. Colloquia Germanica = Colloq Germanica Colloquia Germanica = Colloq. Germanica Colloquia Mathematica Societatis Janos Bolyai = Colloq Math Colloquia Mathematica Societatis Janos Bolyai = Colloq. Math. Colloquia Mathematica Societatis János Bolyai = Colloq. Math. Soc. János Bolyai Colloquia Mathematica Societatis Janos Bolyai = Colloq Math Soc J B Colloquia Mathematica Societatis Janos Bolyai = Colloq. Math. Soc. J. B. Colloquia Pontifica = Colloq Pontica Colloquia Pontifica = Colloq. Pontica. Colloqui del Sodalizio = ColloquiSod Colloquium Mathematicum = Colloq. Math. Colloquium Mathematicum = Colloq Math Colloquium Mathematicum = Colloq. Math. Colloquium Mathematicum = Colloq Math-warsaw Colloquium Mathematicum = Colloq. Math-warsaw. Colog-88 = Lect Notes Comput Sc Colog-88 = Lect. Notes. Comput. Sc. Colombia medica (Cali, Colombia) = Colomb Med Colombia medica = Colomb Med Colombia Medica = Colomb Medica Colombia Medica = Colomb. Medica Colon Cancer Prevention = Adv Exp Med Biol Colon Cancer Prevention = Adv. Exp. Med. Biol. Colonial Cambodia's Bad Frenchmen: The Rise of French Rule and The Life of Thomas Caraman, 1840-87 = Routl Stud Mod Hist Colonial Cambodia's Bad Frenchmen: The Rise of French Rule and The Life of Thomas Caraman, 1840-87 = Routl. Stud. Mod. Hist. Colonialism, Modernity, and Literature: A View From India = Future Minor Stud Colonialism, Modernity, and Literature: A View From India = Future. Minor. Stud. Colonialism, Race, and The French Romantic Imagination = Routl Stud Romantic Colonialism, Race, and The French Romantic Imagination = Routl. Stud. Romantic Colonialism, Violence and Muslims in Southeast Asia: The Maria Hertogh Controversy and Its Aftermath = Routl Stud Mod Hist Colonialism, Violence and Muslims in Southeast Asia: The Maria Hertogh Controversy and Its Aftermath = Routl. Stud. Mod. Hist. Colonial Latin American Historical Review = Colon Lat Am Hist R Colonial Latin American Historical Review = Colon. Lat. Am. Hist. R. Colonial Latin American Review = Colon Lat Am Rev Colonial Latin American Review = Colon. Lat. Am. Rev. Colonial Plant and Animal Products = Colon. Plant Anim. Prod. Colonial Waterbirds = Colon Waterbird Colonial Waterbirds = Colon. Waterbird. Colonial Waterbirds = Colon. Waterbirds Colony-stimulating Factors in Clinical Practice = Roy Soc Med Int Cong Colony-stimulating Factors in Clinical Practice = Roy. Soc. Med. Int. Cong. Coloproctology = Eur Man Med Coloproctology = Eur. Man. Med. Coloproctology = Springer Spec Surg S Coloproctology = Springer. Spec. Surg. S. Coloquio-artes = Coloquio-artes Coloquio-letras = Coloquio-letras Colorado heritage : the journal of the Colorado Historical Society = Colo Herit Colorado journal of international environmental law and policy = Colo J Int Environ Law Policy Colorado lawyer = Colo Lawyer Colorado medicine = Colo Med Colorado Medicine = Colo. Med. Colorado nurse (1985) = Colo Nurse Colorado nurse = Colo Nurse Colorado Nurse = Colo. Nurse Colorado quarterly = Colo Q Colorado revised statutes, 1973 / completely annotated and indexed by the editorial staff of the Michie Company. Colorado = Colo Revis Statut 1973 Colo Colorado School of Mines Quarterly = Colo School Mines Q Colorado School of Mines Quarterly = Colo. School Mines Q. Colorado State University Experiment Station Bulletin = Colo St Ex St Bull Colorado State University Experiment Station Bulletin = Colo. St. Ex. St. Bull. Colorado State University Experiment Station Technical Bulletin = Colo St Ex St Tech B Colorado State University Experiment Station Technical Bulletin = Colo. St. Ex. St. Tech. B. Color Aerial Photography in The Plant Sciences and Related Fields = W Col Aer P Color Aerial Photography in The Plant Sciences and Related Fields = W. Col. Aer. P. Coloration Technology = Color Technol Coloration Technology = Color. Technol. Color Doppler Us of The Penis = Med Radiol Diagn Ima Color Doppler Us of The Penis = Med. Radiol. Diagn. Ima. Colorectal Cancer: New Aspects of Molecular Biology and Immunology and Their Clinical Applications = Ann Ny Acad Sci Colorectal Cancer: New Aspects of Molecular Biology and Immunology and Their Clinical Applications = Ann. Ny. Acad. Sci. Colorectal Cancer Screening = Clin Gastroent-ser Colorectal Cancer Screening = Clin. Gastroent-ser. Colorectal Disease = Colorectal Dis Colorectal Disease = Colorectal Dis. Colorectal disease : the official journal of the Association of Coloproctology of Great Britain and Ireland = Colorectal Dis Color Engineering = Color Eng Color Engineering = Color Eng. Color Hard Copy and Graphic Arts Ii = P Soc Photo-opt Ins Color Hard Copy and Graphic Arts Ii = P. Soc. Photo-opt. Ins. Color Hard Copy and Graphic Arts Iv = P Soc Photo-opt Ins Color Hard Copy and Graphic Arts Iv = P. Soc. Photo-opt. Ins. Color Hard Copy and Graphic Arts = P Soc Photo-opt Ins Color Hard Copy and Graphic Arts = P. Soc. Photo-opt. Ins. Color Image Processing: Methods and Applications = Image Process Ser Color Image Processing: Methods and Applications = Image Process. Ser. Color Imaging: Device-independent Color, Color Hardcopy, and Applications Vii = Proc Spie Color Imaging: Device-independent Color, Color Hardcopy, and Applications Vii = Proc. Spie. Color Imaging: Device-independent Color, Color Hardcopy, and Applications Vii = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hardcopy, and Applications Vii = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Iii = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Iii = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hard Copy, and Graphic Arts Ii = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hard Copy, and Graphic Arts Ii = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Iv = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Iv = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hard Copy, and Graphic Arts = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hard Copy, and Graphic Arts = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Vi = Proc Spie Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Vi = Proc. Spie. Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Vi = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts Vi = P. Soc. Photo-opt. Ins. Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts V = P Soc Photo-opt Ins Color Imaging: Device-independent Color, Color Hardcopy, and Graphic Arts V = P. Soc. Photo-opt. Ins. Color Imaging Ix: Processing, Hardcopy, and Applications = Proc Spie Color Imaging Ix: Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging Ix: Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging Ix: Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging Viii: Processing, Hardcopy, and Applications = Proc Spie Color Imaging Viii: Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging Viii: Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging Viii: Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging Xiii: Processing, Hardcopy, and Applications = Proc Spie Color Imaging Xiii: Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging Xii: Processing, Hardcopy, and Applications = Proc Spie Color Imaging Xii: Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging Xii: Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging Xii: Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging Xi: Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging Xi: Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging X: Processing, Hardcopy, and Applications = Proc Spie Color Imaging X: Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging X: Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging X: Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging Xv: Displaying, Processing, Hardcopy, and Applications = Proc Spie Color Imaging Xv: Displaying, Processing, Hardcopy, and Applications = Proc. Spie. Color Imaging Xv: Displaying, Processing, Hardcopy, and Applications = P Soc Photo-opt Ins Color Imaging Xv: Displaying, Processing, Hardcopy, and Applications = P. Soc. Photo-opt. Ins. Color Imaging Xvi: Displaying, Processing, Hardcopy, and Applications = Proc Spie Color Imaging Xvi: Displaying, Processing, Hardcopy, and Applications = Proc. Spie. Color Perception: Philosophical, Psychological, Artistic and Computational Perspectives = Vanc St Cog Color Perception: Philosophical, Psychological, Artistic and Computational Perspectives = Vanc. St. Cog. Color research and application = Color Res Appl Color Research and Application = Color Res Appl Color Research and Application = Color Res. Appl. Color Research & Application = Color Res. Appl. Color Science and Imaging Technologies = Proc Spie Color Science and Imaging Technologies = Proc. Spie. Color Science and Imaging Technologies = P Soc Photo-opt Ins Color Science and Imaging Technologies = P. Soc. Photo-opt. Ins. Colourage = Colourage Colour Measurement: Principles, Advances and Industrial Applications = Woodhead Publ Text Colour Measurement: Principles, Advances and Industrial Applications = Woodhead. Publ. Text. Colour Vision Deficiencies X = Doc Ophth P Colour Vision Deficiencies X = Doc. Ophth. P. Colour Vision Deficiencies Xi = Doc Ophth P Colour Vision Deficiencies Xi = Doc. Ophth. P. Colour Vision Deficiencies Xiii = Doc Ophth P Colour Vision Deficiencies Xiii = Doc. Ophth. P. Colposcopy & Gynecologic Laser Surgery = Colp Gynecol Las Sur Colposcopy & Gynecologic Laser Surgery = Colp. Gynecol. Las. Sur. Columbia forum = Columbia Forum Columbia human rights law review = Columbia Human Rights Law Rev Columbia Human Rights Law Review = Columbia Hum R Law R Columbia Human Rights Law Review = Columbia Hum. R. Law R. Columbia Journalism Review = Columbia Journal Rev Columbia Journalism Review = Columbia Journal. Rev. Columbia journalism review = Columbia J Rev Columbia journal of gender and law = Columbia J Gend Law Columbia Journal of Law and Social Problems = Columbia J Law Soc P Columbia Journal of Law and Social Problems = Columbia J. Law Soc. P. Columbia journal of law and social problems = Columbia J Law Soc Probl Columbia Journal of Transnational Law = Columbia J Trans Law Columbia Journal of Transnational Law = Columbia J. Trans. Law Columbia Journal of World Business=Columbia J. World Bus. Columbia Journal of World Business = Columbia J World Bus Columbia Journal of World Business = Columbia J. World Bus. Columbia law review = Columbia Law Rev Columbia Law Review = Columbia Law Rev Columbia Law Review = Columbia Law Rev. Columbia University School of Social Work: A History of Social Pioneering = Cussw Monogr Columbia University School of Social Work: A History of Social Pioneering = Cussw. Monogr. Columbia University School of Social Work Monograph = Cussw Monogr Columbia University School of Social Work Monograph = Cussw. Monogr. Columbia University Seminar Series = Columb U Sem Ser Columbia University Seminar Series = Columb. U. Sem. Ser. Columbus Dental Society Bulletin = Columbus Dent. Soc. Bull. Comadem '97: 10th International Congress and Exhibition On Condition Monitoring and Diagnostic Engineering Management, Vol 1 = Vtt Symp Comadem '97: 10th International Congress and Exhibition On Condition Monitoring and Diagnostic Engineering Management, Vol 1 = Vtt. Symp. Coma Science: Clinical and Ethical Implications = Prog Brain Res Coma Science: Clinical and Ethical Implications = Prog. Brain. Res. Combating Long-term Unemployment = Brad S E P Combating Long-term Unemployment = Brad. S. E. P. Combating Terrorism in Northern Ireland = Cass Ser Polit Viole Combating Terrorism in Northern Ireland = Cass. Ser. Polit. Viole. Combat Modeling = Int Ser Oper Res Man Combat Modeling = Int. Ser. Oper. Res. Man. Combat Stress Injury: Theory, Research, and Management = Psychosoc Stres Combat Stress Injury: Theory, Research, and Management = Psychosoc. Stres. Combination Processes for Food Irradiation = Iaea Pan P Combination Processes for Food Irradiation = Iaea. Pan. P. Combinations of Complex Dynamical Systems = Lect Notes Math Combinations of Complex Dynamical Systems = Lect. Notes. Math. Combinatorial Algebraic Topology = Algorithm Comp Math Combinatorial Algebraic Topology = Algorithm. Comp. Math. Combinatorial Algorithms = Lect Notes Comput Sc Combinatorial Algorithms = Lect. Notes. Comput. Sc. Combinatorial and Algorithmic Aspects of Networking = Lect Notes Comput Sc Combinatorial and Algorithmic Aspects of Networking = Lect. Notes. Comput. Sc. Combinatorial and Artificial Intelligence Methods in Materials Science Ii = Mater Res Soc Symp P Combinatorial and Artificial Intelligence Methods in Materials Science Ii = Mater. Res. Soc. Symp. P. Combinatorial and Artificial Intelligence Methods in Materials Science = Mater Res Soc Symp P Combinatorial and Artificial Intelligence Methods in Materials Science = Mater. Res. Soc. Symp. P. Combinatorial and Composition Spread Techniques in Materials and Device Development Ii = P Soc Photo-opt Ins Combinatorial and Composition Spread Techniques in Materials and Device Development Ii = P. Soc. Photo-opt. Ins. Combinatorial and Composition Spread Techniques in Materials and Device Development = P Soc Photo-opt Ins Combinatorial and Composition Spread Techniques in Materials and Device Development = P. Soc. Photo-opt. Ins. Combinatorial and Geometric Group Theory - Edinburgh 1993 = Lond Math S Combinatorial and Geometric Group Theory - Edinburgh 1993 = Lond. Math. S. Combinatorial Approach to Matrix Theory and Its Applications = Crc Discr Math Appl Combinatorial Approach to Matrix Theory and Its Applications = Crc. Discr. Math. Appl. Combinatorial Aspects of Commutative Algebra = Contemp Math Combinatorial Aspects of Commutative Algebra = Contemp. Math. Combinatorial Chemistry and High Throughput Screening = Comb. Chem. High Throughput Screen. Combinatorial Chemistry and High Throughput Screening = Comb. Chem. High Throughput Screening Combinatorial Chemistry - an Online Journal = Comb. Chem. Combinatorial chemistry & high throughput screening = Comb Chem High Throughput Screen Combinatorial Chemistry & High Throughput Screening = Comb. Chem. High Throughput Screening Combinatorial Chemistry & High Throughput Screening = Comb Chem High T Scr Combinatorial Chemistry & High Throughput Screening = Comb. Chem. High T. Scr. Combinatorial Chemistry in Biology = Curr Top Microbiol Combinatorial Chemistry in Biology = Curr. Top. Microbiol. Combinatorial Chemistry = Method Enzymol Combinatorial Chemistry = Method. Enzymol. Combinatorial Chemistry = Methods Enzymol Combinatorial Chemistry = Methods. Enzymol. Combinatorial Chemistry On Solid Supports = Top Curr Chem Combinatorial Chemistry On Solid Supports = Top. Curr. Chem. Combinatorial Chemistry, Pt B = Method Enzymol Combinatorial Chemistry, Pt B = Method. Enzymol. Combinatorial Chemistry, Pt B = Methods Enzymol Combinatorial Chemistry, Pt B = Methods. Enzymol. Combinatorial Designs and Applications = Lect Notes Pure Appl Combinatorial Designs and Applications = Lect. Notes. Pure. Appl. Combinatorial Designs and Their Applications = Ch Crc Res Notes Combinatorial Designs and Their Applications = Ch. Crc. Res. Notes. Combinatorial Geometry and Graph Theory = Lect Notes Comput Sc Combinatorial Geometry and Graph Theory = Lect. Notes. Comput. Sc. Combinatorial Group Theory, Discrete Groups, and Number Theory = Contemp Math Combinatorial Group Theory, Discrete Groups, and Number Theory = Contemp. Math. Combinatorial Image Analysis = Lect Notes Comput Sc Combinatorial Image Analysis = Lect. Notes. Comput. Sc. Combinatorial Image Analysis, Proceedings = Lect Notes Comput Sc Combinatorial Image Analysis, Proceedings = Lect. Notes. Comput. Sc. Combinatorial Machine Learning: A Rough Set Approach = Stud Comput Intell Combinatorial Machine Learning: A Rough Set Approach = Stud. Comput. Intell. Combinatorial Methods and Informatics in Materials Science = Mater Res Soc Symp P Combinatorial Methods and Informatics in Materials Science = Mater. Res. Soc. Symp. P. Combinatorial Methods for Chemical and Biological Sensors = Integr Anal Syst Combinatorial Methods for Chemical and Biological Sensors = Integr. Anal. Syst. Combinatorial Methods in Representation Theory = Adv Stu P M Combinatorial Methods in Representation Theory = Adv. Stu. P. M. Combinatorial Number Theory and Additive Group Theory = Adv Courses Math Crm Combinatorial Number Theory and Additive Group Theory = Adv. Courses. Math. Crm. Combinatorial Optimization and Applications, Proceedings = Lect Notes Comput Sc Combinatorial Optimization and Applications, Proceedings = Lect. Notes. Comput. Sc. Combinatorial Optimization = Comb. Optim. Combinatorial Optimization - Eureka, You Shrink = Lect Notes Comput Sc Combinatorial Optimization - Eureka, You Shrink = Lect. Notes. Comput. Sc. Combinatorial Optimization: Theory and Algorithms, Fourth Edition = Algorithms Comb Combinatorial Optimization: Theory and Algorithms, Fourth Edition = Algorithms. Comb. Combinatorial Pattern Matching Algorithms in Computational Biology Using Perl and R = Ch Crc Math Comp Bio Combinatorial Pattern Matching Algorithms in Computational Biology Using Perl and R = Ch. Crc. Math. Comp. Bio. Combinatorial Pattern Matching = Lect Notes Comput Sc Combinatorial Pattern Matching = Lect. Notes. Comput. Sc. Combinatorial Pattern Matching, Proceedings = Lect Notes Comput Sc Combinatorial Pattern Matching, Proceedings = Lect. Notes. Comput. Sc. Combinatorial Stochastic Processes = Lect Notes Math Combinatorial Stochastic Processes = Lect. Notes. Math. Combinatorial Synthesis of Natural Product-based Libraries = Crit Rev Comb Chem Combinatorial Synthesis of Natural Product-based Libraries = Crit. Rev. Comb. Chem. Combinatorica = Combinatorica Combinatorica = Combinatorica Combinatorics Advances = Math Appl Combinatorics Advances = Math. Appl. Combinatorics, Algorithms, Probabilistic and Experimental Methodologies = Lect Notes Comput Sc Combinatorics, Algorithms, Probabilistic and Experimental Methodologies = Lect. Notes. Comput. Sc. Combinatorics and Graphs = Contemp Math Combinatorics and Graphs = Contemp. Math. Combinatorics and Reasoning: Representing, Justifying and Building Isomorphisms = Math Educ Lib Combinatorics and Reasoning: Representing, Justifying and Building Isomorphisms = Math. Educ. Lib. Combinatorics / = Colloq Math Soc J B Combinatorics / = Colloq. Math. Soc. J. B. Combinatorics, Computability and Logic = Discrete Math & Theo Combinatorics, Computability and Logic = Discrete. Math. &. Theo. Combinatorics, Computing and Complexity = Math Appl C Combinatorics, Computing and Complexity = Math. Appl. C. Combinatorics, Paul Erdos Is Eighty, Vol. 1 = Bolyai Math Stud Combinatorics, Paul Erdos Is Eighty, Vol. 1 = Bolyai. Math. Stud. Combinatorics, Paul Erdos Is Eighty, Vol. 1 = Bolyai Soc Math Stud Combinatorics, Paul Erdos Is Eighty, Vol. 1 = Bolyai. Soc. Math. Stud. Combinatorics, Paul Erdos Is Eighty, Vol. 2 = Bolyai Math Stud Combinatorics, Paul Erdos Is Eighty, Vol. 2 = Bolyai. Math. Stud. Combinatorics, Paul Erdos Is Eighty, Vol. 2 = Bolyai Soc Math Stud Combinatorics, Paul Erdos Is Eighty, Vol. 2 = Bolyai. Soc. Math. Stud. Combinatorics, Probability and Computing = Combin. Probab. Comput. Combinatorics, Probability and Computing = Comb. Probab. Comput. Combinatorics Probability & Computing = Comb Probab Comput Combinatorics Probability & Computing = Comb. Probab. Comput. Combined and Hybrid Adsorbents: Fundamentals and Applications = Nato Sci Peace Secur Combined and Hybrid Adsorbents: Fundamentals and Applications = Nato. Sci. Peace. Secur. Combined Heat and Power = Proc Inst Mech Eng S Combined Heat and Power = Proc. Inst. Mech. Eng. S. Combined Relaxation Methods for Variational Inequalities = Lect Notes Econ Math Combined Relaxation Methods for Variational Inequalities = Lect. Notes. Econ. Math. Combined Vaccines and Simultaneous Administration = Ann Ny Acad Sci Combined Vaccines and Simultaneous Administration = Ann. Ny. Acad. Sci. Combining Soft Computing and Statistical Methods in Data Analysis = Adv Intel Soft Compu Combining Soft Computing and Statistical Methods in Data Analysis = Adv. Intel. Soft Compu. Combio'95: Summer Workshop On Computational Modeling and Imaging in Biosciences = Kfki Prep R Combio'95: Summer Workshop On Computational Modeling and Imaging in Biosciences = Kfki. Prep. R. Combio'96 - Summer Workshop On Computational Modelling, Imaging and Visualization in Biosciences = Kfki Prep R Combio'96 - Summer Workshop On Computational Modelling, Imaging and Visualization in Biosciences = Kfki. Prep. R. Combroad = COMBROAD Combusting Flow Diagnostics = Nato Adv Sci I E-app Combusting Flow Diagnostics = Nato. Adv. Sci. I. E-app. Combustion and Flame = Combust Flame Combustion and Flame = Combust. Flame Combustion and Incineration - Eighteenth Dutch-german Conference On Flames = Vdi Bericht Combustion and Incineration - Eighteenth Dutch-german Conference On Flames = Vdi. Bericht. Combustion and Incineration = Vdi Bericht Combustion and Incineration = Vdi. Bericht. Combustion = Combustion Combustion Diagnostics = P Soc Photo-opt Ins Combustion Diagnostics = P. Soc. Photo-opt. Ins. Combustion Explosion and Shock Waves = Combust Explo Shock+ Combustion Explosion and Shock Waves = Combust. Explo. Shock+.+ Combustion in Automotive Engines = Coll Col Se Combustion in Automotive Engines = Coll. Col. Se. Combustion in High-speed Flows = Icase Larc In Sci En Combustion in High-speed Flows = Icase. Larc. In. Sci. En. Combustion Instability = Prog Astronaut Aeron Combustion Instability = Prog. Astronaut. Aeron. Combustion Noise = Fluid Mech Appl Combustion Noise = Fluid. Mech. Appl. Combustion Science and Technology = Combust Sci Technol Combustion Science and Technology = Combust. Sci. Technol. Combustion Synthesis of Advanced Materials = Chem Res Appl-nova Combustion Synthesis of Advanced Materials = Chem. Res. Appl-nova. Combustion Theory and Modelling = Combust Theor Model Combustion Theory and Modelling = Combust. Theor. Model. Combustion Theory and Modelling = Combust. Theory Model. Comedia = Comedia Comercio Exterior=Comercio Exterior Comertul Modern=Comertul Mod. Comet Assay in Toxicology = Issues Toxicol Comet Assay in Toxicology = Issues. Toxicol. Comic Provocations: Exposing The Corpus of Old French Fabliaux = Stud Arthur Court Cu Comic Provocations: Exposing The Corpus of Old French Fabliaux = Stud. Arthur. Court. Cu. Coming of Age of Information Technologies and The Path of Transformational Growth = Routl Adv Heterod Ec Coming of Age of Information Technologies and The Path of Transformational Growth = Routl. Adv. Heterod. Ec. Comitatus-a Journal of Medieval and Renaissance Studies = Comitatus Comitatus-a Journal of Medieval and Renaissance Studies = Comitatus. Command, Control, Communications, and Intelligence Systems for Law Enforcement = P Soc Photo-opt Ins Command, Control, Communications, and Intelligence Systems for Law Enforcement = P. Soc. Photo-opt. Ins. Commandment and Community = Suny Jew Ph Commandment and Community = Suny. Jew. Ph. Commedia Dell Arte Performance: Contexts and Contents, Vol 1 = Theatre Symp Commedia Dell Arte Performance: Contexts and Contents, Vol 1 = Theatre. Symp. Commemorative Volume for Kosta Todorovic, Member of The Academy = Ser Ac Comm Commemorative Volume for Kosta Todorovic, Member of The Academy = Ser. Ac. Comm. Commentaries On Early Jewish Literature = Comment Early Jew Li Commentaries On Early Jewish Literature = Comment. Early Jew. Li. Commentarii Mathematici Helvetici = Comment. Math. Helv. Commentarii Mathematici Helvetici = Comment Math Helv Commentarii Mathematici Helvetici = Comment. Math. Helv. Commentarii Mathematici Universitatis Sancti Pauli = Comment. Math. Univ. St. Paul. Commentary = Commentary Commentary (New York, N.Y.) = Commentary Commentary On The Principles of Thermodynamics By Pierre Duhem = Bost Stud Philos Sci Commentary On The Principles of Thermodynamics By Pierre Duhem = Bost. Stud. Philos. Sci. Commentationes Mathematicae Universitatis Carolinae = Comment. Math. Univ. Carolin. Commentationes Physico-mathematicae = Comment Phys-math Commentationes Physico-mathematicae = Comment. Phys-math. Comments on Astrophysics = Comments Astrophys. Comments on Atomic and Molecular Physics = Comments At. Mo. Phys. Comments on Condensed Matter Physics = Comments Condens. Matter Phys. Comments On Inorganic Chemistry = Comment Inorg Chem Comments On Inorganic Chemistry = Comment. Inorg. Chem. Comments on Inorganic Chemistry = Comments Inorg. Chem. Comments On Modern Physics = Comment Mod Phys Comments On Modern Physics = Comment. Mod. Phys. Comments on Modern Physics = Comments Mod. Phys. Commerce, Complexity, and Evolution = Int Symp Ec Commerce, Complexity, and Evolution = Int. Symp. Ec. Commercial and Biomedical Applications of Ultrafast and Free-electron Lasers = Proc Spie Commercial and Biomedical Applications of Ultrafast and Free-electron Lasers = Proc. Spie. Commercial and Biomedical Applications of Ultrafast and Free-electron Lasers = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast and Free-electron Lasers = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Iii = Proc Spie Commercial and Biomedical Applications of Ultrafast Lasers Iii = Proc. Spie. Commercial and Biomedical Applications of Ultrafast Lasers Iii = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Iii = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Ii = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Ii = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Iv = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Iv = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Ix = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Ix = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Viii = Proc Spie Commercial and Biomedical Applications of Ultrafast Lasers Viii = Proc. Spie. Commercial and Biomedical Applications of Ultrafast Lasers Viii = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Viii = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Vii = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Vii = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers Vi = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers Vi = P. Soc. Photo-opt. Ins. Commercial and Biomedical Applications of Ultrafast Lasers V = Proc Spie Commercial and Biomedical Applications of Ultrafast Lasers V = Proc. Spie. Commercial and Biomedical Applications of Ultrafast Lasers V = P Soc Photo-opt Ins Commercial and Biomedical Applications of Ultrafast Lasers V = P. Soc. Photo-opt. Ins. Commercial and Cultural Climate of Japanese Printmaking = Hotei Acad Eur Japan Commercial and Cultural Climate of Japanese Printmaking = Hotei. Acad. Eur. Japan. Commercial Applications for High-performance Computing = P Soc Photo-opt Ins Commercial Applications for High-performance Computing = P. Soc. Photo-opt. Ins. Commercial Applications of Precision Manufacturing At The Sub-micron Level = P Soc Photo-opt Ins Commercial Applications of Precision Manufacturing At The Sub-micron Level = P. Soc. Photo-opt. Ins. Commercial Applications of Ultrafast Lasers = P Soc Photo-opt Ins Commercial Applications of Ultrafast Lasers = P. Soc. Photo-opt. Ins. Commercial Homes in Tourism = Routl Crit Stud Tour Commercial Homes in Tourism = Routl. Crit. Stud. Tour. Commercialization of Health Care: Global and Local Dynamics and Policy Responses = Soc Pol Dev Context Commercialization of Health Care: Global and Local Dynamics and Policy Responses = Soc. Pol. Dev. Context. Commercial law journal = Commer Law J Commercial Law of The European Union = Ius Gentium-comp Per Commercial Law of The European Union = Ius. Gentium-comp. Per. Commercial laws of Europe = Commer Law Eur Commercial Vehicles: Trucks and Buses, Indispesable-safe-e Nvironmentally Friendly = Vdi Bericht Commercial Vehicles: Trucks and Buses, Indispesable-safe-e Nvironmentally Friendly = Vdi. Bericht. Commercial Vehicles = Vdi Bericht Commercial Vehicles = Vdi. Bericht. Commerical and Biomedical Applications of Ultrashort Pulse Lasers; Laser Plasma Generation and Diagnostics = P Soc Photo-opt Ins Commerical and Biomedical Applications of Ultrashort Pulse Lasers; Laser Plasma Generation and Diagnostics = P. Soc. Photo-opt. Ins. Commerical Fisheries Review = Commer Fish Rev Commerical Fisheries Review = Commer. Fish. Rev. Commitment = Commitment Commitment to Service = Prof Lib S Commitment to Service = Prof. Lib. S. Common Cold = Birkhauser Adv Infec Common Cold = Birkhauser. Adv. Infec. Common Component Modeling Example: Comparing Software Component Models = Lect Notes Comput Sc Common Component Modeling Example: Comparing Software Component Models = Lect. Notes. Comput. Sc. Common Disease: Genetic and Pathogenetic Aspects of Multifactorial Diseases = Int Congr Ser Common Disease: Genetic and Pathogenetic Aspects of Multifactorial Diseases = Int. Congr. Ser. Common factor (Stoughton, Mass.) = Common Factor Common Food Intolerances 1 : Epidemiology of Coeliac Disease = Dyn Nutr R Common Food Intolerances 1 : Epidemiology of Coeliac Disease = Dyn. Nutr. R. Common Food Intolerances 2 : Milk in Human Nutrition and Adult-type Hypolactasia = Dyn Nutr R Common Food Intolerances 2 : Milk in Human Nutrition and Adult-type Hypolactasia = Dyn. Nutr. R. Common Ground, Consensus Building and Continual Improvement: International Standards and Sustainable Building = Am Soc Test Mater Common Ground, Consensus Building and Continual Improvement: International Standards and Sustainable Building = Am. Soc. Test. Mater. Common Ground? Readings and Reflections On Public Space = Metrop Mod Life Common Ground? Readings and Reflections On Public Space = Metrop. Mod. Life. Common Hamster (cricetus Cricetus): Perspectives On An Endangered Species = Biosyst Ecol Ser Common Hamster (cricetus Cricetus): Perspectives On An Endangered Species = Biosyst. Ecol. Ser. Common Interests, Uncommon Goals : Histories of The World Council of Comparative Education Societies and Its Members = Cerc Stud Comp Educ Common Interests, Uncommon Goals : Histories of The World Council of Comparative Education Societies and Its Members = Cerc. Stud. Comp. Educ. Common Knowledge = Common Knowl Common Knowledge = Common Knowl. Common law world review = Common Law World Rev Common Market Law Review = Common Mkt Law Rev Common Market Law Review = Common Mkt. Law Rev. Common Mechanisms in Perception and Action = Attention Perform Common Mechanisms in Perception and Action = Attention. Perform. Common Mechanisms of Transformation By Small Dna Tumor Viruses = Icn Uci C V Common Mechanisms of Transformation By Small Dna Tumor Viruses = Icn. Uci. C. V. Common Themes and Mechanisms of Epitaxial Growth = Mater Res Soc Symp P Common Themes and Mechanisms of Epitaxial Growth = Mater. Res. Soc. Symp. P. Commonweal (New York, N.Y.) = Commonweal Commonwealth & Comparative Politics = Commonw Comp Polit Commonwealth & Comparative Politics = Commonw. Comp. Polit. Commonwealth Forestry Review = Commonw Forest Rev Commonwealth Forestry Review = Commonw. Forest. Rev. Commonwealth Forestry Review, The = Commonw. For. Rev. Commonwealth Foundation-occasional Paper = Commonw Found-occ Pa Commonwealth Foundation-occasional Paper = Commonw. Found-occ. Pa. Commonwealth: Inter- and Non-state Contributions to Global Governance = Glob Inst Commonwealth: Inter- and Non-state Contributions to Global Governance = Glob. Inst. Communal Discord, Child Abduction, and Rape in The Later Middle Ages = New Middle Ages Communal Discord, Child Abduction, and Rape in The Later Middle Ages = New. Middle Ages Communalism and Globalization in South Asia and Its Diaspora = Inters Colon Postcol Communalism and Globalization in South Asia and Its Diaspora = Inters. Colon. Postcol. Communal Violence and Democratization in Indonesia: Small Town Wars = Routl Cont Se Asia S Communal Violence and Democratization in Indonesia: Small Town Wars = Routl. Cont. Se. Asia. S. Communicable Crises = Res Public Manag Communicable Crises = Res. Public. Manag. Communicable Crises = Res Public Manage Communicable Crises = Res. Public. Manage. Communicable Disease and Public Health = Commun. Dis. Public Health Communicable disease and public health / PHLS = Commun Dis Public Health Communicable disease report. CDR review = Commun Dis Rep CDR Rev Communicable Disease Report. CDR Review=Commun Dis Rep CDR Rev;; Communicable Disease Report. CDR Review = Commun. Dis. Rep. CDR Rev. Communicable disease report. CDR supplement = Commun Dis Rep CDR Suppl Communicable Disease Report. CDR Supplement=Commun Dis Rep CDR Suppl;; Communicable Disease Report. CDR Supplement = Comun. Dis. Rep. CDR Suppl. Communicable disease report. CDR weekly = Commun Dis Rep CDR Wkly Communicable Disease Report. CDR Weekly=Commun Dis Rep CDR Wkly;; Communicable Disease Report. CDR Weekly = Commun. Dis. Rep. CDR Wkly. Communicable diseases intelligence = Commun Dis Intell Communicable Diseases Intelligence=Commun Dis Intell;; Communicable Diseases Intelligence = Commun. Dis. Intell. Communicating By Language = Comm Lang S Communicating By Language = Comm. Lang. S. Communicating Chemistry: Textbooks and Their Audiences, 1789-1939 = Eur St Sci Hist Arts Communicating Chemistry: Textbooks and Their Audiences, 1789-1939 = Eur. St. Sci. Hist. Arts. Communicating Company: Towards An Alternative Theory of Corporate Communication = Contrib Manag Sci Communicating Company: Towards An Alternative Theory of Corporate Communication = Contrib. Manag. Sci. Communicating Environmental Geoscience = Geol Soc Spec Publ Communicating Environmental Geoscience = Geol. Soc. Spec. Publ. Communicating in Dental Practice: Stress-free Dentistry and Improved Patient Care = Quintessent Dent Pra Communicating in Dental Practice: Stress-free Dentistry and Improved Patient Care = Quintessent. Dent. Pra. Communicating in The Third Space = Routl Res Cult Media Communicating in The Third Space = Routl. Res. Cult. Media. Communicating Mathematics = Contemp Math Communicating Mathematics = Contemp. Math. Communicating nursing research = Commun Nurs Res Communicating Nursing Research = Commun. Nurs. Res. Communicating Process Architectures 2001 = Concur Syst Engn Ser Communicating Process Architectures 2001 = Concur. Syst. Engn. Ser. Communicating Process Architectures 2003 = Concur Syst Engn Ser Communicating Process Architectures 2003 = Concur. Syst. Engn. Ser. Communicating Process Architectures 2004 = Concur Syst Engn Ser Communicating Process Architectures 2004 = Concur. Syst. Engn. Ser. Communicating Process Architectures 2006: Wotug-29 = Concur Syst Engn Ser Communicating Process Architectures 2006: Wotug-29 = Concur. Syst. Engn. Ser. Communicating Process Architectures 2008 = Concur Syst Engn Ser Communicating Process Architectures 2008 = Concur. Syst. Engn. Ser. Communicating Science: New Agendas in Communication = New Agendas Commun Communicating Science: New Agendas in Communication = New Agendas Commun. Communicating Sequential Processes: The First 25 Years = Lect Notes Comput Sc Communicating Sequential Processes: The First 25 Years = Lect. Notes. Comput. Sc. Communicating The Role of Silviculture in Managing The National Forests, Proceedings of The National Silviculture Workshop = Usda Ne Exp Communicating The Role of Silviculture in Managing The National Forests, Proceedings of The National Silviculture Workshop = Usda. Ne. Exp. Communicating With One Another: Toward A Psychology of Spontaneous Spoken Discourse = Cogn Lang A Ser Psyc Communicating With One Another: Toward A Psychology of Spontaneous Spoken Discourse = Cogn. Lang. A Ser. Psyc. Communicatio = Communicatio Communication and Cognition = Comm. Cogn. Communication and Cognition = Commun Cognition Communication and Cognition = Commun. Cognition Communication and Cooperation in Agent Systems = Lect Notes Artif Int Communication and Cooperation in Agent Systems = Lect. Notes. Artif. Int. Communication and Law: Multidisciplinary Approaches to Research = Lea Commun Ser Communication and Law: Multidisciplinary Approaches to Research = Lea. Commun. Ser. Communication and Leadership: The Design of Leadership Style = Routl Stud Linguist Communication and Leadership: The Design of Leadership Style = Routl. Stud. Linguist. Communication and Management in Technological Innovation and Academic Globalization = Int C Commun Manage Communication and Management in Technological Innovation and Academic Globalization = Int. C. Commun. Manage. Communication and Medicine = Commun. Med. Communication and Networking = Comm Com Inf Sc Communication and Networking = Comm. Com. Inf. Sc. Communication and Networking, Pt I = Comm Com Inf Sc Communication and Networking, Pt I = Comm. Com. Inf. Sc. Communication and Networking, Pt Ii = Comm Com Inf Sc Communication and Networking, Pt Ii = Comm. Com. Inf. Sc. Communication and Social Cognition: Theories and Methods = Lea Commun Ser Communication and Social Cognition: Theories and Methods = Lea. Commun. Ser. Communication and Social Order = Comm Soc Or Communication and Social Order = Comm. Soc. Or. Communication and Society = Commun Soc-ser Communication and Society = Commun. Soc-ser. Communication As Comfort: Multiple Voices in Palliative Care = Lea Commun Ser Communication As Comfort: Multiple Voices in Palliative Care = Lea. Commun. Ser. Communication As Organizing: Empirical and Theoretical Explorations in The Dynamic of Text and Conversation = Lea Commun Ser Communication As Organizing: Empirical and Theoretical Explorations in The Dynamic of Text and Conversation = Lea. Commun. Ser. Communication & Broadcasting = Commun Broadcast Communication & Broadcasting = Commun. Broadcast. Communication = Communication Communication Disorders As Disease Factor = Pub Jung St Communication Disorders As Disease Factor = Pub. Jung. St. Communication Education = Commun Educ Communication Education = Commun. Educ. Communicationes archaeologicae hungaricae = CommunicAHung Communicationes de historia artis medicinae. Suppl = Commun Hist Artis Med Suppl Communicationes Instituti Forestalis Fenniae = Commun. Inst. For. Fenn. Communication Games = Approach Appl Semiot Communication Games = Approach. Appl. Semiot. Communication, Health and The Elderly = Fulbright P Communication, Health and The Elderly = Fulbright. P. Communication in Multiagent Systems = Lect Notes Artif Int Communication in Multiagent Systems = Lect. Notes. Artif. Int. Communication Media and Politics = Commun Media Polit Communication Media and Politics = Commun. Media Polit. Communication & medicine = Commun Med Communication monographs = Commun Monogr Communication Monographs = Commun Monogr Communication Monographs = Commun. Monogr. Communication Perspectives On Hiv/aids for The 21st Century = Lea Commun Ser Communication Perspectives On Hiv/aids for The 21st Century = Lea. Commun. Ser. Communication Process Architectures 2005 = Concur Syst Engn Ser Communication Process Architectures 2005 = Concur. Syst. Engn. Ser. Communication research = Communic Res Communication Research = Commun Res Communication Research = Commun. Res. Communication Researchers and Policy-making = Mit Press Sourceb Communication Researchers and Policy-making = Mit. Press. Sourceb. Communications and Control Engineering = Commun Control Eng Communications and Control Engineering = Commun. Control Eng. Communications and Control Engineering Series = Comm. Control Engrg. Ser. Communications and Cryptography = Kluw Commun Communications and Cryptography = Kluw. Commun. Communications and Discoveries From Multidisciplinary Data = Stud Comput Intell Communications and Discoveries From Multidisciplinary Data = Stud. Comput. Intell. Communications and Multimedia Security = Int Fed Info Proc Communications and Multimedia Security = Int. Fed. Info. Proc. Communications and Multimedia Security Issues of The New Century = Int Fed Info Proc Communications and Multimedia Security Issues of The New Century = Int. Fed. Info. Proc. Communications and Multimedia Security = Lect Notes Comput Sc Communications and Multimedia Security = Lect. Notes. Comput. Sc. Communications and Multimedia Security, Proceedings = Lect Notes Comput Sc Communications and Multimedia Security, Proceedings = Lect. Notes. Comput. Sc. Communications and Networking in China = Comm Com Inf Sc Communications and Networking in China = Comm. Com. Inf. Sc. Communications and Networking in Education: Learning in A Networked Society = Int Fed Info Proc Communications and Networking in Education: Learning in A Networked Society = Int. Fed. Info. Proc. Communications and Strategies=Communications Strategies Communications Architectures & Protocols = Comp Comm R Communications Architectures & Protocols = Comp. Comm. R. Communications = Commun. Fac. Sci. Univ. Ank. Sér. A1 Math. Stat. Communication Series = Communic Communication Series = Communic. Communication Series Routledge = Commun Ser Communication Series Routledge = Commun. Ser. Communications-european Journal of Communication Research = Communications-ger Communications-european Journal of Communication Research = Communications-ger. Communications in agricultural and applied biological sciences = Commun Agric Appl Biol Sci Communications in Agricultural and Applied Biological Sciences = Commun. Agric. Appl. Biol. Sci. Communications in Algebra = Comm. Algebra Communications in Algebra = Commun Algebra Communications in Algebra = Commun. Algebra Communications in Analysis and Geometry = Comm. Anal. Geom. Communications in Analysis and Geometry = Commun Anal Geom Communications in Analysis and Geometry = Commun. Anal. Geom. Communications in Applied Analysis = Commun. Appl. Anal. Communications in Applied Mathematics and Computational Science = Comm App Math Com Sc Communications in Applied Mathematics and Computational Science = Comm. App. Math. Com. Sc. Communications in Applied Numerical Methods = Commun Appl Numer M Communications in Applied Numerical Methods = Commun. Appl. Numer. M. Communications in behavioral biology. Part A: [Original articles] = Commun Behav Biol Communications in Behavioral Biology. Part A, Original Articles = Commun. Behav. Biol. Communications in Computational Physics = Commun Comput Phys Communications in Computational Physics = Commun. Comput. Phys. Communications in Computer and Information Science = Comm Com Inf Sc Communications in Computer and Information Science = Comm. Com. Inf. Sc. Communications in Contemporary Mathematics = Commun Contemp Math Communications in Contemporary Mathematics = Commun. Contemp. Math. Communications, Information and Network Security = Kluwer Int Ser Eng C Communications, Information and Network Security = Kluwer. Int. Ser. Eng. C. Communications in Mathematical Physics = Comm. Math. Phys. Communications in Mathematical Physics = Commun Math Phys Communications in Mathematical Physics = Commun. Math. Phys. Communications in Mathematical PHysics = Commun. Math. Phys. Communications in Mathematical Sciences = Commun Math Sci Communications in Mathematical Sciences = Commun. Math. Sci. Communications in Nonlinear Science and Numerical Simulation = Commun Nonlinear Sci Communications in Nonlinear Science and Numerical Simulation = Commun. Nonlinear Sci. Communications in Nonlinear Science and Numerical Simulation = Commun. Nonlinear Sci. Numer. Simul. Communications in Number Theory and Physics = Commun Number Theory Communications in Number Theory and Physics = Commun. Number Theory Communications in Numerical Methods in Engineering = Comm. Numer. Methods Engrg. Communications in Numerical Methods in Engineering = Commun Numer Meth En Communications in Numerical Methods in Engineering = Commun. Numer. Meth. En. Communications in Numerical Methods in Engineering = Commun. Numer. Methods Eng. Communications in Partial Differential Equations = Comm. Partial Differential Equations Communications in Partial Differential Equations = Commun Part Diff Eq Communications in Partial Differential Equations = Commun. Part. Diff. Eq. Communications in Psychopharmacology = Commun Psychopharmac Communications in Psychopharmacology = Commun. Psychopharmac. Communications in psychopharmacology = Commun Psychopharmacol Communications in Psychopharmacology = Commun. Psychopharmacol. Communications in Soil Science and Plant Analysis = Commun Soil Sci Plan Communications in Soil Science and Plant Analysis = Commun. Soil Sci. Plan. Communications in soil science and plant analysis = Commun Soil Sci Plant Anal Communications in Soil Science and Plant Analysis = Commun. Soil Sci. Plant Anal. Communications in Statistics = Comm. Statist. Simulation Comput. Communications in Statistics = Comm. Statist. Stochastic Models Communications in Statistics = Comm. Statist. Theory Methods Communications in Statistics = Commun Stat Communications in Statistics = Commun. Stat. Communications in Statistics Part A-theory and Methods = Commun Stat A-theor Communications in Statistics Part A-theory and Methods = Commun. Stat. A-theor. Communications in Statistics Part B-simulation and Computation = Commun Stat B-simul Communications in Statistics Part B-simulation and Computation = Commun. Stat. B-simul. Communications in Statistics-simulation and Computation = Commun Stat Simulat Communications in Statistics-simulation and Computation = Commun. Stat. Simulat. Communications in Statistics-simulation and Computation = Commun Stat-simul C Communications in Statistics-simulation and Computation = Commun. Stat-simul. C. Communications in Statistics-theory and Methods = Commun Stat-theor M Communications in Statistics-theory and Methods = Commun. Stat-theor. M. Communications in Statistics-theory and Methods = Commun Stat Theory Communications in Statistics-theory and Methods = Commun. Stat. Theory. Communications in the Analytic Theory of Continued Fractions = Comm. Anal. Theory Contin. Fractions Communications in Theoretical Physics (Allahabad) = Comm. Theoret. Phys. (Allahabad) Communications in Theoretical Physics = Comm. Theoret. Phys. Communications in Theoretical Physics = Commun Theor Phys Communications in Theoretical Physics = Commun. Theor. Phys. Communications in Theoretical Physics = Commun. Theor. Phys. (Beijing) Communications Monograph = Commun Monog Communications Monograph = Commun. Monog. Communications Monograph = Commun Monogr-ger Communications Monograph = Commun. Monogr-ger. Communications News = Commun News Communications News = Commun. News Communications of the ACM = Commun ACM Communications of the ACM = Commun. ACM Communications of The Acm = Commun Acm Communications of The Acm = Commun. Acm Communications of The Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 8, Pts 4-6 = Mitt Dgaae Communications of The Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 8, Pts 4-6 = Mitt. Dgaae. Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 52, Pts 1-4 = Int S Crop Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 52, Pts 1-4 = Int. S. Crop. Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 53, Pts 2a, 2b, 3a, 3b = Int S Crop Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 53, Pts 2a, 2b, 3a, 3b = Int. S. Crop. Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 54, Pts 2a, 2b, 3a, 3b = Int S Crop Communications of The Faculty of Agricultural Sciences of The State University of Ghent, Vol 54, Pts 2a, 2b, 3a, 3b = Int. S. Crop. Communications of The German Society for General and Applied Entomology, Vol 12, Nos 1-6, Feb 2000 = M D Gesell Allg Ange Communications of The German Society for General and Applied Entomology, Vol 12, Nos 1-6, Feb 2000 = M. D. Gesell. Allg. Ange. Communications of The German Society for General and Applied Entomology, Vol 8, Pts 1-3 = Mitt Dgaae Communications of The German Society for General and Applied Entomology, Vol 8, Pts 1-3 = Mitt. Dgaae. Communications of The German Society for General and Applied Entomonology, Vol 9 No 4-6, September 1995 = Mitt Dgaae Communications of The German Society for General and Applied Entomonology, Vol 9 No 4-6, September 1995 = Mitt. Dgaae. Communications On Applied Mathematics = Commun Appl Math Communications On Applied Mathematics = Commun. Appl. Math. Communications on Applied Nonlinear Analysis = Comm. Appl. Nonlinear Anal. Communications On Physics = Commun Phys Communications On Physics = Commun. Phys. Communications On Pure and Applied Analysis = Commun Pur Appl Anal Communications On Pure and Applied Analysis = Commun. Pur. Appl. Anal. Communications On Pure and Applied Analysis = Commun Pure Appl Ana Communications On Pure and Applied Analysis = Commun. Pure Appl. Ana. Communications on Pure and Applied Mathematics = Comm. Pure Appl. Math. Communications On Pure and Applied Mathematics = Commun Pur Appl Math Communications On Pure and Applied Mathematics = Commun. Pur. Appl. Math. Communications on Pure and Applied Mathematics = Commun. Pure Appl. Math. Communications Product Reports = Commun Prod Rep Communications Product Reports = Commun. Prod. Rep. Communications Surveys and Tutorials = Commun. Surveys Tuts. Communication Technology and Social Change: Theory and Implications = Lea Commun Ser Communication Technology and Social Change: Theory and Implications = Lea. Commun. Ser. Communication Theory = Commun Theor Communication Theory = Commun. Theor. Communication theory : CT : a journal of the International Communication Association = Commun Theory Communication With The Cancer Patient: Information and Truth = Ann Ny Acad Sci Communication With The Cancer Patient: Information and Truth = Ann. Ny. Acad. Sci. Communication Yearbook 35 = Comm Yearb Communication Yearbook 35 = Comm. Yearb. Communication Yearbook = Comm Yearb Communication Yearbook = Comm. Yearb. Communicative Cardiac Cell = Ann Ny Acad Sci Communicative Cardiac Cell = Ann. Ny. Acad. Sci. Communio (Spokane, Wash.) = Communio Communio Viatorum = Communio Viat Communio Viatorum = Communio Viat. Communique / American Nurses Association, Center for Ethics and Human Rights = Communique (Wash DC) Communique = Communique Communique (Milwaukee, Wis.) = Communique Communique Newsletter = Commun Newsl Communique Newsletter = Commun. Newsl. Communism, Nationalism and Ethnicity in Poland, 1944-50 = Basees-rout Ser Russ Communism, Nationalism and Ethnicity in Poland, 1944-50 = Basees-rout. Ser. Russ. Communist and Post-communist Studies = Communis Post-commun Communist and Post-communist Studies = Communis. Post-commun. Communist and post-communist studies = Communist Post-Communist Stud Communist economies and economic transformation = Communist Econ Econ Transform Communist Economies and Economic Transformation=Communist Economies Econ. Transformation Communist economies = Communist Econ Communist Economies & Economic Transformation = Communist Econ Ec Tr Communist Economies & Economic Transformation = Communist Econ. Ec. Tr. Communitarianism, Liberalism, and Social Responsibility = S Soc Polit Communitarianism, Liberalism, and Social Responsibility = S. Soc. Polit. Communities, Neighborhoods, and Health: Expanding The Boundaries of Place = Soc Dispar H H Care Communities, Neighborhoods, and Health: Expanding The Boundaries of Place = Soc. Dispar. H. H. Care. Communities of Practice: Fostering Peer-to-peer Learning and Informal Knowledge Sharing in The Work Place = Inform Sci Knowl Man Communities of Practice: Fostering Peer-to-peer Learning and Informal Knowledge Sharing in The Work Place = Inform. Sci. Knowl. Man. Community and Everyday Life = New Sociol Community and Everyday Life = New. Sociol. Community and junior college journal = Community Jr Coll J Community and Junior College Journal = Community Jr. Coll. J. Community-based Aids Prevention = Dhhs Public Community-based Aids Prevention = Dhhs. Public. Community-based public health policy & practice / Partnership for the Public's Health = Community Based Public Health Policy Pract Community Building in The Twenty-first Century = Sch Am Res Community Building in The Twenty-first Century = Sch. Am. Res. Community dental health = Community Dent Health Community Dental Health = Community Dent. Health Community Dental Health = Community Dent Hlth Community Dental Health = Community Dent. Hlth. Community Dental Health (Houndsmills, Hampshire=Community Dent Health;; Community Dentistry and Oral Epidemiology = Community Dent Oral Community Dentistry and Oral Epidemiology = Community Dent. Oral Community dentistry and oral epidemiology = Community Dent Oral Epidemiol Community Dentistry and Oral Epidemiology=Community Dent Oral Epidemiol;; Community Dentistry and Oral Epidemiology = Community Dent. Oral Epidemiol. Community Development in Asia and The Pacific = Routl Stud Dev Soc Community Development in Asia and The Pacific = Routl. Stud. Dev. Soc. Community development journal = Community Dev J Community Development Journal = Community Dev J Community Development Journal = Community Dev. J. Community Ecology = Community Ecol Community Ecology = Community Ecol. Community eye health / International Centre for Eye Health = Community Eye Health Community Genetics and Genetic Alliances: Eugenics, Carrier Testing, and Networks of Risk = Genet Soc Community Genetics and Genetic Alliances: Eugenics, Carrier Testing, and Networks of Risk = Genet. Soc. Community genetics = Community Genet Community Genetics = Community Genet Community Genetics = Community Genet. Community Health = Community Health Community health = Community Health (Bristol) Community Health = Community Health (Bristol) Community Health Studies = Community Health St Community Health Studies = Community Health St. Community health studies = Community Health Stud Community Health Studies = Community Health Stud. Community Interpreting = Res Pract Appl Lingu Community Interpreting = Res. Pract. Appl. Lingu. Community Management and Common Property of Coastal Fisheries in Asia and The Pacific: Concepts, Methods and Experiences = Iclarm Cont Community Management and Common Property of Coastal Fisheries in Asia and The Pacific: Concepts, Methods and Experiences = Iclarm. Cont. Community medicine = Community Med Community Medicine = Community Med Community Medicine = Community Med. Community mental health journal = Community Ment Health J Community Mental Health Journal=Community Ment Health J;; Community Mental Health Journal = Community Ment. Health J. Community Mental Health Journal = Community Ment Hlt J Community Mental Health Journal = Community Ment. Hlt. J. Community mental health review = Community Ment Health Rev Community Mental Health Review = Community Ment. Health Rev. Community nurse = Community Nurse Community Nurse = Community Nurse Community Nursing and Primary Healthcare in Twentieth-century Britain = Routl Stud Soc Hist Community Nursing and Primary Healthcare in Twentieth-century Britain = Routl. Stud. Soc. Hist. Community nursing = Community Nurs Community Nursing = Community Nurs. Community of The Renewed Covenant = Chr Jud Ant Community of The Renewed Covenant = Chr. Jud. Ant. Community outlook = Community Outlook Community Outlook = Community Outlook Community practitioner : the journal of the Community Practitioners' & Health Visitors' Association = Community Pract Community Quality-of-life Indicators Best Cases = Commun Qual Life Ind Community Quality-of-life Indicators Best Cases = Commun. Qual. Life. Ind. Community Quality-of-life Indicators: Best Cases Iii = Commun Qual Life Ind Community Quality-of-life Indicators: Best Cases Iii = Commun. Qual. Life. Ind. Community Quality-of-life Indicators: Best Cases Ii = Soc Indic Res Ser Community Quality-of-life Indicators: Best Cases Ii = Soc. Indic. Res. Ser. Community Quality-of-life Indicators: Best Cases Iv = Commun Qual Life Ind Community Quality-of-life Indicators: Best Cases Iv = Commun. Qual. Life. Ind. Community Quality-of-life Indicators: Best Cases V = Commun Qual Life Ind Community Quality-of-life Indicators: Best Cases V = Commun. Qual. Life. Ind. Commutation & Transmission = Commutation Transm Commutation & Transmission = Commutation Transm. Commutative Algebra and Algebraic Geometry = Contemp Math Commutative Algebra and Algebraic Geometry = Contemp. Math. Commutative Algebra and Algebraic Geometry = Lect Notes Pure Appl Commutative Algebra and Algebraic Geometry = Lect. Notes. Pure. Appl. Commutative Algebra: Geometric, Homological, Combinatorial and Computational Aspects = Lect Notes Pure Appl Commutative Algebra: Geometric, Homological, Combinatorial and Computational Aspects = Lect. Notes. Pure. Appl. Commutative Algebra: Interactions With Algebraic Geometry = Contemp Math Commutative Algebra: Interactions With Algebraic Geometry = Contemp. Math. Commutative Algebra / = Lect Notes Math Commutative Algebra / = Lect. Notes. Math. Commutative Algebra, Singularities and Computer Algebra = Nato Sci Ser Ii Math Commutative Algebra, Singularities and Computer Algebra = Nato. Sci. Ser. Ii. Math. Commutative Algebras of Toeplitz Operators On The Bergman Space = Oper Theory Adv Appl Commutative Algebras of Toeplitz Operators On The Bergman Space = Oper. Theory. Adv. Appl. Commutative Ring Theory and Applications = Lect Notes Pure Appl Commutative Ring Theory and Applications = Lect. Notes. Pure. Appl. Commutative Ring Theory = Lect Notes Pure Appl Commutative Ring Theory = Lect. Notes. Pure. Appl. Comos Front-end Materials and Process Technology = Mater Res Soc Symp P Comos Front-end Materials and Process Technology = Mater. Res. Soc. Symp. P. Compact Clinical Guide Series = Comp Clin Guid Ser Compact Clinical Guide Series = Comp. Clin. Guid. Ser. Compact Clinical Guide to Acute Pain Management: An Evidence-based Approach for Nurses = Comp Clin Guid Ser Compact Clinical Guide to Acute Pain Management: An Evidence-based Approach for Nurses = Comp. Clin. Guid. Ser. Compactifying Moduli Spaces for Abelian Varieties = Lect Notes Math Compactifying Moduli Spaces for Abelian Varieties = Lect. Notes. Math. Compaction of Soils, Granulates and Powders = Adv Geotech Engn Tun Compaction of Soils, Granulates and Powders = Adv. Geotech. Engn. Tun. Compact Stars in Binaries = Iau Symp Compact Stars in Binaries = Iau. Symp. Companion Animal Practice = Companion Anim Pract Companion Animal Practice = Companion Anim. Pract. Companion to Urban Design = Routl Companions Companion to Urban Design = Routl. Companions. Comparative Analyses of Operating Hours and Working Times in The European Union = Contrib Econ Comparative Analyses of Operating Hours and Working Times in The European Union = Contrib. Econ. Comparative and Functional Genomics = Compar Funct Genom Comparative and Functional Genomics = Compar. Funct. Genom. Comparative and Functional Genomics = Comp Funct Genom Comparative and Functional Genomics = Comp. Funct. Genom. Comparative and functional genomics = Comp Funct Genomics Comparative and Functional Genomics = Comp. Funct. Genomics Comparative and General Pharmacology = Comparative Comparative and general pharmacology = Comp Gen Pharmacol Comparative and General Pharmacology = Comp. Gen. Pharmacol. Comparative and Global Pedagogies: Equity, Access and Democracy in Education = Glob Comp Educ Polic Comparative and Global Pedagogies: Equity, Access and Democracy in Education = Glob. Comp. Educ. Polic. Comparative and International Education Series = Comp Int Ed Comparative and International Education Series = Comp. Int. Ed. Comparative and International Law Studies = Compar Int Law St Comparative and International Law Studies = Compar. Int. Law St. Comparative and Veterinary Pharmacology = Handb Exp Pharmacol Comparative and Veterinary Pharmacology = Handb. Exp. Pharmacol. Comparative Aspects of Neuropeptide Function = Stud Neuros Comparative Aspects of Neuropeptide Function = Stud. Neuros. Comparative Austronesian Series = Comp Austro Ser Comparative Austronesian Series = Comp. Austro. Ser. Comparative biochemistry and physiology. A, Comparative physiology = Comp Biochem Physiol A Comparative Biochemistry and Physiology. A, Comparative Physiology = Comp. Biochem. Physiol. A Comparative Biochemistry and Physiology, A: Comparative Physiology = Comp. Biochem. Physiol., A: Comp. Physiol. Comparative Biochemistry and Physiology A-molecular and Integrative Physiology = Comp Biochem Phys A Comparative Biochemistry and Physiology A-molecular and Integrative Physiology = Comp. Biochem. Phys. A. Comparative Biochemistry and Physiology A-molecular & Integrative Physiology = Comp Biochem Phys A Comparative Biochemistry and Physiology A-molecular & Integrative Physiology = Comp. Biochem. Phys. A. Comparative Biochemistry and Physiology A-physiology = Comp Biochem Phys A Comparative Biochemistry and Physiology A-physiology = Comp. Biochem. Phys. A. Comparative Biochemistry and Physiology B-biochemistry & Molecular Biology = Comp Biochem Phys B Comparative Biochemistry and Physiology B-biochemistry & Molecular Biology = Comp. Biochem. Phys. B. Comparative biochemistry and physiology. B, Comparative biochemistry = Comp Biochem Physiol B Comparative Biochemistry and Physiology. B, Comparative Biochemistry = Comp. Biochem. Physiol. B Comparative Biochemistry and Physiology, B: Comparative Biochemistry = Comp. Biochem. Physiol., B: Comp. Biochem. Comparative biochemistry and physiology. Biochemistry and molecular biology = Comp Biochem Physiol Biochem Mol Biol Comparative Biochemistry and Physiology. Biochemistry and Molecular Biology = Comp. Biochem. Physiol. Biochem. Mol. Biol. Comparative biochemistry and physiology. C, Comparative pharmacology and toxicology = Comp Biochem Physiol C Comparative Biochemistry and Physiology. C, Comparative Pharmacology and Toxicology. = Comp. Biochem. Physiol. C Comparative Biochemistry and Physiology, C: Comparative Pharmacology and Toxicology = Comp. Biochem. Physiol., C: Comp. Pharmacol. Toxicol. Comparative biochemistry and physiology. C: Comparative pharmacology = Comp Biochem Physiol C Comparative Biochemistry and Physiology. C, Comparative Pharmacology = Comp. Biochem. Physiol. C Comparative biochemistry and physiology. Comparative physiology = Comp Biochem Physiol Comp Physiol Comparative Biochemistry and Physiology. Comparative Physiology = Comp. Biochem. Physiol. Comp. Physiol. Comparative biochemistry and physiology = Comp Biochem Physiol Comparative Biochemistry and Physiology = Comp Biochem Physiol Comparative Biochemistry and Physiology = Comp. Biochem. Physiol. Comparative Biochemistry and Physiology C-pharmacology Toxicology & Endocrinology = Comp Biochem Phys C Comparative Biochemistry and Physiology C-pharmacology Toxicology & Endocrinology = Comp. Biochem. Phys. C. Comparative Biochemistry and Physiology C-toxicology & Pharmacology = Comp Biochem Phys C Comparative Biochemistry and Physiology C-toxicology & Pharmacology = Comp. Biochem. Phys. C. Comparative Biochemistry and Physiology D-genomics & Proteomics = Comp Biochem Phys D Comparative Biochemistry and Physiology D-genomics & Proteomics = Comp. Biochem. Phys. D. Comparative Biochemistry and Physiology. Part A, Molecular and Integrative Physiology = Comp. Biochem. Physiol. A. Mol. Integr. Physiol. Comparative biochemistry and physiology. Part A, Molecular & integrative physiology = Comp Biochem Physiol A Mol Integr Physiol Comparative Biochemistry and Physiology Part A: Molecular & Integrative Physiology = Comp. Biochem. Physiol. A: Mol. Integr. Physiol. Comparative Biochemistry and Physiology, Part A: Molecular & Integrative Physiology = Comp. Biochem. Physiol., Part A: Mol. Integr. Physiol. Comparative biochemistry and physiology. Part A, Physiology = Comp Biochem Physiol A Physiol Comparative Biochemistry and Physiology. Part A, Physiology = Comp. Biochem. Physiol. A Physiol. Comparative Biochemistry and Physiology Part B: Biochemistry and Molecular Biology = Comp. Biochem. Physiol. B: Biochem. Mol. Biol. Comparative Biochemistry and Physiology. Part B, Biochemistry and Molecular Biology = Comp. Biochem. Physiol. B Biochem. Mol. Biol. Comparative biochemistry and physiology. Part B, Biochemistry & molecular biology = Comp Biochem Physiol B Biochem Mol Biol Comparative Biochemistry and Physiology, Part B: Biochemistry & Molecular Biology = Comp. Biochem. Physiol., Part B: Biochem. Mol. Biol. Comparative Biochemistry and Physiology Part C: Pharmacology Toxicology and Endocrinology = Comp. Biochem. Physiol. C: Pharmacol. Toxicol. Endocrinol. Comparative Biochemistry and Physiology. Part C, Pharmacology, Toxicology and Endocrinology = Comp. Biochem. Physiol. C Pharmacol. Toxicol. Endocrinol. Comparative biochemistry and physiology. Part C, Pharmacology, toxicology & endocrinology = Comp Biochem Physiol C Pharmacol Toxicol Endocrinol Comparative Biochemistry and Physiology Part C: Toxicology & Pharmacology = Comp. Biochem. Physiol. C: Toxicol. Pharmacol. Comparative Biochemistry and Physiology, Part C: Toxicology & Pharmacology = Comp. Biochem. Physiol., Part C: Toxicol. Pharmacol. Comparative Biochemistry and Physiology Part D: Genomics and Proteomics = Comp. Biochem. Physiol. D: Genomics Proteomics Comparative biochemistry and physiology. Part D, Genomics & proteomics = Comp Biochem Physiol Part D Genomics Proteomics Comparative Biochemistry and Physiology, Part D: Genomics & Proteomics = Comp. Biochem. Physiol., Part D: Genomics Proteomics Comparative biochemistry and physiology. Pharmacology, toxicology and endocrinology = Comp Biochem Physiol Pharmacol Toxicol Endocrinol Comparative Biochemistry and Physiology. Pharmacology, Toxicology and Endocrinology = Comp. Biochem. Physiol. Pharmacol. Toxicol. Endocrinol. Comparative biochemistry and physiology. Physiology = Comp Biochem Physiol Physiol Comparative Biochemistry and Physiology. Physiology = Comp. Biochem. Physiol. Physiol. Comparative Biochemistry and Physiology. Toxicology and Pharmacology = Comp. Biochem. Physiol. C Toxicol. Pharmacol. Comparative biochemistry and physiology. Toxicology & pharmacology : CBP = Comp Biochem Physiol C Toxicol Pharmacol Comparative Central European Holocaust Studies = Comp Cult Stud Comparative Central European Holocaust Studies = Comp. Cult. Stud. Comparative Civilizations Review = Comp Civiliz Rev Comparative Civilizations Review = Comp. Civiliz. Rev. Comparative Cognition and Neuroscience = Compar Cogn Comparative Cognition and Neuroscience = Compar. Cogn. Comparative Constitutional Law = Res Hand Comp Law Comparative Constitutional Law = Res. Hand. Comp. Law Comparative Critical Studies = Comp Crit Stud Comparative Critical Studies = Comp. Crit. Stud. Comparative Cultural Studies = Comp Cult Stud Comparative Cultural Studies = Comp. Cult. Stud. Comparative Cytogenetics = Comp Cytogenet Comparative Cytogenetics = Comp. Cytogenet. Comparative Dental Morphology = Front Oral Biol Comparative Dental Morphology = Front. Oral. Biol. Comparative Development and Policy in Asia = Comp Dev Policy Asia Comparative Development and Policy in Asia = Comp. Dev. Policy Asia Comparative Drama = Comp Drama Comparative Drama = Comp. Drama Comparative Economic Studies=Compar. Econ. Stud. Comparative economic studies = Comp Econ Stud Comparative Education = Comp Educ Comparative Education = Comp. Educ. Comparative Education Research: Approaches and Methods = Cerc Stud Comp Educ Comparative Education Research: Approaches and Methods = Cerc. Stud. Comp. Educ. Comparative education review = Comp Educ Rev Comparative Education Review = Comp Educ Rev Comparative Education Review = Comp. Educ. Rev. Comparative Effectiveness of Medical Treatments = Health Care Iss Cost Comparative Effectiveness of Medical Treatments = Health. Care. Iss. Cost. Comparative E-government = Integr Ser Inform Sy Comparative E-government = Integr. Ser. Inform. Sy. Comparative Environmental Politics = Adv Glob Change Res Comparative Environmental Politics = Adv. Glob. Change. Res. Comparative European Politics = Comp Eur Polit Comparative European Politics = Comp. Eur. Polit. Comparative Evaluation of Multilingual Information Access Systems = Lect Notes Comput Sc Comparative Evaluation of Multilingual Information Access Systems = Lect. Notes. Comput. Sc. Comparative Evaluation of Multillingual Information Access Systems = Lect Notes Comput Sc Comparative Evaluation of Multillingual Information Access Systems = Lect. Notes. Comput. Sc. Comparative Evaluation of Xml Information Retrieval Systems = Lect Notes Comput Sc Comparative Evaluation of Xml Information Retrieval Systems = Lect. Notes. Comput. Sc. Comparative Feminist Studies Series = Comp Fem Stud Ser Comparative Feminist Studies Series = Comp. Fem. Stud. Ser. Comparative Gene Finding = Comput Biol Ser Comparative Gene Finding = Comput. Biol. Ser. Comparative Genomics = Lect N Bioinformat Comparative Genomics = Lect. N. Bioinformat. Comparative Genomics = Lect Notes Comput Sc Comparative Genomics = Lect. Notes. Comput. Sc. Comparative Genomics, Proceedings = Lect N Bioinformat Comparative Genomics, Proceedings = Lect. N. Bioinformat. Comparative Genomics, Proceedings = Lect Notes Comput Sc Comparative Genomics, Proceedings = Lect. Notes. Comput. Sc. Comparative Governance Reform in Asia: Democracy, Corruption, and Government Trust = Res Public Policy An Comparative Governance Reform in Asia: Democracy, Corruption, and Government Trust = Res. Public. Policy. An. Comparative Governance Reform in Asia: Democracy, Corruption, and Government Trust = Res Publ P Comparative Governance Reform in Asia: Democracy, Corruption, and Government Trust = Res. Publ. P. Comparative Grammar of British English Dialects: Agreement, Gender, Relative Clauses = Top Engl Linguist Comparative Grammar of British English Dialects: Agreement, Gender, Relative Clauses = Top. Engl. Linguist. Comparative Group Studies = Comp Group Stud Comparative Group Studies = Comp. Group Stud. Comparative Haematology International = Comp Haematol Int Comparative Haematology International = Comp. Haematol. Int. Comparative hepatology = Comp Hepatol Comparative Immunology Microbiology and Infectious Diseases = Comp Immunol Microb Comparative Immunology Microbiology and Infectious Diseases = Comp. Immunol. Microb. Comparative immunology, microbiology and infectious diseases = Comp Immunol Microbiol Infect Dis Comparative Immunology, Microbiology and Infectious Diseases=Comp Immunol Microbiol Infect Dis;; Comparative Immunology, Microbiology and Infectious Diseases = Comp. Immunol. Microbiol. Infect. Dis. Comparative Information Technology: Languages, Societies and The Internet = Glob Comp Educ Polic Comparative Information Technology: Languages, Societies and The Internet = Glob. Comp. Educ. Polic. Comparative labor law journal : a publication of the U.S. National Branch of the International Society for Labor Law and Social Security [and] the Wharton School, and the Law School of the University of Pennsylvania = Comp Labor Law J Comparative Law in The 21st Century = Wg Hart Leg Worksh S Comparative Law in The 21st Century = Wg. Hart. Leg. Worksh. S. Comparative law = Nihon Univ Comp Law Comparative Literature = CompLit Comparative Literature = Comp Literature Comparative Literature = Comp. Literature Comparative Literature Studies = CLS Comparative Literature Studies = Comp Literature Stud Comparative Literature Studies = Comp. Literature Stud. Comparative Magnetospheres = Adv Space Res Comparative Magnetospheres = Adv. Space. Res. Comparative Magnetospheres = Adv Space Res-series Comparative Magnetospheres = Adv. Space. Res-series. Comparative Medicine = Comparative Med Comparative Medicine = Comparative Med. Comparative medicine = Comp Med Comparative Medicine = Comp. Med. Comparative medicine East and West = Comp Med East West Comparative Medicine East and West = Comp Med East West Comparative Medicine East and West = Comp. Med. East West Comparative Molecular Carcinogenesis = Prog Clin Biol Res Comparative Molecular Carcinogenesis = Prog. Clin. Biol. Res. Comparative Parasitology = Comp Parasitol Comparative Parasitology = Comp. Parasitol. Comparative Perspectives On Modern Asia = Comp Perspect Mod As Comparative Perspectives On Modern Asia = Comp. Perspect. Mod. As. Comparative Physical Education and Sport = Com Phys Ed Comparative Physical Education and Sport = Com. Phys. Ed. Comparative Physiology and Ecology = Comp Physiol Ecol Comparative Physiology and Ecology = Comp. Physiol. Ecol. Comparative Physiology = Comp Physiol Comparative Physiology = Comp. Physiol. Comparative political studies = Comp Polit Stud Comparative Political Studies = Comp Polit Stud Comparative Political Studies = Comp. Polit. Stud. Comparative politics = Comp Polit Comparative Politics = Comp Polit Comparative Politics = Comp. Polit. Comparative Politics (series) = Comp Polit Comparative Politics (series) = Comp. Polit. Comparative Politics: The Principal-agent Perspective = Routl Res Comp Polit Comparative Politics: The Principal-agent Perspective = Routl. Res. Comp. Polit. Comparative Public Administration = Res Public Policy An Comparative Public Administration = Res. Public Policy. An. Comparative Reconnection Studies At The Sun and in Planetary Magnetospheres = Adv Space Res Comparative Reconnection Studies At The Sun and in Planetary Magnetospheres = Adv. Space. Res. Comparative Reconnection Studies At The Sun and in Planetary Magnetospheres = Adv Space Res-series Comparative Reconnection Studies At The Sun and in Planetary Magnetospheres = Adv. Space. Res-series. Comparative Risk Assessment and Environmental Decision Making = Nato Sci S Ss Iv Ear Comparative Risk Assessment and Environmental Decision Making = Nato. Sci. S. Ss. Iv. Ear. Comparative Roles of Suspension-feeders in Ecosystems = Nato Sci S Ss Iv Ear Comparative Roles of Suspension-feeders in Ecosystems = Nato. Sci. S. Ss. Iv. Ear. Comparative Social Research = Comp Soc Re Comparative Social Research = Comp. Soc. Re. Comparative social research = Comp Soc Res Comparative Social Research = Comp Soc Res Comparative Social Research = Comp. Soc. Res. Comparative Sociology = Comp Sociol Comparative Sociology = Comp. Sociol. Comparative Spermatology 20 Years After = Serono Sym Comparative Spermatology 20 Years After = Serono. Sym. Comparative Strategy = Comp Strategy Comparative Strategy = Comp. Strategy Comparative studies in society and history = Comp Stud Soc Hist Comparative Studies in Society and History = Comp Stud Soc Hist Comparative Studies in Society and History = Comp. Stud. Soc. Hist. Comparative Studies In Society And History = Comp. Stud. Soc. Hist. Comparative Studies in Society and History = CSSH Comparative Studies of Culture and Power = Comp Soc Res Comparative Studies of Culture and Power = Comp. Soc. Res. Comparative Studies of Magnetospheric Phenomena = Adv Space Res Comparative Studies of Magnetospheric Phenomena = Adv. Space. Res. Comparative Studies of Magnetospheric Phenomena = Adv Space Res-series Comparative Studies of Magnetospheric Phenomena = Adv. Space. Res-series. Comparative Studies of Social and Political Elites = Comp Soc Res Comparative Studies of Social and Political Elites = Comp. Soc. Res. Comparative Studies of The Moon and Mercury = Adv Space Res Comparative Studies of The Moon and Mercury = Adv. Space. Res. Comparative Studies of The Moon and Mercury = Adv Space Res-series Comparative Studies of The Moon and Mercury = Adv. Space. Res-series. Comparative Studies On The Judicial Review System in East and Southeast Asia = Pub Law E Se Asia Comparative Studies On The Judicial Review System in East and Southeast Asia = Pub. Law. E. Se. Asia Comparative Study of Professional Accountants Judgements = Stud Manag Financ Ac Comparative Study of Professional Accountants Judgements = Stud. Manag. Financ. Ac. Comparative Third Sector Governance in Asia: Structure, Process, and Political Economy = Nonprofit Civ Soc St Comparative Third Sector Governance in Asia: Structure, Process, and Political Economy = Nonprofit. Civ. Soc. St. Comparative urban research = Comp Urban Res Comparative Vertebrate Exercise Physiology: Phyletic Adaptations = Adv Vet Sci Comp Med Comparative Vertebrate Exercise Physiology: Phyletic Adaptations = Adv. Vet. Sci. Comp. Med. Comparative Vertebrate Exercise Physiology: Unifying Physiological Principles = Adv Vet Sci Comp Med Comparative Vertebrate Exercise Physiology: Unifying Physiological Principles = Adv. Vet. Sci. Comp. Med. Compare-a Journal of Comparative Education = Compare Compare-a Journal of Comparative Education = Compare. Compare = Compare Comparing Distributions = Springer Ser Stat Comparing Distributions = Springer. Ser. Stat. Comparing European Workers, Pt A: Experiences and Inequalities = Res Sociol Work Comparing European Workers, Pt A: Experiences and Inequalities = Res. Sociol. Work. Comparing Glasshouse and Field Pesticide Performance Ii = Br Crop Pr Comparing Glasshouse and Field Pesticide Performance Ii = Br. Crop. Pr. Comparison Methods and Stability Theory = Lect Notes Pure Appl Comparison Methods and Stability Theory = Lect. Notes. Pure. Appl. Comparison of The Bayesian and Frequentist Approaches to Estimation = Springer Ser Stat Comparison of The Bayesian and Frequentist Approaches to Estimation = Springer. Ser. Stat. Compatible Spatial Discretizations = Ima V Math Compatible Spatial Discretizations = Ima. V. Math. Compcon: Ieee Computer Society International Conference = Compcon Ieee Compcon: Ieee Computer Society International Conference = Compcon. Ieee Compel 2000: 7th Workshop On Computers in Power Electronics, Proceedings = Ann Worksh Comp Pow Compel 2000: 7th Workshop On Computers in Power Electronics, Proceedings = Ann. Worksh. Comp. Pow. Compel 2002: Ieee Workshop On Computers in Power Electronics, Proceedings = Ann Worksh Comp Pow Compel 2002: Ieee Workshop On Computers in Power Electronics, Proceedings = Ann. Worksh. Comp. Pow. Com.p.el. 98: 6th Workshop On Computer in Power Electronics, Record = Ann Worksh Comp Pow Com.p.el. 98: 6th Workshop On Computer in Power Electronics, Record = Ann. Worksh. Comp. Pow. COMPEL = COMPEL Compel-the International Journal for Computation and Mathematics in Electrical and Electronic Engineering = Compel Compel-the International Journal for Computation and Mathematics in Electrical and Electronic Engineering = Compel. Compendium = Compendium Compendium-continuing Education for Veterinarians = Compendium Compendium-continuing Education for Veterinarians = Compendium. Compendium (Newtown, Pa.) = Compendium Compendium (Newtown, Pa.). Supplement = Compend Suppl Compendium of Continuing Education in Dentistry = Compend. Contin. Educ. Dent. Compendium of continuing education in dentistry (Jamesburg, N.J. : 1995) = Compend Contin Educ Dent Compendium of continuing education in dentistry. (Jamesburg, N.J. : 1995). Supplement = Compend Contin Educ Dent Suppl Compendium of The Microbiological Spoilage of Foods and Beverages = Food Microbiol Food Compendium of The Microbiological Spoilage of Foods and Beverages = Food. Microbiol. Food. Compendium On Continuing Education for The Practicing Veterinarian = Comp Cont Educ Pract Compendium On Continuing Education for The Practicing Veterinarian = Comp. Cont. Educ. Pract. Compendium. Supplement = Compend. Suppl. Compendium (Yardley, PA) = Compend Compensation and benefits review = Compens Benefits Rev Compensation and Benefits Review = Compens. Benefits Rev. Compensation review = Compens Rev Compensation Review = Compens Rev Compensation Review = Compens. Rev. Compensatory Justice = Nomos Compensatory Justice = Nomos. Competence and Vulnerability in Biomedical Research = Int Libr Eth Law New Competence and Vulnerability in Biomedical Research = Int. Libr. Eth. Law. New. Competence Building and Leveraging in Interorganizational Relations = Adv Appl Bus Strateg Competence Building and Leveraging in Interorganizational Relations = Adv. Appl. Bus. Strateg. Competence Perspectives On Resources, Stakeholders and Renewal = Adv Appl Bus Strateg Competence Perspectives On Resources, Stakeholders and Renewal = Adv. Appl. Bus. Strateg. Competencies, Higher Education and Career in Japan and The Netherlands = High Educ Dynam Competencies, Higher Education and Career in Japan and The Netherlands = High. Educ. Dynam. Competency-based Critical Care = Compet-base Crit Car Competency-based Critical Care = Compet-base. Crit. Car. Competent Design By Castings: Improvements in A Nordic Project = Vtt Symp Competent Design By Castings: Improvements in A Nordic Project = Vtt. Symp. Competing and Consensual Voices: The Theory and Practice of Argument = Lang Educ Lib Competing and Consensual Voices: The Theory and Practice of Argument = Lang. Educ. Lib. Competing for Knowledge: Creating, Connecting and Growing = Routl Stud Glob Comp Competing for Knowledge: Creating, Connecting and Growing = Routl. Stud. Glob. Comp. Competing Models of Linguistic Change: Evolution and Beyond = Amst Stud Theory His Competing Models of Linguistic Change: Evolution and Beyond = Amst. Stud. Theory. His. Competing Values Leadership: Creating Values in Organizations = New Horiz Manag Competing Values Leadership: Creating Values in Organizations = New. Horiz. Manag. Competing Visions of Teacher Knowledge : Proceedings From An Ncrte Seminar for Education Policymakers, Vol 1 = Ncrte Conf Competing Visions of Teacher Knowledge : Proceedings From An Ncrte Seminar for Education Policymakers, Vol 1 = Ncrte Conf. Competing Visions of Teacher Knowledge : Proceedings From An Ncrte Seminar for Education Policymakers, Vol 2 = Ncrte Conf Competing Visions of Teacher Knowledge : Proceedings From An Ncrte Seminar for Education Policymakers, Vol 2 = Ncrte Conf. Competing Visions of World Order: Global Moments and Movements, 1880s-1930s = Palg Mac Ser Trans Competing Visions of World Order: Global Moments and Movements, 1880s-1930s = Palg. Mac. Ser. Trans. Competition and Innovation in Postal Services = T Reg Econ Competition and Innovation in Postal Services = T. Reg. Econ. Competition and Profitability in European Financial Services: Strategic, Systemic and Policy Issues = Routl Int Stud Money Competition and Profitability in European Financial Services: Strategic, Systemic and Policy Issues = Routl. Int. Stud. Money. Competition and Regulation in The Postal and Delivery Sector = Adv Regul Econ Competition and Regulation in The Postal and Delivery Sector = Adv. Regul. Econ. Competition in A Consolidating Environment = Zi Sch Bus Fin Ma Competition in A Consolidating Environment = Zi. Sch. Bus. Fin. Ma. Competition in The Provision of Local Public Goods: Single Function Jurisdictions and Individual Choice = Stud Fiscal Fed Stat Competition in The Provision of Local Public Goods: Single Function Jurisdictions and Individual Choice = Stud. Fiscal. Fed. Stat. Competition Law, Innovation and Antitrust: An Analysis of Tying and Technological Integration = New Horiz Compet Law Competition Law, Innovation and Antitrust: An Analysis of Tying and Technological Integration = New. Horiz. Compet. Law. Competition Policy Analysis: An Integrated Approach = Zew Econ Stud Competition Policy Analysis: An Integrated Approach = Zew. Econ. Stud. Competition Policy International = Compet Policy Int Competition Policy International = Compet. Policy Int. Competition, Regulation, and Convergence = Telecommun Competition, Regulation, and Convergence = Telecommun. Competition, Trust, and Cooperation: A Comparative Study = St Econ Ethic Philos Competition, Trust, and Cooperation: A Comparative Study = St. Econ. Ethic. Philos. Competitive Advantage and Competition Policy in Developing Countries = Crc Ser Compet Regul Competitive Advantage and Competition Policy in Developing Countries = Crc. Ser. Compet. Regul. Competitive Advantage in The Contracting Business = Bus Iss Compet Entre Competitive Advantage in The Contracting Business = Bus. Iss. Compet. Entre. Competitive Industrial Development in The Age of Information = Rout Stud Int Bus Competitive Industrial Development in The Age of Information = Rout. Stud. Int. Bus. Competitive Regionalism - Fta Diffusion in The Pacific Rim = Int Polit Econ Ser Competitive Regionalism - Fta Diffusion in The Pacific Rim = Int. Polit. Econ. Ser. Competitive State = Int St Econ Competitive State = Int. St. Econ. Competitive Strategies and Policies for Tourism Destinations: Quality, Innovation and Promotion = Tour Hosp Dev Manag Competitive Strategies and Policies for Tourism Destinations: Quality, Innovation and Promotion = Tour. Hosp. Dev. Manag. Compilation of The Papers Presented At The Workshop Natural Analogues for Disposal of Radioactive Waste = K F K Reports Compilation of The Papers Presented At The Workshop Natural Analogues for Disposal of Radioactive Waste = K. F. K. Reports. Compiler Compilers = Lect Notes Comput Sc Compiler Compilers = Lect. Notes. Comput. Sc. Compiler Construction = Lect Notes Comput Sc Compiler Construction = Lect. Notes. Comput. Sc. Compiler Construction, Proceedings = Lect Notes Comput Sc Compiler Construction, Proceedings = Lect. Notes. Comput. Sc. Complement and inflammation = Complement Inflamm Complement and Inflammation = Complement Inflamm. Complement and Inflammation = Complement Inflammat Complement and Inflammation = Complement Inflammat. Complementarity: Applications, Algorithms and Extensions = Appl Optim Complementarity: Applications, Algorithms and Extensions = Appl. Optim. Complementarity: Applications, Algorithms and Extensions = Appl Optimizat Complementarity: Applications, Algorithms and Extensions = Appl. Optimizat. Complementarity of Mind and Body: Realizing The Dream of Descartes, Einstein and Eccles = World Philos Ser Complementarity of Mind and Body: Realizing The Dream of Descartes, Einstein and Eccles = World. Philos. Ser. Complementary and Alternative Approaches to Biomedicine = Adv Exp Med Biol Complementary and Alternative Approaches to Biomedicine = Adv. Exp. Med. Biol. Complementary and Alternative Medicine: Ethics, The Patient, and The Physician = Biomed Ethics Rev Complementary and Alternative Medicine: Ethics, The Patient, and The Physician = Biomed. Ethics. Rev. Complementary Approaches to Double and Multiple Star Research = Astr Soc P Complementary Approaches to Double and Multiple Star Research = Astr. Soc. P. Complementary therapies in clinical practice = Complement Ther Clin Pract Complementary therapies in medicine = Complement Ther Med Complementary Therapies in Medicine = Complement Ther Med Complementary Therapies in Medicine = Complement. Ther. Med. Complementary Therapies in Nursing and Midwifery = Complement. Ther. Nurs. Midwifery Complementary therapies in nursing & midwifery = Complement Ther Nurs Midwifery Complementation: Cognitive and Functional Perspectives = Conv Evi Lang Commun Complementation: Cognitive and Functional Perspectives = Conv. Evi. Lang. Commun. Complement (Basel, Switzerland) = Complement Complement = Complement Complement = Complement Inflammat Complement = Complement Inflammat. Complementi di Matematica per l'Indirizzo Didàttico = Complementi Mat. Indirizzo Didàtt. Completeness Theory for Propositional Logics = Stud Univers Log Completeness Theory for Propositional Logics = Stud. Univers. Log. Complete Project Management Office Handbook, Second Edition = Esi Int Proj Manag S Complete Project Management Office Handbook, Second Edition = Esi. Int. Proj. Manag. S. Complete Scattering Experiments = Phys Atoms Complete Scattering Experiments = Phys. Atoms. Completing The Inventory of The Solar System = Astr Soc P Completing The Inventory of The Solar System = Astr. Soc. P. Completion of The Oil Era: The Economic Impact = Energ Polic Polit Pr Completion of The Oil Era: The Economic Impact = Energ. Polic. Polit. Pr. Complex Adaptive Structures = P Soc Photo-opt Ins Complex Adaptive Structures = P. Soc. Photo-opt. Ins. Complex Adaptive Systems: An Introduction to Computational Models of Social Life: An Introduction to Computational Models of Social Life = Princ Stud Complex Complex Adaptive Systems: An Introduction to Computational Models of Social Life: An Introduction to Computational Models of Social Life = Princ. Stud. Complex Complex Adaptive Systems = Com Adap Sy Complex Adaptive Systems = Com. Adap. Sy. Complex Adaptive Systems = Complex Adapt. Systems Complex Adaptive Systems = From Anim Animat Complex Adaptive Systems = From. Anim. Animat. Complex Algebraic Varieties = Lect Notes Math Complex Algebraic Varieties = Lect. Notes. Math. Complex Analysis 2: Riemann Surfaces, Several Complex Variables, Abelian Functions, Higher Modular Functions = Universitext Complex Analysis 2: Riemann Surfaces, Several Complex Variables, Abelian Functions, Higher Modular Functions = Universitext. Complex Analysis and Dynamical Systems = Contemp Math Complex Analysis and Dynamical Systems = Contemp. Math. Complex Analysis and Dynamical Systems Ii = Contemp Math Complex Analysis and Dynamical Systems Ii = Contemp. Math. Complex Analysis and Dynamical Systems Iii = Contemp Math Complex Analysis and Dynamical Systems Iii = Contemp. Math. Complex Analysis and Geometry = Lect Notes Pure Appl Complex Analysis and Geometry = Lect. Notes. Pure. Appl. Complex Analysis and Geometry = Ohio St U M Complex Analysis and Geometry = Ohio. St. U. M. Complex Analysis and Geometry = Prog Math Complex Analysis and Geometry = Prog. Math. Complex Analysis and Its Applications = Pitman Res Complex Analysis and Its Applications = Pitman. Res. Complex Analysis and Operator Theory = Complex Anal Oper Th Complex Analysis and Operator Theory = Complex Anal. Oper. Th. Complex Analysis: Fundamentals of The Classical Theory of Functions = Mod Birkhauser Class Complex Analysis: Fundamentals of The Classical Theory of Functions = Mod. Birkhauser. Class. Complex Analysis, Second Edition = Universitext Complex Analysis, Second Edition = Universitext. Complex Analysis: Several Complex Variables and Connections With Pde Theory and Geometry = Trends Math Complex Analysis: Several Complex Variables and Connections With Pde Theory and Geometry = Trends. Math. Complex Behaviour of Glassy Systems = Lect Notes Phys Complex Behaviour of Glassy Systems = Lect. Notes. Phys. Complex Carbohydrates in Drug Research = Alfred Benzon Symp S Complex Carbohydrates in Drug Research = Alfred. Benzon. Symp. S. Complex Commercial Fraud = Aic Conf P Complex Commercial Fraud = Aic. Conf. P. CompLex = CompLex Complex Computing-networks = Springer Proc Phys Complex Computing-networks = Springer. Proc. Phys. Complex, Contact and Symmetric Manifolds: in Honor of L. Vanhecke = Prog Math Complex, Contact and Symmetric Manifolds: in Honor of L. Vanhecke = Prog. Math. Complex Data Modeling and Computationally Intensive Statistical Methods = Contrib Stat Complex Data Modeling and Computationally Intensive Statistical Methods = Contrib. Stat. Complex Dynamics: Advanced System Dynamics in Complex Variables = Intel Syst Contr Aut Complex Dynamics: Advanced System Dynamics in Complex Variables = Intel. Syst. Contr. Aut. Complex Dynamics and Fluctuations in Biomedical Photonics Iii = P Soc Photo-opt Ins Complex Dynamics and Fluctuations in Biomedical Photonics Iii = P. Soc. Photo-opt. Ins. Complex Dynamics and Fluctuations in Biomedical Photonics Ii = P Soc Photo-opt Ins Complex Dynamics and Fluctuations in Biomedical Photonics Ii = P. Soc. Photo-opt. Ins. Complex Dynamics and Fluctuations in Biomedical Photonics Iv = Proc Spie Complex Dynamics and Fluctuations in Biomedical Photonics Iv = Proc. Spie. Complex Dynamics and Fluctuations in Biomedical Photonics Iv = P Soc Photo-opt Ins Complex Dynamics and Fluctuations in Biomedical Photonics Iv = P. Soc. Photo-opt. Ins. Complex Dynamics and Fluctuations in Biomedical Photonics V = P Soc Photo-opt Ins Complex Dynamics and Fluctuations in Biomedical Photonics V = P. Soc. Photo-opt. Ins. Complex Dynamics and Renormalization = Ann Math Stud Complex Dynamics and Renormalization = Ann. Math. Stud. Complex Dynamics = Contemp Math Complex Dynamics = Contemp. Math. Complex Dynamics, Fluctuations, Chaos, and Fractals in Biomedical Photonics = Pro Biomed Opt Imag Complex Dynamics, Fluctuations, Chaos, and Fractals in Biomedical Photonics = Pro. Biomed. Opt. Imag. Complex Dynamics in Physiological Systems: From Heart to Brain = Und Com Sys Complex Dynamics in Physiological Systems: From Heart to Brain = Und. Com. Sys. Complex Effects in Large Eddy Simulations = Lect Notes Comp Sci Complex Effects in Large Eddy Simulations = Lect. Notes. Comp. Sci. Complex Enzymes in Microbial Natural Product Biosynthesis, Part A: Overview Articles and Peptides = Method Enzymol Complex Enzymes in Microbial Natural Product Biosynthesis, Part A: Overview Articles and Peptides = Method. Enzymol. Complex Enzymes in Microbial Natural Product Biosynthesis, Part B: Polyketides, Aminocoumarins and Carbohydrates = Method Enzymol Complex Enzymes in Microbial Natural Product Biosynthesis, Part B: Polyketides, Aminocoumarins and Carbohydrates = Method. Enzymol. Complex Fluids = Mat Res S C Complex Fluids = Mat. Res. S. C. Complex Geometry and Analysis = Lect Notes Math Complex Geometry and Analysis = Lect. Notes. Math. Complex Geometry = Lect Notes Pure Appl Complex Geometry = Lect. Notes. Pure. Appl. Complex Intelligent Systems and Their Applications = Springer Ser Optim A Complex Intelligent Systems and Their Applications = Springer. Ser. Optim. A. Complexity Analysis and Control for Social, Economical and Biological Systems = Adv Inf Syst Sci Complexity Analysis and Control for Social, Economical and Biological Systems = Adv. Inf. Syst. Sci. Complexity and Artificial Markets = Lect Notes Econ Math Complexity and Artificial Markets = Lect. Notes. Econ. Math. Complexity and Knowledge Management: Understanding The Role of Knowledge in The Management of Social Networks = Manag Complex Complexity and Knowledge Management: Understanding The Role of Knowledge in The Management of Social Networks = Manag. Complex. Complexity and Nonlinear Dynamics = Proc Spie Complexity and Nonlinear Dynamics = Proc. Spie. Complexity and Nonlinear Dynamics = P Soc Photo-opt Ins Complexity and Nonlinear Dynamics = P. Soc. Photo-opt. Ins. Complexity and Social Movements: Multitudes At The Edge of Chaos = Int Libr Sociol Complexity and Social Movements: Multitudes At The Edge of Chaos = Int. Libr. Sociol. Complexity and Spatial Networks; in Search of Simplicity = Adv Spat Sci Complexity and Spatial Networks; in Search of Simplicity = Adv. Spat. Sci. Complexity and The Economy: Implications for Economic Policy = Eur Assoc Evol Polit Complexity and The Economy: Implications for Economic Policy = Eur. Assoc. Evol. Polit. Complexity and The Experience of Values, Conflict and Compromise in Organizations = Routl Stud Complex M Complexity and The Experience of Values, Conflict and Compromise in Organizations = Routl. Stud. Complex. M. Complexity, Chaos, and Biological Evolution = Nato Adv Sci I B-phy Complexity, Chaos, and Biological Evolution = Nato. Adv. Sci. I. B-phy. Complexity = Complexity Complexity = Complexity Complexity: Design Strategy and World View = Context Archit Complexity: Design Strategy and World View = Context. Archit. Complexity, Difference and Identity: An Ethical Perspective = Issues Bus Ethics Complexity, Difference and Identity: An Ethical Perspective = Issues. Bus. Ethics. Complexity From Microscopic to Macroscopic Scales: Coherence and Large Deviations = Nato Sci Ser Ii-math Complexity From Microscopic to Macroscopic Scales: Coherence and Large Deviations = Nato. Sci. Ser. Ii-math. Complexity From Microscopic to Macroscopic Scales: Coherence and Large Deviations = Nato Sci Ser Ii Math Complexity From Microscopic to Macroscopic Scales: Coherence and Large Deviations = Nato. Sci. Ser. Ii. Math. Complexity Hints for Economic Policy = New Econ Windows Complexity Hints for Economic Policy = New. Econ. Windows. Complexity in Biological Information Processing = Novart Fdn Symp Complexity in Biological Information Processing = Novart. Fdn. Symp. Complexity in Ecological Systems Series = Com Eco Sys Complexity in Ecological Systems Series = Com. Eco. Sys. Complexity International = Complex. Int. Complexity International = Complexity Int. Complexity International = Complexity Internat. Complexity Leadership, Pt 1: Conceptual Foundations = Leadersh Horiz Complexity Leadership, Pt 1: Conceptual Foundations = Leadersh. Horiz. Complexity Management in Fuzzy Systems = Stud Fuzz Soft Comp Complexity Management in Fuzzy Systems = Stud. Fuzz. Soft. Comp. Complexity, Metastability and Nonextensivity = Aip Conf Proc Complexity, Metastability and Nonextensivity = Aip. Conf. Proc. Complexity, Metastability and Nonextensivity = Sci Cult Ser Phys Complexity, Metastability and Nonextensivity = Sci. Cult. Ser. Phys. Complexity of Creativity = Synth Libr Complexity of Creativity = Synth. Libr. Complexity of Proceduralized Tasks = Springer Ser Reliab Complexity of Proceduralized Tasks = Springer. Ser. Reliab. Complexity Perspectives in Innovation and Social Change = Methods Ser Complexity Perspectives in Innovation and Social Change = Methods. Ser. Complexity Scales and Licensing in Phonology = Stud Generat Gramm Complexity Scales and Licensing in Phonology = Stud. Generat. Gramm. Complexity = Sfi S Sci C Complexity = Sfi. S. Sci. C. Complex Light and Optical Forces Iii = P Soc Photo-opt Ins Complex Light and Optical Forces Iii = P. Soc. Photo-opt. Ins. Complex Light and Optical Forces Ii = P Soc Photo-opt Ins Complex Light and Optical Forces Ii = P. Soc. Photo-opt. Ins. Complex Light and Optical Forces Iv = Proc Spie Complex Light and Optical Forces Iv = Proc. Spie. Complex Light and Optical Forces Iv = P Soc Photo-opt Ins Complex Light and Optical Forces Iv = P. Soc. Photo-opt. Ins. Complex Light and Optical Forces = Proc Spie Complex Light and Optical Forces = Proc. Spie. Complex Light and Optical Forces = P Soc Photo-opt Ins Complex Light and Optical Forces = P. Soc. Photo-opt. Ins. Complex Light and Optical Forces V = Proc Spie Complex Light and Optical Forces V = Proc. Spie. Complex Macromolecular Systems I = Adv Polym Sci Complex Macromolecular Systems I = Adv. Polym. Sci. Complex Macromolecular Systems Ii = Adv Polym Sci Complex Macromolecular Systems Ii = Adv. Polym. Sci. Complex Mediums Ii: Beyond Linear Isotropic Dielectrics = Proc Spie Complex Mediums Ii: Beyond Linear Isotropic Dielectrics = Proc. Spie. Complex Mediums Ii: Beyond Linear Isotropic Dielectrics = P Soc Photo-opt Ins Complex Mediums Ii: Beyond Linear Isotropic Dielectrics = P. Soc. Photo-opt. Ins. Complex Mediums Iii: Beyond Linear Isotropic Dielectrics = Proc Spie Complex Mediums Iii: Beyond Linear Isotropic Dielectrics = Proc. Spie. Complex Mediums Iii: Beyond Linear Isotropic Dielectrics = P Soc Photo-opt Ins Complex Mediums Iii: Beyond Linear Isotropic Dielectrics = P. Soc. Photo-opt. Ins. Complex Mediums Iv: Beyond Linear Isotropic Dielectrics = P Soc Photo-opt Ins Complex Mediums Iv: Beyond Linear Isotropic Dielectrics = P. Soc. Photo-opt. Ins. Complex Mediums = Proc Spie Complex Mediums = Proc. Spie. Complex Mediums = P Soc Photo-opt Ins Complex Mediums = P. Soc. Photo-opt. Ins. Complex Mediums V: Light and Complexity = Proc Spie Complex Mediums V: Light and Complexity = Proc. Spie. Complex Mediums V: Light and Complexity = P Soc Photo-opt Ins Complex Mediums V: Light and Complexity = P. Soc. Photo-opt. Ins. Complex Methods for Partial Differential Equations = Int Soc Anal App Com Complex Methods for Partial Differential Equations = Int. Soc. Anal. App. Com. Complex Mixtures and Cancer Risk = Iarc Sci Publ Complex Mixtures and Cancer Risk = Iarc. Sci. Publ. Complex Motion = Lect Notes Comput Sc Complex Motion = Lect. Notes. Comput. Sc. Complex Networks of Economic Interactions = Lect Notes Econ Math Complex Networks of Economic Interactions = Lect. Notes. Econ. Math. Complex Networks = Stud Comp Intell Complex Networks = Stud. Comp. Intell. Complex Networks = Stud Comput Intell Complex Networks = Stud. Comput. Intell. Complex Nonlinearity: Chaos, Phase Transitions, Topology Change and Path Integrals = Underst Complex Syst Complex Nonlinearity: Chaos, Phase Transitions, Topology Change and Path Integrals = Underst. Complex Syst. Complex Organismal Functions : Integration and Evolution in Vertebrates = Life Sci R Complex Organismal Functions : Integration and Evolution in Vertebrates = Life. Sci. R. Complex Peace Operations and Civil-military Relations: Winning The Peace = Cass Mil Stud Complex Peace Operations and Civil-military Relations: Winning The Peace = Cass. Mil. Stud. Complex Phenomena in Nanoscale Systems = Nato Science Peace S Complex Phenomena in Nanoscale Systems = Nato. Science. Peace. S. Complex Phenomena in Nanoscale Systems = Nato Sci Peace Sec B Complex Phenomena in Nanoscale Systems = Nato. Sci. Peace. Sec. B. Complex Photonic Media = Proc Spie Complex Photonic Media = Proc. Spie. Complex Photonic Media = P Soc Photo-opt Ins Complex Photonic Media = P. Soc. Photo-opt. Ins. Complex Potential Theory = Nato Adv Sci Inst Se Complex Potential Theory = Nato. Adv. Sci. Inst. Se. Complex Regional Pain Syndrome = Prog Pain Res Manag Complex Regional Pain Syndrome = Prog. Pain Res. Manag. Complex Scheduling = Gor-publ Complex Scheduling = Gor-publ. Complex Societies of Central Eurasia From The 3rd to The 1st Millennium Bc: Regional Specifics in Light of Global Models, Vols I and Ii = J Indo-eur Stud Mono Complex Societies of Central Eurasia From The 3rd to The 1st Millennium Bc: Regional Specifics in Light of Global Models, Vols I and Ii = J. Indo-eur. Stud. Mono. Complex Sports Biodynamics: With Practical Applications in Tennis = Cogn Syst Monogr Complex Sports Biodynamics: With Practical Applications in Tennis = Cogn. Syst. Monogr. Complex System Maintenance Handbook = Springer Ser Reliab Complex System Maintenance Handbook = Springer. Ser. Reliab. Complex System Reliability: Multichannel Systems With Imperfect Fault Coverage, 2nd Edition = Springer Ser Reliab Complex System Reliability: Multichannel Systems With Imperfect Fault Coverage, 2nd Edition = Springer. Ser. Reliab. Complex Systems = Aip Conf Proc Complex Systems = Aip. Conf. Proc. Complex Systems and Binary Networks = Lect Notes Phys Complex Systems and Binary Networks = Lect. Notes. Phys. Complex Systems and Evolutionary Perspectives On Organisation: The Application of Complexity Theory to Organisations = Adv Ser Manag Complex Systems and Evolutionary Perspectives On Organisation: The Application of Complexity Theory to Organisations = Adv. Ser. Manag. Complex Systems and Self-organization Modelling = Und Com Sys Complex Systems and Self-organization Modelling = Und. Com. Sys. Complex Systems and Self-organization Modelling = Underst Complex Syst Complex Systems and Self-organization Modelling = Underst. Complex Syst. Complex Systems = Complex Systems Complex Systems Ii = Proc Spie Complex Systems Ii = Proc. Spie. Complex Systems Ii = P Soc Photo-opt Ins Complex Systems Ii = P. Soc. Photo-opt. Ins. Complex Systems in Knowledge-based Environments: Theory, Models and Applications = Stud Comput Intell Complex Systems in Knowledge-based Environments: Theory, Models and Applications = Stud. Comput. Intell. Complex Systems = Nonl Phen Compl Syst Complex Systems = Nonl. Phen. Compl. Syst. Complex Systems = Proc Spie Complex Systems = Proc. Spie. Complex Systems = P Soc Photo-opt Ins Complex Systems = P. Soc. Photo-opt. Ins. Complex Time-delay Systems: Theory and Applications = Underst Complex Syst Complex Time-delay Systems: Theory and Applications = Underst. Complex Syst. Complex-valued Neural Networks With Multi-valued Neurons = Stud Comput Intell Complex-valued Neural Networks With Multi-valued Neurons = Stud. Comput. Intell. Complex Variables and Elliptic Equations = Complex Var Elliptic Complex Variables and Elliptic Equations = Complex Var. Elliptic Complex Variables = Complex Variables Theory Appl. Compliance, Safety and Environmental Advances = Tech Papers Isa Compliance, Safety and Environmental Advances = Tech. Papers. Isa. Complicated Cardiac Patient = Complicat Card Patient Complications in Surgery = Complication Surg Complications in Surgery = Complication. Surg. Complier Construction, Proceedings = Lect Notes Comput Sc Complier Construction, Proceedings = Lect. Notes. Comput. Sc. Complife 2007: 3rd International Symposium On Computational Life Science = Aip Conf Proc Complife 2007: 3rd International Symposium On Computational Life Science = Aip. Conf. Proc. Complutum. Publicaciones del Departamento de prehistoria de la Universidad complutense de Madrid = Complutum Component and Systems Diagnostics, Prognosis and Health Management = Proc Spie Component and Systems Diagnostics, Prognosis and Health Management = Proc. Spie. Component and Systems Diagnostics, Prognosis and Health Management = P Soc Photo-opt Ins Component and Systems Diagnostics, Prognosis and Health Management = P. Soc. Photo-opt. Ins. Component and Systems Diagnostics, Prognostics, and Health Management Ii = Proc Spie Component and Systems Diagnostics, Prognostics, and Health Management Ii = Proc. Spie. Component and Systems Diagnostics, Prognostics, and Health Management Ii = P Soc Photo-opt Ins Component and Systems Diagnostics, Prognostics, and Health Management Ii = P. Soc. Photo-opt. Ins. Component-based Software Development for Embedded Systems: An Overview of Current Research Trends = Lect Notes Comput Sc Component-based Software Development for Embedded Systems: An Overview of Current Research Trends = Lect. Notes. Comput. Sc. Component-based Software Engineering = Lect Notes Comput Sc Component-based Software Engineering = Lect. Notes. Comput. Sc. Component-based Software Engineering, Proceedings = Lect Notes Comput Sc Component-based Software Engineering, Proceedings = Lect. Notes. Comput. Sc. Component-based Software Quality: Methods and Techniques = Lect Notes Comput Sc Component-based Software Quality: Methods and Techniques = Lect. Notes. Comput. Sc. Component Deployment = Lect Notes Comput Sc Component Deployment = Lect. Notes. Comput. Sc. Component Deployment, Proceedings = Lect Notes Comput Sc Component Deployment, Proceedings = Lect. Notes. Comput. Sc. Components for Fiber Optic Applications Iv = P Soc Photo-opt Ins Components for Fiber Optic Applications Iv = P. Soc. Photo-opt. Ins. Components for Fiber Optic Applications Vii = P Soc Photo-opt Ins Components for Fiber Optic Applications Vii = P. Soc. Photo-opt. Ins. Components for Fiber Optic Applications V = P Soc Photo-opt Ins Components for Fiber Optic Applications V = P. Soc. Photo-opt. Ins. Components for Wavelength Division Multiplexing = P Soc Photo-opt Ins Components for Wavelength Division Multiplexing = P. Soc. Photo-opt. Ins. Components, Packaging and Manufacturing Technology = Key Eng Mater Components, Packaging and Manufacturing Technology = Key. Eng. Mater. Composer = Composer Composite Interfaces = Compos Interface Composite Interfaces = Compos. Interface. Composite Interfaces = Compos. Interfaces Composite Laminates: Properties, Performance and Applications = Mater Sci Technol Composite Laminates: Properties, Performance and Applications = Mater. Sci. Technol. Composite Materials: Fatigue and Fracture, Seventh Volume = Am Soc Test Mater Composite Materials: Fatigue and Fracture, Seventh Volume = Am. Soc. Test. Mater. Composite Materials for Implant Applications in The Human Body : Characterization and Testing = Am Soc Test Mater Composite Materials for Implant Applications in The Human Body : Characterization and Testing = Am. Soc. Test. Mater. Composite Materials Iii = Key Eng Mat Composite Materials Iii = Key. Eng. Mat. Composite Materials Iv = Key Eng Mat Composite Materials Iv = Key. Eng. Mat. Composite Materials: Science and Applications, Second Edition = Eng Mater Process Composite Materials: Science and Applications, Second Edition = Eng. Mater. Process. Composite Materials: Testing and Design - Eleventh Volume = Am Soc Test Mater Composite Materials: Testing and Design - Eleventh Volume = Am. Soc. Test. Mater. Composite Materials: Testing and Design, Fourteenth Volume = Am Soc Test Mater Composite Materials: Testing and Design, Fourteenth Volume = Am. Soc. Test. Mater. Composite Materials : Testing and Design ( Tenth Volume ) = Am Soc Test Mater Composite Materials : Testing and Design ( Tenth Volume ) = Am. Soc. Test. Mater. Composite Materials: Testing, Design, and Acceptance Criteria = Am Soc Test Mater Composite Materials: Testing, Design, and Acceptance Criteria = Am. Soc. Test. Mater. Composite Materials V = Key Eng Mat Composite Materials V = Key. Eng. Mat. Composite Media and Homogenization Theory = Prog Nonlin Composite Media and Homogenization Theory = Prog. Nonlin. Composite Sampling: A Novel Method to Accomplish Observational Economy in Environmental Studies = Environ Ecol Stat Se Composite Sampling: A Novel Method to Accomplish Observational Economy in Environmental Studies = Environ. Ecol. Stat. Se. Composites and Sandwich Structures = N Euro Engn Composites and Sandwich Structures = N. Euro. Engn. Composites Bonding = Am Soc Test Mater Composites Bonding = Am. Soc. Test. Mater. Composite Science and Technology, Pts 1 and 2 = Key Eng Mater Composite Science and Technology, Pts 1 and 2 = Key. Eng. Mater. Composites = Composites Composites Engineering = Compos Eng Composites Engineering = Compos. Eng. Composites Forming Technologies = Woodhead Publ Ser Te Composites Forming Technologies = Woodhead. Publ. Ser. Te. Composites for The Offshore Oil and Gas Industry = Imeche Sem Composites for The Offshore Oil and Gas Industry = Imeche. Sem. Composites Manufacturing = Compos Manuf Composites Manufacturing = Compos. Manuf. Composites Part A Applied Science and Manufacturing = Composites Part A Composites Part A-applied Science and Manufacturing = Compos Part A-appl S Composites Part A-applied Science and Manufacturing = Compos. Part A-appl. S. Composites Part B Engineering = Composites Part B Composites Part B-engineering = Compos Part B-eng Composites Part B-engineering = Compos. Part B-eng. Composites Science and Technology = Compos Sci Technol Composites Science and Technology = Compos. Sci. Technol. Composite Structures = Compos Struct Composite Structures = Compos. Struct. Composite Structures: Theory and Practice = Am Soc Test Mater Composite Structures: Theory and Practice = Am. Soc. Test. Mater. Composites With Micro-and Nano-structures: Computational Modeling and Experiments = Comp Meth Appl Sci Composites With Micro-and Nano-structures: Computational Modeling and Experiments = Comp. Meth. Appl. Sci. Composites With Micro-and Nano-structures: Computational Modeling and Experiments = Comput Meth Appl Sci Composites With Micro-and Nano-structures: Computational Modeling and Experiments = Comput. Meth. Appl. Sci. Composite Systems Decisions = Decis Eng Composite Systems Decisions = Decis. Eng. Compositio Mathematica = Compositio Math. Compositio Mathematica = Compos Math Compositio Mathematica = Compos. Math. Compositional Data Analysis in The Geosciences: From Theory to Practice = Geol Soc Spec Publ Compositional Data Analysis in The Geosciences: From Theory to Practice = Geol. Soc. Spec. Publ. Compositionality: The Significant Difference = Lect Notes Comput Sc Compositionality: The Significant Difference = Lect. Notes. Comput. Sc. Composition and Redaction of The Book of Amos = Beih Z Alttest Wiss Composition and Redaction of The Book of Amos = Beih. Z. Alttest. Wiss. Composition of Embedded Systems: Scientific and Industrial Issues = Lect Notes Comput Sc Composition of Embedded Systems: Scientific and Industrial Issues = Lect. Notes. Comput. Sc. Composition of Secure Multi-party Protocols: A Comprehensive Study = Lect Notes Comput Sc Composition of Secure Multi-party Protocols: A Comprehensive Study = Lect. Notes. Comput. Sc. Composting: Processing, Materials and Approaches = Waste Waste Manag Composting: Processing, Materials and Approaches = Waste. Waste. Manag. Compost Science = Compost Sci Compost Science = Compost Sci. Compost Science-land Utilization = Compost Sci Land Ut Compost Science-land Utilization = Compost Sci. Land. Ut. Compost science & utilization = Compost Sci Util Compost Science & Utilization = Compost Sci Util Compost Science & Utilization = Compost Sci. Util. Compound Energy Systems: Optimal Operation Methods = Rsc Energy Ser Compound Energy Systems: Optimal Operation Methods = Rsc. Energy Ser. Compound-nuclear Reactions and Related Topics = Aip Conf Proc Compound-nuclear Reactions and Related Topics = Aip. Conf. Proc. Compound Semiconductor Electronics and Photonics = Mater Res Soc Symp P Compound Semiconductor Electronics and Photonics = Mater. Res. Soc. Symp. P. Compound Semiconductor Epitaxy = Mater Res Soc Symp P Compound Semiconductor Epitaxy = Mater. Res. Soc. Symp. P. Compound Semiconductor Photovoltaics = Mater Res Soc Symp P Compound Semiconductor Photovoltaics = Mater. Res. Soc. Symp. P. Compound Semiconductor Power Transistors and State-of-the-art Program On Compound Semiconductors (sotapocs Xxix) = Elec Soc S Compound Semiconductor Power Transistors and State-of-the-art Program On Compound Semiconductors (sotapocs Xxix) = Elec. Soc. S. Compound Semiconductor Power Transistors Ii and State-of-the-art Program On Compound Semiconductors (sotapocs Xxxii) = Elec Soc S Compound Semiconductor Power Transistors Ii and State-of-the-art Program On Compound Semiconductors (sotapocs Xxxii) = Elec. Soc. S. Compound Semiconductors 1994 = Inst Phys Conf Ser Compound Semiconductors 1994 = Inst. Phys. Conf. Ser. Compound Semiconductors 1995 = Inst Phys Conf Ser Compound Semiconductors 1995 = Inst. Phys. Conf. Ser. Compound Semiconductors 1996 = Inst Phys Conf Ser Compound Semiconductors 1996 = Inst. Phys. Conf. Ser. Compound Semiconductors 1997 = Inst Phys Conf Ser Compound Semiconductors 1997 = Inst. Phys. Conf. Ser. Compound Semiconductors 1998 = Inst Phys Conf Ser Compound Semiconductors 1998 = Inst. Phys. Conf. Ser. Compound Semiconductors 1999 = Inst Phys Conf Ser Compound Semiconductors 1999 = Inst. Phys. Conf. Ser. Compound Semiconductors 2001 = Inst Phys Conf Ser Compound Semiconductors 2001 = Inst. Phys. Conf. Ser. Compound Semiconductors 2002 = Inst Phys Conf Ser Compound Semiconductors 2002 = Inst. Phys. Conf. Ser. Compound Semiconductors 2004, Proceedings = Inst Phys Conf Ser Compound Semiconductors 2004, Proceedings = Inst. Phys. Conf. Ser. Compound Semiconductors for Energy Applications and Environmental Sustainability = Mater Res Soc Symp P Compound Semiconductors for Energy Applications and Environmental Sustainability = Mater. Res. Soc. Symp. P. Compound Semiconductor Surface Passivation and Novel Device Processing = Mater Res Soc Symp P Compound Semiconductor Surface Passivation and Novel Device Processing = Mater. Res. Soc. Symp. P. Compposites for The Real World = Int Sampe Tech Conf Compposites for The Real World = Int. Sampe. Tech. Conf. Comprehensive Assessment of Water Management in Agriculture Series = Comp Assess Wat Man Comprehensive Assessment of Water Management in Agriculture Series = Comp. Assess. Wat. Man. Comprehensive Assessment of Water Management in Agriculture Series = Compr Assess Wat Man Comprehensive Assessment of Water Management in Agriculture Series = Compr. Assess. Wat. Man. Comprehensive Biochemistry = Compr Biochem Comprehensive Biochemistry = Compr. Biochem. Comprehensive Cardiovascular Medicine in The Primary Care Setting = Contemp Cardiol Comprehensive Cardiovascular Medicine in The Primary Care Setting = Contemp. Cardiol. Comprehensive Care for People With Epilepsy = Curr Prob E Comprehensive Care for People With Epilepsy = Curr. Prob. E. Comprehensive Chemical Kinetics = Compr Chem Kinet Comprehensive Chemical Kinetics = Compr. Chem. Kinet. Comprehensive Endocrinology = Compr Endocrinol Comprehensive Endocrinology = Compr. Endocrinol. Comprehensive gerontology. Section A, Clinical and laboratory sciences = Compr Gerontol [A] Comprehensive Gerontology. Section A, Clinical and Laboratory Sciences = Compr. Gerontol. [A] Comprehensive gerontology. Section B, Behavioural, social, and applied sciences = Compr Gerontol [B] Comprehensive Gerontology. Section B, Behavioural, Social and Applied Sciences = Compr. Gerontol. [B] Comprehensive gerontology. Section C, Interdisciplinary topics = Compr Gerontol [C] Comprehensive Gerontology. Section C, Interdisciplinary Topics = Compr. Gerontol. [C] Comprehensive immunology = Compr Immunol Comprehensive Immunology = Compr Immunol Comprehensive Immunology = Compr. Immunol. Comprehensive Models of Cardiovascular and Respiratory Systems: Their Mechanical Support and Interactions = Cardiol Res Clin Dev Comprehensive Models of Cardiovascular and Respiratory Systems: Their Mechanical Support and Interactions = Cardiol. Res. Clin. Dev. Comprehensive Neurologic Rehabilitation = Comp Neur R Comprehensive Neurologic Rehabilitation = Comp. Neur. R. Comprehensive ophthalmology update = Compr Ophthalmol Update Comprehensive Psychiatry = Compr Psychiat Comprehensive Psychiatry = Compr. Psychiat. Comprehensive psychiatry = Compr Psychiatry Comprehensive Psychiatry=Compr Psychiatry;; Comprehensive Psychiatry = Compr. Psychiatry Comprehensive Reviews in Food Science and Food Safety = Compr Rev Food Sci F Comprehensive Reviews in Food Science and Food Safety = Compr. Rev. Food Sci. F. Comprehensive Series in Photochemistry and Photobiology-series = Compr Ser Photoch Comprehensive Series in Photochemistry and Photobiology-series = Compr. Ser. Photoch. Comprehensive Series in Photochemistry & Photobiology = Compre. Ser. Photochem. Photobiol. Comprehensive Series in Photochemisty and Photobiology = Compr Ser Photochem Comprehensive Series in Photochemisty and Photobiology = Compr. Ser. Photochem. Comprehensive therapy = Compr Ther Comprehensive Therapy=Compr Ther;; Comprehensive Therapy = Compr Ther Comprehensive Therapy = Compr. Ther. Comprehensive Virology = Compr Virol Comprehensive Virology = Compr. Virol. Compressed Air = Compressed Air Compression Response of Composite Structures = Am Soc Test Mater Compression Response of Composite Structures = Am. Soc. Test. Mater. Compression Vs. Expression: Containing and Explaining The World's Art = Clark Stud Vis Arts Compression Vs. Expression: Containing and Explaining The World's Art = Clark. Stud. Vis. Arts. Compressors and Their Systems = Imeche Conf Trans Compressors and Their Systems = Imeche. Conf. Trans. Compromised Perfusion = Prog Appl Microcir Compromised Perfusion = Prog. Appl. Microcir. Compromised Perfusion = Progr Appl Micr Compromised Perfusion = Progr. Appl. Micr. Compsac 2007: The Thirty-first Annual International Computer Software and Applications Conference, Vol Ii, Proceedings = P Int Comp Softw App Compsac 2007: The Thirty-first Annual International Computer Software and Applications Conference, Vol Ii, Proceedings = P. Int. Comp. Softw. App. Compsac 2007: The Thirty-first Annual International Computer Software and Applications Conference, Vol I, Proceedings = P Int Comp Softw App Compsac 2007: The Thirty-first Annual International Computer Software and Applications Conference, Vol I, Proceedings = P. Int. Comp. Softw. App. Compsac 97 : Twenty-first Annual International Computer Software & Applications Conference = P Int Comp Softw App Compsac 97 : Twenty-first Annual International Computer Software & Applications Conference = P. Int. Comp. Softw. App. Compte-rendu de la Commission impériale archéologique, St. Pétersbourg = CRPetersbourg Compte Rendu Des Seances De La Societe De Physique Et D Histoire Naturelle De Genere = Cr Soc Phys Hist Compte Rendu Des Seances De La Societe De Physique Et D Histoire Naturelle De Genere = Cr. Soc. Phys. Hist. Comptes rendus biologies = C R Biol Comptes Rendus Biologies = Cr Biol Comptes Rendus Biologies = Cr. Biol. Comptes Rendus Biologies = C. R. Biol. Comptes Rendus Biologies = C.R. Biol. Comptes Rendus Chimie = Cr Chim Comptes Rendus Chimie = Cr. Chim. Comptes Rendus Chimie = C. R. Chim. Comptes Rendus Chimie = C.R. Chim. Comptes Rendus De L Academie Bulgare Des Sciences = Cr Acad Bulg Sci Comptes Rendus De L Academie Bulgare Des Sciences = Cr. Acad. Bulg. Sci. Comptes rendus de l'Académie des Inscriptions et Belles-Lettres = CRAI Comptes Rendus de l'Académie des Sciences = C. R. Acad. Sci. Paris Sér. I Math. Comptes Rendus De L Academie Des Sciences De L Urss = Cr Acad Sci Urss Comptes Rendus De L Academie Des Sciences De L Urss = Cr. Acad. Sci. Urss Comptes rendus de l'Academie des sciences. La vie des sciences = C R Acad Sci Gen Comptes Rendus de l' Academie des Sciences Serie IIa:Sciences de la Terre et des Planets = C.R. Acad. Sci., Ser. IIa: Sci. Terre Planets Comptes Rendus de l'Academie des Sciences, Serie IIa: Sciences de la Terre et des Planets = C. R. Acad. Sci., Ser. IIa: Sci. Terre Planets Comptes Rendus de l' Academie des Sciences Serie IIb:Mecanique Physique Chimie Astronomie = C.R. Acad. Sci., Ser. IIb: Mec., Phys., Chim., Astron. Comptes Rendus de l'Academie des Sciences, Serie IIb: Mecanique Physique Chimie Astronomie = C. R. Acad. Sci., Ser. IIb: Mec., Phys., Chim., Astron. Comptes Rendus de l' Academie des Sciences Serie IIc: Chemie = C. R. Acad. Sci., Ser. IIc: Chim. Comptes Rendus de l' Academie des Sciences Serie IIc:Chemie = C.R. Acad. Sci., Ser. IIc: Chim. Comptes Rendus De L Academie Des Sciences Serie Ii = Cr Acad Sci Ii Comptes Rendus De L Academie Des Sciences Serie Ii = Cr. Acad. Sci. Ii Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule A-sciences De La Terre Et Des Planetes = Cr Acad Sci Ii A Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule A-sciences De La Terre Et Des Planetes = Cr. Acad. Sci. Ii A. Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique = Cr Acad Sci Ii B-mec Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique = Cr. Acad. Sci. Ii B-mec. Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique Physique Astronomie = Cr Acad Sci Ii B Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique Physique Astronomie = Cr. Acad. Sci. Ii B. Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique Physique Chimie Astronomie = Cr Acad Sci Ii B Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule B-mecanique Physique Chimie Astronomie = Cr. Acad. Sci. Ii B. Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule C-chimie = Cr Acad Sci Ii C Comptes Rendus De L Academie Des Sciences Serie Ii Fascicule C-chimie = Cr. Acad. Sci. Ii C. Comptes rendus de l'Academie des sciences. Serie III, Sciences de la vie = C R Acad Sci III Comptes Rendus de l'Academie des Sciences. Serie III, Sciences de la Vie = C. R. Acad. Sci. III Comptes Rendus de L Academie Des Sciences. Serie III, Sciences De La Vie=C R Acad Sci III;; Comptes Rendus de l' Academie des Sciences Serie III: Sciences de la Vie = C. R. Acad. Sci., Ser. III Comptes Rendus de l' Academie des Sciences Serie III: Sciences de la Vie = C.R. Acad. Sci., Ser. III Comptes Rendus De L Academie Des Sciences Serie Iii-sciences De La Vie-life Sciences = Cr Acad Sci Iii-vie Comptes Rendus De L Academie Des Sciences Serie Iii-sciences De La Vie-life Sciences = Cr. Acad. Sci. Iii-vie. Comptes rendus de l'Academie des sciences. Serie II, Mecanique, physique, chimie, sciences de l'univers, sciences de la terre = C R Acad Sci II Comptes Rendus De L Academie Des Sciences Serie I-mathematique = Cr Acad Sci I-math Comptes Rendus De L Academie Des Sciences Serie I-mathematique = Cr. Acad. Sci. I-math. Comptes Rendus De L Academie Des Sciences Serie Iv Physique Astrophysique = Cr Acad Sci Iv-phys Comptes Rendus De L Academie Des Sciences Serie Iv Physique Astrophysique = Cr. Acad. Sci. Iv-phys. Comptes rendus de la Societe francaise de gynecologie = C R Soc Fr Gyncol Comptes rendus de l'Association des anatomistes = C R Assoc Anat Comptes Rendus de l Association des Anatomistes = C. R. Assoc. Anat. Comptes rendus des séances de l'Académie d'Agriculture de France = Comptes rendus séance Acad. Agric. Fr. Comptes Rendus Des Seances De L Academie Des Inscriptions & Belles-lettres = Cr Acad Inscr Belle Comptes Rendus Des Seances De L Academie Des Inscriptions & Belles-lettres = Cr. Acad. Inscr. Belle. Comptes rendus des seances de l'Academie des sciences. Serie D, Sciences naturelles = C R Seances Acad Sci D Comptes Rendus des Seances de l'Academie des Sciences. Serie D, Sciences Naturelles = C. R. Seances Acad. Sci. D. Comptes rendus des seances de l'Academie des sciences. Serie III, Sciences de la vie = C R Seances Acad Sci III Comptes Rendus des Seances de l Academie des Sciences. Serie III, Sciences de la Vie = C. R. Seances Acad. Sci. III Comptes rendus des seances de la Societe de biologie et de ses filiales = C R Seances Soc Biol Fil Comptes Rendus des Seances de la Societe de Biologie et de Ses Filiales = C. R. Seances Soc. Biol. Fil. Comptes Rendus Des Seances de la Societe De Biologie Et De Ses Filiales=C R Seances Soc Biol Fil;; Comptes Rendus Des Seances De La Societe De Biologie Et De Ses Filiales = Cr Soc Biol Comptes Rendus Des Seances De La Societe De Biologie Et De Ses Filiales = Cr. Soc. Biol. Comptes Rendus Des Travaux Du Laboratoire Carlsberg = Cr Trav Lab Carlsb Comptes Rendus Des Travaux Du Laboratoire Carlsberg = Cr. Trav. Lab. Carlsb. Comptes-rendus des travaux du Laboratoire Carlsberg = C R Trav Lab Carlsberg Comptes Rendus des Travaux du Laboratoire Carlsberg = C. R. Trav. Lab. Carlsberg Comptes rendus des travaux du Laboratoire Carlsberg. Serie chimique = C R Trav Lab Carlsberg [Chim] Comptes rendus des travaux du Laboratoire Carlsberg. Serie physiologique = Cr Trav Lab Carlsberg Ser Physiol Comptes Rendus Des Travaux Du Laboratoire Carlsberg-serie Physiologique = Cr Trav Lab Carls P Comptes Rendus Des Travaux Du Laboratoire Carlsberg-serie Physiologique = Cr. Trav. Lab. Carls. P. Comptes Rendus Des Travaux Du Laboratoire Carlsberg-series Chimique = Cr Trav Lab Carls C Comptes Rendus Des Travaux Du Laboratoire Carlsberg-series Chimique = Cr. Trav. Lab. Carls. C. Comptes rendus de therapeutique et de pharmacologie clinique = C R Ther Pharmacol Clin Comptes Rendus Du Deuxieme Colloque-association De Recherche Sur Les Techniques De Forage Et De Production = C R Deux Colloq-assn Comptes Rendus Du Deuxieme Colloque-association De Recherche Sur Les Techniques De Forage Et De Production = C. R. Deux. Colloq-assn. Comptes Rendus Geoscience = Cr Geosci Comptes Rendus Geoscience = Cr. Geosci. Comptes Rendus Geoscience = C. R. Geosci. Comptes Rendus Geoscience = C.R. Geosci. Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences = Cr Hebd Acad Sci Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences = Cr. Hebd. Acad. Sci. Comptes rendus hebdomadaires des seances de l'Academie des sciences = C R Hebd Seances Acad Sci Comptes Rendus Hebdomadaires des Seances de l'Academie des Sciences = C.R. Hebd. Seances Acad. Sci. Comptes Rendus Hebdomadaires des Seances de l'Academie des Sciences. D, Sciences Naturelles = C. R. Acad. Sci. Hebd. Seances Acad. Sci. D Comptes rendus hebdomadaires des séances de l'académie des sciences, Paris = Comptes rendus hebd. séances acad. sci. Paris Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie A = Cr Acad Sci A Math Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie A = Cr. Acad. Sci. A Math. Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie B = Cr Acad Sci B Phys Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie B = Cr. Acad. Sci. B Phys. Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie C = Cr Acad Sci C Chim Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie C = Cr. Acad. Sci. C Chim. Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie D = Cr Acad Sci D Nat Comptes Rendus Hebdomadaires Des Seances De L Academie Des Sciences Serie D = Cr. Acad. Sci. D Nat. Comptes rendus hebdomadaires des seances de l'Academie des sciences. Serie D: Sciences naturelles = C R Acad Sci Hebd Seances Acad Sci D Comptes Rendus Mathematique = Cr Math Comptes Rendus Mathematique = Cr. Math. Comptes Rendus Mathematique = C .R. Math. Comptes Rendus Mathematique = C.R. Math. Comptes Rendus Mathématiques des l'Académie des Sciences = C. R. Math. Acad. Sci. Soc. R. Can. Comptes Rendus Mecanique = C .R. Mec. Comptes Rendus Mecanique = C.R. Mec. Comptes Rendus Mecanique = Cr Mecanique Comptes Rendus Mecanique = Cr. Mecanique Comptes Rendus Palevol = Cr Palevol Comptes Rendus Palevol = Cr. Palevol Comptes Rendus Palevol = C R Palevol Comptes Rendus Palevol = C. R. Palevol Comptes Rendus Palevol = C.R. Palevol Comptes Rendus Physique = Cr Phys Comptes Rendus Physique = Cr. Phys. Comptes Rendus Physique = C. R. Phys. Comptes Rendus Physique = C.R. Phys. Compton Gamma-ray Observatory = Aip Conf Proc Compton Gamma-ray Observatory = Aip. Conf. Proc. Compton Scattering = Springer Tr Mod Phys Compton Scattering = Springer. Tr. Mod. Phys. Compulsive Buying: Clinical Foundations and Treatment = Pract Clin Guidebk Compulsive Buying: Clinical Foundations and Treatment = Pract. Clin. Guidebk. Compulsory Insurance and Compensation for Bunker Oil Pollution Damage = Hamb Stud Marit Aff Compulsory Insurance and Compensation for Bunker Oil Pollution Damage = Hamb. Stud. Marit. Aff. Computability of Julia Sets = Algorithm Comp Math Computability of Julia Sets = Algorithm. Comp. Math. Computable Models of The Law: Languages, Dialogues, Games, Ontologies = Lect Notes Artif Int Computable Models of The Law: Languages, Dialogues, Games, Ontologies = Lect. Notes. Artif. Int. Computational Accelerator Physics 2002 = Inst Phys Conf Ser Computational Accelerator Physics 2002 = Inst. Phys. Conf. Ser. Computational Accelerator Physics = Aip Conf Proc Computational Accelerator Physics = Aip. Conf. Proc. Computational Advances in Organic Chemistry : Molecular Structure and Reactivity = Nato Adv Sci I C-mat Computational Advances in Organic Chemistry : Molecular Structure and Reactivity = Nato. Adv. Sci. I. C-mat. Computational Aerosciences in The 21st Century = Icase Larc In Sci En Computational Aerosciences in The 21st Century = Icase. Larc. In. Sci. En. Computational Algebraic Geometry = Prog Math Computational Algebraic Geometry = Prog. Math. Computational Algebra = Lect Notes Pure Appl Computational Algebra = Lect. Notes. Pure. Appl. Computational Analysis Synthesis and Design of Dynamic Systems = Comput Anal Synth De Computational Analysis Synthesis and Design of Dynamic Systems = Comput. Anal. Synth. De. Computational and Ambient Intelligence = Lect Notes Comput Sc Computational and Ambient Intelligence = Lect. Notes. Comput. Sc. Computational and Experimental Group Theory = Contemp Math Computational and Experimental Group Theory = Contemp. Math. Computational and Experimental Mechanics of Advanced Materials = Cism Courses Lect Computational and Experimental Mechanics of Advanced Materials = Cism. Courses. Lect. Computational and Experimental Methods = Comp Exptl Methods Computational and Experimental Methods = Comp. Exptl. Methods Computational and Experimental Methods in Structures = Comput Exp Method St Computational and Experimental Methods in Structures = Comput. Exp. Method. St. Computational and Information Science, Proceedings = Lect Notes Comput Sc Computational and Information Science, Proceedings = Lect. Notes. Comput. Sc. Computational and Mathematical Methods in Medicine = Comput Math Method M Computational and Mathematical Methods in Medicine = Comput. Math. Method. M. Computational and Mathematical Models of Microstructural Evolution = Mater Res Soc Symp P Computational and Mathematical Models of Microstructural Evolution = Mater. Res. Soc. Symp. P. Computational and Mathematical Organization Theory = Comput Math Organ Th Computational and Mathematical Organization Theory = Comput. Math. Organ. Th. Computational and Mathematical Organization Theory = Comput Mqth Organ Th Computational and Mathematical Organization Theory = Comput. Mqth. Organ. Th. Computational and Theoretical Chemistry = Comput Theor Chem Computational and Theoretical Chemistry = Comput. Theor. Chem. Computational and Theoretical Polymer Science = Comput Theor Polym S Computational and Theoretical Polymer Science = Comput. Theor. Polym. S. Computational and Theoretical Polymer Science = Comput. Theor. Polym. Sci. Computational & Applied Mathematics = Comput Appl Math Computational & Applied Mathematics = Comput. Appl. Math. Computational Approaches in Molecular Radiation Biology = Basic Life Sci Computational Approaches in Molecular Radiation Biology = Basic. Life. Sci. Computational Approaches in Supramolecular Chemistry = Nato Adv Sci Inst Se Computational Approaches in Supramolecular Chemistry = Nato. Adv. Sci. Inst. Se. Computational Approaches to Economic Problems = Adv Comp Econ Computational Approaches to Economic Problems = Adv. Comp. Econ. Computational Approach to Digital Chinese Painting and Calligraphy = Adv Top Sci Tech Chi Computational Approach to Digital Chinese Painting and Calligraphy = Adv. Top. Sci. Tech. Chi. Computational Approach to Riemann Surfaces = Lect Notes Math Computational Approach to Riemann Surfaces = Lect. Notes. Math. Computational Arithmetic Geometry = Contemp Math Computational Arithmetic Geometry = Contemp. Math. Computational Aspects of Algebraic Curves = Ln Ser Computing Computational Aspects of Algebraic Curves = Ln. Ser. Computing. Computational Aspects of General Equilibrium Theory: Refutable Theories of Value = Lect Notes Econ Math Computational Aspects of General Equilibrium Theory: Refutable Theories of Value = Lect. Notes. Econ. Math. Computational Aspects of Structural Acoustics and Vibration = Cism Courses Lect Computational Aspects of Structural Acoustics and Vibration = Cism. Courses. Lect. Computational Aspects of The Study of Biological Macromolecules By Nuclear Magnetic Resonance Spectroscopy = Nato Adv Sci I A-lif Computational Aspects of The Study of Biological Macromolecules By Nuclear Magnetic Resonance Spectroscopy = Nato. Adv. Sci. I. A-lif. Computational Ballistics Iii = Wit Trans Model Sim Computational Ballistics Iii = Wit. Trans. Model. Sim. Computational Ballistics Ii = Wit Trans Model Sim Computational Ballistics Ii = Wit. Trans. Model. Sim. Computational biology and chemistry = Comput Biol Chem Computational Biology and Chemistry = Comput Biol Chem Computational Biology and Chemistry = Comput. Biol. Chem. Computational Biology: Issues and Applications in Oncology = Appl Bioinf Biostat Computational Biology: Issues and Applications in Oncology = Appl. Bioinf. Biostat. Computational Biology = Methods Mol Biol Computational Biology = Methods. Mol. Biol. Computational Biology of Transcription Factor Binding = Methods Mol Biol Computational Biology of Transcription Factor Binding = Methods. Mol. Biol. Computational Biology Series = Comput Biol Ser Computational Biology Series = Comput. Biol. Ser. Computational Cardiology: Modeling of Anatomy, Electrophysiology, and Mechanics = Lect Notes Comput Sc Computational Cardiology: Modeling of Anatomy, Electrophysiology, and Mechanics = Lect. Notes. Comput. Sc. Computational Collective Intelligence: Semantic Web, Social Networks and Multiagent Systems = Lect Notes Artif Int Computational Collective Intelligence: Semantic Web, Social Networks and Multiagent Systems = Lect. Notes. Artif. Int. Computational Collective Intelligence: Technologies and Applications, Pt Iii = Lect Notes Artif Int Computational Collective Intelligence: Technologies and Applications, Pt Iii = Lect. Notes. Artif. Int. Computational Collective Intelligence: Technologies and Applications, Pt Ii = Lect Notes Artif Int Computational Collective Intelligence: Technologies and Applications, Pt Ii = Lect. Notes. Artif. Int. Computational Collective Intelligence: Technologies and Applications, Pt I = Lect Notes Artif Int Computational Collective Intelligence: Technologies and Applications, Pt I = Lect. Notes. Artif. Int. Computational Color Imaging = Lect Notes Comput Sc Computational Color Imaging = Lect. Notes. Comput. Sc. Computational Commutative Algebra and Combinatorics = Adv Stu P M Computational Commutative Algebra and Combinatorics = Adv. Stu. P. M. Computational Commutative and Non-commutative Algebraic Geometry = Nato Sc S Ss Iii C S Computational Commutative and Non-commutative Algebraic Geometry = Nato. Sc. S. Ss. Iii. C. S. Computational Complexity = Comput Complex Computational Complexity = Comput. Complex. Computational Complexity = Comput. Complexity Computational Complexity of Equivalence and Isomorphism Problems = Lect Notes Comput Sc Computational Complexity of Equivalence and Isomorphism Problems = Lect. Notes. Comput. Sc. Computational Contact Mechanics = Cism Courses Lect Computational Contact Mechanics = Cism. Courses. Lect. Computational Differentiation = Siam Proc S Computational Differentiation = Siam. Proc. S. Computational Discrete Mathematics: Advanced Lectures = Lect Notes Comput Sc Computational Discrete Mathematics: Advanced Lectures = Lect. Notes. Comput. Sc. Computational Economics and Econometrics = Adv St Theo Computational Economics and Econometrics = Adv. St. Theo. Computational Economics=Computational Econ. Computational Economics = Comput Econ Computational Economics = Comput. Econ. Computational Electromagnetics = Lect Notes Comp Sci Computational Electromagnetics = Lect. Notes. Comp. Sci. Computational Electronics = Kluwer Int Ser Eng C Computational Electronics = Kluwer. Int. Ser. Eng. C. Computational Electrophysiology: Dynamical Systems and Bifurcations = First Course Silico Computational Electrophysiology: Dynamical Systems and Bifurcations = First. Course. Silico. Computational Engineering = Computat Engn Computational Engineering = Computat. Engn. Computational Engineering in Systems Applications = Ma Comput Sci Eng Computational Engineering in Systems Applications = Ma. Comput. Sci. Eng. Computational Engineering in Systems Applications = Math Comput Sci Eng Computational Engineering in Systems Applications = Math. Comput. Sci. Eng. Computational, Experimental, and Numerical Methods for Solving Ill-posed Inverse Imaging Problems: Medical and Nonmedical Applications = P Soc Photo-opt Ins Computational, Experimental, and Numerical Methods for Solving Ill-posed Inverse Imaging Problems: Medical and Nonmedical Applications = P. Soc. Photo-opt. Ins. Computational Finance and Its Applications Iii = Wit Trans Info Comm Computational Finance and Its Applications Iii = Wit. Trans. Info. Comm. Computational Fluid and Solid Mechanics = Comput Fluid Solid M Computational Fluid and Solid Mechanics = Comput. Fluid Solid M. Computational Fluid Dynamics for The 21st Century, Proceedings = Note Num Fl Computational Fluid Dynamics for The 21st Century, Proceedings = Note. Num. Fl. Computational Fluid Dynamics = Les Houch S Computational Fluid Dynamics = Les. Houch. S. Computational Fluid Dynamics Symposium On Aeropropulsion = Nasa Conf P Computational Fluid Dynamics Symposium On Aeropropulsion = Nasa. Conf. P. Computational Forensics, Proceedings = Lect Notes Comput Sc Computational Forensics, Proceedings = Lect. Notes. Comput. Sc. Computational, Geometric and Process Perspectives On Facial Cognition: Contexts and Challenges = Sci Psych S Computational, Geometric and Process Perspectives On Facial Cognition: Contexts and Challenges = Sci. Psych. S. Computational Geometry and Graph Theory = Lect Notes Comput Sc Computational Geometry and Graph Theory = Lect. Notes. Comput. Sc. Computational Geometry = Comput. Geom. Computational Geometry-theory and Applications = Comp Geom-theor Appl Computational Geometry-theory and Applications = Comp. Geom-theor. Appl. Computational Geosciences = Computat Geosci Computational Geosciences = Computat. Geosci. Computational Group Theory and The Theory of Groups = Contemp Math Computational Group Theory and The Theory of Groups = Contemp. Math. Computational Group Theory and The Theory of Groups, Ii = Contemp Math Computational Group Theory and The Theory of Groups, Ii = Contemp. Math. Computational Imaging and Vision = Comp Imag Vis Computational Imaging and Vision = Comp. Imag. Vis. Computational Imaging and Vision = Comput Imaging Vis Computational Imaging and Vision = Comput. Imaging Vis. Computational Imaging and Vision = Comput. Imaging Vision Computational Imaging Iii = Proc Spie Computational Imaging Iii = Proc. Spie. Computational Imaging Iii = P Soc Photo-opt Ins Computational Imaging Iii = P. Soc. Photo-opt. Ins. Computational Imaging Ii = P Soc Photo-opt Ins Computational Imaging Ii = P. Soc. Photo-opt. Ins. Computational Imaging Iv = Proc Spie Computational Imaging Iv = Proc. Spie. Computational Imaging Iv = P Soc Photo-opt Ins Computational Imaging Iv = P. Soc. Photo-opt. Ins. Computational Imaging Ix = Proc Spie Computational Imaging Ix = Proc. Spie. Computational Imaging = P Soc Photo-opt Ins Computational Imaging = P. Soc. Photo-opt. Ins. Computational Imaging Viii = Proc Spie Computational Imaging Viii = Proc. Spie. Computational Imaging Vii = P Soc Photo-opt Ins Computational Imaging Vii = P. Soc. Photo-opt. Ins. Computational Imaging Vi = Proc Spie Computational Imaging Vi = Proc. Spie. Computational Imaging V = Proc Spie Computational Imaging V = Proc. Spie. Computational Imaging V = P Soc Photo-opt Ins Computational Imaging V = P. Soc. Photo-opt. Ins. Computational Intelligence: A Compendium = Stud Comput Intell Computational Intelligence: A Compendium = Stud. Comput. Intell. Computational Intelligence and Bioengineering: Essays in Memory of Antonina Starita = Front Artif Intel Ap Computational Intelligence and Bioengineering: Essays in Memory of Antonina Starita = Front. Artif. Intel. Ap. Computational Intelligence and Bioinformatics, Pt 3, Proceedings = Lect Notes Comput Sc Computational Intelligence and Bioinformatics, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Intelligence and Bioinspired Systems, Proceedings = Lect Notes Comput Sc Computational Intelligence and Bioinspired Systems, Proceedings = Lect. Notes. Comput. Sc. Computational Intelligence and Intelligent Systems = Comm Com Inf Sc Computational Intelligence and Intelligent Systems = Comm. Com. Inf. Sc. Computational Intelligence and Security = Lect Notes Artif Int Computational Intelligence and Security = Lect. Notes. Artif. Int. Computational Intelligence and Security, Pt 1, Proceedings = Lect Notes Artif Int Computational Intelligence and Security, Pt 1, Proceedings = Lect. Notes. Artif. Int. Computational Intelligence and Security, Pt 2, Proceedings = Lect Notes Artif Int Computational Intelligence and Security, Pt 2, Proceedings = Lect. Notes. Artif. Int. Computational Intelligence Based On Lattice Theory = Stud Comp Intell Computational Intelligence Based On Lattice Theory = Stud. Comp. Intell. Computational Intelligence Based On Lattice Theory = Stud Comput Intell Computational Intelligence Based On Lattice Theory = Stud. Comput. Intell. Computational Intelligence: Collaboration, Fusion and Emergence = Intel Syst Ref Libr Computational Intelligence: Collaboration, Fusion and Emergence = Intel. Syst. Ref. Libr. Computational Intelligence = Comput Intell Computational Intelligence = Comput. Intell. Computational Intelligence = Comput. Intelligence Computational Intelligence = Comput Intell-us Computational Intelligence = Comput. Intell-us. Computational Intelligence for Agent-based Systems = Stud Comput Intell Computational Intelligence for Agent-based Systems = Stud. Comput. Intell. Computational Intelligence for Modelling and Prediction = Stud Comp Intell Computational Intelligence for Modelling and Prediction = Stud. Comp. Intell. Computational Intelligence for Modelling and Prediction = Stud Comput Intell Computational Intelligence for Modelling and Prediction = Stud. Comput. Intell. Computational Intelligence for Modelling, Control & Automation - Evolutionary Computation & Fuzzy Logic for Intelligent Control, Knowledge Acquisition & Information Retrieval = Concur Syst Engn Ser Computational Intelligence for Modelling, Control & Automation - Evolutionary Computation & Fuzzy Logic for Intelligent Control, Knowledge Acquisition & Information Retrieval = Concur. Syst. Engn. Ser. Computational Intelligence for Modelling, Control & Automation - Intelligent Image Processing, Data Analysis & Information Retrieval = Concur Syst Engn Ser Computational Intelligence for Modelling, Control & Automation - Intelligent Image Processing, Data Analysis & Information Retrieval = Concur. Syst. Engn. Ser. Computational Intelligence for Modelling, Control & Automation - Neural Networks & Advanced Control Strategies = Concur Syst Engn Ser Computational Intelligence for Modelling, Control & Automation - Neural Networks & Advanced Control Strategies = Concur. Syst. Engn. Ser. Computational Intelligence for Remote Sensing = Stud Comput Intell Computational Intelligence for Remote Sensing = Stud. Comput. Intell. Computational Intelligence for Technology Enhanced Learning = Stud Comput Intell Computational Intelligence for Technology Enhanced Learning = Stud. Comput. Intell. Computational Intelligence: Foundations and Applications = Wd Sci P Comp Eng Computational Intelligence: Foundations and Applications = Wd. Sci. P. Comp. Eng. Computational Intelligence in Automotive Applications = Stud Comput Intell Computational Intelligence in Automotive Applications = Stud. Comput. Intell. Computational Intelligence in Business and Economics = Wd Sci P Comp Eng Computational Intelligence in Business and Economics = Wd. Sci. P. Comp. Eng. Computational Intelligence in Data Mining = Cism Cour L Computational Intelligence in Data Mining = Cism. Cour. L. Computational Intelligence in Data Mining = Cism Courses Lect Computational Intelligence in Data Mining = Cism. Courses. Lect. Computational Intelligence in Decision and Control = Wd Sci P Comp Eng Computational Intelligence in Decision and Control = Wd. Sci. P. Comp. Eng. Computational Intelligence in Engineering = Stud Comp Intell Computational Intelligence in Engineering = Stud. Comp. Intell. Computational Intelligence in Engineering = Stud Comput Intell Computational Intelligence in Engineering = Stud. Comput. Intell. Computational Intelligence in Expensive Optimization Problems = Adapt Learn Optim Computational Intelligence in Expensive Optimization Problems = Adapt. Learn. Optim. Computational Intelligence in Flow Shop and Job Shop Scheduling = Stud Comput Intell Computational Intelligence in Flow Shop and Job Shop Scheduling = Stud. Comput. Intell. Computational Intelligence in Healthcare 4: Advanced Methodologies = Stud Comput Intell Computational Intelligence in Healthcare 4: Advanced Methodologies = Stud. Comput. Intell. Computational Intelligence in Information Assurance and Security = Stud Comput Intell Computational Intelligence in Information Assurance and Security = Stud. Comput. Intell. Computational Intelligence in Integrated Airline Scheduling = Stud Comput Intell Computational Intelligence in Integrated Airline Scheduling = Stud. Comput. Intell. Computational Intelligence in Medical Informatics = Stud Comput Intell Computational Intelligence in Medical Informatics = Stud. Comput. Intell. Computational Intelligence in Multimedia Processing: Recent Advances = Stud Comput Intell Computational Intelligence in Multimedia Processing: Recent Advances = Stud. Comput. Intell. Computational Intelligence in Optimization: Applications and Implementations = Adapt Learn Optim Computational Intelligence in Optimization: Applications and Implementations = Adapt. Learn. Optim. Computational Intelligence in Power Engineering = Stud Comput Intell Computational Intelligence in Power Engineering = Stud. Comput. Intell. Computational Intelligence in Security for Information Systems 2010 = Adv Intel Soft Compu Computational Intelligence in Security for Information Systems 2010 = Adv. Intel. Soft. Compu. Computational Intelligence in Security for Information Systems = Adv Intell Soft Comp Computational Intelligence in Security for Information Systems = Adv. Intell. Soft. Comp. Computational Intelligence = Lect Notes Comput Sc Computational Intelligence = Lect. Notes. Comput. Sc. Computational Intelligence Methods for Bioinformatics and Biostatistics = Lect N Bioinformat Computational Intelligence Methods for Bioinformatics and Biostatistics = Lect. N. Bioinformat. Computational Intelligence Paradigms: Innovative Applications = Stud Comput Intell Computational Intelligence Paradigms: Innovative Applications = Stud. Comput. Intell. Computational Intelligence, Pt 2, Proceedings = Lect Notes Artif Int Computational Intelligence, Pt 2, Proceedings = Lect. Notes. Artif. Int. Computational Intelligence: Research Frontiers = Lect Notes Comput Sc Computational Intelligence: Research Frontiers = Lect. Notes. Comput. Sc. Computational Intelligence: Soft Computing and Fuzzy-neuro Integration With Applications = Nato Adv Sci I F-com Computational Intelligence: Soft Computing and Fuzzy-neuro Integration With Applications = Nato. Adv. Sci. I. F-com. Computational Intelligence = Stud Comput Intell Computational Intelligence = Stud. Comput. Intell. Computational Intelligence Techniques for Bioprocess Modelling, Supervision and Control = Stud Comput Intell Computational Intelligence Techniques for Bioprocess Modelling, Supervision and Control = Stud. Comput. Intell. Computational Intelligence, Theory and Application = Adv Soft Comp Computational Intelligence, Theory and Application = Adv. Soft. Comp. Computational Intelligence, Theory and Applications = Adv Soft Comp Computational Intelligence, Theory and Applications = Adv. Soft. Comp. Computational Intelligence: Theory and Applications = Lect Notes Comput Sc Computational Intelligence: Theory and Applications = Lect. Notes. Comput. Sc. Computational Intelligence: Theory and Applications, Proceedings = Lect Notes Comput Sc Computational Intelligence: Theory and Applications, Proceedings = Lect. Notes. Comput. Sc. Computational Intelligence = Vdi Bericht Computational Intelligence = Vdi. Bericht. Computational Learning Theory = Lect Notes Artif Int Computational Learning Theory = Lect. Notes. Artif. Int. Computational Learning Theory, Proceedings = Lect Notes Artif Int Computational Learning Theory, Proceedings = Lect. Notes. Artif. Int. Computational Life Sciences Ii, Proceedings = Lect Notes Comput Sc Computational Life Sciences Ii, Proceedings = Lect. Notes. Comput. Sc. Computational Life Sciences, Proceedings = Lect Notes Comput Sc Computational Life Sciences, Proceedings = Lect. Notes. Comput. Sc. Computational Line Geometry = Math Vis Computational Line Geometry = Math. Vis. Computational Linguistics and Intelligent Text Processing = Lect Notes Comput Sc Computational Linguistics and Intelligent Text Processing = Lect. Notes. Comput. Sc. Computational Linguistics and Intelligent Text Processing, Proceedings = Lect Notes Comput Sc Computational Linguistics and Intelligent Text Processing, Proceedings = Lect. Notes. Comput. Sc. Computational Linguistics = Comput Linguist Computational Linguistics = Comput. Linguist. Computational Linguistics in The Netherlands 1997 = Lang Comput Computational Linguistics in The Netherlands 1997 = Lang. Comput. Computational Linguistics in The Netherlands 2000 = Lang Comput Computational Linguistics in The Netherlands 2000 = Lang. Comput. Computational Linguistics in The Netherlands 2001 = Lang Comput Computational Linguistics in The Netherlands 2001 = Lang. Comput. Computational Linguistics in The Netherlands 2002 = Lang Comput Computational Linguistics in The Netherlands 2002 = Lang. Comput. Computational Logic - Cl 2000 = Lect Notes Artif Int Computational Logic - Cl 2000 = Lect. Notes. Artif. Int. Computational Logic in Multi-agent Systems = Lect Notes Artif Int Computational Logic in Multi-agent Systems = Lect. Notes. Artif. Int. Computational Logic in Multi-agent Systems = Lect Notes Comput Sc Computational Logic in Multi-agent Systems = Lect. Notes. Comput. Sc. Computational Logic: Logic Programming and Beyond, Pt Ii = Lect Notes Artif Int Computational Logic: Logic Programming and Beyond, Pt Ii = Lect. Notes. Artif. Int. Computational Logic: Logic Programming and Beyond, Pt I = Lect Notes Artif Int Computational Logic: Logic Programming and Beyond, Pt I = Lect. Notes. Artif. Int. Computational Many-particle Physics = Lect Notes Phys Computational Many-particle Physics = Lect. Notes. Phys. Computational Materials Science = Comp Mater Sci Computational Materials Science = Comp. Mater. Sci. Computational Materials Science = Comput. Mater. Sci. Computational Materials Science: From Basic Principles to Material Properties = Lect Notes Phys Computational Materials Science: From Basic Principles to Material Properties = Lect. Notes. Phys. Computational Materials Science = Nato Sc S Ss Iii C S Computational Materials Science = Nato. Sc. S. Ss. Iii. C. S. Computational & Mathematical Organization Theory = Comput. Math. Organ. Theory Computational Mathematics and Analysis Series = Comput. Math. Anal. Ser. Computational Mathematics and Mathematical Physics = Comp Math Math Phys+ Computational Mathematics and Mathematical Physics = Comp. Math. Math. Phys+.+ Computational Mathematics and Mathematical Physics = Comput. Math. Math. Phys. Computational Mathematics and Mathematical Physics = Comput. Math. Math. Phys. Computational Mathematics and Modeling = Comput. Math. Model. Computational Mathematics and Modeling = Comput. Math. Model. Computational Mechanics = Comput. Mech. Computational Mechanics = Comput Mech Computational Mechanics = Comput. Mech. Computational Mechanics Research Trends = Comput Sci Tech Appl Computational Mechanics Research Trends = Comput. Sci. Tech. Appl. Computational Mechanics: Solids, Structures and Coupled Problems = Comp Meth Appl Sci Computational Mechanics: Solids, Structures and Coupled Problems = Comp. Meth. Appl. Sci. Computational Mechanics: Solids, Structures and Coupled Problems = Comput Meth Appl Sci Computational Mechanics: Solids, Structures and Coupled Problems = Comput. Meth. Appl. Sci. Computational Methods and Applied Computing = Ma Comput Sci Eng Computational Methods and Applied Computing = Ma. Comput. Sci. Eng. Computational Methods and Applied Computing = Math Comput Sci Eng Computational Methods and Applied Computing = Math. Comput. Sci. Eng. Computational Methods and Experimental Measurements Ix = Int S Comp Computational Methods and Experimental Measurements Ix = Int. S. Comp. Computational Methods and Experimental Measurements X = Computat Engn Computational Methods and Experimental Measurements X = Computat. Engn. Computational Methods and Experimental Measurements Xi = Computat Engn Computational Methods and Experimental Measurements Xi = Computat. Engn. Computational Methods and Experimental Measurements Xiii = Wit Trans Model Sim Computational Methods and Experimental Measurements Xiii = Wit. Trans. Model. Sim. Computational Methods and Experimental Measurements Xii = Wit Trans Model Sim Computational Methods and Experimental Measurements Xii = Wit. Trans. Model. Sim. Computational Methods and Experimental Measurements Xiv = Wit Trans Model Sim Computational Methods and Experimental Measurements Xiv = Wit. Trans. Model. Sim. Computational Methods and Experiments in Materials Characterisation Ii = Wit Trans Eng Sci Computational Methods and Experiments in Materials Characterisation Ii = Wit. Trans. Eng. Sci. Computational Methods and Function Theory = Lect Notes Math Computational Methods and Function Theory = Lect. Notes. Math. Computational Methods for Controller Design = Lect Notes Contr Inf Computational Methods for Controller Design = Lect. Notes. Contr. Inf. Computational Methods for Flow and Transport in Porous Media = Theor App T Computational Methods for Flow and Transport in Porous Media = Theor. App. T. Computational Methods for Fluid-structure Interaction = Pitman Res Computational Methods for Fluid-structure Interaction = Pitman. Res. Computational Methods for Macromolecules: Challenges and Applications = Lect Notes Comp Sci Computational Methods for Macromolecules: Challenges and Applications = Lect. Notes. Comp. Sci. Computational Methods for Nanoscale Applications: Particles, Plasmons and Waves = Nanostruct Sci Techn Computational Methods for Nanoscale Applications: Particles, Plasmons and Waves = Nanostruct. Sci. Techn. Computational Methods for Optimal Design and Control = Prog Syst C Computational Methods for Optimal Design and Control = Prog. Syst. C. Computational Methods for Protein Folding = Adv Chem Phys Computational Methods for Protein Folding = Adv. Chem. Phys. Computational Methods for Reliability and Risk Analysis = Ser Qual Rel Eng Sta Computational Methods for Reliability and Risk Analysis = Ser. Qual. Rel. Eng. Sta. Computational Methods for Representations of Groups and Algebras = Prog Math Computational Methods for Representations of Groups and Algebras = Prog. Math. Computational Methods for Sensor Material Selection = Integr Anal Syst Computational Methods for Sensor Material Selection = Integr. Anal. Syst. Computational Methods for Smart Structures and Materials Ii = Struct Mat Computational Methods for Smart Structures and Materials Ii = Struct. Mat. Computational Methods for Snps and Haplotype Inference = Lect N Bioinformat Computational Methods for Snps and Haplotype Inference = Lect. N. Bioinformat. Computational Methods for The Innovative Design of Electrical Devices = Stud Comp Intell Computational Methods for The Innovative Design of Electrical Devices = Stud. Comp. Intell. Computational Methods in Applied Science and Engineering = Eng Tools Tech Table Computational Methods in Applied Science and Engineering = Eng. Tools. Tech. Table. Computational Methods in Applied Sciences = Comp Meth Appl Sci Computational Methods in Applied Sciences = Comp. Meth. Appl. Sci. Computational Methods in Applied Sciences = Comput Meth Appl Sci Computational Methods in Applied Sciences = Comput. Meth. Appl. Sci. Computational Methods in Biometric Authentication: Statistical Methods for Performance Evaluation = Inform Sci Stat Computational Methods in Biometric Authentication: Statistical Methods for Performance Evaluation = Inform. Sci. Stat. Computational Methods in Contact Mechanics Iv = Comp Exptl Methods Computational Methods in Contact Mechanics Iv = Comp. Exptl. Methods Computational Methods in Contact Mechanics V = Comp Exptl Methods Computational Methods in Contact Mechanics V = Comp. Exptl. Methods Computational Methods in Contact Mechanics Vi = Comp Exptl Methods Computational Methods in Contact Mechanics Vi = Comp. Exptl. Methods Computational Methods in Contamination and Remediation of Water Resources = Comp Met Water Res Computational Methods in Contamination and Remediation of Water Resources = Comp. Met. Water Res. Computational Methods in Earthquake Engineering = Comput Meth Appl Sci Computational Methods in Earthquake Engineering = Comput. Meth. Appl. Sci. Computational Methods in Economic Dynamics = Dynam Mod Econ Econ Computational Methods in Economic Dynamics = Dynam. Mod. Econ. Econ. Computational Methods in Fracture Mechanics = Key Eng Mater Computational Methods in Fracture Mechanics = Key. Eng. Mater. Computational Methods in Materials Characterisation = Hi Per Struct Mat Computational Methods in Materials Characterisation = Hi. Per. Struct. Mat. Computational Methods in Materials Science = Mater Res Soc Symp P Computational Methods in Materials Science = Mater. Res. Soc. Symp. P. Computational Methods in Mechanical Systems = Nato Adv Sci I F-com Computational Methods in Mechanical Systems = Nato. Adv. Sci. I. F-com. Computational Methods in Multiphase Flow = Adv Fluid Mech Ser Computational Methods in Multiphase Flow = Adv. Fluid. Mech. Ser. Computational Methods in Multiphase Flow Ii = Adv Fluid Mech Ser Computational Methods in Multiphase Flow Ii = Adv. Fluid. Mech. Ser. Computational Methods in Multiphase Flow Iii = Wit Trans Eng Sci Computational Methods in Multiphase Flow Iii = Wit. Trans. Eng. Sci. Computational Methods in Multiphase Flow Iv = Wit Trans Eng Sci Computational Methods in Multiphase Flow Iv = Wit. Trans. Eng. Sci. Computational Methods in Multiphase Flow V = Wit Trans Eng Sci Computational Methods in Multiphase Flow V = Wit. Trans. Eng. Sci. Computational Methods in Neural Modeling, Pt 1 = Lect Notes Comput Sc Computational Methods in Neural Modeling, Pt 1 = Lect. Notes. Comput. Sc. Computational Methods in Science and Engineering Vol 1 = Aip Conf Proc Computational Methods in Science and Engineering Vol 1 = Aip. Conf. Proc. Computational Methods in Science and Engineering, Vol 1 = Aip Conf Proc Computational Methods in Science and Engineering, Vol 1 = Aip. Conf. Proc. Computational Methods in Science and Engineering, Vol 2 = Aip Conf Proc Computational Methods in Science and Engineering, Vol 2 = Aip. Conf. Proc. Computational Methods in Surface and Ground Water Transport = Comp Met Water Res Computational Methods in Surface and Ground Water Transport = Comp. Met. Water Res. Computational Methods in Systems Biology = Lect Notes Comput Sc Computational Methods in Systems Biology = Lect. Notes. Comput. Sc. Computational Methods in Systems Biology, Proceedings = Lect N Bioinformat Computational Methods in Systems Biology, Proceedings = Lect. N. Bioinformat. Computational Methods in Systems Biology, Proceedings = Lect Notes Comput Sc Computational Methods in Systems Biology, Proceedings = Lect. Notes. Comput. Sc. Computational Methods in Water Resources = Comp Met Water Res Computational Methods in Water Resources = Comp. Met. Water Res. Computational Methods in Water Resources, Vols 1 and 2 = Dev Water Sci Computational Methods in Water Resources, Vols 1 and 2 = Dev. Water Sci. Computational Methods in Water Resources, Vols 1 and 2, Proceedings = Dev Water Sci Computational Methods in Water Resources, Vols 1 and 2, Proceedings = Dev. Water Sci. Computational Methods in Water Resources X, Vols 1 and 2 = Water Trans Computational Methods in Water Resources X, Vols 1 and 2 = Water Trans. Computational Methods of Feature Selection = Ch Crc Data Min Know Computational Methods of Feature Selection = Ch. Crc. Data. Min. Know. Computational Microelectronics = Comp Microelectron Computational Microelectronics = Comp. Microelectron. Computational Mind: A Complex Dynamics Perspective = Stud Comput Intell Computational Mind: A Complex Dynamics Perspective = Stud. Comput. Intell. Computational Modeling and Problem Solving in The Networked World = Operat Res Comp Sci Computational Modeling and Problem Solving in The Networked World = Operat. Res. Comp. Sci. Computational Modeling and Problem Solving in The Networked World = Oper Res Comput Sci Computational Modeling and Problem Solving in The Networked World = Oper. Res. Comput. Sci. Computational Modeling in Biological Fluid Dynamics = Ima V Math Computational Modeling in Biological Fluid Dynamics = Ima. V. Math. Computational Modeling in Biological Fluid Dynamics = Ima Vol Math Appl Computational Modeling in Biological Fluid Dynamics = Ima. Vol. Math. Appl. Computational Modeling Methods for Neuroscientists = Comput Neurosci-mit Computational Modeling Methods for Neuroscientists = Comput. Neurosci-mit. Computational Modeling of Membrane Bilayers = Curr Top Membr Computational Modeling of Membrane Bilayers = Curr. Top. Membr. Computational Modeling of Objects Represented in Images, Proceedings = Lect Notes Comput Sc Computational Modeling of Objects Represented in Images, Proceedings = Lect. Notes. Comput. Sc. Computational Modelling in Behavioural Neuroscience: Closing The Gap Between Neurophysiology and Behaviour = Adv Behav Brain Sci Computational Modelling in Behavioural Neuroscience: Closing The Gap Between Neurophysiology and Behaviour = Adv. Behav. Brain. Sci. Computational Modelling of Objects Represented in Images: Fundamentals, Methods and Applications = Proc Monogr Eng Wate Computational Modelling of Objects Represented in Images: Fundamentals, Methods and Applications = Proc. Monogr. Eng. Wate. Computational Models for Life Sciences (cmls 07) = Aip Conf Proc Computational Models for Life Sciences (cmls 07) = Aip. Conf. Proc. Computational Models of Argument = Fr Art Int Computational Models of Argument = Fr. Art. Int. Computational Models of Argument = Front Artif Intel Ap Computational Models of Argument = Front. Artif. Intel. Ap. Computational Models of Argument, Proceedings of Comma 2008 = Fr Art Int Computational Models of Argument, Proceedings of Comma 2008 = Fr. Art. Int. Computational Models of Argument, Proceedings of Comma 2008 = Front Artif Intel Ap Computational Models of Argument, Proceedings of Comma 2008 = Front. Artif. Intel. Ap. Computational Models of Argument: Proceedings of Comma 2010 = Front Artif Intel Ap Computational Models of Argument: Proceedings of Comma 2010 = Front. Artif. Intel. Ap. Computational Models of Auditory Function = Nato Sci S A Lif Sci Computational Models of Auditory Function = Nato. Sci. S. A. Lif. Sci. Computational Models of Scientific Discovery and Theory Formation = Mor Kauf M Computational Models of Scientific Discovery and Theory Formation = Mor. Kauf. M. Computational Models of The Auditory System = Springer Handb Audit Computational Models of The Auditory System = Springer. Handb. Audit. Computational Molecular Biology Series = Comput Mol Biol Ser Computational Molecular Biology Series = Comput. Mol. Biol. Ser. Computational Music Science = Comput Music Sci Computational Music Science = Comput. Music Sci. Computational Nature of Language Learning and Evolution = Curr Stud Linguist Computational Nature of Language Learning and Evolution = Curr. Stud. Linguist. Computational Neuroscience: Cortical Dynamics = Lect Notes Comput Sc Computational Neuroscience: Cortical Dynamics = Lect. Notes. Comput. Sc. Computational Neuroscience-mit = Comput Neurosci-mit Computational Neuroscience-mit = Comput. Neurosci-mit. Computational Neuroscience = Springer Ser Optim A Computational Neuroscience = Springer. Ser. Optim. A. Computational Neuroscience: Theoretical Insights Into Brain Function = Prog Brain Res Computational Neuroscience: Theoretical Insights Into Brain Function = Prog. Brain Res. Computational Noncommutative Algebra and Applications = Nato Sci Ser Ii Math Computational Noncommutative Algebra and Applications = Nato. Sci. Ser. Ii. Math. Computational Ocean Acoustics, Second Edition = Mod Acoust Sign Proc Computational Ocean Acoustics, Second Edition = Mod. Acoust. Sign. Proc. Computational Optimization and Applications = Comput. Optim. Appl. Computational Optimization and Applications = Comput Optim Appl Computational Optimization and Applications = Comput. Optim. Appl. Computational Optimization and Applications in Engineering and Industry = Stud Comput Intell Computational Optimization and Applications in Engineering and Industry = Stud. Comput. Intell. Computational Optimization, Methods and Algorithms = Stud Comput Intell Computational Optimization, Methods and Algorithms = Stud. Comput. Intell. Computational Physics = Conf Proc Lec N Phys Computational Physics = Conf. Proc. Lec. N. Phys. Computational Plasticity = Comp Meth Appl Sci Computational Plasticity = Comp. Meth. Appl. Sci. Computational Polymer Science = Comput Polymer Sci Computational Polymer Science = Comput. Polymer Sci. Computational Probability: Algorithms and Applications in The Mathematical Sciences = Int Ser Oper Res Man Computational Probability: Algorithms and Applications in The Mathematical Sciences = Int. Ser. Oper. Res. Man. Computational Processing of The Portuguese Lanaguage, Proceedings = Lect Notes Artif Int Computational Processing of The Portuguese Lanaguage, Proceedings = Lect. Notes. Artif. Int. Computational Processing of The Portuguese Language, Proceedings = Lect Notes Artif Int Computational Processing of The Portuguese Language, Proceedings = Lect. Notes. Artif. Int. Computational Quantum Mechanics for Materials Engineers: The Emto Method and Applications = Eng Mater Process Computational Quantum Mechanics for Materials Engineers: The Emto Method and Applications = Eng. Mater. Process. Computational Quantum Physics = Aip Conf Proc Computational Quantum Physics = Aip. Conf. Proc. Computational Risk Management = Comput Risk Manag Computational Risk Management = Comput. Risk Manag. Computational Science and Engineering Series = Comput Sci Eng Ser Computational Science and Engineering Series = Comput. Sci. Eng. Ser. Computational Science and High Performance Computing Iii = Note N Fl Mech Mul D Computational Science and High Performance Computing Iii = Note. N. Fl. Mech. Mul. D. Computational Science and High Performance Computing Iii = Notes Numer Fluid Me Computational Science and High Performance Computing Iii = Notes. Numer. Fluid. Me. Computational Science and High Performance Computing Ii = Note N Fl Mech Mul D Computational Science and High Performance Computing Ii = Note. N. Fl. Mech. Mul. D. Computational Science and High Performance Computing Ii = Notes Numer Fluid Me Computational Science and High Performance Computing Ii = Notes. Numer. Fluid. Me. Computational Science and High Performance Computing = Note N Fl Mech Mul D Computational Science and High Performance Computing = Note. N. Fl. Mech. Mul. D. Computational Science and High Performance Computing = Notes Numer Fluid Me Computational Science and High Performance Computing = Notes. Numer. Fluid. Me. Computational Science and Its Applications - Icca 2003, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Icca 2003, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2003, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2003, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2003, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2003, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2003, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2003, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2004, Pt 1 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2004, Pt 1 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2004, Pt 2 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2004, Pt 2 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2004, Pt 3 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2004, Pt 3 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2004, Pt 4 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2004, Pt 4 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2005, Pt 1 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2005, Pt 1 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2005, Pt 2 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2005, Pt 2 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2005, Pt 3 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2005, Pt 3 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2005, Vol 4, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2005, Vol 4, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2006, Pt 1 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2006, Pt 1 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2006, Pt 2 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2006, Pt 2 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2006, Pt 3 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2006, Pt 3 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2006, Pt 4 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2006, Pt 4 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2006, Pt 5 = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2006, Pt 5 = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2007, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2007, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2007, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2007, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2008, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2008, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2008, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2008, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2009, Pt Ii = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2009, Pt Ii = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2009, Pt I = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2009, Pt I = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2010, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2010, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2010, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2010, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2010, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2010, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science and Its Applications - Iccsa 2010, Pt 4, Proceedings = Lect Notes Comput Sc Computational Science and Its Applications - Iccsa 2010, Pt 4, Proceedings = Lect. Notes. Comput. Sc. Computational Science & Discovery = Comput. Sci. Discovery Computational Science Engineering and Technology Series = Comp Sci Engr Tech Computational Science Engineering and Technology Series = Comp. Sci. Engr. Tech. Computational Science -- Iccs 2001, Proceedings Pt 2 = Lect Notes Comput Sc Computational Science -- Iccs 2001, Proceedings Pt 2 = Lect. Notes. Comput. Sc. Computational Science-iccs 2002, Pt Iii, Proceedings = Lect Notes Comput Sc Computational Science-iccs 2002, Pt Iii, Proceedings = Lect. Notes. Comput. Sc. Computational Science-iccs 2002, Pt Ii, Proceedings = Lect Notes Comput Sc Computational Science-iccs 2002, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Computational Science-iccs 2002, Pt I, Proceedings = Lect Notes Comput Sc Computational Science-iccs 2002, Pt I, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2003, Pt Iii, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2003, Pt Iii, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2003, Pt Ii, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2003, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2003, Pt I, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2003, Pt I, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2003, Pt Iv, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2003, Pt Iv, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2004, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2004, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2004, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2004, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2004, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2004, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2004, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2004, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2005, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2005, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2005, Pt 2 = Lect Notes Comput Sc Computational Science - Iccs 2005, Pt 2 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2005, Pt 3 = Lect Notes Comput Sc Computational Science - Iccs 2005, Pt 3 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2006, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2006, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2006, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2006, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2006, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2006, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2006, Pt 4, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2006, Pt 4, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2007, Pt 1, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2007, Pt 2, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2007, Pt 3, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2007, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2007, Pt 4, Proceedings = Lect Notes Comput Sc Computational Science - Iccs 2007, Pt 4, Proceedings = Lect. Notes. Comput. Sc. Computational Science - Iccs 2008, Pt 1 = Lect Notes Comput Sc Computational Science - Iccs 2008, Pt 1 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2008, Pt 2 = Lect Notes Comput Sc Computational Science - Iccs 2008, Pt 2 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2008, Pt 3 = Lect Notes Comput Sc Computational Science - Iccs 2008, Pt 3 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2009 = Lect Notes Comput Sc Computational Science - Iccs 2009 = Lect. Notes. Comput. Sc. Computational Science - Iccs 2009, Part I = Lect Notes Comput Sc Computational Science - Iccs 2009, Part I = Lect. Notes. Comput. Sc. Computational Science -- Iccs 200, Proceedings Pt 2 = Lect Notes Comput Sc Computational Science -- Iccs 200, Proceedings Pt 2 = Lect. Notes. Comput. Sc. Computational Sicence - Iccs 2003, Pt Iii, Proceedings = Lect Notes Comput Sc Computational Sicence - Iccs 2003, Pt Iii, Proceedings = Lect. Notes. Comput. Sc. Computational Social Network Analysis = Comput Commun Netw S Computational Social Network Analysis = Comput. Commun. Netw. S. Computational Statistics and Data Analysis = Comput. Stat. Data Anal. Computational Statistics = Computation Stat Computational Statistics = Computation. Stat. Computational statistics = Comput Stat Computational Statistics = Comput. Statist. Computational Statistics = Contr Stat Computational Statistics = Contr. Stat. Computational Statistics & Data Analysis = Comput Stat Data An Computational Statistics & Data Analysis = Comput. Stat. Data An. Computational statistics & data analysis = Comput Stat Data Anal Computational Statistics & Data Analysis = Comput. Statist. Data Anal. Computational Statistics Handbook With Matlab, Second Edition = Ch Crc Comp Sci Data Computational Statistics Handbook With Matlab, Second Edition = Ch. Crc. Comp. Sci. Data. Computational Statistics = Stat Comput Ser Computational Statistics = Stat. Comput. Ser. Computational Structural Dynamics and Earthquake Engineering = Strtr Infra Sers Computational Structural Dynamics and Earthquake Engineering = Strtr. Infra. Sers. Computational Studies = Computat Studies Computational Studies = Computat. Studies Computational Studies of Transition Metal Nanoalloys = Springer Theses-reco Computational Studies of Transition Metal Nanoalloys = Springer. Theses-reco. Computational systems bioinformatics / Life Sciences Society. Computational Systems Bioinformatics Conference = Comput Syst Bioinformatics Conf Computational Systems-biology and Bioinformatics = Comm Com Inf Sc Computational Systems-biology and Bioinformatics = Comm. Com. Inf. Sc. Computational Techniques for Structural Health Monitoring = Springer Ser Reliab Computational Techniques for Structural Health Monitoring = Springer. Ser. Reliab. Computational Techniques for Voltage Stability Assessment and Control = Power Electron Power Computational Techniques for Voltage Stability Assessment and Control = Power. Electron. Power. Computational Techniques: The Multiphase Cfd Approach to Fluidization and Green Energy Technologies = Energ Sci Eng Tech Computational Techniques: The Multiphase Cfd Approach to Fluidization and Green Energy Technologies = Energ. Sci. Eng. Tech. Computational Textile = Stud Comp Intell Computational Textile = Stud. Comp. Intell. Computational Textile = Stud Comput Intell Computational Textile = Stud. Comput. Intell. Computational & Theoretical Polymer Science = Comput Theor Polym S Computational & Theoretical Polymer Science = Comput. Theor. Polym. S. Computational Vision and Medical Imaging Processing = Proc Monogr Eng Wate Computational Vision and Medical Imaging Processing = Proc. Monogr. Eng. Wate. Computational Vision Based On Neurobiology = P Soc Photo-opt Ins Computational Vision Based On Neurobiology = P. Soc. Photo-opt. Ins. Computational Welding Mechanics: Thermomechanical and Microstructural Simulations = Woodhead Publ Mater Computational Welding Mechanics: Thermomechanical and Microstructural Simulations = Woodhead. Publ. Mater. Computation and Control Iii = Prog Syst C Computation and Control Iii = Prog. Syst. C. Computation and Control Ii = Prog Syst C Computation and Control Ii = Prog. Syst. C. Computation and Logic in The Real World, Proceedings = Lect Notes Comput Sc Computation and Logic in The Real World, Proceedings = Lect. Notes. Comput. Sc. Computation and Neural Systems Series = Comp Neur S Computation and Neural Systems Series = Comp. Neur. S. Computation Checkpointing and Migration = Embed High Perform C Computation Checkpointing and Migration = Embed. High. Perform. C. Computation, Cooperation, and Life = Lect Notes Comput Sc Computation, Cooperation, and Life = Lect. Notes. Comput. Sc. Computation in Economics, Finance and Engineering: Economic Systems = Ifac Symp Series Computation in Economics, Finance and Engineering: Economic Systems = Ifac. Symp. Series. Computation in Modern Science and Engineering Vol 2, Pts A and B = Aip Conf Proc Computation in Modern Science and Engineering Vol 2, Pts A and B = Aip. Conf. Proc. Computation Materials Science = Comput. Mater. Sci. Computation of Curves and Surfaces = Nato Adv Sci I C-mat Computation of Curves and Surfaces = Nato. Adv. Sci. I. C-mat. Computation of Viscous Incompressible Flows = Sci Comput Computation of Viscous Incompressible Flows = Sci. Comput. Computations for The Nano-scale = Nato Adv Sci Inst Se Computations for The Nano-scale = Nato. Adv. Sci. Inst. Se. Computed Axial Tomography = Comput Axial Tomogr Computed Axial Tomography = Comput. Axial Tomogr. Computed Tomography of The Lung: A Pattern Approach = Med Radiol Diagn Ima Computed Tomography of The Lung: A Pattern Approach = Med. Radiol. Diagn. Ima. Computer-aided Analysis of Rigid and Flexible Mechanical Systems = Nato Adv Sci Inst Se Computer-aided Analysis of Rigid and Flexible Mechanical Systems = Nato. Adv. Sci. Inst. Se. Computer-aided Chemical Engineering = Comp Aid Ch Computer-aided Chemical Engineering = Comp. Aid. Ch. Computer-aided Chemical Engineering = Comput-aided Chem En Computer-aided Chemical Engineering = Comput-aided. Chem. En. Computer-aided Civil and Infrastructure Engineering = Comput-aided Civ Inf Computer-aided Civil and Infrastructure Engineering = Comput-aided. Civ. Inf. Computer-Aided Civil and Infrastructure Engineering = Comput.-Aided Civ. Infrastruct. Eng. Computer-Aided Design and Applications = Comput.-Aided Des. Applic. Computer-Aided Design = Comput.-Aided Des. Computer-aided Design = Comput Aided Design Computer-aided Design = Comput. Aided. Design Computer Aided Design in Control Systems = Ifac Symp Series Computer Aided Design in Control Systems = Ifac. Symp. Series. Computer-aided Design of High-temperature Materials = T Phys Chem Ser Computer-aided Design of High-temperature Materials = T. Phys. Chem. Ser. Computer Aided Design of Wire Structures: Frequency and Time Domain Analysis = Adv Elec Eng Electro Computer Aided Design of Wire Structures: Frequency and Time Domain Analysis = Adv. Elec. Eng. Electro. Computer-aided Diagnosis in Medical Imaging = Int Congr Ser Computer-aided Diagnosis in Medical Imaging = Int. Congr. Ser. Computer Aided Drug Design in Industrial Research = E Schering Res Fdn W Computer Aided Drug Design in Industrial Research = E. Schering. Res. Fdn. W. Computer-aided Engineering = Comput Aided Eng Computer-aided Engineering = Comput. Aided. Eng. Computer Aided Geometric Design = Comput Aided Geom D Computer Aided Geometric Design = Comput. Aided Geom. D. Computer Aided Geometric Design = Comput. Aided Geom. Design Computer-aided Innovation (cai) = Int Fed Info Proc Computer-aided Innovation (cai) = Int. Fed. Info. Proc. Computer Aided Methods in Optimal Design and Operations = Ser Computers Oper R Computer Aided Methods in Optimal Design and Operations = Ser. Computers. Oper. R. Computer-aided Molecular Design = Acs Sym Ser Computer-aided Molecular Design = Acs. Sym. Ser. Computer Aided Optimum Design in Engineering Ix = Wit Trans Built Env Computer Aided Optimum Design in Engineering Ix = Wit. Trans. Built. Env. Computer Aided Optimum Design in Engineering Xi = Wit Trans Built Env Computer Aided Optimum Design in Engineering Xi = Wit. Trans. Built. Env. Computer Aided Optimum Design in Engineering X = Wit Trans Built Env Computer Aided Optimum Design in Engineering X = Wit. Trans. Built. Env. Computer Aided Optimum Design of Structures Viii = Struct Mat Computer Aided Optimum Design of Structures Viii = Struct. Mat. Computer Aided Optimum Design of Structures Vii = Struct Mat Computer Aided Optimum Design of Structures Vii = Struct. Mat. Computer Aided Optimum Design of Structures Vi = Struct Mat Computer Aided Optimum Design of Structures Vi = Struct. Mat. Computer Aided Proofs in Analysis = Ima V Math Computer Aided Proofs in Analysis = Ima. V. Math. Computer-aided Statistical Physics = Aip Conf Proc Computer-aided Statistical Physics = Aip. Conf. Proc. Computer Aided Surgery=Comput Aided Surg;; Computer Aided Surgery = Comput Aided Surg Computer Aided Surgery = Comput. Aided Surg. Computer aided surgery : official journal of the International Society for Computer Aided Surgery = Comput Aided Surg Computer-aided Systems in Public Transport = Lect Notes Econ Math Computer-aided Systems in Public Transport = Lect. Notes. Econ. Math. Computer Aided Systems Theory - Eurocast 2001 = Lect Notes Comput Sc Computer Aided Systems Theory - Eurocast 2001 = Lect. Notes. Comput. Sc. Computer Aided Systems Theory - Eurocast 2003 = Lect Notes Comput Sc Computer Aided Systems Theory - Eurocast 2003 = Lect. Notes. Comput. Sc. Computer Aided Systems Theory - Eurocast 2005 = Lect Notes Comput Sc Computer Aided Systems Theory - Eurocast 2005 = Lect. Notes. Comput. Sc. Computer Aided Systems Theory- Eurocast 2007 = Lect Notes Comput Sc Computer Aided Systems Theory- Eurocast 2007 = Lect. Notes. Comput. Sc. Computer Aided Systems Theory - Eurocast 2009 = Lect Notes Comput Sc Computer Aided Systems Theory - Eurocast 2009 = Lect. Notes. Comput. Sc. Computer-aided Transit Scheduling = Lect Notes Econ Math Computer-aided Transit Scheduling = Lect. Notes. Econ. Math. Computer-aided Transit Scheduling, Proceedings = Lect Notes Econ Math Computer-aided Transit Scheduling, Proceedings = Lect. Notes. Econ. Math. Computer Aided Verification = Lect Notes Comput Sc Computer Aided Verification = Lect. Notes. Comput. Sc. Computer Aided Verification< Proceedings = Lect Notes Comput Sc Computer Aided Verification< Proceedings = Lect. Notes. Comput. Sc. Computer Aided Verification, Proceedings = Lect Notes Comput Sc Computer Aided Verification, Proceedings = Lect. Notes. Comput. Sc. Computer Algebra and Differential Equations = Lond Math S Computer Algebra and Differential Equations = Lond. Math. S. Computer Algebra and Geometric Algebra With Applications = Lect Notes Comput Sc Computer Algebra and Geometric Algebra With Applications = Lect. Notes. Comput. Sc. Computer Algebra in Scienfific Computing, Proceedings = Lect Notes Comput Sc Computer Algebra in Scienfific Computing, Proceedings = Lect. Notes. Comput. Sc. Computer Algebra in Scientific Computing = Lect Notes Comput Sc Computer Algebra in Scientific Computing = Lect. Notes. Comput. Sc. Computer Algebra in Scientific Computing, Proceedings = Lect Notes Comput Sc Computer Algebra in Scientific Computing, Proceedings = Lect. Notes. Comput. Sc. Computer Algebra Methods for Equivariant Dynamical Systems = Lect Notes Math Computer Algebra Methods for Equivariant Dynamical Systems = Lect. Notes. Math. Computer Analysis of Images and Patterns = Fr Art Int Computer Analysis of Images and Patterns = Fr. Art. Int. Computer Analysis of Images and Patterns = Lect Notes Comput Sc Computer Analysis of Images and Patterns = Lect. Notes. Comput. Sc. Computer Analysis of Images and Patterns, Proceedings = Lect Notes Comput Sc Computer Analysis of Images and Patterns, Proceedings = Lect. Notes. Comput. Sc. Computer and Computing Technologies in Agriculture Ii, Vol 1 = Int Fed Info Proc Computer and Computing Technologies in Agriculture Ii, Vol 1 = Int. Fed. Info. Proc. Computer and Computing Technologies in Agriculture Ii, Volume 2 = Int Fed Info Proc Computer and Computing Technologies in Agriculture Ii, Volume 2 = Int. Fed. Info. Proc. Computer and Computing Technologies in Agriculture, Vol 1 = Int Fed Info Proc Computer and Computing Technologies in Agriculture, Vol 1 = Int. Fed. Info. Proc. Computer and Computing Technologies in Agriculture, Vol 2 = Int Fed Info Proc Computer and Computing Technologies in Agriculture, Vol 2 = Int. Fed. Info. Proc. Computer and Holographic Optics and Image Processing = P Soc Photo-opt Ins Computer and Holographic Optics and Image Processing = P. Soc. Photo-opt. Ins. Computer and Information Science 2009 = Stud Comp Intell Computer and Information Science 2009 = Stud. Comp. Intell. Computer and Information Science 2009 = Stud Comput Intell Computer and Information Science 2009 = Stud. Comput. Intell. Computer and Information Science 2010 = Stud Comp Intell Computer and Information Science 2010 = Stud. Comp. Intell. Computer and Information Science 2011 = Stud Comput Intell Computer and Information Science 2011 = Stud. Comput. Intell. Computer and Information Sciences - Iscis 2003 = Lect Notes Comput Sc Computer and Information Sciences - Iscis 2003 = Lect. Notes. Comput. Sc. Computer and Information Sciences - Iscis 2004, Proceedings = Lect Notes Comput Sc Computer and Information Sciences - Iscis 2004, Proceedings = Lect. Notes. Comput. Sc. Computer and Information Sciences - Iscis 2005, Proceedings = Lect Notes Comput Sc Computer and Information Sciences - Iscis 2005, Proceedings = Lect. Notes. Comput. Sc. Computer and Information Sciences - Iscis 2006, Proceedings = Lect Notes Comput Sc Computer and Information Sciences - Iscis 2006, Proceedings = Lect. Notes. Comput. Sc. Computer and Information Science = Stud Comp Intell Computer and Information Science = Stud. Comp. Intell. Computer and Information Sicences - Iscis 2005, Proceedings = Lect Notes Comput Sc Computer and Information Sicences - Iscis 2005, Proceedings = Lect. Notes. Comput. Sc. Computer and Optically Formed Holographic Optics = P Soc Photo-opt Ins Computer and Optically Formed Holographic Optics = P. Soc. Photo-opt. Ins. Computer and Optically Generated Holographic Optics = P Soc Photo-opt Ins Computer and Optically Generated Holographic Optics = P. Soc. Photo-opt. Ins. Computer and The Decision-making Process = Buros Neb S Computer and The Decision-making Process = Buros. Neb. S. Computer Animation 1999, Proceedings = Comp Anim Conf Proc Computer Animation 1999, Proceedings = Comp. Anim. Conf. Proc. Computer Animation 2000, Proceedings = Comp Anim Conf Proc Computer Animation 2000, Proceedings = Comp. Anim. Conf. Proc. Computer Animation 2001, Proceedings = Comp Anim Conf Proc Computer Animation 2001, Proceedings = Comp. Anim. Conf. Proc. Computer Animation '97 - Proceedings = Comp Anim Conf Proc Computer Animation '97 - Proceedings = Comp. Anim. Conf. Proc. Computer Animation 98 - Proceedings = Comp Anim Conf Proc Computer Animation 98 - Proceedings = Comp. Anim. Conf. Proc. Computer Animation and Simulation 2000 = Spring Comp Sci Computer Animation and Simulation 2000 = Spring. Comp. Sci. Computer Animation and Simulation 2001 = Spring Eurograp Computer Animation and Simulation 2001 = Spring. Eurograp. Computer Animation and Simulation '98 = Spring Comp Sci Computer Animation and Simulation '98 = Spring. Comp. Sci. Computer Animation and Simulation'99 = Spring Comp Sci Computer Animation and Simulation'99 = Spring. Comp. Sci. Computer Animation and Virtual Worlds = Comput Animat Virt W Computer Animation and Virtual Worlds = Comput. Animat. Virt. W. Computer Animation and Virtual Worlds = Comput. Anim. Virtual Worlds Computer Animation = Comput Sci Tech Appl Computer Animation = Comput. Sci. Tech. Appl. Computer Animation Conference Proceedings = Comp Anim Conf Proc Computer Animation Conference Proceedings = Comp. Anim. Conf. Proc. Computer Applications in Biotechnology 2001 (cab8) = Ifac P Ser Computer Applications in Biotechnology 2001 (cab8) = Ifac. P. Ser. Computer Applications in Chemical Engineering = Process Technol Proc Computer Applications in Chemical Engineering = Process. Technol. Proc. Computer Applications in Engineering Education = Comput Appl Eng Educ Computer Applications in Engineering Education = Comput. Appl. Eng. Educ. Computer Applications in Resource Estimation = Comput Geol Computer Applications in Resource Estimation = Comput. Geol. Computer Applications in Sustainable Forest Management: Including Perspectives On Collaboration and Integration = Manag For Ecosyst Computer Applications in Sustainable Forest Management: Including Perspectives On Collaboration and Integration = Manag. For. Ecosyst. Computer applications in the biosciences : CABIOS = Comput Appl Biosci Computer Applications in the Biosciences = Comput. Appl. Biosci. Computer Applications in The Biosciences = Comput Appl Biosci Computer Applications in The Biosciences = Comput. Appl. Biosci. Computer Applications in The Earth Sciences = Comp Ap Ear Computer Applications in The Earth Sciences = Comp. Ap. Ear. Computer Arithmetic and Validity: Theory, Implementation, and Applications = Degruyter Stud Math Computer Arithmetic and Validity: Theory, Implementation, and Applications = Degruyter. Stud. Math. Computer Assisted Language Learning = Comput Assist Lang L Computer Assisted Language Learning = Comput. Assist. Lang. L. Computer Assisted Learning / = Lect Notes Comput Sc Computer Assisted Learning / = Lect. Notes. Comput. Sc. Computer-assisted Teaching: New Developments = Educ Compet Glob Wor Computer-assisted Teaching: New Developments = Educ. Compet. Glob. Wor. Computer-based Medical Systems : Proceedings of The Annual Ieee Symposium = Comp Med Sy Computer-based Medical Systems : Proceedings of The Annual Ieee Symposium = Comp. Med. Sy. Computer-based Modeling of Novel Carbon Systems and Their Properties: Beyond Nanotubes = Carbon Mater-chem Ph Computer-based Modeling of Novel Carbon Systems and Their Properties: Beyond Nanotubes = Carbon Mater-chem. Ph. Computer-based Support for Clinical Guidelines and Protocols = St Heal T Computer-based Support for Clinical Guidelines and Protocols = St. Heal. T. Computer-based Support for Clinical Guidelines and Protocols = Stud Health Technol Computer-based Support for Clinical Guidelines and Protocols = Stud. Health. Technol. Computer Bulletin = Comput Bull Computer Bulletin = Comput. Bull. Computer Communication Review = Comput Commun Rev Computer Communication Review = Comput. Commun. Rev. Computer Communications and Networks Series = Comput Commun Netw S Computer Communications and Networks Series = Comput. Commun. Netw. S. Computer Communications = Comput Commun Computer Communications = Comput. Commun. Computer & Communications Decisions = Comput Decis Computer & Communications Decisions = Comput. Decis. Computer Communications Review = Comp Comm R Computer Communications Review = Comp. Comm. R. Computer = Computer Computer-controlled Microshaping = P Soc Photo-opt Ins Computer-controlled Microshaping = P. Soc. Photo-opt. Ins. Computer Decisions = Comput Decis Computer Decisions = Comput. Decis. Computer Design = Comput Des Computer Design = Comput. Des. Computer Engineering Series = Comput Eng Ser Computer Engineering Series = Comput. Eng. Ser. Computer-enhanced Analytical Spectroscopy, Vol 2 = Mod Anal Ch Computer-enhanced Analytical Spectroscopy, Vol 2 = Mod. Anal. Ch. Computer-enhanced Analytical Spectroscopy, Vol 4 = Mod Anal Ch Computer-enhanced Analytical Spectroscopy, Vol 4 = Mod. Anal. Ch. Computer Equipment Review = Comput Equip Rev Computer Equipment Review = Comput. Equip. Rev. Computer Fraud & Security = Comput Fraud Secur Computer Fraud & Security = Comput. Fraud Secur. Computer Games: Learning Objectives, Cognitive Performance and Effects On Development = Comput Sci Tech Appl Computer Games: Learning Objectives, Cognitive Performance and Effects On Development = Comput. Sci. Tech. Appl. Computer Graphics and Image Processing = Comput Vision Graph Computer Graphics and Image Processing = Comput. Vision. Graph. Computer Graphics = Comp Graph Computer Graphics = Comp. Graph. Computer graphics = Comput Graph (ACM) Computer Graphics Forum = Comput Graph Forum Computer Graphics Forum = Comput. Graph. Forum Computer Graphics Forum = Comput. Graphics Forum Computer Graphics, Imaging and Visualisation - Modern Techniques and Applications, Proceedings = I C Comp Graph Im Vi Computer Graphics, Imaging and Visualisation - Modern Techniques and Applications, Proceedings = I. C. Comp. Graph. Im. Vi. Computer Graphics, Imaging and Visualisation: New Advances = I C Comp Graph Im Vi Computer Graphics, Imaging and Visualisation: New Advances = I. C. Comp. Graph. Im. Vi. Computer Graphics-us = Comput Graphics-us Computer Graphics-us = Comput. Graphics-us Computer Graphics World = Comput Graph World Computer Graphics World = Comput. Graph. World Computer Hardware Description Languages and Their Applications = Ifip Trans A Computer Hardware Description Languages and Their Applications = Ifip. Trans. A. Computer-human Interaction = Lect Notes Comput Sc Computer-human Interaction = Lect. Notes. Comput. Sc. Computer Human Interaction: Proceedings = Lect Notes Comput Sc Computer Human Interaction: Proceedings = Lect. Notes. Comput. Sc. Computer Image Analysis in The Study of Art = Proc Spie Computer Image Analysis in The Study of Art = Proc. Spie. Computer Integrated Manufacturing Systems = Comput Integr Manuf Computer Integrated Manufacturing Systems = Comput. Integr. Manuf. Computer Integrated Manufacturing Systems = Comput. Integr. Manuf. Syst. Computer Integrated Process Engineering, Cipe 89 = Inst Chem E Computer Integrated Process Engineering, Cipe 89 = Inst. Chem. E. Computerization and Networking of Materials Databases : Third Volume = Am Soc Test Mater Computerization and Networking of Materials Databases : Third Volume = Am. Soc. Test. Mater. Computerized Chemical Data Standards: Databases, Data Interchange, and Information Systems = Am Soc Test Mater Computerized Chemical Data Standards: Databases, Data Interchange, and Information Systems = Am. Soc. Test. Mater. Computerized Medical Imaging and Graphics = Comput Med Imag Grap Computerized Medical Imaging and Graphics = Comput. Med. Imag. Grap. Computerized Medical Imaging and Graphics = Comput. Med. Imaging Graph. Computerized Medical IMAging and Graphics=Comput Med Imaging Graph;; Computerized medical imaging and graphics : the official journal of the Computerized Medical Imaging Society = Comput Med Imaging Graph Computerized Radiology = Comput Radiol Computerized Radiology = Comput. Radiol. Computerized radiology : official journal of the Computerized Tomography Society = Comput Radiol Computerized tomography = Comput Tomogr Computerized Tomography = Comput Tomogr Computerized Tomography = Comput. Tomogr. Computer Journal = Comput J Computer Journal = Comput. J. Computer Keystroke Logging and Writing: Methods and Applications = Stud Writ Computer Keystroke Logging and Writing: Methods and Applications = Stud. Writ. Computerkultur = Computerkultur Computer Languages = Comput Lang Computer Languages = Comput. Lang. Computer Languages Systems & Structures = Comput Lang Syst Str Computer Languages Systems & Structures = Comput. Lang. Syst. Str. Computer/law journal = Comput Law J Computer/law Series = Comp Law S Computer/law Series = Comp. Law. S. Computer Mathematics = Lect Notes Artif Int Computer Mathematics = Lect. Notes. Artif. Int. Computer Mediated Education of Information Technology Professionals and Advanced End-users = Ifip Trans A Computer Mediated Education of Information Technology Professionals and Advanced End-users = Ifip. Trans. A. Computer-mediated Social Networking = Lect Notes Artif Int Computer-mediated Social Networking = Lect. Notes. Artif. Int. Computer Methods and Experimental Measurements for Surface Effects and Contact Mechanics Viii = Wit Trans Eng Sci Computer Methods and Experimental Measurements for Surface Effects and Contact Mechanics Viii = Wit. Trans. Eng. Sci. Computer Methods and Experimental Measurements for Surface Effects and Contact Mechanics Vii = Wit Trans Eng Sci Computer Methods and Experimental Measurements for Surface Effects and Contact Mechanics Vii = Wit. Trans. Eng. Sci. Computer methods and programs in biomedicine = Comput Methods Programs Biomed Computer Methods and Programs in Biomedicine = Comput. Methods Programs Biomed. Computer Methods and Programs In Biomedicine=Comput Methods Programs Biomed;; Computer Methods and Programs in Biomedicine = Comput Meth Prog Bio Computer Methods and Programs in Biomedicine = Comput. Meth. Prog. Bio. Computer Methods and Water Resources Iv = Comp Met Water Res Computer Methods and Water Resources Iv = Comp. Met. Water Res. Computer Methods for Macromolecular Sequence Analysis = Method Enzymol Computer Methods for Macromolecular Sequence Analysis = Method. Enzymol. Computer Methods in Applied Mechanics and Engineering = Comput. Meth. Appl. Mech. Eng. Computer Methods in Applied Mechanics and Engineering = Comput Method Appl M Computer Methods in Applied Mechanics and Engineering = Comput. Method. Appl. M. Computer Methods in Applied Mechanics and Engineering = Comput. Methods Appl. Mech. Engrg. Computer Methods in Biomechanics and Biomedical Engineering = Comput. Meth. Biomech. Biomed. Eng. Computer Methods in Biomechanics and Biomedical Engineering = Comput Method Biomec Computer Methods in Biomechanics and Biomedical Engineering = Comput. Method. Biomec. Computer methods in biomechanics and biomedical engineering = Comput Methods Biomech Biomed Engin Computer Methods in Biomechanics and Biomedical Engineering = Comput. Methods Biomech. Biomed. Engin. Computer Modeling and Simulation in Engineering = Comput. Model. Simul. Engrg. Computer Modeling of Carbohydrate Molecules = Acs Sym Ser Computer Modeling of Carbohydrate Molecules = Acs. Sym. Ser. Computer Modeling of Free-surface and Pressurized Flows = Nato Adv Sci Inst Se Computer Modeling of Free-surface and Pressurized Flows = Nato. Adv. Sci. Inst. Se. Computer Modelling of Fluids Polymers and Solids = Nato Adv Sci I C-mat Computer Modelling of Fluids Polymers and Solids = Nato. Adv. Sci. I. C-mat. Computer Music Journal = Comput Music J Computer Music Journal = Comput. Music J. Computer Music Modeling and Retrieval = Lect Notes Comput Sc Computer Music Modeling and Retrieval = Lect. Notes. Comput. Sc. Computer Music Modeling and Retrieval: Sense of Sounds = Lect Notes Comput Sc Computer Music Modeling and Retrieval: Sense of Sounds = Lect. Notes. Comput. Sc. Computer Networks and Isdn Systems = Comput Networks Isdn Computer Networks and Isdn Systems = Comput. Networks Isdn Computer Networks, Architecture and Applications = Ifip Trans C Computer Networks, Architecture and Applications = Ifip. Trans. C. Computer Networks = Comm Com Inf Sc Computer Networks = Comm. Com. Inf. Sc. Computer Networks = Comput Netw Computer Networks = Comput. Netw. Computer Network Security = Lect Notes Comput Sc Computer Network Security = Lect. Notes. Comput. Sc. Computer Network Security, Proceedings = Comm Com Inf Sc Computer Network Security, Proceedings = Comm. Com. Inf. Sc. Computer Network Security, Proceedings = Lect Notes Comput Sc Computer Network Security, Proceedings = Lect. Notes. Comput. Sc. Computer Networks, Proceedings = Comm Com Inf Sc Computer Networks, Proceedings = Comm. Com. Inf. Sc. Computer Networks Series = Comput Netw Ser Computer Networks Series = Comput. Netw. Ser. Computer Networks-the International Journal of Computer and Telecommunications Networking = Comput Netw Computer Networks-the International Journal of Computer and Telecommunications Networking = Comput. Netw. Computer Operations = Comput Oper Computer Operations = Comput. Oper. Computer-oriented Process Engineering = Process Technol Proc Computer-oriented Process Engineering = Process Technol. Proc. Computer Performance = Comput Perform Computer Performance = Comput. Perform. Computer Performance Engineering = Lect Notes Comput Sc Computer Performance Engineering = Lect. Notes. Comput. Sc. Computer Performance Engineering, Proceedings = Lect Notes Comput Sc Computer Performance Engineering, Proceedings = Lect. Notes. Comput. Sc. Computer Performance Evaluation and Benchmarking, Proceedings = Lect Notes Comput Sc Computer Performance Evaluation and Benchmarking, Proceedings = Lect. Notes. Comput. Sc. Computer Performance Evaluation = Lect Notes Comput Sc Computer Performance Evaluation = Lect. Notes. Comput. Sc. Computer Performance Evaluation: Modelling Techniques and Tools = Lect Notes Comput Sc Computer Performance Evaluation: Modelling Techniques and Tools = Lect. Notes. Comput. Sc. Computer Performance Evaluation, Proceedings = Lect Notes Comput Sc Computer Performance Evaluation, Proceedings = Lect. Notes. Comput. Sc. Computer Physics Communications = Comput. Phys. Comm. Computer physics communications = Comput Phys Commun Computer Physics Communications = Comput Phys Commun Computer Physics Communications = Comput. Phys. Commun. Computer Physics Reports = Comput Phys Rep Computer Physics Reports = Comput. Phys. Rep. Computer Processing of Oriental Languages: Language Technology for The Knowledge-based Economy = Lect Notes Artif Int Computer Processing of Oriental Languages: Language Technology for The Knowledge-based Economy = Lect. Notes. Artif. Int. Computer Processing of Oriental Languages, Proceedings = Lect Notes Artif Int Computer Processing of Oriental Languages, Proceedings = Lect. Notes. Artif. Int. Computer Programs in Biomedicine = Comput Prog Biomed Computer Programs in Biomedicine = Comput. Prog. Biomed. Computer programs in biomedicine = Comput Programs Biomed Computer Programs in Biomedicine = Comput. Programs Biomed. Computer Recognition Systems 2 = Adv Intel Soft Compu Computer Recognition Systems 2 = Adv. Intel. Soft. Compu. Computer Recognition Systems 3 = Adv Intel Soft Compu Computer Recognition Systems 3 = Adv. Intel. Soft. Compu. Computer Recognition Systems 4 = Adv Intel Soft Compu Computer Recognition Systems 4 = Adv. Intel. Soft. Compu. Computer Recognition Systems, Proceedings = Adv Soft Comp Computer Recognition Systems, Proceedings = Adv. Soft. Comp. Computer Safety, Reliability and Security = Lect Notes Comput Sc Computer Safety, Reliability and Security = Lect. Notes. Comput. Sc. Computer Safety, Reliability, and Security = Lect Notes Comput Sc Computer Safety, Reliability, and Security = Lect. Notes. Comput. Sc. Computer Safety, Reliability and Security, Proceedings = Lect Notes Comput Sc Computer Safety, Reliability and Security, Proceedings = Lect. Notes. Comput. Sc. Computer Safety, Reliability, and Security, Proceedings = Lect Notes Comput Sc Computer Safety, Reliability, and Security, Proceedings = Lect. Notes. Comput. Sc. Computer Safety, Reliabiltiy, and Security, Proceedings = Lect Notes Comput Sc Computer Safety, Reliabiltiy, and Security, Proceedings = Lect. Notes. Comput. Sc. Computers and Artificial Intelligence = Comput. Artificial Intelligence Computers and Artificial Intelligence = Comput Artif Intell Computers and Artificial Intelligence = Comput. Artif. Intell. Computers and Automation = Comput Autom Computers and Automation = Comput. Autom. Computers and biomedical research, an international journal = Comput Biomed Res Computers and Biomedical Research=Comput Biomed Res;; Computers and Biomedical Research = Comput Biomed Res Computers and Biomedical Research = Comput. Biomed. Res. Computers and Building Regulations = Vtt Symp Computers and Building Regulations = Vtt. Symp. Computers and Chemical Engineering = Comput. Chem. Eng. Computers and Chemistry=Comput Chem;; Computers and Chemistry = Comput. Chem. Computers and Chemistry = Comput. Chem. (Oxford) Computers and Concrete = Comput Concrete Computers and Concrete = Comput. Concrete Computers and Dna = Sfi S Sci C Computers and Dna = Sfi. S. Sci. C. Computers and Electrical Engineering = Comput. Electr. Eng. Computers and Electronics in Agriculture = Comput Electron Agr Computers and Electronics in Agriculture = Comput. Electron. Agr. Computers and Electronics in Agriculture = Comput. Electron. Agric. Computers and Games = Lect Notes Comput Sc Computers and Games = Lect. Notes. Comput. Sc. Computers and Geology = Comput Geol Computers and Geology = Comput. Geol. Computers and Geosciences = Comput. Geosci. Computers and Geotechnics = Comput Geotech Computers and Geotechnics = Comput. Geotech. Computers and Networks in The Age of Globalization = Int Fed Info Proc Computers and Networks in The Age of Globalization = Int. Fed. Info. Proc. Computers and People = Comput People Computers and People = Comput. People Computers and Perinatal Medicine = Int Congr Ser Computers and Perinatal Medicine = Int. Congr. Ser. Computers and Productivity: How Firms Make A General Purpose Technology Work = Zew Econ Stud Computers and Productivity: How Firms Make A General Purpose Technology Work = Zew. Econ. Stud. Computers and Safety = Iee Conf Publ Computers and Safety = Iee. Conf. Publ. Computers and Simulation in Modern Science = Math Comput Sci Eng Computers and Simulation in Modern Science = Math. Comput. Sci. Eng. Computers and Structures = Comput. Struct. Computers and the Humanitie = CHum Computers and the humanities = Comput Hum Computers and The Humanities = Comput Humanities Computers and The Humanities = Comput. Humanities Computers & Chemical Engineering = Comput Chem Eng Computers & Chemical Engineering = Comput. Chem. Eng. Computers & chemistry = Comput Chem Computers & Chemistry = Comput Chem Computers & Chemistry = Comput. Chem. Computer Science and Information Systems = Comput Sci Inf Syst Computer Science and Information Systems = Comput. Sci. Inf. Syst. Computer Science and Scientific Computing = Comput. Sci. Sci. Comput. Computer Science in Economics and Management=Computer Sci. Econ. Manage. Computer Science in Perspective: Essays Dedicated to Thomas Ottmann = Lect Notes Comput Sc Computer Science in Perspective: Essays Dedicated to Thomas Ottmann = Lect. Notes. Comput. Sc. Computer Science Logic = Lect Notes Comput Sc Computer Science Logic = Lect. Notes. Comput. Sc. Computer Science Logic, Proceedings = Lect Notes Comput Sc Computer Science Logic, Proceedings = Lect. Notes. Comput. Sc. Computer Science Technology and Applications = Comput Sci Tech Appl Computer Science Technology and Applications = Comput. Sci. Tech. Appl. Computer Science - Theory and Applications = Lect Notes Comput Sc Computer Science - Theory and Applications = Lect. Notes. Comput. Sc. Computer Science Today = Lect Notes Comput Sc Computer Science Today = Lect. Notes. Comput. Sc. Computer Security - Esoric 2008, Proceedings = Lect Notes Comput Sc Computer Security - Esoric 2008, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2000, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2000, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2002, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2002, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2003, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2003, Proceedings = Lect. Notes. Comput. Sc. Computer Security Esorics 2004, Proceedings = Lect Notes Comput Sc Computer Security Esorics 2004, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2005, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2005, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2006, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2006, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2007, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2007, Proceedings = Lect. Notes. Comput. Sc. Computer Security - Esorics 2009, Proceedings = Lect Notes Comput Sc Computer Security - Esorics 2009, Proceedings = Lect. Notes. Comput. Sc. Computer Security-esorics 2010 = Lect Notes Comput Sc Computer Security-esorics 2010 = Lect. Notes. Comput. Sc. Computer Security - Esorics 92 = Lect Notes Comput Sc Computer Security - Esorics 92 = Lect. Notes. Comput. Sc. Computer Security - Esorics 98 = Lect Notes Comput Sc Computer Security - Esorics 98 = Lect. Notes. Comput. Sc. Computer Security = Ifip Trans A Computer Security = Ifip. Trans. A. Computers & Education = Comput Educ Computers & Education = Comput. Educ. Computers & Electrical Engineering = Comput Electr Eng Computers & Electrical Engineering = Comput. Electr. Eng. Computers Environment and Urban Systems = Comput Environ Urban Computers Environment and Urban Systems = Comput. Environ. Urban Computers, environment and urban systems = Comput Environ Urban Syst Computers & Fluids = Comput. & Fluids Computers & Fluids = Comput Fluids Computers & Fluids = Comput. Fluids Computers & geosciences = Comput Geosci Computers & Geosciences = Comput Geosci Computers & Geosciences = Comput. Geosci. Computers & Geosciences = Comput Geosci-uk Computers & Geosciences = Comput. Geosci-uk. Computers & graphics = Comput Graph Computers & Graphics = Comput Graph Computers & Graphics = Comput. Graph. Computers & Graphics-uk = Comput Graph-uk Computers & Graphics-uk = Comput. Graph-uk. Computers Helping People With Special Needs, Proceedings = Lect Notes Comput Sc Computers Helping People With Special Needs, Proceedings = Lect. Notes. Comput. Sc. Computers Helping People With Special Needs: Proceedings = Lect Notes Comput Sc Computers Helping People With Special Needs: Proceedings = Lect. Notes. Comput. Sc. Computers Helping People With Special Needs, Proceedings, Pt 1 = Lect Notes Comput Sc Computers Helping People With Special Needs, Proceedings, Pt 1 = Lect. Notes. Comput. Sc. Computers Helping People With Special Needs, Proceedings, Pt 2 = Lect Notes Comput Sc Computers Helping People With Special Needs, Proceedings, Pt 2 = Lect. Notes. Comput. Sc. Computer Simulation and Data Analysis in Molecular Biology and Biophysics: An Introduction Using R = Biol Med Phys Biomed Computer Simulation and Data Analysis in Molecular Biology and Biophysics: An Introduction Using R = Biol. Med. Phys. Biomed. Computer Simulation for Fluid Flow, Heat and Mass Transfer, and Combustion in Reciprocating Engines = P Int C Hea Computer Simulation for Fluid Flow, Heat and Mass Transfer, and Combustion in Reciprocating Engines = P. Int. C. Hea. Computer Simulation in Chemical Physics = Nato Adv Sci Inst Se Computer Simulation in Chemical Physics = Nato. Adv. Sci. Inst. Se. Computer Simulation in Materials Science = Nato Adv Sci I E-app Computer Simulation in Materials Science = Nato. Adv. Sci. I. E-app. Computer Simulation in Nonlinear Optics = P Soc Photo-opt Ins Computer Simulation in Nonlinear Optics = P. Soc. Photo-opt. Ins. Computer Simulations in Condensed Matter Systems: From Materials to Chemical Biology, Vol 1 = Lect Notes Phys Computer Simulations in Condensed Matter Systems: From Materials to Chemical Biology, Vol 1 = Lect. Notes. Phys. Computer Simulations in Condensed Matter Systems: From Materials to Chemical Biology, Vol 2 = Lect Notes Phys Computer Simulations in Condensed Matter Systems: From Materials to Chemical Biology, Vol 2 = Lect. Notes. Phys. Computer Simulations of Liquid Crystals and Polymers = Nato Sci Ser Ii-math Computer Simulations of Liquid Crystals and Polymers = Nato. Sci. Ser. Ii-math. Computer Simulations of Liquid Crystals and Polymers = Nato Sci Ser Ii Math Computer Simulations of Liquid Crystals and Polymers = Nato. Sci. Ser. Ii. Math. Computer Simulations of Surfaces and Interfaces = Nato Sci Ser Ii-math Computer Simulations of Surfaces and Interfaces = Nato. Sci. Ser. Ii-math. Computer Simulations of Surfaces and Interfaces = Nato Sci Ser Ii Math Computer Simulations of Surfaces and Interfaces = Nato. Sci. Ser. Ii. Math. Computer Simulations Studies in Condensed Matter Physics Xxi - Proceedings of The 21st Workshop = Physcs Proc Computer Simulations Studies in Condensed Matter Physics Xxi - Proceedings of The 21st Workshop = Physcs. Proc. Computer Simulation Studies in Condensed-matter Physcis Xvi = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physcis Xvi = Springer. Proc. Phys. Computer Simulation Studies in Condensed Matter Physics Iii = Springer Proc Phys Computer Simulation Studies in Condensed Matter Physics Iii = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xiii = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xiii = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xii = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xii = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xiv = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xiv = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xix = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xix = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xviii = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xviii = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xvi = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xvi = Springer. Proc. Phys. Computer Simulation Studies in Condensed-matter Physics Xv = Springer Proc Phys Computer Simulation Studies in Condensed-matter Physics Xv = Springer. Proc. Phys. Computer Simulation Studies in Condensed Matter Physics Xx, Csp-2007: Proceedings of The 20th Workshop = Physcs Proc Computer Simulation Studies in Condensed Matter Physics Xx, Csp-2007: Proceedings of The 20th Workshop = Physcs. Proc. Computers in biology and medicine = Comput Biol Med Computers in Biology and Medicine = Comput Biol Med Computers in Biology and Medicine = Comput. Biol. Med. Computers In Biology and Medicine=Comput Biol Med;; Computers in Cardiology 1992 : Proceedings = Comput Cardiol Computers in Cardiology 1992 : Proceedings = Comput. Cardiol. Computers in Cardiology 1993, Proceedings = Comput Cardiol Computers in Cardiology 1993, Proceedings = Comput. Cardiol. Computers in Cardiology 1995 = Comput Cardiol Computers in Cardiology 1995 = Comput. Cardiol. Computers in Cardiology 1996 = Comput Cardiol Computers in Cardiology 1996 = Comput. Cardiol. Computers in Cardiology 1997, Vol 24 = Comput Cardiol Computers in Cardiology 1997, Vol 24 = Comput. Cardiol. Computers in Cardiology 1998, Vol 25 = Comput Cardiol Computers in Cardiology 1998, Vol 25 = Comput. Cardiol. Computers in Cardiology 1999, Vol 26 = Comput Cardiol Computers in Cardiology 1999, Vol 26 = Comput. Cardiol. Computers in Cardiology 2000, Vol 27 = Comput Cardiol Computers in Cardiology 2000, Vol 27 = Comput. Cardiol. Computers in Cardiology 2001, Vol 28 = Comput Cardiol Computers in Cardiology 2001, Vol 28 = Comput. Cardiol. Computers in Cardiology 2002, Vol 29 = Comput Cardiol Computers in Cardiology 2002, Vol 29 = Comput. Cardiol. Computers in Cardiology 2003, Vol 30 = Comput Cardiol Computers in Cardiology 2003, Vol 30 = Comput. Cardiol. Computers in Cardiology 2004, Vol 31 = Comput Cardiol Computers in Cardiology 2004, Vol 31 = Comput. Cardiol. Computers in Cardiology 2005, Vol 32 = Comput Cardiol Computers in Cardiology 2005, Vol 32 = Comput. Cardiol. Computers in Cardiology 2007, Vols 1 and 2 = Comput Cardiol Computers in Cardiology 2007, Vols 1 and 2 = Comput. Cardiol. Computers in cardiology = Comput Cardiol Computers in Cardiology = Comput Cardiol Computers in Cardiology = Comput. Cardiol. Computers in Cardiology : Proceedings = Comput Cardiol Computers in Cardiology : Proceedings = Comput. Cardiol. Computers in Cardiology Series = Comput Cardiol Computers in Cardiology Series = Comput. Cardiol. Computers & Industrial Engineering = Comput Ind Eng Computers & Industrial Engineering = Comput. Ind. Eng. Computers in Endocrinology : Recent Advances = Serono Sym Computers in Endocrinology : Recent Advances = Serono. Sym. Computers, informatics, nursing : CIN = Comput Inform Nurs Computers, Informatics, Nursing = Comput. Inform. Nurs. Computers in healthcare = Comput Healthc Computers in Healthcare = Comput. Healthc. Computers in hospitals = Comput Hosp Computers in Hospitals = Comput. Hosp. Computers in human behavior = Comput Human Behav Computers in Human Behavior = Comput Hum Behav Computers in Human Behavior = Comput. Hum. Behav. Computers in Industry = Comput Ind Computers in Industry = Comput. Ind. Computers in Medical Activity = Adv Intell Soft Comp Computers in Medical Activity = Adv. Intell. Soft. Comp. Computers in Medical Activity = Adv Intel Soft Compu Computers in Medical Activity = Adv. Intel. Soft. Compu. Computers in nursing = Comput Nurs Computers in Nursing = Comput Nurs Computers in Nursing = Comput. Nurs. Computers In Nursing=Comput Nurs;; Computers in Physics = Comput Phys Computers in Physics = Comput. Phys. Computers in Psychology 4 = Comp Psych Computers in Psychology 4 = Comp. Psych. Computers in Psychology 5 = Comp Psych Computers in Psychology 5 = Comp. Psych. Computers in Psychology = Comp Psych Computers in Psychology = Comp. Psych. Computers in Railway Six = Adv Transport Computers in Railway Six = Adv. Transport. Computers in Railways Vi = Adv Transport Computers in Railways Vi = Adv. Transport. Computers in Railways Vii = Adv Transport Computers in Railways Vii = Adv. Transport. Computers in Railways Viii = Adv Transport Computers in Railways Viii = Adv. Transport. Computers in Railways X: Computer System Design and Operation in The Railway and Other Transit Systems = Wit Trans Built Env Computers in Railways X: Computer System Design and Operation in The Railway and Other Transit Systems = Wit. Trans. Built. Env. Computers in Railways Xi = Wit Trans Built Env Computers in Railways Xi = Wit. Trans. Built. Env. Computers in The Human Interaction Loop = Hum-comput Int-sprin Computers in The Human Interaction Loop = Hum-comput. Int-sprin. Computers & Mathematcs with Applications = Comput. Math. Appl. Computers & Mathematics with Applications = Comput. Math. Appl. Computers & Mathematics With Applications = Comput Math Appl Computers & Mathematics With Applications = Comput. Math. Appl. Computers & mathematics with applications (Oxford, England : 1987) = Comput Math Appl Computers & Mathematics With Applications-part A = Comput Math Appl-a Computers & Mathematics With Applications-part A = Comput. Math. Appl-a. Computers & Mathematics With Applications-part B = Comput Math Appl-b Computers & Mathematics With Applications-part B = Comput. Math. Appl-b. Computers & Operations Research and their Application to Problems of World Concern = Comput. Oper. Res. Computers & Operations Research = Comput Oper Res Computers & Operations Research = Comput. Oper. Res. Computer Speech and Language = Comput Speech Lang Computer Speech and Language = Comput. Speech Lang. Computer Speech & Language = Comput. Speech Lang. Computers & Security = Comput Secur Computers & Security = Comput. Secur. Computers & Structures = Comput Struct Computers & Structures = Comput. Struct. Computers & Structures = Comput. & Structures Computer Standards & Interfaces = Comp Stand Inter Computer Standards & Interfaces = Comp. Stand. Inter. Computer Standards & Interfaces = Comput Stand Inter Computer Standards & Interfaces = Comput. Stand. Inter. Computer-supported Collaborative Learning = Comput-supp Collab L Computer-supported Collaborative Learning = Comput-supp. Collab. L. Computer-supported Collaborative Learning = Com S Coll Learn Computer-supported Collaborative Learning = Com. S. Coll. Learn. Computer Supported Cooperative Work = Comp Support Comp W Computer Supported Cooperative Work = Comp. Support. Comp. W. Computer Supported Cooperative Work = Comput Supp Coop Wor Computer Supported Cooperative Work = Comput. Supp. Coop. Wor. Computer supported cooperative work : CSCW : an international journal = Comput Support Coop Work Computer Supported Cooperative Work in Design Iii = Lect Notes Comput Sc Computer Supported Cooperative Work in Design Iii = Lect. Notes. Comput. Sc. Computer Supported Cooperative Work in Design Ii = Lect Notes Comput Sc Computer Supported Cooperative Work in Design Ii = Lect. Notes. Comput. Sc. Computer Supported Cooperative Work in Design I = Lect Notes Comput Sc Computer Supported Cooperative Work in Design I = Lect. Notes. Comput. Sc. Computer Supported Cooperative Work in Design Iv = Lect Notes Comput Sc Computer Supported Cooperative Work in Design Iv = Lect. Notes. Comput. Sc. Computer Supported Cooperative Work-journal of Collaborative Computing = Comput Supp Coop W J Computer Supported Cooperative Work-journal of Collaborative Computing = Comput. Supp. Coop. W. J. Computer Supported Cooperative Work Series = Comp Support Comp W Computer Supported Cooperative Work Series = Comp. Support. Comp. W. Computer Supported Cooperative Work-the Journal of Collaborative Computing = Comput Supp Coop W J Computer Supported Cooperative Work-the Journal of Collaborative Computing = Comput. Supp. Coop. W. J. Computer Support for Environmental Impact Assessment = Ifip Trans B Computer Support for Environmental Impact Assessment = Ifip. Trans. B. Computer Systems: Architectures, Modeling, and Simulation = Lect Notes Comput Sc Computer Systems: Architectures, Modeling, and Simulation = Lect. Notes. Comput. Sc. Computer Systems Science and Engineering = Comput Syst Sci Eng Computer Systems Science and Engineering = Comput. Syst. Sci. Eng. Computer Systems: Theory, Technology and Applications = Mg Comp Sci Computer Systems: Theory, Technology and Applications = Mg. Comp. Sci. Computer Systems: Theory, Technology and Applications = Monogr Comput Sci Computer Systems: Theory, Technology and Applications = Monogr. Comput. Sci. Computertomographie = Computertomographie Computertomographie Sonographie Und Andere Neue Bilddiagnostische Methoden = Computertom Sonograp Computertomographie Sonographie Und Andere Neue Bilddiagnostische Methoden = Computertom. Sonograp. Computer Vision - Accv 2006, Pt Ii = Lect Notes Comput Sc Computer Vision - Accv 2006, Pt Ii = Lect. Notes. Comput. Sc. Computer Vision - Accv 2006, Pt I = Lect Notes Comput Sc Computer Vision - Accv 2006, Pt I = Lect. Notes. Comput. Sc. Computer Vision - Accv 2007, Pt Ii, Proceedings = Lect Notes Comput Sc Computer Vision - Accv 2007, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Accv 2007, Pt I, Proceedings = Lect Notes Comput Sc Computer Vision - Accv 2007, Pt I, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Accv 2009, Pt Iii = Lect Notes Comput Sc Computer Vision - Accv 2009, Pt Iii = Lect. Notes. Comput. Sc. Computer Vision - Accv 2009, Pt Ii = Lect Notes Comput Sc Computer Vision - Accv 2009, Pt Ii = Lect. Notes. Comput. Sc. Computer Vision - Accv 2009, Pt I = Lect Notes Comput Sc Computer Vision - Accv 2009, Pt I = Lect. Notes. Comput. Sc. Computer Vision: Algorithms and Applications = Texts Comput Sci Computer Vision: Algorithms and Applications = Texts. Comput. Sci. Computer Vision and Computer Graphics = Comm Com Inf Sc Computer Vision and Computer Graphics = Comm. Com. Inf. Sc. Computer Vision and Computer Graphics: Theory and Applications = Comm Com Inf Sc Computer Vision and Computer Graphics: Theory and Applications = Comm. Com. Inf. Sc. Computer Vision and Graphics = Comp Imag Vis Computer Vision and Graphics = Comp. Imag. Vis. Computer Vision and Graphics = Comput Imaging Vis Computer Vision and Graphics = Comput. Imaging. Vis. Computer Vision and Graphics = Lect Notes Comput Sc Computer Vision and Graphics = Lect. Notes. Comput. Sc. Computer Vision and Graphics, Pt Ii = Lect Notes Comput Sc Computer Vision and Graphics, Pt Ii = Lect. Notes. Comput. Sc. Computer Vision and Graphics, Pt I = Lect Notes Comput Sc Computer Vision and Graphics, Pt I = Lect. Notes. Comput. Sc. Computer Vision and Image Analysis of Art Ii = Proc Spie Computer Vision and Image Analysis of Art Ii = Proc. Spie. Computer Vision and Image Analysis of Art = Proc Spie Computer Vision and Image Analysis of Art = Proc. Spie. Computer Vision and Image Analysis of Art = P Soc Photo-opt Ins Computer Vision and Image Analysis of Art = P. Soc. Photo-opt. Ins. Computer Vision and Image Understanding = Comput Vis Image Und Computer Vision and Image Understanding = Comput. Vis. Image Und. Computer Vision and Image Understanding = Comput. Vision Image Understanding Computer vision and image understanding : CVIU = Comput Vis Image Underst Computer Vision and Mathematical Methods in Medical and Biomedical Image Analysis = Lect Notes Comput Sc Computer Vision and Mathematical Methods in Medical and Biomedical Image Analysis = Lect. Notes. Comput. Sc. Computer Vision Applications : Meeting The Challenges = P Soc Photo-opt Ins Computer Vision Applications : Meeting The Challenges = P. Soc. Photo-opt. Ins. Computer Vision Approaches to Medical Image Analysis = Lect Notes Comput Sc Computer Vision Approaches to Medical Image Analysis = Lect. Notes. Comput. Sc. Computer Vision/computer Graphics Collaboration Techniques = Lect Notes Comput Sc Computer Vision/computer Graphics Collaboration Techniques = Lect. Notes. Comput. Sc. Computer Vision/computer Graphics Collaboration Techniques, Proceedings = Lect Notes Comput Sc Computer Vision/computer Graphics Collaboration Techniques, Proceedings = Lect. Notes. Comput. Sc. Computer Vision: Detection, Recognition and Reconstruction = Stud Comput Intell Computer Vision: Detection, Recognition and Reconstruction = Stud. Comput. Intell. Computer Vision - Eccv 2000, Pt I, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2000, Pt I, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2002 Pt Iii = Lect Notes Comput Sc Computer Vision - Eccv 2002 Pt Iii = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2002, Pt Ii = Lect Notes Comput Sc Computer Vision - Eccv 2002, Pt Ii = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2002, Pt Iv = Lect Notes Comput Sc Computer Vision - Eccv 2002, Pt Iv = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2004, Pt 1 = Lect Notes Comput Sc Computer Vision - Eccv 2004, Pt 1 = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2004, Pt 2 = Lect Notes Comput Sc Computer Vision - Eccv 2004, Pt 2 = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2004, Pt 3 = Lect Notes Comput Sc Computer Vision - Eccv 2004, Pt 3 = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2004, Pt 4 = Lect Notes Comput Sc Computer Vision - Eccv 2004, Pt 4 = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2006 , Pt 1, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2006 , Pt 1, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2006, Pt 2, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2006, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2006, Pt 3, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2006, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2006, Pt 4, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2006, Pt 4, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2008, Pt Iii, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2008, Pt Iii, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2008, Pt Ii, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2008, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2008, Pt I, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2008, Pt I, Proceedings = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2008, Pt Iv, Proceedings = Lect Notes Comput Sc Computer Vision - Eccv 2008, Pt Iv, Proceedings = Lect. Notes. Comput. Sc. Computer Vision-eccv 2010, Pt Iii = Lect Notes Comput Sc Computer Vision-eccv 2010, Pt Iii = Lect. Notes. Comput. Sc. Computer Vision-eccv 2010, Pt Ii = Lect Notes Comput Sc Computer Vision-eccv 2010, Pt Ii = Lect. Notes. Comput. Sc. Computer Vision-eccv 2010, Pt I = Lect Notes Comput Sc Computer Vision-eccv 2010, Pt I = Lect. Notes. Comput. Sc. Computer Vision-eccv 2010, Pt Iv = Lect Notes Comput Sc Computer Vision-eccv 2010, Pt Iv = Lect. Notes. Comput. Sc. Computer Vision - Eccv 2010, Pt Vi = Lect Notes Comput Sc Computer Vision - Eccv 2010, Pt Vi = Lect. Notes. Comput. Sc. Computer Vision-eccv 2010, Pt V = Lect Notes Comput Sc Computer Vision-eccv 2010, Pt V = Lect. Notes. Comput. Sc. Computer Vision - Eccv 90 = Lect Notes Comput Sc Computer Vision - Eccv 90 = Lect. Notes. Comput. Sc. Computer Vision - Eccv 92 = Lect Notes Comput Sc Computer Vision - Eccv 92 = Lect. Notes. Comput. Sc. Computer Vision for Biomedical Image Applications, Proceedings = Lect Notes Comput Sc Computer Vision for Biomedical Image Applications, Proceedings = Lect. Notes. Comput. Sc. Computer Vision for Industry = P Soc Photo-opt Ins Computer Vision for Industry = P. Soc. Photo-opt. Ins. Computer Vision Graphics and Image Processing = Comput Vision Graph Computer Vision Graphics and Image Processing = Comput. Vision Graph. Computer Vision, Graphics and Image Processing, Proceedings = Lect Notes Comput Sc Computer Vision, Graphics and Image Processing, Proceedings = Lect. Notes. Comput. Sc. Computer Vision-guided Virtual Craniofacial Surgery: A Graph-theoretic and Statistical Perspective = Adv Comput Vis Patt Computer Vision-guided Virtual Craniofacial Surgery: A Graph-theoretic and Statistical Perspective = Adv. Comput. Vis. Patt. Computer Vision, Imaging and Computer Graphics: Theory and Applications = Comm Com Inf Sc Computer Vision, Imaging and Computer Graphics: Theory and Applications = Comm. Com. Inf. Sc. Computer Vision in Human-computer Interaction = Lect Notes Comput Sc Computer Vision in Human-computer Interaction = Lect. Notes. Comput. Sc. Computer Vision in Human-computer Interaction, Proceedings = Lect Notes Comput Sc Computer Vision in Human-computer Interaction, Proceedings = Lect. Notes. Comput. Sc. Computer Vision Systems, Proceedings = Lect Notes Comput Sc Computer Vision Systems, Proceedings = Lect. Notes. Comput. Sc. Computer Vison - Eccv 2002, Pt 1 = Lect Notes Comput Sc Computer Vison - Eccv 2002, Pt 1 = Lect. Notes. Comput. Sc. Computerworld = Computerworld Computing Action: A Narratological Approach = Narratologia Computing Action: A Narratological Approach = Narratologia. Computing and Combinatorics = Lect Notes Comput Sc Computing and Combinatorics = Lect. Notes. Comput. Sc. Computing and Combinatorics, Proceedings = Lect Notes Comput Sc Computing and Combinatorics, Proceedings = Lect. Notes. Comput. Sc. Computing and Computational Intelligence, Proceedings = Ele Com Eng Computing and Computational Intelligence, Proceedings = Ele. Com. Eng. Computing and Computational Techniques in Sciences = Ma Comput Sci Eng Computing and Computational Techniques in Sciences = Ma. Comput. Sci. Eng. Computing and Computational Techniques in Sciences = Math Comput Sci Eng Computing and Computational Techniques in Sciences = Math. Comput. Sci. Eng. Computing and Control Engineering = Comput Control Eng Computing and Control Engineering = Comput. Control Eng. Computing and Informatics = Comput Inform Computing and Informatics = Comput. Inform. Computing Anticipatory Systems = Aip Conf Proc Computing Anticipatory Systems = Aip. Conf. Proc. Computing Anticipatory Systems: Casys - First International Conference = Aip Conf Proc Computing Anticipatory Systems: Casys - First International Conference = Aip. Conf. Proc. Computing Archaeology for Understanding The Past, Proceedings = Brit Archaeol Rep In Computing Archaeology for Understanding The Past, Proceedings = Brit. Archaeol. Rep. In. Computing Attitude and Affect in Text: Theory and Applications = Inform Retrieval Ser Computing Attitude and Affect in Text: Theory and Applications = Inform. Retrieval. Ser. Computing = Computing Computing = Computing Computing & Control Engineering Journal = Comput Control Eng J Computing & Control Engineering Journal = Comput. Control Eng. J. Computing for Business = Comput Bus Computing for Business = Comput. Bus. Computing for High Luminosity and High Intensity Facilities = Aip Conf Proc Computing for High Luminosity and High Intensity Facilities = Aip. Conf. Proc. Computing in Object-oriented Parallel Environments = Lect Notes Comput Sc Computing in Object-oriented Parallel Environments = Lect. Notes. Comput. Sc. Computing in Science & Engineering = Comput Sci Eng Computing in Science & Engineering = Comput. Sci. Eng. Computing in The 90s = Lect Notes Comput Sc Computing in The 90s = Lect. Notes. Comput. Sc. Computing Letters = Comput. Lett. Computing Meaning = Stud Linguist Philos Computing Meaning = Stud. Linguist. Philos. Computing Neuron = Comp Neur S Computing Neuron = Comp. Neur. S. Computing Science and Statistics (series) = Comp Sci Stat Computing Science and Statistics (series) = Comp. Sci. Stat. Computing Supplementum = Comp Suppl Computing Supplementum = Comp. Suppl. Computing Supplementum = Comput. Suppl. Computing Surveys = Comput Surv Computing Surveys = Comput. Surv. Computing Systems = Comput Syst Computing Systems = Comput. Syst. Computing Systems = Comput Syst Sci Eng Computing Systems = Comput. Syst. Sci. Eng. Computing Systems in Engineering = Comput Syst Eng Computing Systems in Engineering = Comput. Syst. Eng. Computing The Zeros of Analytic Functions = Lect Notes Math Computing The Zeros of Analytic Functions = Lect. Notes. Math. Computing With Social Trust = Hum-comput Int-sprin Computing With Social Trust = Hum-comput. Int-sprin. Computing With T Node Parallel Architecture = Euro C Comp Computing With T Node Parallel Architecture = Euro. C. Comp. Comrades Go Private = Geonom Inst Comrades Go Private = Geonom. Inst. Comrades No More: The Seeds of Political Change in Eastern Europe = Bcsia Stud Int Secur Comrades No More: The Seeds of Political Change in Eastern Europe = Bcsia. Stud. Int. Secur. Comsat Technical Review = Comsat Tech Rev Comsat Technical Review = Comsat Tech. Rev. COMSIG review / COMSIG, Chiropractors and Osteopaths Musculo-Skeletal Interest Group = COMSIG Rev Comte De Gobineau and Orientalism: Selected Eastern Writings = Cult Civiliz Mid E Comte De Gobineau and Orientalism: Selected Eastern Writings = Cult. Civiliz. Mid. E. Comtemporary European Literature: Common Tendencies and Developments in European Languages With An Emphasis On Narrative and Poetry = Stud Dokumente Gesch Comtemporary European Literature: Common Tendencies and Developments in European Languages With An Emphasis On Narrative and Poetry = Stud. Dokumente. Gesch. Comunicaciones presentadas a las Jornadas del Comite Espanol de la Detergencia = Comun. Jorn. Com. Esp. Deterg. Comunicacion Y Sociedad = Comun Soc-navarra Comunicacion Y Sociedad = Comun. Soc-navarra. Comunicar = Comunicar Comunita = Comunita Conceiving Israel: The Fetus in Rabbinic Narratives = Divin Reread Late An Conceiving Israel: The Fetus in Rabbinic Narratives = Divin. Reread. Late. An. Concentration, Functional Inequalities and Isoperimetry = Contemp Math Concentration, Functional Inequalities and Isoperimetry = Contemp. Math. Concentration Inequalities and Model Selection: Ecole D'ete De Probabilites De Saint-flour Xxxiii - 2003 = Lect Notes Math Concentration Inequalities and Model Selection: Ecole D'ete De Probabilites De Saint-flour Xxxiii - 2003 = Lect. Notes. Math. Concentration Risk in Credit Portfolios = Eaa Lect Notes Concentration Risk in Credit Portfolios = Eaa. Lect. Notes. Concept Formation : Knowledge and Experience in Unsupervised Learning = Mor Kauf M Concept Formation : Knowledge and Experience in Unsupervised Learning = Mor. Kauf. M. Conception Optimale De Structures = Math Appl-berlin Conception Optimale De Structures = Math. Appl-berlin. Conceptions of God, Freedom, and Ethics in African American and Jewish Theology: Essays On Abjection in Literature, Mass Culture, and Film = Black Relig Woman Th Conceptions of God, Freedom, and Ethics in African American and Jewish Theology: Essays On Abjection in Literature, Mass Culture, and Film = Black. Relig. Woman. Th. Conceptions of Philosophy = Roy I Philos Suppl Conceptions of Philosophy = Roy. I. Philos. Suppl. Concept Lattices and Their Applications = Lect Notes Artif Int Concept Lattices and Their Applications = Lect. Notes. Artif. Int. Concept Lattices, Proceedings = Lect Notes Artif Int Concept Lattices, Proceedings = Lect. Notes. Artif. Int. Concept of Latin America in The United States: From Everyday Language to Social Scientific Discourse = Lat Am Polit Econ Se Concept of Latin America in The United States: From Everyday Language to Social Scientific Discourse = Lat. Am. Polit. Econ. Se. Concept of Passivity in Husserl's Phenomenology = Contrib Phenomenol Concept of Passivity in Husserl's Phenomenology = Contrib. Phenomenol. Concept of Shamanism: Uses and Abuses = Bibl Shaman Concept of Shamanism: Uses and Abuses = Bibl. Shaman. Concepts and Breeding of Heterosis in Crop Plants = Cssa Spec Publ Concepts and Breeding of Heterosis in Crop Plants = Cssa. Spec. Publ. Concepts and Results in Chaotic Dynamics: A Short Course = Theor Math Phys Ser Concepts and Results in Chaotic Dynamics: A Short Course = Theor. Math. Phys. Ser. Concepts and Trends in Medical Radiation Dosimetry = Aip Conf Proc Concepts and Trends in Medical Radiation Dosimetry = Aip. Conf. Proc. Concepts in Electron Correlation = Nato Sci Ser Ii-math Concepts in Electron Correlation = Nato. Sci. Ser. Ii-math. Concepts in Electron Correlation = Nato Sci Ser Ii Math Concepts in Electron Correlation = Nato. Sci. Ser. Ii. Math. Concepts in immunopathology = Concepts Immunopathol Concepts in Immunopathology = Concepts Immunopathol. Concepts in Law = Law Philos Libr Concepts in Law = Law Philos. Libr. Concepts in Magenetic Resonance = Concepts Magn. Reson. Concepts in Magnetic Resonance = Concept Magnetic Res Concepts in Magnetic Resonance = Concept. Magnetic Res. Concepts in Magnetic Resonance Part A = Concept Magn Reson A Concepts in Magnetic Resonance Part A = Concept. Magn. Reson. A Concepts in Magnetic Resonance Part A = Concepts Magn Reso A Concepts in Magnetic Resonance Part A = Concepts Magn. Reso. A Concepts in Magnetic Resonance Part B = Concepts Magn. Reson. Part B Concepts in Magnetic Resonance Part B-magnetic Resonance Engineering = Concept Magn Reson B Concepts in Magnetic Resonance Part B-magnetic Resonance Engineering = Concept. Magn. Reson. B. Concepts in Magnetic Resonance Part B-magnetic Resonance Engineering = Concepts Magn Reso B Concepts in Magnetic Resonance Part B-magnetic Resonance Engineering = Concepts Magn. Reso. B. Concepts in Neuroscience = Concept Neurosci Concepts in Neuroscience = Concept. Neurosci. Concepts in Pediatric Neurosurgery = Conc Ped N Concepts in Pediatric Neurosurgery = Conc. Ped. N. Concepts in Pediatric Neurosurgery, Vol 11 = Conc Ped N Concepts in Pediatric Neurosurgery, Vol 11 = Conc. Ped. N. Concepts in The Design and Management of The Coordinated Activity of Active and Reactive Power = Vdi Bericht Concepts in The Design and Management of The Coordinated Activity of Active and Reactive Power = Vdi. Bericht. Concepts of Culture = German Life Civiliza Concepts of Culture = German. Life. Civiliza. Concepts of Dialogue = Beitr Dialogforsch Concepts of Dialogue = Beitr. Dialogforsch. Conceptual Development = J Piaget Sy Conceptual Development = J. Piaget. Sy. Conceptual Foundations of Systems Biology: An Introduction = Syst Biol Theor Tech Conceptual Foundations of Systems Biology: An Introduction = Syst. Biol. Theor. Tech. Conceptual Graphs and Fuzzy Logic: A Fusion for Representing and Reasoning With Linguistic Information = Stud Comput Intell Conceptual Graphs and Fuzzy Logic: A Fusion for Representing and Reasoning With Linguistic Information = Stud. Comput. Intell. Conceptualizing Behaviour in Health and Social Research: A Practical Guide to Data Analysis = Health Hum Dev Conceptualizing Behaviour in Health and Social Research: A Practical Guide to Data Analysis = Health Hum. Dev. Conceptual Modeling Er 2000, Proceedings = Lect Notes Comput Sc Conceptual Modeling Er 2000, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2002 = Lect Notes Comput Sc Conceptual Modeling - Er 2002 = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2003, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2003, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2004, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2004, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2005 = Lect Notes Comput Sc Conceptual Modeling - Er 2005 = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2006, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2006, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2007, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2007, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2008, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2008, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2009, Proceedings = Lect Notes Comput Sc Conceptual Modeling - Er 2009, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling - Er 2010 = Lect Notes Comput Sc Conceptual Modeling - Er 2010 = Lect. Notes. Comput. Sc. Conceptual Modeling - Er'99 = Lect Notes Comput Sc Conceptual Modeling - Er'99 = Lect. Notes. Comput. Sc. Conceptual Modeling for Advanced Application Domains, Proceedings = Lect Notes Comput Sc Conceptual Modeling for Advanced Application Domains, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling for E-business and The Web, Proceedings = Lect Notes Comput Sc Conceptual Modeling for E-business and The Web, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling for New Information Systems Technologies = Lect Notes Comput Sc Conceptual Modeling for New Information Systems Technologies = Lect. Notes. Comput. Sc. Conceptual Modeling for Novel Application Domains, Proceedings = Lect Notes Comput Sc Conceptual Modeling for Novel Application Domains, Proceedings = Lect. Notes. Comput. Sc. Conceptual Modeling: Foundations and Applications = Lect Notes Comput Sc Conceptual Modeling: Foundations and Applications = Lect. Notes. Comput. Sc. Conceptual Sructures At Work, Proceedings = Lect Notes Comput Sc Conceptual Sructures At Work, Proceedings = Lect. Notes. Comput. Sc. Conceptual Structures: Applications, Implementation and Theory = Lect Notes Artif Int Conceptual Structures: Applications, Implementation and Theory = Lect. Notes. Artif. Int. Conceptual Structures: Broadening The Base, Proceedings = Lect Notes Artif Int Conceptual Structures: Broadening The Base, Proceedings = Lect. Notes. Artif. Int. Conceptual Structures: Common Semantics for Sharing Knowledge, Proceedings = Lect Notes Artif Int Conceptual Structures: Common Semantics for Sharing Knowledge, Proceedings = Lect. Notes. Artif. Int. Conceptual Structures for Knowledge Creation and Communication = Lect Notes Artif Int Conceptual Structures for Knowledge Creation and Communication = Lect. Notes. Artif. Int. Conceptual Structures: From Information to Intelligence = Lect Notes Artif Int Conceptual Structures: From Information to Intelligence = Lect. Notes. Artif. Int. Conceptual Structures: Fulfilling Peirce's Dream = Lect Notes Artif Int Conceptual Structures: Fulfilling Peirce's Dream = Lect. Notes. Artif. Int. Conceptual Structures in Practice = Ch Crc Stud Info Ser Conceptual Structures in Practice = Ch. Crc. Stud. Info. Ser. Conceptual Structures: Inspiration and Application = Lect Notes Artif Int Conceptual Structures: Inspiration and Application = Lect. Notes. Artif. Int. Conceptual Structures: Integration and Interfaces, Proceedings = Lect Notes Artif Int Conceptual Structures: Integration and Interfaces, Proceedings = Lect. Notes. Artif. Int. Conceptual Structures: Knowledge Architectures for Smart Applications, Proceedings = Lect Notes Artif Int Conceptual Structures: Knowledge Architectures for Smart Applications, Proceedings = Lect. Notes. Artif. Int. Conceptual Structures: Knowledge Visualization and Reasoning = Lect Notes Artif Int Conceptual Structures: Knowledge Visualization and Reasoning = Lect. Notes. Artif. Int. Conceptual Structures: Leveraging Semantic Technologies, Proceedings = Lect Notes Artif Int Conceptual Structures: Leveraging Semantic Technologies, Proceedings = Lect. Notes. Artif. Int. Conceptual Structures: Logical, Linguistic, and Computational Issues, Proceedings = Lect Notes Artif Int Conceptual Structures: Logical, Linguistic, and Computational Issues, Proceedings = Lect. Notes. Artif. Int. Concern = Concern Concern = Concern (Anaheim) Concerned demography = Concerned Demogr Concern for dying = Concern Dying Concern in care of the aging = Concern Care Aging Concern in Care of the Aging = Concern Care Aging Concerning Poetry = Concerning Poetry Concern (Regina, Sask.) = Concern Conciencia latinoamericana : boletin periodico de opiniones de Catolicas por el Derecho a Decidir = Concienc Latinoam Concilium = Concilium Concise Course On Stochastic Partial Differential Equations = Lect Notes Math Concise Course On Stochastic Partial Differential Equations = Lect. Notes. Math. Concise Introduction to Image Processing Using C++ = Ch Crc Numer Anal Sc Concise Introduction to Image Processing Using C++ = Ch. Crc. Numer. Anal. Sc. Concise Introduction to Mathematical Logic, Third Edition = Universitext Concise Introduction to Mathematical Logic, Third Edition = Universitext. Concordia Historical Institute quarterly. Concordia Historical Institute = Concordia Hist Inst Q Concordia journal = Concordia J Concours medical = Concours Med Concours Medical = Concours Med. Concrete 2000 = Transport Res Rec Concrete 2000 = Transport. Res. Rec. Concrete 2001 = Transport Res Rec Concrete 2001 = Transport. Res. Rec. Concrete 2002 = Transport Res Rec Concrete 2002 = Transport. Res. Rec. Concrete 2003 = Transport Res Rec Concrete 2003 = Transport. Res. Rec. Concrete 2004 = Transport Res Rec Concrete 2004 = Transport. Res. Rec. Concrete and Constructional Engineering = Concr Constr Eng Concrete and Constructional Engineering = Concr. Constr. Eng. Concrete Approach to Classical Analysis = Cms Books Math Concrete Approach to Classical Analysis = Cms. Books. Math. Concrete = Concrete Concrete Construction = Concrete Constr Concrete Construction = Concrete Constr. Concrete Engineering International = Concr. Eng. Int. Concrete Functional Calculus = Springer Monogr Math Concrete Functional Calculus = Springer. Monogr. Math. Concrete in Construction = Transport Res Rec Concrete in Construction = Transport. Res. Rec. Concrete in Hot Climates = Rilem Proc Concrete in Hot Climates = Rilem. Proc. Concrete in Marine Environment = Amer Conc I Concrete in Marine Environment = Amer. Conc. I. Concrete International = Concr. Int. Concrete Introduction to Real Analysis = Monogr Txb Pure Appl Concrete Introduction to Real Analysis = Monogr. Txb. Pure. Appl. Concrete Materials 2005 = Transport Res Rec Concrete Materials 2005 = Transport. Res. Rec. Concrete Materials 2006 = Transport Res Rec Concrete Materials 2006 = Transport. Res. Rec. Concrete Materials: Properties, Performance and Applications = Mater Sci Technol Concrete Materials: Properties, Performance and Applications = Mater. Sci. Technol. Concrete Pipe for The New Millennium = Am Soc Test Mater Concrete Pipe for The New Millennium = Am. Soc. Test. Mater. Concrete Quarterly = Concrete Quart Concrete Quarterly = Concrete Quart. Concrete Science and Engineering = Concr. Sci. Eng. Concrete Tetrahedron: Symbolic Sums, Recurrence Equations, Generating Functions, Asymptotic Estimates = Text Mg Symb Comput Concrete Tetrahedron: Symbolic Sums, Recurrence Equations, Generating Functions, Asymptotic Estimates = Text. Mg. Symb. Comput. Concur 2003 - Concurrency Theory = Lect Notes Comput Sc Concur 2003 - Concurrency Theory = Lect. Notes. Comput. Sc. Concur 2004 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2004 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2005 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2005 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2006 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2006 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2007 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2007 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2008 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2008 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2009 - Concurrency Theory, Proceedings = Lect Notes Comput Sc Concur 2009 - Concurrency Theory, Proceedings = Lect. Notes. Comput. Sc. Concur 2010 - Concurrency Theory = Lect Notes Comput Sc Concur 2010 - Concurrency Theory = Lect. Notes. Comput. Sc. Concur 90 = Lect Notes Comput Sc Concur 90 = Lect. Notes. Comput. Sc. Concur 91 = Lect Notes Comput Sc Concur 91 = Lect. Notes. Comput. Sc. Concur 92 = Lect Notes Comput Sc Concur 92 = Lect. Notes. Comput. Sc. Concur '94: Concurrency Theory = Lect Notes Comput Sc Concur '94: Concurrency Theory = Lect. Notes. Comput. Sc. Concur'97 : Concurrency Theory = Lect Notes Comput Sc Concur'97 : Concurrency Theory = Lect. Notes. Comput. Sc. Concur'98: Concurrency Theory = Lect Notes Comput Sc Concur'98: Concurrency Theory = Lect. Notes. Comput. Sc. Concur '99: Concurrency Theory = Lect Notes Comput Sc Concur '99: Concurrency Theory = Lect. Notes. Comput. Sc. Concur'99: Concurrency Theory = Lect Notes Comput Sc Concur'99: Concurrency Theory = Lect. Notes. Comput. Sc. Concurrency and Computation-practice & Experience = Concurr Comp-pract E Concurrency and Computation-practice & Experience = Concurr. Comp-pract. E. Concurrency and Hardware Design: Advanced in Petri Nets = Lect Notes Comput Sc Concurrency and Hardware Design: Advanced in Petri Nets = Lect. Notes. Comput. Sc. Concurrency, Compositionality, and Correctness = Lect Notes Comput Sc Concurrency, Compositionality, and Correctness = Lect. Notes. Comput. Sc. Concurrency, Graphs and Models = Lect Notes Comput Sc Concurrency, Graphs and Models = Lect. Notes. Comput. Sc. Concurrency-practice and Experience = Concurrency-pract Ex Concurrency-practice and Experience = Concurrency-pract. Ex. Concurrent Engineering-research and Applications = Concurrent Eng-res A Concurrent Engineering-research and Applications = Concurrent Eng-res. A. Concurrent Information Processing and Computing = Nato Sc S Ss Iii C S Concurrent Information Processing and Computing = Nato. Sc. S. Ss. Iii. C. S. Concurrent Reactive Plans = Lect Notes Artif Int Concurrent Reactive Plans = Lect. Notes. Artif. Int. Concurrent Systems Engineering Series = Concur Syst Engn Ser Concurrent Systems Engineering Series = Concur. Syst. Engn. Ser. Condensed Matter and Materials Physics Conference (cmmp10) = J Phys Conf Ser Condensed Matter and Materials Physics Conference (cmmp10) = J. Phys. Conf. Ser. Condensed Matter Physics = Aip Conf Proc Condensed Matter Physics = Aip. Conf. Proc. Condensed Matter Physics = Condens Matter Phys Condensed Matter Physics = Condens. Matter Phys. Condensed Matter Physics-crc = Condens Matt Phy-crc Condensed Matter Physics-crc = Condens. Matt. Phy-crc. Condensed Matter Research and Technology = Condens Matter Res T Condensed Matter Research and Technology = Condens. Matter Res. T. Condensed Matter Theories = Condens. Matter Theor. Condensed Matter Theories = Cond Mat Th Condensed Matter Theories = Cond. Mat. Th. Condensed Matter Theories (nova) = Condensed Matt Theor Condensed Matter Theories (nova) = Condensed Matt. Theor. Condensed Matter Theories, Vol 13 = Cond Mat Th Condensed Matter Theories, Vol 13 = Cond. Mat. Th. Condensed Matter Theories, Vol 14 = Cond Mat Th Condensed Matter Theories, Vol 14 = Cond. Mat. Th. Condensed Matter Theories, Vol 15 = Cond Mat Th Condensed Matter Theories, Vol 15 = Cond. Mat. Th. Condensed Matter Theories, Vol 16 = Cond Mat Th Condensed Matter Theories, Vol 16 = Cond. Mat. Th. Condensed Matter Theories, Vol 17 = Cond Mat Th Condensed Matter Theories, Vol 17 = Cond. Mat. Th. Condensed Matter Theories, Vol 19 = Condensed Matt Theor Condensed Matter Theories, Vol 19 = Condensed Matt. Theor. Condensed Matter Theories, Vol 20 = Condensed Matt Theor Condensed Matter Theories, Vol 20 = Condensed Matt. Theor. Condensed Matter Theories, Vol 21 = Condensed Matt Theor Condensed Matter Theories, Vol 21 = Condensed Matt. Theor. Condensed Matter Theories, Vol 5 = Cond Mat Th Condensed Matter Theories, Vol 5 = Cond. Mat. Th. Condensed Matter Theories, Vol 6 = Cond Mat Th Condensed Matter Theories, Vol 6 = Cond. Mat. Th. Condensed Matter Theories, Vol 7 = Cond Mat Th Condensed Matter Theories, Vol 7 = Cond. Mat. Th. Condensed Matter Theories, Vol 8 = Cond Mat Th Condensed Matter Theories, Vol 8 = Cond. Mat. Th. Condensed Systems of Low Dimensionality = Nato Adv Sci I B-phy Condensed Systems of Low Dimensionality = Nato. Adv. Sci. I. B-phy. Conditio Judaica = Conditio Jud Conditio Judaica = Conditio Jud. Conditio Judaica = Condit Jud Conditio Judaica = Condit. Jud. Conditional and Typed Rewriting Systems = Lect Notes Comput Sc Conditional and Typed Rewriting Systems = Lect. Notes. Comput. Sc. Conditional Moment Estimation of Nonlinear Equation Systems: With An Application to An Oligopoly Model of Cooperative R & D = Lect Notes Econ Math Conditional Moment Estimation of Nonlinear Equation Systems: With An Application to An Oligopoly Model of Cooperative R & D = Lect. Notes. Econ. Math. Conditional reflex = Cond Reflex Conditional Reflex = Cond Reflex Conditional Reflex = Cond. Reflex Conditionals in Nonmonotonic Reasoning and Belief Revision = Lect Notes Artif Int Conditionals in Nonmonotonic Reasoning and Belief Revision = Lect. Notes. Artif. Int. Condition Assessment of Aged Structures = Woodhead Publ Mech E Condition Assessment of Aged Structures = Woodhead. Publ. Mech. E. Conditioned Arousal in Insomnia Patients = Sleep-physiol Funct Conditioned Arousal in Insomnia Patients = Sleep-physiol. Funct. Condition Monitoring '94 = Condit Mon Condition Monitoring '94 = Condit. Mon. Condition Monitoring and Assessment of Power Transformers Using Computational Intelligence = Power Syst Condition Monitoring and Assessment of Power Transformers Using Computational Intelligence = Power Syst. Condition Monitoring = Condit Mon Condition Monitoring = Condit. Mon. Condorcet's Paradox = Theory Decis Ser C G Condorcet's Paradox = Theory. Decis. Ser. C. G. Condorcet studies = Condorcet Stud Condor = Condor Condor, The = Condor Conducting and Magnetic Organometallic Molecular Materials = Top Organometal Chem Conducting and Magnetic Organometallic Molecular Materials = Top. Organometal. Chem. Conducting Organic Materials and Devices = Semiconduct Semimet Conducting Organic Materials and Devices = Semiconduct. Semimet. Conducting Polymers and Polymer Electrolytes: From Biology to Photovoltaics = Acs Sym Ser Conducting Polymers and Polymer Electrolytes: From Biology to Photovoltaics = Acs. Sym. Ser. Conducting Polymers: A New Era in Electrochemistry = Monogr Electrochem Conducting Polymers: A New Era in Electrochemistry = Monogr. Electrochem. Conducting Polymers - Transport Phenomena = Mater Sci Forum Conducting Polymers - Transport Phenomena = Mater. Sci. Forum. Conector = Conector Confectionery Production = Confect Prod Confectionery Production = Confect. Prod. Confederation of Australian Critical Care Nurses journal = Confed Aust Crit Care Nurses J Confederation of European Economic Associations Conference Volumes = Conf Eea C Confederation of European Economic Associations Conference Volumes = Conf. Eea. C. Confederation of the Australian Critical Care Nurses Journal = Confed. Aust. Crit. Care Nurses J. Conference: Agricultural Engineering 2000 = Vdi Bericht Conference: Agricultural Engineering 2000 = Vdi. Bericht. Conference: Agricultural Engineering 2001 = Vdi Bericht Conference: Agricultural Engineering 2001 = Vdi. Bericht. Conference: Agricultural Engineering 2002 = Vdi Bericht Conference: Agricultural Engineering 2002 = Vdi. Bericht. Conference: Agricultural Engineering, 2003 = Vdi Bericht Conference: Agricultural Engineering, 2003 = Vdi. Bericht. Conference: Agricultural Engineering 2004 = Vdi Bericht Conference: Agricultural Engineering 2004 = Vdi. Bericht. Conference: Agricultural Engineering 2007 = Vdi Bericht Conference: Agricultural Engineering 2007 = Vdi. Bericht. Conference: Agricultural Engineering - Land-technik Ageng 2009 = Vdi Bericht Conference: Agricultural Engineering - Land-technik Ageng 2009 = Vdi. Bericht. Conference: Agricultural Engineering = Vdi Bericht Conference: Agricultural Engineering = Vdi. Bericht. Conference Board Record = Conf Board Rec Conference Board Record = Conf. Board Rec. Conference Moshe Flato 1999, Vol Ii = Math Phys S Conference Moshe Flato 1999, Vol Ii = Math. Phys. S. Conference Moshe Flato 1999, Vol I = Math Phys S Conference Moshe Flato 1999, Vol I = Math. Phys. S. Conference of Latin Americanist Geographers Yearbook 1996, Vol 22 = Conf Lat Amer Geogr Conference of Latin Americanist Geographers Yearbook 1996, Vol 22 = Conf. Lat. Amer. Geogr. Conference of Latin Americanist Geographers Yearbook = Conf Lat Amer Geogr Conference of Latin Americanist Geographers Yearbook = Conf. Lat. Amer. Geogr. Conference of Mediterrarean Forest Administrators and Researches = Colloq Inra Conference of Mediterrarean Forest Administrators and Researches = Colloq. Inra. Conference On Academic and Industrial Cooperation in Space Research = Esa Sp Publ Conference On Academic and Industrial Cooperation in Space Research = Esa. Sp. Publ. Conference On Adaptive Ecosystem Restoration and Management: Restoration of Cordilleran Conifer Landscapes of North America = Usda Rocky Conference On Adaptive Ecosystem Restoration and Management: Restoration of Cordilleran Conifer Landscapes of North America = Usda. Rocky. Conference On Atoms and Molecules Near Surfaces = J Phys Conf Ser Conference On Atoms and Molecules Near Surfaces = J. Phys. Conf. Ser. Conference On Crop Protection in The Sahel = Acdi Semin Colloq Conference On Crop Protection in The Sahel = Acdi. Semin. Colloq. Conference On Electrical Insulation and Dielectric Phenomena Annual Report = C Elect Insul Diel P Conference On Electrical Insulation and Dielectric Phenomena Annual Report = C. Elect. Insul. Diel. P. Conference On Emergency Planning and Management = Imeche Conf Trans Conference On Emergency Planning and Management = Imeche. Conf. Trans. Conference On Engineering for Profit From Waste - V = Imeche Conf Trans Conference On Engineering for Profit From Waste - V = Imeche. Conf. Trans. Conference On Human System Interactions = C Hum Syst Interact Conference On Human System Interactions = C. Hum. Syst. Interact. Conference On Local Computer Networks = C Local Comput Netw Conference On Local Computer Networks = C. Local Comput. Netw. Conference On Nasa Centers for Commercial Development of Space (nasa Ccds) = Aip Conf Proc Conference On Nasa Centers for Commercial Development of Space (nasa Ccds) = Aip. Conf. Proc. Conference On New Trains for New Railways = Imeche Conf Trans Conference On New Trains for New Railways = Imeche. Conf. Trans. Conference On Office Information Systems / = Sigois Bul Conference On Office Information Systems / = Sigois. Bul. Conference On Recent Shifts in Vegetation Boundaries of Deciduous Forests, Especially Due to General Global Warming = Monte Verit Conference On Recent Shifts in Vegetation Boundaries of Deciduous Forests, Especially Due to General Global Warming = Monte. Verit. Conference On Selenium = Serb Ac Sci Conference On Selenium = Serb. Ac. Sci. Conference On Software Engineering Education and Training = Conf Softw Eng Educ Conference On Software Engineering Education and Training = Conf. Softw. Eng. Educ. Conference On Software Engineering Education and Training Workshop-cseetw = C Softw Eng Educ Tr Conference On Software Engineering Education and Training Workshop-cseetw = C. Softw. Eng. Educ. Tr. Conference On Statistical Science Honouring The Bicentennial of Stefano Francini's Birth = Monte Verit Conference On Statistical Science Honouring The Bicentennial of Stefano Francini's Birth = Monte. Verit. Conference On The Physics and Technology of Semiconductor Devices and Integrated Circuits = P Soc Photo-opt Ins Conference On The Physics and Technology of Semiconductor Devices and Integrated Circuits = P. Soc. Photo-opt. Ins. Conference Papers: The Grim Reaper: Organised Crime in The 1990s - Implications for South and Southern Africa = Issup Ad Hoc Public Conference Papers: The Grim Reaper: Organised Crime in The 1990s - Implications for South and Southern Africa = Issup. Ad. Hoc. Public. Conference Proceedings 1: Transportation Research Board = Conf Proc Transp Res Conference Proceedings 1: Transportation Research Board = Conf. Proc. Transp. Res. Conference Proceedings and Lecture Notes in Algebraic Geometry = Conf Pr Lect Not Alg Conference Proceedings and Lecture Notes in Algebraic Geometry = Conf. Pr. Lect. Not. Alg. Conference Proceedings and Lecture Notes in Applied Physics = C Pr Lect Note Appl Conference Proceedings and Lecture Notes in Applied Physics = C. Pr. Lect. Note. Appl. Conference Proceedings and Lecture Notes in Geometry and Topology = Conf Proc Lect Not G Conference Proceedings and Lecture Notes in Geometry and Topology = Conf. Proc. Lect. Not. G. Conference Proceedings and Lecture Notes in Geometry and Topology = Conf. Proc. Lecture Notes Geom. Topology Conference Proceedings and Lecture Notes in Physics = Conf Proc Lec N Phys Conference Proceedings and Lecture Notes in Physics = Conf. Proc. Lec. N. Phys. Conference Proceedings and Lecture Notes in Physics = Conf. Proc. Lecture Notes Phys. Conference proceedings : ... Annual International Conference of the IEEE Engineering in Medicine and Biology Society. IEEE Engineering in Medicine and Biology Society. Conference = Conf Proc IEEE Eng Med Biol Soc Conference Proceedings - Annual International Symposium On Computer Architecture = Conf Proc Int Symp C Conference Proceedings - Annual International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Conference Proceedings Annual International Symposium On Computer Architecture = Conf Proc Int Symp C Conference Proceedings Annual International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Conference Proceedings At Antec '98: Plastics On My Mind, Vols I-3 = Soc Plast E Conference Proceedings At Antec '98: Plastics On My Mind, Vols I-3 = Soc. Plast. E. Conference Proceedings - Indium Phosphide and Related Materials = Conf P Indium Phosph Conference Proceedings - Indium Phosphide and Related Materials = Conf. P. Indium Phosph. Conference Proceedings of The 2001 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc Conference Proceedings of The 2001 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc. Conference Proceedings of The 2002 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc Conference Proceedings of The 2002 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc. Conference Proceedings of The 2004 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc Conference Proceedings of The 2004 Ieee International Performance, Computing, and Communications Conference = Ieee Ipccc. Conference Proceedings of The 2005 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc Conference Proceedings of The 2005 Ieee International Performance, Computing and Communications Conference = Ieee Ipccc. Conference Proceedings of The Italian Physical Society = Conf P Ital Conference Proceedings of The Italian Physical Society = Conf. P. Ital. Conference Proceedings Series :american Chemical Society = Conf P Acs Conference Proceedings Series :american Chemical Society = Conf. P. Acs. Conference Record of 1989 Annual Pulp and Paper Industry Technical Conference = Pulp Pap Ind Tech Co Conference Record of 1989 Annual Pulp and Paper Industry Technical Conference = Pulp Pap. Ind. Tech. Co. Conference Record of 1990 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1990 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1991 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1991 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1992 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1992 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1993 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1993 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1994 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1994 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1996 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1996 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1997 Annual Pulp and Paper Industry Technical Conference = Pulp Pap Ind Tech Co Conference Record of 1997 Annual Pulp and Paper Industry Technical Conference = Pulp Pap. Ind. Tech. Co. Conference Record of 1998 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1998 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 1999 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 1999 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 2000 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 2000 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 2001 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 2001 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 2005 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 2005 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 2006 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 2006 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of 2010 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of 2010 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of Papers Presented At The First Vehicle Navigation and Information Systems Conference ( Vnis 89 ) = Ieee Conf R Conference Record of Papers Presented At The First Vehicle Navigation and Information Systems Conference ( Vnis 89 ) = Ieee. Conf. R. Conference Record of The 1998 Ieee Industry Applications Conference, Vols 1-3 = Ieee Ind Applic Soc Conference Record of The 1998 Ieee Industry Applications Conference, Vols 1-3 = Ieee Ind. Applic. Soc. Conference Record of The 2001 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind Applic Soc Conference Record of The 2001 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind. Applic. Soc. Conference Record of The 2002 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of The 2002 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of The 2002 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind Applic Soc Conference Record of The 2002 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind. Applic. Soc. Conference Record of The 2003 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of The 2003 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of The 2004 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Conference Record of The 2004 Annual Pulp and Paper Industry Technical Conference = Ieee. Pulp P. Conference Record of The 2004 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind Applic Soc Conference Record of The 2004 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind. Applic. Soc. Conference Record of The 2005 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind Applic Soc Conference Record of The 2005 Ieee Industry Applications Conference, Vols 1-4 = Ieee Ind. Applic. Soc. Conference Record of The 2007 Ieee Industry Applications Conference Forty-second Ias Annual Meeting, Vols. 1-5 = Ieee Ind Applic Soc Conference Record of The 2007 Ieee Industry Applications Conference Forty-second Ias Annual Meeting, Vols. 1-5 = Ieee Ind. Applic. Soc. Conference Record of The 2008 Ieee International Symposium On Electrical Insulation, Vols 1 and 2 = Ieee Int Sym Elec In Conference Record of The 2008 Ieee International Symposium On Electrical Insulation, Vols 1 and 2 = Ieee Int. Sym. Elec. In. Conference Record of The 2010 Ieee International Symposium On Electrical Insulation (isei) = Ieee Int Sym Elec In Conference Record of The 2010 Ieee International Symposium On Electrical Insulation (isei) = Ieee Int. Sym. Elec. In. Conference Record of The Asilomar Conference On Signals Systems and Computers = Conf Rec Asilomar C Conference Record of The Asilomar Conference On Signals Systems and Computers = Conf. Rec. Asilomar C. Conference Record of The Asilomar Conference On Signals, Systems and Computers = Conf Rec Asilomar C Conference Record of The Asilomar Conference On Signals, Systems and Computers = Conf. Rec. Asilomar C. Conference Record of the IEEE Photovoltaic Specialists Conference = Conf. Rec. IEEE Photovoltaic Spec. Conf. Conference Record of The Silomar Conference On Signals Systems and Computers = Conf Rec Asilomar C Conference Record of The Silomar Conference On Signals Systems and Computers = Conf. Rec. Asilomar. C. Conference Record of The Ssilomar Conference On Signals Systems and Computers = Conf Rec Asilomar C Conference Record of The Ssilomar Conference On Signals Systems and Computers = Conf. Rec. Asilomar. C. Conference Record of The Thirty-eighth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Conference Record of The Thirty-eighth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Conference Record of The Thirty-fifth Asilomar Conference On Signals, Systems and Computers, Vols 1 and 2 = Conf Rec Asilomar C Conference Record of The Thirty-fifth Asilomar Conference On Signals, Systems and Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Conference Record of The Thirty-first Ieee Photovoltaic Specialists Conference - 2005 = Ieee Phot Spec Conf Conference Record of The Thirty-first Ieee Photovoltaic Specialists Conference - 2005 = Ieee Phot. Spec. Conf. Conference Record of The Thirty-fourth Asilomar Conference On Signals, Systems & Computers = Conf Rec Asilomar C Conference Record of The Thirty-fourth Asilomar Conference On Signals, Systems & Computers = Conf. Rec. Asilomar C. Conference Record of The Thirty-second Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Conference Record of The Thirty-second Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Conference Record of The Thirty-seventh Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Conference Record of The Thirty-seventh Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Conference Record of The Twentieth Ieee Photovoltaic Specialists Conference - 1988, Vols 1-2 = Ieee Phot Spec Conf Conference Record of The Twentieth Ieee Photovoltaic Specialists Conference - 1988, Vols 1-2 = Ieee Phot. Spec. Conf. Conference Record of The Twenty-eighth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Conference Record of The Twenty-eighth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Conference Record of The Twenty-eighth Ieee Photovoltaic Specialists Conference - 2000 = Ieee Phot Spec Conf Conference Record of The Twenty-eighth Ieee Photovoltaic Specialists Conference - 2000 = Ieee Phot. Spec. Conf. Conference Record of The Twenty First Ieee Photovoltaic Specialists Conference - 1990, Vols 1 and 2 = Ieee Phot Spec Conf Conference Record of The Twenty First Ieee Photovoltaic Specialists Conference - 1990, Vols 1 and 2 = Ieee Phot. Spec. Conf. Conference Record of The Twenty Second Iee Photovoltaic Specialists Conference - 1991, Vols 1 and 2 = Ieee Phot Spec Conf Conference Record of The Twenty Second Iee Photovoltaic Specialists Conference - 1991, Vols 1 and 2 = Ieee. Phot. Spec. Conf. Conference Record of The Twenty Sixth Ieee Photovoltaic Specialists Conference - 1997 = Ieee Phot Spec Conf Conference Record of The Twenty Sixth Ieee Photovoltaic Specialists Conference - 1997 = Ieee Phot. Spec. Conf. Conference Record of The Twenty Third Ieee Photovoltaic Specialists Conference - 1993 = Ieee Phot Spec Conf Conference Record of The Twenty Third Ieee Photovoltaic Specialists Conference - 1993 = Ieee Phot. Spec. Conf. Conference Rice for Highlands = Cirad Colloques Conference Rice for Highlands = Cirad. Colloques. Conferences d'histoire de la medecine : [fascicule] / Institut d'histoire de la medecine, Musee d'histoire de la medecine. Conferences d'histoire de la medecine = Conf Hist Med Conference Series of The Institute of Industrial Economics = Conf S Inst Conference Series of The Institute of Industrial Economics = Conf. S. Inst. Conferences lyonnaises d'ophtalmologie = Conf Lyon Ophtalmol Conferences of Bishops : Theory, Canonical Status and Future = Theol Sci R Conferences of Bishops : Theory, Canonical Status and Future = Theol. Sci. R. Conferences On New Political Economy = Conf Ne Po Ec Conferences On New Political Economy = Conf. Ne. Po. Ec. Conferencias y estudios de historia y organizacion de la ciencia / Academia de Ciencias de Cuba = Conf Estud Hist Organ Cienc Conferenze del Seminario di Matematica dell'Università di Bari = Conf. Semin. Mat. Univ. Bari Confidence in Models of Radionuclide Transport for Site-specific Assessments = Radioact W Confidence in Models of Radionuclide Transport for Site-specific Assessments = Radioact. W. Confidence Intervals in Generalized Regression Models = Stat Textb Monogr Confidence Intervals in Generalized Regression Models = Stat. Textb. Monogr. Configurable Computing: Technology and Applications = P Soc Photo-opt Ins Configurable Computing: Technology and Applications = P. Soc. Photo-opt. Ins. Configurations = Configurations Configurations = Configurations Configuring User-designer Relations: Interdisciplinary Perspectives = Comput Supp Coop Wor Configuring User-designer Relations: Interdisciplinary Perspectives = Comput. Supp. Coop. Wor. Confined Electrons and Photons = Nato Adv Sci Inst Se Confined Electrons and Photons = Nato. Adv. Sci. Inst. Se. Confined Turbidite Systems = Geol Soc Spec Publ Confined Turbidite Systems = Geol. Soc. Spec. Publ. Confinement, Duality, and Nonperturbative Aspects of Qcd = Nato Adv Sci I B-phy Confinement, Duality, and Nonperturbative Aspects of Qcd = Nato. Adv. Sci. I. B-phy. Confinement, Topology and Other Non-pertubative Aspects of Qcd = Nato Sci Ser Ii-math Confinement, Topology and Other Non-pertubative Aspects of Qcd = Nato. Sci. Ser. Ii-math. Confinement, Topology and Other Non-pertubative Aspects of Qcd = Nato Sci Ser Ii Math Confinement, Topology and Other Non-pertubative Aspects of Qcd = Nato. Sci. Ser. Ii. Math. Confinia Cephalalgica = Confin Cephalalgica Confinia Cephalalgica = Confin. Cephalalgica Confinia neurologica = Confin Neurol Confinia Neurologica = Confin Neurol Confinia Neurologica = Confin. Neurol. Confinia psychiatrica. Borderland of psychiatry. Grenzgebiete der Psychiatrie. Les Confins de la psychiatrie = Confin Psychiatr Confinia Psychiatrica = Confin Psychiat Confinia Psychiatrica = Confin. Psychiat. Confinia Psychiatrica = Confin. Psychiatr. Conflict and Compliance: State Responses to International Human Rights Pressure = Pa Stud Hum Rights Conflict and Compliance: State Responses to International Human Rights Pressure = Pa. Stud. Hum. Rights Conflict and Cooperation in Multi-ethnic States: Institutional Incentives, Myths and Counter-balancing = Asian Secur Stud Conflict and Cooperation in Multi-ethnic States: Institutional Incentives, Myths and Counter-balancing = Asian. Secur. Stud. Conflict and Cooperation On Trans-boundary Water Resources = Nat Res Man Conflict and Cooperation On Trans-boundary Water Resources = Nat. Res. Man. Conflict and Development = Routl Perspect Dev Conflict and Development = Routl. Perspect. Dev. Conflict and health = Confl Health Conflict and Insurgency in The Contemporary Middle East = Middle E Mil Stud Conflict and Insurgency in The Contemporary Middle East = Middle E. Mil. Stud. Conflict and Peace in Indias Northeast: The Role of Civil Society = Pol Stud Conflict and Peace in Indias Northeast: The Role of Civil Society = Pol. Stud. Conflict and Peace in South Asia = Contrib Confl Manag Conflict and Peace in South Asia = Contrib. Confl. Manag. Conflict and Resolution: Progressive Educators and Question of Religion = Stud Hist Educ Conflict and Resolution: Progressive Educators and Question of Religion = Stud. Hist. Educ. Conflict and Resource Development in The Southern Highlands of Papua New Guinea = Stud St Soc Pac Conflict and Resource Development in The Southern Highlands of Papua New Guinea = Stud. St. Soc. Pac. Conflict and The Environment = Nato Asi 2 Conflict and The Environment = Nato. Asi. 2. Conflict Between People and Groups = Nel Hal Psy Conflict Between People and Groups = Nel. Hal. Psy. Conflict = Conflict Conflict in The Caucasus: Implications for International Legal Order = Euro-asian Stud Conflict in The Caucasus: Implications for International Legal Order = Euro-asian. Stud. Conflict Management and Peace Science=Conflict Manage. Peace Sci. Conflict Management and Peace Science = Conflict Manag Peace Conflict Management and Peace Science = Conflict Manag. Peace Conflict Management, Security and Intervention in East Asia: Third-party Mediation in Regional Conflict = Asian Secur Stud Conflict Management, Security and Intervention in East Asia: Third-party Mediation in Regional Conflict = Asian. Secur. Stud. Conflict Prevention and Peacebuilding in Post-war Societies = Contemp Secur Stud Conflict Prevention and Peacebuilding in Post-war Societies = Contemp. Secur. Stud. Conflicts in Environmental Regulation and The Internationalisation of The State: Contested Terrains = Ripe Ser Glob Polit Conflicts in Environmental Regulation and The Internationalisation of The State: Contested Terrains = Ripe. Ser. Glob. Polit. Conflicts in Natural Resources Management: Integrating Social and Ecological Concerns = Nat Resour Env Iss Conflicts in Natural Resources Management: Integrating Social and Ecological Concerns = Nat. Resour. Env. Iss. Conflicts in The Middle East Since 1945 = Making Contemp World Conflicts in The Middle East Since 1945 = Making. Contemp. World. Conflicts in Urban and Regional Development = Confl Urb R Conflicts in Urban and Regional Development = Confl. Urb. R. Conflict, Terrorism and The Media in Asia = Routl Media Cult Soc Conflict, Terrorism and The Media in Asia = Routl. Media Cult. Soc. Conflict Transformation and Social Change in Uganda: Remembering After Violence = Rethink Peace Confl Conflict Transformation and Social Change in Uganda: Remembering After Violence = Rethink. Peace. Confl. Conflict Transformation in Central Asia: Irrigation Disputes in The Ferghana Valley = Cent Asian Stud Ser Conflict Transformation in Central Asia: Irrigation Disputes in The Ferghana Valley = Cent. Asian. Stud. Ser. Confluence of Ideas: Evolving to Meet The Challenges of Global Change = Iamslic C S Confluence of Ideas: Evolving to Meet The Challenges of Global Change = Iamslic. C. S. Confluencia-revista Hispanica De Cultura Y Literatura = Confluencia Confluencia-revista Hispanica De Cultura Y Literatura = Confluencia. Confocal Microscopy = Method Enzymol Confocal Microscopy = Method. Enzymol. Confocal, Multiphoton, and Nonlinear Microscopic Imaging Iii = Proc Spie Confocal, Multiphoton, and Nonlinear Microscopic Imaging Iii = Proc. Spie. Confocal, Multiphoton, and Nonlinear Microscopic Imaging Iii = P Soc Photo-opt Ins Confocal, Multiphoton, and Nonlinear Microscopic Imaging Iii = P. Soc. Photo-opt. Ins. Confocal, Multiphoton, and Nonlinear Microscopic Imaging = P Soc Photo-opt Ins Confocal, Multiphoton, and Nonlinear Microscopic Imaging = P. Soc. Photo-opt. Ins. Confocal Raman Microscopy = Springer Ser Opt Sci Confocal Raman Microscopy = Springer. Ser. Opt. Sci. Conformal Differential Geometry: Q-curvature and Conformal Holonomy = Oberwolfach Semin Conformal Differential Geometry: Q-curvature and Conformal Holonomy = Oberwolfach. Semin. Conformal Geometry and Dynamics = Conform. Geom. Dyn. Conformal Groups in Geometry and Spin Structures = Prog Math Phys Conformal Groups in Geometry and Spin Structures = Prog. Math. Phys. Conformal Structure of Space-time: Geometry, Analysis, Numerics = Lect Notes Phys Conformal Structure of Space-time: Geometry, Analysis, Numerics = Lect. Notes. Phys. Conformation-dependent Design of Sequences in Copolymers I = Adv Polym Sci Conformation-dependent Design of Sequences in Copolymers I = Adv. Polym. Sci. Conformation-dependent Design of Sequences in Copolymers Ii = Adv Polym Sci Conformation-dependent Design of Sequences in Copolymers Ii = Adv. Polym. Sci. Confrontation = Confrontation Confrontations Psychiatriques = Confr Psych Confrontations Psychiatriques = Confr. Psych. Confrontations Radio-Anatomo-Cliniques = Confront. Radio. Anat. Clin. Confronting Modernity in Fin-de-siecle France -bodies, Minds and Gender = Gender Sex Hist Confronting Modernity in Fin-de-siecle France -bodies, Minds and Gender = Gender Sex. Hist. Confronting The Coffee Crisis: Fair Trade, Sustainable Livelihoods and Ecosystems in Mexico and Central America = Food Health Environ Confronting The Coffee Crisis: Fair Trade, Sustainable Livelihoods and Ecosystems in Mexico and Central America = Food. Health. Environ. Confronting The Holocaust = Stud Shoah Confronting The Holocaust = Stud. Shoah. Confronting The Yugoslav Controversies = Comp Cult Stud Confronting The Yugoslav Controversies = Comp. Cult. Stud. Confucian Political Ethics = Ethikon Ser Comp Confucian Political Ethics = Ethikon. Ser. Comp. Congenital Anomalies = Congenit Anom Congenital Anomalies = Congenit. Anom. Congenital anomalies = Congenit Anom (Kyoto) Congenital Endocrinopathies = Endocr Dev Congenital Endocrinopathies = Endocr. Dev. Congenital Endocrinopathies = Endocrin Dev Congenital Endocrinopathies = Endocrin. Dev. Congenital heart disease = Congenit Heart Dis Congenital Heart Disease = Congenit Heart Dis Congenital Heart Disease = Congenit. Heart Dis. Congenital Heart Disease in Adolescents and Adults = Dev Cardiovasc Med Congenital Heart Disease in Adolescents and Adults = Dev. Cardiovasc. Med. Congenital Muscular Dystrophies = Devel Neur Congenital Muscular Dystrophies = Devel. Neur. Congestion Control in Computer Networks: Theory, Protocols and Applications = Distr Clust Grid Com Congestion Control in Computer Networks: Theory, Protocols and Applications = Distr. Clust. Grid. Com. Congestive Heart Failure = Congest. Heart Fail. Congestive heart failure (Greenwich, Conn.) = Congest Heart Fail Congestive Heart Failure: Symptoms, Causes and Treatment = Cardiol Res Clin Dev Congestive Heart Failure: Symptoms, Causes and Treatment = Cardiol. Res. Clin. Dev. Congres international de stomatologie = Congr Int Stomatol Congres International de Stomatologie = Congr. Int. Stomatol. Congresses & Colloquia = Congr Coll Congresses & Colloquia = Congr. Coll. Congresses & Colloquia = Congr Colloq Congresses & Colloquia = Congr. Colloq. Congressional Digest = Congr Dig Congressional Digest = Congr. Dig. Congressional quarterly weekly report = Congr Q Wkly Rep Congressional record : proceedings and debates of the ... Congress. United States. Congress = Congr Rec (Dly Ed) Congressional Studies-a Journal of The Congress = Congr Stud-j Congr Congressional Studies-a Journal of The Congress = Congr. Stud-j. Congr. Congress monthly = Congr. Mon Congress & The Presidency-a Journal of Capital Studies = Congr Presidency Congress & The Presidency-a Journal of Capital Studies = Congr. Presidency. Congressus Numerantium = Congr. Numer. Congress Volume - Cambridge, 1995 = Supp Vetus Testament Congress Volume - Cambridge, 1995 = Supp. Vetus. Testament. Congruent Management of Multiple Resources: Proceedings From The Wood Compatibility Initiative Workshop = Us For Serv T R Pnw Congruent Management of Multiple Resources: Proceedings From The Wood Compatibility Initiative Workshop = Us. For. Serv. T. R. Pnw. Conjugated Polymeric Materials : Opportunities in Electronics, Optoelectronics, and Molecular Electronics = Nato Adv Sci I E-app Conjugated Polymeric Materials : Opportunities in Electronics, Optoelectronics, and Molecular Electronics = Nato. Adv. Sci. I. E-app. Conjugation and Deconjugation of Ubiquitin Family Modifiers = Subcell Biochem Conjugation and Deconjugation of Ubiquitin Family Modifiers = Subcell. Biochem. Conjunctivitis: Symptoms, Treatment and Prevention = Eye Vis Res Dev Conjunctivitis: Symptoms, Treatment and Prevention = Eye. Vis. Res. Dev. Connaissance Des Arts = Connaissance Arts Connaissance des arts = Connaiss Arts Connaissance hellénique = ConnHell Connaissances Rationnelles Et Action Publique = Sci Soc-france Connaissances Rationnelles Et Action Publique = Sci. Soc-france. Connected Minds, Emerging Cultures: Cybercultures in Online Learning = Perspect Instr Techn Connected Minds, Emerging Cultures: Cybercultures in Online Learning = Perspect. Instr. Techn. Connected Places: Region, Pilgrimage, and Geographical Imagination in India = Relig Cult Crit Connected Places: Region, Pilgrimage, and Geographical Imagination in India = Relig. Cult. Crit. Connecticut Agricultural Experiment Station Bulletin = Conn Aes Bull Connecticut Agricultural Experiment Station Bulletin = Conn. Aes. Bull. Connecticut Dental Student Journal = Conn. Dent. Stud. J. Connecticut dental student journal / the University of Connecticut Health Center, School of Dental Medicine = Conn Dent Stud J Connecticut General statutes annotated / Under arrangement of the official General statutes of Connecticut, revision of 1958. Connecticut = Conn Gen Statut Annot Conn Connecticut health bulletin = Conn Health Bull Connecticut journal of international law = Conn J Int Law Connecticut law review = Conn Law Rev Connecticut Law Review = Conn Law Rev Connecticut Law Review = Conn. Law Rev. Connecticut medicine = Conn Med Connecticut Medicine=Conn Med;; Connecticut Medicine = Conn Med Connecticut Medicine = Conn. Med. Connecticut Nursing News = Conn. Nurs. News Connecticut nursing news (Meriden, Conn. : 1980) = Conn Nurs News Connecting Collecting = Samdok E Ser Connecting Collecting = Samdok. E. Ser. Connecting Health and Humans = St Heal T Connecting Health and Humans = St. Heal. T. Connecting Medical Informatics and Bio-informatics = St Heal T Connecting Medical Informatics and Bio-informatics = St. Heal. T. Connecting Medical Informatics and Bio-informatics = Stud Health Technol Connecting Medical Informatics and Bio-informatics = Stud. Health. Technol. Connecting People With Technology = Baywoods Tech Commun Connecting People With Technology = Baywoods. Tech. Commun. Connecting The Covenants: Judaism and The Search for Christian Identity in Eighteenth-century England = Jew Cult Context Connecting The Covenants: Judaism and The Search for Christian Identity in Eighteenth-century England = Jew. Cult. Context. Connecting With E-learning = Connect E Learn Connecting With E-learning = Connect. E. Learn. Connecting With Technology 1988 = Suppl Sm C Connecting With Technology 1988 = Suppl. Sm. C. Connectionism and The Philosophy of Psychology = Acta Analyt Connectionism and The Philosophy of Psychology = Acta. Analyt. Connectionist Models in Cognitive Neuroscience = Persp Neural Comp Connectionist Models in Cognitive Neuroscience = Persp. Neural. Comp. Connectionist Models in Cognitive Psychology = Stud Cogn Connectionist Models in Cognitive Psychology = Stud. Cogn. Connectionist Models of Behaviour and Cognition Ii = Prog Neural Process Connectionist Models of Behaviour and Cognition Ii = Prog. Neural. Process. Connectionist Models of Cognition and Perception Ii = Prog Neural Process Connectionist Models of Cognition and Perception Ii = Prog. Neural. Process. Connectionist Models of Development: Developmental Processes in Real and Artificial Neural Networks = Stud Dev Psychol Connectionist Models of Development: Developmental Processes in Real and Artificial Neural Networks = Stud. Dev. Psychol. Connectionist Models of Learning, Development and Evolution = Persp Neural Comp Connectionist Models of Learning, Development and Evolution = Persp. Neural. Comp. Connections and Reconnections in Solar and Stellar Coronae = Adv Space Res Connections and Reconnections in Solar and Stellar Coronae = Adv. Space. Res. Connections and Reconnections in Solar and Stellar Coronae = Adv Space Res-series Connections and Reconnections in Solar and Stellar Coronae = Adv. Space. Res-series. Connection Science = Connect Sci Connection Science = Connect. Sci. Connective Tissue Biology = Wenn Gr Int Connective Tissue Biology = Wenn. Gr. Int. Connective tissue research = Connect Tissue Res Connective Tissue Research=Connect Tissue Res;; Connective Tissue Research = Connect Tissue Res Connective Tissue Research = Connect. Tissue Res. Connector Specifier = Connector Specifier Connoisseur = Connoisseur Conodont Biology and Phylogeny: Interpreting The Fossil Record = Spec Pap Palaeontol Conodont Biology and Phylogeny: Interpreting The Fossil Record = Spec. Pap. Palaeontol. Conodont Biology and Phylogeny: Interpreting The Fossil Record = Spec Pap Paleontol Conodont Biology and Phylogeny: Interpreting The Fossil Record = Spec. Pap. Paleontol. Conodont Biology and Phylogeny: Interpreting The Fossil Record = Sp Palaeont Conodont Biology and Phylogeny: Interpreting The Fossil Record = Sp. Palaeont. Conoscenze. Rivista annuale della Soprintendenza archeologica e per i beni ambientali, architettonici, artistici e storici del Molise = Conoscenze Conpar 90 - Vapp Iv = Lect Notes Comput Sc Conpar 90 - Vapp Iv = Lect. Notes. Comput. Sc. Conquering Women: Women and War in The German Cultural Imagination = Res Series Conquering Women: Women and War in The German Cultural Imagination = Res. Series. Conradiana = Conradiana Conrad Workshop Series = Conrad W S Conrad Workshop Series = Conrad W. S. Conscience, Consensus and Crossroads in Law = Sem Hum Sci Conscience, Consensus and Crossroads in Law = Sem. Hum. Sci. Conscience of Humankind: Literature and Traumatic Experiences, Vol 3 = St Compar L Conscience of Humankind: Literature and Traumatic Experiences, Vol 3 = St. Compar. L. Conscience (Washington, D.C.) = Conscience Conscious in A Vegetative State? A Critique of The Pvs Concept = Int Libr Eth Law New Conscious in A Vegetative State? A Critique of The Pvs Concept = Int. Libr. Eth. Law. New. Consciousness and cognition = Conscious Cogn Consciousness and Cognition=Conscious Cogn;; Consciousness and Cognition = Conscious Cogn Consciousness and Cognition = Conscious. Cogn. Consciousness and The Existence of God: A Theistic Argument = Rout Stud Philos Rel Consciousness and The Existence of God: A Theistic Argument = Rout. Stud. Philos. Rel. Consciousness, Attention and Meaning = Psychol Res Prog Consciousness, Attention and Meaning = Psychol. Res. Prog. Consciousness: From Perception to Reflection in The History of Philosophy = Stud Hist Philos Min Consciousness: From Perception to Reflection in The History of Philosophy = Stud. Hist. Philos. Min. Consciousness Revisited: Materialism Without Phenomenal Concepts = Represent Mind Consciousness Revisited: Materialism Without Phenomenal Concepts = Represent. Mind. Consensual Processes = Stud Fuzz Soft Comp Consensual Processes = Stud. Fuzz. Soft. Comp. Consensus, Concordia and The Formation of Roman Imperial Ideology = Stud Classics Consensus, Concordia and The Formation of Roman Imperial Ideology = Stud. Classics. Consensus Decision Making, Northern Ireland and Indigenous Movements = Res Soc Mov Confl Ch Consensus Decision Making, Northern Ireland and Indigenous Movements = Res. Soc. Mov. Confl. Ch. Consensus development conference summaries / National Institutes of Health = Consens Dev Conf Summ Natl Inst Health Consensus Development Conference Summaries, National Institutes of Health = Consens. Dev. Conf. Summ. Natl. Inst. Health Consensus Development in Cancer Therapy = Con Dev Can Consensus Development in Cancer Therapy = Con. Dev. Can. Consensus Statement = Consens. Statement Consensus statement / NIH Consensus Development Conference. National Institutes of Health Consensus Development Conference = Consens Statement Consequences of Land Use Changes = Adv Ecol Sci Consequences of Land Use Changes = Adv. Ecol. Sci. Conservation Biology = Conserv Biol Conservation Biology = Conserv. Biol. Conservation Biology Series = Conserv Biol Ser Conservation Biology Series = Conserv. Biol. Ser. Conservation biology : the journal of the Society for Conservation Biology = Conserv Biol Conservation Ecology = Conserv Ecol Conservation Ecology = Conserv. Ecol. Conservation Genetics = Conserv Genet Conservation Genetics = Conserv. Genet. Conservation Genetics = Exs Conservation Genetics = Exs. Conservation Genetics of Endangered Horse Breeds = Eaap Public Conservation Genetics of Endangered Horse Breeds = Eaap. Public. Conservation Genetics Resources = Conserv Genet Resour Conservation Genetics Resources = Conserv. Genet. Resour. Conservationist = Conservationist Conservation Letters = Conserv Lett Conservation Letters = Conserv. Lett. Conservation of Endangered Freshwater Fish in Europe = Adv Lif Sci Conservation of Endangered Freshwater Fish in Europe = Adv. Lif. Sci. Conservation of Great Plains Ecosystems: Current Science, Future Options = Ecol Ec Env Conservation of Great Plains Ecosystems: Current Science, Future Options = Ecol. Ec. Env. Conservation of Natural Resources = Environ Sci Eng Tech Conservation of Natural Resources = Environ. Sci. Eng. Tech. Conservation of Plant Genes Ii: Utilization of Ancient and Modern Dna = Monog Syst Botan Conservation of Plant Genes Ii: Utilization of Ancient and Modern Dna = Monog. Syst. Botan. Conservation of West and Central African Rainforests = World Bank Environ P Conservation of West and Central African Rainforests = World. Bank. Environ. P. Conservation & Recycling = Conserv Recycling Conservation & Recycling = Conserv. Recycling Conservation Research in Uganda's Forests: A Review of Site History, Research, and Use of Research in Uganda's Forest Parks and Budongo Forest Reserve = Wildl Prot Destr Ext Conservation Research in Uganda's Forests: A Review of Site History, Research, and Use of Research in Uganda's Forest Parks and Budongo Forest Reserve = Wildl. Prot. Destr. Ext. Conservation Research in Uganda's Savannas: A Review of Park History, Applied Research, and Application of Research to Park Management = Wildl Prot Destr Ext Conservation Research in Uganda's Savannas: A Review of Park History, Applied Research, and Application of Research to Park Management = Wildl. Prot. Destr. Ext. Conservation Reserve - Yesterday, Today and Tomorrow = Usda Rocky Conservation Reserve - Yesterday, Today and Tomorrow = Usda. Rocky. Conservative Judaism = Conserv Jud Conservative Party and European Integration Since 1945: At The Heart of Europe? = Routl Adv Eur Polit Conservative Party and European Integration Since 1945: At The Heart of Europe? = Routl. Adv. Eur. Polit. Conservative Scoliosis Treatment: 1st Sosort Instructional Course Lectures Book = Stud Health Technol Conservative Scoliosis Treatment: 1st Sosort Instructional Course Lectures Book = Stud. Health. Technol. Conserving Biodiversity On Native Rangelands: Symposium Proceedings = Usda Rocky Conserving Biodiversity On Native Rangelands: Symposium Proceedings = Usda. Rocky. Conserving Europe's Natural Heritage = Int Env Law Conserving Europe's Natural Heritage = Int. Env. Law. Conserving Land, Protecting Water = Compr Assess Wat Man Conserving Land, Protecting Water = Compr. Assess. Wat. Man. Considerations On The Fundamental Principles of Pure Political Economy = Routl Stud Hist Econ Considerations On The Fundamental Principles of Pure Political Economy = Routl. Stud. Hist. Econ. Consociational Theory: Mcgarry and Oleary and The Northern Ireland Conflict = Routl Res Comp Polit Consociational Theory: Mcgarry and Oleary and The Northern Ireland Conflict = Routl. Res. Comp. Polit. Consolidating The Advances in Ibd = Res Clin Forums Consolidating The Advances in Ibd = Res. Clin. Forums. Consolidation in The European Financial Industry = Palgr Mac Stud Bank Consolidation in The European Financial Industry = Palgr. Mac. Stud. Bank. Consolidation of Democracy in Latin America = W Wilson L Consolidation of Democracy in Latin America = W. Wilson. L. Consommation=Consommation Consommation, revue de socio-economie = Consommation Consortium On Revolutionary Europe 1750-1850 : Proceedings 1989 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 : Proceedings 1989 = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850 : Proceedings 1991 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 : Proceedings 1991 = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850, Proceedings, 1992 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850, Proceedings, 1992 = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850 Proceedings, 1993 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 Proceedings, 1993 = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850 : Proceedings = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 : Proceedings = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850 - Selected Papers, 1994 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 - Selected Papers, 1994 = Consort. Revolut. Eur. Consortium On Revolutionary Europe 1750-1850 - Selected Papers, 1996 = Consort Revolut Eur Consortium On Revolutionary Europe 1750-1850 - Selected Papers, 1996 = Consort. Revolut. Eur. Constantinos Karamanlis Institute for Democracy Series On European and International Affairs = Ck I Dem Ser Eur Int Constantinos Karamanlis Institute for Democracy Series On European and International Affairs = Ck. I. Dem. Ser. Eur. Int. Constantinos Karamanlis Institute for Democracy Yearbook 2010 = Const Karam I Dem Yb Constantinos Karamanlis Institute for Democracy Yearbook 2010 = Const. Karam. I. Dem. Yb. Constantinos Karamanlis Institute for Democracy Yearbook = Const Karam I Dem Yb Constantinos Karamanlis Institute for Democracy Yearbook = Const. Karam. I. Dem. Yb. Constellations (Oxford, England) = Constellations Constituent Interests and U.s. Trade Policies = Stud Int Ec Constituent Interests and U.s. Trade Policies = Stud. Int. Ec. Constituting Objectivity: Transcendental Perspectives On Modern Physics = W Ont Ser Philos Sci Constituting Objectivity: Transcendental Perspectives On Modern Physics = W. Ont. Ser. Philos. Sci. Constitutional commentary = Const Comment Constitutionalism and Legal Reasoning = Law Philos Libr Constitutionalism and Legal Reasoning = Law. Philos. Libr. Constitutionalism in America = Consti Amer Constitutionalism in America = Consti. Amer. Constitutional law journal (Newark, N.J. : 1990) = Const Law J Constitutional Political Economy=Constit. Polit. Economy Constitutional Politics in The European Union: The Convention Moment and Its Aftermath = Palgrave Stud Eur Un Constitutional Politics in The European Union: The Convention Moment and Its Aftermath = Palgrave. Stud. Eur. Un. Constitutional Reform and The Future of The Republic of China = Taiw Mod W Constitutional Reform and The Future of The Republic of China = Taiw. Mod. W. Constitution (Foundation for the United States Constitution) = Constitution Constitutions, Markets and Law = New Think Polit Econ Constitutions, Markets and Law = New. Think. Polit. Econ. Constitutive Laws of Plastic Deformation and Fracture = Mech Beh M Constitutive Laws of Plastic Deformation and Fracture = Mech. Beh. M. Constitutive Models for Rubber V = Proc Monogr Eng Wate Constitutive Models for Rubber V = Proc. Monogr. Eng. Wate. Constrained Clustering: Advances in Algorithms, Theory, and Applications = Ch Crc Data Min Know Constrained Clustering: Advances in Algorithms, Theory, and Applications = Ch. Crc. Data. Min. Know. Constrained Optimal Control of Linear and Hybrid Systems = Lect Notes Contr Inf Constrained Optimal Control of Linear and Hybrid Systems = Lect. Notes. Contr. Inf. Constraint-based Agents = Lect Notes Artif Int Constraint-based Agents = Lect. Notes. Artif. Int. Constraint-based Mining and Inductive Databases = Lect Notes Artif Int Constraint-based Mining and Inductive Databases = Lect. Notes. Artif. Int. Constraint Databases, Proceedings = Lect Notes Comput Sc Constraint Databases, Proceedings = Lect. Notes. Comput. Sc. Constraint Effects in Fracture = Am Soc Test Mater Constraint Effects in Fracture = Am. Soc. Test. Mater. Constraint-handling in Evolutionary Optimization = Stud Comput Intell Constraint-handling in Evolutionary Optimization = Stud. Comput. Intell. Constraint Reasoning for Differential Models = Front Artif Intel Ap Constraint Reasoning for Differential Models = Front. Artif. Intel. Ap. Constraints = Constraints Constraints = Constraints Constraints in Computational Logics = Lect Notes Comput Sc Constraints in Computational Logics = Lect. Notes. Comput. Sc. Constraint Solving and Language Processing = Lect Notes Artif Int Constraint Solving and Language Processing = Lect. Notes. Artif. Int. Constraint Theory: Multidimensional Mathematical Model Management = Ifsr Int Ser Syst Sc Constraint Theory: Multidimensional Mathematical Model Management = Ifsr. Int. Ser. Syst. Sc. Construal of Space in Language and Thought = Cog Lin Res Construal of Space in Language and Thought = Cog. Lin. Res. Constructed Wetlands for Wastewater Treatment in Cold Climates = Adv Ecol Sci Constructed Wetlands for Wastewater Treatment in Cold Climates = Adv. Ecol. Sci. Constructed Wetlands in Water Pollution Control = Adv Wat Pol Constructed Wetlands in Water Pollution Control = Adv. Wat. Pol. Constructing Adolescence in Fantastic Realism = Child Lit Cult Constructing Adolescence in Fantastic Realism = Child. Lit. Cult. Constructing Ambient Intelligence = Comm Com Inf Sc Constructing Ambient Intelligence = Comm. Com. Inf. Sc. Constructing and Controlling Compaction of Earth Fills = Am Soc Test Mater Constructing and Controlling Compaction of Earth Fills = Am. Soc. Test. Mater. Constructing A Security Community in Southeast Asia: Asean and The Problem of Regional Order = Polit Asia Constructing A Security Community in Southeast Asia: Asean and The Problem of Regional Order = Polit. Asia. Constructing Chaucer - Author and Autofiction in The Critical Tradition = New Middle Ages Constructing Chaucer - Author and Autofiction in The Critical Tradition = New. Middle. Ages. Constructing Democracy in Southern Europe: A Comparative Analysis of Italy, Spain and Turkey = Democratiz Stud Constructing Democracy in Southern Europe: A Comparative Analysis of Italy, Spain and Turkey = Democratiz. Stud. Constructing Gay Theology = Gay Men I R Constructing Gay Theology = Gay Men. I. R. Constructing Knowledge for Teaching Secondary Mathematics: Tasks to Enhance Prospective and Practicing Teacher Learning = Math Teach Educ Constructing Knowledge for Teaching Secondary Mathematics: Tasks to Enhance Prospective and Practicing Teacher Learning = Math. Teach. Educ. Constructing Papuan Nationalism: History, Ethnicity, and Adaptation = Pol Stud Constructing Papuan Nationalism: History, Ethnicity, and Adaptation = Pol. Stud. Constructing Regional Community and Order in Europe and Southeast Asia = Rethink Peace Confl Constructing Regional Community and Order in Europe and Southeast Asia = Rethink. Peace. Confl. Constructing Scalar-valued Objective Functions = Lect Notes Econ Math Constructing Scalar-valued Objective Functions = Lect. Notes. Econ. Math. Constructing Smooth Hot Mix Asphalt (hma) Pavements = Am Soc Test Mater Constructing Smooth Hot Mix Asphalt (hma) Pavements = Am. Soc. Test. Mater. Construction 2000 = Transport Res Rec Construction 2000 = Transport. Res. Rec. Construction 2001 = Transport Res Rec Construction 2001 = Transport. Res. Rec. Construction 2002 = Transport Res Rec Construction 2002 = Transport. Res. Rec. Construction 2003 = Transport Res Rec Construction 2003 = Transport. Res. Rec. Construction 2004 = Transport Res Rec Construction 2004 = Transport. Res. Rec. Construction 2005 = Transport Res Rec Construction 2005 = Transport. Res. Rec. Construction 2006 = Transport Res Rec Construction 2006 = Transport. Res. Rec. Constructional Approaches to English Grammar = Top Engl Linguist Constructional Approaches to English Grammar = Top. Engl. Linguist. Construction and Analysis of Safe, Secure, and Interoperable Smart Devices = Lect Notes Comput Sc Construction and Analysis of Safe, Secure, and Interoperable Smart Devices = Lect. Notes. Comput. Sc. Construction and Building Materials = Constr Build Mater Construction and Building Materials = Constr. Build. Mater. Construction and Real Estate Dynamics = Appl Economet Ass Se Construction and Real Estate Dynamics = Appl. Economet. Ass. Se. Construction Contracting = Constr Contract Construction Contracting = Constr. Contract. Construction Equipment Management for Engineers, Estimators, and Owners = Crc Press Civ Env En Construction Equipment Management for Engineers, Estimators, and Owners = Crc. Press. Civ. Env. En. Construction of Global Lyapunov Functions Using Radial Basis Functions = Lect Notes Math Construction of Global Lyapunov Functions Using Radial Basis Functions = Lect. Notes. Math. Construction of New Mathematical Knowledge in Classroom Interaction: An Epistemological Perspective = Math Educ Lib Construction of New Mathematical Knowledge in Classroom Interaction: An Epistemological Perspective = Math. Educ. Lib. Construction Quality and Management = Transport Res Rec Construction Quality and Management = Transport. Res. Rec. Constructions in Cognitive Linguistics = Amst Stud Theory His Constructions in Cognitive Linguistics = Amst. Stud. Theory. His. Constructions of Female Homoeroticism in Early Modern Drama = Early Mod Cult Stud Constructions of Female Homoeroticism in Early Modern Drama = Early Mod. Cult. Stud. Constructions of Strict Lyapunov Functions = Commun Control Eng Constructions of Strict Lyapunov Functions = Commun. Control. Eng. Constructive Approximation = Constr. Approx. Constructive Approximation = Constr Approx Constructive Approximation = Constr. Approx. Constructive Criticism: The Human Sciences in The Age of Theory = Theory Culture Constructive Criticism: The Human Sciences in The Age of Theory = Theory Culture. Constructive Discourse and Human Organization = Adv Int Marketing Constructive Discourse and Human Organization = Adv. Int. Marketing. Constructive Methods for Parallel Programming = Adv Comp The Pract Constructive Methods for Parallel Programming = Adv. Comp. The. Pract. Constructive Negations and Paraconsistency = Trends Log Stud Log Constructive Negations and Paraconsistency = Trends. Log. Stud. Log. Constructive Neural Networks = Stud Comp Intell Constructive Neural Networks = Stud. Comp. Intell. Constructive Neural Networks = Stud Comput Intell Constructive Neural Networks = Stud. Comput. Intell. Constructivist Foundations = Constr Found Constructivist Foundations = Constr. Found. Consultant = Consultant Consultant Pathology = Consult Pathol Consultant Pathology = Consult. Pathol. Consultation for Organizational Change = Res Manag Consult Consultation for Organizational Change = Res. Manag. Consult. Consultation in Community, School, and Organizational Practice : Gerald Caplans Contributions to Professional Psychology = Ser Clin C Consultation in Community, School, and Organizational Practice : Gerald Caplans Contributions to Professional Psychology = Ser. Clin. C. Consulting Engineer = Consult Eng Consulting Engineer = Consult. Eng. Consulting-specifying engineer = Consult Specif Eng Consulting-Specifying Engineer = Consult. Specif. Eng. Consumer Capitalism = Routl Front Polit Ec Consumer Capitalism = Routl. Front. Polit. Ec. Consumer-centered Computer-suppported Care for Healthy People = St Heal T Consumer-centered Computer-suppported Care for Healthy People = St. Heal. T. Consumer-centered Computer-suppported Care for Healthy People = Stud Health Technol Consumer-centered Computer-suppported Care for Healthy People = Stud. Health. Technol. Consumer Credit in Europe = Contrib Econ Consumer Credit in Europe = Contrib. Econ. Consumer Culture Theory = Res Con Beh Consumer Culture Theory = Res. Con. Beh. Consumer-driven Demand and Operations Management Models = Int Ser Oper Res Man Consumer-driven Demand and Operations Management Models = Int. Ser. Oper. Res. Man. Consumer-driven Innovation in Food and Personal Care Products = Woodhead Publ Food S Consumer-driven Innovation in Food and Personal Care Products = Woodhead. Publ. Food S. Consumer health perspectives = Consum Health Perspect Consumer Health Perspectives = Consum. Health Perspect. Consumer Interests Annual, Vol 40 = P Am C Cons Consumer Interests Annual, Vol 40 = P. Am. C. Cons. Consumer Interests Annual, Vol 41 = P Am C Cons Consumer Interests Annual, Vol 41 = P. Am. C. Cons. Consumer Interests Annual, Vol 42 = P Am C Cons Consumer Interests Annual, Vol 42 = P. Am. C. Cons. Consumer Interests Annual, Vol 44 = P Am C Cons Consumer Interests Annual, Vol 44 = P. Am. C. Cons. Consumer Interests Annual, Vol 45 = P Am C Cons Consumer Interests Annual, Vol 45 = P. Am. C. Cons. Consumerism in World History: The Global Transformation of Desire, Second Edition = Themes World Hist Consumerism in World History: The Global Transformation of Desire, Second Edition = Themes. World Hist. Consumer-led Food Product Development = Woodhead Publ Food S Consumer-led Food Product Development = Woodhead. Publ. Food S. Consumer markets abroad = Consum Mark Abroad Consumer Product Safety Issues = Saf Risk Soc Consumer Product Safety Issues = Saf. Risk. Soc. Consumer reports = Consum Rep Consumer Reports = Consum. Rep. Consumer reports on health = Consum Rep Health Consuming Books: The Marketing and Consumption of Literature = Rout Interp Mark Res Consuming Books: The Marketing and Consumption of Literature = Rout. Interp. Mark. Res. Consuming Fashion = Dress, Body, Culture Consuming Fashion = Dress,. Body,. Culture. Consumption and Public Life = Consum Public Life Consumption and Public Life = Consum. Public Life Consumption and The Globalization Project: International Hegemony and The Annihilation of Time = Int Polit Econ Ser Consumption and The Globalization Project: International Hegemony and The Annihilation of Time = Int. Polit. Econ. Ser. Consumption Structure and Macroeconomics: Structural Change and The Relationship Between Inequality and Growth = Lect Notes Econ Math Consumption Structure and Macroeconomics: Structural Change and The Relationship Between Inequality and Growth = Lect. Notes. Econ. Math. Contact and intraocular lens medical journal = Contact Intraocul Lens Med J Contact and Intraocular Lens Medical Journal = Contact Intraocul. Lens Med. J. Contact dermatitis = Contact Dermatitis Contact Dermatitis=Contact Dermatitis;; Contact Dermatitis = Contact Dermatitis Contact (Geneva, Switzerland) = Contact Contact lens & anterior eye : the journal of the British Contact Lens Association = Cont Lens Anterior Eye Contact Metamorphism = Rev Mineral Contact Metamorphism = Rev. Mineral. Contactologia = Contactologia Contact Or Isolation ? = Aus St Balt Contact Or Isolation ? = Aus. St. Balt. Contact point = Contact Point Contact Point = Contact Point Contact Problems: The Legacy of L.a. Galin = Solid Mech Appl Contact Problems: The Legacy of L.a. Galin = Solid. Mech. Appl. Containment of High-level Radioactive and Hazardous Solid Wastes With Clay Barriers = Spon Res Containment of High-level Radioactive and Hazardous Solid Wastes With Clay Barriers = Spon. Res. Contaminants in The Nordic Ecosystem: The Dynamics, Processes and Fate = Ecovis World Mg Ser Contaminants in The Nordic Ecosystem: The Dynamics, Processes and Fate = Ecovis. World. Mg. Ser. Contaminated Sediments: Characterization, Evaluation, Mitigation/restoration, and Management Strategy Performance = Am Soc Test Mater Contaminated Sediments: Characterization, Evaluation, Mitigation/restoration, and Management Strategy Performance = Am. Soc. Test. Mater. Contaminated Sediments: Evaluation and Remediation Techniques = Am Soc Test Mater Contaminated Sediments: Evaluation and Remediation Techniques = Am. Soc. Test. Mater. Contaminated Soil '95, Vols 1 and 2 = Soil Environm Contaminated Soil '95, Vols 1 and 2 = Soil Environm. Contaminated Soils, Sediments and Water: Science in The Real World, Vol 9 = Contam Soils Contaminated Soils, Sediments and Water: Science in The Real World, Vol 9 = Contam. Soils. Contaminated Soils, Sediments and Water Volume 10: Successes and Challenges = Contam Soils Contaminated Soils, Sediments and Water Volume 10: Successes and Challenges = Contam. Soils. Contaminated Soils Series = Contam Soils Contaminated Soils Series = Contam. Soils Contaminated Urban Soils = Environ Pollut Ser Contaminated Urban Soils = Environ. Pollut. Ser. Contamination control-biomedical environments = Contam Control Biomed Environ Contamination control = Contam Control Contamination Control = Contam. Control Contemplating Violence: Critical Studies in Modern German Culture = Amst Beitr Neuer Ger Contemplating Violence: Critical Studies in Modern German Culture = Amst. Beitr. Neuer. Ger. Contemporanea = Contemporanea Contemporary Accounting Research = Contemp Account Res Contemporary Accounting Research = Contemp. Account. Res. Contemporary administrator = Contemp Adm Contemporary Administrator = Contemp. Adm. Contemporary administrator for long-term care = Contemp Adm Long Term Care Contemporary Administrator for Long-Term Care = Contemp. Adm. Long. Term Care Contemporary and Emerging Issues in Trade Theory and Policy = Front Econ Global Contemporary and Emerging Issues in Trade Theory and Policy = Front. Econ. Global. Contemporary anesthesia practice = Contemp Anesth Pract Contemporary Anesthesia Practice = Contemp. Anesth. Pract. Contemporary Anglophone Travel Novel = Lit Crit Cult Theory Contemporary Anglophone Travel Novel = Lit. Crit. Cult. Theory. Contemporary Anthropology of Religion = Contemp Anthr Relig Contemporary Anthropology of Religion = Contemp. Anthr. Relig. Contemporary Approaches to Romance Linguistics = Amst Stud Theory His Contemporary Approaches to Romance Linguistics = Amst. Stud. Theory. His. Contemporary Arab Fiction: Innovation From Rama to Yalu = Routl Stud Mid E Lit Contemporary Arab Fiction: Innovation From Rama to Yalu = Routl. Stud. Mid. E. Lit. Contemporary Arab Women Writers: Cultural Expression in Context = Rout Res Postcol Lit Contemporary Arab Women Writers: Cultural Expression in Context = Rout. Res. Postcol. Lit. Contemporary Black History = Contemp Black Hist Contemporary Black History = Contemp. Black Hist. Contemporary Boron Chemistry = Roy Soc Ch Contemporary Boron Chemistry = Roy. Soc. Ch. Contemporary British History = Contemp Br Hist Contemporary British History = Contemp. Br. Hist. Contemporary Buddhism = Contemp Buddhism Contemporary Buddhism = Contemp. Buddhism Contemporary Cancer Research = Contemp Cancer Res Contemporary Cancer Research = Contemp. Cancer Res. Contemporary Cardiology = Contemp Cardiol Contemporary Cardiology = Contemp. Cardiol. Contemporary Challenges in Autoimmunity = Ann Ny Acad Sci Contemporary Challenges in Autoimmunity = Ann. Ny. Acad. Sci. Contemporary Chinese Thought = Contemp Chin Thought Contemporary Chinese Thought = Contemp. Chin. Thought Contemporary Clinical Neuroscience = Contemp Clin Neurosc Contemporary Clinical Neuroscience = Contemp. Clin. Neurosc. Contemporary clinical trials = Contemp Clin Trials Contemporary Clinical Trials = Contemp Clin Trials Contemporary Clinical Trials = Contemp. Clin. Trials Contemporary Comic Book Superhero = Rout Res Cult Med St Contemporary Comic Book Superhero = Rout. Res. Cult. Med. St. Contemporary Computing, Proceedings = Comm Com Inf Sc Contemporary Computing, Proceedings = Comm. Com. Inf. Sc. Contemporary Computing, Pt 1 = Comm Com Inf Sc Contemporary Computing, Pt 1 = Comm. Com. Inf. Sc. Contemporary Computing, Pt 2 = Comm Com Inf Sc Contemporary Computing, Pt 2 = Comm. Com. Inf. Sc. Contemporary Corporate Strategy = Routl Stud Int Bus W Contemporary Corporate Strategy = Routl. Stud. Int. Bus. W. Contemporary Crises = Contemp Crises Contemporary Crises = Contemp. Crises Contemporary crises = Contemp Crisis Contemporary Cryptography, Second Edition = Artech Hse Inf Secur Contemporary Cryptography, Second Edition = Artech. Hse. Inf. Secur. Contemporary Cryptology = Ad Co Math Contemporary Cryptology = Ad. Co. Math. Contemporary Cryptology = Adv Courses Math Crm Contemporary Cryptology = Adv. Courses. Math. Crm. Contemporary Diabetes = Contemp Diabetes Contemporary Diabetes = Contemp. Diabetes Contemporary drug problems = Contemp Drug Probl Contemporary Drug Problems = Contemp Drug Probl Contemporary Drug Problems = Contemp. Drug Probl. Contemporary Economic Issues = Contemp Econ Iss Contemporary Economic Issues = Contemp. Econ. Iss. Contemporary Economic Issues, Vol 3 = Contemp Econ Iss Contemporary Economic Issues, Vol 3 = Contemp. Econ. Iss. Contemporary economic policy = Contemp Econ Policy Contemporary Economic Policy = Contemp Econ Policy Contemporary Economic Policy = Contemp. Econ. Policy Contemporary Economic Policy=Contemporary Econ. Pol. Contemporary educational psychology = Contemp Educ Psychol Contemporary Educational Psychology = Contemp Educ Psychol Contemporary Educational Psychology = Contemp. Educ. Psychol. Contemporary Education = Contemp Educ Contemporary Education = Contemp. Educ. Contemporary Endocrinology Series = Contemp Endocrinol S Contemporary Endocrinology Series = Contemp. Endocrinol. S. Contemporary Endocrinology (series) = Cont Endocrinol Contemporary Endocrinology (series) = Cont. Endocrinol. Contemporary Environmental Politics: From Margins to Mainstream = Rout Res Environ Pol Contemporary Environmental Politics: From Margins to Mainstream = Rout. Res. Environ. Pol. Contemporary Ethnography = Contemp Ethnogr Contemporary Ethnography = Contemp. Ethnogr. Contemporary European history = Contemp Eur Hist Contemporary European History = Contemp Eur Hist Contemporary European History = Contemp. Eur. Hist. Contemporary Explorations in The Culture of The Low Countries = Publ Aans Contemporary Explorations in The Culture of The Low Countries = Publ. Aans. Contemporary Family Therapy = Contemp Fam Ther Contemporary Family Therapy = Contemp. Fam. Ther. Contemporary Food Engineering = Contemp Food Eng Contemporary Food Engineering = Contemp. Food Eng. Contemporary France = Contemp Fr Contemporary France = Contemp. Fr. Contemporary French and Francophone Studies = Contemp Fr Francoph Contemporary French and Francophone Studies = Contemp. Fr. Francoph. Contemporary French civilization = Contemp Fr Civiliz Contemporary French Civilization = Cont Fr Civil Contemporary French Civilization = Cont. Fr. Civil. Contemporary French Theatre and Performance = Perform Interv Contemporary French Theatre and Performance = Perform. Interv. Contemporary Fundamental Physics = Contemp Fund Phys Contemporary Fundamental Physics = Contemp. Fund. Phys. Contemporary Geographies of Leisure Tourism and Mobility = Contemp Geogr Leis T Contemporary Geographies of Leisure Tourism and Mobility = Contemp. Geogr. Leis. T. Contemporary Germany and The Nazi Legacy = New Perspect Ger Stu Contemporary Germany and The Nazi Legacy = New. Perspect. Ger. Stu. Contemporary Hematology = Contemp Hematol Contemporary Hematology = Contemp. Hematol. Contemporary History in Context Series = Contemp Hist Con Ser Contemporary History in Context Series = Contemp. Hist. Con. Ser. Contemporary Human Resource Management Issues Challenges and Opportunities = Cont Hum Res Manag Contemporary Human Resource Management Issues Challenges and Opportunities = Cont. Hum. Res. Manag. Contemporary Human Rights Ideas = Glob Inst Contemporary Human Rights Ideas = Glob. Inst. Contemporary Immunology = Contemp Immunol Contemporary Immunology = Contemp. Immunol. Contemporary internal medicine = Contemp Intern Med Contemporary Internal Medicine = Contemp. Intern. Med. Contemporary Irish Republican Prison Writing: Writing and Resistance = New Dir Ir Ir Am Lit Contemporary Irish Republican Prison Writing: Writing and Resistance = New. Dir. Ir. Ir. Am. Lit. Contemporary Issues in Asia and The Pacific = Contemp Iss Asia Contemporary Issues in Asia and The Pacific = Contemp. Iss. Asia Contemporary Issues in Business Ethics and Politics = Mell St Bus Contemporary Issues in Business Ethics and Politics = Mell. St. Bus. Contemporary issues in clinical biochemistry = Contemp Issues Clin Biochem Contemporary Issues in Clinical Biochemistry = Contemp. Issues Clin. Biochem. Contemporary Issues in Clinical Nutrition = Cont Iss Cl Contemporary Issues in Clinical Nutrition = Cont. Iss. Cl. Contemporary Issues in Educational Policy and School Outcomes = Res Theor Educ Admin Contemporary Issues in Educational Policy and School Outcomes = Res. Theor. Educ. Admin. Contemporary Issues in Financial Reporting: A User-oriented Approach = Routl New Works Acct Contemporary Issues in Financial Reporting: A User-oriented Approach = Routl. New. Works. Acct. Contemporary Issues in Public Policy = Contemp Iss Pub Pol Contemporary Issues in Public Policy = Contemp. Iss. Pub. Pol. Contemporary Issues in Risk Analysis = Cont Iss Ri Contemporary Issues in Risk Analysis = Cont. Iss. Ri. Contemporary Issues in Sports Economics: Participation and Professional Team Sports = New Horiz Econ Sport Contemporary Issues in Sports Economics: Participation and Professional Team Sports = New. Horiz. Econ. Sport. Contemporary Issues in The Middle East = Cont Iss M Contemporary Issues in The Middle East = Cont. Iss. M. Contemporary Jewry = Contemp Jew Contemporary Knowledge Engineering and Cognition = Lect Notes Artif Int Contemporary Knowledge Engineering and Cognition = Lect. Notes. Artif. Int. Contemporary Language Education = Contemp Lang Educ Contemporary Language Education = Contemp. Lang. Educ. Contemporary Language Studies in Education = Contemp Lang Stud Ed Contemporary Language Studies in Education = Contemp. Lang. Stud. Ed. Contemporary Leadership Theories: Enhancing The Understanding of The Complexity, Subjectivity and Dynamic of Leadership = Contrib Manag Sci Contemporary Leadership Theories: Enhancing The Understanding of The Complexity, Subjectivity and Dynamic of Leadership = Contrib. Manag. Sci. Contemporary Literature = Contemp Literature Contemporary Literature = Contemp. Literature Contemporary longterm care = Contemp Longterm Care Contemporary Longterm Care = Contemp. Longterm Care Contemporary Marxism = Contemp Marx Contemporary Mathematicians = Contemp. Mathematicians Contemporary Mathematicians = Cont Mathematicians Contemporary Mathematicians = Cont. Mathematicians Contemporary Mathematics = Contemp. Math. Contemporary Mathematics = Contemp Math Contemporary Mathematics = Contemp. Math. Contemporary Mathematics Series = Contemp Math Contemporary Mathematics Series = Contemp. Math. Contemporary Medical Imaging = Contemp Med Imag Contemporary Medical Imaging = Contemp. Med. Imag. Contemporary Metal Boron Chemistry I: Borylenes, Boryls, Borane (sigma)-complexes, and Borohydrides = Struct Bond Contemporary Metal Boron Chemistry I: Borylenes, Boryls, Borane (sigma)-complexes, and Borohydrides = Struct. Bond. Contemporary Middle East = Contemp Middle E Contemporary Middle East = Contemp. Middle E. Contemporary Morphology = Trend Lin S Contemporary Morphology = Trend. Lin. S. Contemporary Music Review = Contemp Music Rev Contemporary Music Review = Contemp. Music Rev. Contemporary neurology series = Contemp Neurol Ser Contemporary Neurology Series = Contemp. Neurol. Ser. Contemporary Neuroscience = Contemp Neurosci Contemporary Neuroscience = Contemp. Neurosci. Contemporary North Korea: A Guide to Economic and Political Developments = Guide Econ Polit Dev Contemporary North Korea: A Guide to Economic and Political Developments = Guide Econ. Polit. Dev. Contemporary nurse : a journal for the Australian nursing profession = Contemp Nurse Contemporary Nurse = Contemp Nurse Contemporary Nurse = Contemp. Nurse Contemporary ob/gyn = Contemp Ob Gyn Contemporary Ob Gyn = Contemp Obstet Gynec Contemporary Ob Gyn = Contemp. Obstet. Gynec. Contemporary oncology = Contemp Oncol Contemporary Organic synthesis = Contemp. Org. Synth. Contemporary Organic Synthesis = Contemp Org Synth Contemporary Organic Synthesis = Contemp. Org. Synth. Contemporary orthopaedics = Contemp Orthop Contemporary Orthopaedics = Contemp. Orthop. Contemporary Pacific = Contemp Pacific Contemporary Pacific = Contemp. Pacific Contemporary Pain Medicine = Contemp Pain Med Contemporary Pain Medicine = Contemp. Pain Med. Contemporary pediatrics = Contemp Pediatr Contemporary Pediatrics = Contemp. Pediatr. Contemporary Periodontal Surgery: An Illustrated Guide to The Art Behind The Science = Quintessent Dent Pra Contemporary Periodontal Surgery: An Illustrated Guide to The Art Behind The Science = Quintessent. Dent. Pra. Contemporary Perspectives in Early Childhood Education = Contemp Perspect Ear Contemporary Perspectives in Early Childhood Education = Contemp. Perspect. Ear. Contemporary Perspectives in E-learning Research: Themes, Methods and Impact On Practice = Open Flex Learn Ser Contemporary Perspectives in E-learning Research: Themes, Methods and Impact On Practice = Open. Flex. Learn. Ser. Contemporary Perspectives On Developing Societies = Cont P Dev Soc Contemporary Perspectives On Developing Societies = Cont. P. Dev. Soc. Contemporary Perspectives On Language and Cultural Diversity in Early Childhood Education = Contemp Perspect Ear Contemporary Perspectives On Language and Cultural Diversity in Early Childhood Education = Contemp. Perspect. Ear. Contemporary Perspectives On Legal Regulation of Sexual Behavior: Psycholegal Research and Analysis = Laws Legis Contemporary Perspectives On Legal Regulation of Sexual Behavior: Psycholegal Research and Analysis = Laws. Legis. Contemporary Perspectives On Lesbian, Gay, and Bisexual Identities = Nebr Sym Motiv Contemporary Perspectives On Lesbian, Gay, and Bisexual Identities = Nebr. Sym. Motiv. Contemporary Perspectives On Mathematics in Early Childhood Education = Contemp Perspect Ear Contemporary Perspectives On Mathematics in Early Childhood Education = Contemp. Perspect. Ear. Contemporary Perspectives On Science and Technology in Early Childhood Education = Contemp Perspect Ear Contemporary Perspectives On Science and Technology in Early Childhood Education = Contemp. Perspect. Ear. Contemporary pharmacy practice = Contemp Pharm Pract Contemporary Pharmacy Practice = Contemp Pharm Pract Contemporary Pharmacy Practice = Contemp. Pharm. Pract. Contemporary philosophy = Contemp Philos Contemporary Philosophy-new Survery = Contemp Philos New S Contemporary Philosophy-new Survery = Contemp. Philos. New. S. Contemporary Physics = Contemp Phys Contemporary Physics = Contemp. Phys. Contemporary Policy Issues = Contemp Policy Issue Contemporary Policy Issues = Contemp. Policy Issue. Contemporary policy issues = Contemp Policy Issues Contemporary Policy Issues=Contemp. Pol. Issues Contemporary Political Theory = Contemp Polit Theory Contemporary Political Theory = Contemp. Polit. Theory Contemporary Problems of Ecology = Contemp Probl Ecol Contemporary Problems of Ecology = Contemp Probl Ecol+ Contemporary Problems of Ecology = Contemp. Probl. Ecol. Contemporary Problems of Ecology = Contemp. Probl. Ecol+.+ Contemporary psychoanalysis = Contemp Psychoanal Contemporary Psychoanalysis = Contemp Psychoanal Contemporary Psychoanalysis = Contemp. Psychoanal. Contemporary Psychology-apa Review of Books = Contemp Psychol Contemporary Psychology-apa Review of Books = Contemp. Psychol. Contemporary Psychology = Contemp Psychol Contemporary Psychology = Contemp. Psychol. Contemporary Psychometrics = Multivar Appl Ser Contemporary Psychometrics = Multivar. Appl. Ser. Contemporary Public Debates Over History Education = Int Rev Hist Educ Contemporary Public Debates Over History Education = Int. Rev. Hist. Educ. Contemporary Qualitative Research-exemplars for Science and Mathematics Educators = Sci Technol Educ Lib Contemporary Qualitative Research-exemplars for Science and Mathematics Educators = Sci. Technol. Educ. Lib. Contemporary Reflections On Business Ethics = Issues Bus Ethics Contemporary Reflections On Business Ethics = Issues. Bus. Ethics Contemporary Research in Education = Contemp Res Educ Contemporary Research in Education = Contemp. Res. Educ. Contemporary Research in Population Geography = Geoj Lib Contemporary Research in Population Geography = Geoj. Lib. Contemporary Research in Romance Linguistics = Amst Stud Theory His Contemporary Research in Romance Linguistics = Amst. Stud. Theory. His. Contemporary Research in The Mechanics and Mathematics of Materials = Theor Engn Applicat Contemporary Research in The Mechanics and Mathematics of Materials = Theor. Engn. Applicat. Contemporary review (London, England) = Contemp Rev Contemporary reviews in obstetrics and gynaecology = Contemp Rev Obstet Gynaecol Contemporary Sacramental Contours of A Good Incarnate = Tex Etu Lit Contemporary Sacramental Contours of A Good Incarnate = Tex. Etu. Lit. Contemporary Science of Polymeric Materials = Acs Sym Ser Contemporary Science of Polymeric Materials = Acs. Sym. Ser. Contemporary Security Studies = Contemp Secur Stud Contemporary Security Studies = Contemp. Secur. Stud. Contemporary Sociological Perspectives = Contemp Sociol Persp Contemporary Sociological Perspectives = Contemp. Sociol. Persp. Contemporary Sociology-a Journal of Reviews = Contemp Sociol Contemporary Sociology-a Journal of Reviews = Contemp. Sociol. Contemporary Sociology-A Journal Of Reviews = Contemp. Sociol.-J. Rev. Contemporary sociology = Contemp Sociol Contemporary South African Debates = Cont S Afr Contemporary South African Debates = Cont. S. Afr. Contemporary Southeast Asia = Contemp Southeast Asia Contemporary Sport Psychology = Sports Athl Prep Per Contemporary Sport Psychology = Sports. Athl. Prep. Per. Contemporary State Terrorism = Crit Terror Stud Contemporary State Terrorism = Crit. Terror. Stud. Contemporary Studies in Advanced Materials and Processes = Mater Sci Forum Contemporary Studies in Advanced Materials and Processes = Mater. Sci. Forum. Contemporary Studies in Economic and Financial Analysis = Contemp Stud Econ Fi Contemporary Studies in Economic and Financial Analysis = Contemp. Stud. Econ. Fi. Contemporary Studies in Economic and Financial Analysis = Cont Stu Ec Contemporary Studies in Economic and Financial Analysis = Cont. Stu. Ec. Contemporary Studies in Sociology : Theoretical and Empirical Monographs = Cont St Soc Contemporary Studies in Sociology : Theoretical and Empirical Monographs = Cont. St. Soc. Contemporary surgery = Contemp Surg Contemporary Surgery = Contemp. Surg. Contemporary Systems Thinking = Contemp Syst Think Contemporary Systems Thinking = Contemp. Syst. Think. Contemporary Terrorism Studies = Contemp Terror Stud Contemporary Terrorism Studies = Contemp. Terror. Stud. Contemporary Theatre Review = Contemp Theatre Rev Contemporary Theatre Review = Contemp. Theatre Rev. Contemporary therapy = Contemp Ther Contemporary Topics in Cognitive Neuroscience = Cont Top Cogn Neuros Contemporary Topics in Cognitive Neuroscience = Cont. Top. Cogn. Neuros. Contemporary Topics in Entomology = Contemp Top Entomol Contemporary Topics in Entomology = Contemp. Top. Entomol. Contemporary Topics in Immunobiology = Contemp Top Immunobi Contemporary Topics in Immunobiology = Contemp. Top. Immunobi. Contemporary topics in immunobiology = Contemp Top Immunobiol Contemporary Topics in Immunobiology = Contemp. Top. Immunobiol. Contemporary topics in laboratory animal science / American Association for Laboratory Animal Science = Contemp Top Lab Anim Sci Contemporary Topics in Laboratory Animal Science = Contemp Top Lab Anim Contemporary Topics in Laboratory Animal Science = Contemp. Top. Lab. Anim. Contemporary Topics in Laboratory Animal Science = Contemp. Top. Lab. Anim. Sci. Contemporary Topics in Molecular Immunology = Contemp Top Molec Im Contemporary Topics in Molecular Immunology = Contemp. Top. Molec. Im. Contemporary topics in molecular immunology = Contemp Top Mol Immunol Contemporary Topics in Molecular Immunology = Contemp. Top. Mol. Immunol. Contemporary Topics In Molecular Immunology=Contemp Top Mol Immunol;; Contemporary Topics in Polymer Science = Contemp Top Polym S Contemporary Topics in Polymer Science = Contemp. Top. Polym. S. Contemporary Topics in Polymer Science, Vol 6 = Contemp Top Polym S Contemporary Topics in Polymer Science, Vol 6 = Contemp. Top. Polym. S. Contemporary Topics in Polymer Science, Vol 7 = Contemp Top Polym S Contemporary Topics in Polymer Science, Vol 7 = Contemp. Top. Polym. S. Contemporary Tourism: Diversity and Change = Tour Soc Sci Ser Contemporary Tourism: Diversity and Change = Tour. Soc. Sci. Ser. Contemporary Treatment of Erectile Dysfunction: A Clinical Guide = Contemp Endocrinol S Contemporary Treatment of Erectile Dysfunction: A Clinical Guide = Contemp. Endocrinol. S. Contemporary Trends and Issues in Science Education = Cont Trends Iss Sci Contemporary Trends and Issues in Science Education = Cont. Trends Iss. Sci. Contemporary Trends in Organization Development and Change = Cont Trend Organ Dev Contemporary Trends in Organization Development and Change = Cont. Trend. Organ. Dev. Contemporary urology = Contemp Urol Contemporary Urology = Contemp. Urol. Contemporary U.s. Latino/a Literary Criticism = Am Lit Read Twenty-f Contemporary U.s. Latino/a Literary Criticism = Am. Lit. Read. Twenty-f. Contemporary Views On Architecture and Representations in Phonology = Curr Stud Linguist Contemporary Views On Architecture and Representations in Phonology = Curr. Stud. Linguist. Contemporary Womens Writing = Contemp Womens Writ Contemporary Womens Writing = Contemp. Womens Writ. Contending With Nationalism and Communism: British Policy Towards Southeast Asia, 1945-65 = Glob Confl Secur Contending With Nationalism and Communism: British Policy Towards Southeast Asia, 1945-65 = Glob. Confl. Secur. Content Computing, Proceedings = Lect Notes Comput Sc Content Computing, Proceedings = Lect. Notes. Comput. Sc. Content Delivery Networks = Lect Notes Electr En Content Delivery Networks = Lect. Notes. Electr. En. Contentious Politics in North America: National Protest and Transnational Collaboration Under Continental Integration = Int Polit Econ Ser Contentious Politics in North America: National Protest and Transnational Collaboration Under Continental Integration = Int. Polit. Econ. Ser. #Content is based on IEEEfull.bib and IEEEabrv.bib as of 2016-03-25 Content Management: Bridging The Gap Between Theory and Practice = Baywoods Tech Commun Content Management: Bridging The Gap Between Theory and Practice = Baywoods. Tech. Commun. Contested Capitalism: The Political Origins of Financial Institutions = Routl Adv Int Polit Contested Capitalism: The Political Origins of Financial Institutions = Routl. Adv. Int. Polit. Contested Cities in The Modern West = Ethn Intercomm Confl Contested Cities in The Modern West = Ethn. Intercomm. Confl. Contested Governance: Culture, Power and Institutions in Indigenous Australia = Res Mg Cent Aborig E Contested Governance: Culture, Power and Institutions in Indigenous Australia = Res. Mg. Cent. Aborig. E. Contested Sudan: The Political Economy of War and Reconstruction = Durh Mod Mid E Islam Contested Sudan: The Political Economy of War and Reconstruction = Durh. Mod. Mid. E. Islam. Contested Terrain = Contrib Polit Sci Contested Terrain = Contrib. Polit. Sci. Contesting Early Childhood = Contest Early Childh Contesting Early Childhood = Contest. Early Childh. Contesting Neoliberal Education = Routl Stud Educ Neol Contesting Neoliberal Education = Routl. Stud. Educ. Neol. Contesting Performance: Global Sites of Research = Perform Interv Contesting Performance: Global Sites of Research = Perform. Interv. Contesting Psychiatry: Social Movements in Mental Health = Crit Stud Health Soc Contesting Psychiatry: Social Movements in Mental Health = Crit. Stud. Health Soc. Contesting The Monument: The Anti-illusionist Italian Historical Novel = Ital Perspect Contesting The Monument: The Anti-illusionist Italian Historical Novel = Ital. Perspect. Contests in Mathematics = Contests Math. Context Architecture = Context Archit Context Architecture = Context Archit. Context-aware Computing and Self-managing Systems = Ch Crc Stud Info Ser Context-aware Computing and Self-managing Systems = Ch. Crc. Stud. Info. Ser. Context-aware Ranking With Factorization Models = Stud Comput Intell Context-aware Ranking With Factorization Models = Stud. Comput. Intell. Context: Nature, Impact, and Role, Proceedings = Lect Notes Comput Sc Context: Nature, Impact, and Role, Proceedings = Lect. Notes. Comput. Sc. Context of Constitution: Beyond The Edge of Epistemological Justification = Bost Stud Philos Sci Context of Constitution: Beyond The Edge of Epistemological Justification = Bost. Stud. Philos. Sci. Contexts of Learning = Contexts Learn Contexts of Learning = Contexts Learn. Contexts of Social Capital: Social Networks in Markets, Communities and Families = Routledge Adv Sociol Contexts of Social Capital: Social Networks in Markets, Communities and Families = Routledge. Adv. Sociol. Contexts of Social Capital: Social Networks in Markets, Communities and Families = Rtldg Adv Soc Contexts of Social Capital: Social Networks in Markets, Communities and Families = Rtldg. Adv. Soc. Contextual Approach to Quantum Formalism = Fund Theor Phys Contextual Approach to Quantum Formalism = Fund. Theor. Phys. Contextual Computing: Models and Applications = Cogn Technol Contextual Computing: Models and Applications = Cogn. Technol. Continental Crust of South India = Geol Soc Ind Mem Continental Crust of South India = Geol. Soc. Ind. Mem. Continental Intraplate Earthquakes: Science, Hazard, and Policy Issues = Geol Soc Am Spec Pap Continental Intraplate Earthquakes: Science, Hazard, and Policy Issues = Geol. Soc. Am. Spec. Pap. Continental Lithosphere : Deep Seismic Reflections = Geodynamics Continental Lithosphere : Deep Seismic Reflections = Geodynamics. Continental Margin Sedimentation: From Sediment Transport to Sequence Stratigraphy = Spec Publ Int Ass Se Continental Margin Sedimentation: From Sediment Transport to Sequence Stratigraphy = Spec. Publ. Int. Ass. Se. Continental Philosophy and Philosophy of Religion = Handb Contemp Philos Continental Philosophy and Philosophy of Religion = Handb. Contemp. Philos. Continental Philosophy Review = Cont Philos Rev Continental Philosophy Review = Cont. Philos. Rev. Continental Plate Boundary: Tectonics At South Island, New Zealand = Geophys Monogr Ser Continental Plate Boundary: Tectonics At South Island, New Zealand = Geophys. Monogr. Ser. Continental Reactivation and Reworking = Geol Soc Spec Publ Continental Reactivation and Reworking = Geol. Soc. Spec. Publ. Continental Shelf Research = Cont Shelf Res Continental Shelf Research = Cont. Shelf Res. Continental Tectonics and Mountain Building: The Legacy of Peach and Horne = Geol Soc Spec Publ Continental Tectonics and Mountain Building: The Legacy of Peach and Horne = Geol. Soc. Spec. Publ. Continent-ocean Interactions Within East Asian Marginal Seas = Geoph Monog Series Continent-ocean Interactions Within East Asian Marginal Seas = Geoph. Monog. Series. Continent-ocean Interactions Within East Asian Marginal Seas = Geophys Monogr Ser Continent-ocean Interactions Within East Asian Marginal Seas = Geophys. Monogr. Ser. Contingent Nature of Life: Bioethics and Limits of Human Existence = Int Libr Eth Law New Contingent Nature of Life: Bioethics and Limits of Human Existence = Int. Libr. Eth. Law. New. Contingent Valuation = Contrib To Econ Anal Contingent Valuation = Contrib. To. Econ. Anal. Continua = Pure A Math Continua = Pure. A. Math. Continuation and Bifurcations : Numerical Techniques and Applications = Nato Adv Sci I C-mat Continuation and Bifurcations : Numerical Techniques and Applications = Nato. Adv. Sci. I. C-mat. Continuation Methods in Fluid Dynamics = Note Num Fl Continuation Methods in Fluid Dynamics = Note. Num. Fl. Continued Fractions and Orthogonal Functions: Theory and Applications = Lect Notes Pure Appl Continued Fractions and Orthogonal Functions: Theory and Applications = Lect. Notes. Pure. Appl. Continuing care = Contin Care Continuing Care = Contin. Care Continuing Education Programmes for Library and Information Personnel in Educational Institutions = Dtsch Stift Int Entw Continuing Education Programmes for Library and Information Personnel in Educational Institutions = Dtsch. Stift. Int. Entw. Continuity and change = Contin Chang Continuity and Change = Continuity Change Continuity and Discontinuity in The Peopling of Europe: One Hundred Fiftyyears of Neanderthal Study = Vertebr Paleobiol Pa Continuity and Discontinuity in The Peopling of Europe: One Hundred Fiftyyears of Neanderthal Study = Vertebr. Paleobiol. Pa. Continuity = Continuity Continuous Anesthesia Gas Monitoring = Am Soc Test Mater Continuous Anesthesia Gas Monitoring = Am. Soc. Test. Mater. Continuous Bounded Cohomology of Locally Compact Groups = Lect Notes Math Continuous Bounded Cohomology of Locally Compact Groups = Lect. Notes. Math. Continuous Extracorporeal Treatment in Multiple Organ Dysfunction Syndrome = Contrib Nephrol Continuous Extracorporeal Treatment in Multiple Organ Dysfunction Syndrome = Contrib. Nephrol. Continuous Hemofiltration = Contrib Nephrol Continuous Hemofiltration = Contrib. Nephrol. Continuous Nanophase and Nanostructured Materials = Mater Res Soc Symp P Continuous Nanophase and Nanostructured Materials = Mater. Res. Soc. Symp. P. Continuous Spikes and Waves During Slow Sleep/electrical Status Epilepticus During Slow Sleep = Mariani F P Continuous Spikes and Waves During Slow Sleep/electrical Status Epilepticus During Slow Sleep = Mariani. F. P. Continuous-time Markov Decision Processes: Theory and Applications = Stoch Mod Appl Proba Continuous-time Markov Decision Processes: Theory and Applications = Stoch. Mod. Appl. Proba. Continuous-time Stochastic Control and Optimization With Financial Applications = Stoch Mod Appl Proba Continuous-time Stochastic Control and Optimization With Financial Applications = Stoch. Mod. Appl. Proba. Continuous Wave-form Analysis = Eeg Cl N Su Continuous Wave-form Analysis = Eeg. Cl. N. Su. Continuum = Continuum Continuum = Continuum (N Y) Continuum-journal of Media & Cultural Studies = Continuum-j Media Cu Continuum-journal of Media & Cultural Studies = Continuum-j. Media Cu. Continuum Mechanics: Advanced Topics and Research Trends = Model Simul Sci Eng Continuum Mechanics: Advanced Topics and Research Trends = Model. Simul. Sci. Eng. Continuum Mechanics and Thermodynamics = Contin. Mech. Thermodyn. Continuum Mechanics and Thermodynamics = Contin. Mech. Thermodyn. Continuum Mechanics and Thermodynamics = Continuum Mech Therm Continuum Mechanics and Thermodynamics = Continuum Mech. Therm. Continuum Mechanics and Thermodynamics = Continuum Mech. Thermodyn. Continuum Mechanics, Fluids, Heat = Wseas Mech Eng Ser Continuum Mechanics, Fluids, Heat = Wseas. Mech. Eng. Ser. Continuum Modeling in The Physical Sciences = Math Model Comput Continuum Modeling in The Physical Sciences = Math. Model. Comput. Continuum Models and Discrete Systems, Vol 1 = Inter Mec M Continuum Models and Discrete Systems, Vol 1 = Inter. Mec. M. Continuum Models and Discrete Systems, Vol 2 = Inter Mec M Continuum Models and Discrete Systems, Vol 2 = Inter. Mec. M. Continuum (Society for Social Work Administrators in Health Care) = Continuum Continuum (Society for Social Work Leadership in Health Care) = Continuum Soc Soc Work Leadersh Health Care Continuum Theory and Dynamical Systems = Lect Notes Pure Appl Continuum Theory and Dynamical Systems = Lect. Notes. Pure. Appl. Continuum Theory = Lect Notes Pure Appl Continuum Theory = Lect. Notes. Pure. Appl. Continuum Thermodynamics, Pt I: Foundations = Ser Adv Math Appl Sc Continuum Thermodynamics, Pt I: Foundations = Ser. Adv. Math. Appl. Sc. Contours of The Fantastic = Contr Sci F Contours of The Fantastic = Contr. Sci. F. Contraception=Contraception;; Contraception = Contraception Contraception, fertilite, sexualite (1992) = Contracept Fertil Sex Contraception Fertilite Sexualite = Contracept Fertil S Contraception Fertilite Sexualite = Contracept. Fertil. S. Contraception, Fertilite, Sexualite=Contracept Fertil Sex;; Contraception, fertilite, sexualite = Contracept Fertil Sex (Paris) Contraception, Fertilite, Sexualite = Contracept. Fertil. Sex. (Paris) Contraception in The Third Millennium = I C S S Contraception in The Third Millennium = I. C. S. S. Contraception Report = Contracept Rep Contraception Today = I C S S Contraception Today = I. C. S. S. Contraceptive Choices and Realities = I C S S Contraceptive Choices and Realities = I. C. S. S. Contraceptive Delivery Systems = Contracept Deliv Sys Contraceptive Delivery Systems = Contracept. Deliv. Sys. Contraceptive delivery systems = Contracept Deliv Syst Contraceptive technology = Contracept Technol Contraceptive technology update = Contracept Technol Update Contract = Contract Contract design = Contract Des Contract Design = Contract Des. Contract healthcare = Contract Healthc Contract Healthcare = Contract Healthc. Contracting for Better Places: A Relational Analysis of Development Agreements in Urban Development Projects = Sustain Urban Areas Contracting for Better Places: A Relational Analysis of Development Agreements in Urban Development Projects = Sustain. Urban Areas. Contracting for Public Services = Rout Mast Publ Manag Contracting for Public Services = Rout. Mast. Publ. Manag. Contracting for Services in State and Local Government Agencies = Public Adm Public Po Contracting for Services in State and Local Government Agencies = Public. Adm. Public. Po. Contracting Out = Inf Bus Key Contracting Out = Inf. Bus. Key. Contract interiors = Contract Inter Contract Interiors = Contract Inter. Contract (New York, N.Y. : 1960) = Contract Contradictions = Contradictions Contradictions of Israeli Citizenship: Land, Religion and State = Routl Stud Mid E Pol Contradictions of Israeli Citizenship: Land, Religion and State = Routl. Stud. Mid. E. Pol. Contrast Agents Iii: Radiopharmaceuticals - From Diagnostics to Therapeutics = Top Curr Chem Contrast Agents Iii: Radiopharmaceuticals - From Diagnostics to Therapeutics = Top. Curr. Chem. Contrast Agents Ii = Top Curr Chem Contrast Agents Ii = Top. Curr. Chem. Contrast Agents in Liver Imaging = Ser Radiol Contrast Agents in Liver Imaging = Ser. Radiol. Contrast Agents I = Top Curr Chem Contrast Agents I = Top. Curr. Chem. Contrastes (Murcia, Spain) = Contrastes Contrast in Phonology: Theory, Perception, Acquisition = Phonol Phonet Contrast in Phonology: Theory, Perception, Acquisition = Phonol. Phonet. Contrastive Lexical Semantics = Amst Stud Theory His Contrastive Lexical Semantics = Amst. Stud. Theory. His. Contrast Media & Molecular Imaging = Contrast Media Mol I Contrast Media & Molecular Imaging = Contrast Media Mol. I. Contrast media & molecular imaging = Contrast Media Mol Imaging Contrast Media & Molecular Imaging = Contrast Media Mol. Imaging Contrast Sensitivity = P Ret Res F Contrast Sensitivity = P. Ret. Res. F. Contree / [Raad vir Geesteswetenskaplike Navorsing, Instituut vir Geskiedenisnavorsing, Afdeling Streekgeskiedenis] = Contree Contrepoint = Contrepoint Contribuciones Del Macn = Contrib Macn Contribuciones Del Macn = Contrib. Macn Contributi (Biblioteca Antonio Panizzi) = Contributi Contributi della Scuola di specializzazione in archeologia dell'Università degli studi di Pisa = CSSpecPisa Contributi dell'Istituto di archeologia. Pubblicazioni dell'Università cattolica del Sacro Cuore, Milano = CIstAMilano Contributi dell'Istituto di Storia antica dell'Univ. del Sacro Cuore = CISA Contributi e materiali di archeologia orientale = CMatAOr Contribution of Presbyterianism to The Maritime Provinces of Canada = Mq Stud Hist Relig Contribution of Presbyterianism to The Maritime Provinces of Canada = Mq. Stud. Hist. Relig. Contributions a l'histoire economique et sociale = Contrib Hist Econ Soc Contributions From Boyce Thompson Institute = Contrib Boyce Thomps Contributions From Boyce Thompson Institute = Contrib. Boyce Thomps. Contributions from the Central Research Institute for Agriculture Bogor = Contrib. Cent. Res. Inst. Agric. Bogor Contributions From The Rosenberg International Forum On Water Policy = Cont Ros Int For Wat Contributions From The Rosenberg International Forum On Water Policy = Cont. Ros. Int. For. Wat. Contributions from the United States National Herbarium = Contrib. U. S. Natl. Herb. Contributions from the University of Michigan Herbarium = Contrib Univ Mich Herb Contributions in American History = Contr Am Hi Contributions in American History = Contr. Am. Hi. Contributions in biology and geology / Milwaukee Public Museum = Contrib Biol Geol Contributions in Economics and Economic History = Contrib Econ Econ Hi Contributions in Economics and Economic History = Contrib. Econ. Econ. Hi. Contributions in Latin American Studies = Contr Lat A Contributions in Latin American Studies = Contr. Lat. A. Contributions in Legal Studies = Contr Leg S Contributions in Legal Studies = Contr. Leg. S. Contributions in Marine Science = Contrib Mar Sci Contributions in Marine Science = Contrib. Mar. Sci. Contributions in Mathematical and Computational Sciences = Contrib Math Comput Contributions in Mathematical and Computational Sciences = Contrib. Math. Comput. Contributions in medical studies = Contrib Med Stud Contributions in Military Studies = Contrib Mil Stud Contributions in Military Studies = Contrib. Mil. Stud. Contributions in Philosophy = Contr Philo Contributions in Philosophy = Contr. Philo. Contributions in Political Science = Contrib Polit Sci Contributions in Political Science = Contrib. Polit. Sci. Contributions in psychology = Contrib Psychol Contributions in Sociology = Contr Soc Contributions in Sociology = Contr. Soc. Contributions in Women's Studies = Contrib Women S Stud Contributions in Women's Studies = Contrib. Women. S. Stud. Contributions of John Lansing Carey to The Profession of Accountancy, Vol 10 = Stud Dev Account Tho Contributions of John Lansing Carey to The Profession of Accountancy, Vol 10 = Stud. Dev. Account. Tho. Contributions of The Astronomical Observatory Skalnate Pleso-b Sample = Contr Ast O Contributions of The Astronomical Observatory Skalnate Pleso-b Sample = Contr. Ast. O. Contributions of The Astronomical Observatory Skalnate Pleso = Contr Ast O Contributions of The Astronomical Observatory Skalnate Pleso = Contr. Ast. O. Contributions of The Astronomical Observatory Skalnate Pleso = Contrib Astron Obs S Contributions of The Astronomical Observatory Skalnate Pleso = Contrib. Astron. Obs. S. Contributions of The Astronomical Observatory Skalnate Pleso, Vol 20 = Contr Ast O Contributions of The Astronomical Observatory Skalnate Pleso, Vol 20 = Contr. Ast. O. Contributions of The Astronomical Observatory Skalnate Pleso, Vol Xxvii, No 3-bk Sample Xxvii. No 3 = Contr Ast O Contributions of The Astronomical Observatory Skalnate Pleso, Vol Xxvii, No 3-bk Sample Xxvii. No 3 = Contr. Ast. O. Contributions of The Institut Fur Kernphysik to The 26th International Cosmic Ray Conference = Fzka Tech Umw Wis B Contributions of The Institut Fur Kernphysik to The 26th International Cosmic Ray Conference = Fzka. Tech. Umw. Wis. B. Contributions to Applied and Mathematical Statistics = Contrib. Appl. Math. Stat. Contributions to Asian studies = Contrib Asian Stud Contributions to Atmospheric Physics = Contrib. Atmos. Phys. Contributions to Biblical Exegesis and Theology = Contr Bib Exeg Theol Contributions to Biblical Exegesis and Theology = Contr. Bib. Exeg. Theol. Contributions to Circumpolar Anthropology = Contrib Circumpol An Contributions to Circumpolar Anthropology = Contrib. Circumpol. An. Contributions to Complex Analysis and Analytic Geometry = A Mathemat Contributions to Complex Analysis and Analytic Geometry = A. Mathemat. Contributions to Conflict Management Peace Economics and Development = Contrib Confl Manag Contributions to Conflict Management Peace Economics and Development = Contrib. Confl. Manag. Contributions to Dialogue Studies = Beitr Dialogforsch Contributions to Dialogue Studies = Beitr. Dialogforsch. Contributions to Economic Analysis = Contrib Econ Anal Contributions to Economic Analysis = Contrib. Econ. Anal. Contributions to Economic Analysis = Contrib. Econom. Anal. Contributions to Economic Analysis = Contrib To Econ Anal Contributions to Economic Analysis = Contrib. To. Econ. Anal. Contributions to Economics = Contrib Econ Contributions to Economics = Contrib. Econ. Contributions to Economics = Contrib. Econom. Contributions to Economics = Contribut Econ Contributions to Economics = Contribut. Econ. Contributions to embryology = Contrib Embryol Contributions to Embryology = Contrib Embryol Contributions to Embryology = Contrib. Embryol. Contributions To Epidemiology and Biostatistics=Contrib Epidemiol Biostat;; Contributions to Global Historical Archaeology = Contr Glob Hist Arch Contributions to Global Historical Archaeology = Contr. Glob. Hist. Arch. Contributions to Global Historical Archaeology = Contrib Glob Hist Ar Contributions to Global Historical Archaeology = Contrib. Glob. Hist. Ar. Contributions to Gynecology and Obstetrics = Contrib Gynecol Obst Contributions to Gynecology and Obstetrics = Contrib. Gynecol. Obst. Contributions to gynecology and obstetrics = Contrib Gynecol Obstet Contributions to Gynecology and Obstetrics = Contrib. Gynecol. Obstet. Contributions To Gynecology and Obstetrics=Contrib Gynecol Obstet;; Contributions to Human Development = Contrib Hum Dev Contributions to Human Development = Contrib. Hum. Dev. Contributions to Indian Sociology = Contrib Indian Soc Contributions to Indian Sociology = Contrib. Indian Soc. Contributions To Indian Sociology = Contrib. India. Sociol. Contributions to Indian sociology / Ecole pratique des hautes etudes (VIo section)-Paris [and] Institute of Social Anthropology-Oxford = Contrib Indian Sociol Contributions to Management Science = Contrib Manag Sci Contributions to Management Science = Contrib. Manag. Sci. Contributions to Management Science = Contr Manage Sci Contributions to Management Science = Contr. Manage. Sci. Contributions to Mathematical Psychology, Psychometrics, and Methodology = Rec Res Psy Contributions to Mathematical Psychology, Psychometrics, and Methodology = Rec. Res. Psy. Contributions to microbiology and immunology = Contrib Microbiol Immunol Contributions to Microbiology and Immunology = Contrib. Microbiol. Immunol. Contributions to Microbiology and Immunology = Contrib To Microbiol Contributions to Microbiology and Immunology = Contrib. To. Microbiol. Contributions to microbiology = Contrib Microbiol Contributions to Microbiology = Contrib Microbiol Contributions to Microbiology = Contrib. Microbiol. Contributions to mineralogy and petrology. Beitrage zur Mineralogie und Petrologie = Contrib Mineral Petrol Contributions to Mineralogy and Petrology = Contrib Mineral Petr Contributions to Mineralogy and Petrology = Contrib. Mineral. Petr. Contributions to Mineralogy and Petrology = Contrib. Mineral. Petrol. Contributions to Nepalese studies = Contrib Nepalese Stud Contributions to nephrology = Contrib Nephrol Contributions to Nephrology = Contrib Nephrol Contributions to Nephrology = Contrib. Nephrol. Contributions To Nephrology=Contrib Nephrol;; Contributions to Nonlinear Analysis = Prog Nonlin Contributions to Nonlinear Analysis = Prog. Nonlin. Contributions to Oncology = Contr Oncol Contributions to Oncology = Contr. Oncol. Contributions to Phenomenology = Contrib Phenomenol Contributions to Phenomenology = Contrib. Phenomenol. Contributions to Phenomenology = Contr Phenomenol Contributions to Phenomenology = Contr. Phenomenol. Contributions to Plasma Physics = Contrib. Plasma Phys. Contributions to Plasma Physics = Contrib Plasm Phys Contributions to Plasma Physics = Contrib. Plasm. Phys. Contributions to political economy = Contrib Polit Econ Contributions to Political Economy = Contrib Polit Econ Contributions to Political Economy = Contrib. Polit. Econ. Contributions to Political Economy=Contrib. to Polit. Economy Contributions to primatology = Contrib Primatol Contributions to Primatology = Contrib Primatol Contributions to Primatology = Contrib. Primatol. Contributions to sensory physiology = Contrib Sens Physiol Contributions to Sensory Physiology = Contrib. Sens. Physiol. Contributions to Statistics = Contrib Stat Contributions to Statistics = Contrib. Stat. Contributions to Statistics = Contrib. Statist. Contributions to Statistics = Contr Stat Contributions to Statistics = Contr. Stat. Contributions to The 28th International Cosmic Ray Conference = Fzka Tech Umw Wis B Contributions to The 28th International Cosmic Ray Conference = Fzka. Tech. Umw. Wis. B. Contributions to The 29th International Cosmic Ray Conference = Fzka Tech Umw Wis B Contributions to The 29th International Cosmic Ray Conference = Fzka. Tech. Umw. Wis. B. Contributions to The 5th International Congress On Rudists = Cour For Sekenbg Contributions to The 5th International Congress On Rudists = Cour. For. Sekenbg. Contributions to The Chronology of The Eastern Mediterranean = Con Chronol Contributions to The Chronology of The Eastern Mediterranean = Con. Chronol. Contributions to The First Australian Conodont Symposium (auscos 1) = Cour Forsch Senck Contributions to The First Australian Conodont Symposium (auscos 1) = Cour. Forsch. Senck. Contributions to The History of Occupational and Environmental Prevention = Int Congr Ser Contributions to The History of Occupational and Environmental Prevention = Int. Congr. Ser. Contributions to The Knowledge of Flora and Vegetation of Poland, Vol 1 = Ver Geobot Contributions to The Knowledge of Flora and Vegetation of Poland, Vol 1 = Ver. Geobot. Contributions to The Methodology of The Creation of Written Law = Eur Assoc Legislat S Contributions to The Methodology of The Creation of Written Law = Eur. Assoc. Legislat. S. Contributions to The Second Australian Conodont Symposium (auscos Ii) = Cour For Sekenbg Contributions to The Second Australian Conodont Symposium (auscos Ii) = Cour. For. Sekenbg. Contributions to The Sociology of Language = Contrib Sociol Lang Contributions to The Sociology of Language = Contrib. Sociol. Lang. Contributions to The Sociology of Language = Contr Soc L Contributions to The Sociology of Language = Contr. Soc. L. Contributions to The Study of Aging = Contr St Ag Contributions to The Study of Aging = Contr. St. Ag. Contributions to The Study of Education = Cont Stud E Contributions to The Study of Education = Cont. Stud. E. Contributions to The Study of Music and Dance = Contr St M Contributions to The Study of Music and Dance = Contr. St. M. Contributions to The Study of Religion = Contr St R Contributions to The Study of Religion = Contr. St. R. Contributions to The Study of Science Fiction and Fantasy = Contr Sci F Contributions to The Study of Science Fiction and Fantasy = Contr. Sci. F. Contributions to The Study of World Literature = Contr St Wo Contributions to The Study of World Literature = Contr. St. Wo. Contributions to Transplantation = Contibut Transplant Contributions to Transplantation = Contibut. Transplant. Contributions to Transplant-medicine = Contr Trans Contributions to Transplant-medicine = Contr. Trans. Contributions to Zoology = Contrib Zool Contributions to Zoology = Contrib. Zool. Control and Automation = Comm Com Inf Sc Control and Automation = Comm. Com. Inf. Sc. Control and Automation of Electrical Power Distribution Systems = Power Eng-willis Control and Automation of Electrical Power Distribution Systems = Power Eng-willis. Control and Computers = Control Comput Control and Computers = Control Comput. Control and Cybernetics = Control Cybern Control and Cybernetics = Control Cybern. Control and Cybernetics = Control Cybernet. Control and Diseases of Sodium Dependent Transport Proteins and Ion Channels = Int Congr Ser Control and Diseases of Sodium Dependent Transport Proteins and Ion Channels = Int. Congr. Ser. Control and Dynamic Systems = Control Dyn. Syst. Control and Estimation of Distributed Parameter Systems = Int Ser Numer Math Control and Estimation of Distributed Parameter Systems = Int. Ser. Numer. Math. Control and Estimation of Distributed Parameter Systems = Int S Num M Control and Estimation of Distributed Parameter Systems = Int. S. Num. M. Control and Estimation of Distributed Parameter Systems: Nonlinear Phenomena = Int S Num M Control and Estimation of Distributed Parameter Systems: Nonlinear Phenomena = Int. S. Num. M. Control and Estimation of Systems With Input/output Delays = Lect Notes Contr Inf Control and Estimation of Systems With Input/output Delays = Lect. Notes. Contr. Inf. Control and Fate of Atmospheric Trace Metals = Nato Adv Sci I C-mat Control and Fate of Atmospheric Trace Metals = Nato. Adv. Sci. I. C-mat. Control and Instrumentation = Control Instrum Control and Instrumentation = Control Instrum. Control and Modeling of Complex Systems = Trends Math Control and Modeling of Complex Systems = Trends. Math. Control and Monitoring of Chemical Batch Reactors = Adv Ind Control Control and Monitoring of Chemical Batch Reactors = Adv. Ind. Control Control and Observer Design for Nonlinear Finite and Infinite Dimensional Systems = Lect Notes Contr Inf Control and Observer Design for Nonlinear Finite and Infinite Dimensional Systems = Lect. Notes. Contr. Inf. Control and Optimization of Multiscale Process Systems = Control Eng Ser Birk Control and Optimization of Multiscale Process Systems = Control Eng. Ser. Birk. Control and Regulation of Stem Cells = Cold Sh Q B Control and Regulation of Stem Cells = Cold. Sh. Q. B. Control and Regulation of Transport Phenomena in The Cardiac System = Ann Ny Acad Sci Control and Regulation of Transport Phenomena in The Cardiac System = Ann. Ny. Acad. Sci. Control and Scheduling Codesign: Flexible Resource Management in Real-time Control Systems = Adv Top Sci Tech Chi Control and Scheduling Codesign: Flexible Resource Management in Real-time Control Systems = Adv. Top. Sci. Tech. Chi. Control and Stimulation of Follicular Growth = Adv Rep End Control and Stimulation of Follicular Growth = Adv. Rep. End. Control and Surveillance of African Trypanosomiasis = Who Tech Rep Ser Control and Surveillance of African Trypanosomiasis = Who. Tech. Rep. Ser. Control and The Therapeutic Trial = Clio Med Control and The Therapeutic Trial = Clio. Med. Control Applications in Marine Systems 2001 (cams 2001) = Ifac P Ser Control Applications in Marine Systems 2001 (cams 2001) = Ifac. P. Ser. Control Applications in Marine Systems (cams'98) = Ifac Work S Control Applications in Marine Systems (cams'98) = Ifac. Work. S. Control Applications in Post-harvest and Processing Technology 2001 = Ifac Work S Control Applications in Post-harvest and Processing Technology 2001 = Ifac. Work. S. Control Applications of Optimisation 2003 = Ifac Work S Control Applications of Optimisation 2003 = Ifac. Work. S. Control & Automation = Control Autom Control & Automation = Control Autom. Control, Computation and Information Systems = Comm Com Inf Sc Control, Computation and Information Systems = Comm. Com. Inf. Sc. Control Configuration Selection for Multivariable Plants = Lect Notes Contr Inf Control Configuration Selection for Multivariable Plants = Lect. Notes. Contr. Inf. Control = Control Control Engineering and Applied Informatics = Control Eng Appl Inf Control Engineering and Applied Informatics = Control Eng. Appl. Inf. Control Engineering = Control Eng Control Engineering = Control Eng. Control engineering practice = Control Eng Pract Control Engineering Practice = Control Eng Pract Control Engineering Practice = Control Eng. Pract. Control Engineering Series-birkhauser = Control Engn Ser Bir Control Engineering Series-birkhauser = Control Engn. Ser. Bir. Control Engineering Series Birkhauser = Control Eng Ser Birk Control Engineering Series Birkhauser = Control Eng. Ser. Birk. Controllability of Partial Differential Equations Governed By Multiplicative Controls = Lect Notes Math Controllability of Partial Differential Equations Governed By Multiplicative Controls = Lect. Notes. Math. Controlled Active Global Experiments ( Cage ) = Int Sch Pl Controlled Active Global Experiments ( Cage ) = Int. Sch. Pl. Controlled Assembly and Modification of Inorganic Systems = Struct Bond Controlled Assembly and Modification of Inorganic Systems = Struct. Bond. Controlled clinical trials = Control Clin Trials Controlled Clinical Trials=Control Clin Trials;; Controlled Clinical Trials = Control Clin Trials Controlled Clinical Trials = Control. Clin. Trials Controlled/living Radical Polymerization: Progress in Atrp = Acs Sym Ser Controlled/living Radical Polymerization: Progress in Atrp = Acs. Sym. Ser. Controlled/living Radical Polymerization: Progress in Raft, Dt, Nmp & Omrp = Acs Sym Ser Controlled/living Radical Polymerization: Progress in Raft, Dt, Nmp & Omrp = Acs. Sym. Ser. Controlled Movements : Mechanotronics in Machine and Vehicle Manufacturing = Vdi Bericht Controlled Movements : Mechanotronics in Machine and Vehicle Manufacturing = Vdi. Bericht. Controlled Nanoscale Motion = Lect Notes Phys Controlled Nanoscale Motion = Lect. Notes. Phys. Controlled Natural Language = Lect Notes Artif Int Controlled Natural Language = Lect. Notes. Artif. Int. Controlled Nucleosynthesis: Breakthroughs in Experiment and Theory = Fund Theor Phys Controlled Nucleosynthesis: Breakthroughs in Experiment and Theory = Fund. Theor. Phys. Controlled Pulmonary Drug Delivery = Adv Del Sci Technol Controlled Pulmonary Drug Delivery = Adv. Del. Sci. Technol. Controlled Release Society. International Symposium On Controlled Release of Bioactive Materials = Crs Bui Nat Controlled Release Society. International Symposium On Controlled Release of Bioactive Materials = Crs. Bui. Nat. Controlling and Using Light in Nanometric Domains = P Soc Photo-opt Ins Controlling and Using Light in Nanometric Domains = P. Soc. Photo-opt. Ins. Controlling Broadcasting = Fulbright P Controlling Broadcasting = Fulbright. P. Controlling Chaos: Suppression, Synchronization and Chaotification = Commun Control Eng Controlling Chaos: Suppression, Synchronization and Chaotification = Commun. Control. Eng. Controlling Disease Outbreaks: The Changing Role of Hospitals = Public Health 21st C Controlling Disease Outbreaks: The Changing Role of Hospitals = Public. Health. 21st. C. Controlling Industrial Emissions - Practical Experience = Inst Chem E Controlling Industrial Emissions - Practical Experience = Inst. Chem. E. Controlling Light in Optically Induced Photonic Lattices = Springer Theses-reco Controlling Light in Optically Induced Photonic Lattices = Springer. Theses-reco. Controlling Maillard Pathways to Generate Flavors = Acs Sym Ser Controlling Maillard Pathways to Generate Flavors = Acs. Sym. Ser. Controlling Nitrogen Concentration in Agrosystems = Colloq Inra Controlling Nitrogen Concentration in Agrosystems = Colloq. Inra. Controlling Tissue Optical Properties: Applications in Clinical Study = P Soc Photo-opt Ins Controlling Tissue Optical Properties: Applications in Clinical Study = P. Soc. Photo-opt. Ins. Control Mechanisms of Stress and Emotion: Neuroendocrine-based Studies = Int Congr Ser Control Mechanisms of Stress and Emotion: Neuroendocrine-based Studies = Int. Congr. Ser. Control Methods in Pde-dynamical Systems = Contemp Math Control Methods in Pde-dynamical Systems = Contemp. Math. Control of Breathing and Dyspnea = Adv Biosci Control of Breathing and Dyspnea = Adv. Biosci. Control of Complex Nonlinear Systems With Delay = Springer Theses-reco Control of Complex Nonlinear Systems With Delay = Springer. Theses-reco. Control of Complex Systems: Structural Constraints and Uncertainty = Commun Control Eng Control of Complex Systems: Structural Constraints and Uncertainty = Commun. Control Eng. Control of Distributed Parameter and Stochastic Systems = Int Fed Info Proc Control of Distributed Parameter and Stochastic Systems = Int. Fed. Info. Proc. Control of Fertility in Domestic Birds = Colloq Inra Control of Fertility in Domestic Birds = Colloq. Inra. Control of Flexible-link Manipulators Using Neural Networks = Lect Notes Contr Inf Control of Flexible-link Manipulators Using Neural Networks = Lect. Notes. Contr. Inf. Control of Fluid Flow = Lect Notes Contr Inf Control of Fluid Flow = Lect. Notes. Contr. Inf. Control of Foodborne Trematode Infections = Who Tech Rep Ser Control of Foodborne Trematode Infections = Who. Tech. Rep. Ser. Control of Hereditary Diseases = Who Tech Rep Ser Control of Hereditary Diseases = Who. Tech. Rep. Ser. Control of Infectious Animal Diseases By Vaccination = Dev Biologicals Control of Infectious Animal Diseases By Vaccination = Dev. Biologicals. Control of Integral Processes With Dead Time = Adv Ind Control Control of Integral Processes With Dead Time = Adv. Ind. Control Control of Locusts = Univ Fra S Control of Locusts = Univ. Fra. S. Control of Membrane Function : Short-term and Long-term = Prog Cell R Control of Membrane Function : Short-term and Long-term = Prog. Cell. R. Control of Metabolic Processes = Nato Adv Sci I A-lif Control of Metabolic Processes = Nato. Adv. Sci. I. A-lif. Control of Nonlinear and Hybrid Process Systems: Designs for Uncertainty, Constraints and Time-delays = Lect Notes Contr Inf Control of Nonlinear and Hybrid Process Systems: Designs for Uncertainty, Constraints and Time-delays = Lect. Notes. Contr. Inf. Control of Nonlinear Distributed Parameter Systems = Lect Notes Pure Appl Control of Nonlinear Distributed Parameter Systems = Lect. Notes. Pure. Appl. Control of Nonlinear Dynamical Systems: Methods and Applications = Commun Control Eng Control of Nonlinear Dynamical Systems: Methods and Applications = Commun. Control Eng. Control of Partial Differential Equations and Applications = Lect Notes Pure Appl Control of Partial Differential Equations and Applications = Lect. Notes. Pure. Appl. Control of Partial Differential Equations = Lect Notes Pure Appl Control of Partial Differential Equations = Lect. Notes. Pure. Appl. Control of Pig Reproduction Iii = J Rep Fer S Control of Pig Reproduction Iii = J. Rep. Fer. S. Control of Pig Reproduction Vi = J Rep Fer S Control of Pig Reproduction Vi = J. Rep. Fer. S. Control of Power Plants and Power Systems = Ifac Symp Series Control of Power Plants and Power Systems = Ifac. Symp. Series. Control of Redundant Robot Manipulators: Theory and Experiments = Lect Notes Contr Inf Control of Redundant Robot Manipulators: Theory and Experiments = Lect. Notes. Contr. Inf. Control of Sandwich Nonlinear Systems = Lect Notes Contr Inf Control of Sandwich Nonlinear Systems = Lect. Notes. Contr. Inf. Control of Semiconductor Surfaces and Interfaces = Mat Res S C Control of Semiconductor Surfaces and Interfaces = Mat. Res. S. C. Control of Ships and Underwater Vehicles: Design for Underactuated and Nonlinear Marine Systems = Adv Ind Control Control of Ships and Underwater Vehicles: Design for Underactuated and Nonlinear Marine Systems = Adv. Ind. Control Control of Singular Systems With Random Abrupt Changes = Commun Control Eng Control of Singular Systems With Random Abrupt Changes = Commun. Control Eng. Control of The Leishmaniases = Who Tech Rep Ser Control of The Leishmaniases = Who. Tech. Rep. Ser. Control of The Onset of Puberty Iii = Int Congr Ser Control of The Onset of Puberty Iii = Int. Congr. Ser. Control of The Thyroid Gland = Adv Exp Med Biol Control of The Thyroid Gland = Adv. Exp. Med. Biol. Control of Turbulent and Magnetohydrodynamic Channel Flows: Boundary Stabilization and State Estimation = Syst Control-found A Control of Turbulent and Magnetohydrodynamic Channel Flows: Boundary Stabilization and State Estimation = Syst. Control-found. A. Control of Uncertain Systems: Modelling, Approximation, and Design = Lect Notes Contr Inf Control of Uncertain Systems: Modelling, Approximation, and Design = Lect. Notes. Contr. Inf. Control Perspectives On Numerical Algorithms and Matrix Problems = Adv Des Control Control Perspectives On Numerical Algorithms and Matrix Problems = Adv. Des. Control Control Problems in Robotics = Springer Trac Adv Ro Control Problems in Robotics = Springer. Trac. Adv. Ro. Control Problems in Robotics = Spr Tra Adv Robot Control Problems in Robotics = Spr. Tra. Adv. Robot. Control Reconfiguration of Dynamical Systems = Lect Notes Contr Inf Control Reconfiguration of Dynamical Systems = Lect. Notes. Contr. Inf. Control Science Evolution = Collana Automatica Control Science Evolution = Collana. Automatica. Controls for Optical Systems = P Soc Photo-opt Ins Controls for Optical Systems = P. Soc. Photo-opt. Ins. Control Solutions = Control Solut Control Solutions = Control Solut. Control Solutions International = Control Solut Int Control Solutions International = Control Solut. Int. Controls On Carbonate Platform and Basin Development = Soc Econ Pa Controls On Carbonate Platform and Basin Development = Soc. Econ. Pa. Controls On Carbonate Platform and Reef Development = Sepm Spec P Controls On Carbonate Platform and Reef Development = Sepm. Spec. P. Control Systems Theory and Applications for Linear Repetitive Processes = Lect Notes Contr Inf Control Systems Theory and Applications for Linear Repetitive Processes = Lect. Notes. Contr. Inf. Control Theoretic Splines: Optimal Control, Statistics, and Path Planning = Princ Ser Appl Math Control Theoretic Splines: Optimal Control, Statistics, and Path Planning = Princ. Ser. Appl. Math. Control-theory and Advanced Technology = Contr-theor Adv Tech Control-theory and Advanced Technology = Contr-theor. Adv. Tech. Control Theory & Applications = Control Theory Appl. Control Theory in Physics and Other Fields of Science: Concepts, Tools and Applications = Springer Tracts Mod Control Theory in Physics and Other Fields of Science: Concepts, Tools and Applications = Springer. Tracts. Mod. Control Theory in Physics and Other Fields of Science: Concepts, Tools and Applications = Springer Tr Mod Phys Control Theory in Physics and Other Fields of Science: Concepts, Tools and Applications = Springer. Tr. Mod. Phys. Control Theory in The Plane, Second Edition = Lect Notes Contr Inf Control Theory in The Plane, Second Edition = Lect. Notes. Contr. Inf. Control Theory of Distributed Parameter Systems and Applications = Lect Notes Contr Inf Control Theory of Distributed Parameter Systems and Applications = Lect. Notes. Contr. Inf. Control Theory of Partial Differential Equations = Pure A Math Control Theory of Partial Differential Equations = Pure. A. Math. Controversial Issues in Climacteric Medicine Series = Contro Issu Clim Med Controversial Issues in Climacteric Medicine Series = Contro. Issu. Clim. Med. Controversies in Electoral Democracy and Representation = Controv Elect Dem Controversies in Electoral Democracy and Representation = Controv. Elect. Dem. Controversies in Electoral Democracy and Representation = Controv Elect Democr Controversies in Electoral Democracy and Representation = Controv. Elect. Democr. Controversies in Gastrointestinal Tumor Therapy = Front Radiat Ther On Controversies in Gastrointestinal Tumor Therapy = Front. Radiat. Ther. On. Controversies in International Corporate Responsiblity = Int Corp Respons Ser Controversies in International Corporate Responsiblity = Int. Corp. Respons. Ser. Controversies in Neuro-oncology = Front Radiat Ther On Controversies in Neuro-oncology = Front. Radiat. Ther. On. Controversies in The Treatment of Prostate Cancer = Front Radiat Ther On Controversies in The Treatment of Prostate Cancer = Front. Radiat. Ther. On. Controversies in The Treatment of Skin Neoplasias = Front Radiat Ther On Controversies in The Treatment of Skin Neoplasias = Front. Radiat. Ther. On. Controversies in Thrombolysis and Ami = Roy Soc Med Int Cong Controversies in Thrombolysis and Ami = Roy. Soc. Med. Int. Cong. Controversies in Treating Diabetes: Clinical and Research Aspects = Contemp Endocrinol S Controversies in Treating Diabetes: Clinical and Research Aspects = Contemp. Endocrinol. S. Controversies in Treatment of Lung Cancer = Front Radiat Ther On Controversies in Treatment of Lung Cancer = Front. Radiat. Ther. On. Controversies in Uro-oncology = Front Radiat Ther On Controversies in Uro-oncology = Front. Radiat. Ther. On. Controversies of Total Knee Arthroplasty = Bris Myer Z Controversies of Total Knee Arthroplasty = Bris. Myer. Z. Controversy in The Classroom: The Democratic Power of Discussion = Crit Soc Thought Controversy in The Classroom: The Democratic Power of Discussion = Crit. Soc. Thought. Convection in Fluids: A Rational Analysis and Asymptotic Modelling = Fluid Mech Appl Convection in Fluids: A Rational Analysis and Asymptotic Modelling = Fluid. Mech. Appl. Convective and Advective Heat Transfer in Geological Systems = Adv Geophys Env Mech Convective and Advective Heat Transfer in Geological Systems = Adv. Geophys. Env. Mech. Convective Heat and Mass Transfer in Porous Media = Nato Adv Sci I E-app Convective Heat and Mass Transfer in Porous Media = Nato. Adv. Sci. I. E-app. Convective Heat and Mass Transfer in Rotating Disk Systems = Lect Notes Appl Comp Convective Heat and Mass Transfer in Rotating Disk Systems = Lect. Notes. Appl. Comp. Convegni di studi sulla Magna Grecia = CMGr Converged Networking: Data and Real-time Communications Over Ip = Int Fed Info Proc Converged Networking: Data and Real-time Communications Over Ip = Int. Fed. Info. Proc. Convergence and Knowledge Processing in Multi-agent Systems = Adv Inform Knowl Pro Convergence and Knowledge Processing in Multi-agent Systems = Adv. Inform. Knowl. Pro. Convergence = Convergence Convergence in Ergodic Theory and Probability = Ohio St U M Convergence in Ergodic Theory and Probability = Ohio. St. U. M. Convergencia-revista De Ciencias Sociales = Convergencia Convergencia-revista De Ciencias Sociales = Convergencia. Converging Evidence in Language and Communication Research = Conv Evi Lang Commun Converging Evidence in Language and Communication Research = Conv. Evi. Lang. Commun. Converging Infrastructures = Publ Harv Infor Infr Converging Infrastructures = Publ. Harv. Infor. Infr. Conversion of Former Btw Facilities = Nato Sci S 1 Disarm Conversion of Former Btw Facilities = Nato. Sci. S. 1. Disarm. Conversion of Herman The Jew: Autobiography, History and Fiction in The Twelfth Century = Middle Ages Ser Conversion of Herman The Jew: Autobiography, History and Fiction in The Twelfth Century = Middle. Ages. Ser. Conversion of Liquid Rocket Fuels = Nato Sci Ser Ii Math Conversion of Liquid Rocket Fuels = Nato. Sci. Ser. Ii. Math. Conversion of Military Enterprises = Nato Asi S 4 Sci Tec Conversion of Military Enterprises = Nato. Asi. S. 4. Sci. Tec. Conversion to Judaism in Jewish Law = Stud Progr Halakh Conversion to Judaism in Jewish Law = Stud. Progr. Halakh. Conversion to Modernities: The Globalization of Christianity = Zones Relig Conversion to Modernities: The Globalization of Christianity = Zones. Relig. Converting A Nation: A Modern Inquisition and The Unification of Italy = Stud Eur Cult Hist Converting A Nation: A Modern Inquisition and The Unification of Italy = Stud. Eur. Cult. Hist. Convex Analysis and Monotone Operator Theory in Hilbert Spaces = Cms Books Math Convex Analysis and Monotone Operator Theory in Hilbert Spaces = Cms. Books. Math. Convex Functions and Their Applications: A Contemporary Approach = Cms Books Math Convex Functions and Their Applications: A Contemporary Approach = Cms. Books. Math. Convex Variational Problems: Linear, Nearly Linear and Anisotropic Growth Conditions = Lect Notes Math Convex Variational Problems: Linear, Nearly Linear and Anisotropic Growth Conditions = Lect. Notes. Math. Convivium = Convivium Convolution Equations and Singular Integral Operators = Oper Theory Adv Appl Convolution Equations and Singular Integral Operators = Oper. Theory. Adv. Appl. Convulsive Therapy = Convulsive Ther Convulsive Therapy = Convulsive Ther. Convulsive therapy = Convuls Ther Convulsive Therapy = Convuls. Ther. Cool Discs, Hot Flows: The Varying Faces of Accreting Compact Objects = Aip Conf Proc Cool Discs, Hot Flows: The Varying Faces of Accreting Compact Objects = Aip. Conf. Proc. Cooley law review / the Thomas M. Cooley Law School = Cooley Law Rev Cooleys Anemia = Ann Ny Acad Sci Cooleys Anemia = Ann. Ny. Acad. Sci. Cooley's Anemia Eighth Symposium = Ann Ny Acad Sci Cooley's Anemia Eighth Symposium = Ann. Ny. Acad. Sci. Cooley's Anemia: Ninth Symposium = Ann Ny Acad Sci Cooley's Anemia: Ninth Symposium = Ann. Ny. Acad. Sci. Cooling of Electronic Systems = Nato Adv Sci Inst Se Cooling of Electronic Systems = Nato. Adv. Sci. Inst. Se. Cool Power: Natural Ventilation Systems in Historic Buildings = Energ Sci Eng Tech Cool Power: Natural Ventilation Systems in Historic Buildings = Energ. Sci. Eng. Tech. Cool Stars, Stellar Systems, and The Sun - 8th Cambridge Workshop = Astr Soc P Cool Stars, Stellar Systems, and The Sun - 8th Cambridge Workshop = Astr. Soc. P. Cool Stars, Stellar Systems and The Sun = Aip Conf Proc Cool Stars, Stellar Systems and The Sun = Aip. Conf. Proc. Cool Stars, Stellar Systems, and The Sun = Astr Soc P Cool Stars, Stellar Systems, and The Sun = Astr. Soc. P. Cool Stars, Stellar Systems and The Sun, Proceedings = Astr Soc P Cool Stars, Stellar Systems and The Sun, Proceedings = Astr. Soc. P. Cool Universe: Observing Cosmic Dawn = Astr Soc P Cool Universe: Observing Cosmic Dawn = Astr. Soc. P. Cool-water Carbonates: Depositional Systems and Palaeoenvironmental Controls = Geol Soc Spec Publ Cool-water Carbonates: Depositional Systems and Palaeoenvironmental Controls = Geol. Soc. Spec. Publ. Cool-water Carbonates = Sepm Spec P Cool-water Carbonates = Sepm. Spec. P. Cooperador Dental = Coop. Dent. (B. Aires) Cooperating On Competition in Transatlantic Economic Relations: The Politics of Dispute Prevention = Int Polit Econ Ser Cooperating On Competition in Transatlantic Economic Relations: The Politics of Dispute Prevention = Int. Polit. Econ. Ser. Cooperation and conflict = Coop Confl Cooperation and Conflict = Coop Confl Cooperation and Conflict = Coop. Confl. Cooperation Between Universities in France and Quebec = Ser Int Cooperation Between Universities in France and Quebec = Ser. Int. Cooperation of Liver Cells in Health and Disease = Adv Anat Embryol Cel Cooperation of Liver Cells in Health and Disease = Adv. Anat. Embryol. Cel. Cooperative and Noncooperative Multi-level Programming = Oper Res Comput Sci Cooperative and Noncooperative Multi-level Programming = Oper. Res. Comput. Sci. Cooperative Banking in Europe: Case Studies = Palgr Mac Stud Bank Cooperative Banking in Europe: Case Studies = Palgr. Mac. Stud. Bank. Cooperative Behavior in Neural Systems = Aip Conf Proc Cooperative Behavior in Neural Systems = Aip. Conf. Proc. Cooperative Buildings = Lect Notes Comput Sc Cooperative Buildings = Lect. Notes. Comput. Sc. Cooperative Control and Optimization = Appl Optimizat Cooperative Control and Optimization = Appl. Optimizat. Cooperative Control Design: A Systematic, Passivity-based Approach = Commun Control Eng Cooperative Control Design: A Systematic, Passivity-based Approach = Commun. Control Eng. Cooperative Control = Lect Notes Contr Inf Cooperative Control = Lect. Notes. Contr. Inf. Cooperative Control: Models, Applications and Algorithms = Cooperat Syst Cooperative Control: Models, Applications and Algorithms = Cooperat. Syst. Cooperative Decision Making in Common Pool Situations = Lect Notes Econ Math Cooperative Decision Making in Common Pool Situations = Lect. Notes. Econ. Math. Cooperative Design, Visualization, and Engineering = Lect Notes Comput Sc Cooperative Design, Visualization, and Engineering = Lect. Notes. Comput. Sc. Cooperative Design, Visualization, and Engineering, Proceedings = Lect Notes Comput Sc Cooperative Design, Visualization, and Engineering, Proceedings = Lect. Notes. Comput. Sc. Cooperative Design, Visualization, and Engineering, Prpceedings = Lect Notes Comput Sc Cooperative Design, Visualization, and Engineering, Prpceedings = Lect. Notes. Comput. Sc. Cooperative Firms in Global Markets = Adv Econ Anal Partic Cooperative Firms in Global Markets = Adv. Econ. Anal. Partic. Cooperative Game Theory of Networks and Hierarchies = Theory Decis Ser C G Cooperative Game Theory of Networks and Hierarchies = Theory Decis. Ser. C. G. Cooperative Information Agents Iii, Proceedings = Lect Notes Artif Int Cooperative Information Agents Iii, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents Iv = Lect Notes Artif Int Cooperative Information Agents Iv = Lect. Notes. Artif. Int. Cooperative Information Agents Viii, Proceedings = Lect Notes Artif Int Cooperative Information Agents Viii, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents Vii, Proceedings = Lect Notes Artif Int Cooperative Information Agents Vii, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents V, Proceedings = Lect Notes Artif Int Cooperative Information Agents V, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents Xii, Proceedings = Lect Notes Artif Int Cooperative Information Agents Xii, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents Xi, Proceedings = Lect Notes Artif Int Cooperative Information Agents Xi, Proceedings = Lect. Notes. Artif. Int. Cooperative Information Agents X, Proceedings = Lect Notes Comput Sc Cooperative Information Agents X, Proceedings = Lect. Notes. Comput. Sc. Cooperative Information Systems = Coop Inform Syst Cooperative Information Systems = Coop. Inform. Syst. Cooperative Information Systems, Proceedings = Lect Notes Comput Sc Cooperative Information Systems, Proceedings = Lect. Notes. Comput. Sc. Cooperative Intelligent Robotics in Space Iii = P Soc Photo-opt Ins Cooperative Intelligent Robotics in Space Iii = P. Soc. Photo-opt. Ins. Cooperative Intelligent Robotics in Space Ii = P Soc Photo-opt Ins Cooperative Intelligent Robotics in Space Ii = P. Soc. Photo-opt. Ins. Cooperative Intelligent Robotics in Space = P Soc Photo-opt Ins Cooperative Intelligent Robotics in Space = P. Soc. Photo-opt. Ins. Cooperative Internet Computing = Kluwer Int Ser Eng C Cooperative Internet Computing = Kluwer. Int. Ser. Eng. C. Cooperative Internet Computing = Springer Int Ser Eng Cooperative Internet Computing = Springer. Int. Ser. Eng. Co-operative Security Arrangements in Europe = Euro Atl Secur St Co-operative Security Arrangements in Europe = Euro. Atl. Secur. St. Cooperative Systems: Control and Optimization = Lect Notes Econ Math Cooperative Systems: Control and Optimization = Lect. Notes. Econ. Math. Cooperative Systems = Cooperat Syst Cooperative Systems = Cooperat. Syst. Cooperative Systems Design = Fr Art Int Cooperative Systems Design = Fr. Art. Int. Cooperative Systems Design = Front Artif Intel Ap Cooperative Systems Design = Front. Artif. Intel. Ap. Cooperative Systems Design: Seamless Integration of Artifacts and Conversations - Enhanced Concepts of Infrastructure for Communication = Fr Art Int Cooperative Systems Design: Seamless Integration of Artifacts and Conversations - Enhanced Concepts of Infrastructure for Communication = Fr. Art. Int. Cooperative Wirless Communications = Wirel Netw Mob Commu Cooperative Wirless Communications = Wirel. Netw. Mob. Commu. Cooperative Work and Coordinative Practices: Contributions to The Conceptual Foundations of Computer-supported Cooperative Work = Comput Supp Coop Wor Cooperative Work and Coordinative Practices: Contributions to The Conceptual Foundations of Computer-supported Cooperative Work = Comput. Supp. Coop. Wor. Coopetition Strategy: Theory, Experiments and Cases = Routl Stud Glob Comp Coopetition Strategy: Theory, Experiments and Cases = Routl. Stud. Glob. Comp. Coordinated Activity in The Brain: Measurements and Relevance to Brain Function and Behavior = Spr Ser Comput Neuro Coordinated Activity in The Brain: Measurements and Relevance to Brain Function and Behavior = Spr. Ser. Comput. Neuro. Coordinated Activity in The Brain = Spr Ser Comput Neuro Coordinated Activity in The Brain = Spr. Ser. Comput. Neuro. Coordinated Measurements of Magnetospheric Processes = Adv Space Res Coordinated Measurements of Magnetospheric Processes = Adv. Space. Res. Coordinated Measurements of Magnetospheric Processes = Adv Space Res-series Coordinated Measurements of Magnetospheric Processes = Adv. Space. Res-series. Coordination and Communication Using Signs: Studies in Organisational Semiotics 2 = Info Org Design Ser Coordination and Communication Using Signs: Studies in Organisational Semiotics 2 = Info. Org. Design. Ser. Coordination and Information = Nber Conf R Coordination and Information = Nber. Conf. R. Coordination Chemistry = Acs Sym Ser Coordination Chemistry = Acs. Sym. Ser. Coordination Chemistry Reviews = Coord. Chem. Rev. Coordination Chemistry Reviews = Coordin Chem Rev Coordination Chemistry Reviews = Coordin. Chem. Rev. Coordination Chemistry = Struct Bond Coordination Chemistry = Struct. Bond. Co-ordination in Artificial Agent Societies = Lect Notes Artif Int Co-ordination in Artificial Agent Societies = Lect. Notes. Artif. Int. Coordination Languages and Models = Lect Notes Comput Sc Coordination Languages and Models = Lect. Notes. Comput. Sc. Coordination Languages and Models, Proceedings = Lect Notes Comput Sc Coordination Languages and Models, Proceedings = Lect. Notes. Comput. Sc. Coordination Models and Languages, Proceedings = Lect Notes Comput Sc Coordination Models and Languages, Proceedings = Lect. Notes. Comput. Sc. Coordination: Neural, Behavioral and Social Dynamics = Und Com Sys Coordination: Neural, Behavioral and Social Dynamics = Und. Com. Sys. Coordination: Neural, Behavioral and Social Dynamics = Underst Complex Syst Coordination: Neural, Behavioral and Social Dynamics = Underst. Complex. Syst. Coordination, Organizations, Institutions, and Norms in Agent Systems Iii = Lect Notes Artif Int Coordination, Organizations, Institutions, and Norms in Agent Systems Iii = Lect. Notes. Artif. Int. Coordination, Organizations, Institutions, and Norms in Agent Systems Ii = Lect Notes Artif Int Coordination, Organizations, Institutions, and Norms in Agent Systems Ii = Lect. Notes. Artif. Int. Coordination, Organizations, Institutions and Norms in Agent Systems V = Lect Notes Artif Int Coordination, Organizations, Institutions and Norms in Agent Systems V = Lect. Notes. Artif. Int. Coordination, Organizations, Institutions, and Norms in Multi-agent Systems = Lect Notes Artif Int Coordination, Organizations, Institutions, and Norms in Multi-agent Systems = Lect. Notes. Artif. Int. Coordination Relations in The Languages of Europe and Beyond = Empir Approach Lang Coordination Relations in The Languages of Europe and Beyond = Empir. Approach. Lang. Coordination Technology for Collaborative Applications = Lect Notes Comput Sc Coordination Technology for Collaborative Applications = Lect. Notes. Comput. Sc. Coordinators' notebook : an international resource for early childhood development = Coord Noteb COO Reports = COO Rep. COO [reports]. U.S. Atomic Energy Commission = COO Rep Copayments and The Demand for Prescription Drugs = Rout Int Stud Health Copayments and The Demand for Prescription Drugs = Rout. Int. Stud. Health. Copd: A Guide to Diagnosis and Clinical Management = Respir Med Ser Copd: A Guide to Diagnosis and Clinical Management = Respir. Med. Ser. COPD = COPD Copd Is/is Not A Systemic Disease? = Pub Health Cent Copd Is/is Not A Systemic Disease? = Pub. Health. Cent. Copd Is/is Not A Systemic Disease? = Public Health 21st C Copd Is/is Not A Systemic Disease? = Public. Health. 21st. C. Copd-journal of Chronic Obstructive Pulmonary Disease = Copd Copd-journal of Chronic Obstructive Pulmonary Disease = Copd. Copeia = Copeia Copenhagen Studies in Translation = Copen S Tr Copenhagen Studies in Translation = Copen. S. Tr. Coping With Accession to The European Union: New Modes of Environmental Governance = Palgrave Stud Eur Un Coping With Accession to The European Union: New Modes of Environmental Governance = Palgrave. Stud. Eur. Un. Coping With Cancer and Beyond : Cancer Treatment & Mental Health = Publ Hdi Coping With Cancer and Beyond : Cancer Treatment & Mental Health = Publ. Hdi. Coping With Drought Risk in Agriculture and Water Supply Systems = Adv Nat Tech Haz Res Coping With Drought Risk in Agriculture and Water Supply Systems = Adv. Nat. Tech. Haz. Res. Coping With Flash Floods = Nato Sci S Prt 2 Env Coping With Flash Floods = Nato. Sci. S. Prt. 2. Env. Coping With Flexibility and Legitimacy After Amsterdam = Curr Europe Iss Coping With Flexibility and Legitimacy After Amsterdam = Curr. Europe. Iss. Coping With Floods = Nato Adv Sci Inst Se Coping With Floods = Nato. Adv. Sci. Inst. Se. Coping With Institutional Order Flow = Zi Sch Bus Fin Ma Coping With Institutional Order Flow = Zi. Sch. Bus. Fin. Ma. Coping With Interference in Wireless Networks = Signals Commun Techn Coping With Interference in Wireless Networks = Signals. Commun. Techn. Coping With The Complexity of Economics = Ne Econ Win Coping With The Complexity of Economics = Ne. Econ. Win. Coping With Uncertainty: Modeling and Policy Issues = Lect Notes Econ Math Coping With Uncertainty: Modeling and Policy Issues = Lect. Notes. Econ. Math. Coping With Water Deficiency: From Research to Policymaking With Examples From Southern Europe, The Mediterranean and Developing Countries = Environ Policy Coping With Water Deficiency: From Research to Policymaking With Examples From Southern Europe, The Mediterranean and Developing Countries = Environ. Policy. Copolymers in The Preparation of Parental Drug Delivery Systems = Polym Sci Technol Se Copolymers in The Preparation of Parental Drug Delivery Systems = Polym. Sci. Technol. Se. Copper Bioavailability and Metabolism = Adv Exp Med Biol Copper Bioavailability and Metabolism = Adv. Exp. Med. Biol. Copper-catalyzed Multi-component Reactions: Synthesis of Nitrogen-containing Polycyclic Compounds = Springer Theses-reco Copper-catalyzed Multi-component Reactions: Synthesis of Nitrogen-containing Polycyclic Compounds = Springer. Theses-reco. Copper-containing Proteins = Adv Protein Chem Copper-containing Proteins = Adv. Protein. Chem. Copper Empire: Mining and The Colonial State in Northern Rhodesia, C.1930-1964 = Camb Imp Post-col St Copper Empire: Mining and The Colonial State in Northern Rhodesia, C.1930-1964 = Camb. Imp. Post-col. St. Copper Transport and Its Disorders = Adv Exp Med Biol Copper Transport and Its Disorders = Adv. Exp. Med. Biol. Coptic Studies On The Threshold of A New Millennium, Vols I and Ii = Orient Lovan Anal Coptic Studies On The Threshold of A New Millennium, Vols I and Ii = Orient. Lovan. Anal. Copyright and Creative Freedom: A Study of Post-socialist Law Reform = Routl Stud Int Law Copyright and Creative Freedom: A Study of Post-socialist Law Reform = Routl. Stud. Int. Law Coral Reefs: Biology, Threats and Restoration = Oceanogr Ocean Eng Coral Reefs: Biology, Threats and Restoration = Oceanogr. Ocean. Eng. Coral Reefs = Coral Reefs Corduba archaeologica = Corduba Core journals in pediatrics = Core J Pediatr Core Level Spectroscopy of Solids = Adv Condens Mat Sci Core Level Spectroscopy of Solids = Adv. Condens. Mat. Sci. Corelli Studies V = Quad Riv It Corelli Studies V = Quad. Riv. It. Core-log Integration = Geol Soc Spec Publ Core-log Integration = Geol. Soc. Spec. Publ. Core-mantle Boundary Region = Geodynamics Core-mantle Boundary Region = Geodynamics. Core of Economies With Asymmetric Information = Lect Notes Econ Math Core of Economies With Asymmetric Information = Lect. Notes. Econ. Math. Cores to Clusters = Astrophys Space Sc L Cores to Clusters = Astrophys. Space. Sc. L. Cor et vasa = Cor Vasa Cor et Vasa = Cor Vasa Cor Et Vasa = Cor Vasa Corinthian Correspondence = Bib Eph The Corinthian Correspondence = Bib. Eph. The. Corinth. Results of Excavations Conducted by the American School of Classical Studies at Athens = Corinth Cormac Mccarthy: American Canticles = Am Lit Read Twenty-f Cormac Mccarthy: American Canticles = Am. Lit. Read. Twenty-f. Corn Crop Production: Growth, Fertilization and Yield = Agr Issues Policies Corn Crop Production: Growth, Fertilization and Yield = Agr. Issues. Policies. Cornea and External Eye Disease: Corneal Allotransplantation, Allergic Disease and Trachoma = Essent Ophthalmol Cornea and External Eye Disease: Corneal Allotransplantation, Allergic Disease and Trachoma = Essent. Ophthalmol. Cornea and External Eye Disease = Essent Ophthalmol Cornea and External Eye Disease = Essent. Ophthalmol. Cornea=Cornea;; Cornea = Cornea Corneal Dystrophies = Dev Ophthalmol Corneal Dystrophies = Dev. Ophthalmol. Cornell East Asia Series = Cornell E Asia Ser Cornell East Asia Series = Cornell E. Asia Ser. Cornell Hospitality Quarterly = Cornell Hosp Q Cornell Hospitality Quarterly = Cornell Hosp. Q. Cornell Hotel and Restaurant Administration Quarterly = Cornell Hotel Rest A Cornell Hotel and Restaurant Administration Quarterly = Cornell Hotel Rest. A. Cornell Hotel and Restaurant Administration Quarterly = Cornell Hotel Restaur. Adm. Q. Cornell international law journal = Cornell Int Law J Cornell International Law Journal = Cornell Int Law J Cornell International Law Journal = Cornell Int. Law J. Cornell journal of law and public policy = Cornell J Law Public Policy Cornell Journal of Law and Public Policy = Cornell J. Law Public Policy Cornell Journal of Social Relations = Cornell J Soc Relat Cornell Journal of Social Relations = Cornell J. Soc. Relat. Cornell Law Quarterly = Cornell Law Q Cornell Law Quarterly = Cornell Law Q. Cornell law review = Cornell Law Rev Cornell Law Review = Cornell Law Rev Cornell Law Review = Cornell Law Rev. Cornell magazine (Ithaca, N.Y. : 1993) = Cornell Mag Cornell Plantations = Cornell Plant. Cornell Veterinarian = Cornell Vet Cornell Veterinarian = Cornell Vet. Cornerstones = Cornerstones Cornwallis Group Ix: Analysis for Stabilization and Counter-terrorist Operations = Cornwallis Group Ser Cornwallis Group Ix: Analysis for Stabilization and Counter-terrorist Operations = Cornwallis Group Ser. Cornwallis Group Series = Cornwallis Group Ser Cornwallis Group Series = Cornwallis Group Ser. Cornwallis Group X: Analysis for New and Emerging Societal Conflicts = Cornwallis Group Ser Cornwallis Group X: Analysis for New and Emerging Societal Conflicts = Cornwallis Group Ser. Corolla Londiniensis = CL Corona and Solar Wind Near Minimum Activity - Fifth Soho Workshop = Esa Sp Publ Corona and Solar Wind Near Minimum Activity - Fifth Soho Workshop = Esa. Sp. Publ. Corona Charging of Synthetic Polymer Films = Polym Sci Technol Se Corona Charging of Synthetic Polymer Films = Polym. Sci. Technol. Se. Coronal and Stellar Mass Ejections = Iau Symp P Series Coronal and Stellar Mass Ejections = Iau. Symp. P. Series. Coronal Mass Ejections and Solar Particle Events in Solar Cycle 23 = Adv Space Res Coronal Mass Ejections and Solar Particle Events in Solar Cycle 23 = Adv. Space. Res. Coronal Mass Ejections and Solar Particle Events in Solar Cycle 23 = Adv Space Res-series Coronal Mass Ejections and Solar Particle Events in Solar Cycle 23 = Adv. Space. Res-series. Coronal Mass Ejections: An Introduction = Astrophys Space Sc L Coronal Mass Ejections: An Introduction = Astrophys. Space. Sc. L. Coronal Structure and Dynamics Near Solar Activity Minimum = Adv Space Res Coronal Structure and Dynamics Near Solar Activity Minimum = Adv. Space. Res. Coronal Structure and Dynamics Near Solar Activity Minimum = Adv Space Res-series Coronal Structure and Dynamics Near Solar Activity Minimum = Adv. Space. Res-series. Coronary Artery Bypasses = Cardiol Res Clin Dev Coronary Artery Bypasses = Cardiol. Res. Clin. Dev. Coronary artery disease = Coron Artery Dis Coronary Artery Disease=Coron Artery Dis;; Coronary Artery Disease = Coron. Artery Dis. Coronary Artery Disease = Coronary Artery Dis Coronary Artery Disease = Coronary Artery Dis. Coronary Bypass Surgery in The Elderly = Dev Cardiovasc Med Coronary Bypass Surgery in The Elderly = Dev. Cardiovasc. Med. Coronary Circulation and Myocardial Ischemia = Upd Int Car Coronary Circulation and Myocardial Ischemia = Upd. Int. Car. Coronary Microcirculation During Ischaemia and Reperfusion = Alfred Benzon Symp S Coronary Microcirculation During Ischaemia and Reperfusion = Alfred. Benzon. Symp. S. Coronary Risk Factors Revisited = Int Congr Ser Coronary Risk Factors Revisited = Int. Congr. Ser. Coronary Vascular System in Angina Pectoris = Roy Soc Med Int Cong Coronary Vascular System in Angina Pectoris = Roy. Soc. Med. Int. Cong. Coronaviruses = Adv Exp Med Biol Coronaviruses = Adv. Exp. Med. Biol. Coronaviruses and Arteriviruses = Adv Exp Med Biol Coronaviruses and Arteriviruses = Adv. Exp. Med. Biol. Coronaviruses and Their Diseases = Adv Exp Med Biol Coronaviruses and Their Diseases = Adv. Exp. Med. Biol. Coronavirus Replication and Reverse Genetics = Curr Top Microbiol Coronavirus Replication and Reverse Genetics = Curr. Top. Microbiol. Corpoate Governance in Less Developed and Emerging Economies = Res Account Emerg Ec Corpoate Governance in Less Developed and Emerging Economies = Res. Account. Emerg. Ec. Corpora Across The Centuries = Lang Comput Corpora Across The Centuries = Lang. Comput. Corpora in Cognitive Linguistics: Corpus-based Approaches to Syntax and Lexis = Trends Linguist-stud Corpora in Cognitive Linguistics: Corpus-based Approaches to Syntax and Lexis = Trends. Linguist-stud. Corpora in The Foreign Language Classroom = Lang Comput Corpora in The Foreign Language Classroom = Lang. Comput. Corporal Hitler and The Great War 1914-1918: The List Regiment = Cass Mil Stud Corporal Hitler and The Great War 1914-1918: The List Regiment = Cass. Mil. Stud. Corpora: Pragmatics and Discourse = Lang Comput Corpora: Pragmatics and Discourse = Lang. Comput. Corporate and Industry Strategies for Europe = Adv Ser Manage Corporate and Industry Strategies for Europe = Adv. Ser. Manage. Corporate and Social Transformation of Money and Banking: Breaking The Serfdom = Palgr Mac Stud Bank Corporate and Social Transformation of Money and Banking: Breaking The Serfdom = Palgr. Mac. Stud. Bank. Corporate commentary = Corp Comment Corporate Commentary = Corp. Comment. Corporate Control and Enterprise Reform in China = Contrib Econ Corporate Control and Enterprise Reform in China = Contrib. Econ. Corporate Criminal Liability: Emergence, Convergence, and Risk = Ius Gentium-comp Per Corporate Criminal Liability: Emergence, Convergence, and Risk = Ius. Gentium-comp. Per. Corporate Entrepreneurship and Venturing = Int Stud Entrep Corporate Entrepreneurship and Venturing = Int. Stud. Entrep. Corporate Foresight: Towards A Maturity Model for The Future Orientation of A Firm = Contrib Manag Sci Corporate Foresight: Towards A Maturity Model for The Future Orientation of A Firm = Contrib. Manag. Sci. Corporate Globalization Through Mergers and Acquisitions = Inv Can Res Corporate Globalization Through Mergers and Acquisitions = Inv. Can. Res. Corporate Governance Adrift: A Critique of Shareholder Value = St-gobain Ctr Econ S Corporate Governance Adrift: A Critique of Shareholder Value = St-gobain. Ctr. Econ. S. Corporate Governance and Development: Reform, Financial Systems and Legal Frameworks = Crc Ser Compet Regul Corporate Governance and Development: Reform, Financial Systems and Legal Frameworks = Crc. Ser. Compet. Regul. Corporate Governance and Firm Performance = Adv Financ Econ Corporate Governance and Firm Performance = Adv. Financ. Econ. Corporate Governance and Firm Value: Econometric Modelling and Analysis of Emerging and Developed Financial Markets = Int Bus Manag-ser Corporate Governance and Firm Value: Econometric Modelling and Analysis of Emerging and Developed Financial Markets = Int. Bus. Manag-ser. Corporate Governance and Resource Security in China = Rout Stud Corpor Gov Corporate Governance and Resource Security in China = Rout. Stud. Corpor. Gov. Corporate Governance-an International Review = Corp Gov Corporate Governance-an International Review = Corp. Gov. Corporate Governance-an International Review = Corp Gov-oxford Corporate Governance-an International Review = Corp. Gov-oxford. Corporate Governance Around The World = Rout Stud Corpor Gov Corporate Governance Around The World = Rout. Stud. Corpor. Gov. Corporate Governance: Does Any Size Fit = Adv Pub Int Corporate Governance: Does Any Size Fit = Adv. Pub. Int. Corporate Governance: Does Any Size Fit = Adv Public Inter Acc Corporate Governance: Does Any Size Fit = Adv. Public. Inter. Acc. Corporate Governance, Finance and The Technological Advantage of Nations = Routl Stud Glob Comp Corporate Governance, Finance and The Technological Advantage of Nations = Routl. Stud. Glob. Comp. Corporate Power in Global Agrifood Governance = Food Health Environ Corporate Power in Global Agrifood Governance = Food. Health. Environ. Corporate Rescue Law: An Anglo-american Perspective = Corp Glob Law Corporate Rescue Law: An Anglo-american Perspective = Corp. Glob. Law. Corporate Restructuring and Governance in Transition Economies = Stud Econ Transit Corporate Restructuring and Governance in Transition Economies = Stud. Econ. Transit. Corporate Safety Compliance: Osha, Ethics, and The Law = Occup Saf Health Gui Corporate Safety Compliance: Osha, Ethics, and The Law = Occup. Saf. Health. Gui. Corporate Social Responsibility and Environmental Management = Corp Soc Resp Env Ma Corporate Social Responsibility and Environmental Management = Corp. Soc. Resp. Env. Ma. Corporate Social Responsibility and Regulatory Governance -towards Inclusive Development = Int Polit Econ Ser Corporate Social Responsibility and Regulatory Governance -towards Inclusive Development = Int. Polit. Econ. Ser. Corporate Social Responsibility As An International Strategy = Contrib Econ Corporate Social Responsibility As An International Strategy = Contrib. Econ. Corporate Social Responsibility in Asia = Routl Int Bus Asia Corporate Social Responsibility in Asia = Routl. Int. Bus. Asia Corporate Soldiers and International Security = Contemp Secur Stud Corporate Soldiers and International Security = Contemp. Secur. Stud. Corporate Strategy: A Feminist Perspective = Routl Res Organ Beh Corporate Strategy: A Feminist Perspective = Routl. Res. Organ. Beh. Corporate Sustainability As A Challenge for Comprehensive Management = Contrib Manag Sci Corporate Sustainability As A Challenge for Comprehensive Management = Contrib. Manag. Sci. Corporations Globalisation and The Law = Corp Glob Law Corporations Globalisation and The Law = Corp. Glob. Law Corporeal Imagination: Signifying The Holy in Late Ancient Christianity = Divin Reread Late An Corporeal Imagination: Signifying The Holy in Late Ancient Christianity = Divin. Reread. Late An. Corps Ecrit = Corps Ecrit Corps Medical = Corps Med. (Ettelbruck) Corpus Analysis: Language Structure and Language Use = Lang Comput Corpus Analysis: Language Structure and Language Use = Lang. Comput. Corpus antiquitatum Aegyptiacarum = CAA Corpus-assisted Discourse Studies On The Iraq Conflict = Routl Adv Corpus Lin Corpus-assisted Discourse Studies On The Iraq Conflict = Routl. Adv. Corpus. Lin. Corpus-based Approaches to Metaphor and Metonymy = Trends Linguist-stud Corpus-based Approaches to Metaphor and Metonymy = Trends. Linguist-stud. Corpus-based Methods in Language and Speech Processing = Text Speech Lang Tec Corpus-based Methods in Language and Speech Processing = Text. Speech Lang. Tec. Corpus-based Studies in English = Lang Comput Corpus-based Studies in English = Lang. Comput. Corpus der minoischen und mykenischen Siegel = CMS Corpus Der Minoischen Und Mykenischen Siegel = Corp Mino Myken Sieg Corpus Der Minoischen Und Mykenischen Siegel = Corp. Mino. Myken. Sieg. Corpus Fontium Historiae Byzantinae Series Berolinensis = Corpus Font Hist Byz Corpus Fontium Historiae Byzantinae Series Berolinensis = Corpus Font. Hist. Byz. Corpus inscriptionum Atticarum = CIA Corpus inscriptionum Etruscarum = CIE Corpus inscriptionum Graecarum = CIG Corpus inscriptionum Latinarum = CIL Corpus inscriptionum Semiticarum = CIS Corpus inscriptionum Semiticarum. Pars quarta. Inscriptiones himyariticas et sabaeas continens = CIH Corpus-linguistic Applications Current Studies, New Directions = Lang Comput Corpus-linguistic Applications Current Studies, New Directions = Lang. Comput. Corpus Linguistics 25 Years On = Lang Comput Corpus Linguistics 25 Years On = Lang. Comput. Corpus Linguistics and Beyond = Costerus Es Corpus Linguistics and Beyond = Costerus. Es. Corpus Linguistics and Linguistic Theory = Corpus Linguist Ling Corpus Linguistics and Linguistic Theory = Corpus Linguist. Ling. Corpus Linguistics and The Web = Lang Comput Corpus Linguistics and The Web = Lang. Comput. Corpus Linguistics Around The World = Lang Comput Corpus Linguistics Around The World = Lang. Comput. Corpus Linguistics Beyond The Word: Corpus Research From Phrase to Discourse = Lang Comput Corpus Linguistics Beyond The Word: Corpus Research From Phrase to Discourse = Lang. Comput. Corpus Linguistics, Hard and Soft = Lang Comput Corpus Linguistics, Hard and Soft = Lang. Comput. Corpus Linguistics, Part 1 = Handb Sprach Kommun Corpus Linguistics, Part 1 = Handb. Sprach. Kommun. Corpus Linguistics, Part 2 = Handb Sprach Kommun Corpus Linguistics, Part 2 = Handb. Sprach. Kommun. Corpus Linguistics: Refinements and Reassessments = Lang Comput Corpus Linguistics: Refinements and Reassessments = Lang. Comput. Corpus of Illuminated Manuscripts = Corpus Illuminat Ms Corpus of Illuminated Manuscripts = Corpus Illuminat. Ms. Corpus of Indus Seals and Inscriptions, Vol 3: New Material, Untraced Objects, and Collections Outside India and Pakistan, Pt 1: Mohenjo-daro and Harappa = Suom Tiedeakat Toim Corpus of Indus Seals and Inscriptions, Vol 3: New Material, Untraced Objects, and Collections Outside India and Pakistan, Pt 1: Mohenjo-daro and Harappa = Suom. Tiedeakat. Toim. Corpus Papyrorum Raineri = Corpus Papyr Rainer Corpus Papyrorum Raineri = Corpus Papyr. Rainer. Corpus signorum Imperii Romani = CSIR Corpus speculorum Etruscorum = CSE Corpus vasorum antiquorum = CVA CorrectCare = Correctcare Correct Hardware Design and Verification Methods = Lect Notes Comput Sc Correct Hardware Design and Verification Methods = Lect. Notes. Comput. Sc. Correct Hardware Design and Verification Methods, Proceedings = Lect Notes Comput Sc Correct Hardware Design and Verification Methods, Proceedings = Lect. Notes. Comput. Sc. Corrective and Social Psychiatry and Journal of Applied Behavior Therapy = Correct Soc Psychiat Corrective and Social Psychiatry and Journal of Applied Behavior Therapy = Correct. Soc. Psychiat. Corrective and Social Psychiatry and Journal of Behavior Technology Methods and Therapy = Correct Soc Psychiat Corrective and Social Psychiatry and Journal of Behavior Technology Methods and Therapy = Correct. Soc. Psychiat. Corrective and social psychiatry and journal of behavior technology methods and therapy = Correct Soc Psych J Behav Tech Methods Ther Corrective Psychiatry & Journal of Social Therapy = Correct Psychiat J S Corrective Psychiatry & Journal of Social Therapy = Correct. Psychiat. J. S. Correct Models of Parallel Computing = Concur Syst Engn Ser Correct Models of Parallel Computing = Concur. Syst. Engn. Ser. Correct System Design = Lect Notes Comput Sc Correct System Design = Lect. Notes. Comput. Sc. Correlated Data Analysis : Modeling, Analytics, and Applications = Springer Ser Stat Correlated Data Analysis : Modeling, Analytics, and Applications = Springer. Ser. Stat. Correlation and Localization = Top Curr Chem Correlation and Localization = Top. Curr. Chem. Correlation and Polarization in Photonic, Electronic, and Atomic Collisions = Aip Conf Proc Correlation and Polarization in Photonic, Electronic, and Atomic Collisions = Aip. Conf. Proc. Correlation Effects in Low-dimensional Electron Systems = Springer Series Soli Correlation Effects in Low-dimensional Electron Systems = Springer. Series. Soli. Correlations and Clustering Phenomena in Subatomic Physics = Nato Adv Sci I B-phy Correlations and Clustering Phenomena in Subatomic Physics = Nato. Adv. Sci. I. B-phy. Correlations and Connectivity = Nato Adv Sci I E-app Correlations and Connectivity = Nato. Adv. Sci. I. E-app. Correlations and Fluctuations in Relativistic Nuclear Collisions = J Phys Conf Ser Correlations and Fluctuations in Relativistic Nuclear Collisions = J. Phys. Conf. Ser. Correlations and Polarization in Electronic and Atomic Collisions and ( E,2e ) Reactions = Inst Phys Conf Ser Correlations and Polarization in Electronic and Atomic Collisions and ( E,2e ) Reactions = Inst. Phys. Conf. Ser. Correlations, Polarization, and Ionization in Atomic Systems = Aip Conf Proc Correlations, Polarization, and Ionization in Atomic Systems = Aip. Conf. Proc. Correo poblacional y de la salud / Centro de Estudios de Poblacion y Paternidad Responsable = Correo Poblac Salud Correspondances En Metabolismes Hormones Diabetes Et Nutrition = Corresp Mhdn Correspondances En Metabolismes Hormones Diabetes Et Nutrition = Corresp. Mhdn. Correspondence : Studies in Literature, History, and The Arts in Nineteenth-century France = Faux Titre Correspondence : Studies in Literature, History, and The Arts in Nineteenth-century France = Faux. Titre. Corrosion and Corrosion Control in Saltwater Environments = Elec Soc S Corrosion and Corrosion Control in Saltwater Environments = Elec. Soc. S. Corrosion and Corrosion Protection = Elec Soc S Corrosion and Corrosion Protection = Elec. Soc. S. Corrosion and Oxygen Control = Fzka Tech Umw Wis B Corrosion and Oxygen Control = Fzka. Tech. Umw. Wis. B. Corrosion and Protection of Light Metal Alloys = Elec Soc S Corrosion and Protection of Light Metal Alloys = Elec. Soc. S. Corrosion and Reliability of Electronic Materials and Devices, Proceedings = Elec Soc S Corrosion and Reliability of Electronic Materials and Devices, Proceedings = Elec. Soc. S. Corrosion By Carbon and Nitrogen: Metal Dusting, Carburisation and Nitridation = Eur Fed Corros Publ Corrosion By Carbon and Nitrogen: Metal Dusting, Carburisation and Nitridation = Eur. Fed. Corros. Publ. Corrosion Control in The Aerospace Industry = Woodhead Publ Mater Corrosion Control in The Aerospace Industry = Woodhead. Publ. Mater. Corrosion = Corrosion Corrosion Engineering Science and Technology = Corros Eng Sci Techn Corrosion Engineering Science and Technology = Corros. Eng. Sci. Techn. Corrosion Engineering, Science and Technology = Corros. Eng., Sci. Technol. Corrosion Forms and Control for Infrastructure = Am Soc Test Mater Corrosion Forms and Control for Infrastructure = Am. Soc. Test. Mater. Corrosion (Houston, TX, United States) = Corrosion (Houston, TX, U. S.) Corrosion Induced By Microorganisms in Natural Environment = Oceanis S D Corrosion Induced By Microorganisms in Natural Environment = Oceanis. S. D. Corrosion in Natural Waters = Am Soc Test Mater Corrosion in Natural Waters = Am. Soc. Test. Mater. Corrosion in Power Plants = Vdi Bericht Corrosion in Power Plants = Vdi. Bericht. Corrosion in Refineries = Eur Fed Corros Publ Corrosion in Refineries = Eur. Fed. Corros. Publ. Corrosion in The Military Ii = Adv Mater Res-switz Corrosion in The Military Ii = Adv. Mater. Res-switz. Corrosion in The Military Ii = Adv Mat Res Corrosion in The Military Ii = Adv. Mat. Res. Corrosion Issues in Light Water Reactors: Stress Corrosion Cracking = Eur Fed Corros Publ Corrosion Issues in Light Water Reactors: Stress Corrosion Cracking = Eur. Fed. Corros. Publ. Corrosion & Materials = Corros. Mater. Corrosion of Advanced Ceramics = Key Eng Mat Corrosion of Advanced Ceramics = Key. Eng. Mat. Corrosion of Advanced Ceramics = Key Eng Mater Corrosion of Advanced Ceramics = Key. Eng. Mater. Corrosion of Advanced Ceramics = Nato Adv Sci Inst Se Corrosion of Advanced Ceramics = Nato. Adv. Sci. Inst. Se. Corrosion of Electronic and Magnetic Materials = Am Soc Test Mater Corrosion of Electronic and Magnetic Materials = Am. Soc. Test. Mater. Corrosion of Magnesium Alloys = Woodhead Publ Mater Corrosion of Magnesium Alloys = Woodhead. Publ. Mater. Corrosion of Reinforcement in Concrete: Mechanisms, Monitoring, Inhibitors and Rehabilitation Techniques = Eur Fed Corros Publ Corrosion of Reinforcement in Concrete: Mechanisms, Monitoring, Inhibitors and Rehabilitation Techniques = Eur. Fed. Corros. Publ. Corrosion of Reinforcement in Concrete: Monitoring, Prevention and Rehabilitation = Eur Fed Corr Publ Corrosion of Reinforcement in Concrete: Monitoring, Prevention and Rehabilitation = Eur. Fed. Corr. Publ. Corrosion Prevention & Control = Corros Prevent Contr Corrosion Prevention & Control = Corros. Prevent. Contr. Corrosion, Processes and Advanced Materials in Industry = Adv Mat Res Corrosion, Processes and Advanced Materials in Industry = Adv. Mat. Res. Corrosion Protection: Processes, Management and Technologies = Mater Sci Technol Corrosion Protection: Processes, Management and Technologies = Mater. Sci. Technol. Corrosion Reviews = Corros Rev Corrosion Reviews = Corros. Rev. Corrosion Science: A Retrospective and Current Status in Honor of Robert P Frankenthal = Elec Soc S Corrosion Science: A Retrospective and Current Status in Honor of Robert P Frankenthal = Elec. Soc. S. Corrosion Science = Corros Sci Corrosion Science = Corros. Sci. Corrosion Tests and Standards: Application and Interpretation, 2nd Edition = Astm Man Ser Corrosion Tests and Standards: Application and Interpretation, 2nd Edition = Astm. Man. Ser. Corrosion Traitements Protection Finition = Corros Trait Corrosion Traitements Protection Finition = Corros. Trait. Corrosion-under-insulation (cui) Guidelines = Woodhead Publ Mater Corrosion-under-insulation (cui) Guidelines = Woodhead. Publ. Mater. Corrosion, Wear, Fatigue, and Reliability of Ceramics = Ceram Eng Sci Proc Corrosion, Wear, Fatigue, and Reliability of Ceramics = Ceram. Eng. Sci. Proc. Corrosive Damage in Power Plants = Vdi Bericht Corrosive Damage in Power Plants = Vdi. Bericht. Corruption and Development: The Anti-corruption Campaigns = Palgrave Stud Dev Corruption and Development: The Anti-corruption Campaigns = Palgrave. Stud. Dev. Corruption and Money Laundering = Palgr Ser Asian Gov Corruption and Money Laundering = Palgr. Ser. Asian. Gov. Corruption, Development and Institutional Design = Int Econ Assoc Serie Corruption, Development and Institutional Design = Int. Econ. Assoc. Serie. Cortex; a journal devoted to the study of the nervous system and behavior = Cortex Cortex=Cortex;; Cortex = Cortex Cortical Function: A View From The Thalamus = Prog Brain Res Cortical Function: A View From The Thalamus = Prog. Brain. Res. Corticobasal Degeneration and Related Disorders = Adv Neurol Corticobasal Degeneration and Related Disorders = Adv. Neurol. Corticofugal Modulation of Sensory Information = Adv Anat Embryol Cel Corticofugal Modulation of Sensory Information = Adv. Anat. Embryol. Cel. Corticotropin-releasing Factor and Cytokines: Role in The Stress Response = Ann Ny Acad Sci Corticotropin-releasing Factor and Cytokines: Role in The Stress Response = Ann. Ny. Acad. Sci. Corticotropin-releasing Factor = Ciba F Symp Corticotropin-releasing Factor = Ciba. F. Symp. Cosmetic Nanotechnology: Polymers and Colloids in Cosmetics = Acs Sym Ser Cosmetic Nanotechnology: Polymers and Colloids in Cosmetics = Acs. Sym. Ser. Cosmetics & Toiletries = Cosmet Toiletries Cosmetics & Toiletries = Cosmet. Toiletries Cosmetologica = Cosmetologica Cosmets in The Post-halley Era, Vols 1 and 2 = Astrophys Space Sc L Cosmets in The Post-halley Era, Vols 1 and 2 = Astrophys. Space. Sc. L. Cosmic Abundances As Records of Stellar Evolution and Nucleosynthesis in Honor of David L. Lambert = Astr Soc P Cosmic Abundances As Records of Stellar Evolution and Nucleosynthesis in Honor of David L. Lambert = Astr. Soc. P. Cosmic Abundances = Astr Soc P Cosmic Abundances = Astr. Soc. P. Cosmical Magnetism = Nato Adv Sci Inst Se Cosmical Magnetism = Nato. Adv. Sci. Inst. Se. Cosmic Chemical Evolution = Iau Symp Cosmic Chemical Evolution = Iau. Symp. Cosmic Dust Connection = Nato Adv Sci I C-mat Cosmic Dust Connection = Nato. Adv. Sci. I. C-mat. Cosmic Dust - Near and Far = Astr Soc P Cosmic Dust - Near and Far = Astr. Soc. P. Cosmic Dynamo = Iau Symp Cosmic Dynamo = Iau. Symp. Cosmic Evolution and Galaxy Formation: Structure, Interactions, and Feedback = Astr Soc P Cosmic Evolution and Galaxy Formation: Structure, Interactions, and Feedback = Astr. Soc. P. Cosmic Explosions = Aip Conf Proc Cosmic Explosions = Aip. Conf. Proc. Cosmic Explosions = Springer Proc Phys Cosmic Explosions = Springer. Proc. Phys. Cosmic Flows 1999: Towards An Understanding of Large-scale Structure = Astr Soc P Cosmic Flows 1999: Towards An Understanding of Large-scale Structure = Astr. Soc. P. Cosmic Frontiers = Astr Soc P Cosmic Frontiers = Astr. Soc. P. Cosmic Gamma Rays, Neutrinos, and Related Astrophysics = Nato Adv Sci I C-mat Cosmic Gamma Rays, Neutrinos, and Related Astrophysics = Nato. Adv. Sci. I. C-mat. Cosmic Magnetic Fields: From Planets, to Stars and Galaxies = Iau Symp P Series Cosmic Magnetic Fields: From Planets, to Stars and Galaxies = Iau. Symp. P. Series. Cosmic Masers: From Protostars to Blackholes = Iau Symp Cosmic Masers: From Protostars to Blackholes = Iau. Symp. Cosmic Microwave Background : 25 Years Later = Astrophys Space Sc L Cosmic Microwave Background : 25 Years Later = Astrophys. Space. Sc. L. Cosmic Microwave Background and Large Scale Structure of The Universe = Astr Soc P Cosmic Microwave Background and Large Scale Structure of The Universe = Astr. Soc. P. Cosmic Microwave Background = Nato Adv Sci I C-mat Cosmic Microwave Background = Nato. Adv. Sci. I. C-mat. Cosmic Physics in The Year 2000 - Scientific Perspectives and New Instrumentation, Proceedings of The 8th Gifco Conference = Ital Phy So Cosmic Physics in The Year 2000 - Scientific Perspectives and New Instrumentation, Proceedings of The 8th Gifco Conference = Ital. Phy. So. Cosmic Questions = Ann Ny Acad Sci Cosmic Questions = Ann. Ny. Acad. Sci. Cosmic Radiations: From Astronomy to Particle Physics = Nato Sci Ser Ii-math Cosmic Radiations: From Astronomy to Particle Physics = Nato. Sci. Ser. Ii-math. Cosmic Radiations: From Astronomy to Particle Physics = Nato Sci Ser Ii Math Cosmic Radiations: From Astronomy to Particle Physics = Nato. Sci. Ser. Ii. Math. Cosmic Radiation: Spectra and Composition = Adv Space Res Cosmic Radiation: Spectra and Composition = Adv. Space. Res. Cosmic Radiation: Spectra and Composition = Adv Space Res-series Cosmic Radiation: Spectra and Composition = Adv. Space. Res-series. Cosmic Rays and Astrophysics = Aip Conf Proc Cosmic Rays and Astrophysics = Aip. Conf. Proc. Cosmic Rays in Magnetospheres of The Earth and Other Planets = Astrophys Space Sc L Cosmic Rays in Magnetospheres of The Earth and Other Planets = Astrophys. Space. Sc. L. Cosmic Rays in The Universe = Astr Soc P Cosmic Rays in The Universe = Astr. Soc. P. Cosmic Rays, Supernovae and The Interstellar Medium = Nato Adv Sci I C-mat Cosmic Rays, Supernovae and The Interstellar Medium = Nato. Adv. Sci. I. C-mat. Cosmic Research = Cosmic Res. Cosmic Research = Cosmic Res+ Cosmic Research = Cosmic Res+.+ Cosmo-98: Second International Workshop On Particle Physics and The Early Universe = Aip Conf Proc Cosmo-98: Second International Workshop On Particle Physics and The Early Universe = Aip. Conf. Proc. Cosmological Aspects of X-ray Clusters of Galaxies = Nato Adv Sci Inst Se Cosmological Aspects of X-ray Clusters of Galaxies = Nato. Adv. Sci. Inst. Se. Cosmological Crossroads = Lect Notes Phys Cosmological Crossroads = Lect. Notes. Phys. Cosmology Across Cultures = Astr Soc P Cosmology Across Cultures = Astr. Soc. P. Cosmology and Elementary Particle Physics = Aip Conf Proc Cosmology and Elementary Particle Physics = Aip. Conf. Proc. Cosmology and Gravitation = Aip Conf Proc Cosmology and Gravitation = Aip. Conf. Proc. Cosmology and Large-scale Structure in The Universe = Astr Soc P Cosmology and Large-scale Structure in The Universe = Astr. Soc. P. Cosmology and Large Scale Structure = Les Houch S Cosmology and Large Scale Structure = Les. Houch. S. Cosmology and Particle Physics = Aip Conf Proc Cosmology and Particle Physics = Aip. Conf. Proc. Cosmology and Particle Physics / = Ccast Wl Sw Cosmology and Particle Physics / = Ccast. Wl. Sw. Cosmology and Particle Physics = Nato Adv Sci Inst Se Cosmology and Particle Physics = Nato. Adv. Sci. Inst. Se. Cosmology = Springer Tracts Mod Cosmology = Springer. Tracts. Mod. Cosmology = Springer Tr Mod Phys Cosmology = Springer. Tr. Mod. Phys. Cosmopolitan Culture and Consumerism in Chick Lit = Lit Crit Cult Theory Cosmopolitan Culture and Consumerism in Chick Lit = Lit Crit. Cult. Theory. Cosmopolitanism = Key Ideas Cosmopolitanism = Key. Ideas. Cosmopolitan Nationalism in The Victorian Empire: Ireland, India and The Politics of Alfred Webb = Camb Imp Post-col St Cosmopolitan Nationalism in The Victorian Empire: Ireland, India and The Politics of Alfred Webb = Camb. Imp. Post-col. St. Cosmopolitan Spaces: Europe, Globalization, Theory = Routl Adv Sociol Cosmopolitan Spaces: Europe, Globalization, Theory = Routl. Adv. Sociol. Cospar Colloquia Series = Cospar Coll Cospar Colloquia Series = Cospar Coll. COSPAR Colloquia Series = COSPAR Colloq. Ser. Cospar International Reference Atmosphere (cira), Pt Iii = Adv Space Res Cospar International Reference Atmosphere (cira), Pt Iii = Adv. Space. Res. Cospar International Reference Atmosphere (cira), Pt Iii = Adv Space Res-series Cospar International Reference Atmosphere (cira), Pt Iii = Adv. Space. Res-series. Cossacks and The Russian Empire, 1598-1725: Manipulation, Rebellion and Expansion Into Siberia = Routl Stud Hist Russ Cossacks and The Russian Empire, 1598-1725: Manipulation, Rebellion and Expansion Into Siberia = Routl. Stud. Hist. Russ. Cost 516 Tribology Symposium = Vtt Symp Cost 516 Tribology Symposium = Vtt. Symp. Cost 914- Predictive Microbiology Applied to Chilled Food Preservation = Eur Commiss Sci Res Cost 914- Predictive Microbiology Applied to Chilled Food Preservation = Eur. Commiss. Sci. Res. Cost 916 - Polyphenols in Food = Eur Commiss Sci Res Cost 916 - Polyphenols in Food = Eur. Commiss. Sci. Res. Cost 917: Biogenically Active Amines in Food, Vol I = Eur Commiss Sci Res Cost 917: Biogenically Active Amines in Food, Vol I = Eur. Commiss. Sci. Res. Cost 917 - Biogenically Active Amines in Food, Vol Ii = Eur Commiss Sci Res Cost 917 - Biogenically Active Amines in Food, Vol Ii = Eur. Commiss. Sci. Res. Cost 917: Biogenically Active Amines in Food, Vol Iv = Eur Commiss Sci Res Cost 917: Biogenically Active Amines in Food, Vol Iv = Eur. Commiss. Sci. Res. Cost 917 - Biogenically Active Amines in Food, Vol Vi = Eur Commiss Sci Res Cost 917 - Biogenically Active Amines in Food, Vol Vi = Eur. Commiss. Sci. Res. Cost Action E5 Workshop On Fire Safety of Medium-rise Timber Frame Residential Buildings = Vtt Symp Cost Action E5 Workshop On Fire Safety of Medium-rise Timber Frame Residential Buildings = Vtt. Symp. Cost-affordable Titanium Iii = Key Eng Mat Cost-affordable Titanium Iii = Key. Eng. Mat. Cost and Management = Cost Manage Cost and Management = Cost Manage. Cost and Performance in Integrated Circuit Creation = Proc Spie Cost and Performance in Integrated Circuit Creation = Proc. Spie. Cost and Performance in Integrated Circuit Creation = P Soc Photo-opt Ins Cost and Performance in Integrated Circuit Creation = P. Soc. Photo-opt. Ins. Cost and Quality Quarterly Journal = Cost Qual. Q. J. Cost Chemistry Cm0603-melusyn Joint Meeting: Damages Induced in Biomolecules By Low and High Energy Radiations = J Phys Conf Ser Cost Chemistry Cm0603-melusyn Joint Meeting: Damages Induced in Biomolecules By Low and High Energy Radiations = J. Phys. Conf. Ser. Cost containment = Cost Containment Cost Containment = Cost Containment Cost Control for Quality Care: Meeting The Challenge of Health System Financing = Stud Res Ss Cost Control for Quality Care: Meeting The Challenge of Health System Financing = Stud. Res. Ss. Cost-effective Control of Urban Smog = Routl Explor Environ Cost-effective Control of Urban Smog = Routl. Explor. Environ. Cost effectiveness and resource allocation : C/E = Cost Eff Resour Alloc Cost-effective Titanium Component Technology for Leading-edge Performance = Imeche Sem Cost-effective Titanium Component Technology for Leading-edge Performance = Imeche. Sem. Cost Engineering = Cost Eng Cost Engineering = Cost Eng. Costerus : New Series = Costerus Es Costerus : New Series = Costerus Es. Cost-minimizing Choice Behavior in Transportation Planning: A Theoretical Framework for Logit Models = Adv Spat Sci Cost-minimizing Choice Behavior in Transportation Planning: A Theoretical Framework for Logit Models = Adv. Spat. Sci. Cost Oriented Automation - (low Cost Automation 2001) = Ifac Symp Series Cost Oriented Automation - (low Cost Automation 2001) = Ifac. Symp. Series. Cost & quality : CQ = Cost Qual Cost & quality quarterly journal : CQ = Cost Qual Q J Costs and Benefits of Price Stability = Nber Conf R Costs and Benefits of Price Stability = Nber. Conf. R. Costs and Values of Geoscience Information = P Geos Inf Costs and Values of Geoscience Information = P. Geos. Inf. Cost-sharing and Accessibility in Higher Education: A Fairer Deal? = High Educ Dynam Cost-sharing and Accessibility in Higher Education: A Fairer Deal? = High. Educ. Dynam. Costs of Illness and Benefits of Drug Treatment = Klin Pharm Costs of Illness and Benefits of Drug Treatment = Klin. Pharm. Cota Zero. Revista d'arqueologia i ciencia = CZero Coteaching in International Contexts: Research and Practice = Cult Stud Sci Educ Coteaching in International Contexts: Research and Practice = Cult. Stud. Sci. Educ. Coton Et Fibres Tropicales = Coton Fibres Trop Coton Et Fibres Tropicales = Coton Fibres Trop. Cots-based Software Systems, Proceedings = Lect Notes Comput Sc Cots-based Software Systems, Proceedings = Lect. Notes. Comput. Sc. Cots Based Software Systems, Proceedings = Lect Notes Comput Sc Cots Based Software Systems, Proceedings = Lect. Notes. Comput. Sc. Cotton: Biotechnological Advances = Biotech Agr Forest Cotton: Biotechnological Advances = Biotech. Agr. Forest. Cotton Fiber Chemistry and Technology = Int Fiber Sci Techno Cotton Fiber Chemistry and Technology = Int. Fiber Sci. Techno. Cotton: Science and Technology = Woodhead Text Ser Cotton: Science and Technology = Woodhead. Text. Ser. Co: Twenty-five Years of Millimeter-wave Spectroscopy = Iau Symp Co: Twenty-five Years of Millimeter-wave Spectroscopy = Iau. Symp. Cough (London, England) = Cough Coulomb and Interference Effects in Small Electronic Structures = Moriond Par Coulomb and Interference Effects in Small Electronic Structures = Moriond. Par. Coulombic Fluids: Bulk and Interfaces = Springer Ser Solid-s Coulombic Fluids: Bulk and Interfaces = Springer. Ser. Solid-s. Council for African American Researchers in The Mathematical Sciences: Vol V = Contemp Math Council for African American Researchers in The Mathematical Sciences: Vol V = Contemp. Math. Council of Europe and The Social Challenges of The Xxist Century = Bull Comparat Lab Re Council of Europe and The Social Challenges of The Xxist Century = Bull. Comparat. Lab. Re. Council On International Studies and Programs, State University of New York At Buffalo : Special Studies = C Int St Sp Council On International Studies and Programs, State University of New York At Buffalo : Special Studies = C. Int. St. Sp. Council On Tall Buildings and Urban Habitat - Council Report = Ctbuh Counc Rep Council On Tall Buildings and Urban Habitat - Council Report = Ctbuh. Counc. Rep. Counseling and Psychotherapy-investigating Practice From Scientific Historical and Cultural Perspectives = Counsel Psychother Counseling and Psychotherapy-investigating Practice From Scientific Historical and Cultural Perspectives = Counsel. Psychother. Counseling and values = Couns Values Counseling Boys and Men With Adhd = Rout Ser Counsel Counseling Boys and Men With Adhd = Rout. Ser. Counsel. Counseling Fathers = Rout Ser Counsel Counseling Fathers = Rout. Ser. Counsel. Counseling Psychologist = Couns Psychol Counseling Psychologist = Couns. Psychol. Counseling Troubled Boys: A Guidebook for Professionals = Rout Ser Counsel Counseling Troubled Boys: A Guidebook for Professionals = Rout. Ser. Counsel. Counselling psychology quarterly = Couns Psychol Q Counselor Education and Supervision = Couns Educ Superv Counselor Education and Supervision = Couns. Educ. Superv. Countdown 3 Kunstgenerationen = Trace Transm Rhetor Countdown 3 Kunstgenerationen = Trace. Transm. Rhetor. Countdown to Istanbul = Countdown Istanb Counteraction to Chemical and Biological Terrorism in East European Countries = Nato Scie Peace Secu Counteraction to Chemical and Biological Terrorism in East European Countries = Nato. Scie. Peace. Secu. Counter-history of Crime Fiction: Supernatural, Gothic, Sensational = Crime Files Ser Counter-history of Crime Fiction: Supernatural, Gothic, Sensational = Crime Files. Ser. Countering Nuclear and Radiological Terrorism = Nato Sec Sci B Phys Countering Nuclear and Radiological Terrorism = Nato. Sec. Sci. B. Phys. Countering Terrorism and Wmd: Creating A Global Counter-terrorism Network = Cass Ser Polit Viole Countering Terrorism and Wmd: Creating A Global Counter-terrorism Network = Cass. Ser. Polit. Viole. Countering The Proliferation of Weapons of Mass Destruction = Contemp Secur Stud Countering The Proliferation of Weapons of Mass Destruction = Contemp. Secur. Stud. Counterinsurgency and The Armed Forces = Def Secur Strateg Counterinsurgency and The Armed Forces = Def. Secur. Strateg. Counterpoints = Counterpoints Counterterrorism and Open Source Intelligence = Lect Notes Soc Netw Counterterrorism and Open Source Intelligence = Lect. Notes. Soc. Netw. Counterterrorism Legislation in Sri Lanka: Evaluating Efficacy = Pol Stud Counterterrorism Legislation in Sri Lanka: Evaluating Efficacy = Pol. Stud. Counterworks = Asa Decen Conf Ser Counterworks = Asa. Decen. Conf. Ser. Counting Our Losses: Reflecting On Change, Loss, and Transition in Everyday Life = Ser Death Dying Counting Our Losses: Reflecting On Change, Loss, and Transition in Everyday Life = Ser. Death. Dying. Country demographic profiles = Ctry Demogr Profiles Country life (London, England) = Ctry Life Country Risk Evaluation: Methods and Applications = Springer Ser Optim A Country Risk Evaluation: Methods and Applications = Springer. Ser. Optim. A. Country Seats of The United States = Penn Stud Landsc Arc Country Seats of The United States = Penn. Stud. Landsc. Arc. Coupled Date Communication Techniques for High-performance and Low-power Computing = Integr Circuit Syst Coupled Date Communication Techniques for High-performance and Low-power Computing = Integr. Circuit. Syst. Coupled Site and Soil-structure Interaction Effects With Application to Seismic Risk Mitigation = Nato Sci Peace Secur Coupled Site and Soil-structure Interaction Effects With Application to Seismic Risk Mitigation = Nato. Sci. Peace. Secur. Coupling and Energetics in The Stratosphere-mesosphere-thermosphere-ionosphere System = Adv Space Res Coupling and Energetics in The Stratosphere-mesosphere-thermosphere-ionosphere System = Adv. Space. Res. Coupling and Energetics in The Stratosphere-mesosphere-thermosphere-ionosphere System = Adv Space Res-series Coupling and Energetics in The Stratosphere-mesosphere-thermosphere-ionosphere System = Adv. Space. Res-series. Coupling Between Magnetospheric and Ionospheric Plasmas = Adv Space Res Coupling Between Magnetospheric and Ionospheric Plasmas = Adv. Space. Res. Coupling Between Magnetospheric and Ionospheric Plasmas = Adv Space Res-series Coupling Between Magnetospheric and Ionospheric Plasmas = Adv. Space. Res-series. Coupling of Fluids, Structures and Waves in Aeronautics, Proceedings = Note N Fl Mech Mul D Coupling of Fluids, Structures and Waves in Aeronautics, Proceedings = Note. N. Fl. Mech. Mul. D. Coupling of The High and Low Latitude Heliosphere and Its Relation to The Corona = Adv Space Res Coupling of The High and Low Latitude Heliosphere and Its Relation to The Corona = Adv. Space. Res. Coupling of The High and Low Latitude Heliosphere and Its Relation to The Corona = Adv Space Res-series Coupling of The High and Low Latitude Heliosphere and Its Relation to The Corona = Adv. Space. Res-series. Coupling of Thunderstorms and Lightning Discharges to Near-earth Space = Aip Conf Proc Coupling of Thunderstorms and Lightning Discharges to Near-earth Space = Aip. Conf. Proc. Coupling Processes in The Lower and Middle Atmosphere = Nato Adv Sci Inst Se Coupling Processes in The Lower and Middle Atmosphere = Nato. Adv. Sci. Inst. Se. Coupling Processes in The Mlt Region = Adv Space Res Coupling Processes in The Mlt Region = Adv. Space. Res. Coupling Processes in The Mlt Region = Adv Space Res-series Coupling Processes in The Mlt Region = Adv. Space. Res-series. Coupling Technology to National Need = P Soc Photo-opt Ins Coupling Technology to National Need = P. Soc. Photo-opt. Ins. Courier Forschungsinstitut Senckenberg (series) = Cour Forsch Senck Courier Forschungsinstitut Senckenberg (series) = Cour. Forsch. Senck. Courier Forschungsinstitut Senckenberg Series = Cour For Sekenbg Courier Forschungsinstitut Senckenberg Series = Cour. For. Sekenbg. Cournot Center for Economic Studies Series = Cournot Cent Econ St Cournot Center for Economic Studies Series = Cournot Cent. Econ. St. Courrier = Courrier Courrier de l’environnement de l’INRA, Le = Courr. environ. INRA Courrier de l’exploitant et du scieur = Courr. exploit. scieur Cours de Géométrie de la Faculté des Sciences = Cours Géom. Fac. Sci. Course in Commutative Algebra = Grad Texts Math Course in Commutative Algebra = Grad. Texts. Math. Course in Commutative Banach Algebras = Grad Texts Math Course in Commutative Banach Algebras = Grad. Texts. Math. Course in Formal Languages, Automata and Groups = Universitext Course in Formal Languages, Automata and Groups = Universitext. Course in Mathematical Logic for Mathematicians, Second Edition = Grad Texts Math Course in Mathematical Logic for Mathematicians, Second Edition = Grad. Texts. Math. Course of Study = Course Study Course On Solar System Plasma Physics = Ital Phy So Course On Solar System Plasma Physics = Ital. Phy. So. Cours Spécialisés = Cours Spéc. Courting The Media: Contemporary Perspectives On Media and Law = Media Commun Technol Courting The Media: Contemporary Perspectives On Media and Law = Media Commun. Technol. Courtly Love Undressed: Reading Through Clothes in Medieval French Culture = Middle Ages Ser Courtly Love Undressed: Reading Through Clothes in Medieval French Culture = Middle. Ages. Ser. Courtroom Talk and Neocolonial Control = Lang Power Soc Proce Courtroom Talk and Neocolonial Control = Lang. Power. Soc. Proce. Courts, health science & the law / Georgetown University Medical & Law Centers = Courts Health Sci Law Couture and Consensus: Fashion and Politics in Postcolonial Argentina = Cult Stud Am Couture and Consensus: Fashion and Politics in Postcolonial Argentina = Cult. Stud. Am. Covalent Ceramics Iii - Science and Technology of Non-oxides = Mater Res Soc Symp P Covalent Ceramics Iii - Science and Technology of Non-oxides = Mater. Res. Soc. Symp. P. Covalent Ceramics Ii: Non-oxides = Mater Res Soc Symp P Covalent Ceramics Ii: Non-oxides = Mater. Res. Soc. Symp. P. Covalently Bonded Disordered Thin-film Materials = Mater Res Soc Symp P Covalently Bonded Disordered Thin-film Materials = Mater. Res. Soc. Symp. P. Covalently Modified Antigens and Antibodies in Diagnosis and Therapy = Targ Diag T Covalently Modified Antigens and Antibodies in Diagnosis and Therapy = Targ. Diag. T. Coverage Control in Sensor Networks = Comput Commun Netw S Coverage Control in Sensor Networks = Comput. Commun. Netw. S. Covering Niagara: Studies in Local Popular Culture = Cult Stud Ser Covering Niagara: Studies in Local Popular Culture = Cult. Stud. Ser. Coverings of Discrete Quasiperiodic Sets: Theory and Applications to Quasicrystals = Springer Tr Mod Phys Coverings of Discrete Quasiperiodic Sets: Theory and Applications to Quasicrystals = Springer. Tr. Mod. Phys. Covertaction quarterly = Covertaction Q Covert Modality in Non-finite Contexts = Interface Explor Covert Modality in Non-finite Contexts = Interface. Explor. Cox-2: A New Target for Cancer Prevention and Treatment = Prog Exp Tumor Res Cox-2: A New Target for Cancer Prevention and Treatment = Prog. Exp. Tumor. Res. Coxsackie B Viruses = Curr Top Microbiol Coxsackie B Viruses = Curr. Top. Microbiol. Coyote Papers = Coyote Pap Coyote Papers = Coyote Pap. Coyuntura economica (Bogota, Colombia) = Coyunt Econ Cpc Research Review = CPC Res Rev CPHC/BCS Distinguished Dissertations = CPHC/BCS Disting. Diss. CPP Chemical Plants and Processing = CPP Chem. Plants and Process. CPR population research = Cpr Popul Res Cps Publications in Philosophy of Science = Cps Pub P S Cps Publications in Philosophy of Science = Cps Pub. P. S. Cp Violation and Beauty Factories and Related Issues in Physics = Ann Ny Acad Sci Cp Violation and Beauty Factories and Related Issues in Physics = Ann. Ny. Acad. Sci. Cp Violation in Particle, Nuclear and Astrophysics = Lect Notes Phys Cp Violation in Particle, Nuclear and Astrophysics = Lect. Notes. Phys. Crabs in Cold Water Regions: Biology, Management, and Economics = Low Wake Fi Crabs in Cold Water Regions: Biology, Management, and Economics = Low. Wake. Fi. Crafting The Witch: Gendering Magic in Medieval and Early Modern England = Stud Mediev Hist Cul Crafting The Witch: Gendering Magic in Medieval and Early Modern England = Stud. Mediev. Hist. Cul. Crafts = Crafts Cral-2006 Chemodynamics: From First Stars to Local Galaxies = Eas Publications Cral-2006 Chemodynamics: From First Stars to Local Galaxies = Eas. Publications. Cral-ipnl: Dark Energy and Dark Matter: Observations, Experiments and Theories = Eas Publications Cral-ipnl: Dark Energy and Dark Matter: Observations, Experiments and Theories = Eas. Publications. Crane Bag = Crane Bag Crane Flies: History, Taxonomy and Ecology (diptera: Tipulidae, Limoniidae, Pediciidae, Trichoceridae, Ptychopteridae, Tanyderidae) = Zoosymposia Crane Flies: History, Taxonomy and Ecology (diptera: Tipulidae, Limoniidae, Pediciidae, Trichoceridae, Ptychopteridae, Tanyderidae) = Zoosymposia. Cranio clinics international = Cranio Clin Int Cranio Clinics International = Cranio Clin. Int. Cranio = Cranio Craniofacial Development: The Tissue and Molecular Interactions That Control Development of The Head = Adv Anat Embryol Cel Craniofacial Development: The Tissue and Molecular Interactions That Control Development of The Head = Adv. Anat. Embryol. Cel. Craniofacial Growth Series, Monograph = Cranio Grow Craniofacial Growth Series, Monograph = Cranio. Grow. Craniofacial Growth Theory and Orthodontic Treatment = Cranio Grow Craniofacial Growth Theory and Orthodontic Treatment = Cranio. Grow. Craniofacial Structures in Connective Tissue Disorders = Birth Def Craniofacial Structures in Connective Tissue Disorders = Birth. Def. Craniosynostoses: Molecular Genetics, Principles of Diagnosis, and Treatment = Monogr Hum Genet Craniosynostoses: Molecular Genetics, Principles of Diagnosis, and Treatment = Monogr. Hum. Genet. Cranio : the journal of craniomandibular practice = Cranio Cranio-the Journal of Craniomandibular Practice = Cranio Cranio-the Journal of Craniomandibular Practice = Cranio. Crashworthiness: Energy Management and Occupant Protection = Cism Cour L Crashworthiness: Energy Management and Occupant Protection = Cism. Cour. L. Crashworthiness: Energy Management and Occupant Protection = Cism Courses Lect Crashworthiness: Energy Management and Occupant Protection = Cism. Courses. Lect. Crashworthiness of Transportation Systems: Structural Impact and Occupant Protection = Nato Adv Sci I E-app Crashworthiness of Transportation Systems: Structural Impact and Occupant Protection = Nato. Adv. Sci. I. E-app. Crassulacean Acid Metabolism = Ecol Stu An Crassulacean Acid Metabolism = Ecol. Stu. An. Cratons and Fold Belts of India = Lect Notes Earth Sci Cratons and Fold Belts of India = Lect. Notes. Earth. Sci. Crayfish in Europe As Alien Species = Crustacean Iss Crayfish in Europe As Alien Species = Crustacean. Iss. Crc Critical Reviews in Analytical Chemistry = Crc Cr Rev Anal Chem Crc Critical Reviews in Analytical Chemistry = Crc Cr. Rev. Anal. Chem. Crc Critical Reviews in Analytical Chemistry = Crit Rev Anal Chem Crc Critical Reviews in Analytical Chemistry = Crit. Rev. Anal. Chem. CRC critical reviews in biochemistry = CRC Crit Rev Biochem CRC Critical Reviews in Biochemistry = CRC Crit. Rev. Biochem. Crc Critical Reviews in Biochemistry = Crc Cr Rev Bioch Mol Crc Critical Reviews in Biochemistry = Crc Cr. Rev. Bioch. Mol. Crc Critical Reviews in Biochemistry = Crit Rev Biochem Mol Crc Critical Reviews in Biochemistry = Crit. Rev. Biochem. Mol. Crc Critical Reviews in Biocompatibility = Crit Rev Biocompat Crc Critical Reviews in Biocompatibility = Crit. Rev. Biocompat. CRC critical reviews in bioengineering = CRC Crit Rev Bioeng CRC Critical Reviews in Bioengineering = CRC Crit. Rev. Bioeng. Crc Critical Reviews in Bioengineering = Crc Cr Rev Biom Eng Crc Critical Reviews in Bioengineering = Crc Cr. Rev. Biom. Eng. Crc Critical Reviews in Biomedical Engineering = Crit Rev Biomed Eng Crc Critical Reviews in Biomedical Engineering = Crit. Rev. Biomed. Eng. Crc Critical Reviews in Biotechnology = Crc Cr Rev Biotechn Crc Critical Reviews in Biotechnology = Crc Cr. Rev. Biotechn. Crc Critical Reviews in Biotechnology = Crit Rev Biotechnol Crc Critical Reviews in Biotechnology = Crit. Rev. Biotechnol. CRC critical reviews in clinical laboratory sciences = CRC Crit Rev Clin Lab Sci CRC Critical Reviews in Clinical Laboratory Sciences = CRC Crit. Rev. Clin. Lab. Sci. Crc Critical Reviews in Clinical Laboratory Sciences = Crc Cr Rev Cl Lab Sc Crc Critical Reviews in Clinical Laboratory Sciences = Crc Cr. Rev. Cl. Lab. Sc. Crc Critical Reviews in Clinical Laboratory Sciences = Crit Rev Cl Lab Sci Crc Critical Reviews in Clinical Laboratory Sciences = Crit. Rev. Cl. Lab. Sci. CRC critical reviews in clinical neurobiology = CRC Crit Rev Clin Neurobiol CRC Critical Reviews in Clinical Neurobiology = CRC Crit. Rev. Clin. Neurobiol. Crc Critical Reviews in Clinical Neurobiology = Crc Cr Rev Cl Neurob Crc Critical Reviews in Clinical Neurobiology = Crc Cr. Rev. Cl. Neurob. Crc Critical Reviews in Clinical Neurobiology = Crit Rev Neurobiol Crc Critical Reviews in Clinical Neurobiology = Crit. Rev. Neurobiol. Crc Critical Reviews in Clinical Radiology and Nuclear Medicine = Crc Crit R Clin Rad Crc Critical Reviews in Clinical Radiology and Nuclear Medicine = Crc Crit. R. Clin. Rad. CRC critical reviews in clinical radiology and nuclear medicine = CRC Crit Rev Clin Radiol Nucl Med CRC Critical Reviews in Clinical Radiology and Nuclear Medicine = CRC Crit. Rev. Clin. Radiol. Nucl. Med. CRC critical reviews in diagnostic imaging = CRC Crit Rev Diagn Imaging CRC Critical Reviews in Diagnostic Imaging = CRC Crit. Rev. Diagn. Imaging Crc Critical Reviews in Diagnostic Imaging = Crc Cr Rev Diagn Im Crc Critical Reviews in Diagnostic Imaging = Crc Cr. Rev. Diagn. Im. Crc Critical Reviews in Diagnostic Imaging = Crit Rev Diagn Imag Crc Critical Reviews in Diagnostic Imaging = Crit. Rev. Diagn. Imag. Crc Critical Reviews in Environmental Control = Crit Rev Env Contr Crc Critical Reviews in Environmental Control = Crit. Rev. Env. Contr. CRC critical reviews in food science and nutrition = CRC Crit Rev Food Sci Nutr CRC Critical Reviews in Food Science and Nutrition = CRC Crit. Rev. Food Sci. Nutr. Crc Critical Reviews in Food Science and Nutrition = Crc Cr Rev Food Sci Crc Critical Reviews in Food Science and Nutrition = Crc Cr. Rev. Food Sci. Crc Critical Reviews in Food Science and Nutrition = Crit Rev Food Sci Crc Critical Reviews in Food Science and Nutrition = Crit. Rev. Food Sci. CRC Critical reviews in immunology = CRC Crit Rev Immunol CRC Critical Reviews in Immunology = CRC Crit. Rev. Immunol. Crc Critical Reviews in Immunology = Crc Cr Rev Immunol Crc Critical Reviews in Immunology = Crc Cr. Rev. Immunol. Crc Critical Reviews in Immunology = Crit Rev Immunol Crc Critical Reviews in Immunology = Crit. Rev. Immunol. Crc Critical Reviews in Medical Informatics = Crc Crit R Med Infor Crc Critical Reviews in Medical Informatics = Crc Crit. R. Med. Infor. CRC critical reviews in microbiology = CRC Crit Rev Microbiol CRC Critical Reviews in Microbiology = CRC Crit. Rev. Microbiol. Crc Critical Reviews in Microbiology = Crc Cr Rev Microbiol Crc Critical Reviews in Microbiology = Crc Cr. Rev. Microbiol. Crc Critical Reviews in Microbiology = Crit Rev Microbiol Crc Critical Reviews in Microbiology = Crit. Rev. Microbiol. Crc Critical Reviews in Oncology/hematology = Crc Cr Rev Oncol-hem Crc Critical Reviews in Oncology/hematology = Crc Cr. Rev. Oncol-hem. Crc Critical Reviews in Oncology/hematology = Crit Rev Oncol Hemat Crc Critical Reviews in Oncology/hematology = Crit. Rev. Oncol. Hemat. Crc Critical Reviews in Plant Sciences = Crc Cr Rev Plant Sci Crc Critical Reviews in Plant Sciences = Crc Cr. Rev. Plant Sci. Crc Critical Reviews in Plant Sciences = Crit Rev Plant Sci Crc Critical Reviews in Plant Sciences = Crit. Rev. Plant Sci. CRC critical reviews in radiological sciences = CRC Crit Rev Radiol Sci CRC Critical Reviews in Radiological Sciences = CRC Crit. Rev. Radiol. Sci. Crc Critical Reviews in Solid State and Materials Sciences = Crc Cr Rev Sol State Crc Critical Reviews in Solid State and Materials Sciences = Crc Cr. Rev. Sol. State Crc Critical Reviews in Solid State and Materials Sciences = Crit Rev Solid State Crc Critical Reviews in Solid State and Materials Sciences = Crit. Rev. Solid State Crc Critical Reviews in Therapeutic Drug Carrier Systems = Crit Rev Ther Drug Crc Critical Reviews in Therapeutic Drug Carrier Systems = Crit. Rev. Ther. Drug CRC critical reviews in toxicology = CRC Crit Rev Toxicol CRC Critical Reviews in Toxicology = CRC Crit. Rev. Toxicol. Crc Critical Reviews in Toxicology = Crc Cr Rev Toxicol Crc Critical Reviews in Toxicology = Crc Cr. Rev. Toxicol. Crc Critical Reviews in Toxicology = Crit Rev Toxicol Crc Critical Reviews in Toxicology = Crit. Rev. Toxicol. Crc Enzyme Inhibitors Series = Crc Enzym Inhib Ser Crc Enzyme Inhibitors Series = Crc Enzym. Inhib. Ser. Crc for Australian Weed Management Technical Series = Crc Aust Weed Manage Crc for Australian Weed Management Technical Series = Crc Aust. Weed Manage. Crc Marine Biology Series = Crc Mar Biol Ser Crc Marine Biology Series = Crc Mar. Biol. Ser. CRC Mathematical Modelling Series = CRC Math. Model. Ser. Crc Press-civil and Environmental Engineering = Crc Press Civ Env En Crc Press-civil and Environmental Engineering = Crc Press. Civ. Env. En. Crc Press Series On Discrete Mathematics and Its Applications = Crc Discr Math Appl Crc Press Series On Discrete Mathematics and Its Applications = Crc Discr. Math. Appl. CRC Press Series on Discrete Mathematics and its Applications = CRC Press Ser. Discrete Math. Appl. CRC Series in Computational Mechanics and Applied Analysis = CRC Ser. Comput. Mech. Appl. Anal. Crc Series in Contemporary Food Science = Crc Contemp Food Sci Crc Series in Contemporary Food Science = Crc Contemp. Food Sci. Crc Series in Food Engineering = Crc Food En Crc Series in Food Engineering = Crc Food En. Crc Series in Practical Aspects of Criminal and Forensic Investigations = Crc Ser Pract Asp Cr Crc Series in Practical Aspects of Criminal and Forensic Investigations = Crc Ser. Pract. Asp. Cr. Crc Series in Pure and Applied Physics = Crc Ser Pure Appl Ph Crc Series in Pure and Applied Physics = Crc Ser. Pure Appl. Ph. Crc Series On Competition Regulation and Development = Crc Ser Compet Regul Crc Series On Competition Regulation and Development = Crc Ser. Compet. Regul. Crc Series On Modern Mechanics and Mathematics = Crc Ser Mod Mech Mat Crc Series On Modern Mechanics and Mathematics = Crc Ser. Mod. Mech. Mat. Created in China: The Great New Leap Forward = Routl Media Cult Soc Created in China: The Great New Leap Forward = Routl. Media. Cult. Soc. Createdness and Ethics = Theol Bibl Topelmann Createdness and Ethics = Theol. Bibl. Topelmann. Creatine: From Basic Science to Clinical Application = Med Sci Symp Ser Creatine: From Basic Science to Clinical Application = Med. Sci. Symp. Ser. Creating Africa in America: Translocal Identity in An Emerging World City = Contemp Ethnogr Creating Africa in America: Translocal Identity in An Emerging World City = Contemp. Ethnogr. Creating and Managing Superior Customer Value = Adv Bus Mark Purch Creating and Managing Superior Customer Value = Adv. Bus. Mark. Purch. Creating A New Nepal: The Ethnic Dimension = Pol Stud Creating A New Nepal: The Ethnic Dimension = Pol. Stud. Creating Assertion-based Ip = Integr Circuit Syst Creating Assertion-based Ip = Integr. Circuit. Syst. Creating Brain-like Intelligence: From Basic Principles to Complex Intelligent Systems = Lect Notes Artif Int Creating Brain-like Intelligence: From Basic Principles to Complex Intelligent Systems = Lect. Notes. Artif. Int. Creating Capital Markets in Eastern Europe = W Wilson Sp Creating Capital Markets in Eastern Europe = W. Wilson. Sp. Creating Collaborative Advantage Through Knowledge and Innovation = Ser Innovat Knowl Ma Creating Collaborative Advantage Through Knowledge and Innovation = Ser. Innovat. Knowl. Ma. Creating Coordination in The Cerebellum = Prog Brain Res Creating Coordination in The Cerebellum = Prog. Brain. Res. Creating Human Rights: How Noncitizens Made Sex Persecution Matter to The World = Pa Stud Hum Rights Creating Human Rights: How Noncitizens Made Sex Persecution Matter to The World = Pa. Stud. Hum. Rights. Creating New Learning Experiences On A Global Scale, Proceedings = Lect Notes Comput Sc Creating New Learning Experiences On A Global Scale, Proceedings = Lect. Notes. Comput. Sc. Creating Our Identities in Service-learning and Community Engagement = Adv Serv Learn Res Creating Our Identities in Service-learning and Community Engagement = Adv. Serv. Learn. Res. Creating Social Trust in Post-socialist Transition = Polit Evol Inst Chan Creating Social Trust in Post-socialist Transition = Polit. Evol. Inst. Chan. Creating The Compliant Patient = Cranio Grow Creating The Compliant Patient = Cranio. Grow. Creating The European Area of Higher Education = High Educ Dynam Creating The European Area of Higher Education = High. Educ. Dynam. Creation and Analysis of Employer-employee Matched Data = Contrib To Econ Anal Creation and Analysis of Employer-employee Matched Data = Contrib. To. Econ. Anal. Creation of Fermions By Rotating Charged Black Holes = Mem Soc Math Fr Creation of Fermions By Rotating Charged Black Holes = Mem. Soc. Math. Fr. Creation of High-strength Structure and Joints By Setting Up Local Material Properties = Adv Mater Res-switz Creation of High-strength Structure and Joints By Setting Up Local Material Properties = Adv. Mater. Res-switz. Creation of High-strength Structures and Joints By Setting Up Local Material Properties Ii = Adv Mater Res-switz Creation of High-strength Structures and Joints By Setting Up Local Material Properties Ii = Adv. Mater. Res-switz. Creative Chemical Sensor Systems = Top Curr Chem Creative Chemical Sensor Systems = Top. Curr. Chem. Creative Circle: Artist, Critic, and Translator in African Literature = Ann Sel Pap Creative Circle: Artist, Critic, and Translator in African Literature = Ann. Sel. Pap. Creative Cities, Cultural Clusters and Local Economic Development = New Horiz Reg Sci Creative Cities, Cultural Clusters and Local Economic Development = New. Horiz. Reg. Sci. Creative Computing = Creative Comput Creative Computing = Creative Comput. Creative Economies, Creative Cities: Asian-european Perspectives = Geojournal Lib Creative Economies, Creative Cities: Asian-european Perspectives = Geojournal. Lib. Creative nursing = Creat Nurs Creative Nursing = Creat. Nurs. Creative Regions: Technology, Culture and Knowledge Entrepreneurship = Reg Cities Creative Regions: Technology, Culture and Knowledge Entrepreneurship = Reg. Cities. Creative Use of Bearing Steels = Am Soc Test Mater Creative Use of Bearing Steels = Am. Soc. Test. Mater. Creative Water and Wastewater Treatment Technologies for Densely Populated Urban Areas = Wa Sci Technol Creative Water and Wastewater Treatment Technologies for Densely Populated Urban Areas = Wa. Sci. Technol. Creativity and Artificial Intelligence: A Conceptual Blending Approach = Appl Cogn Linguist Creativity and Artificial Intelligence: A Conceptual Blending Approach = Appl. Cogn. Linguist. Creativity and Conflict Resolution: Alternative Pathways to Peace = Routl Stud Peace Con Creativity and Conflict Resolution: Alternative Pathways to Peace = Routl. Stud. Peace Con. Creativity and Hci: From Experience to Design in Education = Int Fed Info Proc Creativity and Hci: From Experience to Design in Education = Int. Fed. Info. Proc. Creativity and Innovation in Business and Beyond: Social Science Perspectives and Policy Implications = Rout Stud Innov Org Creativity and Innovation in Business and Beyond: Social Science Perspectives and Policy Implications = Rout. Stud. Innov. Org. Creativity, Giftedness, and Talent Development in Mathematics = Mont Math Enthus Mon Creativity, Giftedness, and Talent Development in Mathematics = Mont. Math. Enthus. Mon. Creativity, Innovation and The Cultural Economy = Routl Stud Glob Comp Creativity, Innovation and The Cultural Economy = Routl. Stud. Glob. Comp. Creativity, Psychology and The History of Science = Bost Stud Philos Sci Creativity, Psychology and The History of Science = Bost. Stud. Philos. Sci. Creativity Research Journal = Creativity Res J Creativity Research Journal = Creativity Res. J. Crebellum: Recent Developments in Cerebellar Research = Ann Ny Acad Sci Crebellum: Recent Developments in Cerebellar Research = Ann. Ny. Acad. Sci. Creces / CONIN = Creces Credibility Assessment = Nato Adv Sci I D-beh Credibility Assessment = Nato. Adv. Sci. I. D-beh. Credit and Collateral = Routl Int Stud Money Credit and Collateral = Routl. Int. Stud. Money. Credit, Money and Macroeconomic Policy: A Post-keynesian Approach = New Dir Mod Econ Credit, Money and Macroeconomic Policy: A Post-keynesian Approach = New. Dir. Mod. Econ. Credit Rating Modelling By Neural Networks = Financ I Serv Ser Credit Rating Modelling By Neural Networks = Financ. I. Serv. Ser. Credit Risk: Models, Derivatives, and Management = Ch Crc Financ Math Credit Risk: Models, Derivatives, and Management = Ch. Crc. Financ. Math. Credit Scoring and Credit Control = Inst Math C Credit Scoring and Credit Control = Inst. Math. C. Creel and Angler Surveys in Fisheries Management = Am Fish S S Creel and Angler Surveys in Fisheries Management = Am. Fish. S. S. Creep and Damage in Materials and Structures = Cism Cour L Creep and Damage in Materials and Structures = Cism. Cour. L. Creep and Fracture of Engineering Materials and Structures = Key Eng Mat Creep and Fracture of Engineering Materials and Structures = Key. Eng. Mat. Creep and Fracture of Engineering Materials and Structures = Key Eng Mater Creep and Fracture of Engineering Materials and Structures = Key. Eng. Mater. Creep-resistant Steels = Woodhead Publ Mater Creep-resistant Steels = Woodhead. Publ. Mater. Creighton law review = Creighton Law Rev Creole Language Library = Creole Lang Creole Language Library = Creole Lang. C++ Report = C++ Rep C++ Report = C++ Rep. Creta antica. Rivista annuale di studi archeologici, storici ed epigrafici = CretAnt Cretaceaous Oceanic Red Beds: Stratigraphy, Composition, Origins, and Paleoceanographic and Paleoclimatic Significance = Soc Sediment Geol Sp Cretaceaous Oceanic Red Beds: Stratigraphy, Composition, Origins, and Paleoceanographic and Paleoclimatic Significance = Soc. Sediment. Geol. Sp. Cretaceous Fossil Vertebrates = Spec Pap Palaeontol Cretaceous Fossil Vertebrates = Spec. Pap. Palaeontol. Cretaceous Fossil Vertebrates = Sp Palaeont Cretaceous Fossil Vertebrates = Sp. Palaeont. Cretaceous Research = Cretaceous Res Cretaceous Research = Cretaceous Res. Cretaceous Resources, Events and Rhythms = Nato Adv Sci I C-mat Cretaceous Resources, Events and Rhythms = Nato. Adv. Sci. I. C-mat. Cretaceous Rudists and Carbonate Platforms-environmental Feedback = Sepm Spec P Cretaceous Rudists and Carbonate Platforms-environmental Feedback = Sepm. Spec. P. Cretaceous Rudists of Boeotia, Central Greece = Sp Palaeont Cretaceous Rudists of Boeotia, Central Greece = Sp. Palaeont. Cretan Studies = CretSt CRHCS news : the newsletter of the Commonwealth Regional Health Community Secretariat for East, Central and Southern Africa. Commonwealth Regional Health Community for East, Central, and Southern Africa. Secretariat = CRHCS news Cribles = Cribles Crime and Corrections = Crime Corrections Crime and delinquency = Crime Delinq Crime and Justice-a Review of Research = Crime Justice Crime and Justice-a Review of Research = Crime Justice. Crime and Justice: A Review of Research = Crime Justice Crime and Justice: A Review of Research = Crime Justice. Crime and Justice: A Review of Research, Vol 20 = Crime Justice Crime and Justice: A Review of Research, Vol 20 = Crime Justice. Crime and Justice: A Review of Research, Vol 23 = Crime Justice Crime and Justice: A Review of Research, Vol 23 = Crime Justice. Crime and Justice: A Review of Research, Vol 25 = Crime Justice Crime and Justice: A Review of Research, Vol 25 = Crime Justice. Crime and Justice: A Review of Research, Vol 27 = Crime Justice Crime and Justice: A Review of Research, Vol 27 = Crime Justice. Crime and Justice: A Review of Research, Vol 28 = Crime Justice Crime and Justice: A Review of Research, Vol 28 = Crime Justice. Crime and Justice: A Review of Research, Vol 29 = Crime Justice Crime and Justice: A Review of Research, Vol 29 = Crime Justice. Crime and Justice: A Review of Research, Vol 30 = Crime Justice Crime and Justice: A Review of Research, Vol 30 = Crime Justice. Crime and Justice - A Review of Research, Vol 34 = Crime Justice Crime and Justice: A Review of Research, Vol 37 = Crime Justice Crime and Justice: A Review of Research, Vol 37 = Crime Justice. Crime and Justice: Areview of Research, Vol 38 = Crime Justice Crime and Justice: Areview of Research, Vol 38 = Crime Justice. Crime and Justice: A Review of Research, Vol 39 = Crime Justice Crime and Justice: A Review of Research, Vol 39 = Crime Justice. Crime and Justice = Crime Justice Crime and Justice in The Netherlands = Crime Justice Crime and Punishment in Western Countries, 1980-1999 = Crime Justice Crime and Punishment in Western Countries, 1980-1999 = Crime Justice. Crime and Punishment: Perspectives From The Humanities = Stud Law Politics So Crime and Punishment: Perspectives From The Humanities = Stud. Law. Politics. So. Crime and social justice = Crime Soc Justice Crime and Social Justice = Crime Soc Justice Crime and Social Justice = Crime Soc. Justice Crime & Delinquency = Crime Delinquency Crime Files = Crime File Crime Files = Crime File. Crime Files Series = Crime Files Ser Crime Files Series = Crime Files Ser. Crime Laboratory Digest = Crime Lab Digest Crime Laboratory Digest = Crime Lab. Digest Crime, law, and social change = Crime Law Soc Change Crime Law and Social Change = Crime Law Social Ch Crime Law and Social Change = Crime Law Social Ch. Crime Media Culture = Crime Media Cult Crime Media Culture = Crime Media Cult. Crime Prevention and Intervention = Prev Int Ch Crime Prevention and Intervention = Prev. Int. Ch. Crime Prevention and Security Management = Crime Prev Secur Man Crime Prevention and Security Management = Crime Prev. Secur. Man. Crime Prevention Studies = Crime Prev Studies Crime Prevention Studies = Crime Prev. Studies Crime, Punishment, and Politics in Comparative Perspective = Crime Justice Crime, Punishment, and Politics in Comparative Perspective = Crime. Justice. Crimes By The Capitalist State = Suny Rad S Crimes By The Capitalist State = Suny. Rad. S. Crime & Society = Crime Soc Crime & Society = Crime Soc. Crimes of The Holocaust: The Law Confronts Hard Cases = Pa Stud Hum Rights Crimes of The Holocaust: The Law Confronts Hard Cases = Pa. Stud. Hum. Rights. Criminal behaviour and mental health : CBMH = Crim Behav Ment Health Criminal Behaviour and Mental Health = Crim Behav Ment Heal Criminal Behaviour and Mental Health = Crim. Behav. Ment. Heal. Criminal Dilemmas: Understanding and Preventing Crime, Second Edition = Stud Econ Theory Criminal Dilemmas: Understanding and Preventing Crime, Second Edition = Stud. Econ. Theory. Criminal justice and behavior = Crim Justice Behav Criminal Justice and Behavior = Crim Justice Behav Criminal Justice and Behavior = Crim. Justice Behav. Criminal justice ethics = Crim Justice Ethics Criminal justice history = Crim Justice Hist Criminal Justice in Crisis = Law Soc Set Criminal Justice in Crisis = Law. Soc. Set. Criminal justice journal = Crim Justice J Criminal Justice Law Enforcement and Corrections = Crim Justice Law Enf Criminal Justice Law Enforcement and Corrections = Crim. Justice Law Enf. Criminal Justice Planning and Coordination = Aic Conf P Criminal Justice Planning and Coordination = Aic. Conf. P. Criminal Justice Theory: Explaining The Nature and Behavior of Criminal Justice = Criminol Just Stud Criminal Justice Theory: Explaining The Nature and Behavior of Criminal Justice = Criminol. Just. Stud. Criminal law bulletin = Crim Law Bull Criminal law forum = Crim Law Forum Criminal law journal = Crim Law J Criminal Law Quarterly = Crim Law Quart Criminal Law Quarterly = Crim. Law Quart. Criminal Law Review = Crim Law Rev Criminal Law Review = Crim. Law Rev. Criminal law review (London, England) = Crim Law Rev Criminal Law: The Basics = Basics Ser Criminal Law: The Basics = Basics Ser. Criminal Poisoning: Investigational Guide for Law Enforcement, Toxicologists, Forensic Scientists, and Attorneys, Second Edition = Forensic Sci Med Criminal Poisoning: Investigational Guide for Law Enforcement, Toxicologists, Forensic Scientists, and Attorneys, Second Edition = Forensic Sci. Med. Criminal reports [Canada] new series, annotated; a series of reports with annotations and practice notes on criminal cases arising in the courts of the various provinces in Canada = Crim Rep Can New Ser Criminologica = Criminologica Criminologist = Criminologist Criminology and Justice Studies = Criminol Just Stud Criminology and Justice Studies = Criminol. Just. Stud. Criminology & Criminal Justice = Criminol Crim Justic Criminology & Criminal Justice = Criminol. Crim. Justic. Criminology = Criminology Crin = Crin Crises and Perspectives = Old Test St Crises and Perspectives = Old. Test. St. Crisis and Creativity in The New Literatures in English = Cross C Rea Crisis and Creativity in The New Literatures in English = Cross. C. Rea. Crisis and Reflection: An Essay On Husserl's Crisis of The European Sciences = Phaenomenologica Crisis and Reflection: An Essay On Husserl's Crisis of The European Sciences = Phaenomenologica. Crisis Communications: A Casebook Approach, Third Edition = Lea Commun Ser Crisis Communications: A Casebook Approach, Third Edition = Lea. Commun. Ser. Crisis, Complexity and Conflict = Contrib Confl Manag Crisis, Complexity and Conflict = Contrib. Confl. Manag. Crisis=Crisis;; Crisis = Crisis Crisis in Kirkuk: The Ethnopolitics of Conflict and Compromise = Natl Ethn Confl 21st Crisis in Kirkuk: The Ethnopolitics of Conflict and Compromise = Natl. Ethn. Confl. 21st. Crisis Intervention and Time-limited Treatment = Crisis Interv Time-l Crisis Intervention and Time-limited Treatment = Crisis Interv. Time-l. Crisis Management = Manag Sci Theor Appl Crisis Management = Manag. Sci. Theor. Appl. Crisis of Detente in Europe = Cold War Hist-routl Crisis of Detente in Europe = Cold. War. Hist-routl. Crisis of Global Environmental Governance = Environ Polit Ser Crisis of Global Environmental Governance = Environ. Polit. Ser. Crisis of Global Institutions = Glob Inst Crisis of Global Institutions = Glob. Inst. Crisis of Leninism and The Decline of The Left = J S Pub Int Crisis of Leninism and The Decline of The Left = J. S. Pub. Int. Crisis-the Journal of Crisis Intervention and Suicide Prevention = Crisis Cristianesimo nella storia: richerche storiche, esegetiche, teologiche = CrSt Criteria and Indicators for Sustainable Forest Management At The Forest Management Unit Level = Eur Forest Inst Proc Criteria and Indicators for Sustainable Forest Management At The Forest Management Unit Level = Eur. Forest Inst. Proc. Criterion = Criterion Critica D Arte = Critica Arte Critica Hispanica = Critica Hispanica Critical America Series = Critical America Critical Anthropology = Crit Anthrop Critical Anthropology = Crit. Anthrop. Critical Appraisal of Fetal Surveillance = Int Congr Ser Critical Appraisal of Fetal Surveillance = Int. Congr. Ser. Critical Appraisal of Physical Science As A Human Enterprise = Sci Technol Educ Lib Critical Appraisal of Physical Science As A Human Enterprise = Sci. Technol. Educ. Lib. Critical Approaches to Comparative Education: Vertical Case Studies From Africa, Europe, The Middle East, and The Americas = Int Dev Educ Critical Approaches to Comparative Education: Vertical Case Studies From Africa, Europe, The Middle East, and The Americas = Int. Dev. Educ. Critical Approaches to Food in Children's Literature = Child Lit Cult Critical Approaches to Food in Children's Literature = Child. Lit. Cult. Critical Approaches to Law = Crit Approach Law Critical Approaches to Law = Crit. Approach. Law Critical Arts-a Journal of South-north Cultural and Media Studies = Crit Arts Critical Arts-a Journal of South-north Cultural and Media Studies = Crit. Arts. Critical Arts-south-north Cultural and Media Studies = Crit Arts Critical Arts-south-north Cultural and Media Studies = Crit. Arts. Critical Asian Studies = Crit Asian Stud Critical Asian Studies = Crit. Asian Stud. Critical Asian Studies-series = Crit Asian Stud-ser Critical Asian Studies-series = Crit. Asian Stud-ser. Critical Authors and Issues = Crit Author Iss Critical Authors and Issues = Crit. Author. Iss. Critical Black Studies Series = Crit Black Stud Ser Critical Black Studies Series = Crit. Black Stud. Ser. Critical Care and Resuscitation = Crit Care Resusc Critical Care and Resuscitation = Crit. Care Resusc. Critical care and resuscitation : journal of the Australasian Academy of Critical Care Medicine = Crit Care Resusc Critical care clinics = Crit Care Clin Critical Care Clinics=Crit Care Clin;; Critical Care Clinics = Crit Care Clin Critical Care Clinics = Crit. Care Clin. Critical Care = Crit Care Critical Care = Crit. Care Critical care (London, England) = Crit Care Critical care medicine = Crit Care Med Critical Care Medicine=Crit Care Med;; Critical Care Medicine = Crit Care Med Critical Care Medicine = Crit. Care Med. Critical Care Medicine Series = Crit Care Med Ser Critical Care Medicine Series = Crit. Care Med. Ser. Critical care nurse = Crit Care Nurse Critical Care Nurse = Crit Care Nurse Critical Care Nurse = Crit. Care Nurse Critical care nursing clinics of North America = Crit Care Nurs Clin North Am Critical Care Nursing Clinics of North America = Crit. Care Nurs. Clin. North Am. Critical care nursing quarterly = Crit Care Nurs Q Critical Care Nursing Quarterly = Crit. Care Nurs. Q. Critical care update = Crit Care Update Critical Care Update = Crit. Care Update Critical Choices = Ethic Techn Critical Choices = Ethic. Techn. Critical Companion to Zoosemiotics: People, Paths, Ideas = Biosemiotics Ser Critical Companion to Zoosemiotics: People, Paths, Ideas = Biosemiotics. Ser. Critical Concerns in Blindness = Crit Concerns Blind Critical Concerns in Blindness = Crit. Concerns Blind. Critical Constructions-studies On Education and Society = Crit Constr Critical Constructions-studies On Education and Society = Crit. Constr. Critical Cultural Studies of Childhood = Crit Cult Stud Child Critical Cultural Studies of Childhood = Crit. Cult. Stud. Child. Critical Dialogues in Southeast Asian Studies = Crit Dialogues South Critical Dialogues in Southeast Asian Studies = Crit. Dialogues South. Critical Discourse Analysis: An Interdisciplinary Perspective = Lang Linguist Ser Critical Discourse Analysis: An Interdisciplinary Perspective = Lang. Linguist. Ser. Critica Letteraria = Critica Lett Critica Letteraria = Critica Lett. Critical Global Perspectives: Rethinking Knowledge About Global Societies = Res Soc Educ Critical Global Perspectives: Rethinking Knowledge About Global Societies = Res. Soc. Educ. Critical Graphicacy: Understanding Visual Representation Practices in School Science = Sci Technol Educ Lib Critical Graphicacy: Understanding Visual Representation Practices in School Science = Sci. Technol. Educ. Lib. Critical History of French Children's Literature, Vol 1: 1600-1830 = Child Lit Cult Critical History of French Children's Literature, Vol 1: 1600-1830 = Child. Lit. Cult. Critical Information Infrastructures Security = Lect Notes Comput Sc Critical Information Infrastructures Security = Lect. Notes. Comput. Sc. Critical Infrastructure Protection Iii = Ifip Adv Inf Comm Te Critical Infrastructure Protection Iii = Ifip. Adv. Inf. Comm. Te. Critical Infrastructure Protection Ii = Int Fed Info Proc Critical Infrastructure Protection Ii = Int. Fed. Info. Proc. Critical Infrastructure Protection = Int Fed Info Proc Critical Infrastructure Protection = Int. Fed. Info. Proc. Critical Infrastructures State of The Art in Research and Application = Int Ser Oper Res Man Critical Infrastructures State of The Art in Research and Application = Int. Ser. Oper. Res. Man. Critical inquiry = Crit Inq Critical Inquiry = Crit Inquiry Critical Inquiry = Crit. Inquiry Critical Interfacial Issues in Thin-film Optoelectronic and Energy Conversion Devices = Mater Res Soc Symp P Critical Interfacial Issues in Thin-film Optoelectronic and Energy Conversion Devices = Mater. Res. Soc. Symp. P. Critical Issues and State-of-the-art in Lifeline Earthquake Engineering = Tech Coun L Critical Issues and State-of-the-art in Lifeline Earthquake Engineering = Tech. Coun. L. Critical Issues Facing The Middle East: Security, Politics, and Economics = Initiat Strateg Stud Critical Issues Facing The Middle East: Security, Politics, and Economics = Initiat. Strateg. Stud. Critical Issues in Air Transport Economics and Business = Routl Stud Mod World Critical Issues in Air Transport Economics and Business = Routl. Stud. Mod. World. Critical Issues in Educational Leadership Series = Crit Iss Educ Leader Critical Issues in Educational Leadership Series = Crit. Iss. Educ. Leader. Critical Issues in Global Politics = Crit Iss Glob Polit Critical Issues in Global Politics = Crit. Iss. Glob. Polit. Critical Issues in Mathematics Education = Mont Math Enthus Mon Critical Issues in Mathematics Education = Mont. Math. Enthus. Mon. Critical Issues in The Treatment of Affective Disorders = Int Acad B Critical Issues in The Treatment of Affective Disorders = Int. Acad. B. Critical Issues in The Treatment of Schizophrenia = Int Acad B Critical Issues in The Treatment of Schizophrenia = Int. Acad. B. Critical Loads: Concept and Applications = Ite Symp Critical Loads: Concept and Applications = Ite. Symp. Critical Mass: The Emergence of Global Civil Society = Stud Int Gov Critical Mass: The Emergence of Global Civil Society = Stud. Int. Gov. Critical Multicultural Analysis of Children's Literature: Mirrors, Windows, and Doors = Lang Cult Teach Critical Multicultural Analysis of Children's Literature: Mirrors, Windows, and Doors = Lang. Cult. Teach. Critical Path AIDS project = Crit Path AIDS Proj Critical pathways in cardiology = Crit Pathw Cardiol Critical Pedagogies of Consumption = Sociocult Polit Hist Critical Pedagogies of Consumption = Sociocult. Polit. Hist. Critical Pedagogy and The Everyday Classroom = Explor Educ Purp Critical Pedagogy and The Everyday Classroom = Explor. Educ. Purp. Critical Pedagogy in The Twenty-first Century: A New Generation of Scholars = Crit Constr Critical Pedagogy in The Twenty-first Century: A New Generation of Scholars = Crit. Constr. Critical Pedagogy in Uncertain Times: Hopes and Possibilities = Educ Polit Pub Life Critical Pedagogy in Uncertain Times: Hopes and Possibilities = Educ. Polit. Pub. Life. Critical Perspectives: A Guilford Series = Crit Pers G Critical Perspectives: A Guilford Series = Crit. Pers. G. Critical Perspectives = Crit Perspect Critical Perspectives = Crit. Perspect. Critical Perspectives On Asian Pacific Americans = Crit Per Asian Critical Perspectives On Asian Pacific Americans = Crit. Per. Asian Critical Perspectives On Bell Hooks = Crit Soc Thought Critical Perspectives On Bell Hooks = Crit. Soc. Thought. Critical Perspectives On Global Governance = Ripe Ser Glob Polit Critical Perspectives On Global Governance = Ripe. Ser. Glob. Polit. Critical Perspectives On The Responsibility to Protect: Interrogating Theory and Practice = Rout Stud Interv Sta Critical Perspectives On The Responsibility to Protect: Interrogating Theory and Practice = Rout. Stud. Interv. Sta. Critical Political Economy: Complexity, Rationality, and The Logic of Post-orthodox Pluralism = Routl Front Polit Ec Critical Political Economy: Complexity, Rationality, and The Logic of Post-orthodox Pluralism = Routl. Front. Polit. Ec. Critical public health = Crit Public Health Critical Quarterly = Crit Quart Critical Quarterly = Crit. Quart. Critical Realism-interventions = Crit Realism Interv Critical Realism-interventions = Crit. Realism. Interv. Critical Reflections On Australian Public Policy: Selected Essays = Anzsog Monogr Critical Reflections On Australian Public Policy: Selected Essays = Anzsog. Monogr. Critical Regimes of Two-phase Flows With A Polydisperse Solid Phase = Fluid Mech Appl Critical Regimes of Two-phase Flows With A Polydisperse Solid Phase = Fluid. Mech. Appl. Critical Review=Critic. Rev. Critical Review = Crit Rev Critical Review = Crit. Rev. Critical Review: Industrial Lasers and Applications = Proc Spie Critical Review: Industrial Lasers and Applications = Proc. Spie. Critical Review: Industrial Lasers and Applications = P Soc Photo-opt Ins Critical Review: Industrial Lasers and Applications = P. Soc. Photo-opt. Ins. Critical Reviews in Analytical Chemistry = Crit Rev Anal Chem Critical Reviews in Analytical Chemistry = Crit. Rev. Anal. Chem. Critical Reviews in Biochemistry and Molecular Biology = Crit Rev Biochem Mol Critical Reviews in Biochemistry and Molecular Biology = Crit. Rev. Biochem. Mol. Critical reviews in biochemistry and molecular biology = Crit Rev Biochem Mol Biol Critical Reviews in Biochemistry and Molecular Biology = Crit. Rev. Biochem. Mol. Biol. Critical Reviews In Biochemistry and Molecular Biology=Crit Rev Biochem Mol Biol;; Critical Reviews in Biocompatibility = Crit Rev Biocompat Critical Reviews in Biocompatibility = Crit. Rev. Biocompat. Critical reviews in bioengineering = Crit Rev Bioeng Critical reviews in biomedical engineering = Crit Rev Biomed Eng Critical Reviews in Biomedical Engineering = Crit Rev Biomed Eng Critical Reviews in Biomedical Engineering = Crit. Rev. Biomed. Eng. Critical Reviews In Biomedical Engineering=Crit Rev Biomed Eng;; Critical reviews in biotechnology = Crit Rev Biotechnol Critical Reviews in Biotechnology = Crit Rev Biotechnol Critical Reviews in Biotechnology = Crit. Rev. Biotechnol. Critical Reviews In Biotechnology=Crit Rev Biotechnol;; Critical Reviews in Bone and Mineral Metabolism = Crit. Rev. Bone Miner. Metab. Critical reviews in clinical laboratory sciences = Crit Rev Clin Lab Sci Critical Reviews in Clinical Laboratory Sciences = Crit. Rev. Clin. Lab. Sci. Critical Reviews In Clinical Laboratory Sciences=Crit Rev Clin Lab Sci;; Critical Reviews in Clinical Laboratory Sciences = Crit Rev Cl Lab Sci Critical Reviews in Clinical Laboratory Sciences = Crit. Rev. Cl. Lab. Sci. Critical Reviews in Combinatorial Chemistry = Crit Rev Comb Chem Critical Reviews in Combinatorial Chemistry = Crit. Rev. Comb. Chem. Critical Reviews in Computed Tomography7 = Crit. Rev. Comput. Tomogr. Critical reviews in computed tomography = Crit Rev Comput Tomogr Critical Reviews in Computed Tomography = Crit. Rev. Comput. Tomogr. Critical Reviews in Critical Laboratory Sciences = Crit. Rev. Clin. Lab. Sci. Critical Reviews in Diagnostic Imaging = Crit Rev Diagn Imag Critical Reviews in Diagnostic Imaging = Crit. Rev. Diagn. Imag. Critical reviews in diagnostic imaging = Crit Rev Diagn Imaging Critical Reviews in Diagnostic Imaging = Crit. Rev. Diagn. Imaging Critical Reviews In Diagnostic IMAging=Crit Rev Diagn Imaging;; Critical Reviews in Environmental Control = Crit Rev Env Contr Critical Reviews in Environmental Control = Crit. Rev. Env. Contr. Critical Reviews in Environmental Science and Technology = Crit Rev Env Sci Tec Critical Reviews in Environmental Science and Technology = Crit. Rev. Env. Sci. Tec. Critical Reviews in Environment Science and Technology = Crit. Rev. Env. Sci. Technol. Critical Reviews in Eukaryotic Gene Expression = Crit Rev Eukar Gene Critical Reviews in Eukaryotic Gene Expression = Crit. Rev. Eukar. Gene Critical reviews in eukaryotic gene expression = Crit Rev Eukaryot Gene Expr Critical Reviews in Eukaryotic Gene Expression = Crit. Rev. Eukaryot. Gene Expr. Critical Reviews In Eukaryotic Gene Expression=Crit Rev Eukaryot Gene Expr;; Critical Reviews in Food Science and Nutrition = Crit Rev Food Sci Critical Reviews in Food Science and Nutrition = Crit. Rev. Food Sci. Critical reviews in food science and nutrition = Crit Rev Food Sci Nutr Critical Reviews in Food Science and Nutrition = Crit. Rev. Food Sci. Nutr. Critical Reviews In Food Science and Nutrition=Crit Rev Food Sci Nutr;; Critical reviews in immunology = Crit Rev Immunol Critical Reviews in Immunology = Crit Rev Immunol Critical Reviews in Immunology = Crit. Rev. Immunol. Critical Reviews In Immunology=Crit Rev Immunol;; Critical reviews in medical informatics = Crit Rev Med Inform Critical Reviews in Medical Informatics = Crit. Rev. Med. Inform. Critical reviews in microbiology = Crit Rev Microbiol Critical Reviews in Microbiology = Crit Rev Microbiol Critical Reviews in Microbiology = Crit. Rev. Microbiol. Critical Reviews In Microbiology=Crit Rev Microbiol;; Critical reviews in neurobiology = Crit Rev Neurobiol Critical Reviews in Neurobiology = Crit Rev Neurobiol Critical Reviews in Neurobiology = Crit. Rev. Neurobiol. Critical Reviews In Neurobiology=Crit Rev Neurobiol;; Critical reviews in neurosurgery : CR = Crit Rev Neurosurg Critical Reviews in Neurosurgery = Crit Rev Neurosurg Critical Reviews in Neurosurgery = Crit. Rev. Neurosurg. Critical reviews in oncogenesis = Crit Rev Oncog Critical Reviews in Oncogenesis = Crit. Rev. Oncog. Critical Reviews In Oncogenesis=Crit Rev Oncog;; Critical Reviews in Oncogenesis = Crit Rev Oncogenesis Critical Reviews in Oncogenesis = Crit. Rev. Oncogenesis Critical Reviews in Oncology/hematology = Crit Rev Oncol Hemat Critical Reviews in Oncology/hematology = Crit. Rev. Oncol. Hemat. Critical Reviews in Oncology Hematology = Crit Rev Oncol Hemat Critical Reviews in Oncology Hematology = Crit. Rev. Oncol. Hemat. Critical reviews in oncology/hematology = Crit Rev Oncol Hematol Critical Reviews in Oncology/Hematology = Crit. Rev. Oncol. Hematol. Critical Reviews In Oncology/Hematology=Crit Rev Oncol Hematol;; Critical reviews in oral biology and medicine : an official publication of the American Association of Oral Biologists = Crit Rev Oral Biol Med Critical Reviews in Oral Biology and Medicine = Crit Rev Oral Biol M Critical Reviews in Oral Biology and Medicine = Crit. Rev. Oral Biol. M. Critical Reviews in Oral Biology and Medicine = Crit. Rev. Oral Biol. Med. Critical Reviews In Oral Biology and Medicine=Crit Rev Oral Biol Med;; Critical Reviews in Oral Biology & Medicine = Crit Rev Oral Biol M Critical Reviews in Oral Biology & Medicine = Crit. Rev. Oral Biol. M. Critical reviews in plant sciences = CRC Crit Rev Plant Sci Critical Reviews in Plant Sciences = Crit Rev Plant Sci Critical Reviews in Plant Sciences = Crit. Rev. Plant Sci. Critical Reviews in Solid State and Materials Sciences = Crit Rev Solid State Critical Reviews in Solid State and Materials Sciences = Crit. Rev. Solid State Critical Reviews in Solid State and Materials Sciences = Crit. Rev. Solid State Mater. Sci. Critical Reviews in Surface Chemistry = Crit Rev Surf Chem Critical Reviews in Surface Chemistry = Crit. Rev. Surf. Chem. Critical Reviews in Therapeutic Drug Carrier Systems = Crit Rev Ther Drug Critical Reviews in Therapeutic Drug Carrier Systems = Crit. Rev. Ther. Drug Critical reviews in therapeutic drug carrier systems = Crit Rev Ther Drug Carrier Syst Critical Reviews in Therapeutic Drug Carrier Systems = Crit. Rev. Ther. Drug Carrier Syst. Critical Reviews In Therapeutic Drug Carrier Systems=Crit Rev Ther Drug Carrier Syst;; Critical reviews in toxicology = Crit Rev Toxicol Critical Reviews in Toxicology = Crit Rev Toxicol Critical Reviews in Toxicology = Crit. Rev. Toxicol. Critical Reviews In Toxicology=Crit Rev Toxicol;; Critical Reviews of Optical Science and Technology = Crit Rev Op Critical Reviews of Optical Science and Technology = Crit. Rev. Op. Critical Service-learning As Revolutionary Pedagogy: A Project of Student Agency in Action = Crit Constr Critical Service-learning As Revolutionary Pedagogy: A Project of Student Agency in Action = Crit. Constr. Critical Social Policy = Crit Soc Policy Critical Social Policy = Crit. Soc. Policy Critical social research = Crit Soc Res Critical Social Thought = Crit Soc Thought Critical Social Thought = Crit. Soc. Thought Critical sociology = Crit Sociol Critical Studies : A Journal of Critical Theory, Literature and Culture = Crit Stud Critical Studies : A Journal of Critical Theory, Literature and Culture = Crit. Stud. Critical Studies = Crit Stud Critical Studies = Crit. Stud. Critical Studies in Health and Society = Crit Stud Health Soc Critical Studies in Health and Society = Crit. Stud. Health Soc. Critical Studies in Mass Communication = Crit Stud Mass Comm Critical Studies in Mass Communication = Crit. Stud. Mass Comm. Critical studies in mass communication : CSMC : a publication of the Speech Communication Association = Crit Stud Mass Commun Critical Studies in Media Communication = Crit Stud Media Comm Critical Studies in Media Communication = Crit. Stud. Media Comm. Critical Studies, Vol 1, No 2, 1989 = Crit Stud Critical Studies, Vol 1, No 2, 1989 = Crit. Stud. Critical Studies, Vol 2, No 1/2 1990 = Crit Stud Critical Studies, Vol 2, No 1/2 1990 = Crit. Stud. Critical Study of The Euthalian Apparatus = Arb Neutest Textfors Critical Study of The Euthalian Apparatus = Arb. Neutest. Textfors. Critical Technologies for The Future of Computing = Proc Spie Critical Technologies for The Future of Computing = Proc. Spie. Critical Technologies for The Future of Computing = P Soc Photo-opt Ins Critical Technologies for The Future of Computing = P. Soc. Photo-opt. Ins. Critical Terrorism Studies = Crit Terror Stud Critical Terrorism Studies = Crit. Terror. Stud. Critical Theory: Diverse Objects, Diverse Subjects = Curr Perspect Soc Th Critical Theory: Diverse Objects, Diverse Subjects = Curr. Perspect. Soc. Th. Critical Theory Ethics for Business and Public Administration = Ethics Pract Critical Theory Ethics for Business and Public Administration = Ethics Pract. Critical Theory in Russia and The West = Basees-rout Ser Russ Critical Theory in Russia and The West = Basees-rout. Ser. Russ. Critical Theory of Robert W. Cox: Fugitive Or Guru = Int Polit Econ Ser Critical Theory of Robert W. Cox: Fugitive Or Guru = Int. Polit. Econ. Ser. Critical Thinking About Sex, Love, and Romance in The Mass Media - Media Literacy Applications = Routl Commun Ser Critical Thinking About Sex, Love, and Romance in The Mass Media - Media Literacy Applications = Routl. Commun. Ser. Critica; revista hispanoamericana de filosofia = Critica Critica-revista Hispanoamericana De Filosofia = Critica Critica-revista Hispanoamericana De Filosofia = Critica. Critica Storica = Critica Storica Critica storica = Crit Stor Critica storica = CS Criticism-a Quarterly for Literature and The Arts = Crit-q Lit Art Criticism-a Quarterly for Literature and The Arts = Crit-q. Lit. Art. Criticism, Crisis, and Contemporary Narrative: Textual Horizons in An Age of Global Risk = Rout Stud Contemp Li Criticism, Crisis, and Contemporary Narrative: Textual Horizons in An Age of Global Risk = Rout. Stud. Contemp. Li. Criticon = Criticon Criticon, Vol 110 = Criticon Criticon, Vol 110 = Criticon. Critics of The Twentieth Century = Crit Twent Century Critics of The Twentieth Century = Crit. Twent. Century Critique (Clandeboye, Man.) = Critique Critique = Critique Critique of anthropology = Crit Anthropol Critique of Anthropology = Crit Anthropol Critique of Anthropology = Crit. Anthropol. Critique of The Quantum Power of Judgement = Kantstudien Critique of The Quantum Power of Judgement = Kantstudien. Critique, Security and Power = Routl Crit Secur Stu Critique, Security and Power = Routl. Crit. Secur. Stu. Critique-studies in Contemporary Fiction = Critique-st Contemp Critique-studies in Contemporary Fiction = Critique-st. Contemp. Critiquing Postmodernism in Contemporary Discourses of Race = Am Lit Read Twenty-f Critiquing Postmodernism in Contemporary Discourses of Race = Am. Lit. Read. Twenty-f. CRM advocate = CRM Advocate CRM Monograph Series = CRM Monogr. Ser. Crm Proceedings & Lecture Notes = Crm Proc & Lect Note Crm Proceedings & Lecture Notes = Crm Proc. & Lect. Note. CRM Proceedings & Lecture Notes = CRM Proc. Lecture Notes Crm Series = Crm Ser Crm Series = Crm Ser. Crm Series in Mathematical Physics = Crm Ser Math Phys Crm Series in Mathematical Physics = Crm Ser. Math. Phys. CRNA = CRNA CRNA : the clinical forum for nurse anesthetists = CRNA Crnle Reviews Journal = Crnle Rev J Crnle Reviews Journal = Crnle Rev. J. Croatian Academy of Sciences and Arts Institute for Historical Sciences in Dubrovnik Special Publication Monograph Series = Croat Acad Sci Arts Croatian Academy of Sciences and Arts Institute for Historical Sciences in Dubrovnik Special Publication Monograph Series = Croat. Acad. Sci. Arts Croatian Journal of Forest Engineering = Croat J For Eng Croatian Journal of Forest Engineering = Croat. J. For. Eng. Croatian Journal of Philosophy = Croat J Philos Croatian Journal of Philosophy = Croat. J. Philos. Croatian medical journal = Croat Med J Croatian Medical Journal = Croat Med J Croatian Medical Journal = Croat. Med. J. Croatica Chemica Acta = Croat Chem Acta Croatica Chemica Acta = Croat. Chem. Acta Crohns Disease: A Multidisciplinary Approach = Updates Surg Crohns Disease: A Multidisciplinary Approach = Updates. Surg. Crohn's Disease - Pathogenesis and Medical Therapy = Res Clin Forums Crohn's Disease - Pathogenesis and Medical Therapy = Res. Clin. Forums. Cronache dell'IDI = Cron IDI Cronache di archeologia = CronA Cronache ercolanesi. Bollettino del Centro internazionale per lo studio dei papiri ercolanesi = CronErcol Cronache Ercolanesi = CronErc Cronache pompeiane = CronPomp Cronache pompeiane = Cron Pompeiane Cronos (Valencia, Spain). = Cronos Crop Biosecurity: Assuring Our Global Food Supply = Nato Sci Peace Secur Crop Biosecurity: Assuring Our Global Food Supply = Nato. Sci. Peace. Secur. Crop Biotechnology = Acs Sym Ser Crop Biotechnology = Acs. Sym. Ser. Crop Breeding and Applied Biotechnology = Crop Breed Appl Biot Crop Breeding and Applied Biotechnology = Crop Breed. Appl. Biot. Crop & Pasture Science = Crop Pasture Sci Crop & Pasture Science = Crop Pasture Sci. Crop Production Science in Horticulture Series = Crop Prod Sci Hortic Crop Production Science in Horticulture Series = Crop Prod. Sci. Hortic. Crop Protection and Sustainable Agriculture = Ciba F Symp Crop Protection and Sustainable Agriculture = Ciba. F. Symp. Crop Protection = Crop Prot Crop Protection = Crop Prot. Crop Protection Inorganic and Low Input Agriculture = Br Crop Pr Crop Protection Inorganic and Low Input Agriculture = Br. Crop Pr. Crop Protection in The Developing World = Br Crop Pr Crop Protection in The Developing World = Br. Crop Pr. Crop Research = Crop Res Crop Research = Crop Res. Crops and Soils Magazine = Crops Soils Crop science = Crop Sci Crop Science = Crop Sci Crop Science = Crop Sci. Cross-border Banking: Regulatory Challenges = World Sci Stud Int E Cross-border Banking: Regulatory Challenges = World. Sci. Stud. Int. E. Cross-border Governance and Sustainable Spatial Development: Mind The Gaps = Cent E Eur Dev Stud Cross-border Governance and Sustainable Spatial Development: Mind The Gaps = Cent. E. Eur. Dev. Stud. Cross-border Security Over Tangibles = Schr Gemeinschaftspr Cross-border Security Over Tangibles = Schr. Gemeinschaftspr. Cross-coupling Reactions = Top Curr Chem Cross-coupling Reactions = Top. Curr. Chem. Cross-craft and Cross-cultural Interactions in Ceramics = Ceram Civil Cross-craft and Cross-cultural Interactions in Ceramics = Ceram. Civil. Cross-cultural Advancements in Positive Psychology = Cross Cult Adv Posit Cross-cultural Advancements in Positive Psychology = Cross. Cult. Adv. Posit. Cross-cultural Buyer Behavior = Adv Int Marketing Cross-cultural Buyer Behavior = Adv. Int. Marketing. Cross-cultural Differences in Perspectives On The Self = Nebr Sym Motiv Cross-cultural Differences in Perspectives On The Self = Nebr. Sym. Motiv. Cross-cultural Economic Management = Glob Econ Stud Cross-cultural Economic Management = Glob. Econ. Stud. Cross Cultural Management-an International Journal = Cross Cult Manag Cross Cultural Management-an International Journal = Cross Cult. Manag. Cross-cultural Perspectives On Policy and Practice: Decolonizing Community Contexts = Routl Res Educ Cross-cultural Perspectives On Policy and Practice: Decolonizing Community Contexts = Routl. Res. Educ. Cross-cultural Perspectives On Women = Cross C P W Cross-cultural Perspectives On Women = Cross. C. P. W. Cross-cultural Perspectives On Youth and Violence = Cont St Soc Cross-cultural Perspectives On Youth and Violence = Cont. St. Soc. Cross-cultural Pragmatics = Mouton Txb Cross-cultural Pragmatics = Mouton. Txb. Cross-cultural Psychology = Cross C Psy Cross-cultural Psychology = Cross. C. Psy. Cross-cultural Research = Cross-cult Res Cross-cultural Research = Cross-cult. Res. Cross/cultures : Readings in The Post/colonial Literatures in English = Cross C Rea Cross/cultures : Readings in The Post/colonial Literatures in English = Cross. C. Rea. Crosscurrents and Crosscutting Themes = Res Educ Afr Caribb Crosscurrents and Crosscutting Themes = Res. Educ. Afr. Caribb. Cross currents (Ann Arbor, Mich.) = Cross Curr (Ann Arbor MI) Cross currents = Cross Curr Crosscurrents in Contemporary Psychology = Cross Cont Crosscurrents in Contemporary Psychology = Cross. Cont. Cross-curricular Teaching and Learning in The Secondary School = Crosscurr Teach Lear Cross-curricular Teaching and Learning in The Secondary School = Crosscurr. Teach. Lear. Cross-curricular Teaching and Learning in The Secondary School: Mathematics = Crosscurr Teach Lear Cross-curricular Teaching and Learning in The Secondary School: Mathematics = Crosscurr. Teach. Lear. Cross Disciplinary Advances in Quantum Computing = Contemp Math Cross Disciplinary Advances in Quantum Computing = Contemp. Math. Cross-disciplinary Applied Research in Materials Science and Technology = Mater Sci Forum Cross-disciplinary Applied Research in Materials Science and Technology = Mater. Sci. Forum. Cross Infections: Types, Causes and Prevention = Public Health 21st C Cross Infections: Types, Causes and Prevention = Public. Health. 21st. C. Crossing Borders in East Asian Higher Education = Cerc Stud Comp Educ Crossing Borders in East Asian Higher Education = Cerc. Stud. Comp. Educ. Crossing Borders: Love Between Women in Medieval French and Arabic Literatures = Middle Ages Ser Crossing Borders: Love Between Women in Medieval French and Arabic Literatures = Middle. Ages. Ser. Crossing Cultural Borders Through The Actors Work = Routl Adv Theatr Per Crossing Cultural Borders Through The Actors Work = Routl. Adv. Theatr. Per. Crossing Frontiers: Cultural Exchange and Conflict = Int Forsch Allg Vgl Crossing Frontiers: Cultural Exchange and Conflict = Int. Forsch. Allg. Vgl. Crossing Languages and Research Methods: Analyses of Adult Foreign Language Reading = Res Second Lang Lear Crossing Languages and Research Methods: Analyses of Adult Foreign Language Reading = Res. Second. Lang. Lear. Cross-language Studies of Learning to Read and Spell = Nato Adv Sci I D-beh Cross-language Studies of Learning to Read and Spell = Nato. Adv. Sci. I. D-beh. Crosslinguistic Research in Syntax and Semantics: Negation, Tense and Clausal Architecture = Georget U R Crosslinguistic Research in Syntax and Semantics: Negation, Tense and Clausal Architecture = Georget. U. R. Cross-linguistic Variation in Sentence Processing: Evidence From Rc Attachment Preferences in Greek = Stud Theor Psycholin Cross-linguistic Variation in Sentence Processing: Evidence From Rc Attachment Preferences in Greek = Stud. Theor. Psycholin. Crosslinked and Thermallly Treated Ultra-high Molecular Weight Polyethylene for Joint Replacements = Am Soc Test Mater Crosslinked and Thermallly Treated Ultra-high Molecular Weight Polyethylene for Joint Replacements = Am. Soc. Test. Mater. Crosslinking and Scission in Polymers = Nato Adv Sci I C-mat Crosslinking and Scission in Polymers = Nato. Adv. Sci. I. C-mat. Crosslinking in Materials Science = Adv Polym Sci Crosslinking in Materials Science = Adv. Polym. Sci. Cross-media Service Delivery = Kluwer Int Ser Eng C Cross-media Service Delivery = Kluwer. Int. Ser. Eng. C. Cross-modal Analysis of Speech, Gestures, Gaze and Facial Expressions = Lect Notes Comput Sc Cross-modal Analysis of Speech, Gestures, Gaze and Facial Expressions = Lect. Notes. Comput. Sc. Cross-national Information and Communication Technology: Policies and Practices in Education, Second Edition = Res Educ Policy Loca Cross-national Information and Communication Technology: Policies and Practices in Education, Second Edition = Res. Educ. Policy. Loca. Cross-national Longitudinal Research On Human Development and Criminal Behavior = Nato Adv Sci Inst Se Cross-national Longitudinal Research On Human Development and Criminal Behavior = Nato. Adv. Sci. Inst. Se. Cross-national Research in Self-reported Crime and Delinquency = Nato Adv Sci I D-beh Cross-national Research in Self-reported Crime and Delinquency = Nato. Adv. Sci. I. D-beh. Cross-national Research in Sociology = Asa Pres S Cross-national Research in Sociology = Asa. Pres. S. Crossover Fiction: Global and Historical Perspectives = Child Lit Cult Crossover Fiction: Global and Historical Perspectives = Child. Lit. Cult. Crossover Novel: Contemporary Childrens Fiction and Its Adult Readership = Child Lit Cult Crossover Novel: Contemporary Childrens Fiction and Its Adult Readership = Child. Lit. Cult. Cross-reference = Crossreference Cross-Reference = Crossreference. Cross-reference on human resources management = Crossref Hum Resour Manage Cross-Reference on Human Resources Management = Crossref. Hum. Resour. Manage. Cross Regional Trade Agreements = Polit Econ Asia Pac Cross Regional Trade Agreements = Polit. Econ. Asia. Pac. Crossroads Between Innate and Adaptive Immunity = Adv Exp Med Biol Crossroads Between Innate and Adaptive Immunity = Adv. Exp. Med. Biol. Crossroads Between Innate and Adaptive Immunity Ii = Adv Exp Med Biol Crossroads Between Innate and Adaptive Immunity Ii = Adv. Exp. Med. Biol. Cross-sectoral Policy Impacts On Forests = Eur Forest Inst Proc Cross-sectoral Policy Impacts On Forests = Eur. Forest. Inst. Proc. Crows Behind The Plough = Costerus Es Crows Behind The Plough = Costerus. Es. Cr Submanifolds of Complex Projective Space = Dev Math Cr Submanifolds of Complex Projective Space = Dev. Math. Cr-the New Centennial Review = Cr-new Centen Rev Cr-the New Centennial Review = Cr-new. Centen. Rev. Crucial Issues in Semiconductor Materials and Processing Technologies = Nato Adv Sci Inst Se Crucial Issues in Semiconductor Materials and Processing Technologies = Nato. Adv. Sci. Inst. Se. Crucible = Crucible Cruel Madness of Love: Sex, Syphilis and Psychiatry in Scotland, 1880-1930 = Clio Med Cruel Madness of Love: Sex, Syphilis and Psychiatry in Scotland, 1880-1930 = Clio. Med. Crusades and The Christian World of The East: Rough Tolerance = Middle Ages Ser Crusades and The Christian World of The East: Rough Tolerance = Middle. Ages. Ser. Crustaceana = Crustaceana Crustaceana Monographs = Crustaceana Monogr Crustaceana Monographs = Crustaceana Monogr. Crustacean Issues = Crustacean Iss Crustacean Issues = Crustacean Iss. Crux = Crux Cryobiology=Cryobiology;; Cryobiology = Cryobiology Cryogenic Mixed Refrigerant Processes = Int Cryog Monogr Cryogenic Mixed Refrigerant Processes = Int. Cryog. Monogr. Cryogenic Optical Systems and Instruments Iv = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Iv = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments Ix = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Ix = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments Viii = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Viii = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments Vii = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Vii = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments Vi = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Vi = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments V = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments V = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments Xii = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments Xii = P. Soc. Photo-opt. Ins. Cryogenic Optical Systems and Instruments X = P Soc Photo-opt Ins Cryogenic Optical Systems and Instruments X = P. Soc. Photo-opt. Ins. Cryogenic Particle Detection = Top Appl Phys Cryogenic Particle Detection = Top. Appl. Phys. Cryogenics = Cryogenics Cryo-letters = Cryo-lett Cryo-letters = Cryo-lett. Cryoletters = Cryoletters Cryo letters = Cryo Letters Cryopreservation and Low Temperature Biology in Blood Transfusion = Dev Hematol Cryopreservation and Low Temperature Biology in Blood Transfusion = Dev. Hematol. Cryosphere = Cryosphere Cryospheric Systems: Glaciers and Permafrost = Geol Soc Spec Publ Cryospheric Systems: Glaciers and Permafrost = Geol. Soc. Spec. Publ. Cryptogamic Botany = Cryptogam. Bot. Cryptogamie Algologie = Cryptogamie Algol Cryptogamie Algologie = Cryptogamie Algol. Cryptogamie Bryologie = Cryptogam Bryol Cryptogamie Bryologie = Cryptogam. Bryol. Cryptogamie Bryologie = Cryptogamie Bryol Cryptogamie Bryologie = Cryptogamie Bryol. Cryptogamie Bryologie Lichenologie = Cryptogamie Bryol L Cryptogamie Bryologie Lichenologie = Cryptogamie Bryol. L. Cryptogamie Mycologie = Cryptogamie Mycol Cryptogamie Mycologie = Cryptogamie Mycol. Cryptographic Algorithms On Reconfigurable Hardware = Signals Commun Techn Cryptographic Algorithms On Reconfigurable Hardware = Signals. Commun. Techn. Cryptographic Hardware and Embedded Systems-ches 2000, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems-ches 2000, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2002 = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2002 = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems Ches 2003, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems Ches 2003, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2004, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2004, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2005, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2005, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2006, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2006, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2007, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2007, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2008, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2008, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2009, Proceedings = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2009, Proceedings = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems - Ches 2010 = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems - Ches 2010 = Lect. Notes. Comput. Sc. Cryptographic Hardware and Embedded Systems = Lect Notes Comput Sc Cryptographic Hardware and Embedded Systems = Lect. Notes. Comput. Sc. Cryptography and Coding Ii = Inst Math C Cryptography and Coding Ii = Inst. Math. C. Cryptography and Coding = Lect Notes Comput Sc Cryptography and Coding = Lect. Notes. Comput. Sc. Cryptography and Coding, Proceedings = Lect Notes Comput Sc Cryptography and Coding, Proceedings = Lect. Notes. Comput. Sc. Cryptography and Computational Number Theory = Prog Comput Sci Appl Cryptography and Computational Number Theory = Prog. Comput. Sci. Appl. Cryptography and Computational Number Theory = Prog Com Sc Cryptography and Computational Number Theory = Prog. Com. Sc. Cryptography and Lattices = Lect Notes Comput Sc Cryptography and Lattices = Lect. Notes. Comput. Sc. Cryptography: Policy and Algorithms = Lect Notes Comput Sc Cryptography: Policy and Algorithms = Lect. Notes. Comput. Sc. Cryptologia = Cryptologia Cryptology and Information Security Series = Cryp Info Sec Cryptology and Information Security Series = Cryp. Info. Sec. Cryptology and Information Security Series = Cryptol Inf Sec Ser Cryptology and Information Security Series = Cryptol. Inf. Sec. Ser. Cryptology and Network Security = Lect Notes Comput Sc Cryptology and Network Security = Lect. Notes. Comput. Sc. Cryptology and Network Security, Proceedings = Lect Notes Comput Sc Cryptology and Network Security, Proceedings = Lect. Notes. Comput. Sc. Cryptosporidium: The Analytical Challenge = Roy Soc Ch Cryptosporidium: The Analytical Challenge = Roy. Soc. Ch. Crystal and Epitaxial Growth, Vol 1 = S U P Front Sci Crystal and Epitaxial Growth, Vol 1 = S. U. P. Front. Sci. Crystal and Multilayer Optics = P Soc Photo-opt Ins Crystal and Multilayer Optics = P. Soc. Photo-opt. Ins. Crystal Engineering = Cryst Eng Crystal Engineering = Cryst. Eng. Crystal Engineering: From Molecules and Crystals to Materials = Nato Adv Sci I C-mat Crystal Engineering: From Molecules and Crystals to Materials = Nato. Adv. Sci. I. C-mat. Crystal Engineering: The Design and Application of Functional Solids = Nato Adv Sci I C-mat Crystal Engineering: The Design and Application of Functional Solids = Nato. Adv. Sci. I. C-mat. Crystal Growth and Design = Cryst. Growth Des. Crystal Growth & Design = Cryst Growth Des Crystal Growth & Design = Cryst. Growth Des. Crystal Growth in Science and Technology = Nato Adv Sci I B-phy Crystal Growth in Science and Technology = Nato. Adv. Sci. I. B-phy. Crystal Growth in Space and Related Optical Diagnostics = P Soc Photo-opt Ins Crystal Growth in Space and Related Optical Diagnostics = P. Soc. Photo-opt. Ins. Crystal Growth of Si for Solar Cells = Adv Mater Res-ger Crystal Growth of Si for Solar Cells = Adv. Mater. Res-ger. Crystal Lattice Defects and Amorphous Materials = Cryst Latt Def Amorp Crystal Lattice Defects and Amorphous Materials = Cryst. Latt. Def. Amorp. Crystal Lattice Defects = Cryst Latt Def Amorp Crystal Lattice Defects = Cryst. Latt. Def. Amorp. Crystalline Defects and Contamination: Their Impact and Control in Device Manufacturing Iii - Decon 2001 = Elec Soc S Crystalline Defects and Contamination: Their Impact and Control in Device Manufacturing Iii - Decon 2001 = Elec. Soc. S. Crystalline Oxide-silicon Heterostructures and Oxide Optoelectronics = Mater Res Soc Symp P Crystalline Oxide-silicon Heterostructures and Oxide Optoelectronics = Mater. Res. Soc. Symp. P. Crystallization and Related Phenomena in Amorphous Materials = Mater Res Soc Symp P Crystallization and Related Phenomena in Amorphous Materials = Mater. Res. Soc. Symp. P. Crystallization As A Separations Process = Acs Sym Ser Crystallization As A Separations Process = Acs. Sym. Ser. Crystallization of Polymers = Nato Adv Sci Inst Se Crystallization of Polymers = Nato. Adv. Sci. Inst. Se. Crystallographic Computing 6 = Iucr Crystall Symp Crystallographic Computing 6 = Iucr. Crystall. Symp. Crystallography = Acta Crystallogr., Sect. A: Found. Crystallogr. Crystallography and The World of Symmetry = Springer Ser Mater S Crystallography and The World of Symmetry = Springer. Ser. Mater. S. Crystallography of Quasicrystals: Concepts, Methods and Structures = Springer Ser Mater S Crystallography of Quasicrystals: Concepts, Methods and Structures = Springer. Ser. Mater. S. Crystallography of Supramolecular Compounds = Nato Adv Sci Inst Se Crystallography of Supramolecular Compounds = Nato. Adv. Sci. Inst. Se. Crystallography Reports = Crystallogr Rep+ Crystallography Reports = Crystallogr. Rep. Crystallography Reports = Crystallogr. Rep+.+ Crystallography Reviews = Crystallogr Rev Crystallography Reviews = Crystallogr. Rev. Crystal Materials for Nonlinear Optical Devices and Microgravity Science = P Soc Photo-opt Ins Crystal Materials for Nonlinear Optical Devices and Microgravity Science = P. Soc. Photo-opt. Ins. Crystal Properties and Preparation = Cryst Prop Prep Crystal Properties and Preparation = Cryst. Prop. Prep. Crystal Research and Technology = Cryst Res Technol Crystal Research and Technology = Cryst. Res. Technol. Crystals, Multilayers, and Other Synchrotron Optics = P Soc Photo-opt Ins Crystals, Multilayers, and Other Synchrotron Optics = P. Soc. Photo-opt. Ins. Crystal Structure Communications = Cryst Struct Commun Crystal Structure Communications = Cryst. Struct. Commun. Crystengcomm = Crystengcomm CrystEngComm = CrystEngComm Csap Prevention Monograph = Csap Prevent Monogr Csap Prevention Monograph = Csap Prevent. Monogr. Cseetw 2006: 19th Conference On Software Engineering Education and Training Workshops = C Softw Eng Educ Tr Cseetw 2006: 19th Conference On Software Engineering Education and Training Workshops = C. Softw. Eng. Educ. Tr. Csis Report = Csis Rep Csis Report = Csis Rep. Csl 89 = Lect Notes Comput Sc Csl 89 = Lect. Notes. Comput. Sc. Csli Lecture Notes = Csli Lect N Csli Lecture Notes = Csli Lect. N. CSLI Lecture Notes = CSLI Lecture Notes Csni Specialist Meeting On Simulators and Plant Analyzers = Vtt Symp Csni Specialist Meeting On Simulators and Plant Analyzers = Vtt. Symp. Cssa Special Publications = Cssa Spec Publ Cssa Special Publications = Cssa Spec. Publ. Css Studies in Security and International Relations = Css Stud Sec Int Rel Css Studies in Security and International Relations = Css Stud. Sec. Int. Rel. C(star)-algebras and Elliptic Theory = Trends Math C(star)-algebras and Elliptic Theory = Trends. Math. Csur-ut Series-library for Sustainable Urban Regeneration = Csur Ut Ser Lib Sust Csur-ut Series-library for Sustainable Urban Regeneration = Csur. Ut. Ser. Lib. Sust. Ct 2008: Tomography Confluence = Aip Conf Proc Ct 2008: Tomography Confluence = Aip. Conf. Proc. Cta Publication = Cta Publ Cta Publication = Cta Publ. Ct&f-ciencia Tecnologia Y Futuro = Ct F-cienc Tecn Fut Ct&f-ciencia Tecnologia Y Futuro = Ct. F-cienc. Tecn. Fut. Ct-journal of Computed Tomography = Ct-j Comput Tomogr Ct-journal of Computed Tomography = Ct-j. Comput. Tomogr. Ct of The Airways = Contemp Med Imag Ct of The Airways = Contemp. Med. Imag. Cts-clinical and Translational Science = Cts-clin Transl Sci Cts-clinical and Translational Science = Cts-clin. Transl. Sci. Cuaderni catanesi di studi classici e medievali = CuadCat Cuadernos americanos = Cuad Am Cuadernos Complutenses de historia de la medicina y de la ciencia = Cuad Complut Hist Med Cienc Cuadernos Da Area De Ciencias Marinas = Cuad Area C Cuadernos Da Area De Ciencias Marinas = Cuad. Area C. Cuadernos De Anuario Filosofico = Cuad Anu Filos Cuadernos De Anuario Filosofico = Cuad. Anu. Filos. Cuadernos de arqueología de la Universidad de Navarra = CuadNavarra Cuadernos de arqueología mediterránea = CuadAMed Cuadernos de arquitectura romana = CuadArquitRom Cuadernos de arquitectura y urbanismo = Cuad Arquit Urban Cuadernos de comunicacion AMIDEP = Cuad Comun AMIDEP Cuadernos De Desarrollo Rural = Cuad Desarro Rural Cuadernos De Desarrollo Rural = Cuad. Desarro. Rural Cuadernos de Economia=Cuadernos Econ. Cuadernos de economia (Santiago, Chile) = Cuad Econ Cuadernos de economia social = Cuad Econ Soc Cuadernos De Economia Y Direccion De La Empresa = Cuad Econ Dir Empres Cuadernos De Economia Y Direccion De La Empresa = Cuad. Econ. Dir. Empres. Cuadernos de estudios gallegos = CuadGallegos Cuadernos de estudios gallegos / Instituto Padre Sarmiento de Estudios Gallegos = Cuad Estud Gallegos Cuadernos de filologia clasica = Cuad Filol Cl Cuadernos de filología clásica. Estudios griegos e indoeuropeos. = CFC(G) Cuadernos de filología clásica. Estudios latinos. = CFC(L) Cuadernos de filología clásica. Facultad de letras y filosofía, Universidad de Madrid = CuadFilCl Cuadernos de historia de Espana / Instituto de Historia de la Cultura Espanola, Medioeval y Moderna = Cuad Hist Esp Cuadernos de historia de la medicina espanola = Cuad Hist Med Esp Cuadernos de historia de la salud publica = Cuad Hist Salud Publica Cuadernos de investigación filológica = CIF Cuadernos de investigacion historica = Cuad Invest Hist Cuadernos de la C.V.F.=Cuadernos de la C.V.F. Cuadernos de la UNED = Cuad. UNED Cuadernos del CENDES = Cuad CENDES Cuadernos del CLAEH = Cuad CLAEH Cuadernos del Instituto de Matemática "Beppo Levi" = Cuadern. Inst. Mat. Beppo Levi Cuadernos Del Norte = Cuadernos Norte Cuadernos de nutricion = Cuad Nutr Cuadernos de prehistoria de la Universidad de Granada = CuadGranada Cuadernos de prehistoria i arqueología = CPAM Cuadernos de prehistoria y arqueología castellonense = CuadCastellon Cuadernos de prehistoria y arqueología. Universidad autónoma de Madrid = CuadPrehistA Cuadernos de prehistoria y arqueología. Universidad autónoma de Madrid = CuPaUAM Cuadernos de trabajos de la Escuela española de historia y arqueología en Roma = CuadRom Cuadernos Do Laboratorio Xeoloxico De Laxe, Vol 13, Special Issue = Cad Lab Xeol Laxe Cuadernos Do Laboratorio Xeoloxico De Laxe, Vol 13, Special Issue = Cad. Lab. Xeol. Laxe. Cuadernos Economicos de I.C.E.=Cuadernos Econ. I.C.E. Cuadernos emeritenses = CE Cuadernos hispanicos de historia de la medicina y de la ciencia = Cuad Hisp Hist Med Cienc Cuadernos Hispanoamericanos = Cuadernos Hispanoam Cuadernos Hispanoamericanos = Cuadernos Hispanoam. Cuadernos hispanoamericanos = Cuad Hispanoam Cuadernos medicos-sociales = Cuad Med Soc Cuadernos Para Investigacion De La Literatura Hispanica = Cuadernos Invest Lit Cuadernos Para Investigacion De La Literatura Hispanica = Cuadernos Invest. Lit. Cuadernos valencianos de historia de la medicina y de la ciencia = Cuad Valencia Hist Med Cienc Cuaderns de prehistòria i arqueologia de Castelló = CPAC Cuaj-canadian Urological Association Journal = Cuaj-can Urol Assoc Cuaj-canadian Urological Association Journal = Cuaj-can. Urol. Assoc. Cuba and The United-states = W Wilson L Cuba and The United-states = W. Wilson. L. Cuban Counterpoints = West Hemisphere Ser Cuban Counterpoints = West. Hemisphere. Ser. Cuban Intervention in Angola, 1965-1991: From Che Guevara to Cuito Cuanavale = Cass Mil Stud Cuban Intervention in Angola, 1965-1991: From Che Guevara to Cuito Cuanavale = Cass. Mil. Stud. Cuban Journal of Agricultural Science = Cuban J Agr Sci Cuban Journal of Agricultural Science = Cuban J. Agr. Sci. Cuban Medical Internationalism: Origins, Evolution, and Goals = Stud Am Cuban Medical Internationalism: Origins, Evolution, and Goals = Stud. Am. Cuban studies = Cuban Stud Cuba's Military 1990-2005: Revolutionary Soldiers During Counter-revolutionary Times = Stud Am Cuba's Military 1990-2005: Revolutionary Soldiers During Counter-revolutionary Times = Stud. Am. Cuht '09: Proceedings of The 2nd Wseas International Conference On Cultural Heritage and Tourism = Ma Comput Sci Eng Cuht '09: Proceedings of The 2nd Wseas International Conference On Cultural Heritage and Tourism = Ma. Comput. Sci. Eng. Cuihua Xuebao = Cuihua Xuebao Culinary Aesthetics and Practices in Nineteenth-century American Literature = Ninet-century Major Culinary Aesthetics and Practices in Nineteenth-century American Literature = Ninet-century. Major. Culta Bononia = Culta Bononia Cultic Prophecy in The Psalms = Beih Z Alttest Wiss Cultic Prophecy in The Psalms = Beih. Z. Alttest. Wiss. Cultivated Power: Flowers, Culture, and Politics in The Reign of Louis Xiv = Penn Stud Landsc Arc Cultivated Power: Flowers, Culture, and Politics in The Reign of Louis Xiv = Penn. Stud. Landsc. Arc. Cultivating Science, Harvesting Power: Science and Industrial Agriculture in California = Inside Technol Cultivating Science, Harvesting Power: Science and Industrial Agriculture in California = Inside. Technol. Cult of The Sovereign in Ptolemaic Egypt in The Third Century B.c. = Stud Hellenist Cult of The Sovereign in Ptolemaic Egypt in The Third Century B.c. = Stud. Hellenist. Cultura Baltica = A U U St Ge Cultura Baltica = A. U. U. St. Ge. Cultura e scuola = C&S Cultura e scuola = Cult Sc Cultura-international Journal of Philosophy of Culture and Axiology = Cultura Cultura-international Journal of Philosophy of Culture and Axiology = Cultura. Cultural Anthropology = Cult Anthropol Cultural Anthropology = Cult. Anthropol. Cultural anthropology : journal of the Society for Cultural Anthropology = Cult Anthropol Cultural Approaches to Parenting = Cross Cont Cultural Approaches to Parenting = Cross. Cont. Cultural Aspects of Public Management Reform = Res Public Policy An Cultural Aspects of Public Management Reform = Res. Public Policy. An. Cultura Latina Pagana Fra Terzo E Quinto Secolo Dopo Cristo = Accad Naz Virg Sci M Cultura Latina Pagana Fra Terzo E Quinto Secolo Dopo Cristo = Accad. Naz. Virg. Sci. M. Cultural Competency Training in A Global Society = Int Cult Psychol Cultural Competency Training in A Global Society = Int. Cult. Psychol. Cultural Critique = Cult Crit Cultural Critique = Cult. Crit. Cultural Differences Between The Military and Parent Society in Democratic Countries = Contrib Confl Manag Cultural Differences Between The Military and Parent Society in Democratic Countries = Contrib. Confl. Manag. Cultural Differentiation and Cultural Identity in The Visual Arts = Stud Hist A Cultural Differentiation and Cultural Identity in The Visual Arts = Stud. Hist. A. Cultural Dimension of Ecology = Cul Dev Ser Cultural Dimension of Ecology = Cul. Dev. Ser. Cultural Dimension of Education = Cul Dev Ser Cultural Dimension of Education = Cul. Dev. Ser. Cultural Dimensions of Global Change = Cul Dev Ser Cultural Dimensions of Global Change = Cul. Dev. Ser. Cultural Diversity and Ethnic Minority Psychology = Cultur. Divers. Ethnic Minor. Psychol. Cultural diversity and mental health = Cult Divers Ment Health Cultural Diversity and Mental Health=Cult Divers Ment Health;; Cultural Diversity & Ethnic Minority Psychology = Cult Divers Ethn Min Cultural Diversity & Ethnic Minority Psychology = Cult. Divers. Ethn. Min. Cultural diversity & ethnic minority psychology = Cultur Divers Ethnic Minor Psychol Cultural Diversity in The Armed Forces: An International Comparison = Cass Mil Stud Cultural Diversity in The Armed Forces: An International Comparison = Cass. Mil. Stud. Cultural Diversity in The British Middle Ages: Archipelago, Island, England = New Middle Ages Cultural Diversity in The British Middle Ages: Archipelago, Island, England = New. Middle Ages. Cultural Diversity: Issues, Challenges and Perspectives = Focus Civiliz Cult Cultural Diversity: Issues, Challenges and Perspectives = Focus. Civiliz. Cult. Cultural Diversity, Liberal Pluralism and Schools = Rout Int Stud Philos Cultural Diversity, Liberal Pluralism and Schools = Rout. Int. Stud. Philos. Cultural Dynamics of Social Representation = Cult Dyn Soc Represe Cultural Dynamics of Social Representation = Cult. Dyn. Soc. Represe. Cultural Economics and Theory = Routl Adv Heterod Ec Cultural Economics and Theory = Routl. Adv. Heterod. Ec. Cultural Exclusion in China = Comp Dev Policy Asia Cultural Exclusion in China = Comp. Dev. Policy. Asia. Cultural Factors in Economic Growth = St Econ Ethic Philos Cultural Factors in Economic Growth = St. Econ. Ethic. Philos. Cultural Functions of Intermedial Exploration = Int For Lit Cultural Functions of Intermedial Exploration = Int. For. Lit. Cultural Geographies = Cult Geogr Cultural Geographies = Cult. Geogr. Cultural Heritage and Tourism in The Developing World: A Regional Perspective = Contemp Geogr Leis T Cultural Heritage and Tourism in The Developing World: A Regional Perspective = Contemp. Geogr. Leis. T. Cultural Heritage Conservation in The American South = South Anthr Cultural Heritage Conservation in The American South = South Anthr. Cultural Heritage Management in China: Preserving The Cities of The Pearl River Delta = Routl Contemp China Cultural Heritage Management in China: Preserving The Cities of The Pearl River Delta = Routl. Contemp. China. Cultural Hermeneutics = Cult Hermeneut Cultural Hermeneutics = Cult. Hermeneut. Cultural History of Finance = Routl Explor Econ Hi Cultural History of Finance = Routl. Explor. Econ. Hi. Cultural Integrity and World Community = S Soc Polit Cultural Integrity and World Community = S. Soc. Polit. Cultural Intermediaries: Jewish Intellectuals in Early Modern Italy = Jew Cult Context Cultural Intermediaries: Jewish Intellectuals in Early Modern Italy = Jew. Cult. Context. Cultural Landscapes of Port Au Choix: Precontact Hunter-gatherers of Northwestern Newfoundland = Interd Contrib Arch Cultural Landscapes of Port Au Choix: Precontact Hunter-gatherers of Northwestern Newfoundland = Interd. Contrib. Arch. Culturally Responsive Counseling With Asian American Men = Rout Ser Counsel Culturally Responsive Counseling With Asian American Men = Rout. Ser. Counsel. Culturally Sensitive Oral Healthcare = Quintessent Dent Pra Culturally Sensitive Oral Healthcare = Quintessent. Dent. Pra. Cultural Memory in The Present = Cul Mem Pre Cultural Memory in The Present = Cul. Mem. Pre. Cultural Memory Studies: An International and Interdisciplinary Handbook = Medien Kult Erinneru Cultural Memory Studies: An International and Interdisciplinary Handbook = Medien. Kult. Erinneru. Cultural Neuroscience: Cultural Influences On Brain Function = Prog Brain Res Cultural Neuroscience: Cultural Influences On Brain Function = Prog. Brain Res. Cultural Overstretch?: Differences Between Old and New Member States of The Eu and Turkey = Routl Eur Sociol Ass Cultural Overstretch?: Differences Between Old and New Member States of The Eu and Turkey = Routl. Eur. Sociol. Ass. Cultural Politics of Postmodernism = Cur Deb Art Cultural Politics of Postmodernism = Cur. Deb. Art. Cultural Politics of The Paralympic Movement: Through An Anthropological Lens = Routl Crit Stud Spor Cultural Politics of The Paralympic Movement: Through An Anthropological Lens = Routl. Crit. Stud. Spor. Cultural Processes in Child Development = Minn Sym Child Psych Cultural Processes in Child Development = Minn. Sym. Child Psych. Cultural, Psychological and Typological Issues in Cognitive Linguistics = Amst Stud Theory His Cultural, Psychological and Typological Issues in Cognitive Linguistics = Amst. Stud. Theory. His. Cultural Repertoires: Structure, Function and Dynamics = Gr Stud Cult Cultural Repertoires: Structure, Function and Dynamics = Gr. Stud. Cult. Cultural Resource Management in Contemporary Society = One World Archaeol Cultural Resource Management in Contemporary Society = One. World. Archaeol. Cultural Significance of The Child Star = Routl Adv Sociol Cultural Significance of The Child Star = Routl. Adv. Sociol. Cultural Sitings = Cult Sitings Cultural Sitings = Cult. Sitings Cultural & Social History = Cult Soc Hist Cultural & Social History = Cult. Soc. Hist. Cultural Sociology = Cult Sociol Cultural Sociology = Cult. Sociol. Cultural Spaces = Cult Spaces Cultural Spaces = Cult. Spaces Cultural Studies and Environmentalism: The Confluence of Ecojustice, Place-based (science) Education, and Indigenous Knowledge Systems = Cult Stud Sci Educ Cultural Studies and Environmentalism: The Confluence of Ecojustice, Place-based (science) Education, and Indigenous Knowledge Systems = Cult. Stud. Sci. Educ. Cultural Studies = Cult Stud Cultural Studies = Cult. Stud. Cultural Studies of Science Education = Cult Stud Sci Educ Cultural Studies of Science Education = Cult. Stud. Sci. Educ. Cultural Studies of Science Education Series = Cult Stud Sci Educ Cultural Studies of Science Education Series = Cult. Stud. Sci. Educ. Cultural Studies of The Americas = Cult Stud Am Cultural Studies of The Americas = Cult. Stud. Am. Cultural Studies of The Modern Middle Ages = New Middle Ages Cultural Studies of The Modern Middle Ages = New. Middle Ages Cultural Studies Series = Cult Stud Ser Cultural Studies Series = Cult. Stud. Ser. Cultural Survival Quarterly = Cult Survival Q Cultural Survival Quarterly = Cult. Survival Q. Cultural survival quarterly = Cult Surv Q Cultural Theory As Political Science = Routledge/ecpr Stud Cultural Theory As Political Science = Routledge/ecpr. Stud. Cultural Transfer Through Translation: The Circulation of Enlightened Thought in Europe By Means of Translation = Int Forsch Allg Vgl Cultural Transfer Through Translation: The Circulation of Enlightened Thought in Europe By Means of Translation = Int. Forsch. Allg. Vgl. Cultural Understanding in Efl Reading in Argentina = Focus Civiliz Cult Cultural Understanding in Efl Reading in Argentina = Focus. Civiliz. Cult. Cultural Validity in Assessment: Addressing Linguistic and Cultural Diversity = Lang Cult Teach Cultural Validity in Assessment: Addressing Linguistic and Cultural Diversity = Lang. Cult. Teach. Cultura medica = Cult Med Cultura Y Educacion = Cult Educ Cultura Y Educacion = Cult. Educ. Culture and Change: Attending to Early Modern Women = Ctr Ren Bar Stud Culture and Change: Attending to Early Modern Women = Ctr. Ren. Bar. Stud. Culture and Civilization in The Middle East = Cult Civiliz Mid E Culture and Civilization in The Middle East = Cult. Civiliz. Mid. E. Culture and Computing: Computing and Communication for Crosscultural Interaction = Lect Notes Comput Sc Culture and Computing: Computing and Communication for Crosscultural Interaction = Lect. Notes. Comput. Sc. Culture and Consensus in European Varieties of Capitalism: A Common Sense Analysis = Int Polit Econ Ser Culture and Consensus in European Varieties of Capitalism: A Common Sense Analysis = Int. Polit. Econ. Ser. Culture and Cultural Entities: Toward A New Unity of Science, Second Edition = Synth Libr Culture and Cultural Entities: Toward A New Unity of Science, Second Edition = Synth. Libr. Culture and Development in Africa = Environ Sust Dev P Culture and Development in Africa = Environ. Sust. Dev. P. Culture and Development Series = Cul Dev Ser Culture and Development Series = Cul. Dev. Ser. Culture and Economic Explanation: Economics in The Us and Japan = Routl Front Polit Ec Culture and Economic Explanation: Economics in The Us and Japan = Routl. Front. Polit. Ec. Culture and Explosion = Semiot Commun Cognit Culture and Explosion = Semiot. Commun. Cognit. Culture and History of The Ancient Near East = Cult Hist Anc Culture and History of The Ancient Near East = Cult. Hist. Anc. Culture and Organization = Cult Organ Culture and Organization = Cult. Organ. Culture and Religion in International Relations = Cult Relig Int Relat Culture and Religion in International Relations = Cult. Relig. Int. Relat. Culture and Security = New Int Relat Culture and Security = New. Int. Relat. Culture and Social Behavior: The Ontorio Symposium, Vol 10 = Ont Symp P Culture and Social Behavior: The Ontorio Symposium, Vol 10 = Ont. Symp. P. Culture and Sustainable Development in The Pacific = Pacific Pol Papers Culture and Sustainable Development in The Pacific = Pacific Pol. Papers. Culture and The Imagination = Stutt Sem Cultur St Culture and The Imagination = Stutt. Sem. Cultur. St. Culture and The Therapeutic Process: A Guide for Mental Health Professionals = Counsel Psychother Culture and The Therapeutic Process: A Guide for Mental Health Professionals = Counsel. Psychother. Culture and Well - Being: The Collected Works of Ed Diener = Soc Indic Res Ser Culture and Well - Being: The Collected Works of Ed Diener = Soc. Indic. Res. Ser. Culture As The Core: Perspectives On Culture in Second Language Learning = Res Sec Lang Learn S Culture As The Core: Perspectives On Culture in Second Language Learning = Res. Sec. Lang. Learn. S. Culture As The Core: Perspectives On Culture in Second Language Learning = Res Second Lang Lear Culture As The Core: Perspectives On Culture in Second Language Learning = Res. Second Lang. Lear. Culture, Body, and Language: Conceptualizations of Internal Body Organs Across Cultures and Languages = Appl Cognit Ling Culture, Body, and Language: Conceptualizations of Internal Body Organs Across Cultures and Languages = Appl. Cognit. Ling. Culture, Body, and Language: Conceptualizations of Internal Body Organs Across Cultures and Languages = Appl Cogn Linguist Culture, Body, and Language: Conceptualizations of Internal Body Organs Across Cultures and Languages = Appl. Cogn. Linguist. Culture (Canadian Ethnology Society) = Culture Culture, Class, Distinction = Cult Econ Soc Culture, Class, Distinction = Cult. Econ. Soc. Culture, Communication, and Cyberspace: Rethinking Technical Communication for International Online Environment = Baywoods Tech Commun Culture, Communication, and Cyberspace: Rethinking Technical Communication for International Online Environment = Baywoods. Tech. Commun. Culture Economy and The Social = Cult Econ Soc Culture Economy and The Social = Cult. Econ. Soc. Culture Et Musees = Cult Mus Culture Et Musees = Cult. Mus. Culture Front: Representing Jews in Eastern Europe = Jew Cult Context Culture Front: Representing Jews in Eastern Europe = Jew. Cult. Context. Culture, health & sexuality = Cult Health Sex Culture Health & Sexuality = Cult Health Sex Culture Health & Sexuality = Cult. Health Sex. Culture, Illness, and Healing = Cult Ill He Culture, Illness, and Healing = Cult. Ill. He. Culture Medicine and Psychiatry = Cult Med Psychiat Culture Medicine and Psychiatry = Cult. Med. Psychiat. Culture, medicine and psychiatry = Cult Med Psychiatry Culture, Medicine and Psychiatry=Cult Med Psychiatry;; Culture, Medicine and Psychiatry = Cult. Med. Psychiatry Culture Mind and Society = Cult Mind Soc Culture Mind and Society = Cult. Mind Soc. Culture of Mimicry: Laurence Sterne, His Readers and The Art of Bodysnatching = Mod Humanit Res Asso Culture of Mimicry: Laurence Sterne, His Readers and The Art of Bodysnatching = Mod. Humanit. Res. Asso. Culture of Our Thinking in Relation to Spirituality = Relig Spiritual Culture of Our Thinking in Relation to Spirituality = Relig. Spiritual. Culture of Soft Work: Labor, Gender, and Race in Postmodern American Narrative = Am Lit Read Twenty-f Culture of Soft Work: Labor, Gender, and Race in Postmodern American Narrative = Am. Lit. Read. Twenty-f. Culture of Welfare Markets: The International Recasting of Pension and Care Systems = Routl Adv Sociol Culture of Welfare Markets: The International Recasting of Pension and Care Systems = Routl. Adv. Sociol. Culture, Place and Identity = Hist Stud Irl Culture, Place and Identity = Hist. Stud. Irl. Culture, Politics and Sport: Blowing The Whistle, Revisited = Routl Crit Stud Spor Culture, Politics and Sport: Blowing The Whistle, Revisited = Routl. Crit. Stud. Spor. Culture & Psychology = Cult Psychol Culture & Psychology = Cult. Psychol. Cultures, Contexts, and World Englishes = Esl Appl Ling Prof Cultures, Contexts, and World Englishes = Esl. Appl. Ling. Prof. Cultures = Cultures Cultures et developpement / Universite catholique de Louvain = Cult Dev Cultures in Conversation = Lea Commun Ser Cultures in Conversation = Lea. Commun. Ser. Culture, Society, and Cognition: Collective Goals, Values, Action, and Knowledge = Mouton Ser Pragmat Culture, Society, and Cognition: Collective Goals, Values, Action, and Knowledge = Mouton. Ser. Pragmat. Culture, Society and Sexuality: A Reader = Sex Cult Health Culture, Society and Sexuality: A Reader = Sex. Cult. Health. Cultures of Child Health in Britain and The Netherlands in The Twentieth Century = Clio Med Cultures of Child Health in Britain and The Netherlands in The Twentieth Century = Clio. Med. Cultures of Child Health in Britain and The Netherlands in The Twentieth Century = Clio Medica Cultures of Child Health in Britain and The Netherlands in The Twentieth Century = Clio. Medica. Cultures of Contamination = Res Soc Probl Public Cultures of Contamination = Res. Soc. Probl. Public. Cultures of Conversions = Gr Stud Cult Cultures of Conversions = Gr. Stud. Cult. Cultures of Curriculum, Second Edition = Stud Curric Theory Cultures of Curriculum, Second Edition = Stud. Curric. Theory. Cultures of The Lusophone Black Atlantic = Stud Am Cultures of The Lusophone Black Atlantic = Stud. Am. Culture technique = Cult Tech Culture, Thought, and Development = J Piaget Sy Culture, Thought, and Development = J. Piaget. Sy. Cumberland County history. Cumberland County Historical Society and Hamilton Library Association = Cumberl Cty Hist Cumberland law review = Cumberland Law Rev Cumberland-Samford law review = Cumberland Samford Law Rev Cuore e circolazione = Cuore Circ Cuore e Circolazione = Cuore Circ. Cura Aquarum in Sicilia: Annual Papers On Classical Archaeology, Supplement 6 - 2000 = Babesch Bull Ant Bes Cura Aquarum in Sicilia: Annual Papers On Classical Archaeology, Supplement 6 - 2000 = Babesch. Bull. Ant. Bes. Curare = Curare Curationis = Curationis Curbing Gridlock: Peak-period Fees to Relieve Traffic Congestion, Vol 2 = Trans Res B Curbing Gridlock: Peak-period Fees to Relieve Traffic Congestion, Vol 2 = Trans. Res. B. Cured I - Lent: Late Effects of Cancer Treatment On Normal Tissues = Med Radiol Radiat On Cured I - Lent: Late Effects of Cancer Treatment On Normal Tissues = Med. Radiol. Radiat. On Currencies, Capital Flows and Crises: A Post Keynesian Analysis of Exchange Rate Determination = Routl Adv Heterod Ec Currencies, Capital Flows and Crises: A Post Keynesian Analysis of Exchange Rate Determination = Routl. Adv. Heterod. Ec. Currency Crises = Nber Conf R Currency Crises = Nber. Conf. R. Currency Union and Exchange Rate Issues: Lessons for The Gulf States = New Horiz Money Fina Currency Union and Exchange Rate Issues: Lessons for The Gulf States = New. Horiz. Money. Fina. Current affairs bulletin = Curr Aff Bull Current allergy and asthma reports = Curr Allergy Asthma Rep Current Allergy and Asthma Reports = Curr. Allergy Asthma Rep. Current Allergy and Asthma Reports = Curr Allergy Asthm R Current Allergy and Asthma Reports = Curr. Allergy Asthm. R. Current Allergy & Clinical Immunology = Curr Allergy Clin Im Current Allergy & Clinical Immunology = Curr. Allergy Clin. Im. Current allergy reports = Curr Allergy Rep Current Allergy Reports = Curr. Allergy Rep. Current Alzheimer research = Curr Alzheimer Res Current Alzheimer Research = Curr Alzheimer Res Current Alzheimer Research = Curr. Alzheimer Res. Current anaesthesia and critical care = Curr Anaesth Crit Care Current Analytical Chemistry = Curr Anal Chem Current Analytical Chemistry = Curr. Anal. Chem. Current and Emerging Issues in Cancer Pain : Research and Practice = Symp Pain R Current and Emerging Issues in Cancer Pain : Research and Practice = Symp. Pain R. Current and Future Applications of Mechanical Fasteners for Light-frame Wood Structures = Usda So For Current and Future Applications of Mechanical Fasteners for Light-frame Wood Structures = Usda. So. For. Current and Future Trends in Anticonvulsant, Anxiety, and Stroke Therapy = Prog Clin Biol Res Current and Future Trends in Anticonvulsant, Anxiety, and Stroke Therapy = Prog. Clin. Biol. Res. Current and New Directions in Discourse and Dialogue = Text Speech Lang Tec Current and New Directions in Discourse and Dialogue = Text. Speech. Lang. Tec. Current anthropology = Curr Anthropol Current Anthropology = Curr Anthropol Current Anthropology = Curr. Anthropol. Current Applications of Polymers and Nano Materials = Mater Sci Forum Current Applications of Polymers and Nano Materials = Mater. Sci. Forum. Current Applied Physics = Curr Appl Phys Current Applied Physics = Curr. Appl Phys. Current Applied Physics = Curr. Appl. Phys. Current Approaches to Collective Bargaining = Lab Man Rel Current Approaches to Collective Bargaining = Lab. Man. Rel. Current Aspects and Concepts of Nursing, Coordinating, Bridging and Rehabilitation in Organ Transplantation = Int Congr Ser Current Aspects and Concepts of Nursing, Coordinating, Bridging and Rehabilitation in Organ Transplantation = Int. Congr. Ser. Current atherosclerosis reports = Curr Atheroscler Rep Current Atherosclerosis Reports = Curr Atheroscler Rep Current Atherosclerosis Reports = Curr. Atheroscler. Rep. Current Bioactive Compounds = Curr. Bioact. Compd. Current Bioinformatics = Curr. Bioinf. Current Bioinformatics = Curr Bioinform Current Bioinformatics = Curr. Bioinform. Current biology : CB = Curr Biol Current Biology=Curr Biol;; Current Biology = Curr Biol Current Biology = Curr. Biol. Current Cancer Drug Targets = Curr Cancer Drug Tar Current Cancer Drug Targets = Curr. Cancer Drug Tar. Current cancer drug targets = Curr Cancer Drug Targets Current Cancer Drug Targets = Curr. Cancer Drug Targets Current Cancer Research = Curr Cancer Res Current Cancer Research = Curr. Cancer Res. Current Cardiac Surgery = Curr Card Surg Current Cardiac Surgery = Curr. Card. Surg. Current cardiology reports = Curr Cardiol Rep Current Cardiology Reports = Curr. Cardiol. Rep. Current Challenges in Patent Information Retrieval = Inform Retrieval Ser Current Challenges in Patent Information Retrieval = Inform. Retrieval Ser. Current Challenges On Large Supramolecular Assemblies = Nato Adv Sci I C-mat Current Challenges On Large Supramolecular Assemblies = Nato. Adv. Sci. I. C-mat. Current Chemical Biology = Curr. Chem. Biol. Current Clinical Neurology = Curr Clin Neurol Current Clinical Neurology = Curr. Clin. Neurol. Current Clinical Oncology = Curr Clin O Current Clinical Oncology = Curr. Clin. O. Current Clinical Oncology (series) = Curr Clin Oncol Current Clinical Oncology (series) = Curr. Clin. Oncol. Current Clinical Oncology Series = Curr Clin Oncol Current Clinical Oncology Series = Curr. Clin. Oncol. Current Clinical Pathology = Curr Clin Pathol Current Clinical Pathology = Curr. Clin. Pathol. Current Clinical Practice Series = Curr Clin P Current Clinical Practice Series = Curr. Clin. P. Current Clinical Practice Series = Curr Clin Pract Current Clinical Practice Series = Curr. Clin. Pract. Current Clinical Psychiatry = Curr Clin Psychiat Current Clinical Psychiatry = Curr. Clin. Psychiat. Current clinical topics in infectious diseases = Curr Clin Top Infect Dis Current Clinical Topics in Infectious Diseases = Curr. Clin. Top. Infect. Dis. Current Clinical Topics In Infectious Diseases=Curr Clin Top Infect Dis;; Current Clinical Urology = Curr Clin Urol Current Clinical Urology = Curr. Clin. Urol. Current Collection From Space Plasmas = Nasa Conf P Current Collection From Space Plasmas = Nasa. Conf. P. Current Comments = Curr Comments Current Comments = Curr. Comments Current Communications in Molecular Biology = Cc Mol Biol Current Communications in Molecular Biology = Cc. Mol. Biol. Current Computer-aided Drug Design = Curr Comput-aid Drug Current Computer-aided Drug Design = Curr. Comput-aid. Drug Current Computer-Aided Drug Design = Curr. Comput.-Aided Drug Des. Current Concepts in Autoimmunity and Chronic Inflamation = Curr Top Microbiol Current Concepts in Autoimmunity and Chronic Inflamation = Curr. Top. Microbiol. Current Concepts in Endometriosis = Prog Clin Biol Res Current Concepts in Endometriosis = Prog. Clin. Biol. Res. Current concepts in hospital pharmacy management = Curr Concepts Hosp Pharm Manage Current Concepts in Hospital Pharmacy Management = Curr. Concepts Hosp. Pharm. Manage. Current Concepts in Multiple Sclerosis = Int Congr Ser Current Concepts in Multiple Sclerosis = Int. Congr. Ser. Current concepts in nutrition = Curr Concepts Nutr Current Concepts in Nutrition = Curr. Concepts Nutr. Current Concepts in Peritoneal Dialysis = Int Congr Ser Current Concepts in Peritoneal Dialysis = Int. Congr. Ser. Current Concepts in Primary and Revision Total Knee Arthroplasty = Bris Myer Z Current Concepts in Primary and Revision Total Knee Arthroplasty = Bris. Myer. Z. Current Concepts of Aldose Reductase and Its Inhibitions = Int Congr Ser Current Concepts of Aldose Reductase and Its Inhibitions = Int. Congr. Ser. Current concepts of cerebrovascular disease: Stroke = Curr Conc Cerebrovasc Dis Stroke Current Contents/agriculture Biology & Environmental Sciences = Cc/agr Biol Environ Current Contents/agriculture Biology & Environmental Sciences = Cc/agr. Biol. Environ. Current Contents/arts & Humanities = Cc/art Human Current Contents/arts & Humanities = Cc/art. Human. Current Contents/clinical Medicine = Cc/clin Med Current Contents/clinical Medicine = Cc/clin. Med. Current contents. Clinical medicine = Curr Contents Clin Med Current Contents/clinical Practice = Cc/clin Practice Current Contents/clinical Practice = Cc/clin. Practice Current Contents = Curr Contents Current Contents = Curr. Contents Current Contents/engineering Technology & Applied Sciences = Cc/eng Tech Appl Sci Current Contents/engineering Technology & Applied Sciences = Cc/eng. Tech. Appl. Sci. Current Contents/life Sciences = Cc/life Sci Current Contents/life Sciences = Cc/life. Sci. Current Contents/physical Chemical & Earth Sciences = Cc/phys Chem Earth Current Contents/physical Chemical & Earth Sciences = Cc/phys. Chem. Earth Current Contents/social & Behavioral Sciences = Cc/soc Behav Sci Current Contents/social & Behavioral Sciences = Cc/soc. Behav. Sci. Current controlled trials in cardiovascular medicine = Curr Control Trials Cardiovasc Med Current Controlled Trials in Cardiovascular Medicine = Curr Contr Trials C Current Controlled Trials in Cardiovascular Medicine = Curr. Contr. Trials C. Current Critical Problems in Vascular Surgery = Cur Cr Vasc Current Critical Problems in Vascular Surgery = Cur. Cr. Vasc. Current Critical Problems in Vascular Surgery, Vol 2 = Cur Cr Vasc Current Critical Problems in Vascular Surgery, Vol 2 = Cur. Cr. Vasc. Current = Current Current Debates in Art History = Cur Deb Art Current Debates in Art History = Cur. Deb. Art Current Debates in Broadcasting = Curr Deb Br Current Debates in Broadcasting = Curr. Deb. Br. Current Debates in Global Justice = Stud Glob Justice Current Debates in Global Justice = Stud. Glob. Justice Current Developments in Knowledge Acquisition - Ekaw 92 = Lect Notes Artif Int Current Developments in Knowledge Acquisition - Ekaw 92 = Lect. Notes. Artif. Int. Current Developments in Lens Design and Optical Engineering Iii = Proc Spie Current Developments in Lens Design and Optical Engineering Iii = Proc. Spie. Current Developments in Lens Design and Optical Engineering Iii = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Iii = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Ii = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Ii = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Iv = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Iv = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Ix = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Ix = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Viii = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Viii = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Vii = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Vii = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering V = Proc Spie Current Developments in Lens Design and Optical Engineering V = Proc. Spie. Current Developments in Lens Design and Optical Engineering V = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering V = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Engineering Xi; and Advances in Thin Film Coatings Vi = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Engineering Xi; and Advances in Thin Film Coatings Vi = P. Soc. Photo-opt. Ins. Current Developments in Lens Design and Optical Systems Engineering = P Soc Photo-opt Ins Current Developments in Lens Design and Optical Systems Engineering = P. Soc. Photo-opt. Ins. Current Developments in Mathematical Biology = Ser Knots Current Developments in Mathematical Biology = Ser. Knots. Current Developments in Optical Design and Engineering Vii = P Soc Photo-opt Ins Current Developments in Optical Design and Engineering Vii = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Engineering Vi = P Soc Photo-opt Ins Current Developments in Optical Design and Engineering Vi = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Engineering V = P Soc Photo-opt Ins Current Developments in Optical Design and Engineering V = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Optical Engineering, Fifth in A Series = P Soc Photo-opt Ins Current Developments in Optical Design and Optical Engineering, Fifth in A Series = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Optical Engineering Iii = P Soc Photo-opt Ins Current Developments in Optical Design and Optical Engineering Iii = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Optical Engineering Ii = P Soc Photo-opt Ins Current Developments in Optical Design and Optical Engineering Ii = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Optical Engineering Iv = P Soc Photo-opt Ins Current Developments in Optical Design and Optical Engineering Iv = P. Soc. Photo-opt. Ins. Current Developments in Optical Design and Optical Engineering Viii = P Soc Photo-opt Ins Current Developments in Optical Design and Optical Engineering Viii = P. Soc. Photo-opt. Ins. Current Developments in Optical Elements and Manufacturing = P Soc Photo-opt Ins Current Developments in Optical Elements and Manufacturing = P. Soc. Photo-opt. Ins. Current Developments in Optical Engineering and Commercial Optics = P Soc Photo-opt Ins Current Developments in Optical Engineering and Commercial Optics = P. Soc. Photo-opt. Ins. Current Developments in Optical Engineering Iv = P Soc Photo-opt Ins Current Developments in Optical Engineering Iv = P. Soc. Photo-opt. Ins. Current developments in psychopharmacology = Curr Dev Psychopharmacol Current Developments in Psychopharmacology = Curr. Dev. Psychopharmacol. Current Diabetes Reports = Curr Diabetes Rep Current Diabetes Reports = Curr. Diabetes Rep. Current diabetes reports = Curr Diab Rep Current Diabetes Reports = Curr. Diab. Rep. Current directions in autoimmunity = Curr Dir Autoimmun Current Directions in Autoimmunity = Curr Dir Autoimmun Current Directions in Autoimmunity = Curr. Dir. Autoimmun. Current Directions in Insulin-like Growth Factor Research = Adv Exp Med Biol Current Directions in Insulin-like Growth Factor Research = Adv. Exp. Med. Biol. Current directions in psychological science : a journal of the American Psychological Society = Curr Dir Psychol Sci Current Directions in Psychological Science = Curr Dir Psychol Sci Current Directions in Psychological Science = Curr. Dir. Psychol. Sci. Current drug delivery = Curr Drug Deliv Current Drug Delivery = Curr Drug Deliv Current Drug Delivery = Curr. Drug Deliv. Current Drug Delivery = Curr. Drug Delivery Current Drug Discovery Technologies = Curr. Drug Discovery Technol. Current drug discovery technologies = Curr Drug Discov Technol Current Drug Discovery Technologies = Curr. Drug Discov. Technol. Current drug metabolism = Curr Drug Metab Current Drug Metabolism = Curr Drug Metab Current Drug Metabolism = Curr. Drug Metab. Current drug targets. Cardiovascular & haematological disorders = Curr Drug Targets Cardiovasc Haematol Disord Current Drug Targets: Cardiovascular & Haematological Disorders = Curr. Drug Targets: Cardiovasc. & Haematol. Disord. Current drug targets. CNS and neurological disorders = Curr Drug Targets CNS Neurol Disord Current Drug Targets: CNS & Neurological Disorders = Curr. Drug Targets: CNS Neurol. Disord. Current drug targets = Curr Drug Targets Current Drug Targets = Curr Drug Targets Current Drug Targets = Curr. Drug Targets Current Drug Targets: Immune, Endocrine and Metabolic Disorders = Curr. Drug Targets: Immune, Endocr. Metab. Disord. Current drug targets. Immune, endocrine and metabolic disorders = Curr Drug Targets Immune Endocr Metabol Disord Current drug targets. Infectious disorders = Curr Drug Targets Infect Disord Current Drug Targets: Infectious Disorders = Curr. Drug Targets: Infect. Disord. Current Drug Targets: Inflammation & Allergy = Curr. Drug Targets: Inflammation Allergy Current drug targets. Inflammation and allergy = Curr Drug Targets Inflamm Allergy Current Enzyme Inhibition = Curr. Enzyme Inhib. Current European Issues = Curr Europe Iss Current European Issues = Curr. Europe. Iss. Current eye research = Curr Eye Res Current Eye Research=Curr Eye Res;; Current Eye Research = Curr Eye Res Current Eye Research = Curr. Eye Res. Current Fluoroorganic Chemistry: New Synthetic Directions, Technologies, Materials, and Biological Applications = Acs Sym Ser Current Fluoroorganic Chemistry: New Synthetic Directions, Technologies, Materials, and Biological Applications = Acs. Sym. Ser. Current & Future Methods in Plant Growth Regulator Research = Br Plant Gr Current & Future Methods in Plant Growth Regulator Research = Br. Plant Gr. Current gastroenterology reports = Curr Gastroenterol Rep Current Gastroenterology Reports = Curr. Gastroenterol. Rep. Current gene therapy = Curr Gene Ther Current Gene Therapy = Curr Gene Ther Current Gene Therapy = Curr. Gene Ther. Current genetics = Curr Genet Current Genetics=Curr Genet;; Current Genetics = Curr Genet Current Genetics = Curr. Genet. Current genomics = Curr Genomics Current Genomics = Curr Genomics Current Genomics = Curr. Genomics Current heart failure reports = Curr Heart Fail Rep Current Heart Failure Reports = Curr. Heart Fail. Rep. Current Hematologic Malignancy Reports = Curr. Hematol. Malig. Rep. Current hematology reports = Curr Hematol Rep Current History = Curr Hist Current History = Curr. Hist. Current history (New York, N.Y. : 1941) = Curr Hist Current HIV/AIDS reports = Curr HIV/AIDS Rep Current HIV/AIDS Reports = Curr. HIV/AIDS Rep. Current Hiv Research = Curr Hiv Res Current Hiv Research = Curr. Hiv Res. Current HIV research = Curr HIV Res Current HIV Research = Curr. HIV Res. Current hypertension reports = Curr Hypertens Rep Current Hypertension Reports = Curr Hypertens Rep Current Hypertension Reports = Curr. Hypertens. Rep. Current immunology reviews = Curr Immunol Rev Current Immunology Reviews = Curr. Immunol. Rev. Current Immunosuppression: An Update = Roy S Med S Current Immunosuppression: An Update = Roy. S. Med. S. Current Indications for Growth Hormone Therapy, Second Edition = Endocr Dev Current Indications for Growth Hormone Therapy, Second Edition = Endocr. Dev. Current infectious disease reports = Curr Infect Dis Rep Current interventional cardiology reports = Curr Interv Cardiol Rep Current Investigations of The Microbiology of Yersiniae = Contrib To Microbiol Current Investigations of The Microbiology of Yersiniae = Contrib. To. Microbiol. Current Issues in Applied Memory Research = Curr Iss Mem Current Issues in Applied Memory Research = Curr. Iss. Mem. Current Issues in Autism = Curr I Aut Current Issues in Autism = Curr. I. Aut. Current Issues in Ecological Economics = Curr Iss Ecol Econ Current Issues in Ecological Economics = Curr. Iss. Ecol. Econ. Current Issues in Education Policy and The Law = Educ Policy Law Current Issues in Education Policy and The Law = Educ. Policy Law Current Issues in Genetic Toxicology = Bga Schrift Current Issues in Genetic Toxicology = Bga. Schrift. Current Issues in Heteroepitaxial Growth-stress Relaxation and Self Assembly = Mater Res Soc Symp P Current Issues in Heteroepitaxial Growth-stress Relaxation and Self Assembly = Mater. Res. Soc. Symp. P. Current issues in intestinal microbiology = Curr Issues Intest Microbiol Current Issues in Intestinal Microbiology = Curr. Issues Intest. Microbiol. Current Issues in Liver and Small Bowel Transplantation = Keio U Int Symp Life Current Issues in Liver and Small Bowel Transplantation = Keio. U. Int. Symp. Life. Current Issues in Mathematical Linguistics = N-holland L Current Issues in Mathematical Linguistics = N-holland. L. Current Issues in Measurement Technology for Air Pollution Control = Vdi Bericht Current Issues in Measurement Technology for Air Pollution Control = Vdi. Bericht. Current Issues in Memory = Curr Iss Mem Current Issues in Memory = Curr. Iss. Mem. Current issues in molecular biology = Curr Issues Mol Biol Current Issues in Molecular Biology = Curr Issues Mol Biol Current Issues in Molecular Biology = Curr. Issues Mol. Biol. Current Issues in Plant Molecular and Cellular Biology = Curr Plant Sci Biot Current Issues in Plant Molecular and Cellular Biology = Curr. Plant Sci. Biot. Current Issues in Production Ecology = Curr Iss Prod Ecol Current Issues in Production Ecology = Curr. Iss. Prod. Ecol. Current issues in public health = Curr Issues Public Health Current Issues in Relevance Theory = Prag Beyond New Ser Current Issues in Relevance Theory = Prag. Beyond. New. Ser. Current Issues in Thinking and Reasoning = Curr Iss Think Reaso Current Issues in Thinking and Reasoning = Curr. Iss. Think. Reaso. Current Issues in Tourism = Curr Issues Tour Current Issues in Tourism = Curr. Issues Tour. Current Issues of Physics in Malaysia = Aip Conf Proc Current Issues of Physics in Malaysia = Aip. Conf. Proc. Current Knowledge in Reproductive Medicine = Int Congr Ser Current Knowledge in Reproductive Medicine = Int. Congr. Ser. Current law statutes annotated. Great Britain = Curr Law Statut Annot GB Current Legal Issues = Curr Leg Iss Current Legal Issues = Curr. Leg. Iss. Current legal problems = Curr Leg Probl Current Mathematical Publications = CMP Current Medical Imaging Reviews = Curr Med Imaging Rev Current Medical Imaging Reviews = Curr. Med. Imaging Rev. Current medical practice = Curr Med Pract Current medical research and opinion = Curr Med Res Opin Current Medical Research and Opinion=Curr Med Res Opin;; Current Medical Research and Opinion = Curr Med Res Opin Current Medical Research and Opinion = Curr. Med. Res. Opin. Current medicinal chemistry. Anti-cancer agents = Curr Med Chem Anticancer Agents Current Medicinal Chemistry: Anti-Cancer Agents = Curr. Med. Chem.: Anti-Cancer Agents Current Medicinal Chemistry: Anti-Infective Agents = Curr. Med. Chem.: Anti-Infect. Agents Current Medicinal Chemistry: Anti-Inflammatory & Anti-Allergy Agents = Curr. Med. Chem.: Anti-Inflammatory Anti-Allergy Agents Current medicinal chemistry. Cardiovascular and hematological agents = Curr Med Chem Cardiovasc Hematol Agents Current Medicinal Chemistry: Cardiovascular & Hematological Agents = Curr. Med. Chem.: Cardiovasc. Hematol. Agents Current Medicinal Chemistry: Central Nervous System Agents = Curr. Med. Chem.: Cent. Nerv. Syst. Agents Current medicinal chemistry = Curr Med Chem Current Medicinal Chemistry = Curr Med Chem Current Medicinal Chemistry = Curr. Med. Chem. Current Medicinal Chemistry: Immunology, Endocrine & Metabolic Agents = Curr. Med. Chem.: Immunol., Endocr. Metab. Agents Current medicine and drugs = Curr Med Drugs Current Medicine and Drugs = Curr. Med. Drugs Current Medicine for Attorneys = Curr Med Attorney Current Medicine for Attorneys = Curr. Med. Attorney. Current medicine for attorneys = Curr Med Atty Current microbiology = Curr Microbiol Current Microbiology = Curr Microbiol Current Microbiology = Curr. Microbiol. Current molecular medicine = Curr Mol Med Current Molecular Medicine = Curr Mol Med Current Molecular Medicine = Curr. Mol. Med. Current Municipal Problems = Curr Munic Probl Current Municipal Problems = Curr. Munic. Probl. Current Musicology = Curr Musicology Current Musicology = Curr. Musicology Current Nanoscience = Curr Nanosci Current Nanoscience = Curr. Nanosci. Current Neurochemical and Pharmacological Aspects of Biogenic Amines = Prog Brain Res Current Neurochemical and Pharmacological Aspects of Biogenic Amines = Prog. Brain. Res. Current Neurology and Neuroscience Reports = Curr Neurol Neurosci Current Neurology and Neuroscience Reports = Curr. Neurol. Neurosci. Current neurology and neuroscience reports = Curr Neurol Neurosci Rep Current Neurology and Neuroscience Reports = Curr. Neurol. Neurosci. Rep. Current Neuropharmacology = Curr Neuropharmacol Current Neuropharmacology = Curr. Neuropharmacol. Current neurovascular research = Curr Neurovasc Res Current Neurovascular Research = Curr Neurovasc Res Current Neurovascular Research = Curr. Neurovasc. Res. Current Northeast Paleoethnobotany = N Y State Mus Bull Current Northeast Paleoethnobotany = N. Y. State. Mus. Bull. Current obstetrics & gynaecology = Curr Obstet Gynaecol Current Oncology = Curr Oncol Current Oncology = Curr. Oncol. Current oncology reports = Curr Oncol Rep Current Oncology Reports = Curr Oncol Rep Current Oncology Reports = Curr. Oncol. Rep. Current oncology (Toronto, Ont.) = Curr Oncol Current Opinion in Allergy and Clinical Immunology = Curr Opin Allergy Cl Current Opinion in Allergy and Clinical Immunology = Curr. Opin. Allergy Cl. Current opinion in allergy and clinical immunology = Curr Opin Allergy Clin Immunol Current Opinion in Allergy and Clinical Immunology = Curr. Opin. Allergy Clin. Immunol. Current opinion in anaesthesiology = Curr Opin Anaesthesiol Current Opinion in Anesthesiology = Curr Opin Anesthesio Current Opinion in Anesthesiology = Curr. Opin. Anesthesio. Current Opinion in Biotechnology = Curr Opin Biotech Current Opinion in Biotechnology = Curr. Opin. Biotech. Current opinion in biotechnology = Curr Opin Biotechnol Current Opinion in Biotechnology = Curr. Opin. Biotechnol. Current Opinion In Biotechnology=Curr Opin Biotechnol;; Current opinion in cardiology = Curr Opin Cardiol Current Opinion in Cardiology = Curr Opin Cardiol Current Opinion in Cardiology = Curr. Opin. Cardiol. Current Opinion In Cardiology=Curr Opin Cardiol;; Current opinion in cell biology = Curr Opin Cell Biol Current Opinion in Cell Biology = Curr Opin Cell Biol Current Opinion in Cell Biology = Curr. Opin. Cell Biol. Current Opinion In Cell Biology=Curr Opin Cell Biol;; Current opinion in chemical biology = Curr Opin Chem Biol Current Opinion in Chemical Biology = Curr Opin Chem Biol Current Opinion in Chemical Biology = Curr. Opin. Chem. Biol. Current Opinion in Clinical Nutrition and Metabolic Care = Curr Opin Clin Nutr Current Opinion in Clinical Nutrition and Metabolic Care = Curr. Opin. Clin. Nutr. Current opinion in clinical nutrition and metabolic care = Curr Opin Clin Nutr Metab Care Current Opinion in Clinical Nutrition and Metabolic Care = Curr. Opin. Clin. Nutr. Metab. Care Current Opinion in Colloid and Interface Science = Curr. Opin. Colloid Interface Sci. Current Opinion in Colloid & Interface Science = Curr Opin Colloid In Current Opinion in Colloid & Interface Science = Curr. Opin. Colloid In. Current Opinion in Colloid & Interface Science = Curr. Opin. Colloid Interface Sci. Current Opinion in Cosmetic Dentistry = Curr Opin Cosmet D Current Opinion in Cosmetic Dentistry = Curr. Opin. Cosmet. D. Current opinion in cosmetic dentistry = Curr Opin Cosmet Dent Current Opinion in Cosmetic Dentistry = Curr. Opin. Cosmet. Dent. Current opinion in critical care = Curr Opin Crit Care Current Opinion in Critical Care = Curr Opin Crit Care Current Opinion in Critical Care = Curr. Opin. Crit. Care Current opinion in dentistry = Curr Opin Dent Current Opinion in Dentistry = Curr. Opin. Dent. Current Opinion in Drug Discovery and Development = Curr. Opin. Drug Discov. Devel. Current Opinion in Drug Discovery & Development = Curr Opin Drug Di De Current Opinion in Drug Discovery & Development = Curr. Opin. Drug Di. De. Current Opinion in Drug Discovery & Development = Curr Opin Drug Disc Current Opinion in Drug Discovery & Development = Curr. Opin. Drug Disc. Current opinion in drug discovery & development = Curr Opin Drug Discov Devel Current Opinion in Drug Discovery & Development = Curr. Opin. Drug Discovery Dev. Current Opinion in Endocrinology Diabetes and Obesity = Curr Opin Endocrinol Current Opinion in Endocrinology Diabetes and Obesity = Curr. Opin. Endocrinol. Current opinion in endocrinology, diabetes, and obesity = Curr Opin Endocrinol Diabetes Obes Current Opinion in Environmental Sustainability = Curr Opin Env Sust Current Opinion in Environmental Sustainability = Curr. Opin. Env. Sust. Current Opinion in Environmental Sustainability = Curr Opin Sust Current Opinion in Environmental Sustainability = Curr. Opin. Sust. Current Opinion in Environment Sustainability = Curr. Opin. Environ. Sustainability Current Opinion in Gastroenterology = Curr Opin Gastroen Current Opinion in Gastroenterology = Curr. Opin. Gastroen. Current opinion in gastroenterology = Curr Opin Gastroenterol Current opinion in general surgery = Curr Opin Gen Surg Current Opinion in General Surgery = Curr. Opin. Gen. Surg. Current Opinion in Genetics and Development = Curr. Opin. Genet. Dev. Current Opinion In Genetics and Development=Curr Opin Genet Dev;; Current opinion in genetics & development = Curr Opin Genet Dev Current Opinion in Genetics & Development = Curr Opin Genet Dev Current Opinion in Genetics & Development = Curr. Opin. Genet. Dev. Current opinion in hematology = Curr Opin Hematol Current Opinion in Hematology = Curr Opin Hematol Current Opinion in Hematology = Curr. Opin. Hematol. Current Opinion In Hematology=Curr Opin Hematol;; Current Opinion in Hiv and Aids = Curr Opin Hiv Aids Current Opinion in Hiv and Aids = Curr. Opin. Hiv Aids Current opinion in immunology = Curr Opin Immunol Current Opinion in Immunology = Curr Opin Immunol Current Opinion in Immunology = Curr. Opin. Immunol. Current Opinion In Immunology=Curr Opin Immunol;; Current opinion in infectious diseases = Curr Opin Infect Dis Current Opinion in Infectious Diseases = Curr Opin Infect Dis Current Opinion in Infectious Diseases = Curr. Opin. Infect. Dis. Current Opinion in Investigational Drugs = Curr Opin Invest Dr Current Opinion in Investigational Drugs = Curr. Opin. Invest. Dr. Current Opinion in Investigational Drugs = Curr. Opin. Invest. Drugs Current Opinion in Investigational Drugs = Curr Opin Investig D Current Opinion in Investigational Drugs = Curr. Opin. Investig. D. Current Opinion in Investigational Drugs = Curr. Opin. Investig. Drugs Current opinion in investigational drugs (London, England : 2000) = Curr Opin Investig Drugs Current opinion in lipidology = Curr Opin Lipidol Current Opinion in Lipidology = Curr Opin Lipidol Current Opinion in Lipidology = Curr. Opin. Lipidol. Current Opinion In Lipidology=Curr Opin Lipidol;; Current opinion in microbiology = Curr Opin Microbiol Current Opinion in Microbiology = Curr Opin Microbiol Current Opinion in Microbiology = Curr. Opin. Microbiol. Current opinion in molecular therapeutics = Curr Opin Mol Ther Current Opinion in Molecular Therapeutics = Curr Opin Mol Ther Current Opinion in Molecular Therapeutics = Curr. Opin. Mol. Ther. Current Opinion in Nephrology and Hypertension = Curr Opin Nephrol Hy Current Opinion in Nephrology and Hypertension = Curr. Opin. Nephrol. Hy. Current opinion in nephrology and hypertension = Curr Opin Nephrol Hypertens Current Opinion in Nephrology and Hypertension = Curr. Opin. Nephrol. Hypertens. Current Opinion In Nephrology and Hypertension=Curr Opin Nephrol Hypertens;; Current opinion in neurobiology = Curr Opin Neurobiol Current Opinion in Neurobiology = Curr Opin Neurobiol Current Opinion in Neurobiology = Curr. Opin. Neurobiol. Current Opinion In Neurobiology=Curr Opin Neurobiol;; Current Opinion in Neurology and Neurosurgery = Curr Opin Neurol Neu Current Opinion in Neurology and Neurosurgery = Curr. Opin. Neurol. Neu. Current opinion in neurology and neurosurgery = Curr Opin Neurol Neurosurg Current Opinion in Neurology and Neurosurgery = Curr. Opin. Neurol. Neurosurg. Current opinion in neurology = Curr Opin Neurol Current Opinion in Neurology = Curr Opin Neurol Current Opinion in Neurology = Curr. Opin. Neurol. Current Opinion In Neurology=Curr Opin Neurol;; Current Opinion in Obstetrics and Gynecology = Curr. Opin. Obstet. Gynecol. Current Opinion In Obstetrics and Gynecology=Curr Opin Obstet Gynecol;; Current Opinion in Obstetrics & Gynecology = Curr Opin Obstet Gyn Current Opinion in Obstetrics & Gynecology = Curr. Opin. Obstet. Gyn. Current opinion in obstetrics & gynecology = Curr Opin Obstet Gynecol Current opinion in oncology = Curr Opin Oncol Current Opinion in Oncology = Curr Opin Oncol Current Opinion in Oncology = Curr. Opin. Oncol. Current Opinion In Oncology=Curr Opin Oncol;; Current opinion in ophthalmology = Curr Opin Ophthalmol Current Opinion in Ophthalmology = Curr Opin Ophthalmol Current Opinion in Ophthalmology = Curr. Opin. Ophthalmol. Current Opinion in Organ Transplantation = Curr Opin Organ Tran Current Opinion in Organ Transplantation = Curr. Opin. Organ Tran. Current opinion in orthopaedics = Curr Opin Orthop Current Opinion in Otolaryngology & Head and Neck Surgery = Curr Opin Otolaryngo Current Opinion in Otolaryngology & Head and Neck Surgery = Curr. Opin. Otolaryngo. Current opinion in otolaryngology & head and neck surgery = Curr Opin Otolaryngol Head Neck Surg Current opinion in pediatrics = Curr Opin Pediatr Current Opinion in Pediatrics = Curr Opin Pediatr Current Opinion in Pediatrics = Curr. Opin. Pediatr. Current Opinion In Pediatrics=Curr Opin Pediatr;; Current Opinion in Periodontology = Curr Opin Periodont Current Opinion in Periodontology = Curr. Opin. Periodont. Current opinion in periodontology = Curr Opin Periodontol Current Opinion in Periodontology = Curr. Opin. Periodontol. Current opinion in pharmacology = Curr Opin Pharmacol Current Opinion in Pharmacology = Curr Opin Pharmacol Current Opinion in Pharmacology = Curr. Opin. Pharmacol. Current opinion in plant biology = Curr Opin Plant Biol Current Opinion in Plant Biology = Curr Opin Plant Biol Current Opinion in Plant Biology = Curr. Opin. Plant Biol. Current Opinion in Psychiatry = Curr Opin Psychiatr Current Opinion in Psychiatry = Curr. Opin. Psychiatr. Current opinion in psychiatry = Curr Opin Psychiatry Current opinion in pulmonary medicine = Curr Opin Pulm Med Current Opinion in Pulmonary Medicine = Curr Opin Pulm Med Current Opinion in Pulmonary Medicine = Curr. Opin. Pulm. Med. Current Opinion In Pulmonary Medicine=Curr Opin Pulm Med;; Current opinion in radiology = Curr Opin Radiol Current Opinion in Radiology = Curr Opin Radiol Current Opinion in Radiology = Curr. Opin. Radiol. Current opinion in rheumatology = Curr Opin Rheumatol Current Opinion in Rheumatology = Curr Opin Rheumatol Current Opinion in Rheumatology = Curr. Opin. Rheumatol. Current Opinion In Rheumatology=Curr Opin Rheumatol;; Current Opinion in Solid State and Materials Science = Curr. Opin. Solid State Mater. Sci. Current Opinion in Solid State & Materials Science = Curr Opin Solid St M Current Opinion in Solid State & Materials Science = Curr. Opin. Solid St. M. Current Opinion in Structural Biology = Curr Opin Struc Biol Current Opinion in Structural Biology = Curr. Opin. Struc. Biol. Current opinion in structural biology = Curr Opin Struct Biol Current Opinion in Structural Biology = Curr. Opin. Struct. Biol. Current Opinion In Structural Biology=Curr Opin Struct Biol;; Current opinion in urology = Curr Opin Urol Current Opinion in Urology = Curr Opin Urol Current Opinion in Urology = Curr. Opin. Urol. Current Organic Chemistry = Curr Org Chem Current Organic Chemistry = Curr. Org. Chem. Current Organic Synthesis = Curr Org Synth Current Organic Synthesis = Curr. Org. Synth. Current Ornithology = Curr Ornithol Current Ornithology = Curr. Ornithol. Current Ornithology, Vol 17 = Curr Ornithol Current Ornithology, Vol 17 = Curr. Ornithol. Current Ornithology, Vol 8 = Curr Ornithol Current Ornithology, Vol 8 = Curr. Ornithol. Current orthopaedics = Curr Orthop Current Orthopaedics = Curr Orthopaed Current Orthopaedics = Curr. Orthopaed. Current osteoporosis reports = Curr Osteoporos Rep Current Osteoporosis Reports = Curr. Osteoporos. Rep. Current Pain and Headache Reports = Curr Pain Headache R Current Pain and Headache Reports = Curr. Pain Headache R. Current pain and headache reports = Curr Pain Headache Rep Current Pain and Headache Reports = Curr. Pain Headache Rep. Current Perspectives in Social Theory = Curr Perspect Soc Th Current Perspectives in Social Theory = Curr. Perspect. Soc. Th. Current Perspectives in Social Theory, Vol 16, 1996 = Curr Perspect Soc Th Current Perspectives in Social Theory, Vol 16, 1996 = Curr. Perspect. Soc. Th. Current Perspectives in Special Education Administration = Adv Spec Educ Current Perspectives in Special Education Administration = Adv. Spec. Educ. Current Perspectives On Applied Information Technologies = Curr Persp Appl Inf Current Perspectives On Applied Information Technologies = Curr. Persp. Appl. Inf. Current Perspectives On Cognition Learning and Instruction = Curr Persp Cong Lear Current Perspectives On Cognition Learning and Instruction = Curr. Persp. Cong. Lear. Current Perspectives On Hormonal Treatment During The Menopause = Int Clin Pr Current Perspectives On Hormonal Treatment During The Menopause = Int. Clin. Pr. Current Perspectives On Job-stress Recovery = Res Occup Stress Wel Current Perspectives On Job-stress Recovery = Res. Occup. Stress. Wel. Current Pespectives in Social Theory, Vol 17, 1997 = Curr Perspect Soc Th Current Pespectives in Social Theory, Vol 17, 1997 = Curr. Perspect. Soc. Th. Current Pharmaceutical Analysis = Curr Pharm Anal Current Pharmaceutical Analysis = Curr. Pharm. Anal. Current Pharmaceutical Biotechnology = Curr Pharm Biotechno Current Pharmaceutical Biotechnology = Curr. Pharm. Biotechno. Current pharmaceutical biotechnology = Curr Pharm Biotechnol Current Pharmaceutical Biotechnology = Curr. Pharm. Biotechnol. Current pharmaceutical design = Curr Pharm Des Current Pharmaceutical Design = Curr. Pharm. Des. Current Pharmaceutical Design = Curr Pharm Design Current Pharmaceutical Design = Curr. Pharm. Design Current Pharmacogenomics and Personalized Medicine = Curr. Pharm. Pers. Med. Current Pharmacogenomics = Curr. Pharmacogenomics Current Plant Science and Biotechnology in Agriculture = Curr Plant Sci Biot Current Plant Science and Biotechnology in Agriculture = Curr. Plant Sci. Biot. Current Plant Science in Biotechnology and Agriculture = Curr. Plant Sci. Biotechnol. Agric. Current population reports. Series P-20, Population characteristics = Curr Popul Rep Popul Charact Current population reports, Series P-25. Population estimates and projections = Curr Popul Rep Popul Estim Proj Current population reports. Series P-28, Special censuses = Curr Popul Rep [Spec Censuses] Current population reports. Series P-60, Consumer income = Curr Popul Rep Consum Income Current Population Reports. Special Censuses. Series P-28 = Curr. Popul. Rep. [Spec. Censuses] Current practice in gerontological nursing = Curr Pract Gerontol Nurs Current Practice in Gerontological Nursing = Curr. Pract. Gerontol. Nurs. Current practice in obstetric and gynecologic nursing = Curr Pract Obstet Gynecol Nurs Current Practice in Obstetric and Gynecologic Nursing = Curr. Pract. Obstet. Gynecol. Nurs. Current practice in orthopaedic surgery = Curr Pract Orthop Surg Current Practice in Orthopaedic Surgery = Curr. Pract. Orthop. Surg. Current practice in pediatric nursing = Curr Pract Pediatr Nurs Current Practice in Pediatric Nursing = Curr. Pract. Pediatr. Nurs. Current Practices and Future Developments in The Pharmacotherapy of Mental Disorders = Int Congr Ser Current Practices and Future Developments in The Pharmacotherapy of Mental Disorders = Int. Congr. Ser. Current Practices in Ground Water and Vadose Zone Investigations = Am Soc Test Mater Current Practices in Ground Water and Vadose Zone Investigations = Am. Soc. Test. Mater. Current prescribing = Curr Prescr Current Principles and Practices of Telemedicine and E-health = Stud Health Technol Current Principles and Practices of Telemedicine and E-health = Stud. Health. Technol. Current Problems in Atmospheric Radiation (irs 2008) = Aip Conf Proc Current Problems in Atmospheric Radiation (irs 2008) = Aip. Conf. Proc. Current Problems in Cancer = Curr Prob Cancer Current Problems in Cancer = Curr. Prob. Cancer Current problems in cancer = Curr Probl Cancer Current Problems in Cancer = Curr. Probl. Cancer Current Problems In Cancer=Curr Probl Cancer;; Current Problems in Cardiology = Curr Prob Cardiology Current Problems in Cardiology = Curr. Prob. Cardiology Current problems in cardiology = Curr Probl Cardiol Current Problems in Cardiology = Curr. Probl. Cardiol. Current Problems In Cardiology=Curr Probl Cardiol;; Current problems in clinical biochemistry = Curr Probl Clin Biochem Current Problems in Clinical Biochemistry = Curr. Probl. Clin. Biochem. Current problems in dermatology = Curr Probl Dermatol Current Problems in Dermatology = Curr Probl Dermatol Current Problems in Dermatology = Curr. Probl. Dermatol. Current Problems In Dermatology=Curr Probl Dermatol;; Current Problems in Dermatology-us = Curr Probl Derm-us Current Problems in Dermatology-us = Curr. Probl. Derm-us. Current problems in diagnostic radiology = Curr Probl Diagn Radiol Current Problems in Diagnostic Radiology = Curr. Probl. Diagn. Radiol. Current Problems In Diagnostic Radiology=Curr Probl Diagn Radiol;; Current Problems in Epilepsy = Curr Prob E Current Problems in Epilepsy = Curr. Prob. E. Current Problems in Neurology = Curr Prob N Current Problems in Neurology = Curr. Prob. N. Current problems in obstetrics and gynecology = Curr Probl Obstet Gynecol Current problems in obstetrics, gynecology and fertility = Curr Probl Obstet Gynecol Fertil Current Problems in Obstetrics Gynecology and Fertility = Curr Prob Obst Gyn F Current Problems in Obstetrics Gynecology and Fertility = Curr. Prob. Obst. Gyn. F. Current Problems in Otolaryngology 21 = Akt Prob Ot Current Problems in Otolaryngology 21 = Akt. Prob. Ot. Current problems in pediatric and adolescent health care = Curr Probl Pediatr Adolesc Health Care Current Problems in Pediatric and Adolescent Health Care = Curr. Probl. Pediatr. Adolesc. Health Care Current problems in pediatrics = Curr Probl Pediatr Current Problems in Pediatrics = Curr. Probl. Pediatr. Current Problems In Pediatrics=Curr Probl Pediatr;; Current problems in surgery = Curr Probl Surg Current Problems in Surgery = Curr. Probl. Surg. Current Problems In Surgery=Curr Probl Surg;; Current Problems in Surgery = Curr Prob Surg Current Problems in Surgery = Curr. Prob. Surg. Current Problems of Hydrogeology in Urban Areas, Urban Agglomerates and Industrial Centres = Nato Sci S Ss Iv Ear Current Problems of Hydrogeology in Urban Areas, Urban Agglomerates and Industrial Centres = Nato. Sci. S. Ss. Iv. Ear. Current Problems of Otorhinolaryngology 12 = Akt Prob Ot Current Problems of Otorhinolaryngology 12 = Akt. Prob. Ot. Current problems of Soviet medicine = Curr Probl Sov Med Current Progress in The Understanding of Secondary Brain Damage From Trauma and Ischemia = Act Neur S Current Progress in The Understanding of Secondary Brain Damage From Trauma and Ischemia = Act. Neur. S. Current Protein and Peptide Science = Curr. Protein Pept. Sci. Current Protein & Peptide Science = Curr Protein Pept Sc Current Protein & Peptide Science = Curr. Protein Pept. Sc. Current protein & peptide science = Curr Protein Pept Sci Current Proteomics = Curr Proteomics Current Proteomics = Curr. Proteomics Current psychiatric therapies = Curr Psychiatr Ther Current Psychiatric Therapies = Curr. Psychiatr. Ther. Current Psychiatry Reports = Curr Psychiat Rep Current Psychiatry Reports = Curr. Psychiat. Rep. Current psychiatry reports = Curr Psychiatry Rep Current Psychiatry Reports = Curr. Psychiatry Rep. Current psychiatry reviews = Curr Psychiatry Rev Current Psychology = Curr Psychol Current Psychology = Curr. Psychol. Current psychology (New Brunswick, N.J.) = Curr Psychol Current Psychology-research & Reviews = Curr Psychol Res Rev Current Psychology-research & Reviews = Curr. Psychol. Res. Rev. Current Research and Technological Developments On The Dead Sea Scrolls = Stud Text Des Judah Current Research and Technological Developments On The Dead Sea Scrolls = Stud. Text. Des. Judah. Current researches in anesthesia & analgesia = Curr Res Anesth Analg Current Research in Advanced Materials and Processes = Mater Sci Forum Current Research in Advanced Materials and Processes = Mater. Sci. Forum. Current Research in Ethnomusicology = Curr Res Ethnomusico Current Research in Ethnomusicology = Curr. Res. Ethnomusico. Current Research in The Semantics/pragmatics Interface = Cur Res Sem Prag Int Current Research in The Semantics/pragmatics Interface = Cur. Res. Sem. Prag. Int. Current Research in The Semantics Pragmatics Interface = Cur Res Sem Prag Int Current Research in The Semantics Pragmatics Interface = Cur. Res. Sem. Prag. Int. Current Research in The Semantics Pragmatics Interface = Curr Res Semant Prag Current Research in The Semantics Pragmatics Interface = Curr. Res. Semant. Prag. Current research on occupations and professions = Curr Res Occup Prof Current Research On Peace and Violence = Curr Res Peace Viol Current Research On Peace and Violence = Curr. Res. Peace Viol. Current Research On Remote Sensing, Laser Probing, and Imagery in Natural Waters = Proc Spie Current Research On Remote Sensing, Laser Probing, and Imagery in Natural Waters = Proc. Spie. Current Research On Remote Sensing, Laser Probing, and Imagery in Natural Waters = P Soc Photo-opt Ins Current Research On Remote Sensing, Laser Probing, and Imagery in Natural Waters = P. Soc. Photo-opt. Ins. Current review of pain = Curr Rev Pain Current rheumatology reports = Curr Rheumatol Rep Current Rheumatology Reports = Curr. Rheumatol. Rep. Current Role of Geological Mapping in Geosciences = Nato Sci S Ss Iv Ear Current Role of Geological Mapping in Geosciences = Nato. Sci. S. Ss. Iv. Ear. Current Science = Current Sci. Current science = Curr Sci Current Science = Curr. Sci. Current Science = Curr Sci India Current Science = Curr. Sci. India. Current Separations and Drug Development = Curr. Sep Drug Dev. Current separations = Curr Sep Current Separations = Curr. Sep. Current Signal Transduction Therapy = Curr Signal Transd T Current Signal Transduction Therapy = Curr. Signal Transd. T. Current Signal Transduction Therapy = Curr. Signal Transduction Ther. Currents in alcoholism = Curr Alcohol Currents in Alcoholism = Curr. Alcohol. Currents in High-energy Astrophysics = Nato Adv Sci Inst Se Currents in High-energy Astrophysics = Nato. Adv. Sci. Inst. Se. Currents in modern biology = Curr Mod Biol Currents in Modern Biology = Curr. Mod. Biol. Currents in theology and mission = Curr Theol Mission Current Situation Regarding The Diagnosis and Treatment of Testicular Tumors = Contr Oncol Current Situation Regarding The Diagnosis and Treatment of Testicular Tumors = Contr. Oncol. Current Sociology-1976 = Current Sociol Current Sociology-1976 = Current Sociol. Current Sociology = Current Sociol Current Sociology = Current Sociol. Current Sociology = Curr Sociol Current Sociology = Curr. Sociol. Current sociology. La Sociologie contemporaine. = Curr Sociol Current Sociology-sociologie Contemporaine = Curr Sociol Current Sociology-sociologie Contemporaine = Curr. Sociol. Currents of Encounter : Studies On The Contact Between Christianity and Other Religions, Beliefs, and Cultures = Curr Encoun Currents of Encounter : Studies On The Contact Between Christianity and Other Religions, Beliefs, and Cultures = Curr. Encoun. Current Sports Medicine Reports = Curr Sport Med Rep Current Sports Medicine Reports = Curr. Sport. Med. Rep. Current sports medicine reports = Curr Sports Med Rep Current Sports Medicine Reports = Curr. Sports Med. Rep. Current Status of Diabetes Mellitus in East Asia = Int Congr Ser Current Status of Diabetes Mellitus in East Asia = Int. Congr. Ser. Current Status of Drug Dependence / Abuse Studies: Cellular and Molecular Mechanisms of Drugs of Abuse and Neurotoxicity = Ann Ny Acad Sci Current Status of Drug Dependence / Abuse Studies: Cellular and Molecular Mechanisms of Drugs of Abuse and Neurotoxicity = Ann. Ny. Acad. Sci. Current Status of Endometriosis : Research and Management = I C S S Current Status of Endometriosis : Research and Management = I. C. S. S. Current Status of Gynaecology and Obstetrics Series = C St Gyn Ob Current Status of Gynaecology and Obstetrics Series = C. St. Gyn. Ob. Current Status of Prevention and Treatment of Diabetic Complications = Int Congr Ser Current Status of Prevention and Treatment of Diabetic Complications = Int. Congr. Ser. Current Status, Trends, and Needs in Radiochemical Education: The Us and Abroad = Aip Conf Proc Current Status, Trends, and Needs in Radiochemical Education: The Us and Abroad = Aip. Conf. Proc. Current Stem Cell Research & Therapy = Curr. Stem Cell Res. Ther. Current Studies in Hematology and Blood Transfusion = Curr Stud Hematol Bl Current Studies in Hematology and Blood Transfusion = Curr. Stud. Hematol. Bl. Current studies in hematology and blood transfusion = Curr Stud Hematol Blood Transfus Current Studies in Hematology and Blood Transfusion = Curr. Stud. Hematol. Blood Transfus. Current Studies In Hematology and Blood Transfusion=Curr Stud Hematol Blood Transfus;; Current Studies in Linguistics = Curr Stud Linguist Current Studies in Linguistics = Curr. Stud. Linguist. Current studies on the nature of brain function = Curr Stud Nat Brain Funct Current surgery = Curr Surg Current Surgery = Curr. Surg. Current Themes in Engineering Science 2007 = Aip Conf Proc Current Themes in Engineering Science 2007 = Aip. Conf. Proc. Current Themes in Engineering Science 2008 = Aip Conf Proc Current Themes in Engineering Science 2008 = Aip. Conf. Proc. Current Themes in Engineering Science 2009 = Aip Conf Proc Current Themes in Engineering Science 2009 = Aip. Conf. Proc. Current Themes in Engineering Technologies = Aip Conf Proc Current Themes in Engineering Technologies = Aip. Conf. Proc. Current Theoretical Models and High Resolution Solar Observations: Preparing for Atst = Astr Soc P Current Theoretical Models and High Resolution Solar Observations: Preparing for Atst = Astr. Soc. P. Current Therapeutic Approaches to Panic and Other Anxiety Disorders = Int Acad B Current Therapeutic Approaches to Panic and Other Anxiety Disorders = Int. Acad. B. Current Therapeutic Research-clinical and Experimental = Curr Ther Res Clin E Current Therapeutic Research-clinical and Experimental = Curr. Ther. Res. Clin. E. Current therapeutic research, clinical and experimental = Curr Ther Res Clin Exp Current Therapeutic Research, Clinical and Experimental = Curr. Ther. Res. Clin. Exp. Current Therapeutics = Curr Ther Current Therapeutics = Curr. Ther. Current therapeutics = Curr Ther (Seaforth) Current therapy in endocrinology and metabolism = Curr Ther Endocrinol Metab Current Therapy in Endocrinology and Metabolism = Curr. Ther. Endocrinol. Metab. Current Therapy In Endocrinology and Metabolism=Curr Ther Endocrinol Metab;; Current Therapy in Nephrology = Dev Nephrol Current Therapy in Nephrology = Dev. Nephrol. Current Thinking in Ethics and Theology = Cur Think E Current Thinking in Ethics and Theology = Cur. Think. E. Current Topics in Antiarrhythmic Agents = Curr Clin P Current Topics in Antiarrhythmic Agents = Curr. Clin. P. Current Topics in Artificial Intelligence = Lect Notes Artif Int Current Topics in Artificial Intelligence = Lect. Notes. Artif. Int. Current Topics in Artificial Intelligence = Lect Notes Comput Sc Current Topics in Artificial Intelligence = Lect. Notes. Comput. Sc. Current Topics in Astrofundamental Physics, 5th Course = Sci Cult Ser Astroph Current Topics in Astrofundamental Physics, 5th Course = Sci. Cult. Ser. Astroph. Current Topics in Astrofundamental Physics: Primordial Cosmology = Nato Adv Sci I C-mat Current Topics in Astrofundamental Physics: Primordial Cosmology = Nato. Adv. Sci. I. C-mat. Current Topics in Astrofundamental Physics: The Early Universe = Nato Adv Sci Inst Se Current Topics in Astrofundamental Physics: The Early Universe = Nato. Adv. Sci. Inst. Se. Current Topics in Behavioral Neurosciences = Curr Top Behav Neuro Current Topics in Behavioral Neurosciences = Curr. Top. Behav. Neuro. Current Topics in Bioenergetics = Curr Top Bioenerg Current Topics in Bioenergetics = Curr. Top. Bioenerg. Current Topics in Bioenergetics, Vol 17 = Curr Top Bioenerg Current Topics in Bioenergetics, Vol 17 = Curr. Top. Bioenerg. Current Topics in Cardiovascular Disease = Curr Top Cardiov Dis Current Topics in Cardiovascular Disease = Curr. Top. Cardiov. Dis. Current topics in cellular regulation = Curr Top Cell Regul Current Topics in Cellular Regulation = Curr Top Cell Regul Current Topics in Cellular Regulation = Curr. Top. Cell. Regul. Current Topics In Cellular Regulation=Curr Top Cell Regul;; Current Topics in Cellular Regulation, Vol 34 = Curr Top Cell Regul Current Topics in Cellular Regulation, Vol 34 = Curr. Top. Cell. Regul. Current Topics in Cellular Regulation, Vol 35 = Curr Top Cell Regul Current Topics in Cellular Regulation, Vol 35 = Curr. Top. Cell. Regul. Current Topics in Cellular Regulation, Vol 36 = Curr Top Cell Regul Current Topics in Cellular Regulation, Vol 36 = Curr. Top. Cell. Regul. Current topics in comparative pathobiology = Curr Top Comp Pathobiol Current Topics in Comparative Pathobiology = Curr. Top. Comp. Pathobiol. Current Topics in Complement = Adv Exp Med Biol Current Topics in Complement = Adv. Exp. Med. Biol. Current Topics in Complement Ii = Adv Exp Med Biol Current Topics in Complement Ii = Adv. Exp. Med. Biol. Current topics in developmental biology = Curr Top Dev Biol Current Topics in Developmental Biology = Curr Top Dev Biol Current Topics in Developmental Biology = Curr. Top. Dev. Biol. Current Topics In Developmental Biology=Curr Top Dev Biol;; Current Topics in Developmental Biology: Myogenesis = Curr Top Dev Biol Current Topics in Developmental Biology: Myogenesis = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 28 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 28 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 29 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 29 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 30 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 30 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 32 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 32 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 33 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 33 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 34 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 34 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 35 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 35 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 38 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 38 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol. 39 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol. 39 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 40 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 40 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 41 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 41 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 43 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 43 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 44 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 44 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 45 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 45 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 46 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 46 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 47 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 47 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 48 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 48 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 50 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 50 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 51 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 51 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 52 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 52 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 53 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 53 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 55 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 55 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 56 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 56 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 58 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 58 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 59 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 59 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol. 61 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol. 61 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 63 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 63 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology , Vol 64 = Curr Top Dev Biol Current Topics in Developmental Biology , Vol 64 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 65 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 65 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 66 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 66 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 67 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 67 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 69 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 69 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 71 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 71 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 72 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 72 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 73 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 73 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 74 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 74 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 75 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 75 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 76 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 76 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 78 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 78 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 79 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 79 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 80 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 80 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Vol 86 = Curr Top Dev Biol Current Topics in Developmental Biology, Vol 86 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Volume 68 = Curr Top Dev Biol Current Topics in Developmental Biology, Volume 68 = Curr. Top. Dev. Biol. Current Topics in Developmental Biology, Volume 70 = Curr Top Dev Biol Current Topics in Developmental Biology, Volume 70 = Curr. Top. Dev. Biol. Current Topics in Diabetes Research = Front Diabetes Current Topics in Diabetes Research = Front. Diabetes Current topics in experimental endocrinology = Curr Top Exp Endocrinol Current Topics in Experimental Endocrinology = Curr. Top. Exp. Endocrinol. Current topics in eye research = Curr Top Eye Res Current Topics in Eye Research = Curr. Top. Eye Res. Current topics in hematology = Curr Top Hematol Current Topics in Hematology = Curr. Top. Hematol. Current Topics in Innate Immunity = Adv Exp Med Biol Current Topics in Innate Immunity = Adv. Exp. Med. Biol. Current Topics in Management = Curr T Manag Current Topics in Management = Curr. T. Manag. Current Topics in Management, Vol 1, 1996 = Curr T Manag Current Topics in Management, Vol 1, 1996 = Curr. T. Manag. Current Topics in Management, Vol 11 = Curr T Manag Current Topics in Management, Vol 11 = Curr. T. Manag. Current Topics in Management, Vol 2, 1997 = Curr T Manag Current Topics in Management, Vol 2, 1997 = Curr. T. Manag. Current Topics in Management, Vol 4 - 1999 = Curr T Manag Current Topics in Management, Vol 4 - 1999 = Curr. T. Manag. Current topics in medical mycology = Curr Top Med Mycol Current Topics in Medical Mycology = Curr. Top. Med. Mycol. Current Topics In Medical Mycology=Curr Top Med Mycol;; Current topics in medicinal chemistry = Curr Top Med Chem Current Topics in Medicinal Chemistry = Curr Top Med Chem Current Topics in Medicinal Chemistry = Curr. Top. Med. Chem. Current Topics in Medicinal Chemistry (Sharjah, United Arab Emirates) = Curr. Top. Med. Chem. (Sharjah, United Arab Emirates) Current Topics in Membranes and Transport = Curr Top Membr Trans Current Topics in Membranes and Transport = Curr. Top. Membr. Trans. Current Topics in Membranes = Curr Top Membr Current Topics in Membranes = Curr. Top. Membr. Current Topics in Microbiology and Immunology = Curr Top Microbiol Current Topics in Microbiology and Immunology = Curr. Top. Microbiol. Current topics in microbiology and immunology = Curr Top Microbiol Immunol Current Topics in Microbiology and Immunology = Curr. Top. Microbiol. Immunol. Current Topics In Microbiology and Immunology=Curr Top Microbiol Immunol;; Current topics in molecular endocrinology = Curr Top Mol Endocrinol Current Topics in Molecular Endocrinology = Curr. Top. Mol. Endocrinol. Current Topics in Mucosal Immunology 1993 = Int Congr Ser Current Topics in Mucosal Immunology 1993 = Int. Congr. Ser. Current Topics In Neuroendocrinology=Curr Top Neuroendocrinol;; Current Topics in Nutraceutical Research = Curr Top Nutraceut R Current Topics in Nutraceutical Research = Curr. Top. Nutraceut. R. Current Topics in Pathology = Curr Topics Pathol Current Topics in Pathology = Curr. Topics Pathol. Current Topics in Pathology = Curr. Top. Pathol. Current Topics In Pathology=Curr Top Pathol;; Current topics in pathology. Ergebnisse der Pathologie = Curr Top Pathol Current Topics in Plant Biochemistry and Physiology 1990, Vol 9 = Curr T Pl B Current Topics in Plant Biochemistry and Physiology 1990, Vol 9 = Curr. T. Pl. B. Current Topics in Plant Biochemistry and Physiology = Curr T Pl B Current Topics in Plant Biochemistry and Physiology = Curr. T. Pl. B. Current Topics in Plant Biochemistry and Physiology, Vol 8 = Curr T Pl B Current Topics in Plant Biochemistry and Physiology, Vol 8 = Curr. T. Pl. B. Current Topics in Plant Molecular Biology = Cur T Pl M Current Topics in Plant Molecular Biology = Cur. T. Pl. M. Current Topics in Plant Physiology : An American Society of Plant Physiologists Series = Cur Top Pl Current Topics in Plant Physiology : An American Society of Plant Physiologists Series = Cur. Top. Pl. Current Topics in Quantitative Finance = Contr Manage Sci Current Topics in Quantitative Finance = Contr. Manage. Sci. Current topics in radiation research quarterly = Curr Top Radiat Res Q Current Topics in Radiation Research Quarterly = Curr. Top. Radiat. Res. Q. Current Topics in Rehabilitation = Curr T Reh Current Topics in Rehabilitation = Curr. T. Reh. Current Topics in Shock Waves = Aip Conf Proc Current Topics in Shock Waves = Aip. Conf. Proc. Current Topics in Veterinary Medicine and Animal Science = Curr T Vet Current Topics in Veterinary Medicine and Animal Science = Curr. T. Vet. Current Topics On Tonsils and Mucosal Barriers of Upper Airways = Int Congr Ser Current Topics On Tonsils and Mucosal Barriers of Upper Airways = Int. Congr. Ser. Current treatment options in cardiovascular medicine = Curr Treat Options Cardiovasc Med Current treatment options in gastroenterology = Curr Treat Options Gastroenterol Current Treatment Options in Neurology = Curr Treat Option N Current Treatment Options in Neurology = Curr. Treat. Option. N. Current Treatment Options in Neurology = Curr Treat Option Ne Current Treatment Options in Neurology = Curr. Treat. Option. Ne. Current treatment options in neurology = Curr Treat Options Neurol Current Treatment Options in Oncology = Curr Treat Option On Current Treatment Options in Oncology = Curr. Treat. Option. On. Current treatment options in oncology = Curr Treat Options Oncol Current Treatment Options in Oncology = Curr. Treat. Options Oncol. Current Trends in Ai Planning = Fr Art Int Current Trends in Ai Planning = Fr. Art. Int. Current Trends in Automation and Control = Tech Papers Isa Current Trends in Automation and Control = Tech. Papers. Isa. Current Trends in Condensed Matter, Particle Physics and Cosmology = Kathman Sum Current Trends in Condensed Matter, Particle Physics and Cosmology = Kathman. Sum. Current Trends in Database Technology - Edbt 2004 Workshops, Proceedings = Lect Notes Comput Sc Current Trends in Database Technology - Edbt 2004 Workshops, Proceedings = Lect. Notes. Comput. Sc. Current Trends in Database Technology - Edbt 2006 = Lect Notes Comput Sc Current Trends in Database Technology - Edbt 2006 = Lect. Notes. Comput. Sc. Current Trends in Diachronic Semantics and Pragmatics = Stud Pragmat Current Trends in Diachronic Semantics and Pragmatics = Stud. Pragmat. Current Trends in Digestive Ultrasonography = Front Gastroint Res Current Trends in Digestive Ultrasonography = Front. Gastroint. Res. Current Trends in Digestive Ultrasonography = Front Gastr Res Current Trends in Digestive Ultrasonography = Front. Gastr. Res. Current Trends in Economics: Theory and Applications = Stud Econ Theory Current Trends in Economics: Theory and Applications = Stud. Econ. Theory Current Trends in European Second Language Acquisition Research = Multiling Current Trends in European Second Language Acquisition Research = Multiling. Current Trends in Hand Surgery = Int Congr Ser Current Trends in Hand Surgery = Int. Congr. Ser. Current Trends in Infant Screening = Int Congr Ser Current Trends in Infant Screening = Int. Congr. Ser. Current Trends in International Fusion Research, Proceedings = Aip Conf Proc Current Trends in International Fusion Research, Proceedings = Aip. Conf. Proc. Current Trends in Knowledge Acquisition = Fr Art Int Current Trends in Knowledge Acquisition = Fr. Art. Int. Current Trends in Life Sciences = Curr T Life Current Trends in Life Sciences = Curr. T. Life Current Trends in Monoclonal Antibody Development and Manufacturing = Biotechnol Pharm Asp Current Trends in Monoclonal Antibody Development and Manufacturing = Biotechnol. Pharm. Asp. Current Trends in Nonlinear Systems and Control: in Honor of Petar Kokotovic and Turi Nicosia = Sys Con Fdn Current Trends in Nonlinear Systems and Control: in Honor of Petar Kokotovic and Turi Nicosia = Sys. Con. Fdn. Current Trends in Nonlinear Systems and Control: in Honor of Petar Kokotovic and Turi Nicosia = Syst Control-found A Current Trends in Nonlinear Systems and Control: in Honor of Petar Kokotovic and Turi Nicosia = Syst. Control-found. A. Current Trends in Operator Theory and Its Applications = Oper Theor Current Trends in Operator Theory and Its Applications = Oper. Theor. Current Trends in Operator Theory and Its Applications = Oper Theory Adv Appl Current Trends in Operator Theory and Its Applications = Oper. Theory Adv. Appl. Current Trends in Relativistic Astrophysics: Theoretical, Numerical, Observational = Lect Notes Phys Current Trends in Relativistic Astrophysics: Theoretical, Numerical, Observational = Lect. Notes. Phys. Current Trends in Scientific Computing = Contemp Math Current Trends in Scientific Computing = Contemp. Math. Current Trends in The Development and Teaching of The Four Language Skills = Stud Lang Acquis Current Trends in The Development and Teaching of The Four Language Skills = Stud. Lang. Acquis. Current Trends in The Physics of Materials = P Int Sch Phys Current Trends in The Physics of Materials = P. Int. Sch. Phys. Current Trends in Web Engineering = Lect Notes Comput Sc Current Trends in Web Engineering = Lect. Notes. Comput. Sc. Current urology reports = Curr Urol Rep Current Urology Reports = Curr. Urol. Rep. Current vascular pharmacology = Curr Vasc Pharmacol Current Vascular Pharmacology = Curr Vasc Pharmacol Current Vascular Pharmacology = Curr. Vasc. Pharmacol. Current Viewpoints On The Use of Soil Nitrate Tests in The South = Asa Misc P Current Viewpoints On The Use of Soil Nitrate Tests in The South = Asa. Misc. P. Current Views of Fatty Acid Oxidation and Ketogenesis = Adv Exp Med Biol Current Views of Fatty Acid Oxidation and Ketogenesis = Adv. Exp. Med. Biol. Current women's health reports = Curr Womens Health Rep Current Women's Health Reports = Curr. Womens Health Rep. Current world leaders = Curr World Lead Current Zoology = Curr Zool Current Zoology = Curr. Zool. Curriculum Change in Secondary Schools, 1957-2004: An Educational Roundabout? = Woburn Educ Ser Curriculum Change in Secondary Schools, 1957-2004: An Educational Roundabout? = Woburn. Educ. Ser. Curriculum for Tomorrows School = Sp St Tech Curriculum for Tomorrows School = Sp. St. Tech. Curriculum Inquiry = Curriculum Inq Curriculum Inquiry = Curriculum Inq. Curriculum Matters = Curric Matters Curriculum Matters = Curric. Matters Curriculum Studies Handbook = Stud Curric Theory Curriculum Studies Handbook = Stud. Curric. Theory. Curriculum Theory Network = Curriculum Theory Ne Curriculum Theory Network = Curriculum Theory Ne. Curso Internacional de Oftalmologia. Curso Internacional de Oftalmologia = Curso Int Oftalmol Cursos e Congresos da Universidade de Santiago de Compostela = Cursos Congr. Univ. Santiago de Compostela Curvature and Variational Modeling in Physics and Biophysics = Aip Conf Proc Curvature and Variational Modeling in Physics and Biophysics = Aip. Conf. Proc. Curves and Abelian Varieties = Contemp Math Curves and Abelian Varieties = Contemp. Math. Curves and Surfaces in Computer Vision and Graphics Iii = P Soc Photo-opt Ins Curves and Surfaces in Computer Vision and Graphics Iii = P. Soc. Photo-opt. Ins. Curves and Surfaces in Computer Vision and Graphics Ii = P Soc Photo-opt Ins Curves and Surfaces in Computer Vision and Graphics Ii = P. Soc. Photo-opt. Ins. Curves and Surfaces in Computer Vision and Graphics = P Soc Photo-opt Ins Curves and Surfaces in Computer Vision and Graphics = P. Soc. Photo-opt. Ins. Curzon Jewish Philosophy Series = Curzon Jew Philos S Curzon Jewish Philosophy Series = Curzon Jew. Philos. S. Cushings Syndrome: Pathophysiology, Diagnosis and Treatment, First Edition = Contemp Endocrinol S Cushings Syndrome: Pathophysiology, Diagnosis and Treatment, First Edition = Contemp. Endocrinol. S. Cusped Shell-like Structures = Springerbr Appl Sci Cusped Shell-like Structures = Springerbr. Appl. Sci. Customary Land Tenure and Registration in Australia and Papua New Guinea: Anthropological Perspectives = Asia-pac Env Monogr Customary Land Tenure and Registration in Australia and Papua New Guinea: Anthropological Perspectives = Asia-pac. Env. Monogr. Customer Care: A Training Manual for Library Staff = Chandos Inf Prof Ser Customer Care: A Training Manual for Library Staff = Chandos. Inf. Prof. Ser. Customer Loyalty in Third Party Logistics Relationships = Contrib Manag Sci Customer Loyalty in Third Party Logistics Relationships = Contrib. Manag. Sci. Customer Satisfaction Evaluation: Methods for Measuring and Implementing Service Quality = Int Ser Oper Res Man Customer Satisfaction Evaluation: Methods for Measuring and Implementing Service Quality = Int. Ser. Oper. Res. Man. Customer Satisfaction : Focus On The Customer = Amer Mar As Customer Satisfaction : Focus On The Customer = Amer. Mar. As. Custos E Agronegocio = Cust Agronegocio Custos E Agronegocio = Cust. Agronegocio Custos E Agronegocio = Custos Agronegocio Cutaneous and ocular toxicology = Cutan Ocul Toxicol Cutaneous and Ocular Toxicology = Cutan Ocul Toxicol Cutaneous and Ocular Toxicology = Cutan. Ocul. Toxicol. Cutaneous Lymphoma = Curr Probl Dermatol Cutaneous Lymphoma = Curr. Probl. Dermatol. Cutaneous Neural Neoplasms: A Practical Guide = Curr Clin Pathol Cutaneous Neural Neoplasms: A Practical Guide = Curr. Clin. Pathol. Cutaneous Neuroimmunomodulation: The Proopiomelanocortin System = Ann Ny Acad Sci Cutaneous Neuroimmunomodulation: The Proopiomelanocortin System = Ann. Ny. Acad. Sci. Cutaneous T Cell Lymphoma: Basic and Clinically Relevant Biology = Ann Ny Acad Sci Cutaneous T Cell Lymphoma: Basic and Clinically Relevant Biology = Ann. Ny. Acad. Sci. Cutg Proceedings = Cutg Proceedings Cutis; cutaneous medicine for the practitioner = Cutis Cutis=Cutis;; Cutis = Cutis Cutter It Journal-the Journal of Information Technology Management = Cutter It J Cutter It Journal-the Journal of Information Technology Management = Cutter It J. Cutting-edge Issues in Business Ethics: Continental Challenges to Tradition and Practice = Issues Bus Ethics Cutting-edge Issues in Business Ethics: Continental Challenges to Tradition and Practice = Issues Bus. Ethics. Cutting Edge Medicine and Liaison Psychiatry = Int Congr Ser Cutting Edge Medicine and Liaison Psychiatry = Int. Congr. Ser. Cutting-edge Research Topics On Multiple Criteria Decision Making, Proceedings = Comm Com Inf Sc Cutting-edge Research Topics On Multiple Criteria Decision Making, Proceedings = Comm. Com. Inf. Sc. Cutting-edge Social Media Approaches to Business Education: Teaching With Linkedin, Facebook, Twitter, Second Life, and Blogs = Res Manag Educ Dev Cutting-edge Social Media Approaches to Business Education: Teaching With Linkedin, Facebook, Twitter, Second Life, and Blogs = Res. Manag. Educ. Dev. Cutting-edge Technologies in Higher Education = Cut Technol High Ed Cutting-edge Technologies in Higher Education = Cut. Technol. High. Ed. Cutting Tool Engineering = Cutting Tool Eng Cutting Tool Engineering = Cutting Tool Eng. Cvgip-graphical Models and Image Processing = Cvgip-graph Model Im Cvgip-graphical Models and Image Processing = Cvgip-graph. Model. Im. Cvgip-image Understanding = Cvgip-imag Understan Cvgip-image Understanding = Cvgip-imag. Understan. CVI forum = CVI Forum CVI newswatch = CVI Newswatch CVP = CVP Cvpr: 2009 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-4 = Proc Cvpr Ieee Cvpr: 2009 Ieee Conference On Computer Vision and Pattern Recognition, Vols 1-4 = Proc. Cvpr. Ieee Cvrmed-mrcas'97 = Lect Notes Comput Sc Cvrmed-mrcas'97 = Lect. Notes. Comput. Sc. Cvt 2002 Congress = Vdi Bericht Cvt 2002 Congress = Vdi. Bericht. CW, Canadian welfare = Can Welf Cw-canadian Welfare = Cw-can Welf Cw-canadian Welfare = Cw-can. Welf. C West Churchmans Legacy and Related Works = C W Churchm Leg Rel C West Churchmans Legacy and Related Works = C W. Churchm. Leg. Rel. CWI Syllabi = CWI Syllabi CWI Tract = CWI Tract C-x Bond Formation = Top Organometal Chem C-x Bond Formation = Top. Organometal. Chem. Cyanobacterial Harmful Algal Blooms: State of The Science and Research Needs = Adv Exp Med Biol Cyanobacterial Harmful Algal Blooms: State of The Science and Research Needs = Adv. Exp. Med. Biol. Cyber China: Reshaping National Identities in The Age of Information = Ceri Ser Int Rel Pol Cyber China: Reshaping National Identities in The Age of Information = Ceri. Ser. Int. Rel. Pol. Cyber Conflict and Global Politics = Contemp Secur Stud Cyber Conflict and Global Politics = Contemp. Secur. Stud. Cyberculture Theorists: Manuel Castells and Donna Haraway = Routl Crit Thinkers Cyberculture Theorists: Manuel Castells and Donna Haraway = Routl. Crit. Thinkers. Cyberforensics: Understanding Information Security Investigations = Springer Forens Lab Cyberforensics: Understanding Information Security Investigations = Springer. Forens. Lab. Cybernetica = Cybernetica Cybernetica = Cybernetica Cybernetics and Biophysics Italian Conference = Ital Phy So Cybernetics and Biophysics Italian Conference = Ital. Phy. So. Cybernetics and Systems Analysis = Cybernet. Systems Anal. Cybernetics and Systems Analysis = Cybern Syst Anal+ Cybernetics and Systems Analysis = Cybern. Syst. Anal+.+ Cybernetics and Systems = Cybernet Syst Cybernetics and Systems = Cybernet. Syst. Cybernetics = Cybernetics+ Cybernetics = Cybernetics+.+ Cyberpsychology and Behavior = Cyberpsychol. Behav. Cyberpsychology Behavior and Social Networking = Cyberpsych Beh Soc N Cyberpsychology Behavior and Social Networking = Cyberpsych. Beh. Soc. N. Cyberpsychology & Behavior = Cyberpsychol Behav Cyberpsychology & Behavior = Cyberpsychol. Behav. Cyberpsychology & behavior : the impact of the Internet, multimedia and virtual reality on behavior and society = Cyberpsychol Behav Cyber-security and Threat Politics: Us Efforts to Secure The Information Age = Css Stud Sec Int Rel Cyber-security and Threat Politics: Us Efforts to Secure The Information Age = Css. Stud. Sec. Int. Rel. Cyber Security, Situation Management, and Impact Assessment Ii; and Visual Analytics for Homeland Defense and Security Ii = Proc Spie Cyber Security, Situation Management, and Impact Assessment Ii; and Visual Analytics for Homeland Defense and Security Ii = Proc. Spie. Cyber Security, Situation Management, and Impact Assessment Ii; and Visual Analytics for Homeland Defense and Security Ii = P Soc Photo-opt Ins Cyber Security, Situation Management, and Impact Assessment Ii; and Visual Analytics for Homeland Defense and Security Ii = P. Soc. Photo-opt. Ins. Cyber Situational Awareness: Issues and Research = Adv Inform Secur Cyber Situational Awareness: Issues and Research = Adv. Inform. Secur. Cyberspace Security and Defense: Research Issues = Nato Sci Ser Ii-math Cyberspace Security and Defense: Research Issues = Nato. Sci. Ser. Ii-math. Cyberspace Security and Defense: Research Issues = Nato Sci Ser Ii Math Cyberspace Security and Defense: Research Issues = Nato. Sci. Ser. Ii. Math. Cybium = Cybium Cyborgs & Citadels = Sch Am Res Cyborgs & Citadels = Sch. Am. Res. Cycles, Transfers and Motivic Homology Theories = Ann Math Stud Cycles, Transfers and Motivic Homology Theories = Ann. Math. Stud. Cyclic Beta-keto Esters: Synthesis and Reactions = Chem Res Appl-nova Cyclic Beta-keto Esters: Synthesis and Reactions = Chem. Res. Appl-nova. Cyclic Cabinet Corrosion Testing = Am Soc Test Mater Cyclic Cabinet Corrosion Testing = Am. Soc. Test. Mater. Cyclic Coverings, Calabi-yau Manifolds and Complex Multiplication = Lect Notes Math Cyclic Coverings, Calabi-yau Manifolds and Complex Multiplication = Lect. Notes. Math. Cyclic Deformation, Fracture, and Nondestructive Evaluation of Advanced Materials: 2nd Vol = Am Soc Test Mater Cyclic Deformation, Fracture, and Nondestructive Evaluation of Advanced Materials: 2nd Vol = Am. Soc. Test. Mater. Cyclic Deformation, Fracture, and Nondestructive Evaluation of Advanced Materials = Am Soc Test Mater Cyclic Deformation, Fracture, and Nondestructive Evaluation of Advanced Materials = Am. Soc. Test. Mater. Cyclic Nature of Innovation: Connecting Hard Sciences With Soft Values = Adv Stud Entrep Inno Cyclic Nature of Innovation: Connecting Hard Sciences With Soft Values = Adv. Stud. Entrep. Inno. Cyclic Oxidation of High Temperature Materials = Eur Fed Corros Publ Cyclic Oxidation of High Temperature Materials = Eur. Fed. Corros. Publ. Cyclic Oxidation of High Temperature Materials = Eur Fed Corr Publ Cyclic Oxidation of High Temperature Materials = Eur. Fed. Corr. Publ. Cyclin Dependent Kinase (cdk) Inhibitors = Curr Top Microbiol Cyclin Dependent Kinase (cdk) Inhibitors = Curr. Top. Microbiol. Cycloaddition Reactions in Carbohydrate Chemistry = Acs Sym Ser Cycloaddition Reactions in Carbohydrate Chemistry = Acs. Sym. Ser. Cyclone Separators in Energy Technology and Chemical Engineering = Vdi Bericht Cyclone Separators in Energy Technology and Chemical Engineering = Vdi. Bericht. Cyclooxygenases: Methods and Protocols = Methods Mol Biol Cyclooxygenases: Methods and Protocols = Methods Mol. Biol. Cyclophanes = Top Curr Chem Cyclophanes = Top. Curr. Chem. Cyclosporin A and The Skin = Roy Soc Med Int Cong Cyclosporin A and The Skin = Roy. Soc. Med. Int. Cong. Cyclotrons and Their Applications 2001 = Aip Conf Proc Cyclotrons and Their Applications 2001 = Aip. Conf. Proc. Cylchgrawn Llyfrgell Genedlaethol Cymru. The National Library of Wales journal. National Library of Wales = Cylchgrawn Llyfrgell Genedlaethol Cymru Cypriot Ceramics : Reading The Prehistoric Record = U Mus Symp Cypriot Ceramics : Reading The Prehistoric Record = U. Mus. Symp. Cypriote Archaeology in Goteborg = St Med Ar Lit Pb Cypriote Archaeology in Goteborg = St. Med. Ar. Lit. Pb. Cyprus Journal of Economics=Cyprus J. Econ. Cyprus medical journal = Cyprus Med J Cyprus Review=Cyprus Rev. \cyr Biblioteka Matematika = Bibl. Mat. \cyr Biblioteka Studenta-Matematika = Bibl. Stud.-Mat. \cyr Istoriki Nauki Rossii XX \cyr Veka = Istor. Nauki Ross. XX Veka \cyr Istoriko-Astronomicheskie Issledovaniya = Istor.-Astronom. Issled. \cyr Itogi Nauki i Tekhniki = Itogi Nauki i Tekhniki \cyr Kibernetika---Neogranichennye Vozmozhnosti i Vozmozhnye Ogranicheniya = Kibern. Neogranich. Vozmozhn. Vozmozhn. Ogranich. \cyr Matematika i ee Prilozheniya = Mat. Prilozh. \cyr Metody Matematicheskogo Modelirovaniya = Metody Mat. Model. \cyr Nauchno-Biograficheskaya Literatura = Nauchno-Biograf. Lit. \cyr Novoe v Global\cprime nom Analize = Novoe Global. Anal. \cyr Optimizatsiya i Issledovanie Operatsiy = Optim. Issled. Oper. \cyr Prikladnye Matematicheskie Modeli = Prikl. Mat. Model. \cyr Sibirskaya Shkola Algebry i Logiki = Sib. Shk. Algebry Log. \cyr Soobshcheniya Ob\cdprime edinennogo Instituta Yadernykh Issledovaniy = Soobshch. Ob\cdprime ed. Inst. Yadernykh Issled. Dubna \cyr Soobshcheniya po Prikladnoy Matematike = Soobshch. Prikl. Mat. \cyr Sovremennaya Matematika---Studentam i Aspirantam = Sovrem. Mat.---Stud. Aspir. \cyr Sovremennye Problemy Fiziki = Sovrem. Probl. Fiz. \cyr Sovremennye Problemy Matematiki = Sovrem. Probl. Mat. Fund. Naprav. \cyr Svyaz\cprime Vremen = Svyaz\cprime Vremen \cyr Teoriya i Metody Sistemnogo Analiza = Teor. Metod. Sistem. Anal. \cyr Teoriya Veroyatnostey i Matematicheskaya Statistika = Teor. Veroyatnost. Mat. Statist. \cyr Trudy Instituta Matematiki = Trudy Inst. Mat. \cyr Trudy Instituta Obshchey Fiziki = Trudy IOFAN \cyr Voprosy Mekhaniki i Protsessov Upravleniya = Voprosy Mekh. Protsess. Upravl. \cyr V Pomoshch\cprime Abiturientu = Pomoshch\cprime Abitur. \cyr Zhivoy Yazyk = Zhivoy Yazyk Cysteine Proteases of Pathogenic Organisms = Adv Exp Med Biol Cysteine Proteases of Pathogenic Organisms = Adv. Exp. Med. Biol. Cystic Fibrosis, Basic and Clinical Research = Int Congr Ser Cystic Fibrosis, Basic and Clinical Research = Int. Congr. Ser. Cystic Fibrosis: Diagnosis and Protocols, Vol I: Approaches to Study and Correct Cftr Defects = Methods Mol Biol Cystic Fibrosis: Diagnosis and Protocols, Vol I: Approaches to Study and Correct Cftr Defects = Methods. Mol. Biol. Cystic Fibrosis: Diagnosis and Protocols, Vol Ii: Methods and Resources to Understand Cystic Fibrosis = Methods Mol Biol Cystic Fibrosis: Diagnosis and Protocols, Vol Ii: Methods and Resources to Understand Cystic Fibrosis = Methods Mol. Biol. Cystic Fibrosis: Etiology, Diagnosis and Treatments = Gen-res Issues Cystic Fibrosis: Etiology, Diagnosis and Treatments = Gen-res. Issues. Cystic Fibrosis = Eur Respir Monogr Cystic Fibrosis = Eur. Respir. Monogr. Cyta-journal of Food = Cyta-j Food Cyta-journal of Food = Cyta-j. Food CyTA Journal of Food = CyTA J. Food Cytobiologie = Cytobiologie Cytobios=Cytobios;; Cytobios = Cytobios Cytochrome Oxidase : Structure, Function, and Physiopathology = Ann Ny Acad Sci Cytochrome Oxidase : Structure, Function, and Physiopathology = Ann. Ny. Acad. Sci. Cytochrome P450, Pt B = Method Enzymol Cytochrome P450, Pt B = Method. Enzymol. Cytochrome P450, Pt C = Method Enzymol Cytochrome P450, Pt C = Method. Enzymol. Cytochrome P450, Pt C = Methods Enzymol Cytochrome P450, Pt C = Methods. Enzymol. Cytogenetic and genome research = Cytogenet Genome Res Cytogenetic and Genome Research = Cytogenet Genome Res Cytogenetic and Genome Research = Cytogenet. Genome Res. Cytogenetic Methods = Bga Schrift Cytogenetic Methods = Bga. Schrift. Cytogenetics and cell genetics = Cytogenet Cell Genet Cytogenetics and Cell Genetics=Cytogenet Cell Genet;; Cytogenetics and Cell Genetics = Cytogenet Cell Genet Cytogenetics and Cell Genetics = Cytogenet. Cell Genet. Cytogenetics = Cytogenetics Cytogenetics of Amphibians and Reptiles = Adv Lif Sci Cytogenetics of Amphibians and Reptiles = Adv. Lif. Sci. Cytojournal = Cytojournal CytoJournal = Cytojournal Cytokine and Growth Factor Reviews=Cytokine Growth Factor Rev;; Cytokine and Growth Factor Reviews = Cytokine Growth Factor Rev. Cytokine=Cytokine;; Cytokine = Cytokine Cytokine+ = Cytokine+ Cytokine & growth factor reviews = Cytokine Growth Factor Rev Cytokine & Growth Factor Reviews = Cytokine Growth Factor Rev. Cytokine & Growth Factor Reviews = Cytokine Growth F R Cytokine & Growth Factor Reviews = Cytokine Growth F. R. Cytokine (Philadelphia) = Cytokine (Philadelphia) Cytokines = Adv Protein Chem Cytokines = Adv. Protein. Chem. Cytokines and Adhesion Molecules in Lung Inflammation = Ann Ny Acad Sci Cytokines and Adhesion Molecules in Lung Inflammation = Ann. Ny. Acad. Sci. Cytokines and Cell Homeostasis in The Gastrointestinal Tract = Falk Symp Cytokines and Cell Homeostasis in The Gastrointestinal Tract = Falk. Symp. Cytokines and Chemokines in Autoimmune Disease = Adv Exp Med Biol Cytokines and Chemokines in Autoimmune Disease = Adv. Exp. Med. Biol. Cytokines and Growth Factors in Blood Transfusion = Dev Hematol Cytokines and Growth Factors in Blood Transfusion = Dev. Hematol. Cytokines and Inflammation = New Tr Cyt Cytokines and Inflammation = New. Tr. Cyt. Cytokines and Lipocortins in Inflammation and Differentiation = Prog Clin Biol Res Cytokines and Lipocortins in Inflammation and Differentiation = Prog. Clin. Biol. Res. Cytokines and molecular therapy = Cytokines Mol Ther Cytokines and Molecular Therapy = Cytokines Mol Ther Cytokines and Molecular Therapy = Cytokines Mol. Ther. Cytokines and Related Immunoregulatory Molecules = Behr Inst Mitt Cytokines and Related Immunoregulatory Molecules = Behr. Inst. Mitt. Cytokines and The Liver = Falk Symp Cytokines and The Liver = Falk. Symp. Cytokines As Potential Therapeutic Targets for Inflammatory Skin Diseases = E Schering Res Fdn W Cytokines As Potential Therapeutic Targets for Inflammatory Skin Diseases = E. Schering. Res. Fdn. W. Cytokines: Basic Principles and Practical Applications = Chall Mod Med Cytokines: Basic Principles and Practical Applications = Chall. Mod. Med. Cytokines, Cellular and Molecular Therapy=Cytokines Cell Mol Ther;; Cytokines, Cellular and Molecular Therapy = Cytokines Cell. Mol. Ther. Cytokines Cellular & Molecular Therapy = Cytokines Cell Mol T Cytokines Cellular & Molecular Therapy = Cytokines Cell. Mol. T. Cytokines, cellular & molecular therapy = Cytokines Cell Mol Ther Cytokines=Cytokines;; Cytokines = Cytokines Cytokines, Growth Mediators and Physical Activity in Children During Puberty = Med Sport Sci Cytokines, Growth Mediators and Physical Activity in Children During Puberty = Med. Sport. Sci. Cytokines in Cancer Therapy = Contr Oncol Cytokines in Cancer Therapy = Contr. Oncol. Cytokines in Liver Injury and Repair = Falk Symp Cytokines in Liver Injury and Repair = Falk. Symp. Cytokinesis = Ann Ny Acad Sci Cytokinesis = Ann. Ny. Acad. Sci. Cytokines, Stress, and Depression = Adv Exp Med Biol Cytokines, Stress, and Depression = Adv. Exp. Med. Biol. Cytokine Therapies: Novel Approaches for Clinical Indications = Ann Ny Acad Sci Cytokine Therapies: Novel Approaches for Clinical Indications = Ann. Ny. Acad. Sci. Cytologia = Cytologia Cytologia = Cytologia (Tokyo) Cytological and Immunocytochemical Approaches to The Study of Corneal Endothelial Wound Repair = Prog Histochem Cytoc Cytological and Immunocytochemical Approaches to The Study of Corneal Endothelial Wound Repair = Prog. Histochem. Cytoc. Cytology and Genetics = Cytol Genet Cytology and Genetics = Cytol Genet+ Cytology and Genetics = Cytol. Genet. Cytology and Genetics = Cytol. Genet+.+ Cytology and Surgical Pathology of Gynecologic Neoplasms = Curr Clin Pathol Cytology and Surgical Pathology of Gynecologic Neoplasms = Curr. Clin. Pathol. Cytometry, 4th Edition: New Developments = Method Cell Biol Cytometry, 4th Edition: New Developments = Method. Cell. Biol. Cytometry, 4th Edition: New Developments = Methods Cell Biol Cytometry, 4th Edition: New Developments = Methods. Cell. Biol. Cytometry=Cytometry;; Cytometry = Cytometry Cytometry. Part A = Cytometry A Cytometry Part A = Cytom Part A Cytometry Part A = Cytom. Part A Cytometry. Part A : the journal of the International Society for Analytical Cytology = Cytometry A Cytometry. Part B, Clinical cytometry = Cytometry B Clin Cytom Cytometry. Part B, Clinical Cytometry = Cytometry B Clin. Cytom. Cytometry Part B-clinical Cytometry = Cytom Part B-clin Cy Cytometry Part B-clinical Cytometry = Cytom. Part B-clin. Cy. Cytometry. Supplement=Cytometry Suppl;; Cytometry. Supplement = Cytometry. Suppl. Cytometry. Supplement : the journal of the Society for Analytical Cytology = Cytometry Suppl Cytopathology=Cytopathology;; Cytopathology = Cytopathology Cytopathology : official journal of the British Society for Clinical Cytology = Cytopathology Cytopathology of Soft Tissue and Bone Lesions = Essent Cytopathol Cytopathology of Soft Tissue and Bone Lesions = Essent. Cytopathol. Cytopathology of The Glandular Lesions of The Female Genital Tract = Monogr Clin Cytol Cytopathology of The Glandular Lesions of The Female Genital Tract = Monogr. Clin. Cytol. Cytoskeletal Mechanisms During Animal Development = Curr Top Dev Biol Cytoskeletal Mechanisms During Animal Development = Curr. Top. Dev. Biol. Cytoskeletal Regulation of Membrane Function = Soc Gen Phy Cytoskeletal Regulation of Membrane Function = Soc. Gen. Phy. Cytoskeleton = Cytoskeleton Cytoskeleton Methods and Protocols = Methods Mol Biol Cytoskeleton Methods and Protocols = Methods Mol. Biol. Cytoskeleton of The Nervous System = Adv Neurobiol Cytoskeleton of The Nervous System = Adv. Neurobiol. Cytotechnology = Cytotechnology Cytotherapy = Cytotherapy Cytotoxic Anticancer Drugs : Models and Concepts for Drug Discovery and Development = Dev Oncol Cytotoxic Anticancer Drugs : Models and Concepts for Drug Discovery and Development = Dev. Oncol. Cytotoxic, Mutagenic and Carcinogenic Potential of Heavy Metals Related to Human Environment = Nato Asi 2 Cytotoxic, Mutagenic and Carcinogenic Potential of Heavy Metals Related to Human Environment = Nato. Asi. 2. Czasopismo geograficzne : kwartalnik Zrzeszenia Pol. Nauczycieli Geografji, Towarzystwa Geograficznego we Lwowie i Towarzystwa Geograficznego w Poznaniu = Czas Geogr Czasopismo prawno-historyczne = Czas Praw Hist Czasopismo stomatologiczne = Czas Stomatol Czasopismo Stomatologiczne = Czas. Stomatol. Czech Journal of Animal Science = Czech J Anim Sci Czech Journal of Animal Science = Czech J. Anim. Sci. Czech Journal of Food Science = Czech J. Food Sci. Czech Journal of Food Sciences = Czech J Food Sci Czech Journal of Food Sciences = Czech J. Food Sci. Czech Journal of Genetics and Plant Breeding = Czech J Genet Plant Czech Journal of Genetics and Plant Breeding = Czech J. Genet. Plant Czech mycology = Czech Mycol Czechoslovak economic digest = Czech Econ Dig Czechoslovak Economic Digest=Czech. Econ. Digest. Czechoslovak Economic Papers=Czech. Econ. Pap. Czechoslovak Journal for Operations Research=Czech. J. Operations Res. Czechoslovak Journal of Food Sciences = Czech. J. Food Sci. Czechoslovak Journal of Physics = Czech J Phys Czechoslovak Journal of Physics = Czech. J. Phys. Czechoslovak Journal of Physics = Czechoslovak J. Phys. Czechoslovak Journal of Physics Section B = Czech J Phys Sect B Czechoslovak Journal of Physics Section B = Czech. J. Phys. Sect. B Czechoslovak Mathematical Journal = Czech Math J Czechoslovak Mathematical Journal = Czech. Math. J. Czechoslovak Mathematical Journal = Czechoslovak Math. J. Czechoslovak medicine = Czech Med Czechoslovak Medicine = Czech. Med. Czechoslovak sociological review = Czechoslov Sociol Rev Czech sociological review = Czech Sociol Rev Dac: 2009 46th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des Aut Con Dac: 2009 46th Acm/ieee Design Automation Conference, Vols 1 and 2 = Des. Aut. Con. Dacia. Revue d'archéologie et d'histoire ancienne = Dacia Dacoromania. Jahrbuch für östliche Latinität = Dacoromania Dados-revista De Ciencias Sociais = Dados-rev Cienc Soc Dados-revista De Ciencias Sociais = Dados-rev. Cienc. Soc. Daedalus = Daedalus Daedalus = Daedalus-us Daedalus = Daedalus-us. Daghestan and The World of Islam = Suomal Tied Toim Sar Daghestan and The World of Islam = Suomal. Tied. Toim. Sar. Dahlem Workshop Reports = Dahlem Work Dahlem Workshop Reports = Dahlem Work. Dahlem Workshop Reports : Environmental Sciences Research Report = Dahl Ws Env Dahlem Workshop Reports : Environmental Sciences Research Report = Dahl. Ws. Env. Daidalos. Studi e ricerche del Dipartimento di scienze del mondo antico = Daidalos Daily and Nocturnal Hemodialysis = Contrib Nephrol Daily and Nocturnal Hemodialysis = Contrib. Nephrol. Daily Mail and Guardian = Dly Mail Guard Daily report. China = Dly Rep China Daily report. People's Republic of China = Dly Rep Peoples Repub China Daily (Statistics Canada) = Dly Stat Can Daily times (Lagos, Nigeria) = Dly Times Dairy-derived Ingredients = Woodhead Food Ser Dairy-derived Ingredients = Woodhead. Food. Ser. Dairy Development in The Caribbean Region = Cta Publ Dairy Development in The Caribbean Region = Cta. Publ. Dairy Herd Management = Dairy Herd Manage Dairy Herd Management = Dairy Herd Manage. Dairy & Ice Cream Field = Dairy Ice Cream Fiel Dairy & Ice Cream Field = Dairy Ice Cream Fiel. Dairy Industries = Dairy Industr Dairy Industries = Dairy Industr. Dairy Industries International = Dairy Ind Int Dairy Industries International = Dairy Ind. Int. Dairy Products = Microbiol Handb Dairy Products = Microbiol. Handb. Dairy Research = Int Dairy F Dairy Research = Int. Dairy F. Dairy Science & Technology = Dairy Sci Technol Dairy Science & Technology = Dairy Sci. Technol. Dairy Systems for The 21st Century = Asae Publ Dairy Systems for The 21st Century = Asae. Publ. Dakar medical = Dakar Med Dakar Medical=Dakar Med;; Dakar Medical = Dakar Med. Dalbergia: Proceedings of An International Workshop = Nitr Fix Tree Res Dalbergia: Proceedings of An International Workshop = Nitr. Fix. Tree. Res. Dalhousie dental journal = Dalhousie Dent J Dalhousie Dental Journal = Dalhousie Dent. J. Dalhousie law journal = Dalhous Law J Dalhousie Review = Dalhousie Rev Dalhousie Review = Dalhousie Rev. Dalhousie University School of Library and Information Studies Occasional Papers Series = Dalh U Lib Dalhousie University School of Library and Information Studies Occasional Papers Series = Dalh. U. Lib. Dalton transactions (Cambridge, England : 2003) = Dalton Trans Dalton Transactions = Dalton T Dalton Transactions = Dalton T. Dalton Transactions = Dalton Trans. Damage and Fracture Mechanics Viii = Struct Mat Damage and Fracture Mechanics Viii = Struct. Mat. Damage and Fracture Mechanics Vii = Struct Mat Damage and Fracture Mechanics Vii = Struct. Mat. Damage and Fracture Mechanics Vi = Struct Mat Damage and Fracture Mechanics Vi = Struct. Mat. Damage Assessment and Reconstruction After War Or Natural Disaster = Nato Sci Peace Secur Damage Assessment and Reconstruction After War Or Natural Disaster = Nato. Sci. Peace. Secur. Damage Assessment of Structures = Key Eng Mat Damage Assessment of Structures = Key. Eng. Mat. Damage Assessment of Structures = Key Eng Mater Damage Assessment of Structures = Key. Eng. Mater. Damage Assessment of Structures, Proceedings = Key Eng Mat Damage Assessment of Structures, Proceedings = Key. Eng. Mat. Damage Assessment of Structures, Proceedings = Key Eng Mater Damage Assessment of Structures, Proceedings = Key. Eng. Mater. Damage Assessment of Structures Viii = Key Eng Mat Damage Assessment of Structures Viii = Key. Eng. Mat. Damage Assessment of Structures Viii = Key Eng Mater Damage Assessment of Structures Viii = Key. Eng. Mater. Damage Assessment of Structures Vii = Key Eng Mat Damage Assessment of Structures Vii = Key. Eng. Mat. Damage Assessment of Structures Vii = Key Eng Mater Damage Assessment of Structures Vii = Key. Eng. Mater. Damage Assessment of Structures Vi = Key Eng Mat Damage Assessment of Structures Vi = Key. Eng. Mat. Damage Assessment of Structures Vi = Key Eng Mater Damage Assessment of Structures Vi = Key. Eng. Mater. Damage Detection in Composite Materials = Am Soc Test Mater Damage Detection in Composite Materials = Am. Soc. Test. Mater. Damage in Composite Materials = Stud Appl Mech Damage in Composite Materials = Stud. Appl. Mech. Damage Mechanics and Micromechancis of Localized Fracture Phenomena in Inelastic Solids = Cism Courses Lect Damage Mechanics and Micromechancis of Localized Fracture Phenomena in Inelastic Solids = Cism. Courses. Lect. Damage to Space Optics and Properties and Characteristics of Optical Glass = P Soc Photo-opt Ins Damage to Space Optics and Properties and Characteristics of Optical Glass = P. Soc. Photo-opt. Ins. Damage to Vuv, Euv, and X-ray Optics Iii = Proc Spie Damage to Vuv, Euv, and X-ray Optics Iii = Proc. Spie. Damage to Vuv, Euv, and X-ray Optics = P Soc Photo-opt Ins Damage to Vuv, Euv, and X-ray Optics = P. Soc. Photo-opt. Ins. Damas 99: Damage Assessment of Structures = Key Eng Mat Damas 99: Damage Assessment of Structures = Key. Eng. Mat. Damas 99: Damage Assessment of Structures = Key Eng Mater Damas 99: Damage Assessment of Structures = Key. Eng. Mater. Damascus Document: A Centennial of Discovery = Stud Text Des Judah Damascus Document: A Centennial of Discovery = Stud. Text. Des. Judah. Damaszener Forschungen = DaF Damaszener Mitteilungen = DaM Damaszener Mitteilungen, hrsg. von dem Deutschen Archäologischen Institut (Station Damaskus) = MDAI(D) D-amino Acids Practical Methods and Protocols = D Amino Acids Pract D-amino Acids Practical Methods and Protocols = D. Amino. Acids Pract. D-amino Acids: Practical Methods and Protocols, Vol 1 = D Amino Acids Pract D-amino Acids: Practical Methods and Protocols, Vol 1 = D. Amino. Acids. Pract. D-amino Acids: Practical Methods and Protocols, Vol 2 = D Amino Acids Pract D-amino Acids: Practical Methods and Protocols, Vol 2 = D. Amino. Acids. Pract. D-amino Acids: Practical Methods and Protocols, Vol 4 = D Amino Acids Pract D-amino Acids: Practical Methods and Protocols, Vol 4 = D. Amino. Acids. Pract. Dams and Reservoirs, Societies and Environment in The 21st Century, Vols 1 and 2 = Proc Monogr Eng Wate Dams and Reservoirs, Societies and Environment in The 21st Century, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Dana-a Journal of Fisheries and Marine Research = Dana-j Fish Mar Res Dana-a Journal of Fisheries and Marine Research = Dana-j. Fish. Mar. Res. Dance Chronicle = Dance Chronicle Dance & Dancers = Dance Dancers Dance Magazine = Dance Mag Dance Magazine = Dance Mag. Dance, Music, Art, and Religion = Sc Inst Don Dance, Music, Art, and Religion = Sc. Inst. Don. Dance Research Annual = Dance Res Annu Dance Research Annual = Dance Res. Annu. Dance Research = Dance Res Dance Research = Dance Res. Dance Research Journal = Dance Res J Dance Research Journal = Dance Res. J. Dance Scope = Dance Scope Dance Theatre Journal = Dance Theat J Dance Theatre Journal = Dance Theat. J. Dancing Communities: Performance, Difference and Connection in The Global City = Stud Int Perform Dancing Communities: Performance, Difference and Connection in The Global City = Stud. Int. Perform. Dancing Times = Dancing Times Dangerous Economies: Status and Commerce in Imperial New York = Encounters Asia Dangerous Economies: Status and Commerce in Imperial New York = Encounters. Asia. Dangerous Materials: Control, Risk Prevention and Crisis Management = Nato Sci Peace Secur Dangerous Materials: Control, Risk Prevention and Crisis Management = Nato. Sci. Peace. Secur. Dangerous Pollutants (xenobiotics) in Urban Water Cycle = Nato Sci Peace Secur Dangerous Pollutants (xenobiotics) in Urban Water Cycle = Nato. Sci. Peace. Secur. Dangerous Properties of Industrial Materials Report = Dangerous Prop. Ind. Mater. Rep. Danish medical bulletin = Dan Med Bull Danish Medical Bulletin=Dan Med Bull;; Danish Medical Bulletin = Dan Med Bull Danish Medical Bulletin = Dan. Med. Bull. Danjuros Girls: Women On The Kabuki Stage = Palg Stud Theat Perf Danjuros Girls: Women On The Kabuki Stage = Palg. Stud. Theat. Perf. Danmarks amtsrad = Dan Amtsrad Dansk Botanisk Arkiv = Dan Bot Ark Dansk Botanisk Arkiv = Dan. Bot. Ark. Danski Kemi = Dan. Kemi Dansk medicinhistorisk arbog = Dan Medicinhist Arbog Dansk tidsskrift for farmaci = Dan Tidsskr Farm Dansk Tidsskrift for Farmaci = Dan. Tidsskr. Farm. Dante in Oxford: The Paget Toynbee Lectures = Legenda Ser Dante in Oxford: The Paget Toynbee Lectures = Legenda. Ser. Danza Italiana = Danza Italiana Dao-a Journal of Comparative Philosophy = Dao Dao-a Journal of Comparative Philosophy = Dao. Dao Companions to Chinese Philosophy = Dao Compan Chin Phil Dao Companions to Chinese Philosophy = Dao Compan. Chin. Phil. Dao Companion to Neo-confucian Philosophy = Dao Compan Chin Phil Dao Companion to Neo-confucian Philosophy = Dao Compan. Chin. Phil. Daphnis = Daphnis Daphnis-zeitschrift Fur Mittlere Deutsche Literatur = Daphnis Daphnis-zeitschrift Fur Mittlere Deutsche Literatur = Daphnis. Dapim Refuiim = Dapim Refuiim Dapim refuiim. Folia medica = Dapim Refuiim Dargestellte Autorschaft: Autorkonzept Und Autorsubjekt in Wissenschaftlichen Texten = Reihe Ger Linguist Dargestellte Autorschaft: Autorkonzept Und Autorsubjekt in Wissenschaftlichen Texten = Reihe. Ger. Linguist. Dark and Visible Matter in Galaxies = Astr Soc P Dark and Visible Matter in Galaxies = Astr. Soc. P. Dark Matter = Aip Conf Proc Dark Matter = Aip. Conf. Proc. Dark Matter in Cosmology, Clocks and Tests of Fundamental Laws = Moriond Wor Dark Matter in Cosmology, Clocks and Tests of Fundamental Laws = Moriond. Wor. Dark Matter in Galaxies = Iau Symp Dark Matter in Galaxies = Iau. Symp. Dark Matter in The Universe // = Nato Adv Sci I C-mat Dark Matter in The Universe // = Nato. Adv. Sci. I. C-mat. Dark Matter in The Universe = P Int Sch Phys Dark Matter in The Universe = P. Int. Sch. Phys. Dark Side of Management = Res Manag Dark Side of Management = Res. Manag. Dark Side of The Universe = Aip Conf Proc Dark Side of The Universe = Aip. Conf. Proc. Dark Speech: The Performance of Law in Early Ireland = Middle Ages Ser Dark Speech: The Performance of Law in Early Ireland = Middle. Ages. Ser. Dark Universe: Matter, Energy and Gravity = Space Tel S Dark Universe: Matter, Energy and Gravity = Space. Tel. S. Darpa Urban Challenge: Autonomous Vehicles in City Traffic = Springer Trac Adv Ro Darpa Urban Challenge: Autonomous Vehicles in City Traffic = Springer. Trac. Adv. Ro. Darshana International = Darshana Int Darshana International = Darshana Int. Daru-journal of Faculty of Pharmacy = Daru Daru-journal of Faculty of Pharmacy = Daru. Daru-journal of Pharmaceutical Sciences = Daru Daru-journal of Pharmaceutical Sciences = Daru. Darwin and Astronomy, Proceedings = Esa Spec Publ Darwin and Astronomy, Proceedings = Esa. Spec. Publ. Darwin and Astronomy, Proceedings = Esa Sp Publ Darwin and Astronomy, Proceedings = Esa. Sp. Publ. Darwin = Routl Philos Darwin = Routl. Philos. Das Altertum = Altertum Das Altertum, hrsg. vom Zentralinst. für Alte Gesch. und Archäol. der Dt. Akad. der DDR = Altertum Das archäologische Jahr in Bayern = AJahrBay Das Argument = Argument Dasc: 2008 Ieee/aiaa 27th Digital Avionics Systems Conference, Vols 1 and 2 = Digit Avion Syst Con Dasc: 2008 Ieee/aiaa 27th Digital Avionics Systems Conference, Vols 1 and 2 = Digit. Avion. Syst. Con. Das Darlehensrecht Der Volksrepublik China = Schrift Chin Recht Das Darlehensrecht Der Volksrepublik China = Schrift. Chin. Recht. Das Dental-Labor. Le Laboratoire dentaire. The Dental laboratory = Dent Labor (Munch) Das Deutsche Archäologische Institut. Geschichte und Dokumente = DAIGeschDok Das Deutsche Gesundheitswesen = Dtsch Gesundheitsw Das Fussballstrafrecht Des Deutschen Fussball-bundes (dfb) = Degruyter Komment Das Fussballstrafrecht Des Deutschen Fussball-bundes (dfb) = Degruyter. Komment. Das Hellenistische Konigspaar in Der Medialen Reprasentation: Ptolemaios Ii. Und Arsinoe Ii. = Beitr Altertumskunde Das Hellenistische Konigspaar in Der Medialen Reprasentation: Ptolemaios Ii. Und Arsinoe Ii. = Beitr. Altertumskunde. Dasia 2000: Data Systems in Aerospace, Proceedings = Esa Spec Publ Dasia 2000: Data Systems in Aerospace, Proceedings = Esa. Spec. Publ. Dasia 2000: Data Systems in Aerospace, Proceedings = Esa Sp Publ Dasia 2000: Data Systems in Aerospace, Proceedings = Esa. Sp. Publ. Dasia '97 - Data Systems in Aerospace = Esa Sp Publ Dasia '97 - Data Systems in Aerospace = Esa. Sp. Publ. Dasia 99: Data Systems in Aerospace = Esa Spec Publ Dasia 99: Data Systems in Aerospace = Esa. Spec. Publ. Dasia 99: Data Systems in Aerospace = Esa Sp Publ Dasia 99: Data Systems in Aerospace = Esa. Sp. Publ. Das Logbuch = Logbuch Das Medizinische Laboratorium = Med Lab (Stuttg) Das Medizinische Periskop Ingelheim = Med Periskop Ingelheim Das Offentliche Gesundheitswesen = Offentl Gesundheitswes Das Orchester = Orchester Das Osterreichische Zahntechniker Handwerk : offizielles Organ der Bundesinnung der Zahntechniker = Osterr Zahntech Handw Das Papsttum Und Das Vielgestaltige Italien- Hundert Jahre Italia Pontificia = Abh Akad Wiss Got Ph Das Papsttum Und Das Vielgestaltige Italien- Hundert Jahre Italia Pontificia = Abh. Akad. Wiss. Got. Ph. Das Paulusverstandnis Im Liber Graduum = Patrist Texte Stud Das Paulusverstandnis Im Liber Graduum = Patrist. Texte. Stud. Das Rheinische Landesmuseum Bonn. Berichte aus der Arbeit des Museums = RheinMusBonn Das römische Herrscherbild = Herrscherbild Data Analysis and Modeling for Process Control Iii = Proc Spie Data Analysis and Modeling for Process Control Iii = Proc. Spie. Data Analysis and Modeling for Process Control Iii = P Soc Photo-opt Ins Data Analysis and Modeling for Process Control Iii = P. Soc. Photo-opt. Ins. Data Analysis and Modeling for Process Control Ii = Proc Spie Data Analysis and Modeling for Process Control Ii = Proc. Spie. Data Analysis and Modeling for Process Control Ii = P Soc Photo-opt Ins Data Analysis and Modeling for Process Control Ii = P. Soc. Photo-opt. Ins. Data Analysis and Modeling for Process Control = P Soc Photo-opt Ins Data Analysis and Modeling for Process Control = P. Soc. Photo-opt. Ins. Data Analysis, Classification, and Related Methods = St Class Dat Anal Data Analysis, Classification, and Related Methods = St. Class. Dat. Anal. Data Analysis, Classification, and Related Methods = Stud Class Data Anal Data Analysis, Classification, and Related Methods = Stud. Class. Data Anal. Data Analysis, Classification and The Forward Search = St Class Dat Anal Data Analysis, Classification and The Forward Search = St. Class. Dat. Anal. Data Analysis, Classification and The Forward Search = Stud Class Data Anal Data Analysis, Classification and The Forward Search = Stud. Class. Data Anal. Data Analysis in Astronomy Iv = E Maj Int S Data Analysis in Astronomy Iv = E. Maj. Int. S. Data Analysis, Machine Learning and Applications = St Class Dat Anal Data Analysis, Machine Learning and Applications = St. Class. Dat. Anal. Data Analysis, Machine Learning and Applications = Stud Class Data Anal Data Analysis, Machine Learning and Applications = Stud. Class. Data Anal. Data and Applications Security and Privacy Xxiv, Proceedings = Lect Notes Comput Sc Data and Applications Security and Privacy Xxiv, Proceedings = Lect. Notes. Comput. Sc. Data and Applications Security Xix, Proceedings = Lect Notes Comput Sc Data and Applications Security Xix, Proceedings = Lect. Notes. Comput. Sc. Data and Applications Security Xvii: Status and Prospects = Int Fed Info Proc Data and Applications Security Xvii: Status and Prospects = Int. Fed. Info. Proc. Data and Applications Security Xxiii, Proceedings = Lect Notes Comput Sc Data and Applications Security Xxiii, Proceedings = Lect. Notes. Comput. Sc. Data and Applications Security Xxii = Lect Notes Comput Sc Data and Applications Security Xxii = Lect. Notes. Comput. Sc. Data and Applications Security Xxi, Proceedings = Lect Notes Comput Sc Data and Applications Security Xxi, Proceedings = Lect. Notes. Comput. Sc. Data and Applications Security Xx, Proceedings = Lect Notes Comput Sc Data and Applications Security Xx, Proceedings = Lect. Notes. Comput. Sc. Data and Information Technology = Transport Res Rec Data and Information Technology = Transport. Res. Rec. Data and Knowledge in A Changing World = Data Knowl Chang Wor Data and Knowledge in A Changing World = Data Knowl. Chang. Wor. Data and Mobility: Transforming Information Into Intelligent Traffic and Transportation Services, Proceedings of The Lakeside Conference 2010 = Adv Intel Soft Compu Data and Mobility: Transforming Information Into Intelligent Traffic and Transportation Services, Proceedings of The Lakeside Conference 2010 = Adv. Intel. Soft. Compu. Data and Safety Monitoring Committees in Clinical Trials = Ch Crc Biostat Ser Data and Safety Monitoring Committees in Clinical Trials = Ch. Crc. Biostat. Ser. Data Asia = Data Asia Data Assimilation for The Earth System = Nato Sci S Ss Iv Ear Data Assimilation for The Earth System = Nato. Sci. S. Ss. Iv. Ear. Database and Application Security Xv = Int Fed Info Proc Database and Application Security Xv = Int. Fed. Info. Proc. Database and Expert Systems Applications = Lect Notes Comput Sc Database and Expert Systems Applications = Lect. Notes. Comput. Sc. Database and Expert Systems Applications, Proceedings = Lect Notes Comput Sc Database and Expert Systems Applications, Proceedings = Lect. Notes. Comput. Sc. Database and Expert Systems Applications, Pt 2 = Lect Notes Comput Sc Database and Expert Systems Applications, Pt 2 = Lect. Notes. Comput. Sc. Database and Xml Technologies = Lect Notes Comput Sc Database and Xml Technologies = Lect. Notes. Comput. Sc. Database and Xml Technologies, Proceedings = Lect Notes Comput Sc Database and Xml Technologies, Proceedings = Lect. Notes. Comput. Sc. Database = Database Data Base = Data Base Database: Enterprise, Skills and Innovation, Proceedings = Lect Notes Comput Sc Database: Enterprise, Skills and Innovation, Proceedings = Lect. Notes. Comput. Sc. Data Base for Advances in Information Systems = Data Base Adv Inf Sy Data Base for Advances in Information Systems = Data Base Adv. Inf. Sy. Data Base Product Reports = Data Base Prod Rep Data Base Product Reports = Data Base Prod. Rep. Database Programming Languages = Lect Notes Comput Sc Database Programming Languages = Lect. Notes. Comput. Sc. Databases and Information Systems = Fr Art Int Databases and Information Systems = Fr. Art. Int. Databases and Information Systems = Front Artif Intel Ap Databases and Information Systems = Front. Artif. Intel. Ap. Databases and Information Systems Iv = Fr Art Int Databases and Information Systems Iv = Fr. Art. Int. Databases and Information Systems V = Fr Art Int Databases and Information Systems V = Fr. Art. Int. Database Security, V = Ifip Trans A Database Security, V = Ifip. Trans. A. Database Security, Viii = Ifip Trans A Database Security, Viii = Ifip. Trans. A. Database Security, Vii - Status and Prospects = Ifip Trans A Database Security, Vii - Status and Prospects = Ifip. Trans. A. Databases, Information Systems, and Peer-to-peer Computing = Lect Notes Comput Sc Databases, Information Systems, and Peer-to-peer Computing = Lect. Notes. Comput. Sc. Databases in Networked Information Systems = Lect Notes Comput Sc Databases in Networked Information Systems = Lect. Notes. Comput. Sc. Databases in Networked Information Systems, Proceedings = Lect Notes Comput Sc Databases in Networked Information Systems, Proceedings = Lect. Notes. Comput. Sc. Databases in Telecommunications = Lect Notes Comput Sc Databases in Telecommunications = Lect. Notes. Comput. Sc. Database Support for Data Mining Applications: Discovering Knowledge With Inductive Queries = Lect Notes Artif Int Database Support for Data Mining Applications: Discovering Knowledge With Inductive Queries = Lect. Notes. Artif. Int. Database Systems for Advanced Applications '95 = Adv Datab R Database Systems for Advanced Applications '95 = Adv. Datab. R. Database Systems for Advanced Applications = Lect Notes Comput Sc Database Systems for Advanced Applications = Lect. Notes. Comput. Sc. Database Systems for Advanced Applications, Proceedings = Lect Notes Comput Sc Database Systems for Advanced Applications, Proceedings = Lect. Notes. Comput. Sc. Database Systems for Advanced Applications, Pt Ii, Proceedings = Lect Notes Comput Sc Database Systems for Advanced Applications, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Database Systems for Advanced Applications, Pt I = Lect Notes Comput Sc Database Systems for Advanced Applications, Pt I = Lect. Notes. Comput. Sc. Database Systems for Advanced Applications, Pt I, Proceedings = Lect Notes Comput Sc Database Systems for Advanced Applications, Pt I, Proceedings = Lect. Notes. Comput. Sc. Database Systems of The 90s = Lect Notes Comput Sc Database Systems of The 90s = Lect. Notes. Comput. Sc. Database-the Magazine of Electronic Database Reviews = Database Database Theory and Application, Bio-science and Bio-technology = Comm Com Inf Sc Database Theory and Application, Bio-science and Bio-technology = Comm. Com. Inf. Sc. Database Theory and Application = Comm Com Inf Sc Database Theory and Application = Comm. Com. Inf. Sc. Database Theory - Icdt 2001, Proceedings = Lect Notes Comput Sc Database Theory - Icdt 2001, Proceedings = Lect. Notes. Comput. Sc. Database Theory Icdt 2003, Proceedings = Lect Notes Comput Sc Database Theory Icdt 2003, Proceedings = Lect. Notes. Comput. Sc. Database Theory - Icdt 2005, Proceedings = Lect Notes Comput Sc Database Theory - Icdt 2005, Proceedings = Lect. Notes. Comput. Sc. Database Theory - Icdt 2007, Proceedings = Lect Notes Comput Sc Database Theory - Icdt 2007, Proceedings = Lect. Notes. Comput. Sc. Database Theory - Icdt 92 = Lect Notes Comput Sc Database Theory - Icdt 92 = Lect. Notes. Comput. Sc. Database Theory - Icdt '95 = Lect Notes Comput Sc Database Theory - Icdt '95 = Lect. Notes. Comput. Sc. Database Theory - Icdt'97 = Lect Notes Comput Sc Database Theory - Icdt'97 = Lect. Notes. Comput. Sc. Database Theory - Icdt'99 = Lect Notes Comput Sc Database Theory - Icdt'99 = Lect. Notes. Comput. Sc. Data bulletin (Center for Studying Health System Change) = Data Bull (Cent Stud Health Syst Change) Data-centric Systems and Applications = Data Centric Syst Ap Data-centric Systems and Applications = Data. Centric. Syst. Ap. Data Clustering: Theory, Algorithms and Applications = Asa Siam Ser Stat Ap Data Clustering: Theory, Algorithms and Applications = Asa. Siam. Ser. Stat. Ap. Data Collection and Analysis of Evacuation Situations = Vtt Res Notes Data Collection and Analysis of Evacuation Situations = Vtt. Res. Notes. Datacomm & Distributed Processing Report = Datacomm Distrib Pr Datacomm & Distributed Processing Report = Datacomm Distrib. Pr. Data Depth: Robust Multivariate Analysis, Computational Geometry and Applications = Dimacs Ser Discret M Data Depth: Robust Multivariate Analysis, Computational Geometry and Applications = Dimacs. Ser. Discret. M. Data Engineering Issues in E-commerce and Services, Proceedings = Lect Notes Comput Sc Data Engineering Issues in E-commerce and Services, Proceedings = Lect. Notes. Comput. Sc. Data Engineering: Mining, Information and Intelligence = Int Ser Oper Res Man Data Engineering: Mining, Information and Intelligence = Int. Ser. Oper. Res. Man. Data Entry Awareness Reports = Data Entry Awareness Data Fusion and Perception = Cism Cour L Data Fusion and Perception = Cism. Cour. L. Data Fusion and Perception = Cism Courses Lect Data Fusion and Perception = Cism. Courses. Lect. Data Handling in Science and Technology = Data Handl Sci Techn Data Handling in Science and Technology = Data Handl. Sci. Techn. Data Initiatives = Transport Res Rec Data Initiatives = Transport. Res. Rec. Data Integration in The Life Sciences = Lect N Bioinformat Data Integration in The Life Sciences = Lect. N. Bioinformat. Data Integration in The Life Sciences, Proceedings = Lect N Bioinformat Data Integration in The Life Sciences, Proceedings = Lect. N. Bioinformat. Data Integration in The Life Sciences, Proceedings = Lect Notes Comput Sc Data Integration in The Life Sciences, Proceedings = Lect. Notes. Comput. Sc. Data & Knowledge Engineering = Data Knowl Eng Data & Knowledge Engineering = Data Knowl. Eng. Data Management: Data, Data Everywhere, Proceedings = Lect Notes Comput Sc Data Management: Data, Data Everywhere, Proceedings = Lect. Notes. Comput. Sc. Data Management = Data Manage Data Management = Data Manage. Data Management in A Connected World = Lect Notes Comput Sc Data Management in A Connected World = Lect. Notes. Comput. Sc. Data Management in Grid and Peer-to-peer Systems = Lect Notes Comput Sc Data Management in Grid and Peer-to-peer Systems = Lect. Notes. Comput. Sc. Data Management in Grid and Peer-to-peer Systems, Proceedings = Lect Notes Comput Sc Data Management in Grid and Peer-to-peer Systems, Proceedings = Lect. Notes. Comput. Sc. Data Management in Grids = Lect Notes Comput Sc Data Management in Grids = Lect. Notes. Comput. Sc. Data Manipulation With R = Use R Data Manipulation With R = Use. R Datamation = Datamation Data Mining and Applications in Genomics = Lect Notes Electr En Data Mining and Applications in Genomics = Lect. Notes. Electr. En. Data Mining and Applications = Proc Spie Data Mining and Applications = Proc. Spie. Data Mining and Applications = P Soc Photo-opt Ins Data Mining and Applications = P. Soc. Photo-opt. Ins. Data Mining and Bioinformatics = Lect Notes Comput Sc Data Mining and Bioinformatics = Lect. Notes. Comput. Sc. Data Mining and Knowledge Discovery = Data Min Knowl Disc Data Mining and Knowledge Discovery = Data Min. Knowl. Disc. Data Mining and Knowledge Discovery: Theory, Tools and Technology Iii = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Theory, Tools and Technology Iii = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery: Theory, Tools, and Technology Ii = Proc Spie Data Mining and Knowledge Discovery: Theory, Tools, and Technology Ii = Proc. Spie. Data Mining and Knowledge Discovery: Theory, Tools, and Technology Ii = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Theory, Tools, and Technology Ii = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery: Theory, Tools and Technology Iv = Proc Spie Data Mining and Knowledge Discovery: Theory, Tools and Technology Iv = Proc. Spie. Data Mining and Knowledge Discovery: Theory, Tools and Technology Iv = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Theory, Tools and Technology Iv = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery: Theory, Tools, and Technology = Proc Spie Data Mining and Knowledge Discovery: Theory, Tools, and Technology = Proc. Spie. Data Mining and Knowledge Discovery: Theory, Tools, and Technology = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Theory, Tools, and Technology = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery: Theory, Tools, and Technology Vi = Proc Spie Data Mining and Knowledge Discovery: Theory, Tools, and Technology Vi = Proc. Spie. Data Mining and Knowledge Discovery: Theory, Tools, and Technology Vi = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Theory, Tools, and Technology Vi = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery: Tools and Technology V = Proc Spie Data Mining and Knowledge Discovery: Tools and Technology V = Proc. Spie. Data Mining and Knowledge Discovery: Tools and Technology V = P Soc Photo-opt Ins Data Mining and Knowledge Discovery: Tools and Technology V = P. Soc. Photo-opt. Ins. Data Mining and Knowledge Discovery Via Logic-based Methods: Theory, Algorithms, and Applications = Springer Ser Optim A Data Mining and Knowledge Discovery Via Logic-based Methods: Theory, Algorithms, and Applications = Springer. Ser. Optim. A. Data Mining and Knowledge Management = Lect Notes Artif Int Data Mining and Knowledge Management = Lect. Notes. Artif. Int. Data Mining and Mathematical Programming = Crm Proc & Lect Note Data Mining and Mathematical Programming = Crm. Proc. &. Lect. Note. Data Mining: Concepts, Methods and Applications in Management and Engineering Design = Decis Eng Data Mining: Concepts, Methods and Applications in Management and Engineering Design = Decis. Eng. Data Mining: Concepts, Models and Techniques = Intel Syst Ref Libr Data Mining: Concepts, Models and Techniques = Intel. Syst. Ref. Libr. Data Mining for Biomedical Applications, Proceedings = Lect Notes Comput Sc Data Mining for Biomedical Applications, Proceedings = Lect. Notes. Comput. Sc. Data Mining for Design and Marketing = Ch Crc Data Min Know Data Mining for Design and Marketing = Ch. Crc. Data Min. Know. Data Mining for Scientific and Engineering Applications = Massive Comp Data Mining for Scientific and Engineering Applications = Massive. Comp. Data Mining for Social Network Data = Ann Inform Syst Data Mining for Social Network Data = Ann. Inform. Syst. Data Mining Iii = Manag Informat Syst Data Mining Iii = Manag. Informat. Syst. Data Mining Ii = Manag Informat Syst Data Mining Ii = Manag. Informat. Syst. Data Mining in Agriculture = Springer Ser Optim A Data Mining in Agriculture = Springer. Ser. Optim. A. Data Mining in Biomedicine = Springer Ser Optim A Data Mining in Biomedicine = Springer. Ser. Optim. A. Data Mining in Biomedicine Using Ontologies = Artech Hse Bioinf Bi Data Mining in Biomedicine Using Ontologies = Artech. Hse. Bioinf. Bi. Data Mining in Crystallography = Struct Bond Data Mining in Crystallography = Struct. Bond. Data Mining in Proteomics: From Standards to Applications = Methods Mol Biol Data Mining in Proteomics: From Standards to Applications = Methods. Mol. Biol. Data Mining in Structural Biology = E Schering Res Fdn W Data Mining in Structural Biology = E. Schering. Res. Fdn. W. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2005 = Proc Spie Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2005 = Proc. Spie. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2005 = P Soc Photo-opt Ins Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2005 = P. Soc. Photo-opt. Ins. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2006 = Proc Spie Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2006 = Proc. Spie. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2006 = P Soc Photo-opt Ins Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2006 = P. Soc. Photo-opt. Ins. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2007 = Proc Spie Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2007 = Proc. Spie. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2007 = P Soc Photo-opt Ins Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2007 = P. Soc. Photo-opt. Ins. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2008 = Proc Spie Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2008 = Proc. Spie. Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2008 = P Soc Photo-opt Ins Data Mining, Intrusion Detection, Information Assurance, and Data Networks Security 2008 = P. Soc. Photo-opt. Ins. Data Mining Iv = Manag Informat Syst Data Mining Iv = Manag. Informat. Syst. Data Mining Ix: Data Mining, Protection, Detection and Other Security Technologies = Wit Trans Info Comm Data Mining Ix: Data Mining, Protection, Detection and Other Security Technologies = Wit. Trans. Info. Comm. Data Mining On Multimedia Data = Lect Notes Comput Sc Data Mining On Multimedia Data = Lect. Notes. Comput. Sc. Data Mining: Special Issue in Annals of Information Systems = Ann Inform Syst Data Mining: Special Issue in Annals of Information Systems = Ann. Inform. Syst. Data Mining, Systems Analysis, and Optimization in Biomedicine = Aip Conf Proc Data Mining, Systems Analysis, and Optimization in Biomedicine = Aip. Conf. Proc. Data Mining Techniques for The Life Sciences = Methods Mol Biol Data Mining Techniques for The Life Sciences = Methods. Mol. Biol. Data Mining: Theory, Methodology, Techniques, and Applications = Lect Notes Artif Int Data Mining: Theory, Methodology, Techniques, and Applications = Lect. Notes. Artif. Int. Data Mining Vi: Data Mining, Text Mining and Their Business Applications = Wit Trans Info Comm Data Mining Vi: Data Mining, Text Mining and Their Business Applications = Wit. Trans. Info. Comm. Data Mining Vii: Data, Text and Web Mining and Their Business Applications = Wit Trans Info Comm Data Mining Vii: Data, Text and Web Mining and Their Business Applications = Wit. Trans. Info. Comm. Data Mining Viii: Data, Text and Web Mining and Their Business Applications = Wit Trans Info Comm Data Mining Viii: Data, Text and Web Mining and Their Business Applications = Wit. Trans. Info. Comm. Data Mining V = Manag Informat Syst Data Mining V = Manag. Informat. Syst. Data Mining X: Data Mining, Protection, Detection and Other Security Technologies = Wit Trans Info Comm Data Mining X: Data Mining, Protection, Detection and Other Security Technologies = Wit. Trans. Info. Comm. Data Modeling for Metrology and Testing in Measurement Science = Model Simul Sci Eng Data Modeling for Metrology and Testing in Measurement Science = Model. Simul. Sci. Eng. Data Privacy Management and Autonomous Spontaneous Security = Lect Notes Comput Sc Data Privacy Management and Autonomous Spontaneous Security = Lect. Notes. Comput. Sc. Data Processing = Data Process-london Data Processing = Data Process-london. Data Processing in Precise Time and Frequency Applications = Data Knowl Chang Wor Data Processing in Precise Time and Frequency Applications = Data Knowl. Chang. Wor. Data Processing Magazine = Data Process Mag Data Processing Magazine = Data Process. Mag. Data Processor-white Plains = Data Process-white P Data Processor-white Plains = Data Process-white. P. Data Protection and Confidentiality in Health Informatics = St Heal T Data Protection and Confidentiality in Health Informatics = St. Heal. T. Data Quality in Longitudinal Research = Eur Network Data Quality in Longitudinal Research = Eur. Network. Data Science and Classification = St Class Dat Anal Data Science and Classification = St. Class. Dat. Anal. Data Science and Classification = Stud Class Data Anal Data Science and Classification = Stud. Class. Data Anal. Dataset Shift in Machine Learning = Neural Inf Process S Dataset Shift in Machine Learning = Neural. Inf. Process. S. Dataspace: The Final Frontier, Proceedings = Lect Notes Comput Sc Dataspace: The Final Frontier, Proceedings = Lect. Notes. Comput. Sc. Data Strategies and Benchmarks = Data Strategies Benchmarks Data strategies & benchmarks : the monthly advisory for health care executives = Data Strateg Benchmarks Data Structures and Target Classification = P Soc Photo-opt Ins Data Structures and Target Classification = P. Soc. Photo-opt. Ins. Datatype-generic Programming = Lect Notes Comput Sc Datatype-generic Programming = Lect. Notes. Comput. Sc. Data user news = Data User News Data Visualization 2000 = Spring Comp Sci Data Visualization 2000 = Spring. Comp. Sci. Data Visualization 2001 = Spring Eurograp Data Visualization 2001 = Spring. Eurograp. Data Warehousing and Knowledge Discovery = Lect Notes Comput Sc Data Warehousing and Knowledge Discovery = Lect. Notes. Comput. Sc. Data Warehousing and Knowledge Discovery, Proceedings = Lect Notes Comput Sc Data Warehousing and Knowledge Discovery, Proceedings = Lect. Notes. Comput. Sc. Date: 2009 Design, Automation & Test in Europe Conference & Exhibition, Vols 1-3 = Des Aut Test Europe Date: 2009 Design, Automation & Test in Europe Conference & Exhibition, Vols 1-3 = Des. Aut. Test Europe Dateso 2006 - Databases, Texts, Specifications, Objects: Proceedings of The 6th Annual International Workshop = Ceur Workshop Procee Dateso 2006 - Databases, Texts, Specifications, Objects: Proceedings of The 6th Annual International Workshop = Ceur. Workshop Procee. Dateso 2007 - Databases, Texts, Specifications, Objects: Proceedings of The 7th Annual International Workshop = Ceur Workshop Procee Dateso 2007 - Databases, Texts, Specifications, Objects: Proceedings of The 7th Annual International Workshop = Ceur. Workshop Procee. Dateso 2008 - Databases, Texts, Specifications, Objects: Proceedings of The 8th Annual International Workshop = Ceur Workshop Procee Dateso 2008 - Databases, Texts, Specifications, Objects: Proceedings of The 8th Annual International Workshop = Ceur. Workshop Procee. Dateso 2009 - Databases, Texts, Specifications, Objects: Proceedings of The 9th Annual International Workshop = Ceur Workshop Procee Dateso 2009 - Databases, Texts, Specifications, Objects: Proceedings of The 9th Annual International Workshop = Ceur. Workshop Procee. Daughter Cells: Properties, Characteristics and Stem Cells = Cell Bio Res Prog Daughter Cells: Properties, Characteristics and Stem Cells = Cell. Bio. Res. Prog. Daughters of the American Revolution magazine = DAR Mag Dauphin County reports = Dauphin Cty Rep David Bergelson: From Modernism to Socialist Realism = Stud Yiddish David Bergelson: From Modernism to Socialist Realism = Stud. Yiddish. David C. Anchin Research Center Series On Educational Policy in The 21st Century: Opportunities, Challenges, and Solutions = Dcarc Ser Educ Polic David C. Anchin Research Center Series On Educational Policy in The 21st Century: Opportunities, Challenges, and Solutions = Dcarc. Ser. Educ. Polic. David Hilberts Lectures On The Foundations of Mathematics and Physics 1891-1933 = D Hilb Lect F Math David Hilberts Lectures On The Foundations of Mathematics and Physics 1891-1933 = D. Hilb. Lect. F. Math. David Hilbert's Lectures On The Foundations of Physics 1915-1927: Relativity, Quantum Theory and Epistemology = D Hilb Lect F Math David Hilbert's Lectures On The Foundations of Physics 1915-1927: Relativity, Quantum Theory and Epistemology = D. Hilb. Lect. F. Math. David Hume's Political Economy = Routl Stud Hist Econ David Hume's Political Economy = Routl. Stud. Hist. Econ. David Und Klio: Historiographische Elemente in Der Aufstiegsgeschichte Davids Und Im Alten Testament = Beih Z Alttest Wiss David Und Klio: Historiographische Elemente in Der Aufstiegsgeschichte Davids Und Im Alten Testament = Beih. Z. Alttest. Wiss. Davoser Revue = Davos. Rev. Davydovs Soliton Revisited = Nato Adv Sci I B-phy Davydovs Soliton Revisited = Nato. Adv. Sci. I. B-phy. DA, West Asia report = DA West Asia Rep Daxue Huaxue = Daxue Huaxue Day of Reckoning: Power and Accountability in Medieval France = Middle Ages Ser Day of Reckoning: Power and Accountability in Medieval France = Middle. Ages. Ser. Db-sound Engineering Magazine = Db-sound Eng Mag Db-sound Engineering Magazine = Db-sound Eng. Mag. Dcc 2001: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2001: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2002: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2002: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2003: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2003: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2004: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2004: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2005: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2005: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2006: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2006: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2007: Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2007: Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc 2009: 2009 Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc 2009: 2009 Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc '97 : Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc '97 : Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. Dcc '98 - Data Compression Conference = Ieee Data Compr Conf Dcc '98 - Data Compression Conference = Ieee. Data Compr. Conf. Dcc '99 - Data Compression Conference, Proceedings = Ieee Data Compr Conf Dcc '99 - Data Compression Conference, Proceedings = Ieee. Data Compr. Conf. D-d Excitations in Transition-metal Oxides = Springer Tr Mod Phys D-d Excitations in Transition-metal Oxides = Springer. Tr. Mod. Phys. DDZ; das deutsche Zahnarzteblatt = DDZ DDZ: Das Deutsche Zahnarzteblatt = DDZ. Deactivation and Testing of Hydrocarbon-processing Catalysts = Acs Sym Ser Deactivation and Testing of Hydrocarbon-processing Catalysts = Acs. Sym. Ser. Deadlock Resolution in Automated Manufacturing Systems: A Novel Petri Net Approach = Adv Ind Control Deadlock Resolution in Automated Manufacturing Systems: A Novel Petri Net Approach = Adv. Ind. Control. Dead On Arrival: The Politics of Health Care in Twentieth-century America = Polit Soc Twentieth Dead On Arrival: The Politics of Health Care in Twentieth-century America = Polit. Soc. Twentieth. Dead Sea Scrolls As Background to Postbiblical Judaism and Early Christianity = Stud Text Des Judah Dead Sea Scrolls As Background to Postbiblical Judaism and Early Christianity = Stud. Text. Des. Judah. Dead Sea Scrolls At Fifty = Early Judaism Lit Dead Sea Scrolls At Fifty = Early. Judaism. Lit. Deafness and Education = Deaf Educ Deafness and Education = Deaf. Educ. Deafness, Hearing Loss and The Auditory System = Otolaryngol Res Adv Deafness, Hearing Loss and The Auditory System = Otolaryngol. Res. Adv. Dealing With An International Clientele: Communications, Diplomacy and Etiquette = Inform Serv Man Ser Dealing With An International Clientele: Communications, Diplomacy and Etiquette = Inform. Serv. Man. Ser. Dealing With Debt Crisis = World Bank Dealing With Debt Crisis = World. Bank. Dean Rusk Center Monograph = Dean Rusk C Dean Rusk Center Monograph = Dean Rusk C. Deans List = Deans List Deans Notes = Deans Notes Death education = Death Educ Death Education = Death Educ Death Education = Death Educ. Death, Gender and Sexuality in Contemporary Adolescent Literature = Child Lit Cult Death, Gender and Sexuality in Contemporary Adolescent Literature = Child. Lit. Cult. Death in The New World = Early Am Stud Ser Death in The New World = Early. Am. Stud. Ser. Death of Christian Britain: Understanding Secularisation 1800-2000, Second Edition = Christ Soc Mod World Death of Christian Britain: Understanding Secularisation 1800-2000, Second Edition = Christ. Soc. Mod. World. Death of God : End of Art = Arguments Death of God : End of Art = Arguments. Death of The Comprehensive High School?: Historical, Contemporary, and Comparative Perspectives = Second Educ Chang Wo Death of The Comprehensive High School?: Historical, Contemporary, and Comparative Perspectives = Second. Educ. Chang. Wo. Death On Hemodialysis: Preventable Or Inevitable? = Dev Nephrol Death On Hemodialysis: Preventable Or Inevitable? = Dev. Nephrol. Death Receptors and Cognate Ligands in Cancer = Results Probl Cell D Death Receptors and Cognate Ligands in Cancer = Results. Probl. Cell. D. Death studies = Death Stud Death Studies = Death Stud Death Studies = Death Stud. Debates in History Teaching = Debate Subj Teach Debates in History Teaching = Debate. Subj. Teach. Debates in Subject Teaching Series = Debate Subj Teach Debates in Subject Teaching Series = Debate. Subj. Teach. Debating Divorce in Italy: Marriage and The Making of Modern Italians, 1860-1974 = Ital Ital Am Stud Debating Divorce in Italy: Marriage and The Making of Modern Italians, 1860-1974 = Ital. Ital. Am. Stud. Debating National Security = Emp Meth B Debating National Security = Emp. Meth. B. Debating The Constitution = Actexpress Debating The Constitution = Actexpress. Debating The Future of American Education: Do We Need National Standards and Assessments? = Brookings D Debating The Future of American Education: Do We Need National Standards and Assessments? = Brookings. D. Deblurring Images: Matrices, Spectra and Filtering = Fund Algorithms Deblurring Images: Matrices, Spectra and Filtering = Fund. Algorithms. Debris-covered Glaciers = Iahs-aish P Debris-covered Glaciers = Iahs-aish. P. Debris Disks and The Formation of Planets: A Symposium in Memory of Fred Gillett = Astr Soc P Debris Disks and The Formation of Planets: A Symposium in Memory of Fred Gillett = Astr. Soc. P. Debt Burden and Its Consequences for Monetary Policy = Iea Conf Vol Debt Burden and Its Consequences for Monetary Policy = Iea. Conf. Vol. Debt Relief for Poor Countries = Stud Devel Econ Debt Relief for Poor Countries = Stud. Devel. Econ. Debt, Risk and Liquidity in Futures Markets = Routl Int Stud Money Debt, Risk and Liquidity in Futures Markets = Routl. Int. Stud. Money. Decade of Accreting Millisecond X-ray Pulsars = Aip Conf Proc Decade of Accreting Millisecond X-ray Pulsars = Aip. Conf. Proc. Decade of Behavior = Decade Behav Decade of Behavior = Decade Behav. Decade of Hubble Space Telescope Science = Space Tel S Decade of Hubble Space Telescope Science = Space Tel. S. Decade of Hypoccs: The Changing Face of Pituitary Disease = Hypoccs Series Decade of Hypoccs: The Changing Face of Pituitary Disease = Hypoccs. Series. Decade of Middle School Mathematics Curriculum Implementation: Lessons Learned From The Show-me Project = Res Math Educ Ser Decade of Middle School Mathematics Curriculum Implementation: Lessons Learned From The Show-me Project = Res. Math. Educ. Ser. Decade of Neuropeptides : Past, Present, and Future = Ann Ny Acad Sci Decade of Neuropeptides : Past, Present, and Future = Ann. Ny. Acad. Sci. Decent Homes for All: Planning's Evolving Role in Housing Provision = Hous Plan Des Ser Decent Homes for All: Planning's Evolving Role in Housing Provision = Hous. Plan. Des. Ser. Decentralisation and Educational Building Management : The Impact of Recent Reforms = Oecd Peb Decentralisation and Educational Building Management : The Impact of Recent Reforms = Oecd. Peb. Decentralisation, School-based Management, and Quality = Glob Comp Educ Polic Decentralisation, School-based Management, and Quality = Glob. Comp. Educ. Polic. Decentralised Government in An Integrating World: Quantitative Studies for Oecd Countries = Zew Econ Stud Decentralised Government in An Integrating World: Quantitative Studies for Oecd Countries = Zew. Econ. Stud. Decentralising Employment Policy = Oecd Proc Decentralising Employment Policy = Oecd. Proc. Decentralization and Marketization: The Changing Landscape of China's Adult and Continuing Education = Educ Compet Glob Wor Decentralization and Marketization: The Changing Landscape of China's Adult and Continuing Education = Educ. Compet. Glob. Wor. Decentralization for Satisfying Basic Needs: An Economic Guide for Policymakers, Second Edition = Res Hisp Latin Bus Decentralization for Satisfying Basic Needs: An Economic Guide for Policymakers, Second Edition = Res. Hisp. Latin. Bus. Decentralized and Distributed Systems = Ifip Trans A Decentralized and Distributed Systems = Ifip. Trans. A. Decentralized Development in Latin America: Experience in Local Governance and Local Development = Geojournal Lib Decentralized Development in Latin America: Experience in Local Governance and Local Development = Geojournal. Lib. DECHEMA Biotechnology Conferences = DECHEMA Biotechnol. Conf. Dechema Biotechnology Conference Series = Dechema Bio Dechema Biotechnology Conference Series = Dechema Bio. Dechema Biotechnology Conferences, Vol 3, Pts A and B = Dechema Bio Dechema Biotechnology Conferences, Vol 3, Pts A and B = Dechema Bio. Dechema Monographs = Dech Monog Dechema Monographs = Dech. Monog. Decicsion Making Under Uncertainty = Ima V Math Decicsion Making Under Uncertainty = Ima. V. Math. Deciphering Growth = Res Perspect End Int Deciphering Growth = Res. Perspect. End. Int. Deciphering The Ancient Universe With Gamma-ray Bursts = Aip Conf Proc Deciphering The Ancient Universe With Gamma-ray Bursts = Aip. Conf. Proc. Decision Analysis = Decis Anal Decision Analysis = Decis. Anal. Decision and Game Theory for Security = Lect Notes Comput Sc Decision and Game Theory for Security = Lect. Notes. Comput. Sc. Decision Engineering = Decis Eng Decision Engineering = Decis. Eng. Decision-making in Engineering Design: Theory and Practice = Decis Eng Decision-making in Engineering Design: Theory and Practice = Decis. Eng. Decision Making in The Manufacturing Environment: Using Graph Theory and Fuzzy Multiple Attribute Decision Making Methods = Springer Ser Adv Man Decision Making in The Manufacturing Environment: Using Graph Theory and Fuzzy Multiple Attribute Decision Making Methods = Springer. Ser. Adv. Man. Decision Making Near The End of Life: Issues, Developments, and Future Directions = Ser Death Dying Decision Making Near The End of Life: Issues, Developments, and Future Directions = Ser. Death. Dying. Decision Making: Recent Developments and Worldwide Applications = Appl Optim Decision Making: Recent Developments and Worldwide Applications = Appl. Optim. Decision Making: Recent Developments and Worldwide Applications = Appl Optimizat Decision Making: Recent Developments and Worldwide Applications = Appl. Optimizat. Decision Making Under Uncertainty in Electricity Markets = Int Ser Oper Res Man Decision Making Under Uncertainty in Electricity Markets = Int. Ser. Oper. Res. Man. Decision Making With The Analytic Network Process: Economic, Political, Social and Technological Applications With Benefits, Opportunities, Costs and Risks = Int Ser Oper Res Man Decision Making With The Analytic Network Process: Economic, Political, Social and Technological Applications With Benefits, Opportunities, Costs and Risks = Int. Ser. Oper. Res. Man. Decision Modeling and Behavior in Complex and Uncertain Environments = Springer Optim Appl Decision Modeling and Behavior in Complex and Uncertain Environments = Springer. Optim. Appl. Decision Procedures: An Algorithmic Point of View = Texts Theor Comput S Decision Procedures: An Algorithmic Point of View = Texts. Theor. Comput. S. Decision Sciences = Decision Sci Decision Sciences = Decision Sci. Decisions = Decisions Decisions: Risk and Reward = Routl Stud Bus Organ Decisions: Risk and Reward = Routl. Stud. Bus. Organ. Decision Support for Global Enterprises = Ann Info Syst Decision Support for Global Enterprises = Ann. Info. Syst. Decision Support for Natural Disasters and Intentional Threats to Water Security = Nato Sci Peace Secur Decision Support for Natural Disasters and Intentional Threats to Water Security = Nato. Sci. Peace. Secur. Decision Support in Public Administration = Ifip Trans A Decision Support in Public Administration = Ifip. Trans. A. Decision Support Systems = Decis Support Syst Decision Support Systems = Decis. Support Syst. Decision Support Systems : Experiences and Expectations = Ifip Trans A Decision Support Systems : Experiences and Expectations = Ifip. Trans. A. Decision Theory and Choices: A Complexity Approach = New Econ Windows Decision Theory and Choices: A Complexity Approach = New. Econ. Windows. Decision Theory and Multi-agent Planning = Cism Cour L Decision Theory and Multi-agent Planning = Cism. Cour. L. Decision Theory and Multi-agent Planning = Cism Courses Lect Decision Theory and Multi-agent Planning = Cism. Courses. Lect. Decision to Patent = Contrib Econ Decision to Patent = Contrib. Econ. Declarative Agent Languages and Technologies Iii = Lect Notes Artif Int Declarative Agent Languages and Technologies Iii = Lect. Notes. Artif. Int. Declarative Agent Languages and Technologies Ii = Lect Notes Artif Int Declarative Agent Languages and Technologies Ii = Lect. Notes. Artif. Int. Declarative Agent Languages and Technologies Iv = Lect Notes Artif Int Declarative Agent Languages and Technologies Iv = Lect. Notes. Artif. Int. Declarative Agent Languages and Technologies = Lect Notes Comput Sc Declarative Agent Languages and Technologies = Lect. Notes. Comput. Sc. Declarative Agent Languages and Technologies Vii = Lect Notes Artif Int Declarative Agent Languages and Technologies Vii = Lect. Notes. Artif. Int. Declarative Agent Languages and Technologies V = Lect Notes Artif Int Declarative Agent Languages and Technologies V = Lect. Notes. Artif. Int. Declarative Programming for Knowledge Management = Lect Notes Artif Int Declarative Programming for Knowledge Management = Lect. Notes. Artif. Int. Declining Jurisdiction in Private International Law = Ox Mg Priv Int Law Declining Jurisdiction in Private International Law = Ox. Mg. Priv. Int. Law Decoding Boundaries in Contemporary Japan: The Koizumi Administration and Beyond = Sheff Cent Jpn Stud Decoding Boundaries in Contemporary Japan: The Koizumi Administration and Beyond = Sheff. Cent. Jpn. Stud. Decoding Liberation: The Promise of Free and Open Source Software = Routl Stud New Media Decoding Liberation: The Promise of Free and Open Source Software = Routl. Stud. New. Media. Decoherence and Entropy in Complex Systems = Lect Notes Phys Decoherence and Entropy in Complex Systems = Lect. Notes. Phys. Decoherence and Its Implications in Quantum Computation and Information Transfer = Nato Sc S Ss Iii C S Decoherence and Its Implications in Quantum Computation and Information Transfer = Nato. Sc. S. Ss. Iii. C. S. Decoherence and The Quantum-to-classical Transition = Front Collect Decoherence and The Quantum-to-classical Transition = Front. Collect. Decoherence, Entanglement and Information Protection in Complex Quantum Systems = Nato Sci Ser Ii-math Decoherence, Entanglement and Information Protection in Complex Quantum Systems = Nato. Sci. Ser. Ii-math. Decoherence, Entanglement and Information Protection in Complex Quantum Systems = Nato Sci Ser Ii Math Decoherence, Entanglement and Information Protection in Complex Quantum Systems = Nato. Sci. Ser. Ii. Math. Decoherence Suppression in Quantum Systems 2008 = Kinki U Ser Quantum Decoherence Suppression in Quantum Systems 2008 = Kinki. U. Ser. Quantum Decoherence: Theoretical, Experimental and Conceptual Problems = Lect Notes Phys Decoherence: Theoretical, Experimental and Conceptual Problems = Lect. Notes. Phys. Decolonising Gender = Rout Res Postcol Lit Decolonising Gender = Rout. Res. Postcol. Lit. Decolonization and The Evolution of International Human Rights = Pa Stud Hum Rights Decolonization and The Evolution of International Human Rights = Pa. Stud. Hum. Rights Decolonization in South Asia: Meanings of Freedom in Post-independence West Bengal, 1947-52 = Rout Stud S Asia His Decolonization in South Asia: Meanings of Freedom in Post-independence West Bengal, 1947-52 = Rout. Stud. S. Asia. His. Decolonizing International Health: India and Southeast Asia, 1930-65 = Camb Imp Post-col St Decolonizing International Health: India and Southeast Asia, 1930-65 = Camb. Imp. Post-col. St. Decomposition, Combustion, and Detonation Chemistry of Energetic Materials = Mater Res Soc Symp P Decomposition, Combustion, and Detonation Chemistry of Energetic Materials = Mater. Res. Soc. Symp. P. Decomposition Methods for Differential Equations: Theory and Applications = Ch Crc Numer Anal Sc Decomposition Methods for Differential Equations: Theory and Applications = Ch. Crc. Numer. Anal. Sc. Deconstructing Olduvai: A Taphonomic Study of The Bed I Sites = Vertebr Paleobiol Pa Deconstructing Olduvai: A Taphonomic Study of The Bed I Sites = Vertebr. Paleobiol. Pa. Deconstructing Service-learning: Research Exploring Context, Participation, and Impacts = Adv Serv Learn Res Deconstructing Service-learning: Research Exploring Context, Participation, and Impacts = Adv. Serv. Learn. Res. Deconstructing The English Passive = Top Engl Linguist Deconstructing The English Passive = Top. Engl. Linguist. Deconstruction After 9/11 = Routl Res Cult Media Deconstruction After 9/11 = Routl. Res. Cult. Media. Decorations for The Holy Dead = Int Medieval Res Decorations for The Holy Dead = Int. Medieval. Res. Decoupling Control = Lect Notes Contr Inf Decoupling Control = Lect. Notes. Contr. Inf. Decreasing Oxidative Stress and Retarding The Aging Process = Aging Iss Health Fin Decreasing Oxidative Stress and Retarding The Aging Process = Aging Iss. Health. Fin. Decubitus = Decubitus Dédalo. Revista de arte e arqueologia = Dedalo De Diversis Artibus = De Div Art De Diversis Artibus = De Div. Art. De Doctrina Christiana = Chr Jud Ant De Doctrina Christiana = Chr. Jud. Ant. De economia = De Economia De Economía=De Economía De Economist=De Economist De Economist = Economist (Leiden) Deep Brain Stimulation in Neurological and Psychiatric Disorders = Curr Clin Neurol Deep Brain Stimulation in Neurological and Psychiatric Disorders = Curr. Clin. Neurol. Deep Convection and Deep Water Formation in The Oceans = Elsev Oceanogr Serie Deep Convection and Deep Water Formation in The Oceans = Elsev. Oceanogr. Serie. Deep Ecology and World Religions = Suny Rad S Deep Ecology and World Religions = Suny. Rad. S. Deepening Literacy Learning: Art and Literature Engagements in K-8 Classrooms = Teach Learn Indig In Deepening Literacy Learning: Art and Literature Engagements in K-8 Classrooms = Teach. Learn. Indig. In. Deepening Our Understanding of Wittgenstein = Grazer Philos Stud Deepening Our Understanding of Wittgenstein = Grazer. Philos. Stud. Deepening Our Understanding of Wittgenstein = Graz Phil S Deepening Our Understanding of Wittgenstein = Graz. Phil. S. Deep Fields = Eso Astrophy Symp Deep Fields = Eso. Astrophy. Symp. Deep Foundation Improvements : Design, Construction, and Testing = Am Soc Test Mater Deep Foundation Improvements : Design, Construction, and Testing = Am. Soc. Test. Mater. Deep Geologic Repositories = Rev Eng Geol Deep Geologic Repositories = Rev. Eng. Geol. Deep Impact As A World Observatory Event: Synergies in Space, Time, and Wavelength = Eso Astrophy Symp Deep Impact As A World Observatory Event: Synergies in Space, Time, and Wavelength = Eso. Astrophy. Symp. Deep Inelastic Positron-proton Scattering in The High-momentum-transfer Regime of Hera = Springer Tr Mod Phys Deep Inelastic Positron-proton Scattering in The High-momentum-transfer Regime of Hera = Springer. Tr. Mod. Phys. Deep Inelastic Scattering = Aip Conf Proc Deep Inelastic Scattering = Aip. Conf. Proc. Deep Inelastic Scattering and Qcd - 5th International Workshop = Aip Conf Proc Deep Inelastic Scattering and Qcd - 5th International Workshop = Aip. Conf. Proc. Deep Morphology: Toward A Renaissance of Morphology in Plant Systematics = Regnum Veg Deep Morphology: Toward A Renaissance of Morphology in Plant Systematics = Regnum. Veg. Deep-sea and Extreme Shallow-water Habitats: Affinities and Adaptations = Biosyst Ecol Ser Deep-sea and Extreme Shallow-water Habitats: Affinities and Adaptations = Biosyst. Ecol. Ser. Deep-sea Food Chains and The Global Carbon Cycle = Nato Adv Sci I C-mat Deep-sea Food Chains and The Global Carbon Cycle = Nato. Adv. Sci. I. C-mat. Deep-sea Research = Deep-sea Res Deep-sea Research = Deep-sea Res. Deep-Sea Research = Deep-Sea Res. Deep-sea Research Part A-oceanographic Research Papers = Deep-sea Res Deep-sea Research Part A-oceanographic Research Papers = Deep-sea Res. Deep-sea research. Part A, Oceanographic research papers = Deep Sea Res A Deep Sea Research Part A: Oceanographic Research Papers = Deep Sea Res. Part A Deep Sea Research Part B: Oceanographic Literature Review = Deep Sea Res. Part B Deep Sea Research Part II: Topical Studies in Oceanography = Deep Sea Res. Part II Deep-sea Research Part Ii-topical Studies in Oceanography = Deep-sea Res Pt Ii Deep-sea Research Part Ii-topical Studies in Oceanography = Deep-sea Res. Pt. Ii. Deep Sea Research Part I: Oceanographic Research Papers = Deep Sea Res. Part I Deep-sea Research Part I-oceanographic Research Papers = Deep-sea Res Pt I Deep-sea Research Part I-oceanographic Research Papers = Deep-sea Res. Pt. I. Deep Space Flight and Communications: Exploiting The Sun As A Gravitational Lens = S-p B Astronaut Eng Deep Space Flight and Communications: Exploiting The Sun As A Gravitational Lens = S-p. B. Astronaut. Eng. Deep-space Probes: to The Outer Solar System and Beyond, Second Edition = Springer-prax Books Deep-space Probes: to The Outer Solar System and Beyond, Second Edition = Springer-prax. Books. Deep Structure of The Alps = Mem S Geo F Deep Structure of The Alps = Mem. S. Geo. F. Deep Structure, Singularities, and Computer Vision = Lect Notes Comput Sc Deep Structure, Singularities, and Computer Vision = Lect. Notes. Comput. Sc. Deep-water Sedimentation in The Alpine Basin of Se France: New Perspectives On The Gres D'annot and Related... = Geol Soc Spec Publ Deep-water Sedimentation in The Alpine Basin of Se France: New Perspectives On The Gres D'annot and Related... = Geol. Soc. Spec. Publ. Deer of China = Dev An Vet Deer of China = Dev. An. Vet. De Facto Federalism in China: Reforms and Dynamics of Central-local Relations = Ser Contemp China De Facto Federalism in China: Reforms and Dynamics of Central-local Relations = Ser. Contemp. China. Default Risk in Bond and Credit Derivatives Markets = Lect Notes Econ Math Default Risk in Bond and Credit Derivatives Markets = Lect. Notes. Econ. Math. DEF : Development education forum = DEF Defect and Diffusion Forum = Defect Diffus Forum Defect and Diffusion Forum = Defect Diffus. Forum Defect and Diffusion Forum/journal = Defect Diffus For/jr Defect and Diffusion Forum/journal = Defect Diffus. For/jr. Defect and Diffusion Forum Series = Defect Diffus Forum Defect and Diffusion Forum Series = Defect Diffus. Forum Defect and Impurity Engineered Semiconductors and Devices Iii = Mater Res Soc Symp P Defect and Impurity Engineered Semiconductors and Devices Iii = Mater. Res. Soc. Symp. P. Defect and Impurity Engineered Semiconductors and Devices = Mater Res Soc Symp P Defect and Impurity Engineered Semiconductors and Devices = Mater. Res. Soc. Symp. P. Defect and Impurity Engineered Semiconductors Ii = Mater Res Soc Symp P Defect and Impurity Engineered Semiconductors Ii = Mater. Res. Soc. Symp. P. Defect Engineering in Semiconductor Growth, Processing and Device Technology = Mater Res Soc Symp P Defect Engineering in Semiconductor Growth, Processing and Device Technology = Mater. Res. Soc. Symp. P. Defect Interaction and Clustering in Semiconductors = Solid State Phenomen Defect Interaction and Clustering in Semiconductors = Solid. State. Phenomen. Defect Interaction and Clustering in Semiconductors = Sol St Phen Defect Interaction and Clustering in Semiconductors = Sol. St. Phen. Defect-interface Interactions = Mater Res Soc Symp P Defect-interface Interactions = Mater. Res. Soc. Symp. P. Defect-oriented Testing for Nano-metric Cmos Vlsi Circuits, Second Edition = Front Electron Test Defect-oriented Testing for Nano-metric Cmos Vlsi Circuits, Second Edition = Front. Electron. Test. Defect Properties and Related Phenomena in Intermetallic Alloys = Mater Res Soc Symp P Defect Properties and Related Phenomena in Intermetallic Alloys = Mater. Res. Soc. Symp. P. Defect Recognition and Image Processing in Semiconductors 1995 = Inst Phys Conf Ser Defect Recognition and Image Processing in Semiconductors 1995 = Inst. Phys. Conf. Ser. Defect Recognition and Image Processing in Semiconductors 1997 = Inst Phys Conf Ser Defect Recognition and Image Processing in Semiconductors 1997 = Inst. Phys. Conf. Ser. Defect Recognition and Image Processing in Semiconductors and Devices = Inst Phys Conf Ser Defect Recognition and Image Processing in Semiconductors and Devices = Inst. Phys. Conf. Ser. Defects and Diffusion in Ceramics: An Annual Retrospective Ii = Defect Diffus Forum Defects and Diffusion in Ceramics: An Annual Retrospective Ii = Defect. Diffus. Forum. Defects and Diffusion in Ceramics: An Annual Retrospective Iv = Defect Diffus Forum Defects and Diffusion in Ceramics: An Annual Retrospective Iv = Defect. Diffus. Forum. Defects and Diffusion in Ceramics - An Annual Retrospective Vi = Defect Diffus Forum Defects and Diffusion in Ceramics - An Annual Retrospective Vi = Defect. Diffus. Forum. Defects and Diffusion in Ceramics: An Annual Retrospective Vii = Defect Diffus Forum Defects and Diffusion in Ceramics: An Annual Retrospective Vii = Defect. Diffus. Forum. Defects and Diffusion in Ceramics: An Annual Retrospective X = Defect Diffus Forum Defects and Diffusion in Ceramics: An Annual Retrospective X = Defect. Diffus. Forum. Defects and Diffusion in Ceramics: An Annual Retrospective Xi = Defect Diffus Forum Defects and Diffusion in Ceramics: An Annual Retrospective Xi = Defect. Diffus. Forum. Defects and Diffusion in Ceramics: Annual Retrospective V = Defect Diffus Forum Defects and Diffusion in Ceramics: Annual Retrospective V = Defect. Diffus. Forum. Defects and Diffusion in Ceramics = Defect Diffus Forum Defects and Diffusion in Ceramics = Defect. Diffus. Forum. Defects and Diffusion in Halides and Ice - 7-year Retrospective = Defect Diffus Forum Defects and Diffusion in Halides and Ice - 7-year Retrospective = Defect. Diffus. Forum. Defects and Diffusion in Metals: An Annual Retrospective Iv = Defect Diffus Forum Defects and Diffusion in Metals: An Annual Retrospective Iv = Defect. Diffus. Forum. Defects and Diffusion in Metals - An Annual Retrospective V - = Defect Diffus Forum Defects and Diffusion in Metals - An Annual Retrospective V - = Defect. Diffus. Forum. Defects and Diffusion in Metals: An Annual Retrospective Vi = Defect Diffus Forum Defects and Diffusion in Metals: An Annual Retrospective Vi = Defect. Diffus. Forum. Defects and Diffusion in Metals - An Annual Retrospective Vii = Defect Diffus Forum Defects and Diffusion in Metals - An Annual Retrospective Vii = Defect. Diffus. Forum. Defects and Diffusion in Metals: An Annual Retrospective X = Defect Diffus Forum Defects and Diffusion in Metals: An Annual Retrospective X = Defect. Diffus. Forum. Defects and Diffusion in Metals: An Annual Retrospective Xi = Defect Diffus Forum Defects and Diffusion in Metals: An Annual Retrospective Xi = Defect. Diffus. Forum. Defects and Diffusion in Metals Iii = Defect Diffus Forum Defects and Diffusion in Metals Iii = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors: An Annual Retrospective Vi = Defect Diffus Forum Defects and Diffusion in Semiconductors: An Annual Retrospective Vi = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors - An Annual Retrospective Vii = Defect Diffus Forum Defects and Diffusion in Semiconductors - An Annual Retrospective Vii = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors - An Annual Retrospective Vii - = Defect Diffus Forum Defects and Diffusion in Semiconductors - An Annual Retrospective Vii - = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors: An Annual Retrospective Xi = Defect Diffus Forum Defects and Diffusion in Semiconductors: An Annual Retrospective Xi = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors: An Annual Retrospective Xii = Defect Diffus Forum Defects and Diffusion in Semiconductors: An Annual Retrospective Xii = Defect. Diffus. Forum. Defects and Diffusion in Semiconductors = Defect Diffus Forum Defects and Diffusion in Semiconductors = Defect. Diffus. Forum. Defects and Diffusion in Silicon Processing = Mater Res Soc Symp P Defects and Diffusion in Silicon Processing = Mater. Res. Soc. Symp. P. Defects and Diffusion Studied Using Pac Spectroscopy = Defect Diffus Forum Defects and Diffusion Studied Using Pac Spectroscopy = Defect. Diffus. Forum. Defects and Diffusion, Theory and Simulation: An Annual Retrospective I = Defect Diffus Forum Defects and Diffusion, Theory and Simulation: An Annual Retrospective I = Defect. Diffus. Forum. Defects and Diffusion, Theory and Simulation: An Annual Retrospective Ii = Defect Diffus Forum Defects and Diffusion, Theory and Simulation: An Annual Retrospective Ii = Defect. Diffus. Forum. Defects and Difussion in Metals: An Annual Retrospective Xii = Defect Diffus Forum Defects and Difussion in Metals: An Annual Retrospective Xii = Defect. Diffus. Forum. Defects and Disorder in Crystalline and Amorphous Solids = Nato Adv Sci Inst Se Defects and Disorder in Crystalline and Amorphous Solids = Nato. Adv. Sci. Inst. Se. Defects and Surface-induced Effects in Advanced Perovskites = Nato Sci S Prt 3 Hi Defects and Surface-induced Effects in Advanced Perovskites = Nato. Sci. S. Prt. 3. Hi. Defects in Electronic Materials Ii = Mater Res Soc Symp P Defects in Electronic Materials Ii = Mater. Res. Soc. Symp. P. Defects in High-k Gate Dielectric Stacks: Nano-electronic Semiconductor Devices = Nato Sci Ser Ii-math Defects in High-k Gate Dielectric Stacks: Nano-electronic Semiconductor Devices = Nato. Sci. Ser. Ii-math. Defects in High-k Gate Dielectric Stacks: Nano-electronic Semiconductor Devices = Nato Sci Ser Ii Math Defects in High-k Gate Dielectric Stacks: Nano-electronic Semiconductor Devices = Nato. Sci. Ser. Ii. Math. Defects in Joining Techniques = Vdi Bericht Defects in Joining Techniques = Vdi. Bericht. Defects in Materials = Mater Res Soc Symp P Defects in Materials = Mater. Res. Soc. Symp. P. Defects in Semiconductors - Icds-19, Pts 1-3 = Mater Sci Forum Defects in Semiconductors - Icds-19, Pts 1-3 = Mater. Sci. Forum. Defects in Sio2 and Related Dielectrics: Science and Technology = Nato Sci Ser Ii-math Defects in Sio2 and Related Dielectrics: Science and Technology = Nato. Sci. Ser. Ii-math. Defects in Sio2 and Related Dielectrics: Science and Technology = Nato Sci Ser Ii Math Defects in Sio2 and Related Dielectrics: Science and Technology = Nato. Sci. Ser. Ii. Math. Defects of Secretion in Cystic Fibrosis = Adv Exp Med Biol Defects of Secretion in Cystic Fibrosis = Adv. Exp. Med. Biol. Defence and Peace Economics=Defence Peace Econ. Defence and Peace Economics = Defence Peace Econ Defence and Peace Economics = Defence Peace Econ. Defence Applications of Multi-agent Systems = Lect Notes Artif Int Defence Applications of Multi-agent Systems = Lect. Notes. Artif. Int. Defence Economics = Defenc Econ Defence Economics = Defenc. Econ. Defence Economics=Defence Econ. Defence Procurement and Industry Policy = Rout Stud Defen Peac Defence Procurement and Industry Policy = Rout. Stud. Defen. Peac. Defence Related Sme's: Analysis and Description of Current Conditions = Nato Asi S 4 Sci Tec Defence Related Sme's: Analysis and Description of Current Conditions = Nato. Asi. S. 4. Sci. Tec. Defence Science Journal = Defence Sci J Defence Science Journal = Defence Sci. J. Defence science journal = Def Sci J Defenders = Defenders Defending Albion: Britain's Home Army 1908-1919 = Stud Mil Strateg His Defending Albion: Britain's Home Army 1908-1919 = Stud. Mil. Strateg. His. Defending Copernicus and Galileo = Bost Stud Philos Sci Defending Copernicus and Galileo = Bost. Stud. Philos. Sci. Defending Europe: The Eu, Nato, and The Quest for European Autonomy = Eur Transit-nyu Eur Defending Europe: The Eu, Nato, and The Quest for European Autonomy = Eur. Transit-nyu. Eur. Defending Hypatia: Ramus, Savile, and The Renaissance Rediscovery of Mathematical History = Archimedes Defending Hypatia: Ramus, Savile, and The Renaissance Rediscovery of Mathematical History = Archimedes. Defending The Genetic Supermarket: The Law and Ethics of Selecting The Next Generation = Biomed Law Ethics Li Defending The Genetic Supermarket: The Law and Ethics of Selecting The Next Generation = Biomed. Law Ethics Li. Defense Against Bioterror: Detection Technologies, Implementation Strategies and Commercial Opportunities = Nato Sec Sci B Phys Defense Against Bioterror: Detection Technologies, Implementation Strategies and Commercial Opportunities = Nato. Sec. Sci. B. Phys. Defense and The Environment: Effective Scientific Communication = Nato Sci S Ss Iv Ear Defense and The Environment: Effective Scientific Communication = Nato. Sci. S. Ss. Iv. Ear. Defense Conversion Strategies = Nato Sci S 1 Disarm Defense Conversion Strategies = Nato. Sci. S. 1. Disarm. Defense counsel journal / International Association of Defense Counsel = Def Couns J Defense Genes in Tomato = Bot Res Pract Defense Genes in Tomato = Bot. Res. Pract. Defense Industries: Science and Technology Related to Security : Impact of Conventional Munitions On Environment and Population = Nato Sci S Ss Iv Ear Defense Industries: Science and Technology Related to Security : Impact of Conventional Munitions On Environment and Population = Nato. Sci. S. Ss. Iv. Ear. Defense Industries: Science and Technology Related to Security: Impact of Conventional Munitions On Environment and Population = Nato Sci S Ss Iv Ear Defense Industries: Science and Technology Related to Security: Impact of Conventional Munitions On Environment and Population = Nato. Sci. S. Ss. Iv. Ear. Defense Industry Application of Autonomous Agents and Multi-agent Systems = Whitestein Ser Softw Defense Industry Application of Autonomous Agents and Multi-agent Systems = Whitestein. Ser. Softw. Defense law journal = Def Law J Defense Law Journal = Def Law J Defense Law Journal = Def. Law J. Defense Molecules = Ucla Sym Bi Defense Molecules = Ucla. Sym. Bi. Defense nationale = Def Natl Defense of Hume On Miracles = Princ Monogr Philos Defense of Hume On Miracles = Princ. Monogr. Philos. Defense of Mucosal Surfaces: Pathogenesis, Immunity and Vaccines = Curr Top Microbiol Defense of Mucosal Surfaces: Pathogenesis, Immunity and Vaccines = Curr. Top. Microbiol. Defense Research Series = Defen Res S Defense Research Series = Defen. Res. S. Defense, Security, and Cockpit Displays = P Soc Photo-opt Ins Defense, Security, and Cockpit Displays = P. Soc. Photo-opt. Ins. Defense Security and Strategy = Def Secur Strateg Defense Security and Strategy = Def. Secur. Strateg. Defense Security and Strategy Series = Defen Secur Strat Defense Security and Strategy Series = Defen. Secur. Strat. Defense, Security, Cockpit, and Future Displays Ii = P Soc Photo-opt Ins Defense, Security, Cockpit, and Future Displays Ii = P. Soc. Photo-opt. Ins. Defense Transformation and Net-centric Systems 2007 = Proc Spie Defense Transformation and Net-centric Systems 2007 = Proc. Spie. Defense Transformation and Net-centric Systems 2007 = P Soc Photo-opt Ins Defense Transformation and Net-centric Systems 2007 = P. Soc. Photo-opt. Ins. Defense Transformation and Net-centric Systems 2008 = Proc Spie Defense Transformation and Net-centric Systems 2008 = Proc. Spie. Defense Transformation and Net-centric Systems 2008 = P Soc Photo-opt Ins Defense Transformation and Net-centric Systems 2008 = P. Soc. Photo-opt. Ins. Defense Transformation and Net-centric Systems 2010 = Proc Spie Defense Transformation and Net-centric Systems 2010 = Proc. Spie. Defense Transformation and Net-centric Systems 2010 = P Soc Photo-opt Ins Defense Transformation and Net-centric Systems 2010 = P. Soc. Photo-opt. Ins. Defense Transformation and Net-centric Systems 2011 = Proc Spie Defense Transformation and Net-centric Systems 2011 = Proc. Spie. Defense Transformation and Net-centric Systems 2011 = P Soc Photo-opt Ins Defense Transformation and Net-centric Systems 2011 = P. Soc. Photo-opt. Ins. Defense Transformation and Network-centric Systems = Proc Spie Defense Transformation and Network-centric Systems = Proc. Spie. Defense Transformation and Network-centric Systems = P Soc Photo-opt Ins Defense Transformation and Network-centric Systems = P. Soc. Photo-opt. Ins. Defensive Mutualism in Microbial Symbiosis = Mycol Ser Defensive Mutualism in Microbial Symbiosis = Mycol. Ser. Deficient and Excessive Levels of Macroelements and Trace Elements in Nutrition = Schrif Gms Deficient and Excessive Levels of Macroelements and Trace Elements in Nutrition = Schrif. Gms. Defining Soil Quality for A Sustainable Environment = Sssa Spec Publ Defining Soil Quality for A Sustainable Environment = Sssa. Spec. Publ. Defining The Sovereign Community: The Czech and Slovak Republics = Democr Citiz Constit Defining The Sovereign Community: The Czech and Slovak Republics = Democr. Citiz. Constit. Defining Wilderness Quality : The Role of Standards in Wilderness Management - A Workshop Proceedings = Usda Pac Nw Defining Wilderness Quality : The Role of Standards in Wilderness Management - A Workshop Proceedings = Usda. Pac. Nw. Definiteness in Bulgarian: Modelling The Processes of Language Change = Trends Linguist-stud Definiteness in Bulgarian: Modelling The Processes of Language Change = Trends. Linguist-stud. Definition of Constants for Piezoceramic Materials = Mater Sci Technol Definition of Constants for Piezoceramic Materials = Mater. Sci. Technol. Deflection Control for The Future = Amer Conc I Deflection Control for The Future = Amer. Conc. I. Deformable Avatars = Int Fed Info Proc Deformable Avatars = Int. Fed. Info. Proc. Deformable Models: Biomedical and Clinical Applications = Top Biomed Eng Deformable Models: Biomedical and Clinical Applications = Top. Biomed. Eng. Deformable Models: Theory and Biomaterial Applications = Top Biomed Eng Deformable Models: Theory and Biomaterial Applications = Top. Biomed. Eng. Deformation Analysis in Soft Ground Improvement = Geotech Geol Earthq Deformation Analysis in Soft Ground Improvement = Geotech. Geol. Earthq. Deformation and Exhumation At Convergent Margins: The Franciscan Subduction Complex = Geol Soc Am Spec Pap Deformation and Exhumation At Convergent Margins: The Franciscan Subduction Complex = Geol. Soc. Am. Spec. Pap. Deformation Mechanisms, Rheology and Tectonics: Current Status and Future Perspectives = Geol Soc Spec Publ Deformation Mechanisms, Rheology and Tectonics: Current Status and Future Perspectives = Geol. Soc. Spec. Publ. Deformation Mechanisms, Rheology and Tectonics: From Minerals to The Lithosphere = Geol Soc Spec Publ Deformation Mechanisms, Rheology and Tectonics: From Minerals to The Lithosphere = Geol. Soc. Spec. Publ. Deformation Mechanisms, Rheology and Tectonics = Geol Soc Spec Publ Deformation Mechanisms, Rheology and Tectonics = Geol. Soc. Spec. Publ. Deformation of Glacial Materials = Geol Soc Spec Publ Deformation of Glacial Materials = Geol. Soc. Spec. Publ. Deformation of The Continental Crust: The Legacy of Mike Coward = Geol Soc Spec Publ Deformation of The Continental Crust: The Legacy of Mike Coward = Geol. Soc. Spec. Publ. Deformation Processes of Rigid Plastic Materials = Mater Sci Forum Deformation Processes of Rigid Plastic Materials = Mater. Sci. Forum. Deformations of Algebraic Schemes = Grundlehr Math Wiss Deformations of Algebraic Schemes = Grundlehr. Math. Wiss. Deformations of Singularities = Lect Notes Math Deformations of Singularities = Lect. Notes. Math. Deformation Theory and Symplectic Geometry = Math Phys S Deformation Theory and Symplectic Geometry = Math. Phys. S. Degenerate Diffusions: Initial Value Problems and Local Regularity Theory = Ems Tracts Math Degenerate Diffusions: Initial Value Problems and Local Regularity Theory = Ems. Tracts. Math. Deglacial History and Relative Sea-level Changes, Northern New England and Adjacent Canada = Geol S Am S Deglacial History and Relative Sea-level Changes, Northern New England and Adjacent Canada = Geol. S. Am. S. Deglacial History and Relative Sea-level Changes, Northern New England and Adjacent Canada = Geol Soc Am Spec Pap Deglacial History and Relative Sea-level Changes, Northern New England and Adjacent Canada = Geol. Soc. Am. Spec. Pap. Degradable Aliphatic Polyesters = Adv Polym Sci Degradable Aliphatic Polyesters = Adv. Polym. Sci. Degradation and Stabilization of Materials = J Poly Sc Degradation and Stabilization of Materials = J. Poly. Sc. Degradation Mechanisms in Iii-v Compound Semiconductor Devices and Structures = Mater Res Soc Symp P Degradation Mechanisms in Iii-v Compound Semiconductor Devices and Structures = Mater. Res. Soc. Symp. P. Degradation Processes in Nanostructured Materials = Mater Res Soc Symp P Degradation Processes in Nanostructured Materials = Mater. Res. Soc. Symp. P. Degradation Rate of Bioresorbable Materials: Prediction and Evaluation = Woodhead Publ Mater Degradation Rate of Bioresorbable Materials: Prediction and Evaluation = Woodhead. Publ. Mater. Degradations and Instabilities in Geomaterials = Cism Cour L Degradations and Instabilities in Geomaterials = Cism. Cour. L. Degrees in Restructuring in Creole Languages = Creole Lang Degrees in Restructuring in Creole Languages = Creole Lang. Degrees of Belief = Synth Libr Degrees of Belief = Synth. Libr. Degres-revue De Synthese A Orientation Semiologique = Degres Degres-revue De Synthese A Orientation Semiologique = Degres. De Gruyter Expositions in Mathematics = De Gru Ex M De Gruyter Expositions in Mathematics = De Gru. Ex. M. de Gruyter Expositions in Mathematics = de Gruyter Exp. Math. Degruyter Expositions in Mathematics = Degruyter Expos Math Degruyter Expositions in Mathematics = Degruyter Expos. Math. Degruyter Handbuch = Degruyter Handb Degruyter Handbuch = Degruyter Handb. Degruyter Kommentar = Degruyter Komment Degruyter Kommentar = Degruyter Komment. Degruyter Lehrbuch = Degruyter Lehrb Degruyter Lehrbuch = Degruyter Lehrb. Degruyter Lexicon = Degruyter Lex Degruyter Lexicon = Degruyter Lex. Degruyter Proceedings in Mathematics = Degruyter P Math Degruyter Proceedings in Mathematics = Degruyter P. Math. De Gruyter Series in Logic and Its Applications = De Gru Log Applicat De Gruyter Series in Logic and Its Applications = De Gru. Log. Applicat. Degruyter Series in Logic and Its Applications = Degruyter Ser Log Ap Degruyter Series in Logic and Its Applications = Degruyter Ser. Log. Ap. Degruyter Series in Nonlinear Analysis and Applications = Degruyter Ser Nonlin Degruyter Series in Nonlinear Analysis and Applications = Degruyter Ser. Nonlin. de Gruyter Series in Nonlinear Analysis and Applications = de Gruyter Ser. Nonlinear Anal. Appl. Degruyter Studienbuch = Degruyter Studienb Degruyter Studienbuch = Degruyter Studienb. De Gruyter Studies in Mathematics = De Gruy Mat De Gruyter Studies in Mathematics = De Gruy. Mat. de Gruyter Studies in Mathematics = de Gruyter Stud. Math. Degruyter Studies in Mathematics = Degruyter Stud Math Degruyter Studies in Mathematics = Degruyter Stud. Math. De Gruyter Studies in Organization = De Gruy St De Gruyter Studies in Organization = De Gruy. St. De Gruyter Studies On North America = De Gruy Nor De Gruyter Studies On North America = De Gruy. Nor. Degruyter Textbook = Degruyter Textb Degruyter Textbook = Degruyter Textb. de Gruyter Textbook = de Gruyter Textbook Degruyter Texte = Degruyter Texte De Halve maen = Halve Maen Dehydroepiandrosterone (dhea) and Aging = Ann Ny Acad Sci Dehydroepiandrosterone (dhea) and Aging = Ann. Ny. Acad. Sci. Deissmann The Philologist = Beih Z Neutest Wiss Deissmann The Philologist = Beih. Z. Neutest. Wiss. Dějiny Věd a Techniky = DVT---Dějiny Věd Tech. DE: Journal of Dental Engineering = DE J. Dent. Eng. Dekalb Literary Arts Journal = Dekalb Lit Arts J Dekalb Literary Arts Journal = Dekalb Lit. Arts J. Deklinationsklassen-wandel = Stud Linguist Ger Deklinationsklassen-wandel = Stud. Linguist. Ger. Delamination Behaviour of Composites = Woodhead Publ Mater Delamination Behaviour of Composites = Woodhead. Publ. Mater. De La Phantasia A L'magination = Collect Det Class De La Phantasia A L'magination = Collect. Det. Class. De La Ragua A Sacratif: Miscelanea De Toponimos Andalusies Al Sur De Granada = Suom Tiedeakat Toim De La Ragua A Sacratif: Miscelanea De Toponimos Andalusies Al Sur De Granada = Suom. Tiedeakat. Toim. Delaware Agricultural Experiment Station Bulletin = Del Agr Exp Sta Bull Delaware Agricultural Experiment Station Bulletin = Del. Agr. Exp. Sta. Bull. Delaware code annotated. Delaware = Del Code Annot Del Delaware history = Del Hist Delaware medical journal = Del Med J Delaware Medical Journal=Del Med J;; Delaware Medical Journal = Del Med J Delaware Medical Journal = Del. Med. J. Delaware nurse = Del Nurse Delaware Nurse = Del. Nurse Delaware Symposia On Language Studies = Del S Lang Delaware Symposia On Language Studies = Del. S. Lang. Delay Compensation for Nonlinear, Adaptive, and Pde Systems = Syst Control-found A Delay Compensation for Nonlinear, Adaptive, and Pde Systems = Syst. Control-found. A. Delay-coupled Complex Systems: and Applications to Lasers = Springer Theses-reco Delay-coupled Complex Systems: and Applications to Lasers = Springer. Theses-reco. Delay Differential Equations and Applications = Nato Sci Ser Ii Math Delay Differential Equations and Applications = Nato. Sci. Ser. Ii. Math. Delay Differential Equations and Dynamical Systems = Lect Notes Math Delay Differential Equations and Dynamical Systems = Lect. Notes. Math. Delegated Legislation and The Role of Comittees in The Ec = Stud Law Delegated Legislation and The Role of Comittees in The Ec = Stud. Law. Delegation in Contemporary Democracies = Routl Ecpr Stud Eur Delegation in Contemporary Democracies = Routl. Ecpr. Stud. Eur. Deleuze and Guattari for Architects = Think Archit Deleuze and Guattari for Architects = Think. Archit. Deleuze and The Body = Deleuze Connect Deleuze and The Body = Deleuze Connect. Deleuze Connections = Deleuze Connect Deleuze Connections = Deleuze Connect. Delft progress report = Delft Prog Rep Delft Science in Design 2, Conference Proceedings = Res Desgn Ser Delft Science in Design 2, Conference Proceedings = Res. Desgn. Ser. Deliberate Search for The Stratigraphic Trap = Geol Soc Spec Publ Deliberate Search for The Stratigraphic Trap = Geol. Soc. Spec. Publ. Delinquency: Causes, Reduction and Prevention = Crim Justice Law Enf Delinquency: Causes, Reduction and Prevention = Crim. Justice. Law. Enf. Delivering Performance in Food Supply Chains = Woodhead Publ Food S Delivering Performance in Food Supply Chains = Woodhead. Publ. Food S. Delivering Policy Reform: Anchoring Significant Reforms in Turbulent Times = Anzsog Monogr Delivering Policy Reform: Anchoring Significant Reforms in Turbulent Times = Anzsog. Monogr. Delivery and Controlled Release of Bioactives in Foods and Nutraceuticals = Woodhead Food Ser Delivery and Controlled Release of Bioactives in Foods and Nutraceuticals = Woodhead. Food. Ser. Delphi Studies From The Mcb Business Futures Group = Delphi Stud Mcb Bus Delphi Studies From The Mcb Business Futures Group = Delphi Stud. Mcb Bus. Delta 2004: Second Ieee International Workshop On Electronic Design, Test Applications, Proceedings = Int Sym Elect Des Te Delta 2004: Second Ieee International Workshop On Electronic Design, Test Applications, Proceedings = Int. Sym. Elect. Des. Te. Delta 2006: Third Ieee International Workshop On Electronic Design, Test and Applications = Int Sym Elect Des Te Delta 2006: Third Ieee International Workshop On Electronic Design, Test and Applications = Int. Sym. Elect. Des. Te. Delta = Delta Delta Journal of Science = Delta J. Sci. Deltares Select Series = Deltares Sel Ser Deltares Select Series = Deltares Sel. Ser. Delta Scuti and Related Stars: Reference Handbook and Proceedings of The 6th Vienna Workshop in Astrophysics = Astr Soc P Delta Scuti and Related Stars: Reference Handbook and Proceedings of The 6th Vienna Workshop in Astrophysics = Astr. Soc. P. Deltas of The World = Coastl Worl Deltas of The World = Coastl. Worl. Deltion Hellenikes Mikrobiologikes kai Hygieinologikes Hetaireias = Delt Hell Mikrobiol Hygieinol Hetair Deltion. Iatrocheirourgike Hetaireia Athenon = Deltion Iatrocheirourgike Hetaireia Athenon Deltion tes Paidiatrikes Klinikes tou Panepistemiou Athenon = Delt Paidiatr Klin Panepistem Athenon De L'un Au Multiple: Dynamiques Identitaires En Amerique Latine = Hesperides De L'un Au Multiple: Dynamiques Identitaires En Amerique Latine = Hesperides. Delusional Misidentification = Psychiat Theor Appl Delusional Misidentification = Psychiat. Theor. Appl. Delusion and Self-deception: Affective and Motivational Influences On Belief Formation = Macquarie Mg Cog Sci Delusion and Self-deception: Affective and Motivational Influences On Belief Formation = Macquarie. Mg. Cog. Sci. Demand-driven Associative Classification = Springerbrief Comput Demand-driven Associative Classification = Springerbrief. Comput. Dementia and Geriatric Cognitive Disorders = Dement Geriatr Cogn Dementia and Geriatric Cognitive Disorders = Dement. Geriatr. Cogn. Dementia and geriatric cognitive disorders = Dement Geriatr Cogn Disord Dementia and Geriatric Cognitive Disorders=Dement Geriatr Cogn Disord;; Dementia and Geriatric Cognitive Disorders = Dement. Geriatr. Cogn. Disord. Dementia (Basel, Switzerland) = Dementia Dementia = Dementia Dementia, Design and Technology: Time to Get Involved = Assist Technol Res S Dementia, Design and Technology: Time to Get Involved = Assist. Technol. Res. S. Demircihüyük. Die Ergebnisse der Ausgrabungen 1975--1978 = Demircihueyuek Demise of Marxism-leninism in Russia = St Antonys Ser Demise of Marxism-leninism in Russia = St. Antonys. Ser. Demise of The Soviet Communist Party = Basees-rout Ser Russ Demise of The Soviet Communist Party = Basees-rout. Ser. Russ. Democracy - A Destiny of Humankind? A Qualified, Contingent and Contextual Case for Democracy Promotion = Glob Polit Stud Democracy - A Destiny of Humankind? A Qualified, Contingent and Contextual Case for Democracy Promotion = Glob. Polit. Stud. Democracy and Civil Society in Asia, Volume 2: Democratic Transitions and Social Movements in Asia = Int Pol Ec Democracy and Civil Society in Asia, Volume 2: Democratic Transitions and Social Movements in Asia = Int. Pol. Ec. Democracy and Civil Society in Asia, Volume 2: Democratic Transitions and Social Movements in Asia = Int Polit Econ Ser Democracy and Civil Society in Asia, Volume 2: Democratic Transitions and Social Movements in Asia = Int. Polit. Econ. Ser. Democracy and Development = Iea Conf Vol Democracy and Development = Iea. Conf. Vol. Democracy and Foreign Policy: A Case History The Sino-japanese Dispute, 1931-33, Volume 64 = Rout Library Ed Jpn Democracy and Foreign Policy: A Case History The Sino-japanese Dispute, 1931-33, Volume 64 = Rout. Library. Ed. Jpn. Democracy and Multicultural Education = Res Multicult Educ I Democracy and Multicultural Education = Res. Multicult. Educ. I. Democracy and Myth in Russia and Eastern Europe = Basees-rout Ser Russ Democracy and Myth in Russia and Eastern Europe = Basees-rout. Ser. Russ. Democracy and New Media = Media Transit Democracy and New Media = Media Transit. Democracy and Party Systems in Developing Countries: A Comparative Study of India and South Africa = Routl Adv S Asian St Democracy and Party Systems in Developing Countries: A Comparative Study of India and South Africa = Routl. Adv. S. Asian. St. Democracy and Pluralism:the Political Thought of William E. Connolly = Routl Innov Polit Th Democracy and Pluralism:the Political Thought of William E. Connolly = Routl. Innov. Polit. Th. Democracy and Socialism in Africa = Afr Mod Dev Democracy and Socialism in Africa = Afr. Mod. Dev. Democracy and Tradition = New Forum Book Democracy and Tradition = New. Forum. Book. Democracy Building and Civil Society in Post-soviet Armenia = Routl Contemp Russ E Democracy Building and Civil Society in Post-soviet Armenia = Routl. Contemp. Russ. E. Democracy Citizenship and Constitutionalism = Democr Citiz Constit Democracy Citizenship and Constitutionalism = Democr. Citiz. Constit. Democracy, Freedom and Coercion: A Law and Economics Approach = New Horiz Law Econ Democracy, Freedom and Coercion: A Law and Economics Approach = New. Horiz. Law Econ. Democracy in An Age of Globalisation = Stud Glob Justice Democracy in An Age of Globalisation = Stud. Glob. Justice. Democracy in Contemporary Us Womens Poetry = Am Lit Read Twenty-f Democracy in Contemporary Us Womens Poetry = Am. Lit. Read. Twenty-f. Democracy in Islam = Routl Stud Pol Islam Democracy in Islam = Routl. Stud. Pol. Islam Democracy in Occupied Japan: The U.s. Occupation and Japanese Politics and Society = Asias Transform Democracy in Occupied Japan: The U.s. Occupation and Japanese Politics and Society = Asias. Transform. Democracy in The European Union: Towards The Emergence of A Public Sphere = Routl Adv Eur Polit Democracy in The European Union: Towards The Emergence of A Public Sphere = Routl. Adv. Eur. Polit. Democracy (New York, N.Y.) = Democracy Democracy, Racism, and Prisons = Radic Philos Today Democracy, Racism, and Prisons = Radic. Philos. Today. Democracy, Religious Pluralism and The Liberal Dilemma of Accommodation = Stud Global Justice Democracy, Religious Pluralism and The Liberal Dilemma of Accommodation = Stud. Global. Justice. Democracy, Religious Pluralism and The Liberal Dilemma of Accommodation = Stud Glob Justice Democracy, Religious Pluralism and The Liberal Dilemma of Accommodation = Stud. Glob. Justice. Democracy Transformed? = Comp Polit Democracy Transformed? = Comp. Polit. Democracy With Justice = Carl Lib S Democracy With Justice = Carl. Lib. S. Democratic Architecture for The Welfare State = Routl Stud Man Volun Democratic Architecture for The Welfare State = Routl. Stud. Man. Volun. Democratic Audit of The European Union = One Eur Several Democratic Audit of The European Union = One. Eur. Several. Democratic Dilemmas of Multilevel Governance: Legitimacy, Representation and Accountability in The European Union = Transform State Democratic Dilemmas of Multilevel Governance: Legitimacy, Representation and Accountability in The European Union = Transform. State. Democratic Elections in Poland, 1991-2007 = Basees-rout Ser Russ Democratic Elections in Poland, 1991-2007 = Basees-rout. Ser. Russ. Democratic Legitimacy = Routl Stud Soc Polit Democratic Legitimacy = Routl. Stud. Soc. Polit. Democratization and Gender in Contemporary Russia = Basees-rout Ser Russ Democratization and Gender in Contemporary Russia = Basees-rout. Ser. Russ. Democratization = Democratization Democratization, Development, and Legality: Chile, 1831-1973 = Stud Am Democratization, Development, and Legality: Chile, 1831-1973 = Stud. Am. Democratization in Morocco: The Political Elite and Struggles for Power in The Post-independence State = Routl Stud Mid E Pol Democratization in Morocco: The Political Elite and Struggles for Power in The Post-independence State = Routl. Stud. Mid. E. Pol. Democratization in Post-suharto Indonesia = Routl Cont Se Asia S Democratization in Post-suharto Indonesia = Routl. Cont. Se. Asia. S. Democratization in The Third World = Int Pol Ec Democratization in The Third World = Int. Pol. Ec. Democratization of Expertise? = Sociol Sci Democratization of Expertise? = Sociol. Sci. Democratization Studies = Democratiz Stud Democratization Studies = Democratiz. Stud. Democritus: Science, The Arts, and The Care of The Soul = Philos Antiq Democritus: Science, The Arts, and The Care of The Soul = Philos. Antiq. Demografia = Demografia Demografia y economia = Demogr Econ Demografía y Economía=Demogr. Econ. Demograficheskie issledovaniia (Kiev, Ukraine) = Demogr Issled Demografie = Demografie Demografske sveske / Centar za demografska istrazivanja Instituta drustvenih nauka Univerziteta u Beogradu = Demogr Sveske Demographic and Programmatic Consequences of Contraceptive Innovations = Reprod Biol Demographic and Programmatic Consequences of Contraceptive Innovations = Reprod. Biol. Demographic Change and Economic Growth: Simulations On Growth Models = Contrib Econ Demographic Change and Economic Growth: Simulations On Growth Models = Contrib. Econ. Demographic Change in Australia's Rural Landscapes: Implications for Society and The Environment = Landsc Ser Demographic Change in Australia's Rural Landscapes: Implications for Society and The Environment = Landsc. Ser. Demographic research = Demogr Res Demographic Research = Demogr Res Demographic Research = Demogr. Res. Demographic Research Monographs = Demogr Res Monogr Demographic Research Monographs = Demogr. Res. Monogr. Demographie africaine = Demogr Afr Demographische Informationen / hrsg. vom Institut fur Demographie, Osterreichische Akademie der Wissenschaften = Demogr Inf Demography and Infrastructure: National and Regional Aspects of Demographic Change = Environ Policy Demography and Infrastructure: National and Regional Aspects of Demographic Change = Environ. Policy. Demography=Demography Demography=Demography;; Demography = Demography Demography India = Demogr India Demohrafichni doslidzhennia = Demohrafichni Doslidzhennia Demokratie Als Teleologisches Prinzip: Zur Legitimitat Von Staatsgewalt Im Volkerrecht = Beitr Ausl Offentl R Demokratie Als Teleologisches Prinzip: Zur Legitimitat Von Staatsgewalt Im Volkerrecht = Beitr. Ausl. Offentl. R. Demokratie Unter Bedingungen Der Weltgesellschaft: Normative Grundlagen Legitimer Herrschaft in Einer Globalen Politischen Ordnung = Ideen Argumente Demokratie Unter Bedingungen Der Weltgesellschaft: Normative Grundlagen Legitimer Herrschaft in Einer Globalen Politischen Ordnung = Ideen. Argumente. Demonstrare Voir Et Faire Voir: Forme De La Demonstration A Rome = Pallas Demonstrare Voir Et Faire Voir: Forme De La Demonstration A Rome = Pallas. Demonstrare Voir Et Faire Voir: Forme De La Demonstration A Rome = Pallas-rev Etud Anti Demonstrare Voir Et Faire Voir: Forme De La Demonstration A Rome = Pallas-rev. Etud. Anti. Demonstratio Mathematica = Demonstratio Math. Demos (Mexico City, Mexico) = Demos Demosta = Demosta De museus. Quaderns de museologia i museografia = DeMuseus Denationalizing Science = Sociol Sci Denationalizing Science = Sociol. Sci. Dendrimer Catalysis = Top Organometal Chem Dendrimer Catalysis = Top. Organometal. Chem. Dendrimers Iii: Design, Dimension, Function = Top Curr Chem Dendrimers Iii: Design, Dimension, Function = Top. Curr. Chem. Dendrimers Ii = Top Curr Chem Dendrimers Ii = Top. Curr. Chem. Dendrimers Iv = Top Curr Chem Dendrimers Iv = Top. Curr. Chem. Dendrimers = Top Curr Chem Dendrimers = Top. Curr. Chem. Dendrimers V: Functional and Hyperbranched Building Blocks, Photophysical Properties, Applications in Materials and Life Sciences = Top Curr Chem Dendrimers V: Functional and Hyperbranched Building Blocks, Photophysical Properties, Applications in Materials and Life Sciences = Top. Curr. Chem. Dendritic Cell Protocols, Second Edition = Methods Mol Biol Dendritic Cell Protocols, Second Edition = Methods. Mol. Biol. Dendritic Cells and Virus Infection = Curr Top Microbiol Dendritic Cells and Virus Infection = Curr. Top. Microbiol. Dendritic Cells in Fundamental and Clinical Immunology = Adv Exp Med Biol Dendritic Cells in Fundamental and Clinical Immunology = Adv. Exp. Med. Biol. Dendritic Cells in Fundamental and Clinical Immunology, Vol 2 = Adv Exp Med Biol Dendritic Cells in Fundamental and Clinical Immunology, Vol 2 = Adv. Exp. Med. Biol. Dendritic Cells in Fundamental and Clinical Immunology, Vol 3 = Adv Exp Med Biol Dendritic Cells in Fundamental and Clinical Immunology, Vol 3 = Adv. Exp. Med. Biol. Dendritic Cells in Lymphoid Tissues = Int Congr Ser Dendritic Cells in Lymphoid Tissues = Int. Congr. Ser. Dendritic Cells: Types, Life Cycles and Biological Functions = Cell Bio Res Prog Dendritic Cells: Types, Life Cycles and Biological Functions = Cell. Bio. Res. Prog. Dendrobiology = Dendrobiology Dendrochronologia = Dendrochronologia Dendronatura = Dendronatura Dengue Virus = Curr Top Microbiol Dengue Virus = Curr. Top. Microbiol. Dengue Virus: Detection, Diagnosis and Control = Virol Res Prog Dengue Virus: Detection, Diagnosis and Control = Virol. Res. Prog. Denitrification in Soil and Sediment = Fems Symp Denitrification in Soil and Sediment = Fems. Symp. Denken Erzahlen: Reprasentationen Des Intellekts Bei Robert Musil Und Paul Valery = Spectr Literaturwiss Denken Erzahlen: Reprasentationen Des Intellekts Bei Robert Musil Und Paul Valery = Spectr. Literaturwiss. Denki Kagaku = Denki Kagaku Denki Kagaku oyobi Kogyo Butsuri Kagaku = Denki Kagaku oyobi Kogyo Butsuri Kagaku Denkmäler antiker Architektur = DAA Denkmalpflege = Denkmalpflege Denkmalpflege in Baden-Württemberg = DenkmPflBadWuert Denkschriften der Schweizerischen naturforschenden Gesellschaft = Denkschr. Schweiz. nat.forsch. Ges. Dennis Robertson = Great Think Econ Dennis Robertson = Great. Think. Econ. Den Norske tannlaegeforenings tidende = Nor Tannlaegeforen Tid Dens = Dens Dense Interstellar Medium in Galaxies = Springer Proc Phys Dense Interstellar Medium in Galaxies = Springer. Proc. Phys. Dense Matter in Compact Stars: A Pedagogical Introduction = Lect Notes Phys Dense Matter in Compact Stars: A Pedagogical Introduction = Lect. Notes. Phys. Dense Z-pinches = Aip Conf Proc Dense Z-pinches = Aip. Conf. Proc. Dense Z-pinches - Fourth International Conference = Aip Conf Proc Dense Z-pinches - Fourth International Conference = Aip. Conf. Proc. Dense Z-pinches: Third International Conference = Aip Conf Proc Dense Z-pinches: Third International Conference = Aip. Conf. Proc. Density Concepts With Applications to The Social Sciences = Tatra Mt Math Publ Density Concepts With Applications to The Social Sciences = Tatra. Mt. Math. Publ. Density-dependent Population Regulation of Black, Brown, and Polar Bears = Int Bear Ms Density-dependent Population Regulation of Black, Brown, and Polar Bears = Int. Bear. Ms. Density Functionals: Theory and Applications = Lect Notes Phys Density Functionals: Theory and Applications = Lect. Notes. Phys. Density Functional Theory: An Advanced Course = Theor Math Phys Ser Density Functional Theory: An Advanced Course = Theor. Math. Phys. Ser. Density Functional Theory and Its Application to Materials = Aip Conf Proc Density Functional Theory and Its Application to Materials = Aip. Conf. Proc. Density Functional Theory Iii = Top Curr Chem Density Functional Theory Iii = Top. Curr. Chem. Density Functional Theory Ii = Top Curr Chem Density Functional Theory Ii = Top. Curr. Chem. Density Functional Theory I = Top Curr Chem Density Functional Theory I = Top. Curr. Chem. Density Functional Theory Iv = Top Curr Chem Density Functional Theory Iv = Top. Curr. Chem. Density Functional Theory = Nato Adv Sci Inst Se Density Functional Theory = Nato. Adv. Sci. Inst. Se. Density-matrix Renormalization = Lect Notes Phys Density-matrix Renormalization = Lect. Notes. Phys. "Dens sapiens" = Dens Sapiens Dens Sapiens = Dens Sapiens Dentago = Dentago Dental abstracts; a selection of world dental literature = Dent Abstr Dental Abstracts = Dent. Abstr. Dental anaesthesia and sedation = Dent Anaesth Sedat Dental Anaesthesia and Sedation = Dent. Anaesth. Sedat. Dental Angles = Dent Angles Dental Angles = Dent. Angles Dental assistant (Chicago, Ill. : 1994) = Dent Assist Dental Assistant = Dent. Assist. Dental Assistant Journal = Dent. Assist. J. Dental assisting = Dent Assist (Waco Tx) Dental Assisting = Dent. Assist. (Waco Tx.) Dental Biomaterials: Imaging, Testing and Modelling = Woodhead Publ Mater Dental Biomaterials: Imaging, Testing and Modelling = Woodhead. Publ. Mater. Dental Bleaching = Quintessent Dent Pra Dental Bleaching = Quintessent. Dent. Pra. Dental Cadmos = Dent Cadmos Dental Cadmos = Dent. Cadmos Dental Clinics of North America = Dent Clin N Am Dental Clinics of North America = Dent. Clin. N. Am. Dental clinics of North America = Dent Clin North Am Dental Clinics of North America=Dent Clin North Am;; Dental Clinics of North America = Dent. Clin. North Am. Dental concepts = Dent Concepts Dental Concepts = Dent. Concepts Dental delineator = Dent Delin Dental Delineator = Dent. Delin. Dental dialogue (Bombay, India) = Dent Dialogue Dental Dialogue = Dent. Dialogue Dental Dienst = Dent. Dienst Dental Dienst; Fachzeitschrift fur den Dental-Markt; technisches Fachblatt fur Prothetik = Dent Dienst Dental digest = Dent Dig Dental Digest = Dent. Dig. Dental dimensions = Dent Dimens Dental Dimensions = Dent. Dimens. Dental Discourse = Dent Discourse Dental Discourse = Dent. Discourse Dental echo = Dent Echo (Heidelb) Dental Echo = Dent. Echo (Heidelb.) Dental Economics = Dent. Econ. Dental economics - oral hygiene = Dent Econ Dental Enamel = Ciba F Symp Dental Enamel = Ciba. F. Symp. Dental health = Dent Health (London) Dental Health = Dent. Health (London) Dental Historian = Dent. Hist. Dental historian : Lindsay Club newsletter = Dent Hist Dental hygiene = Dent Hyg (Chic) Dental Hygiene = Dent. Hyg. (Chic.) Dental Hygienist = Dent. Hyg. (San Franc.) Dentalhygienistnews = Dentalhygienistnews Dental hygienist (San Francisco, Calif.) = Dent Hyg (San Franc) Dental images = Dent Images Dental Images = Dent. Images Dental Implantation and Technology = Dent Sci Mater Tech Dental Implantation and Technology = Dent. Sci. Mater. Tech. Dental implantology update = Dent Implantol Update Dental Implantology Update = Dent. Implantol. Update Dental items of interest = Dent Items Interest Dental journal = Dent J Dental Journal = Dent. J. Dental Journal of Malaysia and Singapore = Dent. J. Malaysia Singapore Dental journal of Malaysia = Dent J Malays Dental Journal of Malaysia = Dent. J. Malays. Dental Journal of Zambia = Dent. J. Zamb. Dental journal of Zambia : official publication of the Zambia Dental Association = Dent J Zamb Dental lab management today = Dent Lab Manage Today Dental Lab Management Today = Dent. Lab Manage. Today Dental laboratorie bladet = Dent Lab Bl Dental Laboratorie Bladet = Dent. Lab. Bl. Dental laboratory review = Dent Lab Rev Dental Laboratory Review = Dent. Lab. Rev. Dental Labor = Dent. Labor (Munch.) Dental Magazine and Oral Topics = Dent. Mag. Oral Top. Dental management = Dent Manage Dental Management = Dent Manage Dental Management = Dent. Manage. Dental Materials = Dent Mater Dental Materials = Dent. Mater. Dental Materials in Operative Dentistry = Quintessent Dent Pra Dental Materials in Operative Dentistry = Quintessent. Dent. Pra. Dental materials journal = Dent Mater J Dental Materials Journal = Dent Mater J Dental Materials Journal = Dent. Mater. J. Dental materials : official publication of the Academy of Dental Materials = Dent Mater Dental Materials Research = Dent Sci Mater Tech Dental Materials Research = Dent. Sci. Mater. Tech. Dental Mirror = Dent Mirror (Atlanta) Dental Mirror = Dent. Mirror (Atlanta) Dental news = Dent News (Lond) Dental News = Dent. News (Lond.) Dental office = Dent Off Dental Office = Dent. Off. Dental Outlook = Dent. Outlook Dental Perspectives On Human Evolution: State of The Art Research in Dental Paleoanthropology = Vertebr Paleobiol Pa Dental Perspectives On Human Evolution: State of The Art Research in Dental Paleoanthropology = Vertebr. Paleobiol. Pa. Dentalpractice = Dentalpractice Dental practice = Dent Pract Dental Practice = Dent. Pract. (Cincinnati) Dental practice management = Dent Pract Manage Dental Practice Management = Dent. Pract. Manage. Dental practice; views, trends and news of dentistry = Dent Pract (Cincinnati) Dental Practitioner and Dental Record = Dent Pract Dent Rec Dental Practitioner and Dental Record = Dent. Pract. Dent. Rec. Dental press = Dent Press Dental Press = Dent. Press Dental progress = Dent Prog (Chic) Dental radiography and photography = Dent Radiogr Photogr Dental Radiography and Photography = Dent. Radiogr. Photogr. Dental research and graduate study = Dent Res Grad Study Dental-Revue = Dent. Rev. Dental-revue (Solothurn, Switzerland) = Dent Rev Dental School quarterly / the University of Texas Health Science Center at San Antonio = Dent Sch Q Dental School Quarterly, University of Texas Health Science Center at San Antonio = Dent. Sch. Q. Dental Science Materials and Technology = Dent Sci Mater Tech Dental Science Materials and Technology = Dent. Sci. Mater. Tech. Dental student = Dent Stud Dental Student = Dent. Stud. Dental survey = Dent Surv Dental Survey = Dent. Surv. Dental Team Companion = Quintessent Dent Pra Dental Team Companion = Quintessent. Dent. Pra. Dental Team = Dent Team Dental Team = Dent. Team Dental teamwork = Dent Teamwork Dental Teamwork = Dent. Teamwork Dental Technician = Dent. Tech. Dental Therapeutics Newsletter = Dent Ther Newsl Dental Therapeutics Newsletter = Dent. Ther. Newsl. Dental Traumatology = Dent Traumatol Dental Traumatology = Dent. Traumatol. Dental traumatology : official publication of International Association for Dental Traumatology = Dent Traumatol Dental update = Dent Update Dental Update = Dent. Update Dental World = Dent. World Dental world (London, England) = Dent World Dentate Gyrus: A Comphrehensive Guide to Structure, Function, and Clinical Implications = Prog Brain Res Dentate Gyrus: A Comphrehensive Guide to Structure, Function, and Clinical Implications = Prog. Brain. Res. Dent, contemporary dentistry = Dent Dent: Contemporary Dentistry = Dent Dentessence = Dentessence Dentist = Dentist Dentistische Rundschau = Dent Rundsch Dentist news = Dent News Dentist News = Dent. News Dentistry (American Student Dental Association) = Dentistry Dentistry = Dentistry Dentistry in Japan = Dent Jpn (Tokyo) Dentistry in Japan = Dent. Jpn. (Tokyo) Dentistry (Loma Linda, Calif.) = Dentistry (Loma Linda) Dentistry today = Dent Today Dentistry Today = Dent. Today Dentist (Waco, Tex.) = Dentist Dentisuto (Dentist) = Dentisuto. Dentomaxillofacial Radiology = Dentomaxillofac Rad Dentomaxillofacial Radiology = Dentomaxillofac. Rad. Dento maxillo facial radiology = Dentomaxillofac Radiol Dento-Maxillo-Facial Radiology = Dentomaxillofac. Radiol. Dento-maxillo-facial radiology. Supplement = Dentomaxillofac Radiol Suppl Dento-Maxillo-Facial Radiology. Supplement = Dentomaxillofac. Radiol. Suppl. Dentoral = Dentoral (Istanbul) Dentoscope = Dentoscope Denumerable Markov Chains: Generating Functions Boundary Theory Random Walks On Trees = Ems Textb Math Denumerable Markov Chains: Generating Functions Boundary Theory Random Walks On Trees = Ems. Textb. Math. Denver Journal of International Law and Policy = Denver J Int Law Pol Denver Journal of International Law and Policy = Denver J. Int. Law Pol. Denver journal of international law and policy = Denver J Int Law Policy Denver law journal = Denver Law J Denver Law Journal = Denver Law J Denver Law Journal = Denver Law J. Denver University Law Review = Denver U Law Rev Denver University Law Review = Denver U. Law Rev. Denver University law review = Denver Univ Law Rev Deontic Logic, Agency and Normative Systems = Work Comp Deontic Logic, Agency and Normative Systems = Work. Comp. Deontic Logic and Artificial Normative Systems, Proceedings = Lect Notes Comput Sc Deontic Logic and Artificial Normative Systems, Proceedings = Lect. Notes. Comput. Sc. Deontic Logic in Computer Science = Lect Notes Artif Int Deontic Logic in Computer Science = Lect. Notes. Artif. Int. Deontic Logic in Computer Science, Proceedings = Lect Notes Artif Int Deontic Logic in Computer Science, Proceedings = Lect. Notes. Artif. Int. Department of State Bulletin = Dept State Bul Department of State Bulletin = Dept. State Bul. Department of State publication. Background notes series = Backgr Notes Ser Department of the Army technical bulletin. TB MED = Tech Bull Dep Army Departure From The Homeland: Indo-europeans and Archaeology Meeting = J Indo-eur Stud Mono Departure From The Homeland: Indo-europeans and Archaeology Meeting = J. Indo-eur. Stud. Mono. DePaul journal of health care law = DePaul J Health Care Law De Paul law review = De Paul Law Rev Dependability Metrics: Advanced Lectures = Lect Notes Comput Sc Dependability Metrics: Advanced Lectures = Lect. Notes. Comput. Sc. Dependability Modelling Under Uncertainty: An Imprecise Probabilistic Approach = Stud Comput Intell Dependability Modelling Under Uncertainty: An Imprecise Probabilistic Approach = Stud. Comput. Intell. Dependability of Networked Computer-based Systems = Springer Ser Reliab Dependability of Networked Computer-based Systems = Springer. Ser. Reliab. Dependable and Adaptable Networks and Services, Proceedings = Lect Notes Comput Sc Dependable and Adaptable Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Dependable Computer Systems = Adv Intel Soft Compu Dependable Computer Systems = Adv. Intel. Soft. Compu. Dependable Computing - Edcc-3 = Lect Notes Comput Sc Dependable Computing - Edcc-3 = Lect. Notes. Comput. Sc. Dependable Computing: Edcc-4, Proceedings = Lect Notes Comput Sc Dependable Computing: Edcc-4, Proceedings = Lect. Notes. Comput. Sc. Dependable Computing - Edcc-5, Proceedings = Lect Notes Comput Sc Dependable Computing - Edcc-5, Proceedings = Lect. Notes. Comput. Sc. Dependable Computing = Lect Notes Comput Sc Dependable Computing = Lect. Notes. Comput. Sc. Dependable Computing, Proceedings = Lect Notes Comput Sc Dependable Computing, Proceedings = Lect. Notes. Comput. Sc. Dependable Engines: The Story of Pratt & Whitney = Libr Flight Dependable Engines: The Story of Pratt & Whitney = Libr. Flight. Dependable Systems: Software, Computing, Networks = Lect Notes Comput Sc Dependable Systems: Software, Computing, Networks = Lect. Notes. Comput. Sc. Dependencies in Women and Men = Schrif Such Dependencies in Women and Men = Schrif. Such. Dependency Structures and Lexicalized Grammars: An Algebraic Approach = Lect Notes Artif Int Dependency Structures and Lexicalized Grammars: An Algebraic Approach = Lect. Notes. Artif. Int. Dependenz Und Valenz/dependency and Valency: Ein Internationales Handbuch Der Zeitgenossischen Forschung/an International Handbook of Contemporary Research, Volume 2, Part 2 = Handb Sprach Kommun Dependenz Und Valenz/dependency and Valency: Ein Internationales Handbuch Der Zeitgenossischen Forschung/an International Handbook of Contemporary Research, Volume 2, Part 2 = Handb. Sprach. Kommun. Dependenz Und Valenz: Ein Internationales Handbuch Der Zeitgenossischen Forschung, Band 1, Teil 1 = Handb Sprach Kommun Dependenz Und Valenz: Ein Internationales Handbuch Der Zeitgenossischen Forschung, Band 1, Teil 1 = Handb. Sprach. Kommun. Depicting Canadas Children = Stud Child Fam Can Depicting Canadas Children = Stud. Child. Fam. Can. Deployable Structures = Cism Cour L Deployable Structures = Cism. Cour. L. Deposit and Geoenvironmental Models for Resource Exploitation and Environmental Security = Nato Sci S Prt 2 Env Deposit and Geoenvironmental Models for Resource Exploitation and Environmental Security = Nato. Sci. S. Prt. 2. Env. Deposition and Fate of Trace Metals in Our Environment = Us For Serv T R Nc Deposition and Fate of Trace Metals in Our Environment = Us. For. Serv. T. R. Nc. Deposition of Diamond-like Superhard Materials = Springer Tr Mod Phys Deposition of Diamond-like Superhard Materials = Springer. Tr. Mod. Phys. Deposition of Organic-carbon-rich Sediments: Models, Mechanisms, and Consequences = Soc Sediment Geol Sp Deposition of Organic-carbon-rich Sediments: Models, Mechanisms, and Consequences = Soc. Sediment. Geol. Sp. Deposition of Organic Facies = Aapg Stud Geol Deposition of Organic Facies = Aapg. Stud. Geol. Depression and Agression in Family Interaction = Adv Fam Res Depression and Agression in Family Interaction = Adv. Fam. Res. Depression and anxiety = Depress Anxiety Depression and Anxiety=Depress Anxiety;; Depression and Anxiety = Depress Anxiety Depression and Anxiety = Depress. Anxiety Depression and Mania = Adv Biochem Psychoph Depression and Mania = Adv. Biochem. Psychoph. Depression-causes Diagnosis and Treatment = Depress Causes Diagn Depression-causes Diagnosis and Treatment = Depress. Causes. Diagn. Depression = Depression Depression in Children = Depress Causes Diagn Depression in Children = Depress. Causes. Diagn. Depression in Latinos: Assessment, Treatment, and Prevention = Issues Child Fam Liv Depression in Latinos: Assessment, Treatment, and Prevention = Issues. Child. Fam. Liv. Depression in Schizophrenia = Prog Psych Depression in Schizophrenia = Prog. Psych. De-radicalization of Jihadists: Transforming Armed Islamist Movements = Contemp Terror Stud De-radicalization of Jihadists: Transforming Armed Islamist Movements = Contemp. Terror. Stud. Der Altsprachliche Unterricht = Altsprachi Unterr Der altsprachliche Unterricht: Arbeitshefte zu seiner wissenschaftlichen Begründung und praktischen Gestalt = AU Der Anaesthesist = Anaesthesist Der Anschnitt. Mitteilungsblatt der Vereinigung der Freunde von Kunst und Kultur im Bergbau = Anschnitt Der Archivar = Archivar Der Arztliche Dienst = Arztl Dienst Der Begriff Des Skeptizismus = Quellen Stud Philos Der Begriff Des Skeptizismus = Quellen. Stud. Philos. Der Chirurg; Zeitschrift fur alle Gebiete der operativen Medizen = Chirurg Der Deutsche Apotheker = Dtsch Apoth Der Donauraum = Donauraum Der Donaurum=Der Donaurum Der Dux Mogontiacensis Und Die Notitia Dignitatum = Reallexikon Ger Alte Der Dux Mogontiacensis Und Die Notitia Dignitatum = Reallexikon. Ger. Alte. Deregulation and Labour Law = Bull Comparat Lab Re Deregulation and Labour Law = Bull. Comparat. Lab. Re. Deregulation, Innovation and Market Liberalization = Routl Stud Bus Organ Deregulation, Innovation and Market Liberalization = Routl. Stud. Bus. Organ. Deregulation of Electric Utilities = T Reg Econ Deregulation of Electric Utilities = T. Reg. Econ. Der Freie Zahnarzt = Freie Zahnarzt Der Gynakologe = Gynakologe Der Hautarzt; Zeitschrift fur Dermatologie, Venerologie, und verwandte Gebiete = Hautarzt Der Internist = Internist (Berl) Derivations and Constraints in Phonology = Phonol World Lang Derivations and Constraints in Phonology = Phonol. World. Lang. Derivations and Evaluations: Object Shift in The Germanic Languages = Stud Generat Gramm Derivations and Evaluations: Object Shift in The Germanic Languages = Stud. Generat. Gramm. Derivative Strategies for Managing Portfolio Risk = Icfa Cont Educ Ser Derivative Strategies for Managing Portfolio Risk = Icfa. Cont. Educ. Ser. Derived Functors in Functional Analysis = Lect Notes Math Derived Functors in Functional Analysis = Lect. Notes. Math. Der Kassenzahnarzt; Colloquium med. dent = Kassenzahnarzt Colloq Med Dent Der Knappschaftsarzt = Knappschaftsarzt Der Krebsarzt = Krebsarzt Der Landarzt = Landarzt Dermal and Transdermal Drug Delivery = Paperb Apv Dermal and Transdermal Drug Delivery = Paperb. Apv. Dermatitis : contact, atopic, occupational, drug : official journal of the American Contact Dermatitis Society, North American Contact Dermatitis Group = Dermatitis Dermatitis = Dermatitis Dermatologia ibero latino-americana = Dermatol Iber Lat Am Dermatologia internationalis = Dermatol Int Dermatologia Internationalis = Dermatol. Int. Dermatologia tropica et ecologica geographica = Dermatol Trop Ecol Geogr Dermatologica = Dermatologica Dermatological Treatments : Preliminary Investigations in The Asia-pacific Region = Roy Soc Med Int Cong Dermatological Treatments : Preliminary Investigations in The Asia-pacific Region = Roy. Soc. Med. Int. Cong. Dermatologica Sinica = Dermatol Sin Dermatologica Sinica = Dermatol. Sin. Dermatologic clinics = Dermatol Clin Dermatologic Clinics=Dermatol Clin;; Dermatologic Clinics = Dermatol Clin Dermatologic Clinics = Dermatol. Clin. Dermatologic Surgery=Dermatol Surg;; Dermatologic Surgery = Dermatol Surg Dermatologic Surgery = Dermatol. Surg. Dermatologic surgery : official publication for American Society for Dermatologic Surgery [et al.] = Dermatol Surg Dermatologic therapy = Dermatol Ther Dermatologic Therapy = Dermatol Ther Dermatologic Therapy = Dermatol. Ther. Dermatologische Monatschrift = Dermatol Monatsschr Dermatologische Monatsschrift = Dermatol Monatsschr Dermatologische Monatsschrift = Dermatol. Monatsschr. Dermatologische Wochenschrift = Dermatol Wochenschr Dermatologische Wochenschrift = Dermatol. Wochenschr. Dermatology (Basel, Switzerland) = Dermatology Dermatology=Dermatology;; Dermatology = Dermatology Dermatology Laboratory and Clinical Research = Dermatol Lab Clin Re Dermatology Laboratory and Clinical Research = Dermatol. Lab. Clin. Re. Dermatology Nursing = Dermatol. Nurs. Dermatology nursing / Dermatology Nurses' Association = Dermatol Nurs Dermatology online journal = Dermatol Online J Dermatology Online Journal=Dermatol Online J;; Dermatology Online Journal = Dermatol. Online J. Dermatology Research Focus On Acne, Melanoma, and Psoriasis = Dermatol Lab Clin Re Dermatology Research Focus On Acne, Melanoma, and Psoriasis = Dermatol. Lab. Clin. Re. Dermatology Times = Dermatol. Times Dermatosen in Beruf Und Umwelt = Dermatos Ber Umwelt Dermatosen in Beruf Und Umwelt = Dermatos. Ber. Umwelt Dermatosen in Beruf und Umwelt (Occupational and Environmental Dermatoses) = Derm. Beruf Umwelt Dermatosen in Beruf und Umwelt. Occupation and environment = Derm Beruf Umwelt Dermatovenerologia = Dermatovenerologia Der Medizinische Sachverstandige = Med Sachverstand Der Nervenarzt = Nervenarzt Der Neue Pauly. Enzyklopädie der Antike = DNP Der Offentliche Gesundheitsdienst = Offentl Gesundheitsdienst Der Ophthalmologe : Zeitschrift der Deutschen Ophthalmologischen Gesellschaft = Ophthalmologe Der Orthopade = Orthopade Der Pathologe = Pathologe Der Praktische Arzt = Prakt Arzt Der Praktische Tierarzt = Prakt Tierarzt Der Radiologe = Radiologe Der Sportarzt vereinigt mit Sportmedizin = Sportarzt Ver Sportmed Der Tuberkulosearzt = Tuberkulosearzt Der Unfallchirurg = Unfallchirurg Der Urologe. Ausg. A = Urologe A Der Urologe. Ausg. B = Urologe B Der Urologe = Urologe Der Zahnarzt; Colloquium med. dent = Zahnarzt Der Zahntechniker. Le Mecanicien-dentiste = Zahntechniker (Basel) Desalination and Water Re-use : Proceedings of The Twelfth International Symposium, Vol 1 = Inst Chem E Desalination and Water Re-use : Proceedings of The Twelfth International Symposium, Vol 1 = Inst. Chem. E. Desalination and Water Re-use : Proceedings of The Twelfth International Symposium, Vol 3 = Inst Chem E Desalination and Water Re-use : Proceedings of The Twelfth International Symposium, Vol 3 = Inst. Chem. E. Desalination and Water Re-use, Vol 2 = Inst Chem E Desalination and Water Re-use, Vol 2 = Inst. Chem. E. Desalination and Water Re-use, Vol 4 = Inst Chem E Desalination and Water Re-use, Vol 4 = Inst. Chem. E. Desalination and Water Treatment = Desalin Water Treat Desalination and Water Treatment = Desalin. Water Treat. Desalination = Desalination Desalination: Methods, Costs and Technology = Agr Issues Policies Desalination: Methods, Costs and Technology = Agr. Issues. Policies. Desarrollo de base : revista de la Fundacion Interamericana = Desarro Base Desarrollo Economico = Desarro Econ Desarrollo Economico = Desarro. Econ. Desarrollo economico = Desarrollo Econ Desarrollo Económico=Desarrollo Econ. Desarrollo Economico-revista De Ciencias Sociales = Desarrollo Econ Desarrollo Economico-revista De Ciencias Sociales = Desarrollo Econ. Desarrollo rural en las Americas = Desarro Rural Amer Desarrollo y sociedad = Desarro Soc Descant = Descant Descartes and Regius = Stud Hist Idea Low Descartes and Regius = Stud. Hist. Idea. Low. Descent of Human Sex Ratio At Birth = Methods Ser Descent of Human Sex Ratio At Birth = Methods. Ser. Descentralizacion Para Satisfacer Necesidades Basicas: Una Guia Economica Para Profesionales = Invest Neg Hisp Lat Descentralizacion Para Satisfacer Necesidades Basicas: Una Guia Economica Para Profesionales = Invest. Neg. Hisp. Lat. Describing and Modeling Variation in Grammar = Trend Lin S Describing and Modeling Variation in Grammar = Trend. Lin. S. Describing and Modeling Variation in Grammar = Trends Linguist-stud Describing and Modeling Variation in Grammar = Trends. Linguist-stud. Description of The Low Latitude and Equatorial Ionosphere in The International Reference Ionosphere = Adv Space Res Description of The Low Latitude and Equatorial Ionosphere in The International Reference Ionosphere = Adv. Space. Res. Descriptive Adequacy of Early Modern English Grammars = Top Engl Linguist Descriptive Adequacy of Early Modern English Grammars = Top. Engl. Linguist. Deseret news (Salt Lake City, Utah : 1964) = Deseret News Desertification and Risk Analysis Using High and Medium Resolution Satellite Data = Nato Sci Peace Secur Desertification and Risk Analysis Using High and Medium Resolution Satellite Data = Nato. Sci. Peace. Secur. Desertification Combat and Food Safety: The Added Value of Camel Producers = Nato Sci Ser I Life Desertification Combat and Food Safety: The Added Value of Camel Producers = Nato. Sci. Ser. I. Life. Desertification control = Desertif Control Desertification in The Mediterranean Region. A Security Issue = Nato Sci Peace Secur Desertification in The Mediterranean Region. A Security Issue = Nato. Sci. Peace. Secur. Desider - A European Effort On Hybrid Rans-les Modelling = Notes Numer Fluid Me Desider - A European Effort On Hybrid Rans-les Modelling = Notes. Numer. Fluid. Me. Design Against Fracture and Failure = Mater Sci Found Design Against Fracture and Failure = Mater. Sci. Found. Design and Analysis of Distributed Embedded Systems = Int Fed Info Proc Design and Analysis of Distributed Embedded Systems = Int. Fed. Info. Proc. Design and Analysis of Experiments: Classical and Regression Approaches With Sas = Stat Textb Monogr Design and Analysis of Experiments: Classical and Regression Approaches With Sas = Stat. Textb. Monogr. Design and Analysis of Gauge R&r Studies: Making Decisions With Confidence Intervals in Random and Mixed Anova Models = Asa Siam Ser Stat Ap Design and Analysis of Gauge R&r Studies: Making Decisions With Confidence Intervals in Random and Mixed Anova Models = Asa. Siam. Ser. Stat. Ap. Design and Analysis of Learning Classifier Systems: A Probabilistic Approach = Stud Comput Intell Design and Analysis of Learning Classifier Systems: A Probabilistic Approach = Stud. Comput. Intell. Design and Analysis of Simulation Experiments = Int Ser Oper Res Man Design and Analysis of Simulation Experiments = Int. Ser. Oper. Res. Man. Design and Analysis of Vaccine Studies = Stat Biol Health Design and Analysis of Vaccine Studies = Stat. Biol. Health. Design and Application of Controlled Low-strength Materials (flowable Fill) = Am Soc Test Mater Design and Application of Controlled Low-strength Materials (flowable Fill) = Am. Soc. Test. Mater. Design and Application of Curves and Surfaces = Inst Math C Design and Application of Curves and Surfaces = Inst. Math. C. Design and Application of Hybrid Intelligent Systems = Fr Art Int Design and Application of Hybrid Intelligent Systems = Fr. Art. Int. Design and Application of Hybrid Intelligent Systems = Front Artif Intel Ap Design and Application of Hybrid Intelligent Systems = Front. Artif. Intel. Ap. Design and Construction of Earth Retaining Systems = Geotech Sp Design and Construction of Earth Retaining Systems = Geotech. Sp. Design and Control of Intelligent Robotic Systems = Stud Comput Intell Design and Control of Intelligent Robotic Systems = Stud. Comput. Intell. Design and Control of Structure of Advanced Carbon Materials for Enhanced Performance = Nato Adv Sci I E-app Design and Control of Structure of Advanced Carbon Materials for Enhanced Performance = Nato. Adv. Sci. I. E-app. Design and Destiny: Jewish and Christian Perspectives On Human Germline Modification = Basic Bioeth Design and Destiny: Jewish and Christian Perspectives On Human Germline Modification = Basic. Bioeth. Design and Engineering of Optical Systems Ii = Proc Spie Design and Engineering of Optical Systems Ii = Proc. Spie. Design and Engineering of Optical Systems Ii = P Soc Photo-opt Ins Design and Engineering of Optical Systems Ii = P. Soc. Photo-opt. Ins. Design and Engineering of Optical Systems = P Soc Photo-opt Ins Design and Engineering of Optical Systems = P. Soc. Photo-opt. Ins. Design and Fabrication of Planar Optical Waveguide Devices and Materials = Proc Spie Design and Fabrication of Planar Optical Waveguide Devices and Materials = Proc. Spie. Design and Fabrication of Planar Optical Waveguide Devices and Materials = P Soc Photo-opt Ins Design and Fabrication of Planar Optical Waveguide Devices and Materials = P. Soc. Photo-opt. Ins. Design and Implementation of Fully-integrated Inductive Dc-dc Converters in Standard Cmos = Analog Circ Sig Proc Design and Implementation of Fully-integrated Inductive Dc-dc Converters in Standard Cmos = Analog. Circ. Sig. Proc. Design and Implementation of Large Spatial Databases = Lect Notes Comput Sc Design and Implementation of Large Spatial Databases = Lect. Notes. Comput. Sc. Design and Implementation of Symbolic Computation Systems = Lect Notes Comput Sc Design and Implementation of Symbolic Computation Systems = Lect. Notes. Comput. Sc. Design and Management of Poverty Reduction Programs and Projects in Anglophone Africa = Edi Learn Resour Ser Design and Management of Poverty Reduction Programs and Projects in Anglophone Africa = Edi. Learn. Resour. Ser. Design and Manufacturing of Active Microsystems = Microtechnol Mems Design and Manufacturing of Active Microsystems = Microtechnol. Mems. Design and Manufacturing of Wdm Devices = P Soc Photo-opt Ins Design and Manufacturing of Wdm Devices = P. Soc. Photo-opt. Ins. Design and Microfabrication of Novel X-ray Optics Ii = P Soc Photo-opt Ins Design and Microfabrication of Novel X-ray Optics Ii = P. Soc. Photo-opt. Ins. Design and Microfabrication of Novel X-ray Optics = Proc Spie Design and Microfabrication of Novel X-ray Optics = Proc. Spie. Design and Microfabrication of Novel X-ray Optics = P Soc Photo-opt Ins Design and Microfabrication of Novel X-ray Optics = P. Soc. Photo-opt. Ins. Design and Modeling for Computer Experiments = Ch Crc Comp Sci Data Design and Modeling for Computer Experiments = Ch. Crc. Comp. Sci. Data. Design and Nature: Comparing Design in Nature With Science and Engineering = Design Nature Design and Nature = Design Nature Design and Nature = Des Nat Design and Nature = Des. Nat. Design and Nature Ii: Comparing Design in Nature With Science and Engineering = Design Nature Design and Nature Ii: Comparing Design in Nature With Science and Engineering = Des Nat Design and Nature Ii: Comparing Design in Nature With Science and Engineering = Des. Nat. Design and Nature Iii: Comparing Design in Nature With Science and Engineering = Wit Trans Ecol Envir Design and Nature Iii: Comparing Design in Nature With Science and Engineering = Wit. Trans. Ecol. Envir. Design and Nature Iv: Comparing Design in Nature With Science and Engineering = Wit Trans Ecol Envir Design and Nature Iv: Comparing Design in Nature With Science and Engineering = Wit. Trans. Ecol. Envir. Design and Nature V: Comparing Design in Nature With Science and Engineering = Wit Trans Ecol Envir Design and Nature V: Comparing Design in Nature With Science and Engineering = Wit. Trans. Ecol. Envir. Design and Operation of Power Systems With Large Amounts of Wind Power = Vtt Res Notes Design and Operation of Power Systems With Large Amounts of Wind Power = Vtt. Res. Notes. Design and Performance of Biometric System = Comput Sci Tech Appl Design and Performance of Biometric System = Comput. Sci. Tech. Appl. Design and Performance of Earth Retaining Structures = Geotech Sp Design and Performance of Earth Retaining Structures = Geotech. Sp. Design and Performance Validation of Phantoms Used in Conjunction With Optical Measurement of Tissue Ii = Proc Spie Design and Performance Validation of Phantoms Used in Conjunction With Optical Measurement of Tissue Ii = Proc. Spie. Design and Performance Validation of Phantoms Used in Conjunction With Optical Measurements of Tissue = P Soc Photo-opt Ins Design and Performance Validation of Phantoms Used in Conjunction With Optical Measurements of Tissue = P. Soc. Photo-opt. Ins. Design and Process Integration for Microelectronic Manufacturing Iii = Proc Spie Design and Process Integration for Microelectronic Manufacturing Iii = Proc. Spie. Design and Process Integration for Microelectronic Manufacturing Iii = P Soc Photo-opt Ins Design and Process Integration for Microelectronic Manufacturing Iii = P. Soc. Photo-opt. Ins. Design and Process Integration for Microelectronic Manufacturing Ii = Proc Spie Design and Process Integration for Microelectronic Manufacturing Ii = Proc. Spie. Design and Process Integration for Microelectronic Manufacturing Ii = P Soc Photo-opt Ins Design and Process Integration for Microelectronic Manufacturing Ii = P. Soc. Photo-opt. Ins. Design and Process Integration for Microelectronic Manufacturing Iv = Proc Spie Design and Process Integration for Microelectronic Manufacturing Iv = Proc. Spie. Design and Process Integration for Microelectronic Manufacturing Iv = P Soc Photo-opt Ins Design and Process Integration for Microelectronic Manufacturing Iv = P. Soc. Photo-opt. Ins. Design and Quality for Biomedical Technologies Iii = P Soc Photo-opt Ins Design and Quality for Biomedical Technologies Iii = P. Soc. Photo-opt. Ins. Design and Quality for Biomedical Technologies Ii = P Soc Photo-opt Ins Design and Quality for Biomedical Technologies Ii = P. Soc. Photo-opt. Ins. Design and Quality for Biomedical Technologies Iv = P Soc Photo-opt Ins Design and Quality for Biomedical Technologies Iv = P. Soc. Photo-opt. Ins. Design and Quality for Biomedical Technologies = P Soc Photo-opt Ins Design and Quality for Biomedical Technologies = P. Soc. Photo-opt. Ins. Design and Rehabilitation of Pavements 1998 = Transport Res Rec Design and Rehabilitation of Pavements 1998 = Transport. Res. Rec. Design and Rehabilitation of Pavements 2001 = Transport Res Rec Design and Rehabilitation of Pavements 2001 = Transport. Res. Rec. Design and Rehabilitation of Pavements 2002 = Transport Res Rec Design and Rehabilitation of Pavements 2002 = Transport. Res. Rec. Design and Safety Assessment for Floating Installations = Imare Conf Design and Safety Assessment for Floating Installations = Imare. Conf. Design and Use of Serious Games = Intell Syst Contr Au Design and Use of Serious Games = Intell. Syst. Contr. Au. Design and Use of Serious Games = Intel Syst Contr Aut Design and Use of Serious Games = Intel. Syst. Contr. Aut. Design, Automation and Test in Europe Conference and Exhibition, Vols 1 and 2, Proceedings = Des Aut Test Europe Design, Automation and Test in Europe Conference and Exhibition, Vols 1 and 2, Proceedings = Des. Aut. Test Europe Design Automation and Test in Europe Conference and Expo = Des Aut Test Europe Design Automation and Test in Europe Conference and Expo = Des. Aut. Test Europe Design, Automation and Test in Europe Conference and Expo = Des Aut Test Europe Design, Automation and Test in Europe Conference and Expo = Des. Aut. Test Europe Design Automation Conference Dac = Des Aut Con Design Automation Conference Dac = Des. Aut. Con. Design Automation Conference = Des Aut Con Design Automation Conference = Des. Aut. Con. Design Automation Conference - Proceedings 1997 = Des Aut Con Design Automation Conference - Proceedings 1997 = Des. Aut. Con. Design Automation for Embedded Systems = Des Autom Embed Syst Design Automation for Embedded Systems = Des. Autom. Embed. Syst. Design By Evolution: Advances in Evolutionary Design = Nat Comp Ser Design By Evolution: Advances in Evolutionary Design = Nat. Comp. Ser. Design, Characterization, and Packaging for Mems and Microelectronics Ii = Proc Spie Design, Characterization, and Packaging for Mems and Microelectronics Ii = Proc. Spie. Design, Characterization, and Packaging for Mems and Microelectronics Ii = P Soc Photo-opt Ins Design, Characterization, and Packaging for Mems and Microelectronics Ii = P. Soc. Photo-opt. Ins. Design, Characterization, and Packaging for Mems and Microelectronics = Proc Spie Design, Characterization, and Packaging for Mems and Microelectronics = Proc. Spie. Design, Characterization, and Packaging for Mems and Microelectronics = P Soc Photo-opt Ins Design, Characterization, and Packaging for Mems and Microelectronics = P. Soc. Photo-opt. Ins. Design = Design Design, Development, and Applications of Engineering Ceramics and Composites = Ceram Trans Design, Development, and Applications of Engineering Ceramics and Composites = Ceram. Trans. Designed Monomers and Polymers = Des Monomers Polym Designed Monomers and Polymers = Des. Monomers Polym. Design Engineering-london = Des Eng-london Design Engineering-london = Des. Eng-london. Designerly Ways of Knowing = Board Int Res Des Designerly Ways of Knowing = Board. Int. Res. Des. Designers' Forum: Design, Automation and Test in Europe Conference and Exhibition = Des Aut Test Europe Designers' Forum: Design, Automation and Test in Europe Conference and Exhibition = Des. Aut. Test Europe Designers Guide Book Series = Des Guide Book Ser Designers Guide Book Series = Des. Guide Book Ser. Designer's Guide to Jitter in Ring Oscillators = Des Guide Book Ser Designer's Guide to Jitter in Ring Oscillators = Des. Guide Book. Ser. Design, Fabrication, and Applications of Precision Plastic Optics = P Soc Photo-opt Ins Design, Fabrication, and Applications of Precision Plastic Optics = P. Soc. Photo-opt. Ins. Design, Fabrication, and Characterization of Photonic Devices Ii = Proc Spie Design, Fabrication, and Characterization of Photonic Devices Ii = Proc. Spie. Design, Fabrication, and Characterization of Photonic Devices Ii = P Soc Photo-opt Ins Design, Fabrication, and Characterization of Photonic Devices Ii = P. Soc. Photo-opt. Ins. Design, Fabrication and Characterization of Photonic Devices = Proc Spie Design, Fabrication and Characterization of Photonic Devices = Proc. Spie. Design, Fabrication and Characterization of Photonic Devices = P Soc Photo-opt Ins Design, Fabrication and Characterization of Photonic Devices = P. Soc. Photo-opt. Ins. Design for Emergence: Collaborative Social Play With Online and Location-based Media = Front Artif Intel Ap Design for Emergence: Collaborative Social Play With Online and Location-based Media = Front. Artif. Intel. Ap. Design for Manufacturability and Statistical Design: A Constructive Approach = Integr Circuit Syst Design for Manufacturability and Statistical Design: A Constructive Approach = Integr. Circuit. Syst. Design for Manufacturability and Yield for Nano-scale Cmos = Integr Circuit Syst Design for Manufacturability and Yield for Nano-scale Cmos = Integr. Circuit. Syst. Design for Manufacturability Through Design-process Integration Iii = Proc Spie Design for Manufacturability Through Design-process Integration Iii = Proc. Spie. Design for Manufacturability Through Design-process Integration Iii = P Soc Photo-opt Ins Design for Manufacturability Through Design-process Integration Iii = P. Soc. Photo-opt. Ins. Design for Manufacturability Through Design-process Integration Ii = Proc Spie Design for Manufacturability Through Design-process Integration Ii = Proc. Spie. Design for Manufacturability Through Design-process Integration Ii = P Soc Photo-opt Ins Design for Manufacturability Through Design-process Integration Ii = P. Soc. Photo-opt. Ins. Design for Manufacturability Through Design-process Integration Iv = Proc Spie Design for Manufacturability Through Design-process Integration Iv = Proc. Spie. Design for Manufacturability Through Design-process Integration Iv = P Soc Photo-opt Ins Design for Manufacturability Through Design-process Integration Iv = P. Soc. Photo-opt. Ins. Design for Manufacturability Through Design-process Integration = Proc Spie Design for Manufacturability Through Design-process Integration = Proc. Spie. Design for Manufacturability Through Design-process Integration = P Soc Photo-opt Ins Design for Manufacturability Through Design-process Integration = P. Soc. Photo-opt. Ins. Design for Manufacturability Through Design-process Integration V = Proc Spie Design for Manufacturability Through Design-process Integration V = Proc. Spie. Designing An Efficient Management System = Contrib Manag Sci Designing An Efficient Management System = Contrib. Manag. Sci. Designing Cathodic Protection Systems for Marine Structures and Vehicles = Am Soc Test Mater Designing Cathodic Protection Systems for Marine Structures and Vehicles = Am. Soc. Test. Mater. Designing Cooperative Systems - The Use of Theories and Models = Fr Art Int Designing Cooperative Systems - The Use of Theories and Models = Fr. Art. Int. Designing Cooperative Systems - The Use of Theories and Models = Front Artif Intel Ap Designing Cooperative Systems - The Use of Theories and Models = Front. Artif. Intel. Ap. Designing Correct Circuits = Ifip Trans A Designing Correct Circuits = Ifip. Trans. A. Designing Cost-effective Composites = Imeche Conf Trans Designing Cost-effective Composites = Imeche. Conf. Trans. Designing E-business Systems = Lect Notes Bus Inf Designing E-business Systems = Lect. Notes. Bus. Inf. Designing E-business Systems = Lect Notes Bus Inf P Designing E-business Systems = Lect. Notes. Bus. Inf. P. Designing for Change in Networked Learning Environments = Comput-supp Collab L Designing for Change in Networked Learning Environments = Comput-supp. Collab. L. Designing for Change in Networked Learning Environments = Com S Coll Learn Designing for Change in Networked Learning Environments = Com. S. Coll. Learn. Designing Functional Foods = Woodhead Food Ser Designing Functional Foods = Woodhead. Food. Ser. Designing High-performance Stiffened Structures = Imeche Sem Designing High-performance Stiffened Structures = Imeche. Sem. Designing History in East Asian Textbooks: Identity Politics and Transnational Aspirations = Rout Stud Edu Soc Designing History in East Asian Textbooks: Identity Politics and Transnational Aspirations = Rout. Stud. Edu. Soc. Designing, Implementing, and Managing Treatment Services for Individuals With Co-occurring Mental Health and Substance Use Disorders: Blueprints for Action = Haworth Addict Treat Designing, Implementing, and Managing Treatment Services for Individuals With Co-occurring Mental Health and Substance Use Disorders: Blueprints for Action = Haworth. Addict. Treat. Designing Information and Organizations With A Positive Lens = Adv Int Marketing Designing Information and Organizations With A Positive Lens = Adv. Int. Marketing. Designing Interfaces in Public Settings: Understanding The Role of The Spectator in Human-computer Interaction = Hum-comput Int-sprin Designing Interfaces in Public Settings: Understanding The Role of The Spectator in Human-computer Interaction = Hum-comput. Int-sprin. Designing Learning: From Module Outline to Effective Teaching = Key Guid Eff Teach H Designing Learning: From Module Outline to Effective Teaching = Key. Guid. Eff. Teach. H. Designing Mobile Service Systems, Second Edition = Res Des Ser Designing Mobile Service Systems, Second Edition = Res. Des. Ser. Designing of Interfacial Structures in Advanced Materials and Their Joints = Solid State Phenomen Designing of Interfacial Structures in Advanced Materials and Their Joints = Solid. State. Phenomen. Designing of Interfacial Structures in Advanced Materials and Their Joints = Sol St Phen Designing of Interfacial Structures in Advanced Materials and Their Joints = Sol. St. Phen. Designing, Processing and Properties of Advanced Engineering Materials, Pts 1 and 2 = Mater Sci Forum Designing, Processing and Properties of Advanced Engineering Materials, Pts 1 and 2 = Mater. Sci. Forum. Designing Reliable and Efficient Networks On Chips = Lect Notes Electr En Designing Reliable and Efficient Networks On Chips = Lect. Notes. Electr. En. Designing Safer Chemicals = Acs Sym Ser Designing Safer Chemicals = Acs. Sym. Ser. Designing Smart Homes: Role of Artificial Intelligence = Lect Notes Comput Sc Designing Smart Homes: Role of Artificial Intelligence = Lect. Notes. Comput. Sc. Designing The Grey Grid for Information Society = Gl Conference Ser Designing The Grey Grid for Information Society = Gl. Conference. Ser. Designing Ubiquitous Information Environments: Socio-technical Issues and Challenges = Int Fed Info Proc Designing Ubiquitous Information Environments: Socio-technical Issues and Challenges = Int. Fed. Info. Proc. Designing User Friendly Augmented Work Environments: From Meeting Rooms to Digital Collaborative Spaces = Comput Supp Coop Wor Designing User Friendly Augmented Work Environments: From Meeting Rooms to Digital Collaborative Spaces = Comput. Supp. Coop. Wor. Designing Video and Multimedia for Open and Flexible Learning = Open Flex Learn Ser Designing Video and Multimedia for Open and Flexible Learning = Open Flex. Learn. Ser. Design Issues = Des Issues Design Issues = Des. Issues Design Issues in Cscw = Comp Support Comp W Design Issues in Cscw = Comp. Support. Comp. W. Design Journal = Des J Design Journal = Des. J. Design Manuals = Des Man Design Manuals = Des. Man. Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = Proc Spie Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = Proc. Spie. Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = P Soc Photo-opt Ins Design, Manufacturing, and Testing of Micro- and Nano-optical Devices and Systems = P. Soc. Photo-opt. Ins. Design, Manufacturing, and Testing of Planar Optical Waveguide Devices = P Soc Photo-opt Ins Design, Manufacturing, and Testing of Planar Optical Waveguide Devices = P. Soc. Photo-opt. Ins. Design Methodology and Relationships With Science = Nato Adv Sci Inst Se Design Methodology and Relationships With Science = Nato. Adv. Sci. Inst. Se. Design Methodology for Rf Cmos Phase Locked Loops = Artech Hse Microw Li Design Methodology for Rf Cmos Phase Locked Loops = Artech. Hse. Microw. Li. Design Methods and Applications for Distributed Embedded Systems = Int Fed Info Proc Design Methods and Applications for Distributed Embedded Systems = Int. Fed. Info. Proc. Design, Modeling and Control of Laser Beam Optics = P Soc Photo-opt Ins Design, Modeling and Control of Laser Beam Optics = P. Soc. Photo-opt. Ins. Design, Modeling and Experiments of 3-dof Electromagnetic Spherical Actuators = Mech Mach Sci Design, Modeling and Experiments of 3-dof Electromagnetic Spherical Actuators = Mech. Mach. Sci. Design, Modeling and Simulation in Microelectronics = Proc Spie Design, Modeling and Simulation in Microelectronics = Proc. Spie. Design, Modeling and Simulation in Microelectronics = P Soc Photo-opt Ins Design, Modeling and Simulation in Microelectronics = P. Soc. Photo-opt. Ins. Design News = Design News Design News = Des News Design News = Des. News Design of Caspase Inhibitors As Potential Clinical Agents = Crc Enzym Inhib Ser Design of Caspase Inhibitors As Potential Clinical Agents = Crc. Enzym. Inhib. Ser. Design of Climate Policy = Cesifo Seminar Ser Design of Climate Policy = Cesifo. Seminar. Ser. Design of Computing Systems: Cognitive Considerations = Adv Hum Fact Ergon Design of Computing Systems: Cognitive Considerations = Adv. Hum. Fact. Ergon. Design of Computing Systems: Social and Ergonomic Considerations = Adv Hum Fact Ergon Design of Computing Systems: Social and Ergonomic Considerations = Adv. Hum. Fact. Ergon. Design of Cost-efficient Interconnect Processing Units: Spidergon Stnoc = Syst-chip Des Techno Design of Cost-efficient Interconnect Processing Units: Spidergon Stnoc = Syst-chip. Des. Techno. Design of Efficient Illumination Systems = P Soc Photo-opt Ins Design of Efficient Illumination Systems = P. Soc. Photo-opt. Ins. Design of High Voltage Xdsl Line Drivers in Standards Cmos = Analog Circ Sig Proc Design of High Voltage Xdsl Line Drivers in Standards Cmos = Analog. Circ. Sig. Proc. Design of Image Processing Embedded Systems Using Multidimensional Data Flow = Embed Syst Design of Image Processing Embedded Systems Using Multidimensional Data Flow = Embed. Syst. Design of Local Energy Supply Systems = Vdi Bericht Design of Local Energy Supply Systems = Vdi. Bericht. Design of Material, Organism, and Minds: Different Understandings of Design = X Media Publ Design of Material, Organism, and Minds: Different Understandings of Design = X. Media. Publ. Design of Observational Studies = Springer Ser Stat Design of Observational Studies = Springer. Ser. Stat. Design of Optical Instruments = P Soc Photo-opt Ins Design of Optical Instruments = P. Soc. Photo-opt. Ins. Design of Organic Solids = Top Curr Chem Design of Organic Solids = Top. Curr. Chem. Design of Structures 2001 = Transport Res Rec Design of Structures 2001 = Transport. Res. Rec. Design of Structures 2002 = Transport Res Rec Design of Structures 2002 = Transport. Res. Rec. Design of Structures 2003 = Transport Res Rec Design of Structures 2003 = Transport. Res. Rec. Design of Structures 2004 = Transport Res Rec Design of Structures 2004 = Transport. Res. Rec. Design of Structures 2005 = Transport Res Rec Design of Structures 2005 = Transport. Res. Rec. Design of Structures 2006 = Transport Res Rec Design of Structures 2006 = Transport. Res. Rec. Design of Synthetic Inhibitors of Thrombin = Adv Exp Med Biol Design of Synthetic Inhibitors of Thrombin = Adv. Exp. Med. Biol. Design of The Eurosystem's Monetary Policy Instruments = Contrib Econ Design of The Eurosystem's Monetary Policy Instruments = Contrib. Econ. Design of Ultra Wideband Antenna Matching Networks: Via Simplified Real Frequency Technique = Signals Commun Techn Design of Ultra Wideband Antenna Matching Networks: Via Simplified Real Frequency Technique = Signals. Commun. Techn. Design of Wireless Autonomous Datalogger Ic's = Springer Int Ser Eng Design of Wireless Autonomous Datalogger Ic's = Springer. Int. Ser. Eng. Design, Process Integration, and Characterization for Microelectronics = Proc Spie Design, Process Integration, and Characterization for Microelectronics = Proc. Spie. Design, Process Integration, and Characterization for Microelectronics = P Soc Photo-opt Ins Design, Process Integration, and Characterization for Microelectronics = P. Soc. Photo-opt. Ins. Design, Production and Placement of Self-consolidating Concrete = Rilem Bookser Design, Production and Placement of Self-consolidating Concrete = Rilem. Bookser. Design Quarterly = Design Quart Design Quarterly = Design Quart. Design, Reliability, and Maintenance for Railways = Imeche Sem Design, Reliability, and Maintenance for Railways = Imeche. Sem. Design Requirements Engineering: A Ten-year Perspective = Lect Notes Bus Inf Design Requirements Engineering: A Ten-year Perspective = Lect. Notes. Bus. Inf. Design Requirements Engineering: A Ten-year Perspective = Lect Notes Bus Inf P Design Requirements Engineering: A Ten-year Perspective = Lect. Notes. Bus. Inf. P. Design Research in Information Systems: Theory and Practice = Integr Ser Inform Sy Design Research in Information Systems: Theory and Practice = Integr. Ser. Inform. Sy. Design Research Now: Essays and Selected Projects = Board Int Res Des Design Research Now: Essays and Selected Projects = Board. Int. Res. Des. Design Science Planning = Des Sci Plan Design Science Planning = Des. Sci. Plan. Designs, Codes and Cryptography = Des. Codes Cryptogr. Designs Codes and Cryptography = Design Code Cryptogr Designs Codes and Cryptography = Design. Code. Cryptogr. Design, Selection, and Operation of Refrigerator and Heat Pump Compressors = Imeche Sem Design, Selection, and Operation of Refrigerator and Heat Pump Compressors = Imeche. Sem. Design, Simulation, and Fabrication of Optoelectronic Devices and Circuits = P Soc Photo-opt Ins Design, Simulation, and Fabrication of Optoelectronic Devices and Circuits = P. Soc. Photo-opt. Ins. Design Society Publication Ds = Des Soc Pub Ds Design Society Publication Ds = Des. Soc. Pub. Ds Design, Specification and Verification of Interactive Systems'98 = Spring Comp Sci Design, Specification and Verification of Interactive Systems'98 = Spring. Comp. Sci. Design, Specification and Verification of Interactive Systems'99 = Spring Comp Sci Design, Specification and Verification of Interactive Systems'99 = Spring. Comp. Sci. Design Speed, Operating Speed, and Sight Distance Issues = Transport Res Rec Design Speed, Operating Speed, and Sight Distance Issues = Transport. Res. Rec. Design Studies = Design Stud Design Studies = Design Stud. Design Studies = Des Stud Design Studies = Des. Stud. Design, Synthesis and Characterization of New Supramolecular Architectures = Springer Theses-reco Design, Synthesis and Characterization of New Supramolecular Architectures = Springer. Theses-reco. Design, Test, and Microfabrication of Mems and Moems, Pts 1 and 2 = Proc Spie Design, Test, and Microfabrication of Mems and Moems, Pts 1 and 2 = Proc. Spie. Design, Test, and Microfabrication of Mems and Moems, Pts 1 and 2 = P Soc Photo-opt Ins Design, Test, and Microfabrication of Mems and Moems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Design,test Integration, and Packaging of Mems/moems 2001 = Proc Spie Design,test Integration, and Packaging of Mems/moems 2001 = Proc. Spie. Design,test Integration, and Packaging of Mems/moems 2001 = P Soc Photo-opt Ins Design,test Integration, and Packaging of Mems/moems 2001 = P. Soc. Photo-opt. Ins. Design, Test, Integration, and Packaging of Mems/moems 2002 = Proc Spie Design, Test, Integration, and Packaging of Mems/moems 2002 = Proc. Spie. Design, Test, Integration, and Packaging of Mems/moems 2002 = P Soc Photo-opt Ins Design, Test, Integration, and Packaging of Mems/moems 2002 = P. Soc. Photo-opt. Ins. Design, Test, Integration, and Packaging of Mems/moems, Proceedings = P Soc Photo-opt Ins Design, Test, Integration, and Packaging of Mems/moems, Proceedings = P. Soc. Photo-opt. Ins. Design Thinking: Understand - Improve - Apply = Underst Innov Design Thinking: Understand - Improve - Apply = Underst. Innov. Desire and Motivation in Indian Philosophy = Routl Hindu Stud Ser Desire and Motivation in Indian Philosophy = Routl. Hindu. Stud. Ser. Desired Future Conditions for Pinon-juniper Ecosystems = Usda Rocky Desired Future Conditions for Pinon-juniper Ecosystems = Usda. Rocky. Desired Future Conditions for Southwestern Riparian Ecosystems: Bringing Interests and Concerns Together = Usda Rocky Desired Future Conditions for Southwestern Riparian Ecosystems: Bringing Interests and Concerns Together = Usda. Rocky. Desire Lines: Space, Memory and Identity in The Post-apartheid City = Architext Desire Lines: Space, Memory and Identity in The Post-apartheid City = Architext. Desmopressin in Bleeding Disorders = Nato Adv Sci Inst Se Desmopressin in Bleeding Disorders = Nato. Adv. Sci. Inst. Se. Desmos = Desmos Destiny, The Inward Quest, Temporality and Life = Analecta Husserl Destiny, The Inward Quest, Temporality and Life = Analecta. Husserl. Destructive Organizational Communication: Processes, Consequences, and Constructive Ways of Organizing = Commun Ser Destructive Organizational Communication: Processes, Consequences, and Constructive Ways of Organizing = Commun. Ser. Desulphurisation 2 = Inst Chem E Desulphurisation 2 = Inst. Chem. E. Desulphurisation 3 = Inst Chem E Desulphurisation 3 = Inst. Chem. E. Detail Practice = Detail Pract Detail Practice = Detail Pract. Detecting Allergens in Food = Woodhead Food Ser Detecting Allergens in Food = Woodhead. Food Ser. Detection and Diagnosis of Stiction in Control Loops: State of The Art and Advanced Methods = Adv Ind Control Detection and Diagnosis of Stiction in Control Loops: State of The Art and Advanced Methods = Adv. Ind. Control Detection and Dynamics of Transiting Exoplanets = Epj Web Conf Detection and Dynamics of Transiting Exoplanets = Epj. Web. Conf. Detection and Remediation Technologies for Mines and Minelike Targets Iii, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Ii = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Ii = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Iv, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Iv, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Iv, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Ix, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Ix, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Ix, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Ix, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Viii, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Viii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Vii, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Vii, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Vii, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Vii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Vi, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Vi, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Vi, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Vi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets V, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets V, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets V, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Xii = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Xii = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Xii = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Xii = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets Xi, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets Xi, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets Xi, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets Xi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Remediation Technologies for Mines and Minelike Targets X, Pts 1 and 2 = Proc Spie Detection and Remediation Technologies for Mines and Minelike Targets X, Pts 1 and 2 = Proc. Spie. Detection and Remediation Technologies for Mines and Minelike Targets X, Pts 1 and 2 = P Soc Photo-opt Ins Detection and Remediation Technologies for Mines and Minelike Targets X, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xiii = Proc Spie Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xiii = Proc. Spie. Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xiii = P Soc Photo-opt Ins Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xiii = P. Soc. Photo-opt. Ins. Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xvi = Proc Spie Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xvi = Proc. Spie. Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xv = Proc Spie Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xv = Proc. Spie. Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xv = P Soc Photo-opt Ins Detection and Sensing of Mines, Explosive Objects, and Obscured Targets Xv = P. Soc. Photo-opt. Ins. Detection and Treatment of Mineral Nutrition Problems in Grazing Sheep = Aciar Mg S Detection and Treatment of Mineral Nutrition Problems in Grazing Sheep = Aciar. Mg. S. Detection, Assessment, Diagnosis and Monitoring Caries = Monogr Oral Sci Detection, Assessment, Diagnosis and Monitoring Caries = Monogr. Oral. Sci. Detection of and Construction At The Soil/rock Interface = Geotech Sp Detection of and Construction At The Soil/rock Interface = Geotech. Sp. Detection of Bacteria, Viruses, Parasites and Fungi: Bioterrorism Prevention = Nato Sci Peace Sec A Detection of Bacteria, Viruses, Parasites and Fungi: Bioterrorism Prevention = Nato. Sci. Peace. Sec. A. Detection of Biological Agents for The Prevention of Bioterrorism = Nato Sci Peace Sec A Detection of Biological Agents for The Prevention of Bioterrorism = Nato. Sci. Peace. Sec. A. Detection of Bulk Explosives: Advanced Techniques Against Terrorism = Nato Sci Ser Ii Math Detection of Bulk Explosives: Advanced Techniques Against Terrorism = Nato. Sci. Ser. Ii. Math. Detection of Cancer Predisposition : Laboratory Approaches = Birth Def Detection of Cancer Predisposition : Laboratory Approaches = Birth. Def. Detection of Explosives and Landmines: Methods and Field Experiences = Nato Sci Ser Ii Math Detection of Explosives and Landmines: Methods and Field Experiences = Nato. Sci. Ser. Ii. Math. Detection of Intrusions and Malware, and Vulnerability Assessment = Lect Notes Comput Sc Detection of Intrusions and Malware, and Vulnerability Assessment = Lect. Notes. Comput. Sc. Detection of Intrusions and Malware, and Vulnerability Assessment, Proceedings = Lect Notes Comput Sc Detection of Intrusions and Malware, and Vulnerability Assessment, Proceedings = Lect. Notes. Comput. Sc. Detection of Intrusions and Malware & Vulnerability Assessment, Proceedings = Lect Notes Comput Sc Detection of Intrusions and Malware & Vulnerability Assessment, Proceedings = Lect. Notes. Comput. Sc. Detection of Liquid Explosives and Flammable Agents in Connection With Terrorism = Nato Science Peace S Detection of Liquid Explosives and Flammable Agents in Connection With Terrorism = Nato. Science. Peace. S. Detection of Liquid Explosives and Flammable Agents in Connection With Terrorism = Nato Sci Peace Sec B Detection of Liquid Explosives and Flammable Agents in Connection With Terrorism = Nato. Sci. Peace. Sec. B. Detection Technologies for Mines and Minelike Targets = P Soc Photo-opt Ins Detection Technologies for Mines and Minelike Targets = P. Soc. Photo-opt. Ins. Detectors and Associated Signal Processing = Proc Spie Detectors and Associated Signal Processing = Proc. Spie. Detectors and Associated Signal Processing = P Soc Photo-opt Ins Detectors and Associated Signal Processing = P. Soc. Photo-opt. Ins. Detectors and Imaging Devices: Infrared, Focal Plane, Single Photon = P Soc Photo-opt Ins Detectors and Imaging Devices: Infrared, Focal Plane, Single Photon = P. Soc. Photo-opt. Ins. Detectors, Focal Plane Arrays, and Applications = P Soc Photo-opt Ins Detectors, Focal Plane Arrays, and Applications = P. Soc. Photo-opt. Ins. Detectors, Focal Plane Arrays, and Imaging Devices Ii = P Soc Photo-opt Ins Detectors, Focal Plane Arrays, and Imaging Devices Ii = P. Soc. Photo-opt. Ins. Detectors for Crystallography and Diffraction Studies At Synchrotron Sources = P Soc Photo-opt Ins Detectors for Crystallography and Diffraction Studies At Synchrotron Sources = P. Soc. Photo-opt. Ins. Determinacy of Long Games = Degruyter Ser Log Ap Determinacy of Long Games = Degruyter. Ser. Log. Ap. Determinantal Ideals = Prog Math Determinantal Ideals = Prog. Math. Determinate World: Kant and Helmholtz On The Physical Meaning of Geometry = Quellen Stud Philos Determinate World: Kant and Helmholtz On The Physical Meaning of Geometry = Quellen. Stud. Philos. Determination of Geophysical Parameters From Space = Sussp Proc Determination of Geophysical Parameters From Space = Sussp. Proc. Determination of The Geoid = Iag Symp Determination of The Geoid = Iag. Symp. Determination Verbale En Anglais: Approche Linguistique Et Didactique Du Commentaire = Interlangues Determination Verbale En Anglais: Approche Linguistique Et Didactique Du Commentaire = Interlangues. Determining Mycotoxins and Mycotoxigenic Fungi in Food and Feed = Woodhead Publ Food S Determining Mycotoxins and Mycotoxigenic Fungi in Food and Feed = Woodhead. Publ. Food S. Determining Nanoscale Physical Properties of Materials By Microscopy and Spectroscopy = Mater Res Soc Symp P Determining Nanoscale Physical Properties of Materials By Microscopy and Spectroscopy = Mater. Res. Soc. Symp. P. Determining Project Requirements = Esi Int Proj Manag S Determining Project Requirements = Esi. Int. Proj. Manag. S. Determining Thresholds of Complete Synchronization, and Application = World Sci Ser Nonlin Determining Thresholds of Complete Synchronization, and Application = World. Sci. Ser. Nonlin. Deterministic and Statistical Methods in Machine Learning = Lect Notes Artif Int Deterministic and Statistical Methods in Machine Learning = Lect. Notes. Artif. Int. Deterministic Chaos in General Relativity = Nato Adv Sci Inst Se Deterministic Chaos in General Relativity = Nato. Adv. Sci. Inst. Se. Deterministic Extraction From Weak Random Sources = Monogr Theor Comput Deterministic Extraction From Weak Random Sources = Monogr. Theor. Comput. Deterministic Solvers for The Boltzmann Transport Equation = Comp Microelectron Deterministic Solvers for The Boltzmann Transport Equation = Comp. Microelectron. Deterrence in The Middle East: Where Theory and Practice Converge = Jcss Study Deterrence in The Middle East: Where Theory and Practice Converge = Jcss. Study. Deterring International Terrorism and Rogue States = Contemp Secur Stud Deterring International Terrorism and Rogue States = Contemp. Secur. Stud. DE; the journal of dental engeering = DE J Dent Eng Detroit College of Law review = Detroit Coll Law Rev Detroit dental bulletin = Detroit Dent Bull Detroit Dental Bulletin = Detroit Dent. Bull. Detroit in perspective = Detroit Perspect Deuterocanonical and Cognate Literature Studies = Deuter Cogn Lit Stud Deuterocanonical and Cognate Literature Studies = Deuter. Cogn. Lit. Stud. Deutsche Akademie der Naturforscher Leopoldina = Nova Acta Leopoldina (N.F.) Deutsche Apotheker Zeitung = Dtsch. Apoth. Ztg. Deutsche Apotheker-Zeitung = Dtsch Apoth Ztg Deutsche Aussenpolitik = Dtsch Aussenpolit Deutsche Baumschule = Dtsch. Baumsch. Deutsche Entomologische Zeitschrift = Deut Entomol Z Deutsche Entomologische Zeitschrift = Deut. Entomol. Z. Deutsche Gesellschaft Fur Zerstorungsfreie Prufung E.v. - Conference Volume = Dgzfp Ber Deutsche Gesellschaft Fur Zerstorungsfreie Prufung E.v. - Conference Volume = Dgzfp. Ber. Deutsche Gesundheitspolitik = Dtsch Gesundheitspolit Deutsche Gesundheitswesen = Dtsch. Gesundheitsw. Deutsche Gesundheitswesen = Dtsch. Gesundheitswes. Deutsche Gesundheitswesen-zeitschrift Fur Klinische Medizin = Deut Gesundheitswes Deutsche Gesundheitswesen-zeitschrift Fur Klinische Medizin = Deut. Gesundheitswes. Deutsche gewässerkundliche Mitteilungen = Dtsch. gewässerkdl. Mitt. Deutsche Hochschulschriften = Deutsche Hochschulschrift. Deutsche Hydrographische Zeitschrift = Dtsch. Hydrogr. Z. Deutsche Krankenpflegezeitschrift = Dtsch Krankenpflegez Deutsche Krankenpflegezeitschrift = Dtsch. Krankenpflegez. Deutsche Kunst Und Denkmalpflege = Deut Kunst Denkmalpf Deutsche Kunst Und Denkmalpflege = Deut. Kunst Denkmalpf. Deutsche Kunst und Denkmalpflege = DKuDenkmPfl Deutsche Lebensmittel-rundschau = Deut Lebensm-rundsch Deutsche Lebensmittel-rundschau = Deut. Lebensm-rundsch. Deutsche Lebensmittel-Rundschau = Dtsch. Lebensm.-Rundsch. Deutsche Lebensmittel-Rundschau : Zeitschrift fur Lebensmittelkunde und Lebensmittelrecht = Dtsch Lebensmitt Rundsch Deutsche Literaturzeitung für Kritik der internationalen Wissenschaft = DLZ Deutsche Literaturzeitung für Kritik der internationalen Wissenschaft = DLZ Deutsche medizinische Wochenschrift (1946) = Dtsch Med Wochenschr Deutsche Medizinische Wochenschrift = Deut Med Wochenschr Deutsche Medizinische Wochenschrift = Deut. Med. Wochenschr. Deutsche Medizinische Wochenschrift=Dtsch Med Wochenschr;; Deutsche Medizinische Wochenschrift = Dtsch. Med. Wochenschr. Deutsche Rentenversicherung = Dtsch Rentenversicher Deutscher Gesundheitskalender = Dtsch Gesundheit Deutsches Archiv Fur Klinische Medizin = Deut Arch Klin Med Deutsches Archiv Fur Klinische Medizin = Deut. Arch. Klin. Med. Deutsches Archiv fur klinische Medizin = Dtsch Arch Klin Med Deutsches Archiv fur Klinische Medizin = Dtsch. Arch. Klin. Med. Deutsches Arzteblatt = Dtsch Arztebl Deutsches Arzteblatt International = Dtsch Arztebl Int Deutsches Arzteblatt International = Dtsch. Arztebl. Int. Deutsche Schwesternzeitung = Dtsch Schwesternztg Deutsche Schwesternzeitung = Dtsch. Schwesternztg. Deutsches Dante-Jahrbuch = DDJ Deutsches Jahrbuch fur Volkskunde = Dtsch Jahrb Volkskd Deutsches medizinisches Journal = Dtsch Med J Deutsches Medizinisches Journal = Dtsch. Med. J. Deutsche Sprache = Deut Sprache Deutsche Sprache = Deut. Sprache Deutsches Schiffahrtsarchiv = Dtsch Schiffahrtsarch Deutsche Stiftung Fur Internationale Entwicklung = Dtsch Stift Int Entw Deutsche Stiftung Fur Internationale Entwicklung = Dtsch. Stift. Int. Entw. Deutsche Stomatologie (Berlin, Germany : 1990) = Dtsch Stomatol Deutsche Stomatologie = Dtsch Stomatol Deutsche Stomatologie = Dtsch. Stomatol. Deutsches Zentralblatt fur Krankenpflege = Dtsch Zentralbl Krankenpfl Deutsches Zentralblatt fur Krankenpflege = Dtsch. Zentralbl. Krankenpfl. Deutsche Tierarztliche Wochenschrift = Deut Tierarztl Woch Deutsche Tierarztliche Wochenschrift = Deut. Tierarztl. Woch. Deutsche tierarztliche Wochenschrift = Dtsch Tierarztl Wochenschr Deutsche Tierarztliche Wochenschrift = Dtsch. Tierarztl. Wochenschr. Deutsche Vierteljahrsschrift Fur Literaturwissenschaft Und Geistesgeschichte = Deut Vier Lit Geist Deutsche Vierteljahrsschrift Fur Literaturwissenschaft Und Geistesgeschichte = Deut. Vier. Lit. Geist. Deutsche Vierteljahrsschrift fur Literaturwissenschaft und Geistesgeschichte = Dtsch Vierteljahresschr Litt Wiss Geistesgesch Deutsche Zahnarztliche Zeitschrift = Deut Zahnaerztl Z Deutsche Zahnarztliche Zeitschrift = Deut. Zahnaerztl. Z. Deutsche zahnarztliche Zeitschrift = Dtsch Zahnarztl Z Deutsche Zahnarztliche Zeitschrift = Dtsch. Zahnarztl. Z. Deutsche Zahn-, Mund-, und Kieferheilkunde mit Zentralblatt = Dtsch Zahn Mund Kieferheilkd Zentralbl Deutsche Zahn-, Mund-, und Kieferheilkunde mit Zentralblatt = Dtsch. Zahn Mund Kieferheilkd. Zentralbl. Deutsche Zahn-, Mund-, und Kieferheilkunde mit Zentralblatt fur die gesamte Zahn-, Mund-, und Kieferheilkunde = Dtsch Zahn Mund Kieferheilkd Zentralbl Gesamte Deutsche Zahn-, Mund- und Kieferheilkunde mit Zentralblatt fur die Gesamte Zahn-, Mund- und Kieferheilkunde = Dtsch. Zahn Mund Kieferheilkd. Zentralbl. Gesamte Deutsche Zeitschrift Fur Die Gesamte Gerichtliche Medizin = Deut Z Ges Geric Med Deutsche Zeitschrift Fur Die Gesamte Gerichtliche Medizin = Deut. Z. Ges. Geric. Med. Deutsche Zeitschrift fur die gesamte gerichtliche Medizin = Dtsch Z Gesamte Gerichtl Med Deutsche Zeitschrift fur die Gesamte Gerichtliche Medizin = Dtsch. Z. Gesamte Gerichtl. Med. Deutsche Zeitschrift fur Mund-, Kiefer- und Gesichts-Chirurgie = Dtsch Z Mund Kiefer Gesichtschir Deutsche Zeitschrift fur Mund-, Kiefer-, und Gesichts-Chirurgie = Dtsch. Z. Mund Kiefer Gesichtschir. Deutsche Zeitschrift fur Nervenheilkunde = Dtsch Z Nervenheilkd Deutsche Zeitschrift fur Nervenheilkunde = Dtsch. Z. Nervenheilkd. Deutsche Zeitschrift Fur Nervenheilkunde = Dtsch Z Nervenheilkd Deutsche Zeitschrift Fur Nervenheilkunde = Dtsch. Z. Nervenheilkd. Deutsche Zeitschrift Fur Philosophie = Deut Z Philos Deutsche Zeitschrift Fur Philosophie = Deut. Z. Philos. Deutsche Zeitschrift fur Philosophie = Dtsch Z Philos Deutsche Zeitschrift Fur Sportmedizin = Deut Z Sportmed Deutsche Zeitschrift Fur Sportmedizin = Deut. Z. Sportmed. Deutsche Zeitschrift fur Sportmedizin = Dtsch Z Sportmed Deutsche Zeitschrift fur Sportmedizin = Dtsch. Z. Sportmed. Deutsche Zeitschrift fur Verdauungs- und Stoffwechselkrankheiten = Dtsch Z Verdau Stoffwechselkr Deutsche Zeitschrift fur Verdauungs- und Stoffwechselkrankheiten = Dtsch. Z. Verdau. Stoffwechselkr. Deutschland Archiv = Dtschl Arch Developing and Growing The Business - Freight = Imeche Sem Developing and Growing The Business - Freight = Imeche. Sem. Developing and Growing The Business - Passenger = Imeche Sem Developing and Growing The Business - Passenger = Imeche. Sem. Developing and Infrastructure for Mobile and Wireless Systems = Lect Notes Comput Sc Developing and Infrastructure for Mobile and Wireless Systems = Lect. Notes. Comput. Sc. Developing China: Land, Politics and Social Conditions = Routl Contemp China Developing China: Land, Politics and Social Conditions = Routl. Contemp. China. Developing Concepts in Applied Intelligence = Stud Comput Intell Developing Concepts in Applied Intelligence = Stud. Comput. Intell. Developing Contrastive Pragmatics: Interlanguage and Cross-cultural Perspectives = Stud Lang Acquis Developing Contrastive Pragmatics: Interlanguage and Cross-cultural Perspectives = Stud. Lang. Acquis. Developing Countries and Global Trade Negotiations = Rout Adv Int Rel Glo Developing Countries and Global Trade Negotiations = Rout. Adv. Int. Rel. Glo. Developing Countries and The Doha Development Agenda of The Wto = Routl Stud Mod World Developing Countries and The Doha Development Agenda of The Wto = Routl. Stud. Mod. World. Developing Countries = Transport Res Rec Developing Countries = Transport. Res. Rec. Developing Country Debt and Economic Performance, Vol 3 = Nat Bur Ec Developing Country Debt and Economic Performance, Vol 3 = Nat. Bur. Ec. Developing Economies = Dev Econ Developing Economies = Dev. Econ. Developing Economies=Developing Economies Developing Economies in Transition, Vol 1 = World B Dis Developing Economies in Transition, Vol 1 = World. B. Dis. Developing Economies in Transition, Vol 2 = World B Dis Developing Economies in Transition, Vol 2 = World. B. Dis. Developing Economies in Transition, Vol 3 = World B Dis Developing Economies in Transition, Vol 3 = World. B. Dis. Developing Industrial Case-based Reasoning Applications, 2nd Edition = Lect Notes Artif Int Developing Industrial Case-based Reasoning Applications, 2nd Edition = Lect. Notes. Artif. Int. Developing Industrial Case-based Reasoning Applications = Lect Notes Artif Int Developing Industrial Case-based Reasoning Applications = Lect. Notes. Artif. Int. Developing Knowledge and Value in Management Consulting = Res Manag Developing Knowledge and Value in Management Consulting = Res. Manag. Developing Language Learner: An Introduction to Exploratory Practice = Res Pract Appl Lingu Developing Language Learner: An Introduction to Exploratory Practice = Res. Pract. Appl. Lingu. Developing Learning Professionals: Integrating Experiences in University and Practice Settings = Prof Pract-based Lea Developing Learning Professionals: Integrating Experiences in University and Practice Settings = Prof. Pract-based. Lea. Developing Multi-database Mining Applications = Adv Inform Knowl Pro Developing Multi-database Mining Applications = Adv. Inform. Knowl. Pro. Developing Successful Leadership = Stud Educ Leadersh Developing Successful Leadership = Stud. Educ. Leadersh. Developing The Future - The Inaugural Young Professionals Conference = Australas I Min Met Developing The Future - The Inaugural Young Professionals Conference = Australas. I. Min. Met. Developing Transputer Applications ( Oug 11 ) = Occam Us Gr Developing Transputer Applications ( Oug 11 ) = Occam. Us. Gr. Developing World and State Education = Routl Stud Educ Neol Developing World and State Education = Routl. Stud. Educ. Neol. Developing world bioethics = Dev World Bioeth Developing World Bioethics = Dev World Bioeth Developing World Bioethics = Dev. World Bioeth. Developing Written Karelian = Stud Lang-finland Developing Written Karelian = Stud. Lang-finland. Developing Your Teaching: Ideas, Insight and Action = Key Guid Eff Teach H Developing Your Teaching: Ideas, Insight and Action = Key. Guid. Eff. Teach. H. Development Aid: A Fresh Look = Stud Dev Econ Policy Development Aid: A Fresh Look = Stud. Dev. Econ. Policy. Developmental and Clinical Studies = Adolescent Psychiat Developmental and Clinical Studies = Adolescent. Psychiat. Developmental and comparative immunology = Dev Comp Immunol Developmental and Comparative Immunology=Dev Comp Immunol;; Developmental and Comparative Immunology = Dev Comp Immunol Developmental and Comparative Immunology = Dev. Comp. Immunol. Developmental Behavioral Neuroscience = Minn Sym Child Psych Developmental Behavioral Neuroscience = Minn. Sym. Child. Psych. Developmental biology = Dev Biol Developmental Biology=Dev Biol;; Developmental Biology = Dev Biol Developmental Biology = Dev. Biol. Developmental biology (New York, N.Y. : 1985) = Dev Biol (N Y 1985) Developmental Biology (San Diego, CA, United States) = Dev. Biol. (San Diego, CA, U. S.) Developmental Brain Dysfunction = Dev Brain Dysfunct Developmental Brain Dysfunction = Dev. Brain Dysfunct. Developmental Brain Research = Dev Brain Res Developmental Brain Research = Dev. Brain Res. Developmental cell = Dev Cell Developmental Cell = Dev Cell Developmental Cell = Dev. Cell Developmental Cognitive Neuroscience = Dev Cogn Neurosci Developmental Cognitive Neuroscience = Dev. Cogn. Neurosci. Developmental Disabilities Research Reviews = Dev Disabil Res Rev Developmental Disabilities Research Reviews = Dev. Disabil. Res. Rev. Developmental dynamics : an official publication of the American Association of Anatomists = Dev Dyn Developmental Dynamics=Dev Dyn;; Developmental Dynamics = Dev. Dyn. Developmental Dynamics = Dev Dynam Developmental Dynamics = Dev. Dynam. Developmental Endocrinology = Front Endocrinol Developmental Endocrinology = Front. Endocrinol. Developmental Endocrinology = Serono Sym Developmental Endocrinology = Serono. Sym. Developmental Entrepreneurship: Adversity, Risk, and Isolation = Int Res Bus Discipl Developmental Entrepreneurship: Adversity, Risk, and Isolation = Int. Res. Bus. Discipl. Developmental genetics = Dev Genet Developmental Genetics=Dev Genet;; Developmental Genetics = Dev Genet Developmental Genetics = Dev. Genet. Developmental Genetics of Plant-microbe Symbioses = Bot Res Pract Developmental Genetics of Plant-microbe Symbioses = Bot. Res. Pract. Developmental immunology = Dev Immunol Developmental Immunology=Dev Immunol;; Developmental Immunology = Dev Immunol Developmental Immunology = Dev. Immunol. Developmental Mechanisms of Disease in The Newborn = Ross C Ped Developmental Mechanisms of Disease in The Newborn = Ross. C. Ped. Developmental medicine and child neurology = Dev Med Child Neurol Developmental Medicine and Child Neurology=Dev Med Child Neurol;; Developmental Medicine and Child Neurology = Dev Med Child Neurol Developmental Medicine and Child Neurology = Dev. Med. Child Neurol. Developmental medicine and child neurology. Supplement = Dev Med Child Neurol Suppl Developmental Medicine and Child Neurology. Supplement=Dev Med Child Neurol Suppl;; Developmental Medicine and Child Neurology. Supplement = Dev. Med. Child Neurol. Suppl. Developmental neurobiology = Dev Neurobiol Developmental Neurobiology = Dev Neurobiol Developmental Neurobiology = Dev. Neurobiol. Developmental Neurocognition: Speech and Face Processing in The First Year of Life = Nato Adv Sci Inst Se Developmental Neurocognition: Speech and Face Processing in The First Year of Life = Nato. Adv. Sci. Inst. Se. Developmental Neuropathology of Schizophrenia = Nato Adv Sci I A-lif Developmental Neuropathology of Schizophrenia = Nato. Adv. Sci. I. A-lif. Developmental neuropsychology = Dev Neuropsychol Developmental Neuropsychology = Dev Neuropsychol Developmental Neuropsychology = Dev. Neuropsychol. Developmental neurorehabilitation = Dev Neurorehabil Developmental Neurorehabilitation = Dev Neurorehabil Developmental Neurorehabilitation = Dev. Neurorehabil. Developmental Neuroscience (Basel, Switzerland) = Dev. Neurosci. (Basel, Switz.) Developmental neuroscience = Dev Neurosci Developmental Neuroscience=Dev Neurosci;; Developmental Neuroscience = Dev. Neurosci. Developmental Neuroscience = Dev Neurosci-basel Developmental Neuroscience = Dev. Neurosci-basel. Developmental Neurotoxicity of Pbdes, Mechanisms and Implications = Neurosci Res Prog Se Developmental Neurotoxicity of Pbdes, Mechanisms and Implications = Neurosci. Res. Prog. Se. Developmental Patterning of The Vertebrate Limb = Nato Adv Sci I A-lif Developmental Patterning of The Vertebrate Limb = Nato. Adv. Sci. I. A-lif. Developmental Perspectives On Motivation = Nebr Sym Motiv Developmental Perspectives On Motivation = Nebr. Sym. Motiv. Developmental pharmacology and therapeutics = Dev Pharmacol Ther Developmental Pharmacology and Therapeutics = Dev. Pharmacol. Ther. Developmental Pharmacology and Therapeutics = Dev Pharmacol Therap Developmental Pharmacology and Therapeutics = Dev. Pharmacol. Therap. Developmental Psychobiology / = Ann Ny Acad Sci Developmental Psychobiology / = Ann. Ny. Acad. Sci. Developmental psychobiology = Dev Psychobiol Developmental Psychobiology=Dev Psychobiol;; Developmental Psychobiology = Dev Psychobiol Developmental Psychobiology = Dev. Psychobiol. Developmental psychology = Dev Psychol Developmental Psychology=Dev Psychol;; Developmental Psychology = Dev Psychol Developmental Psychology = Dev. Psychol. Developmental Psychopathology At School = Dev Psychopathol Sch Developmental Psychopathology At School = Dev. Psychopathol. Sch. Developmental Psychopathology = Child Y Psy Developmental Psychopathology = Child. Y. Psy. Developmental Review = Dev Rev Developmental Review = Dev. Rev. Developmental review : DR = Dev Rev Developmental Science = Developmental Sci Developmental Science = Developmental Sci. Developmental science = Dev Sci Developmental Theory and Language Disorders = Trends Lang Acquis R Developmental Theory and Language Disorders = Trends. Lang. Acquis. R. Developmental Vascular Biology = Curr Top Dev Biol Developmental Vascular Biology = Curr. Top. Dev. Biol. Development and Application of Computer Techniques to Environmental Studies = Environ St Development and Application of Computer Techniques to Environmental Studies = Environ. St. Development and Application of Computer Techniques to Environmental Studies Viii = Environ St Development and Application of Computer Techniques to Environmental Studies Viii = Environ. St. Development and Application of Computer Techniques to Environmental Studies X = Environ St Development and Application of Computer Techniques to Environmental Studies X = Environ. St. Development and Application of Nanofiber Materials = Nanotechnol Sci Tech Development and Application of Nanofiber Materials = Nanotechnol. Sci. Tech. Development and Applications of Vaccines and Gene Therapy in Aids = Antibiot Chemother Development and Applications of Vaccines and Gene Therapy in Aids = Antibiot. Chemother. Development and change = Dev Change Development and Change = Dev Change Development and Change = Dev. Change Development and Change=Devel. Change Development and Engineering of Dopamine Neurons = Adv Exp Med Biol Development and Engineering of Dopamine Neurons = Adv. Exp. Med. Biol. Development and gender in brief : a quarterly update from BRIDGE, raising gende awareness among policy-makers and practitioners = Dev Gend Brief Development and Neural Bases of Higher Cognitive Functions = Ann Ny Acad Sci Development and Neural Bases of Higher Cognitive Functions = Ann. Ny. Acad. Sci. Development and Organization of The Retina = Nato Adv Sci I A-lif Development and Organization of The Retina = Nato. Adv. Sci. I. A-lif. Development and peace = Dev Peace Development and Progress in Sediment Quality Assessment: Rationale, Challenges, Techniques & Strategies = Ecovis World Mg Ser Development and Progress in Sediment Quality Assessment: Rationale, Challenges, Techniques & Strategies = Ecovis. World. Mg. Ser. Development and psychopathology = Dev Psychopathol Development and Psychopathology=Dev Psychopathol;; Development and Psychopathology = Dev Psychopathol Development and Psychopathology = Dev. Psychopathol. Development and Regenerative Capacity of Descending Supraspinal Pathways in Tetrapods: A Comparative Approach = Adv Anat Embryol Cel Development and Regenerative Capacity of Descending Supraspinal Pathways in Tetrapods: A Comparative Approach = Adv. Anat. Embryol. Cel. Development and society (Soul Taehakkyo. Institute for Social Devdelopment and Policy Research) = Dev Soc Development and Transfer of Industrial Technology = Adv Ind Eng Development and Transfer of Industrial Technology = Adv. Ind. Eng. Development brief = Dev Brief Development bulletin (Australian Development Studies Network) = Dev Bull Development (Cambridge, England) = Development Development (Cambridge, England). Supplement = Dev Suppl Development (Cambridge, United Kingdom) = Development (Cambridge, U. K.) Development Committee (series) = Dev Comm S Development Committee (series) = Dev. Comm. S. Development communication report = Dev Commun Rep Development=Development Development=Development;; Development = Development Development dialogue = Dev Dialogue Development digest = Dev Dig Development directions = Dev Dir Development, Dynamics and Pathology of Neuronal Networks: From Molecules to Functional Circuits = Prog Brain Res Development, Dynamics and Pathology of Neuronal Networks: From Molecules to Functional Circuits = Prog. Brain. Res. Development education exchange papers : DEEP = DEEP Dev Educ Exch Pap Development Ethics At Work: Explorations - 1960-2002 = Routl Stud Dev Econ Development Ethics At Work: Explorations - 1960-2002 = Routl. Stud. Dev. Econ. Development, Evolution and Petroleum Geology of The Wessex Basin = Geol Soc Spec Publ Development, Evolution and Petroleum Geology of The Wessex Basin = Geol. Soc. Spec. Publ. Development Finance and Policy Reform = Int Pol Ec Development Finance and Policy Reform = Int. Pol. Ec. Development Finance: Debates, Dogmas and New Directions = Routl Adv Texts Econ Development Finance: Debates, Dogmas and New Directions = Routl. Adv. Texts. Econ. Development Finance in The Global Economy: The Road Ahead = Stud Dev Econ Policy Development Finance in The Global Economy: The Road Ahead = Stud. Dev. Econ. Policy. Development forum = Dev Forum Development genes and evolution = Dev Genes Evol Development Genes and Evolution = Dev Genes Evol Development Genes and Evolution = Dev. Genes Evol. Development Growth and Differentiation=Dev Growth Differ;; Development Growth and Differentiation = Dev. Growth Differ. Development, growth & differentiation = Dev Growth Differ Development Growth & Differentiation = Dev Growth Differ Development Growth & Differentiation = Dev. Growth Differ. Development Guidelines = Dev Guidel Development Guidelines = Dev. Guidel. Development, Handicap, Rehabilitation : Practice and Theory = Int Congr Ser Development, Handicap, Rehabilitation : Practice and Theory = Int. Congr. Ser. Development in Body Engineering = Vdi Bericht Development in Body Engineering = Vdi. Bericht. Development in Chassis Engineering = Vdi Bericht Development in Chassis Engineering = Vdi. Bericht. Development in Context = J Piaget Sy Development in Context = J. Piaget. Sy. Development in Industrial Microbiology, Vol 35 = Dev Ind Microbiol Development in Industrial Microbiology, Vol 35 = Dev. Ind. Microbiol. Development in Light Metals = Key Eng Mat Development in Light Metals = Key. Eng. Mat. Development in practice = Dev Pract Development international = Dev Int Development Issues = Dev Comm S Development Issues = Dev. Comm. S. Development Issues in Global Governance: Public-private Partnerships and Market Multilateralism = Routl Warw Stud Glob Development Issues in Global Governance: Public-private Partnerships and Market Multilateralism = Routl. Warw. Stud. Glob. Development Issues: Presentations to The 43rd Meeting of The Development Committee = Dev Comm S Development Issues: Presentations to The 43rd Meeting of The Development Committee = Dev. Comm. S. Development Issues: Presentations to The 50th Meeting of The Development Committee = Dev Comm S Development Issues: Presentations to The 50th Meeting of The Development Committee = Dev. Comm. S. Development Macroeconomics = Routl Stud Dev Econ Development Macroeconomics = Routl. Stud. Dev. Econ. Development of Auditory and Vestibular Systems 3: Molecular Development of The Inner Ear = Curr Top Dev Biol Development of Auditory and Vestibular Systems 3: Molecular Development of The Inner Ear = Curr. Top. Dev. Biol. Development of British Naval Thinking: Essays in Memory of Bryan Mclaren Ranft = Cass Ser Nav Policy Development of British Naval Thinking: Essays in Memory of Bryan Mclaren Ranft = Cass. Ser. Nav. Policy. Development of Capitalism in Russia = Routl Contemp Russ E Development of Capitalism in Russia = Routl. Contemp. Russ. E. Development of Component-based Information Systems = Adv Manag Inform Sys Development of Component-based Information Systems = Adv. Manag. Inform. Sys. Development of Consensus in Global Infection Control = Res Clin Forums Development of Consensus in Global Infection Control = Res. Clin. Forums. Development of Emotion Regulation and Dysregulation = Camb St Soc Development of Emotion Regulation and Dysregulation = Camb. St. Soc. Development of Form and Function in Fishes and The Question of Larval Adaptation = Am Fish S S Development of Form and Function in Fishes and The Question of Larval Adaptation = Am. Fish. S. S. Development of Future-oriented Processes = Mac Fdn Men Development of Future-oriented Processes = Mac. Fdn. Men. Development of Intellectual Property Regimes in The Arabian Gulf States = Rout Res Intell Prop Development of Intellectual Property Regimes in The Arabian Gulf States = Rout. Res. Intell. Prop. Development of Luminescence of Properties of Eu3+-doped Nanosized Materials = Nanotechnol Sci Tech Development of Luminescence of Properties of Eu3+-doped Nanosized Materials = Nanotechnol. Sci. Tech. Development of Memory in Infancy and Childhood = Stud Dev Psychol Development of Memory in Infancy and Childhood = Stud. Dev. Psychol. Development of Modern Medicine in Non-western Countries = Roy Asiat Soc Books Development of Modern Medicine in Non-western Countries = Roy. Asiat. Soc. Books. Development of Modern South Korea: State Formation, Capitalist Development and National Identity = Routl Adv Korean Stu Development of Modern South Korea: State Formation, Capitalist Development and National Identity = Routl. Adv. Korean. Stu. Development of Multimodal Interfaces: Active Listing and Synchrony = Lect Notes Comput Sc Development of Multimodal Interfaces: Active Listing and Synchrony = Lect. Notes. Comput. Sc. Development of Neural Circuitry = Curr Top Dev Biol Development of Neural Circuitry = Curr. Top. Dev. Biol. Development of New Mdr-tuberculosis Drugs = Pharm Res Saf Test Development of New Mdr-tuberculosis Drugs = Pharm. Res. Saf. Test. Development of Nominal Inflection in First Language Acquisition: A Cross-linguistic Perspective = Stud Lang Acquis Development of Nominal Inflection in First Language Acquisition: A Cross-linguistic Perspective = Stud. Lang. Acquis. Development of Packaging and Products for Use in Microwave Ovens = Woodhead Publ Mater Development of Packaging and Products for Use in Microwave Ovens = Woodhead. Publ. Mater. Development of Sea Urchins, Ascidians, and Other Invertebrate Deuterostomes: Experimental Approaches = Method Cell Biol Development of Sea Urchins, Ascidians, and Other Invertebrate Deuterostomes: Experimental Approaches = Method. Cell. Biol. Development of Sex Differences and Similarities in Behavior = Nato Adv Sci Inst Se Development of Sex Differences and Similarities in Behavior = Nato. Adv. Sci. Inst. Se. Development of Specifications for Biotechnology Pharmaceutical Products = Dev Biol Stand Development of Specifications for Biotechnology Pharmaceutical Products = Dev. Biol. Stand. Development of T Cell Immunity = Prog Mol Biol Transl Development of T Cell Immunity = Prog. Mol. Biol. Transl. Development of The American Public Accounting Profession: Scottish Chartered Accountants and The Early American Public Accountancy Profession = Routl New Works Acct Development of The American Public Accounting Profession: Scottish Chartered Accountants and The Early American Public Accountancy Profession = Routl. New. Works. Acct. Development of The Cerebral Cortex = Ciba F Symp Development of The Cerebral Cortex = Ciba. F. Symp. Development of The Pancreas and Neonatal Diabetes = Endocr Dev Development of The Pancreas and Neonatal Diabetes = Endocr. Dev. Development of The Pancreas and Neonatal Diabetes = Endocrin Dev Development of The Pancreas and Neonatal Diabetes = Endocrin. Dev. Development of The Perineum in The Human = Adv Anat Embryol Cel Development of The Perineum in The Human = Adv. Anat. Embryol. Cel. Development of The Rural World: Problems and Policies, Institutions and Instruments = Quad Riv Ec Development of The Rural World: Problems and Policies, Institutions and Instruments = Quad. Riv. Ec. Development of The Visual System = P Ret Res F Development of The Visual System = P. Ret. Res. F. Development On The Ground = Rout Adv Manage Bus Development On The Ground = Rout. Adv. Manage. Bus. Development On The Ground = Routl Adv Manag Bus Development On The Ground = Routl. Adv. Manag. Bus. Development Oriented Research in Agriculture = Dev Orient Res Agr Development Oriented Research in Agriculture = Dev. Orient. Res. Agr. Development Policy Review = Dev Policy Rev Development Policy Review = Dev. Policy Rev. Development policy review : the journal of the Overseas Development Institute = Dev Policy Rev Developments and Challenges for Autonomous Unmanned Vehicles: A Compendium = Intel Syst Ref Libr Developments and Challenges for Autonomous Unmanned Vehicles: A Compendium = Intel. Syst. Ref. Libr. Developments and Ethical Considerations in Toxicology = Roy Soc Ch Developments and Ethical Considerations in Toxicology = Roy. Soc. Ch. Developments and Innovation in Carbon Dioxide (co2) Capture and Storage Technology-vol 1: Carbon Dioxide (co2) Capture, Transport and Industrial Applications = Woodhead Publ Ser En Developments and Innovation in Carbon Dioxide (co2) Capture and Storage Technology-vol 1: Carbon Dioxide (co2) Capture, Transport and Industrial Applications = Woodhead. Publ. Ser. En. Developments and Innovation in Carbon Dioxide (co2) Capture and Storage Technology, Volume 2: Carbon Dioxide (co2) Storage and Utilisation = Woodhead Publ Ser En Developments and Innovation in Carbon Dioxide (co2) Capture and Storage Technology, Volume 2: Carbon Dioxide (co2) Storage and Utilisation = Woodhead. Publ. Ser. En. Developments and Trends in Infinite-dimensional Lie Theory = Prog Math Developments and Trends in Infinite-dimensional Lie Theory = Prog. Math. Development-seeds of Change-village Through Global Order = Develop-seed Change Development-seeds of Change-village Through Global Order = Develop-seed. Change. Developments in Advanced Ceramics and Composites = Ceram Eng Sci Proc Developments in Advanced Ceramics and Composites = Ceram. Eng. Sci. Proc. Developments in Agricultural and Managed-forest Ecology = Dev Agric Manag For Developments in Agricultural and Managed-forest Ecology = Dev. Agric. Manag. For. Developments in Agricultural Economics = Dev Agr Ec Developments in Agricultural Economics = Dev. Agr. Ec. Developments in Animal and Veterinary Sciences = Dev An Vet Developments in Animal and Veterinary Sciences = Dev. An. Vet. Developments in Applied Artificail Intelligence, Proceedings = Lect Notes Artif Int Developments in Applied Artificail Intelligence, Proceedings = Lect. Notes. Artif. Int. Developments in Applied Artificial Intelligence = Lect Notes Artif Int Developments in Applied Artificial Intelligence = Lect. Notes. Artif. Int. Developments in Arid Regions Research Series = Dev Arid Reg Res Ser Developments in Arid Regions Research Series = Dev. Arid Reg. Res. Ser. Developments in Astrometry and Their Impact On Astrophysics and Geodynamics = Iau Symp Developments in Astrometry and Their Impact On Astrophysics and Geodynamics = Iau. Symp. Developments in Atmospheric Science = Dev Atmosph Developments in Atmospheric Science = Dev. Atmosph. Developments in Biochemistry = Devel Bioch Developments in Biochemistry = Devel. Bioch. Developments in Biologicals (Basel, Switzerland) = Dev. Biol. (Basel, Switz.) Developments in Biologicals = Dev. Biol. Developments in biologicals = Dev Biol (Basel) Developments in Biologicals = Dev Biologicals Developments in Biologicals = Dev. Biologicals Developments in Biological Standardization = Dev Biologicals Developments in Biological Standardization = Dev. Biologicals. Developments in biological standardization = Dev Biol Stand Developments in Biological Standardization = Dev Biol Stand Developments in Biological Standardization = Dev. Biol. Stand. Developments In Biological Standardization=Dev Biol Stand;; Developments in Biotherapy = Dev Biother Developments in Biotherapy = Dev. Biother. Developments in Cardiovascular Medicine = Dev Cardiovasc Med Developments in Cardiovascular Medicine = Dev. Cardiovasc. Med. Developments in Civil Engineering = Dev Civ Eng Developments in Civil Engineering = Dev. Civ. Eng. Developments in Corporate Governance and Responsibility = Dev Corp Gov Respons Developments in Corporate Governance and Responsibility = Dev. Corp. Gov. Respons. Developments in Critical Care Medicine and Anesthesiology = Dev C C Med Developments in Critical Care Medicine and Anesthesiology = Dev. C. C. Med. Developments in Dielectric Materials and Electronic Devices = Ceram Trans Developments in Dielectric Materials and Electronic Devices = Ceram. Trans. Developments in Dynamic Soil-structure Interaction = Nato Adv Sci Inst Se Developments in Dynamic Soil-structure Interaction = Nato. Adv. Sci. Inst. Se. Developments in Ecosystems = Dev Ecosystems Developments in Ecosystems = Dev. Ecosystems Developments in Environmental Modelling = Dev Environ Model Developments in Environmental Modelling = Dev. Environ. Model. Developments in Environmental Science = Dev Environm Sci Developments in Environmental Science = Dev. Environm. Sci. Developments in Estuarine and Coastal Study Techniques = Olsen Int S Developments in Estuarine and Coastal Study Techniques = Olsen. Int. S. Developments in Food Science = Dev Food Sci Developments in Food Science = Dev. Food Sci. Developments in Four-dimensional Geodesy = Lect Notes Earth Sci Developments in Four-dimensional Geodesy = Lect. Notes. Earth. Sci. Developments in Fullerene Science = Dev Fullerene Sci Developments in Fullerene Science = Dev. Fullerene Sci. Developments in Gastroenterology = Dev Gastro Developments in Gastroenterology = Dev. Gastro. Developments in General Relativity, Astrophysics and Quantum Theory = Ann Isr Phy Developments in General Relativity, Astrophysics and Quantum Theory = Ann. Isr. Phy. Developments in Geotechnical Engineering = Dev Geotech Eng Developments in Geotechnical Engineering = Dev. Geotech. Eng. Developments in Health Economics and Public Policy = Dev Health Econ Publ Developments in Health Economics and Public Policy = Dev. Health Econ. Publ. Developments in health economics and public policy = Dev Health Econ Public Policy Developments in Health Economics and Public Policy = Dev. Health Econ. Public Policy Developments in Health Economics and Public Policy = Dev Hlth Ec Developments in Health Economics and Public Policy = Dev. Hlth. Ec. Developments in Hematology and Immunology = Dev Hematol Developments in Hematology and Immunology = Dev. Hematol. Developments in High Temperature Corrosion and Protection of Materials = Woodhead Publ Mater Developments in High Temperature Corrosion and Protection of Materials = Woodhead. Publ. Mater. Developments in Hydrobiology = Dev Hydrob Developments in Hydrobiology = Dev. Hydrob. Developments in Hydrobiology = Dev Hydrobiol Developments in Hydrobiology = Dev. Hydrobiol. Developments in Industrial Microbiology = Dev Ind Microbiol Developments in Industrial Microbiology = Dev. Ind. Microbiol. Developments in Landscape Management and Urban Planning = Dev Landsc Developments in Landscape Management and Urban Planning = Dev. Landsc. Developments in Language Theory = Lect Notes Comput Sc Developments in Language Theory = Lect. Notes. Comput. Sc. Developments in Language Theory, Proceedings = Lect Notes Comput Sc Developments in Language Theory, Proceedings = Lect. Notes. Comput. Sc. Developments in Marine Biology = Dev Mar Bio Developments in Marine Biology = Dev. Mar. Bio. Developments in Marine Technology = Dev Mar Tec Developments in Marine Technology = Dev. Mar. Tec. Developments in Marketing Science = Dev Mkt Sci Developments in Marketing Science = Dev. Mkt. Sci. Developments in Marketing Science, Vol 12 = Dev Mkt Sci Developments in Marketing Science, Vol 12 = Dev. Mkt. Sci. Developments in Marketing Science, Vol 13 = Dev Mkt Sci Developments in Marketing Science, Vol 13 = Dev. Mkt. Sci. Developments in Mathematics = Dev Math Developments in Mathematics = Dev. Math. Developments in Microcomputing - Discovering New Opportunities for Libraries in The 1990s = Ver U Essen Developments in Microcomputing - Discovering New Opportunities for Libraries in The 1990s = Ver. U. Essen. Developments in Modern Automotive Body Construction = Vdi Bericht Developments in Modern Automotive Body Construction = Vdi. Bericht. Developments in Nanotechnology = Dev Nanotec Developments in Nanotechnology = Dev. Nanotec. Developments in Nephrology = Dev Nephrol Developments in Nephrology = Dev. Nephrol. Developments in Neurology = Devel Neur Developments in Neurology = Devel. Neur. Developments in Neuroscience = Dev Neurosci-amster Developments in Neuroscience = Dev. Neurosci-amster. Developments in Neuroscience, Proceedings = Int Congr Ser Developments in Neuroscience, Proceedings = Int. Congr. Ser. Developments in Neurosciences = Int Congr Ser Developments in Neurosciences = Int. Congr. Ser. Developments in Nuclear Medicine = Dev Nuc Med Developments in Nuclear Medicine = Dev. Nuc. Med. Developments in Oncology = Dev Oncol Developments in Oncology = Dev. Oncol. Developments in ophthalmology = Dev Ophthalmol Developments in Ophthalmology = Dev Ophthalmol Developments in Ophthalmology = Dev. Ophthalmol. Developments In Ophthalmology=Dev Ophthalmol;; Developments in Optical Component Coatings = P Soc Photo-opt Ins Developments in Optical Component Coatings = P. Soc. Photo-opt. Ins. Developments in Paleoenvironmental Research = Dev Paleoenviron Res Developments in Paleoenvironmental Research = Dev. Paleoenviron. Res. Developments in Petroleum Science = Dev Petr Sci Developments in Petroleum Science = Dev. Petr. Sci. Developments in Petrophysics = Geol Soc Sp Developments in Petrophysics = Geol. Soc. Sp. Developments in Plant and Soil Sciences = Dev Plant Soil Sci Developments in Plant and Soil Sciences = Dev. Plant Soil Sci. Developments in Plant Breeding = Dev Plant Breed Developments in Plant Breeding = Dev. Plant Breed. Developments in Plant Genetics and Breeding = Dev Pl Gen Developments in Plant Genetics and Breeding = Dev. Pl. Gen. Developments in Plant Pathology = Dev Plant Pathol Developments in Plant Pathology = Dev. Plant Pathol. Developments in Porous, Biological and Geopolymer Ceramics = Ceram Eng Sci Proc Developments in Porous, Biological and Geopolymer Ceramics = Ceram. Eng. Sci. Proc. Developments in Primatology-progress and Prospects = Dev Primatol Developments in Primatology-progress and Prospects = Dev. Primatol. Developments in Primatology-progress and Prospects = Dev Primatol-prog Pr Developments in Primatology-progress and Prospects = Dev. Primatol-prog. Pr. Developments in Psychiatry = Dev Psychia Developments in Psychiatry = Dev. Psychia. Developments in Quality-of-life Studies in Marketing = Dev Qual Lif Stud Developments in Quality-of-life Studies in Marketing = Dev. Qual. Lif. Stud. Developments in Services of General Interest = Leg Iss Serv Gen Int Developments in Services of General Interest = Leg. Iss. Serv. Gen. Int. Developments in Soft Computing = Adv Soft Comp Developments in Soft Computing = Adv. Soft Comp. Developments in Soil Science = Dev Soil Sci Developments in Soil Science = Dev. Soil Sci. Developments in Solid Oxide Fuel Cells and Lithium Ion Batteries = Ceram Trans Developments in Solid Oxide Fuel Cells and Lithium Ion Batteries = Ceram. Trans. Developments in Strategic Materials = Ceram Eng Sci Proc Developments in Strategic Materials = Ceram. Eng. Sci. Proc. Developments in Surgery = Dev Surgery Developments in Surgery = Dev. Surgery Developments in The Call Centre Industry: Analysis, Changes and Challenges = Routl Stud Bus Organ Developments in The Call Centre Industry: Analysis, Changes and Challenges = Routl. Stud. Bus. Organ. Developments in The Formulation and Reinforcement of Concrete = Woodhead Publ Mater Developments in The Formulation and Reinforcement of Concrete = Woodhead. Publ. Mater. Developments in Theoretical and Applied Mechanics = Devel Theor Developments in Theoretical and Applied Mechanics = Devel. Theor. Developments in Theoretical and Applied Mechanics, Vol 14 = Devel Theor Developments in Theoretical and Applied Mechanics, Vol 14 = Devel. Theor. Developments in toxicology and environmental science = Dev Toxicol Environ Sci Developments in Toxicology and Environmental Science = Dev. Toxicol. Environ. Sci. Developments in Tryptophan and Serotonin Metabolism = Adv Exp Med Biol Developments in Tryptophan and Serotonin Metabolism = Adv. Exp. Med. Biol. Developments in Volcanology = Dev Volcano Developments in Volcanology = Dev. Volcano. Developments in Water Science = Dev Water Sci Developments in Water Science = Dev. Water Sci. Developments in X-ray Tomography Iii = Proc Spie Developments in X-ray Tomography Iii = Proc. Spie. Developments in X-ray Tomography Iii = P Soc Photo-opt Ins Developments in X-ray Tomography Iii = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography Ii = Proc Spie Developments in X-ray Tomography Ii = Proc. Spie. Developments in X-ray Tomography Ii = P Soc Photo-opt Ins Developments in X-ray Tomography Ii = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography Iv = Proc Spie Developments in X-ray Tomography Iv = Proc. Spie. Developments in X-ray Tomography Iv = P Soc Photo-opt Ins Developments in X-ray Tomography Iv = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography = P Soc Photo-opt Ins Developments in X-ray Tomography = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography Vii = P Soc Photo-opt Ins Developments in X-ray Tomography Vii = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography Vi = Proc Spie Developments in X-ray Tomography Vi = Proc. Spie. Developments in X-ray Tomography Vi = P Soc Photo-opt Ins Developments in X-ray Tomography Vi = P. Soc. Photo-opt. Ins. Developments in X-ray Tomography V = P Soc Photo-opt Ins Developments in X-ray Tomography V = P. Soc. Photo-opt. Ins. Development Southern Africa=Devel. Southern Africa Development Southern Africa = Dev So Afr Development Southern Africa = Dev. So. Afr. Development Southern Africa = Dev South Afr Development Southern Africa = Dev. South. Afr. Development. Supplement=Dev Suppl;; Development. Supplement = Dev. Suppl. Development, Use and Performance of Exterior Insulation and Finish Systems (eifs) = Am Soc Test Mater Development, Use and Performance of Exterior Insulation and Finish Systems (eifs) = Am. Soc. Test. Mater. Development With Sustainable Use of Electricity = Nato Asi 3 High Tech Development With Sustainable Use of Electricity = Nato. Asi. 3. High. Tech. Development With Trade : Ldcs and The International Economy = Inc Exc Ext Development With Trade : Ldcs and The International Economy = Inc. Exc. Ext. Developpement & civilisations = Dev Civilis Developpement et sante : revue de perfectionnement medical et sanitaire en pays tropical = Dev Sante Developpement-Quebec = Dev Que Deviance Et Societe = Deviance Soc Deviance Et Societe = Deviance Soc. Deviant behavior = Deviant Behav Deviant Behavior = Deviant Behav Deviant Behavior = Deviant Behav. Device and Materials Modeling in Pem Fuel Cells = Top Appl Phys Device and Materials Modeling in Pem Fuel Cells = Top. Appl. Phys. Device and Process Technologies for Mems and Microelectronics Ii = Proc Spie Device and Process Technologies for Mems and Microelectronics Ii = Proc. Spie. Device and Process Technologies for Mems and Microelectronics Ii = P Soc Photo-opt Ins Device and Process Technologies for Mems and Microelectronics Ii = P. Soc. Photo-opt. Ins. Device and Process Technologies for Mems and Microelectronics = Proc Spie Device and Process Technologies for Mems and Microelectronics = Proc. Spie. Device and Process Technologies for Mems and Microelectronics = P Soc Photo-opt Ins Device and Process Technologies for Mems and Microelectronics = P. Soc. Photo-opt. Ins. Device and Process Technologies for Microelectronics, Mems, and Photonics Iv = Proc Spie Device and Process Technologies for Microelectronics, Mems, and Photonics Iv = Proc. Spie. Device and Process Technologies for Microelectronics, Mems, and Photonics Iv = P Soc Photo-opt Ins Device and Process Technologies for Microelectronics, Mems, and Photonics Iv = P. Soc. Photo-opt. Ins. Device and Process Technologies for Microelectronics, Mems, Photonics and Nanotechnology Iv = Proc Spie Device and Process Technologies for Microelectronics, Mems, Photonics and Nanotechnology Iv = Proc. Spie. Device and Process Technologies for Microelectronics, Mems, Photonics and Nanotechnology Iv = P Soc Photo-opt Ins Device and Process Technologies for Microelectronics, Mems, Photonics and Nanotechnology Iv = P. Soc. Photo-opt. Ins. Device Applications of Nonlinear Dynamics = Und Com Sys Device Applications of Nonlinear Dynamics = Und. Com. Sys. Device Applications of Nonlinear Dynamics = Underst Complex Syst Device Applications of Nonlinear Dynamics = Underst. Complex. Syst. Device Applications of Silicon Nanocrystals and Nanostructures = Nanostruct Sci Techn Device Applications of Silicon Nanocrystals and Nanostructures = Nanostruct. Sci. Techn. Device-independent Color Imaging and Imaging Systems Integration = P Soc Photo-opt Ins Device-independent Color Imaging and Imaging Systems Integration = P. Soc. Photo-opt. Ins. Device-independent Color Imaging Ii = P Soc Photo-opt Ins Device-independent Color Imaging Ii = P. Soc. Photo-opt. Ins. Device-independent Color Imaging = P Soc Photo-opt Ins Device-independent Color Imaging = P. Soc. Photo-opt. Ins. Device Physics of Narrow Gap Semiconductors = Microdevice Phys Fab Device Physics of Narrow Gap Semiconductors = Microdevice. Phys. Fab. Devices for Optical Processing = P Soc Photo-opt Ins Devices for Optical Processing = P. Soc. Photo-opt. Ins. Device Therapy in Heart Failure = Contemp Cardiol Device Therapy in Heart Failure = Contemp. Cardiol. Devil in The Holy Water Or The Art of Slander From Louis Xiv to Napoleon = Mater Texts Devil in The Holy Water Or The Art of Slander From Louis Xiv to Napoleon = Mater. Texts. Devolution, Regionalism and Regional Development: The Uk Experience = Reg Cities Devolution, Regionalism and Regional Development: The Uk Experience = Reg. Cities. Devonian Change: Case Studies in Palaeogeography and Palaeoecology = Geol Soc Spec Publ Devonian Change: Case Studies in Palaeogeography and Palaeoecology = Geol. Soc. Spec. Publ. Devonian Corals of The Yarrol Province, Eastern-central Queensland = Mem Assoc Australas Devonian Corals of The Yarrol Province, Eastern-central Queensland = Mem. Assoc. Australas. Devonian - Early Mississippian Carbonates of The Western Canada Sedimentary Basin : A Sequence Stratigraphic Framework = Sepm Short Devonian - Early Mississippian Carbonates of The Western Canada Sedimentary Basin : A Sequence Stratigraphic Framework = Sepm. Short. Devonian Events and Correlations = Geol Soc Spec Publ Devonian Events and Correlations = Geol. Soc. Spec. Publ. Devons Coastline and Coastal Waters = Exet Mari S Devons Coastline and Coastal Waters = Exet. Mari. S. De Vries Lectures in Economics = De Vries L De Vries Lectures in Economics = De Vries L. De-westernizing Communication Research: Altering Questions and Changing Frameworks = Routl Contemp Asia De-westernizing Communication Research: Altering Questions and Changing Frameworks = Routl. Contemp. Asia. De-westernizing Communication Research: Altering Questions and Changing Frameworks = Routledge Contemp As De-westernizing Communication Research: Altering Questions and Changing Frameworks = Routledge. Contemp. As. Dexa 2008: 19th International Conference On Database and Expert Systems Applications, Proceedings = Int Workshop Databas Dexa 2008: 19th International Conference On Database and Expert Systems Applications, Proceedings = Int. Workshop. Databas. Dgeb Publication = Dgeb Publ Dgeb Publication = Dgeb Publ. Dghs Chronicle = DGHS Chron Dglr Berichte = Dglr Ber Dglr Berichte = Dglr Ber. Dh : bulletin d'information / Societe de demographie historique = Demogr Hist Bull Inf Soc Dhhs Publication = Dhhs Public Dhhs Publication = Dhhs Public. D H Lawrence Review = D H Lawrence Rev D H Lawrence Review = D H Lawrence Rev. DHS+ dimensions : a biannual newsletter of the Demographic and Health Surveys project = DHS Dimens Diabete = Diabete Diabete & metabolisme = Diabete Metab Diabetes 1988 = Int Congr Ser Diabetes 1988 = Int. Congr. Ser. Diabetes 1991 = Int Congr Ser Diabetes 1991 = Int. Congr. Ser. Diabetes 1994 = Int Congr Ser Diabetes 1994 = Int. Congr. Ser. Diabetes and Cardiovascular Disease: Etiology, Treatment, and Outcomes = Adv Exp Med Biol Diabetes and Cardiovascular Disease: Etiology, Treatment, and Outcomes = Adv. Exp. Med. Biol. Diabetes and Exercise = Contemp Diabetes Diabetes and Exercise = Contemp. Diabetes Diabetes and Metabolism=Diabetes Metab;; Diabetes and Metabolism = Diabetes Metab. Diabetes and The Brain = Contemp Diabetes Diabetes and The Brain = Contemp. Diabetes Diabetes and The Kidney = Contrib Nephrol Diabetes and The Kidney = Contrib. Nephrol. Diabetes and Vascular Disease Research = Diab. Vasc. Dis. Res. Diabetes care = Diabetes Care Diabetes Care=Diabetes Care;; Diabetes Care = Diabetes Care Diabetes=Diabetes;; Diabetes = Diabetes Diabetes Educator = Diabetes Educ. Diabetes Educator = Diabetes Educator Diabetes forecast = Diabetes Forecast Diabetes, Insulin and Alzheimer's Disease = Res Per Alz Diabetes, Insulin and Alzheimer's Disease = Res. Per. Alz. Diabetes in Women = Contemp Diabetes Diabetes in Women = Contemp. Diabetes Diabetes in Women: Pathophysiology and Therapy = Contemp Diabetes Diabetes in Women: Pathophysiology and Therapy = Contemp. Diabetes Diabetes in Women = Public Health 21st C Diabetes in Women = Public. Health. 21st. C. Diabetes Mellitus and Its Complications = Ann Ny Acad Sci Diabetes Mellitus and Its Complications = Ann. Ny. Acad. Sci. Diabetes Mellitus: Recent Advances for The 21st Century = Int Congr Ser Diabetes Mellitus: Recent Advances for The 21st Century = Int. Congr. Ser. Diabetes & metabolism = Diabetes Metab Diabetes & Metabolism = Diabetes Metab Diabetes & Metabolism = Diabetes Metab. Diabetes-metabolism Research and Reviews = Diabetes-metab Res Diabetes-metabolism Research and Reviews = Diabetes-metab. Res. Diabetes-metabolism Research and Reviews = Diabetes Metab Res Diabetes-metabolism Research and Reviews = Diabetes. Metab. Res. Diabetes/metabolism research and reviews = Diabetes Metab Res Rev Diabetes/Metabolism Research and Reviews = Diabetes Metab. Res. Rev. Diabetes/metabolism reviews = Diabetes Metab Rev Diabetes-metabolism Reviews = Diabetes Metab Rev Diabetes-metabolism Reviews = Diabetes. Metab. Rev. Diabetes/Metabolism Reviews=Diabetes Metab Rev;; Diabetes/Metabolism Reviews = Diabetes. Metab. Rev. Diabetes = Nestle Nutr Works Se Diabetes = Nestle. Nutr. Works. Se. Diabetes, nutrition & metabolism = Diabetes Nutr Metab Diabetes Nutrition & Metabolism = Diabetes Nutr Metab Diabetes Nutrition & Metabolism = Diabetes Nutr. Metab. Diabetes, Obesity and Hyperlipidemias-iv = Int Congr Ser Diabetes, Obesity and Hyperlipidemias-iv = Int. Congr. Ser. Diabetes, Obesity and Hyperlipidemias: V = Int Congr Ser Diabetes, Obesity and Hyperlipidemias: V = Int. Congr. Ser. Diabetes, Obesity and Metabolism = Diabetes Obes. Metab. Diabetes, obesity & metabolism = Diabetes Obes Metab Diabetes Obesity & Metabolism = Diabetes Obes Metab Diabetes Obesity & Metabolism = Diabetes Obes. Metab. Diabetes Research and Clinical Practice = Diabetes Res Clin Pr Diabetes Research and Clinical Practice = Diabetes Res. Clin. Pr. Diabetes research and clinical practice = Diabetes Res Clin Pract Diabetes Research and Clinical Practice=Diabetes Res Clin Pract;; Diabetes Research and Clinical Practice = Diabetes Res. Clin. Pract. Diabetes research and clinical practice. Supplement = Diabetes Res Clin Pract Suppl Diabetes Research and Clinical Practice. Supplement = Diabetes Res. Clin. Pract. Suppl. Diabetes Research Clinical and Experimental = Diabetes Res Clin Ex Diabetes Research Clinical and Experimental = Diabetes Res. Clin. Ex. Diabetes Research = Diabetes Res. Diabetes research (Edinburgh, Scotland) = Diabetes Res Diabetes Retinopathy = Contemp Diabetes Diabetes Retinopathy = Contemp. Diabetes Diabetes Reviews = Diabetes Rev Diabetes Reviews = Diabetes Rev. Diabetes self-management = Diabetes Self Manag Diabetes Stoffwechsel Und Herz = Diabetes Stoffwech H Diabetes Stoffwechsel Und Herz = Diabetes Stoffwech. H. Diabetes Technology and Therapeutics = Diabetes Technol. Ther. Diabetes Technology & Therapeutics = Diabetes Technol The Diabetes Technology & Therapeutics = Diabetes Technol. The. Diabetes technology & therapeutics = Diabetes Technol Ther Diabetes & Vascular Disease Research = Diabetes Vasc Dis Re Diabetes & Vascular Disease Research = Diabetes Vasc. Dis. Re. Diabetes & vascular disease research : official journal of the International Society of Diabetes and Vascular Disease = Diab Vasc Dis Res Diabetic Complications : Epidemiology and Pathogenetic Mechanisms = Serono Sym Diabetic Complications : Epidemiology and Pathogenetic Mechanisms = Serono. Sym. Diabetic medicine : a journal of the British Diabetic Association = Diabet Med Diabetic Medicine = Diabetic Med Diabetic Medicine = Diabetic Med. Diabetic Medicine=Diabet Med;; Diabetic Medicine = Diabet. Med. Diabetic Neuropathy: Clinical Management, Second Edition = Contemp Diabetes Diabetic Neuropathy: Clinical Management, Second Edition = Contemp. Diabetes. Diabetic Neuropathy: New Concepts and Insights = Int Congr Ser Diabetic Neuropathy: New Concepts and Insights = Int. Congr. Ser. Diabetologe = Diabetologe Diabetologia Croatica = Diabetol Croat Diabetologia=Diabetologia;; Diabetologia = Diabetologia Diabetologie Und Stoffwechsel = Diabetol Stoffwechs Diabetologie Und Stoffwechsel = Diabetol. Stoffwechs. Diabetology & Metabolic Syndrome = Diabetol Metab Syndr Diabetology & Metabolic Syndrome = Diabetol. Metab. Syndr. Diachronica = Diachronica Diachronic Change in The English Passive = Palgr Stud Lang Hist Diachronic Change in The English Passive = Palgr. Stud. Lang. Hist. Diachronic Climatic Impacts On Water Resources = Nato Asi Ser Ser I Diachronic Climatic Impacts On Water Resources = Nato. Asi. Ser. Ser. I. Diacritics-a Review of Contemporary Criticism = Diacritics Diacritics-a Review of Contemporary Criticism = Diacritics. Diadora. Glasilo arheoloskog muzeja u Zadru = Diadora Diaglogos Hispanicos = Diag Hisp Diaglogos Hispanicos = Diag. Hisp. Diagnosis and Epidemiology of Foot-and-mouth Disease in Southeast Asia = Aciar Proc Diagnosis and Epidemiology of Foot-and-mouth Disease in Southeast Asia = Aciar. Proc. Diagnosis and Identification of Plant Pathogens = Dev Plant Pathol Diagnosis and Identification of Plant Pathogens = Dev. Plant Pathol. Diagnosis and Management of Pituitary Disorders = Contemp Endocrinol S Diagnosis and Management of Pituitary Disorders = Contemp. Endocrinol. S. Diagnosis and Treatment of Human Mycoses = Infect Dis Diagnosis and Treatment of Human Mycoses = Infect. Dis. Diagnosis As Cultural Practice = Lang Power Soc Proce Diagnosis As Cultural Practice = Lang. Power. Soc. Proce. Diagnosis of Process Nonlinearities and Valve Stiction: Data Driven Approaches = Adv Ind Control Diagnosis of Process Nonlinearities and Valve Stiction: Data Driven Approaches = Adv. Ind. Control. Diagnosis, Prevention and Treatment of Exercise-related Asthma, Respiratory and Allergic Disorders in Sports = Eur Respir Monogr Diagnosis, Prevention and Treatment of Exercise-related Asthma, Respiratory and Allergic Disorders in Sports = Eur. Respir. Monogr. Diagnostica = Diagnostica Diagnostic and clinical immunology = Diagn Clin Immunol Diagnostic and Clinical Immunology = Diagn Clin Immunol Diagnostic and Clinical Immunology = Diagn. Clin. Immunol. Diagnostic and interventional radiology (Ankara, Turkey) = Diagn Interv Radiol Diagnostic and Interventional Radiology = Diagn Interv Radiol Diagnostic and Interventional Radiology = Diagn. Interv. Radiol. Diagnostic and Therapeutic Cardiovascular Interventions Iv, Proceedings Of = P Soc Photo-opt Ins Diagnostic and Therapeutic Cardiovascular Interventions Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Diagnostic and Therapeutic Procedures in Gastroenterology: An Illustrated Guide = Clin Gastroent-ser Diagnostic and Therapeutic Procedures in Gastroenterology: An Illustrated Guide = Clin. Gastroent-ser. Diagnostic Biosensor Polymers = Acs Sym Ser Diagnostic Biosensor Polymers = Acs. Sym. Ser. Diagnostic cytopathology = Diagn Cytopathol Diagnostic Cytopathology=Diagn Cytopathol;; Diagnostic Cytopathology = Diagn Cytopathol Diagnostic Cytopathology = Diagn. Cytopathol. Diagnostic gynecology and obstetrics = Diagn Gynecol Obstet Diagnostic Gynecology and Obstetrics = Diagn Gynecol Obstet Diagnostic Gynecology and Obstetrics = Diagn. Gynecol. Obstet. Diagnostic Histopathology = Diagn Histopathol Diagnostic Histopathology = Diagn. Histopathol. Diagnostic histopathology / published in association with the Pathological Society of Great Britain and Ireland = Diagn Histopathol Diagnostic imaging = Diagn Imaging Diagnostic Imaging = Diagn Imaging Diagnostic Imaging = Diagn. Imaging Diagnostic Imaging in Clinical Medicine = Diagn Imag Clin Med Diagnostic Imaging in Clinical Medicine = Diagn. Imag. Clin. Med. Diagnostic imaging in clinical medicine = Diagn Imaging Clin Med Diagnostic Imaging in Clinical Medicine = Diagn. Imaging Clin. Med. Diagnostic Imaging Technologies and Industrial Applications = P Soc Photo-opt Ins Diagnostic Imaging Technologies and Industrial Applications = P. Soc. Photo-opt. Ins. Diagnostic Immunology = Diagn Clin Immunol Diagnostic Immunology = Diagn. Clin. Immunol. Diagnostic immunology = Diagn Immunol Diagnostic Immunology = Diagn. Immunol. Diagnostic Microbiology and Infectious Disease = Diagn Micr Infec Dis Diagnostic Microbiology and Infectious Disease = Diagn. Micr. Infec. Dis. Diagnostic microbiology and infectious disease = Diagn Microbiol Infect Dis Diagnostic Microbiology and Infectious Disease=Diagn Microbiol Infect Dis;; Diagnostic Microbiology and Infectious Disease = Diagn. Microbiol. Infect. Dis. Diagnostic Molecular Pathology=Diagn Mol Pathol;; Diagnostic Molecular Pathology = Diagn Mol Pathol Diagnostic Molecular Pathology = Diagn. Mol. Pathol. Diagnostic molecular pathology : the American journal of surgical pathology, part B = Diagn Mol Pathol Diagnostic Oncology = Diagn Oncol Diagnostic Oncology = Diagn. Oncol. Diagnostic Optical Spectroscopy in Biomedicine Ii = Proc Spie Diagnostic Optical Spectroscopy in Biomedicine Ii = Proc. Spie. Diagnostic Optical Spectroscopy in Biomedicine Ii = P Soc Photo-opt Ins Diagnostic Optical Spectroscopy in Biomedicine Ii = P. Soc. Photo-opt. Ins. Diagnostic Optical Spectroscopy in Biomedicine Iv = Proc Spie Diagnostic Optical Spectroscopy in Biomedicine Iv = Proc. Spie. Diagnostic Optical Spectroscopy in Biomedicine Iv = P Soc Photo-opt Ins Diagnostic Optical Spectroscopy in Biomedicine Iv = P. Soc. Photo-opt. Ins. Diagnostic Optical Spectroscopy in Biomedicine = Proc Spie Diagnostic Optical Spectroscopy in Biomedicine = Proc. Spie. Diagnostic Optical Spectroscopy in Biomedicine = P Soc Photo-opt Ins Diagnostic Optical Spectroscopy in Biomedicine = P. Soc. Photo-opt. Ins. Diagnostic pathology = Diagn Pathol Diagnostic Pathology = Diagn Pathol Diagnostic Pathology = Diagn. Pathol. Diagnostic Procedures for Crop N Management = Colloq Inra Diagnostic Procedures for Crop N Management = Colloq. Inra. Diagnostics for Contemporary Fusion Experiments = Int Sch Pl Diagnostics for Contemporary Fusion Experiments = Int. Sch. Pl. Diagnostics in Africa = Diagn Afr Diagnostics in Crop Production = Bcpc Symp Ser Diagnostics in Crop Production = Bcpc. Symp. Ser. Diagnostic Techniques for Semiconductor Materials Processing Ii = Mater Res Soc Symp P Diagnostic Techniques for Semiconductor Materials Processing Ii = Mater. Res. Soc. Symp. P. Diagnostic Techniques for Semiconductor Materials Processing = Mater Res Soc Symp P Diagnostic Techniques for Semiconductor Materials Processing = Mater. Res. Soc. Symp. P. Diagnostic Tools in Atmospheric Physics = P Int Sch Phys Diagnostic Tools in Atmospheric Physics = P. Int. Sch. Phys. Diagnostic Virology Protocols, Second Edition = Methods Mol Biol Diagnostic Virology Protocols, Second Edition = Methods. Mol. Biol. Diagrammatic Morphisms and Applications = Contemp Math Diagrammatic Morphisms and Applications = Contemp. Math. Diagrammatic Representation and Inference = Lect Notes Artif Int Diagrammatic Representation and Inference = Lect. Notes. Artif. Int. Diagrammatic Representation and Inference, Proceedings = Lect Notes Artif Int Diagrammatic Representation and Inference, Proceedings = Lect. Notes. Artif. Int. Diagrammatic Representation and Inference, Proceedings = Lect Notes Comput Sc Diagrammatic Representation and Inference, Proceedings = Lect. Notes. Comput. Sc. Diagrammatology: An Investigation On The Borderlines of Phenomenology, Ontology, and Semiotics = Synth Libr Diagrammatology: An Investigation On The Borderlines of Phenomenology, Ontology, and Semiotics = Synth. Libr. Diagrammes = Diagrammes Diakonia (Mainz, Germany : 1972) = Diakonia Dialectica = Dialectica Dialectica = Dialectica Dialectical anthropology = Dialect Anthropol Dialectical Anthropology = Dialect Anthropol Dialectical Anthropology = Dialect. Anthropol. Dialectics and humanism = Dialect Hum Dialectologia Et Geolinguistica = Dialectol Geolinguis Dialectologia Et Geolinguistica = Dialectol. Geolinguis. Dialectology Meets Typology: Dialect Grammar From A Cross-linguistic Perspective = Trends Linguist-stud Dialectology Meets Typology: Dialect Grammar From A Cross-linguistic Perspective = Trends. Linguist-stud. Dialects Across Borders = Amst Stud Theory His Dialects Across Borders = Amst. Stud. Theory. His. Dialgebras and Related Operads = Lect Notes Math Dialgebras and Related Operads = Lect. Notes. Math. Dialog-a Journal of Theology = Dialog Dialog-a Journal of Theology = Dialog. Dialog-a Journal of Theology = Dialog-j Theology Dialog-a Journal of Theology = Dialog-j. Theology Dialog = Dialog Dialog: Fairleigh Dickinson University School of Dentistry = Dialog. Fairleigh Dickinson Univ. Sch. Dent. Dialoghi di archeologia = DArch Dialoghi di archeologia = DialA Dialogic Education and Technology: Expanding The Space of Learning = Comput-supp Collab L Dialogic Education and Technology: Expanding The Space of Learning = Comput-supp. Collab. L. Dialogue-a Journal of Mormon Thought = Dialogue-j Mormon Th Dialogue-a Journal of Mormon Thought = Dialogue-j. Mormon Th. Dialogue Analysis and The Mass Media = Beitr Dialogforsch Dialogue Analysis and The Mass Media = Beitr. Dialogforsch. Dialogue Analysis Iv, Pt 1 = Beitr Dialogforsch Dialogue Analysis Iv, Pt 1 = Beitr. Dialogforsch. Dialogue Analysis Iv, Pt 2 = Beitr Dialogforsch Dialogue Analysis Iv, Pt 2 = Beitr. Dialogforsch. Dialogue and Learning in Mathematics Education = Math Educ Lib Dialogue and Learning in Mathematics Education = Math. Educ. Lib. Dialogue and Syncretism = Curr Encoun Dialogue and Syncretism = Curr. Encoun. Dialogue and Technology : Art and Knowledge = Spr S Ai S Dialogue and Technology : Art and Knowledge = Spr. S. Ai. S. Dialogue-canadian Philosophical Review = Dialogue-can Philos Dialogue-canadian Philosophical Review = Dialogue-can. Philos. Dialogue = Dialogue Dialogue = Dialogue Can Philos Assoc Dialogue-journal of Phi Sigma Tau = Dialogue-j Phi Sigma Dialogue-journal of Phi Sigma Tau = Dialogue-j. Phi Sigma Dialogue (Los Angeles, Calif. : 1986) = Dialogue Dialogue on diarrhoea = Dialogue Diarrhoea Dialogue Processing in Spoken Language Systems = Lect Notes Artif Int Dialogue Processing in Spoken Language Systems = Lect. Notes. Artif. Int. Dialogues d'histoire ancienne = DHA Dialogues d'histoire ancienne = DialHistAnc Dialogues From Public Workshops Series = Dialog Publ Dialogues From Public Workshops Series = Dialog. Publ. Dialogues in clinical neuroscience = Dialogues Clin Neurosci Dialogues in contraception = Dialogues Contracept Dialoog = Dialoog Dialysis, Dialyzers and Sorbents: Where Are We Going? = Contrib Nephrol Dialysis, Dialyzers and Sorbents: Where Are We Going? = Contrib. Nephrol. Dialysis Membranes: Structure and Predictions = Contrib Nephrol Dialysis Membranes: Structure and Predictions = Contrib. Nephrol. Dialysis-related Amyloidosis = Contrib Nephrol Dialysis-related Amyloidosis = Contrib. Nephrol. Dialysis Therapy in The 1990s = Contrib Nephrol Dialysis Therapy in The 1990s = Contrib. Nephrol. Dialysis & transplantation = Dial Transplant Dialysis & Transplantation = Dialysis Transplant Dialysis & Transplantation = Dialysis Transplant. Diamond and Diamond-like Films and Coatings = Nato Adv Sci I B-phy Diamond and Diamond-like Films and Coatings = Nato. Adv. Sci. I. B-phy. Diamond and Related Materials = Diamond Relat. Mater. Diamond and Related Materials = Diam Relat Mater Diamond and Related Materials = Diam. Relat. Mater. Diamond Based Composites and Related Materials = Nato Asi 3 High Tech Diamond Based Composites and Related Materials = Nato. Asi. 3. High. Tech. Diamond = Diamond Diamond Electronics - Fundamentals to Applications Ii = Mater Res Soc Symp P Diamond Electronics - Fundamentals to Applications Ii = Mater. Res. Soc. Symp. P. Diamond Electronics - Fundamentals to Applications = Mater Res Soc Symp P Diamond Electronics - Fundamentals to Applications = Mater. Res. Soc. Symp. P. Diamond Films and Technology = Diamond Films Technol. Diamond Films and Technology = Diamond Film Technol Diamond Films and Technology = Diamond Film. Technol. Diamond-film Semiconductors = P Soc Photo-opt Ins Diamond-film Semiconductors = P. Soc. Photo-opt. Ins. Diamond for Electronic Applications = Mater Res Soc Symp P Diamond for Electronic Applications = Mater. Res. Soc. Symp. P. Diamond Materials Vi = Elec Soc S Diamond Materials Vi = Elec. Soc. S. Diamond Materials Vii, Proceedings = Elec Soc S Diamond Materials Vii, Proceedings = Elec. Soc. S. Diamond Optics Iii = P Soc Photo-opt Ins Diamond Optics Iii = P. Soc. Photo-opt. Ins. Diamond Optics Ii = P Soc Photo-opt Ins Diamond Optics Ii = P. Soc. Photo-opt. Ins. Diamond Optics Iv = P Soc Photo-opt Ins Diamond Optics Iv = P. Soc. Photo-opt. Ins. Diamond Optics V = P Soc Photo-opt Ins Diamond Optics V = P. Soc. Photo-opt. Ins. Diamond (Philadelphia, Pa.) = Diamond Diamonds and Defaults = Synth Libr Diamonds and Defaults = Synth. Libr. Diamond, Sic and Nitride Wide Bandgap Semiconductors = Mater Res Soc Symp P Diamond, Sic and Nitride Wide Bandgap Semiconductors = Mater. Res. Soc. Symp. P. Diamond, Silicon Carbide and Related Wide Bandgap Semiconductors = Mater Res Soc Symp P Diamond, Silicon Carbide and Related Wide Bandgap Semiconductors = Mater. Res. Soc. Symp. P. Dianhuaxue = Dianhuaxue Dianzi Keji Daxue Xuebao = Dianzi Keji Daxue Xuebao Diario de Centro America (Guatemala, Guatemala : 1880) = D Cent Am Diario de Yucatan = D Yucatan Diarrhea: Causes, Types and Treatments = Public Health 21st C Diarrhea: Causes, Types and Treatments = Public. Health. 21st. C. Diarrhea: Diagnostic and Therapeutic Advances = Clin Gastroent-ser Diarrhea: Diagnostic and Therapeutic Advances = Clin. Gastroent-ser. Diarrhea: Overview = Public Health 21st C Diarrhea: Overview = Public. Health. 21st. C. Diarrhoea Dialogue = Diarrhoea Dialogue Diasporas-histoire Et Societes = Diasporas-hist Soc Diasporas-histoire Et Societes = Diasporas-hist. Soc. Diasporas in Antiquity = Brown Jud S Diasporas in Antiquity = Brown. Jud. S. Diaspora Strikes Back: Caribbean Latino Tales of Learning and Turning = Cult Spaces Diaspora Strikes Back: Caribbean Latino Tales of Learning and Turning = Cult. Spaces. Diastema = Diastema Diatom Flora in Springs of Lodz Hills (central Poland): Biodiversity, Taxonomy, and Temporal Changes of Epipsammic Diatom Assemblages in Springs Affected By Human Impact = Diatom Monogr Diatom Flora in Springs of Lodz Hills (central Poland): Biodiversity, Taxonomy, and Temporal Changes of Epipsammic Diatom Assemblages in Springs Affected By Human Impact = Diatom Monogr. Diatom Monographs = Diatom Monogr Diatom Monographs = Diatom Monogr. Diatom Monographs, Vol 10 = Diatom Monogr Diatom Monographs, Vol 10 = Diatom Monogr. Diatom Research = Diatom Res Diatom Research = Diatom Res. Diatoms of North America: The Pliocene-pleistocene Freshwater Flora of Bylot Island, Nunavut, Canadian High Arctic = Iconogr Diatomol Diatoms of North America: The Pliocene-pleistocene Freshwater Flora of Bylot Island, Nunavut, Canadian High Arctic = Iconogr. Diatomol. Diatom World = Cell Orig Life Extre Diatom World = Cell. Orig. Life. Extre. Dibner Institute Studies in The History of Science and Technology = Dibner Inst Stud His Dibner Institute Studies in The History of Science and Technology = Dibner Inst. Stud. His. Dice, Cards, Wheels: A Different History of French Culture = Crit Author Iss Dice, Cards, Wheels: A Different History of French Culture = Crit. Author. Iss. Dic = Int Congr Ser Dic = Int. Congr. Ser. Dickensian = Dickensian Dickens Quarterly = Dickens Quart Dickens Quarterly = Dickens Quart. Dickens Studies Newsletter = Dickens Stud Newsl Dickens Studies Newsletter = Dickens Stud. Newsl. Dickinson law review = Dickinson Law Rev Dickinson Studies = Dickinson Stud Dickinson Studies = Dickinson Stud. Dicle University Tip Fakultesi Dergisitesi = Dicle Univ. Tip Fakul. Derg. DICP = DICP DICP : the annals of pharmacotherapy = DICP Dicp-the Annals of Pharmacotherapy = Dicp Ann Pharmac Dicp-the Annals of Pharmacotherapy = Dicp. Ann. Pharmac. Dictionnaire d'archéologie chrétienne et de liturgie = DACL Dictionnaire des antiquités grecques et romaines d'après les textes et les monuments. Ouvrage rédigé sous la direction de Ch. Daremberg et E. Saglio = Daremberg-Saglio Didactical Challenge of Symbolic Calculators: Turning A Computational Device Into A Mathematical Instrument = Math Educ Lib Didactical Challenge of Symbolic Calculators: Turning A Computational Device Into A Mathematical Instrument = Math. Educ. Lib. Didactica Slovenica-pedagoska Obzorja = Didact Slov-pedagos Didactica Slovenica-pedagoska Obzorja = Didact. Slov-pedagos. Didaktik And/or Curriculum = Am Un St Ed Didaktik And/or Curriculum = Am. Un. St. Ed. Diderot and Lessing As Exemplars of A Post-spinozist Mentality = Mod Humanit Res Asso Diderot and Lessing As Exemplars of A Post-spinozist Mentality = Mod. Humanit. Res. Asso. Did Westward Subduction Cause Cretaceous-tertiary Orogeny in The North American Cordillera = Geol Soc Am Spec Pap Did Westward Subduction Cause Cretaceous-tertiary Orogeny in The North American Cordillera = Geol. Soc. Am. Spec. Pap. Die Agnes Karll-Schwester, der Krankenpfleger = Agnes Karll Schwest Krankenpfleger Die Alte Stadt: Vierteljahreszeitschrift für Stadtgeschichte, Stadtsoziologie und Denkmalpflege = ASTADT Die antiken Sarkophagreliefs = ASR Die Apostelgeschichte Im Kontext Antiker Und Fruhchristlicher Historiographie = Beih Z Neutest Wiss Die Apostelgeschichte Im Kontext Antiker Und Fruhchristlicher Historiographie = Beih. Z. Neutest. Wiss. Die Arztliche Fortbildung = Arztl Fortbild Die Casting Engineer = Die Cast Eng Die Casting Engineer = Die Cast. Eng. Dieciocho-hispanic Enlightenment = Dieciocho Dieciocho-hispanic Enlightenment = Dieciocho. Die Dritte Welt = Dritte Welt Die Erde; Zeitschrift der Gesellschaft fur Erdkunde zu Berlin = Erde Diefenbaker Legacy = Can Plain P Diefenbaker Legacy = Can. Plain. P. Die Fruhzeit Der Thuringer: Archaologie, Sprache, Geschichte = Reallexikon Ger Alte Die Fruhzeit Der Thuringer: Archaologie, Sprache, Geschichte = Reallexikon. Ger. Alte. Die Fundmünzen der römischen Zeit in Deutschland = FMRD Die Heilkunst = Heilkunst Die Infusionstherapie = Infusionstherapie Die Krankenschwester = Krankenschwester Die Kulturpflanze : Berichte und Mitteilungen aus dem Institut fur Kulturpflanzenforschung der Deutschen Akademie der Wissenschaften zu Berlin in Gatersleben Krs. Aschersleben = Kulturpflanze Die Landmauer Von Konstantinopel-istanbul: Historisch-topographische Und Baugeschichtliche Untersuchungen = Millenn Stud Kult Ge Die Landmauer Von Konstantinopel-istanbul: Historisch-topographische Und Baugeschichtliche Untersuchungen = Millenn. Stud. Kult. Ge. Dielectric and Related Phenomena: Materials Physico-chemistry, Spectrometric Investigations, and Applications = P Soc Photo-opt Ins Dielectric and Related Phenomena: Materials Physico-chemistry, Spectrometric Investigations, and Applications = P. Soc. Photo-opt. Ins. Dielectric Ceramic Materials = Ceram Trans Dielectric Ceramic Materials = Ceram. Trans. Dielectric Material Integration for Microelectronics = Elec Soc S Dielectric Material Integration for Microelectronics = Elec. Soc. S. Dielectric Materials: Introduction, Research and Applications = Mater Sci Technol Dielectric Materials: Introduction, Research and Applications = Mater. Sci. Technol. Dielectric Spectroscopy in Biodiesel Production and Characterization = Green Energy Technol Dielectric Spectroscopy in Biodiesel Production and Characterization = Green. Energy. Technol. Die Medizinische = Medizinische Die Medizinische Welt = Med Welt Die Nahrung = Nahrung Die Naturwissenschaften = Naturwissenschaften Die Neue Rundschau = Neue Rundsch Die Pharmazeutische Industrie = Pharm Ind Die Pharmazie. Beihefte = Pharm Beih Die Pharmazie = Pharmazie Die Politische Meinung = Polit Mein Die Quintessenz der Zahntechnik = Quintessenz Zahntech Die Quintessenz = Quintessenz Die Rehabilitation = Rehabilitation (Stuttg) Diesel Engines - Particulate Control = Imeche Sem Diesel Engines - Particulate Control = Imeche. Sem. Diesel Fuel Injection Systems = Imeche Sem Diesel Fuel Injection Systems = Imeche. Sem. Diesel Progress Engines & Drives = Diesel Prog Engine D Diesel Progress Engines & Drives = Diesel Prog. Engine. D. Diesel Progress North American Edition = Diesel Prog N Am Ed Diesel Progress North American Edition = Diesel Prog. N. Am. Ed. Die Sonde = Sonde Die Suid-Afrikaanse Tydskrif vir Natuurwetenskap en Tegnologie = Suid-Afrikaanse Tydskr. Natuurwetenskap Tegnol. Die Suid-afrikaanse tydskrif vir sosiologie. The South African journal of sociology = S Afr Tydskr Sosiol Diet and Breast Cancer = Adv Exp Med Biol Diet and Breast Cancer = Adv. Exp. Med. Biol. Diet and Cancer = Adv Exp Med Biol Diet and Cancer = Adv. Exp. Med. Biol. Diet and Cancer = Diet Cancer Diet and Cancer: Markers, Prevention, and Treatment = Adv Exp Med Biol Diet and Cancer: Markers, Prevention, and Treatment = Adv. Exp. Med. Biol. Diet and Disease = Soc St Hum Diet and Disease = Soc. St. Hum. Dietary Anticarcinogens and Antimutagens = Roy Soc Ch Dietary Anticarcinogens and Antimutagens = Roy. Soc. Ch. Dietary Components and Immune Function = Nutr Health Ser Dietary Components and Immune Function = Nutr. Health. Ser. Dietary Fat and Cancer = Adv Exp Med Biol Dietary Fat and Cancer = Adv. Exp. Med. Biol. Dietary Fats, Lipids, Hormones, and Tumorigenesis = Adv Exp Med Biol Dietary Fats, Lipids, Hormones, and Tumorigenesis = Adv. Exp. Med. Biol. Dietary Fiber, Fruit and Vegetable Consumption and Health = Nutr Diet Res Prog Dietary Fiber, Fruit and Vegetable Consumption and Health = Nutr. Diet. Res. Prog. Dietary Fiber in Health and Disease = Adv Exp Med Biol Dietary Fiber in Health and Disease = Adv. Exp. Med. Biol. Dietary Fibre : Chemical and Biological Aspects = Roy Soc Ch Dietary Fibre : Chemical and Biological Aspects = Roy. Soc. Ch. Dietary Lipids and Insulin Action = Ann Ny Acad Sci Dietary Lipids and Insulin Action = Ann. Ny. Acad. Sci. Dietary Omega-3 Polyunsaturated Fatty Acids and Cancer = Diet Cancer Dietary Omega-3 Polyunsaturated Fatty Acids and Cancer = Diet. Cancer Dietary Phytochemicals in Cancer Prevention and Treatment = Adv Exp Med Biol Dietary Phytochemicals in Cancer Prevention and Treatment = Adv. Exp. Med. Biol. Diet Diversification and Health Promotion = Forum Nutr Diet Diversification and Health Promotion = Forum. Nutr. Die Therapiewoche = Therapiewoche Diet, Nutrition and The Prevention of Chronic Diseases = Who Tech Rep Ser Diet, Nutrition and The Prevention of Chronic Diseases = Who. Tech. Rep. Ser. Diet, Nutrition & Chronic Disease = Lshtm Publ Heal For Diet, Nutrition & Chronic Disease = Lshtm. Publ. Heal. For. Diet Quality of American School-age Children = Child Iss Laws Progr Diet Quality of American School-age Children = Child. Iss. Laws. Progr. Diet Quality of American Young Children = Child Iss Laws Progr Diet Quality of American Young Children = Child. Iss. Laws. Progr. Die Tuberkulose und ihre Grenzgebiete in Einzeldarstellungen = Tuberk Grenzgeb Einzeldarst Die Waage = Waage Die Welt als Geschichte = WeltGesch Die Welt des Orients: wissenschaftliche Beiträge zur Kunde des Morgenlandes = WO Die Welt des Orients. Wissenschaftliche Beiträge zur Kunde des Morgenlandes = WO Difesa sociale = Dif Soc Difference Algebra = Algebra Appl Difference Algebra = Algebra Appl. Difference Methods for Singular Perturbation Problems = Ch Crc Monogr Surv P Difference Methods for Singular Perturbation Problems = Ch. Crc. Monogr. Surv. P. Differences-a Journal of Feminist Cultural Studies = Differences Differences-a Journal of Feminist Cultural Studies = Differences. Differences = Differences Difference Sets, Sequences and Their Correlation Properties = Nato Adv Sci I C-mat Difference Sets, Sequences and Their Correlation Properties = Nato. Adv. Sci. I. C-mat. Differential Algebra, Complex Analysis and Orthogonal Polynomials = Contemp Math Differential Algebra, Complex Analysis and Orthogonal Polynomials = Contemp. Math. Differential Analysis On Complex Manifolds, Third Edition = Grad Texts Math Differential Analysis On Complex Manifolds, Third Edition = Grad. Texts. Math. Differential and Difference Equations and Applications 2008 = Tatra Mt Math Publ Differential and Difference Equations and Applications 2008 = Tatra. Mt. Math. Publ. Differential and Integral Equations and Their Applications = Diff Int Eq Appl Differential and Integral Equations and Their Applications = Diff. Int. Eq. Appl. Differential and Integral Equations = Differential Integral Equations Differential and Integral Equations = Differ Integral Equ Differential and Integral Equations = Differ. Integral Equ. Differential Diagnosis of Hyperthyroidism = Endocr Res Clin Dev Differential Diagnosis of Hyperthyroidism = Endocr. Res. Clin. Dev. Differential Dynamical Systems = Math Model Comput Differential Dynamical Systems = Math. Model. Comput. Differential Equations and Applications - Series = Differ Equ Appl Differential Equations and Applications - Series = Differ. Equ. Appl. Differential Equations and Applications, Vol 4 = Differ Equ Appl Differential Equations and Applications, Vol 4 = Differ. Equ. Appl. Differential Equations and Applications, Vol 5 = Differ Equ Appl Differential Equations and Applications, Vol 5 = Differ. Equ. Appl. Differential Equations and Control Theory = Lect Notes Pure Appl Differential Equations and Control Theory = Lect. Notes. Pure. Appl. Differential Equations and Dynamical Systems = Differential Equations Dynam. Systems Differential Equations and Nonlinear Mechanics = Math Appl Differential Equations and Nonlinear Mechanics = Math. Appl. Differential Equations and Quantum Groups = Irma L Math The Phys Differential Equations and Quantum Groups = Irma. L. Math. The. Phys. Differential Equations & Asymptotic Theory Mathematical Physics = Ser Analysis Differential Equations & Asymptotic Theory Mathematical Physics = Ser. Analysis. Differential Equations, Chaos and Variational Problems = Prog Nonlinear Diffe Differential Equations, Chaos and Variational Problems = Prog. Nonlinear. Diffe. Differential Equations = Diff Equat+ Differential Equations = Diff. Equat+.+ Differential Equations = Differential Equations Differential Equations Driven By Rough Paths = Lect Notes Math Differential Equations Driven By Rough Paths = Lect. Notes. Math. Differential Equations: Geometry, Symmetries and Integrability - The Abel Symposium 2008 = Abel Symp Differential Equations: Geometry, Symmetries and Integrability - The Abel Symposium 2008 = Abel Symp. Differential Equations in Banach Spaces = Lect Notes Pure Appl Differential Equations in Banach Spaces = Lect. Notes. Pure. Appl. Differential Equations // = Lect Notes Pure Appl Differential Equations // = Lect. Notes. Pure. Appl. Differential Equations /// = Lect Notes Pure Appl Differential Equations /// = Lect. Notes. Pure. Appl. Differential Equations With Applications in Biology, Physics, and Engineering = Lect Notes Pure Appl Differential Equations With Applications in Biology, Physics, and Engineering = Lect. Notes. Pure. Appl. Differential Evolution: A Handbook for Global Permutation Based Combinatorial Optimization = Stud Comput Intell Differential Evolution: A Handbook for Global Permutation Based Combinatorial Optimization = Stud. Comput. Intell. Differential Evolution in Electromagnetics = Adapt Learn Optim Differential Evolution in Electromagnetics = Adapt. Learn. Optim. Differential Evolution: in Search of Solutions = Springer Ser Optim A Differential Evolution: in Search of Solutions = Springer. Ser. Optim. A. Differential Games - Developments in Modelling and Computation = Lect Notes Contr Inf Differential Games - Developments in Modelling and Computation = Lect. Notes. Contr. Inf. Differential Geometrical Methods in Theoretical Physics = Nato Adv Sci I C-mat Differential Geometrical Methods in Theoretical Physics = Nato. Adv. Sci. I. C-mat. Differential Geometric Methods in Theoretical Physics = Nato Adv Sci I B-phy Differential Geometric Methods in Theoretical Physics = Nato. Adv. Sci. I. B-phy. Differential Geometry and its Applications = Differential Geom. Appl. Differential Geometry and Its Applications = Differ Geom Appl Differential Geometry and Its Applications = Differ. Geom. Appl. Differential Geometry and Physics = Nankai Tracts Math Differential Geometry and Physics = Nankai. Tracts. Math. Differential Geometry and Topology, Discrete and Computational Geometry = Nato Sc S Ss Iii C S Differential Geometry and Topology, Discrete and Computational Geometry = Nato. Sc. S. Ss. Iii. C. S. Differential Geometry = Lect Notes Math Differential Geometry = Lect. Notes. Math. Differential Geometry of Lightlike Submanifolds = Front Math Differential Geometry of Lightlike Submanifolds = Front. Math. Differential Information Economies = Stud Econ Theory Differential Information Economies = Stud. Econ. Theory. Differential Operators and Related Topics = Oper Theor Differential Operators and Related Topics = Oper. Theor. Differential Optical Absorption Spectroscopy: Principles and Applications = Phys Earth Space Env Differential Optical Absorption Spectroscopy: Principles and Applications = Phys. Earth. Space. Env. Differentiation and Functions of Glial Cells = Neurol Neur Differentiation and Functions of Glial Cells = Neurol. Neur. Differentiation=Differentiation;; Differentiation = Differentiation Differentiation (Malden, MA, United States) = Differentiation (Malden, MA, U. S.) Differentiation of Embryonic Stem Cells = Method Enzymol Differentiation of Embryonic Stem Cells = Method. Enzymol. Differentiation of Embryonic Stem Cells = Methods Enzymol Differentiation of Embryonic Stem Cells = Methods. Enzymol. Differentiation; research in biological diversity = Differentiation Different Paths to A Market Economy = Oecd Devel Different Paths to A Market Economy = Oecd. Devel. Differentsial\cprime naya Geometriya Mnogoobraziy Figur = Differentsial\cprime naya Geom. Mnogoobraz. Figur Differentsial\cprime nye Uravneniya = Differ. Uravn. Difficult-to-treat Severe Asthma = Eur Respir Monogr Difficult-to-treat Severe Asthma = Eur. Respir. Monogr. Diffraction 2002: Interpretation of The New Diffractive Phenomena in Quantum Chromodynamics and in The S-matrix Theory = Nato Sci Ser Ii Math Diffraction 2002: Interpretation of The New Diffractive Phenomena in Quantum Chromodynamics and in The S-matrix Theory = Nato. Sci. Ser. Ii. Math. Diffraction 2008 = Aip Conf Proc Diffraction 2008 = Aip. Conf. Proc. Diffraction-limited Imaging With Very Large Telescopes = Nato Adv Sci I C-mat Diffraction-limited Imaging With Very Large Telescopes = Nato. Adv. Sci. I. C-mat. Diffraction Radiation From Relativistic Particles = Springer Trac Mod Ph Diffraction Radiation From Relativistic Particles = Springer. Trac. Mod. Ph. Diffractive and Holographic Device Technologies and Applications Iv = P Soc Photo-opt Ins Diffractive and Holographic Device Technologies and Applications Iv = P. Soc. Photo-opt. Ins. Diffractive and Holographic Device Technologies and Applications V = P Soc Photo-opt Ins Diffractive and Holographic Device Technologies and Applications V = P. Soc. Photo-opt. Ins. Diffractive and Holographic Optics Technology Iii = P Soc Photo-opt Ins Diffractive and Holographic Optics Technology Iii = P. Soc. Photo-opt. Ins. Diffractive and Holographic Optics Technology Ii = P Soc Photo-opt Ins Diffractive and Holographic Optics Technology Ii = P. Soc. Photo-opt. Ins. Diffractive and Holographic Optics Technology = P Soc Photo-opt Ins Diffractive and Holographic Optics Technology = P. Soc. Photo-opt. Ins. Diffractive and Holographic Technologies for Integrated Photonic Systems = P Soc Photo-opt Ins Diffractive and Holographic Technologies for Integrated Photonic Systems = P. Soc. Photo-opt. Ins. Diffractive and Holographic Technologies, Systems, and Spatial Light Modulators Vi = P Soc Photo-opt Ins Diffractive and Holographic Technologies, Systems, and Spatial Light Modulators Vi = P. Soc. Photo-opt. Ins. Diffractive/holographic Technologies and Spatial Light Modulators Vii = P Soc Photo-opt Ins Diffractive/holographic Technologies and Spatial Light Modulators Vii = P. Soc. Photo-opt. Ins. Diffractive Optics and Micro-optics, Proceedings Volume = Osa Trends Opt Photo Diffractive Optics and Micro-optics, Proceedings Volume = Osa. Trends. Opt. Photo. Diffractometry and Scatterometry = P Soc Photo-opt Ins Diffractometry and Scatterometry = P. Soc. Photo-opt. Ins. Diffuse Emission = Vdi Bericht Diffuse Emission = Vdi. Bericht. Diffuse Infrared Radiation and The Irts = Astr Soc P Diffuse Infrared Radiation and The Irts = Astr. Soc. P. Diffuse Interstellar Bands = Astrophys Space Sc L Diffuse Interstellar Bands = Astrophys. Space. Sc. L. Diffuse Optical Imaging Iii = Proc Spie Diffuse Optical Imaging Iii = Proc. Spie. Diffuse Optical Imaging of Tissue = P Soc Photo-opt Ins Diffuse Optical Imaging of Tissue = P. Soc. Photo-opt. Ins. Diffuse Waves in Complex Media = Nato Adv Sci I C-mat Diffuse Waves in Complex Media = Nato. Adv. Sci. I. C-mat. Diffusing Software Product and Process Innovations = Int Fed Info Proc Diffusing Software Product and Process Innovations = Int. Fed. Info. Proc. Diffusion and Defect Data - Solid State Data, Pt A : Defect and Diffusion Forum = Defect Diffus Forum Diffusion and Defect Data - Solid State Data, Pt A : Defect and Diffusion Forum = Defect Diffus. Forum Diffusion and Defect Data - Solid State Data, Pt A : Defect and Diffusion Forum = Diffus De A Diffusion and Defect Data - Solid State Data, Pt A : Defect and Diffusion Forum = Diffus. De. A Diffusion and Defect Data--Solid State Data, Pt. A: Defect and Diffusion Forum = Diffus. Defect Data, Pt. A Diffusion and Defect Data - Solid State Data, Pt. B : Solid State Phenomena = Diffus De B Diffusion and Defect Data - Solid State Data, Pt. B : Solid State Phenomena = Diffus. De. B Diffusion and Defect Data--Solid State Data, Pt. B: Solid State Phenomena = Diffus. Defect Data, Pt. B Diffusion and Diffusional Phase Transformations in Alloys = Defect Diffus Forum Diffusion and Diffusional Phase Transformations in Alloys = Defect. Diffus. Forum. Diffusion and Reactions = Sol St Phen Diffusion and Reactions = Sol. St. Phen. Diffusion and Stresses = Diffus De A Diffusion and Stresses = Diffus. De. A. Diffusion and Thermodynamics of Materials = Defect Diffus Forum Diffusion and Thermodynamics of Materials = Defect. Diffus. Forum. Diffusion and Transport of Pollutants in Atmospheric Mesoscale Flow Fields = Ercoftac Ser Diffusion and Transport of Pollutants in Atmospheric Mesoscale Flow Fields = Ercoftac. Ser. Diffusion and Use of Geographic Information Technologies = Nato Adv Sci Inst Se Diffusion and Use of Geographic Information Technologies = Nato. Adv. Sci. Inst. Se. Diffusion in Advanced Materials and Processing = Defect Diffus Forum Diffusion in Advanced Materials and Processing = Defect. Diffus. Forum. Diffusion in Materials: Dimat 2004, Pts 1 and 2 = Defect Diffus Forum Diffusion in Materials: Dimat 2004, Pts 1 and 2 = Defect. Diffus. Forum. Diffusion in Materials - Dimat2008 = Defect Diffus Forum Diffusion in Materials - Dimat2008 = Defect. Diffus. Forum. Diffusion in Materials = Nato Adv Sci I E-app Diffusion in Materials = Nato. Adv. Sci. I. E-app. Diffusion in Metals and Alloys, Pts 1-3 = Defect Diffus Forum Diffusion in Metals and Alloys, Pts 1-3 = Defect. Diffus. Forum. Diffusion in Minerals and Melts = Rev Mineral Geochem Diffusion in Minerals and Melts = Rev. Mineral. Geochem. Diffusion in Ordered Alloys = Empmd Mg S Diffusion in Ordered Alloys = Empmd. Mg. S. Diffusion in Solids and Liquids = Defect Diffus Forum Diffusion in Solids and Liquids = Defect. Diffus. Forum. Diffusion in Solids and Liquids: Heat Transfer - Microstructure & Properties = Mater Sci Forum Diffusion in Solids and Liquids: Heat Transfer - Microstructure & Properties = Mater. Sci. Forum. Diffusion in Solids and Liquids Iii = Defect Diffus Forum Diffusion in Solids and Liquids Iii = Defect. Diffus. Forum. Diffusion in Solids and Liquids Iv = Defect Diffus Forum Diffusion in Solids and Liquids Iv = Defect. Diffus. Forum. Diffusion in Solids and Liquids V, Pts 1 and 2 = Defect Diffus Forum Diffusion in Solids and Liquids V, Pts 1 and 2 = Defect. Diffus. Forum. Diffusion in Solids - Past, Present and Future = Defect Diffus Forum Diffusion in Solids - Past, Present and Future = Defect. Diffus. Forum. Diffusionless Phase Transitions in Oxides and Some Reconstructive and Martensitic Phase Transitions = Key Eng Mat Diffusionless Phase Transitions in Oxides and Some Reconstructive and Martensitic Phase Transitions = Key. Eng. Mat. Diffusionless Phase Transitions in Oxides and Some Reconstructive and Martensitic Phase Transitions = Key Eng Mater Diffusionless Phase Transitions in Oxides and Some Reconstructive and Martensitic Phase Transitions = Key. Eng. Mater. Diffusion Mechanisms in Crystalline Materials = Mater Res Soc Symp P Diffusion Mechanisms in Crystalline Materials = Mater. Res. Soc. Symp. P. Diffusion of New Technologies in The Post-communist World = Nato Asi S 4 Sci Tec Diffusion of New Technologies in The Post-communist World = Nato. Asi. S. 4. Sci. Tec. Diffusion Processes and Related Problems in Analysis, Vol 1 = Prog Probab Diffusion Processes and Related Problems in Analysis, Vol 1 = Prog. Probab. Diffusion, Segregation and Stresses in Materials = Defect Diffus Forum Diffusion, Segregation and Stresses in Materials = Defect. Diffus. Forum. Diffusions in Materials: Dimat2000, Pts 1 & 2 = Defect Diffus Forum Diffusions in Materials: Dimat2000, Pts 1 & 2 = Defect. Diffus. Forum. Diffusion, Transfer and Implementation of Information Technology = Ifip Trans A Diffusion, Transfer and Implementation of Information Technology = Ifip. Trans. A. Digesta antibiotica = Dig Antibiot Digestion=Digestion;; Digestion = Digestion Digestive and Liver Disease = Digest Liver Dis Digestive and Liver Disease = Digest. Liver Dis. Digestive and Liver Disease = Dig. Liver Dis. Digestive and liver disease : official journal of the Italian Society of Gastroenterology and the Italian Association for the Study of the Liver = Dig Liver Dis Digestive diseases and sciences = Dig Dis Sci Digestive Diseases and Sciences=Dig Dis Sci;; Digestive Diseases and Sciences = Dig. Dis. Sci. Digestive Diseases and Sciences = Digest Dis Sci Digestive Diseases and Sciences = Digest. Dis. Sci. Digestive diseases (Basel, Switzerland) = Dig Dis Digestive Diseases=Dig Dis;; Digestive Diseases = Dig. Dis. Digestive Diseases = Digest Dis Digestive Diseases = Digest. Dis. Digestive Endoscopy = Digest Endosc Digestive Endoscopy = Digest. Endosc. Digestive Physiology in Pigs = Eaap Public Digestive Physiology in Pigs = Eaap. Public. Digestive Surgery = Digest Surg Digestive Surgery = Digest. Surg. Digestive surgery = Dig Surg Digestive Surgery = Dig. Surg. Digest Journal of Nanomaterials and Biostructures = Dig J Nanomater Bios Digest Journal of Nanomaterials and Biostructures = Dig. J. Nanomater. Bios. Digest of European Tort Law = Dig Eur Tort Law Digest of European Tort Law = Dig. Eur. Tort Law Digest of public general bills and selected resolutions, with index = Digest Public Gen Bills Digest of The Leos Summer Topical Meetings = Digest Leos Sum Top Digest of The Leos Summer Topical Meetings = Digest Leos Sum. Top. Diggers At The Well = Stud Text Des Judah Diggers At The Well = Stud. Text. Des. Judah. Digging It Up Down Under = World Archaeol Congr Digging It Up Down Under = World. Archaeol. Congr. Digital Architecture and Construction = Wit Trans Built Env Digital Architecture and Construction = Wit. Trans. Built. Env. Digital Avionics Systems Conference = Digit Avion Syst Con Digital Avionics Systems Conference = Digit. Avion. Syst. Con. Digital Cinema and Microdisplays = P Soc Photo-opt Ins Digital Cinema and Microdisplays = P. Soc. Photo-opt. Ins. Digital Cities Ii: Computational and Sociological Approaches = Lect Notes Comput Sc Digital Cities Ii: Computational and Sociological Approaches = Lect. Notes. Comput. Sc. Digital Cities Iii = Lect Notes Comput Sc Digital Cities Iii = Lect. Notes. Comput. Sc. Digital Cities = Lect Notes Comput Sc Digital Cities = Lect. Notes. Comput. Sc. Digital Color Management: Principles and Strategies for The Standardized Print Production = X Media Publ Digital Color Management: Principles and Strategies for The Standardized Print Production = X. Media. Publ. Digital Communication in Medical Practice = Health Inform Ser Digital Communication in Medical Practice = Health. Inform. Ser. Digital Communication: Principles and System Modelling = Signals Commun Techn Digital Communication: Principles and System Modelling = Signals. Commun. Techn. Digital Compression Technologies and Systems for Video Communications = P Soc Photo-opt Ins Digital Compression Technologies and Systems for Video Communications = P. Soc. Photo-opt. Ins. Digital Control: Past, Present and Future of Pid Control = Ifac Work S Digital Control: Past, Present and Future of Pid Control = Ifac. Work. S. Digital Creativity = Digit Creat Digital Creativity = Digit. Creat. Digital Design and Fabrication = Comput Eng Ser Digital Design and Fabrication = Comput. Eng. Ser. Digital Design and Manufacturing Technology Ii = Adv Mater Res-switz Digital Design and Manufacturing Technology Ii = Adv. Mater. Res-switz. Digital Design and Manufacturing Technology, Pts 1 and 2 = Adv Mater Res-switz Digital Design and Manufacturing Technology, Pts 1 and 2 = Adv. Mater. Res-switz. Digital Design and Manufacturing Technology, Pts 1 and 2 = Adv Mat Res Digital Design and Manufacturing Technology, Pts 1 and 2 = Adv. Mat. Res. Digital Dialectic = Leonardo Series Digital Dialectic = Leonardo. Series. Digital Document Processing: Major Directions and Recent Advances = Adv Pattern Recognit Digital Document Processing: Major Directions and Recent Advances = Adv. Pattern. Recognit. Digital Documents: Systems and Principles = Lect Notes Comput Sc Digital Documents: Systems and Principles = Lect. Notes. Comput. Sc. Digitale Bilddiagnostik = Digitale Bilddiagn Digitale Bilddiagnostik = Digitale Bilddiagn. Digitale Edition Zwischen Experiment Und Standardisierung: Musik Text Codierung = Beih Editio Digitale Edition Zwischen Experiment Und Standardisierung: Musik Text Codierung = Beih. Editio. Digital Enterprise Challenges: Life-cycle Approach to Management and Production = Int Fed Info Proc Digital Enterprise Challenges: Life-cycle Approach to Management and Production = Int. Fed. Info. Proc. Digital Geography: Geospatial Technologies in The Social Studies Classroom = Int Soc Stud Forum S Digital Geography: Geospatial Technologies in The Social Studies Classroom = Int. Soc. Stud. Forum. S. Digital Government: E-government Research, Case Studies, and Implementation = Integr Ser Inform Sy Digital Government: E-government Research, Case Studies, and Implementation = Integr. Ser. Inform. Sy. Digital Heritage = Lect Notes Comput Sc Digital Heritage = Lect. Notes. Comput. Sc. Digital Human Modeling Conference = Vdi Bericht Digital Human Modeling Conference = Vdi. Bericht. Digital Human Modeling = Lect Notes Comput Sc Digital Human Modeling = Lect. Notes. Comput. Sc. Digital Human Modeling, Proceedings = Lect Notes Comput Sc Digital Human Modeling, Proceedings = Lect. Notes. Comput. Sc. Digital Human Modeling: Trends in Human Algorithms = Lect Notes Artif Int Digital Human Modeling: Trends in Human Algorithms = Lect. Notes. Artif. Int. Digital Image Processing: An Algorithmic Introduction Using Java, First Edition = Texts Comput Sci Digital Image Processing: An Algorithmic Introduction Using Java, First Edition = Texts. Comput. Sci. Digital Image Processing and Visual Communications Technologies in The Earth and Atmospheric Sciences Ii = P Soc Photo-opt Ins Digital Image Processing and Visual Communications Technologies in The Earth and Atmospheric Sciences Ii = P. Soc. Photo-opt. Ins. Digital Image Processing and Visual Communications Technologies in The Earth and Atmospheric Sciences = P Soc Photo-opt Ins Digital Image Processing and Visual Communications Technologies in The Earth and Atmospheric Sciences = P. Soc. Photo-opt. Ins. Digital Image Recovery and Synthesis Iii = P Soc Photo-opt Ins Digital Image Recovery and Synthesis Iii = P. Soc. Photo-opt. Ins. Digital Image Recovery and Synthesis Ii = P Soc Photo-opt Ins Digital Image Recovery and Synthesis Ii = P. Soc. Photo-opt. Ins. Digital Image Recovery and Synthesis Iv = P Soc Photo-opt Ins Digital Image Recovery and Synthesis Iv = P. Soc. Photo-opt. Ins. Digital Image Storage and Archiving Systems = P Soc Photo-opt Ins Digital Image Storage and Archiving Systems = P. Soc. Photo-opt. Ins. Digital Image Synthesis and Inverse Optics = P Soc Photo-opt Ins Digital Image Synthesis and Inverse Optics = P. Soc. Photo-opt. Ins. Digital Imaging = Med Phys Mg Digital Imaging = Med. Phys. Mg. Digital Investigation = Digit Invest Digital Investigation = Digit. Invest. Digital Investigation = Digit Investig Digital Investigation = Digit. Investig. Digitalization in Open Economies: Theory and Policy Implications = Contrib Econ Digitalization in Open Economies: Theory and Policy Implications = Contrib. Econ. Digital Libraries: Achievements, Challenges and Opportunities, Proceedings = Lect Notes Comput Sc Digital Libraries: Achievements, Challenges and Opportunities, Proceedings = Lect. Notes. Comput. Sc. Digital Libraries and Electronic Publishing = Digit Libr Elect Pub Digital Libraries and Electronic Publishing = Digit. Libr. Elect. Pub. Digital Libraries = Comm Com Inf Sc Digital Libraries = Comm. Com. Inf. Sc. Digital Libraries: Implementing Strategies and Sharing Experiences, Proceedings = Lect Notes Comput Sc Digital Libraries: Implementing Strategies and Sharing Experiences, Proceedings = Lect. Notes. Comput. Sc. Digital Libraries: International Collaboration and Cross-fertilization, Proceedings = Lect Notes Comput Sc Digital Libraries: International Collaboration and Cross-fertilization, Proceedings = Lect. Notes. Comput. Sc. Digital Libraries = Lect Notes Comput Sc Digital Libraries = Lect. Notes. Comput. Sc. Digital Libraries: People, Knowledge, and Technology, Proceedings = Lect Notes Comput Sc Digital Libraries: People, Knowledge, and Technology, Proceedings = Lect. Notes. Comput. Sc. Digital Libraries: Research and Development = Lect Notes Comput Sc Digital Libraries: Research and Development = Lect. Notes. Comput. Sc. Digital Libraries: Technology and Management of Indigenous Knowledge for Global Access = Lect Notes Comput Sc Digital Libraries: Technology and Management of Indigenous Knowledge for Global Access = Lect. Notes. Comput. Sc. Digital Libraries: Universal and Ubiquitous Access to Information, Proceedings = Lect Notes Comput Sc Digital Libraries: Universal and Ubiquitous Access to Information, Proceedings = Lect. Notes. Comput. Sc. Digital Library Economics: An Academic Perspective = Chandos Inf Prof Ser Digital Library Economics: An Academic Perspective = Chandos. Inf. Prof. Ser. Digital Library Use: Social Practice in Design and Evaluation = Digit Libr Elect Pub Digital Library Use: Social Practice in Design and Evaluation = Digit. Libr. Elect. Pub. Digital Mammography '96 = Int Congr Ser Digital Mammography '96 = Int. Congr. Ser. Digital Mammography = Comp Imag Vis Digital Mammography = Comp. Imag. Vis. Digital Mammography = Comput Imaging Vis Digital Mammography = Comput. Imaging. Vis. Digital Mammography = Int Congr Ser Digital Mammography = Int. Congr. Ser. Digital Mammography: International Workshop On Digital Mammography = Digit Mammo Digital Mammography: International Workshop On Digital Mammography = Digit. Mammo. Digital Mammography = Lect Notes Comput Sc Digital Mammography = Lect. Notes. Comput. Sc. Digital Mammography = Med Radiol Diagn Ima Digital Mammography = Med. Radiol. Diagn. Ima. Digital Mammography, Proceedings = Digit Mammo Digital Mammography, Proceedings = Digit. Mammo. Digital Mammography, Proceedings = Lect Notes Comput Sc Digital Mammography, Proceedings = Lect. Notes. Comput. Sc. Digital Mamography, Proceedings = Lect Notes Comput Sc Digital Mamography, Proceedings = Lect. Notes. Comput. Sc. Digital Microscopy, 3rd Edition = Method Cell Biol Digital Microscopy, 3rd Edition = Method. Cell. Biol. Digital Optical Computing Ii = P Soc Photo-opt Ins Digital Optical Computing Ii = P. Soc. Photo-opt. Ins. Digital Photogrammetry and Remote Sensing '95, Proceedings = P Soc Photo-opt Ins Digital Photogrammetry and Remote Sensing '95, Proceedings = P. Soc. Photo-opt. Ins. Digital Photography Iii = Proc Spie Digital Photography Iii = Proc. Spie. Digital Photography Iii = P Soc Photo-opt Ins Digital Photography Iii = P. Soc. Photo-opt. Ins. Digital Photography Ii = Proc Spie Digital Photography Ii = Proc. Spie. Digital Photography Ii = P Soc Photo-opt Ins Digital Photography Ii = P. Soc. Photo-opt. Ins. Digital Photography Iv = Proc Spie Digital Photography Iv = Proc. Spie. Digital Photography = Proc Spie Digital Photography = Proc. Spie. Digital Photography = P Soc Photo-opt Ins Digital Photography = P. Soc. Photo-opt. Ins. Digital Photography Vii = Proc Spie Digital Photography Vii = Proc. Spie. Digital Photography Vi = Proc Spie Digital Photography Vi = Proc. Spie. Digital Photography Vi = P Soc Photo-opt Ins Digital Photography Vi = P. Soc. Photo-opt. Ins. Digital Preservation for Heritages:technologies and Applications = Adv Top Sci Tech Chi Digital Preservation for Heritages:technologies and Applications = Adv. Top. Sci. Tech. Chi. Digital Printing of Textiles = Woodhead Text Ser Digital Printing of Textiles = Woodhead. Text. Ser. Digital Processes = Digital Process Digital Processes = Digital Process. Digital Publishing = P Soc Photo-opt Ins Digital Publishing = P. Soc. Photo-opt. Ins. Digital Rights Management: A Librarian's Guide to Technology and Practise = Chandos Inf Prof Ser Digital Rights Management: A Librarian's Guide to Technology and Practise = Chandos. Inf. Prof. Ser. Digital Rights Management = Lect Notes Comput Sc Digital Rights Management = Lect. Notes. Comput. Sc. Digital Rights Management: Technologies, Issues Challenges and Systems = Lect Notes Comput Sc Digital Rights Management: Technologies, Issues Challenges and Systems = Lect. Notes. Comput. Sc. Digital Rights Management: Technologies, Issues, Challenges and Systems = Lect Notes Comput Sc Digital Rights Management: Technologies, Issues, Challenges and Systems = Lect. Notes. Comput. Sc. Digital Satellite Communications = Inform Tech Trans Pr Digital Satellite Communications = Inform. Tech. Trans. Pr. Digital Scholarship = Rout Stud Lib Inform Digital Scholarship = Rout. Stud. Lib. Inform. Digital Signal Processing: An Experimental Approach = Signals Commun Techn Digital Signal Processing: An Experimental Approach = Signals. Commun. Techn. Digital Signal Processing = Digital Signal Process. Digital Signal Processing = Digit Signal Process Digital Signal Processing = Digit. Signal Process. Digital Signal Processing in Power System Protection and Control = Signals Commun Techn Digital Signal Processing in Power System Protection and Control = Signals. Commun. Techn. Digital Signal Processing Technology = P Soc Photo-opt Ins Digital Signal Processing Technology = P. Soc. Photo-opt. Ins. Digital Signal Processing With Field Programmable Gate Arrays, Third Edition = Signals Commun Techn Digital Signal Processing With Field Programmable Gate Arrays, Third Edition = Signals. Commun. Techn. Digital Solid State Cameras: Design and Applications = P Soc Photo-opt Ins Digital Solid State Cameras: Design and Applications = P. Soc. Photo-opt. Ins. Digital Surveillance: Laws, Security and Related Issues = Crim Justice Law Enf Digital Surveillance: Laws, Security and Related Issues = Crim. Justice. Law. Enf. Digital Systems and Applications = Comput Eng Ser Digital Systems and Applications = Comput. Eng. Ser. Digital Terrain Modelling: Development and Applications in A Policy Support Environment = Lect Notes Geoinf Ca Digital Terrain Modelling: Development and Applications in A Policy Support Environment = Lect. Notes. Geoinf. Ca. Digital Transmission: A Simulation-aided Introduction With Vissim/comm = Signals Commun Techn Digital Transmission: A Simulation-aided Introduction With Vissim/comm = Signals. Commun. Techn. Digital Video and Audio Broadcasting Technology: A Practical Engineering Guide, Second Edition = Signals Commun Techn Digital Video and Audio Broadcasting Technology: A Practical Engineering Guide, Second Edition = Signals. Commun. Techn. Digital Video and Audio Broadcasting Technology: A Practical Engineering Guide, Third Edition = Signals Commun Techn Digital Video and Audio Broadcasting Technology: A Practical Engineering Guide, Third Edition = Signals. Commun. Techn. Digital Video Compression: Algorithms and Technologies 1995 = P Soc Photo-opt Ins Digital Video Compression: Algorithms and Technologies 1995 = P. Soc. Photo-opt. Ins. Digital Video Compression: Algorithms and Technologies 1996 = P Soc Photo-opt Ins Digital Video Compression: Algorithms and Technologies 1996 = P. Soc. Photo-opt. Ins. Digital Video Compression On Personal Computers: Algorithms and Technologies = P Soc Photo-opt Ins Digital Video Compression On Personal Computers: Algorithms and Technologies = P. Soc. Photo-opt. Ins. Digital Watermarking = Lect Notes Comput Sc Digital Watermarking = Lect. Notes. Comput. Sc. Digital Watermarking, Proceedings = Lect Notes Comput Sc Digital Watermarking, Proceedings = Lect. Notes. Comput. Sc. Digital Wireless Communication Iii = P Soc Photo-opt Ins Digital Wireless Communication Iii = P. Soc. Photo-opt. Ins. Digital Wireless Communication Ii = P Soc Photo-opt Ins Digital Wireless Communication Ii = P. Soc. Photo-opt. Ins. Digital Wireless Communication = P Soc Photo-opt Ins Digital Wireless Communication = P. Soc. Photo-opt. Ins. Digital Wireless Communications Iv = P Soc Photo-opt Ins Digital Wireless Communications Iv = P. Soc. Photo-opt. Ins. Digital Wireless Communications Vii and Space Communication Technologies = Proc Spie Digital Wireless Communications Vii and Space Communication Technologies = Proc. Spie. Digital Wireless Communications Vii and Space Communication Technologies = P Soc Photo-opt Ins Digital Wireless Communications Vii and Space Communication Technologies = P. Soc. Photo-opt. Ins. Digital Wireless Communications Vi = Proc Spie Digital Wireless Communications Vi = Proc. Spie. Digital Wireless Communications Vi = P Soc Photo-opt Ins Digital Wireless Communications Vi = P. Soc. Photo-opt. Ins. Digital Wireless Communitcations V = Proc Spie Digital Wireless Communitcations V = Proc. Spie. Digital Wireless Communitcations V = P Soc Photo-opt Ins Digital Wireless Communitcations V = P. Soc. Photo-opt. Ins. Digital Youth: The Role of Media in Development = Adv Respons Adol Dev Digital Youth: The Role of Media in Development = Adv. Respons. Adol. Dev. Digitised Optical Sky Surveys = Astrophys Space Sc L Digitised Optical Sky Surveys = Astrophys. Space. Sc. L. Digitization of The Battlefield Ii = P Soc Photo-opt Ins Digitization of The Battlefield Ii = P. Soc. Photo-opt. Ins. Digitization of The Battlefield = P Soc Photo-opt Ins Digitization of The Battlefield = P. Soc. Photo-opt. Ins. Digitization of The Battlespace Iii = P Soc Photo-opt Ins Digitization of The Battlespace Iii = P. Soc. Photo-opt. Ins. Digitization of The Battlespace Iv = P Soc Photo-opt Ins Digitization of The Battlespace Iv = P. Soc. Photo-opt. Ins. Digitization of The Battlespace V and Battlefield Biomedical Technologies Ii = Proc Spie Digitization of The Battlespace V and Battlefield Biomedical Technologies Ii = Proc. Spie. Digitization of The Battlespace V and Battlefield Biomedical Technologies Ii = P Soc Photo-opt Ins Digitization of The Battlespace V and Battlefield Biomedical Technologies Ii = P. Soc. Photo-opt. Ins. Digitizing The News: Innovation in Online Newspapers = Inside Technol Digitizing The News: Innovation in Online Newspapers = Inside. Technol. Diglossia and Power: Language Policies and Practice in The 19th Century Habsburg Empire = Lang Power Soc Proce Diglossia and Power: Language Policies and Practice in The 19th Century Habsburg Empire = Lang. Power. Soc. Proce. Digraphs: Theory, Algorithms and Applications, Second Edition = Springer Monogr Math Digraphs: Theory, Algorithms and Applications, Second Edition = Springer. Monogr. Math. Dike. Rivista di storia del diritto greco ed ellenistico. Università degli studi di Milano. Facoltà di giurisprudenza = Dike Dilemma of Einstein, Podolsky and Rosen - 60 Years Later = Ann Isr Phy Dilemma of Einstein, Podolsky and Rosen - 60 Years Later = Ann. Isr. Phy. Dilemmas of De-stalinisation = Basees-rout Ser Russ Dilemmas of De-stalinisation = Basees-rout. Ser. Russ. Dilemmas of Engagement: Evaluation and The New Public Management = Adv Prog Eval Dilemmas of Engagement: Evaluation and The New Public Management = Adv. Prog. Eval. Dilemmas of Statebuilding: Confronting The Contradictions of Postwar Peace Operations = Secur Gov Dilemmas of Statebuilding: Confronting The Contradictions of Postwar Peace Operations = Secur. Gov. Dilemmas of Statebuilding: Confronting The Contradictions of Postwar Peace Operations = Secur Govern Dilemmas of Statebuilding: Confronting The Contradictions of Postwar Peace Operations = Secur. Govern. Dilettantism and Its Values: From Weimar Classicism to The Fin De Siecle = Stud Comp Lit Ser Dilettantism and Its Values: From Weimar Classicism to The Fin De Siecle = Stud. Comp. Lit. Ser. Di li xue bao / Chung-kuo ti li hsueh hui pien chi = Acta Geogr Sin Dilute Iii-v Nitride Semiconductors and Material Systems: Physics and Technology = Springer Ser Mater S Dilute Iii-v Nitride Semiconductors and Material Systems: Physics and Technology = Springer. Ser. Mater. S. DIMACS Series in Discrete Mathematics and Theoretical Computer Science = DIMACS Ser. Discrete Math. Theoret. Comput. Sci. Dimacs-series in Discrete Mathematics and Theoretical Computer Science = Dimacs Ser Discret M Dimacs-series in Discrete Mathematics and Theoretical Computer Science = Dimacs. Ser. Discret. M. Dimacs: Series in Discrete Mathematics and Theoretical Computer Science = Dimacs Ser Discret M Dimacs: Series in Discrete Mathematics and Theoretical Computer Science = Dimacs. Ser. Discret. M. Dimacs Series in Discrete Mathematics and Theoretical Computer Sciences = Dimacs Ser Discret M Dimacs Series in Discrete Mathematics and Theoretical Computer Sciences = Dimacs Ser. Discret. M. Dime Dans L'europe Medievale Et Moderne = Flaran Dime Dans L'europe Medievale Et Moderne = Flaran. Dimensional Stability = P Soc Photo-opt Ins Dimensional Stability = P. Soc. Photo-opt. Ins. Dimension and Recurrence in Hyperbolic Dynamics = Prog Math Dimension and Recurrence in Hyperbolic Dynamics = Prog. Math. Dimension-contemporary German Arts and Letters = Dimension Dimension-contemporary German Arts and Letters = Dimension. Dimension = Dimension Dimension Imaginaire Du Reel Dans La Philosophie De Husserl = Phaenomenologica Dimension Imaginaire Du Reel Dans La Philosophie De Husserl = Phaenomenologica. Dimension Reduction, Computational Complexity and Information = Comp Sci Stat Dimension Reduction, Computational Complexity and Information = Comp. Sci. Stat. Dimensions = Dimensions (Wash.) Dimensions in health service = Dimens Health Serv Dimensions in Health Service = Dimens. Health Serv. Dimensions in Oncology Nursing = Dimens. Oncol. Nurs. Dimensions in oncology nursing : journal of the Division of Nursing = Dimens Oncol Nurs Dimensions/NBS = Dimensions (Wash) Dimensions of critical care nursing : DCCN = Dimens Crit Care Nurs Dimensions of Critical Care Nursing = Dimens. Crit. Care Nurs. Dimensions of Forgiveness = Laws Lif Symp Ser Dimensions of Forgiveness = Laws. Lif. Symp. Ser. Dimensions of Ritual Economy = Res Econ Anthropol Dimensions of Ritual Economy = Res. Econ. Anthropol. Dimensions of The Sustainable City = Future City Dimensions of The Sustainable City = Future. City Dimensions of Time and Life = Stud Time Dimensions of Time and Life = Stud. Time Dimension Stone Cladding: Design, Construction, Evaluation and Repair = Am Soc Test Mater Dimension Stone Cladding: Design, Construction, Evaluation and Repair = Am. Soc. Test. Mater. Dimension Stone Use in Building Construction = Am Soc Test Mater Dimension Stone Use in Building Construction = Am. Soc. Test. Mater. Dinamika i Prochnost\cprime Mashin = Dinamika i Prochnost\cprime Mashin Dine Yisrael : shanaton le-mishpat 'Ivri ule-mishpahah be-Yisra'el = Dyny Ysrl Dingo = Austral Nat Hist Ser Dingo = Austral. Nat. Hist. Ser. Dinosaurs and Other Extinct Saurians: A Historical Perspective = Geol Soc Spec Publ Dinosaurs and Other Extinct Saurians: A Historical Perspective = Geol. Soc. Spec. Publ. Diode Lasers and Applications in Atmospheric Sensing = Proc Spie Diode Lasers and Applications in Atmospheric Sensing = Proc. Spie. Diode Lasers and Applications in Atmospheric Sensing = P Soc Photo-opt Ins Diode Lasers and Applications in Atmospheric Sensing = P. Soc. Photo-opt. Ins. Diode-pumped High Energy and High Power Lasers Eli: Ultrarelativistic Laser-matter Interactions and Petawatt Photonics and Hiper: The European Pathway to Laser Energy = Proc Spie Diode-pumped High Energy and High Power Lasers Eli: Ultrarelativistic Laser-matter Interactions and Petawatt Photonics and Hiper: The European Pathway to Laser Energy = Proc. Spie. Diode Pumping of Average-power Solid State Lasers = P Soc Photo-opt Ins Diode Pumping of Average-power Solid State Lasers = P. Soc. Photo-opt. Ins. Diogenes = Diogenes Dioniso. Annale della Fondazione INDA, Istituto nazionale del dramma antico = Dioniso Dionysos = Gods Heroes Anc Worl Dionysos = Gods. Heroes. Anc. Worl. Diophantine Analysis and Related Fields 2010 = Aip Conf Proc Diophantine Analysis and Related Fields 2010 = Aip. Conf. Proc. Diophantine Analysis and Related Fields - Darf 2007/2008 = Aip Conf Proc Diophantine Analysis and Related Fields - Darf 2007/2008 = Aip. Conf. Proc. Diophantine Approximation = Dev Math Diophantine Approximation = Dev. Math. Diophantine Approximation = Lect Notes Math Diophantine Approximation = Lect. Notes. Math. Diophantine Geometry, Proceedings = Crm Ser Diophantine Geometry, Proceedings = Crm. Ser. Diotima = Diotima Dioxygen Activation and Homogeneous Catalytic Oxidation = Stud Surf Sci Catal Dioxygen Activation and Homogeneous Catalytic Oxidation = Stud. Surf. Sci. Catal. Dipeptidyl Aminopeptidases: Basic Science and Clinical Applications = Adv Exp Med Biol Dipeptidyl Aminopeptidases: Basic Science and Clinical Applications = Adv. Exp. Med. Biol. Dipeptidyl Aminopeptidases in Health and Disease = Adv Exp Med Biol Dipeptidyl Aminopeptidases in Health and Disease = Adv. Exp. Med. Biol. Diplomacies of Small States: Between Vulnerability and Resilience = Int Polit Econ Ser Diplomacies of Small States: Between Vulnerability and Resilience = Int. Polit. Econ. Ser. Diplomatic History = Diplomatic Hist Diplomatic History = Diplomatic Hist. Diplomatic Missions = Queens Policy Stud S Diplomatic Missions = Queens. Policy. Stud. S. Diplomatic Tours in The Gardens of Versailles Under Louis Xiv = Penn Stud Landsc Arc Diplomatic Tours in The Gardens of Versailles Under Louis Xiv = Penn. Stud. Landsc. Arc. Diplomatie Und Gelehrtenrepublik: Die Kontakte Des Franzosischen Gesandten Jacques Bongars (1554-1612) = Fruhe Neuzeit-stud D Diplomatie Und Gelehrtenrepublik: Die Kontakte Des Franzosischen Gesandten Jacques Bongars (1554-1612) = Fruhe. Neuzeit-stud. D. Diplomats and Diplomacy = Diplomat Diplomacy Diplomats and Diplomacy = Diplomat. Diplomacy Diqiu Huaxue = Diqiu Huaxue Dirac's Difference Equation and The Physics of Finite Differences = Adv Imag Elect Phys Dirac's Difference Equation and The Physics of Finite Differences = Adv. Imag. Elect. Phys. Dirac Spectrum = Lect Notes Math Dirac Spectrum = Lect. Notes. Math. Dirasat = Dirasat Nat. Engrg. Sci. Dirasat. Medical and biological sciences = Dirasat Med Biol Sci Dirasat sukkaniyah = Dirasat Sukkaniyah Direct and Inverse Methods in Nonlinear Evolution Equations = Lect Notes Phys Direct and Inverse Methods in Nonlinear Evolution Equations = Lect. Notes. Phys. Direct and Inverse Problems of Mathematical Physics = Int Soc Anal App Com Direct and Inverse Problems of Mathematical Physics = Int. Soc. Anal. App. Com. Direct and Large-eddy Simulation I = Fluid Mec A Direct and Large-eddy Simulation I = Fluid. Mec. A. Direct and Large-eddy Simulation Iii = Ercoftac Ser Direct and Large-eddy Simulation Iii = Ercoftac. Ser. Direct and Large-eddy Simulation Vi = Ercoftac Ser Direct and Large-eddy Simulation Vi = Ercoftac. Ser. Direct and Large-eddy Simulation V, Proceedings = Ercoftac Ser Direct and Large-eddy Simulation V, Proceedings = Ercoftac. Ser. Directed Metallation = Top Organometal Chem Directed Metallation = Top. Organometal. Chem. Direct Foreign Investment: A Japanese Model of Multinational Business Operations, Vol 10 = Rout Library Ed Jpn Direct Foreign Investment: A Japanese Model of Multinational Business Operations, Vol 10 = Rout. Library. Ed. Jpn. Directional Ocean Wave Spectra = Jh St Ear S Directional Ocean Wave Spectra = Jh. St. Ear. S. Direction Et Gestion = Direction Gestion Directions and Prospects for Educational Linguistics = Educ Linguist Directions and Prospects for Educational Linguistics = Educ. Linguist. Directions in Chaos = Dir. Chaos Directions in Corpus Linguistics = Trend Lin S Directions in Corpus Linguistics = Trend. Lin. S. Directions in Development = Dir Dev Directions in Development = Dir. Dev. Directions in Mathematical Systems Theory and Optimization = Lect Notes Contr Inf Directions in Mathematical Systems Theory and Optimization = Lect. Notes. Contr. Inf. Directions in Modern Theology Series = Direct Mod Theol Ser Directions in Modern Theology Series = Direct. Mod. Theol. Ser. Directions in Quantum Optics = Lect Notes Phys Directions in Quantum Optics = Lect. Notes. Phys. Directions in Robust Statistics and Diagnostics, Part Ii = Ima V Math Directions in Robust Statistics and Diagnostics, Part Ii = Ima. V. Math. Directions in Strong Motion Instrumentation = Nato Sci S Ss Iv Ear Directions in Strong Motion Instrumentation = Nato. Sci. S. Ss. Iv. Ear. Direct Methanol Fuel Cells = Energ Sci Eng Tech Direct Methanol Fuel Cells = Energ. Sci. Eng. Tech. Direct Methods for Solving Macromolecular Structures = Nato Adv Sci I C-mat Direct Methods for Solving Macromolecular Structures = Nato. Adv. Sci. I. C-mat. Direct Methods for Sparse Linear Systems = Fund Algorithms Direct Methods for Sparse Linear Systems = Fund. Algorithms. Direct Methods of Solving Crystal Structures = Nato Adv Sci I B-phy Direct Methods of Solving Crystal Structures = Nato. Adv. Sci. I. B-phy. Director (Cincinnati, Ohio) = Director Director = Director Directors and Boards = Dir. Boards Directors and The New Musical Drama: British and American Musical Theatre in The 1980s and 90s = Palg Stud Theat Perf Directors and The New Musical Drama: British and American Musical Theatre in The 1980s and 90s = Palg. Stud. Theat. Perf. Directors & boards = Dir Boards Dirim = Dirim Disability and Dependency = Dis Han Lif Disability and Dependency = Dis. Han. Lif. Disability and Health Journal = Disabil Health J Disability and Health Journal = Disabil. Health J. Disability and rehabilitation = Disabil Rehabil Disability and Rehabilitation=Disabil Rehabil;; Disability and Rehabilitation = Disabil Rehabil Disability and Rehabilitation = Disabil. Rehabil. Disability and The Disabled-issues Laws and Programs = Disabil Disab-iss La Disability and The Disabled-issues Laws and Programs = Disabil. Disab-iss. La. Disability and Youth Sport = Int Stud Phys Educ Y Disability and Youth Sport = Int. Stud. Phys. Educ. Y. Disability, Handicap and Life Chances Series = Dis Han Lif Disability, Handicap and Life Chances Series = Dis. Han. Lif. Disability, handicap & society = Disabil Handicap Soc Disability in Islamic Law = Int Libr Eth Law New Disability in Islamic Law = Int. Libr. Eth. Law New. Disability & society = Disabil Soc Disability & Society = Disabil Soc Disability & Society = Disabil. Soc. Disability Studies = Disabil Stud Disability Studies = Disabil. Stud. Disabled in The Soviet Union = Pit Rus Eas Disabled in The Soviet Union = Pit. Rus. Eas. Disaster Advances = Disaster Adv Disaster Advances = Disaster Adv. Disaster and Development = Routl Perspect Dev Disaster and Development = Routl. Perspect. Dev. Disaster Forewarning Diagnostic Methods and Management = Proc Spie Disaster Forewarning Diagnostic Methods and Management = Proc. Spie. Disaster Forewarning Diagnostic Methods and Management = P Soc Photo-opt Ins Disaster Forewarning Diagnostic Methods and Management = P. Soc. Photo-opt. Ins. Disaster Management and Human Health Risk: Reducing Risk, Improving Outcomes = Wit Trans Ecol Envir Disaster Management and Human Health Risk: Reducing Risk, Improving Outcomes = Wit. Trans. Ecol. Envir. Disaster management & response : DMR : an official publication of the Emergency Nurses Association = Disaster Manag Response Disaster Mangement Handbook = Public Adm Public Po Disaster Mangement Handbook = Public. Adm. Public. Po. Disaster Medicine and Public Health Preparedness = Disaster Med Public Disaster Medicine and Public Health Preparedness = Disaster Med. Public Disaster Prevention and Management = Disaster Prev Manag Disaster Prevention and Management = Disaster Prev. Manag. Disaster Recovery Planning for Communications and Critical Infrastructure = Artech Hse Telecom S Disaster Recovery Planning for Communications and Critical Infrastructure = Artech. Hse. Telecom. S. Disasters=Disasters;; Disasters = Disasters Discharge planning update = Disch Plann Update Discharge Planning Update = Disch. Plann. Update Discipline in The Global Economy: International Finance and The End of Liberalism = New Polit Econ Ser Discipline in The Global Economy: International Finance and The End of Liberalism = New. Polit. Econ. Ser. Disciplines and Doctorates = High Educ Dynam Disciplines and Doctorates = High. Educ. Dynam. Discontented Miracle: Growth, Conflict, and Institutional Adaptations in China = Ser Contemp China Discontented Miracle: Growth, Conflict, and Institutional Adaptations in China = Ser. Contemp. China Discontinuous Conduction in The Heart = Am Heart Monogr S Discontinuous Conduction in The Heart = Am. Heart Monogr. S. Discontinuous Dynamical Systems On Time-varying Domains = Nonlinear Phys Sci Discontinuous Dynamical Systems On Time-varying Domains = Nonlinear. Phys. Sci. Discontinuous Galerkin Methods for Solving Elliptic and Parabolic Equations: Theory and Implementation = Front Appl Math Discontinuous Galerkin Methods for Solving Elliptic and Parabolic Equations: Theory and Implementation = Front. Appl. Math. Discontinuous Galerkin Methods = Lect Notes Comp Sci Discontinuous Galerkin Methods = Lect. Notes. Comp. Sci. Discontinuous Systems = Commun Control Eng Discontinuous Systems = Commun. Control. Eng. Discourse and Struggle in Minority Language Policy Formation: Corsican Language Policy in The Eu Context of Governance = Palg Stud Minor Lang Discourse and Struggle in Minority Language Policy Formation: Corsican Language Policy in The Eu Context of Governance = Palg. Stud. Minor. Lang. Discourse and Transformation in Central and Eastern Europe = Lang Glob Discourse and Transformation in Central and Eastern Europe = Lang. Glob. Discourse Approaches to Politics, Society and Culture = Dis Appl Pol Soc Cul Discourse Approaches to Politics, Society and Culture = Dis. Appl. Pol. Soc. Cul. Discourse & Communication = Discourse Commun Discourse & Communication = Discourse Commun. Discourse, Interaction and Communication = Phil Stud S Discourse, Interaction and Communication = Phil. Stud. S. Discourse Markers in Colombian Spanish = Cogn Linguist Res Discourse Markers in Colombian Spanish = Cogn. Linguist. Res. Discourse Markers = Prag Beyond New Ser Discourse Markers = Prag. Beyond. New. Ser. Discourse of Palestinian-israeli Relations: Persistent Analytics and Practices = Middle E Stud Hist P Discourse of Palestinian-israeli Relations: Persistent Analytics and Practices = Middle. E. Stud. Hist. P. Discourse processes = Discourse Process Discourse Processes = Discourse Process Discourse Processes = Discourse Process. Discourses in Mathematics and its Applications = Discourses Math. Appl. Discourse & Society = Discourse Soc Discourse & Society = Discourse Soc. Discourse & Society = niscl. Soc. Discourses of Deficit = Palg Stud Prof Organ Discourses of Deficit = Palg. Stud. Prof. Organ. Discourses On Society = Sociol Sci Discourses On Society = Sociol. Sci. Discourse Studies = Discourse Stud Discourse Studies = Discourse Stud. Discourse Studies in Cognitive Linguistics = Amst Stud Theory His Discourse Studies in Cognitive Linguistics = Amst. Stud. Theory. His. Discourse-studies in The Cultural Politics of Education = Discourse-abingdon Discourse-studies in The Cultural Politics of Education = Discourse-abingdon. Discover = Discover Discoveries and Research Prospects From 6- to 10- Meter-class Telescopes Ii = Proc Spie Discoveries and Research Prospects From 6- to 10- Meter-class Telescopes Ii = Proc. Spie. Discoveries and Research Prospects From 6- to 10- Meter-class Telescopes Ii = P Soc Photo-opt Ins Discoveries and Research Prospects From 6- to 10- Meter-class Telescopes Ii = P. Soc. Photo-opt. Ins. Discoveries and Research Prospects From 8- to 10-meter-class Telescopes = Proc Spie Discoveries and Research Prospects From 8- to 10-meter-class Telescopes = Proc. Spie. Discoveries and Research Prospects From 8- to 10-meter-class Telescopes = P Soc Photo-opt Ins Discoveries and Research Prospects From 8- to 10-meter-class Telescopes = P. Soc. Photo-opt. Ins. Discoveries in Spinal Cord Injury Research: From Bench to Bedside = Ann Ny Acad Sci Discoveries in Spinal Cord Injury Research: From Bench to Bedside = Ann. Ny. Acad. Sci. Discovering Mathematics With Magma: Reducing The Abstract to The Concrete = Algorithm Comp Math Discovering Mathematics With Magma: Reducing The Abstract to The Concrete = Algorithm. Comp. Math. Discovering Patterns in Mathematics and Poetry = Int Forsch Allg Vgl Discovering Patterns in Mathematics and Poetry = Int. Forsch. Allg. Vgl. Discovering Reality: Feminist Perspectives On Epistemology, Metaphysics, Methodology, and Philosophy of Science = Synth Libr Discovering Reality: Feminist Perspectives On Epistemology, Metaphysics, Methodology, and Philosophy of Science = Synth. Libr. Discovering Successful Pathways in Children's Development: Mixed Methods in The Study of Childhood and Family Life = Mac Fdn Men Discovering Successful Pathways in Children's Development: Mixed Methods in The Study of Childhood and Family Life = Mac. Fdn. Men. Discovery and innovation = Discov Innov Discovery and Innovation = Discov Innovat Discovery and Innovation = Discov. Innovat. Discovery medicine = Discov Med Discovery Medicine = Discov. Med. Discovery of Historicity in German Idealism and Historism = St Econ Ethic Philos Discovery of Historicity in German Idealism and Historism = St. Econ. Ethic. Philos. Discovery of Single Top Quark Production = Springer Theses-reco Discovery of Single Top Quark Production = Springer. Theses-reco. Discovery of Weak Neutral Currents: The Weak Interaction Before and After = Aip Conf Proc Discovery of Weak Neutral Currents: The Weak Interaction Before and After = Aip. Conf. Proc. Discovery Science = Lect Notes Artif Int Discovery Science = Lect. Notes. Artif. Int. Discovery Science, Proceedings = Lect Notes Artif Int Discovery Science, Proceedings = Lect. Notes. Artif. Int. Discovery Science, Proceedings = Lect Notes Comput Sc Discovery Science, Proceedings = Lect. Notes. Comput. Sc. Discrete 08: Symposium On Prospects in The Physics of Discrete Symmetries = J Phys Conf Ser Discrete 08: Symposium On Prospects in The Physics of Discrete Symmetries = J. Phys. Conf. Ser. Discrete and Computational Geometry = Lect Notes Comput Sc Discrete and Computational Geometry = Lect. Notes. Comput. Sc. Discrete and Continuous Dynamical Systems = Discret Contin Dyn S Discrete and Continuous Dynamical Systems = Discret. Contin. Dyn. S. Discrete and Continuous Dynamical Systems = Discrete Cont Dyn-a Discrete and Continuous Dynamical Systems = Discrete Cont. Dyn-a. Discrete and Continuous Dynamical Systems = Discrete Cont Dyn S Discrete and Continuous Dynamical Systems = Discrete Cont. Dyn. S. Discrete and Continuous Dynamical Systems = Discrete Contin. Dynam. Systems Discrete and Continuous Dynamical Systems-series B = Discrete Cont Dyn-b Discrete and Continuous Dynamical Systems-series B = Discrete Cont. Dyn-b. Discrete Applied Mathematics = Discrete Appl. Math. Discrete Applied Mathematics = Discrete Appl Math Discrete Applied Mathematics = Discrete Appl. Math. Discrete & Computational Geometry = Discrete Comput. Geom. Discrete & Computational Geometry = Discrete Comput Geom Discrete & Computational Geometry = Discrete Comput. Geom. Discrete Dynamics in Nature and Society = Discrete Dyn Nat Soc Discrete Dynamics in Nature and Society = Discrete Dyn. Nat. Soc. Discrete-event Control of Stochastic Networks: Multimodularity and Regularity = Lect Notes Math Discrete-event Control of Stochastic Networks: Multimodularity and Regularity = Lect. Notes. Math. Discrete Event Dynamic Systems-theory and Applications = Discrete Event Dyn S Discrete Event Dynamic Systems-theory and Applications = Discrete Event Dyn. S. Discrete-event Modeling and Simulation: A Practitioner's Approach = Comput Anal Synth De Discrete-event Modeling and Simulation: A Practitioner's Approach = Comput. Anal. Synth. De. Discrete Event Systems: Modeling and Control = Prog Syst C Discrete Event Systems: Modeling and Control = Prog. Syst. C. Discrete Geometry, Combinatorics and Graph Theory = Lect Notes Comput Sc Discrete Geometry, Combinatorics and Graph Theory = Lect. Notes. Comput. Sc. Discrete Geometry for Computer Imagery = Lect Notes Comput Sc Discrete Geometry for Computer Imagery = Lect. Notes. Comput. Sc. Discrete Geometry for Computer Imagery, Proceedings = Lect Notes Comput Sc Discrete Geometry for Computer Imagery, Proceedings = Lect. Notes. Comput. Sc. Discrete Groups and Geometric Structures = Contemp Math Discrete Groups and Geometric Structures = Contemp. Math. Discrete Groups and Geometry = Lond Math S Discrete Groups and Geometry = Lond. Math. S. Discrete Integrable Systems = Lect Notes Phys Discrete Integrable Systems = Lect. Notes. Phys. Discrete Integrable Systems: Qrt Maps and Elliptic Surfaces = Springer Monogr Math Discrete Integrable Systems: Qrt Maps and Elliptic Surfaces = Springer. Monogr. Math. Discrete Inverse Problems: Insight and Algorithms = Fund Algorithms Discrete Inverse Problems: Insight and Algorithms = Fund. Algorithms Discrete Mathematics and Applications = Discrete Math. Appl. Discrete Mathematics and Theoretical Computer Science = Discrete Math Theor Discrete Mathematics and Theoretical Computer Science = Discrete Math. Theor. Discrete Mathematics and Theoretical Computer Science = Discrete Math. Theor. Comput. Sci. Discrete Mathematics and Theoretical Computer Science = Discret Math Theor C Discrete Mathematics and Theoretical Computer Science = Discret. Math. Theor. C. Discrete Mathematics and Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Discrete Mathematics and Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Discrete Mathematics and Theoretical Computer Science (series) = Discrete Math & Theo Discrete Mathematics and Theoretical Computer Science (series) = Discrete Math. &. Theo. Discrete Mathematics = Discrete Math. Discrete Mathematics = Discrete Math Discrete Mathematics = Discrete Math. Discrete Mathematics = Universitext Discrete Mathematics = Universitext. Discrete Methods in Epidemiology = Dimacs Ser Discret M Discrete Methods in Epidemiology = Dimacs. Ser. Discret. M. Discrete Models of Fluid Dynamics = S Adv Math Discrete Models of Fluid Dynamics = S. Adv. Math. Discrete Nonlinear Schrodinger Equation: Mathematical Analysis, Numerical Computations and Physical Perspectives = Springer Trac Mod Ph Discrete Nonlinear Schrodinger Equation: Mathematical Analysis, Numerical Computations and Physical Perspectives = Springer. Trac. Mod. Ph. Discrete Optimization = Discrete Optim Discrete Optimization = Discrete Optim. Discrete Optimization for Tsp-like Genome Mapping Problems = Gen-res Issues Discrete Optimization for Tsp-like Genome Mapping Problems = Gen-res. Issues. Discrete Optimization With Interval Data: Minmax Regret and Fuzzy Approach = Stud Fuzz Soft Comp Discrete Optimization With Interval Data: Minmax Regret and Fuzzy Approach = Stud. Fuzz. Soft. Comp. Discrete Oscillator Design: Linear, Nonlinear, Transient, and Noise Domains = Artech Hse Microw Li Discrete Oscillator Design: Linear, Nonlinear, Transient, and Noise Domains = Artech. Hse. Microw. Li. Discrete Random Signal Processing and Filtering Primer With Matlab = Electr Eng Appl Sign Discrete Random Signal Processing and Filtering Primer With Matlab = Electr. Eng. Appl. Sign. Discrete-time High Order Neural Control: Trained With Kalman Filtering = Stud Comput Intell Discrete-time High Order Neural Control: Trained With Kalman Filtering = Stud. Comput. Intell. Discrete-time Sliding Mode Control: Multrat Output Feedback Approach = Lect Notes Contr Inf Discrete-time Sliding Mode Control: Multrat Output Feedback Approach = Lect. Notes. Contr. Inf. Discursive Constructions of Identity in European Politics = Lang Glob Discursive Constructions of Identity in European Politics = Lang. Glob. Discursive Politics of Gender Equality = Routl Ecpr Stud Eur Discursive Politics of Gender Equality = Routl. Ecpr. Stud. Eur. Discussion Concerning The New German Federal Guidelines On Waste Management = Vdi Bericht Discussion Concerning The New German Federal Guidelines On Waste Management = Vdi. Bericht. Discussiones Mathematicae = Discuss. Math. Algebra Stochastic Methods Discussiones Mathematicae = Discuss. Math. Differential Incl. Discussiones Mathematicae = Discuss. Math. Graph Theory Discussion Paper - Nordiska Afrikainstitutet = Discuss Pap Discussion Paper - Nordiska Afrikainstitutet = Discuss. Pap. Discussions in Neuroscience = Discuss Neurosci Discussions in Neuroscience = Discuss. Neurosci. Discussions of the Faraday Society = Discuss Faraday Soc Discussions of the Faraday Society = Discuss. Faraday Soc. Discussions of The Faraday Society = Discuss Faraday Soc Discussions of The Faraday Society = Discuss. Faraday Soc. Discussions On Gustav Landauer = Condit Jud Discussions On Gustav Landauer = Condit. Jud. Disease-a-Month = Dis. Mon. Disease-A-Month=Dis Mon;; Disease-a-month : DM = Dis Mon Disease and Security = Contemp Secur Stud Disease and Security = Contemp. Secur. Stud. Disease Gene Identification: Methods and Protocols = Methods Mol Biol Disease Gene Identification: Methods and Protocols = Methods Mol. Biol. Disease in Evolution = Ann Ny Acad Sci Disease in Evolution = Ann. Ny. Acad. Sci. Disease management advisor = Dis Manag Advis Disease Management = Dis Manage Disease Management = Dis. Manage. Disease management : DM = Dis Manag Disease Management & Health Outcomes = Dis Manag Health Out Disease Management & Health Outcomes = Dis. Manag. Health Out. Disease markers = Dis Markers Disease Markers=Dis Markers;; Disease Markers = Dis Markers Disease Markers = Dis. Markers Disease Markers in Exhaled Breath = Nato Sci Ser I Life Disease Markers in Exhaled Breath = Nato. Sci. Ser. I. Life. Disease Models & Mechanisms = Dis Model Mech Disease Models & Mechanisms = Dis. Model. Mech. Disease Progression and Carcinogenesis in The Gastrointestinal Tract = Falk Symp Disease Progression and Carcinogenesis in The Gastrointestinal Tract = Falk. Symp. Disease Progression and Disease Prevention in Hepatology and Gastroenterology = Falk Symp Disease Progression and Disease Prevention in Hepatology and Gastroenterology = Falk. Symp. Diseases and Insects in Forest Nurseries = Colloq Inra Diseases and Insects in Forest Nurseries = Colloq. Inra. Diseases and Parasites of Flounder (platichthys Flesus) in The Baltic Sea = Balt Mar Biolog Publ Diseases and Parasites of Flounder (platichthys Flesus) in The Baltic Sea = Balt. Mar. Biolog. Publ. Diseases in Zoo Animals = Erkrankg Zootiere Diseases in Zoo Animals = Erkrankg. Zootiere. Diseases of aquatic organisms = Dis Aquat Organ Diseases of Aquatic Organisms = Dis Aquat Organ Diseases of Aquatic Organisms = Dis. Aquat. Organ. Diseases of Dna Repair = Adv Exp Med Biol Diseases of Dna Repair = Adv. Exp. Med. Biol. Diseases of the chest = Dis Chest Diseases of the Chest = Dis. Chest Diseases of The Chest = Dis Chest Diseases of The Chest = Dis. Chest Diseases of the colon and rectum = Dis Colon Rectum Diseases of the Colon and Rectum = Dis. Colon Rectum Diseases of The Colon and Rectum=Dis Colon Rectum;; Diseases of The Colon & Rectum = Dis Colon Rectum Diseases of The Colon & Rectum = Dis. Colon Rectum Diseases of the Esophagus = Dis. Esophagus Diseases of The Esophagus=Dis Esophagus;; Diseases of The Esophagus = Dis Esophagus Diseases of The Esophagus = Dis. Esophagus Diseases of the esophagus : official journal of the International Society for Diseases of the Esophagus / I.S.D.E = Dis Esophagus Diseases of the nervous system = Dis Nerv Syst Diseases of the Nervous System = Dis. Nerv. Syst. Diseases of The Nervous System = Dis Nerv Syst Diseases of The Nervous System = Dis. Nerv. Syst. Disegnare Idee Immagini-ideas Images = Disegnare Idee Immag Disegnare Idee Immagini-ideas Images = Disegnare Idee Immag. Disengagement From Southwest Africa = E S Relat S Disengagement From Southwest Africa = E. S. Relat. S. Disign and Control of Workflow Processes = Lect Notes Comput Sc Disign and Control of Workflow Processes = Lect. Notes. Comput. Sc. Disinfection By-products in Drinking Water: Occurrence, Formation, Health Effects, and Control = Acs Sym Ser Disinfection By-products in Drinking Water: Occurrence, Formation, Health Effects, and Control = Acs. Sym. Ser. Disinfection By Sodium Hypochlorite: Dialysis Applications = Contrib Nephrol Disinfection By Sodium Hypochlorite: Dialysis Applications = Contrib. Nephrol. Disintegration of Yugoslavia = Yearb Eur S Disintegration of Yugoslavia = Yearb. Eur. S. Diskretnaya Matematika = Diskret. Mat. Diskretnyy Analiz i Issledovanie Operatsiy = Diskret. Anal. Issled. Oper. Diskretnyy Analiz i Issledovanie Operatsiy = Diskretn. Anal. Issled. Oper. Ser. 1 Diskretnyy Analiz i Issledovanie Operatsiy = Diskretn. Anal. Issled. Oper. Ser. 2 Disks of Galaxies: Kinematics, Dynamics and Perturbations = Astr Soc P Disks of Galaxies: Kinematics, Dynamics and Perturbations = Astr. Soc. P. Disks, Planetesimals, and Planets, Proceedings = Astr Soc P Disks, Planetesimals, and Planets, Proceedings = Astr. Soc. P. Diskussionen zur archäologischen Bauforschung = DiskAB Diskussionsforum medizinische Ethik = Diskussionsforum Med Ethik Diskussionsforum Medizinische Ethik = Diskussionsforum Med. Ethik Dislocated Elements in Discourse = Routl Stud Ger Ling Dislocated Elements in Discourse = Routl. Stud. Ger. Ling. Dislocated Elements in Discourse = Rout Stud German Lin Dislocated Elements in Discourse = Rout. Stud. German. Lin. Dislocation and Degradation of Proteins From The Endoplasmic Reticulum = Curr Top Microbiol Dislocation and Degradation of Proteins From The Endoplasmic Reticulum = Curr. Top. Microbiol. Dislocation and Reorientation: Exile, Division and The End of Communism in German Culture and Politics = Ger Monitor Dislocation and Reorientation: Exile, Division and The End of Communism in German Culture and Politics = Ger. Monitor. Dislocation and Resettlement in Development: From Third World to The World of The Third = Routl Stud Dev Soc Dislocation and Resettlement in Development: From Third World to The World of The Third = Routl. Stud. Dev. Soc. Dislocation Dynamics During Plastic Deformation = Springer Ser Mater S Dislocation Dynamics During Plastic Deformation = Springer. Ser. Mater. S. Dislocation Theory: A Five Year Retrospective = Defect Diffus Forum Dislocation Theory: A Five Year Retrospective = Defect. Diffus. Forum. Dismantlement of Destruction of Chemical, Nuclear, and Conventional Weapons = Nato Sci S 1 Disarm Dismantlement of Destruction of Chemical, Nuclear, and Conventional Weapons = Nato. Sci. S. 1. Disarm. Dismantling The East-west Dichotomy: Essays in Honour of Jan Van Bremen = Jpn Anthropol Worksh Dismantling The East-west Dichotomy: Essays in Honour of Jan Van Bremen = Jpn. Anthropol. Worksh. Disorder and Fracture = Nato Adv Sci I B-phy Disorder and Fracture = Nato. Adv. Sci. I. B-phy. Disordered Alloys = Springer Trac Mod Ph Disordered Alloys = Springer. Trac. Mod. Ph. Disordered Alloys = Springer Tr Mod Phys Disordered Alloys = Springer. Tr. Mod. Phys. Disordered and Complex Systems = Aip Conf Proc Disordered and Complex Systems = Aip. Conf. Proc. Disordered Materials and Interfaces = Mater Res Soc Symp P Disordered Materials and Interfaces = Mater. Res. Soc. Symp. P. Disordered Materials - Current Developments - = Mater Sci Forum Disordered Materials - Current Developments - = Mater. Sci. Forum. Disordered Solids = E Maj Int S Disordered Solids = E. Maj. Int. S. Disorders of Consciousness = Ann Ny Acad Sci Disorders of Consciousness = Ann. Ny. Acad. Sci. Disorders of Synaptic Plasticity and Schizophrenia = Int Rev Neurobiol Disorders of Synaptic Plasticity and Schizophrenia = Int. Rev. Neurobiol. Disorders of The Respiratory Tract: Common Challenges in Primary Care = Curr Clin Pract Disorders of The Respiratory Tract: Common Challenges in Primary Care = Curr. Clin. Pract. Disoriented State: Shifts in Governmentality, Territoriality and Governance = Environ Policy Disoriented State: Shifts in Governmentality, Territoriality and Governance = Environ. Policy. Disp = Disp Dispersion, Complex Analysis and Optical Spectroscopy = Springer Tr Mod Phys Dispersion, Complex Analysis and Optical Spectroscopy = Springer. Tr. Mod. Phys. Dispersive Transport Equations and Multiscale Models = Ima V Math Dispersive Transport Equations and Multiscale Models = Ima. V. Math. Dispersive Transport Equations and Multiscale Models = Ima Vol Math Appl Dispersive Transport Equations and Multiscale Models = Ima. Vol. Math. Appl. Displaced Persons and Refugees = Colloq Semi Displaced Persons and Refugees = Colloq. Semi. Display Devices and Systems Ii = P Soc Photo-opt Ins Display Devices and Systems Ii = P. Soc. Photo-opt. Ins. Display Devices and Systems = P Soc Photo-opt Ins Display Devices and Systems = P. Soc. Photo-opt. Ins. Displays = Displays Display, Solid-state Lighting, Photovoltaics, and Optoelectronics in Energy Ii = Proc Spie Display, Solid-state Lighting, Photovoltaics, and Optoelectronics in Energy Ii = Proc. Spie. Display Systems = P Soc Photo-opt Ins Display Systems = P. Soc. Photo-opt. Ins. Display Technologies and Applications for Defense, Security, and Avionics Ii = P Soc Photo-opt Ins Display Technologies and Applications for Defense, Security, and Avionics Ii = P. Soc. Photo-opt. Ins. Display Technologies and Applications for Defense, Security, and Avionics = Proc Spie Display Technologies and Applications for Defense, Security, and Avionics = Proc. Spie. Display Technologies and Applications for Defense, Security, and Avionics = P Soc Photo-opt Ins Display Technologies and Applications for Defense, Security, and Avionics = P. Soc. Photo-opt. Ins. Display Technologies and Applications for Defense, Security, and Avionics V and Enhanced and Synthetic Vision 2011 = Proc Spie Display Technologies and Applications for Defense, Security, and Avionics V and Enhanced and Synthetic Vision 2011 = Proc. Spie. Display Technologies Iii = P Soc Photo-opt Ins Display Technologies Iii = P. Soc. Photo-opt. Ins. Display Technologies Ii = P Soc Photo-opt Ins Display Technologies Ii = P. Soc. Photo-opt. Ins. Display Technologies = P Soc Photo-opt Ins Display Technologies = P. Soc. Photo-opt. Ins. Disposable Bioreactors = Adv Biochem Eng Biot Disposable Bioreactors = Adv. Biochem. Eng. Biot. Disposal of Weapon Plutonium = Nato Sci S 1 Disarm Disposal of Weapon Plutonium = Nato. Sci. S. 1. Disarm. Dispositio-revista Hispanica De Semiotica Literaria = Dispositio Dispositio-revista Hispanica De Semiotica Literaria = Dispositio. Dispute Resolution Journal = Dispute Resolut J Dispute Resolution Journal = Dispute Resolut. J. Disributed Coordination of Multi-agent Networks: Emergent Problems, Models, and Issues = Commun Control Eng Disributed Coordination of Multi-agent Networks: Emergent Problems, Models, and Issues = Commun. Control. Eng. Dissemination of Information in Optical Networks: From Technology to Algorithms = Texts Theor Comput S Dissemination of Information in Optical Networks: From Technology to Algorithms = Texts. Theor. Comput. S. Dissemination of Information in Rural Communities of Africa = Ifla Alp Proj Rep Dissemination of Information in Rural Communities of Africa = Ifla. Alp. Proj. Rep. Dissent and Cultural Resistance in Asia's Cities = Routl Contemp Asia Dissent and Cultural Resistance in Asia's Cities = Routl. Contemp. Asia. Dissent and Marginality = Stud Lit Relig Dissent and Marginality = Stud. Lit. Relig. Dissent = Dissent Dissertation abstracts = Diss Abstr Dissertationes Botanicae = Diss. Bot. Dissertationes Mathematicae = Diss Math Dissertationes Mathematicae = Diss. Math. Dissertationes Mathematicae (Rozprawy Matematyczne) = Dissertationes Math. (Rozprawy Mat.) Dissertationes Mathematicae Universitatis Tartuensis = Diss. Math. Univ. Tartu. Dissertationes Pharmaceuticae Et Pharmacologicae = Dissert Pharm Pharma Dissertationes Pharmaceuticae Et Pharmacologicae = Dissert. Pharm. Pharma. Dissertations Abstracts: international abstracts of dissertation available in microfilm or as xerographic reproductions = DA Dissertation Summaries in Mathematics = Diss. Summ. Math. Dissipative Phase Transitions = Ser Adv Math Appl Sc Dissipative Phase Transitions = Ser. Adv. Math. Appl. Sc. Dissipative Quantum Chaos and Decoherence = Springer Tr Mod Phys Dissipative Quantum Chaos and Decoherence = Springer. Tr. Mod. Phys. Dissipative Structures in Transport Processes and Combustion = Springer Series Syne Dissipative Structures in Transport Processes and Combustion = Springer. Series. Syne. Dissociation in Argumentative Discussions: A Pragma-dialectical Perspective = Argum Lib Dissociation in Argumentative Discussions: A Pragma-dialectical Perspective = Argum. Lib. Dissociation in Traumatized Children and Adolescents: Theory and Clinical Interventions = Rout Psychsoc Stress Dissociation in Traumatized Children and Adolescents: Theory and Clinical Interventions = Rout. Psychsoc. Stress. Dissociative Recombination = Nato Adv Sci Inst Se Dissociative Recombination = Nato. Adv. Sci. Inst. Se. Dissolution Technologies = Dissolut Technol Dissolution Technologies = Dissolut. Technol. Distance and Blended Learning in Asia = Open Flex Learn Ser Distance and Blended Learning in Asia = Open. Flex. Learn. Ser. Distance Education = Distance Educ Distance Education = Distance Educ. Distance Education for Language Teachers = Multiling Distance Education for Language Teachers = Multiling. Distance Learning, Multimedia and Video Technologies = Rec Adv Comput Eng Distance Learning, Multimedia and Video Technologies = Rec. Adv. Comput. Eng. Distant Alliances = Garl Ref L Distant Alliances = Garl. Ref. L. Distillation and Absorption '97, Vols 1 and 2 = Inst Chem E Distillation and Absorption '97, Vols 1 and 2 = Inst. Chem. E. Distinguished Dissertations in Computer Science = Disting. Diss. Comput. Sci. Distinguished Figures in Mechanism and Machine Science: Their Contributions and Legacies, Pt 1 = Hist Mech Mach Sci Distinguished Figures in Mechanism and Machine Science: Their Contributions and Legacies, Pt 1 = Hist. Mech. Mach. Sci. Distinguished Figures in Mechanism and Machine Science: Their Contributions and Legacies, Pt 2 = Hist Mech Mach Sci Distinguished Figures in Mechanism and Machine Science: Their Contributions and Legacies, Pt 2 = Hist. Mech. Mach. Sci. Distorted Time Preferences and Structural Change in The Energy Industry = Sustain Innov Distorted Time Preferences and Structural Change in The Energy Industry = Sustain. Innov. Distraction Osteogenesis and Tissue Engineering = Cranio Grow Distraction Osteogenesis and Tissue Engineering = Cranio. Grow. Distributed Algorithms = Lect Notes Comput Sc Distributed Algorithms = Lect. Notes. Comput. Sc. Distributed Algorithms // = Lect Notes Comput Sc Distributed Algorithms // = Lect. Notes. Comput. Sc. Distributed Algorithms, Proceedings = Lect Notes Comput Sc Distributed Algorithms, Proceedings = Lect. Notes. Comput. Sc. Distributed and Multiplexed Fiber Optic Sensors Iii = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors Iii = P. Soc. Photo-opt. Ins. Distributed and Multiplexed Fiber Optic Sensors Ii = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors Ii = P. Soc. Photo-opt. Ins. Distributed and Multiplexed Fiber Optic Sensors Iv = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors Iv = P. Soc. Photo-opt. Ins. Distributed and Multiplexed Fiber Optic Sensors = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors = P. Soc. Photo-opt. Ins. Distributed and Multiplexed Fiber Optic Sensors Vi = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors Vi = P. Soc. Photo-opt. Ins. Distributed and Multiplexed Fiber Optic Sensors V = P Soc Photo-opt Ins Distributed and Multiplexed Fiber Optic Sensors V = P. Soc. Photo-opt. Ins. Distributed and Parallel Computing = Lect Notes Comput Sc Distributed and Parallel Computing = Lect. Notes. Comput. Sc. Distributed and Parallel Databases = Distrib Parallel Dat Distributed and Parallel Databases = Distrib. Parallel Dat. Distributed and Parallel Systems: Cluster and Grid Computing = Kluwer Int Ser Eng C Distributed and Parallel Systems: Cluster and Grid Computing = Kluwer. Int. Ser. Eng. C. Distributed and Parallel Systems: Cluster and Grid Computing = Springer Int Ser Eng Distributed and Parallel Systems: Cluster and Grid Computing = Springer. Int. Ser. Eng. Distributed and Parallel Systems: Cluster and Grid Computing = Spring Int Ser Eng C Distributed and Parallel Systems: Cluster and Grid Computing = Spring. Int. Ser. Eng. C. Distributed and Parallel Systems : From Instruction Parallelism to Cluster Computing = Kluwer Int Ser Eng C Distributed and Parallel Systems : From Instruction Parallelism to Cluster Computing = Kluwer. Int. Ser. Eng. C. Distributed and Parallel Systems : From Instruction Parallelism to Cluster Computing = Springer Int Ser Eng Distributed and Parallel Systems : From Instruction Parallelism to Cluster Computing = Springer. Int. Ser. Eng. Distributed Applications and Interoperable Systems Ii = Int Fed Info Proc Distributed Applications and Interoperable Systems Ii = Int. Fed. Info. Proc. Distributed Applications and Interoperable Systems = Lect Notes Comput Sc Distributed Applications and Interoperable Systems = Lect. Notes. Comput. Sc. Distributed Applications and Interoperable Systems, Proceedings = Lect Notes Comput Sc Distributed Applications and Interoperable Systems, Proceedings = Lect. Notes. Comput. Sc. Distributed Applications and Interoperable Systems, Processings = Lect Notes Comput Sc Distributed Applications and Interoperable Systems, Processings = Lect. Notes. Comput. Sc. Distributed Artificial Intelligence Meets Machine Learning = Lect Notes Artif Int Distributed Artificial Intelligence Meets Machine Learning = Lect. Notes. Artif. Int. Distributed Artificial Intelligence : Theory and Praxis = Euro C Comp Distributed Artificial Intelligence : Theory and Praxis = Euro. C. Comp. Distributed Cluster and Grid Computing = Distr Clust Grid Com Distributed Cluster and Grid Computing = Distr. Clust. Grid Com. Distributed Communities On The Web = Lect Notes Comput Sc Distributed Communities On The Web = Lect. Notes. Comput. Sc. Distributed Communities On The Web, Proceedings = Lect Notes Comput Sc Distributed Communities On The Web, Proceedings = Lect. Notes. Comput. Sc. Distributed Computer Control Systems 1991 = Ifac Work S Distributed Computer Control Systems 1991 = Ifac. Work. S. Distributed Computing and Artificial Intelligence = Adv Intel Soft Compu Distributed Computing and Artificial Intelligence = Adv. Intel. Soft. Compu. Distributed Computing and Internet Technology, Proceedings = Lect Notes Comput Sc Distributed Computing and Internet Technology, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing and Networking = Lect Notes Comput Sc Distributed Computing and Networking = Lect. Notes. Comput. Sc. Distributed Computing and Networking, Proceedings = Lect Notes Comput Sc Distributed Computing and Networking, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing, Artificial Intelligence, Bioinformatics, Soft Computing, and Ambient Assisted Living, Pt Ii, Proceedings = Lect Notes Comput Sc Distributed Computing, Artificial Intelligence, Bioinformatics, Soft Computing, and Ambient Assisted Living, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing = Distrib Comput Distributed Computing = Distrib. Comput. Distributed Computing in Sensor Systems = Lect Notes Comput Sc Distributed Computing in Sensor Systems = Lect. Notes. Comput. Sc. Distributed Computing in Sensor Systems, Proceedings = Lect Notes Comput Sc Distributed Computing in Sensor Systems, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing: Iwdc 2003 = Lect Notes Comput Sc Distributed Computing: Iwdc 2003 = Lect. Notes. Comput. Sc. Distributed Computing - Iwdc 2004, Proceedings = Lect Notes Comput Sc Distributed Computing - Iwdc 2004, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing - Iwdc 2005, Proceedings = Lect Notes Comput Sc Distributed Computing - Iwdc 2005, Proceedings = Lect. Notes. Comput. Sc. Distributed Computing = Lect Notes Comput Sc Distributed Computing = Lect. Notes. Comput. Sc. Distributed Computing, Proceedings = Lect Notes Comput Sc Distributed Computing, Proceedings = Lect. Notes. Comput. Sc. Distributed Consensus in Multi-vehicle Cooperative Control: Theory and Applications = Commun Control Eng Distributed Consensus in Multi-vehicle Cooperative Control: Theory and Applications = Commun. Control. Eng. Distributed Control of Robotic Networks: A Mathematical Approach to Motion Coordination Algorithms = Princ Ser Appl Math Distributed Control of Robotic Networks: A Mathematical Approach to Motion Coordination Algorithms = Princ. Ser. Appl. Math. Distributed Cooperative Laboratories: Networking, Instrumentation, and Measurements = Sig Com Tec Distributed Cooperative Laboratories: Networking, Instrumentation, and Measurements = Sig. Com. Tec. Distributed Cooperative Laboratories: Networking, Instrumentation, and Measurements = Signals Commun Techn Distributed Cooperative Laboratories: Networking, Instrumentation, and Measurements = Signals. Commun. Techn. Distributed Coordination Approach to Reconfigurable Process Control = Springer Ser Adv Man Distributed Coordination Approach to Reconfigurable Process Control = Springer. Ser. Adv. Man. Distributed Embedded Control Systems: Improving Dependability With Coherent Design = Adv Ind Control Distributed Embedded Control Systems: Improving Dependability With Coherent Design = Adv. Ind. Control Distributed, High-performance and Grid Computing in Computational Biology, Proceedings = Lect Notes Comput Sc Distributed, High-performance and Grid Computing in Computational Biology, Proceedings = Lect. Notes. Comput. Sc. Distributed Intelligence Systems = Ifac Symp Series Distributed Intelligence Systems = Ifac. Symp. Series. Distributed Interactive Simulation Systems Applications = P Soc Photo-opt Ins Distributed Interactive Simulation Systems Applications = P. Soc. Photo-opt. Ins. Distributed Leadership: Different Perspectives = Stud Educ Leadersh Distributed Leadership: Different Perspectives = Stud. Educ. Leadersh. Distributed Memory Computing = Lect Notes Comput Sc Distributed Memory Computing = Lect. Notes. Comput. Sc. Distributed Multimedia Information Retrieval = Lect Notes Comput Sc Distributed Multimedia Information Retrieval = Lect. Notes. Comput. Sc. Distributed Parameter Control Systems = Lect Notes Pure Appl Distributed Parameter Control Systems = Lect. Notes. Pure. Appl. Distributed Processing Product Reports = Distrib Process Prod Distributed Processing Product Reports = Distrib. Process. Prod. Distributed Reduplication = Linguist Inq Monogr Distributed Reduplication = Linguist. Inq. Monogr. Distributed Simulation, 1989 = Simul Series Distributed Simulation, 1989 = Simul. Series. Distributed Systems Engineering = Distrib. Sys. Eng. Distributional Aspects of Social Security and Social Security Reform = Nber Conf R Distributional Aspects of Social Security and Social Security Reform = Nber. Conf. R. Distributional Impacts of Climate Change and Disasters: Concepts and Cases = New Horiz Environ Ec Distributional Impacts of Climate Change and Disasters: Concepts and Cases = New. Horiz. Environ. Ec. Distribution and Phenotype of Proliferating Cells in The Forebrain of Adult Macaque Monkeys After Transient Global Cerebral Ischemia = Adv Anat Embryol Cel Distribution and Phenotype of Proliferating Cells in The Forebrain of Adult Macaque Monkeys After Transient Global Cerebral Ischemia = Adv. Anat. Embryol. Cel. Distribution of Cataracts in The Population and Influencing Factors = Dev Ophthalmol Distribution of Cataracts in The Population and Influencing Factors = Dev. Ophthalmol. Distributions and Operators = Grad Texts Math Distributions and Operators = Grad. Texts. Math. Distributions, Sobolev Spaces, Elliptic Equations = Ems Textb Math Distributions, Sobolev Spaces, Elliptic Equations = Ems. Textb. Math. Distribution Theory of Algebraic Numbers = Degruyter Expos Math Distribution Theory of Algebraic Numbers = Degruyter. Expos. Math. District nursing = Dist Nurs District Nursing = Dist. Nurs. District of Columbia Dental Society journal. District of Columbia Dental Society = J Dist Columbia Dent Soc Diuretics : Clinical Pharmacology and Uses in Cardiovascular Medicine, Nephrology and Hepatology = Pr Pharm Cl Diuretics : Clinical Pharmacology and Uses in Cardiovascular Medicine, Nephrology and Hepatology = Pr. Pharm. Cl. Diuretics Iv : Chemistry, Pharmacology and Clinical Applications = Int Congr Ser Diuretics Iv : Chemistry, Pharmacology and Clinical Applications = Int. Congr. Ser. Divergences & Convergences = Anglophonia Divergences & Convergences = Anglophonia. Divergent Paths in Post-communist Transformation = Stud Econ Transit Divergent Paths in Post-communist Transformation = Stud. Econ. Transit. Diverse Effects of Hypoxia On Tumor Progression = Curr Top Microbiol Diverse Effects of Hypoxia On Tumor Progression = Curr. Top. Microbiol. Diverse Methodologies in The Study of Music Teaching and Learning = Adv Music Educ Res Diverse Methodologies in The Study of Music Teaching and Learning = Adv. Music Educ. Res. Diverse Perspectives On Marxist Philosophy: East and West = Contr Philo Diverse Perspectives On Marxist Philosophy: East and West = Contr. Philo. Diverse Roles of Integrin Receptors in Articular Cartilage = Adv Anat Embryol Cel Diverse Roles of Integrin Receptors in Articular Cartilage = Adv. Anat. Embryol. Cel. Diversification of European Systems of Higher Education = Beitr Verg Bild Diversification of European Systems of Higher Education = Beitr. Verg. Bild. Diversity and Biotechnology of Ectomycorrhizae = Soil Biol Diversity and Biotechnology of Ectomycorrhizae = Soil. Biol. Diversity and Distributions = Divers Distrib Diversity and Distributions = Divers. Distrib. Diversity and Ecology of Lichens in Polar and Mountain Ecosystems = Bibl Lichenol Diversity and Ecology of Lichens in Polar and Mountain Ecosystems = Bibl. Lichenol. Diversity and Groups = Res Manag Grp Team Diversity and Groups = Res. Manag. Grp. Team. Diversity and Writing: Dialogue Within A Modern University = Ctr Interdis Stud Wr Diversity and Writing: Dialogue Within A Modern University = Ctr. Interdis. Stud. Wr. Diversity = Australas I Min Met Diversity = Australas. I. Min. Met. Diversity = Diversity Diversity Factor = Divers Factor Diversity Factor = Divers. Factor Diversity in Advertising = Advert Cons Diversity in Advertising = Advert. Cons. Diversity in Higher Education = Divers High Educ Diversity in Higher Education = Divers. High. Educ. Diversity in The Work Force = Res Sociol Work Diversity in The Work Force = Res. Sociol. Work Diversity of Cypriniforms Throughout Bangladesh: Present Status and Conservation Challenges = Env Health Phys Chem Diversity of Cypriniforms Throughout Bangladesh: Present Status and Conservation Challenges = Env. Health. Phys. Chem. Diversity of Hydrothermal Systems On Slow Spreading Ocean Ridges = Geophys Monogr Ser Diversity of Hydrothermal Systems On Slow Spreading Ocean Ridges = Geophys. Monogr. Ser. Diversity of Interacting Receptors = Ann Ny Acad Sci Diversity of Interacting Receptors = Ann. Ny. Acad. Sci. Diversity of Lichenology - Anniversary Volume = Bibl Lichenol Diversity of Lichenology - Anniversary Volume = Bibl. Lichenol. Diversity - The Key to Prosperity, Supplementary Volume = Australas I Min Met Diversity - The Key to Prosperity, Supplementary Volume = Australas. I. Min. Met. Diverticular Disease: Emerging Evidence in A Common Condition = Falk Symp Diverticular Disease: Emerging Evidence in A Common Condition = Falk. Symp. Divided Cities: Belfast, Beirut, Jerusalem, Mostar, and Nicosia = City 21st Century Divided Cities: Belfast, Beirut, Jerusalem, Mostar, and Nicosia = City. 21st. Century. Divinations Rereading Late Ancient Religion = Divin Reread Late An Divinations Rereading Late Ancient Religion = Divin. Reread. Late An. Divine in Husserl and Other Explorations = Analecta Husserl Divine in Husserl and Other Explorations = Analecta. Husserl Diving and Hyperbaric Medicine = Diving Hyperb Med Diving and Hyperbaric Medicine = Diving Hyperb. Med. Divinity Compromised: A Study of Divine Accommodation in The Thought of John Calvin = Stud Early Mod Relig Divinity Compromised: A Study of Divine Accommodation in The Thought of John Calvin = Stud. Early. Mod. Relig. Divulgacion cultural odontologica = Divulg Cult Odontol Divulgacion Cultural Odontologica = Divulg. Cult. Odontol. Diweb ' 09: Proceedings of The 9th Wseas International Conference On Distance Learning and Web Engineering = Ma Comput Sci Eng Diweb ' 09: Proceedings of The 9th Wseas International Conference On Distance Learning and Web Engineering = Ma. Comput. Sci. Eng. Dix-huitieme siecle = Dix Huit Siecle Dix-septieme Siecle = Dix-septieme Siecle Dizziness: Vertigo, Disequilibrium and Lightheadedness = Neurol Lab Clin Res Dizziness: Vertigo, Disequilibrium and Lightheadedness = Neurol. Lab. Clin. Res. DLR-Forschungsbericht = DLR-Forschungsber. DLR-Nachrichten : Mitteilungsblatt der Deutschen Forschungsanstalt fur Luft- und Raumfahrt = DLR Nachr Dm Disease-a-month = Dm-dis Mon Dm Disease-a-month = Dm-dis. Mon. D-modules, Perverse Sheaves, and Representation Theory = Prog Math D-modules, Perverse Sheaves, and Representation Theory = Prog. Math. DMV Seminar = DMV Sem. Dmv Seminar = Dmv Seminar Dna Adducts: Formation, Detection and Mutagenesis = Dna Prop Modif Funct Dna Adducts: Formation, Detection and Mutagenesis = Dna Prop. Modif. Funct. Dna-a Journal of Molecular & Cellular Biology = Dna-j Molec Cell Bio Dna-a Journal of Molecular & Cellular Biology = Dna-j. Molec. Cell. Bio. Dna and Cell Biology = Dna Cell Biol Dna and Cell Biology = Dna Cell Biol. DNA and cell biology = DNA Cell Biol DNA and Cell Biology=DNA Cell Biol;; DNA and Cell Biology = DNA Cell Biol. Dna and Rna Cleavers and Chemotherapy of Cancer and Viral Diseases = Nato Adv Sci Inst Se Dna and Rna Cleavers and Chemotherapy of Cancer and Viral Diseases = Nato. Adv. Sci. Inst. Se. Dna Arrays in Neurobiology, Vol 60 = Int Rev Neurobiol Dna Arrays in Neurobiology, Vol 60 = Int. Rev. Neurobiol. Dna-based Molecular Construction = Aip Conf Proc Dna-based Molecular Construction = Aip. Conf. Proc. Dna-based Molecular Electronics = Aip Conf Proc Dna-based Molecular Electronics = Aip. Conf. Proc. Dna-based Nanodevices = Aip Conf Proc Dna-based Nanodevices = Aip. Conf. Proc. Dna-based Nanoscale Integration = Aip Conf Proc Dna-based Nanoscale Integration = Aip. Conf. Proc. Dna Binders and Related Subjects = Top Curr Chem Dna Binders and Related Subjects = Top. Curr. Chem. Dna Computing and Molecular Programming = Lect Notes Comput Sc Dna Computing and Molecular Programming = Lect. Notes. Comput. Sc. Dna Computing = Lect Notes Comput Sc Dna Computing = Lect. Notes. Comput. Sc. Dna Damage and Repairs in Human Tissues = Basic Life Sci Dna Damage and Repairs in Human Tissues = Basic. Life. Sci. Dna Damage = Ann Ny Acad Sci Dna Damage = Ann. Ny. Acad. Sci. Dna Damage Detection in Situ, Ex Vivo, and in Vivo: Methods and Protocols = Methods Mol Biol Dna Damage Detection in Situ, Ex Vivo, and in Vivo: Methods and Protocols = Methods Mol. Biol. Dna Damage Repair: Repair Mechanisms and Aging = Dna Prop Modif Funct Dna Damage Repair: Repair Mechanisms and Aging = Dna Prop. Modif. Funct. DNA = DNA Dna Fingerprinting : Approaches and Applications = Exper Suppl Dna Fingerprinting : Approaches and Applications = Exper. Suppl. Dna: Fingerprinting, Sequencing and Chips = Dna Prop Modif Funct Dna: Fingerprinting, Sequencing and Chips = Dna. Prop. Modif. Funct. Dna Fingerprinting : State of The Science = Exs Dna Fingerprinting : State of The Science = Exs. DNA (Mary Ann Liebert, Inc.) = DNA Dna Methylation and Cancer = Curr Top Microbiol Dna Methylation and Cancer = Curr. Top. Microbiol. Dna Methylation: Basic Mechanisms = Curr Top Microbiol Dna Methylation: Basic Mechanisms = Curr. Top. Microbiol. Dna Methylation: Development, Genetic Disease and Cancer = Curr Top Microbiol Dna Methylation: Development, Genetic Disease and Cancer = Curr. Top. Microbiol. Dna Microarrays Part A: Array Platforms and Wet-bench Protocols = Method Enzymol Dna Microarrays Part A: Array Platforms and Wet-bench Protocols = Method. Enzymol. Dna Microarrays, Part B: Databases and Statistics = Method Enzymol Dna Microarrays, Part B: Databases and Statistics = Method. Enzymol. Dna Nanotechnology: Methods and Protocols = Methods Mol Biol Dna Nanotechnology: Methods and Protocols = Methods Mol. Biol. Dna Polymorphisms As Disease Markers = Nato Adv Sci I A-lif Dna Polymorphisms As Disease Markers = Nato. Adv. Sci. I. A-lif. Dna Properties and Modifications Functions and Interactions Recombination and Applications = Dna Prop Modif Funct Dna Properties and Modifications Functions and Interactions Recombination and Applications = Dna Prop. Modif. Funct. Dna-protein Interactions: Principles and Protocols, Third Edition = Methods Mol Biol Dna-protein Interactions: Principles and Protocols, Third Edition = Methods. Mol. Biol. Dna Recombination: Methods and Protocols = Methods Mol Biol Dna Recombination: Methods and Protocols = Methods Mol. Biol. Dna Repair and Replication = Adv Protein Chem Dna Repair and Replication = Adv. Protein. Chem. Dna Repair = Dna Repair DNA Repair = DNA Repair DNA repair = DNA Repair (Amst) Dna Repair Mechanisms = Alfred Benzon Symp S Dna Repair Mechanisms = Alfred. Benzon. Symp. S. Dna Repair Mechanisms and Their Biological Implications in Mammalian Cells = Nato Adv Sci I A-lif Dna Repair Mechanisms and Their Biological Implications in Mammalian Cells = Nato. Adv. Sci. I. A-lif. Dna Repair, Pt A = Method Enzymol Dna Repair, Pt A = Method. Enzymol. Dna Repair, Pt B = Method Enzymol Dna Repair, Pt B = Method. Enzymol. Dna Replication = Method Enzymol Dna Replication = Method. Enzymol. DNA research : an international journal for rapid publication of reports on genes and genomes = DNA Res Dna Research = Dna Res Dna Research = Dna Res. DNA Research=DNA Res;; DNA Research = DNA Res. DNA Sequence=DNA Seq;; DNA Sequence = DNA Seq. Dna Sequence = Dna Sequence DNA Sequence = DNA Sequence DNA sequence : the journal of DNA sequencing and mapping = DNA Seq Dna: The Double Helix = Ann Ny Acad Sci Dna: The Double Helix = Ann. Ny. Acad. Sci. Dna Topoisomerases: Methods and Protocols = Methods Mol Biol Dna Topoisomerases: Methods and Protocols = Methods Mol. Biol. Dna Vaccination / Genetic Vaccination = Curr Top Microbiol Dna Vaccination / Genetic Vaccination = Curr. Top. Microbiol. Dna Vaccines 2010 = Procedia Vaccinol Dna Vaccines 2010 = Procedia. Vaccinol. Dna Vaccines = Ann Ny Acad Sci Dna Vaccines = Ann. Ny. Acad. Sci. Dobutsu iden ikushu kenkyu = Journal of animal genetics|Dobutsu Iden Ikushu Kenkyu Dock & Harbour Authority = Dock Harbour Auth Dock & Harbour Authority = Dock Harbour Auth. Doctoral Thesis = Doctor. Thesis Doctoring Medical Governance: Medical Self-regulation in Transition = Soc Iss Justice Stat Doctoring Medical Governance: Medical Self-regulation in Transition = Soc. Iss. Justice. Stat. Doctrine of Chances: Probabilistic Aspects of Gambling = Probab Appl Ser Doctrine of Chances: Probabilistic Aspects of Gambling = Probab. Appl. Ser. Doctrine of Salvation in The Sermons of Richard Hooker = Arb Kirchengesch Doctrine of Salvation in The Sermons of Richard Hooker = Arb. Kirchengesch. Documenta Albana = DocAlb Documenta de medicina geographica et tropica = Doc Med Geogr Trop Documenta Faunistica Helvetiae = Doc. Faun. Helv. Documenta Geigy. Acta psychosomatica. [Deutsche Ausg] = Doc Geigy Acta Psychosom (Dtsch Ausg) Documenta Geigy. Acta rheumatologica. [English ed.] = Doc Geigy Acta Rheumatol Documenta Mathematica = Doc. Math. Documenta Mathematica = Doc Math Documenta Mathematica = Doc. Math. Document Analysis Systems: Theory and Practice = Lect Notes Comput Sc Document Analysis Systems: Theory and Practice = Lect. Notes. Comput. Sc. Document Analysis Systems Vii, Proceedings = Lect Notes Comput Sc Document Analysis Systems Vii, Proceedings = Lect. Notes. Comput. Sc. Document Analysis Systems Vi, Proceedings = Lect Notes Comput Sc Document Analysis Systems Vi, Proceedings = Lect. Notes. Comput. Sc. Document Analysis System V, Proceedings = Lect Notes Comput Sc Document Analysis System V, Proceedings = Lect. Notes. Comput. Sc. Documenta Neerlandica et Indonesica de morbis tropicis; quarterly journal of tropical medicine and hygiene = Doc Neerl Indones Morbis Trop Documenta ophthalmologica. Advances in ophthalmology = Doc Ophthalmol Documenta Ophthalmologica=Doc Ophthalmol;; Documenta Ophthalmologica = Doc Ophthalmol Documenta Ophthalmologica = Doc. Ophthalmol. Documenta ophthalmologica. Proceedings series = Doc Ophthalmol Proc Ser Documenta Ophthalmologica Proceedings Series = Doc Ophth P Documenta Ophthalmologica Proceedings Series = Doc. Ophth. P. Documenta rheumatologica. [Deutsche Ausg.] = Doc Rheumatol Documentary Culture : Florence and Rome = Vill Spel C Documentary Culture : Florence and Rome = Vill. Spel. C. Documentation in medical ethics = Doc Med Ethics Documenti. Istituto per i beni artistici, culturali, naturali della regione Emilia-Romagna = DocEmRom Document & Image Automation = Doc Image Autom Document & Image Automation = Doc. Image Autom. Document Recognition and Retrieval Ix = Proc Spie Document Recognition and Retrieval Ix = Proc. Spie. Document Recognition and Retrieval Ix = P Soc Photo-opt Ins Document Recognition and Retrieval Ix = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Viii = Proc Spie Document Recognition and Retrieval Viii = Proc. Spie. Document Recognition and Retrieval Viii = P Soc Photo-opt Ins Document Recognition and Retrieval Viii = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Vii = Proc Spie Document Recognition and Retrieval Vii = Proc. Spie. Document Recognition and Retrieval Vii = P Soc Photo-opt Ins Document Recognition and Retrieval Vii = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Vi = P Soc Photo-opt Ins Document Recognition and Retrieval Vi = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Xiii = Proc Spie Document Recognition and Retrieval Xiii = Proc. Spie. Document Recognition and Retrieval Xiii = P Soc Photo-opt Ins Document Recognition and Retrieval Xiii = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Xii = P Soc Photo-opt Ins Document Recognition and Retrieval Xii = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Xiv = Proc Spie Document Recognition and Retrieval Xiv = Proc. Spie. Document Recognition and Retrieval Xiv = P Soc Photo-opt Ins Document Recognition and Retrieval Xiv = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval X = Proc Spie Document Recognition and Retrieval X = Proc. Spie. Document Recognition and Retrieval X = P Soc Photo-opt Ins Document Recognition and Retrieval X = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Xviii = Proc Spie Document Recognition and Retrieval Xviii = Proc. Spie. Document Recognition and Retrieval Xvii = Proc Spie Document Recognition and Retrieval Xvii = Proc. Spie. Document Recognition and Retrieval Xvii = P Soc Photo-opt Ins Document Recognition and Retrieval Xvii = P. Soc. Photo-opt. Ins. Document Recognition and Retrieval Xv = Proc Spie Document Recognition and Retrieval Xv = Proc. Spie. Document Recognition Iii = P Soc Photo-opt Ins Document Recognition Iii = P. Soc. Photo-opt. Ins. Document Recognition Ii = P Soc Photo-opt Ins Document Recognition Ii = P. Soc. Photo-opt. Ins. Document Recognition Iv = P Soc Photo-opt Ins Document Recognition Iv = P. Soc. Photo-opt. Ins. Document Recognition = P Soc Photo-opt Ins Document Recognition = P. Soc. Photo-opt. Ins. Document Recognition V = P Soc Photo-opt Ins Document Recognition V = P. Soc. Photo-opt. Ins. Document Regognition and Retrieval Xi = Proc Spie Document Regognition and Retrieval Xi = Proc. Spie. Document Regognition and Retrieval Xi = P Soc Photo-opt Ins Document Regognition and Retrieval Xi = P. Soc. Photo-opt. Ins. Documents d'analisi geografica / [publicacions del Departament de Geografia, Universitat Autonoma de Barcelona] = Doc Anal Geogr Documents D'archeologie Francaise = Doc Arch Fr Documents D'archeologie Francaise = Doc. Arch. Fr. Documents d'archéologie méridionale = DocAMerid Documents d'archéologie régionale. Université catholique de Louvain = DocALouv Documents. International Chamber of Commerce = Documents Documents Mycologiques = Doc. Mycol. Documents phytosociologiques, nouvelle série = Doc. phytosociol., nouv. sér. Documents pour l'histoire du vocabulaire scientifique / Centre national de la recherche scientifique, GRECO, Histoire du vocabulaire scientifique = Doc Hist Vocab Sci Dodo = Dodo Dodo-journal of The Wildlife Preservation Trusts = Dodo Dodo-journal of The Wildlife Preservation Trusts = Dodo. Dodone = Dodone Does Economic Governance Matter: Governance Institutions and Outcomes = New Dir Mod Econ Does Economic Governance Matter: Governance Institutions and Outcomes = New. Dir. Mod. Econ. Does God Believe in Human Rights? = Stud Relig Secul Bel Does God Believe in Human Rights? = Stud. Relig. Secul. Bel. Does Privatization Deliver? = Edi Dev Stud Does Privatization Deliver? = Edi. Dev. Stud. Dog and Its Genome = Cold Spring Harb Mon Dog and Its Genome = Cold. Spring. Harb. Mon. Dogma of The Continuum and The Calculus of Finite Differences in Quantum Physics = Adv Imag Elect Phys Dogma of The Continuum and The Calculus of Finite Differences in Quantum Physics = Adv. Imag. Elect. Phys. Doing Cross-cultural Research: Ethical and Methodological Perspectives = Soc Indic Res Ser Doing Cross-cultural Research: Ethical and Methodological Perspectives = Soc. Indic. Res. Ser. Doing More Good Than Harm: The Evaluation of Health Care Interventions = Ann Ny Acad Sci Doing More Good Than Harm: The Evaluation of Health Care Interventions = Ann. Ny. Acad. Sci. Doing Naval History = Nwc Hist Mg Doing Naval History = Nwc. Hist. Mg. Doing Philosophy Historically = Fron Philos Doing Philosophy Historically = Fron. Philos. Doing Philosophy of Technology: Essays in A Pragmatist Spirit = Philos Eng Technol Doing Philosophy of Technology: Essays in A Pragmatist Spirit = Philos. Eng. Technol. Doing Qualitative Research = Res Meth Pr Doing Qualitative Research = Res. Meth. Pr. Doing Well and Good: The Human Face of The New Capitalism = Ethics Pract Doing Well and Good: The Human Face of The New Capitalism = Ethics. Pract. Dokladi na B\cdprime lgarskata Akademiya na Naukite = C. R. Acad. Bulgare Sci. Dokladi Na Bolgarskata Akademiya Na Naukite = Dokl Bolg Akad Nauk Dokladi Na Bolgarskata Akademiya Na Naukite = Dokl. Bolg. Akad. Nauk. Dokladi na Bulgarskata Akademiya na Naukite = Dokl. Bulg. Akad. Nauk Doklady Akademii Nauk Belarusi = Dokl Akad Nauk Belar Doklady Akademii Nauk Belarusi = Dokl. Akad. Nauk Belar. Doklady Akademii Nauk Belarusi = Dokl. Akad. Nauk Belarusi Doklady Akademii Nauk Belarusi = Dokl. Akad. Nauk BSSR Doklady Akademii Nauk=Dokl Akad Nauk;; Doklady Akademii Nauk = Dokl Akad Nauk+ Doklady Akademii Nauk = Dokl. Akad. Nauk Doklady Akademii Nauk = Dokl. Akad. Nauk+.+ Doklady Akademii Nauk = Dokl. Akad. Nauk SSSR Doklady Akademii nauk / [Rossiiskaia akademii nauk] = Dokl Akad Nauk Doklady Akademii nauk SSSR = Dokl Akad Nauk SSSR Doklady Akademii Nauk Sssr = Dokl Akad Nauk Sssr+ Doklady Akademii Nauk Sssr = Dokl. Akad. Nauk Sssr+.+ Doklady Akademii Nauk SSSR = Dokl. Akad. Nauk SSSR Doklady Akademii Nauk Tadzhikskoi SSR = Dokl. Akad. Nauk Tadzh. SSR Doklady Akademii Nauk Ukrainy = Dokl. Akad. Nauk Ukr. SSR Doklady Akademii Nauk UzSSR = Dokl. Akad. Nauk UzSSR Doklady - Akademiya Nauk Azerbaidzhana = Dokl. Akad. Nauk Az. SSR Doklady. Biochemistry and biophysics = Dokl Biochem Biophys Doklady Biochemistry and Biophysics = Dokl Biochem Biophys Doklady Biochemistry and Biophysics = Dokl. Biochem. Biophys. Doklady. Biochemistry and Biophysics = Dokl. Biochem. Biophys. Doklady biochemistry : proceedings of the Academy of Sciences of the USSR, Biochemistry section / translated from Russian = Dokl Biochem Doklady biological sciences : proceedings of the Academy of Sciences of the USSR, Biological sciences sections / translated from Russian = Dokl Biol Sci Doklady Biophysics = Dokl. Biophys. Doklady biophysics : proceedings of the Academy of Sciences of the USSR, Biophysics section / translated from Russian = Dokl Biophys Doklady Bolgarskoi Akademii Nauk = Dokl. Bolg. Akad. Nauk Doklady Bolgarskoi akademii nauk = Dokl Bulg Acad Nauk Doklady Chemical Technology = Dokl Chem Technol Doklady Chemical Technology = Dokl. Chem. Technol. Doklady Chemistry = Dokl Chem Doklady Chemistry = Dokl. Chem. Doklady = Dokl. Akad. Nauk Armen. Doklady = Dokl. Semin. Inst. Prikl. Mat. im. I. N. Vekua Doklady Earth Sciences = Dokl Earth Sci Doklady Earth Sciences = Dokl. Earth Sci. Doklady Mathematics = Dokl Math Doklady Mathematics = Dokl. Math. Doklady Physical Chemistry = Dokl Phys Chem Doklady Physical Chemistry = Dokl. Phys. Chem. Doklady Physics = Dokl. Phys. Doklady Physics = Dokl Phys Doklady Physics = Dokl. Phys. Doklady Soil Science Ussr = Dokl Soil Sci Ussr Doklady Soil Science Ussr = Dokl. Soil Sci. Ussr Dokument Bodenkundliche Gesellschaft der Schweiz = Dok. Bodenkd. Ges. Schweiz Dokumente aus Hoechster Archiven = Dok Hoechst Arch Dokumente und Informationen zur schweizerischen Orts-, Regional- und Landesplanung, DISP = Dok. Inf. schweiz. Orts- Reg.- Landesplan., DISP Dokumente zur Geschichte der Mathematik = Dokumente Gesch. Math. Dolciani Mathematical Expositions = Dolciani Math Expo Dolciani Mathematical Expositions = Dolciani Math. Expo. Dolentium Hominum = Dolentium Hominum Dolphins: Anatomy, Behavior and Threats = Anim Sci Issues Prof Dolphins: Anatomy, Behavior and Threats = Anim. Sci. Issues. Prof. Domain Decomposition Methods in Science and Engineering = Lect Notes Comp Sci Domain Decomposition Methods in Science and Engineering = Lect. Notes. Comp. Sci. Domain Decomposition Methods in Science and Engineering Xix = Lect Notes Comp Sci Domain Decomposition Methods in Science and Engineering Xix = Lect. Notes. Comp. Sci. Domain-specific Languages, Proceedings = Lect Notes Comput Sc Domain-specific Languages, Proceedings = Lect. Notes. Comput. Sc. Domain-specific Program Generation = Lect Notes Comput Sc Domain-specific Program Generation = Lect. Notes. Comput. Sc. Domain Theory, Logic and Computation = Semant Struct Comput Domain Theory, Logic and Computation = Semant. Struct. Comput. Dome C: Astronomy and Astrophysics Meeting = Eas Publications Dome C: Astronomy and Astrophysics Meeting = Eas. Publications. Domes : digest of Middle East studies = Domes Domestic Animal Endocrinology = Domest Anim Endocrin Domestic Animal Endocrinology = Domest. Anim. Endocrin. Domestic animal endocrinology = Domest Anim Endocrinol Domestic Animal Endocrinology=Domest Anim Endocrinol;; Domestic Animal Endocrinology = Domest. Anim. Endocrinol. Domestic Animal/wildlife Interface: Issue for Disease Control, Conservation, Sustainable Food Production, and Emerging Diseases = Ann Ny Acad Sci Domestic Animal/wildlife Interface: Issue for Disease Control, Conservation, Sustainable Food Production, and Emerging Diseases = Ann. Ny. Acad. Sci. Domestication of Agroforestry Trees in Southeast Asia = For Farm Comm Tree R Domestication of Agroforestry Trees in Southeast Asia = For. Farm. Comm. Tree. R. Domestic Buffalo Production in Asia = Iaea Pan P Domestic Buffalo Production in Asia = Iaea. Pan. P. Domestic Politics and International Narcotics Control: U.s. Relations With Mexico and Colombia, 1989-2000 = Stud Int Relat Domestic Politics and International Narcotics Control: U.s. Relations With Mexico and Colombia, 1989-2000 = Stud. Int. Relat. Domestic Politics and International Relations in Us-japan Trade Policymaking = Int Polit Econ Ser Domestic Politics and International Relations in Us-japan Trade Policymaking = Int. Polit. Econ. Ser. Domestic Resource Mobilization and Financial Development = Stud Dev Econ Policy Domestic Resource Mobilization and Financial Development = Stud. Dev. Econ. Policy. Domination of Strangers: Modern Governance in Eastern India, 1780-1835 = Camb Imp Post-col St Domination of Strangers: Modern Governance in Eastern India, 1780-1835 = Camb. Imp. Post-col. St. Dominion law reports = Dom Law Rep Do Multinationals Feed Local Development and Growth? = Int Bus Manag-ser Do Multinationals Feed Local Development and Growth? = Int. Bus. Manag-ser. Domus = Domus Do Museums Still Need Objects = Arts Intell Life Mod Do Museums Still Need Objects = Arts. Intell. Life. Mod. Donaldson Type Invariants for Algebraic Surfaces: Transition of Moduli Stacks = Lect Notes Math Donaldson Type Invariants for Algebraic Surfaces: Transition of Moduli Stacks = Lect. Notes. Math. Donation of Constantine and Constitutum Constantini = Millenn Stud Kult Ge Donation of Constantine and Constitutum Constantini = Millenn. Stud. Kult. Ge. Don Delillo: The Possibility of Fiction = Routl Transnat Persp Don Delillo: The Possibility of Fiction = Routl. Transnat. Persp. Donetskiy Gosudarstvennyy Universitet = Teoret. i Prikl. Mekh. (Donetsk) Dongbei Shida Xuebao = Dongbei Shida Xuebao Dong wu fen lei xue bao = Acta zootaxonomica Sinica|Dong Wu Fen Lei Xue Bao Dong wu xue bao. [Acta zoologica Sinica] = Dong Wu Xue Bao Dong wu xue yan jiu = Zoological research / "Dong wu xue yan jiu" bian ji we yuan hui bian ji|Zool. Res. Doomsayers: Anglo-american Prophecy in The Age of Revolution = Early Am Stud Ser Doomsayers: Anglo-american Prophecy in The Age of Revolution = Early. Am. Stud. Ser. Dopamine and Mental Depression = Adv Biosci Dopamine and Mental Depression = Adv. Biosci. Dopamine Receptors, Second Edition = Recept Ser Dopamine Receptors, Second Edition = Recept. Ser. Dopamine Receptor Subtypes = Biom Hlth R Dopamine Receptor Subtypes = Biom. Hlth. R. Dopaminergic Neuron Transplantation in The Weaver Mouse Model of Parkinson's Disease = Adv Exp Med Biol Dopaminergic Neuron Transplantation in The Weaver Mouse Model of Parkinson's Disease = Adv. Exp. Med. Biol. Doped Fiber Devices and Systems = P Soc Photo-opt Ins Doped Fiber Devices and Systems = P. Soc. Photo-opt. Ins. Doped Fiber Devices Ii = P Soc Photo-opt Ins Doped Fiber Devices Ii = P. Soc. Photo-opt. Ins. Doped Fiber Devices = P Soc Photo-opt Ins Doped Fiber Devices = P. Soc. Photo-opt. Ins. Doped Nanopowders: Synthesis, Characterisation Applications = Solid State Phenomen Doped Nanopowders: Synthesis, Characterisation Applications = Solid. State. Phenomen. Doped Nanopowders: Synthesis, Characterisation Applications = Sol St Phen Doped Nanopowders: Synthesis, Characterisation Applications = Sol. St. Phen. Doping Engineering for Device Fabrication = Mater Res Soc Symp P Doping Engineering for Device Fabrication = Mater. Res. Soc. Symp. P. Doping Engineering for Front-end Processing = Mater Res Soc Symp P Doping Engineering for Front-end Processing = Mater. Res. Soc. Symp. P. Dopovidi Akademii Nauk Ukrainskoi Rsr = Dop Akad Nauk Ukrain Dopovidi Akademii Nauk Ukrainskoi Rsr = Dop. Akad. Nauk Ukrain. Dopovidi Akademii Nauk Ukrainskoi Rsr Seriya A-fiziko-matematichni Ta Technichni Nauki = Dopov Akad Nauk A Dopovidi Akademii Nauk Ukrainskoi Rsr Seriya A-fiziko-matematichni Ta Technichni Nauki = Dopov. Akad. Nauk A. Dopovidi Akademii Nauk Ukrainskoi Rsr Seriya B-geologichni Khimichni Ta Biologichni Nauki = Dopov Akad Nauk B Dopovidi Akademii Nauk Ukrainskoi Rsr Seriya B-geologichni Khimichni Ta Biologichni Nauki = Dopov. Akad. Nauk B. Dopovidi Natsional'noi Akademii Nauk Ukraini = Dopov. Nats. Akad. Nauk Ukr. Dormancy and Resistance in Harsh Environments = Top Curr Genet Dormancy and Resistance in Harsh Environments = Top. Curr. Genet. Dormancy and The Related Problems of Deciduous Fruit Trees = Acta Hortic Dormancy and The Related Problems of Deciduous Fruit Trees = Acta. Hortic. Dorothy Day and The Catholic Worker Movement = Marq Stud Theol Dorothy Day and The Catholic Worker Movement = Marq. Stud. Theol. Dortmunder Beitrage Zur Zeitungsforschung = Dortmund Beitr Ztg Dortmunder Beitrage Zur Zeitungsforschung = Dortmund. Beitr. Ztg. Do Seizures Damage The Brain = Prog Brain Res Do Seizures Damage The Brain = Prog. Brain Res. Dose-response = Dose-response Dose-response Relationship of Drugs = Klin Pharm Dose-response Relationship of Drugs = Klin. Pharm. Dose-response Relationships in Clinical Pharmacology = Int Congr Ser Dose-response Relationships in Clinical Pharmacology = Int. Congr. Ser. Doshisha Literature-a Journal of English Literature and Philology = Doshish Literature Doshisha Literature-a Journal of English Literature and Philology = Doshish. Literature Dossier Quebec Series = Doss Queb S Dossier Quebec Series = Doss. Queb. S. Dossiers De L'environnement De L'inra = Dos En Inra Dossiers De L'environnement De L'inra = Dos. En. Inra. Do They Walk Like They Talk? = Stud Pub Ch Do They Walk Like They Talk? = Stud. Pub. Ch. Do They Walk Like They Talk? = Stud Public Choice Do They Walk Like They Talk? = Stud. Public. Choice. Double Auction Market = Sfi S Sci C Double Auction Market = Sfi. S. Sci. C. Douleur Et Analgesie = Douleur Analg Douleur Et Analgesie = Douleur Analg. Down Beat = Down Beat Downside Review = DR Downs Syndrome Research and Practice=Downs Syndr Res Pract;; Down's syndrome, research and practice : the journal of the Sarah Duffen Centre / University of Portsmouth = Downs Syndr Res Pract Downstream Processing and Bioseparation = Acs Sym Ser Downstream Processing and Bioseparation = Acs. Sym. Ser. Down Syndrome and Alzheimer Disease = Prog Clin Biol Res Down Syndrome and Alzheimer Disease = Prog. Clin. Biol. Res. Downward Causation and The Neurobiology of Free Will = Underst Complex Syst Downward Causation and The Neurobiology of Free Will = Underst. Complex. Syst. Doxologische Entzogenheit: Die Fundamentaltheologische Bedeutung Des Gebets Bei Karl Barth = Theol Bibl Topelmann Doxologische Entzogenheit: Die Fundamentaltheologische Bedeutung Des Gebets Bei Karl Barth = Theol. Bibl. Topelmann. DP. Dental practice = Dent Pract (Ewell) DP: Dental Practice = Dent. Pract. (Ewell) DP Reports = DP Rep. DP [reports]. U.S. Atomic Energy Commission = DP Rep Dqr Studies in Literature = Dqr Stud Lit Dqr Studies in Literature = Dqr Stud. Lit. Dqr Studies in Literature = Dqr Stu Lit Dqr Studies in Literature = Dqr Stu. Lit. Dr2004: Sixth International Conference On Dissociative Recombination: Theory, Experiments and Applications = J Phys Conf Ser Dr2004: Sixth International Conference On Dissociative Recombination: Theory, Experiments and Applications = J. Phys. Conf. Ser. Drafting The Eu Charter: Rights, Legitimacy and Process = Palgrave Stud Eur Un Drafting The Eu Charter: Rights, Legitimacy and Process = Palgrave. Stud. Eur. Un. Dragon Programme Mid-term Results, Proceedings = Esa Spec Publ Dragon Programme Mid-term Results, Proceedings = Esa. Spec. Publ. Dragon Programme Mid-term Results, Proceedings = Esa Sp Publ Dragon Programme Mid-term Results, Proceedings = Esa. Sp. Publ. Drake law review = Drake Law Rev Drama and Curriculum: A Giant At The Door = Landsc Art Aesthet E Drama and Curriculum: A Giant At The Door = Landsc. Art. Aesthet. E. Drama and Performance Studies = Drama Perform Stud Drama and Performance Studies = Drama Perform. Stud. Drama and The Sacraments in Sixteenth-century England: Indelible Characters = Early Mod Lit Hist Drama and The Sacraments in Sixteenth-century England: Indelible Characters = Early. Mod. Lit. Hist. Drama = Drama Drama of Masculinity and Medieval English Guild Culture = New Middle Ages Drama of Masculinity and Medieval English Guild Culture = New. Middle. Ages. Drama Review = Drama Rev Drama Review = Drama Rev. Dramatists and Their Manuscripts in The Age of Shakespeare, Jonson, Middleton and Heywood = Rout Stud Renais Lit Dramatists and Their Manuscripts in The Age of Shakespeare, Jonson, Middleton and Heywood = Rout. Stud. Renais. Lit. Draper Fund report = Draper Fund Rep Draper World Population Fund report = Draper World Popul Fund Rep Draught Animal Power in The Asian-australasian Region = Aciar Proc Draught Animal Power in The Asian-australasian Region = Aciar. Proc. Draught Animals in Rural Development = Aciar Proc Draught Animals in Rural Development = Aciar. Proc. Draughtsmen, Botanists and Nature: The Construction of Eighteenth-century Botanical Illustrations = Archimedes Draughtsmen, Botanists and Nature: The Construction of Eighteenth-century Botanical Illustrations = Archimedes. Dr Dobbs Journal = Dr Dobbs J Dr Dobbs Journal = Dr Dobbs J. Dreadnought Gunnery At The Battle of Jutland: The Question of Fire Control = Cass Ser Nav Policy Dreadnought Gunnery At The Battle of Jutland: The Question of Fire Control = Cass. Ser. Nav. Policy. Dreaming = Dreaming Dreams and Dreaming = Int Rev Neurobiol Dreams and Dreaming = Int. Rev. Neurobiol. Dreams of Lovers and Lies of Poets: Poetry, Knowledge, and Desire in The Roman De La Rose = Res Monogr Fr Stud Dreams of Lovers and Lies of Poets: Poetry, Knowledge, and Desire in The Roman De La Rose = Res. Monogr. Fr. Stud. Dreamworks = Dreamworks Dredging and Management of Dredged Material = Geotech Sp Dredging and Management of Dredged Material = Geotech. Sp. Dredging, Remediation, and Containment of Contaminated Sediments = Am Soc Test Mater Dredging, Remediation, and Containment of Contaminated Sediments = Am. Soc. Test. Mater. Dreisprachige Stele Des C Cornelius Gallus: Ubersetzung Und Kommentar = Arch Papyrus Verwand Dreisprachige Stele Des C Cornelius Gallus: Ubersetzung Und Kommentar = Arch. Papyrus. Verwand. Dress and Gender = Cross C P W Dress and Gender = Cross. C. P. W. Dress, Body, Culture = Dress, Body, Culture Drevarsky Vyskum = Drev Vysk Drevarsky Vyskum = Drev. Vysk. Drevnejsije Gosudarstva na territorii SSSR (Les états les plus anciens sur le territoire de l'URSS: matériaux et recherches) = DGT Drewno = Drewno Drewno-wood = Drew-wood Drewno-wood = Drew-wood. Drexel Library Quarterly = Drexel Libr Quart Drexel Library Quarterly = Drexel Libr. Quart. DRG monitor = DRG Monit DRG Monitor = DRG Monit. Drift Exploration in Glaciated Terrain = Geol Soc Spec Publ Drift Exploration in Glaciated Terrain = Geol. Soc. Spec. Publ. Drilling of Composite Materials = Mater Manuf Technol Drilling of Composite Materials = Mater. Manuf. Technol. Drinking Matters: Public Houses and Social Exchange in The Early Modern Central Europe = Early Mod Hist-soc C Drinking Matters: Public Houses and Social Exchange in The Early Modern Central Europe = Early Mod. Hist-soc. C. Drinking Water Treatment: Focusing On Appropriate Technology and Sustainability = Strat Sustain Drinking Water Treatment: Focusing On Appropriate Technology and Sustainability = Strat. Sustain. Drinking Water Treatment, Supply and Management in Asia (iwa-aspire 2005) = Wa Sci Technol Drinking Water Treatment, Supply and Management in Asia (iwa-aspire 2005) = Wa. Sci. Technol. Driveline Systems of Ground Vehicles: Theory and Design = Ground Veh Eng Driveline Systems of Ground Vehicles: Theory and Design = Ground Veh. Eng. Driver and Vehicle Modeling = Transport Res Rec Driver and Vehicle Modeling = Transport. Res. Rec. Driver and Vehicle Simulation, Human Performance, and Information Systems for Highways; Railroad Safety; and Visualization in Transportation = Transport Res Rec Driver and Vehicle Simulation, Human Performance, and Information Systems for Highways; Railroad Safety; and Visualization in Transportation = Transport. Res. Rec. Driver Behavior, Older Drivers, Simulation, User Information Systems, and Visualization = Transport Res Rec Driver Behavior, Older Drivers, Simulation, User Information Systems, and Visualization = Transport. Res. Rec. Driver in The 21st Century = Vdi Bericht Driver in The 21st Century = Vdi. Bericht. Drivers of Environmental Change in Uplands = Routl Stud Ecol Econ Drivers of Environmental Change in Uplands = Routl. Stud. Ecol. Econ. Drivers of Innovation in Pediatric Nutrition = Nestle Nutr Works Se Drivers of Innovation in Pediatric Nutrition = Nestle. Nutr. Works. Se. Drives and Control for Industrial Automation = Adv Ind Control Drives and Control for Industrial Automation = Adv. Ind. Control Drive Tourism: Trends and Emerging Markets = Routl Adv Tour Drive Tourism: Trends and Emerging Markets = Routl. Adv. Tour. Droit social = Droit Soc Drops and Bubbles = Aip Conf Proc Drops and Bubbles = Aip. Conf. Proc. Drop-surface Interactions = Cism Cour L Drop-surface Interactions = Cism. Cour. L. Drop-surface Interactions = Cism Courses Lect Drop-surface Interactions = Cism. Courses. Lect. Drosophila information service = Drosoph Inf Serv Drought Tolerance of Grains in The Mediterranean Area = Colloq Inra Drought Tolerance of Grains in The Mediterranean Area = Colloq. Inra. Dr Scholl Nutrition Conferences = D S Nutr C Dr Scholl Nutrition Conferences = D. S. Nutr. C. Drug Abuse Council Monograph Series = Drug Abuse Counc Mon Drug Abuse Council Monograph Series = Drug Abuse Counc. Mon. Drug Abuse Council Public Policy Series = Drug Abuse Counc Pub Drug Abuse Council Public Policy Series = Drug Abuse Counc. Pub. Drug Abuse Council Special Studies = Drug Abuse Counc Ss Drug Abuse Council Special Studies = Drug Abuse Counc. Ss. Drug Addiction: Research Frontiers and Treatment Advances = Ann Ny Acad Sci Drug Addiction: Research Frontiers and Treatment Advances = Ann. Ny. Acad. Sci. Drug and Alcohol Dependence = Drug Alcohol Depen Drug and Alcohol Dependence = Drug Alcohol Depen. Drug and alcohol dependence = Drug Alcohol Depend Drug and Alcohol Dependence=Drug Alcohol Depend;; Drug and Alcohol Dependence = Drug Alcohol Depend. Drug and alcohol review = Drug Alcohol Rev Drug and Alcohol Review = Drug Alcohol Rev Drug and Alcohol Review = Drug Alcohol Rev. Drug and Chemical Toxicology (1977) = Drug Chem. Toxicol. (1977) Drug and chemical toxicology = Drug Chem Toxicol Drug and Chemical Toxicology=Drug Chem Toxicol;; Drug and Chemical Toxicology = Drug Chem Toxicol Drug and Chemical Toxicology = Drug Chem. Toxicol. Drug and cosmetic industry = Drug Cosmet Ind Drug and therapeutics bulletin = Drug Ther Bull Drug and Therapeutics Bulletin=Drug Ther Bull;; Drug and Therapeutics Bulletin = Drug Ther Bull Drug and Therapeutics Bulletin = Drug Ther. Bull. Drug & Cosmetic Industry = Drug Cosmet Ind Drug & Cosmetic Industry = Drug Cosmet. Ind. Drug delivery = Drug Deliv Drug Delivery = Drug Deliv Drug Delivery = Drug Deliv. Drug Delivery = Drug Delivery Drug Delivery to The Central Nervous System = Neuromethods Drug Delivery to The Central Nervous System = Neuromethods. Drug design and delivery = Drug Des Deliv Drug Design and Delivery = Drug Des. Deliv. Drug design and discovery = Drug Des Discov Drug Design and Discovery = Drug Des. Discov. Drug Design and Discovery = Drug Des. Discovery Drug Design and Discovery: Methods and Protocols = Methods Mol Biol Drug Design and Discovery: Methods and Protocols = Methods Mol. Biol. Drug Design and Discovery (Yverdon-Les-Bains=Drug Des Discov;; Drug Design: Cutting Edge Approaches = Roy Soc Ch Drug Design: Cutting Edge Approaches = Roy. Soc. Ch. Drug Development and Evaluation = Drug Dev E Drug Development and Evaluation = Drug Dev. E. Drug development and industrial pharmacy = Drug Dev Ind Pharm Drug Development and Industrial Pharmacy = Drug Dev Ind Pharm Drug Development and Industrial Pharmacy = Drug Dev. Ind. Pharm. Drug Development Communications = Drug Dev Commun Drug Development Communications = Drug Dev. Commun. Drug Development Research = Drug Develop Res Drug Development Research = Drug Develop. Res. Drug development research = Drug Dev Res Drug Development Research = Drug Dev. Res. Drug Discovery and Development = Drug Discovery Dev. Drug Discovery Series = Drug Discov Ser Drug Discovery Series = Drug Discov. Ser. Drug Discovery Today = Drug Discovery Today Drug discovery today = Drug Discov Today Drug Discovery Today = Drug Discov Today Drug Discovery Today = Drug Discov. Today Drug-dna Interaction Protocols, Second Edition = Methods Mol Biol Drug-dna Interaction Protocols, Second Edition = Methods. Mol. Biol. Drug Epidemiology and Post-marketing Surveillance = Nato Adv Sci I A-lif Drug Epidemiology and Post-marketing Surveillance = Nato. Adv. Sci. I. A-lif. Drug forum = Drug Forum Drug Forum = Drug Forum Drug information journal = Drug Inf J Drug Information Journal = Drug Inf J Drug Information Journal = Drug Inf. J. Drug Intelligence and Clinical Pharmacy = Drug Intell. Clin. Pharm. Drug Intelligence & Clinical Pharmacy = Drug Intel Clin Phar Drug Intelligence & Clinical Pharmacy = Drug Intel. Clin. Phar. Drug intelligence & clinical pharmacy = Drug Intell Clin Pharm Drug Investigation = Drug Invest Drug Investigation = Drug Invest. Drug merchandising = Drug Merch Drug Metabolism and Disposition=Drug Metab Dispos;; Drug Metabolism and Disposition = Drug Metab Dispos Drug Metabolism and Disposition = Drug Metab. Dispos. Drug metabolism and disposition: the biological fate of chemicals = Drug Metab Dispos Drug Metabolism and Drug Interactions = Drug Metab. Drug Interact. Drug metabolism and drug interactions = Drug Metabol Drug Interact Drug Metabolism and Drug Interactions=Drug Metabol Drug Interact;; Drug Metabolism and Drug Interactions = Drug Metabol. Drug Interact. Drug Metabolism and Pharmacokinetics = Drug Metab Pharmacok Drug Metabolism and Pharmacokinetics = Drug Metab. Pharmacok. Drug metabolism and pharmacokinetics = Drug Metab Pharmacokinet Drug Metabolism and Pharmacokinetics = Drug Metab. Pharmacokinet. Drug Metabolism Letters = Drug Metab. Lett. Drug Metabolism, Liver Injury and Ageing = T Aging Res Drug Metabolism, Liver Injury and Ageing = T. Aging. Res. Drug metabolism reviews = Drug Metab Rev Drug Metabolism Reviews=Drug Metab Rev;; Drug Metabolism Reviews = Drug Metab Rev Drug Metabolism Reviews = Drug Metab. Rev. Drug Metabolism: Towards The Next Millennium = Biom Hlth R Drug Metabolism: Towards The Next Millennium = Biom. Hlth. R. Drug Monitoring By Hplc: Recent Developments = Pharm Res Saf Test Drug Monitoring By Hplc: Recent Developments = Pharm. Res. Saf. Test. Drug news & perspectives = Drug News Perspect Drug News & Perspectives = Drug News Perspect Drug News & Perspectives = Drug News Perspect. Drug-nucleic Acid Interactions = Method Enzymol Drug-nucleic Acid Interactions = Method. Enzymol. Drug-nucleic Acid Interactions = Methods Enzymol Drug-nucleic Acid Interactions = Methods. Enzymol. Drug-nutrient interactions = Drug Nutr Interact Drug-nutrient Interactions = Drug Nutr Interact Drug-nutrient Interactions = Drug. Nutr. Interact. Drug-Nutrient Interactions = Drug. Nutr. Interact. Drug Plants Iii = Recent Prog Med Plan Drug Plants Iii = Recent. Prog. Med. Plan. Drug Plants Ii = Recent Prog Med Plan Drug Plants Ii = Recent. Prog. Med. Plan. Drug Plants I = Recent Prog Med Plan Drug Plants I = Recent. Prog. Med. Plan. Drug Plants Iv = Recent Prog Med Plan Drug Plants Iv = Recent. Prog. Med. Plan. Drug research = Drug Res Drug Research Related to Neuroactive Amino Acids = Alfred Benzon Symp S Drug Research Related to Neuroactive Amino Acids = Alfred. Benzon. Symp. S. Drug research reports = Drug Res Rep Drug Resistance in Leukemia and Lymphoma Ii = Adv Blood Disord Drug Resistance in Leukemia and Lymphoma Ii = Adv. Blood. Disord. Drug Resistance in Leukemia and Lymphoma Iii = Adv Exp Med Biol Drug Resistance in Leukemia and Lymphoma Iii = Adv. Exp. Med. Biol. Drug Resistance : Mechanisms and Reversal = Pez Fdn Sym Drug Resistance : Mechanisms and Reversal = Pez. Fdn. Sym. Drug Resistance Updates = Drug Resist. Updat. Drug Resistance Updates = Drug Resist Update Drug Resistance Updates = Drug Resist. Update. Drug resistance updates : reviews and commentaries in antimicrobial and anticancer chemotherapy = Drug Resist Updat Drug Resistant Neoplasms = Cancer Etiol Diagn T Drug Resistant Neoplasms = Cancer. Etiol. Diagn. T. Drug-resistant Tuberculosis: Causes, Diagnosis and Treatments = Virol Res Prog Drug-resistant Tuberculosis: Causes, Diagnosis and Treatments = Virol. Res. Prog. Drug safety : an international journal of medical toxicology and drug experience = Drug Saf Drug Safety=Drug Saf;; Drug Safety = Drug Saf. Drug Safety = Drug Safety Drug Safety Evaluation: Methods and Protocols = Methods Mol Biol Drug Safety Evaluation: Methods and Protocols = Methods Mol. Biol. Drugs Affecting Lipid Metabolism = Med Sci Symp Ser Drugs Affecting Lipid Metabolism = Med. Sci. Symp. Ser. Drugs Affecting Lipid Metabolism X = Int Congr Ser Drugs Affecting Lipid Metabolism X = Int. Congr. Ser. Drugs & Aging = Drug Aging Drugs & Aging = Drug. Aging Drugs & aging = Drugs Aging Drugs and Aging=Drugs Aging;; Drugs and Aging = Drugs Aging Drugs and Ergogenic Aids to Improve Sport Performance = Essays Biochem Drugs and Ergogenic Aids to Improve Sport Performance = Essays. Biochem. Drugs and The Liver : High Risk Patients and Transplantation = Med Sci Symp Ser Drugs and The Liver : High Risk Patients and Transplantation = Med. Sci. Symp. Ser. Drugs and The Pharmaceutical Sciences = Drugs Pharm Sci Drugs and The Pharmaceutical Sciences = Drugs Pharm. Sci. Drugs=Drugs;; Drugs = Drugs Drugs During Pregnancy = Preg Infants-med Psy Drugs During Pregnancy = Preg. Infants-med. Psy. Drugs-education Prevention and Policy = Drug-educ Prev Polic Drugs-education Prevention and Policy = Drug-educ. Prev. Polic. Drugs for Her-2-positive Breast Cancer = Milestones Drug Ther Drugs for Her-2-positive Breast Cancer = Milestones. Drug. Ther. Drugs in Development = Drug Dev Drugs in Development = Drug. Dev. Drugs in Inflammation = Agent Action Suppl Drugs in Inflammation = Agent. Action. Suppl. Drugs in R and D = Drugs R. D. Drugs in R&d = Drugs R&d Drugs in R&D = Drugs R D Drugs in The Workplace : Research and Evaluation Data = Nida Res Mg Drugs in The Workplace : Research and Evaluation Data = Nida. Res. Mg. Drugs made in Germany = Drugs Made Ger Drugs of Abuse, Immunity, and Aids = Adv Exp Med Biol Drugs of Abuse, Immunity, and Aids = Adv. Exp. Med. Biol. Drugs of Abuse, Immunity, and Immunodeficiency = Adv Exp Med Biol Drugs of Abuse, Immunity, and Immunodeficiency = Adv. Exp. Med. Biol. Drugs of Abuse, Immunomodulation, and Aids = Adv Exp Med Biol Drugs of Abuse, Immunomodulation, and Aids = Adv. Exp. Med. Biol. Drugs of The Future = Drug Future Drugs of The Future = Drug. Future Drugs of the future = Drugs Future Drugs of today (Barcelona, Spain : 1998) = Drugs Today (Barc) Drugs of Today = Drugs Today Drugs of Today = Drug Today Drugs of Today = Drug. Today Drugs & society (New York, N.Y.) = Drugs Soc (New York) Drug standards = Drug Stand Drugs & Therapy Perspectives = Drugs Ther Perspect Drugs & Therapy Perspectives = Drugs Ther. Perspect. Drugs Under Experimental and Clinical Research = Drug Exp Clin Res Drugs Under Experimental and Clinical Research = Drug. Exp. Clin. Res. Drugs under experimental and clinical research = Drugs Exp Clin Res Drugs under Experimental and Clinical Research = Drugs Exp. Clin. Res. Drugs Under Experimental and Clinical Research=Drugs Exp Clin Res;; Drugs Under Experimental and Clinical Research = Drugs Exp. Clin. Res. Drug Targeting and Delivery = Drug Targ D Drug Targeting and Delivery = Drug Targ. D. Drug Targeting and Delivery = E Horwood Ser Pharm Drug Targeting and Delivery = E. Horwood. Ser. Pharm. Drug Targeting By Magnetically Responsive Colloids = Pharm Res Saf Test Drug Targeting By Magnetically Responsive Colloids = Pharm. Res. Saf. Test. Drug Targets in Kinetoplastid Parasites = Adv Exp Med Biol Drug Targets in Kinetoplastid Parasites = Adv. Exp. Med. Biol. Drug Testing and Analysis = Drug Test Anal Drug Testing and Analysis = Drug Test. Anal. Drug therapeutics = Drug Ther Drug Therapeutics = Drug Ther. Drug Therapy-clinical Therapeutics in The Hospital = Drug Ther Clin Ther Drug Therapy-clinical Therapeutics in The Hospital = Drug Ther. Clin. Ther. Drug Therapy = Drug Ther Drug Therapy = Drug Ther. Drug therapy = Drug Ther (NY) Drug Therapy Hospital Edition = Drug Ther Hosp Ed Drug Therapy Hospital Edition = Drug Ther. Hosp. Ed. Drug topics = Drug Topics Drug trade news = Drug Trade News Drug Transit and Distribution Interception and Control = Drug Trans Dist Int Drug Transit and Distribution Interception and Control = Drug Trans. Dist. Int. Drug Transport(ers) and The Diseased Brain = Int Congr Ser Drug Transport(ers) and The Diseased Brain = Int. Congr. Ser. Drug Transporters = Handb Exp Pharmacol Drug Transporters = Handb. Exp. Pharmacol. Drug Treatment of Cardiac Ischemia = Pr Pharm Cl Drug Treatment of Cardiac Ischemia = Pr. Pharm. Cl. Drug Treatment of Congestive Heart Failure = Pr Pharm Cl Drug Treatment of Congestive Heart Failure = Pr. Pharm. Cl. Drustvena Istrazivanja = Drus Istraz Drustvena Istrazivanja = Drus. Istraz. Društvo Matematikov, Fizikov in Astronomov Slovenije = Obzornik Mat. Fiz. Drvna Industrija = Drvna Ind Drvna Industrija = Drvna Ind. Dry Clutch Control for Automotive Applications = Adv Ind Control Dry Clutch Control for Automotive Applications = Adv. Ind. Control Dry Etch Technology = P Soc Photo-opt Ins Dry Etch Technology = P. Soc. Photo-opt. Ins. Dry Glazes = Ceram Handb Dry Glazes = Ceram. Handb. Drying Technology = Drying Technol. Drying Technology = Dry Technol Drying Technology = Dry. Technol. Dry Machining: Turning, Milling, Drilling = Vdi Bericht Dry Machining: Turning, Milling, Drilling = Vdi. Bericht. Dry Processing for Submicrometer Lithography = P Soc Photo-opt Ins Dry Processing for Submicrometer Lithography = P. Soc. Photo-opt. Ins. Drzave V Razvoju - Med Okoljevarstvom in Razvojnimi Teznjami = Geograff Drzave V Razvoju - Med Okoljevarstvom in Razvojnimi Teznjami = Geograff. Ds 2006: Diffusion and Stresses = Defect Diffus Forum Ds 2006: Diffusion and Stresses = Defect. Diffus. Forum. Dsn 2006 International Conference On Dependable Systems and Networks, Proceedings = I C Depend Sys Netwo Dsn 2006 International Conference On Dependable Systems and Networks, Proceedings = I. C. Depend. Sys. Netwo. Ds-rt 2006: Tenth Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm Dis Sim Ds-rt 2006: Tenth Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm. Dis. Sim. Ds-rt 2007: 11th Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm Dis Sim Ds-rt 2007: 11th Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm. Dis. Sim. Ds-rt 2008: 12th 2008 Ieee/acm International Symposium On Distributed Simulation and Real Time Applications, Proceedings = Ieee Acm Dis Sim Ds-rt 2008: 12th 2008 Ieee/acm International Symposium On Distributed Simulation and Real Time Applications, Proceedings = Ieee. Acm. Dis. Sim. DTW. Deutsche tierarztliche Wochenschrift = Dtsch Tierarztl Wochenschr DTW: Deutsche Tierarztliche Wochenschrift = DTW Dtsch. Tierarztl. Wochenschr. DTW. Deutsche Tierarztliche Wochenschrift=DTW Dtsch Tierarztl Wochenschr;; Dual Energy Ct in Clinical Practice = Med Radiol Diagn Ima Dual Energy Ct in Clinical Practice = Med. Radiol. Diagn. Ima. Dual Income Tax: A Proposal for Reforming Corporate and Personal Income Tax in Germany = Zew Econ Stud Dual Income Tax: A Proposal for Reforming Corporate and Personal Income Tax in Germany = Zew. Econ. Stud. Duality in Vector Optimization = Vector Optim Duality in Vector Optimization = Vector Optim. Dual Processing Model of Visual Information: Cortical and Subcortical Processing = Neurosci Res Prog Se Dual Processing Model of Visual Information: Cortical and Subcortical Processing = Neurosci. Res. Prog. Se. Dual Tableaux: Foundations, Methodology, Case Studies = Trends Log Stud Log Dual Tableaux: Foundations, Methodology, Case Studies = Trends. Log. Stud. Log. Dual Transformation of The German Welfare State = New Perspect Ger Stu Dual Transformation of The German Welfare State = New. Perspect. Ger. Stu. Dubai: Behind An Urban Spectacle = Plan Hist Environ Se Dubai: Behind An Urban Spectacle = Plan. Hist. Environ. Se. Dublin Castle and The First Home Rule Crisis: The Political Journal of Sir George Gottrell, 1884-1887 = Camden Fifth Ser Dublin Castle and The First Home Rule Crisis: The Political Journal of Sir George Gottrell, 1884-1887 = Camden. Fifth. Ser. Dublin historical record = Dublin Hist Rec Dublin University law journal = Dubl Univ Law J Dubrovnik = Dubrovnik Ductility of Bulk Nanostructured Materials = Mater Sci Forum Ductility of Bulk Nanostructured Materials = Mater. Sci. Forum. Du-die Zeitschrift Der Kultur = Du-z Kult Du-die Zeitschrift Der Kultur = Du-z. Kult. Du-die Zeitschrift Der Kultur = Du-z Kultur Du-die Zeitschrift Der Kultur = Du-z. Kultur Du = Du Du = Du-z Kultur Du = Du-z. Kultur. Du-europaische Kunstzeitschrift = Du-eur Kunst Du-europaische Kunstzeitschrift = Du-eur. Kunst. Duisburger Arbeiten Zur Sprach- Und Kulturwissenschaft = Duisb Arb S Duisburger Arbeiten Zur Sprach- Und Kulturwissenschaft = Duisb. Arb. S. Duke journal of gender law & policy = Duke J Gend Law Policy Duke Judaic Studies Series = Duke Judaic Stud Ser Duke Judaic Studies Series = Duke Judaic Stud. Ser. Duke law and technology review = Duke Law Technol Rev Duke law journal = Duke Law J Duke Law Journal = Duke Law J Duke Law Journal = Duke Law J. Duke Mathematical Journal = Duke Math. J. Duke Mathematical Journal = Duke Math J Duke Mathematical Journal = Duke Math. J. Du-kunstzeitschrift = Du-kunst Du-kunstzeitschrift = Du-kunst. Du Lecteur A L'usager = Socio-logiques Du Lecteur A L'usager = Socio-logiques. Dumbarton Oaks Colloquium On The History of Landscape Architecture = Dumbarton Oaks Collo Dumbarton Oaks Colloquium On The History of Landscape Architecture = Dumbarton Oaks Collo. Dumbarton Oaks Papers = DOP Dumbarton Oaks Papers = DOP Dune Erosion During Storm Surges = Deltares Sel Ser Dune Erosion During Storm Surges = Deltares. Sel. Ser. Duneland notes = Dunel Notes Duns Business Month = Duns Bus Month Duns Business Month = Duns Bus. Month Duns Review = Duns Bus Month Duns Review = Duns Bus. Month. Duodecim=Duodecim;; Duodecim = Duodecim Duodecim; laaketieteellinen aikakauskirja = Duodecim Duodecim; laaketieteellinen aikakauskirja. Supplementum = Duodecim Suppl Duquesne law review = Duquesne Law Rev Durability 2000: Accelerated and Outdoor Weathering Testing = Am Soc Test Mater Durability 2000: Accelerated and Outdoor Weathering Testing = Am. Soc. Test. Mater. Durability and Change = Dahl Ws Env Durability and Change = Dahl. Ws. Env. Durability of Building and Construction Sealants and Adhesives: 2nd Volume = Am Soc Test Mater Durability of Building and Construction Sealants and Adhesives: 2nd Volume = Am. Soc. Test. Mater. Durability of Building and Construction Sealants and Adhesives = Am Soc Test Mater Durability of Building and Construction Sealants and Adhesives = Am. Soc. Test. Mater. Durability of Building Materials = Durability Build Mat Durability of Building Materials = Durability Build. Mat. Durability of Building Sealants = Rilem Proc Durability of Building Sealants = Rilem. Proc. Durability of Composites for Civil Structural Applications = Woodhead Publ Mater Durability of Composites for Civil Structural Applications = Woodhead. Publ. Mater. Durability of Concrete and Cement Composites = Woodhead Publ Mater Durability of Concrete and Cement Composites = Woodhead. Publ. Mater. Durability of Disease Resistance = Curr Plant Sci Biot Durability of Disease Resistance = Curr. Plant. Sci. Biot. Durability of Strain-hardening Fibre-reinforced Cement-based Composites (shcc) = Rilem State Art Rep Durability of Strain-hardening Fibre-reinforced Cement-based Composites (shcc) = Rilem. State. Art. Rep. Durable Surfaces = Key Eng Mat Durable Surfaces = Key. Eng. Mat. Dural Cavernous Sinus Fistulas: Diagnosis and Endovascular Therapy = Med Radiol Diagn Ima Dural Cavernous Sinus Fistulas: Diagnosis and Endovascular Therapy = Med. Radiol. Diagn. Ima. Durham and Newcastle Research Review = Durham Newcastle Res Durham and Newcastle Research Review = Durham Newcastle Res. Durham East Asia Series = Durham E Asia Ser Durham East Asia Series = Durham E. Asia Ser. Durham Modern Middle East and Islamic World Series = Durh Mod Mid E Islam Durham Modern Middle East and Islamic World Series = Durh. Mod. Mid. E. Islam. Durham Research Review = Durham Res Rev Durham Research Review = Durham Res. Rev. Durham University Journal = DUJ Durham University Journal = Durham Univ J Durham University Journal = Durham Univ. J. Durius = Durius Durum Wheat Semolina and Pasta Quality = Colloq Inra Durum Wheat Semolina and Pasta Quality = Colloq. Inra. Dusseldorfer Arbeiten zur Geschichte der Medizin. Beiheft = Dusseld Arb Gesch Med Beih Dusseldorfer Arbeiten zur Geschichte der Medizin = Dusseld Arb Gesch Med Dusseldorfer geographische Schriften = Dusseld Geogr Schr Dust in The Solar System and Other Planetary Systems = Cospar Coll Dust in The Solar System and Other Planetary Systems = Cospar. Coll. Dust Storms: Elemental Composition, Causes and Environmental Impacts = Nat Disaster Res Pr Dust Storms: Elemental Composition, Causes and Environmental Impacts = Nat. Disaster. Res. Pr. Dusty Objects in The Universe = Astrophys Space Sc L Dusty Objects in The Universe = Astrophys. Space. Sc. L. Dusty Plasmas and Active Experiments = Adv Space Res Dusty Plasmas and Active Experiments = Adv. Space. Res. Dusty Plasmas in The New Millennium = Aip Conf Proc Dusty Plasmas in The New Millennium = Aip. Conf. Proc. Dutch Contributions to The Fourteenth International Congress of Slavists: Literature = Stud Slav L Dutch Contributions to The Fourteenth International Congress of Slavists: Literature = Stud. Slav. L. Dutch Contributions to The Twelfth International Congress of Slavists = Stud Slav Dutch Contributions to The Twelfth International Congress of Slavists = Stud. Slav. Dutch Contributions to The Twelfth International Congress of Slavists = Stud Slav L Dutch Contributions to The Twelfth International Congress of Slavists = Stud. Slav. L. Dutch Contributions to The Twelfth International Congress of Slavists = Stud Slav Lit Poet Dutch Contributions to The Twelfth International Congress of Slavists = Stud. Slav. Lit. Poet. Dutch Crossing-journal of Low Countries Studies = Dutch Crossing Dutch Crossing-journal of Low Countries Studies = Dutch Crossing. Dutch Medicine in The Malay Archipelago 1816-1942 = N Ned Bij G Dutch Medicine in The Malay Archipelago 1816-1942 = N. Ned. Bij. G. Dutch Quarterly Review of Anglo-american Letters = Dutch Quart Rev Angl Dutch Quarterly Review of Anglo-american Letters = Dutch Quart. Rev. Angl. DUV Mathematik = DUV Math. Dve Domovini-two Homelands = Dve Domovini Dve Domovini-two Homelands = Dve Domovini. DVS Berichte = DVS Ber. DVT, Dejiny ved a techniky = Dejiny Ved Tech Dvwk Bulletin = Dvwk Bull Dvwk Bulletin = Dvwk Bull. Dyes and Pigments = Dyes Pigm. Dyes and Pigments = Dyes Pigments Dyfamed: Unique Observatory for The Study of Oceanic Processes = Oceanis S D Dyfamed: Unique Observatory for The Study of Oceanic Processes = Oceanis. S. D. Dyfamed: Un Observatoire Unique Pour L'etude Des Processus Oceaniques = Oceanis-ser Doc Dyfamed: Un Observatoire Unique Pour L'etude Des Processus Oceaniques = Oceanis-ser. Doc. Dying and Dead Seas: Climatic Versus Anthropic Causes = Nato Sci S Ss Iv Ear Dying and Dead Seas: Climatic Versus Anthropic Causes = Nato. Sci. S. Ss. Iv. Ear. Dyke Swarms - Time Markers of Crustal Evolution = Proc Monogr Eng Wate Dyke Swarms - Time Markers of Crustal Evolution = Proc. Monogr. Eng. Wate. Dyna-colombia = Dyna-colombia Dyna = Dyna Dyna = Dyna-bilbao Dyna = Dyna-bilbao. Dynamic 3d Imaging, Proceedings = Lect Notes Comput Sc Dynamic 3d Imaging, Proceedings = Lect. Notes. Comput. Sc. Dynamical Analysis of Vehicle Systems = Cism Cour L Dynamical Analysis of Vehicle Systems = Cism. Cour. L. Dynamical Analysis of Vehicle Systems = Cism Courses Lect Dynamical Analysis of Vehicle Systems = Cism. Courses. Lect. Dynamical Evolution of Star Clusters - Confrontation of Theory and Observations = Iau Symp Dynamical Evolution of Star Clusters - Confrontation of Theory and Observations = Iau. Symp. Dynamical Numbers: Interplay Between Dynamical Systems and Number Theory = Contemp Math Dynamical Numbers: Interplay Between Dynamical Systems and Number Theory = Contemp. Math. Dynamical Processes in Critical Regions of The Heliosphere = Adv Space Res Dynamical Processes in Critical Regions of The Heliosphere = Adv. Space. Res. Dynamical Processes in Critical Regions of The Heliosphere = Adv Space Res-series Dynamical Processes in Critical Regions of The Heliosphere = Adv. Space. Res-series. Dynamical Properties of Unconventional Magnetic Systems = Nato Adv Sci I E-app Dynamical Properties of Unconventional Magnetic Systems = Nato. Adv. Sci. I. E-app. Dynamical Systems and Chaos = Appl Math Sci Dynamical Systems and Chaos = Appl. Math. Sci. Dynamical Systems and Control = Stab Contr Dynamical Systems and Control = Stab. Contr. Dynamical Systems and Irreversibility: Proceedings of The Xxi Solvay Conference On Physics = Adv Chem Phys Dynamical Systems and Irreversibility: Proceedings of The Xxi Solvay Conference On Physics = Adv. Chem. Phys. Dynamical Systems and Processes = Irma Lect Math Theor Dynamical Systems and Processes = Irma. Lect. Math. Theor. Dynamical Systems and Related Topics = Adv S Dy Sy Dynamical Systems and Related Topics = Adv. S. Dy. Sy. Dynamical Systems and Small Divisors = Lect Notes Math Dynamical Systems and Small Divisors = Lect. Notes. Math. Dynamical Systems-an International Journal = Dynam Syst Dynamical Systems-an International Journal = Dynam. Syst. Dynamical Systems, Control, Coding, Computer Vision = Prog Syst C Dynamical Systems, Control, Coding, Computer Vision = Prog. Syst. C. Dynamical Systems, Graphs, and Algorithms = Lect Notes Math Dynamical Systems, Graphs, and Algorithms = Lect. Notes. Math. Dynamical Systems = Lect Notes Math Dynamical Systems = Lect. Notes. Math. Dynamical Systems, Wave-based Computation and Neuro-inspired Robots = Cism Courses Lect Dynamical Systems, Wave-based Computation and Neuro-inspired Robots = Cism. Courses. Lect. Dynamical Vision = Lect Notes Comput Sc Dynamical Vision = Lect. Notes. Comput. Sc. Dynamic Analysis of Petri Net-based Discrete Systems = Lect Notes Contr Inf Dynamic Analysis of Petri Net-based Discrete Systems = Lect. Notes. Contr. Inf. Dynamic and Robust Streaming in and Between Connected Consumer-electronic Devices = Int C Intell Eng Sys Dynamic and Robust Streaming in and Between Connected Consumer-electronic Devices = Int. C. Intell. Eng. Sys. Dynamic and Transient Infinite Elements: Theory and Geophysical, Geotechnical and Geoenvironmental Applications = Adv Geophys Env Mech Dynamic and Transient Infinite Elements: Theory and Geophysical, Geotechnical and Geoenvironmental Applications = Adv. Geophys. Env. Mech. Dynamic Assessment: A Vygotskian Approach to Understanding and Promoting L2 Development = Educ Linguist Dynamic Assessment: A Vygotskian Approach to Understanding and Promoting L2 Development = Educ. Linguist. Dynamic Bifurcations = Lect Notes Math Dynamic Bifurcations = Lect. Notes. Math. Dynamic Brain - From Neural Spikes to Behaviors = Lect Notes Comput Sc Dynamic Brain - From Neural Spikes to Behaviors = Lect. Notes. Comput. Sc. Dynamic Capabilities Between Firm Organisation and Local Systems of Production = Routl Stud Glob Comp Dynamic Capabilities Between Firm Organisation and Local Systems of Production = Routl. Stud. Glob. Comp. Dynamic Cells: Cell Biology of The 21st Century = Int Congr Ser Dynamic Cells: Cell Biology of The 21st Century = Int. Congr. Ser. Dynamic Elastic Modulus Measurements in Materials = Am Soc Test Mater Dynamic Elastic Modulus Measurements in Materials = Am. Soc. Test. Mater. Dynamic Epistemic Logic = Synth Libr Dynamic Epistemic Logic = Synth. Libr. Dynamic Fleet Management: Concepts, Systems, Algorithms & Case Studies = Oper Res Comput Sci Dynamic Fleet Management: Concepts, Systems, Algorithms & Case Studies = Oper. Res. Comput. Sci. Dynamic Formal Epistemology = Synth Libr Dynamic Formal Epistemology = Synth. Libr. Dynamic Geotechnical Testing Ii = Am Soc Test Mater Dynamic Geotechnical Testing Ii = Am. Soc. Test. Mater. Dynamic Heliosphere = Adv Space Res Dynamic Heliosphere = Adv. Space. Res. Dynamic Heliosphere = Adv Space Res-series Dynamic Heliosphere = Adv. Space. Res-series. Dynamic Interactions of Myelin Proteins = Prog Clin Biol Res Dynamic Interactions of Myelin Proteins = Prog. Clin. Biol. Res. Dynamic Interstellar Medium: A Celebration of The Canadian Galactic Plane Survey = Astr Soc P Dynamic Interstellar Medium: A Celebration of The Canadian Galactic Plane Survey = Astr. Soc. P. Dynamic Inventory Management in Reverse Logistics = Lect Notes Econ Math Dynamic Inventory Management in Reverse Logistics = Lect. Notes. Econ. Math. Dynamic Laser Speckle and Applications = Opt Sci Eng-crc Dynamic Laser Speckle and Applications = Opt. Sci. Eng-crc. Dynamic Linear Models With R = Use R Dynamic Linear Models With R = Use. R Dynamic Macroeconomics With Imperfect Competition = Lect Notes Econ Math Dynamic Macroeconomics With Imperfect Competition = Lect. Notes. Econ. Math. Dynamic medicine : DM = Dyn Med Dynamic Methods for Damage Detection in Structures = Cism Courses Lect Dynamic Methods for Damage Detection in Structures = Cism. Courses. Lect. Dynamic Mixed Models for Familial Longitudinal Data = Springer Ser Stat Dynamic Mixed Models for Familial Longitudinal Data = Springer. Ser. Stat. Dynamic Model Development: Methods, Theory and Applications = Comp Aid Ch Dynamic Model Development: Methods, Theory and Applications = Comp. Aid. Ch. Dynamic Model Development: Methods, Theory and Applications = Comput-aided Chem En Dynamic Model Development: Methods, Theory and Applications = Comput-aided. Chem. En. Dynamic Modeling and Econometrics of Economics and Finance = Dynam Mod Econ Econ Dynamic Modeling and Econometrics of Economics and Finance = Dynam. Mod. Econ. Econ. Dynamic Modeling for Business Management: An Introduction = Model Dyn Syst Dynamic Modeling for Business Management: An Introduction = Model. Dyn. Syst. Dynamic Modeling of Monetary and Fiscal Cooperation Among Nations = Dynam Mod Econ Econ Dynamic Modeling of Monetary and Fiscal Cooperation Among Nations = Dynam. Mod. Econ. Econ. Dynamic Modeling, Predictive Control and Performance Monitoring: A Data-driven Subspace Approach = Lect Notes Contr Inf Dynamic Modeling, Predictive Control and Performance Monitoring: A Data-driven Subspace Approach = Lect. Notes. Contr. Inf. Dynamic Noncooperative Game Models for Deregulated Electricity Markets = Energ Polic Polit Pr Dynamic Noncooperative Game Models for Deregulated Electricity Markets = Energ. Polic. Polit. Pr. Dynamic Nutrition Research = Dyn Nutr R Dynamic Nutrition Research = Dyn. Nutr. R. Dynamic Offset Compensated Cmos Amplifers = Analog Circ Sig Proc Dynamic Offset Compensated Cmos Amplifers = Analog. Circ. Sig. Proc. Dynamic Optimization and Differential Games = Int Ser Oper Res Man Dynamic Optimization and Differential Games = Int. Ser. Oper. Res. Man. Dynamic Planet: Monitoring and Understanding A Dynamic Planet With Geodetic and Oceanographic Tools = Iag Symp Dynamic Planet: Monitoring and Understanding A Dynamic Planet With Geodetic and Oceanographic Tools = Iag. Symp. Dynamic Pricing and Automated Resource Allocation for Complex Information Services = Lect Notes Econ Math Dynamic Pricing and Automated Resource Allocation for Complex Information Services = Lect. Notes. Econ. Math. Dynamic Processes in The Critical Magnetospheric Regions and Radiation Belt Models, Proceedings = Adv Space Res Dynamic Processes in The Critical Magnetospheric Regions and Radiation Belt Models, Proceedings = Adv. Space. Res. Dynamic Processes in The Critical Magnetospheric Regions and Radiation Belt Models, Proceedings = Adv Space Res-series Dynamic Processes in The Critical Magnetospheric Regions and Radiation Belt Models, Proceedings = Adv. Space. Res-series. Dynamic Properties of Biomolecular Assemblies = Roy Soc Ch Dynamic Properties of Biomolecular Assemblies = Roy. Soc. Ch. Dynamic Response of Pre-stressed Spatially Curved Thin-walled Beams of Open Profile = Springerbr Appl Sci Dynamic Response of Pre-stressed Spatially Curved Thin-walled Beams of Open Profile = Springerbr. Appl. Sci. Dynamics and Balancing of Multibody Systems = Lect Notes Appl Comp Dynamics and Balancing of Multibody Systems = Lect. Notes. Appl. Comp. Dynamics and Biogenesis of Membranes = Nato Adv Sci I H-cel Dynamics and Biogenesis of Membranes = Nato. Adv. Sci. I. H-cel. Dynamics and Biogeochemistry of River Corridors and Wetlands = Iahs-aish P Dynamics and Biogeochemistry of River Corridors and Wetlands = Iahs-aish. P. Dynamics and Control = Dynam. Control Dynamics and Control = Dynam Control Dynamics and Control = Dynam. Control Dynamics and Control = Dyn. Control Dynamics and Control of Chemical Reactors, Distillation Columns and Batch Processes ( Dycord Plus 92 ) = Ifac Symp Series Dynamics and Control of Chemical Reactors, Distillation Columns and Batch Processes ( Dycord Plus 92 ) = Ifac. Symp. Series. Dynamics and Environmental Context of Aeolian Sedimentary Systems = Geol Soc Sp Dynamics and Environmental Context of Aeolian Sedimentary Systems = Geol. Soc. Sp. Dynamics and Fluctuations in Biomedical Photonics Viii = Proc Spie Dynamics and Fluctuations in Biomedical Photonics Viii = Proc. Spie. Dynamics and Fluctuations in Biomedical Photonics Viii = P Soc Photo-opt Ins Dynamics and Fluctuations in Biomedical Photonics Viii = P. Soc. Photo-opt. Ins. Dynamics and Fluctuations in Biomedical Photonics Vii = Proc Spie Dynamics and Fluctuations in Biomedical Photonics Vii = Proc. Spie. Dynamics and Fluctuations in Biomedical Photonics Vii = P Soc Photo-opt Ins Dynamics and Fluctuations in Biomedical Photonics Vii = P. Soc. Photo-opt. Ins. Dynamics and Fluctuations in Biomedical Photonics Vi = P Soc Photo-opt Ins Dynamics and Fluctuations in Biomedical Photonics Vi = P. Soc. Photo-opt. Ins. Dynamics and Friction in Submicrometer Confining Systems = Acs Sym Ser Dynamics and Friction in Submicrometer Confining Systems = Acs. Sym. Ser. Dynamics and Mechanisms of Photoinduced Electron Transfer and Related Phenomena = N-holland D Dynamics and Mechanisms of Photoinduced Electron Transfer and Related Phenomena = N-holland. D. Dynamics and Patterns in Complex Fluids = Springer Proc Phys Dynamics and Patterns in Complex Fluids = Springer. Proc. Phys. Dynamics and Randomness Ii = Nonl Phen Compl Syst Dynamics and Randomness Ii = Nonl. Phen. Compl. Syst. Dynamics and Randomness = Nonl Phen Compl Syst Dynamics and Randomness = Nonl. Phen. Compl. Syst. Dynamics and Stability of Systems = Dynam. Stability Systems Dynamics and Stability of Systems = Dynam Stabil Syst Dynamics and Stability of Systems = Dynam. Stabil. Syst. Dynamics and Stochastic Processes = Lect Notes Phys Dynamics and Stochastic Processes = Lect. Notes. Phys. Dynamics and The Problem of Recognition in Biological Macromolecules = Nato Adv Sci Inst Se Dynamics and The Problem of Recognition in Biological Macromolecules = Nato. Adv. Sci. Inst. Se. Dynamics and Thermodynamics of Systems With Long-range Interactions = Lect Notes Phys Dynamics and Thermodynamics of Systems With Long-range Interactions = Lect. Notes. Phys. Dynamics and Thermodynamics of Systems With Long-range Interactions: Theory and Experiments = Aip Conf Proc Dynamics and Thermodynamics of Systems With Long-range Interactions: Theory and Experiments = Aip. Conf. Proc. Dynamics and Use of Sardinella Resources From Upwelling Off Ghana and Ivory Coast = Colloq Semi Dynamics and Use of Sardinella Resources From Upwelling Off Ghana and Ivory Coast = Colloq. Semi. Dynamics and Uses of The Mangrove in Countries Along The Southern Rivers (from Senegal to Sierra Leone) = Colloq Semi Dynamics and Uses of The Mangrove in Countries Along The Southern Rivers (from Senegal to Sierra Leone) = Colloq. Semi. Dynamics Between Entrepreneurship, Environment and Education = Eur Res Entrep Dynamics Between Entrepreneurship, Environment and Education = Eur. Res. Entrep. Dynamics, Bifurcation and Symmetry = Nato Adv Sci Inst Se Dynamics, Bifurcation and Symmetry = Nato. Adv. Sci. Inst. Se. Dynamics, Bifurcations and Control = Lect Notes Contr Inf Dynamics, Bifurcations and Control = Lect. Notes. Contr. Inf. Dynamics, Ephemerides and Astrometry of The Solar System = Iau Symp Dynamics, Ephemerides and Astrometry of The Solar System = Iau. Symp. Dynamics, Information and Complexity in Quantum Systems = Theor Math Phys Ser Dynamics, Information and Complexity in Quantum Systems = Theor. Math. Phys. Ser. Dynamics in Small Confining Systems-2003 = Mater Res Soc Symp P Dynamics in Small Confining Systems-2003 = Mater. Res. Soc. Symp. P. Dynamics in Small Confining Systems Iii = Mater Res Soc Symp P Dynamics in Small Confining Systems Iii = Mater. Res. Soc. Symp. P. Dynamics in Small Confining Systems Ii = Mater Res Soc Symp P Dynamics in Small Confining Systems Ii = Mater. Res. Soc. Symp. P. Dynamics in Small Confining Systems Iv = Mater Res Soc Symp P Dynamics in Small Confining Systems Iv = Mater. Res. Soc. Symp. P. Dynamics in Small Confining Systems = Mater Res Soc Symp P Dynamics in Small Confining Systems = Mater. Res. Soc. Symp. P. Dynamics: Models and Kinetic Methods for Non-equilibrium Many Body Systems = Nato Adv Sci I E-app Dynamics: Models and Kinetic Methods for Non-equilibrium Many Body Systems = Nato. Adv. Sci. I. E-app. Dynamics of Asian Financial Integration: Facts and Analytics = Routl Stud Mod World Dynamics of Asian Financial Integration: Facts and Analytics = Routl. Stud. Mod. World. Dynamics of Asian Labour Markets: Balancing Control and Flexibility = Routledge Stud Growt Dynamics of Asian Labour Markets: Balancing Control and Flexibility = Routledge. Stud. Growt. Dynamics of Atmospheres and Oceans = Dynam Atmos Oceans Dynamics of Atmospheres and Oceans = Dynam. Atmos. Oceans Dynamics of Atmospheres and Oceans = Dyn. Atmos. Oceans Dynamics of Cell and Tissue Motion = Math Biosci Interac Dynamics of Cell and Tissue Motion = Math. Biosci. Interac. Dynamics of Change in Higher Education = High Educ Dynam Dynamics of Change in Higher Education = High. Educ. Dynam. Dynamics of Complex Interacting Systems = Nonl Phen Compl Syst Dynamics of Complex Interacting Systems = Nonl. Phen. Compl. Syst. Dynamics of Complex Interconnected Biological Systems = Math Mod Dynamics of Complex Interconnected Biological Systems = Math. Mod. Dynamics of Complex Interconnected Systems: Networks and Bioprocesses = Nato Sci Ser Ii-math Dynamics of Complex Interconnected Systems: Networks and Bioprocesses = Nato. Sci. Ser. Ii-math. Dynamics of Complex Interconnected Systems: Networks and Bioprocesses = Nato Sci Ser Ii Math Dynamics of Complex Interconnected Systems: Networks and Bioprocesses = Nato. Sci. Ser. Ii. Math. Dynamics of Continuous, Discrete and Impulsive Systems = Dynam. Contin. Discrete Impuls. Systems Dynamics of Continuous Discrete and Impulsive Systems = Dyn Contin Discret I Dynamics of Continuous Discrete and Impulsive Systems = Dyn. Contin. Discret. I. Dynamics of Continuous Discrete and Impulsive Systems-series A-mathematical Analysis = Dynam Cont Dis Ser A Dynamics of Continuous Discrete and Impulsive Systems-series A-mathematical Analysis = Dynam. Cont. Dis. Ser. A. Dynamics of Continuous Discrete and Impulsive Systems-series B-applications & Algorithms = Dynam Cont Dis Ser B Dynamics of Continuous Discrete and Impulsive Systems-series B-applications & Algorithms = Dynam. Cont. Dis. Ser. B. Dynamics of Coupled Map Lattices and of Related Spatially Extended Systems = Lect Notes Phys Dynamics of Coupled Map Lattices and of Related Spatially Extended Systems = Lect. Notes. Phys. Dynamics of Crustal Magma Transfer, Storage and Differentiation = Geol Soc Spec Publ Dynamics of Crustal Magma Transfer, Storage and Differentiation = Geol. Soc. Spec. Publ. Dynamics of Crystal Surfaces and Interfaces = Fundmat Res Dynamics of Crystal Surfaces and Interfaces = Fundmat. Res. Dynamics of Detonations and Explosions : Detonations = Progr Astronaut Aero Dynamics of Detonations and Explosions : Detonations = Progr. Astronaut. Aero. Dynamics of Detonations and Explosions : Explosion Phenomena = Progr Astronaut Aero Dynamics of Detonations and Explosions : Explosion Phenomena = Progr. Astronaut. Aero. Dynamics of Dissipation = Lect Notes Phys Dynamics of Dissipation = Lect. Notes. Phys. Dynamics of Earths Deep Interior and Earth Rotation = Geoph Monog Series Dynamics of Earths Deep Interior and Earth Rotation = Geoph. Monog. Series. Dynamics of Educational Effectiveness = Contexts Learn Dynamics of Educational Effectiveness = Contexts. Learn. Dynamics of Emerging Stock Markets: Empirical Assessments and Implications = Contrib Manag Sci Dynamics of Emerging Stock Markets: Empirical Assessments and Implications = Contrib. Manag. Sci. Dynamics of Farmlands = Colloq Semi Dynamics of Farmlands = Colloq. Semi. Dynamics of Fluids and Transport in Fractured Rock = Geoph Monog Series Dynamics of Fluids and Transport in Fractured Rock = Geoph. Monog. Series. Dynamics of Galaxies and Their Molecular Cloud Distributions = Iau Symp Dynamics of Galaxies and Their Molecular Cloud Distributions = Iau. Symp. Dynamics of Gambling: Origins of Randomness in Mechanical Systems = Lect Notes Phys Dynamics of Gambling: Origins of Randomness in Mechanical Systems = Lect. Notes. Phys. Dynamics of Heat: A Unified Approach to Thermodynamics and Heat Transfer, Second Edition = Grad Texts Phys Dynamics of Heat: A Unified Approach to Thermodynamics and Heat Transfer, Second Edition = Grad. Texts. Phys. Dynamics of Ice Sheets and Glaciers = Adv Geophys Env Mech Dynamics of Ice Sheets and Glaciers = Adv. Geophys. Env. Mech. Dynamics of Industrial Capitalism = Graz Schumpeter Lect Dynamics of Industrial Capitalism = Graz. Schumpeter. Lect. Dynamics of Inequality and Poverty = Res Econ Inequal Dynamics of Inequality and Poverty = Res. Econ. Inequal. Dynamics of Information Systems: Theory and Applications = Springer Ser Optim A Dynamics of Information Systems: Theory and Applications = Springer. Ser. Optim. A. Dynamics of International Information Systems: Anatomy of A Grounded Theory Investigation = Integr Ser Inform Sy Dynamics of International Information Systems: Anatomy of A Grounded Theory Investigation = Integr. Ser. Inform. Sy. Dynamics of Intervention: Regulation and Redistribution in The Mixed Economy = Adv Austrian Econ Dynamics of Intervention: Regulation and Redistribution in The Mixed Economy = Adv. Austrian. Econ. Dynamics of Language : An Introduction = Syntax Semantics Dynamics of Language : An Introduction = Syntax. Semantics. Dynamics of Magnetic Fluctuations in High-temperature Superconductors = Nato Adv Sci I B-phy Dynamics of Magnetic Fluctuations in High-temperature Superconductors = Nato. Adv. Sci. I. B-phy. Dynamics of Multiphase Flows Across Interfaces = Lect Notes Phys Dynamics of Multiphase Flows Across Interfaces = Lect. Notes. Phys. Dynamics of Nonlinear Time-delay Systems = Springer Ser Synerg Dynamics of Nonlinear Time-delay Systems = Springer. Ser. Synerg. Dynamics of Organizational Collapse = Routl Int Stud Money Dynamics of Organizational Collapse = Routl. Int. Stud. Money. Dynamics of Partial Differential Equations = Dynam Part Differ Eq Dynamics of Partial Differential Equations = Dynam. Part. Differ. Eq. Dynamics of Polyatomic Van Der Waals Complexes = Nato Adv Sci I B-phy Dynamics of Polyatomic Van Der Waals Complexes = Nato. Adv. Sci. I. B-phy. Dynamics of Populations of Planetary Systems = Iau Colloq Dynamics of Populations of Planetary Systems = Iau. Colloq. Dynamics of Public Policy: Theory and Evidence = New Horiz Public Pol Dynamics of Public Policy: Theory and Evidence = New. Horiz. Public Pol. Dynamics of Small Bodies in The Solar System = Nato Adv Sci I C-mat Dynamics of Small Bodies in The Solar System = Nato. Adv. Sci. I. C-mat. Dynamics of Small Solar System Bodies and Exoplanets = Lect Notes Phys Dynamics of Small Solar System Bodies and Exoplanets = Lect. Notes. Phys. Dynamics of Spatio-temporal Cellular Structures: Henri Benard Centenary Review = Springer Trac Mod Ph Dynamics of Spatio-temporal Cellular Structures: Henri Benard Centenary Review = Springer. Trac. Mod. Ph. Dynamics of Spatio-temporal Cellular Structures: Henri Benard Centenary Review = Springer Tr Mod Phys Dynamics of Spatio-temporal Cellular Structures: Henri Benard Centenary Review = Springer. Tr. Mod. Phys. Dynamics of Star Clusters and The Milky Way = Astr Soc P Dynamics of Star Clusters and The Milky Way = Astr. Soc. P. Dynamics of Surfaces and Reaction Kinetics in Heterogeneous Catalysis = Stud Surf Sci Catal Dynamics of Surfaces and Reaction Kinetics in Heterogeneous Catalysis = Stud. Surf. Sci. Catal. Dynamics of Tethered Space Systems = Adv Eng Dynamics of Tethered Space Systems = Adv. Eng. Dynamics of The Mammalian Sperm Head = Adv Anat Embryol Cel Dynamics of The Mammalian Sperm Head = Adv. Anat. Embryol. Cel. Dynamics of Thought = Synth Libr Dynamics of Thought = Synth. Libr. Dynamic Soil-structure Interaction = Dev Geotech Eng Dynamic Soil-structure Interaction = Dev. Geotech. Eng. Dynamics On and of Complex Networks = Model Simul Sci Eng Dynamics On and of Complex Networks = Model. Simul. Sci. Eng. Dynamics (Pembroke, Ont.) = Dynamics Dynamics Reported: Expositions in Dynamical Systems (New Series) = Dynam. Report. Expositions Dynam. Systems (N.S.) Dynamics, Structure and Function of Biological Macromolecules = Nato Sci S A Lif Sci Dynamics, Structure and Function of Biological Macromolecules = Nato. Sci. S. A. Lif. Sci. Dynamics, Structure and History of Galaxies = Astr Soc P Dynamics, Structure and History of Galaxies = Astr. Soc. P. Dynamic Stabilisation of The Biped Lucy Powered By Actuators With Controllable Stiffness = Springer Trac Adv Ro Dynamic Stabilisation of The Biped Lucy Powered By Actuators With Controllable Stiffness = Springer. Trac. Adv. Ro. Dynamic Structure of Detonation in Gaseous and Dispersed Media = Fluid Mec A Dynamic Structure of Detonation in Gaseous and Dispersed Media = Fluid. Mec. A. Dynamic Sun, Proceedings = Astrophys Space Sc L Dynamic Sun, Proceedings = Astrophys. Space. Sc. L. Dynamic Surface Control of Uncertain Nonlinear Systems: An Lmi Approach = Commun Control Eng Dynamic Surface Control of Uncertain Nonlinear Systems: An Lmi Approach = Commun. Control Eng. Dynamic System Reconfiguration in Heterogeneous Platforms: The Morpheus Approach = Lect Notes Electr En Dynamic System Reconfiguration in Heterogeneous Platforms: The Morpheus Approach = Lect. Notes. Electr. En. Dynamic Systems and Applications = Dynam Syst Appl Dynamic Systems and Applications = Dynam. Syst. Appl. Dynamic Systems and Applications = Dynam. Systems Appl. Dynamic Systems and Applications = Dyn Syst Appl Dynamic Systems and Applications = Dyn. Syst. Appl. Dynamic Systems, Economic Growth, and The Environment = Dynam Mod Econ Econ Dynamic Systems, Economic Growth, and The Environment = Dynam. Mod. Econ. Econ. Dynamic Taxonomies and Faceted Search: Theory, Practice, and Experience = Inform Retrieval Ser Dynamic Taxonomies and Faceted Search: Theory, Practice, and Experience = Inform. Retrieval. Ser. Dynamic Trip Modelling: From Shopping Centres to The Internet = Geojournal Lib Dynamic Trip Modelling: From Shopping Centres to The Internet = Geojournal. Lib. Dynamische Disposition: Strategien Zur Optimalen Auftrags- Und Bestandsdisposition = Vdi-buch Dynamische Disposition: Strategien Zur Optimalen Auftrags- Und Bestandsdisposition = Vdi-buch. Dynamische Markte: Praxis, Strategien Und Nutzen Fur Wirtschaft Und Gesellschaft = Vdi-buch Dynamische Markte: Praxis, Strategien Und Nutzen Fur Wirtschaft Und Gesellschaft = Vdi-buch. Dynamische Psychiatrie. Dynamic psychiatry = Dyn Psychiatr Dynamische Psychiatrie = Dynam Psychiat Dynamische Psychiatrie = Dynam. Psychiat. Dynamis = Dynamis Dynamis (Granada, Spain) = Dynamis Dynamo and Dynamics, A Mathematical Challenge = Nato Sci Ser Ii-math Dynamo and Dynamics, A Mathematical Challenge = Nato. Sci. Ser. Ii-math. Dynamo and Dynamics, A Mathematical Challenge = Nato Sci Ser Ii Math Dynamo and Dynamics, A Mathematical Challenge = Nato. Sci. Ser. Ii. Math. Dysfunctional Uterine Bleeding = Adv Rep End Dysfunctional Uterine Bleeding = Adv. Rep. End. Dyslexia An Academic Perspective = Dyslex Acad Perspect Dyslexia An Academic Perspective = Dyslex. Acad. Perspect. Dyslexia and Creativity: Investigations From Differing Perspectives = Dyslex Acad Perspect Dyslexia and Creativity: Investigations From Differing Perspectives = Dyslex. Acad. Perspect. Dyslexia and Depression: The Hidden Sorrow = Psychiat Theor Appl Dyslexia and Depression: The Hidden Sorrow = Psychiat. Theor. Appl. Dyslexia (Chichester, England) = Dyslexia Dyslexia = Dyslexia Dyslexic Brain = Extraordinary Brain Dyslexic Brain = Extraordinary. Brain Dysphagia=Dysphagia;; Dysphagia = Dysphagia Dystonia: Causes, Symptoms and Treatment = Neurol Lab Clin Res Dystonia: Causes, Symptoms and Treatment = Neurol. Lab. Clin. Res. Dzhemilev Reaction in Organic and Organometallic Synthesis = Chem Res Appl-nova Dzhemilev Reaction in Organic and Organometallic Synthesis = Chem. Res. Appl-nova. Eaa Lecture Notes = Eaa Lect Notes Eaa Lecture Notes = Eaa Lect. Notes Eaap European Association for Animal Production Publication = Eaap Public Eaap European Association for Animal Production Publication = Eaap Public. Eaap European Association for Animal Production Technical Series = Eaap Tech Eaap European Association for Animal Production Technical Series = Eaap Tech. Eaa Series = Eaa Ser Eaa Series = Eaa Ser. Eac Occasional Papers = Eac Occas Pap Eac Occasional Papers = Eac Occas. Pap. Eadoption and The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 and 2 = Inform Comm Tech Kno Eadoption and The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 and 2 = Inform. Comm. Tech. Kno. Ear and hearing = Ear Hear Ear and Hearing=Ear Hear;; Ear and Hearing = Ear Hear. Ear and Hearing = Ear Hearing Earlier and Recent Aspects of Superconductivity = Springer Series Soli Earlier and Recent Aspects of Superconductivity = Springer. Series. Soli. Early Algebraization: A Global Dialogue From Multiple Perspectives = Advncs Mthmtcs Educ Early Algebraization: A Global Dialogue From Multiple Perspectives = Advncs. Mthmtcs. Educ. Early American literature = Early Am Lit Early American Literature = Early Am Literature Early American Literature = Early Am. Literature Early American Studies Series = Early Am Stud Ser Early American Studies Series = Early Am. Stud. Ser. Early Aspects: Current Challenges and Future Directions = Lect Notes Comput Sc Early Aspects: Current Challenges and Future Directions = Lect. Notes. Comput. Sc. Early Brain = Act Acad Ab Early Brain = Act. Acad. Ab. Early Brain Injury Or Cerebral Vasospasm, Vol 1: Pathophysiology = Acta Neurochir Suppl Early Brain Injury Or Cerebral Vasospasm, Vol 1: Pathophysiology = Acta. Neurochir. Suppl. Early Brain Injury Or Cerebral Vasospasm, Vol 2 = Acta Neurochir Suppl Early Brain Injury Or Cerebral Vasospasm, Vol 2 = Acta. Neurochir. Suppl. Early child development and care = Early Child Dev Care Early Child Development: Investing in Our Children's Future = Int Congr Ser Early Child Development: Investing in Our Children's Future = Int. Congr. Ser. Early Childhood Education Series = Ear Child E Early Childhood Education Series = Ear. Child. E. Early Childhood Mathematics Education Research = Stud Math Think Lear Early Childhood Mathematics Education Research = Stud. Math. Think. Lear. Early childhood research quarterly = Early Child Res Q Early Childhood Research Quarterly = Early Child Res Q Early Childhood Research Quarterly = Early Child. Res. Q. Early China = Early China Early Christian Families in Context: An Interdisciplinary Dialogue = Relig Marriage Fam Early Christian Families in Context: An Interdisciplinary Dialogue = Relig. Marriage. Fam. Early Christianity = Class Found Early Christianity = Class. Found. Early Church Fathers = Early Church Fathers Early Development of The Adrenal Glands in The Grass Snake Natrix Natrix L(lepidosauria, Serpentes) = Adv Anat Embryol Cel Early Development of The Adrenal Glands in The Grass Snake Natrix Natrix L(lepidosauria, Serpentes) = Adv. Anat. Embryol. Cel. Early Development of The Human Pelvic Diaphragm = Adv Anat Embryol Cel Early Development of The Human Pelvic Diaphragm = Adv. Anat. Embryol. Cel. Early Development & Parenting = Early Dev Parenting Early Development & Parenting = Early Dev. Parenting Early education and development = Early Educ Dev Early Education and Development = Early Educ Dev Early Education and Development = Early Educ. Dev. Early Embryo Development and Paracrine Relationships = Ucla Sym Bi Early Embryo Development and Paracrine Relationships = Ucla. Sym. Bi. Early Enlightenment of The Dutch Republic, 1650-1750 = Brill S In Early Enlightenment of The Dutch Republic, 1650-1750 = Brill. S. In. Early human development = Early Hum Dev Early Human Development=Early Hum Dev;; Early Human Development = Early Hum Dev Early Human Development = Early Hum. Dev. Early Indicators, Early Treatments, Neuroprotection in Multiple Sclerosis = Topics Neurosci Early Indicators, Early Treatments, Neuroprotection in Multiple Sclerosis = Topics. Neurosci. Early Indicators, Early Treatments, Neuroprotection in Multiple Sclerosis = Top Neurosci Early Indicators, Early Treatments, Neuroprotection in Multiple Sclerosis = Top. Neurosci. Early Intervention and Culture = Unesco Ycf Ser Early Intervention and Culture = Unesco. Ycf. Ser. Early Intervention in Psychiatry = Early Interv Psychia Early Intervention in Psychiatry = Early Interv. Psychia. Early Intervention in Psychosis = Wil Cl Psy Early Intervention in Psychosis = Wil. Cl. Psy. Early Islamic Spaina: The History of Ibn Al-qutiyah = Cult Civiliz Mid E Early Islamic Spaina: The History of Ibn Al-qutiyah = Cult. Civiliz. Mid. E. Early Italian Sigillata = Babesch Bull Ant Bes Early Italian Sigillata = Babesch. Bull. Ant. Bes. Early Jewish Prayers in Greek = Comment Early Jew Li Early Jewish Prayers in Greek = Comment. Early Jew. Li. Early Judaism and Its Literature = Early Judaism Lit Early Judaism and Its Literature = Early Judaism Lit. Early Jurassic Pterosaur Dorygnathus Banthensis (theodori, 1830) = Spec Pap Palaeontol Early Jurassic Pterosaur Dorygnathus Banthensis (theodori, 1830) = Spec. Pap. Palaeontol. Early Jurassic Pterosaur Dorygnathus Banthensis (theodori, 1830) = Sp Palaeont Early Jurassic Pterosaur Dorygnathus Banthensis (theodori, 1830) = Sp. Palaeont. Early Life History of Fishes in The San Francisco Estuary and Watershed = Am Fish S S Early Life History of Fishes in The San Francisco Estuary and Watershed = Am. Fish. S. S. Early Life History of Fish = Rap Proces Early Life History of Fish = Rap. Proces. Early Life Origins of Health and Disease = Adv Exp Med Biol Early Life Origins of Health and Disease = Adv. Exp. Med. Biol. Early Life Stage Mortality Syndrome in Fishes of The Great Lakes and Baltic Sea = Am Fish S S Early Life Stage Mortality Syndrome in Fishes of The Great Lakes and Baltic Sea = Am. Fish. S. S. Early-middle Pleistocene Transitions: The Land-ocean Evidence = Geol Soc Spec Publ Early-middle Pleistocene Transitions: The Land-ocean Evidence = Geol. Soc. Spec. Publ. Early Modern Civil Discourses = Early Mod Lit Hist Early Modern Civil Discourses = Early Mod. Lit. Hist. Early Modern Cultural Studies = Ear Mod Cult Stud Early Modern Cultural Studies = Ear. Mod. Cult. Stud. Early Modern Cultural Studies-palgrave Macmillan = Early Mod Cult Stud Early Modern Cultural Studies-palgrave Macmillan = Early Mod. Cult. Stud. Early Modern Ecostudies: From The Florentine Codex to Shakespeare = Early Mod Cult Stud Early Modern Ecostudies: From The Florentine Codex to Shakespeare = Early Mod. Cult. Stud. Early Modern History and The Social Sciences = Sixt Century Essays Early Modern History and The Social Sciences = Sixt. Century. Essays. Early Modern History-society and Culture = Early Mod Hist-soc C Early Modern History-society and Culture = Early Mod. Hist-soc. C. Early Modern Literature in History = Early Mod Lit Hist Early Modern Literature in History = Early Mod. Lit. Hist. Early Modern Women-an Interdisciplinary Journal = Early Mod Women Early Modern Women-an Interdisciplinary Journal = Early Mod. Women. Early Music = Early Music Early Music History = Early Music Hist Early Music History = Early Music Hist. Early Narrative Christology: The Lord in The Gospel of Luke = Beih Z Neutest Wiss Early Narrative Christology: The Lord in The Gospel of Luke = Beih. Z. Neutest. Wiss. Early Nutrition and Its Later Consequences: New Opportunities = Adv Exp Med Biol Early Nutrition and Its Later Consequences: New Opportunities = Adv. Exp. Med. Biol. Early Nutrition Programming and Health Outcomes in Later Life: Obesity and Beyond = Adv Exp Med Biol Early Nutrition Programming and Health Outcomes in Later Life: Obesity and Beyond = Adv. Exp. Med. Biol. Early Observable Universe From Diffuse Backgrounds = Moriond Ast Early Observable Universe From Diffuse Backgrounds = Moriond. Ast. Early Palaeozoic Peri-gondwana Terranes: New Insights From Tectonics and Biogeography = Geol Soc Spec Publ Early Palaeozoic Peri-gondwana Terranes: New Insights From Tectonics and Biogeography = Geol. Soc. Spec. Publ. Early Popular Visual Culture = Early Popul Vis Cult Early Popular Visual Culture = Early Popul. Vis. Cult. Early pregnancy : biology and medicine : the official journal of the Society for the Investigation of Early Pregnancy = Early Pregnancy Early Pregnancy=Early Pregnancy;; Early Pregnancy = Early Pregnancy Early pregnancy (Online) = Early Pregnancy Early Prehistory of Fiji = Terra Australis Early Prehistory of Fiji = Terra. Australis. Early Recognition and Intervention in Nutrition-dependent Diseases = Bibl Nutr Diet Early Recognition and Intervention in Nutrition-dependent Diseases = Bibl. Nutr. Diet. Early science and medicine = Early Sci Med Early Science and Medicine = Early Sci. Med. Early Silurian (llandovery) Orthide Brachiopods From Anticosti Island, Eastern Canada: The O/s Extinction Recovery Fauna = Sp Palaeont Early Silurian (llandovery) Orthide Brachiopods From Anticosti Island, Eastern Canada: The O/s Extinction Recovery Fauna = Sp. Palaeont. Early Stage Prostate Cancer : Diagnosis and Choice of Therapy = Int Congr Ser Early Stage Prostate Cancer : Diagnosis and Choice of Therapy = Int. Congr. Ser. Early Stages of Oxygen Precipitation in Silicon = Nato Asi 3 High Tech Early Stages of Oxygen Precipitation in Silicon = Nato. Asi. 3. High. Tech. Early Universe and Observational Cosmology = Lect Notes Phys Early Universe and Observational Cosmology = Lect. Notes. Phys. Early Universe and The Cosmic Microwave Background: Theory and Observations = Nato Sci Ser Ii-math Early Universe and The Cosmic Microwave Background: Theory and Observations = Nato. Sci. Ser. Ii-math. Early Universe and The Cosmic Microwave Background: Theory and Observations = Nato Sci Ser Ii Math Early Universe and The Cosmic Microwave Background: Theory and Observations = Nato. Sci. Ser. Ii. Math. Early Warning and Quick Response: Accounting in The Twenty-first Century = Stud Dev Account Tho Early Warning and Quick Response: Accounting in The Twenty-first Century = Stud. Dev. Account. Tho. Early Warning Systems for Drought Preparedness and Drought Management, Proceedings = World Meteo Early Warning Systems for Drought Preparedness and Drought Management, Proceedings = World. Meteo. Earnings Inequality, Unemployment, and Poverty in The Middle East and North Africa = Contrib Econ Econ Hi Earnings Inequality, Unemployment, and Poverty in The Middle East and North Africa = Contrib. Econ. Econ. Hi. Ear, Nose, and Throat Journal=Ear Nose Throat J;; Ear, Nose, and Throat Journal = Ear. Nose. Throat J. Ear, nose, & throat journal = Ear Nose Throat J Ear Nose & Throat Journal = Ear Nose Throat J Ear Nose & Throat Journal = Ear Nose Throat J. Earth Accretionary Systems in Space and Time = Geol Soc Spec Publ Earth Accretionary Systems in Space and Time = Geol. Soc. Spec. Publ. Earth and Atmosphere Remote Sensing = P Soc Photo-opt Ins Earth and Atmosphere Remote Sensing = P. Soc. Photo-opt. Ins. Earth and Environmental Science Transactions = Earth Environ. Sci. Trans. Earth and Environmental Science Transactions of The Royal Society of Edinburgh = Earth Env Sci T R So Earth and Environmental Science Transactions of The Royal Society of Edinburgh = Earth Env. Sci. T. R. So. Earth and Mind: How Geologists Think and Learn About The Earth = Geol Soc Am Spec Pap Earth and Mind: How Geologists Think and Learn About The Earth = Geol. Soc. Am. Spec. Pap. Earth and mineral sciences = Earth Miner Sci Earth and planetary science letters = Earth Planet Sci Lett Earth and Planetary Science Letters = Earth Planet. Sci. Lett. Earth and Planetary Science Letters = Earth Planet Sc Lett Earth and Planetary Science Letters = Earth Planet. Sc. Lett. Earth and Space Science Information Systems = Aip Conf Proc Earth and Space Science Information Systems = Aip. Conf. Proc. Earth As A Distant Planet: A Rosetta Stone for The Search of Earth-like Worlds = Astron Astrophys Lib Earth As A Distant Planet: A Rosetta Stone for The Search of Earth-like Worlds = Astron. Astrophys. Lib. Earth Inside and Out: Some Major Contributions to Geology in The Twentieth Century = Geol Soc Spec Publ Earth Inside and Out: Some Major Contributions to Geology in The Twentieth Century = Geol. Soc. Spec. Publ. Earth in space = Earth Space Earth Interactions = Earth Interact Earth Interactions = Earth Interact. Earth Island Journal = Earth Isl J Earth Island Journal = Earth Isl. J. Earth, moon, and planets = Earth Moon Planets Earth Moon and Planets = Earth Moon Planets Earth Negotiations Bulletin = Earth Negot Bull Earth Observation and Remote Sensing = Earth Obs Remot Sen+ Earth Observation and Remote Sensing = Earth Obs. Remot. Sen+.+ Earth Observation for Vegetation Monitoring and Water Management = Aip Conf Proc Earth Observation for Vegetation Monitoring and Water Management = Aip. Conf. Proc. Earth Observing Missions and Sensors: Development, Implementation, and Characterization = P Soc Photo-opt Ins Earth Observing Missions and Sensors: Development, Implementation, and Characterization = P. Soc. Photo-opt. Ins. Earth Observing System = P Soc Photo-opt Ins Earth Observing System = P. Soc. Photo-opt. Ins. Earth Observing Systems Iii = P Soc Photo-opt Ins Earth Observing Systems Iii = P. Soc. Photo-opt. Ins. Earth Observing Systems Ii = P Soc Photo-opt Ins Earth Observing Systems Ii = P. Soc. Photo-opt. Ins. Earth Observing Systems Iv = P Soc Photo-opt Ins Earth Observing Systems Iv = P. Soc. Photo-opt. Ins. Earth Observing Systems Ix = P Soc Photo-opt Ins Earth Observing Systems Ix = P. Soc. Photo-opt. Ins. Earth Observing Systems Viii = Proc Spie Earth Observing Systems Viii = Proc. Spie. Earth Observing Systems Viii = P Soc Photo-opt Ins Earth Observing Systems Viii = P. Soc. Photo-opt. Ins. Earth Observing Systems Vii = P Soc Photo-opt Ins Earth Observing Systems Vii = P. Soc. Photo-opt. Ins. Earth Observing Systems Vi = Proc Spie Earth Observing Systems Vi = Proc. Spie. Earth Observing Systems Vi = P Soc Photo-opt Ins Earth Observing Systems Vi = P. Soc. Photo-opt. Ins. Earth Observing Systems V = P Soc Photo-opt Ins Earth Observing Systems V = P. Soc. Photo-opt. Ins. Earth Observing Systems Xiii = P Soc Photo-opt Ins Earth Observing Systems Xiii = P. Soc. Photo-opt. Ins. Earth Observing Systems Xii = P Soc Photo-opt Ins Earth Observing Systems Xii = P. Soc. Photo-opt. Ins. Earth Observing Systems Xi = Proc Spie Earth Observing Systems Xi = Proc. Spie. Earth Observing Systems Xi = P Soc Photo-opt Ins Earth Observing Systems Xi = P. Soc. Photo-opt. Ins. Earth Observing Systems Xv = P Soc Photo-opt Ins Earth Observing Systems Xv = P. Soc. Photo-opt. Ins. Earth-oriented Applications of Space Technology = Earth-orient Sp Tech Earth-oriented Applications of Space Technology = Earth-orient. Sp. Tech. Earth Planets and Space = Earth Planets Space Earthquake Data in Engineering Seismology: Predictive Models, Data Management and Networks = Geotech Geol Earthq Earthquake Data in Engineering Seismology: Predictive Models, Data Management and Networks = Geotech. Geol. Earthq. Earthquake Design and Performance of Solid Waste Landfills = Geotech Sp Earthquake Design and Performance of Solid Waste Landfills = Geotech. Sp. Earthquake Engineering and Engineering Vibration = Earthq Eng Eng Vib Earthquake Engineering and Engineering Vibration = Earthq. Eng. Eng. Vib. Earthquake Engineering and Structural Dynamics = Earthquake Eng. Struct. Dyn. Earthquake Engineering & Structural Dynamics = Earthq Eng Struct D Earthquake Engineering & Structural Dynamics = Earthq. Eng. Struct. D. Earthquake Engineering & Structural Dynamics = Earthquake Eng Struc Earthquake Engineering & Structural Dynamics = Earthquake Eng. Struc. Earthquake Geotechnical Engineering = Geot Geol Earthquake Earthquake Geotechnical Engineering = Geot. Geol. Earthquake Earthquake Hazard and Risk = Adv Nat Technol Haz Earthquake Hazard and Risk = Adv. Nat. Technol. Haz. Earthquake Hazard and Seismic Risk Reduction = Adv Nat Tech Haz Res Earthquake Hazard and Seismic Risk Reduction = Adv. Nat. Tech. Haz. Res. Earthquake Hazard and Seismic Risk Reduction = Adv Nat Technol Haz Earthquake Hazard and Seismic Risk Reduction = Adv. Nat. Technol. Haz. Earthquake-induced Movements and Seismic Remediation of Existing Foundations and Abutments = Geotech Sp Earthquake-induced Movements and Seismic Remediation of Existing Foundations and Abutments = Geotech. Sp. Earthquake Monitoring and Seismic Hazard Mitigation in Balkan Countries = Nato Sci S Ss Iv Ear Earthquake Monitoring and Seismic Hazard Mitigation in Balkan Countries = Nato. Sci. S. Ss. Iv. Ear. Earthquake Prediction Research = Earthquake Pred Res Earthquake Prediction Research = Earthquake Pred. Res. Earthquake Resistant Construction and Design = Dgeb Publ Earthquake Resistant Construction and Design = Dgeb. Publ. Earthquake Resistant Construction and Design, Vols 1 and 2 = Dgeb Publ Earthquake Resistant Construction and Design, Vols 1 and 2 = Dgeb. Publ. Earthquake Resistant Engineering Structures = Adv Earthq Engn Earthquake Resistant Engineering Structures = Adv. Earthq. Engn. Earthquake Resistant Engineering Structures Ii = Adv Earthq Engn Earthquake Resistant Engineering Structures Ii = Adv. Earthq. Engn. Earthquake Resistant Engineering Structures Iii = Adv Earthq Engn Earthquake Resistant Engineering Structures Iii = Adv. Earthq. Engn. Earthquake Resistant Engineering Structures Iv = Adv Earthq Engn Earthquake Resistant Engineering Structures Iv = Adv. Earthq. Engn. Earthquake Resistant Engineering Structures Vii = Wit Trans Built Env Earthquake Resistant Engineering Structures Vii = Wit. Trans. Built. Env. Earthquake Resistant Engineering Structures Vi = Wit Trans Built Env Earthquake Resistant Engineering Structures Vi = Wit. Trans. Built. Env. Earthquake Resistant Engineering Structures V = Wit Trans Built Env Earthquake Resistant Engineering Structures V = Wit. Trans. Built. Env. Earthquakes and Tsunamis = Geot Geol Earthquake Earthquakes and Tsunamis = Geot. Geol. Earthquake. Earthquakes At North-atlantic Passive Margins : Neotectonics and Postglacial Rebound = Nato Adv Sci I C-mat Earthquakes At North-atlantic Passive Margins : Neotectonics and Postglacial Rebound = Nato. Adv. Sci. I. C-mat. Earthquake Science and Seismic Risk Reduction = Nato Sci S Ss Iv Ear Earthquake Science and Seismic Risk Reduction = Nato. Sci. S. Ss. Iv. Ear. Earthquake Spectra = Earthq Spectra Earthquake Spectra = Earthq. Spectra Earthquakes: Radiated Energy and The Physics of Faulting = Geoph Monog Series Earthquakes: Radiated Energy and The Physics of Faulting = Geoph. Monog. Series. Earthquakes: Radiated Energy and The Physics of Faulting = Geophys Monogr Ser Earthquakes: Radiated Energy and The Physics of Faulting = Geophys. Monogr. Ser. Earthquake Waste Symposium = Ietc Tech Publ Ser Earthquake Waste Symposium = Ietc. Tech. Publ. Ser. Earth Resources and Environmental Remote Sensing-gis Applications = Proc Spie Earth Resources and Environmental Remote Sensing-gis Applications = Proc. Spie. Earth Resources and Environmental Remote Sensing-gis Applications = P Soc Photo-opt Ins Earth Resources and Environmental Remote Sensing-gis Applications = P. Soc. Photo-opt. Ins. Earth Rotation and Coordinate Reference Frames = Iag Symp Earth Rotation and Coordinate Reference Frames = Iag. Symp. Earth's Atmosphere, Ocean and Surface Studies = Adv Space Res Earth's Atmosphere, Ocean and Surface Studies = Adv. Space. Res. Earth's Atmosphere, Ocean and Surface Studies = Adv Space Res-series Earth's Atmosphere, Ocean and Surface Studies = Adv. Space. Res-series. Earth Science = Earth Sci Earth Science = Earth Sci. Earth Science Frontiers = Earth Sci. Front. Earth Science Informatics = Earth Sci. Inf. Earth Science Informatics = Earth Sci Inform Earth Science Informatics = Earth Sci. Inform. Earth Science in The Urban Ocean: The Southern California Continental Borderland = Geol Soc Am Spec Pap Earth Science in The Urban Ocean: The Southern California Continental Borderland = Geol. Soc. Am. Spec. Pap. Earth-science Reviews = Earth-sci Rev Earth-science Reviews = Earth-sci. Rev. Earth-Science Reviews = Earth Sci. Rev. Earth Sciences History = Earth Sci Hist Earth Sciences History = Earth Sci. Hist. Earth sciences history : journal of the History of the Earth Sciences Society = Earth Sci Hist Earth Sciences in The 21st Century = Earth Sci 21st Cent Earth Sciences in The 21st Century = Earth Sci. 21st Cent. Earth Sciences Research Journal = Earth Sci Res J Earth Sciences Research Journal = Earth Sci. Res. J. Earth's Climate: The Ocean-atmosphere Interaction = Geoph Monog Series Earth's Climate: The Ocean-atmosphere Interaction = Geoph. Monog. Series. Earth's Climate: The Ocean-atmosphere Interaction = Geophys Monogr Ser Earth's Climate: The Ocean-atmosphere Interaction = Geophys. Monogr. Ser. Earth's Core and Lower Mantle = Fl Mec Astr Earth's Core and Lower Mantle = Fl. Mec. Astr. Earth's Core: Dynamics, Structure, Rotation = Geodynamics Earth's Core: Dynamics, Structure, Rotation = Geodynamics. Earth's Deep Mantle: Structure, Composition, and Evolution = Geoph Monog Series Earth's Deep Mantle: Structure, Composition, and Evolution = Geoph. Monog. Series. Earth's Deep Mantle: Structure, Composition, and Evolution = Geophys Monogr Ser Earth's Deep Mantle: Structure, Composition, and Evolution = Geophys. Monogr. Ser. Earths Deep Water Cycle = Geophys Monogr Ser Earths Deep Water Cycle = Geophys. Monogr. Ser. Earths Middle and Upper Atmosphere = Adv Space Res-series Earths Middle and Upper Atmosphere = Adv. Space. Res-series. Earths Middle Atmosphere = Adv Space Res Earths Middle Atmosphere = Adv. Space. Res. Earths Middle Atmosphere = Adv Space Res-series Earths Middle Atmosphere = Adv. Space. Res-series. Earth space review = Earth Space Rev Earth Surface Processes and Landforms = Earth Surf Processes Earth Surface Processes and Landforms = Earth Surf. Processes Earth Surface Processes and Landforms = Earth Surf. Processes Landforms Earth Surface Processes and Landforms = Earth Surf. Process. Landf. Earth Surface Processes and Landforms = Earth Surf Proc Land Earth Surface Processes and Landforms = Earth Surf. Proc. Land. Earth Surface Remote Sensing Ii = Proc Spie Earth Surface Remote Sensing Ii = Proc. Spie. Earth Surface Remote Sensing Ii = P Soc Photo-opt Ins Earth Surface Remote Sensing Ii = P. Soc. Photo-opt. Ins. Earth Surface Remote Sensing = P Soc Photo-opt Ins Earth Surface Remote Sensing = P. Soc. Photo-opt. Ins. Earthwatch = Earthwatch Earth (Waukesha, Wis.) = Earth (Waukesha) Eas Publications Series = Eas Publications East African Agricultural and Forestry Journal = E Afr Agr Forestry J East African Agricultural and Forestry Journal = E. Afr. Agr. Forestry J. East African Great Lakes: Limnology, Palaeolimnology and Biodiversity = Adv Glob Change Res East African Great Lakes: Limnology, Palaeolimnology and Biodiversity = Adv. Glob. Change. Res. East African journal of public health = East Afr J Public Health East African Journal of Rural Development=East African J. Rural Devel. East African Medical Journal = E Afr Med J East African Medical Journal = E. Afr. Med. J. East African medical journal = East Afr Med J East African Medical Journal=East Afr Med J;; East African Medical Journal = East Afr. Med. J. East African Studies = E Afr Stud East African Studies = E. Afr. Stud. East African Wildlife Journal = E Afr Wildl J East African Wildlife Journal = E. Afr. Wildl. J. East and West = EastWest East and West = E&W East and West in The Crusader States: Context-contacts-confrontations Ii = Orient Lovan Anal East and West in The Crusader States: Context-contacts-confrontations Ii = Orient. Lovan. Anal. East Asia, Globalization and The New Economy = Routledge Stud Growt East Asia, Globalization and The New Economy = Routledge. Stud. Growt. East Asia History Politics Sociology and Culture = E Asia Hist Polit So East Asia History Politics Sociology and Culture = E. Asia Hist. Polit. So. East Asian Regionalism From A Legal Perspective = Routl Contemp Asia East Asian Regionalism From A Legal Perspective = Routl. Contemp. Asia. East Asian Social Movement: Power, Protest, and Change in A Dynamic Region = Nonprofit Civ Soc St East Asian Social Movement: Power, Protest, and Change in A Dynamic Region = Nonprofit. Civ. Soc. St. East Asias Economic Integration: Progress and Benefit = Ide-jetro Ser East Asias Economic Integration: Progress and Benefit = Ide-jetro. Ser. East Asia's Monetary Future: Integration in The Global Economy = Nh Mon Fin Ser East Asia's Monetary Future: Integration in The Global Economy = Nh. Mon. Fin. Ser. East Asia's Potential for Instability & Crisis = Rand Conf Proc East Asia's Potential for Instability & Crisis = Rand. Conf. Proc. East Central Europe = E Cent Eur East Central Europe = E. Cent. Eur. East central Europe. L'Europe du centre-est = East Cent Eur East = East Easter Island Foundation Occasional Paper = Eas Isl Fdn Easter Island Foundation Occasional Paper = Eas. Isl. Fdn. Easter Island in Pacific Context - South Seas Symposium = Eas Isl Fdn Easter Island in Pacific Context - South Seas Symposium = Eas. Isl. Fdn. Eastern Africa economic review = East Afr Econ Rev Eastern Africa Economic Review=Eastern Africa Econ. Rev. Eastern Africa journal of rural development = East Afr J Rural Dev Eastern African Economic Review = Eastern Afr Econ Rev Eastern African Economic Review = Eastern Afr. Econ. Rev. Eastern African Studies = E Afr Stud Ser Eastern African Studies = E. Afr. Stud. Ser. Eastern African Studies Series = E Afr Stud Ser Eastern African Studies Series = E. Afr. Stud. Ser. Eastern Africa social science research review = East Afr Soc Sci Res Rev Eastern and southern Africa geographical journal = East South Afr Geogr J Eastern Anthropologist = Eastern Anthropol Eastern Anthropologist = Eastern Anthropol. Eastern Buddhist = Eastern Buddhist Eastern Christian Studies = East Christ Studies Eastern Christian Studies = East. Christ. Studies Eastern Churches Review = Eastern Church Rev Eastern Churches Review = Eastern Church. Rev. Eastern economic journal = East Econ J Eastern Economic Journal=Eastern Econ. J. Eastern European Countryside = East Eur Countrys Eastern European Countryside = East. Eur. Countrys. Eastern European Countryside = East Eur Countryside Eastern European Countryside = East. Eur. Countryside Eastern European Economics = Eastern Eur Econ Eastern European Economics = Eastern Eur. Econ. Eastern European Economics=Eastern Europ. Econ. Eastern European economics = East Europ Econ Eastern European Immigrant Families = Routl Adv Sociol Eastern European Immigrant Families = Routl. Adv. Sociol. Eastern European politics and societies : EEPS = East Eur Polit Soc Eastern Europe : Opportunities and Needs for Food and Agriculture = Cas Paper Eastern Europe : Opportunities and Needs for Food and Agriculture = Cas. Paper. Eastern horizon = East Horiz Eastern Mediterranean As A Laboratory Basin for The Assessment of Contrasting Ecosystems = Nato Asi 2 Eastern Mediterranean As A Laboratory Basin for The Assessment of Contrasting Ecosystems = Nato. Asi. 2. Easter Schools in Agricultural Science = East Sch Ag Easter Schools in Agricultural Science = East. Sch. Ag. East European Jewish affairs = East Eur Jew Aff East European Jewish Affairs = East Eur Jew Aff East European Jewish Affairs = East Eur. Jew. Aff. East European Monographs = E Europ M East European Monographs = E. Europ. M. East European Politics and Societies = E Eur Polit Soc East European Politics and Societies = E. Eur. Polit. Soc. East European quarterly = East Eur Q East European Quarterly = E Eur Quart East European Quarterly = E. Eur. Quart. East Germany's Economic Development Since Unification = Stud Econ Trans East Germany's Economic Development Since Unification = Stud. Econ. Trans. East Journal on Approximations = East J. Approx. East of Wallace's Line = Mod Quat Re East of Wallace's Line = Mod. Quat. Re. East River Tidal Barrage = Ann Ny Acad Sci East River Tidal Barrage = Ann. Ny. Acad. Sci. East-south Relations Series = E S Relat S East-south Relations Series = E. S. Relat. S. East-west Economic Relations in The 1990s = E-w Eur Ec East-west Economic Relations in The 1990s = E-w. Eur. Ec. East-west European Economic Interaction : Workshop Papers Series = E-w Eur Ec East-west European Economic Interaction : Workshop Papers Series = E-w. Eur. Ec. East-west Film Journal = East-west Film J East-west Film Journal = East-west Film J. East-West Journal of Economics and Business=East-West J. Econ. Bus. East-West Journal of Numerical Mathematics = East-West J. Numer. Math. East-west Life Expectancy Gap in Europe = Nato Asi 2 East-west Life Expectancy Gap in Europe = Nato. Asi. 2. East-west Scientific Co-operation = Nato Asi S 4 Sci Tec East-west Scientific Co-operation = Nato. Asi. S. 4. Sci. Tec. East-West Series in Economics, Business, and the Environment=East-West Ser. Econ., Bus., Environ. East-west Technology Transfer = Nato Asi S 4 Sci Tec East-west Technology Transfer = Nato. Asi. S. 4. Sci. Tec. Eating and Weight Disorders = Eat. Weight Disord. Eating and weight disorders : EWD = Eat Weight Disord Eating and Weight Disorders-studies On Anorexia Bulimia and Obesity = Eat Weight Disord-st Eating and Weight Disorders-studies On Anorexia Bulimia and Obesity = Eat. Weight Disord-st. Eating behaviors = Eat Behav Eating Behaviors = Eat Behav Eating Behaviors = Eat. Behav. Eating disorders = Eat Disord Eating Well, Reading Well: Maryse Conde and The Ethics of Interpretation = Francopolyphonies Eating Well, Reading Well: Maryse Conde and The Ethics of Interpretation = Francopolyphonies. Eau Du Quebec = Eau Quebec Eav08: Advanced Summer School in Physics 2008: Frontiers in Contemporary Physics, 4th Edition = Aip Conf Proc Eav08: Advanced Summer School in Physics 2008: Frontiers in Contemporary Physics, 4th Edition = Aip. Conf. Proc. Ebony = Ebony E-books in Academic Libraries = Chandos Inf Prof Ser E-books in Academic Libraries = Chandos. Inf. Prof. Ser. EBRI Issue Brief = EBRI Issue Brief EBRI issue brief / Employee Benefit Research Institute = EBRI Issue Brief E-business and Telecommunication Networks = Comm Com Inf Sc E-business and Telecommunication Networks = Comm. Com. Inf. Sc. E-business and Telecommunications = Comm Com Inf Sc E-business and Telecommunications = Comm. Com. Inf. Sc. E-business and Virtual Enterprises: Managing Business-to-business Cooperation = Int Fed Info Proc E-business and Virtual Enterprises: Managing Business-to-business Cooperation = Int. Fed. Info. Proc. Ebusiness in Healthcare = Health Inform Ser Ebusiness in Healthcare = Health. Inform. Ser. E-business in The 21st Century: Realities, Challenges and Outlook = Intel Inform Syst Se E-business in The 21st Century: Realities, Challenges and Outlook = Intel. Inform. Syst. Se. E-business Technology and Strategy = Comm Com Inf Sc E-business Technology and Strategy = Comm. Com. Inf. Sc. Ec 1992 : Implications for Us Workers = Signif Is S Ec 1992 : Implications for Us Workers = Signif. Is. S. ECA : estudios centro americanos = Estud Cent Am Ecai 2000: 14th European Conference On Artificial Intelligence, Proceedings = Fr Art Int Ecai 2000: 14th European Conference On Artificial Intelligence, Proceedings = Fr. Art. Int. Ecai 2000: 14th European Conference On Artificial Intelligence, Proceedings = Front Artif Intel Ap Ecai 2000: 14th European Conference On Artificial Intelligence, Proceedings = Front. Artif. Intel. Ap. Ecai 2002: 15th European Conference On Artificial Intelligence, Proceedings = Fr Art Int Ecai 2002: 15th European Conference On Artificial Intelligence, Proceedings = Fr. Art. Int. Ecai 2002: 15th European Conference On Artificial Intelligence, Proceedings = Front Artif Intel Ap Ecai 2002: 15th European Conference On Artificial Intelligence, Proceedings = Front. Artif. Intel. Ap. Ecai 2004: 16th European Conference On Artificial Intelligence, Proceedings = Fr Art Int Ecai 2004: 16th European Conference On Artificial Intelligence, Proceedings = Fr. Art. Int. Ecai 2004: 16th European Conference On Artificial Intelligence, Proceedings = Front Artif Intel Ap Ecai 2004: 16th European Conference On Artificial Intelligence, Proceedings = Front. Artif. Intel. Ap. Ecai 2006, Proceedings = Fr Art Int Ecai 2006, Proceedings = Fr. Art. Int. Ecai 2006, Proceedings = Front Artif Intel Ap Ecai 2006, Proceedings = Front. Artif. Intel. Ap. Ecai 2008, Proceedings = Fr Art Int Ecai 2008, Proceedings = Fr. Art. Int. Ecai 2008, Proceedings = Front Artif Intel Ap Ecai 2008, Proceedings = Front. Artif. Intel. Ap. Ecb6: Proceedings of The 6th European Congress On Biotechnology, Pts I and Ii = Progr Biotechnol Ecb6: Proceedings of The 6th European Congress On Biotechnology, Pts I and Ii = Progr. Biotechnol. E.c.c.c. 1 Computational Chemistry = Aip Conf Proc E.c.c.c. 1 Computational Chemistry = Aip. Conf. Proc. Ecce 2009 - European Conference On Cognitive Ergonomics = Vtt Symp Ecce 2009 - European Conference On Cognitive Ergonomics = Vtt. Symp. Ecclesiastical Law Journal = Eccles Law J Ecclesiastical Law Journal = Eccles. Law J. Eccomas Multidisciplinary Jubilee Symposium = Comp Meth Appl Sci Eccomas Multidisciplinary Jubilee Symposium = Comp. Meth. Appl. Sci. Ecfa Study Week On Instrumentation Technology for High-luminosity Hadron Colliders, Proceedings Vols 1-2 = Cern Report Ecfa Study Week On Instrumentation Technology for High-luminosity Hadron Colliders, Proceedings Vols 1-2 = Cern. Report. Echidna: Extraordinary Egg-laying Mammal = Austral Nat Hist Ser Echidna: Extraordinary Egg-laying Mammal = Austral. Nat. Hist. Ser. Echocardiography 1988 = Int Congr Ser Echocardiography 1988 = Int. Congr. Ser. Echocardiography 1990 = Int Congr Ser Echocardiography 1990 = Int. Congr. Ser. Echocardiography 1993 = Int Congr Ser Echocardiography 1993 = Int. Congr. Ser. Echocardiography-a Journal of Cardiovascular Ultrasound and Allied Techniques = Echocardiogr-j Card Echocardiography-a Journal of Cardiovascular Ultrasound and Allied Techniques = Echocardiogr-j. Card. Echocardiography = Echocardiography Echocardiography (Mount Kisco, N.Y.) = Echocardiography Echoes = Echoes Echoes of Many Texts: Reflections On Jewish and Christian Traditions = Brown Jud S Echoes of Many Texts: Reflections On Jewish and Christian Traditions = Brown. Jud. S. Echoes of Narcissus = Polygons Echoes of Narcissus = Polygons. Echos du monde classique. Classical Views = EchosCl Échos du monde classique (Classical Views) = EMC Eclampsia Glomerulonephritis Uremia = Iss Nephros Eclampsia Glomerulonephritis Uremia = Iss. Nephros. Ecletica Quimica = Ecletica Quim. Ecletica Quimica = Eclet Quim Ecletica Quimica = Eclet. Quim. Eclim 2000: 26th European Conference On Laser Interaction With Matter = Proc Spie Eclim 2000: 26th European Conference On Laser Interaction With Matter = Proc. Spie. Eclim 2000: 26th European Conference On Laser Interaction With Matter = P Soc Photo-opt Ins Eclim 2000: 26th European Conference On Laser Interaction With Matter = P. Soc. Photo-opt. Ins. Eclipsing Binary Stars: Modeling and Analysis = Astron Astrophys Lib Eclipsing Binary Stars: Modeling and Analysis = Astron. Astrophys. Lib. Eclogae Geologicae Helvetiae = Eclogae Geol Helv Eclogae Geologicae Helvetiae = Eclogae Geol. Helv. Ecloud'02: Mini-workshop On Electron-cloud Simulation for Proton and Positron Beams, Proceedings = Cern Report Ecloud'02: Mini-workshop On Electron-cloud Simulation for Proton and Positron Beams, Proceedings = Cern. Report. Ec&m-electrical Construction and Maintenance = Ecm-electr Constr M Ec&m-electrical Construction and Maintenance = Ecm-electr. Constr. M. E C M T Round Table = Ecmt Round E C M T Round Table = Ecmt. Round Eco- and Ground Bio-engineering: The Use of Vegetation to Improve Slope Stability = Dev Plant Soil Sci Eco- and Ground Bio-engineering: The Use of Vegetation to Improve Slope Stability = Dev. Plant. Soil. Sci. Eco-architecture: Harmonisation Between Architecture and Nature = Wit Trans Built Env Eco-architecture: Harmonisation Between Architecture and Nature = Wit. Trans. Built. Env. Eco-architecture Ii: Harmonisation Between Architecture and Nature = Wit Trans Ecol Envir Eco-architecture Ii: Harmonisation Between Architecture and Nature = Wit. Trans. Ecol. Envir. Eco-architecture Iii: Harmonisation Between Architecture and Nature = Wit Trans Ecol Envir Eco-architecture Iii: Harmonisation Between Architecture and Nature = Wit. Trans. Ecol. Envir. Eco-efficiency in Industry and Science = Eco Efficien Ind Sci Eco-efficiency in Industry and Science = Eco. Efficien. Ind. Sci. Eco-efficiency in Industry and Science = Eco-effic Ind Sci Eco-efficiency in Industry and Science = Eco-effic. Ind. Sci. Eco-friendly Synthesis of Fine Chemicals = Rsc Green Chem Ser Eco-friendly Synthesis of Fine Chemicals = Rsc. Green. Chem. Ser. Ecography = Ecography Ecohealth = Ecohealth Eco-hydrodynamic Modelling of Primary Production in Coastal Waters and Lakes Using Bloom = Deltares Sel Ser Eco-hydrodynamic Modelling of Primary Production in Coastal Waters and Lakes Using Bloom = Deltares. Sel. Ser. Ecohydrology = Ecohydrology Ecohydrology & Hydrobiology = Ecohydrol. Hydrobiol. Eco-hydrology: Plants and Water in Terrestrial and Aquatic Environments = Rout Phys E Eco-hydrology: Plants and Water in Terrestrial and Aquatic Environments = Rout. Phys. E. École antique de Nîmes. Bulletin annuel = EcAntNimes École Pratique des Hautes études = Éc. Prat. Ht. études IV$\sp e$ Sect. Sci. Hist. Philol. V Ht. études Médiév. Mod. Ecologia Mediterranea = Ecol. Mediterr. Ecological Agriculture and Rural Development in Central and Eastern European Countries = Nato Asi S 4 Sci Tec Ecological Agriculture and Rural Development in Central and Eastern European Countries = Nato. Asi. S. 4. Sci. Tec. Ecological and Genetic Implications of Aquaculture Activities = Rev-methods Technol Ecological and Genetic Implications of Aquaculture Activities = Rev-methods. Technol. Ecological and Genetic Implications of Aquaculture Activities = Rev M T Fis Ecological and Genetic Implications of Aquaculture Activities = Rev. M. T. Fis. Ecological applications : a publication of the Ecological Society of America = Ecol Appl Ecological Applications = Ecol Appl Ecological Applications = Ecol. Appl. Ecological Approaches to Cognition = Emory S Cog Ecological Approaches to Cognition = Emory. S. Cog. Ecological Aspects for Application of Genetically Modified Mosquitoes = Wag Ur Fron Ecological Aspects for Application of Genetically Modified Mosquitoes = Wag. Ur. Fron. Ecological Bulletins = Ecol Bull Ecological Bulletins = Ecol. Bull. Ecological Chemistry and Engineering A = Ecol. Chem. Eng. A Ecological Chemistry and Engineering-chemia I Inzynieria Ekologiczna = Ecol Chem Eng Ecological Chemistry and Engineering-chemia I Inzynieria Ekologiczna = Ecol. Chem. Eng. Ecological Chemistry and Engineering = Ecol. Chem. Eng. Ecological Chemistry and Engineering S-chemia I Inzynieria Ekologiczna S = Ecol Chem Eng S Ecological Chemistry and Engineering S-chemia I Inzynieria Ekologiczna S = Ecol. Chem. Eng. S Ecological Chemistry and Engineering S = Ecol. Chem. Eng. S Ecological Complexity and Sustainability = Ann Ny Acad Sci Ecological Complexity and Sustainability = Ann. Ny. Acad. Sci. Ecological Complexity = Ecol Complex Ecological Complexity = Ecol. Complex. Ecological Conservation = Ecol. Conserv. Ecological Damage Caused By Oil Spills: Economic Assessments and Compensations = Oceanis S D Ecological Damage Caused By Oil Spills: Economic Assessments and Compensations = Oceanis. S. D. Ecological Design and Planning = Wiley S Sus Des Ecological Design and Planning = Wiley. S. Sus. Des. Ecological Destruction, Health, and Development: Advancing Asian Paradigms = Kyoto Area Studies Ecological Destruction, Health, and Development: Advancing Asian Paradigms = Kyoto. Area. Studies. Ecological Economics and Industrial Ecology: A Case Study of The Integrated Product Policy of The European Union = Routl Explor Environ Ecological Economics and Industrial Ecology: A Case Study of The Integrated Product Policy of The European Union = Routl. Explor. Environ. Ecological Economics and Sustainable Development: Selected Essays of Herman Daly = Adv Ecol Econ Ecological Economics and Sustainable Development: Selected Essays of Herman Daly = Adv. Ecol. Econ. Ecological Economics = Ecol Econ Ecological Economics = Ecol. Econ. Ecological Economics=Ecolog. Econ. Ecological Economics Reviews = Ann Ny Acad Sci Ecological Economics Reviews = Ann. Ny. Acad. Sci. Ecological economics : the journal of the International Society for Ecological Economics = Ecol Econ Ecological engineering = Ecol Eng Ecological Engineering = Ecol Eng Ecological Engineering = Ecol. Eng. Ecological entomology = Ecol Entomol Ecological Entomology = Ecol Entomol Ecological Entomology = Ecol. Entomol. Ecological Importance of River Bottom = Folia Fac Sci Nat Un Ecological Importance of River Bottom = Folia. Fac. Sci. Nat. Un. Ecological Indicators = Ecol Indic Ecological Indicators = Ecol. Indic. Ecological Informatics = Ecol Inform Ecological Informatics = Ecol. Inform. Ecological Land Classification : Applications to Identify The Productive Potential of Southern Forests = Usda Southe Ecological Land Classification : Applications to Identify The Productive Potential of Southern Forests = Usda. Southe. Ecological Management and Restoration = Ecol. Manage. Restor. Ecological Modelling = Ecol Model Ecological Modelling = Ecol. Model. Ecological modelling = Ecol Modell Ecological Modelling = Ecol. Modell. Ecological monographs = Ecol Monogr Ecological Monographs = Ecol Monogr Ecological Monographs = Ecol. Monogr. Ecological Networks: Linking Structure to Dynamics in Food Webs = Sfi S Sci C Ecological Networks: Linking Structure to Dynamics in Food Webs = Sfi. S. Sci. C. Ecological Perception Research, Visual Communication, and Aesthetics = Rec Res Psy Ecological Perception Research, Visual Communication, and Aesthetics = Rec. Res. Psy. Ecological Psychology = Ecol Psychol Ecological Psychology = Ecol. Psychol. Ecological Reclamation in Canada At Century's Turn = Can Plain P Ecological Reclamation in Canada At Century's Turn = Can. Plain. P. Ecological Research = Ecol Res Ecological Research = Ecol. Res. Ecological Research Monographs = Ecol Res Monogr Ecological Research Monographs = Ecol. Res. Monogr. Ecological Risk Assessment Decision-support System: A Conceptual Design = Setac Sp P Ecological Risk Assessment Decision-support System: A Conceptual Design = Setac. Sp. P. Ecological Risk Assessment of Contaminants in Soil = Ch Ecotoxic Ecological Risk Assessment of Contaminants in Soil = Ch. Ecotoxic. Ecological Risk Assessment of Contaminated Sediments = Setac Sp P Ecological Risk Assessment of Contaminated Sediments = Setac. Sp. P. Ecological Risks Associated With The Destruction of Chemical Weapons = Nato Sci Peace Secur Ecological Risks Associated With The Destruction of Chemical Weapons = Nato. Sci. Peace. Secur. Ecological Studies : Analysis and Synthesis = Ecol Stu An Ecological Studies : Analysis and Synthesis = Ecol. Stu. An. Ecological Studies- Analysis and Synthesis = Ecol Stu An Ecological Studies- Analysis and Synthesis = Ecol. Stu. An. Ecological Studies-analysis and Synthesis = Ecol Stud-anal Synth Ecological Studies-analysis and Synthesis = Ecol. Stud-anal. Synth. Ecological Studies = Ecol Stud Ecological Studies = Ecol. Stud. Ecological Variability: Separating Natural From Anthropogenic Causes of Ecosystem Impairment = Setac Sp P Ecological Variability: Separating Natural From Anthropogenic Causes of Ecosystem Impairment = Setac. Sp. P. Ecological Water Management in Practice = Comm Hydrol Ecological Water Management in Practice = Comm. Hydrol. Ecologic Bioprocessing - Challenges in Practice = Beitr Okol Technol Ecologic Bioprocessing - Challenges in Practice = Beitr. Okol. Technol. Ecologist = Ecologist Ecology and Conservation of Grassland Birds of The Western Hemisphere = Stud Avian Biol-ser Ecology and Conservation of Grassland Birds of The Western Hemisphere = Stud. Avian. Biol-ser. Ecology and Conservation of The Willow Flycatcher = Stud Avian Biol-ser Ecology and Conservation of The Willow Flycatcher = Stud. Avian. Biol-ser. Ecology and Evolution of Gall-forming Insects = Usda N Cent Ecology and Evolution of Gall-forming Insects = Usda. N. Cent. Ecology and History = Ecol Hist Ecology and History = Ecol. Hist. Ecology and Management Aspects of Extensive Mariculture = Ices Mar Sc Ecology and Management Aspects of Extensive Mariculture = Ices. Mar. Sc. Ecology and Management of Aquatic-terrestrial Ecotones = Man Biosph Ecology and Management of Aquatic-terrestrial Ecotones = Man. Biosph. Ecology and Management of Larix Forests: A Look Ahead = Usda Interm Ecology and Management of Larix Forests: A Look Ahead = Usda. Interm. Ecology and Management of Oak and Associated Woodlands : Perspectives in The Southwestern United States and Northern Mexico = Usda Rocky Ecology and Management of Oak and Associated Woodlands : Perspectives in The Southwestern United States and Northern Mexico = Usda. Rocky. Ecology and Management of Small Bodies of Standing Waters = Okol Naturs Ecology and Management of Small Bodies of Standing Waters = Okol. Naturs. Ecology and Management of Wood in World Rivers = Am Fish S S Ecology and Management of Wood in World Rivers = Am. Fish. S. S. Ecology and Silviculture of Mixed-species Forests = For Sci Ecology and Silviculture of Mixed-species Forests = For. Sci. Ecology and Society = Ecol Soc Ecology and Society = Ecol. Soc. Ecology and Strategy = Adv Strateg Manage Ecology and Strategy = Adv. Strateg. Manage. Ecology and The World-system = Stud Pol Ec Ecology and The World-system = Stud. Pol. Ec. Ecology Biodiversity and Conservation = Ecol Biodivers Cons Ecology Biodiversity and Conservation = Ecol. Biodivers. Cons. Ecology, Cognition and Landscape: Linking Natural and Social Systems = Landsc Ser Ecology, Cognition and Landscape: Linking Natural and Social Systems = Landsc. Ser. Ecology = Ecology Ecology, Economy & Environment = Ecol Ec Env Ecology, Economy & Environment = Ecol. Ec. Env. Ecology & Environment = Ecol Envir Ecology & Environment = Ecol. Envir. Ecology, Evolution and Behaviour of Bats = Sym Zool S Ecology, Evolution and Behaviour of Bats = Sym. Zool. S. Ecology law quarterly = Ecol Law Q Ecology Law Quarterly = Ecol Law Quart Ecology Law Quarterly = Ecol. Law Quart. Ecology letters = Ecol Lett Ecology Letters = Ecol Lett Ecology Letters = Ecol. Lett. Ecology of Agricultural Pests = Syst Assoc Ecology of Agricultural Pests = Syst. Assoc. Ecology of Atlantic Salmon and Brown Trout: Habitat As A Template for Life Histories = Fish Fish Ser Ecology of Atlantic Salmon and Brown Trout: Habitat As A Template for Life Histories = Fish. Fish. Ser. Ecology of disease = Ecol Dis Ecology of Disease = Ecol. Dis. Ecology of food and nutrition = Ecol Food Nutr Ecology of Food and Nutrition = Ecol Food Nutr Ecology of Food and Nutrition = Ecol. Food Nutr. Ecology of Freshwater Fish = Ecol Freshw Fish Ecology of Freshwater Fish = Ecol. Freshw. Fish Ecology of Juvenile Salmon in The Northeast Pacific Ocean: Regional Comparisons = Am Fish S S Ecology of Juvenile Salmon in The Northeast Pacific Ocean: Regional Comparisons = Am. Fish. S. S. Ecology of Leaf Longevity = Ecol Res Monogr Ecology of Leaf Longevity = Ecol. Res. Monogr. Ecology of Threatened Semi-arid Wetlands: Long-term Research in Las Tablas De Daimiel = Wetl Ecol Conserv Ma Ecology of Threatened Semi-arid Wetlands: Long-term Research in Las Tablas De Daimiel = Wetl. Ecol. Conserv. Ma. Ecology, Planning, and Management of Urban Forests: International Perspectives = Springer Ser Env Man Ecology, Planning, and Management of Urban Forests: International Perspectives = Springer. Ser. Env. Man. Ecology, Survey and Management of Forest Insects, Proceedings = Usda Ne Exp Ecology, Survey and Management of Forest Insects, Proceedings = Usda. Ne. Exp. Eco-materials Processing and Design Viii = Mater Sci Forum Eco-materials Processing and Design Viii = Mater. Sci. Forum. Eco-materials Processing and Design Xi = Mater Sci Forum Eco-materials Processing and Design Xi = Mater. Sci. Forum. Eco-materials Processing and Design X = Mater Sci Forum Eco-materials Processing and Design X = Mater. Sci. Forum. Eco-materials Processing & Design = Mater Sci Forum Eco-materials Processing & Design = Mater. Sci. Forum. Eco-materials Processing & Design Vii = Mater Sci Forum Eco-materials Processing & Design Vii = Mater. Sci. Forum. Eco-materials Processing & Design Vi = Mater Sci Forum Eco-materials Processing & Design Vi = Mater. Sci. Forum. E-commerce and The Digital Economy = Adv Manag Inform Sys E-commerce and The Digital Economy = Adv. Manag. Inform. Sys. E-commerce and Web Technologies = Lect Notes Bus Inf E-commerce and Web Technologies = Lect. Notes. Bus. Inf. E-commerce and Web Technologies = Lect Notes Bus Inf P E-commerce and Web Technologies = Lect. Notes. Bus. Inf. P. E-commerce and Web Technologies = Lect Notes Comput Sc E-commerce and Web Technologies = Lect. Notes. Comput. Sc. E-commerce and Web Technologies, Proceedings = Lect Notes Comput Sc E-commerce and Web Technologies, Proceedings = Lect. Notes. Comput. Sc. Econ Journal Watch = Econ J Watch Econ Journal Watch = Econ J. Watch Econometrica = Econometrica Econometrica=Econometrica Econometrica = Econometrica Econometrica : journal of the Econometric Society = Econometrica Econometric Analysis of Financial and Economic Time Series = Adv Econometrics Econometric Analysis of Financial and Economic Time Series = Adv. Econometrics. Econometric Analysis of Financial and Economic Time Series, Pt 2 = Adv Econometrics Econometric Analysis of Financial and Economic Time Series, Pt 2 = Adv. Econometrics. Econometric Modeling of Value-at-risk = Financ I Serv Ser Econometric Modeling of Value-at-risk = Financ. I. Serv. Ser. Econometric Modelling and Forecasting in Asia = St Commun T Econometric Modelling and Forecasting in Asia = St. Commun. T. Econometric Modelling of The World Trade in Groundfish = Nato Adv Sci I E-app Econometric Modelling of The World Trade in Groundfish = Nato. Adv. Sci. I. E-app. Econometric Models in Marketing = Adv Econometrics Econometric Models in Marketing = Adv. Econometrics. Econometric Reviews = Economet Rev Econometric Reviews = Economet. Rev. Econometric Reviews = Econometric Rev. Econometric Reviews=Econometric Rev. Econometrics Informing Natural Resources Management: Selected Empirical Analyses = New Horiz Environ Ec Econometrics Informing Natural Resources Management: Selected Empirical Analyses = New. Horiz. Environ. Ec. Econometrics in the Information Age: Theory and Practice of Measurement = Econom. Inf. Age Theory Pract. Meas. Econometrics Journal = Economet J Econometrics Journal = Economet. J. Econometrics Journal=Econometrics J. Econometric Society Monographs = Econom. Soc. Monogr. Econometric Society Monographs = Econ Soc Monogr Econometric Society Monographs = Econ. Soc. Monogr. Econometrics of Health Care = Adv St Theo Econometrics of Health Care = Adv. St. Theo. Econometrics of Sequential Trade Models: Theory and Applications Using High Frequency Data = Lect Notes Econ Math Econometrics of Sequential Trade Models: Theory and Applications Using High Frequency Data = Lect. Notes. Econ. Math. Econometric Theory = Econometric Theory Econometric Theory=Econometric Theory Econometric Theory = Economet Theor Econometric Theory = Economet. Theor. Economia Aplicada=Econ. Aplicada Economia Chilena = Econ Chil Economia Chilena = Econ. Chil. Economía Chilena=Econ. Chilena Economia delle Scelte Pubbliche=Econ. Scelte Pubbliche Economia Delle Scelte Pubbliche=Econ. Scelte Pubbliche Economia e Lavoro=Econ. Lavoro Economia e sociologia (Evora, Portugal) = Econ Sociol Economia e storia = Econ Stor Economia Industrial=Econ. Ind. Economia Internazionale=Econ. Int. Economia & lavoro = Econ Lav Economia Mexicana-nueva Epoca = Econ Mex Economia Mexicana-nueva Epoca = Econ. Mex. Economia Mexicana, Nueva Epoca=Econ. Mexicana, Nueva Epoca Economia Politica = Econ Polit Economia Politica = Econ. Polit. Economia Politica=Econ. Politica Economia Politica = Econ Polit-italy Economia Politica = Econ. Polit-italy. Economia (Pontifical Catholic University of Peru)=Economia (Peru) Economia (Pontificia Universidad Catolica del Peru. Departamento de Economia) = Economia Economia (Portuguese Catholic University)=Economia (Portugal) Economia pubblica : mensile di studi e d'informazione del Ciriec = Econ Pubblica Economia y desarrollo = Econ Desarro Economic Accessibility of Forest Resources in North-west Russia = Eur Forest Inst Proc Economic Accessibility of Forest Resources in North-west Russia = Eur. Forest Inst. Proc. Economic Adjustment in Algeria, Egypt, Jordan, Morocco, Pakistan, Tunisia, and Turkey = Edi Pol Sem Economic Adjustment in Algeria, Egypt, Jordan, Morocco, Pakistan, Tunisia, and Turkey = Edi. Pol. Sem. Economica=Economica Economica = Economica Economic Affairs=Econ. Aff. Economic Analysis and Policy=Econ. Anal. Pol. Economic Analysis and Policy, New Series=Econ. Anal. Pol., N.S. Economic Analysis and Workers' Management=Econ. Anal. Workers' Manage. Economic Analysis=Econ. Anal. Economic Analysis of Substance Use and Abuse = Nber Conf R Economic Analysis of Substance Use and Abuse = Nber. Conf. R. Economic Analysis of Terrorism = Rout Stud Defen Peac Economic Analysis of Terrorism = Rout. Stud. Defen. Peac. Económica (National University of La Plata)=Económica (La Plata) Economic and Business Bulletin=Econ. Bus. Bull. Economic and Business Bulletin = Econ Bus Bull Economic and Business Bulletin = Econ. Bus. Bull. Economic and Business Review=Econ. Bus. Rev. Economic and Environmental Risk and Uncertainty = Theo Dec L Economic and Environmental Risk and Uncertainty = Theo. Dec. L. Economic and Financial Modelling=Econ. Finan. Modelling Economic and Financial Review=Econ. Finan. Rev. Economic and Industrial Democracy=Econ. Ind. Democracy Economic and Industrial Democracy = Econ Ind Democracy Economic and Industrial Democracy = Econ. Ind. Democracy Economic and Labour Relations Review=Econ. Lab. Relat. Rev. Economic and Management Perspectives On Intellectual Property Rights = Appl Economet Ass Se Economic and Management Perspectives On Intellectual Property Rights = Appl. Economet. Ass. Se. Economic and Palaeoceanographic Significance of Contourite Deposits = Geol Soc Spec Publ Economic and Palaeoceanographic Significance of Contourite Deposits = Geol. Soc. Spec. Publ. Economic and Political Weekly = Econ Polit Weekly Economic and Political Weekly = Econ. Polit. Weekly Economic and political weekly = Econ Polit Wkly Economic and Social Commission for Asia and The Pacific = Miner Conc Hydrocarb Economic and Social Commission for Asia and The Pacific = Miner. Conc. Hydrocarb. Economic and Social Development in Pacific Asia = Growth Econ Asia Ser Economic and Social Development in Pacific Asia = Growth. Econ. Asia Ser. Economic and Social Review=Econ. Soc. Rev. Economic and Social Review = Econ Soc Rev Economic and Social Review = Econ. Soc. Rev. Economic and Social Transformation in China: Challenges and Opportunities = Routl Stud Chin Econ Economic and Social Transformation in China: Challenges and Opportunities = Routl. Stud. Chin. Econ. Economic and Strategic Issues in Us Foreign Policy = De Gruy Nor Economic and Strategic Issues in Us Foreign Policy = De. Gruy. Nor. Economica-new Series = Economica-new Ser Economica-new Series = Economica-new Ser. Economica, N.S.=Economica, N.S. Economic Aspects of Raw Wool Production and Marketing in China = Aciar Tec R Economic Aspects of Raw Wool Production and Marketing in China = Aciar. Tec. R. Economic botany = Econ Bot Economic Botany = Econ Bot Economic Botany = Econ. Bot. Economic bulletin for Asia and the Pacific = Econ Bull Asia Pac Economic Bulletin for Europe = Econ Bull Eur Economic Bulletin for Europe = Econ. Bull. Eur. Economic Bulletin of Ghana, Second Series=Econ. Bull. Ghana, 2nd Ser. Economic Change, Social Welfare and Health in Europe = Who Reg Pub Economic Change, Social Welfare and Health in Europe = Who. Reg. Pub. Economic computation and economic cybernetics studies and research / Academy of Economic Studies = Econ Comput Econ Cybern Stud Res Economic Computation and Economic Cybernetics Studies and Research=Econ. Computat. Econ. Cybern. Stud. Res. Economic Computation and Economic Cybernetics Studies and Research = Econ Comput Econ Cyb Economic Computation and Economic Cybernetics Studies and Research = Econ. Comput. Econ. Cyb. Economic Computation and Economic Cybernetics Studies and Research = Econom. Comput. Econom. Cybernet. Stud. Res. Economic Cooperation Between Singapore and India: An Alliance in The Making = Routledge Stud Growt Economic Cooperation Between Singapore and India: An Alliance in The Making = Routledge. Stud. Growt. Economic Co-operation in The Gulf: Issues in The Economies of The Arab Gulf Co-operation Council States = Rout Stud Mid E Econ Economic Co-operation in The Gulf: Issues in The Economies of The Arab Gulf Co-operation Council States = Rout. Stud. Mid. E. Econ. Economic Costs, Cost-effectiveness, Financing & Community-based Drug Treatment = Nida Res Mg Economic Costs, Cost-effectiveness, Financing & Community-based Drug Treatment = Nida. Res. Mg. Economic Decline and Political Change = Pitt S Pol Economic Decline and Political Change = Pitt. S. Pol. Economic Design=Econ. Design Economic Development and Cultural Change = Econ Dev Cult Change Economic Development and Cultural Change = Econ. Dev. Cult. Change Economic Development and Cultural Change=Econ. Devel. Cult. Change Economic Development and Multilateral Trade Cooperation = Trade Dev Ser Economic Development and Multilateral Trade Cooperation = Trade Dev. Ser. Economic Development and Social Change: Historical Roots and Modern Perspectives = Rout St Hist Econ Economic Development and Social Change: Historical Roots and Modern Perspectives = Rout. St. Hist. Econ. Economic Development, Education and Transnational Corporations = Routl Stud Dev Econ Economic Development, Education and Transnational Corporations = Routl. Stud. Dev. Econ. Economic Development, Integration, and Morality in Asia and The Americas = Res Econ Anthropol Economic Development, Integration, and Morality in Asia and The Americas = Res. Econ. Anthropol. Economic Development Quarterly=Econ. Devel. Quart. Economic Development Quarterly = Econ Dev Q Economic Development Quarterly = Econ. Dev. Q. Economic Development Through Entrepreneurship: Government, University and Business Linkages = New Horiz Entrep Economic Development Through Entrepreneurship: Government, University and Business Linkages = New. Horiz. Entrep. Economic Effects of Aging in The United States and Japan = Nber Conf R Economic Effects of Aging in The United States and Japan = Nber. Conf. R. Economic Effects of Constitutions = Munich Lect Econ Economic Effects of Constitutions = Munich. Lect. Econ. Economic Evolution and Demographic Change = Lect Notes Econ Math Economic Evolution and Demographic Change = Lect. Notes. Econ. Math. Economic eye = Econ Eye Economic Forecasting = Econ Iss Probl Persp Economic Forecasting = Econ. Iss. Probl. Persp. Economic Forum=Econ. Forum Economic geography = Econ Geogr Economic Geography=Econ. Geogr. Economic Geography = Econ Geogr Economic Geography = Econ. Geogr. Economic Geography: Past, Present and Future = Routl Stud Econ Geog Economic Geography: Past, Present and Future = Routl. Stud. Econ. Geog. Economic geology and the bulletin of the Society of Economic Geologists = Econ Geol Economic Geology and the Bulletin of the Society of Economic Geologists = Econ. Geol. Economic Geology and The Bulletin of The Society of Economic Geologists = Econ Geol Bull Soc Economic Geology and The Bulletin of The Society of Economic Geologists = Econ. Geol. Bull. Soc. Economic Geology and the Bulletin of the Society of Economic Geologists = Econ. Geol. Bull. Soc. Econ. Geol. Economic Geology = Econ Geol Economic Geology = Econ. Geol. Economic Globalisation As Religious War: Tragic Convergence = Routl Adv Int Relat Economic Globalisation As Religious War: Tragic Convergence = Routl. Adv. Int. Relat. Economic Government of The Eu: A Balance Sheet of New Modes of Policy Coordination = Palgrave Stud Eur Un Economic Government of The Eu: A Balance Sheet of New Modes of Policy Coordination = Palgrave. Stud. Eur. Un. Economic Growth and The Structure of Long-term Development = Iea Conf Vol Economic Growth and The Structure of Long-term Development = Iea. Conf. Vol. Economic History of The American Steel Industry = Routl Explor Econ Hi Economic History of The American Steel Industry = Routl. Explor. Econ. Hi. Economic History Review=Econ. Hist. Rev. Economic History Review = Econ Hist Rev Economic History Review = Econ. Hist. Rev. Economic History Review-first Series = Econ Hist Rev-first Economic History Review-first Series = Econ. Hist. Rev-first. Economic History Review, Second Series=Econ. Hist. Rev., 2nd Ser. Economic Ideas Leading to The 21st Century = Econ Id Lead 21st C Economic Ideas Leading to The 21st Century = Econ. Id. Lead. 21st C. Economic Impact of Public Support to Agriculture: An International Perspective = Stud Product Effic Economic Impact of Public Support to Agriculture: An International Perspective = Stud. Product. Effic. Economic inquiry = Econ Inq Economic Inquiry = Econ Inq Economic Inquiry = Econ. Inq. Economic Inquiry=Econ. Inquiry Economic Institutions of Strategy = Adv Strateg Manage Economic Institutions of Strategy = Adv. Strateg. Manage. Economic Integration in Asia and India = Ide-jetro Ser Economic Integration in Asia and India = Ide-jetro. Ser. Economic Integration in Asia and India = Ide Jetro Ser Economic Integration in Asia and India = Ide. Jetro. Ser. Economic Integration in The Americas = Routl Stud Mod World Economic Integration in The Americas = Routl. Stud. Mod. World. Economic Issues=Econ. Issues Economic Issues Problems and Perspectives = Econ Iss Probl Persp Economic Issues Problems and Perspectives = Econ. Iss. Probl. Persp. Economic Journal=Econ. J. Economic Journal = Econ J Economic Journal = Econ. J. Economic Learning and Social Evolution = Econ Learn Soc Evol Economic Learning and Social Evolution = Econ. Learn. Soc. Evol. Economic, Medical/scientific and Regulatory Aspects of Clinical Nutrition Practice: What Impacts What? = Nes Nutr Ws Economic, Medical/scientific and Regulatory Aspects of Clinical Nutrition Practice: What Impacts What? = Nes. Nutr. Ws. Economic modelling = Econ Model Economic Modelling = Econ Model Economic Modelling = Econ. Model. Economic Modelling=Econ. Modelling Economic Modelling of Climate Change and Energy Policies = New Hor Env Eco Economic Modelling of Climate Change and Energy Policies = New. Hor. Env. Eco. Economic Models and Algorithms for Distributed Systems = Auton Syst Economic Models and Algorithms for Distributed Systems = Auton. Syst. Economic Notes=Econ. Notes Economic Organization, Capabilities and Co-ordination = Routl Stud Bus Organ Economic Organization, Capabilities and Co-ordination = Routl. Stud. Bus. Organ. Economic Organization, Capabilities and Co-ordination = Rtldg Stud Bus Economic Organization, Capabilities and Co-ordination = Rtldg. Stud. Bus. Economic outlook USA = Econ Outlook USA Economic Performance in The Middle East and North Africa = Routl Polit Econ Mid Economic Performance in The Middle East and North Africa = Routl. Polit. Econ. Mid. Economic Perspective On Climate Change Policies = Accf Ms Tax Economic Perspective On Climate Change Policies = Accf. Ms. Tax. Economic Perspectives=Econ. Perspect. Economic Planning = Econ Plann-canada Economic Planning = Econ. Plann-canada. Economic Pluralism = Routl Front Polit Ec Economic Pluralism = Routl. Front. Polit. Ec. Economic Policy: A European Forum=Econ. Pol.: A Europ. Forum Economic Policy and Performance in Industrial Democracies: Party Governments, Central Banks and The Fiscal-monetary Policy Mix = Routl Front Polit Ec Economic Policy and Performance in Industrial Democracies: Party Governments, Central Banks and The Fiscal-monetary Policy Mix = Routl. Front. Polit. Ec. Economic Policy = Econ Policy Economic Policy = Econ. Policy Economic Policy Proposals for Germany and Europe = Routl Stud Eur Econ Economic Policy Proposals for Germany and Europe = Routl. Stud. Eur. Econ. Economic Policy Review=Econ. Pol. Rev. Economic Prosperity Recaptured: The Finnish Path From Crisis to Rapid Growth = Cesifo Book Ser Economic Prosperity Recaptured: The Finnish Path From Crisis to Rapid Growth = Cesifo. Book. Ser. Economic Record=Econ. Rec. Economic Record = Econ Rec Economic Record = Econ. Rec. Economic Reform and Cross-strait Relations: Taiwan and China in The Wto = Ser Contemp China Economic Reform and Cross-strait Relations: Taiwan and China in The Wto = Ser. Contemp. China Economic Reform and Employment Relations in Vietnam = Routledge Stud Growt Economic Reform and Employment Relations in Vietnam = Routledge. Stud. Growt. Economic Relations Between Asia and Europe: Organisations, Trade and Investment = Chandos Asian Stud Economic Relations Between Asia and Europe: Organisations, Trade and Investment = Chandos. Asian. Stud. Economic Relations Between The United States and Korea : Conflict Or Cooperation = Sr Inst Int Economic Relations Between The United States and Korea : Conflict Or Cooperation = Sr. Inst. Int. Economic Research=Econ. Res. Economic review (Federal Reserve Bank of Atlanta) = Econ Rev Economic review (Federal Reserve Bank of Dallas) = Econ Rev Economic Review (Keizai Kenkyu)=Econ. Rev. (Keizai Kenkyu) Economic Rights in Canada and The United States = Pa Stud Hum Rights Economic Rights in Canada and The United States = Pa. Stud. Hum. Rights Economics: A Biannual Collection of Recent German Studies=Econ.: Biann. Collec. Recent Ger. Stud. Economic Sanctions and Presidential Decisions: Models of Political Rationality = Adv Foreign Policy A Economic Sanctions and Presidential Decisions: Models of Political Rationality = Adv. Foreign. Policy. A. Economics and Business Education=Econ. Bus. Educ. Economics and Financial Crises in Emerging Market Economies = Nber Conf R Economics and Financial Crises in Emerging Market Economies = Nber. Conf. R. Economics and human biology = Econ Hum Biol Economics and Human Biology = Econ. Hum. Biol. Economics and Information Systems = Handb Info Syst Economics and Information Systems = Handb. Info. Syst. Economics and Management of Networks: Franchising, Strategic Alliances, and Cooperatives = Contrib Manag Sci Economics and Management of Networks: Franchising, Strategic Alliances, and Cooperatives = Contrib. Manag. Sci. Economics and Methodology = Iea Conf Vol Economics and Methodology = Iea. Conf. Vol. Economics and philosophy = Econ Philos Economics and Philosophy=Econ. Philos. Economics and Philosophy = Econ Philos Economics and Philosophy = Econ. Philos. Economics and Politics=Econ. Politics Economics and Politics of Oil in The Caspian Basin: The Redistribution of Oil Revenues in Azerbaijan and Central Asia = Cent Asia Res Forum Economics and Politics of Oil in The Caspian Basin: The Redistribution of Oil Revenues in Azerbaijan and Central Asia = Cent. Asia Res. Forum. Economics and Regulation of Financial Privacy = Contrib Econ Economics and Regulation of Financial Privacy = Contrib. Econ. Economics and The Mind = Routl Inem Adv Econ Economics and The Mind = Routl. Inem. Adv. Econ. Economics and Training of Education = Stud Empiric Econ Economics and Training of Education = Stud. Empiric. Econ. Economics As Social Theory = Econ Soc Theor Economics As Social Theory = Econ. Soc. Theor. Economic Science for Rural Development = Econ Sci Rural Dev Economic Science for Rural Development = Econ. Sci. Rural Dev. Economic Science for Rural Development: Finances, Taxes, Investment and Support Systems = Econ Sci Rural Dev Economic Science for Rural Development: Finances, Taxes, Investment and Support Systems = Econ. Sci. Rural Dev. Economic Science for Rural Development: Primary and Secondary Production, Consumption = Econ Sci Rural Dev Economic Science for Rural Development: Primary and Secondary Production, Consumption = Econ. Sci. Rural Dev. Economic Science for Rural Development, Proceedings = Econ Sci Rural Dev Economic Science for Rural Development, Proceedings = Econ. Sci. Rural Dev. Economic Science for Rural Development: Production and Taxes = Econ Sci Rural Dev Economic Science for Rural Development: Production and Taxes = Econ. Sci. Rural Dev. Economic Science for Rural Development: Resources and Education = Econ Sci Rural Dev Economic Science for Rural Development: Resources and Education = Econ. Sci. Rural Dev. Economic Science for Rural Development: Rural and Regional Development = Econ Sci Rural Dev Economic Science for Rural Development: Rural and Regional Development = Econ. Sci. Rural Dev. Economic Science for Rural Development: Sustainability = Econ Sci Rural Dev Economic Science for Rural Development: Sustainability = Econ. Sci. Rural Dev. Economics: Complex Windows = New Econ Windows Economics: Complex Windows = New. Econ. Windows Economics=Economics Economics, Energy and Environment = Econ Energy Environm Economics, Energy and Environment = Econ. Energy Environm. Economics, Ethics and The Market: Introduction and Applications = Routl Front Polit Ec Economics, Ethics and The Market: Introduction and Applications = Routl. Front. Polit. Ec. Economics & Human Biology = Econ Hum Biol Economics & Human Biology = Econ. Hum. Biol. Economics, Information Systems, and Electronic Commerce: Empirical Research = Adv Manag Inform Sys Economics, Information Systems, and Electronic Commerce: Empirical Research = Adv. Manag. Inform. Sys. Economics, Law and Individual Rights = Econ Legal Relation Economics, Law and Individual Rights = Econ. Legal. Relation. Economics letters = Econ Lett Economics Letters = Econ Lett Economics Letters = Econ. Lett. Economics Letters=Econ. Letters Economics Letters = Econom. Lett. Economic Sociology of Work = Res Sociol Work Economic Sociology of Work = Res. Sociol. Work Economics of Aging = Nber Conf R Economics of Aging = Nber. Conf. R. Economics of American Judaism = Routl Front Polit Ec Economics of American Judaism = Routl. Front. Polit. Ec. Economics of An Ageing Population: Macroeconomic Issues = Esri Stud Ser Ageing Economics of An Ageing Population: Macroeconomic Issues = Esri. Stud. Ser. Ageing Economics of Art and Culture = Contrib To Econ Anal Economics of Art and Culture = Contrib. To. Econ. Anal. Economics of Climate Change Policies = Sustain Innov Economics of Climate Change Policies = Sustain. Innov. Economics of education review = Econ Educ Rev Economics of Education Review=Econ. Educ. Rev. Economics of Education Review = Econ Educ Rev Economics of Education Review = Econ. Educ. Rev. Economics of Fishery Management in The Pacific Islands Region = Aciar Proc Economics of Fishery Management in The Pacific Islands Region = Aciar. Proc. Economics of Forest Disturbances: Wildfires, Storms and Invasive Species = For Sci Economics of Forest Disturbances: Wildfires, Storms and Invasive Species = For. Sci. Economics of Governance=Econ. Governance Economics of Grids, Clouds, Systems, and Services = Lect Notes Comput Sc Economics of Grids, Clouds, Systems, and Services = Lect. Notes. Comput. Sc. Economics of Harmonizing European Law = Nh Law Econ Economics of Harmonizing European Law = Nh. Law Econ. Economics of Health and Wellness: Anthropological Perspectives = Res Econ Anthropol Economics of Health and Wellness: Anthropological Perspectives = Res. Econ. Anthropol. Economics of Immigration and Social Diversity = Res Labor E Economics of Immigration and Social Diversity = Res. Labor. E. Economics of Immigration and Social Diversity = Res Labor Econ Economics of Immigration and Social Diversity = Res. Labor. Econ. Economics of Imperfect Markets = Contrib Econ Economics of Imperfect Markets = Contrib. Econ. Economics of Imperfect Markets = Contribut Econ Economics of Imperfect Markets = Contribut. Econ. Economics of Information Communication and Entertainment = Econ Inform Comm Ent Economics of Information Communication and Entertainment = Econ. Inform. Comm. Ent. Economics of Information in The 1990s = Mc F S Rutg Economics of Information in The 1990s = Mc. F. S. Rutg. Economics of Innovation and New Technology=Econ. Innovation New Tech. Economics of Innovation = Contrib Econ Anal Economics of Innovation = Contrib. Econ. Anal. Economics of Interfirm Networks = Okon Koop Economics of Interfirm Networks = Okon. Koop. Economics of International Environmental Problems = Kieler Stud Economics of International Environmental Problems = Kieler. Stud. Economics of Language: International Analyses = Routl Stud Mod World Economics of Language: International Analyses = Routl. Stud. Mod. World. Economics of Legal Relationships = Econ Legal Relation Economics of Legal Relationships = Econ. Legal Relation. Economics of New Goods = Stud Income Economics of New Goods = Stud. Income. Economics of Non-market Goods and Resources = Eco Nm G Re Economics of Non-market Goods and Resources = Eco. Nm. G. Re. Economics of Non-market Goods and Resources = Econ Non-mark Good Economics of Non-market Goods and Resources = Econ. Non-mark. Good. Economics of Obesity = Adv Health Econ Heal Economics of Obesity = Adv. Health. Econ. Heal. Economics of Online Markets and Ict Networks = Contrib Econ Economics of Online Markets and Ict Networks = Contrib. Econ. Economics of Online Markets and Ict Networks = Contribut Econ Economics of Online Markets and Ict Networks = Contribut. Econ. Economics of Persistent Innovation: An Evolutionary View = Econ Sci Technol Inn Economics of Persistent Innovation: An Evolutionary View = Econ. Sci. Technol. Inn. Economics of Planning = Econ Plann Economics of Planning = Econ. Plann. Economics of Planning=Econ. Planning Economics of Pollution Control in The Asia Pacific = New Hor Env Eco Economics of Pollution Control in The Asia Pacific = New. Hor. Env. Eco. Economics of Science, Technology and Innovation = Econ Sci Techn Innov Economics of Science, Technology and Innovation = Econ. Sci. Techn. Innov. Economics of Science Technology and Innovation = Econ Sci Technol Inn Economics of Science Technology and Innovation = Econ. Sci. Technol. Inn. Economics of Search = Routl Adv Exp Comput Economics of Search = Routl. Adv. Exp. Comput. Economics of Skills Obsolescence: Theoretical Innovations and Empirical Applications = Res Labor E Economics of Skills Obsolescence: Theoretical Innovations and Empirical Applications = Res. Labor. E. Economics of Small Firms = Stud Ind Or Economics of Small Firms = Stud. Ind. Or. Economics of Social Security in Japan = Esri Stud Ser Ageing Economics of Social Security in Japan = Esri. Stud. Ser. Ageing. Economics of Sustainable Development: The Case of India = Nat Res Manag Policy Economics of Sustainable Development: The Case of India = Nat. Res. Manag. Policy. Economics of The Caspian Oil and Gas Wealth: Companies, Governments, Policies = Euro-asian Stud Economics of The Caspian Oil and Gas Wealth: Companies, Governments, Policies = Euro-asian. Stud. Economics of The Firm: Analysis, Evolution and History = Routl Stud Glob Comp Economics of The Firm: Analysis, Evolution and History = Routl. Stud. Glob. Comp. Economics of The Firm: Analysis, Evolution and History = Rout St Glob Compet Economics of The Firm: Analysis, Evolution and History = Rout. St. Glob. Compet. Economics of The Law: A Primer = Routl Adv Texts Econ Economics of The Law: A Primer = Routl. Adv. Texts. Econ. Economics of Tourism and Sustainable Development = Feem Ser Econ Envir Economics of Tourism and Sustainable Development = Feem. Ser. Econ. Envir. Economics of Transition = Econ Transit Economics of Transition = Econ. Transit. Economics of Transition=Econ. Transition Economics of Wealth Creation = Baas F Econ Economics of Wealth Creation = Baas. F. Econ. Economic Spillovers, Structural Reforms and Policy Coordination in The Euro Area = Contrib Econ Economic Spillovers, Structural Reforms and Policy Coordination in The Euro Area = Contrib. Econ. Economics & Politics = Econ Polit-oxford Economics & Politics = Econ. Polit-oxford. Economics, Rational Choice and Normative Philosophy = Routledge Front Poli Economics, Rational Choice and Normative Philosophy = Routledge. Front. Poli. Economics, Rational Choice and Normative Philosophy = Routl Front Polit Ec Economics, Rational Choice and Normative Philosophy = Routl. Front. Polit. Ec. Economics, Rational Choice and Normative Philosophy = Routl Fr Polit Econ Economics, Rational Choice and Normative Philosophy = Routl. Fr. Polit. Econ. Economics, Sustainability, and Natural Resources = Sustain Econ Nat Res Economics, Sustainability, and Natural Resources = Sustain. Econ. Nat. Res. Economics: The Journal of the Economics Association=Econ.: J. Econ. Assoc. Economic Studies = Econom Stud Economic Studies = Econom. Stud. Economic Studies in Inequality Social Exclusion and Well-being = Econ Stud Inequal So Economic Studies in Inequality Social Exclusion and Well-being = Econ. Stud. Inequal. So. Economic Studies in Inequality Social Exclusion and Well-being = Ec Stud Inequal Soc Economic Studies in Inequality Social Exclusion and Well-being = Ec. Stud. Inequal. Soc. Economic Studies Quarterly=Econ. Stud. Quart. Economic Systems=Econ. Systems Economic Systems Research=Econ. Systems Res. Economic Systems Research = Econ Syst Res Economic Systems Research = Econ. Syst. Res. Economic Theory, Econometrics, and Mathematical Economics = Econom. Theory Econometrics Math. Econom. Economic Theory = Econom. Theory Economic Theory = Econ Theor Economic Theory = Econ. Theor. Economic Theory=Econ. Theory Economic Theory = Econ Theory Economic Theory = Econ. Theory Economic Theory of Environmental Policy in A Federal System = New Hor Env Eco Economic Theory of Environmental Policy in A Federal System = New. Hor. Env. Eco. Economic Transition in Central Europe and The Commonwealth of Independent States = Stud Econ Transit Economic Transition in Central Europe and The Commonwealth of Independent States = Stud. Econ. Transit. Economic Transition in Eastern Europe = De Vries L Economic Transition in Eastern Europe = De. Vries. L. Economic Valuation of River Systems = New Horiz Environ Ec Economic Valuation of River Systems = New. Horiz. Environ. Ec. Economic Value of Wilderness = Usda Southe Economic Value of Wilderness = Usda. Southe. Economic Writings: Selections 1904-1945 = Vienna Circ Collect Economic Writings: Selections 1904-1945 = Vienna. Circ. Collect. Economie Appliquee = Econ Appl Economie Appliquee = Econ. Appl. Economie Appliquée=Econ. Appl. Economie et humanisme = Econ Humanisme Economie et medecine animales = Econ Med Anim Economie Et Medecine Animales = Econ Med Anim Economie Et Medecine Animales = Econ. Med. Anim. Economie et Prévision=Econ. Prévision Economie Internationale=Econ. Int. Economie meridionale = Econ Merid Economie prospective internationale / Centre d'etudes prospectives et d'informations internationales = Econ Prospect Int Economie Rurale=Econ. Rurale Economies et societes = Econ Soc Economies et Sociétés=Econ. Soc. Economie & statistique = Econ Stat Economisch- en sociaal-historisch jaarboek / uitgegeven door de vereniging het Nederlandsch Economisch-Historisch Archief = Econ Soc Hist Jaarb Economisch en Sociaal Tijdschrift=Econ. Soc. Tijdschr. Economisch-statistische Berichten = Econ Stat Ber Economist = Economist Economist = Economist-nethl Economist = Economist-nethl. Economist (London, England : 1843) = Economist Economist-netherlands = Economist-netherland Economist-netherlands = Economist-netherland. Economists and Societies: Discipline and Profession in The United States, Britain, and France, 1890s to 1990s = Princ Stud Cult Economists and Societies: Discipline and Profession in The United States, Britain, and France, 1890s to 1990s = Princ. Stud. Cult. Economy and Ecology Towards Sustainable Development = Econ Envir Economy and Ecology Towards Sustainable Development = Econ. Envir. Economy and Economics of Ancient Greece = Routl Explor Econ Hi Economy and Economics of Ancient Greece = Routl. Explor. Econ. Hi. Economy and history = Econ Hist (Sweden) Economy and History=Economy Hist. Economy and Politics in The Mycenaean Palace States = Camb C J Proc Cam Ph Economy and Politics in The Mycenaean Palace States = Camb. C. J. Proc. Cam. Ph. Economy and Society=Economy Society Economy and society = Econ Soc Economy and Society = Econ Soc Economy and Society = Econ. Soc. Economy And Society = Econ. Soc. Economy and Society in The Modern South = Econ Soc Mod S Economy and Society in The Modern South = Econ. Soc. Mod. S. Economy As An Evolving Complex System, Iii = Sfi S Sci C Economy As An Evolving Complex System, Iii = Sfi. S. Sci. C. Economy & Environment = Econ Envir Economy & Environment = Econ. Envir. Economy & Environment = Econ Environ Economy & Environment = Econ. Environ. Economy of The Conflict Region in Sri Lanka: From Embargo to Repression = Pol Stud Economy of The Conflict Region in Sri Lanka: From Embargo to Repression = Pol. Stud. Econophysics of Markets and Business Networks = Ne Econ Win Econophysics of Markets and Business Networks = Ne. Econ. Win. Econophysics of Markets and Business Networks = New Econ Windows Econophysics of Markets and Business Networks = New. Econ. Windows. Econophysics of Order-driven Markets = New Econ Windows Econophysics of Order-driven Markets = New. Econ. Windows. Econophysics of Stock and Other Markets = Ne Econ Win Econophysics of Stock and Other Markets = Ne. Econ. Win. Econophysics of Stock and Other Markets = New Econ Windows Econophysics of Stock and Other Markets = New. Econ. Windows. Econophysics of Wealth Distributions: Econophys-kolkata I = New Econ Windows Econophysics of Wealth Distributions: Econophys-kolkata I = New. Econ. Windows. Econtent = Econtent Ecoop 2000 - Object-oriented Programming = Lect Notes Comput Sc Ecoop 2000 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 2002 - Object-oriented Programming = Lect Notes Comput Sc Ecoop 2002 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 2003 - Object-oriented Programming, Proceedings = Lect Notes Comput Sc Ecoop 2003 - Object-oriented Programming, Proceedings = Lect. Notes. Comput. Sc. Ecoop 2004 - Object-oriented Programming = Lect Notes Comput Sc Ecoop 2004 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 2005 - Object-oriented Programming, Proceedings = Lect Notes Comput Sc Ecoop 2005 - Object-oriented Programming, Proceedings = Lect. Notes. Comput. Sc. Ecoop 2006 - Object-oriented Programming, Proceedings = Lect Notes Comput Sc Ecoop 2006 - Object-oriented Programming, Proceedings = Lect. Notes. Comput. Sc. Ecoop 2007 - Object-oriented Programming, Proceedings = Lect Notes Comput Sc Ecoop 2007 - Object-oriented Programming, Proceedings = Lect. Notes. Comput. Sc. Ecoop 2008 - Object-oriented Programming, Proceedings = Lect Notes Comput Sc Ecoop 2008 - Object-oriented Programming, Proceedings = Lect. Notes. Comput. Sc. Ecoop 2009 - Object-oriented Programming = Lect Notes Comput Sc Ecoop 2009 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 2010: Object-oriented Programming = Lect Notes Comput Sc Ecoop 2010: Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 91 : European Conference On Object-oriented Programming = Lect Notes Comput Sc Ecoop 91 : European Conference On Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop 92 European Conference On Object-oriented Programming = Lect Notes Comput Sc Ecoop 92 European Conference On Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop '95 - Object-oriented Programming = Lect Notes Comput Sc Ecoop '95 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop'97: Object-oriented Programming = Lect Notes Comput Sc Ecoop'97: Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoop'99 - Object-oriented Programming = Lect Notes Comput Sc Ecoop'99 - Object-oriented Programming = Lect. Notes. Comput. Sc. Ecoosa 90 - Quantum Optics = Inst Phys Conf Ser Ecoosa 90 - Quantum Optics = Inst. Phys. Conf. Ser. Ecopolis: Architecture and Cities for A Changing Climate = Future City Ecopolis: Architecture and Cities for A Changing Climate = Future. City. Ecoscience = Ecoscience Eco-standards, Product Labelling and Green Consumerism = Consum Public Life Eco-standards, Product Labelling and Green Consumerism = Consum. Public. Life. Ecosystem Approaches for Fisheries Management = Low Wake Fi Ecosystem Approaches for Fisheries Management = Low. Wake. Fi. Ecosystem Classification for Environmental Management = Ecol Envir Ecosystem Classification for Environmental Management = Ecol. Envir. Ecosystem Health = Ecosyst Health Ecosystem Health = Ecosyst. Health Ecosystem Management of Natural Resources in The Intermountain West, Proceedings of The Symposium = Nat Resour Env Iss Ecosystem Management of Natural Resources in The Intermountain West, Proceedings of The Symposium = Nat. Resour. Env. Iss. Ecosystem Management : Rare Species and Significant Habits = B Ny St Mus Ecosystem Management : Rare Species and Significant Habits = B. Ny. St. Mus. Ecosystem Modeling As A Management Tool for The Black Sea, Vol 1 = Nato Asi 2 Ecosystem Modeling As A Management Tool for The Black Sea, Vol 1 = Nato. Asi. 2. Ecosystem Modeling As A Management Tool for The Black Sea, Vol 2 = Nato Asi 2 Ecosystem Modeling As A Management Tool for The Black Sea, Vol 2 = Nato. Asi. 2 Ecosystems and Global Changes = Dos En Inra Ecosystems and Global Changes = Dos. En. Inra. Ecosystems and Land Use Change = Geoph Monog Series Ecosystems and Land Use Change = Geoph. Monog. Series. Ecosystems and Land Use Change = Geophys Monogr Ser Ecosystems and Land Use Change = Geophys. Monogr. Ser. Ecosystems and Sustainable Development = Adv Ecol Sci Ecosystems and Sustainable Development = Adv. Ecol. Sci. Ecosystems and Sustainable Development Ii = Adv Ecol Sci Ecosystems and Sustainable Development Ii = Adv. Ecol. Sci. Ecosystems and Sustainable Development Iii = Adv Ecol Sci Ecosystems and Sustainable Development Iii = Adv. Ecol. Sci. Ecosystems and Sustainable Development Iv, Vols 1 and 2 = Adv Ecol Sci Ecosystems and Sustainable Development Iv, Vols 1 and 2 = Adv. Ecol. Sci. Ecosystems and Sustainable Development Vii = Wit Trans Ecol Envir Ecosystems and Sustainable Development Vii = Wit. Trans. Ecol. Envir. Ecosystems and Sustainable Development Vi = Wit Trans Ecol Envir Ecosystems and Sustainable Development Vi = Wit. Trans. Ecol. Envir. Ecosystems and Sustainable Development V = Wit Trans Ecol Envir Ecosystems and Sustainable Development V = Wit. Trans. Ecol. Envir. Ecosystems' Dynamics, Agricultural Remote Sensing and Modeling, and Site-specific Agriculture = Proc Spie Ecosystems' Dynamics, Agricultural Remote Sensing and Modeling, and Site-specific Agriculture = Proc. Spie. Ecosystems' Dynamics, Agricultural Remote Sensing and Modeling, and Site-specific Agriculture = P Soc Photo-opt Ins Ecosystems' Dynamics, Agricultural Remote Sensing and Modeling, and Site-specific Agriculture = P. Soc. Photo-opt. Ins. Ecosystems Dynamics, Ecosystem-society Interactions, and Remote Sensing Applications for Semi-arid and Arid Land, Pts 1 and 2 = P Soc Photo-opt Ins Ecosystems Dynamics, Ecosystem-society Interactions, and Remote Sensing Applications for Semi-arid and Arid Land, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Ecosystems = Ecosystems Ecosystem Services = Iss Environ Sci Tech Ecosystem Services = Iss. Environ. Sci. Tech. Ecotourism Book Series = Ecotour Bk Ser Ecotourism Book Series = Ecotour. Bk. Ser. Ecotourism in Scandinavia: Lessons in Theory and Practice = Ecotour Bk Ser Ecotourism in Scandinavia: Lessons in Theory and Practice = Ecotour. Bk. Ser. Ecotourism: Management, Development and Impact = Tour Hosp Dev Manag Ecotourism: Management, Development and Impact = Tour. Hosp. Dev. Manag. Ecotourism, Ngos and Development = Contemp Geogr Leis T Ecotourism, Ngos and Development = Contemp. Geogr. Leis. T. Ecotourism Series = Ecotourism Ecotoxicology and Environmental Safety = Ecotox Environ Safe Ecotoxicology and Environmental Safety = Ecotox. Environ. Safe. Ecotoxicology and environmental safety = Ecotoxicol Environ Saf Ecotoxicology and Environmental Safety=Ecotoxicol Environ Saf;; Ecotoxicology and Environmental Safety = Ecotoxicol. Environ. Saf. Ecotoxicology and Environment Safety = Ecotoxicol. Environ. Saf. Ecotoxicology and Risk Assessment for Wetlands = Setac Sp P Ecotoxicology and Risk Assessment for Wetlands = Setac. Sp. P. Ecotoxicology, Ecological Risk Assessment and Multiple Stressors = Nato Sci Peace Secur Ecotoxicology, Ecological Risk Assessment and Multiple Stressors = Nato. Sci. Peace. Secur. Ecotoxicology = Ecotoxicology Ecotoxicology (London, England) = Ecotoxicology Ecotoxicology of Metals in Invertebrates = Setac Sp P Ecotoxicology of Metals in Invertebrates = Setac. Sp. P. Ecotoxicology of Soil Organisms = Setac Sp P Ecotoxicology of Soil Organisms = Setac. Sp. P. Ecotropica = Ecotropica Ecovision World Monograph Series = Ecovis World Mg Ser Ecovision World Monograph Series = Ecovis. World Mg. Ser. Ecquid Novi-african Journalism Studies = Ecquid Novi-afr Jour Ecquid Novi-african Journalism Studies = Ecquid Novi-afr. Jour. Ecrits de Paris: revue des questions actuelles = Ecrits Paris Ecrs 5: Proceedings of The Fifth European Conference On Residual Stresses = Mater Sci Forum Ecrs 5: Proceedings of The Fifth European Conference On Residual Stresses = Mater. Sci. Forum. Ecrs 6: Proceedings of The 6th European Conference On Residual Stresses = Mater Sci Forum Ecrs 6: Proceedings of The 6th European Conference On Residual Stresses = Mater. Sci. Forum. ECS Transactions = ECS Trans. Ecs Transactions = Ecs Transactions Ect - 2008: Proceedings of The 3rd International Conference On Electrical and Control Technologies = Elect Cont Tech Ect - 2008: Proceedings of The 3rd International Conference On Electrical and Control Technologies = Elect. Cont. Tech. Ect 2009: Electrical and Control Technologies = Elect Cont Tech Ect 2009: Electrical and Control Technologies = Elect. Cont. Tech. Ectj-educational Communication and Technology Journal = Ectj-educ Commun Tec Ectj-educational Communication and Technology Journal = Ectj-educ. Commun. Tec. Ecumene = Ecumene Ecumenical Review = Ecumenical Rev Ecumenical Review = Ecumenical Rev. Edcentric = Edcentric Eddy Current Approximation of Maxwell Equations: Theory, Algorithms and Applications = Ms A Mod Simul Eddy Current Approximation of Maxwell Equations: Theory, Algorithms and Applications = Ms. A. Mod. Simul. Eddy Structure Identification in Free Turbulent Shear Flows = Fluid Mec A Eddy Structure Identification in Free Turbulent Shear Flows = Fluid. Mec. A. Edebiyat-a Journal of Middle Eastern Literatures = Edebiyat Edebiyat-a Journal of Middle Eastern Literatures = Edebiyat. E-democracy: A Group Decision and Negotiation Perspective = Adv Group Decis Nego E-democracy: A Group Decision and Negotiation Perspective = Adv. Group Decis. Nego. Edf Letter = Edf Lett Edf Letter = Edf Lett. Edge of Life: Human Dignity and Contemporary Bioethics = Philos Med Edge of Life: Human Dignity and Contemporary Bioethics = Philos. Med. Edible Polysaccharide Films and Coatings = Biotech Agr Ind Med Edible Polysaccharide Films and Coatings = Biotech. Agr. Ind. Med. Edi Development Studies = Edi Dev Stud Edi Development Studies = Edi Dev. Stud. Edi Learning Resources Series = Edi Learn Resour Ser Edi Learning Resources Series = Edi Learn. Resour. Ser. Edinburgh Dental Hospital gazette = Edinb Dent Hosp Gaz Edinburgh Dental Hospital Gazette = Edinb. Dent. Hosp. Gaz. Edinburgh Guides to Islamic Finance = Edinb Guid Islam Edinburgh Guides to Islamic Finance = Edinb. Guid. Islam. Edinburgh medical journal = Edinburgh Med J Edinburgh Studies in Law = Edinb Stud Law Edinburgh Studies in Law = Edinb. Stud. Law Edi Policy Seminar Report = Edi Pol Sem Edi Policy Seminar Report = Edi Pol. Sem. Edi Seminar Series = Edi Semin S Edi Seminar Series = Edi Semin. S. Edited Proceedings: Seventeenth International Galvanizing Conference, Paris 1994 = Proc Int Galvan Conf Edited Proceedings: Seventeenth International Galvanizing Conference, Paris 1994 = Proc. Int. Galvan. Conf. Edith Wharton and The Conversations of Literary Modernism = Am Lit Read Twenty-f Edith Wharton and The Conversations of Literary Modernism = Am. Lit. Read. Twenty-f. Editing Emily Dickinson: The Production of An Author = Stud Major Lit Autho Editing Emily Dickinson: The Production of An Author = Stud. Major. Lit. Autho. Editing for Today's Newsroom: A Guide for Success in A Changing Profession, Second Edition = Lea Commun Ser Editing for Today's Newsroom: A Guide for Success in A Changing Profession, Second Edition = Lea. Commun. Ser. Editions Sr = Edition Sr Editions Sr = Edition. Sr Editorial research reports = Editor Res Rep Edm 2007: 8th International Workshop and Tutorials On Electron Devices and Materials = Int Sib Workshops Tu Edm 2007: 8th International Workshop and Tutorials On Electron Devices and Materials = Int. Sib. Workshops. Tu. Edm 2008: International Workshop and Tutorials On Electron Devices and Materials, Proceedings = Int Sib Workshops Tu Edm 2008: International Workshop and Tutorials On Electron Devices and Materials, Proceedings = Int. Sib. Workshops. Tu. ED Management = ED Manag. ED management : the monthly update on emergency department management = ED Manag Edmonton 1991 Spring Symposium, Pt 1 = Instr Chem Edmonton 1991 Spring Symposium, Pt 1 = Instr. Chem. Edn = Edn Edn Magazine-electrical Design News = Edn Edoc 2008: 12th Ieee International Enterprise Distributed Object Computing, Proceedings = Ieee Edoc Conf Edoc 2008: 12th Ieee International Enterprise Distributed Object Computing, Proceedings = Ieee Edoc Conf. Edoc: 2009 Ieee International Enterprise Distributed Object Computing Conference = Ieee Edoc Conf Edoc: 2009 Ieee International Enterprise Distributed Object Computing Conference = Ieee Edoc. Conf. Edp Analyzer = Edp Anal Edp Analyzer = Edp Anal. EDS Magazine = EDS Mag. EDS magazine : official journal of the E.E.C. Dental Students Committee = EDS Mag Edssc: 2007 Ieee International Conference On Electron Devices and Solid-state Circuits, Vols 1 and 2, Proceedings = Ieee C Elec Devices Edssc: 2007 Ieee International Conference On Electron Devices and Solid-state Circuits, Vols 1 and 2, Proceedings = Ieee C. Elec. Devices EDTNA/ERCA Journal = EDNTNA ERCA J. EDTNA/ERCA journal (English ed.) = EDTNA ERCA J Edu'08: Proceedings of The 7th Wseas International Conference On Education and Educational Technology = Rec Adv Comput Eng Edu'08: Proceedings of The 7th Wseas International Conference On Education and Educational Technology = Rec. Adv. Comput. Eng. Edu '09: Proceedings of The 8th Wseas International Conference On Education and Educational Technology = Rec Adv Comput Eng Edu '09: Proceedings of The 8th Wseas International Conference On Education and Educational Technology = Rec. Adv. Comput. Eng. Educacion dental = Educ Dent (Ica) Educacion Dental = Educ. Dent. (Ica) Educacion medica y salud = Educ Med Salud Educacion Medica y Salud = Educ. Med. Salud Educacion Quimica = Educ. Quim. Educacion Xx1 = Educ Xx1 Educacion Xx1 = Educ. Xx1 Educafrica (English version) = Educafrica Educare in Europe = Ycf Ser Educare in Europe = Ycf. Ser. Educating Educators With Social Media = Cut Technol High Ed Educating Educators With Social Media = Cut. Technol. High. Ed. Educating in The Arts: The Asian Experience, Twenty-four Essays = Educ Asia Pac Reg-is Educating in The Arts: The Asian Experience, Twenty-four Essays = Educ. Asia. Pac. Reg-is. Educating Professionals for Network-centric Organizations = Int Fed Info Proc Educating Professionals for Network-centric Organizations = Int. Fed. Info. Proc. Educating The Global Workforce: Knowledge, Knowledge Work and Knowledge Workers = World Yearb Educ Educating The Global Workforce: Knowledge, Knowledge Work and Knowledge Workers = World. Yearb. Educ. Educating The Royal Navy: 18th and 19th Century Education for Officers = Cass Ser Nav Policy Educating The Royal Navy: 18th and 19th Century Education for Officers = Cass. Ser. Nav. Policy. Educating The Young Child = Educ Young Child Educating The Young Child = Educ. Young Child Educating Your Patient With Diabetes = Contemp Diabetes Educating Your Patient With Diabetes = Contemp. Diabetes Educational administration quarterly : EAQ = Educ Adm Q Educational Administration Quarterly = Educ Admin Quart Educational Administration Quarterly = Educ. Admin. Quart. Educational Administration Quarterly = Educ. Adm. Q. Educational Algebra: A Theoretical and Empirical Approach = Math Educ Lib Educational Algebra: A Theoretical and Empirical Approach = Math. Educ. Lib. Educational and Industrial Television = Educ. Ind. Telev. Educational and psychological measurement = Educ Psychol Meas Educational and Psychological Measurement = Educ Psychol Meas Educational and Psychological Measurement = Educ. Psychol. Meas. Educational Assessment Evaluation and Accountability = Educ Assess Eval Acc Educational Assessment Evaluation and Accountability = Educ. Assess. Eval. Acc. Educational broadcasting international = Educ Broadcast Int Educational Change = Educ Compet Glob Wor Educational Change = Educ. Compet. Glob. Wor. Educational Decentralization: Asian Experiences and Conceptual Contributions = Educ Asia Pac Reg-is Educational Decentralization: Asian Experiences and Conceptual Contributions = Educ. Asia. Pac. Reg-is. Educational Design and Technology in The Knowledge Society = Educ Des Tech Know Educational Design and Technology in The Knowledge Society = Educ. Des. Tech. Know. Educational directions for dental auxiliaries = Educ Dir Dent Aux Educational Directions for Dental Auxiliaries = Educ. Dir. Dent. Aux. Educational directions in dental hygiene = Educ Dir Dent Hyg Educational Directions in Dental Hygiene = Educ. Dir. Dent. Hyg. Educational Environments and Religions = Sci Hum Rel Educational Environments and Religions = Sci. Hum. Rel. Educational Evaluation and Policy Analysis = Educ Eval Policy An Educational Evaluation and Policy Analysis = Educ. Eval. Policy An. Educational Forum = Educ Forum Educational Forum = Educ. Forum Educational gerontology = Educ Gerontol Educational Gerontology = Educ Gerontol Educational Gerontology = Educ. Gerontol. Educational & industrial television = Educ Ind Telev Educational Innovation in Economics and Business = Educ Innov Econ Bus Educational Innovation in Economics and Business = Educ. Innov. Econ. Bus. Educational Innovation in Economics and Business Iii = Educ Innov Econ Bus Educational Innovation in Economics and Business Iii = Educ. Innov. Econ. Bus. Educational Innovation in Economics and Business Iv = Educ Innov Econ Bus Educational Innovation in Economics and Business Iv = Educ. Innov. Econ. Bus. Educational Innovation in Economics and Business Vii = Educ Innov Econ Bus Educational Innovation in Economics and Business Vii = Educ. Innov. Econ. Bus. Educational Innovation in Economics and Business Vii: Pedagogy, Technology and Innovation = Educ Innov Econ Bus Educational Innovation in Economics and Business Vii: Pedagogy, Technology and Innovation = Educ. Innov. Econ. Bus. Educational Leadership = Educ Leadership Educational Leadership = Educ. Leadership Educational Leadership for Social Justice = Educ Leader Soc Just Educational Leadership for Social Justice = Educ. Leader. Soc. Just. Educational leadership : journal of the Department of Supervision and Curriculum Development, N.E.A = Educ Leadersh Educational Linguistics = Educat Linguistics Educational Linguistics = Educat. Linguistics Educational Linguistics = Educ Linguist Educational Linguistics = Educ. Linguist. Educational Management Administration & Leadership = Educ Manag Adm Lead Educational Management Administration & Leadership = Educ. Manag. Adm. Lead. Educational Media and Technology Yearbook = Educ Media Tech Year Educational Media and Technology Yearbook = Educ. Media Tech. Year. Educational Media and Technology Yearbook: Vol 34, 2009 = Educ Media Tech Year Educational Media and Technology Yearbook: Vol 34, 2009 = Educ. Media Tech. Year. Educational Media and Technology Yearbook: Vol 35, 2010 = Educ Media Tech Year Educational Media and Technology Yearbook: Vol 35, 2010 = Educ. Media Tech. Year. Educational Perspectives = Educ Perspect Educational Perspectives = Educ. Perspect. Educational Philosophy and Theory = Educ Philos Theory Educational Philosophy and Theory = Educ. Philos. Theory Educational Policy and Law = Educ Policy Law Educational Policy and Law = Educ. Policy Law Educational Policy and Practice: The Good, The Bad and The Pseudoscience: Educational Theory and Policy, Vol 1 = Educ Compet Glob Wor Educational Policy and Practice: The Good, The Bad and The Pseudoscience: Educational Theory and Policy, Vol 1 = Educ. Compet. Glob. Wor. Educational Policy = Educ Policy Educational Policy = Educ. Policy Educational Policy in Practice Critical Cultural Studies = Educ Policy Pract Cr Educational Policy in Practice Critical Cultural Studies = Educ. Policy Pract. Cr. Educational Policy in The 21st Century Opportunities Challenges and Solutions = Educ Policy 21st Cen Educational Policy in The 21st Century Opportunities Challenges and Solutions = Educ. Policy 21st Cen. Educational Potential of E-portfolios = Connect E Learn Educational Potential of E-portfolios = Connect. E. Learn. Educational Psychologist = Educ Psychol Educational Psychologist = Educ. Psychol. Educational Psychologist = Educ Psychol-us Educational Psychologist = Educ. Psychol-us. Educational Psychology = Educ Psychol-uk Educational Psychology = Educ. Psychol-uk. Educational Psychology Handbook = Educ Psychol Handb Educational Psychology Handbook = Educ. Psychol. Handb. Educational Psychology Review = Educ Psychol Rev Educational Psychology Review = Educ. Psychol. Rev. Educational Psychology Series = Educ Psychol Ser Educational Psychology Series = Educ. Psychol. Ser. Educational Record = Educ Rec Educational Record = Educ. Rec. Educational Research Bulletin = Educ Res Bull Educational Research Bulletin = Educ. Res. Bull. Educational Research = Educ Res Educational Research = Educ. Res. Educational Research = Educ Res-uk Educational Research = Educ. Res-uk. Educational Researcher = Educ Researcher Educational Researcher = Educ. Researcher Educational Research: Networks and Technologies = Educ Res Ser Educational Research: Networks and Technologies = Educ. Res. Ser. Educational Research: Proofs, Arguments, and Other Reasonings = Educ Res Ser Educational Research: Proofs, Arguments, and Other Reasonings = Educ. Res. Ser. Educational Research Quarterly = Educ Res Quart Educational Research Quarterly = Educ. Res. Quart. Educational Research Review = Educ Res Rev-neth Educational Research Review = Educ. Res. Rev-neth. Educational Research Series = Educ Res Ser Educational Research Series = Educ. Res. Ser. Educational Research: The Educationalization of Social Problems = Educ Res Ser Educational Research: The Educationalization of Social Problems = Educ. Res. Ser. Educational Research: The Ethics and Aesthetics of Statistics = Educ Res Ser Educational Research: The Ethics and Aesthetics of Statistics = Educ. Res. Ser. Educational Research, The National Agenda, and Educational Reform: A History = Stud Hist Educ Educational Research, The National Agenda, and Educational Reform: A History = Stud. Hist. Educ. Educational Research: Why 'what Works' Doesn't Work = Educ Res Ser Educational Research: Why 'what Works' Doesn't Work = Educ. Res. Ser. Educational Review = Educ Rev Educational Review = Educ. Rev. Educational Sciences = Educ Sci Educational Sciences = Educ. Sci. Educational studies = Educ Stud Educational Studies = Educ Stud Educational Studies = Educ. Stud. Educational Studies in Mathematics = Educ Stud Math Educational Studies in Mathematics = Educ. Stud. Math. Educational Technology = Educ Technol Educational Technology = Educ. Technol. Educational Technology in Practice: Research and Practical Case Studies From The Field = Educ Des Tech Know Educational Technology in Practice: Research and Practical Case Studies From The Field = Educ. Des. Tech. Know. Educational Technology & Society = Educ Technol Soc Educational Technology & Society = Educ. Technol. Soc. Educational Theatre Journal = Educ Theatre J Educational Theatre Journal = Educ. Theatre J. Educational theory = Educ Theory Educational Theory = Educ Theory Educational Theory = Educ. Theory Educational & Training Technology International = Educ Train Technol Educational & Training Technology International = Educ. Train. Technol. Education and Civic Culture in Post-communist Countries = Stud Russ E Eur Education and Civic Culture in Post-communist Countries = Stud. Russ. E. Eur. Education and Civic Culture in Post-communist Countries = Stud Russia E Europe Education and Civic Culture in Post-communist Countries = Stud. Russia. E. Europe. Education and Climate Change = Routl Res Educ Education and Climate Change = Routl. Res. Educ. Education and Labour Markets Outcomes: A French-german Comparison = Zew Econ Stud Education and Labour Markets Outcomes: A French-german Comparison = Zew. Econ. Stud. Education and Postponement of Maternity: Economic Analyses for Industrialized Countries = Eur Stud Popul Education and Postponement of Maternity: Economic Analyses for Industrialized Countries = Eur. Stud. Popul. Education and Social Inequality in The Global Culture = Glob Comp Educ Polic Education and Social Inequality in The Global Culture = Glob. Comp. Educ. Polic. Education and Social Integration: Comprehensive Schooling in Europe = Second Educ Chang Wo Education and Social Integration: Comprehensive Schooling in Europe = Second. Educ. Chang. Wo. Education and Society : Information Processing 92, Vol 2 = Ifip Trans A Education and Society : Information Processing 92, Vol 2 = Ifip. Trans. A. Education and Society in Hong Kong and Macao: Comparative Perspectives On Continuity and Change, Second Edition = Cerc Stud Comp Educ Education and Society in Hong Kong and Macao: Comparative Perspectives On Continuity and Change, Second Edition = Cerc. Stud. Comp. Educ. Education and Support Programs for Caregivers: Research, Practice, Policy = Caregiving-res Pract Education and Support Programs for Caregivers: Research, Practice, Policy = Caregiving-res. Pract. Education and The Family = Found Futures Educ Education and The Family = Found. Futures. Educ. Education and Training in Autism and Developmental Disabilities = Educ Train Autism De Education and Training in Autism and Developmental Disabilities = Educ. Train. Autism De. Education and Training in Developmental Disabilities = Educ Train Dev Disab Education and Training in Developmental Disabilities = Educ. Train. Dev. Disab. Education and Training in Mental Retardation and Developmental Disabilities = Educ Train Ment Ret Education and Training in Mental Retardation and Developmental Disabilities = Educ. Train. Ment. Ret. Education and Training of The Mentally Retarded = Educ Train Ment Reta Education and Training of The Mentally Retarded = Educ. Train. Ment. Reta. Education and training of the mentally retarded = Educ Train Ment Retard Education and urban society = Educ Urban Soc Education and Urban Society = Educ Urban Soc Education and Urban Society = Educ. Urban Soc. Education As A Political Tool in Asia = Routl Contemp Asia Education As A Political Tool in Asia = Routl. Contemp. Asia Education As Change = Educ Chang Education As Change = Educ. Chang. Education As Change = Educ Change Education As Change = Educ. Change Education As My Agenda = Palgr Stud Oral Hist Education As My Agenda = Palgr. Stud. Oral. Hist. Education Conference 1989 = Cah Enseign Education Conference 1989 = Cah. Enseign. Education Economics=Educ. Econ. Education = Education Education Finance and Policy = Educ Financ Policy Education Finance and Policy = Educ. Financ. Policy Education for All: Global Promises, National Challenges = Int Persp Educ Soc Education for All: Global Promises, National Challenges = Int. Persp. Educ. Soc. Education for A Multicultural Society : A New Agenda for Continuing Higher Education = P Assn Cont Education for A Multicultural Society : A New Agenda for Continuing Higher Education = P. Assn. Cont. Education for Animal Welfare = Anim Welfare Ser Education for Animal Welfare = Anim. Welfare Ser. Education for Chemical Engineers = Educ. Chem. Eng. Education for Demographic Citizenship in Europe - New Challenges for Secondary Education = Eur Educ R Education for Demographic Citizenship in Europe - New Challenges for Secondary Education = Eur. Educ. R. Education for health (Abingdon, England) = Educ Health (Abingdon) Education for Information = Educ Inform Education for Information = Educ. Inform. Education for Peace: A Conference Report From Budapest (eupra, November 1993) = Peac Educ Rep Education for Peace: A Conference Report From Budapest (eupra, November 1993) = Peac. Educ. Rep. Education for Peace: A Conference Report From Malta (ipra, Oct.-nov. 1994) = Peac Educ Rep Education for Peace: A Conference Report From Malta (ipra, Oct.-nov. 1994) = Peac. Educ. Rep. Education for The 21st Century - Impact of Ict and Digital Resources = Int Fed Info Proc Education for The 21st Century - Impact of Ict and Digital Resources = Int. Fed. Info. Proc. Education for The Library/information Profession = Mc F S Rutg Education for The Library/information Profession = Mc. F. S. Rutg. Education, Globalisation and New Times = Educ Heritag Education, Globalisation and New Times = Educ. Heritag. Education Heritage = Educ Heritag Education Heritage = Educ. Heritag. Education in A Competitive and Globalizing World = Educ Compet Glob Wor Education in A Competitive and Globalizing World = Educ. Compet. Glob. Wor. Education in Asia = Educ Compet Glob Wor Education in Asia = Educ. Compet. Glob. Wor. Education in Chemistry = Educ. Chem. Education in Divided Societies = Ethn Intercomm Confl Education in Divided Societies = Ethn. Intercomm. Confl. Education in Human Creative Existential Planning = Anal Hus Yb Education in Human Creative Existential Planning = Anal. Hus. Yb. Education in Large Cities = Educ Large Cities Education in Large Cities = Educ. Large Cities Education in Microelectronics and Mems = Proc Spie Education in Microelectronics and Mems = Proc. Spie. Education in Microelectronics and Mems = P Soc Photo-opt Ins Education in Microelectronics and Mems = P. Soc. Photo-opt. Ins. Education in Optics = P Soc Photo-opt Ins Education in Optics = P. Soc. Photo-opt. Ins. Education in The Asia-pacific Region: Issues, Concerns and Prospects = Educ Asia-pacific Education in The Asia-pacific Region: Issues, Concerns and Prospects = Educ. Asia-pacific Education in The Asia Pacific Region-issues Concerns and Prospects = Educ Asia Pac Reg-is Education in The Asia Pacific Region-issues Concerns and Prospects = Educ. Asia Pac. Reg-is. Education in The Era of Globalization = Philos Educ-neth Education in The Era of Globalization = Philos. Educ-neth. Education Leadership and Business Ethics = Iss Bus Eth Education Leadership and Business Ethics = Iss. Bus. Eth. Education libraries bulletin = Libr Bull Univ Lond Education of Desire: Towards A Theology of The Senses = Jah Lec Series Education of Desire: Towards A Theology of The Senses = Jah. Lec. Series. Education of Diverse Student Populations: A Global Perspective = Explor Educ Purp Education of Diverse Student Populations: A Global Perspective = Explor. Educ. Purp. Education of Jane Addams = Polit Cult Mod Am Education of Jane Addams = Polit. Cult. Mod. Am. Education of The Gifted in Europe : Theoretical and Research Issues = Eur Educ R Education of The Gifted in Europe : Theoretical and Research Issues = Eur. Educ. R. Education of The Visually Handicapped = Educ Visual Handicap Education of The Visually Handicapped = Educ. Visual. Handicap. Education Outreach and Public Engagement = Mentor Acad Ind Education Outreach and Public Engagement = Mentor. Acad. Ind. Education, Philosophy and The Ethical Environment = Found Futures Educ Education, Philosophy and The Ethical Environment = Found. Futures. Educ. Education Policy in Practice-critical Cultural Studies = Educ Policy Pract-cr Education Policy in Practice-critical Cultural Studies = Educ. Policy Pract-cr. Education Policy in Practice: Critical Cultural Studies = Educ Pol Pract Education Policy in Practice: Critical Cultural Studies = Educ. Pol. Pract. Education Politics and Public Life = Educ Polit Pub Life Education Politics and Public Life = Educ. Polit. Pub. Life Education, Professionalization and Social Representations: On The Transformation of Social Knowledge = Rout Int Stud Philos Education, Professionalization and Social Representations: On The Transformation of Social Knowledge = Rout. Int. Stud. Philos. Education Reforms in Ghana: Curriculum in Junior High Schools = Educ Compet Glob Wor Education Reforms in Ghana: Curriculum in Junior High Schools = Educ. Compet. Glob. Wor. Education, Science and Truth = Rout Int Stud Philos Education, Science and Truth = Rout. Int. Stud. Philos. Educator's update = Educ Update Edute 2009: Proceedings of The 5th Wseas/iasme International Conference On Educational Technologies = Rec Adv Comput Eng Edute 2009: Proceedings of The 5th Wseas/iasme International Conference On Educational Technologies = Rec. Adv. Comput. Eng. Edutech: Where Computer-aided Design Meets Computer-aided Learning = Int Fed Info Proc Edutech: Where Computer-aided Design Meets Computer-aided Learning = Int. Fed. Info. Proc. Edward Said and The Literary, Social, and Political World = Routl Stud Soc Polit Edward Said and The Literary, Social, and Political World = Routl. Stud. Soc. Polit. Edwin Muir Centenary Assessments = Assoc Scot Edwin Muir Centenary Assessments = Assoc. Scot. Eecc'97 - Proceedings of The Third Esa Electronic Components Conference = Esa Sp Publ Eecc'97 - Proceedings of The Third Esa Electronic Components Conference = Esa Sp. Publ. Ee-evaluation Engineering = Ee-eval Eng Ee-evaluation Engineering = Ee-eval. Eng. Eeg-emg-zeitschrift Fur Elektroenzephalographie Elektromyographie Und Verwandte Gebiete = Eeg-emg-z Elek Elekt Eeg-emg-zeitschrift Fur Elektroenzephalographie Elektromyographie Und Verwandte Gebiete = Eeg-emg-z. Elek. Elekt. EEG-EMG Zeitschrift fur Elektroenzephalographie, Elektromyographie und verwandte Gebiete = EEG EMG Z Elektroenzephalogr Elektromyogr Verwandte Geb EEG-EMG: Zeitschrift fur Elektroenzephalographie, Elektromyographie und Verwandte Gebiete = EEG EMG Z. Elektroenzephalogr. Elektromyogr. Verwandte Geb. Eei Bulletin-edison Electrical Institute = Eei Bull Edison Elec Eei Bulletin-edison Electrical Institute = Eei Bull. Edison. Elec. Eei Bulletin = Eei Bull Eei Bulletin = Eei Bull. E-engineering & Digital Enterprise Technology = Appl Mech Mater E-engineering & Digital Enterprise Technology = Appl. Mech. Mater. E-engineering & Digital Enterprise Technology Vii, Pts 1 and 2 = Appl Mech Mater E-engineering & Digital Enterprise Technology Vii, Pts 1 and 2 = Appl. Mech. Mater. E E Slutsky As Economist and Mathematician: Crossing The Limits of Knowledge = Routl Stud Hist Econ E E Slutsky As Economist and Mathematician: Crossing The Limits of Knowledge = Routl. Stud. Hist. Econ. Eesti Rakenduslingvistika Uhingu Aastaraamat = Eest Raken Uhin Aast Eesti Rakenduslingvistika Uhingu Aastaraamat = Eest. Raken. Uhin. Aast. Efce Event = Efce Event Efce Publications Series = Efce Publ S Efce Publications Series = Efce Publ. S. Effect-directed Analysis of Complex Environmental Contamination = Handb Environ Chem Effect-directed Analysis of Complex Environmental Contamination = Handb. Environ. Chem. Effective Access to Information = Prof Lib S Effective Access to Information = Prof. Lib. S. Effective and Efficient Organisations?: Government Export Promotion in Germany and The Uk From An Organisational Economics Perspective = Contrib Econ Effective and Efficient Organisations?: Government Export Promotion in Germany and The Uk From An Organisational Economics Perspective = Contrib. Econ. Effective Cadcam 91 = Proc Inst Mech Eng S Effective Cadcam 91 = Proc. Inst. Mech. Eng. S. Effective Cadcam = Proc Inst Mech Eng S Effective Cadcam = Proc. Inst. Mech. Eng. S. Effective clinical practice : ECP = Eff Clin Pract Effective Clinical Practice = Eff. Clin. Pract. Effective Computation Methods for Wave Propagation = Numer Insight Effective Computation Methods for Wave Propagation = Numer. Insight. Effective Education for Learners With Exceptionalities = Adv Spec Educ Effective Education for Learners With Exceptionalities = Adv. Spec. Educ. Effective Field Theories in Flavour Physics = Springer Tr Mod Phys Effective Field Theories in Flavour Physics = Springer. Tr. Mod. Phys. Effective Health Behavior in Older Adults = Societ Impact Aging Effective Health Behavior in Older Adults = Societ. Impact. Aging. Effective health care = Eff Health Care Effective Health Care = Eff. Health Care Effective Hemodiafiltration: New Methods = Contrib Nephrol Effective Hemodiafiltration: New Methods = Contrib. Nephrol. Effective Learning and Teaching in Higher Education = Effect Learn Teach H Effective Learning and Teaching in Higher Education = Effect. Learn. Teach. H. Effective Learning and Teaching in Modern Languages = Effect Learn Teach H Effective Learning and Teaching in Modern Languages = Effect. Learn. Teach. H. Effective Methods in Algebraic Geometry = Prog Math Effective Methods in Algebraic Geometry = Prog. Math. Effective Models for Low-dimensional Strongly Correlated Systems = Aip Conf Proc Effective Models for Low-dimensional Strongly Correlated Systems = Aip. Conf. Proc. Effectiveness of In-service Education and Training of Teachers and School Leaders = Eur Educ R Effectiveness of In-service Education and Training of Teachers and School Leaders = Eur. Educ. R. Effective Risk Communication: A Message-centered Approach = Food Microbiol Food Effective Risk Communication: A Message-centered Approach = Food. Microbiol. Food. Effective Tax Burden of Companies in European Regions: An International Comparison = Zew Econ Stud Effective Tax Burden of Companies in European Regions: An International Comparison = Zew. Econ. Stud. Effective Teaching for Intended Learning Outcomes in Science and Technology (metilost) = Educ Compet Glob Wor Effective Teaching for Intended Learning Outcomes in Science and Technology (metilost) = Educ. Compet. Glob. Wor. Effective Transition From Design to Production = Resource Manag-crc Effective Transition From Design to Production = Resource. Manag-crc. Effective Use of Human Resources : A Symposium On New Research Approaches = U Cal I Ind Effective Use of Human Resources : A Symposium On New Research Approaches = U. Cal. I. Ind. Effect of Affect in Organizational Settings = Res Emotion Organ Effect of Affect in Organizational Settings = Res. Emotion. Organ. Effect of Disorder and Defects in Ion-implanted Semiconductors : Electrical and Physicochemical Characterization = Semicond Semimet Effect of Disorder and Defects in Ion-implanted Semiconductors : Electrical and Physicochemical Characterization = Semicond. Semimet. Effect of Disorder and Defects in Ion-implanted Semiconductors : Electrical and Physicochemical Characterization = Semiconduct Semimet Effect of Disorder and Defects in Ion-implanted Semiconductors : Electrical and Physicochemical Characterization = Semiconduct. Semimet. Effect of Disorder and Defects in Ion-implanted Semiconductors : Optical and Photothermal Characterization = Semiconduct Semimet Effect of Disorder and Defects in Ion-implanted Semiconductors : Optical and Photothermal Characterization = Semiconduct. Semimet. Effects of Aggregates and Mineral Fillers On Asphalt Mixture Performance = Am Soc Test Mater Effects of Aggregates and Mineral Fillers On Asphalt Mixture Performance = Am. Soc. Test. Mater. Effects of Air Pollution On Forest Health and Biodiversity in Forests of The Carpathian Mountains = Nato Sci Ser I Life Effects of Air Pollution On Forest Health and Biodiversity in Forests of The Carpathian Mountains = Nato. Sci. Ser. I. Life. Effects of Construction On Structures = Geotech Sp Effects of Construction On Structures = Geotech. Sp. Effects of Crop Rotation On Potato Production in The Temperate Zones = Dev Plant Soil Sci Effects of Crop Rotation On Potato Production in The Temperate Zones = Dev. Plant. Soil. Sci. Effects of Drugs On Verbal Fluency = Lang Linguist Ser Effects of Drugs On Verbal Fluency = Lang. Linguist. Ser. Effects of Early Adversity On Neurobehavioral Development = Minn Sym Child Psych Effects of Early Adversity On Neurobehavioral Development = Minn. Sym. Child. Psych. Effects of Family Literacy Interventions On Children's Acquisition of Reading = Educ Compet Glob Wor Effects of Family Literacy Interventions On Children's Acquisition of Reading = Educ. Compet. Glob. Wor. Effects of Fatty Acids and Lipids in Health and Disease = World Rev Nutr Diet Effects of Fatty Acids and Lipids in Health and Disease = World. Rev. Nutr. Diet. Effects of Fire Management of Southwestern Natural Resources = Usda Rocky Effects of Fire Management of Southwestern Natural Resources = Usda. Rocky. Effects of Fire On Madrean Province Ecosystems - A Symposium Proceedings = Usda Rocky Effects of Fire On Madrean Province Ecosystems - A Symposium Proceedings = Usda. Rocky. Effects of Ginkgo Biloba Extract (egb 761) On Aging and Age-related Disorders = Adv Ginkgo Effects of Ginkgo Biloba Extract (egb 761) On Aging and Age-related Disorders = Adv. Ginkgo Effects of Ginkgo Biloba Extract (egb 761) On Neuronal Plasticity = Adv Ginkgo Effects of Ginkgo Biloba Extract (egb 761) On Neuronal Plasticity = Adv. Ginkgo Effects of Ginkgo Biloba Extract ( Egb 761 ) On The Central Nervous System = Adv Ginkgo Effects of Ginkgo Biloba Extract ( Egb 761 ) On The Central Nervous System = Adv. Ginkgo Effects of Habitat Fragmentation On Birds in Western Landscapes: Contrasts With Paradigms From The Eastern United States = Stud Avian Biol-ser Effects of Habitat Fragmentation On Birds in Western Landscapes: Contrasts With Paradigms From The Eastern United States = Stud. Avian. Biol-ser. Effects of Joint Incongruity On Articular Pressure Distribution and Subchondral Bone Remodeling = Adv Anat Embryol Cel Effects of Joint Incongruity On Articular Pressure Distribution and Subchondral Bone Remodeling = Adv. Anat. Embryol. Cel. Effects of Liberalizing World Agricultural Trade = Agr Issues Policies Effects of Liberalizing World Agricultural Trade = Agr. Issues. Policies. Effects of Low and Very Low Doses of Ionizing Radiation On Human Health, Proceedings = Int Congr Ser Effects of Low and Very Low Doses of Ionizing Radiation On Human Health, Proceedings = Int. Congr. Ser. Effects of Low-power Light On Biological Systems Ii, Proceedings Of = P Soc Photo-opt Ins Effects of Low-power Light On Biological Systems Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Effects of Low-power Light On Biological Systems Iv, Proceedings = P Soc Photo-opt Ins Effects of Low-power Light On Biological Systems Iv, Proceedings = P. Soc. Photo-opt. Ins. Effects of Low-power Light On Biological Systems, Proceedings Of = P Soc Photo-opt Ins Effects of Low-power Light On Biological Systems, Proceedings Of = P. Soc. Photo-opt. Ins. Effects of Low-power Light On Biological Systems V = P Soc Photo-opt Ins Effects of Low-power Light On Biological Systems V = P. Soc. Photo-opt. Ins. Effects of Mechanical Stiffness and Vibration On Wear = Am Soc Test Mater Effects of Mechanical Stiffness and Vibration On Wear = Am. Soc. Test. Mater. Effects of Nicotine On Biological Systems = Adv Phar Sc Effects of Nicotine On Biological Systems = Adv. Phar. Sc. Effects of Nicotine On Biological Systems Ii = Adv Phar Sc Effects of Nicotine On Biological Systems Ii = Adv. Phar. Sc. Effects of Product Quality and Design Criteria On Structural Integrity = Am Soc Test Mater Effects of Product Quality and Design Criteria On Structural Integrity = Am. Soc. Test. Mater. Effects of Radiation On Materials : 14th International Symposium, Vol 1 = Am Soc Test Mater Effects of Radiation On Materials : 14th International Symposium, Vol 1 = Am. Soc. Test. Mater. Effects of Radiation On Materials : 15th International Symposium = Am Soc Test Mater Effects of Radiation On Materials : 15th International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 16th International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 16th International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 18th International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 18th International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 19th International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 19th International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 20th International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 20th International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 21st International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 21st International Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 22nd Symposium = Am Soc Test Mater Effects of Radiation On Materials: 22nd Symposium = Am. Soc. Test. Mater. Effects of Radiation On Materials: 23rd International Symposium = Am Soc Test Mater Effects of Radiation On Materials: 23rd International Symposium = Am. Soc. Test. Mater. Effects of Scale On Interpretation and Management of Sediment and Water Quality = Iahs-aish P Effects of Scale On Interpretation and Management of Sediment and Water Quality = Iahs-aish. P. Effects of Space Weather On Technology Infrastructure = Nato Sci Ser Ii-math Effects of Space Weather On Technology Infrastructure = Nato. Sci. Ser. Ii-math. Effects of Space Weather On Technology Infrastructure = Nato Sci Ser Ii Math Effects of Space Weather On Technology Infrastructure = Nato. Sci. Ser. Ii. Math. Effects of The Application of Phosphorous Fertilizers On The Contamination By Uranium = Serb Ac Sci Effects of The Application of Phosphorous Fertilizers On The Contamination By Uranium = Serb. Ac. Sci. Effects of The Environment On The Initiation of Crack Growth = Am Soc Test Mater Effects of The Environment On The Initiation of Crack Growth = Am. Soc. Test. Mater. Effects of Therapy On Biology and Kinetics of The Residual Tumor, Part B : Clinical Aspects = Prog Clin Biol Res Effects of Therapy On Biology and Kinetics of The Residual Tumor, Part B : Clinical Aspects = Prog. Clin. Biol. Res. Effects of Therapy On Biology and Kinetics of The Residual Tumor, Pt A : Pre-clinical Aspects = Prog Clin Biol Res Effects of Therapy On Biology and Kinetics of The Residual Tumor, Pt A : Pre-clinical Aspects = Prog. Clin. Biol. Res. Effects of Urbanization On Stream Ecosystems = Am Fish S S Effects of Urbanization On Stream Ecosystems = Am. Fish. S. S. Efferent Auditory System = Sing Audiol Textbk Efferent Auditory System = Sing. Audiol. Textbk. Efficiency and Economics of Clinical Care and Research in Surgery = Langeng Arc Efficiency and Economics of Clinical Care and Research in Surgery = Langeng. Arc. Efficiency and Effectiveness of Xml Tools and Techniques and Data Integration Over The Web = Lect Notes Comput Sc Efficiency and Effectiveness of Xml Tools and Techniques and Data Integration Over The Web = Lect. Notes. Comput. Sc. Efficiency Instead of Justice: Searching for The Philosophical Foundations of The Economic Analysis of Law = Law Philos Libr Efficiency Instead of Justice: Searching for The Philosophical Foundations of The Economic Analysis of Law = Law Philos. Libr. Efficiency in The Public Sector = Stud Product Eff Efficiency in The Public Sector = Stud. Product. Eff. Efficiency, Justice and Care: Philosophical Reflections On Scarcity in Health Care = Int Libr Eth Law New Efficiency, Justice and Care: Philosophical Reflections On Scarcity in Health Care = Int. Libr. Eth. Law. New. Efficiency Measurement in Health and Health Care = Rout Int Stud Health Efficiency Measurement in Health and Health Care = Rout. Int. Stud. Health Efficiency Versus Sustainability in Dynamic Decision Making = Lect Notes Econ Math Efficiency Versus Sustainability in Dynamic Decision Making = Lect. Notes. Econ. Math. Efficient Algorithms: Essays Dedicated to Kurt Mehlhorn On The Occasion of His 60th Birthday = Lect Notes Comput Sc Efficient Algorithms: Essays Dedicated to Kurt Mehlhorn On The Occasion of His 60th Birthday = Lect. Notes. Comput. Sc. Efficient Approximation and Online Algorithms = Lect Notes Comput Sc Efficient Approximation and Online Algorithms = Lect. Notes. Comput. Sc. Efficient Graph Rewriting and Its Implementation = Lect Notes Comput Sc Efficient Graph Rewriting and Its Implementation = Lect. Notes. Comput. Sc. Efficient Numerical Methods for Non-local Operators: H2-matrix Compression, Algorithms and Analysis = Ems Tracts Math Efficient Numerical Methods for Non-local Operators: H2-matrix Compression, Algorithms and Analysis = Ems. Tracts. Math. Efficient Power Plants and Their Financing = Vdi Bericht Efficient Power Plants and Their Financing = Vdi. Bericht. Efficient Secure Two-party Protocols: Techniques and Constructions = Inform Sec Crypt Tex Efficient Secure Two-party Protocols: Techniques and Constructions = Inform. Sec. Crypt. Tex. Efficient Use and Management of Urban Water Supply (efficient 2005) = Wa Sci Technol Efficient Use and Management of Urban Water Supply (efficient 2005) = Wa. Sci. Technol. Efficient Use and Management of Water for Urban Supply = Wa Sci Technol Efficient Use and Management of Water for Urban Supply = Wa. Sci. Technol. Effluent and water treatment journal = Effluent Water Treat J Effluents From Alternative Demilitarization Technologies = Nato Sci S 1 Disarm Effluents From Alternative Demilitarization Technologies = Nato. Sci. S. 1. Disarm. Effluent Treatment and Waste Disposal = Inst Chem E Effluent Treatment and Waste Disposal = Inst. Chem. E. Effluent Treatment and Waste Minimisation = Inst Chem E Effluent Treatment and Waste Minimisation = Inst. Chem. E. Effluent & Water Treatment Journal = Effluent Water Treat Effluent & Water Treatment Journal = Effluent Water Treat. Efnudat: Measurements and Models of Nuclear Reactions = Epj Web Conf Efnudat: Measurements and Models of Nuclear Reactions = Epj. Web. Conf. e-Forschungsberichte des Deutschen Archäologischen Instituts = eDAI-F Efs Brochure Series = Efs Brochur Efs Brochure Series = Efs Brochur. Egeszsegtudomany = Egeszsegtudomany Egitim Arastirmalari-eurasian Journal of Educational Research = Egit Arast Egitim Arastirmalari-eurasian Journal of Educational Research = Egit. Arast. Egitim Ve Bilim-education and Science = Egit Bilim Egitim Ve Bilim-education and Science = Egit. Bilim. Egitto e Vicino Oriente = EgVicOr Egitto e Vicino Oriente = EVO E-governance: Managing Or Governing = Routl Ebusiness E-governance: Managing Or Governing = Routl. Ebusiness. E-government in Europe: Re-booting The State = Routl Adv Eur Polit E-government in Europe: Re-booting The State = Routl. Adv. Eur. Polit. E-government: Towards Electronic Democracy, Proceedings = Lect Notes Comput Sc E-government: Towards Electronic Democracy, Proceedings = Lect. Notes. Comput. Sc. Egypt At Its Origins = Orient Lovan Anal Egypt At Its Origins = Orient. Lovan. Anal. Egypte/monde arabe = Egypte Monde Arabe Egyptian Archaeology. The Bulletin of the Egypt Exploration Society = EgA Egyptian Cultural Icons in Midrash = Stud Judaica Egyptian Cultural Icons in Midrash = Stud. Judaica. Egyptian dental journal = Egypt Dent J Egyptian Dental Journal = Egypt. Dent. J. Egyptian Journal of Analyical Chemistry = Egypt. J. Anal. Chem. Egyptian journal of bilharziasis = Egypt J Bilharz Egyptian Journal of Bilharziasis = Egypt. J. Bilharz. Egyptian Journal of Biological Pest Control = Egypt J Biol Pest Co Egyptian Journal of Biological Pest Control = Egypt. J. Biol. Pest Co. Egyptian Journal of Chemistry = Egypt J Chem Egyptian Journal of Chemistry = Egypt. J. Chem. Egyptian journal of genetics and cytology = Egypt J Genet Cytol Egyptian Journal of Genetics and Cytology = Egypt J Genet Cytol Egyptian Journal of Genetics and Cytology = Egypt. J. Genet. Cytol. Egyptian Journal of Psychiatry = Egypt. J. Psychiatry Egyptian medical journal = Egypt Med J Egypt's Culture Wars: Politics and Practice = Routl Adv Midd E Isl Egypt's Culture Wars: Politics and Practice = Routl. Adv. Midd. E. Isl. Ehac'09: Proceedings of The 8th Wseas International Conference On Electronics, Hardware, Wireless and Optical Communications = Ma Comput Sci Eng Ehac'09: Proceedings of The 8th Wseas International Conference On Electronics, Hardware, Wireless and Optical Communications = Ma. Comput. Sci. Eng. Ehac'09: Proceedings of The 8th Wseas International Conference On Electronics, Hardware, Wireless and Optical Communications = Math Comput Sci Eng Ehac'09: Proceedings of The 8th Wseas International Conference On Electronics, Hardware, Wireless and Optical Communications = Math. Comput. Sci. Eng. Ehac'09: Proceedings of The 9th Wseas International Conference On Electronics, Hardware, Wireless and Optional Communications = Ma Comput Sci Eng Ehac'09: Proceedings of The 9th Wseas International Conference On Electronics, Hardware, Wireless and Optional Communications = Ma. Comput. Sci. Eng. Ehealth Beyond The Horizon - Get It There = St Heal T Ehealth Beyond The Horizon - Get It There = St. Heal. T. Ehealth: Combining Health Telematics, Telemedicine, Biomedical Engineering and Bioinformatics to The Edge = St Heal T Ehealth: Combining Health Telematics, Telemedicine, Biomedical Engineering and Bioinformatics to The Edge = St. Heal. T. E-health for Diabetes in The Western Pacific = Int Congr Ser E-health for Diabetes in The Western Pacific = Int. Congr. Ser. Ehealth international = eHealth Int EHP toxicogenomics : journal of the National Institute of Environmental Health Sciences = EHP Toxicogenomics Ehrlichiosis = Curr T Vet Ehrlichiosis = Curr. T. Vet. Ehv Ac Undergrounding Electrical Power- Performance and Planning = Power Syst Ehv Ac Undergrounding Electrical Power- Performance and Planning = Power. Syst. EIB Papers=EIB Pap. Eichsfelder Heimathefte = Eichsfelder Heimath Eicosanoids and Other Bioactive Lipids in Cancer and Radiation Injury = Dev Oncol Eicosanoids and Other Bioactive Lipids in Cancer and Radiation Injury = Dev. Oncol. Eicosanoids and Other Bioactive Lipids in Cancer, Imflammation and Radiation Injury, 4 = Adv Exp Med Biol Eicosanoids and Other Bioactive Lipids in Cancer, Imflammation and Radiation Injury, 4 = Adv. Exp. Med. Biol. Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury 2, Pts A and B = Adv Exp Med Biol Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury 2, Pts A and B = Adv. Exp. Med. Biol. Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury 3 = Adv Exp Med Biol Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury 3 = Adv. Exp. Med. Biol. Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury, 5 = Adv Exp Med Biol Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation, and Radiation Injury, 5 = Adv. Exp. Med. Biol. Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation and Radiation-injury = Dev Oncol Eicosanoids and Other Bioactive Lipids in Cancer, Inflammation and Radiation-injury = Dev. Oncol. Eicosanoids = Eicosanoids Eicosanoids = Nato Adv Sci Inst Se Eicosanoids = Nato. Adv. Sci. Inst. Se. Eigentumsschutz Und Sozialversicherung: Eine Rechtsvergleichende Analyse Anhand Der Rechtsprechung Des Bundesverfassungsgerichts Und Des Ungarischen Verfassungsgerichts = Beitr Ausl Offentl R Eigentumsschutz Und Sozialversicherung: Eine Rechtsvergleichende Analyse Anhand Der Rechtsprechung Des Bundesverfassungsgerichts Und Des Ungarischen Verfassungsgerichts = Beitr. Ausl. Offentl. R. Eigenvalues, Embeddings and Generalised Trigonometric Functions = Lect Notes Math Eigenvalues, Embeddings and Generalised Trigonometric Functions = Lect. Notes. Math. Eighteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2002 = P Ieee Semicond Ther Eighteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2002 = P. Ieee Semicond. Ther. Eighteenth Annual International Computer Software & Applications Conference (compsac 94) = P Int Comp Softw App Eighteenth Annual International Computer Software & Applications Conference (compsac 94) = P. Int. Comp. Softw. App. Eighteenth-century Authorship and The Play of Fiction: Novels and The Theater, Haywood to Austen = Rout St Eight Cn Lit Eighteenth-century Authorship and The Play of Fiction: Novels and The Theater, Haywood to Austen = Rout. St. Eight. Cn. Lit. Eighteenth-century Fiction = Eighteenth-century F Eighteenth-century Fiction = Eighteenth-century F. Eighteenth-century Ireland = Eighteenth Century Irel Eighteenth-century Life = Eighteenth-cent Life Eighteenth-century Life = Eighteenth-cent. Life Eighteenth century life = Eighteenth Century Life Eighteenth century (Lubbock, Tex.) = Eighteenth Century (Lubbock) Eighteenth-century Music = Eighteenth-cent Musi Eighteenth-century Music = Eighteenth-cent. Musi. Eighteenth-century Studies = Eighteenth-cent Stud Eighteenth-century Studies = Eighteenth-cent. Stud. Eighteenth-century studies = Eighteenth Century Stud Eighteenth Century-theory and Interpretation = Eighteenth Cent-theo Eighteenth Century-theory and Interpretation = Eighteenth Cent-theo. Eighteenth International Conference On Infrared and Millimeter Waves = P Soc Photo-opt Ins Eighteenth International Conference On Infrared and Millimeter Waves = P. Soc. Photo-opt. Ins. Eighteenth Lacus Forum 1991 = Lacus Forum Eighteenth Nastran Users Colloquium = Nasa Conf P Eighteenth Nastran Users Colloquium = Nasa. Conf. P. Eighth Annual Ieee Symposium On Logic in Computer Science : Proceedings = Ieee S Log Eighth Annual Ieee Symposium On Logic in Computer Science : Proceedings = Ieee S. Log. Eighth European Conference On Mixing = Inst Chem E Eighth European Conference On Mixing = Inst. Chem. E. Eighth Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Eighth Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Eighth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Eighth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Eighth Ieee International Symposium On Computers and Communication, Vols I and Ii, Proceedings = Ieee Symp Comp Commu Eighth Ieee International Symposium On Computers and Communication, Vols I and Ii, Proceedings = Ieee Symp. Comp. Commu. Eighth Ieee International Vacuum Electronics Conference = Ieee Int Vac Elect C Eighth Ieee International Vacuum Electronics Conference = Ieee Int. Vac. Elect. C. Eighth Ieee Symposium On Computer-based Medical Systems = Comp Med Sy Eighth Ieee Symposium On Computer-based Medical Systems = Comp. Med. Sy. Eighth International Conference On Antennas and Propagation, Pts 1 and 2 = Iee Conf Publ Eighth International Conference On Antennas and Propagation, Pts 1 and 2 = Iee. Conf. Publ. Eighth International Conference On Automotive Electronics = Iee Conf Publ Eighth International Conference On Automotive Electronics = Iee. Conf. Publ. Eighth International Conference On Dielectric Materials, Measurements and Applications = Iee Conf Publ Eighth International Conference On Dielectric Materials, Measurements and Applications = Iee. Conf. Publ. Eighth International Conference On Electrical Machines and Drives = Iee Conf Publ Eighth International Conference On Electrical Machines and Drives = Iee. Conf. Publ. Eighth International Conference On Electromagnetic Compatibility = Iee Conf Publ Eighth International Conference On Electromagnetic Compatibility = Iee. Conf. Publ. Eighth International Conference On Grey Literature, Gl8 Conference Proceedings = Gl Conference Ser Eighth International Conference On Grey Literature, Gl8 Conference Proceedings = Gl. Conference Ser. Eighth International Conference On Information Visualisation, Proceedings = Ieee Infor Vis Eighth International Conference On Information Visualisation, Proceedings = Ieee. Infor. Vis. Eighth International Conference On Laser and Laser Information Technologies = Proc Spie Eighth International Conference On Laser and Laser Information Technologies = Proc. Spie. Eighth International Conference On Laser and Laser Information Technologies = P Soc Photo-opt Ins Eighth International Conference On Laser and Laser Information Technologies = P. Soc. Photo-opt. Ins. Eighth International Conference On Low-volume Roads 2003, Vols 1 and 2 = Transport Res Rec Eighth International Conference On Low-volume Roads 2003, Vols 1 and 2 = Transport. Res. Rec. Eighth International Conference On Nonlinear Optics of Liquid and Photorefractive Crystals = P Soc Photo-opt Ins Eighth International Conference On Nonlinear Optics of Liquid and Photorefractive Crystals = P. Soc. Photo-opt. Ins. Eighth International Conference On Power Electronics and Variable Speed Drives = Iee Conf Publ Eighth International Conference On Power Electronics and Variable Speed Drives = Iee. Conf. Publ. Eighth International Conference On Road Traffic Monitoring and Control = Iee Conf Publ Eighth International Conference On Road Traffic Monitoring and Control = Iee. Conf. Publ. Eighth International Conference On Software Engineering for Telecommunication Systems and Services = Iee Conf Publ Eighth International Conference On Software Engineering for Telecommunication Systems and Services = Iee. Conf. Publ. Eighth International Conference On Solid State Lighting = Proc Spie Eighth International Conference On Solid State Lighting = Proc. Spie. Eighth International Conference On Solid State Lighting = P Soc Photo-opt Ins Eighth International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Eighth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc Spie Eighth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc. Spie. Eighth International Conference On Video, Audio and Data Recording = Iee Conf Publ Eighth International Conference On Video, Audio and Data Recording = Iee. Conf. Publ. Eighth International Mine Ventilation Congress = Australas I Min Met Eighth International Mine Ventilation Congress = Australas. I. Min. Met. Eighth International Symposium On Atmospheric and Ocean Optics: Atmospheric Physics = Proc Spie Eighth International Symposium On Atmospheric and Ocean Optics: Atmospheric Physics = Proc. Spie. Eighth International Symposium On Atmospheric and Ocean Optics: Atmospheric Physics = P Soc Photo-opt Ins Eighth International Symposium On Atmospheric and Ocean Optics: Atmospheric Physics = P. Soc. Photo-opt. Ins. Eighth International Symposium On Gas Flow and Chemical Lasers, Pts 1 and 2 = P Soc Photo-opt Ins Eighth International Symposium On Gas Flow and Chemical Lasers, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Eighth International Symposium On Laser Metrology = Proc Spie Eighth International Symposium On Laser Metrology = Proc. Spie. Eighth International Symposium On Laser Metrology = P Soc Photo-opt Ins Eighth International Symposium On Laser Metrology = P. Soc. Photo-opt. Ins. Eighth International Symposium On Optical Storage and 2008 International Workshop On Information Data Storage = Proc Spie Eighth International Symposium On Optical Storage and 2008 International Workshop On Information Data Storage = Proc. Spie. Eighth International Symposium On Optical Storage and 2008 International Workshop On Information Data Storage = P Soc Photo-opt Ins Eighth International Symposium On Optical Storage and 2008 International Workshop On Information Data Storage = P. Soc. Photo-opt. Ins. Eighth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Eighth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Eighth Mexico-texas Conference On Astrophysics: Energetics of Cosmic Plasmas = Rev Mex Ast Astr Eighth Mexico-texas Conference On Astrophysics: Energetics of Cosmic Plasmas = Rev. Mex. Ast. Astr. Eighth Mill Operators' Conference, Proceedings = Australas I Min Met Eighth Mill Operators' Conference, Proceedings = Australas. I. Min. Met. Eighth National Space Engineering Symposium 1993, Proceedings = Inst Eng A Eighth National Space Engineering Symposium 1993, Proceedings = Inst. Eng. A. Eighth Pacific Rim Conference On Stellar Astrophysics: A Tribute to Kam-ching Leung = Astr Soc P Eighth Pacific Rim Conference On Stellar Astrophysics: A Tribute to Kam-ching Leung = Astr. Soc. P. Eight International Conference On Quality Control By Artificial Vision = Proc Spie Eight International Conference On Quality Control By Artificial Vision = Proc. Spie. Eight International Conference On Quality Control By Artificial Vision = P Soc Photo-opt Ins Eight International Conference On Quality Control By Artificial Vision = P. Soc. Photo-opt. Ins. Eight International Symposium On Plant Bioregulators in Fruit Production = Acta Hortic Eight International Symposium On Plant Bioregulators in Fruit Production = Acta. Hortic. Eigse-a Journal of Irish Studies = Eigse-j Irish Stud Eigse-a Journal of Irish Studies = Eigse-j. Irish Stud. Eigth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P Soc Photo-opt Ins Eigth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P. Soc. Photo-opt. Ins. Eikasmos: quaderni bolognesi di filologia classica = Eikasmos Eikasmos-quaderni Bolognesi Di Filologia Classica = Eikasmos Eikasmos-quaderni Bolognesi Di Filologia Classica = Eikasmos. Einblicke in die Wissenschaft = Einblicke Wiss. Einfuhrung in Die Phonetik, 3. Auflage = Degruyter Studienb Einfuhrung in Die Phonetik, 3. Auflage = Degruyter. Studienb. Einfuhrung in Die Sprechakttheorie, 5. Auflage = Ger Arbeitsheft Einfuhrung in Die Sprechakttheorie, 5. Auflage = Ger. Arbeitsheft. Einstein, 1905-2005: Poincare Seminar 2005 = Prog Math P Einstein, 1905-2005: Poincare Seminar 2005 = Prog. Math. P. Einstein, 1905-2005: Poincare Seminar 2005 = Prog Math Phys Einstein, 1905-2005: Poincare Seminar 2005 = Prog. Math. Phys. Einstein Journal of Biology and Medicine = Einstein J. Biol. Med. Einstein Meets Magritte-an Interdisciplinary Reflection On Science, Nature, Art, Human Action and Society = Einstein Meet Magrit Einstein Meets Magritte-an Interdisciplinary Reflection On Science, Nature, Art, Human Action and Society = Einstein Meet. Magrit. Einstein Meets Magritte-an Interdisciplinary Reflection On Science Nature Art Human Action and Society = Einstein Meets Magri Einstein Meets Magritte-an Interdisciplinary Reflection On Science Nature Art Human Action and Society = Einstein Meets Magri. Einstein Metrics and Yang-mills Connections = Lect Notes Pure Appl Einstein Metrics and Yang-mills Connections = Lect. Notes. Pure. Appl. Einstein Quarterly Journal of Biology and Medicine = Einstein Q. J. Biol. Med. Einstein Relation in Compound Semiconductors and Their Nanostructures = Springer Ser Mater S Einstein Relation in Compound Semiconductors and Their Nanostructures = Springer. Ser. Mater. S. Einstein Studies = Einstein St Einstein Studies = Einstein St. Einstein Studies = Einstein Stud. Eire-Ireland; a journal of Irish studies = Eire Irel Eire-ireland = Eire-ireland Eirene: studia Graeca et Latina = Eirene Eirene. Studia Graeca et Latina = Eirene Eirma Conference Papers = Eirma Conf Eirma Conference Papers = Eirma Conf. [Eisei dobutsu] Japanese journal of sanitary zoology = Eisei Dobutsu Eisei Kagaku-japanese Journal of Toxicology and Environmental Health = Eisei Kagaku Eisei Kagaku-japanese Journal of Toxicology and Environmental Health = Eisei Kagaku. Eisei Shikenjo hokoku. Bulletin of National Institute of Hygienic Sciences = Eisei Shikenjo Hokoku Eisei Shikenjo Hokoku (Bulletin of National Institute of Hygienic Sciences) = Eisei Shikenjo Hokoku Eisei Shikenjo Hokoku. Bulletin of National Institute Of Hygienic Sciences=Eisei Shikenjo Hokoku;; Eisenhower and The German Pows = Publ Eisenh Eisenhower and The German Pows = Publ. Eisenh. Eisenhower Center Studies On War and Peace = Eisen Ctr Stud Eisenhower Center Studies On War and Peace = Eisen. Ctr. Stud. Eisenhower = Great Gen Eisenhower = Great. Gen. Eisenstein Series and Applications = Prog Math Eisenstein Series and Applications = Prog. Math. Eiss/kluwer Law International Series = Eiss Kluw Law Int S Eiss/kluwer Law International Series = Eiss. Kluw. Law Int. S. Eiszeitalter und Gegenwart = Eiszeitalt. Ggw. E-ITV: Educational and Industrial Television = EITV E-ITV = EITV e-Jahresberichte des Deutschen Archäologischen Instituts = eDAI-J Ejc Supplements = Ejc Suppl Ejc Supplements = Ejc Suppl. Ejd Book Series = Ejd Book Ser Ejd Book Series = Ejd Book Ser. Ejectors and Their Usefulness in The Energy Savings = Energ Sci Eng Tech Ejectors and Their Usefulness in The Energy Savings = Energ. Sci. Eng. Tech. Ejhp Practice = Ejhp Pract Ejhp Practice = Ejhp Pract. E-journal Invasion: A Catalogers Guide to Survival = Chandos Inf Prof Ser E-journal Invasion: A Catalogers Guide to Survival = Chandos. Inf. Prof. Ser. E-journal of Chemistry = E-j Chem E-journal of Chemistry = E-j. Chem. E-Journal of Chemistry = E-J. Chem. E-Journal of Reservoir Engineering = E-J. Reservoir Eng. e-Journal of Surface Science and Nanotechnology = e-J. Surf. Sci. Nanotechnol. E-journals Access and Management = Rout Stud Lib Inform E-journals Access and Management = Rout. Stud. Lib. Inform. Ejso = Ejso Ejso = Ejso-eur J Surg Onc Ejso = Ejso-eur. J. Surg. Onc. E. Kalinka (Hrsg.), Tituli Asiae Minoris (Wien 1901--­1941) = TAM Ekc2008: Proceedings of The Eu-korea Conference On Science and Technology = Springer Proc Phys Ekc2008: Proceedings of The Eu-korea Conference On Science and Technology = Springer. Proc. Phys. Ekc 2009 Proceedings of Eu-korea Conference On Science and Technology = Springer Proc Phys Ekc 2009 Proceedings of Eu-korea Conference On Science and Technology = Springer. Proc. Phys. Ekistics = Ekistic Ekistics = Ekistic. Ekistics; reviews on the problems and science of human settlements = Ekistics Ekistics-the Problems and Science of Human Settlements = Ekistics Ekistics-the Problems and Science of Human Settlements = Ekistics. Eklem Hastaliklari Ve Cerrahisi-joint Diseases and Related Surgery = Eklem Hast Cerrahisi Eklem Hastaliklari Ve Cerrahisi-joint Diseases and Related Surgery = Eklem Hast. Cerrahisi. Ekologia-bratislava = Ekol Bratislava Ekologia-bratislava = Ekol. Bratislava. Ekologia Csfr = Ekol Csfr Ekologia Csfr = Ekol. Csfr Ekologia (CSSR) = Ekologia (CSSR) Ekologia Polska-polish Journal of Ecology = Ekol Pol-pol J Ecol Ekologia Polska-polish Journal of Ecology = Ekol. Pol-pol. J. Ecol. Ekologiia = Ekologiia Ekoloji = Ekoloji Ekonomia=Ekonomia Ekonomicko-matematicky Obzor = Ekon Mat Obz Ekonomicko-matematicky Obzor = Ekon. Mat. Obz. Ekonomicko-Matematicky Obzor=Ekon.-Mat. Obzor Ekonomicky casopis = Ekon Cas Ekonomicky Casopis = Ekon Cas Ekonomicky Casopis = Ekon. Cas. Ekonomi dan Keuangan Indonesia = Ekon Keuangan Indones Ekonomika Radvanskoyi Ukhayeny=Ekonomika Radvanskoyi Ukhayeny Ekonomika Sovetskoi Ukrainy = Ekon Sov Ukr Ekonomiska Samfundets Tidskrift = Ekon Samf Tidskr Ekonomiska Samfundets Tidskrift = Ekon. Samf. Tidskr. Ekonomiska Samfundets Tidskrift=Ekon. Samfundets Tidskr. Ekonomista = Ekonomista Ekonomska Istrazivanja-economic Research = Ekon Istraz Ekonomska Istrazivanja-economic Research = Ekon. Istraz. Ekonomska Istrazivanja=Ekon. Istrazivanja Ekonomska misao = Ekon Misao Ekonomska Misao i Praksa=Ekon. Misao Praksa Ekonomska revija = Ekon Revija Ekonomski pregled = Ekon Pregl Ekotekhnologii i Resursosberezhenie = Ekotekhnol. Resursosberezhenie Eksperimental'naia i klinicheskaia farmakologiia = Eksp Klin Farmakol Eksperimentalnaia i Klinicheskaia Farmakologiia = Eksp. Klin. Farmakol. Eksperimentalnaia I Klinicheskaia Farmakologiia=Eksp Klin Farmakol;; Eksperimentalnaia i Klinicheskaia Gastroenterologiia = Eksp. Klin. Gastroenterol. Eksperimental'naia khirurgiia = Eksp Khirurgiia Eksperimental'naia khirurgiia i anesteziologiia = Eksp Khir Anesteziol Eksperimentalnaia Khirurgiia i Anesteziologiia = Eksp. Khir. Anesteziol. Eksperimental'naia onkologiia = Eksp Onkol Eksperimentalnaia Onkologiia = Eksp. Onkol. Eksperimentalna meditsina i morfologiia = Eksp Med Morfol Eksperimentalna Meditsina i Morfologiia = Eksp. Med. Morfol. Eksperimental'naya i Klinicheskaya Farmakologiya = Eksp. Klin. Farmakol. Eksperimentalnaya Onkologiya = Eksp Onkol Eksperimentalnaya Onkologiya = Eksp. Onkol. Eksploatacja I Niezawodnosc-maintenance and Reliability = Eksploat Niezawodn Eksploatacja I Niezawodnosc-maintenance and Reliability = Eksploat. Niezawodn. Ekstasis = Ekstasis Elaborating Professionalism: Studies in Practice and Theory = Innov Chang Prof Edu Elaborating Professionalism: Studies in Practice and Theory = Innov. Chang. Prof. Edu. Elachistine Moths of Australia: (lepidoptera: Gelechioidea: Elachistidae) = Monogr Aust Lepidopt Elachistine Moths of Australia: (lepidoptera: Gelechioidea: Elachistidae) = Monogr. Aust. Lepidopt. Elastic Filaments of The Cell = Adv Exp Med Biol Elastic Filaments of The Cell = Adv. Exp. Med. Biol. Elastic Multibody Dynamics: A Direct Ritz Approach = Intel Syst Contr Aut Elastic Multibody Dynamics: A Direct Ritz Approach = Intel. Syst. Contr. Aut. Elastic-plastic Fracture Test Methods : The Users Experience ( Second Volume ) = Am Soc Test Mater Elastic-plastic Fracture Test Methods : The Users Experience ( Second Volume ) = Am. Soc. Test Mater. Elastic Waves in Composite Media and Structures = Mech Eng-crc Elastic Waves in Composite Media and Structures = Mech. Eng-crc. Elastomere Friction: Theory, Experiment and Simulation = Lect Notes Appl Comp Elastomere Friction: Theory, Experiment and Simulation = Lect. Notes. Appl. Comp. Elastomerics = Elastomerics Elastoplasticity Theory = Lect Notes Appl Comp Elastoplasticity Theory = Lect. Notes. Appl. Comp. E law : Murdoch University electronic journal of law = E Law El Caribe contemporaneo = Caribe Contemp El Cooperador dental; cooperativismo, informacion y ciencia odontologica = Coop Dent (B Aires) Eldercare Technology for Clinical Practitioners = Aging Med Eldercare Technology for Clinical Practitioners = Aging. Med. Elderly care = Elder Care Elderly Care = Elder. Care El Dia medico = Dia Med Electing to Fight: Why Emerging Democracies Go to War = Bcsia Stud Int Secur Electing to Fight: Why Emerging Democracies Go to War = Bcsia. Stud. Int. Secur. Elections As Popular Culture in Asia = Polit Asia Elections As Popular Culture in Asia = Polit. Asia Elections, Parties and Political Traditions = Ger Hist P Elections, Parties and Political Traditions = Ger. Hist. P. Electoral Studies = Elect Stud Electoral Studies = Elect. Stud. Electoral Systems and Political Transformation in Post-communist Europe = One Eur Several Electoral Systems and Political Transformation in Post-communist Europe = One. Eur. Several. Electrical and Computer Engineering-a Series of Reference Books and Textbooks = Electr Comput Eng Electrical and Computer Engineering-a Series of Reference Books and Textbooks = Electr. Comput. Eng. Electrical and Computer Engineering = Ele Com Eng Electrical and Computer Engineering = Ele. Com. Eng. Electrical and Computer Engineering Series = Ele Com Eng Electrical and Computer Engineering Series = Ele. Com. Eng. Electrical and Control Technologies = Elect Cont Tech Electrical and Control Technologies = Elect. Cont. Tech. Electrical and Related Properties of Organic Solids = Nato Asi 3 High Tech Electrical and Related Properties of Organic Solids = Nato. Asi. 3. High. Tech. Electrical Bioimpedance Methods: Applications to Medicine and Biotechnology = Ann Ny Acad Sci Electrical Bioimpedance Methods: Applications to Medicine and Biotechnology = Ann. Ny. Acad. Sci. Electrical Communication = Electr Commun Electrical Communication = Electr. Commun. Electrical Contacts-ieee Holm Conference On Electrical Contacts = Electr Contact Electrical Contacts-ieee Holm Conference On Electrical Contacts = Electr. Contact. Electrical Engineering and Applied Signal Processing Series = Electr Eng Appl Sign Electrical Engineering and Applied Signal Processing Series = Electr. Eng. Appl. Sign. Electrical Engineering and Electromagnetics Vi = Adv Elect Electr Eng Electrical Engineering and Electromagnetics Vi = Adv. Elect. Electr. Eng. Electrical Engineering and Electronics = Elec. Engrg. Electron. Electrical Engineering Developments = Electr Eng Dev Electrical Engineering Developments = Electr. Eng. Dev. Electrical Engineering = Electr Eng Electrical Engineering = Electr. Eng. Electrical Engineering Handbook Series = Electr Eng Handb Ser Electrical Engineering Handbook Series = Electr. Eng. Handb. Ser. Electrical Engineering Ii = Vdi Bericht Electrical Engineering Ii = Vdi. Bericht. Electrical Engineering in Japan = Electr Eng Jpn Electrical Engineering in Japan = Electr. Eng. Jpn. Electrical Injury: A Multidisciplinary Approach to Therapy, Prevention, and Rehabilitation = Ann Ny Acad Sci Electrical Injury: A Multidisciplinary Approach to Therapy, Prevention, and Rehabilitation = Ann. Ny. Acad. Sci. Electrical Insulating Materials: International Issues = Am Soc Test Mater Electrical Insulating Materials: International Issues = Am. Soc. Test. Mater. Electrically Based Microstructural Characterization Iii = Mater Res Soc Symp P Electrically Based Microstructural Characterization Iii = Mater. Res. Soc. Symp. P. Electrically Based Microstructural Characterization Ii = Mater Res Soc Symp P Electrically Based Microstructural Characterization Ii = Mater. Res. Soc. Symp. P. Electrically Based Microstructural Characterization = Mater Res Soc Symp P Electrically Based Microstructural Characterization = Mater. Res. Soc. Symp. P. Electrical, Optical, and Magnetic Properties of Organic Solid State Materials Iii = Mater Res Soc Symp P Electrical, Optical, and Magnetic Properties of Organic Solid State Materials Iii = Mater. Res. Soc. Symp. P. Electrical, Optical, and Magnetic Properties of Organic Solid-state Materials Iv = Mater Res Soc Symp P Electrical, Optical, and Magnetic Properties of Organic Solid-state Materials Iv = Mater. Res. Soc. Symp. P. Electrical, Optical, and Magnetic Properties of Organic Solid State Materials = Mater Res Soc Symp P Electrical, Optical, and Magnetic Properties of Organic Solid State Materials = Mater. Res. Soc. Symp. P. Electrical Properties of Oxide Materials = Key Eng Mat Electrical Properties of Oxide Materials = Key. Eng. Mat. Electrical Properties of Oxide Materials = Key Eng Mater Electrical Properties of Oxide Materials = Key. Eng. Mater. Electrical Resistivity of Thin Metal Films = Springer Tr Mod Phys Electrical Resistivity of Thin Metal Films = Springer. Tr. Mod. Phys. Electrical Review = Electr Rev-london Electrical Review = Electr. Rev-london. Electrical Technology = Electr Technol+ Electrical Technology = Electr. Technol+.+ Electrical Technology Russia = Electr Technol Russ+ Electrical Technology Russia = Electr. Technol. Russ+.+ Electrical World = Electr World Electrical World = Electr. World Electric Field-induced Effects On Neuronal Cell Biology Accompanying Dielectrophoretic Trapping = Adv Anat Embryol Cel Electric Field-induced Effects On Neuronal Cell Biology Accompanying Dielectrophoretic Trapping = Adv. Anat. Embryol. Cel. Electric Field Phenomena in Biological Systems = Iop Short Meet Serie Electric Field Phenomena in Biological Systems = Iop. Short. Meet. Serie. Electric Fields in Composite Dielectrics and Their Applications = Power Syst Electric Fields in Composite Dielectrics and Their Applications = Power. Syst. Electric Furnace Conference - Proceedings = Elect Furn Conf Proc Electric Furnace Conference - Proceedings = Elect. Furn. Conf. Proc. Electric Machines and Electromechanics = Electr Mach Electrom Electric Machines and Electromechanics = Electr. Mach. Electrom. Electric Machines and Power Systems = Electr Mach Pow Syst Electric Machines and Power Systems = Electr. Mach. Pow. Syst. Electric Power Components and Systems = Electr Pow Compo Sys Electric Power Components and Systems = Electr. Pow. Compo. Sys. Electric Power Components & Systems = Electr. Power Compon. Syst. Electric Power Quality = Power Syst Electric Power Quality = Power Syst. Electric Power System Planning: Issues, Algorithms and Solutions = Power Syst Electric Power System Planning: Issues, Algorithms and Solutions = Power Syst. Electric Power Systems Research = Electr Pow Syst Res Electric Power Systems Research = Electr. Pow. Syst. Res. Electric Power Systems Reserch = Electr. Power Syst. Res. Electrified Interfaces in Physics, Chemistry and Biology = Nato Adv Sci I C-mat Electrified Interfaces in Physics, Chemistry and Biology = Nato. Adv. Sci. I. C-mat. Electroactive Polymer Actuators and Devices (eapad) 2007 = Proc Spie Electroactive Polymer Actuators and Devices (eapad) 2007 = Proc. Spie. Electroactive Polymer Actuators and Devices (eapad) 2007 = P Soc Photo-opt Ins Electroactive Polymer Actuators and Devices (eapad) 2007 = P. Soc. Photo-opt. Ins. Electroactive Polymer Actuators and Devices (eapad) 2008 = Proc Spie Electroactive Polymer Actuators and Devices (eapad) 2008 = Proc. Spie. Electroactive Polymer Actuators and Devices (eapad) 2010 = Proc Spie Electroactive Polymer Actuators and Devices (eapad) 2010 = Proc. Spie. Electroactive Polymer Actuators and Devices (eapad) 2010 = P Soc Photo-opt Ins Electroactive Polymer Actuators and Devices (eapad) 2010 = P. Soc. Photo-opt. Ins. Electroactive Polymer Actuators and Devices (eapad) 2011 = Proc Spie Electroactive Polymer Actuators and Devices (eapad) 2011 = Proc. Spie. Electroactive Polymer Gel Robots = Springer Trac Adv Ro Electroactive Polymer Gel Robots = Springer. Trac. Adv. Ro. Electroactive Polymers and Rapid Prototyping = Mater Res Soc Symp P Electroactive Polymers and Rapid Prototyping = Mater. Res. Soc. Symp. P. Electroactive Polymers (eap) = Mater Res Soc Symp P Electroactive Polymers (eap) = Mater. Res. Soc. Symp. P. Electroactive Polymers for Corrosion Control = Acs Sym Ser Electroactive Polymers for Corrosion Control = Acs. Sym. Ser. Electroanalysis = Electroanal Electroanalysis = Electroanal. Electroanalysis = Electroanalysis Electroanalysis (New York) = Electroanalysis Electroanalytical Chemistry: A Series of Advances, Vol 19 = Electroanal Chem Electroanalytical Chemistry: A Series of Advances, Vol 19 = Electroanal. Chem. Electroanalytical Chemistry = Electroanal Chem Electroanalytical Chemistry = Electroanal. Chem. Electroanalytical Chemistry, Vol 20 = Electroanal Chem Electroanalytical Chemistry, Vol 20 = Electroanal. Chem. Electroanalytical Chemistry, Vol 21 = Electroanal Chem Electroanalytical Chemistry, Vol 21 = Electroanal. Chem. Electroanalytical Chemistry, Vol 23 = Electroanal Chem Electroanalytical Chemistry, Vol 23 = Electroanal. Chem. Electro- and Magnetobiology = Electro Magnetobiol Electro- and Magnetobiology = Electro- Magnetobiol. Electro- and Magnetobiology = Electro. Magnetobiol. Electrocardiography = Ann Ny Acad Sci Electrocardiography = Ann. Ny. Acad. Sci. Electrocardiology 1988 = Int Congr Ser Electrocardiology 1988 = Int. Congr. Ser. Electrocatalysis: Computational, Experimental, and Industrial Aspects = Surfactant Sci Ser Electrocatalysis: Computational, Experimental, and Industrial Aspects = Surfactant. Sci. Ser. Electroceramics in Japan Iii = Key Eng Mat Electroceramics in Japan Iii = Key. Eng. Mat. Electroceramics in Japan Iii = Key Eng Mater Electroceramics in Japan Iii = Key. Eng. Mater. Electroceramics in Japan I = Key Eng Mat Electroceramics in Japan I = Key. Eng. Mat. Electroceramics in Japan I = Key Eng Mater Electroceramics in Japan I = Key. Eng. Mater. Electroceramics in Japan Iv = Key Eng Mat Electroceramics in Japan Iv = Key. Eng. Mat. Electroceramics in Japan Iv = Key Eng Mater Electroceramics in Japan Iv = Key. Eng. Mater. Electroceramics in Japan Ix = Key Eng Mat Electroceramics in Japan Ix = Key. Eng. Mat. Electroceramics in Japan Viii = Key Eng Mat Electroceramics in Japan Viii = Key. Eng. Mat. Electroceramics in Japan Viii = Key Eng Mater Electroceramics in Japan Viii = Key. Eng. Mater. Electroceramics in Japan Vii = Key Eng Mat Electroceramics in Japan Vii = Key. Eng. Mat. Electroceramics in Japan Vi = Key Eng Mat Electroceramics in Japan Vi = Key. Eng. Mat. Electroceramics in Japan Xiii = Key Eng Mater Electroceramics in Japan Xiii = Key. Eng. Mater. Electroceramics in Japan Xi = Key Eng Mat Electroceramics in Japan Xi = Key. Eng. Mat. Electroceramics in Japan X = Key Eng Mat Electroceramics in Japan X = Key. Eng. Mat. Electroceramics in Japan X = Key Eng Mater Electroceramics in Japan X = Key. Eng. Mater. Electrochemical and Chemical Reactivity of Amorphous and Nanocrystalline Materials = Mater Sci Forum Electrochemical and Chemical Reactivity of Amorphous and Nanocrystalline Materials = Mater. Sci. Forum. Electrochemical and Solid State Letters = Electrochem Solid St Electrochemical and Solid State Letters = Electrochem. Solid St. Electrochemical and Solid-State Letters = Electrochem. Solid-State Lett. Electrochemical Capacitor and Hybrid Power Sources = Elec Soc S Electrochemical Capacitor and Hybrid Power Sources = Elec. Soc. S. Electrochemical Engineering and The Environment 92 = Inst Chem E Electrochemical Engineering and The Environment 92 = Inst. Chem. E. Electrochemical Impedence : Analysis and Interpretation = Am Soc Test Mater Electrochemical Impedence : Analysis and Interpretation = Am. Soc. Test. Mater. Electrochemical Methods for Neuroscience = Front Neuroeng Electrochemical Methods for Neuroscience = Front. Neuroeng. Electrochemical Methods in Archaeometry, Conservation and Restoration = Monogr Electrochem Electrochemical Methods in Archaeometry, Conservation and Restoration = Monogr. Electrochem. Electrochemical Methods in Corrosion: Research and Application = Mater Sci Forum Electrochemical Methods in Corrosion: Research and Application = Mater. Sci. Forum. Electrochemical Methods in Corrosion Research Vi, Pts 1 and 2 = Mater Sci Forum Electrochemical Methods in Corrosion Research Vi, Pts 1 and 2 = Mater. Sci. Forum. Electrochemical Nanotechnologies = Nanostruct Sci Techn Electrochemical Nanotechnologies = Nanostruct. Sci. Techn. Electrochemical Oxidation and Corrosion of Metals = Chem Res Appl-nova Electrochemical Oxidation and Corrosion of Metals = Chem. Res. Appl-nova. Electrochemical Processing in Ulsi Fabrication and Semiconductor/metal Deposition Ii, Proceedings = Elec Soc S Electrochemical Processing in Ulsi Fabrication and Semiconductor/metal Deposition Ii, Proceedings = Elec. Soc. S. Electrochemical Process Simulation Iii = Wit Trans Eng Sci Electrochemical Process Simulation Iii = Wit. Trans. Eng. Sci. Electrochemical Science and Technology of Copper, Proceedings = Elec Soc S Electrochemical Science and Technology of Copper, Proceedings = Elec. Soc. S. Electrochemical Sensing of Deadly Toxin-atrazine: An Overview = Chem Res Appl-nova Electrochemical Sensing of Deadly Toxin-atrazine: An Overview = Chem. Res. Appl-nova. Electrochemical Society Interface = Electrochem. Soc. Interface Electrochemical Society Series = Elec Soc S Electrochemical Society Series = Elec. Soc. S. Electrochemical Synthesis and Modification of Materials = Mater Res Soc Symp P Electrochemical Synthesis and Modification of Materials = Mater. Res. Soc. Symp. P. Electrochemical Technology Applications in Electronics Iii = Elec Soc S Electrochemical Technology Applications in Electronics Iii = Elec. Soc. S. Electrochemical Technology = Electrochem Technol Electrochemical Technology = Electrochem. Technol. Electrochemical Technology of Molten Salts = Molt Salt Forum Electrochemical Technology of Molten Salts = Molt. Salt. Forum. Electrochemistry and Characteristics of Embeddable Reference Electrodes for Concrete = Eur Fed Corros Publ Electrochemistry and Characteristics of Embeddable Reference Electrodes for Concrete = Eur. Fed. Corros. Publ. Electrochemistry and Physical Chemical Methods in Serving Materials for Sustainable Development = Key Eng Mat Electrochemistry and Physical Chemical Methods in Serving Materials for Sustainable Development = Key. Eng. Mat. Electrochemistry At The Nanoscale = Nanostruct Sci Techn Electrochemistry At The Nanoscale = Nanostruct. Sci. Techn. Electrochemistry Communications = Electrochem Commun Electrochemistry Communications = Electrochem. Commun. Electrochemistry = Electrochemistry Electrochemistry of Carbon Materials = Elec Soc S Electrochemistry of Carbon Materials = Elec. Soc. S. Electrochemistry of Glass and Ceramics = Ceram Trans Electrochemistry of Glass and Ceramics = Ceram. Trans. Electrochemistry of Metal Chalcogenides = Monogr Electrochem Electrochemistry of Metal Chalcogenides = Monogr. Electrochem. Electrochemistry (Tokyo, Japan) = Electrochemistry (Tokyo, Jpn.) Electrochemistry V = Top Curr Chem Electrochemistry V = Top. Curr. Chem. Electrochimica acta = Electrochim Acta Electrochimica Acta = Electrochim Acta Electrochimica Acta = Electrochim. Acta Electrochromic Materials and Applications = Elec Soc S Electrochromic Materials and Applications = Elec. Soc. S. Electrocomponent Science and Technology = Electrocomponent Sci. Technol. Electrocomponent Science and Technology = Electrocomp Sci Tech Electrocomponent Science and Technology = Electrocomp. Sci. Tech. Electrodiagnostic-Therapie = Electrodiagn Ther Electrodiagnostic-Therapie = Electrodiagn. Ther. Electroencephalography and clinical neurophysiology = Electroencephalogr Clin Neurophysiol Electroencephalography and Clinical Neurophysiology=Electroencephalogr Clin Neurophysiol;; Electroencephalography and Clinical Neurophysiology = Electroencephalogr. Clin. Neurophysiol. Electroencephalography and Clinical Neurophysiology = Electroen Clin Neuro Electroencephalography and Clinical Neurophysiology = Electroen. Clin. Neuro. Electroencephalography and Clinical Neurophysiology Supplement = Eeg Cl N Su Electroencephalography and Clinical Neurophysiology Supplement = Eeg. Cl. N. Su. Electroencephalography and clinical neurophysiology. Supplement = Electroencephalogr Clin Neurophysiol Suppl Electroencephalography and Clinical Neurophysiology. Supplement=Electroencephalogr Clin Neurophysiol Suppl;; Electroencephalography and Clinical Neurophysiology. Supplement = Electroencephalogr. Clin. Neurophysiol. Suppl. Electroless Copper and Nickel-phosphorus Plating: Processing, Characterisation and Modelling = Woodhead Publ Mater Electroless Copper and Nickel-phosphorus Plating: Processing, Characterisation and Modelling = Woodhead. Publ. Mater. Electroluminescence Ii = Semiconduct Semimet Electroluminescence Ii = Semiconduct. Semimet. Electroluminescence I = Semiconduct Semimet Electroluminescence I = Semiconduct. Semimet. Electroluminescent Materials, Devices, and Large-screen Displays = P Soc Photo-opt Ins Electroluminescent Materials, Devices, and Large-screen Displays = P. Soc. Photo-opt. Ins. Electrolysis: Theory, Types and Applications = Chem Res Appl-nova Electrolysis: Theory, Types and Applications = Chem. Res. Appl-nova. Electromagnetic and Optical Pulse Propagation 2 = Springer Ser Opt Sci Electromagnetic and Optical Pulse Propagation 2 = Springer. Ser. Opt. Sci. Electromagnetic biology and medicine = Electromagn Biol Med Electromagnetic Biology and Medicine = Electromagn Biol Med Electromagnetic Biology and Medicine = Electromagn. Biol. Med. Electromagnetic Cascade and Chemistry of Exotic Atoms = E Maj Int S Electromagnetic Cascade and Chemistry of Exotic Atoms = E. Maj. Int. S. Electromagnetic Field, Health and Environment, Proceedings of Ehe '07 = Stud Appl Electromag Electromagnetic Field, Health and Environment, Proceedings of Ehe '07 = Stud. Appl. Electromag. Electromagnetic Field Interaction With Transmission Lines: From Classical Theory to Hf Radiation Effects = Adv Elec Eng Electro Electromagnetic Field Interaction With Transmission Lines: From Classical Theory to Hf Radiation Effects = Adv. Elec. Eng. Electro. Electromagnetic Fields = Adv Chem Ser Electromagnetic Fields = Adv. Chem. Ser. Electromagnetic Fields in Electrical Engineering = Stud Appl Electromag Electromagnetic Fields in Electrical Engineering = Stud. Appl. Electromag. Electromagnetic Fields in Stratified Media = Adv Top Sci Tech Chi Electromagnetic Fields in Stratified Media = Adv. Top. Sci. Tech. Chi. Electromagnetic Nondestructive Evaluation (iii) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (iii) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (ii) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (ii) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (iv) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (iv) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (ix) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (ix) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation = Stud Appl Electromag Electromagnetic Nondestructive Evaluation = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (viii) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (viii) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (vi) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (vi) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (v) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (v) = Stud. Appl. Electromag. Electromagnetic Nondestructive Evaluation (xi) = Stud Appl Electromag Electromagnetic Nondestructive Evaluation (xi) = Stud. Appl. Electromag. Electromagnetic Probes of Fundamental Physics = Sci Cult Ser Phys Electromagnetic Probes of Fundamental Physics = Sci. Cult. Ser. Phys. Electromagnetic Radiation of Electrons in Periodic Structures = Springer Trac Mod Ph Electromagnetic Radiation of Electrons in Periodic Structures = Springer. Trac. Mod. Ph. Electromagnetics = Electromagnetics Electromagnetics in A Complex World: Challenges and Perspectives = Springer Proc Phys Electromagnetics in A Complex World: Challenges and Perspectives = Springer. Proc. Phys. Electromagnetic Spectrum of Neutron Stars = Nato Sci Ser Ii-math Electromagnetic Spectrum of Neutron Stars = Nato. Sci. Ser. Ii-math. Electromagnetic Spectrum of Neutron Stars = Nato Sci Ser Ii Math Electromagnetic Spectrum of Neutron Stars = Nato. Sci. Ser. Ii. Math. Electromagnetic Wave Scattering On Nonspherical Particles = Springer Ser Opt Sci Electromagnetic Wave Scattering On Nonspherical Particles = Springer. Ser. Opt. Sci. Electromagnetism = Electromagnetism Electromechanical and Systems Engineering = Appl Mech Mater Electromechanical and Systems Engineering = Appl. Mech. Mater. Electromechanical Coupling of The Solar Atmosphere = Aip Conf Proc Electromechanical Coupling of The Solar Atmosphere = Aip. Conf. Proc. Electromechanical Drive Technology 1997 = Vdi Bericht Electromechanical Drive Technology 1997 = Vdi. Bericht. Electromechanical Properties in Composites Based On Ferroelectrics = Eng Mater Process Electromechanical Properties in Composites Based On Ferroelectrics = Eng. Mater. Process. Electromechanical Systems in Mirotechnology and Mechatronics = Microtechnol Mems Electromechanical Systems in Mirotechnology and Mechatronics = Microtechnol. Mems. Electromyographical Kinesiology = Int Congr Ser Electromyographical Kinesiology = Int. Congr. Ser. Electromyography and Clinical Neurophysiology = Electromyo Clin Neur Electromyography and Clinical Neurophysiology = Electromyo. Clin. Neur. Electromyography and clinical neurophysiology = Electromyogr Clin Neurophysiol Electromyography and Clinical Neurophysiology=Electromyogr Clin Neurophysiol;; Electromyography and Clinical Neurophysiology = Electromyogr. Clin. Neurophysiol. Electromyography and Motor Control-electroencephalography and Clinical Neurophysiology = Electromyogr Motor C Electromyography and Motor Control-electroencephalography and Clinical Neurophysiology = Electromyogr. Motor C. Electromyography = Electromyography Electron and Photon Confinement in Semiconductor Nanostructures = P Int Sch Phys Electron and Photon Confinement in Semiconductor Nanostructures = P. Int. Sch. Phys. Electron and Photon Impact Ionization and Related Topics 2004 = Inst Phys Conf Ser Electron and Photon Impact Ionization and Related Topics 2004 = Inst. Phys. Conf. Ser. Electron and Proton Transfer in Chemistry and Biology = Stud Phys Theo Chem Electron and Proton Transfer in Chemistry and Biology = Stud. Phys. Theo. Chem. Electron-beam Interactions With Solids = Springer Tr Mod Phys Electron-beam Interactions With Solids = Springer. Tr. Mod. Phys. Electron Beam Ion Sources and Traps and Their Applications = Aip Conf Proc Electron Beam Ion Sources and Traps and Their Applications = Aip. Conf. Proc. Electron Beam Modification of Solids: Mechanisms, Common Features and Promising Applications = Condens Matter Res T Electron Beam Modification of Solids: Mechanisms, Common Features and Promising Applications = Condens. Matter. Res. T. Electron-beam Sources and Charged-particle Optics = P Soc Photo-opt Ins Electron-beam Sources and Charged-particle Optics = P. Soc. Photo-opt. Ins. Electron-beam Sources of High-brightness Radiation = P Soc Photo-opt Ins Electron-beam Sources of High-brightness Radiation = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Iii = P Soc Photo-opt Ins Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Iii = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Ii = P Soc Photo-opt Ins Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Ii = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Iv = P Soc Photo-opt Ins Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing Iv = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing = P Soc Photo-opt Ins Electron-beam, X-ray, and Ion-beam Submicrometer Lithographies for Manufacturing = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, Euv, and Ion-beam Submicrometer Lithographies for Manufacturing Vi = P Soc Photo-opt Ins Electron-beam, X-ray, Euv, and Ion-beam Submicrometer Lithographies for Manufacturing Vi = P. Soc. Photo-opt. Ins. Electron-beam, X-ray, Euv, and Ion-beam Submicrometer Lithographies for Manufacturing V = P Soc Photo-opt Ins Electron-beam, X-ray, Euv, and Ion-beam Submicrometer Lithographies for Manufacturing V = P. Soc. Photo-opt. Ins. Electron Collisions With Molecules, Clusters and Surfaces = Phys Atoms Electron Collisions With Molecules, Clusters and Surfaces = Phys. Atoms. Electron Correlation in New Materials and Nanosystems = Nato Sci Ser Ii-math Electron Correlation in New Materials and Nanosystems = Nato. Sci. Ser. Ii-math. Electron Correlation in New Materials and Nanosystems = Nato Sci Ser Ii Math Electron Correlation in New Materials and Nanosystems = Nato. Sci. Ser. Ii. Math. Electron Correlation Methodology = Acs Sym Ser Electron Correlation Methodology = Acs. Sym. Ser. Electron Crystallography for Materials Research and Quantitative Characterization of Nanostructured Materials = Mater Res Soc Symp P Electron Crystallography for Materials Research and Quantitative Characterization of Nanostructured Materials = Mater. Res. Soc. Symp. P. Electron Crystallography = Nato Adv Sci I E-app Electron Crystallography = Nato. Adv. Sci. I. E-app. Electron Crystallography: Novel Approaches for Structure Determination of Nanosized Materials = Nato Sci Ser Ii-math Electron Crystallography: Novel Approaches for Structure Determination of Nanosized Materials = Nato. Sci. Ser. Ii-math. Electron Crystallography: Novel Approaches for Structure Determination of Nanosized Materials = Nato Sci Ser Ii Math Electron Crystallography: Novel Approaches for Structure Determination of Nanosized Materials = Nato. Sci. Ser. Ii. Math. Electron Crystallography of Organic Molecules = Nato Adv Sci I C-mat Electron Crystallography of Organic Molecules = Nato. Adv. Sci. I. C-mat. Electron Cyclotron Resonance Ion Sources = Aip Conf Proc Electron Cyclotron Resonance Ion Sources = Aip. Conf. Proc. Electron Device Letters = Electron Devic Lett Electron Device Letters = Electron Devic. Lett. Electron Emission Physics = Adv Imag Elect Phys Electron Emission Physics = Adv. Imag. Elect. Phys. Electron = Fund Theor Electron = Fund. Theor. Electronic and Vibronic Spectra of Transition Metal Complexes Ii = Top Curr Chem Electronic and Vibronic Spectra of Transition Metal Complexes Ii = Top. Curr. Chem. Electronic and Vibronic Spectra of Transition Metal Complexes I = Top Curr Chem Electronic and Vibronic Spectra of Transition Metal Complexes I = Top. Curr. Chem. Electronic Braking Systems = Imeche Sem Electronic Braking Systems = Imeche. Sem. Electronic Business = Electron Bus Electronic Business = Electron. Bus. Electronic-business Intelligence: for Corporate Competitive Advantages in The Age of Emerging Technologies & Globalization = Adv Intel Sys Res Electronic-business Intelligence: for Corporate Competitive Advantages in The Age of Emerging Technologies & Globalization = Adv. Intel. Sys. Res. Electronic Campus : An Information Strategy = Lib Info R Electronic Campus : An Information Strategy = Lib. Info. R. Electronic Ceramic Materials and Devices = Ceram Trans Electronic Ceramic Materials and Devices = Ceram. Trans. Electronic Commerce and Web Technologies = Lect Notes Comput Sc Electronic Commerce and Web Technologies = Lect. Notes. Comput. Sc. Electronic Commerce and Web Technologies, Proceedings = Lect Notes Comput Sc Electronic Commerce and Web Technologies, Proceedings = Lect. Notes. Comput. Sc. Electronic Commerce = Lect Notes Comput Sc Electronic Commerce = Lect. Notes. Comput. Sc. Electronic Commerce Research and Applications = Electron Commer R A Electronic Commerce Research and Applications = Electron. Commer. R. A. Electronic Commerce Research = Electron Commer Res Electronic Commerce Research = Electron. Commer. Res. Electronic Commerce Technologies, Proceedings = Lect Notes Comput Sc Electronic Commerce Technologies, Proceedings = Lect. Notes. Comput. Sc. Electronic Commerce: Theory and Practice = Stud Comput Intell Electronic Commerce: Theory and Practice = Stud. Comput. Intell. Electronic Communications in Probability = Electron. Comm. Probab. Electronic Communications in Probability = Electron Commun Prob Electronic Communications in Probability = Electron. Commun. Prob. Electronic Components and Technology Conference = Elec Comp C Electronic Components and Technology Conference = Elec. Comp. C. Electronic Customer Relationship Management = Adv Manag Inform Sys Electronic Customer Relationship Management = Adv. Manag. Inform. Sys. Electronic Defect States in Alkali Halides: Effects of Interaction With Molecular Ions = Springer Tracts Mod Electronic Defect States in Alkali Halides: Effects of Interaction With Molecular Ions = Springer. Tracts. Mod. Electronic Defect States in Alkali Halides: Effects of Interaction With Molecular Ions = Springer Tr Mod Phys Electronic Defect States in Alkali Halides: Effects of Interaction With Molecular Ions = Springer. Tr. Mod. Phys. Electronic Design Automation Frameworks = Ifip Trans A Electronic Design Automation Frameworks = Ifip. Trans. A. Electronic Design = Electron Des Electronic Design = Electron. Des. Electronic Documents and Information: From Preservation to Access = Ver U Essen Electronic Documents and Information: From Preservation to Access = Ver. U. Essen. Electronic & Electrical Engineering Research Studies : Electronic Materials Series = Eeers Electr Mat Ser Electronic & Electrical Engineering Research Studies : Electronic Materials Series = Eeers. Electr. Mat. Ser. Electronic Engineer = Electron Engineer Electronic Engineer = Electron. Engineer Electronic Engineering Design = Electron Eng Des Electronic Engineering Design = Electron. Eng. Des. Electronic Engineering = Electron Eng Electronic Engineering = Electron. Eng. Electronic Engineering Systems Series = Electron. Eng. Syst. Ser. Electronic Govenment, Proceedings = Lect Notes Comput Sc Electronic Govenment, Proceedings = Lect. Notes. Comput. Sc. Electronic Government and The Information Systems Perspective = Lect Notes Comput Sc Electronic Government and The Information Systems Perspective = Lect. Notes. Comput. Sc. Electronic Government = Lect Notes Comput Sc Electronic Government = Lect. Notes. Comput. Sc. Electronic Government, Proceedings = Lect Notes Comput Sc Electronic Government, Proceedings = Lect. Notes. Comput. Sc. Electronic Healthcare Information Security = Adv Inform Secur Electronic Healthcare Information Security = Adv. Inform. Secur. Electronic Healthcare = L N Inst Comp Sci So Electronic Healthcare = L. N. Inst. Comp. Sci. So. Electronic Health Records and Communication for Better Health Care, Proceedings = St Heal T Electronic Health Records and Communication for Better Health Care, Proceedings = St. Heal. T. Electronic Health Records and Communication for Better Health Care, Proceedings = Stud Health Technol Electronic Health Records and Communication for Better Health Care, Proceedings = Stud. Health Technol. Electronic Imaging and Multimedia Systems Ii = P Soc Photo-opt Ins Electronic Imaging and Multimedia Systems Ii = P. Soc. Photo-opt. Ins. Electronic Imaging and Multimedia Systems = P Soc Photo-opt Ins Electronic Imaging and Multimedia Systems = P. Soc. Photo-opt. Ins. Electronic Imaging and Multimedia Technology Iii = Proc Spie Electronic Imaging and Multimedia Technology Iii = Proc. Spie. Electronic Imaging and Multimedia Technology Iii = P Soc Photo-opt Ins Electronic Imaging and Multimedia Technology Iii = P. Soc. Photo-opt. Ins. Electronic Imaging and Multimedia Technology Iv = Proc Spie Electronic Imaging and Multimedia Technology Iv = Proc. Spie. Electronic Imaging and Multimedia Technology Iv = P Soc Photo-opt Ins Electronic Imaging and Multimedia Technology Iv = P. Soc. Photo-opt. Ins. Electronic Imaging and Multimedia Technology V, Pts 1 and 2 = Proc Spie Electronic Imaging and Multimedia Technology V, Pts 1 and 2 = Proc. Spie. Electronic Imaging and Multimedia Technology V, Pts 1 and 2 = P Soc Photo-opt Ins Electronic Imaging and Multimedia Technology V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Electronic Imaging: Processing, Printing, and Publishing in Color = P Soc Photo-opt Ins Electronic Imaging: Processing, Printing, and Publishing in Color = P. Soc. Photo-opt. Ins. Electronic Information and Communication in Mathematics = Lect Notes Comput Sc Electronic Information and Communication in Mathematics = Lect. Notes. Comput. Sc. Electronic Information and Publications: Looking to The Electronic Future, Let's Not Forget The Archival Past = Iamslic Con Electronic Information and Publications: Looking to The Electronic Future, Let's Not Forget The Archival Past = Iamslic. Con. Electronic Journal of Biotechnology = Electron J Biotechn Electronic Journal of Biotechnology = Electron. J. Biotechn. Electronic Journal of Biotechnology = Electron J Biotechno Electronic Journal of Biotechnology = Electron. J. Biotechno. Electronic Journal of Biotechnology = Electron. J. Biotechnol. Electronic Journal of Boundary Elements = Electron. J. Boundary Elem. Electronic Journal of Combinatorics = Electron J Comb Electronic Journal of Combinatorics = Electron. J. Comb. Electronic Journal of Combinatorics = Electron. J. Combin. Electronic Journal of Differential Equations = Electron. J. Differential Equations Electronic Journal of Geotechnical Engineering = Electron. J. Geotech. Eng. Electronic Journal of Linear Algebra = Electron J Linear Al Electronic Journal of Linear Algebra = Electron. J. Linear Al. Electronic Journal of Linear Algebra = Electron. J. Linear Algebra Electronic Journal of Probability = Electron. J. Probab. Electronic Journal of Probability = Electron J Probab Electronic Journal of Probability = Electron. J. Probab. Electronic Journal of Qualitative Theory of Differential Equations = Electron J Qual Theo Electronic Journal of Qualitative Theory of Differential Equations = Electron. J. Qual. Theo. Electronic Journal of Qualitative Theory of Differential Equations = Electron. J. Qual. Theory Differ. Equ. Electronic Journal of Statistics = Electron J Stat Electronic Journal of Statistics = Electron. J. Stat. Electronic Journal of Theoretical Chemistry = Electron J Theor Ch Electronic Journal of Theoretical Chemistry = Electron. J. Theor. Ch. Electronic Journal of Theoretical Chemistry = Electron. J. Theor. Chem. Electronic Library = Electron Libr Electronic Library = Electron. Libr. Electronic Magnetic and Photonic Materials Division Monograph Series = Empmd Mg S Electronic Magnetic and Photonic Materials Division Monograph Series = Empmd. Mg. S. Electronic Markets = Electron Mark Electronic Markets = Electron. Mark. Electronic Materials Letters = Electron Mater Lett Electronic Materials Letters = Electron. Mater. Lett. Electronic Materials = Mater Sci Found Electronic Materials = Mater. Sci. Found. Electronic Materials - Our Future = Int Sampe E Electronic Materials - Our Future = Int. Sampe. E. Electronic Materials Science and Technology = Electron Mater Sci T Electronic Materials Science and Technology = Electron. Mater. Sci. T. Electronic Medical Records: A Practical Guide for Primary Care = Curr Clin Pract Electronic Medical Records: A Practical Guide for Primary Care = Curr. Clin. Pract. Electronic Noses and Olfaction 2000 = Sensors Ser Electronic Noses and Olfaction 2000 = Sensors. Ser. Electronic Noses & Sensors for The Detection of Explosives = Nato Sci Ser Ii Math Electronic Noses & Sensors for The Detection of Explosives = Nato. Sci. Ser. Ii. Math. Electronic Notes in Theoretical Computer Science = Electron. Notes Theor. Comput. Sci. Electronic, Optical and Optoelectronic Polymers and Oligomers = Mater Res Soc Symp P Electronic, Optical and Optoelectronic Polymers and Oligomers = Mater. Res. Soc. Symp. P. Electronic, Optoelectronic and Magnetic Thin Films = Eeers Electr Mat Ser Electronic, Optoelectronic and Magnetic Thin Films = Eeers. Electr. Mat. Ser. Electronic Packaging Materials Science Iv = Mat Res S C Electronic Packaging Materials Science Iv = Mat. Res. S. C. Electronic Packaging Materials Science Viii = Mater Res Soc Symp P Electronic Packaging Materials Science Viii = Mater. Res. Soc. Symp. P. Electronic Packaging Materials Science Vii = Mater Res Soc Symp P Electronic Packaging Materials Science Vii = Mater. Res. Soc. Symp. P. Electronic Packaging Materials Science Vi = Mater Res Soc Symp P Electronic Packaging Materials Science Vi = Mater. Res. Soc. Symp. P. Electronic Packaging Materials Science V = Mater Res Soc Symp P Electronic Packaging Materials Science V = Mater. Res. Soc. Symp. P. Electronic Packaging Materials Science X = Mater Res Soc Symp P Electronic Packaging Materials Science X = Mater. Res. Soc. Symp. P. Electronic Participation = Lect Notes Comput Sc Electronic Participation = Lect. Notes. Comput. Sc. Electronic Participation, Proceedings = Lect Notes Comput Sc Electronic Participation, Proceedings = Lect. Notes. Comput. Sc. Electronic Product Design = Electron Prod Des Electronic Product Design = Electron. Prod. Des. Electronic Products Magazine = Electron Prod Electronic Products Magazine = Electron. Prod. Electronic Properties of High-tc Superconductors and Related Compounds = Springer Series Soli Electronic Properties of High-tc Superconductors and Related Compounds = Springer. Series. Soli. Electronic Properties of Molecular Nanostructures = Aip Conf Proc Electronic Properties of Molecular Nanostructures = Aip. Conf. Proc. Electronic Properties of Multilayers and Low-dimensional Semiconductor Structures = Nato Adv Sci I B-phy Electronic Properties of Multilayers and Low-dimensional Semiconductor Structures = Nato. Adv. Sci. I. B-phy. Electronic Properties of Novel Materials-molecular Nanostructures = Aip Conf Proc Electronic Properties of Novel Materials-molecular Nanostructures = Aip. Conf. Proc. Electronic Properties of Novel Materials - Progress in Molecular Nanostructures = Aip Conf Proc Electronic Properties of Novel Materials - Progress in Molecular Nanostructures = Aip. Conf. Proc. Electronic Properties of Novel Materials - Science and Technology of Molecular Nanostructures = Aip Conf Proc Electronic Properties of Novel Materials - Science and Technology of Molecular Nanostructures = Aip. Conf. Proc. Electronic Properties of Novel Nanostructures = Aip Conf Proc Electronic Properties of Novel Nanostructures = Aip. Conf. Proc. Electronic Properties of Synthetic Nanostructures = Aip Conf Proc Electronic Properties of Synthetic Nanostructures = Aip. Conf. Proc. Electronic Publishing: Applications and Implications = Asis Monogr Electronic Publishing: Applications and Implications = Asis. Monogr. Electronic Publishing: Organization, Dissemination and Design - Journal Special Issue = Electr Pub Org Diss Electronic Publishing: Organization, Dissemination and Design - Journal Special Issue = Electr. Pub. Org. Diss. Electronic Quantum Transport in Mesoscopic Semiconductor Structures = Springer Trac Mod Ph Electronic Quantum Transport in Mesoscopic Semiconductor Structures = Springer. Trac. Mod. Ph. Electronic Research Announcements in Mathematical Sciences = Electron Res Announc Electronic Research Announcements in Mathematical Sciences = Electron. Res. Announc. Electronic Research Announcements of The American Mathematical Society = Electron Res Announc Electronic Research Announcements of The American Mathematical Society = Electron. Res. Announc. Electronic Research Announcements of the American Mathematical Society = Electron. Res. Announc. Amer. Math. Soc. Electronics and Biotechnology Advanced (el B A) Forum Series = Electr Biot Adv For Electronics and Biotechnology Advanced (el B A) Forum Series = Electr. Biot. Adv. For. Electronics and Communications = Ele Com Eng Electronics and Communications = Ele. Com. Eng. Electronics and Communications in Japan = Electr Commun Jpn Electronics and Communications in Japan = Electr. Commun. Jpn. Electronics and Communications in Japan = Electron. Commun. Jpn. Electronics and Communications in Japan Part I-communications = Electron Comm Jpn 1 Electronics and Communications in Japan Part I-communications = Electron. Comm. Jpn. 1. Electronics and Communications in Japan Part Ii-electronics = Electron Comm Jpn 2 Electronics and Communications in Japan Part Ii-electronics = Electron. Comm. Jpn. 2. Electronics and Communications in Japan Part Iii-fundamental Electronic Science = Electron Comm Jpn 3 Electronics and Communications in Japan Part Iii-fundamental Electronic Science = Electron. Comm. Jpn. 3. Electronics and Power = Electron Power Electronics and Power = Electron. Power Electronics and Structures for Mems Ii = Proc Spie Electronics and Structures for Mems Ii = Proc. Spie. Electronics and Structures for Mems Ii = P Soc Photo-opt Ins Electronics and Structures for Mems Ii = P. Soc. Photo-opt. Ins. Electronics and Structures for Mems = Proc Spie Electronics and Structures for Mems = Proc. Spie. Electronics and Structures for Mems = P Soc Photo-opt Ins Electronics and Structures for Mems = P. Soc. Photo-opt. Ins. Electronics & Communication Engineering Journal = Electron Commun Eng Electronics & Communication Engineering Journal = Electron. Commun. Eng. Electronics & Communications in Japan = Electron Commun Jpn Electronics & Communications in Japan = Electron. Commun. Jpn. Electronics = Electronics Electronics Information & Planning = Electron Inform Plan Electronics Information & Planning = Electron. Inform. Plan. Electronics Letters = Electron Lett Electronics Letters = Electron. Lett Electronics Letters = Electron. Lett. Electronics On Unconventional Substrates-electrotextiles and Giant-area Flexible Circuits = Mater Res Soc Symp P Electronics On Unconventional Substrates-electrotextiles and Giant-area Flexible Circuits = Mater. Res. Soc. Symp. P. Electronics Packaging Technology Conference Proceedings = El Packag Tech Conf Electronics Packaging Technology Conference Proceedings = El. Packag. Tech. Conf. Electronics, Robotics and Automotive Mechanics Conference (cerma) = Elect Robot Auto Mec Electronics, Robotics and Automotive Mechanics Conference (cerma) = Elect. Robot. Auto. Mec. Electronics System Design Techniques for Safety Critical Applications = Lect Notes Electr En Electronics System Design Techniques for Safety Critical Applications = Lect. Notes. Electr. En. Electronic States in Crystals of Finite Size: Quantum Confinement of Bloch Waves = Springer Tr Mod Phys Electronic States in Crystals of Finite Size: Quantum Confinement of Bloch Waves = Springer. Tr. Mod. Phys. Electronic Structure and Magnetism of 3d-transition Metal Pnictides = Springer Ser Mater S Electronic Structure and Magnetism of 3d-transition Metal Pnictides = Springer. Ser. Mater. S. Electronic Structure and Physical Properties of Solids = Lect Notes Phys Electronic Structure and Physical Properties of Solids = Lect. Notes. Phys. Electronic Structure of Strongly Correlated Materials = Springer Ser Solid-s Electronic Structure of Strongly Correlated Materials = Springer. Ser. Solid-s. Electronicsweek = Electronics Electronicsweek = Electronics. Electronics & Wireless World = Electron Wireless W Electronics & Wireless World = Electron. Wireless W. Electronics World = Electron World Electronics World = Electron. World Electronics World & Wireless World = Electron World Wirel Electronics World & Wireless World = Electron. World Wirel. Electronic Systems for Vehicles = Vdi Bericht Electronic Systems for Vehicles = Vdi. Bericht. Electronic Tap-changer for Distributed Transformers = Power Syst Electronic Tap-changer for Distributed Transformers = Power. Syst. Electronic Technology = Electron Technol. Electronic Technology = Electron. Technol. Electronic Transactions On Numerical Analysis = Electron T Numer Ana Electronic Transactions On Numerical Analysis = Electron. T. Numer. Ana. Electronic Transactions on Numerical Analysis = Electron. Trans. Numer. Anal. Electronic Transactions on Numerical Analysis = Electron. Trans. Numer. Anal. Electronic Value Exchange: Origins of The Visa Electronic Payment System = Hist Comput-springer Electronic Value Exchange: Origins of The Visa Electronic Payment System = Hist. Comput-springer. Electronic Vs. Floor Based Trading = Zi Sch Bus Fin Ma Electronic Vs. Floor Based Trading = Zi. Sch. Bus. Fin. Ma. Electronic Waste Management = Iss Environ Sci Tech Electronic Waste Management = Iss. Environ. Sci. Tech. Electron Image Tubes and Image Intensifiers Ii = P Soc Photo-opt Ins Electron Image Tubes and Image Intensifiers Ii = P. Soc. Photo-opt. Ins. Electron Image Tubes and Image Intensifiers = P Soc Photo-opt Ins Electron Image Tubes and Image Intensifiers = P. Soc. Photo-opt. Ins. Electronische Datenverarbeitung = Elektron Datenverarb Electronische Datenverarbeitung = Elektron. Datenverarb. Electron Kinetics and Applications of Glow Discharges = Nato Adv Sci I B-phy Electron Kinetics and Applications of Glow Discharges = Nato. Adv. Sci. I. B-phy. Electron Microscopy and Analysis 1991 = Inst Phys Conf Ser Electron Microscopy and Analysis 1991 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 1993 = Inst Phys Conf Ser Electron Microscopy and Analysis 1993 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 1995 = Inst Phys Conf Ser Electron Microscopy and Analysis 1995 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 1997 = Inst Phys Conf Ser Electron Microscopy and Analysis 1997 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 1999 = Inst Phys Conf Ser Electron Microscopy and Analysis 1999 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 2001 = Inst Phys Conf Ser Electron Microscopy and Analysis 2001 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis 2003 = Inst Phys Conf Ser Electron Microscopy and Analysis 2003 = Inst. Phys. Conf. Ser. Electron Microscopy and Analysis Group Conference 2009 (emag 2009) = J Phys Conf Ser Electron Microscopy and Analysis Group Conference 2009 (emag 2009) = J. Phys. Conf. Ser. Electron Microscopy and Multiscale Modeling, Proceedings = Aip Conf Proc Electron Microscopy and Multiscale Modeling, Proceedings = Aip. Conf. Proc. Electron Microscopy = Electron Microsc. Electron Microscopy in Dermatology - Basic and Clinical Research = Int Congr Ser Electron Microscopy in Dermatology - Basic and Clinical Research = Int. Congr. Ser. Electron Microscopy of Model Systems = Method Cell Biol Electron Microscopy of Model Systems = Method. Cell. Biol. Electron Microscopy of Molecular and Atom-scale Mechanical Behavior, Chemistry and Structure = Mater Res Soc Symp P Electron Microscopy of Molecular and Atom-scale Mechanical Behavior, Chemistry and Structure = Mater. Res. Soc. Symp. P. Electron Microscopy of Polymers = Springer Lab Man Pol Electron Microscopy of Polymers = Springer. Lab. Man. Pol. Electron Microscopy of Semiconducting Materials and Ulsi Devices = Mater Res Soc Symp P Electron Microscopy of Semiconducting Materials and Ulsi Devices = Mater. Res. Soc. Symp. P. Electron microscopy reviews = Electron Microsc Rev Electron Microscopy Reviews = Electron Microsc Rev Electron Microscopy Reviews = Electron Microsc. Rev. Electron Paramagnetic Resonance = Electron Paramag Res Electron Paramagnetic Resonance = Electron Paramag. Res. Electron Paramagnetic Resonance, Vol 20 = Electron Paramag Res Electron Paramagnetic Resonance, Vol 20 = Electron Paramag. Res. Electron Paramagnetic Resonance, Vol 21 = Electron Paramag Res Electron Paramagnetic Resonance, Vol 21 = Electron Paramag. Res. Electron-phonon Interaction in Conventional and Unconventional Superconductors = Springer Theses-reco Electron-phonon Interaction in Conventional and Unconventional Superconductors = Springer. Theses-reco. Electron-photon Interaction in Dense Media = Nato Sci Ser Ii-math Electron-photon Interaction in Dense Media = Nato. Sci. Ser. Ii-math. Electron-photon Interaction in Dense Media = Nato Sci Ser Ii Math Electron-photon Interaction in Dense Media = Nato. Sci. Ser. Ii. Math. Electron Scattering: From Atoms, Molecules, Nuclei, and Bulk Matter = Phys Atoms Electron Scattering: From Atoms, Molecules, Nuclei, and Bulk Matter = Phys. Atoms. Electron Spin Resonance and Related Phenomena in Low-dimensional Structures = Top Appl Phys Electron Spin Resonance and Related Phenomena in Low-dimensional Structures = Top. Appl. Phys. Electron Spin Resonance-a Specialist Periodical Report = Electron Spin Reson Electron Spin Resonance-a Specialist Periodical Report = Electron Spin Reson. Electron Theory and Quantum Electrodynamics = Nato Adv Sci I B-phy Electron Theory and Quantum Electrodynamics = Nato. Adv. Sci. I. B-phy. Electron Transfer-from Isolated Molecules to Biomolecules, Pt 1 = Adv Chem Phys Electron Transfer-from Isolated Molecules to Biomolecules, Pt 1 = Adv. Chem. Phys. Electron Transfer-from Isolated Molecules to Biomolecules, Pt 2 = Adv Chem Phys Electron Transfer-from Isolated Molecules to Biomolecules, Pt 2 = Adv. Chem. Phys. Electron Transfer Ii = Top Curr Chem Electron Transfer Ii = Top. Curr. Chem. Electron Transfer in Biology and The Solid State = Adv Chem Ser Electron Transfer in Biology and The Solid State = Adv. Chem. Ser. Electron Transfer in Inorganic, Organic, and Biological Systems = Adv Chem Ser Electron Transfer in Inorganic, Organic, and Biological Systems = Adv. Chem. Ser. Electron Transfer I = Top Curr Chem Electron Transfer I = Top. Curr. Chem. Electron Transfer Reactions = Adv Chem Ser Electron Transfer Reactions = Adv. Chem. Ser. Electron Transport in Nanosystems = Nato Science Peace S Electron Transport in Nanosystems = Nato. Science. Peace. S. Electron Transport in Nanosystems = Nato Sci Peace Sec B Electron Transport in Nanosystems = Nato. Sci. Peace. Sec. B. Electron Tubes and Image Intensifiers = P Soc Photo-opt Ins Electron Tubes and Image Intensifiers = P. Soc. Photo-opt. Ins. Electro-optical and Infrared Systems: Technology and Applications Iii = Proc Spie Electro-optical and Infrared Systems: Technology and Applications Iii = Proc. Spie. Electro-optical and Infrared Systems: Technology and Applications Iii = P Soc Photo-opt Ins Electro-optical and Infrared Systems: Technology and Applications Iii = P. Soc. Photo-opt. Ins. Electro-optical and Infrared Systems: Technology and Applications Iv = Proc Spie Electro-optical and Infrared Systems: Technology and Applications Iv = Proc. Spie. Electro-optical and Infrared Systems: Technology and Applications Iv = P Soc Photo-opt Ins Electro-optical and Infrared Systems: Technology and Applications Iv = P. Soc. Photo-opt. Ins. Electro-optical and Infrared Systems: Technology and Applications = P Soc Photo-opt Ins Electro-optical and Infrared Systems: Technology and Applications = P. Soc. Photo-opt. Ins. Electro-optical and Infrared Systems: Technology and Applications Vii = P Soc Photo-opt Ins Electro-optical and Infrared Systems: Technology and Applications Vii = P. Soc. Photo-opt. Ins. Electro-optical Effects to Visualize Field and Current Distributions in Semiconductors = Springer Ser Solid-s Electro-optical Effects to Visualize Field and Current Distributions in Semiconductors = Springer. Ser. Solid-s. Electro-optical Materials for Switches, Coatings, Sensor Optics, and Detectors = P Soc Photo-opt Ins Electro-optical Materials for Switches, Coatings, Sensor Optics, and Detectors = P. Soc. Photo-opt. Ins. Electro-optical Remote Sensing, Detection, and Photonic Technologies and Their Applications = Proc Spie Electro-optical Remote Sensing, Detection, and Photonic Technologies and Their Applications = Proc. Spie. Electro-optical Remote Sensing, Detection, and Photonic Technologies and Their Applications = P Soc Photo-opt Ins Electro-optical Remote Sensing, Detection, and Photonic Technologies and Their Applications = P. Soc. Photo-opt. Ins. Electro-optical Remote Sensing Ii = P Soc Photo-opt Ins Electro-optical Remote Sensing Ii = P. Soc. Photo-opt. Ins. Electro-optical Remote Sensing, Photonic Technologies, and Applications Iv = P Soc Photo-opt Ins Electro-optical Remote Sensing, Photonic Technologies, and Applications Iv = P. Soc. Photo-opt. Ins. Electro-optical System Design, Simulation, Testing and Training = Proc Spie Electro-optical System Design, Simulation, Testing and Training = Proc. Spie. Electro-optical System Design, Simulation, Testing and Training = P Soc Photo-opt Ins Electro-optical System Design, Simulation, Testing and Training = P. Soc. Photo-opt. Ins. Electro-optical Systems Design = Electr Opt Syst Des Electro-optical Systems Design = Electr. Opt. Syst. Des. Electro-optical Technology for Remote Chemical Detection and Identification Iii = P Soc Photo-opt Ins Electro-optical Technology for Remote Chemical Detection and Identification Iii = P. Soc. Photo-opt. Ins. Electro-optical Technology for Remote Chemical Detection and Identification Ii = P Soc Photo-opt Ins Electro-optical Technology for Remote Chemical Detection and Identification Ii = P. Soc. Photo-opt. Ins. Electro-optical Technology for Remote Chemical Detection and Identification = P Soc Photo-opt Ins Electro-optical Technology for Remote Chemical Detection and Identification = P. Soc. Photo-opt. Ins. Electro-optic and Magneto-optic Materials and Applications = P Soc Photo-opt Ins Electro-optic and Magneto-optic Materials and Applications = P. Soc. Photo-opt. Ins. Electro-optic and Magneto-optic Materials Ii = P Soc Photo-opt Ins Electro-optic and Magneto-optic Materials Ii = P. Soc. Photo-opt. Ins. Electro-optic and Second Harmonic Generation Materials, Devices, and Applications Ii = P Soc Photo-opt Ins Electro-optic and Second Harmonic Generation Materials, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. Electro-optic and Second Harmonic Generation Materials, Devices, and Applications = P Soc Photo-opt Ins Electro-optic and Second Harmonic Generation Materials, Devices, and Applications = P. Soc. Photo-opt. Ins. Electro-optic Computer Peripherals Technology = P Soc Photo-opt Ins Electro-optic Computer Peripherals Technology = P. Soc. Photo-opt. Ins. Electro-optic, Integrated Optic, and Electronic Technologies for Online Chemical Process Monitoring = P Soc Photo-opt Ins Electro-optic, Integrated Optic, and Electronic Technologies for Online Chemical Process Monitoring = P. Soc. Photo-opt. Ins. Electro-optics and Microelectronics, Proceedings = Ann Isr Phy Electro-optics and Microelectronics, Proceedings = Ann. Isr. Phy. Electro-optics = Electro-optics Electroorganic Synthesis: Bond Formation At Anode and Cathode = Top Curr Chem Electroorganic Synthesis: Bond Formation At Anode and Cathode = Top. Curr. Chem. Electrophoresis=Electrophoresis;; Electrophoresis = Electrophoresis Electrophoresis (Weinheim, Federal Republic of Germany) = Electrophoresis (Weinheim, Fed. Repub. Ger.) Electrophoretic Deposition: Fundamentals and Applications Iii = Key Eng Mat Electrophoretic Deposition: Fundamentals and Applications Iii = Key. Eng. Mat. Electrophoretic Deposition: Fundamentals and Applications Ii = Key Eng Mat Electrophoretic Deposition: Fundamentals and Applications Ii = Key. Eng. Mat. Electrophoretic Deposition: Fundamentals and Applications Ii = Key Eng Mater Electrophoretic Deposition: Fundamentals and Applications Ii = Key. Eng. Mater. Electrophoretic Deposition: Fundamentals and Applications, Proceedings = Elec Soc S Electrophoretic Deposition: Fundamentals and Applications, Proceedings = Elec. Soc. S. Electrophoretic Depositon: Fundamentals and Applications Ii = Key Eng Mat Electrophoretic Depositon: Fundamentals and Applications Ii = Key. Eng. Mat. Electrophysiological Kinesiology / = Int Congr Ser Electrophysiological Kinesiology / = Int. Congr. Ser. Electrophysiological Kinesiology = St Heal T Electrophysiological Kinesiology = St. Heal. T. Electrophysiological Recording Techniques = Neuromethods Electrophysiological Recording Techniques = Neuromethods. Electroresponsive Polymers and Their Applications = Mater Res Soc Symp P Electroresponsive Polymers and Their Applications = Mater. Res. Soc. Symp. P. Electrorheological Fluids: Modeling and Mathematical Theory = Lect Notes Math Electrorheological Fluids: Modeling and Mathematical Theory = Lect. Notes. Math. Electrospun Nanofibers and Nanotubes Research Advances = Nanotechnol Sci Tech Electrospun Nanofibers and Nanotubes Research Advances = Nanotechnol. Sci. Tech. Electrospun Nanofibers Research: Recent Developments = Nanotechnol Sci Tech Electrospun Nanofibers Research: Recent Developments = Nanotechnol. Sci. Tech. Electrostatic Effects in Soft Matter and Biophysics = Nato Sci Ser Ii Math Electrostatic Effects in Soft Matter and Biophysics = Nato. Sci. Ser. Ii. Math. Electrostatics 1991 = Inst Phys Conf Ser Electrostatics 1991 = Inst. Phys. Conf. Ser. Electrostatics 1995 = Inst Phys Conf Ser Electrostatics 1995 = Inst. Phys. Conf. Ser. Electrostatics 1999 = Inst Phys Conf Ser Electrostatics 1999 = Inst. Phys. Conf. Ser. Electrostatics 2003 = Inst Phys Conf Ser Electrostatics 2003 = Inst. Phys. Conf. Ser. Electrostatics 2007 = J Phys Conf Ser Electrostatics 2007 = J. Phys. Conf. Ser. Electrostimulation: Theory, Applications, and Computational Model = Artech Hse Biom Sign Electrostimulation: Theory, Applications, and Computational Model = Artech. Hse. Biom. Sign. Electro-technology = Electro-technol Electro-technology = Electro-technol. Electroweak Physics and The Early Universe = Nato Adv Sci I B-phy Electroweak Physics and The Early Universe = Nato. Adv. Sci. I. B-phy. Electroweak Physics and The Early Universe = Nato Adv Sci Inst Se Electroweak Physics and The Early Universe = Nato. Adv. Sci. Inst. Se. Electroweak Physics At Lep and Lhc = Springer Trac Mod Ph Electroweak Physics At Lep and Lhc = Springer. Trac. Mod. Ph. Electroweak Precisionn Tests At Lep = Springer Tr Mod Phys Electroweak Precisionn Tests At Lep = Springer. Tr. Mod. Phys. Electroweak Processes in External Electromagnetic Fields = Springer Tr Mod Phys Electroweak Processes in External Electromagnetic Fields = Springer. Tr. Mod. Phys. Electroweak Symmetry Breaking: The Bottom-up Approach = Springer Tr Mod Phys Electroweak Symmetry Breaking: The Bottom-up Approach = Springer. Tr. Mod. Phys. Elegant Science in Floriculture = Acta Hortic Elegant Science in Floriculture = Acta. Hortic. Elegy = Contemp Iss Pub Pol Elegy = Contemp. Iss. Pub. Pol. Elektrische Energiespeicher = Vdi Bericht Elektrische Energiespeicher = Vdi. Bericht. Elektrokhimiya = Elektrokhimiya Elektromagnetische Schirmung: Theorie Und Praxisbeispiele = Vdi-buch Elektromagnetische Schirmung: Theorie Und Praxisbeispiele = Vdi-buch. Elektromedizin, Biomedizin und Technik = Elektromed. Biomed. Tech. Elektro Medizin; Biomedizin und Technik = Elektromed Biomed Tech Elektronika Ir Elektrotechnika = Elektron Elektrotech Elektronika Ir Elektrotechnika = Elektron. Elektrotech. Elektronische Informationsressourcen Fur Germanisten = Bibliothekspraxis Elektronische Informationsressourcen Fur Germanisten = Bibliothekspraxis. Elektrotechnik und Maschinenbau = Elektrotech. Maschinenbau Elektrotechnische Zeitschrift B-ausgabe = Elektrotech Z Ausg B Elektrotechnische Zeitschrift B-ausgabe = Elektrotech. Z. Ausg. B. Elektrotechnische Zeitschrift = Elektrotech. Z. Elektrotechnische Zeitschrift Etz-a = Elektrotech Z Ausg A Elektrotechnische Zeitschrift Etz-a = Elektrotech. Z. Ausg. A. Elektrotechnische Zeitschrift-etz = Elektrotech Z Elektrotechnische Zeitschrift-etz = Elektrotech. Z. Elelmezesi Ipar = Elelmezesi Ipar Elelmiszervizsgalati Kozlemenyek = Elelmiszervizsgalati Element Abundance Variations in The Sun and Heliosphere = Adv Space Res Element Abundance Variations in The Sun and Heliosphere = Adv. Space. Res. Element Abundance Variations in The Sun and Heliosphere = Adv Space Res-series Element Abundance Variations in The Sun and Heliosphere = Adv. Space. Res-series. Elementa-journal of Slavic Studies & Comparative Cultural Semiotics = Elementa Elementa-journal of Slavic Studies & Comparative Cultural Semiotics = Elementa. Elemental Analysis of Fuels and Lubricants: Recent Advances and Future Prospects = Am Soc Test Mater Elemental Analysis of Fuels and Lubricants: Recent Advances and Future Prospects = Am. Soc. Test. Mater. Elemental Sulfur and Sulfur-rich Compounds Ii = Top Curr Chem Elemental Sulfur and Sulfur-rich Compounds Ii = Top. Curr. Chem. Elemental Sulfur and Sulfur-rich Compounds I = Top Curr Chem Elemental Sulfur and Sulfur-rich Compounds I = Top. Curr. Chem. Elementare Differentialgeometrie, 2. Auflage = Degruyter Lehrb Elementare Differentialgeometrie, 2. Auflage = Degruyter. Lehrb. Elementary Calculus of Financial Mathematics = Math Model Comput Elementary Calculus of Financial Mathematics = Math. Model. Comput. Elementary English = Elem Engl Elementary English = Elem. Engl. Elementary Feedback Stabilization of The Linear Reaction-convection-diffusion Equation and The Wave Equation = Math Appl-berlin Elementary Feedback Stabilization of The Linear Reaction-convection-diffusion Equation and The Wave Equation = Math. Appl-berlin. Elementary Functional Analysis = Grad Texts Math Elementary Functional Analysis = Grad. Texts. Math. Elementary Operators and Their Applications = Oper Theory Adv Appl Elementary Operators and Their Applications = Oper. Theory. Adv. Appl. Elementary Physics of Complex Plasmas = Lect Notes Phys Elementary Physics of Complex Plasmas = Lect. Notes. Phys. Elementary Reaction Steps in Heterogeneous Catalysis = Nato Adv Sci Inst Se Elementary Reaction Steps in Heterogeneous Catalysis = Nato. Adv. Sci. Inst. Se. Elementary School Journal = Elem School J Elementary School Journal = Elem. School J. Elementary School Teacher and Course of Study = Elem Sch Teach Cours Elementary School Teacher and Course of Study = Elem. Sch. Teach. Cours. Elementary School Teacher = Elem Sch Teach Elementary School Teacher = Elem. Sch. Teach. Elemente der Mathematik = Elem. Math. Elements and Traces = Samuel Beckett Today Elements and Traces = Samuel. Beckett. Today. Elements = Elements Elements of Adaptive Testing = Stat Soc Behav Sc Elements of Adaptive Testing = Stat. Soc. Behav. Sc. Elements of Computation Theory = Texts Comput Sci Elements of Computation Theory = Texts. Comput. Sci. Elements of Effective Governance: Measurement, Accountability and Participation = Public Adm Public Po Elements of Effective Governance: Measurement, Accountability and Participation = Public. Adm. Public. Po. Elements of Numerical Relativity and Relativistic Hydrodynamics: From Einsteins Equations to Astrophysical Simulations, Second Ed. = Lect Notes Phys Elements of Numerical Relativity and Relativistic Hydrodynamics: From Einsteins Equations to Astrophysical Simulations, Second Ed. = Lect. Notes. Phys. Elements of Scientific Computing = Texts Comput Sci Eng Elements of Scientific Computing = Texts. Comput. Sci. Eng. Element-specific Chromatographic Detection By Atomic Emission Spectroscopy = Acs Sym Ser Element-specific Chromatographic Detection By Atomic Emission Spectroscopy = Acs. Sym. Ser. Element Stratification in Stars: 40 Years of Atomic Diffusion = Eas Publications Element Stratification in Stars: 40 Years of Atomic Diffusion = Eas. Publications. Elenchos. Rivista di studi sul pensiero antico = Elenchos Elettrotecnica = Elettrotecnica Elevation Models for Geoscience = Geol Soc Spec Publ Elevation Models for Geoscience = Geol. Soc. Spec. Publ. Eleventh Annual Ieee Conference On Computational Complexity, Proceedings = Ieee Conf Comp Compl Eleventh Annual Ieee Conference On Computational Complexity, Proceedings = Ieee Conf. Comp. Compl. Eleventh Annual Ieee International Asic Conference - Proceedings = P Ieee Int Asic C&e Eleventh Annual Ieee International Asic Conference - Proceedings = P. Ieee Int. Asic C&e. Eleventh Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Eleventh Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Eleventh Annual Ucla Indo-european Conference - Proceedings = J Indo Eur Stud Mono Eleventh Annual Ucla Indo-european Conference - Proceedings = J. Indo. Eur. Stud. Mono. Eleventh Conference On Recent Developments in Gravity = J Phys Conf Ser Eleventh Conference On Recent Developments in Gravity = J. Phys. Conf. Ser. Eleventh International Conference On Antennas and Propagation, Vols 1 and 2 = Iee Conf Publ Eleventh International Conference On Antennas and Propagation, Vols 1 and 2 = Iee. Conf. Publ. Eleventh International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Eleventh International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Eleventh International Conference On Road Transport Information and Control = Iee Conf Publ Eleventh International Conference On Road Transport Information and Control = Iee. Conf. Publ. Eleventh International Symposium On Atmospheric and Ocean Optics /atmospheric Physics = Proc Spie Eleventh International Symposium On Atmospheric and Ocean Optics /atmospheric Physics = Proc. Spie. Eleventh International Symposium On Atmospheric and Ocean Optics /atmospheric Physics = P Soc Photo-opt Ins Eleventh International Symposium On Atmospheric and Ocean Optics /atmospheric Physics = P. Soc. Photo-opt. Ins. Eleventh International Workshop On Research Issues in Data Engineering, Proceedings = Pr Gr Lak Symp Vlsi Eleventh International Workshop On Research Issues in Data Engineering, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Eleventh Mexican Symposium On Medical Physics = Aip Conf Proc Eleventh Mexican Symposium On Medical Physics = Aip. Conf. Proc. Eleventh Topical Conference On Radio Frequency Power in Plasmas = Aip Conf Proc Eleventh Topical Conference On Radio Frequency Power in Plasmas = Aip. Conf. Proc. Elfe Project - An Electron Laboratory for Europe = Ital Phy So Elfe Project - An Electron Laboratory for Europe = Ital. Phy. So. Elgar European Law Series = Elgar Eur Law Ser Elgar European Law Series = Elgar Eur. Law Ser. Elgar Financial Law = Elgar Financ Law Elgar Financial Law = Elgar Financ. Law Elgar Intellectual Property and Global Development = Elgar Intell Prop Gl Elgar Intellectual Property and Global Development = Elgar Intell. Prop. Gl. Elgar International Economic Law = Elgar Int Econ Law Elgar International Economic Law = Elgar Int. Econ. Law Elgar Korean Law = Elgar Korean Law Elh = Elh Elh-english Literary History = Elh-engl Lit Hist Elh-english Literary History = Elh-engl. Lit. Hist. E-librarian Service: User-friendly Semantic Search in Digital Libraries = X Media Publ E-librarian Service: User-friendly Semantic Search in Digital Libraries = X. Media. Publ. Eliminating Weapons of Mass Destruction: Prospects for Effective International Verification = Glob Iss Ser Eliminating Weapons of Mass Destruction: Prospects for Effective International Verification = Glob. Iss. Ser. Elimination of Aflatoxin Contamination in Peanut = Aciar Proc Elimination of Aflatoxin Contamination in Peanut = Aciar. Proc. Elin Zeitschrift = Elin Z Elin Zeitschrift = Elin Z. Elites and Decolonization in The Twentieth Century = Camb Imp Post-col St Elites and Decolonization in The Twentieth Century = Camb. Imp. Post-col. St. Elites and Leadership in Russia Politics = Int Congr Cent E Eur Elites and Leadership in Russia Politics = Int. Congr. Cent. E. Eur. Elite Young Athlete = Med Sport Sci Elite Young Athlete = Med. Sport. Sci. Elizabethan Performance in North American Spaces = Theatre Symp Elizabethan Performance in North American Spaces = Theatre. Symp. Elizabeth of York = Queenship Power Elizabeth of York = Queenship. Power. Elizabeth Spencers Complicated Cartographies: Reimagining Home, The South, and Southern Literary Production = Am Lit Read Twenty-f Elizabeth Spencers Complicated Cartographies: Reimagining Home, The South, and Southern Literary Production = Am. Lit. Read. Twenty-f. Ellipsis and Focus in Generative Grammar = Stud Generat Gramm Ellipsis and Focus in Generative Grammar = Stud. Generat. Gramm. Ellipsis in Comparatives = Stud Generat Gramm Ellipsis in Comparatives = Stud. Generat. Gramm. Ellipsis in Conjunction = Ling Arb Ellipsis in Conjunction = Ling. Arb. Ellipsis in Conjunction = Linguist Arb Ellipsis in Conjunction = Linguist. Arb. Elliptic and Parabolic Problems = Prog Nonlin Elliptic and Parabolic Problems = Prog. Nonlin. Elliptic and Parabolic Problems = Prog Nonlinear Diffe Elliptic and Parabolic Problems = Prog. Nonlinear. Diffe. Elliptic Curves, Modular Forms, & Fermat's Last Theorem = Ser Num Theory Elliptic Curves, Modular Forms, & Fermat's Last Theorem = Ser. Num. Theory. Elliptic Differential Equations: Theory and Numerical Treatment = Spr Ser Comput Math Elliptic Differential Equations: Theory and Numerical Treatment = Spr. Ser. Comput. Math. Elliptic Equations: An Introductory Course = Birkhauser Adv Texts Elliptic Equations: An Introductory Course = Birkhauser. Adv. Texts. Elliptic Genera and Vertex Operator Super-algebras = Lect Notes Math Elliptic Genera and Vertex Operator Super-algebras = Lect. Notes. Math. Elliptic Mixed, Transmission and Singular Crack Problems = Ems Tracts Math Elliptic Mixed, Transmission and Singular Crack Problems = Ems. Tracts. Math. Elliptic Partial Differential Equations and Quasiconformal Mappings in The Plane = Princ Math Ser Elliptic Partial Differential Equations and Quasiconformal Mappings in The Plane = Princ. Math. Ser. Elliptic Partial Differential Equations: Fredholm Theory of Elliptic Problems in Unbounded Domains, Vol 1 = Mg Math Elliptic Partial Differential Equations: Fredholm Theory of Elliptic Problems in Unbounded Domains, Vol 1 = Mg. Math. Elliptic Theory and Noncommutative Geometry: Nonlocal Elliptic Operators = Oper Theory Adv Appl Elliptic Theory and Noncommutative Geometry: Nonlocal Elliptic Operators = Oper. Theory Adv. Appl. Elliptic Theory On Singular Manifolds = Diff Int Eq Appl Elliptic Theory On Singular Manifolds = Diff. Int. Eq. Appl. Ellis Horwood Books in Information Technology = E Horwood B Ellis Horwood Books in Information Technology = E. Horwood B. Ellis Horwood Series in Analytical Chemistry = Ellis Hor S Ellis Horwood Series in Analytical Chemistry = Ellis Hor. S. Ellis Horwood Series in Biotechnology = E H S Biot Ellis Horwood Series in Biotechnology = E. H. S. Biot. Ellis Horwood Series in Mathematics and Its Applications = E H S Math Ellis Horwood Series in Mathematics and Its Applications = E. H. S. Math. Ellis Horwood Series in Neuroscience = E H S Neuro Ellis Horwood Series in Neuroscience = E. H. S. Neuro. Ellis Horwood Series in Pharmaceutical Technology, Incorporating Pharmacological Sciences = E Horwood Ser Pharm Ellis Horwood Series in Pharmaceutical Technology, Incorporating Pharmacological Sciences = E. Horwood Ser. Pharm. Ellis Horwood Series in Polymer Science and Technology = E H S Polym Ellis Horwood Series in Polymer Science and Technology = E. H. S. Polym. Ellis Horwood Series in Water and Wastewater Technology = E H S Water Ellis Horwood Series in Water and Wastewater Technology = E. H. S. Water Ellis Horwood Workshop Series = E H Worksh Ellis Horwood Workshop Series = E. H. Worksh. El Medico = Medico El Medico practico = Med Pract El Museo de Pontevedra = MusPontevedra El Odontologo = Odontologo El Palacio = Palacio El Protesista dental = Protes Dent El Salvador in The Aftermath of Peace: Crime, Uncertainty, and The Transition to Democracy = Ethnogr Polit Violen El Salvador in The Aftermath of Peace: Crime, Uncertainty, and The Transition to Democracy = Ethnogr. Polit. Violen. Elsevier Ergonomics Book Series = Els Erg B S Elsevier Ergonomics Book Series = Els. Erg. B. S. Elsevier Oceanography Series = Elsev Oceanogr Serie Elsevier Oceanography Series = Elsev. Oceanogr. Serie. Elsevier Series in Thermal and Fluid Sciences = Els Ser Therm Fluid Elsevier Series in Thermal and Fluid Sciences = Els. Ser. Therm. Fluid Elsevier Studies in Applied Electromagnetics in Materials = Els Appl Elect Mat Elsevier Studies in Applied Electromagnetics in Materials = Els. Appl. Elect. Mat. Elt Journal = Elt J Elt Journal = Elt J. El Torax = Torax El Trimestre Economico=Trim. Econ. El Trimestre economico = Trimest Econ Elucidating The Fuzzy Front End: Experiences From The Innorisk Project = Vtt Publ Elucidating The Fuzzy Front End: Experiences From The Innorisk Project = Vtt. Publ. Elusive Search for Peace : South Africa, Israel, Northern Ireland = Cont S Afr Elusive Search for Peace : South Africa, Israel, Northern Ireland = Cont. S. Afr. Elwyn Simons: A Search for Origins = Dev Primatol Elwyn Simons: A Search for Origins = Dev. Primatol. Elwyn Simons: A Search for Origins = Dev Primatol-prog Pr Elwyn Simons: A Search for Origins = Dev. Primatol-prog. Pr. Emac 94/95 Final Results - Workshop Proceedings = Esa Wpp Ser Emac 94/95 Final Results - Workshop Proceedings = Esa. Wpp. Ser. Emag: Electron Microscopy and Analysis Group Conference 2007 = J Phys Conf Ser Emag: Electron Microscopy and Analysis Group Conference 2007 = J. Phys. Conf. Ser. Emag-micro 89, Vols 1 and 2 = Inst Phys Conf Ser Emag-micro 89, Vols 1 and 2 = Inst. Phys. Conf. Ser. Emag-nano 2005: Imaging, Analysis and Fabrication On The Nanoscale = J Phys Conf Ser Emag-nano 2005: Imaging, Analysis and Fabrication On The Nanoscale = J. Phys. Conf. Ser. Emancipation of The Serfs in Russia = Basees-rout Ser Russ Emancipation of The Serfs in Russia = Basees-rout. Ser. Russ. Embedded and High Performance Computing = Embed High Perform C Embedded and High Performance Computing = Embed. High Perform. C. Embedded and Ubiquitous Computing - Euc 2005 = Lect Notes Comput Sc Embedded and Ubiquitous Computing - Euc 2005 = Lect. Notes. Comput. Sc. Embedded and Ubiquitous Computing - Euc 2005 Workshops, Proceedings = Lect Notes Comput Sc Embedded and Ubiquitous Computing - Euc 2005 Workshops, Proceedings = Lect. Notes. Comput. Sc. Embedded and Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Embedded and Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Embedded Computer Systems: Architectures, Modeling, and Simulation = Lect Notes Comput Sc Embedded Computer Systems: Architectures, Modeling, and Simulation = Lect. Notes. Comput. Sc. Embedded Computer Systems: Architectures, Modeling, and Simulation - Proceedings = Lect Notes Comput Sc Embedded Computer Systems: Architectures, Modeling, and Simulation - Proceedings = Lect. Notes. Comput. Sc. Embedded Computer Systems: Architectures, Modeling, and Simulation, Proceedings = Lect Notes Comput Sc Embedded Computer Systems: Architectures, Modeling, and Simulation, Proceedings = Lect. Notes. Comput. Sc. Embedded Liberalism and Its Critics = New Vis Secur Embedded Liberalism and Its Critics = New. Vis. Secur. Embedded Memories for Nano-scale Vlsis = Integr Circuit Syst Embedded Memories for Nano-scale Vlsis = Integr. Circuit. Syst. Embedded Multi-core Systems = Embed Multi-cor Syst Embedded Multi-core Systems = Embed. Multi-cor. Syst. Embedded Processor Design Challenges = Lect Notes Comput Sc Embedded Processor Design Challenges = Lect. Notes. Comput. Sc. Embedded Processors for Multimedia and Communications Ii = Proc Spie Embedded Processors for Multimedia and Communications Ii = Proc. Spie. Embedded Processors for Multimedia and Communications Ii = P Soc Photo-opt Ins Embedded Processors for Multimedia and Communications Ii = P. Soc. Photo-opt. Ins. Embedded Processors for Multimedia and Communications = P Soc Photo-opt Ins Embedded Processors for Multimedia and Communications = P. Soc. Photo-opt. Ins. Embedded Software and Systems = Lect Notes Comput Sc Embedded Software and Systems = Lect. Notes. Comput. Sc. Embedded Software and Systems, Proceedings = Lect Notes Comput Sc Embedded Software and Systems, Proceedings = Lect. Notes. Comput. Sc. Embedded Software Design and Programming of Multiprocessor System-on-chip = Embed Syst Embedded Software Design and Programming of Multiprocessor System-on-chip = Embed. Syst. Embedded Software, Proceedings = Lect Notes Comput Sc Embedded Software, Proceedings = Lect. Notes. Comput. Sc. Embedded System Design: Topics, Techniques and Trends = Int Fed Info Proc Embedded System Design: Topics, Techniques and Trends = Int. Fed. Info. Proc. Embedded Systems Design: Artist Roadmap for Research and Development = Lect Notes Comput Sc Embedded Systems Design: Artist Roadmap for Research and Development = Lect. Notes. Comput. Sc. Embedded Systems = Embed Syst Embedded Systems = Embed. Syst. Embedding Education Into Diabetes Practice = Front Diabetes Embedding Education Into Diabetes Practice = Front. Diabetes Embedding Problems in Symplectic Geometry = Degruyter Expos Math Embedding Problems in Symplectic Geometry = Degruyter. Expos. Math. Emblem in Renaissance and Baroque Europe = Symb Emblem Emblem in Renaissance and Baroque Europe = Symb. Emblem Embodied Artificial Intelligence = Lect Notes Artif Int Embodied Artificial Intelligence = Lect. Notes. Artif. Int. Embodiment and Education: Exploring Creatural Existence = Philos Educ-neth Embodiment and Education: Exploring Creatural Existence = Philos. Educ-neth. Emboding Intelligence in Structures and Integrated Systems = Adv Sci Tech Emboding Intelligence in Structures and Integrated Systems = Adv. Sci. Tech. Embodying Diversity = Gay Men I R Embodying Diversity = Gay. Men. I. R. Embodying Sociology: Retrospect, Progress and Prospects = Sociol Rev Monogr Embodying Sociology: Retrospect, Progress and Prospects = Sociol. Rev. Monogr. Embo Journal = Embo J Embo Journal = Embo J. EMBO Journal=EMBO J;; EMBO Journal = EMBO J. Embo Molecular Medicine = Embo Mol Med Embo Molecular Medicine = Embo Mol. Med. Embo Reports = Embo Rep Embo Reports = Embo Rep. EMBO reports = EMBO Rep EMBO Reports = EMBO Rep. Embryologia = Embryologia Embryologia = Embryologia (Nagoya) Embryology of Dolphins = Adv Anat Embryol Cel Embryology of Dolphins = Adv. Anat. Embryol. Cel. Embryonic Development and Manipulation in Animal Production = Portl Pr P Embryonic Development and Manipulation in Animal Production = Portl. Pr. P. Embryonic Origins of Defective Heart Development = Ann Ny Acad Sci Embryonic Origins of Defective Heart Development = Ann. Ny. Acad. Sci. Embryonic Stem Cells = Method Enzymol Embryonic Stem Cells = Method. Enzymol. Embryonic Stem Cell Therapy for Osteo-degenerative Diseases = Methods Mol Biol Embryonic Stem Cell Therapy for Osteo-degenerative Diseases = Methods. Mol. Biol. Emc 2009: Ieee International Symposium On Electromagnetic Compatibility, Technical Paper = Int Symp Elec Compat Emc 2009: Ieee International Symposium On Electromagnetic Compatibility, Technical Paper = Int. Symp. Elec. Compat. Emc of Analog Integrated Circuits = Analog Circ Sig Proc Emc of Analog Integrated Circuits = Analog Circ. Sig. Proc. Emc York 99: International Conference and Exhibition On Electromagnetic Compatibility = Iee Conf Publ Emc York 99: International Conference and Exhibition On Electromagnetic Compatibility = Iee. Conf. Publ. Eme eme; estudios dominicanos = Eme Eme Estud Domin E & M Ekonomie A Management = E M Ekon Manag E & M Ekonomie A Management = E M Ekon. Manag. Emergence, Analysis and Evolution of Structures: Concepts and Strategies Across Disciplines = Underst Complex Syst Emergence, Analysis and Evolution of Structures: Concepts and Strategies Across Disciplines = Underst. Complex. Syst. Emergence and Change in Early Urban Societies = Fund Iss Arch Emergence and Change in Early Urban Societies = Fund. Iss. Arch. Emergence of Cosmic Structure = Aip Conf Proc Emergence of Cosmic Structure = Aip. Conf. Proc. Emergence of Greater China = Stud Chin Econ Emergence of Greater China = Stud. Chin. Econ. Emergence of Holocaust Education in American Schools = Second Educ Chang Wo Emergence of Holocaust Education in American Schools = Second. Educ. Chang. Wo. Emergence of Language = Carn S Cogn Emergence of Language = Carn. S. Cogn. Emergence of Modern Hebrew Literature in Babylon From 1735-1950 = Shofar Suppl Jew Stu Emergence of Modern Hebrew Literature in Babylon From 1735-1950 = Shofar. Suppl. Jew. Stu. Emergence of The American Frontier Hero 1682-1826: Gender, Action, and Emotion = Am Lit Read Twenty-f Emergence of The American Frontier Hero 1682-1826: Gender, Action, and Emotion = Am. Lit. Read. Twenty-f. Emergence Or Reduction ? = Grundl Komm Emergence Or Reduction ? = Grundl. Komm. Emergencias = Emergencias Emergency department news : EDN = Emerg Dep News Emergency Department News = Emerg. Dep. News Emergency Economic Stabilization Act = Financ I Serv Ser Emergency Economic Stabilization Act = Financ. I. Serv. Ser. Emergency = Emergency Emergency health services quarterly = Emerg Health Serv Q Emergency Health Services Quarterly = Emerg. Health Serv. Q. Emergency health services review = Emerg Health Serv Rev Emergency Health Services Review = Emerg. Health Serv. Rev. Emergency Medical Services = Emergen Med Serv Emergency Medical Services = Emergen. Med. Serv. Emergency medical services = Emerg Med Serv Emergency Medical Services = Emerg. Med. Serv. Emergency medicine Australasia : EMA = Emerg Med Australas Emergency Medicine Australasia = Emerg Med Australas Emergency Medicine Australasia = Emerg. Med. Australas. Emergency Medicine Clinics of North America = Emerg Med Clin N Am Emergency Medicine Clinics of North America = Emerg. Med. Clin. N. Am. Emergency medicine clinics of North America = Emerg Med Clin North Am Emergency Medicine Clinics of North America=Emerg Med Clin North Am;; Emergency Medicine Clinics of North America = Emerg. Med. Clin. North Am. Emergency Medicine = Emergen Med Emergency Medicine = Emergen. Med. Emergency medicine = Emerg Med Emergency Medicine = Emerg. Med. Emergency medicine (Fremantle, W.A.) = Emerg Med (Fremantle) Emergency Medicine Journal = Emerg Med J Emergency Medicine Journal = Emerg. Med. J. Emergency medicine journal : EMJ = Emerg Med J Emergency medicine reports = Emerg Med Rep Emergency Nurse = Emerg. Nurse Emergency nurse : the journal of the RCN Accident and Emergency Nursing Association = Emerg Nurse Emergency planning digest = Emerg Plann Dig Emergency Planning Digest = Emerg. Plann. Dig. Emergency Psychiatry in A Changing World = Int Congr Ser Emergency Psychiatry in A Changing World = Int. Congr. Ser. Emergency radiology = Emerg Radiol Emergent Computer Literacy: A Developmental Perspective = Routl Res Educ Emergent Computer Literacy: A Developmental Perspective = Routl. Res. Educ. Emergent Intelligence of Networked Agents = Stud Comp Intell Emergent Intelligence of Networked Agents = Stud. Comp. Intell. Emergent Intelligence of Networked Agents = Stud Comput Intell Emergent Intelligence of Networked Agents = Stud. Comput. Intell. Emergent Lingua Francas and World Orders = Routl Stud Socioling Emergent Lingua Francas and World Orders = Routl. Stud. Socioling. Emergent Literacy in Early Childhood Education = Ycf Ser Emergent Literacy in Early Childhood Education = Ycf. Ser. Emergent Macroeconomics: An Agent-based Approach to Business Fluctuations = New Econ Windows Emergent Macroeconomics: An Agent-based Approach to Business Fluctuations = New. Econ. Windows. Emergent Neural Computational Architectures Based On Neuroscience: Towards Neuroscience-inspired Computing = Lect Notes Artif Int Emergent Neural Computational Architectures Based On Neuroscience: Towards Neuroscience-inspired Computing = Lect. Notes. Artif. Int. Emergent Nonlinear Phenomena in Bose-einstein Condensates: Theory and Experiment = Springer Ser Atom Op Emergent Nonlinear Phenomena in Bose-einstein Condensates: Theory and Experiment = Springer. Ser. Atom. Op. Emergent Problems in Nonlinear Systems and Control = Lect Notes Contr Inf Emergent Problems in Nonlinear Systems and Control = Lect. Notes. Contr. Inf. Emergent Properties in Natural and Artificial Dynamical Systems = Underst Complex Syst Emergent Properties in Natural and Artificial Dynamical Systems = Underst. Complex. Syst. Emergent Web Intelligence: Advanced Information Retrieval = Adv Inform Knowl Pro Emergent Web Intelligence: Advanced Information Retrieval = Adv. Inform. Knowl. Pro. Emergent Web Intelligence: Advanced Semantic Technologies = Adv Inform Knowl Pro Emergent Web Intelligence: Advanced Semantic Technologies = Adv. Inform. Knowl. Pro. Emerging and Endemic Pathogens: Advances in Surveillance, Detection and Identification = Nato Sci Peace Sec A Emerging and Endemic Pathogens: Advances in Surveillance, Detection and Identification = Nato. Sci. Peace. Sec. A. Emerging Applications of Algebraic Geometry = Ima Vol Math Appl Emerging Applications of Algebraic Geometry = Ima. Vol. Math. Appl. Emerging Applications of Computer Vision - 25th Aipr Workshop = P Soc Photo-opt Ins Emerging Applications of Computer Vision - 25th Aipr Workshop = P. Soc. Photo-opt. Ins. Emerging Applications of Vacuum-arc Produced Plasma, Ion and Electron Beams = Nato Sci Ser Ii-math Emerging Applications of Vacuum-arc Produced Plasma, Ion and Electron Beams = Nato. Sci. Ser. Ii-math. Emerging Applications of Vacuum-arc Produced Plasma, Ion and Electron Beams = Nato Sci Ser Ii Math Emerging Applications of Vacuum-arc Produced Plasma, Ion and Electron Beams = Nato. Sci. Ser. Ii. Math. Emerging Areas of Human Rights in The 21st Century: The Role of The Universal Declaration of Human Rights = Rout Res Hum Rts Law Emerging Areas of Human Rights in The 21st Century: The Role of The Universal Declaration of Human Rights = Rout. Res. Hum. Rts. Law. Emerging Artificial Intelligence Applications in Computer Engineering = Front Artif Intel Ap Emerging Artificial Intelligence Applications in Computer Engineering = Front. Artif. Intel. Ap. Emerging Biological Threats = Nato Sci Ser I Life Emerging Biological Threats = Nato. Sci. Ser. I. Life. Emerging Cancer Therapeutics = Emerg Cancer Ther Emerging Cancer Therapeutics = Emerg. Cancer Ther. Emerging Challenges for Security, Privacy and Trust = Int Fed Info Proc Emerging Challenges for Security, Privacy and Trust = Int. Fed. Info. Proc. Emerging Clusters: Theoretical, Empirical and Political Perspectives On Initial Stage of Cluster Evolution = Ind Dynam Entrep Inn Emerging Clusters: Theoretical, Empirical and Political Perspectives On Initial Stage of Cluster Evolution = Ind. Dynam. Entrep. Inn. Emerging Clusters: Theoretical, Empirical and Political Perspectives On Initial Stage of Cluster Evolution = Ind Dyn Entrep Innov Emerging Clusters: Theoretical, Empirical and Political Perspectives On Initial Stage of Cluster Evolution = Ind. Dyn. Entrep. Innov. Emerging Communication-studies On New Technologies and Practices in Communication = Emerg Commun-stud Ne Emerging Communication-studies On New Technologies and Practices in Communication = Emerg. Commun-stud. Ne. Emerging Communities: Integrating Networked Information Into Library Services = Cl Lib Appl Emerging Communities: Integrating Networked Information Into Library Services = Cl. Lib. Appl. Emerging Components and Technologies for All-optical Networks = P Soc Photo-opt Ins Emerging Components and Technologies for All-optical Networks = P. Soc. Photo-opt. Ins. Emerging Components and Technologies for All-optical Photonic Systems Ii = P Soc Photo-opt Ins Emerging Components and Technologies for All-optical Photonic Systems Ii = P. Soc. Photo-opt. Ins. Emerging Concepts in Cardiology = Emerg Concept Cardio Emerging Concepts in Cardiology = Emerg. Concept. Cardio. Emerging Conceptual, Ethical and Policy Issues in Bionanotechnology = Philos Med Emerging Conceptual, Ethical and Policy Issues in Bionanotechnology = Philos. Med. Emerging Constitutional Law of The European Union: German and Polish Perspectives = Beitr Ausland Offent Emerging Constitutional Law of The European Union: German and Polish Perspectives = Beitr. Ausland. Offent. Emerging Digital Economy: Entrepreneurship, Clusters, and Policy = Adv Spat Sci Emerging Digital Economy: Entrepreneurship, Clusters, and Policy = Adv. Spat. Sci. Emerging Digital Micromirror Device Based Systems and Applications Iii = Proc Spie Emerging Digital Micromirror Device Based Systems and Applications Iii = Proc. Spie. Emerging Digital Micromirror Device Based Systems and Applications Ii = Proc Spie Emerging Digital Micromirror Device Based Systems and Applications Ii = Proc. Spie. Emerging Digital Micromirror Device Based Systems and Applications = Proc Spie Emerging Digital Micromirror Device Based Systems and Applications = Proc. Spie. Emerging Digital Micromirror Device Based Systems and Applications = P Soc Photo-opt Ins Emerging Digital Micromirror Device Based Systems and Applications = P. Soc. Photo-opt. Ins. Emerging Directions in Embedded and Ubiquitous Computing = Lect Notes Comput Sc Emerging Directions in Embedded and Ubiquitous Computing = Lect. Notes. Comput. Sc. Emerging Directions in Embedded and Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Emerging Directions in Embedded and Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Emerging Drugs and Targets for Alzheimer's Disease Vol 1 = Rsc Drug Discov Emerging Drugs and Targets for Alzheimer's Disease Vol 1 = Rsc. Drug. Discov. Emerging Drugs and Targets for Alzheimer's Disease, Vol 2: Neuronal Plasticity, Neuronal Protection and Other Miscellaneous Strategies = Rsc Drug Discov Emerging Drugs and Targets for Alzheimer's Disease, Vol 2: Neuronal Plasticity, Neuronal Protection and Other Miscellaneous Strategies = Rsc. Drug. Discov. Emerging Economies and The Transformation of International Business: Brazil, Russia, India and China (brics) = New Horiz Int Bus Emerging Economies and The Transformation of International Business: Brazil, Russia, India and China (brics) = New. Horiz. Int. Bus. Emerging Financial Markets and The Role of International Financial Organizations = Int Econ Dev Law Ser Emerging Financial Markets and The Role of International Financial Organizations = Int. Econ. Dev. Law. Ser. Emerging Foodborne Pathogens = Woodhead Food Ser Emerging Foodborne Pathogens = Woodhead. Food. Ser. Emerging Geminiviral Diseases and Their Management = Bot Res Pract Emerging Geminiviral Diseases and Their Management = Bot. Res. Pract. Emerging High-speed Local-area Networks and Wide-area Networks = P Soc Photo-opt Ins Emerging High-speed Local-area Networks and Wide-area Networks = P. Soc. Photo-opt. Ins. Emerging Infections 7 = Emerg Infect Emerging Infections 7 = Emerg. Infect. Emerging Infections 9 = Emerg Infect Emerging Infections 9 = Emerg. Infect. Emerging Infections (series) = Emerg Infect Emerging Infections (series) = Emerg. Infect. Emerging Infections Series = Emerg Infect Emerging Infections Series = Emerg. Infect. Emerging infectious diseases = Emerg Infect Dis Emerging Infectious Diseases=Emerg Infect Dis;; Emerging Infectious Diseases = Emerg Infect Dis Emerging Infectious Diseases = Emerg. Infect. Dis. Emerging Infectious Diseases of The 21st Century = Emerg Inf Dis 21st C Emerging Infectious Diseases of The 21st Century = Emerg. Inf. Dis. 21st C. Emerging Information Infrastructure: Players, Issues, Technology & Strategies = P Assoc Res Lib Emerging Information Infrastructure: Players, Issues, Technology & Strategies = P. Assoc. Res. Lib. Emerging Intellectual Property Paradigm: Perspectives From Canada = Queen Mary Stud Inte Emerging Intellectual Property Paradigm: Perspectives From Canada = Queen. Mary. Stud. Inte. Emerging Intelligent Computing Technology and Applications, Proceedings = Lect Notes Comput Sc Emerging Intelligent Computing Technology and Applications, Proceedings = Lect. Notes. Comput. Sc. Emerging Intelligent Computing Technology and Applications: With Aspects of Artificial Intelligence = Lect Notes Artif Int Emerging Intelligent Computing Technology and Applications: With Aspects of Artificial Intelligence = Lect. Notes. Artif. Int. Emerging Issues in Food Safety = Emerg Iss Food Saf Emerging Issues in Food Safety = Emerg. Iss. Food Saf. Emerging Issues in Inflammatory Bowel Diseases = Falk Symp Emerging Issues in Inflammatory Bowel Diseases = Falk. Symp. Emerging Issues in Intellectual Property: Trade, Technology and Market Freedom Essays in Honour of Herchel Smith = Queen Mary Stud Inte Emerging Issues in Intellectual Property: Trade, Technology and Market Freedom Essays in Honour of Herchel Smith = Queen. Mary. Stud. Inte. Emerging Issues in International Business Research = New Horiz Int Bus Emerging Issues in International Business Research = New. Horiz. Int. Bus. Emerging Issues in The 21st Century World-system, Vol 1 = Contrib Econ Econ Hi Emerging Issues in The 21st Century World-system, Vol 1 = Contrib. Econ. Econ. Hi. Emerging Issues in The 21st Century World-system, Vol 2 = Contrib Econ Econ Hi Emerging Issues in The 21st Century World-system, Vol 2 = Contrib. Econ. Econ. Hi. Emerging Issues in Water and Infectious Disease Series = Emerg I Water Infect Emerging Issues in Water and Infectious Disease Series = Emerg. I. Water Infect. Emerging Liquid Crystal Technologies Iii = P Soc Photo-opt Ins Emerging Liquid Crystal Technologies Iii = P. Soc. Photo-opt. Ins. Emerging Liquid Crystal Technologies Ii = P Soc Photo-opt Ins Emerging Liquid Crystal Technologies Ii = P. Soc. Photo-opt. Ins. Emerging Liquid Crystal Technologies Iv = P Soc Photo-opt Ins Emerging Liquid Crystal Technologies Iv = P. Soc. Photo-opt. Ins. Emerging Liquid Crystal Technologies = P Soc Photo-opt Ins Emerging Liquid Crystal Technologies = P. Soc. Photo-opt. Ins. Emerging Liquid Crystal Technologies Vi = Proc Spie Emerging Liquid Crystal Technologies Vi = Proc. Spie. Emerging Liquid Crystal Technologies V = Proc Spie Emerging Liquid Crystal Technologies V = Proc. Spie. Emerging Lithographic Technologies Iii, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Ii = P Soc Photo-opt Ins Emerging Lithographic Technologies Ii = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Iv = P Soc Photo-opt Ins Emerging Lithographic Technologies Iv = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Ix, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Ix, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies = P Soc Photo-opt Ins Emerging Lithographic Technologies = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Viii = Proc Spie Emerging Lithographic Technologies Viii = Proc. Spie. Emerging Lithographic Technologies Viii = P Soc Photo-opt Ins Emerging Lithographic Technologies Viii = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Vii, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Vii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Vi, Pts 1 and 2 = Proc Spie Emerging Lithographic Technologies Vi, Pts 1 and 2 = Proc. Spie. Emerging Lithographic Technologies Vi, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Vi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies V = Proc Spie Emerging Lithographic Technologies V = Proc. Spie. Emerging Lithographic Technologies V = P Soc Photo-opt Ins Emerging Lithographic Technologies V = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Xii, Pts 1 and 2 = Proc Spie Emerging Lithographic Technologies Xii, Pts 1 and 2 = Proc. Spie. Emerging Lithographic Technologies Xii, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Xii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies Xi, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies Xi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Lithographic Technologies X, Pts 1 and 2 = Proc Spie Emerging Lithographic Technologies X, Pts 1 and 2 = Proc. Spie. Emerging Lithographic Technologies X, Pts 1 and 2 = P Soc Photo-opt Ins Emerging Lithographic Technologies X, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Emerging Market Capital Flows = Nyu Sa Ctr Ser F M I Emerging Market Capital Flows = Nyu. Sa. Ctr. Ser. F. M. I. Emerging Markets Finance and Trade = Emerg Mark Financ Tr Emerging Markets Finance and Trade = Emerg. Mark. Financ. Tr. Emerging Markets Review = Emerg Mark Rev Emerging Markets Review = Emerg. Mark. Rev. E-merging Media: Communication and The Media Economy of The Future = Eur Commun Counc Rep E-merging Media: Communication and The Media Economy of The Future = Eur. Commun. Counc. Rep. Emerging Nanotechnologies: Test, Defect Tolerance, and Reliability = Front Electron Test Emerging Nanotechnologies: Test, Defect Tolerance, and Reliability = Front. Electron. Test. Emerging Optoelectronic Applications = P Soc Photo-opt Ins Emerging Optoelectronic Applications = P. Soc. Photo-opt. Ins. Emerging Optoelectronic Technologies = P Soc Photo-opt Ins Emerging Optoelectronic Technologies = P. Soc. Photo-opt. Ins. Emerging Patterns of Social Demand and University Reform: Through A Glass Darkly = Iss High Educ Emerging Patterns of Social Demand and University Reform: Through A Glass Darkly = Iss. High. Educ. Emerging Personal Wireless Communications = Int Fed Info Proc Emerging Personal Wireless Communications = Int. Fed. Info. Proc. Emerging Physics of Consciousness = Front Collect Emerging Physics of Consciousness = Front. Collect. Emerging Powers in Global Governance: Lessons From The Heiligendamm Process = Stud Int Gov Emerging Powers in Global Governance: Lessons From The Heiligendamm Process = Stud. Int. Gov. Emerging Raman Applications and Techniques in Biomedical and Pharmaceutical Fields = Biol Med Phys Biomed Emerging Raman Applications and Techniques in Biomedical and Pharmaceutical Fields = Biol. Med. Phys. Biomed. Emerging Semantic Web = Fr Art Int Emerging Semantic Web = Fr. Art. Int. Emerging Semantic Web = Front Artif Intel Ap Emerging Semantic Web = Front. Artif. Intel. Ap. Emerging Societies - Coexistence of Childhood Malnutrition and Obesity = Nestle Nutr Works Se Emerging Societies - Coexistence of Childhood Malnutrition and Obesity = Nestle. Nutr. Works. Se. Emerging Solutions for Future Manufacturing Systems = Int Fed Info Proc Emerging Solutions for Future Manufacturing Systems = Int. Fed. Info. Proc. Emerging Technologies and Information Systems for The Knowledge Society, Proceedings = Lect Notes Artif Int Emerging Technologies and Information Systems for The Knowledge Society, Proceedings = Lect. Notes. Artif. Int. Emerging Technologies for Future Generation Wireless Communications = Proc Spie Emerging Technologies for Future Generation Wireless Communications = Proc. Spie. Emerging Technologies for Future Generation Wireless Communications = P Soc Photo-opt Ins Emerging Technologies for Future Generation Wireless Communications = P. Soc. Photo-opt. Ins. Emerging Technologies for Materials and Chemicals From Biomass = Acs Sym Ser Emerging Technologies for Materials and Chemicals From Biomass = Acs. Sym. Ser. Emerging Technologies in Hazardous Waste Management = Acs Sym Ser Emerging Technologies in Hazardous Waste Management = Acs. Sym. Ser. Emerging Technologies in Hazardous Waste Management Ii = Acs Sym Ser Emerging Technologies in Hazardous Waste Management Ii = Acs. Sym. Ser. Emerging Technologies in Hazardous Waste Management Iii = Acs Sym Ser Emerging Technologies in Hazardous Waste Management Iii = Acs. Sym. Ser. Emerging Technologies in Hazardous Waste Management Iv = Acs Sym Ser Emerging Technologies in Hazardous Waste Management Iv = Acs. Sym. Ser. Emerging Technologies in Hazardous Waste Management V = Acs Sym Ser Emerging Technologies in Hazardous Waste Management V = Acs. Sym. Ser. Emerging Technologies in Knowledge Discovery and Data Mining = Lect Notes Comput Sc Emerging Technologies in Knowledge Discovery and Data Mining = Lect. Notes. Comput. Sc. Emerging Technologies in Measurement and Control = Tech Papers Isa Emerging Technologies in Measurement and Control = Tech. Papers. Isa. Emerging Technologies in Non-destructive Testing = Proc Monogr Eng Wate Emerging Technologies in Non-destructive Testing = Proc. Monogr. Eng. Wate. Emerging Technologies in Plastics Recycling = Acs Sym Ser Emerging Technologies in Plastics Recycling = Acs. Sym. Ser. Emerging Technologies Update, Vol Ii = Tech Papers Isa Emerging Technologies Update, Vol Ii = Tech. Papers. Isa. Emerging themes in epidemiology = Emerg Themes Epidemiol Emerging Themes in International Management of Human Resources = Res Org Sci Emerging Themes in International Management of Human Resources = Res. Org. Sci. Emerging Themes in Polymer Science = Roy Soc Ch Emerging Themes in Polymer Science = Roy. Soc. Ch. Emerging Threats to Energy Security and Stability = Nato Sec Sci Emerging Threats to Energy Security and Stability = Nato. Sec. Sci. Emerging Topics in Ecotoxicology = Emerg Top Ecotoxicol Emerging Topics in Ecotoxicology = Emerg. Top. Ecotoxicol. Emerging Topics in Heat and Mass Transfer in Porous Media = Theor Appl Trans Por Emerging Topics in Heat and Mass Transfer in Porous Media = Theor. Appl. Trans. Por. Emerging Topics On Differential Geometry and Graph Theory = Math Res Dev Emerging Topics On Differential Geometry and Graph Theory = Math. Res. Dev. Emerging Trends and Issues in Management Consulting: Consulting As A Janus-faced Reality = Res Manag Consult Emerging Trends and Issues in Management Consulting: Consulting As A Janus-faced Reality = Res. Manag. Consult. Emerging Trends and Novel Materials in Photonics = Aip Conf Proc Emerging Trends and Novel Materials in Photonics = Aip. Conf. Proc. Emerging Trends in Information and Communication Security, Proceedings = Lect Notes Comput Sc Emerging Trends in Information and Communication Security, Proceedings = Lect. Notes. Comput. Sc. Emerging Trends in Technological Innovation = Ifip Adv Inf Comm Te Emerging Trends in Technological Innovation = Ifip. Adv. Inf. Comm. Te. Emerging Trends in Visual Computing = Lect Notes Comput Sc Emerging Trends in Visual Computing = Lect. Notes. Comput. Sc. Emerging Web Services Technology Vol Iii = Whitestein Ser Softw Emerging Web Services Technology Vol Iii = Whitestein. Ser. Softw. Emerging Web Services Technology Vol Iii = Ws So Ag Te Emerging Web Services Technology Vol Iii = Ws. So. Ag. Te. Emerging Web Services Technology, Vol Ii = Whitestein Ser Softw Emerging Web Services Technology, Vol Ii = Whitestein. Ser. Softw. Emerging Web Services Technology, Vol Ii = Ws So Ag Te Emerging Web Services Technology, Vol Ii = Ws. So. Ag. Te. Emerging Web Services Technology = Whitestein Ser Softw Emerging Web Services Technology = Whitestein. Ser. Softw. Emerging Web Services Technology = Ws So Ag Te Emerging Web Services Technology = Ws. So. Ag. Te. Emerita = Emerita Emerita / Junta para Ampliacion de Estudios, Centro de Estudios Historicos = Emerita Emerita. Revista de linguistica y filología clasica = Emerita Emerson Bicentennial Essays = Mass Hist Soc Stud Emerson Bicentennial Essays = Mass. Hist. Soc. Stud. Emics and Etics = Front Anthr Emics and Etics = Front. Anthr. Emil and Kathleen Sick Lecture-book Series in Western History and Biography = Emil Kathl Sick Lect Emil and Kathleen Sick Lecture-book Series in Western History and Biography = Emil Kathl. Sick Lect. Emilia preromana = EmPrerom Emily Dickinson Bulletin = Emily Dickinson Bull Emily Dickinson Bulletin = Emily Dickinson Bull. Emisor demografico = Emisor Demogr Emission Lines From Jet Flows = Rev Mex Ast Astr Emission Lines From Jet Flows = Rev. Mex. Ast. Astr. Emissive Materials: Nanomaterials = Adv Polym Sci Emissive Materials: Nanomaterials = Adv. Polym. Sci. E&mj-engineering and Mining Journal = Eng Min J E&mj-engineering and Mining Journal = Eng. Min. J. Emj-engineering Management Journal = Emj-eng Manag J Emj-engineering Management Journal = Emj-eng. Manag. J. Emlc 2005: 21st European Mask and Lithography Conference = P Soc Photo-opt Ins Emlc 2005: 21st European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. Emlc 2006: 22nd European Mask and Lithography Conference = P Soc Photo-opt Ins Emlc 2006: 22nd European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. Emlc 2007: 23rd European Mask and Lithography Conference = Proc Spie Emlc 2007: 23rd European Mask and Lithography Conference = Proc. Spie. Emlc 2007: 23rd European Mask and Lithography Conference = P Soc Photo-opt Ins Emlc 2007: 23rd European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. Emlc 2008: 24th European Mask and Lithography Conference = Proc Spie Emlc 2008: 24th European Mask and Lithography Conference = Proc. Spie. Emlc 2008: 24th European Mask and Lithography Conference = P Soc Photo-opt Ins Emlc 2008: 24th European Mask and Lithography Conference = P. Soc. Photo-opt. Ins. Emmanuel Levinas = Routl Crit Thinkers Emmanuel Levinas = Routl. Crit. Thinkers. Emmi Workshop and 26th Max Born Symposium: Three Days of Strong Interactions = Acta Phys Pol B Pr S Emmi Workshop and 26th Max Born Symposium: Three Days of Strong Interactions = Acta. Phys. Pol. B. Pr. S. Emory international law review = Emory Int Law Rev Emory law journal = Emory Law J Emory Law Journal = Emory Law J Emory Law Journal = Emory Law J. Emory magazine = Emory Mag Emory Symposia in Cognition = Emory S Cog Emory Symposia in Cognition = Emory S. Cog. Emotional Intelligence: A Cybernetic Approach = Stud Comput Intell Emotional Intelligence: A Cybernetic Approach = Stud. Comput. Intell. Emotional Labour in Health Care: The Unmanaged Heart of Nursing = Crit Stud Health Soc Emotional Labour in Health Care: The Unmanaged Heart of Nursing = Crit. Stud. Health Soc. Emotional Motor System = Prog Brain Res Emotional Motor System = Prog. Brain. Res. Emotion and The Law: Psychological Perspectives = Nebr Sym Motiv Emotion and The Law: Psychological Perspectives = Nebr. Sym. Motiv. Emotion = Emotion Emotions and Organizational Dynamism = Res Emotion Organ Emotions and Organizational Dynamism = Res. Emotion. Organ. Emotions and Risky Technologies = Int Lib Eth Law Tech Emotions and Risky Technologies = Int. Lib. Eth. Law. Tech. Emotions and Risky Technologies = Int Libr Eth Law Tec Emotions and Risky Technologies = Int. Libr. Eth. Law. Tec. Emotions, Ethics and Decision-making = Res Emotion Organ Emotions, Ethics and Decision-making = Res. Emotion. Organ. Emotions in Groups, Organizations and Cultures = Res Emotion Organ Emotions in Groups, Organizations and Cultures = Res. Emotion. Organ. Emotions Inside Out = Ann Ny Acad Sci Emotions Inside Out = Ann. Ny. Acad. Sci. Emotion (Washington, D.C.) = Emotion Empathie, Mitleid, Sympathie -rezeptionslenkende Strukturen Mittelalterlicher Texte in Bearbeitungen Des Willehalm-stoffs = Quell Forsch Lit Kul Empathie, Mitleid, Sympathie -rezeptionslenkende Strukturen Mittelalterlicher Texte in Bearbeitungen Des Willehalm-stoffs = Quell. Forsch. Lit. Kul. Empedocles Redivivus: Poetry and Analogy in Lucretius = Stud Classics Empedocles Redivivus: Poetry and Analogy in Lucretius = Stud. Classics. Emperor Has No Clothes: Teaching About Race and Racism to People Who Don't Want to Know = Educ Leader Soc Just Emperor Has No Clothes: Teaching About Race and Racism to People Who Don't Want to Know = Educ. Leader. Soc. Just. Emphasis, Nursing = Emphasis Nurs. Emphasis, nursing / Los Angeles County, Harbor-UCLA Medical Center, Nursing Department = Emphasis Nurs Empire and Neoliberalism in Asia = Polit Asia Empire and Neoliberalism in Asia = Polit. Asia Empire Journal of Experimental Agriculture = Empire J Exp Agr Empire Journal of Experimental Agriculture = Empire J. Exp. Agr. Empire of Stereotypes: Germaine De Stael and The Idea of Italy = Ital Ital Am Stud Empire of Stereotypes: Germaine De Stael and The Idea of Italy = Ital. Ital. Am. Stud. Empires and Boundaries: Race, Class, and Gender in Colonial Settings = Rout Stud Cult Hist Empires and Boundaries: Race, Class, and Gender in Colonial Settings = Rout. Stud. Cult. Hist. Empire state report = Emp State Rep Empirica=Empirica Empirical Analysis of Entrepreneurship and Economic Growth = Int Stud Entrep Empirical Analysis of Entrepreneurship and Economic Growth = Int. Stud. Entrep. Empirical Approaches to Language Typology = Emp App Lan Empirical Approaches to Language Typology = Emp. App. Lan. Empirical Approaches to Language Typology = Empir Approach Lang Empirical Approaches to Language Typology = Empir. Approach. Lang. Empirical economics = Empir Econ Empirical Economics = Empir Econ Empirical Economics = Empir. Econ. Empirical Economics=Empirical Econ. Empirically Supported Therapies = Banf Int Behav Ser Empirically Supported Therapies = Banf. Int. Behav. Ser. Empirical Methods and Studies in Software Engineering: Experience From Esernet = Lect Notes Comput Sc Empirical Methods and Studies in Software Engineering: Experience From Esernet = Lect. Notes. Comput. Sc. Empirical Methods in Natural Language Generation: Data-oriented Methods and Empirical Evaluation = Lect Notes Artif Int Empirical Methods in Natural Language Generation: Data-oriented Methods and Empirical Evaluation = Lect. Notes. Artif. Int. Empirical Modeling of The Economy and The Environment = Zew Econ Stud Empirical Modeling of The Economy and The Environment = Zew. Econ. Stud. Empirical Modeling of The Economy and The Environment = Zew Econ Studies Empirical Modeling of The Economy and The Environment = Zew. Econ. Studies. Empirical Processes With Applications to Statistics = Class Appl Math Empirical Processes With Applications to Statistics = Class. Appl. Math. Empirical Research in Theatre = Empirical Res Theat Empirical Research in Theatre = Empirical Res. Theat. Empirical Software Engineering = Empir Softw Eng Empirical Software Engineering = Empir. Softw. Eng. Empirical Software Engineering Issues: Critical Assessment and Future Directions = Lect Notes Comput Sc Empirical Software Engineering Issues: Critical Assessment and Future Directions = Lect. Notes. Comput. Sc. Empirical Studies of Commercial Policy = Nber Conf R Empirical Studies of Commercial Policy = Nber. Conf. R. Empirische Und Methodologische Beitrage Zu Socialwissenschaft = Emp Meth B Empirische Und Methodologische Beitrage Zu Socialwissenschaft = Emp. Meth. B. Empleo y desempleo = Empl Desempl Employee Benefit Issues, Vol 45 = Emp Ben Iss Employee Benefit Issues, Vol 45 = Emp. Ben. Iss. Employee benefit plan review = Employee Benefit Plan Rev Employee Benefit Plan Review = Employee Benefit Plan Rev. Employee Benefits Issues = Emp Ben Iss Employee Benefits Issues = Emp. Ben. Iss. Employee Benefits Issues, Vol 43 = Emp Ben Iss Employee Benefits Issues, Vol 43 = Emp. Ben. Iss. Employee benefits journal = Empl Benefits J Employee Benefits Journal = Empl. Benefits J. Employee Health and Fitness Newsletter = Employee Health Fitness Newsl. Employee Health, Coping and Methodologies = Res Occup Stress Wel Employee Health, Coping and Methodologies = Res. Occup. Stress. Wel. Employee health & fitness = Empl Health Fit Employee relations law journal = Employee Relat Law J Employee Relations Law Journal = Employee Relat Law J Employee Relations Law Journal = Employee Relat. Law J. Employment and Disability : Trends and Issues for The 1990s = Switzer Mon Employment and Disability : Trends and Issues for The 1990s = Switzer. Mon. Employment Deconcentration in European Metropolitan Areas: Market Forces Versus Planning Regulations = Geojournal Lib Employment Deconcentration in European Metropolitan Areas: Market Forces Versus Planning Regulations = Geojournal. Lib. Employment, Economic Development and Migration in Southern Europe and The Maghreb, Conference Proceedings = Rand Conf Proc Employment, Economic Development and Migration in Southern Europe and The Maghreb, Conference Proceedings = Rand. Conf. Proc. Employment of Women in Chinese Culture: Half The Sky = New Horiz Manag Employment of Women in Chinese Culture: Half The Sky = New. Horiz. Manag. Employment relations today = Employ Relat Today Employment Relations Today = Employ. Relat. Today Empmd Monograph Series = Empmd Monog Empmd Monograph Series = Empmd Monog. Emporium of The World = Sinica Leidensia Emporium of The World = Sinica. Leidensia. Empowering Women Through Literacy: Views From Experience = Adult Educ Spec Top Empowering Women Through Literacy: Views From Experience = Adult. Educ. Spec. Top. Empúries. Revista de prehistòria, arqueologia i etnologia = Empuries E-mrs 2003 Fall Meeting, Symposia A and C, Proceedings = Phys Status Solidi C E-mrs 2003 Fall Meeting, Symposia A and C, Proceedings = Phys. Status. Solidi. C. E-mrs 2004 Fall Meeting Symposia C and F = Phys Status Solidi C E-mrs 2004 Fall Meeting Symposia C and F = Phys. Status. Solidi. C Ems Series of Congress Reports = Ems Ser Congr Rep Ems Series of Congress Reports = Ems Ser. Congr. Rep. Ems Series of Lectures in Mathematics = Ems Ser Lect Math Ems Series of Lectures in Mathematics = Ems Ser. Lect. Math. Ems Textbooks in Mathematics = Ems Textb Math Ems Textbooks in Mathematics = Ems Textb. Math. Ems Tracts in Mathematics = Ems Tracts Math Ems Tracts in Mathematics = Ems Tracts Math. EMT Journal = EMT J. Emu = Emu Emulsions - A Fundamental and Practical Approach = Nato Adv Sci I C-mat Emulsions - A Fundamental and Practical Approach = Nato. Adv. Sci. I. C-mat. Emulsion Science: Basic Principles - An Overview = Springer Tr Mod Phys Emulsion Science: Basic Principles - An Overview = Springer. Tr. Mod. Phys. Emulsions : Fundamentals and Applications in The Petroleum Industry = Adv Chem Ser Emulsions : Fundamentals and Applications in The Petroleum Industry = Adv. Chem. Ser. Enabling A Simulation Capability in The Organisation = Decis Eng Enabling A Simulation Capability in The Organisation = Decis. Eng. Enabling Consumer and Entrepreneurial Literacy in Subsistence Marketplaces = Educ Asia Pac Reg-is Enabling Consumer and Entrepreneurial Literacy in Subsistence Marketplaces = Educ. Asia. Pac. Reg-is. Enabling Enterprise Transformation = Innov Tech Knowl Man Enabling Enterprise Transformation = Innov. Tech. Knowl. Man. Enabling Optical Internet With Advanced Network Technologies = Comput Commun Netw S Enabling Optical Internet With Advanced Network Technologies = Comput. Commun. Netw. S. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iii = Proc Spie Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iii = Proc. Spie. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iii = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iii = P. Soc. Photo-opt. Ins. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Ii = Proc Spie Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Ii = Proc. Spie. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Ii = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Ii = P. Soc. Photo-opt. Ins. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iv = Proc Spie Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iv = Proc. Spie. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iv = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Iv = P. Soc. Photo-opt. Ins. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications = P. Soc. Photo-opt. Ins. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Vii = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Vii = P. Soc. Photo-opt. Ins. Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Vi = P Soc Photo-opt Ins Enabling Photonics Technologies for Defense, Security, and Aerospace Applications Vi = P. Soc. Photo-opt. Ins. Enabling Photonic Technologies for Aerospace Applications Ii = P Soc Photo-opt Ins Enabling Photonic Technologies for Aerospace Applications Ii = P. Soc. Photo-opt. Ins. Enabling Photonic Technologies for Aerospace Applications = P Soc Photo-opt Ins Enabling Photonic Technologies for Aerospace Applications = P. Soc. Photo-opt. Ins. Enabling Photonic Technologies for Aerospace Applications Vi = P Soc Photo-opt Ins Enabling Photonic Technologies for Aerospace Applications Vi = P. Soc. Photo-opt. Ins. Enabling Photonic Technologies for Aerospace Applications V = P Soc Photo-opt Ins Enabling Photonic Technologies for Aerospace Applications V = P. Soc. Photo-opt. Ins. Enabling Real-time Business Intelligence = Lect Notes Bus Inf Enabling Real-time Business Intelligence = Lect. Notes. Bus. Inf. Enabling Real-time Business Intelligence = Lect Notes Bus Inf P Enabling Real-time Business Intelligence = Lect. Notes. Bus. Inf. P. Enabling Science and Nanotechnology = Aip Conf Proc Enabling Science and Nanotechnology = Aip. Conf. Proc. Enabling Sensor and Platform Technologies for Spaceborne Remote Sensing = Proc Spie Enabling Sensor and Platform Technologies for Spaceborne Remote Sensing = Proc. Spie. Enabling Sensor and Platform Technologies for Spaceborne Remote Sensing = P Soc Photo-opt Ins Enabling Sensor and Platform Technologies for Spaceborne Remote Sensing = P. Soc. Photo-opt. Ins. Enabling Social Policy = Ethics Sci Tech Ass Enabling Social Policy = Ethics. Sci. Tech. Ass. Enabling Technologies and Design of Nonlethal Weapons = P Soc Photo-opt Ins Enabling Technologies and Design of Nonlethal Weapons = P. Soc. Photo-opt. Ins. Enabling Technologies for 3-d Integration = Mater Res Soc Symp P Enabling Technologies for 3-d Integration = Mater. Res. Soc. Symp. P. Enabling Technologies for 3g and Beyond = P Soc Photo-opt Ins Enabling Technologies for 3g and Beyond = P. Soc. Photo-opt. Ins. Enabling Technologies for High-bandwidth Applications = P Soc Photo-opt Ins Enabling Technologies for High-bandwidth Applications = P. Soc. Photo-opt. Ins. Enabling Technologies for Law Enforcement and Security = Proc Spie Enabling Technologies for Law Enforcement and Security = Proc. Spie. Enabling Technologies for Law Enforcement and Security = P Soc Photo-opt Ins Enabling Technologies for Law Enforcement and Security = P. Soc. Photo-opt. Ins. Enabling Technologies for Simulation Science Ix = Proc Spie Enabling Technologies for Simulation Science Ix = Proc. Spie. Enabling Technologies for Simulation Science Ix = P Soc Photo-opt Ins Enabling Technologies for Simulation Science Ix = P. Soc. Photo-opt. Ins. Enabling Technologies for Simulation Science Viii = Proc Spie Enabling Technologies for Simulation Science Viii = Proc. Spie. Enabling Technologies for Simulation Science Viii = P Soc Photo-opt Ins Enabling Technologies for Simulation Science Viii = P. Soc. Photo-opt. Ins. Enabling Technologies for Simulation Science Vii = Proc Spie Enabling Technologies for Simulation Science Vii = Proc. Spie. Enabling Technologies for Simulation Science Vii = P Soc Photo-opt Ins Enabling Technologies for Simulation Science Vii = P. Soc. Photo-opt. Ins. Enabling Technologies for Simulation Science Vi = Proc Spie Enabling Technologies for Simulation Science Vi = Proc. Spie. Enabling Technologies for Simulation Science Vi = P Soc Photo-opt Ins Enabling Technologies for Simulation Science Vi = P. Soc. Photo-opt. Ins. Enabling Technologies for Simulation Science X = P Soc Photo-opt Ins Enabling Technologies for Simulation Science X = P. Soc. Photo-opt. Ins. Enabling Technology for Simulation Science Iii = Proc Spie Enabling Technology for Simulation Science Iii = Proc. Spie. Enabling Technology for Simulation Science Iii = P Soc Photo-opt Ins Enabling Technology for Simulation Science Iii = P. Soc. Photo-opt. Ins. Enabling Technology for Simulation Science Ii = P Soc Photo-opt Ins Enabling Technology for Simulation Science Ii = P. Soc. Photo-opt. Ins. Enabling Technology for Simulation Science Iv = P Soc Photo-opt Ins Enabling Technology for Simulation Science Iv = P. Soc. Photo-opt. Ins. Enabling Technology for Simulation Science = P Soc Photo-opt Ins Enabling Technology for Simulation Science = P. Soc. Photo-opt. Ins. Enabling Technology for Simulation Science V = Proc Spie Enabling Technology for Simulation Science V = Proc. Spie. Enabling Technology for Simulation Science V = P Soc Photo-opt Ins Enabling Technology for Simulation Science V = P. Soc. Photo-opt. Ins. Enacting Intersubjectivity: A Cognitive and Social Perspective On The Study of Interactions = Emerg Commun-stud Ne Enacting Intersubjectivity: A Cognitive and Social Perspective On The Study of Interactions = Emerg. Commun-stud. Ne. Enalia. Annual. English Edition of the Hellenic Institute of Marine Archaeology = EnaliaAnn Enam 98: Exotic Nuclei and Atomic Masses = Aip Conf Proc Enam 98: Exotic Nuclei and Atomic Masses = Aip. Conf. Proc. Enantiomer = Enantiomer Encaminament Catar = Interlangues Encaminament Catar = Interlangues. Encapsulation and Controlled Release of Food Ingredients = Acs Sym Ser Encapsulation and Controlled Release of Food Ingredients = Acs. Sym. Ser. Encephale=Encephale;; Encephale = Encephale Encephale-revue De Psychiatrie Clinique Biologique Et Therapeutique = Encephale Encephale-revue De Psychiatrie Clinique Biologique Et Therapeutique = Encephale. Enchanted Modern: Gender and Public Piety in Shii Lebanon = Princ Stud Muslim Po Enchanted Modern: Gender and Public Piety in Shii Lebanon = Princ. Stud. Muslim. Po. Enchoria. Zeitschrift für Demotistik und Koptologie = Enchoria Enciclopedia dell'arte antica classica e orientale = EAA Enclosing The Fisheries: People, Places, and Power = Am Fish S S Enclosing The Fisheries: People, Places, and Power = Am. Fish. S. S. Encompassing = Lect Notes Econ Math Encompassing = Lect. Notes. Econ. Math. Encounter = Encounter Encountering The Changing Barents: Research Challenges and Opportunities = U Lap A C R Encountering The Changing Barents: Research Challenges and Opportunities = U. Lap. A. C. R. Encountering Transcendence:contributions to Theology of Christian Religious Experience = Annu Nunt Lovanien Encountering Transcendence:contributions to Theology of Christian Religious Experience = Annu. Nunt. Lovanien. Encounter of Eastern Christianity With Early Islam = Hist Christ Muslim Encounter of Eastern Christianity With Early Islam = Hist. Christ. Muslim. Encounter Series = Encounter S Encounter Series = Encounter S. Encounters in The Victorian Press: Editors, Authors, Readers = Palgrave Stud Ninet- Encounters in The Victorian Press: Editors, Authors, Readers = Palgrave. Stud. Ninet-. Encounters With Asia = Encounters Asia Encryption for Digital Content = Adv Inform Secur Encryption for Digital Content = Adv. Inform. Secur. Encyclopaedia of Mathematical Sciences = Encycl Math Sci Encyclopaedia of Mathematical Sciences = Encycl. Math. Sci. Encyclopaedia of Mathematical Sciences = Encyclopaedia Math. Sci. Encyclopedia of Mathematical Sciences = Enc Mat Sci Encyclopedia of Mathematical Sciences = Enc. Mat. Sci. Encyclopedia of Mathematics and its Applications = Encyclopedia Math. Appl. Encyclopedia of Polymer Composites: Properties, Performance and Applications = Polym Sci Technol Se Encyclopedia of Polymer Composites: Properties, Performance and Applications = Polym. Sci. Technol. Se. Endeavour=Endeavour;; Endeavour = Endeavour Ende Des Anthropozentrismus: Anthropologie Und Geschichtskritik in Der Deutschen Literatur Zwischen 1930 Und 1950 = Quell Forsch Lit Kul Ende Des Anthropozentrismus: Anthropologie Und Geschichtskritik in Der Deutschen Literatur Zwischen 1930 Und 1950 = Quell. Forsch. Lit. Kul. Ending The Cold War: Interpretations, Causation, and The Study of International Relations = New Vis Secur Ending The Cold War: Interpretations, Causation, and The Study of International Relations = New. Vis. Secur. Endocrine and Biochemical Development of The Fetus and The Neonate = Reprod Biol Endocrine and Biochemical Development of The Fetus and The Neonate = Reprod. Biol. Endocrine and Nutritional Control of Basic Biological Functions = Neur Cont B Endocrine and Nutritional Control of Basic Biological Functions = Neur. Cont. B. Endocrine Aspects of Successful Aging: Genes, Hormones and Lifestytles = Res Perspect End Int Endocrine Aspects of Successful Aging: Genes, Hormones and Lifestytles = Res. Perspect. End. Int. Endocrine development = Endocr Dev Endocrine Development = Endocr Dev Endocrine Development = Endocr. Dev. Endocrine Development = Endocrin Dev Endocrine Development = Endocrin. Dev. Endocrine Disrupters and Carcinogenic Risk Assessment = Nato Sci Ser I Life Endocrine Disrupters and Carcinogenic Risk Assessment = Nato. Sci. Ser. I. Life. Endocrine Disrupters = Envir Sci Tech Lib Endocrine Disrupters = Envir. Sci. Tech. Lib. Endocrine-disrupting Chemicals: From Basic Research to Clinical Practice = Contemp Endocrinol S Endocrine-disrupting Chemicals: From Basic Research to Clinical Practice = Contemp. Endocrinol. S. Endocrine-disrupting Chemicals in Food = Woodhead Food Ser Endocrine-disrupting Chemicals in Food = Woodhead. Food Ser. Endocrine Disruption in Invertebrates: Endocrinology, Testing, and Assessment = Setac Tech Publicat Endocrine Disruption in Invertebrates: Endocrinology, Testing, and Assessment = Setac. Tech. Publicat. Endocrine Disruption Modeling = Qsar Environ Health Endocrine Disruption Modeling = Qsar. Environ. Health. Endocrine=Endocrine;; Endocrine = Endocrine Endocrine Facets of Ageing = Novart Fdn Symp Endocrine Facets of Ageing = Novart. Fdn. Symp. Endocrine Hypertension = Ann Ny Acad Sci Endocrine Hypertension = Ann. Ny. Acad. Sci. Endocrine Interactions of Insect Parasites and Pathogens = Exptl Biol Rev Endocrine Interactions of Insect Parasites and Pathogens = Exptl. Biol. Rev. Endocrine Involvement in Developmental Syndromes = Endocrin Dev Endocrine Involvement in Developmental Syndromes = Endocrin. Dev. Endocrine journal = Endocr J Endocrine Journal=Endocr J;; Endocrine Journal = Endocr J Endocrine Journal = Endocr. J. Endocrine, Metabolic and Immune Disorders Drug Targets = Endocr. Metab. Immune Disord. Drug Targets Endocrine, Metabolic and Immunologic Functions of Keratinocytes = Ann Ny Acad Sci Endocrine, Metabolic and Immunologic Functions of Keratinocytes = Ann. Ny. Acad. Sci. Endocrine, metabolic & immune disorders drug targets = Endocr Metab Immune Disord Drug Targets Endocrine, Metabolic & Immune Disorders: Drug Targets = Endocr., Metab. Immune Disord.: Drug Targets Endocrine Neoplasia = Cancer Treat Res Endocrine Neoplasia = Cancer. Treat. Res. Endocrine Ophthalmopathy = Dev Ophthalmol Endocrine Ophthalmopathy = Dev. Ophthalmol. Endocrine pathology = Endocr Pathol Endocrine Pathology = Endocr Pathol Endocrine Pathology = Endocr. Pathol. Endocrine Practice = Endocr Pract Endocrine Practice = Endocr. Pract. Endocrine practice : official journal of the American College of Endocrinology and the American Association of Clinical Endocrinologists = Endocr Pract Endocrine regulations = Endocr Regul Endocrine Regulations = Endocr. Regul. Endocrine-related cancer = Endocr Relat Cancer Endocrine-related Cancer = Endocr-relat Cancer Endocrine-related Cancer = Endocr-relat. Cancer Endocrine research communications = Endocr Res Commun Endocrine Research Communications = Endocr Res Commun Endocrine Research Communications = Endocr. Res. Commun. Endocrine research = Endocr Res Endocrine Research=Endocr Res;; Endocrine Research = Endocr Res Endocrine Research = Endocr. Res. Endocrine Response to Anesthesia and Intensive Care = Int Congr Ser Endocrine Response to Anesthesia and Intensive Care = Int. Congr. Ser. Endocrine reviews = Endocr Rev Endocrine Reviews=Endocr Rev;; Endocrine Reviews = Endocr Rev Endocrine Reviews = Endocr. Rev. Endocrine Surgery: Principles and Practice = Springer Spec Surg S Endocrine Surgery: Principles and Practice = Springer. Spec. Surg. S. Endocrine Updates = Endocrin Updat Endocrine Updates = Endocrin. Updat. Endocrine Updates = Endocr Updat Endocrine Updates = Endocr. Updat. Endocrinologia e scienza della costituzione = Endocrinol Sci Cost Endocrinologia e Scienza della Costituzione = Endocrinol. Sci. Cost. Endocrinologia experimentalis = Endocrinol Exp Endocrinologia Experimentalis = Endocrinol Exp Endocrinologia Experimentalis = Endocrinol. Exp. Endocrinologia Japonica = Endocrinol Japon Endocrinologia Japonica = Endocrinol. Japon. Endocrinologia japonica = Endocrinol Jpn Endocrinologia Japonica = Endocrinol. Jpn. Endocrinologia y terapeutica = Endocr Terap Endocrinologie = Endocrinologie Endocrinologist = Endocrinologist Endocrinology and Metabolism Clinics of North America = Endocrin Metab Clin Endocrinology and Metabolism Clinics of North America = Endocrin. Metab. Clin. Endocrinology and metabolism clinics of North America = Endocrinol Metab Clin North Am Endocrinology and Metabolism Clinics of North America=Endocrinol Metab Clin North Am;; Endocrinology and Metabolism Clinics of North America = Endocrinol. Metab. Clin. North Am. Endocrinology and Metabolism = Endocrinol Metab Endocrinology and Metabolism = Endocrinol. Metab. Endocrinology (Baltimore) = Endocrinology (Baltimore) Endocrinology=Endocrinology;; Endocrinology = Endocrinology Endocrinology of Embryo-endometrium Interactions = Reprod Biol Endocrinology of Embryo-endometrium Interactions = Reprod. Biol. Endocrinology of Parturition: Basic Science and Clinical Application = Front Horm Res Endocrinology of Parturition: Basic Science and Clinical Application = Front. Horm. Res. Endocrinology Research and Clinical Developments = Endocr Res Clin Dev Endocrinology Research and Clinical Developments = Endocr. Res. Clin. Dev. Endocytobiosis and Cell Research = Endocyt Cell Res Endocytobiosis and Cell Research = Endocyt. Cell Res. Endocytobiosis and Cell Research = Endocytobiosis Cell Endocytosis Structural Components, Functions and Pathways = Cell Bio Res Prog Endocytosis Structural Components, Functions and Pathways = Cell. Bio. Res. Prog. Endodoncia = Endodoncia (Mex.) Endodoncia = Endodoncia (Mex) Endodoncia (Madrid, Spain) = Endodoncia Endodontic practice = Endod Prac Endodontic Practice = Endod. Pract. Endodontic Report = Endod. Rep. Endodontics and Dental Traumatology = Endod. Dent. Traumatol. Endodontics & dental traumatology = Endod Dent Traumatol Endodontics & Dental Traumatology = Endod Dent Traumatol Endodontics & Dental Traumatology = Endod. Dent. Traumatol. ENDO = ENDO End of European Integration: Anti-europeanism Examined = Routl Uaces Contemp End of European Integration: Anti-europeanism Examined = Routl. Uaces. Contemp. End of Science ? = Nobel Conf End of Science ? = Nobel. Conf. End of The British Mandate for Palestine, 1948: The Diary of Sir Henry Gurney = St Antonys Ser End of The British Mandate for Palestine, 1948: The Diary of Sir Henry Gurney = St. Antonys. Ser. Endogeni Razvojni Potenciali Slovenskega Podezelja = Geograff Endogeni Razvojni Potenciali Slovenskega Podezelja = Geograff. Endokrinologie = Endokrinologie Endokrynologia, diabetologia i choroby przemiany materii wieku rozwojowego : organ Polskiego Towarzystwa Endokrynologow Dzieciecych = Endokrynol Diabetol Chor Przemiany Materii Wieku Rozw Endokrynologia Polska = Endokrynol Pol Endokrynologia Polska = Endokrynol. Pol. Endometrial Cytology With Tissue Correlations = Essent Cytopathol Endometrial Cytology With Tissue Correlations = Essent. Cytopathol. Endometriosis // = Adv Rep End Endometriosis // = Adv. Rep. End. Endometriosis: Emerging Research and Intervention Strategies = Ann Ny Acad Sci Endometriosis: Emerging Research and Intervention Strategies = Ann. Ny. Acad. Sci. Endometriosis: Symptoms, Diagnosis and Treatments = Obstet Gynecol Adv Endometriosis: Symptoms, Diagnosis and Treatments = Obstet. Gynecol. Adv. Endoplasmic Reticulum: A Metabolic Compartment = Nato Sci Ser I Life Endoplasmic Reticulum: A Metabolic Compartment = Nato. Sci. Ser. I. Life. Endoscopic Microscopy Iii = P Soc Photo-opt Ins Endoscopic Microscopy Iii = P. Soc. Photo-opt. Ins. Endoscopic Microscopy Ii = P Soc Photo-opt Ins Endoscopic Microscopy Ii = P. Soc. Photo-opt. Ins. Endoscopic Microscopy Iv = P Soc Photo-opt Ins Endoscopic Microscopy Iv = P. Soc. Photo-opt. Ins. Endoscopic Microscopy = P Soc Photo-opt Ins Endoscopic Microscopy = P. Soc. Photo-opt. Ins. Endoscopic Microscopy V = P Soc Photo-opt Ins Endoscopic Microscopy V = P. Soc. Photo-opt. Ins. Endoscopic surgery and allied technologies = Endosc Surg Allied Technol Endoscopic Surgery and Allied Technologies = Endosc. Surg. Allied Technol. Endoscopic Therapy for Barrett's Esophagus = Clin Gastroent-ser Endoscopic Therapy for Barrett's Esophagus = Clin. Gastroent-ser. Endoscopic Ultrasound = Clin Gastroent-ser Endoscopic Ultrasound = Clin. Gastroent-ser. Endoscopy 2006 - Update and Live Demonstration = Falk Symp Endoscopy 2006 - Update and Live Demonstration = Falk. Symp. Endoscopy=Endoscopy;; Endoscopy = Endoscopy Endoscopy for Gsp4 and The Cohomology of Siegel Modular Threefolds = Lect Notes Math Endoscopy for Gsp4 and The Cohomology of Siegel Modular Threefolds = Lect. Notes. Math. Endoskopie Heute = Endoskopie Heute Endosymbionts in Paramecium = Microbiol Monogr Endosymbionts in Paramecium = Microbiol. Monogr. Endothelial Cell Function in Diabetic Microangiopathy : Problems in Methodology and Clinical Aspects = Front Diabetes Endothelial Cell Function in Diabetic Microangiopathy : Problems in Methodology and Clinical Aspects = Front. Diabetes. Endothelin = Clin Phys Endothelin = Clin. Phys. Endothelium-derived Factors and Vascular Functions = Int Congr Ser Endothelium-derived Factors and Vascular Functions = Int. Congr. Ser. Endothelium=Endothelium;; Endothelium = Endothelium Endothelium : journal of endothelial cell research = Endothelium Endothelium-journal of Endothelial Cell Research = Endothelium-j Endoth Endothelium-journal of Endothelial Cell Research = Endothelium-j. Endoth. Endothelium-new York = Endothelium-new York Endotoxin = Adv Exp Med Biol Endotoxin = Adv. Exp. Med. Biol. Endotoxin and Sepsis = Prog Clin Biol Res Endotoxin and Sepsis = Prog. Clin. Biol. Res. Endotoxins: Structure, Function and Recognition = Subcell Biochem Endotoxins: Structure, Function and Recognition = Subcell. Biochem. Endoxemia and Endotoxin Shock: Disease, Diagnosis and Therapy = Contrib Nephrol Endoxemia and Endotoxin Shock: Disease, Diagnosis and Therapy = Contrib. Nephrol. Enduring Bonds : The Significance of Interpersonal Relationships in Young Children's Lives = Educ Young Child Enduring Bonds : The Significance of Interpersonal Relationships in Young Children's Lives = Educ. Young Child. End-user Development, Proceedings = Lect Notes Comput Sc End-user Development, Proceedings = Lect. Notes. Comput. Sc. Endzeiten: Eschatologie in Den Monotheistischen Weltreligionen = Millenn Stud Kult Ge Endzeiten: Eschatologie in Den Monotheistischen Weltreligionen = Millenn. Stud. Kult. Ge. Enegie Wasser Praxis = Energ. Wasser Prax. Energetic Charged Particles in Space = Adv Space Res-series Energetic Charged Particles in Space = Adv. Space Res-series. Energetic Materials: Chemistry, Hazards and Environmental Aspects = Chem Res Appl-nova Energetic Materials: Chemistry, Hazards and Environmental Aspects = Chem. Res. Appl-nova. Energetics and Percolation Properties of Hydrophobic Nanoporous Media = Nanotechnol Sci Tech Energetics and Percolation Properties of Hydrophobic Nanoporous Media = Nanotechnol. Sci. Tech. Energetics of Biological Macromolecules = Method Enzymol Energetics of Biological Macromolecules = Method. Enzymol. Energetics of Biological Macromolecules = Methods Enzymol Energetics of Biological Macromolecules = Methods. Enzymol. Energetics of Biological Macromolecules, Pt B = Method Enzymol Energetics of Biological Macromolecules, Pt B = Method. Enzymol. Energetics of Biological Macromolecules, Pt C = Method Enzymol Energetics of Biological Macromolecules, Pt C = Method. Enzymol. Energetics of Biological Macromolecules, Pt D = Method Enzymol Energetics of Biological Macromolecules, Pt D = Method. Enzymol. Energetics of Biological Macromolecules, Pt E = Method Enzymol Energetics of Biological Macromolecules, Pt E = Method. Enzymol. Energetics of Organometallic Species = Nato Adv Sci I C-mat Energetics of Organometallic Species = Nato. Adv. Sci. I. C-mat. Energia Es Atomtechnika = Energ Atomtech Energia Es Atomtechnika = Energ. Atomtech. Energiantuotannon Tuhkien Jalostaminen Maarakennuskaytoon = Vtt Res Notes Energiantuotannon Tuhkien Jalostaminen Maarakennuskaytoon = Vtt. Res. Notes. Energia Nucleare = Energ Nucl-milan Energia Nucleare = Energ. Nucl-milan. Energia Nuclear = Energ Nucl-madrid Energia Nuclear = Energ. Nucl-madrid. Energieanwendungstechnik: Wege Und Techniken Zur Effizienteren Energienutzung = Vdi-buch Energieanwendungstechnik: Wege Und Techniken Zur Effizienteren Energienutzung = Vdi-buch. Energieeinsparung Durch Elektronik Im Fahrzeug = Vdi Bericht Energieeinsparung Durch Elektronik Im Fahrzeug = Vdi. Bericht. Energiemanagement:tools = Vdi-buch Energiemanagement:tools = Vdi-buch. Energie Nucleaire Paris = Energ Nucl-paris Energie Nucleaire Paris = Energ. Nucl-paris. Energies = Energies Energietechnik = Energietechnik Energie Wasser Praxis = Energ. Wasser Prax. Energy, Air Quality and Fuels 1998 = Transport Res Rec Energy, Air Quality and Fuels 1998 = Transport. Res. Rec. Energy, Air Quality, and Fuels 2000 = Transport Res Rec Energy, Air Quality, and Fuels 2000 = Transport. Res. Rec. Energy, Air Quality, and Fuels 2001 = Transport Res Rec Energy, Air Quality, and Fuels 2001 = Transport. Res. Rec. Energy, Air Quality, and Fuels 2002 = Transport Res Rec Energy, Air Quality, and Fuels 2002 = Transport. Res. Rec. Energy, Air Quality, and Fuels 2003 = Transport Res Rec Energy, Air Quality, and Fuels 2003 = Transport. Res. Rec. Energy Analysis of Household Consumption = Alliance Glob Sustai Energy Analysis of Household Consumption = Alliance. Glob. Sustai. Energy and Buildings = Energ Buildings Energy and Buildings = Energ. Buildings Energy and Buildings = Energy Build. Energy and Electrochemical Processes for A Cleaner Environment, Proceedings = Elec Soc S Energy and Electrochemical Processes for A Cleaner Environment, Proceedings = Elec. Soc. S. Energy and Electrochemical Processing for A Cleaner Environment = Elec Soc S Energy and Electrochemical Processing for A Cleaner Environment = Elec. Soc. S. Energy and Environmental Challenges to Security = Nato Sci Peace Secur Energy and Environmental Challenges to Security = Nato. Sci. Peace. Secur. Energy and Environmental Concerns 2004 = Transport Res Rec Energy and Environmental Concerns 2004 = Transport. Res. Rec. Energy and Environmental Concerns 2005 = Transport Res Rec Energy and Environmental Concerns 2005 = Transport. Res. Rec. Energy and Environmental Concerns 2006: Including 2006 Thomas B. Deen Distinguished Lecture = Transport Res Rec Energy and Environmental Concerns 2006: Including 2006 Thomas B. Deen Distinguished Lecture = Transport. Res. Rec. Energy and Environmental Engineering Series = Energy Environ Eng S Energy and Environmental Engineering Series = Energy Environ. Eng. S. Energy and Environmental Policy = Energ Environ Policy Energy and Environmental Policy = Energ. Environ. Policy Energy and Environment Engineering and Management = Adv Mat Res Energy and Environment Engineering and Management = Adv. Mat. Res. Energy and Environment Materials = Mater Sci Forum Energy and Environment Materials = Mater. Sci. Forum. Energy and Fuels = Energy Fuels Energy and Protein Metabolism and Nutrition = Eaap Public Energy and Protein Metabolism and Nutrition = Eaap. Public. Energy and Sustainability Ii = Wit Trans Ecol Envir Energy and Sustainability Ii = Wit. Trans. Ecol. Envir. Energy and Sustainability = Wit Trans Ecol Envir Energy and Sustainability = Wit. Trans. Ecol. Envir. Energy and The Environment = Roy Soc Ch Energy and The Environment = Roy. Soc. Ch. Energy and The Environment Series = Energ Env Ser-crc Energy and The Environment Series = Energ. Env. Ser-crc. Energy and The Environment = Sus World Energy and The Environment = Sus. World. Energy Balance and Cancer = Energ Balance Cancer Energy Balance and Cancer = Energ. Balance Cancer Energy-based Treatment of Tissue and Assessment V = P Soc Photo-opt Ins Energy-based Treatment of Tissue and Assessment V = P. Soc. Photo-opt. Ins. Energy Climate and The Environment = Energ Clim Environ Energy Climate and The Environment = Energ. Clim. Environ. Energy Communications = Energ Commun Energy Communications = Energ. Commun. Energy Conservation in Public Premises = Vdi Bericht Energy Conservation in Public Premises = Vdi. Bericht. Energy Conversion and Management = Energ Convers Manage Energy Conversion and Management = Energ. Convers. Manage. Energy Conversion and Management = Energy Convers. Manage. Energy Conversion and Particle Acceleration in The Solar Corona = Lect Notes Phys Energy Conversion and Particle Acceleration in The Solar Corona = Lect. Notes. Phys. Energy Conversion = Energ Convers Energy Conversion = Energ. Convers. Energy Costs, International Developments and New Directions = Energ Sci Eng Tech Energy Costs, International Developments and New Directions = Energ. Sci. Eng. Tech. Energy Crops = Rsc Energy Environ S Energy Crops = Rsc. Energy Environ. S. Energy Dependency, Politics and Corruption in The Former Soviet Union = Basees-rout Ser Russ Energy Dependency, Politics and Corruption in The Former Soviet Union = Basees-rout. Ser. Russ. Energy Digest = Energ Dig Energy Digest = Energ. Dig. Energy Economics = Energ Econ Energy Economics = Energ. Econ. Energy Economics=Energy Econ. Energy Education Science and Technology = Energy Educ Sci Tech Energy Education Science and Technology = Energy Educ. Sci. Tech. Energy Education Science and Technology Part A-energy Science and Research = Ener Educ Sci Tech-a Energy Education Science and Technology Part A-energy Science and Research = Ener. Educ. Sci. Tech-a. Energy Education Science and Technology Part B-social and Educational Studies = Ener Educ Sci Tech-b Energy Education Science and Technology Part B-social and Educational Studies = Ener. Educ. Sci. Tech-b. Energy Efficiency and Sustainable Consumption: The Rebound Effect = Energ Clim Environ Energy Efficiency and Sustainable Consumption: The Rebound Effect = Energ. Clim. Environ. Energy Efficiency = Energ Effic Energy Efficiency = Energ. Effic. Energy = Energy Energy Engineering = Energ Eng Energy Engineering = Energ. Eng. Energy Engineering = Energy Eng. Energy & Environmental Science = Energ Environ Sci Energy & Environmental Science = Energ. Environ. Sci. Energy & Environmental Science = Energy Environ. Sci. Energy, Environment and The Economy = New Hor Env Eco Energy, Environment and The Economy = New. Hor. Env. Eco. Energy, Environment, Ecosystems, Development and Landscape Architecture = Energy Environ Eng S Energy, Environment, Ecosystems, Development and Landscape Architecture = Energy. Environ. Eng. S. Energy & Environment = Energ Environ-uk Energy & Environment = Energ. Environ-uk. Energy & Environment = Energy Environ. Energy Exploration & Exploitation = Energ Explor Exploit Energy Exploration & Exploitation = Energ. Explor. Exploit. Energy Exploration & Exploitation = Energy Explor. Exploit. Energy Flows, Material Cycles and Global Development- A Process Engineering Approach to The Earth System = Environ Sci Eng Energy Flows, Material Cycles and Global Development- A Process Engineering Approach to The Earth System = Environ. Sci. Eng. Energy for A Warming World: A Plan to Hasten The Demise of Fossil Fuels = Green Energy Technol Energy for A Warming World: A Plan to Hasten The Demise of Fossil Fuels = Green. Energy Technol. Energy for Ever : Technological Challenges of Sustainable Growth = Aatse Inv Symp Energy for Ever : Technological Challenges of Sustainable Growth = Aatse. Inv. Symp. Energy for The 21st Century = Imeche Sem Energy for The 21st Century = Imeche. Sem. Energy From Biomass = Ener Biomas Energy From Biomass = Ener. Biomas. Energy & fuels : an American Chemical Society journal = Energy Fuels Energy & Fuels = Energ Fuel Energy & Fuels = Energ. Fuel. Energy & Fuels = Energy Fuels Energy Harvesting and Storage: Materials, Devices, and Applications Ii = Proc Spie Energy Harvesting and Storage: Materials, Devices, and Applications Ii = Proc. Spie. Energy Harvesting and Storage: Materials, Devices, and Applications = Proc Spie Energy Harvesting and Storage: Materials, Devices, and Applications = Proc. Spie. Energy Harvesting and Storage: Materials, Devices, and Applications = P Soc Photo-opt Ins Energy Harvesting and Storage: Materials, Devices, and Applications = P. Soc. Photo-opt. Ins. Energy Harvesting With Piezoelectric and Pyroelectric Materials = Mater Sci Found Energy Harvesting With Piezoelectric and Pyroelectric Materials = Mater. Sci. Found. Energy in Agriculture = Energ Agr Energy in Agriculture = Energ. Agr. Energy - Information - Innovation = Gesch Elektrotech Energy - Information - Innovation = Gesch. Elektrotech. Energy Journal = Energ J Energy Journal = Energ. J. Energy Journal=Energy J. Energy Journal = Energy J Energy Journal = Energy J. Energy Law 90 : Changing Energy Markets - The Legal Consequences = Int Bar Ass Energy Law 90 : Changing Energy Markets - The Legal Consequences = Int. Bar. Ass. Energy Metabolism and Obesity: Research and Clinical Applications = Contemp Endocrinol S Energy Metabolism and Obesity: Research and Clinical Applications = Contemp. Endocrinol. S. Energy Metabolism of Farm Animals = Eaap Public Energy Metabolism of Farm Animals = Eaap. Public. Energy Minimization Methods in Computer Vision and Pattern Recognition = Lect Notes Comput Sc Energy Minimization Methods in Computer Vision and Pattern Recognition = Lect. Notes. Comput. Sc. Energy Minimization Methods in Computer Vision and Pattern Recognition, Proceedings = Lect Notes Comput Sc Energy Minimization Methods in Computer Vision and Pattern Recognition, Proceedings = Lect. Notes. Comput. Sc. Energy, Natural Resources and Environmental Economics = Energ Syst Energy, Natural Resources and Environmental Economics = Energ. Syst. Energy Options Impact On Regional Security = Nato Sci Peace Sec C Energy Options Impact On Regional Security = Nato. Sci. Peace. Sec. C. Energy Policies Politics and Prices = Energ Polic Polit Pr Energy Policies Politics and Prices = Energ. Polic. Polit. Pr. Energy Policy and Climate Protection = Energ Polic Clim Pro Energy Policy and Climate Protection = Energ. Polic. Clim. Pro. Energy Policy = Energ Policy Energy Policy = Energ. Policy Energy policy = Energy Policy Energy Policy Instruments and Technical Change in The Residential Building Sector = Sustain Urban Areas Energy Policy Instruments and Technical Change in The Residential Building Sector = Sustain. Urban. Areas. Energy Pricing: Economics and Principles = Energ Syst Energy Pricing: Economics and Principles = Energ. Syst. Energy Problems and Environmental Engineering = Energy Environ Eng S Energy Problems and Environmental Engineering = Energy Environ. Eng. S. Energy Procedia = Energy Procedia Energy Procedia = Enrgy Proced Energy Procedia = Enrgy. Proced. Energy Release and Particle Acceleration At The Sun and in The Heliosphere = Adv Space Res Energy Release and Particle Acceleration At The Sun and in The Heliosphere = Adv. Space. Res. Energy Release and Particle Acceleration At The Sun and in The Heliosphere = Adv Space Res-series Energy Release and Particle Acceleration At The Sun and in The Heliosphere = Adv. Space. Res-series. Energy Release and Particle Acceleration in The Solar Atmosphere - Flares and Related Phenomena = Adv Space Res Energy Release and Particle Acceleration in The Solar Atmosphere - Flares and Related Phenomena = Adv. Space. Res. Energy Release and Particle Acceleration in The Solar Atmosphere - Flares and Related Phenomena = Adv Space Res-series Energy Release and Particle Acceleration in The Solar Atmosphere - Flares and Related Phenomena = Adv. Space. Res-series. Energy Saving in The Design and Operation of Compressors = Imeche Sem Energy Saving in The Design and Operation of Compressors = Imeche. Sem. Energy Saving in The Design and Operation of Fans = Imeche Sem Energy Saving in The Design and Operation of Fans = Imeche. Sem. Energy Saving in The Design and Operation of Pumps = Imeche Sem Energy Saving in The Design and Operation of Pumps = Imeche. Sem. Energy Scalable Radio Design: for Pulsed Uwb Communication and Ranging = Analog Circ Sig Proc Energy Scalable Radio Design: for Pulsed Uwb Communication and Ranging = Analog. Circ. Sig. Proc. Energy Science Engineering and Technology = Energ Sci Eng Tech Energy Science Engineering and Technology = Energ. Sci. Eng. Tech. Energy Security in Asia = Routl Secur Asia-pac Energy Security in Asia = Routl. Secur. Asia-pac. Energy Security: International and Local Issues, Theoretical Perspectives, and Critical Energy Infrastructures = Nato Sci Peace Secur Energy Security: International and Local Issues, Theoretical Perspectives, and Critical Energy Infrastructures = Nato. Sci. Peace. Secur. Energy Sources = Energ Source Energy Sources = Energ. Source. Energy Sources Part A-recovery Utilization and Environmental Effects = Energ Source Part A Energy Sources Part A-recovery Utilization and Environmental Effects = Energ. Source. Part A. Energy Sources, Part A: Recovery, Utilization, and Environmental Effects = Energy Sources Part A Energy Sources Part B-economics Planning and Policy = Energ Source Part B Energy Sources Part B-economics Planning and Policy = Energ. Source. Part B. Energy Sources, Part B: Economics, Planning and Policy = Energy Sources Part B Energy Studies Review=Energy Stud. Rev. Energy Supply and Mineral Resources: How Much Longer = Schr Erdwissenschaft Energy Supply and Mineral Resources: How Much Longer = Schr. Erdwissenschaft. Energy Systems = Energ Syst Energy Systems = Energ. Syst. Energy Systems = Energy Syst. Energy Systems in Transition = Vdi Bericht Energy Systems in Transition = Vdi. Bericht. Energy Transfer Dynamics in Biomaterial Systems = Springer Ser Chem Ph Energy Transfer Dynamics in Biomaterial Systems = Springer. Ser. Chem. Ph. Energy Transport in Radio Galaxies and Quasars = Astr Soc P Energy Transport in Radio Galaxies and Quasars = Astr. Soc. P. Energy Watchers Ix : The Global Energy Sector: Opportunity and Uncertainty and U.s. Energy Trends: Supply, Demand, and Reform = Energy Watch Ser Energy Watchers Ix : The Global Energy Sector: Opportunity and Uncertainty and U.s. Energy Trends: Supply, Demand, and Reform = Energy Watch. Ser. Energy Watchers Series: Proceedings of Iceeds Annual International Energy and Area Conferences = Energy Watch Ser Energy Watchers Series: Proceedings of Iceeds Annual International Energy and Area Conferences = Energy Watch. Ser. Energy, Wealth and Governance in The Caucasus and Central Asia: Lessons Not Learned = Cent Asia Res Forum Energy, Wealth and Governance in The Caucasus and Central Asia: Lessons Not Learned = Cent. Asia. Res. Forum. Energy World = Energ World Energy World = Energ. World En familia (Santo Domingo, Dominican Republic) = Familia Enfance; psychologie, pedagogie, neuropsychiatrie, sociologie = Enfance Enfermedades del torax = Enferm Torax Enfermedades Emergentes = Enferm Emerg Enfermedades Emergentes = Enferm. Emerg. Enfermedades infecciosas y microbiologia clinica = Enferm Infecc Microbiol Clin Enfermedades Infecciosas y Microbiologia Clinica = Enferm. Infecc. Microbiol. Clin. Enfermedades Infecciosas Y Microbiologia Clinica=Enferm Infecc Microbiol Clin;; Enfermedades Infecciosas Y Microbiologia Clinica = Enferm Infec Micr Cl Enfermedades Infecciosas Y Microbiologia Clinica = Enferm. Infec. Micr. Cl. Enfermeras = Enfermeras Enfermeria clinica = Enferm Clin Enfermeria = Enfermeria Enfermeria Intensiva = Enferm. Intensiva Enfermeria intensiva / Sociedad Espanola de Enfermeria Intensiva y Unidades Coronarias = Enferm Intensiva Enfoque = Enfoque Enfoque feminista = Enfoque Fem Enfoques en atencion primaria = Enfoques Aten Prim Enforcement and Security Technologies = P Soc Photo-opt Ins Enforcement and Security Technologies = P. Soc. Photo-opt. Ins. Enforcement of Foreign Judgements Worldwide = Int Bar Ass Enforcement of Foreign Judgements Worldwide = Int. Bar. Ass. Engaged University: International Perspectives On Civic Engagement = Int Stud High Educ Engaged University: International Perspectives On Civic Engagement = Int. Stud. High. Educ. Engage/social action = Engage Soc Action Engaging Audiences: A Cognitive Approach to Spectating in The Theatre = Cogn Stud Lit Perfor Engaging Audiences: A Cognitive Approach to Spectating in The Theatre = Cogn. Stud. Lit. Perfor. Engaging Boys in Treatment: Creative Approaches to The Therapy Process = Rout Ser Counsel Engaging Boys in Treatment: Creative Approaches to The Therapy Process = Rout. Ser. Counsel. Engaging Russia As Partner and Participant: The Next Stage of Nato-russia Relations, Conference Proceedings = Rand Conf Proc Engaging Russia As Partner and Participant: The Next Stage of Nato-russia Relations, Conference Proceedings = Rand. Conf. Proc. Engaging Russia = Triangle Pap Engaging Russia = Triangle. Pap. Engendering China = Harv Con Ch Engendering China = Harv. Con. Ch. Engenharia Agricola = Eng Agric Engenharia Agricola = Eng. Agric. Engenharia Agricola = Eng Agr-jaboticabal Engenharia Agricola = Eng. Agr-jaboticabal. Engenharia Sanitaria E Ambiental = Eng Sanit Ambient Engenharia Sanitaria E Ambiental = Eng. Sanit. Ambient. Engine Coolant Testing: Fourth Volume = Am Soc Test Mater Engine Coolant Testing: Fourth Volume = Am. Soc. Test. Mater. Engineer and The Internet = Vdi Bericht Engineer and The Internet = Vdi. Bericht. Engineered Casting Solutions = Eng. Cast. Solutions Engineered Contaminated Soils and Interaction of Soil Geomembranes = Geotech Sp Engineered Contaminated Soils and Interaction of Soil Geomembranes = Geotech. Sp. Engineered Materials = Key Eng Mat Engineered Materials = Key. Eng. Mat. Engineered Nanostructural Films and Materials = P Soc Photo-opt Ins Engineered Nanostructural Films and Materials = P. Soc. Photo-opt. Ins. Engineered Porosity for Microphotonics and Plasmonics = Mater Res Soc Symp P Engineered Porosity for Microphotonics and Plasmonics = Mater. Res. Soc. Symp. P. Engineered Zinc Finger Proteins: Methods and Protocols = Methods Mol Biol Engineered Zinc Finger Proteins: Methods and Protocols = Methods Mol. Biol. Engineer = Engineer-london Engineer = Engineer-london. Engineering Analysis with Boundary Elements = Eng. Anal. Boundary Elem. Engineering Analysis With Boundary Elements = Eng Anal Bound Elem Engineering Analysis With Boundary Elements = Eng. Anal. Bound. Elem. Engineering and Deployment of Cooperative Information Systems, Proceedings = Lect Notes Comput Sc Engineering and Deployment of Cooperative Information Systems, Proceedings = Lect. Notes. Comput. Sc. Engineering and Food for The 21st Century = Food Preserv Technol Engineering and Food for The 21st Century = Food Preserv. Technol. Engineering and Management Innovation Series = Eng Manag Innov Ser Engineering and Management Innovation Series = Eng. Manag. Innov. Ser. Engineering and Manufacturing for Biotechnology, Vol 4 = Focus Biotechnol Engineering and Manufacturing for Biotechnology, Vol 4 = Focus. Biotechnol. Engineering and Mining Journal = Eng. Min. J. Engineering and Mining Journal Press = Eng. Min. J. Press Engineering and Physics - Synergy for Success = J Phys Conf Ser Engineering and Physics - Synergy for Success = J. Phys. Conf. Ser. Engineering and Process Economics = Eng Process Econ Engineering and Process Economics = Eng. Process Econ. Engineering and science = Eng Sci Engineering Apparel Fabrics and Garments = Woodhead Publ Text Engineering Apparel Fabrics and Garments = Woodhead. Publ. Text. Engineering Application of Fracture Mechanics = Eng Appl Fr Engineering Application of Fracture Mechanics = Eng. Appl. Fr. Engineering Applications of Artificial Intelligence = Eng Appl Artif Intel Engineering Applications of Artificial Intelligence = Eng. Appl. Artif. Intel. Engineering Applications of Artificial Intelligence = Eng. Appl. Artif. Intell. Engineering Applications of Bio-inspired Artificial Neural Networks, Vol Ii = Lect Notes Comput Sc Engineering Applications of Bio-inspired Artificial Neural Networks, Vol Ii = Lect. Notes. Comput. Sc. Engineering Applications of Computational Fluid Mechanics = Eng Appl Comp Fluid Engineering Applications of Computational Fluid Mechanics = Eng. Appl. Comp. Fluid Engineering Applications of Neural Networks, Proceedings = Comm Com Inf Sc Engineering Applications of Neural Networks, Proceedings = Comm. Com. Inf. Sc. Engineering A Quieter Europe = Proc Inst Mech Eng S Engineering A Quieter Europe = Proc. Inst. Mech. Eng. S. Engineering Aspects of Metal-waste Management = Adv Tr Sub Engineering Aspects of Metal-waste Management = Adv. Tr. Sub. Engineering Bulletin of Purdue University : Engineering Extension Series = Engn B P-en Engineering Bulletin of Purdue University : Engineering Extension Series = Engn. B. P-en. Engineering Ceramics '96: Higher Reliability Through Processing = Nato Asi 3 High Tech Engineering Ceramics '96: Higher Reliability Through Processing = Nato. Asi. 3. High. Tech. Engineering Ceramics: Multifunctional Properties - New Perspectives = Key Eng Mat Engineering Ceramics: Multifunctional Properties - New Perspectives = Key. Eng. Mat. Engineering Ceramics: Multifunctional Properties - New Perspectives = Key Eng Mater Engineering Ceramics: Multifunctional Properties - New Perspectives = Key. Eng. Mater. Engineering Computations = Eng Computation Engineering Computations = Eng. Computation. Engineering Computations = Engrg. Comput. Engineering Costs and Production Economics = Eng Cost Prod Econ Engineering Costs and Production Economics = Eng. Cost. Prod. Econ. Engineering Crop Plants for Industrial End Uses = Portl Pr P Engineering Crop Plants for Industrial End Uses = Portl. Pr. P. Engineering Cybernetics = Eng Cybern Engineering Cybernetics = Eng. Cybern. Engineering Decisions for Life Quality: How Safe Is Safe Enough? = Springer Ser Reliab Engineering Decisions for Life Quality: How Safe Is Safe Enough? = Springer. Ser. Reliab. Engineering Design, Vol 1 and 2 = Proc Inst Mech Eng S Engineering Design, Vol 1 and 2 = Proc. Inst. Mech. Eng. S. Engineering Digest = Eng Dig Engineering Digest = Eng. Dig. Engineering Economist=Eng. Econ. Engineering Education = Eng Educ Engineering Education = Eng. Educ. Engineering = Engineering-london Engineering = Engineering-london. Engineering Environment-mediated Multi-agent Systems = Lect Notes Artif Int Engineering Environment-mediated Multi-agent Systems = Lect. Notes. Artif. Int. Engineering Evolutionary Intelligent Systems = Stud Comput Intell Engineering Evolutionary Intelligent Systems = Stud. Comput. Intell. Engineering Failure Analysis = Eng Fail Anal Engineering Failure Analysis = Eng. Fail. Anal. Engineering Fluid Mechanics = Fluid Mech Appl Engineering Fluid Mechanics = Fluid Mech. Appl. Engineering for Human-computer Interaction = Ifip Trans A Engineering for Human-computer Interaction = Ifip. Trans. A. Engineering for Human-computer Interaction = Int Fed Info Proc Engineering for Human-computer Interaction = Int. Fed. Info. Proc. Engineering for Human-computer Interaction = Lect Notes Comput Sc Engineering for Human-computer Interaction = Lect. Notes. Comput. Sc. Engineering for Profit From Waste Iv = Proc Inst Mech Eng S Engineering for Profit From Waste Iv = Proc. Inst. Mech. Eng. S. Engineering for Profit From Waste = Proc Inst Mech Eng S Engineering for Profit From Waste = Proc. Inst. Mech. Eng. S. Engineering for Rural Development = Eng Rur Develop Engineering for Rural Development = Eng. Rur. Develop. Engineering Fracture Mechanics = Eng Fract Mech Engineering Fracture Mechanics = Eng. Fract. Mech. Engineering Geology = Eng Geol Engineering Geology = Eng. Geol. Engineering Geology for Tomorrow's Cities = Eng Geol Spec Publ S Engineering Geology for Tomorrow's Cities = Eng. Geol. Spec. Publ. S. Engineering Geology of Construction = Geol Soc Eng Geol Sp Engineering Geology of Construction = Geol. Soc. Eng. Geol. Sp. Engineering Geology of Weak Rock = Eng Geol Sp Engineering Geology of Weak Rock = Eng. Geol. Sp. Engineering Geology Special Publication = Eng Geol Sp Engineering Geology Special Publication = Eng. Geol. Sp. Engineering Geology Special Publication Series = Eng Geol Spec Publ S Engineering Geology Special Publication Series = Eng. Geol. Spec. Publ. S. Engineering Human Computer Interaction and Interactive Systems = Lect Notes Comput Sc Engineering Human Computer Interaction and Interactive Systems = Lect. Notes. Comput. Sc. Engineering Information Systems in The Internet Context = Int Fed Info Proc Engineering Information Systems in The Internet Context = Int. Fed. Info. Proc. Engineering in Life Sciences = Eng Life Sci Engineering in Life Sciences = Eng. Life Sci. Engineering in Medicine and Biology = Eng Med Biol Engineering in Medicine and Biology = Eng. Med. Biol. Engineering in medicine = Eng Med Engineering in Medicine = Eng. Med. Engineering Intelligent Systems for Electrical Engineering and Communications = Eng Intell Syst Elec Engineering Intelligent Systems for Electrical Engineering and Communications = Eng. Intell. Syst. Elec. Engineering Interactive Systems 2008, Proceedings = Lect Notes Comput Sc Engineering Interactive Systems 2008, Proceedings = Lect. Notes. Comput. Sc. Engineering Interactive Systems = Lect Notes Comput Sc Engineering Interactive Systems = Lect. Notes. Comput. Sc. Engineering Interrelated Electricity Markets: An Agent-based Computational Approach = Contrib Manag Sci Engineering Interrelated Electricity Markets: An Agent-based Computational Approach = Contrib. Manag. Sci. Engineering Journal-american Institute of Steel Construction = Eng J Aisc Engineering Journal-american Institute of Steel Construction = Eng. J. Aisc. Engineering Journal-american Institute of Steel Construction Inc = Eng J Aisc Engineering Journal-american Institute of Steel Construction Inc = Eng. J. Aisc. Engineering Journal = Eng J-canada Engineering Journal = Eng. J-canada. Engineering Knowledge in The Age of The Semantic Web, Proceedings = Lect Notes Comput Sc Engineering Knowledge in The Age of The Semantic Web, Proceedings = Lect. Notes. Comput. Sc. Engineering Management International = Eng Manage Int Engineering Management International = Eng. Manage. Int. Engineering Materials and Design = Eng Mater Des Engineering Materials and Design = Eng. Mater. Des. Engineering Materials and Processes = Eng Mater Process Engineering Materials and Processes = Eng. Mater. Process. Engineering Materials and Processes = Eng Mat Pro Engineering Materials and Processes = Eng. Mat. Pro. Engineering Materials = Eng Mater Engineering Materials = Eng. Mater. Engineering Materials Iii = Adv Mat Res Engineering Materials Iii = Adv. Mat. Res. Engineering News-record = Eng News-rec Engineering News-record = Eng. News-rec. Engineering of Crystalline Materials Properties = Nato Science Peace S Engineering of Crystalline Materials Properties = Nato. Science. Peace. S. Engineering of Crystalline Materials Properties = Nato Sci Peace Sec B Engineering of Crystalline Materials Properties = Nato. Sci. Peace. Sec. B. Engineering of Functional Skeletal Tissues = Top Bone Biol Engineering of Functional Skeletal Tissues = Top. Bone. Biol. Engineering of Mixed Reality Systems = Hum-comput Int-sprin Engineering of Mixed Reality Systems = Hum-comput. Int-sprin. Engineering of Sport 8: Engineering Emotion - 8th Conference of The International Sports Engineering Association (isea) = Procedia Engineer Engineering of Sport 8: Engineering Emotion - 8th Conference of The International Sports Engineering Association (isea) = Procedia. Engineer. Engineering of Stem Cells = Adv Biochem Eng Biot Engineering of Stem Cells = Adv. Biochem. Eng. Biot. Engineering Of/with Lipases = Nato Adv Sci I E-app Engineering Of/with Lipases = Nato. Adv. Sci. I. E-app. Engineering Of/with Lipases = Nato Adv Sci Inst Se Engineering Of/with Lipases = Nato. Adv. Sci. Inst. Se. Engineering Optics, Third Edition = Springer Ser Opt Sci Engineering Optics, Third Edition = Springer. Ser. Opt. Sci. Engineering Optimization = Eng. Optim. Engineering Optimization = Eng Optimiz Engineering Optimization = Eng. Optimiz. Engineering & Papermakers: Forming Bonds for Better Papermaking, Books 1-3 = P Tech As P Engineering & Papermakers: Forming Bonds for Better Papermaking, Books 1-3 = P. Tech. As. P. Engineering Plants for Commercial Products and Applications = Ann Ny Acad Sci Engineering Plants for Commercial Products and Applications = Ann. Ny. Acad. Sci. Engineering Plasticity and Its Applications From Nanoscale to Macroscale, Pts 1 and 2 = Key Eng Mat Engineering Plasticity and Its Applications From Nanoscale to Macroscale, Pts 1 and 2 = Key. Eng. Mat. Engineering Plasticity and Its Applications From Nanoscale to Macroscale, Pts 1 and 2 = Key Eng Mater Engineering Plasticity and Its Applications From Nanoscale to Macroscale, Pts 1 and 2 = Key. Eng. Mater. Engineering Plasticity From Macroscale to Nanoscale Pts 1 and 2 = Key Eng Mat Engineering Plasticity From Macroscale to Nanoscale Pts 1 and 2 = Key. Eng. Mat. Engineering Plasticity From Macroscale to Nanoscale Pts 1 and 2 = Key Eng Mater Engineering Plasticity From Macroscale to Nanoscale Pts 1 and 2 = Key. Eng. Mater. Engineering Plastics = Eng Plast Engineering Plastics = Eng. Plast. Engineering Progress = Adv Sci Eng Engineering Progress = Adv. Sci. Eng. Engineering Psychology and Cognitive Ergonomics, Proceedings = Lect Notes Artif Int Engineering Psychology and Cognitive Ergonomics, Proceedings = Lect. Notes. Artif. Int. Engineering Reality of Virtual Reality 2008 = Proc Spie Engineering Reality of Virtual Reality 2008 = Proc. Spie. Engineering Reality of Virtual Reality 2010 = Proc Spie Engineering Reality of Virtual Reality 2010 = Proc. Spie. Engineering Reality of Virtual Reality 2010 = P Soc Photo-opt Ins Engineering Reality of Virtual Reality 2010 = P. Soc. Photo-opt. Ins. Engineering Science and Education Journal = Eng Sci Educ J Engineering Science and Education Journal = Eng. Sci. Educ. J. Engineering Sciences = Eng. Sci. Engineering Secure Software and Systems, Proceedings = Lect Notes Comput Sc Engineering Secure Software and Systems, Proceedings = Lect. Notes. Comput. Sc. Engineering Self-organising Systems = Lect Notes Artif Int Engineering Self-organising Systems = Lect. Notes. Artif. Int. Engineering Self-organising Systems: Methodologies and Applications = Lect Notes Comput Sc Engineering Self-organising Systems: Methodologies and Applications = Lect. Notes. Comput. Sc. Engineering Societies in The Agents World Iii = Lect Notes Artif Int Engineering Societies in The Agents World Iii = Lect. Notes. Artif. Int. Engineering Societies in The Agents World Iv = Lect Notes Comput Sc Engineering Societies in The Agents World Iv = Lect. Notes. Comput. Sc. Engineering Societies in The Agents World Ix = Lect Notes Artif Int Engineering Societies in The Agents World Ix = Lect. Notes. Artif. Int. Engineering Societies in The Agents World Viii = Lect Notes Artif Int Engineering Societies in The Agents World Viii = Lect. Notes. Artif. Int. Engineering Societies in The Agents World Vii = Lect Notes Artif Int Engineering Societies in The Agents World Vii = Lect. Notes. Artif. Int. Engineering Societies in The Agents World Vi = Lect Notes Artif Int Engineering Societies in The Agents World Vi = Lect. Notes. Artif. Int. Engineering Societies in The Agents World V = Lect Notes Artif Int Engineering Societies in The Agents World V = Lect. Notes. Artif. Int. Engineering Societies in The Agents World X = Lect Notes Artif Int Engineering Societies in The Agents World X = Lect. Notes. Artif. Int. Engineering Societis in The Agents World Iii = Lect Notes Artif Int Engineering Societis in The Agents World Iii = Lect. Notes. Artif. Int. Engineering Solutions to The Management of Solid Radioactive Waste = Proc Inst Mech Eng S Engineering Solutions to The Management of Solid Radioactive Waste = Proc. Inst. Mech. Eng. S. Engineering Stochastic Local Search Algorithms: Designing, Implementing and Analyzing Effective Heuristics = Lect Notes Comput Sc Engineering Stochastic Local Search Algorithms: Designing, Implementing and Analyzing Effective Heuristics = Lect. Notes. Comput. Sc. Engineering Structures = Eng Struct Engineering Structures = Eng. Struct. Engineering Structures Under Extreme Conditions = Nato Sc S Ss Iii C S Engineering Structures Under Extreme Conditions = Nato. Sc. S. Ss. Iii. C. S. Engineering Studies = Eng Stud Engineering Studies = Eng. Stud. Engineering Systems With Intelligence = Int S Micro Engineering Systems With Intelligence = Int. S. Micro. Engineering Theories of Software Intensive Systems = Nato Sci Ser Ii-math Engineering Theories of Software Intensive Systems = Nato. Sci. Ser. Ii-math. Engineering Theories of Software Intensive Systems = Nato Sci Ser Ii Math Engineering Theories of Software Intensive Systems = Nato. Sci. Ser. Ii. Math. Engineering Thin Films With Ion Beams, Nanoscale Diagnostics, and Molecular Manufacturing = Proc Spie Engineering Thin Films With Ion Beams, Nanoscale Diagnostics, and Molecular Manufacturing = Proc. Spie. Engineering Thin Films With Ion Beams, Nanoscale Diagnostics, and Molecular Manufacturing = P Soc Photo-opt Ins Engineering Thin Films With Ion Beams, Nanoscale Diagnostics, and Molecular Manufacturing = P. Soc. Photo-opt. Ins. Engineering Tools Techniques and Tables = Eng Tools Tech Table Engineering Tools Techniques and Tables = Eng. Tools Tech. Table. Engineering Turbulence Modelling and Experiments 3 = Els Ser Therm Fluid Engineering Turbulence Modelling and Experiments 3 = Els. Ser. Therm. Fluid. Engineering With Ceramics = Brit Cer Pr Engineering With Ceramics = Brit. Cer. Pr. Engineering With Computers = Eng Comput Engineering With Computers = Eng. Comput. Engineering With Computers = Eng Comput-germany Engineering With Computers = Eng. Comput-germany. Engineers Guide to Automated Testing of High-speed Interfaces = Artech Hse Microw Li Engineers Guide to Automated Testing of High-speed Interfaces = Artech. Hse. Microw. Li. England and Iberia in The Middle Ages, 12th-15th Century: Cultural, Literary, and Political Exchanges = New Middle Ages England and Iberia in The Middle Ages, 12th-15th Century: Cultural, Literary, and Political Exchanges = New. Middle Ages. English and Celtic in Contact = Routl Stud Ger Ling English and Celtic in Contact = Routl. Stud. Ger. Ling. English Education = Engl Educ English Education = Engl. Educ. English Electric Journal = Engl Electr J English Electric Journal = Engl. Electr. J. English = English English for Academic Purposes: An Advanced Resource Book = Routl Appl Lingu Ser English for Academic Purposes: An Advanced Resource Book = Routl. Appl. Lingu. Ser. English for Specific Purposes = Engl Specif Purp English for Specific Purposes = Engl. Specif. Purp. English Funerary Elegy in The Seventeenth Century: Laws in Mourning = Early Mod Lit Hist English Funerary Elegy in The Seventeenth Century: Laws in Mourning = Early. Mod. Lit. Hist. English Galileo = Bost Stud Philos Sci English Galileo = Bost. Stud. Philos. Sci. English Historical Drama, 1500-1660 = Early Mod Lit Hist English Historical Drama, 1500-1660 = Early. Mod. Lit. Hist. English Historical Linguistics 1992 = Amst Stud Theory His English Historical Linguistics 1992 = Amst. Stud. Theory. His. English Historical Review = EHR English Historical Review = Engl Hist Rev English Historical Review = Engl. Hist. Rev. English in Africa = Engl Afr English in Africa = Engl. Afr. English in Australia = Engl Aust English in Australia = Engl. Aust. English in Education = Engl Educ-uk English in Education = Engl. Educ-uk. English Journal = Engl J English Journal = Engl. J. English L2 Reading: Getting to The Bottom, Second Edition = Esl Appl Ling Prof English L2 Reading: Getting to The Bottom, Second Edition = Esl. Appl. Ling. Prof. English, Language, and Education = Engl Lang E English, Language, and Education = Engl. Lang. E. English Language & Linguistics = Engl Lang Linguist English Language & Linguistics = Engl. Lang. Linguist. English language notes = Engl Lang Notes English Language Notes = Engl Lang Notes English Language Notes = Engl. Lang. Notes English Language Teacher in Global Civil Society = Esl Appl Ling Prof English Language Teacher in Global Civil Society = Esl. Appl. Ling. Prof. English Linguistics = Anglophonia English Linguistics = Anglophonia. English Literary Renaissance = Engl Literary Renais English Literary Renaissance = Engl. Literary Renais. English Literary Sexology -translations of Inversion, 1860-1930 = Palgrave Stud Ninet- English Literary Sexology -translations of Inversion, 1860-1930 = Palgrave. Stud. Ninet-. English Literature in Transition 1880-1920 = Engl Lit Transition English Literature in Transition 1880-1920 = Engl. Lit. Transition English Short-title Catalogue: Past, Present, Future = Ams St Eigh English Short-title Catalogue: Past, Present, Future = Ams. St. Eigh. English Studies = Engl Stud English Studies = Engl. Stud. English Studies in Africa = Engl Stud Afr English Studies in Africa = Engl. Stud. Afr. English Studies in Canada = Engl Stud Can English Studies in Canada = Engl. Stud. Can. English Teaching-practice and Critique = Engl Teach-pract Cri English Teaching-practice and Critique = Engl. Teach-pract. Cri. English Teaching-practice and Critique = Engl Teach-prat Crit English Teaching-practice and Critique = Engl. Teach-prat. Crit. English World-wide = Engl World-wide English World-wide = Engl. World-wide English Writing and India, 1600-1920: Colonizing Aesthetics = Rout Res Postcol Lit English Writing and India, 1600-1920: Colonizing Aesthetics = Rout. Res. Postcol. Lit. Enhanced and Synthetic Vision 1996 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 1996 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 1997 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 1997 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 1998 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 1998 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 1999 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 1999 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2000 = Proc Spie Enhanced and Synthetic Vision 2000 = Proc. Spie. Enhanced and Synthetic Vision 2000 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2000 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2001 = Proc Spie Enhanced and Synthetic Vision 2001 = Proc. Spie. Enhanced and Synthetic Vision 2001 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2001 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2002 = Proc Spie Enhanced and Synthetic Vision 2002 = Proc. Spie. Enhanced and Synthetic Vision 2002 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2002 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2003 = Proc Spie Enhanced and Synthetic Vision 2003 = Proc. Spie. Enhanced and Synthetic Vision 2003 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2003 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2004 = Proc Spie Enhanced and Synthetic Vision 2004 = Proc. Spie. Enhanced and Synthetic Vision 2004 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2004 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2005 = Proc Spie Enhanced and Synthetic Vision 2005 = Proc. Spie. Enhanced and Synthetic Vision 2005 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2005 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2006 = Proc Spie Enhanced and Synthetic Vision 2006 = Proc. Spie. Enhanced and Synthetic Vision 2006 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2006 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2007 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2007 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2008 = Proc Spie Enhanced and Synthetic Vision 2008 = Proc. Spie. Enhanced and Synthetic Vision 2008 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2008 = P. Soc. Photo-opt. Ins. Enhanced and Synthetic Vision 2010 = Proc Spie Enhanced and Synthetic Vision 2010 = Proc. Spie. Enhanced and Synthetic Vision 2010 = P Soc Photo-opt Ins Enhanced and Synthetic Vision 2010 = P. Soc. Photo-opt. Ins. Enhanced Biodegradation of Pesticides in The Environment = Acs Sym Ser Enhanced Biodegradation of Pesticides in The Environment = Acs. Sym. Ser. Enhancement of Eaf Performance By Injection Technology = Mcmaster S Enhancement of Eaf Performance By Injection Technology = Mcmaster. S. Enhancing Biocontrol Agents and Handling Risks = Nato Sci Ser I Life Enhancing Biocontrol Agents and Handling Risks = Nato. Sci. Ser. I. Life. Enhancing Cognitive Assistance Systems With Inertial Measurement Units = Stud Comput Intell Enhancing Cognitive Assistance Systems With Inertial Measurement Units = Stud. Comput. Intell. Enhancing Humanity: The Philosophical Foundations of Humanistic Education = Philos Educ-neth Enhancing Humanity: The Philosophical Foundations of Humanistic Education = Philos. Educ-neth. Enhancing Human Performance in Sport : New Concepts and Developments = Am Acad Pe Enhancing Human Performance in Sport : New Concepts and Developments = Am. Acad. Pe. Enhancing Prospects of Longer-term Sustainability of Cross-cultural Inset Initiatives in China = Educ Compet Glob Wor Enhancing Prospects of Longer-term Sustainability of Cross-cultural Inset Initiatives in China = Educ. Compet. Glob. Wor. Enhancing The City: New Perspectives for Tourism and Leisure = Urban Land Perspect Enhancing The City: New Perspectives for Tourism and Leisure = Urban. Land. Perspect. Enhancing The Power of The Internet = Stud Fuzz Soft Comp Enhancing The Power of The Internet = Stud. Fuzz. Soft. Comp. Enhancing The Quality of Life of People With Intellectual Disabilities: From Theory to Practice = Soc Indic Res Ser Enhancing The Quality of Life of People With Intellectual Disabilities: From Theory to Practice = Soc. Indic. Res. Ser. Enhancing Urban Environment By Environmental Upgrading and Restoration = Nato Sci S Ss Iv Ear Enhancing Urban Environment By Environmental Upgrading and Restoration = Nato. Sci. S. Ss. Iv. Ear. Enigma of Good and Evi: The Moral Sentiment in Literature = Analecta Husserl Enigma of Good and Evi: The Moral Sentiment in Literature = Analecta. Husserl. Enigma of Good and Evi: The Moral Sentiment in Literature = Anal Hus Yb Enigma of Good and Evi: The Moral Sentiment in Literature = Anal. Hus. Yb. Enigma of The Vertical Dimension = Cranio Grow Enigma of The Vertical Dimension = Cranio. Grow. Enivironment Materials and Environment Management Pts 1-3 = Adv Mater Res-switz Enivironment Materials and Environment Management Pts 1-3 = Adv. Mater. Res-switz. Enlace. Inter-American Commission of Women = Enlace Enlarged Space and Ground Data Base for Ionospheric Modelling = Adv Space Res-series Enlarged Space and Ground Data Base for Ionospheric Modelling = Adv. Space Res-series. ENLB. Emergency nurse legal bulletin = ENLB Emerg Nurse Leg Bull ENLB: Emergency Nurse Legal Bulletin = ENLB Emerg. Nurse Leg. Bull. Enlightened Eye: Goethe and Visual Culture = Ams C Mod G Enlightened Eye: Goethe and Visual Culture = Ams. C. Mod. G. Enlightenment, Passion, Modernity = Cult Sitings Enlightenment, Passion, Modernity = Cult. Sitings. Enlightenment Political Thought and Non-western Societies: Sultans and Savages = Routl Stud Soc Polit Enlightenment Political Thought and Non-western Societies: Sultans and Savages = Routl. Stud. Soc. Polit. Enlightenment, Rights and Revolution Series = Enl Rig Rev Enlightenment, Rights and Revolution Series = Enl. Rig. Rev. Ennius Perennis: The Annals and Beyond = Camb C J Proc Cam Ph Ennius Perennis: The Annals and Beyond = Camb. C. J. Proc. Cam. Ph. Eno Fo = ENO FO ENO FO = ENO FO Enonciation Et Parti Pris = Faux Titre Enonciation Et Parti Pris = Faux. Titre. E (Norwalk, Conn.) = E Enoxacin : Focus On Development = Roy Soc Med Int Cong Enoxacin : Focus On Development = Roy. Soc. Med. Int. Cong. Enpowerment for Sustainable Tourism Development = Tour Soc Sci Ser Enpowerment for Sustainable Tourism Development = Tour. Soc. Sci. Ser. Enquetes du Musee de la vie wallonne = Enquetes Mus Vie Wallonne Enriching Communications = Enrich Commun Enriching Communications = Enrich. Commun. Ensaios de literatura e filologia, publ. do Dept. de Letras clássicas, Fac. de Letras Univ. federal de Minas Gerais = ELF Enseignement des Mathématiques = Enseign. Math. Ensenanza De Las Ciencias = Ensen Cienc Ensenanza De Las Ciencias = Ensen. Cienc. Ensho = Ensho Enslaved Women and The Art of Resistance in Antebellum America = Black Relig Woman Th Enslaved Women and The Art of Resistance in Antebellum America = Black. Relig. Woman. Th. Ensuring Control Accuracy = Lect Notes Contr Inf Ensuring Control Accuracy = Lect. Notes. Contr. Inf. Entanglement and Decoherence: Foundations and Modern Trends = Lect Notes Phys Entanglement and Decoherence: Foundations and Modern Trends = Lect. Notes. Phys. Entanglement Between Noncomplementary Parts of Many-body Systems = Springer Theses-reco Entanglement Between Noncomplementary Parts of Many-body Systems = Springer. Theses-reco. Entanglement, Information, and The Interpretation of Quantum Mechanics = Front Collect Entanglement, Information, and The Interpretation of Quantum Mechanics = Front. Collect. Ent-ear Nose & Throat Journal = Ent-ear Nose Throat ENTechnology = Entechnology Enterobacter Sakazakii = Emerg Iss Food Saf Enterobacter Sakazakii = Emerg. Iss. Food. Saf. Enterprise and Organizational Modeling and Simulation = Lect Notes Bus Inf Enterprise and Organizational Modeling and Simulation = Lect. Notes. Bus. Inf. Enterprise and Society=Enterprise Society Enterprise Applications and Services in The Finance Industry = Lect Notes Bus Inf Enterprise Applications and Services in The Finance Industry = Lect. Notes. Bus. Inf. Enterprise Architecture At Work: Modelling, Communication and Analysis = Enterp Eng Ser Enterprise Architecture At Work: Modelling, Communication and Analysis = Enterp. Eng. Ser. Enterprise Architecture At Work: Modelling, Communication and Analysis, Second Edition = Enterp Eng Ser Enterprise Architecture At Work: Modelling, Communication and Analysis, Second Edition = Enterp. Eng. Ser. Enterprise Architecture: Creating Value By Informed Governance = Enterp Eng Ser Enterprise Architecture: Creating Value By Informed Governance = Enterp. Eng. Ser. Enterprise, Business-process and Information Systems Modeling = Lect Notes Bus Inf Enterprise, Business-process and Information Systems Modeling = Lect. Notes. Bus. Inf. Enterprise Collaboration: On-demand Information Exchange for Extended Enterprises = Integr Ser Inform Sy Enterprise Collaboration: On-demand Information Exchange for Extended Enterprises = Integr. Ser. Inform. Sy. Enterprise Engineering Series = Enterp Eng Ser Enterprise Engineering Series = Enterp. Eng. Ser. Enterprise Governance and Enterprise Engineering = Enterp Eng Ser Enterprise Governance and Enterprise Engineering = Enterp. Eng. Ser. Enterprise Information Security and Privacy = Artech Hse Inf Secur Enterprise Information Security and Privacy = Artech. Hse. Inf. Secur. Enterprise Information Systems-bk = Lect Notes Bus Inf P Enterprise Information Systems-bk = Lect. Notes. Bus. Inf. P. Enterprise Information Systems-b = Lect Notes Bus Inf Enterprise Information Systems-b = Lect. Notes. Bus. Inf. Enterprise Information Systems-b = Lect Notes Bus Inf P Enterprise Information Systems-b = Lect. Notes. Bus. Inf. P. Enterprise Information Systems-book = Lect Notes Bus Inf Enterprise Information Systems-book = Lect. Notes. Bus. Inf. Enterprise Information Systems-book = Lect Notes Bus Inf P Enterprise Information Systems-book = Lect. Notes. Bus. Inf. P. Enterprise Information Systems-books = Lect Notes Bus Inf Enterprise Information Systems-books = Lect. Notes. Bus. Inf. Enterprise Information Systems = Enterp Inform Syst Enterprise Information Systems = Enterp. Inform. Syst. Enterprise Information Systems = Enterp Inf Syst-uk Enterprise Information Systems = Enterp. Inf. Syst-uk. Enterprise Information Systems = Lect Notes Bus Inf P Enterprise Information Systems = Lect. Notes. Bus. Inf. P. Enterprise Information Systems Pt I = Comm Com Inf Sc Enterprise Information Systems Pt I = Comm. Com. Inf. Sc. Enterprise Information Systems Pt Ii = Comm Com Inf Sc Enterprise Information Systems Pt Ii = Comm. Com. Inf. Sc. Enterprise Inter- and Intra-organizational Integration: Building International Consensus = Int Fed Info Proc Enterprise Inter- and Intra-organizational Integration: Building International Consensus = Int. Fed. Info. Proc. Enterprise Interoperability = Lect Notes Bus Inf P Enterprise Interoperability = Lect. Notes. Bus. Inf. P. Enterprise Interoperability, Proceedings = Lect Notes Bus Inf Enterprise Interoperability, Proceedings = Lect. Notes. Bus. Inf. Enterprise Interoperability, Proceedings = Lect Notes Bus Inf P Enterprise Interoperability, Proceedings = Lect. Notes. Bus. Inf. P. Enterprise Management With Sap Sem - Business Analytics = Sap Excell Enterprise Management With Sap Sem - Business Analytics = Sap Excell. Enterprise of Education = Res Educ Afr Caribb Enterprise of Education = Res. Educ. Afr. Caribb. Enterprise of Science in Islam: New Perspectives = Dibner Inst Stud His Enterprise of Science in Islam: New Perspectives = Dibner. Inst. Stud. His. Enterprise & Society = Enterp Soc Enterprise & Society = Enterp. Soc. Enterprising Worlds: A Geographic Perspective On Economics, Environments & Ethics = Geoj Lib Enterprising Worlds: A Geographic Perspective On Economics, Environments & Ethics = Geoj. Lib. Enterprising Youth: Social Values and Acculturation in Nineteenth-century American Children's Literature = Child Lit Cult Enterprising Youth: Social Values and Acculturation in Nineteenth-century American Children's Literature = Child. Lit. Cult. Entertainment Computing - Icec 2004 = Lect Notes Comput Sc Entertainment Computing - Icec 2004 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2005 = Lect Notes Comput Sc Entertainment Computing - Icec 2005 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2006 = Lect Notes Comput Sc Entertainment Computing - Icec 2006 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2007 = Lect Notes Comput Sc Entertainment Computing - Icec 2007 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2008 = Lect Notes Comput Sc Entertainment Computing - Icec 2008 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2009 = Lect Notes Comput Sc Entertainment Computing - Icec 2009 = Lect. Notes. Comput. Sc. Entertainment Computing - Icec 2010 = Lect Notes Comput Sc Entertainment Computing - Icec 2010 = Lect. Notes. Comput. Sc. Entertainment Design = Entertain Des Entertainment Design = Entertain. Des. Entertainment for Education: Digital Techniques and Systems = Lect Notes Comput Sc Entertainment for Education: Digital Techniques and Systems = Lect. Notes. Comput. Sc. Entgottertes Leid: Zur Lyrik Rose Auslanders Unter Berucksichtigung Der Poetologien Von Theodor W. Adorno, Peter Szondi Und Jacques Derrida = Conditio Jud Entgottertes Leid: Zur Lyrik Rose Auslanders Unter Berucksichtigung Der Poetologien Von Theodor W. Adorno, Peter Szondi Und Jacques Derrida = Conditio. Jud. Entgrenzung Der Verantwortung: Nietzsche, Dostojewskij, Levinas = Monogr Texte Nietzsc Entgrenzung Der Verantwortung: Nietzsche, Dostojewskij, Levinas = Monogr. Texte. Nietzsc. Entity-relationship Approach - Er 92 = Lect Notes Comput Sc Entity-relationship Approach - Er 92 = Lect. Notes. Comput. Sc. Entity-relationship Approach - Er '94 = Lect Notes Comput Sc Entity-relationship Approach - Er '94 = Lect. Notes. Comput. Sc. Entomofauna = Entomofauna Entomologia experimentalis et applicata = Entomol Exp Appl Entomologia Experimentalis et Applicata = Entomol. Exp. Appl. Entomologia Experimentalis Et Applicata = Entomol Exp Appl Entomologia Experimentalis Et Applicata = Entomol. Exp. Appl. Entomologia Generalis = Entomol Gen Entomologia Generalis = Entomol. Gen. Entomologia Sinica = Zhongguo kun chong xue|Entomol. Sin. Entomologia y Vectores = Entomol. Vect. Entomologica Americana = Entomol Am Entomologica Americana = Entomol. Am. Entomologica Americana = Entomol Am-ny Entomologica Americana = Entomol. Am-ny. Entomologica Fennica = Entomol Fennica Entomologica Fennica = Entomol. Fennica Entomologica Germanica = Entomol Ger Entomologica Germanica = Entomol. Ger. Entomological news = Entomol News Entomological News = Entomol News Entomological News = Entomol. News Entomological Research = Entomol Res Entomological Research = Entomol. Res. Entomological Research in Mediterranean Forest Ecosystems = Sci Update Entomological Research in Mediterranean Forest Ecosystems = Sci. Update. Entomological Science = Entomol Sci Entomological Science = Entomol. Sci. Entomologica Scandinavica = Entomol Scand Entomologica Scandinavica = Entomol. Scand. Entomologische Berichte Luzern = Entomol. Ber. Luzern Entomologische Zeitschrift = Entomol. Z. Entomoloji Dernegi Yayinlari = Entomol D Y Entomoloji Dernegi Yayinlari = Entomol. D. Y. Entomon = Entomon Entomophaga = Entomophaga Entre nous (Copenhagen, Denmark) = Entre Nous Cph Den Entrepreneurial Group: Social Identities, Relations, and Collective Action = Kauff Found Ser Entrepreneurial Group: Social Identities, Relations, and Collective Action = Kauff. Found. Ser. Entrepreneurial Strategic Content = Adv Entrep Firm Emer Entrepreneurial Strategic Content = Adv. Entrep. Firm. Emer. Entrepreneurial Strategic Processes = Adv Entrep Firm Emer Entrepreneurial Strategic Processes = Adv. Entrep. Firm. Emer. Entrepreneurship and Business Development = Fgf Entrepr Entrepreneurship and Business Development = Fgf. Entrepr. Entrepreneurship and Dynamics in The Knowledge Economy = Routl Stud Glob Comp Entrepreneurship and Dynamics in The Knowledge Economy = Routl. Stud. Glob. Comp. Entrepreneurship and Economic Progress = Rout Found Mark Econ Entrepreneurship and Economic Progress = Rout. Found. Mark. Econ. Entrepreneurship and Openness: Theory and Evidence = Ind Dynam Entrep Inn Entrepreneurship and Openness: Theory and Evidence = Ind. Dynam. Entrep. Inn. Entrepreneurship and Regional Development = Entrep Region Dev Entrepreneurship and Regional Development = Entrep. Region. Dev. Entrepreneurship and Regional Development=Entrepreneurship Reg. Devel. Entrepreneurship and Small Business Development in Post-socialist Economies = Routl Stud Small Bus Entrepreneurship and Small Business Development in Post-socialist Economies = Routl. Stud. Small Bus. Entrepreneurship and Smes = Entrepreneurship Sme Entrepreneurship and Smes = Entrepreneurship Sme. Entrepreneurship: Frameworks and Empirical Investigations From Forthcoming Leaders of European Research = Adv Entrep Firm Emer Entrepreneurship: Frameworks and Empirical Investigations From Forthcoming Leaders of European Research = Adv. Entrep. Firm. Emer. Entrepreneurship, Growth, and Innovation: The Dynamics of Firms and Industries = Int Stud Entrep Entrepreneurship, Growth, and Innovation: The Dynamics of Firms and Industries = Int. Stud. Entrep. Entrepreneurship in Emerging Domestic Markets: Barriers and Innovation = Milken Inst Ser Fina Entrepreneurship in Emerging Domestic Markets: Barriers and Innovation = Milken. Inst. Ser. Fina. Entrepreneurship in The Region = Int Stud Entrep Entrepreneurship in The Region = Int. Stud. Entrep. Entrepreneurship in The United States: The Future Is Now = Int Stud Entrep Entrepreneurship in The United States: The Future Is Now = Int. Stud. Entrep. Entrepreneurship, Money and Coordination: Hayeks Theory of Cultural Evolution = New Horiz Inst Evol Entrepreneurship, Money and Coordination: Hayeks Theory of Cultural Evolution = New. Horiz. Inst. Evol. Entrepreneurship Policy: Theory and Practice = Int Stud Entrep Entrepreneurship Policy: Theory and Practice = Int. Stud. Entrep. Entrepreneurship Research: Global Perspectives = Adv Ser Manage Entrepreneurship Research: Global Perspectives = Adv. Ser. Manage. Entrepreneurship = Res Sociol Work Entrepreneurship = Res. Sociol. Work. Entrepreneurship-theory and Practice = Entrep Theory Pract Entrepreneurship-theory and Practice = Entrep. Theory. Pract. Entrepreneurship Theory and Practice = Entrep Theory Pract Entrepreneurship Theory and Practice = Entrep. Theory Pract. Entropies of Condensed Phases and Complex Systems: A First Principles Approach = Springer Theses-reco Entropies of Condensed Phases and Complex Systems: A First Principles Approach = Springer. Theses-reco. Entropy and Energy Dissipation in Water Resources = Water Trans Entropy and Energy Dissipation in Water Resources = Water Trans. Entropy and The Quantum = Contemp Math Entropy and The Quantum = Contemp. Math. Entropy-bk = Princet Ser Appl Mat Entropy-bk = Princet. Ser. Appl. Mat. Entropy-bk = Princ Ser Appl Math Entropy-bk = Princ. Ser. Appl. Math. Entropy-book = Princet Ser Appl Mat Entropy-book = Princet. Ser. Appl. Mat. Entropy-book = Princ Ser Appl Math Entropy-book = Princ. Ser. Appl. Math. Entropy Coders of The H.264/avc Standard: Algorithms and Vlsi Architectures = Signals Commun Techn Entropy Coders of The H.264/avc Standard: Algorithms and Vlsi Architectures = Signals. Commun. Techn. Entropy = Entropy Entropy = Entropy-switz Entropy = Entropy-switz. Entropy Methods for The Boltzmann Equation = Lect Notes Math Entropy Methods for The Boltzmann Equation = Lect. Notes. Math. Entscheidungen des Bundesgerichtshofes in Zivilsachen. Germany (West). Bundesgerichtshof = Entscheid Bundesgerichtshofes Zivilsachen Entsorgung: Wiederverwertung - Disposal, Bds I and Ii = Prog Radiat Protect Entsorgung: Wiederverwertung - Disposal, Bds I and Ii = Prog. Radiat. Protect. Entwicklungsmanagement: Methoden in Der Produktentwicklung = Vdi-buch Entwicklungsmanagement: Methoden in Der Produktentwicklung = Vdi-buch. Entwicklung Und Erprobung Innovativer Produkte - Rapid Prototyping = Vdi-buch Entwicklung Und Erprobung Innovativer Produkte - Rapid Prototyping = Vdi-buch. Enumerative Invariants in Algebraic Geometry and String Theory = Lect Notes Math Enumerative Invariants in Algebraic Geometry and String Theory = Lect. Notes. Math. Envelopes and Sharp Embeddings of Function Spaces = Ch Crc Res Notes Mat Envelopes and Sharp Embeddings of Function Spaces = Ch. Crc. Res. Notes. Mat. Envirnomental Control Management = Environ Contr Manage Envirnomental Control Management = Environ. Contr. Manage. Environ. Chem. Preprints of Extended Abstracts presented at the ACS National Meeting, American Chemical Society, Division of Environmental Chemistry = Prepr. Ext. Abstr. ACS Natl. Meet., Am. Chem. Soc., Div. Environ. Eng. Journal of Environmental Science and Health, Part A: Toxic/Hazardous Substances & Environmental Engineering = J. Environ. Sci. Health, Part A: Toxic/Hazard. Subst. Environment Across Cultures = Wissensch Technikfol Environment Across Cultures = Wissensch. Technikfol. Environment Across Cultures = Wiss Technik Folgenb Environment Across Cultures = Wiss. Technik. Folgenb. Environmental Accounting = Adv Environ Acc Man Environmental Accounting = Adv. Environ. Acc. Man. Environmental action = Environ Aciton Environmental affairs = Environ Aff Environmental and Coastal Hydraulics: Protecting The Aquatic Habitat, Proceedings of Theme B, Vols 1 & 2 = Water Chang Glob Com Environmental and Coastal Hydraulics: Protecting The Aquatic Habitat, Proceedings of Theme B, Vols 1 & 2 = Water. Chang. Glob. Com. Environmental and Ecological Statistics = Environ Ecol Stat Environmental and Ecological Statistics = Environ. Ecol. Stat. Environmental and Ecological Statistics Series = Environ Ecol Stat Se Environmental and Ecological Statistics Series = Environ. Ecol. Stat. Se. Environmental and Engineering Geoscience = Environ. Eng. Geosci. Environmental and experimental botany = Environ Exp Bot Environmental and Experimental Botany = Environ Exp Bot Environmental and Experimental Botany = Environ. Exp. Bot. Environmental and Material Flow Cost Accounting: Principles and Procedures = Eco-effic Ind Sci Environmental and Material Flow Cost Accounting: Principles and Procedures = Eco-effic. Ind. Sci. Environmental and molecular mutagenesis = Environ Mol Mutagen Environmental and Molecular Mutagenesis=Environ Mol Mutagen;; Environmental and Molecular Mutagenesis = Environ Mol Mutagen Environmental and Molecular Mutagenesis = Environ. Mol. Mutagen. Environmental and Process Monitoring Technologies = P Soc Photo-opt Ins Environmental and Process Monitoring Technologies = P. Soc. Photo-opt. Ins. Environmental and Regional Air Pollution = Air Water Soil Sci T Environmental and Regional Air Pollution = Air Water. Soil. Sci. T. Environmental and Resource Economics=Environ. Resource Econ. Environmental and Resource Policy for Consumer Durables = Lect Notes Econ Math Environmental and Resource Policy for Consumer Durables = Lect. Notes. Econ. Math. Environmental and Resource Valuation With Revealed Preferences: A Theoretical Guide to Empirical Models = Econ Non-mark Good Environmental and Resource Valuation With Revealed Preferences: A Theoretical Guide to Empirical Models = Econ. Non-mark. Good. Environmental and Social Effects of Transportation = Transport Res Rec Environmental and Social Effects of Transportation = Transport. Res. Rec. Environmental Archaeology = Environ Archaeol Environmental Archaeology = Environ. Archaeol. Environmental Aspects of Construction With Waste Materials = Stud Environ Sci Environmental Aspects of Construction With Waste Materials = Stud. Environ. Sci. Environmental Aspects of Converting Cw Facilities to Peaceful Purposes = Nato Sci Prt 1 Disar Environmental Aspects of Converting Cw Facilities to Peaceful Purposes = Nato. Sci. Prt. 1. Disar. Environmental Aspects of Electrochemical Technology, Proceedings = Elec Soc S Environmental Aspects of Electrochemical Technology, Proceedings = Elec. Soc. S. Environmental Aspects of Textile Dyeing = Woodhead Publ Ser Te Environmental Aspects of Textile Dyeing = Woodhead. Publ. Ser. Te. Environmental Assessment and Management in The Food Industry: Life Cycle Assessment and Related Approaches = Woodhead Publ Food S Environmental Assessment and Management in The Food Industry: Life Cycle Assessment and Related Approaches = Woodhead. Publ. Food S. Environmental Assessment and Management = Res Ec En Environmental Assessment and Management = Res. Ec. En. Environmental Bioengineering = Handb Environ Eng Environmental Bioengineering = Handb. Environ. Eng. Environmental Bioindicators = Environ. Bioindic. Environmental biology and medicine = Environ Biol Med Environmental Biology and Medicine = Environ. Biol. Med. Environmental Biology of Fishes = Environ Biol Fish Environmental Biology of Fishes = Environ. Biol. Fish. Environmental Biology of Fishes = Environ. Biol. Fishes Environmental Biomonitoring = Acs Sym Ser Environmental Biomonitoring = Acs. Sym. Ser. Environmental biosafety research = Environ Biosafety Res Environmental Biosafety Research = Environ. Biosafety Res. Environmental Biosafety Research = Environ. Biosaf. Res. Environmental Biotechnologies for Bioremediation of Contaminated Lands and Soil By Microbes, Plants and Earthworms = Env Remed Tech Regul Environmental Biotechnologies for Bioremediation of Contaminated Lands and Soil By Microbes, Plants and Earthworms = Env. Remed. Tech. Regul. Environmental Biotechnology and Materials Engineering, Pts 1-3 = Adv Mater Res-switz Environmental Biotechnology and Materials Engineering, Pts 1-3 = Adv. Mater. Res-switz. Environmental Biotechnology for Waste Treatment = Envir Sci R Environmental Biotechnology for Waste Treatment = Envir. Sci. R. Environmental Biotechnology = Handb Environ Eng Environmental Biotechnology = Handb. Environ. Eng. Environmental Biotechnology / = Stud Environ Sci Environmental Biotechnology / = Stud. Environ. Sci. Environmental Carcinogenesis & Ecotoxicology Reviews-part C of Journal of Environmental Science and Health = Environ Carcin Eco R Environmental Carcinogenesis & Ecotoxicology Reviews-part C of Journal of Environmental Science and Health = Environ. Carcin. Eco. R. Environmental Carcinogenesis Reviews-part C of Journal of Environmental Science and Health = Environ Carcin Eco R Environmental Carcinogenesis Reviews-part C of Journal of Environmental Science and Health = Environ. Carcin. Eco. R. Environmental Carcinogenesis Reviews-part C of Journal of Environmental Science and Health = Environ Carcinog Rev Environmental Carcinogenesis Reviews-part C of Journal of Environmental Science and Health = Environ. Carcinog. Rev. Environmental Cardiology: Pollution and Heart Disease = Issues Toxicol Environmental Cardiology: Pollution and Heart Disease = Issues. Toxicol. Environmental Catalysis = Acs Sym Ser Environmental Catalysis = Acs. Sym. Ser. Environmental Catalysis = Efce Publ S Environmental Catalysis = Efce. Publ. S. Environmental Challenges in The Mediterranean 2000-2050 = Nato Sci S Ss Iv Ear Environmental Challenges in The Mediterranean 2000-2050 = Nato. Sci. S. Ss. Iv. Ear. Environmental Challenges in The Pacific Basin = Ann Ny Acad Sci Environmental Challenges in The Pacific Basin = Ann. Ny. Acad. Sci. Environmental Challenges of Fertilizer Production - An Examination of Progress and Pitfalls = Ifdc Sp Pub Environmental Challenges of Fertilizer Production - An Examination of Progress and Pitfalls = Ifdc. Sp. Pub. Environmental Challenges of Nuclear Disarmament = Nato Sci S 1 Disarm Environmental Challenges of Nuclear Disarmament = Nato. Sci. S. 1. Disarm. Environmental Change, Adaptation, and Security = Nato Asi 2 Environmental Change, Adaptation, and Security = Nato. Asi. 2. Environmental Change and Agricultural Sustainability in The Mekong Delta = Adv Glob Change Res Environmental Change and Agricultural Sustainability in The Mekong Delta = Adv. Glob. Change Res. Environmental Change and Food Security in China = Adv Glob Change Res Environmental Change and Food Security in China = Adv. Glob. Change Res. Environmental Change and Foreign Policy = Routl Adv Int Relat Environmental Change and Foreign Policy = Routl. Adv. Int. Relat. Environmental Change and Human Health = Ciba F Symp Environmental Change and Human Health = Ciba. F. Symp. Environmental Change and Human Security: Recognizing and Acting On Hazard Impacts = Nato Sci Peace Secur Environmental Change and Human Security: Recognizing and Acting On Hazard Impacts = Nato. Sci. Peace. Secur. Environmental Change and Malaria Risk: Global and Local Implications = Wag Ur Fron Environmental Change and Malaria Risk: Global and Local Implications = Wag. Ur. Fron. Environmental Change and Medicine = Env Health Phys Chem Environmental Change and Medicine = Env. Health. Phys. Chem. Environmental Change and Security Project report = Environ Change Secur Proj Rep Environmental Change in Drylands: Biogeographical and Geomorphological Perspectives = Brit Geomor Environmental Change in Drylands: Biogeographical and Geomorphological Perspectives = Brit. Geomor. Environmental Change in Iceland : Past and Present = Glac Quat G Environmental Change in Iceland : Past and Present = Glac. Quat. G. Environmental Change in Siberia: Earth Observation, Field Studies and Modelling = Adv Glob Change Res Environmental Change in Siberia: Earth Observation, Field Studies and Modelling = Adv. Glob. Change Res. Environmental Chemistry = Environ Chem Environmental Chemistry = Environ. Chem. Environmental Chemistry Letters = Environ Chem Lett Environmental Chemistry Letters = Environ. Chem. Lett. Environmental Chemistry of Lakes and Reservoirs = Adv Chem Ser Environmental Chemistry of Lakes and Reservoirs = Adv. Chem. Ser. Environmental Chemometrics: Principles and Modern Applications = Anal Chem Ser Environmental Chemometrics: Principles and Modern Applications = Anal. Chem. Ser. Environmental Claims Journal = Environ Claim J Environmental Claims Journal = Environ. Claim. J. Environmental Coastal Regions Iii = Environ St Environmental Coastal Regions Iii = Environ. St. Environmental Communication-a Journal of Nature and Culture = Environ Commun Environmental Communication-a Journal of Nature and Culture = Environ. Commun. Environmental conservation = Environ Conserv Environmental Conservation = Environ Conserv Environmental Conservation = Environ. Conserv. Environmental Contaminants and Terrestrial Vertebrates: Effects On Populations, Communities, and Ecosystems = Setac Sp P Environmental Contaminants and Terrestrial Vertebrates: Effects On Populations, Communities, and Ecosystems = Setac. Sp. P. Environmental Contamination and Remediation Practices At Former and Present Military Bases = Nato Asi 2 Environmental Contamination and Remediation Practices At Former and Present Military Bases = Nato. Asi. 2. Environmental Contamination = Stud Environ Sci Environmental Contamination = Stud. Environ. Sci. Environmental Control and Safety Management = Environ Contr Saf M Environmental Control and Safety Management = Environ. Contr. Saf. M. Environmental Control in Biology = Environ. Control. Biol. Environmental Cooperation in Europe = Austrian Inst Int Af Environmental Cooperation in Europe = Austrian. Inst. Int. Af. Environmental Cost Management = Environ Res Adv Environmental Cost Management = Environ. Res. Adv. Environmental Costs and Benefits of Transgenic Crops = Wag Ur Fron Environmental Costs and Benefits of Transgenic Crops = Wag. Ur. Fron. Environmental Crime = Aic Conf P Environmental Crime = Aic. Conf. P. Environmental Crises = Gkss Sch Environm Environmental Crises = Gkss. Sch. Environm. Environmental Crisis = Colloq Inra Environmental Crisis = Colloq. Inra. Environmental Dose Reconstruction and Risk Implications = P Nat C Rad Environmental Dose Reconstruction and Risk Implications = P. Nat. C. Rad. Environmental Earth Sciences = Environ Earth Sci Environmental Earth Sciences = Environ. Earth Sci. Environmental Ecology and Technology of Concrete = Key Eng Mat Environmental Ecology and Technology of Concrete = Key. Eng. Mat. Environmental Ecology and Technology of Concrete = Key Eng Mater Environmental Ecology and Technology of Concrete = Key. Eng. Mater. Environmental Economics and Investment Assessment Iii = Wit Trans Ecol Envir Environmental Economics and Investment Assessment Iii = Wit. Trans. Ecol. Envir. Environmental Economics and Investment Assessment Ii = Wit Trans Ecol Envir Environmental Economics and Investment Assessment Ii = Wit. Trans. Ecol. Envir. Environmental Economics and Investment Assessment = Wit Trans Ecol Envir Environmental Economics and Investment Assessment = Wit. Trans. Ecol. Envir. Environmental Economics and Policy Studies=Environ. Econ. Pol. Stud. Environmental Economics and The Internatioanal Economy = Econ Envir Environmental Economics and The Internatioanal Economy = Econ. Envir. Environmental Economics = Conf Eea C Environmental Economics = Conf. Eea. C. Environmental Economics, Experimental Methods = Rout Expl Enviro Eco Environmental Economics, Experimental Methods = Rout. Expl. Enviro. Eco. Environmental Economics, Experimental Methods = Routl Explor Environ Environmental Economics, Experimental Methods = Routl. Explor. Environ. Environmental education and information = Environ Educ Inf Environmental Education Research = Environ Educ Res Environmental Education Research = Environ. Educ. Res. Environmental Education-washington = Environ Educ-wash Environmental Education-washington = Environ. Educ-wash. Environmental Effects and Their Control in Plant Tissue Culture = Acta Hortic Environmental Effects and Their Control in Plant Tissue Culture = Acta. Hortic. Environmental Effects On Spacecraft Positioning and Trajectories = Geoph Monog Series Environmental Effects On Spacecraft Positioning and Trajectories = Geoph. Monog. Series. Environmental Encounters = Environ Encount Environmental Encounters = Environ. Encount. Environmental Engineering and Management = Environm Engn Environmental Engineering and Management = Environm. Engn. Environmental Engineering and Management Journal = Environ. Eng. Manage. J. Environmental Engineering and Management Journal = Environ Eng Manag J Environmental Engineering and Management Journal = Environ. Eng. Manag. J. Environmental Engineering and Policy = Environ. Eng. Policy Environmental & Engineering Geoscience = Environ Eng Geosci Environmental & Engineering Geoscience = Environ. Eng. Geosci. Environmental Engineering Science = Environ Eng Sci Environmental Engineering Science = Environ. Eng. Sci. Environmental Engineering (series) = Environm Engn Environmental Engineering (series) = Environm. Engn. Environmental entomology = Environ Entomol Environmental Entomology = Environ Entomol Environmental Entomology = Environ. Entomol. Environmental Epidemiology = Adv Chem Ser Environmental Epidemiology = Adv. Chem. Ser. Environmental Ergonomics = Els Erg B S Environmental Ergonomics = Els. Erg. B. S. Environmental ethics = Environ Ethics Environmental Ethics = Environ Ethics Environmental Ethics = Environ. Ethics Environmental Ethics in Buddhism = Routl Crit Stud Budd Environmental Ethics in Buddhism = Routl. Crit. Stud. Budd. Environmental Exposure and Health = Wit Trans Ecol Envir Environmental Exposure and Health = Wit. Trans. Ecol. Envir. Environmental Fate and Effects of Pesticides = Acs Sym Ser Environmental Fate and Effects of Pesticides = Acs. Sym. Ser. Environmental Fluid Mechanics = Environ. Fluid Mech. Environmental Fluid Mechanics = Environ Fluid Mech Environmental Fluid Mechanics = Environ. Fluid Mech. Environmental Forensics = Environ Forensics Environmental Forensics = Environ. Forensics Environmental Forest Science = For Sci Environmental Forest Science = For. Sci. Environmental geochemistry and health = Environ Geochem Health Environmental Geochemistry and Health = Environ. Geochem. Health Environmental Geochemistry and Health = Environ Geochem Hlth Environmental Geochemistry and Health = Environ. Geochem. Hlth. Environmental Geochemistry and Health, With Special Reference to Developing Countries = Geol Soc Sp Environmental Geochemistry and Health, With Special Reference to Developing Countries = Geol. Soc. Sp. Environmental Geochemistry of Sulfide Oxidation = Acs Sym Ser Environmental Geochemistry of Sulfide Oxidation = Acs. Sym. Ser. Environmental Geology and Water Sciences = Environ Geol Water S Environmental Geology and Water Sciences = Environ. Geol. Water S. Environmental Geology and Water Sciences = Environ. Geol. Water Sci. Environmental Geology = Environ Geol Environmental Geology = Environ. Geol. Environmental Geosciences = Environ. Geosci. Environmental Hazards-human and Policy Dimensions = Environ Hazards-uk Environmental Hazards-human and Policy Dimensions = Environ. Hazards-uk. Environmental Hazards of War = Prio Monog Environmental Hazards of War = Prio. Monog. Environmental health : a global access science source = Environ Health Environmental Health Criteria = Environ Health Crit Environmental Health Criteria = Environ. Health Crit. Environmental Health Criteria = Environ Health Crite Environmental Health Criteria = Environ. Health Crite. Environmental Health = Environ. Health Environmental Health = Environ Health-glob Environmental Health = Environ. Health-glob. Environmental Health = Environ Health-uk Environmental Health = Environ. Health-uk. Environmental Health for All = Nato Asi 2 Environmental Health for All = Nato. Asi. 2. Environmental Health Perspectives = Environ Health Persp Environmental Health Perspectives = Environ. Health Persp. Environmental health perspectives = Environ Health Perspect Environmental Health Perspectives=Environ Health Perspect;; Environmental Health Perspectives = Environ. Health Perspect. Environmental Health Physical Chemical and Biological Factors = Env Health Phys Chem Environmental Health Physical Chemical and Biological Factors = Env. Health Phys. Chem. Environmental Health Risk Iii = Wit Tr Biomed Health Environmental Health Risk Iii = Wit. Tr. Biomed. Health Environmental Health Risk Ii = Sus World Environmental Health Risk Ii = Sus. World. Environmental Health Risk Iv = Wit Tr Biomed Health Environmental Health Risk Iv = Wit. Tr. Biomed. Health Environmental Health Risks: Lead Poisoning and Arsenic Exposure = Env Health Phys Chem Environmental Health Risks: Lead Poisoning and Arsenic Exposure = Env. Health Phys. Chem. Environmental Health Risk V = Wit Tr Biomed Health Environmental Health Risk V = Wit. Tr. Biomed. Health Environmental Health Series. Radiological Health = Environ. Health Ser. [Radiol. Health] Environmental health series. [RH] Radiological health = Environ Health Ser [Radiol Health] Environmental Heavy Metal Pollution and Effects On Child Mental Development: Risk Assessment and Prevention Strategies = Nato Sci Peace Secur Environmental Heavy Metal Pollution and Effects On Child Mental Development: Risk Assessment and Prevention Strategies = Nato. Sci. Peace. Secur. Environmental History = Environ Hist Environmental History = Environ. Hist. Environmental History = Environ Hist-us Environmental History = Environ. Hist-us. Environmental History Newsletter = Environ. Hist. Newsl. Environmental history review : EHR : a publication of the American Society for Environmental History = Environ Hist Rev Environmental Hormones: The Scientific Basis of Endocrine Disruption = Ann Ny Acad Sci Environmental Hormones: The Scientific Basis of Endocrine Disruption = Ann. Ny. Acad. Sci. Environmental Humanities = Environ Humanit Environmental Humanities = Environ. Humanit. Environmental Immunochemical Methods = Acs Sym Ser Environmental Immunochemical Methods = Acs. Sym. Ser. Environmental Impact Assessment = Euro Env Imp Assess Environmental Impact Assessment = Euro. Env. Imp. Assess. Environmental Impact Assessment Review = Environ Impact Asses Environmental Impact Assessment Review = Environ. Impact Asses. Environmental impact assessment review = Environ Impact Assess Rev Environmental Impact Assessment Review = Environ. Impact Assess. Rev. Environmental Impact of Ammonia and Urea Production Units = Ifdc Sp Pub Environmental Impact of Ammonia and Urea Production Units = Ifdc. Sp. Pub. Environmental Impact of Fertilizer On Soil and Water = Acs Sym Ser Environmental Impact of Fertilizer On Soil and Water = Acs. Sym. Ser. Environmental Impact of Radioactive Releases = Int Aeaps 2 Environmental Impact of Radioactive Releases = Int. Aeaps. 2. Environmental Impacts of Microbial Insecticides: Need and Methods for Risk Assessment = Prog Biol Control Environmental Impacts of Microbial Insecticides: Need and Methods for Risk Assessment = Prog. Biol. Control. Environmental Indicators for Building Design: Development and Application On Mexican Dwellings = Sustain Urban Areas Environmental Indicators for Building Design: Development and Application On Mexican Dwellings = Sustain. Urban. Areas. Environmental Informatics = Euro C Comp Environmental Informatics = Euro. C. Comp. Environmental Infrastructure Management = Nato Asi 2 Environmental Infrastructure Management = Nato. Asi. 2. Environmentalism = Asa Monogr Environmentalism = Asa. Monogr. Environmentalism in Landscape Architecture = Dumbarton Oaks Collo Environmentalism in Landscape Architecture = Dumbarton. Oaks. Collo. Environmental Issues Affecting The Forestry and Forest Products Industries in The Eastern United States, Proceedings = Usda Ne Exp Environmental Issues Affecting The Forestry and Forest Products Industries in The Eastern United States, Proceedings = Usda. Ne. Exp. Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Iv = Ceram Trans Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Iv = Ceram. Trans. Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Vii = Ceram Trans Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Vii = Ceram. Trans. Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Viii = Ceram Trans Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries Viii = Ceram. Trans. Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries X = Ceram Trans Environmental Issues and Waste Management Technologies in The Ceramic and Nuclear Industries X = Ceram. Trans. Environmental Issues and Waste Management Technologies in The Ceramic & Nuclear Industries Ix = Ceram Trans Environmental Issues and Waste Management Technologies in The Ceramic & Nuclear Industries Ix = Ceram. Trans. Environmental Issues and Waste Management Technologies in The Materials and Nuclear Industries Xii = Ceram Trans Environmental Issues and Waste Management Technologies in The Materials and Nuclear Industries Xii = Ceram. Trans. Environmental Issues in The Electronics and Semiconductor Industries = Elec Soc S Environmental Issues in The Electronics and Semiconductor Industries = Elec. Soc. S. Environmental Issues in The Electronics/semiconductor Industries and Electrochemical/photochemical Methods for Pollution Abatement = Elec Soc S Environmental Issues in The Electronics/semiconductor Industries and Electrochemical/photochemical Methods for Pollution Abatement = Elec. Soc. S. Environmental Issues With Materials and Processes for The Electronics and Semiconductor Industries V = Elec Soc S Environmental Issues With Materials and Processes for The Electronics and Semiconductor Industries V = Elec. Soc. S. Environmentalist = Environmentalist Environmental Justice and Sustainability in The Former Soviet Union = Urban Ind Environ Environmental Justice and Sustainability in The Former Soviet Union = Urban. Ind. Environ. Environmental Justice in Latin America: Problems, Promise, and Practice = Urban Ind Environ Environmental Justice in Latin America: Problems, Promise, and Practice = Urban. Ind. Environ. Environmental Knowledge Organization and Information Management = Knowl Org Subj Area Environmental Knowledge Organization and Information Management = Knowl. Org. Subj. Area. Environmental Knowledge Organization and Information Management, Supplement Vol = Knowl Org Subj Area Environmental Knowledge Organization and Information Management, Supplement Vol = Knowl. Org. Subj. Area. Environmental Kuznets Curves = Lect Notes Econ Math Environmental Kuznets Curves = Lect. Notes. Econ. Math. Environmental Law in Development: Lessons From The Indonesian Experience = New Horiz Environ La Environmental Law in Development: Lessons From The Indonesian Experience = New. Horiz. Environ. La. Environmental law (Northwestern School of Law) = Environ Law Environmental letters = Environ Lett Environmental Letters = Environ Lett Environmental Letters = Environ. Lett. Environmentally and Socially Sustainable Development Series = En Soc Sust Dev Ser Environmentally and Socially Sustainable Development Series = En. Soc. Sust. Dev. Ser. Environmentally Assisted Cracking: Predictive Methods for Risk Assessment and Evaluation of Materials, Equipment, and Structures = Am Soc Test Mater Environmentally Assisted Cracking: Predictive Methods for Risk Assessment and Evaluation of Materials, Equipment, and Structures = Am. Soc. Test. Mater. Environmentally Benign Photocatalysts: Applications of Titanium Oxide-based Materials = Nanostruct Sci Techn Environmentally Benign Photocatalysts: Applications of Titanium Oxide-based Materials = Nanostruct. Sci. Techn. Environmentally Compatible Food Packaging = Woodhead Food Ser Environmentally Compatible Food Packaging = Woodhead. Food Ser. Environmentally Conscious Manufacturing Iii = P Soc Photo-opt Ins Environmentally Conscious Manufacturing Iii = P. Soc. Photo-opt. Ins. Environmentally Conscious Manufacturing Ii = P Soc Photo-opt Ins Environmentally Conscious Manufacturing Ii = P. Soc. Photo-opt. Ins. Environmentally Conscious Manufacturing Iv = Proc Spie Environmentally Conscious Manufacturing Iv = Proc. Spie. Environmentally Conscious Manufacturing Iv = P Soc Photo-opt Ins Environmentally Conscious Manufacturing Iv = P. Soc. Photo-opt. Ins. Environmentally Conscious Manufacturing = Proc Spie Environmentally Conscious Manufacturing = Proc. Spie. Environmentally Conscious Manufacturing = P Soc Photo-opt Ins Environmentally Conscious Manufacturing = P. Soc. Photo-opt. Ins. Environmentally Conscious Manufacturing Vi = Proc Spie Environmentally Conscious Manufacturing Vi = Proc. Spie. Environmentally Conscious Manufacturing Vi = P Soc Photo-opt Ins Environmentally Conscious Manufacturing Vi = P. Soc. Photo-opt. Ins. Environmentally Friendly Coastal Protection = Nato Sci S Ss Iv Ear Environmentally Friendly Coastal Protection = Nato. Sci. S. Ss. Iv. Ear. Environmentally Harmonious Chemistry for The 21st Century = Chem Eng Method Tech Environmentally Harmonious Chemistry for The 21st Century = Chem. Eng. Method. Tech. Environmentally Sound Agriculture = Asae Publ Environmentally Sound Agriculture = Asae. Publ. Environmentally Sustainable Development Proceedings Series = Environ Sust Dev P Environmentally Sustainable Development Proceedings Series = Environ. Sust. Dev. P. Environmental Management Accounting and Supply Chain Management = Eco-effic Ind Sci Environmental Management Accounting and Supply Chain Management = Eco-effic. Ind. Sci. Environmental Management Accounting for Cleaner Production = Eco-effic Ind Sci Environmental Management Accounting for Cleaner Production = Eco-effic. Ind. Sci. Environmental Management and Urban Vulnerability = World B Dis Environmental Management and Urban Vulnerability = World. B. Dis. Environmental management = Environ Manage Environmental Management = Environ Manage Environmental Management = Environ. Manage. Environmental medicine : annual report of the Research Institute of Environmental Medicine, Nagoya University = Environ Med Environmental microbiology = Environ Microbiol Environmental Microbiology = Environ Microbiol Environmental Microbiology = Environ. Microbiol. Environmental Microbiology = Method Enzymol Environmental Microbiology = Method. Enzymol. Environmental Microbiology Reports = Env Microbiol Rep Environmental Microbiology Reports = Env. Microbiol. Rep. Environmental Mineralogy: Microbial Interactions Anthropogenic Influences, Contaminated Land and Waste Management = Min Soc Ser Environmental Mineralogy: Microbial Interactions Anthropogenic Influences, Contaminated Land and Waste Management = Min. Soc. Ser. Environmental Modeling and Assessment = Environ. Model. Assess. Environmental Modeling & Assessment = Environ Model Assess Environmental Modeling & Assessment = Environ. Model. Assess. Environmental Modelling and Software = Environ. Modell. Softw. Environmental Modelling & Software = Environ Modell Softw Environmental Modelling & Software = Environ. Modell. Softw. Environmental Model of Mars = Cospar Coll Environmental Model of Mars = Cospar. Coll. Environmental Models : Emissions and Consequences = Dev Environ Model Environmental Models : Emissions and Consequences = Dev. Environ. Model. Environmental monitoring and assessment = Environ Monit Assess Environmental Monitoring and Assessment = Environ Monit Assess Environmental Monitoring and Assessment = Environ. Monit. Assess. Environmental Monitoring and Hazardous Waste Site Remediation = P Soc Photo-opt Ins Environmental Monitoring and Hazardous Waste Site Remediation = P. Soc. Photo-opt. Ins. Environmental Monitoring and Remediation Iii = Proc Spie Environmental Monitoring and Remediation Iii = Proc. Spie. Environmental Monitoring and Remediation Iii = P Soc Photo-opt Ins Environmental Monitoring and Remediation Iii = P. Soc. Photo-opt. Ins. Environmental Monitoring and Remediation Technologies Ii = Proc Spie Environmental Monitoring and Remediation Technologies Ii = Proc. Spie. Environmental Monitoring and Remediation Technologies Ii = P Soc Photo-opt Ins Environmental Monitoring and Remediation Technologies Ii = P. Soc. Photo-opt. Ins. Environmental Monitoring and Remediation Technologies = Proc Spie Environmental Monitoring and Remediation Technologies = Proc. Spie. Environmental Monitoring and Remediation Technologies = P Soc Photo-opt Ins Environmental Monitoring and Remediation Technologies = P. Soc. Photo-opt. Ins. Environmental Monitoring : Meeting The Technical Challenge = Iop Short Meet Serie Environmental Monitoring : Meeting The Technical Challenge = Iop. Short. Meet. Serie. Environmental Mutagenesis = Environ Mol Mutagen Environmental Mutagenesis = Environ. Mol. Mutagen. Environmental mutagenesis = Environ Mutagen Environmental Mutagenesis = Environ Mutagen Environmental Mutagenesis = Environ. Mutagen. Environmental Odour Management = Vdi Bericht Environmental Odour Management = Vdi. Bericht. Environmental Performance of Digital Printing: Literature Study = Vtt Res Notes Environmental Performance of Digital Printing: Literature Study = Vtt. Res. Notes. Environmental Philosophy As Social Philosophy = Soc Philos Today Environmental Philosophy As Social Philosophy = Soc. Philos. Today. Environmental Physiology and Biochemistry = Environ. Physiol. Biochem. Environmental Physiology & Biochemistry = Environ Physiol Bioc Environmental Physiology & Biochemistry = Environ. Physiol. Bioc. Environmental physiology & biochemistry = Environ Physiol Biochem Environmental Plant Biology = Env Plant B Environmental Plant Biology = Env. Plant B. Environmental Policy, 2nd Edition = Routl Introd Environ Environmental Policy, 2nd Edition = Routl. Introd. Environ. Environmental Policy and Law = Environ Policy Law Environmental Policy and Law = Environ. Policy Law Environmental Policy and The Economy = Contrib To Econ Anal Environmental Policy and The Economy = Contrib. To. Econ. Anal. Environmental Policy in An International Perspective = Econ Envir Environmental Policy in An International Perspective = Econ. Envir. Environmental Policy in An International Perspective = Econ Environ Environmental Policy in An International Perspective = Econ. Environ. Environmental Policy Instruments for Conserving Global Biodiversity = Kiel Stud Environmental Policy Instruments for Conserving Global Biodiversity = Kiel. Stud. Environmental Politics and Theory = Environ Polit Theor Environmental Politics and Theory = Environ. Polit. Theor. Environmental Politics = Environ Polit Environmental Politics = Environ. Polit. Environmental politics = Env Polit Environmental Politics (series) = Environm Polit Ser Environmental Politics (series) = Environm. Polit. Ser. Environmental Politics Series = Environ Polit Ser Environmental Politics Series = Environ. Polit. Ser. Environmental Pollution (Amsterdam, Netherlands) = Environ. Pollut. (Amsterdam, Neth.) Environmental pollution (Barking, Essex : 1987) = Environ Pollut Environmental Pollution = Environ Pollut Environmental Pollution = Environ. Pollut. Environmental Pollution Series A-ecological and Biological = Environ Pollut A Environmental Pollution Series A-ecological and Biological = Environ. Pollut. A. Environmental Pollution Series B-chemical and Physical = Environ Pollut B Environmental Pollution Series B-chemical and Physical = Environ. Pollut. B. Environmental Pollution (series) = Environm Pollut Ser Environmental Pollution (series) = Environm. Pollut. Ser. Environmental Pollution Series = Environ Pollut Ser Environmental Pollution Series = Environ. Pollut. Ser. Environmental Practice = Environ. Pract. Environmental Problems and Development = Energy Environ Eng S Environmental Problems and Development = Energy. Environ. Eng. S. Environmental Problems in Coastal Regions Vi: Including Oil Spill Studies = Wit Trans Ecol Envir Environmental Problems in Coastal Regions Vi: Including Oil Spill Studies = Wit. Trans. Ecol. Envir. Environmental Problems in Coastal Regions Vii = Wit Trans Built Env Environmental Problems in Coastal Regions Vii = Wit. Trans. Built. Env. Environmental Problems of Central Asia and Their Economic, Social and Security Impacts = Nato Sci Peace Secur Environmental Problems of Central Asia and Their Economic, Social and Security Impacts = Nato. Sci. Peace. Secur. Environmental Progress = Environ Prog Environmental Progress = Environ. Prog. Environmental Progress & Sustainable Energy = Environ Prog Sustain Environmental Progress & Sustainable Energy = Environ. Prog. Sustain. Environmental Progress & Sustainable Energy = Environ. Prog. Sustainable Energy Environmental Protection Against Radioactive Pollution = Nato Sci S Ss Iv Ear Environmental Protection Against Radioactive Pollution = Nato. Sci. S. Ss. Iv. Ear. Environmental Protection and International Law = Int Env Law Environmental Protection and International Law = Int. Env. Law Environmental Protection in The European Union = Environ Prot Eur Uni Environmental Protection in The European Union = Environ. Prot. Eur. Uni. Environmental Psychology and Nonverbal Behavior = Environ Psych Nonver Environmental Psychology and Nonverbal Behavior = Environ. Psych. Nonver. Environmental Psychology New Developments = Psychol Res Prog Environmental Psychology New Developments = Psychol. Res. Prog. Environmental quality and safety = Environ Qual Saf Environmental Quality and Safety = Environ. Qual. Saf. Environmental quality and safety. Supplement = Environ Qual Saf Suppl Environmental Quality and Safety. Supplement = Environ. Qual. Saf. Suppl. Environmental quality; annual report of the Council on Environmental Quality = Environ Qual Annu Rep Counc Environ Qual Environmental Quality Management = Environ. Qual. Manage. Environmental Quarterly = Environ Quart Environmental Quarterly = Environ. Quart. Environmental Radiochemical Analysis Iii = Roy Soc Ch Environmental Radiochemical Analysis Iii = Roy. Soc. Ch. Environmental Radiochemical Analysis Ii = Roy Soc Ch Environmental Radiochemical Analysis Ii = Roy. Soc. Ch. Environmental Radiochemical Analysis = Roy Soc Ch Environmental Radiochemical Analysis = Roy. Soc. Ch. Environmental Reconstruction in Headwater Areas = Nato Asi 2 Environmental Reconstruction in Headwater Areas = Nato. Asi. 2. Environmental Record in Glaciers and Ice Sheets = Phys Ch Ear Environmental Record in Glaciers and Ice Sheets = Phys. Ch. Ear. Environmental Regulation: Evaluation, Compliance and Economic Impact = Env Health Phys Chem Environmental Regulation: Evaluation, Compliance and Economic Impact = Env. Health. Phys. Chem. Environmental Remediation = Acs Sym Ser Environmental Remediation = Acs. Sym. Ser. Environmental Remediation Technologies Regulations and Safety = Env Remed Tech Regul Environmental Remediation Technologies Regulations and Safety = Env. Remed. Tech. Regul. Environmental Research : 1991 Technology Transfer Conference - Proceedings, Vols 1 and 2 = Env Res Tec Environmental Research : 1991 Technology Transfer Conference - Proceedings, Vols 1 and 2 = Env. Res. Tec. Environmental Research Advances = Environ Res Adv Environmental Research Advances = Environ. Res. Adv. Environmental research = Environ Res Environmental Research=Environ Res;; Environmental Research = Environ Res Environmental Research = Environ. Res. Environmental Research Forum = Environm Res Forum Environmental Research Forum = Environm. Res. Forum Environmental Research Letters = Environ Res Lett Environmental Research Letters = Environ. Res. Lett. Environmental Research : Technology Transfer Conference = Env Res Tec Environmental Research : Technology Transfer Conference = Env. Res. Tec. Environmental & Resource Economics = Environ Resour Econ Environmental & Resource Economics = Environ. Resour. Econ. Environmental Review = Environ Rev Environmental Review = Environ. Rev. Environmental Reviews = Environ Rev Environmental Reviews = Environ. Rev. Environmental Risk Assessment of Genetically Modified Organisms Series = Env Risk Assess Gene Environmental Risk Assessment of Genetically Modified Organisms Series = Env. Risk Assess. Gene. Environmental Risk Assessment of Genetically Modified Organisms, Vol 2: Methodologies for Assessing Bt Cotton in Brazil = Env Risk Assess Gene Environmental Risk Assessment of Genetically Modified Organisms, Vol 2: Methodologies for Assessing Bt Cotton in Brazil = Env. Risk Assess. Gene. Environmental Risk Assessment of Genetically Modified Organisms, Vol 3: Methodologies for Transgenic Fish = Env Risk Assess Gene Environmental Risk Assessment of Genetically Modified Organisms, Vol 3: Methodologies for Transgenic Fish = Env. Risk Assess. Gene. Environmental Risk Assessment of Genetically Modified Organisms, Vol 4: Challenges and Opportunities With Bt Cotton in Vietnam = Env Risk Assess Gene Environmental Risk Assessment of Genetically Modified Organisms, Vol 4: Challenges and Opportunities With Bt Cotton in Vietnam = Env. Risk Assess. Gene. Environmental Role of Wetlands in Headwaters = Nato Sci S Ss Iv Ear Environmental Role of Wetlands in Headwaters = Nato. Sci. S. Ss. Iv. Ear. Environmental, Safety, and Health Issues in Ic Production = Mat Res S C Environmental, Safety, and Health Issues in Ic Production = Mat. Res. S. C. Environmental Science and Engineering = Adv Eng Res Environmental Science and Engineering = Adv. Eng. Res. Environmental Science and Engineering = Environ Sci Eng Environmental Science and Engineering = Environ. Sci. Eng. Environmental Science and Pollution Research = Environ Sci Pollut R Environmental Science and Pollution Research = Environ. Sci. Pollut. R. Environmental Science and Pollution Research = Environ. Sci. Pollut. Res. Environmental science and pollution research international = Environ Sci Pollut Res Int Environmental Science and Pollution Research International = Environ. Sci. Pollut. Res. Int. Environmental Science and Sustainability = Energy Environ Eng S Environmental Science and Sustainability = Energy. Environ. Eng. S. Environmental Science and Technology = Environ. Sci. Technol. Environmental Science and Technology Library = Envir Sci Tech Lib Environmental Science and Technology Library = Envir. Sci. Tech. Lib. Environmental Science, Ecosystems and Development = Energy Environ Eng S Environmental Science, Ecosystems and Development = Energy. Environ. Eng. S. Environmental Science Engineering and Technology = Environ Sci Eng Tech Environmental Science Engineering and Technology = Environ. Sci. Eng. Tech. Environmental Science = Environm Sci Environmental Science = Environm. Sci. Environmental Science = Environ Sci-ger Environmental Science = Environ. Sci-ger. Environmental Science & Policy = Environ Sci Policy Environmental Science & Policy = Environ. Sci. Policy Environmental Science Research = Envir Sci R Environmental Science Research = Envir. Sci. R. Environmental sciences : an international journal of environmental physiology and toxicology = Environ Sci Environmental science & technology = Environ Sci Technol Environmental Science & Technology = Environ Sci Technol Environmental Science & Technology = Environ. Sci. Technol. Environmental Security and Environmental Management: The Role of Risk Assessment = Nato Sci Peace Secur Environmental Security and Environmental Management: The Role of Risk Assessment = Nato. Sci. Peace. Secur. Environmental Security and Sustainable Land Use - With Special Reference to Central Asia = Nato Sci Peace Secur Environmental Security and Sustainable Land Use - With Special Reference to Central Asia = Nato. Sci. Peace. Secur. Environmental Security in Harbors and Coastal Areas = Nato Sci Peace Secur Environmental Security in Harbors and Coastal Areas = Nato. Sci. Peace. Secur. Environmental Security in South-eastern Europe: International Agreements and Their Implementation = Nato Sci Peace Secur Environmental Security in South-eastern Europe: International Agreements and Their Implementation = Nato. Sci. Peace. Secur. Environmental Sensing and Applications = P Soc Photo-opt Ins Environmental Sensing and Applications = P. Soc. Photo-opt. Ins. Environmental Sensing and Combustion Diagnostics = P Soc Photo-opt Ins Environmental Sensing and Combustion Diagnostics = P. Soc. Photo-opt. Ins. Environmental Simulation Chambers: Application to Atmospheric Chemical Processes = Nato Sci S Ss Iv Ear Environmental Simulation Chambers: Application to Atmospheric Chemical Processes = Nato. Sci. S. Ss. Iv. Ear. Environmental Software = Environ Softw Environmental Software = Environ. Softw. Environmental Soil Science, Third Edition = Books Soil Plant Env Environmental Soil Science, Third Edition = Books. Soil Plant. Env. Environmental Space Sciences-ussr = Environ Space Sci-u Environmental Space Sciences-ussr = Environ. Space Sci-u. Environmental Statistics: Analysing Data for Environmental Policy = Novart Fdn Symp Environmental Statistics: Analysing Data for Environmental Policy = Novart. Fdn. Symp. Environmental Stratified Flows = Cism Cour L Environmental Stratified Flows = Cism. Cour. L. Environmental Stratified Flows = Cism Courses Lect Environmental Stratified Flows = Cism. Courses. Lect. Environmental Stress and Horticulture Crops = Acta Hortic Environmental Stress and Horticulture Crops = Acta. Hortic. Environmental Studies Series = Environ St Environmental Studies Series = Environ. St. Environmental Sustainability: A Consumption Approach = Routl Explor Econ Hi Environmental Sustainability: A Consumption Approach = Routl. Explor. Econ. Hi. Environmental Taxes: Recent Developments in China and Oecd Countries = China Global Econ Environmental Taxes: Recent Developments in China and Oecd Countries = China Global. Econ. Environmental technology = Environ Technol Environmental Technology = Environ Technol Environmental Technology = Environ. Technol. Environmental Technology Letters = Environ Technol Lett Environmental Technology Letters = Environ. Technol. Lett. Environmental Toxicology and Chemistry = Environ Toxicol Chem Environmental Toxicology and Chemistry = Environ. Toxicol. Chem. Environmental toxicology and chemistry / SETAC = Environ Toxicol Chem Environmental Toxicology and Pharmacology = Environ Toxicol Phar Environmental Toxicology and Pharmacology = Environ. Toxicol. Phar. Environmental toxicology and pharmacology = Environ Toxicol Pharmacol Environmental Toxicology and Pharmacology = Environ. Toxicol. Pharmacol. Environmental Toxicology and Risk Assessment: 2nd Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: 2nd Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: 4th Vol = Am Soc Test Mater Environmental Toxicology and Risk Assessment: 4th Vol = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment = Am Soc Test Mater Environmental Toxicology and Risk Assessment = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Biomarkers and Risk Assessment-fifth Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Biomarkers and Risk Assessment-fifth Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Modeling and Risk Assessment (sixth Volume) = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Modeling and Risk Assessment (sixth Volume) = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Recent Achievements in Environmental Fate and Transport: Ninth Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Recent Achievements in Environmental Fate and Transport: Ninth Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Science, Policy, and Standardization-implications for Environmental Decisions, Tenth Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Science, Policy, and Standardization-implications for Environmental Decisions, Tenth Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Seventh Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Seventh Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Standardization of Biomarkers for Endocrine Disruption and Environmental Assessment: Eighth Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Standardization of Biomarkers for Endocrine Disruption and Environmental Assessment: Eighth Volume = Am. Soc. Test. Mater. Environmental Toxicology and Risk Assessment: Third Volume = Am Soc Test Mater Environmental Toxicology and Risk Assessment: Third Volume = Am. Soc. Test. Mater. Environmental Toxicology and Water Quality = Environ. Toxicol. Water Qual. Environmental Toxicology and Water Quality = Environ Toxic Water Environmental Toxicology and Water Quality = Environ. Toxic. Water Environmental toxicology = Environ Toxicol Environmental Toxicology = Environ Toxicol Environmental Toxicology = Environ. Toxicol. Environmental Toxicology Iii = Wit Trans Ecol Envir Environmental Toxicology Iii = Wit. Trans. Ecol. Envir. Environmental Toxicology Ii = Wit Trans Ecol Envir Environmental Toxicology Ii = Wit. Trans. Ecol. Envir. Environmental Toxicology = Wit Tr Biomed Health Environmental Toxicology = Wit. Tr. Biomed. Health. Environmental Uv Radiation: Impact On Ecosystems and Human Health and Predictive Models = Nato Sci S Ss Iv Ear Environmental Uv Radiation: Impact On Ecosystems and Human Health and Predictive Models = Nato. Sci. S. Ss. Iv. Ear. Environmental Values = Environ Value Environmental Values = Environ. Value. Environmental values = Environ Values Environmental Values=Environ. Values Environmental Values = Environ. Values Environmental Values = Routl Introd Environ Environmental Values = Routl. Introd. Environ. Environmental Value Transfer: Issues and Methods = Econ Non-mark Good Environmental Value Transfer: Issues and Methods = Econ. Non-mark. Good. Environment and Aquaculture in Developing Countries = Iclarm Conf Environment and Aquaculture in Developing Countries = Iclarm. Conf. Environment and behavior = Environ Behav Environment and Behavior = Environ Behav Environment and Behavior = Environ. Behav. Environment and Conservation in Borneo = Born Res Co Pro Ser Environment and Conservation in Borneo = Born. Res. Co. Pro. Ser. Environment and Development Economics = Environ Dev Econ Environment and Development Economics = Environ. Dev. Econ. Environment and Development Economics=Environ. Devel. Econ. Environment and Evolution of Double and Multiple Stars = Rev Mex Ast Astr Environment and Evolution of Double and Multiple Stars = Rev. Mex. Ast. Astr. Environment and Evolution of Galaxies = Astrophys Space Sc L Environment and Evolution of Galaxies = Astrophys. Space. Sc. L. Environment and History = Environ. Hist. Environment and History = Environ Hist-uk Environment and History = Environ. Hist-uk. Environment and Livelihoods in Tropical Coastal Zones: Managing Agriculture-fishery-aquaculture Conflicts = Comp Assess Wat Man Environment and Livelihoods in Tropical Coastal Zones: Managing Agriculture-fishery-aquaculture Conflicts = Comp. Assess. Wat. Man. Environment and Livelihoods in Tropical Coastal Zones: Managing Agriculture-fishery-aquaculture Conflicts = Compr Assess Wat Man Environment and Livelihoods in Tropical Coastal Zones: Managing Agriculture-fishery-aquaculture Conflicts = Compr. Assess. Wat. Man. Environment and Planning A = Environ Plann A Environment and Planning A = Environ. Plann. A Environment and Planning A=Environ. Planning A Environment and Planning B-planning & Design = Environ Plann B Environment and Planning B-planning & Design = Environ. Plann. B. Environment and planning. B, Planning & design = Environ Plann B Plann Des Environment and Planning C-government and Policy = Environ Plann C Environment and Planning C-government and Policy = Environ. Plann. C. Environment and Planning C: Government and Policy=Environ. Planning C: Govt. Pol. Environment and planning. C, Government & policy = Environ Plann C Gov Policy Environment and planning. D, Society & space = Environ Plan D Environment and Planning D-society & Space = Environ Plann D Environment and Planning D-society & Space = Environ. Plann. D. Environment and Planning = Environ Plann Environment and Planning = Environ. Plann. Environment and Plant Metabolism = Env Plant B Environment and Plant Metabolism = Env. Plant B. Environment and Politics, Third Edition = Routl Introd Environ Environment and Politics, Third Edition = Routl. Introd. Environ. Environment and Pollution Measurement Sensors and Systems = P Soc Photo-opt Ins Environment and Pollution Measurement Sensors and Systems = P. Soc. Photo-opt. Ins. Environment and Social Theory, Second Edition = Routl Introd Environ Environment and Social Theory, Second Edition = Routl. Introd. Environ. Environment and Tourism, Second Edition = Routl Introd Environ Environment and Tourism, Second Edition = Routl. Introd. Environ. Environment and urbanization = Environ Urban Environment and Urbanization = Environ Urban Environment and Urbanization = Environ. Urban. Environment & Assessment = Environ Assess Environment & Assessment = Environ. Assess. Environment Carcinogenesis and Ecotoxicology Reviews = Environ. Carcinog. Ecotoxicol. Rev. Environment & Chem = Environ Chem Environment & Chem = Environ. Chem Environment, Development and Change in Rural Asia-pacific: Between Local and Global = Routl Pac Rim Geogr Environment, Development and Change in Rural Asia-pacific: Between Local and Global = Routl. Pac. Rim. Geogr. Environment, Development, and Evolution: Toward A Synthesis = Vienna Ser Theor Bio Environment, Development, and Evolution: Toward A Synthesis = Vienna. Ser. Theor. Bio. Environment Effects On Fracture and Damage = Fracture Mech Symp Environment Effects On Fracture and Damage = Fracture Mech. Symp. Environment = Environment Environment folio = Environ Folio Environment-friendly Cement Composite (efcc) for Soil Reinforcement and Earth Slope Protection = Env Remed Tech Regul Environment-friendly Cement Composite (efcc) for Soil Reinforcement and Earth Slope Protection = Env. Remed. Tech. Regul. Environment international = Environ Int Environment International = Environ Int Environment International = Environ. Int. Environment, Local Society and Sustainable Tourism = U Lap A C R Environment, Local Society and Sustainable Tourism = U. Lap. A. C. R. Environment & Management = Env Manag Environment & Management = Env. Manag. Environment, Medicine and Health Sciences = Rec Adv Biol Biomed Environment, Medicine and Health Sciences = Rec. Adv. Biol. Biomed. Environment & planning A = Environ Plan A Environment & Policy = Environ Policy Environment & Policy = Environ. Policy Environment Protection Engineering = Environ Prot Eng Environment Protection Engineering = Environ. Prot. Eng. Environment, Public Policies and Dynamics of Coastal Activities = Oceanis S D Environment, Public Policies and Dynamics of Coastal Activities = Oceanis. S. D. Environments and Physiology of Fossil Organisms = T Rse Earth Environments and Physiology of Fossil Organisms = T. Rse. Earth. Environments and Tools for Parallel Scientific Computing = Adv Par Com Environments and Tools for Parallel Scientific Computing = Adv. Par. Com. Environments = Environments Environments for Multi-agent Systems Iii = Lect Notes Artif Int Environments for Multi-agent Systems Iii = Lect. Notes. Artif. Int. Environments for Multi-agent Systems Ii = Lect Notes Artif Int Environments for Multi-agent Systems Ii = Lect. Notes. Artif. Int. Environments for Multi-agent Systems = Lect Notes Comput Sc Environments for Multi-agent Systems = Lect. Notes. Comput. Sc. Environmetrics = Environmetrics Environmetrics (London, Ont.) = Environmetrics Environnement africain = Environ Afr Environnement, Politiques Publiques Et Dynamique Des Activites Littorales = Oceanis-ser Doc Environnement, Politiques Publiques Et Dynamique Des Activites Littorales = Oceanis-ser. Doc. Environnement Risques & Sante = Environ Risque Sante Environnement Risques & Sante = Environ. Risque. Sante Environnement Risques & Sante = Envir Risques Sante Environnement Risques & Sante = Envir. Risques Sante Envisaging Heaven in The Middle Ages = Rout St Mediev Rel Envisaging Heaven in The Middle Ages = Rout. St. Mediev. Rel. Envisaging Heaven in The Middle Ages = Rout Stud Mediev Rel Envisaging Heaven in The Middle Ages = Rout. Stud. Mediev. Rel. Envisioning An English Empire: Jamestown and The Making of The North Atlantic World = Early Am Stud Ser Envisioning An English Empire: Jamestown and The Making of The North Atlantic World = Early. Am. Stud. Ser. Envisioning A New Accountability = Adv Public Inter Acc Envisioning A New Accountability = Adv. Public. Inter. Acc. Envisioning Machine Translation in The Information Future, Proceedings = Lect Notes Artif Int Envisioning Machine Translation in The Information Future, Proceedings = Lect. Notes. Artif. Int. Envisioning Magic - A Princeton Seminar and Symposium = St Hist Rel Envisioning Magic - A Princeton Seminar and Symposium = St. Hist. Rel. Envisioning The Artist in The Early Modern Netherlands = Neth Yearb Hist Art Envisioning The Artist in The Early Modern Netherlands = Neth. Yearb. Hist. Art. Enzymatic and Model Carboxylation and Reduction Reactions for Carbon Dioxide Utilization = Nato Adv Sci I C-mat Enzymatic and Model Carboxylation and Reduction Reactions for Carbon Dioxide Utilization = Nato. Adv. Sci. I. C-mat. Enzymatic Browning and Its Prevention = Acs Sym Ser Enzymatic Browning and Its Prevention = Acs. Sym. Ser. Enzymatic Conversion of Biomass for Fuels Production = Acs Sym Ser Enzymatic Conversion of Biomass for Fuels Production = Acs. Sym. Ser. Enzymatic Degradation of Insoluble Carbohydrates = Acs Sym Ser Enzymatic Degradation of Insoluble Carbohydrates = Acs. Sym. Ser. Enzymatic Mechanisms = Biom Hlth R Enzymatic Mechanisms = Biom. Hlth. R. Enzymatic Polymerisation = Adv Polym Sci Enzymatic Polymerisation = Adv. Polym. Sci. Enzyme and Microbial Technology = Enzyme Microb Tech Enzyme and Microbial Technology = Enzyme Microb. Tech. Enzyme and microbial technology = Enzyme Microb Technol Enzyme and Microbial Technology = Enzyme Microb. Technol. Enzyme and Protein = Enzyme Protein Enzyme Catalysis Process = Nato Adv Sci I A-lif Enzyme Catalysis Process = Nato. Adv. Sci. I. A-lif. Enzyme-catalyzed Synthesis of Polymers = Adv Polym Sci Enzyme-catalyzed Synthesis of Polymers = Adv. Polym. Sci. Enzyme Engineering 10 = Ann Ny Acad Sci Enzyme Engineering 10 = Ann. Ny. Acad. Sci. Enzyme Engineering = Enzyme Eng Enzyme Engineering = Enzyme Eng. Enzyme Engineering Xi = Ann Ny Acad Sci Enzyme Engineering Xi = Ann. Ny. Acad. Sci. Enzyme Engineering Xii = Ann Ny Acad Sci Enzyme Engineering Xii = Ann. Ny. Acad. Sci. Enzyme Engineering Xiii = Ann Ny Acad Sci Enzyme Engineering Xiii = Ann. Ny. Acad. Sci. Enzyme Engineering Xiv = Ann Ny Acad Sci Enzyme Engineering Xiv = Ann. Ny. Acad. Sci. Enzyme = Enzyme Enzyme Kinetics and Mechanism, Pt D = Method Enzymol Enzyme Kinetics and Mechanism, Pt D = Method. Enzymol. Enzyme Kinetics and Mechanism, Pt E = Method Enzymol Enzyme Kinetics and Mechanism, Pt E = Method. Enzymol. Enzyme Kinetics and Mechanism, Pt E = Methods Enzymol Enzyme Kinetics and Mechanism, Pt E = Methods. Enzymol. Enzyme Kinetics and Mechanism, Pt F: Detection and Characterization of Enzyme Reaction Intermediates = Method Enzymol Enzyme Kinetics and Mechanism, Pt F: Detection and Characterization of Enzyme Reaction Intermediates = Method. Enzymol. Enzyme & protein = Enzyme Protein Enzyme & Protein = Enzyme Protein Enzymes Dependent On Pyridoxal Phosphate and Other Carbonyl Compounds As Cofactors = Int Union B Enzymes Dependent On Pyridoxal Phosphate and Other Carbonyl Compounds As Cofactors = Int. Union. B. Enzymes for Carbohydrate Engineering = Progr Biotechnol Enzymes for Carbohydrate Engineering = Progr. Biotechnol. Enzymes for Pulp and Paper Processing = Acs Sym Ser Enzymes for Pulp and Paper Processing = Acs. Sym. Ser. Enzymes in Action = Nato Sci Prt 1 Disar Enzymes in Action = Nato. Sci. Prt. 1. Disar. Enzymes in Biomass Conversion = Acs Sym Ser Enzymes in Biomass Conversion = Acs. Sym. Ser. Enzymes in Carbohydrate Synthesis = Acs Sym Ser Enzymes in Carbohydrate Synthesis = Acs. Sym. Ser. Enzymes in Polymer Synthesis = Acs Sym Ser Enzymes in Polymer Synthesis = Acs. Sym. Ser. Enzyme Stabilization and Immobilization: Methods and Protocols = Methods Mol Biol Enzyme Stabilization and Immobilization: Methods and Protocols = Methods Mol. Biol. Enzymologia Biologica Et Clinica = Enzymol Biol Clin Enzymologia Biologica Et Clinica = Enzymol. Biol. Clin. Enzymologia biologica et clinica = Enzymol Biol Clin (Basel) Enzymologia Biologica et Clinica = Enzymol. Biol. Clin. (Basel) Enzymologia = Enzymologia Enzymology and Molecular Biology of Carbonyl Metabolism 12 = Enzymol Mol Biol Car Enzymology and Molecular Biology of Carbonyl Metabolism 12 = Enzymol. Mol. Biol. Car. Enzymology and Molecular Biology of Carbonyl Metabolism 3 = Adv Exp Med Biol Enzymology and Molecular Biology of Carbonyl Metabolism 3 = Adv. Exp. Med. Biol. Enzymology and Molecular Biology of Carbonyl Metabolism 4 = Adv Exp Med Biol Enzymology and Molecular Biology of Carbonyl Metabolism 4 = Adv. Exp. Med. Biol. Enzymology and Molecular Biology of Carbonyl Metabolism 5 = Adv Exp Med Biol Enzymology and Molecular Biology of Carbonyl Metabolism 5 = Adv. Exp. Med. Biol. Enzymology and Molecular Biology of Carbonyl Metabolism 6 = Adv Exp Med Biol Enzymology and Molecular Biology of Carbonyl Metabolism 6 = Adv. Exp. Med. Biol. Enzymology and Molecular Biology of Carbonyl Metabolism 7 = Adv Exp Med Biol Enzymology and Molecular Biology of Carbonyl Metabolism 7 = Adv. Exp. Med. Biol. Enzymology and Molecular Biology of Carbonyl Metabolism - Series = Enzymol Mol Biol Car Enzymology and Molecular Biology of Carbonyl Metabolism - Series = Enzymol. Mol. Biol. Car. Eos. Commentarii Societatis philologae Polonorum = Eos Eos = Eos (Washington DC) Eos-rivista Di Immunologia Ed Immunofarmacologia = Eos-riv Immunol Eos-rivista Di Immunologia Ed Immunofarmacologia = Eos-riv. Immunol. Eos (Rome, Italy) = EOS Eos, Transactions, American Geophysical Union (EOS) = Eos, Trans. Amer. Geophys. Union EOS, Transactions, American Geophysical Union = EOS Trans. Trans. Am. Geophys. Union E.o. Wilson and B.f. Skinner: A Dialogue Between Sociobiology and Radical Behaviorism = Dev Primatol-prog Pr E.o. Wilson and B.f. Skinner: A Dialogue Between Sociobiology and Radical Behaviorism = Dev. Primatol-prog. Pr. EPA journal / United States Environmental Protection Agency, Office of Public Awareness = Epa J Epatologia = Epatologia Epd Congress 1999 = Epd Cong Epd Congress 1999 = Epd Cong. Epd Congress 2000,proceedings = Epd Cong Epd Congress 2000,proceedings = Epd Cong. Epd Congress 2008 = Epd Cong Epd Congress 2008 = Epd Cong. Epd Congress 2009, Proceedings = Epd Cong Epd Congress 2009, Proceedings = Epd Cong. Epd Congress = Epd Cong Epd Congress = Epd Cong. Epdic 1 : European Powder Diffraction, Pts 1 and 2 = Mater Sci Forum Epdic 1 : European Powder Diffraction, Pts 1 and 2 = Mater. Sci. Forum. Epdic 3, Pts 1 and 2 = Mater Sci Forum Epdic 3, Pts 1 and 2 = Mater. Sci. Forum. Epdic 5, Pts 1 and 2 = Mater Sci Forum Epdic 5, Pts 1 and 2 = Mater. Sci. Forum. Epdic 7: European Powder Diffraction, Pts 1 and 2 = Mater Sci Forum Epdic 7: European Powder Diffraction, Pts 1 and 2 = Mater. Sci. Forum. Epeirotike hestia = Epeirotike Hestia Epe Journal = Epe J Epe Journal = Epe J. Epeteris Hetaireias Stereoelladikon Meleton = Epet Etaireias Stereoelladikon Meleton Epeteris tes Hetaireias Eleiakon Meleton = EHEM Epeteris tes Kentrou Ereunes tes Historias tou Hellenikou Dikaiou = EHHD Ephemerides Theologicae Lovanienses = Ephemer Theol Lovan Ephemerides Theologicae Lovanienses = Ephemer. Theol. Lovan. Ephemerides Theologicae Lovanienses = EThL Ephemeris Dacoromana. Annuario della Scuola Romena di Roma = EphemDac Ephemeris Napocensis = EphemNapoc Epheta; revista de enfermeria y accion social = Epheta Epheta: Revista de Enfermeria y Accion Social = Epheta Epia 91 = Lect Notes Artif Int Epia 91 = Lect. Notes. Artif. Int. Epic Succession and Dissension: Ovid, Metamorphoses 13.623-14.582, and The Reinvention of The Aeneid = Unters Antiken Lit G Epic Succession and Dissension: Ovid, Metamorphoses 13.623-14.582, and The Reinvention of The Aeneid = Unters. Antiken. Lit. G. Epidemiologia e prevenzione = Epidemiol Prev Epidemiologia e Prevenzione = Epidemiol. Prev. Epidemiologia E Prevenzione=Epidemiol Prev;; Epidemiologia E Psichiatria Sociale-an International Journal for Epidemiology and Psychiatric Sciences = Epidemiol Psichiat S Epidemiologia E Psichiatria Sociale-an International Journal for Epidemiology and Psychiatric Sciences = Epidemiol. Psichiat. S. Epidemiologia e psichiatria sociale = Epidemiol Psichiatr Soc Epidemiologia e Psichiatria Sociale = Epidemiol. Psichiatr. Soc. Epidemiologia E Psichiatria Sociale=Epidemiol Psichiatr Soc;; Epidemiologia E Psichiatria Sociale = Epidemiol Psichiat S Epidemiologia E Psichiatria Sociale = Epidemiol. Psichiat. S. Epidemiologia & Prevenzione = Epidemiol Prev Epidemiologia & Prevenzione = Epidemiol. Prev. Epidemiological and Molecular Aspects On Cholera = Infect Dis Epidemiological and Molecular Aspects On Cholera = Infect. Dis. Epidemiological bulletin = Epidemiol Bull Epidemiological Bulletin=Epidemiol Bull;; Epidemiological Bulletin = Epidemiol. Bull. Epidemiologic perspectives & innovations : EP+I = Epidemiol Perspect Innov Epidemiologic reviews = Epidemiol Rev Epidemiologic Reviews=Epidemiol Rev;; Epidemiologic Reviews = Epidemiol Rev Epidemiologic Reviews = Epidemiol. Rev. Epidemiologie Et Sante Animale, 2008, No 53 = Rev Epid San Anim Epidemiologie Et Sante Animale, 2008, No 53 = Rev. Epid. San. Anim. Epidemiologie Et Sante Animale, 2008, No 54 = Rev Epid San Anim Epidemiologie Et Sante Animale, 2008, No 54 = Rev. Epid. San. Anim. Epidemiologie Et Sante Animale, No 55 = Rev Epid San Anim Epidemiologie Et Sante Animale, No 55 = Rev. Epid. San. Anim. Epidemiologie Et Sante Animale, No 56 = Rev Epid San Anim Epidemiologie Et Sante Animale, No 56 = Rev. Epid. San. Anim. Epidemiologie, mikrobiologie, imunologie : casopis Spolecnosti pro epidemiologii a mikrobiologii Ceske lekarske spolecnosti J.E. Purkyne = Epidemiol Mikrobiol Imunol Epidemiologie Mikrobiologie Imunologie = Epidemiol Mikrobi Im Epidemiologie Mikrobiologie Imunologie = Epidemiol. Mikrobi. Im. Epidemiologie, Mikrobiologie, Imunologie=Epidemiol Mikrobiol Imunol;; Epidemiologie, Mikrobiologie, Imunologie = Epidemiol. Mikrobiol. Imunol. Epidemiology and Animal Health: Molecular Epidemiology = Rev Epid San Anim Epidemiology and Animal Health: Molecular Epidemiology = Rev. Epid. San. Anim. Epidemiology and Animal Health = Rev Epid San Anim Epidemiology and Animal Health = Rev. Epid. San. Anim. Epidemiology and community health = Epidemiol Community Health Epidemiology and Community Health = Epidemiol. Community Health Epidemiology and Etiology of Insulin-dependent Diabetes in The Young = Pediat Ad E Epidemiology and Etiology of Insulin-dependent Diabetes in The Young = Pediat. Ad. E. Epidemiology and infection = Epidemiol Infect Epidemiology and Infection=Epidemiol Infect;; Epidemiology and Infection = Epidemiol Infect Epidemiology and Infection = Epidemiol. Infect. Epidemiology and Prevention of Cardiovascular Diseases in Elderly People = Who Tech Rep Ser Epidemiology and Prevention of Cardiovascular Diseases in Elderly People = Who. Tech. Rep. Ser. Epidemiology (Cambridge, Mass.) = Epidemiology Epidemiology=Epidemiology;; Epidemiology = Epidemiology Epidemiology of Obesity in Children and Adolescents: Prevalence and Etiology = Springer Ser Epidemi Epidemiology of Obesity in Children and Adolescents: Prevalence and Etiology = Springer. Ser. Epidemi. Epidermal Cells: Methods and Protocols, Second Edition = Methods Mol Biol Epidermal Cells: Methods and Protocols, Second Edition = Methods Mol. Biol. Epididymis: Role and Importance in Male Infertility Treatment = Front Endocrinol Epididymis: Role and Importance in Male Infertility Treatment = Front. Endocrinol. Epidotes = Rev Mineral Geochem Epidotes = Rev. Mineral. Geochem. Epigenesis of Mind : Essays On Biology and Cognition = J Piaget Sy Epigenesis of Mind : Essays On Biology and Cognition = J. Piaget. Sy. Epigenetic Contributions in Autoimmune Disease = Adv Exp Med Biol Epigenetic Contributions in Autoimmune Disease = Adv. Exp. Med. Biol. Epigenetics and Disease: Pharmaceutical Opportunities = Prog Drug Res Epigenetics and Disease: Pharmaceutical Opportunities = Prog. Drug. Res. Epigenetics and Human Health = Epigenetics Hum Hlth Epigenetics and Human Health = Epigenetics Hum. Hlth. Epigenetics and Human Reproduction = Epigenetics Hum Hlth Epigenetics and Human Reproduction = Epigenetics Hum. Hlth. Epigenetics and Neuropsychiatric Diseases: Mechanisms Mediating Nature and Nurture = Ann Ny Acad Sci Epigenetics and Neuropsychiatric Diseases: Mechanisms Mediating Nature and Nurture = Ann. Ny. Acad. Sci. Epigenetics-book = Ciba F Symp Epigenetics-book = Ciba. F. Symp. Epigenetics & Chromatin = Epigenet Chromatin Epigenetics & Chromatin = Epigenet. Chromatin Epigenetics = Ciba F Symp Epigenetics = Ciba. F. Symp. Epigenetics = Epigenetics Epigenetics = Epigenetics-us Epigenetics = Epigenetics-us. Epigenetics in Cancer Prevention: Early Detection and Risk Assessment = Ann Ny Acad Sci Epigenetics in Cancer Prevention: Early Detection and Risk Assessment = Ann. Ny. Acad. Sci. Epigenetics: Mechanism, Functions and Human Effects = Gen-res Issues Epigenetics: Mechanism, Functions and Human Effects = Gen-res. Issues. Epigenetics : official journal of the DNA Methylation Society = Epigenetics Epigenomics = Epigenomics-uk Epigenomics = Epigenomics-uk. Epigraphica Anatolica: Zeitschrift für Epigraphik und historische Geographie Anatoliens = EA Epigraphica Anatolica. Zeitschrift für Epigraphik und historische Geographie Anatoliens = EpigrAnat Epigraphica = Epigraphica Epigraphische Studien = Epigraph Stud Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = Proc Spie Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = Proc. Spie. Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = P Soc Photo-opt Ins Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = P. Soc. Photo-opt. Ins. Epilepsia=Epilepsia;; Epilepsia = Epilepsia Epilepsies = Epilepsies Epilepsies : Revue De La Ligue Contre Lepilepsie, Vol 1, No 2 = Epilepsi Epilepsies : Revue De La Ligue Contre Lepilepsie, Vol 1, No 2 = Epilepsi. Epilepsies : Revue De La Ligue Francaise Contre L Epilepsie = Epilepsi Epilepsies : Revue De La Ligue Francaise Contre L Epilepsie = Epilepsi. Epilepsy and Society : Realities and Prospects = Int Congr Ser Epilepsy and Society : Realities and Prospects = Int. Congr. Ser. Epilepsy and The Functional Anatomy of The Frontal Lobe = Adv Neurol Epilepsy and The Functional Anatomy of The Frontal Lobe = Adv. Neurol. Epilepsy & behavior : E&B = Epilepsy Behav Epilepsy & Behavior = Epilepsy Behav Epilepsy & Behavior = Epilepsy Behav. Epilepsy currents / American Epilepsy Society = Epilepsy Curr Epilepsy Currents = Epilepsy Curr Epilepsy Currents = Epilepsy Curr. Epilepsy, Infantile Spasms, and Developmental Encephalopathy = Int Rev Neurobiol Epilepsy, Infantile Spasms, and Developmental Encephalopathy = Int. Rev. Neurobiol. Epilepsy in Women: The Scientific Basis for Clinical Management = Int Rev Neurobiol Epilepsy in Women: The Scientific Basis for Clinical Management = Int. Rev. Neurobiol. Epilepsy research = Epilepsy Res Epilepsy Research=Epilepsy Res;; Epilepsy Research = Epilepsy Res Epilepsy Research = Epilepsy Res. Epilepsy research. Supplement = Epilepsy Res Suppl Epilepsy Research. Supplement=Epilepsy Res Suppl;; Epilepsy Research. Supplement = Epilepsy Res. Suppl. Epileptic Disorders = Epileptic Disord Epileptic Disorders = Epileptic Disord. Epileptic Disorders = Epileptic. Disord. Epileptic disorders : international epilepsy journal with videotape = Epileptic Disord Epileptogenic and Excitotoxic Mechanisms = Curr Prob E Epileptogenic and Excitotoxic Mechanisms = Curr. Prob. E. EPI newsletter / c Expanded Program on Immunization in the Americas = EPI Newsl Epione = Epione Epioptics-7, Proceedings = Sci Cult Ser Phys Epioptics-7, Proceedings = Sci. Cult. Ser. Phys. Episodes = Episodes Epistemata = Epistemata Würzburg. Wissensch. Schrift. Reihe Philos. Episteme = Episteme Episteme; rivista critica di storia delle scienze mediche e biologiche = Episteme Epistemic Foundations of Fuzziness = Stud Fuzz Soft Comp Epistemic Foundations of Fuzziness = Stud. Fuzz. Soft. Comp. Epistemic Logic and The Theory of Games and Decisions = Theor Dec C Epistemic Logic and The Theory of Games and Decisions = Theor. Dec. C. Epistemologia = Epistemologia Epistemological Aspects of Computer Simulation in The Social Sciences = Lect Notes Artif Int Epistemological Aspects of Computer Simulation in The Social Sciences = Lect. Notes. Artif. Int. Epistemological Foundations of Mathematical Experience = Rec Res Psy Epistemological Foundations of Mathematical Experience = Rec. Res. Psy. Epistemology and Probability: Bohr, Heisenberg, Schrodinger, and The Nature of Quantum-theoretical Thinking = Fund Theor Phys Epistemology and Probability: Bohr, Heisenberg, Schrodinger, and The Nature of Quantum-theoretical Thinking = Fund. Theor. Phys. Epistemology = Roy I Philos Suppl Epistemology = Roy. I. Philos. Suppl. Epistemonike epeterida tes philosophikes Scholes tou Aristoteleiou Panepistemiou Thessalonikes, Tmema philosophias = EEThess(philos) Epistemonike epeteris tes philosophikes Scholes tou Panepistemiou Athenon = EEAth Epitaxial Crystal Growth, Pts 1 and 2 = Cryst Prop Prep Epitaxial Crystal Growth, Pts 1 and 2 = Cryst. Prop. Prep. Epitaxial Growth-principles and Applications = Mater Res Soc Symp P Epitaxial Growth-principles and Applications = Mater. Res. Soc. Symp. P. Epitaxial Growth Processes = P Soc Photo-opt Ins Epitaxial Growth Processes = P. Soc. Photo-opt. Ins. Epitaxial Heterostructures = Mater Res Soc Symp P Epitaxial Heterostructures = Mater. Res. Soc. Symp. P. Epitaxial Oxide Thin Films and Heterostructures = Mater Res Soc Symp P Epitaxial Oxide Thin Films and Heterostructures = Mater. Res. Soc. Symp. P. Epitaxial Oxide Thin Films Iii = Mater Res Soc Symp P Epitaxial Oxide Thin Films Iii = Mater. Res. Soc. Symp. P. Epitaxial Oxide Thin Films Ii = Mater Res Soc Symp P Epitaxial Oxide Thin Films Ii = Mater. Res. Soc. Symp. P. Epitaxy and Applications of Si-based Heterostructures = Mater Res Soc Symp P Epitaxy and Applications of Si-based Heterostructures = Mater. Res. Soc. Symp. P. Epithelial cell biology = Epithelial Cell Biol Epithelial Cell Biology = Epithelial Cell Biol Epithelial Cell Biology = Epithelial Cell Biol. Epithelial Transport and Barrier Function = Ann Ny Acad Sci Epithelial Transport and Barrier Function = Ann. Ny. Acad. Sci. Epitheorese Klinikes Farmakologias kai Farmakokinetikes, International Edition = Epitheor. Klin. Farmakol. Farmakokinet. Int. Ed. Epitheorese Koinonikon Ereunon = Epitheor Koin Ereun Epitope Mapping Protocols, Second Edition = Methods Mol Biol Epitope Mapping Protocols, Second Edition = Methods. Mol. Biol. Epj Web of Conferences = Epj Web Conf Epj Web of Conferences = Epj Web Conf. EPL = EPL Epl = Epl-europhys Lett Epl = Epl-europhys. Lett. E Pluribus Unum = Consti Amer E Pluribus Unum = Consti. Amer. Epm 87 = Phys Res Epm 87 = Phys. Res. Epoch = Epoch Epoch of Galaxy Formation = Nato Adv Sci I C-mat Epoch of Galaxy Formation = Nato. Adv. Sci. I. C-mat. E-polymers = E-polymers Epopteia = Epopteia Epri Journal = Epri J Epri Journal = Epri J. Epsilon = Epsilon Epstein-barr Virus and Associated Diseases = Colloq Inse Epstein-barr Virus and Associated Diseases = Colloq. Inse. Epstein-barr Virus and Human Cancer = Curr Top Microbiol Epstein-barr Virus and Human Cancer = Curr. Top. Microbiol. Epstein-barr Virus and Human Disease - 1990 = Exp Biol M Epstein-barr Virus and Human Disease - 1990 = Exp. Biol. M. Eptc 2006: 8th Electronic Packaging Technology Conference, Vols 1 and 2 = El Packag Tech Conf Eptc 2006: 8th Electronic Packaging Technology Conference, Vols 1 and 2 = El. Packag. Tech. Conf. Eptc: 2008 10th Electronics Packaging Technology Conference, Vols 1-3 = El Packag Tech Conf Eptc: 2008 10th Electronics Packaging Technology Conference, Vols 1-3 = El. Packag. Tech. Conf. Equality and Transparency: A Strategic Perspective On Affirmative Action in American Law = Ceri Ser Int Relat P Equality and Transparency: A Strategic Perspective On Affirmative Action in American Law = Ceri. Ser. Int. Relat. P. Equalization: Its Contribution to Canada's Economic and Fiscal Progress = Policy Forum Series Equalization: Its Contribution to Canada's Economic and Fiscal Progress = Policy. Forum. Series. Equal Treatment in Social Security = Stud Res Ss Equal Treatment in Social Security = Stud. Res. Ss. Equation-of-state and Phase-transition Issues in Models of Ordinary Astrophysical Matter = Aip Conf Proc Equation-of-state and Phase-transition Issues in Models of Ordinary Astrophysical Matter = Aip. Conf. Proc. Equation of State in Astrophysics = Iau Colloq Equation of State in Astrophysics = Iau. Colloq. Equidosimetry - Ecological Standardization and Equidosimetry for Radioecology and Environmental Ecology = Nato Sci Peace Secur Equidosimetry - Ecological Standardization and Equidosimetry for Radioecology and Environmental Ecology = Nato. Sci. Peace. Secur. Equilibria and Dynamics of Gas Adsorption On Heterogeneous Solid Surfaces = Stud Surf Sci Catal Equilibria and Dynamics of Gas Adsorption On Heterogeneous Solid Surfaces = Stud. Surf. Sci. Catal. Equilibrium = Equilibrium Equilibrium in Economics: Scope and Limits = Routl Front Polit Ec Equilibrium in Economics: Scope and Limits = Routl. Front. Polit. Ec. Equilibrium Manifold: Postmodern Developments in The Theory of General Economic Equilibrium = Arne Ryde Mem Lect S Equilibrium Manifold: Postmodern Developments in The Theory of General Economic Equilibrium = Arne. Ryde. Mem. Lect. S. Equilibrium Problems and Variational Models = Noncon Optim Its App Equilibrium Problems and Variational Models = Noncon. Optim. Its. App. Equilibrium Research, Clinical Equilibriometry and Modern Treatment = Int Congr Ser Equilibrium Research, Clinical Equilibriometry and Modern Treatment = Int. Congr. Ser. Equilibrium Structure and Properties of Surfaces and Interfaces = Nato Adv Sci Inst Se Equilibrium Structure and Properties of Surfaces and Interfaces = Nato. Adv. Sci. Inst. Se. Equine and Comparative Exercise Physiology = Equine Comp. Exercise Physiol. Equine Athlete = Equine Athlete Equine Practice = Equine Pract Equine Practice = Equine Pract. Equine Veterinary Education = Equine Vet Educ Equine Veterinary Education = Equine Vet. Educ. Equine veterinary journal = Equine Vet J Equine Veterinary Journal=Equine Vet J;; Equine Veterinary Journal = Equine Vet J Equine Veterinary Journal = Equine Vet. J. Equine veterinary journal. Supplement = Equine Vet J Suppl Equine Veterinary Journal. Supplement = Equine Vet. J. Suppl. Equinoxe (Cayenne, French Guiana) = Equinoxe Equity and Efficiency Considerations of Public Higher Education = Lect Notes Econ Math Equity and Efficiency Considerations of Public Higher Education = Lect. Notes. Econ. Math. Equity and Excellence in Education: Towards Maximal Learning Opportunites for All Students = Routl Res Educ Equity and Excellence in Education: Towards Maximal Learning Opportunites for All Students = Routl. Res. Educ. Equity and The Environment = Res Soc Probl Public Equity and The Environment = Res. Soc. Probl. Public. Equity, Efficiency and Evolutionary Stability in Bargaining Games With Joint Production = Lect Notes Econ Math Equity, Efficiency and Evolutionary Stability in Bargaining Games With Joint Production = Lect. Notes. Econ. Math. Equity Ownership and Performance: An Empirical Study of German Traded Companies = Contrib Econ Equity Ownership and Performance: An Empirical Study of German Traded Companies = Contrib. Econ. Equity = Res Econ Inequal Equity = Res. Econ. Inequal. Eranos: acta philologica Suecana = Eranos Eranos. Acta philologica Suecana = Eranos Eranos-Jahrbuch = EranosJb Eranos-Jahrbuch = Eranos-Jb Era Report = Era Rep Era Report = Era Rep. Erasmus = Erasmus Erasmus Institute Books = Eras Inst Bk Erasmus Institute Books = Eras. Inst. Bk. Era socialista = Era Social Erbrecht = Degruyter Lehrb Erbrecht = Degruyter. Lehrb. Erca 9: From The Global Mercury Cycle to The Discoveries of Kuiper Belt Objects = Epj Web Conf Erca 9: From The Global Mercury Cycle to The Discoveries of Kuiper Belt Objects = Epj. Web. Conf. Erca: From The Human Dimensions of Global Environmental Change to The Observation of The Earth From Space, Vol 8 = Epj Web Conf Erca: From The Human Dimensions of Global Environmental Change to The Observation of The Earth From Space, Vol 8 = Epj. Web. Conf. ERCOFTAC Series = ERCOFTAC Ser. Ercoftac Series (european Research Community On Flow, Turbulence and Combustion) = Ercoftac Ser Ercoftac Series (european Research Community On Flow, Turbulence and Combustion) = Ercoftac Ser. Erde = Erde Erdkunde = Erdkunde Erdkundliches Wissen = Erdkd Wissen Erdoel, Erdgas, Kohle = Erdoel, Erdgas, Kohle Erdoel & Kohle Erdgas, Petrochemie = Erdoel, Kohle, Erdgas, Petrochem. Erdol & Kohle Erdgas Petrochemie = Erdol Kohle Erdgas P Erdol & Kohle Erdgas Petrochemie = Erdol Kohle Erdgas P. Erdol Und Kohle Erdgas Petrochemie = Erdol Kohle Erdgas Erdol Und Kohle Erdgas Petrochemie Vereinigt Mit Brennstoff-chemie = Erd Koh Erdg Petr V Erdol Und Kohle Erdgas Petrochemie Vereinigt Mit Brennstoff-chemie = Erd. Koh. Erdg. Petr. V. E-research: Transformation in Scholarly Practice = Routl Adv Res Method E-research: Transformation in Scholarly Practice = Routl. Adv. Res. Method. Eretria. Fouilles et recherches = Eretria Eretz-Israel. Archaeological, Historical and Geographical Studies = Eretz-Israel Eretz Israel, Israel and The Jewish Dispora Mutual Relations = St Jew Civ Eretz Israel, Israel and The Jewish Dispora Mutual Relations = St. Jew. Civ. Erevanskiy Gosudarstvennyy Universitet = Erevan. Gos. Univ. Uchen. Zap. Estestv. Nauki Erfahrungsheilkunde = Erfahrungsheilkunde Erfolgreiche Verhandlungsfuhrung in Einkauf Und Logistik: Praxiserprobte Erfolgsstrategien Und Wege Zur Kostensenkung, 2 Auflage = Vdi-buch Erfolgreiche Verhandlungsfuhrung in Einkauf Und Logistik: Praxiserprobte Erfolgsstrategien Und Wege Zur Kostensenkung, 2 Auflage = Vdi-buch. Erfolgreiche Verhandlungsfuhrung in Einkauf Und Logistik: Praxiserprobte Erfolgsstrategien Und Wege Zur Kostensenkung, 3 Auflage = Vdi-buch Erfolgreiche Verhandlungsfuhrung in Einkauf Und Logistik: Praxiserprobte Erfolgsstrategien Und Wege Zur Kostensenkung, 3 Auflage = Vdi-buch. Ergebnisse der allgemeinen Pathologie und pathologischen Anatomie = Ergeb Allg Pathol Pathol Anat Ergebnisse der Allgemeinen Pathologie und Pathologischen Anatomie = Ergeb. Allg. Pathol. Pathol. Anat. Ergebnisse der Anatomie und Entwicklungsgeschichte = Ergeb Anat Entwicklungsgesch Ergebnisse der Anatomie und Entwicklungsgeschichte = Ergeb. Anat. Entwicklungsgesch. Ergebnisse der Biologie = Ergeb Biol Ergebnisse der Chirurgie und Orthopadie = Ergeb Chir Orthop Ergebnisse der Chirurgie und Orthopadie = Ergeb. Chir. Orthop. Ergebnisse der Enzymforschung = Ergeb Enzymforsch Ergebnisse Der Exakten Naturwissenschaften = Erg Exakt Naturwiss Ergebnisse Der Exakten Naturwissenschaften = Erg. Exakt. Naturwiss. Ergebnisse Der Experimentellen Medizin = Erg Exp Med Ergebnisse Der Experimentellen Medizin = Erg. Exp. Med. Ergebnisse der gesamten Tuberkuloseforschung = Ergeb Gesamten Tuberkuloseforsch Ergebnisse der Hygiene, Bakteriologie, Immunitatsforschung und experimentellen Therapie = Ergeb Hyg Bakteriol Immunitatsforsch Exp Ther Ergebnisse Der Hygiene Bakteriologie Immunitatsforschung Und Experimentellen Therapie = Erg Hyg Bakt Immun Ergebnisse Der Hygiene Bakteriologie Immunitatsforschung Und Experimentellen Therapie = Erg. Hyg. Bakt. Immun. Ergebnisse der inneren Medizin und Kinderheilkunde = Ergeb Inn Med Kinderheilkd Ergebnisse der Inneren Medizin und Kinderheilkunde = Ergeb. Inn. Med. Kinderheilkd. Ergebnisse Der Limnologie = Ergeb Limnol Ergebnisse Der Limnologie = Ergeb. Limnol. Ergebnisse Der Mathematik Und Iher Grenzgebiete 3 Folge = Ergeb Math Grenzgeb Ergebnisse Der Mathematik Und Iher Grenzgebiete 3 Folge = Ergeb. Math. Grenzgeb. Ergebnisse der Mathematik und ihrer Grenzgebiete = Ergeb. Math. Grenzgeb. (3) Ergebnisse der Mikrobiologie, Immunitatsforschung und experimentellen Therapie = Ergeb Mikrobiol Immunitatsforsch Exp Ther Ergebnisse der Mikrobiologie, Immunitatsforschung und Experimentellen Therapie = Ergeb. Mikrobiol. Immunitatsforsch. Exp. Ther. Ergebnisse Der Mikrobiologie Immunitatsforschung Und Experimentellen Therapie = Erg Mikrobiol Imm E Ergebnisse Der Mikrobiologie Immunitatsforschung Und Experimentellen Therapie = Erg. Mikrobiol. Imm. E. Ergebnisse der Physiologie, biologischen Chemie und experimentellen Pharmakologie = Ergeb Physiol Ergebnisse der Physiologie, Biologischen Chemie und Experimentellen Pharmakologie = Ergeb. Physiol. Ergebnisse Der Physiologie Biologischen Chemie Und Experimentellen Pharmakologie = Erg Physiol Biol Ch Ergebnisse Der Physiologie Biologischen Chemie Und Experimentellen Pharmakologie = Erg. Physiol. Biol. Ch. Ergebnisse der wissenschaftlichen Untersuchungen im schweizerischen Nationalpark = Ergeb. wiss. Unters. schweiz. Natl.park Ergodic Theory and Dynamical Systems = Ergodic Theory Dynam. Systems Ergodic Theory and Dynamical Systems = Ergod Theor Dyn Syst Ergodic Theory and Dynamical Systems = Ergod. Theor. Dyn. Syst. Ergodic Theory and Its Connection With Harmonic Analysis = Lond Math S Ergodic Theory and Its Connection With Harmonic Analysis = Lond. Math. S. Ergodic Theory and Related Fields = Contemp Math Ergodic Theory and Related Fields = Contemp. Math. Ergodic Theory and Related Topics Iii = Lect Notes Math Ergodic Theory and Related Topics Iii = Lect. Notes. Math. Ergodic Theory of Lattice Subgroups = Ann Math Stud Ergodic Theory of Lattice Subgroups = Ann. Math. Stud. Ergodic Theory With A View Towards Number Theory = Grad Texts Math Ergodic Theory With A View Towards Number Theory = Grad. Texts. Math. Ergonomics and Health Aspects of Work With Computers = Lect Notes Comput Sc Ergonomics and Health Aspects of Work With Computers = Lect. Notes. Comput. Sc. Ergonomics and Health Aspects of Work With Computers, Proceedings = Lect Notes Comput Sc Ergonomics and Health Aspects of Work With Computers, Proceedings = Lect. Notes. Comput. Sc. Ergonomics and Psychology: Developments in Theory and Practice = Ergon Des Manag Theo Ergonomics and Psychology: Developments in Theory and Practice = Ergon. Des. Manag. Theo. Ergonomics Design and Management Theory and Applications = Ergon Des Manag Theo Ergonomics Design and Management Theory and Applications = Ergon. Des. Manag. Theo. Ergonomics=Ergonomics;; Ergonomics = Ergonomics Ergonomics Human Factors and Safety = Ergon Hum Fact Safe Ergonomics Human Factors and Safety = Ergon. Hum. Fact. Safe. Ergonomics in design : the magazine of human factors applications = Ergon Des Erich Huckel (1896-1980): From Physics to Quantum Chemistry = Bost Stud Philos Sci Erich Huckel (1896-1980): From Physics to Quantum Chemistry = Bost. Stud. Philos. Sci. Ericksonian Monographs = Ericksonian Ericsson Review = Ericsson Rev Ericsson Review = Ericsson Rev. Ericsson Technics = Ericsson Tech Ericsson Technics = Ericsson Tech. Erinnerte Reformation: Studien Zur Luther-rezeption Von Der Aufklarung Bis Zum 20 Jahrhundert = Theol Bibl Topelmann Erinnerte Reformation: Studien Zur Luther-rezeption Von Der Aufklarung Bis Zum 20 Jahrhundert = Theol. Bibl. Topelmann. Eriugena: East and West = N D Conf M Eriugena: East and West = N. D. Conf. M. Erkenntnis = Erkenntnis Erkenntnis = Erkenntnis Erkenntnis Und Reduktion = Phaenomenologica Erkenntnis Und Reduktion = Phaenomenologica. Erkrankungen Der Zootiere = Erkrankg Zootiere Erkrankungen Der Zootiere = Erkrankg. Zootiere Erlangen Earth Conference Series = Erlangen Earth Conf Erlangen Earth Conference Series = Erlangen Earth Conf. Erlangen Earth Conference Series = Erlangen Earth C Ser Erlangen Earth Conference Series = Erlangen Earth C. Ser. Ernahrungsforschung. Berichte und Mitteilungen = Ernahrungsforsch Ber Mitt Ernahrungs-umschau = Ernahrungs-umschau Ernahrungs Umschau = Ernahrungs-umschau Ernahrungs Umschau = Ernahrungs-umschau. Ernahrungs Umschau = Ernahrungs Umschau Ernahrungswirtschaft = Ernahrungswirtschaft Ernährung - Wissenschaft und Praxis = Ernahrung Wiss. Prax. Ernest Gowers: Plain Words and Forgotten Deeds = Transform Gov Ernest Gowers: Plain Words and Forgotten Deeds = Transform. Gov. Ernest Hemingway: A Literary Life = Lit Lives Ernest Hemingway: A Literary Life = Lit. Lives. Ernst Cassirer = Passages Ernst Cassirer = Passages. Ernst Schering Foundation Symposium Proceedings = Ernst Schering Found Ernst Schering Foundation Symposium Proceedings = Ernst Schering Found. Ernst Schering Foundation symposium proceedings = Ernst Schering Found Symp Proc Ernst Schering Research Foundation workshop = Ernst Schering Res Found Workshop Ernst Schering Research Foundation Workshop = E Schering Res Fdn W Ernst Schering Research Foundation Workshop = E. Schering Res. Fdn. W. Ernst Strungmann Forum = Ernst Strung For Ernst Strungmann Forum = Ernst Strung. For. Erosion and Sediment Transport Measurement in Rivers: Technological and Methodological Advances = Iahs-aish P Erosion and Sediment Transport Measurement in Rivers: Technological and Methodological Advances = Iahs-aish. P. Erosion and Sediment Transport Monitoring Programmes in River Basins = Iahs-aish P Erosion and Sediment Transport Monitoring Programmes in River Basins = Iahs-aish. P. Erosion and Sediment Yield: Global and Regional Perspectives = Iahs-aish P Erosion and Sediment Yield: Global and Regional Perspectives = Iahs-aish. P. Erosion Prediction in Ungauged Basins: Integrating Methods and Techniques = Iahs-aish P Erosion Prediction in Ungauged Basins: Integrating Methods and Techniques = Iahs-aish. P. Erosion, Transport and Deposition Processes - Theories and Models = Catena Supp Erosion, Transport and Deposition Processes - Theories and Models = Catena. Supp. Erotapokriseis: Early Christian Question-and-answer Literature in Context = Contr Bib Exeg Theol Erotapokriseis: Early Christian Question-and-answer Literature in Context = Contr. Bib. Exeg. Theol. Erp Systems and Organisational Change: A Socio-technical Insight = Springer Ser Adv Man Erp Systems and Organisational Change: A Socio-technical Insight = Springer. Ser. Adv. Man. Error Analysis With Applications in Engineering = Solid Mech Appl Error Analysis With Applications in Engineering = Solid. Mech. Appl. Error Control and Adaptivity in Scientific Computing = Nato Adv Sci I C-mat Error Control and Adaptivity in Scientific Computing = Nato. Adv. Sci. I. C-mat. Error-correcting Codes, Finite Geometries and Cryptography = Contemp Math Error-correcting Codes, Finite Geometries and Cryptography = Contemp. Math. Errors and Intelligence in Computer-assisted Language Learning = Rout Stud Comp Assis Errors and Intelligence in Computer-assisted Language Learning = Rout. Stud. Comp. Assis. Errors in Organizations = Siop Organ Front Ser Errors in Organizations = Siop. Organ. Front. Ser. Ersatzteilmanagement: Effiziente Ersatzteillogistik Fur Industrieunternehmen = Vdi-buch Ersatzteilmanagement: Effiziente Ersatzteillogistik Fur Industrieunternehmen = Vdi-buch. ERS spectrum = ERS Spectr Ertel's Collected Papers = Ertel's Collect. Pap. Erudition and Eloquence = Suomal Tied Toim Sar Erudition and Eloquence = Suomal. Tied. Toim. Sar. Erwerbs-obstbau = Erwerbs-obstbau Erythropoietin : From Molecular Structure to Clinical Application = Contrib Nephrol Erythropoietin : From Molecular Structure to Clinical Application = Contrib. Nephrol. Erythropoietin in Renal and Non-renal Anemias = Contrib Nephrol Erythropoietin in Renal and Non-renal Anemias = Contrib. Nephrol. Erythropoietin in The 90s = Contrib Nephrol Erythropoietin in The 90s = Contrib. Nephrol. Erziehung und Unterricht; osterreichische padagogische Zeitschrift = Erzieh Unterr ESA bulletin. Bulletin ASE. European Space Agency = ESA Bull ESA Bulletin = ESA Bull. Esa Bulletin-european Space Agency = Esa Bull-eur Space Esa Bulletin-european Space Agency = Esa Bull-eur. Space Esact Proceedings (european Society for Animal Cell Technology) = Esact Proceed Esact Proceedings (european Society for Animal Cell Technology) = Esact Proceed. Esaim-control Optimisation and Calculus of Variations = Esaim Contr Op Ca Va Esaim-control Optimisation and Calculus of Variations = Esaim. Contr. Op. Ca. Va. Esaim-control Optimisation and Calculus of Variations = Esaim Contr Optim Ca Esaim-control Optimisation and Calculus of Variations = Esaim. Contr. Optim. Ca. ESAIM = ESAIM Control Optim. Calc. Var. Esaim-mathematical Modelling and Numerical Analysis-modelisation Mathematique Et Analyse Numerique = Esaim-math Model Num Esaim-mathematical Modelling and Numerical Analysis-modelisation Mathematique Et Analyse Numerique = Esaim-math. Model. Num. Esaim-probability and Statistics = Esaim-probab Stat Esaim-probability and Statistics = Esaim-probab. Stat. ESAIM Proceedings = ESAIM Proc. ESA journal = ESA J Esa Journal-european Space Agency = Esa J-eur Space Agen Esa Journal-european Space Agency = Esa J-eur. Space Agen. ESA Scientific and Technical Review = ESA Sci. Tech. Rev. Esa Special Publications = Esa Spec Publ Esa Special Publications = Esa Spec. Publ. Esa Special Publications = Esa Sp Publ Esa Special Publications = Esa Sp. Publ. Esa Wpp (workshop Preliminary Proceedings) Series = Esa Wpp Ser Esa Wpp (workshop Preliminary Proceedings) Series = Esa Wpp Ser. Escap Studies in Trade and Investment = Escap Stud Trade Inv Escap Studies in Trade and Investment = Escap Stud. Trade Inv. Esccon 2000: European Space Components Conference, Proceedings = Esa Spec Publ Esccon 2000: European Space Components Conference, Proceedings = Esa. Spec. Publ. Esccon 2000: European Space Components Conference, Proceedings = Esa Sp Publ Esccon 2000: European Space Components Conference, Proceedings = Esa. Sp. Publ. Escena Del Crimen: Estudios Sobre Narrativa Policiaca Mexicana = Let Siglo Xx Escena Del Crimen: Estudios Sobre Narrativa Policiaca Mexicana = Let. Siglo. Xx. Esec 91 : 3rd European Software Engineering Conference = Lect Notes Comput Sc Esec 91 : 3rd European Software Engineering Conference = Lect. Notes. Comput. Sc. Ese-estudios Sobre Educacion = Ese-estud Sobre Educ Ese-estudios Sobre Educacion = Ese-estud. Sobre Educ. Esem: 2009 3rd International Symposium On Empirical Software Engineering and Measurement = Int Symp Emp Softwar Esem: 2009 3rd International Symposium On Empirical Software Engineering and Measurement = Int. Symp. Emp. Softwar. Esencia Odontologica = Esencia Odontol Esencia Odontologica = Esencia Odontol. Esi International Project Management Series = Esi Int Proj Manag S Esi International Project Management Series = Esi Int. Proj. Manag. S. Esi Lectures in Mathematics and Physics = Esi Lect Math Phys Esi Lectures in Mathematics and Physics = Esi Lect. Math. Phys. Esine Ja Aika: Materiaalisen Kulttuurin Historiaa = Hist Arkisto Esine Ja Aika: Materiaalisen Kulttuurin Historiaa = Hist. Arkisto. Esis (european Structural Integrity Society) Publication = Esis Publ Esis (european Structural Integrity Society) Publication = Esis Publ. ESIS Publication = ESIS Publ. Esl and Applied Linguistics Professional Series = Esl Appl Ling Prof Esl and Applied Linguistics Professional Series = Esl Appl. Ling. Prof. Esl Models and Their Application: Electronic System Level Design and Verification in Practice = Embed Syst Esl Models and Their Application: Electronic System Level Design and Verification in Practice = Embed. Syst. Eso Astrophysics Symposia = Eso Astrophy Symp Eso Astrophysics Symposia = Eso Astrophy. Symp. E S O M A R Congress Series = Proc Esomar Congr E S O M A R Congress Series = Proc. Esomar. Congr. Esomar Publication Series = Esomar Publ Esomar Publication Series = Esomar Publ. Esop 90 = Lect Notes Comput Sc Esop 90 = Lect. Notes. Comput. Sc. Esop 92 = Lect Notes Comput Sc Esop 92 = Lect. Notes. Comput. Sc. Esope : bi-mensuel social, politique, economique / publie avec la collaboration de la S.E.D.D.E.S = Esope Esophageal Mucosa = Int Congr Ser Esophageal Mucosa = Int. Congr. Ser. Esophagus = Esophagus-tokyo Esophagus = Esophagus-tokyo. Espace, populations, societes = Espace Popul Soc Espaces et societes (Paris, France) = Espaces Soc Espacio, tiempo y forma: revista de la Facultad de Geografía e Historia, Ser. 1 = ETF(arqueol) Espacio, tiempo y forma: revista de la Facultad de Geografia e Historia, Ser. 2 = ETF(hist) Espacio, tiempo y forma. Revista de la Facultad de geografia e historia. Serie 2, Historia antigua = EspacioHist Espagne Au Temps Des Validos 1598-1645 = Collect Amphi 7 Espagne Au Temps Des Validos 1598-1645 = Collect. Amphi. 7. Esperienze e ricerche = Esper. ric. Espiral (Guadalajara, Mexico) = Espiral Esprit Createur = Esprit Createur Esprit = Esprit Esprit (Paris, France : 1932) = Esprit Esq-a Journal of The American Renaissance = Esq-j Am Renaissance Esq-a Journal of The American Renaissance = Esq-j. Am. Renaissance Esquire (New York, N.Y.) = Esquire ESRC Data Archive bulletin = ESRC Data Arch Bull Esri Studies Series On Ageing = Esri Stud Ser Ageing Esri Studies Series On Ageing = Esri Stud. Ser. Ageing Esri Studies Series On The Environment = Esri Stud Environ Esri Studies Series On The Environment = Esri Stud. Environ. Esr Spectroscopy in Membrane Biophysics = Bio Magn Re Esr Spectroscopy in Membrane Biophysics = Bio. Magn. Re. Essays and Studies Center for Reformation and Renaissance Studies = Essays Stud Cent Ref Essays and Studies Center for Reformation and Renaissance Studies = Essays Stud. Cent. Ref. Essays and studies (London, England : 1950) = Essays Stud (Lond) Essays and Surveys in Metaheuristics = Operat Res Comp Sci Essays and Surveys in Metaheuristics = Operat. Res. Comp. Sci. Essays and Surveys in Metaheuristics = Oper Res Comput Sci Essays and Surveys in Metaheuristics = Oper. Res. Comput. Sci. Essays in arts and sciences = Essays Arts Sci Essays in Biochemistry: Chronobiology = Essays Biochem Essays in Biochemistry: Chronobiology = Essays Biochem. Essays in Biochemistry: Epigenetics, Disease and Behaviour = Essays Biochem Essays in Biochemistry: Epigenetics, Disease and Behaviour = Essays Biochem. Essays in biochemistry = Essays Biochem Essays in Biochemistry = Essays Biochem Essays in Biochemistry = Essays Biochem. Essays In Biochemistry=Essays Biochem;; Essays in Biochemistry: Mitochondrial Function = Essays Biochem Essays in Biochemistry: Mitochondrial Function = Essays Biochem. Essays in Biochemistry: Nuclear Receptor Superfamily = Essays Biochem Essays in Biochemistry: Nuclear Receptor Superfamily = Essays Biochem. Essays in Biochemistry: Systems Biology, Vol 45 = Essays Biochem Essays in Biochemistry: Systems Biology, Vol 45 = Essays Biochem. Essays in Biochemistry, Vol 27 = Essays Biochem Essays in Biochemistry, Vol 27 = Essays Biochem. Essays in Biochemistry, Vol 28 = Essays Biochem Essays in Biochemistry, Vol 28 = Essays Biochem. Essays in Biochemistry, Vol 29, 1995 = Essays Biochem Essays in Biochemistry, Vol 29, 1995 = Essays Biochem. Essays in Biochemistry, Vol 30, 1995 = Essays Biochem Essays in Biochemistry, Vol 30, 1995 = Essays Biochem. Essays in Biochemistry, Vol 32, 1997 = Essays Biochem Essays in Biochemistry, Vol 32, 1997 = Essays Biochem. Essays in Biochemistry, Vol 33, 1998 = Essays Biochem Essays in Biochemistry, Vol 33, 1998 = Essays Biochem. Essays in Biochemistry, Vol 33 = Essays Biochem Essays in Biochemistry, Vol 33 = Essays Biochem. Essays in Biochemistry, Vol 34, 1999 = Essays Biochem Essays in Biochemistry, Vol 34, 1999 = Essays Biochem. Essays in Biochemistry, Vol 41: The Ubiquitin-proteasome System = Essays Biochem Essays in Biochemistry, Vol 41: The Ubiquitin-proteasome System = Essays Biochem. Essays in Biochemistry, Vol 42 = Essays Biochem Essays in Biochemistry, Vol 42 = Essays Biochem. Essays in Biochemistry, Vol 46 = Essays Biochem Essays in Biochemistry, Vol 46 = Essays Biochem. Essays in Criticism = Essays Criticism Essays in Cuban Intellectual History: New Concepts in Latino American Cultures = New Concepts Lat Am Essays in Cuban Intellectual History: New Concepts in Latino American Cultures = New Concepts Lat. Am. Essays in Dynamic General Equilibrium Theory: Festschrift for David Cass = Stud Econ Theory Essays in Dynamic General Equilibrium Theory: Festschrift for David Cass = Stud. Econ. Theory. Essays in French Literature = Essays Fr Literature Essays in French Literature = Essays Fr. Literature Essays in fundamental immunology = Essays Fundam Immunol Essays in Fundamental Immunology = Essays Fundam. Immunol. Essays in Honor of James R. Webb = Res Iss Real Estate Essays in Honor of James R. Webb = Res. Iss. Real. Estate. Essays in Honor of Josep M. Sola-sole = Catalan Stud Essays in Honor of Josep M. Sola-sole = Catalan. Stud. Essays in Literature = Essays Literature Essays in Medieval Studies : Proceedings of The Illinois Medieval Assoc = Ess Med St Essays in Medieval Studies : Proceedings of The Illinois Medieval Assoc = Ess. Med. St. Essays in Medieval Studies, Vol 10 = Ess Med St Essays in Medieval Studies, Vol 10 = Ess. Med. St. Essays in Medieval Studies, Vol 7 = Ess Med St Essays in Medieval Studies, Vol 7 = Ess. Med. St. Essays in Medieval Studies, Vol 9 = Ess Med St Essays in Medieval Studies, Vol 9 = Ess. Med. St. Essays in neurochemistry and neuropharmacology = Essays Neurochem Neuropharmacol Essays in Neurochemistry and Neuropharmacology = Essays Neurochem. Neuropharmacol. Essays in Physics = Essays Phys Essays in Physics = Essays Phys. Essays in Poetics = Essays Poetics Essays in Seventeenth-century Literature = Ess Sev Cen Essays in Seventeenth-century Literature = Ess. Sev. Cen. Essays in Theatre-etudes Theatrales = Essays Theat Essays in Theatre-etudes Theatrales = Essays Theat. Essays in The History of Therapeutics = Clio Medica Essays in The History of Therapeutics = Clio. Medica. Essays On American Constitutional Law and Politics = Berk S Fed Essays On American Constitutional Law and Politics = Berk. S. Fed. Essays On Boredom and Modernity = Crit Stud Essays On Boredom and Modernity = Crit. Stud. Essays On Canadian Writing = Essays Can Writ Essays On Canadian Writing = Essays Can. Writ. Essays On Control: Perspectives in The Theory and Its Applications = Prog Syst C Essays On Control: Perspectives in The Theory and Its Applications = Prog. Syst. C. Essays On Karolina Pavlova = Stud Russ Lit Theor Essays On Karolina Pavlova = Stud. Russ. Lit. Theor. Essays On Liberty and Federalism = Wpw Memor L Essays On Liberty and Federalism = Wpw. Memor. L. Essays On Native Modernism = Nmai Ed Essays On Native Modernism = Nmai. Ed. Essays On Peripheral Nerve Repair and Regeneration = Int Rev Neurobiol Essays On Peripheral Nerve Repair and Regeneration = Int. Rev. Neurobiol. Essays On Port Economics = Contrib Econ Essays On Port Economics = Contrib. Econ. Essays On The Doctrinal Study of Law = Law Philos Libr Essays On The Doctrinal Study of Law = Law Philos. Libr. Essays On The Representational and Derivational Nature of Grammar: The Diversity of Wh-constructions = Linguist Inq Monogr Essays On The Representational and Derivational Nature of Grammar: The Diversity of Wh-constructions = Linguist. Inq. Monogr. Essays On Transport Economics = Contrib Econ Essays On Transport Economics = Contrib. Econ. Essays & Studies = Essays Stud Essays & Studies = Essays Stud. Esscirc 2005: Proceedings of The 31st European Solid-state Circuits Conference = Proc Eur Solid-state Esscirc 2005: Proceedings of The 31st European Solid-state Circuits Conference = Proc. Eur. Solid-state Esscirc 2006: Proceedings of The 32nd European Solid-state Circuits Conference = Proc Eur Solid-state Esscirc 2006: Proceedings of The 32nd European Solid-state Circuits Conference = Proc. Eur. Solid-state Esscirc 2007: Proceedings of The 33rd European Solid-state Circuits Conference = Proc Eur Solid-state Esscirc 2007: Proceedings of The 33rd European Solid-state Circuits Conference = Proc. Eur. Solid-state Esscirc 2008: Proceedings of The 34th European Solid-state Circuits Conference = Proc Eur Solid-state Esscirc 2008: Proceedings of The 34th European Solid-state Circuits Conference = Proc. Eur. Solid-state Essderc 2006: Proceedings of The 36th European Solid-state Device Research Conference = Proc Eur S-state Dev Essderc 2006: Proceedings of The 36th European Solid-state Device Research Conference = Proc. Eur. S-state. Dev. Essderc 2007: Proceedings of The 37th European Solid-state Device Research Conference = Proc Eur S-state Dev Essderc 2007: Proceedings of The 37th European Solid-state Device Research Conference = Proc. Eur. S-state. Dev. Essderc 2008: Proceedings of The 38th European Solid-state Device Research Conference = Proc Eur S-state Dev Essderc 2008: Proceedings of The 38th European Solid-state Device Research Conference = Proc. Eur. S-state. Dev. Essence = Essence Essence = Essence (Downsview) Essence of Computation: Complexity Analysis, Transformation = Lect Notes Comput Sc Essence of Computation: Complexity Analysis, Transformation = Lect. Notes. Comput. Sc. Essence of Diplomacy = Stud Dipl Int Relat Essence of Diplomacy = Stud. Dipl. Int. Relat. Essence of Memory = Prog Brain Res Essence of Memory = Prog. Brain. Res. Essential Building Blocks of Human Nature = Front Collect Essential Building Blocks of Human Nature = Front. Collect. Essential Cases On Natural Causation = Dig Eur Tort Law Essential Cases On Natural Causation = Dig. Eur. Tort. Law. Essential Clnical Social Work Series = Essent Clin Soc Work Essential Clnical Social Work Series = Essent. Clin. Soc. Work Essential Dance Medicine = Musculoskelet Med Essential Dance Medicine = Musculoskelet. Med. Essential drugs monitor = Essent Drugs Monit Essential Echocardiography = Contemp Cardiol Essential Echocardiography = Contemp. Cardiol. Essential Infectious Disease Topics for Primary Care = Curr Clin Pract Essential Infectious Disease Topics for Primary Care = Curr. Clin. Pract. Essential Nursery Management: A Practitioner's Guide = Nurs World Routledge Essential Nursery Management: A Practitioner's Guide = Nurs. World. Routledge. Essential Oils: Art, Agriculture, Science, Industry and Entrepreneurship (a Focus On The Asia- Pacific Region) = Agr Issues Policies Essential Oils: Art, Agriculture, Science, Industry and Entrepreneurship (a Focus On The Asia- Pacific Region) = Agr. Issues. Policies. Essential Oils - Requirements and Reality = Paperb Apv Essential Oils - Requirements and Reality = Paperb. Apv. Essential Pic18 Microcontroller = Comput Commun Netw S Essential Pic18 Microcontroller = Comput. Commun. Netw. S. Essential Practice Guidelines in Primary Care = Curr Clin Pract Essential Practice Guidelines in Primary Care = Curr. Clin. Pract. Essential psychopharmacology = Essent Psychopharmacol Essentials in Cytopathology = Essent Cytopathol Essentials in Cytopathology = Essent. Cytopathol. Essentials in Ophthalmology = Essent Ophthalmol Essentials in Ophthalmology = Essent. Ophthalmol. Essentials of Food Science, Third Edition = Food Sci Text Ser Essentials of Food Science, Third Edition = Food Sci. Text. Ser. Essentials of Integration Theory for Analysis = Grad Texts Math Essentials of Integration Theory for Analysis = Grad. Texts. Math. Essentials of Language Documentation = Trend Lin S Essentials of Language Documentation = Trend. Lin. S. Essentials of Language Documentation = Trends Linguist-stud Essentials of Language Documentation = Trends. Linguist-stud. Essentials of Logistics and Management = Manag Technol Ser Essentials of Logistics and Management = Manag. Technol. Ser. Essentials of Restenosis: for The Interventional Cardiologist = Contemp Cardiol Essentials of Restenosis: for The Interventional Cardiologist = Contemp. Cardiol. Essential Sources in The Scientific Study of Consciousness = Bradford Books Essential Sources in The Scientific Study of Consciousness = Bradford. Books. Essential Sports Medicine = Musculoskelet Med Essential Sports Medicine = Musculoskelet. Med. Essential Urologic Laparoscopy: The Complete Clinical Guide, Second Edition = Curr Clin Urol Essential Urologic Laparoscopy: The Complete Clinical Guide, Second Edition = Curr. Clin. Urol. Essex archaeology and history : the transactions of the Essex Archaeological Society = Trans Essex Archaeol Soc Essex Institute Historical Collections = Essex I Hist Collect Essex Institute Historical Collections = Essex I. Hist. Collect. Essex Institute historical collections = Essex Inst Hist Collect Essex journal = Essex J Establishing A Successful Human Pregnancy = Serono Sym Establishing A Successful Human Pregnancy = Serono. Sym. Establishing Medical Reality: Essays in The Metaphysics and Epistemology of Biomedical Science = Philos Med Establishing Medical Reality: Essays in The Metaphysics and Epistemology of Biomedical Science = Philos. Med. Establishing The Foundation of Collaborative Networks = Int Fed Info Proc Establishing The Foundation of Collaborative Networks = Int. Fed. Info. Proc. Estadistica = Estadastica Estadística = Estadística Estadistica panamena. Boletin = Estad Panamena Estadistica panamena. Situacion demografica, seccion 231: Migracion internacional. Panama. Direccion de Estadistica y Censo = Estad Panamena Situac Demogr Secc 231 Migr Migr Int Estadistica venezolana = Estad Venez Este pais (Mexico City, Mexico) = Este Pais Esterases, Lipases, and Phospholipases = Nato Adv Sci Inst Se Esterases, Lipases, and Phospholipases = Nato. Adv. Sci. Inst. Se. Es + T = Es +T Estetika-the Central European Journal of Aesthetics = Estetika Estetika-the Central European Journal of Aesthetics = Estetika. Esthetics and The Treatment of Facial Form = Cranio Grow Esthetics and The Treatment of Facial Form = Cranio. Grow. Estimating Characteristics of The Foreign Born By Legal Status: An Evaluation of Data and Methods = Springerbrief Popul Estimating Characteristics of The Foreign Born By Legal Status: An Evaluation of Data and Methods = Springerbrief. Popul. Estimation and Control of Distributed Parameter Systems = Int S Num M Estimation and Control of Distributed Parameter Systems = Int. S. Num. M. Estimation and Control Over Communication Networks = Control Eng Ser Birk Estimation and Control Over Communication Networks = Control Eng. Ser. Birk. Estodont/press = Estodont Press Estodont Press = Estodont Press Estomatologia e cultura = Estomatol Cult Estomatologia e Cultura = Estomatol. Cult. Estomatologia = Estomatologia Estonian Academy of Sciences = Proc. Estonian Acad. Sci. Phys. Math. Estonian Journal of Archaeology = Est J Archaeol Estonian Journal of Archaeology = Est. J. Archaeol. Estonian Journal of Earth Sciences = Est J Earth Sci Estonian Journal of Earth Sciences = Est. J. Earth Sci. Estonian Journal of Engineering = Est. J. Eng. Estracyt = Estracyt Estracyt, Scientific Edition 4 = Estracyt Estracyt, Scientific Edition 4 = Estracyt. Estreno-cuadernos Del Teatro Espanol Contemporaneo = Estreno Estreno-cuadernos Del Teatro Espanol Contemporaneo = Estreno. Estrogens and Human Diseases = Ann Ny Acad Sci Estrogens and Human Diseases = Ann. Ny. Acad. Sci. Estrogens: Production, Functions and Applications = Endocr Res Clin Dev Estrogens: Production, Functions and Applications = Endocr. Res. Clin. Dev. Estuaries and Coasts = Estuar Coast Estuaries and Coasts = Estuar. Coast. Estuaries and Coasts = Estuaries Coasts Estuaries and Coasts : Spatial and Temporal Intercomparisons = Olsen Int S Estuaries and Coasts : Spatial and Temporal Intercomparisons = Olsen. Int. S. Estuaries = Estuaries Estuaries: Types, Movement Patterns and Climatical Impacts = Environ Sci Eng Tech Estuaries: Types, Movement Patterns and Climatical Impacts = Environ. Sci. Eng. Tech. Estuarine and Coastal Marine Science = Estuar Coast Mar Sci Estuarine and Coastal Marine Science = Estuar. Coast. Mar. Sci. Estuarine and Coastal Marine Science = Estuarine Coastal Mar. Sci. Estuarine Coastal and Shelf Science = Estuar Coast Shelf S Estuarine Coastal and Shelf Science = Estuar. Coast. Shelf S. Estuarine, Coastal and Shelf Science = Estuarine Coastal Shelf Sci. Estuarine Indicators = Mar Sci Ser Estuarine Indicators = Mar. Sci. Ser. Estudios Atacamenos = Estud Atacamenos Estudios Atacamenos = Estud. Atacamenos Estudios clasicos = Estud Cl Estudios Clasicos = Estud Clasico Estudios Clasicos = Estud. Clasico. Estudios clásicos: organo de la Sociedad espanola de estudios clásicos = EClás Estudios Constitucionales = Estud Const Estudios Constitucionales = Estud. Const. Estudios de Asia y Africa = Estud Asia Afr Estudios de cultura nahuatl = Estud Cult Nahuatl Estudios de Economia=Estud. de Econ. Estudios de economia = Estud Econ Estudios De Economia = Estud Econ Estudios De Economia = Estud. Econ. Estudios De Economia = Estud Economia Estudios De Economia = Estud. Economia Estudios de historia novohispana = Estud Hist Novohisp Estudios de historia social (Madrid, Spain) = Estud Hist Soc Estudios de historia social y economica de America = Estud Hist Soc Econ Am Estudios de la antigüedad = EstAnt Estudios del Departamento de Historia Moderna. Universidad de Zaragoza. Departamento de Historia moderna = Estud Dep Hist Mod Estudios del Seminario de prehistoria, arqueología e historia antigua de la Facultad de filosofía y letras de Zaragoza = EstZaragoza Estudios demograficos y urbanos = Estud Demogr Urbanos Col Mex Estudios de poblacion = Estud Poblac Estudios de prehistoria y arqueología madrileñas = EstMadr Estudios De Psicologia = Estud Psicol Estudios De Psicologia = Estud. Psicol. Estudios De Psicologia = Estud Psicol-madrid Estudios De Psicologia = Estud. Psicol-madrid. Estudios Económicos=Estud. Econ. Estudios Empresariales=Estud. Empresariales Estudios = Estudios Estudios Filologicos = Estud Filol Estudios Filologicos = Estud. Filol. Estudios geograficos = Estud Geogr Estudios Geologicos-madrid = Estud Geol-madrid Estudios Geologicos-madrid = Estud. Geol-madrid. Estudios humanisticos = EHum Estudios Internacionales=Estud. Int. Estudios latinoamericanos (Mexico City, Mexico) = Estud Latinoam Estudios (Madrid, Spain) = Estudios Estudios migratorios latinoamericanos = Estud Migr Latinoam Estudios paraguayos = Estud Parag Estudios publicos / Centro de Estudios Publicos = Estud Publicos Estudios rurales latinoamericanos = Estud Rurales Latinoam Estudios segovianos = Estud Segov Estudios Sobre El Mensaje Periodistico = Estud Mensaje Period Estudios Sobre El Mensaje Periodistico = Estud. Mensaje Period. Estudios Sobre El Mensaje Periodistico = Estud Sobre Mensaj P Estudios Sobre El Mensaje Periodistico = Estud. Sobre Mensaj. P. Estudios sociales centroamericanos = Estud Soc Centroam Estudios Sociales Centroamericanos = Estud Soc Centroam Estudios Sociales Centroamericanos = Estud. Soc. Centroam. Estudios sociales (Santo Domingo, Dominican Republic) = Estud Soc Estudios sociologicos (Mexico City, Mexico) = Estud Sociol Estudios Y Documentos = Estud Docum Estudios Y Documentos = Estud. Docum. Estudis historics i documents dels Arxius de Protocols / Col.legi Notarial de Barcelona = Estud Hist Doc Arxius Protoc Estudis : revista de historia moderna = Estudis Estudis romanics = Estud Rom (Barcelona) Estudos CEBRAP. Centro Brasileiro de Analise e Planejamento = Estud CEBRAP Estudos de historia e saude = Estud Hist Saude Estudos demograficos : revista do Gabinete de Estudos Demograficos do Instituto Nacional de Estatistica = Estud Demogr Estudos economicos = Estud Econ Estudos Economicos=Estudos Econ. Estudos feministas = Estud Fem Estudos Ibero-americanos = Estud Ibero-am Estudos Ibero-americanos = Estud. Ibero-am. Eta Carinae and Other Mysterious Stars: The Hidden Opportunities of Emission Line Spectroscopy = Astr Soc P Eta Carinae and Other Mysterious Stars: The Hidden Opportunities of Emission Line Spectroscopy = Astr. Soc. P. Eta Carinae At The Millennium = Astr Soc P Eta Carinae At The Millennium = Astr. Soc. P. E.t.a. Hoffmann: Leben - Werk - Wirkung = Degruyter Lex E.t.a. Hoffmann: Leben - Werk - Wirkung = Degruyter. Lex. Eta Products and Theta Series Identities = Springer Monogr Math Eta Products and Theta Series Identities = Springer. Monogr. Math. Etc.; a review of general semantics = Etc Et Cetera = Et Cetera Etc-review of General Semantics = Et Cetera Etc-review of General Semantics = Et. Cetera. E-technologies-innovation in An Open World = Lect Notes Bus Inf E-technologies-innovation in An Open World = Lect. Notes. Bus. Inf. E-technologies-innovation in An Open World = Lect Notes Bus Inf P E-technologies-innovation in An Open World = Lect. Notes. Bus. Inf. P. E-technologies: Transformation in A Connected World = Lect Notes Bus Inf P E-technologies: Transformation in A Connected World = Lect. Notes. Bus. Inf. P. Eternal Sunshine of The Spotless Mind = Philos Film Eternal Sunshine of The Spotless Mind = Philos. Film. ETFRN (European Tropical Forest Research Network) Newsletter = ETFRN Newsletter Ethical and Social Issues in The Information Age, Fourth Edition = Texts Comput Sci Ethical and Social Issues in The Information Age, Fourth Edition = Texts. Comput. Sci. Ethical and Social Principles in Occupational Health Practice = People Work Res Rep Ethical and Social Principles in Occupational Health Practice = People. Work. Res. Rep. Ethical Aspects of Human Reproduction = Ethique Sci Ethical Aspects of Human Reproduction = Ethique. Sci. Ethical Codes and Income Distribution = Routl Stud Hist Econ Ethical Codes and Income Distribution = Routl. Stud. Hist. Econ. Ethical currents : a publication of the Center for Healthcare Ethics, St. Joseph Health System, and California Association of Catholic Hospitals = Ethical Currents Ethical Dimension of Strategies Used By Drug Companies = Congr Colloq Ethical Dimension of Strategies Used By Drug Companies = Congr. Colloq. Ethical Dimensions of The Economy: Making Use of Hegel and The Concepts of Public and Merit Goods = Stud Econ Ethics Phi Ethical Dimensions of The Economy: Making Use of Hegel and The Concepts of Public and Merit Goods = Stud. Econ. Ethics. Phi. Ethical human psychology and psychiatry = Ethical Hum Psychol Psychiatry Ethical human sciences and services : an international journal of critical inquiry = Ethical Hum Sci Serv Ethical Issues Associated With Scientific and Technological Research for The Military = Ann Ny Acad Sci Ethical Issues Associated With Scientific and Technological Research for The Military = Ann. Ny. Acad. Sci. Ethical perspectives / Catholic University of Leuven ; European Centre for Christian Ethics = Ethical Perspect Ethical Principles and Economic Transformation: A Buddhist Approach = Issues Bus Ethics Ethical Principles and Economic Transformation: A Buddhist Approach = Issues. Bus. Ethics. Ethical Questions and International Ngos: An Exchange Between Philosphers and Ngos = Libr Ethics Appl Phi Ethical Questions and International Ngos: An Exchange Between Philosphers and Ngos = Libr. Ethics. Appl. Phi. Ethical theory and moral practice : an international forum = Ethical Theory Moral Pract Ethical Theory and Moral Practice = Ethical Theory Moral Ethical Traceability and Communicating Food = Int Libr Environ Agr Ethical Traceability and Communicating Food = Int. Libr. Environ. Agr. Ethics and Anthropology = Ann Ny Acad Sci Ethics and Anthropology = Ann. Ny. Acad. Sci. Ethics and Consultancy: European Perspectives = Iss Bus Eth Ethics and Consultancy: European Perspectives = Iss. Bus. Eth. Ethics and Environmental Responsibility = Aveb S Phil Ethics and Environmental Responsibility = Aveb. S. Phil. Ethics and Eventfulness in Middle English Literature = New Middle Ages Ethics and Eventfulness in Middle English Literature = New. Middle Ages. Ethics and information technology = Ethics Inf Technol Ethics and Information Technology = Ethics Inf Technol Ethics and Information Technology = Ethics Inf. Technol. Ethics and intellectual disability = Ethics Intellect Disabil Ethics and medics = Ethics Medics Ethics and Policy of Biometrics = Lect Notes Comput Sc Ethics and Policy of Biometrics = Lect. Notes. Comput. Sc. Ethics and Sport = Ethics Sport Ethics and Technology = Ethic Techn Ethics and Technology = Ethic. Techn. Ethics and The Librarian = Allerton Pa Ethics and The Librarian = Allerton. Pa. Ethics and The Professions = Aveb S Phil Ethics and The Professions = Aveb. S. Phil. Ethics and War in The 21st Century = Lse Int Stud Ser Ethics and War in The 21st Century = Lse. Int. Stud. Ser. Ethics As Foreign Policy = Interventions Ethics As Foreign Policy = Interventions. Ethics & behavior = Ethics Behav Ethics & Behavior = Ethics Behav Ethics & Behavior = Ethics Behav. Ethics committee newsletter = Ethics Comm Newsl Ethics = Ethics Ethics for Journalists, Second Edition = Media Skills Ethics for Journalists, Second Edition = Media. Skills. Ethics for Life Scientists = Wag Ur Fron Ethics for Life Scientists = Wag. Ur. Fron. Ethics & Global Politics = Ethics Glob Polit Ethics & Global Politics = Ethics Glob. Polit. Ethics, Hunger and Globalization: in Search of Appropriate Policies = Int Libr Environ Agr Ethics, Hunger and Globalization: in Search of Appropriate Policies = Int. Libr. Environ. Agr. Ethics in A Changing World = Eth Chang W Ethics in A Changing World = Eth. Chang. W. Ethics in Culture: Dissemination of Values Through Literature and Other Media = Spect Literaturwiss Ethics in Culture: Dissemination of Values Through Literature and Other Media = Spect. Literaturwiss. Ethics in Groups = Res Manag Group Team Ethics in Groups = Res. Manag. Group. Team. Ethics in Medical Education in China = Mit Inst Asienk Hamb Ethics in Medical Education in China = Mit. Inst. Asienk. Hamb. Ethics in Medicine = Kar Ins Ncs Ethics in Medicine = Kar. Ins. Ncs. Ethics in Practice = Ethics Pract Ethics in Practice = Ethics Pract. Ethics in Psychiatry: European Contributions = Int Libr Eth Law New Ethics in Psychiatry: European Contributions = Int. Libr. Eth. Law. New. Ethics in Science and Medicine = Ethics Sci. Med. Ethics in science & medicine = Ethics Sci Med Ethics in Science & Medicine = Ethics Sci Med Ethics in Science & Medicine = Ethics Sci. Med. Ethics in Small and Medium Sized Enterprises - A Global Community = Int Soc Bus Econ Eth Ethics in Small and Medium Sized Enterprises - A Global Community = Int. Soc. Bus. Econ. Eth. Ethics & international affairs = Ethics Int Aff Ethics, Knowledge and Truth in Sports Research: An Epistemology of Sport = Ethics Sport Ethics, Knowledge and Truth in Sports Research: An Epistemology of Sport = Ethics. Sport Ethics, Liability and The Technical Expert = Australas I Min Met Ethics, Liability and The Technical Expert = Australas. I. Min. Met. Ethics, Liberalism and Realism in International Relations = Routl Adv Int Relat Ethics, Liberalism and Realism in International Relations = Routl. Adv. Int. Relat. Ethics & medicine : a Christian perspective on issues in bioethics = Ethics Med Ethics, Money and Sport = Ethics Sport Ethics, Money and Sport = Ethics. Sport Ethics of Aesthetics in Japanese Cinema and Literature: Polygraphic Desire = Routl Contemp Jpn Se Ethics of Aesthetics in Japanese Cinema and Literature: Polygraphic Desire = Routl. Contemp. Jpn. Se. Ethics of Banking: Conclusions From The Financial Crisis = Issues Bus Ethics Ethics of Banking: Conclusions From The Financial Crisis = Issues. Bus. Ethics Ethics of Business in A Global Economy = Iss Bus Eth Ethics of Business in A Global Economy = Iss. Bus. Eth. Ethics of Doping and Anti-doping: Redeeming The Soul of Sport? = Ethics Sport Ethics of Doping and Anti-doping: Redeeming The Soul of Sport? = Ethics Sport. Ethics of Embryo Adoption and The Catholic Tradition = Philos Med Ethics of Embryo Adoption and The Catholic Tradition = Philos. Med. Ethics of Intensification: Agricultural Development and Cultural Change = Int Lib Env Agric Fo Ethics of Intensification: Agricultural Development and Cultural Change = Int. Lib. Env. Agric. Fo. Ethics of Intensification: Agricultural Development and Cultural Change = Int Libr Environ Agr Ethics of Intensification: Agricultural Development and Cultural Change = Int. Libr. Environ. Agr. Ethics of Latin American Literary Criticism: Reading Otherwise = New Concept Lat Amer Ethics of Latin American Literary Criticism: Reading Otherwise = New. Concept. Lat. Amer. Ethics of Latin American Literary Criticism: Reading Otherwise = New Concepts Lat Am Ethics of Latin American Literary Criticism: Reading Otherwise = New. Concepts. Lat. Am. Ethics of Protocells: Moral and Social Implications of Creating Life in The Laboratory = Basic Bioeth Ethics of Protocells: Moral and Social Implications of Creating Life in The Laboratory = Basic. Bioeth. Ethics of Science and Technology Assessment = Ethic Sci Technol As Ethics of Science and Technology Assessment = Ethic. Sci. Technol. As. Ethics of Science and Technology Assessment = Ethics Sci Tech Ass Ethics of Science and Technology Assessment = Ethics Sci. Tech. Ass. Ethics of Sports Coaching = Ethics Sport Ethics of Sports Coaching = Ethics Sport. Ethics of The Body: Postconventional Challenges = Basic Bioeth Ethics of The Body: Postconventional Challenges = Basic. Bioeth. Ethics of War and Peace = Ethikon Ser Ethics of War and Peace = Ethikon. Ser. Ethics = Roy I Ph S Ethics = Roy. I. Ph. S. Ethics, Technology and The American Way of War = Contemp Secur Stud Ethics, Technology and The American Way of War = Contemp. Secur. Stud. Ethik Als Steigerungsform Von Theologie?: Systematische Rekonstruktion Und Kritik Eines Strukturprozesses Im Neuzeitlichen Protestantismus = Theol Bibl Topelmann Ethik Als Steigerungsform Von Theologie?: Systematische Rekonstruktion Und Kritik Eines Strukturprozesses Im Neuzeitlichen Protestantismus = Theol. Bibl. Topelmann. Ethik in Der Medizin = Ethik Med Ethik in Der Medizin = Ethik Med. Ethik in der Medizin : Organ der Akademie fur Ethik in der Medizin = Ethik Med Ethikon Series = Ethikon Ser Ethikon Series = Ethikon Ser. Ethikon Series in Comparative Ethics = Ethikon Ser Comp Ethikon Series in Comparative Ethics = Ethikon Ser. Comp. Ethik Und Die Moglichkeit Einer Guten Welt: Eine Kontroverse Um Die "konkrete Ethik" = Stud Wiss Ethik Ethik Und Die Moglichkeit Einer Guten Welt: Eine Kontroverse Um Die "konkrete Ethik" = Stud. Wiss. Ethik Ethiopian journal of development research = Ethiop J Dev Res Ethiopian Journal of Health Development = Ethiop J Health Dev Ethiopian Journal of Health Development = Ethiop. J. Health Dev. Ethiopian Medical Journal = Ethiopian Med J Ethiopian Medical Journal = Ethiopian Med. J. Ethiopian medical journal = Ethiop Med J Ethiopian Medical Journal=Ethiop Med J;; Ethiopian Medical Journal = Ethiop. Med. J. Ethiopia observer = Ethiop Obs Ethique A La Justice: Langage Et Politique Dans La Philosophie De Levinas = Phaenomenologica Ethique A La Justice: Langage Et Politique Dans La Philosophie De Levinas = Phaenomenologica. Ethique = Ethique Ethique Et Sciences = Ethique Sci Ethique Et Sciences = Ethique Sci. Ethische Probleme Einer Langfristigen Globalen Energieversorgung = Stud Wiss Ethik Ethische Probleme Einer Langfristigen Globalen Energieversorgung = Stud. Wiss. Ethik. Ethische Selbstverstandigung: Kierkegaards Auseinandersetzung Mit Der Ethik Kants Und Der Rechtsphilosophie Hegels = Kierke Stud Monogr S Ethische Selbstverstandigung: Kierkegaards Auseinandersetzung Mit Der Ethik Kants Und Der Rechtsphilosophie Hegels = Kierke. Stud. Monogr. S. Ethnic and Intercommunity Conflict = Ethn Intercomm Confl Ethnic and Intercommunity Conflict = Ethn. Intercomm. Confl. Ethnic and Racial Studies = Ethnic Racial Stud Ethnic and Racial Studies = Ethnic Racial Stud. Ethnic and racial studies = Ethn Racial Stud Ethnic And Racial Studies = Ethn. Racial Stud. Ethnic Conflict and Terrorism = Contemp Secur Stud Ethnic Conflict and Terrorism = Contemp. Secur. Stud. Ethnic Conflict in Sri Lanka: Changing Dynamics = Pol Stud Ethnic Conflict in Sri Lanka: Changing Dynamics = Pol. Stud. Ethnic Entrepreneurship: Structure and Process = Int Res Bus Discipl Ethnic Entrepreneurship: Structure and Process = Int. Res. Bus. Discipl. Ethnic forum : bulletin of ethnic studies and ethnic bibliography = Ethn Forum Ethnic Groups = Ethnic Groups Ethnicities = Ethnicities Ethnicity and Disease=Ethn Dis;; Ethnicity and Disease = Ethn. Dis. Ethnicity and Everyday Life = New Sociol Ethnicity and Everyday Life = New. Sociol. Ethnicity and Health=Ethn Health;; Ethnicity and Health = Ethn. Health Ethnicity and Integration: Understanding Population Trends and Processes,vol 3 = Underst Popul Trends Ethnicity and Integration: Understanding Population Trends and Processes,vol 3 = Underst. Popul. Trends Ethnicity and Urban Life in China: A Comparative Study of Hui Muslims and Han Chinese = Rout Stud China Tran Ethnicity and Urban Life in China: A Comparative Study of Hui Muslims and Han Chinese = Rout. Stud. China. Tran. Ethnicity, Authority, and Power in Central Asia: New Games Great and Small = Cent Asian Stud Ser Ethnicity, Authority, and Power in Central Asia: New Games Great and Small = Cent. Asian. Stud. Ser. Ethnicity, Crime, and Immigration = Crime Justice Ethnicity, Crime, and Immigration = Crime. Justice. Ethnicity & disease = Ethn Dis Ethnicity & Disease = Ethnic Dis Ethnicity & Disease = Ethnic. Dis. Ethnicity = Ethnicity Ethnicity & health = Ethn Health Ethnicity & Health = Ethnic Health Ethnicity & Health = Ethnic. Health Ethnicity Inequality and Public Sector Governance = Ethn Inequal Public Ethnicity Inequality and Public Sector Governance = Ethn. Inequal. Public Ethnicity Kills? = Int Pol Ec Ethnicity Kills? = Int. Pol. Ec. Ethnicity, Race and Nationality in Education = Rutg Inv Symp Educ S Ethnicity, Race and Nationality in Education = Rutg. Inv. Symp. Educ. S. Ethnic Landscapes in An Urban World = Res Urban Sociol Ethnic Landscapes in An Urban World = Res. Urban Sociol. Ethnic Politics in Burma: States of Conflict = Routl Cont Se Asia S Ethnic Politics in Burma: States of Conflict = Routl. Cont. Se. Asia. S. Ethnobiology At The Millenium: Past Promise and Future Prospects = Anthr Paper Ethnobiology At The Millenium: Past Promise and Future Prospects = Anthr. Paper. Ethnobotany and The Search for New Drugs = Ciba F Symp Ethnobotany and The Search for New Drugs = Ciba. F. Symp. Ethnocultural Perspectives On Disaster and Trauma: Foundations, Issues, and Applications = Int Cult Psychol Ethnocultural Perspectives On Disaster and Trauma: Foundations, Issues, and Applications = Int. Cult. Psychol. Ethno-diplomacy: The Uyghur Hitch in Sino-turkish Relations = Pol Stud Ethno-diplomacy: The Uyghur Hitch in Sino-turkish Relations = Pol. Stud. Ethnographically Speaking: Autoethnography, Literature, and Aesthetics = Ethnogr Alt Book Ser Ethnographically Speaking: Autoethnography, Literature, and Aesthetics = Ethnogr. Alt. Book. Ser. Ethnographies of Archaeological Practice: Cultural Encounters, Material Transformations = World Archaeol Ser Ethnographies of Archaeological Practice: Cultural Encounters, Material Transformations = World. Archaeol. Ser. Ethnographies of Educational and Cultural Conflicts: Strategies and Resolutions = Stud Educ Ethnog Ethnographies of Educational and Cultural Conflicts: Strategies and Resolutions = Stud. Educ. Ethnog. Ethnographisch-archäologische Zeitschrift = EAZ Ethnography and Education Policy Across The Americas = Educ Pol Pract Ethnography and Education Policy Across The Americas = Educ. Pol. Pract. Ethnography and Human Development = Mac Fdn Men Ethnography and Human Development = Mac. Fdn. Men. Ethnography = Ethnography Ethnography of Political Violence = Ethnogr Polit Violen Ethnography of Political Violence = Ethnogr. Polit. Violen. Ethnohistory (Columbus, Ohio) = Ethnohistory Ethnohistory = Ethnohistory Ethnolinguistic Explorations of The Serbian and Other Slavic Languages = Serb Ac Sci Art Lang Ethnolinguistic Explorations of The Serbian and Other Slavic Languages = Serb. Ac. Sci. Art. Lang. Ethnologia Europaea = Ethnol Eur Ethnologia Scandinavica = Ethnol Scand Ethnologia Scandinavica = Ethnol. Scand. Ethnological Uralica = Ethnol Ural Ethnological Uralica = Ethnol. Ural. Ethnologie francaise = Ethnol Fr Ethnology = Ethnology Ethnomedizin-Ethnomedicine = Ethnomedizin Ethnomusicology = Ethnomusicology Ethno-nationalism, Islam and The State in The Caucasus: Post-soviet Disorder = Cent Asian Stud Ser Ethno-nationalism, Islam and The State in The Caucasus: Post-soviet Disorder = Cent. Asian. Stud. Ser. Ethno-religious Violence in Indonesia: From Soil to God = Routl Cont Se Asia S Ethno-religious Violence in Indonesia: From Soil to God = Routl. Cont. Se. Asia. S. Ethnos = Ethnos Ethnos. Revista do Instituto português de arqueología, história e etnografia = Ethnos Ethoexperimental Approaches to The Study of Behavior = Nato Adv Sci I D-beh Ethoexperimental Approaches to The Study of Behavior = Nato. Adv. Sci. I. D-beh. Ethological Roots of Culture = Nato Adv Sci Inst Se Ethological Roots of Culture = Nato. Adv. Sci. Inst. Se. Ethology and sociobiology = Ethol Sociobiol Ethology and Sociobiology = Ethol Sociobiol Ethology and Sociobiology = Ethol. Sociobiol. Ethology Ecology & Evolution = Ethol Ecol Evol Ethology Ecology & Evolution = Ethol. Ecol. Evol. Ethology = Ethology Ethology : formerly Zeitschrift fur Tierpsychologie = Ethology Ethonographic Alternatives Book Series = Ethnogr Alt Book Ser Ethonographic Alternatives Book Series = Ethnogr. Alt. Book Ser. Ethos (Berkeley, Calif.) = Ethos Ethos = Ethos Etikk I Praksis = Etikk Praksis Etiology and Treatment of Acute Lung Injury: From Bench to Bedside = Nato Sci Ser I Life Etiology and Treatment of Acute Lung Injury: From Bench to Bedside = Nato. Sci. Ser. I. Life. Etiology of Breast and Gynecological Cancers = Prog Clin Biol Res Etiology of Breast and Gynecological Cancers = Prog. Clin. Biol. Res. Etiology of Bulimia Nervosa : The Individual and Familial Context = S Ap Psyc S Etiology of Bulimia Nervosa : The Individual and Familial Context = S. Ap. Psyc. S. Etiology of Hodgkin's Disease = Nato Adv Sci Inst Se Etiology of Hodgkin's Disease = Nato. Adv. Sci. Inst. Se. Etiology of Human Disease At The Dna Level = Nobel Symp Etiology of Human Disease At The Dna Level = Nobel. Symp. Etiology, Pathology, and Treatment of Hepatocellular Carcinoma in North America = Adv Ap Biot Etiology, Pathology, and Treatment of Hepatocellular Carcinoma in North America = Adv. Ap. Biot. ET journal = ET J ET Journal = ET J. Etnografia polska = Etnogr Pol Etnologiska studier = Etnol Stud E-transformation: Enabling New Development Strategies = Innov Tech Knowl Man E-transformation: Enabling New Development Strategies = Innov. Tech. Knowl. Man. Etr&d-educational Technology Research and Development = Etr&d-educ Tech Res Etr&d-educational Technology Research and Development = Etr&d-educ. Tech. Res. Etri Journal = Etri J Etri Journal = Etri J. Etruscans. Bulletin of the Etruscan Foundation = Etruscans Etruscan Studies. Journal of the Etruscan Foundation = EtrSt Ettore Majorana International Life Sciences Series = E M I Lif S Ettore Majorana International Life Sciences Series = E. M. I. Lif. S. Ettore Majorana International Science Series : Physical Sciences = E Maj Int S Ettore Majorana International Science Series : Physical Sciences = E. Maj. Int. S. Ettore Majorana International Science Series: Physical Sciences = Ettore Majorana Int. Sci. Ser.: Phys. Sci. Ettore Majorana: Unpublished Research Notes On Theoretical Physics = Fund Theor Phys Ettore Majorana: Unpublished Research Notes On Theoretical Physics = Fund. Theor. Phys. Etude et Gestion des Sols = Etud. Gest. Sols Etudes Anglaises = Etud Anglaises Etudes Anglaises = Etud. Anglaises Etudes anglaises (Periodical) = Etud Angl Etudes balkaniques / Academie bulgare des sciences, Institut d'etudes balkaniques = Etud Balk Etudes canadiennes. Canadian studies = Etud Can Études celtiques = EC Etudes Cinematographiques = Etud Cinema Etudes Cinematographiques = Etud. Cinema. Etudes Classiques = Etud Classiques Etudes Classiques = Etud. Classiques Études classiques. Faculté des lettres et sciences humaines d'Aix = EtClAix Etudes classiques (Namur, Belgium) = Etud Class Études crétoises = EtCret Études d'archéologie classique = EtACl Études de lettres: bulletin de la Faculté des Lettres de l'Univ. de Lausanne et de la Soc. des études de Lettres = EL Études de papyrologie = EtP Etudes d'histoire africaine = Etud Hist Afr Etudes & documents (Groupe de demographie africaine (France)) = Etud Doc Groupe Demogr Afr Etudes et Conjoncture=Etud. Conjoncture Etudes Et Recherches Sur Les Systemes Agraires Et Le Developpement = Etud Rech S Etudes Et Recherches Sur Les Systemes Agraires Et Le Developpement = Etud. Rech. S. Etudes Et Syntheses De L Iemvt = Et S Iemvt Etudes Et Syntheses De L Iemvt = Et S. Iemvt Études et travaux. Studia i prace. Travaux du Centre d'archéologie méditerranéenne de l'Académie des sciences polonaise = EtTrav Etudes = Etudes (Paris) Etudes Europeennes = Etud Europ Etudes Europeennes = Etud. Europ. Etudes & expansion = Etud Expans Etudes Francaises = Etud Fr Etudes Francaises = Etud. Fr. Etudes freudiennes = Etudes Freud Etudes germaniques = Etud Ger Etudes Germaniques = Etud Ger Etudes Germaniques = Etud. Ger. Études indo-européennes = EIE Etudes internationales = Etud Int Etudes Internationales = Etud Int Etudes Internationales = Etud. Int. Etudes inuit. Inuit studies = Etud Inuit Etudes irlandaises = Etud Irl Etudes Irlandaises = Etud Irlandaises Etudes Irlandaises = Etud. Irlandaises Etudes limousines = Etud Limousines Etudes Litteraires = Etud Litteraires Etudes Litteraires = Etud. Litteraires Etudes maliennes = Etudes Mali Etudes napoleoniennes : bulletin historique de la Societe de sauvegarde du chateau imperial de Pont-de-Briques = Etud Napoleon Etudes neo-natales. Neo-natal studies = Etudes Neonatales Études philosophiques = EPh Etudes Philosophiques = Etud Philos Etudes Philosophiques = Etud. Philos. Etudes polemologiques = Etud Polemol Études préliminaires aux religions orientales dans l'empire romain = EPRO Etudes rurales = Etud Rurales Etudes Rurales = Etud Rurales Etudes Rurales = Etud. Rurales Etudes rwandaises = Etudes Rwandaises Etudes Statistiques = Etudes Stat Inst Natl Stat Etudes sur les Soins et le Service Infirmier = Etud. Soins Serv. Infirm. Etudes Sur Les Soins Et Le Service Infirmier = Etud Soins Serv Infirm Études sur Pézenas et l'Hérault = EtPezenas Etudes Theologiques Et Religieuses = Etud Theol Relig Etudes Theologiques Et Religieuses = Etud. Theol. Relig. Etudes togolaises de population = Etud Togol Popul Etudes Traditionnelles = Etud Traditionnelles Etudes Traditionnelles = Etud. Traditionnelles Etudes vauclusiennes = Etud Vauclus Etudes zairoises = Etud Zair Etudiants De L'exil: Migrations Internationales Et Universites Refuges (xvi-xx S.) = Tempus Ser Etudiants De L'exil: Migrations Internationales Et Universites Refuges (xvi-xx S.) = Tempus. Ser. Etz Archiv = Etz Archiv Eu and Conflict Resolution = Routl Uaces Contemp Eu and Conflict Resolution = Routl. Uaces. Contemp. Eu and The European Security Order: Interfacing Security Actors = Contemp Secur Stud Eu and The European Security Order: Interfacing Security Actors = Contemp. Secur. Stud. Eu and The European Security Strategy = Routl Adv Eur Polit Eu and The European Security Strategy = Routl. Adv. Eur. Polit. Eubios journal of Asian and international bioethics : EJAIB = Eubios J Asian Int Bioeth Eucarpia Symposium On Fruit Breeding and Genetics = Acta Hortic Eucarpia Symposium On Fruit Breeding and Genetics = Acta. Hortic. Eu Climate Change Policy : The Challenge of New Regulatory Initiatives = New Horiz Environ La Eu Climate Change Policy : The Challenge of New Regulatory Initiatives = New Horiz. Environ. La. Eu Foreign and Interior Policies = Routl Adv Eur Polit Eu Foreign and Interior Policies = Routl. Adv. Eur. Polit. Eu Foreign Policy in A Globalized World: Normative Power and Social Preferences = Routl Garn Ser Eur W Eu Foreign Policy in A Globalized World: Normative Power and Social Preferences = Routl. Garn. Ser. Eur. W. Eugene Oneill and The Emergence of American Drama = Costerus Es Eugene Oneill and The Emergence of American Drama = Costerus. Es. Eugenics quarterly = Eugen Q Eugenics Quarterly = Eugen. Q. Eugenics Quarterly = Eugen Quart Eugenics Quarterly = Eugen. Quart. Eugenics Review = Eugen Rev Eugenics Review = Eugen. Rev. Eugenics Society symposia = Eugen Soc Symp Eugenics Society Symposia = Eugen. Soc. Symp. Eu Intellectual Property Law and Policy = Elgar Eur Law Ser Eu Intellectual Property Law and Policy = Elgar. Eur. Law Ser. Eukaryotic cell = Eukaryot Cell Eukaryotic Cell = Eukaryot Cell Eukaryotic Cell = Eukaryot. Cell Eukaryotic Cell = Eukaryotic Cell Eukaryotic Membranes and Cytoskeleton: Origins and Evolution = Adv Exp Med Biol Eukaryotic Membranes and Cytoskeleton: Origins and Evolution = Adv. Exp. Med. Biol. Eu-ldc Trade and Capital Relations Series = Eu Ldc Trad Cap Rel Eu-ldc Trade and Capital Relations Series = Eu. Ldc. Trad. Cap. Rel. Euler Systems = Ann Math Stud Euler Systems = Ann. Math. Stud. Eunice 2005: Networks and Applications Towards A Ubiquitously Connected World = Int Fed Info Proc Eunice 2005: Networks and Applications Towards A Ubiquitously Connected World = Int. Fed. Info. Proc. Eunomia. Ephemeridis Listy filologické supplementum = Eunomia Eunotia Ehrenberg (bacillariophyta) of The Great Smoky Mountains National Park, Usa = Bibl Diatomol Eunotia Ehrenberg (bacillariophyta) of The Great Smoky Mountains National Park, Usa = Bibl. Diatomol. Eunuch in Byzantine History and Society = Routl Monogr Class S Eunuch in Byzantine History and Society = Routl. Monogr. Class. S. Euphorion-zeitschrift Fur Literaturgeschichte = Euphorion-z Lit Euphorion-zeitschrift Fur Literaturgeschichte = Euphorion-z. Lit. Euphrosyne. Revista de filologia clássica = Euphrosyne Euphytica = Euphytica Eu Public Procurement Law = Elgar Eur Law Ser Eu Public Procurement Law = Elgar. Eur. Law Ser. Eurasia: A New Peace Agenda = Contrib Confl Manag Eurasia: A New Peace Agenda = Contrib. Confl. Manag. Eurasia antiqua = EurAnt Eurasia-ict 2002: Information and Communication Technology, Proceedings = Lect Notes Comput Sc Eurasia-ict 2002: Information and Communication Technology, Proceedings = Lect. Notes. Comput. Sc. Eurasian Chemico-Technological Journal = Eurasian Chem. Technol. J. Eurasian Geography and Economics=Eurasian Geogr. Econ. Eurasian Geography and Economics = Eurasian Geogr Econ Eurasian Geography and Economics = Eurasian Geogr. Econ. Eurasian Journal of Analytical Chemistry = Eurasian J. Anal. Chem. Eurasian Soil Science = Eurasian Soil Sci. Eurasian Soil Science = Eurasian Soil Sci+ Eurasian Soil Science = Eurasian Soil Sci+.+ Eurasia septentrionalis antiqua = ESA Eurasip Journal On Advances in Signal Processing = Eurasip J Adv Sig Pr Eurasip Journal On Advances in Signal Processing = Eurasip J. Adv. Sig. Pr. EURASIP journal on applied signal processing = EURASIP J Appl Signal Processing Eurasip Journal On Applied Signal Processing = Eurasip J Appl Sig P Eurasip Journal On Applied Signal Processing = Eurasip J. Appl. Sig. P. Eurasip Journal On Audio Speech and Music Processing = Eurasip J Audio Spee Eurasip Journal On Audio Speech and Music Processing = Eurasip J. Audio Spee. EURASIP journal on bioinformatics & systems biology = EURASIP J Bioinform Syst Biol EURASIP Journal on Bioinformatics & Systems Biology = EURASIP J. Bioinf. Syst. Biol. Eurasip Journal On Image and Video Processing = Eurasip J Image Vide Eurasip Journal On Image and Video Processing = Eurasip J. Image Vide. Eurasip Journal On Wireless Communications and Networking = Eurasip J Wirel Comm Eurasip Journal On Wireless Communications and Networking = Eurasip J. Wirel. Comm. Euratom = Euratom Eureca Scientific Results = Adv Space Res Eureca Scientific Results = Adv. Space. Res. Eurem 88, Vols 1-3 = Inst Phys Conf Ser Eurem 88, Vols 1-3 = Inst. Phys. Conf. Ser. Eure-revista Latinoamericana De Estudios Urbano Regionales = Eure Eure-revista Latinoamericana De Estudios Urbano Regionales = Eure. EURE. Revista latinoamericana de estudios urbano regionales = EURE Euripides: Alkestis = Griech Dramen Euripides: Alkestis = Griech. Dramen. Euripides Danae and Dictys: Introduction, Text and Commentary = Beitr Altertumskunde Euripides Danae and Dictys: Introduction, Text and Commentary = Beitr. Altertumskunde. Euripides: Hekabe = Griech Dramen Euripides: Hekabe = Griech. Dramen. Euro-asian Space Week - Co-operation in Space = Esa Sp Publ Euro-asian Space Week - Co-operation in Space = Esa. Sp. Publ. Euro-asian Studies = Euro-asian Stud Euro-asian Studies = Euro-asian Stud. Euro-atlantic Security Studies = Euro Atl Secur St Euro-atlantic Security Studies = Euro. Atl. Secur. St. Euro Ceramics Viii, Pts 1-3 = Key Eng Mat Euro Ceramics Viii, Pts 1-3 = Key. Eng. Mat. Euro Ceramics Viii, Pts 1-3 = Key Eng Mater Euro Ceramics Viii, Pts 1-3 = Key. Eng. Mater. Euro Ceramics Vii, Pt 1-3 = Key Eng Mat Euro Ceramics Vii, Pt 1-3 = Key. Eng. Mat. Euro Ceramics Vii, Pt 1-3 = Key Eng Mater Euro Ceramics Vii, Pt 1-3 = Key. Eng. Mater. Euro Ceramics V, Pts 1-3 = Key Eng Mat Euro Ceramics V, Pts 1-3 = Key. Eng. Mat. EuroChoices=EuroChoices Eurocode 90 = Lect Notes Comput Sc Eurocode 90 = Lect. Notes. Comput. Sc. Eurocourses-chemical and Environmental Science = Euro Ch Env Eurocourses-chemical and Environmental Science = Euro. Ch. Env. Eurocourses-computer and Information Science = Euro C Comp Eurocourses-computer and Information Science = Euro. C. Comp. Eurocourses-environmental Impact Assessment = Euro Env Imp Assess Eurocourses-environmental Impact Assessment = Euro. Env. Imp. Assess. Eurocourses-environmental Management = Euro Environm Manag Eurocourses-environmental Management = Euro. Environm. Manag. Eurocourses-health Physics and Radiation Protection = Euro Health Phys Rad Eurocourses-health Physics and Radiation Protection = Euro. Health. Phys. Rad. Eurocourses-mechanical and Materials Science = Euro Mech M Eurocourses-mechanical and Materials Science = Euro. Mech. M. Eurocourses-nuclear Science and Technology = Euro Nucl Sci Tech Eurocourses-nuclear Science and Technology = Euro. Nucl. Sci. Tech. Eurocourses-reliability and Risk Analysis = Euro Reliab Eurocourses-reliability and Risk Analysis = Euro. Reliab. Eurocourses-remote Sensing = Euro Cours Rem Sens Eurocourses-remote Sensing = Euro. Cours. Rem. Sens. Eurodiamond '96 = Ital Phy So Eurodiamond '96 = Ital. Phy. So. Euro: European Integration Theory and Economic and Monetary Union = Gov Europe Euro: European Integration Theory and Economic and Monetary Union = Gov. Europe. Eurofighter 2000 = Imeche Sem Eurofighter 2000 = Imeche. Sem. Eurogard Iii, Proceedings = Scripta Botan Belg Eurogard Iii, Proceedings = Scripta. Botan. Belg. Eurographics 2006: Short Papers = Eurogr Tech Rep Ser Eurographics 2006: Short Papers = Eurogr. Tech. Rep. Ser. Eurographicseminars : Tutorials and Perspectives in Computer Graphics = Eurograph S Eurographicseminars : Tutorials and Perspectives in Computer Graphics = Eurograph. S. Eurographics = Spring Eurograp Eurographics = Spring. Eurograp. Eurographics Technical Report Series = Eurogr Tech Rep Ser Eurographics Technical Report Series = Eurogr. Tech. Rep. Ser. Eurointervention = Eurointervention Euromath Bulletin = Euromath Bull. Euromicro Conference On Parallel Distributed and Network-based Processing = Euromicro Workshop P Euromicro Conference On Parallel Distributed and Network-based Processing = Euromicro Workshop. P. Euromicro Conference - Proceedings = Euromicro Conf Proc Euromicro Conference - Proceedings = Euromicro Conf. Proc. Euromicro Rts 2000: 12th Euromicro Conference On Real-time Systems, Proceedings = Euromicro Euromicro Rts 2002: 14th Euromicro Conference On Real-time Systems, Proceedings = Euromicro Euromicro Summer School On Mobile Computing'98 = Vtt Symp Euromicro Summer School On Mobile Computing'98 = Vtt. Symp. Euromicro Workshop On Parallel and Distributed Processing = Euromicro Workshop P Euromicro Workshop On Parallel and Distributed Processing = Euromicro Workshop P. Euromicro Workshop On Real-time Systems-proceedings = Euromicro Euromicro - Workshop On Real-time Systems, Proceedings = Euromicro Euromicro Workshop On Real-time Systems, Proceedings = Euromicro Euro Noise '92, Proceedings, Books 1-3 = Proc Ins Ac Euro Noise '92, Proceedings, Books 1-3 = Proc. Ins. Ac. Europa Archiv = Eur Arch Europa Archiv = Eur. Arch. Europa-Archiv = Europa Archiv Europace = Europace Europace : European pacing, arrhythmias, and cardiac electrophysiology : journal of the working groups on cardiac pacing, arrhythmias, and cardiac cellular electrophysiology of the European Society of Cardiology = Europace Euro-pacific Investment and Trade = New Horiz Int Bus Euro-pacific Investment and Trade = New. Horiz. Int. Bus. Europa ethnica = Eur Ethn Europa! Europa?- Avant-garde, Modernism and The Fate of A Continent = Eur Avant Gard Mo Europa! Europa?- Avant-garde, Modernism and The Fate of A Continent = Eur. Avant. Gard. Mo. Europaische Grundrechte Und Grundfreiheiten = Degruyter Lehrb Europaische Grundrechte Und Grundfreiheiten = Degruyter. Lehrb. Europäische Hochschulschriften = Europäische Hochschulschrift. Reihe V Volks- Betriebswirtsch. Europäische Hochschulschriften = Europäische Hochschulschrift. Reihe XX Philos. Europa medica. [Edicion espanola] = Eur Med (Paris) Europa Medica (Edicion Espanola) = Eur. Med. (Paris) Europa medicophysica = Eura Medicophys Euro-par 2000 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2000 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2002 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2002 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2003 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2003 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2004 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2004 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2005 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2005 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2006 Parallel Processing = Lect Notes Comput Sc Euro-par 2006 Parallel Processing = Lect. Notes. Comput. Sc. Euro-par 2006 Workshops: Parallel Processing = Lect Notes Comput Sc Euro-par 2006 Workshops: Parallel Processing = Lect. Notes. Comput. Sc. Euro-par 2007 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2007 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2007 Workshops: Parallel Processing = Lect Notes Comput Sc Euro-par 2007 Workshops: Parallel Processing = Lect. Notes. Comput. Sc. Euro-par 2008 Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2008 Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2008 Workshops - Parallel Processing = Lect Notes Comput Sc Euro-par 2008 Workshops - Parallel Processing = Lect. Notes. Comput. Sc. Euro-par 2009: Parallel Processing, Proceedings = Lect Notes Comput Sc Euro-par 2009: Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Euro-par 2009 Parallel Processing Workshops = Lect Notes Comput Sc Euro-par 2009 Parallel Processing Workshops = Lect. Notes. Comput. Sc. Euro-par 2010 - Parallel Processing, Part Ii = Lect Notes Comput Sc Euro-par 2010 - Parallel Processing, Part Ii = Lect. Notes. Comput. Sc. Euro-par 2010 Parallel Processing, Pt I = Lect Notes Comput Sc Euro-par 2010 Parallel Processing, Pt I = Lect. Notes. Comput. Sc. Euro-par '98 Parallel Processing = Lect Notes Comput Sc Euro-par '98 Parallel Processing = Lect. Notes. Comput. Sc. Euro-par'99: Parallel Processing = Lect Notes Comput Sc Euro-par'99: Parallel Processing = Lect. Notes. Comput. Sc. Europa Regional = Eur Reg Europa-the Ocean Moon: Search for An Alien Biosphere = Springer-prax Books Europa-the Ocean Moon: Search for An Alien Biosphere = Springer-prax. Books. European Accounting Review = Eur Account Rev European Accounting Review = Eur. Account. Rev. European addiction research = Eur Addict Res European Addiction Research = Eur Addict Res European Addiction Research = Eur. Addict. Res. European Air Law and Policy: Recent Developments = Eur Air Law Assoc European Air Law and Policy: Recent Developments = Eur. Air Law Assoc. European Air Law Association: Conference Papers = Eur Air Law Assoc European Air Law Association: Conference Papers = Eur. Air Law Assoc. European Air Law Association Conference Papers, Vol 12 = Eur Air Law Assoc European Air Law Association Conference Papers, Vol 12 = Eur. Air Law Assoc. European Air Law Association: Eleventh Annual Conference in Lisbon = Eur Air Law Assoc European Air Law Association: Eleventh Annual Conference in Lisbon = Eur. Air Law Assoc. European Air Law Association: Tenth Annual Conference in Vienna = Eur Air Law Assoc European Air Law Association: Tenth Annual Conference in Vienna = Eur. Air Law Assoc. European-american Relations and The Middle East: From Suez to Iraq = Css Stud Sec Int Rel European-american Relations and The Middle East: From Suez to Iraq = Css. Stud. Sec. Int. Rel. European-american Trade and Financial Alliances = New Horiz Int Bus European-american Trade and Financial Alliances = New. Horiz. Int. Bus. European and Chinese Cognitive Styles and Their Impact On Teaching Mathematics = Stud Comput Intell European and Chinese Cognitive Styles and Their Impact On Teaching Mathematics = Stud. Comput. Intell. European Archives of Oto-rhino-laryngology = Eur Arch Oto-rhino-l European Archives of Oto-rhino-laryngology = Eur. Arch. Oto-rhino-l. European Archives of Oto-Rhino-Laryngology=Eur Arch Otorhinolaryngol;; European Archives of Oto-Rhino-Laryngology = Eur. Arch. Otorhinolaryngol. European archives of oto-rhino-laryngology : official journal of the European Federation of Oto-Rhino-Laryngological Societies (EUFOS) : affiliated with the German Society for Oto-Rhino-Laryngology - Head and Neck Surgery = Eur Arch Otorhinolaryngol European archives of oto-rhino-laryngology. Supplement = Eur Arch Otorhinolaryngol Suppl European Archives of Oto-Rhino-Laryngology. Supplement=Eur Arch Otorhinolaryngol Suppl;; European Archives of Oto-Rhino-Laryngology. Supplement = Eur. Arch. Otorhinolaryngol. Suppl. European Archives of Paediatric Dentistry = Eur. Arch. Paediatr. Dent. European archives of paediatric dentistry : official journal of the European Academy of Paediatric Dentistry = Eur Arch Paediatr Dent European archives of psychiatry and clinical neuroscience = Eur Arch Psychiatry Clin Neurosci European Archives of Psychiatry and Clinical Neuroscience=Eur Arch Psychiatry Clin Neurosci;; European Archives of Psychiatry and Clinical Neuroscience = Eur. Arch. Psychiatry Clin. Neurosci. European Archives of Psychiatry and Clinical Neuroscience = Eur Arch Psy Clin N European Archives of Psychiatry and Clinical Neuroscience = Eur. Arch. Psy. Clin. N. European archives of psychiatry and neurological sciences = Eur Arch Psychiatry Neurol Sci European Archives of Psychiatry and Neurological Sciences = Eur. Arch. Psychiatry Neurol. Sci. European Association for Evolutionary Political Economy Series = Eur Assoc Evol Polit European Association for Evolutionary Political Economy Series = Eur. Assoc. Evol. Polit. European Association of Legislation Series = Eur Assoc Legislat S European Association of Legislation Series = Eur. Assoc. Legislat. S. European Association of Methodology Series = Eur Assoc Methodol S European Association of Methodology Series = Eur. Assoc. Methodol. S. European Association of Social Anthropologists Series = Euro Assoc Social European Association of Social Anthropologists Series = Euro. Assoc. Social European Avant Garde and Modernism Studies = Eur Avant Gard Mo European Avant Garde and Modernism Studies = Eur. Avant Gard. Mo. European biophysics journal : EBJ = Eur Biophys J European Biophysics Journal=Eur Biophys J;; European Biophysics Journal = Eur Biophys J European Biophysics Journal = Eur. Biophys. J. European Biophysics Journal With Biophysics Letters = Eur Biophys J Biophy European Biophysics Journal With Biophysics Letters = Eur. Biophys. J. Biophy. European Business Ethics Cases in Context: The Morality of Corporate Decision Making = Issues Bus Ethics European Business Ethics Cases in Context: The Morality of Corporate Decision Making = Issues. Bus. Ethics European Business Organization Law Review = Eur Bus Organ Law Re European Business Organization Law Review = Eur. Bus. Organ. Law Re. European Cancer News = Eur Cancer News European Cancer News = Eur. Cancer News European Cancer News = Eur Canc New European Cancer News = Eur. Canc. New. European Cells and Materials = Eur. Cell. Mater. European cells & materials = Eur Cell Mater European Cells & Materials = Eur Cells Mater European Cells & Materials = Eur. Cells Mater. European Chemical News = Eur Chem News European Chemical News = Eur. Chem. News European child & adolescent psychiatry = Eur Child Adolesc Psychiatry European Child & Adolescent Psychiatry = Eur Child Adoles Psy European Child & Adolescent Psychiatry = Eur. Child Adoles. Psy. European Child and Adolescent Psychiatry=Eur Child Adolesc Psychiatry;; European Child and Adolescent Psychiatry = Eur. Child Adolesc. Psychiatry European Cohesion Policy = Reg Cities European Cohesion Policy = Reg. Cities. European College for The Study of Consciousness, Yearbook = Eur Col Bewusst European College for The Study of Consciousness, Yearbook = Eur. Col. Bewusst. European Commission - Science Research Development = Eur Commiss Sci Res European Commission - Science Research Development = Eur. Commiss. Sci. Res. European Commission Series D: Studies and Research = Europ Commiss Ser D European Commission Series D: Studies and Research = Europ. Commiss. Ser. D. European Communication Council Report = Eur Commun Counc Rep European Communication Council Report = Eur. Commun. Counc. Rep. European Communication Policy Research Series = Eur Comm P European Communication Policy Research Series = Eur. Comm. P. European Communication Research and Education Association Series = Eur Commun Res Educ European Communication Research and Education Association Series = Eur. Commun. Res. Educ. European Company and Financial Law Review = Eur Co Financ Law Re European Company and Financial Law Review = Eur. Co. Financ. Law Re. European Conference of Systems-proceedings = Eur Conf Syst European Conference of Systems-proceedings = Eur. Conf. Syst. European Conference On Design Automation = Eur Conf Desig Autom European Conference On Design Automation = Eur. Conf. Desig. Autom. European Conference On Software Maintenance and Reengineering = Eur Con Sftwr Mtnce European Conference On Software Maintenance and Reengineering = Eur. Con. Sftwr. Mtnce. European Conference On Spacecraft Structures, Materials and Mechanical Testing, Proceedings = Esa Spec Publ European Conference On Spacecraft Structures, Materials and Mechanical Testing, Proceedings = Esa. Spec. Publ. European Conference On Spacecraft Structures, Materials and Mechanical Testing, Proceedings = Esa Sp Publ European Conference On Spacecraft Structures, Materials and Mechanical Testing, Proceedings = Esa. Sp. Publ. European Conference On Vehicle Noise and Vibration = Imeche Conf Trans European Conference On Vehicle Noise and Vibration = Imeche. Conf. Trans. European Congress of Mathematics, Vol Ii = Prog Math European Congress of Mathematics, Vol Ii = Prog. Math. European Congress of Mathematics, Vol I = Prog Math European Congress of Mathematics, Vol I = Prog. Math. European Consortium for Mathematics in Industry = Eur Con Mat European Consortium for Mathematics in Industry = Eur. Con. Mat. European Consortium for Mathematics in Industry = Eur Consort Math Ind European Consortium for Mathematics in Industry = Eur. Consort. Math. Ind. European Consortium for Mathematics in Industry = European Consort. Math. Indust. European Constitutional Law Review = Eur Const Law Rev European Constitutional Law Review = Eur. Const. Law Rev. European Context for Assistive Technology = Assist Techn Res Ser European Context for Assistive Technology = Assist. Techn. Res. Ser. European Contributions to American Studies = Eur C Am St European Contributions to American Studies = Eur. C. Am. St. European Convention On Human Rights = Eur Conv Hum Righ European Convention On Human Rights = Eur. Conv. Hum. Righ. European Court of Human Rights Overwhelmed By Applications: Problems and Possible Solutions = Beitr Ausland Offent European Court of Human Rights Overwhelmed By Applications: Problems and Possible Solutions = Beitr. Ausland. Offent. European Court of Justice = Cc Acad Eur Law European Court of Justice = Cc. Acad. Eur. Law. European Culture and The Media: Changing Media, Changing Europe Vol 1 = Changing Media European Culture and The Media: Changing Media, Changing Europe Vol 1 = Changing Media. European Cultures: Studies in Literature and The Arts = Eur Cult St Lit Arts European Cultures: Studies in Literature and The Arts = Eur. Cult. St. Lit. Arts European cytokine network = Eur Cytokine Netw European Cytokine Network=Eur Cytokine Netw;; European Cytokine Network = Eur Cytokine Netw European Cytokine Network = Eur. Cytokine Netw. European Cytokine Network = Eur. Cytokine Network Europe and America Criss-crossing Perspectives 1788-1848 = Ser Int Europe and America Criss-crossing Perspectives 1788-1848 = Ser. Int. Europe and Asia Beyond East and West = Routl Eur Sociol Ass Europe and Asia Beyond East and West = Routl. Eur. Sociol. Ass. Europe and Asia: Regions in Flux = Palgrave Stud Eur Un Europe and Asia: Regions in Flux = Palgrave. Stud. Eur. Un. Europe and Developing Countries in The Globalised Information Economy = Unu Intech Stud New Europe and Developing Countries in The Globalised Information Economy = Unu. Intech. Stud. New. European demographic information bulletin / European Centre for Population Studies = Europ Demogr Inf Bull European Design and Test Conference - Ed&tc 1995, Proceedings = Eur Conf Desig Autom European Design and Test Conference - Ed&tc 1995, Proceedings = Eur. Conf. Desig. Autom. European Design & Test Conference 1996 - Ed&tc 96, Proceedings = Eur Conf Desig Autom European Design & Test Conference 1996 - Ed&tc 96, Proceedings = Eur. Conf. Desig. Autom. European Design & Test Conference - Ed&tc 97, Proceedings = Eur Conf Desig Autom European Design & Test Conference - Ed&tc 97, Proceedings = Eur. Conf. Desig. Autom. Europe and Southeast Asia in The Contemporary World: Mutual Influences and Comparisons = Asia Europ Stud Europe and Southeast Asia in The Contemporary World: Mutual Influences and Comparisons = Asia Europ. Stud. Europe and The Nation State = Eur Nation State Europe and The Nation State = Eur. Nation State Europe and The Politics of Language = Palg Stud Minor Lang Europe and The Politics of Language = Palg. Stud. Minor. Lang. European Early Childhood Education Research Journal = Eur Early Child Educ European Early Childhood Education Research Journal = Eur. Early Child. Educ. European Eating Disorders Review = Eur Eat Disord Rev European Eating Disorders Review = Eur. Eat. Disord. Rev. European eating disorders review : the journal of the Eating Disorders Association = Eur Eat Disord Rev European Economic and Political Issues = Eur Econ Polit Iss European Economic and Political Issues = Eur. Econ. Polit. Iss. European Economic Integration = Contrib To Econ Anal European Economic Integration = Contrib. To. Econ. Anal. European economic review = Eur Econ Rev European Economic Review = Eur Econ Rev European Economic Review = Eur. Econ. Rev. European Economic Review=Europ. Econ. Rev. European Economy in An American Mirror = Routl Stud Mod World European Economy in An American Mirror = Routl. Stud. Mod. World. European Entrepreneurship in The Globalizing Economy = Eur Res Entrep European Entrepreneurship in The Globalizing Economy = Eur. Res. Entrep. European Expansion and Global Interaction = Eur Ex Glob Interact European Expansion and Global Interaction = Eur. Ex. Glob. Interact. European Federation of Corrosion Publications = Eur Fed Corros Publ European Federation of Corrosion Publications = Eur. Fed. Corros. Publ. European Federation of Corrosion Publications = Eur Fed Corr Publ European Federation of Corrosion Publications = Eur. Fed. Corr. Publ. European Finance Review=Europ. Finance Rev. European Financial Management = Eur Financ Manag European Financial Management = Eur. Financ. Manag. European Financial Management=Europ. Finan. Manage. European Financial Markets: The Effects of European Union Membership On Central and Eastern European Equity Markets = Contrib Econ European Financial Markets: The Effects of European Union Membership On Central and Eastern European Equity Markets = Contrib. Econ. European Fine Fibre Network - Occasional Publication = Eur Fin Fib Netw O P European Fine Fibre Network - Occasional Publication = Eur. Fin. Fib. Netw. O. P. European Food Research and Technology = Eur Food Res Technol European Food Research and Technology = Eur. Food Res. Technol. European food research and technology = Zeitschrift fur Lebensmittel-Untersuchung und -Forschung. A|Eur. Food Res. Technol. European foreign affairs review = Eur Foreign Aff Rev European Foreign Policy in An Evolving International System: The Road Towards Convergence = Palgrave Stud Eur Un European Foreign Policy in An Evolving International System: The Road Towards Convergence = Palgrave. Stud. Eur. Un. European Forest Institute Proceedings = Eur Forest Inst Proc European Forest Institute Proceedings = Eur. Forest Inst. Proc. European Forest Institute Research Report = Eur For I Res Rep European Forest Institute Research Report = Eur. For. I. Res. Rep. European Forum On Buprenorphine: A New Substitution Agent for The Treatment of Opioid Addiction = Res Clin Forums European Forum On Buprenorphine: A New Substitution Agent for The Treatment of Opioid Addiction = Res. Clin. Forums. European Geriatric Medicine = Eur Geriatr Med European Geriatric Medicine = Eur. Geriatr. Med. European heart journal = Eur Heart J European Heart Journal=Eur Heart J;; European Heart Journal = Eur Heart J European Heart Journal = Eur. Heart J. European Heart Journal Supplements = Eur Heart J Suppl European Heart Journal Supplements = Eur. Heart J. Suppl. European heart journal supplements : journal of the European Society of Cardiology = Eur Heart J Suppl European Heritage in Economics and The Social Sciences = Eu Her Eco Soc Sci European Heritage in Economics and The Social Sciences = Eu. Her. Eco. Soc. Sci. European Heritage in Economics and The Social Sciences = Eur Herit Econ Soc S European Heritage in Economics and The Social Sciences = Eur. Herit. Econ. Soc. S. European history quarterly = Eur Hist Q European History Quarterly = Eur Hist Q European History Quarterly = Eur. Hist. Q. European human rights law review = Eur Hum Rights Law Rev European Information Society: Taking Geoinformation Science One Step Further = Lec Not Geo Carto European Information Society: Taking Geoinformation Science One Step Further = Lec. Not. Geo. Carto. European Information Society: Taking Geoinformation Science One Step Further = Lect Notes Geoinf Ca European Information Society: Taking Geoinformation Science One Step Further = Lect. Notes. Geoinf. Ca. European Institute of Japanese Studies East Asian Economics and Business Series = Eur I Jpn Stud E Asi European Institute of Japanese Studies East Asian Economics and Business Series = Eur. I. Jpn. Stud. E. Asi. European Institute of Japanese Studies East Asian Economics and Business Series = Eur Inst Jpn St E As European Institute of Japanese Studies East Asian Economics and Business Series = Eur. Inst. Jpn. St. E. As. European Instructional Course Lectures = Eur Instruct Course European Instructional Course Lectures = Eur. Instruct. Course European Instructional Lectures, Vol 10 = Eur Instruct Course European Instructional Lectures, Vol 10 = Eur. Instruct. Course. European Instructional Lectures, Vol 9, 2009 = Eur Instruct Course European Instructional Lectures, Vol 9, 2009 = Eur. Instruct. Course. European Integration and The Cold War = Cold War Hist-routl European Integration and The Cold War = Cold War Hist-routl. European Integration and The Nationalities Question = Routl Innov Polit Th European Integration and The Nationalities Question = Routl. Innov. Polit. Th. European Integration As An Elite Process: The Failure of A Dream = Routl Adv Sociol European Integration As An Elite Process: The Failure of A Dream = Routl. Adv. Sociol. European Integration Online Papers-eiop = Eur Integr Online Pa European Integration Online Papers-eiop = Eur. Integr. Online Pa. European intellectual property review = Eur Intellect Prop Rev Europeanization and Regionalization in The Eu's Enlargement to Central and Eastern Europe: The Myth of Conditionality = One Eur Several Europeanization and Regionalization in The Eu's Enlargement to Central and Eastern Europe: The Myth of Conditionality = One. Eur. Several. Europeanization of British Politics = Palgrave Stud Eur Un Europeanization of British Politics = Palgrave. Stud. Eur. Un. Europeanization of Cyprus: Polity, Policies and Politics = Palgrave Stud Eur Un Europeanization of Cyprus: Polity, Policies and Politics = Palgrave. Stud. Eur. Un. Europeanization of French Foreign Policy: France and The Eu in East Asia = Fr Polit Soc Cult Europeanization of French Foreign Policy: France and The Eu in East Asia = Fr. Polit. Soc. Cult. Europeanization of National Foreign Policy: Continuity and Change in European Crisis Management = Palgrave Stud Eur Un Europeanization of National Foreign Policy: Continuity and Change in European Crisis Management = Palgrave. Stud. Eur. Un. Europeanization of National Policies and Politics of Immigration: Between Autonomy and The European Union = Migrat Minor Citizen Europeanization of National Policies and Politics of Immigration: Between Autonomy and The European Union = Migrat. Minor. Citizen. Europeanization of National Political Parties: Power and Organizational Adaptation = Routl Adv Eur Polit Europeanization of National Political Parties: Power and Organizational Adaptation = Routl. Adv. Eur. Polit. Europeanization of National Security Identity: The Eu and The Changing Security Identities of The Nordic States = Contemp Secur Stud Europeanization of National Security Identity: The Eu and The Changing Security Identities of The Nordic States = Contemp. Secur. Stud. European journal of ageing = Eur J Ageing European Journal of Ageing = Eur J Ageing European Journal of Ageing = Eur. J. Ageing European Journal of Agronomy = Eur J Agron European Journal of Agronomy = Eur. J. Agron. European Journal of Anaesthesiology = Eur J Anaesth European Journal of Anaesthesiology = Eur. J. Anaesth. European journal of anaesthesiology = Eur J Anaesthesiol European Journal of Anaesthesiology=Eur J Anaesthesiol;; European Journal of Anaesthesiology = Eur. J. Anaesthesiol. European journal of anaesthesiology. Supplement = Eur J Anaesthesiol Suppl European Journal of Anaesthesiology. Supplement=Eur J Anaesthesiol Suppl;; European Journal of Anaesthesiology. Supplement = Eur. J. Anaesthesiol. Suppl. European Journal of Applied Mathematics = Eur J Appl Math European Journal of Applied Mathematics = Eur. J. Appl. Math. European Journal of Applied Mathematics = European J. Appl. Math. European Journal of Applied Microbiology and Biotechnology = Eur J Appl Microbiol European Journal of Applied Microbiology and Biotechnology = Eur. J. Appl. Microbiol. European Journal of Applied Microbiology and Biotechnology = Eur. J. Appl. Microbiol. Biotechnol. European Journal of Applied Microbiology = Eur J Appl Microbiol European Journal of Applied Microbiology = Eur. J. Appl. Microbiol. European Journal of Applied Physiology and Occupational Physiology=Eur J Appl Physiol;; European Journal of Applied Physiology and Occupational Physiology = Eur. J. Appl. Physiol. European Journal of Applied Physiology and Occupational Physiology = Eur J Appl Physiol O European Journal of Applied Physiology and Occupational Physiology = Eur. J. Appl. Physiol. O. European journal of applied physiology and occupational physiology = Eur J Appl Physiol Occup Physiol European journal of applied physiology = Eur J Appl Physiol European Journal of Applied Physiology = Eur J Appl Physiol European Journal of Applied Physiology = Eur. J. Appl. Physiol. European Journal of Archaeology = Eur J Archaeol European Journal of Archaeology = Eur. J. Archaeol. European Journal of Basic and Applied Histochemistry = Eur J Basic Appl His European Journal of Basic and Applied Histochemistry = Eur. J. Basic Appl. His. European journal of basic and applied histochemistry = Eur J Basic Appl Histochem European Journal of Basic and Applied Histochemistry = Eur. J. Basic Appl. Histochem. European Journal of Biochemistry=Eur J Biochem;; European Journal of Biochemistry = Eur J Biochem European Journal of Biochemistry = Eur. J. Biochem. European journal of biochemistry / FEBS = Eur J Biochem European Journal of Cancer and Clinical Oncology = Eur. J. Cancer Clin. Oncol. European Journal of Cancer Care (English Language Edition) = Eur. J. Cancer Care (Engl.) European Journal of Cancer Care = Eur J Cancer Care European Journal of Cancer Care = Eur. J. Cancer Care European journal of cancer care = Eur J Cancer Care (Engl) European Journal of Cancer & Clinical Oncology = Eur J Cancer Clin On European Journal of Cancer & Clinical Oncology = Eur. J. Cancer Clin. On. European journal of cancer & clinical oncology = Eur J Cancer Clin Oncol European journal of cancer = Eur J Cancer European Journal of Cancer=Eur J Cancer;; European Journal of Cancer = Eur J Cancer European Journal of Cancer = Eur. J. Cancer European journal of cancer (Oxford, England : 1990) = Eur J Cancer European journal of cancer. Part B, Oral oncology = Eur J Cancer B Oral Oncol European Journal of Cancer. Part B, Oral Oncology = Eur. J. Cancer. B. Oral Oncol. European Journal of Cancer Prevention=Eur J Cancer Prev;; European Journal of Cancer Prevention = Eur J Cancer Prev European Journal of Cancer Prevention = Eur. J. Cancer Prev. European journal of cancer prevention : the official journal of the European Cancer Prevention Organisation (ECP) = Eur J Cancer Prev European journal of cardiology = Eur J Cardiol European Journal of Cardiology = Eur J Cardiol European Journal of Cardiology = Eur. J. Cardiol. European Journal of Cardio-thoracic Surgery = Eur J Cardio-thorac European Journal of Cardio-thoracic Surgery = Eur. J. Cardio-thorac. European Journal of Cardio-Thoracic Surgery=Eur J Cardiothorac Surg;; European Journal of Cardio-Thoracic Surgery = Eur. J. Cardiothorac. Surg. European journal of cardio-thoracic surgery : official journal of the European Association for Cardio-thoracic Surgery = Eur J Cardiothorac Surg European Journal of Cardiovascular Nursing = Eur J Cardiovasc Nur European Journal of Cardiovascular Nursing = Eur. J. Cardiovasc. Nur. European Journal of Cardiovascular Nursing = Eur. J. Cardiovasc. Nurs. European journal of cardiovascular nursing : journal of the Working Group on Cardiovascular Nursing of the European Society of Cardiology = Eur J Cardiovasc Nurs European Journal of Cardiovascular Prevention and Rehabilitation = Eur. J. Cardiovasc. Prev. Rehabil. European journal of cardiovascular prevention and rehabilitation : official journal of the European Society of Cardiology, Working Groups on Epidemiology & Prevention and Cardiac Rehabilitation and Exercise Physiology = Eur J Cardiovasc Prev Rehabil European Journal of Cardiovascular Prevention & Rehabilitation = Eur J Cardiov Prev R European Journal of Cardiovascular Prevention & Rehabilitation = Eur. J. Cardiov. Prev. R. European journal of cell biology = Eur J Cell Biol European Journal of Cell Biology=Eur J Cell Biol;; European Journal of Cell Biology = Eur J Cell Biol European Journal of Cell Biology = Eur. J. Cell Biol. European journal of cell biology. Supplement = Eur J Cell Biol Suppl European Journal of Cell Biology. Supplement=Eur J Cell Biol Suppl;; European Journal of Cell Biology. Supplement = Eur. J. Cell Biol. Suppl. European Journal of Clinical and Biological Research = Eur J Clin Biol Res European Journal of Clinical and Biological Research = Eur. J. Clin. Biol. Res. European Journal of Clinical Chemistry and Clinical Biochemistry = Eur J Clin Chem Clin European Journal of Clinical Chemistry and Clinical Biochemistry = Eur. J. Clin. Chem. Clin. European Journal of Clinical Chemistry and Clinical Biochemistry = Eur. J. Clin. Chem. Clin. Biochem. European journal of clinical chemistry and clinical biochemistry : journal of the Forum of European Clinical Chemistry Societies = Eur J Clin Chem Clin Biochem European journal of clinical investigation = Eur J Clin Invest European Journal of Clinical Investigation=Eur J Clin Invest;; European Journal of Clinical Investigation = Eur J Clin Invest European Journal of Clinical Investigation = Eur. J. Clin. Invest. European Journal of Clinical Microbiology and Infectious Diseases=Eur J Clin Microbiol Infect Dis;; European Journal of Clinical Microbiology and Infectious Diseases = Eur. J. Clin. Microbiol. Infect. Dis. European journal of clinical microbiology = Eur J Clin Microbiol European Journal of Clinical Microbiology = Eur. J. Clin. Microbiol. European Journal of Clinical Microbiology & Infectious Diseases = Eur J Clin Microbiol European Journal of Clinical Microbiology & Infectious Diseases = Eur. J. Clin. Microbiol. European journal of clinical microbiology & infectious diseases : official publication of the European Society of Clinical Microbiology = Eur J Clin Microbiol Infect Dis European journal of clinical nutrition = Eur J Clin Nutr European Journal of Clinical Nutrition=Eur J Clin Nutr;; European Journal of Clinical Nutrition = Eur J Clin Nutr European Journal of Clinical Nutrition = Eur. J. Clin. Nutr. European journal of clinical pharmacology = Eur J Clin Pharmacol European Journal of Clinical Pharmacology=Eur J Clin Pharmacol;; European Journal of Clinical Pharmacology = Eur J Clin Pharmacol European Journal of Clinical Pharmacology = Eur. J. Clin. Pharmacol. European Journal of Cognitive Psychology = Eur J Cogn Psychol European Journal of Cognitive Psychology = Eur. J. Cogn. Psychol. European Journal of Combinatorics = Eur J Combin European Journal of Combinatorics = Eur. J. Combin. European Journal of Combinatorics = European J. Combin. European Journal of Communication = Eur J Commun European Journal of Communication = Eur. J. Commun. European Journal of Contraception and Reproductive Health Care = Eur J Contracep Repr European Journal of Contraception and Reproductive Health Care = Eur. J. Contracep. Repr. European Journal of Contraception and Reproductive Health Care = Eur. J. Contracept. Reprod. Health Care European Journal of Control = Eur J Control European Journal of Control = Eur. J. Control European Journal of Criminology = Eur J Criminol European Journal of Criminology = Eur. J. Criminol. European Journal of Cultural Studies = Eur J Cult Stud European Journal of Cultural Studies = Eur. J. Cult. Stud. European Journal of Dental Education = Eur J Dent Educ European Journal of Dental Education = Eur. J. Dent. Educ. European journal of dental education : official journal of the Association for Dental Education in Europe = Eur J Dent Educ European journal of dermatology : EJD = Eur J Dermatol European Journal of Dermatology = Eur J Dermatol European Journal of Dermatology = Eur. J. Dermatol. European Journal of Developmental Psychology = Eur J Dev Psychol European Journal of Developmental Psychology = Eur. J. Dev. Psychol. European Journal of Development Research=Europ. J. Devel. Res. European Journal of Disorders of Communication = Eur. J. Disord. Commun. European Journal of Disorders of Communication = Eur J Disorder Comm European Journal of Disorders of Communication = Eur. J. Disorder. Comm. European journal of disorders of communication : the journal of the College of Speech and Language Therapists, London = Eur J Disord Commun European Journal of Drug Metabolism and Pharmacokinetics = Eur J Drug Metab Ph European Journal of Drug Metabolism and Pharmacokinetics = Eur. J. Drug Metab. Ph. European journal of drug metabolism and pharmacokinetics = Eur J Drug Metab Pharmacokinet European Journal of Drug Metabolism and Pharmacokinetics=Eur J Drug Metab Pharmacokinet;; European Journal of Drug Metabolism and Pharmacokinetics = Eur. J. Drug Metab. Pharmacokinet. European Journal of Echocardiography = Eur J Echocardiogr European Journal of Echocardiography = Eur. J. Echocardiogr. European journal of echocardiography : the journal of the Working Group on Echocardiography of the European Society of Cardiology = Eur J Echocardiogr European Journal of Education = Eur J Educ European Journal of Education = Eur. J. Educ. European Journal of Emergency Medicine=Eur J Emerg Med;; European Journal of Emergency Medicine = Eur J Emerg Med European Journal of Emergency Medicine = Eur. J. Emerg. Med. European journal of emergency medicine : official journal of the European Society for Emergency Medicine = Eur J Emerg Med European Journal of Endocrinology=Eur J Endocrinol;; European Journal of Endocrinology = Eur J Endocrinol European Journal of Endocrinology = Eur. J. Endocrinol. European journal of endocrinology / European Federation of Endocrine Societies = Eur J Endocrinol European Journal of Engineering Educatino = Eur. J. Eng. Educ. European Journal of English Studies = Eur J Engl Stud European Journal of English Studies = Eur. J. Engl. Stud. European Journal of Entomology = Eur J Entomol European Journal of Entomology = Eur. J. Entomol. European Journal of Environmental and Civil Engineering = Eur J Environ Civ En European Journal of Environmental and Civil Engineering = Eur. J. Environ. Civ. En. European journal of epidemiology = Eur J Epidemiol European Journal of Epidemiology=Eur J Epidemiol;; European Journal of Epidemiology = Eur J Epidemiol European Journal of Epidemiology = Eur. J. Epidemiol. European Journal of Finance = Eur J Financ European Journal of Finance = Eur. J. Financ. European Journal of Finance=Europ. J. Finance European Journal of Forest Pathology = Eur J Forest Pathol European Journal of Forest Pathology = Eur. J. Forest Pathol. European Journal of Forest Pathology = Eur. J. For. Pathol. European Journal of Forest Research = Eur J Forest Res European Journal of Forest Research = Eur. J. Forest Res. European Journal of Forest Research = Eur J For Res European Journal of Forest Research = Eur. J. For. Res. European Journal of Gastroenterology and Hepatology=Eur J Gastroenterol Hepatol;; European Journal of Gastroenterology and Hepatology = Eur. J. Gastroenterol. Hepatol. European Journal of Gastroenterology & Hepatology = Eur J Gastroen Hepat European Journal of Gastroenterology & Hepatology = Eur. J. Gastroen. Hepat. European journal of gastroenterology & hepatology = Eur J Gastroenterol Hepatol European journal of genetics in society : an ethical approach to genetics = Eur J Genet Soc European journal of gynaecological oncology = Eur J Gynaecol Oncol European Journal of Gynaecological Oncology=Eur J Gynaecol Oncol;; European Journal of Gynaecological Oncology = Eur J Gynaecol Oncol European Journal of Gynaecological Oncology = Eur. J. Gynaecol. Oncol. European journal of haematology = Eur J Haematol European Journal of Haematology=Eur J Haematol;; European Journal of Haematology = Eur J Haematol European Journal of Haematology = Eur. J. Haematol. European journal of haematology. Supplementum = Eur J Haematol Suppl European Journal of Haematology. Supplementum=Eur J Haematol Suppl;; European Journal of Haematology. Supplementum = Eur. J. Haematol. Suppl. European Journal of Health Economics = Eur J Health Econ European Journal of Health Economics = Eur. J. Health Econ. European journal of health law = Eur J Health Law European Journal of Heart Failure = Eur J Heart Fail European Journal of Heart Failure = Eur. J. Heart Fail. European journal of heart failure : journal of the Working Group on Heart Failure of the European Society of Cardiology = Eur J Heart Fail European journal of histochemistry : EJH = Eur J Histochem European Journal of Histochemistry=Eur J Histochem;; European Journal of Histochemistry = Eur J Histochem European Journal of Histochemistry = Eur. J. Histochem. European Journal of Horticultural Science = Eur J Hortic Sci European Journal of Horticultural Science = Eur. J. Hortic. Sci. European Journal of Housing Policy=Europ. J. Housing Pol. European journal of human genetics : EJHG = Eur J Hum Genet European Journal of Human Genetics=Eur J Hum Genet;; European Journal of Human Genetics = Eur J Hum Genet European Journal of Human Genetics = Eur. J. Hum. Genet. European Journal of Immunogenetics=Eur J Immunogenet;; European Journal of Immunogenetics = Eur J Immunogenet European Journal of Immunogenetics = Eur. J. Immunogenet. European journal of immunogenetics : official journal of the British Society for Histocompatibility and Immunogenetics = Eur J Immunogenet European journal of immunology = Eur J Immunol European Journal of Immunology=Eur J Immunol;; European Journal of Immunology = Eur J Immunol European Journal of Immunology = Eur. J. Immunol. European Journal of Industrial Engineering = Eur J Ind Eng European Journal of Industrial Engineering = Eur. J. Ind. Eng. European Journal of Industrial Relations = Eur J Ind Relat European Journal of Industrial Relations = Eur. J. Ind. Relat. European Journal of Industrial Relations=Europ. J. Ind. Relat. European Journal of Inflammation = Eur J Inflamm European Journal of Inflammation = Eur. J. Inflamm. European Journal of Information Systems = Eur J Inform Syst European Journal of Information Systems = Eur. J. Inform. Syst. European Journal of Inorganic Chemistry = Eur J Inorg Chem European Journal of Inorganic Chemistry = Eur. J. Inorg. Chem. European Journal of Integrative Medicine = Eur J Integr Med European Journal of Integrative Medicine = Eur. J. Integr. Med. European Journal of Intensive Care Medicine = Eur J Inten Care Med European Journal of Intensive Care Medicine = Eur. J. Inten. Care Med. European journal of intensive care medicine = Eur J Intensive Care Med European Journal of Intensive Care Medicine = Eur. J. Intensive Care Med. European journal of internal medicine = Eur J Intern Med European Journal of Internal Medicine = Eur J Intern Med European Journal of Internal Medicine = Eur. J. Intern. Med. European Journal of International Law = Eur J Int Law European Journal of International Law = Eur. J. Int. Law European Journal of International Management = Eur J Int Manag European Journal of International Management = Eur. J. Int. Manag. European Journal of International Relations = Eur J Int Relat European Journal of International Relations = Eur. J. Int. Relat. European Journal of International Relations=Europ. J. Int. Relat. European Journal of Jewish Studies = Eur J Jew Stud European Journal of Jewish Studies = Eur. J. Jew. Stud. European Journal of Law and Economics = Eur J Law Econ European Journal of Law and Economics = Eur. J. Law Econ. European Journal of Law and Economics=Europ. J. Law Econ. European Journal of Lipid Science and Technology = Eur J Lipid Sci Tech European Journal of Lipid Science and Technology = Eur. J. Lipid Sci. Tech. European Journal of Lipid Science and Technology = Eur. J. Lipid Sci. Technol. European journal of marketing = Eur J Mark European Journal of Marketing = Eur J Marketing European Journal of Marketing = Eur. J. Marketing European journal of mass spectrometry (Chichester, England) = Eur J Mass Spectrom (Chichester, Eng) European Journal of Mass Spectrometry = Eur J Mass Spectrom European Journal of Mass Spectrometry = Eur. J. Mass Spectrom. European Journal of Mechanics A-solids = Eur J Mech A-solid European Journal of Mechanics A-solids = Eur. J. Mech. A-solid. European Journal of Mechanics - A/Solids = Eur. J. Mech. A. Solids European Journal of Mechanics B-fluids = Eur J Mech B-fluid European Journal of Mechanics B-fluids = Eur. J. Mech. B-fluid. European Journal of Mechanics - B/Fluids = Eur. J. Mech. B. Fluids European Journal of Mechanics = Eur. J. Mech. A Solids European Journal of Mechanics = Eur. J. Mech. B Fluids European Journal of Mechanics = European J. Mech. A Solids European Journal of Mechanics = European J. Mech. B Fluids European journal of medical genetics = Eur J Med Genet European Journal of Medical Genetics = Eur J Med Genet European Journal of Medical Genetics = Eur. J. Med. Genet. European journal of medical research = Eur J Med Res European Journal of Medical Research=Eur J Med Res;; European Journal of Medical Research = Eur J Med Res European Journal of Medical Research = Eur. J. Med. Res. European journal of medicinal chemistry = Eur J Med Chem European Journal of Medicinal Chemistry = Eur J Med Chem European Journal of Medicinal Chemistry = Eur. J. Med. Chem. European Journal of Medicine = Eur. J. Med. European Journal of Migration and Law = Eur J Migr Law European Journal of Migration and Law = Eur. J. Migr. Law European Journal of Mineralogy = Eur J Mineral European Journal of Mineralogy = Eur. J. Mineral. European journal of morphology = Eur J Morphol European Journal of Morphology=Eur J Morphol;; European Journal of Morphology = Eur J Morphol European Journal of Morphology = Eur. J. Morphol. European Journal of Neurology = Eur J Neurol European Journal of Neurology = Eur. J. Neurol. European journal of neurology : the official journal of the European Federation of Neurological Societies = Eur J Neurol European Journal of Neuroscience=Eur J Neurosci;; European Journal of Neuroscience = Eur J Neurosci European Journal of Neuroscience = Eur. J. Neurosci. European Journal of Nuclear Medicine and Molecular Imaging = Eur J Nucl Med Mol I European Journal of Nuclear Medicine and Molecular Imaging = Eur. J. Nucl. Med. Mol. I. European journal of nuclear medicine and molecular imaging = Eur J Nucl Med Mol Imaging European Journal of Nuclear Medicine and Molecular Imaging = Eur. J. Nucl. Med. Mol. Imaging European journal of nuclear medicine = Eur J Nucl Med European Journal of Nuclear Medicine=Eur J Nucl Med;; European Journal of Nuclear Medicine = Eur J Nucl Med European Journal of Nuclear Medicine = Eur. J. Nucl. Med. European journal of nutrition = Eur J Nutr European Journal of Nutrition = Eur J Nutr European Journal of Nutrition = Eur. J. Nutr. European journal of obstetrics and gynecology = Eur J Obstet Gynecol European journal of obstetrics, gynecology, and reproductive biology = Eur J Obstet Gynecol Reprod Biol European Journal of Obstetrics, Gynecology, and Reproductive Biology=Eur J Obstet Gynecol Reprod Biol;; European Journal of Obstetrics, Gynecology, and Reproductive Biology = Eur. J. Obstet. Gynecol. Reprod. Biol. European Journal of Obstetrics & Gynecology and Reproductive Biology = Eur J Obstet Gyn R B European Journal of Obstetrics & Gynecology and Reproductive Biology = Eur. J. Obstet. Gyn. R. B. European Journal of Obstetrics Gynecology and Reproductive Biology = Eur J Obstet Gyn R B European Journal of Obstetrics Gynecology and Reproductive Biology = Eur. J. Obstet. Gyn. R. B. European Journal of Oncology = Eur J Oncol European Journal of Oncology = Eur. J. Oncol. European Journal of Oncology Nursing = Eur J Oncol Nurs European Journal of Oncology Nursing = Eur. J. Oncol. Nurs. European journal of oncology nursing : the official journal of European Oncology Nursing Society = Eur J Oncol Nurs European journal of operational research = Eur J Oper Res European Journal of Operational Research = Eur J Oper Res European Journal of Operational Research = Eur. J. Oper. Res. European journal of ophthalmology = Eur J Ophthalmol European Journal of Ophthalmology=Eur J Ophthalmol;; European Journal of Ophthalmology = Eur J Ophthalmol European Journal of Ophthalmology = Eur. J. Ophthalmol. European Journal of Oral Implantology = Eur J Oral Implantol European Journal of Oral Implantology = Eur. J. Oral Implantol. European journal of oral sciences = Eur J Oral Sci European Journal of Oral Sciences=Eur J Oral Sci;; European Journal of Oral Sciences = Eur J Oral Sci European Journal of Oral Sciences = Eur. J. Oral Sci. European Journal of Organic Chemistry = Eur J Org Chem European Journal of Organic Chemistry = Eur. J. Org. Chem. European journal of organic chemistry = European J Org Chem European journal of orthodontics = Eur J Orthod European Journal of Orthodontics=Eur J Orthod;; European Journal of Orthodontics = Eur. J. Orthod. European Journal of Orthodontics = Eur J Orthodont European Journal of Orthodontics = Eur. J. Orthodont. European Journal of Orthopaedic Surgery and Traumatology = Eur J Orthop Surg Tr European Journal of Orthopaedic Surgery and Traumatology = Eur. J. Orthop. Surg. Tr. European Journal of Paediatric Dentistry = Eur J Paediatr Dent European Journal of Paediatric Dentistry = Eur. J. Paediatr. Dent. European journal of paediatric dentistry : official journal of European Academy of Paediatric Dentistry = Eur J Paediatr Dent European journal of paediatric neurology : EJPN : official journal of the European Paediatric Neurology Society = Eur J Paediatr Neurol European Journal of Paediatric Neurology = Eur J Paediatr Neuro European Journal of Paediatric Neurology = Eur. J. Paediatr. Neuro. European Journal of Paediatric Neurology = Eur. J. Paediatr. Neurol. European Journal of Pain = Eur J Pain European Journal of Pain = Eur. J. Pain European journal of pain (London, England) = Eur J Pain European Journal of Pain-london = Eur J Pain-london European Journal of Pain-london = Eur. J. Pain-london European Journal of Pain Supplements = Eur J Pain Supp European Journal of Pain Supplements = Eur. J. Pain Supp. European journal of pediatrics = Eur J Pediatr European Journal of Pediatrics=Eur J Pediatr;; European Journal of Pediatrics = Eur J Pediatr European Journal of Pediatrics = Eur. J. Pediatr. European Journal of Pediatric Surgery=Eur J Pediatr Surg;; European Journal of Pediatric Surgery = Eur J Pediatr Surg European Journal of Pediatric Surgery = Eur. J. Pediatr. Surg. European Journal of Personality = Eur J Personality European Journal of Personality = Eur. J. Personality European Journal of Pharmaceutical Sciences = Eur J Pharm Sci European Journal of Pharmaceutical Sciences = Eur. J. Pharm. Sci. European journal of pharmaceutical sciences : official journal of the European Federation for Pharmaceutical Sciences = Eur J Pharm Sci European Journal of Pharmaceutics and Biopharmaceutics = Eur J Pharm Biopharm European Journal of Pharmaceutics and Biopharmaceutics = Eur. J. Pharm. Biopharm. European journal of pharmaceutics and biopharmaceutics : official journal of Arbeitsgemeinschaft fur Pharmazeutische Verfahrenstechnik e.V = Eur J Pharm Biopharm European Journal of Pharmacology: Environmental Toxicology and Pharmacology = Eur. J. Pharmacol. Environ. Toxicol. Pharm. European Journal of Pharmacology-environmental Toxicology and Pharmacology Section = Eur J Pharm-environ European Journal of Pharmacology-environmental Toxicology and Pharmacology Section = Eur. J. Pharm-environ. European journal of pharmacology = Eur J Pharmacol European Journal of Pharmacology=Eur J Pharmacol;; European Journal of Pharmacology = Eur J Pharmacol European Journal of Pharmacology = Eur. J. Pharmacol. European Journal of Pharmacology: Molecular Pharmacology = Eur. J. Pharmacol. Mol. Pharmacol. European Journal of Pharmacology, Molecular Pharmacology Section = Eur. J. Pharmacol., Mol. Pharmacol. Sect. European Journal of Pharmacology-molecular Pharmacology Section = Eur J Pharm-molec Ph European Journal of Pharmacology-molecular Pharmacology Section = Eur. J. Pharm-molec. Ph. European Journal of Philosophy = Eur J Philos European Journal of Philosophy = Eur. J. Philos. European Journal of Phycology = Eur J Phycol European Journal of Phycology = Eur. J. Phycol. European Journal of Physical and Rehabilitation Medicine = Eur J Phys Rehab Med European Journal of Physical and Rehabilitation Medicine = Eur. J. Phys. Rehab. Med. European Journal of Physics = Eur J Phys European Journal of Physics = Eur. J. Phys. European Journal of Physics = European J. Phys. European Journal of Plant Pathology = Eur J Plant Pathol European Journal of Plant Pathology = Eur. J. Plant Pathol. European Journal of Plastic Surgery = Eur J Plast Surg European Journal of Plastic Surgery = Eur. J. Plast. Surg. European Journal of Political Economy = Eur J Polit Econ European Journal of Political Economy = Eur. J. Polit. Econ. European Journal of Political Economy=Europ. J. Polit. Economy European journal of political research = Eur J Polit Res European Journal of Political Research = Eur J Polit Res European Journal of Political Research = Eur. J. Polit. Res. European Journal of Population-revue Europeenne De Demographie = Eur J Popul European Journal of Population-revue Europeenne De Demographie = Eur. J. Popul. European Journal of Prosthodontics and Restorative Dentistry = Eur. J. Prosthodont. Restor. Dent. European journal of protistology = Eur J Protistol European Journal of Protistology = Eur J Protistol European Journal of Protistology = Eur. J. Protistol. European Journal of Psychiatry = Eur J Psychiat European Journal of Psychiatry = Eur. J. Psychiat. European Journal of Psychological Assessment = Eur J Psychol Assess European Journal of Psychological Assessment = Eur. J. Psychol. Assess. European Journal of Psychology of Education = Eur J Psychol Educ European Journal of Psychology of Education = Eur. J. Psychol. Educ. European journal of public health = Eur J Public Health European Journal of Public Health = Eur J Public Health European Journal of Public Health = Eur. J. Public Health European Journal of Pure and Applied Mathematics = Eur. J. Pure Appl. Math. European journal of radiology = Eur J Radiol European Journal of Radiology=Eur J Radiol;; European Journal of Radiology = Eur J Radiol European Journal of Radiology = Eur. J. Radiol. European journal of respiratory diseases = Eur J Respir Dis European Journal of Respiratory Diseases = Eur J Respir Dis European Journal of Respiratory Diseases = Eur. J. Respir. Dis. European journal of respiratory diseases. Supplement = Eur J Respir Dis Suppl European Journal of Respiratory Diseases. Supplement = Eur. J. Respir. Dis. Suppl. European Journal of Rheumatology and Inflammation = Eur J Rheumatol Infl European Journal of Rheumatology and Inflammation = Eur. J. Rheumatol. Infl. European journal of rheumatology and inflammation = Eur J Rheumatol Inflamm European Journal of Rheumatology and Inflammation=Eur J Rheumatol Inflamm;; European Journal of Rheumatology and Inflammation = Eur. J. Rheumatol. Inflamm. European Journal of Science and Theology = Eur J Sci Theol European Journal of Science and Theology = Eur. J. Sci. Theol. European Journal of Science Education = Eur J Sci Educ European Journal of Science Education = Eur. J. Sci. Educ. European journal of sexually transmitted diseases = Eur J Sex Transm Dis European Journal of Sexually Transmitted Diseases = Eur J Sex Transm Dis European Journal of Sexually Transmitted Diseases = Eur. J. Sex. Transm. Dis. European journal of social psychology = Eur J Soc Psychol European Journal of Social Psychology = Eur J Soc Psychol European Journal of Social Psychology = Eur. J. Soc. Psychol. European Journal of Social Theory = Eur J Soc Theory European Journal of Social Theory = Eur. J. Soc. Theory European Journal of Social Work = Eur J Soc Work European Journal of Social Work = Eur. J. Soc. Work European Journal of Soil Biology = Eur J Soil Biol European Journal of Soil Biology = Eur. J. Soil Biol. European Journal of Soil Science = Eur J Soil Sci European Journal of Soil Science = Eur. J. Soil Sci. European Journal of Solid State and Inorganic Chemistry = Eur. J. Solid State Inorg. Chem. European Journal of Solid State and Inorganic Chemistry = Eur J Sol State Inor European Journal of Solid State and Inorganic Chemistry = Eur. J. Sol. State Inor. European Journal of Sport Science = Eur J Sport Sci European Journal of Sport Science = Eur. J. Sport Sci. European Journal of Sports Traumatology and Related Research = Eur J Sport Trauma R European Journal of Sports Traumatology and Related Research = Eur. J. Sport. Trauma. R. European Journal of Surgery=Eur J Surg;; European Journal of Surgery = Eur J Surg European Journal of Surgery = Eur. J. Surg. European Journal of Surgery. Supplement = Eur. J. Surg. Suppl. European Journal of Surgical Oncology=Eur J Surg Oncol;; European Journal of Surgical Oncology = Eur J Surg Oncol European Journal of Surgical Oncology = Eur. J. Surg. Oncol. European journal of surgical oncology : the journal of the European Society of Surgical Oncology and the British Association of Surgical Oncology = Eur J Surg Oncol European Journal of Teacher Education = Eur J Teach Educ European Journal of Teacher Education = Eur. J. Teach. Educ. European Journal of The History of Economic Thought = Eur J Hist Econ Thou European Journal of The History of Economic Thought = Eur. J. Hist. Econ. Thou. European Journal of the History of Economic Thought=Europ. J. Hist. Econ. Thought European Journal of Toxicology and Environmental Hygiene = Eur J Toxicol Env Hy European Journal of Toxicology and Environmental Hygiene = Eur. J. Toxicol. Env. Hy. European Journal of Toxicology and Environmental Hygiene = Eur. J. Toxicol. Environ. Hyg. European journal of toxicology and environmental hygiene. Journal europeen de toxicologie = Eur J Toxicol Environ Hyg European journal of toxicology and hygiene of environment = Eur J Toxicol Hyg Environ European Journal of Toxicology and Hygiene of Environment = Eur. J. Toxicol. Hyg. Environ. European journal of toxicology = Eur J Toxicol European Journal of Toxicology = Eur. J. Toxicol. European Journal of Transport and Infrastructure Research = Eur J Transp Infrast European Journal of Transport and Infrastructure Research = Eur. J. Transp. Infrast. European Journal of Trauma and Emergency Surgery = Eur J Trauma Emerg S European Journal of Trauma and Emergency Surgery = Eur. J. Trauma Emerg. S. European Journal of Ultrasound = Eur. J. Ultrasound European journal of ultrasound : official journal of the European Federation of Societies for Ultrasound in Medicine and Biology = Eur J Ultrasound European Journal of Vascular and Endovascular Surgery = Eur J Vasc Endovasc European Journal of Vascular and Endovascular Surgery = Eur. J. Vasc. Endovasc. European Journal of Vascular and Endovascular Surgery=Eur J Vasc Endovasc Surg;; European Journal of Vascular and Endovascular Surgery = Eur. J. Vasc. Endovasc. Surg. European journal of vascular and endovascular surgery : the official journal of the European Society for Vascular Surgery = Eur J Vasc Endovasc Surg European journal of vascular surgery = Eur J Vasc Surg European Journal of Vascular Surgery = Eur. J. Vasc. Surg. European Journal of Vascular Surgery = Eur J Vascular Surg European Journal of Vascular Surgery = Eur. J. Vascular Surg. European Journal of Wildlife Research = Eur J Wildlife Res European Journal of Wildlife Research = Eur. J. Wildlife Res. European Journal of Womens Studies = Eur J Womens Stud European Journal of Womens Studies = Eur. J. Womens Stud. European Journal of Wood and Wood Products = Eur J Wood Wood Prod European Journal of Wood and Wood Products = Eur. J. Wood Wood Prod. European Journal of Work and Organizational Psychology = Eur J Work Organ Psy European Journal of Work and Organizational Psychology = Eur. J. Work Organ. Psy. European Journal On Criminal Policy and Research = Eur J Crim Policy Re European Journal On Criminal Policy and Research = Eur. J. Crim. Policy Re. European Labour Market = Aiel Ser Labour Econ European Labour Market = Aiel. Ser. Labour Econ. European Law Journal = Eur Law J European Law Journal = Eur. Law J. European law review = Eur Law Rev European Law Review = Eur Law Rev European Law Review = Eur. Law Rev. European Legacy-toward New Paradigms = Eur Leg European Legacy-toward New Paradigms = Eur. Leg. European Lithosphere Dynamics = Geol Soc Mem European Lithosphere Dynamics = Geol. Soc. Mem. European Magnetic Materials and Applications = Mater Sci Forum European Magnetic Materials and Applications = Mater. Sci. Forum. European Management Journal = Eur Manag J European Management Journal = Eur. Manag. J. European Manual of Medicine = Eur Man Med European Manual of Medicine = Eur. Man. Med. European Mass Spectrometry = Eur Mass Spectrom European Mass Spectrometry = Eur. Mass Spectrom. European Materials Research Society Monographs = E Mrs Mongr European Materials Research Society Monographs = E. Mrs. Mongr. European Materials Research Society Symposia-proceedings = Eur Mat Res European Materials Research Society Symposia-proceedings = Eur. Mat. Res. European Media Monographs = Eur Media M European Media Monographs = Eur. Media M. European Medicines Research = Biom Hlth R European Medicines Research = Biom. Hlth. R. European Meetings On Educational Research = Eur Educ R European Meetings On Educational Research = Eur. Educ. R. European Metropolitan Housing Markets = Adv Spat Sci European Metropolitan Housing Markets = Adv. Spat. Sci. European Microwave Integrated Circuits Conference - Proceedings = Eur Microw Integrat European Microwave Integrated Circuits Conference - Proceedings = Eur. Microw. Integrat. European Molecular Biology Organization Journal = Eur. Mol. Biol. Organ. J. European Monographs = Euro Monogr European Monographs = Euro. Monogr. European Neogene Mammal Chronology = Nato Adv Sci I A-lif European Neogene Mammal Chronology = Nato. Adv. Sci. I. A-lif. European Network On Longitudinal Studies On Individual Development = Eur Network European Network On Longitudinal Studies On Individual Development = Eur. Network European neurology = Eur Neurol European Neurology=Eur Neurol;; European Neurology = Eur Neurol European Neurology = Eur. Neurol. European Neuropsychopharmacology = Eur Neuropsychopharm European Neuropsychopharmacology = Eur. Neuropsychopharm. European Neuropsychopharmacology=Eur Neuropsychopharmacol;; European Neuropsychopharmacology = Eur. Neuropsychopharmacol. European neuropsychopharmacology : the journal of the European College of Neuropsychopharmacology = Eur Neuropsychopharmacol European Nutrition and Health Report 2004 = Forum Nutr European Nutrition and Health Report 2004 = Forum. Nutr. European Nutrition and Health Report 2009 = Forum Nutr European Nutrition and Health Report 2009 = Forum. Nutr. European Paediatric Haematology and Oncology = Eur Paediatr Haemat European Paediatric Haematology and Oncology = Eur. Paediatr. Haemat. European Physical Education Review = Eur Phys Educ Rev European Physical Education Review = Eur. Phys. Educ. Rev. European Physical Journal A = Eur Phys J A European Physical Journal A = Eur. Phys. J. A European Physical Journal A: Hadrons and Nuclei = Eur. Phys. J. A European Physical Journal-applied Physics = Eur Phys J-appl Phys European Physical Journal-applied Physics = Eur. Phys. J-appl. Phys. European Physical Journal Applied Physics = Eur. Phys. J. Appl. Phys. European Physical Journal B: Condensed Matter and Complex Systems = Eur. Phys. J. B European Physical Journal B = Eur Phys J B European Physical Journal B = Eur. Phys. J. B European Physical Journal C = Eur Phys J C European Physical Journal C = Eur. Phys. J. C European Physical Journal C: Particles and Fields = Eur. Phys. J. C European Physical Journal D: Atomic, Molecular, Optical and Plasma Physics = Eur. Phys. J. D European Physical Journal D = Eur Phys J D European Physical Journal D = Eur. Phys. J. D European Physical Journal E = Eur Phys J E European Physical Journal E = Eur. Phys. J. E European Physical Journal E: Soft Matter = Eur. Phys. J. E European Physical Journal = Eur. Phys. J. B European Physical Journal H = Eur Phys J H European Physical Journal H = Eur. Phys. J. H European Physical Journal H: Historical Perspectives on Contemporary Physics = Eur. Phys. J. H European Physical Journal Plus = Eur Phys J Plus European Physical Journal Plus = Eur. Phys. J. Plus European Physical Journal-special Topics = Eur Phys J-spec Top European Physical Journal-special Topics = Eur. Phys. J-spec. Top. European Planning Studies = Eur Plan Stud European Planning Studies = Eur. Plan. Stud. European Policy of The German Social Democrats: Interpreting A Changing World = New Perspect Ger Stu European Policy of The German Social Democrats: Interpreting A Changing World = New. Perspect. Ger. Stu. European Political Economic and Security Issues = Eur Polit Econ Secur European Political Economic and Security Issues = Eur. Polit. Econ. Secur. European Political Science = Eur Polit Sci European Political Science = Eur. Polit. Sci. European Polymer Journal = Eur Polym J European Polymer Journal = Eur. Polym. J. European Population, Vol 1 = Congr Coll European Population, Vol 1 = Congr. Coll. European Potato Journal = Eur. Potato J. European Powder Diffraction Epdic 8 = Mater Sci Forum European Powder Diffraction Epdic 8 = Mater. Sci. Forum. European Powder Diffraction: Epdic Iv, Pts 1 and 2 = Mater Sci Forum European Powder Diffraction: Epdic Iv, Pts 1 and 2 = Mater. Sci. Forum. European Powder Diffraction, Pts 1 and 2 = Mater Sci Forum European Powder Diffraction, Pts 1 and 2 = Mater. Sci. Forum. European Psychiatry = Eur Psychiat European Psychiatry = Eur. Psychiat. European psychiatry : the journal of the Association of European Psychiatrists = Eur Psychiatry European Psychologist = Eur Psychol European Psychologist = Eur. Psychol. European Quality Assurance Network newsletter / EuroQuan = Eur Qual Assur Netw Newsl European Quality Assurance Network Newsletter = Eur. Qual. Assur. Netw. Newsl. European Radar Conference-eurad = Europ Radar Conf European Radar Conference-eurad = Europ. Radar Conf. European Radar Conference Eurad = Europ Radar Conf European Radar Conference Eurad = Europ. Radar Conf. European radiology = Eur Radiol European Radiology=Eur Radiol;; European Radiology = Eur Radiol European Radiology = Eur. Radiol. European Research in An International Context = Eur Res Int European Research in An International Context = Eur. Res. Int. European Research in Entrepreneurship = Eur Res Entrep European Research in Entrepreneurship = Eur. Res. Entrep. European Research in Regional Science = Eur Res R S European Research in Regional Science = Eur. Res. R. S. European Research Reloaded-cooperation and Europeanized States Integration Among Europeanized States = Libr Public Policy P European Research Reloaded-cooperation and Europeanized States Integration Among Europeanized States = Libr. Public. Policy. P. European Respiratory Journal=Eur Respir J;; European Respiratory Journal = Eur Respir J European Respiratory Journal = Eur. Respir. J. European Respiratory Journal. Supplement=Eur Respir J Suppl;; European Respiratory Journal. Supplement = Eur. Respir. J. Suppl. European Respiratory Monograph = Eur Respir Monogr European Respiratory Monograph = Eur. Respir. Monogr. European Responses to Globalization = Contemp Stud Econ Fi European Responses to Globalization = Contemp. Stud. Econ. Fi. European review (Chichester, England) = Eur Rev European Review for Medical and Pharmacological Sciences = Eur Rev Med Pharmaco European Review for Medical and Pharmacological Sciences = Eur. Rev. Med. Pharmaco. European review for medical and pharmacological sciences = Eur Rev Med Pharmacol Sci European Review for Medical and Pharmacological Sciences = Eur. Rev. Med. Pharmacol. Sci. European Review For Medical and Pharmacological Sciences=Eur Rev Med Pharmacol Sci;; European Review of Aging and Physical Activity = Eur Rev Aging Phys A European Review of Aging and Physical Activity = Eur. Rev. Aging Phys. A. European Review of Agricultural Economics=Europ. Rev. Agr. Econ. European Review of Agricultural Economics = Eur Rev Agric Econ European Review of Agricultural Economics = Eur. Rev. Agric. Econ. European Review of Applied Psychology-revue Europeenne De Psychologie Appliquee = Eur Rev Appl Psychol European Review of Applied Psychology-revue Europeenne De Psychologie Appliquee = Eur. Rev. Appl. Psychol. European Review of Economic History=Europ. Rev. Econ. Hist. European Review of Economic History = Eur Rev Econ Hist European Review of Economic History = Eur. Rev. Econ. Hist. European Review of History-revue Europeenne D Histoire = Eur Rev Hist European Review of History-revue Europeenne D Histoire = Eur. Rev. Hist. European Review of History. Revue européenne d'histoire = EurRHist European Review of Social Psychology = Eur Rev Soc Psychol European Review of Social Psychology = Eur. Rev. Soc. Psychol. European Robotics Symposium 2006 = Springer Trac Adv Ro European Robotics Symposium 2006 = Springer. Trac. Adv. Ro. European Robotics Symposium 2006 = Spr Tra Adv Robot European Robotics Symposium 2006 = Spr. Tra. Adv. Robot. European Robotics Symposium 2008 = Springer Trac Adv Ro European Robotics Symposium 2008 = Springer. Trac. Adv. Ro. European Robotics Symposium 2008 = Spr Tra Adv Robot European Robotics Symposium 2008 = Spr. Tra. Adv. Robot. European School of Oncology Scientific Updates = Eso Sci Updates European School of Oncology Scientific Updates = Eso. Sci. Updates European Security After The Cold War, Part I = Adelp Pap European Security After The Cold War, Part I = Adelp. Pap. European Security After The Cold War, Part Ii = Adelp Pap European Security After The Cold War, Part Ii = Adelp. Pap. European Security and Defence Policy = Routl Adv Eur Polit European Security and Defence Policy = Routl. Adv. Eur. Polit. European Security Governance = Contemp Secur Stud European Security Governance = Contemp. Secur. Stud. European Security in A Global Context = Contemp Secur Stud European Security in A Global Context = Contemp. Secur. Stud. European Security in The Twenty-first Century = Contemp Secur Stud European Security in The Twenty-first Century = Contemp. Secur. Stud. European Series in Applied and Industrial Mathematics = ESAIM Probab. Statist. European Societies = Eur Soc European Societies = Eur. Soc. European sociological review = Eur Sociol Rev European Sociological Review = Eur Sociol Rev European Sociological Review = Eur. Sociol. Rev. European Space Agency Scientific and Technical Reports = Eur Space Agency Sci European Space Agency Scientific and Technical Reports = Eur. Space Agency Sci. European Space Agency Special Publication SP = Eur. Space Agency Spec. Publ. SP European Spectroscopy News = Eur Spectrosc News European Spectroscopy News = Eur. Spectrosc. News European Spine Journal=Eur Spine J;; European Spine Journal = Eur Spine J European Spine Journal = Eur. Spine J. European spine journal : official publication of the European Spine Society, the European Spinal Deformity Society, and the European Section of the Cervical Spine Research Society = Eur Spine J European Sport Management Quarterly = Eur Sport Manag Q European Sport Management Quarterly = Eur. Sport Manag. Q. European Studies in American History = Eur Stud Amer Hist European Studies in American History = Eur. Stud. Amer. Hist. European Studies in Science History and The Arts = Eur St Sci Hist Arts European Studies in Science History and The Arts = Eur. St. Sci. Hist. Arts European Studies of Population = Eur Stud Popul European Studies of Population = Eur. Stud. Popul. European Studies of Population = Eur Stud Populat European Studies of Population = Eur. Stud. Populat. European Studies On Multilingualism = Eur St Multilin European Studies On Multilingualism = Eur. St. Multilin. European studies review = Eur Stud Rev European Studies Review = Eur Stud Rev European Studies Review = Eur. Stud. Rev. European Surgery-acta Chirurgica Austriaca = Eur Surg European Surgery-acta Chirurgica Austriaca = Eur. Surg. European surgical research. Europaische chirurgische Forschung. Recherches chirurgicales europeennes = Eur Surg Res European Surgical Research=Eur Surg Res;; European Surgical Research = Eur Surg Res European Surgical Research = Eur. Surg. Res. European Symposium On Computer Aided Process Engineering - 12 = Comp Aid Ch European Symposium On Computer Aided Process Engineering - 12 = Comp. Aid. Ch. European Symposium On Computer Aided Process Engineering - 12 = Comput-aided Chem En European Symposium On Computer Aided Process Engineering - 12 = Comput-aided. Chem. En. European Symposium On Computer Aided Process Engineering - 13 = Comp Aid Ch European Symposium On Computer Aided Process Engineering - 13 = Comp. Aid. Ch. European Symposium On Computer Aided Process Engineering - 13 = Comput-aided Chem En European Symposium On Computer Aided Process Engineering - 13 = Comput-aided. Chem. En. European Symposium On Computer-aided Process Engineering - 14 = Comp Aid Ch European Symposium On Computer-aided Process Engineering - 14 = Comp. Aid. Ch. European Symposium On Computer-aided Process Engineering - 14 = Comput-aided Chem En European Symposium On Computer-aided Process Engineering - 14 = Comput-aided. Chem. En. European Symposium On Computer-aided Process Engineering-15, 20a and 20b = Comp Aid Ch European Symposium On Computer-aided Process Engineering-15, 20a and 20b = Comp. Aid. Ch. European Symposium On Computer-aided Process Engineering-15, 20a and 20b = Comput-aided Chem En European Symposium On Computer-aided Process Engineering-15, 20a and 20b = Comput-aided. Chem. En. European Tort Law 2004 = Tort Insur Law European Tort Law 2004 = Tort Insur. Law European Tort Law 2005 = Tort Insurance Law European Tort Law 2005 = Tort Insurance. Law European Tort Law 2006 = Tort Insur Law European Tort Law 2006 = Tort Insur. Law European Tort Law 2008 = Tort Insurance Law European Tort Law 2008 = Tort Insurance. Law European Tort Law 2008 = Tort Insur Law European Tort Law 2008 = Tort Insur. Law European Transactions On Electrical Power Engineering = Eur T Electr Pow European Transactions On Electrical Power Engineering = Eur. T. Electr. Pow. European Transactions On Electrical Power = Eur T Electr Power European Transactions On Electrical Power = Eur. T. Electr. Power European Transactions on Electrical Power = Eur. Trans. Electr. Power European Transactions on Telecommunications = Eur. Trans. Telecommun. European Transactions On Telecommunications = Eur T Telecommun European Transactions On Telecommunications = Eur. T. Telecommun. European Union and Global Democracy = Poli Sci Res Cent Fo European Union and Global Democracy = Poli. Sci. Res. Cent. Fo. European Union and Global Governance = Routl Garn Ser Eur W European Union and Global Governance = Routl. Garn. Ser. Eur. W. European Union and Global Social Change: A Critical Geopolitical-economic Analysis = Routl Adv Eur Polit European Union and Global Social Change: A Critical Geopolitical-economic Analysis = Routl. Adv. Eur. Polit. European Union and International Development: The Politics of Foreign Aid = Routl Uaces Contemp European Union and International Development: The Politics of Foreign Aid = Routl. Uaces. Contemp. European Union and The Asia-pacific: Media, Public and Elite Perceptions of The Eu = Routl Uaces Contemp European Union and The Asia-pacific: Media, Public and Elite Perceptions of The Eu = Routl. Uaces. Contemp. European Union and The Making of A Wider Northern Europe = Routl Adv Eur Polit European Union and The Making of A Wider Northern Europe = Routl. Adv. Eur. Polit. European Union and The Social Dimension of Globalization - How The Eu Influences The World = Routl Garn Ser Eur W European Union and The Social Dimension of Globalization - How The Eu Influences The World = Routl. Garn. Ser. Eur. W. European Union As A Leader in International Climate Change Politics = Routl Uaces Contemp European Union As A Leader in International Climate Change Politics = Routl. Uaces. Contemp. European Union At The United Nations: Intersecting Multilateralisms = Palgrave Stud Eur Un European Union At The United Nations: Intersecting Multilateralisms = Palgrave. Stud. Eur. Un. European Union = Glob Inst European Union = Glob. Inst. European Union Intergovernmental Conferences = Routl Uaces Contemp European Union Intergovernmental Conferences = Routl. Uaces. Contemp. European Union: Multidisciplinary Views = Filibrary Series European Union: Multidisciplinary Views = Filibrary. Series. European Union Peacebuilding and Policing: Governance and The European Security and Defence Policy = Routl Adv Eur Polit European Union Peacebuilding and Policing: Governance and The European Security and Defence Policy = Routl. Adv. Eur. Polit. European Union Politics = Eur Union Polit European Union Politics = Eur. Union Polit. European Union's Eco-management and Audit Scheme (emas) = Eco-effic Ind Sci European Union's Eco-management and Audit Scheme (emas) = Eco-effic. Ind. Sci. European Union Security Dynamics - in The New National Interest = New Secur Chall European Union Security Dynamics - in The New National Interest = New Secur. Chall. European Union's Roles in International Politics: Concepts and Analysis = Routl Ecpr Stud Eur European Union's Roles in International Politics: Concepts and Analysis = Routl. Ecpr. Stud. Eur. European urban and regional studies = Eur Urban Reg Stud European Urban and Regional Studies = Eur Urban Reg Stud European Urban and Regional Studies = Eur. Urban Reg. Stud. European urology = Eur Urol European Urology=Eur Urol;; European Urology = Eur Urol European Urology = Eur. Urol. European Urology Supplements = Eur Urol Suppl European Urology Supplements = Eur. Urol. Suppl. European Warfare in A Global Context, 1660-1815 = Warfare Hist European Warfare in A Global Context, 1660-1815 = Warfare Hist. European water pollution control : official publication of the European Water Pollution Control Association (EWPCA) = Eur Water Pollut Control European Welfare States and Supranational Governance of Social Policy = St Antonys Ser European Welfare States and Supranational Governance of Social Policy = St. Antonys. Ser. European Wireless Technology Conference = Euro Wirel Technol C European Wireless Technology Conference = Euro. Wirel. Technol. C. European Workshop On Optical Fibre Sensors = P Soc Photo-opt Ins European Workshop On Optical Fibre Sensors = P. Soc. Photo-opt. Ins. European Workshop On Planning = Lect Notes Artif Int European Workshop On Planning = Lect. Notes. Artif. Int. European Workshop On Smart Structures in Engineering and Technology = P Soc Photo-opt Ins European Workshop On Smart Structures in Engineering and Technology = P. Soc. Photo-opt. Ins. European Yearbook of International Economic Law 2010 = Eur Yearb Int Econ L European Yearbook of International Economic Law 2010 = Eur. Yearb. Int. Econ. L. European Yearbook of International Economic Law = Eur Yearb Int Econ L European Yearbook of International Economic Law = Eur. Yearb. Int. Econ. L. Europe-asia Relations: Building Multilateralisms = Palgrave Stud Eur Un Europe-asia Relations: Building Multilateralisms = Palgrave. Stud. Eur. Un. Europe-asia Relations: Building Multilateralisms = Palg Stud Eur Un Pol Europe-asia Relations: Building Multilateralisms = Palg. Stud. Eur. Un. Pol. Europe-Asia studies = Eur Asia Stud Europe-asia Studies = Europe-asia Stud Europe-asia Studies = Europe-asia Stud. Europe, Canada and The Comprehensive Economic and Trade Agreement = Rout Stud Governance Europe, Canada and The Comprehensive Economic and Trade Agreement = Rout. Stud. Governance. Europe, Globalization and Sustainable Development = Environm Polit Ser Europe, Globalization and Sustainable Development = Environm. Polit. Ser. Europe in Change = Eur Change Europe in Change = Eur. Change Europe in Transition-the Nyu European Studies Series = Eur Transit-nyu Eur Europe in Transition-the Nyu European Studies Series = Eur. Transit-nyu. Eur. Europe in Transition: The Nyu European Studies Series = Eur Transit Nyu Eur Europe in Transition: The Nyu European Studies Series = Eur. Transit. Nyu Eur. Europe, outremer = Eur Om Europe; revue litteraire mensuelle = Europe Europe-revue Litteraire Mensuelle = Europe-rev Lit Mens Europe-revue Litteraire Mensuelle = Europe-rev. Lit. Mens. Europe's Automotive Industry On The Move: Competitiveness in A Changing World = Zew Econ Stud Europe's Automotive Industry On The Move: Competitiveness in A Changing World = Zew. Econ. Stud. Europes Medicinal Products : Present Realities and Future Plans = Colloq Inse Europes Medicinal Products : Present Realities and Future Plans = Colloq. Inse. Europe's Troubled Region: Economic Development, Institutional Reform and Social Welfare in The Western Balkans = Routl Stud Dev Econ Europe's Troubled Region: Economic Development, Institutional Reform and Social Welfare in The Western Balkans = Routl. Stud. Dev. Econ. Europharmacy 93: Common Cold Study Forum = Roy Soc Med Int Cong Europharmacy 93: Common Cold Study Forum = Roy. Soc. Med. Int. Cong. Europhysics letters = Europhys Lett Europhysics Letters = Europhys. Lett. Europhysics Letters = Europhys Lett Europhysics Letters = Europhys. Lett. Europhysics News = Europhys. News Europlastics Monthly = Europlast Mon Europlastics Monthly = Europlast. Mon. Europto Series = Europto Ser Europto Series = Europto Ser. EURO reports and studies = EURO Rep Stud EURO Reports and Studies = EURO Rep. Stud. Euroscepticism and European Integration = Poli Sci Res Cent Fo Euroscepticism and European Integration = Poli. Sci. Res. Cent. Fo. Euroschool Lectures On Physics With Exotic Beams, Vol Iii = Lect Notes Phys Euroschool Lectures On Physics With Exotic Beams, Vol Iii = Lect. Notes. Phys. Eurosensors Xii, Vols 1 and 2 = Sensors Ser Eurosensors Xii, Vols 1 and 2 = Sensors. Ser. Eurosensor Xxiv Conference = Procedia Engineer Eurosensor Xxiv Conference = Procedia. Engineer. Eurosilva - Contribution to Forest Tree Physiology = Colloq Inra Eurosilva - Contribution to Forest Tree Physiology = Colloq. Inra. Eurosla Yearbook, 2001 = Eurosla Yb Eurosla Yearbook, 2001 = Eurosla Yb. Eurosla Yearbook = Eurosla Yb Eurosla Yearbook = Eurosla Yb. Eurosla Yearbook, Vol 5 2005 = Eurosla Yb Eurosla Yearbook, Vol 5 2005 = Eurosla Yb. Eurosla Yearbook, Vol 6 2006 = Eurosla Yb Eurosla Yearbook, Vol 6 2006 = Eurosla Yb. Euro-spectra = Euro-spectra Eurosurveillance = Eurosurveillance Euroteca Direct 91 : European Engineering Research and Technology Transfer Congress = Imeche Sem Euroteca Direct 91 : European Engineering Research and Technology Transfer Congress = Imeche. Sem. Eurotech Direct 91 : Computers in Engineering Industry = Proc Inst Mech Eng S Eurotech Direct 91 : Computers in Engineering Industry = Proc. Inst. Mech. Eng. S. Eurotech Direct 91 : Machine Systems = Proc Inst Mech Eng S Eurotech Direct 91 : Machine Systems = Proc. Inst. Mech. Eng. S. Eurotech Direct 91 : Materials and Processes = Proc Inst Mech Eng S Eurotech Direct 91 : Materials and Processes = Proc. Inst. Mech. Eng. S. Eurotech Direct 91 : Thermofluids Engineering = Proc Inst Mech Eng S Eurotech Direct 91 : Thermofluids Engineering = Proc. Inst. Mech. Eng. S. Eusebius Von Casarea Als Hareseograph = Patrist Texte Stud Eusebius Von Casarea Als Hareseograph = Patrist. Texte. Stud. Eustathii Thessalonicensis De Emendanda Vita Monachica = Corpus Font Hist Byz Eustathii Thessalonicensis De Emendanda Vita Monachica = Corpus. Font. Hist. Byz. Eu's Transformative Power: Europeanization Through Conditionality in Central and Eastern Europe = Palgrave Stud Eur Un Eu's Transformative Power: Europeanization Through Conditionality in Central and Eastern Europe = Palgrave. Stud. Eur. Un. Euthanasia, Ethics and The Law = Biomed Law Ethics Li Euthanasia, Ethics and The Law = Biomed. Law Ethics Li. Euthanasia in The Netherlands: The Policy and Practice of Mercy Killing = Int Libr Eth Law New Euthanasia in The Netherlands: The Policy and Practice of Mercy Killing = Int. Libr. Eth. Law. New. Euthanasia news = Euthanasia News Eutopia. Commentarii novi de antiquitatibus totius Europae = Eutopia EUT Report-WSK = EUT Report-WSK Euv, X-ray, and Gamma-ray Instrumentation for Astronomy and Atomic Physics = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy and Atomic Physics = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Iii = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Iii = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Ii = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Ii = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Iv = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Iv = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Ix = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Ix = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Vii = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Vii = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Vi = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy Vi = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy V = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy V = P. Soc. Photo-opt. Ins. Euv, X-ray, and Gamma-ray Instrumentation for Astronomy X = P Soc Photo-opt Ins Euv, X-ray, and Gamma-ray Instrumentation for Astronomy X = P. Soc. Photo-opt. Ins. Euv, X-ray, and Neutron Optics and Sources = Proc Spie Euv, X-ray, and Neutron Optics and Sources = Proc. Spie. Euv, X-ray, and Neutron Optics and Sources = P Soc Photo-opt Ins Euv, X-ray, and Neutron Optics and Sources = P. Soc. Photo-opt. Ins. Euwit: 2008 European Wireless Technology Conference = Euro Wirel Technol C Euwit: 2008 European Wireless Technology Conference = Euro. Wirel. Technol. C. Euwit: 2009 European Wireless Technology Conference = Euro Wirel Technol C Euwit: 2009 European Wireless Technology Conference = Euro. Wirel. Technol. C. Eux, X-ray, and Gamma-ray Instrumentation for Astronomy Viii = P Soc Photo-opt Ins Eux, X-ray, and Gamma-ray Instrumentation for Astronomy Viii = P. Soc. Photo-opt. Ins. Evaluating Adam Smith = Routl Stud Hist Econ Evaluating Adam Smith = Routl. Stud. Hist. Econ. Evaluating Childrens Books : A Critical Look = Allerton Pa Evaluating Childrens Books : A Critical Look = Allerton. Pa. Evaluating Climate Change Action Plans = Envir Sci R Evaluating Climate Change Action Plans = Envir. Sci. R. Evaluating Clinical Audit: Past Lessons, Future Directions = Roy Soc Med Int Cong Evaluating Clinical Audit: Past Lessons, Future Directions = Roy. Soc. Med. Int. Cong. Evaluating Competencies: Forensic Assessments and Instruments, Second Edition = Perspect Law Psychol Evaluating Competencies: Forensic Assessments and Instruments, Second Edition = Perspect. Law. Psychol. Evaluating Derivatives: Principles and Techniques of Algorithmic Differentiation, Second Edition = Other Titl Appl Math Evaluating Derivatives: Principles and Techniques of Algorithmic Differentiation, Second Edition = Other. Titl. Appl. Math. Evaluating Educational Reforms: Scandinavian Perspectives = Eval Societ Evaluating Educational Reforms: Scandinavian Perspectives = Eval. Societ. Evaluating Effectiveness of Primary Prevention of Cancer = Iarc Sci Publ Evaluating Effectiveness of Primary Prevention of Cancer = Iarc. Sci. Publ. Evaluating Electronic Portfolios in Teacher Education = Res Methods Educ Tec Evaluating Electronic Portfolios in Teacher Education = Res. Methods. Educ. Tec. Evaluating Feynman Integrals = Springer Tr Mod Phys Evaluating Feynman Integrals = Springer. Tr. Mod. Phys. Evaluating Hospital Policy and Performance: Contributions From Hospital Policy and Productivity Research = Adv Health Econ Heal Evaluating Hospital Policy and Performance: Contributions From Hospital Policy and Productivity Research = Adv. Health. Econ. Heal. Evaluating Intelligent Transportation Systems, Advanced Traveler Information Systems, and Other Artificial Intelligence Applications = Transport Res Rec Evaluating Intelligent Transportation Systems, Advanced Traveler Information Systems, and Other Artificial Intelligence Applications = Transport. Res. Rec. Evaluating Marketing Actions and Outcomes = Adv Bus Mark Purch Evaluating Marketing Actions and Outcomes = Adv. Bus. Mark. Purch. Evaluating New Technologies = Int Libr Eth Law Tec Evaluating New Technologies = Int. Libr. Eth. Law. Tec. Evaluating Online Learning: Challenges and Strategies for Success = Educ Compet Glob Wor Evaluating Online Learning: Challenges and Strategies for Success = Educ. Compet. Glob. Wor. Evaluating Social Development Projects = Dev Guidel Evaluating Social Development Projects = Dev. Guidel. Evaluating Social Programs and Problems: Visions for The New Millennium = Clar Symp Evaluating Social Programs and Problems: Visions for The New Millennium = Clar. Symp. Evaluating Success and Failure in Post-communist Reform = Keck Ctr Int St Stud Evaluating Success and Failure in Post-communist Reform = Keck. Ctr. Int. St. Stud. Evaluating Systems for Multilingual and Multimodal Information Access = Lect Notes Comput Sc Evaluating Systems for Multilingual and Multimodal Information Access = Lect. Notes. Comput. Sc. Evaluating Technology in Teacher Education: Lessons From The Preparing Tomorrow's Teachers for Technology (pt3) Program = Res Methods Educ Tec Evaluating Technology in Teacher Education: Lessons From The Preparing Tomorrow's Teachers for Technology (pt3) Program = Res. Methods. Educ. Tec. Evaluating Theory-practice and Urban-rural Interplay in Planning = Geoj Lib Evaluating Theory-practice and Urban-rural Interplay in Planning = Geoj. Lib. Evaluating Theory-practice and Urban-rural Interplay in Planning = Geojournal Lib Evaluating Theory-practice and Urban-rural Interplay in Planning = Geojournal. Lib. Evaluating The Upgrading of Technical Courses At Two-year Colleges = Adv Prog Eval Evaluating The Upgrading of Technical Courses At Two-year Colleges = Adv. Prog. Eval. Evaluating User Experience in Games: Concepts and Methods = Hum-comput Int-sprin Evaluating User Experience in Games: Concepts and Methods = Hum-comput. Int-sprin. Evaluation and Decision Models With Multiple Criteria: Stepping Stones for The Analyst = Int Ser Oper Res Man Evaluation and Decision Models With Multiple Criteria: Stepping Stones for The Analyst = Int. Ser. Oper. Res. Man. Evaluation and Development: Proceedings of The 1994 World Bank Conference = World B Op Evaluation and Development: Proceedings of The 1994 World Bank Conference = World B. Op. Evaluation and program planning = Eval Program Plann Evaluation and Program Planning = Eval Program Plann Evaluation and Program Planning = Eval. Program Plann. Evaluation and Society = Eval Societ Evaluation and Society = Eval. Societ. Evaluation and the Health Professions = Eval. Health Prof. Evaluation = Evaluation Evaluation in Planning = Geoj Lib Evaluation in Planning = Geoj. Lib. Evaluation in Planning = Geojournal Lib Evaluation in Planning = Geojournal. Lib. Evaluation, Inspection and Monitoring of Structural Integrity = Fracture Mech Symp Evaluation, Inspection and Monitoring of Structural Integrity = Fracture. Mech. Symp. Evaluation of Advanced Semiconductor Materials By Electron Microscopy = Nato Adv Sci I B-phy Evaluation of Advanced Semiconductor Materials By Electron Microscopy = Nato. Adv. Sci. I. B-phy. Evaluation of Certain Contaminants in Food = Who Tech Rep Ser Evaluation of Certain Contaminants in Food = Who. Tech. Rep. Ser. Evaluation of Certain Food Additives, 51st Report = Who Tech Rep Ser Evaluation of Certain Food Additives, 51st Report = Who. Tech. Rep. Ser. Evaluation of Certain Food Additives and Contaminants, 53rd Report = Who Tech Rep Ser Evaluation of Certain Food Additives and Contaminants, 53rd Report = Who. Tech. Rep. Ser. Evaluation of Certain Food Additives and Contaminants = Who Tech Rep Ser Evaluation of Certain Food Additives and Contaminants = Who. Tech. Rep. Ser. Evaluation of Certain Food Additives = Who Tech Rep Ser Evaluation of Certain Food Additives = Who. Tech. Rep. Ser. Evaluation of Certain Food Contaminants = Who Tech Rep Ser Evaluation of Certain Food Contaminants = Who. Tech. Rep. Ser. Evaluation of Certain Veterinary Drug Residues in Food, 52nd Report = Who Tech Rep Ser Evaluation of Certain Veterinary Drug Residues in Food, 52nd Report = Who. Tech. Rep. Ser. Evaluation of Certain Veterinary Drug Residues in Food = Who Tech Rep Ser Evaluation of Certain Veterinary Drug Residues in Food = Who. Tech. Rep. Ser. Evaluation of Digital Libraries: An Insight Into Useful Applications and Methods = Chandos Inf Prof Ser Evaluation of Digital Libraries: An Insight Into Useful Applications and Methods = Chandos. Inf. Prof. Ser. Evaluation of Educational Programmes : Methods, Uses and Benefits = Eur Educ R Evaluation of Educational Programmes : Methods, Uses and Benefits = Eur. Educ. R. Evaluation of Electronic Voting = Lect Notes Bus Inf P Evaluation of Electronic Voting = Lect. Notes. Bus. Inf. P. Evaluation of Forest Policies and Programmes = Eur Forest Inst Proc Evaluation of Forest Policies and Programmes = Eur. Forest Inst. Proc. Evaluation of Genetically Altered Medflies for Use in Sterile Insect Techniques Programmes = Iaea Pan P Evaluation of Genetically Altered Medflies for Use in Sterile Insect Techniques Programmes = Iaea. Pan. P. Evaluation of Multilingual and Multi-modal Information Retrieval = Lect Notes Comput Sc Evaluation of Multilingual and Multi-modal Information Retrieval = Lect. Notes. Comput. Sc. Evaluation of Novel Approaches to Software Engineering = Comm Com Inf Sc Evaluation of Novel Approaches to Software Engineering = Comm. Com. Inf. Sc. Evaluation of Persistence and Long-range Transport of Organic Chemicals in The Environment = Setac Sp P Evaluation of Persistence and Long-range Transport of Organic Chemicals in The Environment = Setac. Sp. P. Evaluation of Public Services and Public Services Personnel = Allerton Pa Evaluation of Public Services and Public Services Personnel = Allerton. Pa. Evaluation of Resources Exploitable By Small-scale Fisheries in Senegal = Colloq Semi Evaluation of Resources Exploitable By Small-scale Fisheries in Senegal = Colloq. Semi. Evaluation of Text and Speech Systems = Text Speech Lang Tec Evaluation of Text and Speech Systems = Text Speech Lang. Tec. Evaluation of Transportation Investment Projects = Routl Adv Manag Bus Evaluation of Transportation Investment Projects = Routl. Adv. Manag. Bus. Evaluation of Worldwide Digital Reference Services in Libraries = Chandos Inf Prof Ser Evaluation of Worldwide Digital Reference Services in Libraries = Chandos. Inf. Prof. Ser. Evaluation practice = Eval Pract Evaluation Practice = Eval Pract Evaluation Practice = Eval. Pract. Evaluation quarterly = Eval Q Evaluation Quarterly = Evaluation Quart Evaluation Quarterly = Evaluation Quart. Evaluation review = Eval Rev Evaluation Review = Eval. Rev. Evaluation Review = Evaluation Rev Evaluation Review = Evaluation Rev. Evaluations of Process Modeling Grammars: Ontological, Qualitative and Quantitative Analyses Using The Example Bpmn = Lect Notes Bus Inf P Evaluations of Process Modeling Grammars: Ontological, Qualitative and Quantitative Analyses Using The Example Bpmn = Lect. Notes. Bus. Inf. P. Evaluation & the health professions = Eval Health Prof Evaluation & The Health Professions = Eval Health Prof Evaluation & The Health Professions = Eval. Health Prof. Evaluer Et Valoriser: Une Sociologie Economique De La Mesure = Socio-logiques Evaluer Et Valoriser: Une Sociologie Economique De La Mesure = Socio-logiques. Evangelical Missiological Society Series = Evangel Missiol Soc Evangelical Missiological Society Series = Evangel. Missiol. Soc. Evangelium Und Gesetz: Eine Systematisch-theologische Reflexion Zu Karl Barths Predigtwerk = Theol Bibl Topelmann Evangelium Und Gesetz: Eine Systematisch-theologische Reflexion Zu Karl Barths Predigtwerk = Theol. Bibl. Topelmann. Evaporites Through Space and Time = Geol Soc Spec Publ Evaporites Through Space and Time = Geol. Soc. Spec. Publ. Eve Kosofsky Sedgwick = Routl Crit Thinkers Eve Kosofsky Sedgwick = Routl. Crit. Thinkers. Evening sun (Baltimore, Md.) = Evening Sun Event = Event Eventfulness in British Fiction = Narratologia Eventfulness in British Fiction = Narratologia. Event-related Dynamics of Brain Oscillations = Prog Brain Res Event-related Dynamics of Brain Oscillations = Prog. Brain Res. Ever-illuminating Wisdom of St. Thomas Aquinas = P Wethers I Ever-illuminating Wisdom of St. Thomas Aquinas = P. Wethers. I. Everyday Economic Practices: The 'hidden Transcripts' of Egyptian Voices = New Polit Econ Ser Everyday Economic Practices: The 'hidden Transcripts' of Egyptian Voices = New. Polit. Econ. Ser. Everyday Innovators: Researching The Role of Users in Shaping Ict's = Comp Support Comp W Everyday Innovators: Researching The Role of Users in Shaping Ict's = Comp. Support. Comp. W. Everyday Life During The Neolithic Period = Doc Arch Fr Everyday Life During The Neolithic Period = Doc. Arch. Fr. Everyday Miracle : Yiddish Culture in Montreal = Doss Queb S Everyday Miracle : Yiddish Culture in Montreal = Doss. Queb. S. Everyday Nationalism: Women of The Hindu Right in India = Ethnogr Polit Violen Everyday Nationalism: Women of The Hindu Right in India = Ethnogr. Polit. Violen. Everyday Resilience of The City - How Cities Respond to Terrorism and Disaster = New Secur Chall Everyday Resilience of The City - How Cities Respond to Terrorism and Disaster = New. Secur. Chall. Eve's Children = Themes Bibl Narr Eve's Children = Themes. Bibl. Narr. Evidence and Decision Making = Yearb Natl Soc Stud Evidence and Decision Making = Yearb. Natl. Soc. Stud. Evidence-based cardiovascular medicine = Evid Based Cardiovasc Med Evidence-based complementary and alternative medicine : eCAM = Evid Based Complement Alternat Med Evidence-based Complementary and Alternative Medicine = Evid-based Compl Alt Evidence-based Complementary and Alternative Medicine = Evid-based. Compl. Alt. Evidence-based dentistry = Evid Based Dent Evidence-based Librarianship: Case Studies and Active Learning Exercises = Chandos Inf Prof Ser Evidence-based Librarianship: Case Studies and Active Learning Exercises = Chandos. Inf. Prof. Ser. Evidence-based Medicine: A Critical Assessment = Roy Soc Med Int Cong Evidence-based Medicine: A Critical Assessment = Roy. Soc. Med. Int. Cong. Evidence-based medicine = Evid Based Med Evidence-based mental health = Evid Based Ment Health Evidence-Based Mental Health = Evid. Based Ment. Health Evidence-based nursing = Evid Based Nurs Evidence-Based Nursing = Evid. Based Nurs. Evidence for Linguistic Relativity = Amst Stud Theory His Evidence for Linguistic Relativity = Amst. Stud. Theory. His. Evidence & Policy = Evid Policy Evidence & Policy = Evid. Policy Evidence report/technology assessment = Evid Rep Technol Assess (Full Rep) Evidence report/technology assessment (Summary) = Evid Rep Technol Assess (Summ) Evidence Report/Technology Assessment (Summary) = Evid. Rep. Technol. Assess. (Summ.) Evidentiality and Epistemic Modality in Spanish (semi-)auxiliaries: A Cognitive-functional Approach = Appl Cogn Linguist Evidentiality and Epistemic Modality in Spanish (semi-)auxiliaries: A Cognitive-functional Approach = Appl. Cogn. Linguist. Evlauation of Cross-language Information Retrieval Systems = Lect Notes Comput Sc Evlauation of Cross-language Information Retrieval Systems = Lect. Notes. Comput. Sc. Evocations = Evocations Evoked Potentials-electroencephalography and Clinical Neurophysiology = Evoked Potential Evoked Potentials-electroencephalography and Clinical Neurophysiology = Evoked Potential. Evoked Potentials Review = Evok Pot R Evoked Potentials Review = Evok. Pot. R. Evoked Potentials Review, No 4 = Evok Pot R Evoked Potentials Review, No 4 = Evok. Pot. R. Evolution Algebras and Their Applications = Lect Notes Math Evolution Algebras and Their Applications = Lect. Notes. Math. Evolution and Development = Evol. Dev. Evolution and Development of The Brachiopod Shell = Spec Pap Palaeontol Evolution and Development of The Brachiopod Shell = Spec. Pap. Palaeontol. Evolution and History of Human Populations in South Asia: = Vertebr Paleobiol Pa Evolution and History of Human Populations in South Asia: = Vertebr. Paleobiol. Pa. Evolution and Human Behavior = Evol Hum Behav Evolution and Human Behavior = Evol. Hum. Behav. Evolution and human behavior : official journal of the Human Behavior and Evolution Society = Evol Hum Behav Evolution and Learning: The Baldwin Effect Reconsidered = Life Mind-philos Iss Evolution and Learning: The Baldwin Effect Reconsidered = Life. Mind-philos. Iss. Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Spec Pap Palaeontol Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Spec. Pap. Palaeontol. Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Spec Pap Paleontol Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Spec. Pap. Paleontol. Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Sp Palaeont Evolution and Palaeobiology of Early Sauropodomorph Dinosaurs = Sp. Palaeont. Evolution and The Aquatic Ecosystem: Defining Unique Units in Population Conservation = Am Fish S S Evolution and The Aquatic Ecosystem: Defining Unique Units in Population Conservation = Am. Fish. S. S. Evolution and The Psychology of Thinking: The Debate = Curr Iss Think Reaso Evolution and The Psychology of Thinking: The Debate = Curr. Iss. Think. Reaso. Evolution and Trends in Peritoneal Dialysis = Contrib Nephrol Evolution and Trends in Peritoneal Dialysis = Contrib. Nephrol. Evolutionary Algorithms and Chaotic Systems = Stud Comput Intell Evolutionary Algorithms and Chaotic Systems = Stud. Comput. Intell. Evolutionary and Bio-inspired Computation: Theory and Applications Ii = Proc Spie Evolutionary and Bio-inspired Computation: Theory and Applications Ii = Proc. Spie. Evolutionary and Bio-inspired Computation: Theory and Applications Iv = Proc Spie Evolutionary and Bio-inspired Computation: Theory and Applications Iv = Proc. Spie. Evolutionary and Bio-inspired Computation: Theory and Applications Iv = P Soc Photo-opt Ins Evolutionary and Bio-inspired Computation: Theory and Applications Iv = P. Soc. Photo-opt. Ins. Evolutionary and Bio-inspired Computation: Theory and Applications = Proc Spie Evolutionary and Bio-inspired Computation: Theory and Applications = Proc. Spie. Evolutionary and Bio-inspired Computation: Theory and Applications = P Soc Photo-opt Ins Evolutionary and Bio-inspired Computation: Theory and Applications = P. Soc. Photo-opt. Ins. Evolutionary and Bio-inspired Computation: Theory and Applications V = Proc Spie Evolutionary and Bio-inspired Computation: Theory and Applications V = Proc. Spie. Evolutionary anthropology = Evol Anthropol Evolutionary Anthropology = Evol Anthropol Evolutionary Anthropology = Evol. Anthropol. Evolutionary Applications = Evol Appl Evolutionary Applications = Evol. Appl. Evolutionary Bioinformatics = Evol Bioinform Evolutionary Bioinformatics = Evol. Bioinform. Evolutionary bioinformatics online = Evol Bioinform Online Evolutionary Biology = Evol Biol Evolutionary Biology = Evol. Biol. Evolutionary Biology-new York = Evol Biol Evolutionary Biology-new York = Evol. Biol. Evolutionary Biology of Host-parasite Relationships: Theory Meets Reality = Dev An Vet Evolutionary Biology of Host-parasite Relationships: Theory Meets Reality = Dev. An. Vet. Evolutionary Biology of The Bivalvia = Geol Soc Spec Publ Evolutionary Biology of The Bivalvia = Geol. Soc. Spec. Publ. Evolutionary Biology, Vol 28 = Evol Biol Evolutionary Biology, Vol 28 = Evol. Biol. Evolutionary Biology, Vol 29 = Evol Biol Evolutionary Biology, Vol 29 = Evol. Biol. Evolutionary Biology, Vol 30 = Evol Biol Evolutionary Biology, Vol 30 = Evol. Biol. Evolutionary Biology, Vol 31 = Evol Biol Evolutionary Biology, Vol 31 = Evol. Biol. Evolutionary Biology, Vol 32 = Evol Biol Evolutionary Biology, Vol 32 = Evol. Biol. Evolutionary Biology, Vol 33 = Evol Biol Evolutionary Biology, Vol 33 = Evol. Biol. Evolutionary computation = Evol Comput Evolutionary Computation=Evol Comput;; Evolutionary Computation = Evol Comput Evolutionary Computation = Evol. Comput. Evolutionary Computation in Combinatorial Optimization, Proceedings = Lect Notes Comput Sc Evolutionary Computation in Combinatorial Optimization, Proceedings = Lect. Notes. Comput. Sc. Evolutionary Computation in Practice = Stud Comput Intell Evolutionary Computation in Practice = Stud. Comput. Intell. Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, Proceedings = Lect Notes Comput Sc Evolutionary Computation, Machine Learning and Data Mining in Bioinformatics, Proceedings = Lect. Notes. Comput. Sc. Evolutionary Design of Intelligent Systems in Modeling, Simulation and Control = Stud Comput Intell Evolutionary Design of Intelligent Systems in Modeling, Simulation and Control = Stud. Comput. Intell. Evolutionary Dynamics and Extensive Form Games = Econ Learn Soc Evol Evolutionary Dynamics and Extensive Form Games = Econ. Learn. Soc. Evol. Evolutionary Ecology = Evol Ecol Evolutionary Ecology = Evol. Ecol. Evolutionary Ecology Research = Evol Ecol Res Evolutionary Ecology Research = Evol. Ecol. Res. Evolutionary Economic Geography = Routl Stud Glob Comp Evolutionary Economic Geography = Routl. Stud. Glob. Comp. Evolutionary Economics: Program and Scope = Rec Econ Th Evolutionary Economics: Program and Scope = Rec. Econ. Th. Evolutionary Epistemology, Language and Culture = Theor Dec A Evolutionary Epistemology, Language and Culture = Theor. Dec. A. Evolutionary Epistemology, Language and Culture = Theory Decis Lib A Evolutionary Epistemology, Language and Culture = Theory. Decis. Lib. A. Evolutionary Genetics of Plant-microbe Symbioses = Agron Res Dev Evolutionary Genetics of Plant-microbe Symbioses = Agron. Res. Dev. Evolutionary Multi-criterion Optimization = Lect Notes Comput Sc Evolutionary Multi-criterion Optimization = Lect. Notes. Comput. Sc. Evolutionary Multi-criterion Optimization, Proceedings = Lect Notes Comput Sc Evolutionary Multi-criterion Optimization, Proceedings = Lect. Notes. Comput. Sc. Evolutionary Multi-objective Optimization in Uncertain Environments: Issues and Algorithms = Stud Comput Intell Evolutionary Multi-objective Optimization in Uncertain Environments: Issues and Algorithms = Stud. Comput. Intell. Evolutionary Perspectives On Human Reproductive Behavior = Ann Ny Acad Sci Evolutionary Perspectives On Human Reproductive Behavior = Ann. Ny. Acad. Sci. Evolutionary Phenomena in The Universe = Ital Phy So Evolutionary Phenomena in The Universe = Ital. Phy. So. Evolutionary Processes in Binary Stars = Nato Adv Sci Inst Se Evolutionary Processes in Binary Stars = Nato. Adv. Sci. Inst. Se. Evolutionary Processes in Interacting Binary Stars = Iau Symp Evolutionary Processes in Interacting Binary Stars = Iau. Symp. Evolutionary Processes in World Politics = Evol Proc World Pol Evolutionary Processes in World Politics = Evol. Proc. World Pol. Evolutionary Programming Iv = Com Adap Sy Evolutionary Programming Iv = Com. Adap. Sy. Evolutionary Psychology and Information Systems Research = Integr Ser Inform Sy Evolutionary Psychology and Information Systems Research = Integr. Ser. Inform. Sy. Evolutionary Psychology = Evol Psychol Evolutionary Psychology = Evol. Psychol. Evolutionary Psychology = Evol Psychol-us Evolutionary Psychology = Evol. Psychol-us. Evolutionary Scheduling = Stud Comput Intell Evolutionary Scheduling = Stud. Comput. Intell. Evolutionary Statistical Procedures: An Evolutionary Computation Approach to Statistical Procedures Designs and Applications = Stat Comput Ser Evolutionary Statistical Procedures: An Evolutionary Computation Approach to Statistical Procedures Designs and Applications = Stat. Comput. Ser. Evolutionary Swarm Robotics: Evolving Self-organising Behaviours in Groups of Autonomous Robots = Stud Comput Intell Evolutionary Swarm Robotics: Evolving Self-organising Behaviours in Groups of Autonomous Robots = Stud. Comput. Intell. Evolutionary Theory = Evol Theor Evolutionary Theory = Evol. Theor. Evolutionary Tinkering in Gene Expression = Nato Adv Sci I A-lif Evolutionary Tinkering in Gene Expression = Nato. Adv. Sci. I. A-lif. Evolutionary Trends in Plants = Evol Trend Plant Evolutionary Trends in Plants = Evol. Trend. Plant. Evolution As Computation = Nat Comp Ser Evolution As Computation = Nat. Comp. Ser. Evolution, Cognition, and Realism = Cps Pub P S Evolution, Cognition, and Realism = Cps. Pub. P. S. Evolution & development = Evol Dev Evolution & Development = Evol Dev Evolution & Development = Evol. Dev. Evolution Equations and Their Applications in Physical and Life Sciences = Lect Notes Pure Appl Evolution Equations and Their Applications in Physical and Life Sciences = Lect. Notes. Pure. Appl. Evolution Equations: Applications to Physics, Industry, Life Sciences and Economics = Prog Nonlin Evolution Equations: Applications to Physics, Industry, Life Sciences and Economics = Prog. Nonlin. Evolution Equations: Applications to Physics, Industry, Life Sciences and Economics = Prog Nonlinear Diffe Evolution Equations: Applications to Physics, Industry, Life Sciences and Economics = Prog. Nonlinear. Diffe. Evolution Equations, Control Theory, and Biomathematics = Lect Notes Pure Appl Evolution Equations, Control Theory, and Biomathematics = Lect. Notes. Pure. Appl. Evolution Equations = Lect Notes Pure Appl Evolution Equations = Lect. Notes. Pure. Appl. Evolution Equations, Semigroups and Functional Analysis = Prog Nonlin Evolution Equations, Semigroups and Functional Analysis = Prog. Nonlin. Evolution Equations, Semigroups and Functional Analysis = Prog Nonlinear Diffe Evolution Equations, Semigroups and Functional Analysis = Prog. Nonlinear. Diffe. Evolution = Evolution Evolution From Cellular to Social Scales = Nato Sec Sci B Phys Evolution From Cellular to Social Scales = Nato. Sec. Sci. B. Phys. Evolution in Astrophysics = Esa Sp Publ Evolution in Astrophysics = Esa. Sp. Publ. Evolution Inclusions and Variation Inequalities for Earth Data Processing Ii: Differential-operator Inclusions and Evolution Variation Inequalities for Earth Data Processing = Adv Mech Math Evolution Inclusions and Variation Inequalities for Earth Data Processing Ii: Differential-operator Inclusions and Evolution Variation Inequalities for Earth Data Processing = Adv. Mech. Math. Evolution Inclusions and Variation Inequalities for Earth Data Processing I: Operator Inclusions and Variation Inequalities for Earth Data Processing = Adv Mech Math Evolution Inclusions and Variation Inequalities for Earth Data Processing I: Operator Inclusions and Variation Inequalities for Earth Data Processing = Adv. Mech. Math. Evolution in Dialysis Adequacy = Contrib Nephrol Evolution in Dialysis Adequacy = Contrib. Nephrol. Evolution; international journal of organic evolution = Evolution Int J Org Evolution Evolution of An Andean Margin: A Tectonic and Magmatic View From The Andes to The Neuquen Basin (35 Deg - 39 Deg S Lat) = Geol Soc Am Spec Pap Evolution of An Andean Margin: A Tectonic and Magmatic View From The Andes to The Neuquen Basin (35 Deg - 39 Deg S Lat) = Geol. Soc. Am. Spec. Pap. Evolution of Animal Communication: Reliability and Deception in Signaling Systems = Mg Beh Ecol Evolution of Animal Communication: Reliability and Deception in Signaling Systems = Mg. Beh. Ecol. Evolution of Binary and Multiple Star Systems = Astr Soc P Evolution of Binary and Multiple Star Systems = Astr. Soc. P. Evolution of Chinese Medicine: Song Dynasty, 960-1200 = Needham Res Inst Ser Evolution of Chinese Medicine: Song Dynasty, 960-1200 = Needham. Res. Inst. Ser. Evolution of Communication Systems = Vienna Ser Theor Bio Evolution of Communication Systems = Vienna. Ser. Theor. Bio. Evolution of Communication Systems = Vienna S Theor Biol Evolution of Communication Systems = Vienna. S. Theor. Biol. Evolution of Concepts and Methods of Assessment of Pollution in Water and Sediments = Oceanis S D Evolution of Concepts and Methods of Assessment of Pollution in Water and Sediments = Oceanis. S. D. Evolution of Consumption: Theories and Practices = Adv Austrian Econ Evolution of Consumption: Theories and Practices = Adv. Austrian. Econ. Evolution of Early Earth's Atmosphere, Hydrosphere, and Biosphere: Constraints From Ore Deposits = Geol Soc Am Mem Evolution of Early Earth's Atmosphere, Hydrosphere, and Biosphere: Constraints From Ore Deposits = Geol. Soc. Am. Mem. Evolution of Epitaxial Structure and Morphology = Mater Res Soc Symp P Evolution of Epitaxial Structure and Morphology = Mater. Res. Soc. Symp. P. Evolution of Exudativory in Primates = Dev Primatol-prog Pr Evolution of Exudativory in Primates = Dev. Primatol-prog. Pr. Evolution of Galaxies On Cosmological Timescales = Astr Soc P Evolution of Galaxies On Cosmological Timescales = Astr. Soc. P. Evolution of Galaxies Through The Neutral Hydrogen Window = Aip Conf Proc Evolution of Galaxies Through The Neutral Hydrogen Window = Aip. Conf. Proc. Evolution of Hominin Diets = Vertebr Paleobiol Pa Evolution of Hominin Diets = Vertebr. Paleobiol. Pa. Evolution of Human Languages = Sfi S Sci C Evolution of Human Languages = Sfi. S. Sci. C. Evolution of Human Life History = Sch Am Res Evolution of Human Life History = Sch. Am. Res. Evolution of Human Populations in Arabia = Vertebr Paleobiol Pa Evolution of Human Populations in Arabia = Vertebr. Paleobiol. Pa. Evolution of Hydrothermal Ecosystems On Earth (and Mars?) = Ciba F Symp Evolution of Hydrothermal Ecosystems On Earth (and Mars?) = Ciba. F. Symp. Evolution of Infectious Agents in Relation to Sex = Ann Ny Acad Sci Evolution of Infectious Agents in Relation to Sex = Ann. Ny. Acad. Sci. Evolution of Information Technology in Educational Management = Int Fed Info Proc Evolution of Information Technology in Educational Management = Int. Fed. Info. Proc. Evolution of Interstellar Matter and Dynamics of Galaxies = Cts Workshop Evolution of Interstellar Matter and Dynamics of Galaxies = Cts. Workshop. Evolution of Italian Enterprises in The 20th Century = Contrib Econ Evolution of Italian Enterprises in The 20th Century = Contrib. Econ. Evolution of Markets for Water: Theory and Practice in Australia = New Horiz Environ Ec Evolution of Markets for Water: Theory and Practice in Australia = New. Horiz. Environ. Ec. Evolution of Massive Stars, Mass Loss and Winds = Eas Publications Evolution of Massive Stars, Mass Loss and Winds = Eas. Publications. Evolution of Metabolic Pathways = Recent Adv Phytochem Evolution of Metabolic Pathways = Recent. Adv. Phytochem. Evolution of Microsurgery = Dev Ophthalmol Evolution of Microsurgery = Dev. Ophthalmol. Evolution of Non-expected Utility Preferences = Lect Notes Econ Math Evolution of Non-expected Utility Preferences = Lect. Notes. Econ. Math. Evolution of Nordic Finance = Palgr Mac Stud Bank Evolution of Nordic Finance = Palgr. Mac. Stud. Bank. Evolution of Scientific Knowledge = New Hor Inst Evol Ec Evolution of Scientific Knowledge = New. Hor. Inst. Evol. Ec. Evolution of Scientific Knowledge = New Horiz Inst Evol Evolution of Scientific Knowledge = New. Horiz. Inst. Evol. Evolution of Silicon Sensor Technology in Particle Physics = Springer Tr Mod Phys Evolution of Silicon Sensor Technology in Particle Physics = Springer. Tr. Mod. Phys. Evolution of Starbursts = Aip Conf Proc Evolution of Starbursts = Aip. Conf. Proc. Evolution of Stars : The Photospheric Abundance Connection = Iau Symp Evolution of Stars : The Photospheric Abundance Connection = Iau. Symp. Evolution of Subterranean Mammals At The Organismal and Molecular Levels = Prog Clin Biol Res Evolution of Subterranean Mammals At The Organismal and Molecular Levels = Prog. Clin. Biol. Res. Evolution of Surface and Thin Film Microstructure = Mater Res Soc Symp P Evolution of Surface and Thin Film Microstructure = Mater. Res. Soc. Symp. P. Evolution of The Earth and Planets = Geoph Monog Series Evolution of The Earth and Planets = Geoph. Monog. Series. Evolution of The First Nervous Systems = Nato Adv Sci I A-lif Evolution of The First Nervous Systems = Nato. Adv. Sci. I. A-lif. Evolution of The Levant Margin and Western Arabia Platform Since The Mesozoic = Geol Soc Spec Publ Evolution of The Levant Margin and Western Arabia Platform Since The Mesozoic = Geol. Soc. Spec. Publ. Evolution of The Milky Way = Astrophys Space Sc L Evolution of The Milky Way = Astrophys. Space. Sc. L. Evolution of The Psyche = Hum Ev Beh & Intell Evolution of The Psyche = Hum. Ev. Beh. &. Intell. Evolution of The Rheic Ocean: From Avalonian-cadomian Active Margin to Alleghenian-variscan Collision = Geol Soc Am Spec Pap Evolution of The Rheic Ocean: From Avalonian-cadomian Active Margin to Alleghenian-variscan Collision = Geol. Soc. Am. Spec. Pap. Evolution of The Universe of Galaxies = Astr Soc P Evolution of The Universe of Galaxies = Astr. Soc. P. Evolution of The Us Airline Industry: Theory, Strategy and Policy = Stud Ind Organ Evolution of The Us Airline Industry: Theory, Strategy and Policy = Stud. Ind. Organ. Evolution of The Web in Artificial Intelligence Environments = Stud Comput Intell Evolution of The Web in Artificial Intelligence Environments = Stud. Comput. Intell. Evolution of Thin-film and Surface Microstructure = Mater Res Soc Symp P Evolution of Thin-film and Surface Microstructure = Mater. Res. Soc. Symp. P. Evolution of Thin Film and Surface Structure and Morphology = Mater Res Soc Symp P Evolution of Thin Film and Surface Structure and Morphology = Mater. Res. Soc. Symp. P. Evolution of Thin Film Morphology: Modeling and Simulations = Springer Ser Mater S Evolution of Thin Film Morphology: Modeling and Simulations = Springer. Ser. Mater. S. Evolution of X-ray Binaries = Aip Conf Proc Evolution of X-ray Binaries = Aip. Conf. Proc. Evolution Psychiatrique = Evol Psychiatr Evolution Psychiatrique = Evol. Psychiatr. Evolution Psychiatrique = Evol. Psychiatr. (Paris) Evolution Und Menschwerdung = Nova Act Lc Evolution Und Menschwerdung = Nova. Act. Lc. Evolution, Variation, and Classification of Palms = Mem New York Botan G Evolution, Variation, and Classification of Palms = Mem. New. York. Botan. G. Evolvable Systems: From Biology to Hardware = Lect Notes Comput Sc Evolvable Systems: From Biology to Hardware = Lect. Notes. Comput. Sc. Evolvable Systems: From Biology to Hardware, Proceedings = Lect Notes Comput Sc Evolvable Systems: From Biology to Hardware, Proceedings = Lect. Notes. Comput. Sc. Evolving American Presidency = Evol Am Presid Evolving American Presidency = Evol. Am. Presid. Evolving Arab City: Tradition, Modernity and Urban Development = Plan Hist Environ Se Evolving Arab City: Tradition, Modernity and Urban Development = Plan. Hist. Environ. Se. Evolving Continents: Understanding Processes of Continental Growth = Geol Soc Spec Publ Evolving Continents: Understanding Processes of Continental Growth = Geol. Soc. Spec. Publ. Evolving Fuzzy Systems - Methodologies, Advanced Concepts and Applications = Stud Fuzz Soft Comp Evolving Fuzzy Systems - Methodologies, Advanced Concepts and Applications = Stud. Fuzz. Soft. Comp. Evolving Methods for Macromolecular Crystallography = Nato Sci Ser Ii Math Evolving Methods for Macromolecular Crystallography = Nato. Sci. Ser. Ii. Math. Evolving Models of Language = Brit S Ap L Evolving Models of Language = Brit. S. Ap. L. Evolving Openmp in An Age of Extreme Parallelism = Lect Notes Comput Sc Evolving Openmp in An Age of Extreme Parallelism = Lect. Notes. Comput. Sc. Evolving Roles and Expectations of Steelmaking Refractories = Mcmaster S Evolving Roles and Expectations of Steelmaking Refractories = Mcmaster. S. Evolving Sun and Its Influence On Planetary Environments, Proceedings = Astr Soc P Evolving Sun and Its Influence On Planetary Environments, Proceedings = Astr. Soc. P. Evolving Technologies for The Competitive Edge, Books 1 and 2 = Int Sampe Tech Conf Evolving Technologies for The Competitive Edge, Books 1 and 2 = Int. Sampe. Tech. Conf. Evolving Transportation Networks = Transp Res Econ Pol Evolving Transportation Networks = Transp. Res. Econ. Pol. Evolving Undergraduate Major = Am Acad Pe Evolving Undergraduate Major = Am. Acad. Pe. E-voting and Identity = Lect Notes Comput Sc E-voting and Identity = Lect. Notes. Comput. Sc. E-voting and Identity, Proceedings = Lect Notes Comput Sc E-voting and Identity, Proceedings = Lect. Notes. Comput. Sc. Ew 103: Tactical Battlefield Communications Electronic Warfare = Artech Hse Elec Rad Ew 103: Tactical Battlefield Communications Electronic Warfare = Artech. Hse. Elec. Rad. Eweek = Eweek Ework and Ebusiness in Architecture, Engineering and Construction = Proc Monogr Eng Wate Ework and Ebusiness in Architecture, Engineering and Construction = Proc. Monogr. Eng. Wate. Exact Exponential Algorithms = Texts Theor Comput S Exact Exponential Algorithms = Texts. Theor. Comput. S. Exact Treatment of Finite-dimensional and Infinite-dimensional Quantum Systems = Math Res Dev Exact Treatment of Finite-dimensional and Infinite-dimensional Quantum Systems = Math. Res. Dev. Examinations : Comparative and International Studies = Comp Int Ed Examinations : Comparative and International Studies = Comp. Int. Ed. Examining The Big Bang and Diffuse Background Radiations = Iau Symp Examining The Big Bang and Diffuse Background Radiations = Iau. Symp. Examples of Resource Inventory and Monitoring in National Parks of California = Usdi Tran P Examples of Resource Inventory and Monitoring in National Parks of California = Usdi. Tran. P. Excavaciones arqueológicas en España = EAE Excavations and Surveys in Israel = ExcIsr Excavations at Gözlü Kule, Tarsus = Tarsus Excavations at Olynthus = Olynthus Excavations of the Athenian Agora. Picture Book = AgoraPB Exceedingly Nietzsche: Aspects of Contemporary Nietzsche-interpretation, Vol 4 = Rout Libr Ed-friedri Exceedingly Nietzsche: Aspects of Contemporary Nietzsche-interpretation, Vol 4 = Rout. Libr. Ed-friedri. Excellence in Higher Education = Wenn Gr Int Excellence in Higher Education = Wenn. Gr. Int. Exceptional children = Except Child Exceptional Children = Except. Child. Exceptional Children = Except Children Exceptional Children = Except. Children Exceptionalism and The Politics of Counter-terrorism = Routl Stud Lib Secur Exceptionalism and The Politics of Counter-terrorism = Routl. Stud. Lib. Secur. Exceptionality = Exceptionality Exceptionally Preserved Conchostracans and Other Crustaceans From The Upper Carboniferous of Ireland = Spec Pap Palaeontol Exceptionally Preserved Conchostracans and Other Crustaceans From The Upper Carboniferous of Ireland = Spec. Pap. Palaeontol. Excerpta medica = Excerpta Med Excerpta medica. Section 12, Ophthalmology = Excerpta Med (Ophthalmol) Excerpta medica. Section 13, Dermatology and venereology = Excerpta Med (Dermatol) Excerpta medica. Section 15, Chest diseases = Excerpta Medica 15 Chest Dis Excerpta medica. Section 20, Gerontology and geriatrics = Excerpta Medica 20 Gerontol Geriatr Excerpta medica. Section 28, Urology and nephrology = Excerpta Med (Urol) Excerpta philologica = ExcPhilol Exchange of Trace Gases Between Terrestrial Ecosystems and The Atmosphere = Life Sci R Exchange of Trace Gases Between Terrestrial Ecosystems and The Atmosphere = Life. Sci. R. Exchange-organizational Behavior Teaching Journal = Exchange Exchange-organizational Behavior Teaching Journal = Exchange. Exchange Processes At The Land Surface for A Range of Space and Time Scales = Iahs-aish P Exchange Processes At The Land Surface for A Range of Space and Time Scales = Iahs-aish. P. Exchange Rate Policy in Europe = Appl Econom Ass Ser Exchange Rate Policy in Europe = Appl. Econom. Ass. Ser. Exchange Rates and Macroeconomic Dynamics = Appl Economet Ass Se Exchange Rates and Macroeconomic Dynamics = Appl. Economet. Ass. Se. Excimer Laser Materials Processing and Beam Delivery Systems = P Soc Photo-opt Ins Excimer Laser Materials Processing and Beam Delivery Systems = P. Soc. Photo-opt. Ins. Excimer Lasers and Applications Iii = P Soc Photo-opt Ins Excimer Lasers and Applications Iii = P. Soc. Photo-opt. Ins. Excimer Lasers and Applications Ii = P Soc Photo-opt Ins Excimer Lasers and Applications Ii = P. Soc. Photo-opt. Ins. Excimer Lasers : Applications, Beam Delivery Systems, and Laser Design = P Soc Photo-opt Ins Excimer Lasers : Applications, Beam Delivery Systems, and Laser Design = P. Soc. Photo-opt. Ins. Excimer Lasers = Nato Adv Sci Inst Se Excimer Lasers = Nato. Adv. Sci. Inst. Se. Excimer Lasers, Optics, and Applications = P Soc Photo-opt Ins Excimer Lasers, Optics, and Applications = P. Soc. Photo-opt. Ins. Excitation-contraction Coupling in Skeletal, Cardiac, and Smooth Muscle = Adv Exp Med Biol Excitation-contraction Coupling in Skeletal, Cardiac, and Smooth Muscle = Adv. Exp. Med. Biol. Excitations in Two-dimensional and Three-dimensional Quantum Fluids = Nato Adv Sci I B-phy Excitations in Two-dimensional and Three-dimensional Quantum Fluids = Nato. Adv. Sci. I. B-phy. Excitatory Amino Acids and Brain Ischemia = Adv Biosci Excitatory Amino Acids and Brain Ischemia = Adv. Biosci. Excitatory Amino Acids: Ten Years Later = Biomed Health Res Excitatory Amino Acids: Ten Years Later = Biomed. Health. Res. Excitatory Amino Acids: Ten Years Later = Biom Hlth R Excitatory Amino Acids: Ten Years Later = Biom. Hlth. R. Excited Polaron States in Condensed Media = Proc Nonlin Excited Polaron States in Condensed Media = Proc. Nonlin. Excited States = Excited States Excli Journal = Excli J Excli Journal = Excli J. Exclusion and Hierarchy: Orthodoxy, Nonobservance, and The Emergence of Modern Jewish Identity = Jew Cult Context Exclusion and Hierarchy: Orthodoxy, Nonobservance, and The Emergence of Modern Jewish Identity = Jew. Cult. Context. Exclusionary Politics of Asylum = Migrat Minor Citizen Exclusionary Politics of Asylum = Migrat. Minor. Citizen. Exclusive Production of Neutral Vector Mesons At The Electron-proton Collider Hera = Springer Tr Mod Phys Exclusive Production of Neutral Vector Mesons At The Electron-proton Collider Hera = Springer. Tr. Mod. Phys. Excrement in The Late Middle Ages: Sacred Filth and Chaucer's Fecopoetics = New Middle Ages Excrement in The Late Middle Ages: Sacred Filth and Chaucer's Fecopoetics = New. Middle Ages. Executable Modal and Temporal Logics = Lect Notes Artif Int Executable Modal and Temporal Logics = Lect. Notes. Artif. Int. Execution Techniques, True Trading Costs, and The Microstructure of Markets = Icfa Cont Educ Ser Execution Techniques, True Trading Costs, and The Microstructure of Markets = Icfa. Cont. Educ. Ser. Executive Agency Revolution in Whitehall: Public Interest Versus Bureau-shaping Perspectives = Transform Gov Executive Agency Revolution in Whitehall: Public Interest Versus Bureau-shaping Perspectives = Transform. Gov. Executive Functions and The Frontal Lobes: A Lifespan Perspective = Stud Neuropsychol Ne Executive Functions and The Frontal Lobes: A Lifespan Perspective = Stud. Neuropsychol. Ne. Executive housekeeper = Exec Housekeeper Executive Housekeeper = Exec. Housekeeper Executive Housekeeping Today = Exec. Housekeep. Today Executive housekeeping today / the official magazine of the National Executive Housekeepers Association = Exec Housekeep Today Executive intelligence review = Exec Intell Rev Executive solutions for healthcare management = Exec Solut Healthc Manag Executive Solutions for Healthcare Management = Exec. Solut. Healthc. Manag. Exemplaria-a Journal of Theory in Medieval and Renaissance Studies = Exemplaria Exemplaria-a Journal of Theory in Medieval and Renaissance Studies = Exemplaria. Exemplifikationen Und Regelbeispiele: Eine Untersuchung Zum 100-jahrigen Beitrag Von Adolf Wach Zur Legislativen Technik = Schr Juris Zeitgesch Exemplifikationen Und Regelbeispiele: Eine Untersuchung Zum 100-jahrigen Beitrag Von Adolf Wach Zur Legislativen Technik = Schr. Juris. Zeitgesch. Exercise and Sport Sciences Reviews = Exercise Sport Sci R Exercise and Sport Sciences Reviews = Exercise Sport Sci. R. Exercise and sport sciences reviews = Exerc Sport Sci Rev Exercise and Sport Sciences Reviews=Exerc Sport Sci Rev;; Exercise and Sport Sciences Reviews = Exerc Sport Sci Rev Exercise and Sport Sciences Reviews = Exerc. Sport Sci. Rev. Exercise and Sport Sciences Reviews/series = Exercise Sport Sci R Exercise and Sport Sciences Reviews/series = Exercise Sport Sci. R. Exercise and Sport Sciences Reviews, Volume 28, 1998 = Exercise Sport Sci R Exercise and Sport Sciences Reviews, Volume 28, 1998 = Exercise Sport Sci. R. Exercise, Calories, Fat, and Cancer = Adv Exp Med Biol Exercise, Calories, Fat, and Cancer = Adv. Exp. Med. Biol. Exercise Genomics = Mol Transl Med Exercise Genomics = Mol. Transl. Med. Exercise immunology review = Exerc Immunol Rev Exercise Immunology Review=Exerc Immunol Rev;; Exercise Immunology Review = Exerc Immunol Rev Exercise Immunology Review = Exerc. Immunol. Rev. Exercise of Public Authority By International Institutions = Beitr Ausl Offentl R Exercise of Public Authority By International Institutions = Beitr. Ausl. Offentl. R. Exercise Standards and Malpractice Reporter = Exerc Stand Malpract Exercise Standards and Malpractice Reporter = Exerc. Stand. Malpract. Exeter Maritime Studies = Exet Mari S Exeter Maritime Studies = Exet. Mari. S. Exhaled Biomarkers = Eur Respir Monogr Exhaled Biomarkers = Eur. Respir. Monogr. Exhumation Associated With Continental Strike-slip Fault Systems = Geol Soc Am Spec Pap Exhumation Associated With Continental Strike-slip Fault Systems = Geol. Soc. Am. Spec. Pap. Exile and Return Among The East Timorese = Contemp Ethnogr Exile and Return Among The East Timorese = Contemp. Ethnogr. Exilees, Marginal Figures and Pariahs in Francophone Literature = Coll Dont Act Exilees, Marginal Figures and Pariahs in Francophone Literature = Coll. Dont. Act. Exile = Exile Exiles, Emigres and Intermediaries: Anglo-italian Cultural Transactions = Int For Lit Exiles, Emigres and Intermediaries: Anglo-italian Cultural Transactions = Int. For. Lit. Exiles, Emigres and Intermediaries: Anglo-italian Cultural Transactions = Int Forsch Allg Vgl Exiles, Emigres and Intermediaries: Anglo-italian Cultural Transactions = Int. Forsch. Allg. Vgl. Exiles Traveling = Amst Beitr Neuer Ger Exiles Traveling = Amst. Beitr. Neuer. Ger. Ex-im Bank in The 21st Century: A New Approach? = Sr Inst Int Ex-im Bank in The 21st Century: A New Approach? = Sr. Inst. Int. Existence and Regularity Properties of The Integrated Density of States of Random Schrodinger Operators = Lect Notes Math Existence and Regularity Properties of The Integrated Density of States of Random Schrodinger Operators = Lect. Notes. Math. Existence, Historical Fabulation, Destiny = Analecta Husserl Existence, Historical Fabulation, Destiny = Analecta. Husserl. Existence: Semantics and Syntax = Stud Linguist Philos Existence: Semantics and Syntax = Stud. Linguist. Philos. Existential Graphs of Charles S. Peirce = Approach Appl Semiot Existential Graphs of Charles S. Peirce = Approach. Appl. Semiot. Existentialism of Jean-paul Sartre = Rout Stud Tw Cen Phi Existentialism of Jean-paul Sartre = Rout. Stud. Tw. Cen. Phi. Existenzproblematik Und Erzahlstrategie: Studien Zum Parabolischen Erzahlen in Der Kurzprosa Von Ernst Weiss = Stud Deut Lit Existenzproblematik Und Erzahlstrategie: Studien Zum Parabolischen Erzahlen in Der Kurzprosa Von Ernst Weiss = Stud. Deut. Lit. Exit-architecture: Design Between War and Peace = Trace Transm Rhetor Exit-architecture: Design Between War and Peace = Trace. Transm. Rhetor. Exo-/astro-biology = Esa Spec Publ Exo-/astro-biology = Esa. Spec. Publ. Exo-/astro-biology = Esa Sp Publ Exo-/astro-biology = Esa. Sp. Publ. Exocyclic Dna Adducts in Mutagenesis and Carcinogenesis = Iarc Sci Publ Exocyclic Dna Adducts in Mutagenesis and Carcinogenesis = Iarc. Sci. Publ. Exogenous Dermatology = Curr Probl Dermatol Exogenous Dermatology = Curr. Probl. Dermatol. Exogenous Factors in Colonic Carcinogenesis = Falk Symp Exogenous Factors in Colonic Carcinogenesis = Falk. Symp. Exoplanet Atmospheres: Physical Processes = Pr S Astrop Exoplanet Atmospheres: Physical Processes = Pr. S. Astrop. Exoplanets and Disks: Their Formation and Diversity = Aip Conf Proc Exoplanets and Disks: Their Formation and Diversity = Aip. Conf. Proc. Exoplanets: Detection, Formation, Properties, Habitability = Springer-prax Books Exoplanets: Detection, Formation, Properties, Habitability = Springer-prax. Books. Exoskeletons in Rehabilitation Robotics: Tremor Suppression = Springer Trac Adv Ro Exoskeletons in Rehabilitation Robotics: Tremor Suppression = Springer. Trac. Adv. Ro. Exotic Ants = Westv Stud Exotic Ants = Westv. Stud. Exotic Aquatic Organisms in Asia = Asian Fish Soc Spec Exotic Aquatic Organisms in Asia = Asian. Fish. Soc. Spec. Exotic Clustering = Aip Conf Proc Exotic Clustering = Aip. Conf. Proc. Exotic Nuclear Excitations = Springer Trac Mod Ph Exotic Nuclear Excitations = Springer. Trac. Mod. Ph. Exotic Nuclear Systems = Aip Conf Proc Exotic Nuclear Systems = Aip. Conf. Proc. Exotic Nuclei and Nuclear /particle Astrophysics (ii) = Aip Conf Proc Exotic Nuclei and Nuclear /particle Astrophysics (ii) = Aip. Conf. Proc. Exotic Nuclei and Nuclear - Particle Astrophysics Iii: From Nuclei to Stars = Aip Conf Proc Exotic Nuclei and Nuclear - Particle Astrophysics Iii: From Nuclei to Stars = Aip. Conf. Proc. Exotic Pet Practice = Exot Pet Pract Exotic Pet Practice = Exot. Pet Pract. Exotic Stars As Challenges to Evolution, Proceedings = Astr Soc P Exotic Stars As Challenges to Evolution, Proceedings = Astr. Soc. P. Expanding Access to Health Care: A Management Approach = Transform Tr Gov Dem Expanding Access to Health Care: A Management Approach = Transform. Tr. Gov. Dem. Expanding Colleges and New Universities = Acta Univ U Expanding Colleges and New Universities = Acta. Univ. U. Expanding Frontiers of Global Trade Rules: The Political Economy Dynamics of The International Trading System = Routl Stud Mod World Expanding Frontiers of Global Trade Rules: The Political Economy Dynamics of The International Trading System = Routl. Stud. Mod. World. Expanding Indications for The New Macrolides, Azalides, and Streptogramins = Infec Dis T Expanding Indications for The New Macrolides, Azalides, and Streptogramins = Infec. Dis. T. Expanding Roles for Horticulture in Improving Human Well-being and Life Quality = Acta Hortic Expanding Roles for Horticulture in Improving Human Well-being and Life Quality = Acta. Hortic. Expanding The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 and 2 = Inform Comm Tech Kno Expanding The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 and 2 = Inform. Comm. Tech. Kno. Expanding The Production and Use of Cool Season Food Legumes = Curr Plant Sci Biot Expanding The Production and Use of Cool Season Food Legumes = Curr. Plant. Sci. Biot. Expanding Worlds of General Relativity = Einstein St Expanding Worlds of General Relativity = Einstein. St. Expansion of Trade and Fdi in Asia = Rout Contemp Asia Expansion of Trade and Fdi in Asia = Rout. Contemp. Asia Expansion of Trade and Fdi in Asia = Routl Contemp Asia Expansion of Trade and Fdi in Asia = Routl. Contemp. Asia Expansions and Asymptotics for Statistics = Monogr Stat Appl Pro Expansions and Asymptotics for Statistics = Monogr. Stat. Appl. Pro. Expected Effects of Climatic Change On Marine Coastal Ecosystems = Dev Hydrob Expected Effects of Climatic Change On Marine Coastal Ecosystems = Dev. Hydrob. Expedition = Expedition Expedition. The Magazine of Archaeology, Anthropology = Expedition Experience of Economic Redistribution: The Growth, Employment and Redistribution Strategy in South Africa = Afr Stud-hist Polit Experience of Economic Redistribution: The Growth, Employment and Redistribution Strategy in South Africa = Afr. Stud-hist. Polit. Experience, Reality, and Scientific Explanation = W Ont Ser Philos Sci Experience, Reality, and Scientific Explanation = W. Ont. Ser. Philos. Sci. Experiences With Community Action Projects: New Research in The Prevention of Alcohol & Other Drug Problems = Csap Prevent Monogr Experiences With Community Action Projects: New Research in The Prevention of Alcohol & Other Drug Problems = Csap. Prevent. Monogr. Experience With The Management of Software Projects 1992 = Ann R Aut P Experience With The Management of Software Projects 1992 = Ann. R. Aut. P. Experientia = Experientia Experientia Supplementa = Exper Suppl Experientia Supplementa = Exper. Suppl. Experientia Supplementa = Exp Suppl Experientia Supplementa = Exp. Suppl. Experientia Supplementum = Experientia Suppl Experientia Supplementum = Experientia Suppl. Experientia. Supplementum = Experientia Suppl Experientia. Supplementum = Experientia. Suppl. Experimental aging research = Exp Aging Res Experimental Aging Research=Exp Aging Res;; Experimental Aging Research = Exp Aging Res Experimental Aging Research = Exp. Aging Res. Experimental Agriculture = Exp Agr Experimental Agriculture = Exp. Agr. Experimental Agriculture = Exp. Agric. Experimental Algorithmics = Lect Notes Comput Sc Experimental Algorithmics = Lect. Notes. Comput. Sc. Experimental Algorithms, Proceedings = Lect Notes Comput Sc Experimental Algorithms, Proceedings = Lect. Notes. Comput. Sc. Experimental and Applied Acarology=Exp Appl Acarol;; Experimental and Applied Acarology = Exp Appl Acarol Experimental and Applied Acarology = Exp. Appl. Acarol. Experimental and Clinical Endocrinology and Diabetes = Exp. Clin. Endocrinol. Diabetes Experimental and Clinical Endocrinology And Diabetes=Exp Clin Endocrinol Diabetes;; Experimental and Clinical Endocrinology & Diabetes = Exp Clin Endocr Diab Experimental and Clinical Endocrinology & Diabetes = Exp. Clin. Endocr. Diab. Experimental and Clinical Endocrinology & Diabetes = Exp. Clin. Endocrinol. Diabetes Experimental and clinical endocrinology & diabetes : official journal, German Society of Endocrinology [and] German Diabetes Association = Exp Clin Endocrinol Diabetes Experimental and clinical endocrinology = Exp Clin Endocrinol Experimental and Clinical Endocrinology = Exp Clin Endocrinol Experimental and Clinical Endocrinology = Exp. Clin. Endocrinol. Experimental and Clinical Hepatology = Int Congr Ser Experimental and Clinical Hepatology = Int. Congr. Ser. Experimental and clinical immunogenetics = Exp Clin Immunogenet Experimental and Clinical Immunogenetics=Exp Clin Immunogenet;; Experimental and Clinical Immunogenetics = Exp Clin Immunogenet Experimental and Clinical Immunogenetics = Exp. Clin. Immunogenet. Experimental and Clinical Liver Transplantation = Int Congr Ser Experimental and Clinical Liver Transplantation = Int. Congr. Ser. Experimental and Clinical Neuroscience = Exp Clin Ne Experimental and Clinical Neuroscience = Exp. Clin. Ne. Experimental and Clinical Psychopharacology = Exp. Clin. Psychopharmacol. Experimental and Clinical Psychopharmacology = Exp Clin Psychopharm Experimental and Clinical Psychopharmacology = Exp. Clin. Psychopharm. Experimental and clinical psychopharmacology = Exp Clin Psychopharmacol Experimental and Clinical Psychopharmacology=Exp Clin Psychopharmacol;; Experimental and Clinical Psychopharmacology = Exp. Clin. Psychopharmacol. Experimental and Clinical Transplantation = Exp Clin Transplant Experimental and Clinical Transplantation = Exp. Clin. Transplant. Experimental and clinical transplantation : official journal of the Middle East Society for Organ Transplantation = Exp Clin Transplant Experimental and Efficienct Algorithms, Proceedings = Lect Notes Comput Sc Experimental and Efficienct Algorithms, Proceedings = Lect. Notes. Comput. Sc. Experimental and Efficient Algorithms = Lect Notes Comput Sc Experimental and Efficient Algorithms = Lect. Notes. Comput. Sc. Experimental and Efficient Algorithms, Proceedings = Lect Notes Comput Sc Experimental and Efficient Algorithms, Proceedings = Lect. Notes. Comput. Sc. Experimental and Molecular Approaches to Plant Biosystematics = Monog Syst Botan Experimental and Molecular Approaches to Plant Biosystematics = Monog. Syst. Botan. Experimental and Molecular Medicine = Exp Mol Med Experimental and Molecular Medicine = Exp. Mol. Med. Experimental and molecular pathology = Exp Mol Pathol Experimental and Molecular Pathology=Exp Mol Pathol;; Experimental and Molecular Pathology = Exp Mol Pathol Experimental and Molecular Pathology = Exp. Mol. Pathol. Experimental and Numerical Methods for Solving Ill-posed Inverse Problems: Medical and Nonmedical Applications = P Soc Photo-opt Ins Experimental and Numerical Methods for Solving Ill-posed Inverse Problems: Medical and Nonmedical Applications = P. Soc. Photo-opt. Ins. Experimental and Numerical Methods in Earthquake Engineering = Euro Reliab Experimental and Numerical Methods in Earthquake Engineering = Euro. Reliab. Experimental and Theoretical Advances in Biological Pattern Formation = Nato Adv Sci Inst Se Experimental and Theoretical Advances in Biological Pattern Formation = Nato. Adv. Sci. Inst. Se. Experimental and Theoretical Investigations of Steel-fibrous Concrete = Springer Ser Geomech Experimental and Theoretical Investigations of Steel-fibrous Concrete = Springer. Ser. Geomech. Experimental and Theoretical Studies of Consciousness = Ciba F Symp Experimental and Theoretical Studies of Consciousness = Ciba. F. Symp. Experimental and Therapeutic Medicine = Exp Ther Med Experimental and Therapeutic Medicine = Exp. Ther. Med. Experimental and Toxicologic Pathology=Exp Toxicol Pathol;; Experimental and Toxicologic Pathology = Exp Toxicol Pathol Experimental and Toxicologic Pathology = Exp. Toxicol. Pathol. Experimental and toxicologic pathology : official journal of the Gesellschaft fur Toxikologische Pathologie = Exp Toxicol Pathol Experimental Animals=Exp Anim;; Experimental Animals = Exp. Anim. Experimental Animals = Exp Anim Tokyo Experimental Animals = Exp. Anim. Tokyo. Experimental animals / Japanese Association for Laboratory Animal Science = Exp Anim Experimental & applied acarology = Exp Appl Acarol Experimental & Applied Acarology = Exp Appl Acarol Experimental & Applied Acarology = Exp. Appl. Acarol. Experimental Approaches to Anxiety and Depression = Biol Coun S Experimental Approaches to Anxiety and Depression = Biol. Coun. S. Experimental Approaches to Diabetic Retinopathy = Front Diabetes Experimental Approaches to Diabetic Retinopathy = Front. Diabetes. Experimental Astronomy = Exp Astron Experimental Astronomy = Exp. Astron. Experimental Biology and Medicine = Exp Biol M Experimental Biology and Medicine = Exp. Biol. M. Experimental biology and medicine = Exp Biol Med Experimental Biology and Medicine = Exp Biol Med Experimental Biology and Medicine = Exp. Biol. Med. Experimental biology and medicine (Maywood, N.J.) = Exp Biol Med (Maywood) Experimental Biology and Medicine (Maywood, NJ, United States) = Exp. Biol. Med. (Maywood, NJ, U. S.) Experimental biology = Exp Biol Experimental Biology = Exp Biol Experimental Biology = Exp. Biol. Experimental Biology Reviews = Exptl Biol Rev Experimental Biology Reviews = Exptl. Biol. Rev. Experimental Botany = Exp. Bot. Experimental Brain Research=Exp Brain Res;; Experimental Brain Research = Exp Brain Res Experimental Brain Research = Exp. Brain Res. Experimental brain research. Experimentelle Hirnforschung. Experimentation cerebrale = Exp Brain Res Experimental Brain Research Series = Exp Br Res Experimental Brain Research Series = Exp. Br. Res. Experimental cell biology = Exp Cell Biol Experimental Cell Biology = Exp Cell Biol Experimental Cell Biology = Exp. Cell Biol. Experimental cell research = Exp Cell Res Experimental Cell Research=Exp Cell Res;; Experimental Cell Research = Exp Cell Res Experimental Cell Research = Exp. Cell Res. Experimental Cell Research = Exp. Cell. Res. Experimental cell research. Supplement = Exp Cell Res Suppl Experimental Chaos = Aip Conf Proc Experimental Chaos = Aip. Conf. Proc. Experimental Cosmology At Millimetre Wavelengths = Aip Conf Proc Experimental Cosmology At Millimetre Wavelengths = Aip. Conf. Proc. Experimental dermatology = Exp Dermatol Experimental Dermatology=Exp Dermatol;; Experimental Dermatology = Exp Dermatol Experimental Dermatology = Exp. Dermatol. Experimental diabesity research = Exp Diabesity Res Experimental Diabesity Research = Exp Diabesity Res Experimental Diabesity Research = Exp. Diabesity Res. Experimental diabetes research = Exp Diabetes Res Experimental Diabetes Research = Exp Diabetes Res Experimental Diabetes Research = Exp. Diabetes Res. Experimental Economics = Exp Econ Experimental Economics = Exp. Econ. Experimental Economics=Exper. Econ. Experimental embryology and teratology = Exp Embryol Teratol Experimental Embryology and Teratology = Exp. Embryol. Teratol. Experimental Embryology in Aquatic Plants and Animals = Nato Adv Sci I A-lif Experimental Embryology in Aquatic Plants and Animals = Nato. Adv. Sci. I. A-lif. Experimental eye research = Exp Eye Res Experimental Eye Research=Exp Eye Res;; Experimental Eye Research = Exp Eye Res Experimental Eye Research = Exp. Eye Res. Experimental Fluid Mechanics = Exp Fluid Mech Experimental Fluid Mechanics = Exp. Fluid Mech. Experimental gerontology = Exp Gerontol Experimental Gerontology=Exp Gerontol;; Experimental Gerontology = Exp Gerontol Experimental Gerontology = Exp. Gerontol. Experimental Headache Models = Fr Head Res Experimental Headache Models = Fr. Head. Res. Experimental Heat Transfer = Exp Heat Transfer Experimental Heat Transfer = Exp. Heat Transfer Experimental Heat Transfer, Fluid Mechanics and Thermodynamics, 1993, Vols 1 and 2 = Els Ser Therm Fluid Experimental Heat Transfer, Fluid Mechanics and Thermodynamics, 1993, Vols 1 and 2 = Els. Ser. Therm. Fluid Experimental hematology = Exp Hematol Experimental Hematology=Exp Hematol;; Experimental Hematology = Exp Hematol Experimental Hematology = Exp. Hematol. Experimental Horticulture = Exp Hortic Experimental Horticulture = Exp. Hortic. Experimental lung research = Exp Lung Res Experimental Lung Research=Exp Lung Res;; Experimental Lung Research = Exp Lung Res Experimental Lung Research = Exp. Lung Res. Experimental Mathematics = Experiment. Math. Experimental Mathematics = Exp Math Experimental Mathematics = Exp. Math. Experimental Mechanics = Exp Mech Experimental Mechanics = Exp. Mech. Experimental Mechanics in Nano and Biotechnology, Pts 1 and 2 = Key Eng Mat Experimental Mechanics in Nano and Biotechnology, Pts 1 and 2 = Key. Eng. Mat. Experimental Mechanics in Nano and Biotechnology, Pts 1 and 2 = Key Eng Mater Experimental Mechanics in Nano and Biotechnology, Pts 1 and 2 = Key. Eng. Mater. Experimental Mechanics : Technology Transfer Between High Tech Engineering and Biomechanics = Clin Asp B Experimental Mechanics : Technology Transfer Between High Tech Engineering and Biomechanics = Clin. Asp. B. Experimental Mechanics, Theoretical and Experimental Research = Vdi Bericht Experimental Mechanics, Theoretical and Experimental Research = Vdi. Bericht. Experimental medicine and surgery = Exp Med Surg Experimental Medicine and Surgery = Exp Med Surg Experimental Medicine and Surgery = Exp. Med. Surg. Experimental Methods in Engine Research and Development 91 = Imeche Sem Experimental Methods in Engine Research and Development 91 = Imeche. Sem. Experimental Methods in Hydraulic Research = Geoplanet-earth Plan Experimental Methods in Hydraulic Research = Geoplanet-earth. Plan. Experimental Models for Renal Diseases: Pathogenesis and Diagnosis = Contrib Nephrol Experimental Models for Renal Diseases: Pathogenesis and Diagnosis = Contrib. Nephrol. Experimental Models in Obstetrics and Gynecology = Adv Gyn Obs Experimental Models in Obstetrics and Gynecology = Adv. Gyn. Obs. Experimental & molecular medicine = Exp Mol Med Experimental mycology = Exp Mycol Experimental Mycology = Exp Mycol Experimental Mycology = Exp. Mycol. Experimental Nations: Or, The Invention of The Maghreb = Transl Transnat Experimental Nations: Or, The Invention of The Maghreb = Transl. Transnat. Experimental nephrology = Exp Nephrol Experimental Nephrology=Exp Nephrol;; Experimental Nephrology = Exp Nephrol Experimental Nephrology = Exp. Nephrol. Experimental neurology = Exp Neurol Experimental Neurology=Exp Neurol;; Experimental Neurology = Exp Neurol Experimental Neurology = Exp. Neurol. Experimental neurology. Supplement = Exp Neurol Suppl Experimental Nuclear Physics in Europe = Aip Conf Proc Experimental Nuclear Physics in Europe = Aip. Conf. Proc. Experimental oncology = Exp Oncol Experimental Oncology = Exp Oncol Experimental Oncology = Exp. Oncol. Experimental parasitology = Exp Parasitol Experimental Parasitology=Exp Parasitol;; Experimental Parasitology = Exp Parasitol Experimental Parasitology = Exp. Parasitol. Experimental pathology = Exp Pathol Experimental Pathology = Exp. Pathol. Experimental Pathology = Exp Pathol-jena Experimental Pathology = Exp. Pathol-jena. Experimental Pathology. Supplement = Exp. Pathol. Suppl. Experimental physiology = Exp Physiol Experimental Physiology=Exp Physiol;; Experimental Physiology = Exp Physiol Experimental Physiology = Exp. Physiol. Experimental Plant Virology = Adv Top Sci Tech Chi Experimental Plant Virology = Adv. Top. Sci. Tech. Chi. Experimental Pragmatics = Palg Stud Pragm Lang Experimental Pragmatics = Palg. Stud. Pragm. Lang. Experimental psychology = Exp Psychol Experimental Psychology = Exp Psychol Experimental Psychology = Exp. Psychol. Experimental Reports of Equine Health Laboratory = Exp Rep Equine Heal Experimental Reports of Equine Health Laboratory = Exp. Rep. Equine Heal. Experimental Robotics Ix = Springer Trac Adv Ro Experimental Robotics Ix = Springer. Trac. Adv. Ro. Experimental Robotics Ix = Spr Tra Adv Robot Experimental Robotics Ix = Spr. Tra. Adv. Robot. Experimental Robotics = Springer Trac Adv Ro Experimental Robotics = Springer. Trac. Adv. Ro. Experimental Robotics = Spr Tra Adv Robot Experimental Robotics = Spr. Tra. Adv. Robot. Experimental Robotics Viii = Springer Trac Adv Ro Experimental Robotics Viii = Springer. Trac. Adv. Ro. Experimental Robotics Viii = Spr Tra Adv Robot Experimental Robotics Viii = Spr. Tra. Adv. Robot. Experimental Robotics Vii = Lect Notes Contr Inf Experimental Robotics Vii = Lect. Notes. Contr. Inf. Experimental Robotics Vi = Lect Notes Contr Inf Experimental Robotics Vi = Lect. Notes. Contr. Inf. Experimental Robotics V = Lect Notes Contr Inf Experimental Robotics V = Lect. Notes. Contr. Inf. Experimental Techniques and Design in Composite Materials 3 = Key Eng Mat Experimental Techniques and Design in Composite Materials 3 = Key. Eng. Mat. Experimental Techniques and Design in Composite Materials 3 = Key Eng Mater Experimental Techniques and Design in Composite Materials 3 = Key. Eng. Mater. Experimental Techniques and Design in Composite Materials 5 = Key Eng Mat Experimental Techniques and Design in Composite Materials 5 = Key. Eng. Mat. Experimental Techniques and Design in Composite Materials 5 = Key Eng Mater Experimental Techniques and Design in Composite Materials 5 = Key. Eng. Mater. Experimental Techniques = Exp. Tech. Experimental Techniques = Exp Techniques Experimental Techniques = Exp. Techniques Experimental Thermal and Fluid Science = Exp Therm Fluid Sci Experimental Thermal and Fluid Science = Exp. Therm Fluid Sci. Experimental Thermal and Fluid Science = Exp. Therm. Fluid Sci. Experimental Unsaturated Soil Mechanics = Springer Proc Phys Experimental Unsaturated Soil Mechanics = Springer. Proc. Phys. Experiment and Natural Philosophy in Seventeenth-century Tuscany: The History of The Accademia Del Cimento = St Hist Phil Sci Ser Experiment and Natural Philosophy in Seventeenth-century Tuscany: The History of The Accademia Del Cimento = St. Hist. Phil. Sci. Ser. Experimentelle Medizin, Pathologie und Klinik = Exp Med Pathol Klin Experimentelle Medizin, Pathologie und Klinik = Exp. Med. Pathol. Klin. Experimentelle Pathologie = Exp Pathol-jena Experimentelle Pathologie = Exp. Pathol-jena. Experimentelle Pathologie = Exp Pathol (Jena) Experimentelle Pathologie = Exp. Pathol. (Jena) Experimentelle Technik der Physik = Exp. Tech. Phys. Experimenting With Dynamic Macromodels: Growth and Cycles = Lect Notes Econ Math Experimenting With Dynamic Macromodels: Growth and Cycles = Lect. Notes. Econ. Math. Experiments in Catalytic Reaction Engineering = Stud Surf Sci Catal Experiments in Catalytic Reaction Engineering = Stud. Surf. Sci. Catal. Experiments in Fluids = Exp Fluids Experiments in Fluids = Exp. Fluids Experiments in Unit Operations and Processing of Foods = Iseki-food Experiments in Unit Operations and Processing of Foods = Iseki-food. Expert Fuzzy Information Processing = Stud Fuzz Soft Comp Expert Fuzzy Information Processing = Stud. Fuzz. Soft. Comp. Expertise: Research and Applications = Exp Res Appl Expertise: Research and Applications = Exp. Res. Appl. Expert Opinion On Biological Therapy = Expert Opin Biol Th Expert Opinion On Biological Therapy = Expert Opin. Biol. Th. Expert opinion on biological therapy = Expert Opin Biol Ther Expert Opinion on Biological Therapy = Expert Opin. Biol. Ther. Expert Opinion On Drug Delivery = Expert Opin Drug Del Expert Opinion On Drug Delivery = Expert Opin. Drug Del. Expert opinion on drug delivery = Expert Opin Drug Deliv Expert Opinion on Drug Delivery = Expert Opin. Drug Deliv. Expert Opinion On Drug Discovery = Expert Opin Drug Dis Expert Opinion On Drug Discovery = Expert Opin. Drug Dis. Expert Opinion on Drug Discovery = Expert Opin. Drug Discovery Expert Opinion on Drug Metabolism and Toxicology = Expert Opin. Drug Metab. Toxicol. Expert Opinion On Drug Metabolism & Toxicology = Expert Opin Drug Met Expert Opinion On Drug Metabolism & Toxicology = Expert Opin. Drug Met. Expert opinion on drug metabolism & toxicology = Expert Opin Drug Metab Toxicol Expert Opinion on Drug Metabolism & Toxicology = Expert Opin. Drug Metab. Toxicol. Expert Opinion on Drug Metabolsim & Toxicology = Expert Opin. Drug Metabol. Toxicol. Expert opinion on drug safety = Expert Opin Drug Saf Expert Opinion on Drug Safety = Expert Opin. Drug Saf. Expert Opinion On Drug Safety = Expert Opin Drug Saf Expert Opinion On Drug Safety = Expert Opin. Drug Saf. Expert Opinion On Emerging Drugs = Expert Opin Emerg Dr Expert Opinion On Emerging Drugs = Expert Opin. Emerg. Dr. Expert opinion on emerging drugs = Expert Opin Emerg Drugs Expert Opinion on Emerging Drugs = Expert Opin. Emerg. Drugs Expert Opinion On Investigational Drugs = Expert Opin Inv Drug Expert Opinion On Investigational Drugs = Expert Opin. Inv. Drug. Expert Opinion on Investigational Drugs = Expert Opin. Invest. Drugs Expert opinion on investigational drugs = Expert Opin Investig Drugs Expert Opinion On Pharmacotherapy = Expert Opin Pharmaco Expert Opinion On Pharmacotherapy = Expert Opin. Pharmaco. Expert opinion on pharmacotherapy = Expert Opin Pharmacother Expert Opinion on Pharmacotherapy = Expert Opin. Pharmacother. Expert Opinion on Therapeutic Patents = Expert Opin. Ther. Pat. Expert Opinion On Therapeutic Patents = Expert Opin Ther Pat Expert Opinion On Therapeutic Patents = Expert Opin. Ther. Pat. Expert Opinion On Therapeutic Targets = Expert Opin Ther Tar Expert Opinion On Therapeutic Targets = Expert Opin. Ther. Tar. Expert opinion on therapeutic targets = Expert Opin Ther Targets Expert Opinion on Therapeutic Targets = Expert Opin. Ther. Targets Expert Psychological Testimony for The Courts = Clarem Bk Ser App So Expert Psychological Testimony for The Courts = Clarem. Bk. Ser. App. So. Expert Review of Anticancer Therapy = Expert Rev Anticanc Expert Review of Anticancer Therapy = Expert Rev. Anticanc. Expert review of anticancer therapy = Expert Rev Anticancer Ther Expert Review of Anticancer Therapy = Expert Rev. Anticancer Ther. Expert Review of Anti-infective Therapy = Expert Rev Anti-infe Expert Review of Anti-infective Therapy = Expert Rev. Anti-infe. Expert review of anti-infective therapy = Expert Rev Anti Infect Ther Expert Review of Anti-Infective Therapy = Expert Rev. Anti Infect. Ther. Expert review of cardiovascular therapy = Expert Rev Cardiovasc Ther Expert Review of Cardiovascular Therapy = Expert Rev. Cardiovasc. Ther. Expert Review of Clinical Immunology = Expert Rev Clin Immu Expert Review of Clinical Immunology = Expert Rev. Clin. Immu. Expert Review of Hematology = Expert Rev Hematol Expert Review of Hematology = Expert Rev. Hematol. Expert Review of Medical Devices = Expert Rev Med Devic Expert Review of Medical Devices = Expert Rev. Med. Devic. Expert review of medical devices = Expert Rev Med Devices Expert Review of Medical Devices = Expert Rev. Med. Devices Expert review of molecular diagnostics = Expert Rev Mol Diagn Expert Review of Molecular Diagnostics = Expert Rev Mol Diagn Expert Review of Molecular Diagnostics = Expert Rev. Mol. Diagn. Expert review of neurotherapeutics = Expert Rev Neurother Expert Review of Neurotherapeutics = Expert Rev Neurother Expert Review of Neurotherapeutics = Expert Rev. Neurother. Expert review of ophthalmology = Expert Rev Ophthalmol Expert Review of Proteomics = Expert Rev Proteomic Expert Review of Proteomics = Expert Rev. Proteomic. Expert review of proteomics = Expert Rev Proteomics Expert Review of Proteomics = Expert Rev. Proteomics Expert review of vaccines = Expert Rev Vaccines Expert Review of Vaccines = Expert Rev Vaccines Expert Review of Vaccines = Expert Rev. Vaccines Expert reviews in molecular medicine = Expert Rev Mol Med Expert Reviews in Molecular Medicine = Expert Rev Mol Med Expert Reviews in Molecular Medicine = Expert Rev. Mol. Med. Expert Systems = Expert Syst Expert Systems = Expert Syst. Expert Systems for Environmental Applications = Acs Sym Ser Expert Systems for Environmental Applications = Acs. Sym. Ser. Expert Systems in Engineering = Lect Notes Artif Int Expert Systems in Engineering = Lect. Notes. Artif. Int. Expert Systems with Applications = Expert Syst. Appl. Expert Systems With Applications = Expert Syst Appl Expert Systems With Applications = Expert Syst. Appl. Explaining Change in Russian Foreign Policy: The Role of Ideas in Post-soviet Russias Conduct Towards The West = St Antonys Ser Explaining Change in Russian Foreign Policy: The Role of Ideas in Post-soviet Russias Conduct Towards The West = St. Antonys. Ser. Explaining Communication: Contemporary Theories and Exemplars = Lea Commun Ser Explaining Communication: Contemporary Theories and Exemplars = Lea. Commun. Ser. Explaining Federalism: State, Society and Congruence in Austria, Belgium, Canada, Germany and Switzerland = Routl Ser Fed Stud Explaining Federalism: State, Society and Congruence in Austria, Belgium, Canada, Germany and Switzerland = Routl. Ser. Fed. Stud. Explaining Games: The Epistemic Programme in Game Theory = Synth Libr Explaining Games: The Epistemic Programme in Game Theory = Synth. Libr. Explaining Global Poverty: A Critical Realist Approach = Routl Stud Crit Real Explaining Global Poverty: A Critical Realist Approach = Routl. Stud. Crit. Real. Explaining Individual Differences in Reading: Theory and Evidence = New Dir Commun D Res Explaining Individual Differences in Reading: Theory and Evidence = New. Dir. Commun. D. Res. Explaining War and Peace = Contemp Secur Stud Explaining War and Peace = Contemp. Secur. Stud. Explanation and Its Limits = Roy Inst Ph Explanation and Its Limits = Roy. Inst. Ph. Explanation: Theoretical Approaches and Applications = Synth Libr Explanation: Theoretical Approaches and Applications = Synth. Libr. Explicacion De Textos Literarios = Expl Textos Lit Explicacion De Textos Literarios = Expl. Textos Lit. Explicator = Explicator Explicit Stability Conditions for Continuous Systems: Functional Analytic Approach = Lect Notes Contr Inf Explicit Stability Conditions for Continuous Systems: Functional Analytic Approach = Lect. Notes. Contr. Inf. Explo 2007 Blasting: Techniques and Technology, Proceedings = Australas I Min Met Explo 2007 Blasting: Techniques and Technology, Proceedings = Australas. I. Min. Met. Explo 95 - Exploring The Role of Rock Breakage in Mining and Quarrying = Australas I Min Met Explo 95 - Exploring The Role of Rock Breakage in Mining and Quarrying = Australas. I. Min. Met. Explo'99: A Conference On Rock Breaking, Proceedings = Australas I Min Met Explo'99: A Conference On Rock Breaking, Proceedings = Australas. I. Min. Met. Exploitation of Fine-grain Parallelism = Lect Notes Comput Sc Exploitation of Fine-grain Parallelism = Lect. Notes. Comput. Sc. Exploitation of Linkage Learning in Evolutionary Algorithms = Adapt Learn Optim Exploitation of Linkage Learning in Evolutionary Algorithms = Adapt. Learn. Optim. Exploiting New Image Sources and Sensors, 26th Aipr Workshop = P Soc Photo-opt Ins Exploiting New Image Sources and Sensors, 26th Aipr Workshop = P. Soc. Photo-opt. Ins. Exploiting The Knowledge Economy: Issues, Applications and Case Studies, Pts 1 and 2 = Inform Comm Tech Kno Exploiting The Knowledge Economy: Issues, Applications and Case Studies, Pts 1 and 2 = Inform. Comm. Tech. Kno. Exploration and Meaning Making in The Learning of Science = Innov Sci Educ Techn Exploration and Meaning Making in The Learning of Science = Innov. Sci. Educ. Techn. Exploration and Mining Geology = Explor Min Geol Exploration and Mining Geology = Explor. Min. Geol. Exploration archéologique de Délos faite par l'École française d'Athènes = Delos Exploration Britain = Geol Soc Spec Publ Exploration Britain = Geol. Soc. Spec. Publ. Exploration Geophysics = Explor Geophys Exploration Geophysics = Explor. Geophys. Exploration of Lexicons = Ciral Pub B Exploration of Lexicons = Ciral. Pub. B. Exploration of Small Bodies in The Solar System: I. Initial Results and Future Prospects = Adv Space Res Exploration of Small Bodies in The Solar System: I. Initial Results and Future Prospects = Adv. Space. Res. Exploration of Small Bodies in The Solar System: I. Initial Results and Future Prospects = Adv Space Res-series Exploration of Small Bodies in The Solar System: I. Initial Results and Future Prospects = Adv. Space. Res-series. Exploration of Small Bodies in The Solar System: Related Laboratory and Modelling Studies = Adv Space Res Exploration of Small Bodies in The Solar System: Related Laboratory and Modelling Studies = Adv. Space. Res. Exploration of Small Bodies in The Solar System: Related Laboratory and Modelling Studies = Adv Space Res-series Exploration of Small Bodies in The Solar System: Related Laboratory and Modelling Studies = Adv. Space. Res-series. Exploration of Small Solar System Objects: Past, Present and Future = Adv Space Res Exploration of Small Solar System Objects: Past, Present and Future = Adv. Space. Res. Exploration of Small Solar System Objects: Past, Present and Future = Adv Space Res-series Exploration of Small Solar System Objects: Past, Present and Future = Adv. Space. Res-series. Exploration of The Deep Continental Crust = Exp Deep Co Exploration of The Deep Continental Crust = Exp. Deep Co. Exploration of Venus and Mars Atmospheres = Adv Space Res Exploration of Venus and Mars Atmospheres = Adv. Space. Res. Exploration of Venus and Mars Atmospheres = Adv Space Res-series Exploration of Venus and Mars Atmospheres = Adv. Space. Res-series. Explorations in Austrian Economics = Adv Aus Eco Explorations in Austrian Economics = Adv. Aus. Eco. Explorations in Austrian Economics = Adv Austrian Econ Explorations in Austrian Economics = Adv. Austrian Econ. Explorations in Communication and History = Shap Inq Cult Commun Explorations in Communication and History = Shap. Inq. Cult. Commun. Explorations in Corpus Linguistics = Lang Comput Explorations in Corpus Linguistics = Lang. Comput. Explorations in Daoism: Medicine and Alchemy in Literature = Needham Res Inst Ser Explorations in Daoism: Medicine and Alchemy in Literature = Needham. Res. Inst. Ser. Explorations in Economic History=Explorations Econ. Hist. Explorations in economic history = Explor Econ Hist Explorations in Economic History = Explor Econ Hist Explorations in Economic History = Explor. Econ. Hist. Explorations in Entrepreneurial History = Explor Entrepren His Explorations in Entrepreneurial History = Explor. Entrepren. His. Explorations in Harmonic Analysis: With Applications to Complex Function Theory and The Heisenberg Group = Appl Numer Harmon An Explorations in Harmonic Analysis: With Applications to Complex Function Theory and The Heisenberg Group = Appl. Numer. Harmon. An. Explorations in knowledge = Explor Knowl Explorations in Linguistic Relativity = Amst Stud Theory His Explorations in Linguistic Relativity = Amst. Stud. Theory. His. Explorations in Renaissance culture = Explor Renaiss Cult Explorations in Sociology = Expl Sociol Explorations in Sociology = Expl. Sociol. Explorations in Thai Tourism: Collected Case Studies = Tour Soc Sci Ser Explorations in Thai Tourism: Collected Case Studies = Tour. Soc. Sci. Ser. Explorations in The Learning Sciences Instructional Systems and Performance Technologies = Explor Learn Sci Explorations in The Learning Sciences Instructional Systems and Performance Technologies = Explor. Learn. Sci. Explorations of Educational Purpose = Explor Educ Purp Explorations of Educational Purpose = Explor. Educ. Purp. Explorations of Phase Theory: Features and Arguments = Inter Explor Explorations of Phase Theory: Features and Arguments = Inter. Explor. Explorations of Phase Theory: Features and Arguments = Interface Explor Explorations of Phase Theory: Features and Arguments = Interface. Explor. Explorations of Phase Theory: Interpretation At The Interfaces = Inter Explor Explorations of Phase Theory: Interpretation At The Interfaces = Inter. Explor. Explorations of Phase Theory: Interpretation At The Interfaces = Interface Explor Explorations of Phase Theory: Interpretation At The Interfaces = Interface. Explor. Explorations of The Life-world = Contr Phenomenol Explorations of The Life-world = Contr. Phenomenol. Explorations pyreneennes : bulletin trimestriel de la Societe Ramond = Bull Soc Ramond Exploratory Data Analysis in Empirical Research, Proceedings = St Class Dat Anal Exploratory Data Analysis in Empirical Research, Proceedings = St. Class. Dat. Anal. Exploratory Data Analysis in Empirical Research, Proceedings = Stud Class Data Anal Exploratory Data Analysis in Empirical Research, Proceedings = Stud. Class. Data Anal. Explore = Explore Explore (New York, N.Y.) = Explore (NY) Explorer = Explorer (Hayward) Explorer (Kansas City) = Explorer (Kansas City) Explorers journal = Explor J Explore-the Journal of Science and Healing = Explore-ny Explore-the Journal of Science and Healing = Explore-ny. Exploring A New Partnership: Children, Teachers and Technology = Ifip Trans A Exploring A New Partnership: Children, Teachers and Technology = Ifip. Trans. A Exploring Approaches to Research in The Animal Sciences in Vietnam = Aciar Proc Exploring Approaches to Research in The Animal Sciences in Vietnam = Aciar. Proc. Exploring Brain Functional Anatomy With Positron Tomography = Ciba F Symp Exploring Brain Functional Anatomy With Positron Tomography = Ciba. F. Symp. Exploring Classroom Discourse: Language in Action = Rout Introd Appl Lin Exploring Classroom Discourse: Language in Action = Rout. Introd. Appl. Lin. Exploring Cross-national Attraction in Education: Some Historical Comparisons of American and Chinese Attraction to Japanese Education = Oxf Stud Comp Educ Exploring Cross-national Attraction in Education: Some Historical Comparisons of American and Chinese Attraction to Japanese Education = Oxf. Stud. Comp. Educ. Exploring Digital Design: Multi-disciplinary Design Practices = Comput Supp Coop Wor Exploring Digital Design: Multi-disciplinary Design Practices = Comput. Supp. Coop. Wor. Exploring English Language Teaching: Language in Action = Rout Introd Appl Lin Exploring English Language Teaching: Language in Action = Rout. Introd. Appl. Lin. Exploring Intelligence Archives: Enquiries Into The Secret State = Stud Intell Exploring Intelligence Archives: Enquiries Into The Secret State = Stud. Intell. Exploring Interpersonal Dynamics = Res Occup Stress Wel Exploring Interpersonal Dynamics = Res. Occup. Stress. Wel. Exploring New Frontiers of Theoretical Informatics = Int Fed Info Proc Exploring New Frontiers of Theoretical Informatics = Int. Fed. Info. Proc. Exploring Positive Identities and Organizations: Building A Theoretical and Research Foundation = Ser Organ Manage Exploring Positive Identities and Organizations: Building A Theoretical and Research Foundation = Ser. Organ. Manage. Exploring Positive Relationships At Work: Building A Theoretical and Research Foundation = Leas Org Man Series Exploring Positive Relationships At Work: Building A Theoretical and Research Foundation = Leas. Org. Man. Series. Exploring Probability in School: Challenges for Teaching and Learning = Math Educ Lib Exploring Probability in School: Challenges for Teaching and Learning = Math. Educ. Lib. Exploring Services Science = Lect Notes Bus Inf Exploring Services Science = Lect. Notes. Bus. Inf. Exploring Services Science = Lect Notes Bus Inf P Exploring Services Science = Lect. Notes. Bus. Inf. P. Exploring The Body = Expl Sociol Exploring The Body = Expl. Sociol. Exploring The Cosmic Frontier = Eso Astrophy Symp Exploring The Cosmic Frontier = Eso. Astrophy. Symp. Exploring The Final Frontier: Issues, Plans and Funding for Nasa = Space Sci Explor Pol Exploring The Final Frontier: Issues, Plans and Funding for Nasa = Space. Sci. Explor. Pol. Exploring The Gamma-ray Universe = Esa Spec Publ Exploring The Gamma-ray Universe = Esa. Spec. Publ. Exploring The Gamma-ray Universe = Esa Sp Publ Exploring The Gamma-ray Universe = Esa. Sp. Publ. Exploring The Grand Challenges for Next Generation E-business = Lect Notes Bus Inf P Exploring The Grand Challenges for Next Generation E-business = Lect. Notes. Bus. Inf. P. Exploring The Hohokam = Am Fdn N W Exploring The Hohokam = Am. Fdn. N. W. Exploring The Networked Worlds of Popular Music = Routl Adv Sociol Exploring The Networked Worlds of Popular Music = Routl. Adv. Sociol. Exploring The Self = Adv Consc Res Exploring The Self = Adv. Consc. Res. Exploring The Solar System and The Universe = Aip Conf Proc Exploring The Solar System and The Universe = Aip. Conf. Proc. Exploring The Work and Non-work Interface = Res Occup Stress Wel Exploring The Work and Non-work Interface = Res. Occup. Stress. Wel. Exploring Venus As A Terrestrial Planet = Geophys Monogr Ser Exploring Venus As A Terrestrial Planet = Geophys. Monogr. Ser. Explosion, Shock Wave and Hypervelocity Phenomena in Materials Ii = Mater Sci Forum Explosion, Shock Wave and Hypervelocity Phenomena in Materials Ii = Mater. Sci. Forum. Explosion, Shock Wave and Hypervelocity Phenomena in Materials = Mater Sci Forum Explosion, Shock Wave and Hypervelocity Phenomena in Materials = Mater. Sci. Forum. Explosion Source Phenomenology = Geoph Monog Series Explosion Source Phenomenology = Geoph. Monog. Series. Explosive Phenomena in Astrophysical Compact Objects = Aip Conf Proc Explosive Phenomena in Astrophysical Compact Objects = Aip. Conf. Proc. Explosives Detection Using Magnetic and Nuclear Resonance Techniques = Nato Science Peace S Explosives Detection Using Magnetic and Nuclear Resonance Techniques = Nato. Science. Peace. S. Explosives in Mining Workshop : Explo 88 = Aust I Min Explosives in Mining Workshop : Explo 88 = Aust. I. Min. Exponential Distribution: Theory and Methods = Math Res Dev Exponential Distribution: Theory and Methods = Math. Res. Dev. Exponentially Convergent Algorithms for Abstract Differential Equations = Front Math Exponentially Convergent Algorithms for Abstract Differential Equations = Front. Math. Exponentially Dichotomous Operators and Applications = Oper Theory Adv Appl Exponentially Dichotomous Operators and Applications = Oper. Theory. Adv. Appl. Exposes and Excess: Muckraking in America, 1900 / 2000 = Pers Takes Exposes and Excess: Muckraking in America, 1900 / 2000 = Pers. Takes. Exposes annuels de biochimie medicale = Expos Annu Biochim Med Exposes Annuels de Biochimie Medicale = Expos. Annu. Biochim. Med. Expositiones Mathematicae = Expo Math Expositiones Mathematicae = Expo. Math. Expositiones Mathematicae = Exposition. Math. Expository Times = Expository Times Exposure and Risk Assessment of Chemical Pollution - Contemporary Methodology = Nato Sci Peace Secur Exposure and Risk Assessment of Chemical Pollution - Contemporary Methodology = Nato. Sci. Peace. Secur. Exposure Assessment for Epidemiology and Hazard Control = Ind Hyg Sci Exposure Assessment for Epidemiology and Hazard Control = Ind. Hyg. Sci. Expounding The Mathematical Seed, Vol 1: The Translation = Sci Netw Hist Stud Expounding The Mathematical Seed, Vol 1: The Translation = Sci. Netw. Hist. Stud. Expounding The Mathematical Seed, Vol 2: The Supplements = Sci Netw Hist Stud Expounding The Mathematical Seed, Vol 2: The Supplements = Sci. Netw. Hist. Stud. Expression and Interpretation of Negation: An Ot Typology = Stud Nat Lang Lingui Expression and Interpretation of Negation: An Ot Typology = Stud. Nat. Lang. Lingui. Expression of Cognitive Categories = Expr Cogn Categ Expression of Cognitive Categories = Expr. Cogn. Categ. Expression of Modality = Expr Cogn Categ Expression of Modality = Expr. Cogn. Categ. Expression of Possession = Expr Cogn Categ Expression of Possession = Expr. Cogn. Categ. Expression of Recombinant Genes in Eukaryotic Systems = Method Enzymol Expression of Recombinant Genes in Eukaryotic Systems = Method. Enzymol. Expression of Time = Expr Cogn Categ Expression of Time = Expr. Cogn. Categ. Expression Patterns of Matrix Genes During Human Skeletal Development = Prog Histochem Cytoc Expression Patterns of Matrix Genes During Human Skeletal Development = Prog. Histochem. Cytoc. Expressions Maghrebines = Expr Maghrebines Expressions Maghrebines = Expr. Maghrebines Expressions of Cambodia: The Politics of Tradition, Identity and Change = Routl Cont Se Asia S Expressions of Cambodia: The Politics of Tradition, Identity and Change = Routl. Cont. Se. Asia. S. Expressions of Drunkenness (four Hundred Rabbits) = Icap Ser Alcohol Soc Expressions of Drunkenness (four Hundred Rabbits) = Icap. Ser. Alcohol. Soc. Express Polymer Letters = Express Polym Lett Express Polymer Letters = Express Polym. Lett. Expulsion of The Jews: 1492 & After = Garl S Renais Expulsion of The Jews: 1492 & After = Garl. S. Renais. Exs = Exs EXS = EXS Ex Situ Biological Treatment Technologies = Bioremed Ser Ex Situ Biological Treatment Technologies = Bioremed. Ser. Extendable Rationality: Understanding Decision Making in Organizations = Organ Chang Innov Extendable Rationality: Understanding Decision Making in Organizations = Organ. Chang. Innov. Extended Clinical Consulting By Hospital Computer Networks = Ann Ny Acad Sci Extended Clinical Consulting By Hospital Computer Networks = Ann. Ny. Acad. Sci. Extended Defects in Germanium: Fundamental and Technological Aspects = Springer Ser Mater S Extended Defects in Germanium: Fundamental and Technological Aspects = Springer. Ser. Mater. S. Extended Density Functionals in Nuclear Structure Physics = Lect Notes Phys Extended Density Functionals in Nuclear Structure Physics = Lect. Notes. Phys. Extended Field of Operator Theory = Oper Theor Extended Field of Operator Theory = Oper. Theor. Extending A Continent: Architecture, Rheology and Heat Budget = Geol Soc Spec Publ Extending A Continent: Architecture, Rheology and Heat Budget = Geol. Soc. Spec. Publ. Extending Schumacher's Concept of Total Accounting and Accountability Into The 21st Century = Adv Public Inter Acc Extending Schumacher's Concept of Total Accounting and Accountability Into The 21st Century = Adv. Public. Inter. Acc. Extending The Horizons: Advances in Computing, Optimization, and Decision Technologies = Oper Res Comput Sci Extending The Horizons: Advances in Computing, Optimization, and Decision Technologies = Oper. Res. Comput. Sci. Extending The Reach of Powder Diffraction Modelling By User Defined Macros = Mater Sci Forum Extending The Reach of Powder Diffraction Modelling By User Defined Macros = Mater. Sci. Forum. Extending The Scope of Corpus-based Research: New Applications, New Challenges = Lang Comput Extending The Scope of Corpus-based Research: New Applications, New Challenges = Lang. Comput. Extensions of Logic Programming = Lect Notes Artif Int Extensions of Logic Programming = Lect. Notes. Artif. Int. Extensions of Moser-bangert Theory: Locally Minimal Solutions = Prog Nonlinear Diffe Extensions of Moser-bangert Theory: Locally Minimal Solutions = Prog. Nonlinear. Diffe. Extensive Livestock Breeding Operation = Etud Rech S Extensive Livestock Breeding Operation = Etud. Rech. S. External Controls On Deep-water Depositional Systems = Sepm Spec P External Controls On Deep-water Depositional Systems = Sepm. Spec. P. External Controls On Deep-water Depositional Systems = Soc Sediment Geol Sp External Controls On Deep-water Depositional Systems = Soc. Sediment. Geol. Sp. External Dimension of Eu Justice and Home Affairs: Governance, Neighbours, Security = Palgrave Stud Eur Un External Dimension of Eu Justice and Home Affairs: Governance, Neighbours, Security = Palgrave. Stud. Eur. Un. External Finance for Private Sector Development: Appraisals and Issues = Stud Dev Econ Policy External Finance for Private Sector Development: Appraisals and Issues = Stud. Dev. Econ. Policy. External Perceptions of The European Union As A Global Actor = Routl Garn Ser Eur W External Perceptions of The European Union As A Global Actor = Routl. Garn. Ser. Eur. W. Extracellular Matrix: An Overview = Biol Extracell Matr Extracellular Matrix: An Overview = Biol. Extracell. Matr. Extracellular Matrix Components and Integrins in Relationship to Human Intestinal Epithelial Cell Differentiation = Prog Histochem Cytoc Extracellular Matrix Components and Integrins in Relationship to Human Intestinal Epithelial Cell Differentiation = Prog. Histochem. Cytoc. Extracellular Matrix Components = Method Enzymol Extracellular Matrix Components = Method. Enzymol. Extracellular Matrix Components = Methods Enzymol Extracellular Matrix Components = Methods. Enzymol. Extracellular Matrix Degradation = Biol Extracell Matr Extracellular Matrix Degradation = Biol. Extracell. Matr. Extracellular Matrix in The Kidney = Contrib Nephrol Extracellular Matrix in The Kidney = Contrib. Nephrol. Extracellular Matrix of The Uterus, Cervix and Fetal Membranes : Synthesis, Degradation and Hormonal Regulation = Res Per Med Extracellular Matrix of The Uterus, Cervix and Fetal Membranes : Synthesis, Degradation and Hormonal Regulation = Res. Per. Med. Extracellular Nucleic Acids = Nucleic Acids Mol Bi Extracellular Nucleic Acids = Nucleic Acids Mol. Bi. Extracellular Nucleotides and Nucleosides: Release, Receptors, and Physiological and Pathophysiological Effects = Curr Top Membr Extracellular Nucleotides and Nucleosides: Release, Receptors, and Physiological and Pathophysiological Effects = Curr. Top. Membr. Extracellular Regulators of Differentiation and Development = Biochem Soc Symp Extracellular Regulators of Differentiation and Development = Biochem. Soc. Symp. Extracta Mathematicae = Extracta Math. Extracting Knowledge From Time Series: An Introduction to Nonlinear Empirical Modeling = Springer Ser Synerg Extracting Knowledge From Time Series: An Introduction to Nonlinear Empirical Modeling = Springer. Ser. Synerg. Extracting Meaning From Complex Data : Processing, Display, Interaction = P Soc Photo-opt Ins Extracting Meaning From Complex Data : Processing, Display, Interaction = P. Soc. Photo-opt. Ins. Extraction of Metabolites From Plant Tissues = Food Sci Technol Extraction of Metabolites From Plant Tissues = Food. Sci. Technol. Extraction, Refining, and Fabrication of Light Metals = Cim An Conf Extraction, Refining, and Fabrication of Light Metals = Cim. An. Conf. Extra Dimensions in Space and Time = Multiversal Journeys Extra Dimensions in Space and Time = Multiversal. Journeys. Extragalactic Background Radiation = Space Tel S Extragalactic Background Radiation = Space. Tel. S. Extragalactic Gas At Low Redshift = Astr Soc P Extragalactic Gas At Low Redshift = Astr. Soc. P. Extra-galactic Globular Cluster Systems = Eso Astrophy Symp Extra-galactic Globular Cluster Systems = Eso. Astrophy. Symp. Extragalactic Infrared Background and Its Cosmological Implications = Iau Symp Extragalactic Infrared Background and Its Cosmological Implications = Iau. Symp. Extragalactic Radio Sources = Iau Symp Extragalactic Radio Sources = Iau. Symp. Extragalactic Star Clusters = Iau Symp Extragalactic Star Clusters = Iau. Symp. Extrageniculostriate Mechanisms Underlying Visually-guided Orientation Behavior = Prog Brain Res Extrageniculostriate Mechanisms Underlying Visually-guided Orientation Behavior = Prog. Brain. Res. Extrahepatic Manifestations in Liver Diseases = Falk Symp Extrahepatic Manifestations in Liver Diseases = Falk. Symp. Extraordinary Brain = Extraordinary Brain Extraordinary Learning in The Workplace = Innov Chang Prof Edu Extraordinary Learning in The Workplace = Innov. Chang. Prof. Edu. Extra-planar Gas = Astr Soc P Extra-planar Gas = Astr. Soc. P. Extrapolation = Extrapolation Extrasolar Planets in Multi-body Systems: Theory and Observations = Eas Publications Extrasolar Planets in Multi-body Systems: Theory and Observations = Eas. Publications. Extrasolar Planets = Saas Fee Ad Extrasolar Planets = Saas. Fee. Ad. Extrasolar Planets: Today and Tomorrow = Astr Soc P Extrasolar Planets: Today and Tomorrow = Astr. Soc. P. Extraverted and Energized: Review and Tests of Stress Moderation and Mediation = Psychol Emot Motiv A Extraverted and Energized: Review and Tests of Stress Moderation and Mediation = Psychol. Emot. Motiv. A. Extremadura arqueológica = ExtremA Extreme Hydrological Events: New Concepts for Security = Nato Sci S Ss Iv Ear Extreme Hydrological Events: New Concepts for Security = Nato. Sci. S. Ss. Iv. Ear. Extreme Hydrological Events: Precipitation, Floods and Droughts = Iahs-aish P Extreme Hydrological Events: Precipitation, Floods and Droughts = Iahs-aish. P. Extremely Large Telescopes: Which Wavelengths? = Proc Spie Extremely Large Telescopes: Which Wavelengths? = Proc. Spie. Extremely Large Telescopes: Which Wavelengths? = P Soc Photo-opt Ins Extremely Large Telescopes: Which Wavelengths? = P. Soc. Photo-opt. Ins. Extreme Man-made and Natural Hazards in Dynamics of Structures = Nato Sci Peace Secur Extreme Man-made and Natural Hazards in Dynamics of Structures = Nato. Sci. Peace. Secur. Extreme Photonics and Applications = Nato Sci Peace Sec B Extreme Photonics and Applications = Nato. Sci. Peace. Sec. B. Extreme Programming and Agile Methods - Xp/agile Universe 2003 = Lect Notes Comput Sc Extreme Programming and Agile Methods - Xp/agile Universe 2003 = Lect. Notes. Comput. Sc. Extreme Programming and Agile Methods - Xp/ Agile Universe 2004, Proceedings = Lect Notes Comput Sc Extreme Programming and Agile Methods - Xp/ Agile Universe 2004, Proceedings = Lect. Notes. Comput. Sc. Extreme Programming and Agile Processes in Software Engineering, Proceedings = Lect Notes Comput Sc Extreme Programming and Agile Processes in Software Engineering, Proceedings = Lect. Notes. Comput. Sc. Extreme Proterozoic Geology, Geochemistry and Climate = Geoph Monog Series Extreme Proterozoic Geology, Geochemistry and Climate = Geoph. Monog. Series. Extreme Proterozoic Geology, Geochemistry and Climate = Geophys Monogr Ser Extreme Proterozoic Geology, Geochemistry and Climate = Geophys. Monogr. Ser. Extreme Right in Western Europe = Making Contemp World Extreme Right in Western Europe = Making. Contemp. World. Extremes = Extremes Extremes: Oceanography's Adventures At The Poles = Maury Worksh Hist Po Extremes: Oceanography's Adventures At The Poles = Maury. Worksh. Hist. Po. Extremes of The Extremes: Extraordinary Floods = Iahs-aish P Extremes of The Extremes: Extraordinary Floods = Iahs-aish. P. Extreme Solar Systems = Astr Soc P Extreme Solar Systems = Astr. Soc. P. Extreme Statistics in Nanoscale Memory Design = Integr Circuit Syst Extreme Statistics in Nanoscale Memory Design = Integr. Circuit. Syst. Extreme Stress and Communities: Impact and Intervention = Nato Adv Sci Inst Se Extreme Stress and Communities: Impact and Intervention = Nato. Adv. Sci. Inst. Se. Extreme Ultraviolet (euv) Lithography = P Soc Photo-opt Ins Extreme Ultraviolet (euv) Lithography = P. Soc. Photo-opt. Ins. Extreme Values in Finance, Telecommunications, and The Environment = Mg Stat Pro Extreme Values in Finance, Telecommunications, and The Environment = Mg. Stat. Pro. Extreme Values in Finance, Telecommunications, and The Environment = Monogr Stat Appl Pro Extreme Values in Finance, Telecommunications, and The Environment = Monogr. Stat. Appl. Pro. Extremophiles = Extremophiles Extremophiles : life under extreme conditions = Extremophiles Extremophiles = Method Microbiol Extremophiles = Method. Microbiol. Extremum Problems for Eigenvalues of Elliptic Operators = Front Math Extremum Problems for Eigenvalues of Elliptic Operators = Front. Math. Exxon Education Foundation Series On Rhetoric and Political Discourse = Ex Ed Fdn R Exxon Education Foundation Series On Rhetoric and Political Discourse = Ex. Ed. Fdn. R. Exxon Valdez Oil Spill: Fate and Effects in Alaskan Waters = Am Soc Test Mater Exxon Valdez Oil Spill: Fate and Effects in Alaskan Waters = Am. Soc. Test. Mater. Eye and Contact Lens = Eye Contact Lens Eye and Vision Research Developments = Eye Vis Res Dev Eye and Vision Research Developments = Eye Vis. Res. Dev. Eye Banking = Dev Ophthalmol Eye Banking = Dev. Ophthalmol. Eye & contact lens = Eye Contact Lens Eye & Contact Lens-science and Clinical Practice = Eye Contact Lens Eye & Contact Lens-science and Clinical Practice = Eye Contact Lens. Eye Ear Nose and Throat Monthly = Eye Ear Nose Throat Eye, Ear, Nose and Throat Monthly = Eye. Ear. Nose Throat Mon. Eye, ear, nose & throat monthly = Eye Ear Nose Throat Mon Eye=Eye;; Eye = Eye Eye Infections, Blindness and Myopia = Eye Vis Res Dev Eye Infections, Blindness and Myopia = Eye Vis. Res. Dev. Eye Lens Membranes and Aging = T Aging Res Eye Lens Membranes and Aging = T. Aging Res. Eye (London, England) = Eye Eye Movement Research = Stud Vis Inform Proc Eye Movement Research = Stud. Vis. Inform. Proc. Eye Research Developments: Glaucoma, Corneal Transplantation, and Bacterial Eye Infections = Eye Vis Res Dev Eye Research Developments: Glaucoma, Corneal Transplantation, and Bacterial Eye Infections = Eye Vis. Res. Dev. Eyesafe Lasers : Components, Systems, and Applications = P Soc Photo-opt Ins Eyesafe Lasers : Components, Systems, and Applications = P. Soc. Photo-opt. Ins. Eye's Aqueous Humor = Curr Top Membr Eye's Aqueous Humor = Curr. Top. Membr. Eye's Aqueous Humor, Edition 2 = Curr Top Membr Eye's Aqueous Humor, Edition 2 = Curr. Top. Membr. Eye-transactions of The Ophthalmological Societies of The United Kingdom = Eye Eye-transactions of The Ophthalmological Societies of The United Kingdom = Eye. Eye-transactions of The Ophthalmological Societies of The United Kingdom = Eye-t Ophth Soc Uk Eye-transactions of The Ophthalmological Societies of The United Kingdom = Eye-t. Ophth. Soc. Uk. Ezra Pound and Europe = Int For Lit Ezra Pound and Europe = Int. For. Lit. Ezra The Scribe: The Development of Ezra 7-10 and Nehemia 8 = Beih Z Alttest Wiss Ezra The Scribe: The Development of Ezra 7-10 and Nehemia 8 = Beih. Z. Alttest. Wiss. Faa/nasa En Route Noise Symposium = Nasa Conf P Faa/nasa En Route Noise Symposium = Nasa. Conf. P. Fabrication and Characterization in The Micro-nano Range: New Trends for Two and Three Dimensional Structures = Adv Struct Mat Fabrication and Characterization in The Micro-nano Range: New Trends for Two and Three Dimensional Structures = Adv. Struct. Mat. Fabrication and Properties of Lithium Ceramics Ii = Adv Ceramic Fabrication and Properties of Lithium Ceramics Ii = Adv. Ceramic. Fabrication of Long-length and Bulk High Termperature Superconductors = Ceram Trans Fabrication of Long-length and Bulk High Termperature Superconductors = Ceram. Trans. Fabrication Technology = Brit Cer Pr Fabrication Technology = Brit. Cer. Pr. Fabrication, Testing, and Reliability of Semiconductor Lasers Iii = P Soc Photo-opt Ins Fabrication, Testing, and Reliability of Semiconductor Lasers Iii = P. Soc. Photo-opt. Ins. Fabrication, Testing, and Reliability of Semiconductor Lasers Ii = P Soc Photo-opt Ins Fabrication, Testing, and Reliability of Semiconductor Lasers Ii = P. Soc. Photo-opt. Ins. Fabrication, Testing, and Reliability of Semiconductor Lasers = P Soc Photo-opt Ins Fabrication, Testing, and Reliability of Semiconductor Lasers = P. Soc. Photo-opt. Ins. Fabric Testing = Woodhead Publ Text Fabric Testing = Woodhead. Publ. Text. Fabrique Du Signe = Interlangues Fabrique Du Signe = Interlangues. Fabula = Fabula Facade Engineering - Outer Wall Cladding By Metal, Natural Stone, Glass, Ceramic, Fiber Cement : The New Din Standards = Vdi Bericht Facade Engineering - Outer Wall Cladding By Metal, Natural Stone, Glass, Ceramic, Fiber Cement : The New Din Standards = Vdi. Bericht. Face Biometrics for Personal Identification: Multi-sensory Multi-modal Systems = Signals Commun Techn Face Biometrics for Personal Identification: Multi-sensory Multi-modal Systems = Signals. Commun. Techn. Facelifts for Special Libraries: A Practical Guide to Revitalising Diverse Physical and Digital Spaces = Chandos Inf Prof Ser Facelifts for Special Libraries: A Practical Guide to Revitalising Diverse Physical and Digital Spaces = Chandos. Inf. Prof. Ser. Facets of Dyslexia and Its Remediation = Stud Vis Inform Proc Facets of Dyslexia and Its Remediation = Stud. Vis. Inform. Proc. Facial orthopedics and temporomandibular arthrology = Facial Orthop Temporomandibular Arthrol Facial Orthopedics and Temporomandibular Arthrology = Facial Orthop. Temporomandibular Arthrol. Facial plastic surgery clinics of North America = Facial Plast Surg Clin North Am Facial Plastic Surgery = Facial Plast Surg Facial Plastic Surgery = Facial Plast. Surg. Facial plastic surgery : FPS = Facial Plast Surg Facies = Facies Facilitative Glucose Transporters in Articular Chondrocytes = Adv Anat Embryol Cel Facilitative Glucose Transporters in Articular Chondrocytes = Adv. Anat. Embryol. Cel. Facilitative Leader in City Hall: Reexamining The Scope and Contributions = Am Soc Public Admin Facilitative Leader in City Hall: Reexamining The Scope and Contributions = Am. Soc. Public. Admin. Facility Location: Concepts, Models, Algorithms and Case Studies = Contrib Manag Sci Facility Location: Concepts, Models, Algorithms and Case Studies = Contrib. Manag. Sci. Facility Logistics: Approaches and Solutions to Next Generation Challenges = Resource Manag-crc Facility Logistics: Approaches and Solutions to Next Generation Challenges = Resource. Manag-crc. Facing Global Environmental Change: Environmental, Human, Energy, Food, Health and Water Security Concepts = Hexag Ser Hum Enviro Facing Global Environmental Change: Environmental, Human, Energy, Food, Health and Water Security Concepts = Hexag. Ser. Hum. Enviro. Facing The Challenge in The Asia-pacific Region = Celrl Oc Mg Ser Facing The Challenge in The Asia-pacific Region = Celrl. Oc. Mg. Ser. Facing The Challenge of Risk and Vulnerability in An Information Society = Ifip Trans A Facing The Challenge of Risk and Vulnerability in An Information Society = Ifip. Trans. A. Facing The East in The West: Images of Eastern Europe in British Literature, Film and Culture = Int For Lit Facing The East in The West: Images of Eastern Europe in British Literature, Film and Culture = Int. For. Lit. Facing The East in The West: Images of Eastern Europe in British Literature, Film and Culture = Int Forsch Allg Vgl Facing The East in The West: Images of Eastern Europe in British Literature, Film and Culture = Int. Forsch. Allg. Vgl. Facing The Multicore-challenge: Aspects of New Paradigms and Technologies in Parallel Computing = Lect Notes Comput Sc Facing The Multicore-challenge: Aspects of New Paradigms and Technologies in Parallel Computing = Lect. Notes. Comput. Sc. Facing The Other = Curzon Jew Philos S Facing The Other = Curzon. Jew. Philos. S. Facta Universitatis = Facta Univ. Ser. Math. Inform. Factoring Groups Into Subsets = Lect Notes Pure Appl Factoring Groups Into Subsets = Lect. Notes. Pure. Appl. Factorization and Integrable Systems = Oper Theor Factorization and Integrable Systems = Oper. Theor. Factorization and Integrable Systems = Oper Theory Adv Appl Factorization and Integrable Systems = Oper. Theory. Adv. Appl. Factorization in Integral Domains = Lect Notes Pure Appl Factorization in Integral Domains = Lect. Notes. Pure. Appl. Factorization of Matrix and Operator Functions: The State Space Method = Oper Theory Adv Appl Factorization of Matrix and Operator Functions: The State Space Method = Oper. Theory. Adv. Appl. Factor odontologico = Factor Odontol Factor Odontologico = Factor Odontol. Factors Influencing Mammalian Kidney Development: Implications for Health in Adult Life = Adv Anat Embryol Cel Factors Influencing Mammalian Kidney Development: Implications for Health in Adult Life = Adv. Anat. Embryol. Cel. Factors Limiting Symbiotic Nitrogen Fixation in The Mediterranean Basin = Colloq Inra Factors Limiting Symbiotic Nitrogen Fixation in The Mediterranean Basin = Colloq. Inra. Factors of Soil Formation: A Fiftieth Anniversary Retrospective = Sssa Spec Publ Factors of Soil Formation: A Fiftieth Anniversary Retrospective = Sssa. Spec. Publ. Factotum = Factotum Facts about infant feeding = Facts Infant Feed Facts, Fiction, and African Creative Imaginations = Routl Afr Stud Facts, Fiction, and African Creative Imaginations = Routl. Afr. Stud. Fact sheet (Center for Home Care Policy and Research (U.S.)) = Fact Sheet (Cent Home Care Policy Res) Fact sheets on Sweden = Fact Sheets Swed Facts, Research and Intervention in Geriatrics = Fact Res Interv Ger Facts, Research and Intervention in Geriatrics = Fact. Res. Interv. Ger. Faculty notes (New Orleans, La.) = Fac Notes (New Orleans La) Faenza. Bollettino del Museo internazionale delle ceramiche in Faenza. Rivista bimestrale di studi storici e di tecnica dell'arte ceramica = Faenza Fagopyrum : novosti o ajdi = buckwheat newsletter|Fagopyrum Fag tidsskriftet sykepleien = Fag Tidsskr Sykepleien Fag Tidsskriftet Sykepleien = Fag Tidsskr. Sykepleien Fa I Hsueh Tsa Chih Journal of Forensic Medicine (Shang-Hai=Fa I Hsueh Tsa Chih;; Failure Analysis and Fractography of Polymer Composites = Woodhead Publ Mater Failure Analysis and Fractography of Polymer Composites = Woodhead. Publ. Mater. Failure of American and British Propaganda in The Arab Middle East, 1945-1957 = Cold War Hist-palgr Failure of American and British Propaganda in The Arab Middle East, 1945-1957 = Cold. War. Hist-palgr. Failure Rate Modelling for Reliability and Risk = Springer Ser Reliab Failure Rate Modelling for Reliability and Risk = Springer. Ser. Reliab. Fair: Flexible Algorithms for Image Registration = Fund Algorithms Fair: Flexible Algorithms for Image Registration = Fund. Algorithms Fairness in Bargaining and Markets = Lect Notes Econ Math Fairness in Bargaining and Markets = Lect. Notes. Econ. Math. Fairness in International Trade = Int Soc Bus Econ Eth Fairness in International Trade = Int. Soc. Bus. Econ. Eth. Fair Value of Insurance Liabilities = Nyu Sa Ctr Ser F M I Fair Value of Insurance Liabilities = Nyu. Sa. Ctr. Ser. F. M. I. Faisceaux Pervers Des Cycles Evanescents Des Varietes De Drinfeld Et Groupes De Cohomologie Du Modele De Deligne-carayol = Mem Soc Math Fr Faisceaux Pervers Des Cycles Evanescents Des Varietes De Drinfeld Et Groupes De Cohomologie Du Modele De Deligne-carayol = Mem. Soc. Math. Fr. Faith and Impiety in Revolutionary Mexico = Stud Am Faith and Impiety in Revolutionary Mexico = Stud. Am. Faith and Order Papers = Faith Order Faith and philosophy : journal of the Society of Christian Philosophers = Faith Philos Faith and Well-being in Later Life: Linking Theories With Evidence in An Interdisciplinary Inquiry = Relig Spiritual Faith and Well-being in Later Life: Linking Theories With Evidence in An Interdisciplinary Inquiry = Relig. Spiritual. Faith Formation of The Laity in Catholic Schools: The Influence of Virtues and Spirituality Seminars = Res Relig Educ Faith Formation of The Laity in Catholic Schools: The Influence of Virtues and Spirituality Seminars = Res. Relig. Educ. Faith & Order Series = Faith Ord S Faith & Order Series = Faith Ord. S. Faith, Power, and Violence = Orient Christ Analec Faith, Power, and Violence = Orient. Christ. Analec. Faith to Creed = Faith Ord S Faith to Creed = Faith Ord. S. Faits et tendances = Fait Tend Fako de l'Funkcialaj Ekvacioj Japana Matematika Societo = Funkcial. Ekvac. Falklands Conflict Twenty Years On: Lessons for The Future = Sandhurst Conf Ser Falklands Conflict Twenty Years On: Lessons for The Future = Sandhurst. Conf. Ser. Falk Symposium = Falk Symp Falk Symposium = Falk Symp. Fall 2000 45th Annual Air Traffic Control Association Conference Proceedings = Atca Conf P Fall 2000 45th Annual Air Traffic Control Association Conference Proceedings = Atca. Conf. P. Fallible Authors: Chaucer's Pardoner and Wife of Bath = Middle Ages Ser Fallible Authors: Chaucer's Pardoner and Wife of Bath = Middle. Ages. Ser. Fall of Detente = Nobel Symp Fall of Detente = Nobel. Symp. Falls in Epileptic and Non-epileptic Seizures During Childhood = Mariani F P Falls in Epileptic and Non-epileptic Seizures During Childhood = Mariani. F. P. Familial Amyloidotic Polyneuropathy and Other Transthyretin Related Disorders = Arq Medicin Familial Amyloidotic Polyneuropathy and Other Transthyretin Related Disorders = Arq. Medicin. Familial cancer = Fam Cancer Familial Cancer = Fam Cancer Familial Cancer = Fam. Cancer Families, Ageing and Social Policy: Intergenerational Solidarity in European Welfare States = Glob Welf Families, Ageing and Social Policy: Intergenerational Solidarity in European Welfare States = Glob. Welf. Families in society : the journal of contemporary human services = Fam Soc Families in Society-the Journal of Contemporary Human Services = Fam Soc-j Contemp H Families in Society-the Journal of Contemporary Human Services = Fam. Soc-j. Contemp. H. Families in Society-the Journal of Contemporary Social Services = Fam Soc Families in Society-the Journal of Contemporary Social Services = Fam. Soc. Families of Conformally Covariant Differential Operators, Q-curvature and Holography = Prog Math Families of Conformally Covariant Differential Operators, Q-curvature and Holography = Prog. Math. Families, systems & health : the journal of collaborative family healthcare = Fam Syst Health Famille et developpement = Fam Dev Family and Child Mental Health Journal = Fam Child Ment Heal Family and Child Mental Health Journal = Fam. Child Ment. Heal. Family and Community Health = Fam. Community Health Family and conciliation courts review = Fam Concil Courts Rev Family and consumer sciences research journal / American Association of Family and Consumer Sciences = Fam Consum Sci Res J Family Art Therapy: Foundations of Theory and Practice = Fam Ther Counsel Family Art Therapy: Foundations of Theory and Practice = Fam. Ther. Counsel. Family Authorship and Romantic Print Culture = Palgrave Stud Enligh Family Authorship and Romantic Print Culture = Palgrave. Stud. Enligh. Family Business Review = Fam Bus Rev Family Business Review = Fam. Bus. Rev. Family circle (Mount Morris, Ill.) = Fam Circle Family & community health = Fam Community Health Family & Community Health = Fam Community Health Family & Community Health = Fam. Community Health Family Coordinator = Fam Coord Family Coordinator = Fam. Coord. Family Economics and Nutrition Review=Family Econ. Nutrition Rev. Family economics review = Fam Econ Rev Family Economics Review=Family Econ. Rev. Family = Family Family Farms: Survival and Prospect, A World-wide Analysis = Routl Stud Hum Geogr Family Farms: Survival and Prospect, A World-wide Analysis = Routl. Stud. Hum. Geogr. Family health = Fam Health Family Health = Fam. Health Family Health Psychology = S Ap Psyc S Family Health Psychology = S. Ap. Psyc. S. Family in America, Research Series = Fam Amer R Family in America, Research Series = Fam. Amer. R. Family in English Children's Literature = Child Lit Cult Family in English Children's Literature = Child. Lit. Cult. Family Investments in Children's Potential: Resources Parenting Behaviors That Promote Success = Mon Parent Family Investments in Children's Potential: Resources Parenting Behaviors That Promote Success = Mon. Parent. Family Issues in The 21st Century = Fam Iss 21st Century Family Issues in The 21st Century = Fam. Iss. 21st Century Family law (Chichester) = Family Law Family law quarterly = Fam Law Q Family Law Quarterly = Fam Law Quart Family Law Quarterly = Fam. Law Quart. Family law reports = Fam Law Rep Family law review = Fam Law Rev Family Life and Individual Welfare in Post-war Europe: Britain and Italy Compared = St Antonys Ser Family Life and Individual Welfare in Post-war Europe: Britain and Italy Compared = St. Antonys. Ser. Family Life and Youth Offending: Home Is Where The Hurt Is = Routl Adv Criminol Family Life and Youth Offending: Home Is Where The Hurt Is = Routl. Adv. Criminol. Family Life Coordinator = Fam Life Coodinator Family Life Coordinator = Fam. Life Coodinator. Family life educator = Fam Life Educ Family life matters = Fam Life Matters Family Life: Roles, Bonds and Impact = Fam Iss 21st Century Family Life: Roles, Bonds and Impact = Fam. Iss. 21st. Century. Family, Market and Community = Oecd Soc P Family, Market and Community = Oecd. Soc. P. Family matters (Melbourne, Vic.) = Fam Matters Family, Medical Decision-making, and Biotechnology = Philos Med Family, Medical Decision-making, and Biotechnology = Philos. Med. Family medicine = Fam Med Family Medicine=Fam Med;; Family Medicine = Fam Med Family Medicine = Fam. Med. Family planning digest = Fam Plann Dig Family planning = Fam Plann Family Planning = Fam. Plann. Family planning information service = Fam Plann Inf Serv Family planning perspectives = Fam Plann Perspect Family Planning Perspectives=Fam Plann Perspect;; Family Planning Perspectives = Fam Plann Perspect Family Planning Perspectives = Fam. Plann. Perspect. Family planning/population reporter; a review of State laws and policies = Fam Plann Popul Rep Family planning quarterly = Fam Plann Q Family planning resume = Fam Plann Resume Family planning today = Fam Plann Today Family planning world = Family Plan World Family practice = Fam Pract Family Practice=Fam Pract;; Family Practice = Fam Pract Family Practice = Fam. Pract. Family practice management = Fam Pract Manag Family Practice Management = Fam. Pract. Manag. Family practice news = Fam Pract News Family Practice Research Journal = Fam. Pract. Res. J. Family Practices in South Asian Muslim Families: Parenting in A Multi-faith Britain = Palgr Mac Stud Fam Family Practices in South Asian Muslim Families: Parenting in A Multi-faith Britain = Palgr. Mac. Stud. Fam. Family process = Fam Process Family Process=Fam Process;; Family Process = Fam Process Family Process = Fam. Process Family relations = Fam Relat Family Relations = Fam Relat Family Relations = Fam. Relat. Family School Community Partnership = Fam Sch Commun Part Family School Community Partnership = Fam. Sch. Commun. Part. Family systems medicine = Fam Syst Med Family Therapy and Counseling = Fam Ther Counsel Family Therapy and Counseling = Fam. Ther. Counsel. Family therapy = Fam Ther Family Transcultural Consultation: The Borders of Care = Fam Iss 21st Century Family Transcultural Consultation: The Borders of Care = Fam. Iss. 21st. Century. Family Urology = Fam Urol Family Violence Against Children = Prev Int Ch Family Violence Against Children = Prev. Int. Ch. Famplanco news = Famplanco News Fanfare-the Magazine for Serious Record Collectors = Fanfare Fanfare-the Magazine for Serious Record Collectors = Fanfare. Fantastic in France and Russia in The Nineteenth Century: in Pursuit of Hesitation = Stud Comp Lit Ser Fantastic in France and Russia in The Nineteenth Century: in Pursuit of Hesitation = Stud. Comp. Lit. Ser. Fantastic Odysseys = Contr Sci F Fantastic Odysseys = Contr. Sci. F. Fantasy of Family: Nineteenth-century Children's Literature and The Myth of The Domestic Ideal = Child Lit Cult Fantasy of Family: Nineteenth-century Children's Literature and The Myth of The Domestic Ideal = Child. Lit. Cult. Fao Animal Production and Health Paper = Fao Anim Pr Fao Animal Production and Health Paper = Fao Anim. Pr. Fao Expert Consultation On Fish Technology in Africa = Fao Fish Fao Fisheries Report = Fao Fish Fao Fisheries Report = Fao Fish. FAO food and nutrition paper = FAO Food Nutr Pap FAO Food and Nutrition Paper=FAO Food Nutr Pap;; FAO Food and Nutrition Paper = FAO Food Nutr. Pap. FAO food and nutrition series = FAO Food Nutr Ser FAO Food and Nutrition Series = FAO Food Nutr. Ser. FAO Forestry Development Paper = FAO For. Dev. Pap. Fao Land and Water Bulletin = Fao Land Water Bull Fao Land and Water Bulletin = Fao Land Water Bull. FAO nutritional studies = FAO Nutr Stud FAO Nutritional Studies = FAO Nutr. Stud. FAO nutrition meetings report series = FAO Nutr Meet Rep Ser FAO Nutrition Meetings Report Series = FAO Nutr. Meet. Rep. Ser. Fao Plant Production and Protection Paper = Fao Plant P Fao Plant Production and Protection Paper = Fao Plant P. Fao Plant Protection Bulletin = Fao Plant Protect B Fao Plant Protection Bulletin = Fao Plant Protect. B. Fao Research and Technology Paper = Fao Res Technol Pap Fao Research and Technology Paper = Fao Res. Technol. Pap. Fao Water Reports = Fao Water Rep Fao Water Reports = Fao Water Rep. Faraday discussions = Faraday Discuss Faraday Discussions=Faraday Discuss;; Faraday Discussions = Faraday Discuss Faraday Discussions = Faraday Discuss. Faraday discussions of the Chemical Society = Faraday Discuss Chem Soc Faraday Discussions of the Chemical Society = Faraday Discuss. Chem. Soc. Faraday Discussions of the Royal Society of Chemistry = Faraday Discuss. R. Soc. Chem. Faraday Special Discussions of the Chemical Society = Farday Spec. Discuss. Chem. Soc. Faraday Symposia of The Chemical Society = Faraday Symp Chem S Faraday Symposia of The Chemical Society = Faraday Symp. Chem. S. Faraday Symposium of the Chemical Society = Faraday Symp. Chem. Soc. Faraday Symposium of the Royal Society of Chemistry = Faraday Symp. R. Soc. Chem. Faraday Transactions = Faraday Trans. Far- and Near-field Optics: Physics and Information Processing = P Soc Photo-opt Ins Far- and Near-field Optics: Physics and Information Processing = P. Soc. Photo-opt. Ins. Far Eastern affairs = Far East Aff Far Eastern economic review = Far East Econ Rev Far Eastern Survey = Far East Sur Far Eastern Survey = Far East. Sur. Far East Journal of Applied Mathematics = Far East J. Appl. Math. Far East Journal of Mathematical Sciences = Far East J. Math. Sci. Farewell to Alms: A Brief Economic History of The World = Princ Econ Hist W Wo Farewell to Alms: A Brief Economic History of The World = Princ. Econ. Hist. W. Wo. Farewell to The Party Model: Independent Local Lists in East and West European Countries = Resource Manag-crc Farewell to The Party Model: Independent Local Lists in East and West European Countries = Resource. Manag-crc. Far-fetched Facts: A Parable of Development Aid = Inside Technol Far-fetched Facts: A Parable of Development Aid = Inside. Technol. Far Infrared and Submillimetre Universe = Esa Sp Publ Far Infrared and Submillimetre Universe = Esa. Sp. Publ. Far-infrared Workshop 2007 - Far-infrared and Submillimeter Emission of The Interstellar Medium: Models Meet Extragalactic and Galactic Observations = Eas Publications Far-infrared Workshop 2007 - Far-infrared and Submillimeter Emission of The Interstellar Medium: Models Meet Extragalactic and Galactic Observations = Eas. Publications. Farmaceuticky obzor = Farm Obz Farmaceutisk tidende = Farm Tid Farmaceutski glasnik = Farm Glas Farmacevtski vestnik = Farm Vestn Farmacia clinica = Farm Clin Farmacia = Farmacia Farmacia hospitalaria : organo oficial de expresion cientifica de la Sociedad Espanola de Farmacia Hospitalaria = Farm Hosp Farmacia nueva = Farm Nueva Farmacihistoriska sallskapets degrees arsskrift = Farmacihist Sallsk Ars Farmacja polska = Farm Pol Farmaco. Edizione Pratica = Farmaco. [Prat.] Farmaco-edizione Pratica = Farm Ed Prat Farmaco-edizione Pratica = Farm. Ed. Prat. Farmaco-edizione Scientifica = Farmaco Farmaco-edizione Scientifica = Farmaco. Farmaco-edizione Scientifica = Farmaco-ed Sci Farmaco-edizione Scientifica = Farmaco-ed. Sci. Farmaco. Edizione Scientifica = Farmaco. [Sci.] Farmaco=Farmaco;; Farmaco = Farmaco Farmacognosia; anales del Instituto Jose Celestino Mutis = Farmacognosia Farmacognosia = Farmacognosia Farmaco (Societa chimica italiana : 1989) = Farmaco Farmacoterapia actual = Farmacoter Actual Farmakologiia i toksikologiia = Farmakol Toksikol Farmakologiia i Toksikologiia = Farmakol. Toksikol. Farmakologiya I Toksikologiya = Farmakol Toksikol Farmakologiya I Toksikologiya = Farmakol. Toksikol. Farmakoterapi = Farmakoterapi Farm Animals Genetic Resources = Bsas Publ Farm Animals Genetic Resources = Bsas. Publ. Farm Animals : It Pays to Be Humane = Cas Paper Farm Animals : It Pays to Be Humane = Cas. Paper. Farmatsevtychnyi zhurnal = Farm Zh Farmatsevtychnyi Zhurnal = Farm. Zh. Farmatsiia = Farmatsiia Farmatsiia = Farmatsiia (Sofia) Farmatsiya (Moscow) = Farmatsiya (Moscow) Farm Building Progress = Farm Build Progr Farm Building Progress = Farm Build. Progr. Farm Building Research & Development Studies = Farm Build Res Dev S Farm Building Research & Development Studies = Farm Build. Res. Dev. S. Farm Chemicals and Croplife = Farm Chem Farm Chemicals and Croplife = Farm Chem. Farm Chemicals = Farm Chemicals Farm Communities At The Crossroads: Challenge and Resistance = Can Plain S Farm Communities At The Crossroads: Challenge and Resistance = Can. Plain. S. Farmers, Gene Banks and Crop Breeding: Economic Analyses of Diversity in Wheat, Maize and Rice = Nat Res Man Farmers, Gene Banks and Crop Breeding: Economic Analyses of Diversity in Wheat, Maize and Rice = Nat. Res. Man. Farming and Peasants in Latin America = Colloq Semi Farming and Peasants in Latin America = Colloq. Semi. Farming Forever: Technologies for Better Crop Production = Aatse Inv Symp Farming Forever: Technologies for Better Crop Production = Aatse. Inv. Symp. Farming for Health: Green-care Farming Across Europe and The United States of America = Wag Ur Fron Farming for Health: Green-care Farming Across Europe and The United States of America = Wag. Ur. Fron. Farm Quarterly = Farm Quart Farm Quarterly = Farm Quart. Far North: Plant Biodiversity and Ecology of Yakutia = Plant Veg Far North: Plant Biodiversity and Ecology of Yakutia = Plant Veg. FAR, The French-American review = Fr Am Rev Fascism and Neofascism: Critical Writings On The Radical Right in Europe = Stud Eur Culture His Fascism and Neofascism: Critical Writings On The Radical Right in Europe = Stud. Eur. Culture. His. Fascism and Political Theory = Rout Iss Contemp Pol Fascism and Political Theory = Rout. Iss. Contemp. Pol. Faseb Journal = Faseb J Faseb Journal = Faseb J. FASEB Journal=FASEB J;; FASEB Journal = FASEB J. Fasett = Fasett Fashion Theory-the Journal of Dress Body & Culture = Fash Theory Fashion Theory-the Journal of Dress Body & Culture = Fash. Theory. F.A.S. professional bulletin = FAS Prof Bull F.A.S. public interest report = FAS Public Interest Rep Fassung T Des Parzival Wolframs Von Eschenbach: Untersuchungen Zur Uberlieferung Und Zum Textprofil = Quell Forsch Lit Kul Fassung T Des Parzival Wolframs Von Eschenbach: Untersuchungen Zur Uberlieferung Und Zum Textprofil = Quell. Forsch. Lit. Kul. Fast Elementary Processes in Chemical and Biological Systems = Aip Conf Proc Fast Elementary Processes in Chemical and Biological Systems = Aip. Conf. Proc. Fastest, Highest, Strongest: A Critique of High-performance Sport = Routl Crit Stud Spor Fastest, Highest, Strongest: A Critique of High-performance Sport = Routl. Crit. Stud. Spor. Fast Food/slow Food: The Cultural Economy of The Global Food System = Soc Econ Anthropol M Fast Food/slow Food: The Cultural Economy of The Global Food System = Soc. Econ. Anthropol. M. Fast Fourier Transform: Algorithms and Applications = Signals Commun Techn Fast Fourier Transform: Algorithms and Applications = Signals. Commun. Techn. Fasti archaeologici = FA Fast Ion Transport in Solids = Nato Adv Sci Inst Se Fast Ion Transport in Solids = Nato. Adv. Sci. Inst. Se. Fast Motions in Biomechanics and Robotics: Optimization and Feedback Control = Lect Notes Contr Inf Fast Motions in Biomechanics and Robotics: Optimization and Feedback Control = Lect. Notes. Contr. Inf. Fastnachtspiel - Commedia Dellarte = Schlern Sch Fastnachtspiel - Commedia Dellarte = Schlern. Sch. Fast Simulation of Electro-thermal Mems: Efficient Dynamic Compact Models = Microtechnol Mems Fast Simulation of Electro-thermal Mems: Efficient Dynamic Compact Models = Microtechnol. Mems. Fast Software Encryption = Lect Notes Comput Sc Fast Software Encryption = Lect. Notes. Comput. Sc. Fast Software Encryption (revised Papers) = Lect Notes Comput Sc Fast Software Encryption (revised Papers) = Lect. Notes. Comput. Sc. Fast Solution of Discretized Optimization Problems = Int Ser Numer Math Fast Solution of Discretized Optimization Problems = Int. Ser. Numer. Math. Fast Solution of Discretized Optimization Problems = Int S Num M Fast Solution of Discretized Optimization Problems = Int. S. Num. M. Faszination Von Gewalt = Quell Forsch Lit Kul Faszination Von Gewalt = Quell. Forsch. Lit. Kul. Fatal Attractions: Protein Aggregates in Neurodegenerative Disorders = Res Per Alz Fatal Attractions: Protein Aggregates in Neurodegenerative Disorders = Res. Per. Alz. Fat and Cholesterol Reduced Foods : Technologies and Strategies = Adv Ap Biot Fat and Cholesterol Reduced Foods : Technologies and Strategies = Adv. Ap. Biot. Fate and Management of Turfgrass Chemicals = Acs Sym Ser Fate and Management of Turfgrass Chemicals = Acs. Sym. Ser. Fate of Chemical Pollutants = Oceanis S D Fate of Chemical Pollutants = Oceanis. S. D. Fate of Nutrients and Pesticides in The Urban Environment = Acs Sym Ser Fate of Nutrients and Pesticides in The Urban Environment = Acs. Sym. Ser. Fate of Persistent Organic Pollutants in The Environment = Nato Sci Peace Secur Fate of Persistent Organic Pollutants in The Environment = Nato. Sci. Peace. Secur. Fate of Persistent Organic Pollutants in The North Sea = Hamb Stud Marit Aff Fate of Persistent Organic Pollutants in The North Sea = Hamb. Stud. Marit. Aff. Fate of The Male Germ Cell = Adv Exp Med Biol Fate of The Male Germ Cell = Adv. Exp. Med. Biol. Fate of The Most Massive Stars, Proceedings = Astr Soc P Fate of The Most Massive Stars, Proceedings = Astr. Soc. P. Fathers and Mothers: Dilemmas of The Work-life Balance: A Comparative Study in Four European Countries = Soc Indic Res Ser Fathers and Mothers: Dilemmas of The Work-life Balance: A Comparative Study in Four European Countries = Soc. Indic. Res. Ser. Fatigue 2010 = Procedia Engineer Fatigue 2010 = Procedia. Engineer. Fatigue 93, Vols 1-3 = Int Fatig Ser Fatigue 93, Vols 1-3 = Int. Fatig. Ser. Fatigue = Adv Exp Med Biol Fatigue = Adv. Exp. Med. Biol. Fatigue Analysis = Vtt Symp Fatigue Analysis = Vtt. Symp. Fatigue and Fracture Mechanics: 28th Vol = Am Soc Test Mater Fatigue and Fracture Mechanics: 28th Vol = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics: 30th Volume = Am Soc Test Mater Fatigue and Fracture Mechanics: 30th Volume = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics: 31st Vol = Am Soc Test Mater Fatigue and Fracture Mechanics: 31st Vol = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics: 32nd Volume = Am Soc Test Mater Fatigue and Fracture Mechanics: 32nd Volume = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics: 33rd Volume = Am Soc Test Mater Fatigue and Fracture Mechanics: 33rd Volume = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics, 34th Volume = Am Soc Test Mater Fatigue and Fracture Mechanics, 34th Volume = Am. Soc. Test. Mater. Fatigue and Fracture Mechanics: Twenty-ninth Volume = Am Soc Test Mater Fatigue and Fracture Mechanics: Twenty-ninth Volume = Am. Soc. Test. Mater. Fatigue and Fracture of Engineering Materials and Structures = Fatigue Fract. Eng. Mater. Struct. Fatigue and Fracture of Medical Metallic Materials and Devices = Am Soc Test Mater Fatigue and Fracture of Medical Metallic Materials and Devices = Am. Soc. Test. Mater. Fatigue and Fracture Reliability Engineering = Springer Ser Reliab Fatigue and Fracture Reliability Engineering = Springer. Ser. Reliab. Fatigue and Fracture Testing of Weldments = Am Soc Test Mater Fatigue and Fracture Testing of Weldments = Am. Soc. Test. Mater. Fatigue As A Window to The Brain = Iss Clin Cogn Neurop Fatigue As A Window to The Brain = Iss. Clin. Cogn. Neurop. Fatigue Crack Growth Thresholds, Endurance Limits, and Design = Am Soc Test Mater Fatigue Crack Growth Thresholds, Endurance Limits, and Design = Am. Soc. Test. Mater. Fatigue Damage of Materials: Experiment and Analysis = Adv Damage Mechan Fatigue Damage of Materials: Experiment and Analysis = Adv. Damage Mechan. Fatigue Design 1990 = Vtt Symp Fatigue Design 1990 = Vtt. Symp. Fatigue Design 1992, Vol 2 = Vtt Symp Fatigue Design 1992, Vol 2 = Vtt. Symp. Fatigue Design 1994 = Vtt Symp Fatigue Design 1994 = Vtt. Symp. Fatigue Design 1995, Vol Iii = Vtt Symp Fatigue Design 1995, Vol Iii = Vtt. Symp. Fatigue Design 1995, Vol Ii = Vtt Symp Fatigue Design 1995, Vol Ii = Vtt. Symp. Fatigue Design 1995, Vol I = Vtt Symp Fatigue Design 1995, Vol I = Vtt. Symp. Fatigue Design 1998, Vol Ii = Vtt Symp Fatigue Design 1998, Vol Ii = Vtt. Symp. Fatigue Design 1998, Vol I = Vtt Symp Fatigue Design 1998, Vol I = Vtt. Symp. Fatigue Design and Reliability = Esis Publ Fatigue Design and Reliability = Esis. Publ. Fatigue Failure of Textile Fibres = Woodhead Publ Text Fatigue Failure of Textile Fibres = Woodhead. Publ. Text. Fatigue & Fracture Mechanics, 35th Volume = Am Soc Test Mater Fatigue & Fracture Mechanics, 35th Volume = Am. Soc. Test. Mater. Fatigue & Fracture of Engineering Materials & Structures = Fatigue Fract Eng M Fatigue & Fracture of Engineering Materials & Structures = Fatigue Fract. Eng. M. Fatigue of Electronic Materials = Am Soc Test Mater Fatigue of Electronic Materials = Am. Soc. Test. Mater. Fatigue of Engineering Materials and Structures = Fatigue Eng Mater Fatigue of Engineering Materials and Structures = Fatigue Eng. Mater. Fatigue of Fiber-reinforced Composites = Eng Mater Process Fatigue of Fiber-reinforced Composites = Eng. Mater. Process. Fatigue Testing and Analysis Under Variable Amplitude Loading Conditions = Am Soc Test Mater Fatigue Testing and Analysis Under Variable Amplitude Loading Conditions = Am. Soc. Test. Mater. Fatou, Julia, Montel: The Great Prize of Mathematical Sciences of 1918, and Beyond = Lect Notes Math Fatou, Julia, Montel: The Great Prize of Mathematical Sciences of 1918, and Beyond = Lect. Notes. Math. Fat-storing Cells and Liver Fibrosis = Falk Symp Fat-storing Cells and Liver Fibrosis = Falk. Symp. Fatty Acid Oxidation = Prog Clin Biol Res Fatty Acid Oxidation = Prog. Clin. Biol. Res. Fatty Acids and Lipids: Biological Aspects = World Rev Nutr Diet Fatty Acids and Lipids: Biological Aspects = World. Rev. Nutr. Diet. Fatty Acids and Lipids-new Findings = World Rev Nutr Diet Fatty Acids and Lipids-new Findings = World. Rev. Nutr. Diet. Fauchard = Fauchard Faulkner and Gray's Medicine and Health = Faulkner Grays Med. Health Faulkner and Yoknapatawpha = Faulk Yokna Faulkner and Yoknapatawpha = Faulk. Yokna. Faulkner At 100: Retrospect and Prospect = Faulk Yokna Faulkner At 100: Retrospect and Prospect = Faulk. Yokna. Faulkner & Gray's medicine & health = Faulkner Grays Med Health Fault Detection and Fault-tolerant Control Using Sliding Modes = Adv Ind Control Fault Detection and Fault-tolerant Control Using Sliding Modes = Adv. Ind. Control Fault Detection, Supervision and Safety for Technical Processes ( Safeprocess 91 ) = Ifac Symp Series Fault Detection, Supervision and Safety for Technical Processes ( Safeprocess 91 ) = Ifac. Symp. Series. Fault Diagnoisis and Tolerance in Cryptography, Proceedings = Lect Notes Comput Sc Fault Diagnoisis and Tolerance in Cryptography, Proceedings = Lect. Notes. Comput. Sc. Fault Diagnosis and Fault Tolerance for Mechatronic Systems: Recent Advances = Springer Trac Adv Ro Fault Diagnosis and Fault Tolerance for Mechatronic Systems: Recent Advances = Springer. Trac. Adv. Ro. Fault Diagnosis and Fault Tolerance for Mechatronic Systems: Recent Advances = Spr Tra Adv Robot Fault Diagnosis and Fault Tolerance for Mechatronic Systems: Recent Advances = Spr. Tra. Adv. Robot. Fault Diagnosis and Tolerance in Cryptography, Proceedings = Lect Notes Comput Sc Fault Diagnosis and Tolerance in Cryptography, Proceedings = Lect. Notes. Comput. Sc. Fault Diagnosis of Nonlinear Systems Using A Hybrid Approach = Lect Notes Contr Inf Fault Diagnosis of Nonlinear Systems Using A Hybrid Approach = Lect. Notes. Contr. Inf. Fault-free Trains - A Reality? = Imeche Sem Fault-free Trains - A Reality? = Imeche. Sem. Fault Lines: Why The Republicans Lost Congress = Controv Elect Dem Fault Lines: Why The Republicans Lost Congress = Controv. Elect. Dem. Fault Location On Power Networks = Power Syst Fault Location On Power Networks = Power Syst. Fault Tolerant Control Design for Hybrid Systems = Lect Notes Contr Inf Fault Tolerant Control Design for Hybrid Systems = Lect. Notes. Contr. Inf. Fault-tolerant Control Systems: Design and Practical Applications = Adv Ind Control Fault-tolerant Control Systems: Design and Practical Applications = Adv. Ind. Control Fault Tolerant Flight Control: A Benchmark Challenge = Lect Notes Contr Inf Fault Tolerant Flight Control: A Benchmark Challenge = Lect. Notes. Contr. Inf. Fault-tolerant Flight Control and Guidance Systems = Adv Ind Control Fault-tolerant Flight Control and Guidance Systems = Adv. Ind. Control Fauna of Arabia Series = Fauna Arab Ser Fauna of Arabia Series = Fauna Arab. Ser. Fauna of Arabia, Vol 23, 2007 = Fauna Arab Ser Fauna of Arabia, Vol 23, 2007 = Fauna Arab. Ser. Fauna of Arabia, Vol 24 2009 = Fauna Arab Ser Fauna of Arabia, Vol 24 2009 = Fauna Arab. Ser. Faux Titre : Etudes De Langue Et Litterature Francaises Publiees = Faux Titre Faux Titre = False Title Faux Titre = False. Title. Faventia. Departement de clássiques, Facultat de letres, Universitat autónoma de Barcelona = Faventia Fa yi xue za zhi = Fa Yi Xue Za Zhi Fa Yi Xue Za Zhi (Journal of Forensic Medicine) = Fa Yi Xue Za Zhi Fccm 2003: 11th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P Fccm 2003: 11th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. Fccm 2005: 13th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P Fccm 2005: 13th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. Fccm 2006: 14th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P Fccm 2006: 14th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. Fccm 2007: 15th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann Ieee Sym Field P Fccm 2007: 15th Annual Ieee Symposium On Field-programmable Custom Computing Machines, Proceedings = Ann. Ieee Sym. Field. P. Fda Consumer = Fda Consum Fda Consumer = Fda Consum. FDA consumer = FDA Consum FDA Consumer = FDA Consum. FDA drug bulletin = FDA Drug Bull FDA Drug Bulletin = FDA Drug Bull. FDA medical bulletin : important information for health professionals from the U.S. Food & Drug Administration = FDA Med Bull Fda Papers = Fda Pap Fda Papers = Fda Pap. FDC reports. Drugs and cosmetics = FDC Rep Drugs Cosmet Fddi, Campus-wide, and Metropolitan Area Networks = P Soc Photo-opt Ins Fddi, Campus-wide, and Metropolitan Area Networks = P. Soc. Photo-opt. Ins. FDIC Banking Review=FDIC Banking Rev. FDI world = FDI World FDI World = FDI World Fdr and The Environment = World Roosevelts Fdr and The Environment = World. Roosevelts. Fdr and The Holocaust = Feri Dipl Econ Hist Fdr and The Holocaust = Feri. Dipl. Econ. Hist. Fdr, The Vatican, and The Roman Catholic Church in America, 1933-1945 = World Roosevelts Fdr, The Vatican, and The Roman Catholic Church in America, 1933-1945 = World. Roosevelts. Fear and Defence = E M I Lif S Fear and Defence = E. M. I. Lif. S. Fearful Symmetries: Essays and Testimonies Around Excision and Circumcision = Matatu Fearful Symmetries: Essays and Testimonies Around Excision and Circumcision = Matatu. Fear of Crime and Criminal Victimization = Int B Krim Fear of Crime and Criminal Victimization = Int. B. Krim. Fear of God and The Beginning of Wisdom: The School of Nisibis and Christian Scholastic Culture in Late Antique Mesopotamia = Divin Reread Late An Fear of God and The Beginning of Wisdom: The School of Nisibis and Christian Scholastic Culture in Late Antique Mesopotamia = Divin. Reread. Late An. Feasibility and Infeasibility in Optimization: Algorithms and Computational Methods = Int Ser Oper Res Man Feasibility and Infeasibility in Optimization: Algorithms and Computational Methods = Int. Ser. Oper. Res. Man. Feasibility of Joint Implementation = Environ Policy Feasibility of Joint Implementation = Environ. Policy. Feathered Dragons: Studies On The Transition From Dinosaurs to Birds = Life O Past Feathered Dragons: Studies On The Transition From Dinosaurs to Birds = Life. O. Past. Featured-based Syntax of Functional Categories = Stud Generat Gramm Featured-based Syntax of Functional Categories = Stud. Generat. Gramm. Featured Reviews in Mathematical Reviews = Featur. Rev. Math. Rev. Febs Journal = Febs J Febs Journal = Febs J. FEBS Journal = FEBS J. Febs Letters = Febs Lett Febs Letters = Febs Lett. FEBS letters = FEBS Lett FEBS Letters=FEBS Lett;; FEBS Letters = FEBS Lett. Feddersen Wierde. Die Ergebnisse der Ausgrabung der vorgeschichtlichen Wurt Feddersen Wierde bei Bremerhaven in den Jahren 1955 bis 1963 = FeddersenWierde Feddes Repertorium = Feddes Repert. Federal Bar Journal = Fed Bar News J Federal Bar Journal = Fed. Bar News. J. Federal bar journal : the official publication of the Federal Bar Association = Fed Bar J Federal Bar News & Journal = Fed Bar News J Federal Bar News & Journal = Fed. Bar News J. Federalism and Local Politics in Russia = Basees-rout Ser Russ Federalism and Local Politics in Russia = Basees-rout. Ser. Russ. Federalism and Nationalism = St Federal Federalism and Nationalism = St. Federal. Federalism and Regionalism in Australia: New Approaches, New Institutions = Anzsog Monogr Federalism and Regionalism in Australia: New Approaches, New Institutions = Anzsog. Monogr. Federalism, Nationalism and Development: India and The Punjab Economy = Routl Cont S Asia Se Federalism, Nationalism and Development: India and The Punjab Economy = Routl. Cont. S. Asia. Se. Federal Nation: Perspectives On American Federalism = Stud Am Federal Nation: Perspectives On American Federalism = Stud. Am. Federal personnel manual system. FPM bulletin / Office of Personnel Management. United States. Office of Personnel Management = FPM Bull Federal probation = Fed Probat Federal Probation = Fed Probat Federal Probation = Fed. Probat. Federal register = Fed Regist Federal Register = Fed. Regist. Federal Reserve Bank Business Review of Philadelphia=Fed. Reserve Bank Bus. Rev. Phila. Federal Reserve Bank of Atlanta Economic Review=Fed. Reserve Bank Atlanta Econ. Rev. Federal Reserve Bank of Atlanta Monthly Review=Fed. Reserve Bank Atlanta Rev. Federal Reserve Bank of Boston Conference Series = Fed Bank Bo Federal Reserve Bank of Boston Conference Series = Fed. Bank Bo. Federal Reserve Bank of Boston New England Economic Review=Fed. Reserve Bank Boston New Eng. Econ. Rev. Federal Reserve Bank of Chicago Economic Perspectives=Fed. Reserve Bank Chicago Econ. Perspect. Federal Reserve Bank of Cleveland Economic Review=Fed. Reserve Bank Cleveland Econ. Rev. Federal Reserve Bank of Dallas Economic and Financial Review=Fed. Reserve Bank Dallas Econ. Finan. Rev. Federal Reserve Bank of Dallas Economic Review=Fed. Reserve Bank Dallas Econ. Rev. Federal Reserve Bank of Kansas City Economic Review=Fed. Reserve Bank Kansas City Econ. Rev. Federal Reserve Bank of Kansas City Monthly Review=Fed. Reserve Bank Kansas City Rev. Federal Reserve Bank of Kansas City Symposium Series = Fed Bank Ks Federal Reserve Bank of Kansas City Symposium Series = Fed. Bank Ks. Federal Reserve Bank of Minneapolis Quarterly Review=Fed. Reserve Bank Minneapolis Quart. Rev. Federal Reserve Bank of New York Economic Policy Review=Fed. Reserve Bank New York Econ. Pol. Rev. Federal Reserve Bank of New York Monthly Review=Fed. Reserve Bank New York Rev. Federal Reserve Bank of New York Quarterly Review=Fed. Reserve Bank New York Quart. Rev. Federal Reserve Bank of Philadelphia Business Review=Fed. Reserve Bank Philadelphia Bus. Rev. Federal Reserve Bank of Richmond Economic Quarterly=Fed. Reserve Bank Richmond Econ. Quart. Federal Reserve Bank of Richmond Economic Review=Fed. Reserve Bank Richmond Econ. Rev. Federal Reserve Bank of San Francisco Economic Review=Fed. Reserve Bank San Francisco Econ. Rev. Federal Reserve Bank of San Francisco Monthly Review=Fed. Reserve Bank San Francisco Rev. Federal Reserve Bank of St Louis Review = Fed Reserve Bank St Federal Reserve Bank of St Louis Review = Fed. Reserve Bank St Federal Reserve Bank of St. Louis Review=Fed. Reserve Bank St. Louis Rev. Federal Reserve Bulletin=Fed. Reserve Bull. Federal rules decisions = Fed Rules Decis Federal supplement = Fed Suppl Federal Torts Reform, Claims and Liability = Laws Legis Federal Torts Reform, Claims and Liability = Laws. Legis. Federation Bulletin = Fed. Bull. Federation bulletin / Federation of State Medical Boards of the United States = Fed Bull Federation of European Biochemical Societies Letters = Fed. Eur. Biochem. Soc. Lett. Federation of Insurance & Corporate Counsel quarterly = Fed Insur Corp Couns Q Federation of Insurance Counsel quarterly = Fed Insur Couns Q Federation of operative dentistry = Fed Oper Dent Federation of Operative Dentistry = Fed. Oper. Dent. Federation Over The Web = Lect Notes Comput Sc Federation Over The Web = Lect. Notes. Comput. Sc. Federation Proceedings = Faseb J Federation Proceedings = Faseb. J. Federation proceedings = Fed Proc Federation Proceedings = Fed Proc Federation Proceedings = Fed. Proc. Federation Proceedings. Translation Supplement = Fed. Proc. Transl. Suppl. Federation proceedings. Translation supplement; selected translations from medical-related science = Fed Proc Transl Suppl Federico Garcia Lorca = Routl Mod Contemp Dr Federico Garcia Lorca = Routl. Mod. Contemp. Dr. Feedback : ICOMP newsletter on management of population programmes = Feedback Feedback Systems: Input-output Properties = Class Appl Math Feedback Systems: Input-output Properties = Class. Appl. Math. Feeding During Late Infancy and Early Childhood: Impact On Health = Nestle Nutr Works Se Feeding During Late Infancy and Early Childhood: Impact On Health = Nestle. Nutr. Works. Se. Feedstocks for The Future: Renewables for The Production of Chemicals and Materials = Acs Sym Ser Feedstocks for The Future: Renewables for The Production of Chemicals and Materials = Acs. Sym. Ser. Feedstuff Evaluation = East Sch Ag Feedstuff Evaluation = East. Sch. Ag. Feedstuffs = Feedstuffs Fegato = Fegato Feldexperiment Zum Methodenvergleich Von Ammoniak- Und Ammonium-konzentrationsmessungen in Der Umgebungsluft, 2005 Bis 2008 in Braunschweig = Landbauforsch-vti Ag Feldexperiment Zum Methodenvergleich Von Ammoniak- Und Ammonium-konzentrationsmessungen in Der Umgebungsluft, 2005 Bis 2008 in Braunschweig = Landbauforsch-vti. Ag. Fel'dsher i akusherka = Feldsher Akush Feldsher i Akusherka = Feldsher Akush. Feldspars and Their Reactions = Nato Adv Sci Inst Se Feldspars and Their Reactions = Nato. Adv. Sci. Inst. Se. Feline practice = Feline Pract Feline Practice = Feline Pract Feline Practice = Feline Pract. Felix Ravenna = FelRav Female Circumcision: Multicultural Perspectives = Pa Stud Hum Rights Female Circumcision: Multicultural Perspectives = Pa. Stud. Hum. Rights. Female Entrepreneurship: Implications for Education Training and Policy = Routl Adv Manag Bus Female Entrepreneurship: Implications for Education Training and Policy = Routl. Adv. Manag. Bus. Female Entrepreneurship in East and South-east Asia: Opportunities and Challenges = Chandos Asian Stud Female Entrepreneurship in East and South-east Asia: Opportunities and Challenges = Chandos. Asian. Stud. Female health topics & diagnostic reporter = Female Health Top Diagn Report Female Hepatology: Favorable Role of Female Factors in Chronic Liver Disease = Hepatol Res Clin Dev Female Hepatology: Favorable Role of Female Factors in Chronic Liver Disease = Hepatol. Res. Clin. Dev. Female Reader in The English Novel: From Burney to Austen = Rout St Eight Cn Lit Female Reader in The English Novel: From Burney to Austen = Rout. St. Eight. Cn. Lit. Female Reproductive Aging = Stud Proferlit Female Reproductive Aging = Stud. Proferlit. Female Sex Hormones and Cancers = Cancer Etiol Diagn T Female Sex Hormones and Cancers = Cancer. Etiol. Diagn. T. Female Terrorism and Militancy: Agency, Utility, and Organization = Contemp Terror Stud Female Terrorism and Militancy: Agency, Utility, and Organization = Contemp. Terror. Stud. Female Urology: A Practical Clinical Guide = Curr Clin Urol Female Urology: A Practical Clinical Guide = Curr. Clin. Urol. Femina : revista da Federacao Brasileira das Sociedades de Ginecologia e Obstetricia = Femina Feminism After Bourdieu = Soc Rev Mon Feminism After Bourdieu = Soc. Rev. Mon. Feminism and Philosophy of Science: An Introduction = Underst Fem Philos Feminism and Philosophy of Science: An Introduction = Underst. Fem. Philos. Feminism and The Women's Movement in Malaysia - An Unsung (r)evolution = Rout Malays Stud Ser Feminism and The Women's Movement in Malaysia - An Unsung (r)evolution = Rout. Malays. Stud. Ser. Feminism, Domesticity and Popular Culture = Routl Adv Sociol Feminism, Domesticity and Popular Culture = Routl. Adv. Sociol. Feminism, Economics and Utopia: Time Travelling Through Paradigms = Routl Front Polit Ec Feminism, Economics and Utopia: Time Travelling Through Paradigms = Routl. Front. Polit. Ec. Feminism = Fr Lit Ser Feminism = Fr. Lit. Ser. Feminism & psychology = Fem Psychol Feminism & Psychology = Fem Psychol Feminism & Psychology = Fem. Psychol. Feminist Criminology = Fem Criminol Feminist Criminology = Fem. Criminol. Feminist Critique of Education: 15 Years of Gender Education = Educ Heritag Feminist Critique of Education: 15 Years of Gender Education = Educ. Heritag. Feminist Cultural Studies of Science and Technology = Transformations-lond Feminist Cultural Studies of Science and Technology = Transformations-lond. Feminist economics = Fem Econ Feminist Economics = Fem Econ Feminist Economics = Fem. Econ. Feminist Economics=Feminist Econ. Feminist Epistemology and Philosophy of Science: Power in Knowledge = Fem Philos Collect Feminist Epistemology and Philosophy of Science: Power in Knowledge = Fem. Philos. Collect. Feminist Futures: Theatre, Performance, Theory = Perform Interv Feminist Futures: Theatre, Performance, Theory = Perform. Interv. Feministische Studien = Feministische Stud Feministische Studien = Feministische Stud. Feministische Studien = Fem Stud Feministische Studien = Fem. Stud. Feminist issues = Fem Issues Feminist Legal Studies = Fem Legal Stud Feminist Legal Studies = Fem. Legal Stud. Feminist Metaphysics: Explorations in The Ontology of Sex, Gender and The Self = Fem Philos Collect Feminist Metaphysics: Explorations in The Ontology of Sex, Gender and The Self = Fem. Philos. Collect. Feminist Movements in Contemporary Japan = Asian Stud Assoc Aus Feminist Movements in Contemporary Japan = Asian. Stud. Assoc. Aus. Feminist Perspectives = Fem Perspect Feminist Perspectives = Fem. Perspect. Feminist Perspectives On Family Law = Fem Perspect Feminist Perspectives On Family Law = Fem. Perspect. Feminist Philosophy Collection = Fem Philos Collect Feminist Philosophy Collection = Fem. Philos. Collect. Feminist Readings of Edith Wharton: From Silence to Speech = Am Lit Read Twenty-f Feminist Readings of Edith Wharton: From Silence to Speech = Am. Lit. Read. Twenty-f. Feminist Reflections On The History of Philosophy = New Synth Hist Lib Feminist Reflections On The History of Philosophy = New. Synth. Hist. Lib. Feminist Research Methodology = Routl Res Gend Asia Feminist Research Methodology = Routl. Res. Gend. Asia. Feminist Review = Feminist Rev Feminist Review = Feminist Rev. Feminist review = Fem Rev Feminist Studies = Feminist Stud Feminist Studies = Feminist Stud. Feminist studies : FS = Fem Stud Feminist Theory = Fem Theor Feminist Theory = Fem. Theor. Feminization Debate in Eighteenth-century England: Literature, Commerce and Luxury = Palgrave Stud Enligh Feminization Debate in Eighteenth-century England: Literature, Commerce and Luxury = Palgrave. Stud. Enligh. FEMNET news = FEMNET News Fems Immunology and Medical Microbiology = Fems Immunol Med Mic Fems Immunology and Medical Microbiology = Fems Immunol. Med. Mic. FEMS immunology and medical microbiology = FEMS Immunol Med Microbiol FEMS Immunology and Medical Microbiology=FEMS Immunol Med Microbiol;; FEMS Immunology and Medical Microbiology = FEMS Immunol. Med. Microbiol. FEMS Immunology And Medical Microbiology = FEMS Immunol. Med. Microbiol. Fems Microbiology Ecology = Fems Microbiol Ecol Fems Microbiology Ecology = Fems Microbiol. Ecol. FEMS microbiology ecology = FEMS Microbiol Ecol FEMS Microbiology Ecology = FEMS Microbiol. Ecol. Fems Microbiology Immunology = Fems Microbiol Immun Fems Microbiology Immunology = Fems Microbiol. Immun. FEMS microbiology immunology = FEMS Microbiol Immunol FEMS Microbiology Immunology = FEMS Microbiol. Immunol. Fems Microbiology Letters = Fems Microbiol Lett Fems Microbiology Letters = Fems Microbiol. Lett. FEMS microbiology letters = FEMS Microbiol Lett FEMS Microbiology Letters=FEMS Microbiol Lett;; FEMS Microbiology Letters = FEMS Microbiol. Lett. FEMS Microbiology Review = FEMS Microbiol. Rev. Fems Microbiology Reviews = Fems Microbiol Rev Fems Microbiology Reviews = Fems Microbiol. Rev. FEMS microbiology reviews = FEMS Microbiol Rev FEMS Microbiology Reviews=FEMS Microbiol Rev;; FEMS Microbiology Reviews = FEMS Microbiol. Rev. Fems Symposium = Fems Symp Fems Symposium = Fems Symp. FEMS Symposium = FEMS Symp. Fems Yeast Research = Fems Yeast Res Fems Yeast Research = Fems Yeast Res. FEMS yeast research = FEMS Yeast Res FEMS Yeast Research = FEMS Yeast Res. Femtosecond Laser Applications in Biology = Proc Spie Femtosecond Laser Applications in Biology = Proc. Spie. Femtosecond Laser Applications in Biology = P Soc Photo-opt Ins Femtosecond Laser Applications in Biology = P. Soc. Photo-opt. Ins. Femtosecond Laser Filamentation = Springer Ser Atom Op Femtosecond Laser Filamentation = Springer. Ser. Atom. Op. Femtosecond Phenomena and Nonlinear Optics Iii = Proc Spie Femtosecond Phenomena and Nonlinear Optics Iii = Proc. Spie. Femtosecond Phenomena and Nonlinear Optics Iii = P Soc Photo-opt Ins Femtosecond Phenomena and Nonlinear Optics Iii = P. Soc. Photo-opt. Ins. Femtosecond Real-time Spectroscopy of Small Molecules and Clusters = Springer Tr Mod Phys Femtosecond Real-time Spectroscopy of Small Molecules and Clusters = Springer. Tr. Mod. Phys. Femtosecond Technology for Technical and Medical Applications = Top Appl Phys Femtosecond Technology for Technical and Medical Applications = Top. Appl. Phys. Femtosecond to Nanosecond High-intensity Lasers and Applications = P Soc Photo-opt Ins Femtosecond to Nanosecond High-intensity Lasers and Applications = P. Soc. Photo-opt. Ins. Fennia = Fennia Fenxi Ceshi Tongbao = Fenxi Ceshi Tongbao Fenxi Huaxue = Fenxi Huaxue Fenxi Shiyanshi = Fenxi Shiyanshi Fenzi Cuihua = Fenzi Cuihua Fen Zi Xi Bao Sheng Wu Xue Bao (Journal of Molecular Cell Biology) = Fen Zi Xi Bao Sheng Wu Xue Bao Fermentation Biotechnology = Acs Sym Ser Fermentation Biotechnology = Acs. Sym. Ser. Fermented Milk Products = Food Sci Technol Fermented Milk Products = Food. Sci. Technol. Fermi-pasta-ulam Problem = Lect Notes Phys Fermi-pasta-ulam Problem = Lect. Notes. Phys. Fermi Surfaces of Low-dimensional Organic Metals and Superconductors = Springer Tr Mod Phys Fermi Surfaces of Low-dimensional Organic Metals and Superconductors = Springer. Tr. Mod. Phys. Fernerkundung und Photogrammetrie = Fernerkund. Photogramm. Fernstrom Foundation Series = Ferns Found Series Fernstrom Foundation Series = Ferns. Found. Series Ferro- and Antiferroelectricity: Order/disorder Versus Displacive = Struct Bond Ferro- and Antiferroelectricity: Order/disorder Versus Displacive = Struct. Bond. Ferroelectric Crystals for Photonic Applications: Including Nanoscale Fabrication and Characterization Techniques = Springer Ser Mater S Ferroelectric Crystals for Photonic Applications: Including Nanoscale Fabrication and Characterization Techniques = Springer. Ser. Mater. S. Ferroelectric Letters Section = Ferroelectr. Lett. Sect. Ferroelectric Polymers and Ceramic-polymer Composites = Key Eng Mat Ferroelectric Polymers and Ceramic-polymer Composites = Key. Eng. Mat. Ferroelectric Polymers and Ceramic-polymer Composites = Key Eng Mater Ferroelectric Polymers and Ceramic-polymer Composites = Key. Eng. Mater. Ferroelectric Random Access Memories Fundamentals and Applications = Top Appl Phys Ferroelectric Random Access Memories Fundamentals and Applications = Top. Appl. Phys. Ferroelectrics = Ferroelectrics Ferroelectrics in Microwave Devices, Circuits and Systems: Physics, Modelling, Fabrication and Measurements = Eng Mater Process Ferroelectrics in Microwave Devices, Circuits and Systems: Physics, Modelling, Fabrication and Measurements = Eng. Mater. Process. Ferroelectrics Letters = Ferroelectr. Lett. Ferroelectrics Letters Section = Ferroelectrics Lett Ferroelectrics Letters Section = Ferroelectrics Lett. Ferroelectrics, Letters Section = Ferroelectr., Lett. Sect. Ferroelectrics Review = Ferroelectr. Rev. Ferroelectric Thin Films Iii = Mater Res Soc Symp P Ferroelectric Thin Films Iii = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films Iv = Mater Res Soc Symp P Ferroelectric Thin Films Iv = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films = Mater Res Soc Symp P Ferroelectric Thin Films = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films = Top Appl Phys Ferroelectric Thin Films = Top. Appl. Phys. Ferroelectric Thin Films Viii = Mater Res Soc Symp P Ferroelectric Thin Films Viii = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films Vii = Mater Res Soc Symp P Ferroelectric Thin Films Vii = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films Vi = Mater Res Soc Symp P Ferroelectric Thin Films Vi = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films V = Mater Res Soc Symp P Ferroelectric Thin Films V = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films Xii = Mater Res Soc Symp P Ferroelectric Thin Films Xii = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films Xi = Mater Res Soc Symp P Ferroelectric Thin Films Xi = Mater. Res. Soc. Symp. P. Ferroelectric Thin Films X = Mater Res Soc Symp P Ferroelectric Thin Films X = Mater. Res. Soc. Symp. P. Ferromagnetic Shape Memory Alloys = Adv Mat Res Ferromagnetic Shape Memory Alloys = Adv. Mat. Res. Ferromagnetic Shape Memory Alloys Ii = Mater Sci Forum Ferromagnetic Shape Memory Alloys Ii = Mater. Sci. Forum. Fertilite, contraception, sexualite = Fertil Contracept Sex Fertilite, orthogenie = Fertil Orthog Fertility and contraception = Fertil Contracept Fertility and Infertility in Dogs, Cats and Other Carnivores = J Rep Fer S Fertility and Infertility in Dogs, Cats and Other Carnivores = J. Rep. Fer. S. Fertility and Reproductive Medicine = Int Congr Ser Fertility and Reproductive Medicine = Int. Congr. Ser. Fertility and sterility = Fertil Steril Fertility and Sterility=Fertil Steril;; Fertility and Sterility = Fertil Steril Fertility and Sterility = Fertil. Steril. Fertility determinants research notes / The Population Council = Fertil Determ Res Notes Fertility, Living Arrangements, Care and Mobility: Understanding Population Trends and Processes: Vol 1 = Underst Popul Trends Fertility, Living Arrangements, Care and Mobility: Understanding Population Trends and Processes: Vol 1 = Underst. Popul. Trends Fertility of Immigrants: A Two-generational Approach in Germany = Demogr Res Monogr Fertility of Immigrants: A Two-generational Approach in Germany = Demogr. Res. Monogr. Fertility, Sterility and Contraception = C St Gyn Ob Fertility, Sterility and Contraception = C. St. Gyn. Ob. Fertilizer Research = Fertil. Res. Fertilizer Research = Fert Res Fertilizer Research = Fert. Res. Festival Architecture = Class Tradit Archit Festival Architecture = Class. Tradit. Archit. Festivals and The Cultural Public Sphere = Routl Adv Sociol Festivals and The Cultural Public Sphere = Routl. Adv. Sociol. Festkorperprobleme-advances in Solid State Phyics = Festkor-adv Solid St Festkorperprobleme-advances in Solid State Phyics = Festkor-adv. Solid St. Festkorperprobleme - Advances in Solid State Physics 32 = Festkor A S Festkorperprobleme - Advances in Solid State Physics 32 = Festkor. A. S. Festkorperprobleme - Advances in Solid State Physics 33 = Festkor A S Festkorperprobleme - Advances in Solid State Physics 33 = Festkor. A. S. Festkorperprobleme-advances in Solid State Physics = Festkor A S Festkorperprobleme-advances in Solid State Physics = Festkor. A. S. Festkorper Probleme - Advances in Solid State Physics, Vol 29 = Festkor A S Festkorper Probleme - Advances in Solid State Physics, Vol 29 = Festkor. A. S. Festkorper Probleme - Advances in Solid State Physics, Vol 30 = Festkor A S Festkorper Probleme - Advances in Solid State Physics, Vol 30 = Festkor. A. S. Festkorper Probleme - Advances in Solid State Physics, Vol 31 = Festkor A S Festkorper Probleme - Advances in Solid State Physics, Vol 31 = Festkor. A. S. Festkorperprobleme-advances in Solid State Physics, Vol 34 = Festkor A S Festkorperprobleme-advances in Solid State Physics, Vol 34 = Festkor. A. S. Fetal and Neonatal Physiological Measurements = Int Congr Ser Fetal and Neonatal Physiological Measurements = Int. Congr. Ser. Fetal and pediatric pathology = Fetal Pediatr Pathol Fetal and Pediatric Pathology = Fetal Pediatr Pathol Fetal and Pediatric Pathology = Fetal Pediatr. Pathol. Fetal Cells in Maternal Blood: Prospects for Noninvasive Prenatal Diagnosis = Ann Ny Acad Sci Fetal Cells in Maternal Blood: Prospects for Noninvasive Prenatal Diagnosis = Ann. Ny. Acad. Sci. Fetal diagnosis and therapy = Fetal Diagn Ther Fetal Diagnosis and Therapy=Fetal Diagn Ther;; Fetal Diagnosis and Therapy = Fetal Diagn Ther Fetal Diagnosis and Therapy = Fetal Diagn. Ther. Fetal Physiology and Pathology = C St Gyn Ob Fetal Physiology and Pathology = C. St. Gyn. Ob. Fetal therapy = Fetal Ther Fetal Therapy = Fetal Ther. Fette Seifen Anstrichmittel = Fett Wiss Technol Fette Seifen Anstrichmittel = Fett. Wiss. Technol. Fette Seifen Anstrichmittel Verbunden Mit Der Zeitschrift Die Ernahrungsindustrie = Fette Seifen Anstr V Fette Seifen Anstrichmittel Verbunden Mit Der Zeitschrift Die Ernahrungsindustrie = Fette Seifen Anstr. V. Fett-lipid = Fett-lipid Fett - Lipid = Fett - Lipid Fett Wissenschaft Technologie-fat Science Technology = Fett Wiss Technol Fett Wissenschaft Technologie-fat Science Technology = Fett Wiss. Technol. Fett Wissenschaft Technologie : Organ der Deutschen Gesellschaft fur Fettwissenschaft e.V. = Fat science technology|Fett Wiss. Technol. Fetus As A Patient 88 = Int Congr Ser Fetus As A Patient 88 = Int. Congr. Ser. Feuilleton - Essay - Aphorismus: Nicht-fiktionale Prosa in Osterreich = Inn B Kult Feuilleton - Essay - Aphorismus: Nicht-fiktionale Prosa in Osterreich = Inn. B. Kult. Feuillets de biologie = Feuill Biol Feuillets De Radiologie = Feuill Rad Feuillets De Radiologie = Feuill. Rad. Feuillets De Radiologie = Feuill Radiol Feuillets De Radiologie = Feuill. Radiol. Feuillets du praticien = Feuill Prat Few Body Problems in Physics '02 = Few Body Sy Few Body Problems in Physics '02 = Few Body Sy. Few-body Problems in Physics '98 = Few Body Sy Few-body Problems in Physics '98 = Few. Body. Sy. Few-body Problems in Physics '99 = Few Body Sy Few-body Problems in Physics '99 = Few. Body. Sy. Few-body Problems in Physics = Aip Conf Proc Few-body Problems in Physics = Aip. Conf. Proc. Few-body Systems = Few-body Syst Few-body Systems = Few-body Syst. Few-Body Systems = Few-Body Syst. Few-Body Systems = Few-Body Systems Few-body Systems Supplementum = Few Body Sy Few-body Systems Supplementum = Few. Body. Sy. Few-Body Systems, Supplementum = Few-Body Syst., Suppl. Few-cycle Laser Pulse Generation and Its Applications = Top Appl Phys Few-cycle Laser Pulse Generation and Its Applications = Top. Appl. Phys. Feyerabend's Philosophy = Quellen Stud Philos Feyerabend's Philosophy = Quellen. Stud. Philos. Ff Communications = Ff Commun Ff Communications = Ff Commun. Fgf Entrepreneurship - Research Monographien = Fgf Entrepr Fgf Entrepreneurship - Research Monographien = Fgf Entrepr. Fia National Assessment of Data Quality for Forest Health Indicators = Usda For Serv N Res Fia National Assessment of Data Quality for Forest Health Indicators = Usda. For. Serv. N. Res. Fiber and Integrated Optics = Fiber Integrated Opt Fiber and Integrated Optics = Fiber Integrated Opt. Fiber and Integrated Optics = Fiber Integr. Opt. Fiber-based Component Fabrication, Testing, and Connectorization = P Soc Photo-opt Ins Fiber-based Component Fabrication, Testing, and Connectorization = P. Soc. Photo-opt. Ins. Fiber Integrated Optics = P Soc Photo-opt Ins Fiber Integrated Optics = P. Soc. Photo-opt. Ins. Fiber Lasers Iii: Technology, Systems, and Applications = Proc Spie Fiber Lasers Iii: Technology, Systems, and Applications = Proc. Spie. Fiber Lasers Iii: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers Iii: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Lasers Ii: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers Ii: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Lasers Iv: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers Iv: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Laser Sources and Amplifiers Iii = P Soc Photo-opt Ins Fiber Laser Sources and Amplifiers Iii = P. Soc. Photo-opt. Ins. Fiber Laser Sources and Amplifiers Ii = P Soc Photo-opt Ins Fiber Laser Sources and Amplifiers Ii = P. Soc. Photo-opt. Ins. Fiber Laser Sources and Amplifiers Iv = P Soc Photo-opt Ins Fiber Laser Sources and Amplifiers Iv = P. Soc. Photo-opt. Ins. Fiber Laser Sources and Amplifiers = P Soc Photo-opt Ins Fiber Laser Sources and Amplifiers = P. Soc. Photo-opt. Ins. Fiber Laser Sources and Amplifiers V = P Soc Photo-opt Ins Fiber Laser Sources and Amplifiers V = P. Soc. Photo-opt. Ins. Fiber Lasers: Research, Technology and Applications = Lasers Electro-opt R Fiber Lasers: Research, Technology and Applications = Lasers. Electro-opt. R. Fiber Lasers: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Lasers Vii: Technology, Systems, and Applications = Proc Spie Fiber Lasers Vii: Technology, Systems, and Applications = Proc. Spie. Fiber Lasers Vii: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers Vii: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Lasers Vi: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers Vi: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Lasers V: Technology, Systems, and Applications = Proc Spie Fiber Lasers V: Technology, Systems, and Applications = Proc. Spie. Fiber Lasers V: Technology, Systems, and Applications = P Soc Photo-opt Ins Fiber Lasers V: Technology, Systems, and Applications = P. Soc. Photo-opt. Ins. Fiber Networking and Telecommunications = P Soc Photo-opt Ins Fiber Networking and Telecommunications = P. Soc. Photo-opt. Ins. Fiber Networks for Telephony and Catv = P Soc Photo-opt Ins Fiber Networks for Telephony and Catv = P. Soc. Photo-opt. Ins. Fiber Networks for Voice, Video, and Multimedia Services = P Soc Photo-opt Ins Fiber Networks for Voice, Video, and Multimedia Services = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors and Applications = P Soc Photo-opt Ins Fiber Optic and Laser Sensors and Applications = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Ix = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Ix = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Viii = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Viii = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Vii = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Vii = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Xiii = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Xiii = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Xii = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Xii = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Xi = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Xi = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors Xiv = P Soc Photo-opt Ins Fiber Optic and Laser Sensors Xiv = P. Soc. Photo-opt. Ins. Fiber Optic and Laser Sensors X = P Soc Photo-opt Ins Fiber Optic and Laser Sensors X = P. Soc. Photo-opt. Ins. Fiber Optic Components and Optical Communication = P Soc Photo-opt Ins Fiber Optic Components and Optical Communication = P. Soc. Photo-opt. Ins. Fiber Optic Components and Optical Communications Ii = P Soc Photo-opt Ins Fiber Optic Components and Optical Communications Ii = P. Soc. Photo-opt. Ins. Fiber Optic Components and Reliability = P Soc Photo-opt Ins Fiber Optic Components and Reliability = P. Soc. Photo-opt. Ins. Fiber Optic Components, Subsystems, and Systems for Telecommunications = P Soc Photo-opt Ins Fiber Optic Components, Subsystems, and Systems for Telecommunications = P. Soc. Photo-opt. Ins. Fiber Optic Gyros : 15th Anniversary Conference = P Soc Photo-opt Ins Fiber Optic Gyros : 15th Anniversary Conference = P. Soc. Photo-opt. Ins. Fiber Optic Gyros: 20th Anniversary Conference = P Soc Photo-opt Ins Fiber Optic Gyros: 20th Anniversary Conference = P. Soc. Photo-opt. Ins. Fiber Optic Materials and Components = P Soc Photo-opt Ins Fiber Optic Materials and Components = P. Soc. Photo-opt. Ins. Fiber Optic Medical and Fluorescent Sensors and Applications = P Soc Photo-opt Ins Fiber Optic Medical and Fluorescent Sensors and Applications = P. Soc. Photo-opt. Ins. Fiber-optic Metrology and Standards = P Soc Photo-opt Ins Fiber-optic Metrology and Standards = P. Soc. Photo-opt. Ins. Fiber Optic Network Components = P Soc Photo-opt Ins Fiber Optic Network Components = P. Soc. Photo-opt. Ins. Fiber Optic Physical Sensors in Manufacturing and Transportation = P Soc Photo-opt Ins Fiber Optic Physical Sensors in Manufacturing and Transportation = P. Soc. Photo-opt. Ins. Fiber Optics and Optoelectronics for Network Applications = P Soc Photo-opt Ins Fiber Optics and Optoelectronics for Network Applications = P. Soc. Photo-opt. Ins. Fiber Optic Sensor-based Smart Materials and Structures = Smar Mat St Fiber Optic Sensor-based Smart Materials and Structures = Smar. Mat. St. Fiber Optic Sensors and Applications Viii = P Soc Photo-opt Ins Fiber Optic Sensors and Applications Viii = P. Soc. Photo-opt. Ins. Fiber Optic Sensors and Applications Vii = P Soc Photo-opt Ins Fiber Optic Sensors and Applications Vii = P. Soc. Photo-opt. Ins. Fiber Optic Sensors and Applications V = Proc Spie Fiber Optic Sensors and Applications V = Proc. Spie. Fiber Optic Sensors and Applications V = P Soc Photo-opt Ins Fiber Optic Sensors and Applications V = P. Soc. Photo-opt. Ins. Fiber-optic Sensors : Engineering and Applications = P Soc Photo-opt Ins Fiber-optic Sensors : Engineering and Applications = P. Soc. Photo-opt. Ins. Fiber Optic Sensors Iv = P Soc Photo-opt Ins Fiber Optic Sensors Iv = P. Soc. Photo-opt. Ins. Fiber Optic Sensors V = P Soc Photo-opt Ins Fiber Optic Sensors V = P. Soc. Photo-opt. Ins. Fiber Optic Sensor Technology and Applications 2001 = Proc Spie Fiber Optic Sensor Technology and Applications 2001 = Proc. Spie. Fiber Optic Sensor Technology and Applications 2001 = P Soc Photo-opt Ins Fiber Optic Sensor Technology and Applications 2001 = P. Soc. Photo-opt. Ins. Fiber Optic Sensor Technology and Applications Iii = P Soc Photo-opt Ins Fiber Optic Sensor Technology and Applications Iii = P. Soc. Photo-opt. Ins. Fiber Optic Sensor Technology and Applications = P Soc Photo-opt Ins Fiber Optic Sensor Technology and Applications = P. Soc. Photo-opt. Ins. Fiber Optic Sensor Technology Ii = Proc Spie Fiber Optic Sensor Technology Ii = Proc. Spie. Fiber Optic Sensor Technology Ii = P Soc Photo-opt Ins Fiber Optic Sensor Technology Ii = P. Soc. Photo-opt. Ins. Fiber Optics in Astronomical Applications = P Soc Photo-opt Ins Fiber Optics in Astronomical Applications = P. Soc. Photo-opt. Ins. Fiber Optics in Astronomy Ii = Astr Soc P Fiber Optics in Astronomy Ii = Astr. Soc. P. Fiber Optics in Astronomy Iii = Astr Soc P Fiber Optics in Astronomy Iii = Astr. Soc. P. Fiber Optic Smart Structures and Skins Iii = P Soc Photo-opt Ins Fiber Optic Smart Structures and Skins Iii = P. Soc. Photo-opt. Ins. Fiber Optic Smart Structures and Skins Ii = P Soc Photo-opt Ins Fiber Optic Smart Structures and Skins Ii = P. Soc. Photo-opt. Ins. Fiber Optic Smart Structures and Skins Iv = P Soc Photo-opt Ins Fiber Optic Smart Structures and Skins Iv = P. Soc. Photo-opt. Ins. Fiber Optic Smart Structures and Skins V = P Soc Photo-opt Ins Fiber Optic Smart Structures and Skins V = P. Soc. Photo-opt. Ins. Fiber Optics Reliability and Testing: Benign and Adverse Environments = P Soc Photo-opt Ins Fiber Optics Reliability and Testing: Benign and Adverse Environments = P. Soc. Photo-opt. Ins. Fiber Optics Reliability : Benign and Adverse Environments Iii = P Soc Photo-opt Ins Fiber Optics Reliability : Benign and Adverse Environments Iii = P. Soc. Photo-opt. Ins. Fiber Optics Reliability : Benign and Adverse Environments Iv = P Soc Photo-opt Ins Fiber Optics Reliability : Benign and Adverse Environments Iv = P. Soc. Photo-opt. Ins. Fiber Optic Systems for Mobile Platforms Iii = P Soc Photo-opt Ins Fiber Optic Systems for Mobile Platforms Iii = P. Soc. Photo-opt. Ins. Fiber Optic Systems for Mobile Platforms Iv = P Soc Photo-opt Ins Fiber Optic Systems for Mobile Platforms Iv = P. Soc. Photo-opt. Ins. Fiber-reinforced Cementitious Materials = Mater Res Soc Symp P Fiber-reinforced Cementitious Materials = Mater. Res. Soc. Symp. P. Fibers and Polymers = Fiber Polym Fibers and Polymers = Fiber. Polym. Fibers and Polymers = Fibers Polym. Fibonacci Quarterly = Fibonacci Quart Fibonacci Quarterly = Fibonacci Quart. Fibre Chemistry = Fibre Chem. Fibre Chemistry = Fibre Chem+ Fibre Chemistry = Fibre Chem+.+ Fibre Optics 90 = P Soc Photo-opt Ins Fibre Optics 90 = P. Soc. Photo-opt. Ins. Fibre Science & Technology = Fibre Sci Technol Fibre Science & Technology = Fibre Sci. Technol. Fibres & Textiles in Eastern Europe = Fibres Text East Eur Fibres & Textiles in Eastern Europe = Fibres Text. East. Eur Fibres & Textiles in Eastern Europe = Fibres Text. East. Eur. Fibre Types in Skeletal Muscles = Adv Anat Embryol Cel Fibre Types in Skeletal Muscles = Adv. Anat. Embryol. Cel. Fibrinogen 4 - Current Basic and Clinical Aspects = Int Congr Ser Fibrinogen 4 - Current Basic and Clinical Aspects = Int. Congr. Ser. Fibrinogen = Ann Ny Acad Sci Fibrinogen = Ann. Ny. Acad. Sci. Fibrinogen, Thrombosis, Coagulation, and Fibrinolysis = Adv Exp Med Biol Fibrinogen, Thrombosis, Coagulation, and Fibrinolysis = Adv. Exp. Med. Biol. Fibrinolysis = Fibrinolysis Fibrinolysis & Proteolysis = Fibrinolysis Proteol Fibrinolysis & Proteolysis = Fibrinolysis Proteol. Fibroblast Growth Factor Family = Ann Ny Acad Sci Fibroblast Growth Factor Family = Ann. Ny. Acad. Sci. Fibrous Proteins: Amyloids, Prions and Beta Proteins = Adv Protein Chem Fibrous Proteins: Amyloids, Prions and Beta Proteins = Adv. Protein. Chem. Fibrous Proteins: Coiled-coils, Collagen and Elastomers = Adv Protein Chem Fibrous Proteins: Coiled-coils, Collagen and Elastomers = Adv. Protein. Chem. Fibrous Proteins: Muscle and Molecular Motors = Adv Protein Chem Fibrous Proteins: Muscle and Molecular Motors = Adv. Protein. Chem. Ficheiro epigráfico. Suplemento de »Conimbriga« = FichEpigr Fichte and Jacobi = Ficht Stud Fichte and Jacobi = Ficht. Stud. Fichte-studien = Ficht Stud Fichte-studien = Ficht. Stud. Fiction and Fictionalism = New Probl Philos Fiction and Fictionalism = New. Probl. Philos. Fictions in Science: Philosophical Essays On Modeling and Idealization = Rout Stu Philos Sci Fictions in Science: Philosophical Essays On Modeling and Idealization = Rout. Stu. Philos. Sci. Fictions of Female Education in The Nineteenth Century = Stud Am Popul Hist C Fictions of Female Education in The Nineteenth Century = Stud. Am. Popul. Hist. C. Fictions of The City: Class, Culture and Mass Housing in London and Paris = Lang Discourse Soc Fictions of The City: Class, Culture and Mass Housing in London and Paris = Lang. Discourse. Soc. Fiction Written Under Oath?: Essays in Philosophy and Educational Research = Philos Educ-neth Fiction Written Under Oath?: Essays in Philosophy and Educational Research = Philos. Educ-neth. Fiddlehead = Fiddlehead Fides et historia : official publication of the Conference on Faith and History = Fides Et Hist Fidia Research Foundation Symposium Series = Fidia Res. Found. Symp. Ser. Fidia Research Foundation Symposium Series = Fid Res Fdn Fidia Research Foundation Symposium Series = Fid. Res. Fdn. Fidia Research Series = Fidia Res Series Fidia Research Series = Fidia Res. Series Fid Publication = Fid Publ Fid Publication = Fid Publ. Fie: 2008 Ieee Frontiers in Education Conference, Vols 1-3 = Proc Front Educ Conf Fie: 2008 Ieee Frontiers in Education Conference, Vols 1-3 = Proc. Front. Educ. Conf. Field Analytical Chemistry and Technology = Field Anal Chem Tech Field Analytical Chemistry and Technology = Field Anal. Chem. Tech. Field Analytical Chemistry and Technology. = Field Anal. Chem. Technol. Field and Service Robotics: Recent Advances in Research and Applications = Springer Trac Adv Ro Field and Service Robotics: Recent Advances in Research and Applications = Springer. Trac. Adv. Ro. Field and Service Robotics: Recent Advances in Research and Applications = Spr Tra Adv Robot Field and Service Robotics: Recent Advances in Research and Applications = Spr. Tra. Adv. Robot. Field and Service Robotics: Results of The 6th International Conference = Springer Trac Adv Ro Field and Service Robotics: Results of The 6th International Conference = Springer. Trac. Adv. Ro. Field and Service Robotics: Results of The 6th International Conference = Spr Tra Adv Robot Field and Service Robotics: Results of The 6th International Conference = Spr. Tra. Adv. Robot. Field and Service Robotics = Springer Trac Adv Ro Field and Service Robotics = Springer. Trac. Adv. Ro. Field and Service Robotics = Springer Tracts Adv Field and Service Robotics = Springer. Tracts. Adv. Field and Service Robotics = Spr Tra Adv Robot Field and Service Robotics = Spr. Tra. Adv. Robot. Field Arithmetic, Third Edition = Ergeb Math Grenzgeb Field Arithmetic, Third Edition = Ergeb. Math. Grenzgeb. Field Boundary Habitats: Implications for Weed, Insect and Disease Management = Top Can Weed Sci Field Boundary Habitats: Implications for Weed, Insect and Disease Management = Top. Can. Weed. Sci. Fieldbus Systems and Their Applicationos 2001 (fet'2001) = Ifac P Ser Fieldbus Systems and Their Applicationos 2001 (fet'2001) = Ifac. P. Ser. Field Crops Research = Field Crop Res Field Crops Research = Field Crop. Res. Field Geology Education: Historical Perspectives and Modern Approaches = Geol Soc Am Spec Pap Field Geology Education: Historical Perspectives and Modern Approaches = Geol. Soc. Am. Spec. Pap. Field Instrumentation for Soil and Rock = Am Soc Test Mater Field Instrumentation for Soil and Rock = Am. Soc. Test. Mater. Field Margins: Integrating Agriculture and Conservation = Br Crop Pr Field Margins: Integrating Agriculture and Conservation = Br. Crop. Pr. Field Methods = Field Method Field Methods = Field Method. Field Programmable Gate Arrays (fpgas) for Fast Board Development and Reconfigurable Computing = P Soc Photo-opt Ins Field Programmable Gate Arrays (fpgas) for Fast Board Development and Reconfigurable Computing = P. Soc. Photo-opt. Ins. Field-programmable Logic and Applications, Proceedings = Lect Notes Comput Sc Field-programmable Logic and Applications, Proceedings = Lect. Notes. Comput. Sc. Fields Institute Communications = Fields I Commun Fields Institute Communications = Fields I. Commun. Fields Institute Communications = Fields Inst. Commun. Fields Institute Communications = Fields Inst Commun Fields Institute Communications = Fields Inst. Commun. Fields Institute Monographs = Fields Inst. Monogr. Fields, Networks, Computational Methods, and Systems in Modern Electrodynamics = Springer Proc Phys Fields, Networks, Computational Methods, and Systems in Modern Electrodynamics = Springer. Proc. Phys. Fields of Logic and Computation: Essays Dedicated to Yuri Gurevich On The Occasion of His 70th Birthday = Lect Notes Comput Sc Fields of Logic and Computation: Essays Dedicated to Yuri Gurevich On The Occasion of His 70th Birthday = Lect. Notes. Comput. Sc. Fields, Strings and Critical Phenomena = Les Houch S Fields, Strings and Critical Phenomena = Les. Houch. S. Fields, Strings, and Quantum Gravity = Ccast Wl Sw Fields, Strings, and Quantum Gravity = Ccast. Wl. Sw. Fieldstaff reports. Asia. Southeast Asia series = Fieldstaff Rep Fieldstaff reports. Southeast Asia series = Fieldstaff Rep Field staff reports / UFSI = Field Staff Rep Fieldstaff reports. West Europe series = Fieldstaff Rep West Eur Ser Field Studies = Field Stud. Fields Within Fields = Fields Within Fields Field Testing in Engineering Geology = Geol Soc En Field Testing in Engineering Geology = Geol. Soc. En. Field Theories for Low-dimensional Condensed Matter Systems = Springer Series Soli Field Theories for Low-dimensional Condensed Matter Systems = Springer. Series. Soli. Field Theories for Low-dimensional Condensed Matter Systems = Springer Ser Solid-s Field Theories for Low-dimensional Condensed Matter Systems = Springer. Ser. Solid-s. Field Theory, Topology and Condensed Matter Physics = Lect Notes Phys Field Theory, Topology and Condensed Matter Physics = Lect. Notes. Phys. Field Trip Guidebook for The Northeastern United States: 1993 Boston Gsa, Vols 1 and 2 = U Ma Dgg C Field Trip Guidebook for The Northeastern United States: 1993 Boston Gsa, Vols 1 and 2 = U. Ma. Dgg. C. Fieldwork in Tourism: Methods, Issues and Reflections = Contemp Geogr Leis T Fieldwork in Tourism: Methods, Issues and Reflections = Contemp. Geogr. Leis. T. Fi-forum Italicum = Fi-forum Italicum Fifteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Fifteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Fifteenth Annual Symposium On Computer Applications in Medical Care = Proc Symp Comput App Fifteenth Annual Symposium On Computer Applications in Medical Care = Proc. Symp. Comput. App. Fifteenth Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Fifteenth Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Fifteenth International Conference in Organic Coatings Science and Technology = Adv Org Co Fifteenth International Conference in Organic Coatings Science and Technology = Adv. Org. Co. Fifteenth Working Conference On Reverse Engineering, Proceedings = Work Conf Reverse En Fifteenth Working Conference On Reverse Engineering, Proceedings = Work. Conf. Reverse En. Fifth Compton Symposium = Aip Conf Proc Fifth Compton Symposium = Aip. Conf. Proc. Fifth Conference On Artificial Intelligence for Space Applications = Nasa Conf P Fifth Conference On Artificial Intelligence for Space Applications = Nasa. Conf. P. Fifth Conference On Charge-coupled Devices and Ccd Systems = P Soc Photo-opt Ins Fifth Conference On Charge-coupled Devices and Ccd Systems = P. Soc. Photo-opt. Ins. Fifth Conference On Optics (romopto '97), Pts 1 and 2 = P Soc Photo-opt Ins Fifth Conference On Optics (romopto '97), Pts 1 and 2 = P. Soc. Photo-opt. Ins. Fifth Congress of The Brazilian Society of Microelectronics = P Soc Photo-opt Ins Fifth Congress of The Brazilian Society of Microelectronics = P. Soc. Photo-opt. Ins. Fifth Cryogenics '98 Iir International Conference, Proceedings = Refr Sci T Fifth Cryogenics '98 Iir International Conference, Proceedings = Refr. Sci. T. Fifth European Conference On Power Electronics and Applications, Vol 2 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 2 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Applications, Vol 3 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 3 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Applications, Vol 5 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 5 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Applications, Vol 6 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 6 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Applications, Vol 7 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 7 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Applications, Vol 8 = Iee Conf Publ Fifth European Conference On Power Electronics and Applications, Vol 8 = Iee. Conf. Publ. Fifth European Conference On Power Electronics and Application, Vol 4 = Iee Conf Publ Fifth European Conference On Power Electronics and Application, Vol 4 = Iee. Conf. Publ. Fifth European Conference On Smart Structures and Materials = Proc Spie Fifth European Conference On Smart Structures and Materials = Proc. Spie. Fifth European Conference On Smart Structures and Materials = P Soc Photo-opt Ins Fifth European Conference On Smart Structures and Materials = P. Soc. Photo-opt. Ins. Fifth European Summer School On Experimental Nuclear Astrophysics = Aip Conf Proc Fifth European Summer School On Experimental Nuclear Astrophysics = Aip. Conf. Proc. Fifth Freedom: Jobs, Politics, and Civil Rights in The United States, 1941-1972 = Princ Stud Am Polit Fifth Freedom: Jobs, Politics, and Civil Rights in The United States, 1941-1972 = Princ. Stud. Am. Polit. Fifth Great Lakes Symposium On Vlsi, Proceedings = Pr Gr Lak Symp Vlsi Fifth Great Lakes Symposium On Vlsi, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Fifth Hutton Symposium On The Origin of Granites and Related Rocks = Geol S Am S Fifth Hutton Symposium On The Origin of Granites and Related Rocks = Geol. S. Am. S. Fifth Ifip International Conference On Theoretical Computer Science - Tcs 2008 = Int Fed Info Proc Fifth Ifip International Conference On Theoretical Computer Science - Tcs 2008 = Int. Fed. Info. Proc. Fifth International Bridge Engineering Conference, Vols 1 and 2 = Transport Res Rec Fifth International Bridge Engineering Conference, Vols 1 and 2 = Transport. Res. Rec. Fifth International Conference On Artificial Neural Networks = Iee Conf Publ Fifth International Conference On Artificial Neural Networks = Iee. Conf. Publ. Fifth International Conference On Correlation Optics = P Soc Photo-opt Ins Fifth International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. Fifth International Conference On Developments in Power System Protection = Iee Conf Publ Fifth International Conference On Developments in Power System Protection = Iee. Conf. Publ. Fifth International Conference On Electrical Machines and Devices = Iee Conf Publ Fifth International Conference On Electrical Machines and Devices = Iee. Conf. Publ. Fifth International Conference On Electrical Safety in Hazardous Environments = Iee Conf Publ Fifth International Conference On Electrical Safety in Hazardous Environments = Iee. Conf. Publ. Fifth International Conference On Fine Particle Magnetism = J Phys Conf Ser Fifth International Conference On Fine Particle Magnetism = J. Phys. Conf. Ser. Fifth International Conference On Foundations of Computer-aided Process Design = Aiche Sym S Fifth International Conference On Foundations of Computer-aided Process Design = Aiche. Sym. S. Fifth International Conference On Hf Radio Systems and Techniques = Iee Conf Publ Fifth International Conference On Hf Radio Systems and Techniques = Iee. Conf. Publ. Fifth International Conference On High Performance Computing, Proceedings = P Int C High Perform Fifth International Conference On High Performance Computing, Proceedings = P. Int. C. High Perform. Fifth International Conference On Material Science and Material Properties for Infrared Optoelectronics = Proc Spie Fifth International Conference On Material Science and Material Properties for Infrared Optoelectronics = Proc. Spie. Fifth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P Soc Photo-opt Ins Fifth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P. Soc. Photo-opt. Ins. Fifth International Conference On Mobile Radio and Personal Communications = Iee Conf Publ Fifth International Conference On Mobile Radio and Personal Communications = Iee. Conf. Publ. Fifth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = Proc Spie Fifth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = Proc. Spie. Fifth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = P Soc Photo-opt Ins Fifth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Fifth International Conference On Power Electronics and Variable-speed Drives = Iee Conf Publ Fifth International Conference On Power Electronics and Variable-speed Drives = Iee. Conf. Publ. Fifth International Conference On Power System Management and Control = Iee Conf Publ Fifth International Conference On Power System Management and Control = Iee. Conf. Publ. Fifth International Conference On Radio Receivers and Associated Systems = Iee Conf Publ Fifth International Conference On Radio Receivers and Associated Systems = Iee. Conf. Publ. Fifth International Conference On Thin Film Physics and Applications = Proc Spie Fifth International Conference On Thin Film Physics and Applications = Proc. Spie. Fifth International Conference On Thin Film Physics and Applications = P Soc Photo-opt Ins Fifth International Conference On Thin Film Physics and Applications = P. Soc. Photo-opt. Ins. Fifth International Conference On Trends in Distribution Switchgear: 400v-145kv for Utilities and Private Networks = Iee Conf Publ Fifth International Conference On Trends in Distribution Switchgear: 400v-145kv for Utilities and Private Networks = Iee. Conf. Publ. Fifth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc Spie Fifth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc. Spie. Fifth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Fifth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Fifth International Symposium On Advanced Research in Asynchronous Circuits and Systems - Proceedings = Pr Int Symp Adv Res Fifth International Symposium On Advanced Research in Asynchronous Circuits and Systems - Proceedings = Pr. Int. Symp. Adv. Res. Fifth International Symposium On Atmospheric and Ocean Optics = P Soc Photo-opt Ins Fifth International Symposium On Atmospheric and Ocean Optics = P. Soc. Photo-opt. Ins. Fifth International Symposium On Display Holography = P Soc Photo-opt Ins Fifth International Symposium On Display Holography = P. Soc. Photo-opt. Ins. Fifth International Symposium On Domain Decomposition Methods for Partial Differential Equations = Siam Proc S Fifth International Symposium On Domain Decomposition Methods for Partial Differential Equations = Siam. Proc. S. Fifth International Symposium On Instrumentation and Control Technology = Proc Spie Fifth International Symposium On Instrumentation and Control Technology = Proc. Spie. Fifth International Symposium On Instrumentation and Control Technology = P Soc Photo-opt Ins Fifth International Symposium On Instrumentation and Control Technology = P. Soc. Photo-opt. Ins. Fifth International Symposium On Laser Precision Microfabrication = Proc Spie Fifth International Symposium On Laser Precision Microfabrication = Proc. Spie. Fifth International Symposium On Laser Precision Microfabrication = P Soc Photo-opt Ins Fifth International Symposium On Laser Precision Microfabrication = P. Soc. Photo-opt. Ins. Fifth International Symposium On Optical Storage (isos 2000) = P Soc Photo-opt Ins Fifth International Symposium On Optical Storage (isos 2000) = P. Soc. Photo-opt. Ins. Fifth International Symposium On Temperate Zone Fruits in The Tropics and Subtropics - Proceedings = Acta Hortic Fifth International Symposium On Temperate Zone Fruits in The Tropics and Subtropics - Proceedings = Acta. Hortic. Fifth International Symposium On Vaccinium Culture = Acta Hortic Fifth International Symposium On Vaccinium Culture = Acta. Hortic. Fifth International Topical Meeting On Education and Training in Optics = P Soc Photo-opt Ins Fifth International Topical Meeting On Education and Training in Optics = P. Soc. Photo-opt. Ins. Fifth International Workshop On Fireblight = Acta Hortic Fifth International Workshop On Fireblight = Acta. Hortic. Fifth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = Proc Spie Fifth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = Proc. Spie. Fifth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Fifth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Fifth International Workshop On Program Comprehension - Iwpc '97, Proceedings = Prog Comprehen Fifth International Workshop On Program Comprehension - Iwpc '97, Proceedings = Prog. Comprehen. Fifth Large Open Pit Conference = Australas I Min Met Fifth Large Open Pit Conference = Australas. I. Min. Met. Fifth Mexican School of Particles and Fields = Aip Conf Proc Fifth Mexican School of Particles and Fields = Aip. Conf. Proc. Fifth Rilem Symposium On Fibre-reinforced Concretes (frc) = Rilem Proc Fifth Rilem Symposium On Fibre-reinforced Concretes (frc) = Rilem Proc. Fifth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P Soc Photo-opt Ins Fifth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P. Soc. Photo-opt. Ins. Fifth Symposium Optics in Industry = Proc Spie Fifth Symposium Optics in Industry = Proc. Spie. Fifth Symposium Optics in Industry = P Soc Photo-opt Ins Fifth Symposium Optics in Industry = P. Soc. Photo-opt. Ins. Fifty-second Annual Meeting - Microscopy Society of America/twenty-ninth Annual Meeting - Microbeam Analysis Society, Proceedings = Proc Ann Meet Msa Fifty-second Annual Meeting - Microscopy Society of America/twenty-ninth Annual Meeting - Microbeam Analysis Society, Proceedings = Proc. Ann. Meet. Msa. Fifty Years of Antimicrobials: Past Perspectives and Future Trends = Symp Soc Gen Microbi Fifty Years of Antimicrobials: Past Perspectives and Future Trends = Symp. Soc. Gen. Microbi. Fifty Years of Plant in Vitro Culture = Colloq Inra Fifty Years of Plant in Vitro Culture = Colloq. Inra. Fifty Years of Quine's Two Dogmas = Graz Phil S Fifty Years of Quine's Two Dogmas = Graz. Phil. S. Fifty Years of Romanian Astrophysics = Aip Conf Proc Fifty Years of Romanian Astrophysics = Aip. Conf. Proc. Fight for An Egalitarian Society: Towards Politics of Racial Harmony and Equity in South Africa = Afr Polit Econ Secur Fight for An Egalitarian Society: Towards Politics of Racial Harmony and Equity in South Africa = Afr. Polit. Econ. Secur. Fighting Terrorism and Drugs: Europe and International Police Cooperation = Routl Adv Int Relat Fighting Terrorism and Drugs: Europe and International Police Cooperation = Routl. Adv. Int. Relat. Fighting The Slave Trade = W African Studies Fighting The Slave Trade = W. African. Studies. Fighting Traffic: The Dawn of The Motor Age in The American City = Inside Technol Fighting Traffic: The Dawn of The Motor Age in The American City = Inside. Technol. Fighting Words: Language Policy and Ethnic Relations in Asia = Bcsia Stud Int Secur Fighting Words: Language Policy and Ethnic Relations in Asia = Bcsia. Stud. Int. Secur. Figlina. Documents du Laboratoire de céramologie de Lyon = Figlina Figs: The Genus Ficus = Tradit Herb Med Mod Figs: The Genus Ficus = Tradit. Herb. Med. Mod. Figurative Language: Cross-cultural and Cross-linguistic Perspectives = Curr Res Semant Prag Figurative Language: Cross-cultural and Cross-linguistic Perspectives = Curr. Res. Semant. Prag. Figure of The Crowd in Early Modern London: The City and Its Double = Early Mod Cult Stud Figure of The Crowd in Early Modern London: The City and Its Double = Early Mod. Cult. Stud. Figur Und Person: Beitrag Zu Einer Historischen Narratologie = Narratologia Figur Und Person: Beitrag Zu Einer Historischen Narratologie = Narratologia. Fiixed Point Theory and Applications = Fixed Point Theory A Fiixed Point Theory and Applications = Fixed. Point Theory A. Fiji medical journal = Fiji Med J Filaria journal = Filaria J File-sharing Applications Engineering = Comput Netw Ser File-sharing Applications Engineering = Comput. Netw. Ser. Filibrary Series = Filibrary S Filibrary Series = Filibrary S. Filibrary Series = Filibrary Ser Filibrary Series = Filibrary Ser. Filibrary Series = Filibrary Series Filled Elastomers Drug Delivery Systems = Adv Polym Sci Filled Elastomers Drug Delivery Systems = Adv. Polym. Sci. Filler-reinforced Elastomers Scanning Force Microscopy = Adv Polym Sci Filler-reinforced Elastomers Scanning Force Microscopy = Adv. Polym. Sci. Film and Media Studies Series = Film Media Stud Ser Film and Media Studies Series = Film Media Stud. Ser. Film and The Emotions = Midwest Stud Philos Film and The Emotions = Midwest. Stud. Philos. Film Comment = Film Comment Film Criticism = Film Criticism Film Culture = Film Culture Film = Film Film, Form and Phantasy: Adrian Stokes and Film Aesthetics = Lang Discourse Soc Film, Form and Phantasy: Adrian Stokes and Film Aesthetics = Lang. Discourse. Soc. Film Formation in Waterborne Coatings = Acs Sym Ser Film Formation in Waterborne Coatings = Acs. Sym. Ser. Film History = Film Hist Filming Shakespeare in The Global Marketplace = Palgrave Shakespear Filming Shakespeare in The Global Marketplace = Palgrave. Shakespear. Filmkritik = Filmkritik Film Psychology Review = Film Psychol Rev Film Psychology Review = Film Psychol. Rev. Film Quarterly = Film Quart Film Quarterly = Film Quart. Film Reader = Film Reader Filmrutan = Filmrutan Film Synthesis and Growth Using Energetic Beams = Mater Res Soc Symp P Film Synthesis and Growth Using Energetic Beams = Mater. Res. Soc. Symp. P. Film Und Kulturelle Erinnerung: Plurimediale Konstellationen = Media Cult Mem Film Und Kulturelle Erinnerung: Plurimediale Konstellationen = Media. Cult. Mem. Filomat = Filomat Filosofia = Filosofia Filosofía = Filosofía Filosofia Unisinos = Filos Unisinos Filosofia Unisinos = Filos. Unisinos Filosoficky Casopis = Filos Cas Filosoficky Casopis = Filos. Cas. Filosofija-sociologija = Filos-sociol Filosofija-sociologija = Filos-sociol. Filozofia = Filozofia Filozofia Nauki = Filoz Nauk Filozofia Nauki = Filoz. Nauk. Filozofska Istrazivanja = Filoz Istraz Filozofska Istrazivanja = Filoz. Istraz. Filozofski Vestnik-acta Philosophica = Filoz Vestn Filozofski Vestnik-acta Philosophica = Filoz. Vestn. Filozofski Vestnik = Filoz Vestn Filozofski Vestnik = Filoz. Vestn. Filtering Theory: With Applications to Fault Detection, Isolation, and Estimation = Syst Control-found A Filtering Theory: With Applications to Fault Detection, Isolation, and Estimation = Syst. Control-found. A. Filtration and Drainage in Geotechnical/geoenvironmental Engineering = Geotech Sp Filtration and Drainage in Geotechnical/geoenvironmental Engineering = Geotech. Sp. Filtration and Separation = Filtr. Sep. Filtration & Separation = Filtr. Sep. Filtration & Separation = Filtr Separat Filtration & Separation = Filtr. Separat. Final Control Elements = Final Contr Final Control Elements = Final Contr. Final Stages of Stellar Evolution = Eas Publications Final Stages of Stellar Evolution = Eas. Publications. Finance and Development=Finance Devel. Finance and Stochastics=Finance Stochastics Finance and Stochastics = Financ Stoch Finance and Stochastics = Financ. Stoch. Finance and Trade Review=Finance Trade Rev. Finance and Trade Review = Financ Trade Rev Finance and Trade Review = Financ. Trade Rev. Finance A Uver-czech Journal of Economics and Finance = Financ Uver Finance A Uver-czech Journal of Economics and Finance = Financ. Uver. Finance A Uver- Czech Journal of Economics and Finance = Financ Uver Finance A Uver- Czech Journal of Economics and Finance = Financ. Uver. Finance A Uver = Financ A Uver Finance A Uver = Financ. A Uver Finance a Úver=Finance Úver Finance & Development = Financ Dev Finance & Development = Financ. Dev. Finance & development = Finance Dev Finance, Economics, and Economic Development 2005 = Transport Res Rec Finance, Economics, and Economic Development 2005 = Transport. Res. Rec. Finance, Economics, and Economic Development 2006 = Transport Res Rec Finance, Economics, and Economic Development 2006 = Transport. Res. Rec. Finance=Finance Finance India=Finance India Finance Research Letters = Financ Res Lett Finance Research Letters = Financ. Res. Lett. Financial Analysts Journal = Financ Anal J Financial Analysts Journal = Financ. Anal. J. Financial and Monetary Policy Studies = Finan Mon P Financial and Monetary Policy Studies = Finan. Mon. P. Financial Condition and Regulation of Insurance Companies = Fed Bank Bo Financial Condition and Regulation of Insurance Companies = Fed. Bank. Bo. Financial Crises: Socio-economic Causes and Institutional Context = Routl Stud Mod World Financial Crises: Socio-economic Causes and Institutional Context = Routl. Stud. Mod. World. Financial Cryptography and Data Security = Lect Notes Comput Sc Financial Cryptography and Data Security = Lect. Notes. Comput. Sc. Financial Cryptography = Lect Notes Comput Sc Financial Cryptography = Lect. Notes. Comput. Sc. Financial Cryptography, Proceedings = Lect Notes Comput Sc Financial Cryptography, Proceedings = Lect. Notes. Comput. Sc. Financial Crytography, Proceedings = Lect Notes Comput Sc Financial Crytography, Proceedings = Lect. Notes. Comput. Sc. Financial Deregulation and Integration in East Asia = Nber E A Ec Financial Deregulation and Integration in East Asia = Nber. E. A. Ec. Financial Development, Institutions, Growth and Poverty Reduction = Stud Dev Econ Policy Financial Development, Institutions, Growth and Poverty Reduction = Stud. Dev. Econ. Policy. Financial Econometrics, Second Edition = Routl Adv Texts Econ Financial Econometrics, Second Edition = Routl. Adv. Texts. Econ. Financial Engineering and the Japanese Markets=Finan. Eng. Japanese Markets Financial Engineering, E-commerce and Supply Chain = Appl Optim Financial Engineering, E-commerce and Supply Chain = Appl. Optim. Financial Engineering, E-commerce and Supply Chain = Appl Optimizat Financial Engineering, E-commerce and Supply Chain = Appl. Optimizat. Financial Executive = Financ Executive Financial Executive = Financ. Executive Financial Fragility and Instability in Indonesia = Routl Cont Se Asia S Financial Fragility and Instability in Indonesia = Routl. Cont. Se. Asia. S. Financial Globalization and Democracy in Emerging Markets = Int Pol Ec Financial Globalization and Democracy in Emerging Markets = Int. Pol. Ec. Financial Globalization and Democracy in Emerging Markets = Int Polit Econ Ser Financial Globalization and Democracy in Emerging Markets = Int. Polit. Econ. Ser. Financial History Review=Finan. Hist. Rev. Financial Industry Studies=Finan. Industry Stud. Financial Institutions and Services Series = Financ I Serv Ser Financial Institutions and Services Series = Financ. I. Serv. Ser. Financial Institutions in Europe Under New Competitive Conditions = Finan Mon P Financial Institutions in Europe Under New Competitive Conditions = Finan. Mon. P. Financial Instruments of Forest Policy, Proceedings = Eur Forest Inst Proc Financial Instruments of Forest Policy, Proceedings = Eur. Forest Inst. Proc. Financial Liberalisation in Asia: Analysis and Prospects = Oecd Devel Financial Liberalisation in Asia: Analysis and Prospects = Oecd. Devel. Financial Liberalization: Beyond Orthodox Concerns = Int Pap Polit Econ Financial Liberalization: Beyond Orthodox Concerns = Int. Pap. Polit. Econ. Financial Liberalization in Developing Countries: Issues, Time Series Analyses and Policy Implications = Contrib Econ Financial Liberalization in Developing Countries: Issues, Time Series Analyses and Policy Implications = Contrib. Econ. Financial Management = Financ Manage Financial Management = Financ. Manage. Financial Management=Finan. Manage. Financial Management of Life Insurance Companies = Hueb Int S Financial Management of Life Insurance Companies = Hueb. Int. S. Financial Market Imperfections and Corporate Decisions = Contrib Econ Financial Market Imperfections and Corporate Decisions = Contrib. Econ. Financial Markets and Financial Crises = Nat Bur Ec Financial Markets and Financial Crises = Nat. Bur. Ec. Financial Markets and The Macroeconomy = Routl Int Stud Money Financial Markets and The Macroeconomy = Routl. Int. Stud. Money. Financial Markets Ethics = Etud Europ Financial Markets Ethics = Etud. Europ. Financial Markets, Institutions and Instruments=Finan. Markets, Inst. Instruments Financial Market Volatility = Fed Bank Ks Financial Market Volatility = Fed. Bank. Ks. Financial Modeling Applications and Data Envelopment Applications = Appl Manag Sci Financial Modeling Applications and Data Envelopment Applications = Appl. Manag. Sci. Financial Modeling Under Non-gaussian Distributions = Springer Financ Financial Modeling Under Non-gaussian Distributions = Springer. Financ. Financial Modelling = Contr Manage Sci Financial Modelling = Contr. Manage. Sci. Financial Models and Tools for Managing Lean Manufacturing = Supply Chain Integr Financial Models and Tools for Managing Lean Manufacturing = Supply. Chain. Integr. Financial Models in Insurance Solvency = Hueb Int S Financial Models in Insurance Solvency = Hueb. Int. S. Financial Participation of Employees in The Eu-27 = Stud Econ Transit Financial Participation of Employees in The Eu-27 = Stud. Econ. Transit. Financial Practice and Education=Finan. Practice Educ. Financial Reform and Economic Development in China = Adv Chin Econ Stud Financial Reform and Economic Development in China = Adv. Chin. Econ. Stud. Financial Reform in Socialist Economies = Edi Semin S Financial Reform in Socialist Economies = Edi. Semin. S. Financial Regulation and Monetary Arrangements After 1992 = Contrib To Econ Anal Financial Regulation and Monetary Arrangements After 1992 = Contrib. To. Econ. Anal. Financial Reporting in The Uk: A History of The Accounting Standards Committee, 1969-1990 = Routl Hist Persp Acc Financial Reporting in The Uk: A History of The Accounting Standards Committee, 1969-1990 = Routl. Hist. Persp. Acc. Financial Review=Finan. Rev. Financial Sector Reform and The International Integration of China = Routl Stud Chin Econ Financial Sector Reform and The International Integration of China = Routl. Stud. Chin. Econ. Financial Sector Reform and The International Integration of China = Rout Stud Chin Econ Financial Sector Reform and The International Integration of China = Rout. Stud. Chin. Econ. Financial Sector Reforms, Economic Growth, and Stability = Edi Semin S Financial Sector Reforms, Economic Growth, and Stability = Edi. Semin. S. Financial Sector Reforms in Asian and Latin American Countries = Edi Semin S Financial Sector Reforms in Asian and Latin American Countries = Edi. Semin. S. Financial times (North American edition) = Financ Times Financing Medicine: The British Experience Since 1750 = Routl Stud Soc Hist Financing Medicine: The British Experience Since 1750 = Routl. Stud. Soc. Hist. Financing Newly Emerging Private Enterprises in Transition Economies = Oecd Proc Financing Newly Emerging Private Enterprises in Transition Economies = Oecd. Proc. Financing The World Economy in The Nineties = Finan Mon P Financing The World Economy in The Nineties = Finan. Mon. P. FinanzArchiv=FinanzArch. Finanzarchiv = Finanzarchiv Finanz-archiv : Zeitschrift fur das Gesamte Finanzwesen = Finanzarchiv Finanzierung Der Bundeshauptstadt Bonn = Veroff Hist Komm Ber Finanzierung Der Bundeshauptstadt Bonn = Veroff. Hist. Komm. Ber. Finding Saint Francis in Literature and Art = New Middle Ages Finding Saint Francis in Literature and Art = New. Middle. Ages. Findings brief : health care financing & organization = Find Brief Fine Ceramic Powders = Brit Cer Pr Fine Ceramic Powders = Brit. Cer. Pr. Fine Chemicals for The Electronics Industry Ii : Chemical Applications for The 1990s = Roy Soc Ch Fine Chemicals for The Electronics Industry Ii : Chemical Applications for The 1990s = Roy. Soc. Ch. Fine Needle Aspiration of Bone Tumours: The Clinical, Radiological, Cytological Approach = Monogr Clin Cytol Fine Needle Aspiration of Bone Tumours: The Clinical, Radiological, Cytological Approach = Monogr. Clin. Cytol. Fine Particles Science and Technology = Nato Asi 3 High Tech Fine Particles Science and Technology = Nato. Asi. 3. High. Tech. Fine Sediment Dynamics in The Marine Environment = Proceed Marine Sci Fine Sediment Dynamics in The Marine Environment = Proceed. Marine Sci. Fine Structure of Solar Radio Bursts = Astrophys Space Sc L Fine Structure of Solar Radio Bursts = Astrophys. Space. Sc. L. Fine Structures of Hyperbolic Diffeomorphisms = Springer Monogr Math Fine Structures of Hyperbolic Diffeomorphisms = Springer. Monogr. Math. Finfets and Other Multi-gate Transistors = Integr Circuit Syst Finfets and Other Multi-gate Transistors = Integr. Circuit. Syst. Finishing of Advanced Ceramics and Glasses = Ceram Trans Finishing of Advanced Ceramics and Glasses = Ceram. Trans. Finisterra = Finisterra Finite and Infinite Combinatorics in Sets and Logic = Nato Adv Sci Inst Se Finite and Infinite Combinatorics in Sets and Logic = Nato. Adv. Sci. Inst. Se. Finite and Locally Finite Groups = Nato Adv Sci Inst Se Finite and Locally Finite Groups = Nato. Adv. Sci. Inst. Se. Finite Difference Methods for Ordinary and Partial Differential Equations: Steady-state and Time-dependent Problems = Other Titl Appl Math Finite Difference Methods for Ordinary and Partial Differential Equations: Steady-state and Time-dependent Problems = Other. Titl. Appl. Math. Finite Dimensional Algebras and Related Topics = Nato Adv Sci I C-mat Finite Dimensional Algebras and Related Topics = Nato. Adv. Sci. I. C-mat. Finite Dimensional Algebras and Related Topics = Nato Adv Sci Inst Se Finite Dimensional Algebras and Related Topics = Nato. Adv. Sci. Inst. Se. Finite Element Analysis of Beam-to Beam Contact = Lect Notes Appl Comp Finite Element Analysis of Beam-to Beam Contact = Lect. Notes. Appl. Comp. Finite Element Analysis of Shells - Fundamentals, Second Edition = Comput Fluid Solid M Finite Element Analysis of Shells - Fundamentals, Second Edition = Comput. Fluid. Solid. M. Finite Element Methods = Lect Notes Pure Appl Finite Element Methods = Lect. Notes. Pure. Appl. Finite Elements in Analysis and Design = Finite Elem. Anal. Des. Finite Elements in Analysis and Design = Finite Elem Anal Des Finite Elements in Analysis and Design = Finite Elem. Anal. Des. Finite Elements in Fluids, Vol 8 = S Comp Phys Finite Elements in Fluids, Vol 8 = S. Comp. Phys. Finite Element Structural Analysis: New Concepts = Aiaa Educ Ser Finite Element Structural Analysis: New Concepts = Aiaa. Educ. Ser. Finite Fields and Applications = Contemp Math Finite Fields and Applications = Contemp. Math. Finite Fields and Applications = Lect Notes Comput Sc Finite Fields and Applications = Lect. Notes. Comput. Sc. Finite Fields and their Applications = Finite Fields Appl. Finite Fields and Their Applications = Finite Fields Appl. Finite Fields and Their Applications = Finite Fields Th App Finite Fields and Their Applications = Finite Fields Th. App. Finite Fields: Theory and Applications = Contemp Math Finite Fields: Theory and Applications = Contemp. Math. Finite Generalized Quadrangles, Second Edition = Ems Ser Lect Math Finite Generalized Quadrangles, Second Edition = Ems. Ser. Lect. Math. Finite Geometries, Proceedings = Dev Math Finite Geometries, Proceedings = Dev. Math. Finite Or Infinite Dimensional Complex Analysis and Applications = Adv Comp Anal Appl Finite Or Infinite Dimensional Complex Analysis and Applications = Adv. Comp. Anal. Appl. Finite Or Infinite Dimensional Complex Analysis = Lect Notes Pure Appl Finite Or Infinite Dimensional Complex Analysis = Lect. Notes. Pure. Appl. Finite Reductive Groups: Related Structures and Representations = Prog Math Finite Reductive Groups: Related Structures and Representations = Prog. Math. Finite-state Methods and Natural Language Processing = Front Artif Intel Ap Finite-state Methods and Natural Language Processing = Front. Artif. Intel. Ap. Finite-state Methods and Natural Language Processing = Lect Notes Artif Int Finite-state Methods and Natural Language Processing = Lect. Notes. Artif. Int. Finite-state Methods and Natural Language Processing = Lect Notes Comput Sc Finite-state Methods and Natural Language Processing = Lect. Notes. Comput. Sc. Finite Structures With Few Types = Ann Math Stud Finite Structures With Few Types = Ann. Math. Stud. Finite Zeros in Discrete Time Control Systems = Lect Notes Contr Inf Finite Zeros in Discrete Time Control Systems = Lect. Notes. Contr. Inf. Finnish Chemical Letters = Finn Chem Lett Finnish Chemical Letters = Finn. Chem. Lett. Finnish Economic Papers=Finnish Econ. Pap. Finnish-karelian Symposium On Mire Conservation and Classification = Publ Wat Environ Adm Finnish-karelian Symposium On Mire Conservation and Classification = Publ. Wat. Environ. Adm. Finska Kemistsamfundets Meddelanden = Finska Kemists Medd Finska Kemistsamfundets Meddelanden = Finska Kemists. Medd. Finska lakaresallskapets handlingar = Fin Lakaresallsk Handl Finska Lakaresallskapets Handlingar = Fin. Lakaresallsk. Handl. Finslerian Geometries = Fund Theor Finslerian Geometries = Fund. Theor. Finslerian Geometries = Fund Theor Phys Finslerian Geometries = Fund. Theor. Phys. Fiore in Context = W&k Devers Dante St Fiore in Context = W&k. Devers. Dante. St. F.i.p. Paperback = F I P Paperback F.i.p. Paperback = F. I. P. Paperback Fire and Explosions: Recent Advances in Modelling and Analysis = Imeche Sem Fire and Explosions: Recent Advances in Modelling and Analysis = Imeche. Sem. Fire and Flammability of Furnishings and Contents of Buildings = Am Soc Test Mater Fire and Flammability of Furnishings and Contents of Buildings = Am. Soc. Test. Mater. Fire and Materials = Fire Mater Fire and Materials = Fire Mater. Fire and Polymers = Acs Sym Ser Fire and Polymers = Acs. Sym. Ser. Fire and Polymers Ii = Acs Sym Ser Fire and Polymers Ii = Acs. Sym. Ser. Fire and Polymers Iv: Materials and Concepts for Hazard Prevention = Acs Sym Ser Fire and Polymers Iv: Materials and Concepts for Hazard Prevention = Acs. Sym. Ser. Fire and Polymers V: Materials and Concepts for Fire Retardancy = Acs Sym Ser Fire and Polymers V: Materials and Concepts for Fire Retardancy = Acs. Sym. Ser. Fire and Sustainable Agricultural and Forestry Development in Eastern Indonesia and Northern Australia, Proceedings = Aciar Proc Fire and Sustainable Agricultural and Forestry Development in Eastern Indonesia and Northern Australia, Proceedings = Aciar. Proc. Fire and The Environment : Ecological and Cultural Perspectives = Usda Southe Fire and The Environment : Ecological and Cultural Perspectives = Usda. Southe. Fire Command = Fire Command Fire Engineering = Fire Eng Fire Engineering = Fire Eng. Firefighter Fitness: A Health and Wellness Guide = Public Health 21st C Firefighter Fitness: A Health and Wellness Guide = Public. Health 21st. C. Fire, Fuel Treatments, and Ecological Restoration: Conference Proceedings = Us For Serv Rmrs-p Fire, Fuel Treatments, and Ecological Restoration: Conference Proceedings = Us. For. Serv. Rmrs-p. Fire Hazard and Fire Risk Assessment = Am Soc Test Mater Fire Hazard and Fire Risk Assessment = Am. Soc. Test. Mater. Fire in Ecosystems of Boreal Eurasia = For Sci Fire in Ecosystems of Boreal Eurasia = For. Sci. Fire in The Tropical Biota = Ecol Stu An Fire in The Tropical Biota = Ecol. Stu. An. Fire in The United States: A Reference Work On The Nation's Fire Problem = Saf Risk Soc Fire in The United States: A Reference Work On The Nation's Fire Problem = Saf. Risk. Soc. Fire journal (Boston, Mass.) = Fire J Fire Journal = Fire J Fire Journal = Fire J. Fireline = Fireline Fire Properties of Polymer Composite Materials = Solid Mech Appl Fire Properties of Polymer Composite Materials = Solid. Mech. Appl. Fire Protection and Fire Fighting in Nuclear Installations = Int Aeaps 2 Fire Protection and Fire Fighting in Nuclear Installations = Int. Aeaps. 2. Fire Research = Fire Res Fire Research = Fire Res. Fire Resistance of Industrial Fluids = Am Soc Test Mater Fire Resistance of Industrial Fluids = Am. Soc. Test. Mater. Fire Safety Journal = Fire Safety J Fire Safety Journal = Fire Safety J. Fire Safety Journal = Fire Saf. J. Fire Safety = Saf Risk Soc Fire Safety = Saf. Risk. Soc. Fire Service Today = Fire Serv Today Fire Service Today = Fire Serv. Today Fire Standards in The International Marketplace = Am Soc Test Mater Fire Standards in The International Marketplace = Am. Soc. Test. Mater. Fire technology = Fire Technol Fire Technology = Fire Technol Fire Technology = Fire Technol. Fire Toxicity = Woodhead Publ Mater Fire Toxicity = Woodhead. Publ. Mater. Firm As An Entity: Implications for Economics, Accounting and The Law = Econ Legal Relation Firm As An Entity: Implications for Economics, Accounting and The Law = Econ. Legal. Relation. First Advances in Solar Physics Euroconference : Advances in The Physics of Sunspots = Astr Soc P First Advances in Solar Physics Euroconference : Advances in The Physics of Sunspots = Astr. Soc. P. First Annual Advanced Research Techniques Forum = Amer Mar As First Annual Advanced Research Techniques Forum = Amer. Mar. As. First Balkan Symposium On Vegetables and Potatoes, Vols. I & Ii = Acta Hortic First Balkan Symposium On Vegetables and Potatoes, Vols. I & Ii = Acta. Hortic. First Cinvestav-unam Symposium On High Energy Physics = Aip Conf Proc First Cinvestav-unam Symposium On High Energy Physics = Aip. Conf. Proc. First City: Philadelphia and The Forging of Historical Memory = Early Am Stud Ser First City: Philadelphia and The Forging of Historical Memory = Early. Am. Stud. Ser. First Computers-history and Architectures = Hist Comp First Computers-history and Architectures = Hist. Comp. First Course in Bayesian Statistical Methods = Springer Texts Stat First Course in Bayesian Statistical Methods = Springer. Texts. Stat. First Course in In Silico Medicine = First Course Silico First Course in Order Statistics = Class Appl Math First Course in Order Statistics = Class. Appl. Math. First Crusade and The Idea of Crusading = Middle Ages Ser First Crusade and The Idea of Crusading = Middle. Ages. Ser. First Erich L. Lehmann Symposium - Optimality = Inst Math S First Erich L. Lehmann Symposium - Optimality = Inst. Math. S. First European Conference On Smart Structures and Materials = P Soc Photo-opt Ins First European Conference On Smart Structures and Materials = P. Soc. Photo-opt. Ins. First European Congress of Mathematics, Vol Iii = Prog Math First European Congress of Mathematics, Vol Iii = Prog. Math. First European Congress of Mathematics, Vol Ii = Prog Math First European Congress of Mathematics, Vol Ii = Prog. Math. First European Congress of Mathematics, Vol I = Prog Math First European Congress of Mathematics, Vol I = Prog. Math. First European Workshop On Monte Carlo Treatment Planning = J Phys Conf Ser First European Workshop On Monte Carlo Treatment Planning = J. Phys. Conf. Ser. First Extractive Metallurgy Operators' Conference, Proceedings = Australas I Min Met First Extractive Metallurgy Operators' Conference, Proceedings = Australas. I. Min. Met. First Glast Symposium = Aip Conf Proc First Glast Symposium = Aip. Conf. Proc. First Iee/imeche International Conference On Power Station Maintenance - Profitability Through Reliability = Iee Conf Publ First Iee/imeche International Conference On Power Station Maintenance - Profitability Through Reliability = Iee. Conf. Publ. First Iee International Conference On Artificial Neural Networks = Iee Conf Publ First Iee International Conference On Artificial Neural Networks = Iee Conf. Publ. First International Conference of The Oie Reference Laboratories and Collaborating Centres = Dev Biologicals First International Conference of The Oie Reference Laboratories and Collaborating Centres = Dev. Biologicals. First International Conference On 3g Mobile Communication Technologies = Iee Conf Publ First International Conference On 3g Mobile Communication Technologies = Iee. Conf. Publ. First International Conference On Advances in Medical Signal and Information Processing = Iee Conf Publ First International Conference On Advances in Medical Signal and Information Processing = Iee. Conf. Publ. First International Conference On Expert Planning Systems = Iee Conf Publ First International Conference On Expert Planning Systems = Iee. Conf. Publ. First International Conference On Improving Construction and Use Through Integrated Design Solutions = Vtt Symp First International Conference On Improving Construction and Use Through Integrated Design Solutions = Vtt. Symp. First International Conference On Indium Phosphide and Related Materials for Advanced Electronic and Optical Devices = P Soc Photo-opt Ins First International Conference On Indium Phosphide and Related Materials for Advanced Electronic and Optical Devices = P. Soc. Photo-opt. Ins. First International Conference On Intelligent Systems Engineering = Iee Conf Publ First International Conference On Intelligent Systems Engineering = Iee. Conf. Publ. First International Conference On Rabies in Europe = Dev Biologicals First International Conference On Rabies in Europe = Dev. Biologicals. First International Conference On Software Engineering and Formal Methods, Proceedings = I C Softw Eng Form M First International Conference On Software Engineering and Formal Methods, Proceedings = I. C. Softw. Eng. Form. M. First International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins First International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. First International Future Mining Conference and Exhibition 2008, Proceedings = Australas I Min Met First International Future Mining Conference and Exhibition 2008, Proceedings = Australas. I. Min. Met. First International Persimmon Symposium = Acta Hortic First International Persimmon Symposium = Acta. Hortic. First International Press Lecture Series = First Int. Press Lect. Ser. First International Symposium On Banana in The Subtropics, Proceedings = Acta Hortic First International Symposium On Banana in The Subtropics, Proceedings = Acta. Hortic. First International Symposium On Cherimoya = Acta Hortic First International Symposium On Cherimoya = Acta. Hortic. First International Symposium On Cucurbits = Acta Hortic First International Symposium On Cucurbits = Acta. Hortic. First International Symposium On Edible Alliaceae = Acta Hortic First International Symposium On Edible Alliaceae = Acta. Hortic. First International Symposium On Fig = Acta Hortic First International Symposium On Fig = Acta. Hortic. First International Symposium On High-power Laser Macroprocessing = P Soc Photo-opt Ins First International Symposium On High-power Laser Macroprocessing = P. Soc. Photo-opt. Ins. First International Symposium On Microgravity Research & Applications in Physical Sciences and Biotechnology, Vols I and Ii, Proceedings = Esa Spec Publ First International Symposium On Microgravity Research & Applications in Physical Sciences and Biotechnology, Vols I and Ii, Proceedings = Esa. Spec. Publ. First International Symposium On Microgravity Research & Applications in Physical Sciences and Biotechnology, Vols I and Ii, Proceedings = Esa Sp Publ First International Symposium On Microgravity Research & Applications in Physical Sciences and Biotechnology, Vols I and Ii, Proceedings = Esa. Sp. Publ. First International Symposium On Ornamental Palms = Acta Hortic First International Symposium On Ornamental Palms = Acta. Hortic. First International Symposium On Quantum Informatics = Proc Spie First International Symposium On Quantum Informatics = Proc. Spie. First International Symposium On Quantum Informatics = P Soc Photo-opt Ins First International Symposium On Quantum Informatics = P. Soc. Photo-opt. Ins. First International Symposium On Solanacea for Fresh Market = Acta Hortic First International Symposium On Solanacea for Fresh Market = Acta. Hortic. First International Symposium On Walnut Production = Acta Hortic First International Symposium On Walnut Production = Acta. Hortic. First International Workshop and Summer School On Plasma Physics = J Phys Conf Ser First International Workshop and Summer School On Plasma Physics = J. Phys. Conf. Ser. First International Workshop On Carrot = Acta Hortic First International Workshop On Carrot = Acta. Hortic. First International Workshop On Classical and Quantum Interference = P Soc Photo-opt Ins First International Workshop On Classical and Quantum Interference = P. Soc. Photo-opt. Ins. First International Workshop On Hyaluronan in Drug Delivery = Roy S Med S First International Workshop On Hyaluronan in Drug Delivery = Roy. S. Med. S. First International Workshop On Nonequilibrium Processes in Plasma Physics and Studies of Environment = J Phys Conf Ser First International Workshop On Nonequilibrium Processes in Plasma Physics and Studies of Environment = J. Phys. Conf. Ser. First International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int Work Sys Appr D First International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int. Work. Sys. Appr. D. First Invitation Conference On Databases for Education and Training = Cedefop Doc First Invitation Conference On Databases for Education and Training = Cedefop. Doc. First Ishs Workshop On Strategies to Optimize Wine Grape Quality = Acta Hortic First Ishs Workshop On Strategies to Optimize Wine Grape Quality = Acta. Hortic. First Ishs Workshop On Water Relations of Grapevines, Proceedings = Acta Hortic First Ishs Workshop On Water Relations of Grapevines, Proceedings = Acta. Hortic. First Iso Workshop On Analytical Spectroscopy = Esa Sp Publ First Iso Workshop On Analytical Spectroscopy = Esa. Sp. Publ. First Jet Propulsion Laboratory in Situ Instruments Workshop = Proc Spie First Jet Propulsion Laboratory in Situ Instruments Workshop = Proc. Spie. First Jet Propulsion Laboratory in Situ Instruments Workshop = P Soc Photo-opt Ins First Jet Propulsion Laboratory in Situ Instruments Workshop = P. Soc. Photo-opt. Ins. First Lady of Letters: Judith Sargent Murray and The Struggle for Female Independence = Early Am Stud Ser First Lady of Letters: Judith Sargent Murray and The Struggle for Female Independence = Early. Am. Stud. Ser. First Language Attrition: Interdisciplinary Perspectives On Methodological Issues = Stud Bilingual First Language Attrition: Interdisciplinary Perspectives On Methodological Issues = Stud. Bilingual. First Latin American Symposium On High Energy Physics and Vii Mexican School of Particles and Fields = Aip Conf Proc First Latin American Symposium On High Energy Physics and Vii Mexican School of Particles and Fields = Aip. Conf. Proc. First Light in The Universe = Saas Fee Ad First Light in The Universe = Saas. Fee. Ad. First Light Science With The Gtc = Rev Mex Ast Astr First Light Science With The Gtc = Rev. Mex. Ast. Astr. First Mediterranean Conference On Classical and Quantum Gravity (mccqg 2009) = J Phys Conf Ser First Mediterranean Conference On Classical and Quantum Gravity (mccqg 2009) = J. Phys. Conf. Ser. First Meeting of The Aps Topical Group On Hadronic Physics = J Phys Conf Ser First Meeting of The Aps Topical Group On Hadronic Physics = J. Phys. Conf. Ser. First Men Americas Presidents Series = First Men Am Pres Ne First Men Americas Presidents Series = First Men Am. Pres. Ne. First Msg Rao Workshop = Esa Spec Publ First Msg Rao Workshop = Esa. Spec. Publ. First Msg Rao Workshop = Esa Sp Publ First Msg Rao Workshop = Esa. Sp. Publ. First Nrel Conference On Theromophotovoltic Generation of Electricity = Aip Conf Proc First Nrel Conference On Theromophotovoltic Generation of Electricity = Aip. Conf. Proc. First Prejudice: Religous Tolerance and Intolerance in Early America = Early Am Stud Ser First Prejudice: Religous Tolerance and Intolerance in Early America = Early Am. Stud. Ser. First-principles Calculations for Ferroelectrics = Aip Conf Proc First-principles Calculations for Ferroelectrics = Aip. Conf. Proc. First Principles of Meteorology and Air Pollution = Environ Pollut Ser First Principles of Meteorology and Air Pollution = Environ. Pollut. Ser. First Professional Scientist: Robert Hooke and The Royal Society of London = Sci Netw Hist Stud First Professional Scientist: Robert Hooke and The Royal Society of London = Sci. Netw. Hist. Stud. First Results From Hinode = Astr Soc P First Results From Hinode = Astr. Soc. P. First Sourcebook On Nordic Research in Mathematics Education: Norway, Sweden, Iceland, Denmark, and Contributions From Finland = Mont Math Enthus Mon First Sourcebook On Nordic Research in Mathematics Education: Norway, Sweden, Iceland, Denmark, and Contributions From Finland = Mont. Math. Enthus. Mon. First Stars and Galaxies: Challenges for The Next Decade = Aip Conf Proc First Stars and Galaxies: Challenges for The Next Decade = Aip. Conf. Proc. First Stars = Eso Astrophy Symp First Stars = Eso. Astrophy. Symp. First Stars Iii = Aip Conf Proc First Stars Iii = Aip. Conf. Proc. First Status Colloquium of The Microsystem Technology Project, September 23-24 1993 = K F K Reports First Status Colloquium of The Microsystem Technology Project, September 23-24 1993 = K. F. K. Reports. First Steps in Several Complex Variables: Reinhardt Domains = Ems Textb Math First Steps in Several Complex Variables: Reinhardt Domains = Ems. Textb. Math. First Stromlo Symposium: The Physics of Active Galaxies = Astr Soc P First Stromlo Symposium: The Physics of Active Galaxies = Astr. Soc. P. First things (New York, N.Y.) = First Things First Translations of Machiavelli's Prince: From The Sixteenth to The First Half of The Nineteenth Century = Int Forsch Allg Vgl First Translations of Machiavelli's Prince: From The Sixteenth to The First Half of The Nineteenth Century = Int. Forsch. Allg. Vgl. First Us-japanese Dialogue On Lipid Disorders and Coronary Artery Disease = Roy Soc Med Int Cong First Us-japanese Dialogue On Lipid Disorders and Coronary Artery Disease = Roy. Soc. Med. Int. Cong. First Workshop On Innovative System Concepts, Proceedings = Esa Spec Publ First Workshop On Innovative System Concepts, Proceedings = Esa. Spec. Publ. First Workshop On Innovative System Concepts, Proceedings = Esa Sp Publ First Workshop On Innovative System Concepts, Proceedings = Esa. Sp. Publ. Fiscal Decentralisation in Emerging Economies = Oecd Devel Fiscal Decentralisation in Emerging Economies = Oecd. Devel. Fiscal Decentralization and Local Public Finance in Japan = Routl Front Polit Ec Fiscal Decentralization and Local Public Finance in Japan = Routl. Front. Polit. Ec. Fiscal Federalism and Political Decentralization: Lessons From Spain, Germany and Canada = Stud Fiscal Fed Stat Fiscal Federalism and Political Decentralization: Lessons From Spain, Germany and Canada = Stud. Fiscal Fed. Stat. Fiscal Institutions and Fiscal Performance = Nber Conf R Fiscal Institutions and Fiscal Performance = Nber. Conf. R. Fiscal Policy and Management in East Asia = Nber E A Ec Fiscal Policy and Management in East Asia = Nber. E. A. Ec. Fiscal Policy, Taxation and The Financial System in An Increasingly Integrated Europe = Finan Mon P Fiscal Policy, Taxation and The Financial System in An Increasingly Integrated Europe = Finan. Mon. P. Fiscal Reform in The Developing World = Fisc Ref D Fiscal Reform in The Developing World = Fisc. Ref. D. Fiscal Studies=Fisc. Stud. Fiscal Studies = Fisc Stud Fiscal Studies = Fisc. Stud. Fiscal Targets and Economic Growth = John Deu Rt Econ Pol Fiscal Targets and Economic Growth = John. Deu. Rt. Econ. Pol. Fischer-tropsch Synthesis, Catalysts and Catalysis = Stud Surf Sci Catal Fischer-tropsch Synthesis, Catalysts and Catalysis = Stud. Surf. Sci. Catal. Fischer-tropsch Technology = Stud Surf Sci Catal Fischer-tropsch Technology = Stud. Surf. Sci. Catal. Fish and Fisheries = Fish Fish Fish and Fisheries Series = Fish Fisheries Serie Fish and Fisheries Series = Fish Fisheries Serie. Fish and Fisheries Series = Fish Fish Ser Fish and Fisheries Series = Fish Fish Ser. Fish Behaviour in Relation to Fishing Operations = Ices Mar Sc Fish Behaviour in Relation to Fishing Operations = Ices. Mar. Sc. Fish Drying in Indonesia = Aciar Proc Fish Drying in Indonesia = Aciar. Proc. Fisheries and Oil Development On The Continental Shelf = Am Fish S S Fisheries and Oil Development On The Continental Shelf = Am. Fish. S. S. Fisheries Assessment and Management in Data-limited Situations = Low Wake Fi Fisheries Assessment and Management in Data-limited Situations = Low. Wake. Fi. Fisheries Bycatch = Alaska Sea Fisheries Bycatch = Alaska. Sea. Fisheries = Fisheries Fisheries in A Changing Climate = Am Fish S S Fisheries in A Changing Climate = Am. Fish. S. S. Fisheries Management and Ecology = Fisheries Manag Ecol Fisheries Management and Ecology = Fisheries Manag. Ecol. Fisheries Management and Watershed Development = Am Fish S S Fisheries Management and Watershed Development = Am. Fish. S. S. Fisheries Management = Fish Manage Fisheries Management = Fish. Manage. Fisheries Oceanography = Fish Oceanogr Fisheries Oceanography = Fish. Oceanogr. Fisheries, Reefs, and Offshore Development = Am Fish S S Fisheries, Reefs, and Offshore Development = Am. Fish. S. S. Fisheries research = Fish Res Fisheries Research = Fish Res Fisheries Research = Fish. Res. Fisheries Science (Carlton, Australia) = Fish. Sci. (Carlton, Aust.) Fisheries Science = Fisheries Sci Fisheries Science = Fisheries Sci. Fisheries Science = Fish. Sci. Fisheries Subsidies Under International Law = Hamb Stud Marit Aff Fisheries Subsidies Under International Law = Hamb. Stud. Marit. Aff. Fishery Bulletin = Fish B-noaa Fishery Bulletin = Fish. B-noaa. Fishery Bulletin of The National Oceanic and Atmospheric Administration = Fish Bull Natl Oc At Fishery Bulletin of The National Oceanic and Atmospheric Administration = Fish. Bull. Natl. Oc. At. Fishery Stock Assessment Models = Low Wake Fi Fishery Stock Assessment Models = Low. Wake. Fi. Fishes and The Break-up of Pangaea = Geol Soc Spec Publ Fishes and The Break-up of Pangaea = Geol. Soc. Spec. Publ. Fish Fishing and Fisheries = Fish Fish Fish Fish Habitat: Essential Fish Habitat and Rehabilitation = Am Fish S S Fish Habitat: Essential Fish Habitat and Rehabilitation = Am. Fish S. S. Fishing News International = Fish News Int Fishing News International = Fish. News Int. Fish Nutrition in Practice = Colloq Inra Fish Nutrition in Practice = Colloq. Inra. Fish Nutrition Research in Asia = Asian Fish Soc Spec Fish Nutrition Research in Asia = Asian. Fish Soc. Spec. Fish Nutrition Research in Asia / = Asian Fish Soc Spec Fish Nutrition Research in Asia / = Asian. Fish Soc. Spec. Fish Pathology = Fish Pathol Fish Pathology = Fish Pathol. Fish Physiology and Biochemistry = Fish Physiol Biochem Fish Physiology and Biochemistry = Fish Physiol. Biochem. Fish Physiology = Fish Physiol Fish Physiology = Fish Physiol. Fish Production Potential of The Baltic Sea = Environ Sci Eng Fish Production Potential of The Baltic Sea = Environ. Sci. Eng. Fish & Shellfish Immunology = Fish Shellfish Immun Fish & Shellfish Immunology = Fish Shellfish Immun. Fish & shellfish immunology = Fish Shellfish Immunol Fish & Shellfish Immunology = Fish Shellfish Immunol. Fish Vaccinology = Dev Biol Stand Fish Vaccinology = Dev. Biol. Stand. Fission Product Inhalation Project = Fission Prod. Inhal. Proj. Fission product inhalation project [technical progress report]. Lovelace Foundation for Medical Education and Research = Fission Prod Inhal Proj Fitoterapia = Fitoterapia Five Lectures in Complex Analysis = Contemp Math Five Lectures in Complex Analysis = Contemp. Math. Five Years of Laparoscopic Cholecystectomy: A Reappraisal = Prog Surg Five Years of Laparoscopic Cholecystectomy: A Reappraisal = Prog. Surg. Fixed and Flapping Wing Aerodynamics for Micro Air Vehicle Applications = Progr Astronaut Aero Fixed and Flapping Wing Aerodynamics for Micro Air Vehicle Applications = Progr. Astronaut. Aero. Fixed-point Algorithms for Inverse Problems in Science and Engineering = Springer Ser Optim A Fixed-point Algorithms for Inverse Problems in Science and Engineering = Springer. Ser. Optim. A. Fixed Point Theory and Applications = Fixed Point Theory A Fixed Point Theory and Applications = Fixed Point Theory A. Fixed Point Theory and Applications = Pitman Res Fixed Point Theory and Applications = Pitman. Res. Fixed Point Theory and Applications Series = Fixed Point Theory A Fixed Point Theory and Applications Series = Fixed Point Theory A. Fixed Point Theory and Applications, Vol 6 = Fixed Point Theory A Fixed Point Theory and Applications, Vol 6 = Fixed Point Theory A. Fixed Point Theory and Applications, Vol 7 = Fixed Point Theory A Fixed Point Theory and Applications, Vol 7 = Fixed Point Theory A. Fixed Point Theory and Its Applications = Banach Cent Fixed Point Theory and Its Applications = Banach. Cent. Fixed Point Theory = Fixed Point Theor-ro Fixed Point Theory = Fixed Point Theor-ro. Fixed Point Theory = Fixed Point Theory Fixed Point Theory for Lipschitzian-type Mappings With Applications = Topol Fixed Point Th Fixed Point Theory for Lipschitzian-type Mappings With Applications = Topol. Fixed Point Th. Fizika Èlementarnykh Chastits i Atomnogo Yadra = Fiz. Èlementar. Chastits i Atom. Yadra Fizika Goreniya i Vzryva = Fiz. Goreniya Vzryva Fizika i Khimiya Obrabotki Materialov = Fiz. Khim. Obrab. Mater. Fizika i Khimiya Stekla = Fiz. Khim. Stekla Fizika i Tekhnika Poluprovodnikov (S. -Peterburg) = Fiz. Tekh. Poluprovodn. (Leningrad) Fizika Metallov i Metallovedenie = Fiz. Met. Metalloved. Fizika Metallov I Metallovedenie = Fiz Met Metalloved+ Fizika Metallov I Metallovedenie = Fiz. Met. Metalloved+.+ Fizika Nizkikh Temperatur = Fiz Nizk Temp+ Fizika Nizkikh Temperatur = Fiz. Nizk. Temp+.+ Fizika Nizkikh Temperatur (Kiev) = Fiz. Nizk. Temp. (Kiev) Fizika Plazmy (Moscow) = Fiz. Plazmy (Moscow) Fizika Tverdogo Tela = Fiz Tverd Tela+ Fizika Tverdogo Tela = Fiz. Tverd. Tela+.+ Fizika Tverdogo Tela (S. -Peterburg) = Fiz. Tverd. Tela (Leningrad) Fizika Zemli = Fiz Zemli+ Fizika Zemli = Fiz. Zemli+.+ Fiziko-Khimicheskaya Mekhanika Materialov = Fiz.-Khim. Mekh. Mater. Fiziko-Matematichesko Spisanie = Fiz.-Mat. Spis. Fiziologia normala si patologica = Fiziol Norm Patol Fiziologia Normala si Patologica = Fiziol. Norm. Patol. Fiziologicheskii zhurnal = Fiziol Zh Fiziologicheskii Zhurnal = Fiziol. Zh. Fiziologicheskii Zhurnal = Fiziol Zh Sssr Fiziologicheskii Zhurnal = Fiziol. Zh. Sssr. Fiziologicheskii Zhurnal Imeni I. M. Sechenova = Fiziol. Zh. Im. I. M. Sechenova Fiziologicheskii Zhurnal imeni I. M. Sechenova = Fizziol. Zh. SSSR im I. M. Sechenova Fiziologicheskii zhurnal imeni I.M. Sechenova / Rossiiskaia akademiia nauk = Fiziol Zh Im I M Sechenova Fiziologicheskii zhurnal SSSR imeni I. M. Sechenova = Fiziol Zh SSSR Im I M Sechenova Fiziologicheskii Zhurnal SSSR Imeni I. M. Sechenova = Fiziol. Zh. SSSR Im. I. M. Sechenova Fiziologichno Aktivni Rechovini = Fiziol. Akt. Rechovini Fiziologichnyi Zhurnal = Fiziol. Zh. Fiziologiia cheloveka = Fiziol Cheloveka Fiziologiia Cheloveka=Fiziol Cheloveka;; Fiziologiia Cheloveka = Fiziol. Cheloveka Fiziologiya I Biokhimiya Kulturnykh Rastenii = Fiziol Biokhim Kult+ Fiziologiya I Biokhimiya Kulturnykh Rastenii = Fiziol. Biokhim. Kult+.+ Fiziologiya i Biokhimiya Kul'turnykh Rastenii = Fiziol. Biokhim. Kul't. Rast. Fiziologiya Rastenii (Moscow) = Fiziol. Rast. (Moscow) Fiziolohichnyi zhurnal = Fiziol Zh Fiziolohichnyi zhurnal (Kiev, Ukraine : 1994) = Fiziol Zh F. Jacoby, Die Fragmente der griechischen Historiker = FGrHist Fjord Systems and Archives = Geol Soc Spec Publ Fjord Systems and Archives = Geol. Soc. Spec. Publ. Flag-transitive Steiner Designs = Front Math Flag-transitive Steiner Designs = Front. Math. Flambeau (Bakwanga, Congo) = Flambeau Flame Retardants: Functions, Properties and Safety = Chem Eng Method Tech Flame Retardants: Functions, Properties and Safety = Chem. Eng. Method. Tech. Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres : 6th Volume = Am Soc Test Mater Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres : 6th Volume = Am. Soc. Test. Mater. Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres : Fifth Volume = Am Soc Test Mater Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres : Fifth Volume = Am. Soc. Test. Mater. Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Ninth Volume = Am Soc Test Mater Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Ninth Volume = Am. Soc. Test. Mater. Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Seventh Volume = Am Soc Test Mater Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Seventh Volume = Am. Soc. Test. Mater. Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Tenth Volume = Am Soc Test Mater Flammability and Sensitivity of Materials in Oxygen-enriched Atmospheres: Tenth Volume = Am. Soc. Test. Mater. Flaran = Flaran Flares and Flashes = Lect Notes Phys Flares and Flashes = Lect. Notes. Phys. Flare Stars in Star Clusters, Associations and The Solar Vicinity = Iau Symp Flare Stars in Star Clusters, Associations and The Solar Vicinity = Iau. Symp. Flash-Informations = Flash Inf Flash-Informations = Flash. Inf. Flatness, Roughness, and Discrete Defect Characterization for Computer Disks, Wafers, and Flat Panel Displays = P Soc Photo-opt Ins Flatness, Roughness, and Discrete Defect Characterization for Computer Disks, Wafers, and Flat Panel Displays = P. Soc. Photo-opt. Ins. Flatness, Roughness, and Discrete Defects Characterization for Computer Disks, Wafers, and Flat Panel Displays Ii = P Soc Photo-opt Ins Flatness, Roughness, and Discrete Defects Characterization for Computer Disks, Wafers, and Flat Panel Displays Ii = P. Soc. Photo-opt. Ins. Flat-panel Display Materials-1998 = Mater Res Soc Symp P Flat-panel Display Materials-1998 = Mater. Res. Soc. Symp. P. Flat Panel Display Materials Iii = Mater Res Soc Symp P Flat Panel Display Materials Iii = Mater. Res. Soc. Symp. P. Flat Panel Display Materials Ii = Mater Res Soc Symp P Flat Panel Display Materials Ii = Mater. Res. Soc. Symp. P. Flat Panel Display Materials = Mater Res Soc Symp P Flat Panel Display Materials = Mater. Res. Soc. Symp. P. Flat-panel Displays and Sensors: Principles, Materials and Processes = Mater Res Soc Symp P Flat-panel Displays and Sensors: Principles, Materials and Processes = Mater. Res. Soc. Symp. P. Flat Panel Display Technology and Display Metrology Ii = P Soc Photo-opt Ins Flat Panel Display Technology and Display Metrology Ii = P. Soc. Photo-opt. Ins. Flat Panel Display Technology and Display Metrology = P Soc Photo-opt Ins Flat Panel Display Technology and Display Metrology = P. Soc. Photo-opt. Ins. Flavianet Topical Workshop: Low Energy Constraints On Extensions of The Standard Model = Acta Phys Pol B Pr S Flavianet Topical Workshop: Low Energy Constraints On Extensions of The Standard Model = Acta. Phys. Pol. B. Pr. S. Flavian Poetry = Mnemosyne Suppl Flavian Poetry = Mnemosyne. Suppl. Flaviviruses: Pathogenesis and Immunity = Adv Virus Res Flaviviruses: Pathogenesis and Immunity = Adv. Virus. Res. Flaviviruses: Structure, Replication and Evolution = Adv Virus Res Flaviviruses: Structure, Replication and Evolution = Adv. Virus. Res. Flavonoids and Other Polyphenols = Method Enzymol Flavonoids and Other Polyphenols = Method. Enzymol. Flavonoids and Other Polyphenols = Methods Enzymol Flavonoids and Other Polyphenols = Methods. Enzymol. Flavonoids: Biosynthesis, Biological Effects and Dietary Sources = Nutr Diet Res Prog Flavonoids: Biosynthesis, Biological Effects and Dietary Sources = Nutr. Diet. Res. Prog. Flavonoids in Cell Function = Adv Exp Med Biol Flavonoids in Cell Function = Adv. Exp. Med. Biol. Flavonoids in The Living System = Adv Exp Med Biol Flavonoids in The Living System = Adv. Exp. Med. Biol. Flavor and Health Benefits of Small Fruits = Acs Sym Ser Flavor and Health Benefits of Small Fruits = Acs. Sym. Ser. Flavor and Lipid Chemistry of Seafoods = Acs Sym Ser Flavor and Lipid Chemistry of Seafoods = Acs. Sym. Ser. Flavor-food Interactions = Acs Sym Ser Flavor-food Interactions = Acs. Sym. Ser. Flavor Measurement = Ift Bas Sym Flavor Measurement = Ift. Bas. Sym. Flavor of Dairy Products = Acs Sym Ser Flavor of Dairy Products = Acs. Sym. Ser. Flavor Physics and The Tev Scale = Springer Trac Mod Ph Flavor Physics and The Tev Scale = Springer. Trac. Mod. Ph. Flavor Precursors = Acs Sym Ser Flavor Precursors = Acs. Sym. Ser. Flavors in Noncarbonated Beverages = Acs Sym Ser Flavors in Noncarbonated Beverages = Acs. Sym. Ser. Flavor Technology = Acs Sym Ser Flavor Technology = Acs. Sym. Ser. Flavour and Fragance Journal = Flavour Fragance J. Flavour and Fragrance Chemistry = Pr Phyt Soc Flavour and Fragrance Chemistry = Pr. Phyt. Soc. Flavour and Fragrance Journal = Flavour Frag J Flavour and Fragrance Journal = Flavour Frag. J. Flavour and Spin in Hadronic and Electromagnetic Interactions = Ital Phy So Flavour and Spin in Hadronic and Electromagnetic Interactions = Ital. Phy. So. Flaw Assessment in Pressure Equipment and Welded Structures = Imeche Sem Flaw Assessment in Pressure Equipment and Welded Structures = Imeche. Sem. Flax : Breeding and Utilisation = Adv Agr Bio Flax : Breeding and Utilisation = Adv. Agr. Bio. Fleeting Identities = S Il U Carb Fleeting Identities = S. Il. U. Carb. Fleet Telematics = Oper Res Comput Sci Fleet Telematics = Oper. Res. Comput. Sci. Fleisch = Fleisch Fleischwirtschaft = Fleischwirtschaft Flemish Veterinary Journal = Flem Vet J Flemish Veterinary Journal = Flem. Vet. J. Flexibility: A Concise Guide = Musculoskelet Med Flexibility: A Concise Guide = Musculoskelet. Med. Flexibility and Labour Markets in Canada and The United States = Int Lab Res Flexibility and Labour Markets in Canada and The United States = Int. Lab. Res. Flexible and Efficient Information Handling = Lect Notes Comput Sc Flexible and Efficient Information Handling = Lect. Notes. Comput. Sc. Flexible Databases Supporting Imprecision and Uncertainty = Stud Fuzz Soft Comp Flexible Databases Supporting Imprecision and Uncertainty = Stud. Fuzz. Soft. Comp. Flexible Electronics 2004-materials and Device Technology = Mater Res Soc Symp P Flexible Electronics 2004-materials and Device Technology = Mater. Res. Soc. Symp. P. Flexible Electronics: Materials and Applications = Electron Mater Sci T Flexible Electronics: Materials and Applications = Electron. Mater. Sci. T. Flexible Electronics-materials and Device Technology = Mater Res Soc Symp P Flexible Electronics-materials and Device Technology = Mater. Res. Soc. Symp. P. Flexible Manufacture of Lightweight Frame Structures = Adv Mater Res-switz Flexible Manufacture of Lightweight Frame Structures = Adv. Mater. Res-switz. Flexible Mechanisms for An Efficient Climate Policy = Zew Econ Studies Flexible Mechanisms for An Efficient Climate Policy = Zew. Econ. Studies. Flexible Multibody Dynamics = Solid Mech Appl Flexible Multibody Dynamics = Solid. Mech. Appl. Flexible Pavement Rehabilitation and Maintenance = Am Soc Test Mater Flexible Pavement Rehabilitation and Maintenance = Am. Soc. Test. Mater. Flexible Query Answering Systems: 8th International Conference, Fqas 2009 = Lect Notes Artif Int Flexible Query Answering Systems: 8th International Conference, Fqas 2009 = Lect. Notes. Artif. Int. Flexible Query Answering Systems = Adv Soft Comp Flexible Query Answering Systems = Adv. Soft. Comp. Flexible Query Answering Systems, Proceedings = Lect Notes Artif Int Flexible Query Answering Systems, Proceedings = Lect. Notes. Artif. Int. Flexible Query Answering Systems, Proceedings = Lect Notes Comput Sc Flexible Query Answering Systems, Proceedings = Lect. Notes. Comput. Sc. Flexible Services and Manufacturing Journal = Flex Serv Manuf J Flexible Services and Manufacturing Journal = Flex. Serv. Manuf. J. Flexible Work Arrangements: Conceptualizations and International Experiences = Stud Emp Soc Policy Flexible Work Arrangements: Conceptualizations and International Experiences = Stud. Emp. Soc. Policy. Flight From Science and Reason = Ann Ny Acad Sci Flight From Science and Reason = Ann. Ny. Acad. Sci. Flight Mechanics / Estimation Theory Symposium 1990 = Nasa Conf P Flight Mechanics / Estimation Theory Symposium 1990 = Nasa. Conf. P. Flight safety digest (Arlington, Va. : 1988) = Flight Saf Dig Flinders journal of history and politics = Flinders J Hist Polit Flintknappers' exchange = Flintknappers Exch Flood Issues in Contemporary Water Management = Nato Asi 2 Flood Issues in Contemporary Water Management = Nato. Asi. 2. Floodplains : Interdisciplinary Approaches = Geol Soc Spec Publ Floodplains : Interdisciplinary Approaches = Geol. Soc. Spec. Publ. Flood Recovery, Innovation and Response = Wit Trans Ecol Envir Flood Recovery, Innovation and Response = Wit. Trans. Ecol. Envir. Flood Risk Management: Hazards, Vulnerability and Mitigation Measures = Nato Sci S Ss Iv Ear Flood Risk Management: Hazards, Vulnerability and Mitigation Measures = Nato. Sci. S. Ss. Iv. Ear. Flood Risk Management in Europe: Innovation in Policy and Practice = Adv Nat Tech Haz Res Flood Risk Management in Europe: Innovation in Policy and Practice = Adv. Nat. Tech. Haz. Res. Flood Risks and Land Use Conflicts in The Yangtze Catchment, China and At The Rhine River, Germany = Sch Int Ent Umwel Flood Risks and Land Use Conflicts in The Yangtze Catchment, China and At The Rhine River, Germany = Sch. Int. Ent. Umwel. Floods and Flood Management = Fluid Mec A Floods and Flood Management = Fluid. Mec. A. Flora De La Republica De Cuba, Fasciculo 16 = Flora Repub Cuba A Flora De La Republica De Cuba, Fasciculo 16 = Flora Repub. Cuba. A. Flora De La Republica De Cuba-serie A Plantas Vasculares = Flora Repub Cuba A Flora De La Republica De Cuba-serie A Plantas Vasculares = Flora Repub. Cuba. A Flora Fanerogamica Da Ilha Do Cardoso = Flora Fanerogam Card Flora Fanerogamica Da Ilha Do Cardoso = Flora Fanerogam. Card. Flora Fanerogamica Da Ilha Do Cardoso, Vol 14 = Flora Fanerogam Card Flora Fanerogamica Da Ilha Do Cardoso, Vol 14 = Flora Fanerogam. Card. Flora Fanerogamica Da Ilha Do Cardoso, Vol 15: Leguminosae, Thymelaeaceae = Flora Fanerogam Card Flora Fanerogamica Da Ilha Do Cardoso, Vol 15: Leguminosae, Thymelaeaceae = Flora Fanerogam. Card. Flora = Flora Florence and Its Church in The Age of Dante = Middle Ages Ser Florence and Its Church in The Age of Dante = Middle. Ages. Ser. Florentia Iliberritana. Revista de estudios de antigüedad clásica = FlorIl Florentia. Studi di archeologia = Florentia Florentine Drawing At The Time of Lorenzo The Magnificent = Vill Spel C Florentine Drawing At The Time of Lorenzo The Magnificent = Vill. Spel. C. Florentine Villa: Architecture, History, Society = Class Tradit Archit Florentine Villa: Architecture, History, Society = Class. Tradit. Archit. Florida Agricultural Experiment Station Bulletin = Fla Agr Exp Sta Bull Florida Agricultural Experiment Station Bulletin = Fla. Agr. Exp. Sta. Bull. Florida Agricultural Experiment Station Circular = Fla Agr Exp Sta Circ Florida Agricultural Experiment Station Circular = Fla. Agr. Exp. Sta. Circ. Florida dental journal = Fla Dent J Florida Dental Journal = Fla. Dent. J. Florida Entomologist = Fla Entomol Florida Entomologist = Fla. Entomol. Florida journal of international law = Fla J Int Law Florida law review = Fla Law Rev Florida Nurse = Fla. Nurse Florida Scientist = Fla. Sci. Florida State University law review. Florida State University. College of Law = Fla State Univ Law Rev Florida supplement : decisions of lower courts of record and state commissions = Fla Suppl Florilegium = Florilegium Floristische Rundbriefe = Florist. Rd.br. Flotation Plant Optimisation = Aimm Spectr Ser Flotation Plant Optimisation = Aimm. Spectr. Ser. Flotation Technology = Handb Environ Eng Flotation Technology = Handb. Environ. Eng. Flow and Combustion in Reciprocating Engines = Exp Fluid Mech Flow and Combustion in Reciprocating Engines = Exp. Fluid. Mech. Flow and Creep in The Solar System : Observations, Modeling and Theory = Nato Adv Sci Inst Se Flow and Creep in The Solar System : Observations, Modeling and Theory = Nato. Adv. Sci. Inst. Se. Flow and Image Cytometry = Nato Adv Sci Inst Se Flow and Image Cytometry = Nato. Adv. Sci. Inst. Se. Flow and Microstructure of Dense Suspensions = Mater Res Soc Symp P Flow and Microstructure of Dense Suspensions = Mater. Res. Soc. Symp. P. Flow and Transport Processes With Complex Obstructions = Nato Sci Ser Ii-math Flow and Transport Processes With Complex Obstructions = Nato. Sci. Ser. Ii-math. Flow and Transport Processes With Complex Obstructions = Nato Sci Ser Ii Math Flow and Transport Processes With Complex Obstructions = Nato. Sci. Ser. Ii. Math. Flow Cytometry and Image Analysis for Clinical Applications = Int Congr Ser Flow Cytometry and Image Analysis for Clinical Applications = Int. Congr. Ser. Flow Cytometry Protocols, Third Edition = Methods Mol Biol Flow Cytometry Protocols, Third Edition = Methods. Mol. Biol. Flow Dynamics = Aip Conf Proc Flow Dynamics = Aip. Conf. Proc. Flow Equation Approach to Many-particle Systems = Springer Tr Mod Phys Flow Equation Approach to Many-particle Systems = Springer. Tr. Mod. Phys. Flower Bulbs - Seventh International Symposium, Vols 1 and 2 = Acta Hortic Flower Bulbs - Seventh International Symposium, Vols 1 and 2 = Acta. Hortic. Flow, Gesture, and Spaces in Free Jazz: Towards A Theory of Collaboration = Comput Music Sci Flow, Gesture, and Spaces in Free Jazz: Towards A Theory of Collaboration = Comput. Music. Sci. Flow-induced Structure in Polymers = Acs Sym Ser Flow-induced Structure in Polymers = Acs. Sym. Ser. Flow Injection Analysis ( Fia ) Based On Enzymes Or Antibodies = Gbf Monog Series Flow Injection Analysis ( Fia ) Based On Enzymes Or Antibodies = Gbf. Monog. Series. Flow in Porous Media = Int S Num M Flow in Porous Media = Int. S. Num. M. Flow Measurement and Instrumentation = Flow Meas Instrum Flow Measurement and Instrumentation = Flow Meas. Instrum. Flow Processes in Faults and Shear Zones = Geol Soc Spec Publ Flow Processes in Faults and Shear Zones = Geol. Soc. Spec. Publ. Flows, Boundaries, Interactions = Aip Conf Proc Flows, Boundaries, Interactions = Aip. Conf. Proc. Flows of Reactive Fluids = Fluid Mech Appl Flows of Reactive Fluids = Fluid. Mech. Appl. Flow Turbulence and Combustion = Flow Turbul Combust Flow Turbulence and Combustion = Flow Turbul. Combust. Fluch Und Gebet: Magische Manipulation Versus Religioses Flehen? = Hans Lietzmann Vorle Fluch Und Gebet: Magische Manipulation Versus Religioses Flehen? = Hans. Lietzmann. Vorle. Fluconazole and Its Role in Vaginal Candidiasis = Roy Soc Med Int Cong Fluconazole and Its Role in Vaginal Candidiasis = Roy. Soc. Med. Int. Cong. Fluctuation and Noise Letters = Fluct Noise Lett Fluctuation and Noise Letters = Fluct. Noise Lett. Fluctuation Phenomena in High Temperature Superconductors = Nato Asi 3 High Tech Fluctuation Phenomena in High Temperature Superconductors = Nato. Asi. 3. High Tech. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Iii = Proc Spie Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Iii = Proc. Spie. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Iii = P Soc Photo-opt Ins Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Iii = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Ii = Proc Spie Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Ii = Proc. Spie. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Ii = P Soc Photo-opt Ins Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems Ii = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems = Proc Spie Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems = Proc. Spie. Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems = P Soc Photo-opt Ins Fluctuations and Noise in Biological, Biophysical, and Biomedical Systems = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Materials Ii = Proc Spie Fluctuations and Noise in Materials Ii = Proc. Spie. Fluctuations and Noise in Materials Ii = P Soc Photo-opt Ins Fluctuations and Noise in Materials Ii = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Materials = Spie Proc Ser Fluctuations and Noise in Materials = Spie. Proc. Ser. Fluctuations and Noise in Photonics and Quantum Optics Iii = Proc Spie Fluctuations and Noise in Photonics and Quantum Optics Iii = Proc. Spie. Fluctuations and Noise in Photonics and Quantum Optics Iii = P Soc Photo-opt Ins Fluctuations and Noise in Photonics and Quantum Optics Iii = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Photonics and Quantum Optics Ii = Proc Spie Fluctuations and Noise in Photonics and Quantum Optics Ii = Proc. Spie. Fluctuations and Noise in Photonics and Quantum Optics Ii = P Soc Photo-opt Ins Fluctuations and Noise in Photonics and Quantum Optics Ii = P. Soc. Photo-opt. Ins. Fluctuations and Noise in Photonics and Quantum Optics = Proc Spie Fluctuations and Noise in Photonics and Quantum Optics = Proc. Spie. Fluctuations and Noise in Photonics and Quantum Optics = P Soc Photo-opt Ins Fluctuations and Noise in Photonics and Quantum Optics = P. Soc. Photo-opt. Ins. Fluctuations and Noise Letters = Fluctuation Noise Lett. Fluctuation Theory for Levy Processes = Lect Notes Math Fluctuation Theory for Levy Processes = Lect. Notes. Math. Fluegers Archiv fur die Gesamte Physiologie des Menschen und der Tiere = Pfluegers Arch. Gesame Physiol. Menschen Tiere Fluid and Electrolytes in Pediatrics: A Comprehensive Handbook = Nutr Health Ser Fluid and Electrolytes in Pediatrics: A Comprehensive Handbook = Nutr. Health. Ser. Fluid Catalytic Cracking Ii = Acs Sym Ser Fluid Catalytic Cracking Ii = Acs. Sym. Ser. Fluid Catalytic Cracking Iii = Acs Sym Ser Fluid Catalytic Cracking Iii = Acs. Sym. Ser. Fluid Catalytic Cracking Vii Materials: Methods and Process Innovations = Stud Surf Sci Catal Fluid Catalytic Cracking Vii Materials: Methods and Process Innovations = Stud. Surf. Sci. Catal. Fluid Catalytic Cracking Vi: Preparation and Characterization of Catalysts = Stud Surf Sci Catal Fluid Catalytic Cracking Vi: Preparation and Characterization of Catalysts = Stud. Surf. Sci. Catal. Fluid Catalytic Cracking V: Materials and Technological Innovations = Stud Surf Sci Catal Fluid Catalytic Cracking V: Materials and Technological Innovations = Stud. Surf. Sci. Catal. Fluid Catalytic Cracking V: Materials and Technological Innovati Ons = Stud Surf Sci Catal Fluid Catalytic Cracking V: Materials and Technological Innovati Ons = Stud. Surf. Sci. Catal. Fluid Dynamics and Dynamos in Astrophysics and Geophysics = Fl Mec Astr Fluid Dynamics and Dynamos in Astrophysics and Geophysics = Fl. Mec. Astr. Fluid Dynamics = Fluid Dyn Fluid Dynamics = Fluid Dyn. Fluid Dynamics = Fluid Dynam. Fluid Dynamics = Fluid Dynam+ Fluid Dynamics = Fluid Dynam+.+ Fluid Dynamics of Cavitation and Cavitating Turbopumps = Cism Courses Lect Fluid Dynamics of Cavitation and Cavitating Turbopumps = Cism. Courses. Lect. Fluid Dynamics Research = Fluid Dyn Res Fluid Dynamics Research = Fluid Dyn. Res. Fluid Film Bearings = Imeche Sem Fluid Film Bearings = Imeche. Sem. Fluid Flow and Solute Movement in Sandstones: The Onshore Uk Permo-triassic Red Bed Sequence = Geol Soc Spec Publ Fluid Flow and Solute Movement in Sandstones: The Onshore Uk Permo-triassic Red Bed Sequence = Geol. Soc. Spec. Publ. Fluid Flow, Heat Transfer and Boiling in Micro-channels = Heat Mass Transf Fluid Flow, Heat Transfer and Boiling in Micro-channels = Heat Mass. Transf. Fluid Flow Modelling = Hyd Eng Sof Fluid Flow Modelling = Hyd. Eng. Sof. Fluid Flow Through Faults and Fractures in Argillaceous Formations = Oecd Proc Fluid Flow Through Faults and Fractures in Argillaceous Formations = Oecd. Proc. Fluid-fluid Interactions = Rev Mineral Geochem Fluid-fluid Interactions = Rev. Mineral. Geochem. Fluidization and Fluid Particle Systems: Recent Research and Development = Aiche Sym S Fluidization and Fluid Particle Systems: Recent Research and Development = Aiche. Sym. S. Fluidized Bed Combustion and Gasification: Experience and Prospects = Vdi Bericht Fluidized Bed Combustion and Gasification: Experience and Prospects = Vdi. Bericht. Fluid Machinery for The Oil, Gas, and Petrochemical Industry = Imeche Conf Trans Fluid Machinery for The Oil, Gas, and Petrochemical Industry = Imeche. Conf. Trans. Fluid Machinery for The Oil, Petrochemical, and Related Industries = Imeche Conf Trans Fluid Machinery for The Oil, Petrochemical, and Related Industries = Imeche. Conf. Trans. Fluid Mechanics and Dynamics of Multi-valve Engines = Imeche Sem Fluid Mechanics and Dynamics of Multi-valve Engines = Imeche. Sem. Fluid Mechanics and Its Applications = Fluid Mec A Fluid Mechanics and Its Applications = Fluid Mec. A. Fluid Mechanics and its Applications = Fluid Mech. Appl. Fluid Mechanics and Its Applications = Fluid Mech Appl Fluid Mechanics and Its Applications = Fluid Mech. Appl. Fluid Mechanics and The Environment: Dynamical Approaches = Lect Notes Phys Fluid Mechanics and The Environment: Dynamical Approaches = Lect. Notes. Phys. Fluid Mechanics of Astrophysics and Geophysics = Fl Mec Astr Fluid Mechanics of Astrophysics and Geophysics = Fl. Mec. Astr. Fluid Mechanics of Mixing : Modelling, Operation and Experimental Techniques = Fluid Mec A Fluid Mechanics of Mixing : Modelling, Operation and Experimental Techniques = Fluid Mec. A. Fluid Mechanics Research = Fluid Mech. Res. Fluid Mixing 5 = Inst Chem E Fluid Mixing 5 = Inst. Chem. E. Fluid Mixing 6 = Inst Chem E Fluid Mixing 6 = Inst. Chem. E. Fluid Mixing Iv = Inst Chem E Fluid Mixing Iv = Inst. Chem. E. Fluid Motions in Volcanic Conduits: A Source of Seismic and Acoustic Signals = Geol Soc Spec Publ Fluid Motions in Volcanic Conduits: A Source of Seismic and Acoustic Signals = Geol. Soc. Spec. Publ. Fluid Overload: Diagnosis and Management = Contrib Nephrol Fluid Overload: Diagnosis and Management = Contrib. Nephrol. Fluid-particle Processes: Fundamentals and Applications = Aiche Sym S Fluid-particle Processes: Fundamentals and Applications = Aiche. Sym. S. Fluid/Particle Separation Journal = Fluid/Part. Sep. J. Fluid Phase Behavior of Systems Involving High Molecular Weight Compounds and Supercritical Fluids = Chem Eng Method Tech Fluid Phase Behavior of Systems Involving High Molecular Weight Compounds and Supercritical Fluids = Chem. Eng. Method. Tech. Fluid Phase Equilibria = Fluid Phase Equilib. Fluid Phase Equilibria = Fluid Phase Equilibr Fluid Phase Equilibria = Fluid Phase Equilibr. Fluid Power Series = Fluid Power Ser Fluid Power Series = Fluid Power Ser. Fluid Power Systems and Technology Division of The American Society of Mechanical Engineers = Fluid Power Syst Tec Fluid Power Systems and Technology Division of The American Society of Mechanical Engineers = Fluid Power Syst. Tec. Fluids and Waves: Recent Trends in Applied Analysis = Contemp Math Fluids and Waves: Recent Trends in Applied Analysis = Contemp. Math. Fluid Sealing = Fluid Mec A Fluid Sealing = Fluid Mec. A. Fluids Engineering Division of The American Society of Mechanical Engineers = Fluid Eng D Fluids Engineering Division of The American Society of Mechanical Engineers = Fluid. Eng. D. Fluid Structure Interaction = Adv Fluid Mech Ser Fluid Structure Interaction = Adv. Fluid Mech. Ser. Fluid Structure Interaction and Moving Boundary Problems Iv = Wit Trans Built Env Fluid Structure Interaction and Moving Boundary Problems Iv = Wit. Trans. Built. Env. Fluid Structure Interaction and Moving Boundary Problems = Wit Trans Built Env Fluid Structure Interaction and Moving Boundary Problems = Wit. Trans. Built. Env. Fluid Structure Interaction Ii = Adv Fluid Mech Ser Fluid Structure Interaction Ii = Adv. Fluid Mech. Ser. Fluid Structure Interaction V = Wit Trans Built Env Fluid Structure Interaction V = Wit. Trans. Built. Env. Fluid Transport in Nanoporous Materials = Nato Sci Ser Ii Math Fluid Transport in Nanoporous Materials = Nato. Sci. Ser. Ii. Math. Fluorescence Detection Iv, Proceedings Of = P Soc Photo-opt Ins Fluorescence Detection Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Fluorescence in Situ Hybridization (fish): Protocols and Applications = Methods Mol Biol Fluorescence in Situ Hybridization (fish): Protocols and Applications = Methods. Mol. Biol. Fluorescence in Vivo Imaging Based On Genetically Engineered Probes: From Living Cells to Whole Body Imaging Iv = Proc Spie Fluorescence in Vivo Imaging Based On Genetically Engineered Probes: From Living Cells to Whole Body Imaging Iv = Proc. Spie. Fluorescence in Vivo Imaging Based On Genetically Engineered Probes: From Living Cells to Whole Body Imaging Iv = P Soc Photo-opt Ins Fluorescence in Vivo Imaging Based On Genetically Engineered Probes: From Living Cells to Whole Body Imaging Iv = P. Soc. Photo-opt. Ins. Fluorescence Methods and Applications: Spectroscopy, Imaging, and Probes = Ann Ny Acad Sci Fluorescence Methods and Applications: Spectroscopy, Imaging, and Probes = Ann. Ny. Acad. Sci. Fluorescence of Supermolecules, Polymers, and Nanosystems = Springer Ser Fluores Fluorescence of Supermolecules, Polymers, and Nanosystems = Springer. Ser. Fluores. Fluorescence Spectroscopy, Imaging and Probes = Springer Ser Fluores Fluorescence Spectroscopy, Imaging and Probes = Springer. Ser. Fluores. Fluorescence Spectroscopy, Imaging and Probes = Spr S Fluor Fluorescence Spectroscopy, Imaging and Probes = Spr. S. Fluor. Fluorescence Spectroscopy = Method Enzymol Fluorescence Spectroscopy = Method. Enzymol. Fluorescence Spectroscopy = Methods Enzymol Fluorescence Spectroscopy = Methods. Enzymol. Fluorescent Chemosensors for Ion and Molecule Recognition = Acs Sym Ser Fluorescent Chemosensors for Ion and Molecule Recognition = Acs. Sym. Ser. Fluorescent Proteins, Second Edition = Method Cell Biol Fluorescent Proteins, Second Edition = Method. Cell. Biol. Fluoride and Calcium Combined Therapy for Osteoporosis = Res Clin Forums Fluoride and Calcium Combined Therapy for Osteoporosis = Res. Clin. Forums. Fluoride and The Oral Environment = Monogr Oral Sci Fluoride and The Oral Environment = Monogr. Oral Sci. Fluoride = Fluoride Fluoride Official Quarterly Journal of International Society for Fluoride Research = Fl Off Q J Int Soc F Fluoride Official Quarterly Journal of International Society for Fluoride Research = Fl. Off. Q. J. Int. Soc. F. Fluorides and Oral Health = Who Tech Rep Ser Fluorides and Oral Health = Who. Tech. Rep. Ser. Fluorinated Heterocycles = Acs Sym Ser Fluorinated Heterocycles = Acs. Sym. Ser. Flussiges Obst = Flussiges Obst Flussiges Obst = Fluss. Obst Fluvial Processes and Environmental Change = Brit Geomor Fluvial Processes and Environmental Change = Brit. Geomor. Fluvial Sedimentology Vi = Int As Sed Fluvial Sedimentology Vi = Int. As. Sed. Flux-corrected Transport: Principles, Algorithms, and Applications = Sci Comput Flux-corrected Transport: Principles, Algorithms, and Applications = Sci. Comput. Flux-corrected Transport: Principles, Algorithms, and Applications = Scientif Comput Flux-corrected Transport: Principles, Algorithms, and Applications = Scientif. Comput. Fly Ash: Reuse, Environmental Problems and Related Issues = Pollut Sci Technol A Fly Ash: Reuse, Environmental Problems and Related Issues = Pollut. Sci. Technol. A. Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete - Proceedings, Fifth International Conference, Vols 1 and 2 = Amer Conc I Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete - Proceedings, Fifth International Conference, Vols 1 and 2 = Amer. Conc. I. Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete, Vol 1-2 = Amer Conc I Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete, Vol 1-2 = Amer. Conc. I. Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete, Vols 1 and 2 = Amer Conc I Fly Ash, Silica Fume, Slag, and Natural Pozzolans in Concrete, Vols 1 and 2 = Amer. Conc. I. Fly-by-light Iii = P Soc Photo-opt Ins Fly-by-light Iii = P. Soc. Photo-opt. Ins. Fly-by-light = P Soc Photo-opt Ins Fly-by-light = P. Soc. Photo-opt. Ins. Fly-by-light: Technology Transfer = P Soc Photo-opt Ins Fly-by-light: Technology Transfer = P. Soc. Photo-opt. Ins. Fly = Fly Flying safety (Washington, D.C. : 1981) = Flying Saf Fly Neuromuscular Junction: Structure and Function, Second Edition = Int Rev Neurobiol Fly Neuromuscular Junction: Structure and Function, Second Edition = Int. Rev. Neurobiol. Fm 2005: Formal Methods, Proceedings = Lect Notes Comput Sc Fm 2005: Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Fm 2006: Formal Methods, Proceedings = Lect Notes Comput Sc Fm 2006: Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Fm 2008: Formal Methods, Proceedings = Lect Notes Comput Sc Fm 2008: Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Fm 2009: Formal Methods, Proceedings = Lect Notes Comput Sc Fm 2009: Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Fm'99-formal Methods = Lect Notes Comput Sc Fm'99-formal Methods = Lect. Notes. Comput. Sc. Fm'99-formal Methods, Vol Ii = Lect Notes Comput Sc Fm'99-formal Methods, Vol Ii = Lect. Notes. Comput. Sc. Fma'08: Proceedings of The 6th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics = Wseas Mech Eng Ser Fma'08: Proceedings of The 6th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics = Wseas. Mech. Eng. Ser. Fma '09: Proceedings of The 7th Iasme / Wseas International Conference On Fluid Mechanics and Aerodynamics = Wseas Mech Eng Ser Fma '09: Proceedings of The 7th Iasme / Wseas International Conference On Fluid Mechanics and Aerodynamics = Wseas Mech. Eng. Ser. Fme 2003: Formal Methods, Proceedings = Lect Notes Comput Sc Fme 2003: Formal Methods, Proceedings = Lect. Notes. Comput. Sc. F&m-feinwerktechnik & Messtechnik = F M-feinwerktech Mes F&m-feinwerktechnik & Messtechnik = F. M-feinwerktech. Mes. Fmri Techniques and Protocols = Neuromethods Fmri Techniques and Protocols = Neuromethods. FNIB info = FNIB Info FNIB Info = FNIB Info F.N.I.B.; organe de la Federation nationale des infirmier(e)s belges = FNIB FNIB: Organe de la Federation Nationale des Infirmier(e)s Belges = FNIB Foams: Fundamentals and Applications in The Petroleum Industry = Adv Chem Ser Foams: Fundamentals and Applications in The Petroleum Industry = Adv. Chem. Ser. Foamy Viruses = Curr Top Microbiol Foamy Viruses = Curr. Top. Microbiol. Focal Epilepsy : Clinical Use of Emission Tomography = Curr Prob E Focal Epilepsy : Clinical Use of Emission Tomography = Curr. Prob. E. Focal Plane Arrays for Space Telescopes Iii = Proc Spie Focal Plane Arrays for Space Telescopes Iii = Proc. Spie. Focal Plane Arrays for Space Telescopes Iii = P Soc Photo-opt Ins Focal Plane Arrays for Space Telescopes Iii = P. Soc. Photo-opt. Ins. Focal Plane Arrays for Space Telescopes = P Soc Photo-opt Ins Focal Plane Arrays for Space Telescopes = P. Soc. Photo-opt. Ins. Focal Points in Framed Games = Lect Notes Econ Math Focal Points in Framed Games = Lect. Notes. Econ. Math. Focs 2002: 43rd Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann Ieee Symp Found Focs 2002: 43rd Annual Ieee Symposium On Foundations of Computer Science, Proceedings = Ann. Ieee Symp. Found. Focused Access to Xml Documents = Lect Notes Comput Sc Focused Access to Xml Documents = Lect. Notes. Comput. Sc. Focused Issue On Fundamental Issues in Competence Theory Development = Res Compet-based Man Focused Issue On Fundamental Issues in Competence Theory Development = Res. Compet-based. Man. Focused Issue On The Marketing Process in Organizational Competence = Res Compet-based Man Focused Issue On The Marketing Process in Organizational Competence = Res. Compet-based. Man. Focused Issue On Understanding Growth: Entrepreneurship, Innovation, and Diversification = Res Compet-based Man Focused Issue On Understanding Growth: Entrepreneurship, Innovation, and Diversification = Res. Compet-based. Man. Focused Retrieval and Evaluation = Lect Notes Comput Sc Focused Retrieval and Evaluation = Lect. Notes. Comput. Sc. Focus: Gamelan Music of Indonesia, Second Edition = Focus World Music Focus: Gamelan Music of Indonesia, Second Edition = Focus. World. Music Focus: Irish Traditional Music = Focus World Music Focus: Irish Traditional Music = Focus. World. Music Focus MDA : the official publication of the Missouri Dental Association = Focus MDA Focus: Music of South Africa, Second Edition = Focus World Music Focus: Music of South Africa, Second Edition = Focus. World. Music Focus on AACN = Focus AACN Focus On Aacn = Focus AACN Focus On Autism and Other Developmental Disabilities = Focus Autism Dev Dis Focus On Autism and Other Developmental Disabilities = Focus Autism Dev. Dis. Focus on autism and other developmental disabilities = Focus Autism Other Dev Disabl Focus On Biotechnology = Focus Biotechnol Focus On Biotechnology = Focus Biotechnol. Focus on Catalysts = Focus Catal. Focus On Civilizations and Cultures = Focus Civiliz Cult Focus On Civilizations and Cultures = Focus Civiliz. Cult. Focus On Climate Change and Health = Clim Chang Cause Eff Focus On Climate Change and Health = Clim. Chang. Cause. Eff. Focus On Computer Graphics = Foc Comp Graph Focus On Computer Graphics = Foc. Comp. Graph. Focus on Computer Graphics = Focus Comput. Graph. Focus on critical care / American Association of Critical-Care Nurses = Focus Crit Care Focus on Critical Care = Focus Crit. Care Focus On Depression and Anxiety = Focus Depress Anx Focus On Depression and Anxiety = Focus Depress. Anx. Focus On Exceptional Children = Focus Except Child Focus On Exceptional Children = Focus Except. Child. Focus on gender = Focus Gend Focus On Hiv = Fr Infec D Focus On Hiv = Fr. Infec. D. Focus On Multiplicity: International Workshop On Particle Multiplicity in Relativistic Heavy Ion Collisions = J Phys Conf Ser Focus On Multiplicity: International Workshop On Particle Multiplicity in Relativistic Heavy Ion Collisions = J. Phys. Conf. Ser. Focus on Ohio dentistry = Focus Ohio Dent Focus on Ohio Dentistry = Focus Ohio Dent. Focus on Pigments = Focus Pigm. Focus on Polyvinyl Chloride = Focus Polyvinyl Chloride Focus on Powder Coatings = Focus Powder Coat. Focus On Robert Graves = Focus Robert Graves Focus On Structural Biology = Focus Struct Biology Focus On Structural Biology = Focus Struct. Biology Focus on Surfactants = Focus Surfactants Focus On Vehicle Electronics = Vdi Bericht Focus On Vehicle Electronics = Vdi. Bericht. Focus On World Music = Focus World Music Focus (San Francisco, Calif.) = Focus Focus Strategies in African Languages = Trends Linguist-stud Focus Strategies in African Languages = Trends. Linguist-stud. Focus: technical cooperation. Focus. Cooperacion tecnica. Focus. Cooperation technique = Focus Tech Coop Fodder Crops and Amenity Grasses = Handb Plant Breed Fodder Crops and Amenity Grasses = Handb. Plant. Breed. Fo. Facultad De Odontologia = FO FO: Facultad de Odontologia = FO Fogg Art Museum. Acquisitions = FoggArtMusAcqu Fog of Peace and War Planning = Strateg Hist Fog of Peace and War Planning = Strateg. Hist. Fogorvosi szemle = Fogorv Sz Fogorvosi Szemle=Fogorv Sz;; Fogorvosi Szemle = Fogorv. Sz. Foi et langage = Foi Lang Folding and Design=Fold Des;; Folding and Design = Fold Des. Folding and Design = Fold. Des. Folding & design = Fold Des Folding & Design = Fold Des Folding & Design = Fold. Des. Foldrajzi ertesito = Foldr Ert Folha medica = Folha Med Folha Medica = Folha Med. Folia allergologica = Folia Allergol (Roma) Folia Allergologica = Folia Allergol. (Roma) Folia archaeologica = FolA Folia Biologica = Folia Biol. Folia Biologica=Folia Biol (Krakow);; Folia Biologica = Folia Biol-prague Folia Biologica = Folia Biol-prague. Folia biologica = Folia Biol (Praha) Folia Biologica=Folia Biol (Praha);; Folia Biologica = Folia Biol. (Praha) Folia Biologica-krakow = Folia Biol-krakow Folia Biologica-krakow = Folia Biol-krakow. Folia cardiologica = Folia Cardiol Folia Cardiologica = Folia Cardiol. Folia clinica et biologica = Folia Clin Biol (Sao Paulo) Folia clinica internacional = Folia Clin Int (Barc) Folia Clinica Internacional = Folia Clin. Int. (Barc.) Folia Clinica Internacional = Folia Clin Intern Folia Clinica Internacional = Folia Clin. Intern. Folia Cryptogamica Estonica = Folia Cryptogam. Est. Folia endocrinologica = Folia Endocrinol Folia Endocrinologica = Folia Endocrinol. Folia Endocrinologica Japonica = Folia Endocrinol Jpn Folia Endocrinologica Japonica = Folia Endocrinol. Jpn. Folia endocrinologica; mensile di incretologia e incretoterapia = Folia Endocrinol Mens Incretologia Incretoterapia Folia Facultatis Medicae Universitatis Comeniane Bratislaviensis = Folia Fac Med U Come Folia Facultatis Medicae Universitatis Comeniane Bratislaviensis = Folia Fac. Med. U. Come. Folia Facultatis Scientiarium Naturalium Universitatis Masarykianae Brunensis: Biologia = Folia Fac Sci Nat Un Folia Facultatis Scientiarium Naturalium Universitatis Masarykianae Brunensis: Biologia = Folia Fac. Sci. Nat. Un. Folia Facultatis Scientiarium Naturalium Universitatis Masarykianae Brunensis = Folia Fac. Sci. Natur. Univ. Masaryk. Brun. Math. Folia Forestalia Polonica = Folia For. Pol. Folia Geobotanica et Phytotaxonomica = Folia Geobot. Phytotaxon. Folia Geobotanica = Folia Geobot Folia Geobotanica = Folia Geobot. Folia Geobotanica & Phytotaxonomica = Folia Geobot Phytotx Folia Geobotanica & Phytotaxonomica = Folia Geobot. Phytotx. Folia geographica. Series geographica-oeconomica / Polska Akademia Nauk, Oddzial w Krakowie, Komisja Nauk Geograficznych = Folia Geogr Ser Geogr Oecon Folia haematologica; internationales Magazin fur Blutforschung = Folia Haematol (Frankf) Folia Haematologica: Internationales Magazin fur Blutforschung = Folia Haematol. (Frankf.) Folia Haematologica: Internationales Magazin fur Klinische und Morphologische Blutforschung = Folia Haematol. Int. Mag. Klin. Morphol. Blutforsch. Folia haematologica (Leipzig, Germany : 1928) = Folia Haematol Int Mag Klin Morphol Blutforsch Folia hereditaria et pathologica = Folia Hered Pathol (Milano) Folia Hereditaria et Pathologica = Folia Hered. Pathol. (Milano) Folia Histochemica Et Cytobiologica = Folia Histochem Cyto Folia Histochemica Et Cytobiologica = Folia Histochem. Cyto. Folia Histochemica et Cytobiologica = Folia Histochem. Cytobiol. Folia Histochemica Et Cytobiologica=Folia Histochem Cytobiol;; Folia histochemica et cytobiologica / Polish Academy of Sciences, Polish Histochemical and Cytochemical Society = Folia Histochem Cytobiol Folia Histochemica Et Cytochemica = Fol Histoch Cytochem Folia Histochemica Et Cytochemica = Fol. Histoch. Cytochem. Folia histochemica et cytochemica = Folia Histochem Cytochem (Krakow) Folia Histochemica et Cytochemica = Folia Histochem. Cytochem. (Krakow) Folia humanistica = Folia Humanist Folia Humanistica = Folia Humanistica Folia Linguistica = Folia Linguist Folia Linguistica = Folia Linguist. Folia Linguistica Historica = Folia Linguist Hist Folia Linguistica Historica = Folia Linguist. Hist. Folia medica Cracoviensia = Folia Med Cracov Folia Medica Cracoviensia=Folia Med Cracov;; Folia Medica Cracoviensia = Folia Med. Cracov. Folia medica. Folia medica (Naples, Italy) = Folia Med (Napoli) Folia medica = Folia Med (Plovdiv) Folia Medica=Folia Med (Plovdiv);; Folia Medica = Folia Med. (Plovdiv) Folia medica Neerlandica. Additamenta = Additamenta Folia Med Neerl Folia medica Neerlandica = Folia Med Neerl Folia Medica Neerlandica = Folia Med. Neerl. Folia mendeliana = Folia Mendeliana Folia Microbiologica = Folia Microbiol Folia Microbiologica = Folia Microbiol. Folia microbiologica = Folia Microbiol (Praha) Folia Microbiologica=Folia Microbiol (Praha);; Folia Microbiologica = Folia Microbiol. (Praha) Folia Microbiologica (Prague, Czech Republic) = Folia Microbiol. (Prague, Czech Repub.) Folia Morphologica = Folia Morphol Folia Morphologica = Folia Morphol. Folia morphologica = Folia Morphol (Warsz) Folia Morphologica=Folia Morphol (Warsz);; Folia Morphologica (Poland) = Folia Morphol. (Warsz.) Folia Morphologica (Prague) = Folia Morphol. (Praha) Folia neuropathologica / Association of Polish Neuropathologists and Medical Research Centre, Polish Academy of Sciences = Folia Neuropathol Folia Neuropathologica = Folia Neuropathol Folia Neuropathologica = Folia Neuropathol. Folia Neuropsiquiatrica = Folia Neuropsiquiatr Folia Neuropsiquiatrica = Folia Neuropsiquiatr. Folia ophthalmologica = Fol Ophthalmol Folia Ophthalmologica Japonica = Folia Ophthalmol Jpn Folia Ophthalmologica Japonica = Folia Ophthalmol. Jpn. Folia orientalia = Folia Orient Folia orientalia = FolOr Folia Parasitologica = Folia Parasit Folia Parasitologica = Folia Parasit. Folia parasitologica = Folia Parasitol (Praha) Folia Parasitologica=Folia Parasitol (Praha);; Folia Parasitologica = Folia Parasitol. (Praha) Folia Pharmacologica Japonica = Folia Pharmacol Jpn Folia Pharmacologica Japonica = Folia Pharmacol. Jpn. Folia Phoniatrica Et Logopaedica = Folia Phoniatr Logo Folia Phoniatrica Et Logopaedica = Folia Phoniatr. Logo. Folia phoniatrica et logopaedica : official organ of the International Association of Logopedics and Phoniatrics (IALP) = Folia Phoniatr Logop Folia Phoniatrica et Logopedica = Folia Phoniatr. Logop. Folia Phoniatrica Et Logopedica=Folia Phoniatr Logop;; Folia Phoniatrica = Folia Phoniatr Folia Phoniatrica = Folia Phoniatr. Folia phoniatrica = Folia Phoniatr (Basel) Folia Phoniatrica = Folia Phoniatr. (Basel) Folia Primatologica = Folia Primatol Folia Primatologica = Folia Primatol. Folia Primatologica=Folia Primatol (Basel);; Folia Primatologica = Folia Primatol. (Basel) Folia primatologica; international journal of primatology = Folia Primatol (Basel) Folia Psychiatrica Et Neurologica Japonica = Folia Psychiat Neu J Folia Psychiatrica Et Neurologica Japonica = Folia Psychiat. Neu. J. Folia psychiatrica et neurologica japonica = Folia Psychiatr Neurol Jpn Folia Psychiatrica et Neurologica Japonica = Folia Psychiatr. Neurol. Jpn. Folia psychiatrica = Folia Psychiatr Folia psychiatrica, neurologica et neurochirurgica Neerlandica = Folia Psychiatr Neurol Neurochir Neerl Folia stomatologica = Folia Stomatol Foliations, Geometry, and Topology: Paul Schweitzer Festschrift = Contemp Math Foliations, Geometry, and Topology: Paul Schweitzer Festschrift = Contemp. Math. Folia veterinaria = Folia Vet Folia veterinaria Latina = Folia Vet Lat Folia Veterinaria Latina = Folia Vet Lat Folia Veterinaria Latina = Folia Vet. Lat. Folia Zoologica = Folia Zool Folia Zoologica = Folia Zool. Folic Acid and Folates = Vitam Horm Folic Acid and Folates = Vitam. Horm. Folk (Kobenhavn) = Folk Folk Life = Folk Life Folklore americano = Folkl Am Folklore Americano = Folklore Am Folklore Americano = Folklore Am. Folklore brabancon = Folkl Brabancon Folklore de Champagne = Folkl Champagne Folklore-electronic Journal of Folklore = Folklore-el J Folkl Folklore-electronic Journal of Folklore = Folklore-el. J. Folkl. Folklore = Folklore Folklore suisse = Folkl Suisse Folk Music Journal = Folk Music J Folk Music Journal = Folk Music J. Folksonomies: Indexing and Retrieval in Web 2.0 = Knowl Info-stud Info Folksonomies: Indexing and Retrieval in Web 2.0 = Knowl. Info-stud. Info. Following Charcot: A Forgotten History of Neurology and Psychiatry = Front Neurol Neurosc Following Charcot: A Forgotten History of Neurology and Psychiatry = Front. Neurol. Neurosc. Fonaments. Prehistòria i mon antic als Paisos Catalans = Fonaments Foncteurs En Grassmanniennes, Filtration De Krull Et Cohomologie Des Foncteurs = Mem Soc Math Fr Foncteurs En Grassmanniennes, Filtration De Krull Et Cohomologie Des Foncteurs = Mem. Soc. Math. Fr. Fonctionnement Des Peuplements Vegetaux Sous Contraintes Environnementales = Colloq Inra Fonctionnement Des Peuplements Vegetaux Sous Contraintes Environnementales = Colloq. Inra. Fonctions Sphincteriennes = Collect Acad Eur Med Fonctions Sphincteriennes = Collect. Acad. Eur. Med. Fondamenti. Rivista quadrimestrale di cultura = Fondamenti Fondation Louis de Broglie = Ann. Fond. Louis de Broglie Fondations = Fondations Fondazione C = Fond. C.I.M.E. Fondazione Eni Enrico Mattei-feem-series On Economics and The Environment = Feem Ser Econ Envir Fondazione Eni Enrico Mattei-feem-series On Economics and The Environment = Feem. Ser. Econ. Envir. Fondazione Eni Enrico Mattei (feem) Series On Economics and The Environment = Feem Ser Econ Envir Fondazione Eni Enrico Mattei (feem) Series On Economics and The Environment = Feem. Ser. Econ. Envir. Fonderie = Fonderie Fonderie Fondeur d'Aujourd'hui = Fonderie Fondeur Aujourd'hui Fonderie-france = Fond-fr Fonderie-france = Fond-fr. Fontanus = Fontanus Fontes archaeologici Posnanienses = FontAPos Fontes Artis Musicae = Fontes Artis Musicae Fontes Et Subsidia Ad Bibliam Pertinentes = Fontes Subsid Biblia Fontes Et Subsidia Ad Bibliam Pertinentes = Fontes Subsid. Biblia. Fontes. Rivista di filologia, iconografia e storia della tradizione classica = Fontes Fonti per la storia della sanita : collana del CISO Veneto patrocinata dalla regione Veneto = Fonti Stor Sanita Food additives and contaminants = Food Addit Contam Food Additives and Contaminants=Food Addit Contam;; Food Additives and Contaminants = Food Addit Contam Food Additives and Contaminants = Food Addit. Contam. Food Additives and Contaminants Part A-chemistry Analysis Control Exposure & Risk Assessment = Food Addit Contam A Food Additives and Contaminants Part A-chemistry Analysis Control Exposure & Risk Assessment = Food Addit. Contam. A. Food Additives & Contaminants = Food Addit. Contam. Food Additives & Contaminants Part B-surveillance = Food Addit Contam B Food Additives & Contaminants Part B-surveillance = Food Addit. Contam. B. Food Allergy = Allergy Infect Dis Food Allergy = Allergy Infect. Dis. Food Allergy and Food Intolerance = Bibl Nutr Diet Food Allergy and Food Intolerance = Bibl. Nutr. Diet. Food Allergy and Intolerance: Current Issues and Concerns = Roy Soc Ch Food Allergy and Intolerance: Current Issues and Concerns = Roy. Soc. Ch. Food Analytical Methods = Food Anal Method Food Analytical Methods = Food Anal. Method. Food Analytical Methods = Food Anal. Methods Food and Agrarian Orders in The World-economy = Contrib Econ Econ Hi Food and Agrarian Orders in The World-economy = Contrib. Econ. Econ. Hi. Food and Agricultural Immunology = Food Agric Immunol Food and Agricultural Immunology = Food Agric. Immunol. Food and Agricultural Immunology = Food Agr Immunol Food and Agricultural Immunology = Food Agr. Immunol. Food and Agricultural Security = Ann Ny Acad Sci Food and Agricultural Security = Ann. Ny. Acad. Sci. Food and Beverage Consumption and Health = Food Bev Consum Hlth Food and Beverage Consumption and Health = Food Bev. Consum. Hlth. Food and Bioprocess Technology = Food Bioprocess Tech Food and Bioprocess Technology = Food Bioprocess Tech. Food and Bioprocess Technology = Food Bioprocess Technol. Food and Bioproducts Processing = Food Bioprod Process Food and Bioproducts Processing = Food Bioprod. Process. Food and Cancer Prevention: Chemical and Biological Aspects = Roy Soc Ch Food and Cancer Prevention: Chemical and Biological Aspects = Roy. Soc. Ch. Food and chemical toxicology : an international journal published for the British Industrial Biological Research Association = Food Chem Toxicol Food and Chemical Toxicology=Food Chem Toxicol;; Food and Chemical Toxicology = Food Chem Toxicol Food and Chemical Toxicology = Food Chem. Toxicol. Food and cosmetics toxicology = Food Cosmet Toxicol Food and Cosmetics Toxicology = Food Cosmet Toxicol Food and Cosmetics Toxicology = Food Cosmet. Toxicol. Food and drug law journal = Food Drug Law J Food and Drug Law Journal = Food Drug Law J Food and Drug Law Journal = Food Drug Law J. Food and Environmental Virology = Food Environ Virol Food and Environmental Virology = Food Environ. Virol. Food and Foodways in Asia: Resource, Tradition and Cooking = Anthropol Asia Food and Foodways in Asia: Resource, Tradition and Cooking = Anthropol. Asia. Food and nutrition bulletin = Food Nutr Bull Food and Nutrition Bulletin = Food Nutr Bull Food and Nutrition Bulletin = Food Nutr. Bull. Food and nutrition = Food Nutr (Roma) Food and Nutrition = Food Nutr. (Roma) Food and Packaging Interactions Ii = Acs Sym Ser Food and Packaging Interactions Ii = Acs. Sym. Ser. Food and Society = Food & Soc Food and Society = Food &. Soc. Food and The Mid-level Farm: Renewing An Agriculture of The Middle = Food Health Environ Food and The Mid-level Farm: Renewing An Agriculture of The Middle = Food Health. Environ. Food Australia = Food Aust Food Australia = Food Aust. Food Biophysics = Food Biophys Food Biophysics = Food Biophys. Food Biotechnology = Adv Biochem Eng Biot Food Biotechnology = Adv. Biochem. Eng. Biot. Food biotechnology = Food Biotechnol Food Biotechnology = Food Biotechnol Food Biotechnology = Food Biotechnol. Food Biotechnology in Ethical Perspective, Second Edition = Int Libr Environ Agr Food Biotechnology in Ethical Perspective, Second Edition = Int. Libr. Environ. Agr. Food Biotechnology = Progr Biotechnol Food Biotechnology = Progr. Biotechnol. Foodborne Listeriosis = T Ind Micr Foodborne Listeriosis = T. Ind. Micr. Foodborne Microbial Pathogens: Mechanisms and Pathogenesis = Food Sci Text Ser Foodborne Microbial Pathogens: Mechanisms and Pathogenesis = Food. Sci. Text. Ser. Foodborne pathogens and disease = Foodborne Pathog Dis Foodborne Pathogens and Disease = Foodborne Pathog Dis Foodborne Pathogens and Disease = Foodborne Pathog. Dis. Foodborne Pathogens: Hazards, Risk Analysis and Control, Second Edition = Woodhead Food Ser Foodborne Pathogens: Hazards, Risk Analysis and Control, Second Edition = Woodhead. Food. Ser. Food-borne Viruses: Progress and Challenges = Emerg Iss Food Saf Food-borne Viruses: Progress and Challenges = Emerg. Iss. Food. Saf. Food Chain Integrity: A Holistic Approach to Food Traceability, Safety, Quality and Authenticity = Woodhead Publ Food S Food Chain Integrity: A Holistic Approach to Food Traceability, Safety, Quality and Authenticity = Woodhead. Publ. Food S. Food Chain Security = Nato Sci Peace Secur Food Chain Security = Nato. Sci. Peace. Secur. Food Chains: From Farmyard to Shopping Cart = Hagley Perspect Bus Food Chains: From Farmyard to Shopping Cart = Hagley. Perspect. Bus. Food chemistry = Food Chem Food Chemistry = Food Chem Food Chemistry = Food Chem. Food Colloids and Polymers : Stability and Mechanical Properties = Roy Soc Ch Food Colloids and Polymers : Stability and Mechanical Properties = Roy. Soc. Ch. Food Colloids, Biopolymers and Materials = Roy Soc Ch Food Colloids, Biopolymers and Materials = Roy. Soc. Ch. Food Colloids: Interactions, Microstructure and Processing = Roy Soc Ch Food Colloids: Interactions, Microstructure and Processing = Roy. Soc. Ch. Food Colloids = Roy Soc Ch Food Colloids = Roy. Soc. Ch. Food Colloids: Self-assembly and Material Science = Roy Soc Ch Food Colloids: Self-assembly and Material Science = Roy. Soc. Ch. Food Colorants: Chemical and Functional Properties = Chem Funct Prop Food Food Colorants: Chemical and Functional Properties = Chem. Funct. Prop. Food Food Constituents and Oral Health = Woodhead Food Ser Food Constituents and Oral Health = Woodhead. Food Ser. Food Contaminants: Mycotoxins and Food Allergens = Acs Sym Ser Food Contaminants: Mycotoxins and Food Allergens = Acs. Sym. Ser. Food control = Food Control Food Control = Food Control Food, Diet and Health: Past, Present and Future Tendencies = Food Sci Technol Food, Diet and Health: Past, Present and Future Tendencies = Food. Sci. Technol. Food, drug, cosmetic, and medical device law digest : a publication of the Food, Drug, and Cosmetic Law Section = Food Drug Cosmet Med Device Law Dig Food Drug Cosmetic Law Journal = Food Dr Cosmet Law J Food Drug Cosmetic Law Journal = Food Dr. Cosmet. Law J. Food, drug, cosmetic law journal = Food Drug Cosmet Law J Food, Drug, cosmetic law quarterly = Food Drug Cosmet Law Q Food Engineering and Manufacturing = Food Engn Mfg Food Engineering and Manufacturing = Food Engn. Mfg. Food Engineering Aspects of Baking Sweet Goods = Contemp Food Eng Food Engineering Aspects of Baking Sweet Goods = Contemp. Food Eng. Food Engineering = Food Eng Food Engineering = Food Eng. Food Engineering in A Computer Climate = Inst Chem E Food Engineering in A Computer Climate = Inst. Chem. E. Food Engineering: Integrated Approaches = Food Eng Ser Food Engineering: Integrated Approaches = Food Eng. Ser. Food Engineering Interfaces = Food Eng Ser Food Engineering Interfaces = Food Eng. Ser. Food Engineering Reviews = Food Eng Rev Food Engineering Reviews = Food Eng. Rev. Food Engineering Series = Food Eng Ser Food Engineering Series = Food Eng. Ser. Food Exploitation By Social Insects: Ecological, Behavioral, and Theoretical Approaches = Contemp Top Entomol Food Exploitation By Social Insects: Ecological, Behavioral, and Theoretical Approaches = Contemp. Top. Entomol. Food Factors for Health Promotion = Forum Nutr Food Factors for Health Promotion = Forum. Nutr. Food Factors in Health Promotion and Disease Prevention = Acs Sym Ser Food Factors in Health Promotion and Disease Prevention = Acs. Sym. Ser. Food Flavor and Chemistry: Explorations Into The 21st Century = Roy Soc Ch Food Flavor and Chemistry: Explorations Into The 21st Century = Roy. Soc. Ch. Food Flavor and Safety = Acs Sym Ser Food Flavor and Safety = Acs. Sym. Ser. Food Flavors and Chemistry = Roy Soc Ch Food Flavors and Chemistry = Roy. Soc. Ch. Food Flavors: Formation, Analysis, and Packaging Influences = Dev Food Sci Food Flavors: Formation, Analysis, and Packaging Influences = Dev. Food Sci. Food Flavors, Ingredients and Composition = Dev Food Sci Food Flavors, Ingredients and Composition = Dev. Food Sci. Food & Foods Ingredients Journal of Japan = Food Foods Ingredients J. Jpn. Food & foodways = Food Foodways Food for The Ageing Population = Woodhead Food Ser Food for The Ageing Population = Woodhead. Food Ser. Food Fortification and Supplementation: Technological, Safety and Regulatory Aspects = Woodhead Food Ser Food Fortification and Supplementation: Technological, Safety and Regulatory Aspects = Woodhead. Food Ser. Food & Function = Food Funct Food & Function = Food Funct. Food Health and Environment = Food Health Environ Food Health and Environment = Food Health Environ. Food, Hunger, and Agricultural Issues = Winr Dev Ed Food, Hunger, and Agricultural Issues = Winr. Dev. Ed. Food Hydrocolloid Edible Films and Coatings = Food Sci Technol Food Hydrocolloid Edible Films and Coatings = Food Sci. Technol. Food Hydrocolloids: Characteristics, Properties and Structures = Food Sci Technol Food Hydrocolloids: Characteristics, Properties and Structures = Food Sci. Technol. Food Hydrocolloids = Food Hydrocolloid Food Hydrocolloids = Food Hydrocolloid. Food Hydrocolloids = Food Hydrocolloids Food Hygiene and Safety Science = Food Hyg Safe Sci Food Hygiene and Safety Science = Food Hyg. Safe. Sci. Food in Canada = Food Can Food in Canada = Food Can. Food Insecurity, Vulnerability and Human Rights Failure = Stud Dev Econ Policy Food Insecurity, Vulnerability and Human Rights Failure = Stud. Dev. Econ. Policy. Food in World History = Themes World Hist Food in World History = Themes. World Hist. Food Irradiation and The Chemist = Roy Soc Ch Food Irradiation and The Chemist = Roy. Soc. Ch. Food Legumes in The Meditterranean Region = Colloq Inra Food Legumes in The Meditterranean Region = Colloq. Inra. Food Lipids and Health = Ift Bas Sym Food Lipids and Health = Ift. Bas. Sym. Food Lipids: Chemistry, Flavor, and Texture = Acs Sym Ser Food Lipids: Chemistry, Flavor, and Texture = Acs. Sym. Ser. Food Losses Due to Non-infectious and Production Diseases in Developing Countries = Fao Anim Pr Food Losses Due to Non-infectious and Production Diseases in Developing Countries = Fao. Anim. Pr. Food management = Food Manage Food Management = Food Manage. Food Manufacture = Food Manuf Food Manufacture = Food Manuf. Food Materials Science: Principles and Practice = Food Eng Ser Food Materials Science: Principles and Practice = Food Eng. Ser. Food Microbiological Analysis = Ift Bas Sym Food Microbiological Analysis = Ift. Bas. Sym. Food Microbiology and Food Safety = Food Microbiol Food Food Microbiology and Food Safety = Food Microbiol. Food Food microbiology = Food Microbiol Food Microbiology = Food Microbiol Food Microbiology = Food Microbiol. Food Microstructure = Food Microstruct Food Microstructure = Food Microstruct. Food & Nutrition Notes and Reviews = Food Nutr Notes Rev Food & Nutrition Notes and Reviews = Food Nutr. Notes Rev. Food Packaging Technology = Am Soc Test Mater Food Packaging Technology = Am. Soc. Test. Mater. Food Packaging: Testing Methods and Applications = Acs Sym Ser Food Packaging: Testing Methods and Applications = Acs. Sym. Ser. Food Phytochemicals for Cancer Prevention I = Acs Sym Ser Food Phytochemicals for Cancer Prevention I = Acs. Sym. Ser. Food Phytochemicals for Cancer Prevention Ii = Acs Sym Ser Food Phytochemicals for Cancer Prevention Ii = Acs. Sym. Ser. Food Policy=Food Pol. Food policy = Food Policy Food Policy = Food Policy Food Polymers, Gels, and Colloids = Roy Soc Ch Food Polymers, Gels, and Colloids = Roy. Soc. Ch. Food Preservation By Pulsed Electric Fields: From Research to Application = Woodhead Publ Food S Food Preservation By Pulsed Electric Fields: From Research to Application = Woodhead. Publ. Food S. Food Preservation Technology Series = Food Preserv Technol Food Preservation Technology Series = Food Preserv. Technol. Food Processing Automation = Asae Publ Food Processing Automation = Asae. Publ. Food Processing Automation Iii = Asae Publ Food Processing Automation Iii = Asae. Publ. Food Processing Automation Ii : Proceedings of The 1992 Conference = Asae Publ Food Processing Automation Ii : Proceedings of The 1992 Conference = Asae. Publ. Food Processing Technology: Principles and Practice, Third Edition = Woodhead Food Ser Food Processing Technology: Principles and Practice, Third Edition = Woodhead. Food Ser. Food Product Development Based On Experience = Ift Bas Sym Food Product Development Based On Experience = Ift. Bas. Sym. Food Product Development = Food Prod Dev Food Product Development = Food Prod. Dev. Food Production/management = Food Prod Manage Food Production/management = Food Prod. Manage. Food Properties and Computer-aided Engineering of Food Processing Systems = Nato Adv Sci I E-app Food Properties and Computer-aided Engineering of Food Processing Systems = Nato. Adv. Sci. I. E-app. Food Proteins and Lipids = Adv Exp Med Biol Food Proteins and Lipids = Adv. Exp. Med. Biol. Food Quality and Crop Protection Agents = Br Crop Pr Food Quality and Crop Protection Agents = Br. Crop Pr. Food Quality and Preference = Food Qual Prefer Food Quality and Preference = Food Qual. Prefer. Food Quality and Preference = Food Qual. Preference Food Quality = Food Qual. Food research = Food Res Food Research = Food Res Food Research = Food Res. Food Research Institute Studies=Food Res. Inst. Stud. Food Research Institute Studies = Food Res I Stud Food Research Institute Studies = Food Res. I. Stud. Food Research Institute studies in agricultural economics, trade, and development = Food Res Inst Stud Agric Econ Trade Dev Food Research Institute studies (Stanford, Calif. : 1975) = Food Res Inst Stud Food Research International = Food Res Int Food Research International = Food Res. Int. Food Reviews International = Food Rev Int Food Reviews International = Food Rev. Int. Food Safety Assessment = Acs Sym Ser Food Safety Assessment = Acs. Sym. Ser. Food Safety Assurance and Veterinary Public Health = Food Saf Assur Vet Food Safety Assurance and Veterinary Public Health = Food Saf. Assur. Vet. Food Safety Governance: Integrating Science, Precaution and Public Involvement = Risk Gov Soc Food Safety Governance: Integrating Science, Precaution and Public Involvement = Risk. Gov. Soc. Food Safety in The Human Food Chain = Cas Paper Food Safety in The Human Food Chain = Cas. Paper. Food Safety Issues Associated With Products From Aquaculture = Who Tech Rep Ser Food Safety Issues Associated With Products From Aquaculture = Who. Tech. Rep. Ser. Food science and biotechnology = Food Sci Biotechnol Food Science and Biotechnology = Food Sci Biotechnol Food Science and Biotechnology = Food Sci. Biotechnol. Food Science and Technology International = Food Sci Technol Int Food Science and Technology International = Food Sci. Technol. Int. Food Science and Technology-lebensmittel-wissenschaft & Technologie = Food Sci Technol-leb Food Science and Technology-lebensmittel-wissenschaft & Technologie = Food Sci. Technol-leb. Food Science and Technology Research = Food Sci Technol Res Food Science and Technology Research = Food Sci. Technol. Res. Food Science and Technology Series = Food Sci Technol Food Science and Technology Series = Food Sci. Technol. Food Science Text Series = Food Sci Text Ser Food Science Text Series = Food Sci. Text Ser. Food Security and Soil Quality = Adv Soil Sci-ser Food Security and Soil Quality = Adv. Soil Sci-ser. Food Security = Food Secur Food Security = Food Secur. Food Security in Asia = Acad Stud Asian Econ Food Security in Asia = Acad. Stud. Asian. Econ. Foods for Health: Integrating Agriculture, Medicine and Food for Future Health = Nabc Rep Foods for Health: Integrating Agriculture, Medicine and Food for Future Health = Nabc. Rep. Foods for Health in The 21st Century: A Road Map for The Future = Ann Ny Acad Sci Foods for Health in The 21st Century: A Road Map for The Future = Ann. Ny. Acad. Sci. Foods, Nutrition and Immunity = Dyn Nutr R Foods, Nutrition and Immunity = Dyn. Nutr. R. Food Structure = Food Struct Food Structure = Food Struct. Food Systems and Agrarian Change = Food Syst Agrar Ch Food Systems and Agrarian Change = Food Syst. Agrar. Ch. Food Technology and Biotechnology = Food Technol Biotech Food Technology and Biotechnology = Food Technol. Biotech. Food technology = Food Technol Food Technology = Food Technol-chicago Food Technology = Food Technol-chicago. Food Technology in Australia = Food Aust Food Technology in Australia = Food Aust. Food Technology in Australia = Food Technol Aust Food Technology in Australia = Food Technol. Aust. Food Technology in The Year 2000 = Bibl Nutr Diet Food Technology in The Year 2000 = Bibl. Nutr. Diet. Food Toxicology = Ift Bas Sym Food Toxicology = Ift. Bas. Sym. Food Trade Review = Food Trade Rev Food Trade Review = Food Trade Rev. Foot and ankle clinics = Foot Ankle Clin Foot and Ankle Clinics = Foot Ankle Clin Foot and Ankle Clinics = Foot Ankle Clin. Foot and Ankle = Foot Ankle Foot and Ankle International=Foot Ankle Int;; Foot and Ankle International = Foot Ankle Int. Foot and Ankle Motion Analysis: Clinical Treatment and Technology = Biomed Eng Ser Foot and Ankle Motion Analysis: Clinical Treatment and Technology = Biomed. Eng. Ser. Foot and Mouth Disease Virus = Curr Top Microbiol Foot and Mouth Disease Virus = Curr. Top. Microbiol. Foot & ankle = Foot Ankle Foot & Ankle = Foot Ankle Foot & ankle international / American Orthopaedic Foot and Ankle Society [and] Swiss Foot and Ankle Society = Foot Ankle Int Foot & Ankle International = Foot Ankle Int Foot & Ankle International = Foot Ankle Int. Football Manager: A History = Sport Glob Soc Football Manager: A History = Sport. Glob. Soc. Footmarks of Innate Immunity in The Ovary and Cytokeratin-positive Cells As Potential Dendritic Cells = Adv Anat Embryol Cel Footmarks of Innate Immunity in The Ovary and Cytokeratin-positive Cells As Potential Dendritic Cells = Adv. Anat. Embryol. Cel. Foot Ulcers: Causes, Diagnosis and Treatment = Endocr Res Clin Dev Foot Ulcers: Causes, Diagnosis and Treatment = Endocr. Res. Clin. Dev. Footwear Science = Footwear Sci. For A Better Nutrition in The 21st Century = Nestle Nutr Works Se For A Better Nutrition in The 21st Century = Nestle. Nutr. Works. Se. Forage Fishes in Marine Ecosystems = Low Wake Fi Forage Fishes in Marine Ecosystems = Low. Wake. Fi. Forages for Plantation Crops = Aciar Proc Forages for Plantation Crops = Aciar. Proc. Forages On Red Soils in China = Aciar Proc Forages On Red Soils in China = Aciar. Proc. Foray Into The Worlds of Animals and Humans: With A Theory of Meaning = Posthumanities Foray Into The Worlds of Animals and Humans: With A Theory of Meaning = Posthumanities. Forbes = Forbes Force of Language = Lang Discourse Soc Force of Language = Lang. Discourse. Soc. Forces and Tension in Development = Curr Top Dev Biol Forces and Tension in Development = Curr. Top. Dev. Biol. Forces, Growth and Form in Soft Condensed Matter: At The Interface Between Physics and Biology = Nato Sci Ser Ii Math Forces, Growth and Form in Soft Condensed Matter: At The Interface Between Physics and Biology = Nato. Sci. Ser. Ii. Math. Forces in Scanning Probe Methods = Nato Adv Sci I E-app Forces in Scanning Probe Methods = Nato. Adv. Sci. I. E-app. Forces in Scanning Probe Methods = Nato Adv Sci Inst Se Forces in Scanning Probe Methods = Nato. Adv. Sci. Inst. Se. Ford Foundation letter. Ford Foundation = Lett Ford Found Ford Foundation report (New York, N.Y. : 1992) = Ford Found Rep Fordham international law journal = Fordham Int Law J Fordham law review / edited by Fordham law students = Fordham Law Rev Fordham Law Review = Fordham Law Rev Fordham Law Review = Fordham Law Rev. Fordham Series in Medieval Studies = Fordham Ser Mediev S Fordham Series in Medieval Studies = Fordham Ser. Mediev. S. Forebrain Areas Involved in Pain Processing = Frontier Pain Res Forebrain Areas Involved in Pain Processing = Frontier. Pain Res. Forecasting and Hedging in The Foreign Exchange Markets = Lect Notes Econ Math Forecasting and Hedging in The Foreign Exchange Markets = Lect. Notes. Econ. Math. Forecasting International Migration in Europe: A Bayesian View = Springer Ser Demogr Forecasting International Migration in Europe: A Bayesian View = Springer. Ser. Demogr. Forecasting in The Presence of Structural Breaks and Model Uncertainty = Front Econ Global Forecasting in The Presence of Structural Breaks and Model Uncertainty = Front. Econ. Global. Forecasting : Market Determinants Affecting Cash Flows and Reversions = Airea Res S Forecasting : Market Determinants Affecting Cash Flows and Reversions = Airea. Res. S. Forecasting, Travel Behavior, and Network Modeling = Transport Res Rec Forecasting, Travel Behavior, and Network Modeling = Transport. Res. Rec. Forecasting With Exponential Smoothing: The State Space Approach = Springer Ser Stat Forecasting With Exponential Smoothing: The State Space Approach = Springer. Ser. Stat. Foreign affairs (Council on Foreign Relations) = Foreign Aff Foreign Affairs=Foreign Aff. Foreign Affairs = Foreign Aff Foreign Affairs = Foreign Aff. Foreign Agriculture = Foreign Agr Foreign Agriculture = Foreign Agr. Foreign Direct Investment and The Environment = Oecd Proc Foreign Direct Investment and The Environment = Oecd. Proc. Foreign Direct Investment and The World Economy = Routl Stud Mod World Foreign Direct Investment and The World Economy = Routl. Stud. Mod. World Foreign Direct Investment in Post-crisis Korea = Routl Adv Korean Stu Foreign Direct Investment in Post-crisis Korea = Routl. Adv. Korean. Stu. Foreign Direct Investment Policy and Promotion in Latin America = Oecd Proc Foreign Direct Investment Policy and Promotion in Latin America = Oecd. Proc. Foreign Direct Investments in Asia = Routl Stud Mod World Foreign Direct Investments in Asia = Routl. Stud. Mod. World. Foreign Language Annals = Foreign Lang Ann Foreign Language Annals = Foreign Lang. Ann. Foreign Literature Studies = Foreign Lit Stud Foreign Literature Studies = Foreign Lit. Stud. Foreignness of The Foreign Woman in Proverbs 1-9: A Study of The Origin and Development of A Biblical Motif = Beih Z Alttest Wiss Foreignness of The Foreign Woman in Proverbs 1-9: A Study of The Origin and Development of A Biblical Motif = Beih. Z. Alttest. Wiss. Foreign Object Impact and Energy Absorbing Structure = Imeche Sem Foreign Object Impact and Energy Absorbing Structure = Imeche. Sem. Foreign Policy Analysis = Foreign Policy Anal Foreign Policy Analysis = Foreign Policy Anal. Foreign policy = Foreign Policy Foreign Policy = Foreign Policy Foreign Policy in An Interconnected World = Glob Polit Stud Foreign Policy in An Interconnected World = Glob. Polit. Stud. Foreign Policy Making in Taiwan: From Principle to Pragmatism = Polit Asia Foreign Policy Making in Taiwan: From Principle to Pragmatism = Polit. Asia. Forensic Applications of The Mmpi-2 = Appl Psy-indiv Soc Forensic Applications of The Mmpi-2 = Appl. Psy-indiv. Soc. Forensic Evidence Analysis and Crime Scene Investigation = P Soc Photo-opt Ins Forensic Evidence Analysis and Crime Scene Investigation = P. Soc. Photo-opt. Ins. Forensic Linguistics-the International Journal of Speech Language and The Law = Forensic Linguist Forensic Linguistics-the International Journal of Speech Language and The Law = Forensic Linguist. Forensic Pathology Reviews = Forensic Pathol Rev Forensic Pathology Reviews = Forensic Pathol. Rev. Forensic Pathology Reviews, Vol 5 = Forensic Pathol Rev Forensic Pathology Reviews, Vol 5 = Forensic Pathol. Rev. Forensic Polymer Engineering: Why Polymer Products Fail in Service = Woodhead Publ Mater Forensic Polymer Engineering: Why Polymer Products Fail in Service = Woodhead. Publ. Mater. Forensic Quarterly = Forensic Quart Forensic Quarterly = Forensic Quart. Forensic Science and Medicine = Forensic Sci Med Forensic Science and Medicine = Forensic Sci. Med. Forensic science = Forensic Sci Forensic Science = Forensic Sci Forensic Science = Forensic Sci. Forensic science international = Forensic Sci Int Forensic Science International=Forensic Sci Int;; Forensic Science International = Forensic Sci Int Forensic Science International = Forensic Sci. Int. Forensic Science International-genetics = Forensic Sci Int-gen Forensic Science International-genetics = Forensic Sci. Int-gen. Forensic Science International: Genetics = Forensic Sci. Int. Genet. Forensic Science Medicine and Pathology = Forensic Sci Med Pat Forensic Science Medicine and Pathology = Forensic Sci. Med. Pat. Forensic Science, Medicine and Pathology = Forensic Sci. Med. Pathol. Forensic Science Policy and Management = Forensic Sci. Policy Manage. Forensic Science Progress = Forensic Sci. Prog. Forensic Toxicology = Forensic Toxicol Forensic Toxicology = Forensic Toxicol. Foresight=Foresight Foresight (Los Angeles, Calif.) = Foresight Forest Analytics Withh R: An Introduction = Use R Forest Analytics Withh R: An Introduction = Use. R. Forest and Landscape Research = For. Landsc. Res. Forestaviva = Forestaviva Forest Biodiversity in North, Central and South America, and The Caribbean = Man Biosph Forest Biodiversity in North, Central and South America, and The Caribbean = Man. Biosph. Forest Biodiversity: Lessons From History for Conservation = Iufro Res Ser Forest Biodiversity: Lessons From History for Conservation = Iufro. Res. Ser. Forest Biodiversity Research, Monitoring and Modeling = Man Biosph Forest Biodiversity Research, Monitoring and Modeling = Man. Biosph. Forest Communities in The Third Millennium: Linking Research Business and Policy Toward A Sustainable Non-timber Forest Product Sector = Us For Serv T R Nc Forest Communities in The Third Millennium: Linking Research Business and Policy Toward A Sustainable Non-timber Forest Product Sector = Us. For. Serv. T. R. Nc. Forest Development in Cold Climates = Nato Adv Sci Inst Se Forest Development in Cold Climates = Nato. Adv. Sci. Inst. Se. Forest Diversity and Function: Temperate and Boreal Systems = Ecol Stu An Forest Diversity and Function: Temperate and Boreal Systems = Ecol. Stu. An. Forest Diversity and Function: Temperate and Boreal Systems = Ecol Stud-anal Synth Forest Diversity and Function: Temperate and Boreal Systems = Ecol. Stud-anal. Synth. Forest ecology and management = For Ecol Manage Forest Ecology and Management = For. Ecol. Manage. Forest Ecology and Management = Forest Ecol Manag Forest Ecology and Management = Forest Ecol. Manag. Forest Ecosystems, Forest Management and The Global Carbon Cycle = Nato Asi Ser Ser I Forest Ecosystems, Forest Management and The Global Carbon Cycle = Nato. Asi. Ser. Ser. I. Forested Habitats and Human-modified Land-use Effects On Avian Diversity = Birds-evol Behav Eco Forested Habitats and Human-modified Land-use Effects On Avian Diversity = Birds-evol. Behav. Eco. Forest, Farm, and Community Tree Research Reports = For Farm Comm Tree R Forest, Farm, and Community Tree Research Reports = For. Farm. Comm. Tree R. Forest Genetic Resource Conservation and Management in Canada - Proceedings of A Workshop = For Can Pi Forest Genetic Resource Conservation and Management in Canada - Proceedings of A Workshop = For. Can. Pi. Forest Genetics = For. Genet. Forest Hydrology and Biogeochemistry: Synthesis of Past Research and Future Directions = Ecol Stud-anal Synth Forest Hydrology and Biogeochemistry: Synthesis of Past Research and Future Directions = Ecol. Stud-anal. Synth. Forest Industries = For. Ind. Forest Insect & Disease Leaflet = For. Insect Dis. Leafl. Forest Landscape Restoration in Central and Northern Europe = Eur Forest Inst Proc Forest Landscape Restoration in Central and Northern Europe = Eur. Forest Inst. Proc. Forest Management and The Water Cycle: An Ecosystem-based Approach = Ecol Stud-anal Synth Forest Management and The Water Cycle: An Ecosystem-based Approach = Ecol. Stud-anal. Synth. Forest Modeling Symposium = For Can Nor Forest Modeling Symposium = For. Can. Nor. Forest Pathology = Forest Pathol Forest Pathology = Forest Pathol. Forest Pathology = For. Pathol. Forest Pest Management Institute - Information Report = Fpm Inf Rep Forest Pest Management Institute - Information Report = Fpm. Inf. Rep. Forest Policy and Economics = Forest Policy Econ Forest Policy and Economics = Forest Policy Econ. Forest Policy and Economics = For. Policy Econ. Forest Policy and Economics in Support of Good Governance = Eur Forest Inst Proc Forest Policy and Economics in Support of Good Governance = Eur. Forest Inst. Proc. Forest Policy in The Countries With Economies in Transition - Ready for The European Union? = Eur Forest Inst Proc Forest Policy in The Countries With Economies in Transition - Ready for The European Union? = Eur. Forest Inst. Proc. Forest Products Journal = Forest Prod J Forest Products Journal = Forest Prod. J. Forest Products Journal = For. Prod. J. Forest Research Crossing Borders = Eur Forest Inst Proc Forest Research Crossing Borders = Eur. Forest Inst. Proc. Forestry Abstracts = For. Abstr. Forestry and Agroforestry = Res Meth Plant Sci Forestry and Agroforestry = Res. Meth. Plant. Sci. Forestry and Environment - Engineering Solutions = Asae Publ Forestry and Environment - Engineering Solutions = Asae. Publ. Forestry Canada Information Report Newfoundland and Labrador Region = For Can New Forestry Canada Information Report Newfoundland and Labrador Region = For. Can. New. Forestry Canada Information Report Northwest Region = For Can Nor Forestry Canada Information Report Northwest Region = For. Can. Nor. Forestry Canada Information Report Petawawa National Forestry Institute = For Can Pi Forestry Canada Information Report Petawawa National Forestry Institute = For. Can. Pi. Forestry Canda Modeling Working Group : Proceedings of The Fifth Annual Workshop = For Can Nor Forestry Canda Modeling Working Group : Proceedings of The Fifth Annual Workshop = For. Can. Nor. Forestry Chronicle = For. Chron. Forestry Chronicle = Forest Chron Forestry Chronicle = Forest. Chron. Forestry Chronicle, The = For. Chron. Forestry Cooperatives: What Today's Resource Professionals Need to Know = Us For Serv T R Nc Forestry Cooperatives: What Today's Resource Professionals Need to Know = Us. For. Serv. T. R. Nc. Forestry = Forestry Forestry Research Management Initiatives for The 1990s = Fri Bull Forestry Research Management Initiatives for The 1990s = Fri. Bull. Forestry Sciences = For Sci Forestry Sciences = For. Sci. Forestry Technical Report = For. Tech. Rep. Forest Scenario Modelling for Ecosystem Management At Landscape Level = Eur Forest Inst Proc Forest Scenario Modelling for Ecosystem Management At Landscape Level = Eur. Forest Inst. Proc. Forest Science = Forest Sci Forest Science = Forest Sci. Forest Science = For. Sci. Forests in Poverty Reduction Strategies: Capturing The Potential = Eur Forest Inst Proc Forests in Poverty Reduction Strategies: Capturing The Potential = Eur. Forest. Inst. Proc. Forest Snow and Landscape Research = For. Snow Landsc. Res. Forests to Climate Change Mitigation: Clean Development Mechanism in Bangladesh = Environ Sci Eng Forests to Climate Change Mitigation: Clean Development Mechanism in Bangladesh = Environ. Sci. Eng. Forest Systems = Forest Syst Forest Systems = Forest Syst. Forest Systems = For Syst Forest Systems = For. Syst. forêt, La = Forêt Forêt méditerranéenne = For. méditerr. Forêts de France et action forestière = For. Fr. action for. Forêts de France = For. Fr. Forêt Suisse = Forêt Suisse Forging A Women's Health Research Agenda: Policy Issues for The 1990s = Ann Ny Acad Sci Forging A Women's Health Research Agenda: Policy Issues for The 1990s = Ann. Ny. Acad. Sci. Forging Chivalric Communities in Malory's Le Morte Darthur = Stud Arthur Court Cu Forging Chivalric Communities in Malory's Le Morte Darthur = Stud. Arthur. Court. Cu. Forging New Frontiers: Fuzzy Pioneers Ii = Stud Fuzz Soft Comp Forging New Frontiers: Fuzzy Pioneers Ii = Stud. Fuzz. Soft. Comp. Forging New Frontiers: Fuzzy Pioneers I = Stud Fuzz Soft Comp Forging New Frontiers: Fuzzy Pioneers I = Stud. Fuzz. Soft. Comp. Forging Sustainable Peace in Mindanao: The Role of Civil Society = Pol Stud Forging Sustainable Peace in Mindanao: The Role of Civil Society = Pol. Stud. Forgiveness and Reconciliation: Psychological Pathways to Conflict Transformation and Peace Building = Peace Psychol Book S Forgiveness and Reconciliation: Psychological Pathways to Conflict Transformation and Peace Building = Peace Psychol. Book. S. Forgotten Captives in Japanese-occupied Asia = Routl Stud Mod Hist Forgotten Captives in Japanese-occupied Asia = Routl. Stud. Mod. Hist. Forkhead Transcription Factors: Vital Elements in Biology and Medicine = Adv Exp Med Biol Forkhead Transcription Factors: Vital Elements in Biology and Medicine = Adv. Exp. Med. Biol. Forktail = Forktail Forlimpopoli. Documenti e studi = Forlimpopoli Forma = Forma Formal Approaches to Agent-based Systems = Lect Notes Artif Int Formal Approaches to Agent-based Systems = Lect. Notes. Artif. Int. Formal Approaches to Agent-based Systems = Lect Notes Comput Sc Formal Approaches to Agent-based Systems = Lect. Notes. Comput. Sc. Formal Approaches to Software Testing and Runtime Verification = Lect Notes Comput Sc Formal Approaches to Software Testing and Runtime Verification = Lect. Notes. Comput. Sc. Formal Approaches to Software Testing = Lect Notes Comput Sc Formal Approaches to Software Testing = Lect. Notes. Comput. Sc. Formal Aspects in Security and Trust = Int Fed Info Proc Formal Aspects in Security and Trust = Int. Fed. Info. Proc. Formal Aspects in Security and Trust = Lect Notes Comput Sc Formal Aspects in Security and Trust = Lect. Notes. Comput. Sc. Formal Aspects of Computing = Form Asp Comput Formal Aspects of Computing = Form. Asp. Comput. Formal Aspects of Context = Appl Log Ser Formal Aspects of Context = Appl. Log. Ser. Formal Aspects of Security = Lect Notes Comput Sc Formal Aspects of Security = Lect. Notes. Comput. Sc. Formal Concept Analysis: Formal Concept Analysis = Lect Notes Artif Int Formal Concept Analysis: Formal Concept Analysis = Lect. Notes. Artif. Int. Formal Concept Analysis = Lect Notes Artif Int Formal Concept Analysis = Lect. Notes. Artif. Int. Formal Concept Analysis, Proceedings = Lect Notes Artif Int Formal Concept Analysis, Proceedings = Lect. Notes. Artif. Int. Formal Concept Analysis, Proceedings = Lect Notes Comput Sc Formal Concept Analysis, Proceedings = Lect. Notes. Comput. Sc. Formal Concepts Analysis, Proceedings = Lect Notes Artif Int Formal Concepts Analysis, Proceedings = Lect. Notes. Artif. Int. Formal Descriptions of Developing Systems = Nato Sci Ser Ii-math Formal Descriptions of Developing Systems = Nato. Sci. Ser. Ii-math. Formal Descriptions of Developing Systems = Nato Sci Ser Ii Math Formal Descriptions of Developing Systems = Nato. Sci. Ser. Ii. Math. Formal Description Techniques, Iv = Ifip Trans C Formal Description Techniques, Iv = Ifip. Trans. C. Formal Description Techniques, Vi = Ifip Trans C Formal Description Techniques, Vi = Ifip. Trans. C. Formal Design Methods for Cad = Ifip Trans B Formal Design Methods for Cad = Ifip. Trans. B. Formal Foundations for Software Engineering Methods = Lect Notes Comput Sc Formal Foundations for Software Engineering Methods = Lect. Notes. Comput. Sc. Formal Foundations of Reuse and Domain Engineering, Proceedings = Lect Notes Comput Sc Formal Foundations of Reuse and Domain Engineering, Proceedings = Lect. Notes. Comput. Sc. Formalin-fixed Paraffin-embedded Tissues: Methods and Protocols = Methods Mol Biol Formalin-fixed Paraffin-embedded Tissues: Methods and Protocols = Methods Mol. Biol. Formal Languages and Compilation = Texts Comput Sci Formal Languages and Compilation = Texts. Comput. Sci. Formal Methods and Hybrid Real-time Systems = Lect Notes Comput Sc Formal Methods and Hybrid Real-time Systems = Lect. Notes. Comput. Sc. Formal Methods and Software Engineering = Lect Notes Comput Sc Formal Methods and Software Engineering = Lect. Notes. Comput. Sc. Formal Methods and Software Engineering, Proceedings = Lect Notes Comput Sc Formal Methods and Software Engineering, Proceedings = Lect. Notes. Comput. Sc. Formal Methods and Stochastic Models for Performance Evaluation = Lect Notes Comput Sc Formal Methods and Stochastic Models for Performance Evaluation = Lect. Notes. Comput. Sc. Formal Methods: Applications and Technology = Lect Notes Comput Sc Formal Methods: Applications and Technology = Lect. Notes. Comput. Sc. Formal Methods At The Crossroads: From Panacea to Foundational Support = Lect Notes Comput Sc Formal Methods At The Crossroads: From Panacea to Foundational Support = Lect. Notes. Comput. Sc. Formal Methods for Components and Objects = Lect Notes Comput Sc Formal Methods for Components and Objects = Lect. Notes. Comput. Sc. Formal Methods for Computational Systems Biology = Lect Notes Comput Sc Formal Methods for Computational Systems Biology = Lect. Notes. Comput. Sc. Formal Methods for Hardware Verification = Lect Notes Comput Sc Formal Methods for Hardware Verification = Lect. Notes. Comput. Sc. Formal Methods for Industrial Critical Systems = Lect Notes Comput Sc Formal Methods for Industrial Critical Systems = Lect. Notes. Comput. Sc. Formal Methods for Mobile Computing = Lect Notes Comput Sc Formal Methods for Mobile Computing = Lect. Notes. Comput. Sc. Formal Methods for Open Object-based Distributed Systems Iv = Int Fed Info Proc Formal Methods for Open Object-based Distributed Systems Iv = Int. Fed. Info. Proc. Formal Methods for Open Object-based Distributed Systems = Lect Notes Comput Sc Formal Methods for Open Object-based Distributed Systems = Lect. Notes. Comput. Sc. Formal Methods for Open Object-based Distributed Systems, Proceedings = Lect Notes Comput Sc Formal Methods for Open Object-based Distributed Systems, Proceedings = Lect. Notes. Comput. Sc. Formal Methods for Performance Evaluation = Lect Notes Comput Sc Formal Methods for Performance Evaluation = Lect. Notes. Comput. Sc. Formal Methods for Protocol Engineering and Distributed Systems = Int Fed Info Proc Formal Methods for Protocol Engineering and Distributed Systems = Int. Fed. Info. Proc. Formal Methods for Quantitative Aspects of Programming Languages = Lect Notes Comput Sc Formal Methods for Quantitative Aspects of Programming Languages = Lect. Notes. Comput. Sc. Formal Methods for Software Architectures = Lect Notes Comput Sc Formal Methods for Software Architectures = Lect. Notes. Comput. Sc. Formal Methods for The Design of Real-time Systems = Lect Notes Comput Sc Formal Methods for The Design of Real-time Systems = Lect. Notes. Comput. Sc. Formal Methods for Web Services = Lect Notes Comput Sc Formal Methods for Web Services = Lect. Notes. Comput. Sc. Formal Methods: Foundations and Applications = Lect Notes Comput Sc Formal Methods: Foundations and Applications = Lect. Notes. Comput. Sc. Formal Methods in Computer-aided Design = Lect Notes Comput Sc Formal Methods in Computer-aided Design = Lect. Notes. Comput. Sc. Formal Methods in Computer-aided Design, Proceedings = Lect Notes Comput Sc Formal Methods in Computer-aided Design, Proceedings = Lect. Notes. Comput. Sc. Formal Methods in Databases and Software Engineering = Work Comp Formal Methods in Databases and Software Engineering = Work. Comp. Formal Methods in Software and Systems Modeling = Lect Notes Comput Sc Formal Methods in Software and Systems Modeling = Lect. Notes. Comput. Sc. Formal Methods in System Design = Form Method Syst Des Formal Methods in System Design = Form. Method. Syst. Des. Formal Methods in Systems Biology = Lect N Bioinformat Formal Methods in Systems Biology = Lect. N. Bioinformat. Formal Methods Pacific '97 = Spr S Disc Math Formal Methods Pacific '97 = Spr. S. Disc. Math. Formal Modeling and Analysis of Timed Systems = Lect Notes Comput Sc Formal Modeling and Analysis of Timed Systems = Lect. Notes. Comput. Sc. Formal Modeling and Analysis of Timed Systems, Proceedings = Lect Notes Comput Sc Formal Modeling and Analysis of Timed Systems, Proceedings = Lect. Notes. Comput. Sc. Formal Models, Languages and Applications = Ser Mach Percept Art Formal Models, Languages and Applications = Ser. Mach. Percept. Art. Formal Models of Agents = Lect Notes Artif Int Formal Models of Agents = Lect. Notes. Artif. Int. Formal Ontology and Conceptual Realism = Synth Libr Formal Ontology and Conceptual Realism = Synth. Libr. Formal Ontology in Information Systems = Fr Art Int Formal Ontology in Information Systems = Fr. Art. Int. Formal Ontology in Information Systems = Front Artif Intel Ap Formal Ontology in Information Systems = Front. Artif. Intel. Ap. Formal Perspectives On Romance Linguistics = Amst Stud Theory His Formal Perspectives On Romance Linguistics = Amst. Stud. Theory. His. Formal Properties of Finite Automata and Applications = Lect Notes Comput Sc Formal Properties of Finite Automata and Applications = Lect. Notes. Comput. Sc. Formal Properties of Measurement Constructions = Interface Explor Formal Properties of Measurement Constructions = Interface. Explor. Formal Semantics for Vhdl = Kluw S Vlsi Formal Semantics for Vhdl = Kluw. S. Vlsi. Formal Specification and Synthesis of Procedural Controllers for Process Systems = Lect Notes Contr Inf Formal Specification and Synthesis of Procedural Controllers for Process Systems = Lect. Notes. Contr. Inf. Formal Technique for Networked and Distributed Systems - Forte 2002, Proceedings = Lect Notes Comput Sc Formal Technique for Networked and Distributed Systems - Forte 2002, Proceedings = Lect. Notes. Comput. Sc. Formal Techniques for Computer Systems and Business Processes, Proceedings = Lect Notes Comput Sc Formal Techniques for Computer Systems and Business Processes, Proceedings = Lect. Notes. Comput. Sc. Formal Techniques for Distributed Systems, Proceedings = Lect Notes Comput Sc Formal Techniques for Distributed Systems, Proceedings = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2003 = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2003 = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2004, Proceedings = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2004, Proceedings = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2005 = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2005 = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2006 = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2006 = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2007 = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2007 = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems - Forte 2008 = Lect Notes Comput Sc Formal Techniques for Networked and Distributed Systems - Forte 2008 = Lect. Notes. Comput. Sc. Formal Techniques for Networked and Distributed Systems = Int Fed Info Proc Formal Techniques for Networked and Distributed Systems = Int. Fed. Info. Proc. Formal Techniques for Newtowrked and Distributed Systems - Forte 2005 = Lect Notes Comput Sc Formal Techniques for Newtowrked and Distributed Systems - Forte 2005 = Lect. Notes. Comput. Sc. Formal Techniques in Real-time and Fault-tolerant Systems = Lect Notes Comput Sc Formal Techniques in Real-time and Fault-tolerant Systems = Lect. Notes. Comput. Sc. Formal Techniques in Real-time and Fault-tolerant Systems, Proceedings = Lect Notes Comput Sc Formal Techniques in Real-time and Fault-tolerant Systems, Proceedings = Lect. Notes. Comput. Sc. Formal Techniques, Modelling and Analysis of Timed and Fault-tolerant Systems, Proceedings = Lect Notes Comput Sc Formal Techniques, Modelling and Analysis of Timed and Fault-tolerant Systems, Proceedings = Lect. Notes. Comput. Sc. Formal Theories of Information = Lect Notes Comput Sc Formal Theories of Information = Lect. Notes. Comput. Sc. Formal to Practical Security = Lect Notes Comput Sc Formal to Practical Security = Lect. Notes. Comput. Sc. Form and Function in Language Research: Papers in Honour of Christian Lehmann = Trends Linguist-stud Form and Function in Language Research: Papers in Honour of Christian Lehmann = Trends. Linguist-stud. Format Integration and Its Effect On Cataloging, Training, and Systems = Alcts P Lib Tech Ser Format Integration and Its Effect On Cataloging, Training, and Systems = Alcts. P. Lib. Tech. Ser. Formation and Applications of The Sedimentary Record in Arc Collision Zones = Geol S Am S Formation and Applications of The Sedimentary Record in Arc Collision Zones = Geol. S. Am. S. Formation and Applications of The Sedimentary Record in Arc Collision Zones = Geol Soc Am Spec Pap Formation and Applications of The Sedimentary Record in Arc Collision Zones = Geol. Soc. Am. Spec. Pap. Formation and Development of Small Business: Issues and Evidence = Routl Stud Small Bus Formation and Development of Small Business: Issues and Evidence = Routl. Stud. Small Bus. Formation and Differentiation of Early Embryonic Mesoderm = Nato Adv Sci I A-lif Formation and Differentiation of Early Embryonic Mesoderm = Nato. Adv. Sci. I. A-lif. Formation and Dynamics of Self-organized Structures in Surfactants and Polymer Solutions = Prog Coll Pol Sci S Formation and Dynamics of Self-organized Structures in Surfactants and Polymer Solutions = Prog. Coll. Pol. Sci. S. Formation and Early Growth of Business Webs: Modular Product Systems in Network Markets = Inform Age Econ Formation and Early Growth of Business Webs: Modular Product Systems in Network Markets = Inform. Age. Econ. Formation and Evolution of Galaxy Disks = Astr Soc P Formation and Evolution of Galaxy Disks = Astr. Soc. P. Formation and Evolution of Massive Young Star Clusters = Astr Soc P Formation and Evolution of Massive Young Star Clusters = Astr. Soc. P. Formation and Evolution of Solids in Space = Nato Adv Sci I C-mat Formation and Evolution of Solids in Space = Nato. Adv. Sci. I. C-mat. Formation and Interactions of Topological Defects = Nato Adv Sci Inst Se Formation and Interactions of Topological Defects = Nato. Adv. Sci. Inst. Se. Formation of Binary Stars = Iau Symp Formation of Binary Stars = Iau. Symp. Formation of Black Holes in General Relativity = Ems Textb Math Formation of Black Holes in General Relativity = Ems. Textb. Math. Formation of Dark Matter Haloes in A Cdm Universe = Space Sci Explor Pol Formation of Dark Matter Haloes in A Cdm Universe = Space. Sci. Explor. Pol. Formation of The Galactic Halo....inside and Out = Astr Soc P Formation of The Galactic Halo....inside and Out = Astr. Soc. P. Formative Period of American Capitalism: A Materialist Interpretation = Rout Int Stud Bus Hi Formative Period of American Capitalism: A Materialist Interpretation = Rout. Int. Stud. Bus. Hi. Formative Years of Scholars = Wenn Gr Int Formative Years of Scholars = Wenn. Gr. Int. Formazione e Aggiornamento in Matematica degli Insegnanti = Form. Aggiorn. Mat. Insegn. Forme Des Choses: Poesie Et Savoirs Dans La Sepmaine De Du Bartas = Cribles Forme Des Choses: Poesie Et Savoirs Dans La Sepmaine De Du Bartas = Cribles. Forming Couples: Godard's Contempt = Legend Spec Lect Ser Forming Couples: Godard's Contempt = Legend. Spec. Lect. Ser. Forming Ethical Identities in Early Childhood Play = Contest Early Childh Forming Ethical Identities in Early Childhood Play = Contest. Early Childh. Forming The Mind = Stud His Phil Mind Forming The Mind = Stud. His. Phil. Mind Forming The Mind = Stud Hist Philos Min Forming The Mind = Stud. Hist. Philos. Min. Formosan journal of medical humanities = Formos J Med Humanit Formoterol : Fast and Long-lasting Bronchodilatation = Roy Soc Med Int Cong Formoterol : Fast and Long-lasting Bronchodilatation = Roy. Soc. Med. Int. Cong. Formulary (Cleveland, Ohio) = Formulary Formulary = Formulary Formulation and Delivery of Proteins and Peptides = Acs Sym Ser Formulation and Delivery of Proteins and Peptides = Acs. Sym. Ser. Formulation of Christianity By Conflict Through The Ages = Symposium S Formulation of Christianity By Conflict Through The Ages = Symposium. S. Fornvannen-journal of Swedish Antiquarian Research = Fornvannen Fornvannen-journal of Swedish Antiquarian Research = Fornvannen. Fornvännen. Tidskrift för svensk antikvarisk forskning = Fornvaennen Foro internacional = Foro Int Foro Internacional = Foro Int Foro Internacional = Foro Int. Foro mundial de la salud = Foro Mund Salud Forschende Komplementarmedizin (2006) = Forsch Komplement Med (2006) Forschende Komplementarmedizin = Forsch Komplementarmed Forschende Komplementarmedizin = Forsch. Komplementarmed. Forschende Komplementarmedizin = Forsch Komplementmed Forschende Komplementarmedizin = Forsch. Komplementmed. Forschende Komplementarmedizin Und Klassische Naturheilkunde = Forsch Komp Klas Nat Forschende Komplementarmedizin Und Klassische Naturheilkunde = Forsch. Komp. Klas. Nat. Forschende Komplementarmedizin und Klassische Naturheilkunde = Forsch. Komplementarmed. Klass. Naturheilkd. Forschungen in Augst = FiA Forschungen in Ephesos = FiE Forschungen und Berichte. Staatliche Museen zu Berlin = FuB " Forschungen und Berichte zur Vor- und Frühgeschichte in Baden-""-Württemberg = FBerBadWuert " Forschungen und Fortschritte = Forsch. Fortschr. Forschungen und Fortschritte = FuF Forschungen und Materialien zur Deutschen Aufklärung (FMDA) = FMDA Abt. I: Texte Forschungen zur Allgemeinen und Vergleichenden Archäologie = FAVA Forschungen zur Archäologie Außereuropäischer Kulturen = FAAK Forschungen Zur Europaischen Integration = Forsch Eur Integr Forschungen Zur Europaischen Integration = Forsch. Eur. Integr. Forschungen zur Volks- und Landeskunde = Forsch Volks Landeskd Forschung Im Ingenieurwesen-engineering Research = Forsch Ingenieurwes Forschung Im Ingenieurwesen-engineering Research = Forsch. Ingenieurwes. Forschung im Ingenieurwesen = Forsch. Ingenieurwes. Forschungsberichte des ATB = Research reports of ATB|Forschungsberichte ATB Forschungsbericht forstliche Forschungsanstalt München = Forsch.ber. forstl. Forsch.anst. Münch. Forschungsergebnisse zur Informatik = Forsch.ergeb. Inform. Forschungsjournal neue soziale Bewegungen = Forsch J Neue Soz Beweg Forschungszentrum Karlsruhe - Technik Und Umwelt, Wissenschaftliche Berichte (fzka) = Fzka Tech Umw Wis B Forschungszentrum Karlsruhe - Technik Und Umwelt, Wissenschaftliche Berichte (fzka) = Fzka. Tech. Umw. Wis. B. Forschung und Fortbildung in der Chirurgie des Bewegungsapparates = Forsch Fortbild Chir Bewegungsapparates Forschung Und Praxis Im Dialog = Fors Prax D Forschung Und Praxis Im Dialog = Fors. Prax. D. Forstarchiv = Forstarchiv Forstliche Forschungsberichte München = Forstl. Forsch.ber. Münch. Forstliche Rundschau = Forstl. Rundsch. Forstliche Umschau = Forstl. Umsch. Forstlich-naturwissenschaftliche Zeitschrift = Forstl.-nat.wiss. Z. forstlige forsøgsvaesen i Danmark, Det = Forstl. forsøgsvaes. Dan. Forstschutz Bulletin = Forstschutz Bull. Forsttechnische Informationen = Forsttech. Inf. Forst und Holz = Forst Holz Forst- und Holzwirt, Der = Forst- Holzwirt Forstwissenschaftliches Centralblatt = Forstwiss. Cent.bl. Forstwissenschaftliches Centralblatt = Forstwiss Centralbl Forstwissenschaftliches Centralblatt = Forstwiss. Centralbl. Forsvarsmedicin = Forsvarsmedicin Fort Concho report = Fort Concho Rep Fortgeschrittene Lernervarietaten: Korpuslinguistik Und Zweitspracherwerbsforschung = Linguist Arb Fortgeschrittene Lernervarietaten: Korpuslinguistik Und Zweitspracherwerbsforschung = Linguist. Arb. For The Greater Good of All: Perspectives On Individualism, Society, and Leadership = Jepson Stud Leadersh For The Greater Good of All: Perspectives On Individualism, Society, and Leadership = Jepson. Stud. Leadersh. For The Millions: American Art and Culture Between The Wars = Arts Intell Life Mod For The Millions: American Art and Culture Between The Wars = Arts. Intell. Life. Mod. For The People By The People? Eugene Sue's Les Mysteres De Paris = Res Monogr Fr Stud For The People By The People? Eugene Sue's Les Mysteres De Paris = Res. Monogr. Fr. Stud. Fortnightly Review of the Chicago Dental Society = Fortn. Rev. Chic. Dent. Soc. Fortpflanzung, Besamung, und Aufzucht der Haustiere = Fortpflanz Besamung Aufzucht Haustiere Fortran Numerical Recipes = Fortran Numer. Recipes Fortschriftsberiche der Deutschen Keramischen Gesellschaft = Fortschrittsber. Dtschen Keram. Ges. Fortschritte auf dem Gebiete der Rontgenstrahlen = Fortschr Geb Rontgenstr Fortschritte auf dem Gebiete der Rontgenstrahlen = Fortschr. Geb. Rontgenstr. Fortschritte auf dem Gebiete der Rontgenstrahlen und der neuen bildgebenden Verfahren. Erganzungsband = Fortschr Geb Rontgenstrahlen Neuen Bildgeb Verfahr Erganzungsbd Fortschritte auf dem Gebiete der Rontgenstrahlen und der Neuen Bildgebenden Verfahren. Erganzungsband = Fortschr. Geb. Rontgenstrahlen Neuen Bildgeb. Verfahr. Erganzungsbd. Fortschritte Auf Dem Gebiete Der Rontgenstrahlen Und Der Neuen Bildgebenden Verfahren = Rofo Fortschr Rontg Fortschritte Auf Dem Gebiete Der Rontgenstrahlen Und Der Neuen Bildgebenden Verfahren = Rofo. Fortschr. Rontg. Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin. Erganzungsband = Fortschr Geb Rontgenstrahlen Nuklearmed Erganzungsbd Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin. Erganzungsband = Fortschr. Geb. Rontgenstrahlen Nuklearmed. Erganzungsbd. Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin = Fortschr Geb Rontgenstr Nuklearmed Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin = Fortschr. Geb. Rontgenstr. Nuklearmed. Fortschritte Auf Dem Gebiete Der Rontgenstrahlen Und Der Nuklearmedizin = Fortschr Rontg Neuen Fortschritte Auf Dem Gebiete Der Rontgenstrahlen Und Der Nuklearmedizin = Fortschr. Rontg. Neuen. Fortschritte auf dem Gebiete der Rontgenstrahlen und Nuklearmedizine = Fortschr. Geb. Rontgenstr. Nuklearmed. Fortschritte der Andrologie = Fortschr Androl Fortschritte der Andrologie = Fortschr. Androl. Fortschritte der angewandten Radioisotopie und Grenzgebiete = Fortschr Angew Radioisot Grenzgeb Fortschritte der Arzneimittelforschung (Progress in Drug Research) = Fortschr. Arzneimittelforsch. Fortschritte der Arzneimittelforschung. Progress in drug research. Progres des recherches pharmaceutiques = Fortschr Arzneimittelforsch Fortschritte Der Chemie Organischer Naturstoffe = Fort Chem Org Nat Fortschritte Der Chemie Organischer Naturstoffe = Fort. Chem. Org. Nat. Fortschritte der Chemie Organischer Naturstoffe = Fortschr. Chem. Org. Naturst. Fortschritte Der Chemie Organischer Naturstoffe=Fortschr Chem Org Naturst;; Fortschritte der Chemie organischer Naturstoffe. Progress in the chemistry of organic natural products. Progres dans la chimie des substances organiques naturelles = Fortschr Chem Org Naturst Fortschritte der Chemie, Physik und Physikalischen Chemie = Fortschr. Chem. Phys. Phys. Chem. Fortschritte der Chemischen Forschung = Fortschr. Chem. Forsch. Fortschritte Der Chemischen Forschung = Fortschr Chem Forsch Fortschritte Der Chemischen Forschung = Fortschr. Chem. Forsch. Fortschritte der Geburtshilfe und Gynakologie = Fortschr Geburtshilfe Gynakol Fortschritte der Geburtshilfe und Gynakologie = Fortschr. Geburtshilfe Gynakol. Fortschritte der Hals-, Nasen-, Ohrenheilkunde = Fortschr. Hals. Nasen. Ohrenheilkd. Fortschritte der Hals-Nasen-Ohrenheilkunde = Fortschr Hals Nasen Ohrenheilkd Fortschritte Der Herz Thorax Und Gefabchirurgie = Fortschr Herz Thorax Fortschritte Der Herz Thorax Und Gefabchirurgie = Fortschr. Herz Thorax Fortschritte der Hochpolymoren-Forschung = Fortschr. Hochpolym. Forsch. Fortschritte der Immunitatsforschung = Fortschr Immunitatsforsch Fortschritte der Immunitatsforschung = Fortschr. Immunitatsforsch. Fortschritte der Kieferorthopadie = Fortschr Kieferorthop Fortschritte der Kieferorthopadie = Fortschr. Kieferorthop. Fortschritte der Kiefer- und Gesichts-Chirurgie = Fortschr Kiefer Gesichtschir Fortschritte der Kiefer- und Gesichts-Chirurgie = Fortschr. Kiefer. Gesichtschir. Fortschritte der Medizin = Fortschr Med Fortschritte der Medizin = Fortschr. Med. Fortschritte Der Medizin=Fortschr Med;; Fortschritte Der Medizin = Fortschr Med Fortschritte Der Medizin = Fortschr. Med. Fortschritte der Medizin. Monographie = Fortschr Med Monogr Fortschritte der Medizin. Monographie = Fortschr. Med. Monogr. Fortschritte der Medizin. Originalien = Fortschr Med Orig Fortschritte der Medizin. Supplement : die Kongressinformation fur die Praxis = Fortschr Med Suppl Fortschritte der Medizin. Supplement = Fortschr. Med. Suppl. Fortschritte Der Medizin. Supplement=Fortschr Med Suppl;; Fortschritte der Mineralogie = Fortschr. Mineral. Fortschritte Der Mineralogie = Fortschr Mineral Fortschritte Der Mineralogie = Fortschr. Mineral. Fortschritte der Mineralogie, Kristallograhie, und Petrographie = Fortschr. Mineral. Kristallog. Petrogr. Fortschritte Der Neurologie Psychiatrie = Fortschr Neurol Psyc Fortschritte Der Neurologie Psychiatrie = Fortschr. Neurol. Psyc. Fortschritte der Neurologie-Psychiatrie = Fortschr Neurol Psychiatr Fortschritte der Neurologie-Psychiatrie = Fortschr. Neurol. Psychiatr. Fortschritte Der Neurologie-Psychiatrie=Fortschr Neurol Psychiatr;; Fortschritte der Neurologie, Psychiatrie, und ihrer Grenzgebiete = Fortschr Neurol Psychiatr Grenzgeb Fortschritte der Neurologie, Psychiatrie und Ihrer Grenzgebiete = Fortschr. Neurol. Psychiatr. Grenzgeb. Fortschritte Der Neurologie Und Psychiatrie Und Ihrer Grenzgebiete = Fortschr Neurol P I Fortschritte Der Neurologie Und Psychiatrie Und Ihrer Grenzgebiete = Fortschr. Neurol. P. I. Fortschritte der Ophthalmologie = Fortschr. Ophthalmol. Fortschritte der Ophthalmologie : Zeitschrift der Deutschen Ophthalmologischen Gesellschaft = Fortschr Ophthalmol Fortschritte der Physikalischen Chemie = Fortschr. Phys. Chem. Fortschritte der Physik = Fortschr. Phys. Fortschritte der Physik = Fortschr. Phys. Fortschritte Der Physik = Fortschr Physik Fortschritte Der Physik = Fortschr. Physik Fortschritte Der Physik-progress of Physics = Fortschr Phys Fortschritte Der Physik-progress of Physics = Fortschr. Phys. Fortschritte der psychosomatischen Medizin. Advances in psychosomatic medicine = Fortschr Psychosom Med Fortschritte der Teerfarben fabrikation und Verwandter Industriezweige = Fortschr. Teerfarbenfabr. Verw. Industriezweige Fortschritte der Verfahrenstechnik Abteilung A: Grundlagen der Verfahrenstechnik = Fortschr. Verfahrenstech. Abt. A Fortschritte der Verfahrenstechnik Abteilung B: Mechanische Verfahrenstechnik = Fortschr. Verfahrenstech. Abt. B Fortschritte der Verfahrenstechnik Abteilung C: Thermische Verfahrenstechnik = Fortschr. Verfahrenstech. Abt. C Fortschritte der Verfahrenstechnik Abteilung D: Reaktionstechnik = Fortschr. Verfahrenstech. Abt. D Fortschritte der Verfahrenstechnik Abteilung E: Planung und Betrieb Von Anlagen = Fortschr. Verfahrenstech. Abt. E Fortschritte der Verfahrenstechnik Abteilung F: Spezielle Technologien = Fortschr. Verfahrenstech. Abt. F Fortschritte der Verfahrenstechnik = Fortschr. Verfahrenstech. Fortschritte der Verhaltensforschung = Fortschr Verhaltensforsch Fortschritte der Verhaltensforschung = Fortschr. Verhaltensforsch. Fortschritte Der Veterinarmedizin-advances in Veterinary Medicine = Fortschr Vet Fortschritte Der Veterinarmedizin-advances in Veterinary Medicine = Fortschr. Vet. Fortschritte der Zoologie = Fortschr Zool Fortschritte der Zoologie = Fortschr. Zool. Fortschritte Der Zoologie = Forts Zool Fortschritte Der Zoologie = Forts. Zool. Fortschritte in Der Arthroskopie = Fort Arthr Fortschritte in Der Arthroskopie = Fort. Arthr. Fortschritte in Der Luftreinhaltetechnik = Vdi Bericht Fortschritte in Der Luftreinhaltetechnik = Vdi. Bericht. Fortschritte in der Tierphysiologie und Tierernahrung = Fortschr Tierphysiol Tierernahr Fortschritte in der Tierphysiologie und Tierernahrung = Fortschr. Tierphysiol. Tierernahr. Fortschritte in Diagnostik Und Therapie Des Prostatakarzinoms = Onkol Koll Fortschritte in Diagnostik Und Therapie Des Prostatakarzinoms = Onkol. Koll. Fortschritt Und Fortbildung in Der Medizin, Band 17 ( 1993/94 ) = For For Med Fortschritt Und Fortbildung in Der Medizin, Band 17 ( 1993/94 ) = For. For. Med. Fortschritt Und Fortbildung in Der Medizin, Bd 16 ( 1992/93 ) = For For Med Fortschritt Und Fortbildung in Der Medizin, Bd 16 ( 1992/93 ) = For. For. Med. Fortschritt Und Fortbildung in Der Medizin = For For Med Fortschritt Und Fortbildung in Der Medizin = For. For. Med. Fortuna vitrea = Fortuna Vitrea Fortuna Vitrea-works On Literary Tradition Between 13th-century and 16th-century = Fortuna Vitrea Fortuna Vitrea-works On Literary Tradition Between 13th-century and 16th-century = Fortuna Vitrea. Fortune = Fortune Fort Valley Experimental Forest - A Century of Research 1908-2008, Conference Proceedings = Us For Serv Rmrs-p Fort Valley Experimental Forest - A Century of Research 1908-2008, Conference Proceedings = Us. For. Serv. Rmrs-p. Forty-fifth Annual Meeting of The Industrial Relations Research Association = Ind Rel Res Forty-fifth Annual Meeting of The Industrial Relations Research Association = Ind. Rel. Res. Forum-a Journal of Applied Research in Contemporary Politics = Forum-j Appl Res Con Forum-a Journal of Applied Research in Contemporary Politics = Forum-j. Appl. Res. Con. Forum-american Bar Association = Forum Forum-american Bar Association = Forum. Forum (Chicago, Ill.) = Forum Forum Der Psychoanalyse = Forum Psychoanal Forum Der Psychoanalyse = Forum Psychoanal. Forum for applied research and public policy = Forum Appl Res Public Policy Forum for Development Studies=Forum Devel. Stud. Forum for development studies = Forum Dev Stud Forum for Modern Language Studies = Forum Mod Lang Stud Forum for Modern Language Studies = Forum Mod. Lang. Stud. Forum for Social Economics=Forum Soc. Econ. Forum = Forum Fam Plan West Hemisph Forum = Forum (Genova) Forum = Forum-us Forum = Forum-us. Forum Futures = Jos-bas Hig Forum Futures = Jos-bas. Hig. Forum (Genoa, Italy) = Forum (Genova) Forum-houston = Forum-houston Forum Italicum = Forum Italicum Forum Mathematicum = Forum Math. Forum Mathematicum = Forum Math Forum Mathematicum = Forum Math. Forum Modernes Theater = Forum Mod Theater Forum Modernes Theater = Forum Mod. Theater Forum mondial de la sante = Forum Mond Sante Forum of nutrition = Forum Nutr Forum of Nutrition = Forum Nutr Forum of Nutrition = Forum Nutr. Forum on medicine = Forum Med Forum on Medicine = Forum Med. Forum On Traffic and Transportation 2003 = Vdi Bericht Forum On Traffic and Transportation 2003 = Vdi. Bericht. Forum; revista invatamintului superior = Forum Rev Invat Super Forum. Revue du Groupe d'archéologie antique = Forum Forum Series On Labour in A Chaning World Economy = Forum S Labour Chang Forum Series On Labour in A Chaning World Economy = Forum S. Labour Chang. Forum statisticum / Verband Schweizerischer Statistischer Amter = Forum Stat Forum (Washington, D.C. : 1977) = Forum (Wash) Forward-backward Stochastic Differential Equations and Their Applications = Lect Notes Math Forward-backward Stochastic Differential Equations and Their Applications = Lect. Notes. Math. Forward Studies Series = Forward Stud Ser Forward Studies Series = Forward Stud. Ser. For your information (Institute of Health Record & Information Management) = For Your Inf (Inst Health Rec Inf Manag) Fosiles Y Moleculas: Aproximaciones A La Historia Evolutiva De Homo Sapiens = Mem Real Soc Esp His Fosiles Y Moleculas: Aproximaciones A La Historia Evolutiva De Homo Sapiens = Mem. Real. Soc. Esp. His. Fossil Earthquakes: The Formation and Preservation of Pseudotachylytes = Lect Notes Earth Sci Fossil Earthquakes: The Formation and Preservation of Pseudotachylytes = Lect. Notes. Earth. Sci. Fossil Record = Foss Rec Fossil Record = Foss. Rec. Fossils of The Miocene Castillo Formation, Venezuela: Contributions On Neotropical Palaeontology = Spec Pap Palaeontol Fossils of The Miocene Castillo Formation, Venezuela: Contributions On Neotropical Palaeontology = Spec. Pap. Palaeontol. Fossils of The Miocene Castillo Formation, Venezuela: Contributions On Neotropical Palaeontology = Sp Palaeont Fossils of The Miocene Castillo Formation, Venezuela: Contributions On Neotropical Palaeontology = Sp. Palaeont. Fostering Monetary & Financial Cooperation in East Asia = World Sci Stud Int E Fostering Monetary & Financial Cooperation in East Asia = World. Sci. Stud. Int. E. Fottea = Fottea Fouilles de Conimbriga. Publiées sous la direction de J. Alarcão et R. Etienne = FdC Fouilles de Delphes = FdD Fouilles de l'Institut français d'archéologie orientale du Caire = FIFAO Fouilles de Xanthos = FdX Foundational and Practical Aspects of Resource Analysis = Lect Notes Comput Sc Foundational and Practical Aspects of Resource Analysis = Lect. Notes. Comput. Sc. Foundational Issues in Linguistic Theory: Essays in Honor of Jean-roger Vergnaud = Curr Stud Linguist Foundational Issues in Linguistic Theory: Essays in Honor of Jean-roger Vergnaud = Curr. Stud. Linguist. Foundation News and Commentary = Found. News Comment. Foundation news & commentary = Found News Comment Foundation news = Found News Foundation News = Found. News Foundation of Physics Letters = Found. Phys. Lett. Foundations and Applications of Mis: A Model Theory Approach = Ifsr Int Ser Syst Sc Foundations and Applications of Mis: A Model Theory Approach = Ifsr. Int. Ser. Syst. Sc. Foundations and Applications of Multi-agent Systems = Lect Notes Artif Int Foundations and Applications of Multi-agent Systems = Lect. Notes. Artif. Int. Foundations and Applications of Security Analysis = Lect Notes Comput Sc Foundations and Applications of Security Analysis = Lect. Notes. Comput. Sc. Foundations and Applications of Sensor Management = Signals Commun Techn Foundations and Applications of Sensor Management = Signals. Commun. Techn. Foundations and Frontiers = P Corp Aviat Saf Sem Foundations and Frontiers = P. Corp. Aviat. Saf. Sem. Foundations and Futures of Education = Found Futures Educ Foundations and Futures of Education = Found. Futures Educ. Foundations and Novel Approaches in Data Mining = Stud Comp Intell Foundations and Novel Approaches in Data Mining = Stud. Comp. Intell. Foundations and Novel Approaches in Data Mining = Stud Comput Intell Foundations and Novel Approaches in Data Mining = Stud. Comput. Intell. Foundations and Tools for Neural Modeling, Proceedings, Vol I = Lect Notes Comput Sc Foundations and Tools for Neural Modeling, Proceedings, Vol I = Lect. Notes. Comput. Sc. Foundations for The Family = Fdn Family Foundations for The Family = Fdn. Family Foundations = Foundations Foundations in Grammatical Evolution for Dynamic Environments = Stud Comput Intell Foundations in Grammatical Evolution for Dynamic Environments = Stud. Comput. Intell. Foundations in Library and Information Science = Found Lib Foundations in Library and Information Science = Found. Lib. Foundations in Signal Processing Communications and Networking = Found Signal Process Foundations in Signal Processing Communications and Networking = Found. Signal Process. Foundations of Augmented Cognition, Proceedings = Lect Notes Artif Int Foundations of Augmented Cognition, Proceedings = Lect. Notes. Artif. Int. Foundations of Chemistry = Found. Chem. Foundations of Communication and Cognition = Found. Comm. Cogn. Foundations of Communication = Found Comm Foundations of Communication = Found. Comm. Foundations of Computational Intelligence, Vol 3 = Stud Comput Intell Foundations of Computational Intelligence, Vol 3 = Stud. Comput. Intell. Foundations of Computational Intelligence, Vol 4 = Stud Comput Intell Foundations of Computational Intelligence, Vol 4 = Stud. Comput. Intell. Foundations of Computational Intelligence, Vol 5: Function Approximation and Classification = Stud Comput Intell Foundations of Computational Intelligence, Vol 5: Function Approximation and Classification = Stud. Comput. Intell. Foundations of Computational Intelligence, Vol 6 = Stud Comput Intell Foundations of Computational Intelligence, Vol 6 = Stud. Comput. Intell. Foundations of Computational Intelligence Volume 1: Learning Approximation = Stud Comput Intell Foundations of Computational Intelligence Volume 1: Learning Approximation = Stud. Comput. Intell. Foundations of Computational Intelligence Volume 2: Approximate Reasoning = Stud Comput Intell Foundations of Computational Intelligence Volume 2: Approximate Reasoning = Stud. Comput. Intell. Foundations of Computational Mathematics = Found Comput Math Foundations of Computational Mathematics = Found. Comput. Math. Foundations of Computational Mathematics = Lond Math S Foundations of Computational Mathematics = Lond. Math. S. Foundations of Computer Software: Future Trends and Techniques for Development = Lect Notes Comput Sc Foundations of Computer Software: Future Trends and Techniques for Development = Lect. Notes. Comput. Sc. Foundations of Computing Series = Found. Comput. Ser. Foundations of Data Mining and Knowledge Discovery = Stud Comp Intell Foundations of Data Mining and Knowledge Discovery = Stud. Comp. Intell. Foundations of Data Mining and Knowledge Discovery = Stud Comput Intell Foundations of Data Mining and Knowledge Discovery = Stud. Comput. Intell. Foundations of Engineering Mechanics = Found. Eng. Mech. Foundations of Engineering Mechanics = Found Eng Mech Foundations of Engineering Mechanics = Found. Eng. Mech. Foundations of Europe: European Integration Ideas in France, Germany and Britain in The 1950s = Forsch Eur Integr Foundations of Europe: European Integration Ideas in France, Germany and Britain in The 1950s = Forsch. Eur. Integr. Foundations of Fuzzy Logic and Soft Computing, Proceedings = Lect Notes Comput Sc Foundations of Fuzzy Logic and Soft Computing, Proceedings = Lect. Notes. Comput. Sc. Foundations of Generic Optimization, Vol 2 = Math Model-theor App Foundations of Generic Optimization, Vol 2 = Math. Model-theor. App. Foundations of Genetic Algorithms = Lect Notes Comput Sc Foundations of Genetic Algorithms = Lect. Notes. Comput. Sc. Foundations of Global Genetic Optimization = Stud Comput Intell Foundations of Global Genetic Optimization = Stud. Comput. Intell. Foundations of Information and Knowledge Systems = Lect Notes Comput Sc Foundations of Information and Knowledge Systems = Lect. Notes. Comput. Sc. Foundations of Information and Knowledge Systems, Proceedings = Lect Notes Comput Sc Foundations of Information and Knowledge Systems, Proceedings = Lect. Notes. Comput. Sc. Foundations of Information Technology in The Era of Network and Mobile Computing = Int Fed Info Proc Foundations of Information Technology in The Era of Network and Mobile Computing = Int. Fed. Info. Proc. Foundations of Intelligent Systems = Lect Notes Artif Int Foundations of Intelligent Systems = Lect. Notes. Artif. Int. Foundations of Intelligent Systems, Proceedings = Lect Notes Artif Int Foundations of Intelligent Systems, Proceedings = Lect. Notes. Artif. Int. Foundations of Intelligent Systems, Proceedings = Lect Notes Comput Sc Foundations of Intelligent Systems, Proceedings = Lect. Notes. Comput. Sc. Foundations of Language = Found Lang Foundations of Language = Found. Lang. Foundations of Location Analysis = Int Ser Oper Res Man Foundations of Location Analysis = Int. Ser. Oper. Res. Man. Foundations of Molecular Modeling and Simulation = Aiche Sym S Foundations of Molecular Modeling and Simulation = Aiche. Sym. S. Foundations of Non-equilibrium Economics: The Principle of Circular and Cumulative Causation = Routl Adv Heterod Ec Foundations of Non-equilibrium Economics: The Principle of Circular and Cumulative Causation = Routl. Adv. Heterod. Ec. Foundations of Object-oriented Languages = Lect Notes Comput Sc Foundations of Object-oriented Languages = Lect. Notes. Comput. Sc. Foundations of Optimization = Grad Texts Math Foundations of Optimization = Grad. Texts. Math. Foundations of Paul Samuelsons Revealed Preference Theory = Routl Inem Adv Econ Foundations of Paul Samuelsons Revealed Preference Theory = Routl. Inem. Adv. Econ. Foundations of Personality = Nato Adv Sci Inst Se Foundations of Personality = Nato. Adv. Sci. Inst. Se. Foundations of Physics = Found. Phys. Foundations of Physics = Found Phys Foundations of Physics = Found. Phys. Foundations of Physics Letters = Found. Phys. Lett. Foundations of Physics Letters = Found Phys Lett Foundations of Physics Letters = Found. Phys. Lett. Foundations of Power and Conflicts of Authority in Late-antique Monasticism = Orient Lovan Anal Foundations of Power and Conflicts of Authority in Late-antique Monasticism = Orient. Lovan. Anal. Foundations of Probability and Physics - 3 = Aip Conf Proc Foundations of Probability and Physics - 3 = Aip. Conf. Proc. Foundations of Probability and Physics - 4 = Aip Conf Proc Foundations of Probability and Physics - 4 = Aip. Conf. Proc. Foundations of Probability and Physics - 5 = Aip Conf Proc Foundations of Probability and Physics - 5 = Aip. Conf. Proc. Foundations of Quantization for Probability Distributions = Lect Notes Math Foundations of Quantization for Probability Distributions = Lect. Notes. Math. Foundations of Quantum Chromodynamics, Third Edition = World Sci Lec No Phy Foundations of Quantum Chromodynamics, Third Edition = World. Sci. Lec. No. Phy. Foundations of Quantum Mechanics - Historical Analysis and Open Questions = Fund Theor Foundations of Quantum Mechanics - Historical Analysis and Open Questions = Fund. Theor. Foundations of Quantum Mechanics in The Light of New Technology = Jjap Series Foundations of Quantum Mechanics in The Light of New Technology = Jjap. Series. Foundations of Real-time Computing : Formal Specifications and Methods = Kluw Real T Foundations of Real-time Computing : Formal Specifications and Methods = Kluw. Real. T. Foundations of Real-time Computing : Scheduling and Resource Management = Kluw Real T Foundations of Real-time Computing : Scheduling and Resource Management = Kluw. Real. T. Foundations of Reasoning Under Uncertainty = Stud Fuzz Soft Comp Foundations of Reasoning Under Uncertainty = Stud. Fuzz. Soft. Comp. Foundations of Science = Found Sci Foundations of Science = Found. Sci. Foundations of Secure Computation = Nato Adv Sci I F-com Foundations of Secure Computation = Nato. Adv. Sci. I. F-com. Foundations of Security Analysis and Design Iii = Lect Notes Comput Sc Foundations of Security Analysis and Design Iii = Lect. Notes. Comput. Sc. Foundations of Security Analysis and Design Ii = Lect Notes Artif Int Foundations of Security Analysis and Design Ii = Lect. Notes. Artif. Int. Foundations of Security Analysis and Design V = Lect Notes Comput Sc Foundations of Security Analysis and Design V = Lect. Notes. Comput. Sc. Foundations of Small Business Enterprise: An Entrepreneurial Analysis of Small Firm Inception and Growth = Routl Stud Small Bus Foundations of Small Business Enterprise: An Entrepreneurial Analysis of Small Firm Inception and Growth = Routl. Stud. Small Bus. Foundations of Software Science and Computational Structures, Proceedings = Lect Notes Comput Sc Foundations of Software Science and Computational Structures, Proceedings = Lect. Notes. Comput. Sc. Foundations of Software Science and Computation Structures = Lect Notes Comput Sc Foundations of Software Science and Computation Structures = Lect. Notes. Comput. Sc. Foundations of Software Science and Computation Structures, Proceedings = Lect Notes Comput Sc Foundations of Software Science and Computation Structures, Proceedings = Lect. Notes. Comput. Sc. Foundations of Software Technology and Theoretical Computer Science = Lect Notes Comput Sc Foundations of Software Technology and Theoretical Computer Science = Lect. Notes. Comput. Sc. Foundations of Software Technology and Theoretical Computer Science / = Lect Notes Comput Sc Foundations of Software Technology and Theoretical Computer Science / = Lect. Notes. Comput. Sc. Foundations of Software Technology and Theoretical Computer Science //// = Lect Notes Comput Sc Foundations of Software Technology and Theoretical Computer Science //// = Lect. Notes. Comput. Sc. Foundations of Software Technology and Theoretical Computer Science ///// = Lect Notes Comput Sc Foundations of Software Technology and Theoretical Computer Science ///// = Lect. Notes. Comput. Sc. Foundations of Statistical Inference = Contr Stat Foundations of Statistical Inference = Contr. Stat. Foundations of The Market Economy = Found Mark Econ Foundations of The Market Economy = Found. Mark. Econ. Foundation Upgrading and Repair for Infrastructure Improvement = Geotech Sp Foundation Upgrading and Repair for Infrastructure Improvement = Geotech. Sp. Founders of Western Thought - The Presocratics = Bost Stud Philos Sci Founders of Western Thought - The Presocratics = Bost. Stud. Philos. Sci. Founders Series = Founders Ser Founders Series = Founders Ser. Founding The Fathers: Early Church History and Protestant Professors in Nineteenth- Century America = Divin Reread Late An Founding The Fathers: Early Church History and Protestant Professors in Nineteenth- Century America = Divin. Reread. Late. An. Four Centuries of Geological Travel: The Search for Knowledge On Foot, Bicycle, Sledge and Camel = Geol Soc Spec Publ Four Centuries of Geological Travel: The Search for Knowledge On Foot, Bicycle, Sledge and Camel = Geol. Soc. Spec. Publ. Four Decades of Poetry 1890-1930 = Four Decades Poetry Fourier Analysis and Nonlinear Partial Differential Equations = Grundlehr Math Wiss Fourier Analysis and Nonlinear Partial Differential Equations = Grundlehr. Math. Wiss. Fourier Analysis and Partial Differential Equations = St Adv Math Fourier Analysis and Partial Differential Equations = St. Adv. Math. Fourier Analysis = Lect Notes Pure Appl Fourier Analysis = Lect. Notes. Pure. Appl. Fourier Analysis On Finite Abelian Groups = Appl Numer Harmon An Fourier Analysis On Finite Abelian Groups = Appl. Numer. Harmon. An. Fourier Integral Operators = Mod Birkhauser Class Fourier Integral Operators = Mod. Birkhauser. Class. Fourier-mukai and Nahm Transforms in Geometry and Mathematical Physics = Prog Math Fourier-mukai and Nahm Transforms in Geometry and Mathematical Physics = Prog. Math. Fourier Transform Infrared Spectroscopy in Colloid and Interface Science = Acs Sym Ser Fourier Transform Infrared Spectroscopy in Colloid and Interface Science = Acs. Sym. Ser. Fourier Transforms of Invariant Functions On Finite Reductive Lie Algebras = Lect Notes Math Fourier Transforms of Invariant Functions On Finite Reductive Lie Algebras = Lect. Notes. Math. Fourier Transform Spectroscopy = Aip Conf Proc Fourier Transform Spectroscopy = Aip. Conf. Proc. Fourier Transform Spectroscopy, Technical Digest = Osa Trends Opt Photo Fourier Transform Spectroscopy, Technical Digest = Osa. Trends. Opt. Photo. Four Quarters = Four Quarters Fourrages = Fourrages Fourteenth Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput Fourteenth Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. Fourteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Fourteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Fourteenth Biennial University/government/industry Microelectronics Symposium, Proceedings = P Univ Govt Ind Micr Fourteenth Biennial University/government/industry Microelectronics Symposium, Proceedings = P. Univ. Govt. Ind. Micr. Fourteenth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy Fourteenth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. Fourteenth International Conference On Numerical Methods in Fluid Dynamics = Lect Notes Phys Fourteenth International Conference On Numerical Methods in Fluid Dynamics = Lect. Notes. Phys. Fourteenth International Conference On Pattern Recognition, Vols 1 and 2 = Int C Patt Recog Fourteenth International Conference On Pattern Recognition, Vols 1 and 2 = Int. C. Patt. Recog. Fourteenth International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = Proc Spie Fourteenth International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = Proc. Spie. Fourteenth International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = P Soc Photo-opt Ins Fourteenth International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = P. Soc. Photo-opt. Ins. Fourteenth Texas Symposium On Relativistic Astrophysics = Ann Ny Acad Sci Fourteenth Texas Symposium On Relativistic Astrophysics = Ann. Ny. Acad. Sci. Fourth All-russian Seminar On Problems of Theoretical and Applied Electron Optics = P Soc Photo-opt Ins Fourth All-russian Seminar On Problems of Theoretical and Applied Electron Optics = P. Soc. Photo-opt. Ins. Fourth Annual Workshop On Space Operations Applications and Research ( Soar 90 ), Vol 1 = Nasa Conf P Fourth Annual Workshop On Space Operations Applications and Research ( Soar 90 ), Vol 1 = Nasa. Conf. P. Fourth Annual Workshop On Space Operations Applications and Research ( Soar 90 ), Vol 2 = Nasa Conf P Fourth Annual Workshop On Space Operations Applications and Research ( Soar 90 ), Vol 2 = Nasa. Conf. P. Fourth Conference in Optics, Romopto '94 = P Soc Photo-opt Ins Fourth Conference in Optics, Romopto '94 = P. Soc. Photo-opt. Ins. Fourth European Conference On Artificial Life = From Anim Animat Fourth European Conference On Artificial Life = From. Anim. Animat. Fourth European Conference On Radio Relay Systems = Iee Conf Publ Fourth European Conference On Radio Relay Systems = Iee. Conf. Publ. Fourth European Space Mechanisms and Tribology Symposium = Esa Sp Publ Fourth European Space Mechanisms and Tribology Symposium = Esa. Sp. Publ. Fourth European Symposium On Computer Aided Process Engineering - Escape 4 = Inst Chem E Fourth European Symposium On Computer Aided Process Engineering - Escape 4 = Inst. Chem. E. Fourth European Workshop On Optical Fibre Sensors = Proc Spie Fourth European Workshop On Optical Fibre Sensors = Proc. Spie. Fourth European Workshop On Optical Fibre Sensors = P Soc Photo-opt Ins Fourth European Workshop On Optical Fibre Sensors = P. Soc. Photo-opt. Ins. Fourth Family of Quarks and Leptons / = Ann Ny Acad Sci Fourth Family of Quarks and Leptons / = Ann. Ny. Acad. Sci. Fourth Generation X-ray Sources and Optics Ii = P Soc Photo-opt Ins Fourth Generation X-ray Sources and Optics Ii = P. Soc. Photo-opt. Ins. Fourth-generation X-ray Sources and Ultrafast X-ray Detectors = P Soc Photo-opt Ins Fourth-generation X-ray Sources and Ultrafast X-ray Detectors = P. Soc. Photo-opt. Ins. Fourth Granada Lectures in Computational Physics = Lect Notes Phys Fourth Granada Lectures in Computational Physics = Lect. Notes. Phys. Fourth Iee Conference On Telecommunications = Iee Conf Publ Fourth Iee Conference On Telecommunications = Iee Conf. Publ. Fourth Ieee International Conference On Engineering of Complex Computer Systems - Proceedings = Ieee Int C Eng Comp Fourth Ieee International Conference On Engineering of Complex Computer Systems - Proceedings = Ieee Int. C. Eng. Comp. Fourth Ieee International Symposium and Forum On Software Engineering Standards - Proceedings = Proc Ieee Softw Engn Fourth Ieee International Symposium and Forum On Software Engineering Standards - Proceedings = Proc. Ieee Softw. Engn. Fourth Ifip International Conference On Theoretical Computer Science - Tcs 2006 = Int Fed Info Proc Fourth Ifip International Conference On Theoretical Computer Science - Tcs 2006 = Int. Fed. Info. Proc. Fourth International Conference On Computer-aided Design and Computer Graphics = P Soc Photo-opt Ins Fourth International Conference On Computer-aided Design and Computer Graphics = P. Soc. Photo-opt. Ins. Fourth International Conference On Correlation Optics = Proc Spie Fourth International Conference On Correlation Optics = Proc. Spie. Fourth International Conference On Correlation Optics = P Soc Photo-opt Ins Fourth International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. Fourth International Conference On Electrical Machines and Drives = Iee Conf Publ Fourth International Conference On Electrical Machines and Drives = Iee. Conf. Publ. Fourth International Conference On Experimental Mechanics = Proc Spie Fourth International Conference On Experimental Mechanics = Proc. Spie. Fourth International Conference On Experimental Mechanics = P Soc Photo-opt Ins Fourth International Conference On Experimental Mechanics = P. Soc. Photo-opt. Ins. Fourth International Conference On Factory 2000 - Advanced Factory Automation = Iee Conf Publ Fourth International Conference On Factory 2000 - Advanced Factory Automation = Iee. Conf. Publ. Fourth International Conference On Ground Penetrating Radar, June 8-13, 1992, Rovaniemi = Geol S Finl Fourth International Conference On Ground Penetrating Radar, June 8-13, 1992, Rovaniemi = Geol. S. Finl. Fourth International Conference On Holographic Systems, Components and Applications = Iee Conf Publ Fourth International Conference On Holographic Systems, Components and Applications = Iee. Conf. Publ. Fourth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P Soc Photo-opt Ins Fourth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P. Soc. Photo-opt. Ins. Fourth International Conference On Minority Languages, Vol Ii : Western and Eastern European Papers = Multiling Fourth International Conference On Minority Languages, Vol Ii : Western and Eastern European Papers = Multiling. Fourth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = Proc Spie Fourth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = Proc. Spie. Fourth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = P Soc Photo-opt Ins Fourth International Conference On Photonics and Imaging in Biology and Medicine, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Fourth International Conference On Physics of Light-matter Coupling in Nanostructures (plmcn4) = Phys Status Solidi C Fourth International Conference On Physics of Light-matter Coupling in Nanostructures (plmcn4) = Phys. Status. Solidi. C. Fourth International Conference On Power Electronics and Variable-speed Drives = Iee Conf Publ Fourth International Conference On Power Electronics and Variable-speed Drives = Iee. Conf. Publ. Fourth International Conference On Solid State Lighting = Proc Spie Fourth International Conference On Solid State Lighting = Proc. Spie. Fourth International Conference On Solid State Lighting = P Soc Photo-opt Ins Fourth International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Fourth International Conference On Television Measurements = Iee Conf Publ Fourth International Conference On Television Measurements = Iee. Conf. Publ. Fourth International Conference On The Quantitative Evaluation of Systems = Int Conf Quant Eval Fourth International Conference On The Quantitative Evaluation of Systems = Int. Conf. Quant. Eval. Fourth International Conference On Thin Film Physics and Applications = Proc Spie Fourth International Conference On Thin Film Physics and Applications = Proc. Spie. Fourth International Conference On Thin Film Physics and Applications = P Soc Photo-opt Ins Fourth International Conference On Thin Film Physics and Applications = P. Soc. Photo-opt. Ins. Fourth International Conference On Trends in Distribution Switchgear = Iee Conf Publ Fourth International Conference On Trends in Distribution Switchgear = Iee. Conf. Publ. Fourth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Fourth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Fourth International Conference On Virtual Reality and Its Applications in Industry = Proc Spie Fourth International Conference On Virtual Reality and Its Applications in Industry = Proc. Spie. Fourth International Conference On Virtual Reality and Its Applications in Industry = P Soc Photo-opt Ins Fourth International Conference On Virtual Reality and Its Applications in Industry = P. Soc. Photo-opt. Ins. Fourth International Mango Symposium = Acta Hortic Fourth International Mango Symposium = Acta. Hortic. Fourth International Mining Geology Conference = Australas I Min Met Fourth International Mining Geology Conference = Australas. I. Min. Met. Fourth International Peach Symposium, Vols 1-2 = Acta Hortic Fourth International Peach Symposium, Vols 1-2 = Acta. Hortic. Fourth International Protea Working Group Symposium = Acta Hortic Fourth International Protea Working Group Symposium = Acta. Hortic. Fourth International Seminar On Modern Cutting and Measurement Engineering = P Soc Photo-opt Ins Fourth International Seminar On Modern Cutting and Measurement Engineering = P. Soc. Photo-opt. Ins. Fourth International Symposium On Atomic Technology = J Phys Conf Ser Fourth International Symposium On Atomic Technology = J. Phys. Conf. Ser. Fourth International Symposium On Co2 in Protected Cultivation = Acta Hortic Fourth International Symposium On Co2 in Protected Cultivation = Acta. Hortic. Fourth International Symposium On Hazelnut = Acta Hortic Fourth International Symposium On Hazelnut = Acta. Hortic. Fourth International Symposium On Kiwifruit, Proceedings = Acta Hortic Fourth International Symposium On Kiwifruit, Proceedings = Acta. Hortic. Fourth International Symposium On Laser Precision Microfabrication = Proc Spie Fourth International Symposium On Laser Precision Microfabrication = Proc. Spie. Fourth International Symposium On Laser Precision Microfabrication = P Soc Photo-opt Ins Fourth International Symposium On Laser Precision Microfabrication = P. Soc. Photo-opt. Ins. Fourth International Symposium On Long-range Sound Propagation = Nasa Conf P Fourth International Symposium On Long-range Sound Propagation = Nasa. Conf. P. Fourth International Symposium On Optical Storage (isos '96) = P Soc Photo-opt Ins Fourth International Symposium On Optical Storage (isos '96) = P. Soc. Photo-opt. Ins. Fourth International Symposium On Replant Problems = Acta Hortic Fourth International Symposium On Replant Problems = Acta. Hortic. Fourth International Symposium On Sodium Valproate and Epilepsy = Roy Soc Med Int Cong Fourth International Symposium On Sodium Valproate and Epilepsy = Roy. Soc. Med. Int. Cong. Fourth International Symposium On Taxonomy of Cultivated Plants = Acta Hortic Fourth International Symposium On Taxonomy of Cultivated Plants = Acta. Hortic. Fourth International Workshop Dice 2008: From Quantum Mechanics Through Complexity to Spacetime: The Role of Emergent Dynamical Structures = J Phys Conf Ser Fourth International Workshop Dice 2008: From Quantum Mechanics Through Complexity to Spacetime: The Role of Emergent Dynamical Structures = J. Phys. Conf. Ser. Fourth International Workshop On Iodine Lasers and Applications = P Soc Photo-opt Ins Fourth International Workshop On Iodine Lasers and Applications = P. Soc. Photo-opt. Ins. Fourth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Fourth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Fourth Oxford Conference On Spectroscopy = Proc Spie Fourth Oxford Conference On Spectroscopy = Proc. Spie. Fourth Oxford Conference On Spectroscopy = P Soc Photo-opt Ins Fourth Oxford Conference On Spectroscopy = P. Soc. Photo-opt. Ins. Fourth Pacific Northwest Fiber Optic Sensor Workshop = P Soc Photo-opt Ins Fourth Pacific Northwest Fiber Optic Sensor Workshop = P. Soc. Photo-opt. Ins. Fourth Summer School in Analysis and Mathematical Physics: Topic in Spectral Theory and Quantum Mechanics = Contemp Math Fourth Summer School in Analysis and Mathematical Physics: Topic in Spectral Theory and Quantum Mechanics = Contemp. Math. Fourth Symposium On Large Tpcs for Low Energy Rare Event Detection = J Phys Conf Ser Fourth Symposium On Large Tpcs for Low Energy Rare Event Detection = J. Phys. Conf. Ser. Fpl: 2009 International Conference On Field Programmable Logic and Applications = Int Con Field Prog Fpl: 2009 International Conference On Field Programmable Logic and Applications = Int. Con. Field Prog. Fpop Bulletin = Fpop Bull FPRC [reports]. Great Britain. Flying Personnel Research Committee = Fprc Fracastoro = Fracastoro Fractal Analysis for Natural Hazards = Geol Soc Spec Publ Fractal Analysis for Natural Hazards = Geol. Soc. Spec. Publ. Fractal Aspects of Materials = Mater Res Soc Symp P Fractal Aspects of Materials = Mater. Res. Soc. Symp. P. Fractal Geometry and Applications: A Jubilee of Benoit Mandelbrot - Analysis, Number Theory, and Dynamical Systems, Pt 1 = P Symp Pure Math Fractal Geometry and Applications: A Jubilee of Benoit Mandelbrot - Analysis, Number Theory, and Dynamical Systems, Pt 1 = P. Symp. Pure. Math. Fractal Geometry and Applications: A Jubilee of Benoit Mandelbrot - Multifractals, Probability and Statistical Mechanics, Applications, Pt 2 = P Symp Pure Math Fractal Geometry and Applications: A Jubilee of Benoit Mandelbrot - Multifractals, Probability and Statistical Mechanics, Applications, Pt 2 = P. Symp. Pure. Math. Fractal Geometry and Stochastics Iii = Prog Probab Fractal Geometry and Stochastics Iii = Prog. Probab. Fractal Geometry and Stochastics Ii = Prog Probab Fractal Geometry and Stochastics Ii = Prog. Probab. Fractal Geometry and Stochastics Iv = Prog Probab Fractal Geometry and Stochastics Iv = Prog. Probab. Fractal Geometry and Stochastics = Prog Probab Fractal Geometry and Stochastics = Prog. Probab. Fractals and Universal Spaces in Dimension Theory = Springer Monogr Math Fractals and Universal Spaces in Dimension Theory = Springer. Monogr. Math. Fractals-an Interdisciplinary Journal On The Complex Geometry of Nature = Fractals Fractals-an Interdisciplinary Journal On The Complex Geometry of Nature = Fractals. Fractals-complex Geometry Patterns and Scaling in Nature and Society = Fractals Fractals-complex Geometry Patterns and Scaling in Nature and Society = Fractals. Fractals, Diffusion, and Relaxation in Disordered Complex Systems, Part A = Adv Chem Phys Fractals, Diffusion, and Relaxation in Disordered Complex Systems, Part A = Adv. Chem. Phys. Fractals, Diffusion, and Relaxation in Disordered Complex Systems, Part B = Adv Chem Phys Fractals, Diffusion, and Relaxation in Disordered Complex Systems, Part B = Adv. Chem. Phys. Fractals = Fractals Fractals = Fractals Fractals in Biology and Medicine, Vol Iii = Math Biosci Interac Fractals in Biology and Medicine, Vol Iii = Math. Biosci. Interac. Fractals in Biology and Medicine, Vol Iv = Math Biosci Interac Fractals in Biology and Medicine, Vol Iv = Math. Biosci. Interac. Fractals in Biology and Medicine, Vol Iv = Math Biosci Interact Fractals in Biology and Medicine, Vol Iv = Math. Biosci. Interact. Fractals in Graz 2001: Analysis - Dynamics - Geometry - Stochastics = Trends Math Fractals in Graz 2001: Analysis - Dynamics - Geometry - Stochastics = Trends. Math. Fractals in Multimedia = Ima V Math Fractals in Multimedia = Ima. V. Math. Fractals in The Natural and Applied Sciences = Ifip Trans A Fractals in The Natural and Applied Sciences = Ifip. Trans. A. Fractals Physical Origin and Properties = E Maj Int S Fractals Physical Origin and Properties = E. Maj. Int. S. Fractional Dynamics: Applications of Fractional Calculus to Dynamics of Particles, Fields and Media = Nonlinear Phys Sci Fractional Dynamics: Applications of Fractional Calculus to Dynamics of Particles, Fields and Media = Nonlinear. Phys. Sci. Fractional-order Nonlinear Systems: Modeling, Analysis and Simulation = Nonlinear Phys Sci Fractional-order Nonlinear Systems: Modeling, Analysis and Simulation = Nonlinear Phys. Sci. Fractional-order Systems and Control: Fundamentals and Applications = Adv Ind Control Fractional-order Systems and Control: Fundamentals and Applications = Adv. Ind. Control. Fractography of Advanced Ceramics Iii = Key Eng Mat Fractography of Advanced Ceramics Iii = Key. Eng. Mat. Fractography of Advanced Ceramics Iii = Key Eng Mater Fractography of Advanced Ceramics Iii = Key. Eng. Mater. Fractography of Advanced Ceramics Ii = Key Eng Mat Fractography of Advanced Ceramics Ii = Key. Eng. Mat. Fractography of Advanced Ceramics Ii = Key Eng Mater Fractography of Advanced Ceramics Ii = Key. Eng. Mater. Fractography of Advanced Ceramics = Key Eng Mat Fractography of Advanced Ceramics = Key. Eng. Mat. Fractography of Advanced Ceramics = Key Eng Mater Fractography of Advanced Ceramics = Key. Eng. Mater. Fractography of Glasses and Ceramics V = Ceram Trans Fractography of Glasses and Ceramics V = Ceram. Trans. Fractography of Modern Engineering Materials: Composites and Metals, 2nd Vol = Am Soc Test Mater Fractography of Modern Engineering Materials: Composites and Metals, 2nd Vol = Am. Soc. Test. Mater. Fracture and Damage Mechanics V, Pts 1 and 2 = Key Eng Mat Fracture and Damage Mechanics V, Pts 1 and 2 = Key. Eng. Mat. Fracture and Damage Mechanics V, Pts 1 and 2 = Key Eng Mater Fracture and Damage Mechanics V, Pts 1 and 2 = Key. Eng. Mater. Fracture and Ductile Vs. Brittle Behavior-theory, Modelling and Experiment = Mater Res Soc Symp P Fracture and Ductile Vs. Brittle Behavior-theory, Modelling and Experiment = Mater. Res. Soc. Symp. P. Fracture and In-situ Stress Characterization of Hydrocarbon Reservoirs = Geol Soc Spec Publ Fracture and In-situ Stress Characterization of Hydrocarbon Reservoirs = Geol. Soc. Spec. Publ. Fracture and Strength 90 = Key Eng Mat Fracture and Strength 90 = Key. Eng. Mat. Fracture and Strength of Solids, Pts 1 and 2 = Key Eng Mat Fracture and Strength of Solids, Pts 1 and 2 = Key. Eng. Mat. Fracture and Strength of Solids, Pts 1 and 2 = Key Eng Mater Fracture and Strength of Solids, Pts 1 and 2 = Key. Eng. Mater. Fracture and Strength of Solids Vii, Pts 1 and 2 = Key Eng Mater Fracture and Strength of Solids Vii, Pts 1 and 2 = Key. Eng. Mater. Fracture and Strength of Solids Vi, Pts 1 and 2 = Key Eng Mat Fracture and Strength of Solids Vi, Pts 1 and 2 = Key. Eng. Mat. Fracture and Strength of Solids Vi, Pts 1 and 2 = Key Eng Mater Fracture and Strength of Solids Vi, Pts 1 and 2 = Key. Eng. Mater. Fractured Reservoirs = Geol Soc Spec Publ Fractured Reservoirs = Geol. Soc. Spec. Publ. Fracture-instability Dynamics, Scaling, and Ductile/brittle Behavior = Mater Res Soc Symp P Fracture-instability Dynamics, Scaling, and Ductile/brittle Behavior = Mater. Res. Soc. Symp. P. Fracture Mechanics: 25th Volume = Am Soc Test Mater Fracture Mechanics: 25th Volume = Am. Soc. Test. Mater. Fracture Mechanics = Key Eng Mater Fracture Mechanics = Key. Eng. Mater. Fracture Mechanics of Ceramics = Fract Mech Fracture Mechanics of Ceramics = Fract. Mech. Fracture Mechanics of Ceramics, Vol 10 = Fract Mech Fracture Mechanics of Ceramics, Vol 10 = Fract. Mech. Fracture Mechanics of Ceramics, Vol 11 = Fract Mech Fracture Mechanics of Ceramics, Vol 11 = Fract. Mech. Fracture Mechanics of Ceramics, Vol 9 = Fract Mech Fracture Mechanics of Ceramics, Vol 9 = Fract. Mech. Fracture Mechanics of Concrete and Concrete Structures, Vols 1-3 = Proc Monogr Eng Wate Fracture Mechanics of Concrete and Concrete Structures, Vols 1-3 = Proc. Monogr. Eng. Wate. Fracture Mechanics Symposium = Fracture Mech Symp Fracture Mechanics Symposium = Fracture Mech. Symp. Fracture Mechanics: Twenty-fourth Volume = Am Soc Test Mater Fracture Mechanics: Twenty-fourth Volume = Am. Soc. Test. Mater. Fracture Mechanics: With An Introduction to Micromechancis, Second Edition = Mech Eng Ser Fracture Mechanics: With An Introduction to Micromechancis, Second Edition = Mech. Eng. Ser. Fracture of Composites = Key Eng Mat Fracture of Composites = Key. Eng. Mat. Fracture of Composites = Key Eng Mater Fracture of Composites = Key. Eng. Mater. Fracture of Materials: Moving Forwards = Key Eng Mat Fracture of Materials: Moving Forwards = Key. Eng. Mat. Fracture of Materials: Moving Forwards = Key Eng Mater Fracture of Materials: Moving Forwards = Key. Eng. Mater. Fracture of Polymers, Composites and Adhesives Ii = Esis Publ Fracture of Polymers, Composites and Adhesives Ii = Esis. Publ. Fracture Processes in Concrete, Rock and Ceramics, Vols 1 and 2 = Rilem Proc Fracture Processes in Concrete, Rock and Ceramics, Vols 1 and 2 = Rilem. Proc. Fracture Resistance Testing of Monolithic and Composite Brittle Materials = Am Soc Test Mater Fracture Resistance Testing of Monolithic and Composite Brittle Materials = Am. Soc. Test. Mater. Fractures in The Elderly: A Guide to Practical Management = Aging Med Fractures in The Elderly: A Guide to Practical Management = Aging. Med. Fragile X / Cancer Cytogenetics = Prog Clin Biol Res Fragile X / Cancer Cytogenetics = Prog. Clin. Biol. Res. Fragipans : Their Occurence, Classification, and Genesis = Sssa Spec Publ Fragipans : Their Occurence, Classification, and Genesis = Sssa. Spec. Publ. Fragmenta historicorum Graecorum = FHG Fragment-based Drug Design: Tools, Practical Approaches, and Examples = Method Enzymol Fragment-based Drug Design: Tools, Practical Approaches, and Examples = Method. Enzymol. Fragrance Journal = Fragance J. Frailty Model = Stat Biol Health Frailty Model = Stat. Biol. Health. Frames and Bases: An Introductory Course = Appl Numer Harmon An Frames and Bases: An Introductory Course = Appl. Numer. Harmon. An Frames and Operator Theory in Analysis and Signal Processing = Contemp Math Frames and Operator Theory in Analysis and Signal Processing = Contemp. Math. Frames Und Sprachliches Wissen: Kognitive Aspekte Der Semantischen Kompetenz = Sprache Wissen Frames Und Sprachliches Wissen: Kognitive Aspekte Der Semantischen Kompetenz = Sprache. Wissen. Framework for Monetary Stability = Finan Mon P Framework for Monetary Stability = Finan. Mon. P. Framing Discourse On The Environment: A Critical Discourse Approach = Routl Crit Stud Disc Framing Discourse On The Environment: A Critical Discourse Approach = Routl. Crit. Stud. Disc. Framing Research On Technology and Student Learning in The Content Areas: Implications for Educators = Res Methods Educ Tec Framing Research On Technology and Student Learning in The Content Areas: Implications for Educators = Res. Methods. Educ. Tec. Framing The Global Economic Downturn: Crisis Rhetoric and The Politics of Recessions = Anzsog Monogr Framing The Global Economic Downturn: Crisis Rhetoric and The Politics of Recessions = Anzsog. Monogr. Francais Juifs 1914-1950: Recit D' Un Desenchantement = Tempus Ser Francais Juifs 1914-1950: Recit D' Un Desenchantement = Tempus. Ser. Francais Moderne = Francais Modern Francais Moderne = Francais Modern. France/china: Intercultural Imaginings = Res Monogr Fr Stud France/china: Intercultural Imaginings = Res. Monogr. Fr. Stud. France Medecine = Fr Med France On The World Stage: Nation State Strategies in The Global Era = Fr Plit Soc Cult France On The World Stage: Nation State Strategies in The Global Era = Fr. Plit. Soc. Cult. France On The World Stage: Nation State Strategies in The Global Era = Fr Polit Soc Cult France On The World Stage: Nation State Strategies in The Global Era = Fr. Polit. Soc. Cult. Franchising in European Contract Law: A Comparison Between The Main Obligations of The Contracting Parties in The Principles of European Law On Commercial Agency, Franchise and Distribution Contracts (pel Cafdc), French and Spanish Law = Schr Eur Rechtswiss Franchising in European Contract Law: A Comparison Between The Main Obligations of The Contracting Parties in The Principles of European Law On Commercial Agency, Franchise and Distribution Contracts (pel Cafdc), French and Spanish Law = Schr. Eur. Rechtswiss. Francia = Francia Francisella Tularensis: Biology, Pathogenicity, Epidemiology, and Biodefense = Ann Ny Acad Sci Francisella Tularensis: Biology, Pathogenicity, Epidemiology, and Biodefense = Ann. Ny. Acad. Sci. Francoist Military Trials = Routl Can Blanch Stu Francoist Military Trials = Routl. Can. Blanch. Stu. Francopolyphonies = Francopolyphonies Frankfurter Hefte = Frankf Hefte Frankfurter Zeitschrift fur Pathologie = Frankf Z Pathol Frankfurter Zeitschrift fur Pathologie = Frankf. Z. Pathol. Frankfurt School Perspectives On Globalization, Democracy, and The Law = Routl Stud Soc Polit Frankfurt School Perspectives On Globalization, Democracy, and The Law = Routl. Stud. Soc. Polit. Frank Knight and The Chicago School in American Economics = Routl Stud Hist Econ Frank Knight and The Chicago School in American Economics = Routl. Stud. Hist. Econ. Franklin and Eleanor Roosevolt Institute Series On Diplomatic and Economic History = Feri Dipl Econ Hist Franklin and Eleanor Roosevolt Institute Series On Diplomatic and Economic History = Feri. Dipl. Econ. Hist. Franklin Roosevelt's Foreign Policy and The Welles Mission = World Roosevelts Franklin Roosevelt's Foreign Policy and The Welles Mission = World. Roosevelts. Frank W Pierce Memorial Lectureship and Conference Series = F W Pierce Mem Lect Frank W Pierce Memorial Lectureship and Conference Series = F. W Pierce Mem. Lect. Franz Liszt and His World = Bard Music Festiv Franz Liszt and His World = Bard. Music. Festiv. Fra Sundhedsstyrelsen = Fra Sundhedsstyr Fra Sundhedsstyrelsen = Fra Sundhedsstyr. Frater of Psi Omega = Frater Psi Omega Free Aceh Movement (gam): Anatomy of A Separatist Organization = Pol Stud Free Aceh Movement (gam): Anatomy of A Separatist Organization = Pol. Stud. Free and Unfree Labour = Int Comp Social Hist Free and Unfree Labour = Int. Comp. Social. Hist. Free Boundary Problems: Theory and Applications = Ch Crc Res Notes Free Boundary Problems: Theory and Applications = Ch. Crc. Res. Notes. Free Boundary Problems: Theory and Applications = Int Ser Numer Math Free Boundary Problems: Theory and Applications = Int. Ser. Numer. Math. Free Boundary Problems: Theory and Applications = Int S Num M Free Boundary Problems: Theory and Applications = Int. S. Num. M. Free Boundary Value Problems = Int S Num M Free Boundary Value Problems = Int. S. Num. M. Free China review = Free China Rev Freedom and Value: Freedom's Influence On Welfare and Worldly Value = Libr Ethics Appl Phi Freedom and Value: Freedom's Influence On Welfare and Worldly Value = Libr. Ethics. Appl. Phi. Freedom at issue = Freedom Issue Freedom, Dharma, and Rights = Soc Philos Today Freedom, Dharma, and Rights = Soc. Philos. Today. Freedom From Poverty: Ngos and Human Rights Praxis = Pa Stud Hum Rights Freedom From Poverty: Ngos and Human Rights Praxis = Pa. Stud. Hum. Rights Freedom of Analysis = Stud Generat Gramm Freedom of Analysis = Stud. Generat. Gramm. Freedom of Association = Eur Conv Hum Righ Freedom of Association = Eur. Conv. Hum. Righ. Freedom of Expression in A Diverse World = Amintaphil Freedom of Expression in A Diverse World = Amintaphil. Freedom of Expression = U Tex Aust Stud Fore Freedom of Expression = U. Tex. Aust. Stud. Fore. Freedom review = Freedom Rev Freedoms Orphans: Contemporary Liberalism and The Fate of American Children = New Forum Book Freedoms Orphans: Contemporary Liberalism and The Fate of American Children = New. Forum. Book. Freedomways = Freedomways Freedom, Will, and Nature, Vol 81 2007 = P Am Cath Philos Ass Freedom, Will, and Nature, Vol 81 2007 = P. Am. Cath. Philos. Ass. Free-electron Laser Challenges Ii = Proc Spie Free-electron Laser Challenges Ii = Proc. Spie. Free-electron Laser Challenges Ii = P Soc Photo-opt Ins Free-electron Laser Challenges Ii = P. Soc. Photo-opt. Ins. Free-electron Laser Challenges = P Soc Photo-opt Ins Free-electron Laser Challenges = P. Soc. Photo-opt. Ins. Free-electron Lasers and Applications = P Soc Photo-opt Ins Free-electron Lasers and Applications = P. Soc. Photo-opt. Ins. Free-electron Lasers Ii = P Soc Photo-opt Ins Free-electron Lasers Ii = P. Soc. Photo-opt. Ins. Free-electron Laser Spectroscopy in Biology, Medicine, and Materials Science = P Soc Photo-opt Ins Free-electron Laser Spectroscopy in Biology, Medicine, and Materials Science = P. Soc. Photo-opt. Ins. Free Form Structural Design: Schemes, Systems & Prototypes of Structures for Irregular Shaped Buildings = Res Archit Eng Ser Free Form Structural Design: Schemes, Systems & Prototypes of Structures for Irregular Shaped Buildings = Res. Archit. Eng. Ser. Free inquiry (Buffalo, N.Y.) = Free Inq Free inquiry in creative sociology = Free Inq Creat Sociol Free Radical Biology and Medicine = Free Radical Biol. Med. Free Radical Biology and Medicine = Free Radical Bio Med Free Radical Biology and Medicine = Free Radical Bio. Med. Free Radical Biology and Medicine=Free Radic Biol Med;; Free Radical Biology and Medicine = Free Radic. Biol. Med. Free Radical Biology in Digestive Diseases = Front Gastroint Res Free Radical Biology in Digestive Diseases = Front. Gastroint. Res. Free Radical Biology & Medicine = Free Radical Biol. Med. Free radical biology & medicine = Free Radic Biol Med Free Radical Effects On Membranes = Curr Top Membr Free Radical Effects On Membranes = Curr. Top. Membr. Free Radical Research Communications = Free Radical Res Com Free Radical Research Communications = Free Radical Res. Com. Free Radical Research Communications = Free Radical Res. Commun. Free radical research communications = Free Radic Res Commun Free Radical Research Communications = Free Radic. Res. Commun. Free Radical Research = Free Radical Res Free Radical Research = Free Radical Res. Free radical research = Free Radic Res Free Radical Research=Free Radic Res;; Free Radical Research = Free Radic. Res. Free Radicals and Antioxidant Protocols, Second Edition = Methods Mol Biol Free Radicals and Antioxidant Protocols, Second Edition = Methods. Mol. Biol. Free Radicals and Oxidative Stress: Environment, Drugs and Food Additives = Biochem Soc Symp Free Radicals and Oxidative Stress: Environment, Drugs and Food Additives = Biochem. Soc. Symp. Free Radicals: Enzymology, Signalling and Disease = Biochem Soc Symp Free Radicals: Enzymology, Signalling and Disease = Biochem. Soc. Symp. Free Radicals in Biology and Environment = Nato Asi 3 High Tech Free Radicals in Biology and Environment = Nato. Asi. 3. High. Tech. Free Radicals in Diagnostic Medicine = Adv Exp Med Biol Free Radicals in Diagnostic Medicine = Adv. Exp. Med. Biol. Free Radicals in Synthesis and Biology = Nato Adv Sci I C-mat Free Radicals in Synthesis and Biology = Nato. Adv. Sci. I. C-mat. Free Radicals in The Pathogenesis of Liver Injury = Adv Biosci Free Radicals in The Pathogenesis of Liver Injury = Adv. Biosci. Free Radicals, Lipoproteins, and Membrane Lipids = Nato Adv Sci I A-lif Free Radicals, Lipoproteins, and Membrane Lipids = Nato. Adv. Sci. I. A-lif. Free Radicals, Nitric Oxide, and Inflammation: Molecular, Biochemical, and Clinical Aspects = Nato Sci Ser I Life Free Radicals, Nitric Oxide, and Inflammation: Molecular, Biochemical, and Clinical Aspects = Nato. Sci. Ser. I. Life. Free Radicals, Oxidative Stress, and Antioxidants = Nato Adv Sci I A-lif Free Radicals, Oxidative Stress, and Antioxidants = Nato. Adv. Sci. I. A-lif. Free Resolutions in Commutative Algebra and Algebraic Geometry = Res Not Mat Free Resolutions in Commutative Algebra and Algebraic Geometry = Res. Not. Mat. Free-space Laser Communication and Active Laser Illumination Iii = P Soc Photo-opt Ins Free-space Laser Communication and Active Laser Illumination Iii = P. Soc. Photo-opt. Ins. Free-space Laser Communication and Laser Imaging Ii = Proc Spie Free-space Laser Communication and Laser Imaging Ii = Proc. Spie. Free-space Laser Communication and Laser Imaging Ii = P Soc Photo-opt Ins Free-space Laser Communication and Laser Imaging Ii = P. Soc. Photo-opt. Ins. Free-space Laser Communication and Laser Imaging = P Soc Photo-opt Ins Free-space Laser Communication and Laser Imaging = P. Soc. Photo-opt. Ins. Free Space Laser Communications Iv = Proc Spie Free Space Laser Communications Iv = Proc. Spie. Free Space Laser Communications Iv = P Soc Photo-opt Ins Free Space Laser Communications Iv = P. Soc. Photo-opt. Ins. Free-space Laser Communications: Principles and Advances = Opt Fiber Commun Rep Free-space Laser Communications: Principles and Advances = Opt. Fiber. Commun. Rep. Free - Space Laser Communications Viii = P Soc Photo-opt Ins Free - Space Laser Communications Viii = P. Soc. Photo-opt. Ins. Free-space Laser Communications Vii = P Soc Photo-opt Ins Free-space Laser Communications Vii = P. Soc. Photo-opt. Ins. Free-space Laser Communications Vi = Proc Spie Free-space Laser Communications Vi = Proc. Spie. Free-space Laser Communications Vi = P Soc Photo-opt Ins Free-space Laser Communications Vi = P. Soc. Photo-opt. Ins. Free-space Laser Communications X = Proc Spie Free-space Laser Communications X = Proc. Spie. Free-space Laser Communications X = P Soc Photo-opt Ins Free-space Laser Communications X = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Iii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Iii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Ii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Ii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Iv = P Soc Photo-opt Ins Free-space Laser Communication Technologies Iv = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Ix = P Soc Photo-opt Ins Free-space Laser Communication Technologies Ix = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Viii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Viii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Vii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Vii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Vi = P Soc Photo-opt Ins Free-space Laser Communication Technologies Vi = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies V = P Soc Photo-opt Ins Free-space Laser Communication Technologies V = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xiii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xiii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xi = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xi = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xiv = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xiv = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xix and Atmospheric Propagation of Electromagnetic Waves = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xix and Atmospheric Propagation of Electromagnetic Waves = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies X = P Soc Photo-opt Ins Free-space Laser Communication Technologies X = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xviii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xviii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xvii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xvii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xvi = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xvi = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xv = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xv = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xxii = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xxii = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xxi = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xxi = P. Soc. Photo-opt. Ins. Free-space Laser Communication Technologies Xx = P Soc Photo-opt Ins Free-space Laser Communication Technologies Xx = P. Soc. Photo-opt. Ins. Free Surface Flows = Cism Cour L Free Surface Flows = Cism. Cour. L. Free Surface Flows Under Compensated Gravity Conditions = Springer Tr Mod Phys Free Surface Flows Under Compensated Gravity Conditions = Springer. Tr. Mod. Phys. Free Trade and Its Reception 1815-1960 - Freedom and Trade, Vol I = Rout Explor Free Trade and Its Reception 1815-1960 - Freedom and Trade, Vol I = Rout. Explor. Free Trade and Its Reception 1815-1960 - Freedom and Trade, Vol I = Routl Explor Econ Hi Free Trade and Its Reception 1815-1960 - Freedom and Trade, Vol I = Routl. Explor. Econ. Hi. Free Trade in The Americas (an Hemispheric Approach) = Coll Bleuse Free Trade in The Americas (an Hemispheric Approach) = Coll. Bleuse. Freeway Operations and High Occupancy Vehicle Systems 2006 = Transport Res Rec Freeway Operations and High Occupancy Vehicle Systems 2006 = Transport. Res. Rec. Freeway Operations and Traffic Signal Systems 2004 = Transport Res Rec Freeway Operations and Traffic Signal Systems 2004 = Transport. Res. Rec. Freeway Operations, High-occupancy Vehicle Systems, Traffic Signal Systems, and Regional Transportation Systems Management 2005 = Transport Res Rec Freeway Operations, High-occupancy Vehicle Systems, Traffic Signal Systems, and Regional Transportation Systems Management 2005 = Transport. Res. Rec. Freeways, High-occupancy Vehicle Systems, and Traffic Signal Systems 2003 = Transport Res Rec Freeways, High-occupancy Vehicle Systems, and Traffic Signal Systems 2003 = Transport. Res. Rec. Free Will and Determinism in Joseph Conrad's Major Novels = Int Forsch Allg Vgl Free Will and Determinism in Joseph Conrad's Major Novels = Int. Forsch. Allg. Vgl. Free Will and Moral Responsiblity = Midwest Stud Philos Free Will and Moral Responsiblity = Midwest. Stud. Philos. Free Word Order Phenomenon: Its Syntactic Sources and Diversity = Stud Generat Gramm Free Word Order Phenomenon: Its Syntactic Sources and Diversity = Stud. Generat. Gramm. Free world horizons = Free World Horiz Freiberger Forschungshefte A. = Freiberg. Forschungsh. A. Freiburger bodenkundliche Abhandlungen = Freibg. bodenkd. Abh. Freiburger Forschungen zur Medizingeschichte = Freib Forsch Medizingesch Freiburger Geographische Hefte = Freibg. Geogr. Hefte Freiburger Schriften zur Hydrologie = Freibg. Schr. Hydrol. Freiburger Studien zur Frühen Neuzeit = Freibg. Stud. Frühen Neuzeit Freie Zahnarzt = Freie Zahnarzt Freight Analysis, Evaluation, and Modeling: 2005 Thomas B. Deen Distinguished Lecture = Transport Res Rec Freight Analysis, Evaluation, and Modeling: 2005 Thomas B. Deen Distinguished Lecture = Transport. Res. Rec. Freight Analysis, Evaluation, and Modeling; Truck Transportation = Transport Res Rec Freight Analysis, Evaluation, and Modeling; Truck Transportation = Transport. Res. Rec. Freight Anaylsis, Evaluation, and Modeling: 2005 Thomas B. Deen Distinguished Lecture = Transport Res Rec Freight Anaylsis, Evaluation, and Modeling: 2005 Thomas B. Deen Distinguished Lecture = Transport. Res. Rec. Freight Policy, Economics, and Logistics; Truck Transportation = Transport Res Rec Freight Policy, Economics, and Logistics; Truck Transportation = Transport. Res. Rec. Freight Transportation 2002 = Transport Res Rec Freight Transportation 2002 = Transport. Res. Rec. Freight Transportation Research = Transport Res Rec Freight Transportation Research = Transport. Res. Rec. Freight Transportation = Transport Res Rec Freight Transportation = Transport. Res. Rec. Freight Travel Behavior, Route Choice Behavior, and Advanced Traveler Information Systems = Transport Res Rec Freight Travel Behavior, Route Choice Behavior, and Advanced Traveler Information Systems = Transport. Res. Rec. Freiheit Und Determinismus: Ein Philosophischer Kommentar Zu Ciceros Schrift De Fato = Quellen Stud Philos Freiheit Und Determinismus: Ein Philosophischer Kommentar Zu Ciceros Schrift De Fato = Quellen. Stud. Philos. Fremde, Feinde Und Kurioses: Innen Und Aussenansichten Unseres Muslimischen Nachbarn = Stud Gesch Kult Isla Fremde, Feinde Und Kurioses: Innen Und Aussenansichten Unseres Muslimischen Nachbarn = Stud. Gesch. Kult. Isla. French-american Review = Fr-am Rev French-american Review = Fr-am. Rev. French and American Noir: Dark Crossings = Crime File French and American Noir: Dark Crossings = Crime. File. French Communist Party During The Fifth Republic = Fr Polit Soc Cult French Communist Party During The Fifth Republic = Fr. Polit. Soc. Cult. French Cultural Studies = Fr Cult Stud French Cultural Studies = Fr. Cult. Stud. French Forum = Fr Forum French Forum = Fr. Forum French historical studies = Fr Hist Stud French Historical Studies = Fr Hist Stud French Historical Studies = Fr. Hist. Stud. French History = Fr Hist French History = Fr. Hist. French Influenced Clergy = Etud Hispan French Influenced Clergy = Etud. Hispan. French Intellectuals and Politics From The Dreyfus Affair to The Occupation = Fr Polit Soc Cult French Intellectuals and Politics From The Dreyfus Affair to The Occupation = Fr. Polit. Soc. Cult. French Language and Questions of Identity = Stud Ling French Language and Questions of Identity = Stud. Ling. French Literature Series = Fr Lit Ser French Literature Series = Fr. Lit. Ser. French Ngos in The Global Era: A Distinctive Role in International Development = Fr Polit Soc Cult French Ngos in The Global Era: A Distinctive Role in International Development = Fr. Polit. Soc. Cult. French Politics Society and Culture = Fr Polit Soc Cult French Politics Society and Culture = Fr. Polit. Soc. Cult. French Politics Society and Culture Series = Fr Plit Soc Cult French Politics Society and Culture Series = Fr. Plit. Soc. Cult. French Railway Techniques = Fr Rail Tech French Railway Techniques = Fr. Rail. Tech. French Relations With The European Union = Eur Nation State French Relations With The European Union = Eur. Nation. State. French Review = Fr Rev French Review = Fr. Rev. French Revolution and The Meaning of Citizenship = Contrib Polit Sci French Revolution and The Meaning of Citizenship = Contrib. Polit. Sci. French Revolution, Literature, and The Arts = Human Ser French Revolution, Literature, and The Arts = Human. Ser. French studies = Fr Stud French Studies = Fr Stud French Studies = Fr. Stud. French Studies in The Philosophy of Science: Contemporary Research in France = Bost Stud Philos Sci French Studies in The Philosophy of Science: Contemporary Research in France = Bost. Stud. Philos. Sci. French Voter: Before and After The 2002 Elections = Fr Polit Soc Cult French Voter: Before and After The 2002 Elections = Fr. Polit. Soc. Cult. Frenesie = Frenesie Frequency Measurement and Control Advanced Techniques and Future Trends = Top Appl Phys Frequency Measurement and Control Advanced Techniques and Future Trends = Top. Appl. Phys. Frequency-stabilized Lasers and Their Applications = P Soc Photo-opt Ins Frequency-stabilized Lasers and Their Applications = P. Soc. Photo-opt. Ins. Frequency Synthesizers: Concept to Product = Artech Hse Microw Li Frequency Synthesizers: Concept to Product = Artech. Hse. Microw. Li. Frequenz = Frequenz Fresenius Environmental Bulletin = Fresen Environ Bull Fresenius Environmental Bulletin = Fresen. Environ. Bull. Fresenius Environmental Bulletin = Fresenius Environ. Bull. Fresenius Environment bulletin = Fresenius Environ. Bull. Fresenius' journal of analytical chemistry = Fresenius J Anal Chem Fresenius Journal of Analytical Chemistry = Fresenius J. Anal. Chem. Fresenius' Journal of Analytical Chemistry = Fresenius. J. Anal. Chem. Fresenius Journal of Analytical Chemistry = Fresen J Anal Chem Fresenius Journal of Analytical Chemistry = Fresen. J. Anal. Chem. Fresenius Zeitschrift Fur Analytische Chemie = Fresen Z Anal Chem Fresenius Zeitschrift Fur Analytische Chemie = Fresen. Z. Anal. Chem. Freshness and Shelf Life of Foods = Acs Sym Ser Freshness and Shelf Life of Foods = Acs. Sym. Ser. Fresh Novel Foods By High Pressure = Vtt Symp Fresh Novel Foods By High Pressure = Vtt. Symp. Fresh Start for Collegiate Mathematics: Rethinking The Courses Below Calculus = Maa Notes Fresh Start for Collegiate Mathematics: Rethinking The Courses Below Calculus = Maa. Notes. Fresh Start for Collegiate Mathematics: Rethinking The Courses Below Calculus = Maa Notes Ser Fresh Start for Collegiate Mathematics: Rethinking The Courses Below Calculus = Maa. Notes. Ser. Fresh Views of Elliptical Galaxies = Astr Soc P Fresh Views of Elliptical Galaxies = Astr. Soc. P. Freshwater and Estuarine Radioecology = Stud Environ Sci Freshwater and Estuarine Radioecology = Stud. Environ. Sci. Freshwater Biology = Freshwater Biol Freshwater Biology = Freshwater Biol. Freshwater biology = Freshw Biol Freshwater Budget of The Arctic Ocean = Nato Sci S Prt 2 Env Freshwater Budget of The Arctic Ocean = Nato. Sci. S. Prt. 2. Env. Freshwater Contamination = Iahs-aish P Freshwater Contamination = Iahs-aish. P. Freshwater Ecosystems and Aquaculture Research = Environ Sci Eng Tech Freshwater Ecosystems and Aquaculture Research = Environ. Sci. Eng. Tech. Fretting Fatigue: Advances in Basic Understanding and Applications = Am Soc Test Mater Fretting Fatigue: Advances in Basic Understanding and Applications = Am. Soc. Test. Mater. Fretting Fatigue: Current Technology and Practices = Am Soc Test Mater Fretting Fatigue: Current Technology and Practices = Am. Soc. Test. Mater. Freuds Drive: Psychoanalysis, Literature and Film = Lang Discourse Soc Freuds Drive: Psychoanalysis, Literature and Film = Lang. Discourse. Soc. Freuds Memory: Psychoanalysis, Mourning and The Foreign Body = Lang Discourse Soc Freuds Memory: Psychoanalysis, Mourning and The Foreign Body = Lang. Discourse. Soc. Freundesreden Des Ursprunglichen Hiobdialogs: Eine Form Und Traditionsgeschichtliche Studie = Beih Z Alttest Wiss Freundesreden Des Ursprunglichen Hiobdialogs: Eine Form Und Traditionsgeschichtliche Studie = Beih. Z. Alttest. Wiss. Fri Bulletin = Fri Bull Fri Bulletin = Fri Bull. Friction and Instabilities = Cism Cour L Friction and Instabilities = Cism. Cour. L. Friction and Instabilities = Cism Courses Lect Friction and Instabilities = Cism. Courses. Lect. Friction in Textile Materials = Woodhead Publ Text Friction in Textile Materials = Woodhead. Publ. Text. Friede, Freiheit, Brot! Romane Zur Deutschen Novemberrevolution = Amst Beitr Neuer Ger Friede, Freiheit, Brot! Romane Zur Deutschen Novemberrevolution = Amst. Beitr. Neuer. Ger. Friedrich Nietzsche (1844-1900): Economy and Society = Eur Herit Econ Soc S Friedrich Nietzsche (1844-1900): Economy and Society = Eur. Herit. Econ. Soc. S. Friedrich Nietzsche Und Die Literatur Der Klassischen Moderne = Klass Mod-schriftenr Friedrich Nietzsche Und Die Literatur Der Klassischen Moderne = Klass. Mod-schriftenr. Frieling-Erinnerungen = Frieling-Erinnerungen Friend 2002-regional Hydrology: Bridging The Gap Between Research and Practice = Iahs-aish P Friend 2002-regional Hydrology: Bridging The Gap Between Research and Practice = Iahs-aish. P. Friend'97-regional Hydrology: Concepts and Models for Sustainable Water Resource Management = Iahs-aish P Friend'97-regional Hydrology: Concepts and Models for Sustainable Water Resource Management = Iahs-aish. P. Friend: Flow Regimes From International Experimental and Network Data = Iahs-aish P Friend: Flow Regimes From International Experimental and Network Data = Iahs-aish. P. Friendly Guide to Wavelets = Mod Birkhauser Class Friendly Guide to Wavelets = Mod. Birkhauser. Class. Friends and Strangers: The Making of A Creole Culture in Colonial Pennsylvania = Early Am Stud Ser Friends and Strangers: The Making of A Creole Culture in Colonial Pennsylvania = Early. Am. Stud. Ser. Friendships, Peer Socialization and Social Identity Among Adolescent Skateboarders and Graffiti Writers = Soc Iss Justice Stat Friendships, Peer Socialization and Social Identity Among Adolescent Skateboarders and Graffiti Writers = Soc. Iss. Justice. Stat. Friendships: Types, Cultural, Psychological and Social Aspects = Psychol Emot Motiv A Friendships: Types, Cultural, Psychological and Social Aspects = Psychol. Emot. Motiv. A. Friends in Hydrology = Iahs-aish P Friends in Hydrology = Iahs-aish. P. Friends of the P.I. Nixon Medical Historical Library = Friends P I Nixon Med Hist Libr Friends of Women newsletter = Friends Women Newsl Fringe 89 = Phys Res Fringe 89 = Phys. Res. Fringe Pattern Analysis = P Soc Photo-opt Ins Fringe Pattern Analysis = P. Soc. Photo-opt. Ins. Frisian Runes and Neighbouring Traditions = Ams B Alt German Frisian Runes and Neighbouring Traditions = Ams. B. Alt. German. Frisno 2 - The 2nd French-israeli Symposium On Nonlinear Optics = Nonlin Opt Prin Mat Frisno 2 - The 2nd French-israeli Symposium On Nonlinear Optics = Nonlin. Opt. Prin. Mat. Friuli Medico = Friuli Med. F R Leavis = Routl Crit Thinkers F R Leavis = Routl. Crit. Thinkers. Frobenius and Separable Functors for Generalized Module Categories and Nonlinear Equations = Lect Notes Math Frobenius and Separable Functors for Generalized Module Categories and Nonlinear Equations = Lect. Notes. Math. Frobenius Categories Versus Brauer Blocks = Prog Math Frobenius Categories Versus Brauer Blocks = Prog. Math. From Action to Cognition = Prog Brain Res From Action to Cognition = Prog. Brain. Res. From Active Data Management to Event-based Systems and More = Lect Notes Comput Sc From Active Data Management to Event-based Systems and More = Lect. Notes. Comput. Sc. From Aesop to E-book: The Story Goes On... = Iasl Proc From Aesop to E-book: The Story Goes On... = Iasl. Proc. From A Geometrical Point of View = Logic Epistemol Unit From A Geometrical Point of View = Logic. Epistemol. Unit. From Agglomeration to Innovation: Upgrading Industrial Clusters in Emerging Economies = Ide-jetro Ser From Agglomeration to Innovation: Upgrading Industrial Clusters in Emerging Economies = Ide-jetro. Ser. From Airline Reservations to Sonic The Hedgehog: A History of The Software Industry = Hist Comput-mit Pres From Airline Reservations to Sonic The Hedgehog: A History of The Software Industry = Hist. Comput-mit. Pres. From Alexandria to Babylon: Near Eastern Languages and Hellenistic Erudition in The Oxyrhynchus Glossary (p.oxy. 1802 + 4812) = Sozomena-stud Recov From Alexandria to Babylon: Near Eastern Languages and Hellenistic Erudition in The Oxyrhynchus Glossary (p.oxy. 1802 + 4812) = Sozomena-stud. Recov. From Animals to Animats 10, Proceedings = Lect Notes Artif Int From Animals to Animats 10, Proceedings = Lect. Notes. Artif. Int. From Animals to Animats 11 = Lect Notes Artif Int From Animals to Animats 11 = Lect. Notes. Artif. Int. From Animals to Animats 2 = Com Adap Sy From Animals to Animats 2 = Com. Adap. Sy. From Animals to Animats 3 = Com Adap Sy From Animals to Animats 3 = Com. Adap. Sy. From Animals to Animats 5 = From Anim Animat From Animals to Animats 5 = From Anim. Animat. From Animals to Animats 6 = From Anim Animat From Animals to Animats 6 = From Anim. Animat. From Animals to Animats 9, Proceedings = Lect Notes Comput Sc From Animals to Animats 9, Proceedings = Lect. Notes. Comput. Sc. From Animals to Animats Series = From Anim Animat From Animals to Animats Series = From Anim. Animat. From Black Codes to Recodification: Removing The Veil From Regulatory Writing = Baywoods Tech Commun From Black Codes to Recodification: Removing The Veil From Regulatory Writing = Baywoods. Tech. Commun. From Boolean Logic to Switching Circuits and Automata: Towards Modern Information Technology = Stud Comput Intell From Boolean Logic to Switching Circuits and Automata: Towards Modern Information Technology = Stud. Comput. Intell. From Brains to Systems: Brain-inspired Cognitive Systems 2010 = Adv Exp Med Biol From Brains to Systems: Brain-inspired Cognitive Systems 2010 = Adv. Exp. Med. Biol. From Brows to Trust: Evaluating Embodied Conversational Agents = Hum Com Int From Brows to Trust: Evaluating Embodied Conversational Agents = Hum. Com. Int. From Bulk to Nano: The Many Sides of Magnetism = Springer Ser Mater S From Bulk to Nano: The Many Sides of Magnetism = Springer. Ser. Mater. S. From Capital Surges to Drought: Seeking Stability for Emerging Economies = Stud Dev Econ Policy From Capital Surges to Drought: Seeking Stability for Emerging Economies = Stud. Dev. Econ. Policy. From Cardanos Great Art to Lagranges Reflections: Filling A Gap in The Histroy of Algebra = Herit Eur Math From Cardanos Great Art to Lagranges Reflections: Filling A Gap in The Histroy of Algebra = Herit. Eur. Math. From Cells to Proteins: Imaging Nature Across Dimensions = Nato Sec Sci B Phys From Cells to Proteins: Imaging Nature Across Dimensions = Nato. Sec. Sci. B. Phys. From Central State to Free Global Market Economy = Nato Asi S 4 Sci Tec From Central State to Free Global Market Economy = Nato. Asi. S. 4. Sci. Tec. From Child Welfare to Child Well-being = Child Well-being Ind From Child Welfare to Child Well-being = Child Well-being Ind. From Civil Rights to Human Rights: Martin Luther King, Jr., and The Struggle for Economic Justice = Polit Cult Mod Am From Civil Rights to Human Rights: Martin Luther King, Jr., and The Struggle for Economic Justice = Polit. Cult. Mod. Am. From Classical to Modern Probability = Prog Probab From Classical to Modern Probability = Prog. Probab. From Clone to Clinic = Dev Biother From Clone to Clinic = Dev. Biother. From Coherent Tunneling to Relaxation = Springer Tr Mod Phys From Coherent Tunneling to Relaxation = Springer. Tr. Mod. Phys. From Cold War to New World Order = Contrib Polit Sci From Cold War to New World Order = Contrib. Polit. Sci. From Colloids to Nanotechnology = Prog Coll Pol Sci S From Colloids to Nanotechnology = Prog. Coll. Pol. Sci. S. From Communication to Presence: Cognition, Emotions and Culture Towards The Ultimate Communicative Experience = Emerg Commun-stud Ne From Communication to Presence: Cognition, Emotions and Culture Towards The Ultimate Communicative Experience = Emerg. Commun-stud. Ne. From Computer Literacy to Informatics Fundamentals, Proceedings = Lect Notes Comput Sc From Computer Literacy to Informatics Fundamentals, Proceedings = Lect. Notes. Comput. Sc. From Crisis to Growth in Africa? = Rout Stud Dev Econ From Crisis to Growth in Africa? = Rout. Stud. Dev. Econ. From Darkness to Light: Origin and Evolution of Young Stellar Clusters = Astr Soc P From Darkness to Light: Origin and Evolution of Young Stellar Clusters = Astr. Soc. P. From Data and Information Analysis to Knowledge Engineering = St Class Dat Anal From Data and Information Analysis to Knowledge Engineering = St. Class. Dat. Anal. From Data and Information Analysis to Knowledge Engineering = Stud Class Data Anal From Data and Information Analysis to Knowledge Engineering = Stud. Class. Data Anal. From Data Protection to Knowledge Machines = Comp Law S From Data Protection to Knowledge Machines = Comp. Law. S. From Economics Imperialism to Freakonomics: The Shifting Boundaries Between Economics and Other Social Sciences = Econ Soc Theor From Economics Imperialism to Freakonomics: The Shifting Boundaries Between Economics and Other Social Sciences = Econ. Soc. Theor. From Energy to Information = Writing Sci From Energy to Information = Writing. Sci. From Epigenesis to Epigenetics: The Genome in Context = Ann Ny Acad Sci From Epigenesis to Epigenetics: The Genome in Context = Ann. Ny. Acad. Sci. From Extrasolar Planets to Cosmology: The Vlt Opening Symposium = Eso Astrophy Symp From Extrasolar Planets to Cosmology: The Vlt Opening Symposium = Eso. Astrophy. Symp. From Femto-to Attoscience and Beyond = Lasers Electro-opt R From Femto-to Attoscience and Beyond = Lasers. Electro-opt. R. From Florence to The Heavenly City: The Poetry of Citizenship in Dante = Ital Perspect From Florence to The Heavenly City: The Poetry of Citizenship in Dante = Ital. Perspect. From Genes to Animal Behavior: Social Structures, Personalities, Comminication By Color = Primatol Monogr From Genes to Animal Behavior: Social Structures, Personalities, Comminication By Color = Primatol. Monogr. From Genes to Personalized Healthcare: Grid Solutions for The Life Sciences = St Heal T From Genes to Personalized Healthcare: Grid Solutions for The Life Sciences = St. Heal. T. From Genes to Personalized Healthcare: Grid Solutions for The Life Sciences = Stud Health Technol From Genes to Personalized Healthcare: Grid Solutions for The Life Sciences = Stud. Health. Technol. From Genetics to Gene Therapy = Ucl Molec Pathol Ser From Genetics to Gene Therapy = Ucl. Molec. Pathol. Ser. From Genetics to Mathematics = S Adv Math From Genetics to Mathematics = S. Adv. Math. From Geometric Modeling to Shape Modeling = Int Fed Info Proc From Geometric Modeling to Shape Modeling = Int. Fed. Info. Proc. From Giant Planets to Cool Stars, Proceedings = Astr Soc P From Giant Planets to Cool Stars, Proceedings = Astr. Soc. P. From Governance to Identity: A Festschrift for Mary Henkel = High Educ Dynam From Governance to Identity: A Festschrift for Mary Henkel = High. Educ. Dynam. From Grid to Healthgrid = St Heal T From Grid to Healthgrid = St. Heal. T. From Ground-based to Space-borne Sub-mm Astronomy = Esa Sp Publ From Ground-based to Space-borne Sub-mm Astronomy = Esa. Sp. Publ. From Guilt to Shame: Auschwitz and After = 20 21 From Guilt to Shame: Auschwitz and After = 20. 21. From Gutenberg to The Global Information Infrastructure = Digit Libr Elect Pub From Gutenberg to The Global Information Infrastructure = Digit. Libr. Elect. Pub. From Hahn-banach to Monotonicity, 2nd Edition = Lect Notes Math From Hahn-banach to Monotonicity, 2nd Edition = Lect. Notes. Math. From Hodge Theory to Integrability and Tqft: Tt*- Geometry = P Symp Pure Math From Hodge Theory to Integrability and Tqft: Tt*- Geometry = P. Symp. Pure. Math. From Hyperbolic Systems to Kinetic Theory: A Personalized Quest = Lect Notes Unione Ma From Hyperbolic Systems to Kinetic Theory: A Personalized Quest = Lect. Notes. Unione. Ma. From Information to Knowledge From Knowledge to Wisdom: Challenges and Changes Facing Higher Education in The Digital Age = Wenn Gr Int From Information to Knowledge From Knowledge to Wisdom: Challenges and Changes Facing Higher Education in The Digital Age = Wenn. Gr. Int. From Innate Immunity to Immunlolgical Memory = Curr Top Microbiol From Innate Immunity to Immunlolgical Memory = Curr. Top. Microbiol. From Instrumentation to Nanotechnology = Dev Nanotec From Instrumentation to Nanotechnology = Dev. Nanotec. From Integrated Publication and Information Systems to Virtual Information and Knowledge Environments = Lect Notes Comput Sc From Integrated Publication and Information Systems to Virtual Information and Knowledge Environments = Lect. Notes. Comput. Sc. From Ion Channels to Cell-to-cell Conversations = Ser Cent Es From Ion Channels to Cell-to-cell Conversations = Ser. Cent. Es. From Ireland Coming = Index Christ Art Oc From Ireland Coming = Index. Christ. Art. Oc. From Knowledge Intensive Cad to Knowledge Intensive Engineering = Int Fed Info Proc From Knowledge Intensive Cad to Knowledge Intensive Engineering = Int. Fed. Info. Proc. From Lending to Learning: The Development and Extension of Public Libraries = Chandos Inf Prof Ser From Lending to Learning: The Development and Extension of Public Libraries = Chandos. Inf. Prof. Ser. From Leonardo to Iter: Nonlinear and Coherence Aspects = Aip Conf Proc From Leonardo to Iter: Nonlinear and Coherence Aspects = Aip. Conf. Proc. From Local Invasion to Metastatic Cancer: Involvement of Distant Sites Through The Lymphovascular System = Curr Clin Oncol From Local Invasion to Metastatic Cancer: Involvement of Distant Sites Through The Lymphovascular System = Curr. Clin. Oncol. From Logos to Christos: Essays On Christology in Honour of Joanne Mcwilliam = Edition Sr From Logos to Christos: Essays On Christology in Honour of Joanne Mcwilliam = Edition. Sr. From Luigi Galvani to Contemporary Neurobiology = Fidia Res Series From Luigi Galvani to Contemporary Neurobiology = Fidia. Res. Series. From Mars to Greenland : Charting Gravity With Space and Airborne Instruments = Iag Symp From Mars to Greenland : Charting Gravity With Space and Airborne Instruments = Iag. Symp. From Mating to Mentality: Evaluating Evolutionary Psychology = Macquarie Mg Cog Sci From Mating to Mentality: Evaluating Evolutionary Psychology = Macquarie. Mg. Cog. Sci. From Mating to Mentality: Evaluating Evolutionary Psychology = M M Cog Sci From Mating to Mentality: Evaluating Evolutionary Psychology = M. M. Cog. Sci. From Medieval Pilgrimage to Religious Tourism = Rel Age Tran From Medieval Pilgrimage to Religious Tourism = Rel. Age. Tran. From Model-driven Design to Resource Management for Distributed Embedded Systems = Int Fed Info Proc From Model-driven Design to Resource Management for Distributed Embedded Systems = Int. Fed. Info. Proc. From Molecular Biology to Therapeutics = Pharm Skin From Molecular Biology to Therapeutics = Pharm. Skin. From Molecular Genetics to Genomics = Routl St Hist Sci Te From Molecular Genetics to Genomics = Routl. St. Hist. Sci. Te. From Molecular Targets to Public Health = People Work Res Rep From Molecular Targets to Public Health = People. Work. Res. Rep. From Molecular to Modular Tumor Therapy: Tumors Are Reconstructible Communicatively Evolving Systems = Tumor Microenviron From Molecular to Modular Tumor Therapy: Tumors Are Reconstructible Communicatively Evolving Systems = Tumor Microenviron. From Molecules to Medicines = Nato Sci Peace Sec A From Molecules to Medicines = Nato. Sci. Peace. Sec. A. From Morphological Imaging to Molecular Targeting: Implications to Preclinical Development = E Schering Res Fdn W From Morphological Imaging to Molecular Targeting: Implications to Preclinical Development = E. Schering. Res. Fdn. W. From Motor Learning to Interaction Learning in Robots = Stud Comput Intell From Motor Learning to Interaction Learning in Robots = Stud. Comput. Intell. From Nanopowders to Functional Materials = Sol St Phen From Nanopowders to Functional Materials = Sol. St. Phen. From Natural to Artificial Neural Computation = Lect Notes Comput Sc From Natural to Artificial Neural Computation = Lect. Notes. Comput. Sc. From Neural Networks and Biomolecular Engineering to Bioelectronics = Electr Biot Adv For From Neural Networks and Biomolecular Engineering to Bioelectronics = Electr. Biot. Adv. For. From Newton to Chaos = Nato Adv Sci Inst Se From Newton to Chaos = Nato. Adv. Sci. Inst. Se. From Nuclei and Their Constituents to Stars = P Int Sch Phys From Nuclei and Their Constituents to Stars = P. Int. Sch. Phys. From Nursery Rhymes to Nationhood: Children's Literature and The Construction of Canadian Identity = Child Lit Cult From Nursery Rhymes to Nationhood: Children's Literature and The Construction of Canadian Identity = Child. Lit. Cult. From Object-orientation to Formal Methods = Lect Notes Comput Sc From Object-orientation to Formal Methods = Lect. Notes. Comput. Sc. From Orientalism to Postcolonialism: Asia Europe and The Lineages of Difference = Routl Contemp Asia From Orientalism to Postcolonialism: Asia Europe and The Lineages of Difference = Routl. Contemp. Asia From Ovulation to Implantation = Int Congr Ser From Ovulation to Implantation = Int. Congr. Ser. From P2p and Grids to Services On The Web: Evolving Distributed Communities, Second Edition = Comput Commun Netw S From P2p and Grids to Services On The Web: Evolving Distributed Communities, Second Edition = Comput. Commun. Netw. S. From Passion to Objectivity: International and Cross-disciplinary Perspectives On Service-learning Research = Adv Serv Learn Res From Passion to Objectivity: International and Cross-disciplinary Perspectives On Service-learning Research = Adv. Serv. Learn. Res. From Perception to Meaning: Image Schemas in Cognitive Linguistics = Cogn Linguist Res From Perception to Meaning: Image Schemas in Cognitive Linguistics = Cogn. Linguist. Res. From Phonology to Syntax: Pronominal Cliticization in Otfrid's Evangelienbuch = Linguist Arb From Phonology to Syntax: Pronominal Cliticization in Otfrid's Evangelienbuch = Linguist. Arb. From Physics to Biology = Aip Conf Proc From Physics to Biology = Aip. Conf. Proc. From Pigments to Perception = Nato Adv Sci I A-lif From Pigments to Perception = Nato. Adv. Sci. I. A-lif. From Plant Taxonomy to Evolutionary Biology = Nova Act Lc From Plant Taxonomy to Evolutionary Biology = Nova. Act. Lc. From Pole to Pole = From Pole Pole From Political Economy to Economics: Method, The Social and The Historical in The Evolution of Economic Theory = Econ Soc Theor From Political Economy to Economics: Method, The Social and The Historical in The Evolution of Economic Theory = Econ. Soc. Theor. From Populations to Ecosystems: Theoretical Foundations for A New Ecological Synthesis = Monogr Popul Biol From Populations to Ecosystems: Theoretical Foundations for A New Ecological Synthesis = Monogr. Popul. Biol. From Powder to Bulk = Imeche Conf Trans From Powder to Bulk = Imeche. Conf. Trans. From Private to Public: Natural Collections and Museums = Upps Hist Sci From Private to Public: Natural Collections and Museums = Upps. Hist. Sci. From Private to Public: Natural Collections and Museums = Upps Stud Hist Sci From Private to Public: Natural Collections and Museums = Upps. Stud. Hist. Sci. From Privileges to Rights: Work and Politics in Colonial New York City = Early Am Stud Ser From Privileges to Rights: Work and Politics in Colonial New York City = Early. Am. Stud. Ser. From Protection to Promotion, Proceedings of The International Symposium = People Work Res Rep From Protection to Promotion, Proceedings of The International Symposium = People. Work. Res. Rep. From Protein Folding to New Enzymes = Biochem Soc Symp From Protein Folding to New Enzymes = Biochem. Soc. Symp. From Psychoanalytic Narrative to Empirical Single Case Research: Implications for Psychoanalytic Practice = Psychoanal Inq Book From Psychoanalytic Narrative to Empirical Single Case Research: Implications for Psychoanalytic Practice = Psychoanal. Inq. Book. From Qos Provisioning to Qos Charging, Proceedings = Lect Notes Comput Sc From Qos Provisioning to Qos Charging, Proceedings = Lect. Notes. Comput. Sc. From Quantum Fluctuations to Cosmological Structures = Astr Soc P From Quantum Fluctuations to Cosmological Structures = Astr. Soc. P. From Quantum to Classical Molecular Dynamics: Reduced Models and Numerical Analysis = Zur Lect Adv Math From Quantum to Classical Molecular Dynamics: Reduced Models and Numerical Analysis = Zur. Lect. Adv. Math. From Quarks to Black Holes: Progress in Understanding The Logic of Nature = Subnucl Ser From Quarks to Black Holes: Progress in Understanding The Logic of Nature = Subnucl. Ser. From Reaction to Cognition = Lect Notes Artif Int From Reaction to Cognition = Lect. Notes. Artif. Int. From Reading to Neurons = Iss Biol L From Reading to Neurons = Iss. Biol. L. From Reasons to Norms: On The Basic Question in Ethics = Libr Ethics Appl Phi From Reasons to Norms: On The Basic Question in Ethics = Libr. Ethics Appl. Phi. From Republican Polity to National Community: Reconsiderations of Enlightenment Political Thought = Stud Volt Eight Cent From Republican Polity to National Community: Reconsiderations of Enlightenment Political Thought = Stud. Volt. Eight. Cent. From Research in Oncology to Therapeutic Innovations = Colloq Inse From Research in Oncology to Therapeutic Innovations = Colloq. Inse. From Research to Prevention: Managing Occupational and Environmental Health Hazards, Proceedings of The International Symposium = People Work Res Rep From Research to Prevention: Managing Occupational and Environmental Health Hazards, Proceedings of The International Symposium = People. Work. Res. Rep. From Roman Provinces to Medieval Kingdoms = Rewriting Hist From Roman Provinces to Medieval Kingdoms = Rewriting. Hist. From Semiconductors to Proteins: Beyond The Average Structure = Fundmat Res From Semiconductors to Proteins: Beyond The Average Structure = Fundmat. Res. From Sets and Types to Topology and Analysis = Ox Logic G From Sets and Types to Topology and Analysis = Ox. Logic. G. From Smart Homes to Smart Care = Assist Techn Res Ser From Smart Homes to Smart Care = Assist. Techn. Res. Ser. From Sociology to Computing in Social Networks:theory, Foundations and Applications = Lect Notes Soc Netw From Sociology to Computing in Social Networks:theory, Foundations and Applications = Lect. Notes. Soc. Netw. From Soil Contamination to Land Restoration = Air Water Soil Sci T From Soil Contamination to Land Restoration = Air. Water. Soil Sci. T. From Solidarity to Schisms: 9/11 and After in Fiction and Film From Outside The Us = Int Forsch Allg Vgl From Solidarity to Schisms: 9/11 and After in Fiction and Film From Outside The Us = Int. Forsch. Allg. Vgl. From Specification to Embedded Systems Application = Int Fed Info Proc From Specification to Embedded Systems Application = Int. Fed. Info. Proc. From Stars to Galaxies: Building The Pieces to Build Up The Universe = Astr Soc P From Stars to Galaxies: Building The Pieces to Build Up The Universe = Astr. Soc. P. From Stars to Galaxies: The Impact of Stellar Physics On Galaxy Evolution = Astr Soc P From Stars to Galaxies: The Impact of Stellar Physics On Galaxy Evolution = Astr. Soc. P. From Summetria to Symmetry: The Making of A Revolutionary Scientific Concept = Archimedes From Summetria to Symmetry: The Making of A Revolutionary Scientific Concept = Archimedes. From System Complexity to Emergent Properties = Underst Complex Syst From System Complexity to Emergent Properties = Underst. Complex. Syst. From The Brain to The Mouth = Neurops Cog From The Brain to The Mouth = Neurops. Cog. From The Ground Up: Beyond Gender Theory in Archaeology, Proceedings = Brit Archaeol Rep In From The Ground Up: Beyond Gender Theory in Archaeology, Proceedings = Brit. Archaeol. Rep. In. From The Heart of The Heartland = Reappraisal From The Heart of The Heartland = Reappraisal. From Theory to Practice in Multi-agent Systems = Lect Notes Artif Int From Theory to Practice in Multi-agent Systems = Lect. Notes. Artif. Int. From The Outer Heliosphere to The Local Bubble: Comparison of New Observations With Theory = Space Sci Ser Issi From The Outer Heliosphere to The Local Bubble: Comparison of New Observations With Theory = Space. Sci. Ser. Issi. From Twilight to Highlight: The Physics of Supernovae = Eso Astrophy Symp From Twilight to Highlight: The Physics of Supernovae = Eso. Astrophy. Symp. From Varying Couplings to Fundamental Physics = Astrophysics Space From Varying Couplings to Fundamental Physics = Astrophysics. Space. From Walras to Pareto = Eur Herit Econ Soc S From Walras to Pareto = Eur. Herit. Econ. Soc. S. From Web to Social Web: Discovering and Deploying User and Content Profiles = Lect Notes Artif Int From Web to Social Web: Discovering and Deploying User and Content Profiles = Lect. Notes. Artif. Int. From Wilson to Waldheim = St Aust Lit From Wilson to Waldheim = St. Aust. Lit. From Zeolites to Porous Mof Materials: The 40th Anniversary of International Zeolite Conference, Proceedings of The 15th International Zeolite Conference = Stud Surf Sci Catal From Zeolites to Porous Mof Materials: The 40th Anniversary of International Zeolite Conference, Proceedings of The 15th International Zeolite Conference = Stud. Surf. Sci. Catal. From Z-machines to Alma: (sub) Millimeter Spectroscopy of Galaxies = Astr Soc P From Z-machines to Alma: (sub) Millimeter Spectroscopy of Galaxies = Astr. Soc. P. Frontier in Functional Manufacturing Technologies = Adv Mater Res-switz Frontier in Functional Manufacturing Technologies = Adv. Mater. Res-switz. Frontier Nursing Service quarterly bulletin = Front Nurs Serv Q Bull Frontier Nursing Service Quarterly Bulletin = Front. Nurs. Serv. Q. Bull. Frontier Research in Nanoscale Science and Technology = Physcs Proc Frontier Research in Nanoscale Science and Technology = Physcs. Proc. Frontiers-a Journal of Women Studies = Frontiers Frontiers-a Journal of Women Studies = Frontiers. Frontier Science Series = Front. Sci. Ser. Frontiers Collection = Front Collect Frontiers Collection = Front. Collect. Frontiers Collection = Frontiers Coll Frontiers Collection = Frontiers Coll. Frontiers for Engineering Materials = Key Eng Mat Frontiers for Engineering Materials = Key. Eng. Mat. Frontiers = Frontiers (Boulder) Frontiers in aging series = Front Aging Ser Frontiers in Aging Series = Front. Aging Ser. Frontiers in Algorithmics = Lect Notes Comput Sc Frontiers in Algorithmics = Lect. Notes. Comput. Sc. Frontiers in Algorithmics, Proceedings = Lect Notes Comput Sc Frontiers in Algorithmics, Proceedings = Lect. Notes. Comput. Sc. Frontiers in Applied Mathematics = Front Appl Math Frontiers in Applied Mathematics = Front. Appl. Math. Frontiers in Applied Mathematics = Front App M Frontiers in Applied Mathematics = Front. App. M. Frontiers in Applied Mathematics = Frontiers Appl. Math. Frontiers in Arterial Chemoreception = Adv Exp Med Biol Frontiers in Arterial Chemoreception = Adv. Exp. Med. Biol. Frontiers in Artificial Intelligence and Applications = Fr Art Int Frontiers in Artificial Intelligence and Applications = Fr. Art. Int. Frontiers in Artificial Intelligence and Applications = Front Artif Intel Ap Frontiers in Artificial Intelligence and Applications = Front. Artif. Intel. Ap. Frontiers in Artificial Intelligence and Applications = Frontiers Artificial Intelligence Appl. Frontiers in Behavioral Neuroscience = Front Behav Neurosci Frontiers in Behavioral Neuroscience = Front. Behav. Neurosci. Frontiers in Bioactive Lipids = Gwumc Dept Frontiers in Bioactive Lipids = Gwumc. Dept. Frontiers in Biomedicine and Biotechnology = Front Biom Frontiers in Biomedicine and Biotechnology = Front. Biom. Frontiers in Bioprocessing Ii = Conf P Acs Frontiers in Bioprocessing Ii = Conf. P. Acs. Frontiers in bioscience : a journal and virtual library = Front Biosci Frontiers in Bioscience = Front Biosci Frontiers in Bioscience = Front. Biosci. Frontiers In Bioscience=Front Biosci;; Frontiers in Bioscience-landmark = Front Biosci Frontiers in Bioscience-landmark = Front. Biosci. Frontiers in Bioscience-landmark = Front Biosci-landmrk Frontiers in Bioscience-landmark = Front. Biosci-landmrk. Frontiers in Brain Repair = Adv Exp Med Biol Frontiers in Brain Repair = Adv. Exp. Med. Biol. Frontiers in Cardiovascular Health = Prog Exp Cardiol Frontiers in Cardiovascular Health = Prog. Exp. Cardiol. Frontiers in Cellular Neuroscience = Front Cell Neurosci Frontiers in Cellular Neuroscience = Front. Cell. Neurosci. Frontiers in Cerebral Vascular Biology = Adv Exp Med Biol Frontiers in Cerebral Vascular Biology = Adv. Exp. Med. Biol. Frontiers in Cerebrovascular Disease: Mechanisms, Diagnosis, and Treatment = Am Heart Monogr S Frontiers in Cerebrovascular Disease: Mechanisms, Diagnosis, and Treatment = Am. Heart. Monogr. S. Frontiers in Clinical Neuroscience: Neurodegeneration and Neuroprotection = Adv Exp Med Biol Frontiers in Clinical Neuroscience: Neurodegeneration and Neuroprotection = Adv. Exp. Med. Biol. Frontiers in Computational Neuroscience = Front Comput Neurosc Frontiers in Computational Neuroscience = Front. Comput. Neurosc. Frontiers in Computing Technologies for Manufacturing Applications = Springer Ser Adv Man Frontiers in Computing Technologies for Manufacturing Applications = Springer. Ser. Adv. Man. Frontiers in Condensed Matter Theory = Ann Ny Acad Sci Frontiers in Condensed Matter Theory = Ann. Ny. Acad. Sci. Frontiers in Cosmic Physics = Ann Ny Acad Sci Frontiers in Cosmic Physics = Ann. Ny. Acad. Sci. Frontiers in Crustacean Neurobiology = Adv Lif Sci Frontiers in Crustacean Neurobiology = Adv. Lif. Sci. Frontiers in Diabetes = Front Diabetes Frontiers in Diabetes = Front. Diabetes Frontiers in Drug Design and Discovery = Front. Drug Des. Discovery Frontiers in Drug Research = Alfred Benzon Symp S Frontiers in Drug Research = Alfred. Benzon. Symp. S. Frontiers in Earth Sciences = Front Earth Sci Frontiers in Earth Sciences = Front. Earth Sci. Frontiers in Eating and Weight Regulation = Forum Nutr Frontiers in Eating and Weight Regulation = Forum. Nutr. Frontiers in Ecology and the Environment = Front. Ecol. Environ. Frontiers in Ecology and The Environment = Front Ecol Environ Frontiers in Ecology and The Environment = Front. Ecol. Environ. Frontiers in Education 1995 - 25th Annual Conference, Proceedings, Vols I and Ii = Proc Front Educ Conf Frontiers in Education 1995 - 25th Annual Conference, Proceedings, Vols I and Ii = Proc. Front. Educ. Conf. Frontiers in Education 1997 - 27th Annual Conference, Proceedings, Bols I - Iii = Proc Front Educ Conf Frontiers in Education 1997 - 27th Annual Conference, Proceedings, Bols I - Iii = Proc. Front. Educ. Conf. Frontiers in Education Conference = Proc Front Educ Conf Frontiers in Education Conference = Proc. Front. Educ. Conf. Frontiers in Education - Educating Engineers for World Competition, Proceedings = Proc Front Educ Conf Frontiers in Education - Educating Engineers for World Competition, Proceedings = Proc. Front. Educ. Conf. Frontiers in Education Fie'96 - 26th Annual Conference, Proceedings, Vols 1-3 = Proc Front Educ Conf Frontiers in Education Fie'96 - 26th Annual Conference, Proceedings, Vols 1-3 = Proc. Front. Educ. Conf. Frontiers in Education - Proceedings, 23rd Annual Conference = Proc Front Educ Conf Frontiers in Education - Proceedings, 23rd Annual Conference = Proc. Front. Educ. Conf. Frontiers in Electronics = Sel Top Electr Syst Frontiers in Electronics = Sel. Top. Electr. Syst. Frontiers in Electronic Testing : A Kluwer International Book Series = Fr Electr T Frontiers in Electronic Testing : A Kluwer International Book Series = Fr. Electr. T. Frontiers in Electronic Testing = Front Electron Test Frontiers in Electronic Testing = Front. Electron. Test. Frontiers in Endocrinology = Front Endocrinol Frontiers in Endocrinology = Front. Endocrinol. Frontiers in Entrepreneurship = Perspect Entrep Frontiers in Entrepreneurship = Perspect. Entrep. Frontiers in Flood Research = Iahs-aish P Frontiers in Flood Research = Iahs-aish. P. Frontiers in Global Optimization = Noncon Optim Its App Frontiers in Global Optimization = Noncon. Optim. Its. App. Frontiers in Global Optimization = Nonconvex Optim Frontiers in Global Optimization = Nonconvex. Optim. Frontiers in Gynecological Endocrinology Series = Front Gyn E Frontiers in Gynecological Endocrinology Series = Front. Gyn. E. Frontiers in Headache Research = Fr Head Res Frontiers in Headache Research = Fr. Head. Res. Frontiers in Health Policy Research 1 = Nber Fr Hlth Pol Res Frontiers in Health Policy Research 1 = Nber. Fr. Hlth. Pol. Res. Frontiers in Health Policy Research 3 = Nber Fr Hlth Pol Res Frontiers in Health Policy Research 3 = Nber. Fr. Hlth. Pol. Res. Frontiers in Health Policy Research 4 = Nber Fr Hlth Pol Res Frontiers in Health Policy Research 4 = Nber. Fr. Hlth. Pol. Res. Frontiers in health policy research / National Bureau of Economic Research = Front Health Policy Res Frontiers in Health Policy Research, Volume 7 = Nber Fr Hlth Pol Res Frontiers in Health Policy Research, Volume 7 = Nber. Fr. Hlth. Pol. Res. Frontiers in Hepatology = Frontiers Hepatology Frontiers in Human Brain Topography = Int Congr Ser Frontiers in Human Brain Topography = Int. Congr. Ser. Frontiers in Human Neuroscience = Front Hum Neurosci Frontiers in Human Neuroscience = Front. Hum. Neurosci. Frontiers in Human Reproduction = Ann Ny Acad Sci Frontiers in Human Reproduction = Ann. Ny. Acad. Sci. Frontiers in Laser Spectroscopy = P Int Sch Phys Frontiers in Laser Spectroscopy = P. Int. Sch. Phys. Frontiers in Magnetism of Reduced Dimension Systems = Nato Asi 3 High Tech Frontiers in Magnetism of Reduced Dimension Systems = Nato. Asi. 3. High. Tech. Frontiers in Materials Research = Adv Materials Res Frontiers in Materials Research = Adv. Materials Res. Frontiers in Materials Science and Technology = Adv Mater Res-switz Frontiers in Materials Science and Technology = Adv. Mater. Res-switz. Frontiers in Materials Science and Technology = Adv Mat Res Frontiers in Materials Science and Technology = Adv. Mat. Res. Frontiers in Mathematics = Front Math Frontiers in Mathematics = Front. Math. Frontiers in Modeling and Control of Breathing = Adv Exp Med Biol Frontiers in Modeling and Control of Breathing = Adv. Exp. Med. Biol. Frontiers in Modern Carbohydrate Chemistry = Acs Sym Ser Frontiers in Modern Carbohydrate Chemistry = Acs. Sym. Ser. Frontiers in Modern Plasma Physics = Aip Conf Proc Frontiers in Modern Plasma Physics = Aip. Conf. Proc. Frontiers in Muscle Research : Myogenesis, Muscle Contraction and Muscle Dystrophy = Int Congr Ser Frontiers in Muscle Research : Myogenesis, Muscle Contraction and Muscle Dystrophy = Int. Congr. Ser. Frontiers in Nanoscale Science of Micron/submicron Devices = Nato Adv Sci I E-app Frontiers in Nanoscale Science of Micron/submicron Devices = Nato. Adv. Sci. I. E-app. Frontiers in Neural Circuits = Front Neural Circuit Frontiers in Neural Circuits = Front. Neural Circuit. Frontiers in Neurodegenerative Disorders and Aging: Fundamental Aspects, Clinical Perspectives and New Insights = Nato Sci Ser I Life Frontiers in Neurodegenerative Disorders and Aging: Fundamental Aspects, Clinical Perspectives and New Insights = Nato. Sci. Ser. I. Life. Frontiers in Neuroendocrinology = Front Neuroendocrin Frontiers in Neuroendocrinology = Front. Neuroendocrin. Frontiers in neuroendocrinology = Front Neuroendocrinol Frontiers in Neuroendocrinology = Front. Neuroendocrinol. Frontiers In Neuroendocrinology=Front Neuroendocrinol;; Frontiers in Neuroengineering = Front Neuroeng Frontiers in Neuroengineering = Front. Neuroeng. Frontiers in Neuroscience = Front Neurosci Frontiers in Neuroscience = Front. Neurosci. Frontiers in Nuclear Structure, Astrophysics, and Reactions = Aip Conf Proc Frontiers in Nuclear Structure, Astrophysics, and Reactions = Aip. Conf. Proc. Frontiers in Nuclear Structure Astrophysics, and Reactions: Finustar = Aip Conf Proc Frontiers in Nuclear Structure Astrophysics, and Reactions: Finustar = Aip. Conf. Proc. Frontiers in Numerical Analysis = Universitext Frontiers in Numerical Analysis = Universitext. Frontiers in Nutritional Science = Front Nutr Sci Frontiers in Nutritional Science = Front. Nutr. Sci. Frontiers in Pain Research = Frontier Pain Res Frontiers in Pain Research = Frontier. Pain Res. Frontiers in Particle Physics - Cargese 1994 = Nato Adv Sci Inst Se Frontiers in Particle Physics - Cargese 1994 = Nato. Adv. Sci. Inst. Se. Frontiers in Pathogen Detection: From Nanosensors to Systems = Proc Spie Frontiers in Pathogen Detection: From Nanosensors to Systems = Proc. Spie. Frontiers in Pathogen Detection: From Nanosensors to Systems = P Soc Photo-opt Ins Frontiers in Pathogen Detection: From Nanosensors to Systems = P. Soc. Photo-opt. Ins. Frontiers in Physics = Aip Conf Proc Frontiers in Physics = Aip. Conf. Proc. Frontiers in Planar Lightwave Circuit Technology Design, Simulation, and Fabrication = Nato Sci Ser Ii-math Frontiers in Planar Lightwave Circuit Technology Design, Simulation, and Fabrication = Nato. Sci. Ser. Ii-math. Frontiers in Planar Lightwave Circuit Technology Design, Simulation, and Fabrication = Nato Sci Ser Ii Math Frontiers in Planar Lightwave Circuit Technology Design, Simulation, and Fabrication = Nato. Sci. Ser. Ii. Math. Frontiers in Pure and Applied Probability = Front Pur Appl Prob Frontiers in Pure and Applied Probability = Front. Pur. Appl. Prob. Frontiers in Quantum Systems in Chemistry and Physics = Prog T Chem Frontiers in Quantum Systems in Chemistry and Physics = Prog. T. Chem. Frontiers in Quantum Systems in Chemistry and Physics = Prog Theor Chem Phys Frontiers in Quantum Systems in Chemistry and Physics = Prog. Theor. Chem. Phys. Frontiers in Sedimentary Geology = Front Sed Frontiers in Sedimentary Geology = Front. Sed. Frontiers in Smooth Muscle Research = Prog Clin Biol Res Frontiers in Smooth Muscle Research = Prog. Clin. Biol. Res. Frontiers in Superconducting Materials-new Materials and Applications = Mater Res Soc Symp P Frontiers in Superconducting Materials-new Materials and Applications = Mater. Res. Soc. Symp. P. Frontiers in The Economics of Aging = Nat Bur Ec Frontiers in The Economics of Aging = Nat. Bur. Ec. Frontiers in The Economics of Gender = Routl Siena Stud Pol Frontiers in The Economics of Gender = Routl. Siena. Stud. Pol. Frontiers in The Science and Technology of Polymer Recycling = Nato Adv Sci I E-app Frontiers in The Science and Technology of Polymer Recycling = Nato. Adv. Sci. I. E-app. Frontiers in Turbulence and Coherent Structures = World Sci Lect Notes Frontiers in Turbulence and Coherent Structures = World. Sci. Lect. Notes. Frontiers in Ultrafast Optics: Biomedical, Scientific, and Industrial Applications X = P Soc Photo-opt Ins Frontiers in Ultrafast Optics: Biomedical, Scientific, and Industrial Applications X = P. Soc. Photo-opt. Ins. Frontiers in Water Resource Economics = Nat Res Manag Policy Frontiers in Water Resource Economics = Nat. Res. Manag. Policy. Frontiers in zoology = Front Zool Frontiers in Zoology = Front Zool Frontiers in Zoology = Front. Zool. Frontiers of Alzheimer Research = Int Congr Ser Frontiers of Alzheimer Research = Int. Congr. Ser. Frontiers of Anthropology = Front Anthr Frontiers of Anthropology = Front. Anthr. Frontiers of Asian American Studies = Assoc As Am Frontiers of Asian American Studies = Assoc. As. Am. Frontiers of Astrophysics: A Celebration of Nrao's 50th Anniversary = Astr Soc P Frontiers of Astrophysics: A Celebration of Nrao's 50th Anniversary = Astr. Soc. P. Frontiers of biology = Front Biol Frontiers of Biology = Front. Biol. Frontiers of Characterization and Metrology for Nanoelectronics: 2007 = Aip Conf Proc Frontiers of Characterization and Metrology for Nanoelectronics: 2007 = Aip. Conf. Proc. Frontiers of Characterization and Metrology for Nanoelectronics: 2009 = Aip Conf Proc Frontiers of Characterization and Metrology for Nanoelectronics: 2009 = Aip. Conf. Proc. Frontiers of Chemical Dynamics = Nato Adv Sci Inst Se Frontiers of Chemical Dynamics = Nato. Adv. Sci. Inst. Se. Frontiers of Chemical Engineering in China = Front. Chem. Eng. Chin. Frontiers of Chemistry in China = Front. Chem. Chin. Frontiers of Combining Systems = Appl Log Ser Frontiers of Combining Systems = Appl. Log. Ser. Frontiers of Combining Systems = Lect Notes Artif Int Frontiers of Combining Systems = Lect. Notes. Artif. Int. Frontiers of Combining Systems, Proceedings = Lect Notes Artif Int Frontiers of Combining Systems, Proceedings = Lect. Notes. Artif. Int. Frontiers of Combining Systems, Proceedings = Lect Notes Comput Sc Frontiers of Combining Systems, Proceedings = Lect. Notes. Comput. Sc. Frontiers of Computational Fluid Dynamics 1994 = Cmas Frontiers of Computational Fluid Dynamics 1994 = Cmas. Frontiers of Computer Science in China = Front Comput Sci Chi Frontiers of Computer Science in China = Front. Comput. Sci. Chi. Frontiers of Cosmology = Nato Sci Ser Ii-math Frontiers of Cosmology = Nato. Sci. Ser. Ii-math. Frontiers of Cosmology = Nato Sci Ser Ii Math Frontiers of Cosmology = Nato. Sci. Ser. Ii. Math. Frontiers of Dental and Facial Esthetics = Cranio Grow Frontiers of Dental and Facial Esthetics = Cranio. Grow. Frontiers of Diabetes Research : Current Trends in Non-insulin-dependent Diabetes Mellitus = Int Congr Ser Frontiers of Diabetes Research : Current Trends in Non-insulin-dependent Diabetes Mellitus = Int. Congr. Ser. Frontiers of Diversity: Explorations in Contemporary Pluralism = At The Interface Frontiers of Diversity: Explorations in Contemporary Pluralism = At. The. Interface. Frontiers of Earth Science in China = Front Earth Sci. Chin. Frontiers of Economic Research = Frontiers Econom. Res. Frontiers of Economics and Globalization = Front Econ Global Frontiers of Economics and Globalization = Front. Econ. Global. Frontiers of Electrical and Electronic Engineering in China = Front. Electr. Electron. Eng. Chin. Frontiers of Energy and Power Engineering in China = Front. Energy Power Eng. Chin. Frontiers of Environmental Science & Engineering in China = Front Environ Sci En Frontiers of Environmental Science & Engineering in China = Front. Environ. Sci. En. Frontiers of Environmental Science & Engineering in China = Front. Environ. Sci. Eng. Chin. Frontiers of Field Theory, Quantum Gravity and Strings = Horiz In World Phys Frontiers of Field Theory, Quantum Gravity and Strings = Horiz. In. World. Phys. Frontiers of Fundamental and Computational Physics = Aip Conf Proc Frontiers of Fundamental and Computational Physics = Aip. Conf. Proc. Frontiers of Fundamental Physics = Aip Conf Proc Frontiers of Fundamental Physics = Aip. Conf. Proc. Frontiers of gastrointestinal research = Front Gastrointest Res Frontiers of Gastrointestinal Research = Front. Gastrointest. Res. Frontiers of Gastrointestinal Research = Front Gastroint Res Frontiers of Gastrointestinal Research = Front. Gastroint. Res. Frontiers of Gastrointestinal Research = Front Gastr Res Frontiers of Gastrointestinal Research = Front. Gastr. Res. Frontiers of health services management = Front Health Serv Manage Frontiers of Health Services Management = Front. Health Serv. Manage. Frontiers of High Performance Computing and Networking - Ispa 2006 Workshops, Proceedings = Lect Notes Comput Sc Frontiers of High Performance Computing and Networking - Ispa 2006 Workshops, Proceedings = Lect. Notes. Comput. Sc. Frontiers of High Performance Computing and Networking - Ispa 2007 Workshops = Lect Notes Comput Sc Frontiers of High Performance Computing and Networking - Ispa 2007 Workshops = Lect. Notes. Comput. Sc. Frontiers of High Pressure Research Ii: Application of High Pressure to Low-dimensional Novel Electronic Materials = Nato Sci Ser Ii-math Frontiers of High Pressure Research Ii: Application of High Pressure to Low-dimensional Novel Electronic Materials = Nato. Sci. Ser. Ii-math. Frontiers of High Pressure Research Ii: Application of High Pressure to Low-dimensional Novel Electronic Materials = Nato Sci Ser Ii Math Frontiers of High Pressure Research Ii: Application of High Pressure to Low-dimensional Novel Electronic Materials = Nato. Sci. Ser. Ii. Math. Frontiers of High-pressure Research = Nato Adv Sci I B-phy Frontiers of High-pressure Research = Nato. Adv. Sci. I. B-phy. Frontiers of hormone research = Front Horm Res Frontiers of Hormone Research = Front Horm Res Frontiers of Hormone Research = Front. Horm. Res. Frontiers of Infectious Diseases = Fr Infec D Frontiers of Infectious Diseases = Fr. Infec. D. Frontiers of Laser Spectroscopy of Gases = Nato Adv Sci I C-mat Frontiers of Laser Spectroscopy of Gases = Nato. Adv. Sci. I. C-mat. Frontiers of Librarianship-syracuse University = Front Librariansh-sy Frontiers of Librarianship-syracuse University = Front. Librariansh-sy. Frontiers of Materials Science in China = Front. Mater. Sci. Chin. Frontiers of Mathematics in China = Front Math China Frontiers of Mathematics in China = Front. Math. China Frontiers of Mechanical Engineering in China = Front. Mech. Eng. Chin. Frontiers of Medical and Biological Engineering=Front Med Biol Eng;; Frontiers of Medical and Biological Engineering = Front. Med. Biol. Eng. Frontiers of medical and biological engineering : the international journal of the Japan Society of Medical Electronics and Biological Engineering = Front Med Biol Eng Frontiers of Mucosal Immunology, Vol 1 = Int Congr Ser Frontiers of Mucosal Immunology, Vol 1 = Int. Congr. Ser. Frontiers of Mucosal Immunology, Vol 2 = Int Congr Ser Frontiers of Mucosal Immunology, Vol 2 = Int. Congr. Ser. Frontiers of Multifunctional Integrated Nanosystems = Nato Sci Ser Ii-math Frontiers of Multifunctional Integrated Nanosystems = Nato. Sci. Ser. Ii-math. Frontiers of Multifunctional Integrated Nanosystems = Nato Sci Ser Ii Math Frontiers of Multifunctional Integrated Nanosystems = Nato. Sci. Ser. Ii. Math. Frontiers of Multifunctional Nanosystems = Nato Sci Ser Ii-math Frontiers of Multifunctional Nanosystems = Nato. Sci. Ser. Ii-math. Frontiers of Multifunctional Nanosystems = Nato Sci Ser Ii Math Frontiers of Multifunctional Nanosystems = Nato. Sci. Ser. Ii. Math. Frontiers of Nano-optoelectronic Systems = Nato Sci Ser Ii-math Frontiers of Nano-optoelectronic Systems = Nato. Sci. Ser. Ii-math. Frontiers of Nano-optoelectronic Systems = Nato Sci Ser Ii Math Frontiers of Nano-optoelectronic Systems = Nato. Sci. Ser. Ii. Math. Frontiers of Nephrology = Int Congr Ser Frontiers of Nephrology = Int. Congr. Ser. Frontiers of Neurology and Neuroscience = Front Neurol Neurosc Frontiers of Neurology and Neuroscience = Front. Neurol. Neurosc. Frontiers of neurology and neuroscience = Front Neurol Neurosci Frontiers of Neurology = Ann Ny Acad Sci Frontiers of Neurology = Ann. Ny. Acad. Sci. Frontiers of Nmr in Molecular Biology = Ucla Sym Bi Frontiers of Nmr in Molecular Biology = Ucla. Sym. Bi. Frontiers of Nuclear Structure = Aip Conf Proc Frontiers of Nuclear Structure = Aip. Conf. Proc. Frontiers of Numerical Analysis = Universitext Frontiers of Numerical Analysis = Universitext. Frontiers of Optical Spectroscopy: Investigating Extreme Physical Conditions With Advanced Optical Techniques = Nato Sci Ser Ii-math Frontiers of Optical Spectroscopy: Investigating Extreme Physical Conditions With Advanced Optical Techniques = Nato. Sci. Ser. Ii-math. Frontiers of Optical Spectroscopy: Investigating Extreme Physical Conditions With Advanced Optical Techniques = Nato Sci Ser Ii Math Frontiers of Optical Spectroscopy: Investigating Extreme Physical Conditions With Advanced Optical Techniques = Nato. Sci. Ser. Ii. Math. Frontiers of Oral Biology = Front Oral Biol Frontiers of Oral Biology = Front. Oral Biol. Frontiers of Oral Physiology = Front Oral Frontiers of Oral Physiology = Front. Oral Frontiers of oral physiology = Front Oral Physiol Frontiers of Oral Physiology = Front. Oral Physiol. Frontiers of Particle Beams : Observation, Diagnosis and Correction = Lect Notes Phys Frontiers of Particle Beams : Observation, Diagnosis and Correction = Lect. Notes. Phys. Frontiers of Philosophy = Fron Philos Frontiers of Philosophy = Fron. Philos. Frontiers of Photobiology = Int Congr Ser Frontiers of Photobiology = Int. Congr. Ser. Frontiers of Physics = Front Phys-beijing Frontiers of Physics = Front. Phys-beijing. Frontiers of Physics in China = Front Phys China Frontiers of Physics in China = Front. Phys. China Frontiers of Primary Care = Front Pr Ca Frontiers of Primary Care = Front. Pr. Ca. Frontiers of Propulsion Science = Prog Astronaut Aeron Frontiers of Propulsion Science = Prog. Astronaut. Aeron. Frontiers of Radiation Therapy and Oncology = Front Radiat Ther On Frontiers of Radiation Therapy and Oncology = Front. Radiat. Ther. On. Frontiers of radiation therapy and oncology = Front Radiat Ther Oncol Frontiers of Radiation Therapy and Oncology=Front Radiat Ther Oncol;; Frontiers of Radiation Therapy and Oncology = Front. Radiat. Ther. Oncol. Frontiers of Reactive Oxygen Species in Biology and Medicine = Int Congr Ser Frontiers of Reactive Oxygen Species in Biology and Medicine = Int. Congr. Ser. Frontiers of Social Psychology = Front Soc Psychol Frontiers of Social Psychology = Front. Soc. Psychol. Frontiers of Space and Ground-based Astronomy = Astrophys Space Sc L Frontiers of Space and Ground-based Astronomy = Astrophys. Space Sc. L. Frontiers of Stellar Evolution = Astr Soc P Frontiers of Stellar Evolution = Astr. Soc. P. Frontiers of Stress Research = Neur Cont B Frontiers of Stress Research = Neur. Cont. B. Frontiers of The Mechanisms of Memory and Dementia = Int Congr Ser Frontiers of The Mechanisms of Memory and Dementia = Int. Congr. Ser. Frontiers of Time: Retrocausation-experiment and Theory = Aip Conf Proc Frontiers of Time: Retrocausation-experiment and Theory = Aip. Conf. Proc. Frontiers of Www Research and Development - Apweb 2006, Proceedings = Lect Notes Comput Sc Frontiers of Www Research and Development - Apweb 2006, Proceedings = Lect. Notes. Comput. Sc. Frontiers On Nonlinear Dynamics = Front Nonlinear Dyn Frontiers On Nonlinear Dynamics = Front. Nonlinear Dyn. Frontiers Science Series = Front Sci Series Frontiers Science Series = Front. Sci. Series Frontier Topics in Nuclear Physics = Nato Adv Sci I B-phy Frontier Topics in Nuclear Physics = Nato. Adv. Sci. I. B-phy. Frontier Topics in Nuclear Physics = Nato Adv Sci Inst Se Frontier Topics in Nuclear Physics = Nato. Adv. Sci. Inst. Se. Frontline and Factory: Comparative Perspectives On The Chemical Industry At War 1914-1924 = Archimedes Frontline and Factory: Comparative Perspectives On The Chemical Industry At War 1914-1924 = Archimedes. Front Lines = Front Lines Front lines research = Front Lines Res Fronts, Waves and Vortices in Geophysical Flows = Lect Notes Phys Fronts, Waves and Vortices in Geophysical Flows = Lect. Notes. Phys. Frozen Section Library: Bone = Frozen Sect Libr Frozen Section Library: Bone = Frozen Sect. Libr. Frozen Section Library: Central Nervous System = Frozen Sect Libr Frozen Section Library: Central Nervous System = Frozen Sect. Libr. Frozen Section Library = Frozen Sect Libr Frozen Section Library = Frozen Sect. Libr. Frozen Section Library: Genitourinary Tract = Frozen Sect Libr Frozen Section Library: Genitourinary Tract = Frozen Sect. Libr. Frozen Section Library: Lung = Frozen Sect Libr Frozen Section Library: Lung = Frozen Sect. Libr. Frozen Section Library: Pancreas = Frozen Sect Libr Frozen Section Library: Pancreas = Frozen Sect. Libr. Frtl-5 Today = Int Congr Ser Frtl-5 Today = Int. Congr. Ser. Fruhe Neuzeit-studien Und Dokumente Zur Deutschen Literatur Und Kultur Im Europaischen Kontext = Fruhe Neuzeit-stud D Fruhe Neuzeit-studien Und Dokumente Zur Deutschen Literatur Und Kultur Im Europaischen Kontext = Fruhe Neuzeit-stud. D. Fruhe Neuzeit-studien Und Dokumente Zur Deutschen Literatur Und Kultur Im Europaischen Kontext = Fruhe Neuzeit Studie Fruhe Neuzeit-studien Und Dokumente Zur Deutschen Literatur Und Kultur Im Europaischen Kontext = Fruhe Neuzeit. Studie. Fruhmittelalterliche Studien = Fruhmittelalt Stud Frühmittelalterliche Studien. Jahrbuch des Instituts für Frühmittelalterforschung der Universität Münster = FruehMitAltSt Fruit and Vegetable Consumption and Health = Food Bev Consum Hlth Fruit and Vegetable Consumption and Health = Food. Bev. Consum. Hlth. Fruit and Vegetable Flavour: Recent Advances and Future Prospects = Woodhead Food Ser Fruit and Vegetable Flavour: Recent Advances and Future Prospects = Woodhead. Food. Ser. Fruit Flavors = Acs Sym Ser Fruit Flavors = Acs. Sym. Ser. Fruit Juices: Properties, Consumption and Nutrition = Food Bev Consum Hlth Fruit Juices: Properties, Consumption and Nutrition = Food. Bev. Consum. Hlth. Fruits = Fruits Fruits of Empirical Linguistics, Vol 1: Process = Stud Genera Grammar Fruits of Empirical Linguistics, Vol 1: Process = Stud. Genera. Grammar. Fruits of Empirical Linguistics, Vol 1: Process = Stud Generat Gramm Fruits of Empirical Linguistics, Vol 1: Process = Stud. Generat. Gramm. Fruits of Empirical Linguistics, Vol 2: Product = Stud Genera Grammar Fruits of Empirical Linguistics, Vol 2: Product = Stud. Genera. Grammar. Fruits of Empirical Linguistics, Vol 2: Product = Stud Generat Gramm Fruits of Empirical Linguistics, Vol 2: Product = Stud. Generat. Gramm. Fruit Varieties Journal = Fruit Varieties J Fruit Varieties Journal = Fruit Varieties J. Frutticoltura = Frutticoltura Frye Studies = Frye Studies Fs'09: Proceedings of The 10th Wseas International Conference On Fuzzy Systems = Artif Int Ser Wseas Fs'09: Proceedings of The 10th Wseas International Conference On Fuzzy Systems = Artif. Int. Ser. Wseas Fsh Action and Intraovarian Regulation = Stud Proferlit Fsh Action and Intraovarian Regulation = Stud. Proferlit. Fst Tcs 2000: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Fst Tcs 2000: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Fst Tcs 2002: Foundations of Software Technology and Theoetical Computer Science, Proceedings = Lect Notes Comput Sc Fst Tcs 2002: Foundations of Software Technology and Theoetical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Fst Tcs 2003: Foundations of Software Technology and Theoretical Computer Science = Lect Notes Comput Sc Fst Tcs 2003: Foundations of Software Technology and Theoretical Computer Science = Lect. Notes. Comput. Sc. Fsttcs 2004: Foundations of Software Technology and Theoretical Computer Science = Lect Notes Comput Sc Fsttcs 2004: Foundations of Software Technology and Theoretical Computer Science = Lect. Notes. Comput. Sc. Fsttcs 2005: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Fsttcs 2005: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Fsttcs 2006: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Fsttcs 2006: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Fsttcs 2007: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Fsttcs 2007: Foundations of Software Technology and Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Ftiziologia = Ftiziologia Fudan University = J. Fudan Univ. Nat. Sci. Fu dan xue bao. Zi ran ke xue ban = Journal of Fudan University. Natural science|Fu Dan Xue Bao Zi Ran Ke Xue Ban Fuel Cell Chemistry and Operation = Acs Sym Ser Fuel Cell Chemistry and Operation = Acs. Sym. Ser. Fuel Cell Micro-grids = Power Syst Fuel Cell Micro-grids = Power. Syst. Fuel Cells and Hydrogen Energy = Fuel Cell Hydro Ener Fuel Cells and Hydrogen Energy = Fuel Cell. Hydro. Ener. Fuel Cells and Hydrogen Storage = Struct Bond Fuel Cells and Hydrogen Storage = Struct. Bond. Fuel Cells Bulletin = Fuel Cells Bull. Fuel Cell Seminar 2007 = Ecs Transactions Fuel Cell Seminar 2007 = Ecs. Transactions. Fuel Cells = Fuel Cells Fuel Cells I = Adv Polym Sci Fuel Cells I = Adv. Polym. Sci. Fuel Cells Ii = Adv Polym Sci Fuel Cells Ii = Adv. Polym. Sci. Fuel Cells (Weinheim, Germany) = Fuel Cells (Weinheim, Ger.) Fuel Cell Technologies: State and Perspectives = Nato Sci Ser Ii-math Fuel Cell Technologies: State and Perspectives = Nato. Sci. Ser. Ii-math. Fuel Cell Technologies: State and Perspectives = Nato Sci Ser Ii Math Fuel Cell Technologies: State and Perspectives = Nato. Sci. Ser. Ii. Math. Fuel = Fuel Fuel Homeostasis and The Nervous System = Adv Exp Med Biol Fuel Homeostasis and The Nervous System = Adv. Exp. Med. Biol. Fuel Injection Systems = Imeche Conf Trans Fuel Injection Systems = Imeche. Conf. Trans. Fuel Injection Systems = Imeche Sem Fuel Injection Systems = Imeche. Sem. Fuel Processing Technology = Fuel Process Technol Fuel Processing Technology = Fuel Process. Technol. Fuels and Chemicals From Biomass = Acs Sym Ser Fuels and Chemicals From Biomass = Acs. Sym. Ser. Fuels and Powertrain = Vdi Bericht Fuels and Powertrain = Vdi. Bericht. Fuel Science and Technology International = Fuel Sci. Technol. Int. Fuel Science & Technology International = Fuel Sci Techn Int Fuel Science & Technology International = Fuel Sci. Techn. Int. Fuels for Automotive and Industrial Diesel Engines = Imeche Sem Fuels for Automotive and Industrial Diesel Engines = Imeche. Sem. Fuerzas armadas de Venezuela (Caracas, Venezuela : 1971) = Rev Fuerzas Armadas Venez Fugitive leaves from the historical collections / Library of the College of Physicians of Philadelphia. College of Physicians of Philadelphia. Library = Fugitive Leaves Hist Collect Fujian Shifan Daxue Xuebao = Fujian Shifan Daxue Xuebao Ziran Kexue Ban Fujian yi yao za zhi = Fujian medical journal|Fu Jian Yi Yao Za Zhi Fuji Business History Series = Fuj Busin Hist Ser Fuji Business History Series = Fuj. Busin. Hist. Ser. Fujitsu Scientific & Technical Journal = Fujitsu Sci Tech J Fujitsu Scientific & Technical Journal = Fujitsu Sci. Tech. J. Fukaya Categories and Picard-lefschetz Theory = Zur Lect Adv Math Fukaya Categories and Picard-lefschetz Theory = Zur. Lect. Adv. Math. Fukuoka Igaku Zasshi (Fukuoka Acta Medica) = Fukuoka Igaku Zasshi Fukuoka Igaku Zasshi. Fukuoka Acta Medica=Fukuoka Igaku Zasshi;; Fukuoka Shika Daigaku Gakkai zasshi = Fukuoka Shika Daigaku Gakkai Zasshi Fukuoka Shika Daigaku Gakkai Zasshi = Fukuoka Shika Daigaku Gakkai Zasshi Fukuoka University Science Reports = Fukuoka Univ. Sci. Rep. [Fukushima igaku zasshi] Fukushima medical journal = Fukushima Igaku Zasshi Fukushima journal of medical science = Fukushima J Med Sci Fukushima Journal of Medical Science=Fukushima J Med Sci;; Fukushima Journal of Medical Science = Fukushima J. Med. Sci. Fukushima University = Sci. Rep. Fac. Ed. Fukushima Univ. Fulbright Institute Series On International Affairs = F I Ser Int Aff Fulbright Institute Series On International Affairs = F. I. Ser. Int. Aff. Fulbright Papers = Fulbright P Fulbright Papers = Fulbright P. Full-chip Nanometer Routing Techniques = Analog Circ Sig Proc Full-chip Nanometer Routing Techniques = Analog. Circ. Sig. Proc. Fulleranes: The Hydrogenated Fullerenes = Carbon Mater-chem Ph Fulleranes: The Hydrogenated Fullerenes = Carbon. Mater-chem. Ph. Fullerence, Nanotubes, and Carbon Nanostructures = Fullerenes Nanotubes Carbon Nanostruct. Fullerene-based Materials: Structures and Properties = Struct Bond Fullerene-based Materials: Structures and Properties = Struct. Bond. Fullerenes and Carbon Based Materials = Eur Mat Res Fullerenes and Carbon Based Materials = Eur. Mat. Res. Fullerenes and Nanotubes: The Building Blocks of Next Generation Nanodevices = Elec Soc S Fullerenes and Nanotubes: The Building Blocks of Next Generation Nanodevices = Elec. Soc. S. Fullerenes and Photonics Iii = P Soc Photo-opt Ins Fullerenes and Photonics Iii = P. Soc. Photo-opt. Ins. Fullerenes and Photonics Ii = P Soc Photo-opt Ins Fullerenes and Photonics Ii = P. Soc. Photo-opt. Ins. Fullerenes and Photonics Iv = P Soc Photo-opt Ins Fullerenes and Photonics Iv = P. Soc. Photo-opt. Ins. Fullerenes and Photonics = P Soc Photo-opt Ins Fullerenes and Photonics = P. Soc. Photo-opt. Ins. Fullerenes and Related Structures = Top Curr Chem Fullerenes and Related Structures = Top. Curr. Chem. Fullerene Science and Technology = Fullerene Sci Techn Fullerene Science and Technology = Fullerene Sci. Techn. Fullerene Science and Technology = Fullerene Sci. Technol. Fullerenes for The New Millennium = Elec Soc S Fullerenes for The New Millennium = Elec. Soc. S. Fullerenes, Nanotubes, and Carbon Nanostructures = Fullerenes, Nanotubes, Carbon Nanostruct. Fullerenes Nanotubes and Carbon Nanostructures = Fuller Nanotub Car N Fullerenes Nanotubes and Carbon Nanostructures = Fuller. Nanotub. Car. N. Fullerenes: Principles and Applications = Rsc Nanosci Nanotech Fullerenes: Principles and Applications = Rsc. Nanosci. Nanotech. Fullerenes : Synthesis, Properties, and Chemistry of Large Carbon Clusters = Acs Sym Ser Fullerenes : Synthesis, Properties, and Chemistry of Large Carbon Clusters = Acs. Sym. Ser. Fullness of The Logos in The Key of Life, Book I = Analecta Husserl Fullness of The Logos in The Key of Life, Book I = Analecta. Husserl. Full-potential Electronic Structure Method: Energy and Force Calculations With Density Functional and Dynamical Mean Field Theory = Springer Ser Solid-s Full-potential Electronic Structure Method: Energy and Force Calculations With Density Functional and Dynamical Mean Field Theory = Springer. Ser. Solid-s. Full Seismic Waveform Modelling and Inversion = Adv Geophys Env Mech Full Seismic Waveform Modelling and Inversion = Adv. Geophys. Env. Mech. Full Use of Labour Potential in Transformation in The Cee States = Okon Theorie Hsch Full Use of Labour Potential in Transformation in The Cee States = Okon. Theorie. Hsch. Ful-, orr-, gegegyogyazat = Fulorrgegegyogyaszat Fumigants = Acs Sym Ser Fumigants = Acs. Sym. Ser. Fumonisins in Food = Adv Exp Med Biol Fumonisins in Food = Adv. Exp. Med. Biol. Fun and Games, Proceedings = Lect Notes Comput Sc Fun and Games, Proceedings = Lect. Notes. Comput. Sc. Funcao Educativa Dos Museus = Ser Livros Mus Nac Funcao Educativa Dos Museus = Ser. Livros. Mus. Nac. Functional Analysis and Complex Analysis = Contemp Math Functional Analysis and Complex Analysis = Contemp. Math. Functional Analysis and its Applications = Funct. Anal. Appl. Functional Analysis and Its Applications = Funct Anal Appl+ Functional Analysis and Its Applications = Funct. Anal. Appl+.+ Functional Analysis = Lect Notes Pure Appl Functional Analysis = Lect. Notes. Pure. Appl. Functional Analysis On The Eve of The 21st Century - in Honor of The Eightieth Birthday of I. M. Gelfand, Vol I = Prog Math Functional Analysis On The Eve of The 21st Century - in Honor of The Eightieth Birthday of I. M. Gelfand, Vol I = Prog. Math. Functional Analysis On The Eve of The 21st Century, Vol Ii = Prog Math Functional Analysis On The Eve of The 21st Century, Vol Ii = Prog. Math. Functional Analysis, Sobolev Spaces and Partial Differential Equations = Universitext Functional Analysis, Sobolev Spaces and Partial Differential Equations = Universitext. Functional Analytic Methods for Evolution Equations = Lect Notes Math Functional Analytic Methods for Evolution Equations = Lect. Notes. Math. Functional-analytic Methods for Partial Differential Equations = Lect Notes Math Functional-analytic Methods for Partial Differential Equations = Lect. Notes. Math. Functional Anatomy of The Neuroendocrine Hypothalamus = Ciba F Symp Functional Anatomy of The Neuroendocrine Hypothalamus = Ciba. F. Symp. Functional Anatomy of The Sleep-wakefulness Cycle: Wakefulness = Adv Anat Embryol Cel Functional Anatomy of The Sleep-wakefulness Cycle: Wakefulness = Adv. Anat. Embryol. Cel. Functional and Constraint Logic Programming = Lect Notes Comput Sc Functional and Constraint Logic Programming = Lect. Notes. Comput. Sc. Functional and developmental morphology = Funct Dev Morphol Functional and Developmental Morphology = Funct. Dev. Morphol. Functional and Integrative Genomics = Funct. Integr. Genomics Functional and Logic Programming = Lect Notes Comput Sc Functional and Logic Programming = Lect. Notes. Comput. Sc. Functional and Logic Programming, Proceedings = Lect Notes Comput Sc Functional and Logic Programming, Proceedings = Lect. Notes. Comput. Sc. Functional and Operatorial Statistics = Contrib Stat Functional and Operatorial Statistics = Contrib. Stat. Functional and Operatorial Statistics = Contr Stat Functional and Operatorial Statistics = Contr. Stat. Functional and Speciality Beverage Technology = Woodhead Food Ser Functional and Speciality Beverage Technology = Woodhead. Food. Ser. Functional and Structural Materials = Mater Sci Forum Functional and Structural Materials = Mater. Sci. Forum. Functional and Systemic Linguistics = Trend Lin S Functional and Systemic Linguistics = Trend. Lin. S. Functional Approach to Nonlinear Models of Water Flow in Soils = Math Model-theor App Functional Approach to Nonlinear Models of Water Flow in Soils = Math. Model-theor. App. Functional Biomaterials = Key Eng Mat Functional Biomaterials = Key. Eng. Mat. Functional Categories in Learner Language = Stud Lang Acquis Functional Categories in Learner Language = Stud. Lang. Acquis. Functional Dairy Products, Volume 2 = Woodhead Publ Food S Functional Dairy Products, Volume 2 = Woodhead. Publ. Food. S. Functional Data Analysis With R and Matlab = Use R Functional Data Analysis With R and Matlab = Use. R Functional Design Errors in Digital Circuits: Diagnosis, Correction and Repair = Lect Notes Electr En Functional Design Errors in Digital Circuits: Diagnosis, Correction and Repair = Lect. Notes. Electr. En. Functional Differential Equations = Funct. Differ. Equ. Functional Disorders of The Gastrointestinal Tract = Solvay Pharmaceut Functional Disorders of The Gastrointestinal Tract = Solvay. Pharmaceut. Functional Ecology = Funct Ecol Functional Ecology = Funct. Ecol. Functional Equations and Characterization Problems On Locally Compact Abelian Groups = Ems Tracts Math Functional Equations and Characterization Problems On Locally Compact Abelian Groups = Ems. Tracts. Math. Functional Equations and Inequalities With Applications = Springer Monogr Math Functional Equations and Inequalities With Applications = Springer. Monogr. Math. Functional Equations, Difference Inequalities and Ulam Stability Notions (fun) = Math Res Dev Functional Equations, Difference Inequalities and Ulam Stability Notions (fun) = Math. Res. Dev. Functional Foods and Nutraceuticals Series = Funct Food Nutra Ser Functional Foods and Nutraceuticals Series = Funct. Food. Nutra. Ser. Functional Foods Ii = Roy Soc Ch Functional Foods Ii = Roy. Soc. Ch. Functional Foods = Woodhead Food Ser Functional Foods = Woodhead. Food. Ser. Functional Genomics and Proteomics in The Clinical Neurosciences = Prog Brain Res Functional Genomics and Proteomics in The Clinical Neurosciences = Prog. Brain. Res. Functional Glycomics = Method Enzymol Functional Glycomics = Method. Enzymol. Functional Glycomics: Methods and Protocols = Methods Mol Biol Functional Glycomics: Methods and Protocols = Methods Mol. Biol. Functional Grammar = Funct Grammar Functional Grammar = Funct. Grammar Functional Imaging and Modeling of Heart, Proceedings = Lect Notes Comput Sc Functional Imaging and Modeling of Heart, Proceedings = Lect. Notes. Comput. Sc. Functional Imaging and Modeling of The Heart, Proceedings = Lect Notes Comput Sc Functional Imaging and Modeling of The Heart, Proceedings = Lect. Notes. Comput. Sc. Functional Imaging and Optical Manipulation of Living Cells, Proceedings Of = P Soc Photo-opt Ins Functional Imaging and Optical Manipulation of Living Cells, Proceedings Of = P. Soc. Photo-opt. Ins. Functional Informatics in Drug Discovery = Drug Discov Ser Functional Informatics in Drug Discovery = Drug Discov. Ser. Functional Integration = Nato Adv Sci I B-phy Functional Integration = Nato. Adv. Sci. I. B-phy. Functional Integration of Opto-electro-mechanical Devices and Systems Ii = P Soc Photo-opt Ins Functional Integration of Opto-electro-mechanical Devices and Systems Ii = P. Soc. Photo-opt. Ins. Functional Integration of Opto-electro-mechanical Devices and Systems = P Soc Photo-opt Ins Functional Integration of Opto-electro-mechanical Devices and Systems = P. Soc. Photo-opt. Ins. Functional & Integrative Genomics = Funct Integr Genomic Functional & Integrative Genomics = Funct. Integr. Genomic. Functional & integrative genomics = Funct Integr Genomics Functional & Integrative Genomics = Funct. Integr. Genomics Functionality, Intentionality and Morality = Res Emotion Organ Functionality, Intentionality and Morality = Res. Emotion. Organ. Functionalized and Sensing Materials = Adv Mater Res-switz Functionalized and Sensing Materials = Adv. Mater. Res-switz. Functionalized and Sensing Materials = Adv Mat Res Functionalized and Sensing Materials = Adv. Mat. Res. Functionalized Nanoscale Materials, Devices and Systems = Nato Science Peace S Functionalized Nanoscale Materials, Devices and Systems = Nato. Science. Peace. S. Functionalized Nanoscale Materials, Devices and Systems = Nato Sci Peace Sec B Functionalized Nanoscale Materials, Devices and Systems = Nato. Sci. Peace. Sec. B. Functionally Graded Materials 2000 = Ceram Trans Functionally Graded Materials 2000 = Ceram. Trans. Functionally Graded Materials Viii = Mater Sci Forum Functionally Graded Materials Viii = Mater. Sci. Forum. Functionally Graded Materials Vii = Mater Sci Forum Functionally Graded Materials Vii = Mater. Sci. Forum. Functional Manufacturing Technologies and Ceeusro Ii = Key Eng Mater Functional Manufacturing Technologies and Ceeusro Ii = Key. Eng. Mater. Functional Manufacturing Technologies and Ceeusro I = Key Eng Mat Functional Manufacturing Technologies and Ceeusro I = Key. Eng. Mat. Functional Manufacturing Technologies and Ceeusro I = Key Eng Mater Functional Manufacturing Technologies and Ceeusro I = Key. Eng. Mater. Functional Materials and Biomaterials = Adv Polym Sci Functional Materials and Biomaterials = Adv. Polym. Sci. Functional Materials and Devices = Mater Sci Forum Functional Materials and Devices = Mater. Sci. Forum. Functional Materials and Nanotechnologies : Fm&nt-2007 = J Phys Conf Ser Functional Materials and Nanotechnologies : Fm&nt-2007 = J. Phys. Conf. Ser. Functional Materials Letters = Funct Mater Lett Functional Materials Letters = Funct. Mater. Lett. Functional Metal-organic Frameworks: Gas Storage, Separation and Catalysis = Top Curr Chem Functional Metal-organic Frameworks: Gas Storage, Separation and Catalysis = Top. Curr. Chem. Functional Metal-oxide Nanostructures = Mater Res Soc Symp P Functional Metal-oxide Nanostructures = Mater. Res. Soc. Symp. P. Functional Microbial Genomics = Method Microbiol Functional Microbial Genomics = Method. Microbiol. Functional Molecular Nanostructures = Top Curr Chem Functional Molecular Nanostructures = Top. Curr. Chem. Functional Monitoring and Drug-tissue Interaction = P Soc Photo-opt Ins Functional Monitoring and Drug-tissue Interaction = P. Soc. Photo-opt. Ins. Functional Nanomaterials for Optoelectronics and Other Applications = Solid State Phenomen Functional Nanomaterials for Optoelectronics and Other Applications = Solid. State. Phenomen. Functional Nanomaterials for Optoelectronics and Other Applications = Sol St Phen Functional Nanomaterials for Optoelectronics and Other Applications = Sol. St. Phen. Functional Nanostructured Materials Through Multiscale Assembly and Novel Patterning Techniques = Mater Res Soc Symp P Functional Nanostructured Materials Through Multiscale Assembly and Novel Patterning Techniques = Mater. Res. Soc. Symp. P. Functional Nanostructures: Processing, Characterization, and Applications = Nanostruct Sci Techn Functional Nanostructures: Processing, Characterization, and Applications = Nanostruct. Sci. Techn. Functional Neuroanatomy of Pain = Adv Anat Embryol Cel Functional Neuroanatomy of Pain = Adv. Anat. Embryol. Cel. Functional neurology = Funct Neurol Functional Neurology=Funct Neurol;; Functional Neurology = Funct Neurol Functional Neurology = Funct. Neurol. Functional Neuroscience: Evoked Potentials and Magnetic Fields = Eeg Cl N Su Functional Neuroscience: Evoked Potentials and Magnetic Fields = Eeg. Cl. N. Su. Functional Organisation of The Human Visual Cortex = Wenn Gr Int Functional Organisation of The Human Visual Cortex = Wenn. Gr. Int. Functional Orthodontist = Funct. Orthod. Functional Photonic and Fiber Devices = P Soc Photo-opt Ins Functional Photonic and Fiber Devices = P. Soc. Photo-opt. Ins. Functional Photonic Integrated Circuits = P Soc Photo-opt Ins Functional Photonic Integrated Circuits = P. Soc. Photo-opt. Ins. Functional Phthalocyanine Molecular Materials = Struct Bond Functional Phthalocyanine Molecular Materials = Struct. Bond. Functional plant biology : FPB = Funct Plant Biol Functional Plant Biology = Funct Plant Biol Functional Plant Biology = Funct. Plant Biol. Functional Polymer Nanocomposties for Energy Storage and Conversion = Acs Sym Ser Functional Polymer Nanocomposties for Energy Storage and Conversion = Acs. Sym. Ser. Functional Preservation and Quality of Life in Head and Neck Radiotherapy = Med Radiol Radiat On Functional Preservation and Quality of Life in Head and Neck Radiotherapy = Med. Radiol. Radiat. On. Functional Programming Languages and Computer Architecture = Lect Notes Comput Sc Functional Programming Languages and Computer Architecture = Lect. Notes. Comput. Sc. Functional Programming Languages in Education = Lect Notes Comput Sc Functional Programming Languages in Education = Lect. Notes. Comput. Sc. Functional Properties of Nanostructured Materials = Nato Sci Ser Ii-math Functional Properties of Nanostructured Materials = Nato. Sci. Ser. Ii-math. Functional Properties of Nanostructured Materials = Nato Sci Ser Ii Math Functional Properties of Nanostructured Materials = Nato. Sci. Ser. Ii. Math. Functional Proteomics and Nanotechnology-based Microarrays = Pan St Ser Nanobiote Functional Proteomics and Nanotechnology-based Microarrays = Pan. St. Ser. Nanobiote. Functional Proteomics: Methods and Protocols = Methods Mol Biol Functional Proteomics: Methods and Protocols = Methods Mol. Biol. Functional Rehabilitation in Neurosurgery and Neurotraumatology = Act Neur S Functional Rehabilitation in Neurosurgery and Neurotraumatology = Act. Neur. S. Functional Renormalization and Ultracold Quantum Gases = Springer Theses-reco Functional Renormalization and Ultracold Quantum Gases = Springer. Theses-reco. Functional Status Measurement in Primary Care = Front Pr Ca Functional Status Measurement in Primary Care = Front. Pr. Ca. Functional-structural Plant Modelling in Crop Production = Wag Ur Fron Functional-structural Plant Modelling in Crop Production = Wag. Ur. Fron. Functional Thin Films and Nanostructures for Sensors: Synthesis, Physics, and Applications = Integr Anal Syst Functional Thin Films and Nanostructures for Sensors: Synthesis, Physics, and Applications = Integr. Anal. Syst. Function and Regulation of Cellular Systems = Math Biosci Interac Function and Regulation of Cellular Systems = Math. Biosci. Interac. Function and Regulation of Cellular Systems = Math Biosci Interact Function and Regulation of Cellular Systems = Math. Biosci. Interact. Function and Specificity of Gamma/delta T Cells = Curr Top Microbiol Function and Specificity of Gamma/delta T Cells = Curr. Top. Microbiol. Functiones Et Approximatio Commentarii Mathematici = Funct Approx Comm Ma Functiones Et Approximatio Commentarii Mathematici = Funct. Approx. Comm. Ma. Functiones Et Approximatio Commentarii Mathematici, Vol 42, Pt 1 = Funct Approx Comm Ma Functiones Et Approximatio Commentarii Mathematici, Vol 42, Pt 1 = Funct. Approx. Comm. Ma. Functiones Et Approximatio Commentarii Mathematici, Vol 43, Pt 1 = Funct Approx Comm Ma Functiones Et Approximatio Commentarii Mathematici, Vol 43, Pt 1 = Funct. Approx. Comm. Ma. Functiones Et Approximatio: Commentarii Mathematici, Vol 43, Pt 2 = Funct Approx Comm Ma Functiones Et Approximatio: Commentarii Mathematici, Vol 43, Pt 2 = Funct. Approx. Comm. Ma. Functiones Et Approximatio Commentarii Mathematici, Vol 44, Pt 1 = Funct Approx Comm Ma Functiones Et Approximatio Commentarii Mathematici, Vol 44, Pt 1 = Funct. Approx. Comm. Ma. Functioning and Management of European Beech Ecosystems = Ecol Stud-anal Synth Functioning and Management of European Beech Ecosystems = Ecol. Stud-anal. Synth. Function of Proverbs in Discourse: The Case of A Mexican Transnational Social Network = Contrib Sociol Lang Function of Proverbs in Discourse: The Case of A Mexican Transnational Social Network = Contrib. Sociol. Lang. Functions in Biological and Artificial Worlds: Comparative Philosophical Perspectives = Vienna Ser Theor Bio Functions in Biological and Artificial Worlds: Comparative Philosophical Perspectives = Vienna. Ser. Theor. Bio. Functions of A Complex Variable: Theory and Technique = Class Appl Math Functions of A Complex Variable: Theory and Technique = Class. Appl. Math. Functions of Language = Funct Lang Functions of Language = Funct. Lang. Functions of Matrices: Theory and Computation = Other Titl Appl Math Functions of Matrices: Theory and Computation = Other. Titl. Appl. Math. Function Spaces and Wavelets On Domains = Ems Tracts Math Function Spaces and Wavelets On Domains = Ems. Tracts. Math. Function Spaces = Contemp Math Function Spaces = Contemp. Math. Function Spaces in Modern Analysis = Contemp Math Function Spaces in Modern Analysis = Contemp. Math. Function Spaces = Lect Notes Pure Appl Function Spaces = Lect. Notes. Pure. Appl. Function Spaces, Proceedings = Lect Notes Pure Appl Function Spaces, Proceedings = Lect. Notes. Pure. Appl. Function Spaces, Second Conference = Lect Notes Pure Appl Function Spaces, Second Conference = Lect. Notes. Pure. Appl. Functions, Spaces, and Expansions: Mathematical Tools in Physics and Engineering = Appl Numer Harmon An Functions, Spaces, and Expansions: Mathematical Tools in Physics and Engineering = Appl. Numer. Harmon. An. Fundamenta Informaticae = Fundam Inform Fundamenta Informaticae = Fundam. Inform. Fundamenta Informaticae = Fund. Inform. Fundamenta Informaticae = Fund Inform Fundamenta Informaticae = Fund. Inform. Fundamental Advances and Innovations in The Pulp and Paper Industry = Aiche Sym S Fundamental Advances and Innovations in The Pulp and Paper Industry = Aiche. Sym. S. Fundamental and Applied Aspects of Chemically Modified Surfaces = Roy Soc Ch Fundamental and Applied Aspects of Chemically Modified Surfaces = Roy. Soc. Ch. Fundamental and Applied Limnology = Fund Appl Limnol Fundamental and Applied Limnology = Fund. Appl. Limnol. Fundamental and Applied Nematology = Fund Appl Nematol Fundamental and Applied Nematology = Fund. Appl. Nematol. Fundamental and Applied Spectroscopy = Aip Conf Proc Fundamental and Applied Spectroscopy = Aip. Conf. Proc. Fundamental and Applied Toxicology = Fundam. Appl. Toxicol. Fundamental and Applied Toxicology = Fund Appl Toxicol Fundamental and Applied Toxicology = Fund. Appl. Toxicol. Fundamental and applied toxicology : official journal of the Society of Toxicology = Fundam Appl Toxicol Fundamental and Clinical Immunology = Fund Clin Immunol Fundamental and Clinical Immunology = Fund. Clin. Immunol. Fundamental and Clinical Pharmacology=Fundam Clin Pharmacol;; Fundamental and Clinical Pharmacology = Fundam. Clin. Pharmacol. Fundamental Approaches to Software Engineering = Lect Notes Comput Sc Fundamental Approaches to Software Engineering = Lect. Notes. Comput. Sc. Fundamental Approaches to Software Engineering, Proceedings = Lect Notes Comput Sc Fundamental Approaches to Software Engineering, Proceedings = Lect. Notes. Comput. Sc. Fundamental Aspects of Electrochemical Deposition and Dissolution, Proceedings = Elec Soc S Fundamental Aspects of Electrochemical Deposition and Dissolution, Proceedings = Elec. Soc. S. Fundamental Aspects of Heterogeneous Catalysis Studied By Particle Beams = Nato Adv Sci I B-phy Fundamental Aspects of Heterogeneous Catalysis Studied By Particle Beams = Nato. Adv. Sci. I. B-phy. Fundamental Aspects of High Temperature Corrosion = Elec Soc S Fundamental Aspects of High Temperature Corrosion = Elec. Soc. S. Fundamental Aspects of Inert Gases in Solids = Nato Adv Sci I B-phy Fundamental Aspects of Inert Gases in Solids = Nato. Adv. Sci. I. B-phy. Fundamental Aspects of Quantum Physics = Qtm Prob Wht Noi Fundamental Aspects of Quantum Physics = Qtm. Prob. Wht. Noi. Fundamental Aspects of Ultrathin Dielectrics On Si-based Devices = Nato Asi 3 High Tech Fundamental Aspects of Ultrathin Dielectrics On Si-based Devices = Nato. Asi. 3. High. Tech. Fundamental Biomedical Technologies = Fund Biomed Technol Fundamental Biomedical Technologies = Fund. Biomed. Technol. Fundamental & Clinical Pharmacology = Fundam Clin Pharm Fundamental & Clinical Pharmacology = Fundam. Clin. Pharm. Fundamental & clinical pharmacology = Fundam Clin Pharmacol Fundamental & Clinical Pharmacology = Fundam. Clin. Pharmacol. Fundamental & Clinical Pharmacology = Fund Clin Pharmacol Fundamental & Clinical Pharmacology = Fund. Clin. Pharmacol. Fundamental Concepts in Biophysics, Vol 1 = Handb Mod Biophys Fundamental Concepts in Biophysics, Vol 1 = Handb. Mod. Biophys. Fundamental Concepts of Childrens Literature Research - Literary and Sociological Approaches = Child Lit Cult Fundamental Concepts of Childrens Literature Research - Literary and Sociological Approaches = Child. Lit. Cult. Fundamental Concepts of Christian Esthetics = Gott Orient Syr Fundamental Concepts of Christian Esthetics = Gott. Orient. Syr. Fundamental Gas-phase and Surface Chemistry of Vapor-phase Deposition Ii and Process Control, Diagnostics, and Modeling in Semiconductor Manfacturing Iv = Elec Soc S Fundamental Gas-phase and Surface Chemistry of Vapor-phase Deposition Ii and Process Control, Diagnostics, and Modeling in Semiconductor Manfacturing Iv = Elec. Soc. S. Fundamental Interactions and Twistor-like Methods = Aip Conf Proc Fundamental Interactions and Twistor-like Methods = Aip. Conf. Proc. Fundamental Issues in Archaeology = Fund Iss Arch Fundamental Issues in Archaeology = Fund. Iss. Arch. Fundamental Issues in Archaeology = Fund Issue Archaeol Fundamental Issues in Archaeology = Fund. Issue. Archaeol. Fundamental Issues in Control of Carbon Gasification Reactivity = Nato Adv Sci I E-app Fundamental Issues in Control of Carbon Gasification Reactivity = Nato. Adv. Sci. I. E-app. Fundamental Issues of Nonlinear Laser Dynamics = Aip Conf Proc Fundamental Issues of Nonlinear Laser Dynamics = Aip. Conf. Proc. Fundamentalist Phenomenon = S I E Con M Fundamentalist Phenomenon = S. I. E. Con. M. Fundamental Materials Research = Fundmat Res Fundamental Materials Research = Fundmat. Res. Fundamental Mechanisms of Low-energy-beam-modified Surface Growth and Processing = Mater Res Soc Symp P Fundamental Mechanisms of Low-energy-beam-modified Surface Growth and Processing = Mater. Res. Soc. Symp. P. Fundamental Numerical Methods for Electrical Engineering = Lect Notes Electr En Fundamental Numerical Methods for Electrical Engineering = Lect. Notes. Electr. En. Fundamental Physics in Space = Adv Space Res Fundamental Physics in Space = Adv. Space Res. Fundamental Physics in Space = Adv Space Res-series Fundamental Physics in Space = Adv. Space Res-series. Fundamental Physics in Space - Proceedings of The Alpbach Summer School 1997 = Esa Sp Publ Fundamental Physics in Space - Proceedings of The Alpbach Summer School 1997 = Esa. Sp. Publ. Fundamental Physics in Space & Related Topics = Esa Sp Publ Fundamental Physics in Space & Related Topics = Esa. Sp. Publ. Fundamental Physics of Ferroelectrics 2000 = Aip Conf Proc Fundamental Physics of Ferroelectrics 2000 = Aip. Conf. Proc. Fundamental Physics of Ferroelectrics 2001 = Aip Conf Proc Fundamental Physics of Ferroelectrics 2001 = Aip. Conf. Proc. Fundamental Physics of Ferroelectrics 2002 = Aip Conf Proc Fundamental Physics of Ferroelectrics 2002 = Aip. Conf. Proc. Fundamental Physics of Ferroelectrics 2003 = Aip Conf Proc Fundamental Physics of Ferroelectrics 2003 = Aip. Conf. Proc. Fundamental Problematic Issues in Turbulence = Trends Math Fundamental Problematic Issues in Turbulence = Trends. Math. Fundamental Problems in Quantum Physics = Fund Theor Fundamental Problems in Quantum Physics = Fund. Theor. Fundamental Problems in Quantum Physics = Fund Theor Phys Fundamental Problems in Quantum Physics = Fund. Theor. Phys. Fundamental Problems in Quantum Theory = Ann Ny Acad Sci Fundamental Problems in Quantum Theory = Ann. Ny. Acad. Sci. Fundamental Problems in Solar Activity = Adv Space Res Fundamental Problems in Solar Activity = Adv. Space. Res. Fundamental Problems of Laser Optics - Laser Optics '98 = P Soc Photo-opt Ins Fundamental Problems of Laser Optics - Laser Optics '98 = P. Soc. Photo-opt. Ins. Fundamental Problems of Optoelectronics and Microelectronics Iii, Pts 1 and 2 = Proc Spie Fundamental Problems of Optoelectronics and Microelectronics Iii, Pts 1 and 2 = Proc. Spie. Fundamental Problems of Optoelectronics and Microelectronics Iii, Pts 1 and 2 = P Soc Photo-opt Ins Fundamental Problems of Optoelectronics and Microelectronics Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Fundamental Problems of Optoelectronics and Microelectronics Ii = Proc Spie Fundamental Problems of Optoelectronics and Microelectronics Ii = Proc. Spie. Fundamental Problems of Optoelectronics and Microelectronics Ii = P Soc Photo-opt Ins Fundamental Problems of Optoelectronics and Microelectronics Ii = P. Soc. Photo-opt. Ins. Fundamental Problems of Optoelectronics and Microelectronics = Proc Spie Fundamental Problems of Optoelectronics and Microelectronics = Proc. Spie. Fundamental Problems of Optoelectronics and Microelectronics = P Soc Photo-opt Ins Fundamental Problems of Optoelectronics and Microelectronics = P. Soc. Photo-opt. Ins. Fundamental Processes in Sputtering of Atoms and Molecules (sput92) = Kong Dansk Vidensk Fundamental Processes in Sputtering of Atoms and Molecules (sput92) = Kong. Dansk. Vidensk. Fundamental Role of Teletraffic in The Evolution of Telecommunications Networks, Vols 1a and 1b = Teletraf Sci Eng Fundamental Role of Teletraffic in The Evolution of Telecommunications Networks, Vols 1a and 1b = Teletraf. Sci. Eng. Fundamentals and Applications of Biosorption Isotherms, Kinetics and Thermodynamics = Environ Sci Eng Tech Fundamentals and Applications of Biosorption Isotherms, Kinetics and Thermodynamics = Environ. Sci. Eng. Tech. Fundamentals and Applications of Nanomaterials = Art Hse Nano Sci Eng Fundamentals and Applications of Nanomaterials = Art. Hse. Nano. Sci. Eng. Fundamentals and Engineering of Severe Plastic Deformation = Mater Sci Technol Fundamentals and Engineering of Severe Plastic Deformation = Mater. Sci. Technol. Fundamentals and Standards in Hardware Description Languages = Nato Adv Sci Inst Se Fundamentals and Standards in Hardware Description Languages = Nato. Adv. Sci. Inst. Se. Fundamentals and Technology of Multifunctional Oxide Thin Films (symposium G, Emrs 2009 Spring Meeting) = Iop Conf Ser-mat Sci Fundamentals and Technology of Multifunctional Oxide Thin Films (symposium G, Emrs 2009 Spring Meeting) = Iop. Conf. Ser-mat. Sci. Fundamentals for The Assessment of Risks From Environmental Radiation = Nato Asi 2 Fundamentals for The Assessment of Risks From Environmental Radiation = Nato. Asi. 2. Fundamentals in Handwriting Recognition = Nato Adv Sci Inst Se Fundamentals in Handwriting Recognition = Nato. Adv. Sci. Inst. Se. Fundamentals of Adsorption = Kluwer Int Ser Eng C Fundamentals of Adsorption = Kluwer. Int. Ser. Eng. C. Fundamentals of Algorithms = Fund Algorithms Fundamentals of Algorithms = Fund. Algorithms Fundamentals of Aluminium Metallurgy: Production, Processing and Applications = Woodhead Publ Mater Fundamentals of Aluminium Metallurgy: Production, Processing and Applications = Woodhead. Publ. Mater. Fundamentals of Artificial Intelligence Research = Lect Notes Artif Int Fundamentals of Artificial Intelligence Research = Lect. Notes. Artif. Int. Fundamentals of Clinical Research: Bridging Medicine, Statistics and Operations = Stat Biol Health Fundamentals of Clinical Research: Bridging Medicine, Statistics and Operations = Stat. Biol. Health. Fundamentals of Combustion Processes = Mech Eng Ser Fundamentals of Combustion Processes = Mech. Eng. Ser. Fundamentals of Computational Geoscience: Numerical Methods and Algorithms = Lect Notes Earth Sci Fundamentals of Computational Geoscience: Numerical Methods and Algorithms = Lect. Notes. Earth. Sci. Fundamentals of Computational Theory, Proceedings = Lect Notes Comput Sc Fundamentals of Computational Theory, Proceedings = Lect. Notes. Comput. Sc. Fundamentals of Computation Theory = Lect Notes Comput Sc Fundamentals of Computation Theory = Lect. Notes. Comput. Sc. Fundamentals of Computation Theory, Proceedings = Lect Notes Comput Sc Fundamentals of Computation Theory, Proceedings = Lect. Notes. Comput. Sc. Fundamentals of Computerized Tomography: Image Reconstruction From Projections, Second Edition = Adv Pattern Recognit Fundamentals of Computerized Tomography: Image Reconstruction From Projections, Second Edition = Adv. Pattern. Recognit. Fundamentals of Cryobiology: Physical Phenomena and Mathematical Models = Biol Med Phys Biomed Fundamentals of Cryobiology: Physical Phenomena and Mathematical Models = Biol. Med. Phys. Biomed. Fundamentals of Deformation and Annealing = Mater Sci Forum Fundamentals of Deformation and Annealing = Mater. Sci. Forum. Fundamentals of Electrical Drives = Power Syst Fundamentals of Electrical Drives = Power. Syst. Fundamentals of Electron Density, Density Matrix and Density Functional Theory in Atoms, Molecules and The Solid State = Prog T Chem Fundamentals of Electron Density, Density Matrix and Density Functional Theory in Atoms, Molecules and The Solid State = Prog. T. Chem. Fundamentals of Friction : Macroscopic and Microscopic Processes = Nato Adv Sci I E-app Fundamentals of Friction : Macroscopic and Microscopic Processes = Nato. Adv. Sci. I. E-app. Fundamentals of Gas Phase Ion Chemistry = Nato Adv Sci I C-mat Fundamentals of Gas Phase Ion Chemistry = Nato. Adv. Sci. I. C-mat. Fundamentals of General Ecology, Life Safety and Environment Protection = Environ Sci Eng Tech Fundamentals of General Ecology, Life Safety and Environment Protection = Environ. Sci. Eng. Tech. Fundamentals of Ground Combat System Ballistic Vulnerability/lethality = Prog Astronaut Aeron Fundamentals of Ground Combat System Ballistic Vulnerability/lethality = Prog. Astronaut. Aeron. Fundamentals of Human Performance and Training = Adult Educ Spec Top Fundamentals of Human Performance and Training = Adult. Educ. Spec. Top. Fundamentals of Hydrology, Second Edition = Routl Fund Phys Fundamentals of Hydrology, Second Edition = Routl. Fund. Phys. Fundamentals of Laser Assisted Micro- and Nanotechnologies = P Soc Photo-opt Ins Fundamentals of Laser Assisted Micro- and Nanotechnologies = P. Soc. Photo-opt. Ins. Fundamentals of Laser-matter Interaction = P Soc Photo-opt Ins Fundamentals of Laser-matter Interaction = P. Soc. Photo-opt. Ins. Fundamentals of Latex Film Formation: Processes and Properties = Springer Lab Man Pol Fundamentals of Latex Film Formation: Processes and Properties = Springer. Lab. Man. Pol. Fundamentals of Medieval and Early Modern Culture = Fund Mediev Early Mo Fundamentals of Medieval and Early Modern Culture = Fund. Mediev. Early Mo. Fundamentals of Memory Formation : Neuronal Plasticity and Brain Function = Forts Zool Fundamentals of Memory Formation : Neuronal Plasticity and Brain Function = Forts. Zool. Fundamentals of Modern Statistical Genetics = Stat Biol Health Fundamentals of Modern Statistical Genetics = Stat. Biol. Health. Fundamentals of Mri: Interactive Learning Approach = Ser Med Phys Biomed Fundamentals of Mri: Interactive Learning Approach = Ser. Med. Phys. Biomed. Fundamentals of Nanoindentation and Nanotribology Iii = Mater Res Soc Symp P Fundamentals of Nanoindentation and Nanotribology Iii = Mater. Res. Soc. Symp. P. Fundamentals of Nanoindentation and Nanotribology Iv = Mater Res Soc Symp P Fundamentals of Nanoindentation and Nanotribology Iv = Mater. Res. Soc. Symp. P. Fundamentals of Nanoindentation and Nanotribology = Mater Res Soc Symp P Fundamentals of Nanoindentation and Nanotribology = Mater. Res. Soc. Symp. P. Fundamentals of Nonlinear Behavioral Modeling for Rf and Microwave Design = Artech Hse Microw Li Fundamentals of Nonlinear Behavioral Modeling for Rf and Microwave Design = Artech. Hse. Microw. Li. Fundamentals of Nonlinear Behavioral Modeling for Rf and Microwave Design = Artech Micr Fundamentals of Nonlinear Behavioral Modeling for Rf and Microwave Design = Artech. Micr. Fundamentals of Novel Oxide/semiconductor Interfaces = Mater Res Soc Symp P Fundamentals of Novel Oxide/semiconductor Interfaces = Mater. Res. Soc. Symp. P. Fundamentals of Photovoltaic Modules and Their Applications = Rsc Energy Ser Fundamentals of Photovoltaic Modules and Their Applications = Rsc. Energy. Ser. Fundamentals of Predictive Text Mining = Texts Comput Sci Fundamentals of Predictive Text Mining = Texts. Comput. Sci. Fundamentals of Quantum Information = Lect Notes Phys Fundamentals of Quantum Information = Lect. Notes. Phys. Fundamentals of Radar Imaging = Cbms-nsf Ma Fundamentals of Radar Imaging = Cbms-nsf. Ma. Fundamentals of Relational Database Management Systems = Stud Comput Intell Fundamentals of Relational Database Management Systems = Stud. Comput. Intell. Fundamentals of Resource Allocation in Wireless Networks: Theory and Algorithms, Second Edition = Found Signal Process Fundamentals of Resource Allocation in Wireless Networks: Theory and Algorithms, Second Edition = Found. Signal. Process. Fundamentals of Scientific Computing = Texts Comput Sci Eng Fundamentals of Scientific Computing = Texts. Comput. Sci. Eng. Fundamentals of Semiconductors: Physics and Materials Properties, Fourth Edition = Grad Texts Phys Fundamentals of Semiconductors: Physics and Materials Properties, Fourth Edition = Grad. Texts. Phys. Fundamentals of Shock Wave Propagation in Solids = Shock Wave High Pres Fundamentals of Shock Wave Propagation in Solids = Shock Wave High. Pres. Fundamentals of Software Engineering = Lect Notes Comput Sc Fundamentals of Software Engineering = Lect. Notes. Comput. Sc. Fundamentals of Space Environment Science = Adv Space Res Fundamentals of Space Environment Science = Adv. Space Res. Fundamentals of Space Environment Science = Adv Space Res-series Fundamentals of Space Environment Science = Adv. Space Res-series. Fundamentals of Stochastic Filtering = Stoch Mod Appl Proba Fundamentals of Stochastic Filtering = Stoch. Mod. Appl. Proba. Fundamentals of Traffic Simulation = Int Ser Oper Res Man Fundamentals of Traffic Simulation = Int. Ser. Oper. Res. Man. Fundamentals of Tribology and Bridging The Gap Between The Macro-and Micro/nanoscales = Nato Sci Ser Ii-math Fundamentals of Tribology and Bridging The Gap Between The Macro-and Micro/nanoscales = Nato. Sci. Ser. Ii-math. Fundamentals of Tribology and Bridging The Gap Between The Macro-and Micro/nanoscales = Nato Sci Ser Ii Math Fundamentals of Tribology and Bridging The Gap Between The Macro-and Micro/nanoscales = Nato. Sci. Ser. Ii. Math. Fundamental Stellar Properties: The Interaction Between Observation and Theory = Iau Symp Fundamental Stellar Properties: The Interaction Between Observation and Theory = Iau. Symp. Fundamental Structural Aspects and Features in The Bioengineering of The Gas Exchangers: Comparative Perspectives = Adv Anat Embryol Cel Fundamental Structural Aspects and Features in The Bioengineering of The Gas Exchangers: Comparative Perspectives = Adv. Anat. Embryol. Cel. Fundamental Systems in Quantum Optics = Les Houch S Fundamental Systems in Quantum Optics = Les. Houch. S. Fundamental Theories of Physics = Fund Theor Fundamental Theories of Physics = Fund. Theor. Fundamental Theories of Physics = Fund. Theories Phys. Fundamental Theories of Physics = Fund Theor Phys Fundamental Theories of Physics = Fund. Theor. Phys. Fundamental Trends in City Development = Urban Land Perspect Fundamental Trends in City Development = Urban. Land. Perspect. Fundamenta Mathematicae = Fund. Math. Fundamenta Mathematicae = Fund Math Fundamenta Mathematicae = Fund. Math. Fundamenta scientiae = Fundam Sci Fundberichte aus Baden-Württemberg = FuBerBadWuert Fundberichte aus Hessen = FuBerHessen Fundberichte aus Österreich = FuBerOe Fundberichte aus Schwaben = FuBerSchwab Funde und Ausgrabungen im Bezirk Trier = FuAusgrTrier Funding of Higher Education: International Perspectives = Garland High Educ Funding of Higher Education: International Perspectives = Garland. High. Educ. Funding of Public and Academic Libraries = Prof Lib S Funding of Public and Academic Libraries = Prof. Lib. S. Fundmünzen der römischen Zeit in Österreich = FMROe Fundort Wien. Berichte zur Archäologie = FuWien Fund raising management = Fund Raising Manage Fund Raising Management = Fund Raising Manage. Fungal Allergy and Pathogenicity = Chem Immunol Fungal Allergy and Pathogenicity = Chem. Immunol. Fungal Biodiversity = Cbs Lab Manual Ser Fungal Biodiversity = Cbs. Lab. Manual. Ser. Fungal Biology = Fungal Biol-uk Fungal Biology = Fungal Biol-uk. Fungal Conservation: Issues and Solutions = Br Mycol Sy Fungal Conservation: Issues and Solutions = Br. Mycol. Sy. Fungal Diversity = Fungal Divers Fungal Diversity = Fungal Divers. Fungal Ecology = Fungal Ecol Fungal Ecology = Fungal Ecol. Fungal genetics and biology : FG & B = Fungal Genet Biol Fungal Genetics and Biology=Fungal Genet Biol;; Fungal Genetics and Biology = Fungal Genet Biol Fungal Genetics and Biology = Fungal Genet. Biol. Fungal Genomics = Adv Genet Fungal Genomics = Adv. Genet. Fungal Genomics: Methods and Protocols = Methods Mol Biol Fungal Genomics: Methods and Protocols = Methods Mol. Biol. Fungi and Biotechnology : Recent Advances = Int Biosci Fungi and Biotechnology : Recent Advances = Int. Biosci. Fungi and Mycotoxins in Stored Products = Aciar Proc Fungi and Mycotoxins in Stored Products = Aciar. Proc. Fungicide Resistance = Br Crop Pr Fungicide Resistance = Br. Crop. Pr. Funkcialaj Ekvacioj-serio Internacia = Funkc Ekvacioj-ser I Funkcialaj Ekvacioj-serio Internacia = Funkc. Ekvacioj-ser. I. Funktionelle Biologie & Medizin = Funkt Biol Med Funktionelle Biologie & Medizin = Funkt. Biol. Med. Funktionen Des Bewusstseins = Humanprojekt-interdi Funktionen Des Bewusstseins = Humanprojekt-interdi. Funktionen Des Erlebens: Neue Perspektiven Des Qualitativen Bewusstseins = Humanprojekt-interdi Funktionen Des Erlebens: Neue Perspektiven Des Qualitativen Bewusstseins = Humanprojekt-interdi. Funktionsanalyse Biologischer Systeme = Funk Biol S Funktionsanalyse Biologischer Systeme = Funk. Biol. S. Funktionsverbgefug?: Empirisch: Eine Korpusbasierte Untersuchung Zu Den Nominalen Pradikaten Des Deutschen = Reihe Ger Linguist Funktionsverbgefug?: Empirisch: Eine Korpusbasierte Untersuchung Zu Den Nominalen Pradikaten Des Deutschen = Reihe. Ger. Linguist. Funtai oyobi Funmatsu Yakin = Funtai oyobi Funmatsu Yakin Fun With Algorithms, Proceedings = Lect Notes Comput Sc Fun With Algorithms, Proceedings = Lect. Notes. Comput. Sc. Further Developments in Scientific Optical Imaging = Roy Soc Ch Further Developments in Scientific Optical Imaging = Roy. Soc. Ch. Furthering Judicial Education = World Ban T Furthering Judicial Education = World. Ban. T. Fur Unseren Betrieb Lebensnotwendig: Georg Von Holtzbrinck Als Verlagsunternehmer Im Dritten Reich = Arch Gesch Buchwes-s Fur Unseren Betrieb Lebensnotwendig: Georg Von Holtzbrinck Als Verlagsunternehmer Im Dritten Reich = Arch. Gesch. Buchwes-s. Fushe Fanghu = Fushe Fanghu Fusion06: Reaction Mechanisms and Nuclear Structure At The Coulomb Barrier = Aip Conf Proc Fusion06: Reaction Mechanisms and Nuclear Structure At The Coulomb Barrier = Aip. Conf. Proc. Fusion 08 = Aip Conf Proc Fusion 08 = Aip. Conf. Proc. Fusion Energy 1996, Vol 1 = P S Iaea Fusion Energy 1996, Vol 1 = P. S. Iaea. Fusion Energy 1996, Vol 2 = P S Iaea Fusion Energy 1996, Vol 2 = P. S. Iaea. Fusion Energy 1996, Vol 3 = P S Iaea Fusion Energy 1996, Vol 3 = P. S. Iaea. Fusion Engineering and Design = Fusion Eng Des Fusion Engineering and Design = Fusion Eng. Des. Fusion Methods for Unsupervised Learning Ensembles = Stud Comput Intell Fusion Methods for Unsupervised Learning Ensembles = Stud. Comput. Intell. Fusion Science and Technology = Fusion Sci Technol Fusion Science and Technology = Fusion Sci. Technol. Fusion Technology = Fusion Technol Fusion Technology = Fusion Technol. Fussgangerschutz = Vdi-buch Fussgangerschutz = Vdi-buch. Futur anterieur = Futur Anter Future As Fairness: Ecological Justice and Global Citizenship = At The Interface Future As Fairness: Ecological Justice and Global Citizenship = At. The. Interface. Future Astronuclear Physics: From Microscopic Puzzles to Macroscopic Nightmares = Eas Publications Future Astronuclear Physics: From Microscopic Puzzles to Macroscopic Nightmares = Eas. Publications. Future Changes in Pesticide Registration Within The Ec = Br Crop Pr Future Changes in Pesticide Registration Within The Ec = Br. Crop. Pr. Future City = Future City Future Curricular Trends in School Algebra and Geometry: Proceedings of A Conference = Res Math Educ Ser Future Curricular Trends in School Algebra and Geometry: Proceedings of A Conference = Res. Math. Educ. Ser. Future Databases 92 = Adv Datab R Future Databases 92 = Adv. Datab. R. Future dentistry = Future Dent Future Dentistry = Future Dent. Future Develoment of Competition Framework = Int Compet Law Ser Future Develoment of Competition Framework = Int. Compet. Law. Ser. Future Directions for Intelligent Systems and Information Sciences = Stud Fuzziness Soft Future Directions for Intelligent Systems and Information Sciences = Stud. Fuzziness. Soft. Future Directions for Intelligent Systems and Information Sciences = Stud Fuzz Soft Comp Future Directions for Intelligent Systems and Information Sciences = Stud. Fuzz. Soft. Comp. Future Directions in Distributed Computing: Research and Position Papers = Lect Notes Comput Sc Future Directions in Distributed Computing: Research and Position Papers = Lect. Notes. Comput. Sc. Future Directions in High Resolution Astronomy: The 10th Anniversary of The Vlba = Astr Soc P Future Directions in High Resolution Astronomy: The 10th Anniversary of The Vlba = Astr. Soc. P. Future Directions in Nuclear Physics With 4-pi Gamma Detection Systems of The New Generation = Aip Conf Proc Future Directions in Nuclear Physics With 4-pi Gamma Detection Systems of The New Generation = Aip. Conf. Proc. Future Directions in Ultraviolet Spectroscopy = Aip Conf Proc Future Directions in Ultraviolet Spectroscopy = Aip. Conf. Proc. Future Directions of Nonlinear Dynamics in Physical and Biological Systems = Nato Adv Sci Inst Se Future Directions of Nonlinear Dynamics in Physical and Biological Systems = Nato. Adv. Sci. Inst. Se. Future Engine and System Technologies = Imeche Sem Future Engine and System Technologies = Imeche. Sem. Future Envelope 1 - A Multidisciplinary Approach = Res Archtec Engr Ser Future Envelope 1 - A Multidisciplinary Approach = Res. Archtec. Engr. Ser. Future European and Japanese Remote-sensing Sensors and Programs = P Soc Photo-opt Ins Future European and Japanese Remote-sensing Sensors and Programs = P. Soc. Photo-opt. Ins. Future Euv/uv and Visible Space Astrophysics Missions and Instrumentation = Proc Spie Future Euv/uv and Visible Space Astrophysics Missions and Instrumentation = Proc. Spie. Future Euv/uv and Visible Space Astrophysics Missions and Instrumentation = P Soc Photo-opt Ins Future Euv/uv and Visible Space Astrophysics Missions and Instrumentation = P. Soc. Photo-opt. Ins. Future for Medicinal and Aromatic Plants = Acta Hortic Future for Medicinal and Aromatic Plants = Acta. Hortic. Future = Future Future Generation Computer Systems = Future Gener Comp Sy Future Generation Computer Systems = Future Gener. Comp. Sy. Future Generation Computer Systems-the International Journal of Grid Computing and Escience = Future Gener Comp Sy Future Generation Computer Systems-the International Journal of Grid Computing and Escience = Future Gener. Comp. Sy. Future Generation Computer Systems-the International Journal of Grid Computing-theory Methods and Applications = Future Gener Comp Sy Future Generation Computer Systems-the International Journal of Grid Computing-theory Methods and Applications = Future Gener. Comp. Sy. Future Generation Computer Systems-the International Journal of Grid Computing Theory Methods and Applications = Future Gener Comp Sy Future Generation Computer Systems-the International Journal of Grid Computing Theory Methods and Applications = Future Gener. Comp. Sy. Future Generation Information Technology = Lect Notes Comput Sc Future Generation Information Technology = Lect. Notes. Comput. Sc. Future Generation Information Technology, Proceedings = Lect Notes Comput Sc Future Generation Information Technology, Proceedings = Lect. Notes. Comput. Sc. Future Generation Photovoltaic Technologies = Aip Conf Proc Future Generation Photovoltaic Technologies = Aip. Conf. Proc. Future Giant Telescopes = Proc Spie Future Giant Telescopes = Proc. Spie. Future Giant Telescopes = P Soc Photo-opt Ins Future Giant Telescopes = P. Soc. Photo-opt. Ins. Future Groundwater Resources At Risk = Iahs-aish P Future Groundwater Resources At Risk = Iahs-aish. P. Future High Energy Colliders = Aip Conf Proc Future High Energy Colliders = Aip. Conf. Proc. Future Infrared Detector Materials = P Soc Photo-opt Ins Future Infrared Detector Materials = P. Soc. Photo-opt. Ins. Future Internet - Fis 2008 = Lect Notes Comput Sc Future Internet - Fis 2008 = Lect. Notes. Comput. Sc. Future Internet - Fis 2009 = Lect Notes Comput Sc Future Internet - Fis 2009 = Lect. Notes. Comput. Sc. Future Internet-fis 2010 = Lect Notes Comput Sc Future Internet-fis 2010 = Lect. Notes. Comput. Sc. Future Interventions With Battered Women and Their Families = Sage Viol Women Future Interventions With Battered Women and Their Families = Sage. Viol. Women Future Issues Facing Wisconsins Land Resources = Inst Env R Future Issues Facing Wisconsins Land Resources = Inst. Env. R. Future Lipidology = Future Lipidol Future Lipidology = Future Lipidol. Future Medicinal Chemistry = Future Med Chem Future Medicinal Chemistry = Future Med. Chem. Future microbiology = Future Microbiol Future Microbiology = Future Microbiol Future Microbiology = Future Microbiol. Future Multimedia Networking, Proceedings = Lect Notes Comput Sc Future Multimedia Networking, Proceedings = Lect. Notes. Comput. Sc. Future Nato Security: Addressing The Challenges of Evolving Security and Information Sharing Systems and Architectures = Nato Asi S 4 Sci Tec Future Nato Security: Addressing The Challenges of Evolving Security and Information Sharing Systems and Architectures = Nato Asi. S. 4. Sci. Tec. Future of Accelerator Physics = Aip Conf Proc Future of Accelerator Physics = Aip. Conf. Proc. Future of Anthropological Knowledge = Asa Decen Conf Ser Future of Anthropological Knowledge = Asa. Decen. Conf. Ser. Future of Assisted Suicide and Euthanasia = New Forum Book Future of Assisted Suicide and Euthanasia = New. Forum. Book. Future of Biological Disarmament = Lse Int Stud Ser Future of Biological Disarmament = Lse. Int. Stud. Ser. Future of Children=Future Child;; Future of Children = Future Child Future of Children = Future Child. Future of Committals = Aic Conf P Future of Committals = Aic. Conf. P. Future of Dairy Education = Int Dairy F Future of Dairy Education = Int. Dairy F. Future of Deuteronomistic History = Bib Eph The Future of Deuteronomistic History = Bib. Eph. The. Future of Excellence in Public Relations and Communication Management: Challenges for The Next Generation = Lea Commun Ser Future of Excellence in Public Relations and Communication Management: Challenges for The Next Generation = Lea. Commun. Ser. Future of Fisheries Science in North America = Fish Fisheries Serie Future of Fisheries Science in North America = Fish. Fisheries Serie. Future of Geological Modelling in Hydrocarbon Development = Geol Soc Spec Publ Future of Geological Modelling in Hydrocarbon Development = Geol. Soc. Spec. Publ. Future of Glycerol: New Uses of A Versatile Raw Material = Rsc Green Chem Ser Future of Glycerol: New Uses of A Versatile Raw Material = Rsc. Green. Chem. Ser. Future of Glycerol, Second Edition = Rsc Green Chem Ser Future of Glycerol, Second Edition = Rsc. Green. Chem. Ser. Future of Hormone Therapy: What Basic Science and Clinical Studies Teach Us = Ann Ny Acad Sci Future of Hormone Therapy: What Basic Science and Clinical Studies Teach Us = Ann. Ny. Acad. Sci. Future of Human Rights: U.s. Policy for A New Era = Pa Stud Hum Rights Future of Human Rights: U.s. Policy for A New Era = Pa. Stud. Hum. Rights. Future of Identity in The Information Society = Ifip Adv Inf Comm Te Future of Identity in The Information Society = Ifip. Adv. Inf. Comm. Te. Future of Industrial Relations = U Cal I Ind Future of Industrial Relations = U. Cal. I. Ind. Future of Intermodal Freight Transport: Operations, Design and Policy = Transp Econ Manag Po Future of Intermodal Freight Transport: Operations, Design and Policy = Transp. Econ. Manag. Po. Future of Leadership Development = S Appl Psyc Future of Leadership Development = S. Appl. Psyc. Future of Leadership Development = Ser Appl Psychol Future of Leadership Development = Ser. Appl. Psychol. Future of Learning = Future Learn Future of Learning = Future Learn. Future of Literacy Studies = Palgrave Adv Future of Literacy Studies = Palgrave. Adv. Future of Livestock Breeding and Service Organizations = Eaap Tech Future of Livestock Breeding and Service Organizations = Eaap. Tech. Future of Minority Studies = Future Minor Stud Future of Minority Studies = Future Minor. Stud. Future of Payment Systems = Routl Int Stud Money Future of Payment Systems = Routl. Int. Stud. Money. Future of Photometric, Spectrophotometric and Polarimetric Standardization = Astr Soc P Future of Photometric, Spectrophotometric and Polarimetric Standardization = Astr. Soc. P. Future of Political Community = Routl Ecpr Stud Eur Future of Political Community = Routl. Ecpr. Stud. Eur. Future of The Academic Journal = Chandos Publ Ser Future of The Academic Journal = Chandos. Publ. Ser. Future of The Academic Library = Oc P U Ill Future of The Academic Library = Oc. P. U. Ill. Future of The Chemical Industry = Acs Sym Ser Future of The Chemical Industry = Acs. Sym. Ser. Future of The Oocyte = E Schering Res Fdn W Future of The Oocyte = E. Schering. Res. Fdn. W. Future of The Study of Religion, Proceedings = Numen Book Series Future of The Study of Religion, Proceedings = Numen. Book. Series. Future of The Worlds Forests: Ideas Vs Ideologies = World Forests Future of The Worlds Forests: Ideas Vs Ideologies = World. Forests. Future of Turkish Foreign Policy = Bcsia Stud Int Future of Turkish Foreign Policy = Bcsia. Stud. Int. Future of Turkish Foreign Policy = Bcsia Stud Int Secur Future of Turkish Foreign Policy = Bcsia. Stud. Int. Secur. Future of Vehicular and Traffic Technology: Mobility Today, Tomorrow and After Tomorrow = Vdi Bericht Future of Vehicular and Traffic Technology: Mobility Today, Tomorrow and After Tomorrow = Vdi. Bericht. Future Oncology = Future Oncol Future Oncology = Future Oncol. Future oncology (London, England) = Future Oncol Future Opportunities in Catalytic and Separation Technology = Stud Surf Sci Catal Future Opportunities in Catalytic and Separation Technology = Stud. Surf. Sci. Catal. Future Orientation: Developmental and Ecological Perspectives = Springer Ser Hum Exc Future Orientation: Developmental and Ecological Perspectives = Springer. Ser. Hum. Exc. Future-oriented Studies / Etudes Prospectives = Fut Or St Future-oriented Studies / Etudes Prospectives = Fut. Or. St. Future Perspectives in Gastroenterology = Falk Symp Future Perspectives in Gastroenterology = Falk. Symp. Future Perspectives of Space Plasma and Particle Instrumentation and International Collaborations = Aip Conf Proc Future Perspectives of Space Plasma and Particle Instrumentation and International Collaborations = Aip. Conf. Proc. Future Research Direction and Visions for Astronomy = P Soc Photo-opt Ins Future Research Direction and Visions for Astronomy = P. Soc. Photo-opt. Ins. Futures = Futures Futures: of Jacques Derrida = Cul Mem Pre Futures: of Jacques Derrida = Cul. Mem. Pre. Futures of Reproduction: Bioethics and Biopolitics = Int Libr Eth Law New Futures of Reproduction: Bioethics and Biopolitics = Int. Libr. Eth. Law. New. Future Spacecraft Propulsion Systems = S-p B Astronaut Eng Future Spacecraft Propulsion Systems = S-p. B. Astronaut. Eng. Future Technologies for Food Production and Future Food Scientists, Proceedings = Sik Dok Future Technologies for Food Production and Future Food Scientists, Proceedings = Sik. Dok. Future Tendencies in Computer Science, Control and Applied Mathematics = Lect Notes Comput Sc Future Tendencies in Computer Science, Control and Applied Mathematics = Lect. Notes. Comput. Sc. Future Trends and Needs in Science and Engineering for Plasma Physics in Space = Adv Space Res Future Trends and Needs in Science and Engineering for Plasma Physics in Space = Adv. Space Res. Future Trends in Biomedical Applications of Lasers = P Soc Photo-opt Ins Future Trends in Biomedical Applications of Lasers = P. Soc. Photo-opt. Ins. Future Trends in Medicine = Roy Soc Med Int Cong Future Trends in Medicine = Roy. Soc. Med. Int. Cong. Future Trends in Soft Materials Research With Advanced Light Sources = J Phys Conf Ser Future Trends in Soft Materials Research With Advanced Light Sources = J. Phys. Conf. Ser. Future Trends in Veterinary Public Health = Who Tech Rep Ser Future Trends in Veterinary Public Health = Who. Tech. Rep. Ser. Future Virology = Future Virol Future Virology = Future Virol. Futuribles = Futuribles Futuribles (Paris, France : 1981) = Futuribles Futurism and The Technological Imagination = Avant-garde Crit Stu Futurism and The Technological Imagination = Avant-garde. Crit. Stu. Futurismo: Impact and Legacy = Filibrary Ser Futurismo: Impact and Legacy = Filibrary. Ser. Futurist = Futurist Fuzz-ieee 2005: Proceedings of The Ieee International Conference On Fuzzy Systems = Ieee Int Conf Fuzzy Fuzz-ieee 2005: Proceedings of The Ieee International Conference On Fuzzy Systems = Ieee Int. Conf. Fuzzy Fuzziness and Approximate Reasoning = Stud Fuzz Soft Comp Fuzziness and Approximate Reasoning = Stud. Fuzz. Soft. Comp. Fuzzing for Software Security Testing and Quality Assurance = Artech Hse Inf Secur Fuzzing for Software Security Testing and Quality Assurance = Artech. Hse. Inf. Secur. Fuzzy and Rough Techniques in Medical Diagnosis and Medication = Stud Fuzz Soft Comp Fuzzy and Rough Techniques in Medical Diagnosis and Medication = Stud. Fuzz. Soft. Comp. Fuzzy Choice Functions: A Revealed Preference Approach = Stud Fuzz Soft Comp Fuzzy Choice Functions: A Revealed Preference Approach = Stud. Fuzz. Soft. Comp. Fuzzy Cognitive Maps: Advances in Theory, Methodolologies, Tools and Applications = Stud Fuzz Soft Comp Fuzzy Cognitive Maps: Advances in Theory, Methodolologies, Tools and Applications = Stud. Fuzz. Soft. Comp. Fuzzy Control and Filter Design for Uncertain Fuzzy Systems = Lect Notes Contr Inf Fuzzy Control and Filter Design for Uncertain Fuzzy Systems = Lect. Notes. Contr. Inf. Fuzzy Engineering Economics With Applications = Stud Fuzz Soft Comp Fuzzy Engineering Economics With Applications = Stud. Fuzz. Soft. Comp. Fuzzy Implications = Stud Fuzz Soft Comp Fuzzy Implications = Stud. Fuzz. Soft. Comp. Fuzzy Information and Engineering 2010, Vol 1 = Adv Intel Soft Compu Fuzzy Information and Engineering 2010, Vol 1 = Adv. Intel. Soft. Compu. Fuzzy Information and Engineering, Proceedings = Adv Soft Comp Fuzzy Information and Engineering, Proceedings = Adv. Soft. Comp. Fuzzy Information and Engineering, Vol 1 = Adv Soft Comp Fuzzy Information and Engineering, Vol 1 = Adv. Soft. Comp. Fuzzy Information and Engineering, Volume 2 = Adv Intell Soft Comp Fuzzy Information and Engineering, Volume 2 = Adv. Intell. Soft. Comp. Fuzzy Information and Engineering, Volume 2 = Adv Intel Soft Compu Fuzzy Information and Engineering, Volume 2 = Adv. Intel. Soft. Compu. Fuzzy-like Multiple Objective Decision Making = Stud Fuzz Soft Comp Fuzzy-like Multiple Objective Decision Making = Stud. Fuzz. Soft. Comp. Fuzzy Logic and Applications = Lect Notes Artif Int Fuzzy Logic and Applications = Lect. Notes. Artif. Int. Fuzzy Logic: A Spectrum of Theoretical & Practical Issues = Stud Fuzz Soft Comp Fuzzy Logic: A Spectrum of Theoretical & Practical Issues = Stud. Fuzz. Soft. Comp. Fuzzy Logic-based Algorithms for Video De-interlacing = Stud Fuzz Soft Comp Fuzzy Logic-based Algorithms for Video De-interlacing = Stud. Fuzz. Soft. Comp. Fuzzy Logic in Action: Applications in Epidemiology and Beyond = Stud Fuzz Soft Comp Fuzzy Logic in Action: Applications in Epidemiology and Beyond = Stud. Fuzz. Soft. Comp. Fuzzy Logic = Stud Fuzziness Soft Fuzzy Logic = Stud. Fuzziness. Soft. Fuzzy Logic = Stud Fuzz Soft Comp Fuzzy Logic = Stud. Fuzz. Soft. Comp. Fuzzy Logic Systems Institute (flsi) Soft Computing Series = Flsi Soft Comp Ser Fuzzy Logic Systems Institute (flsi) Soft Computing Series = Flsi. Soft Comp. Ser. Fuzzy Mathematics: Approximation Theory = Stud Fuzz Soft Comp Fuzzy Mathematics: Approximation Theory = Stud. Fuzz. Soft. Comp. Fuzzy Multi-criteria Decision Making: Theory and Applications With Recent Developments = Springer Ser Optim A Fuzzy Multi-criteria Decision Making: Theory and Applications With Recent Developments = Springer. Ser. Optim. A. Fuzzy Networks for Complex Systems: A Modular Rule Base Approach = Stud Fuzz Soft Comp Fuzzy Networks for Complex Systems: A Modular Rule Base Approach = Stud. Fuzz. Soft. Comp. Fuzzy Optimization and Decision Making = Fuzzy Optim Decis Ma Fuzzy Optimization and Decision Making = Fuzzy Optim. Decis. Ma. Fuzzy Optimization: Recent Advances and Applications = Stud Fuzz Soft Comp Fuzzy Optimization: Recent Advances and Applications = Stud. Fuzz. Soft. Comp. Fuzzy Partial Differential Equations and Relational Equations = Stud Fuzziness Soft Fuzzy Partial Differential Equations and Relational Equations = Stud. Fuzziness. Soft. Fuzzy Partial Differential Equations and Relational Equations = Stud Fuzz Soft Comp Fuzzy Partial Differential Equations and Relational Equations = Stud. Fuzz. Soft. Comp. Fuzzy Portfolio Optimization: Theory and Methods = Lect Notes Econ Math Fuzzy Portfolio Optimization: Theory and Methods = Lect. Notes. Econ. Math. Fuzzy Preference Ordering of Interval Numbers in Decision Problems = Stud Fuzz Soft Comp Fuzzy Preference Ordering of Interval Numbers in Decision Problems = Stud. Fuzz. Soft. Comp. Fuzzy Rationality = Stud Fuzz Soft Comp Fuzzy Rationality = Stud. Fuzz. Soft. Comp. Fuzzy Set Approach to Multidimensional Poverty Measurement = Econ Stud Inequal So Fuzzy Set Approach to Multidimensional Poverty Measurement = Econ. Stud. Inequal. So. Fuzzy Sets and Systems = Fuzzy Sets and Systems Fuzzy Sets and Systems = Fuzzy Sets Syst. Fuzzy Sets and Systems = Fuzzy Set Syst Fuzzy Sets and Systems = Fuzzy Set. Syst. Fuzzy Sets and Systems - Ifsa 2003, Proceedings = Lect Notes Artif Int Fuzzy Sets and Systems - Ifsa 2003, Proceedings = Lect. Notes. Artif. Int. Fuzzy Stochastic Multiobjective Programming = Int Ser Oper Res Man Fuzzy Stochastic Multiobjective Programming = Int. Ser. Oper. Res. Man. Fuzzy Systems and Knowledge Discovery, Proceedings = Lect Notes Comput Sc Fuzzy Systems and Knowledge Discovery, Proceedings = Lect. Notes. Comput. Sc. Fuzzy Systems and Knowledge Discovery, Pt 1, Proceedings = Lect Notes Artif Int Fuzzy Systems and Knowledge Discovery, Pt 1, Proceedings = Lect. Notes. Artif. Int. Fuzzy Systems and Knowledge Discovery, Pt 2, Proceedings = Lect Notes Artif Int Fuzzy Systems and Knowledge Discovery, Pt 2, Proceedings = Lect. Notes. Artif. Int. Fuzzy Systems in Bioinformatics and Computational Biology = Stud Fuzz Soft Comp Fuzzy Systems in Bioinformatics and Computational Biology = Stud. Fuzz. Soft. Comp. F Weinberg International Symposium On Solidification Processing = Cim An Conf F Weinberg International Symposium On Solidification Processing = Cim. An. Conf. Fysiatricky a reumatologicky vestnik = Fysiatr Revmatol Vestn Fysiatricky a Revmatologicky Vestnik = Fysiatr. Revmatol. Vestn. Fysiatricky vestnik. Ceskoslovenska fysiatricka spolecnost = Fysiatr Vestn Cesk Fysiatr Spol Gaas Ic Symposium - 18th Annual, Technical Digest 1996 = Tg Ieee Gal Ars Gaas Ic Symposium - 18th Annual, Technical Digest 1996 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium - 19th Annual, Technical Digest 1997 = Tg Ieee Gal Ars Gaas Ic Symposium - 19th Annual, Technical Digest 1997 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium - 20th Annual, Technical Digest 1998 = Tg Ieee Gal Ars Gaas Ic Symposium - 20th Annual, Technical Digest 1998 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium - 22nd Annual, Technical Digest 2000 = Tg Ieee Gal Ars Gaas Ic Symposium - 22nd Annual, Technical Digest 2000 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium - 24th Annual, Technical Digest 2002 = Tg Ieee Gal Ars Gaas Ic Symposium - 24th Annual, Technical Digest 2002 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium - 25th Annual Technical Digest 2003 = Tg Ieee Gal Ars Gaas Ic Symposium - 25th Annual Technical Digest 2003 = Tg. Ieee. Gal. Ars. Gaas Ic Symposium, Technical Digest 2001 = Tg Ieee Gal Ars Gaas Ic Symposium, Technical Digest 2001 = Tg. Ieee. Gal. Ars. Gaba and Benzodiazepine Receptor Subtypes = Adv Biochem Psychoph Gaba and Benzodiazepine Receptor Subtypes = Adv. Biochem. Psychoph. Gaba and The Basal Ganglia: From Molecules to Systems = Prog Brain Res Gaba and The Basal Ganglia: From Molecules to Systems = Prog. Brain. Res. Gaba(a) Receptors and Anxiety = Adv Biochem Psychoph Gaba(a) Receptors and Anxiety = Adv. Biochem. Psychoph. Gabaergic Synaptic Transmission = Adv Biochem Psychoph Gabaergic Synaptic Transmission = Adv. Biochem. Psychoph. Gaba in Autism and Related Disorders = Int Rev Neurobiol Gaba in Autism and Related Disorders = Int. Rev. Neurobiol. Gaba: Receptors, Transporters and Metabolism = Adv Phar Sc Gaba: Receptors, Transporters and Metabolism = Adv. Phar. Sc. Gaceta CONASIDA / Consejo Nacional para la Prevencion y Control del SIDA = Gac CONASIDA Gaceta medica de Caracas = Gac Med Caracas Gaceta Medica de Caracas = Gac. Med. Caracas Gaceta medica del Norte = Gac Med Norte Gaceta medica de Mexico = Gac Med Mex Gaceta Medica de Mexico=Gac Med Mex;; Gaceta Medica De Mexico = Gac Med Mex Gaceta Medica De Mexico = Gac. Med. Mex. Gaceta Médica de México = Gac. Méd. Méx. Gaceta medica espanola = Gac Med Esp Gaceta medica = Gac Med (Guayaquil) Gaceta numismática = GacNum Gaceta Sanitaria=Gac Sanit;; Gaceta Sanitaria = Gac Sanit Gaceta Sanitaria = Gac. Sanit. Gaceta sanitaria / S.E.S.P.A.S = Gac Sanit Gades. Revista del Colegio universitario de filosofía y letras = Gades Gadolinium: Compounds, Production and Applications = Chem Eng Method Tech Gadolinium: Compounds, Production and Applications = Chem. Eng. Method. Tech. Gaea; anales de la Sociedad Argentina de Estudios Geograficos = GAEA An Soc Argent Estud Geogr Gaia: At The Frontiers of Astrometry = Eas Publications Gaia: At The Frontiers of Astrometry = Eas. Publications. Gaia-ecological Perspectives for Science and Society = Gaia Gaia-ecological Perspectives for Science and Society = Gaia. Gaia = Gaia Gaia Spectroscopy, Science and Technology, Proceedings = Astr Soc P Gaia Spectroscopy, Science and Technology, Proceedings = Astr. Soc. P. Gait and Posture = Gait Posture Gait Disorders = Adv Neurol Gait Disorders = Adv. Neurol. Gait & posture = Gait Posture Gait & Posture = Gait Posture GAKUTO International Series = GAKUTO Internat. Ser. Math. Sci. Appl. Galactic and Anomalous Cosmic Rays in The Heliosphere: The Cycle 22 Solar Minimum and The Onset of Cycle 23 = Adv Space Res Galactic and Anomalous Cosmic Rays in The Heliosphere: The Cycle 22 Solar Minimum and The Onset of Cycle 23 = Adv. Space. Res. Galactic and Anomalous Cosmic Rays in The Heliosphere: The Cycle 22 Solar Minimum and The Onset of Cycle 23 = Adv Space Res-series Galactic and Anomalous Cosmic Rays in The Heliosphere: The Cycle 22 Solar Minimum and The Onset of Cycle 23 = Adv. Space. Res-series. Galactic and Cluster Cooling Flows = Astr Soc P Galactic and Cluster Cooling Flows = Astr. Soc. P. Galactic and Extragalactic Astrophysics = Adv Space Res-series Galactic and Extragalactic Astrophysics = Adv. Space. Res-series. Galactic and Extragalactic Background Radiation = Iau Symp Galactic and Extragalactic Background Radiation = Iau. Symp. Galactic and Intergalactic Magnetic Fields = Iau Symp Galactic and Intergalactic Magnetic Fields = Iau. Symp. Galactic Bulges = Iau Symp Galactic Bulges = Iau. Symp. Galactic Center: 4th Eso/ctio Workshop = Astr Soc P Galactic Center: 4th Eso/ctio Workshop = Astr. Soc. P. Galactic Center: A Window to The Nuclear Environment of Disk Galaxies = Astr Soc P Galactic Center: A Window to The Nuclear Environment of Disk Galaxies = Astr. Soc. P. Galactic Center Workshop 2006: From The Center of The Milky Way to Nearby Low-luminosity Galactic Nuclei = J Phys Conf Ser Galactic Center Workshop 2006: From The Center of The Milky Way to Nearby Low-luminosity Galactic Nuclei = J. Phys. Conf. Ser. Galactic Cosmic Ray Heavy Ions = Adv Space Res Galactic Cosmic Ray Heavy Ions = Adv. Space. Res. Galactic Halos: A Uc Santa Cruz Workshop = Astr Soc P Galactic Halos: A Uc Santa Cruz Workshop = Astr. Soc. P. Galactic High-energy Astrophysics High-accuracy Timing and Positional Astronomy = Lect Notes Phys Galactic High-energy Astrophysics High-accuracy Timing and Positional Astronomy = Lect. Notes. Phys. Galactic Models = Ann Ny Acad Sci Galactic Models = Ann. Ny. Acad. Sci. Galactic & Stellar Dynamics = Eas Publications Galactic & Stellar Dynamics = Eas. Publications. Galanin: Basic Research Discoveries and Therapeutic Implications = Ann Ny Acad Sci Galanin: Basic Research Discoveries and Therapeutic Implications = Ann. Ny. Acad. Sci. Galanin = Experientia Suppl Galanin = Experientia. Suppl. Galaxies and Chaos = Lect Notes Phys Galaxies and Chaos = Lect. Notes. Phys. Galaxies and Their Constituents At The Highest Angular Resolutions = Iau Symp Galaxies and Their Constituents At The Highest Angular Resolutions = Iau. Symp. Galaxies in Isolation: Exploring Nature Versus Nurture = Astr Soc P Galaxies in Isolation: Exploring Nature Versus Nurture = Astr. Soc. P. Galaxies in The Local Volume = Astrophysics Space Galaxies in The Local Volume = Astrophysics. Space. Galaxies: The Third Dimension = Astr Soc P Galaxies: The Third Dimension = Astr. Soc. P. Galaxy Disk in Cosmological Context, Proceedings of The 254th Symposium of The Iau = Iau Symp P Series Galaxy Disk in Cosmological Context, Proceedings of The 254th Symposium of The Iau = Iau Symp. P. Series. Galaxy Disks and Disk Galaxies = Astr Soc P Galaxy Disks and Disk Galaxies = Astr. Soc. P. Galaxy Dynamics: A Rutgers Symposium = Astr Soc P Galaxy Dynamics: A Rutgers Symposium = Astr. Soc. P. Galaxy Evolution: Emerging Insights and Future Challenges = Astr Soc P Galaxy Evolution: Emerging Insights and Future Challenges = Astr. Soc. P. Galaxy Evolution: The Milky Way Perspective = Astr Soc P Galaxy Evolution: The Milky Way Perspective = Astr. Soc. P. Galaxy Evolution: Theory and Observations = Rev Mex Ast Astr Galaxy Evolution: Theory and Observations = Rev. Mex. Ast. Astr. Galaxy Formation and Evolution = S-p B Astron Planet Galaxy Formation and Evolution = S-p. B. Astron. Planet. Galaxy Formation = P Int Sch Phys Galaxy Formation = P. Int. Sch. Phys. Galaxy Formation, Second Edition = Astron Astrophys Lib Galaxy Formation, Second Edition = Astron. Astrophys. Lib. Galaxy Interactions At Low and High Redshift = Iau Symp Galaxy Interactions At Low and High Redshift = Iau. Symp. Galaxy Wars: Stellar Populations and Star Formation in Interacting Galaxies = Astr Soc P Galaxy Wars: Stellar Populations and Star Formation in Interacting Galaxies = Astr. Soc. P. Galenika; casopis za medicinu, farmaciju, hemiju i srodne nauke = Galenika Cas Med Farm Hem Srod Nauke Galerius and The Will of Diocletian = Roman Imp Biogr Galerius and The Will of Diocletian = Roman. Imp. Biogr. Galicia-clinica = Galicia Clin Galician and Irish in The European Context: Attitudes Towards Weak and Strong Minority Languages = Palg Stud Minor Lang Galician and Irish in The European Context: Attitudes Towards Weak and Strong Minority Languages = Palg. Stud. Minor. Lang. Galilee Through The Centuries = Duke Judaic Stud Ser Galilee Through The Centuries = Duke. Judaic. Stud. Ser. Galileo Engineer = Bost Stud Philos Sci Galileo Engineer = Bost. Stud. Philos. Sci. Galileo's Medicean Moons: Their Impact On 400 Years of Discovery = Iau Symp P Series Galileo's Medicean Moons: Their Impact On 400 Years of Discovery = Iau. Symp. P. Series. Gallaecia. Publicación del Departamento de prehistoria y arqueología = Gallaecia Galleria-rassegna Bimestrale Di Cultura = Galleria Galleria-rassegna Bimestrale Di Cultura = Galleria. Gallia. Fouilles et monuments archéologiques en France metropolitaine = Gallia Gallia informations. L'archéologie des régions = GalliaInfAReg Gallia informations. Préhistoire et histoire = GalliaInf Gallia préhistoire. Archéologie de la France préhistorique = GalliaPrehist Gallium Arsenide and Related Compounds 1988 = Inst Phys Conf Ser Gallium Arsenide and Related Compounds 1988 = Inst. Phys. Conf. Ser. Gallium Arsenide and Related Compounds 1989 = Inst Phys Conf Ser Gallium Arsenide and Related Compounds 1989 = Inst. Phys. Conf. Ser. Gallium Arsenide and Related Compounds 1990 = Inst Phys Conf Ser Gallium Arsenide and Related Compounds 1990 = Inst. Phys. Conf. Ser. Gallium Arsenide and Related Compounds 1991 = Inst Phys Conf Ser Gallium Arsenide and Related Compounds 1991 = Inst. Phys. Conf. Ser. Gallium Arsenide and Related Compounds 1993 = Inst Phys Conf Ser Gallium Arsenide and Related Compounds 1993 = Inst. Phys. Conf. Ser. Gallium Nitride and Related Materials Ii = Mater Res Soc Symp P Gallium Nitride and Related Materials Ii = Mater. Res. Soc. Symp. P. Gallium Nitride and Related Materials = Mater Res Soc Symp P Gallium Nitride and Related Materials = Mater. Res. Soc. Symp. P. Gallium Nitride Electronics = Springer Ser Mater S Gallium Nitride Electronics = Springer. Ser. Mater. S. Gallium Nitride (gan) Ii = Semiconduct Semimet Gallium Nitride (gan) Ii = Semiconduct. Semimet. Gallium Nitride (gan) I = Semiconduct Semimet Gallium Nitride (gan) I = Semiconduct. Semimet. Gallium Nitride Materials and Devices Iii = Proc Spie Gallium Nitride Materials and Devices Iii = Proc. Spie. Gallium Nitride Materials and Devices Iii = P Soc Photo-opt Ins Gallium Nitride Materials and Devices Iii = P. Soc. Photo-opt. Ins. Gallium Nitride Materials and Devices Ii = Proc Spie Gallium Nitride Materials and Devices Ii = Proc. Spie. Gallium Nitride Materials and Devices Ii = P Soc Photo-opt Ins Gallium Nitride Materials and Devices Ii = P. Soc. Photo-opt. Ins. Gallium Nitride Materials and Devices Iv = P Soc Photo-opt Ins Gallium Nitride Materials and Devices Iv = P. Soc. Photo-opt. Ins. Gallium Nitride Materials and Devices = Proc Spie Gallium Nitride Materials and Devices = Proc. Spie. Gallium Nitride Materials and Devices = P Soc Photo-opt Ins Gallium Nitride Materials and Devices = P. Soc. Photo-opt. Ins. Gallium Nitride Materials and Devices V = P Soc Photo-opt Ins Gallium Nitride Materials and Devices V = P. Soc. Photo-opt. Ins. Gallstones: Pathogenesis and Treatment = Falk Symp Gallstones: Pathogenesis and Treatment = Falk. Symp. Gallup report (Princeton, N.J. : 1981) = Gallup Rep Galois Theory and Modular Forms = Dev Math Galois Theory and Modular Forms = Dev. Math. Galois Theory = Universitext Galois Theory = Universitext. Galpin Society Journal = Galpin Soc J Galpin Society Journal = Galpin Soc. J. Galvanotechnik = Galvanotechnik Gambling, Freedom and Democracy = Routl Stud Soc Polit Gambling, Freedom and Democracy = Routl. Stud. Soc. Polit. Games and Culture = Games Cult Games and Culture = Games Cult. Games and Economic Behavior = Game Econ Behav Games and Economic Behavior = Game. Econ. Behav. Games and economic behavior = Games Econ Behav Games and Economic Behavior=Games Econ. Behav. Games and Economic Behavior = Games Econom. Behav. Games, Groups, and The Global Good = Springer Ser Game Th Games, Groups, and The Global Good = Springer. Ser. Game. Th. Games: Unifying Logic, Language, and Philosophy = Logic Epistemol Unit Games: Unifying Logic, Language, and Philosophy = Logic. Epistemol. Unit. Gamete Interaction = Conrad W S Gamete Interaction = Conrad. W. S. Gamete research = Gamete Res Gamete Research = Gamete Res Gamete Research = Gamete Res. Game Theoretical Applications to Economics and Operations Research = Theor Dec C Game Theoretical Applications to Economics and Operations Research = Theor. Dec. C. Game-theoretic Methods in General Equilibrium Analysis = Nato Adv Sci Inst Se Game-theoretic Methods in General Equilibrium Analysis = Nato. Adv. Sci. Inst. Se. Game Theoretic Problems in Network Economics and Mechanism Design Solutions = Adv Inform Knowl Pro Game Theoretic Problems in Network Economics and Mechanism Design Solutions = Adv. Inform. Knowl. Pro. Game Theoretic Risk Analysis of Security Threats = Int Ser Oper Res Man Game Theoretic Risk Analysis of Security Threats = Int. Ser. Oper. Res. Man. Game Theory Analysis of Options = Lect Notes Econ Math Game Theory Analysis of Options = Lect. Notes. Econ. Math. Game Theory and Applications = Game Theor Appl Ser Game Theory and Applications = Game Theor. Appl. Ser. Game Theory and Applications - Series = Game Theor Appl Game Theory and Applications - Series = Game Theor. Appl. Game Theory and Applications Series = Game Theor Appl Ser Game Theory and Applications Series = Game Theor. Appl. Ser. Game Theory and Applications, Vol 13 = Game Theor Appl Game Theory and Applications, Vol 13 = Game Theor. Appl. Game Theory and Economic Applications = Lect Notes Econ Math Game Theory and Economic Applications = Lect. Notes. Econ. Math. Game Theory and Linguistic Meaning = Curr Res Semant Prag Game Theory and Linguistic Meaning = Curr. Res. Semant. Prag. Game Theory and Mutual Misunderstanding: Scientific Dialogues in Five Acts = Stud Econ Theory Game Theory and Mutual Misunderstanding: Scientific Dialogues in Five Acts = Stud. Econ. Theory Game Theory and Policy Making in Natural Resources and The Environment = Routl Explor Environ Game Theory and Policy Making in Natural Resources and The Environment = Routl. Explor. Environ. Game Theory, Experience, Rationality = Vien Cir Inst Yearbk Game Theory, Experience, Rationality = Vien. Cir. Inst. Yearbk. Gaming Cultures and Place in Asia-pacific = Routl Stud New Media Gaming Cultures and Place in Asia-pacific = Routl. Stud. New. Media. Gamma 2001 = Aip Conf Proc Gamma 2001 = Aip. Conf. Proc. Gamma-delta T Cells = Chem Immunol Gamma-delta T Cells = Chem. Immunol. Gamma-ray and Cosmic-ray Detectors, Techniques, and Missions = P Soc Photo-opt Ins Gamma-ray and Cosmic-ray Detectors, Techniques, and Missions = P. Soc. Photo-opt. Ins. Gamma Ray Astronomy = Adv Space Res Gamma Ray Astronomy = Adv. Space. Res. Gamma-ray Burst and Afterglow Astronomy 2001 = Aip Conf Proc Gamma-ray Burst and Afterglow Astronomy 2001 = Aip. Conf. Proc. Gamma-ray Bursts 2007 = Aip Conf Proc Gamma-ray Bursts 2007 = Aip. Conf. Proc. Gamma-ray Bursts: 30 Years of Discovery = Aip Conf Proc Gamma-ray Bursts: 30 Years of Discovery = Aip. Conf. Proc. Gamma-ray Bursts - 3rd Huntsville Symposium, Pts 1 and 2 = Aip Conf Proc Gamma-ray Bursts - 3rd Huntsville Symposium, Pts 1 and 2 = Aip. Conf. Proc. Gamma-ray Bursts = Aip Conf Proc Gamma-ray Bursts = Aip. Conf. Proc. Gamma-ray Bursts in The Afterglow Era = Eso Astrophy Symp Gamma-ray Bursts in The Afterglow Era = Eso. Astrophy. Symp. Gamma-ray Bursts in The Swift Era = Aip Conf Proc Gamma-ray Bursts in The Swift Era = Aip. Conf. Proc. Gamma-ray Bursts: Prospects for Glast = Aip Conf Proc Gamma-ray Bursts: Prospects for Glast = Aip. Conf. Proc. Gamma-ray Bursts, Pts 1 and 2 = Aip Conf Proc Gamma-ray Bursts, Pts 1 and 2 = Aip. Conf. Proc. Gamma-ray Bursts - Second Workshop = Aip Conf Proc Gamma-ray Bursts - Second Workshop = Aip. Conf. Proc. Gamma-ray Bursts: The Brightest Explosions in The Universe = S-p B Astron Planet Gamma-ray Bursts: The Brightest Explosions in The Universe = S-p. B. Astron. Planet. Gamma-ray Bursts: The First Three Minutes = Astr Soc P Gamma-ray Bursts: The First Three Minutes = Astr. Soc. P. Gamma-ray Busts = Aip Conf Proc Gamma-ray Busts = Aip. Conf. Proc. Gamma-ray Detector Physics and Applications = P Soc Photo-opt Ins Gamma-ray Detector Physics and Applications = P. Soc. Photo-opt. Ins. Gamma-ray Detectors = P Soc Photo-opt Ins Gamma-ray Detectors = P. Soc. Photo-opt. Ins. Gamma-ray Line Astrophysics = Aip Conf Proc Gamma-ray Line Astrophysics = Aip. Conf. Proc. Gamma Ray Sky With Compton Gro and Sigma = Nato Adv Sci Inst Se Gamma Ray Sky With Compton Gro and Sigma = Nato. Adv. Sci. Inst. Se. GAMS Journal of Mathematics and Mathemaical Biosciences = GAMS J. Math. Math. Biosci. Gan, Ain, Inn and Related Materials = Mater Res Soc Symp P Gan, Ain, Inn and Related Materials = Mater. Res. Soc. Symp. P. Gan, Ain, Inn and Their Alloys = Mater Res Soc Symp P Gan, Ain, Inn and Their Alloys = Mater. Res. Soc. Symp. P. Gan and Related Alloys-2001 = Mater Res Soc Symp P Gan and Related Alloys-2001 = Mater. Res. Soc. Symp. P. Gan and Related Alloys-2002 = Mater Res Soc Symp P Gan and Related Alloys-2002 = Mater. Res. Soc. Symp. P. Gan and Related Alloys - 2003 = Mater Res Soc Symp P Gan and Related Alloys - 2003 = Mater. Res. Soc. Symp. P. Gandhis Spinning Wheel and The Making of India = Rout Stud S Asia His Gandhis Spinning Wheel and The Making of India = Rout. Stud. S. Asia. His. Gan. Gann; the Japanese journal of cancer research = Gan Ganga: Water Use in The Indian Subcontinent = Water Sci Technol Li Ganga: Water Use in The Indian Subcontinent = Water Sci. Technol. Li. Gangtie = Gangtie Ganguang Kexue Yu Guang Huaxue = Ganguang Kexue Yu Guang Huaxue Ganita = Ganita Ganita Sandesh = Ganita Sandesh Ganita-yukti-bhasa (rationales in Mathematical Astronomy) of Jyesthadeva, Vol. Ii: Astronomy = Sourc Stud Hist Math Ganita-yukti-bhasa (rationales in Mathematical Astronomy) of Jyesthadeva, Vol. Ii: Astronomy = Sourc. Stud. Hist. Math. Ganita-yukti-bhasa (rationales in Mathematical Astronomy) of Jyesthadeva, Vol. I : Mathematics = Sourc Stud Hist Math Ganita-yukti-bhasa (rationales in Mathematical Astronomy) of Jyesthadeva, Vol. I : Mathematics = Sourc. Stud. Hist. Math. Ganit = Ganit Ganka (Ophthalmology) = Ganka Ganka. Ophthalmology = Ganka Gann = Gann Gann Monograph On Cancer Research = Gann Monogr Canc Res Gann Monograph On Cancer Research = Gann Monogr. Canc. Res. Gan No Rinsho (Japanese Journal of Cancer Clinics) = Gan No Rinsho Gan no rinsho. Japan journal of cancer clinics = Gan No Rinsho Gansu nong ye da xue xue bao = Gansu nongye daxue xuebao|Gansu Nong Ye Da Xue Xue Bao Gan To Kagaku Ryoho (Cancer and Chemotherapy) = Gan To Kagaku Ryoho Gan to kagaku ryoho. Cancer & chemotherapy = Gan To Kagaku Ryoho Gan To Kagaku Ryoho [Japanese Journal of Cancer and Chemotherapy]=Gan To Kagaku Ryoho;; Ganzheitliche Fabrikplanung: Grundlagen, Vorgehensweise, Edv-unterstutzung = Vdi-buch Ganzheitliche Fabrikplanung: Grundlagen, Vorgehensweise, Edv-unterstutzung = Vdi-buch. Gaodeng Xuexiao Huaxue Xuebao = Gaodeng Xuexiao Huaxue Xuebao Gaofenzi Cailiao Kexue Yu Gongcheng = Gaofenzi Cailiao Kexue Yu Gongcheng Gaofenzi Xuebao = Gaofenzi Xuebao Gaoneng Wuli Yu Hewuli = Gaoneng Wuli Yu Hewuli Gaoxiao Huaxue Gongcheng Xuebao = Gaoxiao Huaxue Gongcheng Xuebao Gaoxiao Yingyong Shuxue Xuebao = Gaoxiao Yingyong Shuxue Xuebao Ser. A Gaoxiong Yi Xue Ke Xue Za Zhi (Kaohsiung Journal of Medical Sciences) = Gaoxiong Yi Xue Ke Xue Za Zhi Gap Junction-mediated Intercellular Signalling in Health and Disease = Novart Fdn Symp Gap Junction-mediated Intercellular Signalling in Health and Disease = Novart. Fdn. Symp. Gap Junctions = Curr Top Membr Gap Junctions = Curr. Top. Membr. Gap Junctions = Prog Cell R Gap Junctions = Prog. Cell. R. Gap Symmetry and Fluctuations in High-t(c) Superconductors = Nato Adv Sci I B-phy Gap Symmetry and Fluctuations in High-t(c) Superconductors = Nato. Adv. Sci. I. B-phy. Garbage-the Independent Environmental Quarterly = Garbage-indep Env Q Garbage-the Independent Environmental Quarterly = Garbage-indep. Env. Q. Garden history = Gard Hist Garden Journal = Garden J Garden Journal = Garden J. Garden of Delights: Reform and Renaissance for Women in The Twelfth Century = Middle Ages Ser Garden of Delights: Reform and Renaissance for Women in The Twelfth Century = Middle. Ages. Ser. Garland Reference Library of Social Science = Garland Ref. Libr. Soc. Sci. Garland Reference Library of Social Science = Garl Ref L Garland Reference Library of Social Science = Garl. Ref. L. Garland Reference Library of The Humanities = Garl Rl Hum Garland Reference Library of The Humanities = Garl. Rl. Hum. Garland Studies in Higher Education = Garland High Educ Garland Studies in Higher Education = Garland High. Educ. Garland Studies in The Renaissance = Garl S Renais Garland Studies in The Renaissance = Garl. S. Renais. Garlic Consumption and Health = Food Bev Consum Hlth Garlic Consumption and Health = Food. Bev. Consum. Hlth. Gartenamt, Das = Gartenamt Gartenbau, Der = Gartenbau Gartenbauwissenschaft = Gartenbauwissenschaf Gartenbauwissenschaft = Gartenbauwissenschaf. Gas and Chemical Lasers, and Applications Iii = P Soc Photo-opt Ins Gas and Chemical Lasers, and Applications Iii = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers and Applications Ii = P Soc Photo-opt Ins Gas and Chemical Lasers and Applications Ii = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers and Intense Beam Applications Iii = P Soc Photo-opt Ins Gas and Chemical Lasers and Intense Beam Applications Iii = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers and Intense Beam Applications Ii = P Soc Photo-opt Ins Gas and Chemical Lasers and Intense Beam Applications Ii = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers and Intense Beam Applications Iv = P Soc Photo-opt Ins Gas and Chemical Lasers and Intense Beam Applications Iv = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers and Intense Beam Applications = P Soc Photo-opt Ins Gas and Chemical Lasers and Intense Beam Applications = P. Soc. Photo-opt. Ins. Gas and Chemical Lasers = P Soc Photo-opt Ins Gas and Chemical Lasers = P. Soc. Photo-opt. Ins. Gas and Galaxy Evolution: A Conference in Honor of The 20th Anniversary of The Vla = Astr Soc P Gas and Galaxy Evolution: A Conference in Honor of The 20th Anniversary of The Vla = Astr. Soc. P. Gas and Metal Vapor Lasers and Applications = P Soc Photo-opt Ins Gas and Metal Vapor Lasers and Applications = P. Soc. Photo-opt. Ins. Gas, Chemical, and Electrical Lasers and Intense Beam Control and Applications = P Soc Photo-opt Ins Gas, Chemical, and Electrical Lasers and Intense Beam Control and Applications = P. Soc. Photo-opt. Ins. Gas Engineering & Management = Gas Eng Manage Gas Engineering & Management = Gas Eng. Manage. Gaseous Electronics and Its Applications = Adv Sol Tec Gaseous Electronics and Its Applications = Adv. Sol. Tec. Gas-expanded Liquids and Near-critical Media: Green Chemistry and Engineering = Acs Sym Ser Gas-expanded Liquids and Near-critical Media: Green Chemistry and Engineering = Acs. Sym. Ser. Gas Explosions in Ccgt and Steam Plants = Imeche Sem Gas Explosions in Ccgt and Steam Plants = Imeche. Sem. Gas Generation and Migration in Radioactive Waste Disposal: Safety-relevant Issues = Radioact W Gas Generation and Migration in Radioactive Waste Disposal: Safety-relevant Issues = Radioact. W. Gas Hydrates: Challenges for The Future = Ann Ny Acad Sci Gas Hydrates: Challenges for The Future = Ann. Ny. Acad. Sci. Gas Lasers = P Soc Photo-opt Ins Gas Lasers = P. Soc. Photo-opt. Ins. Gas Lasers - Recent Developments and Future Prospects = Nato Asi 3 High Tech Gas Lasers - Recent Developments and Future Prospects = Nato. Asi. 3. High. Tech. Gaslini = Gaslini Gas, Liquid, and Free-electron Lasers - Laser Optics '98 = P Soc Photo-opt Ins Gas, Liquid, and Free-electron Lasers - Laser Optics '98 = P. Soc. Photo-opt. Ins. Gas, Metal Vapor, and Free-electron Lasers and Applications = P Soc Photo-opt Ins Gas, Metal Vapor, and Free-electron Lasers and Applications = P. Soc. Photo-opt. Ins. Gas-phase and Surface Chemistry in Electronic Materials Processing = Mater Res Soc Symp P Gas-phase and Surface Chemistry in Electronic Materials Processing = Mater. Res. Soc. Symp. P. Gas Pressure Effects On Materials Processing and Design = Mater Res Soc Symp P Gas Pressure Effects On Materials Processing and Design = Mater. Res. Soc. Symp. P. Gas Separation and Purification = Gas Sep. Purif. Gas Separation & Purification = Gas Sep Purif Gas Separation & Purification = Gas Sep. Purif. Gas Transport in Porous Media = Theor Appl Trans Por Gas Transport in Porous Media = Theor. Appl. Trans. Por. Gastric Bypass: Surgical Procedures, Health Effects and Common Complications = Surg-proced Complica Gastric Bypass: Surgical Procedures, Health Effects and Common Complications = Surg-proced. Complica. Gastric Cancer: Diagnosis, Early Prevention, and Treatment = Cancer Etiol Diagn T Gastric Cancer: Diagnosis, Early Prevention, and Treatment = Cancer. Etiol. Diagn. T. Gastric Cancer = Gastric Cancer Gastric cancer : official journal of the International Gastric Cancer Association and the Japanese Gastric Cancer Association = Gastric Cancer Gastric Carcinogenesis = Int Congr Ser Gastric Carcinogenesis = Int. Congr. Ser. Gastroduodenal Disease and Helicobacter Pylori = Curr Top Microbiol Gastroduodenal Disease and Helicobacter Pylori = Curr. Top. Microbiol. Gastroduodenal Pathology and Camphylobacter Pylori = Int Congr Ser Gastroduodenal Pathology and Camphylobacter Pylori = Int. Congr. Ser. Gastroenteritis Viruses = Novart Fdn Symp Gastroenteritis Viruses = Novart. Fdn. Symp. Gastroenterologia = Gastroenterologia Gastroenterologia Japonica = Gastroenterol Jpn Gastroenterologia Japonica = Gastroenterol. Jpn. Gastroenterologia Y Hepatologia = Gastroenterol Hepato Gastroenterologia Y Hepatologia = Gastroenterol. Hepato. Gastroenterologia y hepatologia = Gastroenterol Hepatol Gastroenterologia y Hepatologia = Gastroenterol. Hepatol. Gastroenterologia Y Hepatologia=Gastroenterol Hepatol;; Gastroenterologia Y Hepatologia = Gastroent Hepat-barc Gastroenterologia Y Hepatologia = Gastroent. Hepat-barc. Gastroenterologie Clinique Et Biologique = Gastroen Clin Biol Gastroenterologie Clinique Et Biologique = Gastroen. Clin. Biol. Gastroenterologie clinique et biologique = Gastroenterol Clin Biol Gastroenterologie Clinique et Biologique = Gastroenterol. Clin. Biol. Gastroenterologie Clinique Et Biologique=Gastroenterol Clin Biol;; Gastroenterologische Fortbildungskurse fur die Praxis = Gastroenterol Fortbildungskurse Prax Gastroenterologische Fortbildungskurse fur die Praxis = Gastroenterol. Fortbildungskurse Prax. Gastroenterologisches Journal = Gastroenterol. J. Gastroenterologisches Journal : Organ der Gesellschaft fur Gastroenterologie der DDR = Gastroenterol J Gastroenterologist=Gastroenterologist;; Gastroenterologist = Gastroenterologist Gastroenterology Clinics of North America = Gastroenterol Clin N Gastroenterology Clinics of North America = Gastroenterol. Clin. N. Gastroenterology clinics of North America = Gastroenterol Clin North Am Gastroenterology Clinics of North America=Gastroenterol Clin North Am;; Gastroenterology Clinics of North America = Gastroenterol. Clin. North Am. Gastroenterology=Gastroenterology;; Gastroenterology = Gastroenterology Gastroenterology Nursing = Gastroenterol Nurs Gastroenterology Nursing = Gastroenterol. Nurs. Gastroenterology nursing : the official journal of the Society of Gastroenterology Nurses and Associates = Gastroenterol Nurs Gastroenterology Research and Practice = Gastroent Res Pract Gastroenterology Research and Practice = Gastroent. Res. Pract. Gastroenterology Yesterday - Today - Tomorrow: A Review and Preview = Falk Symp Gastroenterology Yesterday - Today - Tomorrow: A Review and Preview = Falk. Symp. Gastroenteropancreatic Neuroendocrine Tumor Disease: Molecular and Cell Biological Aspects = Ann Ny Acad Sci Gastroenteropancreatic Neuroendocrine Tumor Disease: Molecular and Cell Biological Aspects = Ann. Ny. Acad. Sci. Gastrointestinal endoscopy clinics of North America = Gastrointest Endosc Clin N Am Gastrointestinal Endoscopy Clinics of North America=Gastrointest Endosc Clin N Am;; Gastrointestinal Endoscopy Clinics of North America = Gastrointest. Endosc. Clin. N. Am. Gastrointestinal endoscopy = Gastrointest Endosc Gastrointestinal Endoscopy=Gastrointest Endosc;; Gastrointestinal Endoscopy = Gastrointest Endosc Gastrointestinal Endoscopy = Gastrointest. Endosc. Gastrointestinal Function : Regulation and Disturbances, Vol 7 = Int Congr Ser Gastrointestinal Function : Regulation and Disturbances, Vol 7 = Int. Congr. Ser. Gastrointestinal Function : Regulation and Disturbances, Vol 8 = Int Congr Ser Gastrointestinal Function : Regulation and Disturbances, Vol 8 = Int. Congr. Ser. Gastrointestinal Function : Regulation and Disturbances, Vol 9 = Int Congr Ser Gastrointestinal Function : Regulation and Disturbances, Vol 9 = Int. Congr. Ser. Gastrointestinal Inflammation and Disturbed Gut Function: The Challenge of New Concepts = Falk Symp Gastrointestinal Inflammation and Disturbed Gut Function: The Challenge of New Concepts = Falk. Symp. Gastrointestinal Lymphoma = Recent Res Cancer Gastrointestinal Lymphoma = Recent. Res. Cancer. Gastrointestinal Malignancies = Emerg Cancer Ther Gastrointestinal Malignancies = Emerg. Cancer. Ther. Gastrointestinal Microcirculation = Progr Appl Micr Gastrointestinal Microcirculation = Progr. Appl. Micr. Gastrointestinal Pathology / = Int Aca Pat Gastrointestinal Pathology / = Int. Aca. Pat. Gastrointestinal radiology = Gastrointest Radiol Gastrointestinal Radiology = Gastrointest Radiol Gastrointestinal Radiology = Gastrointest. Radiol. Gastrointestinal Tract Sonography in Fetuses and Children = Med Radiol Diagn Ima Gastrointestinal Tract Sonography in Fetuses and Children = Med. Radiol. Diagn. Ima. Gastrointestinal Transport = Curr Top Membr Gastrointestinal Transport = Curr. Top. Membr. Gastrulation = Bod Mar Lab Gastrulation = Bod. Mar. Lab. Gas Turbine Pollutant Emissions = Imeche Sem Gas Turbine Pollutant Emissions = Imeche. Sem. Gas Turbines = Imeche Sem Gas Turbines = Imeche. Sem. Gas Turbines in Power Plants = Vdi Bericht Gas Turbines in Power Plants = Vdi. Bericht. Gaswaerme International = Gaswaerme Int. Gas, Wasser, Abwasser = Gas Wasser Abwasser Gate Dielectric Integrity: Material, Process, and Tool Qualification = Am Soc Test Mater Gate Dielectric Integrity: Material, Process, and Tool Qualification = Am. Soc. Test. Mater. Gates Foundation and The Future of Us Public Schools = Routl Stud Educ Neol Gates Foundation and The Future of Us Public Schools = Routl. Stud. Educ. Neol. Gateway heritage : quarterly journal of the Missouri Historical Society = Gateway Herit Gateway to The Pacific Rim: Information Resources for The 21st Century = A R L Minut Gateway to The Pacific Rim: Information Resources for The 21st Century = A. R. L. Minut. Gathering Hopewell: Society, Ritual, and Ritual Interaction = Interd Contrib Arch Gathering Hopewell: Society, Ritual, and Ritual Interaction = Interd. Contrib. Arch. Gatt Or Wipo : New Ways in The International Protection of Intellectual Property = Iic St Ind Gatt Or Wipo : New Ways in The International Protection of Intellectual Property = Iic. St. Ind. Gauge Theory and Symplectic Geometry = Nato Adv Sci I C-mat Gauge Theory and Symplectic Geometry = Nato. Adv. Sci. I. C-mat. Gauss-Gesellschaft e = Gauss-Ges. Göttingen Mitt. Gaussian Approximation Potential: An Interatomic Potential Derived From First Principles Quantum Mechanics = Springer Theses-reco Gaussian Approximation Potential: An Interatomic Potential Derived From First Principles Quantum Mechanics = Springer. Theses-reco. Gaussian Processes for Machine Learning = Adapt Comput Mach Le Gaussian Processes for Machine Learning = Adapt. Comput. Mach. Le. Gaussian Random Fields = S Prob Stat Gaussian Random Fields = S. Prob. Stat. Gaussian Scale-space Theory = Comp Imag Vis Gaussian Scale-space Theory = Comp. Imag. Vis. Gauvain, Gawein, Walewein: Die Emanzipation Des Ewig Verspateten = Hermaea Ger Forsch Gauvain, Gawein, Walewein: Die Emanzipation Des Ewig Verspateten = Hermaea. Ger. Forsch. Gayana Botanica = Gayana Bot Gayana Botanica = Gayana Bot. Gayana = Gayana Gay and Lesbian Subculture in Urban China = Routl Contemp Asia Gay and Lesbian Subculture in Urban China = Routl. Contemp. Asia. Gay Liberation Youth Movement in New York: An Army of Lovers Cannot Fail = Stud Am Popul Hist C Gay Liberation Youth Movement in New York: An Army of Lovers Cannot Fail = Stud. Am. Popul. Hist. C. Gay Male Fiction Since Stonewall: Ideology, Conflict, and Aesthetics = Rout Stud Tw Cen Lit Gay Male Fiction Since Stonewall: Ideology, Conflict, and Aesthetics = Rout. Stud. Tw. Cen. Lit. Gay Mens Issues in Religious Studies Series = Gay Men I R Gay Mens Issues in Religious Studies Series = Gay Men. I. R. Gays' and Lesbians' Rights in An Enlarged European Union = Etud Europ Gays' and Lesbians' Rights in An Enlarged European Union = Etud. Europ. Gazeta medica portuguesa = Gaz Med Port Gazette des beaux-arts = GazBA Gazette Des Beaux-arts = Gaz Beaux-arts Gazette Des Beaux-arts = Gaz. Beaux-arts Gazette Des Hopitaux Civils Et Militaire De L Empire Ottoman = Gaz Hop Civ Mil Empire Ottoman Gazette des Mathématiciens = Gaz. Math. Gazette = Gazette Gazette Medicale De France = Gazette Med France Gazette Medicale De France = Gazette Med. France Gazette medicale de France = Gaz Med Fr Gazette Medicale de France = Gaz. Med. Fr. Gazette Medicale = Gaz Med-france Gazette Medicale = Gaz. Med-france. Gazette numismatique suisse = GNS Gazette of the Egyptian Paediatric Association = Gaz. Egypt. Paediatr. Assoc. Gazette of the Grolier Club. Grolier Club = Gaz Grolier Club Gazette - The Law Society of Upper Canada. Law Society of Upper Canada = Gaz Law Soc Upper Can Gaz, woda; technika sanitarna = Gaz Woda Tech Gazzetta chimica Italiana = Gazz Chim Ital Gazzetta Chimica Italiana = Gazz Chim Ital Gazzetta Chimica Italiana = Gazz. Chim. Ital. Gazzetta degli ospedali e delle cliniche = Gazz Osp Clin Gazzetta internazionale di medicina e chirurgia = Gazz Int Med Chir Gazzetta Internazionale di Medicina e Chirurgia = Gazz. Int. Med. Chir. Gazzetta medica italiana = Gazz Med Ital Gazzetta Medica Italiana = Gazz. Med. Ital. Gazzetta medica lombarda = Gaz Med Lomb Gazzetta sanitaria = Gazz Sanit Gazzetta Sanitaria = Gazz. Sanit. Gbf Monograph Series = Gbf Monog Series Gbf Monograph Series = Gbf Monog. Series GBF Monographs = GBF Monogr. Gdr Monitor Special Series = Gdr Mon Sp Gdr Monitor Special Series = Gdr Mon. Sp. Gearbox Noise and Vibration = Proc Inst Mech Eng S Gearbox Noise and Vibration = Proc. Inst. Mech. Eng. S. Gear Drives '99 = Vdi Bericht Gear Drives '99 = Vdi. Bericht. Gear Technology - Gaining A Competitive Edge = Imeche Sem Gear Technology - Gaining A Competitive Edge = Imeche. Sem. Geburtshilfe Und Frauenheilkunde = Geburtsh Frauenheilk Geburtshilfe Und Frauenheilkunde = Geburtsh. Frauenheilk. Geburtshilfe und Frauenheilkunde = Geburtshilfe Frauenheilkd Geburtshilfe und Frauenheilkunde = Geburtshilfe Frauenheilkd. Gec-aei Journal of Science and Technology = Gec-aei J Sci Techno Gec-aei Journal of Science and Technology = Gec-aei J. Sci. Techno. Gec Journal of Research = Gec-j Res Gec Journal of Research = Gec-j. Res. Gec-journal of Science and Technology = Gec J Sci Technol Gec-journal of Science and Technology = Gec. J. Sci. Technol. Gec-journal of Science & Technology = Gec-j Sci Technol Gec-journal of Science & Technology = Gec-j. Sci. Technol. Gec Journal of Technology = Gec J Technol Gec Journal of Technology = Gec J. Technol. Gec Review = Gec Rev Gec Review = Gec Rev. Gedeckte Schuldverschreibungen in Deutschland Und Grossbritannien: Pfandbriefe Und Uk Covered Bonds Im Rechtsvergleich = Schr Eur Int Priv B Gedeckte Schuldverschreibungen in Deutschland Und Grossbritannien: Pfandbriefe Und Uk Covered Bonds Im Rechtsvergleich = Schr. Eur. Int. Priv. B. Gedrag & gezondheid = Gedrag Gezond Gedrag & Gezondheid = Gedrag Gezond Gedrag & Gezondheid = Gedrag Gezond. Gedrag & Organisatie = Gedrag Organ Gedrag & Organisatie = Gedrag Organ. Gedrag-tijdschrift Voor Psychologie = Gedrag Gezond Gedrag-tijdschrift Voor Psychologie = Gedrag. Gezond. Gedruckten Griechischen Beichtbucher Zur Zeit Der Turkenherrschaft = Arb Kirchengesch Gedruckten Griechischen Beichtbucher Zur Zeit Der Turkenherrschaft = Arb. Kirchengesch. Gefahrstoffe Reinhaltung der Luft = Gefahrstoffe - Reinhalt. Luft Gefahrstoffe Reinhaltung Der Luft = Gefahrst Reinhalt L Gefahrstoffe Reinhaltung Der Luft = Gefahrst. Reinhalt. L. Gefasschirurgie = Gefasschirurgie Gefiederte Welt, Die = Gefied.  Welt Gegenbaurs morphologisches Jahrbuch = Gegenbaurs Morphol Jahrb Gegenbaurs Morphologisches Jahrbuch = Gegenbaurs Morphol. Jahrb. Gegenstandstheorie Und Theorie Der Intentionalitat Bei Alexius Meinong = Phaenomenologica Gegenstandstheorie Und Theorie Der Intentionalitat Bei Alexius Meinong = Phaenomenologica. Gegenwartige Vergangenheit: Ausgewahlte Kleine Schriften = Beitr Altertumskunde Gegenwartige Vergangenheit: Ausgewahlte Kleine Schriften = Beitr. Altertumskunde. Gegenwartskunde Gesellschaft Staat Erziehung = Gegen Ges Staat Erz Gegenwartskunde Gesellschaft Staat Erziehung = Gegen. Ges. Staat Erz. Gehirn Und Gedudel: Warum Die Fussball-europameisterschaft Das Leben Verlangert, Der Musikantenstadl Aber Nicht = Trace Transm Rhetor Gehirn Und Gedudel: Warum Die Fussball-europameisterschaft Das Leben Verlangert, Der Musikantenstadl Aber Nicht = Trace. Transm. Rhetor. Geistiges Eigentum: Herausforderung Durchsetzung = Mpi Stud Intell Prop Geistiges Eigentum: Herausforderung Durchsetzung = Mpi. Stud. Intell. Prop. Geka chiryo. Surgical therapy = Geka Chiryo Geka Chiryo (Surgical Therapy) = Geka Chiryo Gel-free Proteomics: Methods and Protocols = Methods Mol Biol Gel-free Proteomics: Methods and Protocols = Methods Mol. Biol. Geloof en wetenschap = Geloof Wet Gels = Prog Coll Pol Sci S Gels = Prog. Coll. Pol. Sci. S. Gels: Structures, Properties, and Functions = Prog Coll Pol Sci S Gels: Structures, Properties, and Functions = Prog. Coll. Pol. Sci. S. Ge-magazine = Ge Mag Gematologiia i transfuziologiia = Gematol Transfuziol Gematologiia i Transfuziologiia = Gematol. Transfuziol. Gematologiya I Transfuziologiya = Gematol Transfuziol Gematologiya I Transfuziologiya = Gematol. Transfuziol. Gems & Gemology = Gems Gemol Gems & Gemology = Gems Gemol. Gems in Experimental Mathematics = Contemp Math Gems in Experimental Mathematics = Contemp. Math. Gem State RN News Letter = Gem State RN News Lett. Genava. Revue d'histoire de l'art et d'archéologie = Genava [Gencho Hiroshima igaku] The Hiroshima medical journal = Gencho Hiroshima Igaku Gender action : a newsletter of the USAID Office of Women in Development = Gend Action Gender and Agrarian Reforms = Routl Int Stud Women Gender and Agrarian Reforms = Routl. Int. Stud. Women. Gender and Chinese Development: Towards An Equitable Society = Routl Iaffe Adv Fem Gender and Chinese Development: Towards An Equitable Society = Routl. Iaffe. Adv. Fem. Gender and Christianity in Medieval Europe: New Perspectives = Middle Ages Ser Gender and Christianity in Medieval Europe: New Perspectives = Middle. Ages. Ser. Gender and Community Under British Colonialism: Emotion, Struggle and Politics in A Chinese Village = E Asia Hist Polit So Gender and Community Under British Colonialism: Emotion, Struggle and Politics in A Chinese Village = E. Asia. Hist. Polit. So. Gender and Culture At The Limit of Rights = Pa Stud Hum Rights Gender and Culture At The Limit of Rights = Pa. Stud. Hum. Rights Gender and Culture in Literature and Film East and West: Issues of Perception and Interpretation = Lit St E W Gender and Culture in Literature and Film East and West: Issues of Perception and Interpretation = Lit. St. E. W. Gender and development = Gend Dev Gender and education = Gend Educ Gender and Education = Gender Educ Gender and Education = Gender Educ. Gender and Education in China: Gender Discourses and Women's Schooling in The Early Twentieth Century = Routl Contemp China Gender and Education in China: Gender Discourses and Women's Schooling in The Early Twentieth Century = Routl. Contemp. China. Gender and Everyday Life = New Sociol Gender and Everyday Life = New. Sociol. Gender and International Security = Routl Crit Secur Stu Gender and International Security = Routl. Crit. Secur. Stu. Gender and Jewish Difference From Paul to Shakespeare = Middle Ages Ser Gender and Jewish Difference From Paul to Shakespeare = Middle. Ages. Ser. Gender and Labour in Korea and Japan: Sexing Class = Women Asia Ser Gender and Labour in Korea and Japan: Sexing Class = Women. Asia. Ser. Gender and Laughter: Comic Affirmation and Subversion in Traditional and Modern Media = Amst Beitr Neuer Ger Gender and Laughter: Comic Affirmation and Subversion in Traditional and Modern Media = Amst. Beitr. Neuer. Ger. Gender and Narrative in The Mahabharata = Routl Hindu Stud Ser Gender and Narrative in The Mahabharata = Routl. Hindu. Stud. Ser. Gender and Recovery From Coronary Artery Bypass Surgery: A Psychological Perspective = Fortschr Herz Thorax Gender and Recovery From Coronary Artery Bypass Surgery: A Psychological Perspective = Fortschr. Herz. Thorax. Gender and Self in Islam = Routl Adv Midd E Isl Gender and Self in Islam = Routl. Adv. Midd. E. Isl. Gender and Sexual Diversity in Schools: An Introduction = Explor Educ Purp Gender and Sexual Diversity in Schools: An Introduction = Explor. Educ. Purp. Gender and Social Policy in A Global Context: Uncovering The Gendered Structure of The Social = Soc Policy Dev Conte Gender and Social Policy in A Global Context: Uncovering The Gendered Structure of The Social = Soc. Policy Dev. Conte. Gender and Society : Feminist Perspectives On The Past and Present = Gend Soc F Gender and Society : Feminist Perspectives On The Past and Present = Gend. Soc. F. Gender and The American Temperance Movement of The Nineteenth Century = Stud Am Popul Hist C Gender and The American Temperance Movement of The Nineteenth Century = Stud. Am. Popul. Hist. C. Gender and The Contours of Precarious Employment = Routl Iaffe Adv Fem Gender and The Contours of Precarious Employment = Routl. Iaffe. Adv. Fem. Gender and The Fictions of The Public Sphere, 1690-1755 = Rout St Eight Cn Lit Gender and The Fictions of The Public Sphere, 1690-1755 = Rout. St. Eight. Cn. Lit. Gender and The Local-global Nexus: Theory, Research, and Action = Adv Gend Res Gender and The Local-global Nexus: Theory, Research, and Action = Adv. Gend. Res. Gender and The Military: Women in The Armed Forces of Western Democracies = Cass Mil Stud Gender and The Military: Women in The Armed Forces of Western Democracies = Cass. Mil. Stud. Gender and Work in Urban China: Women Workers of The Unlucky Generation = Routl Contemp China Gender and Work in Urban China: Women Workers of The Unlucky Generation = Routl. Contemp. China. Gender Designs It: Construction and Deconstruction of Information Society Technology = Stud Interdisz Gesch Gender Designs It: Construction and Deconstruction of Information Society Technology = Stud. Interdisz. Gesch. Gender, Diversity, and Difference = Soc Philos Today Gender, Diversity, and Difference = Soc. Philos. Today. Gender Divisions and Working Time in The New Economy: Changing Patterns of Work, Care and Public Policy in Europe and North America = Glob Welf Gender Divisions and Working Time in The New Economy: Changing Patterns of Work, Care and Public Policy in Europe and North America = Glob. Welf. Gendered Choices: Learning, Work, Identities in Lifelong Learning = Lifelong Learn Book Gendered Choices: Learning, Work, Identities in Lifelong Learning = Lifelong Learn. Book. Gendered Perspectives On Reproduction and Sexuality = Adv Gend Res Gendered Perspectives On Reproduction and Sexuality = Adv. Gend. Res. Gendered Transformations: Theory and Practices On Gender and Media = Eur Commun Res Educ Gendered Transformations: Theory and Practices On Gender and Media = Eur. Commun. Res. Educ. Gender, Equality and Difference During and After State Socialism = Stud Cent E Eur Gender, Equality and Difference During and After State Socialism = Stud. Cent. E. Eur. Gender, Equality and Education From International and Comparative Perspectives = Int Persp Educ Soc Gender, Equality and Education From International and Comparative Perspectives = Int. Persp. Educ. Soc. Gender, Equity, and Schooling = Mo S Res Educ Pol Gender, Equity, and Schooling = Mo. S. Res. Educ. Pol. Gender Equity in Health = Rout Stud Hlth Soc W Gender Equity in Health = Rout. Stud. Hlth. Soc. W. Gender, Ethnicity and Employment = Contrib Econ Gender, Ethnicity and Employment = Contrib. Econ. Gender, Health and Information Technology in Context = Health Technol Soc Gender, Health and Information Technology in Context = Health Technol. Soc. Gender & history = Gend Hist Gender, Household and State in Post-revolutionary Vietnam = Asian Stud Assoc Aus Gender, Household and State in Post-revolutionary Vietnam = Asian. Stud. Assoc. Aus. Gender, Households, and Society: Unraveling The Threads of The Past and The Present = Archeol Pap Am Anthr Gender, Households, and Society: Unraveling The Threads of The Past and The Present = Archeol. Pap. Am. Anthr. Gender, Human Security and The United Nations = Routl Crit Secur Stu Gender, Human Security and The United Nations = Routl. Crit. Secur. Stu. Gender, Identity, and Imperialism: Women Development Workers in Pakistan = Comp Fem Stud Ser Gender, Identity, and Imperialism: Women Development Workers in Pakistan = Comp. Fem. Stud. Ser. Gender in An Urban World = Res Urban Sociol Gender in An Urban World = Res. Urban Sociol. Gender Inclusive: Essays On Violence, Men, and Feminist International Relations = Routl Adv Int Relat Gender Inclusive: Essays On Violence, Men, and Feminist International Relations = Routl. Adv. Int. Relat. Gendering The Field: Towards Sustainable Livelihoods for Mining Communities = Asia-pac Env Monogr Gendering The Field: Towards Sustainable Livelihoods for Mining Communities = Asia-pac. Env. Monogr. Gender in World History, Second Edition = Themes World Hist Gender in World History, Second Edition = Themes. World Hist. Gender, Islam and Democracy in Indonesia = Asian Stud Assoc Aus Gender, Islam and Democracy in Indonesia = Asian. Stud. Assoc. Aus. Gender issues = Gender Issues Gender Issues in Contemporary Society = Clar Symp Gender Issues in Contemporary Society = Clar. Symp. Gender, Labour, War and Empire: Essays On Modern Britain = Gender Sex Hist Gender, Labour, War and Empire: Essays On Modern Britain = Gender. Sex. Hist. Gender Medicine = Gender Med Gender Medicine = Gender Med. Gender Medicine = Gend. Med. Gender medicine : official journal of the Partnership for Gender-Specific Medicine at Columbia University = Gend Med Gender, Migration, and The Public Sphere, 1850-2005 = Routl Res Gend Hist Gender, Migration, and The Public Sphere, 1850-2005 = Routl. Res. Gend. Hist. Gender, place and culture : a journal of feminist geography = Gend Place Cult Gender Place and Culture = Gender Place Cult Gender Place and Culture = Gender Place Cult. Gender Politics in Brazil and Chile:the Role of Parties in National and Local Policymaking = St Antonys Ser Gender Politics in Brazil and Chile:the Role of Parties in National and Local Policymaking = St. Antonys. Ser. Gender, Race and National Identity: Nations of Flesh and Blood = Routl Res Gend Soc Gender, Race and National Identity: Nations of Flesh and Blood = Routl. Res. Gend. Soc. Gender, Race, and Nationalism in Contemporary Black Politics = Comp Fem Stud Ser Gender, Race, and Nationalism in Contemporary Black Politics = Comp. Fem. Stud. Ser. Gender Realities: Local and Global = Adv Gend Res Gender Realities: Local and Global = Adv. Gend. Res. Gender Regimes, Citizen Participation and Rural Restructuring = Res Rural Sociol Dev Gender Regimes, Citizen Participation and Rural Restructuring = Res. Rural Sociol. Dev. Gender Rhetoric: North-south = Afr Yearb Rhetor Gender Rhetoric: North-south = Afr. Yearb. Rhetor. Genders and Sexualities in History = Gender Sex Hist Genders and Sexualities in History = Gender. Sex. Hist. Genders = Genders Genders = Genders (Austin Tex) Gender & Society: Feminist Perspectives On The Past and Present = Gen Soc Fem Persp Gender & Society: Feminist Perspectives On The Past and Present = Gen. Soc. Fem. Persp. Gender & Society = Gender Soc Gender & Society = Gender Soc. Gender & Society = Gend. Soc. Gender & society : official publication of Sociologists for Women in Society = Gend Soc Genders, Second Edition = New Crit Idiom Genders, Second Edition = New. Crit. Idiom. Gender, State and Social Power in Contemporary Indonesia: Divorce and Marriage Law = Asian Stud Assoc Aus Gender, State and Social Power in Contemporary Indonesia: Divorce and Marriage Law = Asian. Stud. Assoc. Aus. Gender Stereotyping: Transnational Legal Perspectives = Pa Stud Hum Rights Gender Stereotyping: Transnational Legal Perspectives = Pa. Stud. Hum. Rights. Gender, technology and development = Gend Technol Dev Gender Trouble Makers: Education and Empowerment in Nepal = New Approach Sociol Gender Trouble Makers: Education and Empowerment in Nepal = New. Approach. Sociol. Gender, War and Politics: Transatlantic Perspectives, 1775-1830 = War Cult Soc 1750-18 Gender, War and Politics: Transatlantic Perspectives, 1775-1830 = War Cult. Soc. 1750-18. Gender Work and Organization = Gender Work Organ Gender Work and Organization = Gender Work Organ. Gender Work and Organization = Gend Work Organ Gender Work and Organization = Gend. Work Organ. Gene amplification and analysis = Gene Amplif Anal Gene Amplification and Analysis = Gene Amplif. Anal. Gene analysis techniques = Gene Anal Tech Gene Analysis Techniques = Gene Anal Tech Gene Analysis Techniques = Gene Anal. Tech. Gene-based Therapies for Cancer = Curr Cancer Res Gene-based Therapies for Cancer = Curr. Cancer Res. Gene-combis = Gene-combis Gene Conservation and Exploitation = Stadler Gen Gene Conservation and Exploitation = Stadler. Gen. Gene Doping in Sports: The Science and Ethics of Genetically Modified Athletes = Adv Genet Gene Doping in Sports: The Science and Ethics of Genetically Modified Athletes = Adv. Genet. Geneeskunde en sport = Geneeskd Sport Geneeskundige bladen uit kliniek en laboratorium voor de praktijk = Geneeskd Bl Geneeskundige Bladen uit Kliniek en Laboratorium voor de Praktijk = Geneeskd. Bl. Geneeskundige gids = Geneeskd Gids Geneeskundige Gids = Geneeskd. Gids Gene expression = Gene Expr Gene Expression=Gene Expr;; Gene Expression = Gene Expr. Gene Expression = Gene Expression Gene Expression in The Central Nervous System = Prog Brain Res Gene Expression in The Central Nervous System = Prog. Brain. Res. Gene Expression Patterns = Gene Expression Patterns Gene Expression Patterns = Gene Expr Patterns Gene Expression Patterns = Gene Expr. Patterns Gene expression patterns : GEP = Gene Expr Patterns Gene Expression : Regulation At The Rna and Protein Levels = Biochem Soc Symp Gene Expression : Regulation At The Rna and Protein Levels = Biochem. Soc. Symp. Gene Flow and Agriculture: Relevance for Transgenic Crops = Bcpc Symp Ser Gene Flow and Agriculture: Relevance for Transgenic Crops = Bcpc. Symp. Ser. Gene=Gene;; Gene = Gene Gene geography : a computerized bulletin on human gene frequencies = Gene Geogr Gene Geography=Gene Geogr;; Gene Geography = Gene Geogr Gene Geography = Gene Geogr. Gene Manipulation in Plant Improvement Ii = Stadler Gen Gene Manipulation in Plant Improvement Ii = Stadler. Gen. General and Applied Aspects of Halophilic Microorganisms = Nato Adv Sci I A-lif General and Applied Aspects of Halophilic Microorganisms = Nato. Adv. Sci. I. A-lif. General and Comparative Endocrinology = Gen Comp Endocr General and Comparative Endocrinology = Gen. Comp. Endocr. General and comparative endocrinology = Gen Comp Endocrinol General and Comparative Endocrinology=Gen Comp Endocrinol;; General and Comparative Endocrinology = Gen. Comp. Endocrinol. General and Diagnostic Pathology=Gen Diagn Pathol;; General and Diagnostic Pathology = Gen. Diagn. Pathol. General Anesthesia Research Developments = Adv Biol Med General Anesthesia Research Developments = Adv. Biol. Med. General cytochemical methods = Gen Cytochem Methods General dentistry = Gen Dent General Dentistry = Gen. Dent. General Design and Roadside Safety Features = Transport Res Rec General Design and Roadside Safety Features = Transport. Res. Rec. General & diagnostic pathology = Gen Diagn Pathol General Equilibrium Analysis of Production and Increasing Returns = Ser Math Econ Game T General Equilibrium Analysis of Production and Increasing Returns = Ser. Math. Econ. Game. T. General Forum On Traffic 1998 = Vdi Bericht General Forum On Traffic 1998 = Vdi. Bericht. General Gynaecology = C St Gyn Ob General Gynaecology = C. St. Gyn. Ob. General Hospital Psychiatry = Gen Hosp Psychiat General Hospital Psychiatry = Gen. Hosp. Psychiat. General hospital psychiatry = Gen Hosp Psychiatry General Hospital Psychiatry=Gen Hosp Psychiatry;; General Hospital Psychiatry = Gen. Hosp. Psychiatry General Inequalities 6 = Int S Num M General Inequalities 6 = Int. S. Num. M. General Information Programme, Unisist newsletter = Gen Inf Programme UNISISTNewsl Generalizations of Thomaes Formula for Zn Curves = Dev Math Generalizations of Thomaes Formula for Zn Curves = Dev. Math. Generalized Analytic Functions = Int Soc Anal App Com Generalized Analytic Functions = Int. Soc. Anal. App. Com. Generalized Bessel Functions of The First Kind = Lect Notes Math Generalized Bessel Functions of The First Kind = Lect. Notes. Math. Generalized Bounds for Convex Multistage Stochastic Programs = Lect Notes Econ Math Generalized Bounds for Convex Multistage Stochastic Programs = Lect. Notes. Econ. Math. Generalized Collocation Methods: Solutions to Nonlinear Problems = Model Simul Sci Eng Generalized Collocation Methods: Solutions to Nonlinear Problems = Model. Simul. Sci. Eng. Generalized Concavity = Class Appl Math Generalized Concavity = Class. Appl. Math. Generalized Convexity and Optimization: Theory and Applications = Lect Notes Econ Math Generalized Convexity and Optimization: Theory and Applications = Lect. Notes. Econ. Math. Generalized Convexity and Related Topics = Lect Notes Econ Math Generalized Convexity and Related Topics = Lect. Notes. Econ. Math. Generalized Convexity and Vector Optimization = Nonconvex Optim Generalized Convexity and Vector Optimization = Nonconvex. Optim. Generalized Convexity, Generalized Monotonicity and Applications = Noncon Optim Its App Generalized Convexity, Generalized Monotonicity and Applications = Noncon. Optim. Its. App. Generalized Convexity, Generalized Monotonicity and Applications = Nonconvex Optim Generalized Convexity, Generalized Monotonicity and Applications = Nonconvex. Optim. Generalized Convexity, Generalized Monotonicity: Recent Results = Noncon Optim Its App Generalized Convexity, Generalized Monotonicity: Recent Results = Noncon. Optim. Its. App. Generalized Curvatures = Geom Comput Generalized Curvatures = Geom. Comput. Generalized Inverses of Linear Transformations = Class Appl Math Generalized Inverses of Linear Transformations = Class. Appl. Math. Generalized Low-voltage Circuit Techniques for Very High-speed Time-interleaved Analog-to-digital Converters = Analog Circ Sig Proc Generalized Low-voltage Circuit Techniques for Very High-speed Time-interleaved Analog-to-digital Converters = Analog. Circ. Sig. Proc. Generalized Measure Theory = Ifsr Int Ser Syst Sc Generalized Measure Theory = Ifsr. Int. Ser. Syst. Sc. Generalized Phase Contrast: Applications in Optics and Photonics = Springer Ser Opt Sci Generalized Phase Contrast: Applications in Optics and Photonics = Springer. Ser. Opt. Sci. Generalized Voronoi Diagram: A Geometry-based Approach to Computational Intelligence = Stud Comput Intell Generalized Voronoi Diagram: A Geometry-based Approach to Computational Intelligence = Stud. Comput. Intell. General laws of Rhode Island, 1956 : completely annotated. Rhode Island = Gen Laws R I 1956 R I General Linguistics = Gen Linguist General Linguistics = Gen. Linguist. General pharmacology = Gen Pharmacol General Pharmacology=Gen Pharmacol;; General Pharmacology = Gen Pharmacol General Pharmacology = Gen. Pharmacol. General Pharmacology-the Vascular System = Gen Pharmacol-vasc S General Pharmacology-the Vascular System = Gen. Pharmacol-vasc. S. General physiology and biophysics = Gen Physiol Biophys General Physiology and Biophysics=Gen Physiol Biophys;; General Physiology and Biophysics = Gen Physiol Biophys General Physiology and Biophysics = Gen. Physiol. Biophys. General practice = Gen Pract General Practice = Gen Pract General Practice = Gen. Pract. General Practice of Radiation Oncology Physics in The 21st Century = Med Phys Mg General Practice of Radiation Oncology Physics in The 21st Century = Med. Phys. Mg. General Principles of European Community Law = Euro Monogr General Principles of European Community Law = Euro. Monogr. General Relativity and Gravitational Physics = Aip Conf Proc General Relativity and Gravitational Physics = Aip. Conf. Proc. General Relativity and Gravitation = Gen Relat Gravit General Relativity and Gravitation = Gen. Relat. Gravit. General Relativity and Gravitation = Gen. Relativ. Gravitation General Relativity and Gravitation = Gen. Relativity Gravitation General Relativity and John Archibald Wheeler = Astrophys Space Sc L General Relativity and John Archibald Wheeler = Astrophys. Space. Sc. L. General Relativity and Relativistic Astrophysics = Aip Conf Proc General Relativity and Relativistic Astrophysics = Aip. Conf. Proc. General Relativity = Sussp Proc General Relativity = Sussp. Proc. General Series-the Historical Association = Gen Ser-hist Assoc General Series-the Historical Association = Gen. Ser-hist. Assoc. General Surgery : Current Status and Future Trends = Serono Sym General Surgery : Current Status and Future Trends = Serono. Sym. General surgery & laparoscopy news = Gen Surg Laparosc News General Systems = Gen Syst General Systems = Gen. Syst. General systems : yearbook of the Society for the Advancement of General Systems Theory = Gen Syst General Technical Report USDA Forest Service = Gen. Tech. Rep. USDA For. Serv. General Theory of Emotions and Social Life = Routl Adv Sociol General Theory of Emotions and Social Life = Routl. Adv. Sociol. General Theory of Homogenization: A Personalized Introduction = Lect Notes Unione Ma General Theory of Homogenization: A Personalized Introduction = Lect. Notes. Unione. Ma. General Theory of Information Transfer and Combinatorics = Lect Notes Comput Sc General Theory of Information Transfer and Combinatorics = Lect. Notes. Comput. Sc. General thoracic and cardiovascular surgery = Gen Thorac Cardiovasc Surg General Topology and Applications = Lect Notes Pure Appl General Topology and Applications = Lect. Notes. Pure. Appl. General Topology and Applications : Proceedings of The 1988 Northeast Conference = Lect Notes Pure Appl General Topology and Applications : Proceedings of The 1988 Northeast Conference = Lect. Notes. Pure. Appl. Generating Power At High Efficiency: Combined Cycle Technology for Sustainable Energy Production = Woodhead Publ Ser En Generating Power At High Efficiency: Combined Cycle Technology for Sustainable Energy Production = Woodhead. Publ. Ser. En. Generation, Amplification, and Measurement of Ultrashort Laser Pulses Iii = P Soc Photo-opt Ins Generation, Amplification, and Measurement of Ultrashort Laser Pulses Iii = P. Soc. Photo-opt. Ins. Generation, Amplification, and Measurement of Ultrashort Laser Pulses Ii = P Soc Photo-opt Ins Generation, Amplification, and Measurement of Ultrashort Laser Pulses Ii = P. Soc. Photo-opt. Ins. Generation, Amplification, and Measurement of Ultrashort Laser Pulses = P Soc Photo-opt Ins Generation, Amplification, and Measurement of Ultrashort Laser Pulses = P. Soc. Photo-opt. Ins. Generation of Antibodies By Cell and Gene Immortalization = Year Immun Generation of Antibodies By Cell and Gene Immortalization = Year. Immun. Generation of Cosmological Large-scale Structure = Nato Adv Sci I C-mat Generation of Cosmological Large-scale Structure = Nato. Adv. Sci. I. C-mat. Generations-journal of The American Society On Aging = Generations Generations-journal of The American Society On Aging = Generations. Generations (San Francisco, Calif.) = Generations Generative and Component-based Software Engineering, Proceedings = Lect Notes Comput Sc Generative and Component-based Software Engineering, Proceedings = Lect. Notes. Comput. Sc. Generative and Transformational Techniques in Software Engineering Iii = Lect Notes Comput Sc Generative and Transformational Techniques in Software Engineering Iii = Lect. Notes. Comput. Sc. Generative and Transformational Techniques in Software Engineering Ii = Lect Notes Comput Sc Generative and Transformational Techniques in Software Engineering Ii = Lect. Notes. Comput. Sc. Generative and Transformational Techniques in Software Engineering = Lect Notes Comput Sc Generative and Transformational Techniques in Software Engineering = Lect. Notes. Comput. Sc. Generative Grammar: Theory and Its History = Lead Linguist Generative Grammar: Theory and Its History = Lead. Linguist. Generative Programming and Component Engineering 2002, Proceedings = Lect Notes Comput Sc Generative Programming and Component Engineering 2002, Proceedings = Lect. Notes. Comput. Sc. Generative Programming and Component Engineering 2003, Proceedings = Lect Notes Comput Sc Generative Programming and Component Engineering 2003, Proceedings = Lect. Notes. Comput. Sc. Generative Programming and Component Engineering 2004, Proceedings = Lect Notes Comput Sc Generative Programming and Component Engineering 2004, Proceedings = Lect. Notes. Comput. Sc. Generative Programming and Component Engineering, Proceedings = Lect Notes Comput Sc Generative Programming and Component Engineering, Proceedings = Lect. Notes. Comput. Sc. Generative Theory of Relevance = Inform Retrieval Ser Generative Theory of Relevance = Inform. Retrieval. Ser. Generators and Relations in Groups and Geometries = Nato Adv Sci I C-mat Generators and Relations in Groups and Geometries = Nato. Adv. Sci. I. C-mat. Gene Regulation and Aids : Transcriptional Activation, Retroviruses, and Pathogenesis = Adv Ap Biot Gene Regulation and Aids : Transcriptional Activation, Retroviruses, and Pathogenesis = Adv. Ap. Biot. Generic and Specific Roles of Saccharides At Cell and Bacteria Surfaces: Revealed By Specular and Off-specular X-ray and Neutron Scattering = Springer Theses-reco Generic and Specific Roles of Saccharides At Cell and Bacteria Surfaces: Revealed By Specular and Off-specular X-ray and Neutron Scattering = Springer. Theses-reco. Generic Drugs: Needs and Issues = Health Care Iss Cost Generic Drugs: Needs and Issues = Health. Care. Iss. Cost. Generic Model Management: Concepts and Algorithms = Lect Notes Comput Sc Generic Model Management: Concepts and Algorithms = Lect. Notes. Comput. Sc. Generic Programming = Int Fed Info Proc Generic Programming = Int. Fed. Info. Proc. Generic Programming = Lect Notes Comput Sc Generic Programming = Lect. Notes. Comput. Sc. Generique De Cinema: Histoire Et Fonctions D'un Fragment Hybride = Collect Amphi 7 Generique De Cinema: Histoire Et Fonctions D'un Fragment Hybride = Collect. Amphi. 7. Genes and Development=Genes Dev;; Genes and Development = Genes Dev. Genes and function = Genes Funct Genes and Function = Genes Funct. Genes and Gene Products in The Development of Diabetes Mellitus = Int Congr Ser Genes and Gene Products in The Development of Diabetes Mellitus = Int. Congr. Ser. Genes and Genetic Systems=Genes Genet Syst;; Genes and Genetic Systems = Genes Genet. Syst. Genes and immunity = Genes Immun Genes and Immunity = Genes Immun Genes and Immunity = Genes Immun. Genes and Nutrition = Genes Nutr Genes and Nutrition = Genes Nutr. Genes and Nutrition = Gen-res Issues Genes and Nutrition = Gen-res. Issues. Genes and Proteins Underlying Microbial Urinary Tract Virulence = Adv Exp Med Biol Genes and Proteins Underlying Microbial Urinary Tract Virulence = Adv. Exp. Med. Biol. Genes, brain, and behavior = Genes Brain Behav Genes Brain and Behavior = Genes Brain Behav Genes Brain and Behavior = Genes Brain Behav. Genes, Brain, and Behavior = Genes Brain Behav. Genes, Cancer and Radiation Protection = P Nat C Rad Genes, Cancer and Radiation Protection = P. Nat. C. Rad. Genes, Chromosomes and Cancer=Genes Chromosomes Cancer;; Genes, Chromosomes and Cancer = Genes. Chromosomes Cancer Genes Chromosomes & Cancer = Gene Chromosome Canc Genes Chromosomes & Cancer = Gene. Chromosome. Canc. Genes, chromosomes & cancer = Genes Chromosomes Cancer Genes, Chromosomes & Cancer = Genes, Chromosomes Cancer Genes & Development = Gene Dev Genes & Development = Gene. Dev. Genes & development = Genes Dev Genes & Development = Genes Dev. Genes, Fossils and Behaviour = Nato Sci S A Lif Sci Genes, Fossils and Behaviour = Nato. Sci. S. A. Lif. Sci. Genes & genetic systems = Genes Genet Syst Genes & Genetic Systems = Genes Genet Syst Genes & Genetic Systems = Genes Genet. Syst. Genes & Genomics = Genes Genom Genes & Genomics = Genes Genom. Gene Silencing in Higher Plants and Related Phenomena in Other Eukaryotes = Curr Top Microbiol Gene Silencing in Higher Plants and Related Phenomena in Other Eukaryotes = Curr. Top. Microbiol. Gene Silencing: Theory, Techniques and Applications = Gen-res Issues Gene Silencing: Theory, Techniques and Applications = Gen-res. Issues. Genesis and Properties of Collapsible Soils = Nato Adv Sci Inst Se Genesis and Properties of Collapsible Soils = Nato. Adv. Sci. Inst. Se. Genesis = Genesis Genesis (New York, N.Y. : 2000) = Genesis Genesis of Feynman Diagrams = Archimedes Genesis of Feynman Diagrams = Archimedes. Genesis of Fluid Mechanics 1640-1780 = St Hist Phil Sci Ser Genesis of Fluid Mechanics 1640-1780 = St. Hist. Phil. Sci. Ser. Genesis of Fluid Mechanics, 1640-1780 = St Hist Phil Sci Ser Genesis of Fluid Mechanics, 1640-1780 = St. Hist. Phil. Sci. Ser. Genesis of Innovation: Systemic Linkages Between Knowledge and The Market = New Horiz Econ Innov Genesis of Innovation: Systemic Linkages Between Knowledge and The Market = New. Horiz. Econ. Innov. Genes to cells : devoted to molecular & cellular mechanisms = Genes Cells Genes to Cells = Genes Cells Genes To Cells=Genes Cells;; Gene Targeting and New Developments in Neurobiology = Tanig Symp Brain Sci Gene Targeting and New Developments in Neurobiology = Tanig. Symp. Brain. Sci. Gene Therapy and Gene Delivery Systems = Adv Biochem Eng Biot Gene Therapy and Gene Delivery Systems = Adv. Biochem. Eng. Biot. Gene Therapy and Molecular Biology = Gene Ther Mol Biol Gene Therapy and Molecular Biology = Gene Ther. Mol. Biol. Gene Therapy and Regulation = Gene Ther. Regul. Gene Therapy for Autoimmune and Inflammatory Diseases = Milestones Drug Ther Gene Therapy for Autoimmune and Inflammatory Diseases = Milestones. Drug. Ther. Gene Therapy for Neoplastic Diseases = Ann Ny Acad Sci Gene Therapy for Neoplastic Diseases = Ann. Ny. Acad. Sci. Gene Therapy for Renal Diseases and Transplantation = Contrib Nephrol Gene Therapy for Renal Diseases and Transplantation = Contrib. Nephrol. Gene therapy = Gene Ther Gene therapy = Gene Ther. Gene Therapy=Gene Ther;; Gene Therapy = Gene Ther Gene Therapy = Gene Ther. Gene Therapy Methods = Method Enzymol Gene Therapy Methods = Method. Enzymol. Gene therapy & molecular biology = Gene Ther Mol Biol Gene Therapy of Cancer = Adv Exp Med Biol Gene Therapy of Cancer = Adv. Exp. Med. Biol. Gene Therapy of Cochlear Deafness: Present Concepts and Future Aspects = Adv Oto-rhino-laryng Gene Therapy of Cochlear Deafness: Present Concepts and Future Aspects = Adv. Oto-rhino-laryng. GenEthics news : genetic engineering, ethics and the environment = Genethics News Genetica=Genetica;; Genetica = Genetica Genetica iberica = Genet Iber Genetica Iberica = Genet Iber Genetica Iberica = Genet. Iber. Genetic Algorithms and Genetic Programming: Modern Concepts and Practical Applications = Numer Insight Genetic Algorithms and Genetic Programming: Modern Concepts and Practical Applications = Numer. Insight. Genetic Algorithms for Applied Cad Problems = Stud Comput Intell Genetic Algorithms for Applied Cad Problems = Stud. Comput. Intell. Genetically Engineered and Optical Probes for Biomedical Applications Iii = P Soc Photo-opt Ins Genetically Engineered and Optical Probes for Biomedical Applications Iii = P. Soc. Photo-opt. Ins. Genetically Engineered and Optical Probes for Biomedical Applications Ii = P Soc Photo-opt Ins Genetically Engineered and Optical Probes for Biomedical Applications Ii = P. Soc. Photo-opt. Ins. Genetically Engineered and Optical Probes for Biomedical Applications Iv = P Soc Photo-opt Ins Genetically Engineered and Optical Probes for Biomedical Applications Iv = P. Soc. Photo-opt. Ins. Genetically Engineered and Optical Probes for Biomedical Applications = Proc Spie Genetically Engineered and Optical Probes for Biomedical Applications = Proc. Spie. Genetically Engineered and Optical Probes for Biomedical Applications = P Soc Photo-opt Ins Genetically Engineered and Optical Probes for Biomedical Applications = P. Soc. Photo-opt. Ins. Genetically Engineered Foods Assessing Potential Allergenicity = Ann Ny Acad Sci Genetically Engineered Foods Assessing Potential Allergenicity = Ann. Ny. Acad. Sci. Genetically Engineered Probes for Biomedical Applications = Proc Spie Genetically Engineered Probes for Biomedical Applications = Proc. Spie. Genetically Engineered Probes for Biomedical Applications = P Soc Photo-opt Ins Genetically Engineered Probes for Biomedical Applications = P. Soc. Photo-opt. Ins. Genetically Engineered Vaccines = Adv Exp Med Biol Genetically Engineered Vaccines = Adv. Exp. Med. Biol. Genetically Modified Food and The Consumer = Nabc Rep Genetically Modified Food and The Consumer = Nabc. Rep. Genetically Modified Foods = Acs Sym Ser Genetically Modified Foods = Acs. Sym. Ser. Genetical research = Genet Res Genetical Research=Genet Res;; Genetical Research = Genet Res Genetical Research = Genet. Res. Genetic analysis : biomolecular engineering = Genet Anal Genetic Analysis-biomolecular Engineering = Genet Anal-biomol E Genetic Analysis-biomolecular Engineering = Genet. Anal-biomol. E. Genetic Analysis - Biomolecular Engineering = Genet. Anal. - Biomol. Eng. Genetic Analysis=Genet Anal;; Genetic Analysis = Genet. Anal. Genetic analysis, techniques and applications = Genet Anal Tech Appl Genetic Analysis, Techniques and Applications = Genet. Anal. Tech. Appl. Genetic and Cultural Evolution of Cooperation = Dahl Ws Env Genetic and Cultural Evolution of Cooperation = Dahl. Ws. Env. Genetic and Evolutionary Computation - Gecco 2003, Pt Ii, Proceedings = Lect Notes Comput Sc Genetic and Evolutionary Computation - Gecco 2003, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Genetic and Evolutionary Computation - Gecco 2003, Pt I, Proceedings = Lect Notes Comput Sc Genetic and Evolutionary Computation - Gecco 2003, Pt I, Proceedings = Lect. Notes. Comput. Sc. Genetic and Evolutionary Computation - Gecco 2004, Pt 1, Proceedings = Lect Notes Comput Sc Genetic and Evolutionary Computation - Gecco 2004, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Genetic and Evolutionary Computation Gecco 2004 , Pt 2, Proceedings = Lect Notes Comput Sc Genetic and Evolutionary Computation Gecco 2004 , Pt 2, Proceedings = Lect. Notes. Comput. Sc. Genetic and Evolutionary Computation = Genet Evol Comput Genetic and Evolutionary Computation = Genet. Evol. Comput. Genetic and Evolutionary Computation Series = Gen Evol Comp Ser Genetic and Evolutionary Computation Series = Gen. Evol. Comp. Ser. Genetic and Psychiatric Disorders = Wenn Gr Int Genetic and Psychiatric Disorders = Wenn. Gr. Int. Genetica Polonica = Genet Pol Genetica Polonica = Genet. Pol. Genetic Aspects of Plant Mineral Nutrition / = Dev Plant Soil Sci Genetic Aspects of Plant Mineral Nutrition / = Dev. Plant Soil. Sci. Genetic Conservation of Salmonid Fishes = Nato Adv Sci Inst Se Genetic Conservation of Salmonid Fishes = Nato. Adv. Sci. Inst. Se. Genetic Control of Neuronal Migrations in Human Cortical Development = Adv Anat Embryol Cel Genetic Control of Neuronal Migrations in Human Cortical Development = Adv. Anat. Embryol. Cel. Genetic Counseling=Genet Couns;; Genetic Counseling = Genet. Couns. Genetic Counseling = Genet Counsel Genetic Counseling = Genet. Counsel. Genetic counseling (Geneva, Switzerland) = Genet Couns Genetic Criticism: Text and Avant-textes = Mater Texts Genetic Criticism: Text and Avant-textes = Mater. Texts. Genetic Democracy: Philosophical Perspectives = Int Lib Ethics Law Genetic Democracy: Philosophical Perspectives = Int. Lib. Ethics. Law. Genetic Disorders of Endocrine Neoplasia = Front Horm Res Genetic Disorders of Endocrine Neoplasia = Front. Horm. Res. Genetic Dissection of Complex Traits, 2nd Edition = Adv Genet Genetic Dissection of Complex Traits, 2nd Edition = Adv. Genet. Genetic Dissection of Complex Traits = Adv Genet Genetic Dissection of Complex Traits = Adv. Genet. Genetic Dissection of Neural Circuits and Behavior = Adv Genet Genetic Dissection of Neural Circuits and Behavior = Adv. Genet. Genetic Endocrinology of The Metabolic Syndrome = Metab Dis-lab Clin R Genetic Endocrinology of The Metabolic Syndrome = Metab. Dis-lab. Clin. R. Genetic Engineer and Biotechnologist = Genet Eng Biotechnol Genetic Engineer and Biotechnologist = Genet. Eng. Biotechnol. Genetic Engineer & Biotechnologist = Genet Eng Biotechnol Genetic Engineer & Biotechnologist = Genet. Eng. Biotechnol. Genetic engineering (Academic Press) = Genet Eng Genetic Engineering, Biofertilisation, Soil Quality and Organic Farming = Sustain Agr Rev Genetic Engineering, Biofertilisation, Soil Quality and Organic Farming = Sustain. Agr. Rev. Genetic Engineering & Biotechnology News = Genet Eng Biotechn Genetic Engineering & Biotechnology News = Genet. Eng. Biotechn. Genetic Engineering & Biotechnology News = Genet Eng Biotechn N Genetic Engineering & Biotechnology News = Genet. Eng. Biotechn. N. Genetic engineering = Genet Eng (N Y) Genetic Engineering = Genet. Eng. (N. Y.) Genetic Engineering in Food Production = Roy Soc Med Int Cong Genetic Engineering in Food Production = Roy. Soc. Med. Int. Cong. Genetic Engineering in Livestock: New Applications and Interdisciplinary Perspectives = Ethic Sci Technol As Genetic Engineering in Livestock: New Applications and Interdisciplinary Perspectives = Ethic. Sci. Technol. As. Genetic Engineering News = Genet Eng News Genetic Engineering News = Genet. Eng. News Genetic Engineering of Crop Plants = East Sch Ag Genetic Engineering of Crop Plants = East. Sch. Ag. Genetic Engineering of Plant Secondary Metabolism = Recent Adv Phytochem Genetic Engineering of Plant Secondary Metabolism = Recent. Adv. Phytochem. Genetic epidemiology = Genet Epidemiol Genetic Epidemiology=Genet Epidemiol;; Genetic Epidemiology = Genet Epidemiol Genetic Epidemiology = Genet. Epidemiol. Genetic Epidemiology = Methods Mol Biol Genetic Epidemiology = Methods. Mol. Biol. Genetic epidemiology. Supplement = Genet Epidemiol Suppl Genetic Epidemiology. Supplement=Genet Epidemiol Suppl;; Genetic Epidemiology. Supplement = Genet. Epidemiol. Suppl. Genetic Hypertension = Colloq Inse Genetic Hypertension = Colloq. Inse. Genetic Improvement of Cattle in Southern Mediterranean Climates = Eaap Public Genetic Improvement of Cattle in Southern Mediterranean Climates = Eaap. Public. Genetic Improvement of Fine Fibre Producing Animals = Eur Fin Fib Netw O P Genetic Improvement of Fine Fibre Producing Animals = Eur. Fin. Fib. Netw. O. P. Genetic Improvement of Horticultural Crops By Biotechnology = Acta Hortic Genetic Improvement of Horticultural Crops By Biotechnology = Acta. Hortic. Genetic Improvements Throughout Gene Location and Inventory = Univ Fra S Genetic Improvements Throughout Gene Location and Inventory = Univ. Fra. S. Genetic Instability and Tumorigenesis = Curr Top Microbiol Genetic Instability and Tumorigenesis = Curr. Top. Microbiol. Genetic Mechanisms in Carcinogenesis and Tumor Progression = Ucla Sym Bi Genetic Mechanisms in Carcinogenesis and Tumor Progression = Ucla. Sym. Bi. Genetic Models of Schizophrenia = Prog Brain Res Genetic Models of Schizophrenia = Prog. Brain. Res. Genetic Modification of Plants: Agriculture, Horticulture and Forestry = Biotech Agr Forest Genetic Modification of Plants: Agriculture, Horticulture and Forestry = Biotech. Agr. Forest. Genetic Programming and Evolvable Machines = Genet Program Evol M Genetic Programming and Evolvable Machines = Genet. Program. Evol. M. Genetic Programming = Lect Notes Comput Sc Genetic Programming = Lect. Notes. Comput. Sc. Genetic Programming, Proceedings = Lect Notes Comput Sc Genetic Programming, Proceedings = Lect. Notes. Comput. Sc. Genetic Programming Series = Genet Progr Ser Genetic Programming Series = Genet. Progr. Ser. Genetic Programming Theory and Practice = Genet Progr Ser Genetic Programming Theory and Practice = Genet. Progr. Ser. Genetic Programming Theory and Practice Ii = Genet Progr Ser Genetic Programming Theory and Practice Ii = Genet. Progr. Ser. Genetic Programming Theory and Practice Iii = Genet Progr Ser Genetic Programming Theory and Practice Iii = Genet. Progr. Ser. Genetic Programming Theory and Practice Iv = Genet Evol Comput Genetic Programming Theory and Practice Iv = Genet. Evol. Comput. Genetic Programming Theory and Practice Iv = Gen Evol Comp Ser Genetic Programming Theory and Practice Iv = Gen. Evol. Comp. Ser. Genetic Programming Theory and Practice V = Genet Evol Comput Genetic Programming Theory and Practice V = Genet. Evol. Comput. Genetic Programming Theory and Practice V = Gen Evol Comp Ser Genetic Programming Theory and Practice V = Gen. Evol. Comp. Ser. Genetic Programming Theory and Practice Vi = Gen Evol Comp Ser Genetic Programming Theory and Practice Vi = Gen. Evol. Comp. Ser. Genetic Programming Theory and Practice Vii = Gen Evol Comp Ser Genetic Programming Theory and Practice Vii = Gen. Evol. Comp. Ser. Genetic Programming Theory and Practice Viii = Genet Evol Comput Genetic Programming Theory and Practice Viii = Genet. Evol. Comput. Genetic psychology monographs = Genet Psychol Monogr Genetic Psychology Monographs = Genet Psychol Monogr Genetic Psychology Monographs = Genet. Psychol. Monogr. Genetic Resources and Crop Evolution = Genet Resour Crop Ev Genetic Resources and Crop Evolution = Genet. Resour. Crop Ev. Genetic Resources At Risk : Scientific Issues, Technologies, and Funding Policies = Gen Res Con Genetic Resources At Risk : Scientific Issues, Technologies, and Funding Policies = Gen. Res. Con. Genetic Resources Conservation Program Report = Gen Res Con Genetic Resources Conservation Program Report = Gen. Res. Con. Genetic Resources of Mediterranean Pasture and Forage Legumes = Curr Plant Sci Biot Genetic Resources of Mediterranean Pasture and Forage Legumes = Curr. Plant. Sci. Biot. Genetic Response of Forest Systems to Changing Environmental Conditions = For Sci Genetic Response of Forest Systems to Changing Environmental Conditions = For. Sci. Genetics and Aquaculture in Africa = Colloq Semi Genetics and Aquaculture in Africa = Colloq. Semi. Genetics and Biology of Alcoholism = Banb Report Genetics and Biology of Alcoholism = Banb. Report. Genetics and Biology of Sex Determination = Novart Fdn Symp Genetics and Biology of Sex Determination = Novart. Fdn. Symp. Genetics and Breeding = Genet Breed Genetics and Breeding = Genet. Breed. Genetics and Breeding of Tree Fruits and Nuts = Acta Hortic Genetics and Breeding of Tree Fruits and Nuts = Acta. Hortic. Genetics and Cancer Susceptibility = Prog Clin Biol Res Genetics and Cancer Susceptibility = Prog. Clin. Biol. Res. Genetics and genetic engineering = Genet Genet Eng Genetics and Genomics of Populus = Plant Genet Genomics Genetics and Genomics of Populus = Plant. Genet. Genomics Genetics and Genomics of The Brassicaceae = Plant Genet Genomics Genetics and Genomics of The Brassicaceae = Plant. Genet. Genomics Genetics and Genomics of The Triticeae = Plant Genet Genomics Genetics and Genomics of The Triticeae = Plant. Genet. Genomics Genetics and Improvement of Barley Malt Quality = Adv Top Sci Tech Chi Genetics and Improvement of Barley Malt Quality = Adv. Top. Sci. Tech. Chi. Genetics and molecular biology = Genet Mol Biol Genetics and Molecular Biology = Genet Mol Biol Genetics and Molecular Biology = Genet. Mol. Biol. Genetics and Molecular Biology of Rhythms in Drosophila and Other Insects = Adv Genet Genetics and Molecular Biology of Rhythms in Drosophila and Other Insects = Adv. Genet. Genetics and Molecular Research = Genet Mol Res Genetics and Molecular Research = Genet. Mol. Res. Genetics and molecular research : GMR = Genet Mol Res Genetics and Product Formation in Streptomyces = Fems Symp Genetics and Product Formation in Streptomyces = Fems. Symp. Genetics and Society = Genet Soc Genetics and Society = Genet. Soc. Genetics and Sports = Med Sport Sci Genetics and Sports = Med. Sport. Sci. Genetics and The Future of Tobacco, Proceedings = Rec Adv Tob Genetics and The Future of Tobacco, Proceedings = Rec. Adv. Tob. Genetics and Tuberculosis = Novart Fdn Symp Genetics and Tuberculosis = Novart. Fdn. Symp. Genetics, Biofuels and Local Farming System = Sustain Agr Rev Genetics, Biofuels and Local Farming System = Sustain. Agr. Rev. Genetic Screening From Newborns to Dna Typing = Int Congr Ser Genetic Screening From Newborns to Dna Typing = Int. Congr. Ser. Genetic Services for Underserved Populations = Birth Def Genetic Services for Underserved Populations = Birth. Def. Genetics From Laboratory to Society: Societal Learning As An Alternative to Regulation = Health Technol Soc Genetics From Laboratory to Society: Societal Learning As An Alternative to Regulation = Health. Technol. Soc. Genetics=Genetics;; Genetics = Genetics Genetics Genomics and Breeding of Crop Plants = Genet Genom Breed Cr Genetics Genomics and Breeding of Crop Plants = Genet. Genom. Breed. Cr. Genetics, Genomics and Breeding of Sunflower = Genet Genom Breed Cr Genetics, Genomics and Breeding of Sunflower = Genet. Genom. Breed. Cr. Genetics in Liver Diseases = Falk Symp Genetics in Liver Diseases = Falk. Symp. Genetics in Medicine = Genet Med Genetics in Medicine = Genet. Med. Genetics in medicine : official journal of the American College of Medical Genetics = Genet Med Genetic Social and General Psychology Monographs = Genet Soc Gen Psych Genetic Social and General Psychology Monographs = Genet. Soc. Gen. Psych. Genetic, social, and general psychology monographs = Genet Soc Gen Psychol Monogr Genetic, Social, and General Psychology Monographs=Genet Soc Gen Psychol Monogr;; Genetic, Social, and General Psychology Monographs = Genet. Soc. Gen. Psychol. Monogr. Genetics of Asthma and Atopy = Monogr Allergy Genetics of Asthma and Atopy = Monogr. Allergy. Genetics of Criminal and Antisocial Behaviour = Ciba F Symp Genetics of Criminal and Antisocial Behaviour = Ciba. F. Symp. Genetics of Focal Epilepsies = Curr Prob E Genetics of Focal Epilepsies = Curr. Prob. E. Genetics of Hearing Impairment = Ann Ny Acad Sci Genetics of Hearing Impairment = Ann. Ny. Acad. Sci. Genetics of Mental Retardation = Monogr Hum Genet Genetics of Mental Retardation = Monogr. Hum. Genet. Genetics of Sexual Differentiation and Sexually Dimorphic Behaviors = Adv Genet Genetics of Sexual Differentiation and Sexually Dimorphic Behaviors = Adv. Genet. Genetics of Social Evolution = Westv Stud Genetics of Social Evolution = Westv. Stud. Genetics of Streptococci, Enterococci and Lactococci = Dev Biologicals Genetics of Streptococci, Enterococci and Lactococci = Dev. Biologicals. Genetics of Streptococci, Enterococci and Lactococci = Dev Biol Stand Genetics of Streptococci, Enterococci and Lactococci = Dev. Biol. Stand. Genetics-research and Issues = Gen-res Issues Genetics-research and Issues = Gen-res. Issues Genetics Research = Genet Res Genetics Research = Genet. Res. Genetics Selection Evolution = Genet Sel Evol Genetics Selection Evolution = Genet. Sel. Evol. Genetics, selection, evolution. : GSE = Genet Sel Evol Genetic Stability and Recombinant Product Consistency = Dev Biol Stand Genetic Stability and Recombinant Product Consistency = Dev. Biol. Stand. Genetic Structure and Regulation of Hiv = Harv Aids G Genetic Structure and Regulation of Hiv = Harv. Aids. G. Genetic Testing and Molecular Biomarkers = Genet Test Mol Bioma Genetic Testing and Molecular Biomarkers = Genet. Test. Mol. Bioma. Genetic testing = Genet Test Genetic Testing = Genet Test Genetic Testing = Genet. Test. Genetic Testing = Oecd Proc Genetic Testing = Oecd. Proc. Genetic Toxicology of Complex Mixtures = Envir Sci R Genetic Toxicology of Complex Mixtures = Envir. Sci. R. Genetic vaccines and therapy = Genet Vaccines Ther Genetic Variation and Nutrition = World Rev Nutr Diet Genetic Variation and Nutrition = World. Rev. Nutr. Diet. Genetic Variation: Methods and Protocols = Methods Mol Biol Genetic Variation: Methods and Protocols = Methods Mol. Biol. Genetika-belgrade = Genetika-belgrade Genetika=Genetika;; Genetika = Genetika Genetika = Genetika+ Genetika = Genetika+.+ Genetika (Moscow) = Genetika (Moscow) Geneva Papers On Risk and Insurance-issues and Practice = Geneva Pap R I-iss P Geneva Papers On Risk and Insurance-issues and Practice = Geneva Pap. R. I-iss. P. Geneva Papers on Risk and Insurance: Issues and Practice=Geneva Pap. Risk Ins.: Issues Practice Geneva Papers On Risk and Insurance Theory = Geneva Pap Risk Ins Geneva Papers On Risk and Insurance Theory = Geneva Pap. Risk Ins. Geneva Papers on Risk and Insurance Theory=Geneva Pap. Risk Ins. Theory Geneva Papers On Risk and Insurance Theory = Geneva Pap R I Theor Geneva Papers On Risk and Insurance Theory = Geneva Pap. R. I. Theor. Geneva Risk and Insurance Review = Geneva Risk Ins Rev Geneva Risk and Insurance Review = Geneva Risk Ins. Rev. Geneve-Afrique. Geneva-Africa = Geneva Afr Genewatch : a bulletin of the Committee for Responsible Genetics = Genewatch GEN = Gen G.E.N = G E N G.E.N. = G. E. N. Genitourinary medicine = Genitourin Med Genitourinary Medicine = Genitourin Med Genitourinary Medicine = Genitourin. Med. Genitourinary Pain and Inflammation: Diagnosis and Management = Curr Clin Urol Genitourinary Pain and Inflammation: Diagnosis and Management = Curr. Clin. Urol. Genius of Archimedes - 23 Centuries of Influence On Mathematics, Science and Engineering = Hist Mech Mach Sci Genius of Archimedes - 23 Centuries of Influence On Mathematics, Science and Engineering = Hist. Mech. Mach. Sci. Genocidal Crimes = Key Ideas Criminol Genocidal Crimes = Key. Ideas. Criminol. Genocide and Fascism: The Eliminationist Drive in Fascist Europe = Routl Stud Mod Hist Genocide and Fascism: The Eliminationist Drive in Fascist Europe = Routl. Stud. Mod. Hist. Genome Analysis = Genome Anal Genome Analysis = Genome Anal. Genome Biology and Evolution = Genome Biol Evol Genome Biology and Evolution = Genome Biol. Evol. Genome biology = Genome Biol Genome Biology = Genome Biol Genome Biology = Genome Biol. Genome Clustering: From Linguistic Models to Classification of Genetic Texts = Stud Comput Intell Genome Clustering: From Linguistic Models to Classification of Genetic Texts = Stud. Comput. Intell. Genome Dynamics and Stability = Genome Dynam Stabil Genome Dynamics and Stability = Genome Dynam. Stabil. Genome Dynamics = Genome Dynam Genome Dynamics = Genome Dynam. Genome Exploitation: Data Mining The Genome = Stadler Gen Genome Exploitation: Data Mining The Genome = Stadler. Gen. Genome=Genome;; Genome = Genome Genome Informatics 2007, Vol 18 = Genome Inform Ser Genome Informatics 2007, Vol 18 = Genome Inform. Ser. Genome Informatics 2007, Vol 19 = Genome Inform Ser Genome Informatics 2007, Vol 19 = Genome Inform. Ser. Genome Informatics 2008, Vol 21 = Genome Inform Ser Genome Informatics 2008, Vol 21 = Genome Inform. Ser. Genome Informatics = Genome Inform. Genome informatics. International Conference on Genome Informatics = Genome Inform Genome Informatics Series = Genome Inform Ser Genome Informatics Series = Genome Inform. Ser. Genome informatics. Workshop on Genome Informatics = Genome Inform Ser Workshop Genome Inform Genome Instability and Transgenerational Effects = Gen-res Issues Genome Instability and Transgenerational Effects = Gen-res. Issues. Genome Instability in Cancer Development = Adv Exp Med Biol Genome Instability in Cancer Development = Adv. Exp. Med. Biol. Genome Letters = Genome Lett. Genome Priority Reports = Genome Pr R Genome Priority Reports = Genome Pr. R. Genome Rearrangement and Stability = Genome Anal Genome Rearrangement and Stability = Genome Anal. Genome Research = Biotechfor Genome Research = Biotechfor. Genome research = Genome Res Genome Research=Genome Res;; Genome Research = Genome Res Genome Research = Genome Res. Genome science & technology = Genome Sci Technol Genome Science: Towards A New Paradigm? = Int Congr Ser Genome Science: Towards A New Paradigm? = Int. Congr. Ser. Genome: Scientific and Therapeutic Developments and Social Consequences = Colloq Inst Servier Genome: Scientific and Therapeutic Developments and Social Consequences = Colloq. Inst. Servier. Genomes of Plants and Animals = Stadler Gen Genomes of Plants and Animals = Stadler. Gen. Genomes = Stadler Gen Genomes = Stadler. Gen. Genome Stability and Human Diseases = Subcell Biochem Genome Stability and Human Diseases = Subcell. Biochem. Genome Structure and Function = Nato Asi 3 High Tech Genome Structure and Function = Nato. Asi. 3. High. Tech. Genomic Imprinting = Adv Exp Med Biol Genomic Imprinting = Adv. Exp. Med. Biol. Genomic Instability and Immortality in Cancer = Pez Fdn Sym Genomic Instability and Immortality in Cancer = Pez. Fdn. Sym. Genomics and Protecomics Technologies = P Soc Photo-opt Ins Genomics and Protecomics Technologies = P. Soc. Photo-opt. Ins. Genomics for Biosafety in Plant Biotechnology = Nato Sci Ser I Life Genomics for Biosafety in Plant Biotechnology = Nato. Sci. Ser. I. Life. Genomics=Genomics;; Genomics = Genomics Genomics in Endocrinology = Contemp Endocrinol S Genomics in Endocrinology = Contemp. Endocrinol. S. Genomics, Obesity and The Struggle Over Responsibilities = Int Libr Environ Agr Genomics, Obesity and The Struggle Over Responsibilities = Int. Libr. Environ. Agr. Genomics of Disease = Stadler Gen Genomics of Disease = Stadler. Gen. Genomics of Foodborne Bacterial Pathogens = Food Microbiol Food Genomics of Foodborne Bacterial Pathogens = Food. Microbiol. Food. Genomics, Proteomics and Bioinformatics = Genomics Proteomics Bioinformatics Genomics, Proteomics, and The Nervous System = Adv Neurobiol Genomics, Proteomics, and The Nervous System = Adv. Neurobiol. Genomics, proteomics & bioinformatics / Beijing Genomics Institute = Genomics Proteomics Bioinformatics Genotoxicity: Evaluation, Testing and Prediction = Gen-res Issues Genotoxicity: Evaluation, Testing and Prediction = Gen-res. Issues. Genotype X Environment Interactions in Poultry Production = Colloq Inra Genotype X Environment Interactions in Poultry Production = Colloq. Inra. Genre-forms of Discourse and Culture = Genre-form Disc Cult Genre-forms of Discourse and Culture = Genre-form. Disc. Cult. Genre = Genre Genre (Los Angeles, Calif.) = Genre Genres of Modernity: Contemporary Indian Novels in English = Int Forsch Allg Vgl Genres of Modernity: Contemporary Indian Novels in English = Int. Forsch. Allg. Vgl. Genres On The Web: Computational Models and Empirical Studies = Text Speech Lang Tec Genres On The Web: Computational Models and Empirical Studies = Text. Speech. Lang. Tec. Genshikaku Kenkyu = Genshikaku Kenkyu Gentica Iberica = Genet Iber Gentica Iberica = Genet. Iber. Genus Aspergillus = Fems Symp Genus Aspergillus = Fems. Symp. Genus = Genus Genus Yersinia: Entering The Functional Genomic Era = Adv Exp Med Biol Genus Yersinia: Entering The Functional Genomic Era = Adv. Exp. Med. Biol. Genus Yersinia: From Genomics to Function = Adv Exp Med Biol Genus Yersinia: From Genomics to Function = Adv. Exp. Med. Biol. GeoAgenda = GeoAgenda Geoarabia = Geoarabia Geoarchaeology-an International Journal = Geoarchaeology Geoarchaeology-an International Journal = Geoarchaeology. Geoarchaeology of The Landscapes of Classical Antiquity = Babesch Bull Ant Bes Geoarchaeology of The Landscapes of Classical Antiquity = Babesch. Bull. Ant. Bes. Geobiology and Ecology of Metasequoia = T Geobiol Geobiology and Ecology of Metasequoia = T. Geobiol. Geobiology = Geobiology Geobios = Geobios-lyon Geobios = Geobios-lyon. Geobios (Lyon, France). Memoire special = Geobios Mem Spec Geobotanica selecta = Geobot. sel. Geocarto international = Geocarto Int Geochemical Investigations in Earth and Space Science: A Tribute to Issac R. Kaplan = Geo Soc S P Geochemical Investigations in Earth and Space Science: A Tribute to Issac R. Kaplan = Geo. Soc. S. P. Geochemical journal = Geochem J Geochemical Journal = Geochem J Geochemical Journal = Geochem. J. Geochemical Society Special Publications = Geo Soc S P Geochemical Society Special Publications = Geo. Soc. S. P. Geochemical Transactions = Geochem T Geochemical Transactions = Geochem. T. Geochemical transactions = Geochem Trans Geochemical Transactions = Geochem. Trans. Geochemical Transformations of Sedimentary Sulfur = Acs Sym Ser Geochemical Transformations of Sedimentary Sulfur = Acs. Sym. Ser. Geochemistry and Mineralogy of Rare Earth Elements = Rev Mineral Geochemistry and Mineralogy of Rare Earth Elements = Rev. Mineral. Geochemistry-exploration Environment Analysis = Geochem-explor Env A Geochemistry-exploration Environment Analysis = Geochem-explor. Env. A. Geochemistry: Exploration, Environment, Analysis = Geochem. Explor. Environ. Anal. Geochemistry: Exploration, Environment, Analysis = Geochem.: Explor. Environ., Anal. Geochemistry Geophysics Geosystems = Geochem Geophy Geosy Geochemistry Geophysics Geosystems = Geochem. Geophy. Geosy. Geochemistry, Geophysics, Geosystems = Geochem. Geophys. Geosyst. Geochemistry International = Geochem Int+ Geochemistry International = Geochem. Int. Geochemistry International = Geochem. Int+.+ Geochemistry International Ussr = Geochem Int Geochemistry International Ussr = Geochem. Int. Geochemistry of Clay-pore Fluid Interactions = Min Soc Ser Geochemistry of Clay-pore Fluid Interactions = Min. Soc. Ser. Geochemistry of Non-traditional Stable Isotopes = Rev Mineral Geochem Geochemistry of Non-traditional Stable Isotopes = Rev. Mineral. Geochem. Geochemistry of Sulfur in Fossil Fuels = Acs Sym Ser Geochemistry of Sulfur in Fossil Fuels = Acs. Sym. Ser. Geochimica Et Cosmochimica Acta = Geochim Cosmochim Ac Geochimica Et Cosmochimica Acta = Geochim. Cosmochim. Ac. Geochimica et cosmochimica acta = Geochim Cosmochim Acta Geochimica et Cosmochimica Acta = Geochim. Cosmochim. Acta Geochimica = Geochimica Geochronology: Linking The Isotopic Record With Petrology and Textures = Geol Soc Spec Publ Geochronology: Linking The Isotopic Record With Petrology and Textures = Geol. Soc. Spec. Publ. Geochronometria = Geochronometria Geocomputational, Sustainability and Enviromental Planning = Stud Comput Intell Geocomputational, Sustainability and Enviromental Planning = Stud. Comput. Intell. Geocomputation and Urban Planning = Stud Comput Intell Geocomputation and Urban Planning = Stud. Comput. Intell. Geoderma = Geoderma Geodesic and Horocyclic Trajectories = Universitext Geodesic and Horocyclic Trajectories = Universitext. Geodesy Beyond 2000 = Iag Symp Geodesy Beyond 2000 = Iag. Symp. Geodetic Deformation Monitoring: From Geophysical to Engineering Roles = Iag Symp Geodetic Deformation Monitoring: From Geophysical to Engineering Roles = Iag. Symp. Geodetic Reference Frames = Iag Symp Geodetic Reference Frames = Iag. Symp. Geodetic Theory Today = Iag Symp Geodetic Theory Today = Iag. Symp. Geodetski List = Geod List Geodetski List = Geod. List Geodetski Vestnik = Geod Vestn Geodetski Vestnik = Geod. Vestn. Geodinamica Acta = Geodin Acta Geodinamica Acta = Geodin. Acta Geodiversitas = Geodiversitas Geodynamic Evolution of East Antarctica: A Key to The East-west Gondwana Connection = Geol Soc Spec Publ Geodynamic Evolution of East Antarctica: A Key to The East-west Gondwana Connection = Geol. Soc. Spec. Publ. Geodynamic Evolution of The Pannonian Basin = Serb Ac A C Geodynamic Evolution of The Pannonian Basin = Serb. Ac. A. C. Geodynamics of The Aegean and Anatolia = Geol Soc Spec Publ Geodynamics of The Aegean and Anatolia = Geol. Soc. Spec. Publ. Geodynamics Series = Geodynamics Geo-Eco-Trop = Geo Eco Trop Geo-engineering for Underground Facilities = Geotech Sp Geo-engineering for Underground Facilities = Geotech. Sp. Geoengineering in Arid Lands = Dev Arid Reg Res Ser Geoengineering in Arid Lands = Dev. Arid Reg. Res. Ser. Geoenv I - Geostatistics for Environmental Applications = Quant Geo G Geoenv I - Geostatistics for Environmental Applications = Quant. Geo. G. Geoenv Iii - Geostatistics for Environmental Applications = Quant Geo G Geoenv Iii - Geostatistics for Environmental Applications = Quant. Geo. G. Geoenvironment 2000: Characterization, Containment, Remediation, and Performance in Environmental Geotechnics, Vols 1 and 2 = Geotech Sp Geoenvironment 2000: Characterization, Containment, Remediation, and Performance in Environmental Geotechnics, Vols 1 and 2 = Geotech. Sp. Geo-environment and Landscape Evolution Iii = Wit Trans Built Env Geo-environment and Landscape Evolution Iii = Wit. Trans. Built. Env. Geo-environment and Landscape Evolution Ii = Wit Trans Ecol Envir Geo-environment and Landscape Evolution Ii = Wit. Trans. Ecol. Envir. Geoenv Iv - Geostatistics for Environmental Applications: Proceedings = Quant Geo G Geoenv Iv - Geostatistics for Environmental Applications: Proceedings = Quant. Geo. G. Geoenv Vi - Geostatistics for Environmental Applications, Proceedings = Quant Geo G Geoenv Vi - Geostatistics for Environmental Applications, Proceedings = Quant. Geo. G. Geoenv Vii - Geostatistics for Environmental Applications = Quant Geo G Geoenv Vii - Geostatistics for Environmental Applications = Quant. Geo. G. Geoexploration = Geoexploration Geofisica E Meteorologia = Geofis Meteorol Geofisica E Meteorologia = Geofis. Meteorol. Geofisica Internacional = Geofis Int Geofisica Internacional = Geofis. Int. Geofisica Internationale = Geofis. Int. Geofisica pura e applicata = Geofis. pura appl. Geofizika = Geofizika Geofluids = Geofluids Geoforum = Geoforum Geoforum; journal of physical, human, and regional geosciences = Geoforum Geofysiske Publikasjoner = Geofys. Publ. Geograff = Geograff Geografia Fisica E Dinamica Quaternaria = Geogr Fis Din Quat Geografia Fisica E Dinamica Quaternaria = Geogr. Fis. Din. Quat. Geografie = Geografie Geografie = Geografie-prague Geografie = Geografie-prague. Geografiia v shkole (Moscow, Russia) = Geogr Shkole Geografisch tijdschrift = Geogr Tydschr Geografiska Annaler = Geogr. Ann. Geografiska Annaler Series A-physical Geography = Geogr Ann A Geografiska Annaler Series A-physical Geography = Geogr. Ann. A. Geografiska Annaler Series B-human Geography = Geogr Ann B Geografiska Annaler Series B-human Geography = Geogr. Ann. B. Geografiska annaler. Series B, Human geography = Geogr Ann Ser B Geografisk tidskrift / udgivet af Bestyrelsen for Det Kongelige danske geografiske selskab = Geogr Tidsskr Geografisk Tidsskrift-danish Journal of Geography = Geogr Tidsskr Geografisk Tidsskrift-danish Journal of Geography = Geogr. Tidsskr. Geografisk Tidsskrift-danish Journal of Geography = Geogr Tidsskr-den Geografisk Tidsskrift-danish Journal of Geography = Geogr. Tidsskr-den. Geografski pregled. Revue de geographie = Geogr Pregl Geographia Antiqua = GeorgAnt Geographia antiqua. Rivista di geografia storica del mondo antico e di storia della geografia = GeoAnt Geographia medica = Geogr Med Geographia Medica = Geogr. Med. Geographia Medica. Supplement = Geogr. Med. Suppl. Geographia Polonica = Geogr Pol Geographica Bernensia = Geogr. Bern. Geographica Hafniensia = Geogr Hafniensia Geographica Hafniensia = Geogr. Hafniensia Geographica helvetica = Geogr Helv Geographica Helvetica = Geogr. Helv. Geographical analysis = Geogr Anal Geographical Analysis = Geogr Anal Geographical Analysis = Geogr. Anal. Geographical Education in A Changing World : Past Experience, Current Trends and Future Challenges = Geojournal Lib Geographical Education in A Changing World : Past Experience, Current Trends and Future Challenges = Geojournal. Lib. Geographicalia = Geographicalia Geographical Information Systems for Urban and Regional Planning = Geoj Lib Geographical Information Systems for Urban and Regional Planning = Geoj. Lib. Geographical Information Systems in Assessing Natural Hazards = Adv Nat Technol Haz Geographical Information Systems in Assessing Natural Hazards = Adv. Nat. Technol. Haz. Geographical Journal = Geogr J Geographical Journal = Geogr. J. Geographical Journal, The = Geogr. J. Geographical perspectives = Geogr Perspect Geographical Research = Geogr Res Geographical Research = Geogr. Res. Geographical Research = Geogr Res-aust Geographical Research = Geogr. Res-aust. Geographical review = Geogr Rev Geographical Review = Geogr Rev Geographical Review = Geogr. Rev. Geographical review of India = Geogr Rev India Geographical review of Japan = Geogr Rev Jpn Geographical Review, The = Geogr. Rev. Geographical survey = Geogr Surv Geographical Teacher = Geogr Teach Geographical Teacher = Geogr. Teach. Geographica (Madrid, Spain) = Geographica Geographic Data Mining and Knowledge Discovery, Second Edition = Ch Crc Data Min Know Geographic Data Mining and Knowledge Discovery, Second Edition = Ch. Crc. Data Min. Know. Geographic Hypermedia: Concepts and Systems = Lec Not Geo Carto Geographic Hypermedia: Concepts and Systems = Lec. Not. Geo. Carto. Geographic Information Science = Lect Notes Comput Sc Geographic Information Science = Lect. Notes. Comput. Sc. Geographic Information Science, Proceedings = Lect Notes Comput Sc Geographic Information Science, Proceedings = Lect. Notes. Comput. Sc. Geographic Information Systems ( Gis ) and Mapping - Practices and Standards = Am Soc Test Mater Geographic Information Systems ( Gis ) and Mapping - Practices and Standards = Am. Soc. Test. Mater. Geographic Information Systems, Photogrammetry, and Geological/geophysical Remote Sensing = P Soc Photo-opt Ins Geographic Information Systems, Photogrammetry, and Geological/geophysical Remote Sensing = P. Soc. Photo-opt. Ins. Geographic Spread of Infectious Diseases: Models and Applications = Princ Ser Theor Comp Geographic Spread of Infectious Diseases: Models and Applications = Princ. Ser. Theor. Comp. Geographic Uncertainty in Environmental Security = Nato Sci Peace Secur Geographic Uncertainty in Environmental Security = Nato. Sci. Peace. Secur. Geographie et recherche = Geogr Rech Géographie Physique et Quaternaire = Géogr. Phys. Quat. Geographie Physique Et Quaternaire = Geogr Phys Quatern Geographie Physique Et Quaternaire = Geogr. Phys. Quatern. Geo/graphies: Mapping The Imagination in French and Francophone Literature and Film = Fr Lit Ser Geo/graphies: Mapping The Imagination in French and Francophone Literature and Film = Fr. Lit. Ser. Geographies of Science = Knowl Space Geographies of Science = Knowl. Space. Geographies of The New Economy: Critical Reflections = Reg Cities Geographies of The New Economy: Critical Reflections = Reg. Cities. Geographische Berichte = Geogr Ber Geographische Rundschau = Geogr Rundsch Geographische Rundschau = Geogr. Rundsch. Geographische Zeitschrift = Geogr Z Geographische Zeitschrift = Geogr. Z. Geography and Ownership As Bases for Economic Accounting = Stud Income Geography and Ownership As Bases for Economic Accounting = Stud. Income. Geography and Strategy = Adv Strat M Geography and Strategy = Adv. Strat. M. Geography bulletin = Geogr Bull Geography = Geography Geography review = Geogr Rev Geography (Sheffield, England) = Geography Geohazard in Rocky Coastal Areas = Geol Soc Spec Publ Geohazard in Rocky Coastal Areas = Geol. Soc. Spec. Publ. Geohazards = Agid Geo In Geohazards = Agid. Geo. In. Geohazards in Engineering Geology = Geol Soc Eng Geol Sp Geohazards in Engineering Geology = Geol. Soc. Eng. Geol. Sp. Geoinformatica = Geoinformatica Geoinformatics 2006: Geospatial Information Science = Proc Spie Geoinformatics 2006: Geospatial Information Science = Proc. Spie. Geoinformatics 2006: Geospatial Information Science = P Soc Photo-opt Ins Geoinformatics 2006: Geospatial Information Science = P. Soc. Photo-opt. Ins. Geoinformatics 2006: Geospatial Information Technology = Proc Spie Geoinformatics 2006: Geospatial Information Technology = Proc. Spie. Geoinformatics 2006: Geospatial Information Technology = P Soc Photo-opt Ins Geoinformatics 2006: Geospatial Information Technology = P. Soc. Photo-opt. Ins. Geoinformatics 2006: Gnss and Integrated Geospatial Applications = Proc Spie Geoinformatics 2006: Gnss and Integrated Geospatial Applications = Proc. Spie. Geoinformatics 2006: Gnss and Integrated Geospatial Applications = P Soc Photo-opt Ins Geoinformatics 2006: Gnss and Integrated Geospatial Applications = P. Soc. Photo-opt. Ins. Geoinformatics 2006: Remotely Sensed Data and Information = Proc Spie Geoinformatics 2006: Remotely Sensed Data and Information = Proc. Spie. Geoinformatics 2006: Remotely Sensed Data and Information = P Soc Photo-opt Ins Geoinformatics 2006: Remotely Sensed Data and Information = P. Soc. Photo-opt. Ins. Geoinformatics 2007: Cartographic Theory and Models = Proc Spie Geoinformatics 2007: Cartographic Theory and Models = Proc. Spie. Geoinformatics 2007: Cartographic Theory and Models = P Soc Photo-opt Ins Geoinformatics 2007: Cartographic Theory and Models = P. Soc. Photo-opt. Ins. Geoinformatics 2007: Geospatial Information Science, Pts 1 and 2 = Proc Spie Geoinformatics 2007: Geospatial Information Science, Pts 1 and 2 = Proc. Spie. Geoinformatics 2007: Geospatial Information Science, Pts 1 and 2 = P Soc Photo-opt Ins Geoinformatics 2007: Geospatial Information Science, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Geoinformatics 2007: Geospatial Information Technology and Applications, Pts 1 and 2 = Proc Spie Geoinformatics 2007: Geospatial Information Technology and Applications, Pts 1 and 2 = Proc. Spie. Geoinformatics 2007: Geospatial Information Technology and Applications, Pts 1 and 2 = P Soc Photo-opt Ins Geoinformatics 2007: Geospatial Information Technology and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Geoinformatics 2007: Remotely Sensed Data and Information, Pts 1 and 2 = Proc Spie Geoinformatics 2007: Remotely Sensed Data and Information, Pts 1 and 2 = Proc. Spie. Geoinformatics 2007: Remotely Sensed Data and Information, Pts 1 and 2 = P Soc Photo-opt Ins Geoinformatics 2007: Remotely Sensed Data and Information, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Geoinformatics 2008 and Joint Conference On Gis and Built Environment: Advanced Spatial Data Models and Analyses, Parts 1 and 2 = Proc Spie Geoinformatics 2008 and Joint Conference On Gis and Built Environment: Advanced Spatial Data Models and Analyses, Parts 1 and 2 = Proc. Spie. Geoinformatics 2008 and Joint Conference On Gis and Built Environment: Advanced Spatial Data Models and Analyses, Parts 1 and 2 = P Soc Photo-opt Ins Geoinformatics 2008 and Joint Conference On Gis and Built Environment: Advanced Spatial Data Models and Analyses, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Geoinformatics: Data to Knowledge = Geol Soc Am Spec Pap Geoinformatics: Data to Knowledge = Geol. Soc. Am. Spec. Pap. Geo Jordan 2004: Advances in Geotechnical Engineering With Emphasis On Dams, Highway Materials, and Soil Improvement = Geotech Practice Pub Geo Jordan 2004: Advances in Geotechnical Engineering With Emphasis On Dams, Highway Materials, and Soil Improvement = Geotech. Practice. Pub. Geojournal = Geojournal GeoJournal = GeoJournal Geojournal Library = Geoj Lib Geojournal Library = Geoj. Lib. Geojournal Library = Geojournal Lib Geojournal Library = Geojournal Lib. Geokhimiya = Geokhimiya Geokhimiya = Geokhimiya+ Geokhimiya = Geokhimiya+.+ Geologia Croatica = Geol Croat Geologia Croatica = Geol. Croat. Geologica Acta = Geol Acta Geologica Acta = Geol. Acta Geologica Belgica = Geol Belg Geologica Belgica = Geol. Belg. Geologica Carpathica = Geol Carpath Geologica Carpathica = Geol. Carpath. Geological Applications of Wireline Logs = Geol Soc Spec Publ Geological Applications of Wireline Logs = Geol. Soc. Spec. Publ. Geological Development of The Sicilian-tunisian Platform = Unesco R M Geological Development of The Sicilian-tunisian Platform = Unesco. R. M. Geological Disposal of Carbon Dioxide and Radioactive Waste: A Comparative Assessment = Adv Glob Change Res Geological Disposal of Carbon Dioxide and Radioactive Waste: A Comparative Assessment = Adv. Glob. Change. Res. Geological History of The Polar Oceans : Arctic Versus Antarctic = Nato Adv Sci I C-mat Geological History of The Polar Oceans : Arctic Versus Antarctic = Nato. Adv. Sci. I. C-mat. Geological Journal = Geol J Geological Journal = Geol. J. Geological magazine = Geol Mag Geological Magazine = Geol Mag Geological Magazine = Geol. Mag. Geological Quarterly = Geol Q Geological Quarterly = Geol. Q. Geological Repository Systems for Safe Disposal of Spent Nuclear Fuels and Radioactive Waste = Woodhead Publ Ser En Geological Repository Systems for Safe Disposal of Spent Nuclear Fuels and Radioactive Waste = Woodhead. Publ. Ser. En. Geological Society Engineering Geology Special Publication = Geol Soc Eng Geol Sp Geological Society Engineering Geology Special Publication = Geol. Soc. Eng. Geol. Sp. Geological Society, London, Special Publications = Geol. Soc. London Spec. Publ. Geological Society Memoirs = Geol Soc Mem Geological Society Memoirs = Geol. Soc. Mem. Geological Society Memoirs = Geo Soc Mem Geological Society Memoirs = Geo. Soc. Mem. Geological Society of America bulletin = Geol Soc Am Bull Geological Society of America Bulletin = Geol Soc Am Bull Geological Society of America Bulletin = Geol. Soc. Am. Bull. Geological Society of America Memoir = Geol Soc Am Mem Geological Society of America Memoir = Geol. Soc. Am. Mem. Geological Society of America Memoirs = Geol Soc Am Mem Geological Society of America Memoirs = Geol. Soc. Am. Mem. Geological Society of America Special Papers = Geol S Am S Geological Society of America Special Papers = Geol. S. Am. S. Geological Society of America Special Papers = Geol Soc Am Spec Pap Geological Society of America Special Papers = Geol. Soc. Am. Spec. Pap. Geological Society of America Special Papers = Geol. Soc. Spec. Pap. Geological Society of India Bulletin = Geol Soc India Bull Geological Society of India Bulletin = Geol. Soc. India Bull. Geological Society of India Memoirs = Geol Soc India Mem Geological Society of India Memoirs = Geol. Soc. India Mem. Geological Society of India Memoirs = Geol Soc Ind Mem Geological Society of India Memoirs = Geol. Soc. Ind. Mem. Geological Society of Zimbabwe Special Publications Series = Geol Soc Zi Geological Society of Zimbabwe Special Publications Series = Geol. Soc. Zi. Geological Society Special Publication = Geol Soc Sp Geological Society Special Publication = Geol. Soc. Sp. Geological Society Special Publication = Geol. Soc. Spec. Pub. Geological Society Special Publication = Geol Soc Spec Publ Geological Society Special Publication = Geol. Soc. Spec. Publ. Geological Society Special Publications = Geol. Soc. Spec.Publ. Geological Studies in The Klamath Mountains Province, California and Oregon = Geol Soc Am Spec Pap Geological Studies in The Klamath Mountains Province, California and Oregon = Geol. Soc. Am. Spec. Pap. Geological Survey Circular = Geol Surv Circular Geological Survey Circular = Geol. Surv. Circular Geological Survey of Denmark and Greenland Bulletin = Geol Surv Den Greenl Geological Survey of Denmark and Greenland Bulletin = Geol. Surv. Den. Greenl. Geological Survey of Denmark - Series C = Danm Geol Undersog C Geological Survey of Denmark - Series C = Danm. Geol. Undersog. C Geological Survey of Finland, Special Paper = Geol S Finl Geological Survey of Finland, Special Paper = Geol. S. Finl. Geological Survey Professional Papers = Geol Surv Prof Paper Geological Survey Professional Papers = Geol. Surv. Prof. Paper. Geologic and Tectonic Development of The Caribbean Plate Boundary in Northern Central America = Geol Soc Am Spec Pap Geologic and Tectonic Development of The Caribbean Plate Boundary in Northern Central America = Geol. Soc. Am. Spec. Pap. Geologic Modeling and Simulation: Sedimentary Systems = Comp Ap Ear Geologic Modeling and Simulation: Sedimentary Systems = Comp. Ap. Ear. Geologic Problem Solving With Microfossils: A Volume in Honor of Garry D. Jones = Sepm Spec P Geologic Problem Solving With Microfossils: A Volume in Honor of Garry D. Jones = Sepm. Spec. P. Geologie en Mijnbouw = Geol. Mijnbouw Geologie En Mijnbouw = Geol Mijnbouw Geologie En Mijnbouw = Geol. Mijnbouw Geologie En Mijnbouw-netherlands Journal of Geosciences = Geol Mijnbouw-n J G Geologie En Mijnbouw-netherlands Journal of Geosciences = Geol. Mijnbouw-n. J. G. Geologische Rundschau = Geol Rundsch Geologische Rundschau = Geol. Rundsch. Geologische Rundschau : Zeitschrift fur allgemeine Geologie = Geol Rundsch Geologisches Jahrbuch = Geol. Jahrb. Geologiska Foereningens i Stockholm Foerhandlingar = GFF Geologiska Foreningens I Stockholm Forhandlingar = Geol Foren Stock For Geologiska Foreningens I Stockholm Forhandlingar = Geol. Foren. Stock. For. Geologiya i Geofizika = Geol Geofiz Geologiya i Geofizika = Geol. Geofiz. Geologiya I Geofizika = Geol Geofiz Geologiya I Geofizika = Geol Geofiz+ Geologiya I Geofizika = Geol. Geofiz. Geologiya I Geofizika = Geol. Geofiz+.+ Geology and Climatology of Yucca Mountain and Vicinity, Southern Nevada and California = Geol Soc Am Mem Geology and Climatology of Yucca Mountain and Vicinity, Southern Nevada and California = Geol. Soc. Am. Mem. Geology and Geomorphology of Holocene Coastal Barriers of Brazil = Lect Notes Earth Sci Geology and Geomorphology of Holocene Coastal Barriers of Brazil = Lect. Notes. Earth. Sci. Geology and Geophysics of Continental Margins = Aapg Memoir Geology and Geophysics of Continental Margins = Aapg. Memoir. Geology and Habitability of Terrestrial Planets = Space Sci Ser Issi Geology and Habitability of Terrestrial Planets = Space. Sci. Ser. Issi. Geology and Habitability of Terrestrial Planets = S S S Issi Geology and Habitability of Terrestrial Planets = S. S. S. Issi. Geology and Mineral Resources of Nigeria = Lect Notes Earth Sci Geology and Mineral Resources of Nigeria = Lect. Notes. Earth. Sci. Geology and Paleontology of The Late Cretaceous Marine Deposits of The Dakotas = Geol Soc Am Spec Pap Geology and Paleontology of The Late Cretaceous Marine Deposits of The Dakotas = Geol. Soc. Am. Spec. Pap. Geology and Properties of Earth Materials 2001 = Transport Res Rec Geology and Properties of Earth Materials 2001 = Transport. Res. Rec. Geology and Properties of Earth Materials 2002 = Transport Res Rec Geology and Properties of Earth Materials 2002 = Transport. Res. Rec. Geology and Properties of Earth Materials 2003 = Transport Res Rec Geology and Properties of Earth Materials 2003 = Transport. Res. Rec. Geology and Properties of Earth Materials 2004 = Transport Res Rec Geology and Properties of Earth Materials 2004 = Transport. Res. Rec. Geology and Properties of Earth Materials 2005 = Transport Res Rec Geology and Properties of Earth Materials 2005 = Transport. Res. Rec. Geology and Properties of Earth Materials 2006 = Transport Res Rec Geology and Properties of Earth Materials 2006 = Transport. Res. Rec. Geology and Religion: A History of Harmony and Hostility = Geol Soc Spec Publ Geology and Religion: A History of Harmony and Hostility = Geol. Soc. Spec. Publ. Geology and Tectonic Evolution of The Central-southern Apennines, Italy = Geol Soc Am Spec Pap Geology and Tectonic Evolution of The Central-southern Apennines, Italy = Geol. Soc. Am. Spec. Pap. Geology and Tectonics of The Oman Region = Geol Soc Spec Publ Geology and Tectonics of The Oman Region = Geol. Soc. Spec. Publ. Geology From Space = P Soc Photo-opt Ins Geology From Space = P. Soc. Photo-opt. Ins. Geology = Geology Geology of Coal Fires: Case Studies From Around The World = Rev Eng Geol Geology of Coal Fires: Case Studies From Around The World = Rev. Eng. Geol. Geology of Early Humans in The Horn of Africa = Geol Soc Am Spec Pap Geology of Early Humans in The Horn of Africa = Geol. Soc. Am. Spec. Pap. Geology of Mexico: Celebrating The Centenary of The Geological Society of Mexico = Geol Soc Am Spec Pap Geology of Mexico: Celebrating The Centenary of The Geological Society of Mexico = Geol. Soc. Am. Spec. Pap. Geology of Ore Deposits = Geol Ore Deposit+ Geology of Ore Deposits = Geol. Ore Deposit+.+ Geology of Ore Deposits = Geol. Ore Deposits Geology of The Humber Group: Central Graben and Moray Firth, Ukcs = Geol Soc Sp Geology of The Humber Group: Central Graben and Moray Firth, Ukcs = Geol. Soc. Sp. Geology Society Engineering Geology Special Publication = Geol Soc En Geology Society Engineering Geology Special Publication = Geol. Soc. En. Geology Today = Geol. Today Geomagnetic Field Variations = Adv Geophys Env Mech Geomagnetic Field Variations = Adv. Geophys. Env. Mech. Geomagnetics for Aeronautical Safety = Nato Sec Sci Geomagnetics for Aeronautical Safety = Nato. Sec. Sci. Geomagnetic Studies At Low Latitudes = Geol Soc Ind Mem Geomagnetic Studies At Low Latitudes = Geol. Soc. Ind. Mem. Geomagnetism and Aeronomy = Geomag. Aeron. Geomagnetism and Aeronomy = Geomagn Aeronomy+ Geomagnetism and Aeronomy = Geomagn. Aeronomy+.+ Geomagnetizm i Aeronomiya = Geomagn. Aeron. Geomagnetizm I Aeronomiya = Geomagn Aeron+ Geomagnetizm I Aeronomiya = Geomagn. Aeron+.+ Geo-marine Letters = Geo-mar Lett Geo-marine Letters = Geo-mar. Lett. Geo-Marine Letters = Geo-Mar. Lett. Geomaterials 2000 = Transport Res Rec Geomaterials 2000 = Transport. Res. Rec. Geomaterials 2001 = Transport Res Rec Geomaterials 2001 = Transport. Res. Rec. Geomaterials 2002 = Transport Res Rec Geomaterials 2002 = Transport. Res. Rec. Geomaterials 2003 = Transport Res Rec Geomaterials 2003 = Transport. Res. Rec. Geomaterials 2006 = Transport Res Rec Geomaterials 2006 = Transport. Res. Rec. Geomaterials in Cultural Heritage = Geol Soc Spec Publ Geomaterials in Cultural Heritage = Geol. Soc. Spec. Publ. Geomatic Solutions for Coastal Environments = Environ Sci Eng Tech Geomatic Solutions for Coastal Environments = Environ. Sci. Eng. Tech. Geomatics Solutions for Disaster Management = Lec Not Geo Carto Geomatics Solutions for Disaster Management = Lec. Not. Geo. Carto. Geombinatorics = Geombinatorics Geomechanics and Geoengineering = Geomech. Geoeng. Geomechanics and Geotechnics of Particulate Media = Proc Monogr Eng Wate Geomechanics and Geotechnics of Particulate Media = Proc. Monogr. Eng. Wate. Geomechanics and Tunnelling = Geomech. Tunnelling Geometic Aspects of Functional Analysis = Lect Notes Math Geometic Aspects of Functional Analysis = Lect. Notes. Math. Geometriae Dedicata = Geom. Dedicata Geometriae Dedicata = Geometriae Dedicata Geometrical Charged-particle Optics = Springer Ser Opt Sci Geometrical Charged-particle Optics = Springer. Ser. Opt. Sci. Geometric Algebra With Applications in Engineering = Geom Comput Geometric Algebra With Applications in Engineering = Geom. Comput. Geometric Analysis and Applications to Quantum Field Theory = Prog Math Geometric Analysis and Applications to Quantum Field Theory = Prog. Math. Geometric Analysis and Pdes = Lect Notes Math Geometric Analysis and Pdes = Lect. Notes. Math. Geometric Analysis of Pde and Several Complex Variables: Dedicated to Francois Treves = Contemp Math Geometric Analysis of Pde and Several Complex Variables: Dedicated to Francois Treves = Contemp. Math. Geometric and Algorithmic Aspects of Computer-aided Design and Manufacturing = Dimacs Ser Discret M Geometric and Algorithmic Aspects of Computer-aided Design and Manufacturing = Dimacs. Ser. Discret. M. Geometric and Combinatorial Aspects of Communtative Algebra = Lect Notes Pure Appl Geometric and Combinatorial Aspects of Communtative Algebra = Lect. Notes. Pure. Appl. Geometric and Functional Analysis = Geom. Funct. Anal. Geometric and Functional Analysis = Geom Funct Anal Geometric and Functional Analysis = Geom. Funct. Anal. Geometric and Probabilistic Structures in Dynamics = Contemp Math Geometric and Probabilistic Structures in Dynamics = Contemp. Math. Geometric and Topological Methods for Quantum Field Theory = Contemp Math Geometric and Topological Methods for Quantum Field Theory = Contemp. Math. Geometric and Topological Methods for Quantum Field Theory = Lect Notes Phys Geometric and Topological Methods for Quantum Field Theory = Lect. Notes. Phys. Geometric Aspects of Analysis and Mechanics: in Honor of The 65th Birthday of Hans Duistermaat = Prog Math Geometric Aspects of Analysis and Mechanics: in Honor of The 65th Birthday of Hans Duistermaat = Prog. Math. Geometric Aspects of Functional Analysis : Israel Seminar ( Gafa ) 1989-90 = Lect Notes Math Geometric Aspects of Functional Analysis : Israel Seminar ( Gafa ) 1989-90 = Lect. Notes. Math. Geometric Aspects of Functional Analysis = Lect Notes Math Geometric Aspects of Functional Analysis = Lect. Notes. Math. Geometric Aspects of Industrial Design = Siam Proc S Geometric Aspects of Industrial Design = Siam. Proc. S. Geometric Control and Nonsmooth Analysis = S Adv Math Geometric Control and Nonsmooth Analysis = S. Adv. Math. Geometric Curve Evolution and Image Processing = Lect Notes Math Geometric Curve Evolution and Image Processing = Lect. Notes. Math. Geometric Description of Images As Topographic Maps = Lect Notes Math Geometric Description of Images As Topographic Maps = Lect. Notes. Math. Geometric Design and Effects On Traffic Operations 2000 = Transport Res Rec Geometric Design and Effects On Traffic Operations 2000 = Transport. Res. Rec. Geometric Design and The Effects On Traffic Operations 2001 = Transport Res Rec Geometric Design and The Effects On Traffic Operations 2001 = Transport. Res. Rec. Geometric Design and The Effects On Traffic Operations 2002 = Transport Res Rec Geometric Design and The Effects On Traffic Operations 2002 = Transport. Res. Rec. Geometric Design and The Effects On Traffic Operations 2004 = Transport Res Rec Geometric Design and The Effects On Traffic Operations 2004 = Transport. Res. Rec. Geometric Design and The Effects On Traffic Operations 2005 = Transport Res Rec Geometric Design and The Effects On Traffic Operations 2005 = Transport. Res. Rec. Geometric Design and The Effects On Traffic Operations 2006 = Transport Res Rec Geometric Design and The Effects On Traffic Operations 2006 = Transport. Res. Rec. Geometric Design Publications = Geom. Des. Publ. Geometric Evolution Equations = Contemp Math Geometric Evolution Equations = Contemp. Math. Geometric Group Theory = Ohio St U M Geometric Group Theory = Ohio. St. U. M. Geometric Group Theory = Trends Math Geometric Group Theory = Trends. Math. Geometric Invariance in Computer Vision = Artif Int Geometric Invariance in Computer Vision = Artif. Int. Geometric Invariant Theory and Decorated Principal Bundles = Zur Lect Adv Math Geometric Invariant Theory and Decorated Principal Bundles = Zur. Lect. Adv. Math. Geometric Methods and Applications: for Computer Science and Engineering, Second Edition = Texts Appl Math Geometric Methods and Applications: for Computer Science and Engineering, Second Edition = Texts. Appl. Math. Geometric Methods in Algebra and Number Theory = Prog Math Geometric Methods in Algebra and Number Theory = Prog. Math. Geometric Methods in Bio-medical Image Processing = Math Visual Geometric Methods in Bio-medical Image Processing = Math. Visual. Geometric Methods in Computer Vision Ii = P Soc Photo-opt Ins Geometric Methods in Computer Vision Ii = P. Soc. Photo-opt. Ins. Geometric Methods in Computer Vision = P Soc Photo-opt Ins Geometric Methods in Computer Vision = P. Soc. Photo-opt. Ins. Geometric Methods in Group Theory = Contemp Math Geometric Methods in Group Theory = Contemp. Math. Geometric Methods in Inverse Problems and Pde Control = Ima V Math Geometric Methods in Inverse Problems and Pde Control = Ima. V. Math. Geometric Methods in Inverse Problems and Pde Control = Ima Vol Math Appl Geometric Methods in Inverse Problems and Pde Control = Ima. Vol. Math. Appl. Geometric Methods in Physics = Aip Conf Proc Geometric Methods in Physics = Aip. Conf. Proc. Geometric Methods in The Algebraic Theory of Quadratic Forms = Lect Notes Math Geometric Methods in The Algebraic Theory of Quadratic Forms = Lect. Notes. Math. Geometric Modeling and Processing - Gmp 2006, Proceedings = Lect Notes Comput Sc Geometric Modeling and Processing - Gmp 2006, Proceedings = Lect. Notes. Comput. Sc. Geometric Modeling = Symb Comput Geometric Modeling = Symb. Comput. Geometric Modelling = Comp Suppl Geometric Modelling = Comp. Suppl. Geometric Modelling = Int Fed Info Proc Geometric Modelling = Int. Fed. Info. Proc. Geometric Optics: Theory and Design of Astronomical Optical Systems Using Mathematica = Model Simul Sci Eng Geometric Optics: Theory and Design of Astronomical Optical Systems Using Mathematica = Model. Simul. Sci. Eng. Geometric Properties and Problems of Thick Knots = Math Res Dev Geometric Properties and Problems of Thick Knots = Math. Res. Dev. Geometric Properties of Banach Spaces and Nonlinear Iterations = Lect Notes Math Geometric Properties of Banach Spaces and Nonlinear Iterations = Lect. Notes. Math. Geometric Qp Functions = Front Math Geometric Qp Functions = Front. Math. Geometric Representation Theory and Extented Affine Lie Algebras = Fields I Commun Geometric Representation Theory and Extented Affine Lie Algebras = Fields. I. Commun. Geometric Structures of Phase Space in Multidimensional Chaos: Applications to Chemical Reaction Dynamics in Complex Systems, Pt A = Adv Chem Phys Geometric Structures of Phase Space in Multidimensional Chaos: Applications to Chemical Reaction Dynamics in Complex Systems, Pt A = Adv. Chem. Phys. Geometric Structures of Phase Space in Multidimensional Chaos: Applications to Chemical Reaction Dynamics in Complex Systems, Pt B = Adv Chem Phys Geometric Structures of Phase Space in Multidimensional Chaos: Applications to Chemical Reaction Dynamics in Complex Systems, Pt B = Adv. Chem. Phys. Geometric Theory of Discrete Nonautonomous Dynamical Systems = Lect Notes Math Geometric Theory of Discrete Nonautonomous Dynamical Systems = Lect. Notes. Math. Geometric Topology : Recent Developments = Lect Notes Math Geometric Topology : Recent Developments = Lect. Notes. Math. Geometrisation of 3-manifolds = Ems Tracts Math Geometrisation of 3-manifolds = Ems. Tracts. Math. Geometry and Computing = Geom Comput Geometry and Computing = Geom. Comput. Geometry and Dynamics = Contemp Math Geometry and Dynamics = Contemp. Math. Geometry and Dynamics of Groups and Spaces = Prog Math Geometry and Dynamics of Groups and Spaces = Prog. Math. Geometry and Monadology: Leibniz's Analysis Situs and Philosophy of Space = Sci Netw Hist Stud Geometry and Monadology: Leibniz's Analysis Situs and Philosophy of Space = Sci. Netw. Hist. Stud. Geometry and Phase Transitions in Colloids and Polymers = World Sci P Geometry and Phase Transitions in Colloids and Polymers = World. Sci. P. Geometry and Physics = Aip Conf Proc Geometry and Physics = Aip. Conf. Proc. Geometry and Physics = Lect Notes Pure Appl Geometry and Physics = Lect. Notes. Pure. Appl. Geometry and Physics Xvi International Fall Workshop = Aip Conf Proc Geometry and Physics Xvi International Fall Workshop = Aip. Conf. Proc. Geometry and Quantum Physics = Lect Notes Phys Geometry and Quantum Physics = Lect. Notes. Phys. Geometry and Representation Theory of Real and P-adic Groups = Prog Math Geometry and Representation Theory of Real and P-adic Groups = Prog. Math. Geometry and Robotics = Lect Notes Comput Sc Geometry and Robotics = Lect. Notes. Comput. Sc. Geometry and Thermodynamics = Nato Adv Sci I B-phy Geometry and Thermodynamics = Nato. Adv. Sci. I. B-phy. Geometry and Topology Books = Geometry Topology Bo Geometry and Topology Books = Geometry Topology Bo. Geometry and Topology = Geom. Topol. Geometry and Topology of Manifolds = Banach Cent Geometry and Topology of Manifolds = Banach. Cent. Geometry and Topology of Manifolds = Fields Inst Commun Geometry and Topology of Manifolds = Fields. Inst. Commun. Geometry, Morphology and Computational Imaging = Lect Notes Comput Sc Geometry, Morphology and Computational Imaging = Lect. Notes. Comput. Sc. Geometry of Approximation = Trends Log Stud Log Geometry of Approximation = Trends. Log. Stud. Log. Geometry of Complex Domains = Prog Math Geometry of Complex Domains = Prog. Math. Geometry of Constrained Dynamical Systems = Publ Newton Inst Geometry of Constrained Dynamical Systems = Publ. Newton. Inst. Geometry of Filtering = Front Math Geometry of Filtering = Front. Math. Geometry of Hamiltonian Systems = Math Sci R Geometry of Hamiltonian Systems = Math. Sci. R. Geometry of Infinite-dimensional Groups = Ergeb Math Grenzgeb Geometry of Infinite-dimensional Groups = Ergeb. Math. Grenzgeb. Geometry of Jordan and Lie Structures = Lect Notes Math Geometry of Jordan and Lie Structures = Lect. Notes. Math. Geometry of Muntz Spaces and Related Questions = Lect Notes Math Geometry of Muntz Spaces and Related Questions = Lect. Notes. Math. Geometry of Random Fields = Class Appl Math Geometry of Random Fields = Class. Appl. Math. Geometry of Riemann Surfaces and Abelian Varieties = Contemp Math Geometry of Riemann Surfaces and Abelian Varieties = Contemp. Math. Geometry of Single-point Turning Tools and Drills: Fundamentals and Practical Applications = Springer Ser Adv Man Geometry of Single-point Turning Tools and Drills: Fundamentals and Practical Applications = Springer. Ser. Adv. Man. Geometry, Spectral Theory, Groups, and Dynamics = Ethnogr Alt Book Ser Geometry, Spectral Theory, Groups, and Dynamics = Ethnogr. Alt. Book. Ser. Geometry, Topology and Dynamics = Crm Proc & Lect Note Geometry, Topology and Dynamics = Crm. Proc. &. Lect. Note. Geometry & Topology = Geom Topol Geometry & Topology = Geom. Topol. Geometry, Topology & Physics = Conf Proc Lect Not G Geometry, Topology & Physics = Conf. Proc. Lect. Not. G. Geomicrobiology: Interactions Between Microbes and Minerals = Rev Mineral Geomicrobiology: Interactions Between Microbes and Minerals = Rev. Mineral. Geomicrobiology journal = Geomicrobiol J Geomicrobiology Journal = Geomicrobiol J Geomicrobiology Journal = Geomicrobiol. J. Geomorphic Hazards = Iag Publ Geomorphic Hazards = Iag. Publ. Geomorphic Processes and Riverine Habitat = Water Sci Appl Geomorphic Processes and Riverine Habitat = Water. Sci. Appl. Geomorphological Fluid Mechanics = Lect Notes Phys Geomorphological Fluid Mechanics = Lect. Notes. Phys. Geomorphological Processes and Human Impacts in River Basins = Iahs-aish P Geomorphological Processes and Human Impacts in River Basins = Iahs-aish. P. Geomorphologie-relief Processus Environnement = Geomorphologie Geomorphologie-relief Processus Environnement = Geomorphologie. Geomorphology and Land Management in A Changing Environment = Brit Geomor Geomorphology and Land Management in A Changing Environment = Brit. Geomor. Geomorphology = Geomorphology Geomorphology in Environmental Application = Z Geomorphol Supp Geomorphology in Environmental Application = Z. Geomorphol. Supp. Geomorphology: Processes, Taxonomy and Applications = Earth Sci 21st Cent Geomorphology: Processes, Taxonomy and Applications = Earth. Sci. 21st. Cent. Geomorphology Sans Frontieres = Iag Publ Geomorphology Sans Frontieres = Iag. Publ. Geonomics Inst for International Economic Advancement Series = Geon Inst I Geonomics Inst for International Economic Advancement Series = Geon. Inst I. Geonomics Institute for International Economic Advancement Series = Geonom Inst Geonomics Institute for International Economic Advancement Series = Geonom. Inst. Geoparks of The World = Geoparks World Geophysical and Astrophysical Fluid Dynamics = Geophys Astro Fluid Geophysical and Astrophysical Fluid Dynamics = Geophys. Astro. Fluid Geophysical and Astrophysical Fluid Dynamics = Geophys. Astrophys. Fluid Dyn. Geophysical and Astrophysical Fluid Dynamics = Geophys. Astrophys. Fluid Dynam. Geophysical Applications for Geotechnical Investigations = Am Soc Test Mater Geophysical Applications for Geotechnical Investigations = Am. Soc. Test. Mater. Geophysical Fluid Dynamics = Geophys. Fluid Dyn. Geophysical Hazards: Minimizing Risk, Maximizing Awareness = Int Year Planet Eart Geophysical Hazards: Minimizing Risk, Maximizing Awareness = Int. Year. Planet. Eart. Geophysical Inversion = Siam Proc S Geophysical Inversion = Siam. Proc. S. Geophysical Journal = Geophys J+ Geophysical Journal = Geophys. J Geophysical Journal = Geophys. J. Geophysical Journal = Geophys. J+.+ Geophysical Journal International = Geophys J Int Geophysical Journal International = Geophys. J. Int. Geophysical Journal of The Royal Astronomical Society = Geophys J Int Geophysical Journal of The Royal Astronomical Society = Geophys. J. Int. Geophysical Journal of the Royal Astronomical Society = Geophys. J. R. Astron. Soc. Geophysical Journal of The Royal Astronomical Society = Geophys J Roy Astr S Geophysical Journal of The Royal Astronomical Society = Geophys. J. Roy. Astr. S. Geophysical Journal-oxford = Geophys J Int Geophysical Journal-oxford = Geophys. J. Int. Geophysical Magazine = Geophys. Mag. Geophysical Monograph Series = Geoph Monog Series Geophysical Monograph Series = Geoph. Monog. Series Geophysical Monograph Series = Geophys Monogr Ser Geophysical Monograph Series = Geophys. Monogr. Ser. Geophysical Prospecting = Geophys Prospect Geophysical Prospecting = Geophys. Prospect. Geophysical research letters = Geophys Res Lett Geophysical Research Letters = Geophys Res Lett Geophysical Research Letters = Geophys. Res. Lett. Geophysical Surveys = Geophys Surv Geophysical Surveys = Geophys. Surv. Geophysics = Geophysics Geophysics in Mining and Environmental Protection = Geoplanet-earth Plan Geophysics in Mining and Environmental Protection = Geoplanet-earth. Plan. Geoplanet-earth and Planetary Sciences = Geoplanet-earth Plan Geoplanet-earth and Planetary Sciences = Geoplanet-earth Plan. Geopolitical Theory = Geopolit Theor Geopolitical Theory = Geopolit. Theor. Geopolitics and Maritime Territorial Disputes in East Asia = Routl Secur Asia-pac Geopolitics and Maritime Territorial Disputes in East Asia = Routl. Secur. Asia-pac. Geopolitics and The Great Powers in The 21st Century: Multipolarity and The Revolution in Strategic Perspective = Geopolit Theor Geopolitics and The Great Powers in The 21st Century: Multipolarity and The Revolution in Strategic Perspective = Geopolit. Theor. Geopolitics = Geopolitics Geopolitics of American Insecurity: Terror, Power and Foreign Policy = Prio New Secur Stud Geopolitics of American Insecurity: Terror, Power and Foreign Policy = Prio. New. Secur. Stud. Geopolitics of Euro-atlantic Integration = Eur Nation State Geopolitics of Euro-atlantic Integration = Eur. Nation. State. Geo-politics of The Euro-asia Energy Nexus: The European Union, Russia and Turkey = New Secur Chall Geo-politics of The Euro-asia Energy Nexus: The European Union, Russia and Turkey = New. Secur. Chall. Geopolitics Reframed: Security and Identity in Europe's Eastern Enlargement = New Vis Secur Geopolitics Reframed: Security and Identity in Europe's Eastern Enlargement = New. Vis. Secur. Geopolymers: Structure, Processing, Properties and Industrial Applications = Woodhead Publ Mater Geopolymers: Structure, Processing, Properties and Industrial Applications = Woodhead. Publ. Mater. Geo-processing = Geo-processing Georesearch Forum = Geores Forum Georesearch Forum = Geores. Forum Georg Buchner Jahrbuch, Bd 10: 2000-2004 = Georg Buchner Jahrb Georg Buchner Jahrbuch, Bd 10: 2000-2004 = Georg Buchner Jahrb. Georg Buchner Jahrbuch, Bd 11: 2005-2008 = Georg Buchner Jahrb Georg Buchner Jahrbuch, Bd 11: 2005-2008 = Georg Buchner Jahrb. Georg Buchner Jahrbuch = Georg Buchner Jahrb Georg Buchner Jahrbuch = Georg Buchner Jahrb. George Berkeley: Religion and Science in The Age of Enlightenment = Arch Int Hist Idees George Berkeley: Religion and Science in The Age of Enlightenment = Arch. Int. Hist. Idees. George Eliot = Routledge Guides Lit George Eliot = Routledge. Guides. Lit. George Herbert: A Literary Life = Lit Lives George Herbert: A Literary Life = Lit. Lives. George Mason University civil rights law journal = Geoge Mason Univ Civ Rights Law J George Sand in Foreign Hands - New Studies 3 = Crin George Sand in Foreign Hands - New Studies 3 = Crin. George Sand Lue A L'etranger - Recherches Nouvelles 3 = Crin George Sand Lue A L'etranger - Recherches Nouvelles 3 = Crin. Georgetown dental journal = Georgetown Dent J Georgetown Dental Journal = Georgetown Dent. J. Georgetown immigration law journal = Georget Immgr Law J Georgetown Law Journal = Georgetown Law J Georgetown Law Journal = Georgetown Law J. Georgetown Magazine = Georget Mag Georgetown medical bulletin = Georgetown Med Bull Georgetown University Round Table On Language and Linguistics 1999 = Georget U R Georgetown University Round Table On Language and Linguistics 1999 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics 1991 = Georget U R Georgetown University Round Table On Languages and Linguistics 1991 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics 1994 = Georget U R Georgetown University Round Table On Languages and Linguistics 1994 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics 1995 = Georget U R Georgetown University Round Table On Languages and Linguistics 1995 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics 2000 = Georget U R Georgetown University Round Table On Languages and Linguistics 2000 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics 2001 = Georget U R Georgetown University Round Table On Languages and Linguistics 2001 = Georget. U. R. Georgetown University Round Table On Languages and Linguistics = Georget U R Georgetown University Round Table On Languages and Linguistics = Georget. U. R. Georgetown University School of Dentistry Mirror = Georgetown Univ. Sch. Dent. Mirror George Washington Journal of International Law and Economics = George Wash J Int L George Washington Journal of International Law and Economics = George Wash. J. Int. L. George Washington Law Review = George Wash Law Rev George Washington Law Review = George Wash. Law Rev. Georgia Agricultural Experiment Station Research Bulletin = Geo Agr Exp St Bull Georgia Agricultural Experiment Station Research Bulletin = Geo. Agr. Exp. St. Bull. Georgia Agricultural Experiment Station Research Report = Geo Agr Exp St Re Re Georgia Agricultural Experiment Station Research Report = Geo. Agr. Exp. St. Re. Re. Georgia Agricultural Experiment Station Special Publication = Georgia Aes Spec Pub Georgia Agricultural Experiment Station Special Publication = Georgia Aes. Spec. Pub. Georgia Agricultural Research = Georgia Agr Res Georgia Agricultural Research = Georgia Agr. Res. Georgia epidemiology report / Georgia Dept. of Human Resources, Office of Epidemiology = Ga Epidemiol Rep Georgia Hospitals Today = Ga. Hosp. Today Georgia hospitals today / GHA = Ga Hosp Today Georgia journal of science : official publication of the Georgia Academy of Science = Ga J Sci Georgia law review (Athens, Ga. : 1966) = Georgia Law Rev Georgian Academy of Sciences = Mem. Differential Equations Math. Phys. Georgian Academy of Sciences = Proc. A. Razmadze Math. Inst. Georgian Mathematical Journal = Georgian Math. J. Georgian Mathematical Journal = Georgian Math J Georgian Mathematical Journal = Georgian Math. J. Georgian medical news = Georgian Med News Georgia nursing = Ga Nurse Georgia Nursing = Ga. Nurse. Georgia pharmacist quarterly = Ga Pharm Q Georgia Review = Georgia Rev Georgia Review = Georgia Rev. Georgia State Bar journal = Georgia State Bar J Georgia State University law review = Ga State Univ Law Rev Georg Trakl Und Die Literarische Moderne = Unters Deut Lit Georg Trakl Und Die Literarische Moderne = Unters. Deut. Lit. Geoscience Canada = Geosci Can Geoscience Canada = Geosci. Can. Geoscience in South-west England, Vol 10, Pt 1 2000 = Proc Ussher Geoscience in South-west England, Vol 10, Pt 1 2000 = Proc. Ussher. Geoscience in South-west England, Vol 10, Pt 2 2001 = Proc Ussher Geoscience in South-west England, Vol 10, Pt 2 2001 = Proc. Ussher. Geoscience in South-west England, Vol 10 Pt 3, 2002 = Proc Ussher Geoscience in South-west England, Vol 10 Pt 3, 2002 = Proc. Ussher. Geoscience in South-west England, Vol 11, Pt 2, 2005 = Proc Ussher Geoscience in South-west England, Vol 11, Pt 2, 2005 = Proc. Ussher. Geoscience in South-west England, Vol 11, Pt 3, 2006 = Proc Ussher Geoscience in South-west England, Vol 11, Pt 3, 2006 = Proc. Ussher. Geoscience in South-west England, Vol 11, Pt 4, 2007 = Proc Ussher Geoscience in South-west England, Vol 11, Pt 4, 2007 = Proc. Ussher. Geoscience in South-west England, Vol 12, Pt 1, 2008 = Proc Ussher Geoscience in South-west England, Vol 12, Pt 1, 2008 = Proc. Ussher. Geosciences Journal = Geosci J Geosciences Journal = Geosci. J. Geoscientific Model Development = Geosci Model Dev Geoscientific Model Development = Geosci. Model Dev. Geosensor Networks = Lect Notes Comput Sc Geosensor Networks = Lect. Notes. Comput. Sc. Geospace Electromagnetic Waves and Radiation = Lect Notes Phys Geospace Electromagnetic Waves and Radiation = Lect. Notes. Phys. Geospatial Analysis and Modelling of Urban Structure and Dynamics = Geojournal Lib Geospatial Analysis and Modelling of Urban Structure and Dynamics = Geojournal. Lib. Geo-spatial and Temporal Image and Data Exploitation Iii = Proc Spie Geo-spatial and Temporal Image and Data Exploitation Iii = Proc. Spie. Geo-spatial and Temporal Image and Data Exploitation Iii = P Soc Photo-opt Ins Geo-spatial and Temporal Image and Data Exploitation Iii = P. Soc. Photo-opt. Ins. Geospatial health = Geospatial Health Geospatial Health = Geospatial Health Geo-spatial Image and Data Exploitation Ii = P Soc Photo-opt Ins Geo-spatial Image and Data Exploitation Ii = P. Soc. Photo-opt. Ins. Geospatial Infofusion Systems and Solutions for Defense and Security Applications = Proc Spie Geospatial Infofusion Systems and Solutions for Defense and Security Applications = Proc. Spie. Geospatial Semantics and The Semanic Web: Foundations, Algorithms, and Applications = Semat Web Beyond-com Geospatial Semantics and The Semanic Web: Foundations, Algorithms, and Applications = Semat. Web. Beyond-com. Geospatial Semantics, Proceedings = Lect Notes Comput Sc Geospatial Semantics, Proceedings = Lect. Notes. Comput. Sc. Geospatial Techniques in Urban Hazard and Disaster Analysis = Geotech Environ Geospatial Techniques in Urban Hazard and Disaster Analysis = Geotech. Environ. Geospatial Technologies and Homeland Security: Research Frontiers and Future Challenges = Geojournal Lib Geospatial Technologies and Homeland Security: Research Frontiers and Future Challenges = Geojournal. Lib. Geospatial Technologies in Environmental Management = Geotech Environ Geospatial Technologies in Environmental Management = Geotech. Environ. Geospatial Technology and The Role of Location in Science = Geojournal Lib Geospatial Technology and The Role of Location in Science = Geojournal. Lib. Geospatial Visual Analytics = Nato Sci Peace Secur Geospatial Visual Analytics = Nato. Sci. Peace. Secur. Geosphere = Geosphere Geoss and Next - Generation Sensors and Missions = P Soc Photo-opt Ins Geoss and Next - Generation Sensors and Missions = P. Soc. Photo-opt. Ins. Geostandards and Geoanalytical Research = Geostand Geoanal Res Geostandards and Geoanalytical Research = Geostand. Geoanal. Res. Geostandards Newsletter = Geostandard Newslett Geostandards Newsletter = Geostandard. Newslett. Geostandards Newsletter-the Journal of Geostandards and Geoanalysis = Geostandard Newslett Geostandards Newsletter-the Journal of Geostandards and Geoanalysis = Geostandard. Newslett. Geostationary Ocean Color Imager (goci) Technical Development, Operation, and Applications = P Soc Photo-opt Ins Geostationary Ocean Color Imager (goci) Technical Development, Operation, and Applications = P. Soc. Photo-opt. Ins. Geostatistical Simulations = Quant Geo G Geostatistical Simulations = Quant. Geo. G. Geostatistics Banff 2004, Vols 1 and 2 = Quant Geo G Geostatistics Banff 2004, Vols 1 and 2 = Quant. Geo. G. Geostatistics for Environmental and Geotechnical Applications = Am Soc Test Mater Geostatistics for Environmental and Geotechnical Applications = Am. Soc. Test. Mater. Geostatistics for The Next Century = Quant Geo G Geostatistics for The Next Century = Quant. Geo. G. Geostatistics Troia 92, Vols 1 and 2 = Quant Geo G Geostatistics Troia 92, Vols 1 and 2 = Quant. Geo. G. Geostatistics Wollongong '96, Vols 1 and 2 = Quant Geo G Geostatistics Wollongong '96, Vols 1 and 2 = Quant. Geo. G. Geo-support 2004: Drilled Shafts, Micropiling, Deep Mixing, Remedial Methods, and Specialty Foundation Systems = Geotech Sp Geo-support 2004: Drilled Shafts, Micropiling, Deep Mixing, Remedial Methods, and Specialty Foundation Systems = Geotech. Sp. Geosynthetics in Civil Engineering = Woodhead Text Ser Geosynthetics in Civil Engineering = Woodhead. Text. Ser. Geosynthetics in Foundation Reinforcement and Erosion Control Systems = Geotech Sp Geosynthetics in Foundation Reinforcement and Erosion Control Systems = Geotech. Sp. Geosynthetics International = Geosynth Int Geosynthetics International = Geosynth. Int. Geosynthetics : Microstructure and Performance = Am Soc Test Mater Geosynthetics : Microstructure and Performance = Am. Soc. Test. Mater. Geosynthetic Soil Reinforcement Testing Procedures = Am Soc Test Mater Geosynthetic Soil Reinforcement Testing Procedures = Am. Soc. Test. Mater. Geosynthetic Testing for Waste Containment Applications = Am Soc Test Mater Geosynthetic Testing for Waste Containment Applications = Am. Soc. Test. Mater. Geotechnical and Geological Engineering = Geotech. Geol. Eng. Geotechnical and Geophysical Site Characterization = Proc Monogr Eng Wate Geotechnical and Geophysical Site Characterization = Proc. Monogr. Eng. Wate. Geotechnical Aspects of Pavements 2000 = Transport Res Rec Geotechnical Aspects of Pavements 2000 = Transport. Res. Rec. Geotechnical Earthquake Engineering and Soil Dynamics Iii, Vol 1 and 2 = Geotech Sp Geotechnical Earthquake Engineering and Soil Dynamics Iii, Vol 1 and 2 = Geotech. Sp. Geotechnical Earthquake Engineering: Simplified Analyses With Case Studies and Examples = Geotech Geol Earthq Geotechnical Earthquake Engineering: Simplified Analyses With Case Studies and Examples = Geotech. Geol. Earthq. Geotechnical Earthquake Engineering = Springer Ser Geomech Geotechnical Earthquake Engineering = Springer. Ser. Geomech. Geotechnical Engineering Congress 1991, Vols 1 and 2 = Geotech Sp Geotechnical Engineering Congress 1991, Vols 1 and 2 = Geotech. Sp. Geotechnical Engineering for Transportation Projects, Vol 1 = Geotech Sp Geotechnical Engineering for Transportation Projects, Vol 1 = Geotech. Sp. Geotechnical Engineering for Transportation Projects, Vol 2 = Geotech Sp Geotechnical Engineering for Transportation Projects, Vol 2 = Geotech. Sp. Geotechnical Engineering of Ocean Waste Disposal = Am Soc Test Mater Geotechnical Engineering of Ocean Waste Disposal = Am. Soc. Test. Mater. Geotechnical Geological and Earthquake Engineering = Geotech Geol Earthq Geotechnical Geological and Earthquake Engineering = Geotech. Geol. Earthq. Geotechnical Geological and Earthquake Engineering = Geot Geol Earthquake Geotechnical Geological and Earthquake Engineering = Geot. Geol. Earthquake Geotechnical, Geological and Earthquake Engineering = Geot Geol Earthquake Geotechnical, Geological and Earthquake Engineering = Geot. Geol. Earthquake Geotechnical Practice Publication = Geotech Practice Pub Geotechnical Practice Publication = Geotech. Practice Pub. Geotechnical Special Publication = Geotech Sp Geotechnical Special Publication = Geotech. Sp. Geotechnical Testing Journal = Geotech Test J Geotechnical Testing Journal = Geotech. Test. J. Geotechnics of High Water Content Materials = Am Soc Test Mater Geotechnics of High Water Content Materials = Am. Soc. Test. Mater. Geotechnics of Waste Fills - Theory and Practice = Am Soc Test Mater Geotechnics of Waste Fills - Theory and Practice = Am. Soc. Test. Mater. Geotechnique = Geotechnique Geotechnologies and The Environment = Geotech Environ Geotechnologies and The Environment = Geotech. Environ. Geotectonics = Geotectonics+ Geotectonics = Geotectonics+.+ Geotextiles and Geomembranes = Geotext. Geomembr. Geotextiles and Geomembranes = Geotext Geomembranes Geotextiles and Geomembranes = Geotext. Geomembranes Geothermal Development in The Pacific Rim = Geoth Res T Geothermal Development in The Pacific Rim = Geoth. Res. T. Geothermal Resources Council Transactions = Geoth Res T Geothermal Resources Council Transactions = Geoth. Res. T. Geothermal Resources Council Transactions, Vol 18 = Geoth Res T Geothermal Resources Council Transactions, Vol 18 = Geoth. Res. T. Geothermics = Geothermics Geotimes = Geotimes Geo-volution: The Evolution of Colorado's Geological and Geotechnical Engineering Practice = Geotech Practice Pub Geo-volution: The Evolution of Colorado's Geological and Geotechnical Engineering Practice = Geotech. Practice Pub. Gerhard G Mueller: Father of International Accounting Education = Stud Dev Account Tho Gerhard G Mueller: Father of International Accounting Education = Stud. Dev. Account. Tho. Geriatric Cardiovascular Medicine = Geriatr Cardiovasc Geriatric Cardiovascular Medicine = Geriatr. Cardiovasc. Geriatric Institutions = Geriatr Inst Geriatric Institutions = Geriatr. Inst. Geriatric nephrology and urology = Geriatr Nephrol Urol Geriatric Nephrology and Urology=Geriatr Nephrol Urol;; Geriatric Nephrology and Urology = Geriatr. Nephrol. Urol. Geriatric Nursing and Home Care = Geriatr. Nur. Home Care Geriatric nursing and home care = Geriatr Nurs Home Care Geriatric Nursing = Geriatr. Nur. (Lond.) Geriatric Nursing = Geriatr Nurs Geriatric Nursing = Geriatr. Nurs. Geriatric nursing = Geriatr Nurs (Minneap) Geriatric nursing (London, England) = Geriatr Nurs (Lond) Geriatric nursing (New York, N.Y.) = Geriatr Nurs Geriatrics=Geriatrics;; Geriatrics = Geriatrics Geriatrics Gerontology and Elderly Issues Series = Geriatr Gerontol Eld Geriatrics Gerontology and Elderly Issues Series = Geriatr. Gerontol. Eld. Geriatrics & Gerontology International = Geriatr Gerontol Int Geriatrics & Gerontology International = Geriatr. Gerontol. Int. Geriatrie Et Psychologie Neuropsychiatrie De Vieillissement = Geriatr Psychol Neur Geriatrie Et Psychologie Neuropsychiatrie De Vieillissement = Geriatr. Psychol. Neur. Gerlands Beitrage zur Geophysik = Gerlands Beitr. Geophys. Gerlands Beitrage Zur Geophysik = Gerl Beitr Geophys Gerlands Beitrage Zur Geophysik = Gerl. Beitr. Geophys. German 1918 Offensives: A Case Study in The Operational Level of War = Strateg Hist German 1918 Offensives: A Case Study in The Operational Level of War = Strateg. Hist. German and Dutch Economies = Contribut Econ German and Dutch Economies = Contribut. Econ. German Annual of Spatial Research and Policy = Ger Annu Spat Res Po German Annual of Spatial Research and Policy = Ger. Annu. Spat. Res. Po. German Chemical Industry in The Twentieth Century = Chem Chemis German Chemical Industry in The Twentieth Century = Chem. Chemis. German comments = Ger Comments German Disarmament After World War I: The Diplomacy of International Arms Inspection 1920-1931 = Strateg Hist German Disarmament After World War I: The Diplomacy of International Arms Inspection 1920-1931 = Strateg. Hist. German Economic Review=Ger. Econ. Rev. German Economic Review = Ger Econ Rev German Economic Review = Ger. Econ. Rev. German Economic Review-germany = Ger Econ Rev-germany German Economic Review-germany = Ger. Econ. Rev-germany. German Federalism Today = St Federal German Federalism Today = St. Federal. German-german Integration = Beih Konjun German-german Integration = Beih. Konjun. German Historical Perspectives Series = Ger Hist P German Historical Perspectives Series = Ger. Hist. P. German History = Ger Hist German History = Ger. Hist. Germania. Anzeiger der Römisch-Germanischen Kommission des Deutschen Archäologischen Instituts = Germania Germania = Germania Germania Latina = Germania Latina Germania Sacrum Dritte Folge = Ger Sacrum Dritte Fo Germania Sacrum Dritte Folge = Ger. Sacrum Dritte Fo. Germanic Notes and Reviews = Ger Notes Rev Germanic Notes and Reviews = Ger. Notes Rev. Germanic Notes = Ger Notes Germanic Notes = Ger. Notes Germanic Review = Ger Rev Germanic Review = Ger. Rev. Germanic Strong Verbs: Foundations and Development of A New System = Trends Linguist-stud Germanic Strong Verbs: Foundations and Development of A New System = Trends. Linguist-stud. Germanic Texts and Latin Models: Medieval Reconstructions = Germania Latina Germanic Texts and Latin Models: Medieval Reconstructions = Germania. Latina. German Idealism and The Problem of Knowledge: Kant, Fichte, Schelling, and Hegel = Stud Ger Idealism German Idealism and The Problem of Knowledge: Kant, Fichte, Schelling, and Hegel = Stud. Ger. Idealism Germanisch-romanische Monatsschrift = Ger-roman Monatsschr Germanisch-romanische Monatsschrift = Ger-roman. Monatsschr. Germanisch-Romanische Monatsschrift = Ger Rom Monatsschr Germanistik = Germanistik Germanistische Arbeitshefte = Ger Arbeitsheft Germanistische Arbeitshefte = Ger. Arbeitsheft. Germanium Silicon: Physics and Materials = Semiconduct Semimet Germanium Silicon: Physics and Materials = Semiconduct. Semimet. German-jewish Literature in The Wake of The Holocaust = Stud Eur Cult Hist German-jewish Literature in The Wake of The Holocaust = Stud. Eur. Cult. Hist. German-jewish Popular Culture Before The Holocaust = Routl Jew Stud Ser German-jewish Popular Culture Before The Holocaust = Routl. Jew. Stud. Ser. German Journal of Agricultural Economics = Ger J Agr Econ German Journal of Agricultural Economics = Ger. J. Agr. Econ. German journal of ophthalmology = Ger J Ophthalmol German Journal of Ophthalmology = Ger J Ophthalmol German Journal of Ophthalmology = Ger. J. Ophthalmol. German Life and Civilization = German Life Civiliza German Life and Civilization = German Life Civiliza. German life and letters = Ger Life Lett German Life and Letters = Ger Life Lett German Life and Letters = Ger. Life Lett. German medical monthly = Ger Med Mon German Medical Monthly = Ger. Med. Mon. German medicine = Ger Med German Medicine = Ger Med German Medicine = Ger. Med. German Migrants in Post-war Britain = Brit Polit Soc German Migrants in Post-war Britain = Brit. Polit. Soc. German Monitor = Germ Monit German Monitor = Germ. Monit. German Monitor = Ger Monitor German Monitor = Ger. Monitor German Orientalism: The Study of The Middle East and Islam From 1800 to 1945 = Cult Civiliz Mid E German Orientalism: The Study of The Middle East and Islam From 1800 to 1945 = Cult. Civiliz. Mid. E. Germano-slavica = Germano-slavica German Political Philosophy: The Metaphysics of Law = Routl Stud Soc Polit German Political Philosophy: The Metaphysics of Law = Routl. Stud. Soc. Polit. German politics = Ger Polit German Politics = Ger Polit German Politics = Ger. Polit. German Postwar Films: Life and Love in The Ruins = Stud Eur Cult Hist German Postwar Films: Life and Love in The Ruins = Stud. Eur. Cult. Hist. German Quarterly = Ger Quart German Quarterly = Ger. Quart. German Romanticism and Science = Routl Stud Romantic German Romanticism and Science = Routl. Stud. Romantic. Germans of The Soviet Union = Basees-rout Ser Russ Germans of The Soviet Union = Basees-rout. Ser. Russ. Germans Or Foreigners? Attitudes Toward Ethnic Minorities in Post-reunification Germany = Eur Transit-nyu Eur Germans Or Foreigners? Attitudes Toward Ethnic Minorities in Post-reunification Germany = Eur. Transit-nyu. Eur. German-speaking Exiles in Ireland 1933-1945 = Germ Monit German-speaking Exiles in Ireland 1933-1945 = Germ. Monit. Germans, Poland, and Colonial Expansion to The East = Stud Eur Cult Hist Germans, Poland, and Colonial Expansion to The East = Stud. Eur. Cult. Hist. German Studies: a review of German-language research contributions. Sect. l: Philosophy and history = GS German studies review = Ger Stud Rev German Studies Review = Ger Stud Rev German Studies Review = Ger. Stud. Rev. German Studies Towards The Millennium = Cutg Proceedings German Studies Towards The Millennium = Cutg. Proceedings. German Thought and International Relations -the Rise and Fall of A Liberal Project = Palgr Stud Int Relat German Thought and International Relations -the Rise and Fall of A Liberal Project = Palgr. Stud. Int. Relat. Germantowne crier = Germant Crier German Wall: Fallout in Europe = Stud Eur Cult Hist German Wall: Fallout in Europe = Stud. Eur. Cult. Hist. Germany As A Civilian Power? = Iss Ger Polit Germany As A Civilian Power? = Iss. Ger. Polit. Germany's Eu Policy On Asylum and Defence: De-europeanization By Default = New Perspect Ger Stu Germany's Eu Policy On Asylum and Defence: De-europeanization By Default = New. Perspect. Ger. Stu. Germany's New Right As Culture and Politics = New Perspect Ger Stu Germany's New Right As Culture and Politics = New Perspect. Ger. Stu. Germany's Uncertain Power: Foreign Policy of The Berlin Republic = New Perspect Ger Stu Germany's Uncertain Power: Foreign Policy of The Berlin Republic = New. Perspect. Ger. Stu. Germ Cell Development, Division, Disruption and Death = Serono Symp Germ Cell Development, Division, Disruption and Death = Serono. Symp. Germ Cell Tumours Iii = Adv Biosci Germ Cell Tumours Iii = Adv. Biosci. Germline Development = Ciba F Symp Germline Development = Ciba. F. Symp. Germ-line Intervention and Our Responsibilities to Future Generations = Philos Med Germ-line Intervention and Our Responsibilities to Future Generations = Philos. Med. Gerodontics = Gerodontics Gerodontology = Gerodontology Geron = Geron Gerontechnology = St Heal T Gerontechnology = St. Heal. T. Gerontion = Gerontion Gerontologia Clinica = Gerontol Clin Gerontologia Clinica = Gerontol. Clin. Gerontologia clinica = Gerontol Clin (Basel) Gerontologia Clinica = Gerontol. Clin. (Basel) Gerontologia = Gerontologia Gerontologia = Gerontology Gerontologia = Gerontology. Gerontological Prism: Developing Interdisciplinary Bridges = Soc Aging Gerontological Prism: Developing Interdisciplinary Bridges = Soc. Aging. Gerontologie et societe : cahiers de la Fondation nationale de gerontologie = Gerontol Soc Gerontologie = Gerontologie Gerontologist=Gerontologist;; Gerontologist = Gerontologist Gerontology and Geriatrics Education = Gerontol. Geriatr. Educ. Gerontology & geriatrics education = Gerontol Geriatr Educ Gerontology=Gerontology;; Gerontology = Gerontology Ges'09: Proceedings of The 3rd Iasme/wseas International Conference On Recent Ad Geology and Seismology = Ma Comput Sci Eng Ges'09: Proceedings of The 3rd Iasme/wseas International Conference On Recent Ad Geology and Seismology = Ma. Comput. Sci. Eng. Ges'09: Proceedings of The 3rd Iasme/wseas International Conference On Recent Ad Geology and Seismology = Math Comput Sci Eng Ges'09: Proceedings of The 3rd Iasme/wseas International Conference On Recent Ad Geology and Seismology = Math. Comput. Sci. Eng. Gesa-symposium 2001 = Vdi Bericht Gesa-symposium 2001 = Vdi. Bericht. Geschenke An Aufmerksame: Hebraische Intertextualitat Und Mystische Weltauffassung in Der Lyrik Paul Celans = Conditio Jud Geschenke An Aufmerksame: Hebraische Intertextualitat Und Mystische Weltauffassung in Der Lyrik Paul Celans = Conditio. Jud. Geschichte Der Deutschen Sprache, 10. Auflage = Degruyter Studienb Geschichte Der Deutschen Sprache, 10. Auflage = Degruyter. Studienb. Geschichte Des Philosophischen Begriffs Der Wahrheit = Degruyter Studienb Geschichte Des Philosophischen Begriffs Der Wahrheit = Degruyter. Studienb. Geschichte in Wissenschaft und Unterricht = Gesch Wiss Unterr Geschichte in Wissenschaft und Unterricht = GWU Geschichte Und Gesellschaft = Gesch Ges Geschichte Und Gesellschaft = Gesch. Ges. Geschichte und Gesellschaft (Vandenhoeck & Ruprecht) = Gesch Ges Geschichtsbilder Fur Pagane Und Christen: Res Romanae in Den Spatantiken Breviarien = Beitr Altertumskunde Geschichtsbilder Fur Pagane Und Christen: Res Romanae in Den Spatantiken Breviarien = Beitr. Altertumskunde. Geschlechterspielraume: Dramatik, Theater, Performance Und Gender = Amst Beitr Neuer Ger Geschlechterspielraume: Dramatik, Theater, Performance Und Gender = Amst. Beitr. Neuer. Ger. Gesellschaftliche Erinnerung: Eine Medienkulturwissenschaftliche Perspektive = Medien Kult Erinneru Gesellschaftliche Erinnerung: Eine Medienkulturwissenschaftliche Perspektive = Medien. Kult. Erinneru. Gesetzgebung des Bundes und der Kantone = Gesetzgeb. Bundes Kantone Gesnerus=Gesnerus;; Gesnerus = Gesnerus Gesnerus. Supplement=Gesnerus Suppl;; Gesnerus. Supplement = Gesnerus Suppl Gesnerus. Supplement = Gesnerus. Suppl. Gesnerus-swiss Journal of The History of Medicine and Sciences = Gesnerus Gesnerus-swiss Journal of The History of Medicine and Sciences = Gesnerus. Gesta-international Center of Medieval Art = Gesta Gesta-international Center of Medieval Art = Gesta. Gesta. International Center of Medieval Art = Gesta Gestalten Der Transzendentalen Einheit: Bedingungen Der Synthesis Bei Kant = Kantstudien Gestalten Der Transzendentalen Einheit: Bedingungen Der Synthesis Bei Kant = Kantstudien. Gestion Y Politica Publica = Gest Polit Publica Gestion Y Politica Publica = Gest. Polit. Publica Gesture-based Communication in Human-computer Interaction = Lect Notes Artif Int Gesture-based Communication in Human-computer Interaction = Lect. Notes. Artif. Int. Gesture-based Human-computer Interaction and Simulation = Lect Notes Artif Int Gesture-based Human-computer Interaction and Simulation = Lect. Notes. Artif. Int. Gesture = Gesture Gesture in Embodied Communication and Human-computer Interaction = Lect Notes Artif Int Gesture in Embodied Communication and Human-computer Interaction = Lect. Notes. Artif. Int. Gesture in Human-computer Interaction and Simulation = Lect Notes Artif Int Gesture in Human-computer Interaction and Simulation = Lect. Notes. Artif. Int. Gesture: Second Language Acquisition and Classroom Research = Esl Appl Ling Prof Gesture: Second Language Acquisition and Classroom Research = Esl. Appl. Ling. Prof. Gesunde Pflanzen = Gesunde Pflanz Gesunde Pflanzen = Gesunde Pflanz. Gesundheit (Derendingen, Switzerland) = Gesundheit Gesundheits-Ingenier = Gesund. Ing. Gesundheits-Ingenieur = Gesund Ing Gesundheits-Ingenieur = Gesund. Ing. Gesundheits- und Umwelttechnik = Gesund. Umwelttech. Gesundheitswesen (Bundesverband der Arzte des Offentlichen Gesundheitsdienstes (Germany)) = Gesundheitswesen Gesundheitswesen=Gesundheitswesen;; Gesundheitswesen = Gesundheitswesen Gesundsheitsschutz und Umwelttechnik = Gesundheitsschutz Umwelttech. Get Real: Documentary Theatre Past and Present = Perform Interv Get Real: Documentary Theatre Past and Present = Perform. Interv. Gettering and Defect Engineering in Semiconductor Technology = Solid State Phenomen Gettering and Defect Engineering in Semiconductor Technology = Solid. State. Phenomen. Gettering and Defect Engineering in Semiconductor Technology = Sol St Phen Gettering and Defect Engineering in Semiconductor Technology = Sol. St. Phen. Gettering and Defect Engineering in Semiconductor Technology Xii = Solid State Phenomen Gettering and Defect Engineering in Semiconductor Technology Xii = Solid. State. Phenomen. Gettering and Defect Engineering in Semiconductor Technology Xii = Sol St Phen Gettering and Defect Engineering in Semiconductor Technology Xii = Sol. St. Phen. Gettering and Defect Engineering in Semiconductor Technology Xi = Solid State Phenomen Gettering and Defect Engineering in Semiconductor Technology Xi = Solid. State. Phenomen. Gettering and Defect Engineering in Semiconductor Technology Xi = Sol St Phen Gettering and Defect Engineering in Semiconductor Technology Xi = Sol. St. Phen. Getting Down to Earth = Int S Ecol Econ Ser Getting Down to Earth = Int. S. Ecol. Econ. Ser. Getting The Most Out of Your Mentoring Relationships: A Handbook for Women in Stem = Mentor Acad Ind Getting The Most Out of Your Mentoring Relationships: A Handbook for Women in Stem = Mentor. Acad. Ind. Getting to The Future Through Silviculture - Workshop Proceedings = Usda Interm Getting to The Future Through Silviculture - Workshop Proceedings = Usda. Interm. Getting Trains Into Service = Imeche Sem Getting Trains Into Service = Imeche. Sem. Getty Conservation Institute Symposium Proceedings Series = Getty Conserv Inst S Getty Conservation Institute Symposium Proceedings Series = Getty Conserv. Inst. S. Gev-tev Gamma Ray Astrophysics Workshop = Aip Conf Proc Gev-tev Gamma Ray Astrophysics Workshop = Aip. Conf. Proc. Gewaesserschutz, Wasser, Abwasser = Gewaesserschutz, Wasser, Abwasser Gewalt Im Bild: Das Phanomen Der Medialen Gewalt Im Athen Des 6. Und 5. Jahrhunderts V. Chr. = Image Context Gewalt Im Bild: Das Phanomen Der Medialen Gewalt Im Athen Des 6. Und 5. Jahrhunderts V. Chr. = Image. Context. Gewerbliche Prozessfinanzierung Und Staatliche Prozesskostenhilfe: Am Beispiel Der Prozessfuhrung Durch Insolvenzverwalter = Schr Deut Eur Int In Gewerbliche Prozessfinanzierung Und Staatliche Prozesskostenhilfe: Am Beispiel Der Prozessfuhrung Durch Insolvenzverwalter = Schr. Deut. Eur. Int. In. Gewerkschaftliche Monatshefte = Gewerkschaft Monatsh Gewerkschaftliche Monatshefte = Gewerkschaft. Monatsh. Gewina = Gewina Geysers - Three Decades of Achievement : A Window On The Future = Geoth Res T Geysers - Three Decades of Achievement : A Window On The Future = Geoth. Res. T. Gff = Gff Ggplot2: Elegant Graphics for Data Analysis = Use R Ggplot2: Elegant Graphics for Data Analysis = Use. R. GHAA journal = GHAA J GHAA Journal = GHAA J. Ghanaian Nurse = Ghana. Nurse Ghana journal of sociology = Ghana J Sociol Ghana medical journal = Ghana Med J Ghana Medical Journal = Ghana Med J Ghana Medical Journal = Ghana Med. J. Ghana official news bulletin = Ghana Off News Bull Ghana = Sais Afr St Ghana = Sais. Afr. St. Ghana social science journal = Ghana Soc Sci J GHA today = GHA Today GHA Today = GHA Today Ghazi Sultans and The Frontiers of Islam: A Comparative Study of The Late Medieval and Early Modern Periods = Rout Stud Mid E Hist Ghazi Sultans and The Frontiers of Islam: A Comparative Study of The Late Medieval and Early Modern Periods = Rout. Stud. Mid. E. Hist. Giaches De Wert (1535-1596) and His Time - Migration of Musicians to and From The Low Countries (c.1400-1600), Colloquium Proceedings = Yb Alamire Fdn Giaches De Wert (1535-1596) and His Time - Migration of Musicians to and From The Low Countries (c.1400-1600), Colloquium Proceedings = Yb. Alamire. Fdn. Giant Micelles: Properties and Applications = Surfactant Sci Ser Giant Micelles: Properties and Applications = Surfactant. Sci. Ser. Giant Oil and Gas Fields of The Decade 1978-1988 = Aapg Memoir Giant Oil and Gas Fields of The Decade 1978-1988 = Aapg. Memoir. Giant Planets of Our Solar System: Atmospheres, Composition, and Structure, Second Edition = S-p B Astron Planet Giant Planets of Our Solar System: Atmospheres, Composition, and Structure, Second Edition = S-p. B. Astron. Planet. Gibralfaro = Gibralfaro Gi Cancer = Gi Cancer Giddiness & Vestibulo-spinal Investigations; Combined Audio-vestibular Investigations; Experimental Neurootology = Int Congr Ser Giddiness & Vestibulo-spinal Investigations; Combined Audio-vestibular Investigations; Experimental Neurootology = Int. Congr. Ser. Gidrokhimicheskie Materialy = Gidrokhim. Mat. Giessener Geographische Schriften = Giess. Geogr. Schr. Giesstechnik Im Motorenbau: Anforderungen Der Automobilindustrie = Vdi Bericht Giesstechnik Im Motorenbau: Anforderungen Der Automobilindustrie = Vdi. Bericht. Gifted Child Quarterly = Gifted Child Quart Gifted Child Quarterly = Gifted Child Quart. Gift : From Basics to Clinics = Serono Sym Gift : From Basics to Clinics = Serono. Sym. Gifu Shika Gakkai Zasshi (Journal of Gifu Dental Society) = Gifu Shika Gakkai Zasshi Gifu University = Bull. Fac. Gen. Ed. Gifu Univ. Gigahertz Devices and Systems = Proc Spie Gigahertz Devices and Systems = Proc. Spie. Gigahertz Devices and Systems = P Soc Photo-opt Ins Gigahertz Devices and Systems = P. Soc. Photo-opt. Ins. Gigiena i sanitariia = Gig Sanit Gigiena i Sanitariia = Gig. Sanit. Gigiena I Sanitariia=Gig Sanit;; Gigiena i Sanitariya = Gig. Sanit. Gigiena truda i professional'nye zabolevaniia = Gig Tr Prof Zabol Gigiena Truda i Professionalnye Zabolevaniia = Gig. Tr. Prof. Zabol. Gigiena Truda i Professional'nye Zabolevaniya = Gig. Tr. Prof. Zabol. Giglio di roccia = GiRoccPalermo Gilding The Market: Luxury and Fashion in Fourteenth-century Italy = Middle Ages Ser Gilding The Market: Luxury and Fashion in Fourteenth-century Italy = Middle. Ages. Ser. Gi Microbiota and Regulation of The Immune System = Adv Exp Med Biol Gi Microbiota and Regulation of The Immune System = Adv. Exp. Med. Biol. Ginecologia clinica = Ginecol Clin Ginecologia = Ginecologia Ginecologia Y Obstetricia Clinica = Ginecol Obstet Clin Ginecologia Y Obstetricia Clinica = Ginecol. Obstet. Clin. Ginecologia y obstetricia de Mexico = Ginecol Obstet Mex Ginecologia y Obstetricia de Mexico = Ginecol. Obstet. Mex. Ginecologia Y Obstetricia de Mexico=Ginecol Obstet Mex;; Ginecologia y obstetricia = Ginecol Obstet (Lima) Gineco Ro = Gineco Ro Ginekologia polska = Ginekol Pol Ginekologia Polska=Ginekol Pol;; Ginekologia Polska = Ginekol Pol Ginekologia Polska = Ginekol. Pol. Ginkgo Biloba Extract ( Egb 761 ) As A Free-radical Scavenger = Adv Ginkgo Ginkgo Biloba Extract ( Egb 761 ) As A Free-radical Scavenger = Adv. Ginkgo Ginkgo Biloba Extract (egb 761): Lessons From Cell Biology = Adv Ginkgo Ginkgo Biloba Extract (egb 761): Lessons From Cell Biology = Adv. Ginkgo Gino Capponi = Bibl Stor T Gino Capponi = Bibl. Stor. T. Giono: La Memoire A L Oeuvre = Cribles Giono: La Memoire A L Oeuvre = Cribles. Giornale critico della filosofia italiana = GCFI Giornale critico della filosofia italiana = G Crit Filos Ital Giornale Critico Della Filosofia Italiana = Giorn Crit Filos It Giornale Critico Della Filosofia Italiana = Giorn. Crit. Filos. It. Giornale degli Economisti e Annali di Economia=Giorn. Econ. Giornale Degli Economisti E Annali Di Economia = Giorn Econ Ann Econ Giornale Degli Economisti E Annali Di Economia = Giorn. Econ. Ann. Econ. Giornale degli economisti e annali di economia / Universita commerciale Luigi Bocconi = G Econ Ann Econ Giornale della Accademia di medicina di Torino = G Accad Med Torino Giornale del Popolo = G. Pop. Giornale di Anestesia Stomatologica = G. Anest. Stomatol. Giornale di batteriologia e immunologia = G Batteriol Immunol Giornale di batteriologia, virologia, ed immunologia ed annali dell'Ospedale Maria Vittoria di Torino = G Batteriol Virol Immunol Giornale di Batteriologia, Virologia ed Immunologia ed Annali dell Ospedale Maria Vittoria di Torino = G. Batteriol. Virol. Immunol. Giornale di batteriologia, virologia ed immunologia ed annali dell'Ospedale Maria Vittoria di Torino. Parte 1: Sezione microbiologica = G Batteriol Virol Immunol Microbiol Giornale di batteriologia, virologia ed immunologia ed annali dell'Ospedale Maria Vittoria di Torino. Parte 2: Sezione clinica = G Batteriol Virol Immunol Clin Giornale di Batteriologia, Virologia ed Immunologia ed Annali dell Ospedale Maria Vittoria di Torino. Parte 2, Sezione Clinica = G. Batteriol. Virol. Immunol. [Clin.] Giornale di batteriologia, virologia ed immunologia = G Batteriol Virol Immunol Giornale di Batteriologia, Virologia ed Immunologia = G. Batteriol. Virol. Immunol. Giornale di biochimica = G Biochim Giornale di Chirurgia=G Chir;; Giornale di Chirurgia = G. Chir. Giornale di clinica medica = G Clin Med Giornale di Clinica Medica = G. Clin. Med. Giornale di endodonzia = G Endodonzia Giornale di Endodonzia = G. Endodonzia Giornale di Fisica Sanitaria e Protezione Contro le Radiazioni = G. Fis. Sanit. Prot. Radiaz. Giornale Di Fisica Sanitaria E Protezione Contro Le Radiazioni = Giorn Fis Sanit Prot Giornale Di Fisica Sanitaria E Protezione Contro Le Radiazioni = Giorn. Fis. Sanit. Prot. Giornale di fisica sanitaria e protezione contro le radiazioni. The journal of health physics and radiation protection = G Fis Sanit Prot Radiaz Giornale di gerontologia = G Gerontol Giornale di Gerontologia = G. Gerontol. Giornale Di Gerontologia = Giorn Gerontol Giornale Di Gerontologia = Giorn. Gerontol. Giornale di gerontologia. Supplemento = G Gerontol Suppl Giornale di Gerontologia. Supplemento = G. Gerontol. Suppl. Giornale di igiene e medicina preventiva = G Ig Med Prev Giornale di Igiene e Medicina Preventiva = G. Ig. Med. Prev. Giornale di malattie infettive e parassitarie = G Mal Infett Parassit Giornale di Malattie Infettive e Parassitarie = G. Mal. Infett. Parassit. Giornale di medicina militare = G Med Mil Giornale di Medicina Militare = G. Med. Mil. Giornale di metafisica = GM Giornale Di Microbiologia = Giorn Microbiol Giornale Di Microbiologia = Giorn. Microbiol. Giornale Di Neuropsichiatria Dell Eta Evolutiva = Giorn Neuropsi Evol Giornale Di Neuropsichiatria Dell Eta Evolutiva = Giorn. Neuropsi. Evol. Giornale Di Neuropsicofarmacologia = Giorn Neuropsicofarm Giornale Di Neuropsicofarmacologia = Giorn. Neuropsicofarm. Giornale di pneumologia = G Pneumol Giornale di Pneumologia = G. Pneumol. Giornale di psichiatria e di neuropatologia = G Psichiatr Neuropatol Giornale di Psichiatria e di Neuropatologia = G. Psichiatr. Neuropatol. Giornale di scienze mediche = G Sci Mediche Giornale di stomatologia e di ortognatodonzia = G Stomatol Ortognatodonzia Giornale di Stomatologia e di Ortognatodonzia = G. Stomatol. Ortognatodonzia Giornale ferrarese di retorica e filologia = GFRF Giornale filologico ferrarese = GiornFilFerr Giornale italiano della tubercolosi e delle malattie del torace = G Ital Tuberc Mal Torace Giornale Italiano della Tubercolosi e delle Malattie del Torace = G. Ital. Tuberc. Mal. Torace Giornale italiano della tubercolosi = G Ital Della Tuberc Giornale italiano delle malattie del torace = G Ital Mal Torace Giornale Italiano delle Malattie del Torace = G. Ital. Mal. Torace Giornale italiano di anestesiologia = G Ital Anestesiol Giornale italiano di cardiologia (2006) = G Ital Cardiol (Rome) Giornale italiano di cardiologia = G Ital Cardiol Giornale Italiano di Cardiologia=G Ital Cardiol;; Giornale Italiano di Cardiologia = G. Ital. Cardiol. Giornale italiano di chemioterapia = G Ital Chemioter Giornale Italiano di Chemioterapia = G. Ital. Chemioter. Giornale italiano di chirurgia = G Ital Chir Giornale Italiano di Chirurgia = G. Ital. Chir. Giornale Italiano Di Dermatologia E Venereologia = Giorn Ital Dermat V Giornale Italiano Di Dermatologia E Venereologia = Giorn. Ital. Dermat. V. Giornale Italiano di Dermatologia e Venereologia = G. Ital. Dermatol. Venereol. Giornale italiano di dermatologia e venereologia : organo ufficiale, Societa italiana di dermatologia e sifilografia = G Ital Dermatol Venereol Giornale italiano di dermatologia = G Ital Dermatol Giornale Italiano Di Dermatologia Minerva Dermatologica = Giorn Ital Derm Min Giornale Italiano Di Dermatologia Minerva Dermatologica = Giorn. Ital. Derm. Min. Giornale Italiano di Dermatologia. Minerva Dermatologica = G. Ital. Dermatol. Minerva Dermatol. Giornale italiano di dermatolotia. Minerva dermatologica = G Ital Dermatol Minerva Dermatol Giornale italiano di endodonzia = G Ital Endod Giornale Italiano di Endodonzia = G. Ital. Endodonzia Giornale italiano di filologia = GiornItFil Giornale italiano di filologia = G Ital Filol Giornale italiano di filologia: rivista trimestrale di cultura = GIF Giornale italiano di medicina del lavoro ed ergonomia = G Ital Med Lav Ergon Giornale Italiano di Medicina del Lavoro ed Ergonomia = G. Ital. Med. Lav. Ergon. Giornale italiano di medicina del lavoro = G Ital Med Lav Giornale Italiano di Medicina del Lavoro = G. Ital. Med. Lav. Giornale italiano di nefrologia : organo ufficiale della Societa italiana di nefrologia = G Ital Nefrol Giornale italiano di oftalmologia = G Ital Oftalmol Giornale Italiano di Oftalmologia = G. Ital. Oftalmol. Giornale italiano di oncologia = G Ital Oncol Giornale Italiano di Oncologia = G. Ital. Oncol. Giornale italiano di patologia e di scienze affini = G Ital Patol Giornale Storico Della Letteratura Italiana = Giorn Storico Lett Giornale Storico Della Letteratura Italiana = Giorn. Storico Lett. Giornale storico della Lunigiana e del territorio lucense = GiornStorLun Giornale veneto di scienze mediche = G Veneto Sci Med Giornale Veneto di Scienze Mediche = G. Veneto Sci. Med. Giovanni Pico Della Mirandola = Ctr Int Cult St Pich Giovanni Pico Della Mirandola = Ctr. Int. Cult. St. Pich. GIRE. Grupo de Informacion en Reproduccion = GIRE Gis and Remote Sensing in Hydrology, Water Resources and Environment = Iahs-aish P Gis and Remote Sensing in Hydrology, Water Resources and Environment = Iahs-aish. P. Gis and Spatial Analysis for The Social Sciences: Coding, Mapping, and Modeling = Contemp Sociol Persp Gis and Spatial Analysis for The Social Sciences: Coding, Mapping, and Modeling = Contemp. Sociol. Persp. Giscience & Remote Sensing = Gisci Remote Sens Giscience & Remote Sensing = Gisci. Remote Sens. Gisdata Series = Gisdata Ser Gisdata Series = Gisdata Ser. Gis Diffusion = Gisdata Ser Gis Diffusion = Gisdata. Ser. Gis for Emergency Preparedness and Health Risk Reduction = Nato Sci S Ss Iv Ear Gis for Emergency Preparedness and Health Risk Reduction = Nato. Sci. S. Ss. Iv. Ear. Gis for Health and The Environment: Development in The Asia-pacific Region = Lec Not Geo Carto Gis for Health and The Environment: Development in The Asia-pacific Region = Lec. Not. Geo. Carto. Gis in Geology and Earth Sciences = Aip Conf Proc Gis in Geology and Earth Sciences = Aip. Conf. Proc. GIT, Fachzeitschrift für das Laboratorium = GIT, Fachz. Lab. GIT Labor-Fachzeitschrift = GIT Labor Fachz. Give Peace A Chance = Syr S Peace Give Peace A Chance = Syr. S. Peace Giving A Lecture: From Presenting to Teaching, Second Edition = Key Guid Eff Teach H Giving A Lecture: From Presenting to Teaching, Second Edition = Key. Guid. Eff. Teach. H. Giving Death A Helping Hand = Int Libr Eth Law New Giving Death A Helping Hand = Int. Libr. Eth. Law. New. Gkss School of Environmental Research = Gkss Sch Environm Gkss School of Environmental Research = Gkss Sch. Environm. Glacial Isostasy, Sea-level and Mantle Rheology = Nato Adv Sci I C-mat Glacial Isostasy, Sea-level and Mantle Rheology = Nato. Adv. Sci. I. C-mat. Glacial Processes Past and Present = Geol S Am S Glacial Processes Past and Present = Geol. S. Am. S. Glacial Processes Past and Present = Geol Soc Am Spec Pap Glacial Processes Past and Present = Geol. Soc. Am. Spec. Pap. Glacial Sedimentary Processes and Products = Spec Publ Int Ass Se Glacial Sedimentary Processes and Products = Spec. Publ. Int. Ass. Se. Glacier Fluctuations and Climatic Change = Glac Quat G Glacier Fluctuations and Climatic Change = Glac. Quat. G. Glacier-influenced Sedimentation On High-latitude Continental Margins = Geol Soc Spec Publ Glacier-influenced Sedimentation On High-latitude Continental Margins = Geol. Soc. Spec. Publ. Glaciers-ocean-atmosphere Interactions = Iahs-aish P Glaciers-ocean-atmosphere Interactions = Iahs-aish. P. Glacimarine Environments : Processes and Sediments = Geol Soc Spec Publ Glacimarine Environments : Processes and Sediments = Geol. Soc. Spec. Publ. Glaciology and Quaternary Geology = Glac Quat G Glaciology and Quaternary Geology = Glac. Quat. G. Glaciotectonics and Mapping Glacial Deposits = Can Plain P Glaciotectonics and Mapping Glacial Deposits = Can. Plain. P. Gladius. Estudios sobre armas antiguas, armamento, arte militar y vida cultural en Oriente y Occidente = Gladius Gladius = Gladius Glas Cdxi: Classe Des Sciences Techniques, No 36 = Glas Glas = Glas Glasgow Archaeological Journal = GlasAJ Glasgow dental journal = Glasg Dent J Glasgow Dental Journal = Glasg. Dent. J. Glasgow Mathematical Journal = Glasgow Math. J. Glasgow Mathematical Journal = Glasgow Math J Glasgow Mathematical Journal = Glasgow Math. J. Glasgow medical journal = Glasgow Med J Glasnik. Belgrad. Higijenski institut NR Srbije = Glas Belgrad Hig Inst NR Srb Glasnik Matematicki = Glas Mat Glasnik Matematicki = Glas. Mat. Glasnik Matematički = Glas. Mat. Ser. III Glasnik. Republicki zavod za zdravstvenu zastitu SR Srbije = Glas Zavodzdrav Glasnik (Srpska akademija nauka) = Glasnik Glasnik, Srpska Akademija Nauka i Umetnosti, Odeljenje Medicinskih Nauka = Glas. Srp. Akad. Nauka [Med.] GlasnikSrpskoarheolokodrutvo = GlasBeograd Glasnik Zemaljskog muzeja Bosne i Hercegovie u Sarajevu. Arheologija = GlasSarajevo Glasnost in Context = Berg Eur St Glasnost in Context = Berg. Eur. St. Glasra = Glasra Glass and Ceramics = Glass Ceram. Glass and Ceramics = Glass Ceram+ Glass and Ceramics = Glass Ceram+.+ Glasses and Grains = Prog Math Phys Glasses and Grains = Prog. Math. Phys. Glasses for Optoelectronics Ii = P Soc Photo-opt Ins Glasses for Optoelectronics Ii = P. Soc. Photo-opt. Ins. Glasses for Optoelectronics = P Soc Photo-opt Ins Glasses for Optoelectronics = P. Soc. Photo-opt. Ins. Glass in Building: Principles Applications Examples = Detail Pract Glass in Building: Principles Applications Examples = Detail. Pract. Glass Industry = Glass Ind Glass Industry = Glass Ind. Glass Physics and Chemistry = Glass Phys Chem+ Glass Physics and Chemistry = Glass Phys. Chem Glass Physics and Chemistry = Glass Phys. Chem. Glass Physics and Chemistry = Glass Phys. Chem+.+ GlassResearcher = GlassResearcher Glass Research = Glass Res. Glas. Srpska akademija nauka i umetnosti. Odeljenje medicinskih nauka = Glas Srp Akad Nauka [Med] Glas. Srpska Akademija Nauka I Umetnosti, Odeljenje Medicinskih Nauka=Glas Srp Akad Nauka [Med];; Glass Science and Its Applications = Solid State Phenomen Glass Science and Its Applications = Solid. State. Phenomen. Glass Science and Technology = Glass Sci Technol Glass Science and Technology = Glass Sci. Technol. Glass Science and Technology-glastechnische Berichte = Glass Sci Technol Glass Science and Technology-glastechnische Berichte = Glass Sci. Technol. Glass Science and Technology-glastechnische Berichte = Glass Sci Technolog Glass Science and Technology-glastechnische Berichte = Glass Sci. Technolog. Glass Science and Technology (Offenbach, Germany) = Glass Sci. Technol. (Offenbach, Ger.) Glass Technology: European Journal of Glass Science and Technology, Part A = Glass Technol.: Eur. J. Glass Sci. Technol., Part A Glass Technology-european Journal of Glass Science and Technology Part A = Glass Technol-part A Glass Technology-european Journal of Glass Science and Technology Part A = Glass Technol-part. A Glass Technology = Glass Technol Glass Technology = Glass Technol. Glass - The Challenge for The 21st Century = Adv Mater Res-switz Glass - The Challenge for The 21st Century = Adv. Mater. Res-switz. Glass - The Challenge for The 21st Century = Adv Mat Res Glass - The Challenge for The 21st Century = Adv. Mat. Res. Glassy, Amorphous and Nan-crystalline Materials: Thermal Physics, Analysis, Structure and Properties = Hot Top Therm Anal Glassy, Amorphous and Nan-crystalline Materials: Thermal Physics, Analysis, Structure and Properties = Hot. Top. Therm. Anal. Glassy Metals Iii = Top Appl Phys Glassy Metals Iii = Top. Appl. Phys. Glastechnische Berichte-glass Science and Technology = Glastech Ber-glass Glastechnische Berichte-glass Science and Technology = Glastech. Ber-glass. Glauben, Wissen Und Sagen = Stud Deut Lit Glauben, Wissen Und Sagen = Stud. Deut. Lit. Glaucoma: An Open Window to Neurodegeneration and Neuroprotection = Prog Brain Res Glaucoma: An Open Window to Neurodegeneration and Neuroprotection = Prog. Brain. Res. Glaucoma : Diagnosis and Therapy = T N Orl Aca Glaucoma : Diagnosis and Therapy = T. N. Orl. Aca. Gl Conference Series = Gl Conference Ser Gl Conference Series = Gl Conference Ser. Gleanings in Bee Culture = Glean Bee Cult Gleanings in Bee Culture = Glean. Bee Cult. Glendale law review = Glendale Law Rev Glia=Glia;; Glia = Glia Glial Interfaces in The Nervous System = Biomed Health Res Glial Interfaces in The Nervous System = Biomed. Health. Res. Glial Interfaces in The Nervous System = Biom Hlth R Glial Interfaces in The Nervous System = Biom. Hlth. R. Glial-neuronal Interaction = Ann Ny Acad Sci Glial-neuronal Interaction = Ann. Ny. Acad. Sci. G. Liddell – R. Scott – H. S. Jones, A Greek-English Lexikon \textsuperscript{9}(1996) = Liddell-­Scott-Jones Glimpse At Hilbert Space Operators = Oper Theory Adv Appl Glimpse At Hilbert Space Operators = Oper. Theory. Adv. Appl. Glimpse (Dhaka, Bangladesh) = Glimpse Gliogenesis : Historical Perspectives, 1839-1985 = Adv Anat Embryol Cel Gliogenesis : Historical Perspectives, 1839-1985 = Adv. Anat. Embryol. Cel. Global access to STD diagnostics = Glob Access STD Diagn Global Activism = Rethink Glob Global Activism = Rethink. Glob. Global AIDSnews : the newsletter of the World Health Organization Global Programme on AIDS = Glob AIDSnews Global Analysis and Applied Mathematics = Aip Conf Proc Global Analysis and Applied Mathematics = Aip. Conf. Proc. Global Analysis of Minimal Surfaces = Grundlehr Math Wiss Global Analysis of Minimal Surfaces = Grundlehr. Math. Wiss. Global and Local Football: Politics and Europeanization On The Fringes of The Eu = Routl Crit Stud Spor Global and Local Football: Politics and Europeanization On The Fringes of The Eu = Routl. Crit. Stud. Spor. Global and Multinational Advertising = Advert Cons Global and Multinational Advertising = Advert. Cons. Global and Organizational Discourse About Information Technology = Int Fed Info Proc Global and Organizational Discourse About Information Technology = Int. Fed. Info. Proc. Global and Planetary Change = Global Planet Change Global and Planetary Change = Global Planet. Change Global and planetary change = Glob Planet Change Global and Regional Geodynamics = Iag Symp Global and Regional Geodynamics = Iag. Symp. Global and Regional in China's Nation-formation = Asias Transform Global and Regional in China's Nation-formation = Asias. Transform. Global and Regional Mercury Cycles: Sources, Fluxes and Mass Balances = Nato Asi 2 Global and Regional Mercury Cycles: Sources, Fluxes and Mass Balances = Nato. Asi. 2. Global and Stochastic Analysis With Applications to Mathematical Physics = Theor Math Phys Ser Global and Stochastic Analysis With Applications to Mathematical Physics = Theor. Math. Phys. Ser. Global Atmospheric-biospheric Chemistry = Envir Sci R Global Atmospheric-biospheric Chemistry = Envir. Sci. R. Global Atmospheric Change and Its Impact On Regional Air Quality = Nato Sci S Ss Iv Ear Global Atmospheric Change and Its Impact On Regional Air Quality = Nato. Sci. S. Ss. Iv. Ear. Global Attractors of Set-valued Dynamical and Control Systems = Math Res Dev Global Attractors of Set-valued Dynamical and Control Systems = Math. Res. Dev. Global Banking Regulation and Supervision: What Are The Issues and What Are The Practices = Financ I Serv Ser Global Banking Regulation and Supervision: What Are The Issues and What Are The Practices = Financ. I. Serv. Ser. Global Beef Trade = Agr Issues Policies Global Beef Trade = Agr. Issues. Policies. Global Big Business and The Chinese Brewing Industry = Routl Stud Chin Econ Global Big Business and The Chinese Brewing Industry = Routl. Stud. Chin. Econ. Global Biogeochemical Cycles = Global Biogeochem Cy Global Biogeochemical Cycles = Global Biogeochem. Cy. Global biogeochemical cycles = Global Biogeochem Cycles Global Biogeochemical Cycles = Global Biogeochem. Cycles Global Biogeochemical Cycles = Glob. Biogeochem. Cycles Global Business and Economics Review=Global Bus. Econ. Rev. Global Business Workforce Restructuring = Int Bar Ass Global Business Workforce Restructuring = Int. Bar. Ass. Global Carbon Cycle = Princ Primer Clim Global Carbon Cycle = Princ. Primer. Clim. Global Careers = Rout Glob Hum Resour Global Careers = Rout. Glob. Hum. Resour. Global Catastrophes in Earth History : An Interdisciplinary Conference On Impacts, Volcanism, and Mass Mortality = Geol S Am S Global Catastrophes in Earth History : An Interdisciplinary Conference On Impacts, Volcanism, and Mass Mortality = Geol. S. Am. S. Global center news / Center for Women's Global Leadership = Glob Cent News Global Challenges and Africa = Whitehall Pap Global Challenges and Africa = Whitehall. Pap. Global Challenges and Local Responses: The East Asian Experience = Routl Stud Mod World Global Challenges and Local Responses: The East Asian Experience = Routl. Stud. Mod. World. Global Challenge: Sustainable Food Production = Bcpc Symp Ser Global Challenge: Sustainable Food Production = Bcpc. Symp. Ser. Global Change and Baltic Coastal Zones = Coast Res Libr Global Change and Baltic Coastal Zones = Coast. Res. Libr. Global Change and Forestry: Economic and Policy Impacts and Responses = Clim Chang Cause Eff Global Change and Forestry: Economic and Policy Impacts and Responses = Clim. Chang. Cause. Eff. Global Change and Integrated Coastal Management : The Asia-pacific Region = Coast Syst Cont Marg Global Change and Integrated Coastal Management : The Asia-pacific Region = Coast. Syst. Cont. Marg. Global Change and Protected Areas = Adv Glob Change Res Global Change and Protected Areas = Adv. Glob. Change Res. Global Change and Relevant Space Observations = Adv Space Res-series Global Change and Relevant Space Observations = Adv. Space Res-series. Global Change and Space Observations = Adv Space Res Global Change and Space Observations = Adv. Space Res. Global Change Biology Bioenergy = Gcb Bioenergy Global Change Biology Bioenergy = Gcb. Bioenergy Global Change Biology = Global Change Biol Global Change Biology = Global Change Biol. Global Change Biology = Glob. Chang. Biol. Global Change Biology = Glob Change Biol Global Change Biology = Glob. Change Biol. Global Change: Challenges for Soil Management = Adv Geoecol Global Change: Challenges for Soil Management = Adv. Geoecol. Global Change, Civil Society and The Northern Ireland Peace Process: Implementing The Political Settlement = New Secur Chall Global Change, Civil Society and The Northern Ireland Peace Process: Implementing The Political Settlement = New. Secur. Chall. Global Change : Igbp Report = Igbp Report Global Change : Impacts On Agriculture and Forestry = B Roy S Nz Global Change : Impacts On Agriculture and Forestry = B. Roy. S. Nz. Global Change: Impacts On Water and Food Security = Water Resour Dev Man Global Change: Impacts On Water and Food Security = Water Resour. Dev. Man. Global Change The Igbp Series = Glob Change Igbp Ser Global Change The Igbp Series = Glob. Change Igbp Ser. Global Change - The Igbp Series = Glo Ch Igbp Global Change - The Igbp Series = Glo. Ch. Igbp Global child health news & review = Glob Child Health New Rev Global Climate and Ecosystem Change = Nato Adv Sci I B-phy Global Climate and Ecosystem Change = Nato. Adv. Sci. I. B-phy. Global Climate Change and Cold Regions Ecosystems = Adv Soil S Global Climate Change and Cold Regions Ecosystems = Adv. Soil. S. Global Climate Change and Cold Regions Ecosystems = Adv Soil Sci-ser Global Climate Change and Cold Regions Ecosystems = Adv. Soil. Sci-ser. Global Climate Change and Tropical Ecosystems = Adv Soil S Global Climate Change and Tropical Ecosystems = Adv. Soil. S. Global Climate Change and Tropical Ecosystems = Adv Soil Sci-ser Global Climate Change and Tropical Ecosystems = Adv. Soil. Sci-ser. Global Climate Change = Envir Sci R Global Climate Change = Envir. Sci. R. Global Climate Change - The Technology Challenge = Adv Glob Change Res Global Climate Change - The Technology Challenge = Adv. Glob. Change Res. Global Climatic Change = Br Crop Pr Global Climatic Change = Br. Crop. Pr. Global Communication and Transnational Public Spheres = Palgr Mac Ser Int Po Global Communication and Transnational Public Spheres = Palgr. Mac. Ser. Int. Po. Global Compensation: Foundations and Perspectives = Rout Glob Hum Resour Global Compensation: Foundations and Perspectives = Rout. Glob. Hum. Resour. Global Competition in Transportation Markets: Analysis and Policy Making = Res Trans E Global Competition in Transportation Markets: Analysis and Policy Making = Res. Trans. E. Global Computing = Lect Notes Comput Sc Global Computing = Lect. Notes. Comput. Sc. Global Concerns for Forest Resource Utilization = For Sci Global Concerns for Forest Resource Utilization = For. Sci. Global Conflict and Security Since 1945 = Glob Confl Secur Global Conflict and Security Since 1945 = Glob. Confl. Secur. Global Conflict Resolution Through Positioning Analysis = Peace Psychol Book S Global Conflict Resolution Through Positioning Analysis = Peace. Psychol. Book. S. Global Constructions of Multicultural Education: Theories and Realities = Sociocult Pol His St Global Constructions of Multicultural Education: Theories and Realities = Sociocult. Pol. His. St. Global Continental Changes: The Context of Palaeohydrology = Geol Soc Sp Global Continental Changes: The Context of Palaeohydrology = Geol. Soc. Sp. Global Cooperation in Engineering Education Innovative Technolgies Studies and Professional Development = Glob Coop Eng Ed Global Cooperation in Engineering Education Innovative Technolgies Studies and Professional Development = Glob. Coop. Eng. Ed. Global Cooperation in Engineering Education Innovative Technologies Studies and Professional Development = Glob Coop Eng Ed Global Cooperation in Engineering Education Innovative Technologies Studies and Professional Development = Glob. Coop. Eng. Ed. Global Cooperation in Engineering Education: Innovative Technologies, Studies and Professional Development - International Conference Proceedings = Glob Coop Eng Ed Global Cooperation in Engineering Education: Innovative Technologies, Studies and Professional Development - International Conference Proceedings = Glob. Coop. Eng. Ed. Global Cooperation in Engineering Education: Innovative Technologies, Studies and Professional Development - The Third International Conference Proceedings = Glob Coop Eng Ed Global Cooperation in Engineering Education: Innovative Technologies, Studies and Professional Development - The Third International Conference Proceedings = Glob. Coop. Eng. Ed. Global Culture and Sport = Glob Cult Sport Global Culture and Sport = Glob. Cult. Sport Global Data Management = Emerg Commun-stud Ne Global Data Management = Emerg. Commun-stud. Ne. Global Democracy and Its Difficulties = Routl Challeng Glob Global Democracy and Its Difficulties = Routl. Challeng. Glob. Global Democracy: for and Against: Ethical Theory, Institutional Design and Social Struggles = Democratiz Stud Global Democracy: for and Against: Ethical Theory, Institutional Design and Social Struggles = Democratiz. Stud. Global Development and Poverty Reduction: The Challenge for International Institutions = Int I Glob Gov Global Development and Poverty Reduction: The Challenge for International Institutions = Int. I. Glob. Gov. Global Dialogue Expo 2000 = Global Dial Expo Global Dialogue Expo 2000 = Global Dial. Expo Global Diaspora = Glob Diaspora Global Diaspora = Glob. Diaspora Global Diasporas: An Introduction, Second Edition = Glob Diaspora Global Diasporas: An Introduction, Second Edition = Glob. Diaspora. Global Differential Geometry and Global Analysis = Lect Notes Math Global Differential Geometry and Global Analysis = Lect. Notes. Math. Global Ecology and Biogeography = Global Ecol Biogeogr Global Ecology and Biogeography = Global Ecol. Biogeogr. Global Ecology and Biogeography Letters = Global Ecol Biogeogr Global Ecology and Biogeography Letters = Global Ecol. Biogeogr. Global Ecology and Biogeography Letters = Glob. Ecol. Biogeogr. Lett. Global Economic Review=Global Econ. Rev. Global Economic Review = Global Econ Rev Global Economic Review = Global Econ. Rev. Global Economic Studies = Glob Econ Stud Global Economic Studies = Glob. Econ. Stud. Global Economy Contested: Power and Conflict Across The International Division of Labour = Rethink Glob Global Economy Contested: Power and Conflict Across The International Division of Labour = Rethink. Glob. Global Economy Quarterly=Global Economy Quart. Global E-governance: Advancing E-governance Through Innovation and Leadership = Glob E-gov Ser Global E-governance: Advancing E-governance Through Innovation and Leadership = Glob. E-gov. Ser. Global E-governance Series = Glob E-gov Ser Global E-governance Series = Glob. E-gov. Ser. Global Empowerment of Women = Routl Res Gend Soc Global Empowerment of Women = Routl. Res. Gend. Soc. Global Energy Strategies = Envir Sci R Global Energy Strategies = Envir. Sci. R. Global Engineering and Manufacturing in Enterprise Networks: Globemen = Vtt Symp Global Engineering and Manufacturing in Enterprise Networks: Globemen = Vtt. Symp. Global Engineering, Manufacturing and Enterprise Networks = Int Fed Info Proc Global Engineering, Manufacturing and Enterprise Networks = Int. Fed. Info. Proc. Global Entertainment Media: Content, Audiences, Issues = Lea Commun Ser Global Entertainment Media: Content, Audiences, Issues = Lea. Commun. Ser. Global Envionmental Policies: Impact, Management and Effects = Environ Sci Eng Tech Global Envionmental Policies: Impact, Management and Effects = Environ. Sci. Eng. Tech. Global Environmental Accord- Strategies for Sustainability and Institutional Innovation = Glob Environ Accord Global Environmental Accord- Strategies for Sustainability and Institutional Innovation = Glob. Environ. Accord. Global Environmental Change = Global Environ. Change Global Environmental Change = Glob. Environ. Chang. Global Environmental Change-human and Policy Dimensions = Global Environ Chang Global Environmental Change-human and Policy Dimensions = Global Environ. Chang. Global environmental change : human and policy dimensions = Glob Environ Change Global Environmental Change Science: Education and Training = Nato Asi Ser Ser I Global Environmental Change Science: Education and Training = Nato. Asi. Ser. Ser. I. Global Environmental Change : The Role of Space in Understanding Earth = Sci Tech Global Environmental Change : The Role of Space in Understanding Earth = Sci. Tech. Global Environmental Politics = Global Environ Polit Global Environmental Politics = Global Environ. Polit. Global Environmental Politics=Global Environ. Politics Global Environmental Studies = Glob Environ Stud Global Environmental Studies = Glob. Environ. Stud. Global E-security, Proceedings = Comm Com Inf Sc Global E-security, Proceedings = Comm. Com. Inf. Sc. Global Ethics: Anarchy, Freedom and International Relations = Crit Iss Glob Polit Global Ethics: Anarchy, Freedom and International Relations = Crit. Iss. Glob. Polit. Global Ethics = Glob Ethics Global Ethics = Glob. Ethics Global Finance and Social Europe = New Dir Mod Econ Global Finance and Social Europe = New. Dir. Mod. Econ. Global Finance Journal=Global Finance J. Global Food and Agricultural Institutions = Glob Inst Global Food and Agricultural Institutions = Glob. Inst. Global Food Crisis: Governance Challenges and Opportunities = Stud Int Gov Global Food Crisis: Governance Challenges and Opportunities = Stud. Int. Gov. Global futures digest = Global Futures Dig Global Gambling = Routl Adv Criminol Global Gambling = Routl. Adv. Criminol. Global Geometry of Turbulence = Nato Adv Sci I B-phy Global Geometry of Turbulence = Nato. Adv. Sci. I. B-phy. Global Governance and Diplomacy: Worlds Apart = Stud Dipl Int Relat Global Governance and Diplomacy: Worlds Apart = Stud. Dipl. Int. Relat. Global Governance and Japan: The Institutional Architecture = Sheff Cent Jpn Stud Global Governance and Japan: The Institutional Architecture = Sheff. Cent. Jpn. Stud. Global Governance = Global Gov Global Governance = Global Gov. Global Governance = Glob Gov Global Governance = Glob. Gov. Global Governance in Accounting: Rebalancing Public Power and Private Commitment = Transform State Global Governance in Accounting: Rebalancing Public Power and Private Commitment = Transform. State. Global Governance in The Twenty-first Century = Glob Iss Ser Global Governance in The Twenty-first Century = Glob. Iss. Ser. Global Health Care Chain: From The Pacific to The World = Routl Res Popul Migr Global Health Care Chain: From The Pacific to The World = Routl. Res. Popul. Migr. Global Health Governance - Crisis, Institutions and Political Economy = Int Polit Econ Ser Global Health Governance - Crisis, Institutions and Political Economy = Int. Polit. Econ. Ser. Global Healthgrid: E-science Meets Biomedical Informatics = St Heal T Global Healthgrid: E-science Meets Biomedical Informatics = St. Heal. T. Global History of Accounting, Financial Reporting and Public Policy: Europe = Stud Dev Account Tho Global History of Accounting, Financial Reporting and Public Policy: Europe = Stud. Dev. Account. Tho. Global Hrm = Glob Hrm Global Hrm = Glob. Hrm Global Ibsen: Performing Multiple Modernities = Routledge Adv Theatr Global Ibsen: Performing Multiple Modernities = Routledge. Adv. Theatr. Global Impact of The Wesleyan Traditions and Their Related Movements = Pie Ews Studies Global Impact of The Wesleyan Traditions and Their Related Movements = Pie. Ews. Studies. Global impacts : research for development review = Glob Impacts Global Industrial Relations = Rout Glob Hum Resour Global Industrial Relations = Rout. Glob. Hum. Resour. Global Information Inequalities: Bridging The Information Gap = Chandos Inf Prof Ser Global Information Inequalities: Bridging The Information Gap = Chandos. Inf. Prof. Ser. Global Information Infrastructure Commission Report = Glob Inform Infrastr Global Information Infrastructure Commission Report = Glob. Inform. Infrastr. Global Initiatives to Secure Cyberspace: An Emerging Landscape = Adv Inform Secur Global Initiatives to Secure Cyberspace: An Emerging Landscape = Adv. Inform. Secur. Global Instability = Social Indic Res Global Instability = Social. Indic. Res. Global Institutions and The Hiv/aids Epidemic = Glob Inst Global Institutions and The Hiv/aids Epidemic = Glob. Inst. Global Institutions = Glob Inst Global Institutions = Glob. Inst. Global Ireland: Same Difference = Glob Reg Global Ireland: Same Difference = Glob. Reg. Globalisation and Citizenship: The Transnational Challenge = Routl Challeng Glob Globalisation and Citizenship: The Transnational Challenge = Routl. Challeng. Glob. Globalisation and Japanese Organisational Culture = Jpn Anthropol Worksh Globalisation and Japanese Organisational Culture = Jpn. Anthropol. Worksh. Globalisation and The Asia-pacific = Warw St Global Globalisation and The Asia-pacific = Warw. St. Global. Globalisation and The Future of Terrorism = Contemp Secur Stud Globalisation and The Future of Terrorism = Contemp. Secur. Stud. Globalisation and The Labour Market = Routl Stud Mod World Globalisation and The Labour Market = Routl. Stud. Mod. World. Globalisation and The Middle Classes in India: The Social and Cultural Impact of Neoliberal Reforms = Routl Cont S Asia Se Globalisation and The Middle Classes in India: The Social and Cultural Impact of Neoliberal Reforms = Routl. Cont. S. Asia. Se. Globalisation and Work in Asia = Chandos Asian Stud Globalisation and Work in Asia = Chandos. Asian. Stud. Globalisation Comparative Education and Policy Research = Glob Comp Educ Polic Globalisation Comparative Education and Policy Research = Glob. Comp. Educ. Polic. Globalisation, Employment and Mobility: The South Asian Experience = Ide-jetro Ser Globalisation, Employment and Mobility: The South Asian Experience = Ide-jetro. Ser. Globalisation, Ideology and Education Policy Reforms = Glob Comp Educ Polic Globalisation, Ideology and Education Policy Reforms = Glob. Comp. Educ. Polic. Globalisation, Markets and Healthcare Policy: Redrawing The Patient As Consumer = Crit Stud Health Soc Globalisation, Markets and Healthcare Policy: Redrawing The Patient As Consumer = Crit. Stud. Health. Soc. Globalisation of Executives and Economies: Lessons From Thailand = Chandos Asian Stud Globalisation of Executives and Economies: Lessons From Thailand = Chandos. Asian. Stud. Globalisation, Public Opinion and The State: Western Europe and East and Southeast Asia = Routl Adv Int Relat Globalisation, Public Opinion and The State: Western Europe and East and Southeast Asia = Routl. Adv. Int. Relat. Globalisation, State and Labour = Routl Stud Employ Wo Globalisation, State and Labour = Routl. Stud. Employ. Wo. Globalisierung Sud = Leviathan Sonderh Globalisierung Sud = Leviathan. Sonderh. Globalising Democracy: Party Politics in Emerging Democracies = Routl Warw Stud Glob Globalising Democracy: Party Politics in Emerging Democracies = Routl. Warw. Stud. Glob. Globalising Democracy: Party Politics in Emerging Democracies = Warw St Global Globalising Democracy: Party Politics in Emerging Democracies = Warw. St. Global. Globalism and The Obsolescence of The State = S Soc Polit Globalism and The Obsolescence of The State = S. Soc. Polit. Global Issues in Water Policy = Glob Iss Water Pol Global Issues in Water Policy = Glob. Iss. Water Pol. Global Issues Series = Global Issues Global Issues Series = Glob Iss Ser Global Issues Series = Glob. Iss. Ser. Global issues (Washington, D.C.) = Glob Issues Globality, Democracy and Civil Society = Democratiz Stud Globality, Democracy and Civil Society = Democratiz. Stud. Globalization, Adult Education and Training = Glob Persp Adult Ed Globalization, Adult Education and Training = Glob. Persp. Adult Ed. Globalization and Community Series = Glob Community Ser Globalization and Community Series = Glob. Community Ser. Globalization and Conflict = Contemp Secur Stud Globalization and Conflict = Contemp. Secur. Stud. Globalization and Contestation: The New Great Counter-movement = Rethink Glob Globalization and Contestation: The New Great Counter-movement = Rethink. Glob. Globalization and Defence in The Asia-pacific = Contemp Secur Stud Globalization and Defence in The Asia-pacific = Contemp. Secur. Stud. Globalization and Development: Challenges and Prospects for Belize = Speareports Globalization and Development: Challenges and Prospects for Belize = Speareports. Globalization and Emerging Issues in Trade Theory and Policy = Front Econ Global Globalization and Emerging Issues in Trade Theory and Policy = Front. Econ. Global. Globalization and Entrepreneurship: Policy and Strategy Perspectives = Mcgill Intl Entrepre Globalization and Entrepreneurship: Policy and Strategy Perspectives = Mcgill. Intl. Entrepre. Globalization and Everyday Life = New Sociol Globalization and Everyday Life = New. Sociol. Globalization and Geopolitics in The Middle East: Old Games, New Rules = Durh Mod Mid E Islam Globalization and Geopolitics in The Middle East: Old Games, New Rules = Durh. Mod. Mid. E. Islam. Globalization and Global History = Rethink Glob Globalization and Global History = Rethink. Glob. Globalization and Governance = Glob Gov Globalization and Governance = Glob. Gov. Globalization and Health: An Introduction = Glob Iss Ser Globalization and Health: An Introduction = Glob. Iss. Ser. Globalization and health = Global Health Globalization and Health = Int Libr Eth Law New Globalization and Health = Int. Libr. Eth. Law. New. Globalization and International Trade Policies = World Sci Stud Int E Globalization and International Trade Policies = World. Sci. Stud. Int. E. Globalization and Language in The Spanish Speaking World - Macro and Micro Perspectives = Lang Glob Globalization and Language in The Spanish Speaking World - Macro and Micro Perspectives = Lang. Glob. Globalization and Popular Sovereignty: Democracy's Transnational Dilemma = Rethink Glob Globalization and Popular Sovereignty: Democracy's Transnational Dilemma = Rethink. Glob. Globalization and Regional Economic Modeling = Adv Spat Sci Globalization and Regional Economic Modeling = Adv. Spat. Sci. Globalization and Regional Growth in Europe: Past Trends and Future Scenarios = Adv Spat Sci Globalization and Regional Growth in Europe: Past Trends and Future Scenarios = Adv. Spat. Sci. Globalization and Regional Integration = Routl Stud Mod World Globalization and Regional Integration = Routl. Stud. Mod. World. Globalization and Religious Nationalism in India: The Search for Ontological Security = Routl Adv Int Relat Globalization and Religious Nationalism in India: The Search for Ontological Security = Routl. Adv. Int. Relat. Globalization and Self-determination: Is The Nation-state Under Siege? = Routl Stud Mod World Globalization and Self-determination: Is The Nation-state Under Siege? = Routl. Stud. Mod. World. Globalization and Systemic Risk = World Sci Stud Int E Globalization and Systemic Risk = World. Sci. Stud. Int. E. Globalization and The Indian Economy: Roadmap to Convertible Rupee = Routledge Stud Growt Globalization and The Indian Economy: Roadmap to Convertible Rupee = Routledge. Stud. Growt. Globalization and The Myths of Free Trade: History, Theory and Empirical Evidence = Routl Fr Polit Econ Globalization and The Myths of Free Trade: History, Theory and Empirical Evidence = Routl. Fr. Polit. Econ. Globalization and The New Semi-peripheries = Int Polit Econ Ser Globalization and The New Semi-peripheries = Int. Polit. Econ. Ser. Globalization and The Poor in Asia: Can Shared Growth Be Sustained = Stud Dev Econ Policy Globalization and The Poor in Asia: Can Shared Growth Be Sustained = Stud. Dev. Econ. Policy. Globalization and The Southern Economies = Nord Afrikainst Globalization and The Southern Economies = Nord. Afrikainst. Globalization and The State in Central and Eastern Europe = Basees-rout Ser Russ Globalization and The State in Central and Eastern Europe = Basees-rout. Ser. Russ. Globalization and The Study of Education = Yearb Natl Soc Stud Globalization and The Study of Education = Yearb. Natl. Soc. Stud. Globalization and The Time-space Reorganization: Capital Mobility in Agriculture and Food in The Americas = Res Rural Sociol Dev Globalization and The Time-space Reorganization: Capital Mobility in Agriculture and Food in The Americas = Res. Rural. Sociol. Dev. Globalization and Transformations of Local Socioeconomic Practices = Routl Adv Sociol Globalization and Transformations of Local Socioeconomic Practices = Routl. Adv. Sociol. Globalization and Urban Development = Adv Spat Sci Globalization and Urban Development = Adv. Spat. Sci. Globalization and Welfare = Glob Welf Globalization and Welfare = Glob. Welf. Globalization and Wmd Proliferation = Rout Glob Secur Stud Globalization and Wmd Proliferation = Rout. Glob. Secur. Stud. Globalization As Evolutionary Process: Modeling Global Change = Rethink Glob Globalization As Evolutionary Process: Modeling Global Change = Rethink. Glob. Globalization As Evolutionary Process: Modeling Global Change = Rethink Global Globalization As Evolutionary Process: Modeling Global Change = Rethink. Global Globalization Between The Cold War and Neo-imperialism = Curr Perspect Soc Th Globalization Between The Cold War and Neo-imperialism = Curr. Perspect. Soc. Th. Globalization, Culture and Society in Laos = Asias Transform Globalization, Culture and Society in Laos = Asias. Transform. Globalization, Development and The State: The Performance of India and Brazil Since 1990 = Int Polit Econ Ser Globalization, Development and The State: The Performance of India and Brazil Since 1990 = Int. Polit. Econ. Ser. Globalization, Economic Development and Inequality: An Alternative Perspective = New Horiz Inst Evol Globalization, Economic Development and Inequality: An Alternative Perspective = New. Horiz. Inst. Evol. Globalization, Education and Social Justice = Glob Comp Educ Polic Globalization, Education and Social Justice = Glob. Comp. Educ. Polic. Globalization in Historical Perspective = Nber Conf R Globalization in Historical Perspective = Nber. Conf. R. Globalization in World History = Themes World Hist Globalization in World History = Themes. World Hist. Globalization, Lifelong Learning and The Learning Society: Sociological Perspectives = Lifelong Learn Learn Globalization, Lifelong Learning and The Learning Society: Sociological Perspectives = Lifelong Learn. Learn. Globalization of Education: An Introduction = Sociocult Polit Hist Globalization of Education: An Introduction = Sociocult. Polit. Hist. Globalization of Labour Markets = Eu Ldc Trad Cap Rel Globalization of Labour Markets = Eu. Ldc. Trad. Cap. Rel. Globalization of Mission Series = Global Mission Ser Globalization of Mission Series = Global. Mission Ser. Globalization of Mobile and Wireless Communications: Today and in 2020 = Signals Commun Techn Globalization of Mobile and Wireless Communications: Today and in 2020 = Signals. Commun. Techn. Globalization of Political Violence: Globalization's Shadow = Warw St Global Globalization of Political Violence: Globalization's Shadow = Warw. St. Global. Globalization of Science and Technology: A Way for C.i.s. Countries to New Markets = Nato Asi S 4 Sci Tec Globalization of Science and Technology: A Way for C.i.s. Countries to New Markets = Nato. Asi. S. 4. Sci. Tec. Globalization of Security: State Power, Security Provision and Legitimacy = New Secur Chall Globalization of Security: State Power, Security Provision and Legitimacy = New. Secur. Chall. Globalization of Strategy Research = Adv Strateg Manage Globalization of Strategy Research = Adv. Strateg. Manage. Globalization of The Economy and The Worker = Ann Cira P Globalization of The Economy and The Worker = Ann. Cira. P. Globalization: Perspectives From Central and Eastern Europe = Contemp Stud Econ Fi Globalization: Perspectives From Central and Eastern Europe = Contemp. Stud. Econ. Fi. Globalization, Prostitution and Sex Trafficking = Routl Adv Int Relat Globalization, Prostitution and Sex Trafficking = Routl. Adv. Int. Relat. Globalization, Regionalization and Business: Conflict, Convergence and Influence = Int Polit Econ Ser Globalization, Regionalization and Business: Conflict, Convergence and Influence = Int. Polit. Econ. Ser. Globalizations = Globalizations Globalizations of Organized Labour: 1945-2004 = Int Polit Econ Ser Globalizations of Organized Labour: 1945-2004 = Int. Polit. Econ. Ser. Globalization, The Multinational Firm, and Emerging Economies = Adv Int Mar Globalization, The Multinational Firm, and Emerging Economies = Adv. Int. Mar. Globalization, Uncertainty and Late Careers in Society = Routl Adv Sociol Globalization, Uncertainty and Late Careers in Society = Routl. Adv. Sociol. Globalization, Violence and The Visual Culture of Cities = Questioning Cities Globalization, Violence and The Visual Culture of Cities = Questioning. Cities Globalized Freight Transport: Intermodality, E-commerce, Logistics and Sustainability = Transp Econ Manag Po Globalized Freight Transport: Intermodality, E-commerce, Logistics and Sustainability = Transp. Econ. Manag. Po. Globalizing Dissent: Essays On Arundhati Roy = Routl Stud Soc Polit Globalizing Dissent: Essays On Arundhati Roy = Routl. Stud. Soc. Polit. Globalizing Polar Science: Reconsidering The International Polar and Geophysical Years = Palgr Stud Hist Sci Globalizing Polar Science: Reconsidering The International Polar and Geophysical Years = Palgr. Stud. Hist. Sci. Globalizing Regions = Glob Reg Globalizing Regions = Glob. Reg. Globalizing Social Justice: The Role of Non-governmental Organizations in Bringing About Social Change = Int Polit Econ Ser Globalizing Social Justice: The Role of Non-governmental Organizations in Bringing About Social Change = Int. Polit. Econ. Ser. Global Jihadism: Theory and Practice = Cass Ser Polit Viole Global Jihadism: Theory and Practice = Cass. Ser. Polit. Viole. Global Journal of Environmental Sciences = Global J. Environ. Sci. Global Journal of Geological Sciences = Global J. Geol. Sci. Global Journal of Pure and Applied Sciences = Global J. Pure Appl. Sci. Global Justice and Neoliberal Environmental Governance: Ethics, Sustainable Development and International Co-operation = Rout Res Environ Pol Global Justice and Neoliberal Environmental Governance: Ethics, Sustainable Development and International Co-operation = Rout. Res. Environ. Pol. Global Korean Motor Industry: The Hyundai Motor Company's Global Strategy = Routl Adv Korean Stu Global Korean Motor Industry: The Hyundai Motor Company's Global Strategy = Routl. Adv. Korean Stu. Global Learning and Sustainable Development = Teach Cont Theme Global Learning and Sustainable Development = Teach. Cont. Theme. Global Legitimacy Game: Civil Society, Globalization, and Protest = Palg Texts Int Polit Global Legitimacy Game: Civil Society, Globalization, and Protest = Palg. Texts. Int. Polit. Global Library and Information Science: A Textbook for Students and Educators = Ifla Publ Global Library and Information Science: A Textbook for Students and Educators = Ifla. Publ. Global Missiology in The 21st Century: The Iguassu Dialogue = Global Mission Ser Global Missiology in The 21st Century: The Iguassu Dialogue = Global Mission. Ser. Global Model Simulation: A Frontier of Economic Science = Econ Iss Probl Persp Global Model Simulation: A Frontier of Economic Science = Econ. Iss. Probl. Persp. Global Neoliberalism and Education and Its Consequences = Routl Stud Educ Neol Global Neoliberalism and Education and Its Consequences = Routl. Stud. Educ. Neol. Global Neoproterozoic Petroleum Systems: The Emerging Potential in North Africa = Geol Soc Spec Publ Global Neoproterozoic Petroleum Systems: The Emerging Potential in North Africa = Geol. Soc. Spec. Publ. Global Nest Journal = Global Nest J Global Nest Journal = Global Nest J. Global Networks-a Journal of Transnational Affairs = Global Netw Global Networks-a Journal of Transnational Affairs = Global Netw. Global Networks-A Journal Of Transnational Affairs = Glob. Netw. Global Olympics: Historical and Sociological Studies of The Modern Games = Res Sociol Sport Global Olympics: Historical and Sociological Studies of The Modern Games = Res. Sociol. Sport. Global Optimization and Constraint Satisfaction = Lect Notes Comput Sc Global Optimization and Constraint Satisfaction = Lect. Notes. Comput. Sc. Global Organization Development: Managing Unprecedented Change = Cont Trend Organ Dev Global Organization Development: Managing Unprecedented Change = Cont. Trend. Organ. Dev. Global Pathways to Abolishing Physical Punishment: Realizing Childrens Rights = Routl Res Educ Global Pathways to Abolishing Physical Punishment: Realizing Childrens Rights = Routl. Res. Educ. Global Pedagogies: Schooling for The Future = Glob Comp Educ Polic Global Pedagogies: Schooling for The Future = Glob. Comp. Educ. Polic. Global Perspective On Real Estate Cycles = Nyu Sa Ctr Ser F M I Global Perspective On Real Estate Cycles = Nyu. Sa. Ctr. Ser. F. M. I. Global Perspectives On Adult Education and Training = Glob Persp Adult Ed Global Perspectives On Adult Education and Training = Glob. Persp. Adult Ed. Global Perspectives On Design Science Research = Lect Notes Comput Sc Global Perspectives On Design Science Research = Lect. Notes. Comput. Sc. Global Perspectives On Gender Equality: Reversing The Gaze = Routl Unrisd Res Gen Global Perspectives On Gender Equality: Reversing The Gaze = Routl. Unrisd. Res. Gen. Global Perspectives On Rural Childhood and Youth: Young Rural Lives = Routl Stud Hum Geogr Global Perspectives On Rural Childhood and Youth: Young Rural Lives = Routl. Stud. Hum. Geogr. Global Perspectives On The Rule of Law = Law Dev Glob Global Perspectives On The Rule of Law = Law Dev. Glob. Global Politcal Studies = Glob Polit Stud Global Politcal Studies = Glob. Polit. Stud. Global Politcal Studies Series = Glob Pol Stud Ser Global Politcal Studies Series = Glob. Pol. Stud. Ser. Global Political Marketing = Routl Res Polit Comm Global Political Marketing = Routl. Res. Polit. Comm. Global Politics of Defense Reform = Initiat Strateg Stud Global Politics of Defense Reform = Initiat. Strateg. Stud. Global Politics of Human Embryonic Stem Cell Science: Regenerative Medicine in Transition = Health Technol Soc Global Politics of Human Embryonic Stem Cell Science: Regenerative Medicine in Transition = Health. Technol. Soc. Global Positioning System : An Overview = Iag Symp Global Positioning System : An Overview = Iag. Symp. Global Poverty, Ethics and Human Rights = Rethink Glob Global Poverty, Ethics and Human Rights = Rethink. Glob. Global Price Fixing = Stud Ind Organ Global Price Fixing = Stud. Ind. Organ. Global Process Monitoring and Remote Sensing of The Ocean and Sea Ice = P Soc Photo-opt Ins Global Process Monitoring and Remote Sensing of The Ocean and Sea Ice = P. Soc. Photo-opt. Ins. Global Product : Strategy, Product Lifecycle Management and The Billion Customer Question = Decis Eng Global Product : Strategy, Product Lifecycle Management and The Billion Customer Question = Decis. Eng. Global Propagation of Regular Nonlinear Hyperbolic Waves = Prog Nonlinear Diffe Global Propagation of Regular Nonlinear Hyperbolic Waves = Prog. Nonlinear Diffe. Global Pseudo-differential Calculus On Euclidean Spaces = Pseudo Differ Oper Global Pseudo-differential Calculus On Euclidean Spaces = Pseudo. Differ. Oper. Global Public Health = Glob Public Health Global Public Health = Glob. Public Health Global Public Policy: Business and The Countervailing Powers of Civil Society = Ripe Ser Glob Polit Global Public Policy: Business and The Countervailing Powers of Civil Society = Ripe. Ser. Glob. Polit. Global Realities = Glob Realities Global Realities = Glob. Realities Global Research Without Leaving Your Desk: Travelling The World With Your Mouse As Companion = Chandos Inf Prof Ser Global Research Without Leaving Your Desk: Travelling The World With Your Mouse As Companion = Chandos. Inf. Prof. Ser. Global Restructuring and The Power of Labour = Int Polit Econ Ser Global Restructuring and The Power of Labour = Int. Polit. Econ. Ser. Global Restructuring of Agro-food Systems = Food Syst Agrar Ch Global Restructuring of Agro-food Systems = Food. Syst. Agrar. Ch. Global Restructuring, State, Capital and Labour: Contesting Neo-gramscian Perspectives = Int Polit Econ Ser Global Restructuring, State, Capital and Labour: Contesting Neo-gramscian Perspectives = Int. Polit. Econ. Ser. Global Resurgence of Religion and The Transformation of International Relations: The Struggle for The Soul of The Twenty-first Century = Cult Relig Int Relat Global Resurgence of Religion and The Transformation of International Relations: The Struggle for The Soul of The Twenty-first Century = Cult. Relig. Int. Relat. Global Risk Governance: Concept and Practice Using The Irgc Framework = Int Risk Gov Counc B Global Risk Governance: Concept and Practice Using The Irgc Framework = Int. Risk Gov. Counc. B. Global Risk Management: Financial, Operational, and Insurance Strategies = Int Finance Review Global Risk Management: Financial, Operational, and Insurance Strategies = Int. Finance. Review. Global Role of Tropical Rainfall = Stud Geo Op Global Role of Tropical Rainfall = Stud. Geo. Op. Global Science and National Sovereignty = Routl St Hist Sci Te Global Science and National Sovereignty = Routl. St. Hist. Sci. Te. Global Security and The War On Terror = Contemp Secur Stud Global Security and The War On Terror = Contemp. Secur. Stud. Global Security, Safety, and Sustainability = Comm Com Inf Sc Global Security, Safety, and Sustainability = Comm. Com. Inf. Sc. Global Security, Safety, and Sustainability, Proceedings = Comm Com Inf Sc Global Security, Safety, and Sustainability, Proceedings = Comm. Com. Inf. Sc. Global Security Triangle = Routl Garn Ser Eur W Global Security Triangle = Routl. Garn. Ser. Eur. W. Global Shanghai, 1850-2010 = Asias Transform Global Shanghai, 1850-2010 = Asias. Transform. Global Sourcing of Information Technology and Business Processes = Lect Notes Bus Inf Global Sourcing of Information Technology and Business Processes = Lect. Notes. Bus. Inf. Global Staffing = Rout Glob Hum Resour Global Staffing = Rout. Glob. Hum. Resour. Global Standards of Market Civilization = Ripe Ser Glob Polit Global Standards of Market Civilization = Ripe. Ser. Glob. Polit. Global Structure and Evolution in General Relativity = Lect Notes Phys Global Structure and Evolution in General Relativity = Lect. Notes. Phys. Global Surgery Formula for The Casson-walker Invariant = Ann Math Stud Global Surgery Formula for The Casson-walker Invariant = Ann. Math. Stud. Global Talent Management = Glob Hrm Global Talent Management = Glob. Hrm. Global Telecoms Business = Glob Telecoms Bus Global Telecoms Business = Glob. Telecoms Bus. Global Trading Arrangements in Transition = St Ec Transform Publ Global Trading Arrangements in Transition = St. Ec. Transform. Publ. Global Traffic: Discourses and Practices of Trade in English Literature and Culture From 1550 to 1700 = Early Mod Cult Stud Global Traffic: Discourses and Practices of Trade in English Literature and Culture From 1550 to 1700 = Early. Mod. Cult. Stud. Global Trends: Fisheries Management = Am Fish S S Global Trends: Fisheries Management = Am. Fish. S. S. Global Trends in Educational Policy = Int Persp Educ Soc Global Trends in Educational Policy = Int. Persp. Educ. Soc. Global Usability = Hum-comput Int-sprin Global Usability = Hum-comput. Int-sprin. Global Vaccine Research Forum = Procedia Vaccinol Global Vaccine Research Forum = Procedia. Vaccinol. Global Values Education: Teaching Democracy and Peace = Glob Comp Educ Polic Global Values Education: Teaching Democracy and Peace = Glob. Comp. Educ. Polic. Global Warming and The Asian Pacific = Acad Stud Asian Econ Global Warming and The Asian Pacific = Acad. Stud. Asian Econ. Global Warming: Engineering Solutions = Green Energy Technol Global Warming: Engineering Solutions = Green. Energy. Technol. Global Warming International Center Monograph Series = Glob Warm Int Ctr M Global Warming International Center Monograph Series = Glob. Warm. Int. Ctr. M. Global Warming - Myth Or Reality? = S-p B Environ Sci Global Warming - Myth Or Reality? = S-p. B. Environ. Sci. Global Warming : Physics and Facts = Aip Conf Proc Global Warming : Physics and Facts = Aip. Conf. Proc. Globecom '00: Ieee Global Telecommunications Conference, Vols 1- 3 = Glob Telecomm Conf Globecom '00: Ieee Global Telecommunications Conference, Vols 1- 3 = Glob. Telecomm. Conf. Globecom '01: Ieee Global Telecommunications Conference, Vols 1-6 = Glob Telecomm Conf Globecom '01: Ieee Global Telecommunications Conference, Vols 1-6 = Glob. Telecomm. Conf. Globecom'02: Ieee Global Telecommunications Conference, Vols 1-3, Conference Records = Glob Telecomm Conf Globecom'02: Ieee Global Telecommunications Conference, Vols 1-3, Conference Records = Glob. Telecomm. Conf. Globecom'03: Ieee Global Telecommunications Conference, Vols 1-7 = Glob Telecomm Conf Globecom'03: Ieee Global Telecommunications Conference, Vols 1-7 = Glob. Telecomm. Conf. Globecom '04: Ieee Global Telecommunications Conference, Vols 1-6 = Glob Telecomm Conf Globecom '04: Ieee Global Telecommunications Conference, Vols 1-6 = Glob. Telecomm. Conf. Globecom '05: Ieee Global Telecommunications Conference, Vols 1-6 = Glob Telecomm Conf Globecom '05: Ieee Global Telecommunications Conference, Vols 1-6 = Glob. Telecomm. Conf. Globecom 2004: Ieee Global Telecommunications Conference Workshops = Glob Telecomm Conf Globecom 2004: Ieee Global Telecommunications Conference Workshops = Glob. Telecomm. Conf. Globecom 2006 - 2006 Ieee Global Telecommunications Conference = Glob Telecomm Conf Globecom 2006 - 2006 Ieee Global Telecommunications Conference = Glob. Telecomm. Conf. Globecom 2007: 2007 Ieee Global Telecommunications Conference, Vols 1-11 = Glob Telecomm Conf Globecom 2007: 2007 Ieee Global Telecommunications Conference, Vols 1-11 = Glob. Telecomm. Conf. Globecom 2008 - 2008 Ieee Global Telecommunications Conference = Glob Telecomm Conf Globecom 2008 - 2008 Ieee Global Telecommunications Conference = Glob. Telecomm. Conf. Globecom 2009 - 2009 Ieee Global Telecommunications Conference, Vols 1-8 = Glob Telecomm Conf Globecom 2009 - 2009 Ieee Global Telecommunications Conference, Vols 1-8 = Glob. Telecomm. Conf. Globecom '95 - Ieee Global Telecommunications Conference, Vols 1-3 = Glob Telecomm Conf Globecom '95 - Ieee Global Telecommunications Conference, Vols 1-3 = Glob. Telecomm. Conf. Globecom 97 - Ieee Global Telecommunications Conference, Conference Record, Vols 1-3 = Glob Telecomm Conf Globecom 97 - Ieee Global Telecommunications Conference, Conference Record, Vols 1-3 = Glob. Telecomm. Conf. Globe = Globe Globe. International College of Dentists = Globe Globins and Other Nitric Oxide-reactive Proteins, Part B = Method Enzymol Globins and Other Nitric Oxide-reactive Proteins, Part B = Method. Enzymol. Globins and Other Nitric Oxide-reactive Proteins, Pt A = Method Enzymol Globins and Other Nitric Oxide-reactive Proteins, Pt A = Method. Enzymol. Globular Cluster-galaxy Connection = Astr Soc P Globular Cluster-galaxy Connection = Astr. Soc. P. Globular Clusters - Guides to Galaxies = Eso Astrophy Symp Globular Clusters - Guides to Galaxies = Eso. Astrophy. Symp. Glomerulonephritis in The Elderly = Contrib Nephrol Glomerulonephritis in The Elderly = Contrib. Nephrol. Glossa-an International Journal of Linguistics = Glossa Glossa-an International Journal of Linguistics = Glossa. Glotta; zeitschrift fur griechische und lateinische sprache... = Glotta Glotta-zeitschrift Fur Griechische Und Lateinische Sprache = Glotta Glotta-zeitschrift Fur Griechische Und Lateinische Sprache = Glotta. Glotta. Zeitschrift für griechische und lateinische Sprache = Glotta Glq-a Journal of Lesbian and Gay Studies = Glq-j Lesbian Gay St Glq-a Journal of Lesbian and Gay Studies = Glq-j. Lesbian Gay St. Glq = GLQ Glucocorticoid Action: Basic and Clinical Implications = Ann Ny Acad Sci Glucocorticoid Action: Basic and Clinical Implications = Ann. Ny. Acad. Sci. Glucocorticoid-induced Osteoporosis = Front Horm Res Glucocorticoid-induced Osteoporosis = Front. Horm. Res. Glucocorticoids and Mood Clinical Manifestations, Risk Factors, and Molecular Mechanisms = Ann Ny Acad Sci Glucocorticoids and Mood Clinical Manifestations, Risk Factors, and Molecular Mechanisms = Ann. Ny. Acad. Sci. Glucocorticoids: Effects, Action Mechanisms, and Therapeutic Uses = Biochem Res Trends Glucocorticoids: Effects, Action Mechanisms, and Therapeutic Uses = Biochem. Res. Trends. Glucocorticoid Therapy in Chronic Inflammatory Bowel Disease = Falk Symp Glucocorticoid Therapy in Chronic Inflammatory Bowel Disease = Falk. Symp. Glucose Metabolism in The Brain = Int Rev Neurobiol Glucose Metabolism in The Brain = Int. Rev. Neurobiol. Glutamate and Disorders of Cognition and Motivation = Ann Ny Acad Sci Glutamate and Disorders of Cognition and Motivation = Ann. Ny. Acad. Sci. Glutamate-based Therapies for Psychiatric Disorders = Milestones Drug Ther Glutamate-based Therapies for Psychiatric Disorders = Milestones. Drug. Ther. Glutamate Synapse As A Therapeutical Target: Molecular Organization and Pathology of The Glutamate Synapse = Prog Brain Res Glutamate Synapse As A Therapeutical Target: Molecular Organization and Pathology of The Glutamate Synapse = Prog. Brain. Res. Gluten Proteins = Roy Soc Ch Gluten Proteins = Roy. Soc. Ch. Gluthione Transferases and Gamma-glutamyl Transpeptidases = Method Enzymol Gluthione Transferases and Gamma-glutamyl Transpeptidases = Method. Enzymol. Glycans in Diseases and Therapeutics = Biol Extracell Matr Glycans in Diseases and Therapeutics = Biol. Extracell. Matr. Glycobiology and Medicine = Adv Exp Med Biol Glycobiology and Medicine = Adv. Exp. Med. Biol. Glycobiology=Glycobiology;; Glycobiology = Glycobiology Glycobiology = Method Enzymol Glycobiology = Method. Enzymol. Glycobiology // = Ucla Sym Bi Glycobiology // = Ucla. Sym. Bi. Glycoconjugate journal = Glycoconj J Glycoconjugate Journal=Glycoconj J;; Glycoconjugate Journal = Glycoconj. J. Glycoconjugate Journal = Glycoconjugate J Glycoconjugate Journal = Glycoconjugate J. Glycogenomics: The Impact of Genomics and Informatics On Glycobiology = Biochem Soc Symp Glycogenomics: The Impact of Genomics and Informatics On Glycobiology = Biochem. Soc. Symp. Glycoimmunology 2 = Adv Exp Med Biol Glycoimmunology 2 = Adv. Exp. Med. Biol. Glycoimmunology = Adv Exp Med Biol Glycoimmunology = Adv. Exp. Med. Biol. Glycolysis: Regulation, Processes and Diseases = Biochem Res Trends Glycolysis: Regulation, Processes and Diseases = Biochem. Res. Trends. Glycomics = Method Enzymol Glycomics = Method. Enzymol. Glycopeptides and Glycoproteins: Synthesis, Structure, and Application = Top Curr Chem Glycopeptides and Glycoproteins: Synthesis, Structure, and Application = Top. Curr. Chem. Glycoscience and Microbial Adhesion = Top Curr Chem Glycoscience and Microbial Adhesion = Top. Curr. Chem. Glycoscience Synthesis of Oligosaccharides and Glycoconjugates = Top Curr Chem Glycoscience Synthesis of Oligosaccharides and Glycoconjugates = Top. Curr. Chem. Glycoscience Synthesis of Substrate Analogs and Mimetics = Top Curr Chem Glycoscience Synthesis of Substrate Analogs and Mimetics = Top. Curr. Chem. Glyoscience: Epimerisation, Isomerisation and Rearrangement Reactions of Carbohydrates = Top Curr Chem Glyoscience: Epimerisation, Isomerisation and Rearrangement Reactions of Carbohydrates = Top. Curr. Chem. Gmda Bulletin = GMDA Bull GMDA Bulletin = GMDA Bull. GMD-Berichte = GMD-Ber. Gm Debate: Risk, Politics and Public Engagement = Genet Soc Gm Debate: Risk, Politics and Public Engagement = Genet. Soc. GMD Research Series = GMD Res. Ser. Gm Food On Trial = Genet Soc Gm Food On Trial = Genet. Soc. GMHC treatment issues : the Gay Men's Health Crisis newsletter of experimental AIDS therapies = GMHC Treat Issues Gm/id Methodology, A Sizing Tool for Low-voltage Analog Cmos Circuits: The Semi-empirical and Compact Model Approaches = Analog Circ Sig Proc Gm/id Methodology, A Sizing Tool for Low-voltage Analog Cmos Circuits: The Semi-empirical and Compact Model Approaches = Analog Circ. Sig. Proc. GMU law review = GMU Law Rev Gneiss Domes in Orogeny = Geol Soc Am Spec Pap Gneiss Domes in Orogeny = Geol. Soc. Am. Spec. Pap. Gnitif = Genitif Gnomon-kritische Zeitschrift Fur Die Gesamte Klassische Altertumswissenschaft = Gnomon Gnomon-kritische Zeitschrift Fur Die Gesamte Klassische Altertumswissenschaft = Gnomon. Gnomon: kritische Zeitschrift für die gesamte klassische Altertumswissenschaft = Gnomon Gnomon. Kritische Zeitschrift für die gesamte klassische Altertumswissenschaft = Gnomon Gnss Applications and Methods = Artech Hse Gnss Tech Gnss Applications and Methods = Artech. Hse. Gnss Tech. Gnss for Vehicle Control = Artech Hse Gnss Tech Gnss for Vehicle Control = Artech. Hse. Gnss Tech. Goals and Purposes of Higher Education in The 21st Century = High Educ Pol Ser Goals and Purposes of Higher Education in The 21st Century = High. Educ. Pol. Ser. God and Humans in Islamic Thought: 'abd Al-jabbar, Ibn Sina and Aal-ghazali = Cult Civiliz Mid E God and Humans in Islamic Thought: 'abd Al-jabbar, Ibn Sina and Aal-ghazali = Cult. Civiliz. Mid. E. God and The British Soldier: Religion and The British Army in The First and Second World Wars = Christ Soc Mod World God and The British Soldier: Religion and The British Army in The First and Second World Wars = Christ. Soc. Mod. World God and The Goddesses: Vision, Poetry and Belief in The Middle Ages = Middle Ages Ser God and The Goddesses: Vision, Poetry and Belief in The Middle Ages = Middle Ages Ser. God Beyond Belief: in Defence of William Rowe's Evidential Argument From Evil = Stud Philos Relig Se God Beyond Belief: in Defence of William Rowe's Evidential Argument From Evil = Stud. Philos. Relig. Se. Godišen zbornik na Filozofskiot fakultet na Universitetot vo Skopje = GodZborSkopje Godisen zbornik na Medicinskiot fakultet vo Skopje = God Zb Med Fak Skopje Godisen Zbornik na Medicinskiot Fakultet vo Skopje = God. Zb. Med. Fak. Skopje Godishnik na Sofiy skiya Universitet "Sv = Annuaire Univ. Sofia Fac. Math. Inform. Godishnik na Sofiy skiya Universitet "Sv = Annuaire Univ. Sofia Fac. Phys. Godishnik na Visshite Uchebni Zavedeniya = Godishnik Vissh. Uchebn. Zaved. Prilozhna Mat. Godishnik na Visshite Uchebni Zavedeniya = Godishnik Vissh. Uchebn. Zaved. Tekhn. Fiz. Godishnik na Visshite Uchebni Zavedeniya = Godishnik Vissh. Uchebn. Zaved. Tekhn. Mekh. Godishnik na Visshiya Khimiko-Tekhnologicheski Institut, Sofiya = God. Vissh. Khim.-Tekhnol. Inst., Sofia Godishnik na Visshiya Pedagogicheski Institut "Konstantin Preslavski" v Shumen = God. Vissh. Pedagog. Inst. "Konstantin Preslavski" Shumen Prir.-Mat. Fak. B Godišnik na Archeologičeski muzej Plovdiv. Annuaire du Musée archéologique Plovdiv = GodMuzPlov Godišnik na Departament archeologija = GodDepA Godišnik na Nacionalnija archeologičeski muzej. Annuaire du Musée national archéologique (Sofia) = GodMuzSof Godisnjak Vojnomedicinske Akademije = God. Vojnomed. Akad. Gods and Heroes of The Ancient World = Gods Heroes Anc Worl Gods and Heroes of The Ancient World = Gods Heroes Anc. Worl. Gods Obvious Design = Col Tam Am Gods Obvious Design = Col. Tam. Am. God, The Gift, and Postmodernism = In Phil Rel God, The Gift, and Postmodernism = In. Phil. Rel. God, Values, and Empiricism = High Inst S God, Values, and Empiricism = High. Inst. S. Goemetry and Cohomology of Some Simple Shimura Varieties = Ann Math Stud Goemetry and Cohomology of Some Simple Shimura Varieties = Ann. Math. Stud. Goes-8 and Beyond = P Soc Photo-opt Ins Goes-8 and Beyond = P. Soc. Photo-opt. Ins. Goethe, Chaos, and Complexity = Int For Lit Goethe, Chaos, and Complexity = Int. For. Lit. Goethe Jahrbuch = Goethe Jahrb Goethe Jahrbuch = Goethe Jahrb. Go Girls: When Slovenian Women Left Home = Migracije Go Girls: When Slovenian Women Left Home = Migracije. Goguen Categories: A Categorical Approach to L-fuzzy Relations = Trends Log Stud Log Goguen Categories: A Categorical Approach to L-fuzzy Relations = Trends. Log. Stud. Log. Gohberg Anniversary Collection, Vol 2 = Oper Theor Gohberg Anniversary Collection, Vol 2 = Oper. Theor. Going Amiss in Experimental Research = Bost Stud Philos Sci Going Amiss in Experimental Research = Bost. Stud. Philos. Sci. Going Beyond The Theory/practice Divide in Early Childhood Education = Contest Early Childh Going Beyond The Theory/practice Divide in Early Childhood Education = Contest. Early Childh. Going Local: Working in Communities and Neighbourhoods = Soc Work Skills Ser Going Local: Working in Communities and Neighbourhoods = Soc. Work. Skills. Ser. Goldbrakteaten Der Volkerwanderungszeit - Thema Und Variation: Die Formularfamilien Der Bilddarstellungen = Reallexikon Ger Alte Goldbrakteaten Der Volkerwanderungszeit - Thema Und Variation: Die Formularfamilien Der Bilddarstellungen = Reallexikon. Ger. Alte. Gold bulletin = Gold Bull Gold Bulletin = Gold Bull Gold Bulletin = Gold Bull. Golden Gate law review = Gold Gate Law Rev Golden Gate University law review. Golden Gate University. School of Law = Gold Gate Univ Law Rev Gold Nanoparticles As An Antigen Carrier and An Adjuvant = Nanotechnol Sci Tech Gold Nanoparticles As An Antigen Carrier and An Adjuvant = Nanotechnol. Sci. Tech. Gold Nanoparticles: Properties, Characterization and Fabrication = Nanotechnol Sci Tech Gold Nanoparticles: Properties, Characterization and Fabrication = Nanotechnol. Sci. Tech. Gold & Nickel Ore Reserve Estimation Practice Seminar - Seminar Papers = Aimm Spectr Ser Gold & Nickel Ore Reserve Estimation Practice Seminar - Seminar Papers = Aimm. Spectr. Ser. Gombrowicz, Polish Modernism, and The Subversion of Form = Comp Cult Stud Gombrowicz, Polish Modernism, and The Subversion of Form = Comp. Cult. Stud. Gonadal Development and Function = Serono Sym Gonadal Development and Function = Serono. Sym. Gonadotropin-releasing Hormone: Molecules and Receptors = Prog Brain Res Gonadotropin-releasing Hormone: Molecules and Receptors = Prog. Brain. Res. Gondwana Research = Gondwana Res Gondwana Research = Gondwana Res. Gong 1992: Seismic Investigation of The Sun and Stars = Astr Soc P Gong 1992: Seismic Investigation of The Sun and Stars = Astr. Soc. P. Gong '94: Helio- and Astero-seismology From The Earth and Space = Astr Soc P Gong '94: Helio- and Astero-seismology From The Earth and Space = Astr. Soc. P. Gongcheng Shuxue Xuebao = Gongcheng Shuxue Xuebao Gongneng Gaofenzi Xuebao = Gongneng Gaofenzi Xuebao Gong-soho 24: A New Era of Seismology of The Sun and Solar-like Stars = J Phys Conf Ser Gong-soho 24: A New Era of Seismology of The Sun and Solar-like Stars = J. Phys. Conf. Ser. Gong ye wei sheng wu = Industrial microbiology|Gong Ye Wei Sheng Wu Gonorynchiformes and Ostariophysan Relationships: A Comprehensive Review = Ser Teleost Fish Bio Gonorynchiformes and Ostariophysan Relationships: A Comprehensive Review = Ser. Teleost. Fish. Bio. Gonzaga law review = Gonzaga Law Rev Good Enough Endings: Breaks, Interruptions, and Terminations From Contemporary Relational Perspectives = Relat Perspect Book Good Enough Endings: Breaks, Interruptions, and Terminations From Contemporary Relational Perspectives = Relat. Perspect. Book. Good housekeeping (New York, N.Y.) = Good Housekeeping Good Humor, Bad Taste: A Sociology of The Joke = Humor Res Good Humor, Bad Taste: A Sociology of The Joke = Humor. Res. Good Manufacturing Practice in Transfusion Medicine = Dev Hematol Good Manufacturing Practice in Transfusion Medicine = Dev. Hematol. Good Occupational Health and Evaluation of Occupational Health Services = People Work Res Rep Good Occupational Health and Evaluation of Occupational Health Services = People. Work. Res. Rep. Good Women of The Parish: Gender and Religion After The Black Death = Middle Ages Ser Good Women of The Parish: Gender and Religion After The Black Death = Middle. Ages. Ser. Gor\cprime kovskiy Gosudarstvennyy Universitet imeni N = Prikl. Problemy Proch. i Plast. Gorilla Biology: A Multidisciplinary Perspective = Cam S Bio Evol Anthr Gorilla Biology: A Multidisciplinary Perspective = Cam. S. Bio. Evol. Anthr. Goriški letnik. Zbornik Goriškega muzeja = GorLet Gor-publications = Gor-publ Gor-publications = Gor-publ. Gorteria = Gorteria Gospel Preached By The Deaf = Annu Nunt Lovanien Gospel Preached By The Deaf = Annu. Nunt. Lovanien. Gospel Traditions in The Second Century = Chr Jud Ant Gospel Traditions in The Second Century = Chr. Jud. Ant. Gospodarka Surowcami Mineralnymi-mineral Resources Management = Gospod Surowcami Min Gospodarka Surowcami Mineralnymi-mineral Resources Management = Gospod. Surowcami Min. Gospodarstvo Istre=Gospodarstvo Istre Gossip and Gender: Othering of Speech in The Pastoral Epistles = Beih Z Neutest Wiss Gossip and Gender: Othering of Speech in The Pastoral Epistles = Beih. Z. Neutest. Wiss. Goteborgs Tandlakare-Sallskaps Arsbok = Goteb. Tandlak. Sallsk. Arsb. Goteborg University - Department of Sociology Monograph = Goteb Univ Dep Socio Goteborg University - Department of Sociology Monograph = Goteb. Univ. Dep. Socio. Gottfried Benn-einfuhrung in Leben Und Werk = Degruyter Studienb Gottfried Benn-einfuhrung in Leben Und Werk = Degruyter. Studienb. Gottfried Wilhelm Leibniz: The Art of Controversies = New Synth Hist Lib Gottfried Wilhelm Leibniz: The Art of Controversies = New. Synth. Hist. Lib. Gott in Der Geschichte: Ausgewahlte Aufsatze Zur Kirchengeschichte = Arb Kirchengesch Gott in Der Geschichte: Ausgewahlte Aufsatze Zur Kirchengeschichte = Arb. Kirchengesch. Gottinger Forum Fur Altertumswissenschaft Beihefte Neue Folge = Gott Forum Altertums Gottinger Forum Fur Altertumswissenschaft Beihefte Neue Folge = Gott. Forum Altertums. Göttinger Forum für Altertumswissenschaft = GFA Göttinger Forum für Altertumswissenschaft = GFA Gottinger Jahrbuch = Gott Jahrb Göttinger Miszellen. Beiträge zur ägyptologischen Diskussion = GoettMisz Gottinger Orientforschungen, I. Reihe Syriaca = Gott Orient Syr Gottinger Orientforschungen, I. Reihe Syriaca = Gott. Orient. Syr. Göttinger Universitätsschriften = Göttinger Universitätsschr. Ser. A Schr. Göttingische Gelehrte Anzeigen = GGA Göttingische Gelehrte Anzeigen = GGA Goverance and Limited Statehood = Gov Limit State Goverance and Limited Statehood = Gov. Limit. State. Governance After Neoliberalism in Latin America = Stud Am Governance After Neoliberalism in Latin America = Stud. Am. Governance and Democracy: Comparing National, European and International Experiences = Routl Ecpr Stud Eur Governance and Democracy: Comparing National, European and International Experiences = Routl. Ecpr. Stud. Eur. Governance and Innovation: A Historical View = Routl Stud Glob Comp Governance and Innovation: A Historical View = Routl. Stud. Glob. Comp. Governance and Performance in The German Public Research Sector: Disciplinary Differences = High Educ Dynam Governance and Performance in The German Public Research Sector: Disciplinary Differences = High. Educ. Dynam. Governance and Public Management = Gov Public Manag Governance and Public Management = Gov. Public Manag. Governance and Regionalism in Asia = Polit Asia Governance and Regionalism in Asia = Polit. Asia Governance and Regulation in The Third Sector: International Perspectives = Routl Stud Man Volun Governance and Regulation in The Third Sector: International Perspectives = Routl. Stud. Man. Volun. Governance-an International Journal of Policy Administration and Institutions = Governance Governance-an International Journal of Policy Administration and Institutions = Governance. Governance-an International Journal of Policy and Administration = Governance Governance-an International Journal of Policy and Administration = Governance. Governance As A Trialogue: Government-society-science in Transition = Water Res Devel Man Governance As A Trialogue: Government-society-science in Transition = Water. Res. Devel. Man. Governance As A Trialogue: Government-society-science in Transition = Water Resour Dev Man Governance As A Trialogue: Government-society-science in Transition = Water. Resour. Dev. Man. Governance, Consumers and Citizens: Agency and Resistance in Contemporary Politics = Consum Public Life Governance, Consumers and Citizens: Agency and Resistance in Contemporary Politics = Consum. Public. Life. Governance for The Environment: A Comparative Analysis of Environmental Policy Integration = Feem Ser Econ Envir Governance for The Environment: A Comparative Analysis of Environmental Policy Integration = Feem. Ser. Econ. Envir. Governance in Europe = Gov Europe Governance in Europe = Gov. Europe Governance in Post-conflict Societies = Contemp Secur Stud Governance in Post-conflict Societies = Contemp. Secur. Stud. Governance in The Business Environment = Dev Corp Gov Respons Governance in The Business Environment = Dev. Corp. Gov. Respons. Governance of Agrarian Sustainability = Agr Issues Policies Governance of Agrarian Sustainability = Agr. Issues. Policies. Governance of Communication Networks: Connecting Societies and Markets With It = Contrib Econ Governance of Communication Networks: Connecting Societies and Markets With It = Contrib. Econ. Governance of Network Industries: Institutions, Technology and Policy in Reregulated Infrastructures = Stud Evol Polit Econ Governance of Network Industries: Institutions, Technology and Policy in Reregulated Infrastructures = Stud. Evol. Polit. Econ. Governance of Not-for-profit Organizations = Nber Conf R Governance of Not-for-profit Organizations = Nber. Conf. R. Governance Structures of Chinese Firms: Innovation, Competitiveness, and Growth in A Dual Economy = Innov Tech Knowl Man Governance Structures of Chinese Firms: Innovation, Competitiveness, and Growth in A Dual Economy = Innov. Tech. Knowl. Man. Governance: Systemic Foundation and Framework = Contrib Manag Sci Governance: Systemic Foundation and Framework = Contrib. Manag. Sci. Governing China's Multiethnic Frontiers = Stud Ethnic Groups C Governing China's Multiethnic Frontiers = Stud. Ethnic. Groups. C. Governing Global Electronic Networks: International Perspectives On Policy and Power = Inform Revol Glob Po Governing Global Electronic Networks: International Perspectives On Policy and Power = Inform. Revol. Glob. Po. Governing = Governing Governing Home Care: A Cross-national Comparison = Glob Welf Governing Home Care: A Cross-national Comparison = Glob. Welf. Governing Knowledge: A Study of Continuity and Change in Higher Education - A Festschrift in Honour of Maurice Kogan = High Educ Dynam Governing Knowledge: A Study of Continuity and Change in Higher Education - A Festschrift in Honour of Maurice Kogan = High. Educ. Dynam. Governing The Environment: Salient Institutional Issues = New Horiz Environ Ec Governing The Environment: Salient Institutional Issues = New. Horiz. Environ. Ec. Governing The Postal Service = Aei St Post Regulat Governing The Postal Service = Aei. St. Post. Regulat. Governing The Tap: Special District Governance and The New Local Politics of Water = Am Comp Environ Poli Governing The Tap: Special District Governance and The New Local Politics of Water = Am. Comp. Environ. Poli. Governing The Transatlantic Conflict Over Agricultural Biotechnology: Contending Coalitions, Trade Liberalisation and Standard Setting = Genet Soc Governing The Transatlantic Conflict Over Agricultural Biotechnology: Contending Coalitions, Trade Liberalisation and Standard Setting = Genet. Soc. Governing Tomorrows Campus = Am C Educ M Governing Tomorrows Campus = Am. C. Educ. M. Governing Women: Womens Political Effectiveness in Contexts of Democratization and Governance Reform = Routl Unrisd Res Gen Governing Women: Womens Political Effectiveness in Contexts of Democratization and Governance Reform = Routl. Unrisd. Res. Gen. Governmentality, Biopower, and Everyday Life = Routl Stud Soc Polit Governmentality, Biopower, and Everyday Life = Routl. Stud. Soc. Polit. Government and Housing = Urban Aff A Government and Housing = Urban. Aff. A. Government and Opposition = Gov Oppos Government and Opposition = Gov. Oppos. Government and Policy-making Reform in China = Comp Dev Policy Asia Government and Policy-making Reform in China = Comp. Dev. Policy. Asia. Government and Research: Thirty Years of Evolution = High Educ Dynam Government and Research: Thirty Years of Evolution = High. Educ. Dynam. Government Bailout: Troubled Asset Relief Program (tarp) = Am 21 Century Polit Government Bailout: Troubled Asset Relief Program (tarp) = Am. 21. Century. Polit. Government Budget Forecasting: Theory and Practice = Public Adm Public Po Government Budget Forecasting: Theory and Practice = Public. Adm. Public. Po. Government Information Quarterly = Gov Inform Q Government Information Quarterly = Gov. Inform. Q. Government information quarterly = Gov Inf Q Government Laboratories: Transition and Transformation = Nato Asi S 4 Sci Tec Government Laboratories: Transition and Transformation = Nato. Asi. S. 4. Sci. Tec. Government Machine: A Revolutionary History of The Computer = Hist Comput-mit Pres Government Machine: A Revolutionary History of The Computer = Hist. Comput-mit. Pres. Government Managing Risk: Income Contingent Loans for Social and Economic Progress = Routl Stud Bus Organ Government Managing Risk: Income Contingent Loans for Social and Economic Progress = Routl. Stud. Bus. Organ. Government Policy and Industrial Change = Rout S Geog Government Policy and Industrial Change = Rout. S. Geog. Government publications review = Gov Publ Rev Government Publications Review = Gov Publ Rev Government Publications Review = Gov. Publ. Rev. Government publications review (New York, N.Y. : 1982) = Gov Publ Rev Government Publications Review Part A-research Articles = Gov Publ Rev Pt A Government Publications Review Part A-research Articles = Gov. Publ. Rev. Pt. A. Government Public Relations: A Reader = Public Adm Public Po Government Public Relations: A Reader = Public Adm. Public Po. Government relations note = Gov Relat Note Government Relations Note = Gov. Relat. Note Governments and Markets in East Asia: The Politics of Economic Crises = Rout Malays Stud Ser Governments and Markets in East Asia: The Politics of Economic Crises = Rout. Malays. Stud. Ser. Government Secrecy = Res Soc Probl Public Government Secrecy = Res. Soc. Probl. Public. Government, The Railways and The Modernization of Britain = Brit Polit Soc Government, The Railways and The Modernization of Britain = Brit. Polit. Soc. Govor = Govor Goya = Goya Gpcrs: From Deorphanization to Lead Structure Identification = Ernst Schering Found Gpcrs: From Deorphanization to Lead Structure Identification = Ernst. Schering. Found. GP = GP Gpr 2000: Proceedings of The Eighth International Conference On Ground Penetrating Radar = Proc Spie Gpr 2000: Proceedings of The Eighth International Conference On Ground Penetrating Radar = Proc. Spie. Gpr 2000: Proceedings of The Eighth International Conference On Ground Penetrating Radar = P Soc Photo-opt Ins Gpr 2000: Proceedings of The Eighth International Conference On Ground Penetrating Radar = P. Soc. Photo-opt. Ins. Gpr 2002: Ninth International Conference On Ground Penetrating Radar = Proc Spie Gpr 2002: Ninth International Conference On Ground Penetrating Radar = Proc. Spie. Gpr 2002: Ninth International Conference On Ground Penetrating Radar = P Soc Photo-opt Ins Gpr 2002: Ninth International Conference On Ground Penetrating Radar = P. Soc. Photo-opt. Ins. G Protein-coupled Receptors in Drug Discovery = Methods Mol Biol G Protein-coupled Receptors in Drug Discovery = Methods. Mol. Biol. G Protein Pathways Part B: G Proteins and Their Regulators = Method Enzymol G Protein Pathways Part B: G Proteins and Their Regulators = Method. Enzymol. G Protein Pathways, Pt A, Receptors = Method Enzymol G Protein Pathways, Pt A, Receptors = Method. Enzymol. G Protein Pathways: Pt C, Effector Mechanisms = Method Enzymol G Protein Pathways: Pt C, Effector Mechanisms = Method. Enzymol. G-proteins and Signal Transduction = Biochem Soc Symp G-proteins and Signal Transduction = Biochem. Soc. Symp. G Proteins and Signal Transduction = Soc Gen Phy G Proteins and Signal Transduction = Soc. Gen. Phy. Gps-based Optimal Fir Filtering of Clock Models = Electr Eng Dev Gps-based Optimal Fir Filtering of Clock Models = Electr. Eng. Dev. Gps Solutions = Gps Solut Gps Solutions = Gps Solut. G-quadruplex Dna: Methods and Protocols = Methods Mol Biol G-quadruplex Dna: Methods and Protocols = Methods Mol. Biol. Grace Hopper and The Invention of The Information Age = Lemelson Cent Stud I Grace Hopper and The Invention of The Information Age = Lemelson. Cent. Stud. I. Građa i rasprave. Arheološki muzej Istre, Pula = GraRaspr Graded Syzygies = Algebra Appl Graded Syzygies = Algebra. Appl. Gradevinar = Gradev Gradevinar = Gradev. Gradevinar = Gradevinar Gradient Flows in Metric Spaces and in The Space of Probability Measures, Second Edition = Lect Math Gradient Flows in Metric Spaces and in The Space of Probability Measures, Second Edition = Lect. Math. Gradient Index, Miniature, and Diffractive Optical Systems Iii = P Soc Photo-opt Ins Gradient Index, Miniature, and Diffractive Optical Systems Iii = P. Soc. Photo-opt. Ins. Gradient Index, Miniature, and Diffractive Optical Systems Ii = P Soc Photo-opt Ins Gradient Index, Miniature, and Diffractive Optical Systems Ii = P. Soc. Photo-opt. Ins. Gradient Index, Miniature, and Diffractive Optical Systems = P Soc Photo-opt Ins Gradient Index, Miniature, and Diffractive Optical Systems = P. Soc. Photo-opt. Ins. Grading Student Achievement in Higher Education: Signals and Shortcomings = Key Issues High Educ Grading Student Achievement in Higher Education: Signals and Shortcomings = Key. Issues. High. Educ. Gradiva = Gradiva Graduate Attributes, Learning and Employability = Lifelong Learn Book Graduate Attributes, Learning and Employability = Lifelong. Learn. Book. Graduate faculty philosophy journal = Grad Fac Philos J Graduate Institute of International Studies = Grad Inst Int Stud Graduate Institute of International Studies = Grad. Inst. Int. Stud. Graduate School in Astronomy = Aip Conf Proc Graduate School in Astronomy = Aip. Conf. Proc. Graduate Student Series in Physics = Grad. Student Ser. Phys. Graduate Studies in Mathematics = Grad. Stud. Math. Graduate Texts in Computer Science = Grad. Texts Comput. Sci. Graduate Texts in Contemporary Physics = Grad. Texts Contemp. Phys. Graduate Texts in Mathematics = Grad. Texts in Math. Graduate Texts in Mathematics = Grad Texts Math Graduate Texts in Mathematics = Grad. Texts Math. Graduate Texts in Physics = Grad Texts Phys Graduate Texts in Physics = Grad. Texts Phys. Graecolatina et Orientalia: zborník Filoz. Fak. Univerz. Komenského = GLO Graecolatina et orientalia. Zborník Filozofickej fakulty Univerzity Komenského = GrLatOr Graecolatina Pragensia: acta Universitatis Carolinae = GLP Graecolatina Pragensia. Acta Universitatis Carolinae. Philologica = GrLatPrag Graefes Archive for Clinical and Experimental Ophthalmology = Graef Arch Clin Exp Graefes Archive for Clinical and Experimental Ophthalmology = Graef. Arch. Clin. Exp. Graefe's Archive for Clinical and Experimental Ophthalmology = Graefes Arch. Clin. Exp. Ophthalmol. Graefes Archive For Clinical and Experimental Ophthalmology=Graefes Arch Clin Exp Ophthalmol;; Grafo History - Practices and Disciplines = Grafostorie P D Grafo History - Practices and Disciplines = Grafostorie. P. D. Grafting/characterization Techniques/kinetic Modeling = Adv Polym Sci Grafting/characterization Techniques/kinetic Modeling = Adv. Polym. Sci. Graham Greene: A Literary Life = Lit Lives Graham Greene: A Literary Life = Lit. Lives. Grain Boundary Controlled Properties of Fine Ceramics = Jfcc Ws Mat Grain Boundary Controlled Properties of Fine Ceramics = Jfcc. Ws. Mat. Grain Boundary Diffusion, Stresses and Segregation, Dss 2010 Moscow = Defect Diffus Forum Grain Boundary Diffusion, Stresses and Segregation, Dss 2010 Moscow = Defect. Diffus. Forum. Grain Boundary Engineering in Ceramics - From Grain Boundary Phenomena to Grain Boundary Quantum Structures = Ceram Trans Grain Boundary Engineering in Ceramics - From Grain Boundary Phenomena to Grain Boundary Quantum Structures = Ceram. Trans. Grain Boundary Segregation in Metals = Springer Ser Mater S Grain Boundary Segregation in Metals = Springer. Ser. Mater. S. Grain Drying in Asia = Aciar Proc Grain Drying in Asia = Aciar. Proc. Grain Growth in Polycrystalline Materials Ii, Pts 1 and 2 = Mater Sci Forum Grain Growth in Polycrystalline Materials Ii, Pts 1 and 2 = Mater. Sci. Forum. Grain Growth in Polycrystalline Materials, Pts 1 and 2 = Mater Sci Forum Grain Growth in Polycrystalline Materials, Pts 1 and 2 = Mater. Sci. Forum. Grain Legumes : National Symposium and Workshop = Sp Pub Agr Grain Legumes : National Symposium and Workshop = Sp. Pub. Agr. Grain Size and Mechanical Properties - Fundamentals and Applications = Mater Res Soc Symp P Grain Size and Mechanical Properties - Fundamentals and Applications = Mater. Res. Soc. Symp. P. Grammar and Christianity in The Late Roman World = Divin Reread Late An Grammar and Christianity in The Late Roman World = Divin. Reread. Late An. Grammar of Carnatic Music = Phonol Phonet Grammar of Carnatic Music = Phonol. Phonet. Grammar of Cavinena = Mouton Gramm Libr Grammar of Cavinena = Mouton. Gramm. Libr. Grammar of Dolakha Newar = Mouton Gramm Libr Grammar of Dolakha Newar = Mouton. Gramm. Libr. Grammar of Eton = Mouton Gramm Libr Grammar of Eton = Mouton. Gramm. Libr. Grammar of French Quantification = Stud Nat Lang Lingui Grammar of French Quantification = Stud. Nat. Lang. Lingui. Grammar of Hup = Mouton Gramm Libr Grammar of Hup = Mouton. Gramm. Libr. Grammar of Jamsay = Mouton Gramm Libr Grammar of Jamsay = Mouton. Gramm. Libr. Grammar of Kolyma Yukaghir = Mouton Gramm Libr Grammar of Kolyma Yukaghir = Mouton. Gramm. Libr. Grammar of Kwaza = Mouton Gramm Libr Grammar of Kwaza = Mouton. Gramm. Libr. Grammar of Lao = Mouton Gramm Libr Grammar of Lao = Mouton. Gramm. Libr. Grammar of Mapuche = Mouton Gramm Libr Grammar of Mapuche = Mouton. Gramm. Libr. Grammar of Mina = Mouton Gramm Libr Grammar of Mina = Mouton. Gramm. Libr. Grammar of Mongsen Ao = Mouton Gramm Libr Grammar of Mongsen Ao = Mouton. Gramm. Libr. Grammar of Moseten = Mouton Gramm Libr Grammar of Moseten = Mouton. Gramm. Libr. Grammar of Qiang = Mouton Gramm Libr Grammar of Qiang = Mouton. Gramm. Libr. Grammar of Tamashek (tuareg of Mali) = Mouton Gramm Libr Grammar of Tamashek (tuareg of Mali) = Mouton. Gramm. Libr. Grammar of The English Verb Phrase, Vol 1: Grammar of The English Tense System = Top Engl Linguist Grammar of The English Verb Phrase, Vol 1: Grammar of The English Tense System = Top. Engl. Linguist. Grammar of Toqabaqita = Mouton Gramm Libr Grammar of Toqabaqita = Mouton. Gramm. Libr. Grammar of Urarina = Mouton Gramm Libr Grammar of Urarina = Mouton. Gramm. Libr. Grammatical Borrowing in Cross-linguistic Perspective = Empir Approach Lang Grammatical Borrowing in Cross-linguistic Perspective = Empir. Approach. Lang. Grammatical Inference: Algorithms and Applications = Lect Notes Artif Int Grammatical Inference: Algorithms and Applications = Lect. Notes. Artif. Int. Grammatical Inference: Algorithms and Applications, Proceedings = Lect Notes Artif Int Grammatical Inference: Algorithms and Applications, Proceedings = Lect. Notes. Artif. Int. Grammatical Inference: Algorithms and Applications, Proceedings = Lect Notes Comput Sc Grammatical Inference: Algorithms and Applications, Proceedings = Lect. Notes. Comput. Sc. Grammatical Inference: Algorithms and Appliications = Lect Notes Artif Int Grammatical Inference: Algorithms and Appliications = Lect. Notes. Artif. Int. Grammaticalization and Pragmatics: Facts, Approaches, Theoretical Issues = Stud Pragmat Grammaticalization and Pragmatics: Facts, Approaches, Theoretical Issues = Stud. Pragmat. Grammatical Relations in Romani = Amst Stud Theory His Grammatical Relations in Romani = Amst. Stud. Theory. His. Grammatical Study of Innu-aimun Particles = Algonq Iroq Linguist Grammatical Study of Innu-aimun Particles = Algonq. Iroq. Linguist. Grammatical Theory and Romance Languages = Amst Stud Theory His Grammatical Theory and Romance Languages = Amst. Stud. Theory His. Grammatik Im Gesprach: Konstruktionen Der Selbst- Und Fremdpositionierung = Linguist-impulse Ten Grammatik Im Gesprach: Konstruktionen Der Selbst- Und Fremdpositionierung = Linguist-impulse. Ten. Grammatik Im Gesprach: Konstruktionen Der Selbst- Und Fremdpositionierung = Linguist Impul Tend Grammatik Im Gesprach: Konstruktionen Der Selbst- Und Fremdpositionierung = Linguist. Impul. Tend. Gramsci and Global Politics: Hegemony and Resistance = Routl Innov Polit Th Gramsci and Global Politics: Hegemony and Resistance = Routl. Innov. Polit. Th. Grana = Grana Grand Challenges in Computational Astrophysics = Eas Publications Grand Challenges in Computational Astrophysics = Eas. Publications. Grand Seigneur Et Ses Esclaves: Le Comte De Noe Entre Antilles Et Gascogne 1728-1816 = Tempus Ser Grand Seigneur Et Ses Esclaves: Le Comte De Noe Entre Antilles Et Gascogne 1728-1816 = Tempus. Ser. Grand Unified Theories: Current Status and Future Prospects = Aip Conf Proc Grand Unified Theories: Current Status and Future Prospects = Aip. Conf. Proc. Granite: From Segregation of Melt to Emplacement Fabrics = Petr Stru G Granite: From Segregation of Melt to Emplacement Fabrics = Petr. Stru. G. Granite-related Ore Deposits = Geol Soc Spec Publ Granite-related Ore Deposits = Geol. Soc. Spec. Publ. Grant = Great Gen Grant = Great. Gen. Granting The Seasons: The Chinese Astronomical Reform of 1280, With A Study of Its Many Dimensions and A Translation of Its Records = Sourc Stud Hist Math Granting The Seasons: The Chinese Astronomical Reform of 1280, With A Study of Its Many Dimensions and A Translation of Its Records = Sourc. Stud. Hist. Math. Grants magazine = Grants Mag Grants Magazine = Grants Mag. Grantsmanship Center News = Grantsmanship Cent News Grantsmanship Center News = Grantsmanship Cent. News Granular and Complex Materials = World Sci Lect Notes Granular and Complex Materials = World. Sci. Lect. Notes. Granular Computing and Intelligent Systems : Design With Information Granules of Higher Order and Higher Type = Intel Syst Ref Libr Granular Computing and Intelligent Systems : Design With Information Granules of Higher Order and Higher Type = Intel. Syst. Ref. Libr. Granular Computing: At The Junction of Rough Sets and Fuzzy Sets = Stud Fuzz Soft Comp Granular Computing: At The Junction of Rough Sets and Fuzzy Sets = Stud. Fuzz. Soft. Comp. Granular Gases = Lect Notes Phys Granular Gases = Lect. Notes. Phys. Granular Material-based Technologies = Mater Res Soc Symp P Granular Material-based Technologies = Mater. Res. Soc. Symp. P. Granular Matter = Granular Matter Granular Matter = Granul Matter Granular Matter = Granul. Matter Granular Nanoelectronics = Nato Adv Sci I B-phy Granular Nanoelectronics = Nato. Adv. Sci. I. B-phy. Granulites and Crustal Evolution = Nato Adv Sci I C-mat Granulites and Crustal Evolution = Nato. Adv. Sci. I. C-mat. Graph Algorithms in The Language of Linear Algebra = Softw Environ Tools Graph Algorithms in The Language of Linear Algebra = Softw. Environ. Tools. Graph Based Analysis of Object Oriented Systems: An Integrated Approach = Eng Tools Tech Table Graph Based Analysis of Object Oriented Systems: An Integrated Approach = Eng. Tools. Tech. Table. Graph-based Knowledge Representation = Adv Inform Knowl Pro Graph-based Knowledge Representation = Adv. Inform. Knowl. Pro. Graph-based Representations in Pattern Recognition, Proceedings = Lect Notes Comput Sc Graph-based Representations in Pattern Recognition, Proceedings = Lect. Notes. Comput. Sc. Graph Based Representations in Pattern Recognition, Proceedings = Lect Notes Comput Sc Graph Based Representations in Pattern Recognition, Proceedings = Lect. Notes. Comput. Sc. Graph Drawing = Lect Notes Comput Sc Graph Drawing = Lect. Notes. Comput. Sc. Graph Drawing Software = Math Vis Graph Drawing Software = Math. Vis. Graph Drawing Software = Math Visual Graph Drawing Software = Math. Visual. Graphene and Emerging Materials for Post-cmos Applications = Ecs Transactions Graphene and Emerging Materials for Post-cmos Applications = Ecs. Transactions. Graphene and Graphite Materials = Mater Sci Technol Graphene and Graphite Materials = Mater. Sci. Technol. Graphical Models and Image Processing = Graph Model Im Proc Graphical Models and Image Processing = Graph. Model. Im. Proc. Graphical models = Graph Models Graphical Models = Graph Models Graphical Models = Graph. Models Graphics, Design and Visualization = Ifip Trans B Graphics, Design and Visualization = Ifip. Trans. B. Graphics Interface 2000, Proceedings = Proc Graph Interf Graphics Interface 2000, Proceedings = Proc. Graph. Interf. Graphics Interface 2002, Proceedings = Proc Graph Interf Graphics Interface 2002, Proceedings = Proc. Graph. Interf. Graphics Interface 2003, Proceeding = Proc Graph Interf Graphics Interface 2003, Proceeding = Proc. Graph. Interf. Graphics Interface 2004, Proceedings = Proc Graph Interf Graphics Interface 2004, Proceedings = Proc. Graph. Interf. Graphics Interface 2006, Proceedings = Proc Graph Interf Graphics Interface 2006, Proceedings = Proc. Graph. Interf. Graphics Interface 90 = Graph Inter Graphics Interface 90 = Graph. Inter. Graphics Interface 91 = Graph Inter Graphics Interface 91 = Graph. Inter. Graphics Interface 92 = Graph Inter Graphics Interface 92 = Graph. Inter. Graphics Interface 93, Proceedings = Graph Inter Graphics Interface 93, Proceedings = Graph. Inter. Graphics Interface '94 - Proceedings = Graph Inter Graphics Interface '94 - Proceedings = Graph. Inter. Graphics Interface '95 - Proceedings = Graph Inter Graphics Interface '95 - Proceedings = Graph. Inter. Graphics Interface '96, Proceedings = Proc Graph Interf Graphics Interface '96, Proceedings = Proc. Graph. Interf. Graphics Interface '97 - Proceedings = Proc Graph Interf Graphics Interface '97 - Proceedings = Proc. Graph. Interf. Graphics Interface '99, Proceedings = Proc Graph Interf Graphics Interface '99, Proceedings = Proc. Graph. Interf. Graphics Recognition: Achievements, Challenges, and Evolution = Lect Notes Comput Sc Graphics Recognition: Achievements, Challenges, and Evolution = Lect. Notes. Comput. Sc. Graphics Recognition: Algorithms and Applications = Lect Notes Comput Sc Graphics Recognition: Algorithms and Applications = Lect. Notes. Comput. Sc. Graphics Recognition = Lect Notes Comput Sc Graphics Recognition = Lect. Notes. Comput. Sc. Graphics Recognition: Recent Advances and New Opportunities = Lect Notes Comput Sc Graphics Recognition: Recent Advances and New Opportunities = Lect. Notes. Comput. Sc. Graphics Recognition: Recent Advances and Perspectives = Lect Notes Comput Sc Graphics Recognition: Recent Advances and Perspectives = Lect. Notes. Comput. Sc. Graphics Recognition, Recent Advances = Lect Notes Comput Sc Graphics Recognition, Recent Advances = Lect. Notes. Comput. Sc. Graphics Technology in Space Application ( Gtsa 1989 ) = Nasa Conf P Graphics Technology in Space Application ( Gtsa 1989 ) = Nasa. Conf. P. Graphis = Graphis Graphis Scripta = Graph. Scr. Graphs '04 = Tatra Mt Math Publ Graphs '04 = Tatra. Mt. Math. Publ. Graphs and Algorithms in Communication Networks: Studies in Broadband, Optical, Wireless and Ad Hoc Networks = Texts Theor Comput S Graphs and Algorithms in Communication Networks: Studies in Broadband, Optical, Wireless and Ad Hoc Networks = Texts. Theor. Comput. S. Graphs and Combinatorics = Graph Combinator Graphs and Combinatorics = Graph. Combinator. Graphs and Combinatorics = Graphs Combin. Graphs and Discovery = Dimacs Ser Discret M Graphs and Discovery = Dimacs. Ser. Discret. M. Graphs and Patterns in Mathematics and Theoretical Physics, Proceedings = P Symp Pure Math Graphs and Patterns in Mathematics and Theoretical Physics, Proceedings = P. Symp. Pure. Math. Graphs, Dioids and Semirings: New Models and Algorithms = Oper Res Comput Sci Graphs, Dioids and Semirings: New Models and Algorithms = Oper. Res. Comput. Sci. Graph Symmetry = Nato Adv Sci I C-mat Graph Symmetry = Nato. Adv. Sci. I. C-mat. Graph-theoretic Concepts in Computer-science = Lect Notes Comput Sc Graph-theoretic Concepts in Computer-science = Lect. Notes. Comput. Sc. Graph -theoretic Concepts in Computer Science = Lect Notes Comput Sc Graph -theoretic Concepts in Computer Science = Lect. Notes. Comput. Sc. Graph-theoretic Concepts in Computer Science = Lect Notes Comput Sc Graph-theoretic Concepts in Computer Science = Lect. Notes. Comput. Sc. Graph-theoretic Concepts in Computer Science /// = Lect Notes Comput Sc Graph-theoretic Concepts in Computer Science /// = Lect. Notes. Comput. Sc. Graph Theory and The Entropy Concept in Histochemistry = Prog Histochem Cytoc Graph Theory and The Entropy Concept in Histochemistry = Prog. Histochem. Cytoc. Graph Theory, Combinatorics, Algorithms, and Applications = Siam Proc S Graph Theory, Combinatorics, Algorithms, and Applications = Siam. Proc. S. Graph Theory, Computational Intelligence and Thought = Lect Notes Comput Sc Graph Theory, Computational Intelligence and Thought = Lect. Notes. Comput. Sc. Graph Theory in Paris = Trends Math Graph Theory in Paris = Trends. Math. Graph Transformations and Model-driven Engineering = Lect Notes Comput Sc Graph Transformations and Model-driven Engineering = Lect. Notes. Comput. Sc. Graph Transformations, Icgt 2008 = Lect Notes Comput Sc Graph Transformations, Icgt 2008 = Lect. Notes. Comput. Sc. Graph Transformations = Lect Notes Comput Sc Graph Transformations = Lect. Notes. Comput. Sc. Graph Transformations, Proceedings = Lect Notes Comput Sc Graph Transformations, Proceedings = Lect. Notes. Comput. Sc. Graptolites From The Upper Ordovician and Lower Silurian of Jordan = Sp Palaeont Graptolites From The Upper Ordovician and Lower Silurian of Jordan = Sp. Palaeont. Grasas y Aceites = Grasas Aceites Grasas Y Aceites = Grasas Aceites Grasas y Aceites (Seville) = Grasas Aceites (Seville) Grasping The Momentum of The Information Age = P Cause Ann Grasping The Momentum of The Information Age = P. Cause. Ann. Grass and Forage Science = Grass Forage Sci Grass and Forage Science = Grass Forage Sci. Grasshoppers and Grassland Health = Nato Asi 2 Grasshoppers and Grassland Health = Nato. Asi. 2. Grassland Biodiversity = Environ Sci Eng Tech Grassland Biodiversity = Environ. Sci. Eng. Tech. Grassland Science = Grassland Sci. Grassland Science = Grassl Sci Grassland Science = Grassl. Sci. Grassland Science in Europe = Grassland Sci Eur Grassland Science in Europe = Grassland Sci. Eur. Grassland Science in Perspective = Wag Ag Un P Grassland Science in Perspective = Wag. Ag. Un. P. Grassland Society of Southern Africa - Special Publication = Grassl Soc So Afr Sp Grassland Society of Southern Africa - Special Publication = Grassl. Soc. So. Afr. Sp. Grassland Systems Approaches = Etud Rech S Grassland Systems Approaches = Etud. Rech. S. Grassroots Development = Grassroots Dev Grassroots Literacy: Writing, Identity and Voice in Central Africa = Literacies Grassroots Literacy: Writing, Identity and Voice in Central Africa = Literacies. Grassroots Social Security in Asia: Mutual Aid, Microinsurance and Social Welfare = Rout Res Pub Soc Pol Grassroots Social Security in Asia: Mutual Aid, Microinsurance and Social Welfare = Rout. Res. Pub. Soc. Pol. Gratings and Grating Monochromators for Synchrotron Radiation = P Soc Photo-opt Ins Gratings and Grating Monochromators for Synchrotron Radiation = P. Soc. Photo-opt. Ins. Gratz College annual of Jewish studies. Gratz College = Gratz Coll Annual Jew Stud Gravitational and space biology bulletin : publication of the American Society for Gravitational and Space Biology = Gravit Space Biol Bull Gravitational Collapse: From Massive Stars to Planets = Rev Mex Ast Astr Gravitational Collapse: From Massive Stars to Planets = Rev. Mex. Ast. Astr. Gravitational Constant: Generalized Gravitational Theories and Experiments = Nato Sci Ser Ii-math Gravitational Constant: Generalized Gravitational Theories and Experiments = Nato. Sci. Ser. Ii-math. Gravitational Constant: Generalized Gravitational Theories and Experiments = Nato Sci Ser Ii Math Gravitational Constant: Generalized Gravitational Theories and Experiments = Nato. Sci. Ser. Ii. Math. Gravitational Effects in Fluid and Materials Science = Adv Space Res Gravitational Effects in Fluid and Materials Science = Adv. Space. Res. Gravitational Effects in Fluid and Materials Science = Adv Space Res-series Gravitational Effects in Fluid and Materials Science = Adv. Space. Res-series. Gravitational Effects in Materials and Fluid Sciences = Adv Space Res Gravitational Effects in Materials and Fluid Sciences = Adv. Space. Res. Gravitational Effects in Physico-chemical Processes = Adv Space Res Gravitational Effects in Physico-chemical Processes = Adv. Space. Res. Gravitational Lensing: An Astrophysical Tool = Lect Notes Phys Gravitational Lensing: An Astrophysical Tool = Lect. Notes. Phys. Gravitational Lensing = Lect Notes Phys Gravitational Lensing = Lect. Notes. Phys. Gravitational Lensing: Recent Progress and Future Goals = Astr Soc P Gravitational Lensing: Recent Progress and Future Goals = Astr. Soc. P. Gravitational Lensing: Strong, Weak and Micro = Saas Fee Ad Gravitational Lensing: Strong, Weak and Micro = Saas. Fee. Ad. Gravitational Physics: Testing Gravity From Submillimeter to Cosmic Scale = Aip Conf Proc Gravitational Physics: Testing Gravity From Submillimeter to Cosmic Scale = Aip. Conf. Proc. Gravitational Wave and Particle Astrophysics Detectors = P Soc Photo-opt Ins Gravitational Wave and Particle Astrophysics Detectors = P. Soc. Photo-opt. Ins. Gravitational-wave Detection = P Soc Photo-opt Ins Gravitational-wave Detection = P. Soc. Photo-opt. Ins. Gravitational Waves: A Challenge to Theoretical Astrophysics = Ictp Lect Notes Gravitational Waves: A Challenge to Theoretical Astrophysics = Ictp. Lect. Notes. Gravitational Waves = Aip Conf Proc Gravitational Waves = Aip. Conf. Proc. Gravitation and Cosmology = Aip Conf Proc Gravitation and Cosmology = Aip. Conf. Proc. Gravitation and Cosmology = Astrophys Space Sc L Gravitation and Cosmology = Astrophys. Space. Sc. L. Gravitation and Cosmology: From The Hubble Radius to The Planck Scale = Fund Theor Gravitation and Cosmology: From The Hubble Radius to The Planck Scale = Fund. Theor. Gravitation and Cosmology: From The Hubble Radius to The Planck Scale = Fund Theor Phys Gravitation and Cosmology: From The Hubble Radius to The Planck Scale = Fund. Theor. Phys. Gravitation and Cosmology = Gravitation Cosmol. Gravitation and Quantizations = Les Houch S Gravitation and Quantizations = Les. Houch. S. Gravitation As A Plastic Distortion of The Lorentz Vacuum = Fund Theor Phys Gravitation As A Plastic Distortion of The Lorentz Vacuum = Fund. Theor. Phys. Gravitation & Cosmology = Gravit Cosmol Gravitation & Cosmology = Gravit. Cosmol. Gravitation & Cosmology = Gravit Cosmol-russia Gravitation & Cosmology = Gravit. Cosmol-russia. Gravitation: From The Hubble Length to The Planck Length = Stud Hi Ener Phy Cos Gravitation: From The Hubble Length to The Planck Length = Stud. Hi. Ener. Phy. Cos. Gravity and Geoid = Iag Symp Gravity and Geoid = Iag. Symp. Gravity, Geoid and Earth Observation = Iag Symp Gravity, Geoid and Earth Observation = Iag. Symp. Gravity Geoid and Geodynamics 2000 = Iag Symp Gravity Geoid and Geodynamics 2000 = Iag. Symp. Gravity, Geoid and Space Missions = Iag Symp Gravity, Geoid and Space Missions = Iag. Symp. Gravity, Gradiometry, and Gravimetry = Iag Symp Gravity, Gradiometry, and Gravimetry = Iag. Symp. Grazer Beiträge: Zeitschrift für die klassische Altertumswissenschaft = GB Grazer Beiträge. Zeitschrift für die Klassische Altertumswissenschaft = GrazBeitr Grazer Mathematische Berichte = Grazer Math. Ber. Grazer Philosophische Studien 2009, Vol 78 = Grazer Philos Stud Grazer Philosophische Studien 2009, Vol 78 = Grazer Philos. Stud. Grazer Philosophische Studien = Grazer Philos Stud Grazer Philosophische Studien = Grazer Philos. Stud. Grazer Philosophische Studien : Internationale Zeitschrift Fur Analytische Philosophie = Graz Phil S Grazer Philosophische Studien : Internationale Zeitschrift Fur Analytische Philosophie = Graz. Phil. S. Grazer Philosophische Studien Internationale Zeitschrift Fur Analytische Philosophie = Graz Phil S Grazer Philosophische Studien Internationale Zeitschrift Fur Analytische Philosophie = Graz. Phil. S. Grazer Philosophische Studien, Vol 80 = Grazer Philos Stud Grazer Philosophische Studien, Vol 80 = Grazer Philos. Stud. Grazing Incidence and Multilayer X-ray Optical Systems = P Soc Photo-opt Ins Grazing Incidence and Multilayer X-ray Optical Systems = P. Soc. Photo-opt. Ins. Grazing in The Northeast = Nraes, Nat Res Agr E Grazing in The Northeast = Nraes,. Nat. Res. Agr. E. Graz Schumpeter Lectures = Graz Schumpeter Lect Graz Schumpeter Lectures = Graz Schumpeter Lect. GRB Coordinates Network = NASA-GCN Great Basin Naturalist = Great Basin Nat Great Basin Naturalist = Great Basin Nat. Great Basin Naturalist = Gt. Basin Nat. Greater Anatolia and The Indo-hittite Language Family = J Indo-eur Stud Mono Greater Anatolia and The Indo-hittite Language Family = J. Indo-eur. Stud. Mono. Greater Anatolia and The Indo-hittite Language Family = J Indo Eur Stud Mono Greater Anatolia and The Indo-hittite Language Family = J. Indo. Eur. Stud. Mono. Greater Milwaukee Dental Bulletin = Greater Milw. Dent. Bull. Greater St Louis Dental Society Bulletin = Greater St Louis Dent. Soc. Bull. Great Generals = Great Gen Great Generals = Great Gen. Great Historical Geomagnetic Storm of 1859: A Modern Look = Adv Space Res Great Historical Geomagnetic Storm of 1859: A Modern Look = Adv. Space. Res. Great Historical Geomagnetic Storm of 1859: A Modern Look = Adv Space Res-series Great Historical Geomagnetic Storm of 1859: A Modern Look = Adv. Space. Res-series. Great Issues for Medicine in The Twenty-first Century = Ann Ny Acad Sci Great Issues for Medicine in The Twenty-first Century = Ann. Ny. Acad. Sci. Great Lakes Entomologist = Great Lakes Entomol Great Lakes Entomologist = Great Lakes Entomol. Great Lakes Review-a Journal of Midwest Culture = Great Lakes Rev Great Lakes Review-a Journal of Midwest Culture = Great Lakes Rev. Great Ormond Street journal = Great Ormond St J Great Patriotic War of The Soviet Union, 1941-45: A Documentary Reader = Sov Russ Study War Great Patriotic War of The Soviet Union, 1941-45: A Documentary Reader = Sov. Russ. Study. War Great Plains Quarterly = Great Plains Quart Great Plains Quarterly = Great Plains Quart. Great Power Rivalries = Stud Int R Great Power Rivalries = Stud. Int. R. Great Powers and The Quest for Hegemony: The World Order Since 1500 = War Hist Polit Great Powers and The Quest for Hegemony: The World Order Since 1500 = War. Hist. Polit. Great Power Struggle in East Asia, 1944-50: Britain, America and Post-war Rivalry = Glob Confl Secur Great Power Struggle in East Asia, 1944-50: Britain, America and Post-war Rivalry = Glob. Confl. Secur. Great Thinkers in Economics = Great Think Econ Great Thinkers in Economics = Great Think. Econ. Great Whales = Austral Nat Hist Ser Great Whales = Austral. Nat. Hist. Ser. Greece and Italy: Ancient Roots & New Beginnings = Amer Ital Hist Assoc Greece and Italy: Ancient Roots & New Beginnings = Amer. Ital. Hist. Assoc. Greece and Rome = GaR Greece and Rome = G&R Greece and The Cold War = Cold War Hist-routl Greece and The Cold War = Cold War Hist-routl. Greece in A Changing Europe = Eur Change Greece in A Changing Europe = Eur. Change. Greece in The Making 1200-479 Bc, Second Edition = Routl Hist Anc World Greece in The Making 1200-479 Bc, Second Edition = Routl. Hist. Anc. World. Greece & Rome = Greece Rome Greek and Latin From An Indo-european Perspective = Camb C J Proc Cam Ph Greek and Latin From An Indo-european Perspective = Camb. C. J. Proc. Cam. Ph. Greek Documentary Papyri From Ptolemaic Egypt = Corpus Papyr Rainer Greek Documentary Papyri From Ptolemaic Egypt = Corpus. Papyr. Rainer. Greek economic review = Greek Econ Rev Greek Economic Review=Greek Econ. Rev. Greek Higher Education: Prospects for Reform = Public Policy Ser Greek Higher Education: Prospects for Reform = Public. Policy. Ser. Greek Naval Strategy and Policy, 1910-1919 = Cass Ser Nav Policy Greek Naval Strategy and Policy, 1910-1919 = Cass. Ser. Nav. Policy. Greek Ostraca From Abu Mina (o. Abu Mina) = Arch Papyrus Verwand Greek Ostraca From Abu Mina (o. Abu Mina) = Arch. Papyrus. Verwand. Greek, Roman and Byzantine Studies = GRBS Greek Roman and Byzantine Studies = Greek Roman Byzantin Greek Roman and Byzantine Studies = Greek Roman Byzantin. Greek, Roman and Byzantine studies = Greek Roman Byz Stud (Cambridge Mass) Greek, Roman and Byzantine Studies = GrRomByzSt Greeks On Greekness: Viewing The Greek Past Under The Roman Empire = Camb C J Proc Cam Ph Greeks On Greekness: Viewing The Greek Past Under The Roman Empire = Camb. C. J. Proc. Cam. Ph. Green Accounting in Europe: A Comparative Study, Volume 2 = Feem Ser Econ Envir Green Accounting in Europe: A Comparative Study, Volume 2 = Feem. Ser. Econ. Envir. Green and Pleasant Land = Gr Stud Cult Green and Pleasant Land = Gr. Stud. Cult. Green Building Technologies and Materials = Adv Mater Res-switz Green Building Technologies and Materials = Adv. Mater. Res-switz. Green Chemical Reactions = Nato Sci Peace Secur Green Chemical Reactions = Nato. Sci. Peace. Secur. Green Chemistry = Acs Sym Ser Green Chemistry = Acs. Sym. Ser. Green Chemistry and Chemical Engineering = Green Chem Chem Eng Green Chemistry and Chemical Engineering = Green Chem. Chem. Eng. Green Chemistry for Environmental Sustainability = Sustain-contrib Sci Green Chemistry for Environmental Sustainability = Sustain-contrib. Sci. Green Chemistry = Green Chem Green Chemistry = Green Chem. Green Chemistry Letters and Reviews = Green Chem Lett Rev Green Chemistry Letters and Reviews = Green Chem. Lett. Rev. Green Composites: Properties, Design and Life Cycle Assessment = Chem Eng Method Tech Green Composites: Properties, Design and Life Cycle Assessment = Chem. Eng. Method. Tech. Green Energy and Technology = Green Energy Technol Green Energy and Technology = Green Energy Technol. Green Fluorescent Protein = Method Enzymol Green Fluorescent Protein = Method. Enzymol. Green Gene Technology: Research in An Area of Social Conflict = Adv Biochem Eng Biot Green Gene Technology: Research in An Area of Social Conflict = Adv. Biochem. Eng. Biot. Green Giants? Environmental Policies of The United States and The European Union = Am Comp Environ Poli Green Giants? Environmental Policies of The United States and The European Union = Am. Comp. Environ. Poli. Greenhouse Effect and Uk Agriculture = Cas Paper Greenhouse Effect and Uk Agriculture = Cas. Paper. Greenhouse Effect Report = Greenhouse Eff Rep Greenhouse Effect Report = Greenhouse Eff. Rep. Greenhouse Effect, Sea Level and Drought = Nato Adv Sci I C-mat Greenhouse Effect, Sea Level and Drought = Nato. Adv. Sci. I. C-mat. Greenhouse Environment Control and Automation = Acta Hortic Greenhouse Environment Control and Automation = Acta. Hortic. Greenhouse Gas Control Technologies 9 = Enrgy Proced Greenhouse Gas Control Technologies 9 = Enrgy. Proced. Greenhouse Gases, Aerosols and Dust = Adv Space Res Greenhouse Gases, Aerosols and Dust = Adv. Space. Res. Greenhouse Gases, Ozone, and Electrodynamics; Their Changes in The Middle Atmosphere and Lower Thermosphere = Adv Space Res Greenhouse Gases, Ozone, and Electrodynamics; Their Changes in The Middle Atmosphere and Lower Thermosphere = Adv. Space. Res. Greenhouse Gases, Ozone, and Electrodynamics; Their Changes in The Middle Atmosphere and Lower Thermosphere = Adv Space Res-series Greenhouse Gases, Ozone, and Electrodynamics; Their Changes in The Middle Atmosphere and Lower Thermosphere = Adv. Space. Res-series. Greenhouse-impact On Cold-climate Ecosystems and Landscapes = Catena Supp Greenhouse-impact On Cold-climate Ecosystems and Landscapes = Catena. Supp. Green Industrial Applications of Ionic Liquids = Nato Sci Ser Ii-math Green Industrial Applications of Ionic Liquids = Nato. Sci. Ser. Ii-math. Green Industrial Applications of Ionic Liquids = Nato Sci Ser Ii Math Green Industrial Applications of Ionic Liquids = Nato. Sci. Ser. Ii. Math. Greening Airports: Advanced Technology and Operations = Green Energy Technol Greening Airports: Advanced Technology and Operations = Green. Energy. Technol. Greenland Caledonides: Evolution of The Northeast Margin of Laurentia = Geol Soc Am Mem Greenland Caledonides: Evolution of The Northeast Margin of Laurentia = Geol. Soc. Am. Mem. Greenland Geoscience = Greenl. Geosci. Green Metathesis Chemistry: Great Challenges in Synthesis, Catalysis and Nanotechnology = Nato Sci Peace Sec A Green Metathesis Chemistry: Great Challenges in Synthesis, Catalysis and Nanotechnology = Nato. Sci. Peace. Sec. A. Green Plants and Pollution Nature's Technology for Abating and Combating Environmental Pollution = Air Water Soil Sci T Green Plants and Pollution Nature's Technology for Abating and Combating Environmental Pollution = Air. Water. Soil. Sci. T. Green Polymer Chemistry: Biocatalysis and Biomaterials = Acs Sym Ser Green Polymer Chemistry: Biocatalysis and Biomaterials = Acs. Sym. Ser. Green Processing 2004 = Australas I Min Met Green Processing 2004 = Australas. I. Min. Met. Green Processing 2006 = Australas I Min Met Green Processing 2006 = Australas. I. Min. Met. Green Software Defined Radios: Enabling Seamless Connectivity While Saving On Hardware and Energy = Integr Circuit Syst Green Software Defined Radios: Enabling Seamless Connectivity While Saving On Hardware and Energy = Integr. Circuit. Syst. Green Taxes = New Hor Env Eco Green Taxes = New. Hor. Env. Eco. Green Trends in Insect Control = Rsc Green Chem Ser Green Trends in Insect Control = Rsc. Green Chem. Ser. Gregory of Nazianzus = Early Church Fathers Gregory of Nazianzus = Early. Church. Fathers. Gregory of Nyssa: Homilies On The Beatitudes = S Vigiliae Christi Gregory of Nyssa: Homilies On The Beatitudes = S. Vigiliae. Christi. Gregory Rift Valley and Neogene-recent Volcanoes of Northern Tanzania = Geol Soc Mem Gregory Rift Valley and Neogene-recent Volcanoes of Northern Tanzania = Geol. Soc. Mem. Gregory The Great - A Symposium = Notr Dam Theol Gregory The Great - A Symposium = Notr. Dam. Theol. Grenadiers of The World Oceans: Biology, Stock Assessment, and Fisheries = Am Fish S S Grenadiers of The World Oceans: Biology, Stock Assessment, and Fisheries = Am. Fish. S. S. Grenzen Des Ich: Die Verfassung Des Subjekts in Goethes Romanen Und Erzahlungen = Quell Forsch Lit Kul Grenzen Des Ich: Die Verfassung Des Subjekts in Goethes Romanen Und Erzahlungen = Quell. Forsch. Lit. Kul. Grenzgebiete der Wissenschaft = Grenzgeb Wiss Grey Mosaic, Piecing It All Together, Conference Proceedings = Gl Conference Ser Grey Mosaic, Piecing It All Together, Conference Proceedings = Gl. Conference Ser. Grey Room = Grey Room Grey Systems: Theory and Applications = Underst Complex Syst Grey Systems: Theory and Applications = Underst. Complex. Syst. Grid and Cooperative Computing Gcc 2004, Proceedings = Lect Notes Comput Sc Grid and Cooperative Computing Gcc 2004, Proceedings = Lect. Notes. Comput. Sc. Grid and Cooperative Computing Gcc 2004 Workshops, Proceedings = Lect Notes Comput Sc Grid and Cooperative Computing Gcc 2004 Workshops, Proceedings = Lect. Notes. Comput. Sc. Grid and Cooperative Computing - Gcc 2005, Proceedings = Lect Notes Comput Sc Grid and Cooperative Computing - Gcc 2005, Proceedings = Lect. Notes. Comput. Sc. Grid and Cooperative Computing, Pt 1 = Lect Notes Comput Sc Grid and Cooperative Computing, Pt 1 = Lect. Notes. Comput. Sc. Grid and Cooperative Computing, Pt 2 = Lect Notes Comput Sc Grid and Cooperative Computing, Pt 2 = Lect. Notes. Comput. Sc. Grid and Distributed Computing = Comm Com Inf Sc Grid and Distributed Computing = Comm. Com. Inf. Sc. Grid and Distributed Computing, Control and Automation = Comm Com Inf Sc Grid and Distributed Computing, Control and Automation = Comm. Com. Inf. Sc. Grid-based Problem Solving Environments = Int Fed Info Proc Grid-based Problem Solving Environments = Int. Fed. Info. Proc. Grid Computing - Grid 2000, Proceedings = Lect Notes Comput Sc Grid Computing - Grid 2000, Proceedings = Lect. Notes. Comput. Sc. Grid Computing - Grid 2002 = Lect Notes Comput Sc Grid Computing - Grid 2002 = Lect. Notes. Comput. Sc. Grid Computing in Life Science = Lect Notes Comput Sc Grid Computing in Life Science = Lect. Notes. Comput. Sc. Grid Computing = Lect Notes Comput Sc Grid Computing = Lect. Notes. Comput. Sc. Grid Computing: Towards A Global Interconnected Infrastructure = Comput Commun Netw S Grid Computing: Towards A Global Interconnected Infrastructure = Comput. Commun. Netw. S. Grid Economics and Business Models = Lect Notes Comput Sc Grid Economics and Business Models = Lect. Notes. Comput. Sc. Grid Economics and Business Models, Proceedings = Lect Notes Comput Sc Grid Economics and Business Models, Proceedings = Lect. Notes. Comput. Sc. Grid Enabled Remote Instrumentation = Sig Com Tec Grid Enabled Remote Instrumentation = Sig. Com. Tec. Grid Generation Methods, Second Edition = Sci Comput Grid Generation Methods, Second Edition = Sci. Comput. Grid Resource Management = Ch Crc Numer Anal Sc Grid Resource Management = Ch. Crc. Numer. Anal. Sc. Grid Resource Management = Lect Notes Comput Sc Grid Resource Management = Lect. Notes. Comput. Sc. Grid Services Engineering and Management, Proceedings = Lect Notes Comput Sc Grid Services Engineering and Management, Proceedings = Lect. Notes. Comput. Sc. Grid Technologies: Emerging From Distributed Architectures to Virtual Organizations = Adv Manag Inform Grid Technologies: Emerging From Distributed Architectures to Virtual Organizations = Adv. Manag. Inform. Griechische Dramen = Griech Dramen Griechische Dramen = Griech. Dramen Griechischen Christlichen Schriftsteller Der Ersten Jahrhunderte-neue Folge = Griech Christl Schri Griechischen Christlichen Schriftsteller Der Ersten Jahrhunderte-neue Folge = Griech. Christl. Schri. Griechische Studien = Beitr Altertumskunde Griechische Studien = Beitr. Altertumskunde. Grief After Suicide: Understanding The Consequences and Caring for The Survivors = Ser Death Dying Grief After Suicide: Understanding The Consequences and Caring for The Survivors = Ser. Death. Dying. Griff Nach Dem Ich? Ethische Kriterien Fur Die Medizinische Intervention in Das Menschliche Gehirn = Stud Wiss Ethik Griff Nach Dem Ich? Ethische Kriterien Fur Die Medizinische Intervention in Das Menschliche Gehirn = Stud. Wiss. Ethik. Grinding and Finishing = Grind Finish Grinding and Finishing = Grind. Finish. GRMA news = GRMA News Grobner Bases and The Computation of Group Cohomology = Lect Notes Math Grobner Bases and The Computation of Group Cohomology = Lect. Notes. Math. Gromov-witten Theory of Spin Curves and Orbifolds = Contemp Math Gromov-witten Theory of Spin Curves and Orbifolds = Contemp. Math. Groniek = Groniek Groningen Oriental Studies = Groningen Orient. Stud. Groningen Studies in Cultural Change = Gr Stud Cult Groningen Studies in Cultural Change = Gr. Stud. Cult. GROOTS = GROOTS Grossbootshaus - Zentrum Und Herrschaft: Zentralplatzforschung in Der Nordeuropaischen Archaologie (1-15 Jahrhundert) = Reallexikon Ger Alte Grossbootshaus - Zentrum Und Herrschaft: Zentralplatzforschung in Der Nordeuropaischen Archaologie (1-15 Jahrhundert) = Reallexikon. Ger. Alte. Grothendieck Duality and Base Change = Lect Notes Math Grothendieck Duality and Base Change = Lect. Notes. Math. Grothendieck Theory of Dessins D'enfants = Lond Math S Grothendieck Theory of Dessins D'enfants = Lond. Math. S. Grotian Theology of International Law = Relig Soc Grotian Theology of International Law = Relig. Soc. Ground/air Multi-sensor Interoperability, Integration, and Networking for Persistent Isr = P Soc Photo-opt Ins Ground/air Multi-sensor Interoperability, Integration, and Networking for Persistent Isr = P. Soc. Photo-opt. Ins. Ground-based and Airborne Instrumentation for Astronomy Iii = Proc Spie Ground-based and Airborne Instrumentation for Astronomy Iii = Proc. Spie. Ground-based and Airborne Instrumentation for Astronomy Iii = P Soc Photo-opt Ins Ground-based and Airborne Instrumentation for Astronomy Iii = P. Soc. Photo-opt. Ins. Ground-based and Airborne Instrumentation for Astronomy Ii, Pts 1-4 = Proc Spie Ground-based and Airborne Instrumentation for Astronomy Ii, Pts 1-4 = Proc. Spie. Ground-based and Airborne Instrumentation for Astronomy Ii, Pts 1-4 = P Soc Photo-opt Ins Ground-based and Airborne Instrumentation for Astronomy Ii, Pts 1-4 = P. Soc. Photo-opt. Ins. Ground-based and Airborne Instrumentation for Astronomy, Pts 1- 3 = Proc Spie Ground-based and Airborne Instrumentation for Astronomy, Pts 1- 3 = Proc. Spie. Ground-based and Airborne Instrumentation for Astronomy, Pts 1- 3 = P Soc Photo-opt Ins Ground-based and Airborne Instrumentation for Astronomy, Pts 1- 3 = P. Soc. Photo-opt. Ins. Ground-based and Airborne Telescopes Iii = Proc Spie Ground-based and Airborne Telescopes Iii = Proc. Spie. Ground-based and Airborne Telescopes Iii = P Soc Photo-opt Ins Ground-based and Airborne Telescopes Iii = P. Soc. Photo-opt. Ins. Ground-based and Airborne Telescopes Ii, Pts 1-3 = Proc Spie Ground-based and Airborne Telescopes Ii, Pts 1-3 = Proc. Spie. Ground-based and Airborne Telescopes, Pts 1 and 2 = Proc Spie Ground-based and Airborne Telescopes, Pts 1 and 2 = Proc. Spie. Ground-based and Airborne Telescopes, Pts 1 and 2 = P Soc Photo-opt Ins Ground-based and Airborne Telescopes, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Ground-based Instrumentation for Astronomy, Pts 1-3 = Proc Spie Ground-based Instrumentation for Astronomy, Pts 1-3 = Proc. Spie. Ground-based Instrumentation for Astronomy, Pts 1-3 = P Soc Photo-opt Ins Ground-based Instrumentation for Astronomy, Pts 1-3 = P. Soc. Photo-opt. Ins. Ground-based Telescopes, Pts 1 and 2 = Proc Spie Ground-based Telescopes, Pts 1 and 2 = Proc. Spie. Ground-based Telescopes, Pts 1 and 2 = P Soc Photo-opt Ins Ground-based Telescopes, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Ground Engineering = Ground Eng Ground Engineering = Ground Eng. Grounding = Cog Lin Res Grounding = Cog. Lin. Res. Grounding = Cogn Linguist Res Grounding = Cogn. Linguist. Res. Grounding The Nietzsche Rhetoric of Earth = Monogr Texte Nietzsc Grounding The Nietzsche Rhetoric of Earth = Monogr. Texte. Nietzsc. Ground Sensing = P Soc Photo-opt Ins Ground Sensing = P. Soc. Photo-opt. Ins. Ground Support Equipment in The 21st Century = Imeche Sem Ground Support Equipment in The 21st Century = Imeche. Sem. Ground Vehicle Engineering = Ground Veh Eng Ground Vehicle Engineering = Ground Veh. Eng. Ground Vibration Engineering: Simplified Analyses With Case Studies and Examples = Geotech Geol Earthq Ground Vibration Engineering: Simplified Analyses With Case Studies and Examples = Geotech. Geol. Earthq. Ground Water Age = Ground Water Age Groundwater and Ecosystems = Nato Sci S Ss Iv Ear Groundwater and Ecosystems = Nato. Sci. S. Ss. Iv. Ear. Groundwater and Human Development = Int Assoc Hydrogeol Groundwater and Human Development = Int. Assoc. Hydrogeol. Groundwater and Subsurface Remediation = Environm Engn Groundwater and Subsurface Remediation = Environm. Engn. Groundwater: An Endangered Resource = Water Chang Glob Com Groundwater: An Endangered Resource = Water. Chang. Glob. Com. Ground water = Ground Water Ground Water = Ground Water Groundwater Intensive Use = Int Assoc Hydrogeol Groundwater Intensive Use = Int. Assoc. Hydrogeol. Groundwater in The Urban Environment = Int Assoc Hydrogeol Groundwater in The Urban Environment = Int. Assoc. Hydrogeol. Groundwater: Legal and Policy Perspectives = World Ban T Groundwater: Legal and Policy Perspectives = World. Ban. T. Ground Water Management = Gr Wat Man Ground Water Management = Gr. Wat. Man. Groundwater Management in Asian Cities: Technology and Policy for Sustainability = Csur Ut Ser Lib Sust Groundwater Management in Asian Cities: Technology and Policy for Sustainability = Csur. Ut. Ser. Lib. Sust. Groundwater Management in The East of The European Union: Transboundary Strategies for Sustainable Use and Protection of Resources = Nato Sci Peace Secur Groundwater Management in The East of The European Union: Transboundary Strategies for Sustainable Use and Protection of Resources = Nato. Sci. Peace. Secur. Groundwater Management : Quantity and Quality = Iahs-aish P Groundwater Management : Quantity and Quality = Iahs-aish. P. Ground Water Monitoring and Remediation = Ground Water Monit R Ground Water Monitoring and Remediation = Ground Water Monit. R. Ground Water Monitoring and Remediation = Ground Water Monit. Rem. Ground Water Monitoring Review = Ground Water Monit. Rev. Groundwater Quality Management = Iahs-aish P Groundwater Quality Management = Iahs-aish. P. Groundwater Quality: Natural and Enhanced Restoration of Groundwater Pollution = Iahs-aish P Groundwater Quality: Natural and Enhanced Restoration of Groundwater Pollution = Iahs-aish. P. Groundwater Quality: Remediation and Protection (gq'95) = Iahs-aish P Groundwater Quality: Remediation and Protection (gq'95) = Iahs-aish. P. Groundwater Quality: Remediation and Protection = Iahs-aish P Groundwater Quality: Remediation and Protection = Iahs-aish. P. Groundwater Recharge From Run-off, Infiltration and Percolation = Water Sci Technol Li Groundwater Recharge From Run-off, Infiltration and Percolation = Water. Sci. Technol. Li. Groundwater Residue Sampling Design = Acs Sym Ser Groundwater Residue Sampling Design = Acs. Sym. Ser. Group 13 Chemistry 1: Fundamental New Developments = Struct Bond Group 13 Chemistry 1: Fundamental New Developments = Struct. Bond. Group 13 Chemistry: From Fundamentals to Applications = Acs Sym Ser Group 13 Chemistry: From Fundamentals to Applications = Acs. Sym. Ser. Group 13 Chemistry Iii: Industrial Applications = Struct Bond Group 13 Chemistry Iii: Industrial Applications = Struct. Bond. Group 13 Chemistry Ii = Struct Bond Group 13 Chemistry Ii = Struct. Bond. Group 24 : Physical and Mathematical Aspects of Symmetries = Inst Phys Conf Ser Group 24 : Physical and Mathematical Aspects of Symmetries = Inst. Phys. Conf. Ser. Group and Ring Theoretic Properties of Polycyclic Groups = Algebra Appl Group and Ring Theoretic Properties of Polycyclic Groups = Algebra. Appl. Group-based Cryptography = Ad Co Math Group-based Cryptography = Ad. Co. Math. Group B Coxsackieviruses = Curr Top Microbiol Group B Coxsackieviruses = Curr. Top. Microbiol. Group Communications and Charges, Proceedings = Lect Notes Comput Sc Group Communications and Charges, Proceedings = Lect. Notes. Comput. Sc. Group Coordination and Cooperative Control = Lect Notes Contr Inf Group Coordination and Cooperative Control = Lect. Notes. Contr. Inf. Group Decision and Negotiation = Group Decis Negot Group Decision and Negotiation = Group Decis. Negot. Group Dynamics-theory Research and Practice = Group Dyn-theor Res Group Dynamics-theory Research and Practice = Group Dyn-theor. Res. Group dynamics : theory, research, and practice : the official journal of Division 49, Group Psychology and Group Psychotherapy of the American Psychological Association = Group Dyn Groupes De Chow-witt = Mem Soc Math Fr Groupes De Chow-witt = Mem. Soc. Math. Fr. Group = Group Group Health Journal = Group Health J. Group Identities On Units and Symmetric Units of Group Rings = Algebra Appl Group Identities On Units and Symmetric Units of Group Rings = Algebra. Appl. Group Iii Nitride Semiconductor Compounds = S Semi Sci Group Iii Nitride Semiconductor Compounds = S. Semi. Sci. Group Iv Semiconductor Nanostructures-2006 = Mater Res Soc Symp P Group Iv Semiconductor Nanostructures-2006 = Mater. Res. Soc. Symp. P. Group-iv Semiconductor Nanostructures = Mater Res Soc Symp P Group-iv Semiconductor Nanostructures = Mater. Res. Soc. Symp. P. Group of 7/8 = Glob Inst Group of 7/8 = Glob. Inst. Group & Organization Management = Group Organ Manage Group & Organization Management = Group Organ. Manage. Group & Organization Studies = Group Organ Stud Group & Organization Studies = Group Organ. Stud. Group practice = Group Pract Group Practice = Group Pract. Group practice journal = Group Pract J Group Practice Journal = Group Pract J Group Practice Journal = Group Pract. J. Group Processes & Intergroup Relations = Group Process Interg Group Processes & Intergroup Relations = Group Process. Interg. Group Psychotherapy and Psychodrama = Group Psychother Psy Group Psychotherapy and Psychodrama = Group Psychother. Psy. Group Psychotherapy Psychodrama & Sociometry = Group Psychother Psy Group Psychotherapy Psychodrama & Sociometry = Group Psychother. Psy. Group Representations, Ergodic Theory, and Mathematical Physics: A Tribute to George W. Mackey = Contemp Math Group Representations, Ergodic Theory, and Mathematical Physics: A Tribute to George W. Mackey = Contemp. Math. Group Rights = Toronto St Philos Group Rights = Toronto. St. Philos. Groups, Algebras and Applications = Contemp Math Groups, Algebras and Applications = Contemp. Math. Groups and Computation Iii = Ohio St U M Groups and Computation Iii = Ohio. St. U. M. Groups and Geometries = Trends Math Groups and Geometries = Trends. Math. Groups and Symmetries: From Neolithic Scots to John Mckay = Crm Proc & Lect Note Groups and Symmetries: From Neolithic Scots to John Mckay = Crm. Proc. &. Lect. Note. Groups-canberra 1989 = Lect Notes Math Groups-canberra 1989 = Lect. Notes. Math. Groups, Difference Sets, and The Monster = Ohio St U M Groups, Difference Sets, and The Monster = Ohio. St. U. M. Group Search Optimization for Applications in Structural Design = Adapt Learn Optim Group Search Optimization for Applications in Structural Design = Adapt. Learn. Optim. Groups Geometry and Dynamics = Group Geom Dynam Groups Geometry and Dynamics = Group. Geom. Dynam. Groups - Korea 1988 = Lect Notes Math Groups - Korea 1988 = Lect. Notes. Math. Groups, Languages, Algorithms = Contemp Math Groups, Languages, Algorithms = Contemp. Math. Groups of Galaxies = Astr Soc P Groups of Galaxies = Astr. Soc. P. Groups of Galaxies in The Nearby Universe, Proceedings = Eso Astrophy Symp Groups of Galaxies in The Nearby Universe, Proceedings = Eso. Astrophy. Symp. Groups of Lie Type and Their Geometries - Como 1993 = Lond Math S Groups of Lie Type and Their Geometries - Como 1993 = Lond. Math. S. Groups of Prime Power Order, Vol 1 = Degruyter Expos Math Groups of Prime Power Order, Vol 1 = Degruyter. Expos. Math. Groups of Prime Power Order, Vol 2 = Degruyter Expos Math Groups of Prime Power Order, Vol 2 = Degruyter. Expos. Math. Groups of Self-equivalences and Related Topics = Lect Notes Math Groups of Self-equivalences and Related Topics = Lect. Notes. Math. Groups, Rings and Algebras = Contemp Math Groups, Rings and Algebras = Contemp. Math. Groups, Rings and Group Rings = Contemp Math Groups, Rings and Group Rings = Contemp. Math. Groups, Rings and Group Rings = Lect Notes Pure Appl Groups, Rings and Group Rings = Lect. Notes. Pure. Appl. Groups, Rings, Lie and Hopf Algebras = Math Appl Groups, Rings, Lie and Hopf Algebras = Math. Appl. Groups, Rules and Legal Practice = Law Philos Libr Groups, Rules and Legal Practice = Law. Philos. Libr. Group Theory and Numerical Analysis = Crm Proc & Lect Note Group Theory and Numerical Analysis = Crm. Proc. &. Lect. Note. Group Theory: Classes, Representation and Connections, and Applications = Math Res Dev Group Theory: Classes, Representation and Connections, and Applications = Math. Res. Dev. Group Theory in Physics = Aip Conf Proc Group Theory in Physics = Aip. Conf. Proc. Groupware: Design, Implementation, and Use = Lect Notes Comput Sc Groupware: Design, Implementation, and Use = Lect. Notes. Comput. Sc. Groupware-design: Implementation, and Use, Proceedings = Lect Notes Comput Sc Groupware-design: Implementation, and Use, Proceedings = Lect. Notes. Comput. Sc. Groupware: Design, Implementation, and Use, Proceedings = Lect Notes Comput Sc Groupware: Design, Implementation, and Use, Proceedings = Lect. Notes. Comput. Sc. Grouting and Ground Treatment, Vol 2, Proceedings = Geotech Sp Grouting and Ground Treatment, Vol 2, Proceedings = Geotech. Sp. Grouting: Compaction, Remediation and Testing = Geotech Sp Grouting: Compaction, Remediation and Testing = Geotech. Sp. Grouting, Soil Improvement and Geosynthetics, Vols 1 and 2 = Geotech Sp Grouting, Soil Improvement and Geosynthetics, Vols 1 and 2 = Geotech. Sp. Grouts and Grouting = Geotech Sp Grouts and Grouting = Geotech. Sp. Growing A Safety Culture = Int Air Saf Sem P Growing A Safety Culture = Int. Air. Saf. Sem. P. Growing A Soul for Social Change: Building The Knowledge Base for Social Justice = Teach Learn Indig In Growing A Soul for Social Change: Building The Knowledge Base for Social Justice = Teach. Learn. Indig. In. Growing Black Holes: Accretion in A Cosmological Context = Eso Astrophy Symp Growing Black Holes: Accretion in A Cosmological Context = Eso. Astrophy. Symp. Growing Gap Between Emerging Technologies and Legal-ethical Oversight: The Pacing Problem = Int Libr Eth Law Tec Growing Gap Between Emerging Technologies and Legal-ethical Oversight: The Pacing Problem = Int. Libr. Eth. Law. Tec. Growing Greener Cities: Urban Sustainability in The Twenty-first Century = City 21st Century Growing Greener Cities: Urban Sustainability in The Twenty-first Century = City. 21st. Century Growing Horse: Nutrition and Prevention of Growth Disorders = Eaap Public Growing Horse: Nutrition and Prevention of Growth Disorders = Eaap. Public. Growing Our Future = Kum P Lib M Growing Our Future = Kum. P. Lib. M. Growth Abnormalities / = Serono Sym Growth Abnormalities / = Serono. Sym. Growth and change = Growth Change Growth and Change=Growth Change Growth and Change = Growth Change Growth and Characterization of Materials for Infrared Detectors and Nonlinear Optical Switches = P Soc Photo-opt Ins Growth and Characterization of Materials for Infrared Detectors and Nonlinear Optical Switches = P. Soc. Photo-opt. Ins. Growth and Characterization of Materials for Infrared Detectors Ii = P Soc Photo-opt Ins Growth and Characterization of Materials for Infrared Detectors Ii = P. Soc. Photo-opt. Ins. Growth and Characterization of Materials for Infrared Detectors = P Soc Photo-opt Ins Growth and Characterization of Materials for Infrared Detectors = P. Soc. Photo-opt. Ins. Growth and Collapse of The Tibetan Plateau = Geol Soc Spec Publ Growth and Collapse of The Tibetan Plateau = Geol. Soc. Spec. Publ. Growth and Development of Computer-aided Innovation = Ifip Adv Inf Comm Te Growth and Development of Computer-aided Innovation = Ifip. Adv. Inf. Comm. Te. Growth and Employment in Europe and North America = Rand Conf Proc Growth and Employment in Europe and North America = Rand. Conf. Proc. Growth and Form = Nato Adv Sci I B-phy Growth and Form = Nato. Adv. Sci. I. B-phy. Growth and Innovation of Competitive Regions = Adv Spat Sci Growth and Innovation of Competitive Regions = Adv. Spat. Sci. Growth and Productivity in East Asia = Nber E A Ec Growth and Productivity in East Asia = Nber. E. A. Ec. Growth, Characterisation and Applications of Bulk Ii-vis = Eur Mat Res Growth, Characterisation and Applications of Bulk Ii-vis = Eur. Mat. Res. Growth, Characterization, and Applications of Laser Host and Nonlinear Crystals Ii = P Soc Photo-opt Ins Growth, Characterization, and Applications of Laser Host and Nonlinear Crystals Ii = P. Soc. Photo-opt. Ins. Growth, Characterization, and Applications of Laser Host and Nonlinear Crystals = P Soc Photo-opt Ins Growth, Characterization, and Applications of Laser Host and Nonlinear Crystals = P. Soc. Photo-opt. Ins. Growth Determinants in Aquaculture = Oceanis S D Growth Determinants in Aquaculture = Oceanis. S. D. Growth, development, and aging : GDA = Growth Dev Aging Growth, Development and Aging = Growth. Dev. Aging Growth, Development, and Aging=Growth Dev Aging;; Growth Development and Aging = Growth Develop Aging Growth Development and Aging = Growth Develop. Aging Growth Disorders : The State of The Art = Serono Sym Growth Disorders : The State of The Art = Serono. Sym. Growth, Distribution and Innovations: Understanding Their Interrelations = Graz Schumpeter Lect Growth, Distribution and Innovations: Understanding Their Interrelations = Graz. Schumpeter. Lect. Growth Economics of Asia Series = Growth Econ Asia Ser Growth Economics of Asia Series = Growth Econ. Asia Ser. Growth, Fabrication, Devices, and Applications of Laser and Nonlinear Materials = P Soc Photo-opt Ins Growth, Fabrication, Devices, and Applications of Laser and Nonlinear Materials = P. Soc. Photo-opt. Ins. Growth Factors and Oncogenes = Colloq Inse Growth Factors and Oncogenes = Colloq. Inse. Growth Factors and The Cardiovascular System = Dev Cardiovasc Med Growth Factors and The Cardiovascular System = Dev. Cardiovasc. Med. Growth Factors and The Ovary = Serono Symp Growth Factors and The Ovary = Serono. Symp. Growth Factors and Wound Healing = Serono Symp Growth Factors and Wound Healing = Serono. Symp. Growth Factors As Drugs for Neurological and Sensory Disorders = Ciba F Symp Growth Factors As Drugs for Neurological and Sensory Disorders = Ciba. F. Symp. Growth Factors: Cell Growth, Morphogenesis, and Transformation = Gann Monogr Canc Res Growth Factors: Cell Growth, Morphogenesis, and Transformation = Gann. Monogr. Canc. Res. Growth factors (Chur, Switzerland) = Growth Factors Growth Factors : From Genes to Clinical Applications = Kar Ins Ncs Growth Factors : From Genes to Clinical Applications = Kar. Ins. Ncs. Growth Factors = Growth Factors Growth Factors in Health and Disease = Int Congr Ser Growth Factors in Health and Disease = Int. Congr. Ser. Growth Factors in Perinatal Development = Bms Mj Nutr Growth Factors in Perinatal Development = Bms. Mj. Nutr. Growth Factors in Reproduction = Serono Symp Growth Factors in Reproduction = Serono. Symp. Growth Factors, Peptides, and Receptors = Gwumc Dept Growth Factors, Peptides, and Receptors = Gwumc. Dept. Growth Factors (Yverdon-Les-Bains=Growth Factors;; Growth = Growth Growth = Growth Develop Aging Growth = Growth Develop. Aging. Growth Hormone and IGF Research = Growth Horm. IGF Res. Growth Hormone Deficiency in Adults = Front Horm Res Growth Hormone Deficiency in Adults = Front. Horm. Res. Growth Hormone & Igf Research = Growth Horm Igf Res Growth Hormone & Igf Research = Growth Horm. Igf Res. Growth hormone & IGF research : official journal of the Growth Hormone Research Society and the International IGF Research Society = Growth Horm IGF Res Growth Hormone Ii = Serono Symp Growth Hormone Ii = Serono. Symp. Growth Hormone/insulin-like Growth Factor Axis During Development = Adv Exp Med Biol Growth Hormone/insulin-like Growth Factor Axis During Development = Adv. Exp. Med. Biol. Growth Modification: What Works, What Doesn't, and Why = Cranio Grow Growth Modification: What Works, What Doesn't, and Why = Cranio. Grow. Growth of Firms: A Survey of Theories and Empirical Evidence = New Perspect Mod Cor Growth of Firms: A Survey of Theories and Empirical Evidence = New. Perspect. Mod. Cor. Growth of Semiconductor Structures and High-tc Thin Films On Semiconductors = P Soc Photo-opt Ins Growth of Semiconductor Structures and High-tc Thin Films On Semiconductors = P. Soc. Photo-opt. Ins. Growth-oriented Women Entrepreneurs and Their Businesses: A Global Research Perspective = New Horiz Entrep Growth-oriented Women Entrepreneurs and Their Businesses: A Global Research Perspective = New. Horiz. Entrep. Growth Patterns in Physical Sciences and Biology = Nato Adv Sci Inst Se Growth Patterns in Physical Sciences and Biology = Nato. Adv. Sci. Inst. Se. Growth Plate = Biom Hlth R Growth Plate = Biom. Hlth. R. Growth Processes and Surface Phase Equilibria in Molecular Beam Epitaxy = Springer Tr Mod Phys Growth Processes and Surface Phase Equilibria in Molecular Beam Epitaxy = Springer. Tr. Mod. Phys. Growth, Processing, and Characterization of Semiconductor Heterostructures = Mater Res Soc Symp P Growth, Processing, and Characterization of Semiconductor Heterostructures = Mater. Res. Soc. Symp. P. Growth regulation = Growth Regul Growth Regulation=Growth Regul;; Growth Regulation = Growth Regul. Growth Regulation = Growth Regulat Growth Regulation = Growth Regulat. Growth Regulation of Cancer Ii = Ucla Sym Bi Growth Regulation of Cancer Ii = Ucla. Sym. Bi. Growth Regulation of Thyroid Gland and Thyroid Tumors = Front Horm Res Growth Regulation of Thyroid Gland and Thyroid Tumors = Front. Horm. Res. Growth, Technology, Planning, and Geographic Education in Central Florida: Images and Encounters = Pathw Geog Ser Growth, Technology, Planning, and Geographic Education in Central Florida: Images and Encounters = Pathw. Geog. Ser. Growth Theory of Subharmonic Functions = Birkhauser Adv Texts Growth Theory of Subharmonic Functions = Birkhauser. Adv. Texts. Grs Berichte = Grs Bericht Grs Berichte = Grs Bericht. Grudnaia i Serdechno-Sosudistaia Khirurgiia = Grud. Serdechnososudistaia. Khir. Grudnaia i serdechno-sosudistaia khirurgiia / Ministerstvo zdravookhraneniia SSSR [i] Vsesoiuznoe nauchnoe obshchestvo khirurgov = Grud Serdechnososudistaia Khir Grudnaia Khirurgiia = Grudn. Khir. Grudnaia khirurgiia (Moscow, Russia) = Grudn Khir Grundfragen aus der Silikoseforschung = Grundfragen Silikoseforsch Grundlagen Der Klassischen Triz, 2005 = Vdi-buch Grundlagen Der Klassischen Triz, 2005 = Vdi-buch. Grundlagen Der Klassischen Triz: Ein Praktisches Lehrbuch Des Erfinderischen Denkens Fur Ingenieure = Vdi-buch Grundlagen Der Klassischen Triz: Ein Praktisches Lehrbuch Des Erfinderischen Denkens Fur Ingenieure = Vdi-buch. Grundlagen Der Kommunikation Und Kognition, Bibliotheksausgabe = Grundl Komm Grundlagen Der Kommunikation Und Kognition, Bibliotheksausgabe = Grundl. Komm. Grundlagen Und Grenzen Des Folterverbotes in Verschiedenen Rechtskreisen = Beitr Ausl Offentl R Grundlagen Und Grenzen Des Folterverbotes in Verschiedenen Rechtskreisen = Beitr. Ausl. Offentl. R. Grundlehren der Mathematischen Wissenschaften = Grundlehren Math. Wiss. Grundlehren Der Mathematischen Wissenschaften = Grundlehr Math Wiss Grundlehren Der Mathematischen Wissenschaften = Grundlehr. Math. Wiss. Grundthemen Philosophie = Grundthemen Philos Grundthemen Philosophie = Grundthemen Philos. Grundwasser = Grundwasser Grundwissen Mathematik = Grundwissen Math. Grüne, Die = Grüne Gruppendynamik Forschung Und Praxis = Gruppendynam Forsch Gruppendynamik Forschung Und Praxis = Gruppendynam. Forsch. Gruppendynamik Und Organisationsberatung = Gruppendynamik Organ Gruppendynamik Und Organisationsberatung = Gruppendynamik Organ. Gruppendynamik-zeitschrift Fur Angewandte Sozialpsychologie = Gruppendynamik Gruppendynamik-zeitschrift Fur Angewandte Sozialpsychologie = Gruppendynamik. Gruppenpsychotherapie Und Gruppendynamik = Gruppenpsychother Gr Gruppenpsychotherapie Und Gruppendynamik = Gruppenpsychother. Gr. Gruppenstil Der Raf Im Info-system = Linguist-impulse Ten Gruppenstil Der Raf Im Info-system = Linguist-impulse. Ten. Gruzlica i Choroby Pluc = Gruzlica Gruzlica i choroby pluc; tuberculosis et pneumonologia = Gruzlica Gruzlica (Warsaw, Poland : 1926) = Gruzlica Grzybowski Foundation Special Publication = Grzyb Found Spec Pub Grzybowski Foundation Special Publication = Grzyb. Found. Spec. Pub. GSA today : a publication of the Geological Society of America = GSA Today G Stanley Hall Lecture Series = G S Hall L G Stanley Hall Lecture Series = G S. Hall L. G Stanley Hall Lecture Series, Vol 9 = G S Hall L G Stanley Hall Lecture Series, Vol 9 = G S. Hall L. Gtpase-controlled Molecular Machines = Chall Mod Med Gtpase-controlled Molecular Machines = Chall. Mod. Med. Gtpases Regulating Membrane Dynamics = Method Enzymol Gtpases Regulating Membrane Dynamics = Method. Enzymol. Gtpases Regulating Membrane Targeting and Fusion = Method Enzymol Gtpases Regulating Membrane Targeting and Fusion = Method. Enzymol. Gtpase Superfamily = Ciba F Symp Gtpase Superfamily = Ciba. F. Symp. Guam recorder = Guam Rec Guang ming ri bao = Guang Ming Ri Bao Guangpuxue Yu Guangpu Fenxi = Guangpuxue Yu Guangpu Fenxi Guangxi nongye shengwu kexue = Journal of agricultural and biological science|Guangxi Nongye Shengwu Kexue Guangxi Sciences = Guangxi Sci. Guangxue Xuebao = Guangxue Xuebao Guanine-nucleotide Binding Proteins = Nato Adv Sci I A-lif Guanine-nucleotide Binding Proteins = Nato. Adv. Sci. I. A-lif. Guanxi and Business Strategy = Contrib Manag Sci Guanxi and Business Strategy = Contrib. Manag. Sci. Guatemala indigena = Guatem Indig Guatemalans in The Aftermath of Violence: The Refugees' Return = Ethnogr Polit Violen Guatemalans in The Aftermath of Violence: The Refugees' Return = Ethnogr. Polit. Violen. Guerres Mondiales Et Conflits Contemporains = Guerre Mond Conf Con Guerres Mondiales Et Conflits Contemporains = Guerre. Mond. Conf. Con. Guerres mondiales et conflits contemporains = Guerr Mond Conflits Contemp Guidance and Control 1990 = Adv Astronaut Sci Guidance and Control 1990 = Adv. Astronaut. Sci. Guidance and Control 1991 = Adv Astronaut Sci Guidance and Control 1991 = Adv. Astronaut. Sci. Guidance and Control 1992 = Adv Astronaut Sci Guidance and Control 1992 = Adv. Astronaut. Sci. Guidance and Control 1993 = Adv Astronaut Sci Guidance and Control 1993 = Adv. Astronaut. Sci. Guidance and Control 1994 = Adv Astronaut Sci Guidance and Control 1994 = Adv. Astronaut. Sci. Guidance and Control 1995 = Adv Astronaut Sci Guidance and Control 1995 = Adv. Astronaut. Sci. Guidance and Control 1996 = Adv Astronaut Sci Guidance and Control 1996 = Adv. Astronaut. Sci. Guidance and Control 1997 = Adv Astronaut Sci Guidance and Control 1997 = Adv. Astronaut. Sci. Guidance and Control 1998 = Adv Astronaut Sci Guidance and Control 1998 = Adv. Astronaut. Sci. Guidance and Control 1999 = Adv Astronaut Sci Guidance and Control 1999 = Adv. Astronaut. Sci. Guidance and Control 2000 = Adv Astronaut Sci Guidance and Control 2000 = Adv. Astronaut. Sci. Guidance and Control 2001 = Adv Astronaut Sci Guidance and Control 2001 = Adv. Astronaut. Sci. Guidance and Control 2002 = Adv Astronaut Sci Guidance and Control 2002 = Adv. Astronaut. Sci. Guidance and Control 2003 = Adv Astronaut Sci Guidance and Control 2003 = Adv. Astronaut. Sci. Guidance and Control 2004 = Adv Astronaut Sci Guidance and Control 2004 = Adv. Astronaut. Sci. Guidance and Control 2005 = Adv Astronaut Sci Guidance and Control 2005 = Adv. Astronaut. Sci. Guidance and Control 2006 = Adv Astronaut Sci Guidance and Control 2006 = Adv. Astronaut. Sci. Guidance and Control 2007 = Adv Astronaut Sci Guidance and Control 2007 = Adv. Astronaut. Sci. Guidance and Control 2008 = Adv Astronaut Sci Guidance and Control 2008 = Adv. Astronaut. Sci. Guidance and Control 2009 = Adv Astronaut Sci Guidance and Control 2009 = Adv. Astronaut. Sci. Guidance and Control 2010 = Adv Astronaut Sci Guidance and Control 2010 = Adv. Astronaut. Sci. Guidance and Control of Underwater Vehicles 2003 = Ifac Work S Guidance and Control of Underwater Vehicles 2003 = Ifac. Work. S. Guidebook for Field Trips in The Connecticut Valley Region of Massachusetts and Adjacent States, Vols 1 and 2 = U Ma Dgg C Guidebook for Field Trips in The Connecticut Valley Region of Massachusetts and Adjacent States, Vols 1 and 2 = U. Ma. Dgg. C. Guide du praticien; edition du district parisien = Guide Prat Guided Wave Nonlinear Optics = Nato Adv Sci I E-app Guided Wave Nonlinear Optics = Nato. Adv. Sci. I. E-app. Guidelines for Mastering The Properties of Molecular Sieves = Nato Adv Sci I B-phy Guidelines for Mastering The Properties of Molecular Sieves = Nato. Adv. Sci. I. B-phy. Guides to Economic and Political Developments in Asia = Guide Econ Polit Dev Guides to Economic and Political Developments in Asia = Guide. Econ. Polit. Dev. Guides to Pastoral Care Series = Guid Pastor Guides to Pastoral Care Series = Guid. Pastor. Guide to Advanced Real Analysis = Dolciani Math Expo Guide to Advanced Real Analysis = Dolciani. Math. Expo. Guide to Complex Variables = Dolciani Math Expo Guide to Complex Variables = Dolciani. Math. Expo. Guide to Doing Statistics in Second Language Research Using Spss = Second Lang Acquis R Guide to Doing Statistics in Second Language Research Using Spss = Second Lang. Acquis. R. Guide to E-science: Next Generation Scientific Research and Discovery = Comput Commun Netw S Guide to E-science: Next Generation Scientific Research and Discovery = Comput. Commun. Netw. S. Guide to Hemorrhoidal Disease = Adv Biol Med Guide to Hemorrhoidal Disease = Adv. Biol. Med. Guide to Information Sources = Guide Inform Sources Guide to Information Sources = Guide Inform. Sources Guide to Intelligent Data Analysis: How to Intelligently Make Sense of Real Data = Texts Comput Sci Guide to Intelligent Data Analysis: How to Intelligently Make Sense of Real Data = Texts. Comput. Sci. Guide to Ocr for Indic Scripts = Adv Pattern Recognit Guide to Ocr for Indic Scripts = Adv. Pattern. Recognit. Guide to Protein Purification, Second Edition = Method Enzymol Guide to Protein Purification, Second Edition = Method. Enzymol. Guide to Public Health Research Needs = Health Care Iss Cost Guide to Public Health Research Needs = Health Care. Iss. Cost. Guide to Qtl Mapping With R/qtl = Stat Biol Health Guide to Qtl Mapping With R/qtl = Stat. Biol. Health. Guide to Real Variables = Dolciani Math Expo Guide to Real Variables = Dolciani. Math. Expo. Guide to Reliable Internet Services and Applications = Comput Commun Netw S Guide to Reliable Internet Services and Applications = Comput. Commun. Netw. S. Guide to Techniques in Glycobiology = Method Enzymol Guide to Techniques in Glycobiology = Method. Enzymol. Guide to Techniques in Mouse Development = Method Enzymol Guide to Techniques in Mouse Development = Method. Enzymol. Guide to Three Dimensional Structure and Motion Factorization = Adv Pattern Recognit Guide to Three Dimensional Structure and Motion Factorization = Adv. Pattern. Recognit. Guide to Topology = Dolciani Math Expo Guide to Topology = Dolciani. Math. Expo. Guide to Wireless Ad Hoc Networks = Comput Commun Netw S Guide to Wireless Ad Hoc Networks = Comput. Commun. Netw. S. Guide to Yeast Genetics and Molecular and Cell Biology, Pt B = Method Enzymol Guide to Yeast Genetics and Molecular and Cell Biology, Pt B = Method. Enzymol. Guide to Yeast Genetics and Molecular and Cell Biology, Pt C = Method Enzymol Guide to Yeast Genetics and Molecular and Cell Biology, Pt C = Method. Enzymol. Guide to Yeast Genetics and Molecular and Cell Biology, Pt C = Methods Enzymol Guide to Yeast Genetics and Molecular and Cell Biology, Pt C = Methods. Enzymol. Guiding Principles for Spatial Development in Germany = Ger Annu Spat Res Po Guiding Principles for Spatial Development in Germany = Ger. Annu. Spat. Res. Po. Guijinshu = Guijinshu Guildhall Studies in London History = Guildhall Stud Lond Guildhall Studies in London History = Guildhall Stud. Lond. Guildhall studies in London history = Guildhall Stud Lond Hist Guilford Communication Series = Guil Commun Guilford Communication Series = Guil. Commun. Guisuanyan Xuebao = Guisuanyan Xuebao Guitar Review = Guitar Rev Guitar Review = Guitar Rev. Guizhou Shifan Daxue Xuebao = Guizhou Shifan Daxue Xuebao Ziran Kexue Ban Gujarat Statistical Review = Gujarat Statist. Rev. Gujarat statistical review = Gujarat Stat Rev Gulf Coast historical review = Gulf Coast Hist Rev Gulf Coast Research Laboratory Special Publication = Gulf Coast Res Lab S Gulf Coast Research Laboratory Special Publication = Gulf Coast Res. Lab. S. Gulf Research Reports = Gulf Res Rep Gulf Research Reports = Gulf Res. Rep. Gulf War of 1991 Reconsidered = Besa Stud Int Secur Gulf War of 1991 Reconsidered = Besa. Stud. Int. Secur. Gummi Asbest Kunststoffe = Gummi Fasern Kunstst Gummi Asbest Kunststoffe = Gummi Fasern. Kunstst. Gummi Fasern Kunststoffe = Gummi Fasern Kunstst Gummi Fasern Kunststoffe = Gummi Fasern Kunstst. Gums and Stabilisers for The Food Industry 10 = Roy Soc Ch Gums and Stabilisers for The Food Industry 10 = Roy. Soc. Ch. Gums and Stabilisers for The Food Industry 11 = Roy Soc Ch Gums and Stabilisers for The Food Industry 11 = Roy. Soc. Ch. Gums and Stabilizers for The Food Industry 12 = Roy Soc Ch Gums and Stabilizers for The Food Industry 12 = Roy. Soc. Ch. Gunma Journal of Medical Sciences = Gunma J. Med. Sci. Gunma Symposia On Endocrinology = G Symp Endo Gunma Symposia On Endocrinology = G. Symp. Endo. Gunnar Myrdal: An Intellectual Biography = Great Think Econ Gunnar Myrdal: An Intellectual Biography = Great. Think. Econ. Gunpowder and Incense: The Catholic Church and The Spanish Civil War = Routl Can Blanch Stu Gunpowder and Incense: The Catholic Church and The Spanish Civil War = Routl. Can. Blanch. Stu. Guns and Butter: The Economic Causes and Consequences of Conflict = Cesifo Book Ser Guns and Butter: The Economic Causes and Consequences of Conflict = Cesifo. Book. Ser. Guocheng Gongcheng Xuebao = Guocheng Gongcheng Xuebao Guo li Taiwan shi fan da xue Di li yan jiu suo di li yan jiu bao gao. Kuo li T'ai-wan shih fan ta hsueh. Ti li yen chiu so = Guo Li Taiwan Shi Fan Da Xue Di li Yan Jiu Suo Di Li Yan Jiu Bao Gaob Guoshu xuebao = Journal of fruit science|Guoshu xuebao Guru Nanak journal of sociology = Guru Nanak J Sociol Gurwitsch's Relevancy for Cognitive Science = Contrib Phenomenol Gurwitsch's Relevancy for Cognitive Science = Contrib. Phenomenol. Gurwitsch's Relevancy for Cognitive Science = Contr Phenomenol Gurwitsch's Relevancy for Cognitive Science = Contr. Phenomenol. Gu sheng wu xue bao = Acta palaeontologica Sinica|Gu Sheng Wu Xue Bao Gustav Shpet's Contribution to Philosophy and Cultural Theory = Comp Cult Stud Gustav Shpet's Contribution to Philosophy and Cultural Theory = Comp. Cult. Stud. Gut and Liver = Falk Symp Gut and Liver = Falk. Symp. Gut and Liver = Gut Liver Gut As A Model in Cell and Molecular Biology = Falk Symp Gut As A Model in Cell and Molecular Biology = Falk. Symp. Gut-associated Lymphoid Tissues = Curr Top Microbiol Gut-associated Lymphoid Tissues = Curr. Top. Microbiol. Gutenberg Jahrbuch = Gutenberg Jahrb Gut Flora and Health - Past, Present and Future = Roy Soc Med Int Cong Gut Flora and Health - Past, Present and Future = Roy. Soc. Med. Int. Cong. Gut=Gut;; Gut = Gut Guthrie Clinic bulletin = Guthrie Clin Bull Gut-liver Interactions: Basic and Clinical Concepts = Falk Symp Gut-liver Interactions: Basic and Clinical Concepts = Falk. Symp. Guy's Hospital gazette = Guys Hosp Gaz Guy's Hospital reports = Guys Hosp Rep Guy's Hospital Reports = Guys Hosp. Rep. Gwumc Department of Biochemistry Annual Spring Symposia = Gwumc Dept Gwumc Department of Biochemistry Annual Spring Symposia = Gwumc Dept. Gymnasium = Gymnasium Gymnasium. Zeitschrift für Kultur der Antike und humanistische Bildung = Gymnasium Gynaecologia = Gynaecologia Gynaecologia. International monthly review of obstetrics and gynecology. Revue internationale mensuelle d'obstetrique et de gynecologie. Monatsschrift fur Geburtshilfe und Gynakologie = Gynaecologia Gynaecological Cancer = C St Gyn Ob Gynaecological Cancer = C. St. Gyn. Ob. Gynaecological Endoscopy = Gynaecol Endosc Gynaecological Endoscopy = Gynaecol. Endosc. Gynaecology, Obstetrics, and Reproductive Medicine in Daily Practice = Int Congr Ser Gynaecology, Obstetrics, and Reproductive Medicine in Daily Practice = Int. Congr. Ser. Gynakologe = Gynakologe Gynakologische Praxis = Gynakol Prax Gynakologische Rundschau = Gynakol Rundsch Gynakologische Rundschau = Gynakol. Rundsch. Gynakologisch-geburtshilfliche Rundschau = Gynakol Geburt Runds Gynakologisch-geburtshilfliche Rundschau = Gynakol. Geburt. Runds. Gynakologisch-geburtshilfliche Rundschau = Gynakol Geburtshilfliche Rundsch Gynakologisch-Geburtshilfliche Rundschau=Gynakol Geburtshilfliche Rundsch;; Gynakologisch-Geburtshilfliche Rundschau = Gynakol. Geburtshilfliche Rundsch. Gynecological Endocrinology=Gynecol Endocrinol;; Gynecological Endocrinology = Gynecol Endocrinol Gynecological Endocrinology = Gynecol. Endocrinol. Gynecological endocrinology : the official journal of the International Society of Gynecological Endocrinology = Gynecol Endocrinol Gynecologic and Obstetric Investigation = Gynecol Obstet Inves Gynecologic and Obstetric Investigation = Gynecol. Obstet. Inves. Gynecologic and obstetric investigation = Gynecol Obstet Invest Gynecologic and Obstetric Investigation=Gynecol Obstet Invest;; Gynecologic and Obstetric Investigation = Gynecol. Obstet. Invest. Gynecologic investigation = Gynecol Invest Gynecologic Investigation = Gynecol. Invest. Gynecologic Investigation = Gynecol Obstet Inves Gynecologic Investigation = Gynecol. Obstet. Inves. Gynecologic oncology = Gynecol Oncol Gynecologic Oncology=Gynecol Oncol;; Gynecologic Oncology = Gynecol Oncol Gynecologic Oncology = Gynecol. Oncol. Gynecologie et obstetrique = Gynecol Obstet (Paris) Gynecologie et Obstetrique = Gynecol. Obstet. (Paris) Gynecologie = Gynecologie Gynecologie, Obstetrique et Fertilite = Gynecol. Obstet. Fertil. Gynecologie Obstetrique & Fertilite = Gynecol Obstet Ferti Gynecologie Obstetrique & Fertilite = Gynecol. Obstet. Ferti. Gynecologie, obstetrique & fertilite = Gynecol Obstet Fertil Gynecologie pratique = Gynecol Prat Gynecologie Pratique = Gynecol. Prat. Gyogyszereink = Gyogyszereink Gyogyszereszet = Gyogyszereszet Gypsies in European Literature and Culture = Stud Eur Cult Hist Gypsies in European Literature and Culture = Stud. Eur. Cult. Hist. H2geo: Geotechnical Engineering for Water Resources = Geotech Practice Pub H2geo: Geotechnical Engineering for Water Resources = Geotech. Practice. Pub. ha-Ahot be-Yisrael = Ahot Beyisrael Habermas, Critical Theory and Education = Rout Int Stud Philos Habermas, Critical Theory and Education = Rout. Int. Stud. Philos. Habermas: Rescuing The Public Sphere = Routl Stud Soc Polit Habermas: Rescuing The Public Sphere = Routl. Stud. Soc. Polit. Habis. Universidad de Sevilla. Arqueología, filología clásica = Habis Habitability and Cosmic Catastrophes = Adv Astrobiol Biogeo Habitability and Cosmic Catastrophes = Adv. Astrobiol. Biogeo. Habitat and The High-rise = Ctbuh Counc Rep Habitat and The High-rise = Ctbuh. Counc. Rep. Habitat debate / UNCHS (Habitat), the United Nations Centre for Human Settlements = Habitat Debate Habitat = Habitat Habitat international = Habitat Int Habitat International = Habitat Int Habitat International = Habitat Int. Habitation (Elmsford, N.Y.) = Habitation (Elmsford) Habitat of Australia's Aboriginal Languages: Past, Present and Future = Trends Linguist-stud Habitat of Australia's Aboriginal Languages: Past, Present and Future = Trends. Linguist-stud. Hacettepe bulletin of medicine/surgery = Hacettepe Bull Med Surg Hacettepe Bulletin of Natural Sciences and Engineering = Hacet. Bull. Nat. Sci. Eng. Ser. B Hacettepe Bulletin of Social Sciences and Humanities = Hacett B Soc Sci Hum Hacettepe Bulletin of Social Sciences and Humanities = Hacett. B. Soc. Sci. Hum. Hacettepe Journal of Mathematics and Statistics = Hacet J Math Stat Hacettepe Journal of Mathematics and Statistics = Hacet. J. Math. Stat. Hacettepe sosyal ve beseri bilimler dergisi = Hacettepe Sosyal Bilimler Derg Hacettepe Universitesi Egitim Fakultesi Dergisi-hacettepe University Journal of Education = Hacet U Egitim Fak Hacettepe Universitesi Egitim Fakultesi Dergisi-hacettepe University Journal of Education = Hacet. U. Egitim Fak. Hacettepe Universitesi Egitim Fakultesi Dergisi-hacettepe University Journal of Education = Hacet Unit Egit Fak Hacettepe Universitesi Egitim Fakultesi Dergisi-hacettepe University Journal of Education = Hacet. Unit. Egit. Fak. Hacia El Futuro = Adv Glob Change Res Hacia El Futuro = Adv. Glob. Change. Res. Hacienda Publica Espanola = Hacienda Publica Esp Hacienda Publica Espanola = Hacienda Publica Esp. Hadassah magazine = Hadassah Mag Hades = Hades Hadley Circulation: Present, Past and Future = Adv Glob Change Res Hadley Circulation: Present, Past and Future = Adv. Glob. Change. Res. Hadron 2009 = Aip Conf Proc Hadron 2009 = Aip. Conf. Proc. Hadron Collider Physics 2005, Proceedings = Springer Proc Phys Hadron Collider Physics 2005, Proceedings = Springer. Proc. Phys. Hadron Collider Physics = Aip Conf Proc Hadron Collider Physics = Aip. Conf. Proc. Hadron Colliders At The Highest Energy and Luminosity = Sci Cult Ser Phys Hadron Colliders At The Highest Energy and Luminosity = Sci. Cult. Ser. Phys. Hadronic Journal = Hadronic J. Hadronic Journal = Hadronic J Hadronic Journal = Hadronic J. Hadronic Journal Supplement = Hadronic J. Suppl. Hadronic Physics = Aip Conf Proc Hadronic Physics = Aip. Conf. Proc. Hadronic Physics With Multi-gev Electrons = Les Houches Hadronic Physics With Multi-gev Electrons = Les. Houches. Hadronic Press Monographs in Mathematics = Hadronic Press Monogr. Math. Hadronic Shower Simulation Workshop = Aip Conf Proc Hadronic Shower Simulation Workshop = Aip. Conf. Proc. Hadron Physics = Aip Conf Proc Hadron Physics = Aip. Conf. Proc. Hadrons and Hadronic Matter = Nato Adv Sci I B-phy Hadrons and Hadronic Matter = Nato. Adv. Sci. I. B-phy. Hadrons and Nuclei = Aip Conf Proc Hadrons and Nuclei = Aip. Conf. Proc. Hadron Spectroscopy = Aip Conf Proc Hadron Spectroscopy = Aip. Conf. Proc. Hadron Spectroscopy and The Confinement Problem = Nato Adv Sci Inst Se Hadron Spectroscopy and The Confinement Problem = Nato. Adv. Sci. Inst. Se. Hadrontherapy in Oncology = Int Congr Ser Hadrontherapy in Oncology = Int. Congr. Ser. Hadtortenelmi kozlemenyek = Hadtort Kozl Haematologia = Haematologia Haematologia=Haematologia (Budap);; Haematologia = Haematologia (Budap.) Haematologia = Haematologia (Budap) Haematologica=Haematologica;; Haematologica = Haematologica Haematologica Latina = Haematol Lat Haematologica Latina = Haematol. Lat. Haematologica-the Hematology Journal = Haematol-hematol J Haematologica-the Hematology Journal = Haematol-hematol. J. Haematology and blood transfusion = Haematol Blood Transfus Haemophilia = Haemophilia Haemophilia : the official journal of the World Federation of Hemophilia = Haemophilia Haemostasis=Haemostasis;; Haemostasis = Haemostasis Haftung Und Entschadigung Nach Tankerunfallen Auf See: Bestandsaufnahme, Rechtsvergleich Und Uberlegungen De Lege Ferenda = Hamb Stud Marit Aff Haftung Und Entschadigung Nach Tankerunfallen Auf See: Bestandsaufnahme, Rechtsvergleich Und Uberlegungen De Lege Ferenda = Hamb. Stud. Marit. Aff. Haftung Von Emissionskonsortien: Eine Rechtsvergleichende Untersuchung Des Deutschen Und Des Us-amerikanischen Rechts = Schr Eur Int Priv B Haftung Von Emissionskonsortien: Eine Rechtsvergleichende Untersuchung Des Deutschen Und Des Us-amerikanischen Rechts = Schr. Eur. Int. Priv. B. Hagiographische Dossier Der Heiligen Theodosia Von Konstantinopel: Einleitung, Edition Und Kommentar = Byzant Arch Hagiographische Dossier Der Heiligen Theodosia Von Konstantinopel: Einleitung, Edition Und Kommentar = Byzant. Arch. Hagley Perspectives On Business and Culture = Hagley Perspect Bus Hagley Perspectives On Business and Culture = Hagley Perspect. Bus. H. A. Grueber, Coins of the Roman Republic in the British Museum I--III (London 1910) = BMCRRI-III Hahr-hispanic American Historical Review = Hahr-hisp Am Hist R Hahr-hispanic American Historical Review = Hahr-hisp. Am. Hist. R. Hainan - State, Society, and Business in A Chinese Province = China Policy Ser Hainan - State, Society, and Business in A Chinese Province = China. Policy. Ser. Hair Research for The Next Millenium = Int Congr Ser Hair Research for The Next Millenium = Int. Congr. Ser. Haiti: Hope for A Fragile State = Stud Int Gov Haiti: Hope for A Fragile State = Stud. Int. Gov. Hakkokogaku Kaishi-journal of The Society of Fermentation Technology = Hakkokogaku Kaishi Hakkokogaku Kaishi-journal of The Society of Fermentation Technology = Hakkokogaku Kaishi. Halcyon = Halcyon Half Century of Stellar Pulsation Interpretations: A Tribute to Arthur N. Cox = Astr Soc P Half Century of Stellar Pulsation Interpretations: A Tribute to Arthur N. Cox = Astr. Soc. P. Half Collision Resonance Phenomena in Molecules = Aip Conf Proc Half Collision Resonance Phenomena in Molecules = Aip. Conf. Proc. Halide Glasses V = Mater Sci Forum Halide Glasses V = Mater. Sci. Forum. Halides Diffusion-data Compilation = Defect Diffus Forum Halides Diffusion-data Compilation = Defect. Diffus. Forum. Hali-the International Journal of Oriental Carpets and Textiles = Hali-int J Orient Hali-the International Journal of Oriental Carpets and Textiles = Hali-int. J. Orient. Hallesche Beitrage Zur Europaischen Aufklarung = Hallesche Beitr Eur Hallesche Beitrage Zur Europaischen Aufklarung = Hallesche Beitr. Eur. Hallesche Beitrage Zur Europaischen Aufklarung = Hell Beit Eur Auk Hallesche Beitrage Zur Europaischen Aufklarung = Hell. Beit. Eur. Auk. Hallesche Forschungen = Hallesche Forschung Hallesche Forschungen = Hallesche Forschung. Hallisches Winckelmannsprogramm = HallWPr Hallym international journal of aging : HIJA = Hallym Int J Aging HIJA Halogen Bonding: Fundamentals and Applications = Struct Bond Halogen Bonding: Fundamentals and Applications = Struct. Bond. Halon Replacements = Acs Sym Ser Halon Replacements = Acs. Sym. Ser. Halophytes As A Resource for Livestock and for Rehabilitation of Degraded Lands = Task Veg Sc Halophytes As A Resource for Livestock and for Rehabilitation of Degraded Lands = Task. Veg. Sc. Halophyte Uses in Different Climates Ii = Prog Biomet Halophyte Uses in Different Climates Ii = Prog. Biomet. Halophyte Uses in Different Climates I = Prog Biomet Halophyte Uses in Different Climates I = Prog. Biomet. Halsbury's statutes of England. Great Britain = Halsburys Statut Engl G B Hama. Fouilles et recherches de la Fondation Carlsberg = Hama Hamatologie und Bluttransfusion = Hamatol Bluttransfus Hamatologie und Bluttransfusion = Hamatol. Bluttransfus. Hamburg African Studies = Hamb Afr Stud Hamburg African Studies = Hamb. Afr. Stud. Hamburger Arzteblatt = Hamb Arztebl Hamburger Beiträge zur Archäologie = HambBeitrA Hamburger Beiträge zur Archäologie = HBA Hamburger Beiträge zur Numismatik = HambBeitrNum Hamburger Beiträge zur Numismatik = HBN Hamburg Lectures On Maritime Affairs 2007 & 2008 = Hamb Stud Marit Aff Hamburg Lectures On Maritime Affairs 2007 & 2008 = Hamb. Stud. Marit. Aff. Hamburg Studies On Maritime Affairs = Hamb Stud Marit Aff Hamburg Studies On Maritime Affairs = Hamb. Stud. Marit. Aff. Hamburg Studies On Multilingualism = Hamb Stud Multiling Hamburg Studies On Multilingualism = Hamb. Stud. Multiling. Hamdard Islamicus : quarterly journal of the Hamdard National Foundation, Pakistan = Hamdard Islam Hamdard medicus = Hamdard Med Hamiltonian Chaos Beyond The Kam Theory: Dedicated to George M. Zaslavsky (1935-2008) = Nonlinear Phys Sci Hamiltonian Chaos Beyond The Kam Theory: Dedicated to George M. Zaslavsky (1935-2008) = Nonlinear. Phys. Sci. Hamiltonian Dynamical Systems and Applications = Nato Science Peace S Hamiltonian Dynamical Systems and Applications = Nato. Science. Peace. S. Hamiltonian Dynamical Systems and Applications = Nato Sci Peace Sec B Hamiltonian Dynamical Systems and Applications = Nato. Sci. Peace. Sec. B. Hamiltonian Dynamics Theory and Applications = Lect Notes Math Hamiltonian Dynamics Theory and Applications = Lect. Notes. Math. Hamiltonian Mechanics = Nato Adv Sci I B-phy Hamiltonian Mechanics = Nato. Adv. Sci. I. B-phy. Hamiltonian Mechanics = Nato Adv Sci Inst Se Hamiltonian Mechanics = Nato. Adv. Sci. Inst. Se. Hamiltonian Reduction By Stages = Lect Notes Math Hamiltonian Reduction By Stages = Lect. Notes. Math. Hamiltonian Systems and Celestial Mechanics (hamsys-98), Proceedings = World Sci Monograph Hamiltonian Systems and Celestial Mechanics (hamsys-98), Proceedings = World. Sci. Monograph. Hamline law review = Hamline Law Rev Hamostaseologie = Hamostaseologie Hampshire : the county magazine = Hampshire Hanbali School of Law and Ibn Taymiyyah: Conflict Or Concilation = Cult Civiliz Mid E Hanbali School of Law and Ibn Taymiyyah: Conflict Or Concilation = Cult. Civiliz. Mid. E. Handai Nanophotonics = Handai Nanophoton Handai Nanophotonics = Handai Nanophoton. Handbook of Administrative Reform: An International Perspective = Public Adm Public Po Handbook of Administrative Reform: An International Perspective = Public. Adm. Public. Po. Handbook of Advanced Dielectric, Piezoelectric and Ferroelectric Materials = Woodhead Publ Mater Handbook of Advanced Dielectric, Piezoelectric and Ferroelectric Materials = Woodhead. Publ. Mater. Handbook of Advanced Multilevel Analysis = Eur Assoc Methodol S Handbook of Advanced Multilevel Analysis = Eur. Assoc. Methodol. S. Handbook of Advanced Radioactive Waste Conditioning Technologies = Woodhead Publ Ser En Handbook of Advanced Radioactive Waste Conditioning Technologies = Woodhead. Publ. Ser. En. Handbook of Agricultural Geophysics = Books Soil Plant Env Handbook of Agricultural Geophysics = Books. Soil. Plant. Env. Handbook of Angioplasty and Stenting Procedures = Tech Interv Radiol Handbook of Angioplasty and Stenting Procedures = Tech. Interv. Radiol. Handbook of Applied Analysis = Adv Mech Math Handbook of Applied Analysis = Adv. Mech. Math. Handbook of Assessment in Persons With Intellectual Disability = Int Rev Res Ment Ret Handbook of Assessment in Persons With Intellectual Disability = Int. Rev. Res. Ment. Ret. Handbook of Autoimmune Diseases = Handb Syst Autoimmun Handbook of Autoimmune Diseases = Handb. Syst. Autoimmun. Handbook of Biofuels Production: Processes and Technologies = Woodhead Publ Ser En Handbook of Biofuels Production: Processes and Technologies = Woodhead. Publ. Ser. En. Handbook of Business and Finance: Multinational Companies, Venture Capital and Non-profit Organizations = Bus Iss Compet Entre Handbook of Business and Finance: Multinational Companies, Venture Capital and Non-profit Organizations = Bus. Iss. Compet. Entre. Handbook of Carbohydrate Polymers : Development, Properties and Application = Polym Sci Technol Se Handbook of Carbohydrate Polymers : Development, Properties and Application = Polym. Sci. Technol. Se. Handbook of Cardiovascular Research = Cardiol Res Clin Dev Handbook of Cardiovascular Research = Cardiol. Res. Clin. Dev. Handbook of Cell Proliferation = Cell Bio Res Prog Handbook of Cell Proliferation = Cell Bio. Res. Prog. Handbook of Chemoinformatics Algorithms = Ch Crc Math Comp Bio Handbook of Chemoinformatics Algorithms = Ch. Crc. Math. Comp. Bio. Handbook of Childhood and Adolescent Obesity = Issues Clin Child Ps Handbook of Childhood and Adolescent Obesity = Issues. Clin. Child. Ps. Handbook of Clinical Nutrition and Aging, Second Edition = Nutr Health Ser Handbook of Clinical Nutrition and Aging, Second Edition = Nutr. Health. Ser. Handbook of Clinical Rating Scales and Assessment in Psychiatry and Mental Health = Curr Clin Psychiat Handbook of Clinical Rating Scales and Assessment in Psychiatry and Mental Health = Curr. Clin. Psychiat. Handbook of Cognitive Aging: Causes, Processes and Effects = Aging Iss Health Fin Handbook of Cognitive Aging: Causes, Processes and Effects = Aging. Iss. Health. Fin. Handbook of Communication Competence = Handb Appl Linguist Handbook of Communication Competence = Handb. Appl. Linguist. Handbook of Communication in The Public Sphere = Handb Appl Linguist Handbook of Communication in The Public Sphere = Handb. Appl. Linguist. Handbook of Complex Percutaneous Carotid Intervention = Contemp Cardiol Handbook of Complex Percutaneous Carotid Intervention = Contemp. Cardiol. Handbook of Contemporary Philosophy of Religion = Handb Contemp Philos Handbook of Contemporary Philosophy of Religion = Handb. Contemp. Philos. Handbook of Contraception: A Guide for Practical Management = Curr Clin Pract Handbook of Contraception: A Guide for Practical Management = Curr. Clin. Pract. Handbook of Curriculum Development = Educ Compet Glob Wor Handbook of Curriculum Development = Educ. Compet. Glob. Wor. Handbook of Dental Care: Diagnostic, Preventive and Restorative Services = Health Care Iss Cost Handbook of Dental Care: Diagnostic, Preventive and Restorative Services = Health. Care. Iss. Cost. Handbook of Detergents, Pt E: Applications = Surfactant Sci Ser Handbook of Detergents, Pt E: Applications = Surfactant. Sci. Ser. Handbook of Detergents, Pt F: Production = Surfactant Sci Ser Handbook of Detergents, Pt F: Production = Surfactant. Sci. Ser. Handbook of Digital Homecare = Ser Biomed Eng Handbook of Digital Homecare = Ser. Biomed. Eng. Handbook of Disease Outbreaks: Prevention, Detection and Control = Public Health 21st C Handbook of Disease Outbreaks: Prevention, Detection and Control = Public. Health. 21st. C. Handbook of Down Syndrome Research = Neurodev Dis Lab Cli Handbook of Down Syndrome Research = Neurodev. Dis. Lab. Cli. Handbook of Drug-nutrient Interactions, Second Edition = Nutr Health Ser Handbook of Drug-nutrient Interactions, Second Edition = Nutr. Health. Ser. Handbook of Drug Targeting and Monitoring = Pharm Res Saf Test Handbook of Drug Targeting and Monitoring = Pharm. Res. Saf. Test. Handbook of Election News Coverage Around The World = Ica Handb Ser Handbook of Election News Coverage Around The World = Ica. Handb. Ser. Handbook of Employee Benefits and Administration = Public Adm Public Po Handbook of Employee Benefits and Administration = Public. Adm. Public. Po. Handbook of Entrepreneurship Research = Int Handb Ser Entrep Handbook of Entrepreneurship Research = Int. Handb. Ser. Entrep. Handbook of Environmental Chemistry Series = Handb Environ Chem Handbook of Environmental Chemistry Series = Handb. Environ. Chem. Handbook of Environmental Engineering = Handb Environ Eng Handbook of Environmental Engineering = Handb. Environ. Eng. Handbook of Environmental Research = Environ Res Adv Handbook of Environmental Research = Environ. Res. Adv. Handbook of Ethics in Quantitative Methodology = Multivar Appl Ser Handbook of Ethics in Quantitative Methodology = Multivar. Appl. Ser. Handbook of Evidence-based Psychodynamic Psychotherapy: Bridging The Gap Between Science and Practice = Curr Clin Psychiat Handbook of Evidence-based Psychodynamic Psychotherapy: Bridging The Gap Between Science and Practice = Curr. Clin. Psychiat. Handbook of Evidence-based Therapies for Children and Adolescents: Bridging Science and Practice = Issues Clin Child Ps Handbook of Evidence-based Therapies for Children and Adolescents: Bridging Science and Practice = Issues. Clin. Child. Ps. Handbook of Exergy, Hydrogen Energy and Hydropower Research = Energ Sci Eng Tech Handbook of Exergy, Hydrogen Energy and Hydropower Research = Energ. Sci. Eng. Tech. Handbook of experimental pharmacology = Handb Exp Pharmacol Handbook of Experimental Pharmacology = Handb Exp Pharmacol Handbook of Experimental Pharmacology = Handb. Exp. Pharmacol. Handbook of Fermented Functional Foods, Second Edition = Funct Food Nutra Ser Handbook of Fermented Functional Foods, Second Edition = Funct. Food. Nutra. Ser. Handbook of Feynman Path Integrals = Springer Trac Mod Ph Handbook of Feynman Path Integrals = Springer. Trac. Mod. Ph. Handbook of Feynman Path Integrals = Springer Tr Mod Phys Handbook of Feynman Path Integrals = Springer. Tr. Mod. Phys. Handbook of Fiber Chemistry, Third Edition = Int Fiber Sci Techno Handbook of Fiber Chemistry, Third Edition = Int. Fiber Sci. Techno. Handbook of Financial Engineering = Springer Ser Optim A Handbook of Financial Engineering = Springer. Ser. Optim. A. Handbook of Foreign Language Communication and Learning = Handb Appl Linguist Handbook of Foreign Language Communication and Learning = Handb. Appl. Linguist. Handbook of Free Radicals: Formation, Types and Effects = Cell Bio Res Prog Handbook of Free Radicals: Formation, Types and Effects = Cell. Bio. Res. Prog. Handbook of Genetics and Society: Mapping The New Genomic Era = Genet Soc Handbook of Genetics and Society: Mapping The New Genomic Era = Genet. Soc. Handbook of Genomics and The Family: Psychosocial Context for Children and Adolescents = Issues Clin Child Ps Handbook of Genomics and The Family: Psychosocial Context for Children and Adolescents = Issues. Clin. Child. Ps. Handbook of Globalization and The Environment = Public Adm Public Po Handbook of Globalization and The Environment = Public. Adm. Public. Po. Handbook of Governmental Accounting = Public Adm Public Po Handbook of Governmental Accounting = Public. Adm. Public. Po. Handbook of Granulocytes : Classification, Toxic Materials Produced and Pathology = Hum Anat Physiol Handbook of Granulocytes : Classification, Toxic Materials Produced and Pathology = Hum. Anat. Physiol. Handbook of Hemorheology and Hemodynamics = Biomed Health Res Handbook of Hemorheology and Hemodynamics = Biomed. Health. Res. Handbook of Hydrocolloids, 2nd Edition = Woodhead Food Ser Handbook of Hydrocolloids, 2nd Edition = Woodhead. Food. Ser. Handbook of Hydrogels: Properties Preparation & Applications = Chem Eng Method Tech Handbook of Hydrogels: Properties Preparation & Applications = Chem. Eng. Method. Tech. Handbook of Hyperthyroidism: Etiology, Diagnosis and Treatment = Endocr Res Clin Dev Handbook of Hyperthyroidism: Etiology, Diagnosis and Treatment = Endocr. Res. Clin. Dev. Handbook of Individual Differences in Cognition: Attention, Memory, and Executive Control = Springer Ser Hum Exc Handbook of Individual Differences in Cognition: Attention, Memory, and Executive Control = Springer. Ser. Hum. Exc. Handbook of Inorganic Chemistry Research = Chem Res Appl-nova Handbook of Inorganic Chemistry Research = Chem. Res. Appl-nova. Handbook of Input-output Economics in Industrial Ecology = Eco-effic Ind Sci Handbook of Input-output Economics in Industrial Ecology = Eco-effic. Ind. Sci. Handbook of Intercultural Communication = Handb Appl Linguist Handbook of Intercultural Communication = Handb. Appl. Linguist. Handbook of Interpersonal Communication = Handb Appl Linguist Handbook of Interpersonal Communication = Handb. Appl. Linguist. Handbook of Journalism Studies = Int Commun Assoc Han Handbook of Journalism Studies = Int. Commun. Assoc. Han. Handbook of Language and Communication: Diversity and Change = Handb Appl Linguist Handbook of Language and Communication: Diversity and Change = Handb. Appl. Linguist. Handbook of Large-scale Random Networks = Bolyai Soc Math Stud Handbook of Large-scale Random Networks = Bolyai. Soc. Math. Stud. Handbook of Lifelong Learning Developments = Educ Compet Glob Wor Handbook of Lifelong Learning Developments = Educ. Compet. Glob. Wor. Handbook of Logic in Computer Science = Handb. Log. Comput. Sci. Handbook of Long-term Care Administration and Policy = Public Adm Public Po Handbook of Long-term Care Administration and Policy = Public. Adm. Public. Po. Handbook of Marketing Decision Models = Int Ser Oper Res Man Handbook of Marketing Decision Models = Int. Ser. Oper. Res. Man. Handbook of Material Science Research = Mater Sci Technol Handbook of Material Science Research = Mater. Sci. Technol. Handbook of Materials for Nanomedicine = Pan St Ser Biom Nano Handbook of Materials for Nanomedicine = Pan. St. Ser. Biom. Nano. Handbook of Membrane Research: Properties, Performance and Applications = Chem Eng Method Tech Handbook of Membrane Research: Properties, Performance and Applications = Chem. Eng. Method. Tech. Handbook of Metaheuristics, Second Edition = Int Ser Oper Res Man Handbook of Metaheuristics, Second Edition = Int. Ser. Oper. Res. Man. Handbook of Military Administration = Public Adm Public Po Handbook of Military Administration = Public. Adm. Public. Po. Handbook of Military Industrial Engineering = Ind Innov Ser Handbook of Military Industrial Engineering = Ind. Innov. Ser. Handbook of Mobile Broadcasting: Dvb-h, Dmb, Isdb-t, and Mediaflo = Internet Commun Handbook of Mobile Broadcasting: Dvb-h, Dmb, Isdb-t, and Mediaflo = Internet. Commun. Handbook of Modern Biophysics = Handb Mod Biophys Handbook of Modern Biophysics = Handb. Mod. Biophys. Handbook of Modern Biophysics = Handbook Mod Biophys Handbook of Modern Biophysics = Handbook Mod. Biophys. Handbook of Molecular Chaperones: Roles, Structures and Mechanisms = Cell Bio Res Prog Handbook of Molecular Chaperones: Roles, Structures and Mechanisms = Cell. Bio. Res. Prog. Handbook of Moral and Character Education = Educ Psychol Handb Handbook of Moral and Character Education = Educ. Psychol. Handb. Handbook of Multicriteria Analysis = Appl Optim Handbook of Multicriteria Analysis = Appl. Optim. Handbook of Multilingualism and Multilingual Communication = Handb Appl Linguist Handbook of Multilingualism and Multilingual Communication = Handb. Appl. Linguist. Handbook of Narratology = Narrat-contrib Narra Handbook of Narratology = Narrat-contrib. Narra. Handbook of Natural Language Processing, Second Edition = Ch Crc Mach Learn Pa Handbook of Natural Language Processing, Second Edition = Ch. Crc. Mach. Learn. Pa. Handbook of Neuropsychiatry Research = Neurosci Res Prog Se Handbook of Neuropsychiatry Research = Neurosci. Res. Prog. Se. Handbook of New Spiritual Consciousness: Theory and Research = Relig Spiritual Handbook of New Spiritual Consciousness: Theory and Research = Relig. Spiritual Handbook of Nonwovens = Woodhead Text Ser Handbook of Nonwovens = Woodhead. Text. Ser. Handbook of Normal Frames and Coordinates = Prog Math Phys Handbook of Normal Frames and Coordinates = Prog. Math. Phys. Handbook of Numerical Analysis = Handb. Numer. Anal. Handbook of Nutritional Biochemistry: Genomics, Metabolomics and Food Supply = Nutr Diet Res Prog Handbook of Nutritional Biochemistry: Genomics, Metabolomics and Food Supply = Nutr. Diet. Res. Prog. Handbook of Nutrition and Pregnancy = Nutr Health Ser Handbook of Nutrition and Pregnancy = Nutr. Health. Ser. Handbook of Operations Research in Natural Resources = Int Ser Oper Res Man Handbook of Operations Research in Natural Resources = Int. Ser. Oper. Res. Man. Handbook of Optical Sensing of Glucose in Biological Fluids and Tissues = Ser Med Phys Biomed Handbook of Optical Sensing of Glucose in Biological Fluids and Tissues = Ser. Med. Phys. Biomed. Handbook of Optimization in Medicine = Springer Ser Optim A Handbook of Optimization in Medicine = Springer. Ser. Optim. A. Handbook of Organic Food Safety and Quality = Woodhead Publ Food S Handbook of Organic Food Safety and Quality = Woodhead. Publ. Food S. Handbook of Oxytocin Research: Synthesis, Storage and Release, Action and Drug Forms = Endocr Res Clin Dev Handbook of Oxytocin Research: Synthesis, Storage and Release, Action and Drug Forms = Endocr. Res. Clin. Dev. Handbook of Pain Relief in Older Adults: An Evidence-based Approach, Second Edition = Aging Med Handbook of Pain Relief in Older Adults: An Evidence-based Approach, Second Edition = Aging. Med. Handbook of Parallel Computing: Models, Algorithms and Applications = Ch Crc Comp Info Sci Handbook of Parallel Computing: Models, Algorithms and Applications = Ch. Crc. Comp. Info. Sci. Handbook of Parenting: Styles, Stresses and Strategies = Fam Iss 21st Century Handbook of Parenting: Styles, Stresses and Strategies = Fam. Iss. 21st. Century. Handbook of Phenomenological Aesthetics = Contrib Phenomenol Handbook of Phenomenological Aesthetics = Contrib. Phenomenol. Handbook of Photocatalysts: Preparation, Structure and Applications = Mater Sci Technol Handbook of Photocatalysts: Preparation, Structure and Applications = Mater. Sci. Technol. Handbook of Photonics for Biomedical Science = Ser Med Phys Biomed Handbook of Photonics for Biomedical Science = Ser. Med. Phys. Biomed. Handbook of Plant Breeding = Handb Plant Breed Handbook of Plant Breeding = Handb. Plant Breed. Handbook of Pluralist Economics Education = Routl Adv Heterod Ec Handbook of Pluralist Economics Education = Routl. Adv. Heterod. Ec. Handbook of Police Administration = Public Adm Public Po Handbook of Police Administration = Public. Adm. Public. Po. Handbook of Politics: State and Society in Global Perspective = Handb Sociol Soc Res Handbook of Politics: State and Society in Global Perspective = Handb. Sociol. Soc. Res. Handbook of Porphyrin Science = Handb Porphyr Sci Handbook of Porphyrin Science = Handb. Porphyr. Sci. Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 2 = Handb Porphyr Sci Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 2 = Handb. Porphyr. Sci. Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 3 = Handb Porphyr Sci Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 3 = Handb. Porphyr. Sci. Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 4 = Handb Porphyr Sci Handbook of Porphyrin Science With Applications to Chemistry, Physics, Materials Science, Engineering, Biology and Medicine, Vol 4 = Handb. Porphyr. Sci. Handbook of Positive Behavior Support = Issues Clin Child Ps Handbook of Positive Behavior Support = Issues. Clin. Child. Ps. Handbook of Power Systems I = Energ Syst Handbook of Power Systems I = Energ. Syst. Handbook of Power Systems Ii = Energ Syst Handbook of Power Systems Ii = Energ. Syst. Handbook of Prenatal Diagnosis: Methods, Issues and Health Impacts = Preg Infants-med Psy Handbook of Prenatal Diagnosis: Methods, Issues and Health Impacts = Preg. Infants-med. Psy. Handbook of Production Scheduling = Int Ser Oper Res Man Handbook of Production Scheduling = Int. Ser. Oper. Res. Man. Handbook of Prostate Cancer Cell Research: Growth, Signalling and Survival = Cancer Etiol Diagn T Handbook of Prostate Cancer Cell Research: Growth, Signalling and Survival = Cancer Etiol. Diagn. T. Handbook of Public Policy Analysis: Theory, Politics, and Methods = Public Adm Public Po Handbook of Public Policy Analysis: Theory, Politics, and Methods = Public Adm. Public Po. Handbook of Pulmonary Diseases: Etiology, Diagnosis and Treatment = Otolaryngol Res Adv Handbook of Pulmonary Diseases: Etiology, Diagnosis and Treatment = Otolaryngol. Res. Adv. Handbook of Remote Biometrics for Surveillance and Security = Adv Pattern Recognit Handbook of Remote Biometrics for Surveillance and Security = Adv. Pattern. Recognit. Handbook of Research in Middle Level Education Book = Handb Red Middle Lev Handbook of Research in Middle Level Education Book = Handb. Red. Middle Lev. Handbook of Research Methods in Public Administration, Second Edition = Public Adm Public Po Handbook of Research Methods in Public Administration, Second Edition = Public Adm. Public Po. Handbook of Research On Chemoinformatics and Chemical Engineering = Chem Eng Method Tech Handbook of Research On Chemoinformatics and Chemical Engineering = Chem. Eng. Method. Tech. Handbook of Satisfiability = Front Artif Intel Ap Handbook of Satisfiability = Front. Artif. Intel. Ap. Handbook of Self-regulation of Learning and Performance: Educational Psychology Handbook Series = Educ Psychol Handb Handbook of Self-regulation of Learning and Performance: Educational Psychology Handbook Series = Educ. Psychol. Handb. Handbook of Service Science = Serv Sci Res Innov S Handbook of Service Science = Serv. Sci. Res. Innov. S. Handbook of Social Justice = Soc Iss Justice Stat Handbook of Social Justice = Soc. Iss. Justice Stat. Handbook of Social Movements Across Disciplines = Handb Sociol Soc Res Handbook of Social Movements Across Disciplines = Handb. Sociol. Soc. Res. Handbook of Sofc System in Buildings: Legislation, Standards and Requirements = Vtt Res Notes Handbook of Sofc System in Buildings: Legislation, Standards and Requirements = Vtt. Res. Notes. Handbook of Spatial Statistics = Ch Crc Handb Mod Sta Handbook of Spatial Statistics = Ch. Crc. Handb. Mod. Sta. Handbook of Spinal Cord Injuries: Types, Treatments and Prognosis = Neurol Lab Clin Res Handbook of Spinal Cord Injuries: Types, Treatments and Prognosis = Neurol. Lab. Clin. Res. Handbook of Sports Psychology = Sports Athl Prep Per Handbook of Sports Psychology = Sports Athl. Prep. Per. Handbook of Star Forming Regions, Vol 1 = Monogr Astron Soc Pa Handbook of Star Forming Regions, Vol 1 = Monogr. Astron. Soc. Pa. Handbook of Statistical Bioinformatics = Spr Hbk Compu Stat Handbook of Statistical Bioinformatics = Spr. Hbk. Compu. Stat. Handbook of Statistical Distributions With Applications = Stat Textb Monogr Handbook of Statistical Distributions With Applications = Stat. Textb. Monogr. Handbook of Statistics = Handbook of Statist. Handbook of Stress: Causes, Effects and Control = Psychol Emot Motiv A Handbook of Stress: Causes, Effects and Control = Psychol. Emot. Motiv. A. Handbook of Sustainable Energy = Energ Sci Eng Tech Handbook of Sustainable Energy = Energ. Sci. Eng. Tech. Handbook of Swarm Intelligence: Concepts, Principles and Applications = Adapt Learn Optim Handbook of Swarm Intelligence: Concepts, Principles and Applications = Adapt. Learn. Optim. Handbook of Technology Management in Public Administration = Public Adm Public Po Handbook of Technology Management in Public Administration = Public Adm. Public Po. Handbook of Teichmuller Theory, Vol Ii = Irma Lect Math Theor Handbook of Teichmuller Theory, Vol Ii = Irma. Lect. Math. Theor. Handbook of Tensile Properties of Textile and Technical Fibres = Woodhead Publ Text Handbook of Tensile Properties of Textile and Technical Fibres = Woodhead. Publ. Text. Handbook of Terminal Planning = Oper Res Comput Sci Handbook of Terminal Planning = Oper. Res. Comput. Sci. Handbook of Textile Fibre Structure, Vol 1 = Woodhead Publ Text Handbook of Textile Fibre Structure, Vol 1 = Woodhead. Publ. Text. Handbook of Textile Fibre Structure, Vol 2 = Woodhead Publ Text Handbook of Textile Fibre Structure, Vol 2 = Woodhead. Publ. Text. Handbook of The Evolving Research of Transformative Learning Based On The Learning Activities Survey (10th Anniversary Edition) = Adult Educ Spec Top Handbook of The Evolving Research of Transformative Learning Based On The Learning Activities Survey (10th Anniversary Edition) = Adult. Educ. Spec. Top. Handbook of The Sociology of Health, Illness, and Healing: A Blueprint for The 21st Century = Handb Sociol Soc Res Handbook of The Sociology of Health, Illness, and Healing: A Blueprint for The 21st Century = Handb. Sociol. Soc. Res. Handbook of The Sociology of Morality = Handb Sociol Soc Res Handbook of The Sociology of Morality = Handb. Sociol. Soc. Res. Handbook of The Sociology of Racial and Ethnic Relations = Handb Sociol Soc Res Handbook of The Sociology of Racial and Ethnic Relations = Handb. Sociol. Soc. Res. Handbook of Tourist Behavior = Routl Adv Tour Handbook of Tourist Behavior = Routl. Adv. Tour. Handbook of Transcription Factors = Subcell Biochem Handbook of Transcription Factors = Subcell. Biochem. Handbook of Turfgrass Management and Physiology = Books Soil Plant Env Handbook of Turfgrass Management and Physiology = Books. Soil. Plant. Env. Handbook of Type 1 Diabetes Mellitus: Etiology, Diagnosis, and Treatment = Metab Dis-lab Clin R Handbook of Type 1 Diabetes Mellitus: Etiology, Diagnosis, and Treatment = Metab. Dis-lab. Clin. R. Handbook of Vegetation Science = Handb. Veg. Sci. Handbook of Vinyl Polymers: Radical Polymerization, Process, and Technology, Second Edition = Plast Eng-crc Handbook of Vinyl Polymers: Radical Polymerization, Process, and Technology, Second Edition = Plast. Eng-crc. Handbook of Violence Risk Assessment = Int Persp Foren Ment Handbook of Violence Risk Assessment = Int. Persp. Foren. Ment. Handbook of Vitamin C Research: Daily Requirements, Dietary Sources and Adverse Effects = Nutr Diet Res Prog Handbook of Vitamin C Research: Daily Requirements, Dietary Sources and Adverse Effects = Nutr. Diet. Res. Prog. Handbook of Waste Management and Co-product Recovery in Food Processing, Volume 1 = Woodhead Publ Food S Handbook of Waste Management and Co-product Recovery in Food Processing, Volume 1 = Woodhead. Publ. Food S. Handbook of Waste Management and Co-product Recovery in Food Processing, Volume 2 = Woodhead Food Ser Handbook of Waste Management and Co-product Recovery in Food Processing, Volume 2 = Woodhead. Food Ser. Handbook of Water and Energy Management in Food Processing = Woodhead Food Ser Handbook of Water and Energy Management in Food Processing = Woodhead. Food Ser. Handbook of Weighted Automata = Monogr Theor Comput Handbook of Weighted Automata = Monogr. Theor. Comput. Handbook On Agroforestry: Management Practices and Environmental Impact = Environ Sci Eng Tech Handbook On Agroforestry: Management Practices and Environmental Impact = Environ. Sci. Eng. Tech. Handbook On Approval Voting = Stud Choice Welf Handbook On Approval Voting = Stud. Choice. Welf. Handbook On Building Cultures of Peace = Peace Psychol Book S Handbook On Building Cultures of Peace = Peace Psychol. Book. S. Handbook On Business Process Management 1: Introduction, Methods, and Information Systems = Int Handb Inform Sys Handbook On Business Process Management 1: Introduction, Methods, and Information Systems = Int. Handb. Inform. Sys. Handbook On Business Process Management 2: Strategic Alignment, Governance, People and Culture = Int Handb Inform Sys Handbook On Business Process Management 2: Strategic Alignment, Governance, People and Culture = Int. Handb. Inform. Sys. Handbook On Crime and Deviance = Handb Sociol Soc Res Handbook On Crime and Deviance = Handb. Sociol. Soc. Res. Handbook On Cross-border Industrial Sub-contracting = Aija Law Lib Handbook On Cross-border Industrial Sub-contracting = Aija. Law. Lib. Handbook On Cyanobacteria: Biochemistry, Biotechnology and Applications = Bacteriol Res Dev Handbook On Cyanobacteria: Biochemistry, Biotechnology and Applications = Bacteriol. Res. Dev. Handbook On Decision Making, Vol 1: Techniques and Applications = Intel Syst Ref Libr Handbook On Decision Making, Vol 1: Techniques and Applications = Intel. Syst. Ref. Libr. Handbook On Environmental Quality = Environ Res Adv Handbook On Environmental Quality = Environ. Res. Adv. Handbook On Mass Spectrometry: Instrumentation, Data and Analysis, and Applications = Adv Chem Res Handbook On Mass Spectrometry: Instrumentation, Data and Analysis, and Applications = Adv. Chem. Res. Handbook On Modelling for Discrete Optimization = Int Ser Oper Res Man Handbook On Modelling for Discrete Optimization = Int. Ser. Oper. Res. Man. Handbook On Social Change = Soc Iss Justice Stat Handbook On Social Change = Soc. Iss. Justice. Stat. Handbook On White Matter: Structure, Function and Changes = Neuroanat Res Lead Handbook On White Matter: Structure, Function and Changes = Neuroanat. Res. Lead. Handbooks in Economics = Handbooks in Econom. Handbooks in Information Systems = Handb Info Syst Handbooks in Information Systems = Handb. Info. Syst. Handbooks in Operations Research and Management Science = Handbooks Oper. Res. Management Sci. Handbooks of Applied Linguistics-communication Competence Language and Communication Problems Practical Solutions = Handb Appl Linguist Handbooks of Applied Linguistics-communication Competence Language and Communication Problems Practical Solutions = Handb. Appl. Linguist. Handbooks of Sociology and Social Research = Handb Sociol Soc Res Handbooks of Sociology and Social Research = Handb. Sociol. Soc. Res. Handbuch der Altertumswissenschaften = HAW Handbuch der Archäologie = HdArch Handbuch Der Audiotechnik = Vdi-buch Handbuch Der Audiotechnik = Vdi-buch. Handbuch Der Deutschen Wortarten = Degruyter Studienb Handbuch Der Deutschen Wortarten = Degruyter. Studienb. Handbuch Der Mess- Und Automatisierungstechnik in Der Produktion = Vdi-buch Handbuch Der Mess- Und Automatisierungstechnik in Der Produktion = Vdi-buch. Handbuch Dieselmotoren = Vdi-buch Handbuch Dieselmotoren = Vdi-buch. Handbucher Zur Sprach Und Kommunikationswissenschaft = Handb Sprach Kommun Handbucher Zur Sprach Und Kommunikationswissenschaft = Handb. Sprach Kommun. Handbuch Fur Technisches Produktdesign = Vdi-buch Handbuch Fur Technisches Produktdesign = Vdi-buch. Handbuch Logistik = Vdi-buch Handbuch Logistik = Vdi-buch. Handbuch Robotik = Vdi-buch Handbuch Robotik = Vdi-buch. Handchirurgie = Handchirurgie Handchirurgie Mikrochirurgie Plastische Chirurgie = Handchir Mikrochir P Handchirurgie Mikrochirurgie Plastische Chirurgie = Handchir. Mikrochir. P. Handchirurgie, Mikrochirurgie, Plastische Chirurgie=Handchir Mikrochir Plast Chir;; Handchirurgie, Mikrochirurgie, Plastische Chirurgie = Handchir. Mikrochir. Plast. Chir. Handchirurgie, Mikrochirurgie, plastische Chirurgie : Organ der Deutschsprachigen Arbeitsgemeinschaft fur Handchirurgie : Organ der Deutschsprachigen Arbeitsgemeinschaft fur Mikrochirurgie der Peripheren Nerven und Gefasse : Organ der V... = Handchir Mikrochir Plast Chir Hand clinics = Hand Clin Hand Clinics=Hand Clin;; Hand Clinics = Hand Clin Hand Clinics = Hand Clin. Handelingen der Maatschappij voor Geschiedenis en Oudheidkunde te Gent. Societe d'histoire et d'archeologie de Gand = Handel Maatsch Geschied Oudheidk Gent Handeln und Entscheiden in Komplexen Ökonomischen Situationen = Handeln Entscheid. Komplexen Ökon. Situat. Hand = Hand Handheld and Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Handheld and Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Handlungsfreiheit Des Unternehmers: Wirtschaftliche Perspektiven, Strafrechtliche Und Ethische Schranken = Inst Law Financ Ser Handlungsfreiheit Des Unternehmers: Wirtschaftliche Perspektiven, Strafrechtliche Und Ethische Schranken = Inst. Law. Financ. Ser. Hand of God = W U Neu Test Hand of God = W. U. Neu. Test. Handover in Dvb-h: Investigation and Analysis = Signals Commun Techn Handover in Dvb-h: Investigation and Analysis = Signals. Commun. Techn. Hands-on Inventory Management = Resource Manag-crc Hands-on Inventory Management = Resource. Manag-crc. Hand surgery : an international journal devoted to hand and upper limb surgery and related research : journal of the Asia-Pacific Federation of Societies for Surgery of the Hand = Hand Surg Hand Surgery = Hand Surg. Hand Surgery: Preoperative Expectations Techniques and Results = Surg-proced Complica Hand Surgery: Preoperative Expectations Techniques and Results = Surg-proced. Complica. Haney Foundation Series = Haney Found Ser Haney Foundation Series = Haney Found. Ser. Han'guk Ch'uksan Hakhoe chi = Korean journal of animal science|Hanguk Chuksan Hakhoe Chi Han'guk Kyunhakhoe chi = Hanguk Kyun Hakoe Chi Han'guk Misaengmul, Saengmyong Konghakhoe chi = Korean journal of microbiology and biotechnology|Hanguk Misaengmul Saengmyong Konghakhoe Chi Han'guk Nonghwa Hakhoe chi = Hanguk Nonghwa Hakhoe Chi Han'guk Saenghwa Hakhoechi = Han'guk Saenghwa Hakhoechi Han'guk T'oyang Piryo Hakhoechi = Han'guk T'oyang Piryo Hakhoechi [Hanguk uiyak] Korean journal of medicine = Hanguk Uiyak Han'guk Ungyong Konch'ung Hakhoe chi = Korean journal of applied entomology|Hanguk Ungyong Konchung Hakhoe Chi Han'guk Yakyong Changmul Hakhoe chi = Korean journal of medicinal crop science|Hanguk Yakyong Changmul Hakhoe Chi Hankel Norm Approximation for Infinite-dimensional Systems = Lect Notes Contr Inf Hankel Norm Approximation for Infinite-dimensional Systems = Lect. Notes. Contr. Inf. Hannah Arendt = Routl Crit Thinkers Hannah Arendt = Routl. Crit. Thinkers. Hannoversche Beitrage Zur Nachrichtentechnik = Hann Beitr Nachricht Hannoversche Beitrage Zur Nachrichtentechnik = Hann. Beitr. Nachricht. Hans Christian Orsted and The Romantic Legacy in Science = Bost Stud Philos Sci Hans Christian Orsted and The Romantic Legacy in Science = Bost. Stud. Philos. Sci. Hansenologia internationalis = Hansenol Int Hansenologia Internationalis = Hansenol. Int. Hans J Morgenthaus Theory of International Relations: Disenchantment and Re-enchantment = Int Polit Theor Ser Hans J Morgenthaus Theory of International Relations: Disenchantment and Re-enchantment = Int. Polit. Theor. Ser. Hans Lietzmann Vorlesungen = Hans Lietzmann Vorle Hans Lietzmann Vorlesungen = Hans Lietzmann Vorle. Hans Zell Studies On Publishing = Hz St Publ Hans Zell Studies On Publishing = Hz. St. Publ. Hantaviruses = Curr Top Microbiol Hantaviruses = Curr. Top. Microbiol. Happiness, Well-being and The Meaning of Life = Stud Philoso Theol Happiness, Well-being and The Meaning of Life = Stud. Philoso. Theol. Haptic and Audio Interaction Design = Lect Notes Comput Sc Haptic and Audio Interaction Design = Lect. Notes. Comput. Sc. Haptic and Audio Interaction Design, Proceedings = Lect Notes Comput Sc Haptic and Audio Interaction Design, Proceedings = Lect. Notes. Comput. Sc. Haptic Human-computer Interaction, Proceedings = Lect Notes Comput Sc Haptic Human-computer Interaction, Proceedings = Lect. Notes. Comput. Sc. Haptics: Generating and Perceiving Tangible Sensations, Pt Ii, Proceedings = Lect Notes Comput Sc Haptics: Generating and Perceiving Tangible Sensations, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Haptics: Generating and Perceiving Tangible Sensations, Pt I, Proceedings = Lect Notes Comput Sc Haptics: Generating and Perceiving Tangible Sensations, Pt I, Proceedings = Lect. Notes. Comput. Sc. Haptics: Perception, Devices and Scenarios, Proceedings = Lect Notes Comput Sc Haptics: Perception, Devices and Scenarios, Proceedings = Lect. Notes. Comput. Sc. Harbin Institute of Technology = J. Harbin Inst. Tech. Harbor dental log = Harb Dent Log Harbor Dental Log = Harb. Dent. Log Harbour Protection Through Data Fusion Technologies = Nato Sci Peace Secur Harbour Protection Through Data Fusion Technologies = Nato. Sci. Peace. Secur. Hard Copy and Printing Materials, Media, and Processes = P Soc Photo-opt Ins Hard Copy and Printing Materials, Media, and Processes = P. Soc. Photo-opt. Ins. Hard Materials in Optics = P Soc Photo-opt Ins Hard Materials in Optics = P. Soc. Photo-opt. Ins. Hard Rock Hydrosystems = Iahs-aish P Hard Rock Hydrosystems = Iahs-aish. P. Hard-to-measure Goods and Services = Nber Conf R Hard-to-measure Goods and Services = Nber. Conf. R. Hardware and Software Verification and Testing = Lect Notes Comput Sc Hardware and Software Verification and Testing = Lect. Notes. Comput. Sc. Hardware and Software, Verification and Testing = Lect Notes Comput Sc Hardware and Software, Verification and Testing = Lect. Notes. Comput. Sc. Hardware and Software: Verification and Testing = Lect Notes Comput Sc Hardware and Software: Verification and Testing = Lect. Notes. Comput. Sc. Hardware and Software: Verification and Testing, Proceedings = Lect Notes Comput Sc Hardware and Software: Verification and Testing, Proceedings = Lect. Notes. Comput. Sc. Hardware/software Co-design = Nato Adv Sci I E-app Hardware/software Co-design = Nato. Adv. Sci. I. E-app. Hardware/software Co-design = Nato Adv Sci Inst Se Hardware/software Co-design = Nato. Adv. Sci. Inst. Se. Hardware/software Codesign - Sixth International Workshop Proceedings = Hardw Softw Codes Hardware/software Codesign - Sixth International Workshop Proceedings = Hardw. Softw. Codes. Hardware Specification, Verification and Synthesis : Mathematical Aspects = Lect Notes Comput Sc Hardware Specification, Verification and Synthesis : Mathematical Aspects = Lect. Notes. Comput. Sc. Hard X-ray and Gamma-ray Detector Physics and Applications = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics and Applications = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics and Penetrating Radiation Systems Viii = Proc Spie Hard X-ray and Gamma-ray Detector Physics and Penetrating Radiation Systems Viii = Proc. Spie. Hard X-ray and Gamma-ray Detector Physics and Penetrating Radiation Systems Viii = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics and Penetrating Radiation Systems Viii = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics Iii = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics Iii = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics Ix = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics Ix = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics, Optics, and Applications = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics, Optics, and Applications = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics Vi = Proc Spie Hard X-ray and Gamma-ray Detector Physics Vi = Proc. Spie. Hard X-ray and Gamma-ray Detector Physics Vi = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics Vi = P. Soc. Photo-opt. Ins. Hard X-ray and Gamma-ray Detector Physics V = P Soc Photo-opt Ins Hard X-ray and Gamma-ray Detector Physics V = P. Soc. Photo-opt. Ins. Hard X-ray Gamma-ray and Neutron Detector Physics Ii = P Soc Photo-opt Ins Hard X-ray Gamma-ray and Neutron Detector Physics Ii = P. Soc. Photo-opt. Ins. Hard X-ray, Gamma-ray, and Neutron Detector Physics = Proc Spie Hard X-ray, Gamma-ray, and Neutron Detector Physics = Proc. Spie. Hard X-ray, Gamma-ray, and Neutron Detector Physics = P Soc Photo-opt Ins Hard X-ray, Gamma-ray, and Neutron Detector Physics = P. Soc. Photo-opt. Ins. Hard X-ray, Gamma-ray, and Neutron Detector Physics Xii = Proc Spie Hard X-ray, Gamma-ray, and Neutron Detector Physics Xii = Proc. Spie. Hard X-ray, Gamma-ray, and Neutron Detector Physics Xii = P Soc Photo-opt Ins Hard X-ray, Gamma-ray, and Neutron Detector Physics Xii = P. Soc. Photo-opt. Ins. Hard X-ray, Gamma-ray, and Neutron Detector Physics X = P Soc Photo-opt Ins Hard X-ray, Gamma-ray, and Neutron Detector Physics X = P. Soc. Photo-opt. Ins. Hard X-ray/gamma-ray and Neutron Optics, Sensors, and Applications = P Soc Photo-opt Ins Hard X-ray/gamma-ray and Neutron Optics, Sensors, and Applications = P. Soc. Photo-opt. Ins. Hardy-Ramanujan Journal = Hardy-Ramanujan J. Hardy Space of A Slit Domain = Front Math Hardy Space of A Slit Domain = Front. Math. Harefuah=Harefuah;; Harefuah = Harefuah Harmful Algae = Harmful Algae Harming Future Persons: Ethics, Genetics and The Nonidentity Problem = Int Libr Eth Law New Harming Future Persons: Ethics, Genetics and The Nonidentity Problem = Int. Libr. Eth. Law. New. Harmonic Analysis and Hypergroups = Trends Math Harmonic Analysis and Hypergroups = Trends. Math. Harmonic Analysis and Partial Differential Equations = Chic Lec M Harmonic Analysis and Partial Differential Equations = Chic. Lec. M. Harmonic Analysis and Partial Differential Equations = Contemp Math Harmonic Analysis and Partial Differential Equations = Contemp. Math. Harmonic Analysis and Rational Approximation: Their Roles in Signals, Control and Dynamical Systems = Lect Notes Contr Inf Harmonic Analysis and Rational Approximation: Their Roles in Signals, Control and Dynamical Systems = Lect. Notes. Contr. Inf. Harmonic Analysis At Mount Holyoke = Contemp Math Harmonic Analysis At Mount Holyoke = Contemp. Math. Harmonic Analysis: Calderon-zygmund and Beyond = Contemp Math Harmonic Analysis: Calderon-zygmund and Beyond = Contemp. Math. Harmonic Analysis of Mean Periodic Functions On Symmetric Spaces and The Heisenberg Group = Springer Monogr Math Harmonic Analysis of Mean Periodic Functions On Symmetric Spaces and The Heisenberg Group = Springer. Monogr. Math. Harmonic Analysis of Operators On Hilbert Space, Second Edition = Universitext Harmonic Analysis of Operators On Hilbert Space, Second Edition = Universitext. Harmonic Analysis On Reductive, P-adic Groups = Contemp Math Harmonic Analysis On Reductive, P-adic Groups = Contemp. Math. Harmonic Analysis On Spaces of Homogeneous Type = Lect Notes Math Harmonic Analysis On Spaces of Homogeneous Type = Lect. Notes. Math. Harmonic Analysis, Partial Differential Equations, and Related Topics = Contemp Math Harmonic Analysis, Partial Differential Equations, and Related Topics = Contemp. Math. Harmonic Analysis, Signal Processing, and Complexity = Prog Math Harmonic Analysis, Signal Processing, and Complexity = Prog. Math. Harmonic Maps and Differential Geometry = Contemp Math Harmonic Maps and Differential Geometry = Contemp. Math. Harmonic Morphisms, Harmonic Maps, and Related Topics = Ch Crc Res Notes Harmonic Morphisms, Harmonic Maps, and Related Topics = Ch. Crc. Res. Notes. Harmonisch Entgegengesetzt: Zur Darstellung Und Darstellbarkeit in Holderlins Poetik Um 1800 = Hermaea Ger Forsch Harmonisch Entgegengesetzt: Zur Darstellung Und Darstellbarkeit in Holderlins Poetik Um 1800 = Hermaea. Ger. Forsch. Harmonization of Seismic Hazard in Vrancea Zone: With Special Emphasis On Seismic Risk Reduction = Nato Sci Peace Secur Harmonization of Seismic Hazard in Vrancea Zone: With Special Emphasis On Seismic Risk Reduction = Nato. Sci. Peace. Secur. Harmonizing Cosmic Distance Scales in A Post-hipparcos Era = Astr Soc P Harmonizing Cosmic Distance Scales in A Post-hipparcos Era = Astr. Soc. P. Harmony and Dissent: Film and Avant-garde Art Movements in The Early Twentieth Century = Film Media Stud Ser Harmony and Dissent: Film and Avant-garde Art Movements in The Early Twentieth Century = Film Media. Stud. Ser. Harmony of Civilization and Prosperity for All = Procd Soc Behv Harmony of Civilization and Prosperity for All = Procd. Soc. Behv. Harmony Search Algorithms for Structural Design Optimization = Stud Comput Intell Harmony Search Algorithms for Structural Design Optimization = Stud. Comput. Intell. Harm Paradox: Tort Law and The Unwanted Child in An Era of Choice = Biomed Law Ethics Li Harm Paradox: Tort Law and The Unwanted Child in An Era of Choice = Biomed. Law Ethics. Li. Harm reduction journal = Harm Reduct J Harm Reduction Journal = Harm Reduct J Harm Reduction Journal = Harm Reduct. J. Harnessing Biological Complexity: An Introduction to Computational Physiology = First Course Silico Harnessing Biological Complexity: An Introduction to Computational Physiology = First. Course. Silico. Harnessing Biotechnology for The 21st-century = Conf P Acs Harnessing Biotechnology for The 21st-century = Conf. P. Acs. Harnessing Light: Optical Science and Metrology At Nist = P Soc Photo-opt Ins Harnessing Light: Optical Science and Metrology At Nist = P. Soc. Photo-opt. Ins. Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond Ii = Proc Spie Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond Ii = Proc. Spie. Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond = Proc Spie Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond = Proc. Spie. Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond = P Soc Photo-opt Ins Harnessing Relativistic Plasma Waves As Novel Radiation Sources From Terahertz to X-rays and Beyond = P. Soc. Photo-opt. Ins. Harofe haivri. The Hebrew medical journal = Harofe Haivri Heb Med J Harold Laski: Problems of Democracy, The Sovereign State, and International Society = Palgr Mac Ser Hist Harold Laski: Problems of Democracy, The Sovereign State, and International Society = Palgr. Mac. Ser. Hist. Haro Sur Le Seigneur! Les Luttes Anti-seigneuriales Dans L Europe Medievale Et Moderne = Flaran Haro Sur Le Seigneur! Les Luttes Anti-seigneuriales Dans L Europe Medievale Et Moderne = Flaran. Harper Hospital bulletin = Harper Hosp Bull Harpers = Harpers Harper's = Harpers (N Y N Y) Harsh Environment Sensors Ii = P Soc Photo-opt Ins Harsh Environment Sensors Ii = P. Soc. Photo-opt. Ins. Hartford Hospital bulletin = Hartford Hosp Bull Hartford Studies in Literature = Hartford Stud Lit Hartford Studies in Literature = Hartford Stud. Lit. Harvard Aids Institute Series On Gene Regulation of Human Retroviruses = Harv Aids G Harvard Aids Institute Series On Gene Regulation of Human Retroviruses = Harv. Aids G. Harvard AIDS review = Harv AIDS Rev Harvard Architecture Review = Harvard Archit Rev Harvard Architecture Review = Harvard Archit. Rev. Harvard blackletter law journal = Harv Blacklett Law J Harvard Business Review=Harvard Bus. Rev. Harvard Business Review = Harvard Bus Rev Harvard Business Review = Harvard Bus. Rev. Harvard business review = Harv Bus Rev Harvard Business Review = Harv. Bus. Rev. Harvard Business School Research Colloquium = Harv Bus C Harvard Business School Research Colloquium = Harv. Bus. C. Harvard Civil Rights-civil Liberties Law Review = Harvard Civil Rights Harvard Civil Rights-civil Liberties Law Review = Harvard Civil Rights. Harvard civil rights-civil liberties law review = Harv Civ Rights-Civil Lib Law Rev Harvard Contemporary China Series = Harv Con Ch Harvard Contemporary China Series = Harv. Con. Ch. Harvard dental alumni bulletin = Harv Dent Alumni Bull Harvard Dental Alumni Bulletin = Harv. Dent. Alumni Bull. Harvard dental bulletin = Harv Dent Bull Harvard Dental Bulletin = Harv. Dent. Bull. Harvard Educational Review = Harvard Educ Rev Harvard Educational Review = Harvard Educ. Rev. Harvard educational review = Harv Educ Rev Harvard Environmental Law Review = Harvard Environ Law Harvard Environmental Law Review = Harvard Environ. Law Harvard health letter / from Harvard Medical School = Harv Health Lett Harvard Health Letter = Harv. Health Lett. Harvard heart letter : from Harvard Medical School = Harv Heart Lett Harvard Heart Letter = Harv. Heart Lett. Harvard human rights journal = Harv Hum Rights J Harvard International Journal of Press-politics = Harv Int J Press-pol Harvard International Journal of Press-politics = Harv Int J Press/pol Harvard International Journal of Press-politics = Harv. Int. J. Press-pol. Harvard International Journal of Press-politics = Harv. Int. J. Press/pol. Harvard international law journal = Harvard Int Law J Harvard International Law Journal = Harvard Int Law J Harvard International Law Journal = Harvard Int. Law J. Harvard international review = Harvard Int Rev Harvard Journal of Asiatic Studies = Harvard J Asiat Stud Harvard Journal of Asiatic Studies = Harvard J. Asiat. Stud. Harvard journal of Asiatic studies = Harv J Asiat Stud Harvard Journal of Law and Public Policy = Harvard J Law Publ P Harvard Journal of Law and Public Policy = Harvard J. Law Publ. P. Harvard journal of law & public policy = Harv J Law Public Policy Harvard journal of law & technology = Harv J Law Technol Harvard journal on legislation = Harvard J Legis Harvard Journal On Legislation = Harvard J Legis Harvard Journal On Legislation = Harvard J. Legis. Harvard Law Review = Harvard Law Rev Harvard Law Review = Harvard Law Rev. Harvard law review = Harv Law Rev Harvard Law Review = Harv. Law Rev. Harvard Library Bulletin = Harvard Libr Bull Harvard Library Bulletin = Harvard Libr. Bull. Harvard library bulletin = Harv Libr Bull Harvard Library Bulletin = HLB Harvard magazine = Harv Mag Harvard medical alumni bulletin = Harv Med Alumni Bull Harvard men's health watch = Harv Mens Health Watch Harvard Men's Health Watch = Harv. Mens Health Watch Harvard Mental Health Letter = Harv. Ment. Health Lett. Harvard Review of Psychiatry = Harvard Rev Psychiat Harvard Review of Psychiatry = Harvard Rev. Psychiat. Harvard review of psychiatry = Harv Rev Psychiatry Harvard Review of Psychiatry=Harv Rev Psychiatry;; Harvard Review of Psychiatry = Harv. Rev. Psychiatry Harvard Semitic Series = HSS Harvard Series in Ukrainian Studies = Harv S Ukrain St Harvard Series in Ukrainian Studies = Harv. S. Ukrain. St. Harvard Studies in Classical Philology = Harvard Stud Class P Harvard Studies in Classical Philology = Harvard Stud. Class. P. Harvard Studies in Classical Philology = HarvStClPhil Harvard studies in classical philology = Harv Stud Classic Philol Harvard Studies in Classical Philology = Harv Stud Class Phil Harvard Studies in Classical Philology = Harv. Stud. Class. Phil. Harvard Studies in Classical Philology = HSPh Harvard Studies in Classical Philology, Vol 100 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 100 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 102 = Harv Stud Class Phil Harvard Studies in Classical Philology, Vol 102 = Harv. Stud. Class. Phil. Harvard Studies in Classical Philology, Vol 103 = Harv Stud Class Phil Harvard Studies in Classical Philology, Vol 103 = Harv. Stud. Class. Phil. Harvard Studies in Classical Philology, Vol 105 = Harv Stud Class Phil Harvard Studies in Classical Philology, Vol 105 = Harv. Stud. Class. Phil. Harvard Studies in Classical Philology, Vol 95 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 95 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 96 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 96 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 97 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 97 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 98 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 98 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 98 = Harv Stud Class Phil Harvard Studies in Classical Philology, Vol 98 = Harv. Stud. Class. Phil. Harvard Studies in Classical Philology, Vol 99 = Harvard Stud Class P Harvard Studies in Classical Philology, Vol 99 = Harvard Stud. Class. P. Harvard Studies in Classical Philology, Vol 99 = Harv Stud Class Phil Harvard Studies in Classical Philology, Vol 99 = Harv. Stud. Class. Phil. Harvard Studies in International Affairs = Harvard Stud Int Aff Harvard Studies in International Affairs = Harvard Stud. Int. Aff. Harvard Teachers Record = Harv Teach Rec Harvard Teachers Record = Harv. Teach. Rec. Harvard Theological Review = Harvard Theol Rev Harvard Theological Review = Harvard Theol. Rev. Harvard Theological Review = HThR Harvard University Art Museums Bulletin = BHarvMus Harvard women's health watch = Harv Womens Health Watch Harvard Women's Health Watch = Harv. Womens Health Watch Harvard women's law journal = Harv Women's Law J Harvey lectures = Harvey Lect Harvey Lectures=Harvey Lect;; Harvey Lectures = Harvey Lect Harvey Lectures = Harvey Lect. Harvey Lectures, Series 94, 1998-1999 = Harvey Lect Harvey Lectures, Series 94, 1998-1999 = Harvey Lect. Harvey Lectures, Vol 87 = Harvey Lect Harvey Lectures, Vol 87 = Harvey Lect. Harvey Lectures, Vol 92, 1996-1997 = Harvey Lect Harvey Lectures, Vol 92, 1996-1997 = Harvey Lect. Harz-Zeitschrift = Harz Z Haseltonia = Haseltonia ha-Sifrut = Hasifrut Hasler Review = Hasler Rev Hasler Review = Hasler Rev. HASL Reports = HASL Rep. HASL [reports]. U.S. Atomic Energy Commission = HASL Rep Hastane = Hastane Hastings Center Report=Hastings Cent Rep;; Hastings Center Report = Hastings Cent Rep Hastings Center Report = Hastings Cent. Rep. Hastings Center Studies = Hastings Cent Stud Hastings Center Studies = Hastings Cent. Stud. Hastings constitutional law quarterly = Hastings Constit Law Q Hastings international and comparative law review = Hastings Int Comp Law Rev Hastings Law Journal = Hastings Law J Hastings Law Journal = Hastings Law J. Hastings women's law journal = Hastings Womens Law J Haunted Visions: Spiritualism and American Art = Arts Intell Life Mod Haunted Visions: Spiritualism and American Art = Arts. Intell. Life. Mod. Haunting The Knowledge Economy = Int Libr Sociol Haunting The Knowledge Economy = Int. Libr. Sociol. Hautarzt=Hautarzt;; Hautarzt = Hautarzt Have Japanese Firms Changed: The Lost Decade = Palgr Mac Asian Bus Have Japanese Firms Changed: The Lost Decade = Palgr. Mac. Asian. Bus. Hawaii bar journal (Honolulu, Hawaii : 1963) = Haw Bar J Hawaii Cooperative Extension Service Miscellaneous Publications = Hawaii Ces Misc Bull Hawaii Cooperative Extension Service Miscellaneous Publications = Hawaii Ces. Misc. Bull. Hawaii dental journal = Hawaii Dent J Hawaii Dental Journal = Hawaii Dent. J. Hawaii medical journal = Hawaii Med J Hawaii Medical Journal=Hawaii Med J;; Hawaii Medical Journal = Hawaii Med J Hawaii Medical Journal = Hawaii Med. J. Hawaii Nurse = Hawaii Nurse Hawaii nurse (Honolulu, Hawaii : 1994) = Hawaii Nurse (Honol) Hawaii nurses pipeline = Hawaii Nurses Pipeline Hawaii Nurses Pipeline = Hawaii Nurses Pipeline Hawaii revised statutes : comprising the statutes of the State of Hawaii, consolidated, revised, and annotated / published by authority. Hawaii = Hawaii Revis Statut Hawaii Haworth Addictions Treatment Series = Haworth Addict Treat Haworth Addictions Treatment Series = Haworth Addict. Treat. Haworth Series in Glbt Family Studies = Haworth Ser Glbt Fam Haworth Series in Glbt Family Studies = Haworth Ser. Glbt Fam. Haydn-studien = Haydn-stud Haydn-studien = Haydn-stud. Hayek and Natural Law = Routl Front Polit Ec Hayek and Natural Law = Routl. Front. Polit. Ec. Hayek, Mill and The Liberal Tradition = Routl Stud Hist Econ Hayek, Mill and The Liberal Tradition = Routl. Stud. Hist. Econ. Hayek Versus Marx = Routl Front Polit Ec Hayek Versus Marx = Routl. Front. Polit. Ec. Hayes historical journal = Hayes Hist J Hazardous Chemicals in Products and Processes: Substitution As An Innovative Process = Sustain Innov Hazardous Chemicals in Products and Processes: Substitution As An Innovative Process = Sustain. Innov. Hazardous Waste and Hazardous Materials = Hazard. Waste Hazard. Mater. Hazardous Waste Consultant = Hazardous Waste Cons Hazardous Waste Consultant = Hazardous Waste Cons. Hazardous Waste & Hazardous Materials = Hazard Waste Hazard Hazardous Waste & Hazardous Materials = Hazard. Waste Hazard. Hazardous Waste Siting and Democratic Choice = Am Gov Publ Pol Hazardous Waste Siting and Democratic Choice = Am. Gov. Publ. Pol. Hazards of Pesticides to Bees = Colloq Inra Hazards of Pesticides to Bees = Colloq. Inra. Hazards Xii - European Advances in Process Safety = Inst Chem E Hazards Xii - European Advances in Process Safety = Inst. Chem. E. Hazards Xiii Process Safety - The Future = Inst Chem E Hazards Xiii Process Safety - The Future = Inst. Chem. E. Hazards Xi : New Directions in Process Safety = Inst Chem E Hazards Xi : New Directions in Process Safety = Inst. Chem. E. Hazards Xiv = Inst Chem E Hazards Xiv = Inst. Chem. E. Hazards Xvi: Analysing The Past, Planning The Future = Inst Chem E Hazards Xvi: Analysing The Past, Planning The Future = Inst. Chem. E. Hazards Xvii: Process Safety - Fulfilling Our Responsibilities = Inst Chem E Hazards Xvii: Process Safety - Fulfilling Our Responsibilities = Inst. Chem. E. Hazards Xv: The Process, Its Safety and The Environment - Getting It Right = Inst Chem E Hazards Xv: The Process, Its Safety and The Environment - Getting It Right = Inst. Chem. E. HBI report = HBI Rep HBI Report = HBI Rep. Hcci and Cai Engines for The Automotive Industry = Woodhead Publ Mech E Hcci and Cai Engines for The Automotive Industry = Woodhead. Publ. Mech. E. Hci 2006: 13th International Conference On The Physics of Highly Charged Ions = J Phys Conf Ser Hci 2006: 13th International Conference On The Physics of Highly Charged Ions = J. Phys. Conf. Ser. Hci and Usability for Education and Work, Proceedings = Lect Notes Comput Sc Hci and Usability for Education and Work, Proceedings = Lect. Notes. Comput. Sc. Hci and Usability for E-inclusion, Proceedings = Lect Notes Comput Sc Hci and Usability for E-inclusion, Proceedings = Lect. Notes. Comput. Sc. Hci and Usability for Medicine and Health Care, Proceedings = Lect Notes Comput Sc Hci and Usability for Medicine and Health Care, Proceedings = Lect. Notes. Comput. Sc. Hci in Work and Learning, Life and Leisure = Lect Notes Comput Sc Hci in Work and Learning, Life and Leisure = Lect. Notes. Comput. Sc. Hdc in Aceh: Promises and Pitfalls of Ngo Mediation and Implementation = Pol Stud Hdc in Aceh: Promises and Pitfalls of Ngo Mediation and Implementation = Pol. Stud. H. Dessau, Inscriptiones Latinae selectae (Berlin 1892--1916) = ILS Hdl and Ldl Cholesterol: Physiology and Clinical Significance = Biochem Res Trends Hdl and Ldl Cholesterol: Physiology and Clinical Significance = Biochem. Res. Trends. Headache and Chronic Pain Syndromes = Curr Clin Pract Headache and Chronic Pain Syndromes = Curr. Clin. Pract. Headache=Headache;; Headache = Headache Headache in Children and Adolescents = Int Congr Ser Headache in Children and Adolescents = Int. Congr. Ser. Headache Quarterly-current Treatment and Research = Headache Q-curr Trea Headache Quarterly-current Treatment and Research = Headache Q-curr. Trea. Head- and Helmet-mounted Displays Xii: Design and Applications = P Soc Photo-opt Ins Head- and Helmet-mounted Displays Xii: Design and Applications = P. Soc. Photo-opt. Ins. Head- and Helmet-mounted Displays Xv: Design and Applications = P Soc Photo-opt Ins Head- and Helmet-mounted Displays Xv: Design and Applications = P. Soc. Photo-opt. Ins. Head- and Helmet-mounted Displays Xvi: Design and Applications = P Soc Photo-opt Ins Head- and Helmet-mounted Displays Xvi: Design and Applications = P. Soc. Photo-opt. Ins. Head- and Helmet-mounted Display Xiii: Design and Applications = Proc Spie Head- and Helmet-mounted Display Xiii: Design and Applications = Proc. Spie. Head- and Helmet-mounted Display Xiii: Design and Applications = P Soc Photo-opt Ins Head- and Helmet-mounted Display Xiii: Design and Applications = P. Soc. Photo-opt. Ins. Head and Neck Cancer - Advances in Basic Research = Int Congr Ser Head and Neck Cancer - Advances in Basic Research = Int. Congr. Ser. Head and Neck Cancer, Vol 3 = Int Congr Ser Head and Neck Cancer, Vol 3 = Int. Congr. Ser. Head and Neck=Head Neck;; Head and Neck = Head Neck Head and Neck Injuries in Sports = Am Soc Test Mater Head and Neck Injuries in Sports = Am. Soc. Test. Mater. Head and Neck-journal for The Sciences and Specialties of The Head and Neck = Head Neck-j Sci Spec Head and Neck-journal for The Sciences and Specialties of The Head and Neck = Head Neck-j. Sci. Spec. Head and Neck Pathology = Consult Pathol Head and Neck Pathology = Consult. Pathol. Head and Neck Surgery = Head Neck Surg. Head & face medicine = Head Face Med Head in Edward Nugent's Hand: Roanoke's Forgotten Indians = Early Am Stud Ser Head in Edward Nugent's Hand: Roanoke's Forgotten Indians = Early. Am. Stud. Ser. Head-mounted Displays Ii = P Soc Photo-opt Ins Head-mounted Displays Ii = P. Soc. Photo-opt. Ins. Head-mounted Displays = P Soc Photo-opt Ins Head-mounted Displays = P. Soc. Photo-opt. Ins. Head & neck = Head Neck Head & Neck Surgery = Head Neck-j Sci Spec Head & Neck Surgery = Head Neck-j. Sci. Spec. Head & neck surgery = Head Neck Surg Head & Neck Surgery = Head Neck Surg Head & Neck Surgery = Head Neck Surg. Head Restraints and Whiplash: The Past, Present and Future = Transp Issues Polici Head Restraints and Whiplash: The Past, Present and Future = Transp. Issues. Polici. Headspace Analysis of Foods and Flavors = Adv Exp Med Biol Headspace Analysis of Foods and Flavors = Adv. Exp. Med. Biol. Healing Bodies, Saving Souls: Medical Missions in Asia and Africa = Clio Med Healing Bodies, Saving Souls: Medical Missions in Asia and Africa = Clio. Med. Healing Bodies, Saving Souls: Medical Missions in Asia and Africa = Clio Medica Healing Bodies, Saving Souls: Medical Missions in Asia and Africa = Clio. Medica. Healing From The Trauma of Peacekeeping = Health Psychol Res F Healing From The Trauma of Peacekeeping = Health. Psychol. Res. F. Healing Light = Heal Light Healing Light = Heal. Light HealthAction = HealthAction Health affairs = Health Aff Health Affairs = Health Affair Health Affairs = Health Affair. Health Affairs=Health Aff (Millwood);; Health Affairs = Health Aff. (Millwood) Health affairs (Project Hope) = Health Aff (Millwood) Health and Canadian society (Winnipeg, Man.) = Health Can Soc Health and Ecological Implications of Radioactively Contaminated Environments = P Nat C Rad Health and Ecological Implications of Radioactively Contaminated Environments = P. Nat. C. Rad. Health and Environment 1992 = Bga Schrift Health and Environment 1992 = Bga. Schrift. Health and Environment 1993 = Bga Schrift Health and Environment 1993 = Bga. Schrift. Health and Environment 91 = Bga Schrift Health and Environment 91 = Bga. Schrift. Health and Environment: Social Science Perspectives = Public Health 21st C Health and Environment: Social Science Perspectives = Public. Health 21st. C. Health and Human Development = Health Hum Dev Health and Human Development = Health Hum. Dev. Health and human rights = Health Hum Rights Health and Human Rights = Health Hum. Rights Health and Medical Aspects of Disaster Preparedness = Nato Chal M Health and Medical Aspects of Disaster Preparedness = Nato. Chal. M. Health and Medical Care Services Review = Health Med. Care Serv. Rev. Health and Medicine = Health Med. Health and Medicine in Hapsburg Spain: Agents, Practices, Representations = Med Hist Suppl Health and Medicine in Hapsburg Spain: Agents, Practices, Representations = Med. Hist. Suppl. Health and Medicine in The Circum-caribbean, 1800-1968 = Routl Stud Soc Hist Health and Medicine in The Circum-caribbean, 1800-1968 = Routl. Stud. Soc. Hist. Health and population; perspectives and issues = Health Popul Perspect Issues Health and Population: Perspectives and Issues = Health Popul. Perspect. Issues Health and Quality of Life Outcomes = Health Qual Life Out Health and Quality of Life Outcomes = Health Qual. Life Out. Health and quality of life outcomes = Health Qual Life Outcomes Health and Quality of Life Outcomes = Health Qual. Life Outcomes Health and Religious Rituals in South Asia: Disease, Possession and Healing = Routl S Asian Relig Health and Religious Rituals in South Asia: Disease, Possession and Healing = Routl. S. Asian. Relig. Health and Safety Code annotated of the State of California, adopted April 7, 1939 / annotated and indexed by the publisher's editorial staff. California = Health Saf Code Annot State Calif Adopt April 7 1939 Calif Health and sexuality = Health Sex Health and social service journal = Health Soc Serv J Health and Social Service Journal = Health Soc. Serv. J. Health and Social Work=Health Soc Work;; Health and Social Work = Health Soc. Work Health and The Modern Home = Routl Stud Soc Hist Health and The Modern Home = Routl. Stud. Soc. Hist. Health and The New Media = Lea Commun Ser Health and The New Media = Lea. Commun. Ser. Health and Treatment Strategies in Obesity = Adv Psychosom Med Health and Treatment Strategies in Obesity = Adv. Psychosom. Med. Health and Welfare During Industrialization = Nat Bur Ec Health and Welfare During Industrialization = Nat. Bur. Ec. Health At The Crossroads = Lshtm Publ Heal For Health At The Crossroads = Lshtm. Publ. Heal. For. Health Bulletin=Health Bull (Edinb);; Health Bulletin = Health Bull. (Edinb.) Health bulletin = Health Bull (Melb) Health Capital and Sustainable Socioeconomic Development = Public Adm Public Po Health Capital and Sustainable Socioeconomic Development = Public. Adm. Public. Po. Health Cards '95 = St Heal T Health Cards '95 = St. Heal. T. Healthcare Alabama / Alabama Hospital Association = Healthc Ala Healthcare Alabama = Healthc. Ala. Health care analysis : HCA : journal of health philosophy and policy = Health Care Anal Health Care Analysis = Health Care Anal Health Care Analysis = Health Care Anal. Health Care and Eu Law = Leg Iss Serv Gen Int Health Care and Eu Law = Leg. Iss. Serv. Gen. Int. Health Care Benchmarking and Performance Evaluation: An Assessment Using Data Envelopment Analysis (dea) = Int Ser Oper Res Man Health Care Benchmarking and Performance Evaluation: An Assessment Using Data Envelopment Analysis (dea) = Int. Ser. Oper. Res. Man. Healthcare benchmarks and quality improvement = Healthcare Benchmarks Qual Improv Healthcare benchmarks = Healthc Benchmarks Healthcare Benchmarks = Healthc. Benchmarks Healthcare bottom line = Healthc Bottom Line Healthcare Bottom Line = Healthc. Bottom Line Healthcare Computing and Communications = Healthc. Comput. Commun. Healthcare computing & communications = Healthc Comput Commun Health care cost reengineering report = Health Care Cost Reengineering Rep Health Care Cost Reengineering Report = Health Care Cost Reengineering Rep. Health Care Costs: Causes, Effects and Control = Health Care Iss Cost Health Care Costs: Causes, Effects and Control = Health Care Iss. Cost. Healthcare Demand and Disease Management = Healthc. Demand Dis. Manag. Healthcare demand & disease management = Healthc Demand Dis Manag Health care dimensions = Health Care Dimen Health Care Dimensions = Health Care Dimen. Health care education = Health Care Educ Health Care Education = Health Care Educ. Healthcare Engineering - Latest Developments and Applications = Imeche Conf Trans Healthcare Engineering - Latest Developments and Applications = Imeche. Conf. Trans. Health care ethics USA : a publication of the Center for Health Care Ethics = Health Care Ethics USA Healthcare executive currents = Healthc Exec Curr Healthcare Executive Currents = Healthc. Exec. Curr. Healthcare executive = Healthc Exec Healthcare Executive = Healthc. Exec. Healthcare facilities management series = Healthc Facil Manag Ser Healthcare Facilities Management Series = Healthc. Facil. Manag. Ser. Healthcare Financial Management = Healthc. Financ. Manage. Healthcare financial management : journal of the Healthcare Financial Management Association = Healthc Financ Manage Health Care Financing and Insurance: Options for Design = Dev Health Econ Publ Health Care Financing and Insurance: Options for Design = Dev. Health Econ. Publ. Health care financing review. Annual supplement = Health Care Financ Rev Annu Suppl Health Care Financing Review. Annual Supplement = Health Care Financ. Rev. Annu. Suppl. Health Care Financing Review = Health Care Financ R Health Care Financing Review = Health Care Financ. R. Health care financing review = Health Care Financ Rev Health Care Financing Review = Health Care Financ. Rev. Health care financing review. Statistical supplement = Health Care Financ Rev Stat Suppl Health Care Financing Review. Statistical Supplement = Health Care Financ. Rev. Stat. Suppl. Health care financing trends = Health Care Financ Trends Health Care Financing Trends = Health Care Financ. Trends Health Care Food and Nutrition Focus = Health Care Food Nutr. Focus Health care food & nutrition focus = Health Care Food Nutr Focus Healthcare foodservice = Healthc Foodserv Healthcare Foodservice = Healthc. Foodserv. Healthcare foodservice magazine : the international trade publication for the healthcare foodservice industry = Healthc Foodserv Mag Healthcare forum = Healthc Forum Healthcare Forum = Healthc. Forum Healthcare Forum Journal = Healthc. Forum J. Health Care for Women International = Health Care Women In Health Care for Women International = Health Care Women In. Health care for women international = Health Care Women Int Health Care for Women International = Health Care Women Int. Health Care for Women International-series = Health Care Women I Health Care for Women International-series = Health Care Women I. Health Care for Women International, Vol 19, No 4, July-august 1998 = Health Care Women I Health Care for Women International, Vol 19, No 4, July-august 1998 = Health Care Women I. Healthcare hazard management monitor : HHMM : the newsletter of the Center for Healthcare Environmental Management = Healthc Hazard Manage Monit Healthcare Hazardous Materials Management = Healthc. Hazard. Mater. Manage. Healthcare hazardous materials management : HHMM = Healthc Hazard Mater Manage Health care = Health Care (Don Mills) Health Care = Health Care (Don Mills) Healthcare human resources = Healthc Hum Resour Healthcare Human Resources = Healthc. Hum. Resour. Health care in Canada = Health Care Can Health Care in Canada = Health Care Can. Health Care Industry = Aimr Ind Anal Ser Health Care Industry = Aimr. Ind. Anal. Ser. Healthcare Informatics = Healthc. Inform. Healthcare informatics : the business magazine for information and communication systems = Healthc Inform Health Care Information Infrastructure = P Soc Photo-opt Ins Health Care Information Infrastructure = P. Soc. Photo-opt. Ins. Healthcare Information Management = Healthc. Inf. Manage. Healthcare information management : journal of the Healthcare Information and Management Systems Society of the American Hospital Association = Healthc Inf Manage Health Care in Malaysia: The Dynamics of Provision, Financing and Access = Rout Malays Stud Ser Health Care in Malaysia: The Dynamics of Provision, Financing and Access = Rout. Malays. Stud. Ser. Health Care Innovations = Health Care Innov. Health care innovations : the journal of the American Association of Preferred Provider Organizations = Health Care Innov Health Care Issues Costs and Access = Health Care Iss Cost Health Care Issues Costs and Access = Health Care Iss. Cost. Healthcare Knowledge Management Primer = Routl Ser Inform Sys Healthcare Knowledge Management Primer = Routl. Ser. Inform. Sys. Health care law monthly = Health Care Law Mon Health Care Law Monthly = Health Care Law Mon. Health Care Law Newsletter = Health Care Law Newsl. Health care law newsletter / Weissburg and Aronson, Inc = Health Care Law Newsl Healthcare leadership & management report = Healthc Leadersh Manag Rep Healthcare leadership report = Healthc Leadersh Rep Healthcare Management Forum = Healthc. Manage. Forum Health Care Management = Health Care Manag. Health care management (Philadelphia, Pa.) = Health Care Manag Health Care Management Review = Health Care Manage R Health Care Management Review = Health Care Manage. R. Health care management review = Health Care Manage Rev Health Care Management Review=Health Care Manage Rev;; Health Care Management Review = Health Care Manage. Rev. Health Care Management Science=Health Care Manage. Sci. Health Care Management Science = Health Care Manag Sc Health Care Management Science = Health Care Manag. Sc. Health care management science = Health Care Manag Sci Health Care Management Science = Health Care Manag. Sci. Health Care Marketer and Target Market = Health Care Mark. Target Market Health care marketer = Health Care Mark Health Care Marketer = Health Care Mark. Health care marketer & target market = Health Care Mark Target Market Health Care Newsletter = Health Care Newsl. Health care newsletter / National Safety Council = Health Care Newsl Healthcarepapers = Healthc. Pap. HealthcarePapers = Healthc Pap Health Care Planning and Marketing = Health Care Plann. Mark. Health care planning & marketing : HCP&M = Health Care Plann Mark Healthcare protection management = Healthc Prot Manage Healthcare Protection Management = Healthc. Prot. Manage. Health Care Provision Under Financial Constraint : A Decade of Change = Roy Soc Med Int Cong Health Care Provision Under Financial Constraint : A Decade of Change = Roy. Soc. Med. Int. Cong. Healthcare quarterly (Toronto, Ont.) = Healthc Q Health Care Reform: The Will to Change = Oecd Heal Pol Stud Health Care Reform: The Will to Change = Oecd. Heal. Pol. Stud. Health care reform week = Health Care Reform Week Health Care Reform Week = Health Care Reform Week Healthcare Research Ethics and Law: Regulation, Review and Responsibility = Biomed Law Ethics Li Healthcare Research Ethics and Law: Regulation, Review and Responsibility = Biomed. Law. Ethics Li. Health care security and safety management = Health Care Secur Saf Manage Health Care Security and Safety Management = Health Care Secur. Saf. Manage. Health Care Services, Racial and Ethnic Minorities and Underserved Populations = Res Sociol Health Ca Health Care Services, Racial and Ethnic Minorities and Underserved Populations = Res. Sociol. Health Ca. Health care strategic management = Health Care Strateg Manage Health Care Strategic Management = Health Care Strateg. Manage. Healthcare Strategist = Healthc. Strateg. Health Care Supervisor = Health Care Superv Health Care Supervisor = Health Care Superv. Health care systems = Health Care Syst Health Care Systems = Health Care Syst. Healthcare systems strategy report = Healthc Syst Strategy Rep Healthcare Systems Strategy Report = Healthc. Syst. Strategy Rep. Healthcare Trends and Transition = Healthc. Trends Transit. Healthcare trends & transition = Healthc Trends Transit Healthcare Utilization and Cost Series = Hlthc Util Healthcare Utilization and Cost Series = Hlthc. Util. Health care week = Health Care Week Health Care Week = Health Care Week Health communication = Health Commun Health Communication = Health Commun Health Communication = Health Commun. Health Communications and Informatics = Health Commun Infor Health Communications and Informatics = Health Commun. Infor. Health communications and informatics = Health Commun Informatics Health Communications and Informatics = Health Commun. Informatics Health cost management = Health Cost Manage Health Cost Management = Health Cost Manage. Healthcover = Healthcover Health Data in The Information Society = St Heal T Health Data in The Information Society = St. Heal. T. Health Data in The Information Society = Stud Health Technol Health Data in The Information Society = Stud. Health Technol. Health data management = Health Data Manag Health Data Management = Health Data Manag. Health devices = Health Devices Health Devices=Health Devices;; Health Devices = Health Devices Health Disparities in Youth and Families: Research and Applications = Nebr Sym Motiv Health Disparities in Youth and Families: Research and Applications = Nebr. Sym. Motiv. Health economics = Health Econ Health Economics=Health Econ;; Health Economics=Health Econ. Health Economics = Health Econ Health Economics = Health Econ. Health Economics Policy and Law = Health Econ Policy L Health Economics Policy and Law = Health Econ. Policy L. Health Economics Worldwide = Dev Hlth Ec Health Economics Worldwide = Dev. Hlth. Ec. Health Education and Behavior=Health Educ Behav;; Health Education and Behavior = Health Educ. Behav. Health Education and Behavior. Supplement=Health Educ Behav Suppl;; Health Education & Behavior = Health Educ Behav Health Education & Behavior = Health Educ. Behav. Health education & behavior : the official publication of the Society for Public Health Education = Health Educ Behav Health education bulletin = Health Educ Bull Health Education: Challenges, Issues and Impact = Educ Compet Glob Wor Health Education: Challenges, Issues and Impact = Educ. Compet. Glob. Wor. Health education = Health Educ Health Education = Health Educ. Health education journal = Health Educ J Health Education Journal = Health Educ J Health Education Journal = Health Educ. J. Health education monographs = Health Educ Monogr Health Education Monographs = Health Educ. Monogr. Health Education Monographs = Health Educ Quart Health Education Monographs = Health Educ. Quart. Health education quarterly = Health Educ Q Health Education Quarterly = Health Educ. Q. Health Education Quarterly = Health Educ Quart Health Education Quarterly = Health Educ. Quart. Health education reports = Health Educ Rep Health Education Reports = Health Educ. Rep. Health education research = Health Educ Res Health Education Research = Health Educ Res Health Education Research = Health Educ. Res. Health educators at work = Health Educ Work Health Effects of Mineral Dusts = Rev Mineral Health Effects of Mineral Dusts = Rev. Mineral Health Effects of Omega3 Polyunsaturated Fatty Acids in Seafoods = World Rev Nutr Diet Health Effects of Omega3 Polyunsaturated Fatty Acids in Seafoods = World. Rev. Nutr. Diet. Health estate = Health Estate Health Estate = Health Estate Health Estate Journal = Health Estate J. Health estate journal : journal of the Institute of Hospital Engineering = Health Estate J Health expectations : an international journal of public participation in health care and health policy = Health Expect Health Expectations = Health Expect Health Expectations = Health Expect. Health facilities management = Health Facil Manage Health Facilities Management = Health Facil. Manage. Health (Family Media, Inc.) = Health (N Y) Health for Some: The Political Economy of Global Health Governance = Int Polit Econ Ser Health for Some: The Political Economy of Global Health Governance = Int. Polit. Econ. Ser. Health for the millions = Health Millions Health Forum journal = Health Forum J Health Forum Journal = Health Forum J. Healthgrid Research, Innovation and Business Case = St Heal T Healthgrid Research, Innovation and Business Case = St. Heal. T. Healthgrid Research, Innovation and Business Case = Stud Health Technol Healthgrid Research, Innovation and Business Case = Stud. Health. Technol. Health = Health Health = Health (N. Y.) Health, Illness and Culture = Rout Stud Hlth Soc W Health, Illness and Culture = Rout. Stud. Hlth. Soc. W. Health Impacts of Large Releases of Radionuclides = Ciba F Symp Health Impacts of Large Releases of Radionuclides = Ciba. F. Symp. Health Impacts of Waste Management Policies = Envir Sci Tech Lib Health Impacts of Waste Management Policies = Envir. Sci. Tech. Lib. Health Implications of Fungi in Indoor Environments = Air Qual Mg Health Implications of Fungi in Indoor Environments = Air. Qual. Mg. Health industry today = Health Ind Today Health Industry Today = Health Ind. Today Health Inequality and Development = Stud Dev Econ Policy Health Inequality and Development = Stud. Dev. Econ. Policy. Health Informatics in Africa - Helina 93 = Int Congr Ser Health Informatics in Africa - Helina 93 = Int. Congr. Ser. Health informatics journal = Health Informatics J Health Informatics Journal = Health Inform J Health Informatics Journal = Health Inform. J. Health Informatics Series = Health Inform Ser Health Informatics Series = Health Inform. Ser. Health information and libraries journal = Health Info Libr J Health Information and Libraries Journal = Health Info Libr J Health Information and Libraries Journal = Health Info. Libr. J. Health Information Management = Health Inf. Manag. Health Information Management Journal = Health Inf Manag J Health Information Management Journal = Health Inf. Manag. J. Health information management : journal of the Health Information Management Association of Australia = Health Inf Manag Health information systems and telemedicine = Health Inf Syst Telemed Health Information Systems and Telemedicine = Health Inf. Syst. Telemed. Health Information Systems: Architectures and Strategies, Second Edition = Health Inform Ser Health Information Systems: Architectures and Strategies, Second Edition = Health Inform. Ser. Health in The New Communications Age = St Heal T Health in The New Communications Age = St. Heal. T. Health Issues in Chinese Contexts = Health Iss Chin Cont Health Issues in Chinese Contexts = Health Iss. Chin. Cont. Health Issues in Chinese Contexts, Vol 1 = Health Iss Chin Cont Health Issues in Chinese Contexts, Vol 1 = Health Iss. Chin. Cont. Health Issues in Chinese Contexts, Vol 2 = Health Iss Chin Cont Health Issues in Chinese Contexts, Vol 2 = Health Iss. Chin. Cont. Health Issues in Chinese Contexts, Vol 4 = Health Iss Chin Cont Health Issues in Chinese Contexts, Vol 4 = Health Iss. Chin. Cont. Health Issues in Chinese Contexts, Vol 5 = Health Iss Chin Cont Health Issues in Chinese Contexts, Vol 5 = Health Iss. Chin. Cont. Health laboratory science = Health Lab Sci Health Laboratory Science = Health Lab Sci Health Laboratory Science = Health Lab. Sci. Health law in Canada = Health Law Can Health Law in Canada = Health Law Can. Health law journal = Health Law J Health law news. University of Houston. Health Law and Policy Institute = Health Law News Health Law Project library bulletin = Health Law Proj Libr Bull Health Law Project Library Bulletin = Health Law Proj. Libr. Bull. Health law review = Health Law Rev Health law vigil = Health Law Vigil Health Law Vigil = Health Law Vigil Health libraries review = Health Libr Rev Health Libraries Review = Health Libr. Rev. Health (London, England : 1997) = Health (London) Health management forum = Health Manage Forum Health Management Forum = Health Manage. Forum Health management = Health Manage Health Management Quarterly = Health Manage. Q. Health management quarterly : HMQ = Health Manage Q Health management technology = Health Manag Technol Health Management Technology = Health Manag. Technol. Health manpower literature = Health Manpow Lit Health Manpower Literature = Health Manpow. Lit. Health manpower management = Health Manpow Manage Health Manpower Management = Health Manpow. Manage. Health manpower report = Health Manpow Rep Health Manpower Report = Health Manpow. Rep. Healthmarketing = Healthmarketing HealthMarketing = Healthmarketing Health Marketing Quarterly=Health Marketing Quart. Health marketing quarterly = Health Mark Q Health Marketing Quarterly = Health Mark. Q. Health matrix (Cleveland, Ohio : 1991) = Health Matrix Clevel Health matrix = Health Matrix Health Matrix = Health Matrix Health Matters = Health Pol Ser Health Matters = Health Pol. Ser. Healthmed = Healthmed Health & medical care services review = Health Med Care Serv Rev Health & medicine : journal of the Health and Medicine Policy Research Group = Health Med Health Monitoring and Management of Civil Infrastructure Systems = P Soc Photo-opt Ins Health Monitoring and Management of Civil Infrastructure Systems = P. Soc. Photo-opt. Ins. Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological System Iii = Proc Spie Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological System Iii = Proc. Spie. Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological System Iii = P Soc Photo-opt Ins Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological System Iii = P. Soc. Photo-opt. Ins. Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems Iv = Proc Spie Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems Iv = Proc. Spie. Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems Iv = P Soc Photo-opt Ins Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems Iv = P. Soc. Photo-opt. Ins. Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems V = P Soc Photo-opt Ins Health Monitoring and Smart Nondestructive Evaluation of Structural and Biological Systems V = P. Soc. Photo-opt. Ins. Health Monitoring of Structural and Biological Systems 2007 = Proc Spie Health Monitoring of Structural and Biological Systems 2007 = Proc. Spie. Health Monitoring of Structural and Biological Systems 2007 = P Soc Photo-opt Ins Health Monitoring of Structural and Biological Systems 2007 = P. Soc. Photo-opt. Ins. Health Monitoring of Structural and Biological Systems 2008 = Proc Spie Health Monitoring of Structural and Biological Systems 2008 = Proc. Spie. Health Monitoring of Structural and Biological Systems 2008 = P Soc Photo-opt Ins Health Monitoring of Structural and Biological Systems 2008 = P. Soc. Photo-opt. Ins. Health Monitoring of Structural and Biological Systems 2010, Pts 1 and 2 = Proc Spie Health Monitoring of Structural and Biological Systems 2010, Pts 1 and 2 = Proc. Spie. Health Monitoring of Structural and Biological Systems 2010, Pts 1 and 2 = P Soc Photo-opt Ins Health Monitoring of Structural and Biological Systems 2010, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Health Monitoring of Structural and Biological Systems 2011 = Proc Spie Health Monitoring of Structural and Biological Systems 2011 = Proc. Spie. Health News = Health News Health news (Waltham, Mass.) = Health News Health of the People = Health People Health PAC bulletin = Health PAC Bull Health PAC Bulletin = Health PAC Bull. Health perspectives = Health Perspect Health Perspectives = Health Perspect. Health physics = Health Phys Health Physics=Health Phys;; Health Physics = Health Phys Health Physics = Health Phys. Health & place = Health Place Health & Place = Health Place Healthplan = Healthplan Health Planning and Manpower Report = Health Plann. Manpow. Rep. Health Planning and Manpower Reports = Health Plann. Manpow. Rep. Health planning & manpower report = Health Plann Manpow Rep Health planning & manpower reports = Health Plann Manpow Rep Health policy (Amsterdam, Netherlands) = Health Policy Health policy and education = Health Policy Educ Health Policy and Education = Health Policy Educ Health Policy and Education = Health Policy Educ. Health policy and planning = Health Policy Plan Health Policy and Planning = Health Policy Plan. Health Policy and Planning = Health Policy Plann Health Policy and Planning = Health Policy Plann. Health Policy = Health Policy Health policy = Health Policy (New York) Health policy quarterly = Health Policy Q Health Policy Quarterly = Health Policy Q. Health Policy Series = Health Pol Ser Health Policy Series = Health Pol. Ser. Health Policy Week = Health Policy Week Health policy week : HPW = Health Policy Week Health practitioner. Physician assistant = Health Pract Physician Assist Health Practitioner. Physician Assistant = Health Pract. Physician Assist. Health Progress = Health Prog Health Progress = Health Prog. Health progress (Saint Louis, Mo.) = Health Prog Health Promotion = Health Promot. Health promotion international = Health Promot Int Health Promotion International = Health Promot Int Health Promotion International = Health Promot. Int. Health Promotion Journal of Australia = Health Promot J Aust Health Promotion Journal of Australia = Health Promot. J. Aust. Health promotion journal of Australia : official journal of Australian Association of Health Promotion Professionals = Health Promot J Austr Health promotion (Oxford, England) = Health Promot Health promotion practice = Health Promot Pract Health Psychology=Health Psychol;; Health Psychology = Health Psychol Health Psychology = Health Psychol. Health psychology : official journal of the Division of Health Psychology, American Psychological Association = Health Psychol Health Psychology = Psychol Emot Motiv A Health Psychology = Psychol. Emot. Motiv. A. Health Psychology Research Focus = Health Psychol Res F Health Psychology Research Focus = Health Psychol. Res. F. Health reform and priority services / PHR = Health Reform Prior Serv Health-related Quality of Life = Public Health 21st C Health-related Quality of Life = Public. Health. 21st. C. Health Reports=Health Rep;; Health Reports = Health Rep. Health research policy and systems / BioMed Central = Health Res Policy Syst Health, risk & society = Health Risk Soc Health Risk & Society = Health Risk Soc Health Risk & Society = Health Risk Soc. HealthScan = Healthscan Health Service Journal = Health Serv J Health Service Journal = Health Serv. J. Health services management = Health Serv Manage Health Services Management = Health Serv Manage Health Services Management = Health Serv. Manage. Health services management research : an official journal of the Association of University Programs in Health Administration / HSMC, AUPHA = Health Serv Manage Res Health Services Management Research = Health Serv. Manage. Res. Health services manager = Health Serv Manager Health Services Manager = Health Serv. Manager Health services manpower review = Health Serv Manpow Rev Health Services Manpower Review = Health Serv. Manpow. Rev. Health Services Report = Health Serv Rep Health Services Report = Health Serv. Rep. Health services reports = Health Serv Rep Health Services Reports = Health Serv. Rep. Health Services Research=Health Services Res. Health services research = Health Serv Res Health Services Research=Health Serv Res;; Health Services Research = Health Serv Res Health Services Research = Health Serv. Res. Health & Social Care in The Community = Health Soc Care Comm Health & Social Care in The Community = Health Soc. Care Comm. Health & social care in the community = Health Soc Care Community Health & social work = Health Soc Work Health & Social Work = Health Soc Work Health & Social Work = Health Soc. Work Health Sociology Review = Health Sociol Rev Health Sociology Review = Health Sociol. Rev. Healthspan = Healthspan HealthSpan = Healthspan Health statistics quarterly / Office for National Statistics = Health Stat Q Health system leader = Health Syst Lead Health System Leader = Health Syst. Lead. Health Systems Financing: The Path to Universal Coverage = Wor Healt Rep Health Systems Financing: The Path to Universal Coverage = Wor. Healt. Rep. Health systems management = Health Syst Manage Health Systems Management = Health Syst. Manage. Health systems review = Health Syst Rev Health Systems Review = Health Syst. Rev. Health Technology and Society = Health Technol Soc Health Technology and Society = Health Technol. Soc. Health Technology Assessment = Health Technol Asses Health Technology Assessment = Health Technol. Asses. Health Technology Assessment = Health Technol. Assess. Health technology assessment = Health Technol Assess (Rockv) Health Technology Assessment=Health Technol Assess (Winch Eng);; Health technology assessment reports = Health Technol Assess Rep Health Technology Assessment Reports = Health Technol. Assess. Rep. Health Technology Assessments By The National Institute for Health and Clinical Excellence: A Qualitative Study = Innov Valu Health Ca Health Technology Assessments By The National Institute for Health and Clinical Excellence: A Qualitative Study = Innov. Valu. Health Ca. Health technology assessment (Winchester, England) = Health Technol Assess Health technology directions = Health Technol Dir Health technology = Health Technol Health Technology = Health Technol. Health Telematics for Clinical Guidelines and Protocols = St Heal T Health Telematics for Clinical Guidelines and Protocols = St. Heal. T. Healthtexas = Healthtexas HealthTexas / Texas Hospital Association = Healthtexas Health, The Medical Profession, and Regulation = Dev Health Econ Publ Health, The Medical Profession, and Regulation = Dev. Health. Econ. Publ. Health, The Medical Profession, and Regulation = Dev Hlth Ec Health, The Medical Profession, and Regulation = Dev. Hlth. Ec. Health Transition Review = Health Transit. Rev. Health transition review : the cultural, social, and behavioural determinants of health = Health Transit Rev Health trends = Health Trends Health Trends = Health Trends Health Values-achieving High Level Wellness = Health Values Health Values-achieving High Level Wellness = Health Values. Health Values = Health Val Health Values = Health Val. Health values = Health Values Health Values = Health Values Health visitor = Health Visit Health Visitor = Health Visit. Healthy Aging and Longevity = Ann Ny Acad Sci Healthy Aging and Longevity = Ann. Ny. Acad. Sci. Healthy Aging for Functional Longevity = Ann Ny Acad Sci Healthy Aging for Functional Longevity = Ann. Ny. Acad. Sci. Healthy Agriculture, Healthy Nutrition, Healthy People = World Rev Nutr Diet Healthy Agriculture, Healthy Nutrition, Healthy People = World. Rev. Nutr. Diet. Healthy People 2000 statistical notes / National Center for Health Statistics = Healthy People 2000 Stat Notes Healthy People 2000 statistics and surveillance / National Center for Health Statistics = Healthy People 2000 Stat Surveill Healthy People 2010 statistical notes : from the Centers for Disease Control and Prevention/National Center for Health Statistics = Healthy People 2010 Stat Notes Hearing Loss in Childhood : A Primer = Ross C Ped Hearing Loss in Childhood : A Primer = Ross. C. Ped. Hearing Research = Hearing Res Hearing Research = Hearing Res. Hearing research = Hear Res Hearing Research=Hear Res;; Hearing Research = Hear. Res. Heart advisor / the Cleveland Clinic = Heart Advis Heart-a Journal for The Study of The Circulation = Heart-j Stud Circ Heart-a Journal for The Study of The Circulation = Heart-j. Stud. Circ. Heart and Lung=Heart Lung;; Heart and Lung = Heart Lung Heart and vessels = Heart Vessels Heart and Vessels=Heart Vessels;; Heart and Vessels = Heart Vessels Heart and vessels. Supplement = Heart Vessels Suppl Heart and Vessels. Supplement=Heart Vessels Suppl;; Heart and Vessels. Supplement = Heart Vessels. Suppl. Heartbeat = Heartbeat Heartbeat (San Francisco, Calif.) = Heartbeat Heart (British Cardiac Society) = Heart Heart disease and stroke : a journal for primary care physicians = Heart Dis Stroke Heart Disease and Stroke = Heart Dis. Stroke Heart Disease Diagnosis and Therapy: A Practical Approach, Second Edition = Contemp Cardiol Heart Disease Diagnosis and Therapy: A Practical Approach, Second Edition = Contemp. Cardiol. Heart Disease: Environment, Stress and Gender = Nato Sci Ser I Life Heart Disease: Environment, Stress and Gender = Nato. Sci. Ser. I. Life. Heart disease (Hagerstown, Md.) = Heart Dis Heart Disease = Heart Dis. Heart Disease in Children = Cardiol Res Clin Dev Heart Disease in Children = Cardiol. Res. Clin. Dev. Heart Failure Bench to Bedside = Contemp Cardiol Heart Failure Bench to Bedside = Contemp. Cardiol. Heart failure clinics = Heart Fail Clin Heart failure = Heart Fail Heart Failure in Perspective - Focus On Ibopamine = Roy Soc Med Int Cong Heart Failure in Perspective - Focus On Ibopamine = Roy. Soc. Med. Int. Cong. Heart failure monitor = Heart Fail Monit Heart failure reviews = Heart Fail Rev Heart Failure Reviews = Heart Fail Rev Heart Failure Reviews = Heart Fail. Rev. Heart Failure: Symptoms, Causes and Treatment Options = Cardiol Res Clin Dev Heart Failure: Symptoms, Causes and Treatment Options = Cardiol. Res. Clin. Dev. Heart Function in Health and Disease = Dev Cardiovasc Med Heart Function in Health and Disease = Dev. Cardiovasc. Med. Heart=Heart;; Heart = Heart Heart in Stress = Ann Ny Acad Sci Heart in Stress = Ann. Ny. Acad. Sci. Heart Lung and Circulation = Heart Lung Circ Heart Lung and Circulation = Heart Lung Circ. Heart, lung & circulation = Heart Lung Circ Heart & Lung = Heart Lung Heart & lung : the journal of critical care = Heart Lung Heart of Learning = New Consciousness Re Heart of Learning = New. Consciousness. Re. Heart Rate Slowing By I(f) Current Inhibition = Adv Cardiol Heart Rate Slowing By I(f) Current Inhibition = Adv. Cardiol. Heart Rhythm = Heart Rhythm Heart rhythm : the official journal of the Heart Rhythm Society = Heart Rhythm Hearts Exposed: Transplants and The Media in 1960s Britain = Sci Technol Med Mod Hearts Exposed: Transplants and The Media in 1960s Britain = Sci. Technol. Med. Mod. Hearts Knit Together = Women Conf Ser Hearts Knit Together = Women. Conf. Ser. Heart Surgery Forum = Heart Surg Forum Heart Surgery Forum = Heart Surg. Forum Heart transplantation / International Society for Heart Transplantation = Heart Transplant Heartweb = Heartweb Heat-air-moisture Transport: Measurements On Building Materials = Am Soc Test Mater Heat-air-moisture Transport: Measurements On Building Materials = Am. Soc. Test. Mater. Heat and Cold Storage With Pcm = Heat Mass Transf Heat and Cold Storage With Pcm = Heat Mass. Transf. Heat and Mass Transfer = Heat Mass Transfer Heat and Mass Transfer = Heat Mass Transfer. Heat and Mass Transfer in Building Materials and Structures = P Int C Hea Heat and Mass Transfer in Building Materials and Structures = P. Int. C. Hea. Heat and Mass Transfer in Gasoline and Diesel Engines = P Int C Hea Heat and Mass Transfer in Gasoline and Diesel Engines = P. Int. C. Hea. Heat and Mass Transfer (series) = Heat Mass Transf Heat and Mass Transfer (series) = Heat Mass Transf. Heat and Mass Transfer Series = Heat Mass Transf Heat and Mass Transfer Series = Heat Mass Transf. Heat and Mass Transfer Under Plasma Conditions = Ann Ny Acad Sci Heat and Mass Transfer Under Plasma Conditions = Ann. Ny. Acad. Sci. Heath, Nixon and The Rebirth of The Special Relationship: Britain, The Us and The Ec, 1969-74 = Glob Confl Secur Heath, Nixon and The Rebirth of The Special Relationship: Britain, The Us and The Ec, 1969-74 = Glob. Confl. Secur. Heating and Energetics of The Solar Corona and Solar Wind = Adv Space Res Heating and Energetics of The Solar Corona and Solar Wind = Adv. Space. Res. Heating and Energetics of The Solar Corona and Solar Wind = Adv Space Res-series Heating and Energetics of The Solar Corona and Solar Wind = Adv. Space. Res-series. Heating-piping-air Conditioning = Heat-piping-air Cond Heating-piping-air Conditioning = Heat-piping-air. Cond. Heating, piping, and air conditioning = Heat Piping Air Cond Heating, Piping and Air Conditioning = Heat. Piping Air Cond. Heating System and Sanitation Technology = Vdi Bericht Heating System and Sanitation Technology = Vdi. Bericht. Heating Versus Cooling in Galaxies and Clusters of Galaxies = Eso Astrophy Symp Heating Versus Cooling in Galaxies and Clusters of Galaxies = Eso. Astrophy. Symp. Heat Kernel and Theta Inversion On Sl2(c) = Springer Monogr Math Heat Kernel and Theta Inversion On Sl2(c) = Springer. Monogr. Math. Heat Kernels for Elliptic and Sub-elliptic Operators: Methods and Techniques = Appl Numer Harmon An Heat Kernels for Elliptic and Sub-elliptic Operators: Methods and Techniques = Appl. Numer. Harmon. An. Heat Recovery Systems and CHP = Heat Recovery Syst. CHP Heat Recovery Systems & Chp = Heat Recov Syst Chp Heat Recovery Systems & Chp = Heat Recov. Syst. Chp Heat Shock Proteins and Whole Body Physiology = Heat Shock Proteins Heat Shock Proteins = Heat Shock Proteins Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference = Efce Event Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference = Efce. Event. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 1 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 1 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 2 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 2 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 3 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 3 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 4 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 4 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 5 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 5 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 6 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 6 = Inst. Chem. E. Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 7 = Inst Chem E Heat Transfer 1994 - Proceedings of The Tenth International Heat Transfer Conference, Vol 7 = Inst. Chem. E. Heat Transfer - Asian Research = Heat Transfer Asian Res. Heat Transfer - Atlanta 1993 = Aiche Sym S Heat Transfer - Atlanta 1993 = Aiche. Sym. S. Heat Transfer - Baltimore 1997 = Aiche Sym S Heat Transfer - Baltimore 1997 = Aiche. Sym. S. Heat Transfer Division of The American Society of Mechanical Engineers = Heat Transf Div Asme Heat Transfer Division of The American Society of Mechanical Engineers = Heat Transf. Div. Asme. Heat Transfer Engineering = Heat Transfer Eng Heat Transfer Engineering = Heat Transfer Eng. Heat Transfer in Electronic and Microelectronic Equipment = P Int C Hea Heat Transfer in Electronic and Microelectronic Equipment = P. Int. C. Hea. Heat Transfer in Gas Turbine Systems = Ann Ny Acad Sci Heat Transfer in Gas Turbine Systems = Ann. Ny. Acad. Sci. Heat Transfer in Multi-phase Materials = Adv Struct Mat Heat Transfer in Multi-phase Materials = Adv. Struct. Mat. Heat Transfer Issues in Natural Refrigerants = Refr Sci T Heat Transfer Issues in Natural Refrigerants = Refr. Sci. T. Heat Transfer - Philadelphia, 1989 = Aiche Sym S Heat Transfer - Philadelphia, 1989 = Aiche. Sym. S. Heat Transfer - Portland 1995 = Aiche Sym S Heat Transfer - Portland 1995 = Aiche. Sym. S. Heat Transfer Research = Heat Transf Res Heat Transfer Research = Heat Transf. Res. Heat Transfer, Vols 1 and 2 = Inst Chem E Heat Transfer, Vols 1 and 2 = Inst. Chem. E. Heat Treatment of Materials = Solid State Phenomen Heat Treatment of Materials = Solid. State. Phenomen. Heat Treatment of Materials = Sol St Phen Heat Treatment of Materials = Sol. St. Phen. Heat Treatment of Metals = Heat Treat Met Heat Treatment of Metals = Heat Treat. Met. Heat Treatment of Metals = Heat Treat Met-uk Heat Treatment of Metals = Heat Treat. Met-uk. Heat Waves = Appl Math Sci Heat Waves = Appl. Math. Sci. Heaven and Earth in Ancient Greek Cosmology: From Thales to Heraclides Ponticus = Astrophys Space Sc L Heaven and Earth in Ancient Greek Cosmology: From Thales to Heraclides Ponticus = Astrophys. Space. Sc. L. Heavy Flavor Physics = Aip Conf Proc Heavy Flavor Physics = Aip. Conf. Proc. Heavy Flavour Physics: A Probe of Nature's Grand Design = P Int Sch Phys Heavy Flavour Physics: A Probe of Nature's Grand Design = P. Int. Sch. Phys. Heavy Flavour Physics = Scott Univ Sum Sch P Heavy Flavour Physics = Scott. Univ. Sum. Sch. P. Heavy Ion Accelerator Technology = Aip Conf Proc Heavy Ion Accelerator Technology = Aip. Conf. Proc. Heavy Ion Collisions At Energies Near The Coulomb Barrier 1990 = Inst Phys Conf Ser Heavy Ion Collisions At Energies Near The Coulomb Barrier 1990 = Inst. Phys. Conf. Ser. Heavy Metal Compounds in Soil: Transformation Upon Soil Pollution and Ecological Significance = Air Water Soil Sci T Heavy Metal Compounds in Soil: Transformation Upon Soil Pollution and Ecological Significance = Air. Water. Soil Sci. T. Heavy Quark Effective Theory = Springer Trac Mod Ph Heavy Quark Effective Theory = Springer. Trac. Mod. Ph. Heavy Quark Effective Theory = Springer Tr Mod Phys Heavy Quark Effective Theory = Springer. Tr. Mod. Phys. Heavy Quark Physics = Aip Conf Proc Heavy Quark Physics = Aip. Conf. Proc. Heavy Quarks At Fixed Target = Aip Conf Proc Heavy Quarks At Fixed Target = Aip. Conf. Proc. Heavy-tailed Distributions in Disaster Analysis = Adv Nat Tech Haz Res Heavy-tailed Distributions in Disaster Analysis = Adv. Nat. Tech. Haz. Res. Heavy-tail Phenomena: Probabilistic and Statistical Modeling = Springer Ser Oper Re Heavy-tail Phenomena: Probabilistic and Statistical Modeling = Springer. Ser. Oper. Re. Heavy Vehicle Systems-international Journal of Vehicle Design = Heavy Veh Syst Heavy Vehicle Systems-international Journal of Vehicle Design = Heavy Veh. Syst. Hebraica Veritas? = Jew Cult Context Hebraica Veritas? = Jew. Cult. Context. Hebraischen Und Griechischen Textformen Der Samuel- Und Konigebucher = Beih Z Alttest Wiss Hebraischen Und Griechischen Textformen Der Samuel- Und Konigebucher = Beih. Z. Alttest. Wiss. Hebrew Bible Reborn: From Holy Scripture to The Book of Books = Stud Judaica Hebrew Bible Reborn: From Holy Scripture to The Book of Books = Stud. Judaica. Hebrew in America = Am Jew Civ Hebrew in America = Am. Jew. Civ. Hebrew Union College Annual = Hebrew Union Coll An Hebrew Union College Annual = Hebrew Union Coll. An. Hebrew Union College Annual = HebrUCA Hebrew Union College Annual, Vol 64 = Hebrew Union Coll An Hebrew Union College Annual, Vol 64 = Hebrew Union Coll. An. Hebrew Union College Annual, Vol 65 = Hebrew Union Coll An Hebrew Union College Annual, Vol 65 = Hebrew Union Coll. An. Hebrew Union College Annual, Vol 66 = Hebrew Union Coll An Hebrew Union College Annual, Vol 66 = Hebrew Union Coll. An. Hebrew Union College Annual, Vol 67 = Hebrew Union Coll An Hebrew Union College Annual, Vol 67 = Hebrew Union Coll. An. Hebrew Union College Annual, Vol 68 = Hebrew Union Coll An Hebrew Union College Annual, Vol 68 = Hebrew Union Coll. An. Hebrew Union College Annual, Vol 69 = Hebrew Union Coll An Hebrew Union College Annual, Vol 69 = Hebrew Union Coll. An. Hebrew University Studies in Literature and The Arts = Hebrew U Stud Lit Ar Hebrew University Studies in Literature and The Arts = Hebrew U. Stud. Lit. Ar. Hebrew University Studies in Literature = Hebrew U Stud Lit Ar Hebrew University Studies in Literature = Hebrew U. Stud. Lit. Ar. HEC forum : an interdisciplinary journal on hospitals' ethical and legal issues = HEC Forum HEC Forum = HEC Forum Hecheng Xiangjiao Gongye = Hecheng Xiangjiao Gongye Heegner Modules and Elliptic Curves = Lect Notes Math Heegner Modules and Elliptic Curves = Lect. Notes. Math. Hefte des Archäologischen Seminars der Universität Bern = HASB Hefte des Archäologischen Seminars der Universität Bern = HASB Hefte zur Unfallheilkunde = Hefte Unfallheilkd Hefte zur Unfallheilkunde = Hefte Unfallheilkd. Hegel and Aesthetics = Suny Se Heg Hegel and Aesthetics = Suny. Se. Heg. Hegel-studien = Hegel-stud Hegel-studien = Hegel-stud. Hegemonic Peace and Empire: The Pax Romana, Britannica and Americana = War Hist Polit Hegemonic Peace and Empire: The Pax Romana, Britannica and Americana = War. Hist. Polit. Hegemonic Rivalry = N App Peace Hegemonic Rivalry = N. App. Peace. Hegemony: Studies in Consensus and Coercion = Routl Stud Soc Polit Hegemony: Studies in Consensus and Coercion = Routl. Stud. Soc. Polit. Heidegger for Architects = Think Archit Heidegger for Architects = Think. Archit. Heideggers Contribution to The Undrstanding of Work-based Studies = Prof Pract-based Lea Heideggers Contribution to The Undrstanding of Work-based Studies = Prof. Pract-based. Lea. Heideggers Wahrheiten: Wahrheit, Referenz Und Personalitat in Sein Und Zeit = Quellen Stud Philos Heideggers Wahrheiten: Wahrheit, Referenz Und Personalitat in Sein Und Zeit = Quellen. Stud. Philos. Heidelberger Jahrbucher = Heidelb Jahrb Heiko shinkei kagaku = Equilib Res Heilig Ins Eschaton: Heiligung Und Heiligkeit Als Eschatologische Konzeption Im 1 Thessalonicherbrief = Beih Z Neutest Wiss Heilig Ins Eschaton: Heiligung Und Heiligkeit Als Eschatologische Konzeption Im 1 Thessalonicherbrief = Beih. Z. Neutest. Wiss. Heilkunde - Heilwege = Heilkd Heilwege Heilongjiang Daxue Ziran Kexue Xuebao = Heilongjiang Daxue Ziran Kexue Xuebao Heilongjiang News Register = Heilongj News Regist Heilongjiang News Register = Heilongj. News Regist. Heilpadagogische Forschung = Heilpadagog Forsch Heilpadagogische Forschung = Heilpadagog. Forsch. Heilpadagogische Werkblatter = Heilpadagog Werkbl Heimen = Heimen Heinrich Hertz: Classical Physicist, Modern Philosopher = Bost Stud Philos Sci Heinrich Hertz: Classical Physicist, Modern Philosopher = Bost. Stud. Philos. Sci. Hejishu = Hejishu Helen Kellogg Institute for International Studies = Helen Kellogg Inst Helen Kellogg Institute for International Studies = Helen Kellogg Inst. Helgolander Meeresuntersuchungen = Helgolander Meeresun Helgolander Meeresuntersuchungen = Helgolander Meeresun. Helgolander Wissenschaftliche Meeresuntersuchungen = Helgoland Wiss Meer Helgolander Wissenschaftliche Meeresuntersuchungen = Helgoland. Wiss. Meer. Helgoland Marine Research = Helgoland Mar Res Helgoland Marine Research = Helgoland Mar. Res. Helicases: Methods and Protocols = Methods Mol Biol Helicases: Methods and Protocols = Methods Mol. Biol. Helicobacter=Helicobacter;; Helicobacter = Helicobacter Helicobacter Pylori in The 21st Century = Adv M C M Helicobacter Pylori in The 21st Century = Adv. M. C. M. Helike. Universidad nacional de educación a distancia, Centro regional de Elche = Helike Helikon. Rivista di tradizione e cultura classica = Helikon Helinium. Revue consacrée à l'archéologie des Pays-Bas, de la Belgique et du Grand-Duché de Luxembourg = Helinium Heliophysical Processes = Astrophysics Space Heliophysical Processes = Astrophysics. Space. Helios. A Journal Devoted to Critical and Methodological Studies of Classical Culture, Literature and Society = Helios Helioseismology and Solar Variability = Adv Space Res Helioseismology and Solar Variability = Adv. Space. Res. Helioseismology and Solar Variability = Adv Space Res-series Helioseismology and Solar Variability = Adv. Space. Res-series. Helioseismology From Space = Adv Space Res-series Helioseismology From Space = Adv. Space Res-series. Helios = Helios Heliosphere At Solar Maximum = Adv Space Res Heliosphere At Solar Maximum = Adv. Space. Res. Heliosphere At Solar Maximum = Adv Space Res-series Heliosphere At Solar Maximum = Adv. Space. Res-series. Heliosphere At Solar Minimum and Beyond = Adv Space Res Heliosphere At Solar Minimum and Beyond = Adv. Space. Res. Heliosphere During The Declining Solar Cycle = Adv Space Res Heliosphere During The Declining Solar Cycle = Adv. Space. Res. Heliosphere Through The Solar Activity Cycle = S-p B Astron Space Heliosphere Through The Solar Activity Cycle = S-p. B. Astron. Space. Heliospheric Cosmic Ray Transport, Modulation and Turbulence = Adv Space Res Heliospheric Cosmic Ray Transport, Modulation and Turbulence = Adv. Space. Res. Heliospheric Cosmic Ray Transport, Modulation and Turbulence = Adv Space Res-series Heliospheric Cosmic Ray Transport, Modulation and Turbulence = Adv. Space. Res-series. Hellas Und Der Orient: Phasen Wechselseitiger Rezeption = Jul Wellhausen Vorle Hellas Und Der Orient: Phasen Wechselseitiger Rezeption = Jul. Wellhausen. Vorle. Hellenic Journal of Cardiology = Hellenic J. Cardiol. Hellenic Journal of Cardiology = Hell J Cardiol Hellenic Journal of Cardiology = Hell. J. Cardiol. Hellenic journal of nuclear medicine = Hell J Nucl Med Hellenic Journal of Nuclear Medicine = Hell J Nucl Med Hellenic Journal of Nuclear Medicine = Hell. J. Nucl. Med. Hellenic Mathematical Society = Comput. Math. Appl. (Athens) Hellenika. Jahrbuch für die Freunde Griechenlands = HellenikaJb Hellenika stomatologika chronika. Hellenic stomatological annals = Hell Stomatol Chron Hellenika Stomatologika Chronika = Hell. Stomatol. Chron. Hellenike cheirourgike. Acta chirurgica Hellenica = Hell Cheirourgike Hellenike iatrike = Hell Iatr Helleniko Periodiko gia Stomatike kai Gnathoprosopike Cheirourgike = Hell. Period. Stomat. Gnathopathoprosopike. Cheir. Hellenis adelphe = Hell Adelphe Hellenis Adelphe = Hell. Adelphe Hellenische Identitat in Der Spatantike: Pagane Autoren Und Ihr Unbehagen An Der Eigenen Zeit = Unters Antiken Lit G Hellenische Identitat in Der Spatantike: Pagane Autoren Und Ihr Unbehagen An Der Eigenen Zeit = Unters. Antiken. Lit. G. Hellenismos = U Sci Hum S Hellenismos = U. Sci. Hum. S. Hellenistica Groningana = Hellenist Groningana Hellenistica Groningana = Hellenist. Groningana Hellenistic Epigrams = Hellenist Groningana Hellenistic Epigrams = Hellenist. Groningana. Helmantica = Helmantica Helmet- and Head-mounted Display Iii = P Soc Photo-opt Ins Helmet- and Head-mounted Display Iii = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays and Symbology Design Requirements Ii = P Soc Photo-opt Ins Helmet- and Head-mounted Displays and Symbology Design Requirements Ii = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays and Symbology Design Requirements = P Soc Photo-opt Ins Helmet- and Head-mounted Displays and Symbology Design Requirements = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays Iv = P Soc Photo-opt Ins Helmet- and Head-mounted Displays Iv = P. Soc. Photo-opt. Ins. Helmet and Head-mounted Displays Ix: Technologies and Applications = Proc Spie Helmet and Head-mounted Displays Ix: Technologies and Applications = Proc. Spie. Helmet and Head-mounted Displays Ix: Technologies and Applications = P Soc Photo-opt Ins Helmet and Head-mounted Displays Ix: Technologies and Applications = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays Viii: Technologies and Applications = Proc Spie Helmet- and Head-mounted Displays Viii: Technologies and Applications = Proc. Spie. Helmet- and Head-mounted Displays Viii: Technologies and Applications = P Soc Photo-opt Ins Helmet- and Head-mounted Displays Viii: Technologies and Applications = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays Vii = Proc Spie Helmet- and Head-mounted Displays Vii = Proc. Spie. Helmet- and Head-mounted Displays Vii = P Soc Photo-opt Ins Helmet- and Head-mounted Displays Vii = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays Vi = Proc Spie Helmet- and Head-mounted Displays Vi = Proc. Spie. Helmet- and Head-mounted Displays Vi = P Soc Photo-opt Ins Helmet- and Head-mounted Displays Vi = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays V = Proc Spie Helmet- and Head-mounted Displays V = Proc. Spie. Helmet- and Head-mounted Displays V = P Soc Photo-opt Ins Helmet- and Head-mounted Displays V = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays Xi: Technologies and Applications = P Soc Photo-opt Ins Helmet- and Head-mounted Displays Xi: Technologies and Applications = P. Soc. Photo-opt. Ins. Helmet- and Head-mounted Displays X: Technologies and Applications = P Soc Photo-opt Ins Helmet- and Head-mounted Displays X: Technologies and Applications = P. Soc. Photo-opt. Ins. Helmet-mounted Displays Iii = P Soc Photo-opt Ins Helmet-mounted Displays Iii = P. Soc. Photo-opt. Ins. Helmet-mounted Displays Ii = P Soc Photo-opt Ins Helmet-mounted Displays Ii = P. Soc. Photo-opt. Ins. Helmet-mounted Displays = P Soc Photo-opt Ins Helmet-mounted Displays = P. Soc. Photo-opt. Ins. Helminthologia = Helminthologia Helping and Being Helped = Clar Symp Helping and Being Helped = Clar. Symp. Helsinki Agreement: A More Promising Basis for Peace in Aceh = Pol Stud Helsinki Agreement: A More Promising Basis for Peace in Aceh = Pol. Stud. Helsinki Process and The Future of Europe = W Wilson Sp Helsinki Process and The Future of Europe = W. Wilson. Sp. Helsinki University of Technology = Helsinki Univ. Tech. Digit. Systems Lab. Ser. A Res. Rep. Helsinki University of Technology = Helsinki Univ. Tech. Inst. Math. Res. Rep. Helsinki University of Technology Signal Processing Laboratory Report Series = Hels Univ Technol S Helsinki University of Technology Signal Processing Laboratory Report Series = Hels. Univ. Technol. S. Helvetia archaeologica = HA Helvetia archaeologica = HelvA Helvetia Archaeologica = Helv. Archaeol. Helvetica chimica acta = Helv Chim Acta Helvetica Chimica Acta = Helv Chim Acta Helvetica Chimica Acta = Helv. Chim. Acta Helvetica chirurgica acta = Helv Chir Acta Helvetica Chirurgica Acta = Helv Chir Acta Helvetica Chirurgica Acta = Helv. Chir. Acta Helvetica chirurgica acta. Supplementum = Helv Chir Acta Suppl Helvetica Chirurgica Acta. Supplementum = Helv. Chir. Acta. Suppl. Helvetica medica acta = Helv Med Acta Helvetica Medica Acta = Helv Med Acta Helvetica Medica Acta = Helv. Med. Acta Helvetica Medica Acta. Supplement = Helv. Med. Acta. Suppl. Helvetica medica acta. Supplementum = Helv Med Acta Suppl Helvetica odontologica acta = Helv Odontol Acta Helvetica Odontologica Acta = Helv Odontol Acta Helvetica Odontologica Acta = Helv. Odontol. Acta Helvetica paediatrica acta = Helv Paediatr Acta Helvetica Paediatrica Acta = Helv Paediatr Acta Helvetica Paediatrica Acta = Helv. Paediatr. Acta Helvetica paediatrica acta. Supplementum = Helv Paediatr Acta Suppl Helvetica Paediatrica Acta. Supplementum = Helv. Paediatr. Acta. Suppl. Helvetica Physica Acta = Helv. Phys. Acta Helvetica Physica Acta = Helv Phys Acta Helvetica Physica Acta = Helv. Phys. Acta Helvetica Physiologica Et Pharmacologica Acta = Helv Physiol Pharm A Helvetica Physiologica Et Pharmacologica Acta = Helv. Physiol. Pharm. A. Helvetica physiologica et pharmacologica acta = Helv Physiol Pharmacol Acta Helvetica Physiologica et Pharmacologica Acta = Helv. Physiol. Pharmacol. Acta Helvetica physiologica et pharmacologica acta. Supplementum = Helv Physiol Pharmacol Acta Suppl 1 Hematological oncology = Hematol Oncol Hematological Oncology=Hematol Oncol;; Hematological Oncology = Hematol Oncol Hematological Oncology = Hematol. Oncol. Hematologic Malignancies Series = Hematol Malig Hematologic Malignancies Series = Hematol. Malig. Hematologic pathology = Hematol Pathol Hematologic Pathology = Hematol Pathol Hematologic Pathology = Hematol. Pathol. Hematology (Amsterdam, Netherlands) = Hematology Hematology and cell therapy = Hematol Cell Ther Hematology and Cell Therapy=Hematol Cell Ther;; Hematology and Cell Therapy = Hematol Cell Ther Hematology and Cell Therapy = Hematol. Cell Ther. Hematology = Hematology Hematology Journal = Hematol J Hematology Journal = Hematol. J. Hematology-oncology Clinics of North America = Hematol Oncol Clin N Hematology-oncology Clinics of North America = Hematol. Oncol. Clin. N. Hematology/oncology clinics of North America = Hematol Oncol Clin North Am Hematology/Oncology Clinics of North America=Hematol Oncol Clin North Am;; Hematology/Oncology Clinics of North America = Hematol. Oncol. Clin. North Am. Hematology / the Education Program of the American Society of Hematology. American Society of Hematology. Education Program = Hematology Am Soc Hematol Educ Program Hematopathology and Molecular Hematology = Hematopathol Mol Hem Hematopathology and Molecular Hematology = Hematopathol. Mol. Hem. Hematopathology and molecular hematology = Hematopathol Mol Hematol Hematopathology and Molecular Hematology=Hematopathol Mol Hematol;; Hematopathology and Molecular Hematology = Hematopathol. Mol. Hematol. Hematopathology: Genomic Mechanisms of Neoplastic Diseases = Mol Transl Med Hematopathology: Genomic Mechanisms of Neoplastic Diseases = Mol. Transl. Med. Hematopoiesis = Ucla Sym Bi Hematopoiesis = Ucla. Sym. Bi. Hematopoietic Growth Factors in Oncology = Cancer Treat Res Hematopoietic Growth Factors in Oncology = Cancer. Treat. Res. Hematopoietic Growth Factors in Transfusion Medicine = Prog Clin Biol Res Hematopoietic Growth Factors in Transfusion Medicine = Prog. Clin. Biol. Res. Hematopoietic Growth Factors : Molecular Biology to Clinical Applications of Rg-csf = Int Congr Ser Hematopoietic Growth Factors : Molecular Biology to Clinical Applications of Rg-csf = Int. Congr. Ser. Hematopoietic Stem Cell Biology = Stem Cells Biol Reg Hematopoietic Stem Cell Biology = Stem Cells. Biol. Reg. Hematopoietic Stem Cells 2000 Basic and Clinical Sciences = Ann Ny Acad Sci Hematopoietic Stem Cells 2000 Basic and Clinical Sciences = Ann. Ny. Acad. Sci. Hematopoietic Stem Cells 2002: Genetics and Function = Ann Ny Acad Sci Hematopoietic Stem Cells 2002: Genetics and Function = Ann. Ny. Acad. Sci. Hematopoietic Stem Cells = Ann Ny Acad Sci Hematopoietic Stem Cells = Ann. Ny. Acad. Sci. Hematopoietic Stem Cells V = Ann Ny Acad Sci Hematopoietic Stem Cells V = Ann. Ny. Acad. Sci. Hematopoietic Stem Cells Vi = Ann Ny Acad Sci Hematopoietic Stem Cells Vi = Ann. Ny. Acad. Sci. Hematopoietic Stem Cells Vii = Ann Ny Acad Sci Hematopoietic Stem Cells Vii = Ann. Ny. Acad. Sci. Hemicellulose and Hemicellulases = Port Pr R M Hemicellulose and Hemicellulases = Port. Pr. R. M. Hemicelluloses: Science and Technology = Acs Sym Ser Hemicelluloses: Science and Technology = Acs. Sym. Ser. Hemijska Industrija = Hem Ind Hemijska Industrija = Hem. Ind. Hemispheres (Paris, France) = Hemispheres Hemodiafiltration: A New Era = Contrib Nephrol Hemodiafiltration: A New Era = Contrib. Nephrol. Hemodiafiltration = Contrib Nephrol Hemodiafiltration = Contrib. Nephrol. Hemodialysis: From Basic Research to Clinical Trials = Contrib Nephrol Hemodialysis: From Basic Research to Clinical Trials = Contrib. Nephrol. Hemodialysis International = Hemodial Int Hemodialysis International = Hemodial. Int. Hemodialysis international. International Symposium on Home Hemodialysis = Hemodial Int Hemodialysis: New Methods and Future Technology = Contrib Nephrol Hemodialysis: New Methods and Future Technology = Contrib. Nephrol. Hemodialysis Technology = Contrib Nephrol Hemodialysis Technology = Contrib. Nephrol. Hemodialysis Vascular Access and Peritoneal Dialysis Access = Contrib Nephrol Hemodialysis Vascular Access and Peritoneal Dialysis Access = Contrib. Nephrol. Hemoglobin=Hemoglobin;; Hemoglobin = Hemoglobin Hemoglobins, Pt B = Method Enzymol Hemoglobins, Pt B = Method. Enzymol. Hemoglobins, Pt C = Method Enzymol Hemoglobins, Pt C = Method. Enzymol. Hemophilia and Von Willebrands Disease in The 1990s = Int Congr Ser Hemophilia and Von Willebrands Disease in The 1990s = Int. Congr. Ser. Hemophilia Care in The New Millennium = Adv Exp Med Biol Hemophilia Care in The New Millennium = Adv. Exp. Med. Biol. Hemostase = Hemostase Hengyang shi fan xue yuan xue bao = Journal of Heng Yang Teachers' College|Hengyang Shi Fan Xue Yuan Xue Bao Henry E. Sigerist Supplements to the Bulletin of the History of Medicine = Henry E. Sigerist Suppl. Bull. Hist. Med. Henry Ford Hospital medical bulletin = Henry Ford Hosp Med Bull Henry Ford Hospital Medical Journal = Henry Ford Hos Med J Henry Ford Hospital Medical Journal = Henry Ford Hos. Med. J. Henry Ford Hospital medical journal = Henry Ford Hosp Med J Henry Ford Hospital Medical Journal = Henry Ford Hosp. Med. J. Henry George, The Transatlantic Irish, and Their Times = Res Hist Econ Though Henry George, The Transatlantic Irish, and Their Times = Res. Hist. Econ. Though. Henry James and The Second Empire = Stud Comp Lit Ser Henry James and The Second Empire = Stud. Comp. Lit. Ser. Henry James Review = Henry James Rev Henry James Review = Henry James Rev. Heparin and Related Polysaccharides = Adv Exp Med Biol Heparin and Related Polysaccharides = Adv. Exp. Med. Biol. Heparin and Related Polysaccharides : Structure and Activities = Ann Ny Acad Sci Heparin and Related Polysaccharides : Structure and Activities = Ann. Ny. Acad. Sci. Hepatic Encephalopathy, Hyperammonemia, and Ammonia Toxicity = Adv Exp Med Biol Hepatic Encephalopathy, Hyperammonemia, and Ammonia Toxicity = Adv. Exp. Med. Biol. Hepatic Metabolism and Disposition of Endo- and Xenobiotics = Falk Symp Hepatic Metabolism and Disposition of Endo- and Xenobiotics = Falk. Symp. Hepatitis B : A Sexually Transmitted Disease in Heterosexuals = Int Congr Ser Hepatitis B : A Sexually Transmitted Disease in Heterosexuals = Int. Congr. Ser. Hepatitis C and Liver Transplantation = Hepatol Res Clin Dev Hepatitis C and Liver Transplantation = Hepatol. Res. Clin. Dev. Hepatitis C Infection in Dialysis = Nephrol Res Clin Dev Hepatitis C Infection in Dialysis = Nephrol. Res. Clin. Dev. Hepatitis C Viruses = Curr Top Microbiol Hepatitis C Viruses = Curr. Top. Microbiol. Hepatitis Delta Virus = Curr Top Microbiol Hepatitis Delta Virus = Curr. Top. Microbiol. Hepatitis Delta Virus = Prog Clin Biol Res Hepatitis Delta Virus = Prog. Clin. Biol. Res. Hepatitis Monthly = Hepat Mon Hepatitis Monthly = Hepat. Mon. Hepatitis Weekly = Hepatitis Wkly Hepatobiliary and Pancreatic Diseases International = Hepatobiliary Pancreat. Dis. Int. Hepatobiliary Diseases: Cholestasis and Gallstones = Falk Symp Hepatobiliary Diseases: Cholestasis and Gallstones = Falk. Symp. Hepatobiliary & pancreatic diseases international : HBPD INT = Hepatobiliary Pancreat Dis Int Hepatobiliary & Pancreatic Diseases International = Hepatob Pancreat Dis Hepatobiliary & Pancreatic Diseases International = Hepatob. Pancreat. Dis. Hepatocellular Carcinoma: Diagnosis and Treatment, Second Edition = Curr Clin Oncol Hepatocellular Carcinoma: Diagnosis and Treatment, Second Edition = Curr. Clin. Oncol. Hepatocytes: Methods and Protocols = Methods Mol Biol Hepatocytes: Methods and Protocols = Methods Mol. Biol. Hepatocyte Transplantation = Falk Symp Hepatocyte Transplantation = Falk. Symp. Hepato-gastroenterology = Hepato-gastroenterol Hepato-gastroenterology = Hepato-gastroenterol. Hepato-gastroenterology = Hepatogastroenterology Hepato-Gastroenterology=Hepatogastroenterology;; Hepato-Gastroenterology = Hepatogastroenterology. Hepatology 2000 = Falk Symp Hepatology 2000 = Falk. Symp. Hepatology (Baltimore, Md.) = Hepatology Hepatology=Hepatology;; Hepatology = Hepatology Hepatology International = Hepatol Int Hepatology International = Hepatol. Int. Hepatology Research and Clinical Developments = Hepatol Res Clin Dev Hepatology Research and Clinical Developments = Hepatol. Res. Clin. Dev. Hepatology Research = Hepatol Res Hepatology Research = Hepatol. Res. Hepatology research : the official journal of the Japan Society of Hepatology = Hepatol Res Hephaistos. Kritische Zeitschrift zur Theorie und Praxis der Archäologie und angrenzender Wissenschaften = Hephaistos Hepvis96 Workshop On Visualization in High-energy Physics = Cern Report Hepvis96 Workshop On Visualization in High-energy Physics = Cern. Report. Heraldique et genealogie = Her Geneal Herald of the Russian Academy of Sciences = Her. Russ. Acad. Sci. Herald of The Russian Academy of Sciences = Her Russ Acad Sci+ Herald of The Russian Academy of Sciences = Her. Russ. Acad. Sci+.+ Herba Polonica = Herba Pol Herba Polonica = Herba Pol. Herbert Butterfield and The Interpretation of History = Stud Mod Hist Herbert Butterfield and The Interpretation of History = Stud. Mod. Hist. Herbicide Metabolites in Surface Water and Groundwater = Acs Sym Ser Herbicide Metabolites in Surface Water and Groundwater = Acs. Sym. Ser. Herbicides and Plant Metabolism = Soc Exp Biol Sem Ser Herbicides and Plant Metabolism = Soc. Exp. Biol. Sem. Ser. Herbig-haro Flows and The Birth of Low Mass Stars = Iau Symp Herbig-haro Flows and The Birth of Low Mass Stars = Iau. Symp. Herbs: Challenges in Chemistry and Biology = Acs Sym Ser Herbs: Challenges in Chemistry and Biology = Acs. Sym. Ser. Hercynia = Hercynia Herd-health Environments Research & Design Journal = Herd-health Env Res Herd-health Environments Research & Design Journal = Herd-health Env. Res. Hereditary Cancer in Clinical Practice = Hered Cancer Clin Pr Hereditary Cancer in Clinical Practice = Hered. Cancer Clin. Pr. Hereditary Colorectal Cancer = Md Anderson Solid Tu Hereditary Colorectal Cancer = Md. Anderson. Solid. Tu. Hereditary Diseases and Blood Transfusion = Dev Hematol Hereditary Diseases and Blood Transfusion = Dev. Hematol. Hereditary Kidney Diseases = Contrib Nephrol Hereditary Kidney Diseases = Contrib. Nephrol. Hereditary Nephritis = Contrib Nephrol Hereditary Nephritis = Contrib. Nephrol. Hereditas-genetiskt Arkiv = Hereditas-genetisk A Hereditas-genetiskt Arkiv = Hereditas-genetisk. A. Hereditas=Hereditas;; Hereditas = Hereditas Heredity=Heredity;; Heredity = Heredity Heritage Management of Farmed and Forested Landscapes in Europe = Eac Occas Pap Heritage Management of Farmed and Forested Landscapes in Europe = Eac. Occas. Pap. Heritage of European Mathematics = Herit Eur Math Heritage of European Mathematics = Herit. Eur. Math. Heritage of Soviet Oriental Studies = Routl Contemp Russ E Heritage of Soviet Oriental Studies = Routl. Contemp. Russ. E. Heritage review (Bismarck, N.D.) = Herit Rev Heritage, Weathering and Conservation, Vols 1 and 2 = Proc Monogr Eng Wate Heritage, Weathering and Conservation, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Her Life Historical: Exemplarity and Female Saints' Lives in Late Medieval England = Middle Ages Ser Her Life Historical: Exemplarity and Female Saints' Lives in Late Medieval England = Middle. Ages. Ser. Hermaea Germanistische Forschungen = Hermaea Ger Forsch Hermaea Germanistische Forschungen = Hermaea Ger. Forsch. Hermann Broch - Modernism, Cultural Crisis and The Hitler Era = Inn B Kult Hermann Broch - Modernism, Cultural Crisis and The Hitler Era = Inn. B. Kult. Hermann Gunther Grassmann (1809-1877): Visionary Mathematician, Scientist and Neohumanist Scholar = Bost Stud Philos Sci Hermann Gunther Grassmann (1809-1877): Visionary Mathematician, Scientist and Neohumanist Scholar = Bost. Stud. Philos. Sci. Hermann Hesse Today = Ams C Mod G Hermann Hesse Today = Ams. C. Mod. G. Hermann Schlichting - 100 Years = Note N Fl Mech Mul D Hermann Schlichting - 100 Years = Note. N. Fl. Mech. Mul. D. Hermann Schlichting - 100 Years = Notes Numer Fluid Me Hermann Schlichting - 100 Years = Notes. Numer. Fluid. Me. Hermann Von Helmholtz's Mechanism: The Loss of Certainty = Archimedes Hermann Von Helmholtz's Mechanism: The Loss of Certainty = Archimedes. Hermathena = Hermathena Hermeneutics and Psychological Theory : Interpretive Perspectives On Personality, Psychotherapy, and Psychopathology = Rutg S Appl Hermeneutics and Psychological Theory : Interpretive Perspectives On Personality, Psychotherapy, and Psychopathology = Rutg. S. Appl. Hermeneutics At The Crossroads = In Phil Rel Hermeneutics At The Crossroads = In. Phil. Rel. Hermeneutics of The Happy Ending in Job 42: 7-17 = Beih Z Alttest Wiss Hermeneutics of The Happy Ending in Job 42: 7-17 = Beih. Z. Alttest. Wiss. Hermeneutik Und Bibelexegese Beim Jungen Goethe = Hist Hermen Ser Stud Hermeneutik Und Bibelexegese Beim Jungen Goethe = Hist. Hermen. Ser. Stud. Hermes = Hermes Hermes = Hermes-paris Hermes = Hermes-paris. Hermes = Hermes (Wiesb) Hermes. Zeitschrift für klassische Philologie = Hermes Hermes: Zeitschrift für klassische Philologie = Hermes Hermes-zeitschrift Fur Klassische Philologie = Hermes-z Klass Philo Hermes-zeitschrift Fur Klassische Philologie = Hermes-z. Klass. Philo. Hernani Et Ruy Blas: De Flamme Ou De Sang = Collect Amphi 7 Hernani Et Ruy Blas: De Flamme Ou De Sang = Collect. Amphi. 7. Hernia = Hernia Hernia : the journal of hernias and abdominal wall surgery = Hernia Heroin Addiction and Related Clinical Problems = Heroin Addict Rel Cl Heroin Addiction and Related Clinical Problems = Heroin Addict. Rel. Cl. Hero in Contemporary American Fiction: The Works of Saul Bellow and Don Delillo = Am Lit Read Twenty-f Hero in Contemporary American Fiction: The Works of Saul Bellow and Don Delillo = Am. Lit. Read. Twenty-f. Herons, Egrets and Bitterns: Their Biology and Conservation in Australia = Austral Nat Hist Ser Herons, Egrets and Bitterns: Their Biology and Conservation in Australia = Austral. Nat. Hist. Ser. Heros Many Faces - Raoul Wallenberg in Contemporary Monuments = Holocaust Contexts Heros Many Faces - Raoul Wallenberg in Contemporary Monuments = Holocaust. Contexts. Herpes : the journal of the IHMF = Herpes Herpesviridae: Viral Structure, Life Cycle and Infections = Virol Res Prog Herpesviridae: Viral Structure, Life Cycle and Infections = Virol. Res. Prog. Herpetologica = Herpetologica Herpetological Conservation and Biology = Herpetol Conserv Bio Herpetological Conservation and Biology = Herpetol. Conserv. Bio. Herpetological Journal = Herpetol J Herpetological Journal = Herpetol. J. Herpetological Monographs = Herpetol Monogr Herpetological Monographs = Herpetol. Monogr. Herpetozoa = Herpetozoa Herring: Expectations for A New Millennium = Low Wake Fi Herring: Expectations for A New Millennium = Low. Wake. Fi. Herrschaft Und Schrift: Strategien Der Inszenierung Und Funktionalisierung Von Texten in Luzern Und Bern Am Ende Des Mittelalters = Scrinium Fribg Herrschaft Und Schrift: Strategien Der Inszenierung Und Funktionalisierung Von Texten in Luzern Und Bern Am Ende Des Mittelalters = Scrinium. Fribg. Herz=Herz;; Herz = Herz Herz Kreislauf = Herz Kreislauf Herzogia = Herzogia Herzschrittmachertherapie & Elektrophysiologie = Herzschrittmacherther Elektrophysiol HESPA Mitteilungen = HESPA Mitt. Hesperia = Hesperia Hesperia. Journal of the American School of Classical Studies at Athens = Hesperia Hesperian Foundation news = Hesperian Found News Hesperides = Hesperides Hesperis tamuda / Universite Mohammed V., Faculte des lettres et des sciences humaines = Hesperis Tamuda Hessische Familienkunde = Hess Familienkd Hessische Floristische Briefe = Hess. Florist. Briefe Hessisches Arzteblatt = Hess Arztebl Hetercyclic Supramolecules I = Top Heterocycl Chem Hetercyclic Supramolecules I = Top. Heterocycl. Chem. Heteroatom Chemistry = Heteroat. Chem Heteroatom Chemistry = Heteroat. Chem. Heteroatom Chemistry = Heteroatom Chem Heteroatom Chemistry = Heteroatom Chem. Heteroatomic Aroma Compounds = Acs Sym Ser Heteroatomic Aroma Compounds = Acs. Sym. Ser. Heterocycles From Carbohydrate Precursors = Top Heterocycl Chem Heterocycles From Carbohydrate Precursors = Top. Heterocycl. Chem. Heterocycles = Heterocycles Heterocyclic Communications = Heterocycl Commun Heterocyclic Communications = Heterocycl. Commun. Heterocyclic Compounds: Synthesis, Properties and Applications = Chem Res Appl-nova Heterocyclic Compounds: Synthesis, Properties and Applications = Chem. Res. Appl-nova. Heterocyclic Polymethine Dyes = Top Heterocycl Chem Heterocyclic Polymethine Dyes = Top. Heterocycl. Chem. Heterocyclic Scaffolds I - Beta Lactams = Top Heterocycl Chem Heterocyclic Scaffolds I - Beta Lactams = Top. Heterocycl. Chem. Heterocyclic Supramolecules Ii = Top Heterocycl Chem Heterocyclic Supramolecules Ii = Top. Heterocycl. Chem. Heterodox Macroeconomics: Keynes, Marx and Globalization = Routl Adv Heterod Ec Heterodox Macroeconomics: Keynes, Marx and Globalization = Routl. Adv. Heterod. Ec. Heteroepitaxy of Dissimilar Materials = Mater Res Soc Symp P Heteroepitaxy of Dissimilar Materials = Mater. Res. Soc. Symp. P. Heterofonia = Heterofonia Heterogeneity in Cross-cultural Psychology = Cross C Psy Heterogeneity in Cross-cultural Psychology = Cross. C. Psy. Heterogeneity of Alzheimers Disease = Res Per Alz Heterogeneity of Alzheimers Disease = Res. Per. Alz. Heterogeneity of Cancer Cells = Serono Sym Heterogeneity of Cancer Cells = Serono. Sym. Heterogeneous Catalysis and Fine Chemicals Iii = Stud Surf Sci Catal Heterogeneous Catalysis and Fine Chemicals Iii = Stud. Surf. Sci. Catal. Heterogeneous Catalysis and Fine Chemicals Ii = Stud Surf Sci Catal Heterogeneous Catalysis and Fine Chemicals Ii = Stud. Surf. Sci. Catal. Heterogeneous Catalysis and Fine Chemicals Iv = Stud Surf Sci Catal Heterogeneous Catalysis and Fine Chemicals Iv = Stud. Surf. Sci. Catal. Heterogeneous Chemistry Reviews = Heterogen Chem Rev Heterogeneous Chemistry Reviews = Heterogen. Chem. Rev. Heterogeneous Enantioselective Hydrogenation: Theory and Practice = Catal Met Complexes Heterogeneous Enantioselective Hydrogenation: Theory and Practice = Catal. Met. Complexes. Heterogeneous Hydrocarbon Oxidation = Acs Sym Ser Heterogeneous Hydrocarbon Oxidation = Acs. Sym. Ser. Heterogeneous Integration of Materials for Passive Components and Smart Systems = Mater Res Soc Symp P Heterogeneous Integration of Materials for Passive Components and Smart Systems = Mater. Res. Soc. Symp. P. Heterogenized Homogeneous Catalysts for Fine Chemicals Production: Materials and Processes = Catal Met Complexes Heterogenized Homogeneous Catalysts for Fine Chemicals Production: Materials and Processes = Catal. Met. Complexes. Heterologous Expression of Membrane Proteins: Methods and Protocols = Methods Mol Biol Heterologous Expression of Membrane Proteins: Methods and Protocols = Methods Mol. Biol. Heterologous Gene Expression in E Coli: Methods and Protocols = Methods Mol Biol Heterologous Gene Expression in E Coli: Methods and Protocols = Methods Mol. Biol. Heterosexual Masculinities: Contemporary Perspectives From Psychoanalytic Gender Theory = Psychoanal New Key Heterosexual Masculinities: Contemporary Perspectives From Psychoanalytic Gender Theory = Psychoanal. New. Key. Heterosexual Transmission of Aids = Conrad W S Heterosexual Transmission of Aids = Conrad. W. S. Heterostructure Epitaxy and Devices = Nato Asi 3 High Tech Heterostructure Epitaxy and Devices = Nato. Asi. 3. High. Tech. Heterostructures On Silicon : One Step Further With Silicon = Nato Adv Sci I E-app Heterostructures On Silicon : One Step Further With Silicon = Nato. Adv. Sci. I. E-app. Heterotrimeric G-protein Effectors = Method Enzymol Heterotrimeric G-protein Effectors = Method. Enzymol. Heterotrimeric G Proteins = Method Enzymol Heterotrimeric G Proteins = Method. Enzymol. Heterotrophic Plate Counts and Drinking-water Safety = Emerg I Water Infect Heterotrophic Plate Counts and Drinking-water Safety = Emerg. I. Water. Infect. Het Hormoon = Hormoon Het Land van Aalst = Land Aalst Het Ziekenhuiswezen = Ziekenhuiswezen Heuresis: Sezione Di Scienze Letterarie = Heuresis: Sez Sci L Heuresis: Sezione Di Scienze Letterarie = Heuresis: Sez. Sci. L. Heuresis V = Heuresis V Ling. Log. Sci. Hewlett-packard Journal = Hewlett-packard J Hewlett-packard Journal = Hewlett-packard J. Hexagon Roche = Hexagon Roche [Engl] Hexagon Series On Human and Environmental Security and Peace = Hexag Ser Hum Enviro Hexagon Series On Human and Environmental Security and Peace = Hexag. Ser. Hum. Enviro. Heythrop Journal-a Quarterly Review of Philosophy and Theology = Heythrop J Heythrop Journal-a Quarterly Review of Philosophy and Theology = Heythrop J. Hezbollah: A Short History = Princ Stud Muslim Po Hezbollah: A Short History = Princ. Stud. Muslim. Po. Hezbollah: The Story of The Party of God: From Revolution to Institutionalization = Middle E Focus Hezbollah: The Story of The Party of God: From Revolution to Institutionalization = Middle. E. Focus. Hfsp Journal = Hfsp J Hfsp Journal = Hfsp J. H.g. Bronn, Ernst Haeckel, and The Origins of German Darwinism: A Study in Translation and Transformation = Transformations-stud H.g. Bronn, Ernst Haeckel, and The Origins of German Darwinism: A Study in Translation and Transformation = Transformations-stud. Hidastetoyssyjen Vaikutus Ajonopeuksiin Sorateiden Vartioimattomissa Tasoristeyksissa = Vtt Res Notes Hidastetoyssyjen Vaikutus Ajonopeuksiin Sorateiden Vartioimattomissa Tasoristeyksissa = Vtt. Res. Notes. Hidden Dimensions: The Cultural Significance of Wetland Archaeology = Pacif Rim Archaeol Hidden Dimensions: The Cultural Significance of Wetland Archaeology = Pacif. Rim. Archaeol. Hidden Hands in The Market = Res Econ Anthropol Hidden Hands in The Market = Res. Econ. Anthropol. Hidden History of 9-11-2001 = Res Polit Econ Hidden History of 9-11-2001 = Res. Polit. Econ. Hidden History of Realism: A Genealogy of Power Politics = Palgr Mac Ser Hist Hidden History of Realism: A Genealogy of Power Politics = Palgr. Mac. Ser. Hist. Hidden Markets: The New Education Privatization = Crit Soc Thought Hidden Markets: The New Education Privatization = Crit. Soc. Thought. Hidden Markov Models and Dynamical Systems = Other Titl Appl Math Hidden Markov Models and Dynamical Systems = Other. Titl. Appl. Math. Hidden Markov Models for Time Series: An Introduction Using R = Monogr Stat Appl Pro Hidden Markov Models for Time Series: An Introduction Using R = Monogr. Stat. Appl. Pro. Hidden Markov Models in Finance = Int Ser Oper Res Man Hidden Markov Models in Finance = Int. Ser. Oper. Res. Man. Hidden Millions: Homelessness in Developing Countries = Hous Soc Ser Hidden Millions: Homelessness in Developing Countries = Hous. Soc. Ser. Hidrobiologica = Hidrobiologica Hierarchical and Geometrical Methods in Scientific Visualization = Math Vis Hierarchical and Geometrical Methods in Scientific Visualization = Math. Vis. Hierarchical and Geometrical Methods in Scientific Visualization = Math Visual Hierarchical and Geometrical Methods in Scientific Visualization = Math. Visual. Hierarchical Neural Networks for Image Interpretation = Lect Notes Comput Sc Hierarchical Neural Networks for Image Interpretation = Lect. Notes. Comput. Sc. Hierarchy in Natural and Social Sciences = Methods Ser Hierarchy in Natural and Social Sciences = Methods. Ser. Hierarchy of Life = Int Congr Ser Hierarchy of Life = Int. Congr. Ser. Hifuka kiyo. Acta dermatologica = Hifuka Kiyo Hifuka Kiyo (Acta Dermatologica) = Hifuka Kiyo Hifuka no rinsho. Rinsho derma (Tokyo) = Hifuka No Rinsho [Hifu] Skin research = Hifu Hifu to hinyo. The Dermatology and urology = Hifu To Hinyo Dermatol Urol Higashi Nihon shigaku zasshi = Higashi Nippon Shigaku Zasshi Higashi Nippon Shigaku Zasshi = Higashi Nippon Shigaku Zasshi Higginson Journal = Higginson J Higginson Journal = Higginson J. Higginson Journal of Poetry = Higginson J Higginson Journal of Poetry = Higginson J. Higgs Particle(s) = E Maj Int S Higgs Particle(s) = E. Maj. Int. S. High Ability Studies = High Abil Stud High Ability Studies = High Abil. Stud. High Altitude Medicine and Biology = High Alt. Med. Biol. High altitude medicine & biology = High Alt Med Biol High Altitude Medicine & Biology = High Alt Med Biol High Altitude Medicine & Biology = High Alt. Med. Biol. High and Low Concentration for Solar Electric Applications Iii = Proc Spie High and Low Concentration for Solar Electric Applications Iii = Proc. Spie. High and Low Concentration for Solar Electric Applications Iii = P Soc Photo-opt Ins High and Low Concentration for Solar Electric Applications Iii = P. Soc. Photo-opt. Ins. High and Low Concentration for Solar Electric Applications Ii = Proc Spie High and Low Concentration for Solar Electric Applications Ii = Proc. Spie. High and Low Concentration for Solar Electric Applications Ii = P Soc Photo-opt Ins High and Low Concentration for Solar Electric Applications Ii = P. Soc. Photo-opt. Ins. High and Low Concentration for Solar Electric Applications = Proc Spie High and Low Concentration for Solar Electric Applications = Proc. Spie. High and Low Concentration for Solar Electric Applications = P Soc Photo-opt Ins High and Low Concentration for Solar Electric Applications = P. Soc. Photo-opt. Ins. High and Low Concentrator Systems for Solar Electric Applications V = P Soc Photo-opt Ins High and Low Concentrator Systems for Solar Electric Applications V = P. Soc. Photo-opt. Ins. High and Low Cultures = Monat Occ V High and Low Cultures = Monat. Occ. V. High Angular Resolution in Astrophysics = Nato Adv Sci I C-mat High Angular Resolution in Astrophysics = Nato. Adv. Sci. I. C-mat. High-brightness Beams for Advanced Accelerator Applications = Aip Conf Proc High-brightness Beams for Advanced Accelerator Applications = Aip. Conf. Proc. High Brightness Light Emitting Diodes = Semiconduct Semimet High Brightness Light Emitting Diodes = Semiconduct. Semimet. High Confidence Software Reuse in Large Systems, Proceedings = Lect Notes Comput Sc High Confidence Software Reuse in Large Systems, Proceedings = Lect. Notes. Comput. Sc. High-contrast Imaging for Exo-planet Detection = P Soc Photo-opt Ins High-contrast Imaging for Exo-planet Detection = P. Soc. Photo-opt. Ins. High Damping Materials Ii = Key Eng Mat High Damping Materials Ii = Key. Eng. Mat. High-definition Video = P Soc Photo-opt Ins High-definition Video = P. Soc. Photo-opt. Ins. High-density Data Recording and Retrieval Technologies = P Soc Photo-opt Ins High-density Data Recording and Retrieval Technologies = P. Soc. Photo-opt. Ins. High Density Digital Recording = Nato Adv Sci Inst Se High Density Digital Recording = Nato. Adv. Sci. Inst. Se. High Density Lipoproteins and Atherosclerosis Iii = Int Congr Ser High Density Lipoproteins and Atherosclerosis Iii = Int. Congr. Ser. High Density Lipoproteins and Atherosclerosis Ii = Int Congr Ser High Density Lipoproteins and Atherosclerosis Ii = Int. Congr. Ser. High Density Lipoproteins = Ather Rev High Density Lipoproteins = Ather. Rev. High-density Magnetic Recording and Integrated Magneto-optics: Materials and Devices = Mater Res Soc Symp P High-density Magnetic Recording and Integrated Magneto-optics: Materials and Devices = Mater. Res. Soc. Symp. P. High-dimensional Chaotic and Attractor Systems: A Comprehensive Introduction = Rev Econ Geol High-dimensional Chaotic and Attractor Systems: A Comprehensive Introduction = Rev. Econ. Geol. High-dimensional Partial Differential Equations in Science and Engineering = Crm Proc & Lect Note High-dimensional Partial Differential Equations in Science and Engineering = Crm. Proc. &. Lect. Note. High Dimensional Probability Iii = Prog Probab High Dimensional Probability Iii = Prog. Probab. High Dimensional Probability Ii = Prog Probab High Dimensional Probability Ii = Prog. Probab. High-dose Irradiation: Wholesomeness of Food Irradiated With Doses Above 10 Kgy = Who Tech Rep Ser High-dose Irradiation: Wholesomeness of Food Irradiated With Doses Above 10 Kgy = Who. Tech. Rep. Ser. High-dose Irradiation: Wholesomeness of Food Irradiated With Dos Es Above 10 Kgy = Who Tech Rep Ser High-dose Irradiation: Wholesomeness of Food Irradiated With Dos Es Above 10 Kgy = Who. Tech. Rep. Ser. High-dynamic-range (hdr) Vision = Spr Ser Adv Microele High-dynamic-range (hdr) Vision = Spr. Ser. Adv. Microele. High-efficient Low-cost Photovoltaics: Recent Developments = Springer Ser Opt Sci High-efficient Low-cost Photovoltaics: Recent Developments = Springer. Ser. Opt. Sci. High-energy Astrophysics in The 21st Century = Aip Conf Proc High-energy Astrophysics in The 21st Century = Aip. Conf. Proc. High Energy/average Power Lasers and Intense Beam Applications Iii = P Soc Photo-opt Ins High Energy/average Power Lasers and Intense Beam Applications Iii = P. Soc. Photo-opt. Ins. High Energy/average Power Lasers and Intense Beam Applications Ii = P Soc Photo-opt Ins High Energy/average Power Lasers and Intense Beam Applications Ii = P. Soc. Photo-opt. Ins. High Energy/average Power Lasers and Intense Beam Applications Iv = P Soc Photo-opt Ins High Energy/average Power Lasers and Intense Beam Applications Iv = P. Soc. Photo-opt. Ins. High Energy /average Power Lasers and Intense Beam Applications = P Soc Photo-opt Ins High Energy /average Power Lasers and Intense Beam Applications = P. Soc. Photo-opt. Ins. High-energy Ball Milling: Mechanochemical Processing of Nanopowders = Woodhead Publ Mater High-energy Ball Milling: Mechanochemical Processing of Nanopowders = Woodhead. Publ. Mater. High Energy Blazar Astronomy = Astr Soc P High Energy Blazar Astronomy = Astr. Soc. P. High Energy Chemistry = High Energ Chem+ High Energy Chemistry = High Energ. Chem+.+ High Energy Chemistry = High Energy Chem. High Energy Cosmic Rays, Second Edition = S-p B Astron Planet High Energy Cosmic Rays, Second Edition = S-p. B. Astron. Planet. High Energy Density and High Power Rf = Aip Conf Proc High Energy Density and High Power Rf = Aip. Conf. Proc. High Energy Density Materials = Struct Bond High Energy Density Materials = Struct. Bond. High Energy Density Microwaves = Aip Conf Proc High Energy Density Microwaves = Aip. Conf. Proc. High-energy-density Physics: Fundamentals, Inertial Fusion, and Experimental Astrophysics = Shock Wave High Pres High-energy-density Physics: Fundamentals, Inertial Fusion, and Experimental Astrophysics = Shock. Wave. High. Pres. High Energy Density Physics = High Energ Dens Phys High Energy Density Physics = High Energ. Dens. Phys. High Energy Density Physics = High Energy Density Phys. High-energy Detectors in Astronomy = Proc Spie High-energy Detectors in Astronomy = Proc. Spie. High-energy Detectors in Astronomy = P Soc Photo-opt Ins High-energy Detectors in Astronomy = P. Soc. Photo-opt. Ins. High Energy Gamma-ray Astronomy = Aip Conf Proc High Energy Gamma-ray Astronomy = Aip. Conf. Proc. High Energy, Optical, and Infrared Detectors for Astronomy Iii = P Soc Photo-opt Ins High Energy, Optical, and Infrared Detectors for Astronomy Iii = P. Soc. Photo-opt. Ins. High Energy, Optical, and Infrared Detectors for Astronomy Ii = Proc Spie High Energy, Optical, and Infrared Detectors for Astronomy Ii = Proc. Spie. High Energy, Optical, and Infrared Detectors for Astronomy Ii = P Soc Photo-opt Ins High Energy, Optical, and Infrared Detectors for Astronomy Ii = P. Soc. Photo-opt. Ins. High Energy, Optical, and Infrared Detectors for Astronomy Iv = P Soc Photo-opt Ins High Energy, Optical, and Infrared Detectors for Astronomy Iv = P. Soc. Photo-opt. Ins. High Energy Phenomena in Massive Stars = Astr Soc P High Energy Phenomena in Massive Stars = Astr. Soc. P. High Energy Phenomenology = Sussp Proc High Energy Phenomenology = Sussp. Proc. High Energy Physics = Aip Conf Proc High Energy Physics = Aip. Conf. Proc. High Energy Physics and Applications = Aip Conf Proc High Energy Physics and Applications = Aip. Conf. Proc. High Energy Physics and Nuclear Physics-chinese Edition = High Energ Phys Nuc High Energy Physics and Nuclear Physics-chinese Edition = High Energ. Phys. Nuc. High Energy Physics and Nuclear Physics = High Energy Phys. Nuclear Phys. High Energy Physics At The Millennium: Mrst '99 = Aip Conf Proc High Energy Physics At The Millennium: Mrst '99 = Aip. Conf. Proc. High Energy Physics & Nuclear Physics-english Edition = High Energ Phys Nucl High Energy Physics & Nuclear Physics-english Edition = High Energ. Phys. Nucl. High-energy Polarized Proton Beams: Modern View = Springer Tr Mod Phys High-energy Polarized Proton Beams: Modern View = Springer. Tr. Mod. Phys. High Energy Processes and Phenomena in Astrophysics = Iau Symp High Energy Processes and Phenomena in Astrophysics = Iau. Symp. High Energy Processes in Accreting Black Holes = Astr Soc P High Energy Processes in Accreting Black Holes = Astr. Soc. P. High Energy Radiation From Black Holes: Gamma Rays, Cosmic Rays, and Neutrinos = Pr S Astrop High Energy Radiation From Black Holes: Gamma Rays, Cosmic Rays, and Neutrinos = Pr. S. Astrop. High Energy Solar Corona: Waves, Eruptions, Particles = Lect Notes Phys High Energy Solar Corona: Waves, Eruptions, Particles = Lect. Notes. Phys. High-energy Solar Phenomena - A New Era of Spacecraft Measurements = Aip Conf Proc High-energy Solar Phenomena - A New Era of Spacecraft Measurements = Aip. Conf. Proc. High Energy Solar Physics = Aip Conf Proc High Energy Solar Physics = Aip. Conf. Proc. High Energy Solar Physics - Anticipating Hessi = Astr Soc P High Energy Solar Physics - Anticipating Hessi = Astr. Soc. P. High-energy Spectroscopic Astrophysics = Saas Fee Ad High-energy Spectroscopic Astrophysics = Saas. Fee. Ad. High Energy Spin Physics = Aip Conf Proc High Energy Spin Physics = Aip. Conf. Proc. High-energy Studies of Supernova Remnants and Neutron Stars = Adv Space Res High-energy Studies of Supernova Remnants and Neutron Stars = Adv. Space. Res. High-energy Studies of Supernova Remnants and Neutron Stars = Adv Space Res-series High-energy Studies of Supernova Remnants and Neutron Stars = Adv. Space. Res-series. Higher Dimensional Varieties and Rational Points = Bolyai Math Stud Higher Dimensional Varieties and Rational Points = Bolyai. Math. Stud. Higher Education Administration With Social Media: Including Applications in Student Affairs, Enrollment Management, Alumni Relations, and Career Centers = Cut Technol High Ed Higher Education Administration With Social Media: Including Applications in Student Affairs, Enrollment Management, Alumni Relations, and Career Centers = Cut. Technol. High. Ed. Higher Education and Graduate Employment in Europe = High Educ Dynam Higher Education and Graduate Employment in Europe = High. Educ. Dynam. Higher Education and Sustainable Development: Paradox and Possibility = Key Issues High Educ Higher Education and Sustainable Development: Paradox and Possibility = Key. Issues. High. Educ. Higher Education Collective Bargaining: Beyond The Boundaries = P A Con Nat Higher Education Collective Bargaining: Beyond The Boundaries = P. A. Con. Nat. Higher Education Collective Bargaining During A Period of Change = P A Con Nat Higher Education Collective Bargaining During A Period of Change = P. A Con. Nat. Higher Education Dynamics = High Educ Dynam Higher Education Dynamics = High. Educ. Dynam. Higher Education Dynamics = High Edu Dyn Higher Education Dynamics = High. Edu. Dyn. Higher Education for A Knowledge Society = High Educ Knowl Soc Higher Education for A Knowledge Society = High. Educ. Knowl. Soc. Higher Education-handbook of Theory and Research = Higher Educ Higher Education-handbook of Theory and Research = Higher Educ. Higher Education: Handbook of Theory and Research, Vol 25 = Higher Educ Higher Education: Handbook of Theory and Research, Vol 25 = Higher Educ. Higher Education: Handbook of Theory and Research, Vol 26 = Higher Educ Higher Education: Handbook of Theory and Research, Vol 26 = Higher Educ. Higher Education = High Educ Higher Education = High. Educ. Higher Education in A Global Society: Achieving Diversity, Equity and Excellence = Adv Educ Di Higher Education in A Global Society: Achieving Diversity, Equity and Excellence = Adv. Educ. Di. Higher Education in Asia/pacific: Quality and The Public Good = Int Dev Educ Higher Education in Asia/pacific: Quality and The Public Good = Int. Dev. Educ. Higher Education Policy Series = High Educ Pol Ser Higher Education Policy Series = High. Educ. Pol. Ser. Higher Education Quarterly = High Educ Q Higher Education Quarterly = High. Educ. Q. Higher Education, Research, and Knowledge in The Asia-pacific Region = Issues High Educ-pal Higher Education, Research, and Knowledge in The Asia-pacific Region = Issues. High. Educ-pal. Higher Education Research & Development = High Educ Res Dev Higher Education Research & Development = High. Educ. Res. Dev. Higher Education Review = High Educ Rev Higher Education Review = High. Educ. Rev. Higher Learning & Catholic Traditions = Eras Inst Bk Higher Learning & Catholic Traditions = Eras. Inst. Bk. Higher-level Hardware Synthesis = Lect Notes Comput Sc Higher-level Hardware Synthesis = Lect. Notes. Comput. Sc. Higher-order Algebra, Logic, and Term Rewriting = Lect Notes Comput Sc Higher-order Algebra, Logic, and Term Rewriting = Lect. Notes. Comput. Sc. Higher Order Difference Methods for Time Dependent Pde = Spr Ser Comput Math Higher Order Difference Methods for Time Dependent Pde = Spr. Ser. Comput. Math. Higher-order Processing in The Visual System = Ciba F Symp Higher-order Processing in The Visual System = Ciba. F. Symp. Higher Oxidation State Organopalladium and Platinum Chemistry = Top Organometal Chem Higher Oxidation State Organopalladium and Platinum Chemistry = Top. Organometal. Chem. Higher Structures in Geometry and Physics = Prog Math Higher Structures in Geometry and Physics = Prog. Math. Higher Topos Theory = Ann Math Stud Higher Topos Theory = Ann. Math. Stud. High-fidelity Simulation for Training, Test Support, Mission Rehearsal, and Civilian Applications = P Soc Photo-opt Ins High-fidelity Simulation for Training, Test Support, Mission Rehearsal, and Civilian Applications = P. Soc. Photo-opt. Ins. High-field Transport in Semiconductor Superlattices = Springer Tr Mod Phys High-field Transport in Semiconductor Superlattices = Springer. Tr. Mod. Phys. High Frequency Acoustics in Colloid-based Meso- and Nanostructures By Spontaneous Brillouin Light Scattering = Springer Theses-reco High Frequency Acoustics in Colloid-based Meso- and Nanostructures By Spontaneous Brillouin Light Scattering = Springer. Theses-reco. High-frequency Analog Fiber Optics Systems = P Soc Photo-opt Ins High-frequency Analog Fiber Optics Systems = P. Soc. Photo-opt. Ins. High Frequency Electromagnetic Dosimetry = Artech Hse Elec Anal High Frequency Electromagnetic Dosimetry = Artech. Hse. Elec. Anal. High Frequency Ocean Acoustics = Aip Conf Proc High Frequency Ocean Acoustics = Aip. Conf. Proc. High-grade Gliomas: Diagnosis and Treatment = Curr Clin Oncol High-grade Gliomas: Diagnosis and Treatment = Curr. Clin. Oncol. High Heat Flux and Synchrotron Radiation Beamlines = P Soc Photo-opt Ins High Heat Flux and Synchrotron Radiation Beamlines = P. Soc. Photo-opt. Ins. High Heat Flux Engineering Iii = P Soc Photo-opt Ins High Heat Flux Engineering Iii = P. Soc. Photo-opt. Ins. High Heat Flux Engineering Ii = P Soc Photo-opt Ins High Heat Flux Engineering Ii = P. Soc. Photo-opt. Ins. High Heat Flux Engineering = P Soc Photo-opt Ins High Heat Flux Engineering = P. Soc. Photo-opt. Ins. High Intensity and High Brightness Hadron Beams = Aip Conf Proc High Intensity and High Brightness Hadron Beams = Aip. Conf. Proc. Highlands Institute Series = High Inst S Highlands Institute Series = High. Inst. S. High-latitude Bioerosion: The Kosterfjord Experiment = Lect Notes Earth Sci High-latitude Bioerosion: The Kosterfjord Experiment = Lect. Notes. Earth. Sci. High Latitudes in The International Reference Ionosphere = Adv Space Res High Latitudes in The International Reference Ionosphere = Adv. Space. Res. High Latitude Studies and Upper Atmospheric Processes Including Climate Change = Adv Space Res High Latitude Studies and Upper Atmospheric Processes Including Climate Change = Adv. Space. Res. High Latitude Studies and Upper Atmospheric Processes Including Climate Change = Adv Space Res-series High Latitude Studies and Upper Atmospheric Processes Including Climate Change = Adv. Space. Res-series. High-level Data Fusion = Artech Hse Elec Warf High-level Data Fusion = Artech. Hse. Elec. Warf. High-level Modeling and Synthesis of Analog Integrated Systems = Analog Circ Sig Proc High-level Modeling and Synthesis of Analog Integrated Systems = Analog Circ. Sig. Proc. High-level Parallel Programming Models and Supportive Environments, Proceedings = Lect Notes Comput Sc High-level Parallel Programming Models and Supportive Environments, Proceedings = Lect. Notes. Comput. Sc. High Levels of Natural Radiation 1996 = Int Congr Ser High Levels of Natural Radiation 1996 = Int. Congr. Ser. High Levels of Natural Radiation and Radon Areas: Radiation Dose and Health Effects = Int Congr Ser High Levels of Natural Radiation and Radon Areas: Radiation Dose and Health Effects = Int. Congr. Ser. Highlights in Condensed Matter Physics = Aip Conf Proc Highlights in Condensed Matter Physics = Aip. Conf. Proc. Highlights in Condensed Matter Physics and Future Prospects = Nato Adv Sci I B-phy Highlights in Condensed Matter Physics and Future Prospects = Nato. Adv. Sci. I. B-phy. Highlights in Food Allergy = Monogr Allergy Highlights in Food Allergy = Monogr. Allergy Highlights in Gastrointestinal Oncology = Falk Symp Highlights in Gastrointestinal Oncology = Falk. Symp. Highlights in Molecular and Clinical Endocrinology = Front Endocrinol Highlights in Molecular and Clinical Endocrinology = Front. Endocrinol. Highlights in Practical Applications of Agents and Multiagent Systems = Adv Intel Soft Compu Highlights in Practical Applications of Agents and Multiagent Systems = Adv. Intel. Soft. Compu. Highlights of Astronomy = High Astron Highlights of Astronomy = High. Astron. Highlights of Astronomy = Iau Symp Highlights of Astronomy = Iau. Symp. Highlights of Astronomy, Vol 12 = Iau Symp Highlights of Astronomy, Vol 12 = Iau. Symp. Highlights of Astronomy, Vol 13 = Iau Symp Highlights of Astronomy, Vol 13 = Iau. Symp. Highlights of Astronomy, Vol 15 = Iau Symp P Series Highlights of Astronomy, Vol 15 = Iau. Symp. P. Series. Highlights of Astronomy, Vol 8 = Iau Symp Highlights of Astronomy, Vol 8 = Iau. Symp. Highlights of Astronomy, Vol 9 = High Astron Highlights of Astronomy, Vol 9 = High. Astron. Highlights of Current Research On Tobacco and Tobacco Chemistry = Rec Adv Tob Highlights of Current Research On Tobacco and Tobacco Chemistry = Rec. Adv. Tob. Highly Energetic Physical Processes and Mechanisms for Emission From Astrophysical Plasmas = Iau Symp Highly Energetic Physical Processes and Mechanisms for Emission From Astrophysical Plasmas = Iau. Symp. Highly Excited Molecules = Acs Sym Ser Highly Excited Molecules = Acs. Sym. Ser. Highly Frustrated Magnetism 2008 (hfm 2008) = J Phys Conf Ser Highly Frustrated Magnetism 2008 (hfm 2008) = J. Phys. Conf. Ser. Highly Innovative Space Telescope Concepts = P Soc Photo-opt Ins Highly Innovative Space Telescope Concepts = P. Soc. Photo-opt. Ins. Highly Integrated Microfluidics Design = Artech Hse Integr Mi Highly Integrated Microfluidics Design = Artech. Hse. Integr. Mi. Highly Redshifted Radio Lines = Astr Soc P Highly Redshifted Radio Lines = Astr. Soc. P. Highly Sensitive Optical Receivers = Spr Ser Adv Microele Highly Sensitive Optical Receivers = Spr. Ser. Adv. Microele. High Magnetic Fields = Lect Notes Phys High Magnetic Fields = Lect. Notes. Phys. High-mobility Group-iv Materials and Devices = Mater Res Soc Symp P High-mobility Group-iv Materials and Devices = Mater. Res. Soc. Symp. P. High Nitrogen Steels '98 = Mater Sci Forum High Nitrogen Steels '98 = Mater. Sci. Forum. High-occupancy Vehicle Systems and Demand Management 2000 = Transport Res Rec High-occupancy Vehicle Systems and Demand Management 2000 = Transport. Res. Rec. High-occupancy Vehicle Systems and Demand Management 2001 = Transport Res Rec High-occupancy Vehicle Systems and Demand Management 2001 = Transport. Res. Rec. High-occupancy Vehicle Systems and Demand Management 2002 = Transport Res Rec High-occupancy Vehicle Systems and Demand Management 2002 = Transport. Res. Rec. High-perforance Tools = Vdi Bericht High-perforance Tools = Vdi. Bericht. High Performance Ac Drives: Modelling Analysis and Control = Power Syst High Performance Ac Drives: Modelling Analysis and Control = Power. Syst. High Performance Algorithms and Software for Nonlinear Optimization = Appl Optim High Performance Algorithms and Software for Nonlinear Optimization = Appl. Optim. High Performance Algorithms and Software for Nonlinear Optimization = Appl Optimizat High Performance Algorithms and Software for Nonlinear Optimization = Appl. Optimizat. High-performance Ceramics 2001, Proceedings = Key Eng Mat High-performance Ceramics 2001, Proceedings = Key. Eng. Mat. High-performance Ceramics 2001, Proceedings = Key Eng Mater High-performance Ceramics 2001, Proceedings = Key. Eng. Mater. High-performance Ceramics Iii, Pts 1 and 2 = Key Eng Mat High-performance Ceramics Iii, Pts 1 and 2 = Key. Eng. Mat. High-performance Ceramics Iii, Pts 1 and 2 = Key Eng Mater High-performance Ceramics Iii, Pts 1 and 2 = Key. Eng. Mater. High-performance Ceramics Iv, Pts 1-3 = Key Eng Mat High-performance Ceramics Iv, Pts 1-3 = Key. Eng. Mat. High-performance Ceramics Iv, Pts 1-3 = Key Eng Mater High-performance Ceramics Iv, Pts 1-3 = Key. Eng. Mater. High-performance Ceramics Vi = Key Eng Mat High-performance Ceramics Vi = Key. Eng. Mat. High-performance Ceramics Vi = Key Eng Mater High-performance Ceramics Vi = Key. Eng. Mater. High-performance Ceramics V, Pts 1 and 2 = Key Eng Mat High-performance Ceramics V, Pts 1 and 2 = Key. Eng. Mat. High-performance Ceramics V, Pts 1 and 2 = Key Eng Mater High-performance Ceramics V, Pts 1 and 2 = Key. Eng. Mater. High Performance Chelation Ion Chromatography = Rsc Chromatogr Monog High Performance Chelation Ion Chromatography = Rsc. Chromatogr. Monog. High Performance Coatings for Automotive and Aerospace Industries = Mater Sci Technol High Performance Coatings for Automotive and Aerospace Industries = Mater. Sci. Technol. High Performance Computational Science and Engineering = Int Fed Info Proc High Performance Computational Science and Engineering = Int. Fed. Info. Proc. High Performance Computing and Applications = Lect Notes Comput Sc High Performance Computing and Applications = Lect. Notes. Comput. Sc. High Performance Computing and Communications, Proceedings = Lect Notes Comput Sc High Performance Computing and Communications, Proceedings = Lect. Notes. Comput. Sc. High-performance Computing and Networking = Lect Notes Comput Sc High-performance Computing and Networking = Lect. Notes. Comput. Sc. High-performance Computing and Networking, Proceedings = Lect Notes Comput Sc High-performance Computing and Networking, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing and Networking, Proceedings = Lect Notes Comput Sc High Performance Computing and Networking, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing for Computational Science - Vecpar 2002 = Lect Notes Comput Sc High Performance Computing for Computational Science - Vecpar 2002 = Lect. Notes. Comput. Sc. High Performance Computing for Computational Science - Vecpar 2004 = Lect Notes Comput Sc High Performance Computing for Computational Science - Vecpar 2004 = Lect. Notes. Comput. Sc. High Performance Computing for Computational Science - Vecpar 2006 = Lect Notes Comput Sc High Performance Computing for Computational Science - Vecpar 2006 = Lect. Notes. Comput. Sc. High Performance Computing for Computational Science - Vecpar 2008 = Lect Notes Comput Sc High Performance Computing for Computational Science - Vecpar 2008 = Lect. Notes. Comput. Sc. High Performance Computing for Computational Science - Vecpar 2010 = Lect Notes Comput Sc High Performance Computing for Computational Science - Vecpar 2010 = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2000, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2000, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2002, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2002, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2003 = Lect Notes Comput Sc High Performance Computing - Hipc 2003 = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2004 = Lect Notes Comput Sc High Performance Computing - Hipc 2004 = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2005, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2005, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2006, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2006, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2007, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2007, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing - Hipc 2008, Proceedings = Lect Notes Comput Sc High Performance Computing - Hipc 2008, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing in Fluid Dynamics = Ercoftac Ser High Performance Computing in Fluid Dynamics = Ercoftac. Ser. High Performance Computing in Remote Sensing = Ch Crc Comp Info Sci High Performance Computing in Remote Sensing = Ch. Crc. Comp. Info. Sci. High-performance Computing = Lect Notes Comput Sc High-performance Computing = Lect. Notes. Comput. Sc. High Performance Computing = Lect Notes Comput Sc High Performance Computing = Lect. Notes. Comput. Sc. High Performance Computing, Proceedings = Lect Notes Comput Sc High Performance Computing, Proceedings = Lect. Notes. Comput. Sc. High Performance Computing Systems and Applications = Kluwer Int Ser Eng C High Performance Computing Systems and Applications = Kluwer. Int. Ser. Eng. C. High Performance Computing Systems and Applications = Lect Notes Comput Sc High Performance Computing Systems and Applications = Lect. Notes. Comput. Sc. High Performance Computing Systems and Applications = Springer Int Ser Eng High Performance Computing Systems and Applications = Springer. Int. Ser. Eng. High Performance Computing Systems and Applications = Spring Int Ser Eng C High Performance Computing Systems and Applications = Spring. Int. Ser. Eng. C. High-performance Concrete - Proceedings, Aci International Conference = Amer Conc I High-performance Concrete - Proceedings, Aci International Conference = Amer. Conc. I. High Performance Devices, Proceedings = Sel Top Electr Syst High Performance Devices, Proceedings = Sel. Top. Electr. Syst. High Performance Embedded Architectures and Compilers = Lect Notes Comput Sc High Performance Embedded Architectures and Compilers = Lect. Notes. Comput. Sc. High Performance Embedded Architectures and Compilers, Proceedings = Lect Notes Comput Sc High Performance Embedded Architectures and Compilers, Proceedings = Lect. Notes. Comput. Sc. High Performance Embedded Architectures and Compliers, Proceedings = Lect Notes Comput Sc High Performance Embedded Architectures and Compliers, Proceedings = Lect. Notes. Comput. Sc. High-performance Energy-efficient Microprocessor Design = Integr Circuit Syst High-performance Energy-efficient Microprocessor Design = Integr. Circuit. Syst. High Performance Fiber Reinforced Cement Composites (hpfrcc3) = Rilem Proc High Performance Fiber Reinforced Cement Composites (hpfrcc3) = Rilem. Proc. High-performance Liquid Chromatography and Mass Spectrometry of Porphyrins, Chlorophylls and Bilins = Methods Chromatogr High-performance Liquid Chromatography and Mass Spectrometry of Porphyrins, Chlorophylls and Bilins = Methods. Chromatogr. High Performance Networking, Computing, Communication Systems, and Mathematical Foundations = Comm Com Inf Sc High Performance Networking, Computing, Communication Systems, and Mathematical Foundations = Comm. Com. Inf. Sc. High Performance Networking = Int Fed Info Proc High Performance Networking = Int. Fed. Info. Proc. High Performance Networking, Iv = Ifip Trans C High Performance Networking, Iv = Ifip. Trans. C. High Performance Networking, V = Ifip Trans C High Performance Networking, V = Ifip. Trans. C. High Performance Non-oxide Ceramics Ii = Struct Bond High Performance Non-oxide Ceramics Ii = Struct. Bond. High Performance Non-oxide Ceramics I = Struct Bond High Performance Non-oxide Ceramics I = Struct. Bond. High-performance Optical Spectrometry = P Soc Photo-opt Ins High-performance Optical Spectrometry = P. Soc. Photo-opt. Ins. High-performance Organic Coatings = Woodhead Publ Mater High-performance Organic Coatings = Woodhead. Publ. Mater. High Performance Polymers = Adv Polym Sci High Performance Polymers = Adv. Polym. Sci. High Performance Polymers and Polymer Matrix Composites = Mater Res Soc Symp P High Performance Polymers and Polymer Matrix Composites = Mater. Res. Soc. Symp. P. High Performance Polymers = High Perform Polym High Performance Polymers = High Perform. Polym. High Performance Scientific and Engineering Computing = Lect Notes Comp Sci High Performance Scientific and Engineering Computing = Lect. Notes. Comp. Sci. High-performance Structural Lightweight Concrete = Amer Conc I High-performance Structural Lightweight Concrete = Amer. Conc. I. High Performance Structures and Composites = Hi Per Struct Mat High Performance Structures and Composites = Hi. Per. Struct. Mat. High Performance Structures and Materials Engineering, Pts 1 and 2 = Adv Mater Res-switz High Performance Structures and Materials Engineering, Pts 1 and 2 = Adv. Mater. Res-switz. High Performance Structures and Materials = Hi Per Struct Mat High Performance Structures and Materials = Hi. Per. Struct. Mat. High Performance Structures and Materials Ii = Hi Per Struct Mat High Performance Structures and Materials Ii = Hi. Per. Struct. Mat. High Performance Structures and Materials Iii = Wit Trans Built Env High Performance Structures and Materials Iii = Wit. Trans. Built. Env. High Performance Structures and Materials Iv = Wit Trans Built Env High Performance Structures and Materials Iv = Wit. Trans. Built. Env. High Performance Systems-the Magazine for Technology Champions = High Perform Syst High Performance Systems-the Magazine for Technology Champions = High Perform. Syst. High-power and Femosecond Lasers: Properties, Materials and Applications = Lasers Electro-opt R High-power and Femosecond Lasers: Properties, Materials and Applications = Lasers. Electro-opt. R. High-power Diode Lasers: Fundamentals, Technology, Applications = Top Appl Phys High-power Diode Lasers: Fundamentals, Technology, Applications = Top. Appl. Phys. High-power Diode Laser Technology and Applications Iii = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Iii = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications Ii = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Ii = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications Iv = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Iv = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications Viii = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Viii = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications Vii = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Vii = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications Vi = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications Vi = P. Soc. Photo-opt. Ins. High-power Diode Laser Technology and Applications V = P Soc Photo-opt Ins High-power Diode Laser Technology and Applications V = P. Soc. Photo-opt. Ins. High-power Fiber and Semiconductor Lasers = P Soc Photo-opt Ins High-power Fiber and Semiconductor Lasers = P. Soc. Photo-opt. Ins. High-power Gas and Solid State Lasers = P Soc Photo-opt Ins High-power Gas and Solid State Lasers = P. Soc. Photo-opt. Ins. High-power Laser Ablation Iii = Proc Spie High-power Laser Ablation Iii = Proc. Spie. High-power Laser Ablation Iii = P Soc Photo-opt Ins High-power Laser Ablation Iii = P. Soc. Photo-opt. Ins. High-power Laser Ablation Ii = Proc Spie High-power Laser Ablation Ii = Proc. Spie. High-power Laser Ablation Ii = P Soc Photo-opt Ins High-power Laser Ablation Ii = P. Soc. Photo-opt. Ins. High-power Laser Ablation Iv, Pts 1 and 2 = Proc Spie High-power Laser Ablation Iv, Pts 1 and 2 = Proc. Spie. High-power Laser Ablation Iv, Pts 1 and 2 = P Soc Photo-opt Ins High-power Laser Ablation Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. High-power Laser Ablation, Pts 1-2 = P Soc Photo-opt Ins High-power Laser Ablation, Pts 1-2 = P. Soc. Photo-opt. Ins. High-power Laser Ablation Vii, Pts 1-2 = Proc Spie High-power Laser Ablation Vii, Pts 1-2 = Proc. Spie. High-power Laser Ablation Vii, Pts 1-2 = P Soc Photo-opt Ins High-power Laser Ablation Vii, Pts 1-2 = P. Soc. Photo-opt. Ins. High-power Laser Ablation Vi, Pts 1 and 2 = Proc Spie High-power Laser Ablation Vi, Pts 1 and 2 = Proc. Spie. High-power Laser Ablation Vi, Pts 1 and 2 = P Soc Photo-opt Ins High-power Laser Ablation Vi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. High-power Laser Ablation V, Pts 1 and 2 = Proc Spie High-power Laser Ablation V, Pts 1 and 2 = Proc. Spie. High-power Laser Ablation V, Pts 1 and 2 = P Soc Photo-opt Ins High-power Laser Ablation V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. High Power Laser-matter Interaction = Springer Trac Mod Ph High Power Laser-matter Interaction = Springer. Trac. Mod. Ph. High-power Lasers and Applications Iii = P Soc Photo-opt Ins High-power Lasers and Applications Iii = P. Soc. Photo-opt. Ins. High-power Lasers and Applications Ii = Proc Spie High-power Lasers and Applications Ii = Proc. Spie. High-power Lasers and Applications Ii = P Soc Photo-opt Ins High-power Lasers and Applications Ii = P. Soc. Photo-opt. Ins. High-power Lasers and Applications Iv = Proc Spie High-power Lasers and Applications Iv = Proc. Spie. High-power Lasers and Applications Iv = P Soc Photo-opt Ins High-power Lasers and Applications Iv = P. Soc. Photo-opt. Ins. High-power Lasers and Applications V = P Soc Photo-opt Ins High-power Lasers and Applications V = P. Soc. Photo-opt. Ins. High Power Lasers and Laser Machining Technology = P Soc Photo-opt Ins High Power Lasers and Laser Machining Technology = P. Soc. Photo-opt. Ins. High-power Lasers: Applications and Emerging Applications = Proc Spie High-power Lasers: Applications and Emerging Applications = Proc. Spie. High-power Lasers: Applications and Emerging Applications = P Soc Photo-opt Ins High-power Lasers: Applications and Emerging Applications = P. Soc. Photo-opt. Ins. High-power Lasers: Gas and Solid State Lasers = P Soc Photo-opt Ins High-power Lasers: Gas and Solid State Lasers = P. Soc. Photo-opt. Ins. High-power Lasers in Civil Engineering and Architecture = Proc Spie High-power Lasers in Civil Engineering and Architecture = Proc. Spie. High-power Lasers in Civil Engineering and Architecture = P Soc Photo-opt Ins High-power Lasers in Civil Engineering and Architecture = P. Soc. Photo-opt. Ins. High-power Lasers in Energy Engineering = P Soc Photo-opt Ins High-power Lasers in Energy Engineering = P. Soc. Photo-opt. Ins. High-power Lasers in Manufacturing = Proc Spie High-power Lasers in Manufacturing = Proc. Spie. High-power Lasers in Manufacturing = P Soc Photo-opt Ins High-power Lasers in Manufacturing = P. Soc. Photo-opt. Ins. High-power Lasers = P Soc Photo-opt Ins High-power Lasers = P. Soc. Photo-opt. Ins. High-power Lasers: Solid State, Gas, Excimer, and Other Advanced Lasers Ii = P Soc Photo-opt Ins High-power Lasers: Solid State, Gas, Excimer, and Other Advanced Lasers Ii = P. Soc. Photo-opt. Ins. High-power Lasers: Solid State, Gas, Excimer, and Other Advanced Lasers = P Soc Photo-opt Ins High-power Lasers: Solid State, Gas, Excimer, and Other Advanced Lasers = P. Soc. Photo-opt. Ins. High Power Microwave Generation and Applications = Int Sch Pl High Power Microwave Generation and Applications = Int. Sch. Pl. High-power Solid State Lasers and Applications = P Soc Photo-opt Ins High-power Solid State Lasers and Applications = P. Soc. Photo-opt. Ins. High Pressure and Biotechnology = Colloq Inse High Pressure and Biotechnology = Colloq. Inse. High-pressure Bioscience and Biotechnology = Ann Ny Acad Sci High-pressure Bioscience and Biotechnology = Ann. Ny. Acad. Sci. High Pressure Bioscience and Biotechnology = Progr Biotechnol High Pressure Bioscience and Biotechnology = Progr. Biotechnol. High Pressure Chemical Engineering = Fzka Tech Umw Wis B High Pressure Chemical Engineering = Fzka. Tech. Umw. Wis. B. High Pressure Chemical Engineering = Process Technol Proc High Pressure Chemical Engineering = Process. Technol. Proc. High Pressure Chemistry, Biochemistry and Materials Science = Nato Adv Sci Inst Se High Pressure Chemistry, Biochemistry and Materials Science = Nato. Adv. Sci. Inst. Se. High-pressure Crystallography: From Fundamental Phenomena to Technological Applications = Nato Sci Peace Sec B High-pressure Crystallography: From Fundamental Phenomena to Technological Applications = Nato. Sci. Peace. Sec. B. High-pressure Crystallography = Nato Sci Ser Ii-math High-pressure Crystallography = Nato. Sci. Ser. Ii-math. High-pressure Crystallography = Nato Sci Ser Ii Math High-pressure Crystallography = Nato. Sci. Ser. Ii. Math. High Pressure Effects in Chemistry, Biology and Materials Science = Defect Diffus Forum High Pressure Effects in Chemistry, Biology and Materials Science = Defect. Diffus. Forum. High Pressure in Semiconductor Physics Ii = Semicond Semimet High Pressure in Semiconductor Physics Ii = Semicond. Semimet. High Pressure in Semiconductor Physics Ii = Semiconduct Semimet High Pressure in Semiconductor Physics Ii = Semiconduct. Semimet. High Pressure in Semiconductor Physics I = Semiconduct Semimet High Pressure in Semiconductor Physics I = Semiconduct. Semimet. High-pressure Materials Research = Mater Res Soc Symp P High-pressure Materials Research = Mater. Res. Soc. Symp. P. High Pressure Molecular Science = Nato Adv Sci I E-app High Pressure Molecular Science = Nato. Adv. Sci. I. E-app. High Pressure Research = High Pressure Res High Pressure Research = High Pressure Res. High-pressure Shock Compression of Condensed Matter = High Pr Sh High-pressure Shock Compression of Condensed Matter = High. Pr. Sh. High- Pressure Shock Compression of Solids Viii: Science and Technology of High-velocity Impact = High Pr Sh High- Pressure Shock Compression of Solids Viii: Science and Technology of High-velocity Impact = High. Pr. Sh. High Pressure Technology of Nanomaterials = Solid State Phenomen High Pressure Technology of Nanomaterials = Solid. State. Phenomen. High Primes and Misdemeanours: Lectures in Honour of The 60th Birthday of Hugh Cowie Williams = Fields I Commun High Primes and Misdemeanours: Lectures in Honour of The 60th Birthday of Hugh Cowie Williams = Fields. I. Commun. High Primes and Misdemeanours: Lectures in Honour of The 60th Birthday of Hugh Cowie Williams = Fields Inst Commun High Primes and Misdemeanours: Lectures in Honour of The 60th Birthday of Hugh Cowie Williams = Fields. Inst. Commun. High Purity Silicon V = Elec Soc S High Purity Silicon V = Elec. Soc. S. High Purity Silicon Vii, Proceedings = Elec Soc S High Purity Silicon Vii, Proceedings = Elec. Soc. S. High Purity Silicon Vi = Proc Spie High Purity Silicon Vi = Proc. Spie. High Purity Silicon Vi = P Soc Photo-opt Ins High Purity Silicon Vi = P. Soc. Photo-opt. Ins. High Quality Beams = Aip Conf Proc High Quality Beams = Aip. Conf. Proc. High-quality Visual Experience: Creation, Processing and Interactivity of High-resolution and High-dimensional Video Signal = Signals Commun Techn High-quality Visual Experience: Creation, Processing and Interactivity of High-resolution and High-dimensional Video Signal = Signals. Commun. Techn. High-redshift Galaxies: Light From The Early Universe = Astron Astrophys Lib High-redshift Galaxies: Light From The Early Universe = Astron. Astrophys. Lib. High-resolution Displays and Projection Systems = P Soc Photo-opt Ins High-resolution Displays and Projection Systems = P. Soc. Photo-opt. Ins. High Resolution Electron Microscopy of Defects in Materials = Mater Res Soc Symp P High Resolution Electron Microscopy of Defects in Materials = Mater. Res. Soc. Symp. P. High Resolution Epr: Applications to Metalloenzymes and Metals in Medicine = Biol Magn Reson High Resolution Epr: Applications to Metalloenzymes and Metals in Medicine = Biol. Magn. Reson. High Resolution, High Frame Rate Video Technology = Nasa Conf P High Resolution, High Frame Rate Video Technology = Nasa. Conf. P. High-resolution If-to-baseband Sigma Delta Adc for Car Radios = Analog Circ Sig Proc High-resolution If-to-baseband Sigma Delta Adc for Car Radios = Analog. Circ. Sig. Proc. High Resolution Infrared Spectroscopy in Astronomy, Proceedings = Eso Astrophy Symp High Resolution Infrared Spectroscopy in Astronomy, Proceedings = Eso. Astrophy. Symp. High Resolution Microbial Single Cell Analytics = Adv Biochem Eng Biot High Resolution Microbial Single Cell Analytics = Adv. Biochem. Eng. Biot. High-resolution Sensors and Hybrid Systems = P Soc Photo-opt Ins High-resolution Sensors and Hybrid Systems = P. Soc. Photo-opt. Ins. High Resolution Separation and Analysis of Biological Macromolecules, Pt A = Method Enzymol High Resolution Separation and Analysis of Biological Macromolecules, Pt A = Method. Enzymol. High Resolution Separation and Analysis of Biological Macromolecules, Pt A = Methods Enzymol High Resolution Separation and Analysis of Biological Macromolecules, Pt A = Methods. Enzymol. High Resolution Separation and Analysis of Biological Macromolecules, Pt B = Method Enzymol High Resolution Separation and Analysis of Biological Macromolecules, Pt B = Method. Enzymol. High Resolution Separation and Analysis of Biological Macromolecules, Pt B = Methods Enzymol High Resolution Separation and Analysis of Biological Macromolecules, Pt B = Methods. Enzymol. High Resolution Solar Physics: Theory, Observations, and Techniques = Astr Soc P High Resolution Solar Physics: Theory, Observations, and Techniques = Astr. Soc. P. High-resolution Sonography of The Peripheral Nervous System, 2nd Edition = Med Radiol Diagn Ima High-resolution Sonography of The Peripheral Nervous System, 2nd Edition = Med. Radiol. Diagn. Ima. High-resolution Wavefront Control: Methods, Devices, and Applications Iii = Proc Spie High-resolution Wavefront Control: Methods, Devices, and Applications Iii = Proc. Spie. High-resolution Wavefront Control: Methods, Devices, and Applications Iii = P Soc Photo-opt Ins High-resolution Wavefront Control: Methods, Devices, and Applications Iii = P. Soc. Photo-opt. Ins. High-resolution Wavefront Control: Methods, Devices, and Applications Ii = P Soc Photo-opt Ins High-resolution Wavefront Control: Methods, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. High-resolution Wavefront Control: Methods, Devices, and Applications Iv = Proc Spie High-resolution Wavefront Control: Methods, Devices, and Applications Iv = Proc. Spie. High-resolution Wavefront Control: Methods, Devices, and Applications Iv = P Soc Photo-opt Ins High-resolution Wavefront Control: Methods, Devices, and Applications Iv = P. Soc. Photo-opt. Ins. High-resolution Wavefront Control: Methods, Devices, and Applications = Proc Spie High-resolution Wavefront Control: Methods, Devices, and Applications = Proc. Spie. High-resolution Wavefront Control: Methods, Devices, and Applications = P Soc Photo-opt Ins High-resolution Wavefront Control: Methods, Devices, and Applications = P. Soc. Photo-opt. Ins. High-resolution X-ray Scattering From Thin Films and Multilayers = Springer Tr Mod Phys High-resolution X-ray Scattering From Thin Films and Multilayers = Springer. Tr. Mod. Phys. High Risk Scenarios and Extremes: A Geometric Approach = Zur Lect Adv Math High Risk Scenarios and Extremes: A Geometric Approach = Zur. Lect. Adv. Math. High School Behavioral Science = High School Beh Sci High School Behavioral Science = High School Beh. Sci. High Solid Dispersions = Adv Polym Sci High Solid Dispersions = Adv. Polym. Sci. High Spectral Density Optical Communication Technologies = Opt Fiber Commun Rep High Spectral Density Optical Communication Technologies = Opt. Fiber. Commun. Rep. High-speed Computing, Digital Signal Processing, and Filtering Using Reconfigurable Logic = P Soc Photo-opt Ins High-speed Computing, Digital Signal Processing, and Filtering Using Reconfigurable Logic = P. Soc. Photo-opt. Ins. High-speed Electronics and Device Scaling = P Soc Photo-opt Ins High-speed Electronics and Device Scaling = P. Soc. Photo-opt. Ins. High-speed Electronics and Optoelectronics = P Soc Photo-opt Ins High-speed Electronics and Optoelectronics = P. Soc. Photo-opt. Ins. High-speed Fiber Networks and Channels Ii = P Soc Photo-opt Ins High-speed Fiber Networks and Channels Ii = P. Soc. Photo-opt. Ins. High-speed Fiber Networks and Channels = P Soc Photo-opt Ins High-speed Fiber Networks and Channels = P. Soc. Photo-opt. Ins. High-speed Imaging and Sequence Analysis Iii = P Soc Photo-opt Ins High-speed Imaging and Sequence Analysis Iii = P. Soc. Photo-opt. Ins. High-speed Imaging and Sequence Analysis Ii = P Soc Photo-opt Ins High-speed Imaging and Sequence Analysis Ii = P. Soc. Photo-opt. Ins. High-speed Imaging and Sequence Analysis = P Soc Photo-opt Ins High-speed Imaging and Sequence Analysis = P. Soc. Photo-opt. Ins. High-speed Inspection Architectures, Barcoding, and Character Recognition = P Soc Photo-opt Ins High-speed Inspection Architectures, Barcoding, and Character Recognition = P. Soc. Photo-opt. Ins. High Speed Machining = Adv Mater Res-switz High Speed Machining = Adv. Mater. Res-switz. High-speed Networking and Multimedia Computing = P Soc Photo-opt Ins High-speed Networking and Multimedia Computing = P. Soc. Photo-opt. Ins. High-speed Networks and Multimedia Communications, Proceedings = Lect Notes Comput Sc High-speed Networks and Multimedia Communications, Proceedings = Lect. Notes. Comput. Sc. High Speed Networks and Multimedia Communications, Proceedings = Lect Notes Comput Sc High Speed Networks and Multimedia Communications, Proceedings = Lect. Notes. Comput. Sc. High Speed Networks and Their Performance = Ifip Trans C High Speed Networks and Their Performance = Ifip. Trans. C. High-speed Optical Receivers With Integrated Photodiode in Nanoscale Cmos = Analog Circ Sig Proc High-speed Optical Receivers With Integrated Photodiode in Nanoscale Cmos = Analog. Circ. Sig. Proc. High-speed Phenomena in Photonic Materials and Optical Bistability = P Soc Photo-opt Ins High-speed Phenomena in Photonic Materials and Optical Bistability = P. Soc. Photo-opt. Ins. High-speed Photonic Devices = Ser Opt Optoelectron High-speed Photonic Devices = Ser. Opt. Optoelectron. High-speed Semiconductor Lasers for Communication = P Soc Photo-opt Ins High-speed Semiconductor Lasers for Communication = P. Soc. Photo-opt. Ins. High-speed Semiconductor Laser Sources = P Soc Photo-opt Ins High-speed Semiconductor Laser Sources = P. Soc. Photo-opt. Ins. High Speed Vcsels for Optical Interconnects = Springer Theses-reco High Speed Vcsels for Optical Interconnects = Springer. Theses-reco. High Stakes Accountability: Implications for Resources and Capacity = Res Educ Fisc Policy High Stakes Accountability: Implications for Resources and Capacity = Res. Educ. Fisc. Policy. High-t(c) Microwave Superconductors and Applications = P Soc Photo-opt Ins High-t(c) Microwave Superconductors and Applications = P. Soc. Photo-opt. Ins. High Tc Superconducting Thin Films : Processing, Characterization, and Applications = Aip Conf Proc High Tc Superconducting Thin Films : Processing, Characterization, and Applications = Aip. Conf. Proc. High-tc Superconductivity 1996: Ten Years After The Discovery = Nato Adv Sci I E-app High-tc Superconductivity 1996: Ten Years After The Discovery = Nato. Adv. Sci. I. E-app. High Tc Superconductivity : Thin Films and Applications = P Soc Photo-opt Ins High Tc Superconductivity : Thin Films and Applications = P. Soc. Photo-opt. Ins. High-tc Superconductors Based On Feas Compounds = Springer Ser Mater S High-tc Superconductors Based On Feas Compounds = Springer. Ser. Mater. S. High-tc Superconductors for Magnet and Energy Technology: Fundamental Aspects = Springer Tr Mod Phys High-tc Superconductors for Magnet and Energy Technology: Fundamental Aspects = Springer. Tr. Mod. Phys. High-tech Fibrous Materials = Acs Sym Ser High-tech Fibrous Materials = Acs. Sym. Ser. High technology (Boston, Mass.) = High Technol (Boston) High technology law journal = High Technol Law J High-tech Tots: Childhood in A Digital World = Res Glob Child Advoc High-tech Tots: Childhood in A Digital World = Res. Glob. Child. Advoc. High-temperature and High-pressure Crystal Chemistry = Rev Mineral Geochem High-temperature and High-pressure Crystal Chemistry = Rev. Mineral. Geochem. High Temperature and Materials Science = High Temp Mat Sci High Temperature and Materials Science = High Temp. Mat. Sci. High Temperature Ceramic Matrix Composites Iii = Key Eng Mat High Temperature Ceramic Matrix Composites Iii = Key. Eng. Mat. High Temperature Ceramic Matrix Composites Iii = Key Eng Mater High Temperature Ceramic Matrix Composites Iii = Key. Eng. Mater. High Temperature Corrosion and Materials Chemistry = Elec Soc S High Temperature Corrosion and Materials Chemistry = Elec. Soc. S. High Temperature Corrosion and Materials Chemistry Iv = Elec Soc S High Temperature Corrosion and Materials Chemistry Iv = Elec. Soc. S. High Temperature Corrosion and Materials Chemistry, Proceedings = Elec Soc S High Temperature Corrosion and Materials Chemistry, Proceedings = Elec. Soc. S. High Temperature Corrosion and Protection of Materials 4, Pts 1 and 2 = Mater Sci Forum High Temperature Corrosion and Protection of Materials 4, Pts 1 and 2 = Mater. Sci. Forum. High Temperature Corrosion and Protection of Materials 5, Pts 1 and 2 = Mater Sci Forum High Temperature Corrosion and Protection of Materials 5, Pts 1 and 2 = Mater. Sci. Forum. High Temperature Corrosion and Protection of Materials 6, Prt 1 and 2, Proceedings = Mater Sci Forum High Temperature Corrosion and Protection of Materials 6, Prt 1 and 2, Proceedings = Mater. Sci. Forum. High Temperature Corrosion and Protection of Materials 7, Pts 1 and 2 = Mater Sci Forum High Temperature Corrosion and Protection of Materials 7, Pts 1 and 2 = Mater. Sci. Forum. High-temperature Cuprate Superconductors: Experiment, Theory, and Applications = Springer Ser Solid-s High-temperature Cuprate Superconductors: Experiment, Theory, and Applications = Springer. Ser. Solid-s. High Temperature Electrochemistry: Ceramics and Metals = Riso Mat Sci High Temperature Electrochemistry: Ceramics and Metals = Riso. Mat. Sci. High Temperature Electrolysis in Large-scale Hydrogen Production = Energ Sci Eng Tech High Temperature Electrolysis in Large-scale Hydrogen Production = Energ. Sci. Eng. Tech. High Temperature = High Temp. High Temperature = High Temp+ High Temperature = High Temp+.+ High-temperature Liquid Chromatography: A User's Guide for Method Development = Rsc Chromatogr Monog High-temperature Liquid Chromatography: A User's Guide for Method Development = Rsc. Chromatogr. Monog. High Temperature Material Processes = High Temp. Mater. Processes (New York) High Temperature Material Processes = High Temp Mater P-us High Temperature Material Processes = High Temp. Mater. P-us. High Temperature Materials and Processes = High Temp Mater Proc High Temperature Materials and Processes = High Temp. Mater. Proc. High Temperature Materials and Processes = High Temp. Mater. Processes (London) High Temperature Materials and Processes = High Temp Mat Pr-isr High Temperature Materials and Processes = High Temp. Mat. Pr-isr. High Temperature Materials and Processes (London, United Kingdom) = High Temp. Mater. Processes (London, U. K.) High Temperature Materials and Processes (Tel Aviv, Israel) = High Temp. Mater. Processes (Tel Aviv, Israel) High Temperature Materials Chemistry, Pts I and Ii, Proceedings = Schr Fz Jul Energ High Temperature Materials Chemistry, Pts I and Ii, Proceedings = Schr. Fz. Jul. Energ. High Temperature Materials, Proceedings = Elec Soc S High Temperature Materials, Proceedings = Elec. Soc. S. High-temperature Measurements of Materials = Adv Mater Res-ger High-temperature Measurements of Materials = Adv. Mater. Res-ger. High-temperature Microwave Superconductors and Applications = P Soc Photo-opt Ins High-temperature Microwave Superconductors and Applications = P. Soc. Photo-opt. Ins. High-temperature Ordered Intermetallic Alloys Iii = Mater Res Soc Symp P High-temperature Ordered Intermetallic Alloys Iii = Mater. Res. Soc. Symp. P. High-temperature Ordered Intermetallic Alloys Iv = Mater Res Soc Symp P High-temperature Ordered Intermetallic Alloys Iv = Mater. Res. Soc. Symp. P. High-temperature Ordered Intermetallic Alloys Vii = Mat Res S C High-temperature Ordered Intermetallic Alloys Vii = Mat. Res. S. C. High-temperature Ordered Intermetallic Alloys Vi, Pts 1 and 2 = Mater Res Soc Symp P High-temperature Ordered Intermetallic Alloys Vi, Pts 1 and 2 = Mater. Res. Soc. Symp. P. High-temperature Ordered Intermetallic Alloys V = Mat Res S C High-temperature Ordered Intermetallic Alloys V = Mat. Res. S. C. High-temperature Oxidation and Corrosion 2005 = Mater Sci Forum High-temperature Oxidation and Corrosion 2005 = Mater. Sci. Forum. High-temperature Properties and Applications of Polymeric Materials = Acs Sym Ser High-temperature Properties and Applications of Polymeric Materials = Acs. Sym. Ser. High Temperature Science = High Temp Sci High Temperature Science = High Temp. Sci. High Temperatures-high Pressures = High Temp-high Press High Temperatures-high Pressures = High Temp-high. Press. High Temperatures - High Pressures = High Temp. - High Pressures High Temperature Silicides and Refractory Alloys = Mater Res Soc Symp P High Temperature Silicides and Refractory Alloys = Mater. Res. Soc. Symp. P. High-temperature Superconducting Detectors: Bolometric and Nonbolometric = P Soc Photo-opt Ins High-temperature Superconducting Detectors: Bolometric and Nonbolometric = P. Soc. Photo-opt. Ins. High Temperature Superconductivity = Aip Conf Proc High Temperature Superconductivity = Aip. Conf. Proc. High Temperature Superconductivity, Proceedings = Molecul Phys Rep High Temperature Superconductivity, Proceedings = Molecul. Phys. Rep. High Temperature Superconductivity = Sussp Proc High Temperature Superconductivity = Sussp. Proc. High-temperature Superconductor Materials, Devices, and Applications = Ceram Trans High-temperature Superconductor Materials, Devices, and Applications = Ceram. Trans. High-temperature Superconductors and Novel Inorganic Materials = Nato Asi 3 High Tech High-temperature Superconductors and Novel Inorganic Materials = Nato. Asi. 3. High. Tech. High-temperature Superconductors : Fundamental Properties and Novel Materials Processing = Mater Res Soc Symp P High-temperature Superconductors : Fundamental Properties and Novel Materials Processing = Mater. Res. Soc. Symp. P. High Temperature Superconductors : Relationships Between Properties, Structure, and Solid-state Chemistry = Mater Res Soc Symp P High Temperature Superconductors : Relationships Between Properties, Structure, and Solid-state Chemistry = Mater. Res. Soc. Symp. P. High-temperature Superconductors = Springer Ser Mater S High-temperature Superconductors = Springer. Ser. Mater. S. High-temperature Superconductors = Woodhead Publ Mater High-temperature Superconductors = Woodhead. Publ. Mater. High-temperature-superconductor Thin Films At Microwave Frequencies = Springer Trac Mod Ph High-temperature-superconductor Thin Films At Microwave Frequencies = Springer. Trac. Mod. Ph. High-temperature-superconductor Thin Films At Microwave Frequencies = Springer Tracts Mod High-temperature-superconductor Thin Films At Microwave Frequencies = Springer. Tracts. Mod. High-temperature-superconductor Thin Films At Microwave Frequencies = Springer Tr Mod Phys High-temperature-superconductor Thin Films At Microwave Frequencies = Springer. Tr. Mod. Phys. High Temperature Technology = High Temp Technol High Temperature Technology = High Temp. Technol. High-throughput Next Generation Sequencing: Methods and Application = Methods Mol Biol High-throughput Next Generation Sequencing: Methods and Application = Methods Mol. Biol. High Throughput Screening: Methods and Protocol, Second Edition = Methods Mol Biol High Throughput Screening: Methods and Protocol, Second Edition = Methods Mol. Biol. High Time Resolution Astrophysics = Astrophys Space Sc L High Time Resolution Astrophysics = Astrophys. Space. Sc. L. Hight Pressure Technology of Nanomaterials = Sol St Phen Hight Pressure Technology of Nanomaterials = Sol. St. Phen. High Value Polymers = Roy Soc Ch High Value Polymers = Roy. Soc. Ch. High Velocity Neutron Stars and Gamma-ray Bursts = Aip Conf Proc High Velocity Neutron Stars and Gamma-ray Bursts = Aip. Conf. Proc. Highway and Facility Design 2003 = Transport Res Rec Highway and Facility Design 2003 = Transport. Res. Rec. Highway and Traffic Safety: Crash Data, Analysis Tools, and Statistical Methods = Transport Res Rec Highway and Traffic Safety: Crash Data, Analysis Tools, and Statistical Methods = Transport. Res. Rec. Highway and Traffic Safety: Engineering, Evaluation, and Enforcement; Trucking and Motorcycles = Transport Res Rec Highway and Traffic Safety: Engineering, Evaluation, and Enforcement; Trucking and Motorcycles = Transport. Res. Rec. Highway and Urban Environment = All Glo Sus Highway and Urban Environment = All. Glo. Sus. Highway and Urban Environment = Alliance Glob Sustai Highway and Urban Environment = Alliance. Glob. Sustai. Highway Capacity and Quality of Service 2005 = Transport Res Rec Highway Capacity and Quality of Service 2005 = Transport. Res. Rec. Highway Capacity and Quality of Service 2006 = Transport Res Rec Highway Capacity and Quality of Service 2006 = Transport. Res. Rec. Highway Capacity Issues 1998 = Transport Res Rec Highway Capacity Issues 1998 = Transport. Res. Rec. Highway Engineer = Highway Eng Highway Engineer = Highway Eng. Highway Facility Design 2004; Including 2004 Thomas B. Deen Distinguished Lecture = Transport Res Rec Highway Facility Design 2004; Including 2004 Thomas B. Deen Distinguished Lecture = Transport. Res. Rec. Highway Facility Design 2006 = Transport Res Rec Highway Facility Design 2006 = Transport. Res. Rec. Highway Facility Design = Transport Res Rec Highway Facility Design = Transport. Res. Rec. Highway Geometric Design Issues = Transport Res Rec Highway Geometric Design Issues = Transport. Res. Rec. Highway & Heavy Construction = Highway Heavy Constr Highway & Heavy Construction = Highway Heavy Constr. Highway Maintencance Safety, Support and Services = Transport Res Rec Highway Maintencance Safety, Support and Services = Transport. Res. Rec. Highway Pavements and Structures Mainenance and Security = Transport Res Rec Highway Pavements and Structures Mainenance and Security = Transport. Res. Rec. Highway Safety Design, Features, and Evaluation = Transport Res Rec Highway Safety Design, Features, and Evaluation = Transport. Res. Rec. Highway Safety: Law Enforcement; Alcohol; Driver Training; Safety Planning and Management; Commercial Vehicles; and Motorcycles = Transport Res Rec Highway Safety: Law Enforcement; Alcohol; Driver Training; Safety Planning and Management; Commercial Vehicles; and Motorcycles = Transport. Res. Rec. Highway Safety Modeling, Analysis, and Design = Transport Res Rec Highway Safety Modeling, Analysis, and Design = Transport. Res. Rec. Highway Safety: Modeling, Analysis, Management, Statistical Methods, and Crash Location = Transport Res Rec Highway Safety: Modeling, Analysis, Management, Statistical Methods, and Crash Location = Transport. Res. Rec. Highway Safety: Older Person; Traffic Law Enforecement; Management and Trucking = Transport Res Rec Highway Safety: Older Person; Traffic Law Enforecement; Management and Trucking = Transport. Res. Rec. Highway Safety, Traffic Law Enforcement, and Truck Safety = Transport Res Rec Highway Safety, Traffic Law Enforcement, and Truck Safety = Transport. Res. Rec. Highway Safety: Work Zones, Law Enforcement, Motorcycles, Trucks, Older Drivers, and Pedestrians = Transport Res Rec Highway Safety: Work Zones, Law Enforcement, Motorcycles, Trucks, Older Drivers, and Pedestrians = Transport. Res. Rec. Highway Traffic Monitoring and Data Quality = Artech Hse Intel Tra Highway Traffic Monitoring and Data Quality = Artech. Hse. Intel. Tra. Higiene = Higiene Higijena; casopis za higijenu, mikrobiologiju, epidemiologiju i sanitarnu tehniku = Hig Cas Hig Mikrobiol Epidemiol Sanit Teh Higijena: Casopis za Higijenu, Mikrobiologiju, Epidemiologiju i Sanitarnu Tehniku = Hig. Cas. Hig. Mikrobiol. Epidemiol. Sanit. Teh. Hiilidioksidin Talteenotto Ja Varastointi = Vtt Res Notes Hiilidioksidin Talteenotto Ja Varastointi = Vtt. Res. Notes. Hilbert-huang Transform Analysis of Hydrological and Environmental Time Series = Water Sci Technol Li Hilbert-huang Transform Analysis of Hydrological and Environmental Time Series = Water. Sci. Technol. Li. Hilbert-huang Transform and Its Applications = Interdiscip Math Hilbert-huang Transform and Its Applications = Interdiscip. Math. Hilbert Spaces of Analytic Functions = Crm Proc & Lect Note Hilbert Spaces of Analytic Functions = Crm. Proc. &. Lect. Note. Hildegard of Bingens Unknown Language: An Edition, Translation, and Discussion = New Middle Ages Hildegard of Bingens Unknown Language: An Edition, Translation, and Discussion = New. Middle. Ages. Hilgardia = Hilgardia Hilger Journal = Hilger J Hilger Journal = Hilger J. Hiljaiset Veneet -yhteenveto Ja Johtopaatokset = Vtt Res Notes Hiljaiset Veneet -yhteenveto Ja Johtopaatokset = Vtt. Res. Notes. Hill-brown Theory of The Moon's Motion: Its Coming-to-be and Short-lived Ascendancy (1877-1984) = Sourc Stud Hist Math Hill-brown Theory of The Moon's Motion: Its Coming-to-be and Short-lived Ascendancy (1877-1984) = Sourc. Stud. Hist. Math. Hillel Steiner and The Anatomy of Justice: Themes and Challenges = Rout Stud Contemp Ph Hillel Steiner and The Anatomy of Justice: Themes and Challenges = Rout. Stud. Contemp. Ph. Hillside Journal of Clinical Psychiatry = Hillside J. Clin. Psychiatry Himalayan Chemical and Pharmaceutical Bulletin = Himalayan Chem. Pharm. Bull. Himalayan Frontiers of India: Historical, Geo-political and Strategic Perspectives = Routl Cont S Asia Se Himalayan Frontiers of India: Historical, Geo-political and Strategic Perspectives = Routl. Cont. S. Asia. Se. Himalayan Geology = Himalayan Geol. Himalayan Geology = Himal Geol Himalayan Geology = Himal. Geol. Himalayan Journal of Environment and Zoology = Himalayan J. Environ. Zool. Himalayan Languages: Past and Present = Trend Lin S Himalayan Languages: Past and Present = Trend. Lin. S. Himalayan Tectonics = Geol Soc Sp Himalayan Tectonics = Geol. Soc. Sp. Hindi Poetry in A Musical Genre: Thumri Lyrics = Roy Asiat Soc Books Hindi Poetry in A Musical Genre: Thumri Lyrics = Roy. Asiat. Soc. Books. Hindsight (Saint Louis, Mo.) = Hindsight Hindu (Madras, India : Daily) = Hindu Hindustan antibiotics bulletin = Hindustan Antibiot Bull Hindustan Antibiotics Bulletin=Hindustan Antibiot Bull;; Hindustan Antibiotics Bulletin = Hindustan Antibiot. Bull. H(infinity) Control and Estimation of State Multiplicative Linear Systems = Lect Notes Contr Inf H(infinity) Control and Estimation of State Multiplicative Linear Systems = Lect. Notes. Contr. Inf. H(infinity) Control and Filtering of Two-dimensional Systems = Lect Notes Contr Inf H(infinity) Control and Filtering of Two-dimensional Systems = Lect. Notes. Contr. Inf. H(infinity) Control for Nonlinear Descriptor Systems = Lect Notes Contr Inf H(infinity) Control for Nonlinear Descriptor Systems = Lect. Notes. Contr. Inf. H-infinity - Control Theory = Lect Notes Math H-infinity - Control Theory = Lect. Notes. Math. Hinterland Dreams: The Political Economy of A Midwestern City = Amer Bus Polit Hinterland Dreams: The Political Economy of A Midwestern City = Amer. Bus. Polit. Hinyokika kiyo. Acta urologica Japonica = Hinyokika Kiyo Hinyokika Kiyo (Acta Urologica Japonica) = Hinyokika Kiyo Hinyokika Kiyo. Acta Urologica Japonica=Hinyokika Kiyo;; Hip = Hip Hip International = Hip Int Hip International = Hip Int. Hipparcos, The New Reduction of The Raw Data = Astrophys Space Sc L Hipparcos, The New Reduction of The Raw Data = Astrophys. Space. Sc. L. Hipparcos Venice '97 = Esa Sp Publ Hipparcos Venice '97 = Esa. Sp. Publ. Hippocampal Microcircuits = Spr Ser Comput Neuro Hippocampal Microcircuits = Spr. Ser. Comput. Neuro. Hippocampus: Anatomy, Functions and Neurobiology = Neuroanat Res Lead Hippocampus: Anatomy, Functions and Neurobiology = Neuroanat. Res. Lead. Hippocampus=Hippocampus;; Hippocampus = Hippocampus Hippocrates = Hippocrates Hippocrates in Context = Stud Anc Med Hippocrates in Context = Stud. Anc. Med. Hippocrates (Sausalito, Calif.) = Hippocrates (Sausalito) Hippokrates (Helsinki, Finland) = Hippokrates (Helsinki) Hippokrates = Hippokrates Hippokratia = Hippokratia Hiroshima Daigaku Shigaku Zasshi (Journal of Hiroshima University Dental Society) = Hiroshima Daigaku Shigaku Zasshi Hiroshima Daigaku shigaku zasshi. The Journal of Hiroshima University Dental Society = Hiroshima Daigaku Shigaku Zasshi Hiroshima Journal of Mathematics Education = Hiroshima J. Math. Ed. Hiroshima journal of medical sciences = Hiroshima J Med Sci Hiroshima Journal of Medical Sciences=Hiroshima J Med Sci;; Hiroshima Journal of Medical Sciences = Hiroshima J Med Sci Hiroshima Journal of Medical Sciences = Hiroshima J. Med. Sci. Hiroshima Mathematical Journal = Hiroshima Math. J. Hiroshima Mathematical Journal = Hiroshima Math J Hiroshima Mathematical Journal = Hiroshima Math. J. Hispalensis Lectures On Nuclear Physics, Vol 2 = Lect Notes Phys Hispalensis Lectures On Nuclear Physics, Vol 2 = Lect. Notes. Phys. Hispalis Medica = Hisp. Med. Hispalis medica; revista sevillana de medicina y cirugia = Hisp Med Hispamerica-revista De Literatura = Hispamerica-rev Lit Hispamerica-revista De Literatura = Hispamerica-rev. Lit. Hispania-a Journal Devoted to The Teaching of Spanish and Portuguese = Hispania-j Dev Inter Hispania-a Journal Devoted to The Teaching of Spanish and Portuguese = Hispania-j. Dev. Inter. Hispania antiqua epigraphica = HispAntEpigr Hispania antiqua: revista de historia antigua = HAnt Hispania antiqua. Revista de historia antigua = HispAnt Hispania epigraphica = HispEpigr Hispania (Madrid, Spain : 1940) = Hispania Hispania-revista Espanola De Historia = Hispania Hispania-revista Espanola De Historia = Hispania. Hispania. Revista española de historia = Hispania Hispania sacra = Hisp Sacra Hispania Sacra = Hisp Sacra Hispania Sacra = Hisp. Sacra Hispanic American Historical Review = Hispanic Am Hist Rev Hispanic American Historical Review = Hispanic Am. Hist. Rev. Hispanic health care international : the official journal of the National Association of Hispanic Nurses = Hisp Health Care Int Hispanic Journal of Behavioral Sciences = Hispanic J Behav Sci Hispanic Journal of Behavioral Sciences = Hispanic J. Behav. Sci. Hispanic journal of behavioral sciences = Hisp J Behav Sci Hispanic Research Journal-iberian and Latin American Studies = Hisp Res J Hispanic Research Journal-iberian and Latin American Studies = Hisp. Res. J. Hispanic Review = Hispanic Rev Hispanic Review = Hispanic Rev. Hispanofila = Hispanofila Histamine in Innflammation = Adv Exp Med Biol Histamine in Innflammation = Adv. Exp. Med. Biol. Histamine Research in The New Millennium = Int Congr Ser Histamine Research in The New Millennium = Int. Congr. Ser. Histo- and Cytochemistry As A Tool in Environmental Toxicology = Prog Histochem Cytoc Histo- and Cytochemistry As A Tool in Environmental Toxicology = Prog. Histochem. Cytoc. Histochemical Journal=Histochem J;; Histochemical Journal = Histochem J Histochemical Journal = Histochem. J. Histochemie = Histochemie Histochemie = Histochemistry Histochemie = Histochemistry. Histochemie. Histochemistry. Histochimie = Histochemie Histochemistry and cell biology = Histochem Cell Biol Histochemistry and Cell Biology=Histochem Cell Biol;; Histochemistry and Cell Biology = Histochem Cell Biol Histochemistry and Cell Biology = Histochem. Cell Biol. Histochemistry = Histochemistry Histochemistry of Glycoconjugates of The Auditory Receptor-functional Implications = Prog Histochem Cytoc Histochemistry of Glycoconjugates of The Auditory Receptor-functional Implications = Prog. Histochem. Cytoc. Histochemistry of Receptors = Prog Histochem Cytoc Histochemistry of Receptors = Prog. Histochem. Cytoc. Histoire de l'art. Bulletin d'information de l'Institut National d'Histoire de l'Art = HistArt Histoire des accidents du travail = Hist Accid Trav Histoire des sciences medicales = Hist Sci Med Histoire des sciences médicales = HSMed Histoire, economie et societe = Hist Econ Soc Histoire, épistémologie, langage = HEL Histoire et nature = Hist Nat Histoire = Histoire Histoire magazine = Hist Mag Histoire & mesure = Hist Mes Histoire Moderne = Hist Modern Histoire Moderne = Hist. Modern. Histoire Notariale = Hist Notar Histoire Notariale = Hist. Notar. Histoire Notariale = Hist Notariale Histoire Notariale = Hist. Notariale Histoire (Paris, France) = Histoire Histoire sociale. Social history = Histoire Soc Histoire Sociale-social History = Hist Soc/soc Hist Histoire Sociale-social History = Hist. Soc/soc. Hist. Histology and histopathology = Histol Histopathol Histology and Histopathology=Histol Histopathol;; Histology and Histopathology = Histol Histopathol Histology and Histopathology = Histol. Histopathol. Histology Protocols = Methods Mol Biol Histology Protocols = Methods. Mol. Biol. Histone Code and Beyond: New Approaches to Cancer Therapy = E Schering Res Fdn W Histone Code and Beyond: New Approaches to Cancer Therapy = E. Schering. Res. Fdn. W. Histopathology=Histopathology;; Histopathology = Histopathology Historama = Historama Historia Agraria = Hist Agrar Historia Agraria = Hist. Agrar. Historia Archaeologica: Festschrift Fur Heiko Steuer Zum 70 Geburtstag = Reallexikon Ger Alte Historia Archaeologica: Festschrift Fur Heiko Steuer Zum 70 Geburtstag = Reallexikon. Ger. Alte. Historia Ciencias Saude-manguinhos = Hist Cienc Saude-man Historia Ciencias Saude-manguinhos = Hist. Cienc. Saude-man. Historia Critica = Hist Crit Historia Critica = Hist. Crit. Historia Critica = Hist Critica Historia Critica = Hist. Critica Historia De Xerez De La Frontera = Suom Tiedeakat Toim Historia De Xerez De La Frontera = Suom. Tiedeakat. Toim. Historia: Empiricism and Erudition in Early Modern Europe = Transformations-stud Historia: Empiricism and Erudition in Early Modern Europe = Transformations-stud. Historiae Musicae Cultores - Biblioteca = Hist Mus C Historiae Musicae Cultores - Biblioteca = Hist. Mus. C. Historia Hermeneutica Series Studia = Hist Hermen Ser Stud Historia Hermeneutica Series Studia = Hist. Hermen. Ser. Stud. Historia = Historia Historia = Historia (Argentina) Historia hospitalium = Hist Hosp Historiallinen aikakauskirja = Hist Aikak Historiallinen Arkisto = Hist Arkist Historiallinen Arkisto = Hist. Arkist. Historiallinen Arkisto = Hist Arkisto Historiallinen Arkisto = Hist. Arkisto Historiallinen arkisto. Suomen Historiallinen Seura = Hist Ark Historia Mathematica = Hist Math Historia Mathematica = Hist. Math. Historia Mathematica = Historia Math. Historia mathematica: international journal of the history of mathematics = HM Historia medicinae veterinariae = Hist Med Vet Historia mexicana = Hist Mex Historia Mexicana = Hist Mexicana Historia Mexicana = Hist. Mexicana Historia nauk biologicznych i medycznych = Hist Nauk Biol Med Historian = Historian Historian (London, England) = Historian Historia-santiago = Hist-santiago Historia-santiago = Hist-santiago. Historia Scientiarum = Historia Sci. (2) Historia scientiarum : international journal of the History of Science Society of Japan = Hist Sci (Tokyo) Historia Unisinos = Hist Unisinos Historia Unisinos = Hist. Unisinos Historia (Wiesbaden, Germany) = Historia Historia Y Comunicacion Social = Hist Comun Soc Historia Y Comunicacion Social = Hist. Comun. Soc. Historia y cultura = Hist Cult Historia Y Politica = Hist Polit Historia Y Politica = Hist. Polit. Historia y sociedad (Rio Piedras, San Juan, P.R.) = Hist Soc Historia y vida = Hist Vida Historia. Zeitschrift für Alte Geschichte = Historia Historia-zeitschrift Fur Alte Geschichte = Historia-z Alte Ges Historia-zeitschrift Fur Alte Geschichte = Historia-z. Alte Ges. Historica. Academia RSR. Centrul de istorie, filologie şi etnografie din Craiova = Historica Historica = Historica Historical Abstracts=Hist. Abstr. Historical and Prehistorical Earthquakes in The Caucasus = Nato Asi 2 Historical and Prehistorical Earthquakes in The Caucasus = Nato. Asi. 2. Historical archaeology = Hist Archaeol Historical Archaeology = Hist Archaeol Historical Archaeology = Hist. Archaeol. Historical Archaeology of Gendered Lives = Contrib Glob Hist Ar Historical Archaeology of Gendered Lives = Contrib. Glob. Hist. Ar. Historical Biology = Hist Biol Historical Biology = Hist. Biol. Historical Changes in Large River Fish Assemblages of The Americas = Am Fish S S Historical Changes in Large River Fish Assemblages of The Americas = Am. Fish S. S. Historical Development of Modern Cosmology = Astr Soc P Historical Development of Modern Cosmology = Astr. Soc. P. Historical Dictionary Databases = Cch Work Pap Historical Dictionary Databases = Cch. Work. Pap. Historical Ecology = Sch Am Res Historical Ecology = Sch. Am. Res. Historical Ecology Series = Hist Ecol Ser Historical Ecology Series = Hist. Ecol. Ser. Historical English Syntax = Top Eng Lit Historical English Syntax = Top. Eng. Lit. Historical Jesus in Context = Princ Read Relig Historical Jesus in Context = Princ. Read. Relig. Historical journal: Auckland-Waikato = Hist J Auckl Waikato Historical journal (Cambridge, England) = Hist J Historical Journal = Hist J Historical Journal = Hist. J. Historical Journal of Film Radio and Television = Hist J Film Radio Tv Historical Journal of Film Radio and Television = Hist. J. Film Radio Tv. Historical journal of Massachusetts = Hist J Mass Historical journal of western Massachusetts = Hist J West Mass Historical Linguistics 1993 = Amst Stud Theory His Historical Linguistics 1993 = Amst. Stud. Theory. His. Historical Linguistics 1995, Vol 2 = Amst Stud Theory His Historical Linguistics 1995, Vol 2 = Amst. Stud. Theory. His. Historical Linguistics 1997 = Amst Stud Theory His Historical Linguistics 1997 = Amst. Stud. Theory. His. Historical Linguistics and Philology = Trend Lin S Historical Linguistics and Philology = Trend. Lin. S. Historical magazine of the Protestant Episcopal Church = Hist Mag Protestant Episcop Church Historical Materialism-research in Critical Marxist Theory = Hist Mater Historical Materialism-research in Critical Marxist Theory = Hist. Mater. Historical Methods = Hist Method Historical Methods = Hist. Method. Historical methods = Hist Methods Historical Methods Newsletter = Hist Meth Newslett Historical Methods Newsletter = Hist. Meth. Newslett. Historical New Hampshire = Hist N H Historical news = Hist News Historical Novel = New Crit Idiom Historical Novel = New. Crit. Idiom. Historical Papers-communications Historiques = Hist Papers Historical Papers-communications Historiques = Hist. Papers. Historical Perspectives: From The Hasmoneans to Bar Kokhba in Light of The Dead Sea Scrolls = Stud Text Des Judah Historical Perspectives: From The Hasmoneans to Bar Kokhba in Light of The Dead Sea Scrolls = Stud. Text. Des. Judah. Historical Perspectives in Industrial and Organizational Psychology = Ser Appl Psychol Historical Perspectives in Industrial and Organizational Psychology = Ser. Appl. Psychol. Historical Perspectives On Erklaren and Verstehen = Archimedes Historical Perspectives On Erklaren and Verstehen = Archimedes. Historical Perspectives On Midsouth Archeology = Ark Archeol Sur Res Historical Perspectives On Midsouth Archeology = Ark. Archeol. Sur. Res. Historical records of Australian science = Hist Rec Aust Sci Historical Records of Australian Science = Hist Rec Aust Sci Historical Records of Australian Science = Hist. Rec. Aust. Sci. Historical reflections. Reflexions historiques = Hist Reflect Historical Reflections-reflexions Historiques = Hist Reflections Historical Reflections-reflexions Historiques = Hist. Reflections. Historical Research = Hist Res Historical Research = Hist. Res. Historical research : the bulletin of the Institute of Historical Research = Hist Res Historical Review-la Revue Historique = Hist Rev-greece Historical Review-la Revue Historique = Hist. Rev-greece. Historical Seismology: Interdisciplinary Studies of Past and Recent Earthquakes = Mod Appr Sol Earth S Historical Seismology: Interdisciplinary Studies of Past and Recent Earthquakes = Mod. Appr. Sol. Earth. S. Historical Social Research-historische Sozialforschung = Hist Soc Res Historical Social Research-historische Sozialforschung = Hist. Soc. Res. Historical Studies = Hist Stud Historical Studies = Hist. Stud. Historical Studies in The Natural Sciences = Hist Stud Nat Sci Historical Studies in The Natural Sciences = Hist. Stud. Nat. Sci. Historical Studies in The Physical and Biological Sciences = Hist Stud Phys Biol Historical Studies in The Physical and Biological Sciences = Hist. Stud. Phys. Biol. Historical studies in the physical and biological sciences : HSPS / Office of History of Science and Technology, University of California, Berkeley = Hist Stud Phys Biol Sci Historical Studies - Ireland = Hist Stud Irl Historical Studies - Ireland = Hist. Stud. Irl. Historical studies (Melbourne, Vic.) = Hist Stud Historicising Beckett / Issues of Performances = Sam Beckett Today Historicising Beckett / Issues of Performances = Sam. Beckett Today. Historicising Beckett / Issues of Performances = Samuel Beckett Today Historicising Beckett / Issues of Performances = Samuel. Beckett Today. Historicka demografie = Hist Demogr Historicky casopis = Hist Casopis Historicky Casopis = Hist Casopis Historicky Casopis = Hist. Casopis Historic Preservation = Hist Preservation Historic Preservation = Hist. Preservation Historic preservation (Washington, D.C.) = Hist Preserv Historie (Arhus, Denmark) = Historie (Arhus) Historielararnas forenings arsskrift = Historiel Foren Arsskr Histories of The Immediate Present: Inventing Architectural Modernism = Writ Archit Ser Histories of The Immediate Present: Inventing Architectural Modernism = Writ. Archit. Ser. Histories of The Normal and The Abnormal: Social and Cultural Histories of Norms and Normativity = Routl Stud Soc Hist Histories of The Normal and The Abnormal: Social and Cultural Histories of Norms and Normativity = Routl. Stud. Soc. Hist. Historiographia Linguistica = Hist Ling Historiographia Linguistica = Hist. Ling. Historiographie De L Antiquite Et Transferts Culturels: Les Histoires Anciennes Dans L Europe Des Xviiie Et Xixe Siecles = Int For Lit Historiographie De L Antiquite Et Transferts Culturels: Les Histoires Anciennes Dans L Europe Des Xviiie Et Xixe Siecles = Int. For. Lit. Historiographie in Der Antike = Beih Z Alttest Wiss Historiographie in Der Antike = Beih. Z. Alttest. Wiss. Historiography and Writing Postcolonial India = Rout Stud S Asia His Historiography and Writing Postcolonial India = Rout. Stud. S. Asia. His. Historiography of Contemporary Science, Technology, and Medicine: Writing Recent Science = Routl St Hist Sci Te Historiography of Contemporary Science, Technology, and Medicine: Writing Recent Science = Routl. St. Hist. Sci. Te. Historisch-demographische Mitteilungen. Communication de demographie historique = Hist Demogr Mitt Historische Anthropologie. Kultur, Gesellschaft, Alltag = HistAnthr Historische Narratologie: Mediavistische Perspektiven = Trend Mediev Philol Historische Narratologie: Mediavistische Perspektiven = Trend. Mediev. Philol. Historische Narratologie: Mediavistische Perspektiven = Trends Mediev Philol Historische Narratologie: Mediavistische Perspektiven = Trends. Mediev. Philol. Historisches Jahrbuch der Stadt Linz = Hist Jahrb Stadt Linz Historisches Jahrbuch = Hist Jahrb Historisches Jahrbuch = Hist. Jahrb. Historisches Jahrbuch = HJ Historische Sprachforschung (Historical Linguistics) = HSF Historische Sprachforschung = HistSprF Historische Zeitschrift = Hist Z Historische Zeitschrift = Hist. Z. Historische Zeitschrift = HZ Historische Zeitschrift = HZ Historiska och litteraturhistoriska studier = Hist Litteraturhist Stud Historisk tidskrift for Finland = Hist Tidskr Finl Historisk tidskrift (Stockholm, Sweden) = Hist Tidskr Historisk Tidsskrift = Hist Tidsskr Historisk Tidsskrift = Hist. Tidsskr. Historisk tidsskrift : udgivet af Den norske historiske forening = Hist Tidsskr History and Change = Studia Historica History and Change = Studia. Historica. History and Ethnicity = Asa Monogr History and Ethnicity = Asa. Monogr. History and Philosophy of Logic = Hist. Philos. Logic History and Philosophy of Logic = Hist Philos Logic History and Philosophy of Logic = Hist. Philos. Logic History and Philosophy of Psychology = Hist Philos Psychol History and Philosophy of Psychology = Hist. Philos. Psychol. History and Philosophy of The Life Sciences = Hist Phil Life Sci History and Philosophy of The Life Sciences = Hist. Phil. Life Sci. History and philosophy of the life sciences = Hist Philos Life Sci History and Philosophy of the Life Sciences = HPLS History and Poetics of Intertextuality = Comp Cult Stud History and Poetics of Intertextuality = Comp. Cult. Stud. History and Society in The Islamic World = Hist Soc Islam World History and Society in The Islamic World = Hist. Soc. Islam. World History and Technology = Hist Technol History and Technology = Hist. Technol. History and theory = Hist Theory History and Theory = Hist Theory History and Theory = Hist. Theory History and Theory: studies in the philosophy of history = H&T History and Violence in Anglo-irish Literature = Costerus Es History and Violence in Anglo-irish Literature = Costerus. Es. History & computing = Hist Comput History & Conservation of Zanzibar Stone Town = E Afr Stud Ser History & Conservation of Zanzibar Stone Town = E. Afr. Stud. Ser. History Has Many Voices = Sixt Century Essays History Has Many Voices = Sixt. Century. Essays. History (Historical Association (Great Britain)) = History (Lond) History = History History in Africa = Hist Afr History in Africa = Hist. Afr. History, Literature and Art in Rome in The 2nd-century-ad = Accad Naz Virg Sci M History, Literature and Art in Rome in The 2nd-century-ad = Accad. Naz. Virg. Sci. M. History of agriculture = Hist Agric History of Analytic Philosophy = Hist Anal Philos History of Analytic Philosophy = Hist. Anal. Philos. History of Anesthesia = Int Congr Ser History of Anesthesia = Int. Congr. Ser. History of anthropology = Hist Anthropol History of Carcinology = Crustacean Iss History of Carcinology = Crustacean. Iss. History of childhood quarterly = Hist Child Q History of Chinese Philosophy = Rout Hist World Phil History of Chinese Philosophy = Rout. Hist. World. Phil. History of Christian-muslim Relations = Hist Christ Muslim History of Christian-muslim Relations = Hist. Christ. Muslim. History of Computing and Education 2 (hce2) = Int Fed Info Proc History of Computing and Education 2 (hce2) = Int. Fed. Info. Proc. History of Computing and Education 3 (hce3) = Int Fed Info Proc History of Computing and Education 3 (hce3) = Int. Fed. Info. Proc. History of Computing = Hist Comp History of Computing = Hist. Comp. History of Computing = Hist Comput-mit Pres History of Computing = Hist. Comput-mit. Pres. History of Computing in Education = Int Fed Info Proc History of Computing in Education = Int. Fed. Info. Proc. History of Computing-springer = Hist Comput-springer History of Computing-springer = Hist. Comput-springer. History of Corporate Governance Around The World = Nber Conf R History of Corporate Governance Around The World = Nber. Conf. R. History of Econometrics in France: From Nature to Models = Routl Stud Hist Econ History of Econometrics in France: From Nature to Models = Routl. Stud. Hist. Econ. History of Economic Ideas=Hist. Econ. Ideas History of Economic Ideas = Hist Econ Ideas History of Economic Ideas = Hist. Econ. Ideas History of Economics Review=Hist. Econ. Rev. History of Education & Childrens Literature = Hist Educ Child Lit History of Education & Childrens Literature = Hist. Educ. Child. Lit. History of education = Hist Educ History of Education = Hist Educ History of Education = Hist. Educ. History of education quarterly = Hist Educ Q History of Education Quarterly = Hist Educ Quart History of Education Quarterly = Hist. Educ. Quart. History of Electrical Engineering = Gesch Elektrotech History of Electrical Engineering = Gesch. Elektrotech. History of English in A Social Context = Trend Lin S History of English in A Social Context = Trend. Lin. S. History of English in A Social Context = Trends Linguist-stud History of English in A Social Context = Trends. Linguist-stud. History of Entrepreneurship = Routl Stud Hist Econ History of Entrepreneurship = Routl. Stud. Hist. Econ. History of European Ideas = Hist Eur Idea History of European Ideas = Hist. Eur. Idea. History of European ideas = Hist Eur Ideas History of Geoconservation = Geol Soc Spec Publ History of Geoconservation = Geol. Soc. Spec. Publ. History of Geomorphology and Quaternary Geology = Geol Soc Spec Publ History of Geomorphology and Quaternary Geology = Geol. Soc. Spec. Publ. History of Havana = Palgrave Essent Hist History of Havana = Palgrave. Essent. Hist. History of Heterodox Economics: Challenging The Mainstream in The Twentieth Century = Routl Adv Heterod Ec History of Heterodox Economics: Challenging The Mainstream in The Twentieth Century = Routl. Adv. Heterod. Ec. History of Islam in German Thought = Routl Stud Cult Hist History of Islam in German Thought = Routl. Stud. Cult. Hist. History of Linguistics 1993 = Amst St Th History of Linguistics 1993 = Amst. St. Th. History of Linguistics 1996, Vol 1 = Amst St Th History of Linguistics 1996, Vol 1 = Amst. St. Th. History of Linguistics 1996, Vol 2 = Amst St Th History of Linguistics 1996, Vol 2 = Amst. St. Th. History of Liquid Rocket Engine Development in The United States 1955-1980 = Aas Hist S History of Liquid Rocket Engine Development in The United States 1955-1980 = Aas. Hist. S. History of Macroeconomic Policy in The United States = Routl Explor Econ Hi History of Macroeconomic Policy in The United States = Routl. Explor. Econ. Hi. History of Mathematics = Hist. Math. History of Mechanism and Machine Science = Hist Mech Mach Sci History of Mechanism and Machine Science = Hist. Mech. Mach. Sci. History of medicine = Hist Med History of medicine (Mobile, Ala.) = Hist Med Univ South Ala Coll Med History of Meteoritics and Key Meteorite Collections: Fireballs, Falls and Finds = Geol Soc Spec Publ History of Meteoritics and Key Meteorite Collections: Fireballs, Falls and Finds = Geol. Soc. Spec. Publ. History of Modern Computing, 2nd Edition = Hist Comput-mit Pres History of Modern Computing, 2nd Edition = Hist. Comput-mit. Pres. History of neuroscience = Hist Neurosci History of Nordic Computing 2 = Ifip Adv Inf Comm Te History of Nordic Computing 2 = Ifip. Adv. Inf. Comm. Te. History of Nordic Computing = Int Fed Info Proc History of Nordic Computing = Int. Fed. Info. Proc. History of nursing bulletin = Hist Nurs Bull History of Nursing Society journal = Hist Nurs Soc J History of Oriental Astronomy = Astrophys Space Sc L History of Oriental Astronomy = Astrophys. Space. Sc. L. History of Original Ideas and Basic Discoveries in Particle Physics = Nato Adv Sci Inst Se History of Original Ideas and Basic Discoveries in Particle Physics = Nato. Adv. Sci. Inst. Se. History of Palaeobotany: Selected Essays = Geol Soc Spec Publ History of Palaeobotany: Selected Essays = Geol. Soc. Spec. Publ. History of Pediatrics 1850-1950 = Nestle Nutr Works Se History of Pediatrics 1850-1950 = Nestle. Nutr. Works. Se. History of Philosophy Quarterly = HPhQ History of Photography = Hist Photogr History of Photography = Hist. Photogr. History of Physical Theories of Comets, From Aristotle to Whipple = Archimedes History of Physical Theories of Comets, From Aristotle to Whipple = Archimedes. History of political economy = Hist Polit Econ History of Political Economy = Hist Polit Econ History of Political Economy = Hist. Polit. Econ. History of Political Economy=Hist. Polit. Economy History of political thought = Hist Polit Thought History of Political Thought = Hist Polit Thought History of Political Thought = Hist. Polit. Thought History of political thought = HPTh History of Psychiatry = Hist Psychiatr History of Psychiatry = Hist. Psychiatr. History of psychiatry = Hist Psychiatry History of psychology = Hist Psychol History of Psychology = Hist Psychol History of Psychology = Hist. Psychol. History of religions = Hist Relig History of Religions = Hist Religions History of Religions = Hist. Religions History of Religions = HR History of Rocketry and Astronautics = Aas Hist S History of Rocketry and Astronautics = Aas. Hist. S. History of Rocketry and Astronautics = Aas Hist Ser History of Rocketry and Astronautics = Aas. Hist. Ser. History of Rotating Machinery Dynamics = Hist Mech Mach Sci History of Rotating Machinery Dynamics = Hist. Mech. Mach. Sci. History of science; an annual review of literature, research and teaching = Hist Sci History of Science and Medicine Library = Hist Sci Med Libr History of Science and Medicine Library = Hist. Sci. Med. Libr. History of Science Fiction = Palgrave Hist Lit History of Science Fiction = Palgrave. Hist. Lit. History of Science, History of Text = Bost Stud Philos Sci History of Science, History of Text = Bost. Stud. Philos. Sci. History of Science = Hist. Sci. History of Science = Hist Sci History of Science = Hist. Sci. History of Science = HS History of Scottish Economic Thought = Routl Hist Econ Thou History of Scottish Economic Thought = Routl. Hist. Econ. Thou. History of Special Education = Adv Spec Educ History of Special Education = Adv. Spec. Educ. History of Technology = HTechn History of Text Technologies = Hist Text Technol History of Text Technologies = Hist. Text Technol. History of The Central Limit Theorem: From Classical to Modern Probability Theory = Sourc Stud Hist Math History of The Central Limit Theorem: From Classical to Modern Probability Theory = Sourc. Stud. Hist. Math. History of The European Space Agency = Esa Sp Publ History of The European Space Agency = Esa. Sp. Publ. History of The European Union: Origins of A Trans- and Supranational Polity 1950-72 = Routl Uaces Contemp History of The European Union: Origins of A Trans- and Supranational Polity 1950-72 = Routl. Uaces. Contemp. History of The Family = Hist Fam History of The Family = Hist. Fam. History of The Gardens of Versailles = Penn Stud Landsc Arc History of The Gardens of Versailles = Penn. Stud. Landsc. Arc. History of The Geometry Curriculum in The United States = Res Math Educ Ser History of The Geometry Curriculum in The United States = Res. Math. Educ. Ser. History of the human sciences = Hist Human Sci History of The Human Sciences = Hist Hum Sci History of The Human Sciences = Hist. Hum. Sci. History of The International Polar Years (ipys) = From Pole Pole History of The International Polar Years (ipys) = From. Pole. Pole. History-reviews of New Books = History-rev New Book History-reviews of New Books = History-rev. New Book. History today = Hist Today History Today = Hist Today History Today = Hist. Today History, Violence, and The Hyperreal = Purdue Stud Roman Li History, Violence, and The Hyperreal = Purdue. Stud. Roman. Li. History workshop = Hist Workshop History Workshop Journal = Hist Workshop History Workshop Journal = Hist. Workshop History Workshop Journal = Hist Workshop J History Workshop Journal = Hist. Workshop J. History workshop journal : HWJ = Hist Workshop J Histria antiqua. Casopis Meunarodnog Istraivakog Centra za Arheologiju. Journal of the International Research Centre for Archeology = HistriaAnt Histria archaeologica = HistriaA Histria. Les résultats des fouilles = Histria Hitotsubashi Journal of Arts & Sciences = Hitotsubashi J. Arts Sci. Hitotsubashi Journal of Commerce and Management=Hitotsubashi J. Com. Manage. Hitotsubashi Journal of Economics=Hitotsubashi J. Econ. Hitotsubashi Journal of Economics = Hitotsub J Econ Hitotsubashi Journal of Economics = Hitotsub. J. Econ. Hitotsubashi journal of law & politics = Hitotsubashi J Law Polit Hitotsubashi Journal of Social Studies = Hitotsub J Soc Stud Hitotsubashi Journal of Social Studies = Hitotsub. J. Soc. Stud. Hiv/aids and Prisons = Aic Conf P Hiv/aids and Prisons = Aic. Conf. P. Hiv, Aids, and The Brain = Res P Arnmd Hiv, Aids, and The Brain = Res. P. Arnmd. Hiv Aids-medical Social and Psychological Aspects = Hiv Aids-med Soc Psy Hiv Aids-medical Social and Psychological Aspects = Hiv Aids-med. Soc. Psy. HIV/AIDS policy & law review / Canadian HIV/AIDS Legal Network = HIV AIDS Policy Law Rev Hiv and Dementia = Curr Top Microbiol Hiv and Dementia = Curr. Top. Microbiol. Hiv-associated Cardiovascular Disease: Clinical and Biological Insights = Ann Ny Acad Sci Hiv-associated Cardiovascular Disease: Clinical and Biological Insights = Ann. Ny. Acad. Sci. HIV capsule report = HIV Capsule Rep Hiv Clinical Trials = Hiv Clin Trials Hiv Clinical Trials = Hiv Clin. Trials HIV clinical trials = HIV Clin Trials HIV Clinical Trials = HIV Clin. Trials HIV clinician / Delta Region AIDS Education & Training Center = HIV Clin HIV hotline = HIV Hotline Hiv Infection and The Cardiovascular System = Adv Cardiol Hiv Infection and The Cardiovascular System = Adv. Cardiol. HIV inside : a newsletter for correctional professionals = HIV Inside Hiv Interactions With Host Cell Proteins = Curr Top Microbiol Hiv Interactions With Host Cell Proteins = Curr. Top. Microbiol. Hiv Medicine = Hiv Med Hiv Medicine = Hiv Med. HIV medicine = HIV Med HIV Medicine = HIV Med. HIV prevention plus! = HIV Prev Plus Hiv, Resurgent Infections and Population Change in Africa = Int Stud Popul Hiv, Resurgent Infections and Population Change in Africa = Int. Stud. Popul. Hla and Disease - The Molecular Basis = Alfred Benzon Symp S Hla and Disease - The Molecular Basis = Alfred. Benzon. Symp. S. Hldvt'05: Tenth Annual Ieee International High-level Design Validation and Test Workshop, Proceedings = Int High Level Desig Hldvt'05: Tenth Annual Ieee International High-level Design Validation and Test Workshop, Proceedings = Int. High. Level. Desig. Hldvt'06: Eleventh Annual Ieee International High-level Design Validation and Test Workshop, Proceedings = Int High Level Desig Hldvt'06: Eleventh Annual Ieee International High-level Design Validation and Test Workshop, Proceedings = Int. High. Level. Desig. Hldvt: 2008 Ieee International High Level Design Validation and Test Workshop, Proceedings = Int High Level Desig Hldvt: 2008 Ieee International High Level Design Validation and Test Workshop, Proceedings = Int. High Level Desig. H. Mattingly – E. A. Sydenham, The Roman Imperial Coinage = RIC H. Mattingly (u. a.), Coins of the Roman Empire in the British Museum (London 1923--1950 = BMCRE HMO = HMO HMO practice / HMO Group = HMO Pract HMO Practice = HMO Pract. Hno = Hno HNO=HNO;; HNO = HNO Hno-wegweiser Fur Die Facharztliche Praxis = Hno-wegw Facharzt Pr Hno-wegweiser Fur Die Facharztliche Praxis = Hno-wegw. Facharzt. Pr. Hochspannungstechnik = Vdi-buch Hochspannungstechnik = Vdi-buch. Hodgkin Lymphoma: A Comprehensive Update On Diagnostics and Clinics = Hematol Malig Hodgkin Lymphoma: A Comprehensive Update On Diagnostics and Clinics = Hematol. Malig. Hofmannsthals Sprachgeschichte: Linguistisch-literarische Studien Zur Lyrischen Stimme = Reihe Ger Linguist Hofmannsthals Sprachgeschichte: Linguistisch-literarische Studien Zur Lyrischen Stimme = Reihe. Ger. Linguist. Hofstra law review = Hofstra Law Rev Hohenheimer Volkswirtschaftliche Schriften = Hohenh. Volkswirtsch. Schr. Hohensiedlungen Zwischen Antike Und Mittelalter Von Den Ardennen Bis Zur Adria = Reallex German Alter Hohensiedlungen Zwischen Antike Und Mittelalter Von Den Ardennen Bis Zur Adria = Reallex. German. Alter. Hohensiedlungen Zwischen Antike Und Mittelalter Von Den Ardennen Bis Zur Adria = Reallexikon Ger Alte Hohensiedlungen Zwischen Antike Und Mittelalter Von Den Ardennen Bis Zur Adria = Reallexikon. Ger. Alte. Hoist and Haul 2005 = Australas I Min Met Hoist and Haul 2005 = Australas. I. Min. Met. Hoitotiede = Hoitotiede Hoja tisiologica = Hoja Tisiol Hoja Tisiologica = Hoja Tisiol. Hokenfu Zasshi (Japanese Journal for Public Health Nurse) = Hokenfu Zasshi [Hokenfu zasshi] The Japanese journal for public health nurse = Hokenfu Zasshi Hokkaido Igaku Zasshi (Hokkaido Journal of Medical Science) = Hokkaido Igaku Zasshi Hokkaido Igaku Zasshi. Hokkaido Journal of Medical Science=Hokkaido Igaku Zasshi;; [Hokkaido igaku zasshi] The Hokkaido journal of medical science = Hokkaido Igaku Zasshi Hokkaido Mathematical Journal = Hokkaido Math. J. Hokkaido Mathematical Journal = Hokkaido Math J Hokkaido Mathematical Journal = Hokkaido Math. J. Hokkaido Shika Ishikai shi = Hokkaido Shika Ishikai Shi Hokkaido Shika Ishikai Shi = Hokkaido Shika Ishikai Shi Holarctic Ecology = Holarct. Ecol. Holarctic Ecology = Holarctic Ecol Holarctic Ecology = Holarctic Ecol. Holdsworth law review / University of Birmingham = Holdsworth Law Rev Holistic Approach to Water Quality Management = Stockholm Water Symp Holistic Approach to Water Quality Management = Stockholm. Water Symp. Holistic Assertive Nurse = Holistic Assertive Nurse Holistic nursing practice = Holist Nurs Pract Holistic Nursing Practice = Holist Nurs Pract Holistic Nursing Practice = Holist. Nurs. Pract. Hollow and Solid Spheres and Microspheres: Science and Technology Associated With Their Fabrication and Application = Mater Res Soc Symp P Hollow and Solid Spheres and Microspheres: Science and Technology Associated With Their Fabrication and Application = Mater. Res. Soc. Symp. P. Hollywood and The Cia: Cinema, Defense, and Subversion = Media War Secur Hollywood and The Cia: Cinema, Defense, and Subversion = Media. War. Secur. Holocaust and Church Struggle = Stud Shoah Holocaust and Church Struggle = Stud. Shoah. Holocaust and Genocide Studies = Holocaust Genocide S Holocaust and Genocide Studies = Holocaust Genocide S. Holocaust and genocide studies = Holocaust Genocide Stud Holocaust and Its Contexts = Holocaust Contexts Holocaust Forty Years Later = Symposium S Holocaust Forty Years Later = Symposium. S. Holocene = Holocene Holocene Landscape Development and Geoarchaeological Research = Z Geomorphol Supp Holocene Landscape Development and Geoarchaeological Research = Z. Geomorphol. Supp. Holocene, The = Holocene Holographic and Diffractive Techniques = P Soc Photo-opt Ins Holographic and Diffractive Techniques = P. Soc. Photo-opt. Ins. Holographic Anthropic Multiverse: Formalizing The Complex Geometry of Reality = Ser Knots Everything Holographic Anthropic Multiverse: Formalizing The Complex Geometry of Reality = Ser. Knots. Everything. Holographic Displays and Optical Elements Ii = P Soc Photo-opt Ins Holographic Displays and Optical Elements Ii = P. Soc. Photo-opt. Ins. Holographic Imaging and Materials = P Soc Photo-opt Ins Holographic Imaging and Materials = P. Soc. Photo-opt. Ins. Holographic Materials Ii = P Soc Photo-opt Ins Holographic Materials Ii = P. Soc. Photo-opt. Ins. Holographic Materials Iv = P Soc Photo-opt Ins Holographic Materials Iv = P. Soc. Photo-opt. Ins. Holographic Materials = P Soc Photo-opt Ins Holographic Materials = P. Soc. Photo-opt. Ins. Holographic Materials V = P Soc Photo-opt Ins Holographic Materials V = P. Soc. Photo-opt. Ins. Holographic Optical Elements and Displays = P Soc Photo-opt Ins Holographic Optical Elements and Displays = P. Soc. Photo-opt. Ins. Holographic Optical Security Systems = P Soc Photo-opt Ins Holographic Optical Security Systems = P. Soc. Photo-opt. Ins. Holographic Optics Ii : Principles and Applications = P Soc Photo-opt Ins Holographic Optics Ii : Principles and Applications = P. Soc. Photo-opt. Ins. Holographics International 92 = P Soc Photo-opt Ins Holographics International 92 = P. Soc. Photo-opt. Ins. Holography 2000 = P Soc Photo-opt Ins Holography 2000 = P. Soc. Photo-opt. Ins. Holography 2005: International Conference On Holography, Optical Recording, and Processing of Information = Proc Spie Holography 2005: International Conference On Holography, Optical Recording, and Processing of Information = Proc. Spie. Holography 2005: International Conference On Holography, Optical Recording, and Processing of Information = P Soc Photo-opt Ins Holography 2005: International Conference On Holography, Optical Recording, and Processing of Information = P. Soc. Photo-opt. Ins. Holography: Advances and Modern Trends Ii = Proc Spie Holography: Advances and Modern Trends Ii = Proc. Spie. Holography and Diffractive Optics Iii = P Soc Photo-opt Ins Holography and Diffractive Optics Iii = P. Soc. Photo-opt. Ins. Holography and Optical Information Processing = P Soc Photo-opt Ins Holography and Optical Information Processing = P. Soc. Photo-opt. Ins. Holography: A Tribute to Yuri Denisyuk and Emmett Leith = P Soc Photo-opt Ins Holography: A Tribute to Yuri Denisyuk and Emmett Leith = P. Soc. Photo-opt. Ins. Holography, Diffractive Optics, and Applications Ii, Pts 1 and 2 = P Soc Photo-opt Ins Holography, Diffractive Optics, and Applications Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Holography, Diffractive Optics, and Applications Iv = P Soc Photo-opt Ins Holography, Diffractive Optics, and Applications Iv = P. Soc. Photo-opt. Ins. Holography, Diffractive Optics, and Applications = P Soc Photo-opt Ins Holography, Diffractive Optics, and Applications = P. Soc. Photo-opt. Ins. Holomorphic Curves in Symplectic Geometry = Prog Math Holomorphic Curves in Symplectic Geometry = Prog. Math. Holomorphic Dynamical Systems = Lect Notes Math Holomorphic Dynamical Systems = Lect. Notes. Math. Holomorphic Dynamics and Renormalization: = Fields I Commun Holomorphic Dynamics and Renormalization: = Fields. I. Commun. Holomorphic Dynamics and Renormalization: = Fields Inst Commun Holomorphic Dynamics and Renormalization: = Fields. Inst. Commun. Holomorphic Function Theory in Several Variables: An Introduction = Universitext Holomorphic Function Theory in Several Variables: An Introduction = Universitext. Holomorphic Operator Functions of One Variable and Applications: Methods From Complex Analysis in Several Variables = Oper Theory Adv Appl Holomorphic Operator Functions of One Variable and Applications: Methods From Complex Analysis in Several Variables = Oper. Theory. Adv. Appl. Holomorphic Q Classes = Lect Notes Math Holomorphic Q Classes = Lect. Notes. Math. Holonic and Multi-agent Systems for Manufacturing = Lect Notes Artif Int Holonic and Multi-agent Systems for Manufacturing = Lect. Notes. Artif. Int. Holonic and Multi-agent Systems for Manufacturing, Proceedings = Lect Notes Artif Int Holonic and Multi-agent Systems for Manufacturing, Proceedings = Lect. Notes. Artif. Int. Holonic and Multi-agent Systems for Manufacturing, Proceedings = Lect Notes Comput Sc Holonic and Multi-agent Systems for Manufacturing, Proceedings = Lect. Notes. Comput. Sc. Holonic Execution : A Bdi Approach = Stud Comput Intell Holonic Execution : A Bdi Approach = Stud. Comput. Intell. Holy Ground: Theoretical Issues Relating to The Landscape and Material Culture of Ritual Space = Brit Archaeol Rep In Holy Ground: Theoretical Issues Relating to The Landscape and Material Culture of Ritual Space = Brit. Archaeol. Rep. In. Holy, Holy, Holy: The Story of A Liturgical Formula = Jul Wellhausen Vorle Holy, Holy, Holy: The Story of A Liturgical Formula = Jul. Wellhausen. Vorle. Holy Land, Holy Lands, and Christian History = St Ch His S Holy Land, Holy Lands, and Christian History = St. Ch. His. S. Holy Land in History and Thought = Pub Eric S Holy Land in History and Thought = Pub. Eric. S. Holy Spirit, The Church, and Christain Unity = Bib Eph The Holy Spirit, The Church, and Christain Unity = Bib. Eph. The Holy Texts: Authority and Language = Yearb Eur Soc Wom Th Holy Texts: Authority and Language = Yearb. Eur. Soc. Wom. Th. Holy Wars: The Religious Ideology of Chivalry = Middle Ages Ser Holy Wars: The Religious Ideology of Chivalry = Middle. Ages. Ser. Holz als Roh und Werkstoff = Holz Roh Werkst. Holz als Roh- und Werkstoff = Holz Roh- Werkst. Holz Als Roh-und Werkstoff = Holz Roh Werkst Holz Als Roh-und Werkstoff = Holz Roh. Werkst. Holzenergie-Bulletin = Holzenerg.-Bull. Holzforschung = Holzforschung Holzforschung Schweiz = Holzforsch. Schweiz Holzforschung Und Holzverwertung = Holzforsch Holzverw Holzforschung Und Holzverwertung = Holzforsch. Holzverw. Holzforschung und Holzverwertung = Holzforsch. Holzverwert. Holz-Kurier = Holz-Kur. Holzpreisstatistik – Rohholz = Holzpreisstat. – Rohholz Holz, Schweizerische Holzzeitung = Holz, Schweiz. Holzztg. Holz-Zentralblatt = Holz-Zent.bl. Holzzucht, Die = Holzzucht Home-based Long-term Care = Who Tech Rep Ser Home-based Long-term Care = Who. Tech. Rep. Ser. Home care economics = Home Care Econ Home Care Economics = Home Care Econ. Home Care Enteral Feeding = Nes Nutr Ws Home Care Enteral Feeding = Nes. Nutr. Ws. Home care manager = Home Care Manag Home care provider = Home Care Provid Home Care Provider = Home Care Provid. Home Computer Magazine = Home Comput Mag Home Computer Magazine = Home Comput. Mag. Home Cultures = Home Cult Home Cultures = Home Cult. Home healthcare nurse = Home Healthc Nurse Home Healthcare Nurse = Home Healthc. Nurse Home healthcare nurse manager = Home Healthc Nurse Manag Home health care services quarterly = Home Health Care Serv Q Home Health Care Services Quarterly = Home Health Care Serv. Q. Home health journal = Home Health J Home Health Journal = Home Health J. Home health review = Home Health Rev Home Health Review = Home Health Rev. Home Informatics and Telematics: Ict for The Next Billion = Int Fed Info Proc Home Informatics and Telematics: Ict for The Next Billion = Int. Fed. Info. Proc. Home = Key Ideas Geogr Home = Key. Ideas. Geogr. Homeland Security Handbook = Public Adm Public Po Homeland Security Handbook = Public. Adm. Public. Po. Homeland Security in The Uk: Future Preparedness for Terrorist Attack Since 9/11 = Cass Ser Polit Viole Homeland Security in The Uk: Future Preparedness for Terrorist Attack Since 9/11 = Cass. Ser. Polit. Viole. Homemaker's magazine = Homemak Mag Homeopathy = Homeopathy Homeopathy : the journal of the Faculty of Homeopathy = Homeopathy Home-oriented Informatics and Telematics, Proceedings = Int Fed Info Proc Home-oriented Informatics and Telematics, Proceedings = Int. Fed. Info. Proc. Homeostasis in Health and Disease = Homeostasis Hlth Dis Homeostasis in Health and Disease = Homeostasis Hlth. Dis. Homeostasis in Health and Disease = Homeost. Health Dis. Homeostasis in health and disease : international journal devoted to integrative brain functions and homeostatic systems = Homeost Health Dis Homeostatic Role of The Parasympathetic Nervous System in Human Behavior = Neurosci Res Prog Se Homeostatic Role of The Parasympathetic Nervous System in Human Behavior = Neurosci. Res. Prog. Se. Homeowners, Communities, and Wildfire: Science Findings From The National Fire Plan = Us For Serv T R Nc Homeowners, Communities, and Wildfire: Science Findings From The National Fire Plan = Us. For. Serv. T. R. Nc. Home Ownership Beyond Asset and Security: Perceptions of Housing Related Security and Insecurity in Eight European Countries = Hous Urban Policy St Home Ownership Beyond Asset and Security: Perceptions of Housing Related Security and Insecurity in Eight European Countries = Hous. Urban. Policy. St. Home Ownership: Getting In, Fetting From, Getting Out, Pt Ii = Hous Urban Policy St Home Ownership: Getting In, Fetting From, Getting Out, Pt Ii = Hous. Urban. Policy. St. Home Ownership: Getting In, Getting From, Getting Out = Hous Urban Policy St Home Ownership: Getting In, Getting From, Getting Out = Hous. Urban. Policy. St. Home Ownership: Getting In, Getting From, Getting Out = Hous Urb Policy Stud Home Ownership: Getting In, Getting From, Getting Out = Hous. Urb. Policy. Stud. Homers Ilias: Gesamtkommentar (basler Kommentar/ Bk), Band Iv: Sechster Gesang (z), Faszikel 2: Kommentar = Samml Wiss Comment Homers Ilias: Gesamtkommentar (basler Kommentar/ Bk), Band Iv: Sechster Gesang (z), Faszikel 2: Kommentar = Samml. Wiss. Comment. Homes in Peril: A Study of Foreclosure Issues = Hous Iss Laws Progr Homes in Peril: A Study of Foreclosure Issues = Hous. Iss. Laws. Progr. Homicide : Patterns, Prevention and Control = Aic Conf P Homicide : Patterns, Prevention and Control = Aic. Conf. P. Homicide Studies = Homicide Stud Homicide Studies = Homicide Stud. Homicide: Trends, Causes and Prevention = Crim Justice Law Enf Homicide: Trends, Causes and Prevention = Crim. Justice. Law. Enf. Hominin Environments in The East African Pliocene: An Assessment of The Faunal Evidence = Vertebr Paleobiol Pa Hominin Environments in The East African Pliocene: An Assessment of The Faunal Evidence = Vertebr. Paleobiol. Pa. Homme Et La Societe = Homme Soc Homme Et La Societe = Homme Soc. Homme = Homme Hommes et terres du Nord = Hommes Terres Nord Hommes & migrations = Hommes Migr Homocysteine Metabolism: From Basic Science to Clinical Medicine = Dev Cardiovasc Med Homocysteine Metabolism: From Basic Science to Clinical Medicine = Dev. Cardiovasc. Med. Homogeneous Polynomial Forms for Robustness Analysis of Uncertain Systems = Lect Notes Contr Inf Homogeneous Polynomial Forms for Robustness Analysis of Uncertain Systems = Lect. Notes. Contr. Inf. Homogeneous Spaces and Equivariant Embeddings = Encycl Math Sci Homogeneous Spaces and Equivariant Embeddings = Encycl. Math. Sci. Homogeneous Transition Metal Catalyzed Reactions = Adv Chem Ser Homogeneous Transition Metal Catalyzed Reactions = Adv. Chem. Ser. Homo = Homo Homo : internationale Zeitschrift fur die vergleichende Forschung am Menschen = Homo Homo-journal of Comparative Human Biology = Homo Homo-journal of Comparative Human Biology = Homo. Homological Algebra of Semimodules and Semicontramodules = Monogr Mat Homological Algebra of Semimodules and Semicontramodules = Monogr. Mat. Homological Mirror Symmetry: New Developments and Perspectives = Lect Notes Phys Homological Mirror Symmetry: New Developments and Perspectives = Lect. Notes. Phys. Homology Effects = Adv Genet Homology Effects = Adv. Genet. Homology Homotopy and Applications = Homol Homotopy Appl Homology Homotopy and Applications = Homol. Homotopy Appl. Homo Novus - A Human Without Illusions = Front Collect Homo Novus - A Human Without Illusions = Front. Collect. Homo Oeconomicus: The Economic Model of Behaviour and Its Applications in Economics and Other Social Sciences = Eur Herit Econ Soc S Homo Oeconomicus: The Economic Model of Behaviour and Its Applications in Economics and Other Social Sciences = Eur. Herit. Econ. Soc. S. Homophobia and The Judeo Christian Tradition = Gay Men I R Homophobia and The Judeo Christian Tradition = Gay. Men. I. R. Homosexuality and Manliness in Postwar Japan = Routl Contemp Jpn Se Homosexuality and Manliness in Postwar Japan = Routl. Contemp. Jpn. Se. Homosexuality / Heterosexuality = Kinsey Inst Homosexuality / Heterosexuality = Kinsey. Inst. Homosexuality in The Life and Work of Joseph Conrad: Love Between The Lines = Stud Major Lit Autho Homosexuality in The Life and Work of Joseph Conrad: Love Between The Lines = Stud. Major. Lit. Autho. Homotopy of Extremal Problems = Degruyter Ser Nonlin Homotopy of Extremal Problems = Degruyter. Ser. Nonlin. Homotopy Quantum Field Theory = Ems Tracts Math Homotopy Quantum Field Theory = Ems. Tracts. Math. Homotopy Theory and Related Topics = Lect Notes Math Homotopy Theory and Related Topics = Lect. Notes. Math. Homotopy Theory of C(asterisk)-algebras = Front Math Homotopy Theory of C(asterisk)-algebras = Front. Math. Homotopy Theory of Function Spaces and Related Topics = Contemp Math Homotopy Theory of Function Spaces and Related Topics = Contemp. Math. Honam Mathematical Journal = Honam Math. J. Honam Mathematical Society = Bull. Honam Math. Soc. Hong Kong: Becoming A Chinese Global City = Asias Transform Hong Kong: Becoming A Chinese Global City = Asias. Transform. Hong Kong, China = Routl Contemp China Hong Kong, China = Routl. Contemp. China Hong Kong Economic Papers=Hong Kong Econ. Pap. Hong Kong Film, Hollywood and New Global Cinema: No Film Is An Island = Routl Media Cult Soc Hong Kong Film, Hollywood and New Global Cinema: No Film Is An Island = Routl. Media. Cult. Soc. Hong Kong Journal of Dermatology & Venereology = Hong Kong J Dermatol Hong Kong Journal of Dermatology & Venereology = Hong Kong J. Dermatol. Hong Kong Journal of Emergency Medicine = Hong Kong J Emerg Me Hong Kong Journal of Emergency Medicine = Hong Kong J. Emerg. Me. Hong Kong Journal of Occupational Therapy = Hong Kong J Occup Th Hong Kong Journal of Occupational Therapy = Hong Kong J. Occup. Th. Hong Kong Journal of Paediatrics = Hong Kong J Paediatr Hong Kong Journal of Paediatrics = Hong Kong J. Paediatr. Hong Kong law journal = Hong Kong Law J Hong Kong Law Journal = Hong Kong Law J Hong Kong Law Journal = Hong Kong Law J. Hong Kong monthly digest of statistics = Hong Kong Mon Dig Stat Honore Fabri and The Concept of Impetus: A Bridge Between Conceptual Frameworks = Bost Stud Philos Sci Honore Fabri and The Concept of Impetus: A Bridge Between Conceptual Frameworks = Bost. Stud. Philos. Sci. Honoring Our Elders = Contrib Circumpol An Honoring Our Elders = Contrib. Circumpol. An. Honvedorvos = Honvedorvos Hooked: Drug War Films in Britain, Canada, and The U.s. = Routl Adv Criminol Hooked: Drug War Films in Britain, Canada, and The U.s. = Routl. Adv. Criminol. Hoop Dreams On Wheels: Disability and The Competitive Wheelchair Athlete = Contemp Sociol Persp Hoop Dreams On Wheels: Disability and The Competitive Wheelchair Athlete = Contemp. Sociol. Persp. Hoover Institution Publication = Hoover Inst Hoover Institution Publication = Hoover Inst. Hoover National Security Forum Series = Hoover Natl Secur Fo Hoover National Security Forum Series = Hoover Natl. Secur. Fo. Hopf Algebras and Generalizations = Contemp Math Hopf Algebras and Generalizations = Contemp. Math. Hopf Algebras and Quantum Groups, Proceedings = Lect Notes Pure Appl Hopf Algebras and Quantum Groups, Proceedings = Lect. Notes. Pure. Appl. Hopf Algebras in Noncommutative Geometry and Physics = Mg Txb Pur Appl Math Hopf Algebras in Noncommutative Geometry and Physics = Mg. Txb. Pur. Appl. Math. Hopkins Quarterly = Hopkins Quart Hopkins Quarterly = Hopkins Quart. Hopper and Silo Discharge: Successful Solutions = Imeche Sem Hopper and Silo Discharge: Successful Solutions = Imeche. Sem. Hoppe-Seyler's Zeitschrift fur physiologische Chemie = Hoppe Seylers Z Physiol Chem Hoppe-Seyler's Zeitschrift fur Physiologische Chemie = Hoppe-Seyler's Z. Physiol. Chem. Hoppe-Seylers Zeitschrift fur Physiologische Chemie = Hoppe. Seylers Z. Physiol. Chem. Hoppe-Seyler's Zeitschrift für Physiologische Chemie = Hoppe-Seyler's Z. Physiol. Chem. Hoppe-seylers Zeitschrift Fur Physiologische Chemie = H-s Z Physiol Chem Hoppe-seylers Zeitschrift Fur Physiologische Chemie = H-s. Z. Physiol. Chem. Hopping and Related Phenomena = Adv Disord Hopping and Related Phenomena = Adv. Disord. Horizon : a magazine of the arts = Horizon Horizon = Horizon Horizons 2000 - Aspects of Colloid and Interface Science At The Turn of The Millenium = Prog Coll Pol Sci S Horizons 2000 - Aspects of Colloid and Interface Science At The Turn of The Millenium = Prog. Coll. Pol. Sci. S. Horizons = Horizons Horizons in biochemistry and biophysics = Horiz Biochem Biophys Horizons in Biochemistry and Biophysics = Horiz. Biochem. Biophys. Horizons in Cancer Research = Horiz Cancer Res Horizons in Cancer Research = Horiz. Cancer Res. Horizons in Cancer Research, Vol 41 = Horiz Cancer Res Horizons in Cancer Research, Vol 41 = Horiz. Cancer Res. Horizons in Dna Research = Horiz Dna Res Horizons in Dna Research = Horiz. Dna Res. Horizons in Dna Research, Vol 1 = Horiz Dna Res Horizons in Dna Research, Vol 1 = Horiz. Dna Res. Horizons in Earth Science Research = Horiz Earth Sci Res Horizons in Earth Science Research = Horiz. Earth Sci. Res. Horizons in Earth Science Research, Vol 1 = Horiz Earth Sci Res Horizons in Earth Science Research, Vol 1 = Horiz. Earth Sci. Res. Horizons in Earth Science Research, Vol 2 = Horiz Earth Sci Res Horizons in Earth Science Research, Vol 2 = Horiz. Earth Sci. Res. Horizons in Membrane Biotechnology = Prog Clin Biol Res Horizons in Membrane Biotechnology = Prog. Clin. Biol. Res. Horizons in Neuroscience Research = Horiz Neurosci Res Horizons in Neuroscience Research = Horiz. Neurosci. Res. Horizons in Neuroscience Research, Vol 1 = Horiz Neurosci Res Horizons in Neuroscience Research, Vol 1 = Horiz. Neurosci. Res. Horizons in Neuroscience Research, Vol 2 = Horiz Neurosci Res Horizons in Neuroscience Research, Vol 2 = Horiz. Neurosci. Res. Horizons in World Cardiovascular Research = Horiz World Cardiova Horizons in World Cardiovascular Research = Horiz. World Cardiova. Horizons in World Cardiovascular Research, Vol 1 = Horiz World Cardiova Horizons in World Cardiovascular Research, Vol 1 = Horiz. World Cardiova. Horizons in World Cardiovascular Research, Vol 2 = Horiz World Cardiova Horizons in World Cardiovascular Research, Vol 2 = Horiz. World Cardiova. Horizons in World Physics = Horiz In World Phys Horizons in World Physics = Horiz. In. World Phys. Horizons in World Physics Series = Horiz World Phys Ser Horizons in World Physics Series = Horiz. World Phys. Ser. Horizons in World Physics, Vol 268 = Horiz World Phys Ser Horizons in World Physics, Vol 268 = Horiz. World Phys. Ser. Horizons medicaux = Horiz Med Horizons of Combinatorics = Bolyai Soc Math Stud Horizons of Combinatorics = Bolyai. Soc. Math. Stud. Hormonal Carcinogenesis V = Adv Exp Med Biol Hormonal Carcinogenesis V = Adv. Exp. Med. Biol. Hormonal Communicating Events in The Testis = Serono Sym Hormonal Communicating Events in The Testis = Serono. Sym. Hormonal Control of Cell Cycle = Res Perspect End Int Hormonal Control of Cell Cycle = Res. Perspect. End. Int. Hormonal Regulation of Growth = Serono Sym Hormonal Regulation of Growth = Serono. Sym. Hormonal Restructuring of The Adult Brain = Ann Ny Acad Sci Hormonal Restructuring of The Adult Brain = Ann. Ny. Acad. Sci. Hormone and Metabolic Research=Horm Metab Res;; Hormone and Metabolic Research = Horm Metab Res Hormone and Metabolic Research = Horm. Metab. Res. Hormone and metabolic research. Hormon- und Stoffwechselforschung. Hormones et metabolisme = Horm Metab Res Hormone and Metabolic Research. Supplement=Horm Metab Res Suppl;; Hormone and Metabolic Research. Supplement = Horm. Metab. Res. Suppl. Hormone and metabolic research. Supplement series = Horm Metab Res Suppl Hormone-dependent Tumors = Contr Oncol Hormone-dependent Tumors = Contr. Oncol. Hormone Perception and Signal Transduction in Animals and Plants = Sym Soc Exp Biol Hormone Perception and Signal Transduction in Animals and Plants = Sym. Soc. Exp. Biol. Hormone-related Tumors: Novel Approaches to Prevention and Treatment = Ann Ny Acad Sci Hormone-related Tumors: Novel Approaches to Prevention and Treatment = Ann. Ny. Acad. Sci. Hormone Replacement Therapy and Cardiovascular Disease = Contro Issu Clim Med Hormone Replacement Therapy and Cardiovascular Disease = Contro. Issu. Clim. Med. Hormone Replacement Therapy and Osteoporosis = E Schering Res Fdn W Hormone Replacement Therapy and Osteoporosis = E. Schering. Res. Fdn. W. Hormone Replacement Therapy and The Brain = Contro Issu Clim Med Hormone Replacement Therapy and The Brain = Contro. Issu. Clim. Med. Hormone research = Horm Res Hormone Research=Horm Res;; Hormone Research = Horm Res Hormone Research = Horm. Res. Hormone Research in Paediatrics = Horm Res Paediat Hormone Research in Paediatrics = Horm. Res. Paediat. Hormoner = Hormoner Hormones and behavior = Horm Behav Hormones and Behavior=Horm Behav;; Hormones and Behavior = Horm Behav Hormones and Behavior = Horm. Behav. Hormones and Cell Regulation - 12th European Symposium = Colloq Inse Hormones and Cell Regulation - 12th European Symposium = Colloq. Inse. Hormones and Cell Regulation // = Colloq Inse Hormones and Cell Regulation // = Colloq. Inse. Hormones and Cell Regulation /// = Colloq Inse Hormones and Cell Regulation /// = Colloq. Inse. Hormones and Pharmaceuticals Generated By Concentrated Animal Feeding Operations: Transport in Water and Soil = Emerg Top Ecotoxicol Hormones and Pharmaceuticals Generated By Concentrated Animal Feeding Operations: Transport in Water and Soil = Emerg. Top. Ecotoxicol. Hormones and Social Behavior = Res Perspect End Int Hormones and Social Behavior = Res. Perspect. End. Int. Hormones and The Brain = Res Perspect End Int Hormones and The Brain = Res. Perspect. End. Int. Hormones and Their Receptors in Fish Reproduction = Mol Asp Fish Mar Bio Hormones and Their Receptors in Fish Reproduction = Mol. Asp. Fish Mar. Bio. Hormones (Athens, Greece) = Hormones (Athens) Hormones, Brain and Behaviour in Vertebrates, 1 = Comp Physiol Hormones, Brain and Behaviour in Vertebrates, 1 = Comp. Physiol. Hormones, Brain and Behaviour in Vertebrates, Vol 2 = Comp Physiol Hormones, Brain and Behaviour in Vertebrates, Vol 2 = Comp. Physiol. Hormones = Hormones Hormones-international Journal of Endocrinology and Metabolism = Horm-int J Endocrino Hormones-international Journal of Endocrinology and Metabolism = Horm-int. J. Endocrino. Hormones of The Limbic System = Vitam Horm Hormones of The Limbic System = Vitam. Horm. Hormone Use and Abuse By Athletes = Endocr Updat Hormone Use and Abuse By Athletes = Endocr. Updat. Horse-head Fiddle and The Cosmopolitan Reimagination of Mongolia = Curr Res Ethnomusico Horse-head Fiddle and The Cosmopolitan Reimagination of Mongolia = Curr. Res. Ethnomusico. Horticultura Brasileira = Hortic Bras Horticultura Brasileira = Hortic. Bras. Horticultural Biotechnology in Vitro Culture and Breeding = Acta Hortic Horticultural Biotechnology in Vitro Culture and Breeding = Acta. Hortic. Horticultural Biotechnology = Plant Biol Horticultural Biotechnology = Plant. Biol. Horticultural Research = Hortic Res Horticultural Research = Hortic. Res. Horticultural reviews = Hortic Rev (Am Soc Hortic Sci) Horticultural Science = Hortic Sci Horticultural Science = Hortic. Sci. Horticultural Science in Emerging Economies: Issues and Constraints = Acta Hortic Horticultural Science in Emerging Economies: Issues and Constraints = Acta. Hortic. Horticulture: Art and Science for Life = Acta Hortic Horticulture: Art and Science for Life = Acta. Hortic. Horticulture Environment and Biotechnology = Hortic Environ Biote Horticulture Environment and Biotechnology = Hortic. Environ. Biote. Horticulture, Environment and Biotechnology = Hortic. Environ. Biotechnol. Horticulture = Horticulture Horticulture in Human Life, Culture, and Environment = Acta Hortic Horticulture in Human Life, Culture, and Environment = Acta. Hortic. Horticulture in The 21st Century = Bot Res Pract Horticulture in The 21st Century = Bot. Res. Pract. Horticulture - New Technologies and Applications = Curr Plant Sci Biot Horticulture - New Technologies and Applications = Curr. Plant. Sci. Biot. HortScience : a publication of the American Society for Horticultural Science = HortScience Hortscience = Hortscience HortScience = HortScience Horttechnology = Horttechnology HortTechnology = Horttechnology Horumon to rinsho. Clinical endocrinology = Horumon To Rinsho Horumon to Rinsho (Clinical Endocrinology) = Horumon To Rinsho Horumon to Rinsho = Horumon to Rinsho Horwood Series in Mathematics & Applications = Horwood Ser. Math. Appl. Hospice Journal = Hospice J Hospice Journal = Hospice J. Hospice Journal = Hosp. J. Hospital administration currents = Hosp Admin Curr Hospital Administration Currents = Hosp. Admin. Curr. Hospital administration = Hosp Adm (Chic) Hospital Administration = Hosp. Adm. (Chic.) Hospital Administration = Hosp Admin Hospital Administration = Hosp. Admin. Hospital administration in Canada = Hosp Adm Can Hospital Administration in Canada = Hosp. Adm. Can. Hospital admitting monthly = Hosp Admitting Mon Hospital Admitting Monthly = Hosp. Admitting Mon. Hospital and Community Psychiatry = Hosp Community Psych Hospital and Community Psychiatry = Hosp. Community Psych. Hospital and Community Psychiatry = Hosp. Community Psychiatry Hospital and Health Services Administration = Hosp. Health Serv. Adm. Hospital and Health Services Review = Hosp. Health Serv. Rev. Hospital aviation = Hosp Aviat Hospital Aviation = Hosp. Aviat. Hospital bond review = Hosp Bond Rev Hospital Bond Review = Hosp. Bond Rev. Hospital capital finance American Hospital Association, Division of Hospital Planning and Capital Finance = Hosp Cap Finance Hospital Capital Finance = Hosp. Cap. Finance Hospital Case Management = Hosp. Case Manag. Hospital case management : the monthly update on hospital-based care planning and critical paths = Hosp Case Manag Hospital & community psychiatry = Hosp Community Psychiatry Hospital Corps quarterly = Hosp Corps Q Hospital cost management and accounting = Hosp Cost Manag Account Hospital Cost Management and Accounting = Hosp. Cost Manag. Account. Hospital development = Hosp Dev Hospital Development = Hosp. Dev. Hospital employee health = Hosp Employee Health Hospital Employee Health = Hosp. Employee Health Hospital engineering = Hosp Eng Hospital Engineering = Hosp. Eng. Hospital entrepreneurs' newsletter = Hosp Entrep Newsl Hospital Entrepreneurs Newsletter = Hosp. Entrep. Newsl. Hospital Equipment and Supplies = Hosp. Equip. Supplies Hospital equipment & supplies = Hosp Equip Supplies Hospital ethics / American Hospital Association = Hosp Ethics Hospital Ethics = Hosp. Ethics Hospital financial management = Hosp Financ Manage Hospital Financial Management = Hosp. Financ. Manage. Hospital Food and Nutrition Focus = Hosp. Food Nutr. Focus Hospital food & nutrition focus = Hosp Food Nutr Focus Hospital formulary = Hosp Formul Hospital Formulary = Hosp Formul Hospital Formulary = Hosp. Formul. Hospital forum = Hosp Forum Hospital Forum = Hosp. Forum Hospital general = Hosp Gen (Madr) Hospital gift shop management = Hosp Gift Shop Manage Hospital Gift Shop Management = Hosp. Gift Shop Manage. Hospital guest relations report = Hosp Guest Relations Rep Hospital Guest Relations Report = Hosp. Guest Relations Rep. Hospital hazardous materials management = Hosp Hazard Mater Manage Hospital Hazardous Materials Management = Hosp. Hazard. Mater. Manage. Hospital Health Care Newsletter = Hosp. Health Care Newsl. Hospital & health services administration = Hosp Health Serv Adm Hospital & Health Services Administration = Hosp Health Serv Adm Hospital & Health Services Administration = Hosp. Health Serv. Adm. Hospital = Hospital (Rio J.) Hospital = Hospital (Rio J) Hospital infection control = Hosp Infect Control Hospital Infection Control = Hosp. Infect. Control Hospitalis = Hospitalis Hospitalist = Hosp. Natl. Assoc. Inpatient. Physicians. Hospital law newsletter = Hosp Law Newsl Hospital Law Newsletter = Hosp. Law Newsl. Hospital libraries = Hosp Libr Hospital Libraries = Hosp. Libr. Hospital management communications = Hosp Manage Commun Hospital Management Communications = Hosp. Manage. Commun. Hospital management = Hosp Manage Hospital Management = Hosp. Manage. Hospital management quarterly : HMQ = Hosp Manage Q Hospital Management Quarterly = Hosp. Manage. Q. Hospital Manager = Hosp. Manager Hospital material[dollar sign] management = Hosp Mater Manage Hospital Materials Management = Hosp. Mater. Manage. Hospital materiel management quarterly = Hosp Mater Manage Q Hospital Materiel Management Quarterly = Hosp. Mater. Manage. Q. Hospital Medical Staff = Hosp. Med. Staff Hospital Medicine = Hosp Med Hospital Medicine = Hosp. Med. Hospital medicine (London, England : 1998) = Hosp Med Hospital outlook = Hosp Outlook Hospital Outlook = Hosp. Outlook Hospital patient relations report = Hosp Patient Relat Rep Hospital Patient Relations Report = Hosp. Patient Relat. Rep. Hospital peer review = Hosp Peer Rev Hospital Peer Review = Hosp. Peer Rev. Hospital pharmacy = Hosp Pharm Hospital Pharmacy = Hosp Pharm Hospital Pharmacy = Hosp. Pharm. Hospital physician = Hosp Physician Hospital Physician = Hosp. Physician Hospital practice (1995) = Hosp Pract (Minneap) Hospital practice (Hospital ed.) = Hosp Pract (Hosp Ed) Hospital Practice (Hospital Edition) = Hosp. Pract. (Hosp. Ed.) Hospital practice = Hosp Pract Hospital Practice = Hosp Pract Hospital Practice = Hosp. Pract. Hospital practice (Office ed.) = Hosp Pract (Off Ed) Hospital Practice (Office Edition)=Hosp Pract (Off Ed);; Hospital Practice (Office Edition) = Hosp. Pract. (Off. Ed.) Hospital progress = Hosp Prog Hospital Progress = Hosp. Prog. Hospital Progress = Hosp Progr Hospital Progress = Hosp. Progr. Hospital purchasing management = Hosp Purch Manage Hospital Purchasing Management = Hosp. Purch. Manage. Hospital purchasing news : HPN = HPN Hosp Purch News Hospital quarterly = Hosp Q Hospital Quarterly = Hosp. Q. Hospital record study : a joint study by CPHA and IMS America Ltd. / IMS America = Hosp Rec Study Hospital revenue report = Hosp Revenue Rep Hospital Revenue Report = Hosp. Revenue Rep. Hospital risk management = Hosp Risk Manage Hospital Risk Management = Hosp. Risk Manage. Hospitals and Health Networks=Hosp Health Netw;; Hospitals and Health Networks = Hosp. Health Netw. Hospital security and safety management = Hosp Secur Saf Manage Hospital Security and Safety Management = Hosp. Secur. Saf. Manage. Hospitals & health networks 360 degrees : H&HN 360 degrees = Hosp Health Netw 360 Hospitals & health networks / AHA = Hosp Health Netw Hospitals & Health Networks = Hosp Health Network Hospitals & Health Networks = Hosp. Health Network. Hospitals = Hospitals Hospitals = Hospitals (Lond) Hospital strategy report = Hosp Strategy Rep Hospital Strategy Report = Hosp. Strategy Rep. Hospital supervision = Hosp Superv Hospital Supervision = Hosp. Superv. Hospital supervisor's bulletin = Hosp Superv Bull Hospital Supervisors Bulletin = Hosp. Superv. Bull. Hospital technology series = Hosp Technol Ser Hospital Technology Series = Hosp. Technol. Ser. Hospital topics = Hosp Top Hospital Topics = Hosp. Top. Hospital tribune = Hosp Trib Hospital trustee = Hosp Trustee Hospital Trustee = Hosp. Trustee Host-guest Chemistry = Top Curr Chem Host-guest Chemistry = Top. Curr. Chem. Host-guest Molecular Interactions : From Chemistry to Biology = Ciba F Symp Host-guest Molecular Interactions : From Chemistry to Biology = Ciba. F. Symp. Host in The Machine: Examining The Digital in The Social = Chandos Internet Ser Host in The Machine: Examining The Digital in The Social = Chandos. Internet. Ser. Host-pathogen Interactions: Genetics, Immunology and Physiology = Immunol Immune Syst Host-pathogen Interactions: Genetics, Immunology and Physiology = Immunol. Immune. Syst. Hot and Cool: Bridging Gaps in Massive-star Evolution = Astr Soc P Hot and Cool: Bridging Gaps in Massive-star Evolution = Astr. Soc. P. Hot and Dense Nuclear Matter = Nato Adv Sci Inst Se Hot and Dense Nuclear Matter = Nato. Adv. Sci. Inst. Se. Hotei Academic European Studies On Japan = Hotei Acad Eur Japan Hotei Academic European Studies On Japan = Hotei Acad. Eur. Japan Hotel Journal = Hotel J. Hotel + Touristik Revue = Hotel Tour. Rev. Hotetsu rinsho. Practice in prosthodontics = Hotetsu Rinsho Hotetsu Rinsho (Practice in Prosthodontics) = Hotetsu Rinsho Hot Hadronic Matter = Nato Adv Sci Inst Se Hot Hadronic Matter = Nato. Adv. Sci. Inst. Se. Hot Mix Asphalt Construction: Certification and Accreditation Programs = Am Soc Test Mater Hot Mix Asphalt Construction: Certification and Accreditation Programs = Am. Soc. Test. Mater. Hot Quarks 2010: Workshop for Young Scientists On The Physics of Ultrarelativistic Nucleus-nucleus Collisions = J Phys Conf Ser Hot Quarks 2010: Workshop for Young Scientists On The Physics of Ultrarelativistic Nucleus-nucleus Collisions = J. Phys. Conf. Ser. Hot Subdwarf Stars and Related Objects = Astr Soc P Hot Subdwarf Stars and Related Objects = Astr. Soc. P. Hot Topics in Infection and Immunity in Children = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children Ii = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children Ii = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children Iii = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children Iii = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children Iv = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children Iv = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children V = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children V = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children Vi = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children Vi = Adv. Exp. Med. Biol. Hot Topics in Infection and Immunity in Children Vii = Adv Exp Med Biol Hot Topics in Infection and Immunity in Children Vii = Adv. Exp. Med. Biol. Hot Topics in Thermal Analysis and Calorimetry = Hot Top Therm Anal Hot Topics in Thermal Analysis and Calorimetry = Hot Top. Therm. Anal. Hot Universe = Iau Symp Hot Universe = Iau. Symp. Houille Blanche-revue Internationale De L Eau = Houille Blanche Houille Blanche-revue Internationale De L Eau = Houille Blanche. Household Behavior, Equivalence Scales, Welfare and Poverty = Contr Stat Household Behavior, Equivalence Scales, Welfare and Poverty = Contr. Stat. Household Divisions of Labour: Teamwork, Gender and Time = Palgr Mac Stud Fam Household Divisions of Labour: Teamwork, Gender and Time = Palgr. Mac. Stud. Fam. House in Russian Literature: A Mythopoetic Exploration = Stud Slav Lit Poet House in Russian Literature: A Mythopoetic Exploration = Stud. Slav. Lit. Poet. House Mouse Aggression = E M I Lif S House Mouse Aggression = E. M. I. Lif. S. House Rating Schemes: From Energy to Comfort Base = Green Energy Technol House Rating Schemes: From Energy to Comfort Base = Green. Energy Technol. Housework: Craft Production and Domestic Economy in Ancient Mesoamerica = Archeol Pap Am Anthr Housework: Craft Production and Domestic Economy in Ancient Mesoamerica = Archeol. Pap. Am. Anthr. Housing and Health in Europe: The Who Lares Project = Hous Soc Ser Housing and Health in Europe: The Who Lares Project = Hous. Soc. Ser. Housing and Social Transition in Japan = Hous Soc Ser Housing and Social Transition in Japan = Hous. Soc. Ser. Housing and Society Series = Hous Soc Ser Housing and Society Series = Hous. Soc. Ser. Housing and Urban Policy Studies = Hous Urban Policy St Housing and Urban Policy Studies = Hous. Urban Policy St. Housing and Urban Policy Studies = Hous Urb Policy Stud Housing and Urban Policy Studies = Hous. Urb. Policy Stud. Housing, Care and Inheritance = Hous Soc Ser Housing, Care and Inheritance = Hous. Soc. Ser. Housing Educators Journal = Housing Educ J Housing Educators Journal = Housing Educ. J. Housing Finance Review=Housing Finance Rev. Housing Finance Review = Housing Financ Rev Housing Finance Review = Housing Financ. Rev. Housing, Housing Costs and Mortgages: Trends, Impact and Prediction = Hous Iss Laws Progr Housing, Housing Costs and Mortgages: Trends, Impact and Prediction = Hous. Iss. Laws. Progr. Housing Issues Laws and Programs = Hous Iss Laws Progr Housing Issues Laws and Programs = Hous. Iss. Laws Progr. Housing Market Renewal and Social Class = Hous Plan Des Ser Housing Market Renewal and Social Class = Hous. Plan. Des. Ser. Housing, Markets and Policy = Hous Soc Ser Housing, Markets and Policy = Hous. Soc. Ser. Housing: Participation and Exclusion = Soc Legal St Ser Housing: Participation and Exclusion = Soc. Legal. St. Ser. Housing Planning and Design Series = Hous Plan Des Ser Housing Planning and Design Series = Hous. Plan. Des. Ser. Housing Policy Debate=Housing Pol. Debate Housing Policy Debate = Hous Policy Debate Housing Policy Debate = Hous. Policy Debate Housing Policy Reforms in Post Socialist Europe: Lost in Transition = Contrib Econ Housing Policy Reforms in Post Socialist Europe: Lost in Transition = Contrib. Econ. Housing Studies=Housing Stud. Housing Studies = Housing Stud Housing Studies = Housing Stud. Housing Theory and Society = Hous Theory Soc Housing Theory and Society = Hous. Theory Soc. Housing Transformations = Hous Soc Ser Housing Transformations = Hous. Soc. Ser. Houston journal of health law & policy = Houst J Health Law Policy Houston journal of international law = Houst J Int Law Houston Journal of Mathematics = Houston J. Math. Houston Journal of Mathematics = Houston J Math Houston Journal of Mathematics = Houston J. Math. Houston Law Review = Houston Law Rev Houston Law Review = Houston Law Rev. Houston law review / University of Houston = Houst Law Rev Houston lawyer : official monthly publication of the Houston Bar Association = Houst Lawyer Houston Stewart Chamberlain - Zur Textlichen Konstruktion Einer Weltanschauung: Eine Sprach, Diskurs- Und Ideologiegeschichtliche Analyse = Stud Linguist Ger Houston Stewart Chamberlain - Zur Textlichen Konstruktion Einer Weltanschauung: Eine Sprach, Diskurs- Und Ideologiegeschichtliche Analyse = Stud. Linguist. Ger. How An Estuary Changed Into A Freshwater Lake = Comm Hydrol How An Estuary Changed Into A Freshwater Lake = Comm. Hydrol. Howard law journal = Howard Law J How Children Learn to Read: Current Issues and New Directions in The Integration of Cognition, Neurobiology and Genetics of Reading and Dyslexia Research and Practice = Extraordinary Brain How Children Learn to Read: Current Issues and New Directions in The Integration of Cognition, Neurobiology and Genetics of Reading and Dyslexia Research and Practice = Extraordinary. Brain. How Did The First Stars and Galaxies Form = Princ Front Phys How Did The First Stars and Galaxies Form = Princ. Front. Phys. How Does Emotion Affect Attention and Memory? = Psychol Emot Motiv A How Does Emotion Affect Attention and Memory? = Psychol. Emot. Motiv. A. How Does The Galaxy Work? = Astrophys Space Sc L How Does The Galaxy Work? = Astrophys. Space. Sc. L. How Do Spores Select Where to Settle: A Holographic Motility Analysis of Ulva Zoospores On Different Surfaces = Springer Theses-reco How Do Spores Select Where to Settle: A Holographic Motility Analysis of Ulva Zoospores On Different Surfaces = Springer. Theses-reco. How Do We Best Employ Animal Models for Type 1 Diabetes and Multiple Sclerosis? = Ann Ny Acad Sci How Do We Best Employ Animal Models for Type 1 Diabetes and Multiple Sclerosis? = Ann. Ny. Acad. Sci. How Ficta Follow Fiction: A Syncretistic Account of Fictional Entities = Philos Stud Ser How Ficta Follow Fiction: A Syncretistic Account of Fictional Entities = Philos. Stud. Ser. How Hysterical: Identification and Resistance in The Bible and Film = Relig Cult Crit How Hysterical: Identification and Resistance in The Bible and Film = Relig. Cult. Crit. How Organizations Remember: Retaining Knowledge Through Organizational Action = Organ Chang Innov How Organizations Remember: Retaining Knowledge Through Organizational Action = Organ. Chang. Innov. How Pretrial Publicity Affects Juror Decision Making and Memory = Laws Legis How Pretrial Publicity Affects Juror Decision Making and Memory = Laws. Legis. How Professionals Make Decisions = Exp Res Appl How Professionals Make Decisions = Exp. Res. Appl. How School Principals Sustain Success Over Time: International Perspectives = Stud Educ Leadersh How School Principals Sustain Success Over Time: International Perspectives = Stud. Educ. Leadersh. How Should Rabbinic Literature Be Read in The Modern World? = Jud Context How Should Rabbinic Literature Be Read in The Modern World? = Jud. Context. How The European Countries Influenced Each Other in Science and Technology From 1780 to 1830 = Colloq Cths How The European Countries Influenced Each Other in Science and Technology From 1780 to 1830 = Colloq. Cths. How to: Evaluate health programs = How Eval Health Programs How to Evaluate Health Programs = How Eval. Health Programs How to Improve The Results of Peripheral Nerve Surgery = Acta Neurochir Suppl How to Improve The Results of Peripheral Nerve Surgery = Acta. Neurochir. Suppl. How to Organize Prevention = Prev Int Ch How to Organize Prevention = Prev. Int. Ch. How to Show Things With Words: A Study On Logic, Language and Literature = Trends Linguist-stud How to Show Things With Words: A Study On Logic, Language and Literature = Trends. Linguist-stud. How to Think About Meaning = Philos Stud Ser How to Think About Meaning = Philos. Stud. Ser. How We Think: A Theory of Goal-oriented Decision Making and Its Educational Applications = Stud Math Think Lear How We Think: A Theory of Goal-oriented Decision Making and Its Educational Applications = Stud. Math. Think. Lear. Hox Genes = Curr Top Dev Biol Hox Genes = Curr. Top. Dev. Biol. Hox Genes: Studies From The 20th to The 21st Century = Adv Exp Med Biol Hox Genes: Studies From The 20th to The 21st Century = Adv. Exp. Med. Biol. Hpb = Hpb HPB surgery : a world journal of hepatic, pancreatic and biliary surgery = HPB Surg HPB Surgery = HPB Surg. HPB Surgery (Yverdon-Les-Bains=HPB Surg;; Hpca-15 2009: Fifteenth International Symposium On High-performance Computer Architecture, Proceedings = Int S High Perf Comp Hpca-15 2009: Fifteenth International Symposium On High-performance Computer Architecture, Proceedings = Int. S. High. Perf. Comp. Hpca-16 2010: Sixteenth International Symposium On High-performance Computer Architecture, Proceedings = Int S High Perf Comp Hpca-16 2010: Sixteenth International Symposium On High-performance Computer Architecture, Proceedings = Int. S. High. Perf. Comp. Hp-finite Element Methods for Singular Perturbations = Lect Notes Math Hp-finite Element Methods for Singular Perturbations = Lect. Notes. Math. Hplc in Enzymatic Analysis, 2nd Edition = Method Biochem Anal Hplc in Enzymatic Analysis, 2nd Edition = Method. Biochem. Anal. HPN: Hospital Purchasing News = HPN Hosp. Purch. News HRC & CC. Journal of high resolution chromatography & chromatography communications = HRC CC J High Resolut Chromatogr Chromatogr Commun Hrc-journal of High Resolution Chromatography = Hrc-j High Res Chrom Hrc-journal of High Resolution Chromatography = Hrc-j. High Res. Chrom. HRC Journal of High Resolution Chromatography = HRC J. High Resolut. Chromatogr. HRMagazine = HRMAGAZINE HRMagazine : on human resource management = HRMAGAZINE HRSA careaction = HRSA Careaction Hrvatski Filmski Ljetopis = Hrvat Film Ljetop Hrvatski Filmski Ljetopis = Hrvat. Film. Ljetop. Hsi: 2009 2nd Conference On Human System Interactions = C Hum Syst Interact Hsi: 2009 2nd Conference On Human System Interactions = C. Hum. Syst. Interact. Hsmha Health Reports = Hsmha Health Rep Hsmha Health Reports = Hsmha Health Rep. HSMHA health reports = HSMHA Health Rep HSMHA Health Reports = HSMHA Health Rep. HSTC bulletin = Hstc Bull Hsueh Yu Ch=Sheng Chung Ping Tsa Chih;; HTD (American Society of Mechanical Engineers) = HTD (Am. Soc. Mech. Eng.) Hte'07: Proceedings of The 5th Iasme / Wseas International Conference On Heat Transfer, Thermal Engineering and Environment = Ma Comput Sci Eng Hte'07: Proceedings of The 5th Iasme / Wseas International Conference On Heat Transfer, Thermal Engineering and Environment = Ma. Comput. Sci. Eng. Hte'07: Proceedings of The 5th Iasme / Wseas International Conference On Heat Transfer, Thermal Engineering and Environment = Math Comput Sci Eng Hte'07: Proceedings of The 5th Iasme / Wseas International Conference On Heat Transfer, Thermal Engineering and Environment = Math. Comput. Sci. Eng. HTM, Haerterei-Technische Mitteilungen = HTM, Haerterei Tech. Mit. HTM, Haerterei Technische Mitteilungen = HTM Haerteri Tech. Mitt. Hts Teologiese Studies-theological Studies = Hts Teol Stud-theol Hts Teologiese Studies-theological Studies = Hts Teol. Stud-theol. Huadong Huagong Xueyuan Xuebao = Huadong Huagong Xueyuan Xuebao Huadong Ligong Daxue Xuebao = Huadong Ligong Daxue Xuebao Huadong Ligong Daxue Xuebao, Ziran Kexueban = Huadong Ligong Daxue Xuebao, Ziran Kexueban Huadong shifan daxue xuebao = Journal of East China Normal University|Huadong Shifan Daxue Xuebao Huagong Xuebao (Chinese Edition) = Huagong Xuebao (Chin. Ed.) Hua-Hsi I Ko Ta Hsueh Hsueh Pao [Journal of West China University Of Medical Sciences]=Hua Hsi I Ko Ta Hsueh Hsueh Pao;; Hua Hsi Kou Chiang I Hsueh Tsa Chih West China Journal Of Stomatology (Cheng-Tu=Hua Hsi Kou Chiang I Hsueh Tsa Chih;; Huaihua Shizhuan Xuebao = Huaihua Shizhuan Xuebao Hua nan nong ye da xue xue bao = Journal of South China Agricultural University|Hua Nan Nong Ye Da Xue Xue Bao Huanjing Huaxue = Huanjing Huaxue Huanjing Kexue = Huanjing Kexue Huanjing Kexue Xuebao = Huanjing Kexue Xuebao Huan jing wu ran zhi li ji shu yu she bei = Techniques and equipment for environmental pollution control / Zhongguo ke xue yuan sheng tai huan jing yan jiu zhong xin zhu ban|Huan Jing Wu Ran Zhi Li Ji Shu Yu She Bei Hua sheng xue bao = Journal of peanut science|Hua Sheng Xue Bao Hua Xi Yi Ke Da Xue Xue Bao (Journal of West China University of Medical Sciences) = Hua Xi Yi Ke Da Xue Xue Bao Huaxue Fanying Gongcheng Yu Gongyi = Huaxue Fanying Gongcheng Yu Gongyi Huaxue = Huaxue Huaxue Shijie = Huaxue Shijie Huaxue Shiji = Huaxue Shiji Huaxue Tongbao = Huaxue Tongbao Huaxue Wuli Xuebao = Huaxue Wuli Xuebao Huaxue Xuebao = Huaxue Xuebao Huazhong (Central China) University of Science and Technology = J. Huazhong Univ. Sci. Tech. Hua zhong nong ye da xue xue bao = Journal Huazhong (Central China) Agricultural University|Hua Zhong Nong Ye Da Xue Xue Bao Hubbard Model = Nato Adv Sci Inst Se Hubbard Model = Nato. Adv. Sci. Inst. Se. Hubble's Science Legacy: Future Optical/ultraviolet Astronomy From Space = Astr Soc P Hubble's Science Legacy: Future Optical/ultraviolet Astronomy From Space = Astr. Soc. P. Hudebni Veda = Hudebni Veda Hudson Review = Hudson Rev Hudson Review = Hudson Rev. Hudson River Fishes and Their Environment = Am Fish S S Hudson River Fishes and Their Environment = Am. Fish. S. S. Huebner International Series On Risk, Insurance, and Economic Security = Hueb Int S Huebner International Series On Risk, Insurance, and Economic Security = Hueb. Int. S. Huebner International Series On Risk Insurance and Economic Security = Huebner Int Ser Risk Huebner International Series On Risk Insurance and Economic Security = Huebner Int. Ser. Risk Huelva arqueológica = HuelvaA Hugo Grotius in International Thought = Palgr Mac Ser Hist Hugo Grotius in International Thought = Palgr. Mac. Ser. Hist. Hugo Grotius Theologian = St Hist Christ Th Hugo Grotius Theologian = St. Hist. Christ. Th. Huisarts en wetenschap = Huisarts Wet Hu Li Za Zhi (Journal of Nursing) = Hu Li Za Zhi Hu li za zhi The journal of nursing = Hu Li Za Zhi Human Action, Deliberation and Causation = Phil Stud S Human Action, Deliberation and Causation = Phil. Stud. S. Human Adult Stem Cells = Hum Cell Cult Human Adult Stem Cells = Hum. Cell. Cult. Human Anatomy and Physiology = Hum Anat Physiol Human Anatomy and Physiology = Hum. Anat. Physiol. Human and Ecological Risk Assessment = Hum Ecol Risk Assess Human and Ecological Risk Assessment = Hum. Ecol. Risk Assess. Human and Experimental Toxicology=Hum Exp Toxicol;; Human and Experimental Toxicology = Hum. Exp. Toxicol. Human and Nature Minding Automation = Intel Syst Contr Aut Human and Nature Minding Automation = Intel. Syst. Contr. Aut. Human antibodies and hybridomas = Hum Antibodies Hybridomas Human Antibodies and Hybridomas = Hum. Antibodies Hybridomas Human antibodies = Hum Antibodies Human Antibodies=Hum Antibodies;; Human Antibodies = Hum. Antibodies Human Antibody Therapeutics for Viral Disease = Curr Top Microbiol Human Antibody Therapeutics for Viral Disease = Curr. Top. Microbiol. Human Aspects in Computer Integrated Manufacturing = Ifip Trans B Human Aspects in Computer Integrated Manufacturing = Ifip. Trans. B. Human Aspects in Computing = Adv Hum Fact Ergon Human Aspects in Computing = Adv. Hum. Fact. Ergon. Human Aspects of Visualization = Lect Notes Comput Sc Human Aspects of Visualization = Lect. Notes. Comput. Sc. Human Autonomy in Cross-cultural Context: Perspectives On The Psychology of Agency, Freedom, and Well-being = Cross Cult Adv Posit Human Autonomy in Cross-cultural Context: Perspectives On The Psychology of Agency, Freedom, and Well-being = Cross. Cult. Adv. Posit. Human Basophils and Mast Cells: Biological Aspects = Chem Immunol Human Basophils and Mast Cells: Biological Aspects = Chem. Immunol. Human Basophils and Mast Cells: Clinical Aspects = Chem Immunol Human Basophils and Mast Cells: Clinical Aspects = Chem. Immunol. Human B Cell Populations = Chem Immunol Human B Cell Populations = Chem. Immunol. Human behavior; the newsmagazine of the social sciences = Hum Behav Human Behavior Understanding = Lect Notes Comput Sc Human Behavior Understanding = Lect. Notes. Comput. Sc. Human Biologists in The Archives = Cam S Bio Evol Anthr Human Biologists in The Archives = Cam. S. Bio. Evol. Anthr. Human biology; an international record of research = Hum Biol Human Biology=Hum Biol;; Human Biology = Hum Biol Human Biology = Hum. Biol. Human biology in Oceania = Hum Biol Oceania Human Biology in Oceania = Hum. Biol. Oceania Human Body Composition = Basic Life Sci Human Body Composition = Basic. Life. Sci. Human brain mapping = Hum Brain Mapp Human Brain Mapping = Hum Brain Mapp Human Brain Mapping = Hum. Brain Mapp. Human Brain Proteome = Int Rev Neurobiol Human Brain Proteome = Int. Rev. Neurobiol. Human Capacities and Moral Status = Philos Med Human Capacities and Moral Status = Philos. Med. Human Capital, Trade, and Public Policy in Rapidly Growing Economies: From Theory to Empirics = Acad Stud Asian Econ Human Capital, Trade, and Public Policy in Rapidly Growing Economies: From Theory to Empirics = Acad. Stud. Asian. Econ. Human Cd38 and Related Molecules = Chem Immunol Human Cd38 and Related Molecules = Chem. Immunol. Human Cell Culture = Hum Cell Cult Human Cell Culture = Hum. Cell Cult. Human Cell=Hum Cell;; Human Cell = Hum Cell Human Cell = Hum. Cell Human cell : official journal of Human Cell Research Society = Hum Cell Human Centered Design, Proceedings = Lect Notes Comput Sc Human Centered Design, Proceedings = Lect. Notes. Comput. Sc. Human-centered Information Fusion = Artech Hse Elec Warf Human-centered Information Fusion = Artech. Hse. Elec. Warf. Human Centered Robot Systems: Cognition, Interaction, Technology = Cogn Syst Monogr Human Centered Robot Systems: Cognition, Interaction, Technology = Cogn. Syst. Monogr. Human Centered Robot Systems: Cognition, Interaction, Technology = Cog Sys Mono Human Centered Robot Systems: Cognition, Interaction, Technology = Cog. Sys. Mono. Human-centered Software Engineering = Hum-comput Int-sprin Human-centered Software Engineering = Hum-comput. Int-sprin. Human-centered Visualization Environments = Lect Notes Comput Sc Human-centered Visualization Environments = Lect. Notes. Comput. Sc. Human-centred Software Engineering = Lect Notes Comput Sc Human-centred Software Engineering = Lect. Notes. Comput. Sc. Human-centric Information Processing Through Granular Modelling = Stud Comput Intell Human-centric Information Processing Through Granular Modelling = Stud. Comput. Intell. Human Choice and Computers = Int Fed Info Proc Human Choice and Computers = Int. Fed. Info. Proc. Human Cloning in The Media: From Science Fiction to Science Practice = Genet Soc Human Cloning in The Media: From Science Fiction to Science Practice = Genet. Soc. Human communication research = Hum Commun Res Human Communication Research = Hum Commun Res Human Communication Research = Hum. Commun. Res. Human-computer Interaction and Management Information Systems: Applications = Adv Manag Inform Sys Human-computer Interaction and Management Information Systems: Applications = Adv. Manag. Inform. Sys. Human-computer Interaction and Management Information Systems: Foundations = Adv Manag Inform Sys Human-computer Interaction and Management Information Systems: Foundations = Adv. Manag. Inform. Sys. Human / Computer Interaction : A Series of Monographs, Edited Volumes and Texts = Human Compu Human / Computer Interaction : A Series of Monographs, Edited Volumes and Texts = Human Compu. Human-computer Interaction: Designing for Diverse Users and Domains = Hum Factors Ergon Human-computer Interaction: Designing for Diverse Users and Domains = Hum. Factors. Ergon. Human-computer Interaction: Design Issues, Solutions, and Applications = Hum Factors Ergon Human-computer Interaction: Design Issues, Solutions, and Applications = Hum. Factors. Ergon. Human-computer Interaction: Development Process = Hum Factors Ergon Human-computer Interaction: Development Process = Hum. Factors. Ergon. Human-computer Interaction: Fundamentals = Hum Factors Ergon Human-computer Interaction: Fundamentals = Hum. Factors. Ergon. Human-computer Interaction = Hum-comput Interact Human-computer Interaction = Hum-comput. Interact. Human-computer Interaction - Interact 2005, Proceedings = Lect Notes Comput Sc Human-computer Interaction - Interact 2005, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction - Interact 2007, Pt 1, Proceedings = Lect Notes Comput Sc Human-computer Interaction - Interact 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction - Interact 2007, Pt 2, Proceedings = Lect Notes Comput Sc Human-computer Interaction - Interact 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction - Interact 2009, Pt Ii, Proceedings = Lect Notes Comput Sc Human-computer Interaction - Interact 2009, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction - Interact 2009, Pt I = Lect Notes Comput Sc Human-computer Interaction - Interact 2009, Pt I = Lect. Notes. Comput. Sc. Human-computer Interaction, Proceedings = Lect Notes Comput Sc Human-computer Interaction, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt 1, Proceedings = Lect Notes Comput Sc Human-computer Interaction, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt 2, Proceedings = Lect Notes Comput Sc Human-computer Interaction, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt 3, Proceedings = Lect Notes Comput Sc Human-computer Interaction, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt 4, Proceedings = Lect Notes Comput Sc Human-computer Interaction, Pt 4, Proceedings = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt Iii = Lect Notes Comput Sc Human-computer Interaction, Pt Iii = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt Ii = Lect Notes Comput Sc Human-computer Interaction, Pt Ii = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt I = Lect Notes Comput Sc Human-computer Interaction, Pt I = Lect. Notes. Comput. Sc. Human-computer Interaction, Pt Iv = Lect Notes Comput Sc Human-computer Interaction, Pt Iv = Lect. Notes. Comput. Sc. Human-computer Interaction Series = Hum Com Int Human-computer Interaction Series = Hum. Com. Int. Human-computer Interaction Series = Hum-comput Int-sprin Human-computer Interaction Series = Hum-comput. Int-sprin. Human-computer Interaction Symposium = Int Fed Info Proc Human-computer Interaction Symposium = Int. Fed. Info. Proc. Human-computer Interaction, Vol 1 = Adv Hum Fact Ergon Human-computer Interaction, Vol 1 = Adv. Hum. Fact. Ergon. Human-computer Interaction, Vol 2 = Adv Hum Fact Ergon Human-computer Interaction, Vol 2 = Adv. Hum. Fact. Ergon. Human-computer Interaction With Mobile Devices and Services = Lect Notes Comput Sc Human-computer Interaction With Mobile Devices and Services = Lect. Notes. Comput. Sc. Human Computer Interaction With Mobile Devices = Lect Notes Comput Sc Human Computer Interaction With Mobile Devices = Lect. Notes. Comput. Sc. Human-computer Systems Interaction: Backgrounds and Applications = Adv Intell Soft Comp Human-computer Systems Interaction: Backgrounds and Applications = Adv. Intell. Soft. Comp. Human-computer Systems Interaction: Backgrounds and Applications = Adv Intel Soft Compu Human-computer Systems Interaction: Backgrounds and Applications = Adv. Intel. Soft. Compu. Human Condition = Dev Primatol-prog Pr Human Condition = Dev. Primatol-prog. Pr. Human Context = Hum Context Human Context = Hum. Context Human Control of Technical Equipment 2 = Vdi Bericht Human Control of Technical Equipment 2 = Vdi. Bericht. Human Creation Between Reality and Illusion = Anal Hus Yb Human Creation Between Reality and Illusion = Anal. Hus. Yb. Human Cytomegalovirus = Curr Top Microbiol Human Cytomegalovirus = Curr. Top. Microbiol. Human Detection and Positive Identification: Methods and Technologies = P Soc Photo-opt Ins Human Detection and Positive Identification: Methods and Technologies = P. Soc. Photo-opt. Ins. Human Development and Social Power = Routl Cont S Asia Se Human Development and Social Power = Routl. Cont. S. Asia. Se. Human development = Hum Dev Human Development = Hum Dev Human Development = Hum. Dev. Human-dimensions of Human-computer Interaction: Balancing The Hci Equation = Future Learn Human-dimensions of Human-computer Interaction: Balancing The Hci Equation = Future. Learn. Human Ear Recognition By Computer = Adv Pattern Recognit Human Ear Recognition By Computer = Adv. Pattern. Recognit. Human & Ecological Risk Assessment = Hum. Ecol. Risk Assess. Human ecology: an interdisciplinary journal = Hum Ecol Interdiscip J Human ecology = Hum Ecol Human Ecology = Hum Ecol Human Ecology = Hum. Ecol. Human Ecology Review = Hum Ecol Rev Human Ecology Review = Hum. Ecol. Rev. Humane health care = Hum Health Care Humane health care international = Hum Health Care Int Human Embryonic Stem Cell Protocols, Second Edition = Methods Mol Biol Human Embryonic Stem Cell Protocols, Second Edition = Methods. Mol. Biol. Humane medicine = Humane Med Humane Medicine = Hum Med Humane Medicine = Hum. Med. Human Endometrium = Ann Ny Acad Sci Human Endometrium = Ann. Ny. Acad. Sci. Human Environmental Interactions: Issues and Concerns in Upper Lapland, Finland = U Lap A C R Human Environmental Interactions: Issues and Concerns in Upper Lapland, Finland = U. Lap. A. C. R. Human Eosinophils: Biological and Clinical Aspects = Chem Immunol Human Eosinophils: Biological and Clinical Aspects = Chem. Immunol. Human Error and System Design and Management = Lect Notes Contr Inf Human Error and System Design and Management = Lect. Notes. Contr. Inf. Human Error, Safety and Systems Development = Int Fed Info Proc Human Error, Safety and Systems Development = Int. Fed. Info. Proc. Human Error, Safety and Systems Development = Lect Notes Comput Sc Human Error, Safety and Systems Development = Lect. Notes. Comput. Sc. Human events = Hum Events Human Evolution, Behavior, and Intelligence = Hum Ev Beh & Intell Human Evolution, Behavior, and Intelligence = Hum. Ev. Beh. &. Intell. Human Evolution Series = Human Evolut Ser Human Evolution Series = Human Evolut. Ser. Human & experimental toxicology = Hum Exp Toxicol Human & Experimental Toxicology = Hum Exp Toxicol Human & Experimental Toxicology = Hum. Exp. Toxicol. Human Exposure to Pesticide Residues, Natural Toxins and Gmos: Real and Perceived Risks = Bcpc Symp Ser Human Exposure to Pesticide Residues, Natural Toxins and Gmos: Real and Perceived Risks = Bcpc. Symp. Ser. Human Exposure to Pollutants Via Dermal Absorption and Inhalation = Environ Pollut Ser Human Exposure to Pollutants Via Dermal Absorption and Inhalation = Environ. Pollut. Ser. Human Face of The Urban Environment = Environ Sust Dev P Human Face of The Urban Environment = Environ. Sust. Dev. P. Human Factor-london = Hum Factor-london Human Factor-london = Hum. Factor-london Human Factors and Ergonomics = Hum Factors Ergon Human Factors and Ergonomics = Hum. Factors Ergon. Human Factors and Ergonomics in Manufacturing = Hum Factor Ergon Man Human Factors and Ergonomics in Manufacturing = Hum. Factor. Ergon. Man. Human Factors and Ergonomics in Manufacturing = Hum Factors Ergonom Human Factors and Ergonomics in Manufacturing = Hum. Factors Ergonom. Human Factors and Ergonomics in Manufacturing & Service Industries = Hum Factor Ergon Man Human Factors and Ergonomics in Manufacturing & Service Industries = Hum. Factor. Ergon. Man. Human Factors and Ergonomics in Manufacturing & Service Industries = Hum. Factors Ergon. Manuf. Serv. Ind. Human Factors and Ergonomics Society Annual Meeting Proceedings = Hum Fac Erg Soc P Human Factors and Ergonomics Society Annual Meeting Proceedings = Hum. Fac. Erg. Soc. P. Human factors = Hum Factors Human Factors=Hum Factors;; Human Factors = Hum Factors Human Factors = Hum. Factors Human Factors in Information Systems : An Organizational Perspective = Human Compu Human Factors in Information Systems : An Organizational Perspective = Human Compu. Human Factors in Information Systems: Emerging Theoretical Bases = Human Compu Human Factors in Information Systems: Emerging Theoretical Bases = Human Compu. Human Factors in Information Technology = Hum Fac Inf Human Factors in Information Technology = Hum. Fac. Inf. Human Factors Society Annual Meeting Proceedings = Proc Hum Fact Soc An Human Factors Society Annual Meeting Proceedings = Proc. Hum. Fact. Soc. An. Human Fertility and Reproduction: The Oocyte, The Embryo, and The Uterus = Ann Ny Acad Sci Human Fertility and Reproduction: The Oocyte, The Embryo, and The Uterus = Ann. Ny. Acad. Sci. Human fertility (Cambridge, England) = Hum Fertil (Camb) Human fertility = Hum Fertil Human Fertility = Hum Fertil Human Fertility = Hum. Fertil. Human Gene Therapy: Current Opportunities and Future Trends = E Schering Res Fdn W Human Gene Therapy: Current Opportunities and Future Trends = E. Schering. Res. Fdn. W. Human gene therapy = Hum Gene Ther Human Gene Therapy=Hum Gene Ther;; Human Gene Therapy = Hum Gene Ther Human Gene Therapy = Hum. Gene Ther. Human Genetic Information : Science, Law and Ethics = Ciba F Symp Human Genetic Information : Science, Law and Ethics = Ciba. F. Symp. Human genetics = Hum Genet Human Genetics=Hum Genet;; Human Genetics = Hum Genet Human Genetics = Hum. Genet. Human genetics. Supplement = Hum Genet Suppl Human Genetics. Supplement = Hum. Genet. Suppl. Humangenetik = Humangenetik Human Gene Transfer = Colloq Inse Human Gene Transfer = Colloq. Inse. Human Genome: Features, Variations and Genetic Disorders = Gen-res Issues Human Genome: Features, Variations and Genetic Disorders = Gen-res. Issues. Human Genome News = Hum Genome News Human Genome News = Hum. Genome News Human genome news / National Center for Human Genome Research, National Institutes of Health = Hum Genome News Human genomics = Hum Genomics Human Genomics = Hum. Genomics Human Growth and Development: An Introduction for Social Workers = Stud Soc Work Human Growth and Development: An Introduction for Social Workers = Stud. Soc. Work. Human heredity = Hum Hered Human Heredity=Hum Hered;; Human Heredity = Hum Hered Human Heredity = Hum. Hered. Human Hypothalamus in Health and Disease = Prog Brain Res Human Hypothalamus in Health and Disease = Prog. Brain. Res. Human immunology = Hum Immunol Human Immunology=Hum Immunol;; Human Immunology = Hum Immunol Human Immunology = Hum. Immunol. Human Immunology: Patient-based Research = Ann Ny Acad Sci Human Immunology: Patient-based Research = Ann. Ny. Acad. Sci. Human Impact On Erosion and Sedimentation = Iahs-aish P Human Impact On Erosion and Sedimentation = Iahs-aish. P. Human Intelligence and Medical Illness: Assessing The Flynn Effect = Springer Ser Hum Exc Human Intelligence and Medical Illness: Assessing The Flynn Effect = Springer. Ser. Hum. Exc. Human Interactions With The Geosphere: The Geoarchaeological Perspective = Geol Soc Spec Publ Human Interactions With The Geosphere: The Geoarchaeological Perspective = Geol. Soc. Spec. Publ. Human Interaction With Complex Systems: Conceptual Principles and Design Practice = Kluwer Int Ser Eng C Human Interaction With Complex Systems: Conceptual Principles and Design Practice = Kluwer. Int. Ser. Eng. C. Human Interactive Proofs, Proceedings = Lect Notes Comput Sc Human Interactive Proofs, Proceedings = Lect. Notes. Comput. Sc. Human Interface and The Management of Information: Designing Information Environments, Pt I = Lect Notes Comput Sc Human Interface and The Management of Information: Designing Information Environments, Pt I = Lect. Notes. Comput. Sc. Human Interface and The Management of Information: Information and Interaction, Pt Ii = Lect Notes Comput Sc Human Interface and The Management of Information: Information and Interaction, Pt Ii = Lect. Notes. Comput. Sc. Human Interface and The Management of Information: Interacting in Information Environments, Pt 2, Proceedings = Lect Notes Comput Sc Human Interface and The Management of Information: Interacting in Information Environments, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Human Interface and The Management of Information: Methods, Techniques and Tools in Information Design, Pt 1, Proceedings = Lect Notes Comput Sc Human Interface and The Management of Information: Methods, Techniques and Tools in Information Design, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Humanismus Und Renaissance in Augsburg: Kulturgeschichte Einer Stadt Zwischen Spatmittelalter Und Dreissigjahrigem Krieg = Fruhe Neuzeit-stud D Humanismus Und Renaissance in Augsburg: Kulturgeschichte Einer Stadt Zwischen Spatmittelalter Und Dreissigjahrigem Krieg = Fruhe. Neuzeit-stud. D. Humanismus und Technik Jahrbuch = Humanismus Tech Humanist = Humanist Humanistica Lovaniensia = HumLov Humanistische Bildung = HumBild Humanists and Their Libraries = Trav I Etud Humanists and Their Libraries = Trav. I. Etud. Humanist Satire = Trav I Etud Humanist Satire = Trav. I. Etud. Humanitarian Aid in Post-soviet Countries: An Anthropological Perspective = Cent Asian Stud Ser Humanitarian Aid in Post-soviet Countries: An Anthropological Perspective = Cent. Asian. Stud. Ser. Humanitas = Humanitas Humanitas = Humanitas (Monterey N L) Humanities Association Review-revue De L Association Des Humanites = Hum Assoc Rev Humanities Association Review-revue De L Association Des Humanites = Hum. Assoc. Rev. Humanities in Society = Hum Soc Humanities in Society = Hum. Soc. Humanities report = Humanit Rep Humanities Series = Human Ser Humanities Series = Human. Ser. Humanity & society = Humanity Soc Humanized Mice = Curr Top Microbiol Humanized Mice = Curr. Top. Microbiol. Human Language Technology: Challenges of The Information Society = Lect Notes Artif Int Human Language Technology: Challenges of The Information Society = Lect. Notes. Artif. Int. Human Learning = Hum Learn Human Learning = Hum. Learn. Human Longevity, Individual Life Duration, and The Growth of The Oldest-old Population = Int Stud Popul Human Longevity, Individual Life Duration, and The Growth of The Oldest-old Population = Int. Stud. Popul. Human Lymphocyte Differentiation = Hum Lymphocyte Diff Human Lymphocyte Differentiation = Hum. Lymphocyte Diff. Human Machine Interaction: Research Results of The Mmi Program = Lect Notes Comput Sc Human Machine Interaction: Research Results of The Mmi Program = Lect. Notes. Comput. Sc. Human Medicinal Agents From Plants = Acs Sym Ser Human Medicinal Agents From Plants = Acs. Sym. Ser. Human Missions to Mars: Enabling Technologies for Exploring The Red Planet = S-p B Astronaut Eng Human Missions to Mars: Enabling Technologies for Exploring The Red Planet = S-p. B. Astronaut. Eng. Human molecular genetics = Hum Mol Genet Human Molecular Genetics=Hum Mol Genet;; Human Molecular Genetics = Hum Mol Genet Human Molecular Genetics = Hum. Mol. Genet. Human Motion - Understanding, Modeling, Capture and Animation, Proceedings = Lect Notes Comput Sc Human Motion - Understanding, Modeling, Capture and Animation, Proceedings = Lect. Notes. Comput. Sc. Human Motion: Understanding, Modelling, Capture, and Animation = Comput Imaging Vis Human Motion: Understanding, Modelling, Capture, and Animation = Comput. Imaging. Vis. Human Motor Development in Individuals With and Without Disabilities = Disabil Disab-iss La Human Motor Development in Individuals With and Without Disabilities = Disabil. Disab-iss. La. Human Movement Science = Hum Movement Sci Human Movement Science = Hum. Movement Sci. Human movement science = Hum Mov Sci Human Mummies = Man In Ice Human Mummies = Man. In. Ice. Human Muscular Function During Dynamic Exercise = Med Sport Sci Human Muscular Function During Dynamic Exercise = Med. Sport. Sci. Human mutation = Hum Mutat Human Mutation=Hum Mutat;; Human Mutation = Hum Mutat Human Mutation = Hum. Mutat. Human Nasolacrimal Ducts = Adv Anat Embryol Cel Human Nasolacrimal Ducts = Adv. Anat. Embryol. Cel. Human Nature-an Interdisciplinary Biosocial Perspective = Hum Nature-int Bios Human Nature-an Interdisciplinary Biosocial Perspective = Hum. Nature-int. Bios. Human nature (Hawthorne, N.Y.) = Hum Nat Human Nature = Hum Nature Human Nature = Hum. Nature Human Nature in Rural Tuscany: An Early Modern History = Ital Ital Am Stud Human Nature in Rural Tuscany: An Early Modern History = Ital. Ital. Am. Stud. Human neurobiology = Hum Neurobiol Human Neurobiology = Hum Neurobiol Human Neurobiology = Hum. Neurobiol. Human nutrition. Applied nutrition = Hum Nutr Appl Nutr Human Nutrition-applied Nutrition = Hum Nutr-appl Nutr Human Nutrition-applied Nutrition = Hum. Nutr-appl. Nutr. Human Nutrition. Applied Nutrition = Hum. Nutr. Appl. Nutr. Human nutrition. Clinical nutrition = Hum Nutr Clin Nutr Human Nutrition-clinical Nutrition = Hum Nutr-clin Nutr Human Nutrition-clinical Nutrition = Hum. Nutr-clin. Nutr. Human Nutrition. Clinical Nutrition = Hum. Nutr. Clin. Nutr. Human Ochratoxicosis and Its Pathologies = Colloq Inse Human Ochratoxicosis and Its Pathologies = Colloq. Inse. Humanomics=Humanomics Human, Organizational, and Social Dimensions of Information Systems Development = Ifip Trans A Human, Organizational, and Social Dimensions of Information Systems Development = Ifip. Trans. A. Human organization = Hum Organ Human Organization = Hum Organ Human Organization = Hum. Organ. Human Origins and Environmental Backgrounds = Dev Primatol Human Origins and Environmental Backgrounds = Dev. Primatol. Human Origins and Environmental Backgrounds = Dev Primatol-prog Pr Human Origins and Environmental Backgrounds = Dev. Primatol-prog. Pr. Human Papillomavirus (hpv) Involvement in Esophageal Carcinogenesis = Cancer Etiol Diagn T Human Papillomavirus (hpv) Involvement in Esophageal Carcinogenesis = Cancer. Etiol. Diagn. T. Human pathology = Hum Pathol Human Pathology=Hum Pathol;; Human Pathology = Hum Pathol Human Pathology = Hum. Pathol. Human Performance: Driver Behavior, Road Design, and Intelligent Transportation Systems = Transport Res Rec Human Performance: Driver Behavior, Road Design, and Intelligent Transportation Systems = Transport. Res. Rec. Human Performance = Hum Perform Human Performance = Hum. Perform. Human performance in extreme environments : the journal of the Society for Human Performance in Extreme Environments = Hum Perf Extrem Environ Human Performance: Models, Intelligent Vehicle Initiative, Traveler Advisory and Information Systems = Transport Res Rec Human Performance: Models, Intelligent Vehicle Initiative, Traveler Advisory and Information Systems = Transport. Res. Rec. Human Performance Models Revealed in The Global Context = Adult Educ Spec Top Human Performance Models Revealed in The Global Context = Adult. Educ. Spec. Top. Human Performance; Simulation and Visualization = Transport Res Rec Human Performance; Simulation and Visualization = Transport. Res. Rec. Human Performance, Simulation, User Information Systems , and Older Person Safety and Mobility = Transport Res Rec Human Performance, Simulation, User Information Systems , and Older Person Safety and Mobility = Transport. Res. Rec. Human Performance, User Information, and Highway Design = Transport Res Rec Human Performance, User Information, and Highway Design = Transport. Res. Rec. Human Perspectives in The Internet Society: Culture, Psychology and Gender = Adv Info Comm Tech Human Perspectives in The Internet Society: Culture, Psychology and Gender = Adv. Info. Comm. Tech. Human physiology = Hum Physiol Human Physiology = Hum. Physiol. Human Placenta: Structure and Development, Circulation and Functions = Preg Infants-med Psy Human Placenta: Structure and Development, Circulation and Functions = Preg. Infants-med. Psy. Human Population Dynamics: Cross-disciplinary Perspectives = Biosocial S Human Population Dynamics: Cross-disciplinary Perspectives = Biosocial. S. Human Population: Its Influences On Biological Diversity = Ecol Stud-anal Synth Human Population: Its Influences On Biological Diversity = Ecol. Stud-anal. Synth. Humanprojekt-interdisziplinare Anthropologie = Humanprojekt-interdi Humanprojekt-interdisziplinare Anthropologie = Humanprojekt-interdi. Human Psychopharmacology-clinical and Experimental = Hum Psychopharm Clin Human Psychopharmacology-clinical and Experimental = Hum. Psychopharm. Clin. Human psychopharmacology = Hum Psychopharmacol Human Recognition At A Distance in Video = Adv Pattern Recognit Human Recognition At A Distance in Video = Adv. Pattern. Recognit. Human Relations = Hum Relat Human Relations = Hum. Relat. Human relations; studies towards the integration of the social sciences = Hum Relat Human Reliability and Error in Transportation Systems = Springer Ser Reliab Human Reliability and Error in Transportation Systems = Springer. Ser. Reliab. Human Remains: Conservation, Retrieval, and Analysis, Proceedings = Brit Archaeol Rep In Human Remains: Conservation, Retrieval, and Analysis, Proceedings = Brit. Archaeol. Rep. In. Human reproduction and genetic ethics = Hum Reprod Genet Ethics Human Reproduction=Hum Reprod;; Human Reproduction = Hum Reprod Human Reproduction = Hum. Reprod. Human Reproduction / = Int Congr Ser Human Reproduction / = Int. Congr. Ser. Human reproduction (Oxford, England) = Hum Reprod Human reproduction update = Hum Reprod Update Human Reproduction Update=Hum Reprod Update;; Human Reproduction Update = Hum Reprod Update Human Reproduction Update = Hum. Reprod. Update Human Reproductive Ecology = Ann Ny Acad Sci Human Reproductive Ecology = Ann. Ny. Acad. Sci. Human Reproductive System Anatomy Roles and Disorders = Hum Reprod Syst Anat Human Reproductive System Anatomy Roles and Disorders = Hum. Reprod. Syst. Anat. Human research report = Hum Res Rep Human Resource Development in The Public Sector: The Case of Health and Social Care = Routl Stud Hum Resou Human Resource Development in The Public Sector: The Case of Health and Social Care = Routl. Stud. Hum. Resou. Human Resource Development Quarterly=Human Resource Devel. Quart. Human Resource Development Quarterly = Hum Resour Dev Q Human Resource Development Quarterly = Hum. Resour. Dev. Q. Human Resource Management : An International Comparison = De Gruy St Human Resource Management : An International Comparison = De. Gruy. St. Human Resource Management Ethics = Ethics Pract Human Resource Management Ethics = Ethics Pract. Human Resource Management = Hum Resource Manage Human Resource Management = Hum. Resource Manage. Human resource management = Hum Resour Manage Human Resource Management = Hum Resour Manage Human Resource Management = Hum. Resour. Manage. Human Resource Management = Hum Resour Manage-us Human Resource Management = Hum. Resour. Manage-us. Human Resource Management Journal = Hum Resour Manag J Human Resource Management Journal = Hum. Resour. Manag. J. Human Resource Management Review = Hum Resour Manage R Human Resource Management Review = Hum. Resour. Manage. R. Human Resource Perspectives for The 1990s = Ucla Iir C Human Resource Perspectives for The 1990s = Ucla. Iir. C. Human Resource Planning for The Mining Industry = P Centr Res Human Resource Planning for The Mining Industry = P. Centr. Res. Human Resources Development Series = Hum Res Dev Human Resources Development Series = Hum. Res. Dev. Human resources for health = Hum Resour Health Human Resources for Health = Hum Resour Health Human Resources for Health = Hum. Resour. Health Human Resources Management in China: Cases in Hr Practice = Chandos Asian Stud Human Resources Management in China: Cases in Hr Practice = Chandos. Asian. Stud. Human Resource Strategies for The High Growth Entrepreneurial Firm = Res Hum R M Human Resource Strategies for The High Growth Entrepreneurial Firm = Res. Hum. R. M. Human Retroviruses / = Ucla Sym Bi Human Retroviruses / = Ucla. Sym. Bi. Human Rights and Foreign Aid: for Love Or Money? = Routl Res Hum Rights Human Rights and Foreign Aid: for Love Or Money? = Routl. Res. Hum. Rights Human Rights and Religious Values = Curr Encoun Human Rights and Religious Values = Curr. Encoun. Human Rights and The Moral Responsibilities of Corporate and Public Sector Organisations = Issues Bus Ethics Human Rights and The Moral Responsibilities of Corporate and Public Sector Organisations = Issues. Bus. Ethics. Human Rights and The Private Sphere = U Tex Aust Stud Fore Human Rights and The Private Sphere = U. Tex. Aust. Stud. Fore. Human Rights and Us Foreign Policy = Routl Res Hum Rights Human Rights and Us Foreign Policy = Routl. Res. Hum. Rights Human rights (Chicago, Ill.) = Human Rights Human Rights = Hum Rights Human Rights = Hum. Rights Human Rights in Asia = Routledge Law Asia Human Rights in Asia = Routledge. Law. Asia Human Rights in Domestic Law and Development Assistance Policies of The Nordic Countries = Int Stud H Human Rights in Domestic Law and Development Assistance Policies of The Nordic Countries = Int. Stud. H. Human Rights in Latin America: A Politics of Terrror and Hope = Pa Stud Hum Rights Human Rights in Latin America: A Politics of Terrror and Hope = Pa. Stud. Hum. Rights Human Rights in The Arab World: Independent Voices = Pa Stud Hum Rights Human Rights in The Arab World: Independent Voices = Pa. Stud. Hum. Rights Human Rights in Turkey = Pa Stud Hum Rights Human Rights in Turkey = Pa. Stud. Hum. Rights Human Rights Ngos in East Africa: Political and Normative Tensions = Pa Stud Hum Rights Human Rights Ngos in East Africa: Political and Normative Tensions = Pa. Stud. Hum. Rights Human rights quarterly = Hum Rights Q Human Rights Quarterly = Hum Rights Quart Human Rights Quarterly = Hum. Rights Quart. Human Rights, The Rule of Law, and Development in Africa = Pa Stud Hum Rights Human Rights, The Rule of Law, and Development in Africa = Pa. Stud. Hum. Rights. Humans and Machines in Space : The Vision, The Challenges, The Payoff = Sci Tech Humans and Machines in Space : The Vision, The Challenges, The Payoff = Sci. Tech. Humans As Geologic Agents = Rev Eng Geol Humans As Geologic Agents = Rev. Eng. Geol. Humans At The End of The Ice Age = Interd Cont Humans At The End of The Ice Age = Interd. Cont. Humanschwingungen = Vdi Bericht Humanschwingungen = Vdi. Bericht. Human Security and The Chinese State: Historical Transformations and The Modern Quest for Sovereignty = Routl Contemp China Human Security and The Chinese State: Historical Transformations and The Modern Quest for Sovereignty = Routl. Contemp. China. Human Security: Concepts and Implications = Routl Adv Int Relat Human Security: Concepts and Implications = Routl. Adv. Int. Relat. Human Sexuality Series = Hum Sex Ser Human Sexuality Series = Hum. Sex. Ser. Humans in Outer Space - Interdisciplinary Odysseys = Stud Space Policy Humans in Outer Space - Interdisciplinary Odysseys = Stud. Space Policy. Human Sleep and Cognition, Part I: Basic Research = Prog Brain Res Human Sleep and Cognition, Part I: Basic Research = Prog. Brain. Res. Human Society and The Internet, Proceedings = Lect Notes Comput Sc Human Society and The Internet, Proceedings = Lect. Notes. Comput. Sc. Human Sperm Acrosome Reaction = Colloq Inse Human Sperm Acrosome Reaction = Colloq. Inse. Human Spermatozoa: Maturation, Capacitation and Abnormalities = Hum Reprod Syst Anat Human Spermatozoa: Maturation, Capacitation and Abnormalities = Hum. Reprod. Syst. Anat. Human studies = Hum Stud Human Studies = Hum Stud Human Studies = Hum. Stud. Humans-with-media and The Reorganization of Mathematical Thinking: Information and Communication Technologies, Modeling, Visualization and Experimentation = Math Educ Lib Humans-with-media and The Reorganization of Mathematical Thinking: Information and Communication Technologies, Modeling, Visualization and Experimentation = Math. Educ. Lib. Human Systems Management = Hum Syst Manage Human Systems Management = Hum. Syst. Manage. Human toxicology = Hum Toxicol Human Toxicology = Hum Toxicol Human Toxicology = Hum. Toxicol. Human Tumor Markers = Int Congr Ser Human Tumor Markers = Int. Congr. Ser. Human vaccines = Hum Vaccin Human Vaccines = Hum. Vaccin. Human Vaccines = Hum Vaccines Human Vaccines = Hum. Vaccines Human Vibration: Effects On Health - Performance - Comfort = Vdi Bericht Human Vibration: Effects On Health - Performance - Comfort = Vdi. Bericht. Human Vision and Electronic Imaging Iii = P Soc Photo-opt Ins Human Vision and Electronic Imaging Iii = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Ii = P Soc Photo-opt Ins Human Vision and Electronic Imaging Ii = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Iv = Proc Spie Human Vision and Electronic Imaging Iv = Proc. Spie. Human Vision and Electronic Imaging Iv = P Soc Photo-opt Ins Human Vision and Electronic Imaging Iv = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Ix = Proc Spie Human Vision and Electronic Imaging Ix = Proc. Spie. Human Vision and Electronic Imaging Ix = P Soc Photo-opt Ins Human Vision and Electronic Imaging Ix = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging : Models, Methods, and Applications = P Soc Photo-opt Ins Human Vision and Electronic Imaging : Models, Methods, and Applications = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging = P Soc Photo-opt Ins Human Vision and Electronic Imaging = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Viii = Proc Spie Human Vision and Electronic Imaging Viii = Proc. Spie. Human Vision and Electronic Imaging Viii = P Soc Photo-opt Ins Human Vision and Electronic Imaging Viii = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Vii = Proc Spie Human Vision and Electronic Imaging Vii = Proc. Spie. Human Vision and Electronic Imaging Vii = P Soc Photo-opt Ins Human Vision and Electronic Imaging Vii = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Vi = Proc Spie Human Vision and Electronic Imaging Vi = Proc. Spie. Human Vision and Electronic Imaging Vi = P Soc Photo-opt Ins Human Vision and Electronic Imaging Vi = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging V = Proc Spie Human Vision and Electronic Imaging V = Proc. Spie. Human Vision and Electronic Imaging V = P Soc Photo-opt Ins Human Vision and Electronic Imaging V = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Xiii = Proc Spie Human Vision and Electronic Imaging Xiii = Proc. Spie. Human Vision and Electronic Imaging Xii = Proc Spie Human Vision and Electronic Imaging Xii = Proc. Spie. Human Vision and Electronic Imaging Xii = P Soc Photo-opt Ins Human Vision and Electronic Imaging Xii = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Xi = Proc Spie Human Vision and Electronic Imaging Xi = Proc. Spie. Human Vision and Electronic Imaging Xi = P Soc Photo-opt Ins Human Vision and Electronic Imaging Xi = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging X = Proc Spie Human Vision and Electronic Imaging X = Proc. Spie. Human Vision and Electronic Imaging X = P Soc Photo-opt Ins Human Vision and Electronic Imaging X = P. Soc. Photo-opt. Ins. Human Vision and Electronic Imaging Xvi = Proc Spie Human Vision and Electronic Imaging Xvi = Proc. Spie. Human Vision and Electronic Imaging Xv = Proc Spie Human Vision and Electronic Imaging Xv = Proc. Spie. Human Vision and Electronic Imaging Xv = P Soc Photo-opt Ins Human Vision and Electronic Imaging Xv = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display Iii = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display Iii = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display Ii = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display Ii = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display Iv = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display Iv = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display Vi = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display Vi = P. Soc. Photo-opt. Ins. Human Vision, Visual Processing, and Digital Display V = P Soc Photo-opt Ins Human Vision, Visual Processing, and Digital Display V = P. Soc. Photo-opt. Ins. Human Well-being: Concept and Measurement = Stud Dev Econ Policy Human Well-being: Concept and Measurement = Stud. Dev. Econ. Policy. Human Work Interaction Design: Designing for Human Work = Int Fed Info Proc Human Work Interaction Design: Designing for Human Work = Int. Fed. Info. Proc. Human Work Interaction Design: Usability in Social, Cultural and Organizational Contexts = Ifip Adv Inf Comm Te Human Work Interaction Design: Usability in Social, Cultural and Organizational Contexts = Ifip. Adv. Inf. Comm. Te. Humboldt journal of social relations = Humboldt J Soc Relat Hume On Motivation and Virtue: New Essays = Philos Depth Hume On Motivation and Virtue: New Essays = Philos. Depth. Humic and Fulvic Acids = Acs Sym Ser Humic and Fulvic Acids = Acs. Sym. Ser. Humic Substances in The Aquatic and Terrestrial Environment = Lect Notes Earth Sci Humic Substances in The Aquatic and Terrestrial Environment = Lect. Notes. Earth. Sci. Humic Substances in the Environment = Humic Subst. Environ. Humic Substances: Structures, Models and Functions = Roy Soc Ch Humic Substances: Structures, Models and Functions = Roy. Soc. Ch. Humic Substances: Versatile Components of Plants, Soil and Water = Roy Soc Ch Humic Substances: Versatile Components of Plants, Soil and Water = Roy. Soc. Ch. Humiliation, Degradation, Dehumanization: Human Dignity Violated = Libr Ethics Appl Phi Humiliation, Degradation, Dehumanization: Human Dignity Violated = Libr. Ethics. Appl. Phi. Humoral Immunity in Kidney Transplantation: What Clinicians Need to Know = Contrib Nephrol Humoral Immunity in Kidney Transplantation: What Clinicians Need to Know = Contrib. Nephrol. Humor-international Journal of Humor Research = Humor Humor Research = Humor Res Humor Research = Humor Res. Humus, Its Structure and Role in Agriculture and Environment = Dev Agric Manag For Humus, Its Structure and Role in Agriculture and Environment = Dev. Agric. Manag. For. Hunan Annals of Mathematics = Hunan Ann. Math. Hunan Daxue Xuebao = Hunan Daxue Xuebao Hu-Nan I Ko Ta Hsueh Hsueh Pao Bulletin of Hunan Medical University (Chang-Sha=Hunan I Ko Ta Hsueh Hsueh Pao;; Hunan Jiaoyu Xueyuan = Hunan Jiaoyu Xueyuan Xuebao (Ziran Kexue) Hunan nong ye da xue xue bao = Journal of Hunan Agricultural University|Hunan Nong Ye Da Xue Xue Bao Hunan Yi Ke Da Xue Xue Bao (Bulletin of Hunan Medical University) = Hunan Yi Ke Da Xue Xue Bao Hundred Years War, Vol Iii: Divided Houses = Middle Ages Ser Hundred Years War, Vol Iii: Divided Houses = Middle. Ages. Ser. Hungarian Journal of Industrial Chemistry = Hung J Ind Chem Hungarian Journal of Industrial Chemistry = Hung. J. Ind. Chem. Hungarian Quarterly = Hung Quart Hungarian Quarterly = Hung. Quart. Hungarian studies review : HSR = Hung Stud Rev Hungarica acta physiologica = Hung Acta Physiol Hungary and Finland in The 20th Century = Studia Historica Hungary and Finland in The 20th Century = Studia. Historica. Hunger and Poverty-causes Impacts and Eradication = Hunger Poverty Cause Hunger and Poverty-causes Impacts and Eradication = Hunger Poverty. Cause. Hunter-gatherers: An Interdisciplinary Perspective = Biosocial S Hunter-gatherers: An Interdisciplinary Perspective = Biosocial. S. Huntia; a yearbook of botanical and horticultural bibliography = Huntia Hunting for The Dark: The Hidden Side of Galaxy Formation = Aip Conf Proc Hunting for The Dark: The Hidden Side of Galaxy Formation = Aip. Conf. Proc. Huntington Library Quarterly = Huntington Libr Q Huntington Library Quarterly = Huntington Libr. Q. Husserl = Routl Philos Husserl = Routl. Philos. Husserl's Logical Investigations in The New Century: Western and Chinese Perspectives = Contr Phenomenol Husserl's Logical Investigations in The New Century: Western and Chinese Perspectives = Contr. Phenomenol. Husserl Studies = Husserl Stud Husserl Studies = Husserl Stud. Hutnicke Listy = Hutn. Listy Huygens Principle 1690-1990 : Theory and Applications = Stud Math P Huygens Principle 1690-1990 : Theory and Applications = Stud. Math. P. Hvac&r Research = Hvac&r Res Hvac&r Research = Hvac&r Res. Hwahak Konghak = Hwahak Konghak Hwahak Kwa Kongop Ui Chinbo = Hwahak Kwa Kongop Ui Chinbo Hyaluronan Metabolism in Skin = Prog Histochem Cytoc Hyaluronan Metabolism in Skin = Prog. Histochem. Cytoc. Hybrid Adhesive Joints = Adv Struct Mat Hybrid Adhesive Joints = Adv. Struct. Mat. Hybrid and Novel Imaging and New Optical Instrumentation for Biomedical Applications = Proc Spie Hybrid and Novel Imaging and New Optical Instrumentation for Biomedical Applications = Proc. Spie. Hybrid and Novel Imaging and New Optical Instrumentation for Biomedical Applications = P Soc Photo-opt Ins Hybrid and Novel Imaging and New Optical Instrumentation for Biomedical Applications = P. Soc. Photo-opt. Ins. Hybrid and Real-time Systems = Lect Notes Comput Sc Hybrid and Real-time Systems = Lect. Notes. Comput. Sc. Hybrid Artificial Intelligence Systems = Lect Notes Artif Int Hybrid Artificial Intelligence Systems = Lect. Notes. Artif. Int. Hybrid Artificial Intelligence Systems, Pt 1 = Lect Notes Artif Int Hybrid Artificial Intelligence Systems, Pt 1 = Lect. Notes. Artif. Int. Hybrid Artificial Intelligence Systems, Pt 2 = Lect Notes Artif Int Hybrid Artificial Intelligence Systems, Pt 2 = Lect. Notes. Artif. Int. Hybrid Drives = Vdi Bericht Hybrid Drives = Vdi. Bericht. Hybrid Estimation of Complex Systems = Lect Notes Contr Inf Hybrid Estimation of Complex Systems = Lect. Notes. Contr. Inf. Hybrid Evolutionary Algorithms = Stud Comput Intell Hybrid Evolutionary Algorithms = Stud. Comput. Intell. Hybrid Fiber-coax Systems = P Soc Photo-opt Ins Hybrid Fiber-coax Systems = P. Soc. Photo-opt. Ins. Hybrid Humour = Int Forsch Allg Vgl Hybrid Humour = Int. Forsch. Allg. Vgl. Hybrid Image and Signal Processing Iii = P Soc Photo-opt Ins Hybrid Image and Signal Processing Iii = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing Ii = P Soc Photo-opt Ins Hybrid Image and Signal Processing Ii = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing Iv = P Soc Photo-opt Ins Hybrid Image and Signal Processing Iv = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing Viii = P Soc Photo-opt Ins Hybrid Image and Signal Processing Viii = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing Vii = P Soc Photo-opt Ins Hybrid Image and Signal Processing Vii = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing Vi = P Soc Photo-opt Ins Hybrid Image and Signal Processing Vi = P. Soc. Photo-opt. Ins. Hybrid Image and Signal Processing V = P Soc Photo-opt Ins Hybrid Image and Signal Processing V = P. Soc. Photo-opt. Ins. Hybrid Information Systems = Adv Soft Comp Hybrid Information Systems = Adv. Soft. Comp. Hybrid Intelligent Systems: Analysis and Design = Stud Fuzz Soft Comp Hybrid Intelligent Systems: Analysis and Design = Stud. Fuzz. Soft. Comp. Hybrid Laser-arc Welding = Woodhead Publ Mater Hybrid Laser-arc Welding = Woodhead. Publ. Mater. Hybrid Latex Particles: Preparation With (mini) Emulsion Polymerization = Adv Polym Sci Hybrid Latex Particles: Preparation With (mini) Emulsion Polymerization = Adv. Polym. Sci. Hybrid Learning and Education, Proceedings = Lect Notes Comput Sc Hybrid Learning and Education, Proceedings = Lect. Notes. Comput. Sc. Hybrid Learning = Lect Notes Comput Sc Hybrid Learning = Lect. Notes. Comput. Sc. Hybrid Logic and Its Proof-theory = Appl Log Ser Hybrid Logic and Its Proof-theory = Appl. Log. Ser. Hybrid Metaheuristics: An Emerging Approach to Optimization = Stud Comput Intell Hybrid Metaheuristics: An Emerging Approach to Optimization = Stud. Comput. Intell. Hybrid Metaheuristics = Lect Notes Comput Sc Hybrid Metaheuristics = Lect. Notes. Comput. Sc. Hybrid Metaheuristics, Proceedings = Lect Notes Comput Sc Hybrid Metaheuristics, Proceedings = Lect. Notes. Comput. Sc. Hybrid Methods of Molecular Modeling = Prog Theor Chem Phys Hybrid Methods of Molecular Modeling = Prog. Theor. Chem. Phys. Hybrid Neural Systems = Lect Notes Artif Int Hybrid Neural Systems = Lect. Notes. Artif. Int. Hybridoma (2005) = Hybridoma (Larchmt) Hybridoma and hybridomics = Hybrid Hybridomics Hybridoma and Hybridomics = Hybrid. Hybridomics Hybridoma and Hybridomics = Hybridoma Hybridom Hybridoma and Hybridomics = Hybridoma Hybridom. Hybridoma=Hybridoma;; Hybridoma = Hybridoma Hybrid Optimization: The Ten Years of Cpaior = Springer Ser Optim A Hybrid Optimization: The Ten Years of Cpaior = Springer. Ser. Optim. A. Hybrid Organic-inorganic Composites = Acs Sym Ser Hybrid Organic-inorganic Composites = Acs. Sym. Ser. Hybrid Problems, Hybrid Solutions = Fr Art Int Hybrid Problems, Hybrid Solutions = Fr. Art. Int. Hybrid Random Fields: A Scalabel Approach to Structure and Parameter Learning in Probabilistic Graphical Models = Intel Syst Ref Libr Hybrid Random Fields: A Scalabel Approach to Structure and Parameter Learning in Probabilistic Graphical Models = Intel. Syst. Ref. Libr. Hybrid Self-organizing Modeling Systems = Stud Comput Intell Hybrid Self-organizing Modeling Systems = Stud. Comput. Intell. Hybrid Sovereignty in The Arab Middle East: The Cases of Kuwait, Jordan, and Iraq = Middle E Focus Hybrid Sovereignty in The Arab Middle East: The Cases of Kuwait, Jordan, and Iraq = Middle E. Focus. Hybrid Switching Diffusions: Properties and Applications = Stoch Mod Appl Proba Hybrid Switching Diffusions: Properties and Applications = Stoch. Mod. Appl. Proba. Hybrid Systems: Computation and Control = Lect Notes Comput Sc Hybrid Systems: Computation and Control = Lect. Notes. Comput. Sc. Hybrid Systems: Computation and Control, Proceedings = Lect Notes Comput Sc Hybrid Systems: Computation and Control, Proceedings = Lect. Notes. Comput. Sc. Hybrid Systems Ii = Lect Notes Comput Sc Hybrid Systems Ii = Lect. Notes. Comput. Sc. Hybrid Systems V = Lect Notes Comput Sc Hybrid Systems V = Lect. Notes. Comput. Sc. Hydration and Setting of Cements = Rilem Proc Hydration and Setting of Cements = Rilem. Proc. Hydration Processes in Biology = Nato Adv Sci I A-lif Hydration Processes in Biology = Nato. Adv. Sci. I. A-lif. Hydraulic Conductivity and Waste Contaminant Transport in Soil = Am Soc Test Mater Hydraulic Conductivity and Waste Contaminant Transport in Soil = Am. Soc. Test. Mater. Hydraulic Engineering Software = Hyd Eng Sof Hydraulic Engineering Software = Hyd. Eng. Sof. Hydraulic Engineering Software Vii = Comp Met Water Res Hydraulic Engineering Software Vii = Comp. Met. Water. Res. Hydraulic Engineering Software Viii = Wat Stud Ser Hydraulic Engineering Software Viii = Wat. Stud. Ser. Hydraulic Engineering: Structural Applications, Numerical Modeling and Environmental Impacts = Eng Tools Tech Table Hydraulic Engineering: Structural Applications, Numerical Modeling and Environmental Impacts = Eng. Tools. Tech. Table. Hydraulic Failure Analysis: Fluids, Components, and System Effects = Am Soc Test Mater Hydraulic Failure Analysis: Fluids, Components, and System Effects = Am. Soc. Test. Mater. Hydraulic Information Management = Wat Stud Ser Hydraulic Information Management = Wat. Stud. Ser. Hydraulic Performance Transfer = Vdi Bericht Hydraulic Performance Transfer = Vdi. Bericht. Hydraulic Pneumatic Mechanical Power = Hydraulic Pneu Mec P Hydraulic Pneumatic Mechanical Power = Hydraulic Pneu. Mec. P. Hydraulics & Pneumatics = Hydraulic Pneum Hydraulics & Pneumatics = Hydraulic. Pneum. Hydraulic Tests of Miocene Volcanic Rocks At Yucca Mountain and Pahute Mesa and Implications for Groundwater Flow in The Southwest Nevada Volcanic Field, Nevada and California = Geol Soc Am Spec Pap Hydraulic Tests of Miocene Volcanic Rocks At Yucca Mountain and Pahute Mesa and Implications for Groundwater Flow in The Southwest Nevada Volcanic Field, Nevada and California = Geol. Soc. Am. Spec. Pap. Hydrobiologia = Hydrobiologia Hydrobiological Variability in The Ices Area, 1980 - 1989 = Ices Mar Sc Hydrobiological Variability in The Ices Area, 1980 - 1989 = Ices Mar. Sc. Hydrocarbon and Petroleum Geology of France = Sp Pub Eapg Hydrocarbon and Petroleum Geology of France = Sp. Pub. Eapg. Hydrocarbon Engineering = Hydrocarbon Eng. Hydrocarbon Habitat in Rift Basins = Geol Soc Sp Hydrocarbon Habitat in Rift Basins = Geol. Soc. Sp. Hydrocarbon Migration and Its Near-surface Expression = Aapg Memoir Hydrocarbon Migration and Its Near-surface Expression = Aapg. Memoir. Hydrocarbon Processing = Hydrocarb Process Hydrocarbon Processing = Hydrocarb. Process. Hydrocarbon Processing, International Edition = Hydrocarbon Process., Int. Ed. Hydrocarbons in Contractional Belts = Geol Soc Spec Publ Hydrocarbons in Contractional Belts = Geol. Soc. Spec. Publ. Hydrocarbons in Crystalline Rocks = Geol Soc Spec Publ Hydrocarbons in Crystalline Rocks = Geol. Soc. Spec. Publ. Hydrochemistry and Energy Storage in Aquifers = Comm Hydrol Hydrochemistry and Energy Storage in Aquifers = Comm. Hydrol. Hydrochemistry = Iahs-aish P Hydrochemistry = Iahs-aish. P. Hydrocyclones = Fluid Mec A Hydrocyclones = Fluid. Mec. A. Hydrodynamic Limits of The Boltzmann Equation = Lect Notes Math Hydrodynamic Limits of The Boltzmann Equation = Lect. Notes. Math. Hydrodynamics : Computations, Model Tests and Reality = Dev Mar Tec Hydrodynamics : Computations, Model Tests and Reality = Dev. Mar. Tec. Hydro-ecological Relations in The Delta Waters of The South-west Netherlands = Comm Hydrol Hydro-ecological Relations in The Delta Waters of The South-west Netherlands = Comm. Hydrol. Hydro-ecology: Linking Hydrology and Aquatic Ecology = Iahs-aish P Hydro-ecology: Linking Hydrology and Aquatic Ecology = Iahs-aish. P. Hydroforming for Advanced Manufacturing = Woodhead Publ Mater Hydroforming for Advanced Manufacturing = Woodhead. Publ. Mater. Hydrogels and Biodegradable Polymers for Bioapplications = Acs Sym Ser Hydrogels and Biodegradable Polymers for Bioapplications = Acs. Sym. Ser. Hydrogel Sensors and Actuators = Springer Ser Chem Se Hydrogel Sensors and Actuators = Springer. Ser. Chem. Se. Hydrogen and Helium Recycling At Plasma Facing Materials = Nato Sci Ser Ii Math Hydrogen and Helium Recycling At Plasma Facing Materials = Nato. Sci. Ser. Ii. Math. Hydrogen-based Autonomous Power Systems = Power Syst Hydrogen-based Autonomous Power Systems = Power Syst. Hydrogen-bonded Liquids = Nato Adv Sci I C-mat Hydrogen-bonded Liquids = Nato. Adv. Sci. I. C-mat. Hydrogen Bonded Polymers = Adv Polym Sci Hydrogen Bonded Polymers = Adv. Polym. Sci. Hydrogen Bonding-new Insights = Chall Adv Comput Che Hydrogen Bonding-new Insights = Chall. Adv. Comput. Che. Hydrogen Bond Networks = Nato Adv Sci Inst Se Hydrogen Bond Networks = Nato. Adv. Sci. Inst. Se. Hydrogen Cycle-generation, Storage and Fuel Cells = Mater Res Soc Symp P Hydrogen Cycle-generation, Storage and Fuel Cells = Mater. Res. Soc. Symp. P. Hydrogen-deficient Stars = Astr Soc P Hydrogen-deficient Stars = Astr. Soc. P. Hydrogen Deficient Stars = Astr Soc P Hydrogen Deficient Stars = Astr. Soc. P. Hydrogen Energy: Challenges and Prospects = Rsc Energy Ser Hydrogen Energy: Challenges and Prospects = Rsc. Energy. Ser. Hydrogen Fuel Cells for Road Vehicles = Green Energy Technol Hydrogen Fuel Cells for Road Vehicles = Green. Energy. Technol. Hydrogen Fuel Perspectives = Energ Polic Polit Pr Hydrogen Fuel Perspectives = Energ. Polic. Polit. Pr. Hydrogen in Materials and Vacuum Systems = Aip Conf Proc Hydrogen in Materials and Vacuum Systems = Aip. Conf. Proc. Hydrogen in Matter = Aip Conf Proc Hydrogen in Matter = Aip. Conf. Proc. Hydrogen in Metals Iii = Top Appl Phys Hydrogen in Metals Iii = Top. Appl. Phys. Hydrogen in Metal Systems Ii = Solid State Phenomen Hydrogen in Metal Systems Ii = Solid. State. Phenomen. Hydrogen in Metal Systems Ii = Sol St Phen Hydrogen in Metal Systems Ii = Sol. St. Phen. Hydrogen in Semiconductors and Metals = Mater Res Soc Symp P Hydrogen in Semiconductors and Metals = Mater. Res. Soc. Symp. P. Hydrogen in Semiconductors Ii = Semiconduct Semimet Hydrogen in Semiconductors Ii = Semiconduct. Semimet. Hydrogen in Semiconductors = Mater Res Soc Symp P Hydrogen in Semiconductors = Mater. Res. Soc. Symp. P. Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato Sci Ser Ii-math Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato. Sci. Ser. Ii-math. Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato Sci Ser Ii Math Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato. Sci. Ser. Ii. Math. Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato Security Sci A Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato. Security. Sci. A. Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato Secur Sci Ser A Hydrogen Materials Science and Chemistry of Carbon Nanomaterials = Nato. Secur. Sci. Ser. A. Hydrogen Materials Science and Chemistry of Metal Hydrides = Nato Sci Ser Ii-math Hydrogen Materials Science and Chemistry of Metal Hydrides = Nato. Sci. Ser. Ii-math. Hydrogen Materials Science and Chemistry of Metal Hydrides = Nato Sci Ser Ii Math Hydrogen Materials Science and Chemistry of Metal Hydrides = Nato. Sci. Ser. Ii. Math. Hydrogen Storage Materials: The Characterisation of Their Storage Properties = Green Energy Technol Hydrogen Storage Materials: The Characterisation of Their Storage Properties = Green. Energy. Technol. Hydrogen Technology: Mobile and Portable Applications = Green Energy Technol Hydrogen Technology: Mobile and Portable Applications = Green. Energy. Technol. Hydrogeological Processes in Karst Terranes = Iahs-aish P Hydrogeological Processes in Karst Terranes = Iahs-aish. P. Hydrogeological Regimes and Their Subsurface Thermal Effects = Geoph Monog Series Hydrogeological Regimes and Their Subsurface Thermal Effects = Geoph. Monog. Series. Hydrogeology Journal = Hydrogeol J Hydrogeology Journal = Hydrogeol. J. Hydrogeology Journal = Hydrol. J. Hydro Gis: Theory and Lessons From The Vietnamese Delta = Environ Sci Eng Tech Hydro Gis: Theory and Lessons From The Vietnamese Delta = Environ. Sci. Eng. Tech. Hydrological Basis for Water Resources Management = Iahs-aish P Hydrological Basis for Water Resources Management = Iahs-aish. P. Hydrological Basis of Ecologically Sound Management of Soil and Groundwater = Iahs-aish P Hydrological Basis of Ecologically Sound Management of Soil and Groundwater = Iahs-aish. P. Hydrological, Chemical and Biological Processes of Transformation and Transport of Contaminants in Aquatic Environments = Iahs-aish P Hydrological, Chemical and Biological Processes of Transformation and Transport of Contaminants in Aquatic Environments = Iahs-aish. P. Hydrological Extremes: Understanding, Predicting, Mitigating = Iahs-aish P Hydrological Extremes: Understanding, Predicting, Mitigating = Iahs-aish. P. Hydrological Modelling and The Water Cycle: Coupling The Atmosheric and Hydrological Models = Wtr Sci Tec Libr Hydrological Modelling and The Water Cycle: Coupling The Atmosheric and Hydrological Models = Wtr. Sci. Tec. Libr. Hydrological Models for Environmental Management = Nato Sci S Prt 2 Env Hydrological Models for Environmental Management = Nato. Sci. S. Prt. 2. Env. Hydrological Processes = Hydrol Process Hydrological Processes = Hydrol. Process. Hydrological Processes = Hydrol. Processes Hydrological Research Basins and The Environment = Comm Hydrol Hydrological Research Basins and The Environment = Comm. Hydrol. Hydrological Sciences Bulletin-bulletin Des Sciences Hydrologiques = Hydrol Sci B Hydrological Sciences Bulletin-bulletin Des Sciences Hydrologiques = Hydrol. Sci. B. Hydrological Sciences Bulletin = Hydrol. Sci. Bull. Hydrological Sciences Journal = Hydrol. Sci. J. Hydrological Sciences Journal-journal Des Sciences Hydrologiques = Hydrolog Sci J Hydrological Sciences Journal-journal Des Sciences Hydrologiques = Hydrolog. Sci. J. Hydrologie Und Wasserbewirtschaftung = Hydrol Wasserbewirts Hydrologie Und Wasserbewirtschaftung = Hydrol. Wasserbewirts. Hydrologie und Wasserbewirtschaftung = Hydrol. Wasserbewirtsch. Hydrology and Earth System Sciences Discussions = Hydrol. Earth Syst. Sci. Discuss. Hydrology and Earth System Sciences = Hydrol Earth Syst Sc Hydrology and Earth System Sciences = Hydrol. Earth Syst. Sc. Hydrology and Earth System Sciences = Hydrol. Earth Syst. Sci. Hydrology and Isotope Geochemistry = Colloq Semi Hydrology and Isotope Geochemistry = Colloq. Semi. Hydrology and Water Resources Symposium 1989 : Comparisons in Austral Hydrology = Inst Eng A Hydrology and Water Resources Symposium 1989 : Comparisons in Austral Hydrology = Inst. Eng. A. Hydrology for The Water Management of Large River Basins = Iahs-aish P Hydrology for The Water Management of Large River Basins = Iahs-aish. P. Hydrology-geomorphology Interface: Rainfall, Floods, Sedimentation, Land Use = Iahs-aish P Hydrology-geomorphology Interface: Rainfall, Floods, Sedimentation, Land Use = Iahs-aish. P. Hydrology, Hydraulics, and Water Quality; Roadside Safety Features 2002 = Transport Res Rec Hydrology, Hydraulics, and Water Quality; Roadside Safety Features 2002 = Transport. Res. Rec. Hydrology, Hydraulics, and Water Quality; Roadside Safety Features = Transport Res Rec Hydrology, Hydraulics, and Water Quality; Roadside Safety Features = Transport. Res. Rec. Hydrology in The Celtic Countries = Colloq Inra Hydrology in The Celtic Countries = Colloq. Inra. Hydrology in The Humid Tropic Environment = Iahs-aish P Hydrology in The Humid Tropic Environment = Iahs-aish. P. Hydrology of Natural and Manmade Lakes = Iahs-aish P Hydrology of Natural and Manmade Lakes = Iahs-aish. P. Hydrology of Warm Humid Regions = Iahs-aish P Hydrology of Warm Humid Regions = Iahs-aish. P. Hydrology Research = Hydrol Res Hydrology Research = Hydrol. Res. Hydrology, Water Resources and Ecology in Headwaters = Iahs-aish P Hydrology, Water Resources and Ecology in Headwaters = Iahs-aish. P. Hydromagnetic Waves in The Magnetosphere and The Ionosphere = Astrophys Space Sc L Hydromagnetic Waves in The Magnetosphere and The Ionosphere = Astrophys. Space. Sc. L. Hydrometallurgy = Hydrometallurgy Hydrophilic Polymers = Adv Chem Ser Hydrophilic Polymers = Adv. Chem. Ser. Hydropneumatische Federungssysteme = Vdi-buch Hydropneumatische Federungssysteme = Vdi-buch. Hydroponics and Transplant Production = Acta Hortic Hydroponics and Transplant Production = Acta. Hortic. Hydro Power Developments - Current Projects, Rehabilitation, and Power Recovery = Imeche Sem Hydro Power Developments - Current Projects, Rehabilitation, and Power Recovery = Imeche. Sem. Hydropower Developments - New Projects and Rehabilitation = Imeche Sem Hydropower Developments - New Projects and Rehabilitation = Imeche. Sem. Hydropower Economics = Int Ser Oper Res Man Hydropower Economics = Int. Ser. Oper. Res. Man. Hydroprocessing of Heavy Oils and Residua = Chem Ind-ser Hydroprocessing of Heavy Oils and Residua = Chem. Ind-ser. Hydrosilylation: A Comprehensive Review On Recent Advances = Adv Silicon Sci Hydrosilylation: A Comprehensive Review On Recent Advances = Adv. Silicon. Sci. Hydrotherapie-Physiotherapie = Hydrother Physiother Hydrothermal Processes Above The Yellowstone Magma Chamber: Large Hydrothermal Systems and Large Hydrothermal Explosions = Geol Soc Am Spec Pap Hydrothermal Processes Above The Yellowstone Magma Chamber: Large Hydrothermal Systems and Large Hydrothermal Explosions = Geol. Soc. Am. Spec. Pap. Hydrotreatment and Hydrocracking of Oil Fractions = Stud Surf Sci Catal Hydrotreatment and Hydrocracking of Oil Fractions = Stud. Surf. Sci. Catal. Hydro-umformung = Vdi-buch Hydro-umformung = Vdi-buch. Hyers-ulam-rassias Stability of Functional Equations in Nonlinear Analysis = Springer Ser Optim A Hyers-ulam-rassias Stability of Functional Equations in Nonlinear Analysis = Springer. Ser. Optim. A. Hygie = Hygie Hygiene Hypothesis and Darwinian Medicine = Prog Inflamm Res Ser Hygiene Hypothesis and Darwinian Medicine = Prog. Inflamm. Res. Ser. Hygiene Instruction for Personnel in The Pharmaceutical Industry = Paperb Apv Hygiene Instruction for Personnel in The Pharmaceutical Industry = Paperb. Apv. Hygiene Mentale = Hyg. Ment. Hygiene, Quality & Safety in The Cold Chain and Air Conditioning = Refr Sci T Hygiene, Quality & Safety in The Cold Chain and Air Conditioning = Refr. Sci. T. Hygienisk revy = Hyg Revy Hyle = Hyle Hyogo University Journal = Hyogo Univ. J. Hyomen Gijutsu = Hyomen Gijutsu Hyparxis and Hypostasis in Neoplatonism = Less Intell Hyparxis and Hypostasis in Neoplatonism = Less. Intell. Hypatia-a Journal of Feminist Philosophy = Hypatia Hypatia-a Journal of Feminist Philosophy = Hypatia. Hypatia = Hypatia Hyperalgesia and Allodynia = Symp Pain R Hyperalgesia and Allodynia = Symp. Pain. R. Hyperalgesia: Molecular Mechanisms and Clinical Implications = Prog Pain Res Manag Hyperalgesia: Molecular Mechanisms and Clinical Implications = Prog. Pain. Res. Manag. Hyperbaric Oxygen Therapy in Otorhinolaryngology = Adv Oto-rhino-laryng Hyperbaric Oxygen Therapy in Otorhinolaryngology = Adv. Oto-rhino-laryng. Hyperbolic Conservation Laws in Continuum Physics, Third Edition = Grundlehr Math Wiss Hyperbolic Conservation Laws in Continuum Physics, Third Edition = Grundlehr. Math. Wiss. Hyperbolic Partial Differential Equations = Universitext Hyperbolic Partial Differential Equations = Universitext. Hyperbolic Problems: Theory, Numerics and Applications, Part 1 = Proc Sym Ap Hyperbolic Problems: Theory, Numerics and Applications, Part 1 = Proc. Sym. Ap. Hyperbolic Problems: Theory, Numerics and Applications, Part 2 = Proc Sym Ap Hyperbolic Problems: Theory, Numerics and Applications, Part 2 = Proc. Sym. Ap. Hyperbolic Problems: Theory, Numerics, Applications, Vol 1 = Int Ser Numer Math Hyperbolic Problems: Theory, Numerics, Applications, Vol 1 = Int. Ser. Numer. Math. Hyperbolic Problems: Theory, Numerics, Applications, Vol 1 = Int S Num M Hyperbolic Problems: Theory, Numerics, Applications, Vol 1 = Int. S. Num. M. Hyperbolic Problems: Theory, Numerics, Applications, Vols I and Ii = Int Ser Numer Math Hyperbolic Problems: Theory, Numerics, Applications, Vols I and Ii = Int. Ser. Numer. Math. Hyperbolic Systems of Balance Laws = Lect Notes Math Hyperbolic Systems of Balance Laws = Lect. Notes. Math. Hyperbolic Triangle Centers: The Special Relativistic Approach = Fund Theor Phys Hyperbolic Triangle Centers: The Special Relativistic Approach = Fund. Theor. Phys. Hyperboreus. Studia classica = Hyp Hyperboreus: studia classica = Hyperboreus Hypercholesterolemia, Hypocholesterolemia, Hypertriglyceridemia, Invivo Kinetics = Adv Exp Med Biol Hypercholesterolemia, Hypocholesterolemia, Hypertriglyceridemia, Invivo Kinetics = Adv. Exp. Med. Biol. Hypercomplex Analysis = Trends Math Hypercomplex Analysis = Trends. Math. Hyperfine Interactions = Hyperfine Interact Hyperfine Interactions = Hyperfine Interact. Hyperfunctions On Hypo-analytic Manifolds = Ann Math Stud Hyperfunctions On Hypo-analytic Manifolds = Ann. Math. Stud. Hypergeometric Orthogonal Polynomials and Their Q-analogues = Springer Monogr Math Hypergeometric Orthogonal Polynomials and Their Q-analogues = Springer. Monogr. Math. Hyperlipidemia in Childhood and The Development of Atherosclerosis = Ann Ny Acad Sci Hyperlipidemia in Childhood and The Development of Atherosclerosis = Ann. Ny. Acad. Sci. Hypermedia Design = Work Comp Hypermedia Design = Work. Comp. Hyperspectral Remote Sensing and Applications = P Soc Photo-opt Ins Hyperspectral Remote Sensing and Applications = P. Soc. Photo-opt. Ins. Hyperspectral Remote Sensing of The Land and Atmosphere = P Soc Photo-opt Ins Hyperspectral Remote Sensing of The Land and Atmosphere = P. Soc. Photo-opt. Ins. Hyperspectral Remote Sensing of The Ocean = P Soc Photo-opt Ins Hyperspectral Remote Sensing of The Ocean = P. Soc. Photo-opt. Ins. Hypertension and Stroke: Pathophysiology and Management = Clin Hypertens Vasc Hypertension and Stroke: Pathophysiology and Management = Clin. Hypertens. Vasc. Hypertension and The Heart = Adv Exp Med Biol Hypertension and The Heart = Adv. Exp. Med. Biol. Hypertension As An Insulin-resistant Disorder = Int Congr Ser Hypertension As An Insulin-resistant Disorder = Int. Congr. Ser. Hypertension, Atherosclerosis and Lipids = Roy Soc Med Int Cong Hypertension, Atherosclerosis and Lipids = Roy. Soc. Med. Int. Cong. Hypertension Control = Who Tech Rep Ser Hypertension Control = Who. Tech. Rep. Ser. Hypertension (Dallas) = Hypertension (Dallas) Hypertension, Heredity and Stroke = Cerebrovas Res Disor Hypertension, Heredity and Stroke = Cerebrovas. Res. Disor. Hypertension=Hypertension;; Hypertension = Hypertension Hypertension in Pregnancy = Hypertens Pregnancy Hypertension in Pregnancy = Hypertens. Pregnancy Hypertension in pregnancy : official journal of the International Society for the Study of Hypertension in Pregnancy = Hypertens Pregnancy Hypertension Research-clinical and Experimental = Hypertens Res-clin E Hypertension Research-clinical and Experimental = Hypertens. Res-clin. E. Hypertension Research=Hypertens Res;; Hypertension Research = Hypertens Res Hypertension Research = Hypertens. Res. Hypertension research : official journal of the Japanese Society of Hypertension = Hypertens Res Hyperthermophilic Enzymes, Pt A = Method Enzymol Hyperthermophilic Enzymes, Pt A = Method. Enzymol. Hyperthermophilic Enzymes, Pt B = Method Enzymol Hyperthermophilic Enzymes, Pt B = Method. Enzymol. Hyperthermophilic Enzymes, Pt C = Method Enzymol Hyperthermophilic Enzymes, Pt C = Method. Enzymol. Hyperuricemic Syndromes: Pathophysiology and Therapy = Contrib Nephrol Hyperuricemic Syndromes: Pathophysiology and Therapy = Contrib. Nephrol. Hypervalent Iodine Chemistry: Modern Developments in Organic Synthesis = Top Curr Chem Hypervalent Iodine Chemistry: Modern Developments in Organic Synthesis = Top. Curr. Chem. Hypervelocity Impacts in Space and Planetology = Adv Space Res Hypervelocity Impacts in Space and Planetology = Adv. Space Res. Hypervelocity Impacts in Space and Planetology = Adv Space Res-series Hypervelocity Impacts in Space and Planetology = Adv. Space Res-series. Hyphenated Techniques in Polymer Characterization = Acs Sym Ser Hyphenated Techniques in Polymer Characterization = Acs. Sym. Ser. Hypoccs Series = Hypoccs Series Hypoelliptic Estimates and Spectral Theory for Fokker-planck Operators and Witten Laplacians = Lect Notes Math Hypoelliptic Estimates and Spectral Theory for Fokker-planck Operators and Witten Laplacians = Lect. Notes. Math. Hypoelliptic Laplacian and Ray-singer Metrics = Ann Math Stud Hypoelliptic Laplacian and Ray-singer Metrics = Ann. Math. Stud. Hypospadias and Genital Development = Adv Exp Med Biol Hypospadias and Genital Development = Adv. Exp. Med. Biol. Hypotenuse = Hypotenuse Hypothalamic Integration of Circadian Rhythms = Prog Brain Res Hypothalamic Integration of Circadian Rhythms = Prog. Brain. Res. Hypothalamic Integration of Energy Metabolism = Prog Brain Res Hypothalamic Integration of Energy Metabolism = Prog. Brain. Res. Hypothalamic Pituitary Dysfunction = Adv Rep End Hypothalamic Pituitary Dysfunction = Adv. Rep. End. Hypothesis A/hypothesis B - Linguistic Explorations in Honor of David M. Perlmutter = Curr Stud Linguist Hypothesis A/hypothesis B - Linguistic Explorations in Honor of David M. Perlmutter = Curr. Stud. Linguist. Hypoxia = Adv Exp Med Biol Hypoxia = Adv. Exp. Med. Biol. Hypoxia and Consequences From Molecule to Malady = Ann Ny Acad Sci Hypoxia and Consequences From Molecule to Malady = Ann. Ny. Acad. Sci. Hypoxia and Exercise = Adv Exp Med Biol Hypoxia and Exercise = Adv. Exp. Med. Biol. Hypoxia and Mountain Medicine = Adv Biosci Hypoxia and Mountain Medicine = Adv. Biosci. Hypoxia and The Circulation = Adv Exp Med Biol Hypoxia and The Circulation = Adv. Exp. Med. Biol. Hypoxia: From Genes to The Bedside = Adv Exp Med Biol Hypoxia: From Genes to The Bedside = Adv. Exp. Med. Biol. Hypoxia in The Northern Gulf of Mexico = Springer Ser Env Man Hypoxia in The Northern Gulf of Mexico = Springer. Ser. Env. Man. Hypoxia: Through The Lifecycle = Adv Exp Med Biol Hypoxia: Through The Lifecycle = Adv. Exp. Med. Biol. Hy-redshift Universe: Galaxy Formation and Evolution At High Redshift = Astr Soc P Hy-redshift Universe: Galaxy Formation and Evolution At High Redshift = Astr. Soc. P. Hystrix-italian Journal of Mammalogy = Hystrix Hystrix-italian Journal of Mammalogy = Hystrix. I2mtc: 2009 Ieee Instrumentation & Measurement Technology Conference, Vols 1-3 = Ieee Imtc P I2mtc: 2009 Ieee Instrumentation & Measurement Technology Conference, Vols 1-3 = Ieee Imtc. P. I997 Tappi Minimum Effluent Mills Symposium, Proceedings = P Tech As P I997 Tappi Minimum Effluent Mills Symposium, Proceedings = P. Tech. As. P. Iaae Occasional Paper Series = Iaae Oc Pap Iaae Occasional Paper Series = Iaae Oc. Pap. IADS newsletter = IADS Newsl IADS Newsletter = IADS Newsl. IAEA Bulletin = IAEA Bull. Iaeng Transactions On Engineering Technologies Vol 1 = Aip Conf Proc Iaeng Transactions On Engineering Technologies Vol 1 = Aip. Conf. Proc. Iaeng Transactions On Engineering Technologies, Vol 3 = Aip Conf Proc Iaeng Transactions On Engineering Technologies, Vol 3 = Aip. Conf. Proc. Iaeng Transactions On Engineering Technologies, Vol 4 = Aip Conf Proc Iaeng Transactions On Engineering Technologies, Vol 4 = Aip. Conf. Proc. Iaeng Transactions On Engineering Technologies, Vol 5 = Aip Conf Proc Iaeng Transactions On Engineering Technologies, Vol 5 = Aip. Conf. Proc. Iaeng Transactions On Engineering Technologies, Vol Ii = Aip Conf Proc Iaeng Transactions On Engineering Technologies, Vol Ii = Aip. Conf. Proc. Iaga Special Sopron Book Series = Iaga Spec Sopron Iaga Special Sopron Book Series = Iaga Spec. Sopron IAHS (International Association of Hydrological Sciences) Publication = IAHS Publ. Iahs Publication = Iahs-aish P Iahs Publication = Iahs-aish. P. IAHS Publication = IAHS Publ. Iahs Publications = Iahs-aish P Iahs Publications = Iahs-aish. P. IALE (International Association for Landscape Ecology) Bulletin = IALE (International Association for Landscape Ecology) Bull. IAL news = IAL News Iamslic 2000: Tides of Technology = Iamslic Con Iamslic 2000: Tides of Technology = Iamslic Con. Iamslic 99: Recasting The Nets = Iamslic C S Iamslic 99: Recasting The Nets = Iamslic C. S. Iamslic At A Crossroads : Proceedings of The 15th Annual Conference = Iamslic Con Iamslic At A Crossroads : Proceedings of The 15th Annual Conference = Iamslic Con. Iamslic: Every Continent, Every Ocean = Iamslic C S Iamslic: Every Continent, Every Ocean = Iamslic. C. S. I and She, You and I: From The Minnelied to The Love Song = Wolf Stamml Gast Ge I and She, You and I: From The Minnelied to The Love Song = Wolf. Stamml. Gast. Ge. Ian Mcewans Enduring Love: A Routledge Guide = Routledge Guides Lit Ian Mcewans Enduring Love: A Routledge Guide = Routledge Guides. Lit. IAPAC monthly = IAPAC Mon Iap Astrophysics Meeting = Iap Astr M Iap Astrophysics Meeting = Iap Astr. M. IAPQR Transactions = IAPQR Trans. IARC monographs on the evaluation of carcinogenic risk of chemicals to man = IARC Monogr Eval Carcinog Risk Chem Man IARC Monographs on the Evaluation of Carcinogenic Risk of Chemicals to Man = IARC Monogr. Eval. Carcinog. Risk Chem. Man Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans = Iarc Monog. Eval. Carc. IARC Monographs on the Evaluation of Carcinogenic Risks to Humans = IARC Monogr. Eval. Carcinog. Risks Hum. IARC Monographs on The Evaluation of Carcinogenic Risks To Humans=IARC Monogr Eval Carcinog Risks Hum;; IARC Monographs on the Evaluation of Carcinogenic Risks to Humans. Supplement = IARC Monogr. Eval. Carcinog. Risks Hum. Suppl. IARC Monographs on The Evaluation of Carcinogenic Risks To Humans. Supplement=IARC Monogr Eval Carcinog Risks Hum Suppl;; IARC monographs on the evaluation of carcinogenic risks to humans. Supplement / World Health Organization, International Agency for Research on Cancer = IARC Monogr Eval Carcinog Risks Hum Suppl Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 47 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 47 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 48 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 48 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 49 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 49 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 54 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 54 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 55 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 55 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 56 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 56 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 57 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 57 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 58 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 58 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans - Vol 60 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans - Vol 60 = Iarc Monog. Eval. Carc. Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 62 = Iarc Monog Eval Carc Iarc Monographs On The Evaluation of Carcinogenic Risks to Humans, Vol 62 = Iarc Monog. Eval. Carc. IARC monographs on the evaluation of carcinogenic risks to humans / World Health Organization, International Agency for Research on Cancer = IARC Monogr Eval Carcinog Risks Hum IARC monographs on the evaluation of the carcinogenic risk of chemicals to humans = IARC Monogr Eval Carcinog Risk Chem Hum IARC Monographs on the Evaluation of the Carcinogenic Risk of Chemicals to Humans = IARC Monogr. Eval. Carcinog. Risk Chem. Hum. IARC monographs on the evaluation of the carcinogenic risk of chemicals to humans. Supplement = IARC Monogr Eval Carcinog Risk Chem Hum Suppl IARC Monographs on the Evaluation of the Carcinogenic Risk of Chemicals to Humans. Supplement = IARC Monogr. Eval. Carcinog. Risk Chem. Hum. Suppl. Iarc Publications = Iarc Publ Iarc Publications = Iarc Publ. Iarc Scientific Publications = Iarc Sci Publ Iarc Scientific Publications = Iarc Sci. Publ. IARC scientific publications = IARC Sci Publ IARC Scientific Publications=IARC Sci Publ;; IARC Scientific Publications = IARC Sci. Publ. Ias 2000 - Conference Record of The 2000 Ieee Industry Applications Conference, Vols 1-5 = Ieee Ind Applic Soc Ias 2000 - Conference Record of The 2000 Ieee Industry Applications Conference, Vols 1-5 = Ieee Ind. Applic. Soc. Ias '94 - Conference Record of The 1994 Industry Applications Conference/twenty-ninth Ias Annual Meeting, Vols 1-3 = Ieee Ind Applic Soc Ias '94 - Conference Record of The 1994 Industry Applications Conference/twenty-ninth Ias Annual Meeting, Vols 1-3 = Ieee. Ind. Applic. Soc. Ias '95 - Conference Record of The 1995 Ieee Industry Applications Conference/thirtieth Ias Annual Meeting, Vols 1-3 = Ieee Ind Applic Soc Ias '95 - Conference Record of The 1995 Ieee Industry Applications Conference/thirtieth Ias Annual Meeting, Vols 1-3 = Ieee Ind. Applic. Soc. Ias '96 - Conference Record of The 1996 Ieee Industry Applications Conference, Thirty-first Ias Annual Meeting, Vols 1-4 = Ieee Ind Applic Soc Ias '96 - Conference Record of The 1996 Ieee Industry Applications Conference, Thirty-first Ias Annual Meeting, Vols 1-4 = Ieee Ind. Applic. Soc. Ias '97 - Conference Record of The 1997 Ieee Industry Applications Conference / Thirty-second Ias Annual Meeting, Vols 1-3 = Ieee Ind Applic Soc Ias '97 - Conference Record of The 1997 Ieee Industry Applications Conference / Thirty-second Ias Annual Meeting, Vols 1-3 = Ieee Ind. Applic. Soc. I A S L Conference Proceedings = Iasl Proc I A S L Conference Proceedings = Iasl. Proc. IAS/Park City Mathematics Series = IAS/Park City Math. Ser. IASSIST quarterly / International Association for Social Science Information Service and Technology = IASSIST Q Iasted International Conference On Internet and Multimedia Systems and Applications = Iasted Int Conf Inte Iasted International Conference On Internet and Multimedia Systems and Applications = Iasted Int. Conf. Inte. Iasted International Conference On Modelling and Simulation = Iasted Model Simul Iasted International Conference On Modelling and Simulation = Iasted Model. Simul. Iasted International Conference On Robotics and Applications = Iasted Int Conf Robo Iasted International Conference On Robotics and Applications = Iasted Int. Conf. Robo. Iasted International Conference On Signal and Image Processing = Iasted Int Conf Sign Iasted International Conference On Signal and Image Processing = Iasted Int. Conf. Sign. Iatul Proceedings = Iatul Proc Iatul Proceedings = Iatul Proc. Iatul Proceedings (new Series) = Iatul Proc New Ser Iatul Proceedings (new Series) = Iatul Proc. New. Ser. Iatul Quarterly : A Journal of Library Management and Technology = Iatul Q Iatul Quarterly : A Journal of Library Management and Technology = Iatul Q. Iatul Quarterly, Vol 3, No 4, December 1989 = Iatul Q Iatul Quarterly, Vol 3, No 4, December 1989 = Iatul Q. Iau Colloquium = Iau Colloq Iau Colloquium = Iau Colloq. Iau: Organic Matter in Space = Iau Symp P Series Iau: Organic Matter in Space = Iau. Symp. P. Series. Iau Symposia = Iau Symp Iau Symposia = Iau Symp. Iau Symposium Proceedings Series = Iau Symp P Series Iau Symposium Proceedings Series = Iau Symp. P. Series Iavcei Proceedings in Volcanology = Iavcei Volc Iavcei Proceedings in Volcanology = Iavcei Volc. IAVI report : newsletter on international AIDS vaccine research = IAVI Rep Iawa Bulletin = Iawa Bull Iawa Bulletin = Iawa Bull. IAWA (International Association of Wood Anatomists) Journal = IAWA J. Iawa Journal = Iawa J Iawa Journal = Iawa J. IAWA journal / International Association of Wood Anatomists = IAWA J Ibas of Edessa: Rekonstruktion Einer Biographie Und Dogmatischen Position Zwischen Den Fronten = Arb Kirchengesch Ibas of Edessa: Rekonstruktion Einer Biographie Und Dogmatischen Position Zwischen Den Fronten = Arb. Kirchengesch. Ibc - International Broadcasting Convention = Iee Conf Publ Ibc - International Broadcasting Convention = Iee. Conf. Publ. Ibd 2007 - Achievements in Research and Clinical Practice = Falk Symp Ibd 2007 - Achievements in Research and Clinical Practice = Falk. Symp. Ibd and Salicylates - 2 = Res Clin Forums Ibd and Salicylates - 2 = Res. Clin. Forums. Ibd and Salicylates - 3 = Res Clin Forums Ibd and Salicylates - 3 = Res. Clin. Forums. Ibd and Salicylates - 5 = Res Clin Forums Ibd and Salicylates - 5 = Res. Clin. Forums. Ibd and Salicylates = Res Clin Forums Ibd and Salicylates = Res. Clin. Forums. Ibd - The Patient in Focus = Res Clin Forums Ibd - The Patient in Focus = Res. Clin. Forums. Iberia and The Mediterranean World of The Middle Ages: Studies in Honor of Robert I. Burns S.j., Vol 1 = Medieval Mediterr Iberia and The Mediterranean World of The Middle Ages: Studies in Honor of Robert I. Burns S.j., Vol 1 = Medieval. Mediterr. Iberia archaeologica = IA Iberian Identity = Res Series Iberian Identity = Res. Series. Iberian Worlds = Glob Realities Iberian Worlds = Glob. Realities. Iberia. Revista della antigüedad = Iberia Iberica = Iberica Ibero-american Bioethics: History and Perspectives = Philos Med Ibero-american Bioethics: History and Perspectives = Philos. Med. Iberoromania = Iberoromania Ibic2010: 2nd International Conference On Industrial Biotechnology = Chem Engineer Trans Ibic2010: 2nd International Conference On Industrial Biotechnology = Chem. Engineer. Trans. Ibis = Ibis Ibm Journal of Research and Development = Ibm J Res Dev Ibm Journal of Research and Development = Ibm J. Res. Dev. IBM Journal of Research and Development = IBM J. Res. Dev. IBM-Nachrichten = IBM-Nachr. Ibm Systems Journal = Ibm Syst J Ibm Systems Journal = Ibm Syst. J. IBM Systems Journal = IBM Syst. J. Ibn 'arab - Time and Cosmology = Cult Civiliz Mid E Ibn 'arab - Time and Cosmology = Cult. Civiliz. Mid. E. Ibro Series = Ibro Ser Ibro Series = Ibro Ser. IBScientific Journal of Science = IBSci. J. Sci. IBS-Materialien = IBS Materi Icacs 2003: International Conference On Advances in Concrete and Structures, Vol 1 and 2 = Rilem Proc Icacs 2003: International Conference On Advances in Concrete and Structures, Vol 1 and 2 = Rilem. Proc. Ica Handbook Series = Ica Handb Ser Ica Handbook Series = Ica Handb. Ser. Icaleo 90 : Laser Materials Processing = P Soc Photo-opt Ins Icaleo 90 : Laser Materials Processing = P. Soc. Photo-opt. Ins. Icaleo 90 : Optical Methods in Flow and Particle Diagnostics = P Soc Photo-opt Ins Icaleo 90 : Optical Methods in Flow and Particle Diagnostics = P. Soc. Photo-opt. Ins. Icaleo 91 : Laser Materials Processing = P Soc Photo-opt Ins Icaleo 91 : Laser Materials Processing = P. Soc. Photo-opt. Ins. Icaleo 92 : Laser Materials Processing = P Soc Photo-opt Ins Icaleo 92 : Laser Materials Processing = P. Soc. Photo-opt. Ins. Icaleo 93 - Laser Materials Processing = Proc Spie Icaleo 93 - Laser Materials Processing = Proc. Spie. Icaleo 93 - Laser Materials Processing = P Soc Photo-opt Ins Icaleo 93 - Laser Materials Processing = P. Soc. Photo-opt. Ins. Icaleo'95 - Proceedings of The Laser Materials Processing Conference = P Laser Ins Icaleo'95 - Proceedings of The Laser Materials Processing Conference = P. Laser Ins. Icaleo'96 - Proceedings of The Laser Materials Processing Conference = Lia P Icaleo'96 - Proceedings of The Laser Materials Processing Conference = Lia. P. Icaleo'96 - Proceedings of The Lasers and Electro-optics for Automotive Manufacturing Conference = Lia P Icaleo'96 - Proceedings of The Lasers and Electro-optics for Automotive Manufacturing Conference = Lia. P. Icaleo(r) 2000: Proceedings of The Laser Materials Processing Conference, Vol 89 = Lia P Icaleo(r) 2000: Proceedings of The Laser Materials Processing Conference, Vol 89 = Lia. P. Icaleo (r)'99: Proceeding of The Laser Materials Processing Conference, Vol 87, Pts 1 and 2 = Lia P Icaleo (r)'99: Proceeding of The Laser Materials Processing Conference, Vol 87, Pts 1 and 2 = Lia. P. Icamdata-2008 = Aip Conf Proc Icamdata-2008 = Aip. Conf. Proc. ICAO journal = ICAO J Icap Series On Alcohol in Society = Icap Ser Alcohol Soc Icap Series On Alcohol in Society = Icap Ser. Alcohol Soc. Icarism '99: Proceedings of The International Conference On Alternative Routes of Iron and Steelmaking = Australas I Min Met Icarism '99: Proceedings of The International Conference On Alternative Routes of Iron and Steelmaking = Australas. I. Min. Met. Icarus = Icarus Icase/larc Interdisciplinary Series in Science and Engineering = Icase Larc In Sci En Icase/larc Interdisciplinary Series in Science and Engineering = Icase. Larc. In. Sci. En. ICASE/LaRC Interdisciplinary Series in Science and Engineering = ICASE/LaRC Interdiscip. Ser. Sci. Eng. Icase/latc Interdisciplinary Series in Science and Engineering = Icase Larc In Sci En Icase/latc Interdisciplinary Series in Science and Engineering = Icase. Larc. In. Sci. En. Icase / Nasa Larc Series = Icase Nasa Icassp 90, Vols 1-5 = Int Conf Acoust Spee Icassp 90, Vols 1-5 = Int. Conf. Acoust. Spee. Icassp 91, Vols 1-5 = Int Conf Acoust Spee Icassp 91, Vols 1-5 = Int. Conf. Acoust. Spee. Icassp-92 - 1992 International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int Conf Acoust Spee Icassp-92 - 1992 International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int. Conf. Acoust. Spee. Icassp-93 : 1993 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int Conf Acoust Spee Icassp-93 : 1993 Ieee International Conference On Acoustics, Speech, and Signal Processing, Vols 1-5 = Int. Conf. Acoust. Spee. Icassp-94 - Proceedings, Vol 1 = Int Conf Acoust Spee Icassp-94 - Proceedings, Vol 1 = Int. Conf. Acoust. Spee. Icassp-94 Proceedings, Vol 2 = Int Conf Acoust Spee Icassp-94 Proceedings, Vol 2 = Int. Conf. Acoust. Spee. Icassp-94 - Proceedings, Vol 3 = Int Conf Acoust Spee Icassp-94 - Proceedings, Vol 3 = Int. Conf. Acoust. Spee. Icassp-94 - Proceedings, Vol 4 = Int Conf Acoust Spee Icassp-94 - Proceedings, Vol 4 = Int. Conf. Acoust. Spee. Icassp-94 - Proceedings, Vol 5 = Int Conf Acoust Spee Icassp-94 - Proceedings, Vol 5 = Int. Conf. Acoust. Spee. Icassp-94 - Proceedings, Vol 6 = Int Conf Acoust Spee Icassp-94 - Proceedings, Vol 6 = Int. Conf. Acoust. Spee. Icassp '99: 1999 Ieee International Conference On Acoustics, Speech, and Signal Processing, Proceedings Vols I-vi = Int Conf Acoust Spee Icassp '99: 1999 Ieee International Conference On Acoustics, Speech, and Signal Processing, Proceedings Vols I-vi = Int. Conf. Acoust. Spee. Icc 2000: Ieee International Conference On Communications, Conference Record, Vols 1-3 = Ieee Icc Icc 2005: Ieee International Conference On Communications, Vols 1-5 = Ieee Icc Iccad-2005: International Conference On Computer Aided Design, Digest of Technical Papers = Ieee Ic Cad Iccad-2005: International Conference On Computer Aided Design, Digest of Technical Papers = Ieee. Ic. Cad. Iccad-ieee Acm International Conference On Computer-aided Design = Iccad-ieee Acm Int Iccad-ieee Acm International Conference On Computer-aided Design = Iccad-ieee Acm Int. Icca Journal = Icca J Icca Journal = Icca J. Icc Bulletin = Icc Bull Icc Bulletin = Icc Bull. Icccn 2003: 12th International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Icccn 2003: 12th International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Icccn 2004: 13th International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Icccn 2004: 13th International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Icccn 2005: 14th International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Icccn 2005: 14th International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Icccn 2006: 15th International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Icccn 2006: 15th International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Iccd'2002: Ieee International Conference On Computer Design: Vlsi in Computers and Processors, Proceedings = Pr Ieee Comp Design Iccd'2002: Ieee International Conference On Computer Design: Vlsi in Computers and Processors, Proceedings = Pr. Ieee Comp. Design. Icce: 2005 International Conference On Consumer Electronics, Digest of Technical Papers = Ieee Icce Icce: 2005 International Conference On Consumer Electronics, Digest of Technical Papers = Ieee. Icce. Icce: 2007 Digest of Technical Papers International Conference On Consumer Electronics = Ieee Icce Icce: 2007 Digest of Technical Papers International Conference On Consumer Electronics = Ieee. Icce. Iccee 2008: Proceedings of The 2008 International Conference On Computer and Electrical Engineering = Int C Comp Elec Eng Iccee 2008: Proceedings of The 2008 International Conference On Computer and Electrical Engineering = Int. C. Comp. Elec. Eng. Iccp 2007: Ieee 3rd International Conference On Intelligent Computer Communication and Processing, Proceedings = Int C Intell Comp Co Iccp 2007: Ieee 3rd International Conference On Intelligent Computer Communication and Processing, Proceedings = Int. C. Intell. Comp. Co. Icc Publication = Icc Publ Icc Publication = Icc Publ. Iccs 2010 - International Conference On Computational Science, Proceedings = Procedia Comput Sci Iccs 2010 - International Conference On Computational Science, Proceedings = Procedia. Comput. Sci. ICCW journal = ICCW J ICCW news bulletin = ICCW News Bull Icdcs: 2009 International Conference On Distributed Computing Systems Workshops = Ieee Int Con Dis Icdcs: 2009 International Conference On Distributed Computing Systems Workshops = Ieee. Int. Con. Dis. Icde 2005: 21st International Conference On Data Engineering, Proceedings = Proc Int Conf Data Icde 2005: 21st International Conference On Data Engineering, Proceedings = Proc. Int. Conf. Data Icde: 2009 Ieee 25th International Conference On Data Engineering, Vols 1-3 = Proc Int Conf Data Icde: 2009 Ieee 25th International Conference On Data Engineering, Vols 1-3 = Proc. Int. Conf. Data Icdl: 2005 Ieee International Conference On Dielectric Liquids = I C Dielect Liquids Icdl: 2005 Ieee International Conference On Dielectric Liquids = I. C. Dielect. Liquids Icdm 2006: Sixth International Conference On Data Mining, Proceedings = Ieee Data Mining Icdm 2006: Sixth International Conference On Data Mining, Proceedings = Ieee. Data Mining. Icdm 2007: Proceedings of The Seventh Ieee International Conference On Data Mining = Ieee Data Mining Icdm 2008: Eighth Ieee International Conference On Data Mining, Proceedings = Ieee Data Mining Icdm 2008: Eighth Ieee International Conference On Data Mining, Proceedings = Ieee Data Mining. Icdp-usgs Deep Drilling Project in The Chesapeake Bay Impact Structure: Results From The Eyreville Core Holes = Geol Soc Am Spec Pap Icdp-usgs Deep Drilling Project in The Chesapeake Bay Impact Structure: Results From The Eyreville Core Holes = Geol. Soc. Am. Spec. Pap. Icds-18 - Proceedings of The 18th International Conference On Defects in Semiconductors, Pts 1-4 = Mater Sci Forum Icds-18 - Proceedings of The 18th International Conference On Defects in Semiconductors, Pts 1-4 = Mater. Sci. Forum. Icd Scientific And Educational Journal = ICD Sci Educ J ICD Scientific and Educational Journal = ICD Sci. Educ. J. Icdt 90 = Lect Notes Comput Sc Icdt 90 = Lect. Notes. Comput. Sc. Ice Ages and Interglacials: Measurements, Interpretation, and Models = S-p B Environ Sci Ice Ages and Interglacials: Measurements, Interpretation, and Models = S-p. B. Environ. Sci. ICEA news = Icea News Icebe 2005: Ieee International Conference On E-business Engineering, Proceedings = Int Conf E Bus Eng Icebe 2005: Ieee International Conference On E-business Engineering, Proceedings = Int. Conf. E. Bus. Eng. Icebe 2006: Ieee International Conference On E-business Engineering, Proceedings = Int Conf E Bus Eng Icebe 2006: Ieee International Conference On E-business Engineering, Proceedings = Int. Conf. E. Bus. Eng. Icebe 2007: Ieee International Conference On E-business Engineering, Proceedings = Int Conf E Bus Eng Icebe 2007: Ieee International Conference On E-business Engineering, Proceedings = Int. Conf. E. Bus. Eng. Iceccs 2005: 10th Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Iceccs 2005: 10th Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Iceccs 2006: 11th Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Iceccs 2006: 11th Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Iceccs 2008: Thirteenth Ieee International Conference On The Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Iceccs 2008: Thirteenth Ieee International Conference On The Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Ice Core Studies of Global Biogeochemical Cycles = Nato Asi Ser Ser I Ice Core Studies of Global Biogeochemical Cycles = Nato. Asi. Ser. Ser. I. Ice Cream = Int Dairy F Ice Cream = Int. Dairy. F. Icelandic Agricultural Sciences = Iceland Agr Sci Icelandic Agricultural Sciences = Iceland. Agr. Sci. Icem 14: 14th International Conference On Experimental Mechanics, Vol 6 = Epj Web Conf Icem 14: 14th International Conference On Experimental Mechanics, Vol 6 = Epj. Web. Conf. Ice Physics and The Natural Environment = Nato Asi Ser Ser I Ice Physics and The Natural Environment = Nato. Asi. Ser. Ser. I. Ices Journal of Marine Science = Ices J Mar Sci Ices Journal of Marine Science = Ices J. Mar. Sci. ICES Journal of Marine Science = ICES J. Mar. Sci. Ices Marine Science Symposia = Ices Mar Sc Ices Marine Science Symposia = Ices Mar. Sc. Icet: 2009 International Conference On Emerging Technologies, Proceedings = Int Conf Emerg Techn Icet: 2009 International Conference On Emerging Technologies, Proceedings = Int. Conf. Emerg. Techn. Icfa Continuing Education Series = Icfa Cont Educ Ser Icfa Continuing Education Series = Icfa Cont. Educ. Ser. Icga Journal = Icga J Icga Journal = Icga J. Icgse 2009: Fourth Ieee International Conference On Global Software Engineering, Proceedings = Int Conf Global Soft Icgse 2009: Fourth Ieee International Conference On Global Software Engineering, Proceedings = Int. Conf. Global Soft. Icheap-9: 9th International Conference On Chemical and Process Engineering, Pts 1-3 = Chem Engineer Trans Icheap-9: 9th International Conference On Chemical and Process Engineering, Pts 1-3 = Chem. Engineer. Trans. Ichnology of An Early Permian Intertidal Flat: The Robledo Mountains Formation of Southern New Mexico, Usa = Spec Pap Palaeontol Ichnology of An Early Permian Intertidal Flat: The Robledo Mountains Formation of Southern New Mexico, Usa = Spec. Pap. Palaeontol. Ichnos-an International Journal for Plant and Animal Traces = Ichnos Ichnos-an International Journal for Plant and Animal Traces = Ichnos. Ichor Business Books = Ichor Bus Books Ichor Business Books = Ichor Bus. Books Ichthyological Exploration of Freshwaters = Ichthyol Explor Fres Ichthyological Exploration of Freshwaters = Ichthyol. Explor. Fres. Ichthyological Research = Ichthyol Res Ichthyological Research = Ichthyol. Res. Ichthyoses: Clinical, Biochemical, Pathogenic and Diagnostic Assessment = Curr Probl Dermatol Ichthyoses: Clinical, Biochemical, Pathogenic and Diagnostic Assessment = Curr. Probl. Dermatol. I Chuan Hsueh Pao. Acta Genetica Sinica=I Chuan Hsueh Pao;; Iciam 95 = Math Res Iciam 95 = Math. Res. I & C = I C Icid Journal = Icid J Icid Journal = Icid J. Iciea 2006: 1st Ieee Conference On Industrial Electronics and Applications, Vols 1-3, Proceedings = C Ind Elect Appl Iciea 2006: 1st Ieee Conference On Industrial Electronics and Applications, Vols 1-3, Proceedings = C. Ind. Elect. Appl. Iciea 2007: 2nd Ieee Conference On Industrial Electronics and Applications, Vols 1-4, Proceedings = C Ind Elect Appl Iciea 2007: 2nd Ieee Conference On Industrial Electronics and Applications, Vols 1-4, Proceedings = C. Ind. Elect. Appl. Iciea 2008: 3rd Ieee Conference On Industrial Electronics and Applications, Proceedings, Vols 1-3 = C Ind Elect Appl Iciea 2008: 3rd Ieee Conference On Industrial Electronics and Applications, Proceedings, Vols 1-3 = C. Ind. Elect. Appl. Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 1 = C Ind Elect Appl Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 1 = C. Ind. Elect. Appl. Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 2 = C Ind Elect Appl Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 2 = C. Ind. Elect. Appl. Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 3 = C Ind Elect Appl Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 3 = C. Ind. Elect. Appl. Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 4 = C Ind Elect Appl Iciea 2010: Proceedings of The 5th Ieee Conference On Industrial Electronics and Applications, Vol 4 = C. Ind. Elect. Appl. ICI Journal = ICI J. Icip: 2004 International Conference On Image Processing, Vols 1- 5 = Ieee Image Proc Icip: 2004 International Conference On Image Processing, Vols 1- 5 = Ieee. Image Proc. Icip-94 - Proceedings, Vol I = Ieee Image Proc Icip-94 - Proceedings, Vol I = Ieee. Image. Proc. Icip-94 - Proceedings, Vol Ii = Ieee Image Proc Icip-94 - Proceedings, Vol Ii = Ieee. Image. Proc. Icip-94 - Proceedings, Vol Iii = Ieee Image Proc Icip-94 - Proceedings, Vol Iii = Ieee. Image. Proc. ICIS Chemical Business Americas = ICIS Chem. Bus. Am. ICIS Chemical Business = ICIS Chem. Bus. Iclarm Conference Proceedings = Iclarm Conf Iclarm Conference Proceedings = Iclarm Conf. Iclarm Contributions = Iclarm Cont Iclarm Contributions = Iclarm Cont. Icm 2000: Proceedings of The 12th International Conference On Microelectronics = Nat Radio Sci Co Icm 2000: Proceedings of The 12th International Conference On Microelectronics = Nat. Radio. Sci. Co. Icm 2001: 13th International Conference On Microelectronics, Proceedings = Int C Microelectron Icm 2001: 13th International Conference On Microelectronics, Proceedings = Int. C. Microelectron. Icm 2002: 14th International Conference On Microelectronics = Int C Microelectron Icm 2002: 14th International Conference On Microelectronics = Int. C. Microelectron. Icm 2003: Proceedings of The 15th International Conference On Microelectronics = Int C Microelectron Icm 2003: Proceedings of The 15th International Conference On Microelectronics = Int. C. Microelectron. Icme: 2009 Ieee International Conference On Multimedia and Expo, Vols 1-3 = Ieee Int Con Multi Icme: 2009 Ieee International Conference On Multimedia and Expo, Vols 1-3 = Ieee Int. Con. Multi. Icmes 96 - Safe and Efficient Ships: New Approaches for Design Operation and Maintenance, Pt Ii = Imare Conf Icmes 96 - Safe and Efficient Ships: New Approaches for Design Operation and Maintenance, Pt Ii = Imare. Conf. Icmes 96 - Safe and Efficient Ships: New Approaches for Design Operation and Maintenance, Pt I = Imare Conf Icmes 96 - Safe and Efficient Ships: New Approaches for Design Operation and Maintenance, Pt I = Imare. Conf. Icmit 2005: Control Systems and Robotics, Pts 1 and 2 = Proc Spie Icmit 2005: Control Systems and Robotics, Pts 1 and 2 = Proc. Spie. Icmit 2005: Control Systems and Robotics, Pts 1 and 2 = P Soc Photo-opt Ins Icmit 2005: Control Systems and Robotics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Icmit 2005: Information Systems and Signal Processing = Proc Spie Icmit 2005: Information Systems and Signal Processing = Proc. Spie. Icmit 2005: Information Systems and Signal Processing = P Soc Photo-opt Ins Icmit 2005: Information Systems and Signal Processing = P. Soc. Photo-opt. Ins. Icmit 2005: Mechatronics, Mems, and Smart Materials = Proc Spie Icmit 2005: Mechatronics, Mems, and Smart Materials = Proc. Spie. Icmit 2005: Mechatronics, Mems, and Smart Materials = P Soc Photo-opt Ins Icmit 2005: Mechatronics, Mems, and Smart Materials = P. Soc. Photo-opt. Ins. Icmit 2007: Mechatronics, Mems, and Smart Materials, Pts 1 and 2 = Proc Spie Icmit 2007: Mechatronics, Mems, and Smart Materials, Pts 1 and 2 = Proc. Spie. Icmit 2007: Mechatronics, Mems, and Smart Materials, Pts 1 and 2 = P Soc Photo-opt Ins Icmit 2007: Mechatronics, Mems, and Smart Materials, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Icmit 2009: Mechatronics and Information Technology = Proc Spie Icmit 2009: Mechatronics and Information Technology = Proc. Spie. ICMR bulletin = Icmr Bull Icms2009: Proceedings of The Second International Conference On Modelling and Simulation, Vol 5 = Modelling Simulation Icms2009: Proceedings of The Second International Conference On Modelling and Simulation, Vol 5 = Modelling Simulation. Icms2010: Proceedings of The Third International Conference On Modelling and Simulation Icms2010, Vol 3 = Modelling Simulation Icms2010: Proceedings of The Third International Conference On Modelling and Simulation Icms2010, Vol 5 = Modelling Simulation Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 1 = Modelling Simulation Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 1 = Modelling Simulation. Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 2 = Modelling Simulation Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 2 = Modelling Simulation. Icms2010:proceedings of The Third International Conference On Modelling and Simulation, Vol 4 = Modelling Simulation Icms2010:proceedings of The Third International Conference On Modelling and Simulation, Vol 4 = Modelling Simulation. Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 6 = Modelling Simulation Icms2010: Proceedings of The Third International Conference On Modelling and Simulation, Vol 6 = Modelling Simulation. Icms: International Conference On Mathematical Science = Aip Conf Proc Icms: International Conference On Mathematical Science = Aip. Conf. Proc. Icmt '07: International Conference On Military Technologies = Icmt-int Conf Milit Icmt '07: International Conference On Military Technologies = Icmt-int. Conf. Milit. Icmt'09: International Conference On Military Technologies = Icmt-int Conf Milit Icmt'09: International Conference On Military Technologies = Icmt-int. Conf. Milit. Icnn - 1996 Ieee International Conference On Neural Networks, Vols. 1-4 = Ieee Ijcnn Icnn - 1996 Ieee International Conference On Neural Networks, Vols. 1-4 = Ieee Ijcnn. Icnp in Europe: Telenurse = St Heal T Icnp in Europe: Telenurse = St. Heal. T. Icn-uci Conferences in Virology = Icn Uci C V Icn-uci Conferences in Virology = Icn. Uci. C. V. Ico20: Biomedical Optics = P Soc Photo-opt Ins Ico20: Biomedical Optics = P. Soc. Photo-opt. Ins. Ico20: Display Devices and Systems = P Soc Photo-opt Ins Ico20: Display Devices and Systems = P. Soc. Photo-opt. Ins. Ico20: Illumination, Radiation, and Color Technologies = P Soc Photo-opt Ins Ico20: Illumination, Radiation, and Color Technologies = P. Soc. Photo-opt. Ins. Ico20: Lasers and Laser Technologies = P Soc Photo-opt Ins Ico20: Lasers and Laser Technologies = P. Soc. Photo-opt. Ins. Ico20: Materials and Nanostructures = Proc Spie Ico20: Materials and Nanostructures = Proc. Spie. Ico20: Materials and Nanostructures = P Soc Photo-opt Ins Ico20: Materials and Nanostructures = P. Soc. Photo-opt. Ins. Ico20: Mem, Moems, and Nems = Proc Spie Ico20: Mem, Moems, and Nems = Proc. Spie. Ico20: Mem, Moems, and Nems = P Soc Photo-opt Ins Ico20: Mem, Moems, and Nems = P. Soc. Photo-opt. Ins. Ico20: Optical Communication = P Soc Photo-opt Ins Ico20: Optical Communication = P. Soc. Photo-opt. Ins. Ico20: Optical Design and Fabrication = P Soc Photo-opt Ins Ico20: Optical Design and Fabrication = P. Soc. Photo-opt. Ins. Ico20: Optical Information Processing, Pts 1 and 2 = Proc Spie Ico20: Optical Information Processing, Pts 1 and 2 = Proc. Spie. Ico20: Optical Information Processing, Pts 1 and 2 = P Soc Photo-opt Ins Ico20: Optical Information Processing, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Ico20: Remote Sensing and Infrared Devices and Systems = P Soc Photo-opt Ins Ico20: Remote Sensing and Infrared Devices and Systems = P. Soc. Photo-opt. Ins. Icon-international Journal of Constitutional Law = Icon-int J Const Law Icon-international Journal of Constitutional Law = Icon-int. J. Const. Law Icono 2001: Fundamental Aspects of Laser-matter Interaction and Physics of Nanostructures = Proc Spie Icono 2001: Fundamental Aspects of Laser-matter Interaction and Physics of Nanostructures = Proc. Spie. Icono 2001: Fundamental Aspects of Laser-matter Interaction and Physics of Nanostructures = P Soc Photo-opt Ins Icono 2001: Fundamental Aspects of Laser-matter Interaction and Physics of Nanostructures = P. Soc. Photo-opt. Ins. Icono 2001: Nonlinear Optical Phenomena and Nonlinear Dynamics of Optical Systems = Proc Spie Icono 2001: Nonlinear Optical Phenomena and Nonlinear Dynamics of Optical Systems = Proc. Spie. Icono 2001: Nonlinear Optical Phenomena and Nonlinear Dynamics of Optical Systems = P Soc Photo-opt Ins Icono 2001: Nonlinear Optical Phenomena and Nonlinear Dynamics of Optical Systems = P. Soc. Photo-opt. Ins. Icono 2001: Novel Trends in Nonlinear Laser Spectroscopy and Optical Diagnostics and Laser in Chemistry, Biophysics, and Biomedicine = Proc Spie Icono 2001: Novel Trends in Nonlinear Laser Spectroscopy and Optical Diagnostics and Laser in Chemistry, Biophysics, and Biomedicine = Proc. Spie. Icono 2001: Novel Trends in Nonlinear Laser Spectroscopy and Optical Diagnostics and Laser in Chemistry, Biophysics, and Biomedicine = P Soc Photo-opt Ins Icono 2001: Novel Trends in Nonlinear Laser Spectroscopy and Optical Diagnostics and Laser in Chemistry, Biophysics, and Biomedicine = P. Soc. Photo-opt. Ins. Icono 2001: Quantum and Atomic Optics, High-precision Measurements in Optics, and Optical Information Processing, Transmission, and Storage = P Soc Photo-opt Ins Icono 2001: Quantum and Atomic Optics, High-precision Measurements in Optics, and Optical Information Processing, Transmission, and Storage = P. Soc. Photo-opt. Ins. Icono 2001: Ultrafast Phenomena and Strong Laser Fields = P Soc Photo-opt Ins Icono 2001: Ultrafast Phenomena and Strong Laser Fields = P. Soc. Photo-opt. Ins. Icono 2005: Nonlinear Laser Spectroscopy, High Precision Measurements, and Laser Biomedicine and Chemistry = P Soc Photo-opt Ins Icono 2005: Nonlinear Laser Spectroscopy, High Precision Measurements, and Laser Biomedicine and Chemistry = P. Soc. Photo-opt. Ins. Icono 2005: Nonlinear Optical Phenomena = Proc Spie Icono 2005: Nonlinear Optical Phenomena = Proc. Spie. Icono 2005: Nonlinear Optical Phenomena = P Soc Photo-opt Ins Icono 2005: Nonlinear Optical Phenomena = P. Soc. Photo-opt. Ins. Icono 2005: Nonlinear Space-time Dynamics = P Soc Photo-opt Ins Icono 2005: Nonlinear Space-time Dynamics = P. Soc. Photo-opt. Ins. Icono 2005: Novel Photonics Materials: Physics and Optical Diagnostics of Nanostructures = Proc Spie Icono 2005: Novel Photonics Materials: Physics and Optical Diagnostics of Nanostructures = Proc. Spie. Icono 2005: Novel Photonics Materials: Physics and Optical Diagnostics of Nanostructures = P Soc Photo-opt Ins Icono 2005: Novel Photonics Materials: Physics and Optical Diagnostics of Nanostructures = P. Soc. Photo-opt. Ins. Icono 2005: Ultrafast Phenomena and Physics of Superintense Laser Fields; Quantum and Atom Optics; Engineering of Quantum Information = P Soc Photo-opt Ins Icono 2005: Ultrafast Phenomena and Physics of Superintense Laser Fields; Quantum and Atom Optics; Engineering of Quantum Information = P. Soc. Photo-opt. Ins. Icono 2007: Coherent and Nonlinear Optical Phenomena = P Soc Photo-opt Ins Icono 2007: Coherent and Nonlinear Optical Phenomena = P. Soc. Photo-opt. Ins. Icono 2007: Nonlinear Laser Spectroscopy and High-precision Measurements; and Fundamentals of Laser Chemistry and Biophotonics = Proc Spie Icono 2007: Nonlinear Laser Spectroscopy and High-precision Measurements; and Fundamentals of Laser Chemistry and Biophotonics = Proc. Spie. Icono 2007: Nonlinear Laser Spectroscopy and High-precision Measurements; and Fundamentals of Laser Chemistry and Biophotonics = P Soc Photo-opt Ins Icono 2007: Nonlinear Laser Spectroscopy and High-precision Measurements; and Fundamentals of Laser Chemistry and Biophotonics = P. Soc. Photo-opt. Ins. Icono 2007: Nonlinear Space-time Dynamics = Proc Spie Icono 2007: Nonlinear Space-time Dynamics = Proc. Spie. Icono 2007: Nonlinear Space-time Dynamics = P Soc Photo-opt Ins Icono 2007: Nonlinear Space-time Dynamics = P. Soc. Photo-opt. Ins. Icono 2007: Novel Photonics Materials; Optics and Optical Diagnostics of Nanostructures = P Soc Photo-opt Ins Icono 2007: Novel Photonics Materials; Optics and Optical Diagnostics of Nanostructures = P. Soc. Photo-opt. Ins. Icono 2007: Physics of Intense and Superintense Laser Fields; Attosecond Pulses; Quantum and Atomic Optics; and Engineering of Quantum Information = Lect Notes Comput Sc Icono 2007: Physics of Intense and Superintense Laser Fields; Attosecond Pulses; Quantum and Atomic Optics; and Engineering of Quantum Information = Lect. Notes. Comput. Sc. Icono 2010: International Conference On Coherent and Nonlinear Optics = Proc Spie Icono 2010: International Conference On Coherent and Nonlinear Optics = Proc. Spie. Icono '98: Fundamental Aspects of Laser-matter Interaction and New Nonlinear Optical Materials and Physics of Low-dimensional Structures = Proc Spie Icono '98: Fundamental Aspects of Laser-matter Interaction and New Nonlinear Optical Materials and Physics of Low-dimensional Structures = Proc. Spie. Icono '98: Fundamental Aspects of Laser-matter Interaction and New Nonlinear Optical Materials and Physics of Low-dimensional Structures = P Soc Photo-opt Ins Icono '98: Fundamental Aspects of Laser-matter Interaction and New Nonlinear Optical Materials and Physics of Low-dimensional Structures = P. Soc. Photo-opt. Ins. Icono '98: Quantum Optics, Interference Phenomena in Atomic Systems, and High-precision Measurements = Proc Spie Icono '98: Quantum Optics, Interference Phenomena in Atomic Systems, and High-precision Measurements = Proc. Spie. Icono '98: Quantum Optics, Interference Phenomena in Atomic Systems, and High-precision Measurements = P Soc Photo-opt Ins Icono '98: Quantum Optics, Interference Phenomena in Atomic Systems, and High-precision Measurements = P. Soc. Photo-opt. Ins. Icono '98: Ultrafast Phenomena and Interaction of Superstrong Laser Fields With Matter: Nonlinear Optics and High-field Physics = P Soc Photo-opt Ins Icono '98: Ultrafast Phenomena and Interaction of Superstrong Laser Fields With Matter: Nonlinear Optics and High-field Physics = P. Soc. Photo-opt. Ins. Iconographia Diatomologica = Iconogr Diatomol Iconographia Diatomologica = Iconogr. Diatomol. Iconography At The Crossroads = Index Christ Art Oc Iconography At The Crossroads = Index. Christ. Art. Oc. Icono - Solid State Lasers and New Laser Materials = P Soc Photo-opt Ins Icono - Solid State Lasers and New Laser Materials = P. Soc. Photo-opt. Ins. Icoscm 2007 - International Conference On Operations and Supply Chain Management in China = Ser Oper Supp Ch Man Icoscm 2007 - International Conference On Operations and Supply Chain Management in China = Ser. Oper. Supp. Ch. Man. Icoscm 2009 - Proceedings of The 3rd International Conference On Operations and Supply Chain Management = Ser Oper Supp Ch Man Icoscm 2009 - Proceedings of The 3rd International Conference On Operations and Supply Chain Management = Ser. Oper. Supp. Ch. Man. Icotom 14: Textures of Materials, Pts 1and 2 = Mater Sci Forum Icotom 14: Textures of Materials, Pts 1and 2 = Mater. Sci. Forum. Icp Business Software Review = Icp Bus Softw Rev Icp Business Software Review = Icp Bus. Softw. Rev. Icpc 2007: 15th Ieee International Conference On Program Comprehension, Proceedings = Int C Program Compre Icpc 2007: 15th Ieee International Conference On Program Comprehension, Proceedings = Int. C. Program Compre. Icpc: 2009 Ieee 17th International Conference On Program Comprehension = Int C Program Compre Icpc: 2009 Ieee 17th International Conference On Program Comprehension = Int. C. Program Compre. ICPD 94 : newsletter of the International Conference on Population and Development = ICPD 94 Icp Software Business Review = Icp Bus Softw Rev Icp Software Business Review = Icp Bus. Softw. Rev. Icra: 2009 Ieee International Conference On Robotics and Automation, Vols 1-7 = Ieee Int Conf Robot Icra: 2009 Ieee International Conference On Robotics and Automation, Vols 1-7 = Ieee Int. Conf. Robot. I. C. R. S. medical reports = ICRS Med Rep I&cs-control Technology for Engineers and Engineering Management = I&cs-control Tech En I&cs-control Technology for Engineers and Engineering Management = I&cs-control Tech. En. Icse 05: 27th International Conference On Software Engineering, Proceedings = Proc Int Conf Softw Icse 05: 27th International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. Icse 2004: 26th International Conference On Software Engineering, Proceedings = Proc Int Conf Softw Icse 2004: 26th International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. Icse 2007: 29th International Conference On Software Engineering, Proceedings = Proc Int Conf Softw Icse 2007: 29th International Conference On Software Engineering, Proceedings = Proc. Int. Conf. Softw. I&cs-industrial and Process Control Magazine = I&cs-control Tech En I&cs-industrial and Process Control Magazine = I&cs-control. Tech. En. I&cs-instrumentation & Control Systems = I&cs-instr Con Syst I&cs-instrumentation & Control Systems = I&cs-instr. Con. Syst. Icsm 2005: Proceedings of The 21st Ieee International Conference On Software Maintenance = Proc Ieee Int Conf S Icsm 2005: Proceedings of The 21st Ieee International Conference On Software Maintenance = Proc. Ieee Int. Conf. S. Icsm 2006: 22nd Ieee International Conference On Software Maintenance, Proceedings = Proc Ieee Int Conf S Icsm 2006: 22nd Ieee International Conference On Software Maintenance, Proceedings = Proc. Ieee Int. Conf. S. ICSSR newsletter. Indian Council of Social Science Research = ICSSR Newsl Icsu Press Symposium = Icsu Press ICSU review = Icsu Rev ICSU Short Reports = ICSU Short Rep. Ictai 2001: 13th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Ictai 2001: 13th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Ictai 2004: 16th Ieee Internationalconference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Ictai 2004: 16th Ieee Internationalconference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Ictai 2005: 17th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Ictai 2005: 17th Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Ictai-2006: Eighteenth International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Ictai-2006: Eighteenth International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Ictai: 2009 21st International Conference On Tools With Artificial Intelligence = Proc Int C Tools Art Ictai: 2009 21st International Conference On Tools With Artificial Intelligence = Proc. Int. C. Tools Art. Ict for Education, Development, and Social Justice = Curr Persp Appl Inf Ict for Education, Development, and Social Justice = Curr. Persp. Appl. Inf. Icton Mediterranean Winter Conference = Icton Medit Win Conf Icton Mediterranean Winter Conference = Icton Medit. Win. Conf. Ictp Lecture Notes Series = Ictp Lect Notes Ictp Lecture Notes Series = Ictp Lect. Notes Ictp Series in Theoretical Physics = Ictp S Theo Ictp Series in Theoretical Physics = Ictp S. Theo. Icts, Citizens and Governance: After The Hype = Innov Public Sect Icts, Citizens and Governance: After The Hype = Innov. Public. Sect. Ict Task Force Series = Ict Task Force Ser Ict Task Force Series = Ict Task Force Ser. Icupc '98 - Ieee 1998 International Conference On Universal Personal Communications, Vols 1 and 2 = Ieee Int Conf Upc Icupc '98 - Ieee 1998 International Conference On Universal Personal Communications, Vols 1 and 2 = Ieee Int. Conf. Upc. Icy Bodies of The Solar System = Iau Symp P Series Icy Bodies of The Solar System = Iau. Symp. P. Series. I.D.A.A. communique = IDAA Commun IDAA Communique = IDAA Commun. Idaacs'2001: Proceedings of The International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Application = Int Worksh Int Data Idaacs'2001: Proceedings of The International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Application = Int. Worksh. Int. Data Idaacs'2003: Proceedings of The Second Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int Worksh Int Data Idaacs'2003: Proceedings of The Second Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int. Worksh. Int. Data Idaacs 2007: Proceedings of The 4th Ieee Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int Worksh Int Data Idaacs 2007: Proceedings of The 4th Ieee Workshop On Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications = Int. Worksh. Int. Data Idaho Agricultural Experiment Station Bulletin = Idaho Aes Bull Idaho Agricultural Experiment Station Bulletin = Idaho Aes. Bull. Idaho Agricultural Experiment Station Current Information Series = Idaho Aes Curr Infor Idaho Agricultural Experiment Station Current Information Series = Idaho Aes. Curr. Infor. Idaho Agricultural Experiment Station Research Bulletin = Idaho Aes Res Bull Idaho Agricultural Experiment Station Research Bulletin = Idaho Aes. Res. Bull. Idaho code : containing the general laws of Idaho annotated, Compiled under the supervision of the Idaho Code Commission. Idaho = Ida Code Ida Idaho Cooperative Extension Service Bulletin = Idaho Coop Ext S Bul Idaho Cooperative Extension Service Bulletin = Idaho Coop. Ext. S. Bul. Idaho law review = Ida Law Rev Idealism Without Limits: Hegel and The Problem of Objectivity = Philos Stud Contemp Idealism Without Limits: Hegel and The Problem of Objectivity = Philos. Stud. Contemp. Idealistic Studies = Idealistic Stud Idealistic Studies = Idealistic Stud. Idealization Xiii: Modeling in History = Poznan Stud Philos S Idealization Xiii: Modeling in History = Poznan. Stud. Philos. S. Ideal of Public Service: Reflections On The Higher Civil Service in Britain = Routl Stud Gov Publ Ideal of Public Service: Reflections On The Higher Civil Service in Britain = Routl. Stud. Gov. Publ. Ideal Sequence Design in Time-frequency Space: Applications to Radar, Sonar, and Communication Systems = Appl Numer Harmon An Ideal Sequence Design in Time-frequency Space: Applications to Radar, Sonar, and Communication Systems = Appl. Numer. Harmon. An. Ideal Spaces = Lect Notes Math Ideal Spaces = Lect. Notes. Math. Ideal Theoretic Methods in Commutative Algebra = Lect Notes Pure Appl Ideal Theoretic Methods in Commutative Algebra = Lect. Notes. Pure. Appl. Idea of Humanity in A Global Era = Palg Mac Transnat H Idea of Humanity in A Global Era = Palg. Mac. Transnat. H. Idea of Values = Ideas Under World Idea of Values = Ideas. Under. World. Ideas 2007: 11th International Database Engineering and Applications Symposium, Proceedings = Int Database Eng App Ideas 2007: 11th International Database Engineering and Applications Symposium, Proceedings = Int. Database Eng. App. Ideas and Options in English for Specific Purposes = Esl Appl Ling Prof Ideas and Options in English for Specific Purposes = Esl. Appl. Ling. Prof. Ideas and Production = Ideas Prod Ideas and Production = Ideas Prod. Ideas in Context = Ideas Context Ideas of Difference = Soc Rev Mon Ideas of Difference = Soc. Rev. Mon. Ideas, Policies and Economic Development in The Americas = Routl Stud Dev Econ Ideas, Policies and Economic Development in The Americas = Routl. Stud. Dev. Econ. Ideas & production = Ideas Prod Ideas Underlying World Problems = Ideas Under World Ideas Underlying World Problems = Ideas Under. World Ideas Y Valores = Ideas Valores IDEA The Journal of Law and Technology = IDEA J Law Technol Idea to Product = Serono Symp Idea to Product = Serono. Symp. Ideen & Argumente = Ideen Argumente Ideggyogyaszati Szemle-clinical Neuroscience = Ideggyogy Szemle Ideggyogyaszati Szemle-clinical Neuroscience = Ideggyogy. Szemle. Ideggyogyaszati Szemle-clinical Neuroscience = Ideggyogy Szle Ideggyogyaszati Szemle-clinical Neuroscience = Ideggyogy. Szle. Ideggyogyaszati szemle = Ideggyogy Sz Ide-jetro Series = Ide-jetro Ser Ide-jetro Series = Ide-jetro Ser. Ide-jetro Series = Ide Jetro Ser Ide-jetro Series = Ide. Jetro. Ser. Idempotent Mathematics and Mathematical Physics = Contemp Math Idempotent Mathematics and Mathematical Physics = Contemp. Math. Idenfificaiton of Nonlinear Systems Using Neural Networks and Polynomial Models = Lect Notes Contr Inf Idenfificaiton of Nonlinear Systems Using Neural Networks and Polynomial Models = Lect. Notes. Contr. Inf. Idengaku zasshi = Jpn J Genet Identification and Characterization of Neural Progenitor Cells in The Adult Mammalian Brain = Adv Anat Embryol Cel Identification and Characterization of Neural Progenitor Cells in The Adult Mammalian Brain = Adv. Anat. Embryol. Cel. Identification and Control in Systems Governed By Partial Differential Equations = Siam Proc S Identification and Control in Systems Governed By Partial Differential Equations = Siam. Proc. S. Identification and Quantification of Drugs, Metabolites and Metabolizing Enzymes By Lc-ms = Prog Ph Bio Anal Identification and Quantification of Drugs, Metabolites and Metabolizing Enzymes By Lc-ms = Prog. Ph. Bio. Anal. Identification and System Parameter Estimation 1991, Vols 1 and 2 = Ifac Symp Series Identification and System Parameter Estimation 1991, Vols 1 and 2 = Ifac. Symp. Series. Identification of Continuous-time Models From Sampled Data = Adv Ind Control Identification of Continuous-time Models From Sampled Data = Adv. Ind. Control. Identification of Damage Using Lamb Waves: From Fundamentals to Applications = Lect Notes Appl Comp Identification of Damage Using Lamb Waves: From Fundamentals to Applications = Lect. Notes. Appl. Comp. Identification of Defects in Semiconductors = Semiconduct Semimet Identification of Defects in Semiconductors = Semiconduct. Semimet. Identification of Textile Fibers = Woodhead Publ Text Identification of Textile Fibers = Woodhead. Publ. Text. Identification of The Cf ( Cystic Fibrosis ) Gene = Adv Exp Med Biol Identification of The Cf ( Cystic Fibrosis ) Gene = Adv. Exp. Med. Biol. Identifikationssysteme Und Automatisierung = Vdi-buch Identifikationssysteme Und Automatisierung = Vdi-buch. Identifiying, Assessing, and Treating Ptsd At School = Dev Psychopathol Sch Identifiying, Assessing, and Treating Ptsd At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Adhd At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Adhd At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Conduct Disorder At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Conduct Disorder At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Dyslexia At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Dyslexia At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Early Onset Schizophrenia At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Early Onset Schizophrenia At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Ptsd At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Ptsd At School = Dev. Psychopathol. Sch. Identifying, Assessing, and Treating Self-injury At School = Dev Psychopathol Sch Identifying, Assessing, and Treating Self-injury At School = Dev. Psychopathol. Sch. Identifying Malicious Code Through Reverse Engineering = Adv Inform Secur Identifying Malicious Code Through Reverse Engineering = Adv. Inform. Secur. Identifying The Needs of Drug-affected Children: Public Policy Issues = Osap Prev M Identifying The Needs of Drug-affected Children: Public Policy Issues = Osap. Prev. M. Identitat, Institutionen Und Okonomie = Polit Vierteljahress Identitat, Institutionen Und Okonomie = Polit. Vierteljahress. Identities At Work = Tech Vocat Ed Train Identities At Work = Tech. Vocat. Ed. Train. Identities-global Studies in Culture and Power = Identities-glob Stud Identities-global Studies in Culture and Power = Identities-glob. Stud. Identities On The Move = Stud Cult Soc Identities On The Move = Stud. Cult. Soc. Identity and Global Politics: Theoretical and Empirical Elaborations = Cult Relig Int Relat Identity and Global Politics: Theoretical and Empirical Elaborations = Cult. Relig. Int. Relat. Identity and Marginality Among New Australians = Relig Soc Identity and Marginality Among New Australians = Relig. Soc. Identity and Privacy in The Internet Age, Proceedings = Lect Notes Comput Sc Identity and Privacy in The Internet Age, Proceedings = Lect. Notes. Comput. Sc. Identity and Second Language Learning: Culture, Inquiry and Dialogic Activity in Educational Contexts = Contemp Lang Stud Ed Identity and Second Language Learning: Culture, Inquiry and Dialogic Activity in Educational Contexts = Contemp. Lang. Stud. Ed. Identity-based Cryptography = Cryptol Inf Sec Ser Identity-based Cryptography = Cryptol. Inf. Sec. Ser. Identity for Europe: The Relevance of Multiculturalism in Eu Construction = Sci Po Ser Int Relat Identity for Europe: The Relevance of Multiculturalism in Eu Construction = Sci. Po. Ser. Int. Relat. Identity in Education = Future Minor Stud Identity in Education = Future. Minor. Stud. Identity, Interests and Attitudes to European Integration = Palgrave Stud Eur Un Identity, Interests and Attitudes to European Integration = Palgrave. Stud. Eur. Un. Identity in The 21st Century: New Trends in Changing Times = Identity Stud Soc Sc Identity in The 21st Century: New Trends in Changing Times = Identity Stud. Soc. Sc. Identity Issues in Groups = Res Manag Group Team Identity Issues in Groups = Res. Manag. Group. Team. Identity Issues in Groups = Res Manag Grp Team Identity Issues in Groups = Res. Manag. Grp. Team. Identity Management : Concepts, Technologies, and Systems = Artech Hse Inf Secur Identity Management : Concepts, Technologies, and Systems = Artech. Hse. Inf. Secur. Identity Politics in The Age of Genocide: The Holocaust and Historical Representation = Routl Adv Int Relat Identity Politics in The Age of Genocide: The Holocaust and Historical Representation = Routl. Adv. Int. Relat. Identity Politics Reconsidered = Future Minor Stud Identity Politics Reconsidered = Future. Minor. Stud. Identity Studies in The Social Sciences = Identity Stud Soc Sc Identity Studies in The Social Sciences = Identity Stud. Soc. Sc. Identity Tourism: Imaging and Imagining The Nation = Tour Soc Sci Ser Identity Tourism: Imaging and Imagining The Nation = Tour. Soc. Sci. Ser. Ideologies Across Nations = Lang Power Soc Proce Ideologies Across Nations = Lang. Power. Soc. Proce. Ideology and Status of Sanskrit = Brills Indol Lib Ideology and Status of Sanskrit = Brills. Indol. Lib. Ideology & Consciousness = Ic Ideology & Consciousness = Ic. Idimt 2004, Proceedings = Schriften Informatik Idimt 2004, Proceedings = Schriften. Informatik. Idimt-2005 = Schriften Informatik Idimt-2005 = Schriften. Informatik. Idimt-2006 = Schriften Informatik Idimt-2006 = Schriften. Informatik. Idimt-2007 = Schriften Informatik Idimt-2007 = Schriften. Informatik. Idimt-2008: Managing The Unmanageable = Schriften Informatik Idimt-2008: Managing The Unmanageable = Schriften. Informatik. Idimt-2009: System and Humans, A Complex Relationship = Schriften Informatik Idimt-2009: System and Humans, A Complex Relationship = Schriften. Informatik. Idimt-2010: Information Technology - Human Values, Innovation and Economy = Schriften Informatik Idimt-2010: Information Technology - Human Values, Innovation and Economy = Schriften. Informatik. Idiosyncratic Adverse Drug Reactions : Impact On Drug Development and Clinical Use After Marketing = Int Congr Ser Idiosyncratic Adverse Drug Reactions : Impact On Drug Development and Clinical Use After Marketing = Int. Congr. Ser. Idiotype Networks in Biology and Medicine = Int Congr Ser Idiotype Networks in Biology and Medicine = Int. Congr. Ser. Idojaras = Idojaras IDO Reports = IDO Rep. IDO [reports]. U.S. Atomic Energy Commission = IDO Rep Idrugs = Idrugs IDrugs : the investigational drugs journal = IDrugs IDS bulletin = IDS Bull Ids Bulletin-institute of Development Studies = Ids Bull-i Dev Stud Ids Bulletin-institute of Development Studies = Ids Bull-i. Dev. Stud. Iea Conference Volume = Iea Conf Vol Iea Conference Volume = Iea Conf. Vol. I E A Conference Volume = Iea Conf Vol I E A Conference Volume = Iea. Conf. Vol. Iea Implementing Agreement for A Programme of Research and Development On Fusion Materials = K F K Reports Iea Implementing Agreement for A Programme of Research and Development On Fusion Materials = K. F. K. Reports. Iecec 96 - Proceedings of The 31st Intersociety Energy Conversion Engineering Conference, Vols 1-4 = Proc Iecec Iecec 96 - Proceedings of The 31st Intersociety Energy Conversion Engineering Conference, Vols 1-4 = Proc. Iecec Iecon'01: 27th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind Elec Iecon'01: 27th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind. Elec. Iecon'03: The 29th Annual Conference of The Ieee Industrial Electronics Society, Vols 1 - 3, Proceedings = Ieee Ind Elec Iecon'03: The 29th Annual Conference of The Ieee Industrial Electronics Society, Vols 1 - 3, Proceedings = Ieee Ind. Elec. Iecon 2000: 26th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind Elec Iecon 2000: 26th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind. Elec. Iecon-2002: Proceedings of The 2002 28th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind Elec Iecon-2002: Proceedings of The 2002 28th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind. Elec. Iecon 2004 - 30th Annual Conference of Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind Elec Iecon 2004 - 30th Annual Conference of Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind. Elec. Iecon 2005: Thirty-first Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind Elec Iecon 2005: Thirty-first Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3 = Ieee Ind. Elec. Iecon 2006 - 32nd Annual Conference On Ieee Industrial Electronics, Vols 1-11 = Ieee Ind Elec Iecon 2006 - 32nd Annual Conference On Ieee Industrial Electronics, Vols 1-11 = Ieee Ind. Elec. Iecon 2007: 33rd Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3, Conference Proceedings = Ieee Ind Elec Iecon 2007: 33rd Annual Conference of The Ieee Industrial Electronics Society, Vols 1-3, Conference Proceedings = Ieee Ind. Elec. Iecon 2008: 34th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-5, Proceedings = Ieee Ind Elec Iecon 2008: 34th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-5, Proceedings = Ieee Ind. Elec. Iecon 2010: 36th Annual Conference of The Ieee Industrial Electronics Society = Ieee Ind Elec Iecon 2010: 36th Annual Conference of The Ieee Industrial Electronics Society = Ieee Ind. Elec. Iecon '94 - 20th International Conference On Industrial Electronics, Control and Instrumentation, Vol 1-3 = Ieee Ind Elec Iecon '94 - 20th International Conference On Industrial Electronics, Control and Instrumentation, Vol 1-3 = Ieee. Ind. Elec. Iecon '97 - Proceedings of The 23rd International Conference On Industrial Electronics, Control, and Instrumentation, Vols. 1-4 = Ieee Ind Elec Iecon '97 - Proceedings of The 23rd International Conference On Industrial Electronics, Control, and Instrumentation, Vols. 1-4 = Ieee. Ind. Elec. Iecon '98 - Proceedings of The 24th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind Elec Iecon '98 - Proceedings of The 24th Annual Conference of The Ieee Industrial Electronics Society, Vols 1-4 = Ieee Ind. Elec. Iee Conference Publications = Iee Conf Publ Iee Conference Publications = Iee Conf. Publ. Ieee 17th International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int Conf Asap Ieee 17th International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int. Conf. Asap. Ieee 1990 Ultrasonics Symposium : Proceedings, Vols 1-3 = Ultrason Ieee 1990 Ultrasonics Symposium : Proceedings, Vols 1-3 = Ultrason. Ieee 1991 Annual Textile, Fiber and Film Industry Technical Conf = Ieee Text F Ieee 1991 Annual Textile, Fiber and Film Industry Technical Conf = Ieee Text. F. Ieee 1991 Ultrasonics Symposium : Proceedings, Vols 1 and 2 = Ultrason Ieee 1991 Ultrasonics Symposium : Proceedings, Vols 1 and 2 = Ultrason. Ieee 1992 Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text F Ieee 1992 Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text. F. Ieee 1992 Ultrasonics Symposium : Proceedings, Vols 1 and 2 = Ultrason Ieee 1992 Ultrasonics Symposium : Proceedings, Vols 1 and 2 = Ultrason. Ieee 1993 Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text F Ieee 1993 Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text. F. Ieee 1993 Microwave and Millimeter-wave Monolithic Circuits Symposium: Digest of Papers = Dig Pap Ieee Microw Ieee 1993 Microwave and Millimeter-wave Monolithic Circuits Symposium: Digest of Papers = Dig. Pap. Ieee Microw. Ieee 1993 Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason Ieee 1993 Ultrasonics Symposium Proceedings, Vols 1 and 2 = Ultrason. Ieee 1996 National Aerospace and Electronics Conference - Naecon 1996 = Proc Naecon Ieee Nat Ieee 1996 National Aerospace and Electronics Conference - Naecon 1996 = Proc. Naecon Ieee Nat. Ieee 1997 Virtual Reality Annual International Symposium, Proceedings = P Ieee Virt Real Ann Ieee 1997 Virtual Reality Annual International Symposium, Proceedings = P. Ieee Virt. Real. Ann. Ieee 1998 Virtual Reality Annual International Symposium, Proceedings = P Ieee Virt Real Ann Ieee 1998 Virtual Reality Annual International Symposium, Proceedings = P. Ieee Virt. Real. Ann. Ieee 2000 Eighth International Workshop On Quality of Service = Int Worksh Qual Serv Ieee 2000 Eighth International Workshop On Quality of Service = Int. Worksh. Qual. Serv. Ieee 2000 Tencon Proceedings, Vols I-iii = Tencon Ieee Region Ieee 2000 Tencon Proceedings, Vols I-iii = Tencon Ieee Region. Ieee 54th Vehicular Technology Conference, Vtc Fall 2001, Vols 1-4, Proceedings = Ieee Vts Veh Technol Ieee 54th Vehicular Technology Conference, Vtc Fall 2001, Vols 1-4, Proceedings = Ieee Vts. Veh. Technol. Ieee 55th Vehicular Technology Conference, Vtc Spring 2002, Vols 1-4, Proceedings = Ieee Vts Veh Technol Ieee 55th Vehicular Technology Conference, Vtc Spring 2002, Vols 1-4, Proceedings = Ieee Vts. Veh. Technol. Ieee 56th Vehicular Technology Conference, Vtc Fall 2002, Vols 1-4, Proceedings = Ieee Vts Veh Technol Ieee 56th Vehicular Technology Conference, Vtc Fall 2002, Vols 1-4, Proceedings = Ieee Vts. Veh. Technol. Ieee 89 International Conference On Consumer Electronics = Ieee Icce Ieee 89 International Conference On Consumer Electronics = Ieee Icce. {IEEE} Access = {IEEE} Access Ieee Acm Ifip Workshop On Embedded Systems for Real Time Multimedia = Emb Syst Real Time M Ieee Acm Ifip Workshop On Embedded Systems for Real Time Multimedia = Emb. Syst. Real Time M. Ieee Acm International Conference On Automated Software Engineering = Ieee Int Conf Autom Ieee Acm International Conference On Automated Software Engineering = Ieee Int. Conf. Autom. Ieee/acm International Conference On Computer-aided Design Digest of Technical Papers, Vols 1 and 2 = Ieee Ic Cad Ieee/acm International Conference On Computer-aided Design Digest of Technical Papers, Vols 1 and 2 = Ieee. Ic. Cad. Ieee/acm International Symposium On Distributed Simulation and Real-time Applications = Ieee Acm Dis Sim Ieee/acm International Symposium On Distributed Simulation and Real-time Applications = Ieee. Acm. Dis. Sim. Ieee Acm International Symposium On Distributed Simulation and Real-time Applications = Ieee Acm Dis Sim Ieee Acm International Symposium On Distributed Simulation and Real-time Applications = Ieee Acm Dis. Sim. Ieee Acm International Symposium On Distributed Simulation and Real Time Applications = Ieee Acm Dis Sim Ieee Acm International Symposium On Distributed Simulation and Real Time Applications = Ieee Acm Dis. Sim. {IEEE/ACM} Transactions on Audio, Speech, and Language Processing = {IEEE/ACM} Trans. Audio, Speech, Language Process. IEEE/ACM transactions on computational biology and bioinformatics / IEEE, ACM = IEEE/ACM Trans Comput Biol Bioinform Ieee-acm Transactions On Computational Biology and Bioinformatics = Ieee-acm T Comput Bi Ieee-acm Transactions On Computational Biology and Bioinformatics = Ieee-acm T. Comput. Bi. Ieee-acm Transactions On Computational Biology and Bioinformatics = Ieee Acm T Comput Bi Ieee-acm Transactions On Computational Biology and Bioinformatics = Ieee. Acm. T. Comput. Bi. IEEE-ACM Transactions on Computational Biology and Bioinformatics = IEEE-ACM Trans. Comput. Bi. IEEE/ACM Transactions on Computational Biology and Bioinformatics = IEEE/ACM Trans. Comput. Biol. Bioinf. IEEE/ACM Transactions on Computational Biology and Bioinformatics = IEEE/ACM Trans. Comput. Biol. Bioinform. {IEEE/ACM} Transactions on Computational Biology and Bioinformatics = {IEEE/ACM} Trans. Comput. Biol. Bioinformatics Ieee-acm Transactions On Computational Biology and Bioinformatiocs = Ieee-acm T Comput Bi Ieee-acm Transactions On Computational Biology and Bioinformatiocs = Ieee-acm T. Comput. Bi. IEEE-ACM Transactions on Computational Biology and Bioinformatiocs = IEEE-ACM Trans. Comput. Bi. Ieee-acm Transactions On Networking = Ieee Acm T Network Ieee-acm Transactions On Networking = Ieee. Acm. T. Network. {IEEE/ACM} Transactions on Networking = {IEEE/ACM} Trans. Netw. IEEE-ACM Transactions on Networking = IEEE ACM Trans. Network. IEEE/ACM Transactions on Networking = IEEE/ACM Trans. Networking {IEEE} Aerospace and Electronics Systems Magazine = {IEEE} Aerosp. Electron. Syst. Mag. IEEE Aerospace and Electronics Systems Magazine = IEEE Aerosp. Electron. Syst. Mag. Ieee Aerospace and Electronic Systems Magazine = Ieee Aero El Sys Mag Ieee Aerospace and Electronic Systems Magazine = Ieee Aero. El. Sys. Mag. IEEE Aerospace and Electronic Systems Magazine = IEEE Aerosp. Electron. Syst. Mag. Ieee Aerospace Conference Proceedings = Aerosp Conf Proc Ieee Aerospace Conference Proceedings = Aerosp. Conf. Proc. Ieee Africon = Ieee Africon IEEE Annals of the History of Computing = IEEE Annals Hist. Comput. Ieee Annals of The History of Computing = Ieee Ann Hist Comput Ieee Annals of The History of Computing = Ieee Ann. Hist. Comput. {IEEE} Annals of the History of Computing = {IEEE} Ann. Hist. Comput. IEEE Annals of the History of Computing = IEEE Ann. Hist. Comput. Ieee Annual Ieee Software Engineering Workshop = Ieee Annu Softw Eng Ieee Annual Ieee Software Engineering Workshop = Ieee Annu. Softw. Eng. Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text F Ieee Annual Textile, Fiber and Film Industry Technical Conference = Ieee Text. F. Ieee Annual Textile Industry Technical Conference = Ieee A Text Ieee Annual Textile Industry Technical Conference = Ieee A. Text. Ieee Antennas and Propagation Magazine = Ieee Antennas Propag Ieee Antennas and Propagation Magazine = Ieee Antennas Propag. IEEE Antennas and Propagation Magazine = IEEE Antennas Propagat. Mag. {IEEE} Antennas and Propagation Magazine = {IEEE} Antennas Propag. Mag. IEEE Antennas and Propagation Magazine = IEEE Antennas Propag. Mag. Ieee Antennas and Propagation Magazine = Ieee Antenn Propag M Ieee Antennas and Propagation Magazine = Ieee Antenn. Propag. M. Ieee Antennas and Propagation Society, International Symposium 1993, Vols 1-3 = Ieee Ap-s Ieee Antennas and Propagation Society, International Symposium 1993, Vols 1-3 = Ieee Ap-s. Ieee Antennas and Propagation Society International Symposium 1994, Vols I-iii = Ieee Ap-s Ieee Antennas and Propagation Society International Symposium 1994, Vols I-iii = Ieee Ap-s. Ieee Antennas and Propagation Society International Symposium - Antennas: Gateways to The Global Network, Vols 1-4 = Ieee Ap-s Ieee Antennas and Propagation Society International Symposium - Antennas: Gateways to The Global Network, Vols 1-4 = Ieee Ap-s. Ieee Antennas and Propagation Society International Symposium = Ieee Antennas Prop Ieee Antennas and Propagation Society International Symposium = Ieee Antennas Prop. IEEE Antennas and Wireless Propagation Letters = IEEE Antennas Wireless Propagat. Lett. {IEEE} Antennas and Wireless Propagation Letters = {IEEE} Antennas Wireless Propag. Lett. IEEE Antennas and Wireless Propagation Letters = IEEE Antennas Wirel. Propag. Lett. Ieee Antennas and Wireless Propagation Letters = Ieee Antenn Wirel Pr Ieee Antennas and Wireless Propagation Letters = Ieee Antenn. Wirel. Pr. Ieee Applied Imagery Pattern Recognition Workshop = Ieee App Img Pat Ieee Applied Imagery Pattern Recognition Workshop = Ieee App. Img. Pat. Ieee Ap-s International Symposium Digest = Ieee Ap-s Ieee Asian Solid-state Circuits Conference Proceedings of Technical Papers = Ieee Asian Solid Sta Ieee Asian Solid-state Circuits Conference Proceedings of Technical Papers = Ieee Asian Solid. Sta. {IEEE/ASME} Journal of Microelectromechanical Systems = J. Microelectromech. Syst. IEEE/ASME Journal of Microelectromechanical Systems = J. Microelectromech. Syst. Ieee-asme Transactions On Mechatronics = Ieee-asme T Mech Ieee-asme Transactions On Mechatronics = Ieee-asme T. Mech. IEEE-ASME Transactions on Mechatronics = IEEE-ASME Trans. Mech. IEEE/ASME Transactions on Mechatronics = IEEE/ASME Trans. Mechatron. {IEEE/ASME} Transactions on Mechatronics = {IEEE/ASME} Trans. Mechatronics IEEE ASSP Magazine (1984-1990) = IEEE ASSP Mag. {IEEE} {ASSP} Magazine = {IEEE} {ASSP} Mag. IEEE ASSP Magazine = IEEE ASSP Mag. Ieee Autotestcon = Ieee Autotestcon IEEE Biometrics Compendium = IEEE Biometrics Compend. {IEEE/CAA} Journal of Automatica Sinica = {IEEE/CAA} J. Autom. Sinica Ieee Cement Industry Technical Conf = Ieee Cem Ind Tech Co Ieee Cement Industry Technical Conf = Ieee Cem. Ind. Tech. Co. IEEE Circuits and Devices Magazine (1985-present) = IEEE Circuits Devices Mag. Ieee Circuits and Devices Magazine = Ieee Circuit Devic Ieee Circuits and Devices Magazine = Ieee Circuit. Devic. {IEEE} Circuits and Devices Magazine = {IEEE} Circuits Devices Mag. IEEE Circuits and Devices Magazine = IEEE Circuits Devices Mag. IEEE Circuits and Systems Magazine (1979-1984) = IEEE Circuits Syst. Mag. Ieee Circuits and Systems Magazine = Ieee Circ Syst Mag Ieee Circuits and Systems Magazine = Ieee Circ. Syst. Mag. {IEEE} Circuits and Systems Magazine = {IEEE} Circuits Syst. Mag. IEEE Circuits and Systems Magazine = IEEE Circuits Syst. Mag. Ieee Circuits & Devices = Ieee Circuits Device Ieee Circuits & Devices = Ieee Circuits Device. Ieee Communications Letters = Ieee Commun Lett Ieee Communications Letters = Ieee Commun. Lett. {IEEE} Communications Letters = {IEEE} Commun. Lett. IEEE Communications Letters = IEEE Commun. Lett. IEEE Communications Magazine (1979-present) = IEEE Commun. Mag. Ieee Communications Magazine = Ieee Commun Mag Ieee Communications Magazine = Ieee Commun. Mag. {IEEE} Communications Magazine = {IEEE} Commun. Mag. IEEE Communications Magazine = IEEE Commun. Mag. {IEEE} Communications Society Magazine = {IEEE} Commun. Soc. Mag. IEEE Communications Society Magazine = IEEE Commun. Soc. Mag. IEEE Communications Society Magazine (through 1978) = IEEE Commun. Soc. Mag. {IEEE} Communications Surveys and Tutorials = {IEEE} Commun. Surveys Tuts. Ieee Communications Surveys and Tutorials = Ieee Commun Surv Tut Ieee Communications Surveys and Tutorials = Ieee Commun. Surv. Tut. IEEE Communication Surveys and Tutorials = IEEE Commun. Surv. Tutorials Ieee Compcon 97, Proceedings = Compcon Ieee Ieee Compound Semiconductor Integrated Circuit Symposium - 2006 Ieee Csic Symposium, Technical Digest 2006 = Comp Semicond Integr Ieee Compound Semiconductor Integrated Circuit Symposium - 2006 Ieee Csic Symposium, Technical Digest 2006 = Comp. Semicond. Integr. Ieee Compound Semiconductor Integrated Circuit Symposium Technical Digest = Comp Semicond Integr Ieee Compound Semiconductor Integrated Circuit Symposium Technical Digest = Comp. Semicond. Integr. Ieee Computational Intelligence Magazine = Ieee Comput Intell M Ieee Computational Intelligence Magazine = Ieee Comput. Intell. M. {IEEE} Computational Intelligence Magazine = {IEEE} Comput. Intell. Mag. IEEE Computational Intelligence Magazine = IEEE Comput. Intell. Mag. {IEEE} Computational Science and Engineering Magazine = {IEEE} Comput. Sci. Eng. Mag. Ieee Computational Science & Engineering = Ieee Comput Sci Eng Ieee Computational Science & Engineering = Ieee Comput. Sci. Eng. IEEE Computational Science & Engineering = IEEE Comput. Sci. Eng. IEEE Computation in Science and Engineering Magazine = IEEE Comput. Sci. Eng. Mag. Ieee Computer Applications in Power = Ieee Comput Appl Pow Ieee Computer Applications in Power = Ieee Comput. Appl. Pow. {IEEE} Computer Applications in Power = {IEEE} Comput. Appl. Power IEEE Computer Applications in Power = IEEE Comput. Appl. Power Ieee Computer Architecture Letters = Ieee Comp Archit L Ieee Computer Architecture Letters = Ieee Comp. Archit. L. Ieee Computer Architecture Letters = Ieee Comput Archit L Ieee Computer Architecture Letters = Ieee Comput. Archit. L. {IEEE} Computer Architecture Letters = {IEEE} Comput. Archit. Lett. IEEE Computer Architecture Letters = IEEE Comput. Archit. Lett. Ieee Computer Graphics and Applications = Ieee Comput Graph Ieee Computer Graphics and Applications = Ieee Comput. Graph. IEEE computer graphics and applications = IEEE Comput Graph Appl {IEEE} Computer Graphics and Applications = {IEEE} Comput. Graph. Appl. IEEE Computer Graphics and Applications = IEEE Comput. Graph. Appl. IEEE Computer Graphics and Applications = IEEE Comput. Graphics Appl. Ieee Computer Group News = Ieee Comput Group N Ieee Computer Group News = Ieee Comput. Group N. IEEE Computer Group News = IEEE Comput. Group. N. IEEE Computer = IEEE Computer Ieee Computer Society Workshop On Visual Languages = Ieee Vislang Ieee Computer Society Workshop On Visual Languages = Ieee Vislang. {IEEE} Computing in Science and Engineering = {IEEE} Comput. Sci. Eng. Ieee Concurrency = Ieee Concurr Ieee Concurrency = Ieee Concurr. {IEEE} Concurrency = {IEEE} Concurrency IEEE Concurrency = IEEE Concurrency Ieee Conference On Computer Vision and Pattern Recognition = Proc Cvpr Ieee Ieee Conference On Computer Vision and Pattern Recognition = Proc. Cvpr. Ieee Ieee Conference On Computer Vision and Pattern Recognition, Proceedings, Vol Ii = Proc Cvpr Ieee Ieee Conference On Computer Vision and Pattern Recognition, Proceedings, Vol Ii = Proc. Cvpr. Ieee Ieee Conference On Computer Vision and Pattern Recognition, Proceedings, Vol I = Proc Cvpr Ieee Ieee Conference On Computer Vision and Pattern Recognition, Proceedings, Vol I = Proc. Cvpr. Ieee Ieee Conference On Cybernetics and Intelligent Systems = Conf Cybern Intell S Ieee Conference On Cybernetics and Intelligent Systems = Conf. Cybern. Intell. S. Ieee Conference On Decision and Control = Ieee Decis Contr P Ieee Conference On Decision and Control = Ieee Decis. Contr. P. Ieee Conference On Decision and Control - Proceedings = Ieee Decis Contr P Ieee Conference On Decision and Control - Proceedings = Ieee Decis. Contr. P. Ieee Conference On Electron Devices and Solid-state Circuits = Ieee C Elec Devices Ieee Conference On Electron Devices and Solid-state Circuits = Ieee C. Elec. Devices Ieee Conference On Industrial Electronics and Applications = C Ind Elect Appl Ieee Conference On Industrial Electronics and Applications = C. Ind. Elect. Appl. Ieee Conference On Information Visualization - Proceedings = Ieee Infor Vis Ieee Conference On Information Visualization - Proceedings = Ieee Infor. Vis. Ieee Conference On Visualization = Ieee Visual Ieee Conference On Visualization = Ieee Visual. Ieee Conference Record = Ieee Conf R Ieee Conference Record = Ieee Conf. R. Ieee Conference Record of 2007 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Ieee Conference Record of 2007 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P. Ieee Conference Record of 2009 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Ieee Conference Record of 2009 Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P. Ieee Conference Record of Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P Ieee Conference Record of Annual Pulp and Paper Industry Technical Conference = Ieee Pulp P. Ieee Congress On Evolutionary Computation = Ieee C Evol Computat Ieee Congress On Evolutionary Computation = Ieee C. Evol. Computat. Ieee Consumer Communications and Networking Conference = Consum Comm Network Ieee Consumer Communications and Networking Conference = Consum. Comm. Network. {IEEE} Control Systems Magazine = {IEEE} Control Syst. Mag. IEEE Control Systems Magazine = IEEE Control Syst. Mag. Ieee Control Systems Magazine = Ieee Contr Syst Mag Ieee Control Systems Magazine = Ieee Contr. Syst. Mag. Ieee Convention of Electrical and Electronics Engineers in Israel = Ieee Conv El Elect I Ieee Convention of Electrical and Electronics Engineers in Israel = Ieee Conv. El. Elect. I. Ieee/cpmt International Electronics Manufacturing Technology Symposium = Ieee/cpmt Int El Mfg Ieee/cpmt International Electronics Manufacturing Technology Symposium = Ieee/cpmt Int. El. Mfg. Ieee/cpmt/semi(r) 28th International Electronics Manufacturing Technology Symposium = Ieee/cpmt Int El Mfg Ieee/cpmt/semi(r) 28th International Electronics Manufacturing Technology Symposium = Ieee/cpmt. Int. El. Mfg. Ieee Custom Integrated Circuits Conference 2010 = Ieee Cust Integr Cir Ieee Custom Integrated Circuits Conference 2010 = Ieee Cust. Integr. Cir. Ieee Custom Integrated Circuits Conference = Ieee Cust Integr Cir Ieee Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Ieee Data Compression Conference = Ieee Data Compr Conf Ieee Data Compression Conference = Ieee Data Compr. Conf. {IEEE} Design and Test of Computers = {IEEE} Des. Test. Comput. IEEE Design and Test of Computers = IEEE Des. Test Comput. {IEEE} Design \&\ Test = {IEEE} Des. Test Ieee Design & Test of Computers = Ieee Des Test Comput Ieee Design & Test of Computers = Ieee Des. Test Comput. {IEEE} Distributed Systems Online = {IEEE} Distrib. Syst. Online IEEE Distributed Systems Online = IEEE Distrib. Syst. Online {IEEE/ECS} Electrochemical and Solid-State Letters = {IEEE/ECS} Electrochem. Solid-State Lett. Ieee Electrical Insulation Magazine = Ieee Electr Insul M Ieee Electrical Insulation Magazine = Ieee Electr. Insul. M. {IEEE} Electrical Insulation Magazine = {IEEE} Electr. Insul. Mag. IEEE Electrical Insulation Magazine = IEEE Electr. Insul. Mag. {IEEE} Electrification Magazine = {IEEE} Electrific. Mag. {IEEE} Electromagnetic Compatibility Magazine = {IEEE} Electromagn. Compat. Ieee Electromagnetic Compatibility Symposium Record = Ieee Electroman Comp Ieee Electromagnetic Compatibility Symposium Record = Ieee Electroman. Comp. IEEE Electromagnetic Compatibility Symposium Record = IEEE Electroman. Comp. Ieee Electron Device Letters = Ieee Electr Device L Ieee Electron Device Letters = Ieee Electr. Device L. {IEEE} Electron Device Letters = {IEEE} Electron Device Lett. IEEE Electron Device Letters = IEEE Electron Device Lett. {IEEE} ElectroTechnology Review = {IEEE} ElectroTechnol. Rev. IEEE Embedded Systems Letters = IEEE Embedded Sys. Lett. {IEEE} Embedded Systems Letters = {IEEE} Embedded Syst. Lett. Ieee Engineering in Medicine and Biology Magazine = Ieee Eng Med Biol Ieee Engineering in Medicine and Biology Magazine = Ieee Eng. Med. Biol. {IEEE} Engineering in Medicine and Biology Magazine = {IEEE} Eng. Med. Biol. Mag. IEEE Engineering in Medicine and Biology Magazine = IEEE Eng. Med. Biol. Mag. IEEE Engineering In Medicine and Biology Magazine=IEEE Eng Med Biol Mag;; IEEE engineering in medicine and biology magazine : the quarterly magazine of the Engineering in Medicine & Biology Society = IEEE Eng Med Biol Mag Ieee Engineering in Medicine and Biology Society Annual Conference (embs) = Eng Med Biol Soc Ann Ieee Engineering in Medicine and Biology Society Annual Conference (embs) = Eng. Med. Biol. Soc. Ann. Ieee Engineering in Medicine and Biology Society Conference Proceedings = Ieee Eng Med Bio Ieee Engineering in Medicine and Biology Society Conference Proceedings = Ieee Eng. Med. Bio. IEEE Engineering Management Review = IEEE Eng. Manage. Rev. {IEEE} Engineering Management Review = {IEEE} Eng. Manag. Rev. IEEE Engineering Management Review = IEEE Eng. Manag. Rev. {IEEE} Expert = {IEEE} Expert IEEE Expert = IEEE Expert Ieee Expert-intelligent Systems & Their Applications = Ieee Expert Ieee Expert-intelligent Systems & Their Applications = Ieee Expert. IEEE Expert-intelligent Systems & their Applications = IEEE Expert. IEEE Expert (through 1997) = IEEE Expert Ieee Forum On Research and Technology Advances in Digital Libraries, Proceedings = P Ieee Int Forum Res Ieee Forum On Research and Technology Advances in Digital Libraries, Proceedings = P. Ieee Int. Forum Res. Ieee Geoscience and Remote Sensing Letters = Ieee Geosci Remote S Ieee Geoscience and Remote Sensing Letters = Ieee Geosci. Remote S. IEEE Geoscience and Remote Sensing Letters = IEEE Geosci. Remote. S. {IEEE} Geoscience and Remote Sensing Letters = {IEEE} Geosci. Remote Sens. Lett. IEEE Geoscience and Remote Sensing Letters = IEEE Geosci. Remote Sens. Lett. {IEEE} Geoscience and Remote Sensing Magazine = {IEEE} Geosci. Remote Sens. Mag. Ieee Global Telecommunications Conference (globecom) = Glob Telecomm Conf Ieee Global Telecommunications Conference (globecom) = Glob. Telecomm. Conf. Ieee High Assurance Systems Engineering Symposium = Ieee Hi Ass Sys Engr Ieee High Assurance Systems Engineering Symposium = Ieee Hi. Ass. Sys. Engr. Ieee-ias/pca 2001 Cement Industry Technical Conference - Conference Record = Ieee Cem Ind Tech Co Ieee-ias/pca 2001 Cement Industry Technical Conference - Conference Record = Ieee. Cem. Ind. Tech. Co. Ieee-ias/pca 2002 Cement Industry Technical Conference, Conference Record = Ieee Cem Ind Tech Co Ieee-ias/pca 2002 Cement Industry Technical Conference, Conference Record = Ieee. Cem. Ind. Tech. Co. Ieee-ias/pca 2003 Cement Industry Technical Conference, Conference Record = Ieee Cem Ind Tech Co Ieee-ias/pca 2003 Cement Industry Technical Conference, Conference Record = Ieee. Cem. Ind. Tech. Co. Ieee-ias/pca 2004 Cement Industry Technical Conference, Conference Record = Ieee Cem Ind Tech Co Ieee-ias/pca 2004 Cement Industry Technical Conference, Conference Record = Ieee. Cem. Ind. Tech. Co. Ieee-ias/pca Cement Industry Conference = Ieee Cem Ind Tech Co Ieee-ias/pca Cement Industry Conference = Ieee. Cem. Ind. Tech. Co. Ieee-ias Pca Cement Industry Conference = Ieee Cem Ind Tech Co Ieee-ias Pca Cement Industry Conference = Ieee. Cem. Ind. Tech. Co. Ieee Ifip Network Operations and Management Symposium = Ieee Ifip Netw Oper Ieee Ifip Network Operations and Management Symposium = Ieee Ifip Netw. Oper. Ieee Industrial Electronics Magazine = Ieee Ind Electron M Ieee Industrial Electronics Magazine = Ieee Ind. Electron. M. {IEEE} Industrial Electronics Magazine = {IEEE} Ind. Electron. Mag. IEEE Industrial Electronics Magazine = IEEE Ind. Electron. Mag. Ieee Industrial Electronics Magazine = Iee Ind Electron M Ieee Industrial Electronics Magazine = Iee. Ind. Electron. M. Ieee Industrial Electronics Society = Ieee Ind Elec Ieee Industrial Electronics Society = Ieee Ind. Elec. Ieee Industry Applications Magazine = Ieee Ind Appl Mag Ieee Industry Applications Magazine = Ieee Ind. Appl. Mag. {IEEE} Industry Applications Magazine = {IEEE} Ind. Appl. Mag. IEEE Industry Applications Magazine = IEEE Ind. Appl. Mag. Ieee Industry Applications Society Annual Meeting = Ieee Ind Applic Soc Ieee Industry Applications Society Annual Meeting = Ieee Ind. Applic. Soc. Ieee Infocom 2001: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser Ieee Infocom 2001: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser. Ieee Infocom 2002: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser Ieee Infocom 2002: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser. Ieee Infocom 2003: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser Ieee Infocom 2003: The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser. Ieee Infocom 2004: The Conference On Computer Communications, Vols 1-4, Proceedings = Ieee Infocom Ser Ieee Infocom 2004: The Conference On Computer Communications, Vols 1-4, Proceedings = Ieee Infocom Ser. Ieee Infocom 2005: The Conference On Computer Communications, Vols 1-4, Proceedings = Ieee Infocom Ser Ieee Infocom 2005: The Conference On Computer Communications, Vols 1-4, Proceedings = Ieee Infocom Ser. Ieee Infocom 2009 - Ieee Conference On Computer Communications, Vols 1-5 = Ieee Infocom Ser Ieee Infocom 2009 - Ieee Conference On Computer Communications, Vols 1-5 = Ieee Infocom Ser. Ieee Infocom 90, Vols 1-3 = Ieee Infocom Ser Ieee Infocom 90, Vols 1-3 = Ieee Infocom Ser. Ieee Infocom 91, The Conference On Computer Communications, Proceedings Vols 1-3 = Ieee Infocom Ser Ieee Infocom 91, The Conference On Computer Communications, Proceedings Vols 1-3 = Ieee Infocom Ser. Ieee Infocom 92 - The Conference On Computer Communications, Proceedings Vols 1-3 = Ieee Infocom Ser Ieee Infocom 92 - The Conference On Computer Communications, Proceedings Vols 1-3 = Ieee Infocom Ser. Ieee Infocom 93 : The Conference On Computer Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser Ieee Infocom 93 : The Conference On Computer Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser. Ieee Infocom '94: The Conference On Computer Communications - Networking for Global Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser Ieee Infocom '94: The Conference On Computer Communications - Networking for Global Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser. Ieee Infocom '95 - The Conference On Computer Communications: Bringing Information to People, Proceedings, Vols 1-3 = Ieee Infocom Ser Ieee Infocom '95 - The Conference On Computer Communications: Bringing Information to People, Proceedings, Vols 1-3 = Ieee Infocom Ser. Ieee Infocom '96 - Fifteenth Annual Joint Conference of The Ieee Computer and Communications Societies: Networking The Next Generation, Proceedings Vols 1-3 = Ieee Infocom Ser Ieee Infocom '96 - Fifteenth Annual Joint Conference of The Ieee Computer and Communications Societies: Networking The Next Generation, Proceedings Vols 1-3 = Ieee Infocom Ser. Ieee Infocom '97 - The Conference On Computer Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser Ieee Infocom '97 - The Conference On Computer Communications, Proceedings, Vols 1-3 = Ieee Infocom Ser. Ieee Infocom '98 - The Conference On Computer Communications, Vols. 1-3 = Ieee Infocom Ser Ieee Infocom '98 - The Conference On Computer Communications, Vols. 1-3 = Ieee Infocom Ser. Ieee Infocom '99 - The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser Ieee Infocom '99 - The Conference On Computer Communications, Vols 1-3, Proceedings = Ieee Infocom Ser. Ieee Infocom = Ieee Infocom Ser Ieee Infocom = Ieee Infocom Ser. Ieee Infocom Series = Ieee Infocom Ser Ieee Infocom Series = Ieee Infocom Ser. {IEEE} Instrumentation and Measurement Magazine = {IEEE} Instrum. Meas. Mag. IEEE Instrumentation and Measurement Magazine = IEEE Instrum. Meas. Mag. Ieee Instrumentation and Measurement Technology Conference = Ieee Imtc P Ieee Instrumentation and Measurement Technology Conference = Ieee Imtc. P. Ieee Instrumentation & Measurement Magazine = Ieee Instru Meas Mag Ieee Instrumentation & Measurement Magazine = Ieee Instru. Meas. Mag. IEEE instrumentation & measurement magazine = IEEE Instrum Meas Mag Ieee Instrumentation & Measurement Technology Conference, Proceedings = Ieee Imtc P Ieee Instrumentation & Measurement Technology Conference, Proceedings = Ieee Imtc. P. Ieee Intelligent Systems = Ieee Intell Syst Ieee Intelligent Systems = Ieee Intell. Syst. {IEEE} Intelligent Systems = {IEEE} Intell. Syst. IEEE Intelligent Systems = IEEE Intell. Syst. Ieee Intelligent Systems & Their Applications = Ieee Intell Syst App Ieee Intelligent Systems & Their Applications = Ieee Intell. Syst. App. IEEE Intelligent Systems & their Applications = IEEE Intell. Syst. App. {IEEE} Intelligent Transportation Systems Magazine = {IEEE} Intell. Transp. Syst. Mag. IEEE Intelligent Transportation Systems Magazine = IEEE Intell. Transp. Syst. Mag. Ieee Intelligent Vehicles Symposium = Ieee Int Veh Sym Ieee Intelligent Vehicles Symposium = Ieee Int. Veh. Sym. Ieee International Conference On Application-specific Systems Architectures and Processors = Ieee Int Conf Asap Ieee International Conference On Application-specific Systems Architectures and Processors = Ieee Int. Conf. Asap. Ieee International Conference On Application-specific Systems, Architectures and Processors = Ieee Int Conf Asap Ieee International Conference On Application-specific Systems, Architectures and Processors = Ieee Int. Conf. Asap. Ieee International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int Conf Asap Ieee International Conference On Application-specific Systems, Architectures and Processors, Proceedings = Ieee Int. Conf. Asap. Ieee International Conference On Application-specific Systems, Architectures, and Processors, Proceedings = Ieee Int Conf Asap Ieee International Conference On Application-specific Systems, Architectures, and Processors, Proceedings = Ieee Int. Conf. Asap. Ieee International Conference On Automated Software Engineering = Ieee Int Conf Autom Ieee International Conference On Automated Software Engineering = Ieee Int. Conf. Autom. Ieee International Conference On Cluster Computing = Ieee Int C Cl Comp Ieee International Conference On Cluster Computing = Ieee Int. C. Cl. Comp. Ieee International Conference On Communications = Ieee Icc Ieee International Conference On Communications = Ieee Icc. Ieee International Conference On Computer-aided Design = Ieee Ic Cad Ieee International Conference On Computer-aided Design = Ieee Ic. Cad. Ieee International Conference On Computer Communications and Networks = Ieee Ic Comp Com Net Ieee International Conference On Computer Communications and Networks = Ieee Ic. Comp. Com. Net. Ieee International Conference On Computer Design: Vlsi in Computers and Processors, Proceedings = Pr Ieee Comp Design Ieee International Conference On Computer Design: Vlsi in Computers and Processors, Proceedings = Pr. Ieee Comp. Design. Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr Ieee Comp Design Ieee International Conference On Computer Design: Vlsi in Computers & Processors, Proceedings = Pr. Ieee Comp. Design. Ieee International Conference On Computer Vision = Ieee I Conf Comp Vis Ieee International Conference On Computer Vision = Ieee I. Conf. Comp. Vis. Ieee International Conference On Control and Automation Icca = Ieee Int Conf Con Au Ieee International Conference On Control and Automation Icca = Ieee Int. Conf. Con. Au. Ieee International Conference On Control Applications = Ieee Intl Conf Contr Ieee International Conference On Control Applications = Ieee Intl. Conf. Contr. Ieee International Conference On Data Engineering = Proc Int Conf Data Ieee International Conference On Data Engineering = Proc. Int. Conf. Data Ieee International Conference On Data Engineering Workshop = I C Data Engin Works Ieee International Conference On Data Engineering Workshop = I. C. Data Engin. Works. Ieee International Conference On Data Mining = Ieee Data Mining Ieee International Conference On Development and Learning = Int C Devel Learn Ieee International Conference On Development and Learning = Int. C. Devel. Learn. Ieee International Conference On Dielectric Liquids = I C Dielect Liquids Ieee International Conference On Dielectric Liquids = I. C. Dielect. Liquids Ieee International Conference On Digital Ecosystems and Technologies = I C Digit Ecosyst Te Ieee International Conference On Digital Ecosystems and Technologies = I. C. Digit. Ecosyst. Te. Ieee International Conference On Distributed Computing Systems = Int Con Distr Comp S Ieee International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Ieee International Conference On Distributed Computing Systems Workshops = Ieee Int Con Dis Ieee International Conference On Distributed Computing Systems Workshops = Ieee Int. Con. Dis. Ieee International Conference On Electronics, Circuits and Systems = Ieee I C Elect Circ Ieee International Conference On Electronics, Circuits and Systems = Ieee I. C. Elect. Circ. Ieee International Conference On Embedded and Real-time Computing Systems and Applications = Ieee Int Conf Embed Ieee International Conference On Embedded and Real-time Computing Systems and Applications = Ieee Int. Conf. Embed. Ieee International Conference On Engineering Complex Computer Systems-iceccs = Ieee Int C Eng Comp Ieee International Conference On Engineering Complex Computer Systems-iceccs = Ieee Int. C. Eng. Comp. Ieee International Conference On Fuzzy Systems (fuzz-ieee) = Ieee Int Conf Fuzzy Ieee International Conference On Fuzzy Systems (fuzz-ieee) = Ieee Int. Conf. Fuzzy Ieee International Conference On Fuzzy Systems = Ieee Int Conf Fuzzy Ieee International Conference On Fuzzy Systems = Ieee Int. Conf. Fuzzy Ieee International Conference On Image Processing (icip) = Ieee Image Proc Ieee International Conference On Image Processing (icip) = Ieee Image Proc. Ieee International Conference On Image Processing Icip = Ieee Image Proc Ieee International Conference On Image Processing Icip = Ieee Image Proc. Ieee International Conference On Industrial Informatics (indin) = Ieee Intl Conf Ind I Ieee International Conference On Industrial Informatics (indin) = Ieee Intl. Conf. Ind. I. Ieee International Conference On Industrial Informatics Indin = Ieee Intl Conf Ind I Ieee International Conference On Industrial Informatics Indin = Ieee Intl. Conf. Ind. I. Ieee International Conference On Information Visualisation = Ieee Int Con Inf Vis Ieee International Conference On Information Visualisation = Ieee Int. Con. Inf. Vis. Ieee International Conference On Information Visualization = Ieee Int Conf Inf Vi Ieee International Conference On Information Visualization = Ieee Int. Conf. Inf. Vi. Ieee International Conference On Intelligent Robots and Systems = Ieee Int C Int Robot Ieee International Conference On Intelligent Robots and Systems = Ieee Int. C. Int. Robot. Ieee International Conference On Microelectronic Test Structures = Ieee Int C Microelec Ieee International Conference On Microelectronic Test Structures = Ieee Int. C. Microelec. Ieee International Conference On Multimedia and Expo = Ieee Int Con Multi Ieee International Conference On Multimedia and Expo = Ieee Int. Con. Multi. Ieee International Conference On Networking Sensing and Control = Ieee Int C Netw Sens Ieee International Conference On Networking Sensing and Control = Ieee Int. C. Netw. Sens. Ieee International Conference On Networking, Sensing and Control = Ieee Int C Netw Sens Ieee International Conference On Networking, Sensing and Control = Ieee Int. C. Netw. Sens. Ieee International Conference On Network Protocols Proceedings = I C Network Protocol Ieee International Conference On Network Protocols Proceedings = I. C. Network Protocol. Ieee International Conference On Networks Proceedings = Ieee Int Conf Networ Ieee International Conference On Networks Proceedings = Ieee Int. Conf. Networ. Ieee International Conference On Robotics and Automation-icra = Ieee Int Conf Robot Ieee International Conference On Robotics and Automation-icra = Ieee Int. Conf. Robot. Ieee International Conference On Robotics and Automation Icra = Ieee Int Conf Robot Ieee International Conference On Robotics and Automation Icra = Ieee Int. Conf. Robot. Ieee International Conference On Robotics and Automation = Ieee Int Conf Robot Ieee International Conference On Robotics and Automation = Ieee Int. Conf. Robot. Ieee International Conference On Software Maintenance, Proceedings = Proc Ieee Int Conf S Ieee International Conference On Software Maintenance, Proceedings = Proc. Ieee Int. Conf. S. Ieee International Conference On Solid Dielectrics-icsd = Ieee Int C Sol Diel Ieee International Conference On Solid Dielectrics-icsd = Ieee Int. C. Sol. Diel. Ieee International Conference On Systems, Man, and Cybernatics, Conference Proceedings = Ieee Sys Man Cybern Ieee International Conference On Systems, Man, and Cybernatics, Conference Proceedings = Ieee Sys. Man. Cybern. Ieee International Conference On Systems Man and Cybernetics Conference Proceedings = Ieee Sys Man Cybern Ieee International Conference On Systems Man and Cybernetics Conference Proceedings = Ieee Sys. Man Cybern. Ieee International Conference On Systems, Man, and Cybernetics, Conference Proceedings = Ieee Sys Man Cybern Ieee International Conference On Systems, Man, and Cybernetics, Conference Proceedings = Ieee Sys. Man. Cybern. Ieee International Conference On Systems, Man and Cybernetics (smc 2010) = Ieee Sys Man Cybern Ieee International Conference On Systems, Man and Cybernetics (smc 2010) = Ieee Sys. Man Cybern. Ieee International Conference On Universal Personal Communications = Ieee Int Conf Upc Ieee International Conference On Universal Personal Communications = Ieee Int. Conf. Upc. Ieee International Conf On Consumer Electronics = Ieee Icce Ieee International Conf On Consumer Electronics = Ieee Icce. Ieee International Electron Devices Meeting 2005, Technical Digest = Int El Devices Meet Ieee International Electron Devices Meeting 2005, Technical Digest = Int. El. Devices Meet. Ieee International Electron Devices Meeting 2008, Technical Digest = Int El Devices Meet Ieee International Electron Devices Meeting 2008, Technical Digest = Int. El. Devices Meet. Ieee International Enterprise Distributed Object Computing Conference Edoc = Ieee Edoc Conf Ieee International Enterprise Distributed Object Computing Conference Edoc = Ieee Edoc Conf. Ieee International Enterprise Distributed Object Computing (edoc) Conference = Ieee Edoc Conf Ieee International Enterprise Distributed Object Computing (edoc) Conference = Ieee Edoc. Conf. Ieee International Forum On Research and Technology Advances in Digital Libraries -adl'98-, Proceedings = P Ieee Int Forum Res Ieee International Forum On Research and Technology Advances in Digital Libraries -adl'98-, Proceedings = P. Ieee Int. Forum Res. Ieee International Frequency Control Symposium = P Ieee Int Freq Cont Ieee International Frequency Control Symposium = P. Ieee Int. Freq. Cont. Ieee International High Level Design Validation and Test Workshop = Int High Level Desig Ieee International High Level Design Validation and Test Workshop = Int. High Level Desig. Ieee International Integrated Reliability Workshop Final Report = Int Integ Rel Wrksp Ieee International Integrated Reliability Workshop Final Report = Int. Integ. Rel. Wrksp. Ieee International Joint Conference On Neural Networks (ijcnn) = Ieee Ijcnn Ieee International Joint Conference On Neural Networks (ijcnn) = Ieee Ijcnn. Ieee International Performance, Computing and Communications Conference (ipccc) = Ieee Ipccc Ieee International Performance, Computing and Communications Conference (ipccc) = Ieee Ipccc. Ieee International Power Electronics and Motion Control Conference Ipemc = Ieee Int Power Elec Ieee International Power Electronics and Motion Control Conference Ipemc = Ieee Int. Power Elec. Ieee International Soc Conference = Ieee Int Soc Conf Ieee International Soc Conference = Ieee Int. Soc Conf. Ieee International Soc Conference, Proceedings = Ieee Int Soc Conf Ieee International Soc Conference, Proceedings = Ieee Int. Soc Conf. Ieee International Soi Conference = Ieee Int Soi Conf Ieee International Soi Conference = Ieee Int. Soi Conf. Ieee International Solid State Circuits Conference = Isscc Dig Tech Pap I Ieee International Solid State Circuits Conference = Isscc. Dig. Tech. Pap. I. Ieee International Symp On Circuits and Systems = Ieee Int Symp Circ S Ieee International Symp On Circuits and Systems = Ieee Int. Symp Circ. S. Ieee International Symposium On Applications of Ferroelectrics = Ieee Int Ferro Ieee International Symposium On Applications of Ferroelectrics = Ieee Int. Ferro. Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks = I S World Wirel Mobi Ieee International Symposium On A World of Wireless, Mobile and Multimedia Networks = I. S. World Wirel. Mobi. Ieee International Symposium On Biomedical Imaging = I S Biomed Imaging Ieee International Symposium On Biomedical Imaging = I. S. Biomed. Imaging Ieee International Symposium On Circuits and Systems = Ieee Int Symp Circ S Ieee International Symposium On Circuits and Systems = Ieee Int. Symp. Circ. S. Ieee International Symposium On Computer-based Medical Systems = Comp Med Sy Ieee International Symposium On Computer-based Medical Systems = Comp. Med. Sy. Ieee International Symposium On Computers and Communications, Proceedings = Ieee Symp Comp Commu Ieee International Symposium On Computers and Communications, Proceedings = Ieee Symp. Comp. Commu. Ieee International Symposium On Consumer Electronics = I Symp Consum Electr Ieee International Symposium On Consumer Electronics = I. Symp. Consum. Electr. Ieee International Symposium On Defect and Fault-tolerance in Vlsi Systems = Int Sym Defec Fau To Ieee International Symposium On Defect and Fault-tolerance in Vlsi Systems = Int. Sym. Defec. Fau. To. Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems = Int Sym Defec Fau To Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems = Int. Sym. Defec. Fau. To. Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems - Proceedings = Ieee Int Symp Defect Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems - Proceedings = Ieee Int. Symp. Defect Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int Symp Defect Ieee International Symposium On Defect and Fault Tolerance in Vlsi Systems, Proceedings = Ieee Int. Symp. Defect Ieee International Symposium On Defect and Fault Tolerance Vlsi Systems, Proceedings = Int Sym Defec Fau To Ieee International Symposium On Defect and Fault Tolerance Vlsi Systems, Proceedings = Int. Sym. Defec. Fau. To. Ieee International Symposium On Electrical Insulation. Conference Record = Ieee Int Sym Elec In Ieee International Symposium On Electrical Insulation. Conference Record = Ieee Int. Sym. Elec. In. Ieee International Symposium On Electronics and The Environment-isee = Ieee Int Symp Electr Ieee International Symposium On Electronics and The Environment-isee = Ieee Int. Symp. Electr. Ieee International Symposium On Geoscience and Remote Sensing (igarss) = Int Geosci Remote Se Ieee International Symposium On Geoscience and Remote Sensing (igarss) = Int. Geosci. Remote Se. Ieee International Symposium On Geoscience and Remote Sensing Igarss = Int Geosci Remote Se Ieee International Symposium On Geoscience and Remote Sensing Igarss = Int. Geosci. Remote Se. Ieee International Symposium On Information Theory = Ieee Int Symp Info Ieee International Symposium On Information Theory = Ieee Int. Symp. Info. Ieee International Symposium On Intelligent Control = Ieee Int Symp Intell Ieee International Symposium On Intelligent Control = Ieee Int. Symp. Intell. Ieee International Symposium On Multimedia-ism = Ieee Int Sym Multim Ieee International Symposium On Multimedia-ism = Ieee Int. Sym. Multim. Ieee International Symposium On Performance Analysis of Systems and Software-ispass = Int Sym Perform Anal Ieee International Symposium On Performance Analysis of Systems and Software-ispass = Int. Sym. Perform. Anal. Ieee International Symposium On Precision Clock Synchronization for Meaurement Control and Communication = I S Precis Clock Syn Ieee International Symposium On Precision Clock Synchronization for Meaurement Control and Communication = I. S. Precis. Clock Syn. Ieee International Symposium On Rapid System Prototyping = P Ieee Rap Syst Prot Ieee International Symposium On Rapid System Prototyping = P. Ieee Rap. Syst. Prot. Ieee International Symposium On Sustainable Systems and Technology-issst = Ieee I Symp Sust Sys Ieee International Symposium On Sustainable Systems and Technology-issst = Ieee I. Symp. Sust. Sys. Ieee International Symposium On Sustainable Systems and Technology Issst = Ieee I Symp Sust Sys Ieee International Symposium On Sustainable Systems and Technology Issst = Ieee I. Symp. Sust. Sys. Ieee International Symposium On Technology and Society = Int Symp Technol Soc Ieee International Symposium On Technology and Society = Int. Symp. Technol. Soc. Ieee International Symposium On Wearable Computers = Ieee Int Sym Wrbl Co Ieee International Symposium On Wearable Computers = Ieee Int. Sym. Wrbl. Co. Ieee International Symposium On Web Site Evolution = Ieee Intl Sympos Web Ieee International Symposium On Web Site Evolution = Ieee Intl. Sympos. Web Ieee International Vacuum Electronics Conference Ivec = Ieee Int Vac Elect C Ieee International Vacuum Electronics Conference Ivec = Ieee Int. Vac. Elect. C. Ieee International Workshop On Imaging Systems and Techniques = I W Imag Syst Techni Ieee International Workshop On Imaging Systems and Techniques = I. W. Imag. Syst. Techni. Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems-technology and Applications-idaacs = Int Worksh Int Data Ieee International Workshop On Intelligent Data Acquisition and Advanced Computing Systems-technology and Applications-idaacs = Int. Worksh. Int. Data Ieee International Workshop On Medical Measurements and Applications = Ieee Int Work Med Me Ieee International Workshop On Medical Measurements and Applications = Ieee Int. Work. Med. Me. Ieee International Workshop On Visualizing Software for Understanding and Analysis Vissoft = Ieee Int Work Vis So Ieee International Workshop On Visualizing Software for Understanding and Analysis Vissoft = Ieee Int. Work. Vis. So. Ieee International Workshops On Enabling Technologies: Infrastructure for Collaborative Enterprises Proceedings = Ieee Enabl Technol Ieee International Workshops On Enabling Technologies: Infrastructure for Collaborative Enterprises Proceedings = Ieee Enabl. Technol. Ieee Internet Computing = Ieee Internet Comput Ieee Internet Computing = Ieee Internet Comput. {IEEE} Internet Computing = {IEEE} Internet Comput. IEEE Internet Computing = IEEE Internet Comput. IEEE Internet Computing = IEEE Internet. Comput. {IEEE} Internet of Things Journal = {IEEE} Internet Things J. Ieee-ion Position Location and Navigation Symposium = Ieee Position Locat Ieee-ion Position Location and Navigation Symposium = Ieee. Position Locat. {IEEE} {IT} Professional = {IEEE} {IT} Prof. IEEE IT Professional = IEEE IT Prof. Ieee Joint Conference On E-commerce Technology (cec'08) and Enterprise Computing, E-commerce and E-services (eee'08) = I W Adv Iss E Commer Ieee Joint Conference On E-commerce Technology (cec'08) and Enterprise Computing, E-commerce and E-services (eee'08) = I. W. Adv. Iss. E. Commer. {IEEE} Journal of Biomedical and Health Informatics = {IEEE} J. Biomed. Health Inform. {IEEE} Journal of Electron Devices Society = {IEEE} J. Electron Devices Soc. {IEEE} Journal of Microelectromechanical Systems = J. Microelectromech. Syst. {IEEE} Journal of Oceanic Engineering = {IEEE} J. Ocean. Eng. Ieee Journal of Oceanic Engineering = Ieee J Oceanic Eng Ieee Journal of Oceanic Engineering = Ieee J. Oceanic Eng. IEEE Journal of Oceanic Engineering = IEEE J. Oceanic Eng. IEEE Journal of Oceanic Engineering = IEEE J. Oceanic. Eng. {IEEE} Journal of Optical Communications and Networking = {IEEE} J. Opt. Commun. Netw. {IEEE} Journal of Photovoltaics = {IEEE} J. Photovolt. {IEEE} Journal of Product Safety Engineering = {IEEE} J. Product Safety Eng. Ieee Journal of Quantum Electronics = Ieee J Quantum Elect Ieee Journal of Quantum Electronics = Ieee J. Quantum Elect. {IEEE} Journal of Quantum Electronics = {IEEE} J. Quantum Electron. IEEE Journal of Quantum Electronics = IEEE J. Quantum Electron. IEEE Journal of Quantum Electronics = IEEE J. Quantum. Electron. {IEEE} Journal of Robotics and Automation = {IEEE} J. Robot. Autom. IEEE Journal of Robotics and Automation = IEEE J. Robotic. Autom. Ieee Journal of Robotics and Automation = Ieee T Robotic Autom Ieee Journal of Robotics and Automation = Ieee T. Robotic. Autom. {IEEE} Journal of Selected Topics in Applied Earth Observations and Remote Sensing = {IEEE} J. Sel. Topics Appl. Earth Observ. Remote Sens. Ieee Journal of Selected Topics in Applied Earth Observations and Remote Sensing = Ieee J-stars Ieee Journal of Selected Topics in Applied Earth Observations and Remote Sensing = Ieee J-stars. IEEE Journal of Selected Topics in Quantum Electronics = IEEE J. Select. Topics Quantum Electron. {IEEE} Journal of Selected Topics in Quantum Electronics = {IEEE} J. Sel. Topics Quantum Electron. Ieee Journal of Selected Topics in Quantum Electronics = Ieee J Sel Top Quant Ieee Journal of Selected Topics in Quantum Electronics = Ieee J. Sel. Top. Quant. {IEEE} Journal of Selected Topics in Signal Processing = {IEEE} J. Sel. Topics Signal Process. Ieee Journal of Selected Topics in Signal Processing = Ieee J-stsp Ieee Journal of Selected Topics in Signal Processing = Ieee J-stsp. {IEEE} Journal of Solid-State Circuits = {IEEE} J. Solid-State Circuits IEEE Journal of Solid-State Circuits = IEEE J. Solid-State Circuits Ieee Journal of Solid-state Circuits = Ieee J Solid-st Circ Ieee Journal of Solid-state Circuits = Ieee J. Solid-st. Circ. {IEEE} Journal of Translational Engineering in Health and Medicine = {IEEE} J. Transl. Eng. Health Med. {IEEE} Journal on Exploratory Solid-State Computational Devices and Circuits = {IEEE} J. Explor. Solid-State Computat. Devices Circuits {IEEE} Journal on Multiscale and Multiphysics Computational Techniques = {IEEE} J. Multiscale and Multiphys. Comput. Techn. Ieee Journal On Selected Areas in Communications = Ieee J Sel Area Comm Ieee Journal On Selected Areas in Communications = Ieee J. Sel. Area. Comm. {IEEE} Journal on Selected Areas in Communications = {IEEE} J. Sel. Areas Commun. IEEE Journal on Selected Areas in Communications = IEEE J. Sel. Areas Commun. IEEE Journal on Selected Areas in Communications = IEEE J. Select. Areas Commun. IEEE Journal on Selected Topics in Quantum Electronics = IEEE J. Sel. Top. Quantum Electron. IEEE Journal on Selected Topics in Signal Processing = IEEE J. Sel. Top. Sign. Proces. {IEEE} Journal on Technology in Computer Aided Design = {IEEE} J. Technol. Comput. Aided Design IEEE Journal on Technology in Computer Aided Design = IEEE J. Technol. Computer Aided Design Ieee Lasers and Electro-optics Society (leos) Annual Meeting = Ieee Leos Ann Mtg Ieee Lasers and Electro-optics Society (leos) Annual Meeting = Ieee Leos. Ann. Mtg. Ieee Latin America Transactions = Ieee Lat Am T Ieee Latin America Transactions = Ieee Lat. Am. T. IEEE Latin America Transactions = IEEE Lat. Am. Trans. IEE Electromagnetic Waves Series = IEE Electromagnet. Waves Ser. Ieee/leos 1996 Summer Topical Meetings - Advanced Applications of Lasers in Materials and Processing, Digest = Ieee Leos Ann Mtg Ieee/leos 1996 Summer Topical Meetings - Advanced Applications of Lasers in Materials and Processing, Digest = Ieee. Leos. Ann. Mtg. {IEEE} Life Sciences Letters = {IEEE} Life Sci. Lett. {IEEE} Magnetics Letters = {IEEE} Magn. Lett. IEEE Magnetics Letters = IEEE Magn. Lett. Ieee Mediterranean Electrotechnical Conference-melecon = Ieee Mediterr Elect Ieee Mediterranean Electrotechnical Conference-melecon = Ieee Mediterr. Elect. Ieee Micro = Ieee Micro {IEEE} Micro = {IEEE} Micro IEEE Micro = IEEE Micro IEEE Microwave and Guided Wave Letters = IEEE Microwave Guided Wave Lett. Ieee Microwave and Guided Wave Letters = Ieee Microw Guided W Ieee Microwave and Guided Wave Letters = Ieee Microw. Guided W. {IEEE} Microwave and Guided Wave Letters = {IEEE} Microw. Guided Wave Lett. Ieee Microwave and Millimeter-wave Monolithic Circuits Symposia = Dig Pap Ieee Microw Ieee Microwave and Millimeter-wave Monolithic Circuits Symposia = Dig. Pap. Ieee Microw. IEEE Microwave and Wireless Components Letters = IEEE Microwave Wireless Compon. Lett. Ieee Microwave and Wireless Components Letters = Ieee Microw Wirel Co Ieee Microwave and Wireless Components Letters = Ieee Microw. Wirel. Co. {IEEE} Microwave and Wireless Components Letters = {IEEE} Microw. Wireless Compon. Lett. IEEE Microwave Magazine = IEEE Microwave IEEE Microwave Magazine = IEEE Microwave Mag. Ieee Microwave Magazine = Ieee Microw Mag Ieee Microwave Magazine = Ieee Microw. Mag. {IEEE} Microwave Magazine = {IEEE} Microw. Mag. Ieee Military Communications Conference = Ieee Milit Commun C Ieee Military Communications Conference = Ieee Milit. Commun. C. Ieee Military Communications Conference - Proceedings, Vols 1-3 = Ieee Milit Commun C Ieee Military Communications Conference - Proceedings, Vols 1-3 = Ieee Milit. Commun. C. Ieee Mtt-s International Microwave Symposium Digest = Ieee Mtt-s Ieee Mtt-s International Microwave Symposium = Ieee Mtt-s Ieee Mtt-s International Microwave Symposium = Ieee Mtt S Int Micr Ieee Mtt-s International Microwave Symposium = Ieee Mtt. S. Int. Micr. Ieee Multimedia = Ieee Multimedia {IEEE} Multimedia = {IEEE} Multimedia IEEE Multimedia = IEEE Multimedia Ieee Mwscas'06: Proceedings of The 2006 49th Midwest Symposium On Circuits and Systems, = Midwest Symp Circuit Ieee Mwscas'06: Proceedings of The 2006 49th Midwest Symposium On Circuits and Systems, = Midwest Symp. Circuit. Ieee Mwscas'06: Proceedings of The 2006 49th Midwest Symposium On Circuits and Systems, Vol Ii = Midwest Symp Circuit Ieee Mwscas'06: Proceedings of The 2006 49th Midwest Symposium On Circuits and Systems, Vol Ii = Midwest Symp. Circuit. {IEEE} Nanotechnology Express = {IEEE} Nanotechnol. Express IEEE Nanotechnology Magazine = IEEE Nanatechnol. Mag. {IEEE} Nanotechnology Magazine = {IEEE} Nanotechnol. Mag. Ieee National Aerospace and Electronics Conference, Naecon = Proc Naecon Ieee Nat Ieee National Aerospace and Electronics Conference, Naecon = Proc. Naecon Ieee Nat. Ieee National Aerospace and Electronics Conference = Proc Naecon Ieee Nat Ieee National Aerospace and Electronics Conference = Proc. Naecon. Ieee Nat. Ieee National Radar Conference Proceedings = Ieee Natl Radar Conf Ieee National Radar Conference Proceedings = Ieee Natl. Radar Conf. IEEE network = IEEE Netw {IEEE} Network = {IEEE} Netw. Ieee Network = Ieee Network IEEE Network = IEEE Network Ieee Nuclear Science Symposium - Conference Record = Ieee Nucl Sci Conf R Ieee Nuclear Science Symposium - Conference Record = Ieee Nucl. Sci. Conf. R. Ieee Nuclear Science Symposium Conference Record = Ieee Nucl Sci Conf R Ieee Nuclear Science Symposium Conference Record = Ieee Nucl. Sci. Conf. R. Ieee/oes Autonomous Underwater Vehicles = Ieee Auto Under Veh Ieee/oes Autonomous Underwater Vehicles = Ieee. Auto. Under. Veh. Ieee Oes Autonomous Underwater Vehicles = Ieee Auto Under Veh Ieee Oes Autonomous Underwater Vehicles = Ieee Auto. Under. Veh. {IEEE/OSA} Journal of Display Technology = {IEEE/OSA} J. Display Technol. IEEE/OSA Journal of Display Technology = IEEE/OSA J. Disp. Technol. IEEE/OSA Journal of Lightwave Technology = J. Lightwave Technol. {IEEE/OSA} Journal of Lightwave Technology = J. Lightw. Technol. IEEE/OSA Journal of Optical Communications and Networking = IEEE/OSA J. Opt. Commun. Networking IEEE/OUP Series on Electromagnetic Wave Theory = IEEE/OUP Ser. Electromagn. Wave Theory Ieee Pacific Rim Conference On Communications, Computers and Signal Processing : Conference Proceedings, Vols 1 and 2 = Ieee Pacif Ieee Pacific Rim Conference On Communications, Computers and Signal Processing : Conference Proceedings, Vols 1 and 2 = Ieee Pacif. Ieee Pacific Rim Conference On Communications, Computers and Signal Processing = Ieee Pacif Ieee Pacific Rim Conference On Communications, Computers and Signal Processing = Ieee Pacif. Ieee Pacific Rim Conference On Communications, Computers, and Signal Processing - Proceedings = Ieee Pacif Ieee Pacific Rim Conference On Communications, Computers, and Signal Processing - Proceedings = Ieee Pacif. Ieee Pacific Rim Conference On Communications, Computers and Signal Processing : Proceedings, Vols 1 and 2 = Ieee Pacif Ieee Pacific Rim Conference On Communications, Computers and Signal Processing : Proceedings, Vols 1 and 2 = Ieee Pacif. Ieee Parallel & Distributed Technology = Ieee Parall Distrib Ieee Parallel & Distributed Technology = Ieee Parall. Distrib. IEEE Parallel & Distributed Technology = IEEE Parall. Distrib. Ieee Particle Accelerator Conference = Ieee Part Acc Conf Ieee Particle Accelerator Conference = Ieee Part. Acc. Conf. Ieee Personal Communications = Ieee Pers Commun Ieee Personal Communications = Ieee Pers. Commun. IEEE Personal Communications = IEEE Pers. Commun. {IEEE} Personal Communications Magazine = {IEEE} Personal Commun. Mag. IEEE Personal Communications Magazine = IEEE Personal Commun. Mag. IEEE pervasive computing / IEEE Computer Society [and] IEEE Communications Society = IEEE Pervasive Comput Ieee Pervasive Computing = Ieee Pervas Comput Ieee Pervasive Computing = Ieee Pervas. Comput. IEEE Pervasive Computing = IEEE Pervas. Comput. {IEEE} Pervasive Computing = {IEEE} Pervasive Comput. IEEE Pervasive Computing = IEEE Pervasive Comput. Ieee Photonics Journal = Ieee Photonics J Ieee Photonics Journal = Ieee Photonics J. IEEE Photonics Journal = IEEE Photonics J. {IEEE} Photonics Journal = {IEEE} Photon. J. IEEE Photonics Technology Letters = IEEE Photonics Technol. Lett. Ieee Photonics Technology Letters = Ieee Photonic Tech L Ieee Photonics Technology Letters = Ieee Photonic. Tech. L. {IEEE} Photonics Technology Letters = {IEEE} Photon. Technol. Lett. IEEE Photonics Technology Letters = IEEE Photon. Technol. Lett. Ieee Photovoltaic Specialists Conference = Ieee Phot Spec Conf Ieee Photovoltaic Specialists Conference = Ieee Phot. Spec. Conf. Ieee Potentials = Ieee Potentials {IEEE} Potentials = {IEEE} Potentials IEEE Potentials = IEEE Potentials IEEE Power and Energy Magazine = IEEE Power Energ. Mag. {IEEE} Power and Energy Magazine = {IEEE} Power Energy Mag. IEEE Power and Energy Magazine = IEEE Power Energy Mag. Ieee Power and Energy Society General Meeting 2010 = Ieee Pow Ener Soc Ge Ieee Power and Energy Society General Meeting 2010 = Ieee Pow. Ener. Soc. Ge. Ieee Power and Energy Society General Meeting-pesgm = Ieee Pow Ener Soc Ge Ieee Power and Energy Society General Meeting-pesgm = Ieee Pow. Ener. Soc. Ge. Ieee Power and Energy Society General Meeting Pesgm = Ieee Pow Ener Soc Ge Ieee Power and Energy Society General Meeting Pesgm = Ieee Pow. Ener. Soc. Ge. {IEEE} Power and Energy Technology Systems Journal = {IEEE} Power Energy Technol. Syst. J. {IEEE} Power Electronics Letters = {IEEE} Power Electron. Lett. IEEE Power Electronics Letters = IEEE Power Electron. Lett. {IEEE} Power Electronics Magazine = {IEEE} Power Electron. Mag. Ieee Power Electronics Specialists Conference Records = Ieee Power Electron Ieee Power Electronics Specialists Conference Records = Ieee Power Electron. Ieee Power & Energy Magazine = Ieee Power Energy M Ieee Power & Energy Magazine = Ieee Power Energy M. {IEEE} Power Engineering Review = {IEEE} Power Eng. Rev. IEEE Power Engineering Review = IEEE Power Eng. Rev. Ieee Power Engineering Society General Meeting = Ieee Power Eng Soc Ieee Power Engineering Society General Meeting = Ieee Power Eng. Soc. {IEEE} Pulse = {IEEE} Pulse Ieee Radar Conference = Ieee Rad Conf Ieee Radar Conference = Ieee Rad. Conf. Ieee Radio and Wireless Symposium = Ieee Radio Wireless Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad Freq Integr Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad. Freq. Integr. {IEEE} Reviews in Biomedical Engineering = {IEEE} Rev. Biomed. Eng. IEEE Reviews in Biomedical Engineering = IEEE Rev. Biomed. Eng. {IEEE} Revista Iberoamericana de Technolog{\'{i}}as del Aprendizaje = {IEEE} Revista Iberoamericana de Technolog{\'{i}}as del Aprendizaje {IEEE} {RFIC} Journal = {IEEE} {RFIC} J. {IEEE} {RFID} Journal = {IEEE} {RFID} J. {IEEE} Robotics and Automation Letters = {IEEE} Robot. Autom. Lett. IEEE Robotics and Automation Magazine = IEEE Rob. Autom Mag. IEEE Robotics and Automation Magazine = IEEE Robot. Automat. Mag. {IEEE} Robotics and Automation Magazine = {IEEE} Robot. Autom. Mag. Ieee Robotics & Automation Magazine = Ieee Robot Autom Mag Ieee Robotics & Automation Magazine = Ieee Robot. Autom. Mag. Ieee/rsj 2010 International Conference On Intelligent Robots and Systems (iros 2010) = Ieee Int C Int Robot Ieee/rsj 2010 International Conference On Intelligent Robots and Systems (iros 2010) = Ieee. Int. C. Int. Robot. Ieee Sarnoff Symposium = Ieee Sarnoff Sympos Ieee Sarnoff Symposium = Ieee Sarnoff Sympos. {IEEE} Security and Privacy = {IEEE} Security Privacy IEEE Security and Privacy = IEEE Secur. Privacy Ieee Security & Privacy = Ieee Secur Priv Ieee Security & Privacy = Ieee Secur. Priv. IEEE Security & Privacy = IEEE Secur. Priv. Ieee Sensors = Ieee Sensor Ieee Sensors = Ieee Sensor. Ieee Sensors Journal = Ieee Sens J Ieee Sensors Journal = Ieee Sens. J. IEEE sensors journal = IEEE Sens J IEEE Sensors Journal = IEEE Sens. J. {IEEE} Sensors Journal = {IEEE} Sensors J. IEEE Sensors Journal = IEEE Sensors J. IEEE Signal Processing Letters = IEEE Signal Processing Lett. {IEEE} Signal Processing Letters = {IEEE} Signal Process. Lett. IEEE Signal Processing Letters = IEEE Signal Process Lett. Ieee Signal Processing Letters = Ieee Signal Proc Let Ieee Signal Processing Letters = Ieee Signal Proc. Let. IEEE Signal Processing Magazine (1991-present) = IEEE Signal Process. Mag. IEEE Signal Processing Magazine = IEEE Signal Processing Mag. {IEEE} Signal Processing Magazine = {IEEE} Signal Process. Mag. IEEE Signal Processing Magazine = IEEE Signal Process Mag. Ieee Signal Processing Magazine = Ieee Signal Proc Mag Ieee Signal Processing Magazine = Ieee Signal Proc. Mag. {IEEE} Software = {IEEE} Softw. IEEE Software = IEEE Softw. Ieee Software = Ieee Software {IEEE} Solid-State Circuits Magazine = {IEEE} Solid-State Circuits Mag. IEEE Solid-State Circuits Magazine = IEEE Solid-State Circuits Mag. Ieee Southeastcon 2010: Energizing Our Future = Ieee Southeastcon Ieee Southeastcon - Conference Proceedings = Ieee South Record Ieee Southeastcon - Conference Proceedings = Ieee South. Record. Ieee Southeastcon-proceedings = Ieee Southeastcon Ieee Southeastcon-proceedings = Ieee Southeastcon. {IEEE} Spectrum = {IEEE} Spectr. IEEE Spectrum = IEEE Spectr. Ieee Spectrum = Ieee Spectrum {IEEE} Sustainable Computing = {IEEE} Sustain. Comput. Ieee Symposium On Artificial Life = Ieee Symp Art Life Ieee Symposium On Artificial Life = Ieee Symp. Art. Life Ieee Symposium On Computers and Communications Iscc = Ieee Symp Comp Commu Ieee Symposium On Computers and Communications Iscc = Ieee Symp. Comp. Commu. Ieee Symposium On Design and Diagnostics of Electronic Circuits and Systems = Des Diag Elec Circ S Ieee Symposium On Design and Diagnostics of Electronic Circuits and Systems = Des. Diag. Elec. Circ. S. Ieee Symposium On Logic in Computer Science = Ieee S Log Ieee Symposium On Logic in Computer Science = Ieee S. Log. Ieee Symposium On Mass Storage Systems = Ieee Sym Mass Stor Ieee Symposium On Mass Storage Systems = Ieee Sym. Mass Stor. Ieee Symposium On Mass Storage Systems - Proceedings = Ieee S Mass Stor Sys Ieee Symposium On Mass Storage Systems - Proceedings = Ieee S. Mass Stor. Sys. Ieee Symposium On Security and Privacy = P Ieee S Secur Priv Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. Ieee Symposium On Visual Analytics Science and Technology 2008, Proceedings = Ieee S Vis Anal Ieee Symposium On Visual Analytics Science and Technology 2008, Proceedings = Ieee S. Vis. Anal. Ieee Symposium On Visual Analytics Science and Technology = Ieee S Vis Anal Ieee Symposium On Visual Analytics Science and Technology = Ieee S. Vis. Anal. Ieee Systems Journal = Ieee Syst J Ieee Systems Journal = Ieee Syst. J. {IEEE} Systems Journal = {IEEE} Syst. J. IEEE Systems Journal = IEEE Syst. J. {IEEE} Systems, Man, and Cybernetics Magazine = {IEEE} Syst., Man, Cybern. Mag. Ieee Technology and Society Magazine = Ieee Technol Soc Mag Ieee Technology and Society Magazine = Ieee Technol. Soc. Mag. {IEEE} Technology and Society Magazine = {IEEE} Technol. Soc. Mag. IEEE Technology and Society Magazine = IEEE Technol. Soc. Mag. Ieee Tencon 2003: Conference On Convergent Technologies for The Asia-pacific Region, Vols 1-4 = Tencon Ieee Region Ieee Tencon 2003: Conference On Convergent Technologies for The Asia-pacific Region, Vols 1-4 = Tencon Ieee Region. Ieee Tencon'97 - Ieee Regional 10 Annual Conference, Proceedings, Vols 1 and 2 = Tencon Ieee Region Ieee Tencon'97 - Ieee Regional 10 Annual Conference, Proceedings, Vols 1 and 2 = Tencon. Ieee Region. {IEEE/TMS} Journal of Electronic Materials = {IEEE/TMS} J. Electron. Mater. Ieee Transactions On Acoustics Speech and Signal Processing = Ieee T Acoust Speech Ieee Transactions On Acoustics Speech and Signal Processing = Ieee T. Acoust. Speech IEEE transactions on acoustics, speech, and signal processing = IEEE Trans Acoust {IEEE} Transactions on Acoustics, Speech, and Signal Processing = {IEEE} Trans. Acoust., Speech, Signal Process. IEEE Transactions on Acoustics, Speech, and Signal Processing = IEEE Trans. Acoust. Speech Signal Process. IEEE Transactions on Acoustics, Speech, and Signal Processing = IEEE Trans. Acoust., Speech, Signal Processing Ieee Transactions On Advanced Packaging = Ieee T Adv Packaging Ieee Transactions On Advanced Packaging = Ieee T. Adv. Packaging Ieee Transactions On Advanced Packaging = Ieee Trans Adv Pack Ieee Transactions On Advanced Packaging = Ieee Trans. Adv. Pack. {IEEE} Transactions on Advanced Packaging = {IEEE} Trans. Adv. Packag. IEEE Transactions on Advanced Packaging = IEEE Trans. Adv. Packag. {IEEE} Transactions on Aeronautical and Navigational Electronics = {IEEE} Trans. Aeronaut. Navig. Electron. IEEE Transactions on Aeronautical and Navigational Electronics = IEEE Trans. Aeronaut. Navig. Electron. Ieee Transactions On Aerospace and Electronic Systems = Ieee T Aero Elec Sys Ieee Transactions On Aerospace and Electronic Systems = Ieee T. Aero. Elec. Sys. IEEE transactions on aerospace and electronic systems = IEEE Trans Aerosp Electron Syst {IEEE} Transactions on Aerospace and Electronic Systems = {IEEE} Trans. Aerosp. Electron. Syst. IEEE Transactions on Aerospace and Electronic Systems = IEEE Trans. Aerosp. Electron. Syst. Ieee Transactions On Aerospace and Naval Electronics = Ieee T Aero Nav Elec Ieee Transactions On Aerospace and Naval Electronics = Ieee T. Aero. Nav. Elec. IEEE Transactions on Aerospace and Naval Electronics = IEEE Trans. Aero. Nav. Elec. Ieee Transactions On Aerospace and Navigational Electronics = Ieee Trans Aerosp N Ieee Transactions On Aerospace and Navigational Electronics = Ieee Trans. Aerosp. N. {IEEE} Transactions on Aerospace and Navigational Electronics = {IEEE} Trans. Aerosp. Navig. Electron. IEEE Transactions on Aerospace and Navigational Electronics = IEEE Trans. Aerosp. Navig. Electron. IEEE Transactions on Aerospace and Navigation Electronics = IEEE Trans. Aerosp. Navig. Electron. Ieee Transactions On Aerospace = Ieee T Aerosp Ieee Transactions On Aerospace = Ieee T. Aerosp. {IEEE} Transactions on Aerospace = {IEEE} Trans. Aerosp. IEEE Transactions on Aerospace = IEEE Trans. Aerosp. {IEEE} Transactions on Affective Computing = {IEEE} Trans. Affect. Comput. IEEE Transactions on Affective Computing = IEEE Trans. Affective Comput. {IEEE} Transactions on Airborne Electronics = {IEEE} Trans. Airborne Electron. Ieee Transactions On Antennas and Propagation = Ieee T Antenn Propag Ieee Transactions On Antennas and Propagation = Ieee T. Antenn. Propag. {IEEE} Transactions on Antennas and Propagation = {IEEE} Trans. Antennas Propag. IEEE Transactions on Antennas and Propagation = IEEE Trans. Antennas Propag. IEEE Transactions on Antennas and Propagation = IEEE Trans. Antennas Propagat. Ieee Transactions On Applications and Industry = Ieee T Appl Ind Ieee Transactions On Applications and Industry = Ieee T. Appl. Ind. IEEE Transactions on Applications and Industry = IEEE Trans. Applicat. Ind. {IEEE} Transactions on Applications and Industry = {IEEE} Trans. Appl. Ind. IEEE Transactions on Applications and Industry = IEEE Trans. Appl. Indus. Ieee Transactions On Applied Superconductivity = Ieee T Appl Supercon Ieee Transactions On Applied Superconductivity = Ieee T. Appl. Supercon. {IEEE} Transactions on Applied Superconductivity = {IEEE} Trans. Appl. Supercond. IEEE Transactions on Applied Superconductivity = IEEE Trans. Appl. Supercond. IEEE Transactions on Applied Superconductivity = IEEE Trans. Appl. Superconduct. Ieee Transactions On Audio and Electroacoustics = Ieee T Acoust Speech Ieee Transactions On Audio and Electroacoustics = Ieee T. Acoust. Speech. {IEEE} Transactions on Audio and Electroacoustics = {IEEE} Trans. Audio Electroacoust. IEEE Transactions on Audio and Electroacoustics = IEEE Trans. Audio Electroacoust. Ieee Transactions On Audio = Ieee Trans Audio Ieee Transactions On Audio = Ieee Trans. Audio {IEEE} Transactions on Audio = {IEEE} Trans. Audio IEEE Transactions on Audio = IEEE Trans. Audio {IEEE} Transactions on Audio, Speech, and Language Processing = {IEEE} Audio, Speech, Language Process. Ieee Transactions On Audio Speech and Language Processing = Ieee T Audio Speech Ieee Transactions On Audio Speech and Language Processing = Ieee T. Audio Speech IEEE Transactions on Audio Speech and Language Processing = IEEE Trans. Audio. Speech. IEEE Transactions on Audio, Speech and Language Processing = IEEE Trans. Audio Speech Lang. Process. Ieee Transactions On Automatic Control = Ieee T Automat Contr Ieee Transactions On Automatic Control = Ieee T. Automat. Contr. IEEE Transactions on Automatic Control = IEEE Trans. Automat. Contr. {IEEE} Transactions on Automatic Control = {IEEE} Trans. Autom. Control IEEE Transactions on Automatic Control = IEEE Trans. Autom. Control Ieee Transactions On Automation Science and Engineering = Ieee T Autom Sci Eng Ieee Transactions On Automation Science and Engineering = Ieee T. Autom. Sci. Eng. IEEE Transactions on Automation Science and Engineering = IEEE Trans. Automat. Sci. Eng. {IEEE} Transactions on Automation Science and Engineering = {IEEE} Trans. Autom. Sci. Eng. IEEE Transactions on Automation Science and Engineering = IEEE Trans. Autom. Sci. Eng. Ieee Transactions On Autonomous Mental Development = Ieee T Auton Ment De Ieee Transactions On Autonomous Mental Development = Ieee T. Auton. Ment. De. {IEEE} Transactions on Autonomous Mental Development = {IEEE} Trans. Auton. Mental Develop. IEEE Transactions on Autonomous Mental Development = IEEE Trans. Auton. Ment. Dev. {IEEE} Transactions on Big Data = {IEEE} Trans. Big Data Ieee Transactions On Biomedical Circuits and Systems = Ieee T Biomed Circ S Ieee Transactions On Biomedical Circuits and Systems = Ieee T. Biomed. Circ. S. {IEEE} Transactions on Biomedical Circuits and Systems = {IEEE} Trans. Biomed. Circuits Syst. IEEE Transactions on Biomedical Circuits and Systems = IEEE Trans. Biomed. Circuits Syst. IEEE Transactions on Bio-Medical Electronics = IEEE Trans. Bio-med. Electron. {IEEE} Transactions on Bio-Medical Electronics = {IEEE} Trans. Bio-Med. Electron. Ieee Transactions On Biomedical Engineering = Ieee T Bio-med Eng Ieee Transactions On Biomedical Engineering = Ieee T. Bio-med. Eng. IEEE transactions on bio-medical engineering = IEEE Trans Biomed Eng {IEEE} Transactions on Biomedical Engineering = {IEEE} Trans. Biomed. Eng. IEEE Transactions on Biomedical Engineering=IEEE Trans Biomed Eng;; IEEE Transactions on Biomedical Engineering = IEEE Trans. Biomed. Eng. IEEE Transactions on Bio-Medical Engineering = IEEE Trans. Bio-Med. Eng. Ieee Transactions On Broadcast and Television Receivers = Ieee T Broadc Telev Ieee Transactions On Broadcast and Television Receivers = Ieee T. Broadc. Telev. {IEEE} Transactions on Broadcast and Television Receivers = {IEEE} Trans. Broadcast Television Receivers IEEE Transactions on Broadcast and Television Receivers = IEEE Trans. Broadcast Telev. Receivers IEEE Transactions on Broadcast and Television Receivers = IEEE Trans. Broadc. Telev. Ieee Transactions On Broadcasting = Ieee T Broadcast Ieee Transactions On Broadcasting = Ieee T. Broadcast. {IEEE} Transactions on Broadcasting = {IEEE} Trans. Broadcast. IEEE Transactions on Broadcasting = IEEE Trans. Broadcast. Ieee Transactions On Circuits and Systems for Video Technology = Ieee T Circ Syst Vid Ieee Transactions On Circuits and Systems for Video Technology = Ieee T. Circ. Syst. Vid. {IEEE} Transactions on Circuits and Systems for Video Technology = {IEEE} Trans. Circuits Syst. Video Technol. IEEE Transactions on Circuits and Systems for Video Technology = IEEE Trans. Circuits Syst. Video Technol. Ieee Transactions On Circuits and Systems = Ieee T Circuits Syst Ieee Transactions On Circuits and Systems = Ieee T. Circuits Syst. {IEEE} Transactions on Circuits and Systems = {IEEE} Trans. Circuits Syst. IEEE Transactions on Circuits and Systems = IEEE Trans. Circuits Syst. IEEE Transactions on Circuits and Systems = IEEE Trans. Circuits Systems I Fund. Theory Appl. Ieee Transactions On Circuits and Systems I-fundamental Theory and Applications = Ieee T Circuits-i Ieee Transactions On Circuits and Systems I-fundamental Theory and Applications = Ieee T. Circuits-i. IEEE Transactions on Circuits and Systems I-Fundamental Theory and Applications = IEEE Trans. Circuits Syst. I Ieee Transactions On Circuits and Systems Ii-analog and Digital Signal Processing = Ieee T Circuits-ii Ieee Transactions On Circuits and Systems Ii-analog and Digital Signal Processing = Ieee T. Circuits-ii. IEEE Transactions on Circuits and Systems II-Analog and Digital Signal Processing = IEEE Trans. Circuits Syst. II Ieee Transactions On Circuits and Systems Ii-express Briefs = Ieee T Circuits-ii Ieee Transactions On Circuits and Systems Ii-express Briefs = Ieee T. Circuits-ii. IEEE Transactions on Circuits and Systems II: Express Briefs = IEEE Trans. Circuits Syst. Express Briefs IEEE Transactions on Circuits and Systems II-Express Briefs = IEEE Trans. Circuits Syst. II Ieee Transactions On Circuits and Systems I-regular Papers = Ieee T Circuits-i Ieee Transactions On Circuits and Systems I-regular Papers = Ieee T. Circuits-i. IEEE Transactions on Circuits and Systems I-Regular Papers = IEEE Trans. Circuits-I. IEEE Transactions on Circuits and Systems I-Regular Papers = IEEE Trans. Circuits Syst. I IEEE Transactions on Circuits and Systems I: Regular Papers = IEEE Trans. Circuits Syst. Regul. Pap. {IEEE} Transactions on Circuits and Systems---Part {I}: Fundamental Theory and Applications = {IEEE} Trans. Circuits Syst. {I} IEEE Transactions on Circuits and Systems---Part I: Fundamental Theory and Applications = IEEE Trans. Circuits Syst. I {IEEE} Transactions on Circuits and Systems---Part {II}: Analog and Digital Signal Processing = {IEEE} Trans. Circuits Syst. {II} IEEE Transactions on Circuits and Systems---Part II: Analog and Digital Signal Processing = IEEE Trans. Circuits Syst. II {IEEE} Transactions on Circuits and Systems---Part {II}: Express Briefs = {IEEE} Trans. Circuits Syst. {II} {IEEE} Transactions on Circuits and Systems---Part {I}: Regular Papers = {IEEE} Trans. Circuits Syst. {I} Ieee Transactions On Circuit Theory = Ieee T Circuits Syst Ieee Transactions On Circuit Theory = Ieee T. Circuits. Syst. {IEEE} Transactions on Circuit Theory = {IEEE} Trans. Circuit Theory IEEE Transactions on Circuit Theory = IEEE Trans. Circuit Theory {IEEE} Transactions on Cloud Computing = {IEEE} Trans. on Cloud Comput. {IEEE} Transactions on Cognitive and Developmental Systems = {IEEE} Trans. Cogn. Develop. Syst. {IEEE} Transactions on Cognitive Communications and Networking = {IEEE} Trans. on Cogn. Commun. Netw. Ieee Transactions On Communication and Electronics = Ieee T Commun Electr Ieee Transactions On Communication and Electronics = Ieee T. Commun. Electr. IEEE Transactions on Communication and Electronics = IEEE Trans. Commun. Electr. Ieee Transactions On Communications = Ieee T Commun Ieee Transactions On Communications = Ieee T. Commun. {IEEE} Transactions on Communications = {IEEE} Trans. Commun. IEEE Transactions on Communications = IEEE Trans. Commun. Ieee Transactions On Communications Systems = Ieee T Commun Syst Ieee Transactions On Communications Systems = Ieee T. Commun. Syst. IEEE Transactions on Communications Systems = IEEE Trans. Commun. Syst. Ieee Transactions On Communication Technology = Ieee T Commun Techn Ieee Transactions On Communication Technology = Ieee T. Commun. Techn. {IEEE} Transactions on Communication Technology = {IEEE} Trans. Commun. Technol. IEEE Transactions on Communication Technology = IEEE Trans. Commun. Technol. Ieee Transactions On Component Parts = Ieee T Compon Parts Ieee Transactions On Component Parts = Ieee T. Compon. Parts {IEEE} Transactions on Component Parts = {IEEE} Trans. Compon. Parts IEEE Transactions on Component Parts = IEEE Trans. Comp. Parts Ieee Transactions On Components and Packaging Technologies = Ieee T Compon Pack T Ieee Transactions On Components and Packaging Technologies = Ieee T. Compon. Pack. T. {IEEE} Transactions on Components and Packaging Technologies = {IEEE} Trans. Compon. Packag. Technol. IEEE Transactions on Components and Packaging Technologies = IEEE Trans. Compon. Packag. Technol. IEEE Transactions on Components and Packaging Technologies = IEEE Trans. Comp. Packag. Technol. {IEEE} Transactions on Components and Packaging Technology = {IEEE} Trans. Compon. Packag. Technol. IEEE Transactions on Components and Packaging Technology = IEEE Trans. Comp. Packag. Technol. Ieee Transactions On Components Hybrids and Manufacturing Technology = Ieee T Compon Hybr Ieee Transactions On Components Hybrids and Manufacturing Technology = Ieee T. Compon. Hybr. IEEE Transactions on Components, Hybrids and Manufacturing Technology = IEEE Trans. Comp., Hybrids, Manufact. Technol. {IEEE} Transactions on Components, Hybrids and Manufacturing Technology = {IEEE} Trans. Compon., Hybrids, Manuf. Technol. Ieee Transactions On Components Packaging and Manufacturing Technology = Ieee T Comp Pack Man Ieee Transactions On Components Packaging and Manufacturing Technology = Ieee T. Comp. Pack. Man. {IEEE} Transactions on Components, Packaging and Manufacturing Technology = {IEEE} Trans. Compon. Packag. Manuf. Technol. Ieee Transactions On Components Packaging and Manufacturing Technology Part A = Ieee T Compon Pack A Ieee Transactions On Components Packaging and Manufacturing Technology Part A = Ieee T. Compon. Pack. A {IEEE} Transactions on Components, Packaging and Manufacturing Technology---Part {A} = {IEEE} Trans. Compon., Packag., Manuf. Technol. {A} IEEE Transactions on Components, Packaging, and Manufacturing Technology, Part A: = IEEE Trans. Compon. Packag. Manuf. Technol. Part A: IEEE Transactions on Components, Packaging and Manufacturing Technology---Part A = IEEE Trans. Comp., Packag., Manufact. Technol. A Ieee Transactions On Components Packaging and Manufacturing Technology Part B-advanced Packaging = Ieee T Compon Pack B Ieee Transactions On Components Packaging and Manufacturing Technology Part B-advanced Packaging = Ieee T. Compon. Pack. B. {IEEE} Transactions on Components, Packaging and Manufacturing Technology---Part {B}: Advanced Packaging = {IEEE} Trans. Compon., Packag., Manuf. Technol. {B} IEEE Transactions on Components, Packaging and Manufacturing Technology---Part B: Advanced Packaging = IEEE Trans. Comp., Packag., Manufact. Technol. B IEEE Transactions on Components, Packaging, and Manufacturing Technology, Part B: = IEEE Trans. Compon. Packag. Manuf. Technol. Part B: IEEE Transactions on Components, Packaging, and Manufacturing Technology, Part C: = IEEE Trans. Compon. Packag. Manuf. Technol. Part C: {IEEE} Transactions on Components, Packaging and Manufacturing Technology---Part {C}: Manufacturing = {IEEE} Trans. Compon., Packag., Manuf. Technol. {C} IEEE Transactions on Components, Packaging and Manufacturing Technology---Part C: Manufacturing = IEEE Trans. Comp., Packag., Manufact. Technol. C Ieee Transactions On Computational Intelligence and Ai in Games = Ieee T Comp Intel Ai Ieee Transactions On Computational Intelligence and Ai in Games = Ieee T. Comp. Intel. Ai {IEEE} Transactions on Computational Intelligence and {AI} in Games = {IEEE} Trans. Comput. Intell. {AI} in Games IEEE Transactions on Computational Intelligence in AI and Games = IEEE Trans. Comput. Intell. AI Games {IEEE} Transactions on Computational Social Systems = {IEEE} Trans. Comput. Social Syst. Ieee Transactions On Computer-aided Design of Integrated Circuits and Systems = Ieee T Comput Aid D Ieee Transactions On Computer-aided Design of Integrated Circuits and Systems = Ieee T. Comput. Aid. D. {IEEE} Transactions on Computer-Aided Design of Integrated Circuits and Systems = {IEEE} Trans. Comput.-Aided Design Integr. Circuits Syst. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems = IEEE Trans. Comput. Aided Des. Integr. Circuits Syst. IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems = IEEE Trans. Computer-Aided Design Ieee Transactions On Computers = Ieee T Comput Ieee Transactions On Computers = Ieee T. Comput. {IEEE} Transactions on Computers = {IEEE} Trans. Comput. IEEE Transactions on Computers = IEEE Trans. Comput. IEEE transactions on computers. Institute of Electrical and Electronics Engineers = IEEE Trans Comput Ieee Transactions On Consumer Electronics = Ieee T Consum Electr Ieee Transactions On Consumer Electronics = Ieee T. Consum. Electr. {IEEE} Transactions on Consumer Electronics = {IEEE} Trans. Consum. Electron. IEEE Transactions on Consumer Electronics = IEEE Trans. Consum. Electron. IEEE Transactions on Consumer Electronics = IEEE Trans. Consumer Electron. {IEEE} Transactions on Control of Network Systems = {IEEE} Trans. Control Netw. Syst. Ieee Transactions On Control Systems Technology = Ieee T Contr Syst T Ieee Transactions On Control Systems Technology = Ieee T. Contr. Syst. T. {IEEE} Transactions on Control Systems Technology = {IEEE} Trans. Control Syst. Technol. IEEE Transactions on Control Systems Technology = IEEE Trans. Control Syst. Technol. IEEE Transactions on Control Systems Technology = IEEE Trans. Contr. Syst. Technol. {IEEE} Transactions on Cybernetics = {IEEE} Trans. Cybern. Ieee Transactions On Dependable and Secure Computing = Ieee T Depend Secure Ieee Transactions On Dependable and Secure Computing = Ieee T. Depend. Secure IEEE Transactions on Dependable and Secure Computing = IEEE Trans. Dependable Secure Comput. {IEEE} Transactions on Dependable and Secure Computing = {IEEE} Trans. Depend. Sec. Comput. IEEE Transactions on Dependable and Secure Computing = IEEE Trans. Depend. Secure Comput. Ieee Transactions On Device and Materials Reliability = Ieee T Device Mat Re Ieee Transactions On Device and Materials Reliability = Ieee T. Device Mat. Re. {IEEE} Transactions on Device and Materials Reliability = {IEEE} Trans. Device Mater. Rel. IEEE Transactions on Device and Materials Reliability = IEEE Trans. Device Mater. Reliab. IEEE Transactions on Device and Materials Reliability = IEEE Trans. Device Mat. Re. Ieee Transactions On Dielectrics and Electrical Insulation = Ieee T Dielect El In Ieee Transactions On Dielectrics and Electrical Insulation = Ieee T. Dielect. El. In. IEEE Transactions on Dielectrics and Electrical Insulation = IEEE Trans. Dielect. Elect. Insulation {IEEE} Transactions on Dielectrics and Electrical Insulation = {IEEE} Trans. Dielectr. Electr. Insul. IEEE Transactions on Dielectrics and Electrical Insulation = IEEE Trans. Dielectr. Electr. Insul. Ieee Transactions On Education = Ieee T Educ Ieee Transactions On Education = Ieee T. Educ. {IEEE} Transactions on Education = {IEEE} Trans. Educ. IEEE Transactions on Education = IEEE Trans. Educ. Ieee Transactions On Electrical Insulation = Ieee T Electr Insul Ieee Transactions On Electrical Insulation = Ieee T. Electr. Insul. IEEE Transactions on Electrical Insulation = IEEE Trans. Elect. Insulation {IEEE} Transactions on Electrical Insulation = {IEEE} Trans. Electr. Insul. Ieee Transactions On Electromagnetic Compatibility = Ieee T Electromagn C Ieee Transactions On Electromagnetic Compatibility = Ieee T. Electromagn. C. {IEEE} Transactions on Electromagnetic Compatibility = {IEEE} Trans. Electromagn. Compat. IEEE Transactions on Electromagnetic Compatibility = IEEE Trans. Electromagn. Compat. Ieee Transactions On Electron Devices = Ieee T Electron Dev Ieee Transactions On Electron Devices = Ieee T. Electron Dev. {IEEE} Transactions on Electron Devices = {IEEE} Trans. Electron Devices IEEE Transactions on Electron Devices = IEEE Trans. Electron Devices Ieee Transactions On Electronic Computers = Ieee Trans Electron Ieee Transactions On Electronic Computers = Ieee Trans. Electron. {IEEE} Transactions on Electronic Computers = {IEEE} Trans. Electron. Comput. IEEE Transactions on Electronic Computers = IEEE Trans. Electron. Comput. Ieee Transactions On Electronics Packaging Manufacturing = Ieee T Electron Pack Ieee Transactions On Electronics Packaging Manufacturing = Ieee T. Electron. Pack. Ieee Transactions On Electronics Packaging Manufacturing = Ieee T Electron Pa M Ieee Transactions On Electronics Packaging Manufacturing = Ieee T. Electron. Pa. M. {IEEE} Transactions on Electronics Packaging Manufacturing = {IEEE} Trans. Electron. Packag. Manuf. IEEE Transactions on Electronics Packaging Manufacturing = IEEE Trans. Electron. Packag. Manuf. IEEE Transactions on Electronics Packaging Manufacturing = IEEE Trans. Electron. Packag. Manufact. {IEEE} Transactions on Emerging and Selected Topics in Circuits and Systems = {IEEE} Trans. Emerg. Sel. Topics Circuits Syst. {IEEE} Transactions on Emerging and Selected Topics in Power Electronics = {IEEE} Trans. Emerg. Sel. Topics Power Electron. {IEEE} Transactions on Emerging Topics in Computing = {IEEE} Trans. Emerg. Topics Comput. Ieee Transactions On Energy Conversion = Ieee T Energy Conver Ieee Transactions On Energy Conversion = Ieee T. Energy Conver. {IEEE} Transactions on Energy Conversion = {IEEE} Trans. Energy Convers. IEEE Transactions on Energy Conversion = IEEE Trans. Energy Convers. IEEE Transactions on Energy Conversion = IEEE Trans. Energy Conversion Ieee Transactions On Engineering Management = Ieee T Eng Manage Ieee Transactions On Engineering Management = Ieee T. Eng. Manage. {IEEE} Transactions on Engineering Management = {IEEE} Trans. Eng. Manag. IEEE Transactions on Engineering Management = IEEE Trans. Eng. Manage. Ieee Transactions On Engineering Writing and Speech = Ieee T Prof Commun Ieee Transactions On Engineering Writing and Speech = Ieee T. Prof. Commun. {IEEE} Transactions on Engineering Writing and Speech = {IEEE} Trans. Eng. Writing Speech IEEE Transactions on Engineering Writing and Speech = IEEE Trans. Prof. Commun. Ieee Transactions On Evolutionary Computation = Ieee T Evolut Comput Ieee Transactions On Evolutionary Computation = Ieee T. Evolut. Comput. {IEEE} Transactions on Evolutionary Computation = {IEEE} Trans. Evol. Comput. IEEE Transactions on Evolutionary Computation = IEEE Trans. Evol. Comput. Ieee Transactions On Fuzzy Systems = Ieee T Fuzzy Syst Ieee Transactions On Fuzzy Systems = Ieee T. Fuzzy Syst. {IEEE} Transactions on Fuzzy Systems = {IEEE} Trans. Fuzzy Syst. IEEE Transactions on Fuzzy Systems = IEEE Trans. Fuzzy Syst. Ieee Transactions On Geoscience and Remote Sensing = Ieee T Geosci Remote Ieee Transactions On Geoscience and Remote Sensing = Ieee T. Geosci. Remote IEEE transactions on Geoscience and Remote Sensing = IEEE Trans. Geosci. Remote Sens. {IEEE} Transactions on Geoscience and Remote Sensing = {IEEE} Trans. Geosci. Remote Sens. IEEE Transactions on Geoscience and Remote Sensing = IEEE Trans. Geosci. Remote Sens. IEEE Transactions on Geoscience and Remote Sensing = IEEE Trans. Geosci. Remote Sensing Ieee Transactions On Geoscience Electronics = Ieee T Geosci Elect Ieee Transactions On Geoscience Electronics = Ieee T. Geosci. Elect. {IEEE} Transactions on Geoscience Electronics = {IEEE} Trans. Geosci. Electron. IEEE Transactions on Geoscience Electronics = IEEE Trans. Geosci. Electron. Ieee Transactions On Haptics = Ieee T Haptics Ieee Transactions On Haptics = Ieee T. Haptics IEEE Transactions on Haptics = IEEE Trans. Haptic {IEEE} Transactions on Haptics = {IEEE} Trans. Haptics Ieee Transactions On Human Factors in Electronics = Ieee Trans Hum Fact Ieee Transactions On Human Factors in Electronics = Ieee Trans. Hum. Fact. {IEEE} Transactions on Human Factors in Electronics = {IEEE} Trans. Hum. Factors Electron. IEEE Transactions on Human Factors in Electronics = IEEE Trans. Hum. Factors Electron. Ieee Transactions On Human Factors in Engineering = Ieee T Hum Fact Eng Ieee Transactions On Human Factors in Engineering = Ieee T. Hum. Fact. Eng. IEEE Transactions on Human Factors in Engineering = IEEE Trans. Hum. Factors Eng. {IEEE} Transactions on Human-Machine Systems = {IEEE} Trans. Human-Mach. Syst. IEEE transactions on image processing : a publication of the IEEE Signal Processing Society = IEEE Trans Image Process Ieee Transactions On Image Processing = Ieee T Image Process Ieee Transactions On Image Processing = Ieee T. Image Process. IEEE Transactions on Image Processing = IEEE Trans. Image Process. {IEEE} Transactions on Image Processing = {IEEE} Trans. Image Process. IEEE Transactions on Image Processing = IEEE Trans. Image Process. IEEE Transactions on Image Processing = IEEE Trans. Image Processing Ieee Transactions On Industrial Electronics and Control Instrumentation = Ieee T Ind El Con In Ieee Transactions On Industrial Electronics and Control Instrumentation = Ieee T. Ind. El. Con. In. {IEEE} Transactions on Industrial Electronics and Control Instrumentation = {IEEE} Trans. Ind. Electron. Contr. Instrum. IEEE Transactions on Industrial Electronics and Control Instrumentation = IEEE Trans. Ind. Electron. Contr. Instrum. Ieee Transactions On Industrial Electronics = Ieee T Ind Electron Ieee Transactions On Industrial Electronics = Ieee T. Ind. Electron. {IEEE} Transactions on Industrial Electronics = {IEEE} Trans. Ind. Electron. IEEE Transactions on Industrial Electronics = IEEE Trans. Ind. Electron. Ieee Transactions On Industrial Informatics = Ieee T Ind Inform Ieee Transactions On Industrial Informatics = Ieee T. Ind. Inform. IEEE Transactions on Industrial Informatics = IEEE Trans. Ind. Inf. {IEEE} Transactions on Industrial Informatics = {IEEE} Trans. Ind. Informat. Ieee Transactions On Industry and General Applications = Ieee Trans Ind Gen A Ieee Transactions On Industry and General Applications = Ieee Trans. Ind. Gen. A. {IEEE} Transactions on Industry and General Applications = {IEEE} Trans. Ind. Gen. Appl. IEEE Transactions on Industry and General Applications = IEEE Trans. Ind. Gen. Applicat. Ieee Transactions On Industry Applications = Ieee T Ind Appl Ieee Transactions On Industry Applications = Ieee T. Ind. Appl. {IEEE} Transactions on Industry Applications = {IEEE} Trans. Ind. Appl. IEEE Transactions on Industry Applications = IEEE Trans. Ind. Appl. IEEE Transactions on Industry Applications = IEEE Trans. Ind. Applicat. Ieee Transactions On Information Forensics and Security = Ieee T Inf Foren Sec Ieee Transactions On Information Forensics and Security = Ieee T. Inf. Foren. Sec. IEEE Transactions on Information Forensics and Security = IEEE Trans. Inf. Forensics Secur. {IEEE} Transactions on Information Forensics and Security = {IEEE} Trans. Inf. Forensics Security IEEE transactions on information technology in biomedicine : a publication of the IEEE Engineering in Medicine and Biology Society = IEEE Trans Inf Technol Biomed Ieee Transactions On Information Technology in Biomedicine = Ieee T Inf Technol B Ieee Transactions On Information Technology in Biomedicine = Ieee T. Inf. Technol. B. IEEE Transactions on Information Technology in Biomedicine = IEEE Trans. Inform. Technol. Biomed. {IEEE} Transactions on Information Technology in Biomedicine = {IEEE} Trans. Inf. Technol. Biomed. IEEE Transactions on Information Technology in Biomedicine = IEEE Trans. Inf. Technol. Biomed. Ieee Transactions On Information Theory = Ieee T Inform Theory Ieee Transactions On Information Theory = Ieee T. Inform. Theory IEEE Transactions on Information Theory = IEEE Trans. Inform. Theory {IEEE} Transactions on Information Theory = {IEEE} Trans. Inf. Theory IEEE Transactions on Information Theory = IEEE Trans. Inf. Theory Ieee Transactions On Instrumentation and Measurement = Ieee T Instrum Meas Ieee Transactions On Instrumentation and Measurement = Ieee T. Instrum. Meas. {IEEE} Transactions on Instrumentation and Measurement = {IEEE} Trans. Instrum. Meas. IEEE Transactions on Instrumentation and Measurement = IEEE Trans. Instrum. Meas. Ieee Transactions On Intelligent Transportation Systems = Ieee T Intell Transp Ieee Transactions On Intelligent Transportation Systems = Ieee T. Intell. Transp. IEEE Transactions on Intelligent Transportation Systems = IEEE Trans. Intell. Transport. Syst. {IEEE} Transactions on Intelligent Transportation Systems = {IEEE} Trans. Intell. Transp. Syst. IEEE Transactions on Intelligent Transportation Systems = IEEE Trans. Intell. Transp. Syst. {IEEE} Transactions on Intelligent Vehicles = {IEEE} Trans. Intell. Veh. Ieee Transactions On Knowledge and Data Engineering = Ieee T Knowl Data En Ieee Transactions On Knowledge and Data Engineering = Ieee T. Knowl. Data En. {IEEE} Transactions on Knowledge and Data Engineering = {IEEE} Trans. Knowl. Data Eng. IEEE Transactions on Knowledge and Data Engineering = IEEE Trans. Knowl. Data Eng. IEEE Transactions on Knowledge and Data Engineering = IEEE Trans. Knowledge Data Eng. Ieee Transactions On Learning Technologies = Ieee T Learn Technol Ieee Transactions On Learning Technologies = Ieee T. Learn. Technol. {IEEE} Transactions on Learning Technologies = {IEEE} Trans. Learn. Technol. IEEE Transactions on Learning Technologies = IEEE Trans. Learn. Technol. Ieee Transactions On Magnetics = Ieee T Magn Ieee Transactions On Magnetics = Ieee T. Magn. IEEE transactions on magnetics = IEEE Trans Magn {IEEE} Transactions on Magnetics = {IEEE} Trans. Magn. IEEE Transactions on Magnetics = IEEE Trans. Magn. Ieee Transactions On Man-machine Systems = Ieee T Man Machine Ieee Transactions On Man-machine Systems = Ieee T. Man. Machine. {IEEE} Transactions on Man-Machine Systems = {IEEE} Trans. Man-Mach. Syst. IEEE Transactions on Man-Machine Systems = IEEE Trans. Man-Mach. Syst. Ieee Transactions On Manufacturing Technology = Ieee T Manuf Tech Ieee Transactions On Manufacturing Technology = Ieee T. Manuf. Tech. IEEE Transactions on Manufacturing Technology = IEEE Trans. Manufact. Technol. {IEEE} Transactions on Manufacturing Technology = {IEEE} Trans. Manuf. Technol. {IEEE} Transactions on Medical Electronics = {IEEE} Trans. Med. Electron. IEEE Transactions on Medical Electronics = IEEE Trans. Med. Electron. Ieee Transactions On Medical Imaging = Ieee T Med Imaging Ieee Transactions On Medical Imaging = Ieee T. Med. Imaging {IEEE} Transactions on Medical Imaging = {IEEE} Trans. Med. Imag. IEEE Transactions on Medical Imaging = IEEE Trans. Med. Imag. IEEE transactions on medical imaging = IEEE Trans Med Imaging IEEE Transactions on Medical Imaging = IEEE Trans. Med. Imaging IEEE Transactions on Medical IMAging=IEEE Trans Med Imaging;; Ieee Transactions On Microwave Theory and Techniques = Ieee T Microw Theory Ieee Transactions On Microwave Theory and Techniques = Ieee T. Microw. Theory IEEE Transactions on Microwave Theory and Techniques = IEEE Trans. Microwave Theory Tech. IEEE transactions on microwave theory and techniques = IEEE Trans Microw Theory Tech {IEEE} Transactions on Microwave Theory and Techniques = {IEEE} Trans. Microw. Theory Techn. Ieee Transactions On Military Electronics = Ieee T Mil Electron Ieee Transactions On Military Electronics = Ieee T. Mil. Electron. {IEEE} Transactions on Military Electronics = {IEEE} Trans. Mil. Electron. IEEE Transactions on Military Electronics = IEEE Trans. Mil. Electron. Ieee Transactions On Mobile Computing = Ieee T Mobile Comput Ieee Transactions On Mobile Computing = Ieee T. Mobile Comput. IEEE Transactions on Mobile Computing = IEEE Trans. Mob. Comput. {IEEE} Transactions on Mobile Computing = {IEEE} Trans. Mobile Comput. IEEE Transactions on Mobile Computing = IEEE Trans. Mobile Comput. {IEEE} Transactions on Molecular, Biological and Multi-Scale Communications = {IEEE} Trans. Mol. Biol. Multi-Scale Commun. Ieee Transactions On Multimedia = Ieee T Multimedia Ieee Transactions On Multimedia = Ieee T. Multimedia {IEEE} Transactions on Multimedia = {IEEE} Trans. Multimedia IEEE Transactions on Multimedia = IEEE Trans. Multimedia {IEEE} Transactions on Multi-Scale Computing Systems = {IEEE} Trans. Multi-Scale Comput. Syst. Ieee Transactions On Nanobioscience = Ieee T Nanobiosci Ieee Transactions On Nanobioscience = Ieee T. Nanobiosci. IEEE Transactions on Nanobioscience = IEEE Trans. Nanobiosci. {IEEE} Transactions on NanoBioscience = {IEEE} Trans. Nanobiosci. IEEE Transactions on NanoBioscience = IEEE Trans. Nanobiosci. IEEE transactions on nanobioscience = IEEE Trans Nanobioscience IEEE Transactions on Nanobioscience = IEEE Trans. Nanobioscience Ieee Transactions On Nanotechnology = Ieee T Nanotechnol Ieee Transactions On Nanotechnology = Ieee T. Nanotechnol. {IEEE} Transactions on Nanotechnology = {IEEE} Trans. Nanotechnol. IEEE Transactions on Nanotechnology = IEEE Trans. Nanotechnol. {IEEE} Transactions on Network and Service Management = {IEEE} Trans. Netw. Service Manag. IEEE Transactions on Network and Service Management = IEEE Trans. Netw. Serv. Manage. {IEEE} Transactions on Network Science and Engineering = {IEEE} Trans. Netw. Sci. Eng. {IEEE} Transactions on Neural Networks and Learning Systems = {IEEE} Trans. Neural Netw. Learn. Syst. IEEE transactions on neural networks / a publication of the IEEE Neural Networks Council = IEEE Trans Neural Netw Ieee Transactions On Neural Networks = Ieee T Neural Networ Ieee Transactions On Neural Networks = Ieee T. Neural Networ. {IEEE} Transactions on Neural Networks = {IEEE} Trans. Neural Netw. IEEE Transactions on Neural Networks = IEEE Trans. Neural Networks IEEE transactions on neural systems and rehabilitation engineering : a publication of the IEEE Engineering in Medicine and Biology Society = IEEE Trans Neural Syst Rehabil Eng Ieee Transactions On Neural Systems and Rehabilitation Engineering = Ieee T Neur Sys Reh Ieee Transactions On Neural Systems and Rehabilitation Engineering = Ieee T. Neur. Sys. Reh. IEEE Transactions on Neural Systems and Rehabilitation Engineering = IEEE Trans. Neural Syst. Rehab. Eng. {IEEE} Transactions on Neural Systems and Rehabilitation Engineering = {IEEE} Trans. Neural Syst. Rehabil. Eng. IEEE Transactions on Neural Systems and Rehabilitation Engineering = IEEE Trans. Neural Syst. Rehabil. Eng. Ieee Transactions On Nuclear Science = Ieee T Nucl Sci Ieee Transactions On Nuclear Science = Ieee T. Nucl. Sci. IEEE transactions on nuclear science = IEEE Trans Nucl Sci {IEEE} Transactions on Nuclear Science = {IEEE} Trans. Nucl. Sci. IEEE Transactions on Nuclear Science = IEEE Trans. Nucl. Sci. Ieee Transactions On Parallel and Distributed Systems = Ieee T Parall Distr Ieee Transactions On Parallel and Distributed Systems = Ieee T. Parall. Distr. {IEEE} Transactions on Parallel and Distributed Systems = {IEEE} Trans. Parallel Distrib. Syst. IEEE Transactions on Parallel and Distributed Systems = IEEE Trans. Parallel Distrib. Syst. Ieee Transactions On Parts Hybrids and Packaging = Ieee T Parts Hyb Pac Ieee Transactions On Parts Hybrids and Packaging = Ieee T. Parts Hyb. Pac. {IEEE} Transactions on Parts, Hybrids and Packaging = {IEEE} Trans. Parts, Hybrids, Packag. IEEE Transactions on Parts, Hybrids and Packaging = IEEE Trans. Parts, Hybrids, Packag. {IEEE} Transactions on Parts, Materials and Packaging = {IEEE} Trans. Parts, Mater., Packag. IEEE Transactions on Parts, Materials and Packaging = IEEE Trans. Parts, Mater., Packag. Ieee Transactions On Parts Materials and Packaging = Ieee Tr Parts Mater Ieee Transactions On Parts Materials and Packaging = Ieee Tr. Parts Mater. Ieee Transactions On Pattern Analysis and Machine Intelligence = Ieee T Pattern Anal Ieee Transactions On Pattern Analysis and Machine Intelligence = Ieee T. Pattern Anal. IEEE Transactions on Pattern Analysis and Machine Intelligence = IEEE Trans. Pattern Anal. Machine Intell. IEEE transactions on pattern analysis and machine intelligence = IEEE Trans Pattern Anal Mach Intell {IEEE} Transactions on Pattern Analysis and Machine Intelligence = {IEEE} Trans. Pattern Anal. Mach. Intell. IEEE Transactions on Pattern Analysis and Machine Intelligence = IEEE Trans. Pattern Anal. Mach. Intell. IEEE transactions on plasma science. IEEE Nuclear and Plasma Sciences Society = IEEE Trans Plasma Sci IEEE Nucl Plasma Sci Soc Ieee Transactions On Plasma Science = Ieee T Plasma Sci Ieee Transactions On Plasma Science = Ieee T. Plasma Sci. {IEEE} Transactions on Plasma Science = {IEEE} Trans. Plasma Sci. IEEE Transactions on Plasma Science = IEEE Trans. Plasma Sci. Ieee Transactions On Power Apparatus and Systems = Ieee T Power Ap Syst Ieee Transactions On Power Apparatus and Systems = Ieee T. Power Ap. Syst. {IEEE} Transactions on Power Apparatus and Systems = {IEEE} Trans. Power App. Syst. IEEE Transactions on Power Apparatus and Systems = IEEE Trans. Power App. Syst. Ieee Transactions On Power Delivery = Ieee T Power Deliver Ieee Transactions On Power Delivery = Ieee T. Power Deliver. {IEEE} Transactions on Power Delivery = {IEEE} Trans. Power Del. IEEE Transactions on Power Delivery = IEEE Trans. Power Delivery Ieee Transactions On Power Electronics = Ieee T Power Electr Ieee Transactions On Power Electronics = Ieee T. Power Electr. {IEEE} Transactions on Power Electronics = {IEEE} Trans. Power Electron. IEEE Transactions on Power Electronics = IEEE Trans. Power Electron. Ieee Transactions On Power Systems = Ieee T Power Syst Ieee Transactions On Power Systems = Ieee T. Power Syst. {IEEE} Transactions on Power Systems = {IEEE} Trans. Power Syst. IEEE Transactions on Power Systems = IEEE Trans. Power Syst. Ieee Transactions On Product Engineering and Production = Ieee T Prod Eng Prod Ieee Transactions On Product Engineering and Production = Ieee T. Prod. Eng. Prod. IEEE Transactions on Product Engineering and Production = IEEE Trans. Prod. Eng. Prod. Ieee Transactions On Professional Communication = Ieee T Prof Commun Ieee Transactions On Professional Communication = Ieee T. Prof. Commun. {IEEE} Transactions on Professional Communication = {IEEE} Trans. Prof. Commun. IEEE Transactions on Professional Communication = IEEE Trans. Prof. Commun. {IEEE} Transactions on Radio Frequency Interference = {IEEE} Trans. Radio Freq. Interference IEEE Transactions on Radio Frequency Interference = IEEE Trans. Radio Freq. Interference IEEE transactions on rehabilitation engineering : a publication of the IEEE Engineering in Medicine and Biology Society = IEEE Trans Rehabil Eng IEEE Transactions on Rehabilitation Engineering = IEEE Trans. Rehab. Eng. {IEEE} Transactions on Rehabilitation Engineering = {IEEE} Trans. Rehabil. Eng. IEEE Transactions on Rehabilitation Engineering=IEEE Trans Rehabil Eng;; IEEE Transactions on Rehabilitation Engineering = IEEE Trans. Rehabil. Eng. Ieee Transactions On Rehabilitation Engineering = Ieee T Rehabil Eng Ieee Transactions On Rehabilitation Engineering = Ieee T. Rehabil. Eng. {IEEE} Transactions on Reliability = {IEEE} Trans. Rel. IEEE Transactions on Reliability = IEEE Trans. Rel. IEEE Transactions on Reliability = IEEE Trans. Reliab. Ieee Transactions On Reliability = Ieee T Reliab Ieee Transactions On Reliability = Ieee T. Reliab. IEEE transactions on robotics and automation : a publication of the IEEE Robotics and Automation Society = IEEE Trans Rob Autom {IEEE} Transactions on Robotics and Automation = {IEEE} Trans. Robot. Autom. IEEE Transactions on Robotics and Automation = IEEE Trans. Robot. Automat. Ieee Transactions On Robotics and Automation = Ieee T Robotic Autom Ieee Transactions On Robotics and Automation = Ieee T. Robotic. Autom. IEEE Transactions on Robotics = IEEE Trans. Rob. {IEEE} Transactions on Robotics = {IEEE} Trans. Robot. IEEE Transactions on Robotics = IEEE Trans. Robot Ieee Transactions On Robotics = Ieee T Robot Ieee Transactions On Robotics = Ieee T. Robot. {IEEE} Transactions on Semiconductor Manufacturing = {IEEE} Trans. Semicond. Manuf. IEEE Transactions on Semiconductor Manufacturing = IEEE Trans. Semicond. Manuf. IEEE Transactions on Semiconductor Manufacturing = IEEE Trans. Semiconduct. Manufact. Ieee Transactions On Semiconductor Manufacturing = Ieee T Semiconduct M Ieee Transactions On Semiconductor Manufacturing = Ieee T. Semiconduct. M. {IEEE} Transactions on Services Computing = {IEEE} Trans. Serv. Comput. IEEE Transactions on Services Computing = IEEE Trans. Serv. Comput. {IEEE} Transactions on Signal and Information Processing over Networks = {IEEE} Trans. Signal Inf. Process. Netw. IEEE Transactions on Signal Processing = IEEE Trans. Signal Process. {IEEE} Transactions on Signal Processing = {IEEE} Trans. Signal Process. IEEE Transactions on Signal Processing = IEEE Trans. Signal Process. IEEE Transactions on Signal Processing = IEEE Trans. Signal Processing Ieee Transactions On Signal Processing = Ieee T Signal Proces Ieee Transactions On Signal Processing = Ieee T. Signal Proces. {IEEE} Transactions on Smart Grid = {IEEE} Trans. Smart Grid IEEE Transactions on Smart Grid = IEEE Trans. Smart Grid IEEE Transactions on Software Engineering = IEEE Trans. Software Eng. {IEEE} Transactions on Software Engineering = {IEEE} Trans. Softw. Eng. Ieee Transactions On Software Engineering = Ieee T Software Eng Ieee Transactions On Software Engineering = Ieee T. Software Eng. {IEEE} Transactions on Sonics and Ultrasonics = {IEEE} Trans. Sonics Ultrason. IEEE Transactions on Sonics and Ultrasonics = IEEE Trans. Sonics Ultrason. Ieee Transactions On Sonics and Ultrasonics = Ieee T Son Ultrason Ieee Transactions On Sonics and Ultrasonics = Ieee T. Son. Ultrason. IEEE Transactions on Space Electronics and Telemetry = IEEE Trans. Space. El. Tel. Ieee Transactions On Space Electronics and Telemetry = Ieee T Space El Tel Ieee Transactions On Space Electronics and Telemetry = Ieee T. Space El. Tel. {IEEE} Transactions on Speech and Audio Processing = {IEEE} Trans. Speech Audio Process. IEEE Transactions on Speech and Audio Processing = IEEE Trans. Speech Audio Processing Ieee Transactions On Speech and Audio Processing = Ieee T Speech Audi P Ieee Transactions On Speech and Audio Processing = Ieee T. Speech Audi. P. IEEE Transactions on Sustainable Energy = IEEE Trans. Sustainable Energy {IEEE} Transactions on Sustainable Energy = {IEEE} Trans. Sustain. Energy IEEE transactions on systems, man, and cybernetics = IEEE Trans Syst Man Cybern {IEEE} Transactions on Systems, Man, and Cybernetics = {IEEE} Trans. Syst., Man, Cybern. IEEE Transactions on Systems, Man and Cybernetics = IEEE Trans. Syst. Man Cybern. IEEE Transactions on Systems, Man, and Cybernetics = IEEE Trans. Syst., Man, Cybern. Ieee Transactions On Systems Man and Cybernetics = Ieee T Syst Man Cyb Ieee Transactions On Systems Man and Cybernetics = Ieee T. Syst. Man Cyb. IEEE transactions on systems, man, and cybernetics. Part A, Systems and humans : a publication of the IEEE Systems, Man, and Cybernetics Society = IEEE Trans Syst Man Cybern A Syst Hum {IEEE} Transactions on Systems, Man, and Cybernetics---Part {A}: Systems and Humans = {IEEE} Trans. Syst., Man, Cybern. {A} IEEE Transactions on Systems, Man, and Cybernetics---Part A: Systems and Humans = IEEE Trans. Syst., Man, Cybern. A IEEE Transactions on Systems, Man, and Cybernetics Part A: Systems and Humans = IEEE Trans. Syst. Man Cybern. Part A Syst. Humans Ieee Transactions On Systems Man and Cybernetics Part A-systems and Humans = Ieee T Syst Man Cy A Ieee Transactions On Systems Man and Cybernetics Part A-systems and Humans = Ieee T. Syst. Man Cy. A. IEEE transactions on systems, man, and cybernetics. Part B, Cybernetics : a publication of the IEEE Systems, Man, and Cybernetics Society = IEEE Trans Syst Man Cybern B Cybern {IEEE} Transactions on Systems, Man, and Cybernetics---Part {B}: Cybernetics = {IEEE} Trans. Syst., Man, Cybern. {B} IEEE Transactions on Systems, Man, and Cybernetics---Part B: Cybernetics = IEEE Trans. Syst., Man, Cybern. B IEEE Transactions on Systems, Man, and Cybernetics Part B: Cybernetics = IEEE Trans. Syst. Man Cybern. Part B Cybern. Ieee Transactions On Systems Man and Cybernetics Part B-cybernetics = Ieee T Syst Man Cy B Ieee Transactions On Systems Man and Cybernetics Part B-cybernetics = Ieee T. Syst. Man Cy. B. IEEE transactions on systems, man and cybernetics. Part C, Applications and reviews : a publication of the IEEE Systems, Man, and Cybernetics Society = IEEE Trans Syst Man Cybern C Appl Rev {IEEE} Transactions on Systems, Man, and Cybernetics---Part {C}: Applications and Reviews = {IEEE} Trans. Syst., Man, Cybern. {C} IEEE Transactions on Systems, Man, and Cybernetics---Part C: Applications and Reviews = IEEE Trans. Syst., Man, Cybern. C IEEE Transactions on Systems, Man, and Cybernetics Part C: Applications and Reviews = IEEE Trans. Syst. Man Cybern. Part C Appl. Rev. Ieee Transactions On Systems Man and Cybernetics Part C-applications and Reviews = Ieee T Syst Man Cy C Ieee Transactions On Systems Man and Cybernetics Part C-applications and Reviews = Ieee T. Syst. Man Cy. C. {IEEE} Transactions on Systems, Man, and Cybernetics: Systems = {IEEE} Trans. Syst., Man, Cybern., Syst. {IEEE} Transactions on Systems Science and Cybernetics = {IEEE} Trans. Syst. Sci. Cybern. IEEE Transactions on Systems Science and Cybernetics = IEEE Trans.Syst. Sci. Cybernetics Ieee Transactions On Systems Science and Cybernetics = Ieee T Syst Sci Cyb Ieee Transactions On Systems Science and Cybernetics = Ieee T. Syst. Sci. Cyb. {IEEE} Transactions on Terahertz Science and Technology = {IEEE} Trans. {THz} Sci. Technol. {IEEE} Transactions on Transportation Electrification = {IEEE} Trans. Transport. Electrific. {IEEE} Transactions on Ultrasonics Engineering = {IEEE} Trans. Ultrason. Eng. IEEE Transactions on Ultrasonics Engineering = IEEE Trans. Ultrason. Eng. IEEE Transactions on Ultrasonics, Ferroelectrics, and Frequency Control = IEEE Trans. Ultrason., Ferroelect., Freq. Contr. IEEE transactions on ultrasonics, ferroelectrics, and frequency control = IEEE Trans Ultrason Ferroelectr Freq Control {IEEE} Transactions on Ultrasonics, Ferroelectrics, and Frequency Control = {IEEE} Trans. Ultrason., Ferroelectr., Freq. Control IEEE Transactions on Ultrasonics, Ferroelectrics, and Frequency Control = IEEE Trans. Ultrason. Ferroelectr. Freq. Control Ieee Transactions On Ultrasonics Ferroelectrics and Frequency Control = Ieee T Ultrason Ferr Ieee Transactions On Ultrasonics Ferroelectrics and Frequency Control = Ieee T. Ultrason. Ferr. {IEEE} Transactions on Vehicular Communications = {IEEE} Trans. Veh. Commun. IEEE Transactions on Vehicular Communications = IEEE Trans. Veh. Commun. Ieee Transactions On Vehicular Communications = Ieee T Veh Commun Ieee Transactions On Vehicular Communications = Ieee T. Veh. Commun. {IEEE} Transactions on Vehicular Technology = {IEEE} Trans. Veh. Technol. IEEE Transactions on Vehicular Technology = IEEE Trans. Veh. Technol. Ieee Transactions On Vehicular Technology = Ieee T Veh Technol Ieee Transactions On Vehicular Technology = Ieee T. Veh. Technol. IEEE Transactions on Very Large Scale Integration (VLSI) Systems = IEEE Trans. Very Large Scale Integr. VLSI Syst. {IEEE} Transactions on Very Large Scale Integration ({VLSI}) Systems = {IEEE} Trans. {VLSI} Syst. IEEE Transactions on Very Large Scale Integration (VLSI) Systems = IEEE Trans. VLSI Syst. Ieee Transactions On Very Large Scale Integration (vlsi) Systems = Ieee T Vlsi Syst Ieee Transactions On Very Large Scale Integration (vlsi) Systems = Ieee T. Vlsi. Syst. IEEE transactions on visualization and computer graphics = IEEE Trans Vis Comput Graph {IEEE} Transactions on Visualization and Computer Graphics = {IEEE} Trans. Vis. Comput. Graphics IEEE Transactions on Visualization and Computer Graphics = IEEE Trans. Visual Comput. Graphics IEEE Transactions on Visualization and Computer Graphics = IEEE Trans. Visual. Comput. Graphics Ieee Transactions On Visualization and Computer Graphics = Ieee T Vis Comput Gr Ieee Transactions On Visualization and Computer Graphics = Ieee T. Vis. Comput. Gr. {IEEE} Transactions on Wireless Communications = {IEEE} Trans. Wireless Commun. IEEE Transactions on Wireless Communications = IEEE Trans. Wireless Commun. Ieee Transactions On Wireless Communications = Ieee T Wirel Commun Ieee Transactions On Wireless Communications = Ieee T. Wirel. Commun. {IEEE} Translation Journal on Magnetics in Japan = {IEEE} Transl. J. Magn. Jpn. IEEE Translation Journal on Magnetics in Japan = IEEE Transl. J. Magn. Jpn. Ieee Vehicle Power and Propulsion Conference Vppc = Ieee Vehicle Power Ieee Vehicular Technology Conference, Fall 2000, Vols 1-6, Proceedings = Ieee Vts Veh Technol Ieee Vehicular Technology Conference, Fall 2000, Vols 1-6, Proceedings = Ieee Vts. Veh. Technol. Ieee Vehicular Technology Conference Proceedings = Ieee Vtc P Ieee Vehicular Technology Conference Proceedings = Ieee Vtc. P. Ieee Vehicular Technology Conference = Veh Technol Confe Ieee Vehicular Technology Conference = Veh. Technol. Confe. Ieee Vehicular Technology Group-annual Conference = Ieee Veh Technol Gr Ieee Vehicular Technology Group-annual Conference = Ieee Veh. Technol. Gr. IEEE Vehicular Technology Group-Annual Conference = IEEE Veh. Technol. Group Ieee Vehicular Technology Magazine = Ieee Veh Technol Mag Ieee Vehicular Technology Magazine = Ieee Veh. Technol. Mag. {IEEE} Vehicular Technology Magazine = {IEEE} Veh. Technol. Mag. IEEE Vehicular Technology Magazine = IEEE Veh. Technol. Mag. Ieee Virtual Reality 2001, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2001, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2002, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2002, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2003, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2003, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2004, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2004, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2005, Conference Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2005, Conference Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2006, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2006, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality 2010, Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality 2010, Proceedings = P. Ieee Virt. Real. Ann. Ieee Virtual Reality - Proceedings = P Ieee Virt Real Ann Ieee Virtual Reality - Proceedings = P. Ieee Virt. Real. Ann. Ieee Vlsi Test Symposium = Ieee Vlsi Test Symp Ieee Vlsi Test Symposium = Ieee Vlsi Test Symp. Ieee Vtc 53rd Vehicular Technology Conference, Spring 2001, Vols 1-4, Proceedings = Ieee Vts Veh Technol Ieee Vtc 53rd Vehicular Technology Conference, Spring 2001, Vols 1-4, Proceedings = Ieee Vts. Veh. Technol. Ieee Vts Vehicular Technology Conference Proceedings = Ieee Vts Veh Technol Ieee Vts Vehicular Technology Conference Proceedings = Ieee Vts Veh. Technol. Ieee Western Canada Conference and Exhibition On Telecommunication for Health Care : Telemetry, Teleradiology, and Telemedicine = P Soc Photo-opt Ins Ieee Western Canada Conference and Exhibition On Telecommunication for Health Care : Telemetry, Teleradiology, and Telemedicine = P. Soc. Photo-opt. Ins. Ieee Wireless Communications and Networking Conference = Ieee Wcnc Ieee Wireless Communications and Networking Conference = Ieee Wcnc. Ieee Wireless Communications = Ieee Wirel Commun Ieee Wireless Communications = Ieee Wirel. Commun. IEEE Wireless Communications = IEEE Wirel. Commun. {IEEE} Wireless Communications = {IEEE} Wireless Commun. IEEE Wireless Communications = IEEE Wireless Commun. {IEEE} Wireless Communications Letters = {IEEE} Wireless Commun. Lett. IEEE Wireless Communications Magazine = IEEE Wireless Commun. Mag. Ieee Working Conference On Current Measurement Technology = Work C Curr Measurem Ieee Working Conference On Current Measurement Technology = Work. C. Curr. Measurem. Ieee Workshop On Applications of Computer Vision = Ieee Work App Comp Ieee Workshop On Applications of Computer Vision = Ieee Work. App. Comp. Ieee Workshop On Local and Metropolitan Area Networks = Wrks Loc Metro Area Ieee Workshop On Local and Metropolitan Area Networks = Wrks. Loc. Metro. Area Ieee Workshop On Machine Learning for Signal Processing = Machine Learn Sign P Ieee Workshop On Machine Learning for Signal Processing = Machine Learn. Sign. P. Ieee Workshop On Signal Processing Systems = Ieee Wrk Sig Pro Sys Ieee Workshop On Signal Processing Systems = Ieee Wrk. Sig. Pro. Sys. Iee Journal On Electronic Circuits and Systems = Iee Proc-g Iee Journal On Electronic Circuits and Systems = Iee Proc-g. Iee Journal On Microwaves Optics and Acoustics = Iee Proc-h Iee Journal On Microwaves Optics and Acoustics = Iee Proc-h. Iee Journal On Solid-state and Electron Devices = Iee Proc-i Iee Journal On Solid-state and Electron Devices = Iee Proc-i. Ieej Transactions On Electrical and Electronic Engineering = Ieej T Electr Electr Ieej Transactions On Electrical and Electronic Engineering = Ieej T. Electr. Electr. Ieem: 2008 International Conference On Industrial Engineering and Engineering Management, Vols 1-3 = In C Ind Eng Eng Man Ieem: 2008 International Conference On Industrial Engineering and Engineering Management, Vols 1-3 = In. C. Ind. Eng. Eng. Man. Iee National Conference On Antennas and Propagation = Iee Conf Publ Iee National Conference On Antennas and Propagation = Iee Conf. Publ. Iee Proceedings-a-science Measurement and Technology = Iee Proc-a Iee Proceedings-a-science Measurement and Technology = Iee Proc-a. Iee Proceedings-b Electric Power Applications = Iee Proc-b Iee Proceedings-b Electric Power Applications = Iee Proc-b. Iee Proceedings-c Generation Transmission and Distribution = Iee Proc-c Iee Proceedings-c Generation Transmission and Distribution = Iee Proc-c. Iee Proceedings-circuits Devices and Systems = Iee P-circ Dev Syst Iee Proceedings-circuits Devices and Systems = Iee P-circ. Dev. Syst. Iee Proceedings-communications = Iee P-commun Iee Proceedings-communications = Iee P-commun. Iee Proceedings-computers and Digital Techniques = Iee P-comput Dig T Iee Proceedings-computers and Digital Techniques = Iee P-comput. Dig. T. Iee Proceedings-control Theory and Applications = Iee P-contr Theor Ap Iee Proceedings-control Theory and Applications = Iee P-contr. Theor. Ap. Iee Proceedings-d Control Theory and Applications = Iee Proc-d Iee Proceedings-d Control Theory and Applications = Iee Proc-d. Iee Proceedings-e Computers and Digital Techniques = Iee Proc-e Iee Proceedings-e Computers and Digital Techniques = Iee Proc-e. Iee Proceedings-electric Power Applications = Iee P-elect Pow Appl Iee Proceedings-electric Power Applications = Iee P-elect. Pow. Appl. Iee Proceedings-f Radar and Signal Processing = Iee Proc-f Iee Proceedings-f Radar and Signal Processing = Iee Proc-f. Iee Proceedings-g Circuits Devices and Systems = Iee Proc-g Iee Proceedings-g Circuits Devices and Systems = Iee Proc-g. Iee Proceedings-generation Transmission and Distribution = Iee P-gener Transm D Iee Proceedings-generation Transmission and Distribution = Iee P-gener. Transm. D. Iee Proceedings-h Microwaves Antennas and Propagation = Iee Proc-h Iee Proceedings-h Microwaves Antennas and Propagation = Iee Proc-h. Iee Proceedings-i Communications Speech and Vision = Iee Proc-i Iee Proceedings-i Communications Speech and Vision = Iee Proc-i. Iee Proceedings-j Optoelectronics = Iee Proc-j Iee Proceedings-j Optoelectronics = Iee Proc-j. Iee Proceedings-microwaves Antennas and Propagation = Iee P-microw Anten P Iee Proceedings-microwaves Antennas and Propagation = Iee P-microw. Anten. P. Iee Proceedings-nanobiotechnology = Iee P-nanobiotechnol Iee Proceedings-nanobiotechnology = Iee P-nanobiotechnol. Iee Proceedings-nanobiotechnology = Iee Proc-nanobiotech Iee Proceedings-nanobiotechnology = Iee Proc-nanobiotech. IEE proceedings. Nanobiotechnology = IEE Proc Nanobiotechnol IEE Proceedings. Nanobiotechnology = IEE Proc. Nanobiotechnol. Iee Proceedings-optoelectronics = Iee P-optoelectron Iee Proceedings-optoelectronics = Iee P-optoelectron. IEE Proceedings: Optolectronics = IEE Proc.: Optoelectron. Iee Proceedings-radar Sonar and Navigation = Iee P-radar Son Nav Iee Proceedings-radar Sonar and Navigation = Iee P-radar. Son. Nav. Iee Proceedings-science Measurement and Technology = Iee P-sci Meas Tech Iee Proceedings-science Measurement and Technology = Iee P-sci. Meas. Tech. IEE Proceedings: Science, Measurement & Technology = IEE Proc.: Sci. Meas. Technol. Iee Proceedings-software = Iee Proc-softw Iee Proceedings-software = Iee Proc-softw. Iee Proceedings-software = Iee P-softw Iee Proceedings-software = Iee P-softw. IEE proceedings. Systems biology = IEE Proc Syst Biol Iee Proceedings Systems Biology = Iee P Syst Biol Iee Proceedings Systems Biology = Iee P. Syst. Biol. Iee Proceedings-vision Image and Signal Processing = Iee P-vis Image Sign Iee Proceedings-vision Image and Signal Processing = Iee P-vis. Image Sign. Iee Review = Iee Review Iee Reviews = Iee Rev Iee Reviews = Iee Rev. Ieice Electronics Express = Ieice Electron Expr Ieice Electronics Express = Ieice Electron. Expr. Ieice Transactions On Communications Electronics Information and Systems = Ieice Trans Commun Ieice Transactions On Communications Electronics Information and Systems = Ieice Trans. Commun. Ieice Transactions On Communications = Ieice T Commun Ieice Transactions On Communications = Ieice T. Commun. IEICE Transactions on Communications = IEICE Trans. Commun. Ieice Transactions On Electronics = Ieice T Electron Ieice Transactions On Electronics = Ieice T. Electron. IEICE Transactions on Electronics = IEICE Trans. Electron. IEICE Transactions on Fundamentals of Electronics, Communications and Computer Science = IEICE Trans. Fundam. Electron. Commun. Comput. Sci. Ieice Transactions On Fundamentals of Electronics Communications and Computer Sciences = Ieice T Fund Electr Ieice Transactions On Fundamentals of Electronics Communications and Computer Sciences = Ieice T. Fund. Electr. Ieice Transactions On Information and Systems = Ieice T Inf Syst Ieice Transactions On Information and Systems = Ieice T. Inf. Syst. IEICE Transactions on Information and Systems = IEICE Trans. Inf. Syst. Iemt 2006: 31st International Conference On Electronics Manufacturing and Technology = Ieee/cpmt Int El Mfg Iemt 2006: 31st International Conference On Electronics Manufacturing and Technology = Ieee/cpmt. Int. El. Mfg. IET Circuits, Devices and Systems = IET Circuits Devices Syst. Iet Circuits Devices & Systems = Iet Circ Device Syst Iet Circuits Devices & Systems = Iet Circ. Device. Syst. IET Communications Engineer = IET Commun. Eng. Iet Communications = Iet Commun Iet Communications = Iet Commun. IET Communications = IET Commun. IET Computers and Digital Techniques = IET Comput. Digital Tech. Iet Computers and Digital Techniques = Iet Comput Digit Tec Iet Computers and Digital Techniques = Iet Comput. Digit. Tec. Iet Computer Vision = Iet Comput Vis Iet Computer Vision = Iet Comput. Vis. IET Computer Vision = IET Comput. Vision Iet Control Theory and Applications = Iet Control Theory A Iet Control Theory and Applications = Iet Control Theory A. IET Control Theory and Applications = IET Control Theory Appl. Iete Journal of Research = Iete J Res Iete Journal of Research = Iete J. Res. Iet Electric Power Applications = Iet Electr Power App Iet Electric Power Applications = Iet Electr. Power App. IET Electric Power Applications = IET Electr. Power Appl. IET Electronics Systems and Software = IET Electron. Syst. Softw. IET Engineering Management = IET Eng. Manage. Iete Technical Review = Iete Tech Rev Iete Technical Review = Iete Tech. Rev. IET Generation, Transmission and Distribution = IET Gener. Transm. Distrib. Iet Generation Transmission & Distribution = Iet Gener Transm Dis Iet Generation Transmission & Distribution = Iet Gener. Transm. Dis. IET Image Processing = IET Image Proc. Iet Image Processing = Iet Image Process Iet Image Processing = Iet Image Process. Iet Information Security = Iet Inform Secur Iet Information Security = Iet Inform. Secur. IET Information Security = IET Inf. Secur. Iet Intelligent Transport Systems = Iet Intell Transp Sy Iet Intelligent Transport Systems = Iet Intell. Transp. Sy. IET Intelligent Transport Systems = IET Intel. Transport Syst. IET Microwaves, Antennas and Propagation = IET Microwaves Antennas Propag. Iet Microwaves Antennas & Propagation = Iet Microw Antenna P Iet Microwaves Antennas & Propagation = Iet Microw. Antenna. P. IET nanobiotechnology / IET = IET Nanobiotechnol Iet Nanobiotechnology = Iet Nanobiotechnol Iet Nanobiotechnology = Iet Nanobiotechnol. IET Nanobiotechnology = IET Nanobiotechnol. Iet Optoelectronics = Iet Optoelectron Iet Optoelectronics = Iet Optoelectron. IET Optoelectronics = IET Optoelectron Iet Power Electronics = Iet Power Electron Iet Power Electronics = Iet Power Electron. IET Power Engineer = IET Power Eng. IET Proceedings: Science, Measurement & Technology = IET Proc.: Sci. Meas. Technol. Ietp Technical Publication Series = Ietc Tech Publ Ser Ietp Technical Publication Series = Ietc. Tech. Publ. Ser. Iet Radar Sonar and Navigation = Iet Radar Sonar Nav Iet Radar Sonar and Navigation = Iet Radar Sonar Nav. IET Radar, Sonar and Navigation = IET Radar Sonar Navig. Iet Renewable Power Generation = Iet Renew Power Gen Iet Renewable Power Generation = Iet Renew. Power Gen. IET Renewable Power Generation = IET Renew. Power Gener. IET Science, Measurement and Technology = IET Sci. Meas. Technol. Iet Science Measurement & Technology = Iet Sci Meas Technol Iet Science Measurement & Technology = Iet Sci. Meas. Technol. IET Signal Processing = IET Signal Proc. Iet Signal Processing = Iet Signal Process Iet Signal Processing = Iet Signal Process. Iet Software = Iet Softw Iet Software = Iet Softw. IET Software = IET Software IET Synthetic Biology = IET Synth. Biol. Iet Systems Biology = Iet Syst Biol Iet Systems Biology = Iet Syst. Biol. IET systems biology = IET Syst Biol IET Systems Biology = IET Syst. Biol. Ifa Congress Seminar Series = Ifa Congr S Ifa Congress Seminar Series = Ifa Congr. S. Ifac Proceedings Series = Ifac P Ser Ifac Proceedings Series = Ifac P. Ser. IFAC Symposia Series = IFAC Sympos. Ser. Ifac Symposia Series = Ifac Symp Series Ifac Symposia Series = Ifac Symp. Series Ifac Workshop Series = Ifac Work S Ifac Workshop Series = Ifac Work. S. Ifae 2005: 17th Italian Meeting On High Energy Physics = Aip Conf Proc Ifae 2005: 17th Italian Meeting On High Energy Physics = Aip. Conf. Proc. Ifdc Special Publication = Ifdc Sp Pub Ifdc Special Publication = Ifdc Sp. Pub. Ifip Advances in Information and Communication Technology = Ifip Adv Inf Comm Te Ifip Advances in Information and Communication Technology = Ifip Adv. Inf. Comm. Te. Ifip International Conference On Network and Parallel Computing Npc = Ifip Int C Netw Para Ifip International Conference On Network and Parallel Computing Npc = Ifip Int. C. Netw. Para. Ifip Series On Computer Graphics = Ifip S Comp Ifip Series On Computer Graphics = Ifip S. Comp. Ifip Transactions A-computer Science and Technology = Ifip Trans A Ifip Transactions A-computer Science and Technology = Ifip Trans. A. IFIP Transactions A: Computer Science and Technology = IFIP Trans. A Comput. Sci. Tech. Ifip Transactions B-applications in Technology = Ifip Trans B Ifip Transactions B-applications in Technology = Ifip Trans. B. Ifip Transactions C-communication Systems = Ifip Trans C Ifip Transactions C-communication Systems = Ifip Trans. C. Ifla Alp Project Report = Ifla Alp Proj Rep Ifla Alp Project Report = Ifla Alp Proj. Rep. Ifla Journal-international Federation of Library Associations = Ifla J-int Fed Libr Ifla Journal-international Federation of Library Associations = Ifla J-int. Fed. Libr. Ifla Publications = Ifla Publ Ifla Publications = Ifla Publ. Ifmbe Proceedings = Ifmbe Proc Ifmbe Proceedings = Ifmbe Proc. IFMBE proceedings = IFMBE Proc Iforest-biogeosciences and Forestry = Iforest Iforest-biogeosciences and Forestry = Iforest. Iformation Security and Cryptology - Icisc 2002 = Lect Notes Comput Sc Iformation Security and Cryptology - Icisc 2002 = Lect. Notes. Comput. Sc. Ifosfamide in The Treatment of Lung Cancer = Contr Oncol Ifosfamide in The Treatment of Lung Cancer = Contr. Oncol. IFO-Studien = IFO Stud Ifo Studien=Ifo Studien Ifo Survey Data in Business Cycle and Monetary Policy Analysis = Contribut Econ Ifo Survey Data in Business Cycle and Monetary Policy Analysis = Contribut. Econ. Ifsr International Series On System Science and Engineering = Ifsr Int Ser Syst Sc Ifsr International Series On System Science and Engineering = Ifsr Int. Ser. Syst. Sc. Ift Basic Symposium Series = Ift Bas Sym Ift Basic Symposium Series = Ift Bas. Sym. Igaku kenkyu. Acta medica = Igaku Kenkyu Igaku Kenkyu-acta Medica = Igaku Kenkyu Igaku Kenkyu-acta Medica = Igaku Kenkyu. Igaku Kenkyu (Acta Medica) = Igaku Kenkyu [Igakushi kenkyu] [Studies on history of medicine] = Igakushi Kenkyu Igaku to seibutsugaku. Medicine and biology = Igaku To Seibutsugaku Igaku to Seibutsugaku (Medicine and Biology) = Igaku To Seibutsugaku Iga Nephropathy: Pathogenesis and Treatment = Contrib Nephrol Iga Nephropathy: Pathogenesis and Treatment = Contrib. Nephrol. Iga Nephropathy : The 25th Year = Contrib Nephrol Iga Nephropathy : The 25th Year = Contrib. Nephrol. Iga Nephropathy Today = Contrib Nephrol Iga Nephropathy Today = Contrib. Nephrol. Igarss 2000: Ieee 2000 International Geoscience and Remote Sensing Symposium, Vol I - Vi, Proceedings = Int Geosci Remote Se Igarss 2000: Ieee 2000 International Geoscience and Remote Sensing Symposium, Vol I - Vi, Proceedings = Int. Geosci. Remote Se. Igarss 2001: Scanning The Present and Resolving The Future, Vols 1-7, Proceedings = Int Geosci Remote Se Igarss 2001: Scanning The Present and Resolving The Future, Vols 1-7, Proceedings = Int. Geosci. Remote. Se. Igarss 2002: Ieee International Geoscience and Remote Sensing Symposium and 24th Canadian Symposium On Remote Sensing, Vols I-vi, Proceedings = Int Geosci Remote Se Igarss 2002: Ieee International Geoscience and Remote Sensing Symposium and 24th Canadian Symposium On Remote Sensing, Vols I-vi, Proceedings = Int. Geosci. Remote Se. Igarss 2003: Ieee International Geoscience and Remote Sensing Symposium, Vols I - Vii, Proceedings = Int Geosci Remote Se Igarss 2003: Ieee International Geoscience and Remote Sensing Symposium, Vols I - Vii, Proceedings = Int. Geosci. Remote Se. Igarss 2004: Ieee International Geoscience and Remote Sensing Symposium Proceedings, Vols 1-7 = Int Geosci Remote Se Igarss 2004: Ieee International Geoscience and Remote Sensing Symposium Proceedings, Vols 1-7 = Int. Geosci. Remote Se. Igarss 2005: Ieee International Geoscience and Remote Sensing Symposium, Vols 1-8, Proceedings = Int Geosci Remote Se Igarss 2005: Ieee International Geoscience and Remote Sensing Symposium, Vols 1-8, Proceedings = Int. Geosci. Remote Se. Igarss: 2007 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-12 = Int Geosci Remote Se Igarss: 2007 Ieee International Geoscience and Remote Sensing Symposium, Vols 1-12 = Int. Geosci. Remote Se. Igarss 91 - Remote Sensing : Global Monitoring for Earth Management, Vols 1-4 = Int Geosci Remote Se Igarss 91 - Remote Sensing : Global Monitoring for Earth Management, Vols 1-4 = Int. Geosci. Remote Se. Igarss'93: Better Understanding of Earth Environment, Vols I-iv = Int Geosci Remote Se Igarss'93: Better Understanding of Earth Environment, Vols I-iv = Int. Geosci. Remote. Se. Igarss '94 - 1994 International Geoscience and Remote Sensing Symposium Volumes 1-4 = Int Geosci Remote Se Igarss '94 - 1994 International Geoscience and Remote Sensing Symposium Volumes 1-4 = Int. Geosci. Remote Se. Igarss '95 - 1995 International Geoscience and Remote Sensing Symposium, Vols 1-3 = Int Geosci Remote Se Igarss '95 - 1995 International Geoscience and Remote Sensing Symposium, Vols 1-3 = Int. Geosci. Remote Se. Igarss '96 - 1996 International Geoscience and Remote Sensing Symposium: Remote Sensing for A Sustainable Future, Vols I - Iv = Int Geosci Remote Se Igarss '96 - 1996 International Geoscience and Remote Sensing Symposium: Remote Sensing for A Sustainable Future, Vols I - Iv = Int. Geosci. Remote Se. Igarss '97 - 1997 International Geoscience and Remote Sensing Symposium, Proceedings Vols I-iv = Int Geosci Remote Se Igarss '97 - 1997 International Geoscience and Remote Sensing Symposium, Proceedings Vols I-iv = Int. Geosci. Remote Se. Igarss '98 - 1998 International Geoscience and Remote Sensing Symposium, Proceedings Vols 1-5 = Int Geosci Remote Se Igarss '98 - 1998 International Geoscience and Remote Sensing Symposium, Proceedings Vols 1-5 = Int. Geosci. Remote Se. Igbp Reports = Igbp Report Igbp Reports = Igbp Report. IGCC news = IGCC News Ige, Mast Cells and The Allergic Response = Ciba F Symp Ige, Mast Cells and The Allergic Response = Ciba. F. Symp. Igf-i and Igf Binding Proteins: Basic Research and Clinical Management = Endocrin Dev Igf-i and Igf Binding Proteins: Basic Research and Clinical Management = Endocrin. Dev. Igfs: Local Repair and Survival Factors Throughout Life Span = Res Perspect End Int Igfs: Local Repair and Survival Factors Throughout Life Span = Res. Perspect. End. Int. Igiena = Igiena Igiene e sanita pubblica. Collana di monografie = Ig Sanita Pubblica Collana Monogr Igiene e sanita pubblica = Ig Sanita Pubbl Igiene Moderna = Ig. Mod. Igm/galaxy Connection: The Distribution of Baryons At Z(equal)0 = Astrophys Space Sc L Igm/galaxy Connection: The Distribution of Baryons At Z(equal)0 = Astrophys. Space. Sc. L. Ihc 2006: Proceedings of The Xxvii International Horticultural Congress On Global Horticulture: Diversity and Harmony, Introduction = Acta Hortic Ihc 2006: Proceedings of The Xxvii International Horticultural Congress On Global Horticulture: Diversity and Harmony, Introduction = Acta. Hortic. Iheringia Serie Botanica = Iheringia Ser Bot Iheringia Serie Botanica = Iheringia Ser. Bot. Iheringia Serie Zoologia = Iheringia Ser Zool Iheringia Serie Zoologia = Iheringia Ser. Zool. Ihrem Originale Nachzudenken: Zu Lessings Ubersetzungen = Wolfenb Stud Aufklar Ihrem Originale Nachzudenken: Zu Lessings Ubersetzungen = Wolfenb. Stud. Aufklar. IHRIM = IHRIM IHRIM : the journal of the Institute of Health Record Information and Management = IHRIM Ihsah Seminaires & Colloques = Insah Sem C Ihsah Seminaires & Colloques = Insah. Sem. C. IIASA reports = IIASA Rep Iias/iisa Administration and Service 1930-2005 = Int I Adm Sci Monogr Iias/iisa Administration and Service 1930-2005 = Int. I. Adm. Sci. Monogr. Iic-international Review of Industrial Property and Copyright Law = Iic-int Rev Ind Prop Iic-international Review of Industrial Property and Copyright Law = Iic-int. Rev. Ind. Prop. IIC; international review of industrial property and copyright law = IIC Int Rev Ind Prop Copyr Law Iic-international Review of Intellectual Property and Competition Law = Iic-int Rev Intell P Iic-international Review of Intellectual Property and Competition Law = Iic-int. Rev. Intell. P. Iic Studies : Studies in Industrial Property and Copyright Law = Iic St Ind Iic Studies : Studies in Industrial Property and Copyright Law = Iic St. Ind. Iie Solutions = Iie Solutions Iie Transactions = Iie Trans Iie Transactions = Iie Trans. IIE Transactions = IIE Trans. Iii-nitride, Sic and Diamond Materials for Electronic Devices = Mat Res S C Iii-nitride, Sic and Diamond Materials for Electronic Devices = Mat. Res. S. C. Ii International Gtc Workshop: Science With Gtc 1st-light Instruments and The Lmt = Rev Mex Ast Astr Ii International Gtc Workshop: Science With Gtc 1st-light Instruments and The Lmt = Rev. Mex. Ast. Astr. Iii-v and Iv-iv Materials and Processing Challenges for Highly Integrated Microelectronics and Optoelectronics = Mater Res Soc Symp P Iii-v and Iv-iv Materials and Processing Challenges for Highly Integrated Microelectronics and Optoelectronics = Mater. Res. Soc. Symp. P. Iii-v Electronic and Photonic Device Fabrication and Performance = Mater Res Soc Symp P Iii-v Electronic and Photonic Device Fabrication and Performance = Mater. Res. Soc. Symp. P. Iii-v Heterostructures for Electronic / Photonic Devices = Mater Res Soc Symp P Iii-v Heterostructures for Electronic / Photonic Devices = Mater. Res. Soc. Symp. P. Iii-v Nitrides = Mater Res Soc Symp P Iii-v Nitrides = Mater. Res. Soc. Symp. P. IIPS newsletter = IIPS Newsl Iirb = I I R B Iirb = I. I. R. B. Iirb-institut International De Recherches Betteravieres = Iirb Iirb-institut International De Recherches Betteravieres = Iirb. Iiswc - 2005: Proceedings of The 2005 Ieee International Symposium On Workload Characterization = I S Workl Char Proc Iiswc - 2005: Proceedings of The 2005 Ieee International Symposium On Workload Characterization = I. S. Workl. Char. Proc. IIUM Journal of Economics and Management=IIUM J. Econ. Manage. Ii-vi Blue/green Laser Diodes = P Soc Photo-opt Ins Ii-vi Blue/green Laser Diodes = P. Soc. Photo-opt. Ins. Ii-vi Blue/green Light Emitters : Device Physics and Epitaxial Growth = Semiconduct Semimet Ii-vi Blue/green Light Emitters : Device Physics and Epitaxial Growth = Semiconduct. Semimet. Ii-vi Compounds and Semimagnetic Semiconductors = Mater Sci Forum Ii-vi Compounds and Semimagnetic Semiconductors = Mater. Sci. Forum. Ijcai-95 - Proceedings of The Fourteenth International Joint Conference On Artificial Intelligence, Vols 1 and 2 = Int Joint Conf Artif Ijcai-95 - Proceedings of The Fourteenth International Joint Conference On Artificial Intelligence, Vols 1 and 2 = Int. Joint Conf. Artif. Ijcai-97 - Proceedings of The Fifteenth International Joint Conference On Artificial Intelligence, Vols 1 and 2 = Int Joint Conf Artif Ijcai-97 - Proceedings of The Fifteenth International Joint Conference On Artificial Intelligence, Vols 1 and 2 = Int. Joint Conf. Artif. Ijcnn'01: International Joint Conference On Neural Networks, Vols 1-4, Proceedings = Ieee Ijcnn Ijcnn'01: International Joint Conference On Neural Networks, Vols 1-4, Proceedings = Ieee. Ijcnn. Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol I = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol I = Ieee. Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Ii = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Ii = Ieee. Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Iii = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Iii = Ieee. Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Iv = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Iv = Ieee. Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol V = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol V = Ieee. Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Vi = Ieee Ijcnn Ijcnn 2000: Proceedings of The Ieee-inns-enns International Joint Conference On Neural Networks, Vol Vi = Ieee. Ijcnn Ijcnn: 2009 International Joint Conference On Neural Networks, Vols 1- 6 = Ieee Ijcnn Ijcnn: 2009 International Joint Conference On Neural Networks, Vols 1- 6 = Ieee. Ijcnn. Ijcnn-90-wash Dc : International Joint Conference On Neural Networks, Vols 1 and 2 = Ieee Ijcnn Ijcnn-90-wash Dc : International Joint Conference On Neural Networks, Vols 1 and 2 = Ieee. Ijcnn. Ijcnn-91-seattle : International Joint Conference On Neural Networks, Vols 1 and 2 = Ieee Ijcnn Ijcnn-91-seattle : International Joint Conference On Neural Networks, Vols 1 and 2 = Ieee. Ijcnn. Ijcnn '93-nagoya : Proceedings of 1993 International Joint Conference On Neural Networks, Vols 1-3 = Ieee Ijcnn Ijcnn '93-nagoya : Proceedings of 1993 International Joint Conference On Neural Networks, Vols 1-3 = Ieee. Ijcnn Ijcnn International Joint Conference On Neural Networks, Vols 1-3 = Ieee Ijcnn Ijcnn International Joint Conference On Neural Networks, Vols 1-3 = Ieee. Ijcnn Ijs Studies in Judaica = Ijs Stud Jud Ijs Studies in Judaica = Ijs Stud. Jud. Iktisat Isletme Ve Finans = Iktisat Islet Finans Iktisat Isletme Ve Finans = Iktisat Islet. Finans Il-12 = Chem Immunol Il-12 = Chem. Immunol. Ilar Journal = Ilar J Ilar Journal = Ilar J. ILAR Journal = ILAR J. ILAR journal / National Research Council, Institute of Laboratory Animal Resources = ILAR J ILAR news = Ilar News "Il Bassini" = Bassini Il Cancro = Cancro Il Carrobbio. Rivista di studi bolognesi = Carrobbio Il Cervello; giornale di nevrologia = Cervello G Nevrol Il Corriere dei farmacisti = Corr Farm Il Diritto del lavoro = Dir Lav Ilerda. Instituto de estudios ilerdenses = Ilerda Iles En Partage: Haiti & Republique Dominicaine, Saint-martin, Timor = Villes Territ Iles En Partage: Haiti & Republique Dominicaine, Saint-martin, Timor = Villes. Territ. Il Farmaco; edizione pratica = Farmaco [Prat] Il Farmaco; edizione scientifica = Farmaco [Sci] Il Fegato = Fegato Il Fracastoro = Fracastoro Il Friuli medico = Friuli Med Il Giornale di chirurgia = G Chir Il Governo Dell Adattamento Dell Agricoltura Italiana : Istituzioni E Strumenti = Quad Riv Ec Il Governo Dell Adattamento Dell Agricoltura Italiana : Istituzioni E Strumenti = Quad. Riv. Ec. I & L-ideologies & Literature = I L-ideol Lit I & L-ideologies & Literature = I L-ideol. Lit. Iliria. Revistë arkeologjike = Iliria Illahee-journal for The Northwest Environment = Illahee Illahee-journal for The Northwest Environment = Illahee. Il Lattante = Lattante Illegal Drug Markets: From Research to Prevention Policy = Crime Prev Studies Illegal Drug Markets: From Research to Prevention Policy = Crime. Prev. Studies. Illimani = Illimani Illinois Agricultural Economics=Ill. Agr. Econ. Illinois Agricultural Experiment Station Bulletin = Illinois Aes Bull Illinois Agricultural Experiment Station Bulletin = Illinois Aes. Bull. Illinois bar journal = Ill Bar J Illinois Classical Studies = ICS Illinois classical studies = Ill Classic Stud Illinois Classical Studies = IllinClSt Illinois dental journal = Ill Dent J Illinois Dental Journal = Ill. Dent. J. Illinois Journal of Mathematics = Illinois J. Math. Illinois Journal of Mathematics = Illinois J Math Illinois Journal of Mathematics = Illinois J. Math. Illinois Law Review = Ill Law Rev Illinois Law Review = Ill. Law Rev. Illinois Medical Journal = Illinois Med J Illinois Medical Journal = Illinois Med. J. Illinois Research = Illinois Res Illinois Research = Illinois Res. Illinois research = Ill Res Illinois revised statutes / compiled and edited under Smith-Hurd classification. Illinois = Ill Revis Statut Ill Ill Illness and Healing Alternatives in Western Europe = Stud Social Hist Med Illness and Healing Alternatives in Western Europe = Stud. Social. Hist. Med. Ill-posed and Non-classical Problems of Mathematical Physics and Analysis, Proceedings = Inver Ill Posed Prob Ill-posed and Non-classical Problems of Mathematical Physics and Analysis, Proceedings = Inver. Ill. Posed. Prob. Ill-posed Variational Problems and Regularization Techniques = Lect Notes Econ Math Ill-posed Variational Problems and Regularization Techniques = Lect. Notes. Econ. Math. Illuminating Darkness: Approaches to Obscurity and Nothingness in Literature = Suom Tiedeakat Toim Illuminating Darkness: Approaches to Obscurity and Nothingness in Literature = Suom. Tiedeakat. Toim. Illuminating: Natural Light in Residential Architecture = Living Concepts Illuminating: Natural Light in Residential Architecture = Living. Concepts. Illumination and Source Engineering = P Soc Photo-opt Ins Illumination and Source Engineering = P. Soc. Photo-opt. Ins. Illusion of Accountability in The European Union = Routl Adv Eur Polit Illusion of Accountability in The European Union = Routl. Adv. Eur. Polit. Illusion of Conscious Will = Bradford Books Illusion of Conscious Will = Bradford. Books. Illusion of Linearity: From Analysis to Improvement = Math Educ Lib Illusion of Linearity: From Analysis to Improvement = Math. Educ. Lib. Il Mar Nero. Annali di archeologia e storia = MarNero Il Nuovo cimento della Societa italiana di fisica. C = Nuovo Cimento C Il Nuovo Cimento della Società Italiana di Fisica = Nuovo Cimento Soc. Ital. Fis. A (12) Il Nuovo Cimento della Società Italiana di Fisica = Nuovo Cimento Soc. Ital. Fis. B (12) Il Pensiero Economico Italiano=Il Pensiero Econ. Italiano Il Pensiero politico = Pensiero Polit Il pensiero politico: rivista di storia delle idee politiche e sociali = PPol Il Pisani : organo del Manicomio di Palermo = Pisani Il Policlinico. Sezione chirurgica = Policlinico [Chir] Il Policlinico. Sezione medica = Policlinico [Med] Il Policlinico. Sezione pratica = Policlinico [Prat] Il Politico=Il Politico Il Ponte = Ponte Il Progresso medico = Progr Med (Napoli) Il Risparmio=Il Risparmio ILSA journal of international law = ILSA J Int Law Il Sangue = Sangue Ilsc'99: Proceedings of The International Laser Safety Conference = Lia P Ilsc'99: Proceedings of The International Laser Safety Conference = Lia. P. Ilsi Monograph = Ilsi Monogr Ilsi Monograph = Ilsi Monogr. Il Torace = Torace Il Valsalva = Valsalva Il Veltro = Veltro Imac - Proceedings of The 16th International Modal Analysis Conference, Vols 1 and 2 = P Soc Photo-opt Ins Imac - Proceedings of The 16th International Modal Analysis Conference, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Imac - Proceedings of The 17th International Modal Analysis Conference, Vols I and Ii = Proc Spie Imac - Proceedings of The 17th International Modal Analysis Conference, Vols I and Ii = Proc. Spie. Imac - Proceedings of The 17th International Modal Analysis Conference, Vols I and Ii = P Soc Photo-opt Ins Imac - Proceedings of The 17th International Modal Analysis Conference, Vols I and Ii = P. Soc. Photo-opt. Ins. Imacs Annals On Computing and Applied Mathematics = Imacs Ann C Imacs Annals On Computing and Applied Mathematics = Imacs Ann. C. Imac-xviii: A Conference On Structural Dynamics, Vols 1 and 2, Proceedings = Proc Spie Imac-xviii: A Conference On Structural Dynamics, Vols 1 and 2, Proceedings = Proc. Spie. Imac-xviii: A Conference On Structural Dynamics, Vols 1 and 2, Proceedings = P Soc Photo-opt Ins Imac-xviii: A Conference On Structural Dynamics, Vols 1 and 2, Proceedings = P. Soc. Photo-opt. Ins. Image Acquisition and Scientific Imaging Systems = P Soc Photo-opt Ins Image Acquisition and Scientific Imaging Systems = P. Soc. Photo-opt. Ins. Image Algebra and Morphological Image Processing Iii = P Soc Photo-opt Ins Image Algebra and Morphological Image Processing Iii = P. Soc. Photo-opt. Ins. Image Algebra and Morphological Image Processing Ii = P Soc Photo-opt Ins Image Algebra and Morphological Image Processing Ii = P. Soc. Photo-opt. Ins. Image Algebra and Morphological Image Processing Iv = P Soc Photo-opt Ins Image Algebra and Morphological Image Processing Iv = P. Soc. Photo-opt. Ins. Image Algebra and Morphological Image Processing = P Soc Photo-opt Ins Image Algebra and Morphological Image Processing = P. Soc. Photo-opt. Ins. Image Algebra and Morphological Image Processing V = P Soc Photo-opt Ins Image Algebra and Morphological Image Processing V = P. Soc. Photo-opt. Ins. Image Analysis and Processing - Iciap 2005, Proceedings = Lect Notes Comput Sc Image Analysis and Processing - Iciap 2005, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Processing - Iciap 2009, Proceedings = Lect Notes Comput Sc Image Analysis and Processing - Iciap 2009, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Recognition, 2010, Pt Ii, Proceedings = Lect Notes Comput Sc Image Analysis and Recognition, 2010, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Recognition = Lect Notes Comput Sc Image Analysis and Recognition = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Proceedings = Lect Notes Comput Sc Image Analysis and Recognition, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Pt 1 = Lect Notes Comput Sc Image Analysis and Recognition, Pt 1 = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Pt 1, Proceedings = Lect Notes Comput Sc Image Analysis and Recognition, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Pt 2 = Lect Notes Comput Sc Image Analysis and Recognition, Pt 2 = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Pt 2, Proceedings = Lect Notes Comput Sc Image Analysis and Recognition, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Image Analysis and Recognition, Pt I, Proceedings = Lect Notes Comput Sc Image Analysis and Recognition, Pt I, Proceedings = Lect. Notes. Comput. Sc. Image Analysis Applications and Computer Graphics = Lect Notes Comput Sc Image Analysis Applications and Computer Graphics = Lect. Notes. Comput. Sc. Image Analysis, Proceedings = Lect Notes Comput Sc Image Analysis, Proceedings = Lect. Notes. Comput. Sc. Image and Geometry Processing for 3-d Cinematography = Geom Comput Image and Geometry Processing for 3-d Cinematography = Geom. Comput. Image and Information Systems: Applications and Opportunities = P Soc Photo-opt Ins Image and Information Systems: Applications and Opportunities = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Iii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Iii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Ii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Ii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Iv = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Iv = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Ix = Proc Spie Image and Signal Processing for Remote Sensing Ix = Proc. Spie. Image and Signal Processing for Remote Sensing Ix = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Ix = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Viii = Proc Spie Image and Signal Processing for Remote Sensing Viii = Proc. Spie. Image and Signal Processing for Remote Sensing Viii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Viii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Vii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Vii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Vi = Proc Spie Image and Signal Processing for Remote Sensing Vi = Proc. Spie. Image and Signal Processing for Remote Sensing Vi = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Vi = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing V = Proc Spie Image and Signal Processing for Remote Sensing V = Proc. Spie. Image and Signal Processing for Remote Sensing V = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing V = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Xiii = Proc Spie Image and Signal Processing for Remote Sensing Xiii = Proc. Spie. Image and Signal Processing for Remote Sensing Xiii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Xiii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Xii = Proc Spie Image and Signal Processing for Remote Sensing Xii = Proc. Spie. Image and Signal Processing for Remote Sensing Xii = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Xii = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing X = Proc Spie Image and Signal Processing for Remote Sensing X = Proc. Spie. Image and Signal Processing for Remote Sensing X = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing X = P. Soc. Photo-opt. Ins. Image and Signal Processing for Remote Sensing Xvi = Proc Spie Image and Signal Processing for Remote Sensing Xvi = Proc. Spie. Image and Signal Processing for Remote Sensing Xvi = P Soc Photo-opt Ins Image and Signal Processing for Remote Sensing Xvi = P. Soc. Photo-opt. Ins. Image and Signal Processing = Lect Notes Comput Sc Image and Signal Processing = Lect. Notes. Comput. Sc. Image and Signal Processing, Proceedings = Lect Notes Comput Sc Image and Signal Processing, Proceedings = Lect. Notes. Comput. Sc. Image and Video Communications and Processing 2000 = Proc Spie Image and Video Communications and Processing 2000 = Proc. Spie. Image and Video Communications and Processing 2000 = P Soc Photo-opt Ins Image and Video Communications and Processing 2000 = P. Soc. Photo-opt. Ins. Image and Video Communications and Processing 2003, Pts 1 and 2 = Proc Spie Image and Video Communications and Processing 2003, Pts 1 and 2 = Proc. Spie. Image and Video Communications and Processing 2003, Pts 1 and 2 = P Soc Photo-opt Ins Image and Video Communications and Processing 2003, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Image and Video Communications and Processing 2005, Pts 1 and 2 = Proc Spie Image and Video Communications and Processing 2005, Pts 1 and 2 = Proc. Spie. Image and Video Communications and Processing 2005, Pts 1 and 2 = P Soc Photo-opt Ins Image and Video Communications and Processing 2005, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Image and Video Compression for Multimedia Engineering: Fundamentals, Algorithms, and Standards, Second Edition = Image Process Ser Image and Video Compression for Multimedia Engineering: Fundamentals, Algorithms, and Standards, Second Edition = Image Process. Ser. Image and Video Compression = P Soc Photo-opt Ins Image and Video Compression = P. Soc. Photo-opt. Ins. Image and Video Processing Iii = Proc Spie Image and Video Processing Iii = Proc. Spie. Image and Video Processing Iii = P Soc Photo-opt Ins Image and Video Processing Iii = P. Soc. Photo-opt. Ins. Image and Video Processing Ii = P Soc Photo-opt Ins Image and Video Processing Ii = P. Soc. Photo-opt. Ins. Image and Video Processing Iv = P Soc Photo-opt Ins Image and Video Processing Iv = P. Soc. Photo-opt. Ins. Image and Video Processing = P Soc Photo-opt Ins Image and Video Processing = P. Soc. Photo-opt. Ins. Image and Video Retrieval = Lect Notes Comput Sc Image and Video Retrieval = Lect. Notes. Comput. Sc. Image and Video Retrieval, Proceedings = Lect Notes Comput Sc Image and Video Retrieval, Proceedings = Lect. Notes. Comput. Sc. Image and Vision Computing = Image Vision Comput Image and Vision Computing = Image Vision Comput. Image Capture, Formatting, and Display = P Soc Photo-opt Ins Image Capture, Formatting, and Display = P. Soc. Photo-opt. Ins. Imageclef: Experimental Evaluation in Visual Information Retrieval = Inform Retrieval Ser Imageclef: Experimental Evaluation in Visual Information Retrieval = Inform. Retrieval Ser. Image Communications and Workstations = P Soc Photo-opt Ins Image Communications and Workstations = P. Soc. Photo-opt. Ins. Image Compression and Encryption Technologies = P Soc Photo-opt Ins Image Compression and Encryption Technologies = P. Soc. Photo-opt. Ins. Image & Context = Image Context Image Display - Medical Imaging 1995 = P Soc Photo-opt Ins Image Display - Medical Imaging 1995 = P. Soc. Photo-opt. Ins. Image Display - Medical Imaging 1997 = P Soc Photo-opt Ins Image Display - Medical Imaging 1997 = P. Soc. Photo-opt. Ins. Image Display - Medical Imaging 1998 = P Soc Photo-opt Ins Image Display - Medical Imaging 1998 = P. Soc. Photo-opt. Ins. Image Display = P Soc Photo-opt Ins Image Display = P. Soc. Photo-opt. Ins. Image: E-learning, Understanding, Information Retrieval, Medical = Ser Softw Engn Knowl Image: E-learning, Understanding, Information Retrieval, Medical = Ser. Softw. Engn. Knowl. Image Extraction, Segmentation, and Recognition = P Soc Photo-opt Ins Image Extraction, Segmentation, and Recognition = P. Soc. Photo-opt. Ins. Image-guided Therapy Systems = Eng Med Biol Image-guided Therapy Systems = Eng. Med. Biol. Image Handling and Reproduction Systems Integration = P Soc Photo-opt Ins Image Handling and Reproduction Systems Integration = P. Soc. Photo-opt. Ins. Image = Image Image = Image (IN) Image Intensifiers and Applications; and Characteristics and Consequences of Space Debris and Near-earth Objects = P Soc Photo-opt Ins Image Intensifiers and Applications; and Characteristics and Consequences of Space Debris and Near-earth Objects = P. Soc. Photo-opt. Ins. Image Intensifiers and Applications Ii = P Soc Photo-opt Ins Image Intensifiers and Applications Ii = P. Soc. Photo-opt. Ins. Image Matching and Analysis = Proc Spie Image Matching and Analysis = Proc. Spie. Image Matching and Analysis = P Soc Photo-opt Ins Image Matching and Analysis = P. Soc. Photo-opt. Ins. Image Modeling of The Human Eye = Artech Hse Bioinf Bi Image Modeling of The Human Eye = Artech. Hse. Bioinf. Bi. Image Modeling = P Soc Photo-opt Ins Image Modeling = P. Soc. Photo-opt. Ins. Image of Cattle Sector and Its Products = Eaap Tech Image of Cattle Sector and Its Products = Eaap. Tech. Image of The Judaeo-christians in Ancient Jewish and Christian Literature = W U Neu Test Image of The Judaeo-christians in Ancient Jewish and Christian Literature = W. U. Neu. Test. Image Pattern Recognition: Synthesis and Analysis in Biometrics = Ser Mach Percept Art Image Pattern Recognition: Synthesis and Analysis in Biometrics = Ser. Mach. Percept. Art. Image Perception - Medical Imaging 1995 = P Soc Photo-opt Ins Image Perception - Medical Imaging 1995 = P. Soc. Photo-opt. Ins. Image Perception - Medical Imaging 1996 = P Soc Photo-opt Ins Image Perception - Medical Imaging 1996 = P. Soc. Photo-opt. Ins. Image Perception = P Soc Photo-opt Ins Image Perception = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Iii = Proc Spie Image Processing: Algorithms and Systems Iii = Proc. Spie. Image Processing: Algorithms and Systems Iii = P Soc Photo-opt Ins Image Processing: Algorithms and Systems Iii = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Ii = Proc Spie Image Processing: Algorithms and Systems Ii = Proc. Spie. Image Processing: Algorithms and Systems Ii = P Soc Photo-opt Ins Image Processing: Algorithms and Systems Ii = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Iv = Proc Spie Image Processing: Algorithms and Systems Iv = Proc. Spie. Image Processing: Algorithms and Systems Iv = P Soc Photo-opt Ins Image Processing: Algorithms and Systems Iv = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Ix = Proc Spie Image Processing: Algorithms and Systems Ix = Proc. Spie. Image Processing: Algorithms and Systems, Neural Networks, and Machine Learning = Proc Spie Image Processing: Algorithms and Systems, Neural Networks, and Machine Learning = Proc. Spie. Image Processing: Algorithms and Systems, Neural Networks, and Machine Learning = P Soc Photo-opt Ins Image Processing: Algorithms and Systems, Neural Networks, and Machine Learning = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems = Proc Spie Image Processing: Algorithms and Systems = Proc. Spie. Image Processing: Algorithms and Systems = P Soc Photo-opt Ins Image Processing: Algorithms and Systems = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Viii = Proc Spie Image Processing: Algorithms and Systems Viii = Proc. Spie. Image Processing: Algorithms and Systems Vii = Proc Spie Image Processing: Algorithms and Systems Vii = Proc. Spie. Image Processing: Algorithms and Systems Vii = P Soc Photo-opt Ins Image Processing: Algorithms and Systems Vii = P. Soc. Photo-opt. Ins. Image Processing: Algorithms and Systems Vi = Proc Spie Image Processing: Algorithms and Systems Vi = Proc. Spie. Image Processing: Algorithms and Systems V = Proc Spie Image Processing: Algorithms and Systems V = Proc. Spie. Image Processing: Algorithms and Systems V = P Soc Photo-opt Ins Image Processing: Algorithms and Systems V = P. Soc. Photo-opt. Ins. Image Processing Algorithms and Techniques Iii = P Soc Photo-opt Ins Image Processing Algorithms and Techniques Iii = P. Soc. Photo-opt. Ins. Image Processing Algorithms and Techniques Ii = P Soc Photo-opt Ins Image Processing Algorithms and Techniques Ii = P. Soc. Photo-opt. Ins. Image Processing Algorithms and Techniques = P Soc Photo-opt Ins Image Processing Algorithms and Techniques = P. Soc. Photo-opt. Ins. Image Processing and Communications Challenges 2 = Adv Intel Soft Compu Image Processing and Communications Challenges 2 = Adv. Intel. Soft. Compu. Image Processing and Interchange : Implementation and Systems = P Soc Photo-opt Ins Image Processing and Interchange : Implementation and Systems = P. Soc. Photo-opt. Ins. Image Processing and Pattern Recognition in Remote Sensing Ii = P Soc Photo-opt Ins Image Processing and Pattern Recognition in Remote Sensing Ii = P. Soc. Photo-opt. Ins. Image Processing and Pattern Recognition in Remote Sensing = P Soc Photo-opt Ins Image Processing and Pattern Recognition in Remote Sensing = P. Soc. Photo-opt. Ins. Image Processing, Biomedicine, Multimedia, Financial Engineering and Manufacturing, Vol 18 = Tsi Press S Image Processing, Biomedicine, Multimedia, Financial Engineering and Manufacturing, Vol 18 = Tsi. Press. S. Image Processing Iii = P Soc Photo-opt Ins Image Processing Iii = P. Soc. Photo-opt. Ins. Image Processing in Radiology: Current Applications = Med Radiol Diagn Ima Image Processing in Radiology: Current Applications = Med. Radiol. Diagn. Ima. Image Processing: Machine Vision Applications Iii = Proc Spie Image Processing: Machine Vision Applications Iii = Proc. Spie. Image Processing: Machine Vision Applications Iv = Proc Spie Image Processing: Machine Vision Applications Iv = Proc. Spie. Image Processing: Machine Vision Applications = Proc Spie Image Processing: Machine Vision Applications = Proc. Spie. Image Processing - Medical Imaging 1997, Pts 1 and 2 = P Soc Photo-opt Ins Image Processing - Medical Imaging 1997, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Image Processing of Edge and Surface Defects = Springer Ser Mater S Image Processing of Edge and Surface Defects = Springer. Ser. Mater. S. Image Processing = P Soc Photo-opt Ins Image Processing = P. Soc. Photo-opt. Ins. Image Processing Series = Image Process Ser Image Processing Series = Image Process. Ser. Image Processing, Signal Processing, and Synthetic Aperture Radar for Remote Sensing = P Soc Photo-opt Ins Image Processing, Signal Processing, and Synthetic Aperture Radar for Remote Sensing = P. Soc. Photo-opt. Ins. Image Propagation Through The Atmosphere = P Soc Photo-opt Ins Image Propagation Through The Atmosphere = P. Soc. Photo-opt. Ins. Image Quality and System Performance Iii = Proc Spie Image Quality and System Performance Iii = Proc. Spie. Image Quality and System Performance Iii = P Soc Photo-opt Ins Image Quality and System Performance Iii = P. Soc. Photo-opt. Ins. Image Quality and System Performance Ii = P Soc Photo-opt Ins Image Quality and System Performance Ii = P. Soc. Photo-opt. Ins. Image Quality and System Performance Iv = Proc Spie Image Quality and System Performance Iv = Proc. Spie. Image Quality and System Performance Iv = P Soc Photo-opt Ins Image Quality and System Performance Iv = P. Soc. Photo-opt. Ins. Image Quality and System Performance = P Soc Photo-opt Ins Image Quality and System Performance = P. Soc. Photo-opt. Ins. Image Quality and System Performance Viii = P Soc Photo-opt Ins Image Quality and System Performance Viii = P. Soc. Photo-opt. Ins. Image Quality and System Performance Vii = Proc Spie Image Quality and System Performance Vii = Proc. Spie. Image Quality and System Performance V = Proc Spie Image Quality and System Performance V = Proc. Spie. Image Reconstruction and Restoration Ii = P Soc Photo-opt Ins Image Reconstruction and Restoration Ii = P. Soc. Photo-opt. Ins. Image Reconstruction and Restoration = P Soc Photo-opt Ins Image Reconstruction and Restoration = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data Iii = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data Iii = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data Ii = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data Ii = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data Iv = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data Iv = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data Vi = Proc Spie Image Reconstruction From Incomplete Data Vi = Proc. Spie. Image Reconstruction From Incomplete Data Vi = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data Vi = P. Soc. Photo-opt. Ins. Image Reconstruction From Incomplete Data V = P Soc Photo-opt Ins Image Reconstruction From Incomplete Data V = P. Soc. Photo-opt. Ins. Images, Iconoclasm, and The Carolingians = Middle Ages Ser Images, Iconoclasm, and The Carolingians = Middle. Ages. Ser. Images; Marquette University dental reflections = Images Marquette Univ Dent Reflections Images; Marquette University Dental Reflections = Images. Marquette Univ. Dent. Reflections Images of Egypt in Early Biblical Literature = Beih Z Alttest Wiss Images of Egypt in Early Biblical Literature = Beih. Z. Alttest. Wiss. Images of Kabir = S Asian Stud Images of Kabir = S. Asian. Stud. Images of The South = South Anthr Images of The South = South Anthr. Images of The Twenty-first Century, Pts 1-6 = P Ieee Embs Images of The Twenty-first Century, Pts 1-6 = P. Ieee. Embs. Images of Westerners in Chinese and Japanese Literature = St Compar L Images of Westerners in Chinese and Japanese Literature = St. Compar. L. Image Storage and Retrieval Systems = P Soc Photo-opt Ins Image Storage and Retrieval Systems = P. Soc. Photo-opt. Ins. Image; The Journal of Nursing Scholarship = Image J. Nurs. Sch. IMAge - The Journal of Nursing Scholarship=Image J Nurs Sch;; Image Understanding and The Man-machine Interface Iii = P Soc Photo-opt Ins Image Understanding and The Man-machine Interface Iii = P. Soc. Photo-opt. Ins. Image Understanding for Aerospace Applications = P Soc Photo-opt Ins Image Understanding for Aerospace Applications = P. Soc. Photo-opt. Ins. Image Understanding in The 90s : Building Systems That Work = P Soc Photo-opt Ins Image Understanding in The 90s : Building Systems That Work = P. Soc. Photo-opt. Ins. Imaginatio Creatrix: The Pivotal Force of The Genesis/ontopoiesis of Human Life and Reality = Analecta Husserl Imaginatio Creatrix: The Pivotal Force of The Genesis/ontopoiesis of Human Life and Reality = Analecta. Husserl. Imagination and Critique: Two Rival Versions of Historical Inquiry = Philos Stud Contemp Imagination and Critique: Two Rival Versions of Historical Inquiry = Philos. Stud. Contemp. Imagination in The Later Middle Ages and Early Modern Times = Gr Stud Cult Imagination in The Later Middle Ages and Early Modern Times = Gr. Stud. Cult. Imaginationsprozesse: Verfahren Phantastischen Erzahlens in Franz Kafkas Fruhwerk = Quell Forsch Lit Kul Imaginationsprozesse: Verfahren Phantastischen Erzahlens in Franz Kafkas Fruhwerk = Quell. Forsch. Lit. Kul. Imagined Geography: Sierra Leonean Muslims in America = Contemp Ethnogr Imagined Geography: Sierra Leonean Muslims in America = Contemp. Ethnogr. Imaging and Illumination for Metrology and Inspection = P Soc Photo-opt Ins Imaging and Illumination for Metrology and Inspection = P. Soc. Photo-opt. Ins. Imaging and Printing in A Web 2.0 World; and Multimedia Content Access: Algorithms and Systems Iv = Proc Spie Imaging and Printing in A Web 2.0 World; and Multimedia Content Access: Algorithms and Systems Iv = Proc. Spie. Imaging and The Aging Brain = Ann Ny Acad Sci Imaging and The Aging Brain = Ann. Ny. Acad. Sci. Imaging At Radio Through Submillimeter Wavelengths, Proceedings = Astr Soc P Imaging At Radio Through Submillimeter Wavelengths, Proceedings = Astr. Soc. P. Imaging Beyond The Pinhole Camera = Comp Imag Vis Imaging Beyond The Pinhole Camera = Comp. Imag. Vis. Imaging Brain Structure and Function = Ann Ny Acad Sci Imaging Brain Structure and Function = Ann. Ny. Acad. Sci. Imaging, Cerebral Topography and Alzheimers Disease = Res Per Alz Imaging, Cerebral Topography and Alzheimers Disease = Res. Per. Alz. Imaging for Detection and Identification = Nato Sec Sci B Phys Imaging for Detection and Identification = Nato. Sec. Sci. B. Phys. Imaging for Forensics and Security: From Theory to Practice = Signals Commun Techn Imaging for Forensics and Security: From Theory to Practice = Signals. Commun. Techn. Imaging Humanity = Via Folios Imaging Humanity = Via. Folios. Imaging in Biological Research, Pt A = Method Enzymol Imaging in Biological Research, Pt A = Method. Enzymol. Imaging in Biological Research, Pt B = Method Enzymol Imaging in Biological Research, Pt B = Method. Enzymol. Imaging in Neurologic Rehabilitation = Comp Neur R Imaging in Neurologic Rehabilitation = Comp. Neur. R. Imaging in Pediatric Skeletal Trauma: Techniques and Applications = Med Radiol Diagn Ima Imaging in Pediatric Skeletal Trauma: Techniques and Applications = Med. Radiol. Diagn. Ima. Imaging in Percutaneous Musculoskeletal Interventions = Med Radiol Diagn Ima Imaging in Percutaneous Musculoskeletal Interventions = Med. Radiol. Diagn. Ima. Imaging in Radiation Therapy = Med Phys Mg Imaging in Radiation Therapy = Med. Phys. Mg. Imaging in Transplantation = Med Radiol Diagn Ima Imaging in Transplantation = Med. Radiol. Diagn. Ima. Imaging, Manipulation, and Analysis of Biomolecules and Cells: Fundamentals and Applications Iii = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules and Cells: Fundamentals and Applications Iii = P. Soc. Photo-opt. Ins. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Ii = Proc Spie Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Ii = Proc. Spie. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Ii = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Ii = P. Soc. Photo-opt. Ins. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Iv = Proc Spie Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Iv = Proc. Spie. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Iv = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Iv = P. Soc. Photo-opt. Ins. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Viii = Proc Spie Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Viii = Proc. Spie. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vii = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vii = P. Soc. Photo-opt. Ins. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vi = Proc Spie Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vi = Proc. Spie. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vi = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues Vi = P. Soc. Photo-opt. Ins. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues V = Proc Spie Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues V = Proc. Spie. Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues V = P Soc Photo-opt Ins Imaging, Manipulation, and Analysis of Biomolecules, Cells, and Tissues V = P. Soc. Photo-opt. Ins. Imaging, Mapping and Modelling Continental Lithosphere Extension and Breakup = Geol Soc Spec Publ Imaging, Mapping and Modelling Continental Lithosphere Extension and Breakup = Geol. Soc. Spec. Publ. Imaging Measurement Methods for Flow Analysis = Note N Fl Mech Mul D Imaging Measurement Methods for Flow Analysis = Note. N. Fl. Mech. Mul. D. Imaging Measurement Methods for Flow Analysis = Notes Numer Fluid Me Imaging Measurement Methods for Flow Analysis = Notes. Numer. Fluid. Me. Imaging Microstructures: Mathematical and Computational Challenges = Contemp Math Imaging Microstructures: Mathematical and Computational Challenges = Contemp. Math. Imaging of Bone Tumors and Tumor-like Lesions: Techniques and Applications = Med Radiol Diagn Ima Imaging of Bone Tumors and Tumor-like Lesions: Techniques and Applications = Med. Radiol. Diagn. Ima. Imaging of Complex Media With Acoustic and Seismic Waves = Top Appl Phys Imaging of Complex Media With Acoustic and Seismic Waves = Top. Appl. Phys. Imaging of Hypoxia = Dev Nuc Med Imaging of Hypoxia = Dev. Nuc. Med. Imaging of Orthopedic Sports Injuries = Med Radiol Diagn Ima Imaging of Orthopedic Sports Injuries = Med. Radiol. Diagn. Ima. Imaging Pelvic Floor Disorders, 2nd Edition = Med Radiol Diagn Ima Imaging Pelvic Floor Disorders, 2nd Edition = Med. Radiol. Diagn. Ima. Imaging Science Journal = Imaging Sci J Imaging Science Journal = Imaging Sci. J. Imaging Sciences and Display Technologies = P Soc Photo-opt Ins Imaging Sciences and Display Technologies = P. Soc. Photo-opt. Ins. Imaging Spectrometry - A Tool for Environmental Observations = Euro Cours Rem Sens Imaging Spectrometry - A Tool for Environmental Observations = Euro. Cours. Rem. Sens. Imaging Spectrometry Iii = P Soc Photo-opt Ins Imaging Spectrometry Iii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Ii = P Soc Photo-opt Ins Imaging Spectrometry Ii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Iv = P Soc Photo-opt Ins Imaging Spectrometry Iv = P. Soc. Photo-opt. Ins. Imaging Spectrometry Ix = P Soc Photo-opt Ins Imaging Spectrometry Ix = P. Soc. Photo-opt. Ins. Imaging Spectrometry of The Terrestrial Environment = P Soc Photo-opt Ins Imaging Spectrometry of The Terrestrial Environment = P. Soc. Photo-opt. Ins. Imaging Spectrometry = P Soc Photo-opt Ins Imaging Spectrometry = P. Soc. Photo-opt. Ins. Imaging Spectrometry Viii = Proc Spie Imaging Spectrometry Viii = Proc. Spie. Imaging Spectrometry Viii = P Soc Photo-opt Ins Imaging Spectrometry Viii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Vii = Proc Spie Imaging Spectrometry Vii = Proc. Spie. Imaging Spectrometry Vii = P Soc Photo-opt Ins Imaging Spectrometry Vii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Vi = Proc Spie Imaging Spectrometry Vi = Proc. Spie. Imaging Spectrometry Vi = P Soc Photo-opt Ins Imaging Spectrometry Vi = P. Soc. Photo-opt. Ins. Imaging Spectrometry V = P Soc Photo-opt Ins Imaging Spectrometry V = P. Soc. Photo-opt. Ins. Imaging Spectrometry Xiii = Proc Spie Imaging Spectrometry Xiii = Proc. Spie. Imaging Spectrometry Xiii = P Soc Photo-opt Ins Imaging Spectrometry Xiii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Xii = P Soc Photo-opt Ins Imaging Spectrometry Xii = P. Soc. Photo-opt. Ins. Imaging Spectrometry Xi = P Soc Photo-opt Ins Imaging Spectrometry Xi = P. Soc. Photo-opt. Ins. Imaging Spectrometry X = Proc Spie Imaging Spectrometry X = Proc. Spie. Imaging Spectrometry X = P Soc Photo-opt Ins Imaging Spectrometry X = P. Soc. Photo-opt. Ins. Imaging Spectrometry Xv = P Soc Photo-opt Ins Imaging Spectrometry Xv = P. Soc. Photo-opt. Ins. Imaging Spectroscopy : Fundamentals and Prospective Applications = Euro Cours Rem Sens Imaging Spectroscopy : Fundamentals and Prospective Applications = Euro. Cours. Rem. Sens. Imaging Spectroscopy of The Terrestrial Environment = P Soc Photo-opt Ins Imaging Spectroscopy of The Terrestrial Environment = P. Soc. Photo-opt. Ins. Imaging Systems Technology for Remote Sensing = P Soc Photo-opt Ins Imaging Systems Technology for Remote Sensing = P. Soc. Photo-opt. Ins. Imaging Technologies and Applications = P Soc Photo-opt Ins Imaging Technologies and Applications = P. Soc. Photo-opt. Ins. Imaging Technology and Telescopes = Proc Spie Imaging Technology and Telescopes = Proc. Spie. Imaging Technology and Telescopes = P Soc Photo-opt Ins Imaging Technology and Telescopes = P. Soc. Photo-opt. Ins. Imaging The Universe in Three Dimensions: Astrophysics With Advanced Multi-wavelength Imaging Devices = Astr Soc P Imaging The Universe in Three Dimensions: Astrophysics With Advanced Multi-wavelength Imaging Devices = Astr. Soc. P. Imagining Economics Otherwise: Encounters With Identity/difference = Routl Front Polit Ec Imagining Economics Otherwise: Encounters With Identity/difference = Routl. Front. Polit. Ec. Imagining Jewish Art: Encounters With The Masters in Chagall, Guston and Kitaj = Stud Comp Lit Ser Imagining Jewish Art: Encounters With The Masters in Chagall, Guston and Kitaj = Stud. Comp. Lit. Ser. Imagining Terrorism: The Rhetoric and Representation of Political Violence in Italy 1969-2009 = Italian Perspectives Imagining Terrorism: The Rhetoric and Representation of Political Violence in Italy 1969-2009 = Italian. Perspectives. Imagining Terrorism: The Rhetoric and Representation of Political Violence in Italy 1969-2009 = Ital Perspect Imagining Terrorism: The Rhetoric and Representation of Political Violence in Italy 1969-2009 = Ital. Perspect. Imago = Imago Imago mundi = Imago Mundi Imago Mundi-the International Journal for The History of Cartography = Imago Mundi Imago Mundi-the International Journal for The History of Cartography = Imago Mundi. Ima Journal of Applied Mathematics = Ima J Appl Math Ima Journal of Applied Mathematics = Ima J. Appl. Math. IMA Journal of Applied Mathematics = IMA J. Appl. Math. IMA Journal of Applied Mathematics = IMA J. Appl. Math. IMA Journal of Management Mathematics = IMA J. Manage. Math. Ima Journal of Management Mathematics = Ima J Manag Math Ima Journal of Management Mathematics = Ima J. Manag. Math. Ima Journal of Mathematical Control and Information = Ima J Math Control I Ima Journal of Mathematical Control and Information = Ima J. Math. Control I. IMA Journal of Mathematical Control and Information = IMA J. Math. Control Inf. IMA Journal of Mathematical Control and Information = IMA J. Math. Control Inform. IMA Journal of Mathematics Applied in Business and Industry = IMA J. Math. Appl. Bus. Indust. Ima Journal of Mathematics Applied in Medicine and Biology = Ima J Math Appl Med Ima Journal of Mathematics Applied in Medicine and Biology = Ima J. Math. Appl. Med. IMA journal of mathematics applied in medicine and biology = IMA J Math Appl Med Biol IMA Journal of Mathematics Applied in Medicine and Biology = IMA J. Math. Appl. Med. Biol. IMA Journal of Mathematics Applied In Medicine and Biology=IMA J Math Appl Med Biol;; Ima Journal of Numerical Analysis = Ima J Numer Anal Ima Journal of Numerical Analysis = Ima J. Numer. Anal. IMA Journal of Numerical Analysis = IMA J. Numer. Anal. Imare Conference = Imare Conf Imare Conference = Imare Conf. Imas 96 - Shipping and The Environment: Is Compromise Inevitable? Pt Ii = Imare Conf Imas 96 - Shipping and The Environment: Is Compromise Inevitable? Pt Ii = Imare. Conf. Imas 96 - Shipping and The Environment: Is Compromise Inevitable? Pt I = Imare Conf Imas 96 - Shipping and The Environment: Is Compromise Inevitable? Pt I = Imare. Conf. Ima Volumes in Mathematics and Its Applications = Ima V Math Ima Volumes in Mathematics and Its Applications = Ima V. Math. Ima Volumes in Mathematics and Its Applications = Ima Vol Math Appl Ima Volumes in Mathematics and Its Applications = Ima Vol. Math. Appl. IMCH newsletter / = ICMH Newsl Im Dienste von Wald und Landschaft = Im Dienste Wald Landsch. Imeche Conference Transactions = Imeche Conf Trans Imeche Conference Transactions = Imeche Conf. Trans. Imecs 2007: International Multiconference of Engineers and Computer Scientists, Vols I and Ii = Lect Notes Eng Comp Imecs 2007: International Multiconference of Engineers and Computer Scientists, Vols I and Ii = Lect. Notes. Eng. Comp. Imecs 2008: International Multiconference of Engineers and Computer Scientists, Vols I and Ii = Lect Notes Eng Comp Imecs 2008: International Multiconference of Engineers and Computer Scientists, Vols I and Ii = Lect. Notes. Eng. Comp. Imecs 2009: International Multi-conference of Engineers and Computer Scientists, Vols I and Ii = Lect Notes Eng Comp Imecs 2009: International Multi-conference of Engineers and Computer Scientists, Vols I and Ii = Lect. Notes. Eng. Comp. Imeko Technical Committee Events Series = Imeko Tc Imeko Technical Committee Events Series = Imeko Tc. Imf Economic Review = Imf Econ Rev Imf Economic Review = Imf Econ. Rev. Imf Policy Advice, Market Volatility, Commodity Price Rules and Other Essays = Carn Roch Conf Serie Imf Policy Advice, Market Volatility, Commodity Price Rules and Other Essays = Carn. Roch. Conf. Serie. IMF Staff Papers=IMF Staff Pap. Imf Staff Papers = Imf Staff Papers IMF survey. International Monetary Fund = IMF Surv IMHOTEP = IMHOTEP J. Afr. Math. Pures Appl. Imidazoline Receptors and Their Endogenous Ligands = Ann Ny Acad Sci Imidazoline Receptors and Their Endogenous Ligands = Ann. Ny. Acad. Sci. Imidazopyridines in Anxiety Disorders = Lers Monogr Imidazopyridines in Anxiety Disorders = Lers. Monogr. Imid/idmc 2006: The 6th International Meeting On Information Display/the 5th International Display Manufacturing Conference, Digest of Technical Papers = Proc Int Meet Inf Di Imid/idmc 2006: The 6th International Meeting On Information Display/the 5th International Display Manufacturing Conference, Digest of Technical Papers = Proc. Int. Meet. Inf. Di. Imitation in Animals and Artifacts = From Anim Animat Imitation in Animals and Artifacts = From. Anim. Animat. IMJ. Illinois medical journal = IMJ Ill Med J IMJ, Illinois Medical Journal = IMJ Ill. Med. J. Immanuel = Immanuel Immersive Projection Technology and Virtual Environments 2001 = Spring Eurograp Immersive Projection Technology and Virtual Environments 2001 = Spring. Eurograp. Immigrant Business = Migra Minor Immigrant Business = Migra. Minor. Immigrant Enterprise in Europe and The Usa = Routl Stud Mod World Immigrant Enterprise in Europe and The Usa = Routl. Stud. Mod. World. Immigrants and Immigration Policy: Individual Skills, Family Ties, and Group Identities = Cont Stu Ec Immigrants and Immigration Policy: Individual Skills, Family Ties, and Group Identities = Cont. Stu. Ec. Immigrants & minorities = Immigr Minor Immigrant Youth Who Excel: Globalization's Uncelebrated Heroes = Int Persp Educ Polic Immigrant Youth Who Excel: Globalization's Uncelebrated Heroes = Int. Persp. Educ. Polic. Immigration and Bureaucratic Control = Lang Power Soc Proce Immigration and Bureaucratic Control = Lang. Power. Soc. Proce. Immigration, Citizenship, and The Welfare State in Germany and The United States, Pt A = Ind Dev Soc Immigration, Citizenship, and The Welfare State in Germany and The United States, Pt A = Ind. Dev. Soc. Immigration, Citizenship, and The Welfare State in Germany and The United States, Pt B = Ind Dev Soc Immigration, Citizenship, and The Welfare State in Germany and The United States, Pt B = Ind. Dev. Soc. Immigration, Crime and Justice = Sociol Crime Law Dev Immigration, Crime and Justice = Sociol. Crime Law. Dev. Immigration = Res Labor E Immigration = Res. Labor. E. Immobilisation of Dna On Chips Ii = Top Curr Chem Immobilisation of Dna On Chips Ii = Top. Curr. Chem. Immobilisation of Dna On Chips I = Top Curr Chem Immobilisation of Dna On Chips I = Top. Curr. Chem. Immobilized Catalysts = Top Curr Chem Immobilized Catalysts = Top. Curr. Chem. Immobilized Cells: Basics and Applications = Progr Biotechnol Immobilized Cells: Basics and Applications = Progr. Biotechnol. Immune Mechanisms and Disease = Ann Ny Acad Sci Immune Mechanisms and Disease = Ann. Ny. Acad. Sci. Immune Mechanisms in Inflammatory Bowel Disease = Adv Exp Med Biol Immune Mechanisms in Inflammatory Bowel Disease = Adv. Exp. Med. Biol. Immune Mechanisms of Pain and Analgesia = Adv Exp Med Biol Immune Mechanisms of Pain and Analgesia = Adv. Exp. Med. Biol. Immune-mediated Diseases: From Theory to Therapy = Adv Exp Med Biol Immune-mediated Diseases: From Theory to Therapy = Adv. Exp. Med. Biol. Immune-mediated Neuromuscular Diseases = Front Neurol Neurosc Immune-mediated Neuromuscular Diseases = Front. Neurol. Neurosc. Immune Receptors: Methods and Protocols = Methods Mol Biol Immune Receptors: Methods and Protocols = Methods Mol. Biol. Immune Response to Viral Infections = Adv Exp Med Biol Immune Response to Viral Infections = Adv. Exp. Med. Biol. Immunitat und Infektion = Immun Infekt Immunitat und Infektion = Immun. Infekt. Immunitat Und Infektion = Immun Infekt Immunitat Und Infektion = Immun. Infekt. Immunity & ageing : I & A = Immun Ageing Immunity=Immunity;; Immunity = Immunity Immunity to and Prevention of Herpes Zoster = Arch Vir S Immunity to and Prevention of Herpes Zoster = Arch. Vir. S. Immuno-analyse & Biologie Specialisee = Immuno-anal Biol Spe Immuno-analyse & Biologie Specialisee = Immuno-anal. Biol. Spe. Immunoanalysis of Agrochemicals = Acs Sym Ser Immunoanalysis of Agrochemicals = Acs. Sym. Ser. Immunoassays for Residue Analysis = Acs Sym Ser Immunoassays for Residue Analysis = Acs. Sym. Ser. Immunoassays for Trace Chemical Analysis = Acs Sym Ser Immunoassays for Trace Chemical Analysis = Acs. Sym. Ser. Immunobiology and Prophylaxis of Human Herpesvirus Infections = Adv Exp Med Biol Immunobiology and Prophylaxis of Human Herpesvirus Infections = Adv. Exp. Med. Biol. Immunobiology=Immunobiology;; Immunobiology = Immunobiology Immunobiology of Bacterial Cpg-dna = Curr Top Microbiol Immunobiology of Bacterial Cpg-dna = Curr. Top. Microbiol. Immunobiology of Natural Killer Cell Receptors = Curr Top Microbiol Immunobiology of Natural Killer Cell Receptors = Curr. Top. Microbiol. Immunobiology of Proteins and Peptides Iii = Adv Exp Med Biol Immunobiology of Proteins and Peptides Iii = Adv. Exp. Med. Biol. Immunobiology of Proteins and Peptides Vi = Adv Exp Med Biol Immunobiology of Proteins and Peptides Vi = Adv. Exp. Med. Biol. Immunobiology of Proteins and Peptides Vii: Unwanted Immune Responses = Adv Exp Med Biol Immunobiology of Proteins and Peptides Vii: Unwanted Immune Responses = Adv. Exp. Med. Biol. Immunobiology of Proteins and Peptides V : Vaccines = Adv Exp Med Biol Immunobiology of Proteins and Peptides V : Vaccines = Adv. Exp. Med. Biol. Immunobiology. Supplement = Immunobiol Suppl Immunobiology. Supplement = Immunobiol. Suppl. Immunochemical Methods for Environmental Analysis = Acs Sym Ser Immunochemical Methods for Environmental Analysis = Acs. Sym. Ser. Immunochemical Technology for Environmental Applications = Acs Sym Ser Immunochemical Technology for Environmental Applications = Acs. Sym. Ser. Immunochemistry = Immunochemistry Immunocontraception = Front Endocrinol Immunocontraception = Front. Endocrinol. Immunocytochemical Aspects of Platelet Membrane Glycoproteins and Adhesive Proteins During Activation = Prog Histochem Cytoc Immunocytochemical Aspects of Platelet Membrane Glycoproteins and Adhesive Proteins During Activation = Prog. Histochem. Cytoc. Immunocytochemical Methods and Protocols, Third Edition = Methods Mol Biol Immunocytochemical Methods and Protocols, Third Edition = Methods Mol. Biol. Immunodeficiency = Immunodeficiency Immunodeficiency reviews = Immunodefic Rev Immunodeficiency Reviews = Immunodefic. Rev. Immunodeficient Animals: Models for Cancer Research = Contr Oncol Immunodeficient Animals: Models for Cancer Research = Contr. Oncol. Immunodeficient Mice in Oncology = Contr Oncol Immunodeficient Mice in Oncology = Contr. Oncol. Immunoelectron Microscopy: Methods and Protocols = Methods Mol Biol Immunoelectron Microscopy: Methods and Protocols = Methods Mol. Biol. Immunoendocrinology: Scientific and Clinical Aspects = Contemp Endocrinol S Immunoendocrinology: Scientific and Clinical Aspects = Contemp. Endocrinol. S. Immunogenetics: Advances and Education = Nato Asi 3 High Tech Immunogenetics: Advances and Education = Nato. Asi. 3. High. Tech. Immunogenetics=Immunogenetics;; Immunogenetics = Immunogenetics Immunogenicity = Ucla Sym Bi Immunogenicity = Ucla. Sym. Bi. Immunoglobulin Gene Expression in Development and Disease = Ann Ny Acad Sci Immunoglobulin Gene Expression in Development and Disease = Ann. Ny. Acad. Sci. Immunohematology / American Red Cross = Immunohematol Immunoinformatics = Immunomics Rev Immunoinformatics = Immunomics. Rev. Immunologia clinica = Immunol Clin Immunological Adjuvants and Vaccines = Nato Adv Sci I A-lif Immunological Adjuvants and Vaccines = Nato. Adv. Sci. I. A-lif. Immunological Alterations in Psychiatric Diseases = Adv Biol P Immunological Alterations in Psychiatric Diseases = Adv. Biol. P. Immunological and Pharmacological Aspects of Atopic and Contact Eczema = Pharm Skin Immunological and Pharmacological Aspects of Atopic and Contact Eczema = Pharm. Skin. Immunological communications = Immunol Commun Immunological Communications = Immunol Commun Immunological Communications = Immunol. Commun. Immunological Diseases of Liver and Gut = Falk Symp Immunological Diseases of Liver and Gut = Falk. Symp. Immunological investigations = Immunol Invest Immunological Investigations=Immunol Invest;; Immunological Investigations = Immunol Invest Immunological Investigations = Immunol. Invest. Immunological Mechanisms in Asthma and Allergic Diseases = Chem Immunol Immunological Mechanisms in Asthma and Allergic Diseases = Chem. Immunol. Immunological, Metabolic and Infectious Aspects of Liver Transplantation = Tr Adv Liv Immunological, Metabolic and Infectious Aspects of Liver Transplantation = Tr. Adv. Liv. Immunological Recognition, Pts 1 and 2 = Cold Sh Q B Immunological Recognition, Pts 1 and 2 = Cold. Sh. Q. B. Immunological reviews = Immunol Rev Immunological Reviews=Immunol Rev;; Immunological Reviews = Immunol Rev Immunological Reviews = Immunol. Rev. Immunological Synapse = Curr Top Microbiol Immunological Synapse = Curr. Top. Microbiol. Immunological Tolerance = Ciba F Symp Immunological Tolerance = Ciba. F. Symp. Immunologic Diseases of The Ear = Ann Ny Acad Sci Immunologic Diseases of The Ear = Ann. Ny. Acad. Sci. Immunologic Mechanisms in Neurologic and Psychiatric Disease = Res P Arnmd Immunologic Mechanisms in Neurologic and Psychiatric Disease = Res. P. Arnmd. Immunologic Perspectives in Chronic Renal Failure = Contrib Nephrol Immunologic Perspectives in Chronic Renal Failure = Contrib. Nephrol. Immunologic research = Immunol Res Immunologic Research=Immunol Res;; Immunologic Research = Immunol Res Immunologic Research = Immunol. Res. Immunologist = Immunologist Immunology and Allergy Clinics of North America = Immunol Allergy Clin Immunology and Allergy Clinics of North America = Immunol. Allergy Clin. Immunology and allergy clinics of North America = Immunol Allergy Clin North Am Immunology and cell biology = Immunol Cell Biol Immunology and Cell Biology=Immunol Cell Biol;; Immunology and Cell Biology = Immunol Cell Biol Immunology and Cell Biology = Immunol. Cell Biol. Immunology and Developmental Biology of The Chicken = Curr Top Microbiol Immunology and Developmental Biology of The Chicken = Curr. Top. Microbiol. Immunology and Immune System Disorders = Immunol Immune Syst Immunology and Immune System Disorders = Immunol. Immune Syst. Immunology and Immunopathogenesis of Malaria = Curr Top Microbiol Immunology and Immunopathogenesis of Malaria = Curr. Top. Microbiol. Immunology and Liver = Falk Symp Immunology and Liver = Falk. Symp. Immunology, Endocrine & Metabolic Agents in Medicinal Chemistry = Immunol., Endocr. Metab. Agents Med. Chem. Immunology=Immunology;; Immunology = Immunology Immunology letters = Immunol Lett Immunology Letters=Immunol Lett;; Immunology Letters = Immunol Lett Immunology Letters = Immunol. Lett. Immunology & Liver = Falk Symp Immunology & Liver = Falk. Symp. Immunology of Diabetes: Autoimmune Mechanisms and The Prevention and Cure of Type 1 Diabetes = Ann Ny Acad Sci Immunology of Diabetes: Autoimmune Mechanisms and The Prevention and Cure of Type 1 Diabetes = Ann. Ny. Acad. Sci. Immunology of Diabetes Iii = Ann Ny Acad Sci Immunology of Diabetes Iii = Ann. Ny. Acad. Sci. Immunology of Diabetes Ii: Pathogenesis From Mouse to Man = Ann Ny Acad Sci Immunology of Diabetes Ii: Pathogenesis From Mouse to Man = Ann. Ny. Acad. Sci. Immunology of Diabetes Iv: Progress in Our Understanding = Ann Ny Acad Sci Immunology of Diabetes Iv: Progress in Our Understanding = Ann. Ny. Acad. Sci. Immunology of Diabetes V: From Bench to Bedside = Ann Ny Acad Sci Immunology of Diabetes V: From Bench to Bedside = Ann. Ny. Acad. Sci. Immunology of Infection, Second Edition = Method Microbiol Immunology of Infection, Second Edition = Method. Microbiol. Immunology of Infection, Third Edition = Method Microbiol Immunology of Infection, Third Edition = Method. Microbiol. Immunology of Intracellular Parasitism = Chem Immunol Immunology of Intracellular Parasitism = Chem. Immunol. Immunology of Silicones = Curr Top Microbiol Immunology of Silicones = Curr. Top. Microbiol. Immunology of Type 1 Diabetes, Second Edition = Adv Exp Med Biol Immunology of Type 1 Diabetes, Second Edition = Adv. Exp. Med. Biol. Immunology, Phenotype First: How Mutations Have Established New Principles and Pathways in Immunology = Curr Top Microbiol Immunology, Phenotype First: How Mutations Have Established New Principles and Pathways in Immunology = Curr. Top. Microbiol. Immunology series = Immunol Ser Immunology Series=Immunol Ser;; Immunology Series = Immunol Ser Immunology Series = Immunol. Ser. Immunology. Supplement=Immunol Suppl;; Immunology. Supplement = Immunol Suppl Immunology. Supplement = Immunol. Suppl. Immunology today = Immunol Today Immunology Today=Immunol Today;; Immunology Today = Immunol Today Immunology Today = Immunol. Today Immunome research = Immunome Res Immunomethods = Immunomethods ImmunoMethods = Immunomethods Immunomics Reviews = Immunomics Rev Immunomics Reviews = Immunomics Rev. Immunomodulating Drugs = Ann Ny Acad Sci Immunomodulating Drugs = Ann. Ny. Acad. Sci. Immunoparasitology Today-a Combined Issue of Immunology Today and Parasitology Today = Immunoparasitol Tod Immunoparasitology Today-a Combined Issue of Immunology Today and Parasitology Today = Immunoparasitol. Tod. Immunopathogenetic Aspects of Disease Induced By Helminth Parasites = Chem Immunol Immunopathogenetic Aspects of Disease Induced By Helminth Parasites = Chem. Immunol. Immunopharmacology and immunotoxicology = Immunopharmacol Immunotoxicol Immunopharmacology and Immunotoxicology=Immunopharmacol Immunotoxicol;; Immunopharmacology and Immunotoxicology = Immunopharmacol. Immunotoxicol. Immunopharmacology and Immunotoxicology = Immunopharm Immunot Immunopharmacology and Immunotoxicology = Immunopharm. Immunot. Immunopharmacology=Immunopharmacology;; Immunopharmacology = Immunopharmacology Immunoreceptor Tyrosine-based Inhibition Motifs = Curr Top Microbiol Immunoreceptor Tyrosine-based Inhibition Motifs = Curr. Top. Microbiol. Immunoregulation in Inflammatory Bowel Diseases - Current Understanding and Innovation = Falk Symp Immunoregulation in Inflammatory Bowel Diseases - Current Understanding and Innovation = Falk. Symp. Immunoscintigraphy = Int Congr Ser Immunoscintigraphy = Int. Congr. Ser. Immunosuppressive and Antiinflammatory Drugs = Ann Ny Acad Sci Immunosuppressive and Antiinflammatory Drugs = Ann. Ny. Acad. Sci. Immunotechnology : an international journal of immunological engineering = Immunotechnology Immunotechnology=Immunotechnology;; Immunotechnology = Immunotechnology Immunotechnology = Portl Pr P Immunotechnology = Portl. Pr. P. Immunotherapy: Activation, Suppression and Treatments = Immunol Immune Syst Immunotherapy: Activation, Suppression and Treatments = Immunol. Immune. Syst. Immunotherapy = Immunotherapy Immunotherapy = Immunotherapy-uk Immunotherapy = Immunotherapy-uk. Immunotherapy in 2020 = Ernst Schering Found Immunotherapy in 2020 = Ernst. Schering. Found. Immunotherapy of Cancer: Methods and Protocols = Methods Mol Biol Immunotherapy of Cancer: Methods and Protocols = Methods Mol. Biol. Immunotherapy of Infections = Infec Dis T Immunotherapy of Infections = Infec. Dis. T. Immunotoxicity Testing: Methods and Protocols = Methods Mol Biol Immunotoxicity Testing: Methods and Protocols = Methods Mol. Biol. Im Nebenraum Des Textes: Regiebemerkungen in Dramen Des 18, Jahrhunderts = Theatron Im Nebenraum Des Textes: Regiebemerkungen in Dramen Des 18, Jahrhunderts = Theatron. Impact and Dynamic Fracture of Polymers and Composites = Esis Publ Impact and Dynamic Fracture of Polymers and Composites = Esis. Publ. Impact Loading of Lightweight Structures = Wit Trans Eng Sci Impact Loading of Lightweight Structures = Wit. Trans. Eng. Sci. Impact Markers in The Stratigraphic Record = Impact Stud Impact Markers in The Stratigraphic Record = Impact Stud. Impact, Monitoring and Management of Environmental Pollution = Pollut Sci Technol A Impact, Monitoring and Management of Environmental Pollution = Pollut. Sci. Technol. A. Impact of Arbuscular Mycorrhizas On Sustainable Agriculture and Natural Ecosystems = Adv Lif Sci Impact of Arbuscular Mycorrhizas On Sustainable Agriculture and Natural Ecosystems = Adv. Lif. Sci. Impact of Biotechnology in Agriculture = Curr Plant Sci Biot Impact of Biotechnology in Agriculture = Curr. Plant. Sci. Biot. Impact of Biotechnology On Autoimmunity = Med Sci Symp Ser Impact of Biotechnology On Autoimmunity = Med. Sci. Symp. Ser. Impact of Carbon Dioxide, Trace Gases, and Climate Change On Global Agriculture = Asa Spec P Impact of Carbon Dioxide, Trace Gases, and Climate Change On Global Agriculture = Asa. Spec. P. Impact of Climate Change On European Lakes = Aquat Ecol Ser Impact of Climate Change On European Lakes = Aquat. Ecol. Ser. Impact of Climate Change On Regional Systems: A Comprehensive Analysis of California = New Horiz Environ Ec Impact of Climate Change On Regional Systems: A Comprehensive Analysis of California = New. Horiz. Environ. Ec. Impact of Collective Bargaining On Higher Education: A Twenty Year Retrospective = P A Con Nat Impact of Collective Bargaining On Higher Education: A Twenty Year Retrospective = P. A Con. Nat. Impact of Comparative Education Research On Institutional Theory = Int Persp Educ Soc Impact of Comparative Education Research On Institutional Theory = Int. Persp. Educ. Soc. Impact of Computer Supported Technologies On Information Systems Development = Ifip Trans A Impact of Computer Supported Technologies On Information Systems Development = Ifip. Trans. A. Impact of Desert Dust Across The Mediterranean = Envir Sci Tech Lib Impact of Desert Dust Across The Mediterranean = Envir. Sci. Tech. Lib. Impact of Ecological Changes On Tropical Animal Health and Disease Control = Ann Ny Acad Sci Impact of Ecological Changes On Tropical Animal Health and Disease Control = Ann. Ny. Acad. Sci. Impact of Electron and Scanning Probe Microscopy On Materials Research = Nato Adv Sci I E-app Impact of Electron and Scanning Probe Microscopy On Materials Research = Nato. Adv. Sci. I. E-app. Impact of Electronic Publishing On The Academic Community = Wenn Gr Int Impact of Electronic Publishing On The Academic Community = Wenn. Gr. Int. Impact of Emerging Zoonotic Diseases On Animal Health = Ann Ny Acad Sci Impact of Emerging Zoonotic Diseases On Animal Health = Ann. Ny. Acad. Sci. Impact of Environmental Variability On Ecological Systems = Peter Yodzis Fund Ec Impact of Environmental Variability On Ecological Systems = Peter. Yodzis. Fund. Ec. Impact of European Integration On Regional Structural Change and Cohesion = Routl Stud Eur Econ Impact of European Integration On Regional Structural Change and Cohesion = Routl. Stud. Eur. Econ. Impact of Fdi On Economic Growth: An Analysis for The Transition Countries of Central and Eastern Europe = Contrib Econ Impact of Fdi On Economic Growth: An Analysis for The Transition Countries of Central and Eastern Europe = Contrib. Econ. Impact of Globalization On The World's Poor: Transmission Mechanisms = Stud Dev Econ Policy Impact of Globalization On The World's Poor: Transmission Mechanisms = Stud. Dev. Econ. Policy. Impact of Governments On East-west Economic Relations = E-w Eur Ec Impact of Governments On East-west Economic Relations = E-w. Eur. Ec. Impact of Gravitional Lensing On Cosmology = Iau Symp Impact of Gravitional Lensing On Cosmology = Iau. Symp. Impact of Heavy Metals On The Environment = Trace Metals Other Impact of Heavy Metals On The Environment = Trace. Metals Other. Impact of Hst On European Astronomy = Astrophysics Space Impact of Hst On European Astronomy = Astrophysics. Space. Impact of Human Activity On Groundwater Dynamics = Iahs-aish P Impact of Human Activity On Groundwater Dynamics = Iahs-aish. P. Impact of International Debt Relief = Routl Stud Dev Econ Impact of International Debt Relief = Routl. Stud. Dev. Econ. Impact of International Trade Wages = Nber Conf R Impact of International Trade Wages = Nber. Conf. R. Impact of Investments On An Emerging Economy: Models and Forecasts. The Case of Romania = Econ Iss Probl Persp Impact of Investments On An Emerging Economy: Models and Forecasts. The Case of Romania = Econ. Iss. Probl. Persp. Impact of Land-use Change On Nutrient Loads From Diffuse Sources = Iahs-aish P Impact of Land-use Change On Nutrient Loads From Diffuse Sources = Iahs-aish. P. Impact of Large Scale Near-ir Sky Surveys = Astrophys Space Sc L Impact of Large Scale Near-ir Sky Surveys = Astrophys. Space. Sc. L. Impact of Large-scale Surveys On Pulsating Star Research = Astr Soc P Impact of Large-scale Surveys On Pulsating Star Research = Astr. Soc. P. Impact of Local Library Systems On The National Networking Environment = Netw Plan P Impact of Local Library Systems On The National Networking Environment = Netw. Plan. P. Impact of Long-term Monitoring On Variable Star Research = Nato Adv Sci Inst Se Impact of Long-term Monitoring On Variable Star Research = Nato. Adv. Sci. Inst. Se. Impact of Maternal Nutrition On The Offspring = Nestle Nutr Works Se Impact of Maternal Nutrition On The Offspring = Nestle. Nutr. Works. Se. Impact of Medical Cost Offset On Practice and Research: Making It Work for You = Hlthc Util Impact of Medical Cost Offset On Practice and Research: Making It Work for You = Hlthc. Util. Impact of Minor Bodies of Our Solar System On Planets and Their Middle and Upper Atmosphere = Adv Space Res Impact of Minor Bodies of Our Solar System On Planets and Their Middle and Upper Atmosphere = Adv. Space. Res. Impact of Minor Bodies of Our Solar System On Planets and Their Middle and Upper Atmosphere = Adv Space Res-series Impact of Minor Bodies of Our Solar System On Planets and Their Middle and Upper Atmosphere = Adv. Space. Res-series. Impact of Nitrogen Deposition On Natural and Semi-natural Ecosystems = Environm Pollut Ser Impact of Nitrogen Deposition On Natural and Semi-natural Ecosystems = Environm. Pollut. Ser. Impact of Nonlinearities On Fiber Optic Communications = Opt Fiber Commun Rep Impact of Nonlinearities On Fiber Optic Communications = Opt. Fiber Commun. Rep. Impact of Perestroika On Soviet Law = Law East E Impact of Perestroika On Soviet Law = Law East. E. Impact of Pollution On Animal Products = Nato Sci Peace Secur Impact of Pollution On Animal Products = Nato. Sci. Peace. Secur. Impact of Radical Right-wing Parties in West European Democracies = Eur Transit-nyu Eur Impact of Radical Right-wing Parties in West European Democracies = Eur. Transit-nyu. Eur. Impact of Recent Advances in Processing of Ceramic Superconductors = Ceram Trans Impact of Recent Advances in Processing of Ceramic Superconductors = Ceram. Trans. Impact of Reform Instruction On Student Mathematics Achievement = Stud Math Think Lear Impact of Reform Instruction On Student Mathematics Achievement = Stud. Math. Think. Lear. Impact of science on society = Impact Sci Soc Impact of Science on Society = Impact Sci. Soc. Impact of Science On Society = Impact Sci Soc Impact of Science On Society = Impact Sci. Soc. Impact of Science on Society=Impact Sci. Society Impact of State and National Standards On K-12 Science Teaching = Res Sci Educ Ser Impact of State and National Standards On K-12 Science Teaching = Res. Sci. Educ. Ser. Impact of Structural Changes On Territorial Development in Europe = Igipz Pan C Impact of Structural Changes On Territorial Development in Europe = Igipz. Pan. C. Impact of Technology On Sports Ii = Proc Monogr Eng Wate Impact of Technology On Sports Ii = Proc. Monogr. Eng. Wate. Impact of Technology On Successful Aging = Societ Impact Aging Impact of Technology On Successful Aging = Societ. Impact Aging Impact of Telemedicine On Health Care Management = St Heal T Impact of Telemedicine On Health Care Management = St. Heal. T. Impact of Telemedicine On Health Care Management = Stud Health Technol Impact of Telemedicine On Health Care Management = Stud. Health Technol. Impact of The Environment On Human Migration in Eurasia = Nato Sci S Ss Iv Ear Impact of The Environment On Human Migration in Eurasia = Nato. Sci. S. Ss. Iv. Ear. Impact of The Gravity Level On Materials Processing and Fluid Dynamics = Adv Space Res Impact of The Gravity Level On Materials Processing and Fluid Dynamics = Adv. Space. Res. Impact of The Gravity Level On Materials Processing and Fluid Dynamics = Adv Space Res-series Impact of The Gravity Level On Materials Processing and Fluid Dynamics = Adv. Space. Res-series. Impact of The Holocaust in America: The Jewish Role in American Life: An Annual Review, Vol 6 = Jewish Role Amer Lif Impact of The Holocaust in America: The Jewish Role in American Life: An Annual Review, Vol 6 = Jewish Role Amer. Lif. Impact of The Laboratory and Technology On Learning and Teaching Science K-16 = Res Sci Educ Ser Impact of The Laboratory and Technology On Learning and Teaching Science K-16 = Res. Sci. Educ. Ser. Impact of The Russo-japanese War = Routl Stud Mod Hist Impact of The Russo-japanese War = Routl. Stud. Mod. Hist. Impact of Tumor Biology On Cancer Treatment and Multidisciplinary Strategies = Med Radiol Radiat On Impact of Tumor Biology On Cancer Treatment and Multidisciplinary Strategies = Med. Radiol. Radiat. On Impact of U.s. Environmental Regulations On Fuel Quality = Am Soc Test Mater Impact of U.s. Environmental Regulations On Fuel Quality = Am. Soc. Test. Mater. Impact of Work On Older Adults = Societ Impact Aging Impact of Work On Older Adults = Societ. Impact Aging. Impact of Zeolites and Other Porous Materials On The New Technologies At The Beginning of The New Millennium, Pts A and B = Stud Surf Sci Catal Impact of Zeolites and Other Porous Materials On The New Technologies At The Beginning of The New Millennium, Pts A and B = Stud. Surf. Sci. Catal. Impact on HIV = Impact HIV Impact Response and Dynamic Failure of Composites and Laminate Materials, Pts 1 and 2 = Key Eng Mat Impact Response and Dynamic Failure of Composites and Laminate Materials, Pts 1 and 2 = Key. Eng. Mat. Impact Response and Dynamic Failure of Composites and Laminate Materials, Pts 1 and 2 = Key Eng Mater Impact Response and Dynamic Failure of Composites and Laminate Materials, Pts 1 and 2 = Key. Eng. Mater. Impacts and The Early Earth = Lect Notes Earth Sci Impacts and The Early Earth = Lect. Notes. Earth Sci. Impacts in Mechanical Systems = Lect Notes Phys Impacts in Mechanical Systems = Lect. Notes. Phys. Impacts in Precambrian Shields = Impact Stud Impacts in Precambrian Shields = Impact. Stud. Impacts of El Nino and Climate Variability On Agriculture, Proceedings = Asa Spec P Impacts of El Nino and Climate Variability On Agriculture, Proceedings = Asa. Spec. P. Impacts of Global Change On Tree Physiology and Forest Ecosystems = For Sci Impacts of Global Change On Tree Physiology and Forest Ecosystems = For. Sci. Impacts of Megaconferences On The Water Sector = Water Resour Dev Man Impacts of Megaconferences On The Water Sector = Water Resour. Dev. Man. Impacts of Point Polluters On Terrestrial Biota: Comparative Analysis of 18 Contaminated Areas = Environ Pollut Ser Impacts of Point Polluters On Terrestrial Biota: Comparative Analysis of 18 Contaminated Areas = Environ. Pollut. Ser. Impacts of Research and Development Expenditures: The Relationship Between Total Factor Productivity and U S Gross Domestic Product Performance = Innov Tech Knowl Man Impacts of Research and Development Expenditures: The Relationship Between Total Factor Productivity and U S Gross Domestic Product Performance = Innov. Tech. Knowl. Man. Impacts of Urban Growth On Surface Water and Groundwater Quality = Iahs-aish P Impacts of Urban Growth On Surface Water and Groundwater Quality = Iahs-aish. P. Impact Studies = Impact Stud Impact Studies = Impact Stud. Impact: Studies in Language and Society = Impact Impact: Studies in Language and Society = Impact. Impact Tectonics = Impact Stud Impact Tectonics = Impact Stud. Impairment and Disability: Law and Ethics At The Beginning and End of Life = Biomed Law Ethics Li Impairment and Disability: Law and Ethics At The Beginning and End of Life = Biomed. Law Ethics Li. Impartial, L' = Impartial Imperfections in Iii/v Materials = Semiconduct Semimet Imperfections in Iii/v Materials = Semiconduct. Semimet. Imperial Defence: The Old World Order, 1856-1956 = Cass Mil Stud Imperial Defence: The Old World Order, 1856-1956 = Cass. Mil. Stud. Imperial Horizons of British Protestant Missions, 1880-1914 = Stud Hist Christ Mis Imperial Horizons of British Protestant Missions, 1880-1914 = Stud. Hist. Christ. Mis. Imperialism, Power, and Identity: Experiencing The Roman Empire = Mir S Balm Lect Anc Imperialism, Power, and Identity: Experiencing The Roman Empire = Mir. S. Balm. Lect. Anc. Imperial Laboratory: Experimental Physiology and Clinical Medicine in Post-crimean Russia = Clio Med Imperial Laboratory: Experimental Physiology and Clinical Medicine in Post-crimean Russia = Clio. Med. Imperial Medicine and Indigenous Societies = Stud Imper Imperial Medicine and Indigenous Societies = Stud. Imper. Imperial Monkey Business = Casa Monogr Imperial Monkey Business = Casa. Monogr. Imperial Origins of The King's Church in Early America, 1607-1783 = Stud Mod Hist Imperial Origins of The King's Church in Early America, 1607-1783 = Stud. Mod. Hist. Impersonal Si Constructions-agreement and Interpretation = Stud Generat Gramm Impersonal Si Constructions-agreement and Interpretation = Stud. Generat. Gramm. Implantable Bone Conduction Hearing Aids = Adv Oto-rhino-laryng Implantable Bone Conduction Hearing Aids = Adv. Oto-rhino-laryng. Implantable Neural Prostheses 1: Devices and Applications = Biol Med Phys Biomed Implantable Neural Prostheses 1: Devices and Applications = Biol. Med. Phys. Biomed. Implantable Neural Prostheses 2: Techniques and Engineering Approaches = Biol Med Phys Biomed Implantable Neural Prostheses 2: Techniques and Engineering Approaches = Biol. Med. Phys. Biomed. Implantation in Mammals = Serono Sym Implantation in Mammals = Serono. Sym. Implant dentistry = Implant Dent Implant Dentistry = Implant Dent Implant Dentistry = Implant Dent. Implantologie = Implantologie Implantologist = Implantologist Implant Placement in Post-extraction Sites: Treatment Options, Vol 3 = Iti Treatment Guide Implant Placement in Post-extraction Sites: Treatment Options, Vol 3 = Iti. Treatment Guide. Implant Society = Implant Soc. Implementation and Application of Automata = Lect Notes Comput Sc Implementation and Application of Automata = Lect. Notes. Comput. Sc. Implementation and Application of Automata, Proceedings = Lect Notes Comput Sc Implementation and Application of Automata, Proceedings = Lect. Notes. Comput. Sc. Implementation and Application of Functional Languages = Lect Notes Comput Sc Implementation and Application of Functional Languages = Lect. Notes. Comput. Sc. Implementation and Redesign of Catalytic Function in Biopolymers = Top Curr Chem Implementation and Redesign of Catalytic Function in Biopolymers = Top. Curr. Chem. Implementation of Functional Languages = Lect Notes Comput Sc Implementation of Functional Languages = Lect. Notes. Comput. Sc. Implementation of Legally Binding Measures to Strengthen The Biological and Toxin Weapons Convention = Nato Sci Ser Ii-math Implementation of Legally Binding Measures to Strengthen The Biological and Toxin Weapons Convention = Nato. Sci. Ser. Ii-math. Implementation of Legally Binding Measures to Strengthen The Biological and Toxin Weapons Convention = Nato Sci Ser Ii Math Implementation of Legally Binding Measures to Strengthen The Biological and Toxin Weapons Convention = Nato. Sci. Ser. Ii. Math. Implementation of The Global Malaria Control Strategy = Who Tech Rep Ser Implementation of The Global Malaria Control Strategy = Who. Tech. Rep. Ser. Implementation Science = Implement Sci Implementation Science = Implement. Sci. Implementation science : IS = Implement Sci Implementing Domestic Tradable Permits for Environmental Protection, Proceedings = Oecd Proc Implementing Domestic Tradable Permits for Environmental Protection, Proceedings = Oecd. Proc. Implementing Domestic Tradeable Permits = Oecd Proc Implementing Domestic Tradeable Permits = Oecd. Proc. Implementing Educational Reform: Sociological Perspectives On Educational Policy = Soc Pol Iss Edu Implementing Educational Reform: Sociological Perspectives On Educational Policy = Soc. Pol. Iss. Edu. Implementing Environmental Management Accounting: Status and Challenges = Eco Efficien Ind Sci Implementing Environmental Management Accounting: Status and Challenges = Eco. Efficien. Ind. Sci. Implementing Environmental Management Accounting: Status and Challenges = Eco-effic Ind Sci Implementing Environmental Management Accounting: Status and Challenges = Eco-effic. Ind. Sci. Implementing Health Sector Reform in Central Asia = Edi Learn Resour Ser Implementing Health Sector Reform in Central Asia = Edi. Learn. Resour. Ser. Implementing International Environmental Law in Germany and China = Int Env Law Implementing International Environmental Law in Germany and China = Int. Env. Law Implementing Models in Quantitative Finance: Methods and Cases = Springer Financ Implementing Models in Quantitative Finance: Methods and Cases = Springer. Financ. Implementing Planned Markets in Health Care = State Hlth Ser Implementing Planned Markets in Health Care = State. Hlth. Ser. Implementing Rail Projects = Imeche Conf Trans Implementing Rail Projects = Imeche. Conf. Trans. Implementing Recurrent Education in Sweden : On Reform Strategies of Swedish Adult and Higher Education = Natl B Educ Implementing Recurrent Education in Sweden : On Reform Strategies of Swedish Adult and Higher Education = Natl. B. Educ. Implementing Spectral Methods for Partial Differential Equations = Sci Comput Implementing Spectral Methods for Partial Differential Equations = Sci. Comput. Implementing The World Intellectual Property Organizations Development Agenda = Stud Int Gov Implementing The World Intellectual Property Organizations Development Agenda = Stud. Int. Gov. Implications of Molecular and Materials Structure for New Technologies = Nato Adv Sci I E-app Implications of Molecular and Materials Structure for New Technologies = Nato. Adv. Sci. I. E-app. Implications of New Data On Radiation Cancer Risk = P Nat C Rad Implications of New Data On Radiation Cancer Risk = P. Nat. C. Rad. Implications of North American Free Trade Agreement for The Asian and Pacific Region = Escap Stud Trade Inv Implications of North American Free Trade Agreement for The Asian and Pacific Region = Escap. Stud. Trade Inv. Implicit Functions and Solution Mappings: A View From Variational Analysis = Springer Monogr Math Implicit Functions and Solution Mappings: A View From Variational Analysis = Springer. Monogr. Math. Implied Author: Concept and Controversy = Narratologia Implied Author: Concept and Controversy = Narratologia. Impoliteness in Language: Studies On Its Interplay With Power in Theory and Practice = Lang Power Soc Proce Impoliteness in Language: Studies On Its Interplay With Power in Theory and Practice = Lang. Power Soc. Proce. Importance of Colour Perception to Animals and Man = Neurosci Res Prog Se Importance of Colour Perception to Animals and Man = Neurosci. Res. Prog. Se. Importance of Feeding Behavior for The Efficient Culture of Salmonid Fishes = World Aquac Importance of Feeding Behavior for The Efficient Culture of Salmonid Fishes = World. Aquac. Importance of Growth for Health and Development = Nestle Nutr Works Se Importance of Growth for Health and Development = Nestle. Nutr. Works. Se. Importance of Reinventing Oscar: Versions of Wilde During The Last 100 Years = Int For Lit Importance of Reinventing Oscar: Versions of Wilde During The Last 100 Years = Int. For. Lit. Importance of Root to Shoot Communication in The Responses to Environmental Stress = Brit Soc Pl Importance of Root to Shoot Communication in The Responses to Environmental Stress = Brit. Soc. Pl. Important advances in oncology = Important Adv Oncol Important Advances in Oncology = Important Adv. Oncol. Important Advances In Oncology=Important Adv Oncol;; Imported Foods: Microbiological Issues and Challenges = Emerg Iss Food Saf Imported Foods: Microbiological Issues and Challenges = Emerg. Iss. Food. Saf. Impossible Bodies, Impossible Selves: Exclusions and Student Subjectivities = Incl Educ Cross Cult Impossible Bodies, Impossible Selves: Exclusions and Student Subjectivities = Incl. Educ. Cross. Cult. Imprensa medica = Imprensa Medica Impressions = Impressions (Orange) Imprimatur = Imprimatur Imprint (American Historical Print Collectors Society) = Imprint (N Y N Y 1976) Imprint = Imprint Improved Bonferroni Inequalities Via Abstract Tubes: Inequalities and Identities of Inclusion-exclusion Type = Lect Notes Math Improved Bonferroni Inequalities Via Abstract Tubes: Inequalities and Identities of Inclusion-exclusion Type = Lect. Notes. Math. Improved Ceramics Through New Measurements, Processing, and Standards = Ceram Trans Improved Ceramics Through New Measurements, Processing, and Standards = Ceram. Trans. Improved Productivity of Blast Furnace Operations = Mcmaster S Improved Productivity of Blast Furnace Operations = Mcmaster. S. Improvement in The Quality of Delivery of Electrical Energy Using Power Electronics Systems = Power Syst Improvement in The Quality of Delivery of Electrical Energy Using Power Electronics Systems = Power Syst. Improvements in Dialysis Therapy = Contrib Nephrol Improvements in Dialysis Therapy = Contrib. Nephrol. Improvements in The Kinetic and Dynamic Profiles of Dihydropyridine Calcium Antagonists = Res Clin Forums Improvements in The Kinetic and Dynamic Profiles of Dihydropyridine Calcium Antagonists = Res. Clin. Forums. Improving Access to Justice : The Future of Paralegal Professionals = Aic Conf P Improving Access to Justice : The Future of Paralegal Professionals = Aic. Conf. P. Improving Catheter Site Care = Roy Soc Med Int Cong Improving Catheter Site Care = Roy. Soc. Med. Int. Cong. Improving Childrens Lives = Prim Prev P Improving Childrens Lives = Prim. Prev. P. Improving Classroom Learning With Ict = Improv Learn Tlrp Improving Classroom Learning With Ict = Improv. Learn. Tlrp. Improving Comfort in Clothing = Woodhead Publ Ser Te Improving Comfort in Clothing = Woodhead. Publ. Ser. Te. Improving Educational Productivity = Res Educ Product Improving Educational Productivity = Res. Educ. Product. Improving Efficiency and Reliability in Water Distribution Systems = Water Trans Improving Efficiency and Reliability in Water Distribution Systems = Water Trans. Improving Farmed Fish Quality and Safety = Woodhead Food Ser Improving Farmed Fish Quality and Safety = Woodhead. Food. Ser. Improving Genetic Disease Resistance in Farm Animals = Curr T Vet Improving Genetic Disease Resistance in Farm Animals = Curr. T. Vet. Improving Health and Welfare in Animal Production = Eaap Public Improving Health and Welfare in Animal Production = Eaap. Public. Improving Healthcare: A Dose of Competition, A Report By The Federal Trade Commission and Department of Justice July, 2004, With Various Supplementary Materials = Dev Health Econ Publ Improving Healthcare: A Dose of Competition, A Report By The Federal Trade Commission and Department of Justice July, 2004, With Various Supplementary Materials = Dev. Health. Econ. Publ. Improving Human Performance Quarterly = Improv Hum Perform Improving Human Performance Quarterly = Improv. Hum. Perform. Improving human performance quarterly = Improv Hum Performance Q Improving Institutions for Green Landscapes in Metropolitan Areas = Sustain Urban Areas Improving Institutions for Green Landscapes in Metropolitan Areas = Sustain. Urban. Areas Improving Learning By Widening Participation in Higher Education = Improv Learn Tlrp Improving Learning By Widening Participation in Higher Education = Improv. Learn. Tlrp. Improving Learning Cultures in Further Education = Improv Learn Tlrp Improving Learning Cultures in Further Education = Improv. Learn. Tlrp. Improving Learning How to Learn: Classrooms, Schools and Networks = Improv Learn Tlrp Improving Learning How to Learn: Classrooms, Schools and Networks = Improv. Learn. Tlrp. Improving Learning in A Professional Context = Improv Learn Tlrp Improving Learning in A Professional Context = Improv. Learn. Tlrp. Improving Learning in College = Improv Learn Tlrp Improving Learning in College = Improv. Learn. Tlrp. Improving Learning in Later Life = Improv Learn Tlrp Improving Learning in Later Life = Improv. Learn. Tlrp. Improving Learning, Skills and Inclusion: The Impact of Policy On Post-compulsory Education = Improv Learn Tlrp Improving Learning, Skills and Inclusion: The Impact of Policy On Post-compulsory Education = Improv. Learn. Tlrp. Improving Learning Through Consulting Pupils = Improv Learn Tlrp Improving Learning Through Consulting Pupils = Improv. Learn. Tlrp. Improving Learning Tlrp = Improv Learn Tlrp Improving Learning Tlrp = Improv. Learn. Tlrp Improving Literacy By Teaching Morphemes = Improv Learn Tlrp Improving Literacy By Teaching Morphemes = Improv. Learn. Tlrp. Improving Local Government-outcomes of Comparative Research = Gov Public Manag Improving Local Government-outcomes of Comparative Research = Gov. Public. Manag. Improving Schools, Developing Inclusion = Improv Learn Tlrp Improving Schools, Developing Inclusion = Improv. Learn. Tlrp. Improving Schools: Studies in Leadership and Culture = Res Theor Educ Admin Improving Schools: Studies in Leadership and Culture = Res. Theor. Educ. Admin. Improving Seafood Products for The Consumer = Woodhead Food Ser Improving Seafood Products for The Consumer = Woodhead. Food. Ser. Improving Service-learning Practice: Research On Models to Enhance Impacts = Adv Serv Learn Res Improving Service-learning Practice: Research On Models to Enhance Impacts = Adv. Serv. Learn. Res. Improving Student Achievement: Reforms That Work = Milken Fam Found Ser Improving Student Achievement: Reforms That Work = Milken. Fam. Found. Ser. Improving Teacher Education Through Action Research = Routl Res Educ Improving Teacher Education Through Action Research = Routl. Res. Educ. Improving The Context for Inclusion: Personalising Teacher Development Through Collaborative Action Research = Improv Learn Tlrp Improving The Context for Inclusion: Personalising Teacher Development Through Collaborative Action Research = Improv. Learn. Tlrp. Improving The Exploration Process By Learning From The Past = Npf Sp Publ Improving The Exploration Process By Learning From The Past = Npf. Sp. Publ. Improving The Flavour of Cheese = Woodhead Publ Food S Improving The Flavour of Cheese = Woodhead. Publ. Food. S. Improving The Health-promoting Properties of Fruit and Vegetable Products = Woodhead Food Ser Improving The Health-promoting Properties of Fruit and Vegetable Products = Woodhead. Food. Ser. Improving The Investment Decision Process - Better Use of Economic Inputs in Securities Analysis and Portfolio Management = Icfa Cont Educ Ser Improving The Investment Decision Process - Better Use of Economic Inputs in Securities Analysis and Portfolio Management = Icfa. Cont. Educ. Ser. Improving The Performance of Health Centres in District Health Systems = Who Tech Rep Ser Improving The Performance of Health Centres in District Health Systems = Who. Tech. Rep. Ser. Improving The Quality of Existing Urban Building Envelopes: Facades and Roofs = Res Archit Eng Ser Improving The Quality of Existing Urban Building Envelopes: Facades and Roofs = Res. Archit. Eng. Ser. Improving The Quality of Existing Urban Building Envelopes: Needs = Res Archit Eng Ser Improving The Quality of Existing Urban Building Envelopes: Needs = Res. Archit. Eng. Ser. Improving The Quality of Existing Urban Building Envelopes: State of The Art = Res Archit Eng Ser Improving The Quality of Existing Urban Building Envelopes: State of The Art = Res. Archit. Eng. Ser. Improving The Quality of Existing Urban Building Envelopes: Structures = Res Archit Eng Ser Improving The Quality of Existing Urban Building Envelopes: Structures = Res. Archit. Eng. Ser. Improving The Quality of Life for The European Citizen = Assist Techn Res Ser Improving The Quality of Life for The European Citizen = Assist. Techn. Res. Ser. Improving The Safety and Quality of Milk, Volume 1: Milk Production and Processing = Woodhead Publ Food S Improving The Safety and Quality of Milk, Volume 1: Milk Production and Processing = Woodhead. Publ. Food. S. Improving The Safety and Quality of Milk, Volume 2: Improving Quality in Milk Products = Woodhead Publ Food S Improving The Safety and Quality of Milk, Volume 2: Improving Quality in Milk Products = Woodhead. Publ. Food. S. Improving The Selection, Testing and Evaluation of Weed Biological Control Agents, Proceedings = Crc Aust Weed Manage Improving The Selection, Testing and Evaluation of Weed Biological Control Agents, Proceedings = Crc. Aust. Weed Manage. Improving The Sensory and Nutritional Quality of Fresh Meat = Woodhead Food Ser Improving The Sensory and Nutritional Quality of Fresh Meat = Woodhead. Food. Ser. Improving Vehicle Workshop Efficiency: Incorporating Automatic Identification Technology = Imeche Sem Improving Vehicle Workshop Efficiency: Incorporating Automatic Identification Technology = Imeche. Sem. Improving Working As Learning = Improv Learn Tlrp Improving Working As Learning = Improv. Learn. Tlrp. Improving Workplace Learning = Improv Learn Tlrp Improving Workplace Learning = Improv. Learn. Tlrp. Impulse Breakdown of Liquids = Power Syst Impulse Breakdown of Liquids = Power. Syst. Impulse = Impulse (Sydney) Impulsive Control Theory = Lect Notes Contr Inf Impulsive Control Theory = Lect. Notes. Contr. Inf. Impulsivity: Causes, Control and Disorders = Psychol Emot Motiv A Impulsivity: Causes, Control and Disorders = Psychol. Emot. Motiv. A. Impurities, Defects and Diffusion in Semiconductors : Bulk and Layered Structures = Mater Res Soc Symp P Impurities, Defects and Diffusion in Semiconductors : Bulk and Layered Structures = Mater. Res. Soc. Symp. P. Impurity Diffusion in Metals = Sol St Phen Impurity Diffusion in Metals = Sol. St. Phen. Imr-industrial Management Review = Imr-ind Manag Rev Imr-industrial Management Review = Imr-ind. Manag. Rev. Imrt Igrt Sbrt- Advances in The Treatment Planning and Delivery of Radiotherapy = Front Radiat Ther On Imrt Igrt Sbrt- Advances in The Treatment Planning and Delivery of Radiotherapy = Front. Radiat. Ther. On. Imrt, Igrt, Sbrt: Advances in The Treatment Planning and Delivery of Radiotherapy = Front Radiat Ther On Imrt, Igrt, Sbrt: Advances in The Treatment Planning and Delivery of Radiotherapy = Front. Radiat. Ther. On. IMS, Industrial medicine and surgery = IMS Ind Med Surg IMS, Industrial Medicine and Surgery = IMS Ind. Med. Surg. IMS Report = IMS Rep. Imtc/2000: Proceedings of The 17th Ieee Instrumentation and Measurement Technology Conference = Ieee Imtc P Imtc/2000: Proceedings of The 17th Ieee Instrumentation and Measurement Technology Conference = Ieee Imtc. P. Imtc/2001: Proceedings of The 18th Ieee Instrumentation and Measurement Technology Conference, Vols 1-3 = Ieee Imtc P Imtc/2001: Proceedings of The 18th Ieee Instrumentation and Measurement Technology Conference, Vols 1-3 = Ieee Imtc. P. Imtc 2002: Proceedings of The 19th Ieee Instrumentation and Measurement Technology Conference, Vols 1 & 2 = Ieee Imtc P Imtc 2002: Proceedings of The 19th Ieee Instrumentation and Measurement Technology Conference, Vols 1 & 2 = Ieee Imtc P. Imtc/95 - 1995 Ieee Instrumentation/measurement Technology Conference, Conference Proceedings = Ieee Imtc P Imtc/95 - 1995 Ieee Instrumentation/measurement Technology Conference, Conference Proceedings = Ieee Imtc. P. Imtc/97 - Ieee Instrumentation & Measurement Technology Conference: Sensing, Processing, Networking, Proceedings Vols 1 and 2 = Ieee Imtc P Imtc/97 - Ieee Instrumentation & Measurement Technology Conference: Sensing, Processing, Networking, Proceedings Vols 1 and 2 = Ieee Imtc. P. Imtc/99: Proceedings of The 16th Ieee Instrumentation and Measurement Technology Conference, Vols. 1-3 = Ieee Imtc P Imtc/99: Proceedings of The 16th Ieee Instrumentation and Measurement Technology Conference, Vols. 1-3 = Ieee Imtc. P. Imtc/o3: Proceedings of The 20th Ieee Instrumentation and Measurement Technology Conference, Vols 1 and 2 = Ieee Imtc P Imtc/o3: Proceedings of The 20th Ieee Instrumentation and Measurement Technology Conference, Vols 1 and 2 = Ieee Imtc. P. In and Out of Equilibrium 2 = Prog Probab In and Out of Equilibrium 2 = Prog. Probab. In and Out of Equilibrium: Probability With A Physics Flavor = Prog Probab In and Out of Equilibrium: Probability With A Physics Flavor = Prog. Probab. Inbetriebnahme Verfahrenstechnischer Anlagen = Vdi-buch Inbetriebnahme Verfahrenstechnischer Anlagen = Vdi-buch. Inborn Errors of Metabolism = Nestle Nutr Works Se Inborn Errors of Metabolism = Nestle. Nutr. Works. Se. Incarceration and The Family: Issues, Effects and Approaches to Successful Reentry = Crim Justice Law Enf Incarceration and The Family: Issues, Effects and Approaches to Successful Reentry = Crim. Justice. Law. Enf. Incarnate Text: Imagining The Book in Reformation England = Mater Texts Incarnate Text: Imagining The Book in Reformation England = Mater. Texts. In Celebration of Revised 780 : Music in The Dewey Decimal Classification, Edition 20 = Mla Tech R In Celebration of Revised 780 : Music in The Dewey Decimal Classification, Edition 20 = Mla. Tech. R. Incentive Regulation for Public Utilities = T Reg Econ Incentive Regulation for Public Utilities = T. Reg. Econ. Incentives, Overlays, and Economic Traffic Control = Lect Notes Comput Sc Incentives, Overlays, and Economic Traffic Control = Lect. Notes. Comput. Sc. Incentives, Regulations and Plans: The Role of States and Nation-states in Smart Growth Planning = New Horiz Reg Sci Incentives, Regulations and Plans: The Role of States and Nation-states in Smart Growth Planning = New. Horiz. Reg. Sci. Inchiesta = Inchiesta Incisional Hernia = Updates Surg Incisional Hernia = Updates. Surg. Incisivo = Incisivo Inciting Change in Secondary English Language Programs: The Case of Cherry High School = Second Educ Chang Wo Inciting Change in Secondary English Language Programs: The Case of Cherry High School = Second. Educ. Chang. Wo. Including Families and Communities in Urban Education = Iss Res Theor Pol Pr Including Families and Communities in Urban Education = Iss. Res. Theor. Pol. Pr. Including The Excluded : Extending The Benefits of Development = Inc Exc Ext Including The Excluded : Extending The Benefits of Development = Inc. Exc. Ext. Inclusion and Psychological Intervention in Schools: A Critical Autoethnography = Incl Educ Cross Cult Inclusion and Psychological Intervention in Schools: A Critical Autoethnography = Incl. Educ. Cross. Cult. Inclusion Methods for Nonlinear Problems = Comp Suppl Inclusion Methods for Nonlinear Problems = Comp. Suppl. Inclusion of Environmental Education in Science Teacher Education = Aste Ser Sci Educ Inclusion of Environmental Education in Science Teacher Education = Aste. Ser. Sci. Educ. Inclusion of Other Women: Breaking The Silence Through Dialogic Learning = Lifelong Learn Book Inclusion of Other Women: Breaking The Silence Through Dialogic Learning = Lifelong. Learn. Book. Inclusion, Participation and Democracy: What Is The Purpose = Inclusive Educ Inclusion, Participation and Democracy: What Is The Purpose = Inclusive. Educ. Inclusion Polymers = Adv Polym Sci Inclusion Polymers = Adv. Polym. Sci. Inclusive Education Cross Cultural Perspectives = Incl Educ Cross Cult Inclusive Education Cross Cultural Perspectives = Incl. Educ. Cross Cult. Inclusive Education: Cross Cultural Perspectives = Inclusive Educ Inclusive Education: Cross Cultural Perspectives = Inclusive Educ. Inclusive Masculinity: The Changing Nature of Masculinities = Routl Res Gend Soc Inclusive Masculinity: The Changing Nature of Masculinities = Routl. Res. Gend. Soc. Income Elasticity and Economic Development: Methods and Applications = Adv Stud Theor Appl Income Elasticity and Economic Development: Methods and Applications = Adv. Stud. Theor. Appl. Incomplete Decompositions (ilu) - Algorithms, Theory, and Applications = Note Num Fl Incomplete Decompositions (ilu) - Algorithms, Theory, and Applications = Note. Num. Fl. Inconsistency Tolerance = Lect Notes Comput Sc Inconsistency Tolerance = Lect. Notes. Comput. Sc. Incontri linguistici = ILing Incorporating Knowledge Sources Into Statistical Speech Recognition = Lect Notes Electr En Incorporating Knowledge Sources Into Statistical Speech Recognition = Lect. Notes. Electr. En. Incorporating Uncertainty Into Fishery Models = Am Fish S S Incorporating Uncertainty Into Fishery Models = Am. Fish. S. S. Inco Science and Engineering Reporter = Inco Sci Eng Report Inco Science and Engineering Reporter = Inco Sci. Eng. Report. Increasing Healthy Life Span: Conventional Measures and Slowing The Innate Aging Process = Ann Ny Acad Sci Increasing Healthy Life Span: Conventional Measures and Slowing The Innate Aging Process = Ann. Ny. Acad. Sci. Increasingly Safe and Successful Pregnancies = Int Congr Ser Increasingly Safe and Successful Pregnancies = Int. Congr. Ser. Increasing Seismic Safety By Combining Engineering Technologies and Seismological Data = Nato Sci Peace Secur Increasing Seismic Safety By Combining Engineering Technologies and Seismological Data = Nato. Sci. Peace. Secur. Increasing The Ags Polarization = Aip Conf Proc Increasing The Ags Polarization = Aip. Conf. Proc. Incredible Anaerobes: From Physiology to Genomics to Fuels = Ann Ny Acad Sci Incredible Anaerobes: From Physiology to Genomics to Fuels = Ann. Ny. Acad. Sci. Incremental Learning for Motion Prediction of Pedestrians and Vehicles = Springer Trac Adv Ro Incremental Learning for Motion Prediction of Pedestrians and Vehicles = Springer. Trac. Adv. Ro. Incremental Motion Control Systems and Devices = Ann Sym Inc Incremental Motion Control Systems and Devices = Ann. Sym. Inc. Incremental Speech Translation = Lect Notes Artif Int Incremental Speech Translation = Lect. Notes. Artif. Int. Inculturation: Abide By The Otherness of Africa and The Africans = Ktc Inculturation: Abide By The Otherness of Africa and The Africans = Ktc. Indagationes Mathematicae-new Series = Indagat Math New Ser Indagationes Mathematicae-new Series = Indagat. Math. New. Ser. In Darkest Alaska: Travel and Empire Along The Inside Passage = Nat Cult Am In Darkest Alaska: Travel and Empire Along The Inside Passage = Nat. Cult. Am. In Defense of Human Rights: A Non-religious Grounding in A Pluralistic World = Routl Innov Polit Th In Defense of Human Rights: A Non-religious Grounding in A Pluralistic World = Routl. Innov. Polit. Th. In Defense of Judicial Elections = Controv Elect Democr In Defense of Judicial Elections = Controv. Elect. Democr. In Defense of The Alien = Defen Alien In Defense of The Alien = Defen. Alien In Defense of The Aliens, Vol Xx = Defen Alien In Defense of The Aliens, Vol Xx = Defen. Alien. In Defense of The Aliens, Vol Xxi = Defen Alien In Defense of The Aliens, Vol Xxi = Defen. Alien. In Defense of The Alien, Vol 12 = Defen Alien In Defense of The Alien, Vol 12 = Defen. Alien. In Defense of The Alien, Vol 14 = Defen Alien In Defense of The Alien, Vol 14 = Defen. Alien. In Defense of The Alien, Vol 15 = Defen Alien In Defense of The Alien, Vol 15 = Defen. Alien. In Defense of The Alien, Vol 16 = Defen Alien In Defense of The Alien, Vol 16 = Defen. Alien. In Defense of The Alien, Vol 8 = Defen Alien In Defense of The Alien, Vol 8 = Defen. Alien. In Defense of The Alien, Vol Xiii = Defen Alien In Defense of The Alien, Vol Xiii = Defen. Alien. In Defense of The Alien, Vol Xix = Defen Alien In Defense of The Alien, Vol Xix = Defen. Alien. In Defense of The Alien, Vol Xvii = Defen Alien In Defense of The Alien, Vol Xvii = Defen. Alien. In Defense of The Alien, Vol Xviii = Defen Alien In Defense of The Alien, Vol Xviii = Defen. Alien. In Defense of The Alien, Vol Xxii = Defen Alien In Defense of The Alien, Vol Xxii = Defen. Alien. In Defense of The Alien, Vol Xxiii = Defen Alien In Defense of The Alien, Vol Xxiii = Defen. Alien. Indentation Techniques in Ceramic Materials Characterization = Ceram Trans Indentation Techniques in Ceramic Materials Characterization = Ceram. Trans. Indent; Journal of International Dentistry; English Edition = Indent [Engl.] Indent; Journal Of International Dentistry; English Edition = Indent [Engl] Independent Accounts = Adv Public Inter Acc Independent Accounts = Adv. Public. Inter. Acc. Independent Component Analyses, Wavelets, and Neural Networks = Proc Spie Independent Component Analyses, Wavelets, and Neural Networks = Proc. Spie. Independent Component Analyses, Wavelets, and Neural Networks = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, and Neural Networks = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Ix = Proc Spie Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Ix = Proc. Spie. Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Viii = Proc Spie Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Viii = Proc. Spie. Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Viii = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Neural Networks, Biosystems, and Nanoengineering Viii = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks Vi = Proc Spie Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks Vi = Proc. Spie. Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks Vi = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks Vi = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks V = Proc Spie Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks V = Proc. Spie. Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks V = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Unsupervised Nano-biomimetic Sensors, and Neural Networks V = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iii = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iii = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Ii = Proc Spie Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Ii = Proc. Spie. Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Ii = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Ii = P. Soc. Photo-opt. Ins. Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iv = Proc Spie Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iv = Proc. Spie. Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iv = P Soc Photo-opt Ins Independent Component Analyses, Wavelets, Unsupervised Smart Sensors, and Neural Networks Iv = P. Soc. Photo-opt. Ins. Independent Component Analysis and Blind Signal Separation = Lect Notes Comput Sc Independent Component Analysis and Blind Signal Separation = Lect. Notes. Comput. Sc. Independent Component Analysis and Blind Signal Separation, Proceedings = Lect Notes Comput Sc Independent Component Analysis and Blind Signal Separation, Proceedings = Lect. Notes. Comput. Sc. Independent Component Analysis and Signal Separation, Proceedings = Lect Notes Comput Sc Independent Component Analysis and Signal Separation, Proceedings = Lect. Notes. Comput. Sc. Independent Living for Persons With Disabilities and Elderly People = Assist Technol Res S Independent Living for Persons With Disabilities and Elderly People = Assist. Technol. Res. S. Independent Living for Persons With Disabilities and Elderly People = Assist Techn Res Ser Independent Living for Persons With Disabilities and Elderly People = Assist. Techn. Res. Ser. Independent Review-a Journal of Political Economy = Indep Rev Independent Review-a Journal of Political Economy = Indep. Rev. Independent Review=Independent Rev. Independent Review = Indep Rev Independent Review = Indep. Rev. Independent Studies in Political Economy = Indep Stud Polit Eco Independent Studies in Political Economy = Indep. Stud. Polit. Eco. Index of Christian Art: Occasional Papers = Index Christ Art Oc Index of Christian Art: Occasional Papers = Index Christ. Art. Oc. Index of Emblem Art Symposium = Ams St Embl Index of Emblem Art Symposium = Ams. St. Embl. Index On Censorship = Index Censorship Index. Quaderni camerti di studi romanistici = IndexQuad India and Counterinsurgency: Lessons Learned = Asian Secur Stud India and Counterinsurgency: Lessons Learned = Asian. Secur. Stud. India: From Regional to World Power = India Mod World India: From Regional to World Power = India. Mod. World India in The Modern World = India Mod World India in The Modern World = India Mod. World Indiana Agricultural Experiment Station Bulletin = Indiana Aes Bull Indiana Agricultural Experiment Station Bulletin = Indiana Aes. Bull. Indiana Agricultural Experiment Station Inspection Report = Indiana Aes Insp Rep Indiana Agricultural Experiment Station Inspection Report = Indiana Aes. Insp. Rep. Indiana Agricultural Experiment Station Research Bulletin = Indiana Aes Res Bull Indiana Agricultural Experiment Station Research Bulletin = Indiana Aes. Res. Bull. Indiana Business Review=Indiana Bus. Rev. Indian Academy of Mathematics = J. Indian Acad. Math. Indian Academy of Sciences = Proc. Indian Acad. Sci. Math. Sci. Indiana code : comprising all laws of a general and permanent nature including statutes enacted through the 1982 regular session of the Indiana General Assembly / edited and published under the direction of the Indiana Legislative Counc... = Indiana Code Indiana Indiana folklore = Indiana Folkl Indiana health law review / [Indiana University School of Law-Indianapolis] = Indiana Health Law Rev Indiana international & comparative law review = Indiana Int Comp Law Rev Indiana Law Journal = Indiana Law J Indiana Law Journal = Indiana Law J. Indiana law journal (Indianapolis, Ind. : 1926) = Indiana Law J Indiana law review = Indiana Law Rev Indiana magazine of history = Indiana Mag Hist Indiana medical history quarterly / Indiana Historical Society = Indiana Med Hist Q Indiana Medicine = Indiana Med. Indiana medicine : the journal of the Indiana State Medical Association = Indiana Med Indiana Nurse = Indiana Nurse Indian archives = Indian Arch Indiana Series in The Philosophy of Religion = In Phil Rel Indiana Series in The Philosophy of Religion = In. Phil. Rel. Indiana social studies quarterly = Indiana Soc Stud Q Indiana University Art Museum Bulletin = IndUnArtB Indiana University Mathematics Journal = Indiana U Math J Indiana University Mathematics Journal = Indiana U. Math. J. Indiana University Mathematics Journal = Indiana Univ. Math. J. Indian Chemical Engineer = Indian Chem. Eng. Indian Drugs = Indian Drugs Indian Economic and Social History Review = Indian Econ Soc Hist Indian Economic and Social History Review = Indian Econ. Soc. Hist. Indian Economic and Social History Review=Indian Econ. Soc. Hist. Rev. Indian Economic Journal=Indian Econ. J. Indian economic review = Indian Econ Rev Indian Economic Review=Indian Econ. Rev. Indian Economic Superpower: Fiction Or Future? = World Sci Ser 21st C Indian Economic Superpower: Fiction Or Future? = World. Sci. Ser. 21st. C. Indian Foundry Journal = Indian Foundry J. Indian heart journal = Indian Heart J Indian Heart Journal=Indian Heart J;; Indian Heart Journal = Indian Heart J. Indian heart journal: teaching series = Indian Heart J Teach Ser Indian Heart Journal. Teaching Series = Indian Heart J. Teach. Ser. Indian Historian = Indian Hist Indian Historian = Indian Hist. Indian Horizons = Indian Horizons Indian Institute of Science = J. Indian Inst. Sci. Indian Journal of Agricultural Chemistry = Indian J. Agric. Chem. Indian Journal of Agricultural Research = Indian J Agr Res Indian Journal of Agricultural Research = Indian J. Agr. Res. Indian Journal of Agricultural Sciences = Indian J Agr Sci Indian Journal of Agricultural Sciences = Indian J. Agr. Sci. Indian Journal of Agriculture, Environment and Bio-Technology = Indian J. Agric. Environ. Bio-Technol. Indian Journal of Agronomy = Indian J Agron Indian Journal of Agronomy = Indian J. Agron. Indian journal of American studies = Indian J Am Stud Indian Journal of Animal Research = Indian J Anim Res Indian Journal of Animal Research = Indian J. Anim. Res. Indian Journal of Animal Sciences = Indian J Anim Sci Indian Journal of Animal Sciences = Indian J. Anim. Sci. Indian Journal of Applied Economics=Indian J. Appl. Econ. Indian journal of behaviour = Indian J Behav Indian Journal of Biochemistry and Biophysics=Indian J Biochem Biophys;; Indian Journal of Biochemistry and Biophysics = Indian J. Biochem. Biophys. Indian Journal of Biochemistry & Biophysics = Indian J Biochem Bio Indian Journal of Biochemistry & Biophysics = Indian J. Biochem. Bio. Indian journal of biochemistry & biophysics = Indian J Biochem Biophys Indian Journal of Biochemistry & Biophysics = Indian J. Biochem. Biophys. Indian journal of biochemistry = Indian J Biochem Indian Journal of Biochemistry = Indian J Biochem Indian Journal of Biochemistry = Indian J. Biochem. Indian Journal of Biotechnology = Indian J Biotechnol Indian Journal of Biotechnology = Indian J. Biotechnol. Indian journal of cancer = Indian J Cancer Indian Journal of Cancer=Indian J Cancer;; Indian Journal of Cancer = Indian J Cancer Indian Journal of Cancer = Indian J. Cancer Indian Journal of Chemical Technology = Indian J Chem Techn Indian Journal of Chemical Technology = Indian J. Chem. Techn. Indian Journal of Chemical Technology = Indian J. Chem. Technol. Indian journal of chemistry = Indian J Chem Indian Journal of Chemistry = Indian J Chem Indian Journal of Chemistry = Indian J. Chem. Indian Journal of Chemistry Section A-inorganic Bio-inorganic Physical Theoretical & Analytical Chemistry = Indian J Chem A Indian Journal of Chemistry Section A-inorganic Bio-inorganic Physical Theoretical & Analytical Chemistry = Indian J. Chem. A. Indian Journal of Chemistry, Section A: Inorganic, Bio-inorganic, Physical, Theoretical & Analytical Chemistry = Indian J. Chem., Sect. A: Inorg., Bio-inorg., Phys., Theor. Anal. Chem. Indian Journal of Chemistry Section A: Inorganic, Bio-inorganic, Physical, Theoretical and Analytical Chemistry = Indian J. Chem., Sect A Indian Journal of Chemistry Section B-organic Chemistry Including Medicinal Chemistry = Indian J Chem B Indian Journal of Chemistry Section B-organic Chemistry Including Medicinal Chemistry = Indian J. Chem. B. Indian Journal of Chemistry Section B: Organic Chemistry including Medicinal Chemistry = Indian J. Chem., Sect B Indian Journal of Chemistry, Section B: Organic Chemistry Including Medicinal Chemistry = Indian J. Chem., Sect. B: Org. Chem. Incl. Med. Chem. Indian Journal of Chest Diseases & Allied Sciences = Indian J Chest Dis Indian Journal of Chest Diseases & Allied Sciences = Indian J. Chest Dis. Indian Journal of Chest Diseases and Allied Sciences=Indian J Chest Dis Allied Sci;; Indian Journal of Chest Diseases and Allied Sciences = Indian J. Chest Dis. Allied Sci. Indian Journal of Chest Diseases = Indian J. Chest Dis. Indian Journal of Clinical Biochemistry = Indian J. Clin. Biochem. Indian journal of clinical psychology = Indian J Clin Psychol Indian Journal of Dental Research = Indian J. Dent. Res. Indian journal of dental research : official publication of Indian Society for Dental Research = Indian J Dent Res Indian journal of dermatology = Indian J Dermatol Indian Journal of Dermatology = Indian J Dermatol Indian Journal of Dermatology = Indian J. Dermatol. Indian journal of dermatology, venereology and leprology = Indian J Dermatol Venereol Leprol Indian Journal of Dermatology Venereology & Leprology = Indian J Dermatol Ve Indian Journal of Dermatology Venereology & Leprology = Indian J. Dermatol. Ve. Indian journal of economics = Indian J Econ Indian Journal of Economics=Indian J. Econ. Indian Journal of Economics = Indian J Econ Indian Journal of Economics = Indian J. Econ. Indian Journal of Engineering and Materials Science = Indian J. Eng. Mater. Sci. Indian Journal of Engineering and Materials Sciences = Indian J Eng Mater S Indian Journal of Engineering and Materials Sciences = Indian J. Eng. Mater. S. Indian journal of environmental health = Indian J Environ Health Indian Journal of Environmental Health = Indian J. Environ. Health Indian Journal of Environmental Protection = Indian J. Environ. Prot. Indian Journal of Environment and Ecoplanning = Indian J. Environ. Ecoplann. Indian journal of experimental biology = Indian J Exp Biol Indian Journal of Experimental Biology=Indian J Exp Biol;; Indian Journal of Experimental Biology = Indian J Exp Biol Indian Journal of Experimental Biology = Indian J. Exp. Biol. Indian Journal of Fibre and Textile Research = Indian J. Fibre Text. Res. Indian Journal of Fibre & Textile Research = Indian J Fibre Text Indian Journal of Fibre & Textile Research = Indian J. Fibre Text. Indian Journal of Fibre & Textile Research = Indian J. Fibre Text. Res. Indian Journal of Fisheries = Indian J Fish Indian Journal of Fisheries = Indian J. Fish. Indian Journal of Fisheries-section A = Indian J Fish-sect A Indian Journal of Fisheries-section A = Indian J. Fish-sect. A Indian Journal of Fisheries-section B = Indian J Fish-sect B Indian Journal of Fisheries-section B = Indian J. Fish-sect. B Indian Journal of Forensic Medicine and Toxicology = Indian J. Forensic Med. Toxicol. Indian Journal of Forensic Sciences = Indian J. Forensic Sci. Indian Journal of Gastroenterology=Indian J Gastroenterol;; Indian Journal of Gastroenterology = Indian J. Gastroenterol. Indian journal of gastroenterology : official journal of the Indian Society of Gastroenterology = Indian J Gastroenterol Indian Journal of Gender Studies=Indian J. Gender Stud. Indian journal of gender studies = Indian J Gend Stud Indian Journal of Gender Studies = Indian J Gend Stud Indian Journal of Gender Studies = Indian J. Gend. Stud. Indian Journal of Genetics and Plant Breeding = Indian J Genet Pl Br Indian Journal of Genetics and Plant Breeding = Indian J. Genet. Pl. Br. Indian Journal of Geochemistry = Indian J. Geochem. Indian Journal of Geo-marine Sciences = Indian J Geo-mar Sci Indian Journal of Geo-marine Sciences = Indian J. Geo-mar. Sci. Indian Journal of Hematology and Blood Transfusion = Indian J Hematol Blo Indian Journal of Hematology and Blood Transfusion = Indian J. Hematol. Blo. Indian Journal of Heterocyclic Chemistry = Indian J Heterocy Ch Indian Journal of Heterocyclic Chemistry = Indian J. Heterocy. Ch. Indian Journal of Heterocyclic Chemistry = Indian J. Heterocycl. Chem. Indian journal of history of science = Indian J Hist Sci Indian Journal of History of Science = Indian J. Hist. Sci. Indian Journal of Horticulture = Indian J Hortic Indian Journal of Horticulture = Indian J. Hortic. Indian Journal of Industrial and Applied Mathematics = Indian J. Ind. Appl. Math. Indian journal of industrial relations = Indian J Ind Relat Indian Journal of Industrial Relations = Indian J Ind Relat Indian Journal of Industrial Relations = Indian J. Ind. Relat. Indian Journal of Labour Economics=Indian J. Lab. Econ. Indian journal of leprosy = Indian J Lepr Indian Journal of Leprosy=Indian J Lepr;; Indian Journal of Leprosy = Indian J. Lepr. Indian journal of malariology = Indian J Malariol Indian Journal of Malariology=Indian J Malariol;; Indian Journal of Malariology = Indian J. Malariol. Indian Journal of Marine Sciences = Indian J Mar Sci Indian Journal of Marine Sciences = Indian J. Mar. Sci. Indian journal of maternal and child health : official publication of Indian Maternal and Child Health Association, = Indian J Matern Child Health Indian Journal of Mathematics = Indian J. Math. Indian journal of medical education = Indian J Med Educ Indian journal of medical ethics = Indian J Med Ethics Indian Journal of Medical Microbiology = Indian J Med Microbi Indian Journal of Medical Microbiology = Indian J. Med. Microbi. Indian journal of medical microbiology = Indian J Med Microbiol Indian Journal of Medical Research=Indian J Med Res;; Indian Journal of Medical Research = Indian J Med Res Indian Journal of Medical Research = Indian J. Med. Res. Indian Journal of Medical Research Section A-infectious Diseases = Indian J Med Res-a Indian Journal of Medical Research Section A-infectious Diseases = Indian J. Med. Res-a. Indian Journal of Medical Research Section B-biomedical Research Other Than Infectious Diseases = Indian J Med Res-b Indian Journal of Medical Research Section B-biomedical Research Other Than Infectious Diseases = Indian J. Med. Res-b. Indian journal of medical sciences = Indian J Med Sci Indian Journal of Medical Sciences=Indian J Med Sci;; Indian Journal of Medical Sciences = Indian J. Med. Sci. Indian Journal of Microbiology = Indian J Microbiol Indian Journal of Microbiology = Indian J. Microbiol. Indian Journal of Natural Products = Indian J. Nat. Prod. Indian Journal of Nutrition and Dietetics = Indian J Nutr Diet Indian Journal of Nutrition and Dietetics = Indian J. Nutr. Diet. Indian journal of ophthalmology = Indian J Ophthalmol Indian Journal of Ophthalmology=Indian J Ophthalmol;; Indian Journal of Ophthalmology = Indian J Ophthalmol Indian Journal of Ophthalmology = Indian J. Ophthalmol. Indian Journal of Orthopaedics = Indian J Orthop Indian Journal of Orthopaedics = Indian J. Orthop. Indian Journal of Otolaryngology and Head & Neck Surgery = Indian J Otolaryngol Indian Journal of Otolaryngology and Head & Neck Surgery = Indian J. Otolaryngol. Indian journal of otolaryngology = Indian J Otolaryngol Indian Journal of Pathology and Bacteriology = Indian J. Pathol. Bacteriol. Indian Journal of Pathology and Microbiology = Indian J Pathol Micr Indian Journal of Pathology and Microbiology = Indian J. Pathol. Micr. Indian Journal of Pathology and Microbiology=Indian J Pathol Microbiol;; Indian Journal of Pathology and Microbiology = Indian J. Pathol. Microbiol. Indian journal of pathology & bacteriology = Indian J Pathol Bacteriol Indian journal of pathology & microbiology = Indian J Pathol Microbiol Indian journal of pediatrics = Indian J Pediatr Indian Journal of Pediatrics=Indian J Pediatr;; Indian Journal of Pediatrics = Indian J Pediatr Indian Journal of Pediatrics = Indian J. Pediatr. Indian Journal of Pharmaceutical Education and Research = Indian J Pharm Educ Indian Journal of Pharmaceutical Education and Research = Indian J. Pharm. Educ. Indian journal of pharmaceutical sciences = Indian J Pharm Sci Indian Journal of Pharmaceutical Sciences = Indian J Pharm Sci Indian Journal of Pharmaceutical Sciences = Indian J. Pharm. Sci. Indian journal of pharmacology = Indian J Pharmacol Indian Journal of Pharmacology = Indian J Pharmacol Indian Journal of Pharmacology = Indian J. Pharmacol. Indian journal of physical anthropology and human genetics = Indian J Phys Anthropol Hum Genet Indian Journal of Physics, A = Indian J. Phys., A Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science = Indian J Phys Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science = Indian J. Phys. Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science-part A = Indian J Phys Pt-a Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science-part A = Indian J. Phys. Pt-a. Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science-part B = Indian J Phys Pt-b Indian Journal of Physics and Proceedings of The Indian Association for The Cultivation of Science-part B = Indian J. Phys. Pt-b. Indian Journal of Physics, B = Indian J. Phys., B Indian Journal of Physics = Indian J Phys Indian Journal of Physics = Indian J. Phys. Indian journal of physiology and pharmacology = Indian J Physiol Pharmacol Indian Journal of Physiology and Pharmacology=Indian J Physiol Pharmacol;; Indian Journal of Physiology and Pharmacology = Indian J. Physiol. Pharmacol. Indian Journal of Plant Physiology = Indian J Plant Physi Indian Journal of Plant Physiology = Indian J. Plant Physi. Indian Journal of Politics = Indian J Polit Indian Journal of Politics = Indian J. Polit. Indian journal of preventive and social medicine = Indian J Prev Soc Med Indian journal of psychiatry = Indian J Psychiatry Indian journal of psychology = Indian J Psychol Indian Journal of Psychology = Indian J Psychol Indian Journal of Psychology = Indian J. Psychol. Indian journal of public health = Indian J Public Health Indian Journal of Public Health=Indian J Public Health;; Indian Journal of Public Health = Indian J. Public Health Indian Journal of Pure and Applied Mathematics = Indian J. Pure Appl. Math. Indian Journal of Pure and Applied Physics = Indian J. Pure Appl. Phys. Indian Journal of Pure & Applied Mathematics = Indian J Pure Ap Mat Indian Journal of Pure & Applied Mathematics = Indian J. Pure Ap. Mat. Indian Journal of Pure & Applied Physics = Indian J Pure Ap Phy Indian Journal of Pure & Applied Physics = Indian J. Pure Ap. Phy. Indian journal of quantitative economics = Indian J Quant Econ Indian Journal of Quantitative Economics=Indian J. Quant. Econ. Indian Journal of Radio & Space Physics = Indian J Radio Space Indian Journal of Radio & Space Physics = Indian J. Radio Space Indian Journal of Radio & Space Physics = Indian J. Radio Space Phys. Indian journal of sexually transmitted diseases = Indian J Sex Transm Dis Indian journal of social research = Indian J Soc Res Indian Journal of Social Research = Indian J Soc Res Indian Journal of Social Research = Indian J. Soc. Res. Indian journal of social science = Indian J Soc Sci Indian Journal of Social Work = Indian J Soc Work Indian Journal of Social Work = Indian J. Soc. Work Indian Journal of Surgery = Indian J Surg Indian Journal of Surgery = Indian J. Surg. Indian Journal of Technology = Indian J Technol Indian Journal of Technology = Indian J. Technol. Indian journal of the history of medicine = Indian J Hist Med Indian Journal of Theoretical Physics = Indian J Theor Phys Indian Journal of Theoretical Physics = Indian J. Theor. Phys. Indian Journal of Traditional Knowledge = Indian J Tradit Know Indian Journal of Traditional Knowledge = Indian J. Tradit. Know. Indian Journal of Virology = Indian J Virol Indian Journal of Virology = Indian J. Virol. Indian Journal of Zoology = Indian J Zool Indian Journal of Zoology = Indian J. Zool. Indian Literature and Popular Cinema: Recasting Classics = Routl Cont S Asia Se Indian Literature and Popular Cinema: Recasting Classics = Routl. Cont. S. Asia. Se. Indian Literature = Indian Lit Indian Literature = Indian Lit. Indian medical gazette = Ind Med Gaz Indian medical journal = Indian Med J Indian Medical Journal = Indian Med. J. Indian medical tribune = Indian Med Trib Indian Naval Strategy in The Twenty-first Century = Cass Ser Nav Policy Indian Naval Strategy in The Twenty-first Century = Cass. Ser. Nav. Policy. Indian Ocean Biogeochemical Processes and Ecological Variability = Geophys Monogr Ser Indian Ocean Biogeochemical Processes and Ecological Variability = Geophys. Monogr. Ser. Indian Ocean Region: Maritime Regimes for Regional Cooperation = Polit Econ Asia Pac Indian Ocean Region: Maritime Regimes for Regional Cooperation = Polit. Econ. Asia. Pac. Indian Ocean Studies: Cultural, Social, and Political Perspectives = Routl Indian Ocean S Indian Ocean Studies: Cultural, Social, and Political Perspectives = Routl. Indian Ocean S. Indian pacing and electrophysiology journal = Indian Pacing Electrophysiol J Indian pediatrics = Indian Pediatr Indian Pediatrics=Indian Pediatr;; Indian Pediatrics = Indian Pediatr Indian Pediatrics = Indian Pediatr. Indian Political Science Review = Indian Polit Sci Rev Indian Political Science Review = Indian Polit. Sci. Rev. Indian Practitioner = Indian Pract. Indian psychological review = Indian Psychol Rev Indian Psychological Review = Indian Psychol Rev Indian Psychological Review = Indian Psychol. Rev. Indian Science Cruiser = Indian Sci. Cruiser Indians, Environment, and Identity On The Borders of American Literature: From Faulkner and Morrison to Walker and Silko = Am Lit Read Twenty-f Indians, Environment, and Identity On The Borders of American Literature: From Faulkner and Morrison to Walker and Silko = Am. Lit. Read. Twenty-f. Indian sociological bulletin = Indian Sociol Bull Indian Sociological Bulletin = Indian Sociol Bull Indian Sociological Bulletin = Indian Sociol. Bull. Indian Veterinary Journal = Indian Vet J Indian Veterinary Journal = Indian Vet. J. Indian Wars of Canada, Mexico and The United States, 1812-1900 = Warfare Hist Indian Wars of Canada, Mexico and The United States, 1812-1900 = Warfare. Hist. India, Pakistan and The Secret Jihad: The Covert War in Kashmir, 1947-2004 = Asian Secur Stud India, Pakistan and The Secret Jihad: The Covert War in Kashmir, 1947-2004 = Asian. Secur. Stud. India quarterly = India Q India's Emerging Financial Market: A Flow of Funds Model = Routledge Stud Growt India's Emerging Financial Market: A Flow of Funds Model = Routledge. Stud. Growt. India's Energy Security = Routl Cont S Asia Se India's Energy Security = Routl. Cont. S. Asia. Se. India's Globalization: Evaluating The Economic Consequences = Pol Stud India's Globalization: Evaluating The Economic Consequences = Pol. Stud. Indias Innovation Blueprint: How The Worlds Largest Democracy Is Becoming An Innovation Superpower = Chandos Asian Stud Indias Innovation Blueprint: How The Worlds Largest Democracy Is Becoming An Innovation Superpower = Chandos. Asian. Stud. Indias New Economic Policy: A Critical Analysis = Routl Stud Dev Soc Indias New Economic Policy: A Critical Analysis = Routl. Stud. Dev. Soc. India's Nuclear Bomb and National Security = Routl Adv S Asian St India's Nuclear Bomb and National Security = Routl. Adv. S. Asian. St. Indias Open-economy Policy: Globalism, Rivalry, Continuity = Routl Cont S Asia Se Indias Open-economy Policy: Globalism, Rivalry, Continuity = Routl. Cont. S. Asia. Se. India's Princely States: People, Princes and Colonialism = Routl Stud Mod Hist India's Princely States: People, Princes and Colonialism = Routl. Stud. Mod. Hist. India's Princely States: People, Princes and Colonialism = Rout St Mod Hist Asi India's Princely States: People, Princes and Colonialism = Rout. St. Mod. Hist. Asi. India: The Political Economy of Growth, Stagnation and The State, 1951-2007 = India Mod World India: The Political Economy of Growth, Stagnation and The State, 1951-2007 = India. Mod. World. Indicator = Indicator Indicator (Minnesota Mining and Manfuacturing Company) = Indicator Indicators for Urban and Regional Planning: The Interplay of Policy and Methods = Rtpi Lib Ser Indicators for Urban and Regional Planning: The Interplay of Policy and Methods = Rtpi. Lib. Ser. Indicators of Children's Well-being, Conference Papers, Vol 1 = Inst Res P Sp Indicators of Children's Well-being, Conference Papers, Vol 1 = Inst. Res. P. Sp. Indicators of Children's Well-being, Conference Papers, Vol Iii = Inst Res P Sp Indicators of Children's Well-being, Conference Papers, Vol Iii = Inst. Res. P. Sp. Indicators of Children's Well-being, Conference Papers, Vol Ii = Inst Res P Sp Indicators of Children's Well-being, Conference Papers, Vol Ii = Inst. Res. P. Sp. Indicators of Children's Well Being = Soc Indic Res Ser Indicators of Children's Well Being = Soc. Indic. Res. Ser. Indicators of Milk and Beef Quality = Eaap Public Indicators of Milk and Beef Quality = Eaap. Public. Indicator Systems for Sustainable Innovation = Sustain Innov Indicator Systems for Sustainable Innovation = Sustain. Innov. Indifference Pricing: Theory and Applications = Princ Ser Financ Eng Indifference Pricing: Theory and Applications = Princ. Ser. Financ. Eng. Indigeneity and Political Theory: Sovereignty and The Limits of The Political = Rout Iss Contemp Pol Indigeneity and Political Theory: Sovereignty and The Limits of The Political = Rout. Iss. Contemp. Pol. Indigeneity in The Courtroom: Law, Culture, and The Production of Difference in North American Courts = Indigen People Polit Indigeneity in The Courtroom: Law, Culture, and The Production of Difference in North American Courts = Indigen. People. Polit. Indigenous and Cultural Psychology: Understanding People in Context = Int Cul Psy Indigenous and Cultural Psychology: Understanding People in Context = Int. Cul. Psy. Indigenous Architecture in Borneo: Traditional Patterns and New Developments = Born Res Co Pro Ser Indigenous Architecture in Borneo: Traditional Patterns and New Developments = Born. Res. Co. Pro. Ser. Indigenous Biography and Autobiography = Aborig Hist Mg Ser Indigenous Biography and Autobiography = Aborig. Hist. Mg. Ser. Indigenous Ecotourism: Sustainable Development and Management = Ecotour Bk Ser Indigenous Ecotourism: Sustainable Development and Management = Ecotour. Bk. Ser. Indigenous Knowledge and Disaster Risk Reduction: From Practice to Policy = Nat Disaster Res Pr Indigenous Knowledge and Disaster Risk Reduction: From Practice to Policy = Nat. Disaster Res. Pr. Indigenous Knowledge Systems : Implications for Agriculture and International Development = Stud Tech S Indigenous Knowledge Systems : Implications for Agriculture and International Development = Stud. Tech. S. Indigenous Modernities: Negotiating Architecture and Urbanism = Architext Indigenous Modernities: Negotiating Architecture and Urbanism = Architext. Indigenous Peoples and Politics = Indigen People Polit Indigenous Peoples and Politics = Indigen. People. Polit. Indigenous Peoples and Real Estate Valuation = Res Iss Real Estate Indigenous Peoples and Real Estate Valuation = Res. Iss. Real Estate Indigenous Studies Series = Indigenous Stud Ser Indigenous Studies Series = Indigenous Stud. Ser. Indios En Escena: La Representacion Del Amerindio En El Teatro Del Siglo De Oro = Purdue Stud Roman Li Indios En Escena: La Representacion Del Amerindio En El Teatro Del Siglo De Oro = Purdue. Stud. Roman. Li. Indirect Estimation of Migration: Methods for Dealing With Irregular, Inadequate, and Missing Data = Springer Ser Demogr Indirect Estimation of Migration: Methods for Dealing With Irregular, Inadequate, and Missing Data = Springer. Ser. Demogr. Indirect Restorations = Quintessent Dent Pra Indirect Restorations = Quintessent. Dent. Pra. Indistinguishability Operators: Modelling Fuzzy Equalities and Fuzzy Equivalence Relations = Stud Fuzz Soft Comp Indistinguishability Operators: Modelling Fuzzy Equalities and Fuzzy Equivalence Relations = Stud. Fuzz. Soft. Comp. Individual and Organizational Perspectives On Emotion Management and Display = Res Emotion Organ Individual and Organizational Perspectives On Emotion Management and Display = Res. Emotion Organ. Individual and Social Responsibility = Nber Conf R Individual and Social Responsibility = Nber. Conf. R. Individual Financial Planning for Retirement: Empirical Insights From The Affluent Segment in Germany = Contrib Econ Individual Financial Planning for Retirement: Empirical Insights From The Affluent Segment in Germany = Contrib. Econ. Individualisierte Produkte: Komplexitat Beherrschen in Entwicklung Und Produktion = Vdi-buch Individualisierte Produkte: Komplexitat Beherrschen in Entwicklung Und Produktion = Vdi-buch. Individualizing The Assessment of Language Abilities = Multiling Individualizing The Assessment of Language Abilities = Multiling. Individual Psychologist = Indiv Psychol Individual Psychologist = Indiv. Psychol. Individual psychology = Individ Psychol Individual Psychology-the Journal of Adlerian Theory Research & Practice = Indiv Psychol Individual Psychology-the Journal of Adlerian Theory Research & Practice = Indiv. Psychol. Indivisible Human Rights: A History = Pa Stud Hum Rights Indivisible Human Rights: A History = Pa. Stud. Hum. Rights. Indlas 2007: Industrial Laser Applications = Proc Spie Indlas 2007: Industrial Laser Applications = Proc. Spie. Indlas 2007: Industrial Laser Applications = P Soc Photo-opt Ins Indlas 2007: Industrial Laser Applications = P. Soc. Photo-opt. Ins. Indo Asia = Indo Asia Indo-european Language Family: Questions About Its Status = J Indo-eur Stud Mono Indo-european Language Family: Questions About Its Status = J. Indo-eur. Stud. Mono. Indogermanische Forschungen = IF Indogermanische Forschungen = Indoger Forsch Indogermanische Forschungen = Indoger. Forsch. Indogermanische Forschungen = IndogermF Indo-iranian Journal = Indo-iran J Indo-iranian Journal = Indo-iran. J. Indo-Iranian journal = Indo Iran J Indonesia and The Malay World = Indones Malay World Indonesia and The Malay World = Indones. Malay World Indonesian Journey: A Nation's Quest for Democracy, Stability and Prosperity = Asian Polit Econ Sec Indonesian Journey: A Nation's Quest for Democracy, Stability and Prosperity = Asian. Polit. Econ. Sec. Indonesian Primates = Dev Primatol-prog Pr Indonesian Primates = Dev. Primatol-prog. Pr. Indoor air = Indoor Air Indoor Air = Indoor Air Indoor Air-international Journal of Indoor Air Quality and Climate = Indoor Air Indoor and Built Environment = Indoor Built Environ Indoor and Built Environment = Indoor Built Environ. Indoor Environment = Indoor Environ Indoor Environment = Indoor Environ. Indo-russian Workshop On Micromechanical Systems = P Soc Photo-opt Ins Indo-russian Workshop On Micromechanical Systems = P. Soc. Photo-opt. Ins. Inducible Plant Proteins : Their Biochemistry and Molecular Biology = Soc Exp Biol Semin S Inducible Plant Proteins : Their Biochemistry and Molecular Biology = Soc. Exp. Biol. Semin. S. Inducing Food Insecurity = Sem P Scand Inducing Food Insecurity = Sem. P. Scand. Induction, Algorithmic Learning Theory, and Philosophy = Logic Epistemol Unit Induction, Algorithmic Learning Theory, and Philosophy = Logic. Epistemol. Unit. Induction Motor Control Design = Adv Ind Control Induction Motor Control Design = Adv. Ind. Control Inductive Dependency Parsing = Text Speech Lang Tec Inductive Dependency Parsing = Text. Speech. Lang. Tec. Inductive Inference for Large Scale Text Classification: Kernel Approaches and Techniques = Stud Comput Intell Inductive Inference for Large Scale Text Classification: Kernel Approaches and Techniques = Stud. Comput. Intell. Inductive Logic Programming Approach to Statistical Relational Learning = Front Artif Intel Ap Inductive Logic Programming Approach to Statistical Relational Learning = Front. Artif. Intel. Ap. Inductive Logic Programming, Ilp 2008 = Lect Notes Artif Int Inductive Logic Programming, Ilp 2008 = Lect. Notes. Artif. Int. Inductive Logic Programming = Lect Notes Artif Int Inductive Logic Programming = Lect. Notes. Artif. Int. Inductive Logic Programming, Proceedings = Lect Notes Artif Int Inductive Logic Programming, Proceedings = Lect. Notes. Artif. Int. Inductive Powering: Basic Theory and Application to Biomedical Systems = Analog Circ Sig Proc Inductive Powering: Basic Theory and Application to Biomedical Systems = Analog. Circ. Sig. Proc. Inductive Synthesis of Functional Programs: Universal Planning, Folding of Finite Programs, and Schema Abstraction By Analogical Reasoning = Lect Notes Artif Int Inductive Synthesis of Functional Programs: Universal Planning, Folding of Finite Programs, and Schema Abstraction By Analogical Reasoning = Lect. Notes. Artif. Int. Industria Conserve = Ind Conserve Industria Conserve = Ind. Conserve Industrial Agglomeration and New Technologies: A Global Perspective = New Horiz Reg Sci Industrial Agglomeration and New Technologies: A Global Perspective = New Horiz. Reg. Sci. Industrial and Commercial Applications of Smart Structures Technologies 2007 = Proc Spie Industrial and Commercial Applications of Smart Structures Technologies 2007 = Proc. Spie. Industrial and Commercial Applications of Smart Structures Technologies 2007 = P Soc Photo-opt Ins Industrial and Commercial Applications of Smart Structures Technologies 2007 = P. Soc. Photo-opt. Ins. Industrial and Commercial Applications of Smart Structures Technologies 2008 = Proc Spie Industrial and Commercial Applications of Smart Structures Technologies 2008 = Proc. Spie. Industrial and Commercial Applications of Smart Structures Technologies 2010 = Proc Spie Industrial and Commercial Applications of Smart Structures Technologies 2010 = Proc. Spie. Industrial and Commercial Applications of Smart Structures Technologies 2010 = P Soc Photo-opt Ins Industrial and Commercial Applications of Smart Structures Technologies 2010 = P. Soc. Photo-opt. Ins. Industrial and Commercial Applications of Smart Structures Technologies 2011 = Proc Spie Industrial and Commercial Applications of Smart Structures Technologies 2011 = Proc. Spie. Industrial and Commercial Applications of Smart Structures Technologies - Smart Structures and Materials 1996 = P Soc Photo-opt Ins Industrial and Commercial Applications of Smart Structures Technologies - Smart Structures and Materials 1996 = P. Soc. Photo-opt. Ins. Industrial and Commercial Applications of Smart Structures Technologies: Smart Structures and Materials 1997 = P Soc Photo-opt Ins Industrial and Commercial Applications of Smart Structures Technologies: Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Industrial and Commercial Applications of Smart Structures Technologies - Smart Structures and Materials 1998 = P Soc Photo-opt Ins Industrial and Commercial Applications of Smart Structures Technologies - Smart Structures and Materials 1998 = P. Soc. Photo-opt. Ins. Industrial and Commercial Power Systems and Technical Conference = Ind Commer Power Industrial and Commercial Power Systems and Technical Conference = Ind. Commer. Power Industrial and Commercial Power Systems Technical Conference 1991 = Ind Com Pow Industrial and Commercial Power Systems Technical Conference 1991 = Ind. Com. Pow. Industrial and Commercial Power Systems Technical Conference 1993 : Conference Record = Ind Com Pow Industrial and Commercial Power Systems Technical Conference 1993 : Conference Record = Ind. Com. Pow. Industrial and Commercial Training = Ind Commer Train Industrial and Commercial Training = Ind. Commer. Train. Industrial and Corporate Change=Ind. Corp. Change Industrial and Corporate Change = Ind Corp Change Industrial and Corporate Change = Ind. Corp. Change Industrial and Engineering Applications of Artificial Intelligence and Expert Systems = Lect Notes Artif Int Industrial and Engineering Applications of Artificial Intelligence and Expert Systems = Lect. Notes. Artif. Int. Industrial and Engineering Chemistry-analytical Edition = Ind Eng Chem Industrial and Engineering Chemistry-analytical Edition = Ind. Eng. Chem. Industrial and Engineering Chemistry, Analytical Edition = Ind. Eng. Chem. Anal. Ed. Industrial and Engineering Chemistry, Analytical Edition = Ind. Eng. Chem., Anal. Ed. Industrial and Engineering Chemistry Fundamentals = Ind. Eng. Chem. Fundam. Industrial and Engineering Chemistry = Ind Eng Chem Industrial and Engineering Chemistry = Ind. Eng. Chem. Industrial and Engineering Chemistry Research = Ind. Eng. Chem. Res. Industrial and Highway Sensors Technology = P Soc Photo-opt Ins Industrial and Highway Sensors Technology = P. Soc. Photo-opt. Ins. Industrial and Labor Relations Review = Ind. Labor Relat. Rev. Industrial and Labor Relations Review=Ind. Lab. Relat. Rev. Industrial and Organizational Psychology-perspectives On Science and Practice = Ind Organ Psychol-us Industrial and Organizational Psychology-perspectives On Science and Practice = Ind. Organ. Psychol-us. Industrial and Scientific Uses of High-power Lasers = P Soc Photo-opt Ins Industrial and Scientific Uses of High-power Lasers = P. Soc. Photo-opt. Ins. Industrial and Technological Applications of Neutrons = P Int Sch Phys Industrial and Technological Applications of Neutrons = P. Int. Sch. Phys. Industrial Application of Electromagnetic Computer Codes = Euro C Comp Industrial Application of Electromagnetic Computer Codes = Euro. C. Comp. Industrial Application of Enzymes On Carbohydrate-based Material = Acs Sym Ser Industrial Application of Enzymes On Carbohydrate-based Material = Acs. Sym. Ser. Industrial Applications of Holographic and Speckle Measuring Techniques = P Soc Photo-opt Ins Industrial Applications of Holographic and Speckle Measuring Techniques = P. Soc. Photo-opt. Ins. Industrial Applications of Knowledge-based Diagnosis = Adv Ind Eng Industrial Applications of Knowledge-based Diagnosis = Adv. Ind. Eng. Industrial Applications of Laser Radar = P Soc Photo-opt Ins Industrial Applications of Laser Radar = P. Soc. Photo-opt. Ins. Industrial Applications of Optical Inspection, Metrology, and Sensing = P Soc Photo-opt Ins Industrial Applications of Optical Inspection, Metrology, and Sensing = P. Soc. Photo-opt. Ins. Industrial Applications of Plasma Physics = Int Sch Pl Industrial Applications of Plasma Physics = Int. Sch. Pl. Industrial Applications of Semantic Web = Int Fed Info Proc Industrial Applications of Semantic Web = Int. Fed. Info. Proc. Industrial Applications of Surfactants Ii = Roy Soc Ch Industrial Applications of Surfactants Ii = Roy. Soc. Ch. Industrial Applications of Surfactants Iv = Roy Soc Ch Industrial Applications of Surfactants Iv = Roy. Soc. Ch. Industrial Applications of The Mossbauer Effect = Aip Conf Proc Industrial Applications of The Mossbauer Effect = Aip. Conf. Proc. Industrial Applications Society : 36th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industrial Applications Society : 36th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industrial Applications Society : 38th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industrial Applications Society : 38th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industrial Archaeology: Future Directions = Contr Glob Hist Arch Industrial Archaeology: Future Directions = Contr. Glob. Hist. Arch. Industrial archaeology review = Ind Archaeol Rev Industrial Archaeology Review = Ind Archaeol Rev Industrial Archaeology Review = Ind. Archaeol. Rev. Industrial Automation and Internet/intranet-technology = Vdi Bericht Industrial Automation and Internet/intranet-technology = Vdi. Bericht. Industrial Biocides: Selection and Application = Roy Soc Ch Industrial Biocides: Selection and Application = Roy. Soc. Ch. Industrial Biomaterial Visions: Spearhead Programme 2009-2013 = Vtt Res Notes Industrial Biomaterial Visions: Spearhead Programme 2009-2013 = Vtt. Res. Notes. Industrial Biotechnology in Agriculture, Industry and Medicine = Ind Biotech Age Ind Industrial Biotechnology in Agriculture, Industry and Medicine = Ind. Biotech. Age. Ind. Industrial Biotechnology = Ind. Biotechnol. Industrial Biotechnology: Patenting Trends and Innovation = Ind Biotech Age Ind Industrial Biotechnology: Patenting Trends and Innovation = Ind. Biotech. Age. Ind. Industrial Ceramics = Ind Ceram Industrial Ceramics = Ind. Ceram. Industrial Chemistry Library = Ind Chem L Industrial Chemistry Library = Ind. Chem. L. Industrial Clusters in Asia: Analyses of Their Competition and Cooperation = Ide-jetro Ser Industrial Clusters in Asia: Analyses of Their Competition and Cooperation = Ide-jetro. Ser. Industrial Color Physics = Springer Ser Opt Sci Industrial Color Physics = Springer. Ser. Opt. Sci. Industrial & Commercial Power Systems Technical Conf = Ind Com Pow Industrial & Commercial Power Systems Technical Conf = Ind. Com. Pow. Industrial Crops and Products = Ind Crop Prod Industrial Crops and Products = Ind. Crop. Prod. Industrial Crops and Products = Ind. Crops Prod. Industrial Design Magazine = Ind Design Mag Industrial Design Magazine = Ind. Design Mag. Industrial Development and The Social Fabric = Ind Dev Soc Industrial Development and The Social Fabric = Ind. Dev. Soc. Industrial Development in Postwar Japan = Routl Explor Econ Hi Industrial Development in Postwar Japan = Routl. Explor. Econ. Hi. Industrial Diamond Review = Ind Diamond Rev Industrial Diamond Review = Ind. Diamond Rev. Industrial Distribution = Ind Distrib Industrial Distribution = Ind. Distrib. Industrial Dynamics Entrepreneurship and Innovation = Ind Dynam Entrep Inn Industrial Dynamics Entrepreneurship and Innovation = Ind. Dynam. Entrep. Inn. Industrial Dynamics Entrepreneurship and Innovation = Ind Dyn Entrep Innov Industrial Dynamics Entrepreneurship and Innovation = Ind. Dyn. Entrep. Innov. Industrial Effluent Technology = Bhr Gr Conf Ser Publ Industrial Effluent Technology = Bhr. Gr. Conf. Ser. Publ. Industrial Electronics = Ind Electron Industrial Electronics = Ind. Electron. Industrial Energy Management = Vdi Bericht Industrial Energy Management = Vdi. Bericht. Industrial Engineer = Ind Eng Industrial Engineer = Ind. Eng. Industrial engineering (American Institute of Industrial Engineers) = Ind Eng Industrial & Engineering Chemistry Chemical & Engineering Data Series = Ind. Eng. Chem. Chem. Eng. Data Series Industrial & Engineering Chemistry Fundamentals = Ind Eng Chem Fund Industrial & Engineering Chemistry Fundamentals = Ind. Eng. Chem. Fund. Industrial & Engineering Chemistry Process Design and Development = Ind Eng Chem Proc Dd Industrial & Engineering Chemistry Process Design and Development = Ind. Eng. Chem. Proc. Dd. Industrial & Engineering Chemistry Process Design and Development = Ind. Eng. Chem. Process Des. Dev. Industrial & Engineering Chemistry Product Research and Development = Ind Eng Chem Prod Rd Industrial & Engineering Chemistry Product Research and Development = Ind. Eng. Chem. Prod. Rd. Industrial & Engineering Chemistry Product Research and Development = Ind. Eng. Chem. Prod. Res. Dev. Industrial & engineering chemistry research = Ind Eng Chem Res Industrial & Engineering Chemistry Research = Ind Eng Chem Res Industrial & Engineering Chemistry Research = Ind. Eng. Chem. Res. Industrial Engineering = Ind Eng Industrial Engineering = Ind. Eng. Industrial Environmental Chemistry = Ind Univ C Industrial Environmental Chemistry = Ind. Univ. C. Industrial Fermentation: Food Processes, Nutrient Sources and Production Strategies = Food Sci Technol Industrial Fermentation: Food Processes, Nutrient Sources and Production Strategies = Food Sci. Technol. Industrial Finishing = Ind Finish Industrial Finishing = Ind. Finish. Industrial Gerontology = Ind Gerontol Industrial Gerontology = Ind. Gerontol. Industrial health = Ind Health Industrial Health=Ind Health;; Industrial Health = Ind Health Industrial Health = Ind. Health Industrial health monthly = Ind Health Mon Industrial hygiene newsletter = Ind Hyg Newsl Industrial Hygiene Science Series = Ind Hyg Sci Industrial Hygiene Science Series = Ind. Hyg. Sci. Industrial Information Technology = Ind Inform Technol Industrial Information Technology = Ind. Inform. Technol. Industrial Innovation Series = Ind Innov Ser Industrial Innovation Series = Ind. Innov. Ser. Industrial Inspection Ii = P Soc Photo-opt Ins Industrial Inspection Ii = P. Soc. Photo-opt. Ins. Industrialization and Productivity = Ind Prod Industrialization and Productivity = Ind. Prod. Industrialization Forum = Ind Forum Industrialization Forum = Ind. Forum Industrial Laboratory = Ind Lab+ Industrial Laboratory = Ind. Lab+.+ Industrial & labor relations review = Ind Labor Relat Rev Industrial & Labor Relations Review = Ind Labor Relat Rev Industrial & Labor Relations Review = Ind. Labor Relat. Rev. Industrial Lasers and Laser Material Processing = P Soc Photo-opt Ins Industrial Lasers and Laser Material Processing = P. Soc. Photo-opt. Ins. Industrial Lubrication and Tribology = Ind Lubr Tribol Industrial Lubrication and Tribology = Ind. Lubr. Tribol. Industrial Management & Data Systems = Ind Manage Data Syst Industrial Management & Data Systems = Ind. Manage. Data Syst. Industrial Marketing Management = Ind Market Manag Industrial Marketing Management = Ind. Market. Manag. Industrial Mathematics = Indust. Math. Industrial Medicine and Surgery = Ind Med Surg Industrial Medicine and Surgery = Ind. Med. Surg. Industrial medicine & surgery = Ind Med Surg Industrial Minerals and Extractive Industry Geology = Geol Soc Spec Publ Industrial Minerals and Extractive Industry Geology = Geol. Soc. Spec. Publ. Industrial Mixing Fundamentals With Applications = Aiche Sym S Industrial Mixing Fundamentals With Applications = Aiche. Sym. S. Industrial, Municipal, and Medical Waste Incineration Diagnostics and Control = P Soc Photo-opt Ins Industrial, Municipal, and Medical Waste Incineration Diagnostics and Control = P. Soc. Photo-opt. Ins. Industrial Optical Sensing and Metrology: Applications and Integration = P Soc Photo-opt Ins Industrial Optical Sensing and Metrology: Applications and Integration = P. Soc. Photo-opt. Ins. Industrial Optical Sensors for Metrology and Inspection = P Soc Photo-opt Ins Industrial Optical Sensors for Metrology and Inspection = P. Soc. Photo-opt. Ins. Industrial Organization and Regulation of The Securities Industry = Nber Conf R Industrial Organization and Regulation of The Securities Industry = Nber. Conf. R. Industrial Organization Review=Ind. Organ. Rev. Industrial Photography = Ind Photogr Industrial Photography = Ind. Photogr. Industrial Policy in Europe = Rout S Ind Industrial Policy in Europe = Rout. S. Ind. Industrial Property in The Biomedical Age: Challenges for Asia = Max Planck Series Industrial Property in The Biomedical Age: Challenges for Asia = Max. Planck. Series. Industrial R & D The Human Resource = Eirma Conf Industrial R & D The Human Resource = Eirma. Conf. Industrial Relations=Ind. Relat. Industrial Relations = Ind Relat Industrial Relations = Ind. Relat. Industrial Relations in Korea = Routl Adv Korean Stu Industrial Relations in Korea = Routl. Adv. Korean. Stu. Industrial Relations Research Association - Proceedings of The Forty-eighth Annual Meeting = Ind Rel Res Industrial Relations Research Association - Proceedings of The Forty-eighth Annual Meeting = Ind. Rel. Res. Industrial Relations Research Association Series = Ind Rel Res Industrial Relations Research Association Series = Ind. Rel. Res. Industrial Relations Research Association Series, Proceeding = Ind Rel Res Industrial Relations Research Association Series, Proceeding = Ind. Rel. Res. Industrial Relations Research Association Series, Proceedings = Ind Rel Res Industrial Relations Research Association Series, Proceedings = Ind. Rel. Res. Industrial Relations Research Association Series - Proceedings of The Forty-seventh Annual Meeting = Ind Rel Res Industrial Relations Research Association Series - Proceedings of The Forty-seventh Annual Meeting = Ind. Rel. Res. Industrial Research & Development = Res Dev Industrial Research & Development = Res. Dev. Industrial Research = Ind Res Industrial Research = Ind. Res. Industrial Robot-an International Journal = Ind Robot Industrial Robot-an International Journal = Ind. Robot. Industrial Robot = Ind Robot Industrial Robot = Ind. Robot Industrial Sensing Systems = Proc Spie Industrial Sensing Systems = Proc. Spie. Industrial Sensing Systems = P Soc Photo-opt Ins Industrial Sensing Systems = P. Soc. Photo-opt. Ins. Industrial Statistics = Contr Stat Industrial Statistics = Contr. Stat. Industrial Ventilation = Vdi Bericht Industrial Ventilation = Vdi. Bericht. Industrial Vision Metrology = P Soc Photo-opt Ins Industrial Vision Metrology = P. Soc. Photo-opt. Ins. Industrial Wastes = Ind Waste Industrial Wastes = Ind. Waste. Industria Textila = Ind Textila Industria Textila = Ind. Textila Industrie Alimentari = Ind Aliment-italy Industrie Alimentari = Ind. Aliment-italy. Industrie Chimique Belge-belgische Chemische Industrie = Ind Chim Belg Industrie Chimique Belge-belgische Chemische Industrie = Ind. Chim. Belg. Industrieentwicklung: Ein Deutsch-britischer Dialog = Prinz Albert Stud Industrieentwicklung: Ein Deutsch-britischer Dialog = Prinz. Albert. Stud. Industrielle Organisation = Ind. Organ. Industries and Globalization-the Political Casuality of Difference = Glob Gov Industries and Globalization-the Political Casuality of Difference = Glob. Gov. Industry and Development=Industry Devel. Industry and health care (Ballinger Publishing Co.) = Ind Health Care (Cambridge Ma) Industry and health care = Ind Health Care Industry and Health Care = Ind. Health Care (Cambridge Ma.) Industry and Innovation = Ind Innov Industry and Innovation = Ind. Innov. Industry and Innovation=Industry Innovation Industry Applications Society : 37th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society : 37th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society : 39th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society : 39th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 40th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 40th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 41st Annual Petroleum and Chemical Industry Conference, Record of Conference Papers = Record Conf Pap Petr Industry Applications Society 41st Annual Petroleum and Chemical Industry Conference, Record of Conference Papers = Record Conf. Pap. Petr. Industry Applications Society 42nd Annual Petroleum and Chemical Industry Conference - Record of Conference Papers = Record Conf Pap Petr Industry Applications Society 42nd Annual Petroleum and Chemical Industry Conference - Record of Conference Papers = Record Conf. Pap. Petr. Industry Applications Society 44th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 44th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 45th Annual Petroleum and Chemical Industry Conference - Record of Conference Papers = Record Conf Pap Petr Industry Applications Society 45th Annual Petroleum and Chemical Industry Conference - Record of Conference Papers = Record Conf. Pap. Petr. Industry Applications Society 47th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 47th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 48th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 48th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 49th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 49th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 50th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 50th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 51st Annual Petroleum and Chemical Industry Technical Conference = Record Conf Pap Petr Industry Applications Society 51st Annual Petroleum and Chemical Industry Technical Conference = Record. Conf. Pap. Petr. Industry Applications Society 52nd Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 52nd Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 53rd Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 53rd Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 54th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 54th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 55th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 55th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry Applications Society 56th Annual Petroleum and Chemical Industry Conference = Record Conf Pap Petr Industry Applications Society 56th Annual Petroleum and Chemical Industry Conference = Record. Conf. Pap. Petr. Industry-university Cooperative Chemistry Program Symposia = Ind Univ C Industry-university Cooperative Chemistry Program Symposia = Ind. Univ. C. Industry week = Ind Week Industry Week = Ind Week Industry Week = Ind. Week Inec 96: Warship Design - What Is So Different?, Conference Proceedings, Pt 1 = Inec Ser Inec 96: Warship Design - What Is So Different?, Conference Proceedings, Pt 1 = Inec Ser. Inec 96: Warship Design - What Is So Different:, Conference Proceedings, Pt Ii = Inec Ser Inec 96: Warship Design - What Is So Different:, Conference Proceedings, Pt Ii = Inec Ser. Inec Series = Inec Ser Inec Series = Inec Ser. Inelastic Behaviour of Structures Under Variable Repeated Loads: Direct Analysis Methods = Cism Cour L Inelastic Behaviour of Structures Under Variable Repeated Loads: Direct Analysis Methods = Cism. Cour. L. Inelasticity and Micromechanics of Metal Matrix Composites = Stud Appl Mech Inelasticity and Micromechanics of Metal Matrix Composites = Stud. Appl. Mech. Inelasticity of Materials: An Engineering Approach and A Practical Guide = Ser Adv Math Appl Sc Inelasticity of Materials: An Engineering Approach and A Practical Guide = Ser. Adv. Math. Appl. Sc. Inelastic Light Scattering of Semiconductor Nanostructures: Fundamentals and Recent Advances = Springer Tr Mod Phys Inelastic Light Scattering of Semiconductor Nanostructures: Fundamentals and Recent Advances = Springer. Tr. Mod. Phys. Inequalities and Disparities in Health Care and Health: Concerns of Patients, Providers and Insurers = Res Sociol Health Ca Inequalities and Disparities in Health Care and Health: Concerns of Patients, Providers and Insurers = Res. Sociol. Health Ca. Inequalities Based On Sobolev Representations = Springerbrief Math Inequalities Based On Sobolev Representations = Springerbrief. Math. Inequalities: Theory of Majorization and Its Applications, Second Edition = Springer Ser Stat Inequalities: Theory of Majorization and Its Applications, Second Edition = Springer. Ser. Stat. Inequality Across Societies: Families, Schools and Persisting Stratification = Res Sociol Educ Inequality Across Societies: Families, Schools and Persisting Stratification = Res. Sociol. Educ. Inequality and Economic Integration = Routl Siena Stud Pol Inequality and Economic Integration = Routl. Siena. Stud. Pol. Inequality and Growth: Theory and Policy Implications = Cesifo Seminar Ser Inequality and Growth: Theory and Policy Implications = Cesifo. Seminar. Ser. Inequality and Opportunity: Papers From The Second Ecineq Society Meeting = Res Ec Ineq Inequality and Opportunity: Papers From The Second Ecineq Society Meeting = Res. Ec. Ineq. Inequality and Opportunity: Papers From The Second Ecineq Society Meeting = Res Econ Inequal Inequality and Opportunity: Papers From The Second Ecineq Society Meeting = Res. Econ. Inequal. Inequality and Poverty = Res Econ Inequal Inequality and Poverty = Res. Econ. Inequal. Inequality, Consumer Credit and The Saving Puzzle = New Dir Mod Econ Inequality, Consumer Credit and The Saving Puzzle = New. Dir. Mod. Econ. Inequality, Crime and Social Control = Crime Soc Inequality, Crime and Social Control = Crime Soc. Inequality in Education: Comparative and International Perspectives = Cerc Stud Comp Educ Inequality in Education: Comparative and International Perspectives = Cerc. Stud. Comp. Educ. Inequality, Poverty and Well-being = Stud Dev Econ Policy Inequality, Poverty and Well-being = Stud. Dev. Econ. Policy. Inequality Theory and Applications = Inequal Theory Appl Inequality Theory and Applications = Inequal. Theory Appl. Inequality Theory and Applications, Vol 4 = Inequal Theory Appl Inequality Theory and Applications, Vol 4 = Inequal. Theory Appl. Inequality Theory and Applications, Vol 5 = Inequal Theory Appl Inequality Theory and Applications, Vol 5 = Inequal. Theory Appl. Inequality Theory and Applications, Vol 6 = Inequal Theory Appl Inequality Theory and Applications, Vol 6 = Inequal. Theory Appl. Inerleukin 12: Cellular and Molecular Immunology of An Important Regulatory Cytokine = Ann Ny Acad Sci Inerleukin 12: Cellular and Molecular Immunology of An Important Regulatory Cytokine = Ann. Ny. Acad. Sci. Inertial Confinement Fusion = Res Tr Phys Inertial Confinement Fusion = Res. Tr. Phys. Inertial Coordinate System On The Sky = Iau Symp Inertial Coordinate System On The Sky = Iau. Symp. Inertial Navigation Systems Analysis = Artech Hse Gnss Tech Inertial Navigation Systems Analysis = Artech. Hse. Gnss. Tech. Ines 2005: 9th International Conference On Intelligent Engineering Systems = Int C Intell Eng Sys Ines 2005: 9th International Conference On Intelligent Engineering Systems = Int. C. Intell. Eng. Sys. Ines 2007: 11th International Conference On Intelligent Engineering Systems, Proceedings = Int C Intell Eng Sys Ines 2007: 11th International Conference On Intelligent Engineering Systems, Proceedings = Int. C. Intell. Eng. Sys. Ines 2008: 12th International Conference On Intelligent Engineering Systems, Proceedings = Int C Intell Eng Sys Ines 2008: 12th International Conference On Intelligent Engineering Systems, Proceedings = Int. C. Intell. Eng. Sys. Inevitable Aging? Contributions to Evolutionary-demographic Theory = Demogr Res Monogr Inevitable Aging? Contributions to Evolutionary-demographic Theory = Demogr. Res. Monogr. Infancia Y Aprendizaje = Infanc Aprendiz Infancia Y Aprendizaje = Infanc. Aprendiz. Infancy = Infancy Infancy : the official journal of the International Society on Infant Studies = Infancy Infant and child development = Infant Child Dev Infant and Child Development = Infant Child Dev Infant and Child Development = Infant Child Dev. Infant behavior & development = Infant Behav Dev Infant Behavior & Development = Infant Behav Dev Infant Behavior & Development = Infant Behav. Dev. Infantile Nutrition - An Update = Beitr Infus Infantile Nutrition - An Update = Beitr. Infus. Infant mental health journal = Infant Ment Health J Infant Mental Health Journal = Infant Ment Health J Infant Mental Health Journal = Infant Ment. Health J. Infant Mental Health Journal = Inf Mental Hlth J Infant Mental Health Journal = Inf. Mental Hlth. J. Infants and young children = Infants Young Child Infants and Young Children = Infant Young Child Infants and Young Children = Infant. Young Child. Infants & Young Children = Infant Young Child Infants & Young Children = Infant. Young Child. Infanzia anormale = Infanz Anorm Infection and immunity = Infect Immun Infection and Immunity=Infect Immun;; Infection and Immunity = Infect Immun Infection and Immunity = Infect. Immun. Infection Control and Hospital Epidemiology = Infect Cont Hosp Ep Infection Control and Hospital Epidemiology = Infect. Cont. Hosp. Ep. Infection Control and Hospital Epidemiology=Infect Control Hosp Epidemiol;; Infection Control and Hospital Epidemiology = Infect. Control Hosp. Epidemiol. Infection control and hospital epidemiology : the official journal of the Society of Hospital Epidemiologists of America = Infect Control Hosp Epidemiol Infection Control and Urological Care = Infect. Control Urol. Care Infection control Canada = Infect Control Can Infection Control Canada = Infect. Control Can. Infection control digest = Infect Control Dig Infection Control Digest = Infect. Control Dig. Infection Control for The Dental Team = Quintessent Dent Pra Infection Control for The Dental Team = Quintessent. Dent. Pra. Infection control : IC = Infect Control Infection Control = Infect. Control Infection control rounds = Infect Control Rounds Infection Control Rounds = Infect. Control Rounds Infection control & urological care = Infect Control Urol Care Infection control weekly = Infect Control Wkly Infection Genetics and Evolution = Infect Genet Evol Infection Genetics and Evolution = Infect. Genet. Evol. Infection, Genetics and Evolution = Infect. Genet. Evol. Infection, genetics and evolution : journal of molecular epidemiology and evolutionary genetics in infectious diseases = Infect Genet Evol Infection=Infection;; Infection = Infection Infections and Haemorrhage in Acute Leukaemia = Bergamo Hae Infections and Haemorrhage in Acute Leukaemia = Bergamo. Hae. Infections in Childhood: Ear, Nose, and Throat Aspects = Int Congr Ser Infections in Childhood: Ear, Nose, and Throat Aspects = Int. Congr. Ser. Infections in medicine = Infect Med Infections in Medicine = Infect Med Infections in Medicine = Infect. Med. Infections in Surgery = Infect Surg Infections in Surgery = Infect. Surg. Infections in The Critically Ill: An Ongoing Challenge = Top Anaesth Crit Car Infections in The Critically Ill: An Ongoing Challenge = Top. Anaesth. Crit. Car. Infections in Urology = Infect Urol Infections in Urology = Infect. Urol. Infectious agents and cancer = Infect Agent Cancer Infectious agents and disease = Infect Agents Dis Infectious Agents and Disease = Infect. Agents Dis. Infectious Agents and Disease-reviews Issues and Commentary = Infect Agent Dis Infectious Agents and Disease-reviews Issues and Commentary = Infect. Agent. Dis. Infectious Disease and Therapy = Infec Dis T Infectious Disease and Therapy = Infec. Dis. T. Infectious Disease Clinics of North America = Infect Dis Clin N Am Infectious Disease Clinics of North America = Infect. Dis. Clin. N. Am. Infectious disease clinics of North America = Infect Dis Clin North Am Infectious Disease Clinics of North America=Infect Dis Clin North Am;; Infectious Disease Clinics of North America = Infect. Dis. Clin. North Am. Infectious Disease = Infect Dis Infectious Disease = Infect. Dis. Infectious Disease Informatics and Biosurveillance = Integr Ser Inform Sy Infectious Disease Informatics and Biosurveillance = Integr. Ser. Inform. Sy. Infectious Disease Informatics: Syndromic Surveillance for Public Health and Bio-defense = Integr Ser Inform Sy Infectious Disease Informatics: Syndromic Surveillance for Public Health and Bio-defense = Integr. Ser. Inform. Sy. Infectious Disease Modelling Research Progress = Public Health 21st C Infectious Disease Modelling Research Progress = Public. Health. 21st. C. Infectious Diseases = Actual Pharm Biol Cl Infectious Diseases = Actual. Pharm. Biol. Cl. Infectious Disease Series = Infec Dis S Infectious Disease Series = Infec. Dis. S. Infectious Diseases in Clinical Practice = Infect Dis Clin Prac Infectious Diseases in Clinical Practice = Infect. Dis. Clin. Prac. Infectious diseases = Infect Dis Infectious diseases in obstetrics and gynecology = Infect Dis Obstet Gynecol Infectious Diseases in Obstetrics and Gynecology = Infect. Dis. Obstet. Gynecol. Infectious Diseases of The Liver = Falk Symp Infectious Diseases of The Liver = Falk. Symp. Infectious disorders drug targets = Infect Disord Drug Targets Infectious Disorders Drug Targets = Infect. Disord. Drug Targets Infectious Disorders: Drug Targets = Infect. Disord.: Drug Targets Infectious Pregnancy Complications = Preg Infants-med Psy Infectious Pregnancy Complications = Preg. Infants-med. Psy. Infectious Processes: Knowledge, Discourse, and The Politics of Prions = Sci Technol Med Mod Infectious Processes: Knowledge, Discourse, and The Politics of Prions = Sci. Technol. Med. Mod. Inferior Olivary Complex = Adv Anat Embryol Cel Inferior Olivary Complex = Adv. Anat. Embryol. Cel. Infertility = Infertility Infertility in The Modern World: Present and Future Prospects = Biosocial S Infertility in The Modern World: Present and Future Prospects = Biosocial. S. Infini = Infini Infinite Dimensional Algebras and Quantum Integrable Systems = Prog Math Infinite Dimensional Algebras and Quantum Integrable Systems = Prog. Math. Infinite Dimensional Analysis Quantum Probability and Related Topics = Infin Dimens Anal Qu Infinite Dimensional Analysis Quantum Probability and Related Topics = Infin. Dimens. Anal. Qu. Infinite Dimensional Analysis, Quantum Probability and Related Topics = Infin. Dimens. Anal. Quantum Probab. Relat. Top. Infinite-dimensional Aspects of Representation Theory and Applications = Contemp Math Infinite-dimensional Aspects of Representation Theory and Applications = Contemp. Math. Infinite Length Modules = Trends Math Infinite Length Modules = Trends. Math. Infinite Regress Arguments = Argum Lib Infinite Regress Arguments = Argum. Lib. Infinity in Logic and Computation = Lect Notes Artif Int Infinity in Logic and Computation = Lect. Notes. Artif. Int. In/fire ethics : newsletter of the International Network of Feminists Interested in Reproductive Health = In Fire Ethics Infirmiere Auxiliaire = Infirm. Aux. Infirmiere Canadienne = Infirm. Can. Infirmiere du Quebec = Infirm. Que. Infirmiere Francaise = Infirm. Fr. Infirmiere Haitienne = Infirm. Haiti. Infirmiere = Infirmiere Infirmiers = Infirmiers Inflammasomes = Prog Inflamm Res Ser Inflammasomes = Prog. Inflamm. Res. Ser. Inflammation & allergy drug targets = Inflamm Allergy Drug Targets Inflammation & Allergy: Drug Targets = Inflammation Allergy: Drug Targets Inflammation and Allergy Drug Targets = Inflamm. Allergy Drug Targets Inflammation and Cancer: Methods and Protocols, Vol 2: Molecular Analysis and Pathways = Methods Mol Biol Inflammation and Cancer: Methods and Protocols, Vol 2: Molecular Analysis and Pathways = Methods Mol. Biol. Inflammation and Drug Therapy Series = Infl Dr Th Inflammation and Drug Therapy Series = Infl. Dr. Th. Inflammation and Retinal Disease: Complement Biology and Pathology = Adv Exp Med Biol Inflammation and Retinal Disease: Complement Biology and Pathology = Adv. Exp. Med. Biol. Inflammation=Inflammation;; Inflammation = Inflammation Inflammation: Mechanisms and Therapeutics = Agent Action Suppl Inflammation: Mechanisms and Therapeutics = Agent. Action. Suppl. Inflammation Research = Inflammation Res. Inflammation Research=Inflamm Res;; Inflammation Research = Inflamm Res Inflammation Research = Inflamm. Res. Inflammation research : official journal of the European Histamine Research Society ... [et al.] = Inflamm Res Inflammatory Bowel Disease: A Clinical Case Approach to Pathophysiology, Diagnosis, and Treatment = Falk Symp Inflammatory Bowel Disease: A Clinical Case Approach to Pathophysiology, Diagnosis, and Treatment = Falk. Symp. Inflammatory Bowel Disease: Diagnosis and Therapeutics, Second Edition = Clin Gastroent-ser Inflammatory Bowel Disease: Diagnosis and Therapeutics, Second Edition = Clin. Gastroent-ser. Inflammatory Bowel Disease: Genetics, Barrier Function, Immunologic Mechanisms, and Microbial Pathways = Ann Ny Acad Sci Inflammatory Bowel Disease: Genetics, Barrier Function, Immunologic Mechanisms, and Microbial Pathways = Ann. Ny. Acad. Sci. Inflammatory Bowel Disease : Progress in Basic Research and Clinical Implications = Falk Symp Inflammatory Bowel Disease : Progress in Basic Research and Clinical Implications = Falk. Symp. Inflammatory Bowel Diseases 1990 = Dev Gastro Inflammatory Bowel Diseases 1990 = Dev. Gastro. Inflammatory Bowel Diseases and Chronic Recurrent Abdominal Pain = Falk Symp Inflammatory Bowel Diseases and Chronic Recurrent Abdominal Pain = Falk. Symp. Inflammatory Bowel Diseases = Falk Symp Inflammatory Bowel Diseases = Falk. Symp. Inflammatory bowel diseases = Inflamm Bowel Dis Inflammatory Bowel Diseases = Inflamm Bowel Dis Inflammatory Bowel Diseases = Inflamm. Bowel Dis. Inflammatory Bowel Diseases = Nes Nutr Ws Inflammatory Bowel Diseases = Nes. Nutr. Ws. Inflammatory Bowel Diseases : Pathophysiology As Basis of Treatment = Falk Symp Inflammatory Bowel Diseases : Pathophysiology As Basis of Treatment = Falk. Symp. Inflammatory Bowel Disease: Translation From Basic Research to Clinical Practice = Falk Symp Inflammatory Bowel Disease: Translation From Basic Research to Clinical Practice = Falk. Symp. Inflammatory Cardiomyopathy (dcmi): Pathogenesis and Therapy = Prog Inflamm Res Ser Inflammatory Cardiomyopathy (dcmi): Pathogenesis and Therapy = Prog. Inflamm. Res. Ser. Inflammatory Disease and Therapy = Infl Dis Th Inflammatory Disease and Therapy = Infl. Dis. Th. Inflammatory Diseases of The Brain = Med Radiol Diagn Ima Inflammatory Diseases of The Brain = Med. Radiol. Diagn. Ima. Inflammatory Disease Therapy : Preclinical and Clinical Developments = Agent Action Suppl Inflammatory Disease Therapy : Preclinical and Clinical Developments = Agent. Action. Suppl. Inflammatory Processes: Molecular Mechanisms and Therapeutic Opp Ortunities = Prog Inflam Res Inflammatory Processes: Molecular Mechanisms and Therapeutic Opp Ortunities = Prog. Inflam. Res. Inflammopharmacology = Inflammopharmacology Inflationary Cosmology = Lect Notes Phys Inflationary Cosmology = Lect. Notes. Phys. Inflation-targeting Debate = Nat Bur Econ Res Stu Inflation-targeting Debate = Nat. Bur. Econ. Res. Stu. Inflation Theory in Economics = Routl Int Stud Money Inflation Theory in Economics = Routl. Int. Stud. Money. Influence and Power: Variations On A Messy Theme = Law Philos Libr Influence and Power: Variations On A Messy Theme = Law. Philos. Libr. Influence of Climate Change On The Changing Arctic and Sub-arctic Conditions = Nato Sci Peace Secur Influence of Climate Change On The Changing Arctic and Sub-arctic Conditions = Nato. Sci. Peace. Secur. Influence of Corporate Law and Accounting Principles in Determining Taxable Income = Ifa Congr S Influence of Corporate Law and Accounting Principles in Determining Taxable Income = Ifa. Congr. S. Influence of Funding On Advances in Librarianship = Adv Libr Influence of Funding On Advances in Librarianship = Adv. Libr. Influence of Molecular Biology On Drug Discovery = Klin Pharm Influence of Molecular Biology On Drug Discovery = Klin. Pharm. Influence of The Solvents On Some Radical Reactions = Chem Res Appl-nova Influence of The Solvents On Some Radical Reactions = Chem. Res. Appl-nova. Influence of The Sun's Radiation and Particles On The Earth's Atmosphere and Climate = Adv Space Res Influence of The Sun's Radiation and Particles On The Earth's Atmosphere and Climate = Adv. Space. Res. Influence of The Sun's Radiation and Particles On The Earth's Atmosphere and Climate = Adv Space Res-series Influence of The Sun's Radiation and Particles On The Earth's Atmosphere and Climate = Adv. Space. Res-series. Influenza and Other Respiratory Viruses = Influenza Other Resp Influenza and Other Respiratory Viruses = Influenza Other Resp. Influenza Vaccines for The Future, Second Edition = Birkhauser Adv Infec Influenza Vaccines for The Future, Second Edition = Birkhauser. Adv. Infec. Infocare = Infocare InfoCare : information strategies for healthcare networks = Infocare Infocom 2007, Vols 1-5 = Ieee Infocom Ser Infocom 2007, Vols 1-5 = Ieee. Infocom Ser. Info=Info Infor = Infor Informacao & Sociedade-estudos = Inform Soc-estud Informacao & Sociedade-estudos = Inform. Soc-estud. Informacao & Sociedade-estudos = Inf Soc-estud Informacao & Sociedade-estudos = Inf. Soc-estud. Informacije Midem-journal of Microelectronics Electronic Components and Materials = Inform Midem Informacije Midem-journal of Microelectronics Electronic Components and Materials = Inform. Midem. Informacion Comercial Española Revista de Economia=Info. Comercial Española Revista Econ. Informaciones medicas = Inf Medicas Informacios Tarsadalom = Inf Tarsad Informacios Tarsadalom = Inf. Tarsad. Informal Conceptual Introduction to Turbulence, Second Edition = Fluid Mech Appl Informal Conceptual Introduction to Turbulence, Second Edition = Fluid. Mech. Appl. Informal Empire in Latin America: Culture, Commerce and Capital = B Lat Am Res Bk Ser Informal Empire in Latin America: Culture, Commerce and Capital = B. Lat. Am. Res. Bk. Ser. Informal Empire in Latin America: Culture, Commerce and Capital = B Lat Am Res Book Se Informal Empire in Latin America: Culture, Commerce and Capital = B. Lat. Am. Res. Book. Se. Informal Institutions and Rural Development in China = Routl Stud Chin Econ Informal Institutions and Rural Development in China = Routl. Stud. Chin. Econ. Informal Learning of Active Citizenship At School: An International Comparative Study in Seven European Countries = Lifelong Learn Book Informal Learning of Active Citizenship At School: An International Comparative Study in Seven European Countries = Lifelong. Learn. Book. Informal Logic = Informal Log Informal Logic = Informal Log. Informal Work in Developed Nations = Routl Adv Heterod Ec Informal Work in Developed Nations = Routl. Adv. Heterod. Ec. Informatica = Informatica-lithuan Informatica = Informatica-lithuan. Informatica = Informatica (Ljubl.) Informatics - 10 Years Back, 10 Years Ahead = Lect Notes Comput Sc Informatics - 10 Years Back, 10 Years Ahead = Lect. Notes. Comput. Sc. Informatics and Changes in Learning = Ifip Trans A Informatics and Changes in Learning = Ifip. Trans. A. Informatics Curricula and Teaching Methods = Int Fed Info Proc Informatics Curricula and Teaching Methods = Int. Fed. Info. Proc. Informatics Education - Supporting Computational Thinking = Lect Notes Comput Sc Informatics Education - Supporting Computational Thinking = Lect. Notes. Comput. Sc. Informatics Education - The Bridge Between Using and Understanding Computers = Lect Notes Comput Sc Informatics Education - The Bridge Between Using and Understanding Computers = Lect. Notes. Comput. Sc. Informatics for Health & Social Care = Inform Health Soc Ca Informatics for Health & Social Care = Inform. Health Soc. Ca. Informatics in primary care = Inform Prim Care Information Access Through Search Engines and Digital Libraries = Inform Retrieval Ser Information Access Through Search Engines and Digital Libraries = Inform. Retrieval. Ser. Information Age Economy = Inform Age Econ Information Age Economy = Inform. Age Econ. Information Age = Inform Age Information Age = Inform. Age Information and behavior = Inf Behav Information and Collaboration Models of Integration = Nato Adv Sci I E-app Information and Collaboration Models of Integration = Nato. Adv. Sci. I. E-app. Information and Collaboration Models of Integration = Nato Adv Sci Inst Se Information and Collaboration Models of Integration = Nato. Adv. Sci. Inst. Se. Information and Communication Security, Proceedings = Lect Notes Comput Sc Information and Communication Security, Proceedings = Lect. Notes. Comput. Sc. Information and Communications for Development: Nationalism, Regionalism, and Globalism in Building The Global Information Society = Glob Inform Infrastr Information and Communications for Development: Nationalism, Regionalism, and Globalism in Building The Global Information Society = Glob. Inform. Infrastr. Information and Communications Security = Lect Notes Comput Sc Information and Communications Security = Lect. Notes. Comput. Sc. Information and Communications Security, Proceedings = Lect Notes Comput Sc Information and Communications Security, Proceedings = Lect. Notes. Comput. Sc. Information and Communication Techniologies Policies and Practices = Media Commun Technol Information and Communication Techniologies Policies and Practices = Media. Commun. Technol. Information and Communication Technologies and Real-life Learning = Int Fed Info Proc Information and Communication Technologies and Real-life Learning = Int. Fed. Info. Proc. Information and Communication Technologies and The Knowledge Economy = Inform Comm Tech Kno Information and Communication Technologies and The Knowledge Economy = Inform. Comm. Tech. Kno. Information and Communication Technologies and The Knowledge Economy Series = Inform Comm Tech Kno Information and Communication Technologies and The Knowledge Economy Series = Inform. Comm. Tech. Kno. Information and Communication Technologies = Comm Com Inf Sc Information and Communication Technologies = Comm. Com. Inf. Sc. Information and Communication Technologies for Active Ageing: Opportunities and Challenges for The European Union = Assist Technol Res S Information and Communication Technologies for Active Ageing: Opportunities and Challenges for The European Union = Assist. Technol. Res. S. Information and Communication Technologies in Action = Routl Commun Ser Information and Communication Technologies in Action = Routl. Commun. Ser. Information and Communication Technologies in Education = Int Fed Info Proc Information and Communication Technologies in Education = Int. Fed. Info. Proc. Information and Communication Technologies in Rural Society = Routledge Stud Techn Information and Communication Technologies in Rural Society = Routledge. Stud. Techn. Information and Communication Technologies in Tourism 1999 = Spring Comp Sci Information and Communication Technologies in Tourism 1999 = Spring. Comp. Sci. Information and Communication Technologies in Tourism 2000 = Spring Comp Sci Information and Communication Technologies in Tourism 2000 = Spring. Comp. Sci. Information and Communication Technology and Public Innovation-assessing The Ict-driven Modernization of Public Administration = Innov Public Sect Information and Communication Technology and Public Innovation-assessing The Ict-driven Modernization of Public Administration = Innov. Public Sect. Information and Communication Technology and The Teacher of The Future = Int Fed Info Proc Information and Communication Technology and The Teacher of The Future = Int. Fed. Info. Proc. Information and Communicaton Security, Proceedings = Lect Notes Comput Sc Information and Communicaton Security, Proceedings = Lect. Notes. Comput. Sc. Information and Computation = Inform. and Comput. Information and Computation = Inform Comput Information and Computation = Inform. Comput. Information and Control = Inform. and Control (Shenyang) Information and Control = Inform Comput Information and Control = Inform. Comput. Information and Control = Inform Control Information and Control = Inform. Control Information and Decision Technologies = Inform Decis Technol Information and Decision Technologies = Inform. Decis. Technol. Information and Knowledge: A Constructive Type-theoretical Approach = Logic Epistemol Unit Information and Knowledge: A Constructive Type-theoretical Approach = Logic. Epistemol. Unit. Information and Management Systems for Product Customization = Integr Ser Inform Sy Information and Management Systems for Product Customization = Integr. Ser. Inform. Sy. Information and Organisation Design Series = Info Org Design Ser Information and Organisation Design Series = Info. Org. Design Ser. Information and Organization Design Series = Info Org Desig Serie Information and Organization Design Series = Info. Org. Desig. Serie. Information and Organization Design Series = Inform Organ Des Ser Information and Organization Design Series = Inform. Organ. Des. Ser. Information and Organization = Inf Organ Information and Organization = Inf. Organ. Information and Organization = Inform Organ-uk Information and Organization = Inform. Organ-uk. Information and Process Integration in Enterprises = Kluwer Int Ser Eng C Information and Process Integration in Enterprises = Kluwer. Int. Ser. Eng. C. Information and Software Technology = Inform Software Tech Information and Software Technology = Inform. Software Tech. Information-an International Interdisciplinary Journal = Information Information-an International Interdisciplinary Journal = Information. Information-an International Interdisciplinary Journal = Information-tokyo Information-an International Interdisciplinary Journal = Information-tokyo. Information Architecture for Information Professionals = Chandos Inf Prof Ser Information Architecture for Information Professionals = Chandos. Inf. Prof. Ser. Information, A Resource for Development = Fid Publ Information, A Resource for Development = Fid. Publ. Information Assurance in Computer Networks: Methods, Models and Architectures for Network Security, Proceedings = Lect Notes Comput Sc Information Assurance in Computer Networks: Methods, Models and Architectures for Network Security, Proceedings = Lect. Notes. Comput. Sc. Information Assurance, Security and Privacy Services = Handb Info Syst Information Assurance, Security and Privacy Services = Handb. Info. Syst. Information-based Access to Storage: The Foundation of Information Systems, Proceedings = Ieee S Mass Stor Sys Information-based Access to Storage: The Foundation of Information Systems, Proceedings = Ieee. S. Mass. Stor. Sys. Information Behavior: An Evolutionary Instinct = Inform Sci Knowl Man Information Behavior: An Evolutionary Instinct = Inform. Sci. Knowl. Man. Information Business : Issues for The 1990s = Inf Bus Key Information Business : Issues for The 1990s = Inf. Bus. Key. Information Business : Key Issue Series = Inf Bus Key Information Business : Key Issue Series = Inf. Bus. Key Information, Coding and Mathematics = Kluw Commun Information, Coding and Mathematics = Kluw. Commun. Information Communication & Society = Inform Commun Soc Information Communication & Society = Inform. Commun. Soc. Information Computing and Applications = Lect Notes Comput Sc Information Computing and Applications = Lect. Notes. Comput. Sc. Information Computing and Applications, Pt 1 = Comm Com Inf Sc Information Computing and Applications, Pt 1 = Comm. Com. Inf. Sc. Information Computing and Applications, Pt 2 = Comm Com Inf Sc Information Computing and Applications, Pt 2 = Comm. Com. Inf. Sc. Information Control Problems in Manufacturing Technology 1992 = Ifac Symp Series Information Control Problems in Manufacturing Technology 1992 = Ifac. Symp. Series. Information Criteria and Statistical Modeling = Springer Ser Stat Information Criteria and Statistical Modeling = Springer. Ser. Stat. Information Dentaire = Inf. Dent. Information Development = Inf Dev Information Development = Inf. Dev. Information Development = Inform Dev Information Development = Inform. Dev. Information Display = Inform Display Information Display = Inform. Display Information Display-journal of The Society for Information Display = Inf Display-j Soc I Information Display-journal of The Society for Information Display = Inf. Display-j. Soc. I. Information Dissemination and Access in Russia and Eastern Europe = Nato Asi S 4 Sci Tec Information Dissemination and Access in Russia and Eastern Europe = Nato. Asi. S. 4. Sci. Tec. Information Dissemination in Currency Crises = Lect Notes Econ Math Information Dissemination in Currency Crises = Lect. Notes. Econ. Math. Information Dynamics = Nato Adv Sci I B-phy Information Dynamics = Nato. Adv. Sci. I. B-phy. Information Economics and Policy = Inf Econ Policy Information Economics and Policy = Inf. Econ. Policy Information Economics and Policy=Info. Econ. Pol. Informationen aus Orthodontie und Kieferorthopadie : mit Beitragen aus der internationalen Literatur = Inf Orthod Kieferorthop Informationen aus Orthodontie und Kieferorthopadie mit Beitragen aus der Internationalen Literatur = Inf. Orthod. Kieferorthop. Informationen zu Naturschutz und Landschaftspflege in Nordwestdeutschland = Inf. Nat.schutz Landsch.pfl. Nordwestdtschl. Informationen zur Raumentwicklung = Inf Raumentwickl Information Extraction in Finance = Adv Manag Inform Information Extraction in Finance = Adv. Manag. Inform. Information Extraction in The Web Era = Lect Notes Artif Int Information Extraction in The Web Era = Lect. Notes. Artif. Int. Information Extraction: Towards Scalable, Adaptable Systems = Lect Notes Artif Int Information Extraction: Towards Scalable, Adaptable Systems = Lect. Notes. Artif. Int. Information for Responsible Fisheries: Libraries As Mediators, Proceedings = Iamslic C S Information for Responsible Fisheries: Libraries As Mediators, Proceedings = Iamslic. C. S. Information Fusion and Geographic Information Systems, Proceedings = Lec Not Geo Carto Information Fusion and Geographic Information Systems, Proceedings = Lec. Not. Geo. Carto. Information Fusion = Inform Fusion Information Fusion = Inform. Fusion Information Geometry: Near Randomness and Near Independence = Lect Notes Math Information Geometry: Near Randomness and Near Independence = Lect. Notes. Math. Information Hiding and Applications = Stud Comput Intell Information Hiding and Applications = Stud. Comput. Intell. Information Hiding = Lect Notes Comput Sc Information Hiding = Lect. Notes. Comput. Sc. Information Hiding, Proceedings = Lect Notes Comput Sc Information Hiding, Proceedings = Lect. Notes. Comput. Sc. Information Historique = Inform Hist Information Historique = Inform. Hist. Information = Information In-formation = In-formation Information Infrastructure Systems for Manufacturing = Ifip Trans B Information Infrastructure Systems for Manufacturing = Ifip. Trans. B. Information Infrastructure Systems for Manufacturing Ii = Int Fed Info Proc Information Infrastructure Systems for Manufacturing Ii = Int. Fed. Info. Proc. Information, Language, and Cognition = Vanc St Cog Information, Language, and Cognition = Vanc. St. Cog. Information Literacy Cookbook: Ingredients, Recipes and Tips for Success = Chandos Inf Prof Ser Information Literacy Cookbook: Ingredients, Recipes and Tips for Success = Chandos. Inf. Prof. Ser. Information Literacy: International Perspectives = Ifla Publ Information Literacy: International Perspectives = Ifla. Publ. Information Literacy in The Digital Age: An Evidence-based Approach = Chandos Inf Prof Ser Information Literacy in The Digital Age: An Evidence-based Approach = Chandos. Inf. Prof. Ser. Information Literacy Landscapes: Information Literacy in Education, Workplace and Everyday Contexts = Chandos Inf Prof Ser Information Literacy Landscapes: Information Literacy in Education, Workplace and Everyday Contexts = Chandos. Inf. Prof. Ser. Information Literacy : Learning How to Learn = Mc F S Rutg Information Literacy : Learning How to Learn = Mc. F. S. Rutg. Information Litteraire = Inform Lit Information Litteraire = Inform. Lit. Information Management = Inf. Manage. Information & Management = Inform Manage Information & Management = Inform. Manage. Information Management = Inform Manage Information Management = Inform. Manage. Information & Management = Inform Manage-amster Information & Management = Inform. Manage-amster. Information-management in The Context of Competition = Vdi Bericht Information-management in The Context of Competition = Vdi. Bericht. Information Management in The Production Process = Vdi Bericht Information Management in The Production Process = Vdi. Bericht. Information management (PTN Publishing Corporation) = Inf Manage Information Modelling and Knowledge Bases Xiv = Fr Art Int Information Modelling and Knowledge Bases Xiv = Fr. Art. Int. Information Modelling and Knowledge Bases Xv = Fr Art Int Information Modelling and Knowledge Bases Xv = Fr. Art. Int. Information Modelling and Knowledge Bases Xv = Front Artif Intel Ap Information Modelling and Knowledge Bases Xv = Front. Artif. Intel. Ap. Information Modelling and Knowledge Bases Xvii = Front Artif Intel Ap Information Modelling and Knowledge Bases Xvii = Front. Artif. Intel. Ap. Information Network and Data Communication, Iv = Ifip Trans C Information Network and Data Communication, Iv = Ifip. Trans. C. Information Networking: Convergence in Broadband and Mobile Networking = Lect Notes Comput Sc Information Networking: Convergence in Broadband and Mobile Networking = Lect. Notes. Comput. Sc. Information Networking in Asia = Adv Info Proc Tech Information Networking in Asia = Adv. Info. Proc. Tech. Information Networking = Lect Notes Comput Sc Information Networking = Lect. Notes. Comput. Sc. Information Networking: Towards Ubiquitous Networking and Services = Lect Notes Comput Sc Information Networking: Towards Ubiquitous Networking and Services = Lect. Notes. Comput. Sc. Information Networks and Data Communication = Ifip Trans C Information Networks and Data Communication = Ifip. Trans. C. Information Optics = Aip Conf Proc Information Optics = Aip. Conf. Proc. Information Optics and Optical Data Storage = P Soc Photo-opt Ins Information Optics and Optical Data Storage = P. Soc. Photo-opt. Ins. Information Optics and Photonics Technologies Ii = Proc Spie Information Optics and Photonics Technologies Ii = Proc. Spie. Information Optics and Photonics Technologies Ii = P Soc Photo-opt Ins Information Optics and Photonics Technologies Ii = P. Soc. Photo-opt. Ins. Information, Organisation and Technology: Studies in Organisational Semiotics = Info Org Design Ser Information, Organisation and Technology: Studies in Organisational Semiotics = Info. Org. Design. Ser. Information Organization and Databases = Kluwer Int Ser Eng C Information Organization and Databases = Kluwer. Int. Ser. Eng. C. Information Organization and Databases = Springer Int Ser Eng Information Organization and Databases = Springer. Int. Ser. Eng. Information, Place and Cyberspace: Issues in Accessibility = Adv Spat Sci Information, Place and Cyberspace: Issues in Accessibility = Adv. Spat. Sci. Information Privacy = Inform Age Information Privacy = Inform. Age. Information privacy = Inf Priv Information Procesing and Management of Uncertainty in Knowledge-based Systems: Applications, Pt Ii = Comm Com Inf Sc Information Procesing and Management of Uncertainty in Knowledge-based Systems: Applications, Pt Ii = Comm. Com. Inf. Sc. Information Processing '94, Vol I = Ifip Trans A Information Processing '94, Vol I = Ifip. Trans. A. Information Processing '94, Vol Ii = Ifip Trans A Information Processing '94, Vol Ii = Ifip. Trans. A. Information Processing '94, Vol Iii = Ifip Trans A Information Processing '94, Vol Iii = Ifip. Trans. A. Information Processing and Biological Systems = Intel Syst Ref Libr Information Processing and Biological Systems = Intel. Syst. Ref. Libr. Information Processing and Management = Comm Com Inf Sc Information Processing and Management = Comm. Com. Inf. Sc. Information Processing and Management of Uncertainty in Knowledge-based Systems: Theory and Methods, Pt 1 = Comm Com Inf Sc Information Processing and Management of Uncertainty in Knowledge-based Systems: Theory and Methods, Pt 1 = Comm. Com. Inf. Sc. Information Processing in Computer-assisted Interventions = Lect Notes Comput Sc Information Processing in Computer-assisted Interventions = Lect. Notes. Comput. Sc. Information Processing in Design 1999: Acceleration of Product Development Using Edm/pdm Systems and Feature-based Technology = Vdi Bericht Information Processing in Design 1999: Acceleration of Product Development Using Edm/pdm Systems and Feature-based Technology = Vdi. Bericht. Information Processing in Mammalian Auditory and Tactile Systems = Neurol Neur Information Processing in Mammalian Auditory and Tactile Systems = Neurol. Neur. Information Processing in Medical Imaging = Comp Imag Vis Information Processing in Medical Imaging = Comp. Imag. Vis. Information Processing in Medical Imaging = Lect Notes Comput Sc Information Processing in Medical Imaging = Lect. Notes. Comput. Sc. Information Processing in Medical Imaging /// = Lect Notes Comput Sc Information Processing in Medical Imaging /// = Lect. Notes. Comput. Sc. Information Processing in Medical Imaging, Proceedings = Lect Notes Comput Sc Information Processing in Medical Imaging, Proceedings = Lect. Notes. Comput. Sc. Information processing in medical imaging : proceedings of the ... conference = Inf Process Med Imaging Information Processing in Medical Imaging // = Prog Clin Biol Res Information Processing in Medical Imaging // = Prog. Clin. Biol. Res. Information Processing in Production Development: Efficient 3d Modeling - Advances and Pitfalls = Vdi Bericht Information Processing in Production Development: Efficient 3d Modeling - Advances and Pitfalls = Vdi. Bericht. Information Processing in Sensor Networks, Proceedings = Lect Notes Comput Sc Information Processing in Sensor Networks, Proceedings = Lect. Notes. Comput. Sc. Information Processing Letters = Inform. Process. Lett. Information Processing Letters = Inform Process Lett Information Processing Letters = Inform. Process. Lett. Information Processing & Management = Inform Process Manag Information Processing & Management = Inform. Process. Manag. Information Processing Society of Japan = Trans. Inform. Process. Soc. Japan Information Processing Underlying Gaze Control = Perg S Neur Information Processing Underlying Gaze Control = Perg. S. Neur. Information Processing With Evolutionary Algorithms = Adv Info Know Proc Information Processing With Evolutionary Algorithms = Adv. Info. Know. Proc. Information Processing With Evolutionary Algorithms = Adv Inform Knowl Pro Information Processing With Evolutionary Algorithms = Adv. Inform. Knowl. Pro. Information Protection and Network Security = P Soc Photo-opt Ins Information Protection and Network Security = P. Soc. Photo-opt. Ins. Information Psychiatrique = Inf. Psychiatr. Information & Records Management = Inform Rec Manage Information & Records Management = Inform. Rec. Manage. Information Report Northern Forest Research Centre = Inf. Rep. North. For. Res. Cent. Information Research and Resource Reports = Inform Res Resour R Information Research and Resource Reports = Inform. Res. Resour. R. Information Research-an International Electronic Journal = Inform Res Information Research-an International Electronic Journal = Inform. Res. Information Retrieval: A Health and Biomedical Perspective, Third Edition = Health Inform Ser Information Retrieval: A Health and Biomedical Perspective, Third Edition = Health Inform. Ser. Information Retrieval and Mining in Distributed Environments = Stud Comp Intell Information Retrieval and Mining in Distributed Environments = Stud. Comp. Intell. Information Retrieval and Mining in Distributed Environments = Stud Comput Intell Information Retrieval and Mining in Distributed Environments = Stud. Comput. Intell. Information Retrieval = Inform Retrieval Information Retrieval = Inform. Retrieval Information Retrieval Series = Inform Retrieval Ser Information Retrieval Series = Inform. Retrieval Ser. Information Retrieval Technology = Lect Notes Comput Sc Information Retrieval Technology = Lect. Notes. Comput. Sc. Information Retrieval Technology, Proceedings = Lect Notes Comput Sc Information Retrieval Technology, Proceedings = Lect. Notes. Comput. Sc. Information Retrieval Technololgy, Proceedings = Lect Notes Comput Sc Information Retrieval Technololgy, Proceedings = Lect. Notes. Comput. Sc. Information Revolution and Global Politics = Inform Revol Glob Po Information Revolution and Global Politics = Inform. Revol. Glob. Po. Information Routing, Correspondence Finding, and Object Recognition in The Brain = Stud Comput Intell Information Routing, Correspondence Finding, and Object Recognition in The Brain = Stud. Comput. Intell. Informationsberichte des Bayerischen Landesamtes für Wasserwirtschaft = Inf.ber.  Bayer.  Landesamtes  Wasserwirtsch. Informationsblatt des Forschungsbereiches Landschaft = Inf.bl. Forsch.bereiches Landsch. Informationsblatt des Forschungsbereiches Landschaftsökologie = Inf.bl. Forsch.bereiches Landsch.ökol. Information Science and Knowledge Management = Inform Sci Knowl Man Information Science and Knowledge Management = Inform. Sci. Knowl. Man. Information Science and Statistics = Inform Sci Stat Information Science and Statistics = Inform. Sci. Stat. Information Sciences-applications = Inform Sci-appl Information Sciences-applications = Inform. Sci-appl. Information Sciences = Inform. Sci. Information Sciences = Inform Sciences Information Sciences = Inform. Sciences Information sciences = Inf Sci (Ny) Information Scientist = Inform Scientist Information Scientist = Inform. Scientist Informationsdienst Naturschutz Niedersachsen = Inf.dienst Nat.schutz Niedersachs. Information Security and Assurance = Comm Com Inf Sc Information Security and Assurance = Comm. Com. Inf. Sc. Information Security and Cryptography Texts and Monographs = Inform Sec Crypt Tex Information Security and Cryptography Texts and Monographs = Inform. Sec. Crypt. Tex. Information Security and Cryptology - Icisc 2002 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2002 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2003 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2003 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2004 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2004 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2005 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2005 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2006, Proceedings = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2006, Proceedings = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2007 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2007 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc 2008 = Lect Notes Comput Sc Information Security and Cryptology - Icisc 2008 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Icisc'99 = Lect Notes Comput Sc Information Security and Cryptology - Icisc'99 = Lect. Notes. Comput. Sc. Information Security and Cryptology - Isisc 2009 = Lect Notes Comput Sc Information Security and Cryptology - Isisc 2009 = Lect. Notes. Comput. Sc. Information Security and Cryptology = Lect Notes Comput Sc Information Security and Cryptology = Lect. Notes. Comput. Sc. Information Security and Cryptology, Proceedings = Lect Notes Comput Sc Information Security and Cryptology, Proceedings = Lect. Notes. Comput. Sc. Information Security and Privacy = Lect Notes Comput Sc Information Security and Privacy = Lect. Notes. Comput. Sc. Information Security and Privacy, Proceedings = Lect Notes Comput Sc Information Security and Privacy, Proceedings = Lect. Notes. Comput. Sc. Information Security Applications = Lect Notes Comput Sc Information Security Applications = Lect. Notes. Comput. Sc. Information Security for Automatic Speaker Identification = Springerbrief Speech Information Security for Automatic Speaker Identification = Springerbrief. Speech. Information Security for Global Information Infrastructures = Int Fed Info Proc Information Security for Global Information Infrastructures = Int. Fed. Info. Proc. Information Security = Lect Notes Comput Sc Information Security = Lect. Notes. Comput. Sc. Information Security Management, Education and Privacy = Int Fed Info Proc Information Security Management, Education and Privacy = Int. Fed. Info. Proc. Information Security: Policy, Processes, and Practices = Adv Manag Inform Sys Information Security: Policy, Processes, and Practices = Adv. Manag. Inform. Sys. Information Security Practice and Experience = Lect Notes Comput Sc Information Security Practice and Experience = Lect. Notes. Comput. Sc. Information Security Practice and Experience, Proceedings = Lect Notes Comput Sc Information Security Practice and Experience, Proceedings = Lect. Notes. Comput. Sc. Information Security, Proceedings = Lect Notes Comput Sc Information Security, Proceedings = Lect. Notes. Comput. Sc. Information Security Theory and Practice: Smart Devices, Pervasive Systems, and Ubiquitous Networks, Proceedings = Lect Notes Comput Sc Information Security Theory and Practice: Smart Devices, Pervasive Systems, and Ubiquitous Networks, Proceedings = Lect. Notes. Comput. Sc. Information Security Theory and Practices: Security and Privacy of Pervasive Systems and Smart Devices = Lect Notes Comput Sc Information Security Theory and Practices: Security and Privacy of Pervasive Systems and Smart Devices = Lect. Notes. Comput. Sc. Information Security Theory and Practices: Smart Cards, Mobile and Ubiquitous Computing Systems, Proceedings = Lect Notes Comput Sc Information Security Theory and Practices: Smart Cards, Mobile and Ubiquitous Computing Systems, Proceedings = Lect. Notes. Comput. Sc. Information Security Theory and Practices: Smart Devices, Convergence and Next Generation Networks = Lect Notes Comput Sc Information Security Theory and Practices: Smart Devices, Convergence and Next Generation Networks = Lect. Notes. Comput. Sc. Information Services Management Series = Inform Serv Man Ser Information Services Management Series = Inform. Serv. Man. Ser. Information services & use = Inf Serv Use Informationskultur Und Beziehungswissen: Das Korrespondenznetz Hans Fuggers (1531-1598) = Stud August Informationskultur Und Beziehungswissen: Das Korrespondenznetz Hans Fuggers (1531-1598) = Stud. August. Information Society: Emerging Landscapes = Int Fed Info Proc Information Society: Emerging Landscapes = Int. Fed. Info. Proc. Information Society = Inform Soc Information Society = Inform. Soc. Information Sources in Patents = Guide Inform Sources Information Sources in Patents = Guide. Inform. Sources Information Storage and Retrieval = Inform Storage Ret Information Storage and Retrieval = Inform. Storage Ret. Information Strategy and Warfare = Contemp Secur Stud Information Strategy and Warfare = Contemp. Secur. Stud. Information Structure and Its Interfaces = Interface Explor Information Structure and Its Interfaces = Interface. Explor. Information Structure in A Cross-linguistic Perspective = Lang Comput Information Structure in A Cross-linguistic Perspective = Lang. Comput. Information summary (International Clearinghouse on Adolescent Fertility) = Inf Summ Information Superhighway: The Role of Librarians, Information Scientists, and Intermediaries = Ver U Essen Information Superhighway: The Role of Librarians, Information Scientists, and Intermediaries = Ver. U. Essen. Information Support for New Public Health Action At District Level = Who Tech Rep Ser Information Support for New Public Health Action At District Level = Who. Tech. Rep. Ser. Informationsverarbeitung in Der Produktentwicklung 2001 Effiziente 3d Produktmodellierung Fortschritte Und Fallstricke = Vdi Bericht Informationsverarbeitung in Der Produktentwicklung 2001 Effiziente 3d Produktmodellierung Fortschritte Und Fallstricke = Vdi. Bericht. Information System Concepts: Improving The Understanding = Ifip Trans A Information System Concepts: Improving The Understanding = Ifip. Trans. A. Information System Development Process = Ifip Trans A Information System Development Process = Ifip. Trans. A. Information Systems Action Research: An Applied View of Emerging Concepts and Methods = Integr Ser Inform Sy Information Systems Action Research: An Applied View of Emerging Concepts and Methods = Integr. Ser. Inform. Sy. Information Systems and Artificial Intelligence : Integration Aspects = Lect Notes Comput Sc Information Systems and Artificial Intelligence : Integration Aspects = Lect. Notes. Comput. Sc. Information Systems and E-business Management = Inf Syst E-bus Manag Information Systems and E-business Management = Inf. Syst. E-bus. Manag. Information Systems and E-business Technologies = Lect Notes Bus Inf Information Systems and E-business Technologies = Lect. Notes. Bus. Inf. Information Systems and E-business Technologies = Lect Notes Bus Inf P Information Systems and E-business Technologies = Lect. Notes. Bus. Inf. P. Information Systems and Technology = Transport Res Rec Information Systems and Technology = Transport. Res. Rec. Information Systems - Creativity and Innovation in Small and Medium-sized Enterprises = Ifip Adv Inf Comm Te Information Systems - Creativity and Innovation in Small and Medium-sized Enterprises = Ifip. Adv. Inf. Comm. Te. Information Systems: Critical Perspectives = Routl Stud Org Syst Information Systems: Critical Perspectives = Routl. Stud. Org. Syst. Information Systems Evolution = Lect Notes Bus Inf P Information Systems Evolution = Lect. Notes. Bus. Inf. P. Information Systems for Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions Ii = Proc Spie Information Systems for Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions Ii = Proc. Spie. Information Systems for Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions Ii = P Soc Photo-opt Ins Information Systems for Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions Ii = P. Soc. Photo-opt. Ins. Information Systems for Emergency Management = Adv Manag Inform Sys Information Systems for Emergency Management = Adv. Manag. Inform. Sys. Information Systems for Navy Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions = P Soc Photo-opt Ins Information Systems for Navy Divers and Autonomous Underwater Vehicles Operating in Very Shallow Water and Surf Zone Regions = P. Soc. Photo-opt. Ins. Information Systems Frontiers = Inform Syst Front Information Systems Frontiers = Inform. Syst. Front. Information Systems = Inform Syst Information Systems = Inform. Syst. Information Systems Journal = Inform Syst J Information Systems Journal = Inform. Syst. J. Information Systems Management = Inform Syst Manage Information Systems Management = Inform. Syst. Manage. Information Systems: Modeling, Development, and Integration = Lect Notes Bus Inf Information Systems: Modeling, Development, and Integration = Lect. Notes. Bus. Inf. Information Systems: Modeling, Development, and Integration = Lect Notes Bus Inf P Information Systems: Modeling, Development, and Integration = Lect. Notes. Bus. Inf. P. Information Systems Research Challenge : Qualitative Research Methods = Harv Bus C Information Systems Research Challenge : Qualitative Research Methods = Harv. Bus. C. Information Systems Research = Inform Syst Res Information Systems Research = Inform. Syst. Res. Information Systems Security = Lect Notes Comput Sc Information Systems Security = Lect. Notes. Comput. Sc. Information Systems Security, Proceedings = Lect Notes Comput Sc Information Systems Security, Proceedings = Lect. Notes. Comput. Sc. Information Systems, Technology and Management, Proceedings = Comm Com Inf Sc Information Systems, Technology and Management, Proceedings = Comm. Com. Inf. Sc. Information Systems, Technology and Management-third International Conference, Icistm 2009 = Comm Com Inf Sc Information Systems, Technology and Management-third International Conference, Icistm 2009 = Comm. Com. Inf. Sc. Information Technologies 2004 = Proc Spie Information Technologies 2004 = Proc. Spie. Information Technologies 2004 = P Soc Photo-opt Ins Information Technologies 2004 = P. Soc. Photo-opt. Ins. Information Technologies in Biomedicine = Adv Intel Soft Compu Information Technologies in Biomedicine = Adv. Intel. Soft. Compu. Information Technologies in Biomedicine, Vol 2 = Adv Intel Soft Compu Information Technologies in Biomedicine, Vol 2 = Adv. Intel. Soft. Compu. Information Technologies in Environmental Engineering = Environ Sci Eng Information Technologies in Environmental Engineering = Environ. Sci. Eng. Information Technology and Competitive Advantage in Small Firms = Routl Stud Small Bus Information Technology and Competitive Advantage in Small Firms = Routl. Stud. Small Bus. Information Technology and Control = Inf Technol Control Information Technology and Control = Inf. Technol. Control Information Technology and Economic Modelling = Vtt Symp Information Technology and Economic Modelling = Vtt. Symp. Information Technology and Educational Management in The Knowledge Society = Int Fed Info Proc Information Technology and Educational Management in The Knowledge Society = Int. Fed. Info. Proc. Information Technology and Law Series = Inf Technol Law Ser Information Technology and Law Series = Inf. Technol. Law Ser. Information Technology and Libraries = Inform Technol Libr Information Technology and Libraries = Inform. Technol. Libr. Information Technology and Library Management = Ver U Essen Information Technology and Library Management = Ver. U. Essen. Information Technology and Managing Quality Education = Ifip Adv Inf Comm Te Information Technology and Managing Quality Education = Ifip. Adv. Inf. Comm. Te. Information Technology and Organization = Ber Ger Acm Information Technology and Organization = Ber. Ger. Acm. Information Technology and Orthodontic Treatment = Cranio Grow Information Technology and Orthodontic Treatment = Cranio. Grow. Information Technology and Product Development = Ann Inform Syst Information Technology and Product Development = Ann. Inform. Syst. Information Technology Essentials for Behavioral Health Clinicians = Health Inform Ser Information Technology Essentials for Behavioral Health Clinicians = Health Inform. Ser. Information Technology for Advanced Manufacturing Systems = Ifip Trans B Information Technology for Advanced Manufacturing Systems = Ifip. Trans. B. Information Technology for Balanced Manufacturing Systems = Int Fed Info Proc Information Technology for Balanced Manufacturing Systems = Int. Fed. Info. Proc. Information Technology in Bio- and Medical Informatics = Lect Notes Comput Sc Information Technology in Bio- and Medical Informatics = Lect. Notes. Comput. Sc. Information Technology in Health Care 2007 = St Heal T Information Technology in Health Care 2007 = St. Heal. T. Information Technology in Languages for Specific Purposes: Issues and Prospects = Educ Linguist Information Technology in Languages for Specific Purposes: Issues and Prospects = Educ. Linguist. Information Technology in The Service Economy: Challenges and Possibilities for The 21st Century = Int Fed Info Proc Information Technology in The Service Economy: Challenges and Possibilities for The 21st Century = Int. Fed. Info. Proc. Information Technology & Management = Inform Technol Manag Information Technology & Management = Inform. Technol. Manag. Information Technology Outsourcing = Adv Manag Inform Sys Information Technology Outsourcing = Adv. Manag. Inform. Sys. Information Technology & People = Inform Technol Peopl Information Technology & People = Inform. Technol. Peopl. Information Technology-research Development Applications = Inform Technol R & D Information Technology-research Development Applications = Inform. Technol. R. &. D. Information Technology Revolution in Architecture = Inform Tech Revol Ar Information Technology Revolution in Architecture = Inform. Tech. Revol. Ar. Information Technology: Selected Tutorials = Int Fed Info Proc Information Technology: Selected Tutorials = Int. Fed. Info. Proc. Information Technology Strategies From The United States and The European Union = St Heal T Information Technology Strategies From The United States and The European Union = St. Heal. T. Information Technology Strategies From The United States and The European Union = Stud Health Technol Information Technology Strategies From The United States and The European Union = Stud. Health. Technol. Information Technology Transmission Processing and Storage = Inform Tech Trans Pr Information Technology Transmission Processing and Storage = Inform. Tech. Trans. Pr. Information Theoretic Learning: Renyis Entropy and Kernel Perspectives = Inform Sci Stat Information Theoretic Learning: Renyis Entropy and Kernel Perspectives = Inform. Sci. Stat. Information Theoretic Security = Lect Notes Comput Sc Information Theoretic Security = Lect. Notes. Comput. Sc. Information Theoretic Security, Proceedings = Lect Notes Comput Sc Information Theoretic Security, Proceedings = Lect. Notes. Comput. Sc. Information Theory and Network Coding = Inform Tech Trans Pr Information Theory and Network Coding = Inform. Tech. Trans. Pr. Information Today = Inform Today Information Today = Inform. Today Information, Uncertainty and Fusion = Kluwer Int Ser Eng C Information, Uncertainty and Fusion = Kluwer. Int. Ser. Eng. C. Information, Uncertainty and Fusion = Springer Int Ser Eng Information, Uncertainty and Fusion = Springer. Int. Ser. Eng. Information Visualization: Human-centered Issues and Perspectives = Lect Notes Comput Sc Information Visualization: Human-centered Issues and Perspectives = Lect. Notes. Comput. Sc. Information Visualization = Inform Visual Information Visualization = Inform. Visual. Information Von Behorden, Medien Und Bevolkerung Im Ereignisfall = Prog Radiat Protect Information Von Behorden, Medien Und Bevolkerung Im Ereignisfall = Prog. Radiat. Protect. Information Zürcher Wald = Inf. Zür. Wald Informatore botanico italiano = Inf. bot. ital. Informatore Odonto-Stomatologico = Inf Odontostomatol Informatore Odonto-Stomatologico = Inf. Odontostomatol. Informe demografico (Sao Paulo (Brazil : State). Fundacao Sistema Estadual de Analise de Dados) = Inf Demogr Informes De La Construccion = Inf Constr Informes De La Construccion = Inf. Constr. Inform = Inform Informing Authorities, The Media and The Public in The Event of A Nuclear Accident = Prog Radiat Protect Informing Authorities, The Media and The Public in The Event of A Nuclear Accident = Prog. Radiat. Protect. Informing Digital Futures: Strategies for Citizen Engagement = Comput Supp Coop Wor Informing Digital Futures: Strategies for Citizen Engagement = Comput. Supp. Coop. Wor. Inform (Silver Spring, Md.) = Inform Informs Journal On Computing = Informs J Comput Informs Journal On Computing = Informs J. Comput. INFORMS Journal on Computing = INFORMS J. Comput. Inforum (Adelaide, S. Aust.) = Inforum Inforum = Inforum Infosystems = Infosystems Info trends : medicine, law & ethics / University of Medicine and Dentistry of New Jersey-Robert Wood Johnson Medical School = Info Trends Infrared and Millimeter-wave Engineering = P Soc Photo-opt Ins Infrared and Millimeter-wave Engineering = P. Soc. Photo-opt. Ins. Infrared and Passive Millimeter-wave Imaging Systems: Design, Analysis, Modeling, and Testing = Proc Spie Infrared and Passive Millimeter-wave Imaging Systems: Design, Analysis, Modeling, and Testing = Proc. Spie. Infrared and Passive Millimeter-wave Imaging Systems: Design, Analysis, Modeling, and Testing = P Soc Photo-opt Ins Infrared and Passive Millimeter-wave Imaging Systems: Design, Analysis, Modeling, and Testing = P. Soc. Photo-opt. Ins. Infrared and Photoelectronic Imagers and Detector Devices Ii = Proc Spie Infrared and Photoelectronic Imagers and Detector Devices Ii = Proc. Spie. Infrared and Photoelectronic Imagers and Detector Devices Ii = P Soc Photo-opt Ins Infrared and Photoelectronic Imagers and Detector Devices Ii = P. Soc. Photo-opt. Ins. Infrared and Radio Astronomy, and Astrometry = Adv Space E Infrared and Radio Astronomy, and Astrometry = Adv. Space. E. Infrared and Submillimetre Sky After Cobe = Nato Adv Sci I C-mat Infrared and Submillimetre Sky After Cobe = Nato. Adv. Sci. I. C-mat. Infrared Applications of Semiconductors Iii = Mater Res Soc Symp P Infrared Applications of Semiconductors Iii = Mater. Res. Soc. Symp. P. Infrared Applications of Semiconductors Ii = Mater Res Soc Symp P Infrared Applications of Semiconductors Ii = Mater. Res. Soc. Symp. P. Infrared Applications of Semiconductors - Materials, Processing and Devices = Mater Res Soc Symp P Infrared Applications of Semiconductors - Materials, Processing and Devices = Mater. Res. Soc. Symp. P. Infrared Astronomical Instrumentation, Pts 1-2 = P Soc Photo-opt Ins Infrared Astronomical Instrumentation, Pts 1-2 = P. Soc. Photo-opt. Ins. Infrared Astronomy With Arrays: The Next Generation = Astrophys Space Sc L Infrared Astronomy With Arrays: The Next Generation = Astrophys. Space. Sc. L. Infrared Astronomy With Iso = Les Houches Infrared Astronomy With Iso = Les. Houches. Infrared Components and Their Applications = P Soc Photo-opt Ins Infrared Components and Their Applications = P. Soc. Photo-opt. Ins. Infrared Detector Materials and Devices = P Soc Photo-opt Ins Infrared Detector Materials and Devices = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Iii = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Iii = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Ii = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Ii = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Iv = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Iv = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Viii = Proc Spie Infrared Detectors and Focal Plane Arrays Viii = Proc. Spie. Infrared Detectors and Focal Plane Arrays Viii = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Viii = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Vii = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Vii = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays Vi = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays Vi = P. Soc. Photo-opt. Ins. Infrared Detectors and Focal Plane Arrays V = P Soc Photo-opt Ins Infrared Detectors and Focal Plane Arrays V = P. Soc. Photo-opt. Ins. Infrared Detectors and Instrumentation for Astronomy = P Soc Photo-opt Ins Infrared Detectors and Instrumentation for Astronomy = P. Soc. Photo-opt. Ins. Infrared Detectors and Instrumentation = P Soc Photo-opt Ins Infrared Detectors and Instrumentation = P. Soc. Photo-opt. Ins. Infrared Detectors for Remote Sensing: Physics, Materials, and Devices = P Soc Photo-opt Ins Infrared Detectors for Remote Sensing: Physics, Materials, and Devices = P. Soc. Photo-opt. Ins. Infrared Detectors - Materials, Processing, and Devices = Mater Res Soc Symp P Infrared Detectors - Materials, Processing, and Devices = Mater. Res. Soc. Symp. P. Infrared Detectors: State of The Art Ii = P Soc Photo-opt Ins Infrared Detectors: State of The Art Ii = P. Soc. Photo-opt. Ins. Infrared Detectors : State of The Art = P Soc Photo-opt Ins Infrared Detectors : State of The Art = P. Soc. Photo-opt. Ins. Infrared Ellipsometry On Semiconductor Layer Structures: Phonons, Plasmons, and Polaritons = Springer Tracts Mod Infrared Ellipsometry On Semiconductor Layer Structures: Phonons, Plasmons, and Polaritons = Springer. Tracts. Mod. Infrared Ellipsometry On Semiconductor Layer Structures: Phonons, Plasmons, and Polaritons = Springer Tr Mod Phys Infrared Ellipsometry On Semiconductor Layer Structures: Phonons, Plasmons, and Polaritons = Springer. Tr. Mod. Phys. Infrared Fiber Optics Iii = P Soc Photo-opt Ins Infrared Fiber Optics Iii = P. Soc. Photo-opt. Ins. Infrared Focal Plane Array Producibility and Related Materials = P Soc Photo-opt Ins Infrared Focal Plane Array Producibility and Related Materials = P. Soc. Photo-opt. Ins. Infrared Glass Optical Fibers and Their Applications = P Soc Photo-opt Ins Infrared Glass Optical Fibers and Their Applications = P. Soc. Photo-opt. Ins. Infrared Holography for Optical Communications = Top Appl Phys Infrared Holography for Optical Communications = Top. Appl. Phys. Infrared Imaging Systems : Design, Analysis, Modeling, and Testing Ii = P Soc Photo-opt Ins Infrared Imaging Systems : Design, Analysis, Modeling, and Testing Ii = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Iv = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Iv = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Ix = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Ix = P. Soc. Photo-opt. Ins. Infrared Imaging Systems : Design, Analysis, Modeling, and Testing = P Soc Photo-opt Ins Infrared Imaging Systems : Design, Analysis, Modeling, and Testing = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Vii = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Vii = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Vi = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Vi = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing V = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing V = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xii = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xii = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xi = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xi = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xiv = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xiv = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xix = Proc Spie Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xix = Proc. Spie. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing X = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing X = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xviii = Proc Spie Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xviii = Proc. Spie. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xviii = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xviii = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvii = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvii = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvi = Proc Spie Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvi = Proc. Spie. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvi = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xvi = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xv = Proc Spie Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xv = Proc. Spie. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xv = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xv = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xxii = Proc Spie Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xxii = Proc. Spie. Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xxi = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modeling, and Testing Xxi = P. Soc. Photo-opt. Ins. Infrared Imaging Systems: Design, Analysis, Modelling, and Testing Viii = P Soc Photo-opt Ins Infrared Imaging Systems: Design, Analysis, Modelling, and Testing Viii = P. Soc. Photo-opt. Ins. Infrared Materials, Devices, and Applications = Proc Spie Infrared Materials, Devices, and Applications = Proc. Spie. Infrared Materials, Devices, and Applications = P Soc Photo-opt Ins Infrared Materials, Devices, and Applications = P. Soc. Photo-opt. Ins. Infrared, Mid-ir, and Terahertz Technologies for Health and The Environment Ii = P Soc Photo-opt Ins Infrared, Mid-ir, and Terahertz Technologies for Health and The Environment Ii = P. Soc. Photo-opt. Ins. Infrared, Millimeter Wave, and Terahertz Technologies = Proc Spie Infrared, Millimeter Wave, and Terahertz Technologies = Proc. Spie. Infrared, Millimeter Wave, and Terahertz Technologies = P Soc Photo-opt Ins Infrared, Millimeter Wave, and Terahertz Technologies = P. Soc. Photo-opt. Ins. Infrared Optical Fibers and Their Applications = P Soc Photo-opt Ins Infrared Optical Fibers and Their Applications = P. Soc. Photo-opt. Ins. Infrared Physics and Technology = Infrared Phys. Technol. Infrared physics = Infrared Phys Infrared Physics = Infrared Phys Infrared Physics = Infrared Phys. Infrared Physics & Technology = Infrared Phys Techn Infrared Physics & Technology = Infrared Phys. Techn. Infrared Readout Electronics Iii = P Soc Photo-opt Ins Infrared Readout Electronics Iii = P. Soc. Photo-opt. Ins. Infrared Readout Electronics Ii = P Soc Photo-opt Ins Infrared Readout Electronics Ii = P. Soc. Photo-opt. Ins. Infrared Readout Electronics Iv = P Soc Photo-opt Ins Infrared Readout Electronics Iv = P. Soc. Photo-opt. Ins. Infrared Readout Electronics = P Soc Photo-opt Ins Infrared Readout Electronics = P. Soc. Photo-opt. Ins. Infrared Remote Sensing and Instrumentation Xviii = P Soc Photo-opt Ins Infrared Remote Sensing and Instrumentation Xviii = P. Soc. Photo-opt. Ins. Infrared Sensors : Detectors, Electronics, and Signal Processing = P Soc Photo-opt Ins Infrared Sensors : Detectors, Electronics, and Signal Processing = P. Soc. Photo-opt. Ins. Infrared Solar Physics = Iau Symp Infrared Solar Physics = Iau. Symp. Infrared Spaceborne Remote Sensing and Instrumentation Xvi = Proc Spie Infrared Spaceborne Remote Sensing and Instrumentation Xvi = Proc. Spie. Infrared Spaceborne Remote Sensing and Instrumentation Xvi = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing and Instrumentation Xvi = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing and Instrumentation Xv = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing and Instrumentation Xv = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Iii = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Iii = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Ii = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Ii = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Iv = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Iv = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Ix = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Ix = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Viii = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Viii = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Vii = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Vii = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Vi = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Vi = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing V = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing V = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Xii = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Xii = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Xi = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Xi = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing Xiv = Proc Spie Infrared Spaceborne Remote Sensing Xiv = Proc. Spie. Infrared Spaceborne Remote Sensing Xiv = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing Xiv = P. Soc. Photo-opt. Ins. Infrared Spaceborne Remote Sensing X = P Soc Photo-opt Ins Infrared Spaceborne Remote Sensing X = P. Soc. Photo-opt. Ins. Infrared Space Interferometry: Astrophysics & The Study of Earth-like Planets = Astrophys Space Sc L Infrared Space Interferometry: Astrophysics & The Study of Earth-like Planets = Astrophys. Space Sc. L. Infrared Spectroscopy in Astronomy = Esa Sp Publ Infrared Spectroscopy in Astronomy = Esa. Sp. Publ. Infrared Spectroscopy: New Tool in Medicine, Proceedings Of = P Soc Photo-opt Ins Infrared Spectroscopy: New Tool in Medicine, Proceedings Of = P. Soc. Photo-opt. Ins. Infrared Spectroscopy of Molecular Clusters = Springer Tr Mod Phys Infrared Spectroscopy of Molecular Clusters = Springer. Tr. Mod. Phys. Infrared/submm Astronomy From Space = Adv Space Res Infrared/submm Astronomy From Space = Adv. Space Res. Infrared/submm Astronomy From Space = Adv Space Res-series Infrared/submm Astronomy From Space = Adv. Space Res-series. Infrared Systems and Photelectronic Technology = P Soc Photo-opt Ins Infrared Systems and Photelectronic Technology = P. Soc. Photo-opt. Ins. Infrared Systems and Photoelectronic Technology Iii = Proc Spie Infrared Systems and Photoelectronic Technology Iii = Proc. Spie. Infrared Systems and Photoelectronic Technology Iii = P Soc Photo-opt Ins Infrared Systems and Photoelectronic Technology Iii = P. Soc. Photo-opt. Ins. Infrared Systems and Photoelectronic Technology Ii = Proc Spie Infrared Systems and Photoelectronic Technology Ii = Proc. Spie. Infrared Systems and Photoelectronic Technology Ii = P Soc Photo-opt Ins Infrared Systems and Photoelectronic Technology Ii = P. Soc. Photo-opt. Ins. Infrared Technology and Applications / = P Soc Photo-opt Ins Infrared Technology and Applications / = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxiii, Pts 1 and 2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxiii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxii = P Soc Photo-opt Ins Infrared Technology and Applications Xxii = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxiv, Pts 1-2 = Proc Spie Infrared Technology and Applications Xxiv, Pts 1-2 = Proc. Spie. Infrared Technology and Applications Xxiv, Pts 1-2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxiv, Pts 1-2 = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxv111, Pts 1 and 2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxv111, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxvii = Proc Spie Infrared Technology and Applications Xxvii = Proc. Spie. Infrared Technology and Applications Xxvii = P Soc Photo-opt Ins Infrared Technology and Applications Xxvii = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxvi = Proc Spie Infrared Technology and Applications Xxvi = Proc. Spie. Infrared Technology and Applications Xxvi = P Soc Photo-opt Ins Infrared Technology and Applications Xxvi = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxv = P Soc Photo-opt Ins Infrared Technology and Applications Xxv = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxxiii = Proc Spie Infrared Technology and Applications Xxxiii = Proc. Spie. Infrared Technology and Applications Xxxiii = P Soc Photo-opt Ins Infrared Technology and Applications Xxxiii = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxxii, Pts 1and 2 = Proc Spie Infrared Technology and Applications Xxxii, Pts 1and 2 = Proc. Spie. Infrared Technology and Applications Xxxii, Pts 1and 2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxxii, Pts 1and 2 = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxxi, Pts 1 and 2 = Proc Spie Infrared Technology and Applications Xxxi, Pts 1 and 2 = Proc. Spie. Infrared Technology and Applications Xxxi, Pts 1 and 2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxxi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxxiv, Pts 1 and 2 = Proc Spie Infrared Technology and Applications Xxxiv, Pts 1 and 2 = Proc. Spie. Infrared Technology and Applications Xxx = P Soc Photo-opt Ins Infrared Technology and Applications Xxx = P. Soc. Photo-opt. Ins. Infrared Technology and Applications Xxxvii = Proc Spie Infrared Technology and Applications Xxxvii = Proc. Spie. Infrared Technology and Applications Xxxvi, Pts 1 and 2 = Proc Spie Infrared Technology and Applications Xxxvi, Pts 1 and 2 = Proc. Spie. Infrared Technology and Applications Xxxvi, Pts 1 and 2 = P Soc Photo-opt Ins Infrared Technology and Applications Xxxvi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Infrared Technology Xix = P Soc Photo-opt Ins Infrared Technology Xix = P. Soc. Photo-opt. Ins. Infrared Technology Xviii = P Soc Photo-opt Ins Infrared Technology Xviii = P. Soc. Photo-opt. Ins. Infrared Technology Xvii = P Soc Photo-opt Ins Infrared Technology Xvii = P. Soc. Photo-opt. Ins. Infrared Technology Xvi = P Soc Photo-opt Ins Infrared Technology Xvi = P. Soc. Photo-opt. Ins. Infrared Technology Xv = P Soc Photo-opt Ins Infrared Technology Xv = P. Soc. Photo-opt. Ins. Infrared Technology Xxi = P Soc Photo-opt Ins Infrared Technology Xxi = P. Soc. Photo-opt. Ins. Infrared Technology Xx = P Soc Photo-opt Ins Infrared Technology Xx = P. Soc. Photo-opt. Ins. Infrared Technololgy and Applications Xxix = Proc Spie Infrared Technololgy and Applications Xxix = Proc. Spie. Infrared Technololgy and Applications Xxix = P Soc Photo-opt Ins Infrared Technololgy and Applications Xxix = P. Soc. Photo-opt. Ins. Infrastructure Development in The Pacific Region = Routl Stud Int Bus W Infrastructure Development in The Pacific Region = Routl. Stud. Int. Bus. W. Infrastructure for Agents, Multi-agent Systems, and Scalable Multi-agent Systems = Lect Notes Artif Int Infrastructure for Agents, Multi-agent Systems, and Scalable Multi-agent Systems = Lect. Notes. Artif. Int. Infrastructure Issues = Imeche Sem Infrastructure Issues = Imeche. Sem. Infrastructure Productivity Evaluation = Springerbrief Econ Infrastructure Productivity Evaluation = Springerbrief. Econ. Infrastructures for Virtual Enterprises = Int Fed Info Proc Infrastructures for Virtual Enterprises = Int. Fed. Info. Proc. Infrastucture Security, Proceedings = Lect Notes Comput Sc Infrastucture Security, Proceedings = Lect. Notes. Comput. Sc. Infusionstherapie (Basel, Switzerland) = Infusionstherapie Infusionstherapie = Infusionstherapie Infusionstherapie Und Klinische Ernahrung = Infusionstherapie Infusionstherapie und klinische Ernahrung = Infusionsther Klin Ernahr Infusionstherapie und Klinische Ernahrung = Infusionsther. Klin. Ernahr. Infusionstherapie Und Klinische Ernahrung = Infus Klin Ern Infusionstherapie Und Klinische Ernahrung = Infus. Klin. Ern. Infusionstherapie und klinische Ernahrung. Sonderheft = Infusionsther Klin Ernahr Sonderh Infusionstherapie und Klinische Ernahrung. Sonderheft = Infusionsther. Klin. Ernahr. Sonderh. Infusionstherapie Und Transfusionsmedizin = Infusionstherapie Infusionstherapie und Transfusionsmedizin = Infusionsther Transfusionsmed Infusionstherapie und Transfusionsmedizin = Infusionsther. Transfusionsmed. Infusion Therapy and Transfusion Medicine-infusionstherapie Und Transfusionsmedizin = Infus Ther Transfus Infusion Therapy and Transfusion Medicine-infusionstherapie Und Transfusionsmedizin = Infus. Ther. Transfus. Ingeborg Bachmann's Utopia and Disillusionment = Suom Tiedeakat Toim Ingeborg Bachmann's Utopia and Disillusionment = Suom. Tiedeakat. Toim. Ingegneria Chimica Italiana = Ing Chim Ital Ingegneria Chimica Italiana = Ing. Chim. Ital. Ingeniera Quimica (Madrid) = Ing. Quim. Ingenieria Hidraulica En Mexico = Ing Hidraul Mex Ingenieria Hidraulica En Mexico = Ing. Hidraul. Mex. Ingenieria Quimica = Ing Quim Ingenieria Quimica = Ing. Quim. Ingenieria Quimica = Ing Quim-uruguay Ingenieria Quimica = Ing. Quim-uruguay. Ingenieria Quimica (Madrid) = Ing. Quim. Ingenieria y Competitividad = Ing. Compet. Ingenieur Archiv = Ing Arch Ingenieur Archiv = Ing. Arch. Ingenieurbiologie Mitteilungsblatt = Ing.biol. Mitt.bl. Ingenieur Und Seine Designer: Entwurf Technischer Produkte Im Spannungsfeld Zwischen Konstruktion Und Design = Vdi-buch Ingenieur Und Seine Designer: Entwurf Technischer Produkte Im Spannungsfeld Zwischen Konstruktion Und Design = Vdi-buch. Inhalation Toxicology = Inhalation Toxicol. Inhalation toxicology = Inhal Toxicol Inhalation Toxicology = Inhal Toxicol Inhalation Toxicology = Inhal. Toxicol. Inhaled particles = Inhaled Part Inhaled Particles = Inhaled Part. Inhaled Particles X = J Phys Conf Ser Inhaled Particles X = J. Phys. Conf. Ser. In health = In Health Inherited Ataxias = Adv Neurol Inherited Ataxias = Adv. Neurol. Inherited Neuromuscular Diseases: Translation From Pathmechanisms to Therapies = Adv Exp Med Biol Inherited Neuromuscular Diseases: Translation From Pathmechanisms to Therapies = Adv. Exp. Med. Biol. Inhibin and Inhibin-related Proteins = Front Endocrinol Inhibin and Inhibin-related Proteins = Front. Endocrinol. Inhibition of Matrix Metalloproteinases: Therapeutic Applications = Ann Ny Acad Sci Inhibition of Matrix Metalloproteinases: Therapeutic Applications = Ann. Ny. Acad. Sci. Inhibition of Matrix Metalloproteinases: Therapeutic Potential = Ann Ny Acad Sci Inhibition of Matrix Metalloproteinases: Therapeutic Potential = Ann. Ny. Acad. Sci. Inhibitors of Cyclin-dependent Kinases As Anti-tumor Agents = Crc Enzym Inhib Ser Inhibitors of Cyclin-dependent Kinases As Anti-tumor Agents = Crc. Enzym. Inhib. Ser. Inhibitors to Coagulation Factors = Adv Exp Med Biol Inhibitors to Coagulation Factors = Adv. Exp. Med. Biol. Inhibitory Rules in Data Analysis = Stud Comput Intell Inhibitory Rules in Data Analysis = Stud. Comput. Intell. Inhomogeneous and Quasi-inhomogeneous Optical Coatings = P Soc Photo-opt Ins Inhomogeneous and Quasi-inhomogeneous Optical Coatings = P. Soc. Photo-opt. Ins. Initial Mass Function 50 Years Later = Astrophys Space Sc L Initial Mass Function 50 Years Later = Astrophys. Space. Sc. L. Initial Reports of The Deep Sea Drilling Project = Initial Rep Deep Sea Initial Reports of The Deep Sea Drilling Project = Initial Rep. Deep Sea Initiating A Peace Process in Papua: Actors, Issues, Process, and The Role of The International Community = Pol Stud Initiating A Peace Process in Papua: Actors, Issues, Process, and The Role of The International Community = Pol. Stud. Initiatives in Information Technology and Geospatial Science for Transportation = Transport Res Rec Initiatives in Information Technology and Geospatial Science for Transportation = Transport. Res. Rec. Initiatives in population = Initiatives Popul Initiatives in reproductive health policy = Initiat Reprod Health Policy Initiatives in Strategic Studies-issues and Policies = Initiat Strateg Stud Initiatives in Strategic Studies-issues and Policies = Initiat. Strateg. Stud. Injectable Biomaterials: Science and Applications = Woodhead Publ Mater Injectable Biomaterials: Science and Applications = Woodhead. Publ. Mater. Injury control and safety promotion = Inj Control Saf Promot Injury=Injury;; Injury = Injury Injury-international Journal of The Care of The Injured = Injury Injury-international Journal of The Care of The Injured = Injury. Injury Prevention=Inj Prev;; Injury Prevention = Inj Prev Injury Prevention = Inj. Prev. Injury Prevention = Injury Prev Injury Prevention = Injury Prev. Injury prevention : journal of the International Society for Child and Adolescent Injury Prevention = Inj Prev Injury-the British Journal of Accident Surgery = Injury-br J Accident Injury-the British Journal of Accident Surgery = Injury-br. J. Accident Inkarnation Und Schopfung = Theol Bibl Topelmann Inkarnation Und Schopfung = Theol. Bibl. Topelmann. Inlad Waterways; Ports and Channels; and The Marine Environment = Transport Res Rec Inlad Waterways; Ports and Channels; and The Marine Environment = Transport. Res. Rec. Inland Saline Aquaculture = Aciar Proc Inland Saline Aquaculture = Aciar. Proc. Inland seas = Inland Seas Inland Water Biology = Inland Water Biol Inland Water Biology = Inland Water Biol. Inland Waterways, Ports, and Shipping = Transport Res Rec Inland Waterways, Ports, and Shipping = Transport. Res. Rec. In-line Characterization Techniques for Performance and Yield Enhancement in Microelectronic Manufacturing Ii = P Soc Photo-opt Ins In-line Characterization Techniques for Performance and Yield Enhancement in Microelectronic Manufacturing Ii = P. Soc. Photo-opt. Ins. In-line Characterization Techniques for Performance and Yield Enhancement in Microelectronic Manufacturing = P Soc Photo-opt Ins In-line Characterization Techniques for Performance and Yield Enhancement in Microelectronic Manufacturing = P. Soc. Photo-opt. Ins. In-line Characterization, Yield Reliability, and Failure Analyses in Microelectronic Manufacturing = P Soc Photo-opt Ins In-line Characterization, Yield Reliability, and Failure Analyses in Microelectronic Manufacturing = P. Soc. Photo-opt. Ins. In-line Characterization, Yield, Reliability, and Failure Analysis in Microelectronic Manufacturing Ii = Proc Spie In-line Characterization, Yield, Reliability, and Failure Analysis in Microelectronic Manufacturing Ii = Proc. Spie. In-line Characterization, Yield, Reliability, and Failure Analysis in Microelectronic Manufacturing Ii = P Soc Photo-opt Ins In-line Characterization, Yield, Reliability, and Failure Analysis in Microelectronic Manufacturing Ii = P. Soc. Photo-opt. Ins. In-line Methods and Monitors for Process and Yield Improvement = Proc Spie In-line Methods and Monitors for Process and Yield Improvement = Proc. Spie. In-line Methods and Monitors for Process and Yield Improvement = P Soc Photo-opt Ins In-line Methods and Monitors for Process and Yield Improvement = P. Soc. Photo-opt. Ins. In Memoriam Paul-andre Meyer: Seminaire De Probabilities Xxxix = Lect Notes Math In Memoriam Paul-andre Meyer: Seminaire De Probabilities Xxxix = Lect. Notes. Math. In Memory of Alexander Reznikov = Prog Math In Memory of Alexander Reznikov = Prog. Math. Inmunologia = Inmunologia In My Power: Letter Writing and Communications in Early America = Early Am Stud Ser In My Power: Letter Writing and Communications in Early America = Early Am. Stud. Ser. Innate Immunity = Innate Immun Innate Immunity = Innate Immun. Innate Immunity = Innate Immun-london Innate Immunity = Innate Immun-london. Innate Inflammation and Stroke = Ann Ny Acad Sci Innate Inflammation and Stroke = Ann. Ny. Acad. Sci. Inner Aspect: The Articulation of Vp = Stud Nat Lang Lingui Inner Aspect: The Articulation of Vp = Stud. Nat. Lang. Lingui. Innerbiblical Exegesis in The Book of Ezekiel: Redaktionsgeschichtliche Untersuchungen Zu Ez 34-39 = Beih Z Alttest Wiss Innerbiblical Exegesis in The Book of Ezekiel: Redaktionsgeschichtliche Untersuchungen Zu Ez 34-39 = Beih. Z. Alttest. Wiss. Inner Ear Pathobiology = Adv Oto-rhino-laryng Inner Ear Pathobiology = Adv. Oto-rhino-laryng. Innere Medizin = Inn Med Innere Medizin = Inn. Med. Inner Magnetosphere Dynamics = Adv Space Res Inner Magnetosphere Dynamics = Adv. Space. Res. Inner Magnetosphere Dynamics = Adv Space Res-series Inner Magnetosphere Dynamics = Adv. Space. Res-series. Inner Magnetosphere Interactions: New Perspectives From Imaging = Geophys Monogr Ser Inner Magnetosphere Interactions: New Perspectives From Imaging = Geophys. Monogr. Ser. Inner Magnetosphere: Physics and Modeling = Geoph Monog Series Inner Magnetosphere: Physics and Modeling = Geoph. Monog. Series. Inner-midrashic Introductions and Their Influence On Introductions to Medieval Rabbinic Bible Commentaries = Stud Judaica Inner-midrashic Introductions and Their Influence On Introductions to Medieval Rabbinic Bible Commentaries = Stud. Judaica. Inner Speech - L2: Thinking Words in A Second Language = Educ Linguist Inner Speech - L2: Thinking Words in A Second Language = Educ. Linguist. Innervation of The Mammalian Esophagus = Adv Anat Embryol Cel Innervation of The Mammalian Esophagus = Adv. Anat. Embryol. Cel. Innocenti Insights = Innoc Ins Innocenti Insights = Innoc. Ins. Innovar-revista De Ciencias Administrativas Y Sociales = Innovar-rev Cienc Ad Innovar-revista De Ciencias Administrativas Y Sociales = Innovar-rev. Cienc. Ad. Innovating Genesis: Microgenesis and The Constructive Mind in Action = Adv Cult Psychol Con Innovating Genesis: Microgenesis and The Constructive Mind in Action = Adv. Cult. Psychol. Con. Innovating Government: Normative, Policy and Technological Dimensions of Modern Government = Inf Technol Law Ser Innovating Government: Normative, Policy and Technological Dimensions of Modern Government = Inf. Technol. Law. Ser. Innovation and Business Partnering in Japan, Europe and The United States = Routledge Stud Growt Innovation and Business Partnering in Japan, Europe and The United States = Routledge. Stud. Growt. Innovation and Change in Professional Education = Innov Chang Prof Edu Innovation and Change in Professional Education = Innov. Chang. Prof. Edu. Innovation and Creativity in Education = Procd Soc Behv Innovation and Creativity in Education = Procd. Soc. Behv. Innovation and Entrepreneurial Networks in Europe = Rout Int Stud Bus Hi Innovation and Entrepreneurial Networks in Europe = Rout. Int. Stud. Bus. Hi. Innovation and Firm Performance: An Empirical Investigation for German Firms = Zew Econ Stud Innovation and Firm Performance: An Empirical Investigation for German Firms = Zew. Econ. Stud. Innovation and Inspiration: Fifty Years of The Universal Declaration of Human Rights = Knaw Verhan Innovation and Inspiration: Fifty Years of The Universal Declaration of Human Rights = Knaw. Verhan. Innovation and Institutions: A Multidisciplinary Review of The Study of Innovation Systems = New Horiz Econ Innov Innovation and Institutions: A Multidisciplinary Review of The Study of Innovation Systems = New. Horiz. Econ. Innov. Innovation and Market Globalization = Nato Asi S 4 Sci Tec Innovation and Market Globalization = Nato. Asi. S. 4. Sci. Tec. Innovation and Originality = Fortuna Vitrea Innovation and Originality = Fortuna. Vitrea. Innovation and Productivity in Services = Oecd Proc Innovation and Productivity in Services = Oecd. Proc. Innovation and Technology of Women's Intimate Apparel = Woodhead Text Ser Innovation and Technology of Women's Intimate Apparel = Woodhead. Text. Ser. Innovation and The Creative Process: Towards Innovation With Care = New Horiz Econ Innov Innovation and The Creative Process: Towards Innovation With Care = New. Horiz. Econ. Innov. Innovation and The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 & 2 = Inform Comm Tech Kno Innovation and The Knowledge Economy: Issues, Applications, Case Studies, Pts 1 & 2 = Inform. Comm. Tech. Kno. Innovation and The Public Sector = Innov Public Sect Innovation and The Public Sector = Innov. Public Sect. Innovation and Valuation in Health Care = Innov Valu Health Ca Innovation and Valuation in Health Care = Innov. Valu. Health Ca. Innovation, Collaboration in Innovation and The Growth Performance of Finnish Firms = Vtt Publ Innovation, Collaboration in Innovation and The Growth Performance of Finnish Firms = Vtt. Publ. Innovation, Competence Building and Social Cohesion in Europe = New Hor Econ Innov Innovation, Competence Building and Social Cohesion in Europe = New. Hor. Econ. Innov. Innovation, Competence Building and Social Cohesion in Europe = New Horiz Econ Innov Innovation, Competence Building and Social Cohesion in Europe = New. Horiz. Econ. Innov. Innovation Diffusion in The New Economy: The Tacit Component = Routl Adv Manag Bus Innovation Diffusion in The New Economy: The Tacit Component = Routl. Adv. Manag. Bus. Innovation Durch Wissenstransfer in Der Fruhen Neuzeit = Chloe Innovation Durch Wissenstransfer in Der Fruhen Neuzeit = Chloe. Innovation Et Technologie En Biologie Et Medecine = Innov Tech Biol Med Innovation Et Technologie En Biologie Et Medecine = Innov. Tech. Biol. Med. Innovation, Evolution and Economic Change: New Ideas in The Tradition of Galbraith = New Dir Mod Econ Innovation, Evolution and Economic Change: New Ideas in The Tradition of Galbraith = New Dir. Mod. Econ. Innovation for Sustainable Electricity Systems: Exploring The Dynamics of Energy Transitions = Sustain Innov Innovation for Sustainable Electricity Systems: Exploring The Dynamics of Energy Transitions = Sustain. Innov. Innovation, Growth and Competitiveness: Dynamic Regions in The Knowledge-based World Economy = Adv Spat Sci Innovation, Growth and Competitiveness: Dynamic Regions in The Knowledge-based World Economy = Adv. Spat. Sci. Innovation in Ceramics Science and Engineering = Key Eng Mat Innovation in Ceramics Science and Engineering = Key. Eng. Mat. Innovation in European Freight Transportation: Basics, Methodology and Case Studies for The European Markets = Rwthedition Innovation in European Freight Transportation: Basics, Methodology and Case Studies for The European Markets = Rwthedition. Innovation in Flotation Technology = Nato Adv Sci I E-app Innovation in Flotation Technology = Nato. Adv. Sci. I. E-app. Innovation in Materials Science = Key Eng Mater Innovation in Materials Science = Key. Eng. Mater. Innovation in Mathematics = Int Math S Innovation in Mathematics = Int. Math. S. Innovation in Strategic Philanthropy: Local and Global Perspectives = Waste Waste Manag Innovation in Strategic Philanthropy: Local and Global Perspectives = Waste. Waste. Manag. Innovation, Knowledge and Power in Organizations = Routl Stud Glob Comp Innovation, Knowledge and Power in Organizations = Routl. Stud. Glob. Comp. Innovation Management for Technical Products: Systematic and Integrated Product Development and Production Planning = Rwthedition Innovation Management for Technical Products: Systematic and Integrated Product Development and Production Planning = Rwthedition. Innovation-management Policy & Practice = Innov-manag Policy P Innovation-management Policy & Practice = Innov-manag. Policy P. Innovation Markets and Competition Analysis: Eu Competition Law and Us Antitrust Law = New Horiz Compet Law Innovation Markets and Competition Analysis: Eu Competition Law and Us Antitrust Law = New. Horiz. Compet. Law Innovation Networks: New Approaches in Modelling and Analyzing = Underst Complex Syst Innovation Networks: New Approaches in Modelling and Analyzing = Underst. Complex. Syst. Innovation Networks = Tech Inno P Innovation Networks = Tech. Inno. P. Innovation Optics and Phase Conjugate Optics = P Soc Photo-opt Ins Innovation Optics and Phase Conjugate Optics = P. Soc. Photo-opt. Ins. Innovation-oriented Environmental Regulation = Zew Econ Stud Innovation-oriented Environmental Regulation = Zew. Econ. Stud. Innovation-oriented Environmental Regulation = Zew Econ Studies Innovation-oriented Environmental Regulation = Zew. Econ. Studies. Innovation Policies, Business Creation and Economic Developmen: A Comparative Approach = Int Stud Entrep Innovation Policies, Business Creation and Economic Developmen: A Comparative Approach = Int. Stud. Entrep. Innovation Policy and The Economy 3 = Innov Policy Econ Innovation Policy and The Economy 3 = Innov. Policy Econ. Innovation Policy and The Economy 4 = Innov Policy Econ Innovation Policy and The Economy 4 = Innov. Policy Econ. Innovation Policy and The Economy 5 = Innov Policy Econ Innovation Policy and The Economy 5 = Innov. Policy Econ. Innovation Policy and The Economy 6 = Innov Policy Econ Innovation Policy and The Economy 6 = Innov. Policy Econ. Innovation Policy and The Economy 7 = Innov Policy Econ Innovation Policy and The Economy 7 = Innov. Policy Econ. Innovation Policy and The Economy 8 = Innov Policy Econ Innovation Policy and The Economy 8 = Innov. Policy Econ. Innovation Policy and The Economy 9 = Innov Policy Econ Innovation Policy and The Economy 9 = Innov. Policy Econ. Innovation Policy and The Economy = Innov Policy Econ Innovation Policy and The Economy = Innov. Policy Econ. Innovations and Uses for Lime = Am Soc Test Mater Innovations and Uses for Lime = Am. Soc. Test. Mater. Innovationserfolgsrechnung = Vdi-buch Innovationserfolgsrechnung = Vdi-buch. Innovation Series of The Commission of European Communities = Innov S Cec Innovation Series of The Commission of European Communities = Innov. S. Cec. Innovations for Requirements Analysis: From Stakeholders' Needs to Formal Designs = Lect Notes Comput Sc Innovations for Requirements Analysis: From Stakeholders' Needs to Formal Designs = Lect. Notes. Comput. Sc. Innovations in Agent-based Complex Automated Negotiations = Stud Comput Intell Innovations in Agent-based Complex Automated Negotiations = Stud. Comput. Intell. Innovations in Antiviral Development and The Detection of Virus Infections = Adv Exp Med Biol Innovations in Antiviral Development and The Detection of Virus Infections = Adv. Exp. Med. Biol. Innovations in Applied Artificial Intelligence = Lect Notes Artif Int Innovations in Applied Artificial Intelligence = Lect. Notes. Artif. Int. Innovations in Applied Artificial Intelligence = Lect Notes Comput Sc Innovations in Applied Artificial Intelligence = Lect. Notes. Comput. Sc. Innovations in Applied Mathematics = Innov. Appl. Math. Innovations in Applied Mathematics = Innov Appl Math Innovations in Applied Mathematics = Innov. Appl. Math. Innovations in Bayesian Networks: Theory and Applications = Stud Comput Intell Innovations in Bayesian Networks: Theory and Applications = Stud. Comput. Intell. Innovations in Bridge Engineering Technology = Proc Monogr Eng Wate Innovations in Bridge Engineering Technology = Proc. Monogr. Eng. Wate. Innovations in Classification, Data Science, and Information Systems = St Class Dat Anal Innovations in Classification, Data Science, and Information Systems = St. Class. Dat. Anal. Innovations in Classification, Data Science, and Information Systems = Stud Class Data Anal Innovations in Classification, Data Science, and Information Systems = Stud. Class. Data Anal. Innovations in Collaborative Urban Regeneration = Csur Ut Ser Lib Sust Innovations in Collaborative Urban Regeneration = Csur. Ut. Ser. Lib. Sust. Innovations in Controlled Low-strength Material (flowable Fill) = Am Soc Test Mater Innovations in Controlled Low-strength Material (flowable Fill) = Am. Soc. Test. Mater. Innovations in Conventional and Advanced Water Treatment Processes = Wa Sci Technol Innovations in Conventional and Advanced Water Treatment Processes = Wa. Sci. Technol. Innovations in Defence Support Systems - 1 = Stud Comput Intell Innovations in Defence Support Systems - 1 = Stud. Comput. Intell. Innovations in Defence Support Systems - 3: Intelligent Paradigms in Security = Stud Comput Intell Innovations in Defence Support Systems - 3: Intelligent Paradigms in Security = Stud. Comput. Intell. Innovations in Design With Emphasis On Seismic, Wind, and Environmental Loading: Quality Control and Innovations in Materials/hot-weather Concreting = Amer Conc I Innovations in Design With Emphasis On Seismic, Wind, and Environmental Loading: Quality Control and Innovations in Materials/hot-weather Concreting = Amer. Conc. I. Innovations in Digital Watermarking Techniques = Stud Comput Intell Innovations in Digital Watermarking Techniques = Stud. Comput. Intell. Innovations in Distribution Logistics = Lect Notes Econ Math Innovations in Distribution Logistics = Lect. Notes. Econ. Math. Innovations in Education and Teaching International = Innov Educ Teach Int Innovations in Education and Teaching International = Innov. Educ. Teach. Int. Innovations in Education and Training International = Innov Educ Train Int Innovations in Education and Training International = Innov. Educ. Train. Int. Innovations in Financial and Economic Networks = New Dimens Netw Innovations in Financial and Economic Networks = New. Dimens. Netw. Innovations in Financial and Economic Networks = New Dim Net Innovations in Financial and Economic Networks = New. Dim. Net. Innovations in Financial Markets and Institutions = Innov Financ Market Innovations in Financial Markets and Institutions = Innov. Financ. Market. Innovations in Food Labelling = Woodhead Food Ser Innovations in Food Labelling = Woodhead. Food Ser. Innovations in Fuel Cell Technologies = Rsc Energy Environ S Innovations in Fuel Cell Technologies = Rsc. Energy. Environ. S. Innovations in Gis = Innovat Gis Innovations in Gis = Innovat. Gis Innovations in Gis Series = Innovat Gis Innovations in Gis Series = Innovat. Gis Innovations in Health System Finance in Developing and Transitional Economies = Adv Health Econ Heal Innovations in Health System Finance in Developing and Transitional Economies = Adv. Health Econ. Heal. Innovations in Hybrid Intelligent Systems = Adv Soft Comp Innovations in Hybrid Intelligent Systems = Adv. Soft. Comp. Innovations in Intelligent Image Analysis = Stud Comput Intell Innovations in Intelligent Image Analysis = Stud. Comput. Intell. Innovations in Intelligent Machines - 1 = Stud Comput Intell Innovations in Intelligent Machines - 1 = Stud. Comput. Intell. Innovations in Multi-agent Systems and Applications - 1 = Stud Comput Intell Innovations in Multi-agent Systems and Applications - 1 = Stud. Comput. Intell. Innovations in Neural Information Paradigms and Applications = Stud Comput Intell Innovations in Neural Information Paradigms and Applications = Stud. Comput. Intell. Innovations in Nonlinear Acoustics = Aip Conf Proc Innovations in Nonlinear Acoustics = Aip. Conf. Proc. Innovations=Innovations Innovations = Innovations Innovations in oncology nursing = Innov Oncol Nurs Innovations in Power Systems Reliability = Springer Ser Reliab Innovations in Power Systems Reliability = Springer. Ser. Reliab. Innovations in Public Leadership Development = Transform Tr Gov Dem Innovations in Public Leadership Development = Transform. Tr. Gov. Dem. Innovations in Science Education and Technology = Innov Sci Educ Techn Innovations in Science Education and Technology = Innov. Sci. Educ. Techn. Innovations in Structural Engineering and Construction, Vols 1 and 2 = Proc Monogr Eng Wate Innovations in Structural Engineering and Construction, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Innovations in Supercritical Fluids = Acs Sym Ser Innovations in Supercritical Fluids = Acs. Sym. Ser. Innovations in Swarm Intelligence = Stud Comput Intell Innovations in Swarm Intelligence = Stud. Comput. Intell. Innovations (Philadelphia, Pa.) = Innovations Phila Pa Innovations Towards Sustainability: Conditions and Consequences = Sustain Innov Innovations Towards Sustainability: Conditions and Consequences = Sustain. Innov. Innovation System Frontiers: Cluster Networks and Global Value = Adv Spat Sci Innovation System Frontiers: Cluster Networks and Global Value = Adv. Spat. Sci. Innovation Systems in The Service Economy = Econ Sci Techn Innov Innovation Systems in The Service Economy = Econ. Sci. Techn. Innov. Innovation Technology and Knowledge Management = Innov Tech Knowl Man Innovation Technology and Knowledge Management = Innov. Tech. Knowl. Man. Innovation-the European Journal of Social Science Research = Innovation-abingdon Innovation-the European Journal of Social Science Research = Innovation-abingdon. Innovation Through Knowledge Transfer = Smart Innov Sys Innovation Through Knowledge Transfer = Smart. Innov. Sys. Innovation Through Knowledge Transfer = Smart Innov Syst Tec Innovation Through Knowledge Transfer = Smart. Innov. Syst. Tec. Innovative Adult Learning With Innovative Technologies = Ifip Trans A Innovative Adult Learning With Innovative Technologies = Ifip. Trans. A. Innovative Advances in The Forest Products Industries = Aiche Sym S Innovative Advances in The Forest Products Industries = Aiche. Sym. S. Innovative Applications in Data Mining = Stud Comput Intell Innovative Applications in Data Mining = Stud. Comput. Intell. Innovative Approaches for Learning and Knowledge Sharing, Proceedings = Lect Notes Comput Sc Innovative Approaches for Learning and Knowledge Sharing, Proceedings = Lect. Notes. Comput. Sc. Innovative Approaches to The On-site Assessment and Remediation of Contaminated Sites = Nato Sci S Ss Iv Ear Innovative Approaches to The On-site Assessment and Remediation of Contaminated Sites = Nato. Sci. S. Ss. Iv. Ear. Innovative Architecture for Future Generation High-performance Processors and Systems = Pr Ieee Comp Design Innovative Architecture for Future Generation High-performance Processors and Systems = Pr. Ieee. Comp. Design. Innovative Automobile Occupant Protection = Vdi Bericht Innovative Automobile Occupant Protection = Vdi. Bericht. Innovative Beleuchtung Mit Led 2008 = Vdi Bericht Innovative Beleuchtung Mit Led 2008 = Vdi. Bericht. Innovative Computing Methods and Their Applications to Engineering Problems = Stud Comput Intell Innovative Computing Methods and Their Applications to Engineering Problems = Stud. Comput. Intell. Innovative Concepts for Agent-based Systems = Lect Notes Artif Int Innovative Concepts for Agent-based Systems = Lect. Notes. Artif. Int. Innovative Concepts for Autonomic and Agent-based Systems = Lect Notes Artif Int Innovative Concepts for Autonomic and Agent-based Systems = Lect. Notes. Artif. Int. Innovative Concepts in Inflammatory Bowel Diseases = Falk Symp Innovative Concepts in Inflammatory Bowel Diseases = Falk. Symp. Innovative Concpts for Agent-based Systems = Lect Notes Artif Int Innovative Concpts for Agent-based Systems = Lect. Notes. Artif. Int. Innovative Detectors for Supercolliders = Sci Cult Ser Phys Innovative Detectors for Supercolliders = Sci. Cult. Ser. Phys. Innovative Endocrinology of Cancer = Adv Exp Med Biol Innovative Endocrinology of Cancer = Adv. Exp. Med. Biol. Innovative Fahrzeugantriebe 2008 = Vdi Bericht Innovative Fahrzeugantriebe 2008 = Vdi. Bericht. Innovative Food Science & Emerging Technologies = Innovative Food Sci. Emerg. Technol. Innovative Food Science & Emerging Technologies = Innov Food Sci Emerg Innovative Food Science & Emerging Technologies = Innov. Food Sci. Emerg. Innovative Internet Community Systems = Lect Notes Comput Sc Innovative Internet Community Systems = Lect. Notes. Comput. Sc. Innovative Internet Computing Systems = Lect Notes Comput Sc Innovative Internet Computing Systems = Lect. Notes. Comput. Sc. Innovative Internet Computing Systems, Proceedings = Lect Notes Comput Sc Innovative Internet Computing Systems, Proceedings = Lect. Notes. Comput. Sc. Innovative Methods in Support of Bioremediation = Bioremed Ser Innovative Methods in Support of Bioremediation = Bioremed. Ser. Innovative Occupant and Partner Crash Protection = Vdi Bericht Innovative Occupant and Partner Crash Protection = Vdi. Bericht. Innovative Occupant Protection in Cars = Vdi Bericht Innovative Occupant Protection in Cars = Vdi. Bericht. Innovative Perspectives of Higher Education-research Theory and Practice = Innov Persp High Edu Innovative Perspectives of Higher Education-research Theory and Practice = Innov. Persp. High. Edu. Innovative Power Trains Systems = Vdi Bericht Innovative Power Trains Systems = Vdi. Bericht. Innovative Power Train Systems = Vdi Bericht Innovative Power Train Systems = Vdi. Bericht. Innovative Pre-treatment Techniques to Prevent Corrosion of Metallic Surfaces = Eur Fed Corros Publ Innovative Pre-treatment Techniques to Prevent Corrosion of Metallic Surfaces = Eur. Fed. Corros. Publ. Innovative Processing and Manufacturing of Advanced Ceramics and Composites = Ceram Trans Innovative Processing and Manufacturing of Advanced Ceramics and Composites = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses, and Composites = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses, and Composites = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Ii = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Ii = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Iv = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Iv = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Vi = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Vi = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Vii = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses, and Composites Vii = Ceram. Trans. Innovative Processing and Synthesis of Ceramics, Glasses and Composites Viii = Ceram Trans Innovative Processing and Synthesis of Ceramics, Glasses and Composites Viii = Ceram. Trans. Innovative Quick Response Programs in Logistics and Supply Chain Management = Int Handb Inform Sys Innovative Quick Response Programs in Logistics and Supply Chain Management = Int. Handb. Inform. Sys. Innovative Regulatory Approaches Coping With Scandinavian and European Union Policies = Eur Econ Polit Iss Innovative Regulatory Approaches Coping With Scandinavian and European Union Policies = Eur. Econ. Polit. Iss. Innovative Superhard Materials and Sustainable Coatings for Advanced Manufacturing = Nato Sci Ser Ii-math Innovative Superhard Materials and Sustainable Coatings for Advanced Manufacturing = Nato. Sci. Ser. Ii-math. Innovative Superhard Materials and Sustainable Coatings for Advanced Manufacturing = Nato Sci Ser Ii Math Innovative Superhard Materials and Sustainable Coatings for Advanced Manufacturing = Nato. Sci. Ser. Ii. Math. Innovative Technology Series: Information Systems and Networks = Inn Tec Ser Innovative Technology Series: Information Systems and Networks = Inn. Tec. Ser. Innovative Telescopes and Instrumentation for Solar Astrophysics = P Soc Photo-opt Ins Innovative Telescopes and Instrumentation for Solar Astrophysics = P. Soc. Photo-opt. Ins. Innsbrucker Beitrage Zur Kulturwissenschaft, Germanistische Reihe = Inn B Kult Innsbrucker Beitrage Zur Kulturwissenschaft, Germanistische Reihe = Inn. B. Kult. Innsbrucker Beitrage Zur Kulturwissenschaft, Germanistische Reihe = Innsbr Beitr Kult Ge Innsbrucker Beitrage Zur Kulturwissenschaft, Germanistische Reihe = Innsbr. Beitr. Kult. Ge. Inorganic 3d Structures = Struct Bond Inorganic 3d Structures = Struct. Bond. Inorganica Chimica Acta-articles and Letters = Inorg Chim A-art Let Inorganica Chimica Acta-articles and Letters = Inorg. Chim. A-art. Let. Inorganica Chimica Acta-articles = Inorg Chim A-article Inorganica Chimica Acta-articles = Inorg. Chim. A-article. Inorganica Chimica Acta-bioinorganic Chemistry = Inorg Chim A-bioinor Inorganica Chimica Acta-bioinorganic Chemistry = Inorg. Chim. A-bioinor. Inorganica Chimica Acta-f-block Elements Articles and Letters = Inorg Chim A-f-block Inorganica Chimica Acta-f-block Elements Articles and Letters = Inorg. Chim. A-f-block. Inorganica chimica acta = Inorganica Chim Acta Inorganica Chimica Acta = Inorg Chim Acta Inorganica Chimica Acta = Inorg. Chim. Acta Inorganica Chimica Acta-letters = Inorg Chim A-lett Inorganica Chimica Acta-letters = Inorg. Chim. A-lett. Inorganic and Metallic Nanotubular Materials: Recent Technologies and Applications = Top Appl Phys Inorganic and Metallic Nanotubular Materials: Recent Technologies and Applications = Top. Appl. Phys. Inorganic and Organometallic Polymers Ii = Acs Sym Ser Inorganic and Organometallic Polymers Ii = Acs. Sym. Ser. Inorganic and Organometallic Polymers With Special Properties = Nato Adv Sci I E-app Inorganic and Organometallic Polymers With Special Properties = Nato. Adv. Sci. I. E-app. Inorganic Biochemistry = Inorg Biochem Inorganic Biochemistry = Inorg. Biochem. Inorganic chemistry communications = Inorg Chem Commun Inorganic Chemistry Communications = Inorg Chem Commun Inorganic Chemistry Communications = Inorg. Chem. Commun. Inorganic chemistry = Inorg Chem Inorganic Chemistry = Inorg Chem Inorganic Chemistry = Inorg. Chem. Inorganic Chemistry (Washington, DC, United States) = Inorg. Chem. (Washington, DC, U. S.) Inorganic Crystals for Optics, Electro-optics, and Frequency Conversion = P Soc Photo-opt Ins Inorganic Crystals for Optics, Electro-optics, and Frequency Conversion = P. Soc. Photo-opt. Ins. Inorganic Fluorine Chemistry = Acs Sym Ser Inorganic Fluorine Chemistry = Acs. Sym. Ser. Inorganic Materials: Applied Research = Inorg. Mater. Appl. Res. Inorganic Materials = Inorg Mater+ Inorganic Materials = Inorg. Mater. Inorganic Materials = Inorg. Mater+.+ Inorganic Microbial Sulfur Metabolism = Method Enzymol Inorganic Microbial Sulfur Metabolism = Method. Enzymol. Inorganic & Nuclear Chemistry Letters = Inorg Nucl Chem Lett Inorganic & Nuclear Chemistry Letters = Inorg. Nucl. Chem. Lett. Inorganic Optical Materials Iii = P Soc Photo-opt Ins Inorganic Optical Materials Iii = P. Soc. Photo-opt. Ins. Inorganic Optical Materials Ii = Proc Spie Inorganic Optical Materials Ii = Proc. Spie. Inorganic Optical Materials Ii = P Soc Photo-opt Ins Inorganic Optical Materials Ii = P. Soc. Photo-opt. Ins. Inorganic Optical Materials = Proc Spie Inorganic Optical Materials = Proc. Spie. Inorganic Optical Materials = P Soc Photo-opt Ins Inorganic Optical Materials = P. Soc. Photo-opt. Ins. Inorganic Perspectives in Biology and Medicine = Inorg Perspect Biol Inorganic Perspectives in Biology and Medicine = Inorg. Perspect. Biol. Inorganic Polymeric Nanocomposites and Membranes = Adv Polym Sci Inorganic Polymeric Nanocomposites and Membranes = Adv. Polym. Sci. Inorganic Polymers Containing -re(co)3l(plus) Pendants = Polym Sci Technol Se Inorganic Polymers Containing -re(co)3l(plus) Pendants = Polym. Sci. Technol. Se. Inorganic Reaction Mechanisms = Inorg React Mech Inorganic Reaction Mechanisms = Inorg. React. Mech. Inorganic Reaction Mechanisms (Philadelphia, PA, United States) = Inorg. React. Mech. (Philadelphia, PA, U. S.) Inorganic Syntheses = Inorg Syn Inorganic Syntheses = Inorg. Syn. Inorganic Syntheses = Inorg. Synth. Inorganic Syntheses, Vol 30 = Inorg Syn Inorganic Syntheses, Vol 30 = Inorg. Syn. Inorganic Syntheses, Vol 32 = Inorg Syn Inorganic Syntheses, Vol 32 = Inorg. Syn. Inorganic Syntheses, Vol 33 = Inorg Syn Inorganic Syntheses, Vol 33 = Inorg. Syn. Inorganic Syntheses, Vol 34 = Inorg Syn Inorganic Syntheses, Vol 34 = Inorg. Syn. Inorganic Syntheses, Vol 35 = Inorg Syn Inorganic Syntheses, Vol 35 = Inorg. Syn. Inorganic Synthesis, Vol 33 = Inorg Syn Inorganic Synthesis, Vol 33 = Inorg. Syn. Inosine Monophosphate Dehydrogenase: A Major Therapeutic Target = Acs Sym Ser Inosine Monophosphate Dehydrogenase: A Major Therapeutic Target = Acs. Sym. Ser. Inositol Metabolism in Plants = Plant Biol Inositol Metabolism in Plants = Plant. Biol. Inositol Phosphates and Derivatives = Acs Sym Ser Inositol Phosphates and Derivatives = Acs. Sym. Ser. Inositol Phosphates and Lipids: Methods and Protocols = Methods Mol Biol Inositol Phosphates and Lipids: Methods and Protocols = Methods Mol. Biol. Inozemna filologìâ (Philologie étrangère) = InFil In-pack Processed Foods: Improving Quality = Woodhead Food Ser In-pack Processed Foods: Improving Quality = Woodhead. Food. Ser. Inpharma = Inpharma In-plane Semiconductor Lasers: From Ultraviolet to Mid-infrared Ii = P Soc Photo-opt Ins In-plane Semiconductor Lasers: From Ultraviolet to Mid-infrared Ii = P. Soc. Photo-opt. Ins. In-plane Semiconductor Lasers: From Ultraviolet to Midinfrared = P Soc Photo-opt Ins In-plane Semiconductor Lasers: From Ultraviolet to Midinfrared = P. Soc. Photo-opt. Ins. In-plane Semiconductor Lasers Iii = P Soc Photo-opt Ins In-plane Semiconductor Lasers Iii = P. Soc. Photo-opt. Ins. In-plane Semiconductor Lasers Iv = P Soc Photo-opt Ins In-plane Semiconductor Lasers Iv = P. Soc. Photo-opt. Ins. In-plane Semiconductor Lasers V = P Soc Photo-opt Ins In-plane Semiconductor Lasers V = P. Soc. Photo-opt. Ins. In point of fact = In Point Fact In practice = In Pract In Practice = In Pract. In Practice = In Practice In-process Optical Measurements and Industrial Methods = P Soc Photo-opt Ins In-process Optical Measurements and Industrial Methods = P. Soc. Photo-opt. Ins. In Pursuit of The People: Political Culture in France, 1934-39 = Palgr Hist Stud Witc In Pursuit of The People: Political Culture in France, 1934-39 = Palgr. Hist. Stud. Witc. Input/output and Imaging Technologies Ii = P Soc Photo-opt Ins Input/output and Imaging Technologies Ii = P. Soc. Photo-opt. Ins. Input/output and Imaging Technologies = P Soc Photo-opt Ins Input/output and Imaging Technologies = P. Soc. Photo-opt. Ins. In Quest of The Past = Old Test St In Quest of The Past = Old. Test. St. Inquiries in The Economics of Aging = Nat Bur Ec Inquiries in The Economics of Aging = Nat. Bur. Ec. Inquiry : a journal of medical care organization, provision and financing = Inquiry Inquiry-an Interdisciplinary Journal of Philosophy = Inquiry Inquiry-an Interdisciplinary Journal of Philosophy = Inquiry. Inquiry=Inquiry Inquiry=Inquiry;; Inquiry = Inquiry Inquiry (Oslo, Norway) = Inquiry (Oslo) Inquiry-the Journal of Health Care Organization Provision and Financing = Inquiry-j Health Car Inquiry-the Journal of Health Care Organization Provision and Financing = Inquiry-j. Health Car. Insanity of Place: The Place of Insanity = Routl Stud Cult Hist Insanity of Place: The Place of Insanity = Routl. Stud. Cult. Hist. Insatiable Curiosity: Innovation in A Fragile Future = Inside Technol Insatiable Curiosity: Innovation in A Fragile Future = Inside. Technol. Inschriften griechischer Städte aus Kleinasien = IK Inscribing Sorrow: Fourth-century Attic Funerary Epigrams = Trends Class Suppl V Inscribing Sorrow: Fourth-century Attic Funerary Epigrams = Trends. Class. Suppl. V. Inscription and Erasure = Mater Texts Inscription and Erasure = Mater. Texts. Inscriptiones Graecae ad res Romanas pertinentes = IGR Inscriptiones Graecae = IG In Search of A New Biomembrane Model = Biol Skrif In Search of A New Biomembrane Model = Biol. Skrif. In Search of A New Order in East Asia = Res Pap Pol In Search of A New Order in East Asia = Res. Pap. Pol. In Search of An Integrative Vision for Technology = Contemp Syst Think In Search of An Integrative Vision for Technology = Contemp. Syst. Think. In Search of Indicators of Sustainable Development = Env Manag In Search of Indicators of Sustainable Development = Env. Manag. In Search of Pre-exilic Israel = J St Old Test Suppl In Search of Pre-exilic Israel = J. St. Old. Test. Suppl. Insect = Acs Sym Ser Insect = Acs. Sym. Ser. Insect biochemistry and molecular biology = Insect Biochem Mol Biol Insect Biochemistry and Molecular Biology=Insect Biochem Mol Biol;; Insect Biochemistry and Molecular Biology = Insect Biochem. Mol. Biol. Insect Biochemistry and Molecular Biology = Insect Biochem Molec Insect Biochemistry and Molecular Biology = Insect Biochem. Molec. Insect Biochemistry = Insect Biochem Insect Biochemistry = Insect Biochem. Insect Conservation and Diversity = Insect Conserv Diver Insect Conservation and Diversity = Insect Conserv. Diver. Insectes Sociaux = Insectes Soc. Insectes sociaux = Insectes Sociaux Insectes Sociaux = Insect Soc Insectes Sociaux = Insect. Soc. Insect Habitats: Characteristics, Diversity and Management = Insect Terr Arth-bio Insect Habitats: Characteristics, Diversity and Management = Insect Terr. Arth-bio. Insect Hormones, Vol 73 = Vitam Horm Insect Hormones, Vol 73 = Vitam. Horm. Insecticides - Mechanisms of Action and Resistance = Tag Ak Land Insecticides - Mechanisms of Action and Resistance = Tag. Ak. Land. Insect Juvenile Hormone Research = Sci Update Insect Juvenile Hormone Research = Sci. Update. Insect Life-cycle Polymorphism: Theory, Evolution and Ecological Consequences for Seasonality and Diapause Control = Series Entom Insect Life-cycle Polymorphism: Theory, Evolution and Ecological Consequences for Seasonality and Diapause Control = Series. Entom. Insect molecular biology = Insect Mol Biol Insect Molecular Biology=Insect Mol Biol;; Insect Molecular Biology = Insect Mol Biol Insect Molecular Biology = Insect Mol. Biol. Insect Neurochemistry and Neurophysiology 1989 = Exp Clin Ne Insect Neurochemistry and Neurophysiology 1989 = Exp. Clin. Ne. Insect Nicotinic Acetylcholine Receptors = Adv Exp Med Biol Insect Nicotinic Acetylcholine Receptors = Adv. Exp. Med. Biol. Insect Pheromones and Other Behaviour-modifying Chemicals : Applications and Regulation = Br Crop Pr Insect Pheromones and Other Behaviour-modifying Chemicals : Applications and Regulation = Br. Crop. Pr. Insects and Other Terrestrial Arthropods-biology Chemistry and Behavior = Insect Terr Arth-bio Insects and Other Terrestrial Arthropods-biology Chemistry and Behavior = Insect. Terr. Arth-bio. Insect Science and Its Application = Insect Sci Appl Insect Science and Its Application = Insect Sci. Appl. Insect Science = Insect Sci Insect Science = Insect Sci. Insect Sci. = Insect Sci. Insects of Windbreaks and Related Plantings : Distribution, Importance, and Management = Usda Rocky Insects of Windbreaks and Related Plantings : Distribution, Importance, and Management = Usda. Rocky. Insects-plants 89 = Symp Biol Hung Insects-plants 89 = Symp. Biol. Hung. Insect systematics & evolution = Insect syst. evol. Insect Systematics & Evolution = Insect Syst Evol Insect Systematics & Evolution = Insect Syst. Evol. Insect Viruses: Biotechnological Applications = Adv Virus Res Insect Viruses: Biotechnological Applications = Adv. Virus. Res. Insect Viruses: Detection, Characterization and Roles = Virol Res Prog Insect Viruses: Detection, Characterization and Roles = Virol. Res. Prog. In Session-psychotherapy in Practice = In Session-psychoth In Session-psychotherapy in Practice = In Session-psychoth. Inside A Modern Macroeconometric Model = Lect Notes Econ Math Inside A Modern Macroeconometric Model = Lect. Notes. Econ. Math. Inside Animal Hoarding = New Dir Hum-anim Bon Inside Animal Hoarding = New. Dir. Hum-anim. Bon. Inside Austronesian Houses: Perspectives On Domestic Designs for Living = Comp Austro Ser Inside Austronesian Houses: Perspectives On Domestic Designs for Living = Comp. Austro. Ser. Inside Criminal Networks = Stud Organize Crime Inside Criminal Networks = Stud. Organize. Crime. Insider Attack and Cyber Security: Beyond The Hacker = Adv Inform Secur Insider Attack and Cyber Security: Beyond The Hacker = Adv. Inform. Secur. Insider Attack and Cyber Security: Beyond The Hacker = Adv Inf Sec Insider Attack and Cyber Security: Beyond The Hacker = Adv. Inf. Sec. Insiders and Outsiders in Seventeenth-century Philosophy = Routledge Stud Seven Insiders and Outsiders in Seventeenth-century Philosophy = Routledge. Stud. Seven. Insider Threats in Cyber Security = Adv Inform Secur Insider Threats in Cyber Security = Adv. Inform. Secur. Inside Technology = Inside Technol Inside Technology = Inside Technol. Inside The Business Enterprise = Nber Conf R Inside The Business Enterprise = Nber. Conf. R. Inside The Stars = Astr Soc P Inside The Stars = Astr. Soc. P. Inside The Sun = Astrophys Space Sc L Inside The Sun = Astrophys. Space. Sc. L. Inside The Welfare State = Brit Polit Soc Inside The Welfare State = Brit. Polit. Soc. Insidious Workplace Behavior = Ser Appl Psychol Insidious Workplace Behavior = Ser. Appl. Psychol. Insight (American Society of Ophthalmic Registered Nurses) = Insight Insight and Inference = Amer Cath Phil Assoc Insight and Inference = Amer. Cath. Phil. Assoc. Insight and Innovation in International Development = Insight Innov Int De Insight and Innovation in International Development = Insight Innov. Int. De. Insight = Insight Insight of Unbelievers: Nicholas of Lyra and Christian Reading of Jewish Text in The Later Middle Ages = Jew Cult Context Insight of Unbelievers: Nicholas of Lyra and Christian Reading of Jewish Text in The Later Middle Ages = Jew. Cult. Context. Insights Into Receptor Function and New Drug Development Targets = Res Perspect End Int Insights Into Receptor Function and New Drug Development Targets = Res. Perspect. End. Int. Insights Into Water Management: Lessons From Water and Wastewater Technologies in Ancient Civilizations = Wa Sci Technol Insights Into Water Management: Lessons From Water and Wastewater Technologies in Ancient Civilizations = Wa. Sci. Technol. In silico biology = In Silico Biol In Silico Biology = In Silico Biol. In Silico Simulation of Biological Processes = Novart Fdn Symp In Silico Simulation of Biological Processes = Novart. Fdn. Symp. In Silico Tools for Gene Discovery = Methods Mol Biol In Silico Tools for Gene Discovery = Methods. Mol. Biol. In Silico Toxicology: Principles and Applications = Issues Toxicol In Silico Toxicology: Principles and Applications = Issues. Toxicol. In Situ Aeration : Air Sparging, Bioventing, and Related Remediation Processes = Bioremed Ser In Situ Aeration : Air Sparging, Bioventing, and Related Remediation Processes = Bioremed. Ser. In Situ Aeration and Aerobic Remediation = Bioremed Ser In Situ Aeration and Aerobic Remediation = Bioremed. Ser. In Situ and Laboratory Experiments On Electoral Law Reform: French Presidential Elections = Stud Public Choice In Situ and Laboratory Experiments On Electoral Law Reform: French Presidential Elections = Stud. Public. Choice. In Situ and On-site Bioremediation, Vol 1 = Bioremed Ser In Situ and On-site Bioremediation, Vol 1 = Bioremed. Ser. In Situ and On-site Bioremediation, Vol 2 = Bioremed Ser In Situ and On-site Bioremediation, Vol 2 = Bioremed. Ser. In Situ and On-site Bioremediation, Vol 3 = Bioremed Ser In Situ and On-site Bioremediation, Vol 3 = Bioremed. Ser. In Situ and On-site Bioremediation, Vol 4 = Bioremed Ser In Situ and On-site Bioremediation, Vol 4 = Bioremed. Ser. In Situ and On-site Bioremediation, Vol 5 = Bioremed Ser In Situ and On-site Bioremediation, Vol 5 = Bioremed. Ser. In Situ Assessment of Structural Timber = Rilem State Art Rep In Situ Assessment of Structural Timber = Rilem. State. Art. Rep. In Situ Chemical Oxidation for Groundwater Remediation = Serdp Estcp Remediat In Situ Chemical Oxidation for Groundwater Remediation = Serdp. Estcp. Remediat. In Situ Electron and Tunneling Microscopy of Dynamic Processes = Mater Res Soc Symp P In Situ Electron and Tunneling Microscopy of Dynamic Processes = Mater. Res. Soc. Symp. P. In Situ Evaluation of Biological Hazards of Environmental Pollutants = Envir Sci R In Situ Evaluation of Biological Hazards of Environmental Pollutants = Envir. Sci. R. In Situ Hybridization Protocols for The Brain, 2nd Edition = Int Rev Neurobiol In Situ Hybridization Protocols for The Brain, 2nd Edition = Int. Rev. Neurobiol. In-situ Impact Detection Techniques, Interplanetary Dust, and Future Mars Exploration = Adv Space Res In-situ Impact Detection Techniques, Interplanetary Dust, and Future Mars Exploration = Adv. Space. Res. In-situ Impact Detection Techniques, Interplanetary Dust, and Future Mars Exploration = Adv Space Res-series In-situ Impact Detection Techniques, Interplanetary Dust, and Future Mars Exploration = Adv. Space. Res-series. In Situ = In Situ In Situ Nmr Methods in Catalysis = Top Curr Chem In Situ Nmr Methods in Catalysis = Top. Curr. Chem. In-situ Patterning : Selective Area Deposition and Etching = Mater Res Soc Symp P In-situ Patterning : Selective Area Deposition and Etching = Mater. Res. Soc. Symp. P. In Situ Process Diagnostics and Intelligent Materials Processing = Mater Res Soc Symp P In Situ Process Diagnostics and Intelligent Materials Processing = Mater. Res. Soc. Symp. P. In Situ Process Diagnostics and Modelling = Mater Res Soc Symp P In Situ Process Diagnostics and Modelling = Mater. Res. Soc. Symp. P. In Situ-produced Cosmogenic Nuclides and Quantification of Geological Processes = Geol Soc Am Spec Pap In Situ-produced Cosmogenic Nuclides and Quantification of Geological Processes = Geol. Soc. Am. Spec. Pap. In Situ Remediation of Chlorinated Solvent Plumes = Serdp Estcp Remediat In Situ Remediation of Chlorinated Solvent Plumes = Serdp. Estcp. Remediat. In Situ Remediation of The Geoenvironment = Geotech Sp In Situ Remediation of The Geoenvironment = Geotech. Sp. In-situ Rock Stress Measurement, Interpretation and Application = Proc Monogr Eng Wate In-situ Rock Stress Measurement, Interpretation and Application = Proc. Monogr. Eng. Wate. In Situ Testing Devices and Strain Measurements = Transport Res Rec In Situ Testing Devices and Strain Measurements = Transport. Res. Rec. Insolvency Court's Supervision of The Insolvency Administrator = Schr Deut Eur Int In Insolvency Court's Supervision of The Insolvency Administrator = Schr. Deut. Eur. Int. In. Insomnia and Anxiety = Ser Anxiety Relat Di Insomnia and Anxiety = Ser. Anxiety Relat. Di. Inspection Panel of The World Bank: A Different Complaints Procedure = Rw Inst Hum R Lib Inspection Panel of The World Bank: A Different Complaints Procedure = Rw. Inst. Hum. R. Lib. Inspiration of Astronomical Phenomena Vi = Astr Soc P Inspiration of Astronomical Phenomena Vi = Astr. Soc. P. Inspiring Student Writers: Strategies and Examples for Teachers = Lit Lang Learn Inspiring Student Writers: Strategies and Examples for Teachers = Lit. Lang. Learn. In Spite of Partition: Jews, Arabs, and The Limits of Separatist Imagination = Transl Transnat In Spite of Partition: Jews, Arabs, and The Limits of Separatist Imagination = Transl. Transnat. INS reporter / Immigration and Naturalization Service, U.S. Department of Justice = INS Rep Instabilitat in Natur Und Wissenschaft: Eine Wissenschaftsphilosophie Der Nachmodernen Physik = Quellen Stud Philos Instabilitat in Natur Und Wissenschaft: Eine Wissenschaftsphilosophie Der Nachmodernen Physik = Quellen. Stud. Philos. Instabilities and Nonequilibrium Structures Iv = Math Appl Instabilities and Nonequilibrium Structures Iv = Math. Appl. Instabilities and Nonequilibrium Structures Ix = Nonl Phen Compl Syst Instabilities and Nonequilibrium Structures Ix = Nonl. Phen. Compl. Syst. Instabilities of Flows: With and Without Heat Transfer and Chemical Reaction = Cism Courses Lect Instabilities of Flows: With and Without Heat Transfer and Chemical Reaction = Cism. Courses. Lect. Instability and Transition, Vol 2 = Icase Nasa Instability and Transition, Vol 2 = Icase. Nasa. Instability in Models Connected With Fluid Flows Ii = Int Mat Ser Instability in Models Connected With Fluid Flows Ii = Int. Mat. Ser. Instability in Models Connected With Fluid Flows I = Int Mat Ser Instability in Models Connected With Fluid Flows I = Int. Mat. Ser. Instability Phenomena in The Zone of The Alpine Arc = Mit Sch Ges Instability Phenomena in The Zone of The Alpine Arc = Mit. Sch. Ges. Instability, Transition, and Turbulence = Icase Nasa Instability, Transition, and Turbulence = Icase. Nasa. Installation Effects in Fan Systems = Imeche Sem Installation Effects in Fan Systems = Imeche. Sem. Instant Research On Peace and Violence = Instant Res Peace Vi Instant Research On Peace and Violence = Instant Res. Peace Vi. Instationary Processes and Dynamic Experimental Methods in Catalysis, Electrochemistry and Corrosion = Dech Monog Instationary Processes and Dynamic Experimental Methods in Catalysis, Electrochemistry and Corrosion = Dech. Monog. Institut des belles lettres arabes : IBLA = IBLA Institut des Hautes études Scientifiques = Inst. Hautes études Sci. Publ. Math. Institute for East-west Security Studies Special Report = Inst Ew Sec Institute for East-west Security Studies Special Report = Inst. Ew. Sec. Institute for Environmental Studies Report = Inst Env R Institute for Environmental Studies Report = Inst. Env. R. Institute for Law and Finance Series = Inst Law Financ Ser Institute for Law and Finance Series = Inst. Law Financ. Ser. Institute for Nonlinear Science = Inst. Nonlinear Sci. Institute for Research On Poverty Special Report = Inst Res P Sp Institute for Research On Poverty Special Report = Inst. Res. P. Sp. Institut Élie Cartan = Inst. Élie Cartan Institute of Acoustics, Proceedings, Vol 19, Pt 8 1997 = Proc Ins Ac Institute of Acoustics, Proceedings, Vol 19, Pt 8 1997 = Proc. Ins. Ac. Institute of Botany Academia Sinica Monograph Series = Inst Bot Ac Institute of Botany Academia Sinica Monograph Series = Inst. Bot. Ac. Institute of Electrical and Electronics Engineers = IEEE Trans. Antennas and Propagation Institute of Electrical and Electronics Engineers = IEEE Trans. Automat. Control Institute of Electrical and Electronics Engineers = IEEE Trans. Comput. Institute of Electrical and Electronics Engineers = IEEE Trans. Inform. Theory Institute of Geography and Spatial Organization, Polish Academy of Sciences : Conference Papers = Igipz Pan C Institute of Geography and Spatial Organization, Polish Academy of Sciences : Conference Papers = Igipz. Pan. C. Institute of Mathematical Statistics Lecture Notes---Monograph Series = IMS Lecture Notes Monogr. Ser. Institute of Mathematical Statistics Lecture Notes - Monograph Series = Inst Math S Institute of Mathematical Statistics Lecture Notes - Monograph Series = Inst. Math. S. Institute of Mathematics and Its Applications Conference Series = Inst Math A Institute of Mathematics and Its Applications Conference Series = Inst. Math. A. Institute of Mathematics and Its Applications Conference Series : New Series = Inst Math C Institute of Mathematics and Its Applications Conference Series : New Series = Inst. Math. C. Institute of Mathematics & Computer Sciences = J. Inst. Math. Comput. Sci. Comput. Sci. Ser. Institute of Mathematics & Computer Sciences = J. Inst. Math. Comput. Sci. Math. Ser. Institute of Physics Conference Series = Inst Phys Conf Ser Institute of Physics Conference Series = Inst. Phys. Conf. Ser. Institute of Physics Conference Series <d> = Inst Phys Conf Ser Institute of Physics Conference Series <d> = Inst. Phys. Conf. Ser. Institute of Social Sciences: Urban Studies Series = Iss Urb Stud Ser Institute of Social Sciences: Urban Studies Series = Iss. Urb. Stud. Ser. Institute of Systems, Control and Information Engineers = Trans. Inst. Systems Control Inform. Engrs. Institut Francais Du Petrole Publications = Inst Fran Petr Publ Institut Francais Du Petrole Publications = Inst. Fran. Petr. Publ. Institut Fur Weltwirtschaft An Der Universitat Kiel - Symposia and Conference Proceedings = Inst Weltwirts Symp Institut Fur Weltwirtschaft An Der Universitat Kiel - Symposia and Conference Proceedings = Inst. Weltwirts. Symp. Institut Historique Belge De Rome Bibliotheque = Inst Hist Belge Rome Institut Historique Belge De Rome Bibliotheque = Inst. Hist. Belge Rome Institutional Analysis = Inst Analysis Institutional Analysis = Inst. Analysis Institutional and Procedural Aspects of Mass Claims Settlement Systems = Pca Peace Palace Pap Institutional and Procedural Aspects of Mass Claims Settlement Systems = Pca. Peace. Palace. Pap. Institutional Approach to Global Corporate Governance: Business Systems and Beyond = Int Financ Rev Institutional Approach to Global Corporate Governance: Business Systems and Beyond = Int. Financ. Rev. Institutional Balancing in The Asia Pacific: Economic Interdependence and China's Rise = Routl Contemp China Institutional Balancing in The Asia Pacific: Economic Interdependence and China's Rise = Routl. Contemp. China. Institutional Challenges in Post-constitutional Europe: Governing Change = Routl Adv Eur Polit Institutional Challenges in Post-constitutional Europe: Governing Change = Routl. Adv. Eur. Polit. Institutional Change and Economic Behaviour = Int Econ Assoc Serie Institutional Change and Economic Behaviour = Int. Econ. Assoc. Serie. Institutional Change and The Public Sector in Transitional Economies = World B Dis Institutional Change and The Public Sector in Transitional Economies = World. B. Dis. Institutional Change in Japan = Eur I Jpn Stud E Asi Institutional Change in Japan = Eur. I. Jpn. Stud. E. Asi. Institutional Change in The Payments System and Monetary Policy = Routl Int Stud Money Institutional Change in The Payments System and Monetary Policy = Routl. Int. Stud. Money. Institutional Competition = New Think Polit Econ Institutional Competition = New. Think. Polit. Econ. Institutional Dynamics in Environmental Governance = Environ Policy Institutional Dynamics in Environmental Governance = Environ. Policy. Institutional Economics and The Formation of Preferences: The Advent of Pop Music = New Horiz Inst Evol Institutional Economics and The Formation of Preferences: The Advent of Pop Music = New. Horiz. Inst. Evol. Institutional Economics in France and Germany = St Econ Ethic Philos Institutional Economics in France and Germany = St. Econ. Ethic. Philos. Institutional Economics in France and Germany = Stud Econ Ethics Phi Institutional Economics in France and Germany = Stud. Econ. Ethics. Phi. Institutional Economics = Routl Front Polit Ec Institutional Economics = Routl. Front. Polit. Ec. Institutional Investor = Inst Investor Institutional Investor = Inst. Investor Institutionalisation of European Spatial Planning = Sustain Urban Areas Institutionalisation of European Spatial Planning = Sustain. Urban. Areas. Institutionen für Internationell Pedagogik = Inst. Internat. Pedagog. Report Institution of Chemical Engineers Symposium Series = Inst Chem E Institution of Chemical Engineers Symposium Series = Inst. Chem. E. Institution of Chemical Engineers Symposium Series = Inst. Chem. Eng. Symp. Ser. Institution of Engineers, Australia : National Conference Publications = Inst Eng A Institution of Engineers, Australia : National Conference Publications = Inst. Eng. A. Institution of Mechanical Engineers Seminar = Imeche Sem Institution of Mechanical Engineers Seminar = Imeche. Sem. Institutions and Gender Empowerment in The Global Economy = World Sci Stud Int E Institutions and Gender Empowerment in The Global Economy = World. Sci. Stud. Int. E. Institutions and Ideology = Res Sociol Organ-res Institutions and Ideology = Res. Sociol. Organ-res. Institutions, Equilibria and Efficiency: Essays in Honor of Birgit Grodal = Stud Econ Theory Institutions, Equilibria and Efficiency: Essays in Honor of Birgit Grodal = Stud. Econ. Theory. Institutions = Institutions Institutions of The Asia-pacific = Glob Inst Institutions of The Asia-pacific = Glob. Inst. Institutions of The Enlarged European Union: Continuity and Change = Stud Eu Reform Enlar Institutions of The Enlarged European Union: Continuity and Change = Stud. Eu. Reform. Enlar. Institutions of The Global South = Glob Inst Institutions of The Global South = Glob. Inst. Institutions, Politics, and Fiscal Policy = Zei Stud Eu Econ Law Institutions, Politics, and Fiscal Policy = Zei. Stud. Eu. Econ. Law. Institutions, Politics, and Fiscal Policy = Zei Stud Eur Econ La Institutions, Politics, and Fiscal Policy = Zei. Stud. Eur. Econ. La. Institutions, Sustainability, and Natural Resources: Institutions for Sustainable Forest Management = Sustain Econ Nat Res Institutions, Sustainability, and Natural Resources: Institutions for Sustainable Forest Management = Sustain. Econ. Nat. Res. Institutions/volume feeding = Inst Vol Feed Institutions/Volume Feeding = Inst. Vol. Feed. Institut Mathématique = Publ. Inst. Math. (Beograd) (N.S.) Instituto Nacional de Estadística = Estadíst. Española Institutul Politehnic "Traian Vuia" Timișoara = Inst. Politehn. Traian Vuia Timișoara Lucrăr. Sem. Mat. Fiz. INSTRAW news : women and development = INSTRAW News Instructional course lectures = Instr Course Lect Instructional Course Lectures=Instr Course Lect;; Instructional Course Lectures = Instr. Course Lect. Instructional Course Lectures, Vol 43, 1994 = Aaos Instr Cours Lec Instructional Course Lectures, Vol 43, 1994 = Aaos. Instr. Cours. Lec. Instructional Course Lectures, Vol 44, 1995 = Aaos Instr Cours Lec Instructional Course Lectures, Vol 44, 1995 = Aaos. Instr. Cours. Lec. Instructional Course Lectures, Vol 45, 1996 = Aaos Instr Cours Lec Instructional Course Lectures, Vol 45, 1996 = Aaos. Instr. Cours. Lec. Instructional Course Lectures, Vol 47 - 1998 = Aaos Instr Cours Lec Instructional Course Lectures, Vol 47 - 1998 = Aaos. Instr. Cours. Lec. Instructional Science = Instr Sci Instructional Science = Instr. Sci. Instrumentation - Biomedical Instrumentation = Imeko Tc Instrumentation - Biomedical Instrumentation = Imeko. Tc. Instrumentation, Control and Automation of Water and Wastewater Treatment and Transport Systems = Adv Wat Pol Instrumentation, Control and Automation of Water and Wastewater Treatment and Transport Systems = Adv. Wat. Pol. Instrumentation, Controls and Automation in The Power Industry = Inst Cont A Instrumentation, Controls and Automation in The Power Industry = Inst. Cont. A. Instrumentation, Controls and Automation in The Power Industry, Vol 34 = Inst Cont A Instrumentation, Controls and Automation in The Power Industry, Vol 34 = Inst. Cont. A. Instrumentation for Air Pollution and Global Atmospheric Monitoring = P Soc Photo-opt Ins Instrumentation for Air Pollution and Global Atmospheric Monitoring = P. Soc. Photo-opt. Ins. Instrumentation for Magnetospheric Imagery Ii = P Soc Photo-opt Ins Instrumentation for Magnetospheric Imagery Ii = P. Soc. Photo-opt. Ins. Instrumentation for Magnetospheric Imagery = P Soc Photo-opt Ins Instrumentation for Magnetospheric Imagery = P. Soc. Photo-opt. Ins. Instrumentation for Monitoring and Control in Celss = Adv Space Res Instrumentation for Monitoring and Control in Celss = Adv. Space. Res. Instrumentation for Monitoring and Control in Celss = Adv Space Res-series Instrumentation for Monitoring and Control in Celss = Adv. Space. Res-series. Instrumentation for Planetary and Terrestrial Atmospheric Remote Sensing = P Soc Photo-opt Ins Instrumentation for Planetary and Terrestrial Atmospheric Remote Sensing = P. Soc. Photo-opt. Ins. Instrumentation for Uv/euv Astronomy and Solar Missions = P Soc Photo-opt Ins Instrumentation for Uv/euv Astronomy and Solar Missions = P. Soc. Photo-opt. Ins. Instrumentation in Astronomy Viii, Pts 1 and 2 = P Soc Photo-opt Ins Instrumentation in Astronomy Viii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Instrumentation in Astronomy Vii, Parts 1 and 2 = P Soc Photo-opt Ins Instrumentation in Astronomy Vii, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Instrumentation in Elementary Particle Physics = Aip Conf Proc Instrumentation in Elementary Particle Physics = Aip. Conf. Proc. Instrumentation = Instrumentation Instrumentation in The Aerospace Industry = Instr Aeros Instrumentation in The Aerospace Industry = Instr. Aeros. Instrumentation in The Chemical and Petroleum Industries = Instr Chem Instrumentation in The Chemical and Petroleum Industries = Instr. Chem. Instrumentation in The Chemical and Petroleum Industries, Vol 21 = Instr Chem Instrumentation in The Chemical and Petroleum Industries, Vol 21 = Instr. Chem. Instrumentation in The Chemical and Petroleum Industries, Vol 23 = Instr Chem Instrumentation in The Chemical and Petroleum Industries, Vol 23 = Instr. Chem. Instrumentation in The Power Industry = Instr Pow Instrumentation in The Power Industry = Instr. Pow. Instrumentation in The Power Industry, Vol 32 = Instr Pow Instrumentation in The Power Industry, Vol 32 = Instr. Pow. Instrumentation in The Power Industry, Vol 33 = Instr Pow Instrumentation in The Power Industry, Vol 33 = Instr. Pow. Instrumentation in The Pulp and Paper Industry = Instr Pulp Instrumentation in The Pulp and Paper Industry = Instr. Pulp Instrumentation in The Pulp and Paper Industry, Vol 28 = Instr Pulp Instrumentation in The Pulp and Paper Industry, Vol 28 = Instr. Pulp Instrumentation, Metrology, and Standards for Nanomanufacturing Ii = Proc Spie Instrumentation, Metrology, and Standards for Nanomanufacturing Ii = Proc. Spie. Instrumentation, Metrology, and Standards for Nanomanufacturing Ii = P Soc Photo-opt Ins Instrumentation, Metrology, and Standards for Nanomanufacturing Ii = P. Soc. Photo-opt. Ins. Instrumentation, Metrology, and Standards for Nanomanufacturing Iv = P Soc Photo-opt Ins Instrumentation, Metrology, and Standards for Nanomanufacturing Iv = P. Soc. Photo-opt. Ins. Instrumentation, Metrology, and Standards for Nanomanufacturing = P Soc Photo-opt Ins Instrumentation, Metrology, and Standards for Nanomanufacturing = P. Soc. Photo-opt. Ins. Instrumentation Science and Technology = Instrum Sci. Technol. Instrumentation Science & Technology = Instrum Sci Technol Instrumentation Science & Technology = Instrum. Sci. Technol. Instrumentation, Systems, and Automation Conference Proceedings = Tech Papers Isa Instrumentation, Systems, and Automation Conference Proceedings = Tech. Papers. Isa. Instrumentation Technology = Instr Technol Instrumentation Technology = Instr. Technol. Instrumentation Technology = Intech Instrumentation Technology = Intech. Instrument Design and Performance for Optical/infrared Ground-based Telescopes, Pts 1-3 = Proc Spie Instrument Design and Performance for Optical/infrared Ground-based Telescopes, Pts 1-3 = Proc. Spie. Instrument Design and Performance for Optical/infrared Ground-based Telescopes, Pts 1-3 = P Soc Photo-opt Ins Instrument Design and Performance for Optical/infrared Ground-based Telescopes, Pts 1-3 = P. Soc. Photo-opt. Ins. Instrument Practice = Instrum Pract Instrument Practice = Instrum. Pract. Instruments and Experimental Techniques = Instrum Exp Tech+ Instruments and Experimental Techniques = Instrum. Exp. Tech+.+ Instruments and Experimental Techniques-ussr = Instrum Exper Tech-u Instruments and Experimental Techniques-ussr = Instrum. Exper. Tech-u. Instruments and Experiment Techniques = Instrum. Exp. Tech. Instruments & Control Systems = I&cs-control Tech En Instruments & Control Systems = I&cs-control. Tech. En. Instruments for Optics and Optoelectronic Inspection and Control = P Soc Photo-opt Ins Instruments for Optics and Optoelectronic Inspection and Control = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Iii = Proc Spie Instruments, Methods, and Missions for Astrobiology Iii = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Iii = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Iii = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Ii = Proc Spie Instruments, Methods, and Missions for Astrobiology Ii = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Ii = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Ii = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Iv = Proc Spie Instruments, Methods, and Missions for Astrobiology Iv = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Iv = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Iv = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Ix = Proc Spie Instruments, Methods, and Missions for Astrobiology Ix = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Ix = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Ix = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Viii = Proc Spie Instruments, Methods, and Missions for Astrobiology Viii = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Viii = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Viii = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Vii = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Vii = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Vi = Proc Spie Instruments, Methods, and Missions for Astrobiology Vi = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Vi = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Vi = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology V = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology V = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Xiii = Proc Spie Instruments, Methods, and Missions for Astrobiology Xiii = Proc. Spie. Instruments, Methods, and Missions for Astrobiology Xiii = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Xiii = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology Xi = P Soc Photo-opt Ins Instruments, Methods, and Missions for Astrobiology Xi = P. Soc. Photo-opt. Ins. Instruments, Methods, and Missions for Astrobiology X = Proc Spie Instruments, Methods, and Missions for Astrobiology X = Proc. Spie. Instruments, Methods, and Missions for The Investigation of Extraterrestrial Microorganisms = P Soc Photo-opt Ins Instruments, Methods, and Missions for The Investigation of Extraterrestrial Microorganisms = P. Soc. Photo-opt. Ins. Instruments, Science, and Methods for Geospace and Planetary Remote Sensing = Proc Spie Instruments, Science, and Methods for Geospace and Planetary Remote Sensing = Proc. Spie. Instruments, Science, and Methods for Geospace and Planetary Remote Sensing = P Soc Photo-opt Ins Instruments, Science, and Methods for Geospace and Planetary Remote Sensing = P. Soc. Photo-opt. Ins. Insula Fulcheria = InsFulc Insula-revista De Letras Y Ciencias Humanas = Insula Insula-revista De Letras Y Ciencias Humanas = Insula. Insulation Materials: Testing and Applications, 4th Volume = Am Soc Test Mater Insulation Materials: Testing and Applications, 4th Volume = Am. Soc. Test. Mater. Insulation Materials: Testing and Applications, Third Volume = Am Soc Test Mater Insulation Materials: Testing and Applications, Third Volume = Am. Soc. Test. Mater. Insulation Materials : Testing and Applications, Vol 2 = Am Soc Test Mater Insulation Materials : Testing and Applications, Vol 2 = Am. Soc. Test. Mater. Insulin-like Growth Factor Binding Proteins = Int Congr Ser Insulin-like Growth Factor Binding Proteins = Int. Congr. Ser. Insulin-like Growth Factors and Their Regulatory Proteins = Int Congr Ser Insulin-like Growth Factors and Their Regulatory Proteins = Int. Congr. Ser. Insulin Resistance and Cancer: Epidemiology, Cellular and Molecular Mechanisms and Clinical Implications = Energ Balance Cancer Insulin Resistance and Cancer: Epidemiology, Cellular and Molecular Mechanisms and Clinical Implications = Energ. Balance. Cancer. Insulin Resistance and Nonalcoholic Fatty Liver Disease (nafld)/nonalcoholic Steatohepatitis(nash) = Metab Dis-lab Clin R Insulin Resistance and Nonalcoholic Fatty Liver Disease (nafld)/nonalcoholic Steatohepatitis(nash) = Metab. Dis-lab. Clin. R. Insulin Resistance and Polycystic Ovarian Syndrome: Pathogenesis, Evaluation, and Treatment = Contemp Endocrinol S Insulin Resistance and Polycystic Ovarian Syndrome: Pathogenesis, Evaluation, and Treatment = Contemp. Endocrinol. S. Insulin Resistance: Childhood Precursors and Adult Disease = Contemp Endocrinol S Insulin Resistance: Childhood Precursors and Adult Disease = Contemp. Endocrinol. S. Insulin Resistance in Human Disease = Int Congr Ser Insulin Resistance in Human Disease = Int. Congr. Ser. Insulin Resistance, Metabolic Diseases and Diabetic Complications = Int Congr Ser Insulin Resistance, Metabolic Diseases and Diabetic Complications = Int. Congr. Ser. Insurance and Legal Issues in The Oil Industry = Int Energ Resour Law Insurance and Legal Issues in The Oil Industry = Int. Energ. Resour. Law. Insurance counsel journal = Insur Couns J Insurance Intermediation: An Economic Analysis of The Information Services Market = Contrib Econ Insurance Intermediation: An Economic Analysis of The Information Services Market = Contrib. Econ. Insurance law journal (Chicago, Ill.) = Insur Law J Insurance Law Journal = Insur Law J Insurance Law Journal = Insur. Law J. Insurance: Mathematics and Economics=Ins.: Mathematics Econ. Insurance: Mathematics & Economics = Insurance Math. Econom. Insurance, mathematics & economics = Insur Math Econ Insurance Mathematics & Economics = Insur Math Econ Insurance Mathematics & Economics = Insur. Math. Econ. Intech = Intech Integer Points in Polyhedra-geometry, Number Theory, Algebra, Optimization = Contemp Math Integer Points in Polyhedra-geometry, Number Theory, Algebra, Optimization = Contemp. Math. Integer Points in Polyhedra - Geometry, Number Theory, Representation Theory, Algebra, Optimization, Statistics = Contemp Math Integer Points in Polyhedra - Geometry, Number Theory, Representation Theory, Algebra, Optimization, Statistics = Contemp. Math. Integer Points in Polyhedra = Zur Lect Adv Math Integer Points in Polyhedra = Zur. Lect. Adv. Math. Integer Programming and Combinatorial Optimization = Lect Notes Comput Sc Integer Programming and Combinatorial Optimization = Lect. Notes. Comput. Sc. Integer Programming and Combinatorial Optimization, Proceedings = Lect Notes Comput Sc Integer Programming and Combinatorial Optimization, Proceedings = Lect. Notes. Comput. Sc. Integrability = Lect Notes Phys Integrability = Lect. Notes. Phys. Integrable Hamiltonian Hierarchies = Lect Notes Phys Integrable Hamiltonian Hierarchies = Lect. Notes. Phys. Integrable Quantum Field Theories = Nato Adv Sci I B-phy Integrable Quantum Field Theories = Nato. Adv. Sci. I. B-phy. Integrable Quantum Field Theories = Nato Adv Sci Inst Se Integrable Quantum Field Theories = Nato. Adv. Sci. Inst. Se. Integrable Structures of Exactly Solvable Two-dimensional Models of Quantum Field Theory = Nato Sci Ser Ii Math Integrable Structures of Exactly Solvable Two-dimensional Models of Quantum Field Theory = Nato. Sci. Ser. Ii. Math. Integrable Systems and Applications = Lect Notes Phys Integrable Systems and Applications = Lect. Notes. Phys. Integrable Systems and Foliations = Prog Math Integrable Systems and Foliations = Prog. Math. Integrable Systems and Random Matrices: in Honor of Percy Deift = Contemp Math Integrable Systems and Random Matrices: in Honor of Percy Deift = Contemp. Math. Integrable Systems in Celestial Mechanics = Prog Math Phys Integrable Systems in Celestial Mechanics = Prog. Math. Phys. Integrable Systems in The Realm of Algebraic Geometry, Second Edition = Lect Notes Math Integrable Systems in The Realm of Algebraic Geometry, Second Edition = Lect. Notes. Math. Integrable Systems = Prog Math Integrable Systems = Prog. Math. Integrable Systems, Quantum Groups, and Quantum Field Theories = Nato Adv Sci Inst Se Integrable Systems, Quantum Groups, and Quantum Field Theories = Nato. Adv. Sci. Inst. Se. Integral and Diagnostic Intrusive Prediction of Speech Quality = T-lab Ser Telecommun Integral and Diagnostic Intrusive Prediction of Speech Quality = T-lab. Ser. Telecommun. Integral Equations and Operator Theory = Integral Equations Operator Theory Integral Equations and Operator Theory = Integr Equat Oper Th Integral Equations and Operator Theory = Integr. Equat. Oper. Th. Integral Foam Molding of Light Metals: Technology, Foam Physics and Foam Simulation = Eng Mater Integral Foam Molding of Light Metals: Technology, Foam Physics and Foam Simulation = Eng. Mater. Integral Geometry and Tomography = Contemp Math Integral Geometry and Tomography = Contemp. Math. Integral Methods in Science and Engineering - 90 = S Comp Phys Integral Methods in Science and Engineering - 90 = S. Comp. Phys. Integral Methods in Science and Engineering = Ch Crc Res Notes Integral Methods in Science and Engineering = Ch. Crc. Res. Notes. Integral Methods in Science and Engineering = Ch Crc Res Notes Mat Integral Methods in Science and Engineering = Ch. Crc. Res. Notes. Mat. Integral Representation Theory: Applications to Convexity, Banach Spaces and Potential Theory = Degruyter Stud Math Integral Representation Theory: Applications to Convexity, Banach Spaces and Potential Theory = Degruyter. Stud. Math. Integral Transforms and Special Functions = Integral Transform. Spec. Funct. Integral Transforms and Special Functions = Integr Transf Spec F Integral Transforms and Special Functions = Integr. Transf. Spec. F. Integrated 60ghz Rf Beamforming in Cmos = Analog Circ Sig Proc Integrated 60ghz Rf Beamforming in Cmos = Analog. Circ. Sig. Proc. Integrated Analytical Systems = Integr Anal Syst Integrated Analytical Systems = Integr. Anal. Syst. Integrated Approaches for Materials and Structural Safety = Fracture Mech Symp Integrated Approaches for Materials and Structural Safety = Fracture. Mech. Symp. Integrated Approach to Communication Theory and Research, Second Edition = Commun Ser Integrated Approach to Communication Theory and Research, Second Edition = Commun. Ser. Integrated Approach to Environmental Data Management Systems = Nato Asi 2 Integrated Approach to Environmental Data Management Systems = Nato. Asi. 2. Integrated Assessment and Management of Public Resources = New Horiz Environ Ec Integrated Assessment and Management of Public Resources = New. Horiz. Environ. Ec. Integrated Assessment Studies = Integrat Ass Studies Integrated Assessment Studies = Integrat. Ass. Studies Integrated Broadband Communication Networks and Services = Ifip Trans C Integrated Broadband Communication Networks and Services = Ifip. Trans. C. Integrated Cardiothoracic Imaging With Mdct = Med Radiol Diagn Ima Integrated Cardiothoracic Imaging With Mdct = Med. Radiol. Diagn. Ima. Integrated Circuit and System Design = Lect Notes Comput Sc Integrated Circuit and System Design = Lect. Notes. Comput. Sc. Integrated Circuit and System Design: Power and Timing Modeling, Optimization and Simulation = Lect Notes Comput Sc Integrated Circuit and System Design: Power and Timing Modeling, Optimization and Simulation = Lect. Notes. Comput. Sc. Integrated Circuit and Systems Design: Power and Timing Modeling, Optimization and Simulation = Lect Notes Comput Sc Integrated Circuit and Systems Design: Power and Timing Modeling, Optimization and Simulation = Lect. Notes. Comput. Sc. Integrated Circuit Design, Proceedings = Lect Notes Comput Sc Integrated Circuit Design, Proceedings = Lect. Notes. Comput. Sc. Integrated Circuit Metrology, Inspection, and Process Control Iii = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control Iii = P. Soc. Photo-opt. Ins. Integrated Circuit Metrology, Inspection, and Process Control Ix = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control Ix = P. Soc. Photo-opt. Ins. Integrated Circuit Metrology, Inspection, and Process Control Viii = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control Viii = P. Soc. Photo-opt. Ins. Integrated Circuit Metrology, Inspection, and Process Control Vii = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control Vii = P. Soc. Photo-opt. Ins. Integrated Circuit Metrology, Inspection, and Process Control Vi = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control Vi = P. Soc. Photo-opt. Ins. Integrated Circuit Metrology, Inspection, and Process Control V = P Soc Photo-opt Ins Integrated Circuit Metrology, Inspection, and Process Control V = P. Soc. Photo-opt. Ins. Integrated Circuits and Systems = Integr Circuit Syst Integrated Circuits and Systems = Integr. Circuit. Syst. Integrated Command Environments = Proc Spie Integrated Command Environments = Proc. Spie. Integrated Command Environments = P Soc Photo-opt Ins Integrated Command Environments = P. Soc. Photo-opt. Ins. Integrated Communication: Synergy of Persuasive Voices = Advert Cons Integrated Communication: Synergy of Persuasive Voices = Advert. Cons. Integrated Computational Imaging Systems, Proceedings = Osa Trends Opt Photo Integrated Computational Imaging Systems, Proceedings = Osa. Trends. Opt. Photo. Integrated Computer-aided Engineering = Integr Comput-aid E Integrated Computer-aided Engineering = Integr. Comput-aid. E. Integrated Crop Protection: Towards Sustainability? = Bcpc Symp Ser Integrated Crop Protection: Towards Sustainability? = Bcpc. Symp. Ser. Integrated Electricity Resource Planning = Nato Adv Sci Inst Se Integrated Electricity Resource Planning = Nato. Adv. Sci. Inst. Se. Integrated Environmental Assessment and Manaement = Integr. Environ. Assess. Manage. Integrated environmental assessment and management = Integr Environ Assess Manag Integrated Environmental Assessment and Management = Integr. Environ. Assess. Manag. Integrated Ferroelectrics = Integr Ferroelectr Integrated Ferroelectrics = Integr. Ferroelectr. Integrated Ferroelectronics = Integr. Ferroelectr. Integrated Formal Methods = Lect Notes Comput Sc Integrated Formal Methods = Lect. Notes. Comput. Sc. Integrated Formal Methods, Proceedings = Lect Notes Comput Sc Integrated Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Integrated G Proteins Signaling in Plants = Signal Commun Plants Integrated G Proteins Signaling in Plants = Signal. Commun. Plants Integrated Healthcare: A Way Forward for The Next Five Years? = Roy Soc Med Int Cong Integrated Healthcare: A Way Forward for The Next Five Years? = Roy. Soc. Med. Int. Cong. Integrated healthcare report = Integr Healthc Rep Integrated Healthcare Report = Integr. Healthc. Rep. Integrated Intelligent Systems for Engineering Design = Front Artif Intel Ap Integrated Intelligent Systems for Engineering Design = Front. Artif. Intel. Ap. Integrated Interconnect Technologies for 3d Nanoelectronic Systems = Artech Hse Integr Mi Integrated Interconnect Technologies for 3d Nanoelectronic Systems = Artech. Hse. Integr. Mi. Integrated Management and Dynamics of Forest Defoliating Insects , Proceedings = Usda Ne Exp Integrated Management and Dynamics of Forest Defoliating Insects , Proceedings = Usda. Ne. Exp. Integrated Management of Arthropod Pests and Insect Borne Diseases = Integr Manag Plant P Integrated Management of Arthropod Pests and Insect Borne Diseases = Integr. Manag. Plant. P. Integrated Management of Plant Pests and Diseases = Integr Manag Plant P Integrated Management of Plant Pests and Diseases = Integr. Manag. Plant P. Integrated Management of Systems, Services, Processes and People in It, Proceedings = Lect Notes Comput Sc Integrated Management of Systems, Services, Processes and People in It, Proceedings = Lect. Notes. Comput. Sc. Integrated Manufacturing Solutions = Tech Papers Isa Integrated Manufacturing Solutions = Tech. Papers. Isa. Integrated Measures to Overcome Barriers to Minimizing Harmful Fluxes From Land to Water = Stockholm Water Symp Integrated Measures to Overcome Barriers to Minimizing Harmful Fluxes From Land to Water = Stockholm. Water Symp. Integrated Methods for Optimization = Int Ser Oper Res Man Integrated Methods for Optimization = Int. Ser. Oper. Res. Man. Integrated Methods in Catchment Hydrology: Tracer, Remote Sensing and New Hydrometric Techniques = Iahs-aish P Integrated Methods in Catchment Hydrology: Tracer, Remote Sensing and New Hydrometric Techniques = Iahs-aish. P. Integrated Molecular Medicine for Neuronal and Neoplastic Disorders = Ann Ny Acad Sci Integrated Molecular Medicine for Neuronal and Neoplastic Disorders = Ann. Ny. Acad. Sci. Integrated Network Management, Iii = Ifip Trans C Integrated Network Management, Iii = Ifip. Trans. C. Integrated Network Management Viii = Int Fed Info Proc Integrated Network Management Viii = Int. Fed. Info. Proc. Integrated Numerical and Experimental Methods in Ship Design = Vtt Symp Integrated Numerical and Experimental Methods in Ship Design = Vtt. Symp. Integrated Nutrient Management in Farming Systems in Southeast Asia and Australia = Aciar Proc Integrated Nutrient Management in Farming Systems in Southeast Asia and Australia = Aciar. Proc. Integrated Optical Circuits Ii = P Soc Photo-opt Ins Integrated Optical Circuits Ii = P. Soc. Photo-opt. Ins. Integrated Optical Circuits = P Soc Photo-opt Ins Integrated Optical Circuits = P. Soc. Photo-opt. Ins. Integrated Optical Devices: Fabrication and Testing = P Soc Photo-opt Ins Integrated Optical Devices: Fabrication and Testing = P. Soc. Photo-opt. Ins. Integrated Optical Devices, Nanostructures, and Displays = P Soc Photo-opt Ins Integrated Optical Devices, Nanostructures, and Displays = P. Soc. Photo-opt. Ins. Integrated Optic Devices Ii = P Soc Photo-opt Ins Integrated Optic Devices Ii = P. Soc. Photo-opt. Ins. Integrated Optics and Microstructures Iii = P Soc Photo-opt Ins Integrated Optics and Microstructures Iii = P. Soc. Photo-opt. Ins. Integrated Optics and Microstructures Ii = P Soc Photo-opt Ins Integrated Optics and Microstructures Ii = P. Soc. Photo-opt. Ins. Integrated Optics and Microstructures = P Soc Photo-opt Ins Integrated Optics and Microstructures = P. Soc. Photo-opt. Ins. Integrated Optics and Optoelectronics = P Soc Photo-opt Ins Integrated Optics and Optoelectronics = P. Soc. Photo-opt. Ins. Integrated Optics and Photonic Integrated Circuits = Proc Spie Integrated Optics and Photonic Integrated Circuits = Proc. Spie. Integrated Optics and Photonic Integrated Circuits = P Soc Photo-opt Ins Integrated Optics and Photonic Integrated Circuits = P. Soc. Photo-opt. Ins. Integrated Optics Devices Iii = Proc Spie Integrated Optics Devices Iii = Proc. Spie. Integrated Optics Devices Iii = P Soc Photo-opt Ins Integrated Optics Devices Iii = P. Soc. Photo-opt. Ins. Integrated Optics Devices Iv = P Soc Photo-opt Ins Integrated Optics Devices Iv = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Ix = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Ix = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Viii = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Viii = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Vii = Proc Spie Integrated Optics: Devices, Materials, and Technologies Vii = Proc. Spie. Integrated Optics: Devices, Materials, and Technologies Vii = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Vii = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Vi = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Vi = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Xiii = Proc Spie Integrated Optics: Devices, Materials, and Technologies Xiii = Proc. Spie. Integrated Optics: Devices, Materials, and Technologies Xiii = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Xiii = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Xii = Proc Spie Integrated Optics: Devices, Materials, and Technologies Xii = Proc. Spie. Integrated Optics: Devices, Materials, and Technologies Xii = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Xii = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Xi = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Xi = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies Xiv = Proc Spie Integrated Optics: Devices, Materials, and Technologies Xiv = Proc. Spie. Integrated Optics: Devices, Materials, and Technologies Xiv = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies Xiv = P. Soc. Photo-opt. Ins. Integrated Optics: Devices, Materials, and Technologies X = P Soc Photo-opt Ins Integrated Optics: Devices, Materials, and Technologies X = P. Soc. Photo-opt. Ins. Integrated Optics Devices: Potential for Commercialization = P Soc Photo-opt Ins Integrated Optics Devices: Potential for Commercialization = P. Soc. Photo-opt. Ins. Integrated Optics Devices V = Proc Spie Integrated Optics Devices V = Proc. Spie. Integrated Optics Devices V = P Soc Photo-opt Ins Integrated Optics Devices V = P. Soc. Photo-opt. Ins. Integrated Optics, Silicon Photonics, and Photonic Integrated Circuits = Proc Spie Integrated Optics, Silicon Photonics, and Photonic Integrated Circuits = Proc. Spie. Integrated Optics, Silicon Photonics, and Photonic Integrated Circuits = P Soc Photo-opt Ins Integrated Optics, Silicon Photonics, and Photonic Integrated Circuits = P. Soc. Photo-opt. Ins. Integrated Optoelectronics for Communication and Processing = P Soc Photo-opt Ins Integrated Optoelectronics for Communication and Processing = P. Soc. Photo-opt. Ins. Integrated Optoelectronics Ii = P Soc Photo-opt Ins Integrated Optoelectronics Ii = P. Soc. Photo-opt. Ins. Integrated Optoelectronics, Proceedings = Elec Soc S Integrated Optoelectronics, Proceedings = Elec. Soc. S. Integrated Optoelectronics = P Soc Photo-opt Ins Integrated Optoelectronics = P. Soc. Photo-opt. Ins. Integrated Pest Management in The Sahel = Insah Sem C Integrated Pest Management in The Sahel = Insah. Sem. C. Integrated Photonics Research, Technical Digest = Osa Trends Opt Photo Integrated Photonics Research, Technical Digest = Osa. Trends. Opt. Photo. Integrated Power Electronic Converters and Digital Control = Pow Electr Appl Integrated Power Electronic Converters and Digital Control = Pow. Electr. Appl. Integrated Processing for Microelectronics and Optoelectronics = Eur Mat Res Integrated Processing for Microelectronics and Optoelectronics = Eur. Mat. Res. Integrated Resource Management & Landscape Modification for Environmental Protection = Asae Publ Integrated Resource Management & Landscape Modification for Environmental Protection = Asae. Publ. Integrated Series in Information Systems = Integr Ser Inform Sy Integrated Series in Information Systems = Integr. Ser. Inform. Sy. Integrated Silicon Optoelectronics, Second Edition = Springer Ser Opt Sci Integrated Silicon Optoelectronics, Second Edition = Springer. Ser. Opt. Sci. Integrated Soil and Sediment Research: A Basis for Proper Protection = Soil Environm Integrated Soil and Sediment Research: A Basis for Proper Protection = Soil Environm. Integrated Soil and Water Management for Orchard Development: Role and Importance = Fao Land Water Bull Integrated Soil and Water Management for Orchard Development: Role and Importance = Fao. Land. Water Bull. Integrated Space Geodetic Systems and Satellite Dynamics = Adv Space Res Integrated Space Geodetic Systems and Satellite Dynamics = Adv. Space Res. Integrated Space Geodetic Systems and Satellite Dynamics = Adv Space Res-series Integrated Space Geodetic Systems and Satellite Dynamics = Adv. Space Res-series. Integrated Spatial Databases: Digital Images and Gis = Lect Notes Comput Sc Integrated Spatial Databases: Digital Images and Gis = Lect. Notes. Comput. Sc. Integrated Technologies for Environmental Monitoring and Information Production = Nato Sci S Ss Iv Ear Integrated Technologies for Environmental Monitoring and Information Production = Nato. Sci. S. Ss. Iv. Ear. Integrated Thin Films and Applications = Ceram Trans Integrated Thin Films and Applications = Ceram. Trans. Integrated Uncertainty Management and Applications = Adv Intel Soft Compu Integrated Uncertainty Management and Applications = Adv. Intel. Soft. Compu. Integrated Urban Water Resources Management = Nato Sci Peace Secur Integrated Urban Water Resources Management = Nato. Sci. Peace. Secur. Integrated Water Management = Nato Sci S Ss Iv Ear Integrated Water Management = Nato. Sci. S. Ss. Iv. Ear. Integrated Water Resource Management in The Kurdistan Region = Water Resour Plan De Integrated Water Resource Management in The Kurdistan Region = Water Resour. Plan. De. Integrated Water Resources Management and Security in The Middle East = Nato Sci Peace Secur Integrated Water Resources Management and Security in The Middle East = Nato. Sci. Peace. Secur. Integrated Water Resources Management = Iahs-aish P Integrated Water Resources Management = Iahs-aish. P. Integrating Agriculture, Conservation and Ecotourism: Examples From The Field = Iss Agroecol Pres Integrating Agriculture, Conservation and Ecotourism: Examples From The Field = Iss. Agroecol. Pres. Integrating and Articulating Environments: A Challenge for Northern and Southern Europe = Integrat Ass Studies Integrating and Articulating Environments: A Challenge for Northern and Southern Europe = Integrat. Ass. Studies. Integrating Cultural Tactics Into The Management of Bark Beetle and Reforestation Pests, Proceedings = Usda Ne Exp Integrating Cultural Tactics Into The Management of Bark Beetle and Reforestation Pests, Proceedings = Usda. Ne. Exp. Integrating Efficient Grassland Farming and Biodiversity = Grassland Sci Eur Integrating Efficient Grassland Farming and Biodiversity = Grassland Sci. Eur. Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision Iii = P Soc Photo-opt Ins Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision Iii = P. Soc. Photo-opt. Ins. Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision Ii = P Soc Photo-opt Ins Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision Ii = P. Soc. Photo-opt. Ins. Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision = P Soc Photo-opt Ins Integrating Photogrammetric Techniques With Scene Analysis and Machine Vision = P. Soc. Photo-opt. Ins. Integrating Population Outcomes, Biological Mechanisms and Research Methods in The Study of Human Milk and Lactation = Adv Exp Med Biol Integrating Population Outcomes, Biological Mechanisms and Research Methods in The Study of Human Milk and Lactation = Adv. Exp. Med. Biol. Integrating Symbolic Mathematical Computation and Artificial Intelligence = Lect Notes Comput Sc Integrating Symbolic Mathematical Computation and Artificial Intelligence = Lect. Notes. Comput. Sc. Integrating The Neurobiology of Schizophrenia = Int Rev Neurobiol Integrating The Neurobiology of Schizophrenia = Int. Rev. Neurobiol. Integrating The Sciences and Society: Challenges, Practices, and Potentials = Res Soc Probl Public Integrating The Sciences and Society: Challenges, Practices, and Potentials = Res. Soc. Probl. Public. Integration and Innovation Orient to E-society, Vol 1 = Int Fed Info Proc Integration and Innovation Orient to E-society, Vol 1 = Int. Fed. Info. Proc. Integration and Innovation Orient to E-society, Vol 2 = Int Fed Info Proc Integration and Innovation Orient to E-society, Vol 2 = Int. Fed. Info. Proc. Integration and Trade=Integration Trade Integration, Growth and Cohesion in An Enlarged European Union = Zei Stud Eur Econ La Integration, Growth and Cohesion in An Enlarged European Union = Zei. Stud. Eur. Econ. La. Integration in Production Management Systems = Ifip Trans B Integration in Production Management Systems = Ifip. Trans. B. Integration in Respiratory Control: From Genes to Systems = Adv Exp Med Biol Integration in Respiratory Control: From Genes to Systems = Adv. Exp. Med. Biol. Integration Issues in Large Commercial Media Delivery Systems = P Soc Photo-opt Ins Integration Issues in Large Commercial Media Delivery Systems = P. Soc. Photo-opt. Ins. Integration : Myth Or Reality = Dis Han Lif Integration : Myth Or Reality = Dis. Han. Lif. Integration of Advanced Micro-and Nanoelectronic Devices-critical Issues and Solutions = Mater Res Soc Symp P Integration of Advanced Micro-and Nanoelectronic Devices-critical Issues and Solutions = Mater. Res. Soc. Symp. P. Integration of Ai and Or Techniques in Constraint Programming for Combinatorial Optimization Problems = Lect Notes Comput Sc Integration of Ai and Or Techniques in Constraint Programming for Combinatorial Optimization Problems = Lect. Notes. Comput. Sc. Integration of Ai and Or Techniques in Constraint Programming for Combinatorial Optimization Problems, Proceedings = Lect Notes Comput Sc Integration of Ai and Or Techniques in Constraint Programming for Combinatorial Optimization Problems, Proceedings = Lect. Notes. Comput. Sc. Integration of Assistive Technology in The Information Age = Assist Technol Res S Integration of Assistive Technology in The Information Age = Assist. Technol. Res. S. Integration of Assistive Technology in The Information Age = Assist Techn Res Ser Integration of Assistive Technology in The Information Age = Assist. Techn. Res. Ser. Integration of Health Care Delivery = Who Tech Rep Ser Integration of Health Care Delivery = Who. Tech. Rep. Ser. Integration of Health Telematics Into Medical Practice = St Heal T Integration of Health Telematics Into Medical Practice = St. Heal. T. Integration of Health Telematics Into Medical Practice = Stud Health Technol Integration of Health Telematics Into Medical Practice = Stud. Health Technol. Integration of Heterogeneous Thin-film Materials and Devices = Mater Res Soc Symp P Integration of Heterogeneous Thin-film Materials and Devices = Mater. Res. Soc. Symp. P. Integration of Information for Environmental Security = Nato Sci Peace Secur Integration of Information for Environmental Security = Nato. Sci. Peace. Secur. Integration of Medical and Sports Sciences = Med Sport Sci Integration of Medical and Sports Sciences = Med. Sport. Sci. Integration of Phonetic Knowledge in Speech Technology = Text Speech Lang Tec Integration of Phonetic Knowledge in Speech Technology = Text. Speech Lang. Tec. Integration of Ruminants Into Plantation Systems in Southeast Asia = Aciar Proc Integration of Ruminants Into Plantation Systems in Southeast Asia = Aciar. Proc. Integration of Science and Technology Systems of The Central Asian Republics Into The Western World = Nato Asi S 4 Sci Tec Integration of Science and Technology Systems of The Central Asian Republics Into The Western World = Nato. Asi. S. 4. Sci. Tec. Integration of Software Specification Techniques for Applications in Engineering = Lect Notes Comput Sc Integration of Software Specification Techniques for Applications in Engineering = Lect. Notes. Comput. Sc. Integration-the Vlsi Journal = Integration Integration-the Vlsi Journal = Integration. Integration (Tokyo, Japan) = Integration Integrative and comparative biology = Integr Comp Biol Integrative and Comparative Biology = Integr Comp Biol Integrative and Comparative Biology = Integr. Comp. Biol. Integrative and Interdisciplinary Aspects of Intermetallics = Mater Res Soc Symp P Integrative and Interdisciplinary Aspects of Intermetallics = Mater. Res. Soc. Symp. P. Integrative Biology = Integr Biol Integrative Biology = Integr. Biol. Integrative Biology = Integr Biol-uk Integrative Biology = Integr. Biol-uk. Integrative cancer therapies = Integr Cancer Ther Integrative Cancer Therapies = Integr Cancer Ther Integrative Cancer Therapies = Integr. Cancer Ther. Integrative Ecology: From Molecules to Ecosystems = Adv Ecol Res Integrative Ecology: From Molecules to Ecosystems = Adv. Ecol. Res. Integrative Framework and Methods for Coastal Area Management = Iclarm Conf Integrative Framework and Methods for Coastal Area Management = Iclarm. Conf. Integrative medicine : integrating conventional and alternative medicine = Integr Med Integrative Neurobiology of Affiliation = Ann Ny Acad Sci Integrative Neurobiology of Affiliation = Ann. Ny. Acad. Sci. Integrative Oncology: Incorporating Complementary Medicine Into Conventional Cancer Care = Curr Clin Oncol Integrative Oncology: Incorporating Complementary Medicine Into Conventional Cancer Care = Curr. Clin. Oncol. Integrative Pain Medicine: The Science and Practice of Complementary and Alternative Medicine in Pain Management = Contemp Pain Med Integrative Pain Medicine: The Science and Practice of Complementary and Alternative Medicine in Pain Management = Contemp. Pain Med. Integrative Physiological and Behavioral Science = Integr Phys Beh Sci Integrative Physiological and Behavioral Science = Integr. Phys. Beh. Sci. Integrative Physiological and Behavioral Science=Integr Physiol Behav Sci;; Integrative Physiological and Behavioral Science = Integr. Physiol. Behav. Sci. Integrative physiological and behavioral science : the official journal of the Pavlovian Society = Integr Physiol Behav Sci Integrative Phytochemistry: From Ethnobotany to Molecular Ecology = Recent Adv Phytochem Integrative Phytochemistry: From Ethnobotany to Molecular Ecology = Recent. Adv. Phytochem. Integrative Psychiatry = Integrative Psychiat Integrative Psychiatry = Integrative Psychiat. Integrative psychiatry : IP = Integr Psychiatry Integrative Psychological and Behavioral Science = Integr Psychol Behav Integrative Psychological and Behavioral Science = Integr. Psychol. Behav. Integrative psychological & behavioral science = Integr Psychol Behav Sci Integrative Religious Education in Europe: A Study-of-religions Approach = Relig Reason Integrative Religious Education in Europe: A Study-of-religions Approach = Relig. Reason. Integrative Studies in Water Management and Land Development = Integr Stud Water Ma Integrative Studies in Water Management and Land Development = Integr. Stud. Water Ma. Integrative Views of Motivation, Cognition and Emotion = Nebr Sym Motiv Integrative Views of Motivation, Cognition and Emotion = Nebr. Sym. Motiv. Integrative Zoology = Integr Zool Integrative Zoology = Integr. Zool. Integrierte Materialwirtschaft Und Logistik = Vdi-buch Integrierte Materialwirtschaft Und Logistik = Vdi-buch. Integrierte Produkt -und Prozessgestaltung = Vdi-buch Integrierte Produkt -und Prozessgestaltung = Vdi-buch. Integrierte Schadenanalyse = Vdi-buch Integrierte Schadenanalyse = Vdi-buch. Integrins and Ion Channels: Molecular Complexes and Signaling = Adv Exp Med Biol Integrins and Ion Channels: Molecular Complexes and Signaling = Adv. Exp. Med. Biol. Integrins = Method Enzymol Integrins = Method. Enzymol. Integrity and Internal Control in Information Systems V = Int Fed Info Proc Integrity and Internal Control in Information Systems V = Int. Fed. Info. Proc. Integrity, Internal Control and Security in Information Systems = Int Fed Info Proc Integrity, Internal Control and Security in Information Systems = Int. Fed. Info. Proc. Integument of Dolphins = Anim Sci Issues Prof Integument of Dolphins = Anim. Sci. Issues. Prof. Intelec 07 - 29th International Telecommunications Energy Conference, Vols 1 and 2 = Int Telecom Energy Intelec 07 - 29th International Telecommunications Energy Conference, Vols 1 and 2 = Int. Telecom. Energy Intelec 08 - 30th International Telecommunications Energy, Vols 1 and 2 = Int Telecom Energy Intelec 08 - 30th International Telecommunications Energy, Vols 1 and 2 = Int. Telecom. Energy. Intelec 09 - 31st International Telecommunications Energy Conference = Int Telecom Energy Intelec 09 - 31st International Telecommunications Energy Conference = Int. Telecom. Energy Intelec 2001: Twenty-third International Telecommunications Energy Conference = Iee Conf Publ Intelec 2001: Twenty-third International Telecommunications Energy Conference = Iee. Conf. Publ. Intelec 2006: 28th International Telecommunication Energy Conference, Vols 1 and 2 = Int Telecom Energy Intelec 2006: 28th International Telecommunication Energy Conference, Vols 1 and 2 = Int. Telecom. Energy Inteligent Systems: Approximation By Artificial Neural Networks = Intel Syst Ref Libr Inteligent Systems: Approximation By Artificial Neural Networks = Intel. Syst. Ref. Libr. Intellect = Intellect Intellectual and Developmental Disabilities = Intellect Dev Disab Intellectual and Developmental Disabilities = Intellect. Dev. Disab. Intellectual and developmental disabilities = Intellect Dev Disabil Intellectual Capital Accounting: Practices in A Developing Country = Routl Stud Account Intellectual Capital Accounting: Practices in A Developing Country = Routl. Stud. Account. Intellectual Capital and Knowledge Management: Strategic Management of Knowledge Resources = Routl Adv Manag Bus Intellectual Capital and Knowledge Management: Strategic Management of Knowledge Resources = Routl. Adv. Manag. Bus. Intellectual digest = Intellect Dig Intellectual History of The Caribbean = New Dir Lat Am Cult Intellectual History of The Caribbean = New. Dir. Lat. Am. Cult. Intellectual Property and Entrepreneurship = Adv Stud Entrep Inno Intellectual Property and Entrepreneurship = Adv. Stud. Entrep. Inno. Intellectual Property and Global Markets = Nato Asi S 4 Sci Tec Intellectual Property and Global Markets = Nato. Asi. S. 4. Sci. Tec. Intellectual Property and Sustainable Development: Development Agendas in A Changing World = Elgar Intell Prop Gl Intellectual Property and Sustainable Development: Development Agendas in A Changing World = Elgar. Intell. Prop. Gl. Intellectual Property and The Limits of Antitrust: A Comparative Study of Us and Eu Approaches = New Horiz Compet Law Intellectual Property and The Limits of Antitrust: A Comparative Study of Us and Eu Approaches = New. Horiz. Compet. Law. Intellectual Property and The New Global Japanese Economy = Routledge Stud Growt Intellectual Property and The New Global Japanese Economy = Routledge. Stud. Growt. Intellectual Property Debate: Perspectives From Law, Economics and Political Economy = New Horiz Intel Prop Intellectual Property Debate: Perspectives From Law, Economics and Political Economy = New. Horiz. Intel. Prop. Intellectual Property, Growth and Trade = Front Econ Global Intellectual Property, Growth and Trade = Front. Econ. Global. Intellectual Property in Asia: Law, Economics, History and Politics = Mpi Stud Intell Prop Intellectual Property in Asia: Law, Economics, History and Politics = Mpi. Stud. Intell. Prop. Intellectual Property in The 21st Century = Intell Prop 21st Cen Intellectual Property in The 21st Century = Intell. Prop. 21st Cen. Intellectual property journal = Intellect Prop J Intellectual Property Management = Contrib Manag Sci Intellectual Property Management = Contrib. Manag. Sci. Intellectual Property Management in R&d Collaborations: The Case of The Service Industry Sector = Contrib Manag Sci Intellectual Property Management in R&d Collaborations: The Case of The Service Industry Sector = Contrib. Manag. Sci. Intellectual Property Rights in Agriculture = En Soc Sust Dev Ser Intellectual Property Rights in Agriculture = En. Soc. Sust. Dev. Ser. Intellectual Property Rights in Central and Eastern Europe = Nato Asi S 4 Sci Tec Intellectual Property Rights in Central and Eastern Europe = Nato. Asi. S. 4. Sci. Tec. Intellectual Property Rights in China: Politics of Piracy, Trade and Protection = Routl Contemp China Intellectual Property Rights in China: Politics of Piracy, Trade and Protection = Routl. Contemp. China. Intellectual Property Rights: Protection of Plant Materials = Cssa Spec Publ Intellectual Property Rights: Protection of Plant Materials = Cssa. Spec. Publ. Intellectuals and Politics = Key Iss Soc Intellectuals and Politics = Key. Iss. Soc. Intellectuals in Revolutionary China, 1921-1949: Leaders, Heroes and Sophisticates = Chin Worlds Intellectuals in Revolutionary China, 1921-1949: Leaders, Heroes and Sophisticates = Chin. Worlds. Intellectuals in The Modern Islamic World: Transmission, Transformation and Communication = New Horiz Islam Stud Intellectuals in The Modern Islamic World: Transmission, Transformation and Communication = New. Horiz. Islam. Stud. Intelligence and Security Informatics: Biosurveillance, Proceedings = Lect Notes Comput Sc Intelligence and Security Informatics: Biosurveillance, Proceedings = Lect. Notes. Comput. Sc. Intelligence and Security Informatics for International Security: Information Sharing and Data Mining = Integr Ser Inform Sy Intelligence and Security Informatics for International Security: Information Sharing and Data Mining = Integr. Ser. Inform. Sy. Intelligence and Security Informatics = Lect Notes Comput Sc Intelligence and Security Informatics = Lect. Notes. Comput. Sc. Intelligence and Security Informatics, Proceedings = Lect Notes Comput Sc Intelligence and Security Informatics, Proceedings = Lect. Notes. Comput. Sc. Intelligence and Strategy: Selected Essays = Stud Intell Intelligence and Strategy: Selected Essays = Stud. Intell. Intelligence and The Philosophy of Mind = P Am Cath Philos Ass Intelligence and The Philosophy of Mind = P. Am. Cath. Philos. Ass. Intelligence-based Systems Engineering = Intel Syst Ref Libr Intelligence-based Systems Engineering = Intel. Syst. Ref. Libr. Intelligence Cooperation and The War On Terror = Stud Intell Intelligence Cooperation and The War On Terror = Stud. Intell. Intelligence in Communication Systems = Int Fed Info Proc Intelligence in Communication Systems = Int. Fed. Info. Proc. Intelligence in Communication Systems = Lect Notes Comput Sc Intelligence in Communication Systems = Lect. Notes. Comput. Sc. Intelligence in Networks = Int Fed Info Proc Intelligence in Networks = Int. Fed. Info. Proc. Intelligence in Reliability Engineering: New Metaheuristics, Neural and Fuzzy Techniques in Reliability = Stud Comput Intell Intelligence in Reliability Engineering: New Metaheuristics, Neural and Fuzzy Techniques in Reliability = Stud. Comput. Intell. Intelligence in Services and Networks = Lect Notes Comput Sc Intelligence in Services and Networks = Lect. Notes. Comput. Sc. Intelligence in Services and Networks: Technology for Cooperative Competition = Lect Notes Comput Sc Intelligence in Services and Networks: Technology for Cooperative Competition = Lect. Notes. Comput. Sc. Intelligence = Intelligence Intelligence Theory: Key Questions and Debates = Stud Intell Intelligence Theory: Key Questions and Debates = Stud. Intell. Intelligent Agents and Multi-agent Systems = Lect Notes Artif Int Intelligent Agents and Multi-agent Systems = Lect. Notes. Artif. Int. Intelligent Agents and Multi-agent Systems, Proceedings = Lect Notes Artif Int Intelligent Agents and Multi-agent Systems, Proceedings = Lect. Notes. Artif. Int. Intelligent Agents for Telecommunication Applications = Lect Notes Artif Int Intelligent Agents for Telecommunication Applications = Lect. Notes. Artif. Int. Intelligent Agents for Telecommunications Applications = Fr Art Int Intelligent Agents for Telecommunications Applications = Fr. Art. Int. Intelligent Agents in The Evolution of Web and Applications = Stud Comput Intell Intelligent Agents in The Evolution of Web and Applications = Stud. Comput. Intell. Intelligent Agents Iv = Lect Notes Artif Int Intelligent Agents Iv = Lect. Notes. Artif. Int. Intelligent Agents Viii: Agent Theories, Architectures, and Languages = Lect Notes Artif Int Intelligent Agents Viii: Agent Theories, Architectures, and Languages = Lect. Notes. Artif. Int. Intelligent Agents V = Lect Notes Artif Int Intelligent Agents V = Lect. Notes. Artif. Int. Intelligent Agent Systems = Lect Notes Artif Int Intelligent Agent Systems = Lect. Notes. Artif. Int. Intelligent Algorithms in Ambient and Biomedical Computing = Philips Res Book Ser Intelligent Algorithms in Ambient and Biomedical Computing = Philips. Res. Book. Ser. Intelligent and Adaptive Systems in Medicine = Ser Med Phys Biomed Intelligent and Adaptive Systems in Medicine = Ser. Med. Phys. Biomed. Intelligent and Evolutionary Systems = Stud Comput Intell Intelligent and Evolutionary Systems = Stud. Comput. Intell. Intelligent and Soft Computing in Infrastructure Systems Engineering = Stud Comput Intell Intelligent and Soft Computing in Infrastructure Systems Engineering = Stud. Comput. Intell. Intelligent Assembly and Disassembly 2001 = Ifac Work S Intelligent Assembly and Disassembly 2001 = Ifac. Work. S. Intelligent Automation and Soft Computing = Intell Autom Soft Co Intelligent Automation and Soft Computing = Intell. Autom. Soft Co. Intelligent Automations and Control: Trends Principles, and Applications, Vol 16 = Tsi Press S Intelligent Automations and Control: Trends Principles, and Applications, Vol 16 = Tsi. Press. S. Intelligent Autonomous Systems: Foundations and Applications = Stud Comput Intell Intelligent Autonomous Systems: Foundations and Applications = Stud. Comput. Intell. Intelligent Autonomous Vehicles 2001 = Ifac P Ser Intelligent Autonomous Vehicles 2001 = Ifac. P. Ser. Intelligent Autonomous Vehicles = Ifac Work S Intelligent Autonomous Vehicles = Ifac. Work. S. Intelligent Cities and Globalisation of Innovation Networks = Reg Cities Intelligent Cities and Globalisation of Innovation Networks = Reg. Cities Intelligent Collaborative E-learning Systems and Applications = Stud Comput Intell Intelligent Collaborative E-learning Systems and Applications = Stud. Comput. Intell. Intelligent Components and Instruments for Control Applications 2003 = Ifac Symp Series Intelligent Components and Instruments for Control Applications 2003 = Ifac. Symp. Series. Intelligent Components and Instruments for Control Applications = Ifac Symp Series Intelligent Components and Instruments for Control Applications = Ifac. Symp. Series. Intelligent Computational Optimization in Engineering: Techniques and Applications = Stud Comput Intell Intelligent Computational Optimization in Engineering: Techniques and Applications = Stud. Comput. Intell. Intelligent Computer Aided Design = Ifip Trans B Intelligent Computer Aided Design = Ifip. Trans. B. Intelligent Computer Graphics 2009 = Stud Comp Intell Intelligent Computer Graphics 2009 = Stud. Comp. Intell. Intelligent Computer Graphics 2009 = Stud Comput Intell Intelligent Computer Graphics 2009 = Stud. Comput. Intell. Intelligent Computer Graphics 2010 = Stud Comput Intell Intelligent Computer Graphics 2010 = Stud. Comput. Intell. Intelligent Computer Mathematics = Lect Notes Artif Int Intelligent Computer Mathematics = Lect. Notes. Artif. Int. Intelligent Computer Mathematics, Proceedings = Lect Notes Artif Int Intelligent Computer Mathematics, Proceedings = Lect. Notes. Artif. Int. Intelligent Computer Mathematics, Proceedings = Lect Notes Comput Sc Intelligent Computer Mathematics, Proceedings = Lect. Notes. Comput. Sc. Intelligent Computer Techniques in Applied Electromagnetics = Stud Comp Intell Intelligent Computer Techniques in Applied Electromagnetics = Stud. Comp. Intell. Intelligent Computing and Information Science, Pt I = Comm Com Inf Sc Intelligent Computing and Information Science, Pt I = Comm. Com. Inf. Sc. Intelligent Computing and Information Science, Pt Ii = Comm Com Inf Sc Intelligent Computing and Information Science, Pt Ii = Comm. Com. Inf. Sc. Intelligent Computing Based On Chaos = Stud Comput Intell Intelligent Computing Based On Chaos = Stud. Comput. Intell. Intelligent Computing in Engineering and Architecture = Lect Notes Artif Int Intelligent Computing in Engineering and Architecture = Lect. Notes. Artif. Int. Intelligent Computing in Signal Processing and Pattern Recognition = Lect Notes Contr Inf Intelligent Computing in Signal Processing and Pattern Recognition = Lect. Notes. Contr. Inf. Intelligent Computing, Part I = Lect Notes Comput Sc Intelligent Computing, Part I = Lect. Notes. Comput. Sc. Intelligent Computing: Theory and Applications Iii = P Soc Photo-opt Ins Intelligent Computing: Theory and Applications Iii = P. Soc. Photo-opt. Ins. Intelligent Computing: Theory and Applications Ii = Proc Spie Intelligent Computing: Theory and Applications Ii = Proc. Spie. Intelligent Computing: Theory and Applications Ii = P Soc Photo-opt Ins Intelligent Computing: Theory and Applications Ii = P. Soc. Photo-opt. Ins. Intelligent Computing: Theory and Applications Iv = P Soc Photo-opt Ins Intelligent Computing: Theory and Applications Iv = P. Soc. Photo-opt. Ins. Intelligent Computing: Theory and Applications = P Soc Photo-opt Ins Intelligent Computing: Theory and Applications = P. Soc. Photo-opt. Ins. Intelligent Computing: Theory and Applications Vi = Proc Spie Intelligent Computing: Theory and Applications Vi = Proc. Spie. Intelligent Computing: Theory and Applications V = Proc Spie Intelligent Computing: Theory and Applications V = Proc. Spie. Intelligent Computing: Theory and Applications V = P Soc Photo-opt Ins Intelligent Computing: Theory and Applications V = P. Soc. Photo-opt. Ins. Intelligent Control and Adaptive Systems = P Soc Photo-opt Ins Intelligent Control and Adaptive Systems = P. Soc. Photo-opt. Ins. Intelligent Control and Automation = Lect Notes Contr Inf Intelligent Control and Automation = Lect. Notes. Contr. Inf. Intelligent Control for Agricultural Applications 2001 = Ifac Work S Intelligent Control for Agricultural Applications 2001 = Ifac. Work. S. Intelligent Control Systems and Signal Processing 2003 = Ifac P Ser Intelligent Control Systems and Signal Processing 2003 = Ifac. P. Ser. Intelligent Daa Engineering and Automated Learning Ideal 2004, Proceedings = Lect Notes Comput Sc Intelligent Daa Engineering and Automated Learning Ideal 2004, Proceedings = Lect. Notes. Comput. Sc. Intelligent Data Analysis in Medicine and Pharmacology = Kluwer Int Ser Eng C Intelligent Data Analysis in Medicine and Pharmacology = Kluwer. Int. Ser. Eng. C. Intelligent Data Analysis = Intell Data Anal Intelligent Data Analysis = Intell. Data Anal. Intelligent Data Engineering and Automated Learning - Ideal 2002 = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning - Ideal 2002 = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning Ideal 2004, Proceedings = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning Ideal 2004, Proceedings = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning Ideal 2005, Proceedings = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning Ideal 2005, Proceedings = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning - Ideal 2006, Proceedings = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning - Ideal 2006, Proceedings = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning - Ideal 2007 = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning - Ideal 2007 = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning - Ideal 2008 = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning - Ideal 2008 = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning - Ideal 2010 = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning - Ideal 2010 = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning = Lect. Notes. Comput. Sc. Intelligent Data Engineering and Automated Learning, Proceedings = Lect Notes Comput Sc Intelligent Data Engineering and Automated Learning, Proceedings = Lect. Notes. Comput. Sc. Intelligent Decision and Policy Making Support Systems = Stud Comput Intell Intelligent Decision and Policy Making Support Systems = Stud. Comput. Intell. Intelligent Decision Making: An Ai-based Approach = Stud Comput Intell Intelligent Decision Making: An Ai-based Approach = Stud. Comput. Intell. Intelligent Decision-making Support Systems: Foundations, Applications and Challenges = Decis Eng Intelligent Decision-making Support Systems: Foundations, Applications and Challenges = Decis. Eng. Intelligent Decision Making Systems = Wd Sci P Comp Eng Intelligent Decision Making Systems = Wd. Sci. P. Comp. Eng. Intelligent Decision Systems in Large-scale Distributed Environments = Stud Comput Intell Intelligent Decision Systems in Large-scale Distributed Environments = Stud. Comput. Intell. Intelligent Distributed Computing Iii = Stud Comp Intell Intelligent Distributed Computing Iii = Stud. Comp. Intell. Intelligent Distributed Computing Iii = Stud Comput Intell Intelligent Distributed Computing Iii = Stud. Comput. Intell. Intelligent Distributed Computing Iv = Stud Comp Intell Intelligent Distributed Computing Iv = Stud. Comp. Intell. Intelligent Distributed Computing, Systems and Applications = Stud Comp Intell Intelligent Distributed Computing, Systems and Applications = Stud. Comp. Intell. Intelligent Educational Machines: Methodologies and Experiences = Stud Comput Intell Intelligent Educational Machines: Methodologies and Experiences = Stud. Comput. Intell. Intelligent Enterprise: Theoretical Concepts and Practical Implications = Contrib Manag Sci Intelligent Enterprise: Theoretical Concepts and Practical Implications = Contrib. Manag. Sci. Intelligent Environments 2009 = Amb Intell Smart Env Intelligent Environments 2009 = Amb. Intell. Smart. Env. Intelligent Environments 2009 = Amb Int Sm Env Intelligent Environments 2009 = Amb. Int. Sm. Env. Intelligent Environments: Methods, Algorithms and Applications = Adv Inform Knowl Pro Intelligent Environments: Methods, Algorithms and Applications = Adv. Inform. Knowl. Pro. Intelligent Freight Transportation = Autom Control Eng Se Intelligent Freight Transportation = Autom. Control. Eng. Se. Intelligent Information Access = Stud Comput Intell Intelligent Information Access = Stud. Comput. Intell. Intelligent Information Agents = Lect Notes Artif Int Intelligent Information Agents = Lect. Notes. Artif. Int. Intelligent Information and Database Systems, Pt Ii, Proceedings = Lect Notes Artif Int Intelligent Information and Database Systems, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Intelligent Information and Database Systems, Pt I, Proceedings = Lect Notes Artif Int Intelligent Information and Database Systems, Pt I, Proceedings = Lect. Notes. Artif. Int. Intelligent Information Integration for The Semantic Web = Lect Notes Artif Int Intelligent Information Integration for The Semantic Web = Lect. Notes. Artif. Int. Intelligent Information Processing and Web Mining = Adv Soft Comp Intelligent Information Processing and Web Mining = Adv. Soft. Comp. Intelligent Information Processing and Web Mining, Proceedings = Adv Soft Comp Intelligent Information Processing and Web Mining, Proceedings = Adv. Soft. Comp. Intelligent Information Processing Iii = Int Fed Info Proc Intelligent Information Processing Iii = Int. Fed. Info. Proc. Intelligent Information Processing Ii = Int Fed Info Proc Intelligent Information Processing Ii = Int. Fed. Info. Proc. Intelligent Information Processing Iv = Int Fed Info Proc Intelligent Information Processing Iv = Int. Fed. Info. Proc. Intelligent Information Systems 2001 = Adv Soft Comp Intelligent Information Systems 2001 = Adv. Soft. Comp. Intelligent Information Systems 2002, Proceedings = Adv Soft Comp Intelligent Information Systems 2002, Proceedings = Adv. Soft. Comp. Intelligent Information Systems = Adv Soft Comp Intelligent Information Systems = Adv. Soft. Comp. Intelligent Information Systems Series = Intel Inform Syst Se Intelligent Information Systems Series = Intel. Inform. Syst. Se. Intelligent Information Technology, Proceedings = Lect Notes Comput Sc Intelligent Information Technology, Proceedings = Lect. Notes. Comput. Sc. Intelligent Infrastructures = Intel Syst Contr Aut Intelligent Infrastructures = Intel. Syst. Contr. Aut. Intelligent Integrated Microsystems = Proc Spie Intelligent Integrated Microsystems = Proc. Spie. Intelligent Integrated Microsystems = P Soc Photo-opt Ins Intelligent Integrated Microsystems = P. Soc. Photo-opt. Ins. Intelligent Interactive Assistance and Mobile Multimedia Computing = Comm Com Inf Sc Intelligent Interactive Assistance and Mobile Multimedia Computing = Comm. Com. Inf. Sc. Intelligent Interactive Multimedia Systems and Services = Smart Innov Sys Intelligent Interactive Multimedia Systems and Services = Smart. Innov. Sys. Intelligent Interactive Systems in Knowledge-based Environments = Stud Comput Intell Intelligent Interactive Systems in Knowledge-based Environments = Stud. Comput. Intell. Intelligent Leadership: Constructs for Thinking Education Leaders = Stud Educ Leadersh Intelligent Leadership: Constructs for Thinking Education Leaders = Stud. Educ. Leadersh. Intelligent Library Buildings = Ifla Publ Intelligent Library Buildings = Ifla. Publ. Intelligent Library Systems = T Australas Lib Inf Intelligent Library Systems = T. Australas. Lib. Inf. Intelligent Manufacturing = Proc Spie Intelligent Manufacturing = Proc. Spie. Intelligent Manufacturing = P Soc Photo-opt Ins Intelligent Manufacturing = P. Soc. Photo-opt. Ins. Intelligent Manufacturing Systems 1998 (ims'98) = Ifac Work S Intelligent Manufacturing Systems 1998 (ims'98) = Ifac. Work. S. Intelligent Manufacturing Systems 2003 = Ifac Work S Intelligent Manufacturing Systems 2003 = Ifac. Work. S. Intelligent Manufacturing Systems = Ifac Work S Intelligent Manufacturing Systems = Ifac. Work. S. Intelligent Mathematics:computational Analysis = Intel Syst Ref Libr Intelligent Mathematics:computational Analysis = Intel. Syst. Ref. Libr. Intelligent Media Technology for Communicative Intelligence = Lect Notes Artif Int Intelligent Media Technology for Communicative Intelligence = Lect. Notes. Artif. Int. Intelligent Multimedia Analysis for Security Applications = Stud Comput Intell Intelligent Multimedia Analysis for Security Applications = Stud. Comput. Intell. Intelligent Multimedia Communication: Techniques and Applications = Stud Comput Intell Intelligent Multimedia Communication: Techniques and Applications = Stud. Comput. Intell. Intelligent Networking, Collaborative Systems and Applications = Stud Comput Intell Intelligent Networking, Collaborative Systems and Applications = Stud. Comput. Intell. Intelligent Open Learning Systems: Concepts, Models and Algorithms = Intel Syst Ref Libr Intelligent Open Learning Systems: Concepts, Models and Algorithms = Intel. Syst. Ref. Libr. Intelligent Patient Management = Stud Comput Intell Intelligent Patient Management = Stud. Comput. Intell. Intelligent Problem Solving: Methodologies and Approaches, Proceedings = Lect Notes Artif Int Intelligent Problem Solving: Methodologies and Approaches, Proceedings = Lect. Notes. Artif. Int. Intelligent Problem Solving: Methodologies and Approaches, Prodeedings = Lect Notes Artif Int Intelligent Problem Solving: Methodologies and Approaches, Prodeedings = Lect. Notes. Artif. Int. Intelligent Robotics and Applications, Proceedings = Lect Notes Artif Int Intelligent Robotics and Applications, Proceedings = Lect. Notes. Artif. Int. Intelligent Robotics and Applications, Pt Ii, Proceedings = Lect Notes Artif Int Intelligent Robotics and Applications, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Intelligent Robotics and Applications, Pt I, Proceedings = Lect Notes Artif Int Intelligent Robotics and Applications, Pt I, Proceedings = Lect. Notes. Artif. Int. Intelligent Robotics = P Soc Photo-opt Ins Intelligent Robotics = P. Soc. Photo-opt. Ins. Intelligent Robots and Autonomous Agents = Intel Robot Auton Ag Intelligent Robots and Autonomous Agents = Intel. Robot. Auton. Ag. Intelligent Robots and Computer Vision Ix : Algorithms and Techniques = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Ix : Algorithms and Techniques = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Ix : Neural, Biological and 3-d Methods = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Ix : Neural, Biological and 3-d Methods = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Visions Viii : Systems and Applications = P Soc Photo-opt Ins Intelligent Robots and Computer Visions Viii : Systems and Applications = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Viii : Algorithms and Techniques, Pts 1 & 2 = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Viii : Algorithms and Techniques, Pts 1 & 2 = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision X : Algorithms and Techniques = P Soc Photo-opt Ins Intelligent Robots and Computer Vision X : Algorithms and Techniques = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xi : Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xi : Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xi : Biological, Neural Net, and 3-d Methods = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xi : Biological, Neural Net, and 3-d Methods = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xii : Active Vision and 3d Methods = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xii : Active Vision and 3d Methods = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xii: Algorithms and Techniques = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xii: Algorithms and Techniques = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xiii: 3d Vision, Product Inspection, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xiii: 3d Vision, Product Inspection, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xiii: Algorithms and Computer Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xiii: Algorithms and Computer Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xiv: Algorithms, Techniques, Active Vision, and Materials Handling = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xiv: Algorithms, Techniques, Active Vision, and Materials Handling = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xix: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xix: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xix: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xix: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision X : Neural, Biological and 3-d Methods = P Soc Photo-opt Ins Intelligent Robots and Computer Vision X : Neural, Biological and 3-d Methods = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xv: Algorithms, Techniques, Active Vision, and Materials Handling = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xv: Algorithms, Techniques, Active Vision, and Materials Handling = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xvi: Algorithms, Techniques, Active Vision, and Materials Handling = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xvi: Algorithms, Techniques, Active Vision, and Materials Handling = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xvii: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xvii: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xviii: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xviii: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xviii: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xviii: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xx: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xx: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xx: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xx: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xxi: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xxi: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xxi: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xxi: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xxii: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xxii: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xxii: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xxii: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xxiv: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xxiv: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xxiv: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xxiv: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xxv: Algorithms, Techniques, and Active Vision = Proc Spie Intelligent Robots and Computer Vision Xxv: Algorithms, Techniques, and Active Vision = Proc. Spie. Intelligent Robots and Computer Vision Xxv: Algorithms, Techniques, and Active Vision = P Soc Photo-opt Ins Intelligent Robots and Computer Vision Xxv: Algorithms, Techniques, and Active Vision = P. Soc. Photo-opt. Ins. Intelligent Robots and Computer Vision Xxvii: Algorithms and Techniques = Proc Spie Intelligent Robots and Computer Vision Xxvii: Algorithms and Techniques = Proc. Spie. Intelligent Scene Modelling Information Systems = Stud Comput Intell Intelligent Scene Modelling Information Systems = Stud. Comput. Intell. Intelligent Scheduling Systems = Operat Res Comp Sci Intelligent Scheduling Systems = Operat. Res. Comp. Sci. Intelligent Search On Xml Data = Lect Notes Comput Sc Intelligent Search On Xml Data = Lect. Notes. Comput. Sc. Intelligent Surveillance Systems = Intel Syst Contr Aut Intelligent Surveillance Systems = Intel. Syst. Contr. Aut. Intelligent Systems: A Modern Approach = Intel Syst Ref Libr Intelligent Systems: A Modern Approach = Intel. Syst. Ref. Libr. Intelligent Systems and Automation = Aip Conf Proc Intelligent Systems and Automation = Aip. Conf. Proc. Intelligent Systems and Signal Processing in Power Engineering = Power Syst Intelligent Systems and Signal Processing in Power Engineering = Power Syst. Intelligent Systems and Technologies: Methods and Applications = Stud Comp Intell Intelligent Systems and Technologies: Methods and Applications = Stud. Comp. Intell. Intelligent Systems Control and Automation Science and Engineering = Intell Syst Contr Au Intelligent Systems Control and Automation Science and Engineering = Intell. Syst. Contr. Au. Intelligent Systems Control and Automation Science and Engineering = Intel Syst Contr Aut Intelligent Systems Control and Automation Science and Engineering = Intel. Syst. Contr. Aut. Intelligent Systems Design and Applications = Adv Soft Comp Intelligent Systems Design and Applications = Adv. Soft. Comp. Intelligent Systems for Knowledge Management = Stud Comput Intell Intelligent Systems for Knowledge Management = Stud. Comput. Intell. Intelligent Systems: From Theory to Practice = Stud Comput Intell Intelligent Systems: From Theory to Practice = Stud. Comput. Intell. Intelligent Systems in Design and Manufacturing Iii = Proc Spie Intelligent Systems in Design and Manufacturing Iii = Proc. Spie. Intelligent Systems in Design and Manufacturing Iii = P Soc Photo-opt Ins Intelligent Systems in Design and Manufacturing Iii = P. Soc. Photo-opt. Ins. Intelligent Systems in Design and Manufacturing Ii = Proc Spie Intelligent Systems in Design and Manufacturing Ii = Proc. Spie. Intelligent Systems in Design and Manufacturing Ii = P Soc Photo-opt Ins Intelligent Systems in Design and Manufacturing Ii = P. Soc. Photo-opt. Ins. Intelligent Systems in Design and Manufacturing Iv = P Soc Photo-opt Ins Intelligent Systems in Design and Manufacturing Iv = P. Soc. Photo-opt. Ins. Intelligent Systems in Design and Manufacturing = P Soc Photo-opt Ins Intelligent Systems in Design and Manufacturing = P. Soc. Photo-opt. Ins. Intelligent Systems in Design and Manufacturing V = P Soc Photo-opt Ins Intelligent Systems in Design and Manufacturing V = P. Soc. Photo-opt. Ins. Intelligent Systems in Oil Field Development Under Uncertainty = Stud Comput Intell Intelligent Systems in Oil Field Development Under Uncertainty = Stud. Comput. Intell. Intelligent Systems Modeling and Decision Support in Bioengineering = Eng Med Biol Intelligent Systems Modeling and Decision Support in Bioengineering = Eng. Med. Biol. Intelligent Systems: Modeling, Optimization, and Control = Autom Control Eng Se Intelligent Systems: Modeling, Optimization, and Control = Autom. Control Eng. Se. Intelligent Systems Reference Library = Intel Syst Ref Libr Intelligent Systems Reference Library = Intel. Syst. Ref. Libr. Intelligent Systems: Safety, Reliability and Maintainability Issues = Nato Adv Sci Inst Se Intelligent Systems: Safety, Reliability and Maintainability Issues = Nato. Adv. Sci. Inst. Se. Intelligent Systems - Third Golden West International Conference, Edited and Selected Papers, Vols 1 and 2 = Theo Deci L Intelligent Systems - Third Golden West International Conference, Edited and Selected Papers, Vols 1 and 2 = Theo. Deci. L. Intelligent Technical Systems = Lect Notes Electr En Intelligent Technical Systems = Lect. Notes. Electr. En. Intelligent Techniques and Tools for Novel System Architectures = Stud Comp Intell Intelligent Techniques and Tools for Novel System Architectures = Stud. Comp. Intell. Intelligent Techniques for Web Personalization = Lect Notes Artif Int Intelligent Techniques for Web Personalization = Lect. Notes. Artif. Int. Intelligent Technologies for Interactive Entertainment, Proceedings = Lect Notes Comput Sc Intelligent Technologies for Interactive Entertainment, Proceedings = Lect. Notes. Comput. Sc. Intelligent Technologies - Theory and Applications = Fr Art Int Intelligent Technologies - Theory and Applications = Fr. Art. Int. Intelligent Technologies - Theory and Applications = Front Artif Intel Ap Intelligent Technologies - Theory and Applications = Front. Artif. Intel. Ap. Intelligent Text Categorization and Clustering = Stud Comput Intell Intelligent Text Categorization and Clustering = Stud. Comput. Intell. Intelligent Transportation Systems and Vehicle-highway Automation 2002 = Transport Res Rec Intelligent Transportation Systems and Vehicle-highway Automation 2002 = Transport. Res. Rec. Intelligent Transportation Systems and Vehicle-highway Automation 2003 = Transport Res Rec Intelligent Transportation Systems and Vehicle-highway Automation 2003 = Transport. Res. Rec. Intelligent Transportation Systems and Vehicle-highway Automation 2004 = Transport Res Rec Intelligent Transportation Systems and Vehicle-highway Automation 2004 = Transport. Res. Rec. Intelligent Transportation Systems and Vehicle-highway Automation 2005 = Transport Res Rec Intelligent Transportation Systems and Vehicle-highway Automation 2005 = Transport. Res. Rec. Intelligent Transportation Systems and Vehicle-highway Automation 2006 = Transport Res Rec Intelligent Transportation Systems and Vehicle-highway Automation 2006 = Transport. Res. Rec. Intelligent Transportation Systems, Automated Highway Systems, Traveler Information, and Artificial Intelligence = Transport Res Rec Intelligent Transportation Systems, Automated Highway Systems, Traveler Information, and Artificial Intelligence = Transport. Res. Rec. Intelligent Transportation Systems = P Soc Photo-opt Ins Intelligent Transportation Systems = P. Soc. Photo-opt. Ins. Intelligent Transportation Systems = Transport Res Rec Intelligent Transportation Systems = Transport. Res. Rec. Intelligent Tutoring System, Proceedings = Lect Notes Comput Sc Intelligent Tutoring System, Proceedings = Lect. Notes. Comput. Sc. Intelligent Tutoring Systems = Lect Notes Comput Sc Intelligent Tutoring Systems = Lect. Notes. Comput. Sc. Intelligent Tutoring Systems, Part Ii = Lect Notes Comput Sc Intelligent Tutoring Systems, Part Ii = Lect. Notes. Comput. Sc. Intelligent Tutoring Systems, Proceedings = Lect Notes Comput Sc Intelligent Tutoring Systems, Proceedings = Lect. Notes. Comput. Sc. Intelligent Tutoring Systems, Pt 1, Proceedings = Lect Notes Comput Sc Intelligent Tutoring Systems, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Intelligent Unmanned Systems: Theory and Applications = Stud Comp Intell Intelligent Unmanned Systems: Theory and Applications = Stud. Comp. Intell. Intelligent Vehicle Highway Systems = P Soc Photo-opt Ins Intelligent Vehicle Highway Systems = P. Soc. Photo-opt. Ins. Intelligent Video Event Analysis and Understanding = Stud Comput Intell Intelligent Video Event Analysis and Understanding = Stud. Comput. Intell. Intelligent Virtual Agents = Lect Notes Artif Int Intelligent Virtual Agents = Lect. Notes. Artif. Int. Intelligent Virtual Agents, Proceedings = Lect Notes Artif Int Intelligent Virtual Agents, Proceedings = Lect. Notes. Artif. Int. Intelligent Virtual Agents, Proceedings = Lect Notes Comput Sc Intelligent Virtual Agents, Proceedings = Lect. Notes. Comput. Sc. Intended Mathematics Curriculum As Represented in State-level Curriculum Standards: Consensus Or Confusion? = Res Math Educ Ser Intended Mathematics Curriculum As Represented in State-level Curriculum Standards: Consensus Or Confusion? = Res. Math. Educ. Ser. Intense Beams and Applications: Lasers, Ions, and Microwaves = P Soc Photo-opt Ins Intense Beams and Applications: Lasers, Ions, and Microwaves = P. Soc. Photo-opt. Ins. Intense Laser Beams and Applications = P Soc Photo-opt Ins Intense Laser Beams and Applications = P. Soc. Photo-opt. Ins. Intense Laser Beams = P Soc Photo-opt Ins Intense Laser Beams = P. Soc. Photo-opt. Ins. Intense Laser Phenomena and Related Subjects = S Opt Phot Intense Laser Phenomena and Related Subjects = S. Opt. Phot. Intense Microwave and Particle Beams Iii = P Soc Photo-opt Ins Intense Microwave and Particle Beams Iii = P. Soc. Photo-opt. Ins. Intense Microwave and Particle Beams Ii = P Soc Photo-opt Ins Intense Microwave and Particle Beams Ii = P. Soc. Photo-opt. Ins. Intense Microwave and Particle Beams = P Soc Photo-opt Ins Intense Microwave and Particle Beams = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Iii = P Soc Photo-opt Ins Intense Microwave Pulses Iii = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Ii = P Soc Photo-opt Ins Intense Microwave Pulses Ii = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Iv = P Soc Photo-opt Ins Intense Microwave Pulses Iv = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Ix = P Soc Photo-opt Ins Intense Microwave Pulses Ix = P. Soc. Photo-opt. Ins. Intense Microwave Pulses = P Soc Photo-opt Ins Intense Microwave Pulses = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Viii = P Soc Photo-opt Ins Intense Microwave Pulses Viii = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Vii = P Soc Photo-opt Ins Intense Microwave Pulses Vii = P. Soc. Photo-opt. Ins. Intense Microwave Pulses Vi = P Soc Photo-opt Ins Intense Microwave Pulses Vi = P. Soc. Photo-opt. Ins. Intense Microwave Pulses V = P Soc Photo-opt Ins Intense Microwave Pulses V = P. Soc. Photo-opt. Ins. Intensivbehandlung = Intensivbehandlung Intensive and Critical Care Medicine = Int Congr Ser Intensive and Critical Care Medicine = Int. Congr. Ser. Intensive and Critical Care Nursing = Intensive Crit. Care Nurs. Intensive Care Medicine = Intens Care Med Intensive Care Medicine = Intens. Care Med. Intensive care medicine = Intensive Care Med Intensive Care Medicine=Intensive Care Med;; Intensive Care Medicine = Intensive Care Med. Intensive care nursing = Intensive Care Nurs Intensive Care Nursing = Intensive Care Nurs. Intensive Care Units: Stress, Procedures and Mortality Rates = Public Health 21st C Intensive Care Units: Stress, Procedures and Mortality Rates = Public. Health. 21st. C. Intensive care world = Intensive Care World Intensive Care World = Intensive Care World Intensive & critical care nursing : the official journal of the British Association of Critical Care Nurses = Intensive Crit Care Nurs Intensive Quenching Systems: Engineering and Design = Astm Man Ser Intensive Quenching Systems: Engineering and Design = Astm. Man. Ser. Intensivmedizinische Praxis = Intensivmed Prax Intensivmedizinische Praxis = Intensivmed. Prax. Intentional Acts and Institutional Facts: Essays On John Searle's Social Ontology = Theory Decis Lib A Intentional Acts and Institutional Facts: Essays On John Searle's Social Ontology = Theory. Decis. Lib. A. Intention and Causation in Medical Non-killing = Biomed Law Ethics Li Intention and Causation in Medical Non-killing = Biomed. Law. Ethics. Li. Intention, Common Ground and The Egocentric Speaker-hearer = Mouton Ser Pragmat Intention, Common Ground and The Egocentric Speaker-hearer = Mouton. Ser. Pragmat. Intention Des Dichters Und Die Zwecke Der Interpreten = Quellen Stud Philos Intention Des Dichters Und Die Zwecke Der Interpreten = Quellen. Stud. Philos. Intentions in Communication = Sys Dev Fdn Intentions in Communication = Sys. Dev. Fdn. Inter Academia 2010: Global Research and Education = Adv Mater Res-switz Inter Academia 2010: Global Research and Education = Adv. Mater. Res-switz. Interacting Binaries: Accretion, Evolution, and Outcomes = Aip Conf Proc Interacting Binaries: Accretion, Evolution, and Outcomes = Aip. Conf. Proc. Interacting Binary Stars = Astr Soc P Interacting Binary Stars = Astr. Soc. P. Interacting Code Motion Transformations: Their Impact and Their Complexity = Lect Notes Comput Sc Interacting Code Motion Transformations: Their Impact and Their Complexity = Lect. Notes. Comput. Sc. Interacting Electrons in Reduced Dimensions = Nato Adv Sci I B-phy Interacting Electrons in Reduced Dimensions = Nato. Adv. Sci. I. B-phy. Interacting Protein Domains = Nato Adv Sci I H-cel Interacting Protein Domains = Nato. Adv. Sci. I. H-cel. Interacting with computers = Interact Comput Interacting with Computers = Interact. Comput. Interacting With Computers = Interact Comput Interacting With Computers = Interact. Comput. Interaction and Market Structure = Lect Notes Econ Math Interaction and Market Structure = Lect. Notes. Econ. Math. Interaction Between Compilers and Computer Architectures = Kluwer Int Ser Eng C Interaction Between Compilers and Computer Architectures = Kluwer. Int. Ser. Eng. C. Interaction Between Compilers and Computer Architectures = Springer Int Ser Eng Interaction Between Compilers and Computer Architectures = Springer. Int. Ser. Eng. Interaction Between Defects and Anelastic Phenomena in Solids = Solid State Phenomen Interaction Between Defects and Anelastic Phenomena in Solids = Solid. State. Phenomen. Interaction Between Defects and Anelastic Phenomena in Solids = Sol St Phen Interaction Between Defects and Anelastic Phenomena in Solids = Sol. St. Phen. Interaction Between Functional Analysis, Harmonic Analysis, and Probability = Lect Notes Pure Appl Interaction Between Functional Analysis, Harmonic Analysis, and Probability = Lect. Notes. Pure. Appl. Interaction = Interaction Interaction of Analysis and Geometry = Contemp Math Interaction of Analysis and Geometry = Contemp. Math. Interaction of Charged Particles With Solids and Surfaces = Nato Adv Sci I B-phy Interaction of Charged Particles With Solids and Surfaces = Nato. Adv. Sci. I. B-phy. Interaction of Hydrogen Isotopes With Transition Metals and Intermetallic Compounds = Springer Tr Mod Phys Interaction of Hydrogen Isotopes With Transition Metals and Intermetallic Compounds = Springer. Tr. Mod. Phys. Interaction of Mechanics and Mathematics = Interact Mech Math Interaction of Mechanics and Mathematics = Interact. Mech. Math. Interaction of Mechanics and Mathematics Series = Inter Mec M Interaction of Mechanics and Mathematics Series = Inter. Mec. M. Interactions Among Cell Signalling Systems = Ciba F Symp Interactions Among Cell Signalling Systems = Ciba. F. Symp. Interactions Between Climate and Animal Production = Eaap Tech Interactions Between Climate and Animal Production = Eaap. Tech. Interactions Between Global Climate Subsystems = Geoph Monog Series Interactions Between Global Climate Subsystems = Geoph. Monog. Series. Interactions Between Homotopy Theory and Algebra = Contemp Math Interactions Between Homotopy Theory and Algebra = Contemp. Math. Interactions Between Hyperbolic Geometry, Quantum Topology and Number Theory = Contemp Math Interactions Between Hyperbolic Geometry, Quantum Topology and Number Theory = Contemp. Math. Interactions Between Ring Theory and Representations of Algebras = Lect Notes Pure Appl Interactions Between Ring Theory and Representations of Algebras = Lect. Notes. Pure. Appl. Interactions Between The Cryosphere, Climate and Greenhouse Gases = Iahs-aish P Interactions Between The Cryosphere, Climate and Greenhouse Gases = Iahs-aish. P. Interactions: Mathematics, Physics and Philosophy, 1860-1930 = Bost Stud Philos Sci Interactions: Mathematics, Physics and Philosophy, 1860-1930 = Bost. Stud. Philos. Sci. Interactions of Classical and Numerical Algebraic Geometry = Contemp Math Interactions of Classical and Numerical Algebraic Geometry = Contemp. Math. Interactions of Food Proteins = Acs Sym Ser Interactions of Food Proteins = Acs. Sym. Ser. Interactions of The Major Biogeochemical Cycles = Scope Ser Interactions of The Major Biogeochemical Cycles = Scope. Ser. Interaction Studies = Interact Stud Interaction Studies = Interact. Stud. Interactive and Dynamic Graphics for Data Analysis: With R and Ggobi = Use R Interactive and Dynamic Graphics for Data Analysis: With R and Ggobi = Use. R Interactive and Integrative Cardiology = Ann Ny Acad Sci Interactive and Integrative Cardiology = Ann. Ny. Acad. Sci. Interactive Artifacts and Furniture Supporting Collaborative Work and Learning = Com S Coll Learn Interactive Artifacts and Furniture Supporting Collaborative Work and Learning = Com. S. Coll. Learn. Interactive cardiovascular and thoracic surgery = Interact Cardiovasc Thorac Surg Interactive Collaborative Information Systems = Stud Comput Intell Interactive Collaborative Information Systems = Stud. Comput. Intell. Interactive Distributed Multimedia Systems and Telecommunication Services = Lect Notes Comput Sc Interactive Distributed Multimedia Systems and Telecommunication Services = Lect. Notes. Comput. Sc. Interactive Distributed Multimedia Systems and Telecommunication Services, Proceedings = Lect Notes Comput Sc Interactive Distributed Multimedia Systems and Telecommunication Services, Proceedings = Lect. Notes. Comput. Sc. Interactive Drilling for Fast Track Oilfield Development = Inst Fran Petr Publ Interactive Drilling for Fast Track Oilfield Development = Inst. Fran. Petr. Publ. Interactive Dynamics of Convection and Solidification = Nato Adv Sci I E-app Interactive Dynamics of Convection and Solidification = Nato. Adv. Sci. I. E-app. Interactive Learning Environments = Interact Learn Envir Interactive Learning Environments = Interact. Learn. Envir. Interactive Lisrel in Practice: Getting Started With A Simplis Approach = Springerbrief Stat Interactive Lisrel in Practice: Getting Started With A Simplis Approach = Springerbrief. Stat. Interactive Markov Chains = Lect Notes Comput Sc Interactive Markov Chains = Lect. Notes. Comput. Sc. Interactive Multimedia and Next Generation Networks = Lect Notes Comput Sc Interactive Multimedia and Next Generation Networks = Lect. Notes. Comput. Sc. Interactive Multimedia in University Education: Designing for Change in Teaching and Learning = Ifip Trans A Interactive Multimedia in University Education: Designing for Change in Teaching and Learning = Ifip. Trans. A. Interactive Multimedia On Next Generation Networks = Lect Notes Comput Sc Interactive Multimedia On Next Generation Networks = Lect. Notes. Comput. Sc. Interactive Multi-modal Question-answering = Theor Appl Nat Lang Interactive Multi-modal Question-answering = Theor. Appl. Nat. Lang. Interactive Paper = P Soc Photo-opt Ins Interactive Paper = P. Soc. Photo-opt. Ins. Interactive Phenomena in The Cardiac System = Adv Exp Med Biol Interactive Phenomena in The Cardiac System = Adv. Exp. Med. Biol. Interactive Storytelling = Lect Notes Comput Sc Interactive Storytelling = Lect. Notes. Comput. Sc. Interactive Storytelling, Proceedings = Lect Notes Comput Sc Interactive Storytelling, Proceedings = Lect. Notes. Comput. Sc. Interactive Systems: Design, Specification and Verification = Lect Notes Comput Sc Interactive Systems: Design, Specification and Verification = Lect. Notes. Comput. Sc. Interactive Systems: Design, Specification, and Verification = Lect Notes Comput Sc Interactive Systems: Design, Specification, and Verification = Lect. Notes. Comput. Sc. Interactive Systems: Design, Specification, and Verification, Proceedings = Lect Notes Comput Sc Interactive Systems: Design, Specification, and Verification, Proceedings = Lect. Notes. Comput. Sc. Interactive Technologies and Sociotechnical Systems = Lect Notes Comput Sc Interactive Technologies and Sociotechnical Systems = Lect. Notes. Comput. Sc. Interactive Technology and The New Paradigm for Healthcare = St Heal T Interactive Technology and The New Paradigm for Healthcare = St. Heal. T. Interactive Theorem Proving, Proceedings = Lect Notes Comput Sc Interactive Theorem Proving, Proceedings = Lect. Notes. Comput. Sc. Interactive Tv: A Shared Experience, Proceeding = Lect Notes Comput Sc Interactive Tv: A Shared Experience, Proceeding = Lect. Notes. Comput. Sc. Interactive Wittgenstein: Essays in Memory of Georg Henrik Von Wright = Synth Libr Interactive Wittgenstein: Essays in Memory of Georg Henrik Von Wright = Synth. Libr. Inter-american Economic Affairs = Inter-am Econ Aff Inter-american Economic Affairs = Inter-am. Econ. Aff. Inter-American economic affairs = Inter Am Econ Aff Interamerican Journal of Psychology = Interam J Psychol Interamerican Journal of Psychology = Interam. J. Psychol. Inter-american Music Review = Inter-am Music Rev Inter-american Music Review = Inter-am. Music Rev. Inter-american Tropical Tuna Commission, Special Report 9 = Sr Inter Amer Trop T Inter-american Tropical Tuna Commission, Special Report 9 = Sr. Inter. Amer. Trop. T. Inter-area Oscillations in Power Systems: A Nonlinear and Nonstationary Perspective = Power Electron Power Inter-area Oscillations in Power Systems: A Nonlinear and Nonstationary Perspective = Power Electron. Power Inter-asia Cultural Studies = Inter-asia Cult Stud Inter-asia Cultural Studies = Inter-asia Cult. Stud. Interatomic Potential and Structural Stability = Springer Series Soli Interatomic Potential and Structural Stability = Springer. Series. Soli. Interball in The Istp Program = Nato Adv Sci I C-mat Interball in The Istp Program = Nato. Adv. Sci. I. C-mat. Interbiotech 89 = Progr Biotechnol Interbiotech 89 = Progr. Biotechnol. Intercalation Compounds for Battery Materials, Proceedings = Elec Soc S Intercalation Compounds for Battery Materials, Proceedings = Elec. Soc. S. Intercalation Compounds Isic-6, Pts 1 and 2 = Mater Sci Forum Intercalation Compounds Isic-6, Pts 1 and 2 = Mater. Sci. Forum. Intercellular Communication Through Gap Junctions = Prog Cell R Intercellular Communication Through Gap Junctions = Prog. Cell. R. Interchange = Interchange Interciencia = Interciencia Intercity Passenger Rail; Freight Rail; and Track Design and Maintenance = Transport Res Rec Intercity Passenger Rail; Freight Rail; and Track Design and Maintenance = Transport. Res. Rec. Inter-clinic Information Bulletin = Inter-clin Info Bull Inter-clinic Information Bulletin = Inter-clin. Info. Bull. Intercollegiate Review = Intercollegiate Rev Intercollegiate Review = Intercollegiate Rev. Intercom = Intercom Intercom = Intercom (Des Moines) Interconnect and Contact Metallization = Elec Soc S Interconnect and Contact Metallization = Elec. Soc. S. Interconnect and Contact Metallization for Ulsi = Elec Soc S Interconnect and Contact Metallization for Ulsi = Elec. Soc. S. Interconnection Technology = Interconnect Technol Interconnection Technology = Interconnect. Technol. Intercultural Aesthetics: A Worldview Perspective = Einstein Meet Magrit Intercultural Aesthetics: A Worldview Perspective = Einstein. Meet. Magrit. Intercultural Collaboration = Lect Notes Comput Sc Intercultural Collaboration = Lect. Notes. Comput. Sc. Intercultural Interaction: A Multidisciplinary Approach to Intercultural Communication = Res Pract Appl Lingu Intercultural Interaction: A Multidisciplinary Approach to Intercultural Communication = Res. Pract. Appl. Lingu. Intercultural Music Studies = Intercult Music Stud Intercultural Music Studies = Intercult. Music Stud. Intercultural Pragmatics = Intercult Pragmat Intercultural Pragmatics = Intercult. Pragmat. Interdependence and Conflicts in International Agricultural Relations = Quad Riv Ec Interdependence and Conflicts in International Agricultural Relations = Quad. Riv. Ec. Interdependence of Image and Science = Colloq Cths Interdependence of Image and Science = Colloq. Cths. Interdisciplinarity, Creativity, and Learning = Mont Math Enthus Mon Interdisciplinarity, Creativity, and Learning = Mont. Math. Enthus. Mon. Interdisciplinarity for The Twenty-first Century = Montana Math Enthus Interdisciplinarity for The Twenty-first Century = Montana. Math. Enthus. Interdisciplinarity for The Twenty-first Century = Mont Math Enthus Mon Interdisciplinarity for The Twenty-first Century = Mont. Math. Enthus. Mon. Interdisciplinarity in Technology Assessment = Wissensch Technikfol Interdisciplinarity in Technology Assessment = Wissensch. Technikfol. Interdisciplinarity in Technology Assessment = Wiss Technik Folgenb Interdisciplinarity in Technology Assessment = Wiss. Technik. Folgenb. Interdisciplinary Applied Mathematics = Interd Appl Math Interdisciplinary Applied Mathematics = Interd. Appl. Math. Interdisciplinary Applied Mathematics = Interdiscip. Appl. Math. Interdisciplinary Approaches to The Oldowan = Vertebr Paleobiol Pa Interdisciplinary Approaches to The Oldowan = Vertebr. Paleobiol. Pa. Interdisciplinary Aspects of Turbulence = Lect Notes Phys Interdisciplinary Aspects of Turbulence = Lect. Notes. Phys. Interdisciplinary Computer Vision : An Exploration of Diverse Applications = P Soc Photo-opt Ins Interdisciplinary Computer Vision : An Exploration of Diverse Applications = P. Soc. Photo-opt. Ins. Interdisciplinary Computer Vision: Applications and Changing Needs = P Soc Photo-opt Ins Interdisciplinary Computer Vision: Applications and Changing Needs = P. Soc. Photo-opt. Ins. Interdisciplinary Contributions to Archaeology = Interd Cont Interdisciplinary Contributions to Archaeology = Interd. Cont. Interdisciplinary Contributions to Archaeology = Interd Contrib Arch Interdisciplinary Contributions to Archaeology = Interd. Contrib. Arch. Interdisciplinary Educational Research in Mathematics and Its Connections to The Arts and Sciences = Montana Math Enthus Interdisciplinary Educational Research in Mathematics and Its Connections to The Arts and Sciences = Montana. Math. Enthus. Interdisciplinary Educational Research in Mathematics and Its Connections to The Arts and Sciences = Mont Math Enthus Mon Interdisciplinary Educational Research in Mathematics and Its Connections to The Arts and Sciences = Mont. Math. Enthus. Mon. Interdisciplinary Environmental Review = Interdi Environm Rev Interdisciplinary Environmental Review = Interdi. Environm. Rev. Interdisciplinary Environmental Review, Vol Iii, No 2, 2001, Proceedings = Interdi Environm Rev Interdisciplinary Environmental Review, Vol Iii, No 2, 2001, Proceedings = Interdi. Environm. Rev. Interdisciplinary Environmental Review, Vol Ii, Number 2, 2000, Proceedings 2000 = Interdi Environm Rev Interdisciplinary Environmental Review, Vol Ii, Number 2, 2000, Proceedings 2000 = Interdi. Environm. Rev. Interdisciplinary German Cultural Studies = Interd Germ Cult Interdisciplinary German Cultural Studies = Interd. Germ. Cult. Interdisciplinary Information Sciences = Interdiscip. Inform. Sci. Interdisciplinary Management Research-interdisziplinare Managementforschung = Interdisc Manag Res Interdisciplinary Management Research-interdisziplinare Managementforschung = Interdisc. Manag. Res. Interdisciplinary Management Research Vi = Interdisc Manag Res Interdisciplinary Management Research Vi = Interdisc. Manag. Res. Interdisciplinary Management Research V = Interdisc Manag Res Interdisciplinary Management Research V = Interdisc. Manag. Res. Interdisciplinary Mathematical Sciences = Interdiscip Math Interdisciplinary Mathematical Sciences = Interdiscip. Math. Interdisciplinary Mathematical Sciences = Interd Math Sci Interdisciplinary Mathematical Sciences = Interd. Math. Sci. Interdisciplinary Mathematics = Interdiscip. Math. Interdisciplinary Perspectives On Drinking Water Risk Assessment and Management = Iahs-aish P Interdisciplinary Perspectives On Drinking Water Risk Assessment and Management = Iahs-aish. P. Interdisciplinary Perspectives On Health, Illness, and Disease = At The Interface Interdisciplinary Perspectives On Health, Illness, and Disease = At. The. Interface. Interdisciplinary Science Reviews = Interdiscipl Sci Rev Interdisciplinary Science Reviews = Interdiscipl. Sci. Rev. Interdisciplinary science reviews : ISR = Interdiscip Sci Rev Interdisciplinary Statistics = Interdiscip. Statist. Interdisciplinary Statistics = Interd Stat Interdisciplinary Statistics = Interd. Stat. Interdisciplinary Studies in Ancient Culture and Religion = Int Stud Ancient Cul Interdisciplinary Studies in Ancient Culture and Religion = Int. Stud. Ancient Cul. Interdisciplinary Studies in Economics and Management = Interd Stud Econ Man Interdisciplinary Studies in Economics and Management = Interd. Stud. Econ. Man. Interdisciplinary topics in gerontology = Interdiscip Top Gerontol Interdisciplinary Topics in Gerontology = Interdisc Topics Ger Interdisciplinary Topics in Gerontology = Interdisc. Topics Ger. Interdisciplinary Topics in Gerontology = Interd Top Gerontol Interdisciplinary Topics in Gerontology = Interd. Top. Gerontol. Interdisciplinary Transport Phenomena: Fluid, Thermal, Biological, Materials, and Space Sciences = Ann Ny Acad Sci Interdisciplinary Transport Phenomena: Fluid, Thermal, Biological, Materials, and Space Sciences = Ann. Ny. Acad. Sci. Interdisciplinary Transport Phenomena in The Space Sciences = Ann Ny Acad Sci Interdisciplinary Transport Phenomena in The Space Sciences = Ann. Ny. Acad. Sci. Interdisziplinare Beitrage Zur Kriminologischen Forschung, Neue Folge = Int B Krim Interdisziplinare Beitrage Zur Kriminologischen Forschung, Neue Folge = Int. B. Krim. Inter-domain Management, Proceedings = Lect Notes Comput Sc Inter-domain Management, Proceedings = Lect. Notes. Comput. Sc. Inter economics = Inter Econ Inter Electronique = Inter Electronique Interest Rate Modeling: Theory and Practice = Ch Crc Financ Math Interest Rate Modeling: Theory and Practice = Ch. Crc. Financ. Math. Interface Age-computing for Business = Interf Age-comput B Interface Age-computing for Business = Interf. Age-comput. B. Interface Age = Interf Age-comput B Interface Age = Interf. Age-comput. B. Interface and Colloid Research Progess = Inter Colloid Res Pr Interface and Colloid Research Progess = Inter. Colloid Res. Pr. Interface Between Innate and Acquired Immunity = Curr Top Microbiol Interface Between Innate and Acquired Immunity = Curr. Top. Microbiol. Interface Controlled Organic Thin Films = Springer Proc Phys Interface Controlled Organic Thin Films = Springer. Proc. Phys. Interface Control of Electrical, Chemical, and Mechanical Properties = Mater Res Soc Symp P Interface Control of Electrical, Chemical, and Mechanical Properties = Mater. Res. Soc. Symp. P. Interface Dynamics and Growth = Mater Res Soc Symp P Interface Dynamics and Growth = Mater. Res. Soc. Symp. P. Interface Engineering of Natural Fibre Composites for Maximum Performance = Woodhead Publ Mater Interface Engineering of Natural Fibre Composites for Maximum Performance = Woodhead. Publ. Mater. Interface Explorations = Inter Explor Interface Explorations = Inter. Explor. Interface Explorations = Interface Explor Interface Explorations = Interface Explor. Interface-journal of New Music Research = Interface-j New Mus Interface-journal of New Music Research = Interface-j. New Mus. Interfaces and Free Boundaries = Interface Free Bound Interfaces and Free Boundaries = Interface. Free Bound. Interfaces Between Polymers, Metals, and Ceramics = Mat Res S C Interfaces Between Polymers, Metals, and Ceramics = Mat. Res. S. C. Interface Science = Interface Sci Interface Science = Interface Sci. Interfaces Crystallization Viscoelasticity = Adv Polym Sci Interfaces Crystallization Viscoelasticity = Adv. Polym. Sci. Interfaces: Explorations in Logic, Language and Computation = Lect Notes Artif Int Interfaces: Explorations in Logic, Language and Computation = Lect. Notes. Artif. Int. Interfaces Ii = Mater Sci Forum Interfaces Ii = Mater. Sci. Forum. Interfaces in Biomaterials Sciences = Eur Mat Res Interfaces in Biomaterials Sciences = Eur. Mat. Res. Interfaces in Composites = Mater Res Soc Symp P Interfaces in Composites = Mater. Res. Soc. Symp. P. Interfaces in Computer Science and Operations Research = Operat Res Comp Sci Interfaces in Computer Science and Operations Research = Operat. Res. Comp. Sci. Interfaces in Computing = Interface Comput Interfaces in Computing = Interface. Comput. Interfaces in Condensed Systems = Prog Coll Pol Sci S Interfaces in Condensed Systems = Prog. Coll. Pol. Sci. S. Interfaces in Industrial Systems for Production and Engineering = Ifip Trans B Interfaces in Industrial Systems for Production and Engineering = Ifip. Trans. B. Interfaces in Multilingualism: Acquisitions and Representation = Hamb Stud Multiling Interfaces in Multilingualism: Acquisitions and Representation = Hamb. Stud. Multiling. Interfaces = Interfaces Interfaces of Consumption Metering Infrastructures With The Energy Consumers: Review of Standards = Vtt Res Notes Interfaces of Consumption Metering Infrastructures With The Energy Consumers: Review of Standards = Vtt. Res. Notes. Interfaces Recursion Language Chomskys Minimalism and The View From Syntax-semantics = Stud Generat Gramm Interfaces Recursion Language Chomskys Minimalism and The View From Syntax-semantics = Stud. Generat. Gramm. Interfaces Recursion Language Chomskys Minimalism and The View From Syntax-semantics = Stud Gener Gramm Interfaces Recursion Language Chomskys Minimalism and The View From Syntax-semantics = Stud. Gener. Gramm. Interfaces, Surfactants and Colloids in Engineering = Prog Coll Pol Sci S Interfaces, Surfactants and Colloids in Engineering = Prog. Coll. Pol. Sci. S. Interface Strategies - Optimal and Costly Computations = Linguist Inq Monogr Interface Strategies - Optimal and Costly Computations = Linguist. Inq. Monogr. Interfacial Design and Chemical Sensing = Acs Sym Ser Interfacial Design and Chemical Sensing = Acs. Sym. Ser. Interfacial Effects and Novel Properties of Nanomaterials = Solid State Phenomen Interfacial Effects and Novel Properties of Nanomaterials = Solid. State. Phenomen. Interfacial Effects and Novel Properties of Nanomaterials = Sol St Phen Interfacial Effects and Novel Properties of Nanomaterials = Sol. St. Phen. Interfacial Effects in Particulate, Fibrous and Layered Composite Materials = Key Eng Mat Interfacial Effects in Particulate, Fibrous and Layered Composite Materials = Key. Eng. Mat. Interfacial Engineering for Optimized Properties Iii = Mater Res Soc Symp P Interfacial Engineering for Optimized Properties Iii = Mater. Res. Soc. Symp. P. Interfacial Engineering for Optimized Properties Ii = Mater Res Soc Symp P Interfacial Engineering for Optimized Properties Ii = Mater. Res. Soc. Symp. P. Interfacial Engineering for Optimized Properties = Mat Res S C Interfacial Engineering for Optimized Properties = Mat. Res. S. C. Interfacial Interactions in Polymeric Composites = Nato Adv Sci Inst Se Interfacial Interactions in Polymeric Composites = Nato. Adv. Sci. Inst. Se. Interfacial Nanostructures in Ceramics: A Multiscale Approach = J Phys Conf Ser Interfacial Nanostructures in Ceramics: A Multiscale Approach = J. Phys. Conf. Ser. Interfacial Phenomena and The Marangoni Effect = Cism Cour L Interfacial Phenomena and The Marangoni Effect = Cism. Cour. L. Interfacial Phenomena: Equilibrium and Dynamic Effects, Second Edition = Surfactant Sci Ser Interfacial Phenomena: Equilibrium and Dynamic Effects, Second Edition = Surfactant. Sci. Ser. Interfacial Phenomena in Electrocatalysis = Mod Asp Electrochem Interfacial Phenomena in Electrocatalysis = Mod. Asp. Electrochem. Interfacial Processes and Molecular Aggregation of Surfactants = Adv Polym Sci Interfacial Processes and Molecular Aggregation of Surfactants = Adv. Polym. Sci. Interfacial Properties of Petroleum Products = Chem Ind-ser Interfacial Properties of Petroleum Products = Chem. Ind-ser. Interfacial Science in Ceramic Joining = Nato Asi 3 High Tech Interfacial Science in Ceramic Joining = Nato. Asi. 3. High. Tech. Interfacing Pic Microcontrollers to Peripherial Devices = Intel Syst Contr Aut Interfacing Pic Microcontrollers to Peripherial Devices = Intel. Syst. Contr. Aut. Interference-optical Methods of Solid Mechanics = Found Eng Mech Interference-optical Methods of Solid Mechanics = Found. Eng. Mech. "Interferences" Series = Interf. Ser. Interferometric Fiber Sensing - Interferometry '94 = P Soc Photo-opt Ins Interferometric Fiber Sensing - Interferometry '94 = P. Soc. Photo-opt. Ins. Interferometry '99: Applications = P Soc Photo-opt Ins Interferometry '99: Applications = P. Soc. Photo-opt. Ins. Interferometry '99: Techniques and Technologies = P Soc Photo-opt Ins Interferometry '99: Techniques and Technologies = P. Soc. Photo-opt. Ins. Interferometry : Applications = P Soc Photo-opt Ins Interferometry : Applications = P. Soc. Photo-opt. Ins. Interferometry for Optical Astronomy Ii, Pts 1 and 2 = Proc Spie Interferometry for Optical Astronomy Ii, Pts 1 and 2 = Proc. Spie. Interferometry for Optical Astronomy Ii, Pts 1 and 2 = P Soc Photo-opt Ins Interferometry for Optical Astronomy Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Interferometry in Optical Astronomy, Pts 1 and 2 = Proc Spie Interferometry in Optical Astronomy, Pts 1 and 2 = Proc. Spie. Interferometry in Optical Astronomy, Pts 1 and 2 = P Soc Photo-opt Ins Interferometry in Optical Astronomy, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Interferometry in Space, Pts 1 and 2 = P Soc Photo-opt Ins Interferometry in Space, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Interferometry : Surface Characterization and Testing = P Soc Photo-opt Ins Interferometry : Surface Characterization and Testing = P. Soc. Photo-opt. Ins. Interferometry : Techniques and Analysis = P Soc Photo-opt Ins Interferometry : Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Vi: Applications = P Soc Photo-opt Ins Interferometry Vi: Applications = P. Soc. Photo-opt. Ins. Interferometry Vii: Applications = P Soc Photo-opt Ins Interferometry Vii: Applications = P. Soc. Photo-opt. Ins. Interferometry Vii: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Vii: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Vi: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Vi: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Xi: Applications = P Soc Photo-opt Ins Interferometry Xi: Applications = P. Soc. Photo-opt. Ins. Interferometry Xii: Applications = Proc Spie Interferometry Xii: Applications = Proc. Spie. Interferometry Xii: Applications = P Soc Photo-opt Ins Interferometry Xii: Applications = P. Soc. Photo-opt. Ins. Interferometry Xiii: Applications = Proc Spie Interferometry Xiii: Applications = Proc. Spie. Interferometry Xiii: Applications = P Soc Photo-opt Ins Interferometry Xiii: Applications = P. Soc. Photo-opt. Ins. Interferometry Xiii: Techniques and Analysis = Proc Spie Interferometry Xiii: Techniques and Analysis = Proc. Spie. Interferometry Xiii: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Xiii: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Xii: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Xii: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Xi: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Xi: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferometry Xiv: Applications = P Soc Photo-opt Ins Interferometry Xiv: Applications = P. Soc. Photo-opt. Ins. Interferometry Xiv: Techniques and Analysis = Proc Spie Interferometry Xiv: Techniques and Analysis = Proc. Spie. Interferometry Xiv: Techniques and Analysis = P Soc Photo-opt Ins Interferometry Xiv: Techniques and Analysis = P. Soc. Photo-opt. Ins. Interferon = Interferon Interferon: The 50th Anniversary = Curr Top Microbiol Interferon: The 50th Anniversary = Curr. Top. Microbiol. Interferon Y Biotecnologia = Interferon Biotecnol Interferon Y Biotecnologia = Interferon Biotecnol. Intergenerational Justice = Rout Stud Contemp Ph Intergenerational Justice = Rout. Stud. Contemp. Ph. Intergovernmental Oceanographic Commission Technical Series = Ioc Tech S Intergovernmental Oceanographic Commission Technical Series = Ioc. Tech. S. Intergranular and Interphase Boundaries in Materials, Iib98 = Mater Sci Forum Intergranular and Interphase Boundaries in Materials, Iib98 = Mater. Sci. Forum. Intergranular and Interphase Boundaries in Materials, Pt 1 = Mater Sci Forum Intergranular and Interphase Boundaries in Materials, Pt 1 = Mater. Sci. Forum. Intergranular and Interphase Boundaries in Materials, Pt 2 = Mater Sci Forum Intergranular and Interphase Boundaries in Materials, Pt 2 = Mater. Sci. Forum. Interhemispheric Water Exchange in The Atlantic Ocean = Elsev Oceanogr Serie Interhemispheric Water Exchange in The Atlantic Ocean = Elsev. Oceanogr. Serie. Interior Architecture = Interior Archit Interior Architecture = Interior Archit. Interior Design = Inter. Des. Interior design (New York, N.Y.) = Inter Des Interiors = Interiors Interiors (New York, N.Y. : 1978) = Interiors Interior Textiles: Design and Developments = Woodhead Text Ser Interior Textiles: Design and Developments = Woodhead. Text. Ser. Interior West Global Change Workshop = Usda Rocky Interior West Global Change Workshop = Usda. Rocky. Interlangues = Interlangues Interlending and Document Supply in Britain Today = Chandos Inf Prof Ser Interlending and Document Supply in Britain Today = Chandos. Inf. Prof. Ser. Interlending & Document Supply = Interlend Doc Supply Interlending & Document Supply = Interlend. Doc. Supply Interleukin-1 in The Brain = Perg S Neur Interleukin-1 in The Brain = Perg. S. Neur. Interleukin-6 Type Cytokines = Ann Ny Acad Sci Interleukin-6 Type Cytokines = Ann. Ny. Acad. Sci. Interleukins = Vitam Horm Interleukins = Vitam. Horm. Intermediair = Intermediar Intermediate Course in Probability, Second Edition = Springer Texts Stat Intermediate Course in Probability, Second Edition = Springer. Texts. Stat. Intermediate Filament Cytoskeleton = Method Cell Biol Intermediate Filament Cytoskeleton = Method. Cell. Biol. Intermediate Filament Cytoskeleton = Methods Cell Biol Intermediate Filament Cytoskeleton = Methods. Cell. Biol. Intermediate Mechanics of Materials, Second Edition = Solid Mech Appl Intermediate Mechanics of Materials, Second Edition = Solid. Mech. Appl. Intermediate Spectral Theory and Quantum Dynamics = Prog Math Phys Intermediate Spectral Theory and Quantum Dynamics = Prog. Math. Phys. Intermediate Uveitis = Dev Ophthalmol Intermediate Uveitis = Dev. Ophthalmol. Intermetallic Matrix Composites Iii = Mater Res Soc Symp P Intermetallic Matrix Composites Iii = Mater. Res. Soc. Symp. P. Intermetallic Matrix Composites Ii = Mater Res Soc Symp P Intermetallic Matrix Composites Ii = Mater. Res. Soc. Symp. P. Intermetallic Matrix Composites = Mater Res Soc Symp P Intermetallic Matrix Composites = Mater. Res. Soc. Symp. P. Intermetallics = Intermetallics Intermittent Hypoxia: From Molecular Mechanisms to Clinical Applications = Physiol Lab Clin Res Intermittent Hypoxia: From Molecular Mechanisms to Clinical Applications = Physiol. Lab. Clin. Res. Intermodal Freight Transportation; Freight Transportation Planning = Transport Res Rec Intermodal Freight Transportation; Freight Transportation Planning = Transport. Res. Rec. Intermolecular Forces and Clusters Ii = Struct Bond Intermolecular Forces and Clusters Ii = Struct. Bond. Intermountain Economic Review=Intermountain Econ. Rev. Internal and emergency medicine = Intern Emerg Med Internal and Emergency Medicine = Intern Emerg Med Internal and Emergency Medicine = Intern. Emerg. Med. Internal and External Aspects of Corporate Governance = Rout Stud Corpor Gov Internal and External Aspects of Corporate Governance = Rout. Stud. Corpor. Gov. Internal Displacement: Conceptualization and Its Consequences = Glob Inst Internal Displacement: Conceptualization and Its Consequences = Glob. Inst. Internal Friction in Metallic Materials: A Handbook = Springer Ser Mater S Internal Friction in Metallic Materials: A Handbook = Springer. Ser. Mater. S. Internalism and Epistemology: The Architecture of Reason = Rout Stud Contemp Ph Internalism and Epistemology: The Architecture of Reason = Rout. Stud. Contemp. Ph. Internalization, International Diversification and The Multinational Enterprise: Essays in Honor of Alan M. Rugman = Res Glob Strateg Man Internalization, International Diversification and The Multinational Enterprise: Essays in Honor of Alan M. Rugman = Res. Glob. Strateg. Man. Internalizing Globalization = Int Polit Econ Ser Internalizing Globalization = Int. Polit. Econ. Ser. Internal Medicine = Internal Med Internal Medicine = Internal Med. Internal Medicine=Intern Med;; Internal Medicine = Intern. Med. Internal medicine journal = Intern Med J Internal Medicine Journal = Intern Med J Internal Medicine Journal = Intern. Med. J. Internal medicine (Tokyo, Japan) = Intern Med Internal Standardization and Calibration Architectures for Chemical Sensors = P Soc Photo-opt Ins Internal Standardization and Calibration Architectures for Chemical Sensors = P. Soc. Photo-opt. Ins. Internal Structure of Black Holes and Spacetime Singularities = Ann Isr Phy Internal Structure of Black Holes and Spacetime Singularities = Ann. Isr. Phy. Internal Structure of Fault Zones: Implications for Mechanical and Fluid-flow Properties = Geol Soc Spec Publ Internal Structure of Fault Zones: Implications for Mechanical and Fluid-flow Properties = Geol. Soc. Spec. Publ. Internasjonal Politikk = Int Polit-oslo Internasjonal Politikk = Int. Polit-oslo. International abstracts of surgery = Int Abstr Surg International Academy for Biomedical and Drug Research = Int Acad B International Academy for Biomedical and Drug Research = Int. Acad. B. International Academy of Pathology Monographs in Pathology = Int Aca Pat International Academy of Pathology Monographs in Pathology = Int. Aca. Pat. International Accounting in The 21st Century = Bus Econ Rapid Chang International Accounting in The 21st Century = Bus. Econ. Rapid. Chang. International Actors, Democratization and The Rule of Law = Routl Uaces Contemp International Actors, Democratization and The Rule of Law = Routl. Uaces. Contemp. International Adjustment Process = Finan Mon P International Adjustment Process = Finan. Mon. P. International Advances in Economic Research=Int. Advances Econ. Res. International advances in surgical oncology = Int Adv Surg Oncol International Advances in Surgical Oncology = Int. Adv. Surg. Oncol. International affairs = Int Aff International Affairs = Int Aff International Affairs = Int. Aff. International Agrophysics = Int Agrophys International Agrophysics = Int. Agrophys. International Air Safety Seminar Proceedings = Int Air Saf Sem P International Air Safety Seminar Proceedings = Int. Air Saf. Sem. P. International and Comparative Law Quarterly = Int Comp Law Q International and Comparative Law Quarterly = Int. Comp. Law Q. International and Comparative Social History = Int Comp Social Hist International and Comparative Social History = Int. Comp. Social Hist. International and Cultural Psychology = Int Cul Psy International and Cultural Psychology = Int. Cul. Psy. International and Cultural Psychology = Int Cult Psychol International and Cultural Psychology = Int. Cult. Psychol. International and Development Education = Int Dev Educ International and Development Education = Int. Dev. Educ. International and Interarea Comparisons of Income, Output, and Prices = Stud Income International and Interarea Comparisons of Income, Output, and Prices = Stud. Income. International anesthesiology clinics = Int Anesthesiol Clin International Anesthesiology Clinics=Int Anesthesiol Clin;; International Anesthesiology Clinics = Int Anesthesiol Clin International Anesthesiology Clinics = Int. Anesthesiol. Clin. International angiology : a journal of the International Union of Angiology = Int Angiol International Angiology=Int Angiol;; International Angiology = Int Angiol International Angiology = Int. Angiol. International Annual Conference of ICT = Int. Annu. Conf. ICT International Applied Mechanics = Int Appl Mech+ International Applied Mechanics = Int. Appl. Mech. International Applied Mechanics = Int. Appl. Mech+.+ International Applied Mechanics = Internat. Appl. Mech. International Approaches to Securing Radioactive Sources Against Terrorism = Nato Sci Peace Secur International Approaches to Securing Radioactive Sources Against Terrorism = Nato. Sci. Peace. Secur. International Arab Journal of Information Technology = Int Arab J Inf Techn International Arab Journal of Information Technology = Int. Arab J. Inf. Techn. International Archives of Allergy and Applied Immunology = Int Arch Aller A Imm International Archives of Allergy and Applied Immunology = Int. Arch. Aller. A. Imm. International archives of allergy and applied immunology = Int Arch Allergy Appl Immunol International Archives of Allergy and Applied Immunology = Int. Arch. Allergy Appl. Immunol. International Archives of Allergy and Immunology = Int. Arch. Allergy Appl. Immunol. International Archives of Allergy and Immunology = Int Arch Allergy Imm International Archives of Allergy and Immunology = Int. Arch. Allergy Imm. International archives of allergy and immunology = Int Arch Allergy Immunol International Archives of Allergy and Immunology=Int Arch Allergy Immunol;; International Archives of Allergy and Immunology = Int. Arch. Allergy Immunol. International Archives of Occupational and Environmental Health = Int Arch Occ Env Hea International Archives of Occupational and Environmental Health = Int. Arch. Occ. Env. Hea. International archives of occupational and environmental health = Int Arch Occup Environ Health International Archives of Occupational and Environmental Health=Int Arch Occup Environ Health;; International Archives of Occupational and Environmental Health = Int. Arch. Occup. Environ. Health International Archives of Photogrammetry and Remote Sensing = Int. Arch. Photogramm. Remote Sens. International Aspects of Child Abuse and Neglect = Health Hum Dev International Aspects of Child Abuse and Neglect = Health. Hum. Dev. International Assistance and State-university Relations = Stud High Educ Ser International Assistance and State-university Relations = Stud. High. Educ. Ser. International Assistance to The Palestinians After Oslo: Political Guilt, Wasted Money = Routl Stud Arab Isr International Assistance to The Palestinians After Oslo: Political Guilt, Wasted Money = Routl. Stud. Arab. Isr. International Association of Aquatic and Marine Science Libraries and Information Centers Conference Series = Iamslic C S International Association of Aquatic and Marine Science Libraries and Information Centers Conference Series = Iamslic. C. S. International Association of Aquatic and Marine Science, Libraries and Information Conference Series = Iamslic C S International Association of Aquatic and Marine Science, Libraries and Information Conference Series = Iamslic. C. S. International Association of Geodesy Symposia = Iag Symp International Association of Geodesy Symposia = Iag. Symp. International Association of Geomorphologists - Publication = Iag Publ International Association of Geomorphologists - Publication = Iag. Publ. International Association of Hydrogeologists = Int Assoc Hydrogeol International Association of Hydrogeologists = Int. Assoc. Hydrogeol. International Association of Marine Science Libraries and Information Centers Conference Series = Iamslic Con International Association of Marine Science Libraries and Information Centers Conference Series = Iamslic. Con. International Association of School Librarianship - Proceedings of The 18th Annual Conference = Iasl Proc International Association of School Librarianship - Proceedings of The 18th Annual Conference = Iasl. Proc. International Association of Sedimentologists Special Publication = Int As Sed International Association of Sedimentologists Special Publication = Int. As. Sed. International Association of Theoretical and Applied Limnology - Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology - Proceedings = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 1 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 1 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 2 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 2 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 4 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 4 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 5 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings, Vol 24, Pt 5 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings, Vol 25, Pt 1 = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology - Proceedings, Vol 25, Pt 1 = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology - Proceedings, Vol 25 Pt 2 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology - Proceedings, Vol 25 Pt 2 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology - Proceedings, Vol 25 Pt 2 = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology - Proceedings, Vol 25 Pt 2 = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology, Proceedings, Vol 25, Pt 3 = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology, Proceedings, Vol 25, Pt 3 = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology - Proceedings, Vol 25, Pt 4 = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology - Proceedings, Vol 25, Pt 4 = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology, Proceedings, Vol 26, Pt 1 = Proc Int Assoc Theor International Association of Theoretical and Applied Limnology, Proceedings, Vol 26, Pt 1 = Proc. Int. Assoc. Theor. International Association of Theoretical and Applied Limnology, Proceedings - Vol 26, Pt 5 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Proceedings - Vol 26, Pt 5 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Proceedings, Vol 27, Pt 4 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Proceedings, Vol 27, Pt 4 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 24, Pt 3 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 24, Pt 3 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 26, Pt 2 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 26, Pt 2 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 26, Pt 3 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 26, Pt 3 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 26, Pt 4 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 26, Pt 4 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 1, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 1, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 2, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 2, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 3, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 3, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 5, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 5, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 6, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 6, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 27, Pt 7, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 27, Pt 7, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 28, Pt 1, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 28, Pt 1, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 28, Pt 2, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 28, Pt 2, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 28 Pt 3, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 28 Pt 3, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 28, Pt 4, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 28, Pt 4, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 29, Pt 1, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 29, Pt 1, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 29, Pt 2, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 29, Pt 2, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 29, Pt 3, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 29, Pt 3, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 29, Pt 4, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 29, Pt 4, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 29, Pt 5 = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 29, Pt 5 = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 1, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 1, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 2, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 2, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 3, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 3, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 4, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 4, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 5, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 5, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 6, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 6, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt. 7, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt. 7, Proceedings = Int. Ver. Theor. Angew. International Association of Theoretical and Applied Limnology, Vol 30, Pt 8, Proceedings = Int Ver Theor Angew International Association of Theoretical and Applied Limnology, Vol 30, Pt 8, Proceedings = Int. Ver. Theor. Angew. International Atomic Energy Agency Conference & Symposium Papers = Iaea Conf Symp Pap International Atomic Energy Agency Conference & Symposium Papers = Iaea. Conf. Symp. Pap. International Atomic Energy Agency : Panel Proceedings Series = Iaea Pan P International Atomic Energy Agency : Panel Proceedings Series = Iaea. Pan. P. International Atomic Energy Agency Proceedings Series 2 : Nuclear Safety and Environmental Protection = Int Aeaps 2 International Atomic Energy Agency Proceedings Series 2 : Nuclear Safety and Environmental Protection = Int. Aeaps. 2 International Atomic Energy Agency Proceedings Series 3 : Physics = Int Aeaps 3 International Atomic Energy Agency Proceedings Series 3 : Physics = Int. Aeaps. 3 International Audiology = Int Audiol International Audiology = Int. Audiol. International Aviation and Terrorism: Evolving Threats, Evolving Security = Cass Ser Polit Viole International Aviation and Terrorism: Evolving Threats, Evolving Security = Cass. Ser. Polit. Viole. International Banking and Finance Law = Int Bank & Finance L International Banking and Finance Law = Int. Bank. &. Finance L. International Banking Regulation and Supervision: Change and Transformation in The 1990s = Int Bank & Finance L International Banking Regulation and Supervision: Change and Transformation in The 1990s = Int. Bank. &. Finance. L. International Bar Association Series = Int Bar Ass International Bar Association Series = Int. Bar Ass. International Behavioural Scientist = Int Behav Sci International Behavioural Scientist = Int. Behav. Sci. International Biodeterioration and Biodegradation = Int. Biodeterior. Biodegrad. International Biodeterioration & Biodegradation = Int Biodeter Biodegr International Biodeterioration & Biodegradation = Int. Biodeter. Biodegr. International Biodeterioration & Biodegradation = Int. Biodeterior. Biodegrad. International biodeterioration & biodegradation = Int Biodeterior Biodegradation International Biodeterioration Bulletin = Int Biodeterior International Biodeterioration Bulletin = Int. Biodeterior. International Biodeterioration = Int Biodeterior International Biodeterioration = Int. Biodeterior. International Bioscience Series = Int Biosci International Bioscience Series = Int. Biosci. International Boundaries and Environmental Security = Int Boundar Stud Ser International Boundaries and Environmental Security = Int. Boundar. Stud. Ser. International Boundary Studies Series = Int Boundar Stud Ser International Boundary Studies Series = Int. Boundar. Stud. Ser. International Braz J Urol = Int Braz J Urol International Braz J Urol = Int. Braz J Urol International Braz J Urol = Int. Braz. J. Urol. International braz j urol : official journal of the Brazilian Society of Urology = Int Braz J Urol International breastfeeding journal = Int Breastfeed J International Broadcasting Convention - Ibc94 = Iee Conf Publ International Broadcasting Convention - Ibc94 = Iee. Conf. Publ. International Broadcasting Convention = Iee Conf Publ International Broadcasting Convention = Iee. Conf. Publ. International Bulletin of Bacteriological Nomenclature and Taxonomy = Int B Bact Nomencl T International Bulletin of Bacteriological Nomenclature and Taxonomy = Int. B. Bact. Nomencl. T. International Business and Management = Int Bus Manag-ser International Business and Management = Int. Bus. Manag-ser. International Business and National War Interests = Rout Int Stud Bus Hi International Business and National War Interests = Rout. Int. Stud. Bus. Hi. International Business and Tourism: Global Issues, Contemporary Interactions = Rout Int Ser Tour Bu International Business and Tourism: Global Issues, Contemporary Interactions = Rout. Int. Ser. Tour. Bu. International Business Geography: Case Studies of Corporate Firms = Routl Stud Int Bus W International Business Geography: Case Studies of Corporate Firms = Routl. Stud. Int. Bus. W. International Business in An Enlarging Europe = Acad Int Bus Series International Business in An Enlarging Europe = Acad. Int. Bus. Series. International Business Review = Int Bus Rev International Business Review = Int. Bus. Rev. International Business Scholarship: Aib Fellows On The First 50 Years and Beyond = Res Glob Strateg Man International Business Scholarship: Aib Fellows On The First 50 Years and Beyond = Res. Glob. Strateg. Man. International Business Series = Int Bus S International Business Series = Int. Bus. S. International Canadian Studies Series = Int Can Stud Ser International Canadian Studies Series = Int. Can. Stud. Ser. International Capital Flows = Nber Conf R International Capital Flows = Nber. Conf. R. International Carnahan Conference On Security Technology Proceedings = Int Carn Conf Secu International Carnahan Conference On Security Technology Proceedings = Int. Carn. Conf. Secu. International Cast Metals Journal = Int Cast Met J International Cast Metals Journal = Int. Cast Met. J. International Center for Research On Language Planning - Publication = Ciral Publ International Center for Research On Language Planning - Publication = Ciral. Publ. International Ceramic Conference : Austceram 90 = Key Eng Mat International Ceramic Conference : Austceram 90 = Key. Eng. Mat. International Challenges to American Colleges and Universities = Am C Educ Oryz International Challenges to American Colleges and Universities = Am. C. Educ. Oryz. International Chemical Engineering = Int Chem Eng International Chemical Engineering = Int. Chem. Eng. International Chemical Recovery Conference, Vols 1-3 = P Tech As P International Chemical Recovery Conference, Vols 1-3 = P. Tech. As. P. International child health = Int Child Health International Classification = Int Classif International Classification = Int. Classif. International Clinical Practice Series = Int Clin Pr International Clinical Practice Series = Int. Clin. Pr. International Clinical Psychopharmacology = Int Clin Psychopharm International Clinical Psychopharmacology = Int. Clin. Psychopharm. International clinical psychopharmacology = Int Clin Psychopharmacol International Clinical Psychopharmacology=Int Clin Psychopharmacol;; International Clinical Psychopharmacology = Int. Clin. Psychopharmacol. International Clinical Sociology = Clin Sociol Res Prac International Clinical Sociology = Clin. Sociol. Res. Prac. International Collaboration in Community Health = Int Congr Ser International Collaboration in Community Health = Int. Congr. Ser. International Colloquium On Diffractive Optical Elements = P Soc Photo-opt Ins International Colloquium On Diffractive Optical Elements = P. Soc. Photo-opt. Ins. International Colloquium On Process Simulation = Int Colloq Proc Sim International Colloquium On Process Simulation = Int. Colloq. Proc. Sim. International Commercial Arbitration: Important Contemporary Questions = Icca Cong Ser International Commercial Arbitration: Important Contemporary Questions = Icca. Cong. Ser. International Committee of The Red Cross: A Neutral Humanitarian Actor = Glob Inst International Committee of The Red Cross: A Neutral Humanitarian Actor = Glob. Inst. International Communications Association Handbook Series = Int Commun Assoc Han International Communications Association Handbook Series = Int. Commun. Assoc. Han. International Communications in Heat and Mass Transfer = Int Commun Heat Mass International Communications in Heat and Mass Transfer = Int. Commun. Heat Mass International Communications in Heat and Mass Transfer = Int. Commun. Heat Mass Transfer International & Comparative Law Quarterly = Int Comp Law Q International & Comparative Law Quarterly = Int. Comp. Law Q. International Comparisons of China's Technical and Vocational Education and Training System = Tech Vocat Ed Train International Comparisons of China's Technical and Vocational Education and Training System = Tech. Vocat. Ed. Train. International Comparisons of Prices, Output and Productivity = Contrib To Econ Anal International Comparisons of Prices, Output and Productivity = Contrib. To. Econ. Anal. International Competition Law Series = Int Compet Law Ser International Competition Law Series = Int. Compet. Law Ser. International Competitiveness and Business Techniques in Advanced Optics and Imaging = P Soc Photo-opt Ins International Competitiveness and Business Techniques in Advanced Optics and Imaging = P. Soc. Photo-opt. Ins. International Competitiveness = Edi Semin S International Competitiveness = Edi. Semin. S. International Competitiveness in Africa = Adv Stud Theor Appl International Competitiveness in Africa = Adv. Stud. Theor. Appl. International Conference and British-israeli Workshop On Greenhouse Technologies = Acta Hortic International Conference and British-israeli Workshop On Greenhouse Technologies = Acta. Hortic. International Conference of Microelectronics : Microelectronics 92 = P Soc Photo-opt Ins International Conference of Microelectronics : Microelectronics 92 = P. Soc. Photo-opt. Ins. International Conference On 21st Century Emissions Technology = Imeche Conf Trans International Conference On 21st Century Emissions Technology = Imeche. Conf. Trans. International Conference On Accelerator-driven Transmutation Technologies and Applications = Aip Conf Proc International Conference On Accelerator-driven Transmutation Technologies and Applications = Aip. Conf. Proc. International Conference On Acoustic Sensing Imaging = Iee Conf Publ International Conference On Acoustic Sensing Imaging = Iee. Conf. Publ. International Conference On Acoustics Speech and Signal Processing (icassp) = Int Conf Acoust Spee International Conference On Acoustics Speech and Signal Processing (icassp) = Int. Conf. Acoust. Spee. International Conference On Acoustics Speech and Signal Processing Icassp = Int Conf Acoust Spee International Conference On Acoustics Speech and Signal Processing Icassp = Int. Conf. Acoust. Spee. International Conference On Advanced Information Networking and Applications = Int Con Adv Info Net International Conference On Advanced Information Networking and Applications = Int. Con. Adv. Info. Net. International Conference On Advanced Nanomaterials and Nanotechnology (icann 2009) = Aip Conf Proc International Conference On Advanced Nanomaterials and Nanotechnology (icann 2009) = Aip. Conf. Proc. International Conference On Advanced Phase Measurement Methods in Optics An Imaging = Aip Conf Proc International Conference On Advanced Phase Measurement Methods in Optics An Imaging = Aip. Conf. Proc. International Conference On Advanced Steam Plant - New Materials and Plant Designs and Their Practical Implications for Future Ccgt and Conventional Power Stations = Imeche Conf Trans International Conference On Advanced Steam Plant - New Materials and Plant Designs and Their Practical Implications for Future Ccgt and Conventional Power Stations = Imeche. Conf. Trans. International Conference On Advancement of Materials and Nanotechnology 2007 = Aip Conf Proc International Conference On Advancement of Materials and Nanotechnology 2007 = Aip. Conf. Proc. International Conference On Advancements of Medicine and Health Care Through Technology = Ifmbe Proc International Conference On Advancements of Medicine and Health Care Through Technology = Ifmbe. Proc. International Conference On Advances in Materials and Processing Technologies, Pts One and Two = Aip Conf Proc International Conference On Advances in Materials and Processing Technologies, Pts One and Two = Aip. Conf. Proc. International Conference On Agricultural Risk and Food Security 2010 = Agric Agric Sci Proc International Conference On Agricultural Risk and Food Security 2010 = Agric. Agric. Sci. Proc. International Conference On Analogue to Digital and Digital to Analogue Conversion = Iee Conf Publ International Conference On Analogue to Digital and Digital to Analogue Conversion = Iee. Conf. Publ. International Conference On Application of Concurrency to System Design. Proceedings = Int Conf Appl Concur International Conference On Application of Concurrency to System Design. Proceedings = Int. Conf. Appl. Concur. International Conference On Applications in Nonlinear Dynamics (icand 2010) = Aip Conf Proc International Conference On Applications in Nonlinear Dynamics (icand 2010) = Aip. Conf. Proc. International Conference On Applications of Nuclear Techniques = Aip Conf Proc International Conference On Applications of Nuclear Techniques = Aip. Conf. Proc. International Conference On Applications of Optical Holography = P Soc Photo-opt Ins International Conference On Applications of Optical Holography = P. Soc. Photo-opt. Ins. International Conference On Applications of Optics and Photonics = Proc Spie International Conference On Applications of Optics and Photonics = Proc. Spie. International Conference On Applied Computer Science = Int Conf Appl Comput International Conference On Applied Computer Science = Int. Conf. Appl. Comput. International Conference On Applied Informatics and Communications-international Conference On Biomedical Electronics and Biomedical Informatics = Int C Appl Inform C International Conference On Applied Informatics and Communications-international Conference On Biomedical Electronics and Biomedical Informatics = Int. C. Appl. Inform. C. International Conference On Applied Optical Metrology = P Soc Photo-opt Ins International Conference On Applied Optical Metrology = P. Soc. Photo-opt. Ins. International Conference On Assuring It's Safe = Imeche Conf Trans International Conference On Assuring It's Safe = Imeche. Conf. Trans. International Conference On Atomic and Molecular Pulsed Lasers Iii = Proc Spie International Conference On Atomic and Molecular Pulsed Lasers Iii = Proc. Spie. International Conference On Atomic and Molecular Pulsed Lasers Iii = P Soc Photo-opt Ins International Conference On Atomic and Molecular Pulsed Lasers Iii = P. Soc. Photo-opt. Ins. International Conference On Atomic and Molecular Pulsed Lasers Iv = Proc Spie International Conference On Atomic and Molecular Pulsed Lasers Iv = Proc. Spie. International Conference On Atomic and Molecular Pulsed Lasers Iv = P Soc Photo-opt Ins International Conference On Atomic and Molecular Pulsed Lasers Iv = P. Soc. Photo-opt. Ins. International Conference On Atomic and Molecular Pulsed Lasers = P Soc Photo-opt Ins International Conference On Atomic and Molecular Pulsed Lasers = P. Soc. Photo-opt. Ins. International Conference On Bear Research and Management = Int C Bear International Conference On Bear Research and Management = Int. C. Bear International Conference On Bear Research and Management Monograph Series = Int Bear Ms International Conference On Bear Research and Management Monograph Series = Int. Bear Ms. International Conference On Binaries: in Celebration of Ron Webbink's 65th Birthday = Aip Conf Proc International Conference On Binaries: in Celebration of Ron Webbink's 65th Birthday = Aip. Conf. Proc. International Conference On Bond Graph Modeling - Icbgm '93 = Simul Series International Conference On Bond Graph Modeling - Icbgm '93 = Simul. Series. International Conference On Business History = Int Conf Bu International Conference On Business History = Int. Conf. Bu. International Conference On Charged and Neutral Particles Channeling Phenomena Ii - Channeling 2006 = Proc Spie International Conference On Charged and Neutral Particles Channeling Phenomena Ii - Channeling 2006 = Proc. Spie. International Conference On Charged and Neutral Particles Channeling Phenomena Ii - Channeling 2006 = P Soc Photo-opt Ins International Conference On Charged and Neutral Particles Channeling Phenomena Ii - Channeling 2006 = P. Soc. Photo-opt. Ins. International Conference On Circuits Systems Signals = Int Conf Circ Syst S International Conference On Circuits Systems Signals = Int. Conf. Circ. Syst. S. International Conference On Combustion Engines and Hybrid Vehicles = Imeche Conf Trans International Conference On Combustion Engines and Hybrid Vehicles = Imeche. Conf. Trans. International Conference On Communication and Management in Technological Innovation and Academic Globalization-proceedings = Int C Commun Manage International Conference On Communication and Management in Technological Innovation and Academic Globalization-proceedings = Int. C. Commun. Manage. International Conference On Communications Circuits and Systems = Int C Commun Circuit International Conference On Communications Circuits and Systems = Int. C. Commun. Circuit. International Conference On Complexity and Interdisciplinary Sciences: 3rd China-europe Summer School On Complexity Sciences = Physcs Proc International Conference On Complexity and Interdisciplinary Sciences: 3rd China-europe Summer School On Complexity Sciences = Physcs. Proc. International Conference On Compressors and Their Systems = Imeche Conf Trans International Conference On Compressors and Their Systems = Imeche. Conf. Trans. International Conference On Computational and Experimental Methods in Reciprocating Engines = Imeche Conf Trans International Conference On Computational and Experimental Methods in Reciprocating Engines = Imeche. Conf. Trans. International Conference On Computation in Electromagnetics = Iee Conf Publ International Conference On Computation in Electromagnetics = Iee. Conf. Publ. International Conference On Computer-aided Design and Computer Graphics-cad Graphics = Int C Comp Aid Des C International Conference On Computer-aided Design and Computer Graphics-cad Graphics = Int. C. Comp. Aid. Des. C. International Conference On Computer-aided Design and Computer Graphics Cad Graphics = Int C Comp Aid Des C International Conference On Computer-aided Design and Computer Graphics Cad Graphics = Int. C. Comp. Aid. Des. C. International Conference On Computer-aided Design & Conceptual Design = I C Comp Aid Des Con International Conference On Computer-aided Design & Conceptual Design = I. C. Comp. Aid. Des. Con. International Conference On Computer Aided Industrial Design and Conceptual Design-caid&cd = Int C Comp Aid Ind D International Conference On Computer Aided Industrial Design and Conceptual Design-caid&cd = Int. C. Comp. Aid. Ind. D. International Conference On Computer Aided Industrial Design and Conceptual Design Caid&cd = Int C Comp Aid Ind D International Conference On Computer Aided Industrial Design and Conceptual Design Caid&cd = Int. C. Comp. Aid. Ind. D. International Conference On Computer and Electrical Engineering Iccee = Int C Comp Elec Eng International Conference On Computer and Electrical Engineering Iccee = Int. C. Comp. Elec. Eng. International Conference On Computer Design - Vlsi in Computers and Processors, Proceedings = Pr Ieee Comp Design International Conference On Computer Design - Vlsi in Computers and Processors, Proceedings = Pr. Ieee. Comp. Design International Conference On Computer Engineering and Applications Iccea = Int C Comput Eng App International Conference On Computer Engineering and Applications Iccea = Int. C. Comput. Eng. App. International Conference On Computer Graphics Imaging and Visualization = I C Comp Graph Im Vi International Conference On Computer Graphics Imaging and Visualization = I. C. Comp. Graph. Im. Vi. International Conference On Computer Graphics, Imaging and Visualization, Proceedings = I C Comp Graph Im Vi International Conference On Computer Graphics, Imaging and Visualization, Proceedings = I. C. Comp. Graph. Im. Vi. International Conference On Computer Supported Cooperative Work in Design = Int C Comp Supp Coop International Conference On Computer Supported Cooperative Work in Design = Int. C. Comp. Supp. Coop. International Conference On Computer Systems and Applications = I C Comp Syst Applic International Conference On Computer Systems and Applications = I. C. Comp. Syst. Applic. International Conference On Consumer Electronics = Ieee Icce International Conference On Consumer Electronics = Ieee. Icce. International Conference On Control 91, Vols 1 and 2 = Iee Conf Publ International Conference On Control 91, Vols 1 and 2 = Iee. Conf. Publ. International Conference On Control and Synchronization of Dynamical Systems (csds-2005) = J Phys Conf Ser International Conference On Control and Synchronization of Dynamical Systems (csds-2005) = J. Phys. Conf. Ser. International Conference On Correlation Optics = P Soc Photo-opt Ins International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. International Conference On Data Transmission - Advances in Modem and Isdn Technology and Applications = Iee Conf Publ International Conference On Data Transmission - Advances in Modem and Isdn Technology and Applications = Iee. Conf. Publ. International Conference On Dependable Systems and Networks = I C Depend Sys Netwo International Conference On Dependable Systems and Networks = I. C. Depend. Sys. Netwo. International Conference On Distributed Computing Systems - Proceedings = Int Con Distr Comp S International Conference On Distributed Computing Systems - Proceedings = Int. Con. Distr. Comp. S. International Conference On E-business Engineering = Int Conf E Bus Eng International Conference On E-business Engineering = Int. Conf. E. Bus. Eng. International Conference On Education in Automotive Engineering = Imeche Conf Trans International Conference On Education in Automotive Engineering = Imeche. Conf. Trans. International Conference On Electrical and Control Aspects of The Sizewell B Pwr = Iee Conf Publ International Conference On Electrical and Control Aspects of The Sizewell B Pwr = Iee. Conf. Publ. International Conference On Electrical Installation Engineering in Europe = Iee Conf Publ International Conference On Electrical Installation Engineering in Europe = Iee. Conf. Publ. International Conference On Electrical Machines and Systems Icems = Int C Electr Mach Sy International Conference On Electrical Machines and Systems Icems = Int. C. Electr. Mach. Sy. International Conference On Electro Information Technology = Int Conf Electro Inf International Conference On Electro Information Technology = Int. Conf. Electro Inf. International Conference On Electromagnetic Compatibility = Iee Conf Publ International Conference On Electromagnetic Compatibility = Iee. Conf. Publ. International Conference On Electromagnetic Disturbances - Proceedings = Int Conf Electromag International Conference On Electromagnetic Disturbances - Proceedings = Int. Conf. Electromag. International Conference On Emerging Technologies Icet = Int Conf Emerg Techn International Conference On Emerging Technologies Icet = Int. Conf. Emerg. Techn. International Conference On Excitonic Processes in Condensed Matter = P Soc Photo-opt Ins International Conference On Excitonic Processes in Condensed Matter = P. Soc. Photo-opt. Ins. International Conference On Experimental Mechanics: Advances and Applications = P Soc Photo-opt Ins International Conference On Experimental Mechanics: Advances and Applications = P. Soc. Photo-opt. Ins. International Conference On Explosion Safety in Hazardous Areas = Iee Conf Publ International Conference On Explosion Safety in Hazardous Areas = Iee. Conf. Publ. International Conference On Fault-free Infrastructure: Effective Solutions to Improve Efficiency = Imeche Conf Trans International Conference On Fault-free Infrastructure: Effective Solutions to Improve Efficiency = Imeche. Conf. Trans. International Conference On Field Programmable and Logic Applications = I C Field Prog Logic International Conference On Field Programmable and Logic Applications = I. C. Field Prog. Logic International Conference On Field Programmable Logic and Applications = Int Con Field Prog International Conference On Field Programmable Logic and Applications = Int. Con. Field Prog. International Conference On Forging and Related Technology (icft '98) = Imeche Conf Trans International Conference On Forging and Related Technology (icft '98) = Imeche. Conf. Trans. International Conference On Gears, Pts 1 and 2 = Vdi Bericht International Conference On Gears, Pts 1 and 2 = Vdi. Bericht. International Conference On Gears = Vdi Bericht International Conference On Gears = Vdi. Bericht. International Conference On Gears, Vols 1 and 2 = Vdi Bericht International Conference On Gears, Vols 1 and 2 = Vdi. Bericht. International Conference On Global Software Engineering = Int Conf Global Soft International Conference On Global Software Engineering = Int. Conf. Global Soft. International Conference On Harmonics and Quality of Power = Int C Harmon Qual Po International Conference On Harmonics and Quality of Power = Int. C. Harmon. Qual. Po. International Conference On High Pressure Science and Technology, Joint Airapt-22 and Hpcj-50 = J Phys Conf Ser International Conference On High Pressure Science and Technology, Joint Airapt-22 and Hpcj-50 = J. Phys. Conf. Ser. International Conference On Holography and Correlation Optics = P Soc Photo-opt Ins International Conference On Holography and Correlation Optics = P. Soc. Photo-opt. Ins. International Conference On Holography and Optical Information Processing (ichoip '96) = P Soc Photo-opt Ins International Conference On Holography and Optical Information Processing (ichoip '96) = P. Soc. Photo-opt. Ins. International Conference On Holography, Correlation Optics, and Recording Materials = P Soc Photo-opt Ins International Conference On Holography, Correlation Optics, and Recording Materials = P. Soc. Photo-opt. Ins. International Conference On Image Processing and Its Applications = Iee Conf Publ International Conference On Image Processing and Its Applications = Iee. Conf. Publ. International Conference On Image Processing and Pattern Recognition in Industrial Engineering = Proc Spie International Conference On Image Processing and Pattern Recognition in Industrial Engineering = Proc. Spie. International Conference On Image Processing and Pattern Recognition in Industrial Engineering = P Soc Photo-opt Ins International Conference On Image Processing and Pattern Recognition in Industrial Engineering = P. Soc. Photo-opt. Ins. International Conference On Indium Phosphide and Related Materials = Conf P Indium Phosph International Conference On Indium Phosphide and Related Materials = Conf. P. Indium Phosph. International Conference On Industrial Engineering and Engineering Management Ieem = In C Ind Eng Eng Man International Conference On Industrial Engineering and Engineering Management Ieem = In. C. Ind. Eng. Eng. Man. International Conference On Information and Communication Technologies Icict = Int Conf Inf Commun International Conference On Information and Communication Technologies Icict = Int. Conf. Inf. Commun. International Conference On Information-decision-action Systems in Complex Organisations = Iee Conf Publ International Conference On Information-decision-action Systems in Complex Organisations = Iee. Conf. Publ. International Conference On Information Technology in The Workplace = Iee Conf Publ International Conference On Information Technology in The Workplace = Iee. Conf. Publ. International Conference On Integrated Broadband Services and Networks = Iee Conf Publ International Conference On Integrated Broadband Services and Networks = Iee. Conf. Publ. International Conference On Integrated Powertrain Systems for A Better Environment = Imeche Conf Trans International Conference On Integrated Powertrain Systems for A Better Environment = Imeche. Conf. Trans. International Conference On Intelligent Computer Communication and Processing Iccp = Int C Intell Comp Co International Conference On Intelligent Computer Communication and Processing Iccp = Int. C. Intell. Comp. Co. International Conference On Intelligent Computer Communication and Processing = Int C Intell Comp Co International Conference On Intelligent Computer Communication and Processing = Int. C. Intell. Comp. Co. International Conference On Intelligent Engineering Systems = Int C Intell Eng Sys International Conference On Intelligent Engineering Systems = Int. C. Intell. Eng. Sys. International Conference On Intelligent Manufacturing = P Soc Photo-opt Ins International Conference On Intelligent Manufacturing = P. Soc. Photo-opt. Ins. International Conference On Inverse Problems 2010 = J Phys Conf Ser International Conference On Inverse Problems 2010 = J. Phys. Conf. Ser. International Conference On Joining and Repair of Plastics and Composites = Imeche Conf Trans International Conference On Joining and Repair of Plastics and Composites = Imeche. Conf. Trans. International Conference On Laser, Applications, and Technologies 2005: Laser Sensing, Imaging, and Information Technologies = Proc Spie International Conference On Laser, Applications, and Technologies 2005: Laser Sensing, Imaging, and Information Technologies = Proc. Spie. International Conference On Laser, Applications, and Technologies 2005: Laser Sensing, Imaging, and Information Technologies = P Soc Photo-opt Ins International Conference On Laser, Applications, and Technologies 2005: Laser Sensing, Imaging, and Information Technologies = P. Soc. Photo-opt. Ins. International Conference On Laser Physics 2010 = Proc Spie International Conference On Laser Physics 2010 = Proc. Spie. International Conference On Laser Physics 2010 = P Soc Photo-opt Ins International Conference On Laser Physics 2010 = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2005: Advanced Lasers and Systems = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2005: Advanced Lasers and Systems = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2005: High-power Lasers and Applications = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2005: High-power Lasers and Applications = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2005: Laser-assisted Micro- and Nanotechnologies = Proc Spie International Conference On Lasers, Applications, and Technologies 2005: Laser-assisted Micro- and Nanotechnologies = Proc. Spie. International Conference On Lasers, Applications, and Technologies 2005: Laser-assisted Micro- and Nanotechnologies = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2005: Laser-assisted Micro- and Nanotechnologies = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2005: Laser Technologies for Environmental Monitoring and Ecological Applications and Laser Technologies for Medicine = Proc Spie International Conference On Lasers, Applications, and Technologies 2005: Laser Technologies for Environmental Monitoring and Ecological Applications and Laser Technologies for Medicine = Proc. Spie. International Conference On Lasers, Applications, and Technologies 2005: Laser Technologies for Environmental Monitoring and Ecological Applications and Laser Technologies for Medicine = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2005: Laser Technologies for Environmental Monitoring and Ecological Applications and Laser Technologies for Medicine = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2007: Advanced Lasers and Systems = Proc Spie International Conference On Lasers, Applications, and Technologies 2007: Advanced Lasers and Systems = Proc. Spie. International Conference On Lasers, Applications, and Technologies 2007: Advanced Lasers and Systems = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2007: Advanced Lasers and Systems = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2007: High-power Lasers and Applications = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2007: High-power Lasers and Applications = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2007: Laser-assisted Micro- and Nanotechnologies = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2007: Laser-assisted Micro- and Nanotechnologies = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2007: Laser Technologies for Medicine = P Soc Photo-opt Ins International Conference On Lasers, Applications, and Technologies 2007: Laser Technologies for Medicine = P. Soc. Photo-opt. Ins. International Conference On Lasers, Applications, and Technologies 2007 = Proc Spie International Conference On Lasers, Applications, and Technologies 2007 = Proc. Spie. International Conference On Lasers for Measurements and Information Transfer = P Soc Photo-opt Ins International Conference On Lasers for Measurements and Information Transfer = P. Soc. Photo-opt. Ins. International Conference On Learner Diversity 2010 = Procd Soc Behv International Conference On Learner Diversity 2010 = Procd. Soc. Behv. International Conference On Life Management of Power Plants = Iee Conf Publ International Conference On Life Management of Power Plants = Iee. Conf. Publ. International Conference On Magnetic Fields in O, B and A Stars: Origin and Connection to Pulsation, Rotation and Mass Loss = Astr Soc P International Conference On Magnetic Fields in O, B and A Stars: Origin and Connection to Pulsation, Rotation and Mass Loss = Astr. Soc. P. International Conference On Magnetism (icm 2009) = J Phys Conf Ser International Conference On Magnetism (icm 2009) = J. Phys. Conf. Ser. International Conference On Mail Technology - Tomorrow's World = Imeche Conf Trans International Conference On Mail Technology - Tomorrow's World = Imeche. Conf. Trans. International Conference On Main Line Railway Electrification = Iee Conf Publ International Conference On Main Line Railway Electrification = Iee. Conf. Publ. International Conference On Manufacturing Automation = P Soc Photo-opt Ins International Conference On Manufacturing Automation = P. Soc. Photo-opt. Ins. International Conference On Many Particle Spectroscopy of Atoms, Molecules, Clusters and Surfaces = J Phys Conf Ser International Conference On Many Particle Spectroscopy of Atoms, Molecules, Clusters and Surfaces = J. Phys. Conf. Ser. International Conference On Materials for Advanced Technologies (icmat 2005) = J Phys Conf Ser International Conference On Materials for Advanced Technologies (icmat 2005) = J. Phys. Conf. Ser. International Conference On Mathematical Biology 2007 = Aip Conf Proc International Conference On Mathematical Biology 2007 = Aip. Conf. Proc. International Conference On Mathematics Education Research 2010 - Icmer 2010 = Procd Soc Behv International Conference On Mathematics Education Research 2010 - Icmer 2010 = Procd. Soc. Behv. International Conference On Mechatronics and Machine Vision in Practice = I C Mech Mach Vis Pr International Conference On Mechatronics and Machine Vision in Practice = I. C. Mech. Mach. Vis. Pr. International Conference On Methods and Models in Science and Technology (icm2st-10) = Aip Conf Proc International Conference On Methods and Models in Science and Technology (icm2st-10) = Aip. Conf. Proc. International Conference On Micro- and Nano-electronics 2009 = Proc Spie International Conference On Micro- and Nano-electronics 2009 = Proc. Spie. International Conference On Micro- and Nano-electronics 2009 = P Soc Photo-opt Ins International Conference On Micro- and Nano-electronics 2009 = P. Soc. Photo-opt. Ins. International Conference On Microelectronics-icm = Int C Microelectron International Conference On Microelectronics-icm = Int. C. Microelectron. International Conference On Microelectronics Icm = Int Conf Microelect International Conference On Microelectronics Icm = Int. Conf. Microelect. International Conference On Microelectronics-miel = Int Conf Microelectr International Conference On Microelectronics-miel = Int. Conf. Microelectr. International Conference On Military Technologies = Icmt-int Conf Milit International Conference On Military Technologies = Icmt-int. Conf. Milit. International Conference On Millimeter and Submillimeter Waves and Applications = P Soc Photo-opt Ins International Conference On Millimeter and Submillimeter Waves and Applications = P. Soc. Photo-opt. Ins. International Conference On Modeling, Optimization, and Computing = Aip Conf Proc International Conference On Modeling, Optimization, and Computing = Aip. Conf. Proc. International Conference On Modulation Spectroscopy = P Soc Photo-opt Ins International Conference On Modulation Spectroscopy = P. Soc. Photo-opt. Ins. International Conference On Monitoring of Toxic Chemicals and Biomarkers = P Soc Photo-opt Ins International Conference On Monitoring of Toxic Chemicals and Biomarkers = P. Soc. Photo-opt. Ins. International Conference On Multi-body Dynamics = Imeche Conf Trans International Conference On Multi-body Dynamics = Imeche. Conf. Trans. International Conference On Nation and Language = Int Conf Nation Lang International Conference On Nation and Language = Int. Conf. Nation Lang. International Conference On Natural Gas Hydrates = Ann Ny Acad Sci International Conference On Natural Gas Hydrates = Ann. Ny. Acad. Sci. International Conference On Neutron Scattering 2009 = J Phys Conf Ser International Conference On Neutron Scattering 2009 = J. Phys. Conf. Ser. International Conference On Noncommutative Geometry and Physics = J Phys Conf Ser International Conference On Noncommutative Geometry and Physics = J. Phys. Conf. Ser. International Conference On Nuclear Data for Science and Technology, Pts 1 and 2 = Aip Conf Proc International Conference On Nuclear Data for Science and Technology, Pts 1 and 2 = Aip. Conf. Proc. International Conference On Nuclear Data for Science and Technology, Vol 59, Pt 1 and 2 = Soc Ital Fi International Conference On Nuclear Data for Science and Technology, Vol 59, Pt 1 and 2 = Soc. Ital. Fi. International Conference On Nuclear Decommissioning '98 = Imeche Conf Trans International Conference On Nuclear Decommissioning '98 = Imeche. Conf. Trans. International Conference On Nuclear Decommissioning = Imeche Conf Trans International Conference On Nuclear Decommissioning = Imeche. Conf. Trans. International Conference On Operational Research = Int Conf Oper Res International Conference On Operational Research = Int. Conf. Oper. Res. International Conference On Optical Diagnosis of Materials and Devices for Opto-, Micro-, and Quantum Electronics 1997 = P Soc Photo-opt Ins International Conference On Optical Diagnosis of Materials and Devices for Opto-, Micro-, and Quantum Electronics 1997 = P. Soc. Photo-opt. Ins. International Conference On Optical Diagnostics of Materials and Devices for Opto-, Micro-, and Quantum Electronics = P Soc Photo-opt Ins International Conference On Optical Diagnostics of Materials and Devices for Opto-, Micro-, and Quantum Electronics = P. Soc. Photo-opt. Ins. International Conference On Optical Fabrication and Testing = P Soc Photo-opt Ins International Conference On Optical Fabrication and Testing = P. Soc. Photo-opt. Ins. International Conference On Optical Fibre Sensors in China Ofs ( C ) 91 = P Soc Photo-opt Ins International Conference On Optical Fibre Sensors in China Ofs ( C ) 91 = P. Soc. Photo-opt. Ins. International Conference On Optical Holography and Its Applications = P Soc Photo-opt Ins International Conference On Optical Holography and Its Applications = P. Soc. Photo-opt. Ins. International Conference On Optical Information Processing = P Soc Photo-opt Ins International Conference On Optical Information Processing = P. Soc. Photo-opt. Ins. International Conference On Optical Methods and Data Processing in Heat and Fluid Flow = Imeche Conf Trans International Conference On Optical Methods and Data Processing in Heat and Fluid Flow = Imeche. Conf. Trans. International Conference On Optical Storage, Imaging, and Transmission of Information = P Soc Photo-opt Ins International Conference On Optical Storage, Imaging, and Transmission of Information = P. Soc. Photo-opt. Ins. International Conference On Optoelectronic Science and Engineering 90 = P Soc Photo-opt Ins International Conference On Optoelectronic Science and Engineering 90 = P. Soc. Photo-opt. Ins. International Conference On Parallel and Distributed Systems - Proceedings = Int C Par Distrib Sy International Conference On Parallel and Distributed Systems - Proceedings = Int. C. Par. Distrib. Sy. International Conference On Parallel Architectures and Compilation Techniques = Int Confer Para International Conference On Parallel Architectures and Compilation Techniques = Int. Confer. Para. International Conference On Parallel Processing Workshops = Int Conf Para Proc International Conference On Parallel Processing Workshops = Int. Conf. Para. Proc. International Conference On Partial Discharge = Iee Conf Publ International Conference On Partial Discharge = Iee. Conf. Publ. International Conference On Pattern Recognition = Int C Patt Recog International Conference On Pattern Recognition = Int. C. Patt. Recog. International Conference On Photodynamic Therapy and Laser Medicine = P Soc Photo-opt Ins International Conference On Photodynamic Therapy and Laser Medicine = P. Soc. Photo-opt. Ins. International Conference On Photoelectronics and Night Vision Devices = P Soc Photo-opt Ins International Conference On Photoelectronics and Night Vision Devices = P. Soc. Photo-opt. Ins. International Conference On Physics Education = Aip Conf Proc International Conference On Physics Education = Aip. Conf. Proc. International Conference On Physics of Emerging Functional Materials (pefm-2010) = Aip Conf Proc International Conference On Physics of Emerging Functional Materials (pefm-2010) = Aip. Conf. Proc. International Conference On Planetary Boundary Layer and Climate Change = Iop C Ser Earth Env International Conference On Planetary Boundary Layer and Climate Change = Iop. C. Ser. Earth. Env. International Conference On Plasma Physics - Icpp 1994 = Aip Conf Proc International Conference On Plasma Physics - Icpp 1994 = Aip. Conf. Proc. International Conference On Power Control and Optimization = Aip Conf Proc International Conference On Power Control and Optimization = Aip. Conf. Proc. International Conference On Power Electronics and Drive Systems Peds = Int C Power Elect Dr International Conference On Power Electronics and Drive Systems Peds = Int. C. Power Elect. Dr. International Conference On Power Electronics, Machines and Drives = Iee Conf Publ International Conference On Power Electronics, Machines and Drives = Iee. Conf. Publ. International Conference On Power Station Maintenance 2000 = Imeche Conf Trans International Conference On Power Station Maintenance 2000 = Imeche. Conf. Trans. International Conference On Practical Applications in Environmental Geotechnology Ecogeo 2000 = Vtt Symp International Conference On Practical Applications in Environmental Geotechnology Ecogeo 2000 = Vtt. Symp. International Conference On Pressure Systems: Operation and Risk Management = Imeche Conf Trans International Conference On Pressure Systems: Operation and Risk Management = Imeche. Conf. Trans. International Conference On Product Focused Software Process Improvement = Vtt Symp International Conference On Product Focused Software Process Improvement = Vtt. Symp. International Conference On Program Comprehension = Int C Program Compre International Conference On Program Comprehension = Int. C. Program Compre. International Conference On Quality Software = Int Conf Qual Softw International Conference On Quality Software = Int. Conf. Qual. Softw. International Conference On Quantitative Evaluation of Systems-qest = Int Conf Quant Eval International Conference On Quantitative Evaluation of Systems-qest = Int. Conf. Quant. Eval. International Conference On Quantitative Evaluation of Systems Qest = Int Conf Quant Eval International Conference On Quantitative Evaluation of Systems Qest = Int. Conf. Quant. Eval. International Conference On Radiation Interaction With Materials and Its Use in Technologies 2008 = Rad Int Mat Tech International Conference On Radiation Interaction With Materials and Its Use in Technologies 2008 = Rad. Int. Mat. Tech. International Conference On Railway As A System = Imeche Conf Trans International Conference On Railway As A System = Imeche. Conf. Trans. International Conference On Rehabilitation Robotics Icorr = Int C Rehab Robot International Conference On Rehabilitation Robotics Icorr = Int. C. Rehab. Robot. International Conference On Renewable Energy - Clean Power 2001 = Iee Conf Publ International Conference On Renewable Energy - Clean Power 2001 = Iee. Conf. Publ. International Conference On Science of Friction 2010 (icsf2010) = J Phys Conf Ser International Conference On Science of Friction 2010 (icsf2010) = J. Phys. Conf. Ser. International Conference On Science of Friction = J Phys Conf Ser International Conference On Science of Friction = J. Phys. Conf. Ser. International Conference On Scientific Optical Imaging = P Soc Photo-opt Ins International Conference On Scientific Optical Imaging = P. Soc. Photo-opt. Ins. International Conference On Sensors and Control Techniques (icsc 2000) = P Soc Photo-opt Ins International Conference On Sensors and Control Techniques (icsc 2000) = P. Soc. Photo-opt. Ins. International Conference On Sensor Technology (istc 2001), Proceedings = P Soc Photo-opt Ins International Conference On Sensor Technology (istc 2001), Proceedings = P. Soc. Photo-opt. Ins. International Conference On Service Systems and Service Management = I C Serv Syst Serv M International Conference On Service Systems and Service Management = I. C. Serv. Syst. Serv. M. International Conference On Signal Processing-icsp = Int Conf Sign Proces International Conference On Signal Processing-icsp = Int. Conf. Sign. Proces. International Conference On Simulation '98 = Iee Conf Publ International Conference On Simulation '98 = Iee. Conf. Publ. International Conference On Simulation in Engineering Education (icsee 94) = Simul Series International Conference On Simulation in Engineering Education (icsee 94) = Simul. Series. International Conference On Simulation in Engineering Education = Simul Series International Conference On Simulation in Engineering Education = Simul. Series. International Conference On Simulation of Semiconductor Processes and Devices = Int Conf Sim Semi Pr International Conference On Simulation of Semiconductor Processes and Devices = Int. Conf. Sim. Semi. Pr. International Conference On Singular Optics = P Soc Photo-opt Ins International Conference On Singular Optics = P. Soc. Photo-opt. Ins. International Conference On Smart Materials and Nanotechnology in Engineering, Pts 1-3 = Proc Spie International Conference On Smart Materials and Nanotechnology in Engineering, Pts 1-3 = Proc. Spie. International Conference On Smart Materials and Nanotechnology in Engineering, Pts 1-3 = P Soc Photo-opt Ins International Conference On Smart Materials and Nanotechnology in Engineering, Pts 1-3 = P. Soc. Photo-opt. Ins. International Conference On Software Engineering and Formal Methods - Sefm = I C Softw Eng Form M International Conference On Software Engineering and Formal Methods - Sefm = I. C. Softw. Eng. Form. M. International Conference On Software Engineering, Proceedings = Proc Ieee Int Conf S International Conference On Software Engineering, Proceedings = Proc. Ieee. Int. Conf. S. International Conference On Software Engineering = Proc Int Conf Softw International Conference On Software Engineering = Proc. Int. Conf. Softw. International Conference On Software Maintenance, Proceedings = Proc Ieee Int Conf S International Conference On Software Maintenance, Proceedings = Proc. Ieee. Int. Conf. S. International Conference On Solid State Crystals 2000: Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = Proc Spie International Conference On Solid State Crystals 2000: Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = Proc. Spie. International Conference On Solid State Crystals 2000: Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = P Soc Photo-opt Ins International Conference On Solid State Crystals 2000: Epilayers and Heterostructures in Optoelectronics and Semiconductor Technology = P. Soc. Photo-opt. Ins. International Conference On Solid State Crystals 2000: Growth, Characterization, and Applications of Single Crystals = Proc Spie International Conference On Solid State Crystals 2000: Growth, Characterization, and Applications of Single Crystals = Proc. Spie. International Conference On Solid State Crystals 2000: Growth, Characterization, and Applications of Single Crystals = P Soc Photo-opt Ins International Conference On Solid State Crystals 2000: Growth, Characterization, and Applications of Single Crystals = P. Soc. Photo-opt. Ins. International Conference On Space Information Technology 2009 = Proc Spie International Conference On Space Information Technology 2009 = Proc. Spie. International Conference On Space Information Technology 2009 = P Soc Photo-opt Ins International Conference On Space Information Technology 2009 = P. Soc. Photo-opt. Ins. International Conference On Storage in Nuclear Fuel Cycle = Imeche Conf Trans International Conference On Storage in Nuclear Fuel Cycle = Imeche. Conf. Trans. International Conference On Storage & Recording Systems = Iee Conf Publ International Conference On Storage & Recording Systems = Iee. Conf. Publ. International Conference On Strongly Correlated Electron Systems (sces 2010) = J Phys Conf Ser International Conference On Strongly Correlated Electron Systems (sces 2010) = J. Phys. Conf. Ser. International Conference On System Science and Simulation in Engineering-proceedings = Int Conf Syst Sci Si International Conference On System Science and Simulation in Engineering-proceedings = Int. Conf. Syst. Sci. Si. International Conference On Systems, Man and Cybernetics, Vol 1-4, Proceedings = Ieee Sys Man Cybern International Conference On Systems, Man and Cybernetics, Vol 1-4, Proceedings = Ieee. Sys. Man Cybern. International Conference On The Application and Theory of Periodic Structures = P Soc Photo-opt Ins International Conference On The Application and Theory of Periodic Structures = P. Soc. Photo-opt. Ins. International Conference On The Applications of The Mossbauer Effect (icame 2009) = J Phys Conf Ser International Conference On The Applications of The Mossbauer Effect (icame 2009) = J. Phys. Conf. Ser. International Conference On The Applications of The Mossbauer Effect - Icame-95 = Ital Phy So International Conference On The Applications of The Mossbauer Effect - Icame-95 = Ital. Phy. So. International Conference On Theoretical Physics 'dubna-nano2008' = J Phys Conf Ser International Conference On Theoretical Physics 'dubna-nano2008' = J. Phys. Conf. Ser. International Conference On Theoretical Physics Dubna-nano 2010 = J Phys Conf Ser International Conference On Theoretical Physics Dubna-nano 2010 = J. Phys. Conf. Ser. International Conference On Thermoelectrics = Int Conf Thermoelect International Conference On Thermoelectrics = Int. Conf. Thermoelect. International Conference On Thin Film Physics and Applications, Pts 1 and 2 = P Soc Photo-opt Ins International Conference On Thin Film Physics and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. International Conference On Vehicle Safety 2000 = Imeche Conf Trans International Conference On Vehicle Safety 2000 = Imeche. Conf. Trans. International Conference On Very Large Data Bases = Proc Int Conf Very L International Conference On Very Large Data Bases = Proc. Int. Conf. Very L. International Conference On Vlsi Design, Proceedings = I Conf Vlsi Design International Conference On Vlsi Design, Proceedings = I. Conf. Vlsi Design. International Conference On Wafer Scale Integration = Int Conf Wafer Scale International Conference On Wafer Scale Integration = Int. Conf. Wafer Scale International Conference On Wafer Scale Integration Proceedings = Int Conf Wafer Scale International Conference On Wafer Scale Integration Proceedings = Int. Conf. Wafer Scale International Conference On Wavelet Analysis and Pattern Recognition = Int C Wavel Anal Pat International Conference On Wavelet Analysis and Pattern Recognition = Int. C. Wavel. Anal. Pat. International Conference On Wireless Communications, Networking and Mobile Computing = I C Wirel Comm Netw International Conference On Wireless Communications, Networking and Mobile Computing = I. C. Wirel. Comm. Netw. International Conference On X-ray and Neutron Capillary Optics = P Soc Photo-opt Ins International Conference On X-ray and Neutron Capillary Optics = P. Soc. Photo-opt. Ins. International Conference : Reliability, Production and Control in Coal Mines = Aust Imm M International Conference : Reliability, Production and Control in Coal Mines = Aust. Imm. M. International Conflict Mediation: New Approaches and Findings = Secur Gov International Conflict Mediation: New Approaches and Findings = Secur. Gov. International Conflict Mediation: New Approaches and Findings = Secur Govern International Conflict Mediation: New Approaches and Findings = Secur. Govern. International Conflict Resolution Using System Engineering = Ifac Work S International Conflict Resolution Using System Engineering = Ifac. Work. S. International Congress of Central and East European Studies Series = Int Congr Cent E Eur International Congress of Central and East European Studies Series = Int. Congr. Cent. E. Eur. International Congress On Advances in Non-impact Printing Technologies = Int Cong Ad International Congress On Advances in Non-impact Printing Technologies = Int. Cong. Ad. International Congress On Ultrasonics, Proceedings = Physcs Proc International Congress On Ultrasonics, Proceedings = Physcs. Proc. International congress series / Excerpta Medica = Int Congr Ser International Congress Series - Excerpta Medica = Int. Congr. Ser. - Excerpta Med. International Congress Series = Int Congr Ser International Congress Series = Int. Congr. Ser. International Congress, Symposium and Seminar Series = I C S S International Congress, Symposium and Seminar Series = I. C. S. S. International contact lens clinic (New York, N.Y.) = Int Contact Lens Clin International Contributions to Labour Studies=Int. Contrib. to Lab. Stud. International Cooperation and Arctic Governance = Routl Adv Int Relat International Cooperation and Arctic Governance = Routl. Adv. Int. Relat. International Corporate Responsibility Series = Int Corp Respons Ser International Corporate Responsibility Series = Int. Corp. Respons. Ser. International Corrosion Conference Series = Int. Corros. Conf. Ser. International Corrugated Containers Conference, 1994 = P Tech As P International Corrugated Containers Conference, 1994 = P. Tech. As. P. International Council for Central and East European Studies Series = Int Co Cent E Eur St International Council for Central and East European Studies Series = Int. Co. Cent. E. Eur. St. International Council for Commercial Arbitration Congress Series = Icca Cong Ser International Council for Commercial Arbitration Congress Series = Icca. Cong. Ser. International Crop Protection: Achievements & Ambitions = Bcpc Symp Ser International Crop Protection: Achievements & Ambitions = Bcpc. Symp. Ser. International Cryogenics Monograph Series = Int Cryog Monogr International Cryogenics Monograph Series = Int. Cryog. Monogr. International Dairy Federation Special Issue = Int Dairy F International Dairy Federation Special Issue = Int. Dairy F. International Dairy Journal = Int Dairy J International Dairy Journal = Int. Dairy J. International Database Engineering and Applications Symposium - Proceedings = Int Database Eng App International Database Engineering and Applications Symposium - Proceedings = Int. Database Eng. App. International DATA Series, Selected Data on Mixtures, Series A = Int. DATA Ser., Sel. Data Mixtures, Ser. A International DATA Series, Selected Data on Mixtures, Series A: Thermodynamic Properties of Non-Reacting Binary Systems of Organic Substances = Int. DATA Ser., Sel. Data Mixtures, Ser. A International Democracy Assistance for Peacebuilding: Cambodia and Beyond = Rethink Peace Confl International Democracy Assistance for Peacebuilding: Cambodia and Beyond = Rethink. Peace. Confl. International demographics = Int Demogr International dental journal = Int Dent J International Dental Journal=Int Dent J;; International Dental Journal = Int Dent J International Dental Journal = Int. Dent. J. International Desalination & Water Reuse Quarterly = Int. Desalin. Water Reuse Q. International Development Planning Review = Int Dev Plann Rev International Development Planning Review = Int. Dev. Plann. Rev. International development review = Int Dev Rev International Development Review = Int Dev Rev International Development Review = Int. Dev. Rev. International digest of health legislation = Int Dig Health Legis International Digest of Health Legislation = Int. Dig. Health Legis. International disability studies = Int Disabil Stud International Disability Studies = Int. Disabil. Stud. International drug therapy newsletter = Int Drug Ther Newsl International E-conference On Computer Science 2005 = Lect Ser Computer Co International E-conference On Computer Science 2005 = Lect. Ser. Computer Co. International Economic Actors and Human Rights = Routl Res Int Law International Economic Actors and Human Rights = Routl. Res. Int. Law. International Economic Association Series = Int Econ Assoc Serie International Economic Association Series = Int. Econ. Assoc. Serie. International Economic Development Law Series = Int Econ Dev Law Ser International Economic Development Law Series = Int. Econ. Dev. Law Ser. International economic insights = Int Econ Insights International Economic Insights=Int. Econ. Insights International Economic Integration in Historical Perspective = Routl Explor Econ Hi International Economic Integration in Historical Perspective = Routl. Explor. Econ. Hi. International economic journal = Int Econ J International Economic Journal=Int. Econ. J. International Economic Review=Int. Econ. Rev. International Economic Review = Int Econ Rev International Economic Review = Int. Econ. Rev. International Economic Review = Internat. Econom. Rev. International Economics=Int. Econ. International Economy=Int. Economy Internationale Elektronische Rundschau = Int Elektron Rundsch Internationale Elektronische Rundschau = Int. Elektron. Rundsch. Internationale Forschungen Zur Allgemeinen Und Vergleichenden Literaturwissenschaft = Int For Lit Internationale Forschungen Zur Allgemeinen Und Vergleichenden Literaturwissenschaft = Int. For. Lit. Internationale Forschungen Zur Allgemeinen Und Vergleichenden Literaturwissenschaft = Int Forsch Allg Vgl Internationale Forschungen Zur Allgemeinen Und Vergleichenden Literaturwissenschaft = Int. Forsch. Allg. Vgl. International Electron Devices Meeting = Int El Devices Meet International Electron Devices Meeting = Int. El. Devices Meet. International Electronic Conference On Computer Science = Aip Conf Proc International Electronic Conference On Computer Science = Aip. Conf. Proc. Internationale Marktwirtschaft = Int Marktwirtsch Internationale Marktwirtschaft = Int. Marktwirtsch. Internationale Mitteilungen für Bodenkunde = Int. Mitt. Bodenkd. International endodontic journal = Int Endod J International Endodontic Journal = Int Endod J International Endodontic Journal = Int. Endod. J. International Energy and Resources Law and Policy Series = Int Energ Resour Law International Energy and Resources Law and Policy Series = Int. Energ. Resour. Law International Engineering Conference, Books 1-3 = P Tech As P International Engineering Conference, Books 1-3 = P. Tech. As. P. International Entrepreneurship = Adv Entrep Firm Emer International Entrepreneurship = Adv. Entrep. Firm. Emer. International Entrepreneurship in Small and Medium Size Enterprises: Orientation, Environment and Strategy = Mcgill Int Entrepr S International Entrepreneurship in Small and Medium Size Enterprises: Orientation, Environment and Strategy = Mcgill. Int. Entrepr. S. International Environmental Affairs = Int Environ Affair International Environmental Affairs = Int. Environ. Affair. International Environmental Agreements-politics Law and Economics = Int Environ Agreem-p International Environmental Agreements-politics Law and Economics = Int. Environ. Agreem-p. International Environmental Law and Policy Series = Int Env Law International Environmental Law and Policy Series = Int. Env. Law Internationale Politik = Int Politik Internationale Politik = Int. Politik Internationale Revue der Gesamten Hydrobiologie = Int. Rev. Gesamten Hydrobiol. Internationale Revue Der Gesamten Hydrobiologie = Int Rev Ges Hydrobio Internationale Revue Der Gesamten Hydrobiologie = Int. Rev. Ges. Hydrobio. International Erosion Control Association - Proceedings of Conference 28 = Ieca P Conf International Erosion Control Association - Proceedings of Conference 28 = Ieca. P. Conf. International Erosion Control Association - Proceedings of Conference 30 = Ieca P Conf International Erosion Control Association - Proceedings of Conference 30 = Ieca. P. Conf. International Erosion Control Association - Proceedings of Conference = Ieca P Conf International Erosion Control Association - Proceedings of Conference = Ieca. P. Conf. Internationales Archiv fur Arbeitsmedizin = Int Arch Arbeitsmed Internationales Archiv fur Arbeitsmedizin = Int. Arch. Arbeitsmed. Internationales Archiv Fur Arbeitsmedizin = Int Arch Arbeitsmed Internationales Archiv Fur Arbeitsmedizin = Int. Arch. Arbeitsmed. Internationales Archiv fur Gewerbepathologie und Gewerbehygiene = Int Arch Gewerbepathol Gewerbehyg Internationales Archiv Fur Sozialgeschichte Der Deutschen Literatur = Int Arch Sozialgesch Internationales Archiv Fur Sozialgeschichte Der Deutschen Literatur = Int. Arch. Sozialgesch. Internationales Asienforum = Int Asianforum Internationales Asienforum = Int Asienforum Internationales Asienforum = Int. Asienforum Internationales Insolvenzrecht = Schr Deut Eur Int In Internationales Insolvenzrecht = Schr. Deut. Eur. Int. In. Internationales Jahrbuch Des Deutschen Idealismus (2003) = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus (2003) = Int. Jahrb. Deut. Ideal. Internationales Jahrbuch Des Deutschen Idealismus (2004) = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus (2004) = Int. Jahrb. Deut. Ideal. Internationales Jahrbuch Des Deutschen Idealismus (2006) = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus (2006) = Int. Jahrb. Deut. Ideal. Internationales Jahrbuch Des Deutschen Idealismus (2007) = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus (2007) = Int. Jahrb. Deut. Ideal. Internationales Jahrbuch Des Deutschen Idealismus (2008) = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus (2008) = Int. Jahrb. Deut. Ideal. Internationales Jahrbuch Des Deutschen Idealismus = Int Jahrb Deut Ideal Internationales Jahrbuch Des Deutschen Idealismus = Int. Jahrb. Deut. Ideal. Internationale spectator = Int Spect Internationales Wirtschaftsrecht = Degruyter Lehrb Internationales Wirtschaftsrecht = Degruyter. Lehrb. Internationale Tagungen in Mikulcice = Int Tagung Mikulcice Internationale Tagungen in Mikulcice = Int. Tagung. Mikulcice Internationale Vereinigung Fur Theoretische Und Angewandte Limnologie Mitteilungen = Int Ver The Internationale Vereinigung Fur Theoretische Und Angewandte Limnologie Mitteilungen = Int. Ver. The. Internationale Vorgaben Zum Kulturguterschutz Und Ihre Umsetzung in Deutschland = Schrift Kulturgut Internationale Vorgaben Zum Kulturguterschutz Und Ihre Umsetzung in Deutschland = Schrift. Kulturgut. Internationale Zeitschriftenschau für Bibelwissenschaft und Grenzgebiete = IntZSchauBibelWiss Internationale Zeitschrift fur angewandte Physiologie, einschliesslich Arbeitsphysiologie = Int Z Angew Physiol Internationale Zeitschrift fur Angewandte Physiologie Einschliesslich Arbeitsphysiologie = Int. Z. Angew. Physiol. Internationale Zeitschrift Fur Arztliche Psychoanalyse = Int Z Arztl Psychoan Internationale Zeitschrift Fur Arztliche Psychoanalyse = Int. Z. Arztl. Psychoan. Internationale Zeitschrift fur klinische Pharmakologie, Therapie, und Toxikologie. International journal of clinical pharmacology, therapy, and toxicology = Int Z Klin Pharmakol Ther Toxikol Internationale Zeitschrift fur Klinische Pharmakologie, Therapie und Toxikologie = Int. Z. Klin. Pharmakol. Ther. Toxikol. Internationale Zeitschrift fur physikalische Medizin und Rehabilitation, mit Zentralblatt fur die gesamte Rehabilitation = Int Z Phys Med Rehabil Internationale Zeitschrift Fur Psychoanalyse = Int Z Psychoanal Internationale Zeitschrift Fur Psychoanalyse = Int. Z. Psychoanal. Internationale Zeitschrift Fur Psychoanalyse Und Imago = Int Z Psychoanal Ima Internationale Zeitschrift Fur Psychoanalyse Und Imago = Int. Z. Psychoanal. Ima. Internationale Zeitschrift fur Vitaminforschung. Beiheft = Int Z Vitaminforsch Beih Internationale Zeitschrift fur Vitaminforschung (International Journal of Vitamin Research) = Int. Z. Vitaminforsch. Internationale Zeitschrift fur Vitaminforschung. International journal of vitamin research. Journal international de vitaminologie = Int Z Vitaminforsch Internationale Zeitschrift fur Vitamin- und Ernahrungsforschung. Beiheft = Int Z Vitam Ernahrungsforsch Beih Internationale Zeitschrift fur Vitamin- und Ernahrungsforschung. Beiheft = Int. Z. Vitam. Ernahrungsforsch. Beih. Internationale Zeitschrift Vitaminforschung = Int Z Vitaminforsch Internationale Zeitschrift Vitaminforschung = Int. Z. Vitaminforsch. Internationale Zetischrift Fur Angewandte Physiologie Einschliesslich Arbeitsphysiologie = Int Z Angew Physiol Internationale Zetischrift Fur Angewandte Physiologie Einschliesslich Arbeitsphysiologie = Int. Z. Angew. Physiol. International family planning digest = Int Fam Plann Dig International Family Planning Digest = Int. Fam. Plann. Dig. International family planning perspectives and digest = Int Fam Plann Persp International Family Planning Perspectives = Int Fam Plan Perspec International Family Planning Perspectives = Int. Fam. Plan. Perspec. International family planning perspectives = Int Fam Plan Perspect International Fatigue Series - Ifs = Int Fatig Ser International Fatigue Series - Ifs = Int. Fatig. Ser. International Federation for Information Processing = Int Fed Info Proc International Federation for Information Processing = Int. Fed. Info. Proc. International Feminist Journal of Politics = Int Fem J Polit International Feminist Journal of Politics = Int. Fem. J. Polit. International Fiber Science and Technology = Int Fiber Sci Techno International Fiber Science and Technology = Int. Fiber Sci. Techno. International Fiction Review = Int Fiction Rev International Fiction Review = Int. Fiction Rev. International Finance in Emerging Markets: Issues, Welfare Economics Analyses and Policy Implications = Contrib Econ International Finance in Emerging Markets: Issues, Welfare Economics Analyses and Policy Implications = Contrib. Econ. International Finance = Int Financ International Finance = Int. Financ. International Finance=Int. Finance International Finance Review = Int Finance Review International Finance Review = Int. Finance Review International Finance Review = Int Financ Rev International Finance Review = Int. Financ. Rev. International Forensic Science and Investigation = Int Forensic Sci Inv International Forensic Science and Investigation = Int. Forensic Sci. Inv. International Forest Fire News = Int. For. Fire News International Forestry Review = Int Forest Rev International Forestry Review = Int. Forest. Rev. International Forestry Review = Int For Rev International Forestry Review = Int. For. Rev. International Forum On Information and Documentation = Int Forum Inform Doc International Forum On Information and Documentation = Int. Forum Inform. Doc. International Game Theory Review=Int. Game Theory Rev. International Gas Engineering and Management = Int Gas Eng Manage International Gas Engineering and Management = Int. Gas Eng. Manage. International Geological Correlation Programme = Int Geol C International Geological Correlation Programme = Int. Geol. C. International Geology Review = Int Geol Rev International Geology Review = Int. Geol. Rev. International Governance On Environmental Issues = Environ Policy International Governance On Environmental Issues = Environ. Policy. International Handbook of Adult Mortality = Int Handb Popul International Handbook of Adult Mortality = Int. Handb. Popul. International Handbook of Education for Spirituality, Care and Wellbeing, Pts One and Two = Int Handb Relig Educ International Handbook of Education for Spirituality, Care and Wellbeing, Pts One and Two = Int. Handb. Relig. Educ. International Handbook of Education for The Changing World of Work: Bridging Academic and Vocational Learning , Vols 1-6 = Int Lib Tech Vocat E International Handbook of Education for The Changing World of Work: Bridging Academic and Vocational Learning , Vols 1-6 = Int. Lib. Tech. Vocat. E. International Handbook of Public Procurement = Public Adm Public Po International Handbook of Public Procurement = Public Adm. Public Po. International Handbook Series On Entrepreneurship = Int Handb Ser Entrep International Handbook Series On Entrepreneurship = Int. Handb. Ser. Entrep. International Handbooks of Population = Int Handb Popul International Handbooks of Population = Int. Handb. Popul. International Handbooks of Religion and Education = Int Handb Relig Educ International Handbooks of Religion and Education = Int. Handb. Relig. Educ. International Handbooks On Information Systems = Int Handb Inform Sys International Handbooks On Information Systems = Int. Handb. Inform. Sys. International Health And Development = Int Health Dev International Health Care Management = Adv Health Care Mana International Health Care Management = Adv. Health Care Mana. International Health = Hum Res Dev International Health = Hum. Res. Dev. International health news / National Council for International Health = Int Health News International heart journal = Int Heart J International Heart Journal = Int Heart J International Heart Journal = Int. Heart J. International Heart Journal = Int. Heart. J. International Heavy Minerals Conference 2001, Proceedings = Australas I Min Met International Heavy Minerals Conference 2001, Proceedings = Australas. I. Min. Met. International Hepatology Communications = Int Hepatol Commun International Hepatology Communications = Int. Hepatol. Commun. International history of nursing journal : IHNJ = Int Hist Nurs J International History Review = Int Hist Rev International History Review = Int. Hist. Rev. International Human Resource Management in Chinese Multinationals = Routl Contemp China International Human Resource Management in Chinese Multinationals = Routl. Contemp. China. International Human Rights Law: An Introduction = Pa Stud Hum Rights International Human Rights Law: An Introduction = Pa. Stud. Hum. Rights International Hydrographic Review = Int Hydrogr Rev International Hydrographic Review = Int. Hydrogr. Rev. International Ieee Embs Conference On Neural Engineering = I Ieee Embs C Neur E International Ieee Embs Conference On Neural Engineering = I. Ieee Embs C. Neur. E. International immunology = Int Immunol International Immunology=Int Immunol;; International Immunology = Int Immunol International Immunology = Int. Immunol. International immunopharmacology = Int Immunopharmacol International Immunopharmacology = Int Immunopharmacol International Immunopharmacology = Int. Immunopharmacol. International Information & Library Review = Int Inf Libr Rev International Information & Library Review = Int. Inf. Libr. Rev. International Insolvency Review = Int Insolv Rev International Insolvency Review = Int. Insolv. Rev. International Institute for Labour Studies - Research Series = Int Lab Res International Institute for Labour Studies - Research Series = Int. Lab. Res. International Institute for Strategic Studies Conference Papers = Int Inst St International Institute for Strategic Studies Conference Papers = Int. Inst. St. International Institute of Administrative Sciences Monographs = Int I Adm Sci Monogr International Institute of Administrative Sciences Monographs = Int. I. Adm. Sci. Monogr. International Institute of Administrative Sciences Monographs = Int Inst Adm Sci Mg International Institute of Administrative Sciences Monographs = Int. Inst. Adm. Sci. Mg. International Institutions and Asian Development = Pac Trad Dev Conf S International Institutions and Asian Development = Pac. Trad. Dev. Conf. S. International Institutions and Global Governance = Int I Glob Gov International Institutions and Global Governance = Int. I. Glob. Gov. International Institutions and Global Governance = Intl Inst Global Gov International Institutions and Global Governance = Intl. Inst. Global Gov. International Institutions and Multinational Enterprises: Global Players-global Markets = Intl Inst Global Gov International Institutions and Multinational Enterprises: Global Players-global Markets = Intl. Inst. Global Gov. International Interactions = Int Interact International Interactions = Int. Interact. International Interdisciplinary Symposium in Honour of Giampietro Puppi = Conf P Ital International Interdisciplinary Symposium in Honour of Giampietro Puppi = Conf. P. Ital. International Investment Law and Eu Law = Eur Yearb Int Econ L International Investment Law and Eu Law = Eur. Yearb. Int. Econ. L. International Investments and Protection of The Environment = Pca Peace Palace Pap International Investments and Protection of The Environment = Pca. Peace. Palace. Pap. Internationalisation of Competition Rules = Routl Res Compet Law Internationalisation of Competition Rules = Routl. Res. Compet. Law. Internationalization, Design and Global Development, Proceedings = Lect Notes Comput Sc Internationalization, Design and Global Development, Proceedings = Lect. Notes. Comput. Sc. Internationalization: Firm Strategies and Management = Acad Int Bus Ser Internationalization: Firm Strategies and Management = Acad. Int. Bus. Ser. Internationalization: Firm Strategies and Management = Acad Int Bus Series Internationalization: Firm Strategies and Management = Acad. Int. Bus. Series. Internationalization of Accounting and Its Implications On European Accounting Law = Pap Eur Int Retail B Internationalization of Accounting and Its Implications On European Accounting Law = Pap. Eur. Int. Retail. B. Internationalization of Equity Markets = Nat Bur Ec Internationalization of Equity Markets = Nat. Bur. Ec. Internationalization of Japan = Sheff Ctr J Internationalization of Japan = Sheff. Ctr. J. Internationalization of Law and Legal Education = Ius Gentium-comp Per Internationalization of Law and Legal Education = Ius. Gentium-comp. Per. Internationalization of Small Firms = Routl Stud Small Bus Internationalization of Small Firms = Routl. Stud. Small Bus. Internationalizing Higher Education: Critical Explorations of Pedagogy and Policy = Cerc Stud Comp Educ Internationalizing Higher Education: Critical Explorations of Pedagogy and Policy = Cerc. Stud. Comp. Educ. Internationalizing Media Studies = Int Media Stud Internationalizing Media Studies = Int. Media Stud. Internationalizing Media Studies = Int Media Stud Ser Internationalizing Media Studies = Int. Media Stud. Ser. Internationalizing Media Studies Series = Int Media Stud Ser Internationalizing Media Studies Series = Int. Media Stud. Ser. Internationalizing The Internet: The Co-evolution of Influence and Technology = New Horiz Econ Innov Internationalizing The Internet: The Co-evolution of Influence and Technology = New. Horiz. Econ. Innov. International Joint Conference On Artificial Intelligence = Int Joint Conf Artif International Joint Conference On Artificial Intelligence = Int. Joint Conf. Artif. International Journal for Computational Methods in Engineering Science and Mechanics = Int. J. Comput. Methods Eng. Sci Mech. International Journal for Computational Methods in Engineering Science and Mechanics = Int. J. Comput. Methods Eng. Sci. Mech. International Journal for Educational and Vocational Guidance = Int J Educ Vocat Gui International Journal for Educational and Vocational Guidance = Int. J. Educ. Vocat. Gui. International Journal for Engineering Modelling = Int. J. Eng. Model. International journal for equity in health = Int J Equity Health International Journal for Equity in Health = Int J Equity Health International Journal for Equity in Health = Int. J. Equity Health International Journal for Housing Science and Its Applications = Int J Housing Sci International Journal for Housing Science and Its Applications = Int. J. Housing Sci. International Journal for Housing Science and Its Applications = Int. J. Hous. Sci. Appl. International Journal for Multiscale Computational Engineering = Int J Multiscale Com International Journal for Multiscale Computational Engineering = Int. J. Multiscale Com. International Journal for Multiscale Computational Engineering = Int. J. Multiscale Comput. Eng. International Journal for Numerical and Analytical Methods in Geomechanics = Int J Numer Anal Met International Journal for Numerical and Analytical Methods in Geomechanics = Int. J. Numer. Anal. Met. International Journal for Numerical and Analytical Methods in Geomechanics = Int. J. Numer. Anal. Methods Geomech. International Journal for Numerical Methods in Biomedical Engineering = Int J Numer Meth Bio International Journal for Numerical Methods in Biomedical Engineering = Int. J. Numer. Meth. Bio. International Journal for Numerical Methods in Engineering = Internat. J. Numer. Methods Engrg. International Journal for Numerical Methods in Engineering = Int J Numer Meth Eng International Journal for Numerical Methods in Engineering = Int. J. Numer. Meth. Eng. International journal for numerical methods in engineering = Int J Numer Methods Eng International Journal for Numerical Methods in Engineering = Int. J. Numer. Methods Eng. International Journal for Numerical Methods in Fluids = Internat. J. Numer. Methods Fluids International Journal for Numerical Methods in Fluids = Int J Numer Meth Fl International Journal for Numerical Methods in Fluids = Int. J. Numer. Meth. Fl. International Journal for Numerical Methods in Fluids = Int. J. Numer. Methods Fluids International journal for parasitology = Int J Parasitol International Journal for Parasitology = Int J Parasitol International Journal for Parasitology = Int. J. Parasitol. International Journal For Parasitology=Int J Parasitol;; International Journal for Philosophy of Religion = Int J Philos Relig International Journal for Philosophy of Religion = Int. J. Philos. Relig. International Journal for Quality in Health Care = Int J Qual Health C International Journal for Quality in Health Care = Int. J. Qual. Health C. International Journal for Quality in Health Care = Int. J. Qual. Health Care International Journal For Quality In Health Care=Int J Qual Health Care;; International journal for quality in health care : journal of the International Society for Quality in Health Care / ISQua = Int J Qual Health Care International Journal for Radiation Physics and Chemistry = Int J Radiat Phys Ch International Journal for Radiation Physics and Chemistry = Int. J. Radiat. Phys. Ch. International Journal for Radiation Physics and Chemistry = Int. J. Radiat. Phys. Chem. International Journal for Simulation and Multidisciplinary Design Optimization = Int. J. Simul. Multi. Design Optim. International journal for the advancement of counseling = Int J Adv Couns International Journal for The Advancement of Counselling = Int J Adv Couns International Journal for The Advancement of Counselling = Int. J. Adv. Couns. International Journal for The Psychology of Religion = Int J Psychol Relig International Journal for The Psychology of Religion = Int. J. Psychol. Relig. International Journal for The Semiotics of Law-revue Internationale De Semiotique Juridique = Int J Semiotic Law International Journal for The Semiotics of Law-revue Internationale De Semiotique Juridique = Int. J. Semiotic. Law. International Journal for The Study of Animal Problems = Int J Stud Anim Prob International Journal for The Study of Animal Problems = Int. J. Stud. Anim. Prob. International journal for the study of animal problems = Int J Study Anim Probl International journal for vitamin and nutrition research. Internationale Zeitschrift fur Vitamin- und Ernahrungsforschung. Journal international de vitaminologie et de nutrition = Int J Vitam Nutr Res International Journal for Vitamin and Nutrition Research = Int J Vitam Nutr Res International Journal for Vitamin and Nutrition Research = Int. J. Vitam. Nutr. Res. International Journal For Vitamin and Nutrition Research=Int J Vitam Nutr Res;; International Journal for Vitamin and Nutrition Research. Supplement = Int. J. Vitam. Nutr. Res. Suppl. International Journal For Vitamin and Nutrition Research. Supplement=Int J Vitam Nutr Res Suppl;; International Journal = Int J International Journal = Int. J. International Journal of Abrasive Technology = Int. J. Abras. Technol. International Journal of Acarology = Int J Acarol International Journal of Acarology = Int. J. Acarol. International Journal of Acoustics and Vibrations = Int. J. Acoust. Vibr. International Journal of Adaptive Control and Signal Processing = Internat. J. Adapt. Control Signal Process. International Journal of Adaptive Control and Signal Processing = Int J Adapt Control International Journal of Adaptive Control and Signal Processing = Int. J. Adapt. Control International Journal of Adaptive Control and Signal Processing = Int. J. Adapt Control Signal Process. International Journal of Adhesion and Adhesives = Int J Adhes Adhes International Journal of Adhesion and Adhesives = Int. J. Adhes. Adhes. International Journal of Ad Hoc and Ubiquitous Computing = Int J Ad Hoc Ubiq Co International Journal of Ad Hoc and Ubiquitous Computing = Int. J. Ad Hoc Ubiq. Co. International Journal of Ad Hoc and Ubiquitous Computing = Int. J. Ad Hoc Ubiquitous Comput. International journal of adolescence and youth = Int J Adolesc Youth International journal of adolescent medicine and health = Int J Adolesc Med Health International Journal of Adult Orthodontics and Orthognathic Surgery = Int. J. Adult Orthodon. Orthognath. Surg. International Journal of Advanced Manufacturing Technology = Int J Adv Manuf Tech International Journal of Advanced Manufacturing Technology = Int. J. Adv. Manuf. Tech. International Journal of Advanced Manufacturing Technology = Int. J. Adv. Manuf. Technol. International Journal of Advanced Robotic Systems = Int J Adv Robot Syst International Journal of Advanced Robotic Systems = Int. J. Adv. Robot. Syst. International Journal of Advanced Robotic Systems = Int. J. Adv. Rob. Syst. International Journal of Advertising = Int J Advert International Journal of Advertising = Int. J. Advert. International Journal of Aeroacoustics = Int J Aeroacoust International Journal of Aeroacoustics = Int. J. Aeroacoust. International Journal of Aerodynamics = Int. J. Aerodyn. International Journal of African Historical Studies = Int J Afr Hist Stud International Journal of African Historical Studies = Int. J. Afr. Hist. Stud. International Journal of Agent-Oriented Software Engineering = Int. J. Agent-Oriented Softw. Eng. International Journal of Agile Manufacturing = Int. J. Agile Manuf. International Journal of Aging and Human Development=Int J Aging Hum Dev;; International Journal of Aging and Human Development = Int. J. Aging Hum. Dev. International journal of aging & human development = Int J Aging Hum Dev International Journal of Aging & Human Development = Int J Aging Hum Dev International Journal of Aging & Human Development = Int. J. Aging Hum. Dev. International Journal of Agrarian Affairs = Int J Agrar Aff International Journal of Agrarian Affairs = Int. J. Agrar. Aff. International Journal of Agricultural and Statistical Sciences = Int J Agric Stat Sci International Journal of Agricultural and Statistical Sciences = Int. J. Agric. Stat. Sci. International Journal of Agricultural Sustainability = Int J Agr Sustain International Journal of Agricultural Sustainability = Int. J. Agr. Sustain. International Journal of Agriculture and Biology = Int J Agric Biol International Journal of Agriculture and Biology = Int. J. Agric. Biol. International Journal of Air and Water Pollution = Int J Air Water Poll International Journal of Air and Water Pollution = Int. J. Air Water Poll. International journal of air and water pollution = Int J Air Water Pollut International Journal of Air and Water Pollution = Int. J. Air Water Pollut. International journal of air pollution = Int J Air Pollut International Journal of Air Pollution = Int J Air Water Poll International Journal of Air Pollution = Int. J. Air Water. Poll. International Journal of Algebra and Computation = Internat. J. Algebra Comput. International Journal of Algebra and Computation = Int J Algebr Comput International Journal of Algebra and Computation = Int. J. Algebr. Comput. International Journal of Alternative Propulsion = Int. J. Altern. Propul. International Journal of Ambient Energy = Int. J. Ambient Energy International Journal of American Linguistics = Int J Am Linguist International Journal of American Linguistics = Int. J. Am. Linguist. International journal of andrology = Int J Androl International Journal of Andrology=Int J Androl;; International Journal of Andrology = Int J Androl International Journal of Andrology = Int. J. Androl. International journal of anesthesia = Int J Anesth International Journal of Antennas and Propagation = Int J Antenn Propag International Journal of Antennas and Propagation = Int. J. Antenn. Propag. International journal of anthropology = Int J Anthropol International Journal of Antimicrobial Agents = Int J Antimicrob Ag International Journal of Antimicrobial Agents = Int. J. Antimicrob. Ag. International journal of antimicrobial agents = Int J Antimicrob Agents International Journal of Antimicrobial Agents = Int. J. Antimicrob. Agents International Journal of Applied Ceramic Technology = Int J Appl Ceram Tec International Journal of Applied Ceramic Technology = Int. J. Appl. Ceram. Tec. International Journal of Applied Ceramic Technology = Int. J. Appl. Ceram. Technol. International Journal of Applied Chemistry = Int. J. Appl. Chem. International Journal of Applied Earth Observation and Geoinformation = Int J Appl Earth Obs International Journal of Applied Earth Observation and Geoinformation = Int. J. Appl. Earth Obs. International Journal of Applied Earth Observation and Geoinformation = Int. J. Appl. Earth Obs. Geoinf. International Journal of Applied Economics and Econometrics=Int. J. Appl. Econ. Econometrics International Journal of Applied Electromagnetics and Mechanics = Int J Appl Electrom International Journal of Applied Electromagnetics and Mechanics = Int. J. Appl. Electrom. International Journal of Applied Electromagnetics and Mechanics = Int. J. Appl. Electromagnet Mech International Journal of Applied Electromagnetics in Materials = Int J Appl Elect Mat International Journal of Applied Electromagnetics in Materials = Int. J. Appl. Elect. Mat. International Journal of Applied Glass Science = Int. J. Appl. Glass Sci. International Journal of Applied Mathematics and Computer Science = Int J Ap Mat Com-pol International Journal of Applied Mathematics and Computer Science = Int. J. Ap. Mat. Com-pol. International Journal of Applied Mathematics and Computer Science = Int J Appl Math Comp International Journal of Applied Mathematics and Computer Science = Int. J. Appl. Math. Comp. International Journal of Applied Mathematics and Computer Science = Int. J. Appl. Math. Comput. Sci. International Journal of Applied Mathematics = Int. J. Appl. Math. International Journal of Applied Mechanics = Int J Appl Mech International Journal of Applied Mechanics = Int. J. Appl. Mech. International Journal of Applied Radiation and Isotopes = Int J Appl Radiat Is International Journal of Applied Radiation and Isotopes = Int. J. Appl. Radiat. Is. International Journal of Applied Radiation and Isotopes = Int. J. Appl. Radiat. Isot. International Journal of Applied Research in Veterinary Medicine = Int J Appl Res Vet M International Journal of Applied Research in Veterinary Medicine = Int. J. Appl. Res. Vet. M. International Journal of Applied Science and Computations = Internat. J. Appl. Sci. Comput. International Journal of Applied Systemic Studies = Int. J. Appl. Syst. Stud. International Journal of Approximate Reasoning = Internat. J. Approx. Reason. International Journal of Approximate Reasoning = Int. J. Approximate Reasoning International Journal of Approximate Reasoning = Int J Approx Reason International Journal of Approximate Reasoning = Int. J. Approx. Reason. International Journal of Architectural Heritage = Int J Archit Herit International Journal of Architectural Heritage = Int. J. Archit. Herit. International Journal of Aromatherapy = Int. J. Aromather. International Journal of Art & Design Education = Int J Art Des Educ International Journal of Art & Design Education = Int. J. Art Des. Educ. International Journal of Artificial Organs=Int J Artif Organs;; International Journal of Artificial Organs = Int J Artif Organs International Journal of Artificial Organs = Int. J. Artif. Organs International Journal of Astrobiology = Int J Astrobiol International Journal of Astrobiology = Int. J. Astrobiol. International Journal of Athletic Therapy & Training = Int J Athl Ther Trai International Journal of Athletic Therapy & Training = Int. J. Athl. Ther. Trai. International journal of audiology = Int J Audiol International Journal of Audiology = Int J Audiol International Journal of Audiology = Int. J. Audiol. International Journal of Automation and Computing = Int. J. Autom. Comput. International Journal of Automation and Control = Int. J. Autom. Control International Journal of Automotive Technology and Management = Int. J. Automot. Technol. Manage. International Journal of Automotive Technology = Int J Automot Techn International Journal of Automotive Technology = Int. J. Automot. Techn. International Journal of Automotive Technology = Int. J. Automot. Technol. International Journal of Automotive Technology = Int J Auto Tech-kor International Journal of Automotive Technology = Int. J. Auto. Tech-kor. International Journal of Automotive Technology = Int J Auto Tech Kor International Journal of Automotive Technology = Int. J. Auto. Tech. Kor. International Journal of Aviation Psychology = Int J Aviat Psychol International Journal of Aviation Psychology = Int. J. Aviat. Psychol. International journal of behavioral development = Int J Behav Dev International Journal of Behavioral Development = Int J Behav Dev International Journal of Behavioral Development = Int. J. Behav. Dev. International journal of behavioral medicine = Int J Behav Med International Journal of Behavioral Medicine = Int J Behav Med International Journal of Behavioral Medicine = Int. J. Behav. Med. International Journal of Behavioral Nutrition and Physical Activity = Int J Behav Nutr Phy International Journal of Behavioral Nutrition and Physical Activity = Int. J. Behav. Nutr. Phy. International Journal of Bifurcation and Chaos in Applied Sciences and Engineering = Internat. J. Bifur. Chaos Appl. Sci. Engrg. International journal of bifurcation and chaos in applied sciences and engineering = Int J Bifurcat Chaos International Journal of Bifurcation and Chaos in Applied Sciences and Engineering = Int. J. Bifurcation Chaos Appl. Sci. Eng. International Journal of Bifurcation and Chaos = Int J Bifurcat Chaos International Journal of Bifurcation and Chaos = Int. J. Bifurcat. Chaos International Journal of Bifurcation and Chaos = Int. J. Bifurcation Chaos International Journal of Bilingual Education and Bilingualism = Int J Biling Educ Bi International Journal of Bilingual Education and Bilingualism = Int. J. Biling. Educ. Bi. International Journal of Bilingualism = Int J Bilingual International Journal of Bilingualism = Int. J. Bilingual. International Journal of BioChemiPhysics = Int. J. BioChemiPhysics International Journal of Biochemistry and Cell Biology=Int J Biochem Cell Biol;; International Journal of Biochemistry and Cell Biology = Int. J. Biochem. Cell Biol. International Journal of Biochemistry & Cell Biology = Int J Biochem Cell B International Journal of Biochemistry & Cell Biology = Int. J. Biochem. Cell B. International Journal of Biochemistry & Cell Biology = Int. J. Biochem. Cell Biol. International Journal of Biochemistry = Int J Biochem International Journal of Biochemistry = Int. J. Biochem. International Journal of Biochromatography = Int. J. Bio-Chromatogr. International Journal of Bioclimatology and Biometeorology = Int. J. Bioclimatol. Biometeorol. International Journal of Biodiversity Science & Management = Int. J. Biodivers. Sci. Manage. International Journal of Bioinformatics Research and Applications = Int. J. Bioinf. Res. Appl. International Journal of Biological Chemistry = Int. J. Biol. Chem. International journal of biological macromolecules = Int J Biol Macromol International Journal of Biological Macromolecules=Int J Biol Macromol;; International Journal of Biological Macromolecules = Int J Biol Macromol International Journal of Biological Macromolecules = Int. J. Biol. Macromol. International Journal of Biological Markers = Int J Biol Marker International Journal of Biological Markers = Int. J. Biol. Marker. International Journal of Biological Markers=Int J Biol Markers;; International Journal of Biological Markers = Int. J. Biol. Markers International Journal of Biological Research in Pregnancy = Int J Biol Res Preg International Journal of Biological Research in Pregnancy = Int. J. Biol. Res. Preg. International journal of biological research in pregnancy = Int J Biol Res Pregnancy International Journal of Biological Research in Pregnancy = Int. J. Biol. Res. Pregnancy International journal of biological sciences = Int J Biol Sci International Journal of Biological Sciences = Int J Biol Sci International Journal of Biological Sciences = Int. J. Biol. Sci. International Journal of Biology and Biotechnology = Int. J. Biol. Biotech. International Journal of Biomathematics = Int J Biomath International Journal of Biomathematics = Int. J. Biomath. International journal of bio-medical computing = Int J Biomed Comput International Journal of Bio-medical Computing = Int J Biomed Comput International Journal of Bio-medical Computing = Int. J. Biomed. Comput. International Journal of Bio-Medical Computing = Int. J. Biomed. Comput. International Journal of Bio-Medical Computing = Int. J. Bio-Med. Comput. International Journal of Biomedical Engineering and Technology = Int. J. Biomed. Eng. Technol. International Journal of Biomedical Engineering = Int. J. Biomed. Eng. International journal of biomedical imaging = Int J Biomed Imaging International Journal of Biomedical Imaging = Int. J. Biomed. Imaging International Journal of Biomedical Sciences = Int. J. Biomed. Sci. International Journal of Biometeorologie = Int. J. Biometeorol. International journal of biometeorology = Int J Biometeorol International Journal of Biometeorology=Int J Biometeorol;; International Journal of Biometeorology = Int J Biometeorol International Journal of Biometeorology = Int. J. Biometeorol. International Journal of Biostatistics = Int J Biostat International Journal of Biostatistics = Int. J. Biostat. International Journal of Biotechnology = Int. J. Biotechnol. International journal of body composition research = Int J Body Compos Res International Journal of Business=Int. J. Bus. International Journal of Cancer=Int J Cancer;; International Journal of Cancer = Int J Cancer International Journal of Cancer = Int. J. Cancer International journal of cancer. Journal international du cancer = Int J Cancer International Journal of Cancer. Supplement=Int J Cancer Suppl;; International Journal of Cancer. Supplement = Int. J. Cancer. Suppl. International Journal of Cardiac Imaging = Int J Cardiac Imag International Journal of Cardiac Imaging = Int. J. Cardiac Imag. International journal of cardiac imaging = Int J Card Imaging International Journal of Cardiac Imaging = Int. J. Card. Imaging International Journal of Cardiac IMAging=Int J Card Imaging;; International journal of cardiology = Int J Cardiol International Journal of Cardiology=Int J Cardiol;; International Journal of Cardiology = Int J Cardiol International Journal of Cardiology = Int. J. Cardiol. International Journal of Cardiovascular Imaging = Int. J. Cardiovasc. Imaging International Journal of Cardiovascular Imaging = Int J Cardiovas Imag International Journal of Cardiovascular Imaging = Int. J. Cardiovas. Imag. International journal of cardiovascular interventions = Int J Cardiovasc Intervent International Journal of Cardiovascular Interventions = Int. J. Cardiovasc. Intervent. International Journal of Cast Metals Research = Int J Cast Metal Res International Journal of Cast Metals Research = Int. J. Cast Metal. Res. International Journal of Cast Metals Research = Int. J. Cast Met. Res. International journal of cell cloning = Int J Cell Cloning International Journal of Cell Cloning = Int J Cell Cloning International Journal of Cell Cloning = Int. J. Cell Cloning International Journal of Cement Composites and Lightweight Concrete = Int. J. Cem. Compos. Lightweight Concrete International Journal of Central Banking = Int J Cent Bank International Journal of Central Banking = Int. J. Cent. Bank. International Journal of Chemical Kinetics = Int J Chem Kinet International Journal of Chemical Kinetics = Int. J. Chem. Kinet. International Journal of Chemical Modeling = Int. J. Chem. Model. International Journal of Chemical Reactor Engineering = Int J Chem React Eng International Journal of Chemical Reactor Engineering = Int. J. Chem. React. Eng. International Journal of Chemical Reactor Engineering = Int. J. Chem. Reactor Eng. International Journal of Chemical Reactor Engineering = Int. J. Chem. Reactor Eng. ?? International Journal of Chemical Sciences = Int. J. Chem. Sc. International Journal of Chemistry = Int. J. Chem. International Journal of Child Psychotherapy = Int J Child Psychoth International Journal of Child Psychotherapy = Int. J. Child Psychoth. International journal of child psychotherapy = Int J Child Psychother International Journal of Childrens Spirituality = Int J Child Spiritua International Journal of Childrens Spirituality = Int. J. Child. Spiritua. International journal of chronobiology = Int J Chronobiol International Journal of Chronobiology = Int. J. Chronobiol. International Journal of Circuit Theory and Applications = Int J Circ Theor App International Journal of Circuit Theory and Applications = Int. J. Circ. Theor. App. International Journal of Circuit Theory and Applications = Int. J. Circuit Theory Appl. International journal of circumpolar health = Int J Circumpolar Health International Journal of Circumpolar Health=Int J Circumpolar Health;; International Journal of Circumpolar Health = Int. J. Circumpolar Health International Journal of Circumpolar Health = Int J Circumpol Heal International Journal of Circumpolar Health = Int. J. Circumpol. Heal. International Journal of Circumpolar Health. Supplement=Int J Circumpolar Health Suppl;; International Journal of Civil Engineering = Int J Civ Eng International Journal of Civil Engineering = Int. J. Civ. Eng. International Journal of Climate Change Strategies and Management = Int J Clim Chang Str International Journal of Climate Change Strategies and Management = Int. J. Clim. Chang. Str. International Journal of Climatology = Int J Climatol International Journal of Climatology = Int. J. Climatol. International Journal of Clinical and Experimental Hypnosis = Int J Clin Exp Hyp International Journal of Clinical and Experimental Hypnosis = Int. J. Clin. Exp. Hyp. International Journal of Clinical and Experimental Hypnosis=Int J Clin Exp Hypn;; International Journal of Clinical and Experimental Hypnosis = Int. J. Clin. Exp. Hypn. International Journal of Clinical and Experimental Pathology = Int J Clin Exp Patho International Journal of Clinical and Experimental Pathology = Int. J. Clin. Exp. Patho. International Journal of Clinical and Health Psychology = Int J Clin Hlth Psyc International Journal of Clinical and Health Psychology = Int. J. Clin. Hlth. Psyc. International Journal of Clinical and Laboratory Research=Int J Clin Lab Res;; International Journal of Clinical and Laboratory Research = Int. J. Clin. Lab. Res. International journal of clinical & laboratory research = Int J Clin Lab Res International Journal of Clinical & Laboratory Research = Int J Clin Lab Res International Journal of Clinical & Laboratory Research = Int. J. Clin. Lab. Res. International Journal of Clinical Monitoring and Computing = Int J Clin Monit Com International Journal of Clinical Monitoring and Computing = Int. J. Clin. Monit. Com. International journal of clinical monitoring and computing = Int J Clin Monit Comput International Journal of Clinical Monitoring and Computing = Int. J. Clin. Monit. Comput. International Journal of Clinical Neuropsychology = Int J Clin Neuropsyc International Journal of Clinical Neuropsychology = Int. J. Clin. Neuropsyc. International Journal of Clinical Oncology = Int J Clin Oncol International Journal of Clinical Oncology = Int. J. Clin. Oncol. International journal of clinical oncology / Japan Society of Clinical Oncology = Int J Clin Oncol International journal of clinical pharmacology and biopharmacy = Int J Clin Pharmacol Biopharm International Journal of Clinical Pharmacology and Biopharmacy = Int. J. Clin. Pharmacol. Biopharm. International Journal of Clinical Pharmacology and Biopharmacy = Int J Clin Pharm Bi International Journal of Clinical Pharmacology and Biopharmacy = Int. J. Clin. Pharm. Bi. International journal of clinical pharmacology and therapeutics = Int J Clin Pharmacol Ther International Journal of Clinical Pharmacology and Therapeutics=Int J Clin Pharmacol Ther;; International Journal of Clinical Pharmacology and Therapeutics = Int. J. Clin. Pharmacol. Ther. International Journal of Clinical Pharmacology and Therapeutics = Int J Clin Pharm Th International Journal of Clinical Pharmacology and Therapeutics = Int. J. Clin. Pharm. Th. International journal of clinical pharmacology research = Int J Clin Pharmacol Res International Journal of Clinical Pharmacology Research=Int J Clin Pharmacol Res;; International Journal of Clinical Pharmacology Research = Int. J. Clin. Pharmacol. Res. International Journal of Clinical Pharmacology Research = Int J Clin Pharm Res International Journal of Clinical Pharmacology Research = Int. J. Clin. Pharm. Res. International journal of clinical pharmacology, therapy and toxicology = Int J Clin Pharmacol International Journal of Clinical Pharmacology, Therapy and Toxicology = Int. J. Clin. Pharmacol. International journal of clinical pharmacology, therapy, and toxicology = Int J Clin Pharmacol Ther Toxicol International Journal of Clinical Pharmacy = Int J Clin Pharm-net International Journal of Clinical Pharmacy = Int. J. Clin. Pharm-net. International journal of clinical practice = Int J Clin Pract International Journal of Clinical Practice=Int J Clin Pract;; International Journal of Clinical Practice = Int J Clin Pract International Journal of Clinical Practice = Int. J. Clin. Pract. International journal of clinical practice. Supplement = Int J Clin Pract Suppl International Journal of Clinical Practice. Supplement=Int J Clin Pract Suppl;; International Journal of Clinical Practice. Supplement = Int. J. Clin. Pract. Suppl. International Journal of Clothing Science and Technology = Int J Cloth Sci Tech International Journal of Clothing Science and Technology = Int. J. Cloth. Sci. Tech. International Journal of Coal Geology = Int J Coal Geol International Journal of Coal Geology = Int. J. Coal Geol. International Journal of Coal Preparation and Utilization = Int J Coal Prep Util International Journal of Coal Preparation and Utilization = Int. J. Coal Prep. Util. International journal of cognitive ergonomics = Int J Cogn Ergon International Journal of Cognitive Therapy = Int J Cogn Ther International Journal of Cognitive Therapy = Int. J. Cogn. Ther. International journal of colorectal disease = Int J Colorectal Dis International Journal of Colorectal Disease=Int J Colorectal Dis;; International Journal of Colorectal Disease = Int J Colorectal Dis International Journal of Colorectal Disease = Int. J. Colorectal Dis. International Journal of COMADEM = Int. J. COMADEM International Journal of Communication Systems = Int J Commun Syst International Journal of Communication Systems = Int. J. Commun. Syst. International journal of comparative psychology / ISCP ; sponsored by the International Society for Comparative Psychology and the University of Calabria = Int J Comp Psychol International journal of comparative sociology = Int J Comp Sociol International Journal of Comparative Sociology = Int J Comp Sociol International Journal of Comparative Sociology = Int. J. Comp. Sociol. International Journal of Computational Fluid Dynamics = Int J Comput Fluid D International Journal of Computational Fluid Dynamics = Int. J. Comput. Fluid D. International Journal of Computational Fluid Dynamics = Int. J. Comput. Fluid Dyn. International Journal of Computational Geometry & Applications = Internat. J. Comput. Geom. Appl. International Journal of Computational Geometry & Applications = Int J Comput Geom Ap International Journal of Computational Geometry & Applications = Int. J. Comput. Geom. Ap. International Journal of Computational Intelligence and Applications = Int. J. Comput. Intell. Appl. International Journal of Computational Intelligence Systems = Int J Comput Int Sys International Journal of Computational Intelligence Systems = Int. J. Comput. Int. Sys. International Journal of Computational Materials Science and Surface Engineering = Int. J. Comput. Mater. Sci. Surf. Eng. International Journal of Computational Methods = Int J Comp Meth-sing International Journal of Computational Methods = Int. J. Comp. Meth-sing. International Journal of Computational Methods = Int J Comput Methods International Journal of Computational Methods = Int. J. Comput. Methods International Journal of Computational Science and Engineering = Int. J. Comput. Sci. Eng. International Journal of Computer Applications in Technology = Int J Comput Appl T International Journal of Computer Applications in Technology = Int. J. Comput. Appl. T. International Journal of Computer Applications in Technology = Int. J. Comput. Appl. Technol. International Journal of Computer Assisted Radiology and Surgery = Int J Comput Ass Rad International Journal of Computer Assisted Radiology and Surgery = Int. J. Comput. Ass. Rad. International Journal of Computer & Information Sciences = Int J Comput Inf Sci International Journal of Computer & Information Sciences = Int. J. Comput. Inf. Sci. International Journal of Computer Integrated Manufacturing = Int J Comp Integ M International Journal of Computer Integrated Manufacturing = Int. J. Comp. Integ. M. International Journal of Computer Integrated Manufacturing = Int. J. Computer Integr. Manuf. International Journal of Computer Integrated Manufacturing = Int J Comput Integ M International Journal of Computer Integrated Manufacturing = Int. J. Comput. Integ. M. International journal of computerized dentistry = Int J Comput Dent International Journal of Computer Mathematics = Int. J. Comput. Math. International Journal of Computer Mathematics = Int J Comput Math International Journal of Computer Mathematics = Int. J. Comput. Math. International Journal of Computers and Applications = Int. J. Comput. Appl. International Journal of Computers Communications & Control = Int J Comput Commun International Journal of Computers Communications & Control = Int. J. Comput. Commun. International Journal of Computers for Mathematical Learning = Int. J. Comput. Math. Learn. International Journal of Computer-supported Collaborative Learning = Int J Comp-supp Coll International Journal of Computer-supported Collaborative Learning = Int. J. Comp-supp. Coll. International Journal of Computer Vision = Int J Comput Vision International Journal of Computer Vision = Int. J. Comput. Vision International Journal of Computing Science and Mathematics = Int. J. Comput. Sci. Math. International Journal of Condensed Matter Research = Int. J. Condens. Matter Res. International Journal of Conflict and Violence = Int J Confl Violence International Journal of Conflict and Violence = Int. J. Confl. Violence International Journal of Conflict Management = Int J Confl Manage International Journal of Conflict Management = Int. J. Confl. Manage. International Journal of Consumer Studies = Int J Consum Stud International Journal of Consumer Studies = Int. J. Consum. Stud. International Journal of Contemporary Hospitality Management = Int J Contemp Hosp M International Journal of Contemporary Hospitality Management = Int. J. Contemp. Hosp. M. International journal of contemporary sociology = Int J Contemp Sociol International Journal of Contemporary Sociology = Int J Contemp Sociol International Journal of Contemporary Sociology = Int. J. Contemp. Sociol. International Journal of Control Automation and Systems = Int J Control Autom International Journal of Control Automation and Systems = Int. J. Control Autom. International Journal of Control, Automation and Systems = Int. J. Control Autom. Syst. International Journal of Control = Internat. J. Control International journal of control = Int J Control International Journal of Control = Int J Control International Journal of Control = Int. J. Control International Journal of Cooperative Information Systems = Int J Coop Inf Syst International Journal of Cooperative Information Systems = Int. J. Coop. Inf. Syst. International Journal of Corpus Linguistics = Int J Corpus Linguis International Journal of Corpus Linguistics = Int. J. Corpus Linguis. International Journal of Cosmetic Science = Int J Cosmetic Sci International Journal of Cosmetic Science = Int. J. Cosmetic Sci. International journal of cosmetic science = Int J Cosmet Sci International Journal of Cosmetic Science = Int. J. Cosmet. Sci. International Journal of Crashworthiness = Int J Crashworthines International Journal of Crashworthiness = Int. J. Crashworthines. International Journal of Crashworthiness = Int. J. Crashworthiness International Journal of Criminology and Penology = Int J Crim Penol International Journal of Criminology and Penology = Int. J. Crim. Penol. International Journal of Critical Infrastructure Protection = Int. J. Crit. Infrastruct. Prot. International Journal of Critical Infrastructures = Int. J. Crit. Infrastruct. International journal of crude drug research = Int J Crude Drug Res International Journal of Cultural Studies = Int J Cultural Stud International Journal of Cultural Studies = Int. J. Cultural Stud. International Journal of CUrrent Chemistry = Int. J. Curr. Chem. International Journal of Dairy Technology = Int J Dairy Technol International Journal of Dairy Technology = Int. J. Dairy Technol. International Journal of Damage Mechanics = Int J Damage Mech International Journal of Damage Mechanics = Int. J. Damage Mech International Journal of Damage Mechanics = Int. J. Damage Mech. International Journal of Data Mining and Bioinformatics = Int J Data Min Bioin International Journal of Data Mining and Bioinformatics = Int. J. Data Min. Bioin. International Journal of Data Warehousing and Mining = Int J Data Warehous International Journal of Data Warehousing and Mining = Int. J. Data Warehous. International Journal of Data Warehousing and Mining = Int. J. Data Warehouse. Min. International journal of dental hygiene = Int J Dent Hyg International Journal of Dental Hygiene = Int J Dent Hyg International Journal of Dental Hygiene = Int. J. Dent. Hyg. International journal of dental symposia = Int J Dent Symp International Journal of Dental Symposia = Int. J. Dent. Symp. International journal of dermatology = Int J Dermatol International Journal of Dermatology=Int J Dermatol;; International Journal of Dermatology = Int J Dermatol International Journal of Dermatology = Int. J. Dermatol. International Journal of Design and Nature = Int. J. Des. Nat. International Journal of Design = Int J Des International Journal of Design = Int. J. Des. International Journal of Developmental Biology=Int J Dev Biol;; International Journal of Developmental Biology = Int J Dev Biol International Journal of Developmental Biology = Int. J. Dev. Biol. International Journal of Developmental Neuroscience=Int J Dev Neurosci;; International Journal of Developmental Neuroscience = Int J Dev Neurosci International Journal of Developmental Neuroscience = Int. J. Dev. Neurosci. International journal of developmental neuroscience : the official journal of the International Society for Developmental Neuroscience = Int J Dev Neurosci International Journal of Diabetes in Developing Countries = Int J Diabetes Dev C International Journal of Diabetes in Developing Countries = Int. J. Diabetes Dev. C. International Journal of Digital Earth = Int. J. Digital Earth International Journal of Digital Earth = Int J Digit Earth International Journal of Digital Earth = Int. J. Digit. Earth International Journal of Disability Development and Education = Int J Disabil Dev Ed International Journal of Disability Development and Education = Int. J. Disabil. Dev. Ed. International Journal of Distributed Sensor Networks = Int J Distrib Sens N International Journal of Distributed Sensor Networks = Int. J. Distrib. Sens. N. International Journal of Distributed Sensor Networks = Int. J. Distrib. Sens. Netw. International Journal of Drug Policy = Int J Drug Policy International Journal of Drug Policy = Int. J. Drug Policy International Journal of Dynamical Systems and Differential Equations = Int. J. Dyn. Syst. Differ. Equ. International Journal of Early Childhood = Int J Early Child International Journal of Early Childhood = Int. J. Early Child. International Journal of Earth Sciences = Int J Earth Sci International Journal of Earth Sciences = Int. J. Earth Sci. International Journal of Eating Disorders=Int J Eat Disord;; International Journal of Eating Disorders = Int. J. Eat. Disord. International Journal of Eating Disorders = Int J Eat Disorder International Journal of Eating Disorders = Int. J. Eat. Disorder. International Journal of Ecodynamics = Int. J. Ecodyn. International Journal of Economic Theory = Int J Econ Theory International Journal of Economic Theory = Int. J. Econ. Theory International journal of educational development = Int J Educ Dev International Journal of Educational Development = Int J Educ Dev International Journal of Educational Development = Int. J. Educ. Dev. International Journal of Educational Research = Int J Ed R International Journal of Educational Research = Int. J. Ed. R. International Journal of Educational Research, Vol 23, No 4, 1995 = Int J Ed R International Journal of Educational Research, Vol 23, No 4, 1995 = Int. J. Ed. R. International Journal of Electrical Engineering Education = Int J Elec Eng Educ International Journal of Electrical Engineering Education = Int. J. Elec. Eng. Educ. International Journal of Electrical Engineering Education = Int. J. Electr. Eng. Educ. International Journal of Electrical Engineering = Int. J. Electr. Eng. International Journal of Electrical Power & Energy Systems = Int J Elec Power International Journal of Electrical Power & Energy Systems = Int. J. Elec. Power International Journal of Electrical Power & Energy Systems = Int. J. Electr. Power Energy Syst. International Journal of Electric and Hybrid Vehicles = Int. J. Electr. Hybrid Veh. International Journal of Electrochemical Science = Int J Electrochem Sc International Journal of Electrochemical Science = Int. J. Electrochem. Sc. International Journal of Electrochemical Science = Int. J. Electrochem. Sci. International Journal of Electronic Commerce = Int J Electron Comm International Journal of Electronic Commerce = Int. J. Electron. Comm. International Journal of Electronic Security and Digital Forensics = Int. J. Electron. Secur. Digit. Forensics International Journal of Electronics = Int J Electron International Journal of Electronics = Int. J. Electron. International Journal of Embedded Systems = Int. J. Embedded Syst. International Journal of Emergency Management = Int. J. Emergency Manage. International journal of emergency mental health = Int J Emerg Ment Health International Journal of Emergency Mental Health = Int. J. Emerg. Ment. Health International Journal of Emerging Electric Power Systems = Int. J. Emerg. Electr. Power Syst. International Journal of Endocrinology = Int J Endocrinol International Journal of Endocrinology = Int. J. Endocrinol. International Journal of Energy Research = Int J Energ Res International Journal of Energy Research = Int. J. Energ. Res. International Journal of Energy Research = Int. J. Energy Res. International Journal of Energy Sector Management = Int. J. Energy Sect. Manage. International Journal of Engineering Education = Int J Eng Educ International Journal of Engineering Education = Int. J. Eng. Educ. International Journal of Engineering Fluid Mechanics = Int J Eng Fluid Mech International Journal of Engineering Fluid Mechanics = Int. J. Eng. Fluid Mech. International Journal of Engineering = Int. J. Eng. International Journal of Engineering Research in Africa = Int. J. Eng. Res. Afr. International Journal of Engineering Science = Internat. J. Engrg. Sci. International Journal of Engineering Science = Int J Eng Sci International Journal of Engineering Science = Int. J. Eng. Sci. International Journal of Engineering, Transactions A: Basics = Int. J. Eng. Trans. A International Journal of Engineering, Transactions A: = Int. J. Eng., Trans. A: International Journal of Engineering, Transactions B: Applications = Int. J. Eng. Trans. B International Journal of Engine Research = Int J Engine Res International Journal of Engine Research = Int. J. Engine Res. International Journal of Enterprise Information Systems = Int. J. Enterp. Inf. Syst. International Journal of Entomology = Int J Entomol International Journal of Entomology = Int. J. Entomol. International journal of environmental analytical chemistry = Int J Environ Anal Chem International Journal of Environmental Analytical Chemistry = Int. J. Environ. Anal. Chem. International Journal of Environmental Analytical Chemistry = Int J Environ An Ch International Journal of Environmental Analytical Chemistry = Int. J. Environ. An. Ch. International Journal of Environmental and Analytical Chemistry = Int. J. Environ. Anal. Chem. International Journal of Environmental Health Research = Int J Environ Heal R International Journal of Environmental Health Research = Int. J. Environ. Heal. R. International journal of environmental health research = Int J Environ Health Res International journal of environmental research and public health = Int J Environ Res Public Health International Journal of Environmental Research and Public Health = Int. J. Environ. Res. Public. Health International Journal of Environmental Research and Public Health = Int J Env Res Pub He International Journal of Environmental Research and Public Health = Int. J. Env. Res. Pub. He. International Journal of Environmental Research = Int J Environ Res International Journal of Environmental Research = Int. J. Environ. Res. International Journal of Environmental Science and Technology = Int J Environ Sci Te International Journal of Environmental Science and Technology = Int. J. Environ. Sci. Te. International Journal of Environmental Science and Technology = Int. J. Environ. Sci. Technol. International Journal of Environmental Studies = Int J Environ Stud International Journal of Environmental Studies = Int. J. Environ. Stud. International Journal of Environmental Technology and Management = Int. J. Environ. Technol. Manage. International Journal of Environment and Pollution = Int J Environ Pollut International Journal of Environment and Pollution = Int. J. Environ. Pollut. International Journal of Environment and Waste Management = Int. J. Environ. Waste Manage. International journal of epidemiology = Int J Epidemiol International Journal of Epidemiology=Int J Epidemiol;; International Journal of Epidemiology = Int J Epidemiol International Journal of Epidemiology = Int. J. Epidemiol. International journal of equilibrium research = Int J Equilib Res International Journal of Equilibrium Research = Int. J. Equilib. Res. International Journal of Essential Oil THerapeutics = Int. J. Essen. Oil Ther. International Journal of Essential Oil Therapeutics = Int. J. Essent. Oil Ther. International Journal of Ethics = Int J Ethics International Journal of Ethics = Int. J. Ethics International Journal of Exergy = Int J Exergy International Journal of Exergy = Int. J. Exergy International journal of experimental diabesity research = Int J Exp Diabesity Res International journal of experimental diabetes research = Int J Exp Diabetes Res International Journal of Experimental Diabetes Research = Int. J. Exp. Diabetes Res. International journal of experimental pathology = Int J Exp Pathol International Journal of Experimental Pathology=Int J Exp Pathol;; International Journal of Experimental Pathology = Int J Exp Pathol International Journal of Experimental Pathology = Int. J. Exp. Pathol. International Journal of Expert Systems = Int J Expert Syst International Journal of Expert Systems = Int. J. Expert Syst. International Journal of Family Counseling = Int J Fam Couns International Journal of Family Counseling = Int. J. Fam. Couns. International Journal of Family Therapy = Int J Fam Ther International Journal of Family Therapy = Int. J. Fam. Ther. International Journal of Fatigue = Int J Fatigue International Journal of Fatigue = Int. J. Fatigue International journal of fertility and menopausal studies = Int J Fertil Menopausal Stud International Journal of Fertility and Menopausal Studies = Int. J. Fertil. Menopausal Stud. International Journal of Fertility and Menopausal Studies = Int J Fertil Menop S International Journal of Fertility and Menopausal Studies = Int. J. Fertil. Menop. S. International Journal of Fertility and Womens Medicine = Int J Fertil Women M International Journal of Fertility and Womens Medicine = Int. J. Fertil. Women. M. International journal of fertility and women's medicine = Int J Fertil Womens Med International Journal of Fertility and Women's Medicine = Int. J. Fertil. Womens Med. International journal of fertility = Int J Fertil International Journal of Fertility = Int J Fertil International Journal of Fertility = Int. J. Fertil. International Journal of Fertility & Sterility = Int J Fertil Steril International Journal of Fertility & Sterility = Int. J. Fertil. Steril. International Journal of Finance and Economics=Int. J. Finance Econ. International Journal of Finance & Economics = Int J Financ Econ International Journal of Finance & Economics = Int. J. Financ. Econ. International Journal of Flexible Manufacturing Systems = Int. J. Flexible Manuf. Syst. International Journal of Flexible Manufacturing Systems = Int J Flex Manuf Sys International Journal of Flexible Manufacturing Systems = Int. J. Flex. Manuf. Sys. International Journal of Fluid Dynamics = Int. J. Comput. Fluid Dyn. International Journal of Fluid Mechanics Research = Int. J. Fluid Mech. Res. International Journal of Fluid Mechanics Research = Int. J. Fluid Mech. Res. International Journal of Fluid Power = Int. J. Fluid Power International Journal of Food Engineering = Int J Food Eng International Journal of Food Engineering = Int. J. Food Eng. International journal of food microbiology = Int J Food Microbiol International Journal of Food Microbiology=Int J Food Microbiol;; International Journal of Food Microbiology = Int J Food Microbiol International Journal of Food Microbiology = Int. J. Food Microbiol. International Journal of Food Properties = Int J Food Prop International Journal of Food Properties = Int. J. Food Prop. International Journal of Food Science and Nutrition = Int. J. Food Sci. Nutr. International Journal of Food Science and Technology = Int J Food Sci Tech International Journal of Food Science and Technology = Int. J. Food Sci. Tech. International Journal of Food Science and Technology = Int. J. Food Sci. Technol. International journal of food sciences and nutrition = Int J Food Sci Nutr International Journal of Food Sciences and Nutrition=Int J Food Sci Nutr;; International Journal of Food Sciences and Nutrition = Int J Food Sci Nutr International Journal of Food Sciences and Nutrition = Int. J. Food Sci. Nutr. International journal of forecasting = Int J Forecast International Journal of Forecasting=Int. J. Forecasting International Journal of Forecasting = Int J Forecasting International Journal of Forecasting = Int. J. Forecasting International Journal of Forensic Dentistry = Int. J. Forensic Dent. International Journal of Forming Processes = Int. J. Form. Processes International Journal of Foundations of Computer Science = Int J Found Comput S International Journal of Foundations of Computer Science = Int. J. Found. Comput. S. International Journal of Fracture = Int. J. Fract. International Journal of Fracture = Int J Fracture International Journal of Fracture = Int. J. Fracture International Journal of Fracture Mechanics = Int J Fract Mech International Journal of Fracture Mechanics = Int. J. Fract. Mech. International Journal of Fracture Mechanics = Int. J. Fract.Mech. International Journal of Fuzzy Systems = Int J Fuzzy Syst International Journal of Fuzzy Systems = Int. J. Fuzzy Syst. International Journal of Game Theory = Internat. J. Game Theory International Journal of Game Theory=Int. J. Game Theory International Journal of Game Theory = Int J Game Theory International Journal of Game Theory = Int. J. Game Theory International Journal of Gastrointestinal Cancer = Int J Gastro Cancer International Journal of Gastrointestinal Cancer = Int. J. Gastro. Cancer International journal of gastrointestinal cancer = Int J Gastrointest Cancer International Journal of Gastrointestinal Cancer = Int. J. Gastrointest. Cancer International Journal of General Systems = Int J Gen Syst International Journal of General Systems = Int. J. Gen. Syst. International Journal of Genome Research = Int J Genome Res International Journal of Genome Research = Int. J. Genome Res. International journal of geographical information science : IJGIS = Int J Geogr Inf Sci International Journal of Geographical Information Science = Int J Geogr Inf Sci International Journal of Geographical Information Science = Int. J. Geogr. Inf. Sci. International Journal of Geographical Information Systems = Int J Geogr Inf Syst International Journal of Geographical Information Systems = Int. J. Geogr. Inf. Syst. International Journal of Geomagnetism and Aeronomy = Int. J. Geomag. Aeron. International Journal of Geomechanics = Int. J. Geomech. International Journal of Geometric Methods in Modern Physics = Int. J. Geom. Meth. Mod. Phys. International Journal of Geometric Methods in Modern Physics = Int J Geom Methods M International Journal of Geometric Methods in Modern Physics = Int. J. Geom. Methods M. International Journal of Geotechnical Engineering = Int. J. Geotech. Eng. International Journal of Geriatric Psychiatry = Int J Geriatr Psych International Journal of Geriatric Psychiatry = Int. J. Geriatr. Psych. International journal of geriatric psychiatry = Int J Geriatr Psychiatry International Journal of Geriatric Psychiatry=Int J Geriatr Psychiatry;; International Journal of Geriatric Psychiatry = Int. J. Geriatr. Psychiatry International Journal of Gerontology = Int J Gerontol International Journal of Gerontology = Int. J. Gerontol. International Journal of Global Energy Issues = Int J Global Energy International Journal of Global Energy Issues = Int. J. Global Energy International Journal of Global Energy Issues = Int. J. Global Energy Issues International Journal of Global Warming = Int J Global Warm International Journal of Global Warming = Int. J. Global Warm. International Journal of Green Energy = Int J Green Energy International Journal of Green Energy = Int. J. Green Energy International Journal of Greenhouse Gas Control = Int J Greenh Gas Con International Journal of Greenhouse Gas Control = Int. J. Greenh. Gas Con. International Journal of Greenhouse Gas Control = Int. J. Greenhouse Gas Control International Journal of Green Nanotechnology: Biomedicine = Int. J. Green Nanotechnol. Biomed. International Journal of Green Nanotechnology: Materials Science and Engineering = Int. J. Green Nanotechnol. Mater. Sci. Eng. International Journal of Green Nanotechnology: Physics and Chemistry = Int. J. Green Nanotechnol. Phys. Chem. International Journal of Grid and Utility Computing = Int. J. Grid Util. Comput. International Journal of Group Psychotherapy = Int J Group Psychoth International Journal of Group Psychotherapy = Int. J. Group Psychoth. International journal of group psychotherapy = Int J Group Psychother International Journal of Group Psychotherapy=Int J Group Psychother;; International Journal of Group Psychotherapy = Int. J. Group Psychother. International Journal of Group Tensions = Int J Group Tensions International Journal of Group Tensions = Int. J. Group Tensions International Journal of Gynaecology and Obstetrics=Int J Gynaecol Obstet;; International Journal of Gynaecology and Obstetrics = Int. J. Gynaecol. Obstet. International journal of gynaecology and obstetrics: the official organ of the International Federation of Gynaecology and Obstetrics = Int J Gynaecol Obstet International Journal of Gynecological Cancer = Int J Gynecol Cancer International Journal of Gynecological Cancer = Int. J. Gynecol. Cancer International journal of gynecological cancer : official journal of the International Gynecological Cancer Society = Int J Gynecol Cancer International Journal of Gynecological Pathology=Int J Gynecol Pathol;; International Journal of Gynecological Pathology = Int J Gynecol Pathol International Journal of Gynecological Pathology = Int. J. Gynecol. Pathol. International journal of gynecological pathology : official journal of the International Society of Gynecological Pathologists = Int J Gynecol Pathol International Journal of Gynecology & Obstetrics = Int J Gynecol Obstet International Journal of Gynecology & Obstetrics = Int. J. Gynecol. Obstet. International journal of health care finance and economics = Int J Health Care Finance Econ International Journal of Health Care Finance and Economics = Int. J. Health Care Finance Econ. International Journal of Health Care Finance & Economics = Int J Health Care Fi International Journal of Health Care Finance & Economics = Int. J. Health Care Fi. International journal of health care quality assurance incorporating Leadership in health services = Int J Health Care Qual Assur Inc Leadersh Health Serv International Journal of Health Care Quality Assurance Incorporating Leadership in Health Services = Int. J. Health Care Qual. Assur. Inc. Leadersh. Health Serv. International journal of health care quality assurance = Int J Health Care Qual Assur International Journal of Health Care Quality Assurance = Int. J. Health Care Qual. Assur. International journal of health education = Int J Health Educ International Journal of Health Education = Int J Health Educ International Journal of Health Education = Int. J. Health Educ. International journal of health geographics = Int J Health Geogr International Journal of Health Geographics = Int J Health Geogr International Journal of Health Geographics = Int. J. Health Geogr. International Journal of Health Planning and Management = Int J Health Plan M International Journal of Health Planning and Management = Int. J. Health Plan. M. International Journal of Health Planning and Management = Int. J. Health Plann. Manage. International journal of health sciences = Int J Health Sci International Journal of Health Services=Int J Health Serv;; International Journal of Health Services = Int J Health Serv International Journal of Health Services = Int. J. Health Serv. International journal of health services : planning, administration, evaluation = Int J Health Serv International Journal of Heat and Fluid Flow = Int J Heat Fluid Fl International Journal of Heat and Fluid Flow = Int. J. Heat Fluid Fl. International Journal of Heat and fluid flow = Int. J. Heat Fluid Flow International Journal of Heat and Fluid Flow = Int. J. Heat Fluid Flow International Journal of Heat and Mass Transfer = Int J Heat Mass Tran International Journal of Heat and Mass Transfer = Int. J. Heat Mass Tran. International Journal of Heat and Mass Transfer = Int. J. Heat Mass Transfer International Journal of Heat and Technology = Int. J. Heat Technol. International Journal of Heat Exchangers = Int. J. Heat Exch. International Journal of Heavy Vehicle Systems = Int J Heavy Veh Syst International Journal of Heavy Vehicle Systems = Int. J. Heavy Veh. Syst. International journal of hematology = Int J Hematol International Journal of Hematology=Int J Hematol;; International Journal of Hematology = Int J Hematol International Journal of Hematology = Int. J. Hematol. International Journal of Heritage Studies = Int J Herit Stud International Journal of Heritage Studies = Int. J. Herit. Stud. International Journal of High Performance Computing and Networking = Int. J. High Perform. Comput. Networking International Journal of High Performance Computing Applications = Int J High Perform C International Journal of High Performance Computing Applications = Int. J. High Perform. C. International Journal of High Performance Computing Applications = Int. J. High Perform. Comput. Appl. International Journal of High Performance Systems Architecture = Int. J. High Perform. Syst. Archit. International Journal of High Speed Computing = Int J High Speed Com International Journal of High Speed Computing = Int. J. High Speed Com. International Journal of High Speed Electronics and Systems = Int. J. High Speed Electron. Syst. International Journal of High Technology Ceramics = Int. J. Hig Technol. Ceram. International Journal of Hindu Studies = Int J Hindu Stud International Journal of Hindu Studies = Int. J. Hindu Stud. International Journal of Historical Archaeology = Int J Hist Archaeol International Journal of Historical Archaeology = Int. J. Hist. Archaeol. International Journal of Hospitality Management = Int J Hosp Manag International Journal of Hospitality Management = Int. J. Hosp. Manag. International Journal of Human-computer Interaction = Int J Hum-comput Int International Journal of Human-computer Interaction = Int. J. Hum-comput. Int. International journal of human-computer interaction = Int J Hum Comput Interact International Journal of Human-computer Studies = Int J Hum-comput St International Journal of Human-computer Studies = Int. J. Hum-comput. St. International journal of human-computer studies = Int J Hum Comput Stud International Journal of Human-Computer Studies = Int. J. Hum. Comput. Stud. International Journal of Human Factors in Manufacturing = Int J Hum Factor Man International Journal of Human Factors in Manufacturing = Int. J. Hum. Factor. Man. International Journal of Human Genetics = Int J Hum Genet International Journal of Human Genetics = Int. J. Hum. Genet. International Journal of Humanoid Robotics = Int. J. Humanoid Rob. International Journal of Humanoid Robotics = Int J Hum Robot International Journal of Humanoid Robotics = Int. J. Hum. Robot. International Journal of Human Resource Management = Int J Hum Resour Man International Journal of Human Resource Management = Int. J. Hum. Resour. Man. International Journal of Hybrid Microelectronics = Int. J. Hybrid Microelectron. International Journal of Hydrocarbon Engineering = Int. J. Hydrocarbon Eng. International Journal of Hydrogen Energy = Int J Hydrogen Energ International Journal of Hydrogen Energy = Int. J. Hydrogen Energ. International journal of hydrogen energy = Int J Hydrogen Energy International Journal of Hydrogen Energy = Int. J. Hydrogen Energy International Journal of Hygiene and Environmental Health = Int J Hyg Envir Heal International Journal of Hygiene and Environmental Health = Int. J. Hyg. Envir. Heal. International journal of hygiene and environmental health = Int J Hyg Environ Health International Journal of Hygiene and Environmental Health = Int. J. Hyg. Environ. Health International Journal of Hyperthermia = Int J Hyperther International Journal of Hyperthermia = Int. J. Hyperther. International Journal of Hyperthermia=Int J Hyperthermia;; International Journal of Hyperthermia = Int. J. Hyperthermia International journal of hyperthermia : the official journal of European Society for Hyperthermic Oncology, North American Hyperthermia Group = Int J Hyperthermia International Journal of Imaging Systems and Technology = Int. J. Imaging Syst. Technol. International Journal of Imaging Systems and Technology = Int J Imag Syst Tech International Journal of Imaging Systems and Technology = Int. J. Imag. Syst. Tech. International journal of immunogenetics = Int J Immunogenet International Journal of Immunogenetics = Int J Immunogenet International Journal of Immunogenetics = Int. J. Immunogenet. International journal of immunopathology and pharmacology = Int J Immunopathol Pharmacol International Journal of Immunopathology and Pharmacology = Int J Immunopath Ph International Journal of Immunopathology and Pharmacology = Int. J. Immunopath. Ph. International Journal of Immunopharmacology = Int J Immunopharmaco International Journal of Immunopharmacology = Int. J. Immunopharmaco. International journal of immunopharmacology = Int J Immunopharmacol International Journal of Immunopharmacology=Int J Immunopharmacol;; International Journal of Immunopharmacology = Int. J. Immunopharmacol International Journal of Immunopharmacology = Int. J. Immunopharmacol. International Journal of Immunotherapy = Int J Immunother International Journal of Immunotherapy = Int. J. Immunother. International journal of impact engineering = Int J Impact Eng International Journal of Impact Engineering = Int J Impact Eng International Journal of Impact Engineering = Int. J. Impact Eng. International journal of impotence research = Int J Impot Res International Journal of Impotence Research=Int J Impot Res;; International Journal of Impotence Research = Int J Impot Res International Journal of Impotence Research = Int. J. Impot. Res. International Journal of Inclusive Education = Int J Inclusive Educ International Journal of Inclusive Education = Int. J. Inclusive Educ. International Journal of Industrial and Systems Engineering = Int. J. Ind. Syst. Eng. International Journal of Industrial Engineering-applications and Practice = Int J Ind Eng-appl P International Journal of Industrial Engineering-applications and Practice = Int. J. Ind. Eng-appl. P. International Journal of Industrial Engineering-theory Applications and Practice = Int J Ind Eng-theory International Journal of Industrial Engineering-theory Applications and Practice = Int. J. Ind. Eng-theory. International Journal of Industrial Engineering: Theory Applications and Practice = Int. J. Ind. Eng.Theory Appl. Pract. International journal of industrial ergonomics = Int J Ind Ergon International Journal of Industrial Ergonomics = Int. J. Ind. Ergon. International Journal of Industrial Ergonomics = Int J Ind Ergonom International Journal of Industrial Ergonomics = Int. J. Ind. Ergonom. International Journal of Industrial Organization=Int. J. Ind. Organ. International Journal of Industrial Organization = Int J Ind Organ International Journal of Industrial Organization = Int. J. Ind. Organ. International Journal of Industrial Organization = Int. J. Ind Organiz International journal of infectious diseases : IJID : official publication of the International Society for Infectious Diseases = Int J Infect Dis International Journal of Infectious Diseases = Int J Infect Dis International Journal of Infectious Diseases = Int. J. Infect. Dis. International Journal of Information and Communication Technology = Int. J. Inf. Commun. Technol. International Journal of Information and Computer Security = Int. J. Inf. Comput. Secur. International Journal of Information and Management Sciences = Internat. J. Inform. Management Sci. International Journal of Information and Management Sciences = Int. J. Inf. Manage. Sci. International Journal of Information Management = Int. J. Inf. Manage. International Journal of Information Management = Int J Inform Manage International Journal of Information Management = Int. J. Inform. Manage. International Journal of Information Quality = Int. J. Inf. Qual. International Journal of Information Security = Int J Inf Secur International Journal of Information Security = Int. J. Inf. Secur. International Journal of Information Systems and Change Management = Int. J. Inf. Syst. Change Mange. International Journal of Information Technology and Management = Int. J. Inf. Technol. Manage. International Journal of Information Technology and Web Engineering = Int. J. Inf. Technol. Web. Eng. International Journal of Information Technology & Decision Making = Int J Inf Tech Decis International Journal of Information Technology & Decision Making = Int. J. Inf. Tech. Decis. International Journal of Infrared and Millimeter Waves = Int J Infrared Milli International Journal of Infrared and Millimeter Waves = Int. J. Infrared Milli. International journal of infrared and millimeter waves = Int J Infrared Millimeter Waves International Journal of Infrared and Millimeter Waves = Int. J. Infrared Millimeter Waves International Journal of Injury Control and Safety Promotion = Int J Inj Control Sa International Journal of Injury Control and Safety Promotion = Int. J. Inj. Control Sa. International journal of injury control and safety promotion = Int J Inj Contr Saf Promot International Journal of Injury Control and Safety Promotion = Int. J. Inj. Contr. Saf. Promot. International Journal of Innovative Computing and Applications = Int. J. Innovative Comput. Appl. International Journal of Innovative Computing Information and Control = Int J Innov Comput I International Journal of Innovative Computing Information and Control = Int. J. Innov. Comput. I. International Journal of Inorganic Materials = Int J Inorg Mater International Journal of Inorganic Materials = Int. J. Inorg. Mater. International Journal of Insect Morphology and Embryology = Int. J. Insect Morphol. Embryol. International Journal of Insect Morphology & Embryology = Int J Insect Morphol International Journal of Insect Morphology & Embryology = Int. J. Insect Morphol. International journal of instructional media = Int J Instr Media International Journal of Instructional Media = Int. J. Instr. Media International Journal of Intangible Heritage = Int J Intang Herit International Journal of Intangible Heritage = Int. J. Intang. Herit. International journal of integrated care = Int J Integr Care International Journal of Intelligent & Cooperative Information Systems = Int J Intell Coop I International Journal of Intelligent & Cooperative Information Systems = Int. J. Intell. Coop. I. International Journal of Intelligent Information and Database Systems = Int. J. Intell. Inf. Database Syst. International Journal of Intelligent Information Technologies = Int. J. Intell. Inf. Technol. International Journal of Intelligent Systems = Int J Intell Syst International Journal of Intelligent Systems = Int. J. Intell. Syst. International Journal of Intelligent Transportation Systems Research = Int. J. Intell. Transp. Syst. Res. International Journal of Intercultural Relations = Int J Intercult Rel International Journal of Intercultural Relations = Int. J. Intercult. Rel. International Journal Of Intercultural Relations = Int. J. Intercult. Relat. International Journal of Internet Manufacturing and Services = Int. J. Internet Manuf. Serv. International Journal of Internet Protocol Technology = Int. J. Internet Protoc. Technol. International Journal of Invertebrate Reproduction and Development = Int J Inver Rep Dev International Journal of Invertebrate Reproduction and Development = Int. J. Inver. Rep. Dev. International Journal of Invertebrate Reproduction = Int J Inver Rep Dev International Journal of Invertebrate Reproduction = Int. J. Inver. Rep. Dev. International Journal of Ion Mobility Spectrometry = Int. J. Ion Mobility Spectrom. International journal of laboratory hematology = Int J Lab Hematol International Journal of Laboratory Hematology = Int J Lab Hematol International Journal of Laboratory Hematology = Int. J. Lab. Hematol. International Journal of Language and Communication Disorders = Int. J. Lang. Commun. Disord. International Journal of Language & Communication Disorders = Int J Lang Comm Dis International Journal of Language & Communication Disorders = Int. J. Lang. Comm. Dis. International journal of language & communication disorders / Royal College of Speech & Language Therapists = Int J Lang Commun Disord International Journal of Law and Psychiatry = Int J Law Psychiat International Journal of Law and Psychiatry = Int. J. Law Psychiat. International journal of law and psychiatry = Int J Law Psychiatry International Journal of Law and Psychiatry=Int J Law Psychiatry;; International Journal of Law and Psychiatry = Int. J. Law Psychiatry International journal of law and the family = Int J Law Fam International Journal of Law Crime and Justice = Int J Law Crime Just International Journal of Law Crime and Justice = Int. J. Law Crime Just. International journal of law, policy, and the family = Int J Law Policy Family International journal of legal medicine = Int J Legal Med International Journal of Legal Medicine=Int J Legal Med;; International Journal of Legal Medicine = Int J Legal Med International Journal of Legal Medicine = Int. J. Legal Med. International Journal of Leprosy and Other Mycobacterial Diseases = Int J Leprosy International Journal of Leprosy and Other Mycobacterial Diseases = Int. J. Leprosy International Journal of Leprosy and Other Mycobacterial Diseases=Int J Lepr Other Mycobact Dis;; International Journal of Leprosy and Other Mycobacterial Diseases = Int. J. Lepr. Other Mycobact. Dis. International journal of leprosy and other mycobacterial diseases : official organ of the International Leprosy Association = Int J Lepr Other Mycobact Dis International journal of Leprosy = Int J Lepr International Journal of Leprosy = Int. J. Lepr. International Journal of Leprosy = Int J Leprosy International Journal of Leprosy = Int. J. Leprosy International Journal of Lexicography = Int J Lexicogr International Journal of Lexicography = Int. J. Lexicogr. International Journal of Life Cycle Assessment = Int J Life Cycle Ass International Journal of Life Cycle Assessment = Int. J. Life Cycle Ass. International Journal of Life Cycle Assessment = Int. J. Life Cycle Assess. International Journal of Logistics Management = Int J Logist Manag International Journal of Logistics Management = Int. J. Logist. Manag. International Journal of Logistics-research and Applications = Int J Logist-res App International Journal of Logistics-research and Applications = Int. J. Logist-res. App. International Journal of Low Carbon Technologies = Int. J. Low Carbon Technol. International Journal of Lower Extremity Wounds = Int. J. Low. Extrem. Wounds International Journal of Machine Tool Design and Research = Int J Mach Tool D R International Journal of Machine Tool Design and Research = Int. J. Mach. Tool D. R. International Journal of Machine Tools and Manufacture = Int. J. Mach. Tools Manuf International Journal of Machine Tools & Manufacture = Int J Mach Tool Manu International Journal of Machine Tools & Manufacture = Int. J. Mach. Tool. Manu. International Journal of Machining and Machinability of Materials = Int. J. Mach. Mach. Mater. International Journal of Management Reviews = Int J Manag Rev International Journal of Management Reviews = Int. J. Manag. Rev. International journal of man-machine studies = Int J Man Mach Stud International Journal of Man-machine Studies = Int J Man Mach Stud International Journal of Man-machine Studies = Int. J. Man. Mach. Stud. International Journal of Man-Machine Studies = Int. J. Man Mach. Stud. International Journal of Manpower=Int. J. Manpower International Journal of Manpower = Int J Manpower International Journal of Manpower = Int. J. Manpower International Journal of Manufacturing Research = Int. J. Manuf. Res. International Journal of Manufacturing Technology and Management = Int. J. Manuf. Technol. Manage. International Journal of Maritime Economics=Int. J. Maritime Econ. International Journal of Maritime Engineering = Int J Marit Eng International Journal of Maritime Engineering = Int. J. Marit. Eng. International Journal of Market Research = Int J Market Res International Journal of Market Research = Int. J. Market Res. International journal of mass emergencies and disasters = Int J Mass Emerg Disasters International Journal of Mass Spectrometry and Ion Physics = Int. J. Mass Spectrom. Ion Phys. International Journal of Mass Spectrometry and Ion Processes = Int J Mass Spectrom International Journal of Mass Spectrometry and Ion Processes = Int. J. Mass Spectrom. International journal of mass spectrometry and ion processes = Int J Mass Spectrom Ion Process International Journal of Mass Spectrometry and Ion Processes = Int. J. Mass Spectrom. Ion Processes International journal of mass spectrometry = Int J Mass Spectrom International Journal of Mass Spectrometry = Int. J. Mass spectrom. International Journal of Mass Spectrometry = Int J Mass Spectrom International Journal of Mass Spectrometry = Int. J. Mass Spectrom. International Journal of Material Forming = Int. J. Mater. Form. International Journal of Materials and Product Technology = Int. J. Mater. Prod. Technol. International Journal of Materials and Structural Integrity = Int. J. Mater. Struct. Integrity International Journal of Materials & Product Technology = Int J Mater Prod Tec International Journal of Materials & Product Technology = Int. J. Mater. Prod. Tec. International Journal of Materials Research = Int J Mater Res International Journal of Materials Research = Int. J. Mater. Res. International Journal of Mathematical and Statistical Sciences = Int. J. Math. Stat. Sci. International Journal of Mathematical Education in Science and Technology = Internat. J. Math. Ed. Sci. Tech. International Journal of Mathematical Education in Science and Technology = Int. J. Math. Educ. Sci. Technol. International Journal of Mathematics and Mathematical Sciences = Internat. J. Math. Math. Sci. International Journal of Mathematics, Game Theory, and Algebra = Int. J. Math. Game Theory Algebra International Journal of Mathematics = Internat. J. Math. International Journal of Mathematics = Int J Math International Journal of Mathematics = Int. J. Math. International Journal of Mechanical Engineering Education = Int. J. Mech. Eng. Educ. International Journal of Mechanical Sciences = Int J Mech Sci International Journal of Mechanical Sciences = Int. J. Mech. Sci. International Journal of Mechanical Systems Science and Engineering = Int. J. Mech. Syst. Sci. Eng. International Journal of Mechanics and Materials in Design = Int. J. Mech. Mater. Des. International Journal of Medical Engineering and Informatics = Int. J. Med. Eng. Inf. International Journal of Medical Informatics=Int J Med Inf;; International Journal of Medical Informatics = Int. J. Med. Inf. International journal of medical informatics = Int J Med Inform International Journal of Medical Informatics = Int J Med Inform International Journal of Medical Informatics = Int. J. Med. Inform. International Journal of Medical Informatics = Int. J. Med. Informatics International journal of medical microbiology : IJMM = Int J Med Microbiol International Journal of Medical Microbiology = Int J Med Microbiol International Journal of Medical Microbiology = Int. J. Med. Microbiol. International Journal of Medical Microbiology, Virology, Parasitology and Infectious Diseases = Int. J. Med. Microbiol. Virol. Parasitol. Infect. Dis. International Journal of Medical Robotics and Computer Assisted Surgery = Int. J. Med. Rob. Comput. Assisted Surg. International Journal of Medical Robotics and Computer Assisted Surgery = Int J Med Robot Comp International Journal of Medical Robotics and Computer Assisted Surgery = Int. J. Med. Robot. Comp. International journal of medical sciences = Int J Med Sci International Journal of Medical Sciences = Int J Med Sci International Journal of Medical Sciences = Int. J. Med. Sci. International Journal of Medicinal Mushrooms = Int J Med Mushrooms International Journal of Medicinal Mushrooms = Int. J. Med. Mushrooms International journal of mental health = Int J Ment Health International Journal of Mental Health = Int J Ment Health International Journal of Mental Health = Int. J. Ment. Health International Journal of Mental Health Nursing = Int J Ment Health Nu International Journal of Mental Health Nursing = Int. J. Ment. Health Nu. International journal of mental health nursing = Int J Ment Health Nurs International Journal of Metadata, Semantics and Ontologies = Int. J. Metadata Semant. Ontol. International Journal of Metalcasting = Int J Metalcast International Journal of Metalcasting = Int. J. Metalcast. International Journal of Metalcasting = Int J Metalca St International Journal of Metalcasting = Int. J. Metalca. St. International Journal of Methods in Psychiatric Research = Int J Method Psych International Journal of Methods in Psychiatric Research = Int. J. Method. Psych. International journal of methods in psychiatric research = Int J Methods Psychiatr Res International Journal of Methods in Psychiatric Research = Int J Meth Psych Res International Journal of Methods in Psychiatric Research = Int. J. Meth. Psych. Res. International Journal of Microcircuits and Electronic Packaging = Int. J. Microcircuits Electron Packag. International Journal of Microcirculation-clinical and Experimental = Int J Microcirc International Journal of Microcirculation-clinical and Experimental = Int. J. Microcirc. International Journal of Microcirculation; Clinical and Experimental = Int. J. Microcirc. Clin. Exp. International journal of microcirculation, clinical and experimental / sponsored by the European Society for Microcirculation = Int J Microcirc Clin Exp International Journal of Micrographics & Optical Technology = Int J Microgr Opt T International Journal of Micrographics & Optical Technology = Int. J. Microgr. Opt. T. International Journal of Microstructure and Materials Properties = Int. J. Microstruct. Mater. Prop. International Journal of Microwave and Millimeter-wave Computer-aided Engineering = Int J Microwave Mill International Journal of Microwave and Millimeter-wave Computer-aided Engineering = Int. J. Microwave Mill. International Journal of Microwave and Wireless Technologies = Int. J. Microwave Wireless Technolog. International journal of Middle East studies = Int J Middle East Stud International Journal of Middle East Studies = Int J Middle E Stud International Journal of Middle East Studies = Int. J. Middle E. Stud. International Journal of Mineral Processing = Int J Miner Process International Journal of Mineral Processing = Int. J. Miner. Process. International Journal of Minerals, Metallurgy, and Materials = Int. J. Miner. Metall. Mater. International Journal of Minerals Metallurgy and Materials = Int J Min Met Mater International Journal of Minerals Metallurgy and Materials = Int. J. Min. Met. Mater. International Journal of Mine Water = Int. J. Mine Water International Journal of Mining and Mineral Processing Engineering = Int. J. Min. Miner. Eng. International Journal of Mining Engineering = Int J Mining Eng International Journal of Mining Engineering = Int. J. Mining Eng. International Journal of Mining Reclamation and Environment = Int J Min Reclam Env International Journal of Mining Reclamation and Environment = Int. J. Min. Reclam. Env. International Journal of Mining, Reclamation and Environment = Int. J. Min. Reclam. Environ. International Journal of Mobile Communications = Int J Mob Commun International Journal of Mobile Communications = Int. J. Mob. Commun. International Journal of Mobile Communications = Int. J. Mobile Commun. International Journal of Mobile Network Design and Innovation = Int. J. Mobile Network Des. Innov. International Journal of Modelling and Simulation = Int. J. Model. Simul. International Journal of Modelling, Identification and Control = Int. J. Model. Ident. Control International Journal of Modern Physics A = Internat. J. Modern Phys. A International Journal of Modern Physics A = Int J Mod Phys A International Journal of Modern Physics A = Int. J. Mod. Phys. A International journal of modern physics. A, Particles and fields, gravitation, cosmology = Int J Mod Phys A International Journal of Modern Physics A: Particles and Fields; Gravitation; Cosmology; Nuclear Physics = Int. J. Mod. Phys. A International Journal of Modern Physics B: Condensed Matter Physics, Statistical Physics, Applied Physics = Int. J. Mod. Phys. B International Journal of Modern Physics B : Condensed Matter Physics, Statistical Physics, Applied Physics = Int J M P B International Journal of Modern Physics B : Condensed Matter Physics, Statistical Physics, Applied Physics = Int. J. M. P. B International Journal of Modern Physics B = Internat. J. Modern Phys. B International Journal of Modern Physics B = Int J Mod Phys B International Journal of Modern Physics B = Int. J. Mod Phys B International Journal of Modern Physics B = Int. J. Mod. Phys. B International Journal of Modern Physics B, Vol 3, No 12, December 1989 = Int J M P B International Journal of Modern Physics B, Vol 3, No 12, December 1989 = Int. J. M. P. B. International Journal of Modern Physics B, Vol 4, No 5, April 1990 = Int J M P B International Journal of Modern Physics B, Vol 4, No 5, April 1990 = Int. J. M. P. B. International Journal of Modern Physics C: Computational Physics and Physical Computation = Int. J. Mod. Phys. C International Journal of Modern Physics C = Internat. J. Modern Phys. C International Journal of Modern Physics C = Int J Mod Phys C International Journal of Modern Physics C = Int. J. Mod. Phys. C International Journal of Modern Physics C-physics and Computers = Int J Mod Phys C International Journal of Modern Physics C-physics and Computers = Int. J. Mod. Phys. C. International Journal of Modern Physics D: Gravitation; Astrophysics and Cosmology = Int. J. Mod. Phys. D International Journal of Modern Physics D = Int J Mod Phys D International Journal of Modern Physics D = Int. J. Mod. Phys. D International Journal of Modern Physics E = Int. J. Mod. Phys. E International Journal of Modern Physics E-nuclear Physics = Int J Mod Phys E International Journal of Modern Physics E-nuclear Physics = Int. J. Mod. Phys. E. International Journal of Modern Physics E: Nuclear Physics = Int. J. Mod. Phys. E International Journal of Modern Physics = Internat. J. Modern Phys. D International Journal of Modern Physics = Internat. J. Modern Phys. E International Journal of Molecular Medicine and Advance Sciences = Int. J. Mol. Med. Adv. Sci. International journal of molecular medicine = Int J Mol Med International Journal of Molecular Medicine = Int J Mol Med International Journal of Molecular Medicine = Int. J. Mol. Med. International Journal of Molecular Sciences = Int J Mol Sci International Journal of Molecular Sciences = Int. J. Mol. Sci. International Journal of Morphology = Int J Morphol International Journal of Morphology = Int. J. Morphol. International Journal of Multiphase Flow = Int. J. Multiphase Flow International Journal of Multiphase Flow = Int J Multiphas Flow International Journal of Multiphase Flow = Int. J. Multiphas. Flow International Journal of Multiphysics = Int. J. Multiphys. International Journal of Music Education = Int J Music Educ International Journal of Music Education = Int. J. Music Educ. International Journal of Nano and Biomaterials = Int. J. Nano Biomater. International Journal of Nanomanufacturing = Int. J. Nanomanuf. International Journal of Nanomedicine = Int J Nanomed International Journal of Nanomedicine = Int. J. Nanomed. International journal of nanomedicine = Int J Nanomedicine International Journal of Nanoscience = Int. J. Nanosci. International Journal of Nanoscience Series = Int J Nanosci Ser International Journal of Nanoscience Series = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 1, Nos 5 and 6 = Int J Nanosci Ser International Journal of Nanoscience, Vol 1, Nos 5 and 6 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 2, No 6 = Int J Nanosci Ser International Journal of Nanoscience, Vol 2, No 6 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 2, Nos 4 and 5 = Int J Nanosci Ser International Journal of Nanoscience, Vol 2, Nos 4 and 5 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 3, No 6 = Int J Nanosci Ser International Journal of Nanoscience, Vol 3, No 6 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 3, Nos 1 and 2 = Int J Nanosci Ser International Journal of Nanoscience, Vol 3, Nos 1 and 2 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 3, Nos 4 and 5 = Int J Nanosci Ser International Journal of Nanoscience, Vol 3, Nos 4 and 5 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 4, No 2 = Int J Nanosci Ser International Journal of Nanoscience, Vol 4, No 2 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 4, No 4 = Int J Nanosci Ser International Journal of Nanoscience, Vol 4, No 4 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 4, Nos 5 and 6 = Int J Nanosci Ser International Journal of Nanoscience, Vol 4, Nos 5 and 6 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 5, No 6 = Int J Nanosci Ser International Journal of Nanoscience, Vol 5, No 6 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 5, Nos 2 and 3 = Int J Nanosci Ser International Journal of Nanoscience, Vol 5, Nos 2 and 3 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 5, Nos 4 and 5 = Int J Nanosci Ser International Journal of Nanoscience, Vol 5, Nos 4 and 5 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 6, No 2 = Int J Nanosci Ser International Journal of Nanoscience, Vol 6, No 2 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 6, No 5 = Int J Nanosci Ser International Journal of Nanoscience, Vol 6, No 5 = Int. J. Nanosci. Ser. International Journal of Nanoscience, Vol 6, Nos 3 and 4 = Int J Nanosci Ser International Journal of Nanoscience, Vol 6, Nos 3 and 4 = Int. J. Nanosci. Ser. International Journal of Nanotechnology = Int J Nanotechnol International Journal of Nanotechnology = Int. J. Nanotechnol. International Journal of Natural and Engineering Sciences = Int. J. Nat. Eng. Sci. International journal of nautical archaeology = IJNA International Journal of Nautical Archaeology = IntJNautA International Journal of Nautical Archaeology = Int J Naut Archaeol International Journal of Nautical Archaeology = Int. J. Naut. Archaeol. International Journal of Naval Architecture and Ocean Engineering = Int J Nav Arch Ocean International Journal of Naval Architecture and Ocean Engineering = Int. J. Nav. Arch. Ocean International Journal of Networking and Virtual Organisations = Int. J. Networking Virtual Organ. International Journal of Network Management = Int J Netw Manag International Journal of Network Management = Int. J. Netw. Manag. International Journal of Network Management = Int. J. Network Manage. International journal of neural systems = Int J Neural Syst International Journal of Neural Systems=Int J Neural Syst;; International Journal of Neural Systems = Int J Neural Syst International Journal of Neural Systems = Int. J. Neural Syst. International journal of neurology = Int J Neurol International Journal of Neurology = Int J Neurol International Journal of Neurology = Int. J. Neurol. International journal of neuropharmacology = Int J Neuropharmacol International Journal of Neuropharmacology = Int J Neuropharmacol International Journal of Neuropharmacology = Int. J. Neuropharmacol. International Journal of Neuropsychiatry = Int J Neuropsych International Journal of Neuropsychiatry = Int. J. Neuropsych. International journal of neuropsychiatry = Int J Neuropsychiatry International Journal of Neuropsychiatry = Int. J. Neuropsychiatry International Journal of Neuropsychopharmacology = Int J Neuropsychop International Journal of Neuropsychopharmacology = Int. J. Neuropsychop. International Journal of Neuropsychopharmacology = Int J Neuropsychoph International Journal of Neuropsychopharmacology = Int. J. Neuropsychoph. International Journal of Neuropsychopharmacology = Int. J. Neuropsychopharmacol. International Journal of Neuropsychopharmacology = Int. J. Neuropsychopharmacolog. International Journal of Neuroradiology = Int J Neuroradiol International Journal of Neuroradiology = Int. J. Neuroradiol. International Journal of Neuroscience=Int J Neurosci;; International Journal of Neuroscience = Int J Neurosci International Journal of Neuroscience = Int. J. Neurosci. International Journal of Nondestructive Testing = Int. J. Nondestr. Test. International Journal of Non-equilibrium Processing = Int J Non-equilib Pr International Journal of Non-equilibrium Processing = Int. J. Non-equilib. Pr. International Journal of Non-Equilibrium Processing = Int. J. Non-Equilib. Process. International Journal of Non-Equilibrium Processing = Int. J. Non Equilibr. Process International Journal of Nonlineare Modelling in Science and Engineering = Int. J. Nonlinear Modell. Sci. Eng. International Journal of Non-Linear Mechanics = Internat. J. Non-Linear Mech. International Journal of Non-linear Mechanics = Int J Nonlinear Mech International Journal of Non-linear Mechanics = Int. J. Nonlinear. Mech. International Journal of Non-Linear Mechanics = Int. J. Non Linear Mech. International Journal of Non-linear Mechanics = Int J Nonlin Mech International Journal of Non-linear Mechanics = Int. J. Nonlin. Mech. International Journal of Nonlinear Optical Physics = Int J Nonlinear Opt International Journal of Nonlinear Optical Physics = Int. J. Nonlinear Opt. International Journal of Nonlinear Sciences and Numerical Simulation = Int J Nonlinear Sci International Journal of Nonlinear Sciences and Numerical Simulation = Int. J. Nonlinear Sci. International Journal of Nonlinear Sciences and Numerical Simulation = Int J Nonlin Sci Num International Journal of Nonlinear Sciences and Numerical Simulation = Int. J. Nonlin. Sci. Num. International Journal of Nuclear Desalination = Int. J. Nucl. Desalin. International Journal of Nuclear Energy Science and Technology = Int. J. Nucl. Energy Sci. Technol. International journal of nuclear medicine and biology = Int J Nucl Med Biol International Journal of Nuclear Medicine and Biology = Int. J. Nucl. Med. Biol. International Journal of Nuclear Medicine & Biology = Int J Nucl Med Biol International Journal of Nuclear Medicine & Biology = Int. J. Nucl. Med. Biol. International Journal of Number Theory = Int J Number Theory International Journal of Number Theory = Int. J. Number Theory International Journal of Numerical Analysis and Modeling = Int J Numer Anal Mod International Journal of Numerical Analysis and Modeling = Int. J. Numer. Anal. Mod. International Journal of Numerical Analysis and Modeling = Int. J. Numer. Anal. Model. International Journal of Numerical Methods for Heat and Fluid Flow = Int. J. Numer. Methods Heat Fluid Flow International Journal of Numerical Methods for Heat & Fluid Flow = Internat. J. Numer. Methods Heat Fluid Flow International Journal of Numerical Methods for Heat & Fluid Flow = Int J Numer Method H International Journal of Numerical Methods for Heat & Fluid Flow = Int. J. Numer. Method. H. International Journal of Numerical Methods in Biomedical Engineering = Int. J. Numer. Methods Biomed. Eng. International Journal of Numerical Modelling-electronic Networks Devices and Fields = Int J Numer Model El International Journal of Numerical Modelling-electronic Networks Devices and Fields = Int. J. Numer. Model. El. International Journal of Numerical Modelling: Electronic Networks, Devices and Fields = Int. J. Numer. Modell. Electron. Networks Devices Fields International journal of nursing education scholarship = Int J Nurs Educ Scholarsh International Journal of Nursing Education Scholarship = Int. J. Nurs. Educ. Scholarsh. International journal of nursing practice = Int J Nurs Pract International Journal of Nursing Practice = Int J Nurs Pract International Journal of Nursing Practice = Int. J. Nurs. Pract. International journal of nursing studies = Int J Nurs Stud International Journal of Nursing Studies=Int J Nurs Stud;; International Journal of Nursing Studies = Int J Nurs Stud International Journal of Nursing Studies = Int. J. Nurs. Stud. International journal of nursing terminologies and classifications : the official journal of NANDA International = Int J Nurs Terminol Classif International journal of obesity (2005) = Int J Obes (Lond) International Journal of Obesity and Related Metabolic Disorders=Int J Obes Relat Metab Disord;; International Journal of Obesity and Related Metabolic Disorders = Int. J. Obes. Relat. Metab. Disord. International journal of obesity and related metabolic disorders : journal of the International Association for the Study of Obesity = Int J Obes Relat Metab Disord International journal of obesity = Int J Obes International Journal of Obesity = Int. J. Obes. International Journal of Obesity = Int J Obesity International Journal of Obesity = Int. J. Obesity International journal of obstetric anesthesia = Int J Obstet Anesth International Journal of Obstetric Anesthesia = Int J Obstet Anesth International Journal of Obstetric Anesthesia = Int. J. Obstet. Anesth. International Journal of Occupational and Environmental Health = Int J Occup Env Heal International Journal of Occupational and Environmental Health = Int. J. Occup. Env. Heal. International journal of occupational and environmental health = Int J Occup Environ Health International Journal of Occupational and Environmental Health = Int. J. Occup. Environ. Health International Journal of Occupational Health and Safety = Int. J. Occup. Health Saf. International Journal of Occupational Health and Safety = Int J Occup Healt Sa International Journal of Occupational Health and Safety = Int. J. Occup. Healt. Sa. International Journal of Occupational Medicine and Environmental Health = Int J Occup Med Env International Journal of Occupational Medicine and Environmental Health = Int. J. Occup. Med. Env. International journal of occupational medicine and environmental health = Int J Occup Med Environ Health International Journal of Occupational Medicine and Environmental Health=Int J Occup Med Environ Health;; International Journal of Occupational Medicine and Environmental Health = Int. J. Occup. Med. Environ. Health International Journal of Occupational Medicine and Toxicology = Int J Occup Med Tox International Journal of Occupational Medicine and Toxicology = Int. J. Occup. Med. Tox. International Journal of Occupational Medicine Immunology and Toxicology = Int J Occup Med I T International Journal of Occupational Medicine Immunology and Toxicology = Int. J. Occup. Med. I. T. International Journal of Occupational Safety and Ergonomics = Int J Occup Saf Ergo International Journal of Occupational Safety and Ergonomics = Int. J. Occup. Saf. Ergo. International journal of occupational safety and ergonomics : JOSE = Int J Occup Saf Ergon International Journal of Oceanology and Limnology = Int J Oceanol Limnol International Journal of Oceanology and Limnology = Int. J. Oceanol. Limnol. International Journal of Odonatology = Int J Odonatol International Journal of Odonatology = Int. J. Odonatol. International Journal of Offender Therapy and Comparative Criminology = Int J Offender Ther International Journal of Offender Therapy and Comparative Criminology = Int. J. Offender Ther. International journal of offender therapy and comparative criminology = Int J Offender Ther Comp Criminol International Journal of Offender Therapy = Int J Offender Th International Journal of Offender Therapy = Int. J. Offender Th. International Journal of Offshore and Polar Engineering = Int J Offshore Polar International Journal of Offshore and Polar Engineering = Int. J. Offshore Polar International Journal of Offshore and Polar Engineering = Int. J. Offshore Polar Eng. International Journal of Oil Gas and Coal Technology = Int J Oil Gas Coal T International Journal of Oil Gas and Coal Technology = Int. J. Oil Gas Coal T. International journal of oncology = Int J Oncol International Journal of Oncology=Int J Oncol;; International Journal of Oncology = Int J Oncol International Journal of Oncology = Int. J. Oncol. International Journal of Operations & Production Management = Int J Oper Prod Man International Journal of Operations & Production Management = Int. J. Oper. Prod. Man. International Journal of Ophthalmology = Int J Ophthalmol-chi International Journal of Ophthalmology = Int. J. Ophthalmol-chi. International Journal of Optoelectronics = Int J Optoelectron International Journal of Optoelectronics = Int. J. Optoelectron. International Journal of Optomechatronics = Int J Optomechatroni International Journal of Optomechatronics = Int. J. Optomechatroni. International Journal of Optomechatronics = Int. J. Optomechatronics International Journal of Oral and Maxillofacial Implants=Int J Oral Maxillofac Implants;; International Journal of Oral and Maxillofacial Implants = Int. J. Oral Maxillofac. Implants International journal of oral and maxillofacial surgery = Int J Oral Maxillofac Surg International Journal of Oral and Maxillofacial Surgery=Int J Oral Maxillofac Surg;; International Journal of Oral and Maxillofacial Surgery = Int. J. Oral Maxillofac. Surg. International Journal of Oral and Maxillofacial Surgery = Int J Oral Max Surg International Journal of Oral and Maxillofacial Surgery = Int. J. Oral Max. Surg. International Journal of Oral History = Int J Oral Hist International Journal of Oral History = Int. J. Oral Hist. International Journal of Oral Implantology = Int. J. Oral Implantol. International Journal of Oral & Maxillofacial Implants = Int J Oral Max Impl International Journal of Oral & Maxillofacial Implants = Int. J. Oral Max. Impl. International Journal of Oral Myology = Int. J. Oral Myol. International Journal of Oral Science = Int J Oral Sci International Journal of Oral Science = Int. J. Oral Sci. International Journal of Oral Surgery = Int J Oral Maxillof International Journal of Oral Surgery = Int. J. Oral Maxillof. International journal of oral surgery = Int J Oral Surg International Journal of Oral Surgery = Int. J. Oral Surg. International Journal of Orofacial Myology = Int. J. Orofacial Myology International journal of orthodontics = Int J Orthod International Journal of Orthodontics = Int. J. Orthod. International journal of orthodontics (Milwaukee, Wis.) = Int J Orthod Milwaukee International Journal of Osteoarchaeology = Int J Osteoarchaeol International Journal of Osteoarchaeology = Int. J. Osteoarchaeol. International Journal of Osteopathic Medicine = Int J Osteopath Med International Journal of Osteopathic Medicine = Int. J. Osteopath. Med. International Journal of Paediatric Dentistry = Int J Paediatr Dent International Journal of Paediatric Dentistry = Int. J. Paediatr. Dent. International journal of paediatric dentistry / the British Paedodontic Society [and] the International Association of Dentistry for Children = Int J Paediatr Dent International journal of palliative nursing = Int J Palliat Nurs International Journal of Pancreatology=Int J Pancreatol;; International Journal of Pancreatology = Int J Pancreatol International Journal of Pancreatology = Int. J. Pancreatol. International journal of pancreatology : official journal of the International Association of Pancreatology = Int J Pancreatol International Journal of Parallel, Emergent and Distributed Systems = Int. J. Parallel Emergent Distrib. Syst. International Journal of Parallel Programming = Int J Parallel Prog International Journal of Parallel Programming = Int. J. Parallel Prog. International Journal of Parallel Programming = Int. J. Parallel Program. International journal of partial hospitalization = Int J Partial Hosp International Journal of Partial Hospitalization = Int. J. Partial Hosp. International Journal of Pattern Recognition and Artificial Intelligence = Int J Pattern Recogn International Journal of Pattern Recognition and Artificial Intelligence = Int. J. Pattern Recogn. International Journal of Pattern Recognition and Artificial Intelligence = Int. J. Pattern Recognit Artif Intell. International Journal of Pavement Engineering = Int J Pavement Eng International Journal of Pavement Engineering = Int. J. Pavement Eng. International Journal of Pediatric Hematology/oncology = Int J Pediat Hem Onc International Journal of Pediatric Hematology/oncology = Int. J. Pediat. Hem. Onc. International Journal of Pediatric Nephrology = Int. J. Pediatr. Nephrol. International Journal of Pediatric Nephrology = Int J Ped Nephrol International Journal of Pediatric Nephrology = Int. J. Ped. Nephrol. International journal of pediatric obesity : IJPO : an official journal of the International Association for the Study of Obesity = Int J Pediatr Obes International Journal of Pediatric Obesity = Int J Pediatr Obes International Journal of Pediatric Obesity = Int. J. Pediatr. Obes. International Journal of Pediatric Otorhinolaryngology = Int J Pediatr Otorhi International Journal of Pediatric Otorhinolaryngology = Int. J. Pediatr. Otorhi. International journal of pediatric otorhinolaryngology = Int J Pediatr Otorhinolaryngol International Journal of Pediatric Otorhinolaryngology=Int J Pediatr Otorhinolaryngol;; International Journal of Pediatric Otorhinolaryngology = Int. J. Pediatr. Otorhinolaryngol. International journal of peptide and protein research = Int J Pept Protein Res International Journal of Peptide and Protein Research = Int. J. Pept. Protein Res. International Journal of Peptide and Protein Research = Int J Pept Prot Res International Journal of Peptide and Protein Research = Int. J. Pept. Prot. Res. International Journal of Peptide Research and Therapeutics = Int J Pept Res Ther International Journal of Peptide Research and Therapeutics = Int. J. Pept. Res. Ther. International Journal of Periodontics and Restorative Dentistry = Int. J. Periodontics Restorative Dent. International Journal of Periodontics & Restorative Dentistry = Int J Periodont Rest International Journal of Periodontics & Restorative Dentistry = Int. J. Periodont. Rest. International Journal of Pest Management = Int J Pest Manage International Journal of Pest Management = Int. J. Pest Manage. International Journal of Pharmaceutical Compounding = Int. J. Pharm. Compd. International Journal of Pharmaceutical Technology and Product Manufacture = Int. J. Pharm. Technol. Prod. Manuf International journal of pharmaceutics = Int J Pharm International Journal of Pharmaceutics = Int J Pharm International Journal of Pharmaceutics = Int. J. Pharm. International Journal of Pharmaceutics = Int J Pharmaceut International Journal of Pharmaceutics = Int. J. Pharmaceut. International Journal of Pharmacognosy = Int J Pharmacogn International Journal of Pharmacognosy = Int. J. Pharmacogn. International Journal of Pharmacology = Int J Pharmacol International Journal of Pharmacology = Int. J. Pharmacol. International journal of philosophical studies = IJPS International Journal of Philosophical Studies = Int J Philos Stud International Journal of Philosophical Studies = Int. J. Philos. Stud. International Journal of Photoenergy = Int J Photoenergy International Journal of Photoenergy = Int. J. Photoenergy International Journal of Phycology and Phycochemistry = Int. J. Phycol. Phycochem. International Journal of Physical Distribution = Int J Phys Distrib International Journal of Physical Distribution = Int. J. Phys. Distrib. International Journal of Physical Distribution & Logistics Management = Int J Phys Distr Log International Journal of Physical Distribution & Logistics Management = Int. J. Phys. Distr. Log. International Journal of Physical Distribution & Materials Management = Int J Phys Distrib International Journal of Physical Distribution & Materials Management = Int. J. Phys. Distrib. International Journal of Physical Sciences = Int J Phys Sci International Journal of Physical Sciences = Int. J. Phys. Sci. International Journal of Phytoremediation = Int. J. Phytorem. International Journal of Phytoremediation = Int J Phytoremediat International Journal of Phytoremediation = Int. J. Phytoremediat. International journal of phytoremediation = Int J Phytoremediation International Journal of PIXE = Int. J. PIXE International Journal of Plant Production = Int J Plant Prod International Journal of Plant Production = Int. J. Plant Prod. International journal of plant sciences = Int J Plant Sci International Journal of Plant Sciences = Int J Plant Sci International Journal of Plant Sciences = Int. J. Plant Sci. International Journal of Plasma Science and Engineering = Int. J. Plasma Sci. Eng. International Journal of Plasticity = Int. J. Plast. International Journal of Plasticity = Int J Plasticity International Journal of Plasticity = Int. J. Plasticity International Journal of Plastics Technology = Int. J. Plast. Technol. International Journal of Political Education = Int J Polit Educ International Journal of Political Education = Int. J. Polit. Educ. International journal of politics = Int J Polit International Journal of Politics = Int J Polit International Journal of Politics = Int. J. Polit. International Journal of Polymer Analysis and Characterization = Int J Polym Anal Ch International Journal of Polymer Analysis and Characterization = Int. J. Polym. Anal. Ch. International Journal of Polymer Analysis and Characterization = Int. J. Polym. Anal. Charact. International Journal of Polymeric Materials = Int J Polym Mater International Journal of Polymeric Materials = Int. J. Polym. Mater. International journal of population geography : IJPG = Int J Popul Geogr International Journal of Powder Metallurgy = Int J Powder Metall International Journal of Powder Metallurgy = Int. J. Powder Metall International Journal of Powder Metallurgy = Int. J. Powder Metall. International Journal of Powder Metallurgy (Princeton, New Jersey) = Int. J. Powder Metall. (Princeton, N. J.) International Journal of Power and Energy Systems = Int. J. Power Energy Syst International Journal of Precision Engineering and Manufacturing = Int J Precis Eng Man International Journal of Precision Engineering and Manufacturing = Int. J. Precis. Eng. Man. International Journal of Precision Engineering and Manufacturing = Int. J. Precis. Eng. Manuf. International Journal of Press-politics = Int J Press-polit International Journal of Press-politics = Int J Press/polit International Journal of Press-politics = Int. J. Press-polit. International Journal of Press-politics = Int. J. Press/polit. International Journal of Pressure Vessels and Piping = Int. J. Press. Vessels Pip. International Journal of Pressure Vessels and Piping = Int J Pres Ves Pip International Journal of Pressure Vessels and Piping = Int. J. Pres. Ves. Pip. International journal of primatology = Int J Primatol International Journal of Primatology = Int J Primatol International Journal of Primatology = Int. J. Primatol. International Journal of Production Economics = Int J Prod Econ International Journal of Production Economics = Int. J. Prod. Econ. International Journal of Production Economics=Int. J. Product. Econ. International Journal of Production Research = Int J Prod Res International Journal of Production Research = Int. J. Prod. Res. International Journal of Project Management = Int. J. Project Manage. International Journal of Project Management = Int J Proj Manag International Journal of Project Management = Int. J. Proj. Manag. International Journal of Prosthodontics = Int J Prosthodont International Journal of Prosthodontics = Int. J. Prosthodont. International journal of protein research = Int J Protein Res International Journal of Protein Research = Int. J. Protein Res. International Journal of Protein Research = Int J Prot Res International Journal of Protein Research = Int. J. Prot. Res. International Journal of Psychiatry in Clinical Practice = Int J Psychiat Clin International Journal of Psychiatry in Clinical Practice = Int. J. Psychiat. Clin. International Journal of Psychiatry in Medicine = Int J Psychiat Med International Journal of Psychiatry in Medicine = Int. J. Psychiat. Med. International journal of psychiatry in medicine = Int J Psychiatry Med International Journal of Psychiatry in Medicine = Int. J. Psychiatry Med. International Journal of Psychiatry In Medicine=Int J Psychiatry Med;; International Journal of Psychiatry = Int J Psychiat International Journal of Psychiatry = Int. J. Psychiat. International journal of psychiatry = Int J Psychiatry International Journal of Psychiatry = Int. J. Psychiatry International Journal of Psycho-analysis = Int J Psychoanal International Journal of Psycho-analysis = Int. J. Psychoanal. International Journal of Psychoanalysis = Int J Psychoanal International Journal of Psychoanalysis = Int. J. Psychoanal. International Journal of Psycho-Analysis=Int J Psychoanal;; International Journal of Psycho-Analysis = Int. J. Psychoanal. International Journal of Psychoanalytic Psychotherapy = Int J Psychoanal Psy International Journal of Psychoanalytic Psychotherapy = Int. J. Psychoanal. Psy. International journal of psychoanalytic psychotherapy = Int J Psychoanal Psychother International Journal of Psychoanalytic Psychotherapy = Int. J. Psychoanal. Psychother. International Journal of Psychology = Int J Psychol International Journal of Psychology = Int. J. Psychol. International journal of psychology. Journal international de psychologie = Int J Psychol International Journal of Psychophysiology=Int J Psychophysiol;; International Journal of Psychophysiology = Int J Psychophysiol International Journal of Psychophysiology = Int. J. Psychophysiol. International journal of psychophysiology : official journal of the International Organization of Psychophysiology = Int J Psychophysiol International Journal of Psychosomatics = Int. J. Psychosom. International journal of psychosomatics : official publication of the International Psychosomatics Institute = Int J Psychosom International Journal of Public Administration = Int J Public Admin International Journal of Public Administration = Int. J. Public Admin. International journal of public health = Int J Public Health International Journal of Public Health = Int J Public Health International Journal of Public Health = Int. J. Public Health International Journal of Public Opinion Research = Int J Public Opin R International Journal of Public Opinion Research = Int. J. Public Opin. R. International Journal of Qualitative Studies On Health and Well-being = Int J Qual Stud Heal International Journal of Qualitative Studies On Health and Well-being = Int. J. Qual. Stud. Heal. International journal of quantum chemistry = Int J Quantum Chem International Journal of Quantum Chemistry = Int J Quantum Chem International Journal of Quantum Chemistry = Int. J. Quantum Chem. International journal of quantum chemistry. Quantum biology symposium : proceedings of the International Symposium on Quantum Biology and Quantum Pharmacology. International Symposium on Quantum Biology and Quantum Pharmacology = Int J Quantum Chem Quantum Biol Symp International Journal of Quantum Information = Int J Quantum Inf International Journal of Quantum Information = Int. J. Quantum Inf. International journal of radiation applications and instrumentation. Part A, Applied radiation and isotopes = Int J Rad Appl Instrum [A] International Journal of Radiation Applications and Instrumentation. Part A, Applied Radiation and Isotopes = Int. J. Rad. Appl. Instrum. [A] International Journal of Radiation Applications and Instrumentation. Part A. Applied Radiation and Isotopes = Int. J. Radiat. Appl. Instrum. Part A International journal of radiation applications and instrumentation. Part B, Nuclear medicine and biology = Int J Rad Appl Instrum B International Journal of Radiation Applications and Instrumentation. Part B, Nuclear Medicine and Biology = Int. J. Rad. Appl. Instrum. B International Journal of Radiation Applications and Instrumentation. Part B. Nuclear Medicine and Biology = Int. J. Radiat. Appl. Instrum. Part B International Journal of Radiation Applications and Instrumentation. Part C. Radiation Physics and Chemistry = Int. J. Radiat. Appl. Instrum. Part C International Journal Of Radiation Applications And Instrumentation. Part D, Nuclear Tracks And Radiation Measurements = Int J Rad Appl Instrum D International Journal of Radiation Applications and Instrumentation. Part D. Nuclear Tracks and Radiation Measurements = Int. J. Radiat. Appl. Instrum. Part D International Journal of Radiation Applications and Instrumentation. Part E. Nuclear Geophysics = Int. J. Radiat. Appl. Instrum. Part E International Journal of Radiation Biology and Related Studies in Physics Chemistry and Medicine = Int J Radiat Biol Re International Journal of Radiation Biology and Related Studies in Physics Chemistry and Medicine = Int. J. Radiat. Biol. Re. International journal of radiation biology and related studies in physics, chemistry, and medicine = Int J Radiat Biol Relat Stud Phys Chem Med International Journal of Radiation Biology and Related Studies in Physics, Chemistry and Medicine = Int. J. Radiat. Biol. Relat. Stud. Phys. Chem. Med. International journal of radiation biology = Int J Radiat Biol International Journal of Radiation Biology=Int J Radiat Biol;; International Journal of Radiation Biology = Int J Radiat Biol International Journal of Radiation Biology = Int. J. Radiat. Biol. International Journal of Radiation Medicine = Int. J. Radiat. Med. International Journal of Radiation Oncology Biology Physics = Int J Radiat Oncol International Journal of Radiation Oncology Biology Physics = Int. J. Radiat. Oncol. International journal of radiation oncology, biology, physics = Int J Radiat Oncol Biol Phys International Journal of Radiation Oncology Biology Physics = Int. J. Radiat. Oncol. Biol. Phys. International Journal of Radiation Oncology, Biology, Physics=Int J Radiat Oncol Biol Phys;; International Journal of Radiation Oncology, Biology, Physics = Int. J. Radiat. Oncol. Biol. Phys. International Journal of Radiation Oncology, Biology, Physics = Int. J. Radiat. Oncol., Biol., Phys. International Journal of Radiation Physics = Int. J. Radiat. Phys. International Journal of Radio Frequency Identification Technology and Applications = Int. J. Radio Freq. Identif. Technol. Appl. International Journal of Rapid Solidification = Int J Rapid Solidif International Journal of Rapid Solidification = Int. J. Rapid Solidif. International Journal of Refractory Metals and Hard Materials = Int. J. Refract. Met. Hard Mater International Journal of Refractory Metals & Hard Materials = Int J Refract Met H International Journal of Refractory Metals & Hard Materials = Int. J. Refract. Met. H. International Journal of Refractory Metals & Hard Materials = Int. J. Refract. Met. Hard Mater. International Journal of Refrigeration = Int. J. Refrig International Journal of Refrigeration-revue Internationale Du Froid = Int J Refrig International Journal of Refrigeration-revue Internationale Du Froid = Int. J. Refrig. International journal of rehabilitation research. Internationale Zeitschrift fur Rehabilitationsforschung. Revue internationale de recherches de readaptation = Int J Rehabil Res International Journal of Rehabilitation Research=Int J Rehabil Res;; International Journal of Rehabilitation Research = Int J Rehabil Res International Journal of Rehabilitation Research = Int. J. Rehabil. Res. International Journal of Reliability and Safety = Int. J. Reliab. Saf. International Journal of Reliability, Quality and Safety Engineering = Int. J. Reliab. Qual. Saf. Eng. International journal of remote sensing = Int J Remote Sens International Journal of Remote Sensing = Int J Remote Sens International Journal of Remote Sensing = Int. J. Remote Sens. International Journal of Research in Marketing = Int J Res Mark International Journal of Research in Marketing = Int. J. Res. Mark. International Journal of RF and Microwave Computer-Aided Engineering = Int. J. RF Microwave Comput. Aided Eng. International Journal of Rf and Microwave Computer-aided Engineering = Int J Rf Microw C E International Journal of Rf and Microwave Computer-aided Engineering = Int. J. Rf Microw. C. E. International Journal of RF Technologies: Research and Aoplications = Int. J. RF Technol. Res. Appl. International Journal of Rheumatic Diseases = Int J Rheum Dis International Journal of Rheumatic Diseases = Int. J. Rheum. Dis. International Journal of Robotics and Automation = Int. J. Rob. Autom. International Journal of Robotics & Automation = Int J Robot Autom International Journal of Robotics & Automation = Int. J. Robot. Autom. International Journal of Robotics Research = Int J Robot Res International Journal of Robotics Research = Int. J. Robot. Res. International Journal of Robotics Research = Int. J. Rob. Res. International Journal of Robust and Nonlinear Control = Internat. J. Robust Nonlinear Control International Journal of Robust and Nonlinear Control = Int J Robust Nonlin International Journal of Robust and Nonlinear Control = Int. J. Robust Nonlin. International Journal of Robust and Nonlinear Control = Int. J. Robust Nonlinear Control International Journal of Rock Mechanics and Mining Sciences & Geomechanics Abstracts = Int J Rock Mech Min International Journal of Rock Mechanics and Mining Sciences & Geomechanics Abstracts = Int. J. Rock Mech. Min. International Journal of Rock Mechanics and Mining Sciences = Int J Rock Mech Min International Journal of Rock Mechanics and Mining Sciences = Int. J. Rock Mech. Min. International Journal of Rock Mechanics and Mining Sciences = Int. J. Rock Mech. Min. Sci. International Journal of Rotating Machinery = Int. J. Rotating Mach. International Journal of Satellite Communications and Networking = Int J Satell Comm N International Journal of Satellite Communications and Networking = Int. J. Satell. Comm. N. International Journal of Satellite Communications and Networking = Int. J. Satell. Commun. Networking International Journal of Satellite Communications and Networking = Int J Satell Co Netw International Journal of Satellite Communications and Networking = Int. J. Satell. Co. Netw. International Journal of Satellite Communications = Int J Satell Commun International Journal of Satellite Communications = Int. J. Satell. Commun. International Journal of Science and Mathematics Education = Int J Sci Math Educ International Journal of Science and Mathematics Education = Int. J. Sci. Math. Educ. International Journal of Science Education = Int J Sci Educ International Journal of Science Education = Int. J. Sci. Educ. International Journal of Security and Networks = Int. J. Secur. Netw. International Journal of Sediment Research = Int J Sediment Res International Journal of Sediment Research = Int. J. Sediment Res. International Journal of Selection and Assessment = Int J Select Assess International Journal of Selection and Assessment = Int. J. Select. Assess. International Journal of Self-Propagating High-Temperature Synthesis = Int. J. Self Propag. High Temp. Synth. International Journal of Self-Propagating High-Temperature Synthesis = Int. J. Self-Propag. High-Temp Synth. International Journal of Sensor Networks = Int J Sens Netw International Journal of Sensor Networks = Int. J. Sens. Netw. International Journal of Service Industry Management = Int J Serv Ind Manag International Journal of Service Industry Management = Int. J. Serv. Ind. Manag. International Journal of Services Operations and Informatics = Int. J. Serv. Oper. Inf. International Journal of Services, Technology and Management = Int. J. Serv. Technol. Manage. International journal of sexology = Int J Sexol International Journal of Sexual Health = Int J Sex Health International Journal of Sexual Health = Int. J. Sex. Health International Journal of Shape Modeling = Int. J. Shape Model. International Journal of Shape Modeling = Int. J. Shaping Model. International Journal of Shipping and Transport Logistics = Int J Ship Trans Log International Journal of Shipping and Transport Logistics = Int. J. Ship. Trans. Log. International Journal of Simulation and Process Modelling = Int. J. Simul. Process Model. International Journal of Simulation Modelling = Int J Simul Model International Journal of Simulation Modelling = Int. J. Simul. Model. International Journal of Simulation: Systems, Science and Technology = Int. J. Simul. Syst. Sci. Technol. International Journal of Small Group Research = Int J Small Group R International Journal of Small Group Research = Int. J. Small Group R. International Journal of Smart Sensing and Intelligent Systems = Int. J. Smart Sens. Intell. Syst. International journal of social economics = Int J Soc Econ International Journal of Social Economics=Int. J. Soc. Econ. International Journal of Social Economics = Int J Soc Econ International Journal of Social Economics = Int. J. Soc. Econ. International Journal of Social Psychiatry = Int J Soc Psychiatr International Journal of Social Psychiatry = Int. J. Soc. Psychiatr. International Journal of Social Psychiatry=Int J Soc Psychiatry;; International Journal of Social Psychiatry = Int. J. Soc. Psychiatry International Journal of Social Research Methodology = Int J Soc Res Method International Journal of Social Research Methodology = Int. J. Soc. Res. Method. International Journal of Social Welfare = Int J Soc Welf International Journal of Social Welfare = Int. J. Soc. Welf. International journal of sociology of the family = Int J Sociol Fam International Journal of Sociology of The Family = Int J Sociol Fam International Journal of Sociology of The Family = Int. J. Sociol. Fam. International Journal of Soft Computing = Int. J. Soft Comput. International Journal of Software Engineering and Knowledge Engineering = Int. J. Software Engineer. Knowledge Engineer. International Journal of Software Engineering and Knowledge Engineering = Int J Softw Eng Know International Journal of Software Engineering and Knowledge Engineering = Int. J. Softw. Eng. Know. International Journal of Soil Dynamics and Earthquake Engineering = Int. J. Soil Dyn. Earthquake Eng. International Journal of Soil Science = Int. J. Soil Sci. International Journal of Solids and Structures = Internat. J. Solids Structures International Journal of Solids and Structures = Int J Solids Struct International Journal of Solids and Structures = Int. J. Solids Struct. International Journal of Space Structures = Int. J. Space Struct. International journal of special education = Int J Spec Educ International Journal of Speech Language and The Law = Int J Speech Lang La International Journal of Speech Language and The Law = Int. J. Speech Lang. La. International Journal of Speech-language Pathology = Int J Speech-lang Pa International Journal of Speech-language Pathology = Int. J. Speech-lang. Pa. International Journal of Speech Technology = Int. J. Speech Technol. International Journal of Speleology = Int J Speleol International Journal of Speleology = Int. J. Speleol. International Journal of Sport Biomechanics = Int J Sport Biomech International Journal of Sport Biomechanics = Int. J. Sport Biomech. International Journal of Sport Finance = Int J Sport Financ International Journal of Sport Finance = Int. J. Sport Financ. International Journal of Sport Nutrition and Exercise Metabolism = Int J Sport Nutr Exe International Journal of Sport Nutrition and Exercise Metabolism = Int. J. Sport Nutr. Exe. International Journal of Sport Nutrition and Exercise Metabolism = Int. J. Sport Nutr. Exercise Metab. International journal of sport nutrition and exercise metabolism = Int J Sport Nutr Exerc Metab International Journal of Sport Nutrition and Exercise Metabolism = Int. J. Sport Nutr. Exerc. Metab. International journal of sport nutrition = Int J Sport Nutr International Journal of Sport Nutrition=Int J Sport Nutr;; International Journal of Sport Nutrition = Int J Sport Nutr International Journal of Sport Nutrition = Int. J. Sport Nutr. International journal of sport psychology = Int J Sport Psychol International Journal of Sport Psychology = Int J Sport Psychol International Journal of Sport Psychology = Int. J. Sport Psychol. International Journal of Sports Marketing & Sponsorship = Int J Sport Mark Spo International Journal of Sports Marketing & Sponsorship = Int. J. Sport. Mark. Spo. International journal of sports medicine = Int J Sports Med International Journal of Sports Medicine=Int J Sports Med;; International Journal of Sports Medicine = Int J Sports Med International Journal of Sports Medicine = Int. J. Sports Med. International Journal of Sports Physiology and Performance = Intj Sport Physiol International Journal of Sports Physiology and Performance = Intj. Sport. Physiol. International Journal of Sports Physiology and Performance = Int J Sport Physiol International Journal of Sports Physiology and Performance = Int. J. Sport. Physiol. International Journal of Sports Science & Coaching = Int J Sports Sci Coa International Journal of Sports Science & Coaching = Int. J. Sports Sci. Coa. International journal of STD & AIDS = Int J STD AIDS International Journal of Std & Aids = Int J Std Aids International Journal of Std & Aids = Int. J. Std Aids International Journal of STD and AIDS=Int J STD AIDS;; International Journal of STD and AIDS = Int. J. STD AIDS International Journal of Steel Structures = Int J Steel Struct International Journal of Steel Structures = Int. J. Steel Struct. International Journal of Strategic Property Management = Int J Strateg Prop M International Journal of Strategic Property Management = Int. J. Strateg. Prop. M. International Journal of Stress Management = Int J Stress Manage International Journal of Stress Management = Int. J. Stress Manage. International Journal of Stroke = Int J Stroke International Journal of Stroke = Int. J. Stroke International Journal of Structural Stability and Dynamics = Int J Struct Stab Dy International Journal of Structural Stability and Dynamics = Int. J. Struct. Stab. Dy. International Journal of Structural Stability and Dynamics = Int. J. Struct. Stab. Dyn. International Journal of Sulfur Chemistry = Int J Sulfur Chem International Journal of Sulfur Chemistry = Int. J. Sulfur Chem. International Journal of Sulfur Chemistry Part A: Original Experimental and Theoretical Studies = Int. J. Sulfur Chem. Part A: International Journal of Sulfur Chemistry Part B: Quartler Reports on Sulfur Chemistry = Int. J. Sulfur Chem. Part B: International Journal of Supercomputer Applications and High Performance Computing = Int J Supercomput Ap International Journal of Supercomputer Applications and High Performance Computing = Int. J. Supercomput. Ap. International Journal of Surface Mining, Reclamation, and Environment = Int. J. Surf. Min. Reclam. Environ. International Journal of Surface Science and Engineering = Int J Surf Sci Eng International Journal of Surface Science and Engineering = Int. J. Surf. Sci. Eng. International Journal of Surgery = Int J Surg International Journal of Surgery = Int. J. Surg. International journal of surgery (London, England) = Int J Surg International journal of surgical investigation = Int J Surg Investig International Journal of Surgical Investigation = Int. J. Surg. Investig. International journal of surgical pathology = Int J Surg Pathol International Journal of Surgical Pathology = Int J Surg Pathol International Journal of Surgical Pathology = Int. J. Surg. Pathol. International Journal of Sustainable Development and World Ecology = Int J Sust Dev World International Journal of Sustainable Development and World Ecology = Int. J. Sust. Dev. World International Journal of Sustainable Development = Int. J. Sustainable Dev. International Journal of Sustainable Energy = Int. J. Sustainable Energy International Journal of Sustainable Engineering = Int. J. Sustainable Eng. International Journal of Sustainable Transportation = Int J Sustain Transp International Journal of Sustainable Transportation = Int. J. Sustain. Transp. International Journal of Symbology = Int J Symbol International Journal of Symbology = Int. J. Symbol. International Journal of Systematic and Evolutionary Microbiology = Int J Syst Evol Micr International Journal of Systematic and Evolutionary Microbiology = Int. J. Syst. Evol. Micr. International journal of systematic and evolutionary microbiology = Int J Syst Evol Microbiol International Journal of Systematic and Evolutionary Microbiology = Int. J. Syst. Evol. Microbiol. International journal of systematic bacteriology = Int J Syst Bacteriol International Journal of Systematic Bacteriology=Int J Syst Bacteriol;; International Journal of Systematic Bacteriology = Int J Syst Bacteriol International Journal of Systematic Bacteriology = Int. J. Syst. Bacteriol. International Journal of Systematic Theology = Int J Syst Theol International Journal of Systematic Theology = Int. J. Syst. Theol. International journal of systems science = Int J Syst Sci International Journal of Systems Science = Int J Syst Sci International Journal of Systems Science = Int. J. Syst. Sci. International journal of technology & aging = Int J Technol Aging International Journal of Technology and Design Education = Int J Technol Des Ed International Journal of Technology and Design Education = Int. J. Technol. Des. Ed. International Journal of Technology and Design Education = Int. J. Technol. Des. Educ. International Journal of Technology and Human Interaction = Int. J. Technol. Human Interact. International Journal of Technology Assessment in Health Care = Int J Technol Assess International Journal of Technology Assessment in Health Care = Int. J. Technol. Assess. International journal of technology assessment in health care = Int J Technol Assess Health Care International Journal of Technology Assessment in Health Care = Int. J. Technol. Assess. Health Care International Journal of Technology Assessment In Health Care=Int J Technol Assess Health Care;; International Journal of Technology Intelligence and Planning = Int. J. Technol. Intell. Plann. International Journal of Technology Management = Int J Technol Manage International Journal of Technology Management = Int. J. Technol. Manage. International Journal of Technology, Policy and Management = Int. J. Technol. Policy Manage. International Journal of the Addictions = Int. J. Addict. International Journal of The Addictions = Int J Addict International Journal of The Addictions = Int. J. Addict. International journal of the classical tradition = IJCT International Journal of The Classical Tradition = Int J Class Tradit International Journal of The Classical Tradition = Int. J. Class. Tradit. International Journal of the Classical Tradition = IntJClTrad International Journal of the Economics of Business=Int. J. Econ. Bus. International Journal of The History of Sport = Int J Hist Sport International Journal of The History of Sport = Int. J. Hist. Sport International Journal of the Japan Society for Precision Engineering = Int. J. Jpn Soc. Precis. Eng. International Journal of The Japan Society for Precision Engineering = Int J Jpn S Prec Eng International Journal of The Japan Society for Precision Engineering = Int. J. Jpn. S. Prec. Eng. International Journal of Theoretical and Applied Finance=Int. J. Theoretical Appl. Finance International Journal of Theoretical Physics, Group Theory, and Nonlinear Optics = Int. J. Theor. Phys. Group Theory Nonlinear Opt. International Journal of Theoretical Physics = Internat. J. Theoret. Phys. International Journal of Theoretical Physics = Int J Theor Phys International Journal of Theoretical Physics = Int. J. Theor. Phys. International Journal of The Physical Sciences = Int J Phys Sci International Journal of The Physical Sciences = Int. J. Phys. Sci. International Journal of Thermal Sciences = Int J Therm Sci International Journal of Thermal Sciences = Int. J. Therm. Sci. International Journal of Thermodynamics = Int. J. Thermodyn. International Journal of Thermophysics = Int J Thermophys International Journal of Thermophysics = Int. J. Thermophys. International Journal of the Society of Material Engineering for Resources = Int. J. Soc. Mater. Eng. Resour. International Journal of The Sociology of Language = Int J Sociol Lang International Journal of The Sociology of Language = Int. J. Sociol. Lang. International journal of the sociology of language = Int J Soc Lang International Journal of The Sociology of Law = Int J Sociol Law International Journal of The Sociology of Law = Int. J. Sociol. Law International Journal Of The Sociology Of Law = Int. J. Sociol. Law International Journal of Tissue Reactions-experimental and Clinical Aspects = Int J Tissue React International Journal of Tissue Reactions-experimental and Clinical Aspects = Int. J. Tissue React. International journal of tissue reactions = Int J Tissue React International Journal of Tissue Reactions=Int J Tissue React;; International Journal of Tissue Reactions = Int. J. Tissue React. International Journal of Tourism Research = Int J Tour Res International Journal of Tourism Research = Int. J. Tour. Res. International journal of toxicology = Int J Toxicol International Journal of Toxicology = Int J Toxicol International Journal of Toxicology = Int. J. Toxicol. International Journal of Transitional Justice = Int J Transit Just International Journal of Transitional Justice = Int. J. Transit. Just. International Journal of Transport Economics = Int J Transp Econ International Journal of Transport Economics = Int. J. Transp. Econ. International Journal of Transport Economics=Int. J. Transport Econ. International Journal of Transport Phenomena = Int. J. Transp. Phenom. International journal of trauma nursing = Int J Trauma Nurs International Journal of Trauma Nursing = Int. J. Trauma Nurs. International Journal of Tropical Agriculture = Int J Trop Agric International Journal of Tropical Agriculture = Int. J. Trop. Agric. International Journal of Tropical Insect Science = Int. J. Trop. Insect Sci. International Journal of Tuberculosis and Lung Disease = Int J Tuberc Lung D International Journal of Tuberculosis and Lung Disease = Int. J. Tuberc. Lung D. International Journal of Tuberculosis and Lung Disease=Int J Tuberc Lung Dis;; International Journal of Tuberculosis and Lung Disease = Int. J. Tuberc. Lung Dis. International Journal of Turbo & Jet-engines = Int J Turbo Jet Eng International Journal of Turbo & Jet-engines = Int. J. Turbo Jet. Eng. International Journal of Uncertainty, Fuzziness and Knowledge-Based Systems = Internat. J. Uncertain. Fuzziness Knowledge-Based Systems International Journal of Uncertainty Fuzziness and Knowledge-based Systems = Int J Uncertain Fuzz International Journal of Uncertainty Fuzziness and Knowledge-based Systems = Int. J. Uncertain. Fuzz. International Journal of Uncertainty, Fuzziness and Knowlege-Based Systems = Int. J. Uncertainty Fuzziness Knowledge Based Syst. International Journal of Unconventional Computing = Int J Unconv Comput International Journal of Unconventional Computing = Int. J. Unconv. Comput. International Journal of Urban and Regional Research = Int J Urban Regional International Journal of Urban and Regional Research = Int. J. Urban Regional International journal of urban and regional research = Int J Urban Reg Res International Journal of Urban and Regional Research=Int. J. Urban Reg. Res. International Journal of Urological Nursing = Int J Urol Nurs International Journal of Urological Nursing = Int. J. Urol. Nurs. International Journal of Urology=Int J Urol;; International Journal of Urology = Int J Urol International Journal of Urology = Int. J. Urol. International journal of urology : official journal of the Japanese Urological Association = Int J Urol International Journal of Vehicle Autonomous Systems = Int. J. Veh. Auton. Syst. International Journal of Vehicle Design = Int. J. Veh. Des. International Journal of Vehicle Design = Int J Vehicle Des International Journal of Vehicle Design = Int. J. Vehicle Des. International Journal of Vehicle Information and Communication Systems = Int. J. Veh. Inf. Commun. Syst. International Journal of Vehicle Noise and Vibration = Int. J. Veh. Noise Vib. International Journal of Vehicle Safety = Int. J. Veh. Saf. International Journal of Vehicle Systems Modelling and Testing = Int. J. Veh. Syst. Model. Test. International Journal of Ventilation = Int J Vent International Journal of Ventilation = Int. J. Vent. International Journal of Water = Int. J. Water International Journal of Water Resources Development = Int J Water Resour D International Journal of Water Resources Development = Int. J. Water Resour. D. International Journal of Water Resources Development = Int. J. Water Resour. Dev. International Journal of Wavelets Multiresolution and Information Processing = Int J Wavelets Multi International Journal of Wavelets Multiresolution and Information Processing = Int. J. Wavelets Multi. International Journal of Wavelets, Multiresolution and Information Processing = Int. J. Wavelets Multiresolution Inf. Process. International Journal of Web and Grid Services = Int J Web Grid Serv International Journal of Web and Grid Services = Int. J. Web Grid Serv. International Journal of Web Based Communities = Int. J. Web Based Communities International Journal of Web Engineering and Technology = Int. J. Web Eng. Technol. International Journal of Web Services Research = Int J Web Serv Res International Journal of Web Services Research = Int. J. Web Serv. Res. International Journal of Wildland Fire = Int J Wildland Fire International Journal of Wildland Fire = Int. J. Wildland Fire International Journal of Wireless and Mobile Computing = Int. J. Wireless Mobile Comput. International Journal of Wireless Information Networks = Int. J. Wireless Inf. Networks International journal of women's studies = Int J Womens Stud International Journal of Womens Studies = Int J Womens Stud International Journal of Womens Studies = Int. J. Womens Stud. International journal of zoonoses = Int J Zoonoses International Journal of Zoonoses = Int J Zoonoses International Journal of Zoonoses = Int. J. Zoonoses International Journal on Algae = Int. J. Algae International Journal On Artificial Intelligence Tools = Int J Artif Intell T International Journal On Artificial Intelligence Tools = Int. J. Artif. Intell. T. International Journal on Artificial Intelligence Tools = Int. J. Artif. Intell. Tools International Journal On Disability and Human Development = Int J Disabil Hum De International Journal On Disability and Human Development = Int. J. Disabil. Hum. De. International Journal On Document Analysis and Recognition = Int J Doc Anal Recog International Journal On Document Analysis and Recognition = Int. J. Doc. Anal. Recog. International Journal on Document Analysis and Recognition = Int. J. Doc. Anal. Recogn. International Journal on Hydropower and Dams = Int. J. Hydropower Dams International Journal on Interactive Design and Manufacturing = Int. J. Interact. Des. Manuf. International Journal On Semantic Web and Information Systems = Int J Semant Web Inf International Journal On Semantic Web and Information Systems = Int. J. Semant. Web Inf. International Journal on Software Tools for Technology Transfer = Int. J. Softw. Tools Technol. Trans. International Journal On World Peace = Int J World Peace International Journal On World Peace = Int. J. World Peace International Journal Precision Engineering = Int. J. Precis. Eng. International journal (Toronto, Ont.) = Int J International Judicial Institutions = Glob Inst International Judicial Institutions = Glob. Inst. International Knowledge and Innovation Networks: Knowledge Creation and Innovation in Medium-technology Clusters = New Horiz Reg Sci International Knowledge and Innovation Networks: Knowledge Creation and Innovation in Medium-technology Clusters = New. Horiz. Reg. Sci. International Labor and Working-class History = Int Labor Work-class International Labor and Working-class History = Int. Labor Work-class. International Laboratory = Int Lab International Laboratory = Int. Lab. International labour review / International Labour Office = Int Labour Rev International Labour Review = Int Labour Rev International Labour Review = Int. Labour Rev. International Labour Review=Int. Lab. Rev. International Law and International Relations = Contemp Secur Stud International Law and International Relations = Contemp. Secur. Stud. International Law and Municipal Law = Ver Inst In International Law and Municipal Law = Ver. Inst. In. International Law and The Third World: Reshaping Justice = Routl Res Int Law International Law and The Third World: Reshaping Justice = Routl. Res. Int. Law International Lawyer = Int Lawyer International Lawyer = Int. Lawyer International Legal Governance of The Human Genome = Genet Soc International Legal Governance of The Human Genome = Genet. Soc. International Legal Theory = Routl Res Int Law International Legal Theory = Routl. Res. Int. Law. International Lens Design Conference = P Soc Photo-opt Ins International Lens Design Conference = P. Soc. Photo-opt. Ins. International Library of Environmental, Agricultural and Food Ethics = Int Lib Env Agric Fo International Library of Environmental, Agricultural and Food Ethics = Int. Lib. Env. Agric. Fo. International Library of Environmental Agricultural and Food Ethics = Int Libr Environ Agr International Library of Environmental Agricultural and Food Ethics = Int. Libr. Environ. Agr. International Library of Ethics Law and Technology = Int Lib Eth Law Tech International Library of Ethics Law and Technology = Int. Lib. Eth. Law Tech. International Library of Ethics Law and Technology = Int Libr Eth Law Tec International Library of Ethics Law and Technology = Int. Libr. Eth. Law Tec. International Library of Ethics Law and The New Medicine = Int Lib Ethics Law International Library of Ethics Law and The New Medicine = Int. Lib. Ethics Law International Library of Ethics, Law, and The New Medicine = Int Lib Ethics Law International Library of Ethics, Law, and The New Medicine = Int. Lib. Ethics. Law. International Library of Ethics Law and The New Medicine = Int Libr Eth Law New International Library of Ethics Law and The New Medicine = Int. Libr. Eth. Law New International Library of Sociology = Int Libr Sociol International Library of Sociology = Int. Libr. Sociol. International Library of Technical and Vocational Education and Training = Int Lib Tech Vocat E International Library of Technical and Vocational Education and Training = Int. Lib. Tech. Vocat. E. International library review = Int Libr Rev International Library Review = Int Libr Rev International Library Review = Int. Libr. Rev. International Lichenological Newsletter = Int. Lichenol. Newsl. International Look At Educating Young Adolescents = Handb Red Middle Lev International Look At Educating Young Adolescents = Handb. Red. Middle. Lev. International Management Accounting in Japan: Current Status of Electronics Companies = Monden Inst Manag-jp International Management Accounting in Japan: Current Status of Electronics Companies = Monden. Inst. Manag-jp. International Management Knowledge = Int Manage Knowl International Management Knowledge = Int. Manage. Knowl. International maritime health = Int Marit Health International Maritime Health = Int. Marit. Health International Marketing: Emerging Markets = Adv Int Marketing International Marketing: Emerging Markets = Adv. Int. Marketing. International Marketing Research = Adv Int Mar International Marketing Research = Adv. Int. Mar. International Marketing Review = Int Market Rev International Marketing Review = Int. Market. Rev. International Materials Reviews = Int Mater Rev International Materials Reviews = Int. Mater. Rev. International Mathematical News = Internat. Math. News International Mathematical Series = Int Mat Ser International Mathematical Series = Int. Mat. Ser. International Mathematica Symposium = Int Math S International Mathematica Symposium = Int. Math. S. International Mathematics Research Notices = Internat. Math. Res. Notices International Mathematics Research Notices = Int Math Res Notices International Mathematics Research Notices = Int. Math. Res. Notices International Mathematics Research Papers = Int Math Res Pap International Mathematics Research Papers = Int. Math. Res. Pap. International Media Communication in A Global Age = Commun Ser International Media Communication in A Global Age = Commun. Ser. International Mediation in Civil Wars: Bargaining With Bullets = Secur Confl Manag International Mediation in Civil Wars: Bargaining With Bullets = Secur. Confl. Manag. International Medical Journal = Int Med J International Medical Journal = Int. Med. J. International Medicines Regulations = Cmr Worksh International Medicines Regulations = Cmr. Worksh. International Medieval Research = Int Medieval Res International Medieval Research = Int. Medieval Res. International Meeting: Excited Qcd = Acta Phys Pol B Pr S International Meeting: Excited Qcd = Acta. Phys. Pol. B. Pr. S. International Mems Conference 2006 = J Phys Conf Ser International Mems Conference 2006 = J. Phys. Conf. Ser. International Metals Reviews = Int Mater Rev International Metals Reviews = Int. Mater. Rev. International Microbiology = Int Microbiol International Microbiology = Int. Microbiol. International microbiology : the official journal of the Spanish Society for Microbiology = Int Microbiol International migration (Geneva, Switzerland) = Int Migr International Migration in Asia = Oecd Proc International Migration in Asia = Oecd. Proc. International Migration = Int Migr International Migration = Int. Migr. International Migration of Health Workers = Routl Res Popul Migr International Migration of Health Workers = Routl. Res. Popul. Migr. International Migration Review = Int Migr Rev International Migration Review = Int. Migr. Rev. International Monetary Fund: Politics of Conditional Lending = Glob Inst International Monetary Fund: Politics of Conditional Lending = Glob. Inst. International Monetary Fund Staff Papers = Int Monet Fund S Pap International Monetary Fund Staff Papers = Int. Monet. Fund S. Pap. International Monetary Fund Staff Papers=Int. Monet. Fund Staff Pap. International Monograph Series On Early Child Care = Int Monogr Ser Early International Monograph Series On Early Child Care = Int. Monogr. Ser. Early International MS journal / MS Forum = Int MS J International Narcotics Research Conference (inrc 89) = Prog Clin Biol Res International Narcotics Research Conference (inrc 89) = Prog. Clin. Biol. Res. International Negotiation in The Twenty-first Century = U Tex Aust Stud Fore International Negotiation in The Twenty-first Century = U. Tex. Aust. Stud. Fore. International Neural Networks Society Series = Int Neur Netw Soc S International Neural Networks Society Series = Int. Neur. Netw. Soc. S. International Nonwovens Journal = Int. Nonwovens J. International Nuclear Safeguards 1994: Vision for The Future, Vol 1 = P S Iaea International Nuclear Safeguards 1994: Vision for The Future, Vol 1 = P. S. Iaea. International Nuclear Safeguards 1994: Vision for The Future, Vol 2 = P S Iaea International Nuclear Safeguards 1994: Vision for The Future, Vol 2 = P. S. Iaea. International nursing review = Int Nurs Rev International Nursing Review=Int Nurs Rev;; International Nursing Review = Int Nurs Rev International Nursing Review = Int. Nurs. Rev. International Offshore and Polar Engineering Conference Proceedings = Int Offshore Polar E International Offshore and Polar Engineering Conference Proceedings = Int. Offshore Polar E. International Olympic Committee and The Olympic System = Glob Inst International Olympic Committee and The Olympic System = Glob. Inst. International ophthalmology clinics = Int Ophthalmol Clin International Ophthalmology Clinics=Int Ophthalmol Clin;; International Ophthalmology Clinics = Int Ophthalmol Clin International Ophthalmology Clinics = Int. Ophthalmol. Clin. International ophthalmology = Int Ophthalmol International Ophthalmology=Int Ophthalmol;; International Ophthalmology = Int Ophthalmol International Ophthalmology = Int. Ophthalmol. International Optical Design Conference 1998 = P Soc Photo-opt Ins International Optical Design Conference 1998 = P. Soc. Photo-opt. Ins. International Optical Design Conference 2002 = Proc Spie International Optical Design Conference 2002 = Proc. Spie. International Optical Design Conference 2002 = P Soc Photo-opt Ins International Optical Design Conference 2002 = P. Soc. Photo-opt. Ins. International Optical Design Conference 2006, Pts 1 and 2 = P Soc Photo-opt Ins International Optical Design Conference 2006, Pts 1 and 2 = P. Soc. Photo-opt. Ins. International Optical Design Conference 2010 = P Soc Photo-opt Ins International Optical Design Conference 2010 = P. Soc. Photo-opt. Ins. International Organisations and Space Law: Their Role and Contributions = Esa Sp Publ International Organisations and Space Law: Their Role and Contributions = Esa. Sp. Publ. International Organization for Standardization (iso) = Glob Inst International Organization for Standardization (iso) = Glob. Inst. International organization = Int Organ International Organization=Int. Organ. International Organization = Int Organ International Organization = Int. Organ. International Organizations and Higher Education Policy: Thinking Globally, Acting Locally? = Int Stud High Educ International Organizations and Higher Education Policy: Thinking Globally, Acting Locally? = Int. Stud. High. Educ. International Organizations and Lifelong Learning: From Global Agendas to Policy Diffusion = Transform State International Organizations and Lifelong Learning: From Global Agendas to Policy Diffusion = Transform. State. International Organizations in Global Environmental Governance = Environm Polit Ser International Organizations in Global Environmental Governance = Environm. Polit. Ser. International Organizations in Global Environmental Governance = Environ Polit Ser International Organizations in Global Environmental Governance = Environ. Polit. Ser. International orthopaedics = Int Orthop International Orthopaedics=Int Orthop;; International Orthopaedics = Int Orthop International Orthopaedics = Int. Orthop. International Pan Pacific Conference Proceedings = P Tech As P International Pan Pacific Conference Proceedings = P. Tech. As. P. International Papers in Political Economy = Int Pap Polit Econ International Papers in Political Economy = Int. Pap. Polit. Econ. International Parallel and Distributed Processing Symposium (ipdps) = Int Parall Distrib P International Parallel and Distributed Processing Symposium (ipdps) = Int. Parall. Distrib. P. International Parallel and Distributed Processing Symposium Ipdps = Int Parall Distrib P International Parallel and Distributed Processing Symposium Ipdps = Int. Parall. Distrib. P. International Parallel Processing Symposium. Proceedings = Ipps Proc International Parallel Processing Symposium. Proceedings = Ipps. Proc. International Peat Journal = Int. Peat J. International Perspectives = Adv Learn Behav Disa International Perspectives = Adv. Learn. Behav. Disa. International Perspectives and Challenges in Human Resource Management = U Cal I Ind International Perspectives and Challenges in Human Resource Management = U. Cal. I. Ind. International Perspectives = Int Perspect International Perspectives = Int. Perspect. International Perspectives On Bilingual Education: Policy, Practice, and Controversy = Int Persp Educ Polic International Perspectives On Bilingual Education: Policy, Practice, and Controversy = Int. Persp. Educ. Polic. International Perspectives On Community Care for Older People = Aveb St Car Commun International Perspectives On Community Care for Older People = Aveb. St. Car. Commun. International Perspectives On Contexts, Communities and Evaluated Innovative Practices - Family-school-community Partnerships = Contexts Learn International Perspectives On Contexts, Communities and Evaluated Innovative Practices - Family-school-community Partnerships = Contexts. Learn. International Perspectives On Curriculum = Int Perspect Curric International Perspectives On Curriculum = Int. Perspect. Curric. International Perspectives On Early Childhood Education and Development = Int Perspect Early C International Perspectives On Early Childhood Education and Development = Int. Perspect. Early C. International Perspectives On Educational Policy Research and Practice = Int Persp Educ Polic International Perspectives On Educational Policy Research and Practice = Int. Persp. Educ. Polic. International Perspectives On Education and Society = Int Persp Educ Soc International Perspectives On Education and Society = Int. Persp. Educ. Soc. International Perspectives On Entrepreneurship Research = Adv Ser Manage International Perspectives On Entrepreneurship Research = Adv. Ser. Manage. International Perspectives On Forensic Mental Health = Int Persp Foren Ment International Perspectives On Forensic Mental Health = Int. Persp. Foren. Ment. International Perspectives On Gender and Mathematics Education = Int Perspect Math Ed International Perspectives On Gender and Mathematics Education = Int. Perspect. Math. Ed. International Perspectives On Mathematics Education-cognition Equity and Society = Int Perspect Math Ed International Perspectives On Mathematics Education-cognition Equity and Society = Int. Perspect. Math. Ed. International Perspectives On Sexual and Reproductive Health = Int Perspect Sex R H International Perspectives On Sexual and Reproductive Health = Int. Perspect. Sex. R. H. International Perspectives On Social Justice in Mathematics Education = Mont Math Enthus Mon International Perspectives On Social Justice in Mathematics Education = Mont. Math. Enthus. Mon. International Perspectives On Streamlining Local-level Information for Sustainable Forest Management = Pacif For C International Perspectives On Streamlining Local-level Information for Sustainable Forest Management = Pacif. For. C. International Perspectives On Student Outcomes and Homework: Family-school-community Partnerships = Contexts Learn International Perspectives On Student Outcomes and Homework: Family-school-community Partnerships = Contexts. Learn. International Perspectives On Teachers and Lecturers in Technical and Vocational Education = Tech Vocat Ed Train International Perspectives On Teachers and Lecturers in Technical and Vocational Education = Tech. Vocat. Ed. Train. International Perspectives Series : Psychiatry, Psychology, and Neuroscience = Int Per Ppn International Perspectives Series : Psychiatry, Psychology, and Neuroscience = Int. Per. Ppn. International Pespectives On Forensic Mental Health = Int Persp Foren International Pespectives On Forensic Mental Health = Int. Persp. Foren. International Pharmacopsychiatry = Int Pharmacopsychiat International Pharmacopsychiatry = Int. Pharmacopsychiat. International pharmacopsychiatry = Int Pharmacopsychiatry International Pharmacopsychiatry = Int. Pharmacopsychiatry International Philosophical Quarterly = Int Philos Quart International Philosophical Quarterly = Int. Philos. Quart. International Philosophical Quarterly = IPQ International philosophical quarterly : IPQ = Int Philos Q International planned parenthood news = Int Plann Parenthood News International Policy Coordination and Exchange Rate Fluctuations = Nber Conf R International Policy Coordination and Exchange Rate Fluctuations = Nber. Conf. R. International Policy Review=Int. Pol. Rev. International Political Economy and Poststructural Politics = Int Polit Econ Ser International Political Economy and Poststructural Politics = Int. Polit. Econ. Ser. International Political Economy Series = Int Pol Ec International Political Economy Series = Int. Pol. Ec. International Political Economy Series = Int Polit Econ Ser International Political Economy Series = Int. Polit. Econ. Ser. International Political Risk Management = Int Pol Rik Mgt International Political Risk Management = Int. Pol. Rik. Mgt. International Political Risk Management, Vol 4 = Int Pol Rik Mgt International Political Risk Management, Vol 4 = Int. Pol. Rik. Mgt. International Political Science Review = Int Polit Sci Rev International Political Science Review = Int. Polit. Sci. Rev. International Political Sociology = Int Polit Sociol International Political Sociology = Int. Polit. Sociol. International Political Theory Series = Int Polit Theor Ser International Political Theory Series = Int. Polit. Theor. Ser. International Political Thought of Carl Schmitt = Rout Innov Poli Theo International Political Thought of Carl Schmitt = Rout. Innov. Poli. Theo. International Political Thought of Carl Schmitt = Routl Innov Polit Th International Political Thought of Carl Schmitt = Routl. Innov. Polit. Th. International Politics = Int Politics International Politics = Int. Politics International Politics of Democratization: Comparative Perspectives = Rout Res Comp Poli International Politics of Democratization: Comparative Perspectives = Rout. Res. Comp. Poli. International Politics of Eurosia = Int Pol Eur International Politics of Eurosia = Int. Pol. Eur. International Politics of Judicial Intervention: Creating A More Just Order = New Int Relat International Politics of Judicial Intervention: Creating A More Just Order = New. Int. Relat. International Politics of Space = Space Power Polit International Politics of Space = Space Power. Polit. International Politics of The Asia-pacific, 3rd and Revised Edition = Polit Asia International Politics of The Asia-pacific, 3rd and Revised Edition = Polit. Asia. International Polymer Processing = Int Polym Proc International Polymer Processing = Int. Polym. Proc. International Polymer Processing = Int. Polym. Process. International Population Conference, Montreal, 1993, Vols 1-4 = Iussp Pop C International Population Conference, Montreal, 1993, Vols 1-4 = Iussp. Pop. C. International Power Electronics and Motion Control Conference Epe Pemc = Int Power Elect Mot International Power Electronics and Motion Control Conference Epe Pemc = Int. Power Elect. Mot. International Power Electronics Electrical Drives Automation and Motion Speedam = Int Power Elect Elec International Power Electronics Electrical Drives Automation and Motion Speedam = Int. Power Elect. Elec. International Productivity Difference = Contrib To Econ Anal International Productivity Difference = Contrib. To. Econ. Anal. International Professional Communication Conference = Int Pro Com International Professional Communication Conference = Int. Pro. Com. International psychiatry clinics = Int Psychiatry Clin International Psychiatry Clinics = Int. Psychiatry Clin. International Psychogeriatrics=Int Psychogeriatr;; International Psychogeriatrics = Int Psychogeriatr International Psychogeriatrics = Int. Psychogeriatr. International psychogeriatrics / IPA = Int Psychogeriatr International Public Health Policy and Ethics = Int Libr Eth Law New International Public Health Policy and Ethics = Int. Libr. Eth. Law. New. International Public Management Journal = Int Public Manag J International Public Management Journal = Int. Public Manag. J. International quarterly of community health education = Int Q Community Health Educ International Railway Conference On Better Journey Time - Better Business = Imeche Conf Trans International Railway Conference On Better Journey Time - Better Business = Imeche. Conf. Trans. International record of medicine and general practice clinics = Int Rec Med Gen Pract Clin International record of medicine = Int Rec Med International Record of Medicine = Int Rec Med Gp Clin International Record of Medicine = Int. Rec. Med. Gp. Clin. International Reference Ionosphere - Workshop 1999 = Adv Space Res International Reference Ionosphere - Workshop 1999 = Adv. Space. Res. International Regional Science Review = Int Regional Sci Rev International Regional Science Review = Int. Regional Sci. Rev. International regional science review = Int Reg Sci Rev International Regional Science Review=Int. Reg. Sci. Rev. International rehabilitation medicine = Int Rehabil Med International Rehabilitation Medicine = Int. Rehabil. Med. International Relations and Security in The Digital Age = Routl Adv Int Relat International Relations and Security in The Digital Age = Routl. Adv. Int. Relat. International Relations in Europe: Traditions, Perspectives and Destinations = Routl Adv Int Relat International Relations in Europe: Traditions, Perspectives and Destinations = Routl. Adv. Int. Relat. International Relations = Int Relat International Relations = Int. Relat. International Relations of The Asia-pacific = Int Relat Asia-pac International Relations of The Asia-pacific = Int. Relat. Asia-pac. International Reliability Physics Symposium = Int Rel Phy International Reliability Physics Symposium = Int. Rel. Phy. International Requirements Engineering Conference Proceedings = Int Requir Eng Conf International Requirements Engineering Conference Proceedings = Int. Requir. Eng. Conf. International rescuer = Int Rescuer International Rescuer = Int. Rescuer International Research in The Business Disciplines = Int Res Bus Discipl International Research in The Business Disciplines = Int. Res. Bus. Discipl. International Research On School Leadership = Int Res Sch Leadersh International Research On School Leadership = Int. Res. Sch. Leadersh. International Review for The Sociology of Sport = Int Rev Sociol Sport International Review for The Sociology of Sport = Int. Rev. Sociol. Sport International Review of Administrative Sciences = Int Rev Adm Sci International Review of Administrative Sciences = Int. Rev. Adm. Sci. International Review of African American Art = Int Rev Afr Am Art International Review of African American Art = Int. Rev. Afr. Am. Art International Review of Applied Economics=Int. Rev. Appl. Econ. International Review of Applied Psychology-revue Internationale De Psychologie Appliquee = Int Rev Appl Psychol International Review of Applied Psychology-revue Internationale De Psychologie Appliquee = Int. Rev. Appl. Psychol. International Review of Cell and Molecular Biology = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 266 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 266 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 267 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 267 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 268 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 268 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 269 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 269 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 270 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 270 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 271 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 271 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 272 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 272 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 273 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 273 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 274 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 274 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 275 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 275 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 276 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 276 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 277 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 277 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 278 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 278 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 279 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 279 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 280 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 280 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 281 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 281 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 282 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 282 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 283 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 283 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 284 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 284 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 285 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 285 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 286 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 286 = Int. Rev. Cel. Mol. Bio. International Review of Cell and Molecular Biology, Vol 289 = Int Rev Cel Mol Bio International Review of Cell and Molecular Biology, Vol 289 = Int. Rev. Cel. Mol. Bio. International Review of Comparative Public Policy : A Research Annual = Int Rev Com International Review of Comparative Public Policy : A Research Annual = Int. Rev. Com. International Review of Connective Tissue Research = Int Rev Connect Tiss International Review of Connective Tissue Research = Int. Rev. Connect. Tiss. International review of connective tissue research = Int Rev Connect Tissue Res International Review of Connective Tissue Research = Int. Rev. Connect. Tissue Res. International Review of Cytology-a Survey of Cell Biology = Int Rev Cytol International Review of Cytology-a Survey of Cell Biology = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 143 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 143 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 144 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 144 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 145 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 145 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 146 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 146 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 147 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 147 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 148 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 148 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 149 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 149 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 150 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 150 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 151 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 151 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 152 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 152 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 153 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 153 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 154 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 154 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 155 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 155 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 156 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 156 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 157 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 157 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 158 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 158 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 159 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 159 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 160 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 160 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 161 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 161 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 165 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 165 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 166 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 166 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 167 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 167 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 168 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 168 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 169 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 169 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 171 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 171 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 172 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 172 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 173 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 173 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 174 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 174 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 175 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 175 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 176 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 176 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 177 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 177 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 178 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 178 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 180 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 180 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 181 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 181 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 182 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 182 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 183 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 183 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 184 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 184 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 185 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 185 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 186 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 186 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 187 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 187 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 188 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 188 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 189 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 189 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 190 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 190 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 191 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 191 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 192 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 192 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 193 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 193 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 194 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 194 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 195 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 195 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 196 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 196 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 197 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 197 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 198 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 198 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 199 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 199 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 200 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 200 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 201 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 201 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 202 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 202 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 203 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 203 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 204 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 204 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 205 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 205 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 206 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 206 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 207 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 207 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 208 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 208 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 209 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 209 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 210 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 210 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 211 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 211 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 212 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 212 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 213 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 213 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 214 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 214 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 215 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 215 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 216 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 216 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 217 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 217 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 218 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 218 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 219 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 219 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 220 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 220 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 221 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 221 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 222 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 222 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 223 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 223 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 224 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 224 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 226 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 226 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 228 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 228 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 229 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 229 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 230 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 230 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 231 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 231 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 232 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 232 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 233 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 233 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 234 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 234 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 235 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 235 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 236 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 236 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 237 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 237 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 238 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 238 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 239 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 239 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 240 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 240 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 241 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 241 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol. 242 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol. 242 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 243 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 243 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 244 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 244 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 245 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 245 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 246 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 246 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 247 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 247 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 248 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 248 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 249 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 249 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 250 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 250 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 251 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 251 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 252 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 252 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 253 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 253 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 254 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 254 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 255 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 255 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 256 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 256 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 257 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 257 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 258 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 258 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 259 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 259 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 260 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 260 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 261 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 261 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 262 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 262 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 263 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 263 = Int. Rev. Cytol. International Review of Cytology: A Survey of Cell Biology, Vol 265 = Int Rev Cytol International Review of Cytology: A Survey of Cell Biology, Vol 265 = Int. Rev. Cytol. International Review of Cytology - A Survey of Cell Biology, Vol 27 = Int Rev Cytol International Review of Cytology - A Survey of Cell Biology, Vol 27 = Int. Rev. Cytol. International review of cytology = Int Rev Cytol International Review of Cytology=Int Rev Cytol;; International Review of Cytology = Int. Rev. Cytol. International review of cytology. Supplement = Int Rev Cytol Suppl International Review of Cytology. Supplement = Int. Rev. Cytol. Suppl. International Review of Cytology, Vol 162a = Int Rev Cytol International Review of Cytology, Vol 162a = Int. Rev. Cytol. International Review of Cytology, Vol 162b = Int Rev Cytol International Review of Cytology, Vol 162b = Int. Rev. Cytol. International Review of Cytology, Vol 163 = Int Rev Cytol International Review of Cytology, Vol 163 = Int. Rev. Cytol. International Review of Economics and Finance=Int. Rev. Econ. Finance International Review of Economics & Finance = Int Rev Econ Financ International Review of Economics & Finance = Int. Rev. Econ. Financ. International review of education. Internationale Zeitschrift fur Erziehungswissenschaft. Revue internationale de pedagogie = Int Rev Educ International Review of Education = Int Rev Educ International Review of Education = Int. Rev. Educ. International Review of Electrical Engineering-iree = Int Rev Electr Eng-i International Review of Electrical Engineering-iree = Int. Rev. Electr. Eng-i. International review of experimental pathology = Int Rev Exp Pathol International Review of Experimental Pathology=Int Rev Exp Pathol;; International Review of Experimental Pathology = Int Rev Exp Pathol International Review of Experimental Pathology = Int. Rev. Exp. Pathol. International Review of Experimental Pathology, Vol 35 = Int Rev Exp Pathol International Review of Experimental Pathology, Vol 35 = Int. Rev. Exp. Pathol. International Review of Experimental Pathology, Vol 36: New in Vivo and in Vitro Imaging Techniques = Int Rev Exp Pathol International Review of Experimental Pathology, Vol 36: New in Vivo and in Vitro Imaging Techniques = Int. Rev. Exp. Pathol. International Review of Financial Analysis=Int. Rev. Finan. Anal. International Review of History and Political Science = Int Rev Hist Pol Sci International Review of History and Political Science = Int. Rev. Hist. Pol. Sci. International Review of History Education = Inter Rev Hist Educ International Review of History Education = Inter. Rev. Hist. Educ. International Review of History Education = Int Rev Hist Educ International Review of History Education = Int. Rev. Hist. Educ. International Review of Hydrobiology = Int Rev Hydrobiol International Review of Hydrobiology = Int. Rev. Hydrobiol. International Review of Industrial and Organizational Psychology 2008, Vol 23 = Int Rev Ind Organ Ps International Review of Industrial and Organizational Psychology 2008, Vol 23 = Int. Rev. Ind. Organ. Ps. International Review of Industrial and Organizational Psychology 2009, Vol 24 = Int Rev Ind Organ Ps International Review of Industrial and Organizational Psychology 2009, Vol 24 = Int. Rev. Ind. Organ. Ps. International Review of Industrial and Organizational Psychology, 2010, Vol 25 = Int Rev Ind Organ Ps International Review of Industrial and Organizational Psychology, 2010, Vol 25 = Int. Rev. Ind. Organ. Ps. International Review of Industrial and Organizational Psychology = Int Rev Ind Organ Ps International Review of Industrial and Organizational Psychology = Int. Rev. Ind. Organ. Ps. International Review of Law and Economics=Int. Rev. Law Econ. International Review of Law and Economics = Int Rev Law Econ International Review of Law and Economics = Int. Rev. Law Econ. International review of missions = Int Rev Missions International Review of Modern Sociology = Int Rev Mod Sociol International Review of Modern Sociology = Int. Rev. Mod. Sociol. International Review Of Modern Sociology = Int Rev Mod Sociol International review of natural family planning = Int Rev Nat Fam Plann International review of neurobiology = Int Rev Neurobiol International Review of Neurobiology=Int Rev Neurobiol;; International Review of Neurobiology = Int Rev Neurobiol International Review of Neurobiology = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 35 = Int Rev Neurobiol International Review of Neurobiology, Vol 35 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 36 = Int Rev Neurobiol International Review of Neurobiology, Vol 36 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 38 = Int Rev Neurobiol International Review of Neurobiology, Vol 38 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 39 = Int Rev Neurobiol International Review of Neurobiology, Vol 39 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 42 = Int Rev Neurobiol International Review of Neurobiology, Vol 42 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 48 = Int Rev Neurobiol International Review of Neurobiology, Vol 48 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 54 = Int Rev Neurobiol International Review of Neurobiology, Vol 54 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 56 = Int Rev Neurobiol International Review of Neurobiology, Vol 56 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 62 = Int Rev Neurobiol International Review of Neurobiology, Vol 62 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 63 = Int Rev Neurobiol International Review of Neurobiology, Vol 63 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 65 = Int Rev Neurobiol International Review of Neurobiology, Vol 65 = Int. Rev. Neurobiol. International Review of Neurobiology, Vol 73 = Int Rev Neurobiol International Review of Neurobiology, Vol 73 = Int. Rev. Neurobiol. International review of physiology = Int Rev Physiol International Review of Physiology = Int Rev Physiol International Review of Physiology = Int. Rev. Physiol. International Review of Poultry Science = Int. Rev. Poult. Sci. International review of psychiatry (Abingdon, England) = Int Rev Psychiatry International Review of Psychiatry = Int Rev Psychiatr International Review of Psychiatry = Int. Rev. Psychiatr. International Review of Psycho-analysis = Int Rev Psycho-anal International Review of Psycho-analysis = Int. Rev. Psycho-anal. International Review of Research in Mental Retardation = Int Rev Res Ment Ret International Review of Research in Mental Retardation = Int. Rev. Res. Ment. Ret. International review of research in mental retardation = Int Rev Res Ment Retard International Review of Research in Mental Retardation, Vol 19 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 19 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 21 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 21 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 22 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 22 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 23 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 23 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 24 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 24 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 25 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 25 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 26 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 26 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 27 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 27 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol. 29 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol. 29 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 32 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 32 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 33 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 33 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 35 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 35 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 36 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 36 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 37 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 37 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 38 = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 38 = Int. Rev. Res. Ment. Ret. International Review of Research in Mental Retardation, Vol 39: Health Issues Among Persons With Down Syndrome = Int Rev Res Ment Ret International Review of Research in Mental Retardation, Vol 39: Health Issues Among Persons With Down Syndrome = Int. Rev. Res. Ment. Ret. International Review of Research in Open and Distance Learning = Int Rev Res Open Dis International Review of Research in Open and Distance Learning = Int. Rev. Res. Open Dis. International review of social history / International Instituut voor Sociale Geschiedenis, Amsterdam = Int Rev Soc Hist International Review of Social History = Int Rev Soc Hist International Review of Social History = Int. Rev. Soc. Hist. International Review of The Aesthetics and Sociology of Music = Int Rev Aesthet Soc International Review of The Aesthetics and Sociology of Music = Int. Rev. Aesthet. Soc. International Review of The Red Cross = Int Rev Red Cross International Review of The Red Cross = Int. Rev. Red Cross International review of tropical medicine = Int Rev Trop Med International Review of Tropical Medicine = Int. Rev. Trop. Med. International Review Or Cytology - A Survey of Cell Biology, Vol 225 = Int Rev Cytol International Review Or Cytology - A Survey of Cell Biology, Vol 225 = Int. Rev. Cytol. International Reviews in Physical Chemistry = Int Rev Phys Chem International Reviews in Physical Chemistry = Int. Rev. Phys. Chem. International Reviews of Ergonomics = Int Rev Ergon International Reviews of Ergonomics = Int. Rev. Ergon. International reviews of immunology = Int Rev Immunol International Reviews of Immunology=Int Rev Immunol;; International Reviews of Immunology = Int Rev Immunol International Reviews of Immunology = Int. Rev. Immunol. International review (Steubenville, Ohio) = Int Rev International Rilem Conference On Material Science (matsci), Vol Iii = Rilem Proc International Rilem Conference On Material Science (matsci), Vol Iii = Rilem Proc. International Rilem Conference On Material Science (matsci), Vol Ii = Rilem Proc International Rilem Conference On Material Science (matsci), Vol Ii = Rilem Proc. International Rilem Conference On Material Science (matsci), Vol I = Rilem Proc International Rilem Conference On Material Science (matsci), Vol I = Rilem Proc. International Rilem Workshop On Life Prediction and Aging Management of Concrete Structures = Rilem Proc International Rilem Workshop On Life Prediction and Aging Management of Concrete Structures = Rilem Proc. International Rilem Workshop On Shrinkage of Concrete, Shrinkage 2000, Proceedings = Rilem Proc International Rilem Workshop On Shrinkage of Concrete, Shrinkage 2000, Proceedings = Rilem Proc. International Risk Governance Council Bookseries = Int Risk Gov Counc B International Risk Governance Council Bookseries = Int. Risk Gov. Counc. B. International Sales of Works of Art = Icc Publ International Sales of Works of Art = Icc. Publ. International Sampe Electronics Conference Series = Int Sampe E International Sampe Electronics Conference Series = Int. Sampe E. International SAMPE Symposium and Exhibition = Int. SAMPE Symp. Exhib. International Sampe Technical Conference Series = Int Sampe Tech Conf International Sampe Technical Conference Series = Int. Sampe Tech. Conf. International Sanctions: Between Words and Wars in The Global System = Cass Ser Peacekeepin International Sanctions: Between Words and Wars in The Global System = Cass. Ser. Peacekeepin. International School of Nuclear Physics 26th Course: Lepton Scattering and The Structure of Hadrons and Nuclei = Prog Part Nucl Phys International School of Nuclear Physics 26th Course: Lepton Scattering and The Structure of Hadrons and Nuclei = Prog. Part. Nucl. Phys. International School of Plasma Physics - Piero Caldirola = Int Sch Pl International School of Plasma Physics - Piero Caldirola = Int. Sch. Pl. International Schools for Computer Scientists = Internat. Schools Comput. Sci. International science review series = Int Sci Rev Ser International Scientific Conference: Engineering for Rural Development = Eng Rur Develop International Scientific Conference: Engineering for Rural Development = Eng. Rur. Develop. International security = Int Secur International Security = Int Security International Security = Int. Security International Semiconductor Conference = Int Semiconduct Con International Semiconductor Conference = Int. Semiconduct. Con. International Seminar On Application of Powertrain and Fuel Technologies to Meet Emissions Standards = Imeche Conf Trans International Seminar On Application of Powertrain and Fuel Technologies to Meet Emissions Standards = Imeche. Conf. Trans. International Seminar On Elastomers = Appl Polym Symp Ser International Seminar On Elastomers = Appl. Polym. Symp. Ser. International Seminar On Novel Trends in Nonlinear Laser Spectroscopy and High-precision Measurements in Optics = P Soc Photo-opt Ins International Seminar On Novel Trends in Nonlinear Laser Spectroscopy and High-precision Measurements in Optics = P. Soc. Photo-opt. Ins. International Seminar On Nuclear War and Planetary Emergencies - 22nd Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 22nd Session = Sci. Cult. Nucl. Strat. International Seminar On Nuclear War and Planetary Emergencies - 27th Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 27th Session = Sci. Cult. Nucl. Strat. International Seminar On Nuclear War and Planetary Emergencies - 30th Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 30th Session = Sci. Cult. Nucl. Strat. International Seminar On Nuclear War and Planetary Emergencies - 31st Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 31st Session = Sci. Cult. Nucl. Strat. International Seminar On Nuclear War and Planetary Emergencies - 32nd Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 32nd Session = Sci. Cult. Nucl. Strat. International Seminar On Nuclear War and Planetary Emergencies - 38th Session = Sci Cult Nucl Strat International Seminar On Nuclear War and Planetary Emergencies - 38th Session = Sci. Cult. Nucl. Strat. International Seminar On Optical Methods and Data Processing in Heat and Fluid Flow = Imeche Conf Trans International Seminar On Optical Methods and Data Processing in Heat and Fluid Flow = Imeche. Conf. Trans. International Seminar On Science and Technology of Glass Materials (isstgm 2009) = Iop Conf Ser-mat Sci International Seminar On Science and Technology of Glass Materials (isstgm 2009) = Iop. Conf. Ser-mat. Sci. International seminars in surgical oncology : ISSO = Int Semin Surg Oncol International Seminars On Nuclear War and Planetary Emergencies - 36th Session = Sci Cult Nucl Strat International Seminars On Nuclear War and Planetary Emergencies - 36th Session = Sci. Cult. Nucl. Strat. International Series in Experimental Social Psychology = In S Ex Soc International Series in Experimental Social Psychology = In. S. Ex. Soc. International Series in Intelligent Technologies = Internat. Ser. Intell. Tech. International Series in Operations Research & Management Science = Internat. Ser. Oper. Res. Management Sci. International Series in Operations Research & Management Science = Int Ser Oper Res Man International Series in Operations Research & Management Science = Int. Ser. Oper. Res. Man. International Series in Quantitative Marketing = Int S Quant Market International Series in Quantitative Marketing = Int. S. Quant. Market. International Series in Quantitive Marketing = Int Ser Quant Market International Series in Quantitive Marketing = Int. Ser. Quant. Market. International Series in Video Computing = Int Ser Video Comput International Series in Video Computing = Int. Ser. Video Comput. International Series of Monographs on Chemistry = Internat. Ser. Monogr. Chem. International series of monographs on oral biology = Int Ser Monogr Oral Biol International Series of Monographs on Physics = Internat. Ser. Monogr. Phys. International Series of Numerical Mathematics = Internat. Ser. Numer. Math. International Series of Numerical Mathematics = Int Ser Numer Math International Series of Numerical Mathematics = Int. Ser. Numer. Math. International Series of Numerical Mathematics = Int S Num M International Series of Numerical Mathematics = Int. S. Num. M. International Series On Advances in Architecture = Int Ser Adv Archit International Series On Advances in Architecture = Int. Ser. Adv. Archit. International Series On Advances in High Performance Computing = Int Ser Adv High Per International Series On Advances in High Performance Computing = Int. Ser. Adv. High Per. International Series on Computational Engineering = Internat. Ser. Comput. Engrg. International Series On Computational Engineering = Int S Comp International Series On Computational Engineering = Int. S. Comp. International Series On Consumer Science = Int Ser Consum Sci International Series On Consumer Science = Int. Ser. Consum. Sci. International Series On Developments in Heat Transfer = Int Ser Dev Heat Tra International Series On Developments in Heat Transfer = Int. Ser. Dev. Heat Tra. International Series On Microprocessor-based and Intelligent Systems Engineering = Int S Micro International Series On Microprocessor-based and Intelligent Systems Engineering = Int. S. Micro. International Series On Progress in Water Resources = Int Ser Prog Wat Res International Series On Progress in Water Resources = Int. Ser. Prog. Wat. Res. International Series On Sport Sciences = Int S Sport International Series On Sport Sciences = Int. S. Sport International Series On Technical Innovation and Entrepreneurship = In Tech In International Series On Technical Innovation and Entrepreneurship = In. Tech. In. International Series On Technology Policy and Innovation = Int Ser Technol Poli International Series On Technology Policy and Innovation = Int. Ser. Technol. Poli. International Series On Technology Policy and Innovation = Int S Techn Pol Inn International Series On Technology Policy and Innovation = Int. S. Techn. Pol. Inn. International Series On The Strength and Fracture of Materials and Structures = Int S Stren International Series On The Strength and Fracture of Materials and Structures = Int. S. Stren. International Siberian Workshops and Tutorials On Electron Devices and Materials = Int Sib Workshops Tu International Siberian Workshops and Tutorials On Electron Devices and Materials = Int. Sib. Workshops Tu. International Small Business Journal = Int Small Bus J International Small Business Journal = Int. Small Bus. J. International Smoked Seafood Conference Proceedings = Uasgcp Rep International Smoked Seafood Conference Proceedings = Uasgcp. Rep. International Social Development Review = Int Soc Dev Rev International Social Development Review = Int. Soc. Dev. Rev. International Socialist review = Int Social Rev International social science journal = Int Soc Sci J International Social Science Journal=Int. Soc. Sci. J. International Social Science Journal = Int Soc Sci J International Social Science Journal = Int. Soc. Sci. J. International social science review = Int Soc Sci Rev International Social Science Review = Int Soc Sci Rev International Social Science Review = Int. Soc. Sci. Rev. International social security review = Int Soc Secur Rev International Social Studies Forum Series = Int Soc Stud Forum S International Social Studies Forum Series = Int. Soc. Stud. Forum S. International Social Survey Programme, 1984-2009: Charting The Globe = Soc Res Today International Social Survey Programme, 1984-2009: Charting The Globe = Soc. Res. Today. International social work = Int Soc Work International Social Work = Int Soc Work International Social Work = Int. Soc. Work International Society and The Middle East: English School Theory At The Regional Level = Palgr Stud Int Relat International Society and The Middle East: English School Theory At The Regional Level = Palgr. Stud. Int. Relat. International Society for Analysis, Applications and Computation = Int Soc Anal App Com International Society for Analysis, Applications and Computation = Int. Soc. Anal. App. Com. International Society for Analysis, Applications and Computation = Int. Soc. Anal. Appl. Comput. International Society for Applied Cardiovascular Biology = Int S App C International Society for Applied Cardiovascular Biology = Int. S. App. C. International Society for Ecological Economics Sers = Int S Ecol Econ Ser International Society for Ecological Economics Sers = Int. S. Ecol. Econ. Ser. International Society for Photogrammetry and Remote Sensing (isprs) = Int Soc Photogramme International Society for Photogrammetry and Remote Sensing (isprs) = Int. Soc. Photogramme. International Society of Business Economics and Ethics Book Series = Int Soc Bus Econ Eth International Society of Business Economics and Ethics Book Series = Int. Soc. Bus. Econ. Eth. International Sociology = Int Sociol International Sociology = Int. Sociol. International sociology : journal of the International Sociological Association = Int Sociol International Solar Cycle Study (iscs) = Adv Space Res International Solar Cycle Study (iscs) = Adv. Space. Res. International Solar Cycle Study (iscs) = Adv Space Res-series International Solar Cycle Study (iscs) = Adv. Space. Res-series. International Space Station = Space Sci Explor Pol International Space Station = Space Sci. Explor. Pol. International Space Station: The Next Space Marketplace = Spac Stud International Space Station: The Next Space Marketplace = Spac. Stud. International Sportmed Journal = Int Sportmed J International Sportmed Journal = Int. Sportmed J. International Spring Seminar On Electronics Technology Isse = Int Spr Sem Elect Te International Spring Seminar On Electronics Technology Isse = Int. Spr. Sem. Elect. Te. International Statistical Review = Int Stat Rev International Statistical Review = Int. Stat. Rev. International Struggle for New Human Rights = Pa Stud Hum Rights International Struggle for New Human Rights = Pa. Stud. Hum. Rights International Studies East Asian Series Research Publication = Int Stud E Asian R P International Studies East Asian Series Research Publication = Int. Stud. E. Asian R. P. International Studies in Demography = Int St Demog International Studies in Demography = Int. St. Demog. International Studies in Economic Modelling = Int St Ec M International Studies in Economic Modelling = Int. St. Ec. M. International Studies in Economics and Econometrics = Int St Econ International Studies in Economics and Econometrics = Int. St. Econ. International Studies in Entrepreneurship = Int Stud Entre International Studies in Entrepreneurship = Int. Stud. Entre. International Studies in Entrepreneurship = Int Stud Entrep International Studies in Entrepreneurship = Int. Stud. Entrep. International Studies in Environmental Policy Making = Int Stud Environm Po International Studies in Environmental Policy Making = Int. Stud. Environm. Po. International Studies in Higher Education = Int Stud High Educ International Studies in Higher Education = Int. Stud. High. Educ. International Studies in Human Rights = Int Stud H International Studies in Human Rights = Int. Stud. H. International Studies in Philosophy = Int Stud Philos International Studies in Philosophy = Int. Stud. Philos. International Studies in Philosophy = ISPh International Studies in Philosophy Monograph Series = Int Stud Philos Mono International Studies in Philosophy Monograph Series = Int. Stud. Philos. Mono. International Studies in Physical Education and Youth Sport = Int Stud Phys Educ Y International Studies in Physical Education and Youth Sport = Int. Stud. Phys. Educ. Y. International Studies in Population = Intl Studies Populat International Studies in Population = Intl. Studies Populat. International Studies in Population = Int Stud Popul International Studies in Population = Int. Stud. Popul. International Studies in the Philosophy of Science = Internat. Stud. Philos. Sci. International Studies On Sign Language and Communication of The Deaf = Int Stud Sign Lang C International Studies On Sign Language and Communication of The Deaf = Int. Stud. Sign Lang. C. International Studies On Social Security = Int Stud Social Sec International Studies On Social Security = Int. Stud. Social Sec. International Studies Perspectives = Int Stud Perspect International Studies Perspectives = Int. Stud. Perspect. International studies quarterly : a publication of the International Studies Association = Int Stud Q International Studies Quarterly = Int Stud Quart International Studies Quarterly = Int. Stud. Quart. International Studies Review = Int Stud Rev International Studies Review = Int. Stud. Rev. International Sugar Journal = Int Sugar J International Sugar Journal = Int. Sugar J. International surgery = Int Surg International Surgery=Int Surg;; International Surgery = Int Surg International Surgery = Int. Surg. International Symp On Multiple-valued Logic - Proceedings = Int Sym Mvl International Symp On Multiple-valued Logic - Proceedings = Int. Sym. Mvl. International Symposia in Economic Theory and Econometrics = Internat. Sympos. Econom. Theory Econometrics International Symposia in Economic Theory and Econometrics = Int Symp Ec International Symposia in Economic Theory and Econometrics = Int. Symp. Ec. International Symposium : Integrated Management of Watersheds for Multiple Use = Usda Rocky International Symposium : Integrated Management of Watersheds for Multiple Use = Usda. Rocky. International Symposium On Advanced Nanodevices and Nanotechnology = J Phys Conf Ser International Symposium On Advanced Nanodevices and Nanotechnology = J. Phys. Conf. Ser. International Symposium On Advanced Packaging Materials-processes, Properties, and Interfaces = Int Sym Adv Pkg Mat International Symposium On Advanced Packaging Materials-processes, Properties, and Interfaces = Int. Sym. Adv. Pkg. Mat. International Symposium On Advances in Interconnection and Packaging, Book 2 = P Soc Photo-opt Ins International Symposium On Advances in Interconnection and Packaging, Book 2 = P. Soc. Photo-opt. Ins. International Symposium On Advances in Interconnection and Packing, Book 1 = P Soc Photo-opt Ins International Symposium On Advances in Interconnection and Packing, Book 1 = P. Soc. Photo-opt. Ins. International Symposium On Agrotechnics and Storage of Vegetable and Ornamental Seeds = Acta Hortic International Symposium On Agrotechnics and Storage of Vegetable and Ornamental Seeds = Acta. Hortic. International Symposium On Air Conditioning in High Rise Buildings '2000, Proceedings = Refr Sci T International Symposium On Air Conditioning in High Rise Buildings '2000, Proceedings = Refr. Sci. T. International Symposium On Applications of Modelling As An Innovative Technology in The Agri-food-chain - Model-it = Acta Hortic International Symposium On Applications of Modelling As An Innovative Technology in The Agri-food-chain - Model-it = Acta. Hortic. International Symposium On Apricot Culture, Vols 1 and 2 = Acta Hortic International Symposium On Apricot Culture, Vols 1 and 2 = Acta. Hortic. International Symposium On Biological Product Freeze-drying and Formulation = Dev Biologicals International Symposium On Biological Product Freeze-drying and Formulation = Dev. Biologicals. International Symposium On Biotechnology of Tropical and Subtropical Species - Part Ii = Acta Hortic International Symposium On Biotechnology of Tropical and Subtropical Species - Part Ii = Acta. Hortic. International Symposium On Brassicas = Acta Hortic International Symposium On Brassicas = Acta. Hortic. International Symposium On Buffalo Products = Eaap Public International Symposium On Buffalo Products = Eaap. Public. International Symposium On Collaborative Technologies and Systems-cts = Int S Collab Technol International Symposium On Collaborative Technologies and Systems-cts = Int. S. Collab. Technol. International Symposium On Composting and Use of Composted Materials for Horticulture = Acta Hortic International Symposium On Composting and Use of Composted Materials for Horticulture = Acta. Hortic. International Symposium On Computer Architecture and High Performance Computing = Int Sym Comp Archit International Symposium On Computer Architecture and High Performance Computing = Int. Sym. Comp. Archit. International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta Hortic International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta. Hortic. International Symposium On Continuous Cell Lines - An International Workshop On Current Issues = Dev Biologicals International Symposium On Continuous Cell Lines - An International Workshop On Current Issues = Dev. Biologicals. International Symposium On Correlation Dynamics in Nuclei = J Phys Conf Ser International Symposium On Correlation Dynamics in Nuclei = J. Phys. Conf. Ser. International Symposium On Crop Protection, Proceedings = Int S Crop International Symposium On Crop Protection, Proceedings = Int. S. Crop International Symposium On Current Developments in Mediterranean Tropical and Subtropical Fruit Production and Research = Acta Hortic International Symposium On Current Developments in Mediterranean Tropical and Subtropical Fruit Production and Research = Acta. Hortic. International Symposium On Discharges and Electrical Insulation in A Vacuum = Int Sym Disch Electr International Symposium On Discharges and Electrical Insulation in A Vacuum = Int. Sym. Disch. Electr. International Symposium On Display Holography = P Soc Photo-opt Ins International Symposium On Display Holography = P. Soc. Photo-opt. Ins. International Symposium On Distributed Computing and Artificial Intelligence 2008 = Adv Soft Comp International Symposium On Distributed Computing and Artificial Intelligence 2008 = Adv. Soft. Comp. International Symposium On Distributed Computing and Artificial Intelligence = Adv Intel Soft Compu International Symposium On Distributed Computing and Artificial Intelligence = Adv. Intel. Soft. Compu. International Symposium On (e,2e), Double Photoionization and Related Topics and 15th International Symposium On Polarization and Correlation in Electronic and Atomic Collisions = J Phys Conf Ser International Symposium On (e,2e), Double Photoionization and Related Topics and 15th International Symposium On Polarization and Correlation in Electronic and Atomic Collisions = J. Phys. Conf. Ser. International Symposium On Effect of Preharvest and Postharvest Factors On Storage of Fruit = Acta Hortic International Symposium On Effect of Preharvest and Postharvest Factors On Storage of Fruit = Acta. Hortic. International Symposium On Electrets = Int Symp Electrets International Symposium On Electrets = Int. Symp. Electrets International Symposium On Electromagnetic Compatibility = Int Symp Elec Compat International Symposium On Electromagnetic Compatibility = Int. Symp. Elec. Compat. International Symposium On Electronic Design Test and Applications Delta = Int Sym Elect Des Te International Symposium On Electronic Design Test and Applications Delta = Int. Sym. Elect. Des. Te. International Symposium On Empirical Software Engineering and Measurement = Int Symp Emp Softwar International Symposium On Empirical Software Engineering and Measurement = Int. Symp. Emp. Softwar. International Symposium On Exotic Nuclei 2009 = Aip Conf Proc International Symposium On Exotic Nuclei 2009 = Aip. Conf. Proc. International Symposium On Exotic Nuclei = Aip Conf Proc International Symposium On Exotic Nuclei = Aip. Conf. Proc. International Symposium On Fault-tolerant Computing = Dig Pap Int Symp Fau International Symposium On Fault-tolerant Computing = Dig. Pap. Int. Symp. Fau. International Symposium on Fluoridation and Preventive Dentistry = Int. Symp. Fluorid. Prev. Dent. International Symposium On Fluoridation And Preventive Dentistry = Int Symp Fluorid Prev Dent International Symposium On Fundamentals of Software Engineering, Proceedings = Lect Notes Comput Sc International Symposium On Fundamentals of Software Engineering, Proceedings = Lect. Notes. Comput. Sc. International Symposium On Greenhouse Management for Better Yield and Quality in Mild Winter Climates = Acta Hortic International Symposium On Greenhouse Management for Better Yield and Quality in Mild Winter Climates = Acta. Hortic. International Symposium On Growing Media and Hydroponics, Vols I and Ii = Acta Hortic International Symposium On Growing Media and Hydroponics, Vols I and Ii = Acta. Hortic. International Symposium On Growing Media and Plant Nutrition in Horticulture = Acta Hortic International Symposium On Growing Media and Plant Nutrition in Horticulture = Acta. Hortic. International Symposium On High-performance Computer Architecture-proceedings = Int S High Perf Comp International Symposium On High-performance Computer Architecture-proceedings = Int. S. High. Perf. Comp. International Symposium On High Power Laser Ablation 2010 = Aip Conf Proc International Symposium On High Power Laser Ablation 2010 = Aip. Conf. Proc. International Symposium On Integrating Canopy, Rootstocks and Environmental Physiology in Orchard Systems, Proceedings - Vols 1 and 2 = Acta Hortic International Symposium On Integrating Canopy, Rootstocks and Environmental Physiology in Orchard Systems, Proceedings - Vols 1 and 2 = Acta. Hortic. International Symposium On Intelligent Signal Processing and Communication Systems-ispacs = I S Intell Sig Proc International Symposium On Intelligent Signal Processing and Communication Systems-ispacs = I. S. Intell. Sig. Proc. International Symposium On Intelligent Signal Processing and Communication Systems Ispacs = I S Intell Sig Proc International Symposium On Intelligent Signal Processing and Communication Systems Ispacs = I. S. Intell. Sig. Proc. International Symposium On Intelligent Signal Processing-wisp = I S Intell Sig Pr International Symposium On Intelligent Signal Processing-wisp = I. S. Intell. Sig. Pr. International Symposium On Intelligent Systems and Informatics = I S Intell Syst Info International Symposium On Intelligent Systems and Informatics = I. S. Intell. Syst. Info. International Symposium On Laser-plasma Interactions ( Islpi 92 ) = P Soc Photo-opt Ins International Symposium On Laser-plasma Interactions ( Islpi 92 ) = P. Soc. Photo-opt. Ins. International Symposium On Lattice Effects in Cuprate High Temperature Superconductors (lehtsc2007) = J Phys Conf Ser International Symposium On Lattice Effects in Cuprate High Temperature Superconductors (lehtsc2007) = J. Phys. Conf. Ser. International Symposium On Mechatronics and Its Applications = Int S Mechatr Applic International Symposium On Mechatronics and Its Applications = Int. S. Mechatr. Applic. International Symposium On Medicinal and Aromatic Plants = Acta Hortic International Symposium On Medicinal and Aromatic Plants = Acta. Hortic. International Symposium On Mediterranean Animal Germplasm and Future Human Challenges = Eaap Public International Symposium On Mediterranean Animal Germplasm and Future Human Challenges = Eaap. Public. International Symposium On Microarchitecture, Proceedings = Int Symp Microarch International Symposium On Microarchitecture, Proceedings = Int. Symp. Microarch. International Symposium On Modeling Analysis and Simulation of Computer and Telecommunication Systems Proceedings = I S Mod Anal Sim Com International Symposium On Modeling Analysis and Simulation of Computer and Telecommunication Systems Proceedings = I. S. Mod. Anal. Sim. Com. International Symposium On Multiple-valued Logic = Int Sym Mvl International Symposium On Multiple-valued Logic = Int. Sym. Mvl. International Symposium On Multispectral Image Processing = P Soc Photo-opt Ins International Symposium On Multispectral Image Processing = P. Soc. Photo-opt. Ins. International Symposium On Myrtaceae = Acta Hortic International Symposium On Myrtaceae = Acta. Hortic. International Symposium On New Cultivation Systems in Greenhouse = Acta Hortic International Symposium On New Cultivation Systems in Greenhouse = Acta. Hortic. International Symposium On Olfaction and Taste = Ann Ny Acad Sci International Symposium On Olfaction and Taste = Ann. Ny. Acad. Sci. International Symposium On Optical Fabrication, Testing, and Surface Evaluation = P Soc Photo-opt Ins International Symposium On Optical Fabrication, Testing, and Surface Evaluation = P. Soc. Photo-opt. Ins. International Symposium On Pertussis : Evaluation and Research On Acellular Pertussis Vaccines = Dev Biologicals International Symposium On Pertussis : Evaluation and Research On Acellular Pertussis Vaccines = Dev. Biologicals. International Symposium On Photoelectronic Detection and Imaging 2007: Image Processing = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2007: Image Processing = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2007: Image Processing = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging 2007: Image Processing = P. Soc. Photo-opt. Ins. International Symposium On Photoelectronic Detection and Imaging 2007: Laser, Ultraviolet, and Terahertz Technology = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2007: Laser, Ultraviolet, and Terahertz Technology = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2007: Laser, Ultraviolet, and Terahertz Technology = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging 2007: Laser, Ultraviolet, and Terahertz Technology = P. Soc. Photo-opt. Ins. International Symposium On Photoelectronic Detection and Imaging 2007: Optoelectronic System Design, Manufacturing, and Testing = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2007: Optoelectronic System Design, Manufacturing, and Testing = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2007: Optoelectronic System Design, Manufacturing, and Testing = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging 2007: Optoelectronic System Design, Manufacturing, and Testing = P. Soc. Photo-opt. Ins. International Symposium On Photoelectronic Detection and Imaging 2007: Photoelectronic Imaging and Detection = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2007: Photoelectronic Imaging and Detection = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2007: Photoelectronic Imaging and Detection = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging 2007: Photoelectronic Imaging and Detection = P. Soc. Photo-opt. Ins. International Symposium On Photoelectronic Detection and Imaging 2007: Related Technologies and Applications = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2007: Related Technologies and Applications = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2007: Related Technologies and Applications = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging 2007: Related Technologies and Applications = P. Soc. Photo-opt. Ins. International Symposium On Photoelectronic Detection and Imaging 2011: Laser Sensing and Imaging and Biological and Medical Applications of Photonics Sensing and Imaging = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2011: Laser Sensing and Imaging and Biological and Medical Applications of Photonics Sensing and Imaging = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging 2011: Terahertz Wave Technologies and Applications = Proc Spie International Symposium On Photoelectronic Detection and Imaging 2011: Terahertz Wave Technologies and Applications = Proc. Spie. International Symposium On Photoelectronic Detection and Imaging : Technology and Applications 93 = P Soc Photo-opt Ins International Symposium On Photoelectronic Detection and Imaging : Technology and Applications 93 = P. Soc. Photo-opt. Ins. International Symposium On Photonic Glass (ispg 2002) = P Soc Photo-opt Ins International Symposium On Photonic Glass (ispg 2002) = P. Soc. Photo-opt. Ins. International Symposium On Photonics in Measurement = Vdi Bericht International Symposium On Photonics in Measurement = Vdi. Bericht. International Symposium On Plant Production in Closed Ecosystems - Automation, Culture, and Environment = Acta Hortic International Symposium On Plant Production in Closed Ecosystems - Automation, Culture, and Environment = Acta. Hortic. International Symposium On Polarization Analysis and Applications to Device Technology = P Soc Photo-opt Ins International Symposium On Polarization Analysis and Applications to Device Technology = P. Soc. Photo-opt. Ins. International Symposium On Postharvest Treatment of Horticultural Crops, Vols I and Ii = Acta Hortic International Symposium On Postharvest Treatment of Horticultural Crops, Vols I and Ii = Acta. Hortic. International Symposium On Power Semiconductor Devices and Ics = Int Sym Pow Semicond International Symposium On Power Semiconductor Devices and Ics = Int. Sym. Pow. Semicond. International Symposium On Quality of Fresh and Fermented Vegetables = Acta Hortic International Symposium On Quality of Fresh and Fermented Vegetables = Acta. Hortic. International Symposium On Rainfall Rate and Radio Wave Propagation (isrr '07) = Aip Conf Proc International Symposium On Rainfall Rate and Radio Wave Propagation (isrr '07) = Aip. Conf. Proc. International Symposium On Ring Theory = Trends Math International Symposium On Ring Theory = Trends. Math. International Symposium On Safety in Baseball/softball = Am Soc Test Mater International Symposium On Safety in Baseball/softball = Am. Soc. Test. Mater. International Symposium On Scheduling of Irrigation for Vegetable Crops Under Field Condition, Vols 1 and 2 = Acta Hortic International Symposium On Scheduling of Irrigation for Vegetable Crops Under Field Condition, Vols 1 and 2 = Acta. Hortic. International Symposium On Strategies for Market Oriented Greenhouse Production = Acta Hortic International Symposium On Strategies for Market Oriented Greenhouse Production = Acta. Hortic. International Symposium On The Culture of Subtropical and Tropical Fruits and Crops, Vols 1 and 2 = Acta Hortic International Symposium On The Culture of Subtropical and Tropical Fruits and Crops, Vols 1 and 2 = Acta. Hortic. International Symposium On The First Steps Towards An International Harmonization of Veterinary Biologicals : 1993 and Free Circulation of Vaccines Within The Eec = Dev Biol Stand International Symposium On The First Steps Towards An International Harmonization of Veterinary Biologicals : 1993 and Free Circulation of Vaccines Within The Eec = Dev. Biol. Stand. International Symposium On The Genus Lilium = Acta Hortic International Symposium On The Genus Lilium = Acta. Hortic. International Symposium On The Importance of Varieties and Clones in The Production of Quality Wine = Acta Hortic International Symposium On The Importance of Varieties and Clones in The Production of Quality Wine = Acta. Hortic. International Symposium On The Physiological Basis of Postharvest Technologies = Acta Hortic International Symposium On The Physiological Basis of Postharvest Technologies = Acta. Hortic. International Symposium On The Superconducting Science & Technology of Ingot Niobium = Aip Conf Proc International Symposium On The Superconducting Science & Technology of Ingot Niobium = Aip. Conf. Proc. International Symposium On Tospoviruses and Thrips of Floral and Vegetable Crops = Acta Hortic International Symposium On Tospoviruses and Thrips of Floral and Vegetable Crops = Acta. Hortic. International Symposium On Urban Tree Health = Acta Hortic International Symposium On Urban Tree Health = Acta. Hortic. International Symposium On Vector Boson Self-interactions = Aip Conf Proc International Symposium On Vector Boson Self-interactions = Aip. Conf. Proc. International Symposium On Virological Aspects of The Safety of Biological Products = Dev Biologicals International Symposium On Virological Aspects of The Safety of Biological Products = Dev. Biologicals. International Symposium On Water Quality and Quantity in Greenhouse Horticulture = Acta Hortic International Symposium On Water Quality and Quantity in Greenhouse Horticulture = Acta. Hortic. International Symposium On Waves, Coherent Structures, and Turbulence in Plasmas = Aip Conf Proc International Symposium On Waves, Coherent Structures, and Turbulence in Plasmas = Aip. Conf. Proc. International Symposium On Workload Characterization Proceedings = I S Workl Char Proc International Symposium On Workload Characterization Proceedings = I. S. Workl. Char. Proc. International Tables for Crystallography, Vol. B: Reciprocal Space, Third Edition = Int Tables Crystallo International Tables for Crystallography, Vol. B: Reciprocal Space, Third Edition = Int. Tables Crystallo. International Tables for Crystallography Volume B = Int Tables Crystallo International Tables for Crystallography Volume B = Int. Tables Crystallo. International Tax and Public Finance = Int Tax Public Finan International Tax and Public Finance = Int. Tax Public Finan. International Tax and Public Finance=Int. Tax Public Finance International Taxation and Multinational Activity = Nber Conf R International Taxation and Multinational Activity = Nber. Conf. R. International Telecommunications Energy Conference-intelec = Int Telecom Energy International Telecommunications Energy Conference-intelec = Int. Telecom. Energy International Telemetering Conference = Int Telem C International Telemetering Conference = Int. Telem. C. International Telemetering Conference, Vol 26 = Int Telem C International Telemetering Conference, Vol 26 = Int. Telem. C. International Telemetering Conference, Vol 27 = Int Telem C International Telemetering Conference, Vol 27 = Int. Telem. C. International Test Conference 1998, Proceedings = Int Test Conf P International Test Conference 1998, Proceedings = Int. Test Conf. P. International Test Conference 2000, Proceedings = Int Test Conf P International Test Conference 2000, Proceedings = Int. Test Conf. P. International Test Conference 2001, Proceedings = Int Test Conf P International Test Conference 2001, Proceedings = Int. Test Conf. P. International Test Conference 2002, Proceedings = Int Test Conf P International Test Conference 2002, Proceedings = Int. Test Conf. P. International Test Conference 2003, Proceedings = Int Test Conf P International Test Conference 2003, Proceedings = Int. Test Conf. P. International Test Conference 2004, Proceedings = Int Test Conf P International Test Conference 2004, Proceedings = Int. Test Conf. P. International Test Conference 2010 = Int Test Conf P International Test Conference 2010 = Int. Test Conf. P. International Test Conference Proceedings = Int Test Conf P International Test Conference Proceedings = Int. Test Conf. P. International Test Conference, Proceedings = Int Test Conf P International Test Conference, Proceedings = Int. Test Conf. P. International Theory of Leonard Woolf: A Study in Twentieth-century Idealism = Palgr Mac Ser Hist International Theory of Leonard Woolf: A Study in Twentieth-century Idealism = Palgr. Mac. Ser. Hist. International Thought of Martin Wight = Palgr Mac Ser Hist International Thought of Martin Wight = Palgr. Mac. Ser. Hist. International Trade and Environmental Justice: Toward A Global Political Ecology = Environ Res Adv International Trade and Environmental Justice: Toward A Global Political Ecology = Environ. Res. Adv. International Trade and Multinational Activity: Heterogeneity of Firms, Incentives for Foreign Direct Investment, and International Business Cycle Dynamics = Lect Notes Econ Math International Trade and Multinational Activity: Heterogeneity of Firms, Incentives for Foreign Direct Investment, and International Business Cycle Dynamics = Lect. Notes. Econ. Math. International Trade Journal=Int. Trade J. International Trade Theory: A Critical Review = Routl Stud Int Bus W International Trade Theory: A Critical Review = Routl. Stud. Int. Bus. W. International Transactions in Operational Research = Int T Oper Res International Transactions in Operational Research = Int. T. Oper. Res. International Tree Crops Journal = Int. Tree Crops J. International Trends in Crime : East Meets West = Aic Conf P International Trends in Crime : East Meets West = Aic. Conf. P. International Union of Biochemistry Symposium = Int Union B International Union of Biochemistry Symposium = Int. Union B. International Union of Crystallography Crystallographic Symposia = Internat. Union Cryst. Cryst. Sympos. International Union of Crystallography Crystallographic Symposia = Iucr Crystall Symp International Union of Crystallography Crystallographic Symposia = Iucr. Crystall. Symp. International Union of Psychological Science : Selected/revised Papers = Iupsys Sr P International Union of Psychological Science : Selected/revised Papers = Iupsys. Sr. P. International Urogynecology Journal and Pelvic Floor Dysfunction = Int Urogynecol J Pel International Urogynecology Journal and Pelvic Floor Dysfunction = Int. Urogynecol. J. Pel. International urogynecology journal and pelvic floor dysfunction = Int Urogynecol J Pelvic Floor Dysfunct International Urogynecology Journal and Pelvic Floor Dysfunction=Int Urogynecol J Pelvic Floor Dysfunct;; International Urogynecology Journal and Pelvic Floor Dysfunction = Int. Urogynecol. J. Pelvic Floor Dysfunct. International Urogynecology Journal = Int Urogynecol J International Urogynecology Journal = Int. Urogynecol. J. International urology and nephrology = Int Urol Nephrol International Urology and Nephrology=Int Urol Nephrol;; International Urology and Nephrology = Int Urol Nephrol International Urology and Nephrology = Int. Urol. Nephrol. International Views On Disability Measures: Moving Toward Comparative Measurement = Res Soc Sci Disabil International Views On Disability Measures: Moving Toward Comparative Measurement = Res. Soc. Sci. Disabil. International Water Treaties: Negotiation and Cooperation Along Transboundary Rivers = Routl Stud Mod World International Water Treaties: Negotiation and Cooperation Along Transboundary Rivers = Routl. Stud. Mod. World. International Western Geographical Series = Int W Geogr Ser International Western Geographical Series = Int. W. Geogr. Ser. International Wildland Fire Foam Symposium and Workshop, Proceedings = For Can Pi International Wildland Fire Foam Symposium and Workshop, Proceedings = For. Can. Pi. International wildlife = Int Wildl International Wildlife = Int Wildlife International Wildlife = Int. Wildlife International Workshop and Conference On Photonics and Nanotechnology 2007 = Proc Spie International Workshop and Conference On Photonics and Nanotechnology 2007 = Proc. Spie. International Workshop On Advanced Material for New and Renewable Energy = Aip Conf Proc International Workshop On Advanced Material for New and Renewable Energy = Aip. Conf. Proc. International Workshop On Advanced Materials for High Precision Detectors = Cern Report International Workshop On Advanced Materials for High Precision Detectors = Cern. Report. International Workshop On Advance Issues of E-commerce and Web-based Information Systems Proceedings = I W Adv Iss E Commer International Workshop On Advance Issues of E-commerce and Web-based Information Systems Proceedings = I. W. Adv. Iss. E. Commer. International Workshop On Albizia and Paraserianthes Species = For Farm Comm Tree R International Workshop On Albizia and Paraserianthes Species = For. Farm. Comm. Tree. R. International Workshop On Chiral Symmetry in Hadrons and Nuclei = Aip Conf Proc International Workshop On Chiral Symmetry in Hadrons and Nuclei = Aip. Conf. Proc. International Workshop On Complex Structures, Integrability and Vector Fields = Aip Conf Proc International Workshop On Complex Structures, Integrability and Vector Fields = Aip. Conf. Proc. International Workshop On Database and Expert Systems Applications - Dexa = Int Workshop Databas International Workshop On Database and Expert Systems Applications - Dexa = Int. Workshop Databas. International Workshop On Future Trends of Distributed Computing Systems = Int Wkshp Fut Tr Dis International Workshop On Future Trends of Distributed Computing Systems = Int. Wkshp. Fut. Tr. Dis. International Workshop On Hardware/software Codesign = Hardw Softw Codes International Workshop On Hardware/software Codesign = Hardw. Softw. Codes. International Workshop On Hysteresis & Multi-scale Asymptotics = J Phys Conf Ser International Workshop On Hysteresis & Multi-scale Asymptotics = J. Phys. Conf. Ser. International Workshop On Innovative Architecture for Future Generation High Performance Processors and Systems = Ieee Int Conf Autom International Workshop On Innovative Architecture for Future Generation High Performance Processors and Systems = Ieee. Int. Conf. Autom. International Workshop On Memory Technology, Design and Testing, Proceedings = Rec Ieee Int Wkshp M International Workshop On Memory Technology, Design and Testing, Proceedings = Rec. Ieee. Int. Wkshp. M. International Workshop On Monte Carlo Techniques in Radiotherapy Delivery and Verification - Third Mcgill International Workshop = J Phys Conf Ser International Workshop On Monte Carlo Techniques in Radiotherapy Delivery and Verification - Third Mcgill International Workshop = J. Phys. Conf. Ser. International Workshop On Multi-rate Processes and Hysteresis = J Phys Conf Ser International Workshop On Multi-rate Processes and Hysteresis = J. Phys. Conf. Ser. International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = Proc Spie International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = Proc. Spie. International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. International Workshop On Nonlinear Dynamics and Structures in Biology and Medicine: Optical and Laser Technologies = Proc Spie International Workshop On Nonlinear Dynamics and Structures in Biology and Medicine: Optical and Laser Technologies = Proc. Spie. International Workshop On Nonlinear Dynamics and Structures in Biology and Medicine: Optical and Laser Technologies = P Soc Photo-opt Ins International Workshop On Nonlinear Dynamics and Structures in Biology and Medicine: Optical and Laser Technologies = P. Soc. Photo-opt. Ins. International Workshop On Nuclear Physics 27th Course: Neutrinos in Cosmology, in Astro, Particle and Nuclear Physics = Prog Part Nucl Phys International Workshop On Nuclear Physics 27th Course: Neutrinos in Cosmology, in Astro, Particle and Nuclear Physics = Prog. Part. Nucl. Phys. International Workshop On Optical Diagnostics of Materials and Devices for Opto-, Micro-, and Quantum Electronics = P Soc Photo-opt Ins International Workshop On Optical Diagnostics of Materials and Devices for Opto-, Micro-, and Quantum Electronics = P. Soc. Photo-opt. Ins. International Workshop On Petri Nets and Performance Models - Proceedings = Int Worksh Petri Net International Workshop On Petri Nets and Performance Models - Proceedings = Int. Worksh. Petri Net. International Workshop On Photoinduced Self-organization Effects in Optical Fiber = P Soc Photo-opt Ins International Workshop On Photoinduced Self-organization Effects in Optical Fiber = P. Soc. Photo-opt. Ins. International Workshop On Photonics and Imaging in Biology and Medicine = Proc Spie International Workshop On Photonics and Imaging in Biology and Medicine = Proc. Spie. International Workshop On Photonics and Imaging in Biology and Medicine = P Soc Photo-opt Ins International Workshop On Photonics and Imaging in Biology and Medicine = P. Soc. Photo-opt. Ins. International Workshop On Poliovirus Attenuation : Molecular Mechanisms and Practical Aspects = Dev Biol Stand International Workshop On Poliovirus Attenuation : Molecular Mechanisms and Practical Aspects = Dev. Biol. Stand. International Workshop On Positrons At Jefferson Lab = Aip Conf Proc International Workshop On Positrons At Jefferson Lab = Aip. Conf. Proc. International Workshop On Positron Studies of Defects (psd 08) = J Phys Conf Ser International Workshop On Positron Studies of Defects (psd 08) = J. Phys. Conf. Ser. International Workshop On Program Comprehension-proceedings = Prog Comprehen International Workshop On Program Comprehension-proceedings = Prog. Comprehen. International Workshop On Program Comprehension = Prog Comprehen International Workshop On Program Comprehension = Prog. Comprehen. International Workshop On Quality of Service = Int Worksh Qual Serv International Workshop On Quality of Service = Int. Worksh. Qual. Serv. International Workshop On Quantum Optics 2003 = Proc Spie International Workshop On Quantum Optics 2003 = Proc. Spie. International Workshop On Quantum Optics 2003 = P Soc Photo-opt Ins International Workshop On Quantum Optics 2003 = P. Soc. Photo-opt. Ins. International Workshop On Quantum Optics 2007 = Proc Spie International Workshop On Quantum Optics 2007 = Proc. Spie. International Workshop On Quantum Optics 2007 = P Soc Photo-opt Ins International Workshop On Quantum Optics 2007 = P. Soc. Photo-opt. Ins. International Workshop On Radiation of High Temperature Gases in Atmospheric Entry, Proceedings = Esa Sp Publ International Workshop On Radiation of High Temperature Gases in Atmospheric Entry, Proceedings = Esa. Sp. Publ. International Workshop On Radiation of High Temperature Gases in Atmospheric Entry, Pt 2, Proceedings = Esa Sp Publ International Workshop On Radiation of High Temperature Gases in Atmospheric Entry, Pt 2, Proceedings = Esa. Sp. Publ. International Workshop On Statistical-mechanical Informatics 2007 (iw-smi 2007) = J Phys Conf Ser International Workshop On Statistical-mechanical Informatics 2007 (iw-smi 2007) = J. Phys. Conf. Ser. International Workshop On Statistical-mechanical Informatics 2008 (iw-smi 2008) = J Phys Conf Ser International Workshop On Statistical-mechanical Informatics 2008 (iw-smi 2008) = J. Phys. Conf. Ser. International Workshop On Statistical-mechanical Informatics 2009 (iw-smi 2009) = J Phys Conf Ser International Workshop On Statistical-mechanical Informatics 2009 (iw-smi 2009) = J. Phys. Conf. Ser. International Workshop On Statistical-mechanical Informatics 2010 (iw-smi 2010) = J Phys Conf Ser International Workshop On Statistical-mechanical Informatics 2010 (iw-smi 2010) = J. Phys. Conf. Ser. International Workshop On Statistical Mechanics and Combinatorics: Counting Complexity = J Phys Conf Ser International Workshop On Statistical Mechanics and Combinatorics: Counting Complexity = J. Phys. Conf. Ser. International Workshop On Storage Network Architecture and Parallel I/os = I W Stor Netw Arch International Workshop On Storage Network Architecture and Parallel I/os = I. W. Stor. Netw. Arch. International Workshop On Systematic Approaches to Digital Forensic Engineering-sadfe = Int Work Sys Appr D International Workshop On Systematic Approaches to Digital Forensic Engineering-sadfe = Int. Work. Sys. Appr. D. International Workshop On Systematic Approaches to Digital Forensic Engineering Sadfe = Int Work Sys Appr D International Workshop On Systematic Approaches to Digital Forensic Engineering Sadfe = Int. Work. Sys. Appr. D. International Workshop On Temporal Representation and Reasoning. Proceedings = Int Workshop Tempora International Workshop On Temporal Representation and Reasoning. Proceedings = Int. Workshop Tempora. International Workshop On The Genus Calliandra = For Farm Comm Tree R International Workshop On The Genus Calliandra = For. Farm. Comm. Tree. R. International wound journal = Int Wound J International Wound Journal = Int Wound J International Wound Journal = Int. Wound J. International Year-Book of Game Theory and Applications = Internat. Year-Book Game Theory Appl. International Yearbook of Nephrology = Int Yearbook Nephrol International Yearbook of Nephrology = Int. Yearbook Nephrol. International Year of Planet Earth = Int Year Planet Eart International Year of Planet Earth = Int. Year Planet Eart. International Zinc Coated Sheet Conference Series = Int Zinc Coated Sh International Zinc Coated Sheet Conference Series = Int. Zinc Coated Sh. Internation Business Organization = Acad Int Business Internation Business Organization = Acad. Int. Business Internet Alley: High Technology in Tysons Corner, 1945-2005 = Lemelson Cent Stud I Internet Alley: High Technology in Tysons Corner, 1945-2005 = Lemelson. Cent. Stud. I. Internet and Communications = Internet Commun Internet and Communications = Internet Commun. Internet and Higher Education = Internet High Educ Internet and Higher Education = Internet High. Educ. Internet and Network Economics = Lect Notes Comput Sc Internet and Network Economics = Lect. Notes. Comput. Sc. Internet and Network Economics, Proceedings = Lect Notes Comput Sc Internet and Network Economics, Proceedings = Lect. Notes. Comput. Sc. Internet and Society: Social Theory in The Information Age = Rout Res Inf Technol Internet and Society: Social Theory in The Information Age = Rout. Res. Inf. Technol. Internet and Workplace Transformation = Adv Manag Inform Sys Internet and Workplace Transformation = Adv. Manag. Inform. Sys. Internet Applications = Lect Notes Comput Sc Internet Applications = Lect. Notes. Comput. Sc. Internet Based Control Education 2001 = Ifac Work S Internet Based Control Education 2001 = Ifac. Work. S. Internet-based Control Systems: Design and Applications = Adv Ind Control Internet-based Control Systems: Design and Applications = Adv. Ind. Control Internet-based Enterprise Integration and Management = Proc Spie Internet-based Enterprise Integration and Management = Proc. Spie. Internet-based Enterprise Integration and Management = P Soc Photo-opt Ins Internet-based Enterprise Integration and Management = P. Soc. Photo-opt. Ins. Internet Computing = Internet Comput. Internet Der Dinge: Www.internet-der-dinge.de = Vdi-buch Internet Der Dinge: Www.internet-der-dinge.de = Vdi-buch. Internet Election: Perspectives On The Web in Campaign 2004 = Commun Media Polit Internet Election: Perspectives On The Web in Campaign 2004 = Commun. Media. Polit. Internet Governance: A Grand Collaboration = Ict Task Force Ser Internet Governance: A Grand Collaboration = Ict. Task. Force. Ser. Internet Governance: The New Frontier of Global Institutions = Glob Inst Internet Governance: The New Frontier of Global Institutions = Glob. Inst. Internet healthcare strategies = Internet Healthc Strateg Internet Ii: Quality of Service and Future Directions = Proc Spie Internet Ii: Quality of Service and Future Directions = Proc. Spie. Internet Ii: Quality of Service and Future Directions = P Soc Photo-opt Ins Internet Ii: Quality of Service and Future Directions = P. Soc. Photo-opt. Ins. Internet Imaging Iii = P Soc Photo-opt Ins Internet Imaging Iii = P. Soc. Photo-opt. Ins. Internet Imaging Ii = Proc Spie Internet Imaging Ii = Proc. Spie. Internet Imaging Ii = P Soc Photo-opt Ins Internet Imaging Ii = P. Soc. Photo-opt. Ins. Internet Imaging Iv = Proc Spie Internet Imaging Iv = Proc. Spie. Internet Imaging Iv = P Soc Photo-opt Ins Internet Imaging Iv = P. Soc. Photo-opt. Ins. Internet Imaging = Proc Spie Internet Imaging = Proc. Spie. Internet Imaging = P Soc Photo-opt Ins Internet Imaging = P. Soc. Photo-opt. Ins. Internet Imaging Vii = Proc Spie Internet Imaging Vii = Proc. Spie. Internet Imaging Vii = P Soc Photo-opt Ins Internet Imaging Vii = P. Soc. Photo-opt. Ins. Internet Imaging Vi = Proc Spie Internet Imaging Vi = Proc. Spie. Internet Imaging Vi = P Soc Photo-opt Ins Internet Imaging Vi = P. Soc. Photo-opt. Ins. Internet Imaging V = Proc Spie Internet Imaging V = Proc. Spie. Internet Imaging V = P Soc Photo-opt Ins Internet Imaging V = P. Soc. Photo-opt. Ins. Internet in Indonesia's New Democracy = Asias Transform Internet in Indonesia's New Democracy = Asias. Transform. Internet Issues: Blogging, The Digital Divide and Digital Libraries = Internet Polic Iss Internet Issues: Blogging, The Digital Divide and Digital Libraries = Internet Polic. Iss. Internet Journal of Chemistry = Internet J Chem Internet Journal of Chemistry = Internet J. Chem. Internet Journal of Vibrational Spectroscopy = Internet J. Vib. Spectro. Internet Multimedia Management Systems Iii = Proc Spie Internet Multimedia Management Systems Iii = Proc. Spie. Internet Multimedia Management Systems Iii = P Soc Photo-opt Ins Internet Multimedia Management Systems Iii = P. Soc. Photo-opt. Ins. Internet Multimedia Management Systems Ii = Proc Spie Internet Multimedia Management Systems Ii = Proc. Spie. Internet Multimedia Management Systems Ii = P Soc Photo-opt Ins Internet Multimedia Management Systems Ii = P. Soc. Photo-opt. Ins. Internet Multimedia Management Systems Iv = Proc Spie Internet Multimedia Management Systems Iv = Proc. Spie. Internet Multimedia Management Systems Iv = P Soc Photo-opt Ins Internet Multimedia Management Systems Iv = P. Soc. Photo-opt. Ins. Internet Multimedia Management Systems = Proc Spie Internet Multimedia Management Systems = Proc. Spie. Internet Multimedia Management Systems = P Soc Photo-opt Ins Internet Multimedia Management Systems = P. Soc. Photo-opt. Ins. Internet Multimedia Management Systems V = Proc Spie Internet Multimedia Management Systems V = Proc. Spie. Internet Multimedia Management Systems V = P Soc Photo-opt Ins Internet Multimedia Management Systems V = P. Soc. Photo-opt. Ins. Internet of The Future = Lect Notes Comput Sc Internet of The Future = Lect. Notes. Comput. Sc. Internet of Things: From Rfid to The Next-generation Pervasive Networked Systems = Wirel Netw Mob Commu Internet of Things: From Rfid to The Next-generation Pervasive Networked Systems = Wirel. Netw. Mob. Commu. Internet of Things, Proceedings = Lect Notes Comput Sc Internet of Things, Proceedings = Lect. Notes. Comput. Sc. Internet Performance and Control of Network Systems Iii = Proc Spie Internet Performance and Control of Network Systems Iii = Proc. Spie. Internet Performance and Control of Network Systems Iii = P Soc Photo-opt Ins Internet Performance and Control of Network Systems Iii = P. Soc. Photo-opt. Ins. Internet Performance and Control of Network Systems Ii = Proc Spie Internet Performance and Control of Network Systems Ii = Proc. Spie. Internet Performance and Control of Network Systems Ii = P Soc Photo-opt Ins Internet Performance and Control of Network Systems Ii = P. Soc. Photo-opt. Ins. Internet Policies and Issues = Internet Polic Iss Internet Policies and Issues = Internet Polic. Iss. Internet Programming Languages, Proceedings = Lect Notes Comput Sc Internet Programming Languages, Proceedings = Lect. Notes. Comput. Sc. Internet Quality and Performance and Control of Network Systems = Proc Spie Internet Quality and Performance and Control of Network Systems = Proc. Spie. Internet Quality and Performance and Control of Network Systems = P Soc Photo-opt Ins Internet Quality and Performance and Control of Network Systems = P. Soc. Photo-opt. Ins. Internet Quality of Service = Proc Spie Internet Quality of Service = Proc. Spie. Internet Quality of Service = P Soc Photo-opt Ins Internet Quality of Service = P. Soc. Photo-opt. Ins. Internet Research-electronic Networking Applications and Policy = Internet Res Internet Research-electronic Networking Applications and Policy = Internet Res. Internet Research = Internet Res Internet Research = Internet Res. Internet Routing and Quality of Service = Proc Spie Internet Routing and Quality of Service = Proc. Spie. Internet Routing and Quality of Service = P Soc Photo-opt Ins Internet Routing and Quality of Service = P. Soc. Photo-opt. Ins. Internet = Rout Intro Media Com Internet = Rout. Intro. Media. Com. Internet Society: Advances in Learning, Commerce and Society = Adv Info Comm Tech Internet Society: Advances in Learning, Commerce and Society = Adv. Info. Comm. Tech. Internet Society Ii: Advances in Education, Commerce & Governance = Wit Trans Info Comm Internet Society Ii: Advances in Education, Commerce & Governance = Wit. Trans. Info. Comm. Internet - Technical Development and Applications = Adv Intel Soft Compu Internet - Technical Development and Applications = Adv. Intel. Soft. Compu. Internet Technologies, Applications and Societal Impact = Int Fed Info Proc Internet Technologies, Applications and Societal Impact = Int. Fed. Info. Proc. Internet, Which Court Decides? Which Law Applies? = Law Electr Commerce Internet, Which Court Decides? Which Law Applies? = Law Electr. Commerce. Internetworking-research and Experience = Internetworking Internetworking-research and Experience = Internetworking. Internet World = Internet World Internist = Internist Internist=Internist (Berl);; Internistische Praxis = Internist Prax Internistische Praxis = Internist. Prax. Inter-noise 93 - People Versus Noise, Vols 1-3 = Inter Noise Inter-noise 93 - People Versus Noise, Vols 1-3 = Inter. Noise. Inter-noise = Inter Noise Inter-noise = Inter. Noise. Inter-Nord = Inter Nord Interntational Review of Sociology = Int Rev Mod Sociol Interntational Review of Sociology = Int. Rev. Mod. Sociol. Interoperable Database Systems ( Ds-5 ) = Ifip Trans A Interoperable Database Systems ( Ds-5 ) = Ifip. Trans. A. Interoperating Geographic Information Systems = Lect Notes Comput Sc Interoperating Geographic Information Systems = Lect. Notes. Comput. Sc. Interorganisational Standards: Managing Web Services Specifications for Flexible Supply Chains = Contrib Manag Sci Interorganisational Standards: Managing Web Services Specifications for Flexible Supply Chains = Contrib. Manag. Sci. Interpenetrating Polymer Networks = Adv Chem Ser Interpenetrating Polymer Networks = Adv. Chem. Ser. Interpersonal Development = Interpers Dev Interpersonal Development = Interpers. Dev. Interphase Cytogenetic Analysis of Solid Tumors By Non-isotopic Dna in Situ Hybridization = Prog Histochem Cytoc Interphase Cytogenetic Analysis of Solid Tumors By Non-isotopic Dna in Situ Hybridization = Prog. Histochem. Cytoc. Interphases and Mesophases in Polymer Crystallization I = Adv Polym Sci Interphases and Mesophases in Polymer Crystallization I = Adv. Polym. Sci. Interphases and Mesophases in Polymer Crystallization Ii = Adv Polym Sci Interphases and Mesophases in Polymer Crystallization Ii = Adv. Polym. Sci. Interphases and Mesophases in Polymer Crystallization Iii = Adv Polym Sci Interphases and Mesophases in Polymer Crystallization Iii = Adv. Polym. Sci. Interplanetary Mission Analysis and Design = S-p B Astronaut Eng Interplanetary Mission Analysis and Design = S-p. B. Astronaut. Eng. Interplay Among Black Holes, Stars and Ism in Galactic Nuclei = Iau Symp P Series Interplay Among Black Holes, Stars and Ism in Galactic Nuclei = Iau. Symp. P. Series. Interplay of Truth and Deception: New Agendas in Communication = New Agendas Commun Interplay of Truth and Deception: New Agendas in Communication = New Agendas Commun. Interpolation Processes: Basic Theory and Applications = Springer Monogr Math Interpolation Processes: Basic Theory and Applications = Springer. Monogr. Math. Interpolation Theory and Applications = Contemp Math Interpolation Theory and Applications = Contemp. Math. Interpolation Theory = Lect Notes-sc Norm S Interpolation Theory = Lect. Notes-sc. Norm. S. Interpolation Theory, Systems Theory and Related Topics = Oper Theor Interpolation Theory, Systems Theory and Related Topics = Oper. Theor. Interpolation Theory, Systems Theory and Related Topics = Oper Theory Adv Appl Interpolation Theory, Systems Theory and Related Topics = Oper. Theory Adv. Appl. Interpretation-a Journal of Bible and Theology = Interpretation Interpretation-a Journal of Bible and Theology = Interpretation. Interpretation-a Journal of Political Philosophy = Interpretation-j Pol Interpretation-a Journal of Political Philosophy = Interpretation-j. Pol. Interpretation in Religion = Philos Rel Interpretation in Religion = Philos. Rel. Interpretation in Social Life, Social Science, and Marketing = Rout Interp Mark Res Interpretation in Social Life, Social Science, and Marketing = Rout. Interp. Mark. Res. Interpretation of Law in The Age of Enlightenment: From The Rule of The King to The Rule of Law = Law Philos Libr Interpretation of Law in The Age of Enlightenment: From The Rule of The King to The Rule of Law = Law Philos. Libr. Interpretation of Modern Synthesis Observations of Spiral Galaxies = Astr Soc P Interpretation of Modern Synthesis Observations of Spiral Galaxies = Astr. Soc. P. Interpretation of The Remote and In-situ Observations of Small Bodies = Adv Space Res Interpretation of The Remote and In-situ Observations of Small Bodies = Adv. Space. Res. Interpretation of The Remote and In-situ Observations of Small Bodies = Adv Space Res-series Interpretation of The Remote and In-situ Observations of Small Bodies = Adv. Space. Res-series. Interpretations of The Flood = Themes Bibl Narr Interpretations of The Flood = Themes. Bibl. Narr. Interpreter and Translator Trainer = Interpret Transl Tra Interpreter and Translator Trainer = Interpret. Transl. Tra. Interpreter Education Series = Interpreter Educ Ser Interpreter Education Series = Interpreter Educ. Ser. Interpreting Avicenna: Science and Philosophy in Medieval Islam, Proceedings = Islam Ph Th Sci Interpreting Avicenna: Science and Philosophy in Medieval Islam, Proceedings = Islam. Ph. Th. Sci. Interpreting Classical Economics = Routl Stud Hist Econ Interpreting Classical Economics = Routl. Stud. Hist. Econ. Interpreting Consumer Choice = Rout Interp Mark Res Interpreting Consumer Choice = Rout. Interp. Mark. Res. Interpreting Human Rights = Routl Adv Sociol Interpreting Human Rights = Routl. Adv. Sociol. Interpreting = Interpreting Interpreting Television News = Commun Monogr-ger Interpreting Television News = Commun. Monogr-ger. Interpreting The Early Modern World: Transatlantic Perspectives = Contr Glob Hist Arch Interpreting The Early Modern World: Transatlantic Perspectives = Contr. Glob. Hist. Arch. Interpreting The Early Modern World: Transatlantic Perspectives = Contrib Glob Hist Ar Interpreting The Early Modern World: Transatlantic Perspectives = Contrib. Glob. Hist. Ar. Interpreting The Italian Renaissance = Filibrary S Interpreting The Italian Renaissance = Filibrary. S. Interpunktion Des Deutschen: Ein Kompositionelles System Zur Online-steuerung Des Lesens = Linguist Arb Interpunktion Des Deutschen: Ein Kompositionelles System Zur Online-steuerung Des Lesens = Linguist. Arb. Inter-relationship Between Irrigation, Drainage and The Environment in The Aral Sea Basin = Nato Asi 2 Inter-relationship Between Irrigation, Drainage and The Environment in The Aral Sea Basin = Nato. Asi. 2. Interrelationships and Evolution of Basal Theropod Dinosaurs = Spec Pap Palaeontol Interrelationships and Evolution of Basal Theropod Dinosaurs = Spec. Pap. Palaeontol. Interrogating America Through Theatre and Performance = Palg Stud Theat Perf Interrogating America Through Theatre and Performance = Palg. Stud. Theat. Perf. Interruption-free Electrical Power Supply and Emergency Electrical Power Supply = Vdi Bericht Interruption-free Electrical Power Supply and Emergency Electrical Power Supply = Vdi. Bericht. Intersecciones En Antropologia = Intersecciones Antro Intersecciones En Antropologia = Intersecciones Antro. Intersectionality and Beyond: Law, Power and The Politics of Location = Soc Justice Intersectionality and Beyond: Law, Power and The Politics of Location = Soc. Justice. Intersections Between Particle and Nuclear Physics - 6th Conference = Aip Conf Proc Intersections Between Particle and Nuclear Physics - 6th Conference = Aip. Conf. Proc. Intersections Between Particle and Nuclear Physics = Aip Conf Proc Intersections Between Particle and Nuclear Physics = Aip. Conf. Proc. Intersections Colonial and Postcolonial Histories = Inters Colon Postcol Intersections Colonial and Postcolonial Histories = Inters. Colon. Postcol. Intersections De Deux Quadriques Et Pinceaux De Courbes De Genre 1 = Lect Notes Math Intersections De Deux Quadriques Et Pinceaux De Courbes De Genre 1 = Lect. Notes. Math. Intersections of Gender, Religion and Ethnicity in The Middle Ages = Gender Sex Hist Intersections of Gender, Religion and Ethnicity in The Middle Ages = Gender. Sex. Hist. Intersections of Particle and Nuclear Physics = Aip Conf Proc Intersections of Particle and Nuclear Physics = Aip. Conf. Proc. Intersection Spaces, Spatial Homology Truncation, and String Theory = Lect Notes Math Intersection Spaces, Spatial Homology Truncation, and String Theory = Lect. Notes. Math. Intersezioni (Bologna, Italy : Periodical) = Intersezioni Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems = Intersoc C Thermal T Intersociety Conference On Thermal and Thermomechanical Phenomena in Electronic Systems = Intersoc. C. Thermal T. Interspecific Interactions = Interspec Interact Interspecific Interactions = Interspec. Interact. Interstellar Disk-halo Connection in Galaxies = Iau Symp Interstellar Disk-halo Connection in Galaxies = Iau. Symp. Interstellar Dust : Contributed Papers = Nasa Conf P Interstellar Dust : Contributed Papers = Nasa. Conf. P. Interstellar Dust From Astronomical Observations to Fundamental Studies = Eas Publications Interstellar Dust From Astronomical Observations to Fundamental Studies = Eas. Publications. Interstellar Medium in Galaxies = Astrophys Space Sc L Interstellar Medium in Galaxies = Astrophys. Space. Sc. L. Interstellar Molecules: Their Laboratory and Interstellar Habitat = Springer Trac Mod Ph Interstellar Molecules: Their Laboratory and Interstellar Habitat = Springer. Trac. Mod. Ph. Interstitial Intermetallic Alloys = Nato Adv Sci I E-app Interstitial Intermetallic Alloys = Nato. Adv. Sci. I. E-app. Interstitial Intermetallic Alloys = Nato Adv Sci Inst Se Interstitial Intermetallic Alloys = Nato. Adv. Sci. Inst. Se. Interstitial Lung Diseases = Eur Respir Monogr Interstitial Lung Diseases = Eur. Respir. Monogr. Interstitium, Connective Tissue and Lymphatics = Portl Pr P Interstitium, Connective Tissue and Lymphatics = Portl. Pr. P. Intersubband Transitions in Quantum Wells = Nato Adv Sci I B-phy Intersubband Transitions in Quantum Wells = Nato. Adv. Sci. I. B-phy. Intersubband Transitions in Quantum Wells: Physics and Device Applications I = Semicond Semimet Intersubband Transitions in Quantum Wells: Physics and Device Applications I = Semicond. Semimet. Intersubband Transitions in Quantum Wells: Physics and Device Applications I = Semiconduct Semimet Intersubband Transitions in Quantum Wells: Physics and Device Applications I = Semiconduct. Semimet. Intertextuality in Ugarit & Israel = Old Test St Intertextuality in Ugarit & Israel = Old. Test. St. Intertexture of Apocalyptic Discourse in The New Testament = Sbl Symp Ser Intertexture of Apocalyptic Discourse in The New Testament = Sbl. Symp. Ser. Inter-University Faculty Work Conference = Interuniv Fac Work Conf Inter-University Faculty Work Conference = Interuniv. Fac. Work Conf. Interval / Probabilistic Uncertainty and Non-classical Logics = Adv Soft Comp Interval / Probabilistic Uncertainty and Non-classical Logics = Adv. Soft. Comp. Intervening in The Brain: Changing Psyche and Society = Ethics Sci Tech Ass Intervening in The Brain: Changing Psyche and Society = Ethics. Sci. Tech. Ass. Interventional and Therapeutic Gastrointestinal Endoscopy = Front Gastroint Res Interventional and Therapeutic Gastrointestinal Endoscopy = Front. Gastroint. Res. Interventional Neuroradiology = Interv Neuroradiol Interventional Neuroradiology = Interv. Neuroradiol. Interventional Pulmonology = Eur Respir Monogr Interventional Pulmonology = Eur. Respir. Monogr. Interventional Radiology Procedures in Biopsy and Drainage = Tech Interv Radiol Interventional Radiology Procedures in Biopsy and Drainage = Tech. Interv. Radiol. Interventional Techniques in Cardiovascular Medicine = Dev Cardiovasc Med Interventional Techniques in Cardiovascular Medicine = Dev. Cardiovasc. Med. Intervention, Ethnic Conflict and State-building in Iraq = Stud Int Relat Intervention, Ethnic Conflict and State-building in Iraq = Stud. Int. Relat. Intervention in School and Clinic = Interv Sch Clin Intervention in School and Clinic = Interv. Sch. Clin. Interventions Advances in Art and Urban Futures Volume 4 = Adv Art Urban Future Interventions Advances in Art and Urban Futures Volume 4 = Adv. Art Urban Future. Interventions-international Journal of Postcolonial Studies = Interventions-uk Interventions-international Journal of Postcolonial Studies = Interventions-uk. Interventions = Interventions Intervention, Terrorism, and Torture: Contemporary Challenges to Just War Theory = Amintaphil Intervention, Terrorism, and Torture: Contemporary Challenges to Just War Theory = Amintaphil. Interviewing Experts = Res Methods Ser Interviewing Experts = Res. Methods. Ser. Intervirology=Intervirology;; Intervirology = Intervirology Interwoven Narrative Worlds of Patagonia = Mimesis Interwoven Narrative Worlds of Patagonia = Mimesis. Intestinal Absorptive Surface in Mammals of Different Sizes = Adv Anat Embryol Cel Intestinal Absorptive Surface in Mammals of Different Sizes = Adv. Anat. Embryol. Cel. Intestinal Disorders = Falk Symp Intestinal Disorders = Falk. Symp. Intestinal Immunology and Food Allergy = Nestle Nutr Works Se Intestinal Immunology and Food Allergy = Nestle. Nutr. Works. Se. Intestinal Inflammation and Colorectal Cancer = Falk Symp Intestinal Inflammation and Colorectal Cancer = Falk. Symp. Intestinal Mucosa and Its Diseases = Falk Symp Intestinal Mucosa and Its Diseases = Falk. Symp. Intestinal Plasticity in Health and Disease = Ann Ny Acad Sci Intestinal Plasticity in Health and Disease = Ann. Ny. Acad. Sci. In The Frontiers of Computational Science = Lect Ser Computer Co In The Frontiers of Computational Science = Lect. Ser. Computer. Co. In The Light of Medieval Spain: Islam, The West, and The Relevance of The Past = New Middle Ages In The Light of Medieval Spain: Islam, The West, and The Relevance of The Past = New. Middle. Ages. In The Midst of Events = Brit Polit Soc In The Midst of Events = Brit. Polit. Soc. In Theory Only = In Theor Only In Theory Only = In Theor. Only In The Presence of English: Media and European Youth = Lang Policy Ser In The Presence of English: Media and European Youth = Lang. Policy. Ser. In The Scope of Logic: Methodology & Philosophy of Science = Synth Libr In The Scope of Logic: Methodology & Philosophy of Science = Synth. Libr. In The Tradition of Ahlfors and Bers, Iii = Contemp Math In The Tradition of Ahlfors and Bers, Iii = Contemp. Math. In The Tradition of Ahlfors-bers, Iv = Contemp Math In The Tradition of Ahlfors-bers, Iv = Contemp. Math. In The Tradition of Ahlfors-bers, V = Contemp Math In The Tradition of Ahlfors-bers, V = Contemp. Math. In The Wrong Place - Alien Marine Crustaceans: Distribution, Biology and Impacts = Invad Nat Spring Ser In The Wrong Place - Alien Marine Crustaceans: Distribution, Biology and Impacts = Invad. Nat. Spring. Ser. Intimate State: Love-marriage and The Law in Delhi = Crit Asian Stud-ser Intimate State: Love-marriage and The Law in Delhi = Crit. Asian. Stud-ser. Intimate Supply Chain: Leveraging The Supply Chain to Manage The Customer Experience = Resource Manag-crc Intimate Supply Chain: Leveraging The Supply Chain to Manage The Customer Experience = Resource. Manag-crc. Intonation Deutscher Regionalsprachen = Linguist-impulse Ten Intonation Deutscher Regionalsprachen = Linguist-impulse. Ten. Intonation = Text Speech Lang Tec Intonation = Text. Speech. Lang. Tec. Into The Nano Era = Springer Ser Mater S Into The Nano Era = Springer. Ser. Mater. S. Into The Second Century of Worldwide Glacier Monitoring - Prospects and Strategies = Stud Hydrol Into The Second Century of Worldwide Glacier Monitoring - Prospects and Strategies = Stud. Hydrol. InTouch (Melville, N.Y.) = InTouch Intra-asian Trade and Industrialization = Rout Explor Intra-asian Trade and Industrialization = Rout. Explor. Intra-asian Trade and Industrialization = Routl Explor Econ Hi Intra-asian Trade and Industrialization = Routl. Explor. Econ. Hi. Intra-asian Trade and The World Market = Routl Stud Mod Hist Intra-asian Trade and The World Market = Routl. Stud. Mod. Hist. Intracavity and Extracavity Control of Laser Beam Properties = P Soc Photo-opt Ins Intracavity and Extracavity Control of Laser Beam Properties = P. Soc. Photo-opt. Ins. Intracellular Delivery: Fundamentals and Applications = Fund Biomed Technol Intracellular Delivery: Fundamentals and Applications = Fund. Biomed. Technol. Intracellular Protein Catabolism = Adv Exp Med Biol Intracellular Protein Catabolism = Adv. Exp. Med. Biol. Intracellular Traffic and Neurodegenerative Disorders = Res Per Alz Intracellular Traffic and Neurodegenerative Disorders = Res. Per. Alz. Intracerebral Hemorrhage Hydrocephalus Malresorptivus Peripheral Nerves = Adv Neuros Intracerebral Hemorrhage Hydrocephalus Malresorptivus Peripheral Nerves = Adv. Neuros. Intracerebral Transplantation in Movement Disorders = Res Neurol Intracerebral Transplantation in Movement Disorders = Res. Neurol. Intracranial Hypertension = Neurol Lab Clin Res Intracranial Hypertension = Neurol. Lab. Clin. Res. Intracranial Pressure and Brain Biochemical Monitoring = Acta Neurochir Suppl Intracranial Pressure and Brain Biochemical Monitoring = Acta. Neurochir. Suppl. Intracranial Pressure and Brain Biochemical Monitoring = Act Neur S Intracranial Pressure and Brain Biochemical Monitoring = Act. Neur. S. Intracranial Pressure and Brain Monitoring Xii = Act Neur S Intracranial Pressure and Brain Monitoring Xii = Act. Neur. S. Intracranial Pressure and Brain Monitoring Xiii: Mechanisms and Treatment = Acta Neurochir Suppl Intracranial Pressure and Brain Monitoring Xiii: Mechanisms and Treatment = Acta. Neurochir. Suppl. Intracranial Pressure and Brain Monitoring Xiii: Mechanisms and Treatment = Act Neur S Intracranial Pressure and Brain Monitoring Xiii: Mechanisms and Treatment = Act. Neur. S. Intracranial Pressure and Neuromonitoring in Brain Injury = Act Neur S Intracranial Pressure and Neuromonitoring in Brain Injury = Act. Neur. S. Intracranial Vascular Malformations and Aneurysm: From Diagnostic Work-up to Endovascular Therapy, 2nd Revised Edition = Med Radiol Diagn Ima Intracranial Vascular Malformations and Aneurysm: From Diagnostic Work-up to Endovascular Therapy, 2nd Revised Edition = Med. Radiol. Diagn. Ima. Intractable Seizures: Diagnosis, Treatment and Prevention = Adv Exp Med Biol Intractable Seizures: Diagnosis, Treatment and Prevention = Adv. Exp. Med. Biol. Intra-group Dimensions of Ethnic Conflict in Sri Lanka: Learning to Read Between The Lines = Int Polit Econ Ser Intra-group Dimensions of Ethnic Conflict in Sri Lanka: Learning to Read Between The Lines = Int. Polit. Econ. Ser. Intra-jewish Conflict in Israel = Routl Stud Mid E Pol Intra-jewish Conflict in Israel = Routl. Stud. Mid. E. Pol. Intralogistik: Potentiale, Perspektiven, Prognosen = Vdi-buch Intralogistik: Potentiale, Perspektiven, Prognosen = Vdi-buch. Intraoperative Imaging in Neurosurgery: Mri, Ct, Ultrasound = Acta Neurochir Suppl Intraoperative Imaging in Neurosurgery: Mri, Ct, Ultrasound = Acta. Neurochir. Suppl. Intraoperative Imaging in Neurosurgery: Mri, Ct, Ultrasound = Act Neur S Intraoperative Imaging in Neurosurgery: Mri, Ct, Ultrasound = Act. Neur. S. Intraoperative Irradiation: Techniques and Results, Second Edition = Curr Clin Oncol Intraoperative Irradiation: Techniques and Results, Second Edition = Curr. Clin. Oncol. Intraoperative Radiation Therapy in The Treatment of Cancer = Front Radiat Ther On Intraoperative Radiation Therapy in The Treatment of Cancer = Front. Radiat. Ther. On. Intraovarian Regulators and Polycystic Ovarian Syndrome = Ann Ny Acad Sci Intraovarian Regulators and Polycystic Ovarian Syndrome = Ann. Ny. Acad. Sci. Intraperitoneal Cancer Therapy = Curr Clin Oncol Intraperitoneal Cancer Therapy = Curr. Clin. Oncol. Intraplate Strike-slip Deformation Belts = Geol Soc Spec Publ Intraplate Strike-slip Deformation Belts = Geol. Soc. Spec. Publ. Intraseasonal Variability in The Atmosphere-ocean Climate System = S-p B Environ Sci Intraseasonal Variability in The Atmosphere-ocean Climate System = S-p. B. Environ. Sci. Intra-state Conflict, Governments and Security = Contemp Secur Stud Intra-state Conflict, Governments and Security = Contemp. Secur. Stud. Intravascular Ultrasound = Dev Cardiovasc Med Intravascular Ultrasound = Dev. Cardiovasc. Med. Intravenous Immunoglobulins Today & Tomorrow = Roy Soc Med Int Cong Intravenous Immunoglobulins Today & Tomorrow = Roy. Soc. Med. Int. Cong. Intrinsically Conducting Polymers : An Emerging Technology = Nato Adv Sci Inst Se Intrinsically Conducting Polymers : An Emerging Technology = Nato. Adv. Sci. Inst. Se. Intrinsic Bioremediation = Bioremed Ser Intrinsic Bioremediation = Bioremed. Ser. Intrinsic Molecular Mobility and Toughness of Polymers I = Adv Polym Sci Intrinsic Molecular Mobility and Toughness of Polymers I = Adv. Polym. Sci. Intrinsic Molecular Mobility and Toughness of Polymers Ii = Adv Polym Sci Intrinsic Molecular Mobility and Toughness of Polymers Ii = Adv. Polym. Sci. Introducing Arguments = Linguist Inq Monogr Introducing Arguments = Linguist. Inq. Monogr. Introduction Aux Problemes Inverses Elliptiques Et Paraboliques = Math Appl-berlin Introduction Aux Problemes Inverses Elliptiques Et Paraboliques = Math. Appl-berlin. Introductions and Transfers of Aquatic Species = Ices Mar Sc Introductions and Transfers of Aquatic Species = Ices. Mar. Sc. Introduction to Antenna Analysis Using Em Simulators = Artech Hse Antenn Pr Introduction to Antenna Analysis Using Em Simulators = Artech. Hse. Antenn. Pr. Introduction to Applied Bayesian Statistics and Estimation for Social Scientists = Stat Soc Behav Sc Introduction to Applied Bayesian Statistics and Estimation for Social Scientists = Stat. Soc. Behav. Sc. Introduction to Applied Multivariate Analysis With R = Use R Introduction to Applied Multivariate Analysis With R = Use. R Introduction to Applied Optimization, Second Edition = Springer Ser Optim A Introduction to Applied Optimization, Second Edition = Springer. Ser. Optim. A. Introduction to Climate Modelling = Adv Geophys Env Mech Introduction to Climate Modelling = Adv. Geophys. Env. Mech. Introduction to Complex Plasmas = Springer Ser Atom Op Introduction to Complex Plasmas = Springer. Ser. Atom. Op. Introduction to Complex Reflection Groups and Their Braid Groups = Lect Notes Math Introduction to Complex Reflection Groups and Their Braid Groups = Lect. Notes. Math. Introduction to Computational Micromechanics: Corrected Second Printing = Lect Notes Appl Comp Introduction to Computational Micromechanics: Corrected Second Printing = Lect. Notes. Appl. Comp. Introduction to Databases: From Biological to Spatio-temporal = Texts Comput Sci Introduction to Databases: From Biological to Spatio-temporal = Texts. Comput. Sci. Introduction to Data Technologies = Ch Crc Comp Sci Data Introduction to Data Technologies = Ch. Crc. Comp. Sci. Data Introduction to Delay Differential Equations With Applications to The Life Sciences = Texts Appl Math Introduction to Delay Differential Equations With Applications to The Life Sciences = Texts. Appl. Math. Introduction to Derivative-free Optimization = Mps-siam Ser Optimiz Introduction to Derivative-free Optimization = Mps-siam. Ser. Optimiz. Introduction to Direction-of-arrival Estimation = Artech Hse Sig Proc Introduction to Direction-of-arrival Estimation = Artech. Hse. Sig. Proc. Introduction to Echo Analysis: Scattering Theory and Wave Propagation = Springer Monogr Math Introduction to Echo Analysis: Scattering Theory and Wave Propagation = Springer. Monogr. Math. Introduction to Electron Microscopy for Biologists = Method Cell Biol Introduction to Electron Microscopy for Biologists = Method. Cell. Biol. Introduction to Electrostatic Measurements = Electr Eng Dev Introduction to Electrostatic Measurements = Electr. Eng. Dev. Introduction to Empirical Processes and Semiparametric Inference = Springer Ser Stat Introduction to Empirical Processes and Semiparametric Inference = Springer. Ser. Stat. Introduction to Epidemiology for Health Professionals = Springer Ser Epidemi Introduction to Epidemiology for Health Professionals = Springer. Ser. Epidemi. Introduction to Evolutionary Algorithms = Decis Eng Introduction to Evolutionary Algorithms = Decis. Eng. Introduction to Financial Models for Management and Planning = Ch Crc Financ Ser Introduction to Financial Models for Management and Planning = Ch. Crc. Financ. Ser. Introduction to Fluid Mechanics and Transport Phenomena = Fluid Mech Appl Introduction to Fluid Mechanics and Transport Phenomena = Fluid Mech. Appl. Introduction to Food Process Engineering, Second Edition = Food Sci Text Ser Introduction to Food Process Engineering, Second Edition = Food Sci. Text. Ser. Introduction to Fronts in Random Media = Surv Tutor Appl Math Introduction to Fronts in Random Media = Surv. Tutor. Appl. Math. Introduction to Frustrated Magnetism: Materials, Experiments, Theory = Springer Ser Solid-s Introduction to Frustrated Magnetism: Materials, Experiments, Theory = Springer. Ser. Solid-s. Introduction to Generalized Linear Models, Third Edition = Ch Crc Text Stat Sci Introduction to Generalized Linear Models, Third Edition = Ch. Crc. Text. Stat. Sci. Introduction to G-functions = Ann Math Stud Introduction to G-functions = Ann. Math. Stud. Introduction to Glbt Family Studies = Haworth Ser Glbt Fam Introduction to Glbt Family Studies = Haworth. Ser. Glbt Fam. Introduction to Grid Computing = Ch Crc Numer Anal Sc Introduction to Grid Computing = Ch. Crc. Numer. Anal. Sc. Introduction to Group Theory = Ems Textb Math Introduction to Group Theory = Ems. Textb. Math. Introduction to Hamiltonian Dynamical Systems and The N-body Problem, Second Edition = Appl Math Sci Introduction to Hamiltonian Dynamical Systems and The N-body Problem, Second Edition = Appl. Math. Sci. Introduction to Harmonic Analysis and Generalized Gelfand Pairs = Degruyter Stud Math Introduction to Harmonic Analysis and Generalized Gelfand Pairs = Degruyter. Stud. Math. Introduction to Heavy-tailed and Subexponential Distribution = Springer Ser Oper Re Introduction to Heavy-tailed and Subexponential Distribution = Springer. Ser. Oper. Re. Introduction to Homological Algebra, Second Edition = Universitext Introduction to Homological Algebra, Second Edition = Universitext. Introduction to Hydro Energy Systems: Basics, Technology and Operation = Green Energy Technol Introduction to Hydro Energy Systems: Basics, Technology and Operation = Green. Energy Technol. Introduction to Identity-based Encryption = Artech Hse Inf Secur Introduction to Identity-based Encryption = Artech. Hse. Inf. Secur. Introduction to Iterative Toeplitz Solvers = Fund Algorithms Introduction to Iterative Toeplitz Solvers = Fund. Algorithms. Introduction to Machine Learning and Bioinformatics = Ch Crc Comp Sci Data Introduction to Machine Learning and Bioinformatics = Ch. Crc. Comp. Sci. Data. Introduction to Mathematics of Emerging Biomedical Imaging = Math Appl-berlin Introduction to Mathematics of Emerging Biomedical Imaging = Math. Appl-berlin. Introduction to Medical Geology: Focus On Tropical Environments = Erlangen Earth C Ser Introduction to Medical Geology: Focus On Tropical Environments = Erlangen. Earth. C. Ser. Introduction to Microsystem Design = Rwthedition Introduction to Microsystem Design = Rwthedition. Introduction to Modeling and Simulation of Particulate Flows = Comput Sci Eng Ser Introduction to Modeling and Simulation of Particulate Flows = Comput. Sci. Eng. Ser. Introduction to Network Security = Ch Crc Comp Info Sci Introduction to Network Security = Ch. Crc. Comp. Info. Sci. Introduction to Nonimaging Optics = Opt Sci Eng-crc Introduction to Nonimaging Optics = Opt. Sci. Eng-crc. Introduction to Nonlinear and Global Optimization = Springer Ser Optim A Introduction to Nonlinear and Global Optimization = Springer. Ser. Optim. A. Introduction to Nonlinear Dispersive Equations = Universitext Introduction to Nonlinear Dispersive Equations = Universitext. Introduction to Nonlinear Functional Analysis and Elliptic Problems = Prog Nonlinear Diffe Introduction to Nonlinear Functional Analysis and Elliptic Problems = Prog. Nonlinear Diffe. Introduction to Nonparametric Estimation = Springer Ser Stat Introduction to Nonparametric Estimation = Springer. Ser. Stat. Introduction to Object Recognition = Adv Pattern Recognit Introduction to Object Recognition = Adv. Pattern. Recognit. Introduction to Optimal Control Problems in Life Sciences and Economics: From Mathematical Models to Numerical Simulation With Matlab = Model Simul Sci Eng Introduction to Optimal Control Problems in Life Sciences and Economics: From Mathematical Models to Numerical Simulation With Matlab = Model. Simul. Sci. Eng. Introduction to Ordinary Differential Equations = Universitext Introduction to Ordinary Differential Equations = Universitext. Introduction to Organic Electronic and Optoelectronic Materials and Devices = Opt Sci Eng-crc Introduction to Organic Electronic and Optoelectronic Materials and Devices = Opt. Sci. Eng-crc. Introduction to Plasma Spectroscopy = Springer Ser Atom Op Introduction to Plasma Spectroscopy = Springer. Ser. Atom. Op. Introduction to Precision Machine Design and Error Assessment = Mech Eng-crc Introduction to Precision Machine Design and Error Assessment = Mech. Eng-crc. Introduction to Probability With R = Ch Crc Text Stat Sci Introduction to Probability With R = Ch. Crc. Text. Stat. Sci. Introduction to Quantum Groups = Mod Birkhauser Class Introduction to Quantum Groups = Mod. Birkhauser. Class. Introduction to Quantum Spin Systems = Lect Notes Phys Introduction to Quantum Spin Systems = Lect. Notes. Phys. Introduction to Queueing Theory: Modeling and Analysis in Applications = Stat Ind Technol Introduction to Queueing Theory: Modeling and Analysis in Applications = Stat. Ind. Technol. Introduction to Radiation Protection in Medicine = Ser Med Phys Biomed Introduction to Radiation Protection in Medicine = Ser. Med. Phys. Biomed. Introduction to Ramsey Spaces = Ann Math Stud Introduction to Ramsey Spaces = Ann. Math. Stud. Introduction to Relativistic Continuum Mechanics = Lect Notes Phys Introduction to Relativistic Continuum Mechanics = Lect. Notes. Phys. Introduction to Rf Design Using Em Simulators = Artech Hse Microw Li Introduction to Rf Design Using Em Simulators = Artech. Hse. Microw. Li. Introduction to Rural Planning = Nat Built Environ Se Introduction to Rural Planning = Nat. Built. Environ. Se. Introduction to Siegel Modular Forms and Dirichlet Series = Universitext Introduction to Siegel Modular Forms and Dirichlet Series = Universitext. Introduction to Soil Dynamics = Theor Appl Trans Por Introduction to Soil Dynamics = Theor. Appl. Trans. Por. Introduction to Space Charge Effects in Semiconductors = Springer Ser Solid-s Introduction to Space Charge Effects in Semiconductors = Springer. Ser. Solid-s. Introduction to Spanish Private Law: Facing The Social and Economic Challenges = U Tex Aust Stud Fore Introduction to Spanish Private Law: Facing The Social and Economic Challenges = U. Tex. Aust. Stud. Fore. Introduction to Spatial Econometrics = Stat Textb Monogr Introduction to Spatial Econometrics = Stat. Textb. Monogr. Introduction to Stochastic Calculus for Finance: A New Didactic Approach = Lect Notes Econ Math Introduction to Stochastic Calculus for Finance: A New Didactic Approach = Lect. Notes. Econ. Math. Introduction to Stochastic Integration = Universitext Introduction to Stochastic Integration = Universitext. Introduction to Stochastic Programming, Second Edition = Springer Ser Oper Re Introduction to Stochastic Programming, Second Edition = Springer. Ser. Oper. Re. Introduction to Structural Optimization = Solid Mech Appl Introduction to Structural Optimization = Solid. Mech. Appl. Introduction to Sustainable Development, Third Edition = Routl Perspect Dev Introduction to Sustainable Development, Third Edition = Routl. Perspect. Dev. Introduction to Symplectic Dirac Operators = Lect Notes Math Introduction to Symplectic Dirac Operators = Lect. Notes. Math. Introduction to The Basics of Reliability and Risk Analysis = Ser Qual Reliab Eng Introduction to The Basics of Reliability and Risk Analysis = Ser. Qual. Reliab. Eng. Introduction to The Boltzmann Equation and Transport Processes in Gases = Interact Mech Math Introduction to The Boltzmann Equation and Transport Processes in Gases = Interact. Mech. Math. Introduction to The Confinement Problems = Lect Notes Phys Introduction to The Confinement Problems = Lect. Notes. Phys. Introduction to The Foundations of Applied Mathematics = Texts Appl Math Introduction to The Foundations of Applied Mathematics = Texts. Appl. Math. Introduction to The Functional Renormalization Group = Lect Notes Phys Introduction to The Functional Renormalization Group = Lect. Notes. Phys. Introduction to The Geometry and Topology of Fluid Flows = Nato Sci Ser Ii Math Introduction to The Geometry and Topology of Fluid Flows = Nato. Sci. Ser. Ii. Math. Introduction to The Graphical Theory of Angular Momentum: Case Studies = Springer Trac Mod Ph Introduction to The Graphical Theory of Angular Momentum: Case Studies = Springer. Trac. Mod. Ph. Introduction to The Mathematical Theory of Dynamic Materials = Adv Mech Math Introduction to The Mathematical Theory of Dynamic Materials = Adv. Mech. Math. Introduction to The Mathematical Theory of Inverse Problems, Second Edition = Appl Math Sci Introduction to The Mathematical Theory of Inverse Problems, Second Edition = Appl. Math. Sci. Introduction to The Mathematical Theory of The Navier-stokes Equations: Steady-state Problems, Second Edition = Springer Monogr Math Introduction to The Mathematical Theory of The Navier-stokes Equations: Steady-state Problems, Second Edition = Springer. Monogr. Math. Introduction to The Mathematics of Medical Imaging, Second Edition = Other Titl Appl Math Introduction to The Mathematics of Medical Imaging, Second Edition = Other. Titl. Appl. Math. Introduction to The Mathematics of Subdivision Surfaces = Other Titl Appl Math Introduction to The Mathematics of Subdivision Surfaces = Other. Titl. Appl. Math. Introduction to The Numerical Analysis of Incompressible Viscous Flows = Comput Sci Eng Ser Introduction to The Numerical Analysis of Incompressible Viscous Flows = Comput. Sci. Eng. Ser. Introduction to The Perturbation Theory of Hamiltonian Systems = Springer Monogr Math Introduction to The Perturbation Theory of Hamiltonian Systems = Springer. Monogr. Math. Introduction to The Physics of Diluted Magnetic Semiconductors = Springer Ser Mater S Introduction to The Physics of Diluted Magnetic Semiconductors = Springer. Ser. Mater. S. Introduction to The Physics of Electrons in Solids = Grad Texts Phys Introduction to The Physics of Electrons in Solids = Grad. Texts. Phys. Introduction to The Physics of Massive and Mixed Neutrinos = Lect Notes Phys Introduction to The Physics of Massive and Mixed Neutrinos = Lect. Notes. Phys. Introduction to The Relativistic Theory of Gravitation = Lect Notes Phys Introduction to The Relativistic Theory of Gravitation = Lect. Notes. Phys. Introduction to Thermoelectricity = Springer Ser Mater S Introduction to Thermoelectricity = Springer. Ser. Mater. S. Introduction to Time Series Modeling = Monogr Stat Appl Pro Introduction to Time Series Modeling = Monogr. Stat. Appl. Pro. Introduction to Topological Manifolds, Second Edition = Grad Texts Math Introduction to Topological Manifolds, Second Edition = Grad. Texts. Math. Introduction to Ultra Wideband for Wireless Communications = Signals Commun Techn Introduction to Ultra Wideband for Wireless Communications = Signals. Commun. Techn. Introduction to Variance Estimation, Second Edition = Stat Soc Behav Sc Introduction to Variance Estimation, Second Edition = Stat. Soc. Behav. Sc. Introduction to Wind Energy Systems: Basics, Technology and Operation = Green Energy Technol Introduction to Wind Energy Systems: Basics, Technology and Operation = Green. Energy Technol. Introduction to Zeolite Science and Practice = Stud Surf Sci Catal Introduction to Zeolite Science and Practice = Stud. Surf. Sci. Catal. Introductory Lectures On Fluctuations of Levy Processes With Applications = Universitext Introductory Lectures On Fluctuations of Levy Processes With Applications = Universitext. Introductory Philosophy of Medicine = Philos Med Introductory Philosophy of Medicine = Philos. Med. Introductory Statistics With R, Second Edition = Stat Comput Ser Introductory Statistics With R, Second Edition = Stat. Comput. Ser. Introductory Time Series With R = Use R Introductory Time Series With R = Use. R Intrusion Detection Systems = Adv Inform Secur Intrusion Detection Systems = Adv. Inform. Secur. Intuicion Y Perplejidad En La Antropologia De Scheler = Cuad Anu Filos Intuicion Y Perplejidad En La Antropologia De Scheler = Cuad. Anu. Filos. Intuitive Geometry = Bolyai Math Stud Intuitive Geometry = Bolyai. Math. Stud. Intuitive Geometry = Bolyai Soc Math Stud Intuitive Geometry = Bolyai. Soc. Math. Stud. Intuitive Human Interfaces for Organizing and Accessing Intellectual Assets = Lect Notes Artif Int Intuitive Human Interfaces for Organizing and Accessing Intellectual Assets = Lect. Notes. Artif. Int. INTUS : revista de las unidades docentes de psicologia medica, clinica psiquiatrica e historia de la medicina = Intus Invading Nature-springer Series in Invasion Ecology = Invad Nat Spring Ser Invading Nature-springer Series in Invasion Ecology = Invad. Nat. Spring. Ser. Invariant Descriptive Set Theory = Monogr Txb Pure Appl Invariant Descriptive Set Theory = Monogr. Txb. Pure. Appl. Invariant Factors, Julia Equivalences and The (abstract) Mandelbrot Set = Lect Notes Math Invariant Factors, Julia Equivalences and The (abstract) Mandelbrot Set = Lect. Notes. Math. Invariant Imbedding and Inverse Problems = Siam Proc S Invariant Imbedding and Inverse Problems = Siam. Proc. S. Invariants of Behavior: Constancy and Variability in Neural Systems = Springer Ser Cog Neu Invariants of Behavior: Constancy and Variability in Neural Systems = Springer. Ser. Cog. Neu. Invariant Subspaces of Matrices With Applications = Class Appl Math Invariant Subspaces of Matrices With Applications = Class. Appl. Math. Invariant Theory and Tableaux = Ima V Math Invariant Theory and Tableaux = Ima. V. Math. Invasion and Metastasis=Invasion Metastasis;; Invasion and Metastasis = Invasion Metastasis Invasion & metastasis = Invasion Metastasis Invasion & Metastasis = Invas Metast Invasion & Metastasis = Invas. Metast. Invasive Fungal Infection = Roy S Med S Invasive Fungal Infection = Roy. S. Med. S. Invasive Plant Science and Management = Invas Plant Sci Mana Invasive Plant Science and Management = Invas. Plant Sci. Mana. Invectives of Sallust and Cicero = Sozomena-stud Recov Invectives of Sallust and Cicero = Sozomena-stud. Recov. Invented Edens: Techno-cities of The Twentieth Century = Lemelson Cent Stud I Invented Edens: Techno-cities of The Twentieth Century = Lemelson. Cent. Stud. I. Inventing Leadership:the Challenge of Democracy = New Horiz Leadersh S Inventing Leadership:the Challenge of Democracy = New. Horiz. Leadersh. S. Inventiones Mathematicae = Invent. Math. Inventiones Mathematicae = Invent Math Inventiones Mathematicae = Invent. Math. Invention of Enterprise: Entrepreneurship From Ancient Mesopotamia to Modern Times = Kauff Found Ser Invention of Enterprise: Entrepreneurship From Ancient Mesopotamia to Modern Times = Kauff. Found. Ser. Inventory and Supply Chain Management With Forecast Updates = Int Ser Oper Res Man Inventory and Supply Chain Management With Forecast Updates = Int. Ser. Oper. Res. Man. Inventory Control, Second Edition = Int Ser Oper Res Man Inventory Control, Second Edition = Int. Ser. Oper. Res. Man. Inventory of Current Usage in French-speaking Countries = Univ Fra S Inventory of Current Usage in French-speaking Countries = Univ. Fra. S. Inventurstudie 2008 Und Treibhausgasinventar Wald = Landbauforsch-vti Ag Inventurstudie 2008 Und Treibhausgasinventar Wald = Landbauforsch-vti. Ag. Inverse Agonism = Int Congr Ser Inverse Agonism = Int. Congr. Ser. Inverse and Algebraic Quantum Scattering Theory = Lect Notes Phys Inverse and Algebraic Quantum Scattering Theory = Lect. Notes. Phys. Inverse and Ill-posed Problems Series = Inver Ill Posed Prob Inverse and Ill-posed Problems Series = Inver. Ill. Posed. Prob. Inverse and Ill-posed Problems Series = Inverse Ill-posed Probl. Ser. Inverse Methods in Global Biogeochemical Cycles = Geoph Monog Series Inverse Methods in Global Biogeochemical Cycles = Geoph. Monog. Series. Inverse Methods in Global Biogeochemical Cycles = Geophys Monogr Ser Inverse Methods in Global Biogeochemical Cycles = Geophys. Monogr. Ser. Inverse Optics Iii = P Soc Photo-opt Ins Inverse Optics Iii = P. Soc. Photo-opt. Ins. Inverse Problem = Res Meas Ap Inverse Problem = Res. Meas. Ap. Inverse Problems and Imaging = Inverse Probl Imag Inverse Problems and Imaging = Inverse Probl. Imag. Inverse Problems and Imaging = Lect Notes Math Inverse Problems and Imaging = Lect. Notes. Math. Inverse Problems and Optimal Design in Industry, Proceedings of The Conference = Eur Con Mat Inverse Problems and Optimal Design in Industry, Proceedings of The Conference = Eur. Con. Mat. Inverse Problems and Related Topics = Ch Crc Res Notes Inverse Problems and Related Topics = Ch. Crc. Res. Notes. Inverse Problems and Related Topics = Ch Crc Res Notes Mat Inverse Problems and Related Topics = Ch. Crc. Res. Notes. Mat. Inverse Problems in Diffusion Processes = Siam Proc S Inverse Problems in Diffusion Processes = Siam. Proc. S. Inverse Problems in Electric Circuits and Electromagnetics = Math Anal Tech Appl Inverse Problems in Electric Circuits and Electromagnetics = Math. Anal. Tech. Appl. Inverse Problems in Engineerign = Inverse Prob. Eng. Inverse Problems in Engineering = Inverse Probl Eng Inverse Problems in Engineering = Inverse Probl. Eng. Inverse Problems in Geophysical Applications = Siam Proc S Inverse Problems in Geophysical Applications = Siam. Proc. S. Inverse Problems in Partial Differential Equations = Siam Proc S Inverse Problems in Partial Differential Equations = Siam. Proc. S. Inverse Problems in Scattering and Imaging / = Malvern Phy Inverse Problems in Scattering and Imaging / = Malvern. Phy. Inverse Problems in Scattering and Imaging = P Soc Photo-opt Ins Inverse Problems in Scattering and Imaging = P. Soc. Photo-opt. Ins. Inverse Problems in Science and Engineering = Inverse Probl Sci En Inverse Problems in Science and Engineering = Inverse Probl. Sci. En. Inverse Problems in Science and Engineering = Inverse Prob. Sci. Eng. Inverse Problems = Inverse Prob. Inverse problems = Inverse Probl Inverse Problems = Inverse Probl Inverse Problems = Inverse Probl. Inverse Problems = Inverse Problems Inverse Problems, Multi-scale Analysis and Effective Medium Theory = Contemp Math Inverse Problems, Multi-scale Analysis and Effective Medium Theory = Contemp. Math. Inversion Method in The Discrete-time Nonlinear Control Systems Synthesis Problems = Lect Notes Contr Inf Inversion Method in The Discrete-time Nonlinear Control Systems Synthesis Problems = Lect. Notes. Contr. Inf. Invertebrate and Vertebrate Eye Development = Curr Top Dev Biol Invertebrate and Vertebrate Eye Development = Curr. Top. Dev. Biol. Invertebrate Biology = Invertebr Biol Invertebrate Biology = Invertebr. Biol. Invertebrate Immunity = Adv Exp Med Biol Invertebrate Immunity = Adv. Exp. Med. Biol. Invertebrate Neurobiology = Cold Spring Harb Mon Invertebrate Neurobiology = Cold. Spring. Harb. Mon. Invertebrate neuroscience : IN = Invert Neurosci Invertebrate Neuroscience = Invertebr Neurosci Invertebrate Neuroscience = Invertebr. Neurosci. Invertebrate Neuroscience=Invert Neurosci;; Invertebrate Neuroscience = Invert. Neurosci. Invertebrate Reproduction & Development = Invertebr Reprod Dev Invertebrate Reproduction & Development = Invertebr. Reprod. Dev. Invertebrate Systematics = Invertebr Syst Invertebrate Systematics = Invertebr. Syst. Invertebrate Taxonomy = Invertebr Taxon Invertebrate Taxonomy = Invertebr. Taxon. Investigacion Agraria-sistemas Y Recursos Forestales = Inv Agrar-sist Rec F Investigacion Agraria-sistemas Y Recursos Forestales = Inv. Agrar-sist. Rec. F. Investigacion Agraria-sistemas Y Recursos Forestales = Invest Agrar-sist R Investigacion Agraria-sistemas Y Recursos Forestales = Invest. Agrar-sist. R. Investigacion Bibliotecologia = Investig Bibliotecol Investigacion Bibliotecologia = Investig. Bibliotecol. Investigacion Bibliotecologica = Investig Bibliotecol Investigacion Bibliotecologica = Investig. Bibliotecol. Investigacion clinica = Invest Clin Investigacion Clinica=Invest Clin;; Investigacion Clinica = Invest Clin Investigacion Clinica = Invest. Clin. Investigacion economica / Escuela Nacional de Economia, Universidad Nacional Autonoma de Mexico = Invest Econ Investigacion Economica = Invest Econ-mex Investigacion Economica = Invest. Econ-mex. Investigación Económica=Investigación Econ. Investigaciones De Negocios Hispanos Y Latinos = Invest Neg Hisp Lat Investigaciones De Negocios Hispanos Y Latinos = Invest. Neg. Hisp. Lat. Investigaciones Economicas = Invest Econ-spain Investigaciones Economicas = Invest. Econ-spain. Investigaciones Economicas=Investigaciones Econ. Investigaciones historicas (Universidad de Valladolid. Departamento de Historia Moderna) = Invest Hist Investigacion medica internacional = Invest Med Int Investigacion Medica Internacional = Invest Med Int Investigacion Medica Internacional = Invest. Med. Int. Investigación Operacional = Investigación Oper. Investigacion Pesquera = Invest Pesq Investigacion Pesquera = Invest. Pesq. Investigacion y ciencia = Investig Cienc Investigating Translation = Benjamin Transl Lib Investigating Translation = Benjamin. Transl. Lib. Investigating University-school Partnerships = Res Prof Dev Sch Investigating University-school Partnerships = Res. Prof. Dev. Sch. Investigational New Drugs = Invest New Drug Investigational New Drugs = Invest. New Drug. Investigational new drugs = Invest New Drugs Investigational New Drugs=Invest New Drugs;; Investigational New Drugs = Invest. New Drugs Investigation and Forensic Science Technologies = P Soc Photo-opt Ins Investigation and Forensic Science Technologies = P. Soc. Photo-opt. Ins. Investigation and Practice in Pediatric Pathology = Investig. Pract. Pediatr. Pathol. Investigations and Applications of Severe Plastic Deformation = Nato Sci S Prt 3 Hi Investigations and Applications of Severe Plastic Deformation = Nato. Sci. S. Prt. 3. Hi. Investigations in Cognitive Grammar = Cogn Linguist Res Investigations in Cognitive Grammar = Cogn. Linguist. Res. Investigations in Instructed Second Language Acquisition = Stud Lang Acquis Investigations in Instructed Second Language Acquisition = Stud. Lang. Acquis. Investigations Into The Tectonics of The Tibetan Plateau = Geol Soc Am Spec Pap Investigations Into The Tectonics of The Tibetan Plateau = Geol. Soc. Am. Spec. Pap. Investigations of Field Dynamics in Laser Plasmas With Proton Imaging = Springer Theses-reco Investigations of Field Dynamics in Laser Plasmas With Proton Imaging = Springer. Theses-reco. Investigative and Cell Pathology = Invest. Cell Pathol. Investigative and Trial Image Processing = P Soc Photo-opt Ins Investigative and Trial Image Processing = P. Soc. Photo-opt. Ins. Investigative & cell pathology = Invest Cell Pathol Investigative & Cell Pathology = Invest Cell Pathol Investigative & Cell Pathology = Invest. Cell Pathol. Investigative Image Processing Ii = Proc Spie Investigative Image Processing Ii = Proc. Spie. Investigative Image Processing Ii = P Soc Photo-opt Ins Investigative Image Processing Ii = P. Soc. Photo-opt. Ins. Investigative Image Processing = P Soc Photo-opt Ins Investigative Image Processing = P. Soc. Photo-opt. Ins. Investigative Ophthalmology and Visual Science=Invest Ophthalmol Vis Sci;; Investigative Ophthalmology and Visual Science = Invest. Ophthalmol. Vis. Sci. Investigative ophthalmology = Invest Ophthalmol Investigative Ophthalmology = Invest. Ophthalmol. Investigative Ophthalmology = Invest Ophth Visual Investigative Ophthalmology = Invest. Ophth. Visual. Investigative ophthalmology & visual science = Invest Ophthalmol Vis Sci Investigative Ophthalmology & Visual Science = Invest Ophth Vis Sci Investigative Ophthalmology & Visual Science = Invest. Ophth. Vis. Sci. Investigative radiology = Invest Radiol Investigative Radiology=Invest Radiol;; Investigative Radiology = Invest Radiol Investigative Radiology = Invest. Radiol. Investigative urology (Berlin, Germany) = Investig Urol (Berl) Investigative urology = Invest Urol Investigative Urology = Invest Urol Investigative Urology = Invest. Urol. Investing in Biological Diversity = Oecd Proc Investing in Biological Diversity = Oecd. Proc. Investing in Reform = Geonom Inst Investing in Reform = Geonom. Inst. Investing in The United States: Is The Us Ready for Fdi From China = Stud Int Invest Investing in The United States: Is The Us Ready for Fdi From China = Stud. Int. Invest. Investment Analysts Journal = Invest Anal J Investment Analysts Journal = Invest. Anal. J. Investment Canada Research Series = Inv Can Res Investment Canada Research Series = Inv. Can. Res. Investment Counsel for Private Clients = Icfa Cont Educ Ser Investment Counsel for Private Clients = Icfa. Cont. Educ. Ser. Investment in Renewable Energy = Imeche Sem Investment in Renewable Energy = Imeche. Sem. Investment Management and Mismanagement: History, Findings, and Analysis = Innov Financ Market Investment Management and Mismanagement: History, Findings, and Analysis = Innov. Financ. Market. Investment Policy=Invest. Pol. Investment, R&d, and Log-run Growth = Lect Notes Econ Math Investment, R&d, and Log-run Growth = Lect. Notes. Econ. Math. Investor-Owned Hospital Review = Investor. Owned Hosp. Rev. Invexity and Optimization = Nonconvex Optim Invexity and Optimization = Nonconvex. Optim. Invigilata lucernis = InvLuc Invigilata lucernis: rivista dell'Istituto di Latino = InvLuc Invisible Hand and The Common Good = St Econ Ethic Philos Invisible Hand and The Common Good = St. Econ. Ethic. Philos. Invisible Hand in Economics: How Economists Explain Unintended Social Consequences = Routl Inem Adv Econ Invisible Hand in Economics: How Economists Explain Unintended Social Consequences = Routl. Inem. Adv. Econ. Invisible Universe: Dark Matter and Dark Energy = Lect Notes Phys Invisible Universe: Dark Matter and Dark Energy = Lect. Notes. Phys. Invisible Universe International Conference = Aip Conf Proc Invisible Universe International Conference = Aip. Conf. Proc. Invitation to Quantum Cohomology: Kontsevich's Formula for Rational Plane Curves = Prog Math Invitation to Quantum Cohomology: Kontsevich's Formula for Rational Plane Curves = Prog. Math. Invitation to Quantum Groups and Duality: From Hopf Algebras to Multiplicative Unitaries and Beyond = Ems Textb Math Invitation to Quantum Groups and Duality: From Hopf Algebras to Multiplicative Unitaries and Beyond = Ems. Textb. Math. Invitation to Topological Robotics = Zur Lect Adv Math Invitation to Topological Robotics = Zur. Lect. Adv. Math. In Vitro and Molecular Toxicology = In Vitr. Mol. Toxicol. In Vitro Cellular and Developmental Biology. Animal=In Vitro Cell Dev Biol Anim;; In Vitro Cellular and Developmental Biology. Animal = In Vitro Cell. Dev. Biol. Anim. In Vitro Cellular and Developmental Biology = In Vitro Cell. Dev. Biol. In Vitro Cellular & Developmental Biology-animal = In Vitro Cell Dev-an In Vitro Cellular & Developmental Biology-animal = In Vitro Cell. Dev-an. In vitro cellular & developmental biology. Animal = In Vitro Cell Dev Biol Anim In Vitro Cellular & Developmental Biology = In Vitro Cell Dev B In Vitro Cellular & Developmental Biology = In Vitro Cell. Dev. B. In vitro cellular & developmental biology : journal of the Tissue Culture Association = In Vitro Cell Dev Biol In Vitro Cellular & Developmental Biology-plant = In Vitro Cell Dev-pl In Vitro Cellular & Developmental Biology-plant = In Vitro Cell. Dev-pl. In vitro cellular & developmental biology. Plant : journal of the Tissue Culture Association = In Vitro Cell Dev Biol Plant In-vitro Diagnostic Instrumentation = Proc Spie In-vitro Diagnostic Instrumentation = Proc. Spie. In-vitro Diagnostic Instrumentation = P Soc Photo-opt Ins In-vitro Diagnostic Instrumentation = P. Soc. Photo-opt. Ins. In vitro = In Vitro In Vitro = In Vitro In Vitro-in Vivo Correlations = Adv Exp Med Biol In Vitro-in Vivo Correlations = Adv. Exp. Med. Biol. In Vitro-journal of The Tissue Culture Association = In Vitro Cell Dev B In Vitro-journal of The Tissue Culture Association = In Vitro. Cell. Dev. B. In Vitro & Molecular Toxicology-a Journal of Basic and Applied Research = In Vitro Mol Toxicol In Vitro & Molecular Toxicology-a Journal of Basic and Applied Research = In Vitro Mol. Toxicol. In vitro & molecular toxicology = In Vitr Mol Toxicol In vitro. Monograph = In Vitro Monogr In Vitro. Monograph = In Vitro. Monogr. In Vitro Mutagenesis Protocols, Third Edition = Methods Mol Biol In Vitro Mutagenesis Protocols, Third Edition = Methods. Mol. Biol. In Vitro Neurotoxicology: Methods and Protocols = Methods Mol Biol In Vitro Neurotoxicology: Methods and Protocols = Methods Mol. Biol. In Vitro Toxicology = In Vitro Toxicol In Vitro Toxicology = In Vitro Toxicol. In Vitro Toxicology : Mechanisms and New Technology = Altern Meth In Vitro Toxicology : Mechanisms and New Technology = Altern. Meth. In Vitro Toxicology : New Directions = Altern Meth In Vitro Toxicology : New Directions = Altern. Meth. In Vitro Toxicology: Tenth Anniversary Symposium of Caat = Altern Meth In Vitro Toxicology: Tenth Anniversary Symposium of Caat = Altern. Meth. In vivo (Athens, Greece) = In Vivo In Vivo Body Composition Studies = Ann Ny Acad Sci In Vivo Body Composition Studies = Ann. Ny. Acad. Sci. In Vivo Immunology = Adv Exp Med Biol In Vivo Immunology = Adv. Exp. Med. Biol. In Vivo=In Vivo;; In Vivo = In Vivo In Vivo Optical Imaging of Brain Function, Second Edition = Front Neurosci In Vivo Optical Imaging of Brain Function, Second Edition = Front. Neurosci. Involuntary Resettlement in Africa = World Ban T Involuntary Resettlement in Africa = World. Ban. T. Involution: The Formal Theory of Differential Equations and Its Applications in Computer Algebra = Algorithm Comp Math Involution: The Formal Theory of Differential Equations and Its Applications in Computer Algebra = Algorithm. Comp. Math. In Worcester Massachusetts: Essays On Elizabeth Bishop = Wpi Studies In Worcester Massachusetts: Essays On Elizabeth Bishop = Wpi. Studies. Inzell Lectures On Orthogonal Polynomials = Adv Theor Sp Funct Inzell Lectures On Orthogonal Polynomials = Adv. Theor. Sp. Funct. Inzhenerno-Fizicheskii Zhurnal = Inzh.-Fiz. Zh. Inzinerine Ekonomika-engineering Economics = Inz Ekon Inzinerine Ekonomika-engineering Economics = Inz. Ekon. Inzynieria Chemiczna i Procesowa = Inz. Chem. Procesowa Inzynieria Chemiczna I Procesowa = Inz Chem Procesowa Inzynieria Chemiczna I Procesowa = Inz. Chem. Procesowa Io After Galileo: A New View of Jupiter's Volcanic Moon = S-p B Astron Planet Io After Galileo: A New View of Jupiter's Volcanic Moon = S-p. B. Astron. Planet. Ioannis Antiocheni Fragmenta Quae Supersunt Omnia = Corpus Font Hist Byz Ioannis Antiocheni Fragmenta Quae Supersunt Omnia = Corpus. Font. Hist. Byz. Iobc/wprs and Ishs International Conference On Integrated Fruit Production, Proceedings of The Meeting = Acta Hortic Iobc/wprs and Ishs International Conference On Integrated Fruit Production, Proceedings of The Meeting = Acta. Hortic. IOBC/WPRS bulletin = Bulletin OILB/SROP|IOBC/WPRS Bull. Iodine Deficiency in Europe = Nato Adv Sci Inst Se Iodine Deficiency in Europe = Nato. Adv. Sci. Inst. Se. Io, Europa, Titan and Cratering of Icy Surfaces = Adv Space Res Io, Europa, Titan and Cratering of Icy Surfaces = Adv. Space. Res. Io, Europa, Titan and Cratering of Icy Surfaces = Adv Space Res-series Io, Europa, Titan and Cratering of Icy Surfaces = Adv. Space. Res-series. Ion-beam-based Nanofabrication = Mater Res Soc Symp P Ion-beam-based Nanofabrication = Mater. Res. Soc. Symp. P. Ion Beam Processing of Advanced Electronic Materials = Mater Res Soc Symp P Ion Beam Processing of Advanced Electronic Materials = Mater. Res. Soc. Symp. P. Ion Beams and Nano-engineering = Mater Res Soc Symp P Ion Beams and Nano-engineering = Mater. Res. Soc. Symp. P. Ion Beam Science: Solved and Unsolved Problems, Pts 1 and 2 = Kong Dansk Vidensk Ion Beam Science: Solved and Unsolved Problems, Pts 1 and 2 = Kong. Dansk. Vidensk. Ion Beams in Nanoscience and Technology = Part Accel Detect Ion Beams in Nanoscience and Technology = Part. Accel. Detect. Ion Channel Regulation = Adv Sec Mess Phosph Ion Channel Regulation = Adv. Sec. Mess. Phosph. Ion Channels and Genetic Diseases = Soc Gen Phy Ion Channels and Genetic Diseases = Soc. Gen. Phy. Ion Channels and Plant Stress Responses = Signal Commun Plants Ion Channels and Plant Stress Responses = Signal. Commun. Plants. Ion Channels: From Atomic Resolution Physiology to Functional Genomics = Novart Fdn Symp Ion Channels: From Atomic Resolution Physiology to Functional Genomics = Novart. Fdn. Symp. Ion channels = Ion Channels Ion Channels=Ion Channels;; Ion Channels = Ion Channels Ion Channels, Pt B = Method Enzymol Ion Channels, Pt B = Method. Enzymol. Ion exchange and membranes = Ion Exch Membr Ion Exchange and Membranes = Ion Exch. Membr. Ion Exchange and Solvent Extraction : A Series of Advances = Ion Ex Solv Ion Exchange and Solvent Extraction : A Series of Advances = Ion Ex. Solv. Ion Exchange and Solvent Extraction = Ion Exch. Solvent Extr. Ion Exchange and Solvent Extraction, Vol 18 = Ion Ex Solv Ion Exchange and Solvent Extraction, Vol 18 = Ion Ex. Solv. Ion Exchange Membrane Electrodialysis: Fundamentals, Desalination, Separation = Water Resour Plan De Ion Exchange Membrane Electrodialysis: Fundamentals, Desalination, Separation = Water. Resour. Plan. De. Ion Exchange Processes : Advances and Applications = Roy Soc Ch Ion Exchange Processes : Advances and Applications = Roy. Soc. Ch. Ion Flux in Pulmonary Vascular Control = Nato Adv Sci Inst Se Ion Flux in Pulmonary Vascular Control = Nato. Adv. Sci. Inst. Se. Ionic and Mixed Conducting Ceramics Iv = Elec Soc S Ionic and Mixed Conducting Ceramics Iv = Elec. Soc. S. Ionic Liquid Applications: Pharmaceuticals, Therapeutics, and Biotechnology = Acs Sym Ser Ionic Liquid Applications: Pharmaceuticals, Therapeutics, and Biotechnology = Acs. Sym. Ser. Ionic Liquids = Acs Sym Ser Ionic Liquids = Acs. Sym. Ser. Ionic Liquids As Green Solvents: Progress and Prospects = Acs Sym Ser Ionic Liquids As Green Solvents: Progress and Prospects = Acs. Sym. Ser. Ionic Liquids: From Knowledge to Application = Acs Sym Ser Ionic Liquids: From Knowledge to Application = Acs. Sym. Ser. Ionic Liquids Iiia: Fundamentals, Progress, Challenges, and Opportunities, Properties and Structure = Acs Sym Ser Ionic Liquids Iiia: Fundamentals, Progress, Challenges, and Opportunities, Properties and Structure = Acs. Sym. Ser. Ionic Liquids Iiib: Fundamentals, Progress, Challenges and Opportunities: Transformations and Processes = Acs Sym Ser Ionic Liquids Iiib: Fundamentals, Progress, Challenges and Opportunities: Transformations and Processes = Acs. Sym. Ser. Ionic Liquids in Chemical Analysis = Anal Chem Ser Ionic Liquids in Chemical Analysis = Anal. Chem. Ser. Ionic Liquids in Organic Synthesis = Acs Sym Ser Ionic Liquids in Organic Synthesis = Acs. Sym. Ser. Ionic Liquids Iv: Not Just Solvents Anymore = Acs Sym Ser Ionic Liquids Iv: Not Just Solvents Anymore = Acs. Sym. Ser. Ionic Liquids = Top Curr Chem Ionic Liquids = Top. Curr. Chem. Ionic Polymerizations and Related Processes = Nato Adv Sci I E-app Ionic Polymerizations and Related Processes = Nato. Adv. Sci. I. E-app. Ionics = Ionics Ionic Soft Matter: Modern Trends in Theory and Applications = Nato Sci Ser Ii Math Ionic Soft Matter: Modern Trends in Theory and Applications = Nato. Sci. Ser. Ii. Math. Ion Implantation Technology 2008 = Aip Conf Proc Ion Implantation Technology 2008 = Aip. Conf. Proc. Ion Implantation Technology 2010 = Aip Conf Proc Ion Implantation Technology 2010 = Aip. Conf. Proc. Ion Implantation Technology = Aip Conf Proc Ion Implantation Technology = Aip. Conf. Proc. Ion-induced Electron Emission From Crystalline Solids = Springer Tr Mod Phys Ion-induced Electron Emission From Crystalline Solids = Springer. Tr. Mod. Phys. Ionization, Correlation, and Polarization in Atomic Collisions = Aip Conf Proc Ionization, Correlation, and Polarization in Atomic Collisions = Aip. Conf. Proc. Ionization of Solids By Heavy Particles = Nato Adv Sci Inst Se Ionization of Solids By Heavy Particles = Nato. Adv. Sci. Inst. Se. Ionized Gaseous Nebulae = Rev Mex Ast Astr Ionized Gaseous Nebulae = Rev. Mex. Ast. Astr. Ionizing Radiation Damage to Dna : Molecular Aspects = Ucla Sym Bi Ionizing Radiation Damage to Dna : Molecular Aspects = Ucla. Sym. Bi. Ion-motive Atpases : Structure, Function, and Regulation = Ann Ny Acad Sci Ion-motive Atpases : Structure, Function, and Regulation = Ann. Ny. Acad. Sci. Ionospheric and Thermospheric Studies = Adv Space Res-series Ionospheric and Thermospheric Studies = Adv. Space. Res-series. Ionospheric Informatics and Empirical Modelling = Adv Space E Ionospheric Informatics and Empirical Modelling = Adv. Space. E. Ionospheric Models = Adv Space Res Ionospheric Models = Adv. Space. Res. Ionospheric/thermospheric/mesospheric Coupling = Adv Space Res Ionospheric/thermospheric/mesospheric Coupling = Adv. Space. Res. Ionospheric/thermospheric/mesospheric Coupling = Adv Space Res-series Ionospheric/thermospheric/mesospheric Coupling = Adv. Space. Res-series. Ion-selective Electrode Reviews = Ion Sel Electrode R Ion-selective Electrode Reviews = Ion. Sel. Electrode R. Ion-solid Interactions for Materials Modification and Processing = Mater Res Soc Symp P Ion-solid Interactions for Materials Modification and Processing = Mater. Res. Soc. Symp. P. Ion-synthesis of Silver Nanoparticles and Their Optical Properties = Nanotechnol Sci Tech Ion-synthesis of Silver Nanoparticles and Their Optical Properties = Nanotechnol. Sci. Tech. Ion Transfer At Liquid/liquid Interfaces = Chem Res Appl-nova Ion Transfer At Liquid/liquid Interfaces = Chem. Res. Appl-nova. Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 1 = Iee Conf Publ Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 1 = Iee. Conf. Publ. Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 2 = Iee Conf Publ Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 2 = Iee. Conf. Publ. Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 3 = Iee Conf Publ Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 3 = Iee. Conf. Publ. Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 4 = Iee Conf Publ Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 4 = Iee. Conf. Publ. Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 5 = Iee Conf Publ Iooc-ecoc 97 - 11th International Conference On Integrated Optics and Optical Fibre Communications / 23rd European Conference On Optical Communications, Vol 5 = Iee. Conf. Publ. Iop Conference Series-earth and Environmental Science = Iop C Ser Earth Env Iop Conference Series-earth and Environmental Science = Iop C. Ser. Earth. Env. Iop Conference Series Earth and Environmental Science = Iop C Ser Earth Env Iop Conference Series Earth and Environmental Science = Iop C. Ser. Earth Env. Iop Conference Series-materials Science and Engineering = Iop Conf Ser-mat Sci Iop Conference Series-materials Science and Engineering = Iop Conf. Ser-mat. Sci. Iopentol : Clinical Trials With A New Non-ionic Contrast Medium = Int Congr Ser Iopentol : Clinical Trials With A New Non-ionic Contrast Medium = Int. Congr. Ser. Iop Short Meetings Series = Iop Short Meet Serie Iop Short Meetings Series = Iop Short Meet. Serie. Iowa Agricultural and Home Economics Experiment Station Research Bulletin = Iowa Ahees Res Bull Iowa Agricultural and Home Economics Experiment Station Research Bulletin = Iowa Ahees. Res. Bull. Iowa Agricultural and Home Economics Experiment Station Special Report = Iowa Ahees Spec Rep Iowa Agricultural and Home Economics Experiment Station Special Report = Iowa Ahees. Spec. Rep. IOWA Agricultural Experiment Station Research Bulletin = IOWA Agric. Exp. Stn. Res. Bull. Iowa code annotated. Iowa = Iowa Code Annot Iowa Iowa Dental Bulletin = Iowa Dent Bull Iowa Dental Bulletin = Iowa Dent. Bull. Iowa Dental Journal = Iowa Dent. J. Iowa Law Bulletin = Iowa Law Bull Iowa Law Bulletin = Iowa Law Bull. Iowa law review = Iowa Law Rev Iowa Law Review = Iowa Law Rev Iowa Law Review = Iowa Law Rev. Iowa Medicine=Iowa Med;; Iowa Medicine = Iowa Med. Iowa medicine : journal of the Iowa Medical Society = Iowa Med Iowa Orthopaedic Journal = Iowa Orthop. J. Iowa State Journal of Research = Iowa State J Res Iowa State Journal of Research = Iowa State J. Res. Iowa State University veterinarian = Iowa State Univ Vet Iowa State University Veterinarian = Iowa State Univ. Vet. IPA Dissertation Series = IPA Diss. Ser. Ipap Conference Series = Ipap Conference Ser Ipap Conference Series = Ipap Conference Ser. Ipc Monographs-institute of Philippine Culture = Ipc Monogr In Phil C Ipc Monographs-institute of Philippine Culture = Ipc Monogr. In. Phil. C. Ipc Papers-institute of Philippine Culture = Ipc Pap In Phil C Ipc Papers-institute of Philippine Culture = Ipc Pap. In. Phil. C. Ipcs (international Programme On Chemical Safety) Joint Series = Ipcs Joint Ser Ipcs (international Programme On Chemical Safety) Joint Series = Ipcs Joint Ser. Ipemc 2000: Third International Power Electronics and Motion Control Conference, Vols 1-3, Proceedings = Ieee Int Power Elec Ipemc 2000: Third International Power Electronics and Motion Control Conference, Vols 1-3, Proceedings = Ieee. Int. Power Elec. Ipemc 2004: The 4th International Power Electronics and Motion Control Conference, Vols 1-3, Conference Proceedings = Ieee Int Power Elec Ipemc 2004: The 4th International Power Electronics and Motion Control Conference, Vols 1-3, Conference Proceedings = Ieee. Int. Power Elec. Ipemc 2006: Ces/ieee 5th International Power Electronics and Motion Control Conference, Vols 1-3, Conference Proceedings = Ieee Int Power Elec Ipemc 2006: Ces/ieee 5th International Power Electronics and Motion Control Conference, Vols 1-3, Conference Proceedings = Ieee. Int. Power Elec. Ip Network-based Multi-agent Systems for Industrial Automation = Power Syst Ip Network-based Multi-agent Systems for Industrial Automation = Power. Syst. Ip Operations and Management, Proceedings = Lect Notes Comput Sc Ip Operations and Management, Proceedings = Lect. Notes. Comput. Sc. Ippa - Newsletter = IPPA Newsl IPPF medical bulletin = IPPF Med Bull IPPF Medical Bulletin = IPPF Med. Bull. IPPF news = IPPF News IPPF open file = IPPF Open File IPPF/WHR news service. International Planned Parenthood Federation. Western Hemisphere Region = IPPF WHR News Serv Ippologia = Ippologia Ipps/spdp 1999: 13th International Parallel Processing Symposium & 10th Symposium On Parallel and Distributed Processing, Proceedings = Ipps Proc Ipps/spdp 1999: 13th International Parallel Processing Symposium & 10th Symposium On Parallel and Distributed Processing, Proceedings = Ipps. Proc. IPPTA Journal = Ippta J. Ip Traffic Theory and Performance = Signals Commun Techn Ip Traffic Theory and Performance = Signals. Commun. Techn. Ipw Berichte = Ipw Ber Ipw Berichte = Ipw Ber. Ira and Armed Struggle = Springer Aerosp Tech Ira and Armed Struggle = Springer. Aerosp. Tech. Iral-international Review of Applied Linguistics in Language Teaching = Iral-int Rev Appl Li Iral-international Review of Applied Linguistics in Language Teaching = Iral-int. Rev. Appl. Li. Iran and Nuclear Weapons = Rout Glob Secur Stud Iran and Nuclear Weapons = Rout. Glob. Secur. Stud. Iran and The Caucasus = Iran Caucasus Iran Biomedical Journal = Iran. Biomed. J. Iran-europe Relations: Challenges and Opportunities = Durh Mod Mid E Islam Iran-europe Relations: Challenges and Opportunities = Durh. Mod. Mid. E. Islam. Iranian biomedical journal = Iran Biomed J Iranian Journal of Allergy Asthma and Immunology = Iran J Allergy Asthm Iranian Journal of Allergy Asthma and Immunology = Iran. J. Allergy Asthm. Iranian journal of allergy, asthma, and immunology = Iran J Allergy Asthma Immunol Iranian Journal of Arthropod-borne Diseases = Iran J Arthropod-bor Iranian Journal of Arthropod-borne Diseases = Iran. J. Arthropod-bor. Iranian Journal of Basic Medical Sciences = Iran J Basic Med Sci Iranian Journal of Basic Medical Sciences = Iran. J. Basic Med. Sci. Iranian Journal of Biotechnology = Iran J Biotechnol Iranian Journal of Biotechnology = Iran. J. Biotechnol. Iranian Journal of Chemistry & Chemical Engineering-international English Edition = Iran J Chem Chem Eng Iranian Journal of Chemistry & Chemical Engineering-international English Edition = Iran. J. Chem. Chem. Eng. Iranian Journal of Chemistry & Chemical Engineering = Iran. J. Chem. Chem. Eng. Iranian Journal of Environmental Health Science & Engineering = Iran J Environ Healt Iranian Journal of Environmental Health Science & Engineering = Iran. J. Environ. Healt. Iranian Journal of Fertility & Sterility = Iran J Fertil Steril Iranian Journal of Fertility & Sterility = Iran. J. Fertil. Steril. Iranian Journal of Fisheries Sciences = Iran J Fish Sci Iranian Journal of Fisheries Sciences = Iran. J. Fish. Sci. Iranian Journal of Fuzzy Systems = Iran J Fuzzy Syst Iranian Journal of Fuzzy Systems = Iran. J. Fuzzy Syst. Iranian journal of immunology : IJI = Iran J Immunol Iranian Journal of Immunology = Iran J Immunol Iranian Journal of Immunology = Iran. J. Immunol. Iranian Journal of Materials Science and Engineering = Iran. J. Mater. Sci. Eng. Iranian Journal of Ophthalmology = Iran J Ophthalmol Iranian Journal of Ophthalmology = Iran. J. Ophthalmol. Iranian Journal of Parasitology = Iran J Parasitol Iranian Journal of Parasitology = Iran. J. Parasitol. Iranian Journal of Pediatrics = Iran J Pediatr Iranian Journal of Pediatrics = Iran. J. Pediatr. Iranian Journal of Pharmaceutical Research = Iran J Pharm Res Iranian Journal of Pharmaceutical Research = Iran. J. Pharm. Res. Iranian Journal of Polymer Science & Technology = Iran. J. Polym Sci. Technol. Iranian journal of public health = Iran J Public Health Iranian Journal of Public Health = Iran J Public Health Iranian Journal of Public Health = Iran. J. Public Health Iranian Journal of Radiation Research = Iran J Radiat Res Iranian Journal of Radiation Research = Iran. J. Radiat. Res. Iranian Journal of Radiology = Iran J Radiol Iranian Journal of Radiology = Iran. J. Radiol. Iranian Journal of Reproductive Medicine = Iran J Reprod Med Iranian Journal of Reproductive Medicine = Iran. J. Reprod. Med. Iranian Journal of Science and Technology = Iranian J. Sci. Tech. Iranian Journal of Science and Technology = Iran J Sci Technol Iranian Journal of Science and Technology = Iran. J. Sci. Technol. Iranian Journal of Science and Technology Transaction A-science = Iran J Sci Technol A Iranian Journal of Science and Technology Transaction A-science = Iran. J. Sci. Technol. A. Iranian Journal of Science and Technology Transaction B-engineering = Iran J Sci Technol B Iranian Journal of Science and Technology Transaction B-engineering = Iran. J. Sci. Technol. B. Iranian Journal of Veterinary Research = Iran J Veterinary Re Iranian Journal of Veterinary Research = Iran. J. Veterinary Re. Iranian Journal of Veterinary Research = Iran J Vet Res Iranian Journal of Veterinary Research = Iran. J. Vet. Res. Iranian Mathematical Society = Bull. Iranian Math. Soc. Iranian Media: The Paradox of Modernity = Routl Adv Int Media Iranian Media: The Paradox of Modernity = Routl. Adv. Int. Media. Iranian Polymer Journal = Iran Polym J Iranian Polymer Journal = Iran. Polym. J. Iranian Red Crescent Medical Journal = Iran Red Crescent Me Iranian Red Crescent Medical Journal = Iran. Red Crescent Me. Iranian studies : bulletin of the Society for Iranian Cultural and Social Studies = Iran Stud Iranian Studies = Iran Stud-uk Iranian Studies = Iran. Stud-uk. Iranian Studies Series = Iran Stud Ser Iranian Studies Series = Iran. Stud. Ser. Iranica antiqua = IA Iranica Antiqua = Iran Antiq Iranica Antiqua = Iran. Antiq. Iranica antiqua = IrAnt Iran in The 21st Century: Politics, Economics and Conflict = Iran Stud Ser Iran in The 21st Century: Politics, Economics and Conflict = Iran Stud. Ser. Iran. Journal of the British Institute of Persian Studies = Iran 'Iraq (1977) = Iraq Iraq At A Distance: What Anthropologists Can Teach Us About The War = Ethnogr Polit Violen Iraq At A Distance: What Anthropologists Can Teach Us About The War = Ethnogr. Polit. Violen. Iraqi Arab Nationalism: Authoritarian, Totalitarian and Pro-fascist Inclinations, 1932-1941 = Soas-rout Stud Mid E Iraqi Arab Nationalism: Authoritarian, Totalitarian and Pro-fascist Inclinations, 1932-1941 = Soas-rout. Stud. Mid. E. Iraqi Dental Journal = Iraqi Dent J Iraqi Dental Journal = Iraqi Dent. J. Iraq's Armed Forces: An Analytical History = Middle E Mil Stud Iraq's Armed Forces: An Analytical History = Middle. E. Mil. Stud. Iraqs Last Jews: Stories of Daily Life, Upheaval, and Escape From Modern Babylon = Palgr Stud Oral Hist Iraqs Last Jews: Stories of Daily Life, Upheaval, and Escape From Modern Babylon = Palgr. Stud. Oral. Hist. Iraq War: European Perspectives On Politics, Strategy and Operations = Contemp Secur Stud Iraq War: European Perspectives On Politics, Strategy and Operations = Contemp. Secur. Stud. IRB; A Review of Human Subjects Research = IRB. IRB = IRB Irbm = Irbm IRCS journal of international research communications = ICRS J Int Res Commun IRCS journal of medical science = IRCS J Med Sci IRCS Journal of Medical Science = IRCS J. Med. Sci. Ircs Medical Science-biochemistry = Ircs Med Sci-biochem Ircs Medical Science-biochemistry = Ircs Med. Sci-biochem. IRCS medical science: Biomedical technology = IRCS Med Sci Biomed Technol IRCS medical science: Cardiovascular system = IRCS Med Sci Cardiovasc Syst IRCS medical science = IRCS Med Sci Ircs Medical Science: Reproduction, Obstetrics And Gynecology = Irc Med Sci Reprod Obstet Gynecol Ireland and India: Nationalism, Empire and Memory = Camb Imp Post-col St Ireland and India: Nationalism, Empire and Memory = Camb. Imp. Post-col. St. Ireland and The Industrial Revolution = Routl Explor Econ Hi Ireland and The Industrial Revolution = Routl. Explor. Econ. Hi. IRE Transactions on Aeronautical and Navigational Electronics = IRE Trans. Aeronaut. Navig. Electron. IRE Transactions on Aerospace and Navigational Electronics = IRE Trans. Aerosp. Navig. Electron. IRE Transactions on Antennas and Propagation = IRE Trans. Anntenas Propag. Ire Transactions On Audio = Ire T Audio Ire Transactions On Audio = Ire T. Audio IRE Transactions on Audio = IRE Trans. Audio Ire Transactions On Automatic Control = Ire T Autom Control Ire Transactions On Automatic Control = Ire T. Autom. Control IRE Transactions on Automatic Control = IRE Trans. Autom. Control Ire Transactions On Biomedical Electronics = Ire T Biomed Electr Ire Transactions On Biomedical Electronics = Ire T. Biomed. Electr. IRE transactions on bio-medical electronics = Ire Trans Biomed Electron IRE Transactions on Bio-Medical Electronics = IRE Trans. Bio-Med. Electron. IRE Transactions on Broadcast and Television Receivers = IRE Trans. Broadcast Telev. Receivers IRE Transactions on Broadcasting = IRE Trans. Broadcast. IRE Transactions on Broadcast Transmission Systems = IRE Trans. Broadcast Transm. Syst. Ire Transactions On Circuit Theory = Ire T Circuit Theory Ire Transactions On Circuit Theory = Ire T. Circuit Theory IRE Transactions on Circuit Theory = IRE Trans. Circuit Theory IRE Transactions on Communication Systems = IRE Trans. Commun. Syst. IRE Transactions on Component Parts = IRE Trans. Compon. Parts Ire Transactions On Education = Ire T Educ Ire Transactions On Education = Ire T. Educ. IRE Transactions on Electron Devices = IRE Trans. Electron Devices IRE Transactions on Electronic Computers = IRE Trans. Electron. Comput. Ire Transactions On Engineering Management = Ire Trans Eng Manage Ire Transactions On Engineering Management = Ire Trans. Eng. Manage. IRE Transactions on Engineering Management = IRE Trans. Eng. Manage. Ire Transactions On Engineering Writing and Speech = Ire T Eng Writ Speec Ire Transactions On Engineering Writing and Speech = Ire T. Eng. Writ. Speec. Ire Transactions On Human Factors in Electronics = Ire T Hum Fact Elect Ire Transactions On Human Factors in Electronics = Ire T. Hum. Fact. Elect. IRE Transactions on Human Factors in Electronics = IRE Trans. Hum. Factors Electron. IRE Transactions on Industrial Electronics = IRE Trans. Ind. Electron. Ire Transactions On Information Theory = Ire T Inform Theor Ire Transactions On Information Theory = Ire T. Inform. Theor. IRE Transactions on Information Theory = IRE Trans. Inf. Theory IRE Transactions on Instrumentation = IRE Trans. Instrum. Ire Transactions On Medical Electronics = Ire T Med Electron Ire Transactions On Medical Electronics = Ire T. Med. Electron. IRE transactions on medical electronics = IRE Trans Med Electron IRE Transactions on Medical Electronics = IRE Trans. Med. Electron. IRE Transactions on Microwave Theory and Techniques = IRE Trans. Microwave Theory Tech. IRE Transactions on Military Electronics = IRE Trans. Mil. Electron. IRE Transactions on Nuclear Science = IRE Trans. Nucl. Sci. IRE Transactions on Product Engineering and Production = IRE Trans. Prod. Eng. Prod. IRE Transactions on Production Techniques = IRE Trans. Prod. Tech. IRE Transactions on Radio Frequency Interference = IRE Trans. Radio Freq. Interference IRE Transactions on Reliability and Quality Control = IRE Trans. Reliab. Qual. Control IRE Transactions on Space Electronics and Telemetry = IRE Trans. Space Electron. Telem. IRE Transactions on Telemetry and Remote Control = IRE Trans. Telem. Remote Control IRE Transactions on Ultrasonic Engineering = IRE Trans. Ultrason. Eng. IRE Transactions on Vehicular Communications = IRE Trans. Veh. Commun. Iri 1997 Symposium: New Developments in Ionospheric Modelling An D Prediction = Adv Space Res Iri 1997 Symposium: New Developments in Ionospheric Modelling An D Prediction = Adv. Space. Res. Iridium Catalysis = Top Organometal Chem Iridium Catalysis = Top. Organometal. Chem. Irigaray for Architects = Think Archit Irigaray for Architects = Think. Archit. Iri: Quantifying Ionosperic Variability = Adv Space Res Iri: Quantifying Ionosperic Variability = Adv. Space. Res. Irish Astronomical Journal = Irish Astron J Irish Astronomical Journal = Irish Astron. J. Irish Banking Review=Irish Banking Rev. Irish Centre for European Law = Irish Ctr E Irish Centre for European Law = Irish Ctr. E. Irish Childrens Literature and Culture: New Perspectives On Contemporary Writing = Child Lit Cult Irish Childrens Literature and Culture: New Perspectives On Contemporary Writing = Child. Lit. Cult. Irish economic and social history : journal of the Economic and Social History Society of Ireland = Ir Econ Soc Hist Irish Economy in Transition: Success, Problems, and Prospects = Cont Stu Ec Irish Economy in Transition: Success, Problems, and Prospects = Cont. Stu. Ec. Irish Educational Studies = Irish Educ Stud Irish Educational Studies = Irish Educ. Stud. Irish geography : bulletin of the Geographical Society of Ireland = Ir Geogr Irish Historical Studies = Irish Hist Stud Irish Historical Studies = Irish Hist. Stud. Irish historical studies : joint journal of the Irish Historical Society and the Ulster Society for Irish Historical Studies = Ir Hist Stud Irish Journal of Agricultural and Food Research = Irish J Agr Food Res Irish Journal of Agricultural and Food Research = Irish J. Agr. Food Res. Irish Journal of Agricultural Economics and Rural Sociology=Irish J. Agr. Econ. Rural Sociology Irish Journal of Agricultural Research = Irish J Agr Res Irish Journal of Agricultural Research = Irish J. Agr. Res. Irish Journal of Earth Sciences = Irish J Earth Sci Irish Journal of Earth Sciences = Irish J. Earth Sci. Irish Journal of Education = Irish J Educ Irish Journal of Education = Irish J. Educ. Irish Journal of Food Science and Technology = Irish J Food Sci Tec Irish Journal of Food Science and Technology = Irish J. Food Sci. Tec. Irish Journal of Medical Science = Irish J Med Sci Irish Journal of Medical Science = Irish J. Med. Sci. Irish journal of medical science = Ir J Med Sci Irish Journal of Medical Science=Ir J Med Sci;; Irish Journal of Medical Science = Ir. J. Med. Sci. Irish Journal of Psychological Medicine = Irish J Psychol Med Irish Journal of Psychological Medicine = Irish J. Psychol. Med. Irish journal of psychological medicine = Ir J Psychol Med Irish Journal of Psychology = Irish J Psychol Irish Journal of Psychology = Irish J. Psychol. Irish law reports monthly / [editor, Bart D. Daly] = Ir Law Rep Mon Irish Mathematical Society Bulletin = Irish Math. Soc. Bull. Irish Medical Journal = Irish Med J Irish Medical Journal = Irish Med. J. Irish medical journal = Ir Med J Irish Medical Journal=Ir Med J;; Irish Medical Journal = Ir. Med. J. Irish Modernism and The Global Primitive = New Dir Ir Ir Am Lit Irish Modernism and The Global Primitive = New. Dir. Ir. Ir. Am. Lit. Irish nurses' journal = Ir Nurses J Irish Nurses Journal = Ir. Nurses J. Irish nursing and hospital world = Ir Nurs Hosp World Irish Nursing and Hospital World = Ir. Nurs. Hosp. World Irish Nursing News = Ir. Nurs. News Irish Political Studies = Irish Polit Stud Irish Political Studies = Irish Polit. Stud. Irish University Review = Irish Univ Rev Irish University Review = Irish Univ. Rev. Irish Veterinary Journal = Irish Vet J Irish Veterinary Journal = Irish Vet. J. Irish veterinary journal = Ir Vet J Iris International Series = Iris Int Ser Iris International Series = Iris Int. Ser. Irma Lectures in Mathematics and Theoretical Physics = Irma Lect Math Theor Irma Lectures in Mathematics and Theoretical Physics = Irma Lect. Math. Theor. Irma Lectures in Mathematics and Theoretical Physics = Irma L Math The Phys Irma Lectures in Mathematics and Theoretical Physics = Irma L. Math. The. Phys. IRM; Information and Records Management = IRM. Iron Age = Iron Age Iron and Steel Engineer = Iron Steel Eng Iron and Steel Engineer = Iron Steel Eng. Iron and Steel International = Iron Steel Int Iron and Steel International = Iron Steel Int. Iron Catalysis: Fundamentals and Applications = Top Organometal Chem Iron Catalysis: Fundamentals and Applications = Top. Organometal. Chem. Iron Chelation Therapy = Adv Exp Med Biol Iron Chelation Therapy = Adv. Exp. Med. Biol. Iron Deficiency and Overload = Nutr Health Ser Iron Deficiency and Overload = Nutr. Health. Ser. Ironmaking and Steelmaking = Ironmaking Steelmaking Ironmaking Conference Proceedings = Ironm Conf Proc Ironmaking Conference Proceedings = Ironm. Conf. Proc. Ironmaking Resources and Reserves Estimation = Aimm Spectr Ser Ironmaking Resources and Reserves Estimation = Aimm. Spectr. Ser. Ironmaking Resources and Reserves Estimation, Supplementary Vol = Aimm Spectr Ser Ironmaking Resources and Reserves Estimation, Supplementary Vol = Aimm. Spectr. Ser. Ironmaking & Steelmaking = Ironmaking Steelmaking Ironmaking & Steelmaking = Ironmak Steelmak Ironmaking & Steelmaking = Ironmak. Steelmak. Iron Ore 2009 Proceedings = Astrlsn Inst Min Met Iron Ore 2009 Proceedings = Astrlsn. Inst. Min. Met. Iron Ore 2009 Proceedings = Sustain Urban Areas Iron Ore 2009 Proceedings = Sustain. Urban. Areas. Iron & Steel Society: Mechanical Working and Steel Processing Conference Proceedings = Iss Mwsp Conf P Iron & Steel Society: Mechanical Working and Steel Processing Conference Proceedings = Iss. Mwsp. Conf. P. Iron-sulfur Proteins Perovskites = Struct Bond Iron-sulfur Proteins Perovskites = Struct. Bond. Irony - Comedy - Scepticism: Studies On The Work of Adalbert Stifter = Hermaea Ger Forsch Irony - Comedy - Scepticism: Studies On The Work of Adalbert Stifter = Hermaea. Ger. Forsch. Irqo'99: Quantum Optics = P Soc Photo-opt Ins Irqo'99: Quantum Optics = P. Soc. Photo-opt. Ins. Irradiation Des Aliments = Irradiat Aliments Irradiation Des Aliments = Irradiat. Aliments Irradiation of Food and Packaging: Recent Developments = Acs Sym Ser Irradiation of Food and Packaging: Recent Developments = Acs. Sym. Ser. Irradiation of Polymeric Materials = Acs Sym Ser Irradiation of Polymeric Materials = Acs. Sym. Ser. Irradiation of Polymers = Acs Sym Ser Irradiation of Polymers = Acs. Sym. Ser. Irregularities and Prediction of Major Disasters = Syst Eval Predict De Irregularities and Prediction of Major Disasters = Syst. Eval. Predict. De. Irreversible Decisions Under Uncertainty: Optimal Stopping Made Easy = Stud Econ Theory Irreversible Decisions Under Uncertainty: Optimal Stopping Made Easy = Stud. Econ. Theory. Irreversible Electroporation = Ser Biomed Eng Irreversible Electroporation = Ser. Biomed. Eng. Irreversible Quantum Dynamics = Lect Notes Phys Irreversible Quantum Dynamics = Lect. Notes. Phys. Irrigation and Drainage = Irrig Drain Irrigation and Drainage = Irrig. Drain. Irrigation Science = Irrigation Sci Irrigation Science = Irrigation Sci. Irrigation Water Pricing: The Gap Between Theory and Practice = Compr Assess Wat Man Irrigation Water Pricing: The Gap Between Theory and Practice = Compr. Assess. Wat. Man. Irs 2000: Current Problems in Atmospheric Radiation = Stud Geo Op Irs 2000: Current Problems in Atmospheric Radiation = Stud. Geo. Op. Irs 92 : Current Problems in Atmospheric Radiation = Stud Geo Op Irs 92 : Current Problems in Atmospheric Radiation = Stud. Geo. Op. Ir Space Telescopes and Instruments, Pts 1 and 2 = P Soc Photo-opt Ins Ir Space Telescopes and Instruments, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Iryo = Iryo Isa 2002 Technology Update, Vol Lvii, Pt 1 = Tech Papers Isa Isa 2002 Technology Update, Vol Lvii, Pt 1 = Tech. Papers. Isa Isa 2002 Technology Update, Vol Lvii, Pt 2 = Tech Papers Isa Isa 2002 Technology Update, Vol Lvii, Pt 2 = Tech. Papers. Isa Isaaks Opferung (gen 22) in Den Konfessionen Und Medien Der Fruhen Neuzeit = Arb Kirch Isaaks Opferung (gen 22) in Den Konfessionen Und Medien Der Fruhen Neuzeit = Arb. Kirch. Isab-2010 - First International Symposium On Archimedes Bridge = Procedia Engineer Isab-2010 - First International Symposium On Archimedes Bridge = Procedia. Engineer. Isabelle/hol = Lect Notes Comput Sc Isabelle/hol = Lect. Notes. Comput. Sc. Isacc 2009: Fourth International Symposium On Atomic Cluster Collisions = Aip Conf Proc Isacc 2009: Fourth International Symposium On Atomic Cluster Collisions = Aip. Conf. Proc. Isaf: 2009 18th Ieee International Symposium On The Applications of Ferroelectrics = Ieee Int Ferro Isaf: 2009 18th Ieee International Symposium On The Applications of Ferroelectrics = Ieee Int. Ferro. Isairas '99: Fifth International Symposium On Artificial Intelligence, Robotics and Automation in Space = Esa Spec Publ Isairas '99: Fifth International Symposium On Artificial Intelligence, Robotics and Automation in Space = Esa. Spec. Publ. Isairas '99: Fifth International Symposium On Artificial Intelligence, Robotics and Automation in Space = Esa Sp Publ Isairas '99: Fifth International Symposium On Artificial Intelligence, Robotics and Automation in Space = Esa. Sp. Publ. Isa Journal = Isa J Isa Journal = Isa J. Isa Monterrey 2002 (english) = Tech Papers Isa Isa Monterrey 2002 (english) = Tech. Papers. Isa I-s Analyzer = I-s Anal I-s Analyzer = I-s Anal. Isa Transactions = Isa T Isa Transactions = Isa T. ISA transactions = ISA Trans ISA Transactions=ISA Trans;; ISA Transactions = ISA Trans. I Saw It Coming: Worker Narratives of Plant Closings and Job Loss = Palgr Stud Oral Hist I Saw It Coming: Worker Narratives of Plant Closings and Job Loss = Palgr. Stud. Oral. Hist. Isbt Science Series = Isbt Sci Ser Isbt Science Series = Isbt Sci. Ser. Isbt Science Series = Isbt Sci Series Isbt Science Series = Isbt Sci. Series Isbt Science Series, Vol 1, No 1 = Isbt Sci Ser Isbt Science Series, Vol 1, No 1 = Isbt Sci. Ser. Isbt Science Series, Vol 1, No 1 = Isbt Sci Series Isbt Science Series, Vol 1, No 1 = Isbt Sci. Series. Isbt Science Series, Vol 2, No 1 = Isbt Sci Ser Isbt Science Series, Vol 2, No 1 = Isbt Sci. Ser. Isbt Science Series, Vol 2, No 1 = Isbt Sci Series Isbt Science Series, Vol 2, No 1 = Isbt Sci. Series. Isbt Science Series, Vol 2, No 2 = Isbt Sci Ser Isbt Science Series, Vol 2, No 2 = Isbt Sci. Ser. Isbt Science Series, Vol 2, No 2 = Isbt Sci Series Isbt Science Series, Vol 2, No 2 = Isbt Sci. Series. Isbt Science Series, Vol 3, No 1 = Isbt Sci Series Isbt Science Series, Vol 3, No 1 = Isbt Sci. Series. Isbt Science Series, Vol 3, No 2: Introduction to Blood Transfusion Technology = Isbt Sci Ser Isbt Science Series, Vol 3, No 2: Introduction to Blood Transfusion Technology = Isbt Sci. Ser. Isbt Science Series, Vol 4, No 1, State of The Art Presentations = Isbt Sci Series Isbt Science Series, Vol 4, No 1, State of The Art Presentations = Isbt Sci. Series. Isca'07: 34th Annual International Symposium On Computer Architecture, Conference Proceedings = Conf Proc Int Symp C Isca'07: 34th Annual International Symposium On Computer Architecture, Conference Proceedings = Conf. Proc. Int. Symp. C. Isca 2008 Proceedings: 35th International Symposium On Computer Architecture = Conf Proc Int Symp C Isca 2008 Proceedings: 35th International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Isca 2009: 36th Annual International Symposium On Computer Architecture = Conf Proc Int Symp C Isca 2009: 36th Annual International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Isca 2010: The 37th Annual International Symposium On Computer Architecture = Conf Proc Int Symp C Isca 2010: The 37th Annual International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Iscc 2000: Fifth Ieee Symposium On Computers and Communications, Proceedings = Ieee Symp Comp Commu Iscc 2000: Fifth Ieee Symposium On Computers and Communications, Proceedings = Ieee Symp. Comp. Commu. Iscc 2002: Seventh International Symposium On Computers and Communications, Proceedings = Ieee Symp Comp Commu Iscc 2002: Seventh International Symposium On Computers and Communications, Proceedings = Ieee. Symp. Comp. Commu. Iscc2004: Ninth International Symposium On Computers and Communications, Vols 1 and 2, Proceedings = Ieee Symp Comp Commu Iscc2004: Ninth International Symposium On Computers and Communications, Vols 1 and 2, Proceedings = Ieee. Symp. Comp. Commu. Iscc: 2009 Ieee Symposium On Computers and Communications, Vols 1 and 2 = Ieee Symp Comp Commu Iscc: 2009 Ieee Symposium On Computers and Communications, Vols 1 and 2 = Ieee Symp. Comp. Commu. Iscgav'08: Proceedings of The 8th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision = Rec Adv Comput Eng Iscgav'08: Proceedings of The 8th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision = Rec. Adv. Comput. Eng. Ischemic Blood Flow in The Brain = Keio Univ Symp Life Ischemic Blood Flow in The Brain = Keio. Univ. Symp. Life. Ischia Group Theory 2004, Proceedings = Contemp Math Ischia Group Theory 2004, Proceedings = Contemp. Math. Iscm Ii and Epmesc Xii, Pts 1 and 2 = Aip Conf Proc Iscm Ii and Epmesc Xii, Pts 1 and 2 = Aip. Conf. Proc. Isdeiv 2008: Proceedings of The Xxiiird International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2 = Int Sym Disch Electr Isdeiv 2008: Proceedings of The Xxiiird International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2 = Int. Sym. Disch. Electr. Isdeiv 2008: Proceedings of The Xxiiird International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2 = P Int Symp Disch El Isdeiv 2008: Proceedings of The Xxiiird International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2 = P. Int. Symp. Disch. El. Isdeiv 2010: Xxivth International Symposium On Discharges and Electrical Insulation in Vacuum = Int Sym Disch Electr Isdeiv 2010: Xxivth International Symposium On Discharges and Electrical Insulation in Vacuum = Int. Sym. Disch. Electr. Isdeiv: Xixth International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = Int Sym Disch Electr Isdeiv: Xixth International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = Int. Sym. Disch. Electr. Isdeiv: Xixth International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = P Int Symp Disch El Isdeiv: Xixth International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = P. Int. Symp. Disch. El. Isdeiv: Xviiith International Symposium On Discharges and Electrical Insulation in Vacuum - Proceedings, Vols 1 and 2 = P Int Symp Disch El Isdeiv: Xviiith International Symposium On Discharges and Electrical Insulation in Vacuum - Proceedings, Vols 1 and 2 = P. Int. Symp. Disch. El. Isdeiv: Xxith International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = Int Sym Disch Electr Isdeiv: Xxith International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = Int. Sym. Disch. Electr. Isdeiv: Xxith International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = P Int Symp Disch El Isdeiv: Xxith International Symposium On Discharges and Electrical Insulation in Vacuum, Vols 1 and 2, Proceedings = P. Int. Symp. Disch. El. Isdeiv: Xxth International Symposium On Discharges and Electrical Insulation in Vacuum, Proceedings = Int Sym Disch Electr Isdeiv: Xxth International Symposium On Discharges and Electrical Insulation in Vacuum, Proceedings = Int. Sym. Disch. Electr. Isdeiv: Xxth International Symposium On Discharges and Electrical Insulation in Vacuum, Proceedings = P Int Symp Disch El Isdeiv: Xxth International Symposium On Discharges and Electrical Insulation in Vacuum, Proceedings = P. Int. Symp. Disch. El. Isegoria = Isegoria Iseki-food = Iseki-food ISE Review=ISE Rev. Ishm 92 Proceedings : Proceedings of The 1992 International Symposium On Microelectronics = P Soc Photo-opt Ins Ishm 92 Proceedings : Proceedings of The 1992 International Symposium On Microelectronics = P. Soc. Photo-opt. Ins. Isi Atlas of Science-animal & Plant Sciences = Isi Atl Sci-anim Pl Isi Atlas of Science-animal & Plant Sciences = Isi Atl. Sci-anim. Pl. Isi Atlas of Science-biochemistry = Isi Atlas-biochem Isi Atlas of Science-biochemistry = Isi Atlas-biochem. Isi Atlas of Science-immunology = Isi Atlas-immunol Isi Atlas of Science-immunology = Isi Atlas-immunol. Isi Atlas of Science-pharmacology = Isi Atlas-pharmacol Isi Atlas of Science-pharmacology = Isi Atlas-pharmacol. Isi Bilimi Ve Teknigi Dergisi-journal of Thermal Science and Technology = Isi Bilim Tek Derg Isi Bilimi Ve Teknigi Dergisi-journal of Thermal Science and Technology = Isi Bilim. Tek. Derg. Isij International = Isij Int Isij International = Isij Int. ISIJ International = ISIJ Int. Ising-type Antiferromagnets = Springer Tracts Mod Ising-type Antiferromagnets = Springer. Tracts. Mod. Ising-type Antiferromagnets = Springer Tr Mod Phys Ising-type Antiferromagnets = Springer. Tr. Mod. Phys. Is Inheritance Legitimate? = St Econ Ethic Philos Is Inheritance Legitimate? = St. Econ. Ethic. Philos. Isis; an international review devoted to the history of science and its cultural influences = Isis Isis En Occident = Relig Graeco Roman W Isis En Occident = Relig. Graeco. Roman. W. Isis International Symposium On Interdisciplinary Science = Aip Conf Proc Isis International Symposium On Interdisciplinary Science = Aip. Conf. Proc. Isis = Isis Isis=Isis;; Isis = Isis Is It Reasonable to Abandon Nuclear Energy? = Vdi Bericht Is It Reasonable to Abandon Nuclear Energy? = Vdi. Bericht. Iskos = Iskos Isla-a Journal of Micronesian Studies = Isla-j Micrones Stud Isla-a Journal of Micronesian Studies = Isla-j. Micrones. Stud. Islam and Christian-muslim Relations = Islam Christ-muslim Islam and Christian-muslim Relations = Islam Christ-muslim. Islam and Early Modern English Literature: The Politics of Romance From Spenser to Milton = Early Mod Cult Stud Islam and Early Modern English Literature: The Politics of Romance From Spenser to Milton = Early Mod. Cult. Stud. Islam and Sufism in Daghestan = Suom Tiedeakat Toim Islam and Sufism in Daghestan = Suom. Tiedeakat. Toim. Islam and The Baha'i Faith: A Comparative Study of Muhammad 'abduh and 'abdul-baha 'abbas = Cult Civiliz Mid E Islam and The Baha'i Faith: A Comparative Study of Muhammad 'abduh and 'abdul-baha 'abbas = Cult. Civiliz. Mid. E. Islam and The Everyday World: Public Policy Dilemmas = Routl Polit Econ Mid Islam and The Everyday World: Public Policy Dilemmas = Routl. Polit. Econ. Mid. Isla (Mangilao, Guam) = Isla Islam Dot Com: Contemporary Islamic Discourses in Cyberspace = Palgr Mac Ser Int Po Islam Dot Com: Contemporary Islamic Discourses in Cyberspace = Palgr. Mac. Ser. Int. Po. Islamic Area Studies = Islam Area Stud Islamic Area Studies = Islam. Area Stud. Islamic Art and Culture in Sub-saharan Africa = Act U Ups F Islamic Art and Culture in Sub-saharan Africa = Act. U. Ups. F. Islamic Banking and Finance in The European Union: A Challenge = Stud Islam Financ Ac Islamic Banking and Finance in The European Union: A Challenge = Stud. Islam. Financ. Ac. Islamic Civilization and Muslim Networks = Islam Civiliz Muslim Islamic Civilization and Muslim Networks = Islam. Civiliz. Muslim Islamic Culture Through Jewish Eyes = Routl Stud Mid E Lit Islamic Culture Through Jewish Eyes = Routl. Stud. Mid. E. Lit. Islamic Economic Studies=Islamic Econ. Stud. Islamic Education in The Soviet Union and Its Successor States = Cent Asian Stud Ser Islamic Education in The Soviet Union and Its Successor States = Cent. Asian. Stud. Ser. Islamic Family = Arab Isl L Islamic Family = Arab. Isl. L. Islamic Financial Services in The United Kingdom = Edinb Guid Islam Islamic Financial Services in The United Kingdom = Edinb. Guid. Islam. Islamic Gardens and Landscapes = Penn Stud Landsc Arc Islamic Gardens and Landscapes = Penn. Stud. Landsc. Arc. Islamic History and Civilization - Studies and Texts = Islamic Hist Civiliz Islamic History and Civilization - Studies and Texts = Islamic Hist. Civiliz. Islamic Legitimacy in A Plural Asia = Routl Contemp Asia Islamic Legitimacy in A Plural Asia = Routl. Contemp. Asia Islamic Narrative and Authority in Southeast Asia: From The 16th to The 21st Century = Contemp Anthr Relig Islamic Narrative and Authority in Southeast Asia: From The 16th to The 21st Century = Contemp. Anthr. Relig. Islamic Philosophy and Occidental Phenomenology in Dialogue = Islam Ph Occident Islamic Philosophy and Occidental Phenomenology in Dialogue = Islam. Ph. Occident. Islamic Philosophy and Occidental Phenomenology On The Perennial Issue of Microcosm and Macrocosm = Islam Ph Occident Islamic Philosophy and Occidental Phenomenology On The Perennial Issue of Microcosm and Macrocosm = Islam. Ph. Occident. Islamic Philosophy, Theology, and Science = Islam. Philos. Theol. Sci. Islamic Philosophy Theology and Science: Texts and Studies = Islam Ph Th Sci Islamic Philosophy Theology and Science: Texts and Studies = Islam. Ph. Th. Sci. Islamic Radicalism and Anti-americanism in Indonesia: The Role of The Internet = Pol Stud Islamic Radicalism and Anti-americanism in Indonesia: The Role of The Internet = Pol. Stud. Islamic Republic of Iran = J. Sci. Islam. Repub. Iran Islamic studies = Islam Stud Islam in Politics in Russia and Central Asia = Islam Area Stud Islam in Politics in Russia and Central Asia = Islam Area. Stud. Islam in South Asia: in Practice = Princ Read Relig Islam in South Asia: in Practice = Princ. Read. Relig. Islam in The 21st Century = Relig Spiritual Islam in The 21st Century = Relig. Spiritual. Islamism, Democracy and Liberalism in Turkey - The Case of The Akp = Routl Stud Mid E Pol Islamism, Democracy and Liberalism in Turkey - The Case of The Akp = Routl. Stud. Mid. E. Pol. Islam, Migration and Integration: The Age of Securitization = Migrat Minor Citizen Islam, Migration and Integration: The Age of Securitization = Migrat. Minor. Citizen. Islam Obscured: The Rhetoric of Anthropological Representation = Contemp Anthr Relig Islam Obscured: The Rhetoric of Anthropological Representation = Contemp. Anthr. Relig. Islam-zeitschrift Fur Geschichte Und Kultur Des Islamischen Orients = Islam Islam-zeitschrift Fur Geschichte Und Kultur Des Islamischen Orients = Islam. Island Arc = Isl Arc Island Arc = Isl. Arc Island Disputes and Maritime Regime Building in East Asia: Between A Rock and A Hard Place = Polit Econ Asia Pac Island Disputes and Maritime Regime Building in East Asia: Between A Rock and A Hard Place = Polit. Econ. Asia. Pac. Island Futures: Conservation and Development Across The Asia-pacific Region = Glob Environ Stud Island Futures: Conservation and Development Across The Asia-pacific Region = Glob. Environ. Stud. Island in The Stream: Oceanography and Fisheries of The Charleston Bump = Am Fish S S Island in The Stream: Oceanography and Fisheries of The Charleston Bump = Am. Fish. S. S. Island Living Series = Isl Liv Ser Island Living Series = Isl. Liv. Ser. Islands and International Politics in The Persian Gulf: The Abu Musa and Tunbs in Strategic Context = Durh Mod Mid E Islam Islands and International Politics in The Persian Gulf: The Abu Musa and Tunbs in Strategic Context = Durh. Mod. Mid. E. Islam. Islands of Inquiry: Colonisation, Seafaring and The Archaeology of Maritime Landscapes = Terra Australis Islands of Inquiry: Colonisation, Seafaring and The Archaeology of Maritime Landscapes = Terra. Australis. Island Studies Series = Isl Stud Ser Island Studies Series = Isl. Stud. Ser. Island Sustainability = Wit Trans Ecol Envir Island Sustainability = Wit. Trans. Ecol. Envir. Isle-interdisciplinary Studies in Literature and Environment = Isle-interdiscip Stu Isle-interdisciplinary Studies in Literature and Environment = Isle-interdiscip. Stu. Islenha = Rev Islenha Islets = Islets Islets of Langerhans = Adv Exp Med Biol Islets of Langerhans = Adv. Exp. Med. Biol. ISL law review. International School of Law = ISL Law Rev Ism 2005: Seventh Ieee International Symposium On Multimedia, Proceedings = Ieee Int Sym Multim Ism 2005: Seventh Ieee International Symposium On Multimedia, Proceedings = Ieee Int. Sym. Multim. Ism 2006: Eighth Ieee International Symposium On Multimedia, Proceedings = Ieee Int Sym Multim Ism 2006: Eighth Ieee International Symposium On Multimedia, Proceedings = Ieee Int. Sym. Multim. Ism 2007: Ninth Ieee International Symposium On Multimedia, Proceedings = Ieee Int Sym Multim Ism 2007: Ninth Ieee International Symposium On Multimedia, Proceedings = Ieee Int. Sym. Multim. Ism: 2008 Ieee International Symposium On Multimedia = Ieee Int Sym Multim Ism: 2008 Ieee International Symposium On Multimedia = Ieee Int. Sym. Multim. Ismail Kadare: The Writer and The Dictatorship 1957-1990 = Legenda Ser Ismail Kadare: The Writer and The Dictatorship 1957-1990 = Legenda. Ser. Ismanam 2003: Metastable, Mechanically Alloyed and Nanocrystalline Materials = J Metastab Nanocryst Ismanam 2003: Metastable, Mechanically Alloyed and Nanocrystalline Materials = J. Metastab. Nanocryst. Isme Edition = Isme Edit Isme Edition = Isme Edit. Isme Journal = Isme J Isme Journal = Isme J. Ismvl 2002: 32nd Ieee International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl Ismvl 2002: 32nd Ieee International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. Ismvl 2006: 36th International Symposium On Multiple-valued Logic = Int Sym Mvl Ismvl 2006: 36th International Symposium On Multiple-valued Logic = Int. Sym. Mvl. Ism Workshops 2007: Ninth Ieee International Symposium On Multimedia - Workshops, Proceedings = Ieee Int Sym Multim Ism Workshops 2007: Ninth Ieee International Symposium On Multimedia - Workshops, Proceedings = Ieee Int. Sym. Multim. Isnd 2007: Proceedings of The 2007 International Symposium On Nonlinear Dynamics, Pts 1-4 = J Phys Conf Ser Isnd 2007: Proceedings of The 2007 International Symposium On Nonlinear Dynamics, Pts 1-4 = J. Phys. Conf. Ser. Iso Beyond Point Sources: Studies of Extended Infrared Emission Workshop = Esa Spec Publ Iso Beyond Point Sources: Studies of Extended Infrared Emission Workshop = Esa. Spec. Publ. Iso Beyond Point Sources: Studies of Extended Infrared Emission Workshop = Esa Sp Publ Iso Beyond Point Sources: Studies of Extended Infrared Emission Workshop = Esa. Sp. Publ. Iso Beyond The Peaks = Esa Spec Publ Iso Beyond The Peaks = Esa. Spec. Publ. Iso Beyond The Peaks = Esa Sp Publ Iso Beyond The Peaks = Esa. Sp. Publ. Isocyanates: Sampling, Analysis, and Health Effects = Am Soc Test Mater Isocyanates: Sampling, Analysis, and Health Effects = Am. Soc. Test. Mater. Isoflavones: Biosynthesis, Occurrence and Health Effects = Biochem Res Trends Isoflavones: Biosynthesis, Occurrence and Health Effects = Biochem. Res. Trends. Isokinetics and exercise science = Isokinet Exerc Sci Isokinetics and Exercise Science = Isokinet Exerc Sci Isokinetics and Exercise Science = Isokinet. Exerc. Sci. Isolated Liver Perfusion for Hepatic Tumors = Recent Res Cancer Isolated Liver Perfusion for Hepatic Tumors = Recent. Res. Cancer. Isolation, Migration and Health = Soc St Hum Isolation, Migration and Health = Soc. St. Hum. Isopentenoids and Other Natural Products = Acs Sym Ser Isopentenoids and Other Natural Products = Acs. Sym. Ser. Isopod Systematics and Evolution = Crustacean Iss Isopod Systematics and Evolution = Crustacean. Iss. Isotonic Transport in Leaky Epithelia = Alfred Benzon Symp S Isotonic Transport in Leaky Epithelia = Alfred. Benzon. Symp. S. Isotope Effects in Gas-phase Chemistry = Acs Sym Ser Isotope Effects in Gas-phase Chemistry = Acs. Sym. Ser. Isotope Effects in Solid State Physics = Semiconduct Semimet Isotope Effects in Solid State Physics = Semiconduct. Semimet. Isotope geoscience = Isot Geosci Isotope Geoscience = Isot Geosci Isotope Geoscience = Isot. Geosci. Isotopenpraxis = Isotopenpraxis Isotopes and Radiation Technology = Isot Radiat Technol Isotopes and Radiation Technology = Isot. Radiat. Technol. Isotopes in Environmental and Health Studies = Isot. Environ. Health Stud. Isotopes in Environmental and Health Studies = Isot Environ Healt S Isotopes in Environmental and Health Studies = Isot. Environ. Healt. S. Isotopes in environmental and health studies = Isotopes Environ Health Stud Isotopes in Environmental and Health Studies = Isotopes Environ. Health Stud. Isotopes in Water Resources Management, Vol 1 = P S Iaea Isotopes in Water Resources Management, Vol 1 = P. S. Iaea. Isotopes in Water Resources Management, Vol 2 = P S Iaea Isotopes in Water Resources Management, Vol 2 = P. S. Iaea. Isotopic and Elemental Tracers of Cenozoic Climate Change = Geol S Am S Isotopic and Elemental Tracers of Cenozoic Climate Change = Geol. S. Am. S. Isotopic and Elemental Tracers of Cenozoic Climate Change = Geol Soc Am Spec Pap Isotopic and Elemental Tracers of Cenozoic Climate Change = Geol. Soc. Am. Spec. Pap. Isozymes-current Topics in Biological and Medical Research = Isozymes-curr T Biol Isozymes-current Topics in Biological and Medical Research = Isozymes-curr. T. Biol. Isozymes; Current Topics in Biological Medical Research = Isozymes Curr. Top. Biol. Med. Res. Isozymes = Isozymes Curr Top Biol Med Res Isozymes = Prog Clin Biol Res Isozymes = Prog. Clin. Biol. Res. Ispacs 2005: Proceedings of The 2005 International Symposium On Intelligent Signal Processing and Communication Systems = I S Intell Sig Proc Ispacs 2005: Proceedings of The 2005 International Symposium On Intelligent Signal Processing and Communication Systems = I. S. Intell. Sig. Proc. Ispass: 2001 Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass: 2001 Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass: 2003 Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass: 2003 Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass: 2004 Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass: 2004 Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass 2005: Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass 2005: Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass 2006: Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass 2006: Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass 2007: Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass 2007: Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass 2008: Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass 2008: Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispass 2009: Ieee International Symposium On Performance Analysis of Systems and Software = Int Sym Perform Anal Ispass 2009: Ieee International Symposium On Performance Analysis of Systems and Software = Int. Sym. Perform. Anal. Ispra '09: Proceedings of The 9th Wseas International Conference On Signal Processing, Robotics and Automation = Ma Comput Sci Eng Ispra '09: Proceedings of The 9th Wseas International Conference On Signal Processing, Robotics and Automation = Ma. Comput. Sci. Eng. Ispra '09: Proceedings of The 9th Wseas International Conference On Signal Processing, Robotics and Automation = Math Comput Sci Eng Ispra '09: Proceedings of The 9th Wseas International Conference On Signal Processing, Robotics and Automation = Math. Comput. Sci. Eng. Ispra Courses On Reliability and Risk Analysis = Ispra C Rel Ispra Courses On Reliability and Risk Analysis = Ispra C. Rel. Isprs Journal of Photogrammetry and Remote Sensing = Isprs J Photogramm Isprs Journal of Photogrammetry and Remote Sensing = Isprs J. Photogramm. ISPRS Journal of Photogrammetry and Remote Sensing = ISPRS J. Photogramm. Remote Sens. Ispsd 08: Proceedings of The 20th International Symposium On Power Semiconductor Devices & Ics = Int Sym Pow Semicond Ispsd 08: Proceedings of The 20th International Symposium On Power Semiconductor Devices & Ics = Int. Sym. Pow. Semicond. Israel Affairs = Isr Aff Israel Affairs = Isr. Aff. Israel and Hizbollah: An Asymmetric Conflict in Historical and Comparative Perspective = Middle E Mil Stud Israel and Hizbollah: An Asymmetric Conflict in Historical and Comparative Perspective = Middle. E. Mil. Stud. Israel and Its Army: From Cohesion to Confusion = Middle E Mil Stud Israel and Its Army: From Cohesion to Confusion = Middle. E. Mil. Stud. Israel and The Palestinian Refugees = Beitr Ausl Offentl R Israel and The Palestinian Refugees = Beitr. Ausl. Offentl. R. Israel Annals of Psychiatry and Related Disciplines = Isr. Ann. Psychiatr. Relat. Discip. Israel Annals of Psychiatry and Related Disciplines = Isr J Psychiat Rel D Israel Annals of Psychiatry and Related Disciplines = Isr. J. Psychiat. Rel. D. Israel Exploration Journal = IEJ Israel Exploration Journal = IEJ Israel Exploration Journal = Israel Explor J Israel Exploration Journal = Israel Explor. J. Israeli Counter-insurgency and The Intifadas: Dilemmas of A Conventional Army = Middle E Mil Stud Israeli Counter-insurgency and The Intifadas: Dilemmas of A Conventional Army = Middle. E. Mil. Stud. Israeli History Politics and Society = Isr Hist Polit Soc Israeli History Politics and Society = Isr. Hist. Polit. Soc. Israeli Journal of Aquaculture-bamidgeh = Isr J Aquacult-bamid Israeli Journal of Aquaculture-bamidgeh = Isr. J. Aquacult-bamid. Israeli Military and The Origins of The 1967 War: Government, Armed Forces and Defence Policy 1963-67 = Middle E Mil Stud Israeli Military and The Origins of The 1967 War: Government, Armed Forces and Defence Policy 1963-67 = Middle. E. Mil. Stud. Israeli Politics and The First Palestinian Intifada = Routl Stud Mid E Pol Israeli Politics and The First Palestinian Intifada = Routl. Stud. Mid. E. Pol. Israel Journal of Agricultural Research = Israel J Agr Res Israel Journal of Agricultural Research = Israel J. Agr. Res. Israel Journal of Botany = Israel J Bot Israel Journal of Botany = Israel J. Bot. Israel Journal of Chemistry = Israel J Chem Israel Journal of Chemistry = Israel J. Chem. Israel journal of chemistry = Isr J Chem Israel Journal of Chemistry = Isr J Chem Israel Journal of Chemistry = Isr. J. Chem. Israel Journal of Dental Medicine = Isr. J. Dent. Med. Israel journal of dental sciences = Isr J Dent Sci Israel Journal of Dental Sciences = Isr. J. Dent. Sci. Israel Journal of Earth Sciences = Israel J Earth Sci Israel Journal of Earth Sciences = Israel J. Earth Sci. Israel Journal of Earth Sciences = Isr J Earth Sci Israel Journal of Earth Sciences = Isr. J. Earth Sci. Israel Journal of Ecology & Evolution = Isr J Ecol Evol Israel Journal of Ecology & Evolution = Isr. J. Ecol. Evol. Israel Journal of Experimental Medicine = Israel J Exp Med Israel Journal of Experimental Medicine = Israel J. Exp. Med. Israel journal of experimental medicine = Isr J Exp Med Israel Journal of Mathematics = Israel J. Math. Israel Journal of Mathematics = Israel J Math Israel Journal of Mathematics = Israel J. Math. Israel Journal of Mathematics = Isr J Math Israel Journal of Mathematics = Isr. J. Math. Israel Journal of Medical Sciences = Israel J Med Sci Israel Journal of Medical Sciences = Israel J. Med. Sci. Israel journal of medical sciences = Isr J Med Sci Israel Journal of Medical Sciences=Isr J Med Sci;; Israel Journal of Medical Sciences = Isr. J. Med. Sci. Israel Journal of Plant Sciences = Israel J Plant Sci Israel Journal of Plant Sciences = Israel J. Plant Sci. Israel Journal of Plant Sciences = Isr J Plant Sci Israel Journal of Plant Sciences = Isr. J. Plant Sci. Israel Journal of Psychiatry and Related Sciences = Israel J Psychiat Israel Journal of Psychiatry and Related Sciences = Israel J. Psychiat. Israel Journal of Psychiatry and Related Sciences = Isr J Psychiatr Rel Israel Journal of Psychiatry and Related Sciences = Isr. J. Psychiatr. Rel. Israel Journal of Psychiatry and Related Sciences=Isr J Psychiatry Relat Sci;; Israel Journal of Psychiatry and Related Sciences = Isr. J. Psychiatry Relat. Sci. Israel Journal of Technology = Israel J Technol Israel Journal of Technology = Israel J. Technol. Israel Journal of Veterinary Medicine = Isr J Vet Med Israel Journal of Veterinary Medicine = Isr. J. Vet. Med. Israel Journal of Zoology = Israel J Zool Israel Journal of Zoology = Israel J. Zool. Israel journal of zoology = Isr J Zool Israel Journal of Zoology = Isr J Zool Israel Journal of Zoology = Isr. J. Zool. Israel Law Review = Israel Law Rev Israel Law Review = Israel Law Rev. Israel law review = Isr Law Rev Israel Mathematical Conference Proceedings = Contemp Math Israel Mathematical Conference Proceedings = Contemp. Math. Israel Mathematical Conference Proceedings = Israel Math. Conf. Proc. Israel Medical Association Journal = Israel Med Assoc J Israel Medical Association Journal = Israel Med. Assoc. J. Israel Medical Association Journal = Isr Med Assoc J Israel Medical Association Journal = Isr. Med. Assoc. J. Israel medical journal = Isr Med J Israel Museum Studies in Archaeology. An Annual Publication by the Samuel Bronfman Biblical and Archaeological Museum of the Israel Museum, Jerusalem = IsrMusStA Israel Numismatic Journal = IsrNumJ Israel oriental studies = Isr Orient Stud Israels Asymmetric Wars = Sci Po Ser Int Relat Israels Asymmetric Wars = Sci. Po. Ser. Int. Relat. Israel's National Security: Issues and Challenges Since The Yom Kippur War = Isr Hist Polit Soc Israel's National Security: Issues and Challenges Since The Yom Kippur War = Isr. Hist. Polit. Soc. Israel social science research = Isr Soc Sci Res Israel Vs. Hamas = Middle E Turmoil Israel Vs. Hamas = Middle. E. Turmoil. Isscc Digest of Technical Papers = Isscc Dig Tech Pap I Isscc Digest of Technical Papers = Isscc Dig. Tech. Pap. I. Issledovaniia po genetike = Issled Genet Issledovaniia po Genetike = Issled. Genet. ISSN: 0066-197X = ESSN: ISSN: 0104-5970 = ESSN: ISSN: 0194-5998 = ESSN: ISSN: 0278-5633 = ESSN: ISSN: 0743-5150 = ESSN: ISSN: 0793-2952 = ESSN: ISSN: 0886-4470 = ESSN: 1538-361X ISSN: 0891-2874 = ESSN: ISSN: 1022-386X = ESSN: ISSN: 1331-2294 = ESSN: ISSN: = ESSN: Issue brief (Center for Medicare Education) = Issue Brief Cent Medicare Educ Issue brief (Center for Studying Health System Change) = Issue Brief Cent Stud Health Syst Change Issue brief (Commonwealth Fund) = Issue Brief (Commonw Fund) Issue brief (George Washington University. Center for Health Services Research and Policy) = Issue Brief George Wash Univ Cent Health Serv Res Policy Issue brief (George Washington University. Medical Center. Ensuring Solutions to Alcohol Problems) = Issue Brief (George Wash Univ Med Cent Ensuring Solut Alcohol Probl) Issue brief (George Washington University. National Health Policy Forum) = Issue Brief Natl Health Policy Forum Issue brief (Grantmakers in Health) = Issue brief (Grantmakers Health) Issue brief (Health Policy Tracking Service) = Issue Brief Health Policy Track Serv Issue brief (Institute on Health Care Costs and Solutions) = Issue Brief (Inst Health Care Costs Solut) Issue brief (Massachusetts Health Policy Forum) = Issue Brief (Mass Health Policy Forum) Issue Brief, National Health Policy Forum = Issue Brief Natl. Health Policy Forum Issue Brief (Public Policy Institute (American Association of Retired Persons)) = Issue Brief (Public Policy Inst (Am Assoc Retired Pers)) Issues and Advances in Postharvest Horticulture, Vols 1 and 2 = Acta Hortic Issues and Advances in Postharvest Horticulture, Vols 1 and 2 = Acta. Hortic. Issues and Advances in Transplant Production and Stand Establishment Research = Acta Hortic Issues and Advances in Transplant Production and Stand Establishment Research = Acta. Hortic. Issues and Trends in Radioactive Waste Managment, Proceedings = P S Iaea Issues and Trends in Radioactive Waste Managment, Proceedings = P. S. Iaea. Issues & Debates = Issues Debates Issues for The New Decade = Prof Lib S Issues for The New Decade = Prof. Lib. S. Issues in Agent Communication = Lect Notes Artif Int Issues in Agent Communication = Lect. Notes. Artif. Int. Issues in Agricultural Development = Iaae Oc Pap Issues in Agricultural Development = Iaae. Oc. Pap. Issues in Agroecology-present Status and Future Prospectus = Iss Agroecol Pres Issues in Agroecology-present Status and Future Prospectus = Iss. Agroecol. Pres. Issues in Aviation: Airports, Capacity, and Air Traffic Control and Management = Transport Res Rec Issues in Aviation: Airports, Capacity, and Air Traffic Control and Management = Transport. Res. Rec. Issues in Biomedicine : Monographs in Interdisciplinary Topics = Iss Biom M Issues in Biomedicine : Monographs in Interdisciplinary Topics = Iss. Biom. M. Issues in brief (Alan Guttmacher Institute) = Issues Brief (Alan Guttmacher Inst) Issues in Business Ethics = Iss Bus Eth Issues in Business Ethics = Iss. Bus. Eth. Issues in Business Ethics = Issues Bus Ethics Issues in Business Ethics = Issues Bus. Ethics Issues in Children's and Families' Lives = Iss Childr Fam Lives Issues in Children's and Families' Lives = Iss. Childr. Fam. Lives Issues in Childrens and Families Lives = Issues Child Fam Liv Issues in Childrens and Families Lives = Issues Child. Fam. Liv. Issues in Clinical and Cognitive Neuropsychology = Iss Clin Cogn Neurop Issues in Clinical and Cognitive Neuropsychology = Iss. Clin. Cogn. Neurop. Issues in Clinical Child Psychology = Issues Clin Child Ps Issues in Clinical Child Psychology = Issues Clin. Child Ps. Issues in Cognitive Linguistics = Cog Lin Res Issues in Cognitive Linguistics = Cog. Lin. Res. Issues in Cognitive Linguistics = Cogn Linguist Res Issues in Cognitive Linguistics = Cogn. Linguist. Res. Issues in Complementary Feeding = Nestle Nutr Works Se Issues in Complementary Feeding = Nestle. Nutr. Works. Se. Issues in comprehensive pediatric nursing = Issues Compr Pediatr Nurs Issues in Comprehensive Pediatric Nursing = Issues Compr. Pediatr. Nurs. Issues in Corporate Governance and Finance = Adv Financ Econ Issues in Corporate Governance and Finance = Adv. Financ. Econ. Issues in criminology = Issues Ciminol Issues in Criminology = Issues Criminol Issues in Criminology = Issues Criminol. Issues in Economic Thought = Econ Iss Probl Persp Issues in Economic Thought = Econ. Iss. Probl. Persp. Issues in emerging health technologies = Issues Emerg Health Technol Issues in Environmental Science and Technology Series = Iss Environ Sci Tech Issues in Environmental Science and Technology Series = Iss. Environ. Sci. Tech. Issues in ethics / Center for Applied Ethics = Issues Ethics Issues in Germanic Syntax = Trend Lin S Issues in Germanic Syntax = Trend. Lin. S. Issues in German Politics = Iss Ger Polit Issues in German Politics = Iss. Ger. Polit. Issues in Health Care = Issues Health Care Issues in health care of women = Issues Health Care Women Issues in Health Care of Women = Issues Health Care Women Issues in health care (Philadelphia, Pa.) = Issues Health Care Issues in Higher Education = Iss High Educ Issues in Higher Education = Iss. High. Educ. Issues in Higher Education-palgrave = Issues High Educ-pal Issues in Higher Education-palgrave = Issues High. Educ-pal. Issues in Husserl's Ideas Ii = Contr Phenomenol Issues in Husserl's Ideas Ii = Contr. Phenomenol. Issues in Infectious Diseases = Issues Infect Dis Issues in Infectious Diseases = Issues Infect. Dis. Issues in L2 : = Del S Lang Issues in L2 : = Del. S. Lang. Issues in Law and Medicine = Issues Law Med. Issues In Law and Medicine=Issues Law Med;; Issues in Law and Society = Iss Law Soc Issues in Law and Society = Iss. Law Soc. Issues in law & medicine = Issues Law Med Issues in Law & Medicine = Issues Law Med Issues in Law & Medicine = Issues Law Med. Issues in Mathematical Linguistics = Stud Funct Struct Issues in Mathematical Linguistics = Stud. Funct. Struct. Issues in medical ethics = Issues Med Ethics Issues in mental health nursing = Issues Ment Health Nurs Issues in Mental Health Nursing = Issues Ment. Health Nurs. Issues in Multi-agent Systems: The Agentcities.es Experience = Whitestein Ser Softw Issues in Multi-agent Systems: The Agentcities.es Experience = Whitestein. Ser. Softw. Issues in Nephrosciences = Iss Nephros Issues in Nephrosciences = Iss. Nephros. Issues in Organization and Management Series = Iss Org Man Issues in Organization and Management Series = Iss. Org. Man. Issues in Pavement Design and Rehabilitation = Transport Res Rec Issues in Pavement Design and Rehabilitation = Transport. Res. Rec. Issues in Phonological Structure = Amst Stud Theory His Issues in Phonological Structure = Amst. Stud. Theory. His. Issues in Reproductive and Genetic Engineering-journal of International Feminist Analysis = Issues Reprod Genet Issues in Reproductive and Genetic Engineering-journal of International Feminist Analysis = Issues Reprod. Genet. Issues in reproductive and genetic engineering : journal of international feminist analysis = Issues Reprod Genet Eng Issues in science and technology = Issues Sci Technol Issues in Science and Technology = Issues Sci Technol Issues in Science and Technology = Issues Sci. Technol. Issues in Southeast Asian Security = Iss Se As S Issues in Southeast Asian Security = Iss. Se. As. S. Issues in The Biology of Language and Cognition = Iss Biol L Issues in The Biology of Language and Cognition = Iss. Biol. L. Issues in The Dynamics of Fishing Operations = Colloq Semi Issues in The Dynamics of Fishing Operations = Colloq. Semi. Issues in The Economics of Immigration = Nber Conf R Issues in The Economics of Immigration = Nber. Conf. R. Issues in Theoretical Diversity: Persistence, Composition, and Time = Philos Stud Ser Issues in Theoretical Diversity: Persistence, Composition, and Time = Philos. Stud. Ser. Issues in The Research Theory Policy and Practice of Urban Education = Iss Res Theor Pol Pr Issues in The Research Theory Policy and Practice of Urban Education = Iss. Res. Theor. Pol. Pr. Issues in Toxicology = Iss Toxicol Issues in Toxicology = Iss. Toxicol. Issues in Toxicology = Issues Toxicol Issues in Toxicology = Issues Toxicol. Issues in Urban Earthquake Risk = Nato Adv Sci Inst Se Issues in Urban Earthquake Risk = Nato. Adv. Sci. Inst. Se. Issues in Water Resource Policy = Issues Water Resourc Issues in Water Resource Policy = Issues Water Resourc. Issues = Issues Issues (National Council of State Boards of Nursing (U.S.)) = Issues Issues of Diversity in Clinical Neuropsychology = Issues Divers Clin N Issues of Diversity in Clinical Neuropsychology = Issues Divers. Clin. N. Issues of Identity in Music Education: Narratives and Practices = Adv Music Educ Res Issues of Identity in Music Education: Narratives and Practices = Adv. Music Educ. Res. Issues, Problems, and Performance Measures in Airports and Airspace = Transport Res Rec Issues, Problems, and Performance Measures in Airports and Airspace = Transport. Res. Rec. Issues (Saint Louis, Mo.) = Issues (St Louis Mo) Issues & studies = Issues Stud Issues & Studies = Issues Stud Issues & Studies = Issues Stud. Issup Ad Hoc Publication = Issup Ad Hoc Public Issup Ad Hoc Publication = Issup Ad Hoc Public. Ist 2006: Proceedings of The 2006 Ieee International Workshop On Imaging Systems and Techniques = I W Imag Syst Techni Ist 2006: Proceedings of The 2006 Ieee International Workshop On Imaging Systems and Techniques = I. W. Imag. Syst. Techni. Istanbul Arkeoloji Müzeleri yıllığı = IstanbAMuezYil Istanbuler Forschungen = IstForsch Istanbuler Mitteilungen = IstMitt Istanbul Tip Fakultesi mecmuasi = Istanbul Tip Fak Mecmuasi Istanbul Universitesi Dishekimligi Fakultesi Dergisi = Istanbul Univ. Dishekim. Fak. Derg. Istasc '09: Proceedings of The 9th Wseas International Conference On Systems Theory and Scientific Computation = Ma Comput Sci Eng Istasc '09: Proceedings of The 9th Wseas International Conference On Systems Theory and Scientific Computation = Ma. Comput. Sci. Eng. Is There A Shortfall in Public Capital Investment = Fed Bank Bo Is There A Shortfall in Public Capital Investment = Fed. Bank. Bo. Is There A Temperature?: Conceptual Challenges At High Energy, Acceleration and Complexity = Fund Theor Phys Is There A Temperature?: Conceptual Challenges At High Energy, Acceleration and Complexity = Fund. Theor. Phys. Isthmia. Excavations by the University of Chicago under the Auspices of the American School of Classical Studies at Athens = Isthmia Istituto e Museo di Storia della Scienza Firenze = Nuncius Ann. Storia Sci. Istituto Lombardo = Istit. Lombardo Accad. Sci. Lett. Rend. A Istituto per la Ricerca di Base = Istit. Ric. Base Ser. Monogr. Adv. Math. Istituto Veneto di Scienze, Lettere ed Arti = Istit. Veneto Sci. Lett. Arti Atti Cl. Sci. Fis. Mat. Natur. Istoricheski pregled = Istor Pregl Istoriia SSSR (Moscow, Russia : 1957) = Istor SSSR Istorija (Skopje, Macedonia) = Istorija Istorijski casopis : organ Istorijskog instituta Srpske akademije nauka i umetnosti = Istor Cas Istorijski zapisi : organ Istoriskog instituta i Drustva istoricara SR Crne Gore = Istor Zapisi Istoriko-biologicheskie issledovaniia = Istor Biol Issled Istoriko-filosofsky ezegodnik (History of philosophy yearbook), ed. by the Inst. of Philosophy of the Acad. of Sciences of URSS = IFE Istoriko-Matematicheskie Issledovaniya = Istor.-Mat. Issled. Istoriya i Metodologiya Estestvennykh Nauk = Istor. Metodol. Estestv. Nauk Istoriya Sssr = Istoriya Sssr Is&t's Tenth International Congress On Advances in Non-impact Printing Technologies = Int Cong Ad Is&t's Tenth International Congress On Advances in Non-impact Printing Technologies = Int. Cong. Ad. I supplementi di Tumori : official journal of Societa italiana di cancerologia ... [et al.] = Suppl Tumori Itab 2003: 4th International Ieee Embs Special Topic Conference On Information Technology Applications in Biomedicine, Conference Proceedings = Eng Med Biol Soc Ann Itab 2003: 4th International Ieee Embs Special Topic Conference On Information Technology Applications in Biomedicine, Conference Proceedings = Eng. Med. Biol. Soc. Ann. Italia contemporanea = Ital Contemp Italia forestale e montana, L’ = Ital. for. mont. Italia medioevale e umanistica = IMU Italia medioevale e umanistica = Ital Medioev Um Italian Agriculture and Changes On The International Economic Scene = Quad Riv Ec Italian Agriculture and Changes On The International Economic Scene = Quad. Riv. Ec. Italian Americans: A Retrospective On The Twentieth Century = Amer Ital Hist Assoc Italian Americans: A Retrospective On The Twentieth Century = Amer. Ital. Hist. Assoc. Italian and Italian American Studies = Ital Ital Am Stud Italian and Italian American Studies = Ital. Ital. Am. Stud. Italian Clitics = Trends Linguist-stud Italian Clitics = Trends. Linguist-stud. Italian Culture Studies, 2001 = Via Folios Italian Culture Studies, 2001 = Via. Folios. Italian general review of dermatology = Ital Gen Rev Dermatol Italian General Review of Dermatology = Ital. Gen. Rev. Dermatol. Italian general review of oto-rhino-laryngology. Revue generale italienne d'oto-rhino-laryngologie = Ital Gen Rev Otorhinolaryngol Italian Heart Journal = Ital. Heart J. Italian heart journal : official journal of the Italian Federation of Cardiology = Ital Heart J Italian heart journal. Supplement : official journal of the Italian Federation of Cardiology = Ital Heart J Suppl Italian Jewish Experience = Filibrary S Italian Jewish Experience = Filibrary. S. Italian Journal of Anatomy and Embryology=Ital J Anat Embryol;; Italian Journal of Anatomy and Embryology = Ital. J. Anat. Embryol. Italian Journal of Animal Science = Ital J Anim Sci Italian Journal of Animal Science = Ital. J. Anim. Sci. Italian Journal of Biochemistry=Ital J Biochem;; Italian Journal of Biochemistry = Ital J Biochem Italian Journal of Biochemistry = Ital. J. Biochem. Italian Journal of Food Science = Ital J Food Sci Italian Journal of Food Science = Ital. J. Food Sci. Italian Journal of Gastroenterology and Hepatology = Ital J Gastroenterol Italian Journal of Gastroenterology and Hepatology = Ital. J. Gastroenterol. Italian journal of gastroenterology and hepatology = Ital J Gastroenterol Hepatol Italian Journal of Gastroenterology and Hepatology = Ital. J. Gastroenterol. Hepatol. Italian Journal of Gastroenterology = Ital J Gastroenterol Italian Journal of Gastroenterology = Ital. J. Gastroenterol. Italian Journal of Geosciences = Ital J Geosci Italian Journal of Geosciences = Ital. J. Geosci. Italian Journal of Mineral & Electrolyte Metabolism = Ital J Miner Elect M Italian Journal of Mineral & Electrolyte Metabolism = Ital. J. Miner. Elect. M. Italian journal of neurological sciences = Ital J Neurol Sci Italian Journal of Neurological Sciences=Ital J Neurol Sci;; Italian Journal of Neurological Sciences = Ital J Neurol Sci Italian Journal of Neurological Sciences = Ital. J. Neurol. Sci. Italian journal of orthopaedics and traumatology = Ital J Orthop Traumatol Italian Journal of Orthopaedics and Traumatology = Ital. J. Orthop. Traumatol. Italian journal of orthopaedics and traumatology. Supplementum = Ital J Orthop Traumatol Suppl Italian Journal of Orthopaedics and Traumatology. Supplementum = Ital. J. Orthop. Traumatol. Suppl. Italian Journal of Pediatrics = Ital J Pediatr Italian Journal of Pediatrics = Ital. J. Pediatr. Italian Journal of Pure and Applied Mathematics = Ital. J. Pure Appl. Math. Italian Journal of Surgical Sciences = Ital. J. Surg. Sci. Italian Journal of Vascular and Endovascular Surgery = Ital J Vasc Endovasc Italian Journal of Vascular and Endovascular Surgery = Ital. J. Vasc. Endovasc. Italian Journal of Zoology = Ital J Zool Italian Journal of Zoology = Ital. J. Zool. Italian Language and Literature in The World Today, Pts 1 and 2 = Bibliot Arc Italian Language and Literature in The World Today, Pts 1 and 2 = Bibliot. Arc. Italian Mathematics Between The Two World Wars = Sci Netw Hist Stud Italian Mathematics Between The Two World Wars = Sci. Netw. Hist. Stud. Italia nostra = ItNostr Italian Perspectives = Italian Perspectives Italian Perspectives = Ital Perspect Italian Perspectives = Ital. Perspect. Italian Physical Society Conference Proceedings (ips) = Ital Phy So Italian Physical Society Conference Proceedings (ips) = Ital. Phy. So. Italian Quarterly = Ital Quart Italian Quarterly = Ital. Quart. Italian Scientists in The Low Countries in The Xviith and Xviiith Centuries = N Ned Bij G Italian Scientists in The Low Countries in The Xviith and Xviiith Centuries = N. Ned. Bij. G. Italian Studies = Ital Stud Italian Studies = Ital. Stud. Italica. Cuadernos de trabajos de la Escuela española de historia y arqueología en Roma = Italica Italica = Italica Italie Et Belgique En Europe Depuis 1918 - Italie En Belgie in Europa Sedert 1918 = Inst Hist Belge Rome Italie Et Belgique En Europe Depuis 1918 - Italie En Belgie in Europa Sedert 1918 = Inst. Hist. Belge. Rome. Italienische Vergleichskonstruktionen = Linguist Arb Italienische Vergleichskonstruktionen = Linguist. Arb. Italy; documents and notes = Italy Doc Notes Italy in The Age of Pinocchio: Children and Danger in The Liberal Era = Ital Ital Am Stud Italy in The Age of Pinocchio: Children and Danger in The Liberal Era = Ital. Ital. Am. Stud. Italys Divided Memory = Ital Ital Am Stud Italys Divided Memory = Ital. Ital. Am. Stud. It and Manufacturing Partnerships = Adv Des Man It and Manufacturing Partnerships = Adv. Des. Man. Itc: 2009 International Test Conference = Int Test Conf P Itc: 2009 International Test Conference = Int. Test Conf. P. Itc - International Test Conference 1997, Proceedings = Int Test Conf P Itc - International Test Conference 1997, Proceedings = Int. Test Conf. P. ITC-Journal = ITC-J. Itea-informacion Tecnica Economica Agraria = Itea-inf Tec Econ Ag Itea-informacion Tecnica Economica Agraria = Itea-inf. Tec. Econ. Ag. ITE-IBA Letters New Technologies & Medicine = ITE-IBA Lett. Batteries New Technol. Med. Ite Journal-institute of Transportation Engineers = Ite J Ite Journal-institute of Transportation Engineers = Ite J. ITE Letters on Batteries New Technologies & Medicine = ITE Lett. Batteries New Technol. Med. Item Banking: Interactive Testing and Self-assessment = Nato Adv Sci Inst Se Item Banking: Interactive Testing and Self-assessment = Nato. Adv. Sci. Inst. Se. Items & issues = Items Issues Items = Items Iterative Approximation of Fixed Points = Lect Notes Math Iterative Approximation of Fixed Points = Lect. Notes. Math. Iterative-interpolation Super-resolution Image Reconstruction: A Computationally Efficient Technique = Stud Comput Intell Iterative-interpolation Super-resolution Image Reconstruction: A Computationally Efficient Technique = Stud. Comput. Intell. Iterative Learning Control: Robustness and Monotonic Convergence for Interval Systems = Commun Control Eng Iterative Learning Control: Robustness and Monotonic Convergence for Interval Systems = Commun. Control. Eng. Iterative Regularization Methods for Nonlinear Ill-posed Problems = Radon Ser Comput App Iterative Regularization Methods for Nonlinear Ill-posed Problems = Radon. Ser. Comput. App. Ite Symposium = Ite Symp Ite Symposium = Ite Symp. Iticse 2000: Proceedings of The 5th Annual Sigcse/sigcue Conference On Innovation and Technology in Computer Science Education = Sigcse Bull Iticse 2000: Proceedings of The 5th Annual Sigcse/sigcue Conference On Innovation and Technology in Computer Science Education = Sigcse. Bull. Iticse '99: Proceedings of The 4th Annual Sigcse/sigcue Conference On Innovation and Technology in Computer Science Education = Sigcse Bull Iticse '99: Proceedings of The 4th Annual Sigcse/sigcue Conference On Innovation and Technology in Computer Science Education = Sigcse. Bull. Iti = Iti Itinerant Electron Magnetism = Nato Asi 3 High Tech Itinerant Electron Magnetism = Nato. Asi. 3. High. Tech. Itinerario-international Journal On The History of European Expansion and Global Interaction = Itinerario Itinerario-international Journal On The History of European Expansion and Global Interaction = Itinerario. It Is Live - But Is It Real ? = Curr Deb Br It Is Live - But Is It Real ? = Curr. Deb. Br. Iti Treatment Guide = Iti Treatment Guide Itogi nauki = Itogi Nauk It's A Nonlinear World = Spring Und Text Math It's A Nonlinear World = Spring. Und. Text. Math. It Security: The Need for International Cooperation = Ifip Trans A It Security: The Need for International Cooperation = Ifip. Trans. A. Its Journal = Its J Its Journal = Its J. Iubmb Life = Iubmb Life IUBMB life = IUBMB Life IUBMB Life = IUBMB Life Iufro Research Series = Iufro Res Ser Iufro Research Series = Iufro Res. Ser. Iugoslavica physiologica et pharmacologica acta = Iugosl Physiol Pharmacol Acta Iugoslavica Physiologica et Pharmacologica Acta = Iugosl. Physiol. Pharmacol. Acta Iugoslavica Physiologica Et Pharmacologica Acta = Iugosl Physl Pharm A Iugoslavica Physiologica Et Pharmacologica Acta = Iugosl. Physl. Pharm. A. Iulius Africanus Chronographiae: The Extant Fragments = Griech Christl Schri Iulius Africanus Chronographiae: The Extant Fragments = Griech. Christl. Schri. Iura. Rivista internazionale di diritto romano e antico = Jura Ius Gentium-comparative Perspectives On Law and Justice = Ius Gentium Ius Gentium-comparative Perspectives On Law and Justice = Ius Gentium. Ius Gentium-comparative Perspectives On Law and Justice = Ius Gentium-comp Per Ius Gentium-comparative Perspectives On Law and Justice = Ius Gentium-comp. Per. Iussp International Population Conference = Iussp Pop C Iussp International Population Conference = Iussp Pop. C. IUSSP papers = IUSSP Pap Iustitia (Bloomington, Ind.) = Iustitia Iutam Bookseries = Iutam Bookser Iutam Bookseries = Iutam Bookser. Iutam-iass Symposium On Deployable Structures: Theory and Applications = Solid Mech Appl Iutam-iass Symposium On Deployable Structures: Theory and Applications = Solid. Mech. Appl. Iutam/iftomm Symposium On Synthesis of Nonlinear Dynamical Systems = Solid Mech Appl Iutam/iftomm Symposium On Synthesis of Nonlinear Dynamical Systems = Solid. Mech. Appl. Iutam-isimm Symposium On Mathematical Modeling and Physical Instances of Granular Flows = Aip Conf Proc Iutam-isimm Symposium On Mathematical Modeling and Physical Instances of Granular Flows = Aip. Conf. Proc. Iutam Symposium On Advanced Optical Methods and Applications in Solid Mechanics = Solid Mech Appl Iutam Symposium On Advanced Optical Methods and Applications in Solid Mechanics = Solid Mech. Appl. Iutam Symposium On Advances in Micro- and Nanofluidics = Iutam Bookser Iutam Symposium On Advances in Micro- and Nanofluidics = Iutam Bookser. Iutam Symposium On Analytical and Computational Fracture Mechanics of Non-homogeneous Materials, Proceedings = Solid Mech Appl Iutam Symposium On Analytical and Computational Fracture Mechanics of Non-homogeneous Materials, Proceedings = Solid. Mech. Appl. Iutam Symposium On Cellular, Molecular and Tissue Mechanics, Proceedings = Iutam Bookser Iutam Symposium On Cellular, Molecular and Tissue Mechanics, Proceedings = Iutam Bookser. Iutam Symposium On Chaotic Dynamics and Control of Systems and Processes in Mechanics = Solid Mech Appl Iutam Symposium On Chaotic Dynamics and Control of Systems and Processes in Mechanics = Solid. Mech. Appl. Iutam Symposium On Combustion in Supersonic Flows = Fluid Mec A Iutam Symposium On Combustion in Supersonic Flows = Fluid. Mec. A. Iutam Symposium On Computational Aero-acoustics for Aircraft Noise Prediction = Procedia Engineer Iutam Symposium On Computational Aero-acoustics for Aircraft Noise Prediction = Procedia. Engineer. Iutam Symposium On Computational Approaches to Multiphase Flow = Fluid Mec A Iutam Symposium On Computational Approaches to Multiphase Flow = Fluid. Mec. A. Iutam Symposium On Computational Methods in Contact Mechanics = Iutam Bookser Iutam Symposium On Computational Methods in Contact Mechanics = Iutam Bookser. Iutam Symposium On Computational Physics and New Perspectives in Turbulence = Iutam Bookser Iutam Symposium On Computational Physics and New Perspectives in Turbulence = Iutam Bookser. Iutam Symposium On Designing for Quietness, Proceedings = Solid Mech Appl Iutam Symposium On Designing for Quietness, Proceedings = Solid. Mech. Appl. Iutam Symposium On Diffraction and Scattering in Fluid Mechanics and Elasticity, Proceedings = Fluid Mec A Iutam Symposium On Diffraction and Scattering in Fluid Mechanics and Elasticity, Proceedings = Fluid Mec. A. Iutam Symposium On Diffraction and Scattering in Fluid Mechanics and Elasticity, Proceedings = Fluid Mech Appl Iutam Symposium On Diffraction and Scattering in Fluid Mechanics and Elasticity, Proceedings = Fluid Mech. Appl. Iutam Symposium On Discretization Methods for Evolving Discontinuities = Iutam Bookser Iutam Symposium On Discretization Methods for Evolving Discontinuities = Iutam Bookser. Iutam Symposium On Discretization Methods in Structural Mechanics = Solid Mech Appl Iutam Symposium On Discretization Methods in Structural Mechanics = Solid. Mech. Appl. Iutam Symposium On Dynamics and Control of Nonlinear Systems With Uncertainty = Iutam Bookser Iutam Symposium On Dynamics and Control of Nonlinear Systems With Uncertainty = Iutam Bookser. Iutam Symposium On Dynamics of Advanced Materials and Smart Structures = Solid Mech Appl Iutam Symposium On Dynamics of Advanced Materials and Smart Structures = Solid. Mech. Appl. Iutam Symposium On Dynamics of Slender Vortices = Fluid Mec A Iutam Symposium On Dynamics of Slender Vortices = Fluid. Mec. A. Iutam Symposium On Elastohydrodynamics and Micro-elastohydrodynamics = Solid Mech Appl Iutam Symposium On Elastohydrodynamics and Micro-elastohydrodynamics = Solid. Mech. Appl. Iutam Symposium On Elementary Vortices and Coherent Structures: Significance in Turbulence Dynamics = Fluid Mec A Iutam Symposium On Elementary Vortices and Coherent Structures: Significance in Turbulence Dynamics = Fluid. Mec. A. Iutam Symposium On Elementary Vortices and Coherent Structures: Significance in Turbulence Dynamics = Fluid Mech Appl Iutam Symposium On Elementary Vortices and Coherent Structures: Significance in Turbulence Dynamics = Fluid. Mech. Appl. Iutam Symposium On Emerging Trends in Rotor Dynamics = Iutam Bookser Iutam Symposium On Emerging Trends in Rotor Dynamics = Iutam Bookser. Iutam Symposium On Evolutionary Methods in Mechanics = Solid Mech Appl Iutam Symposium On Evolutionary Methods in Mechanics = Solid. Mech. Appl. Iutam Symposium On Field Analyses for Determination of Materials Parameters - Experimental and Numerical Aspects = Solid Mech Appl Iutam Symposium On Field Analyses for Determination of Materials Parameters - Experimental and Numerical Aspects = Solid. Mech. Appl. Iutam Symposium On Flow Control and Mems = Iutam Bookser Iutam Symposium On Flow Control and Mems = Iutam Bookser. Iutam Symposium On Fluid-structure Interaction in Ocean Engineering = Iutam Bookser Iutam Symposium On Fluid-structure Interaction in Ocean Engineering = Iutam Bookser. Iutam Symposium On Geometry and Statistics of Turbulence = Fluid Mec A Iutam Symposium On Geometry and Statistics of Turbulence = Fluid. Mec. A. Iutam Symposium On Hamiltonian Dynamics, Vortex Structures, Turbulence = Iutam Bookser Iutam Symposium On Hamiltonian Dynamics, Vortex Structures, Turbulence = Iutam Bookser. Iutam Symposium On Impact Biomechanics: From Fundamental Insights to Applications = Solid Mech Appl Iutam Symposium On Impact Biomechanics: From Fundamental Insights to Applications = Solid. Mech. Appl. Iutam Symposium On Interaction Between Dynamics and Control in Advanced Mechanical Systems = Solid Mech Appl Iutam Symposium On Interaction Between Dynamics and Control in Advanced Mechanical Systems = Solid. Mech. Appl. Iutam Symposium On Laminar-turbulent Transition and Finite Amplitude Solutions = Fluid Mec A Iutam Symposium On Laminar-turbulent Transition and Finite Amplitude Solutions = Fluid. Mec. A. Iutam Symposium On Laminar-turbulent Transition and Finite Amplitude Solutions = Fluid Mech Appl Iutam Symposium On Laminar-turbulent Transition and Finite Amplitude Solutions = Fluid. Mech. Appl. Iutam Symposium On Lubricated Transport of Viscous Materials = Fluid Mec A Iutam Symposium On Lubricated Transport of Viscous Materials = Fluid. Mec. A. Iutam Symposium On Mechanical and Electromagnetic Waves in Structured Media = Solid Mech Appl Iutam Symposium On Mechanical and Electromagnetic Waves in Structured Media = Solid. Mech. Appl. Iutam Symposium On Mechanical Behavior and Micro-mechanics of Nanostructured Materials = Solid Mech Appl Iutam Symposium On Mechanical Behavior and Micro-mechanics of Nanostructured Materials = Solid. Mech. Appl. Iutam Symposium On Mechanical Properties of Cellular Materials = Iutam Bookser Iutam Symposium On Mechanical Properties of Cellular Materials = Iutam Bookser. Iutam Symposium On Mechanics and Reliability of Actuating Materials = Solid Mech Appl Iutam Symposium On Mechanics and Reliability of Actuating Materials = Solid. Mech. Appl. Iutam Symposium On Mechanics of Granular and Porous Materials = Solid Mech Appl Iutam Symposium On Mechanics of Granular and Porous Materials = Solid. Mech. Appl. Iutam Symposium On Mechanics of Martensitic Phase Transformation in Solids = Solid Mech Appl Iutam Symposium On Mechanics of Martensitic Phase Transformation in Solids = Solid. Mech. Appl. Iutam Symposium On Mechanics of Passive and Active Flow Control = Fluid Mec A Iutam Symposium On Mechanics of Passive and Active Flow Control = Fluid. Mec. A. Iutam Symposium On Mesoscopic Dynamics of Fracture Process and Materials Strength = Solid Mech Appl Iutam Symposium On Mesoscopic Dynamics of Fracture Process and Materials Strength = Solid. Mech. Appl. Iutam Symposium On Micromechanics of Plasticity and Damage of Multiphase Materials = Solid Mech Appl Iutam Symposium On Micromechanics of Plasticity and Damage of Multiphase Materials = Solid. Mech. Appl. Iutam Symposium On Microstructure-property Interactions in Composite Materials = Solid Mech Appl Iutam Symposium On Microstructure-property Interactions in Composite Materials = Solid. Mech. Appl. Iutam Symposium On Modelling Nanomaterials and Nanosystems = Iutam Bookser Iutam Symposium On Modelling Nanomaterials and Nanosystems = Iutam Bookser. Iutam Symposium On Multi-functional Material Structures and Systems = Iutam Bookser Iutam Symposium On Multi-functional Material Structures and Systems = Iutam Bookser. Iutam Symposium On Multiscale Modeling and Characterization of Elastic-inelastic Behavior of Engineering Materials, Proceedings = Solid Mech Appl Iutam Symposium On Multiscale Modeling and Characterization of Elastic-inelastic Behavior of Engineering Materials, Proceedings = Solid. Mech. Appl. Iutam Symposium On Multiscale Problems in Multibody System Contacts = Iutam Bookser Iutam Symposium On Multiscale Problems in Multibody System Contacts = Iutam Bookser. Iutam Symposium On Nonlinear Instability and Transition in Three-dimensional Boundary Layers = Fluid Mec A Iutam Symposium On Nonlinear Instability and Transition in Three-dimensional Boundary Layers = Fluid. Mec. A. Iutam Symposium On Nonlinearity and Stochastic Structural Dynamics = Solid Mech Appl Iutam Symposium On Nonlinearity and Stochastic Structural Dynamics = Solid. Mech. Appl. Iutam Symposium On Nonlinear Stochastic Dynamics and Control = Iutam Bookser Iutam Symposium On Nonlinear Stochastic Dynamics and Control = Iutam Bookser. Iutam Symposium On Nonlinear Stochastic Dynamics = Solid Mech Appl Iutam Symposium On Nonlinear Stochastic Dynamics = Solid. Mech. Appl. Iutam Symposium On Nonlinear Waves in Multi-phase Flow = Fluid Mec A Iutam Symposium On Nonlinear Waves in Multi-phase Flow = Fluid. Mec. A. Iutam Symposium On Numerical Simulation On Non-isothermal Flow of Viscoelastic Liquids = Fluid Mec A Iutam Symposium On Numerical Simulation On Non-isothermal Flow of Viscoelastic Liquids = Fluid. Mec. A. Iutam Symposium On One Hundred Years of Boundary Layer Research = Solid Mech Appl Iutam Symposium On One Hundred Years of Boundary Layer Research = Solid. Mech. Appl. Iutam Symposium On Optimization of Mechanical Systems = Solid Mech Appl Iutam Symposium On Optimization of Mechanical Systems = Solid. Mech. Appl. Iutam Symposium On Physicochemical and Electromechanical Interactions in Porous Media = Solid Mech Appl Iutam Symposium On Physicochemical and Electromechanical Interactions in Porous Media = Solid. Mech. Appl. Iutam Symposium On Recent Advances of Acoustic Waves in Solids = Iutam Bookser Iutam Symposium On Recent Advances of Acoustic Waves in Solids = Iutam Bookser. Iutam Symposium On Recent Developments in Non-linear Oscillations of Mechanical Systems = Solid Mech Appl Iutam Symposium On Recent Developments in Non-linear Oscillations of Mechanical Systems = Solid. Mech. Appl. Iutam Symposium On Relations of Shell, Plate, Beam, and 3d Models = Iutam Bookser Iutam Symposium On Relations of Shell, Plate, Beam, and 3d Models = Iutam Bookser. Iutam Symposium On Reynolds Number Scaling in Turbulent Flow = Fluid Mec A Iutam Symposium On Reynolds Number Scaling in Turbulent Flow = Fluid. Mec. A. Iutam Symposium On Reynolds Number Scaling in Turbulent Flow = Fluid Mech Appl Iutam Symposium On Reynolds Number Scaling in Turbulent Flow = Fluid. Mech. Appl. Iutam Symposium On Scaling in Solid Mechanics = Iutam Bookser Iutam Symposium On Scaling in Solid Mechanics = Iutam Bookser. Iutam Symposium On Size Effects On Material and Structural Behavior At Micron- and Nano-scales = Solid Mech Appl Iutam Symposium On Size Effects On Material and Structural Behavior At Micron- and Nano-scales = Solid. Mech. Appl. Iutam Symposium On Smart Structures and Structronic Systems = Solid Mech Appl Iutam Symposium On Smart Structures and Structronic Systems = Solid. Mech. Appl. Iutam Symposium On Statistical Energy Analysis = Solid Mech Appl Iutam Symposium On Statistical Energy Analysis = Solid. Mech. Appl. Iutam Symposium On Theoretical and Numerical Methods in Continuum Mechanics of Porous Materials = Solid Mech Appl Iutam Symposium On Theoretical and Numerical Methods in Continuum Mechanics of Porous Materials = Solid. Mech. Appl. Iutam Symposium On Theoretical, Computational and Modelling Aspects of Inelastic Media = Iutam Bookser Iutam Symposium On Theoretical, Computational and Modelling Aspects of Inelastic Media = Iutam Bookser. Iutam Symposium On The Physics of Wall-bounded Turbulent Flows On Rough Walls = Iutam Bookser Iutam Symposium On The Physics of Wall-bounded Turbulent Flows On Rough Walls = Iutam Bookser. Iutam Symposium On The Vibration Analysis of Structures With Uncertainties = Iutam Bookser Iutam Symposium On The Vibration Analysis of Structures With Uncertainties = Iutam Bookser. Iutam Symposium On Topological Design Optimization of Structures, Machines and Materials: Status and Perspectives = Solid Mech Appl Iutam Symposium On Topological Design Optimization of Structures, Machines and Materials: Status and Perspectives = Solid. Mech. Appl. Iutam Symposium On Transformation Problems in Composite and Active Materials = Solid Mech Appl Iutam Symposium On Transformation Problems in Composite and Active Materials = Solid. Mech. Appl. Iutam Symposium On Turbulence in The Atmosphere and Oceans = Iutam Bookser Iutam Symposium On Turbulence in The Atmosphere and Oceans = Iutam Bookser. Iutam Symposium On Turbulent Mixing and Combustion = Fluid Mec A Iutam Symposium On Turbulent Mixing and Combustion = Fluid. Mec. A. Iutam Symposium On Turbulent Mixing and Combustion = Fluid Mech Appl Iutam Symposium On Turbulent Mixing and Combustion = Fluid. Mech. Appl. Iutam Symposium On Unilateral Multibody Contacts = Solid Mech Appl Iutam Symposium On Unilateral Multibody Contacts = Solid. Mech. Appl. Iutam Symposium On Unsteady Separated Flows and Their Control = Iutam Bookser Iutam Symposium On Unsteady Separated Flows and Their Control = Iutam Bookser. Iutam Symposium On Variable Density Low-speed Turbulent Flows = Fluid Mec A Iutam Symposium On Variable Density Low-speed Turbulent Flows = Fluid. Mec. A. Iutam Symposium On Variable Density Low-speed Turbulent Flows = Fluid Mech Appl Iutam Symposium On Variable Density Low-speed Turbulent Flows = Fluid. Mech. Appl. Iutam Symposium On Variational Concepts With Applications to The Mechanics of Materials = Iutam Bookser Iutam Symposium On Variational Concepts With Applications to The Mechanics of Materials = Iutam Bookser. Iutam Symposium On Variations of Domain and Free-boundary Problems in Solid Mechanics = Solid Mech Appl Iutam Symposium On Variations of Domain and Free-boundary Problems in Solid Mechanics = Solid Mech. Appl. Iutam Symposium On Vibration Control of Nonlinear Mechanisms and Structures, Proceedings = Solid Mech Appl Iutam Symposium On Vibration Control of Nonlinear Mechanisms and Structures, Proceedings = Solid. Mech. Appl. Iutam Symposium On Waves in Liquid/gas and Liquid/vapour Two-phase Systems = Fluid Mec A Iutam Symposium On Waves in Liquid/gas and Liquid/vapour Two-phase Systems = Fluid. Mec. A. Iv Hotine-marussi Symposium On Mathematical Geodesy = Iag Symp Iv Hotine-marussi Symposium On Mathematical Geodesy = Iag. Symp. Ivhs Journal = Ivhs J Ivhs Journal = Ivhs J. Iv Latin American Congress On Biomedical Engineering 2007, Bioengineering Solutions for Latin America Health, Vols 1 and 2 = Ifmbe Proc Iv Latin American Congress On Biomedical Engineering 2007, Bioengineering Solutions for Latin America Health, Vols 1 and 2 = Ifmbe. Proc. Iv Mexican Meeting On Mathematical and Experimental Physics: Relativistic Fluids and Biological Physics = Aip Conf Proc Iv Mexican Meeting On Mathematical and Experimental Physics: Relativistic Fluids and Biological Physics = Aip. Conf. Proc. Ivra; rivista internazionale di diritto romano e antico = Iura Iv Reunion Sobre Astronomia Dinamica En Latinoamerica (adela 2008) = Rev Mex Ast Astr Iv Reunion Sobre Astronomia Dinamica En Latinoamerica (adela 2008) = Rev. Mex. Ast. Astr. Iv Serbian Conference On Spectral Line Shapes = Pub Astro Obs Belgr Iv Serbian Conference On Spectral Line Shapes = Pub. Astro. Obs. Belgr. Ivsla Series - Veneto Institute of Sciences, Letters and Arts Series = Ivsla Ser Ivsla Series - Veneto Institute of Sciences, Letters and Arts Series = Ivsla Ser. Ivth International Conference On Times of Polymers (top) and Composites = Aip Conf Proc Ivth International Conference On Times of Polymers (top) and Composites = Aip. Conf. Proc. Ivth International Symposium On Horticultural Education, Extension and Training - Proceedings = Acta Hortic Ivth International Symposium On Horticultural Education, Extension and Training - Proceedings = Acta. Hortic. Ivth International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta Hortic Ivth International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta. Hortic. Iwate University = Annual Rep. Fac. Ed. Iwate Univ. Iwpc 2003: 11th Ieee International Workshop On Program Comprehension = Prog Comprehen Iwpc 2003: 11th Ieee International Workshop On Program Comprehension = Prog. Comprehen. Iwpc 2004: 12th Ieee International Workshop On Program Comprehension, Proceedings = Prog Comprehen Iwpc 2004: 12th Ieee International Workshop On Program Comprehension, Proceedings = Prog. Comprehen. Iwqos: 2009 Ieee 17th International Workshop On Quality of Service = Int Worksh Qual Serv Iwqos: 2009 Ieee 17th International Workshop On Quality of Service = Int. Worksh. Qual. Serv. Iwqos '99: 1999 Seventh International Workshop On Quality of Service = Int Worksh Qual Serv Iwqos '99: 1999 Seventh International Workshop On Quality of Service = Int. Worksh. Qual. Serv. Iwsa European Specialized Conference On Atrazine and Other Pesticides = Water Supp Iwsa European Specialized Conference On Atrazine and Other Pesticides = Water. Supp. Iwsa European Specialized Conference On Managing Water Distribution Systems = Water Supp Iwsa European Specialized Conference On Managing Water Distribution Systems = Water Supp. Iwsa European Specialized Conference On Recently Identified Pollutants in Water Resources - Drinking Water Treatment in The Nineties = Water Supp Iwsa European Specialized Conference On Recently Identified Pollutants in Water Resources - Drinking Water Treatment in The Nineties = Water Supp. Iwsa International Specialized Conference On Advanced Treatment and Integrated Water System Management Into The 21st Century, Selected Papers = Water Supp Iwsa International Specialized Conference On Advanced Treatment and Integrated Water System Management Into The 21st Century, Selected Papers = Water Supp. Iwsa International Specialized Conference On Disinfection of Potable Water = Water Supp Iwsa International Specialized Conference On Disinfection of Potable Water = Water Supp. Iwsa International Specialized Conference On Management of Urban Water Supply = Water Supp Iwsa International Specialized Conference On Management of Urban Water Supply = Water Supp. Iwsa International Specialized Conference - The Challenges of The Next 50 Years = Water Supp Iwsa International Specialized Conference - The Challenges of The Next 50 Years = Water. Supp. Iwsa International Workshop On Aluminium in Drinking Water = Water Supp Iwsa International Workshop On Aluminium in Drinking Water = Water Supp. Iwsa International Workshop On Bromates and Water Treatment = Water Supp Iwsa International Workshop On Bromates and Water Treatment = Water Supp. Iwsa International Workshop On Inorganic Nitrogen Compounds and Water Supply = Water Supp Iwsa International Workshop On Inorganic Nitrogen Compounds and Water Supply = Water Supp. Iwsa Regional Conference On Rehabilitation = Water Supp Iwsa Regional Conference On Rehabilitation = Water. Supp. Iwsa Specialised Conference On Organic Micropollutants = Water Supp Iwsa Specialised Conference On Organic Micropollutants = Water. Supp. Iwsa Specialized Conference - New Developments in Modelling, Monitoring and Control of Water Supply Systems = Water Supp Iwsa Specialized Conference - New Developments in Modelling, Monitoring and Control of Water Supply Systems = Water Supp. Iwsa Specialized Conference On Quality Aspects of Water Supply = Water Supp Iwsa Specialized Conference On Quality Aspects of Water Supply = Water Supp. Iwsa Specialized Conference On Water Supply Improvement Through The Broader Use of Instrumentation, Control and Automation = Water Supp Iwsa Specialized Conference On Water Supply Improvement Through The Broader Use of Instrumentation, Control and Automation = Water Supp. Ix Congress of The International Organization for Septuagint and Cognate Studies = Sbl Sept Co Ix Congress of The International Organization for Septuagint and Cognate Studies = Sbl. Sept. Co. Ix Hadron Physics and Vii Relativistic Aspects of Nuclear Physics = Aip Conf Proc Ix Hadron Physics and Vii Relativistic Aspects of Nuclear Physics = Aip. Conf. Proc. Ix International Conference On Quark Confinement and The Hadron Spectrum (qchs Ix) = Aip Conf Proc Ix International Conference On Quark Confinement and The Hadron Spectrum (qchs Ix) = Aip. Conf. Proc. Ix Latin American Regional Meeting of The International-astronomical-union = Rev Mex Ast Astr Ix Latin American Regional Meeting of The International-astronomical-union = Rev. Mex. Ast. Astr. Ix Reunion Regional Latinoamricana De Astronomia Union Astronomica Internacional = Rev Mex Ast Astr Ix Reunion Regional Latinoamricana De Astronomia Union Astronomica Internacional = Rev. Mex. Ast. Astr. Ixth International Asparagus Symposium = Acta Hortic Ixth International Asparagus Symposium = Acta. Hortic. Iyakuhin Kenkyu = Iyakuhin Kenkyu Iyo Denshi to Seitai Kogaku = Iyodenshi To Seitai Kogaku Iyo denshi to seitai kogaku. Japanese journal of medical electronics and biological engineering = Iyodenshi To Seitai Kogaku Iyo Kizai Kenkyujo hokoku. Reports of the Institute for Medical and Dental Engineering, Tokyo Medical and Dental University = Tokyo Ika Shika Daigaku Iyo Kizai Kenkyusho Hokoku Izmeritel'naya Tekhnika = Izmer. Tekh. Izvestiia Akademii nauk Gruzinskoi SSR. Seriia biologicheskaia = Izv Akad Gruz Ssr. Ser Biol Izvestiia Akademii nauk Kirgizskoi SSR. Seriia biologicheskikh nauk = Izv Akad Nauk Kirg Ssr [Biol] Izvestiia Akademii Nauk. Seriia Biologicheskaia=Izv Akad Nauk Ser Biol;; Izvestiia Akademii Nauk. Seriia Biologicheskaia = Izv. Akad. Nauk. Ser. Biol. Izvestiia Akademii nauk. Seriia biologicheskaia / Rossiiskaia akademiia nauk = Izv Akad Nauk Ser Biol Izvestiia Akademii nauk SSSR, Otdelenie khimicheskikh nauk = Izv Akad Nauk Sssr Otdelenie Khim Nauk Izvestiia Akademii nauk SSSR. Seriia biologicheskaia = Izv Akad Nauk SSSR Biol Izvestiia Akademii Nauk SSSR. Seriia Biologicheskaia = Izv. Akad. Nauk SSSR. Biol. Izvestiia Akademii nauk SSSR. Seriia geograficheskaia = Izv Akad Nauk SSSR Ser Geogr Izvestiia. Bulgarska akademiia na naukite, Sofia. Nauchnoizsledovatelski institut za protivorakovi antibiotitsi = Izv Bulg Akad Naukite Sofia Nauchnoizsledovatelski Inst protivorak antibiot Izvestiia na Instituta po fiziologiia = Izv Inst Fiziol (Sofiia) Izvestiia na Instituta po Fiziologiia = Izv. Inst. Fiziol. (Sofiia) Izvestiia na Instituta po istoriia na BKP = Izv Inst Istor BKP Izvestiia na meditsinskite instituti. [Bulletin des instituts de medecine]. Bulgarska akademiia na naukite, Sofia. Otdelenie za biologicheski i meditsinski nauki = Izv Meditsinskite Inst Bulg Akad Naukite Sofia Otd Biol Meditsinski Nauki Izvestiia na Mikrobiologicheskiia institut = Izv Mikrobiol Inst (Sofiia) Izvestiia na Mikrobiologicheskiia Institut = Izv. Mikrobiol. Inst. (Sofiia) Izvestiia Russkogo geograficheskogo obshchestva (1992) = Izv Russ Geogr Obshchestva Izvestiia. Seriia fiziologii i meditsiny. Qazaq SSR Ghylym Akademiiasy = Izv Seriia Fiziol Meditsiny Qazaq SSR Ghylum Akad Izvestiia Vsesoiuznogo geograficheskogo obshchestva. Geograficheskoe obshchestvo SSSR = Izv Vses Geogr Obshchestva Izvestija na Archeologičeskija institut. Bulletin de l’Institut d’archéologie = BIBulg Izvestija na muzeite ot Južna Bălgarija. Bulletin des musées de la Bulgarie du Sud = IzvMuzJuzBalg Izvestija na Narodnija muzej Burgas. Bulletin du Musée national de Bourgas = IzvBurgas Izvestija na Narodnija muzej Varna = IzvVarna Izvestiya, Academy of Sciences, USSR, Atmospheric = Izv. Acad. Sci. USSR, Atmos. Oceanic Phys. Izvestiya Akademii Nauk Azerbaidzhanskoi Ssr Seriya Fiziko-tekhnicheskikh I Matematicheskikh Nauk = Izv An Azerb Ssr Izvestiya Akademii Nauk Azerbaidzhanskoi Ssr Seriya Fiziko-tekhnicheskikh I Matematicheskikh Nauk = Izv. An. Azerb. Ssr Izvestiya Akademii Nauk Fizika Atmosfery I Okeana = Izv An Fiz Atmos Ok+ Izvestiya Akademii Nauk Fizika Atmosfery I Okeana = Izv. An. Fiz. Atmos. Ok+.+ Izvestiya Akademii Nauk Gruzii, Seriya Khimicheskaya = Izv. Akad. Nauk Gruz. SSR, Ser. Khim. Izvestiya Akademii Nauk Respubliki Kazakhstan, Seriya Khimicheskaya = Izv. Akad. Nauk Kaz. SSR, Ser. Khim. Izvestiya Akademii Nauk Seriya Biologicheskaya = Izv Akad Nauk Biol+ Izvestiya Akademii Nauk Seriya Biologicheskaya = Izv. Akad. Nauk Biol+.+ Izvestiya Akademii Nauk Seriya Fizicheskaya = Izv Akad Nauk Fiz+ Izvestiya Akademii Nauk Seriya Fizicheskaya = Izv. Akad. Nauk Fiz+.+ Izvestiya Akademii Nauk, Seriya Fizicheskaya = Izv. Akad. Nauk, Ser. Fiz. Izvestiya Akademii Nauk Seriya Geologicheskaya = Izv Akad Nauk Geol+ Izvestiya Akademii Nauk Seriya Geologicheskaya = Izv. Akad. Nauk Geol+.+ Izvestiya Akademii Nauk, Seriya Geologicheskaya = Izv. Akad. Nauk SSSR, Ser. Geol. Izvestiya Akademii Nauk Sssr Fizika Atmosfery I Okeana = Izv An Sssr Fiz Atm+ Izvestiya Akademii Nauk Sssr Fizika Atmosfery I Okeana = Izv. An. Sssr Fiz. Atm+.+ Izvestiya Akademii Nauk Sssr Fizika Zemli = Izv An Sssr Fiz Zem+ Izvestiya Akademii Nauk Sssr Fizika Zemli = Izv. An. Sssr Fiz. Zem+.+ Izvestiya Akademii Nauk Sssr Seriya Biologicheskaya = Izv An Sssr Biol+ Izvestiya Akademii Nauk Sssr Seriya Biologicheskaya = Izv. An. Sssr Biol+.+ Izvestiya Akademii Nauk Sssr Seriya Fizicheskaya = Izv An Sssr Fiz+ Izvestiya Akademii Nauk Sssr Seriya Fizicheskaya = Izv. An. Sssr Fiz+.+ Izvestiya Akademii Nauk Sssr Seriya Geologicheskaya = Izv An Sssr Geol+ Izvestiya Akademii Nauk Sssr Seriya Geologicheskaya = Izv. An. Sssr Geol+.+ Izvestiya Akademii Nauk Sssr-seriya Khimicheskaya = B Acad Sci Ussr Ch+ Izvestiya Akademii Nauk Sssr-seriya Khimicheskaya = B. Acad. Sci. Ussr. Ch+.+ Izvestiya Atmospheric and Oceanic Physics = Izv. Atmos. Oceanic Phys. Izvestiya Atmospheric and Oceanic Physics = Izv Atmos Ocean Phy+ Izvestiya Atmospheric and Oceanic Physics = Izv. Atmos. Ocean. Phy+.+ Izvestiya, Atmospheric and Oceanic Physics = Izv. Atmos. Ocean. Phys. Izvestiya = Izv. Math. Izvestiya Mathematics = Izv Math+ Izvestiya Mathematics = Izv. Math+.+ Izvestiya Ministerstva Nauki--Akademii Nauk Respubliki Kazakhstan = Izv. Minister. Nauki Akad. Nauk Resp. Kaz. Ser. Fiz.-Mat. Izvestiya Natsional\cprime noy Akademii Nauk Armenii = Izv. Nats. Akad. Nauk Armen. Mekh. Izvestiya Natsional'noi Akademii Nauk Respubliki Kazakhstan, Seriya Khimicheskaya = Izv. Nats. Akad. Nauk Resp. Kaz., Ser. Khim. Izvestiya-physics of The Solid Earth = Izv-phys Solid Eart+ Izvestiya-physics of The Solid Earth = Izv-phys. Solid Eart+.+ Izvestiya Physics of the Solid Earth = Izv. Phys. Solid Earth Izvestiya Rossiiskoi Akademii Nauk, Seriya Fizicheskaya = Izv. Ross. Akad. Nauk, Ser. Fiz. Izvestiya Sibirskogo Otdeleniya Akademii Nauk Sssr Seriya Khimicheskikh Nauk = Izv Sib Otd An Khim+ Izvestiya Sibirskogo Otdeleniya Akademii Nauk Sssr Seriya Khimicheskikh Nauk = Izv. Sib. Otd. An. Khim+.+ Izvestiya Vysshikh Uchebnykh Zavedenii Aviatsionaya Tekhnika = Izv Vuz Aviats Tekh+ Izvestiya Vysshikh Uchebnykh Zavedenii Aviatsionaya Tekhnika = Izv. Vuz. Aviats. Tekh+.+ Izvestiya Vysshikh Uchebnykh Zavedenii, Chernaya Metallurgiya = Izv. Vyssh. Uchebn. Zaved., Chern. Metall. Izvestiya Vysshikh Uchebnykh Zavedenii Fizika = Izv Vuz Fiz+ Izvestiya Vysshikh Uchebnykh Zavedenii Fizika = Izv. Vuz. Fiz+.+ Izvestiya Vysshikh Uchebnykh Zavedenii, Fizika = Izv. Vyssh. Uchebn. Zaved., Fiz. Izvestiya Vysshikh Uchebnykh Zavedenii Khimiya I Khimicheskaya Tekhnologiya = Izv Vuz Khim Kh Tekh Izvestiya Vysshikh Uchebnykh Zavedenii Khimiya I Khimicheskaya Tekhnologiya = Izv. Vuz. Khim. Kh. Tekh. Izvestiya Vysshikh Uchebnykh Zavedenii, Khimiya i Khimicheskaya Tekhnologiya = Izv. Vyssh. Uchebn. Zaved., Khim. Khim. Tekhnol. Izvestiya Vysshikh Uchebnykh Zavedenii Matematika = Izv Vuz Mat+ Izvestiya Vysshikh Uchebnykh Zavedenii Matematika = Izv. Vuz. Mat+.+ Izvestiya Vysshikh Uchebnykh Zavedenii Pishchevaya Tekhnologiya = Izv Vuz Pishch Tekh Izvestiya Vysshikh Uchebnykh Zavedenii Pishchevaya Tekhnologiya = Izv. Vuz. Pishch. Tekh. Izvestiya Vysshikh Uchebnykh Zavedenii Radioelektronika = Izv Vuz Radioelektr+ Izvestiya Vysshikh Uchebnykh Zavedenii Radioelektronika = Izv. Vuz. Radioelektr+.+ Izvestiya Vysshikh Uchebnykh Zavedenii Radiofizika = Izv Vuz Radiofiz+ Izvestiya Vysshikh Uchebnykh Zavedenii Radiofizika = Izv. Vuz. Radiofiz+.+ Izvestiya Vysshikh Uchebnykh Zavedenii, Tsvetnaya Metallurgiya = Izv. Vyssh. Uchebn. Zaved., Tsvetn. Metall. Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Fiz. Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Mat. Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Prikl. Neliney n. Dinamika Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Radiofiz. Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Severo-Kavkaz. Reg. Estestv. Nauk. Izvestiya Vysshikh Uchebnykh Zavedeniy = Izv. Vyssh. Uchebn. Zaved. Sev.-Kavk. Reg. Estestv. Nauki Jaakko Hintikka Selected Papers = Jaakko Hintikka Sel. Pap. JAAMI; journal of the Association for the Advancement of Medical Instrumentation = J Assoc Adv Med Instrum JAAMI; Journal of the Association for the Advancement of Medical Instrumentation = J. Assoc. Adv. Med. Instrum. JAAPA : official journal of the American Academy of Physician Assistants = JAAPA Jaarbericht van het Vooraziatisch-Egyptisch Genootschap Ex Oriente Lux = JEOL Jaarbericht van het Voor-Aziatisch-Egyptisch Genootschap Ex Oriente Lux = JVEG Jaarboek Numaga : gewijd aan heden en verleden van nijmegen en omgeving = Jaarb Numaga Jaarboek van Kankeronderzoek en Kankerbestrijding in Nederland = Jaarb. Kankeronderz. Kankerbestrijd. Ned. Jaarboek van kankeronderzoek en kankerbestrijding in Nederland. Yearbook for cancer research and fight against cancer in the Netherlands = Jaarb Kankeronderz Kankerbestrijd Ned Jaarboek : verslagen en mededelingen der Koninklijke Nederlandse Botanische Vereniging over het jaar ... Koninklijke Nederlandse Botanische Vereniging = Jaarb K Ned Bot Ver Jabega : revista de la Diputacion Provincial de Malaga = Jabega Jábega. Revista de la Disputación provincial de Málaga = Jabega Jacc-cardiovascular Interventions = Jacc-cardiovasc Inte Jacc-cardiovascular Interventions = Jacc-cardiovasc. Inte. JACEP = JACEP Jacep-journal of The American College of Emergency Physicians = Jacep-j Am Coll Emer Jacep-journal of The American College of Emergency Physicians = Jacep-j. Am. Coll. Emer. Jacked Tunnel Design and Construction = Geotech Sp Jacked Tunnel Design and Construction = Geotech. Sp. Jack, Hall-littlewood and Macdonald Polynomials = Contemp Math Jack, Hall-littlewood and Macdonald Polynomials = Contemp. Math. Jackson School Publications in International Studies = J S Pub Int Jackson School Publications in International Studies = J. S. Pub. Int. Jacobs Foundation Series On Adolescence = Jacobs Found Ser Ado Jacobs Foundation Series On Adolescence = Jacobs Found. Ser. Ado. Jacques Lefevre D'etaples 1450?-1536 = Ccc Renaiss Jacques Lefevre D'etaples 1450?-1536 = Ccc. Renaiss. Jaderna Energie = Jad Energ Jaderna Energie = Jad. Energ. Jadranski zbornik. Prilozi za povijest Istre, Rijeke i Hrvatskog primorja = JadrZbor Jagd und Natur = Jagd Nat. Jagellonian University = Acta Phys. Polon. B Jahrbuch. Akademie der Wissenschaften und der Literatur, Mainz = JbAkMainz Jahrbuch der Akademie der Wissenschaften in Göttingen = JbGoett Jahrbuch der Albertus-Universitat zu Konigsberg/Pr = Jahrb Albertus Univ Koenigsb Jahrbuch Der Berliner Museen = Jahrb Berlin Museen Jahrbuch Der Berliner Museen = Jahrb. Berlin. Museen Jahrbuch der Berliner Museen = JbBerlMus Jahrbuch der Berliner Museen = JBerlM Jahrbuch der Coburger Landesstiftung. Coburger Landesstiftung = Jahrb Coburg Landesstift Jahrbuch der Deutschen Luftfahrtforschung = Jahrb. Dtsch. Luftfahrtforsch. Jahrbuch Der Deutschen Schillergesellschaft = Jahrb Deut Schiller Jahrbuch Der Deutschen Schillergesellschaft = Jahrb. Deut. Schiller. Jahrbuch der Geologischen Bundesanstalt = Jahrb. Geol. Bundesanst. Jahrbuch der Hamburger Kunstsammlungen = JbHambKuSamml Jahrbuch der Heidelberger Akad. der Wissenschaften = JHAW Jahrbuch der historischen Forschung in der Bundesrepublik Deutschland = Jahrb Hist Forsch Bundesrepub Dtschl Jahrbuch der Kunsthistorischen Sammlungen in Wien = JbKHSWien Jahrbuch der Österreichischen Byzantinistik = JbOeByz Jahrbuch der Österreichischen Byzantinistik = JöByz Jahrbuch der Preussischen Geologischen Landesanstalt = Jahrb. Preuss. Geol. Landesanst. Jahrbuch der Schlesischen Friedrich-Wilhelms-Universitat zu Breslau = Jahrb Schlesisch Friedrich Wilhelms Univ Breslau Jahrbuch der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = Jahrb. Schweiz. Ges. Ur- Frühgesch. Jahrbuch der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = JbSchwUrgesch Jahrbuch der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = JSGU Jahrbuch der Schweizerischen naturforschenden Gesellschaft = Jahrb. Schweiz. nat.forsch. Ges. Jahrbuch der schweizerischen Wald- und Holzwirtschaft = Jahrb. schweiz. Wald- Holzwirtsch. Jahrbuch der Staatlichen Kunstsammlungen in Baden-Württemberg = JbBadWuert Jahrbuch der St. Gallischen Naturwissenschaftlichen Gesellschaft = Jahrb. St. Gallische Nat.wiss. Ges. Jahrbuch der Universitat Dusseldorf = Jahrb Univ Duesseld Jahrbuch der Versuchs und Lehranstalt fur Brauerei in Berlin = Jahrb. Vers. Lehranst. Brau. Berlin Jahrbuch der Wirtschaft Osteuropas=Jahr. Wirtsch. Osteuropas Jahrbuch des Bernischen Historischen Museums in Bern = JbBernHistMus Jahrbuch des Deutschen Archäologischen Instituts = JDAI Jahrbuch des Deutschen Archäologischen Instituts = JdI Jahrbuch Des Freien Deutschen Hochstifts = Jahrb Frei Deut Hoch Jahrbuch Des Freien Deutschen Hochstifts = Jahrb. Frei. Deut. Hoch. Jahrbuch des Historischen Vereins fur das Furstentum Liechtenstein. Historischer Verein fur das Furstentum Liechtenstein = Jahrb Hist Ver Furst Liechtenstein Jahrbuch des Instituts fur Deutsche Geschichte. Universitat Tel-Aviv. Makhon le-historyah Germanit = Jahrb Inst Dtsch Gesch Jahrbuch des Instituts fur Geschichte der Medizin der Robert Bosch Stiftung = Jahrb Inst Gesch Med Robert Bosch Stift Jahrbuch des Kunsthistorischen Museums Wien = JbKHMWien Jahrbuch des Museums für Kunst und Gewerbe, Hamburg = JbMusKGHamb Jahrbuch des Oberaargaus = Jahrb. Oberaargau Jahrbuch des Oberosterreichischen Musealvereines. Oberosterreichischer Musealverein = Jahrb Oberoesterr Musealver Jahrbuch des Oberösterreichischen Musealvereins = JbMusLinz Jahrbuch des Römisch-Germanischen Zentralmuseums = JRGZ Jahrbuch des Römisch-Germanischen Zentralmuseums Mainz = JbRGZM Jahrbuch des Schweizerischen Wasserwirtschaftsverbandes = Jahrb. Schweiz. Wasserwirtschafts-verb. Jahrbuch des Vereins fur Geschichte der Stadt Wien. Verein fur Geschichte der Stadt Wien = Jahrb Vereins Gesch Stadt Wien Jahrbuch des Vereins zum Schutze der Alpenpflanzen und -Tiere = Jahrb. Ver. Schutz Alp.pflanzen -Tiere Jahrbucher fur Geschichte Osteuropas = Jahrb Gesch Osteur Jahrbucher Fur Geschichte Osteuropas = Jahrb Gesch Osteur Jahrbucher Fur Geschichte Osteuropas = Jahrb. Gesch. Osteur. Jahrbucher fur Nationalokonomie und Statistik = Jahrb Natl Okon Stat Jahrbucher Fur Nationalokonomie Und Statistik = Jahrb Natl Stat Jahrbucher Fur Nationalokonomie Und Statistik = Jahrb. Natl. Stat. Jahrbücher für Nationalökonomie und Statistik=Jahr. Nationalökon. Statist. Jahrbucher fur Wissenschaftliche Botanik = Jahrb. Wiss. Bot. Jahrbuch fur Antike und Christentum = Jahrb Antike Christentum Jahrbuch für Antike und Christentum = JbAC Jahrbuch für Antike und Christentum = JbAC Jahrbuch fur brandenburgische Landesgeschichte = Jahrb Brandenbg Landesgesch Jahrbuch fur Geschichte = Jahrb Gesch Jahrbuch fur Geschichte von Staat, Wirtschaft und Gesellschaft Lateinamerikas = Jahrb Gesch Staat Wirtsch Ges Lateinam Jahrbuch Fur Internationale Germanistik = Jahrb Int German Jahrbuch Fur Internationale Germanistik = Jahrb. Int. German. Jahrbuch fur internationales Recht. German yearbook of international law = Ger Yearb Int Law Jahrbuch für kleinasiatische Forschung = JbKleinasF Jahrbuch fur Landeskunde von Niederosterreich = Jahrb Landeskd Niederosterr Jahrbuch für Naturschutz und Landschaftspflege = Jahrb. Nat.schutz Landsch.pfl. Jahrbuch für Numismatik und Geldgeschichte = JNG Jahrbuch für Numismatik und Geldgeschichte = JNG Jahrbuch für prähistorische und ethnographische Kunst = Ipek Jahrbuch für Regionalwissenschaft=Jahr. Regionalwissen. Jahrbuch fur Sozialwissenschaft = Jahrb Sozialwiss Jahrbuch Fur Sozialwissenschaft = Jahrb Sozialwissensc Jahrbuch Fur Sozialwissenschaft = Jahrb. Sozialwissensc. Jahrbuch Fur Volksliedforschung = Jahrb Volksliedforsc Jahrbuch Fur Volksliedforschung = Jahrb. Volksliedforsc. Jahrbuch fur Wirtschaftsgeschichte = Jahrb Wirtschaftsgesch Jahrbuch für Wirtschaftsgeschichte = JWG Jahrbuch Max Planck Gesellschaft = Jahrb. Max Planck Gesell. Jahrbuch Oberflachentechnik = Jahrb. Oberflachentech. Jahrbuch Preussischer Kulturbesitz = JbPreussKul Jahrbuch Schweizerische Akademie der Naturwissenschaften = Jahrb. Schweiz. Akad. Nat.wiss. Jahrbuch vom Thuner- und Brienzersee = Jahrb. Thuner- Brienzersee Jahrbuch vom Zürichsee = Jahrb. Zür.see Jahresbericht der Archäologischen Bodenforschung des Kantons Basel-Stadt = JberBasel Jahresbericht der Bayerischen Bodendenkmalpflege = JberBayDenkmPfl Jahresbericht der Deutschen Mathematiker-Vereinigung = Jahresber. Deutsch. Math.-Verein. Jahresbericht der Naturforschenden Gesellschaft Graubünden = Jahresber. Nat.forsch. Ges. Graubünden Jahresbericht des Instituts für Vorgeschichte der Universität Frankfurt a. M. = JberVgFrankf Jahresberichte aus Augst und Kaiseraugst = JAK Jahresberichte aus Augst und Kaiseraugst = JberAugst Jahresbericht. Gesellschaft Pro Vindonissa = JberProVindon Jahresbericht Lignum = Jahresber. Lignum Jahresbericht (Schweizerische Akademie der Medizinischen Wissenschaften : 1988) = Jahresber Schweiz Akad Med Wiss Jahresbericht, Schweizerische Akademie der Medizinischen Wissenschaften = Jahresber. Schweiz. Akad. Med. Wiss. Jahresbericht / Schweizerische Akademie Der Medizinischen Wissenschaften=Jahresber Schweiz Akad Med Wiss;; Jahresbericht. Schweizerisches Landesmuseum Zürich = JberZuerich Jahreshefte des Österreichischen Archäologischen Institutes in Wien = OeJh Jahreshefte des Österreichischen Archäologischen Instituts = JöAI Jahreshefte des Vereins für vaterländische Naturkunde in Württemberg = Jahresh. Ver. vaterl. Nat.kd. Württ. Jahresschrift für mitteldeutsche Vorgeschichte = JSchrVgHalle Jahrestagung Kerntechnik 2000 - Annual Meeting On Nuclear Technology 2000 = Jahres Kern Jahrestagung Kerntechnik 2000 - Annual Meeting On Nuclear Technology 2000 = Jahres. Kern. Jahrestagung Kerntechnik = Jahres Kern Jahrestagung Kerntechnik = Jahres. Kern. Jaids-journal of Acquired Immune Deficiency Syndromes = Jaids Jaids-journal of Acquired Immune Deficiency Syndromes = Jaids. Jaids-journal of Acquired Immune Deficiency Syndromes = Jaids-j Acq Imm Def Jaids-journal of Acquired Immune Deficiency Syndromes = Jaids-j. Acq. Imm. Def. Jamaica journal = Jam J Jamaican Nurse = Jamaican Nurse JAMA=JAMA;; JAMA = JAMA Jama-journal of The American Medical Association = Jama-j Am Med Assoc Jama-journal of The American Medical Association = Jama-j. Am. Med. Assoc. JAMA : the journal of the American Medical Association = JAMA JAMA, the Journal of the American Medical Association = JAMA, J. Am. Med. Assoc. James Arthur lecture on the evolution of the human brain = James Arthur Lect James Hutton - Present and Future = Geol Soc Spec Publ James Hutton - Present and Future = Geol. Soc. Spec. Publ. James Joyce quarterly = James Joyce Q James Joyce Quarterly = James Joyce Quart James Joyce Quarterly = James Joyce Quart. Jamming, Yielding, and Irreversible Deformation in Condensed Matter = Lect Notes Phys Jamming, Yielding, and Irreversible Deformation in Condensed Matter = Lect. Notes. Phys. Janac-journal of The Association of Nurses in Aids Care = J Assoc Nurse Aids C Janac-journal of The Association of Nurses in Aids Care = J. Assoc. Nurse. Aids C. Janasamkhya = Janasamkhya Jan Mayen Island in Scientific Focus = Nato Sci S Ss Iv Ear Jan Mayen Island in Scientific Focus = Nato. Sci. S. Ss. Iv. Ear. Janus; revue internationale de l'histoire des sciences, de la medecine, de la pharmacie, et de la technique = Janus Japan Academy = Proc. Japan Acad. Ser. A Math. Sci. Japan After The Economic Miracle = Social Indic Res Japan After The Economic Miracle = Social. Indic. Res. Japan Analyst = Jpn Analyst Japan Analyst = Jpn. Analyst Japan and the world economy = Japan World Econ Japan and the World Economy=Japan World Economy Japan and The World Economy = Jpn World Econ Japan and The World Economy = Jpn. World Econ. Japan Annual Reviews in Electronics Computers & Telecommunications = Jpn Annu Rev Electr Japan Annual Reviews in Electronics Computers & Telecommunications = Jpn. Annu. Rev. Electr. Japan Architect = Jpn Archit Japan Architect = Jpn. Archit. Japan, Asean, and The United States = Res Pap Pol Japan, Asean, and The United States = Res. Pap. Pol. Japanese and Western Bioethics = Philos Med Japanese and Western Bioethics = Philos. Med. Japanese Circulation Journal-english Edition = Jpn Circ J Japanese Circulation Journal-english Edition = Jpn. Circ. J. Japanese circulation journal = Jpn Circ J Japanese Circulation Journal=Jpn Circ J;; Japanese Circulation Journal = Jpn. Circ. J. Japanese Circulation Journal = Jpn Circulation J Japanese Circulation Journal = Jpn. Circulation J. Japanese dental journal = Jpn Dent J Japanese Dental Journal = Jpn. Dent. J. Japanese Economic Review=Japanese Econ. Rev. Japanese Economic Review = Jpn Econ Rev Japanese Economic Review = Jpn. Econ. Rev. Japanese economic studies = Japanese Econ Stud Japanese Economic Studies=Japanese Econ. Stud. Japanese Economic Studies = Jpn Econ Stud Japanese Economic Studies = Jpn. Econ. Stud. Japanese Economy=Japanese Economy Japanese Economy = Jpn Econ Japanese Economy = Jpn. Econ. Japanese Encephalitis and West Nile Viruses = Curr Top Microbiol Japanese Encephalitis and West Nile Viruses = Curr. Top. Microbiol. Japanese Experience With Gamma Knife Radiosurgery = Prog Neurol Japanese Experience With Gamma Knife Radiosurgery = Prog. Neurol. Japanese heart journal = Jpn Heart J Japanese Heart Journal=Jpn Heart J;; Japanese Heart Journal = Jpn Heart J Japanese Heart Journal = Jpn. Heart J. Japanese Information = Vtt Symp Japanese Information = Vtt. Symp. Japanese Journal of Antibiotics=Jpn J Antibiot;; Japanese Journal of Antibiotics = Jpn J Antibiot Japanese Journal of Antibiotics = Jpn. J. Antibiot. Japanese Journal of Applied Entomology and Zoology = Jpn J Appl Entomol Z Japanese Journal of Applied Entomology and Zoology = Jpn. J. Appl. Entomol. Z. Japanese journal of applied physics = Jpn J Appl Phys Japanese Journal of Applied Physics = Jpn J Appl Phys Japanese Journal of Applied Physics = Jpn. J. Appl. Phys. Japanese Journal of Applied Physics Part 1 = Jpn. J. Appl. Phys., Part 1 Japanese Journal of Applied Physics Part 1-regular Papers Brief Communications & Review Papers = Jpn J Appl Phys 1 Japanese Journal of Applied Physics Part 1-regular Papers Brief Communications & Review Papers = Jpn. J. Appl. Phys. 1. Japanese Journal of Applied Physics, Part 1: Regular Papers, Brief Communications & Review Papers = Jpn. J. Appl. Phys., Part 1 Japanese Journal of Applied Physics Part 1-regular Papers Short Notes & Review Papers = Jpn J Appl Phys 1 Japanese Journal of Applied Physics Part 1-regular Papers Short Notes & Review Papers = Jpn. J. Appl. Phys. 1. Japanese Journal of Applied Physics Part 2 = Jpn. J. Appl. Phys., Part 2 Japanese Journal of Applied Physics Part 2-letters & Express Letters = Jpn J Appl Phys 2 Japanese Journal of Applied Physics Part 2-letters & Express Letters = Jpn. J. Appl. Phys. 2. Japanese Journal of Applied Physics, Part 2: Letters & Express Letters = Jpn. J. Appl. Phys., Part 2 Japanese Journal of Applied Physics Part 2-letters = Jpn J Appl Phys 2 Japanese Journal of Applied Physics Part 2-letters = Jpn. J. Appl. Phys. 2. Japanese Journal of Applied Physics, Part II: Letters = Jpn. J. Appl. Phys., Part 2 Japanese Journal of Applied Physics, Part I: Regular Papers and Short Notes = Jpn. J. Appl. Phys., Part 1 Japanese Journal of Botany = Jpn J Bot Japanese Journal of Botany = Jpn. J. Bot. Japanese Journal of Breeding = Jpn J Breed Japanese Journal of Breeding = Jpn. J. Breed. Japanese journal of cancer research : Gann = Jpn J Cancer Res Japanese Journal of Cancer Research=Jpn J Cancer Res;; Japanese Journal of Cancer Research = Jpn J Cancer Res Japanese Journal of Cancer Research = Jpn. J. Cancer Res. Japanese Journal of Child and Adolescent Psychiatry = Jpn J Child Adol Psy Japanese Journal of Child and Adolescent Psychiatry = Jpn. J. Child Adol. Psy. Japanese Journal of Child Psychiatry = Jpn J Child Adol Psy Japanese Journal of Child Psychiatry = Jpn. J. Child Adol. Psy. Japanese Journal of Clinical Medicine = Jpn J Clin Med Japanese Journal of Clinical Medicine = Jpn. J. Clin. Med. Japanese journal of clinical oncology = Jpn J Clin Oncol Japanese Journal of Clinical Oncology=Jpn J Clin Oncol;; Japanese Journal of Clinical Oncology = Jpn J Clin Oncol Japanese Journal of Clinical Oncology = Jpn. J. Clin. Oncol. Japanese Journal of Crop Science = Jpn J Crop Sci Japanese Journal of Crop Science = Jpn. J. Crop Sci. Japanese Journal of Dermatology: Series B = Jpn. J. Dermatol. B Japanese Journal of Educational Psychology = Jpn J Educ Psychol Japanese Journal of Educational Psychology = Jpn. J. Educ. Psychol. Japanese Journal of Experimental Medicine = Jpn J Exp Med Japanese Journal of Experimental Medicine = Jpn. J. Exp. Med. Japanese Journal of Fuzzy Theory and Systems = Japanese J. Fuzzy Theory Systems Japanese journal of gastroenterology = Jpn J Gastroenterol Japanese Journal of Genetics = Jpn J Genet Japanese Journal of Genetics = Jpn. J. Genet. Japanese Journal of Geriatrics = Jpn J Geriatr Japanese Journal of Geriatrics = Jpn. J. Geriatr. Japanese Journal of Human Genetics = Jpn J Hum Genet Japanese Journal of Human Genetics = Jpn. J. Hum. Genet. Japanese Journal of Ichthyology = Jpn J Ichthyol Japanese Journal of Ichthyology = Jpn. J. Ichthyol. Japanese Journal of Industrial Health = Jpn J Ind Health Japanese Journal of Industrial Health = Jpn. J. Ind. Health Japanese journal of infectious diseases = Jpn J Infect Dis Japanese Journal of Infectious Diseases = Jpn J Infect Dis Japanese Journal of Infectious Diseases = Jpn. J. Infect. Dis. Japanese Journal of Mathematics = Japan. J. Math. (N.S.) Japanese Journal of Mathematics = Jap J Math Japanese Journal of Mathematics = Jap. J. Math. Japanese Journal of Mathematics = Jpn J Math Japanese Journal of Mathematics = Jpn. J. Math. Japanese Journal of Medical Science and Biology=Jpn J Med Sci Biol;; Japanese Journal of Medical Science and Biology = Jpn. J. Med. Sci. Biol. Japanese journal of medical science & biology = Jpn J Med Sci Biol Japanese Journal of Medical Science & Biology = Jpn J Med Sci Biol Japanese Journal of Medical Science & Biology = Jpn. J. Med. Sci. Biol. Japanese journal of medicine = Jpn J Med Japanese Journal of Medicine = Jpn J Med Japanese Journal of Medicine = Jpn. J. Med. Japanese journal of microbiology = Jpn J Microbiol Japanese Journal of Microbiology = Jpn J Microbiol Japanese Journal of Microbiology = Jpn. J. Microbiol. Japanese Journal of Nephrology = Jpn J Nephrol Japanese Journal of Nephrology = Jpn. J. Nephrol. Japanese Journal of Neuropsychopharmacology = Jpn J Neuropsychoph Japanese Journal of Neuropsychopharmacology = Jpn. J. Neuropsychoph. Japanese journal of ophthalmology = Jpn J Ophthalmol Japanese Journal of Ophthalmology=Jpn J Ophthalmol;; Japanese Journal of Ophthalmology = Jpn J Ophthalmol Japanese Journal of Ophthalmology = Jpn. J. Ophthalmol. Japanese journal of pharmacology = Jpn J Pharmacol Japanese Journal of Pharmacology=Jpn J Pharmacol;; Japanese Journal of Pharmacology = Jpn J Pharmacol Japanese Journal of Pharmacology = Jpn. J. Pharmacol. Japanese Journal of Phycology = Jpn. J. Phycol. Japanese Journal of Physical Fitness and Sports Medicine = Jpn J Phys Fit Sport Japanese Journal of Physical Fitness and Sports Medicine = Jpn. J. Phys. Fit. Sport. Japanese Journal of Physiology=Jpn J Physiol;; Japanese Journal of Physiology = Jpn J Physiol Japanese Journal of Physiology = Jpn. J. Physiol. Japanese Journal of Political Science = Jpn J Polit Sci Japanese Journal of Political Science = Jpn. J. Polit. Sci. Japanese Journal of Psychiatry and Neurology = Jpn J Psychiat Neur Japanese Journal of Psychiatry and Neurology = Jpn. J. Psychiat. Neur. Japanese Journal of Psychiatry and Neurology = Jpn. J. Psychiatry Neurol. Japanese Journal of Psychology = Jpn J Psychol Japanese Journal of Psychology = Jpn. J. Psychol. Japanese Journal of Radiology = Jpn J Radiol Japanese Journal of Radiology = Jpn. J. Radiol. Japanese Journal of Religious Studies = Jpn J Relig Stud Japanese Journal of Religious Studies = Jpn. J. Relig. Stud. Japanese Journal of Surgery = Jpn J Surg Japanese Journal of Surgery = Jpn. J. Surg. Japanese Journal of Thoracic and Cardiovascular Surgery = Jpn. J. Thorac. Cardiovasc. Surg. Japanese Journal of Thoracic Surgery = Jpn J Thorac Surg Japanese Journal of Thoracic Surgery = Jpn. J. Thorac. Surg. Japanese Journal of Toxicology and Environmental Health = Jpn J Tox Env Health Japanese Journal of Toxicology and Environmental Health = Jpn. J. Tox. Env. Health Japanese Journal of toxicology and Environment health = Jpn. J. Toxicol. Environ. Health Japanese Journal of Transplantation = Jpn J Transplant Japanese Journal of Transplantation = Jpn. J. Transplant. Japanese Journal of Tropical Agriculture = Jpn J Trop Agr Japanese Journal of Tropical Agriculture = Jpn. J. Trop. Agr. Japanese Journal of Tuberculosis and Chest Diseases = Jpn. J. Tuberc. Chest Dis. Japanese Journal of Tuberculosis = Jpn. J. Tuberc. Japanese Journal of Urology = Jpn J Urol Japanese Journal of Urology = Jpn. J. Urol. Japanese Journal of Veterinary Research=Jpn J Vet Res;; Japanese Journal of Veterinary Research = Jpn J Vet Res Japanese Journal of Veterinary Research = Jpn. J. Vet. Res. Japanese Journal of Veterinary Science = Jpn J Vet Sci Japanese Journal of Veterinary Science = Jpn. J. Vet. Sci. Japanese Journal of Zoology = Jpn J Zool Japanese Journal of Zoology = Jpn. J. Zool. Japanese medical journal = Jpn Med J (Natl Inst Health Jpn) Japanese Monetary Policy = Nat Bur Ec Japanese Monetary Policy = Nat. Bur. Ec. Japanese Psychological Research = Jpn Psychol Res Japanese Psychological Research = Jpn. Psychol. Res. Japanese studies in the history of science = Jpn Stud Hist Sci Japanese Studies - Yearbook of The Deutschen Institut Fur Japanstudien Der Philipp-franz-von-siebold Stiftung = Japanstudien Japanese Studies - Yearbook of The Deutschen Instituts Fur Japanstudien Der Philipp-franz-von-siebold-stiftung = Japanstudien Japanese Theatre and The International Stage = Brl Japan Stud Lib Japanese Theatre and The International Stage = Brl. Japan. Stud. Lib. Japan-Hospitals = Jpn. Hosp. Japan-hospitals : the journal of the Japan Hospital Association = Jpn Hosp Japan Interpreter = Jpn Interpreter Japan Interpreter = Jpn. Interpreter Japan Journal of Industral and Applied Mathematics = Jpn. J. Ind. Appl. Math. Japan Journal of Industrial and Applied Mathematics = Japan J. Indust. Appl. Math. Japan Journal of Industrial and Applied Mathematics = Jpn J Ind Appl Math Japan Journal of Industrial and Applied Mathematics = Jpn. J. Ind. Appl. Math. Japan Journal of Nursing Science = Jpn J Nurs Sci Japan Journal of Nursing Science = Jpn. J. Nurs. Sci. Japan quarterly (Asahi Shinbunsha) = Jpn Q Japan Quarterly = Jpn Quart Japan Quarterly = Jpn. Quart. Japan Research Quarterly=Japan Res. Quart. Japan Society of Fluid Mechanics = Fluid Dynam. Res. Japan Society of Mechanical Engineers International Journal Series A: Solid Mechanics and Material Engineering = J. Soc. Mech. Eng. Int. J. Ser.A: Japan Society of Mechanical Engineers International Journal Series B: Fluids and Thermal Engineering = J. Soc. Mech. Eng. Int. J. Ser.B: Japan Society of Mechanical Engineers International Journal Series C: Mechanical Systems, Machine Elements and Manufacturing = J. Soc. Mech. Eng. Int. J. Ser.C: Japan Telecommunications Review = Jpn Telecommun Rev Japan Telecommunications Review = Jpn. Telecommun. Rev. JAPCA = JAPCA Japca-the International Journal of Air Pollution Control and Hazardous Waste Management = Japca J Air Waste Ma Japca-the International Journal of Air Pollution Control and Hazardous Waste Management = Japca. J. Air Waste Ma. Japca-the Journal of The Air & Waste Management Association = Japca J Air Waste Ma Japca-the Journal of The Air & Waste Management Association = Japca. J. Air Waste Ma. Jaro = Jaro Jaro-journal of The Association for Research in Otolaryngology = Jaro Jaro-journal of The Association for Research in Otolaryngology = Jaro. Jaro-journal of The Association for Research in Otolaryngology = Jaro-j Assoc Res Oto Jaro-journal of The Association for Research in Otolaryngology = Jaro-j. Assoc. Res. Oto. Jarq-japan Agricultural Research Quarterly = Jarq-jpn Agr Res Q Jarq-japan Agricultural Research Quarterly = Jarq-jpn. Agr. Res. Q. Jassa-the Finsia Journal of Applied Finance = Jassa Jassa-the Finsia Journal of Applied Finance = Jassa. Jasss-the Journal of Artificial Societies and Social Simulation = Jasss Jasss-the Journal of Artificial Societies and Social Simulation = Jasss. Jasss-the Journal of Artificial Societies and Social Simulation = Jasss-j Artif Soc S Jasss-the Journal of Artificial Societies and Social Simulation = Jasss-j. Artif. Soc. S. Java/jini Technologies and High-performance Pervasive Computing = P Soc Photo-opt Ins Java/jini Technologies and High-performance Pervasive Computing = P. Soc. Photo-opt. Ins. Java/jini Technologies = P Soc Photo-opt Ins Java/jini Technologies = P. Soc. Photo-opt. Ins. Java On Smart Cards: Programming and Security = Lect Notes Comput Sc Java On Smart Cards: Programming and Security = Lect. Notes. Comput. Sc. Javma-journal of The American Veterinary Medical Association = Javma-j Am Vet Med A Javma-journal of The American Veterinary Medical Association = Javma-j. Am. Vet. Med. A. Javnost-the Public = Javnost-public Javnost-the Public = Javnost-public. JBIC, Journal of Biological Inorganic Chemistry = JBIC, J. Biol. Inorg. Chem. Jbis-journal of The British Interplanetary Society = Jbis-j Brit Interpla Jbis-journal of The British Interplanetary Society = Jbis-j. Brit. Interpla. Jbr-btr = Jbr-btr JBR-BTR = JBR-BTR JCAH Perspectives = JCAH Perspect. JCAH perspectives. Joint Commission on Accreditation of Hospitals = JCAH Perspect JCCA. Journal of the Canadian Chiropractic Association. Journal de l'Association chiropratique canadienne = JCCA J Can Chiropr Assoc Jcms-journal of Common Market Studies = Jcms-j Common Mark S Jcms-journal of Common Market Studies = Jcms-j. Common Mark. S. Jcpsp-journal of The College of Physicians and Surgeons Pakistan = Jcpsp-j Coll Physici Jcpsp-journal of The College of Physicians and Surgeons Pakistan = Jcpsp-j. Coll. Physici. Jcr-journal of Clinical Rheumatology = Jcr-j Clin Rheumatol Jcr-journal of Clinical Rheumatology = Jcr-j. Clin. Rheumatol. Jcss Study = Jcss Study Jct Coatingstech = Jct Coatingstech Jct Research = Jct Res Jct Research = Jct Res. JCT Research = JCT Res. J. D. Beazley, Attic Black-figure Vase-painters (Oxford 1956) = ABV J. D. Beazley, Attic Red-figure Vase-painters \textsuperscript{2}(Oxford 1963) = ARV2 J. D. Beazley, Etruscan Vase Painting (Oxford 1947) = EVP J. D. Beazley, Paralipomena. Additions to Attic Black-figure Vase-painters and to Attic Red-figure Vase-painters (Oxford 1971) = BeazleyPara. Jean Leray '99 Conference Proceedings = Math Phys S Jean Leray '99 Conference Proceedings = Math. Phys. S. Jean Piaget Symposium Series = J Piaget Sy Jean Piaget Symposium Series = J. Piaget Sy. Jednota annual Furdek = Jednota Annu Furdek Jeffersonian America = Jeffersonian Amer Jeffersonian America = Jeffersonian Amer. Jemf Quarterly = Jemf Quart Jemf Quarterly = Jemf Quart. JEMS : a journal of emergency medical services = JEMS Jems-journal of Emergency Medical Services = Jems-j Emerg Med Ser Jems-journal of Emergency Medical Services = Jems-j. Emerg. Med. Ser. Jenam 2001: Astronomy With Large Telescopes From Ground and Space = Rev Mod Astron Jenam 2001: Astronomy With Large Telescopes From Ground and Space = Rev. Mod. Astron. Jernkontorets Annaler = Jka-jernkontoret Ann Jernkontorets Annaler = Jka-jernkontoret. Ann. Jerusalem Studies in Religion and Culture = Jerusalem Stud Rel C Jerusalem Studies in Religion and Culture = Jerusalem Stud. Rel. C. Jerusalem Symposia On Quantum Chemistry and Biochemistry = Jerus Sym Q Jerusalem Symposia On Quantum Chemistry and Biochemistry = Jerus. Sym. Q. Jerusalem Winter School for Theoretical Physics = Jer Win Sch Jerusalem Winter School for Theoretical Physics = Jer. Win. Sch. Jet Cutting Technology = Fluid Mec A Jet Cutting Technology = Fluid. Mec. A. Jetp Letters = Jetp Lett+ Jetp Letters = Jetp Lett+.+ JETP Letters = JETP Lett. JETP Letters = JETP Lett. Jetp Letters-ussr = Jetp Lett-ussr Jetp Letters-ussr = Jetp Lett-ussr. Jet Propulsion = Jet Propulsion Jets From Stars and Galactic Nuclei = Lect Notes Phys Jets From Stars and Galactic Nuclei = Lect. Notes. Phys. Jets From Young Stars Iii: Numerical Mhd and Instabilities = Lect Notes Phys Jets From Young Stars Iii: Numerical Mhd and Instabilities = Lect. Notes. Phys. Jets From Young Stars: Models and Constraints = Lect Notes Phys Jets From Young Stars: Models and Constraints = Lect. Notes. Phys. Jeune Afrique (Paris, France : 1980) = Jeune Afr Jewellery Studies = JewelSt Jewish affairs = Jew Aff Jewish Art = Jewish Art Jewish Assimilation, Acculturation and Accommodation : Past Traditions, Current Issues and Future Prospects = St Jew Civ Jewish Assimilation, Acculturation and Accommodation : Past Traditions, Current Issues and Future Prospects = St. Jew. Civ. Jewish Business Ethics = Orthodox Forum Ser Jewish Business Ethics = Orthodox. Forum. Ser. Jewish Culture and Society Under The Christian Roman Empire = Int Stud Ancient Cul Jewish Culture and Society Under The Christian Roman Empire = Int. Stud. Ancient. Cul. Jewish historical studies : transactions of the Jewish Historical Society of England = Trans Jew Hist Soc Engl Jewish History = Jew Hist Jewish History = Jew. Hist. Jewish Journal of Sociology = Jewish J Sociol Jewish Journal of Sociology = Jewish J. Sociol. Jewish Journal Of Sociology = Jew J Sociol Jewish Language Review = Jewish Lang Rev Jewish Language Review = Jewish Lang. Rev. Jewish Law Association : Papers and Proceedings = Jew Law A P Jewish Law Association : Papers and Proceedings = Jew. Law A. P. Jewish Law Association Studies Vi = Jew Law A P Jewish Law Association Studies Vi = Jew. Law A. P. Jewish Law Association Studies Xi: The London 1996 Conference Volume = Jew Law A P Jewish Law Association Studies Xi: The London 1996 Conference Volume = Jew. Law A. P. Jewish life (Union of Orthodox Jewish Congregations of America : 1975) = Jew Life Jewish Literature and Culture = Jew Lit Cult Jewish Literature and Culture = Jew. Lit. Cult. Jewish observer and Middle East review = Jew Obs Middle East Rev Jewish Quarterly Review = Jewish Quart Rev Jewish Quarterly Review = Jewish Quart. Rev. Jewish quarterly review (Philadelphia, Pa.) = Jew Q Rev Jewish Reception of Heinrich Heine = Condit Jud Jewish Reception of Heinrich Heine = Condit. Jud. Jewish Roots of Christological Monotheism = Supp J Stud Judaism Jewish Roots of Christological Monotheism = Supp. J. Stud. Judaism. Jewish Self-perception = Condit Jud Jewish Self-perception = Condit. Jud. Jewish Social Studies = Jewish Soc Stud Jewish Social Studies = Jewish Soc. Stud. Jewish social studies = Jew Soc Stud Jewish Studies and The European Academic World = Collect Revue Etudes Jewish Studies and The European Academic World = Collect. Revue. Etudes. Jews, Antiquity, and The Nineteenth-century Imagination = Stud Text Jew Hist Jews, Antiquity, and The Nineteenth-century Imagination = Stud. Text. Jew. Hist. Jews in Cordoba X-xii Centuries = St Hebrew C Jews in Cordoba X-xii Centuries = St. Hebrew. C. Jews of Italy: Memory and Identity = Stud Text Jew Hist Jews of Italy: Memory and Identity = Stud. Text. Jew. Hist. Jews of Poland Between Two World Wars = Taub Inst Jews of Poland Between Two World Wars = Taub. Inst. Jezikoslovlje = Jezikoslovlje Jfcc Workshop Series : Materials Processing and Design = Jfcc Ws Mat Jfcc Workshop Series : Materials Processing and Design = Jfcc Ws. Mat. JFE Journal du Four Electrique & des Industries Electrochimiques = JFE J. Four Electr. Ind. Electrochim. JFE Journal du Four Electrique = JFE J. Four Electr. JFMA; Journal of the Florida Medical Association = JFMA. JFMA, the Journal of the Florida Medical Association. Florida Medical Association = JFMA JFORL. Journal francais d'oto-rhino-laryngologie; audiophonologie et chirurgie maxillo-faciale = JFORL J Fr Otorhinolaryngol Audiophonol Chir Maxillofac JFORL; Journal Francais d'Oto-Rhino Laryngologie, Audiophonologie et Chirurgie Maxillo-Faciale = JFORL J. Fr. Otorhinolaryngol. Audiophonol. Chir. Maxillofac. Jforl-journal Francais D Oto-rhino Laryngologie = J Fr Otorhinolaryng Jforl-journal Francais D Oto-rhino Laryngologie = J. Fr. Otorhinolaryng. Jiangsu nong ye ke xue = Jiangsu nongye kexue / Jiangsu sheng nong ye ke xue yuan bian|Jiangsu Nong Ye Ke Xue Jiangxi yixueyuan xuebao = Acta academiae medicinae jiangxi|Jiangxi Yixueyuan Xuebao Jian kang bao = Jian Kang Bao Jibiinkoka = Jibiinkoka Jibi inkoka Otolaryngology = Jibiinkoka JICA newsletter = JICA Newsl Jie fang jun yi xue za zhi. [Liberation army medical journal] = Chieh Fang Chun I Hsueh Tsa Chih Jiegou Huaxue = Jiegou Huaxue Jikeikai medical journal = Jikeikai Med J Jikeikai Medical Journal = Jikeikai Med. J. Jikken dobutsu. Experimental animals = Jikken Dobutsu Jikken Dobutsu (Experimental Animals) = Jikken Dobutsu Jilin nong ye da xue xue bao = Acta agriculturae universitatis jilinensis|Jilin Nong Ye Da Xue Xue Bao Jimlar mutane = Jimlar Mutane Jinbun (Nihon Jinbun Kagakkai) = Zinbun Jing ji lun wen = Jing Ji Lun Wen Jinkogaku kenkyu / Nihon Jinko Gakkai henshu = Jinkogaku Kenkyu Jinko mondai kenkyu. [Journal of population problems] = Jinko Mondai Kenkyu Jinruigaku zasshi. The Journal of the Anthropological Society of Nippon = Jinruigaku Zasshi Jinrui Idengaku Zasshi = Jinrui Idengaku Zasshi Jinrui idengaku zasshi. The Japanese journal of human genetics = Jinrui Idengaku Zasshi Jinshu Rechuli = Jinshu Rechuli Jinshu Xuebao = Jinshu Xuebao Ji Sheng Chong Xue Yu Ji Sheng Chong Bing Za Zhi (Journal of Parasitology and Parasitic Diseases) = Ji Sheng Chong Xue Yu Ji Sheng Chong Bing Za Zhi Jishou University = J. Jishou Univ. Nat. Sci. Ed. Jisuanji Yu Yingyong Huaxue = Jisuanji Yu Yingyong Huaxue Jjap Series = Jjap Series J Journal of Agricultural Safety and Health = J. Agric. Saf. Health J = J.UCS Jka-jernkontorets Annaler = Jka-jernkontoret Ann Jka-jernkontorets Annaler = Jka-jernkontoret. Ann. JK practitioner : a journal of current clinical medicine & surgery = JK Pract Jmri-journal of Magnetic Resonance Imaging = Jmri-j Magn Reson Im Jmri-journal of Magnetic Resonance Imaging = Jmri-j. Magn. Reson. Im. JMR, Journal of marketing research = J Mark Res JNMA; journal of the Nepal Medical Association = JNMA J Nepal Med Assoc Jnms-journal of The Neuromusculoskeletal System = Jnms-j Neuromusc Sys Jnms-journal of The Neuromusculoskeletal System = Jnms-j. Neuromusc. Sys. Jnt-journal of Narrative Theory = J Narrative Theory Jnt-journal of Narrative Theory = J. Narrative Theory JNUL Publications = JNUL Publ. Job Creation and Labour Law: From Protection Towards Pro-action = Stud Emp Soc Policy Job Creation and Labour Law: From Protection Towards Pro-action = Stud. Emp. Soc. Policy. Job Scheduling Strategies for Parallel Processing = Lect Notes Comput Sc Job Scheduling Strategies for Parallel Processing = Lect. Notes. Comput. Sc. Job Scheduling Strategies for Parallel Processing, Proceedings = Lect Notes Comput Sc Job Scheduling Strategies for Parallel Processing, Proceedings = Lect. Notes. Comput. Sc. Jocca-surface Coatings International = Jocca-surf Coat Int Jocca-surface Coatings International = Jocca-surf. Coat. Int. Joensuun Yliopiston Luonnontieteellisiä Julkaisuja = Joensuun Yliop. Luonnont. Julk. Jognn-journal of Obstetric Gynecologic and Neonatal Nursing = Jognn Jognn-journal of Obstetric Gynecologic and Neonatal Nursing = Jognn. Jognn-journal of Obstetric Gynecologic and Neonatal Nursing = Jognn-j Obst Gyn Neo Jognn-journal of Obstetric Gynecologic and Neonatal Nursing = Jognn-j. Obst. Gyn. Neo. JOGN Nursing = JOGN Nurs. JOGN nursing; journal of obstetric, gynecologic, and neonatal nursing = JOGN Nurs John Albert Hall Lecture Series = Jah Lec Series John Albert Hall Lecture Series = Jah. Lec. Series John and The Synoptics = Bib Eph The John and The Synoptics = Bib. Eph. The John D and Catherine T Macarthur Foundation Series On Mental Health and Development = Mac Fdn Men John D and Catherine T Macarthur Foundation Series On Mental Health and Development = Mac. Fdn. Men. John D and Catherine T Macarthur Foundation Series On Mental Health and Human Development = Mac Fdn Men John D and Catherine T Macarthur Foundation Series On Mental Health and Human Development = Mac. Fdn. Men. John Desmond Bernal: Science and Society = J Phys Conf Ser John Desmond Bernal: Science and Society = J. Phys. Conf. Ser. John Deutsch Roundtable On Economic Policy = John Deu Rt Econ Pol John Deutsch Roundtable On Economic Policy = John Deu. Rt. Econ. Pol. John Duns Scotus = St Text Gei John Duns Scotus = St. Text. Gei. John F. Kennedy Student Paper Competition and Specialty Seminar Summaries = Water Chang Glob Com John F. Kennedy Student Paper Competition and Specialty Seminar Summaries = Water. Chang. Glob. Com. John Gower : Recent Readings = St Mediev C John Gower : Recent Readings = St. Mediev. C. John Henry Newman = Garl Rl Hum John Henry Newman = Garl. Rl. Hum. John Innes Symposia = John Inn S John Innes Symposia = John Inn. S. John Knox and The British Reformations = St Andr St Reformat John Knox and The British Reformations = St. Andr. St. Reformat. John L. Junkins Astrodynamics Symposium = Adv Astronaut Sci John L. Junkins Astrodynamics Symposium = Adv. Astronaut. Sci. John of The Cross: Conferences and Essays By Members of The Institute of Carmelite Studies and Others = Carmelit Stud John of The Cross: Conferences and Essays By Members of The Institute of Carmelite Studies and Others = Carmelit. Stud. Johns Hopkins Apl Technical Digest = J Hopkins Apl Tech D Johns Hopkins Apl Technical Digest = J. Hopkins Apl Tech. D. Johns Hopkins magazine = Johns Hopkins Mag Johns Hopkins Medical Journal = Johns Hopkins Med J Johns Hopkins Medical Journal = Johns Hopkins Med. J. Johns Hopkins medical journal. Supplement = Johns Hopkins Med J Suppl Johns Hopkins Medical Journal. Supplement = Johns Hopkins Med. J. Suppl. Johns Hopkins Medical Letter, Health After 50 = Johns Hopkins Med. Lett. Health After 50 Johns Hopkins Nurses Alumni Magazine = Johns Hopkins Nurses Alumni Mag. Johns Hopkins Series in Contemporary Medicine and Public Health = Jh S Cont M Johns Hopkins Series in Contemporary Medicine and Public Health = Jh. S. Cont. M. Johns Hopkins Studies in Earth and Space Sciences = Jh St Ear S Johns Hopkins Studies in Earth and Space Sciences = Jh. St. Ear. S. Johns Hopkins Studies in the Mathematical Sciences = Johns Hopkins Stud. Math. Sci. Johns Hopkins Symposia in Comparative History = Jh Comp His Johns Hopkins Symposia in Comparative History = Jh. Comp. His. Johns Hopkins Workshop Proceedings = Johns Hop W Johns Hopkins Workshop Proceedings = Johns Hop. W. Johnson & Johnson Consumer Products, Inc Pediatric Round Table Series = J&j Cons Pr Johnson & Johnson Consumer Products, Inc Pediatric Round Table Series = J&j. Cons. Pr. Joicfp News = JOICFP News JOICFP review = JOICFP Rev Joining and Adhesion of Advanced Inorganic Materials = Mater Res Soc Symp P Joining and Adhesion of Advanced Inorganic Materials = Mater. Res. Soc. Symp. P. Joining Society: Social Interaction and Learning in Adolescence and Youth = Jacobs Found Ser Ado Joining Society: Social Interaction and Learning in Adolescence and Youth = Jacobs. Found. Ser. Ado. Joint Bone Spine = Joint Bone Spine Joint, Bone, Spine = Joint Bone Spine Joint, bone, spine : revue du rhumatisme = Joint Bone Spine Joint Commission journal on quality and patient safety / Joint Commission Resources = Jt Comm J Qual Patient Saf Joint Commission Journal on Quality and Patient Safety = Jt. Comm. J. Qual. Patient Saf. Joint Commission journal on quality and safety = Jt Comm J Qual Saf Joint Commission Journal On Quality Improvement = Joint Comm J Qual Im Joint Commission Journal On Quality Improvement = Joint Comm. J. Qual. Im. Joint Commission Journal on Quality Improvement=Jt Comm J Qual Improv;; Joint Commission Journal on Quality Improvement = Jt. Comm. J. Qual. Improv. Joint Commission perspectives. Joint Commission on Accreditation of Healthcare Organizations = Jt Comm Perspect Joint Commission Perspectives = Jt. Comm. Perspect. Joint Evolution of Black Holes and Galaxies = Ser Hi Energy Phys Joint Evolution of Black Holes and Galaxies = Ser. Hi. Energy. Phys. Joint International Conference Imeko Tc3/tc5/tc20 = Vdi Bericht Joint International Conference Imeko Tc3/tc5/tc20 = Vdi. Bericht. Joint International Symposium On Optical Memory and Optical Data Storage 1999 = P Soc Photo-opt Ins Joint International Symposium On Optical Memory and Optical Data Storage 1999 = P. Soc. Photo-opt. Ins. Joint Plant Breeding Symposia Series = Joint Plant Breed S Joint Plant Breeding Symposia Series = Joint Plant Breed. S. Joint Soviet-american Workshop On The Physics of Semiconductor Lasers = Aip Conf Proc Joint Soviet-american Workshop On The Physics of Semiconductor Lasers = Aip. Conf. Proc. Joint Ventures in East Asia = Int Bar Ass Joint Ventures in East Asia = Int. Bar. Ass. Jokull = Jokull Jom = Jom-us Jom = Jom-us. Jom-journal of Metals = Jom-j Met Jom-journal of Metals = Jom-j. Met. JOM Journal of the Minerals Metals and Materials Society = JOM Jom-journal of The Minerals Metals & Materials Society = Jom-j Min Met Mat S Jom-journal of The Minerals Metals & Materials Society = Jom-j. Min. Met. Mat. S. JONA'S healthcare law, ethics and regulation = JONAS Healthc Law Ethics Regul Jones and Bartlett Books in Mathematics and Computer Science = Jones Bartlett Books Math. Comput. Sci. Joop-journal of Object-oriented Programming = Joop Joop-journal of Object-oriented Programming = Joop. JOP = JOP JOP : Journal of the pancreas = JOP Jordan Dental Journal = Jordan Dent. J. Jordan Journal of Chemistry = Jordan J. Chem. Jordemodern = Jordemodern Jordmorbladet : bilag til tidsskriftet Sykepleien = Jordmorbladet Jordmorbladet = Jordmorbladet Jornal brasileiro de doencas toracicas = J Bras Doencas Torac Jornal Brasileiro de Doencas Toracicas = J. Bras. Doencas Torac. Jornal brasileiro de ginecologia = J Bras Ginecol Jornal brasileiro de medicina = J Bras Med Jornal brasileiro de neurologia = J Bras Neurol Jornal Brasileiro De Pneumologia = J Bras Pneumol Jornal Brasileiro De Pneumologia = J. Bras. Pneumol. Jornal brasileiro de pneumologia : publicacao oficial da Sociedade Brasileira de Pneumologia e Tisilogia = J Bras Pneumol Jornal brasileiro de psiquiatria = J Bras Psiquiatr Jornal Brasileiro de Psiquiatria = J. Bras. Psiquiatr. Jornal da Sociedade das Ciencias Medicas de Lisboa = J Soc Cienc Med Lisb Jornal da Sociedade das Ciencias Medicas de Lisboa = J. Soc. Cienc. Med. Lisb. Jornal de historia da medicina = J Hist Med Jornal de medicina de Pernambuco = J Med Pernamb Jornal De Pediatria = J Pediat Jornal De Pediatria = J. Pediat. Jornal De Pediatria = J Pediat-brazil Jornal De Pediatria = J. Pediat-brazil. Jornal de pediatria = J Pediatr (Rio J) Jornal de Pediatria = J. Pediatr. (Rio J.) Jornal de psicologia = J Psicol Jornal do medico = J Med (Oporto) Jornal do Medico = J. Med. (Oporto) Josai Shika Daigaku Kiyo (Bulletin of the Josai Dental University) = Josai Shika Daigaku Kiyo Josai Shika Daigaku kiyo. The Bulletin of the Josai Dental University = Josai Shika Daigaku Kiyo Josanpu Zasshi (Japanese Journal for Midwives) = Josanpu Zasshi Joseph Conrad: East European, Polish and Worldwide = E Europ M Joseph Conrad: East European, Polish and Worldwide = E. Europ. M. Josephus and Jewish History in Flavian Rome and Beyond = Supp J Stud Judaism Josephus and Jewish History in Flavian Rome and Beyond = Supp. J. Stud. Judaism. Josephus and The History of The Greco-roman Period = Stud Post Bibl Josephus and The History of The Greco-roman Period = Stud. Post. Bibl. Jossey-bass Education Series = Jos-bas Edc Jossey-bass Education Series = Jos-bas. Edc. Jossey-bass Higher Education Series = Jos-bas Hig Jossey-bass Higher Education Series = Jos-bas. Hig. Jossey-bass Management Series = Jos-bas Man Jossey-bass Management Series = Jos-bas. Man. Jossey-bass Nonprofit Sector Series = Jos-bas Non Jossey-bass Nonprofit Sector Series = Jos-bas. Non. JOT Journal fur Oberflaechentechnik = JOT, J. Oberflaechentech. JOT Journal für Oberflaechentechnik = JOT, J. Oberflaechentech. Jounal of Wildlife Research = J. Wildl. Res. ## Journal abbreviations list for meteorology readable by JabRef. ## Journal abbreviations list for Sociology readable by JabRef.(94 journals) ## Journal abbreviations list of L'Année Philologique (APh) for JabRef. Journal - Academy of General Dentistry = J Acad Gen Dent Journal, Academy of General Dentistry = J. Acad. Gen. Dent. Journal (Academy of Hospital Administration (India)) = J Acad Hosp Adm Journal, Academy of Hospital Administration = J. Acad. Hosp. Adm. Journal - Alabama Dental Association = J Ala Dent Assoc Journal, Alabama Dental Association = J. Ala. Dent. Assoc. Journal (American Academy of Gnathologic Orthopedics) = J Am Acad Gnathol Orthop Journal, American Academy of Gnathologic Orthopedics = J. Am. Acad. Gnathol. Orthop. Journal (American Association for Medical Transcription) = J Am Assoc Med Transcr Journal, American Association for Medical Transcription = J. Am. Assoc. Med. Transcr. Journal - American Health Care Association = J Am Health Care Assoc Journal, American Health Care Association = J. Am. Health Care Assoc. Journal - American Intra-Ocular Implant Society = J Am Intraocul Implant Soc Journal, American Intra-Ocular Implant Society = J. Am. Intraocul. Implant Soc. Journal (American Medical Record Association) = J Am Med Rec Assoc Journal, American Medical Record Association = J. Am. Med. Rec. Assoc. Journal American Pomological Society = J Amer Pomolog Soc Journal American Pomological Society = J. Amer. Pomolog. Soc. Journal, American Society for the Study of Orthodontics = J. Am. Soc. Study Orthod. Journal American Water Works Association = J Am Water Works Ass Journal American Water Works Association = J. Am. Water Works Ass. Journal American Water Works Association = J. Am. Water Works Assn. Journal - American Water Works Association = J Am Water Works Assoc Journal - American Water Works Association = J. - Am. Water Works Assoc. Journal and Proceedings of the Royal Institute of Chemistry = J. Proc. R. Inst. Chem. Journal and Proceedings of the Royal Institute of Chemistry of Great Britain and Ireland = J. Proc. R. Inst. G.B. Irel. Journal and Proceedins of the Institute of Chemistry of Great Britain and Ireland = J. Proc. Inst. Chem. G.B. Irel. Journal (Anglo-Continental Dental Society) = J Anglocont Dent Soc Journal, Anglo-Continental Dental Society = J. Anglocont. Dent. Soc. Journal asiatique = JA Journal asiatique = J Asiat Journal. Assam Science Society = J Assam Science Society Journal, Association for Healthcare Philanthropy = J. Assoc. Healthc. Philanthr. Journal (Association for Healthcare Philanthropy (U.S.)) = J Assoc Healthc Philanthr Journal - Association for Hospital Medical Education = J Assoc Hosp Med Educ Journal, Association for Hospital Medical Education = J. Assoc. Hosp. Med. Educ. Journal - Association of Official Analytical Chemists = J Assoc Off Anal Chem Journal - Association of Official Analytical Chemists = J. Assoc. Off. Anal. Chem. Journal, Association of Official Analytical Chemists = J. Assoc. Off. Anal. Chem. Journal, Australian College of Midwives = J. Aust. Coll. Midwives Journal belge de medecine physique. Belgisch tijdschrift voor fysische geneeskunde = J Belge Med Phys Journal belge de medecine physique et de rehabilitation. Belgisch tijdschrift voor fysische geneeskunde en rehabilitatie = J Belge Med Phys Rehabil Journal Belge de Medecine Physique et de Rehabilitation = J. Belge Med. Phys. Rehabil. Journal belge de medecine physique et de rhumatologie. Belgisch tijdschrift voor fysische geneeskunde en reumatologie = J Belge Med Phys Rhumatol Journal Belge de Medecine Physique = J. Belge Med. Phys. Journal belge de radiologie = J Belge Radiol Journal Belge de Radiologie=J Belge Radiol;; Journal Belge de Radiologie = J. Belge Radiol. Journal Belge De Radiologie = J Belg Radiol Journal Belge De Radiologie = J. Belg. Radiol. Journal belge de rhumatologie et de medecine physique. Belgisch tijdschrift voor reumatologie en fysische geneeskunde = J Belge Rhumatol Med Phys Journal Belge de Rhumatologie et de Medecine Physique = J. Belge Rhumatol. Med. Phys. Journal belge d'urologie = J Belge Urol Journal - California Dental Association = J Calif Dent Assoc Journal, California Dental Association = J. Calif. Dent. Assoc. Journal (Canadian Dental Association) = J Can Dent Assoc Journal, Canadian Dental Association = J. Can. Dent. Assoc. Journal / Canadian Dental Association. Journal de L Association Dentaire Canadienne=J Can Dent Assoc;; Journal Canadien des Sciences de la Terre = J. Can. Sci. Terre Journal CANNT = J. CANNT Journal. Children's Asthma Research Institute and Hospital, Denver = J Child Asthma Res Inst Hosp Denver Journal - Connecticut State Dental Association = J Conn State Dent Assoc Journal, Connecticut State Dental Association = J. Conn. State Dent. Assoc. Journal / Contra Costa Dental Society = J Contra Costa Dent Soc Journal, Contra Costa Dental Society = J. Contra Costa Dent. Soc. Journal d'agriculture traditionnelle et de botanique appliquee : JATBA = J Agric Tradit Bot Appl Journal d'agriculture tropicale et de botanique appliquee = J Agric Trop Bot Appl Journal D Analyse Mathematique = J Anal Math Journal D Analyse Mathematique = J. Anal. Math. Journal d'Analyse Mathématique = J. Anal. Math. Journal das Auxiliares Odontologicas = J. Aux. Odontol. Journal Das Auxiliares Odontologicas = J Aux Odontol Journal de biologie buccale = J Biol Buccale Journal de Biologie Buccale = J. Biol. Buccale Journal De Biologie Buccale = J Biol Buccale Journal De Biologie Buccale = J. Biol. Buccale Journal de Biomateriaux Dentaires = J. Biomater. Dent. Journal de biomateriaux dentaires : [publication du College francais de biomateriaux dentaires] = J Biomater Dent Journal De Biophysique Et De Biomecanique = J Biophys Biomec Journal De Biophysique Et De Biomecanique = J. Biophys. Biomec. Journal De Biophysique & Medecine Nucleaire = J Biophys Biomec Journal De Biophysique & Medecine Nucleaire = J. Biophys. Biomec. Journal De Chimie Physique Et De Physico-chimie Biologique = J Chim Phys Pcb Journal De Chimie Physique Et De Physico-chimie Biologique = J. Chim. Phys. Pcb. Journal de Chimie Physique et de Physico-Chimie Biologique = J. Chim. Phys. Phys.- Chim. Biol. Journal De Chimie Physique = J Chim Phys Journal De Chimie Physique = J. Chim. Phys. Journal de chirurgie = J Chir (Paris) Journal de Chirurgie=J Chir (Paris);; Journal de Chirurgie = J. Chir. (Paris) Journal De Chirurgie = J Chir-paris Journal De Chirurgie = J. Chir-paris. Journal de genetique humaine = J Genet Hum Journal de Genetique Humaine = J. Genet. Hum. Journal De Genetique Humaine = J Genet Hum Journal De Genetique Humaine = J. Genet. Hum. Journal De Gynecologie Obstetrique Et Biologie De La Reproduction = J Gynecol Obst Bio R Journal De Gynecologie Obstetrique Et Biologie De La Reproduction = J. Gynecol. Obst. Bio. R. Journal de gynecologie, obstetrique et biologie de la reproduction = J Gynecol Obstet Biol Reprod (Paris) Journal de Gynecologie, Obstetrique et Biologie de la Reproduction = J. Gynecol. Obstet. Biol. Reprod. (Paris) Journal de Gynecologie, Obstetrique Et Biologie De la Reproduction=J Gynecol Obstet Biol Reprod (Paris);; Journal de la Societa de Biologie = J. Soc. Biol. Journal de la Societe Algerienne de Chimie = J. Soc. Alg. Chim. Journal de la Societe Chimique de Tunisie = J. Soc. Chim. Tunis. Journal de la Societe de biologie = J Soc Biol Journal de la Societe de Biologie = J. Soc. Biol. Journal de la Societe des americanistes = J Soc Am Journal de la Societe des oceanistes = J Soc Ocean Journal de la Societe de statistique de Paris = J Soc Stat Paris Journal de la Societe Ouest Africaine de Chimie = J. Soc. Ouest Afr. Chim. Journal De Mathematiques Pures Et Appliquees = J Math Pure Appl Journal De Mathematiques Pures Et Appliquees = J. Math. Pure. Appl. Journal de Mathématiques Pures et Appliquées = J. Math. Pures Appl. (9) Journal De Mecanique Appliquee = J Mec Appl Journal De Mecanique Appliquee = J. Mec. Appl. Journal De Mecanique = J Mecanique Journal De Mecanique = J. Mecanique Journal De Mecanique Theorique Et Appliquee = J Mec Theor Appl Journal De Mecanique Theorique Et Appliquee = J. Mec. Theor. Appl. Journal de medecine de Besancon = J Med Besancon Journal de medecine de Bordeaux et du Sud-Ouest = J Med Bord Journal de Medecine de Bordeaux et du Sud-Ouest = J. Med. Bord. Journal de medecine de Caen = J Med Caen Journal de medecine de Lyon = J Med Lyon Journal de Medecine de Lyon = J. Med. Lyon Journal de medecine de Nantes = J Med Nantes Journal de medecine de Paris = J Med Paris Journal de medecine de Strasbourg = J Med Strasb Journal De Medecine De Strasbourg = J Med Strasbourg Journal De Medecine De Strasbourg = J. Med. Strasbourg Journal de medecine et de chirurgie pratiques = J Med Chir Prat Journal de medecine legale droit medical = J Med Leg Droit Med Journal De Medecine Legale Droit Medical = J Med Leg Droit Med Journal De Medecine Legale Droit Medical = J. Med. Leg. Droit Med. Journal de Medecine Nucleaire et Biophysique = J. Med. Nucl. Biophys. Journal De Medecine Nucleaire Et Biophysique = J Med Nucl Biophys Journal De Medecine Nucleaire Et Biophysique = J. Med. Nucl. Biophys. Journal de microscopie et de biologie cellulaire = J Microsc Biol Cell Journal de Microscopie et de Biologie Cellulaire = J. Microsc. Biol. Cell. Journal De Microscopie Et De Biologie Cellulaire = J Microsc Biol Cell Journal De Microscopie Et De Biologie Cellulaire = J. Microsc. Biol. Cell. Journal De Microscopie Et De Spectroscopie Electroniques = J Microsc Spect Elec Journal De Microscopie Et De Spectroscopie Electroniques = J. Microsc. Spect. Elec. Journal de microscopie = J Microsc (Paris) Journal de Microscopie = J. Microsc. (Paris) Journal De Microscopie = J Microsc-paris Journal De Microscopie = J. Microsc-paris. Journal De Mycologie Medicale = J Mycol Med Journal De Mycologie Medicale = J. Mycol. Med. Journal Dentaire du Quebec = J. Dent. Que. Journal de parodontologie = J Parodontol Journal de Parodontologie = J. Parodontol. Journal De Pharmacie Clinique = J Pharm Clin-series Journal De Pharmacie Clinique = J. Pharm. Clin-series. Journal de pharmacie de Belgique = J Pharm Belg Journal de Pharmacie de Belgique = J. Pharm. Belg. Journal de Pharmacie De Belgique=J Pharm Belg;; Journal De Pharmacie De Belgique = J Pharm Belg Journal De Pharmacie De Belgique = J. Pharm. Belg. Journal de pharmacologie = J Pharmacol Journal de Pharmacologie = J. Pharmacol. Journal De Pharmacologie = J Pharmacol-paris Journal De Pharmacologie = J. Pharmacol-paris. Journal de physiologie = J Physiol (Paris) Journal de Physiologie = J. Physiol. (Paris) Journal De Physiologie = J Physiol-paris Journal De Physiologie = J. Physiol-paris. Journal de physiologie. Supplement = J Physiol Suppl (Paris) Journal de Physiologie. Supplement = J. Physiol. Suppl. (Paris) Journal De Physique Et Le Radium = J Phys-paris Journal De Physique Et Le Radium = J. Phys-paris. Journal de Physique et le Radium = J. Phys. Radium Journal de Physique III = J. Phys. III Journal De Physique Iii = J Phys Iii Journal De Physique Iii = J. Phys. Iii Journal De Physique Iii = J Phys Iv Journal De Physique Iii = J. Phys. Iv. Journal de Physique II = J. Phys. II Journal De Physique Ii = J Phys Ii Journal De Physique Ii = J. Phys. Ii Journal De Physique Ii = J Phys Iv Journal De Physique Ii = J. Phys. Iv. Journal de Physique I = J. Phys. I Journal De Physique I = J Phys I Journal De Physique I = J. Phys. I Journal de Physique IV = J. Phys. IV Journal De Physique Iv = J Phys Iv Journal De Physique Iv = J. Phys. Iv Journal de Physique = J. Phys. Journal de Physique = J. Physique I Journal De Physique = J Phys-paris Journal De Physique = J. Phys-paris. Journal De Physique Lettres = J Phys Lett-paris Journal De Physique Lettres = J. Phys. Lett-paris. Journal de psychologie normale et pathologique = J Psychol Norm Pathol (Paris) Journal de Psychologie Normale et Pathologique = J. Psychol. Norm. Pathol. (Paris) Journal de radiologie, d'electrologie & archives d'electricite medicale = J Radiol Electrol Arch Electr Medicale Journal De Radiologie D Electrologie Et De Medecine Nucleaire = J Radiol Elec Med N Journal De Radiologie D Electrologie Et De Medecine Nucleaire = J. Radiol. Elec. Med. N. Journal de radiologie, d'electrologie, et de medecine nucleaire = J Radiol Electrol Med Nucl Journal de Radiologie, d'Electrologie, et de Medecine Nucleaire = J. Radiol. Electrol. Med. Nucl. Journal de radiologie = J Radiol Journal de Radiologie=J Radiol;; Journal de Radiologie = J. Radiol. Journal De Radiologie = J Radiol Journal De Radiologie = J. Radiol. Journal Der Deutschen Dermatologischen Gesellschaft = J Dtsch Dermatol Ges Journal Der Deutschen Dermatologischen Gesellschaft = J. Dtsch. Dermatol. Ges. Journal der Deutschen Dermatologischen Gesellschaft (Journal of the German Society of Dermatology) = J. Dtsch. Dermatol. Ges. Journal de Recherches Atmospheriques = J. Rech. Atmos. Journal des maladies vasculaires = J Mal Vasc Journal des Maladies Vasculaires = J. Mal. Vasc. Journal Des Maladies Vasculaires=J Mal Vasc;; Journal Des Maladies Vasculaires = J Mal Vascul Journal Des Maladies Vasculaires = J. Mal. Vascul. Journal des praticiens; revue generale de clinique et de therapeutique = J Prat Rev Gen Clin Ther Journal des Savants = JS Journal des savants = JSav Journal des sciences medicales de Lille = J Sci Med Lille Journal des Sciences Medicales de Lille = J. Sci. Med. Lille Journal de stomatologie de Belgique = J Stomatol Belg Journal de Stomatologie de Belgique = J. Stomatol. Belg. Journal de Théorie des Nombres de Bordeaux = J. Théor. Nombres Bordeaux Journal de toxicologie clinique et experimentale = J Toxicol Clin Exp Journal de Toxicologie Clinique et Experimentale = J. Toxicol. Clin. Exp. Journal De Toxicologie Clinique Et Experimentale = J Toxicol Clin Exper Journal De Toxicologie Clinique Et Experimentale = J. Toxicol. Clin. Exper. Journal De Toxicologie Medicale = J Toxicol Clin Exper Journal De Toxicologie Medicale = J. Toxicol. Clin. Exper. Journal de Toxicologie Medicale = J. Toxicol. Med. Journal, District of Columbia Dental Society = J. Dist. Columbia Dent. Soc. Journal d'odontologie conservatrice / CNEOC = J Odontol Conserv Journal d'Odontologie Conservatrice = J. Odontol. Conserv. Journal Du Conseil = J Conseil Journal Du Conseil = J. Conseil Journal D Urologie Et De Nephrologie = J Urol Nephrol Journal D Urologie Et De Nephrologie = J. Urol. Nephrol. Journal d'urologie et de nephrologie = J Urol Nephrol (Paris) Journal d'Urologie et de Nephrologie = J. Urol. Nephrol. (Paris) Journal D Urologie = J Urologie Journal D Urologie = J. Urologie Journal d'urologie = J Urol (Paris) Journal d'Urologie = J. Urol. (Paris) Journal d'urologie medicale et chirurgicale = J Urol Medicale Chir Journalen sykepleien = J Sykepleien Journalen Sykepleien = J. Sykepleien Journal Europeen De Radiotherapie = J Eur Radiother Journal Europeen De Radiotherapie = J. Eur. Radiother. Journal Europeen d'Hydrologie = J. Eur. Hydrol. Journal for East European Management Studies = J E Eur Manag Stud Journal for East European Management Studies = J. E. Eur. Manag. Stud. Journal for East European Management Studies = J E Eur Manag Stud Journal for East European Management Studies = J. E. Eur. Manag. Stud. Journal - Forensic Science Society = J Forensic Sci Soc Journal, Forensic Science Society = J. Forensic Sci. Soc. Journal forestier suisse = J. for. suisse Journal for General Philosophy of Science = J. Gen. Philos. Sci. Journal for General Philosophy of Science = J Gen Philos Sci Journal for General Philosophy of Science = J. Gen. Philos. Sci. Journal for Geometry and Graphics = J. Geom. Graph. Journal for Healthcare Quality = J. Healthc. Qual. Journal for healthcare quality : official publication of the National Association for Healthcare Quality = J Healthc Qual Journal for Hospital Admitting Management = J. Hosp. Admit. Manage. Journal for Medicaid management = J Medicaid Manage Journal for Medicaid Management = J. Medicaid Manage. Journal for Nature Conservation = J Nat Conserv Journal for Nature Conservation = J. Nat. Conserv. Journal for nurses in staff development : JNSD : official journal of the National Nursing Staff Development Organization = J Nurses Staff Dev Journal for Nurses in Staff Development = J. Nurses Staff Dev. Journal for Research in Mathematics Education = J Res Math Educ Journal for Research in Mathematics Education = J. Res. Math. Educ. Journal for Specialists in Pediatric Nursing = J Spec Pediatr Nurs Journal for Specialists in Pediatric Nursing = J. Spec. Pediatr. Nurs. Journal for specialists in pediatric nursing : JSPN = J Spec Pediatr Nurs Journal for Studies in Economics and Econometrics=J. Stud. Econ. Econometrics Journal for The Education of The Gifted = J Educ Gifted Journal for The Education of The Gifted = J. Educ. Gifted Journal for the history of Arabic science = JHAS Journal for the history of Arabic science = J Hist Arabic Sci Journal for the History of Arabic Science = J. Hist. Arabic Sci. Journal for the history of astronomy = JHA Journal for The History of Astronomy = J Hist Astron Journal for The History of Astronomy = J. Hist. Astron. Journal for the History of Astronomy = J. Hist. Astronom. Journal for The Scientific Study of Religion = J Sci Stud Relig Journal for The Scientific Study of Religion = J. Sci. Stud. Relig. Journal For The Scientific Study Of Religion = J. Sci. Stud. Relig. Journal for the scientific study of religion = J Sci Study Relig Journal for the study of Judaism: (in the Persian, Hellenistic and Roman period) = JSJ Journal for The Study of Judaism = J Study Jud Journal for The Study of Judaism = J. Study Jud. Journal for The Study of Religions and Ideologies = J Study Relig Ideol Journal for The Study of Religions and Ideologies = J. Study Relig. Ideol. Journal for The Study of The Old Testament Supplement Series = J St Old Test Suppl Journal for The Study of The Old Testament Supplement Series = J. St. Old Test. Suppl. Journal for The Theory of Social Behaviour = J Theor Soc Behav Journal for The Theory of Social Behaviour = J. Theor. Soc. Behav. Journal for the theory of social behaviour = J Theory Soc Behav Journal Francais De Biophysique & Medecine Nucleaire = J Biophys Biomec Journal Francais De Biophysique & Medecine Nucleaire = J. Biophys. Biomec. Journal francais de medecine et chirurgie thoraciques = J Fr Med Chir Thorac Journal Francais de Medecine et Chirurgie Thoraciques = J. Fr. Med. Chir. Thorac. Journal francais d'ophtalmologie = J Fr Ophtalmol Journal Francais d'Ophtalmologie = J. Fr. Ophtalmol. Journal Francais D Ophtalmologie=J Fr Ophtalmol;; Journal Francais D Ophtalmologie = J Fr Ophtalmol Journal Francais D Ophtalmologie = J. Fr. Ophtalmol. Journal francais d'oto-rhino-laryngologie; audiophonologie, chirurgie maxillo-faciale = J Fr Otorhinolaryngol Audiophonol Chir Maxillofac Journal Francais d'Oto-Rhino-Laryngologie, Audiophonologie, Chirurgie Maxillo-Faciale = J. Fr. Otorhinolaryngol. Audiophonol. Chir. Maxillofac. Journal francais d'oto-rhino-laryngologie, audio-phonologie et chirurgie maxillo-faciale = J Fr Otorhinolaryngol Audiophonol Chir Maxillofac Journal Francais d'Oto-Rhino-Laryngologie, Audio-Phonologie et Chirurgie Maxillo-Faciale = J. Fr. Otorhinolaryngol. Audiophonol. Chir. Maxillofac. Journal francais d'oto-rhino-laryngologie et chirurgie maxillo-faciale = J Fr Otorhinolaryngol Chir Maxillofac Journal Francais d'Oto-Rhino-Laryngologie et Chirurgie Maxillo-Faciale = J. Fr. Otorhinolaryngol. Chir. Maxillofac. Journal Francais D Oto-rhino-laryngologie = J Fr Otorhinolaryng Journal Francais D Oto-rhino-laryngologie = J. Fr. Otorhinolaryng. Journal Fur Die Reine Und Angewandte Mathematik = J Reine Angew Math Journal Fur Die Reine Und Angewandte Mathematik = J. Reine Angew. Math. Journal für die Reine und Angewandte Mathematik = J. Reine Angew. Math. Journal fur Entwicklungspolitik : JEP = J Entwickl Polit Journal fur Gasbeleuchtung und Verwandte Beleuchtungsarten sowie fur Wasserversorgung = J. Gasbeleucht. Verw. Beleuchtungsarten Wasserversorg. Journal fur Geschichte = J Gesch Journal fur Hirnforschung = J Hirnforsch Journal fur Hirnforschung = J. Hirnforsch. Journal Fur Hirnforschung=J Hirnforsch;; Journal Fur Hirnforschung = J Hirnforsch Journal Fur Hirnforschung = J. Hirnforsch. Journal fur Kulturpflanzen = J. Kulturpflanz. Journal für Kunstgeschichte = JKuGesch Journal fur Landwirtschaft = J. Landwirtschaft Journal Fur Ornithologie = J Ornithol Journal Fur Ornithologie = J. Ornithol. Journal für Ornithologie = J. Ornithol. Journal Fur Praktische Chemie-chemiker-zeitung = J Prak Chem-chem Ztg Journal Fur Praktische Chemie-chemiker-zeitung = J. Prak. Chem-chem. Ztg. Journal fur Praktische Chemie = J. Prakt. Chem. Journal Fur Praktische Chemie = J Prakt Chem Journal Fur Praktische Chemie = J. Prakt. Chem. Journal für Praktische Chemie = J. Prakt. Chem. Journal Fur Praktische Chemie-practical Applications and Applied Chemistry = J Prakt Chem Journal Fur Praktische Chemie-practical Applications and Applied Chemistry = J. Prakt. Chem. Journal Fur Signalaufzeichnungsmaterialien = J Inform Rec Mater Journal Fur Signalaufzeichnungsmaterialien = J. Inform. Rec. Mater. Journal fur Sozialforschung = J Soz Forsch Journal Fur Verbraucherschutz Und Lebensmittelsicherheit-journal of Consumer Protection and Food Safety = J Verbrauch Lebensm Journal Fur Verbraucherschutz Und Lebensmittelsicherheit-journal of Consumer Protection and Food Safety = J. Verbrauch. Lebensm. Journal fur Verbraucherschutz und Lebensmittelsicherheit = J. Verbraucherschutz Lebensmittelsicherh. Journal für Verbraucherschutz und Lebensmittelsicherheit = J. Verbraucherschutz Lebensmittelsicherh. Journal. Houston District Dental Society = J Houston Dist Dent Soc Journal (Indiana Dental Association) = J Indiana Dent Assoc Journal, Indiana Dental Association = J. Indiana Dent. Assoc. Journal. Indianapolis District Dental Society = J Indianap Dist Dent Soc Journal (Institute of Health Record Information and Management) = Journal (Inst Health Rec Inf Manag) Journal (Institute of Sterile Services Management) = J Inst Sterile Serv Manage Journal, Institute of Sterile Services Management = J. Inst. Sterile Serv. Manage. Journal international de chirurgie = J Int Chir Journal International Des Sciences De La Vigne Et Du Vin = J Int Sci Vigne Vin Journal International Des Sciences De La Vigne Et Du Vin = J. Int. Sci. Vigne Vin Journal. Iowa State Medical Society = J Iowa State Med Soc Journalism and The Debate Over Privacy = Lea Commun Ser Journalism and The Debate Over Privacy = Lea. Commun. Ser. Journalism Conference and Workshop = J. Conf. Workshop Journalism Conference And Workshop = J Conf Workshop Journalism history = Journal Hist Journalism & Mass Communication Quarterly = Journalism Mass Comm Journalism & Mass Communication Quarterly = Journalism Mass Comm. Journalism monographs (Austin, Tex.) = Journalism Monogr Journalism Quarterly = Journalism Quart Journalism Quarterly = Journalism Quart. Journalism Studies = Journalism Stud Journalism Studies = Journalism Stud. Journal-lancet = J Lancet Journal-lancet = J. Lancet. Journal-Lancet = J. Lancet Journal / Maine Dental Association = J Maine Dent Assoc Journal, Maine Dental Association = J. Maine Dent. Assoc. Journal. Medical Association of Eire = J Med Assoc Eire Journal Medical Libanais (Lebanese Medical Journal) = J. Med. Liban. Journal Medical Libanais. Lebanese Medical Journal=J Med Liban;; Journal. Mercer Dental Society, Trenton = J Mercer Dent Soc Journal - Michigan State Medical Society = J Mich State Med Soc Journal - Mississippi Dental Association = J Miss Dent Assoc Journal, Mississippi Dental Association = J. Miss. Dent. Assoc. Journal. National Analgesia Society = J Natl Analg Soc Journal, National Association for Hospital Development = J. Natl. Assoc. Hosp. Dev. Journal (National Association for Hospital Development (U.S.)) = J Natl Assoc Hosp Dev Journal - National Association of Private Psychiatric Hospitals = J Natl Assoc Priv Psychiatr Hosp Journal, National Association of Private Psychiatric Hospitals = J. Natl. Assoc. Priv. Psychiatr. Hosp. Journal. National Malaria Society = J Natl Malar Soc Journal - Newark Beth Israel Hospital = J Newark Beth Isr Hosp Journal (New Hampshire Dental Society) = J N H Dent Soc Journal, New Hampshire Dental Society = J. N. H. Dent. Soc. Journal (North Louisiana Historical Association) = J North La Hist Assoc Journal of Aapos = J Aapos Journal of Aapos = J. Aapos Journal of AAPOS = J. AAPOS Journal of AAPOS : the official publication of the American Association for Pediatric Ophthalmology and Strabismus / American Association for Pediatric Ophthalmology and Strabismus = J AAPOS Journal of Abnormal and Social Psychology = J Abnorm Soc Psych Journal of Abnormal and Social Psychology = J. Abnorm. Soc. Psych. Journal of abnormal and social psychology = J Abnorm Soc Psychol Journal of Abnormal Child Psychology = J Abnorm Child Psych Journal of Abnormal Child Psychology = J. Abnorm. Child Psych. Journal of abnormal child psychology = J Abnorm Child Psychol Journal of Abnormal Child Psychology=J Abnorm Child Psychol;; Journal of Abnormal Child Psychology = J. Abnorm. Child Psychol. Journal of abnormal psychology = J Abnorm Psychol Journal of Abnormal Psychology=J Abnorm Psychol;; Journal of Abnormal Psychology = J Abnorm Psychol Journal of Abnormal Psychology = J. Abnorm. Psychol. Journal of Academic Librarianship = J Acad Libr Journal of Academic Librarianship = J. Acad. Libr. Journal of Accident and Emergency Medicine=J Accid Emerg Med;; Journal of Accident and Emergency Medicine = J. Accid. Emerg. Med. Journal of accident & emergency medicine = J Accid Emerg Med Journal of Accident & Emergency Medicine = J Accid Emerg Med Journal of Accident & Emergency Medicine = J. Accid. Emerg. Med. Journal of Accountancy = J Accountancy Journal of Accountancy = J. Accountancy Journal of Accounting and Economics=J. Acc. Econ. Journal of Accounting and Public Policy = J Account Public Pol Journal of Accounting and Public Policy = J. Account. Public Pol. Journal of Accounting, Auditing and Finance=J. Acc., Aud. Finance Journal of Accounting & Economics = J Account Econ Journal of Accounting & Economics = J. Account. Econ. Journal of Accounting Research = J Accounting Res Journal of Accounting Research = J. Accounting Res. Journal of Accounting Research = J Account Res Journal of Accounting Research = J. Account. Res. Journal of Accounting Research=J. Acc. Res. Journal of acquired immune deficiency syndromes (1999) = J Acquir Immune Defic Syndr Journal of Acquired Immune Deficiency Syndromes and Human Retrovirology = J Acq Immun Def Synd Journal of Acquired Immune Deficiency Syndromes and Human Retrovirology = J. Acq. Immun. Def. Synd. Journal of Acquired Immune Deficiency Syndromes and Human Retrovirology=J Acquir Immune Defic Syndr Hum Retrovirol;; Journal of Acquired Immune Deficiency Syndromes and Human Retrovirology = J. Acquir. Immune Defic. Syndr. Hum. Retrovirol. Journal of acquired immune deficiency syndromes and human retrovirology : official publication of the International Retrovirology Association = J Acquir Immune Defic Syndr Hum Retrovirol Journal of Acquired Immune Deficiency Syndromes = J Acq Immun Def Synd Journal of Acquired Immune Deficiency Syndromes = J. Acq. Immun. Def. Synd. Journal of acquired immune deficiency syndromes = J Acquir Immune Defic Syndr Journal of Acquired Immune Deficiency Syndromes = J. Acquir. Immune Defic. Syndr. Journal of Addiction Medicine = J Addict Med Journal of Addiction Medicine = J. Addict. Med. Journal of Addictions Nursing = J Addict Nurs Journal of Addictions Nursing = J. Addict. Nurs. Journal of Addictive Diseases=J Addict Dis;; Journal of Addictive Diseases = J Addict Dis Journal of Addictive Diseases = J. Addict. Dis. Journal of addictive diseases : the official journal of the ASAM, American Society of Addiction Medicine = J Addict Dis Journal of Adhesion = J. Adhes. Journal of Adhesion = J Adhesion Journal of Adhesion = J. Adhesion Journal of Adhesion Science and Technology = J Adhes Sci Technol Journal of Adhesion Science and Technology = J. Adhes. Sci. Technol. Journal of Adhesive Dentistry = J Adhes Dent Journal of Adhesive Dentistry = J. Adhes. Dent. Journal of adolescence = J Adolesc Journal of Adolescence=J Adolesc;; Journal of Adolescence = J. Adolesc. Journal of Adolescence = J Adolescence Journal of Adolescence = J. Adolescence Journal of Adolescent & Adult Literacy = J Adolesc Adult Lit Journal of Adolescent & Adult Literacy = J. Adolesc. Adult Lit. Journal of Adolescent Health Care = J. Adolesc. Health Care Journal of adolescent health care : official publication of the Society for Adolescent Medicine = J Adolesc Health Care Journal of Adolescent Health = J Adolescent Health Journal of Adolescent Health = J. Adolescent Health Journal of Adolescent Health=J Adolesc Health;; Journal of Adolescent Health = J. Adolesc. Health Journal of Adolescent Research = J Adolescent Res Journal of Adolescent Research = J. Adolescent Res. Journal of adolescent research = J Adolesc Res Journal of Adult Development = J Adult Dev Journal of Adult Development = J. Adult Dev. Journal of Advanced Concrete Technology = J Adv Concr Technol Journal of Advanced Concrete Technology = J. Adv. Concr. Technol. Journal of Advanced Materials = J Adv Mater Journal of Advanced Materials = J. Adv. Mater. Journal of Advanced Materials = J Adv Mater-covina Journal of Advanced Materials = J. Adv. Mater-covina. Journal of Advanced Mechanical Design Systems and Manufacturing = J Adv Mech Des Syst Journal of Advanced Mechanical Design Systems and Manufacturing = J. Adv. Mech. Des. Syst. Journal of advanced medical-surgical nursing = J Adv Med Surg Nurs Journal of Advanced Medical-Surgical Nursing = J. Adv. Med. Surg. Nurs. Journal of advanced nursing = J Adv Nurs Journal of Advanced Nursing=J Adv Nurs;; Journal of Advanced Nursing = J Adv Nurs Journal of Advanced Nursing = J. Adv. Nurs. Journal of Advanced Oxidation Technologies = J Adv Oxid Technol Journal of Advanced Oxidation Technologies = J. Adv. Oxid. Technol. Journal of Advanced Research = J. Adv. Res. Journal of Advanced Transportation = J Adv Transport Journal of Advanced Transportation = J. Adv. Transport. Journal of Advanced Zoology = J Adv Zool Journal of Advanced Zoology = J. Adv. Zool. Journal of Advances in Chemical Physics = J. Adv. Chem. Phys. Journal of Advertising = J Advertising Journal of Advertising = J. Advertising Journal of Advertising Research = J Advertising Res Journal of Advertising Research = J. Advertising Res. Journal of advertising research = J Advert Res Journal of Aerosol Medicine and Pulmonary Drug Delivery = J Aerosol Med Pulm D Journal of Aerosol Medicine and Pulmonary Drug Delivery = J. Aerosol Med. Pulm. D. Journal of Aerosol Medicine-deposition Clearance and Effects in The Lung = J Aerosol Med Journal of Aerosol Medicine-deposition Clearance and Effects in The Lung = J. Aerosol Med. Journal of Aerosol Medicine = J. Aerosol Med. Journal of aerosol medicine : the official journal of the International Society for Aerosols in Medicine = J Aerosol Med Journal of aerosol science = J Aerosol Sci Journal of Aerosol Science = J Aerosol Sci Journal of Aerosol Science = J. Aerosol Sci. Journal of Aerospace Computing Information and Communication = J Aeros Comp Inf Com Journal of Aerospace Computing Information and Communication = J. Aeros. Comp. Inf. Com. Journal of Aerospace Computing Information and Communication = J Aerosp Comput In C Journal of Aerospace Computing Information and Communication = J. Aerosp. Comput. In. C. Journal of Aerospace Engineering = J Aerospace Eng Journal of Aerospace Engineering = J. Aerospace Eng. Journal of aerospace engineering = J Aerosp Eng Journal of Aerospace Engineering = J. Aerosp. Eng. Journal of Aesthetic Education = J Aesthet Educ Journal of Aesthetic Education = J. Aesthet. Educ. Journal of Aesthetics and Art Criticism = J Aesthet Art Critic Journal of Aesthetics and Art Criticism = J. Aesthet. Art Critic. Journal of affective disorders = J Affect Disord Journal of Affective Disorders=J Affect Disord;; Journal of Affective Disorders = J. Affect. Disord. Journal of Affective Disorders = J Affect Disorders Journal of Affective Disorders = J. Affect. Disorders Journal of African Archaeology = J Afr Archaeol Journal of African Archaeology = J. Afr. Archaeol. Journal of African Business=J. African Bus. Journal of African Cultural Studies = J Afr Cult Stud Journal of African Cultural Studies = J. Afr. Cult. Stud. Journal of African Earth Sciences = J Afr Earth Sci Journal of African Earth Sciences = J. Afr. Earth Sci. Journal of African Earth Sciences = J. Afr. Earth. Sci. Journal of African economies = J Afr Econ Journal of African Economies = J Afr Econ Journal of African Economies = J. Afr. Econ. Journal of African Economies=J. African Economies Journal of African Finance and Economic Development=J. African Finance Econ. Devel. Journal of African history = J Afr Hist Journal of African History = J Afr Hist Journal of African History = J. Afr. Hist. Journal of African Languages and Linguistics = J Afr Lang Linguist Journal of African Languages and Linguistics = J. Afr. Lang. Linguist. Journal of African law = J Afr Law Journal of African Law = J Afr Law Journal of African Law = J. Afr. Law Journal of African studies = J Afr Stud Journal of African Studies = J Afr Stud Journal of African Studies = J. Afr. Stud. Journal of aging and health = J Aging Health Journal of Aging and Health = J Aging Health Journal of Aging and Health = J. Aging Health Journal Of Aging And Judaism = J Aging Jud Journal of aging and physical activity = J Aging Phys Act Journal of Aging and Physical Activity = J Aging Phys Activ Journal of Aging and Physical Activity = J. Aging Phys. Activ. Journal of Aging and Social Policy = J. Aging Soc. Policy Journal of aging & social policy = J Aging Soc Policy Journal of aging studies = J Aging Stud Journal of Aging Studies = J Aging Stud Journal of Aging Studies = J. Aging Stud. Journal of Agrarian Change = J Agrar Change Journal of Agrarian Change = J. Agrar. Change Journal of Agricultural and Applied Economics=J. Agr. Appl. Econ. Journal of Agricultural and Food Chemistry = J Agr Food Chem Journal of Agricultural and Food Chemistry = J. Agr. Food Chem. Journal of agricultural and food chemistry = J Agric Food Chem Journal of Agricultural and Food Chemistry = J. Agric. Food Chem. Journal of Agricultural and Food Chemistry = J. Agric. Food. Chem. Journal of Agricultural and Resource Economics=J. Agr. Resource Econ. Journal of Agricultural and Resource Economics = J Agr Resour Econ Journal of Agricultural and Resource Economics = J. Agr. Resour. Econ. Journal of Agricultural and Urban Entomology = J Agr Urban Entomol Journal of Agricultural and Urban Entomology = J. Agr. Urban Entomol. Journal of Agricultural Biological and Environmental Statistics = J Agr Biol Envir St Journal of Agricultural Biological and Environmental Statistics = J. Agr. Biol. Envir. St. Journal of Agricultural Biological and Environmental Statistics = J Agric Biol Envir S Journal of Agricultural Biological and Environmental Statistics = J. Agric. Biol. Envir. S. Journal of Agricultural Economics=J. Agr. Econ. Journal of Agricultural Economics = J Agr Econ Journal of Agricultural Economics = J. Agr. Econ. Journal of Agricultural Economics Research=J. Agr. Econ. Res. Journal of Agricultural Economics Research = J Agr Econ Res Journal of Agricultural Economics Research = J. Agr. Econ. Res. Journal of Agricultural Engineering Research = J Agr Eng Res Journal of Agricultural Engineering Research = J. Agr. Eng. Res. Journal of Agricultural Engineering Research = J. Agric. Eng. Res. Journal of Agricultural Entomology = J Agr Entomol Journal of Agricultural Entomology = J. Agr. Entomol. Journal of Agricultural & Environmental Ethics = J Agr Environ Ethic Journal of Agricultural & Environmental Ethics = J. Agr. Environ. Ethic. Journal of agricultural & environmental ethics = J Agric Environ Ethics Journal of agricultural ethics = J Agric Ethics Journal of agricultural research = J Agric Res Journal of Agricultural Research = J. Agric. Res. Journal of agricultural safety and health = J Agric Saf Health Journal of Agricultural Science and Technology = J Agric Sci Technol Journal of Agricultural Science and Technology = J. Agric. Sci. Technol. Journal of Agricultural Science in Finland = J Agr Sci Finland Journal of Agricultural Science in Finland = J. Agr. Sci. Finland Journal of Agricultural Science = J. Agric. Sci. Journal of Agricultural Science = J Agr Sci Journal of Agricultural Science = J. Agr. Sci. Journal of Agriculture and Rural Development in The Tropics and Subtropics = J Agr Rural Dev Trop Journal of Agriculture and Rural Development in The Tropics and Subtropics = J. Agr. Rural Dev. Trop. Journal of Agriculture in The Tropics and Subtropics = J Agric Trop Subtrop Journal of Agriculture in The Tropics and Subtropics = J. Agric. Trop. Subtrop. Journal of Agriculture of The University of Puerto Rico = J Agr U Puerto Rico Journal of Agriculture of The University of Puerto Rico = J. Agr. U. Puerto Rico Journal of Agroalimentary Processes and Technologies = J. Agroaliment. Proc. Technol. Journal of agromedicine = J Agromedicine Journal of Agrometeorology = J Agrometeorol Journal of Agrometeorology = J. Agrometeorol. Journal of Agronomy and Crop Science = J Agron Crop Sci Journal of Agronomy and Crop Science = J. Agron. Crop Sci. Journal of Agronomy and Crop Science-zeitschrift Fur Acker Und Pflanzenbau = J Agron Crop Sci Journal of Agronomy and Crop Science-zeitschrift Fur Acker Und Pflanzenbau = J. Agron. Crop Sci. Journal of AHIMA / American Health Information Management Association = J AHIMA Journal of AHIMA = J. AHIMA Journal of aircraft = J Aircr Journal of Aircraft = J Aircraft Journal of Aircraft = J. Aircraft Journal of Air Medical Transport = J. Air Med. Transp. Journal of Air Transport Management = J Air Transp Manag Journal of Air Transport Management = J. Air Transp. Manag. Journal of alcohol and drug education = J Alcohol Drug Educ Journal of Alcohol and Drug Education = J Alcohol Drug Educ Journal of Alcohol and Drug Education = J. Alcohol Drug Educ. Journal of Alcoholism = J Alcohol Journal of Alcoholism = J. Alcohol. Journal of Algebra and Its Applications = J Algebra Appl Journal of Algebra and Its Applications = J. Algebra Appl. Journal of Algebraic Combinatorics = J. Algebraic Combin. Journal of Algebraic Combinatorics = J Algebr Comb Journal of Algebraic Combinatorics = J. Algebr. Comb. Journal of Algebraic Geometry = J. Algebraic Geom. Journal of Algebraic Geometry = J Algebraic Geom Journal of Algebraic Geometry = J. Algebraic Geom. Journal of Algebra = J. Algebra Journal of Algebra = J Algebra Journal of Algebra = J. Algebra Journal of Algorithms-cognition Informatics and Logic = J Algorithm Journal of Algorithms-cognition Informatics and Logic = J. Algorithm. Journal of Algorithms-cognition Informatics and Logic = J Algorithms Journal of Algorithms-cognition Informatics and Logic = J. Algorithms. Journal of Algorithms = J Algorithm Journal of Algorithms = J. Algorithm. Journal of Algorithms = J. Algorithms Journal of Allergy and Clinical Immunology = J Allergy Clin Immun Journal of Allergy and Clinical Immunology = J. Allergy Clin. Immun. Journal of Allergy and Clinical Immunology=J Allergy Clin Immunol;; Journal of Allergy and Clinical Immunology = J. Allergy Clin. Immunol. Journal of Allergy = J Allergy Journal of Allergy = J. Allergy Journal of allied health = J Allied Health Journal of Allied Health=J Allied Health;; Journal of Allied Health = J. Allied Health Journal of Alloys and Compounds = J Alloy Compd Journal of Alloys and Compounds = J. Alloy. Compd. Journal of Alloys and Compounds = J. Alloys Compd. Journal of Altered States of Consciousness = J Alter St Conscious Journal of Altered States of Consciousness = J. Alter. St. Conscious. Journal of Alternative and Complementary Medicine=J Altern Complement Med;; Journal of Alternative and Complementary Medicine = J. Altern. Complement. Med. Journal of Alternative and Complementary Medicine = J Altern Complem Med Journal of Alternative and Complementary Medicine = J. Altern. Complem. Med. Journal of alternative and complementary medicine (New York, N.Y.) = J Altern Complement Med Journal of Alzheimer's disease : JAD = J Alzheimers Dis Journal of Alzheimer's Disease = J. Alzheimers Dis. Journal of Alzheimers Disease = J Alzheimers Dis Journal of Alzheimers Disease = J. Alzheimers Dis. Journal of Ambient Intelligence and Smart Environments = J. Ambient Intell. Smart Environ. Journal of Ambulatory Care Management = J. Ambulatory Care Manage. Journal of ambulatory care marketing = J Ambul Care Mark Journal of Ambulatory Care Marketing = J. Ambul. Care Mark. Journal of American College Health=J Am Coll Health;; Journal of American College Health = J Am Coll Health Journal of American College Health = J. Am. Coll. Health Journal of American college health : J of ACH = J Am Coll Health Journal of American culture = J Am Cult Journal of American Culture = J Am Culture Journal of American Culture = J. Am. Culture Journal of American ethnic history = J Am Ethn Hist Journal of American Ethnic History = J Am Ethnic Hist Journal of American Ethnic History = J. Am. Ethnic Hist. Journal of American Folklore = J Am Folklore Journal of American Folklore = J. Am. Folklore Journal of American Health Care = J Am Health Care Journal of American Health Care = J. Am. Health Care Journal of American Health Policy = J Am Health Policy Journal of American Health Policy = J. Am. Health Policy Journal of American history (Bloomington, Ind.) = J Am Hist Journal of American History = J Am Hist Journal of American History = J. Am. Hist. Journal of American insurance = J Am Insur Journal of American Insurance = J. Am. Insur. Journal of American studies = J Am Stud Journal of American Studies = J Am Stud Journal of American Studies = J. Am. Stud. Journal of Analysis = J. Anal. Journal of Analytical and Applied Pyrolysis = J Anal Appl Pyrol Journal of Analytical and Applied Pyrolysis = J. Anal. Appl. Pyrol. Journal of Analytical and Applied Pyrolysis = J. Anal. Appl. Pyrolysis Journal of Analytical Atomic Spectrometry = J Anal Atom Spectrom Journal of Analytical Atomic Spectrometry = J. Anal. Atom. Spectrom. Journal of Analytical Atomic Spectrometry = J. Anal. At. Spectrom. Journal of Analytical Chemistry = J Anal Chem+ Journal of Analytical Chemistry = J. Anal. Chem. Journal of Analytical Chemistry = J. Anal. Chem+.+ Journal of Analytical Chemistry of The Ussr = J Anal Chem-ussr+ Journal of Analytical Chemistry of The Ussr = J. Anal. Chem-ussr+.+ Journal of Analytical Psychology=J Anal Psychol;; Journal of Analytical Psychology = J Anal Psychol Journal of Analytical Psychology = J. Anal. Psychol. Journal of analytical toxicology = J Anal Toxicol Journal of Analytical Toxicology=J Anal Toxicol;; Journal of Analytical Toxicology = J Anal Toxicol Journal of Analytical Toxicology = J. Anal. Toxicol. Journal of anatomy and physiology = J Anat Physiol Journal of anatomy = J Anat Journal of Anatomy=J Anat;; Journal of Anatomy = J Anat Journal of Anatomy = J. Anat. Journal of ancient civilizations = JAC Journal of Ancient Near Eastern Religions = J Anc Near East Reli Journal of Ancient Near Eastern Religions = J. Anc. Near East. Reli. Journal of andrology = J Androl Journal of Andrology=J Androl;; Journal of Andrology = J Androl Journal of Andrology = J. Androl. Journal of anesthesia = J Anesth Journal of Anesthesia = J Anesth Journal of Anesthesia = J. Anesth. Journal of Animal and Feed Sciences = J Anim Feed Sci Journal of Animal and Feed Sciences = J. Anim. Feed Sci. Journal of Animal and Plant Sciences = J Anim Plant Sci Journal of Animal and Plant Sciences = J. Anim. Plant Sci. Journal of Animal and Veterinary Advances = J Anim Vet Adv Journal of Animal and Veterinary Advances = J. Anim. Vet. Adv. Journal of Animal Breeding and Genetics = J Anim Breed Genet Journal of Animal Breeding and Genetics = J. Anim. Breed. Genet. Journal of Animal Breeding and Genetics-zeitschrift Fur Tierzuchtung Und Zuchtungsbiologie = J Anim Breed Genet Journal of Animal Breeding and Genetics-zeitschrift Fur Tierzuchtung Und Zuchtungsbiologie = J. Anim. Breed. Genet. Journal of Animal Ecology = J Anim Ecol Journal of Animal Ecology = J. Anim. Ecol. Journal of Animal Morphology and Physiology = J Anim Morphol Physl Journal of Animal Morphology and Physiology = J. Anim. Morphol. Physl. Journal of Animal Physiology and Animal Nutrition = J. Anim. Physiol. Anim. Nutr. Journal of animal physiology and animal nutrition = J Anim Physiol Anim Nutr (Berl) Journal of Animal Physiology and Animal Nutrition = J Anim Physiol An N Journal of Animal Physiology and Animal Nutrition = J. Anim. Physiol. An. N. Journal of Animal Physiology and Animal Nutrition-zeitschrift Fur Tierphysiologie Tierernahrung Und Futtermittelkunde = J Anim Physiol An N Journal of Animal Physiology and Animal Nutrition-zeitschrift Fur Tierphysiologie Tierernahrung Und Futtermittelkunde = J. Anim. Physiol. An. N. Journal of animal science = J Anim Sci Journal of Animal Science=J Anim Sci;; Journal of Animal Science = J Anim Sci Journal of Animal Science = J. Anim. Sci. Journal of Animal Science (Savoy, IL, United States) = J. Anim. Sci. (Savoy, IL, U. S.) Journal of Anthropological Archaeology = J Anthropol Archaeol Journal of Anthropological Archaeology = J. Anthropol. Archaeol. Journal of anthropological research = J Anthropol Res Journal of Anthropological Research = J Anthropol Res Journal of Anthropological Research = J. Anthropol. Res. Journal of Anthropological Sciences = J Anthropol Sci Journal of Anthropological Sciences = J. Anthropol. Sci. Journal of anti-aging medicine = J Anti Aging Med Journal of Anti-aging Medicine = J Anti-aging Med Journal of Anti-aging Medicine = J. Anti-aging Med. Journal of Antibiotics = J Antibiot Journal of Antibiotics = J. Antibiot. Journal of Antibiotics=J Antibiot (Tokyo);; Journal of Antibiotics = J. Antibiot. (Tokyo) Journal of Antibiotics. Ser. B. = J. Antibiot. [B] Journal of Antimicrobial Chemotherapy = J Antimicrob Chemoth Journal of Antimicrobial Chemotherapy = J. Antimicrob. Chemoth. Journal of Antimicrobial Chemotherapy=J Antimicrob Chemother;; Journal of Antimicrobial Chemotherapy = J. Antimicrob. Chemother. Journal of anxiety disorders = J Anxiety Disord Journal of Anxiety Disorders=J Anxiety Disord;; Journal of Anxiety Disorders = J Anxiety Disord Journal of Anxiety Disorders = J. Anxiety Disord. Journal of Aoac International = J Aoac Int Journal of Aoac International = J. Aoac Int. Journal of AOAC International=J AOAC Int;; Journal of AOAC International = J AOAC Int Journal of AOAC International = J. AOAC Int. Journal of APDSA; Asian Pacific Dental Student Association = J. APDSA (Tokyo) Journal Of Apdsa; Asian Pacific Dental Student Association = J APDSA (Tokyo) Journal of Apicultural Research = J. Apic. Res. Journal of Apicultural Research = J Apicult Res Journal of Apicultural Research = J. Apicult. Res. Journal of Apicultural Science = J Apic Sci Journal of Apicultural Science = J. Apic. Sci. Journal of Appled Electrochemistry = J. Appl. Electrochem. Journal of Applied Analysis = J. Appl. Anal. Journal of Applied and Industrial Mathematics = J. Appl. Ind. Math. Journal of Applied Animal Research = J Appl Anim Res Journal of Applied Animal Research = J. Appl. Anim. Res. Journal of applied animal welfare science : JAAWS = J Appl Anim Welf Sci Journal of Applied Animal Welfare Science = J. Appl. Anim. Welfare Sci. Journal of Applied Animal Welfare Science = J Appl Anim Welf Sci Journal of Applied Animal Welfare Science = J. Appl. Anim. Welf. Sci. Journal of Applied Bacteriology = J Appl Bacteriol Journal of Applied Bacteriology = J. Appl. Bacteriol. Journal of Applied Behavioral Science = J Appl Behav Sci Journal of Applied Behavioral Science = J. Appl. Behav. Sci. Journal of applied behavior analysis = J Appl Behav Anal Journal of Applied Behavior Analysis=J Appl Behav Anal;; Journal of Applied Behavior Analysis = J Appl Behav Anal Journal of Applied Behavior Analysis = J. Appl. Behav. Anal. Journal of Applied Biobehavioral Research = J Appl Biobehav Res Journal of Applied Biobehavioral Research = J. Appl. Biobehav. Res. Journal of applied biochemistry = J Appl Biochem Journal of Applied Biochemistry = J. Appl. Biochem. Journal of Applied Biological Chemistry = J. Appl. Biol. Chem. Journal of Applied Biological Sciences = J. Appl. Biol. Sci. Journal of applied biomaterials : an official journal of the Society for Biomaterials = J Appl Biomater Journal of Applied Biomaterials & Biomechanics = J Appl Biomater Biom Journal of Applied Biomaterials & Biomechanics = J. Appl. Biomater. Biom. Journal of Applied Biomaterials = J Appl Biomater Journal of Applied Biomaterials = J. Appl. Biomater. Journal of applied biomechanics = J Appl Biomech Journal of Applied Biomechanics = J Appl Biomech Journal of Applied Biomechanics = J. Appl. Biomech. Journal of Applied Biomedicine = J Appl Biomed Journal of Applied Biomedicine = J. Appl. Biomed. Journal of Applied Botany and Food Quality-angewandte Botanik = J Appl Bot Food Qual Journal of Applied Botany and Food Quality-angewandte Botanik = J. Appl. Bot. Food Qual. Journal of applied botany and food quality = Angewandte Botanik / Vereinigung fur Angewandte Botanik [und] Deutsche Gesellschaft fur Qualitatsforschung|J. Appl. Bot. Food Qual. Journal of Applied Botany-angewandte Botanik = J Appl Bot-angew Bot Journal of Applied Botany-angewandte Botanik = J. Appl. Bot-angew. Bot. Journal of Applied Business Research=J. Appl. Bus. Res. Journal of applied cardiology = J Appl Cardiol Journal of Applied Cardiology = J Appl Cardiol Journal of Applied Cardiology = J. Appl. Cardiol. Journal of Applied Chemistry and Biotechnology = J Appl Chem Biotechn Journal of Applied Chemistry and Biotechnology = J. Appl. Chem. Biotechn. Journal of Applied Chemistry & Biotechnology = J. Appl. Chem. Biotech. Journal of Applied Chemistry = J Appl Chem Journal of Applied Chemistry = J. Appl. Chem. Journal of Applied Chemistry of The Ussr = J Appl Chem-ussr+ Journal of Applied Chemistry of The Ussr = J. Appl. Chem-ussr+.+ Journal of applied clinical medical physics / American College of Medical Physics = J Appl Clin Med Phys Journal of Applied Clinical Medical Physics = J Appl Clin Med Phys Journal of Applied Clinical Medical Physics = J. Appl. Clin. Med. Phys. Journal of applied communication research : JACR = J Appl Commun Res Journal of Applied Communication Research = J Appl Commun Res Journal of Applied Communication Research = J. Appl. Commun. Res. Journal of applied crystallography = J Appl Crystallogr Journal of Applied Crystallography = J Appl Crystallogr Journal of Applied Crystallography = J. Appl. Crystallogr. Journal of applied developmental psychology = J Appl Dev Psychol Journal of Applied Developmental Psychology = J Appl Dev Psychol Journal of Applied Developmental Psychology = J. Appl. Dev. Psychol. Journal of Applied Ecology = J Appl Ecol Journal of Applied Ecology = J. Appl. Ecol. Journal of Applied Econometrics = J Appl Econom Journal of Applied Econometrics = J. Appl. Econom. Journal of Applied Econometrics = J Appl Economet Journal of Applied Econometrics = J. Appl. Economet. Journal of Applied Econometrics=J. Appl. Econometrics Journal of Applied Economics=J. Appl. Econ. Journal of Applied Economics = J Appl Econ Journal of Applied Economics = J. Appl. Econ. Journal of Applied Electrochemistry = J Appl Electrochem Journal of Applied Electrochemistry = J. Appl. Electrochem. Journal of Applied Entomology = J Appl Entomol Journal of Applied Entomology = J. Appl. Entomol. Journal of applied entomology = Zeitschrift fur angewandte Entomologie|J. Appl. Entomol. Journal of Applied Entomology-zeitschrift Fur Angewandte Entomologie = J Appl Entomol Journal of Applied Entomology-zeitschrift Fur Angewandte Entomologie = J. Appl. Entomol. Journal of applied genetics = J Appl Genet Journal of Applied Genetics = J Appl Genet Journal of Applied Genetics = J. Appl. Genet. Journal of Applied Genetics = J Appl Genetics Journal of Applied Genetics = J. Appl. Genetics Journal of Applied Geochemistry = J. Appl. Geochem. Journal of Applied Geophysics = J Appl Geophys Journal of Applied Geophysics = J. Appl. Geophys. Journal of Applied Gerontology = J Appl Gerontol Journal of Applied Gerontology = J. Appl. Gerontol. Journal of applied gerontology : the official journal of the Southern Gerontological Society = J Appl Gerontol Journal of Applied Glycoscience = J. Appl. Glycosci. Journal of Applied Ichthyology = J Appl Ichthyol Journal of Applied Ichthyology = J. Appl. Ichthyol. Journal of Applied Ichthyology-zeitschrift Fur Angewandte Ichthyologie = J Appl Ichthyol Journal of Applied Ichthyology-zeitschrift Fur Angewandte Ichthyologie = J. Appl. Ichthyol. Journal of Applied Logic = J Appl Logic Journal of Applied Logic = J. Appl. Logic Journal of Applied Mathematics and Computing = J. Appl. Math. Comput. Journal of Applied Mathematics and Mechanics = J. Appl. Math. Mech. Journal of Applied Mathematics and Mechanics = J. Appl. Math. Mech. Journal of Applied Mathematics and Mechanics-ussr = J Appl Math Mech-uss Journal of Applied Mathematics and Mechanics-ussr = J. Appl. Math. Mech-uss. Journal of Applied Mathematics & Decision Sciences = J. Appl. Math. Decis. Sci. Journal of Applied Mathematics = J. Appl. Math. Journal of applied measurement = J Appl Meas Journal of Applied Measurement = J. Appl. Meas. Journal of Applied Mechanics and Technical Physics = J Appl Mech Tech Phy Journal of Applied Mechanics and Technical Physics = J. Appl. Mech. Tech. Phy. Journal of Applied Mechanics and Technical Physics = J. Appl. Mech. Tech. Phys. Journal of Applied Mechanics and Technical Physics = J. Appl. Mech. Tech. Phys. Journal of Applied Mechanics = J Appl Mech Journal of Applied Mechanics = J. Appl. Mech. Journal of Applied Mechanics-transactions of The Asme = J Appl Mech-t Asme Journal of Applied Mechanics-transactions of The Asme = J. Appl. Mech-t. Asme Journal of Applied Meteorology and Climatology = J Appl Meteorol Clim Journal of Applied Meteorology and Climatology = J. Appl. Meteorol. Clim. Journal of Applied Meteorology = J. Appl. Meteor. Journal of Applied Meteorology = J Appl Meteorol Journal of Applied Meteorology = J. Appl. Meteorol. Journal of applied microbiology = J Appl Microbiol Journal of Applied Microbiology=J Appl Microbiol;; Journal of Applied Microbiology = J Appl Microbiol Journal of Applied Microbiology = J. Appl. Microbiol. Journal of Applied Non-Classical Logics = J. Appl. Non-Classical Logics Journal of Applied Nutrition = J Appl Nutr Journal of Applied Nutrition = J. Appl. Nutr. Journal of Applied Oral Science = J Appl Oral Sci Journal of Applied Oral Science = J. Appl. Oral Sci. Journal of applied philosophy = J Appl Philos Journal of Applied Photographic Engineering = J Appl Photogr Eng Journal of Applied Photographic Engineering = J. Appl. Photogr. Eng. Journal of Applied Phycology = J Appl Phycol Journal of Applied Phycology = J. Appl. Phycol. Journal of applied physics = J Appl Phys Journal of Applied Physics = J Appl Phys Journal of Applied Physics = J. Appl. Phys. Journal of applied physiology (Bethesda, Md. : 1985) = J Appl Physiol Journal of applied physiology = J Appl Physiol Journal of Applied Physiology=J Appl Physiol;; Journal of Applied Physiology = J Appl Physiol Journal of Applied Physiology = J. Appl. Physiol. Journal of applied physiology: respiratory, environmental and exercise physiology = J Appl Physiol Journal of Applied Physiology: Respiratory, Environmental and Exercise Physiology = J. Appl. Physiol. Journal of Applied Polymer Science : Applied Polymer Symposia = J Poly Sc Journal of Applied Polymer Science : Applied Polymer Symposia = J. Poly. Sc. Journal of Applied Polymer Science: Applied Polymer Symposium = J. Appl. Polym. Sci.: Appl. Polym. Symp. Journal of Applied Polymer Science = J Appl Polym Sci Journal of Applied Polymer Science = J. Appl. Polym. Sci. Journal of Applied Poultry Research = J. Appl. Poult. Res. Journal of Applied Poultry Research = J Appl Poultry Res Journal of Applied Poultry Research = J. Appl. Poultry Res. Journal of applied probability = J Appl Probab Journal of Applied Probability = J. Appl. Probab. Journal of Applied Probability = J Appl Probab Journal of Applied Probability = J. Appl. Probab. Journal of Applied Psychology=J Appl Psychol;; Journal of Applied Psychology = J Appl Psychol Journal of Applied Psychology = J. Appl. Psychol. Journal of Applied Remote Sensing = J Appl Remote Sens Journal of Applied Remote Sensing = J. Appl. Remote Sens. Journal of Applied Research and Technology = J Appl Res Technol Journal of Applied Research and Technology = J. Appl. Res. Technol. Journal of Applied Research in Intellectual Disabilities = J Appl Res Intellect Journal of Applied Research in Intellectual Disabilities = J. Appl. Res. Intellect. Journal of Applied Science and Engineering-section A Electrical Power and Information Systems = J Appl Sci Eng-a Journal of Applied Science and Engineering-section A Electrical Power and Information Systems = J. Appl. Sci. Eng-a. Journal of applied social psychology = J Appl Soc Psychol Journal of Applied Social Psychology = J Appl Soc Psychol Journal of Applied Social Psychology = J. Appl. Soc. Psychol. Journal of Applied Social Science Studies=J. Appl. Soc. Sci. Stud. Journal of Applied Spectroscopy = J Appl Spectrosc Journal of Applied Spectroscopy = J. Appl. Spectrosc. Journal of Applied Sport Psychology = J Appl Sport Psychol Journal of Applied Sport Psychology = J. Appl. Sport Psychol. Journal of Applied Statistical Science = J. Appl. Statist. Sci. Journal of applied statistics = J Appl Stat Journal of Applied Statistics = J Appl Stat Journal of Applied Statistics = J. Appl. Stat. Journal of Applied Statistics = J. Appl. Statist. Journal of Applied Statistics=J. Appl. Statist. Journal of Applied Systems Analysis = J. Appl. Syst. Anal. Journal of Applied Toxicology=J Appl Toxicol;; Journal of Applied Toxicology = J Appl Toxicol Journal of Applied Toxicology = J. Appl. Toxicol. Journal of applied toxicology : JAT = J Appl Toxicol Journal of Approximation Theory = J. Approx. Theory Journal of Approximation Theory = J Approx Theory Journal of Approximation Theory = J. Approx. Theory Journal of aquatic animal health = J Aquat Anim Health Journal of Aquatic Animal Health = J Aquat Anim Health Journal of Aquatic Animal Health = J. Aquat. Anim. Health Journal of Aquatic Food Product Technology = J Aquat Food Prod T Journal of Aquatic Food Product Technology = J. Aquat. Food Prod. T. Journal of Aquatic Food Product Technology = J. Aquat. Food Prod. Technol. Journal of Aquatic Plant Management = J Aquat Plant Manage Journal of Aquatic Plant Management = J. Aquat. Plant Manage. Journal of Arab affairs = J Arab Aff Journal of Arab Affairs = J Arab Aff Journal of Arab Affairs = J. Arab Aff. Journal of Arabic Literature = J Arabic Lit Journal of Arabic Literature = J. Arabic Lit. Journal of Arachnology = J Arachnol Journal of Arachnology = J. Arachnol. Journal of Archaeological Method and Theory = J Archaeol Method Th Journal of Archaeological Method and Theory = J. Archaeol. Method Th. Journal of Archaeological Research = J Archaeol Res Journal of Archaeological Research = J. Archaeol. Res. Journal of Archaeological Science = J. Archaeolog. Sci. Journal of archaeological science = J Archaeol Sci Journal of Archaeological Science = J Archaeol Sci Journal of Archaeological Science = J. Archaeol. Sci. Journal of Archaeological Science = JASc Journal of architectural and planning research = J Archit Plann Res Journal of Architectural and Planning Research = J Archit Plan Res Journal of Architectural and Planning Research = J. Archit. Plan. Res. Journal of Architectural Conservation = J Archit Conserv Journal of Architectural Conservation = J. Archit. Conserv. Journal of Architectural Education = J Archit Educ Journal of Architectural Education = J. Archit. Educ. Journal of Architectural Engineering = J. Archit. Eng. Journal of Architecture = J Architecture Journal of Architecture = J. Architecture Journal of arid environments = J Arid Environ Journal of Arid Environments = J Arid Environ Journal of Arid Environments = J. Arid Environ. Journal of Arid Environments = J. Arid. Environ. Journal of Art & Design Education = J Art Design Educ Journal of Art & Design Education = J. Art Design Educ. Journal of Arthroplasty=J Arthroplasty;; Journal of Arthroplasty = J Arthroplasty Journal of Arthroplasty = J. Arthroplasty Journal of Artificial Intelligence Research = J. Artificial Intelligence Res. Journal of Artificial Intelligence Research = J Artif Intell Res Journal of Artificial Intelligence Research = J. Artif. Intell. Res. Journal of Artificial Organs = J Artif Organs Journal of Artificial Organs = J. Artif. Organs Journal of artificial organs : the official journal of the Japanese Society for Artificial Organs = J Artif Organs Journal of Arts Management and Law = J Art Manage Law Journal of Arts Management and Law = J. Art. Manage. Law Journal of Arts Management Law and Society = J Art Manag Law Soc Journal of Arts Management Law and Society = J. Art. Manag. Law Soc. Journal of Asian and African studies = J Asian Afr Stud Journal of Asian and African Studies = J Asian Afr Stud Journal of Asian and African Studies = J. Asian Afr. Stud. Journal of Asian Architecture and Building Engineering = J Asian Archit Build Journal of Asian Architecture and Building Engineering = J. Asian Archit. Build. Journal of Asian Earth Sciences = J Asian Earth Sci Journal of Asian Earth Sciences = J. Asian Earth Sci. Journal of Asian economics = J Asian Econ Journal of Asian Economics=J. Asian Econ. Journal of Asian History = J Asian Hist Journal of Asian History = J. Asian Hist. Journal of Asian natural products research = J Asian Nat Prod Res Journal of Asian Natural Products Research = J Asian Nat Prod Res Journal of Asian Natural Products Research = J. Asian Nat. Prod. Res. Journal of Asian Studies=J. Asian Stud. Journal of Asian Studies = J Asian Stud Journal of Asian Studies = J. Asian Stud. Journal of Asia-Pacific Business=J. Asia-Pacific Bus. Journal of Asia-Pacific Entomology = J. Asia-Pac. Entomol. Journal of Assisted Reproduction and Genetics = J Assist Reprod Gen Journal of Assisted Reproduction and Genetics = J. Assist. Reprod. Gen. Journal of assisted reproduction and genetics = J Assist Reprod Genet Journal of Assisted Reproduction and Genetics=J Assist Reprod Genet;; Journal of Assisted Reproduction and Genetics = J. Assist. Reprod. Genet. Journal of Association of Physicians of India = J Assoc Physician I Journal of Association of Physicians of India = J. Assoc. Physician. I. Journal of Asthma=J Asthma;; Journal of Asthma = J Asthma Journal of Asthma = J. Asthma Journal of Asthma Research = J Asthma Res Journal of Asthma Research = J. Asthma Res. Journal of ASTM International = J. ASTM Int. Journal of Astronautical Sciences = J. Astronaut. Sci. Journal of Astrophysics and Astronomy = J Astrophys Astron Journal of Astrophysics and Astronomy = J. Astrophys. Astron. Journal of atherosclerosis and thrombosis = J Atheroscler Thromb Journal of Atherosclerosis and Thrombosis=J Atheroscler Thromb;; Journal of Atherosclerosis and Thrombosis = J Atheroscler Thromb Journal of Atherosclerosis and Thrombosis = J. Atheroscler. Thromb. Journal of atherosclerosis research = J Atheroscler Res Journal of Atherosclerosis Research = J Atheroscler Res Journal of Atherosclerosis Research = J. Atheroscler. Res. Journal of athletic training = J Athl Train Journal of Athletic Training = J Athl Training Journal of Athletic Training = J. Athl. Training Journal of Atmospheric and Oceanic Technology = J. Atmos. Oceanic Technol. Journal of Atmospheric and Oceanic Technology = J Atmos Ocean Tech Journal of Atmospheric and Oceanic Technology = J. Atmos. Ocean. Tech. Journal of Atmospheric and Solar-terrestrial Physics = J Atmos Sol-terr Phy Journal of Atmospheric and Solar-terrestrial Physics = J. Atmos. Sol-terr. Phy. Journal of Atmospheric and Solar-Terrestrial Physics = J. Atmos. Sol. Terr. Phys. Journal of Atmospheric and Terrestrial Physics = J Atmos Terr Phys Journal of Atmospheric and Terrestrial Physics = J. Atmos. Terr. Phys. Journal of atmospheric chemistry = J Atmos Chem Journal of Atmospheric Chemistry = J Atmos Chem Journal of Atmospheric Chemistry = J. Atmos. Chem. Journal of Atmospheric Science = J. Atmos. Sci. Journal of attention disorders = J Atten Disord Journal of Attention Disorders = J Atten Disord Journal of Attention Disorders = J. Atten. Disord. Journal of Audiovisual Media in Medicine = J Audiov Media Med Journal of Audiovisual Media in Medicine = J. Audiov. Media Med. Journal of Audiovisual Media In Medicine=J Audiov Media Med;; Journal of Auditory Research = J Aud Res Journal of Auditory Research = J. Aud. Res. Journal of Australian Political Economy = J Aust Polit Econ Journal of Australian Political Economy = J. Aust. Polit. Econ. Journal of Australian Political Economy=J. Australian Polit. Economy Journal of Australian Studies = J Aust Stud Journal of Australian Studies = J. Aust. Stud. Journal of Autism and Childhood Schizophrenia = J Autism Child Schiz Journal of Autism and Childhood Schizophrenia = J. Autism Child. Schiz. Journal of autism and childhood schizophrenia = J Autism Child Schizophr Journal of Autism and Childhood Schizophrenia = J. Autism Child. Schizophr. Journal of autism and developmental disorders = J Autism Dev Disord Journal of Autism and Developmental Disorders=J Autism Dev Disord;; Journal of Autism and Developmental Disorders = J Autism Dev Disord Journal of Autism and Developmental Disorders = J. Autism Dev. Disord. Journal of autoimmune diseases = J Autoimmune Dis Journal of autoimmunity = J Autoimmun Journal of Autoimmunity=J Autoimmun;; Journal of Autoimmunity = J Autoimmun Journal of Autoimmunity = J. Autoimmun. Journal of Automata, Languages and Combinatorics = J. Autom. Lang. Comb. Journal of Automated Methods & Management in Chemistry = J Autom Method Manag Journal of Automated Methods & Management in Chemistry = J. Autom. Method. Manag. Journal of automated methods & management in chemistry = J Autom Methods Manag Chem Journal of Automated Methods & Management in Chemistry = J. Autom. Methods Manage. Chem. Journal of Automated Reasoning = J. Automat. Reason. Journal of Automated Reasoning = J Autom Reasoning Journal of Automated Reasoning = J. Autom. Reasoning Journal of Automatic Chemistry = J Autom Chem Journal of Automatic Chemistry = J. Autom. Chem. Journal of Automation and Information Sciences = J. Automat. Inform. Sci. Journal of Automation and Information Sciences = J Automat Inf Sci Journal of Automation and Information Sciences = J. Automat. Inf. Sci. Journal of autonomic pharmacology = J Auton Pharmacol Journal of Autonomic Pharmacology=J Auton Pharmacol;; Journal of Autonomic Pharmacology = J Auton Pharmacol Journal of Autonomic Pharmacology = J. Auton. Pharmacol. Journal of Avian Biology = J Avian Biol Journal of Avian Biology = J. Avian Biol. Journal of avian medicine and surgery = J Avian Med Surg Journal of Avian Medicine and Surgery = J Avian Med Surg Journal of Avian Medicine and Surgery = J. Avian Med. Surg. Journal of Ayn Rand Studies = J Ayn Rand Stud Journal of Ayn Rand Studies = J. Ayn Rand Stud. Journal of Ayub Medical College, Abbottabad : JAMC = J Ayub Med Coll Abbottabad Journal of Back and Musculoskeletal Rehabilitation = J Back Musculoskelet Journal of Back and Musculoskeletal Rehabilitation = J. Back Musculoskelet. Journal of back and musculoskeletal rehabilitation = J Back Musculoskeletal Rehabil Journal of bacteriology = J Bacteriol Journal of Bacteriology=J Bacteriol;; Journal of Bacteriology = J Bacteriol Journal of Bacteriology = J. Bacteriol. Journal of Balkan and Near Eastern Studies = J Balk Near East Stu Journal of Balkan and Near Eastern Studies = J. Balk. Near East. Stu. Journal of Baltic Science Education = J Balt Sci Educ Journal of Baltic Science Education = J. Balt. Sci. Educ. Journal of Baltic Studies = J Baltic Stud Journal of Baltic Studies = J. Baltic Stud. Journal of Baltic studies = J Balt Stud Journal of Band Research = J Band Res Journal of Band Research = J. Band Res. Journal of Banking and Finance=J. Banking Finance Journal of Banking & Finance = J Bank Financ Journal of Banking & Finance = J. Bank. Financ. Journal of Bank Research=J. Bank Res. Journal of basic and clinical physiology and pharmacology = J Basic Clin Physiol Pharmacol Journal of Basic and Clinical Physiology and Pharmacology = J. Basic Clin. Physiol. Pharmacol. Journal of Basic and Clinical Physiology And Pharmacology=J Basic Clin Physiol Pharmacol;; Journal of Basic Engineering = J Basic Eng-t Asme Journal of Basic Engineering = J. Basic Eng-t. Asme. Journal of Basic Microbiology = J Basic Microb Journal of Basic Microbiology = J. Basic Microb. Journal of basic microbiology = J Basic Microbiol Journal of Basic Microbiology=J Basic Microbiol;; Journal of Basic Microbiology = J. Basic Microbiol. Journal of Beckett Studies = J Beckett Stud Journal of Beckett Studies = J. Beckett Stud. Journal of behavioral assessment = J Behav Assess Journal of Behavioral Assessment = J Behav Assess Journal of Behavioral Assessment = J. Behav. Assess. Journal of Behavioral Decision Making = J Behav Decis Making Journal of Behavioral Decision Making = J. Behav. Decis. Making Journal of Behavioral Economics=J. Behavioral Econ. Journal of Behavioral Health Services and Research=J Behav Health Serv Res;; Journal of Behavioral Health Services and Research = J. Behav. Health Serv. Res. Journal of Behavioral Health Services & Research = J Behav Health Ser R Journal of Behavioral Health Services & Research = J. Behav. Health Ser. R. Journal of behavioral medicine = J Behav Med Journal of Behavioral Medicine=J Behav Med;; Journal of Behavioral Medicine = J Behav Med Journal of Behavioral Medicine = J. Behav. Med. Journal of Behavior Therapy and Experimental Psychiatry = J Behav Ther Exp Psy Journal of Behavior Therapy and Experimental Psychiatry = J. Behav. Ther. Exp. Psy. Journal of behavior therapy and experimental psychiatry = J Behav Ther Exp Psychiatry Journal of Behavior Therapy and Experimental Psychiatry=J Behav Ther Exp Psychiatry;; Journal of Behavior Therapy and Experimental Psychiatry = J. Behav. Ther. Exp. Psychiatry Journal of Beijing Institute of Technology (Chinese Edition) = J. Beijing Inst. Technol. (Chin. Ed.) Journal of Beliefs & Values-studies in Religion & Education = J Beliefs Values Journal of Beliefs & Values-studies in Religion & Education = J. Beliefs Values. Journal of Biblical ethics in medicine = J Biblic Ethics Med Journal of Biblical Literature = J Biblical Lit Journal of Biblical Literature = J. Biblical Lit. Journal of Biblical Literature = JBL Journal of Bioactive and Bocompatible Polymers = J. Bioact. Compat. Polym. Journal of Bioactive and Compatable Polymers = J. Bioact. Compat. Polym. Journal of Bioactive and Compatible Polymers = J Bioact Compat Pol Journal of Bioactive and Compatible Polymers = J. Bioact. Compat. Pol. Journal of bioactive and compatible polymers = J Bioact Compat Polym Journal of Biobased Materials and Bioenergy = J Biobased Mater Bio Journal of Biobased Materials and Bioenergy = J. Biobased Mater. Bio. Journal of Biobased Materials and Bioenergy = J. Biobased Mater. Bioenergy Journal of Biochemical and Biophysical Methods = J Biochem Bioph Meth Journal of Biochemical and Biophysical Methods = J. Biochem. Bioph. Meth. Journal of Biochemical and Biophysical Methods = J. Biochem. Bioph. Methods Journal of biochemical and biophysical methods = J Biochem Biophys Methods Journal of Biochemical and Biophysical Methods=J Biochem Biophys Methods;; Journal of Biochemical and Biophysical Methods = J. Biochem. Biophys. Methods Journal of Biochemical and Microbiological Technology and Engineering = J Biochem Microbiol Journal of Biochemical and Microbiological Technology and Engineering = J. Biochem. Microbiol. Journal of Biochemical and Molecular Toxicology = J Biochem Mol Toxic Journal of Biochemical and Molecular Toxicology = J. Biochem. Mol. Toxic. Journal of biochemical and molecular toxicology = J Biochem Mol Toxicol Journal of Biochemical and Molecular Toxicology=J Biochem Mol Toxicol;; Journal of Biochemical and Molecular Toxicology = J. Biochem. Mol. Toxicol. Journal of biochemical toxicology = J Biochem Toxicol Journal of Biochemical Toxicology = J Biochem Toxicol Journal of Biochemical Toxicology = J. Biochem. Toxicol. Journal of biochemistry and molecular biology = J Biochem Mol Biol Journal of Biochemistry and Molecular Biology = J Biochem Mol Biol Journal of Biochemistry and Molecular Biology = J. Biochem. Mol. Biol. Journal of Biochemistry = J Biochem Journal of Biochemistry = J. Biochem. Journal of biochemistry = J Biochem (Tokyo) Journal of Biochemistry = J Biochem-tokyo Journal of Biochemistry = J. Biochem-tokyo. Journal of Biochemistry=J Biochem (Tokyo);; Journal of Biochemistry = J. Biochem. (Tokyo) Journal of Biochemistry, Molecular Biology, and Biophysics = J. Biochem. Mol. Biol. Biophys. Journal of biochemistry, molecular biology, and biophysics : JBMBB : the official journal of the Federation of Asian and Oceanian Biochemists and Molecular Biologists (FAOBMB) = J Biochem Mol Biol Biophys Journal of Biochemistry (Tokyo, Japan) = J. Biochem. (Tokyo, Jpn.) Journal of Biocommunication=J Biocommun;; Journal of Biocommunication = J. Biocommun. Journal of Bioeconomics=J. Bioecon. Journal of Bioelectricity = J Bioelectricity Journal of Bioelectricity = J. Bioelectricity Journal of bioenergetics and biomembranes = J Bioenerg Biomembr Journal of Bioenergetics and Biomembranes=J Bioenerg Biomembr;; Journal of Bioenergetics and Biomembranes = J Bioenerg Biomembr Journal of Bioenergetics and Biomembranes = J. Bioenerg. Biomembr. Journal of bioenergetics = J Bioenerg Journal of Bioenergetics = J Bioenerg Journal of Bioenergetics = J. Bioenerg. Journal of bioengineering = J Bioeng Journal of Bioengineering = J Bioeng Journal of Bioengineering = J. Bioeng. Journal of Bioethical Inquiry = J Bioethic Inq Journal of Bioethical Inquiry = J. Bioethic. Inq. Journal of bioethical inquiry = J Bioeth Inq Journal of bioethics = J Bioeth Journal of Bioethics = J. Bioeth. Journal of biogeography = J Biogeogr Journal of Biogeography = J Biogeogr Journal of Biogeography = J. Biogeogr. Journal of bioinformatics and computational biology = J Bioinform Comput Biol Journal of Bioinformatics and Computational Biology = J. Bioinform. Comput. Biol. Journal of Biological Chemistry=J Biol Chem;; Journal of Biological Chemistry = J Biol Chem Journal of Biological Chemistry = J. Biol. Chem. Journal of Biological Dynamics = J. Biol. Dyn. Journal of biological education = J Biol Educ Journal of Biological Education = J Biol Educ Journal of Biological Education = J. Biol. Educ. Journal of biological inorganic chemistry : JBIC : a publication of the Society of Biological Inorganic Chemistry = J Biol Inorg Chem Journal of Biological Inorganic Chemistry = J Biol Inorg Chem Journal of Biological Inorganic Chemistry = J. Biol. Inorg. Chem. Journal of biological photography = J Biol Photogr Journal of Biological Photography=J Biol Photogr;; Journal of Biological Photography = J. Biol. Photogr. Journal of Biological Physics = J Biol Phys Journal of Biological Physics = J. Biol. Phys. Journal of Biological Psychology = J Biol Psychol Journal of Biological Psychology = J. Biol. Psychol. Journal of Biological Regulators and Homeostatic Agents = J Biol Reg Homeos Ag Journal of Biological Regulators and Homeostatic Agents = J. Biol. Reg. Homeos. Ag. Journal of biological regulators and homeostatic agents = J Biol Regul Homeost Agents Journal of Biological Regulators and Homeostatic Agents=J Biol Regul Homeost Agents;; Journal of Biological Regulators and Homeostatic Agents = J. Biol. Regul. Homeost. Agents Journal of Biological Research-thessaloniki = J Biol Res-thessalon Journal of Biological Research-thessaloniki = J. Biol. Res-thessalon. Journal of Biological Response Modifiers = J Biol Resp Modif Journal of Biological Response Modifiers = J. Biol. Resp. Modif. Journal of biological response modifiers = J Biol Response Mod Journal of Biological Response Modifiers = J. Biol. Response Mod. Journal of Biological Rhythms = J Biol Rhythm Journal of Biological Rhythms = J. Biol. Rhythm. Journal of biological rhythms = J Biol Rhythms Journal of Biological Rhythms=J Biol Rhythms;; Journal of Biological Rhythms = J. Biol. Rhythms Journal of biological standardization = J Biol Stand Journal of Biological Standardization = J Biol Stand Journal of Biological Standardization = J. Biol. Stand. Journal of Biological Systems = J Biol Syst Journal of Biological Systems = J. Biol. Syst. Journal of biology = J Biol Journal of Biology = J. Biol. Journal of Bioluminescence and Chemiluminescence = J Biolum Chemilum Journal of Bioluminescence and Chemiluminescence = J. Biolum. Chemilum. Journal of bioluminescence and chemiluminescence = J Biolumin Chemilumin Journal of Bioluminescence and Chemiluminescence=J Biolumin Chemilumin;; Journal of Bioluminescence and Chemiluminescence = J. Biolumin. Chemilumin. Journal of biomaterials applications = J Biomater Appl Journal of Biomaterials Applications=J Biomater Appl;; Journal of Biomaterials Applications = J Biomater Appl Journal of Biomaterials Applications = J. Biomater. Appl. Journal of biomaterials science. Polymer edition = J Biomater Sci Polym Ed Journal of Biomaterials Science Polymer Edition = J. Biomater. Sci., Polym. Ed. Journal of Biomaterials Science, Polymer Edition=J Biomater Sci Polym Ed;; Journal of Biomaterials Science, Polymer Edition = J. Biomater. Sci. Polym. Ed. Journal of Biomaterials Science, Polymer Edition = J. Biomater. Sci., Polym. Ed. Journal of Biomaterials Science-polymer Edition = J Biomat Sci-polym E Journal of Biomaterials Science-polymer Edition = J. Biomat. Sci-polym. E. Journal of Biomathematics = J. Biomath. Journal of biomechanical engineering = J Biomech Eng Journal of Biomechanical Engineering=J Biomech Eng;; Journal of Biomechanical Engineering = J. Biomech. Eng. Journal of Biomechanical Engineering-transactions of The Asme = J Biomech Eng-t Asme Journal of Biomechanical Engineering-transactions of The Asme = J. Biomech. Eng-t. Asme Journal of biomechanics = J Biomech Journal of Biomechanics=J Biomech;; Journal of Biomechanics = J Biomech Journal of Biomechanics = J. Biomech. Journal of Biomedial Materials Research = J. Biomed. Mater. Res. Journal of Biomedial Materials Research Part A = J. Biomed. Mater. Res. Part A Journal of Biomedial Materials Research Part B Applied Biomaterials = J. Biomed. Mater. Res. Part B Journal of Biomedial Optics = J. Biomed. Opt. Journal of biomedical discovery and collaboration = J Biomed Discov Collab Journal of Biomedical Discovery and Collaboration = J. Biomed. Discovery Collab. Journal of biomedical engineering = J Biomed Eng Journal of Biomedical Engineering = J Biomed Eng Journal of Biomedical Engineering = J. Biomed. Eng. Journal of biomedical informatics = J Biomed Inform Journal of Biomedical Informatics = J Biomed Inform Journal of Biomedical Informatics = J. Biomed. Inform. Journal of Biomedical Materials Research-applied Biomaterials = J Biomed Mater Res-a Journal of Biomedical Materials Research-applied Biomaterials = J. Biomed. Mater. Res-a. Journal of biomedical materials research = J Biomed Mater Res Journal of Biomedical Materials Research=J Biomed Mater Res;; Journal of Biomedical Materials Research = J Biomed Mater Res Journal of Biomedical Materials Research = J. Biomed. Mater. Res. Journal of biomedical materials research. Part A = J Biomed Mater Res A Journal of Biomedical Materials Research Part A = J Biomed Mater Res A Journal of Biomedical Materials Research Part A = J. Biomed. Mater. Res. A Journal of Biomedical Materials Research. Part A = J. Biomed. Mater. Res. A Journal of Biomedical Materials Research, Part A = J. Biomed. Mater. Res., Part A Journal of Biomedical Materials Research Part B-applied Biomaterials = J Biomed Mater Res B Journal of Biomedical Materials Research Part B-applied Biomaterials = J. Biomed. Mater. Res. B. Journal of biomedical materials research. Part B, Applied biomaterials = J Biomed Mater Res B Appl Biomater Journal of Biomedical Materials Research. Part B, Applied Biomaterials = J. Biomed. Mater. Res. B Appl. Biomater. Journal of Biomedical Materials Research, Part B: Applied Biomaterials = J. Biomed. Mater. Res., Part B Journal of Biomedical Nanotechnology = J Biomed Nanotechnol Journal of Biomedical Nanotechnology = J. Biomed. Nanotechnol. Journal of biomedical optics = J Biomed Opt Journal of Biomedical Optics = J Biomed Opt Journal of Biomedical Optics = J. Biomed. Opt. Journal of Biomedical Science and Engineering = J. Biomed. Sci. Eng. Journal of biomedical science = J Biomed Sci Journal of Biomedical Science = J Biomed Sci Journal of Biomedical Science = J. Biomed. Sci. Journal of Biomedicine and Biotechnology = J Biomed Biotechnol Journal of Biomedicine and Biotechnology = J. Biomed. Biotechnol. Journal of biomedicine & biotechnology = J Biomed Biotechnol Journal of Biomimetics Biomaterials and Tissue Engineering = J. Biomimetics Biomater. Tissue Eng. Journal of biomolecular NMR = J Biomol NMR Journal of Biomolecular Nmr = J Biomol Nmr Journal of Biomolecular Nmr = J. Biomol. Nmr Journal of Biomolecular NMR=J Biomol NMR;; Journal of Biomolecular NMR = J. Biomol. NMR Journal of Biomolecular Screening = J Biomol Screen Journal of Biomolecular Screening = J. Biomol. Screen. Journal of Biomolecular Screening = J. Biomol. Screening Journal of biomolecular screening : the official journal of the Society for Biomolecular Screening = J Biomol Screen Journal of Biomolecular Structure and Dynamics=J Biomol Struct Dyn;; Journal of Biomolecular Structure and Dynamics = J. Biomol. Struct. Dyn. Journal of biomolecular structure & dynamics = J Biomol Struct Dyn Journal of Biomolecular Structure & Dynamics = J Biomol Struct Dyn Journal of Biomolecular Structure & Dynamics = J. Biomol. Struct. Dyn. Journal of biomolecular techniques : JBT = J Biomol Tech Journal of Bionic Engineering = J Bionic Eng Journal of Bionic Engineering = J. Bionic Eng. Journal of biopharmaceutical statistics = J Biopharm Stat Journal of Biopharmaceutical Statistics=J Biopharm Stat;; Journal of Biopharmaceutical Statistics = J Biopharm Stat Journal of Biopharmaceutical Statistics = J. Biopharm. Stat. Journal of Biopharmaceutical Statistics = J. Pharm. Stat. Journal of Biophotonics = J Biophotonics Journal of Biophotonics = J. Biophotonics Journal of Biophysical and Biochemical Cytology = J Biophys Biochem Cy Journal of Biophysical and Biochemical Cytology = J. Biophys. Biochem. Cy. Journal of Biorheology = J. Biorheol. Journal of bioscience and bioengineering = J Biosci Bioeng Journal of Bioscience and Bioengineering = J Biosci Bioeng Journal of Bioscience and Bioengineering = J. Biosci. Bioeng. Journal of biosciences = J Biosci Journal of Biosciences = J. Biosci. Journal of Biosciences = J Bioscience Journal of Biosciences = J. Bioscience. Journal of Biosciences = J Biosciences Journal of Biosciences = J. Biosciences Journal of biosocial science = J Biosoc Sci Journal of Biosocial Science=J Biosoc Sci;; Journal of Biosocial Science = J Biosoc Sci Journal of Biosocial Science = J. Biosoc. Sci. Journal of biosocial science. Supplement = J Biosoc Sci Suppl Journal of Biosocial Science. Supplement = J. Biosoc. Sci. Suppl. Journal of biotechnology = J Biotechnol Journal of Biotechnology = J Biotechnol Journal of Biotechnology = J. Biotechnol. Journal of Black health perspectives = J Black Health Perspect Journal of Black Psychology = J Black Psychol Journal of Black Psychology = J. Black Psychol. Journal of Blacks in Higher Education = J Blacks High Educ Journal of Blacks in Higher Education = J. Blacks High. Educ. Journal of black studies = J Black Stud Journal of Black Studies = J Black Stud Journal of Black Studies = J. Black Stud. Journal of Bone and Joint Surgery-american Volume = J Bone Joint Surg Am Journal of Bone and Joint Surgery-american Volume = J. Bone Joint Surg. Am. Journal of Bone and Joint Surgery. American Volume=J Bone Joint Surg Am;; Journal of Bone and Joint Surgery. American Volume = J. Bone Joint Surg. Am. Journal of Bone and Joint Surgery-british Volume = J Bone Joint Surg Br Journal of Bone and Joint Surgery-british Volume = J. Bone Joint Surg. Br. Journal of Bone and Joint Surgery. British Volume=J Bone Joint Surg Br;; Journal of Bone and Joint Surgery. British Volume = J. Bone Joint Surg. Br. Journal of Bone and Joint Surgery = J Bone Joint Surg Journal of Bone and Joint Surgery = J. Bone Joint Surg. Journal of bone and mineral metabolism = J Bone Miner Metab Journal of Bone and Mineral Metabolism = J Bone Miner Metab Journal of Bone and Mineral Metabolism = J. Bone Miner. Metab. Journal of Bone and Mineral Research=J Bone Miner Res;; Journal of Bone and Mineral Research = J Bone Miner Res Journal of Bone and Mineral Research = J. Bone Miner. Res. Journal of bone and mineral research : the official journal of the American Society for Bone and Mineral Research = J Bone Miner Res Journal of brachial plexus and peripheral nerve injury = J Brachial Plex Peripher Nerve Inj Journal of Brain Research-journal Fur Hirnforschung = J Brain Res Journal of Brain Research-journal Fur Hirnforschung = J. Brain Res. Journal of Brain Science = J Brain Sci Journal of Brain Science = J. Brain Sci. Journal of Breast Cancer = J Breast Canc Journal of Breast Cancer = J. Breast Canc. Journal of Breath Research = J. Breath Res. Journal of Bridge Engineering = J Bridge Eng Journal of Bridge Engineering = J. Bridge Eng. Journal of British Cinema and Television = J Brit Cine Telev Journal of British Cinema and Television = J. Brit. Cine. Telev. Journal of British Studies = J Brit Stud Journal of British Studies = J. Brit. Stud. Journal of Broadcasting & Electronic Media = J Broadcast Electron Journal of Broadcasting & Electronic Media = J. Broadcast. Electron. Journal of Broadcasting = J Broadcasting Journal of Broadcasting = J. Broadcasting Journal of bryology = J Bryol Journal of Bryology = J Bryol Journal of Bryology = J. Bryol. Journal of Buddhist ethics = J Buddh Ethics Journal of Building Performance Simulation = J. Building Perform. Simul. Journal of Building Physics = J. Building Phys. Journal of Building Physics = J Build Phys Journal of Building Physics = J. Build. Phys. Journal of Buon = J Buon Journal of Buon = J. Buon Journal of B.U.ON. : official journal of the Balkan Union of Oncology = J BUON Journal of Burn Care and Rehabilitation=J Burn Care Rehabil;; Journal of Burn Care and Rehabilitation = J. Burn Care Rehabil. Journal of Burn Care and Research = J. Burn Care Res. Journal of Burn Care & Rehabilitation = J Burn Care Rehabil Journal of Burn Care & Rehabilitation = J. Burn Care Rehabil. Journal of Burn Care & Research = J Burn Care Res Journal of Burn Care & Research = J. Burn Care Res. Journal of burn care & research : official publication of the American Burn Association = J Burn Care Res Journal of burns and wounds = J Burns Wounds Journal of Business and Economic Statistics=J. Bus. Econ. Statist. Journal of business and psychology = J Bus Psychol Journal of Business and Psychology = J Bus Psychol Journal of Business and Psychology = J. Bus. Psychol. Journal of Business and Technical Communication = J Bus Tech Commun Journal of Business and Technical Communication = J. Bus. Tech. Commun. Journal of business (Chicago, Ill.) = J Bus Journal of Business Communication = J Bus Commun Journal of Business Communication = J. Bus. Commun. Journal of Business Economics and Management = J Bus Econ Manag Journal of Business Economics and Management = J. Bus. Econ. Manag. Journal of Business & Economic Statistics = J. Bus. Econom. Statist. Journal of Business & Economic Statistics = J Bus Econ Stat Journal of Business & Economic Statistics = J. Bus. Econ. Stat. Journal of business ethics : JBE = J Bus Ethics Journal of Business Ethics = J Bus Ethics Journal of Business Ethics = J. Bus. Ethics Journal of Business Finance & Accounting = J Bus Finan Account Journal of Business Finance & Accounting = J. Bus. Finan. Account. Journal of Business Finance = J Bus Finan Journal of Business Finance = J. Bus. Finan. Journal of Business & Industrial Marketing = J Bus Ind Mark Journal of Business & Industrial Marketing = J. Bus. Ind. Mark. Journal of Business=J. Bus. Journal of Business = J Bus Journal of Business = J. Bus. Journal of Business Law = J Bus Law Journal of Business Law = J. Bus. Law Journal of Business Logistics = J Bus Logist Journal of Business Logistics = J. Bus. Logist. Journal of Business of The University of Chicago = J Bus Univ Chic Journal of Business of The University of Chicago = J. Bus. Univ. Chic. Journal of business research = J Bus Res Journal of Business Research=J. Bus. Res. Journal of Business Research = J Bus Res Journal of Business Research = J. Bus. Res. Journal of Business Strategy = J. Bus. Strategy Journal of Business-to-business Marketing = J Bus-bus Mark Journal of Business-to-business Marketing = J. Bus-bus. Mark. Journal of Business Venturing = J Bus Venturing Journal of Business Venturing = J. Bus. Venturing Journal of California and Great Basin anthropology = J Calif Gt Basin Anthropol Journal of Camel Practice and Research = J Camel Pract Res Journal of Camel Practice and Research = J. Camel Pract. Res. Journal of Canadian Art History-annales D Histoire De L Art Canadien = J Can Art Hist Journal of Canadian Art History-annales D Histoire De L Art Canadien = J. Can. Art Hist. Journal of Canadian Fiction = J Can Fiction Journal of Canadian Fiction = J. Can. Fiction Journal of Canadian Petroleum Technology = J Can Petrol Technol Journal of Canadian Petroleum Technology = J. Can. Petrol. Technol. Journal of Canadian Petroleum Technology = J. Can. Pet. Technol. Journal of Canadian Studies = J Can Studies Journal of Canadian Studies = J. Can. Studies Journal of Canadian studies. Revue d'etudes canadiennes = J Can Stud Journal of Canadian Studies-revue D Etudes Canadiennes = J Can Stud Journal of Canadian Studies-revue D Etudes Canadiennes = J. Can. Stud. Journal of Cancer Education=J Cancer Educ;; Journal of Cancer Education = J Cancer Educ Journal of Cancer Education = J. Cancer Educ. Journal of cancer education : the official journal of the American Association for Cancer Education = J Cancer Educ Journal of cancer epidemiology and prevention = J Cancer Epidemiol Prev Journal of Cancer Epidemiology and Prevention = J. Cancer Epidemiol. Prev. Journal of Cancer Molecules = J. Cancer Mol. Journal of Cancer Research and Clinical Oncology = J Cancer Res Clin Journal of Cancer Research and Clinical Oncology = J. Cancer Res. Clin. Journal of cancer research and clinical oncology = J Cancer Res Clin Oncol Journal of Cancer Research and Clinical Oncology=J Cancer Res Clin Oncol;; Journal of Cancer Research and Clinical Oncology = J. Cancer Res. Clin. Oncol. Journal of cancer research and therapeutics = J Cancer Res Ther Journal of Cancer Research and Therapeutics = J Canc Res Ther Journal of Cancer Research and Therapeutics = J. Canc. Res. Ther. Journal of Capillary Electrophoresis and Microchip Technology = J. Capillary Electrophor. Microchip Technol. Journal of capillary electrophoresis and microchip technology = J Capill Electrophor Microchip Technol Journal of Capillary Electrophoresis = J Capillary Electrop Journal of Capillary Electrophoresis = J. Capillary Electrop. Journal of capillary electrophoresis = J Capillary Electrophor Journal of Capillary Electrophoresis=J Capillary Electrophor;; Journal of Capillary Electrophoresis = J. Capillary Electrophor. Journal of Carbohydrate Chemistry = J Carbohyd Chem Journal of Carbohydrate Chemistry = J. Carbohyd. Chem. Journal of carbohydrate chemistry = J Carbohydr Chem Journal of Carbohydrate Chemistry = J. Carbohydr. Chem. Journal of Carbohydrates-nucleosides-nucleotides = J Carb-nucleos-nucl Journal of Carbohydrates-nucleosides-nucleotides = J. Carb-nucleos-nucl. Journal of carcinogenesis = J Carcinog Journal of cardiac failure = J Card Fail Journal of Cardiac Failure=J Card Fail;; Journal of Cardiac Failure = J Card Fail Journal of Cardiac Failure = J. Card. Fail. Journal of Cardiac Surgery = J Cardiac Surg Journal of Cardiac Surgery = J. Cardiac Surg. Journal of cardiac surgery = J Card Surg Journal of Cardiac Surgery=J Card Surg;; Journal of Cardiac Surgery = J. Card. Surg. Journal of cardiography = J Cardiogr Journal of Cardiography = J. Cardiogr. Journal of cardiography. Supplement = J Cardiogr Suppl Journal of Cardiography. Supplement = J. Cardiogr. Suppl. Journal of cardiology = J Cardiol Journal of Cardiology=J Cardiol;; Journal of Cardiology = J Cardiol Journal of Cardiology = J. Cardiol. Journal of cardiology. Supplement = J Cardiol Suppl Journal of Cardiology. Supplement = J. Cardiol. Suppl. Journal of Cardiopulmonary Rehabilitation and Prevention = J Cardiopulm Rehabil Journal of Cardiopulmonary Rehabilitation and Prevention = J. Cardiopulm. Rehabil. Journal of cardiopulmonary rehabilitation and prevention = J Cardiopulm Rehabil Prev Journal of cardiopulmonary rehabilitation = J Cardiopulm Rehabil Journal of Cardiopulmonary Rehabilitation=J Cardiopulm Rehabil;; Journal of Cardiopulmonary Rehabilitation = J. Cardpulm. Rehabil. Journal of cardiothoracic and vascular anesthesia = J Cardiothorac Vasc Anesth Journal of Cardiothoracic and Vascular Anesthesia=J Cardiothorac Vasc Anesth;; Journal of Cardiothoracic and Vascular Anesthesia = J. Cardiothorac. Vasc. Anesth. Journal of Cardiothoracic and Vascular Anesthesia = J Cardiothor Vasc An Journal of Cardiothoracic and Vascular Anesthesia = J. Cardiothor. Vasc. An. Journal of cardiothoracic anesthesia = J Cardiothorac Anesth Journal of Cardiothoracic Anesthesia = J. Cardiothorac. Anesth. Journal of cardiothoracic surgery = J Cardiothorac Surg Journal of Cardiothoracic Surgery = J Cardiothorac Surg Journal of Cardiothoracic Surgery = J. Cardiothorac. Surg. Journal of Cardiovascular Diagnosis and Procedures = J Cardiovasc Diagn P Journal of Cardiovascular Diagnosis and Procedures = J. Cardiovasc. Diagn. P. Journal of cardiovascular diagnosis and procedures = J Cardiovasc Diagn Proced Journal of Cardiovascular Electrophysiology = J Cardiovasc Electr Journal of Cardiovascular Electrophysiology = J. Cardiovasc. Electr. Journal of cardiovascular electrophysiology = J Cardiovasc Electrophysiol Journal of Cardiovascular Electrophysiology=J Cardiovasc Electrophysiol;; Journal of Cardiovascular Electrophysiology = J. Cardiovasc. Electrophysiol. Journal of Cardiovascular Magnetic Resonance = J Cardiovasc Magn R Journal of Cardiovascular Magnetic Resonance = J. Cardiovasc. Magn. R. Journal of Cardiovascular Magnetic Resonance = J. Cardiovasc. Magn. Reson. Journal of Cardiovascular Magnetic Resonance = J Cardiov Magn Reson Journal of Cardiovascular Magnetic Resonance = J. Cardiov. Magn. Reson. Journal of cardiovascular magnetic resonance : official journal of the Society for Cardiovascular Magnetic Resonance = J Cardiovasc Magn Reson Journal of Cardiovascular Management = J. Cardiovasc. Manag. Journal of cardiovascular medicine (Hagerstown, Md.) = J Cardiovasc Med (Hagerstown) Journal of Cardiovascular Medicine = J Cardiovasc Med Journal of Cardiovascular Medicine = J. Cardiovasc. Med. Journal of Cardiovascular Nursing=J Cardiovasc Nurs;; Journal of Cardiovascular Nursing = J Cardiovasc Nurs Journal of Cardiovascular Nursing = J. Cardiovasc. Nurs. Journal of cardiovascular pharmacology and therapeutics = J Cardiovasc Pharmacol Ther Journal of Cardiovascular Pharmacology and Therapeutics = J. Cardiovasc. Pharmacol. Ther. Journal of Cardiovascular Pharmacology and Therapeutics = J Cardiovasc Pharm T Journal of Cardiovascular Pharmacology and Therapeutics = J. Cardiovasc. Pharm. T. Journal of Cardiovascular Pharmacology = J Cardiovasc Pharm Journal of Cardiovascular Pharmacology = J. Cardiovasc. Pharm. Journal of cardiovascular pharmacology = J Cardiovasc Pharmacol Journal of Cardiovascular Pharmacology=J Cardiovasc Pharmacol;; Journal of Cardiovascular Pharmacology = J. Cardiovasc. Pharmacol. Journal of cardiovascular risk = J Cardiovasc Risk Journal of Cardiovascular Risk=J Cardiovasc Risk;; Journal of Cardiovascular Risk = J Cardiovasc Risk Journal of Cardiovascular Risk = J. Cardiovasc. Risk Journal of Cardiovascular Surgery = J Cardiovasc Surg Journal of Cardiovascular Surgery = J. Cardiovasc. Surg. Journal of Cardiovascular Surgery=J Cardiovasc Surg (Torino);; Journal of Cardiovascular Surgery = J. Cardiovasc. Surg. (Torino) Journal of Cardiovascular Technology = J Cardiovasc Technol Journal of Cardiovascular Technology = J. Cardiovasc. Technol. Journal of Cardiovascular Ultrasonography = J Cardiovasc Ultras Journal of Cardiovascular Ultrasonography = J. Cardiovasc. Ultras. Journal of Career Assessment = J Career Assessment Journal of Career Assessment = J. Career Assessment Journal of Career Development = J Career Dev Journal of Career Development = J. Career Dev. Journal of Caribbean History = J Caribbean Hist Journal of Caribbean History = J. Caribbean Hist. Journal of case management = J Case Manag Journal of Case Management = J. Case Manag. Journal of Catalysis = J Catal Journal of Catalysis = J. Catal. Journal of cataract and refractive surgery = J Cataract Refract Surg Journal of Cataract and Refractive Surgery=J Cataract Refract Surg;; Journal of Cataract and Refractive Surgery = J. Cataract Refract. Surg. Journal of Cataract and Refractive Surgery = J Cataract Refr Surg Journal of Cataract and Refractive Surgery = J. Cataract Refr. Surg. Journal of Cave and Karst Studies = J Cave Karst Stud Journal of Cave and Karst Studies = J. Cave Karst Stud. Journal of Cell Biology=J Cell Biol;; Journal of Cell Biology = J Cell Biol Journal of Cell Biology = J. Cell Biol. Journal of cell science = J Cell Sci Journal of Cell Science=J Cell Sci;; Journal of Cell Science = J Cell Sci Journal of Cell Science = J. Cell Sci. Journal of cell science. Supplement = J Cell Sci Suppl Journal of Cell Science. Supplement=J Cell Sci Suppl;; Journal of Cell Science. Supplement = J. Cell Sci. Suppl. Journal of Cellular and Comparative Physiology = J Cell Compar Physl Journal of Cellular and Comparative Physiology = J. Cell. Compar. Physl. Journal of cellular and comparative physiology = J Cell Comp Physiol Journal of cellular and molecular medicine = J Cell Mol Med Journal of Cellular and Molecular Medicine = J Cell Mol Med Journal of Cellular and Molecular Medicine = J. Cell. Mol. Med. Journal of Cellular Automata = J Cell Autom Journal of Cellular Automata = J. Cell. Autom. Journal of cellular biochemistry = J Cell Biochem Journal of Cellular Biochemistry=J Cell Biochem;; Journal of Cellular Biochemistry = J Cell Biochem Journal of Cellular Biochemistry = J. Cell. Biochem. Journal of cellular biochemistry. Supplement = J Cell Biochem Suppl Journal of Cellular Biochemistry. Supplement=J Cell Biochem Suppl;; Journal of Cellular Biochemistry. Supplement = J. Cell. Biochem. Suppl. Journal of cellular physiology = J Cell Physiol Journal of Cellular Physiology=J Cell Physiol;; Journal of Cellular Physiology = J Cell Physiol Journal of Cellular Physiology = J. Cell. Physiol. Journal of cellular physiology. Supplement = J Cell Physiol Suppl Journal of Cellular Physiology. Supplement = J. Cell. Physiol. Suppl. Journal of Cellular Plastics = J Cell Plast Journal of Cellular Plastics = J. Cell. Plast. Journal of Central China Normal University = J. Central China Normal Univ. Natur. Sci. Journal of Central South University of Technology = J Cent South Univ T Journal of Central South University of Technology = J. Cent. South Univ. T. Journal of Ceramic Processing Research = J Ceram Process Res Journal of Ceramic Processing Research = J. Ceram. Process. Res. Journal of Cereal Science = J Cereal Sci Journal of Cereal Science = J. Cereal Sci. Journal of Cerebral Blood Flow and Metabolism=J Cereb Blood Flow Metab;; Journal of Cerebral Blood Flow and Metabolism = J. Cereb. Blood Flow Metab. Journal of Cerebral Blood Flow and Metabolism = J Cerebr Blood F Met Journal of Cerebral Blood Flow and Metabolism = J. Cerebr. Blood F. Met. Journal of cerebral blood flow and metabolism : official journal of the International Society of Cerebral Blood Flow and Metabolism = J Cereb Blood Flow Metab Journal of Chemical and Engineering Data = J Chem Eng Data Journal of Chemical and Engineering Data = J. Chem. Eng. Data Journal of Chemical Crystallography = J Chem Crystallogr Journal of Chemical Crystallography = J. Chem. Crystallogr. Journal of chemical documentation = J Chem Doc Journal of Chemical Documentation = J Chem Doc Journal of Chemical Documentation = J. Chem. Doc. Journal of chemical ecology = J Chem Ecol Journal of Chemical Ecology = J Chem Ecol Journal of Chemical Ecology = J. Chem. Ecol. Journal of chemical education = J Chem Educ Journal of Chemical Education = J Chem Educ Journal of Chemical Education = J. Chem. Educ. Journal of Chemical & Engineering Data = J. Chem. Eng. Data Journal of Chemical Engineering of Japan = J Chem Eng Jpn Journal of Chemical Engineering of Japan = J. Chem. Eng. Jpn. Journal of Chemical Heath and Safetyu = J. Chem. Health Saf. Journal of Chemical Information and Computer Science = J. Chem. Inf. Comput. Sci. Journal of Chemical Information and Computer Sciences = J Chem Inf Comp Sci Journal of Chemical Information and Computer Sciences = J. Chem. Inf. Comp. Sci. Journal of chemical information and computer sciences = J Chem Inf Comput Sci Journal of Chemical Information and Computer Sciences=J Chem Inf Comput Sci;; Journal of Chemical Information and Computer Sciences = J. Chem. Inf. Comput. Sci. Journal of chemical information and modeling = J Chem Inf Model Journal of Chemical Information and Modeling = J Chem Inf Model Journal of Chemical Information and Modeling = J. Chem. Inf. Model. Journal of Chemical Metrology = J. Chem. Metrol. Journal of chemical neuroanatomy = J Chem Neuroanat Journal of Chemical Neuroanatomy=J Chem Neuroanat;; Journal of Chemical Neuroanatomy = J Chem Neuroanat Journal of Chemical Neuroanatomy = J. Chem. Neuroanat. Journal of Chemical Physics = J Chem Phys Journal of Chemical Physics = J. Chem. Phys. Journal of Chemical Research = J. Chem. Res. Journal of Chemical Research-s = J Chem Res-s Journal of Chemical Research-s = J. Chem. Res-s. Journal of Chemical Research Synopsis = J. Chem. Res., Synop . Journal of Chemical Sciences (Bangalore, India) = J. Chem. Sci. (Bangalore, India) Journal of Chemical Sciences = J Chem Sci Journal of Chemical Sciences = J. Chem. Sci. Journal of Chemical Software = J. Chem. Software Journal of Chemical Technology and Biotechnology A-chemical Technology = J Chem Tech Biot A Journal of Chemical Technology and Biotechnology A-chemical Technology = J. Chem. Tech. Biot. A. Journal of Chemical Technology and Biotechnology A-chemical Technology = J Chem Technol Biot Journal of Chemical Technology and Biotechnology A-chemical Technology = J. Chem. Technol. Biot. Journal of Chemical Technology and Biotechnology B-biotechnology = J Chem Tech Biot B Journal of Chemical Technology and Biotechnology B-biotechnology = J. Chem. Tech. Biot. B. Journal of Chemical Technology and Biotechnology B-biotechnology = J Chem Technol Biot Journal of Chemical Technology and Biotechnology B-biotechnology = J. Chem. Technol. Biot. Journal of Chemical Technology and Biotechnology = J Chem Technol Biot Journal of Chemical Technology and Biotechnology = J. Chem. Technol. Biot. Journal of Chemical Technology and Biotechnology = J. Chem. Technol. Biotechnol. Journal of chemical technology and biotechnology (Oxford, Oxfordshire : 1986) = J Chem Technol Biotechnol Journal of chemical theory and computation = J Chem Theory Comput Journal of Chemical Theory and Computation = J Chem Theory Comput Journal of Chemical Theory and Computation = J. Chem. Theory Comput. Journal of Chemical Thermodynamics = J Chem Thermodyn Journal of Chemical Thermodynamics = J. Chem. Thermodyn. Journal of Chemistry of The United Arab Republic = J Chem U A R Journal of Chemistry of The United Arab Republic = J. Chem. U. A. R. Journal of Chemometrics = J. Chemom. Journal of Chemometrics = J Chemometr Journal of Chemometrics = J. Chemometr. Journal of chemotherapy (Florence, Italy) = J Chemother Journal of Chemotherapy=J Chemother;; Journal of Chemotherapy = J. Chemother. Journal of Chemotherapy = J Chemotherapy Journal of Chemotherapy = J. Chemotherapy Journal of Chengdu University = J. Chengdu Univ. Natur. Sci. Journal of Chengdu University of Science and Technology = J. Chengdu Univ. Sci. Tech. Journal of Cherokee studies = J Cherokee Stud Journal of Child & Adolescent Substance Abuse = J Child Adoles Subst Journal of Child & Adolescent Substance Abuse = J. Child Adoles. Subst. Journal of child and adolescent psychiatric and mental health nursing = J Child Adolesc Psychiatr Ment Health Nurs Journal of Child and Adolescent Psychiatric and Mental Health Nursing = J. Child Adolesc. Psychiatr. Ment. Health Nurs. Journal of Child and Adolescent Psychiatric Nursing = J. Child Adolesc. Psychiatr. Nurs. Journal of child and adolescent psychiatric nursing : official publication of the Association of Child and Adolescent Psychiatric Nurses, Inc = J Child Adolesc Psychiatr Nurs Journal of child and adolescent psychopharmacology = J Child Adolesc Psychopharmacol Journal of Child and Adolescent Psychopharmacology=J Child Adolesc Psychopharmacol;; Journal of Child and Adolescent Psychopharmacology = J. Child Adolesc. Psychopharmacol. Journal of Child and Adolescent Psychopharmacology = J Child Adol Psychop Journal of Child and Adolescent Psychopharmacology = J. Child Adol. Psychop. Journal of child and family nursing = J Child Fam Nurs Journal of child and family studies = J Child Fam Stud Journal of Child and Family Studies = J Child Fam Stud Journal of Child and Family Studies = J. Child Fam. Stud. Journal of child health care : for professionals working with children in the hospital and community = J Child Health Care Journal of child language = J Child Lang Journal of Child Language = J Child Lang Journal of Child Language = J. Child Lang. Journal of child neurology = J Child Neurol Journal of Child Neurology=J Child Neurol;; Journal of Child Neurology = J Child Neurol Journal of Child Neurology = J. Child Neurol. Journal of child nutrition & management (Online) = J Child Nutr Manag Journal of Child Psychology and Psychiatry and Allied Disciplines = J Child Psychol Psyc Journal of Child Psychology and Psychiatry and Allied Disciplines = J. Child Psychol. Psyc. Journal of child psychology and psychiatry, and allied disciplines = J Child Psychol Psychiatry Journal of Child Psychology and Psychiatry and Allied Disciplines = J. Child Psychol. Psychiatry Journal of Child Psychology and Psychiatry And Allied Disciplines=J Child Psychol Psychiatry;; Journal of Child Psychology and Psychiatry = J Child Psychol Psyc Journal of Child Psychology and Psychiatry = J. Child Psychol. Psyc. Journal of child sexual abuse = J Child Sex Abus Journal of China University of Geosciences = J China Univ Geosci Journal of China University of Geosciences = J. China Univ. Geosci. Journal of China University of Science and Technology = J. China Univ. Sci. Tech. Journal of Chinese Linguistics = J Chinese Linguist Journal of Chinese Linguistics = J. Chinese Linguist. Journal of Chinese Philosophy = J Chinese Philos Journal of Chinese Philosophy = J. Chinese Philos. Journal of Christian nursing : a quarterly publication of Nurses Christian Fellowship = J Christ Nurs Journal of Christian Nursing = J. Christ. Nurs. Journal of chromatographic science = J Chromatogr Sci Journal of Chromatographic Science=J Chromatogr Sci;; Journal of Chromatographic Science = J Chromatogr Sci Journal of Chromatographic Science = J. Chromatogr. Sci. Journal of chromatography. A = J Chromatogr A Journal of Chromatography A = J Chromatogr A Journal of Chromatography A = J. Chromatogr. A Journal of Chromatography, A = J. Chromatogr., A Journal of Chromatography. A=J Chromatogr A;; Journal of Chromatography B-analytical Technologies in The Biomedical and Life Sciences = J Chromatogr B Journal of Chromatography B-analytical Technologies in The Biomedical and Life Sciences = J. Chromatogr. B. Journal of Chromatography, B: Analytical Technologies in the Biomedical and Life Sciences = J. Chromatogr., B: Anal. Technol. Biomed. Life Sci. Journal of chromatography. B, Analytical technologies in the biomedical and life sciences = J Chromatogr B Analyt Technol Biomed Life Sci Journal of Chromatography. B, Analytical Technologies in the Biomedical and Life Sciences = J. Chromatogr. B Analyt. Technol. Biomed. Life. Sci. Journal of Chromatography B-biomedical Applications = J Chromatogr B Journal of Chromatography B-biomedical Applications = J. Chromatogr. B. Journal of chromatography. B, Biomedical applications = J Chromatogr B Biomed Appl Journal of Chromatography B, Biomedical Applications = J. Chromatogr. B Biomed. Appl. Journal of Chromatography. B, Biomedical Sciences and Applications = J. Chromatogr. B. Biomed. Sci. App. Journal of chromatography. B, Biomedical sciences and applications = J Chromatogr B Biomed Sci Appl Journal of Chromatography-biomedical Applications = J Chromatogr-biomed Journal of Chromatography-biomedical Applications = J. Chromatogr-biomed. Journal of Chromatography B = J Chromatogr B Journal of Chromatography B = J. Chromatogr. B Journal of chromatography = J Chromatogr Journal of Chromatography = J Chromatogr Journal of Chromatography = J. Chromatogr. Journal of chromatography. Supplementary volume = J Chromatogr Suppl Journal of Chromatography. Supplementary Volume = J. Chromatogr. Suppl. Journal of Chronic Diseases = J Chron Dis Journal of Chronic Diseases = J. Chron. Dis. Journal of chronic diseases = J Chronic Dis Journal of Chronic Diseases = J. Chronic Dis. Journal of Church and State = J Church State Journal of Church and State = J. Church State Journal of circadian rhythms = J Circadian Rhythms Journal of Circuits Systems and Computers = J Circuit Syst Comp Journal of Circuits Systems and Computers = J. Circuit. Syst. Comp. Journal of Civil Engineering and Management = J Civ Eng Manag Journal of Civil Engineering and Management = J. Civ. Eng. Manag. Journal of Civil Engineering Design = J Civil Eng Des Journal of Civil Engineering Design = J. Civil Eng. Des. Journal of Classical Studies: the journal of the Class. Soc. of Japan = JCS Journal of Classification = J Classif Journal of Classification = J. Classif. Journal of Classification = J. Classification Journal of Cleaner Production = J. Cleaner Prod. Journal of Cleaner Production = J Clean Prod Journal of Cleaner Production = J. Clean. Prod. Journal of Clean Technology and Environmental Sciences = J Clean Technol Env Journal of Clean Technology and Environmental Sciences = J. Clean Technol. Env. Journal of Clean Technology Environmental Toxicology and Occupational Medicine = J Clean Technol E T Journal of Clean Technology Environmental Toxicology and Occupational Medicine = J. Clean Technol. E. T. Journal of Climate and Applied Meteorology = J Clim Appl Meteorol Journal of Climate and Applied Meteorology = J. Clim. Appl. Meteorol. Journal of Climate and Applied Meteorology = J. Climate Appl. Meteor. Journal of climate = J Clim Journal of Climate = J. Clim. Journal of Climate = J Climate Journal of Climate = J. Climate Journal of Climate Meteorology = J. Climate Meteor. Journal of Climatology = J Climatol Journal of Climatology = J. Climatol. Journal of Clinical and Experimental Gerontology = J Clin Exp Gerontol Journal of Clinical and Experimental Gerontology = J. Clin. Exp. Gerontol. Journal of clinical and experimental hematopathology : JCEH = J Clin Exp Hematop Journal of Clinical and Experimental Hematopathology = J. Clin. Exp. Hematop. Journal of Clinical and Experimental Neuropsychology = J Clin Exp Neuropsyc Journal of Clinical and Experimental Neuropsychology = J. Clin. Exp. Neuropsyc. Journal of Clinical and Experimental Neuropsychology=J Clin Exp Neuropsychol;; Journal of Clinical and Experimental Neuropsychology = J. Clin. Exp. Neuropsychol. Journal of clinical and experimental neuropsychology : official journal of the International Neuropsychological Society = J Clin Exp Neuropsychol Journal of Clinical and Experimental Psychopathology = J Clin Exp Psychopat Journal of Clinical and Experimental Psychopathology = J. Clin. Exp. Psychopat. Journal of clinical and experimental psychopathology = J Clin Exp Psychopathol Journal of clinical and experimental psychopathology & quarterly review of psychiatry and neurology = J Clin Exp Psychopathol Q Rev Psychiatry Neurol Journal of clinical and hospital pharmacy = J Clin Hosp Pharm Journal of Clinical and Hospital Pharmacy = J Clin Hosp Pharm Journal of Clinical and Hospital Pharmacy = J. Clin. Hosp. Pharm. Journal of Clinical and Laboratory Immunology=J Clin Lab Immunol;; Journal of Clinical and Laboratory Immunology = J. Clin. Lab. Immunol. Journal of clinical anesthesia = J Clin Anesth Journal of Clinical Anesthesia=J Clin Anesth;; Journal of Clinical Anesthesia = J Clin Anesth Journal of Clinical Anesthesia = J. Clin. Anesth. Journal of clinical apheresis = J Clin Apher Journal of Clinical Apheresis=J Clin Apheresis;; Journal of Clinical Apheresis = J Clin Apheresis Journal of Clinical Apheresis = J. Clin. Apheresis Journal of Clinical Biochemistry and Nutrition = J Clin Biochem Nutr Journal of Clinical Biochemistry and Nutrition = J. Clin. Biochem. Nutr. Journal of Clinical Chemistry and Clinical Biochemistry = J Clin Chem Clin Bio Journal of Clinical Chemistry and Clinical Biochemistry = J. Clin. Chem. Clin. Bio. Journal of Clinical Chemistry and Clinical Biochemistry = J. Clin. Chem. Clin. Biochem. Journal of clinical chemistry and clinical biochemistry. Zeitschrift fur klinische Chemie und klinische Biochemie = J Clin Chem Clin Biochem Journal of Clinical Child and Adolescent Psychology = J Clin Child Adolesc Journal of Clinical Child and Adolescent Psychology = J. Clin. Child Adolesc. Journal of Clinical Child and Adolescent Psychology = J. Clin. Child Adolesc. Psychol. Journal of clinical child and adolescent psychology : the official journal for the Society of Clinical Child and Adolescent Psychology, American Psychological Association, Division 53 = J Clin Child Adolesc Psychol Journal of clinical child psychology = J Clin Child Psychol Journal of Clinical Child Psychology=J Clin Child Psychol;; Journal of Clinical Child Psychology = J Clin Child Psychol Journal of Clinical Child Psychology = J. Clin. Child Psychol. Journal of clinical computing = J Clin Comput Journal of Clinical Computing = J. Clin. Comput. Journal of Clinical Densitometry = J Clin Densitom Journal of Clinical Densitometry = J. Clin. Densitom. Journal of clinical densitometry : the official journal of the International Society for Clinical Densitometry = J Clin Densitom Journal of Clinical Dentistry = J Clin Dent Journal of Clinical Dentistry = J. Clin. Dent. Journal of Clinical Dysmorphology = J. Clin. Dysmorphol. Journal of Clinical Endocrinology and Metabolism=J Clin Endocrinol Metab;; Journal of Clinical Endocrinology and Metabolism = J. Clin. Endocrinol. Metab. Journal of Clinical Endocrinology and Metabolism = J Clin Endocr Metab Journal of Clinical Endocrinology and Metabolism = J. Clin. Endocr. Metab. Journal of Clinical Endocrinology = J Clin Endocrinol Journal of Clinical Endocrinology = J. Clin. Endocrinol. Journal of Clinical Endocrinology & Metabolism = J Clin Endocr Metab Journal of Clinical Endocrinology & Metabolism = J. Clin. Endocr. Metab. Journal of clinical engineering = J Clin Eng Journal of Clinical Engineering = J. Clin. Eng. Journal of clinical epidemiology = J Clin Epidemiol Journal of Clinical Epidemiology=J Clin Epidemiol;; Journal of Clinical Epidemiology = J Clin Epidemiol Journal of Clinical Epidemiology = J. Clin. Epidemiol. Journal of Clinical Ethics = J Clin Ethic Journal of Clinical Ethics = J. Clin. Ethic. Journal of Clinical Ethics=J Clin Ethics;; Journal of Clinical Ethics = J. Clin. Ethics Journal of clinical forensic medicine = J Clin Forensic Med Journal of Clinical Forensic Medicine = J. Clin. Forensic Med. Journal of clinical gastroenterology = J Clin Gastroenterol Journal of Clinical Gastroenterology=J Clin Gastroenterol;; Journal of Clinical Gastroenterology = J Clin Gastroenterol Journal of Clinical Gastroenterology = J. Clin. Gastroenterol. Journal of Clinical Hematology and Oncology = J Clin Hematol Oncol Journal of Clinical Hematology and Oncology = J. Clin. Hematol. Oncol. Journal of clinical hypertension (Greenwich, Conn.) = J Clin Hypertens (Greenwich) Journal of clinical hypertension = J Clin Hypertens Journal of Clinical Hypertension = J Clin Hypertens Journal of Clinical Hypertension = J. Clin. Hypertens. Journal of Clinical Immunoassay = J Clin Immunoassay Journal of Clinical Immunoassay = J. Clin. Immunoassay Journal of clinical immunology = J Clin Immunol Journal of Clinical Immunology=J Clin Immunol;; Journal of Clinical Immunology = J Clin Immunol Journal of Clinical Immunology = J. Clin. Immunol. Journal of Clinical Investigation=J Clin Invest;; Journal of Clinical Investigation = J Clin Invest Journal of Clinical Investigation = J. Clin. Invest. Journal of clinical issues in psychology = J Clin Issues Psychol Journal of clinical laboratory analysis = J Clin Lab Anal Journal of Clinical Laboratory Analysis=J Clin Lab Anal;; Journal of Clinical Laboratory Analysis = J Clin Lab Anal Journal of Clinical Laboratory Analysis = J. Clin. Lab. Anal. Journal of Clinical Laboratory Automation = J Clin Lab Automat Journal of Clinical Laboratory Automation = J. Clin. Lab. Automat. Journal of clinical & laboratory immunology = J Clin Lab Immunol Journal of Clinical & Laboratory Immunology = J Clin Lab Immunol Journal of Clinical & Laboratory Immunology = J. Clin. Lab. Immunol. Journal of Clinical Laser Medicine and Surgery = J. Clin. Laser Med. Surg. Journal of Clinical Laser Medicine & Surgery = J Clin Laser Med Sur Journal of Clinical Laser Medicine & Surgery = J. Clin. Laser Med. Sur. Journal of clinical laser medicine & surgery = J Clin Laser Med Surg Journal of Clinical Ligand Assay = J Clin Ligand Assay Journal of Clinical Ligand Assay = J. Clin. Ligand Assay Journal of Clinical Lipidology = J Clin Lipidol Journal of Clinical Lipidology = J. Clin. Lipidol. Journal of clinical microbiology = J Clin Microbiol Journal of Clinical Microbiology=J Clin Microbiol;; Journal of Clinical Microbiology = J Clin Microbiol Journal of Clinical Microbiology = J. Clin. Microbiol. Journal of clinical monitoring and computing = J Clin Monit Comput Journal of Clinical Monitoring and Computing=J Clin Monit Comput;; Journal of Clinical Monitoring and Computing = J. Clin. Monit. Comput. Journal of Clinical Monitoring and Computing = J Clin Monitor Comp Journal of Clinical Monitoring and Computing = J. Clin. Monitor. Comp. Journal of clinical monitoring = J Clin Monit Journal of Clinical Monitoring = J. Clin. Monit. Journal of Clinical Monitoring = J Clin Monitor Journal of Clinical Monitoring = J. Clin. Monitor. Journal of Clinical Neurology = J Clin Neurol Journal of Clinical Neurology = J. Clin. Neurol. Journal of clinical neuromuscular disease = J Clin Neuromuscul Dis Journal of Clinical Neuro-ophthalmology = J Clin Neuro-ophthal Journal of Clinical Neuro-ophthalmology = J. Clin. Neuro-ophthal. Journal of clinical neuro-ophthalmology = J Clin Neuroophthalmol Journal of Clinical Neuro-Ophthalmology = J. Clin. Neuroophthalmol. Journal of Clinical Neurophysiology=J Clin Neurophysiol;; Journal of Clinical Neurophysiology = J Clin Neurophysiol Journal of Clinical Neurophysiology = J. Clin. Neurophysiol. Journal of clinical neurophysiology : official publication of the American Electroencephalographic Society = J Clin Neurophysiol Journal of clinical neuropsychology = J Clin Neuropsychol Journal of Clinical Neuropsychology = J Clin Neuropsychol Journal of Clinical Neuropsychology = J. Clin. Neuropsychol. Journal of Clinical Neuroscience = J Clin Neurosci Journal of Clinical Neuroscience = J. Clin. Neurosci. Journal of clinical neuroscience : official journal of the Neurosurgical Society of Australasia = J Clin Neurosci Journal of clinical nursing = J Clin Nurs Journal of Clinical Nursing = J Clin Nurs Journal of Clinical Nursing = J. Clin. Nurs. Journal of Clinical Nutrition = J Clin Nutr Journal of Clinical Nutrition = J. Clin. Nutr. Journal of Clinical Oncology=J Clin Oncol;; Journal of Clinical Oncology = J Clin Oncol Journal of Clinical Oncology = J. Clin. Oncol. Journal of clinical oncology : official journal of the American Society of Clinical Oncology = J Clin Oncol Journal of Clinical Orthodontics = J. Clin. Orthod. Journal of clinical orthodontics : JCO = J Clin Orthod Journal of clinical outcomes management : JCOM = J Clin Outcomes Manag Journal of Clinical Pathology-clinical Molecular Pathology Edition = J Clin Pathol-cl Mol Journal of Clinical Pathology-clinical Molecular Pathology Edition = J. Clin. Pathol-cl. Mol. Journal of clinical pathology = J Clin Pathol Journal of Clinical Pathology=J Clin Pathol;; Journal of Clinical Pathology = J Clin Pathol Journal of Clinical Pathology = J. Clin. Pathol. Journal of Clinical Pathology-molecular Pathology = J Clin Pathol-mol Pa Journal of Clinical Pathology-molecular Pathology = J. Clin. Pathol-mol. Pa. Journal of clinical pathology. Supplement (Association of Clinical Pathologists) = J Clin Pathol Suppl (Assoc Clin Pathol) Journal of Clinical Pathology. Supplement (Association of Clinical Pathologists) = J. Clin. Pathol. Suppl. (Assoc. Clin. Pathol.) Journal of clinical pathology. Supplement (College of Pathologists) = J Clin Pathol Suppl Coll Pathol Journal of clinical pathology. Supplement (Royal College of Pathologists) = J Clin Pathol Suppl (R Coll Pathol) Journal of Clinical Pathology. Supplement (Royal College of Pathologists) = J. Clin. Pathol. Suppl. (R. Coll. Pathol.) Journal of Clinical Pediatric Dentistry = J Clin Pediatr Dent Journal of Clinical Pediatric Dentistry = J. Clin. Pediatr. Dent. Journal of clinical periodontology = J Clin Periodontol Journal of Clinical Periodontology=J Clin Periodontol;; Journal of Clinical Periodontology = J Clin Periodontol Journal of Clinical Periodontology = J. Clin. Periodontol. Journal of Clinical Pharmacology and New Drugs = J Clin Pharmacol N D Journal of Clinical Pharmacology and New Drugs = J. Clin. Pharmacol. N. D. Journal of Clinical Pharmacology and New Drugs = J. Clin. Pharmacol. New Drugs Journal of Clinical Pharmacology and the Journal of New Drugs = J. Clin. Pharmacol. J. New Drugs Journal of clinical pharmacology = J Clin Pharmacol Journal of Clinical Pharmacology=J Clin Pharmacol;; Journal of Clinical Pharmacology = J Clin Pharmacol Journal of Clinical Pharmacology = J. Clin. Pharmacol. Journal of clinical pharmacy and therapeutics = J Clin Pharm Ther Journal of Clinical Pharmacy and Therapeutics=J Clin Pharm Ther;; Journal of Clinical Pharmacy and Therapeutics = J Clin Pharm Ther Journal of Clinical Pharmacy and Therapeutics = J. Clin. Pharm. Ther. Journal of Clinical Pharmacy = J Clin Pharmacy Journal of Clinical Pharmacy = J. Clin. Pharmacy Journal of Clinical Psychiatry = J Clin Psychiat Journal of Clinical Psychiatry = J. Clin. Psychiat. Journal of Clinical Psychiatry=J Clin Psychiatry;; Journal of Clinical Psychiatry = J. Clin. Psychiatry Journal of Clinical Psychology in Medical Settings = J Clin Psychol Med S Journal of Clinical Psychology in Medical Settings = J. Clin. Psychol. Med. S. Journal of clinical psychology in medical settings = J Clin Psychol Med Settings Journal of clinical psychology = J Clin Psychol Journal of Clinical Psychology=J Clin Psychol;; Journal of Clinical Psychology = J Clin Psychol Journal of Clinical Psychology = J. Clin. Psychol. Journal of Clinical Psychopharmacology = J Clin Psychopharm Journal of Clinical Psychopharmacology = J. Clin. Psychopharm. Journal of clinical psychopharmacology = J Clin Psychopharmacol Journal of Clinical Psychopharmacology=J Clin Psychopharmacol;; Journal of Clinical Psychopharmacology = J. Clin. Psychopharmacol. Journal of clinical research and drug development. = J Clin Res Drug Dev Journal of clinical rheumatology : practical reports on rheumatic & musculoskeletal diseases = J Clin Rheumatol Journal of Clinical Sleep Medicine = J Clin Sleep Med Journal of Clinical Sleep Medicine = J. Clin. Sleep Med. Journal of clinical sleep medicine : JCSM : official publication of the American Academy of Sleep Medicine = J Clin Sleep Med Journal of clinical stomatology conferences = J Clin Stomatol Conf Journal of Clinical Stomatology Conferences = J. Clin. Stomatol. Conf. Journal of Clinical Surgery-applied Physiology & Metabolism = J Clin Surg-appl Phy Journal of Clinical Surgery-applied Physiology & Metabolism = J. Clin. Surg-appl. Phy. Journal of Clinical Ultrasound=J Clin Ultrasound;; Journal of Clinical Ultrasound = J Clin Ultrasound Journal of Clinical Ultrasound = J. Clin. Ultrasound Journal of clinical ultrasound : JCU = J Clin Ultrasound Journal of Clinical Virology=J Clin Virol;; Journal of Clinical Virology = J Clin Virol Journal of Clinical Virology = J. Clin. Virol. Journal of clinical virology : the official publication of the Pan American Society for Clinical Virology = J Clin Virol Journal of Cluster Science = J. Cluster Sci. Journal of Cluster Science = J Clust Sci Journal of Cluster Science = J. Clust. Sci. Journal of Coal Science and Engineering = J. Coal Sci. Eng. Journal of Coastal Research = J Coastal Res Journal of Coastal Research = J. Coastal Res. Journal of Coastal Research = J. Coast. Res. Journal of Coated Fabrics = J Coated Fabrics Journal of Coated Fabrics = J. Coated Fabrics Journal of Coatings Technology and Research = J Coat Technol Res Journal of Coatings Technology and Research = J. Coat. Technol. Res. Journal of Coatings Technology = J Coating Technol Journal of Coatings Technology = J. Coating. Technol. Journal of Coatings Technology = J. Coat. Technol. Journal of Cognition and Development = J Cogn Dev Journal of Cognition and Development = J. Cogn. Dev. Journal of Cognitive and Behavioral Psychotherapies = J Cogn Behav Psychot Journal of Cognitive and Behavioral Psychotherapies = J. Cogn. Behav. Psychot. Journal of Cognitive Neuroscience = J Cognitive Neurosci Journal of Cognitive Neuroscience = J. Cognitive Neurosci. Journal of cognitive neuroscience = J Cogn Neurosci Journal of Cognitive Neuroscience = J. Cogn. Neurosci. Journal of Cold Regions Engineering = J Cold Reg Eng Journal of Cold Regions Engineering = J. Cold Reg. Eng. Journal of collective negotiations in the public sector = J Collect Negotiations Public Sect Journal of Collective Negotiations in the Public Sector = J. Collect. Negotiations Public Sect. Journal of Collective Negotiations in The Public Sector = J Collect Neg Pub Se Journal of Collective Negotiations in The Public Sector = J. Collect. Neg. Pub. Se. Journal of college science teaching = J Coll Sci Teach Journal of College Student Development = J Coll Student Dev Journal of College Student Development = J. Coll. Student Dev. Journal of College Student Personnel = J Coll St Personnel Journal of College Student Personnel = J. Coll. St. Personnel Journal of colloid and interface science = J Colloid Interface Sci Journal of Colloid and Interface Science = J. Colloid Interface Sci. Journal of Colloid and Interface Science = J Colloid Interf Sci Journal of Colloid and Interface Science = J. Colloid Interf. Sci. Journal of colloid science = J Colloid Sci Journal of Colloid Science = J. Colloid Sci. Journal of Colloid Science = J Coll Sci Imp U Tok Journal of Colloid Science = J. Coll. Sci. Imp. U. Tok. Journal of combinatorial chemistry = J Comb Chem Journal of Combinatorial Chemistry = J Comb Chem Journal of Combinatorial Chemistry = J. Comb. Chem. Journal of Combinatorial Designs = J Comb Des Journal of Combinatorial Designs = J. Comb. Des. Journal of Combinatorial Designs = J. Combin. Des. Journal of Combinatorial Mathematics and Combinatorial Computing = J. Combin. Math. Combin. Comput. Journal of combinatorial optimization = J Comb Optim Journal of Combinatorial Optimization = J. Comb. Optim. Journal of Combinatorial Optimization = J Comb Optim Journal of Combinatorial Optimization = J. Comb. Optim. Journal of Combinatorial Theory = J. Combin. Theory Ser. A Journal of Combinatorial Theory = J. Combin. Theory Ser. B Journal of Combinatorial Theory Series A = J Comb Theory A Journal of Combinatorial Theory Series A = J. Comb. Theory A Journal of Combinatorial Theory Series B = J Comb Theory B Journal of Combinatorial Theory Series B = J. Comb. Theory B Journal of Combinatorics, Information & System Sciences = J. Combin. Inform. System Sci. Journal of Combustion Toxicology = J Combust Toxicol Journal of Combustion Toxicology = J. Combust. Toxicol. Journal of Commodity Science, Technology and Quality = J. Commod. Sci. Technol. Qual. Journal of Common Market Studies=J. Common Market Stud. Journal of common market studies = J Common Mark Stud Journal of Common Market Studies = J Common Mark Stud Journal of Common Market Studies = J. Common Mark. Stud. Journal of Commonwealth & Comparative Politics = J Commonw Comp Polit Journal of Commonwealth & Comparative Politics = J. Commonw. Comp. Polit. Journal of Commonwealth Literature = J Commonw Lit Journal of Commonwealth Literature = J. Commonw. Lit. Journal of Commonwealth political studies = J Commonw Polit Stud Journal of Communicable Diseases=J Commun Dis;; Journal of Communicable Diseases = J. Commun. Dis. Journal of Communicable Diseases = J Communicable Dis Journal of Communicable Diseases = J. Communicable Dis. Journal of communication disorders = J Commun Disord Journal of Communication Disorders=J Commun Disord;; Journal of Communication Disorders = J Commun Disord Journal of Communication Disorders = J. Commun. Disord. Journal of Communication = J Commun Journal of Communication = J. Commun. Journal of Communications and Networks = J Commun Netw Journal of Communications and Networks = J. Commun. Netw. Journal of Communications and Networks = J Commun Netw-s Kor Journal of Communications and Networks = J. Commun. Netw-s. Kor. Journal of Communications Technology and Electronics = J Commun Technol El+ Journal of Communications Technology and Electronics = J. Commun. Technol. El+.+ Journal of Communications Technology and Electronics = J. Commun. Technol. Electron. Journal of Community & Applied Social Psychology = J Community Appl Soc Journal of Community & Applied Social Psychology = J. Community Appl. Soc. Journal of community & applied social psychology = J Community Appl Soc Psychol Journal of Community Health = J Commun Health Journal of Community Health = J. Commun. Health Journal of community health = J Community Health Journal of Community Health=J Community Health;; Journal of Community Health = J. Community Health Journal of Community Health Nursing = J Commun Health Nurs Journal of Community Health Nursing = J. Commun. Health Nurs. Journal of community health nursing = J Community Health Nurs Journal of Community Health Nursing=J Community Health Nurs;; Journal of Community Health Nursing = J. Community Health Nurs. Journal of community psychology = J Community Psychol Journal of Community Psychology = J Community Psychol Journal of Community Psychology = J. Community Psychol. Journal of Comparative Administration = J Comp Admin Journal of Comparative Administration = J. Comp. Admin. Journal of Comparative and Physiological Psychology = J Comp Physiol Psych Journal of Comparative and Physiological Psychology = J. Comp. Physiol. Psych. Journal of comparative and physiological psychology = J Comp Physiol Psychol Journal of Comparative and Physiological Psychology = J. Comp. Physiol. Psychol. Journal of Comparative Business and Capital Market Law = J Comp Bus Cap Mark Journal of Comparative Business and Capital Market Law = J. Comp. Bus. Cap. Mark. Journal of Comparative Economics=J. Compar. Econ. Journal of comparative economics = J Comp Econ Journal of Comparative Economics = J Comp Econ Journal of Comparative Economics = J. Comp. Econ. Journal of comparative family studies = J Comp Fam Stud Journal of Comparative Family Studies = J Comp Fam Stud Journal of Comparative Family Studies = J. Comp. Fam. Stud. Journal of Comparative Germanic Linguistics = J Comp Ger Linguist Journal of Comparative Germanic Linguistics = J. Comp. Ger. Linguist. Journal of Comparative Neurology=J Comp Neurol;; Journal of Comparative Neurology = J Comp Neurol Journal of Comparative Neurology = J. Comp. Neurol. Journal of Comparative Pathology and Therapeutics = J Comp Pathol Therap Journal of Comparative Pathology and Therapeutics = J. Comp. Pathol. Therap. Journal of comparative pathology = J Comp Pathol Journal of Comparative Pathology=J Comp Pathol;; Journal of Comparative Pathology = J Comp Pathol Journal of Comparative Pathology = J. Comp. Pathol. Journal of Comparative Physiology A-neuroethology Sensory Neural and Behavioral Physiology = J Comp Physiol A Journal of Comparative Physiology A-neuroethology Sensory Neural and Behavioral Physiology = J. Comp. Physiol. A. Journal of comparative physiology. A, Neuroethology, sensory, neural, and behavioral physiology = J Comp Physiol A Neuroethol Sens Neural Behav Physiol Journal of Comparative Physiology. A, Neuroethology, Sensory, Neural, and Behavioral Physiology = J. Comp. Physiol. A Neuroethol. Sens. Neural. Behav. Physiol. Journal of comparative physiology. A, Sensory, neural, and behavioral physiology = J Comp Physiol [A] Journal of Comparative Physiology A-sensory Neural and Behavioral Physiology = J Comp Physiol A Journal of Comparative Physiology A-sensory Neural and Behavioral Physiology = J. Comp. Physiol. A. Journal of Comparative Physiology. A, Sensory, Neural, and Behavioral Physiology=J Comp Physiol [A];; Journal of Comparative Physiology. A, Sensory, Neural, and Behavioral Physiology = J. Comp. Physiol. [A] Journal of comparative physiology. B, Biochemical, systemic, and environmental physiology = J Comp Physiol [B] Journal of Comparative Physiology B-biochemical Systemic and Environmental Physiology = J Comp Physiol B Journal of Comparative Physiology B-biochemical Systemic and Environmental Physiology = J. Comp. Physiol. B. Journal of Comparative Physiology B-biochemical Systemic and Environmental Physiology = J Comp Physiol B Journal of Comparative Physiology B-biochemical Systemic and Environmental Physiology = J. Comp. Physiol. B. Journal of Comparative Physiology. B, Biochemical, Systemic, and Environmental Physiology = J. Comp. Physiol. [B] Journal of Comparative Physiology. B, Biochemical, Systemic, And Environmental Physiology=J Comp Physiol [B];; Journal of Comparative Physiology = J Comp Physiol Journal of Comparative Physiology = J. Comp. Physiol. Journal of comparative psychology = J Comp Psychol Journal of Comparative Psychology=J Comp Psychol;; Journal of Comparative Psychology = J Comp Psychol Journal of Comparative Psychology = J. Comp. Psychol. Journal of comparative psychology (Washington, D.C. : 1983) = J Comp Psychol Journal of Complementary Medicine = J Complement Med Journal of Complementary Medicine = J. Complement. Med. Journal of Complexity = J. Complexity Journal of Complexity = J Complexity Journal of Complexity = J. Complexity Journal of Compliance in Health Care = J. Compliance Health Care Journal of Composite Materials = J Compos Mater Journal of Composite Materials = J. Compos. Mater. Journal of Composites for Construction = J Compos Constr Journal of Composites for Construction = J. Compos. Constr. Journal of Composites Technology and Research = J. Compos. Tech. Res. Journal of Composites Technology & Research = J Compos Tech Res Journal of Composites Technology & Research = J. Compos. Tech. Res. Journal of Computational Acoustics = J Comput Acoust Journal of Computational Acoustics = J. Comput. Acoust. Journal of Computational Analysis and Applications = J Comput Anal Appl Journal of Computational Analysis and Applications = J. Comput. Anal. Appl. Journal of Computational and Applied Mathematics = J. Comput. Appl. Math. Journal of Computational and Applied Mathematics = J Comput Appl Math Journal of Computational and Applied Mathematics = J. Comput. Appl. Math. Journal of Computational and Graphical Statistics = J Comput Graph Stat Journal of Computational and Graphical Statistics = J. Comput. Graph. Stat. Journal of Computational and Graphical Statistics = J. Comput. Graph. Statist. Journal of Computational and Nonlinear Dynamics = J Comput Nonlin Dyn Journal of Computational and Nonlinear Dynamics = J. Comput. Nonlin. Dyn. Journal of Computational and Nonlinear Dynamics = J. Comput. Nonlinear Dyn. Journal of Computational and Theoretical Nanoscience = J Comput Theor Nanos Journal of Computational and Theoretical Nanoscience = J. Comput. Theor. Nanos. Journal of Computational and Theoretical Nanoscience = J. Comput. Theor. Nanosci. Journal of computational biology : a journal of computational molecular cell biology = J Comput Biol Journal of Computational Biology=J Comput Biol;; Journal of Computational Biology = J Comput Biol Journal of Computational Biology = J. Comput. Biol. Journal of computational chemistry = J Comput Chem Journal of Computational Chemistry = J Comput Chem Journal of Computational Chemistry = J. Comput. Chem. Journal of computational electronics = J Comput Electron Journal of Computational Electronics = J. Comput. Electron. Journal of Computational Finance = J Comput Financ Journal of Computational Finance = J. Comput. Financ. Journal of Computational Mathematics = J. Comput. Math. Journal of Computational Mathematics = J Comput Math Journal of Computational Mathematics = J. Comput. Math. Journal of Computational Methods in Science and Engineering = J. Comput. Methods Sci. Eng. Journal of computational neuroscience = J Comput Neurosci Journal of Computational Neuroscience=J Comput Neurosci;; Journal of Computational Neuroscience = J Comput Neurosci Journal of Computational Neuroscience = J. Comput. Neurosci. Journal of Computational Physics = J. Comput. Phys. Journal of Computational Physics = J Comput Phys Journal of Computational Physics = J. Comput. Phys. Journal of Computed Tomography = J. Comput. Tomogr. Journal of Computer-aided Materials Design = J Comput-aided Mater Journal of Computer-aided Materials Design = J. Comput-aided. Mater. Journal of Computer-Aided Materials Design = J. Comput. Aided Mater. Des. Journal of Computer-Aided Materials Design = J. Comput.-Aided Mater. Des. Journal of computer-aided molecular design = J Comput Aided Mol Des Journal of Computer-Aided Molecular Design=J Comput Aided Mol Des;; Journal of Computer-Aided Molecular Design = J. Comput. Aided Mol. Des. Journal of Computer-Aided Molecular Design = J. Comput.-Aided Mol. Des. Journal of Computer-aided Molecular Design = J Comput Aid Mol Des Journal of Computer-aided Molecular Design = J. Comput. Aid. Mol. Des. Journal of Computer and System Sciences International = J. Comput. Syst. Sci. Int. Journal of Computer and System Sciences = J. Comput. System Sci. Journal of Computer and System Sciences = J Comput Syst Sci Journal of Computer and System Sciences = J. Comput. Syst. Sci. Journal of Computer and Systems Sciences International = J Comput Sys Sc Int+ Journal of Computer and Systems Sciences International = J. Comput. Sys. Sc. Int+.+ Journal of Computer Assisted Learning = J Comput Assist Lear Journal of Computer Assisted Learning = J. Comput. Assist. Lear. Journal of computer-assisted microscopy = J Comput Assist Microsc Journal of Computer Assisted Tomography = J Comput Assist Tomo Journal of Computer Assisted Tomography = J. Comput. Assist. Tomo. Journal of computer assisted tomography = J Comput Assist Tomogr Journal of Computer Assisted Tomography=J Comput Assist Tomogr;; Journal of Computer Assisted Tomography = J. Comput. Assist. Tomogr. Journal of Computer-based Instruction = J Comput-base Instr Journal of Computer-based Instruction = J. Comput-base. Instr. Journal of Computer Chemistry, Japan = J. Comput. Chem., Jpn. Journal of Computer Chemistry, Japan = J. COmput. Chem. Jpn. Journal of Computer Information Systems = J Comput Inform Syst Journal of Computer Information Systems = J. Comput. Inform. Syst. Journal of Computer-mediated Communication = J Comput-mediat Comm Journal of Computer-mediated Communication = J. Comput-mediat. Comm. Journal of Computer Science and Technology = J. Comput. Sci. Tech. Journal of Computer Science and Technology = J Comput Sci Technol Journal of Computer Science and Technology = J. Comput. Sci. Technol. Journal of Computing and Information = J. Comput. Inf. Journal of Computing and Information = J. Comput. Inform. Journal of Computing and Information Science in Engineering = J Comput Inf Sci Eng Journal of Computing and Information Science in Engineering = J. Comput. Inf. Sci. Eng. Journal of Computing in Civil Engineering = J Comput Civil Eng Journal of Computing in Civil Engineering = J. Comput. Civil Eng. Journal of Conchology = J Conchol Journal of Conchology = J. Conchol. Journal of Conflict Resolution = J Conflict Resolut Journal of Conflict Resolution = J. Conflict Resolut. Journal of Conflict Resolution=J. Conflict Resolution Journal of Consciousness Studies = J Consciousness Stud Journal of Consciousness Studies = J. Consciousness Stud. Journal of Constructional Steel Research = J Constr Steel Res Journal of Constructional Steel Research = J. Constr. Steel Res. Journal of Construction Engineering and Management-asce = J Constr Eng M Asce Journal of Construction Engineering and Management-asce = J. Constr. Eng. M. Asce. Journal of Construction Engineering Management = J. Constr. Eng. Manage. Journal of Constructivist Psychology = J Constr Psychol Journal of Constructivist Psychology = J. Constr. Psychol. Journal of Consulting and Clinical Psychology = J Consult Clin Psych Journal of Consulting and Clinical Psychology = J. Consult. Clin. Psych. Journal of consulting and clinical psychology = J Consult Clin Psychol Journal of Consulting and Clinical Psychology=J Consult Clin Psychol;; Journal of Consulting and Clinical Psychology = J. Consult. Clin. Psychol. Journal of consulting psychology = J Consult Psychol Journal of Consulting Psychology = J Consult Psychol Journal of Consulting Psychology = J. Consult. Psychol. Journal of Consumer Affairs=J. Cons. Aff. Journal of Consumer Affairs = J Consum Aff Journal of Consumer Affairs = J. Consum. Aff. Journal of Consumer Culture = J Consum Cult Journal of Consumer Culture = J. Consum. Cult. Journal of Consumer Marketing = J Consum Mark Journal of Consumer Marketing = J. Consum. Mark. Journal of Consumer Policy=J. Cons. Pol. Journal of Consumer Policy = J Consum Policy Journal of Consumer Policy = J. Consum. Policy Journal of Consumer Product Flammability = J Consum Prod Flamma Journal of Consumer Product Flammability = J. Consum. Prod. Flamma. Journal of Consumer Psychology = J Consum Psychol Journal of Consumer Psychology = J. Consum. Psychol. Journal of Consumer Research=J. Cons. Res. Journal of Consumer Research = J Consum Res Journal of Consumer Research = J. Consum. Res. Journal of contaminant hydrology = J Contam Hydrol Journal of Contaminant Hydrology = J Contam Hydrol Journal of Contaminant Hydrology = J. Contam. Hydrol. Journal of contemporary African studies : JCAS = J Contemp Afr Stud Journal of contemporary Asia = J Contemp Asia Journal of Contemporary Asia = J Contemp Asia Journal of Contemporary Asia = J. Contemp. Asia Journal of Contemporary Business = J Contemp Bus Journal of Contemporary Business = J. Contemp. Bus. Journal of Contemporary China = J Contemp China Journal of Contemporary China = J. Contemp. China Journal of Contemporary Dental Practice = J. Contemp. Dent. Pract. Journal of contemporary ethnography = J Contemp Ethnogr Journal of Contemporary Ethnography = J Contemp Ethnogr Journal of Contemporary Ethnography = J. Contemp. Ethnogr. Journal Of Contemporary Ethnography = J. Contemp. Ethnogr. Journal of Contemporary Health Law and Policy=J Contemp Health Law Policy;; Journal of Contemporary Health Law and Policy = J. Contemp. Health Law Policy Journal of contemporary history = J Contemp Hist Journal of Contemporary History = J Contemp Hist Journal of Contemporary History = J. Contemp. Hist. Journal of contemporary law = J Contemp Law Journal of Contemporary Mathematical Analysis-armenian Academy of Sciences = J Contemp Math Anal Journal of Contemporary Mathematical Analysis-armenian Academy of Sciences = J. Contemp. Math. Anal. Journal of Contemporary Mathematical Analysis = J. Contemp. Math. Anal. Journal of Contemporary Physics-armenian Academy of Sciences = J Contemp Phys-arme+ Journal of Contemporary Physics-armenian Academy of Sciences = J. Contemp. Phys-arme+.+ Journal of Contemporary Physics = J. Contemp. Phys. Journal of Contemporary Psychotherapy = J Contemp Psychother Journal of Contemporary Psychotherapy = J. Contemp. Psychother. Journal of continuing education in nursing = J Contin Educ Nurs Journal of Continuing Education in Nursing = J Contin Educ Nurs Journal of Continuing Education in Nursing = J. Contin. Educ. Nurs. Journal of Continuing Education in The Health Professions = J Contin Educ Health Journal of Continuing Education in The Health Professions = J. Contin. Educ. Health Journal of Continuing Education in the Health Professions = J. Contin. Educ. Health Prof. Journal of Controlled Release = J. Controlled Release Journal of Controlled Release = J Control Release Journal of Controlled Release = J. Control. Release Journal of controlled release : official journal of the Controlled Release Society = J Control Release Journal of Convex Analysis = J. Convex Anal. Journal of Convex Analysis = J Convex Anal Journal of Convex Analysis = J. Convex Anal. Journal of Coordination Chemistry = J Coord Chem Journal of Coordination Chemistry = J. Coord. Chem. Journal of Corporate Finance: Contracting, Governance and Organization=J. Corp. Finan.: Contracting, Governance Organ. Journal of Corporate Finance = J Corp Financ Journal of Corporate Finance = J. Corp. Financ. Journal of Corporate Taxation = J Corp Tax Journal of Corporate Taxation = J. Corp. Tax. Journal of Corrosion Science and Engineering = J. Corros. Sci. Eng. Journal of Cosmetic and Laser Therapy = J Cosmet Laser Ther Journal of Cosmetic and Laser Therapy = J. Cosmet. Laser Ther. Journal of cosmetic and laser therapy : official publication of the European Society for Laser Dermatology = J Cosmet Laser Ther Journal of cosmetic dermatology = J Cosmet Dermatol Journal of cosmetic science = J Cosmet Sci Journal of Cosmetic Science = J Cosmet Sci Journal of Cosmetic Science = J. Cosmet. Sci. Journal of Cosmology and Astroparticle Physics = J Cosmol Astropart P Journal of Cosmology and Astroparticle Physics = J. Cosmol. Astropart. P. Journal of Cosmology and Astroparticle Physics = J. Cosmol. Astropart. Phys. Journal of Cosmology and Astro-Particle Physics = J. Cosmology \& Astro-Part. Phys. Journal of counseling and development : JCD = J Couns Dev Journal of Counseling and Development = J Couns Dev Journal of Counseling and Development = J. Couns. Dev. Journal of counseling psychology = J Couns Psychol Journal of Counseling Psychology = J Couns Psychol Journal of Counseling Psychology = J. Couns. Psychol. Journal of Country Music = J Country Music Journal of Country Music = J. Country Music Journal of Craniofacial Genetics and Developmental Biology = J Cran Genet Dev Bio Journal of Craniofacial Genetics and Developmental Biology = J. Cran. Genet. Dev. Bio. Journal of craniofacial genetics and developmental biology = J Craniofac Genet Dev Biol Journal of Craniofacial Genetics and Developmental Biology=J Craniofac Genet Dev Biol;; Journal of Craniofacial Genetics and Developmental Biology = J. Craniofac. Genet. Dev. Biol. Journal of craniofacial genetics and developmental biology. Supplement = J Craniofac Genet Dev Biol Suppl Journal of Craniofacial Genetics and Developmental Biology. Supplement = J. Craniofac. Genet. Dev. Biol. Suppl. Journal of Craniofacial Surgery = J Craniofac Surg Journal of Craniofacial Surgery = J. Craniofac. Surg. Journal of craniomandibular disorders : facial & oral pain = J Craniomandib Disord Journal of Craniomandibular Disorders = J. Craniomandib. Disord. Journal of Cranio-Mandibular Practice = J. Craniomandibular. Pract. Journal of Cranio-Maxillo-Facial Surgery=J Craniomaxillofac Surg;; Journal of Cranio-Maxillo-Facial Surgery = J. Craniomaxillofac. Surg. Journal of Cranio-maxillo-facial Surgery = J Cranio Maxill Surg Journal of Cranio-maxillo-facial Surgery = J. Cranio. Maxill. Surg. Journal of Cranio-maxillofacial Surgery = J Cranio Maxill Surg Journal of Cranio-maxillofacial Surgery = J. Cranio. Maxill. Surg. Journal of cranio-maxillo-facial surgery : official publication of the European Association for Cranio-Maxillo-Facial Surgery = J Craniomaxillofac Surg Journal of Crash Prevention and Injury Control = J. Crash Prev. Inj. Control Journal of Creative Behavior = J Creative Behav Journal of Creative Behavior = J. Creative Behav. Journal of Credit Risk = J Credit Risk Journal of Credit Risk = J. Credit Risk Journal of Criminal Justice = J Crim Just Journal of Criminal Justice = J. Crim. Just. Journal of criminal justice = J Crim Justice Journal of Criminal Law Criminology and Police Studies = J Crim Law Criminol Journal of Criminal Law Criminology and Police Studies = J. Crim. Law Criminol. Journal of Criminal Law & Criminology = J Crim Law Crim Journal of Criminal Law & Criminology = J. Crim. Law Crim. Journal of critical care = J Crit Care Journal of Critical Care=J Crit Care;; Journal of Critical Care = J Crit Care Journal of Critical Care = J. Crit. Care Journal of Critical Illness = J. Crit. Illn. Journal of Crohns & Colitis = J Crohns Colitis Journal of Crohns & Colitis = J. Crohns Colitis Journal of Crop Science and Biotechnology = J. Crop Sci. Biotechnol. Journal of cross-cultural gerontology = J Cross Cult Gerontol Journal of cross-cultural psychology = J Cross Cult Psychol Journal of Cross-cultural Psychology = J Cross Cult Psychol Journal of Cross-cultural Psychology = J. Cross. Cult. Psychol. Journal of crustacean biology : a quarterly of the Crustacean Society for the publication of research on any aspect of the biology of crustacea = J Crustacean Biol Journal of Crustacean Biology = J Crustacean Biol Journal of Crustacean Biology = J. Crustacean Biol. Journal of Cryosurgery = J Cryosurg Journal of Cryosurgery = J. Cryosurg. Journal of Cryptology = J Cryptol Journal of Cryptology = J. Cryptol. Journal of Cryptology = J. Cryptology Journal of Crystal and Molecular Structure = J Cryst Mol Struct Journal of Crystal and Molecular Structure = J. Cryst. Mol. Struct. Journal of crystal growth = J Cryst Growth Journal of Crystal Growth = J Cryst Growth Journal of Crystal Growth = J. Cryst. Growth Journal of Crystallographic and Spectroscopic Research = J. Crystallogr. Spectrosc. Res. Journal of Crystallographic and Spectroscopic Research = J Cryst Spectrosc Journal of Crystallographic and Spectroscopic Research = J. Cryst. Spectrosc. Journal of cultural diversity = J Cult Divers Journal of Cultural Diversity = J. Cult. Divers. Journal of Cultural Economics=J. Cult. Econ. Journal of Cultural Economics = J Cult Econ Journal of Cultural Economics = J. Cult. Econ. Journal of Cultural Heritage = J Cult Herit Journal of Cultural Heritage = J. Cult. Herit. Journal of Cuneiform Studies = JCS Journal of current social issues = J Curr Soc Issues Journal of Curriculum Studies = J Curriculum Stud Journal of Curriculum Studies = J. Curriculum Stud. Journal of cutaneous laser therapy = J Cutan Laser Ther Journal of Cutaneous Laser Therapy = J. Cutan. Laser. Ther. Journal of cutaneous medicine and surgery = J Cutan Med Surg Journal of Cutaneous Medicine and Surgery = J Cutan Med Surg Journal of Cutaneous Medicine and Surgery = J. Cutan. Med. Surg. Journal of cutaneous pathology = J Cutan Pathol Journal of Cutaneous Pathology=J Cutan Pathol;; Journal of Cutaneous Pathology = J Cutan Pathol Journal of Cutaneous Pathology = J. Cutan. Pathol. Journal of Cybernetics = J Cybernetics Journal of Cybernetics = J. Cybernetics Journal of cyclic nucleotide and protein phosphorylation research = J Cyclic Nucleotide Protein Phosphor Res Journal of Cyclic Nucleotide and Protein Phosphorylation Research = J. Cyclic Nucleotide Protein Phosphor. Res. Journal of Cyclic Nucleotide and Protein Phosphorylation Research = J Cyclic Nucl Prot Journal of Cyclic Nucleotide and Protein Phosphorylation Research = J. Cyclic Nucl. Prot. Journal of cyclic nucleotide research = J Cyclic Nucleotide Res Journal of Cyclic Nucleotide Research = J. Cyclic Nucleotide Res. Journal of Cyclic Nucleotide Research = J Cyclic Nucl Prot Journal of Cyclic Nucleotide Research = J. Cyclic Nucl. Prot. Journal of Cystic Fibrosis = J Cyst Fibros Journal of Cystic Fibrosis = J. Cyst. Fibros. Journal of cystic fibrosis : official journal of the European Cystic Fibrosis Society = J Cyst Fibros Journal of Cytology and Genetics = J Cytol Genet Journal of Cytology and Genetics = J. Cytol. Genet. Journal of Cytology = J Cytol Journal of Cytology = J. Cytol. Journal of Dairy Research=J Dairy Res;; Journal of Dairy Research = J Dairy Res Journal of Dairy Research = J. Dairy Res. Journal of dairy science = J Dairy Sci Journal of Dairy Science=J Dairy Sci;; Journal of Dairy Science = J Dairy Sci Journal of Dairy Science = J. Dairy Sci. Journal of Dalian University of Technology = J. Dalian Univ. Tech. Journal of Database Management = J Database Manage Journal of Database Management = J. Database Manage. Journal of Deaf Studies and Deaf Education = J Deaf Stud Deaf Edu Journal of Deaf Studies and Deaf Education = J. Deaf Stud. Deaf Edu. Journal of deaf studies and deaf education = J Deaf Stud Deaf Educ Journal of Democracy = J Democr Journal of Democracy = J. Democr. Journal of dental education = J Dent Educ Journal of Dental Education=J Dent Educ;; Journal of Dental Education = J Dent Educ Journal of Dental Education = J. Dent. Educ. Journal of Dental Hygiene = J. Dent. Hyg. Journal of dental hygiene : JDH / American Dental Hygienists' Association = J Dent Hyg Journal of Dental Medicine = J. Dent. Med. Journal of Dental Practice Administration = J. Dent. Pract. Adm. Journal of dental practice administration : JDPA : official publication of American Academy of Dental Practice Administration, Organization of Teachers of Dental Practice Administration, American Academy of Dental Group Practice = J Dent Pract Adm Journal of dental research = J Dent Res Journal of Dental Research=J Dent Res;; Journal of Dental Research = J Dent Res Journal of Dental Research = J. Dent. Res. Journal of Dental Sciences = J Dent Sci Journal of Dental Sciences = J. Dent. Sci. Journal of Dental Symposia = J. Dent. Symp. Journal of Dental Technology = J. Dent. Technol. Journal of dental technology : the peer-reviewed publication of the National Association of Dental Laboratories = J Dent Technol Journal of dentistry for children (Chicago, Ill.) = J Dent Child (Chic) Journal of dentistry for children = J Dent Child Journal of Dentistry for Children = J Dent Child Journal of Dentistry for Children = J. Dent. Child. Journal of dentistry for the handicapped = J Dent Handicap Journal of Dentistry for the Handicapped = J. Dent. Handicap. Journal of dentistry = J Dent Journal of Dentistry=J Dent;; Journal of Dentistry = J Dent Journal of Dentistry = J. Dent. Journal of Derivatives = J Deriv Journal of Derivatives = J. Deriv. Journal of Derivatives=J. Derivatives Journal of dermatological science = J Dermatol Sci Journal of Dermatological Science=J Dermatol Sci;; Journal of Dermatological Science = J Dermatol Sci Journal of Dermatological Science = J. Dermatol. Sci. Journal of Dermatological Treatment = J Dermatol Treat Journal of Dermatological Treatment = J. Dermatol. Treat. Journal of Dermatologic Surgery and Oncology = J Dermatol Surg Onc Journal of Dermatologic Surgery and Oncology = J. Dermatol. Surg. Onc. Journal of Dermatologic Surgery and Oncology = J. Dermatol. Surg. Oncol. Journal of Dermatologic Surgery = J. Dermatol. Surg. Journal of Dermatology=J Dermatol;; Journal of Dermatology = J Dermatol Journal of Dermatology = J. Dermatol. Journal of Design Automation & Fault-tolerant Computing = J Des Autom Fault Journal of Design Automation & Fault-tolerant Computing = J. Des. Autom. Fault. Journal of Developing Areas = J Dev Areas Journal of Developing Areas = J. Dev. Areas Journal Of Developing Areas = J Dev Areas Journal of Developing Areas=J. Developing Areas Journal of developing societies = J Dev Soc Journal of developmental and behavioral pediatrics : JDBP = J Dev Behav Pediatr Journal of Developmental and Behavioral Pediatrics=J Dev Behav Pediatr;; Journal of Developmental and Behavioral Pediatrics = J Dev Behav Pediatr Journal of Developmental and Behavioral Pediatrics = J. Dev. Behav. Pediatr. Journal of developmental and physical disabilities = J Dev Phys Disabil Journal of Developmental and Physical Disabilities = J Dev Phys Disabil Journal of Developmental and Physical Disabilities = J. Dev. Phys. Disabil. Journal of developmental physiology = J Dev Physiol Journal of Developmental Physiology = J Dev Physiol Journal of Developmental Physiology = J. Dev. Physiol. Journal of Development and Economic Policies=J. Devel. Econ. Pol. Journal of development economics = J Dev Econ Journal of Development Economics = J Dev Econ Journal of Development Economics = J. Dev. Econ. Journal of Development Economics=J. Devel. Econ. Journal of Development Studies=J. Devel. Stud. Journal of Development Studies = J Dev Stud Journal of Development Studies = J. Dev. Stud. Journal of Dharma = J Dharma Journal of Dharma = J. Dharma Journal of Diabetes and Its Complications = J Diabetes Complicat Journal of Diabetes and Its Complications = J. Diabetes Complicat. Journal of diabetes and its complications = J Diabetes Complications Journal of Diabetes and Its Complications=J Diabetes Complications;; Journal of Diabetes and Its Complications = J. Diabetes Complications Journal of Diabetic Complications = J. Diabet. Complications Journal of Diagnostic Medical Sonography = J Diagn Med Sonog Journal of Diagnostic Medical Sonography = J. Diagn. Med. Sonog. Journal of Diagnostic Radiography and Imaging = J. Diagn. Radiogr. Imaging Journal of dialysis = J Dial Journal of Dialysis = J. Dial. Journal of Dialysis = J Dialysis Journal of Dialysis = J. Dialysis Journal of diarrhoeal diseases research = J Diarrhoeal Dis Res Journal of Diarrhoeal Diseases Research=J Diarrhoeal Dis Res;; Journal of Diarrhoeal Diseases Research = J Diarrhoeal Dis Res Journal of Diarrhoeal Diseases Research = J. Diarrhoeal Dis. Res. Journal of Difference Equations and Applications = J Differ Equ Appl Journal of Difference Equations and Applications = J. Differ. Equ. Appl. Journal of Difference Equations and Applications = J. Differ. Equations Appl. Journal of Differential Equations = J. Differential Equations Journal of Differential Equations = J Differ Equations Journal of Differential Equations = J. Differ. Equations Journal of Differential Geometry = J. Differential Geom. Journal of Differential Geometry = J Differ Geom Journal of Differential Geometry = J. Differ. Geom. Journal of digestive diseases = J Dig Dis Journal of Digestive Diseases = J Dig Dis Journal of Digestive Diseases = J. Dig. Dis. Journal of Digestive Diseases = J Digest Dis Journal of Digestive Diseases = J. Digest. Dis. Journal of Digital Imaging = J Digit Imaging Journal of Digital Imaging = J. Digit. Imaging Journal of Digital IMAging=J Digit Imaging;; Journal of digital imaging : the official journal of the Society for Computer Applications in Radiology = J Digit Imaging Journal of Digital Systems = J Digital Syst Journal of Digital Systems = J. Digital Syst. Journal of Discrete Mathematical Sciences & Cryptography = J. Discrete Math. Sci. Cryptography Journal of Dispersion Science and Technology = J Disper Sci Technol Journal of Dispersion Science and Technology = J. Disper. Sci. Technol. Journal of Dispersion Science and Technology = J. Dispersion Sci. Technol. Journal of Display Technology = J Disp Technol Journal of Display Technology = J. Disp. Technol. Journal of divorce = J Divorce Journal of Divorce = J Divorce Journal of Divorce = J. Divorce Journal of divorce & remarriage = J Divorce & Remarriage Journal of Divorce & Remarriage = J Divorce Remarriage Journal of Divorce & Remarriage = J. Divorce Remarriage Journal of Documentation = J Doc Journal of Documentation = J. Doc. Journal of Drug Delivery Science and Technology = J. Drug Delivery Sci. Technol. Journal of Drug Delivery Science and Technology = J Drug Deliv Sci Tec Journal of Drug Delivery Science and Technology = J. Drug Deliv. Sci. Tec. Journal of Drug Development and Clinical Practice = J Drug Dev Clin Pr Journal of Drug Development and Clinical Practice = J. Drug Dev. Clin. Pr. Journal of Drug Development = J Drug Dev Journal of Drug Development = J. Drug Dev. Journal of drug education = J Drug Educ Journal of Drug Education=J Drug Educ;; Journal of Drug Education = J Drug Educ Journal of Drug Education = J. Drug Educ. Journal of drug issues = J Drug Issues Journal of Drug Issues = J Drug Issues Journal of Drug Issues = J. Drug Issues Journal of drug research = J Drug Res Journal of drugs in dermatology : JDD = J Drugs Dermatol Journal of Drugs in Dermatology = J Drugs Dermatol Journal of Drugs in Dermatology = J. Drugs Dermatol. Journal of drug targeting = J Drug Target Journal of Drug Targeting=J Drug Target;; Journal of Drug Targeting = J Drug Target Journal of Drug Targeting = J. Drug Target. Journal of Drug Targeting = J. Drug Targeting Journal of dual diagnosis = J Dual Diagn Journal of Dynamical and Control Systems = J. Dynam. Control Systems Journal of Dynamical and Control Systems = J Dyn Control Syst Journal of Dynamical and Control Systems = J. Dyn. Control Syst. Journal of Dynamics and Differential Equations = J. Dynam. Differential Equations Journal of Dynamics and Differential Equations = J Dyn Differ Equ Journal of Dynamics and Differential Equations = J. Dyn. Differ. Equ. Journal of Dynamic Systems, Measurement, and Control = J. Dyn. Syst. Meas. Contr. Journal of dynamic systems, measurement, and control = J Dyn Syst Meas Control Journal of Dynamic Systems Measurement and Control-transactions of The Asme = J Dyn Syst-t Asme Journal of Dynamic Systems Measurement and Control-transactions of The Asme = J. Dyn. Syst-t. Asme Journal of Early Adolescence = J Early Adolescence Journal of Early Adolescence = J. Early Adolescence Journal of Early Christian Studies = J Early Christian St Journal of Early Christian Studies = J. Early Christian St. Journal of early Christian studies = JECS Journal of Early Christian Studies. Journal of the North American Patristics Society = JEChrSt Journal of Early Intervention = J Early Intervention Journal of Early Intervention = J. Early Intervention Journal of Earthquake and Tsunami = J Earthq Tsunami Journal of Earthquake and Tsunami = J. Earthq. Tsunami Journal of Earthquake Engineering = J Earthq Eng Journal of Earthquake Engineering = J. Earthq. Eng. Journal of Earthquake Engineering = J Earthquake Eng Journal of Earthquake Engineering = J. Earthquake Eng. Journal of Earth Science = J Earth Sci Journal of Earth Science = J. Earth Sci. Journal of Earth Science = J Earth Sci-china Journal of Earth Science = J. Earth Sci-china. Journal of Earth Sciences Royal Dublin Society = J Earth Sci-dublin Journal of Earth Sciences Royal Dublin Society = J. Earth Sci-dublin. Journal of Earth System Science = J Earth Syst Sci Journal of Earth System Science = J. Earth Syst. Sci. Journal of East and West studies = J East West Stud Journal of East and West Studies=J. East West Stud. Journal of East Asian Linguistics = J East Asian Linguis Journal of East Asian Linguistics = J. East Asian Linguis. Journal of East Asian Studies = J East Asian Stud Journal of East Asian Studies = J. East Asian Stud. Journal of East China Normal University = J. East China Norm. Univ. Natur. Sci. Ed. Journal of Eastern African research & development = J East Afr Res Dev Journal of Eastern African Studies = J East Afr Stud Journal of Eastern African Studies = J. East. Afr. Stud. Journal of East-West Business=J. East-West Bus. Journal of Ecclesiastical History = J Ecclesiast Hist Journal of Ecclesiastical History = J. Ecclesiast. Hist. Journal of Ecclesiastical History = JEH Journal of Ecology = J Ecol Journal of Ecology = J. Ecol. Journal of econometrics = J Econom Journal of Econometrics = J. Econometrics Journal of Econometrics=J. Econometrics Journal of Econometrics = J Econometrics Journal of Econometrics = J. Econometrics Journal of economic and social history of the orient = J Econ Soc Hist Orient Journal of economic and social measurement = J Econ Soc Meas Journal of Economic and Social Measurement=J. Econ. Soc. Meas. Journal of Economic and Social Measurement = J Econ Soc Meas Journal of Economic and Social Measurement = J. Econ. Soc. Meas. Journal of Economic and Social Policy=J. Econ. Soc. Pol. Journal of Economic and Social Research=J. Econ. Soc. Res. Journal of Economic Behavior and Organization=J. Econ. Behav. Organ. Journal of economic behavior & organization = J Econ Behav Organ Journal of Economic Behavior & Organization = J Econ Behav Organ Journal of Economic Behavior & Organization = J. Econ. Behav. Organ. Journal of Economic Cooperation among Islamic Countries=J. Econ. Cooperation Islamic Countries Journal of Economic Development=J. Econ. Devel. Journal of Economic Dynamics and Control=J. Econ. Dynam. Control Journal of economic dynamics & control = J Econ Dyn Control Journal of Economic Dynamics & Control = J Econ Dyn Control Journal of Economic Dynamics & Control = J. Econ. Dyn. Control Journal of Economic Dynamics & Control = J. Econom. Dynam. Control Journal of Economic Education=J. Econ. Educ. Journal of Economic Education = J Econ Educ Journal of Economic Education = J. Econ. Educ. Journal of economic entomology = J Econ Entomol Journal of Economic Entomology=J Econ Entomol;; Journal of Economic Entomology = J Econ Entomol Journal of Economic Entomology = J. Econ. Entomol. Journal of Economic Geography = J Econ Geogr Journal of Economic Geography = J. Econ. Geogr. Journal of Economic Growth=J. Econ. Growth Journal of Economic Growth = J Econ Growth Journal of Economic Growth = J. Econ. Growth Journal of Economic History=J. Econ. Hist. Journal of Economic History = J Econ Hist Journal of Economic History = J. Econ. Hist. Journal of Economic Inequality = J Econ Inequal Journal of Economic Inequality = J. Econ. Inequal. Journal of Economic Integration=J. Econ. Integration Journal of economic issues = J Econ Issues Journal of Economic Issues=J. Econ. Issues Journal of Economic Issues = J Econ Issues Journal of Economic Issues = J. Econ. Issues Journal of economic literature = J Econ Lit Journal of Economic Literature=J. Econ. Lit. Journal of Economic Literature = J Econ Lit Journal of Economic Literature = J. Econ. Lit. Journal of Economic Methodology=J. Econ. Methodology Journal of Economic Perspectives=J. Econ. Perspect. Journal of Economic Perspectives = J Econ Perspect Journal of Economic Perspectives = J. Econ. Perspect. Journal of Economic Policy Reform = J Econ Policy Reform Journal of Economic Policy Reform = J. Econ. Policy Reform Journal of Economic Psychology=J. Econ. Psych. Journal of Economic Psychology = J Econ Psychol Journal of Economic Psychology = J. Econ. Psychol. Journal Of Economic Psychology = J Econ Psychol Journal of Economic Research=J. Econ. Res. Journal of economics and business = J Econ Bus Journal of Economics and Business=J. Econ. Bus. Journal of Economics and Business = J Econ Bus Journal of Economics and Business = J. Econ. Bus. Journal of Economics and Finance=J. Econ. Finance Journal of Economics and Management Strategy=J. Econ. Manage. Strategy Journal of Economics = J Econ Journal of Economics = J. Econ. Journal of Economics & Management Strategy = J Econ Manage Strat Journal of Economics & Management Strategy = J. Econ. Manage. Strat. Journal of Economics (MVEA)=J. Econ. (MVEA) Journal of economic studies (Glasgow, Scotland) = J Econ Stud Journal of Economic Studies=J. Econ. Stud. Journal of Economic Studies = J Econ Stud Journal of Economic Studies = J. Econ. Stud. Journal of economic surveys = J Econ Surv Journal of Economic Surveys = J Econ Surv Journal of Economic Surveys = J. Econ. Surv. Journal of Economic Surveys=J. Econ. Surveys Journal of Economics-zeitschrift Fur Nationalokonomie = J Econ Journal of Economics-zeitschrift Fur Nationalokonomie = J. Econ. Journal of Economics (Zeitschrift für Nationalökonomie)=J. Econ. (Z. Nationalökon.) Journal of Economic Theory and Econometrics=J. Econ. Theory Econometrics Journal of Economic Theory = J. Econom. Theory Journal of economic theory = J Econ Theory Journal of Economic Theory=J. Econ. Theory Journal of Economic Theory = J Econ Theory Journal of Economic Theory = J. Econ. Theory Journal of Ect = J Ect Journal of Ect = J. Ect Journal of ECT=J ECT;; Journal of ECT = J. ECT Journal of ecumenical studies = J Ecumenical Stud Journal of Ecumenical Studies = J Ecumenical Stud Journal of Ecumenical Studies = J. Ecumenical Stud. Journal of educational administration and history = J Educ Adm Hist Journal of Educational Administration = J Educ Admin Journal of Educational Administration = J. Educ. Admin. Journal of Educational and Behavioral Statistics = J Educ Behav Stat Journal of Educational and Behavioral Statistics = J. Educ. Behav. Stat. Journal of Educational and Psychological Consultation = J Educ Psychol Cons Journal of Educational and Psychological Consultation = J. Educ. Psychol. Cons. Journal of Educational Computing Research = J Educ Comput Res Journal of Educational Computing Research = J. Educ. Comput. Res. Journal of Educational Data Processing = J Educ Data Process Journal of Educational Data Processing = J. Educ. Data Process. Journal of Educational Measurement = J Educ Meas Journal of Educational Measurement = J. Educ. Meas. Journal of educational psychology = J Educ Psychol Journal of Educational Psychology = J Educ Psychol Journal of Educational Psychology = J. Educ. Psychol. Journal of Educational Research = J Educ Res Journal of Educational Research = J. Educ. Res. Journal of Educational Sociology = J Educ Sociol Journal of Educational Sociology = J. Educ. Sociol. Journal of Educational Statistics = J Educ Stat Journal of Educational Statistics = J. Educ. Stat. Journal of Educational Television = J Educ Tv Journal of Educational Television = J. Educ. Tv. Journal of Educational Thought = J Educ Thought Journal of Educational Thought = J. Educ. Thought Journal of Education Finance=J. Educ. Finance Journal of Education for Librarianship = J Educ Librarianship Journal of Education for Librarianship = J. Educ. Librarianship Journal of Education for Library and Information Science = J Educ Libr Inf Sci Journal of Education for Library and Information Science = J. Educ. Libr. Inf. Sci. Journal of education for social work = J Educ Soc Work Journal of Education for Social Work = J Educ Soc Work Journal of Education for Social Work = J. Educ. Soc. Work Journal of Education for Teaching = J Educ Teaching Journal of Education for Teaching = J. Educ. Teaching Journal of Education Policy = J Educ Policy Journal of Education Policy = J. Educ. Policy Journal of Egyptian Archaeology = JEA Journal of Egyptian Archaeology = J Egypt Archaeol Journal of Egyptian Archaeology = J. Egypt. Archaeol. Journal of Elasticity = J. Elast. Journal Of Elasticity = J Elast Journal of Elasticity = J. Elasticity Journal of Elasticity = J Elasticity Journal of Elasticity = J. Elasticity Journal of Elastomers and Plastics = J. Elastomers Plast. Journal of Elastomers and Plastics = J Elastom Plast Journal of Elastomers and Plastics = J. Elastom. Plast. Journal of elder abuse & neglect = J Elder Abuse Negl Journal of Elder Abuse & Neglect = J Elder Abuse Negl Journal of Elder Abuse & Neglect = J. Elder Abuse Negl. Journal of electrical and electronics engineering, Australia = J Electr Electron Eng Aust Journal of Electrical Engineering-elektrotechnicky Casopis = J Electr Eng Journal of Electrical Engineering-elektrotechnicky Casopis = J. Electr. Eng. Journal of Electrical Engineering-elektrotechnicky Casopis = J Electr Eng-slovak Journal of Electrical Engineering-elektrotechnicky Casopis = J. Electr. Eng-slovak. Journal of Electrical Engineering & Technology = J Electr Eng Technol Journal of Electrical Engineering & Technology = J. Electr. Eng. Technol. Journal of Electroanalytical Chemistry and Interfacial Electrochemistry = J. Electroanal. Chem. Interfacial Electrochem. Journal of Electroanalytical Chemistry = J Electroanal Chem Journal of Electroanalytical Chemistry = J. Electroanal. Chem. Journal of electrocardiology = J Electrocardiol Journal of Electrocardiology=J Electrocardiol;; Journal of Electrocardiology = J Electrocardiol Journal of Electrocardiology = J. Electrocardiol. Journal of Electroceramics = J Electroceram Journal of Electroceramics = J. Electroceram. Journal of Electromagnetic Analysis and Applications = J. Electromagn. Anal. Appl. Journal of Electromagnetic Waves and Applications = J Electromagnet Wave Journal of Electromagnetic Waves and Applications = J. Electromagnet. Wave. Journal of Electromyography and Kinesiology = J Electromyogr Kines Journal of Electromyography and Kinesiology = J. Electromyogr. Kines. Journal of Electromyography and Kinesiology = J. Electromyogr. Kinesiol. Journal of electromyography and kinesiology : official journal of the International Society of Electrophysiological Kinesiology = J Electromyogr Kinesiol Journal of electronic imaging = J Electron Imaging Journal of Electronic Imaging = J Electron Imaging Journal of Electronic Imaging = J. Electron. Imaging Journal of Electronic Materials = J Electron Mater Journal of Electronic Materials = J. Electron. Mater. Journal of Electronic Packaging = J. Electron. Packag. Journal of Electronic Packaging = J Electron Packaging Journal of Electronic Packaging = J. Electron. Packaging Journal of Electronics (China) = J. Electron. Journal of Electronics Manufacturing = J Electron Manuf Journal of Electronics Manufacturing = J. Electron. Manuf. Journal of Electronic Testing = J. Electron. Test. Journal of Electronic Testing-theory and Applications = J Electron Test Journal of Electronic Testing-theory and Applications = J. Electron. Test. Journal of Electron Microscopy = J Electron Microsc Journal of Electron Microscopy = J. Electron Microsc. Journal of electron microscopy = J Electron Microsc (Tokyo) Journal of Electron Microscopy=J Electron Microsc (Tokyo);; Journal of Electron Microscopy = J. Electron Microsc. (Tokyo) Journal of electron microscopy technique = J Electron Microsc Tech Journal of Electron Microscopy Technique = J. Electron Microsc. Tech. Journal of Electron Microscopy Technique = J Electron Micr Tech Journal of Electron Microscopy Technique = J. Electron Micr. Tech. Journal of Electron Spectroscopy and Related Phenomena = J Electron Spectrosc Journal of Electron Spectroscopy and Related Phenomena = J. Electron Spectrosc. Journal of Electron Spectroscopy and Related Phenomena = J. Electron Spectrosc. Relat. Phenom. Journal of Electron Spectroscopy and Related Phenomena = J. Electron. Spectrosc. Relat. Phenom. Journal of Electrophysiological Techniques = J Electrophysiol Tec Journal of Electrophysiological Techniques = J. Electrophysiol. Tec. Journal of Electrostatics = J Electrostat Journal of Electrostatics = J. Electrostat. Journal of Electrotechnics and Mathematics = J. Electrotech. Math. Journal of Elementology = J Elem Journal of Elementology = J. Elem. Journal of Embryology and Experimental Morphology = J Embryol Exp Morph Journal of Embryology and Experimental Morphology = J. Embryol. Exp. Morph. Journal of embryology and experimental morphology = J Embryol Exp Morphol Journal of Embryology and Experimental Morphology = J. Embryol. Exp. Morphol. Journal of Emergency Medical Services = J. Emerg. Med. Serv. JEMS Journal of Emergency Medicine=J Emerg Med;; Journal of Emergency Medicine = J Emerg Med Journal of Emergency Medicine = J. Emerg. Med. Journal of Emergency Nursing = J Emerg Nurs Journal of Emergency Nursing = J. Emerg. Nurs. Journal of emergency nursing: JEN : official publication of the Emergency Department Nurses Association = J Emerg Nurs Journal of Emerging Markets=J. Emerging Markets Journal of Emotional and Behavioral Disorders = J Emot Behav Disord Journal of Emotional and Behavioral Disorders = J. Emot. Behav. Disord. Journal of Empirical Finance = J Empir Financ Journal of Empirical Finance = J. Empir. Financ. Journal of Empirical Finance=J. Empirical Finance Journal of Empirical Research On Human Research Ethics = J Empir Res Hum Res Journal of Empirical Research On Human Research Ethics = J. Empir. Res. Hum. Res. Journal of empirical research on human research ethics : JERHRE = J Empir Res Hum Res Ethics Journal of Employment Counseling = J Employment Couns Journal of Employment Counseling = J. Employment Couns. Journal of endocrinological investigation = J Endocrinol Invest Journal of Endocrinological Investigation=J Endocrinol Invest;; Journal of Endocrinological Investigation = J Endocrinol Invest Journal of Endocrinological Investigation = J. Endocrinol. Invest. Journal of Endocrinology=J Endocrinol;; Journal of Endocrinology = J Endocrinol Journal of Endocrinology = J. Endocrinol. Journal of endodontics = J Endod Journal of Endodontics = J. Endod. Journal of Endodontics = J Endodont Journal of Endodontics = J. Endodont. Journal of endotoxin research = J Endotoxin Res Journal of Endotoxin Research = J Endotoxin Res Journal of Endotoxin Research = J. Endotoxin Res. Journal of endourology / Endourological Society = J Endourol Journal of Endourology=J Endourol;; Journal of Endourology = J Endourol Journal of Endourology = J. Endourol. Journal of Endovascular Surgery=J Endovasc Surg;; Journal of Endovascular Surgery = J Endovasc Surg Journal of Endovascular Surgery = J. Endovasc. Surg. Journal of endovascular surgery : the official journal of the International Society for Endovascular Surgery = J Endovasc Surg Journal of endovascular therapy : an official journal of the International Society of Endovascular Specialists = J Endovasc Ther Journal of Endovascular Therapy = J Endovasc Ther Journal of Endovascular Therapy = J. Endovasc. Ther. Journal of Energetic Materials = J. Energetic Mater. Journal of Energetic Materials = J Energ Mater Journal of Energetic Materials = J. Energ. Mater. Journal of Energy and Development = J Energy Dev Journal of Energy and Development = J. Energy Dev. Journal of Energy and Development=J. Energy Devel. Journal of Energy Engineering-asce = J Energ Eng-asce Journal of Energy Engineering-asce = J. Energ. Eng-asce. Journal of Energy Engineering = J. Energy Eng. Journal of Energy Finance and Development=J. Energy Finance Devel. Journal of Energy in Southern Africa = J Energy South Afr Journal of Energy in Southern Africa = J. Energy South. Afr. Journal of Energy = J Energy Journal of Energy = J. Energy Journal of Energy Literature=J. Energy Lit. Journal of Energy Resources Technology = J. Energy Res. Technol. Journal of Energy Resources Technology-transactions of The Asme = J Energ Resour-asme Journal of Energy Resources Technology-transactions of The Asme = J. Energ. Resour-asme. Journal of Engineered Fibers and Fabrics = J Eng Fiber Fabr Journal of Engineered Fibers and Fabrics = J. Eng. Fiber. Fabr. Journal of Engineered Fibers and Fabrics = J. Eng. Fibers Fabr. Journal of Engineering and Applied Sciences = J Eng Appl Sci Journal of Engineering and Applied Sciences = J. Eng. Appl. Sci. Journal of Engineering and Technology Management = J. Eng. Tech. Manage. Journal of Engineering and Technology Management = J Eng Technol Manage Journal of Engineering and Technology Management = J. Eng. Technol. Manage. Journal of Engineering Design = J. Eng. Des. Journal of Engineering Design = J Eng Design Journal of Engineering Design = J. Eng. Design Journal of Engineering Education = J Eng Educ Journal of Engineering Education = J. Eng. Educ. Journal of Engineering for Gas Turbines and Power = J. Eng. Gas Turbines Power Journal of Engineering for Gas Turbines and Power-transactions of The Asme = J Eng Gas Turb Power Journal of Engineering for Gas Turbines and Power-transactions of The Asme = J. Eng. Gas Turb. Power. Journal of Engineering for Industry = J Eng Ind Journal of Engineering for Industry = J. Eng. Ind. Journal of Engineering for Industry-transactions of The Asme = J Eng Ind-t Asme Journal of Engineering for Industry-transactions of The Asme = J. Eng. Ind-t. Asme Journal of Engineering for Power = J Eng P Journal of Engineering for Power = J. Eng. P. Journal of Engineering for Power-transactions of The Asme = J Eng Power-t Asme Journal of Engineering for Power-transactions of The Asme = J. Eng. Power-t. Asme Journal of Engineering Materials and Technology = J. Eng. Mater. Technol. Journal of Engineering Materials and Technology-transactions of The Asme = J Eng Mater-t Asme Journal of Engineering Materials and Technology-transactions of The Asme = J. Eng. Mater-t. Asme Journal of Engineering Mathematics = J Eng Math Journal of Engineering Mathematics = J. Eng. Math. Journal of Engineering Mathematics = J. Engrg. Math. Journal of Engineering Mechanics-asce = J Eng Mech-asce Journal of Engineering Mechanics-asce = J. Eng. Mech-asce. Journal of Engineering Mechanics = J. Eng. Mech. Journal of Engineering Physics and Thermophysics = J. Eng. Phys. Thermophys. Journal of engineering psychology = J Eng Psychol Journal of Engineering Psychology = J Eng Psychol Journal of Engineering Psychology = J. Eng. Psychol. Journal of Engineering Sciences = J Eng Sci Journal of Engineering Sciences = J. Eng. Sci. Journal of Engineering Technology = J Eng Technol Journal of Engineering Technology = J. Eng. Technol. Journal of Engineering Thermophysics = J Eng Thermophys Journal of Engineering Thermophysics = J. Eng. Thermophys. Journal of English and Germanic Philology = J Engl Ger Philol Journal of English and Germanic Philology = J. Engl. Ger. Philol. Journal of English Linguistics = J Engl Linguist Journal of English Linguistics = J. Engl. Linguist. Journal of Enhanced Heat Transfer = J Enhanc Heat Transf Journal of Enhanced Heat Transfer = J. Enhanc. Heat Transf. Journal of enterostomal therapy = J Enterostomal Ther Journal of Enterostomal Therapy = J. Enterostomal Ther. Journal of Entomological Science = J Entomol Sci Journal of Entomological Science = J. Entomol. Sci. Journal of Entomology Series A-general Entomology = J Entomol Ser A-gen Journal of Entomology Series A-general Entomology = J. Entomol. Ser. A-gen. Journal of Entomology Series A-physiology & Behaviour = J Entomol Ser A Journal of Entomology Series A-physiology & Behaviour = J. Entomol. Ser. A. Journal of Entomology Series B-taxonomy = J Entomol Ser B-taxo Journal of Entomology Series B-taxonomy = J. Entomol. Ser. B-taxo. Journal of Entomology Series B-taxonomy & Systematics = J Entomol Ser B Journal of Entomology Series B-taxonomy & Systematics = J. Entomol. Ser. B. Journal of Environmental and Engineering Geophysics = J Environ Eng Geoph Journal of Environmental and Engineering Geophysics = J. Environ. Eng. Geoph. Journal of Environmental and Engineering Geophysics = J. Environ. Eng. Geophys. Journal of environmental biology / Academy of Environmental Biology, India = J Environ Biol Journal of Environmental Biology = J Environ Biol Journal of Environmental Biology = J. Environ. Biol. Journal of Environmental Economics and Management = J Environ Econ Manag Journal of Environmental Economics and Management = J. Environ. Econ. Manag. Journal of environmental economics and management = J Environ Econ Manage Journal of Environmental Economics and Management=J. Environ. Econ. Manage. Journal of Environmental Education = J Environ Educ Journal of Environmental Education = J. Environ. Educ. Journal of Environmental Engineering and Landscape Management = J Environ Eng Landsc Journal of Environmental Engineering and Landscape Management = J. Environ. Eng. Landsc. Journal of Environmental Engineering and Science = J Environ Eng Sci Journal of Environmental Engineering and Science = J. Environ. Eng. Sci. Journal of Environmental Engineering-asce = J Environ Eng-asce Journal of Environmental Engineering-asce = J. Environ. Eng-asce. Journal of Environmental Engineering = J. Environ. Eng. Journal of Environmental Engineering (Reston, VA, United States) = J. Environ. Eng. (Reston, VA, U. S.) Journal of environmental health = J Environ Health Journal of Environmental Health = J Environ Health Journal of Environmental Health = J. Environ. Health Journal of Environmental Informatics = J Environ Inform Journal of Environmental Informatics = J. Environ. Inform. Journal of Environmental Law = J Environ Law Journal of Environmental Law = J. Environ. Law Journal of environmental management = J Environ Manage Journal of Environmental Management = J Environ Manage Journal of Environmental Management = J. Environ. Manage. Journal of environmental monitoring : JEM = J Environ Monit Journal of Environmental Monitoring = J. Environ. Monit. Journal of Environmental Monitoring = J Environ Monitor Journal of Environmental Monitoring = J. Environ. Monitor. Journal of Environmental Pathology and Toxicology = J Environ Pathol Tox Journal of Environmental Pathology and Toxicology = J. Environ. Pathol. Tox. Journal of environmental pathology and toxicology = J Environ Pathol Toxicol Journal of Environmental Pathology and Toxicology = J. Environ. Pathol. Toxicol. Journal of Environmental Pathology Toxicology and Oncology = J Environ Pathol Tox Journal of Environmental Pathology Toxicology and Oncology = J. Environ. Pathol. Tox. Journal of Environmental Pathology, Toxicology and Oncology=J Environ Pathol Toxicol Oncol;; Journal of Environmental Pathology, Toxicology and Oncology = J. Environ. Pathol. Toxicol. Oncol. Journal of environmental pathology, toxicology and oncology : official organ of the International Society for Environmental Toxicology and Cancer = J Environ Pathol Toxicol Oncol Journal of Environmental Permitting = J Environ Permitting Journal of Environmental Permitting = J. Environ. Permitting Journal of Environmental Planning and Management=J. Environ. Planning Manage. Journal of Environmental Planning and Management = J Environ Plann Man Journal of Environmental Planning and Management = J. Environ. Plann. Man. Journal of Environmental Planning and Management = J. Environ. Plann. Manage. Journal of Environmental Policy & Planning = J. Environ. Plann. Policy Manage. Journal of Environmental Policy & Planning = J Environ Pol Plan Journal of Environmental Policy & Planning = J. Environ. Pol. Plan. Journal of Environmental Polymer Degradation = J Environ Polym Degr Journal of Environmental Polymer Degradation = J. Environ. Polym. Degr. Journal of Environmental Protection and Ecology = J Environ Prot Ecol Journal of Environmental Protection and Ecology = J. Environ. Prot. Ecol. Journal of environmental psychology = J Environ Psychol Journal of Environmental Psychology = J Environ Psychol Journal of Environmental Psychology = J. Environ. Psychol. Journal of environmental quality = J Environ Qual Journal of Environmental Quality = J Environ Qual Journal of Environmental Quality = J. Environ. Qual. Journal of environmental radioactivity = J Environ Radioact Journal of Environmental Radioactivity = J. Environ. Radioact. Journal of Environmental Radioactivity = J Environ Radioactiv Journal of Environmental Radioactivity = J. Environ. Radioactiv. Journal of Environmental Science and Engineering = J. Environ. Sci. Eng. Journal of Environmental Science and Health, Part A: Environmental Science and Engineering = J. Environ. Sci. Health, Part A Journal of Environmental Science and Health, Part A: Environmental Science and Engineering = J. Environ. Sci. Health. Part A Environ. Sci. Health Part A Environ. Sci. Eng Journal of Environmental Science and Health Part A-environmental Science and Engineering & Toxic and Hazardous Substance Control = J Environ Sci Heal A Journal of Environmental Science and Health Part A-environmental Science and Engineering & Toxic and Hazardous Substance Control = J. Environ. Sci. Heal. A. Journal of environmental science and health. Part A, Environmental science and engineering & toxic and hazardous substance control = J Environ Sci Health A Environ Sci Eng Toxic Hazard Subst Control Journal of Environmental Science and Health, Part A: Environmental Science and Engineering & Toxic and Hazardous Substance Control = J. Environ. Sci. Health., Part A Environ. Sci. Eng.Toxic Hazard. Subst. Control Journal of Environmental Science and Health, Part A Environmental Science = J. Environ. Sci. Health., Part A Journal of Environmental Science and Health. Part A, Toxic/Hazardous Substances and Environmental Engineering = J. Environ. Sci. Health Part A Tox. Hazard. Subst. Environ. Eng. Journal of Environmental Science and Health Part A-toxic/hazardous Substances & Environmental Engineering = J Environ Sci Heal A Journal of Environmental Science and Health Part A-toxic/hazardous Substances & Environmental Engineering = J. Environ. Sci. Heal. A. Journal of environmental science and health. Part A, Toxic/hazardous substances & environmental engineering = J Environ Sci Health A Tox Hazard Subst Environ Eng Journal of Environmental Science and Health, Part A: Toxic/Hazardous Substances & Environmental Engineering = J. Environ. Sci. Health, Part A: Toxic/Hazard. Subst. Environ. Eng. Journal of Environmental Science and Health, Part A: Toxic/Hazardous Substances & Environmental Engineering = J. Environ. Sci. Health. Part A Toxic/Hazard. Subst. Environ. Eng. Journal of Environmental Science and Health Part B-pesticides Food Contaminants and Agricultural Wastes = J Environ Sci Heal B Journal of Environmental Science and Health Part B-pesticides Food Contaminants and Agricultural Wastes = J. Environ. Sci. Heal. B. Journal of environmental science and health. Part. B, Pesticides, food contaminants, and agricultural wastes = J Environ Sci Health B Journal of Environmental Science and Health. Part B, Pesticides, Food Contaminants, and Agricultural Wastes = J. Environ. Sci. Health B Journal of Environmental Science and Health. Part B: Pesticides, Food Contaminants, And Agricultural Wastes=J Environ Sci Health B;; Journal of Environmental Science and Health, Part B: Pesticides, Food Contaminants, and Agricultural Wastes = J. Environ. Sci. Health, Part B Journal of Environmental Science and Health, Part B: Pesticides, Food Contaminants, and Agricultural Wastes = J. Environ. Sci. Health., Part B Journal of Environmental Science and Health, Part B Pesticides = J. Environ. Sci. Health., Part B Journal of Environmental Science and Health Part C-environmental Carcinogenesis & Ecotoxicology Reviews = J Environ Sci Heal C Journal of Environmental Science and Health Part C-environmental Carcinogenesis & Ecotoxicology Reviews = J. Environ. Sci. Heal. C. Journal of environmental science and health. Part C, Environmental carcinogenesis & ecotoxicology reviews = J Environ Sci Health C Environ Carcinog Ecotoxicol Rev Journal of Environmental Science and Health, Part C: Environmental Carcinogenesis & Ecotoxicology Reviews = J. Environ. Sci. Health., Part C Environ. Carcinog. Ecotoxicol. Rev. Journal of Environmental Science and Health Part C-environmental Carcinogenesis Reviews = J Environ Sci Heal C Journal of Environmental Science and Health Part C-environmental Carcinogenesis Reviews = J. Environ. Sci. Heal. C. Journal of Environmental Science and Health, Part C: Environmental Carcinogenesis Reviews = J. Environ. Sci. Health., Part C Environ. Carcinog. Rev. Journal of Environmental Science and Health Part C-environmental Health Sciences = J Environ Sci Heal C Journal of Environmental Science and Health Part C-environmental Health Sciences = J. Environ. Sci. Heal. C. Journal of environmental science and health. Part C: Environmental health sciences = J Environ Sci Health C Journal of Environmental Science and Health. Part C, Environmental Health Sciences = J. Environ. Sci. Health [C] Journal of Environmental Science and Health, Part C: Environmental Health Sciences = J. Environ. Sci. Health., Part C Environ. Health Sci. Journal of Environmental Science and Technology = J. Environ. Sci. Technol. Journal of environmental science & engineering = J Environ Sci Eng Journal of Environmental Science & Engineering = J. Environ. Sci. Eng. Journal of environmental sciences (China) = J Environ Sci (China) Journal of Environmental Sciences-china = J Environ Sci-china Journal of Environmental Sciences-china = J. Environ. Sci-china. Journal of Environmental Sciences = J Environ Sci Journal of Environmental Sciences = J. Environ. Sci. Journal of Environmental Systems = J Environ Syst Journal of Environmental Systems = J. Environ. Syst. Journal of Environment and Development=J. Environ. Devel. Journal of Environment Biology = J. Environ. Biol. Journal of Environment Health = J. Environ. Health Journal of Environment Management = J. Environ. Manage. Journal of Environment Quality = J. Environ. Qual. Journal of Environment Radioactivity = J. Environ. Radioact. Journal of Environment Science and Health, Part A Environmental Science = J. Environ. Sci. Health., Part A Journal of Environment Science and Health, Part B Pesticides = J. Environ. Sci. Health., Part B Journal of enzyme inhibition and medicinal chemistry = J Enzyme Inhib Med Chem Journal of Enzyme Inhibition and Medicinal Chemistry = J. Enzyme Inhib. Med. Chem. Journal of Enzyme Inhibition and Medicinal Chemistry = J Enzym Inhib Med Ch Journal of Enzyme Inhibition and Medicinal Chemistry = J. Enzym. Inhib. Med. Ch. Journal of enzyme inhibition = J Enzyme Inhib Journal of Enzyme Inhibition=J Enzyme Inhib;; Journal of Enzyme Inhibition = J. Enzyme Inhib. Journal of Enzyme Inhibition = J Enzym Inhib Journal of Enzyme Inhibition = J. Enzym Inhib. Journal of Enzyme Inhibition = J. Enzym. Inhib. Journal of epidemiology and biostatistics = J Epidemiol Biostat Journal of Epidemiology and Biostatistics = J. Epidemiol. Biostat. Journal of Epidemiology and Community Health = J Epidemiol Commun H Journal of Epidemiology and Community Health = J. Epidemiol. Commun. H. Journal of epidemiology and community health = J Epidemiol Community Health Journal of Epidemiology and Community Health=J Epidemiol Community Health;; Journal of Epidemiology and Community Health = J. Epidemiol. Community Health Journal of epidemiology / Japan Epidemiological Association = J Epidemiol Journal of Epidemiology=J Epidemiol;; Journal of Epidemiology = J Epidemiol Journal of Epidemiology = J. Epidemiol. Journal of epilepsy = J Epilepsy Journal of Epilepsy = J Epilepsy Journal of Epilepsy = J. Epilepsy Journal of Equine Medicine and Surgery = J Equine Med Surg Journal of Equine Medicine and Surgery = J. Equine Med. Surg. Journal of Equine Veterinary Science = J Equine Vet Sci Journal of Equine Veterinary Science = J. Equine Vet. Sci. Journal of Essential Oil Bearing Plants = J Essent Oil Bear Pl Journal of Essential Oil Bearing Plants = J. Essent. Oil Bear. Pl. Journal of Essential Oil-Bearing Plants = J. Essent. Oil Bear. Plants Journal of Essential Oil Research = J Essent Oil Res Journal of Essential Oil Research = J. Essent. Oil Res. Journal of Esthetic and Restorative Dentistry = J Esthet Restor Dent Journal of Esthetic and Restorative Dentistry = J. Esthet. Restor. Dent. Journal of esthetic and restorative dentistry : official publication of the American Academy of Esthetic Dentistry ... [et al.] = J Esthet Restor Dent Journal of esthetic dentistry = J Esthet Dent Journal of Esthetic Dentistry = J. Esthet. Dent. Journal of ethics, law, and aging = J Ethics Law Aging Journal of Ethiopian studies / Haile Sellassie I University, Institute of Ethiopian Studies = J Ethiop Stud Journal of ethnic and migration studies = J Ethn Migr Stud Journal of Ethnic and Migration Studies = J Ethn Migr Stud Journal of Ethnic and Migration Studies = J. Ethn. Migr. Stud. Journal of ethnicity in substance abuse = J Ethn Subst Abuse Journal of Ethnicity in Substance Abuse = J. Ethn. Subst. Abuse. Journal of Ethnic Studies = J Ethnic Stud Journal of Ethnic Studies = J. Ethnic Stud. Journal of ethnobiology and ethnomedicine = J Ethnobiol Ethnomed Journal of Ethnobiology and Ethnomedicine = J. Ethnobiol. Ethnomed. Journal of Ethnobiology = J Ethnobiol Journal of Ethnobiology = J. Ethnobiol. Journal of ethnopharmacology = J Ethnopharmacol Journal of Ethnopharmacology=J Ethnopharmacol;; Journal of Ethnopharmacology = J Ethnopharmacol Journal of Ethnopharmacology = J. Ethnopharmacol. Journal of Ethology = J Ethol Journal of Ethology = J. Ethol. Journal of ET Nursing = J. ET Nurs. Journal of ET nursing : official publication, International Association for Enterostomal Therapy = J ET Nurs Journal of Eukaryotic Microbiology=J Eukaryot Microbiol;; Journal of Eukaryotic Microbiology = J Eukaryot Microbiol Journal of Eukaryotic Microbiology = J. Eukaryot. Microbiol. Journal of European archaeology = JEurArch Journal of European Economic History=J. Europ. Econ. Hist. Journal of European Public Policy = J Eur Public Policy Journal of European Public Policy = J. Eur. Public Policy Journal of European social policy = J Eur Soc Policy Journal of European Social Policy = J Eur Soc Policy Journal of European Social Policy = J. Eur. Soc. Policy Journal of European studies = J Eur Stud Journal of European Studies = J Eur Stud Journal of European Studies = J. Eur. Stud. Journal of European Training = J Eur Train Journal of European Training = J. Eur. Train. Journal of evaluation in clinical practice = J Eval Clin Pract Journal of Evaluation in Clinical Practice = J Eval Clin Pract Journal of Evaluation in Clinical Practice = J. Eval. Clin. Pract. Journal of Evaluation In Clinical Practice=J Eval Clin Pract;; Journal of Evolutionary Biochemistry and Physiology = J Evol Biochem Phys+ Journal of Evolutionary Biochemistry and Physiology = J. Evol. Biochem. Phys+.+ Journal of evolutionary biochemistry and physiology = J Evol Biochem Physiol Journal of Evolutionary Biochemistry and Physiology\ = J. Evol. Biochem. Physiol. Journal of evolutionary biology = J Evol Biol Journal of Evolutionary Biology = J Evolution Biol Journal of Evolutionary Biology = J. Evolution. Biol. Journal of Evolutionary Economics = J Evol Econ Journal of Evolutionary Economics = J. Evol. Econ. Journal of Evolutionary Economics=J. Evolutionary Econ. Journal of Evolution Equations = J Evol Equ Journal of Evolution Equations = J. Evol. Equ. Journal of Exceptional Children = J Except Child Journal of Exceptional Children = J. Except. Child. Journal of Exercise Science & Fitness = J Exerc Sci Fit Journal of Exercise Science & Fitness = J. Exerc. Sci. Fit. Journal of existentialism = J Existent Journal of Existentialism = J. Existent. Journal of Exotic Pet Medicine = J Exot Pet Med Journal of Exotic Pet Medicine = J. Exot. Pet Med. Journal of Experiential Learning and Simulation = J Exp Learn Simulat Journal of Experiential Learning and Simulation = J. Exp. Learn. Simulat. Journal of Experimental and Clinical Cancer Research=J Exp Clin Cancer Res;; Journal of Experimental and Clinical Cancer Research = J. Exp. Clin. Cancer Res. Journal of Experimental and Theoretical Physics = J. Experiment. Theoret. Phys. Journal of Experimental and Theoretical Physics = J Exp Theor Phys+ Journal of Experimental and Theoretical Physics = J. Exp. Theor. Phys. Journal of Experimental and Theoretical Physics = J. Exp. Theor. Phys+.+ Journal of experimental animal science = J Exp Anim Sci Journal of Experimental Animal Science = J Exp Anim Sci Journal of Experimental Animal Science = J. Exp. Anim. Sci. Journal of Experimental Biology=J Exp Biol;; Journal of Experimental Biology = J Exp Biol Journal of Experimental Biology = J. Exp. Biol. Journal of experimental botany = J Exp Bot Journal of Experimental Botany = J Exp Bot Journal of Experimental Botany = J. Exp. Bot. Journal of experimental child psychology = J Exp Child Psychol Journal of Experimental Child Psychology=J Exp Child Psychol;; Journal of Experimental Child Psychology = J Exp Child Psychol Journal of Experimental Child Psychology = J. Exp. Child Psychol. Journal of experimental & clinical assisted reproduction = J Exp Clin Assist Reprod Journal of experimental & clinical cancer research : CR = J Exp Clin Cancer Res Journal of Experimental & Clinical Cancer Research = J Exp Clin Canc Res Journal of Experimental & Clinical Cancer Research = J. Exp. Clin. Canc. Res. Journal of Experimental Education = J Exp Educ Journal of Experimental Education = J. Exp. Educ. Journal of experimental marine biology and ecology = J Exp Mar Bio Ecol Journal of Experimental Marine Biology and Ecology = J Exp Mar Biol Ecol Journal of Experimental Marine Biology and Ecology = J. Exp. Mar. Biol. Ecol. Journal of experimental medical sciences = J Exp Med Sci Journal of Experimental Medical Sciences = J. Exp. Med. Sci. Journal of Experimental Medicine=J Exp Med;; Journal of Experimental Medicine = J Exp Med Journal of Experimental Medicine = J. Exp. Med. Journal of Experimental Nanoscience = J Exp Nanosci Journal of Experimental Nanoscience = J. Exp. Nanosci. Journal of experimental pathology = J Exp Pathol Journal of Experimental Pathology = J Exp Pathol Journal of Experimental Pathology = J. Exp. Pathol. Journal of experimental pathology (Oxford, England) = J Exp Pathol (Oxford) Journal of Experimental Psychology-animal Behavior Processes = J Exp Psychol Anim B Journal of Experimental Psychology-animal Behavior Processes = J. Exp. Psychol. Anim. B. Journal of experimental psychology. Animal behavior processes = J Exp Psychol Anim Behav Process Journal of Experimental Psychology: Animal Behavior Processes=J Exp Psychol Anim Behav Process;; Journal of Experimental Psychology: Animal Behavior Processes = J. Exp. Psychol. Anim. Behav. Process. Journal of experimental psychology. Applied = J Exp Psychol Appl Journal of Experimental Psychology-applied = J Exp Psychol-appl Journal of Experimental Psychology-applied = J. Exp. Psychol-appl. Journal of experimental psychology. General = J Exp Psychol Gen Journal of Experimental Psychology-general = J Exp Psychol Gen Journal of Experimental Psychology-general = J. Exp. Psychol. Gen. Journal of Experimental Psychology: General=J Exp Psychol Gen;; Journal of Experimental Psychology: General = J. Exp. Psychol. Gen. Journal of Experimental Psychology-human Learning and Memory = J Exp Psychol-hum L Journal of Experimental Psychology-human Learning and Memory = J. Exp. Psychol-hum. L. Journal of experimental psychology. Human learning and memory = J Exp Psychol [Hum Learn] Journal of Experimental Psychology: Human Learning and Memory = J. Exp. Psychol. [Hum. Learn.] Journal of Experimental Psychology-human Perception and Performance = J Exp Psychol Human Journal of Experimental Psychology-human Perception and Performance = J. Exp. Psychol. Human. Journal of experimental psychology. Human perception and performance = J Exp Psychol Hum Percept Perform Journal of Experimental Psychology: Human Perception and Performance=J Exp Psychol Hum Percept Perform;; Journal of Experimental Psychology: Human Perception and Performance = J. Exp. Psychol. Hum. Percept. Perform. Journal of experimental psychology = J Exp Psychol Journal of Experimental Psychology = J Exp Psychol Journal of Experimental Psychology = J. Exp. Psychol. Journal of Experimental Psychology-learning Memory and Cognition = J Exp Psychol Learn Journal of Experimental Psychology-learning Memory and Cognition = J. Exp. Psychol. Learn. Journal of experimental psychology. Learning, memory, and cognition = J Exp Psychol Learn Mem Cogn Journal of Experimental Psychology: Learning, Memory, and Cognition = J. Exp. Psychol. Learn. Mem. Cogn. Journal of Experimental Psychology. Learning, Memory, and Cognition=J Exp Psychol Learn Mem Cogn;; Journal of Experimental Research in Personality = J Exp Res Pers Journal of Experimental Research in Personality = J. Exp. Res. Pers. Journal of experimental social psychology = J Exp Soc Psychol Journal of Experimental Social Psychology = J Exp Soc Psychol Journal of Experimental Social Psychology = J. Exp. Soc. Psychol. Journal of Experimental & Theoretical Artificial Intelligence = J Exp Theor Artif In Journal of Experimental & Theoretical Artificial Intelligence = J. Exp. Theor. Artif. In. Journal of Experimental & Theoretical Artificial Intelligence = J. Exp. Theor. Artif. Intell. Journal of Experimental Therapeutics and Oncology=J Exp Ther Oncol;; Journal of Experimental Therapeutics and Oncology = J. Exp. Ther. Oncol. Journal of experimental therapeutics & oncology = J Exp Ther Oncol Journal of Experimental Zoology=J Exp Zool;; Journal of Experimental Zoology = J Exp Zool Journal of Experimental Zoology = J. Exp. Zool. Journal of experimental zoology. Part A, Comparative experimental biology = J Exp Zoolog A Comp Exp Biol Journal of Experimental Zoology. Part A, Comparative Experimental Biology = J. Exp. Zoolog. A Comp. Exp. Biol. Journal of Experimental Zoology Part A-comparative Experimental Biology = J Exp Zool Part A Journal of Experimental Zoology Part A-comparative Experimental Biology = J. Exp. Zool. Part A. Journal of Experimental Zoology Part A-ecological Genetics and Physiology = J Exp Zool Part A Journal of Experimental Zoology Part A-ecological Genetics and Physiology = J. Exp. Zool. Part A. Journal of experimental zoology. Part A, Ecological genetics and physiology = J Exp Zool Part A Ecol Genet Physiol Journal of experimental zoology. Part B. Molecular and developmental evolution = J Exp Zoolog B Mol Dev Evol Journal of Experimental Zoology. Part B, Molecular and Developmental Evolution = J. Exp. Zoolog. B Mol. Dev. Evol. Journal of Experimental Zoology Part B-molecular and Developmental Evolution = J Exp Zool Part B Journal of Experimental Zoology Part B-molecular and Developmental Evolution = J. Exp. Zool. Part B. Journal of Experimental Zoology. Supplement=J Exp Zool Suppl;; Journal of Experimental Zoology. Supplement = J. Exp. Zool. Suppl. Journal of Exposure Analysis and Environmental Epidemiology = J Expo Anal Env Epid Journal of Exposure Analysis and Environmental Epidemiology = J. Expo. Anal. Env. Epid. Journal of exposure analysis and environmental epidemiology = J Expo Anal Environ Epidemiol Journal of Exposure Analysis and Environmental Epidemiology=J Expo Anal Environ Epidemiol;; Journal of Exposure Analysis and Environmental Epidemiology = J. Expo. Anal. Environ. Epidemiol. Journal of Exposure Analysis and Environment Epidemiology = J. Exposure Anal. Environ. Epidemiol. Journal of Exposure Science and Environmental Epidemiology = J Expo Sci Env Epid Journal of Exposure Science and Environmental Epidemiology = J. Expo. Sci. Env. Epid. Journal of Exposure Science and Environmental Epidemiology = J. Expo. Sci. Environ. Epidemiol. Journal of exposure science & environmental epidemiology = J Expo Sci Environ Epidemiol Journal of Exposure Science & Environmental Epidemiology = J. Exposure Sci. Environ. Epidemiol. Journal of Extension = J Extension Journal of Extension = J. Extension Journal of Extra-Corporeal Technology = J. Extra. Corpor. Technol. Journal of Extra-corporeal Technology = J Extra-corp Technol Journal of Extra-corporeal Technology = J. Extra-corp. Technol. Journal of Failure Analysis and Prevention = J. Fail. Anal. Prev. Journal of family and economic issues = J Fam Econ Issues Journal of Family and Economic Issues=J. Family Econ. Issues Journal of Family Counseling = J Fam Couns Journal of Family Counseling = J. Fam. Couns. Journal of family health training = J Famil Health Train Journal of family history = J Fam Hist Journal of Family History = J Fam Hist Journal of Family History = J. Fam. Hist. Journal of family issues = J Fam Issues Journal of Family Issues = J Fam Issues Journal of Family Issues = J. Fam. Issues Journal of Family Law = J Fam Law Journal of Family Law = J. Fam. Law Journal of family law / University of Louisville School of Law = J Fam Law Journal of family nursing = J Fam Nurs Journal of Family Nursing = J Fam Nurs Journal of Family Nursing = J. Fam. Nurs. Journal of Family Planning and Reproductive Health Care = J. Fam. Plann. Reprod. Health Care Journal of Family Planning and Reproductive Health Care = J Fam Plan Reprod H Journal of Family Planning and Reproductive Health Care = J. Fam. Plan. Reprod. H. Journal of Family Practice=J Fam Pract;; Journal of Family Practice = J. Fam. Pract. Journal of Family Practice = J Fam Practice Journal of Family Practice = J. Fam. Practice Journal of Family Psychology = J Fam Psychol Journal of Family Psychology = J. Fam. Psychol. Journal of family psychology : JFP : journal of the Division of Family Psychology of the American Psychological Association (Division 43) = J Fam Psychol Journal of family psychotherapy = J Fam Psychother Journal of Family Studies = J Fam Stud Journal of Family Studies = J. Fam. Stud. Journal of Family Therapy = J Fam Ther Journal of Family Therapy = J. Fam. Ther. Journal of family violence = J Fam Violence Journal of Family Violence = J Fam Violence Journal of Family Violence = J. Fam. Violence Journal of Family Welfare = J Fam Welfare Journal of Family Welfare = J. Fam. Welfare Journal of Far Eastern Business=J. Far Eastern Bus. Journal of Farm Economics=J. Farm Econ. Journal of Farm Economics = J Farm Econ Journal of Farm Economics = J. Farm Econ. Journal of feline medicine and surgery = J Feline Med Surg Journal of Feline Medicine and Surgery = J Feline Med Surg Journal of Feline Medicine and Surgery = J. Feline Med. Surg. Journal of feminist family therapy = J Fem Fam Ther Journal of Feminist Studies in Religion = J Feminist Stud Rel Journal of Feminist Studies in Religion = J. Feminist Stud. Rel. Journal of Fermentation and Bioengineering = J Ferment Bioeng Journal of Fermentation and Bioengineering = J. Ferment. Bioeng. Journal of Fermentation Technology = J Ferment Bioeng Journal of Fermentation Technology = J. Ferment. Bioeng. Journal of Fermentation Technology = J Ferment Technol Journal of Fermentation Technology = J. Ferment. Technol. Journal of Ferrocement-bangkok = J Ferrocement Journal of Ferrocement-bangkok = J. Ferrocement. Journal of Fertilizer Issues = J Fert Issues Journal of Fertilizer Issues = J. Fert. Issues Journal Officiel De La Republique Francaise, Edition Des Lois Et Decrets = J Off Repub Fr Ed Lois Decrets Journal of Field Archaeology = JFA Journal of Field Archaeology = JFieldA Journal of Field Archaeology = J Field Archaeol Journal of Field Archaeology = J. Field Archaeol. Journal of Field Ornithology = J Field Ornithol Journal of Field Ornithology = J. Field Ornithol. Journal of Field Robotics = J. Field Rob. Journal of Field Robotics = J Field Robot Journal of Field Robotics = J. Field Robot. Journal of Film and Video = J Film Video Journal of Film and Video = J. Film Video Journal of Film and Video = J Univ Film Video As Journal of Film and Video = J. Univ. Film Video As. Journal of Finance = J Financ Journal of Finance = J. Financ. Journal of Finance=J. Finance Journal of Financial and Quantitative Analysis = J Financ Quant Anal Journal of Financial and Quantitative Analysis = J. Financ. Quant. Anal. Journal of Financial and Quantitative Analysis=J. Finan. Quant. Anal. Journal of Financial Econometrics = J Financ Economet Journal of Financial Econometrics = J. Financ. Economet. Journal of Financial Economics = J Financ Econ Journal of Financial Economics = J. Financ. Econ. Journal of Financial Economics=J. Finan. Econ. Journal of Financial Intermediation = J Financ Intermed Journal of Financial Intermediation = J. Financ. Intermed. Journal of Financial Intermediation=J. Finan. Intermediation Journal of Financial Management and Analysis=J. Finan. Manage. Anal. Journal of Financial Markets = J Financ Mark Journal of Financial Markets = J. Financ. Mark. Journal of Financial Research = J Financ Res Journal of Financial Research = J. Financ. Res. Journal of Financial Research=J. Finan. Res. Journal of Financial Services Research = J Financ Serv Res Journal of Financial Services Research = J. Financ. Serv. Res. Journal of Financial Services Research=J. Finan. Services Res. Journal of Fire & Flammability = J Fire Flammability Journal of Fire & Flammability = J. Fire Flammability Journal of Fire Protection Engineering = J Fire Prot Eng Journal of Fire Protection Engineering = J. Fire Prot. Eng. Journal of Fire Protection Engineering = J. Fire. Prot. Eng. Journal of Fire Retardant Chemistry = J Fire Retard Chem Journal of Fire Retardant Chemistry = J. Fire Retard. Chem. Journal of Fire Sciences = J Fire Sci Journal of Fire Sciences = J. Fire Sci. Journal of fish biology = J Fish Biol Journal of Fish Biology = J Fish Biol Journal of Fish Biology = J. Fish Biol. Journal of fish diseases = J Fish Dis Journal of Fish Diseases = J Fish Dis Journal of Fish Diseases = J. Fish Dis. Journal of Fisheries and Aquatic Science = J. Fish. Aquat. Sci. Journal of Fixed Point Theory and Applications = J Fix Point Theory A Journal of Fixed Point Theory and Applications = J. Fix. Point Theory A. Journal of Flood Risk Management = J. Flood Risk Manage. Journal of Flour and Animal Feed Milling = J Flour Anim F Mill Journal of Flour and Animal Feed Milling = J. Flour Anim. F. Mill. Journal of fluency disorders = J Fluency Disord Journal of Fluency Disorders = J Fluency Disord Journal of Fluency Disorders = J. Fluency Disord. Journal of fluid mechanics = J Fluid Mech Journal of Fluid Mechanics = J. Fluid Mech. Journal of Fluid Mechanics = J Fluid Mech Journal of Fluid Mechanics = J. Fluid Mech. Journal of Fluids and Structures = J. Fluids Struct. Journal of Fluids and Structures = J Fluid Struct Journal of Fluids and Structures = J. Fluid. Struct. Journal of Fluids Engineering = J. Fluids Eng. Journal of Fluids Engineering-transactions of The Asme = J Fluid Eng-t Asme Journal of Fluids Engineering-transactions of The Asme = J. Fluid. Eng-t. Asme Journal of fluorescence = J Fluoresc Journal of Fluorescence = J Fluoresc Journal of Fluorescence = J. Fluoresc. Journal of fluorine chemistry = J Fluor Chem Journal of Fluorine Chemistry = J Fluorine Chem Journal of Fluorine Chemistry = J. Fluorine Chem. Journal of foetal medicine = J Foetal Med Journal of Folklore Research = J Folklore Res Journal of Folklore Research = J. Folklore Res. Journal of Food, Agriculture and Environment = J. Food Agric. Environ. Journal of Food, Agriculture and Environment = J. Food, Agric. Environ. Journal of Food Agriculture & Environment = J Food Agric Environ Journal of Food Agriculture & Environment = J. Food Agric. Environ. Journal of Food and Drug Analysis = J Food Drug Anal Journal of Food and Drug Analysis = J. Food Drug Anal. Journal of Food and Nutrition Research = J Food Nutr Res Journal of Food and Nutrition Research = J. Food Nutr. Res. Journal of Food Biochemistry = J Food Biochem Journal of Food Biochemistry = J. Food Biochem. Journal of food composition and analysis : an official publication of the United Nations University, International Network of Food Data Systems = J Food Compost Anal Journal of Food Composition and Analysis = J Food Compos Anal Journal of Food Composition and Analysis = J. Food Compos. Anal. Journal of Food Engineering = J Food Eng Journal of Food Engineering = J. Food Eng. Journal of Food Lipids = J Food Lipids Journal of Food Lipids = J. Food Lipids Journal of Food & Nutrition = J Food Nutr Journal of Food & Nutrition = J. Food Nutr. Journal of food process engineering = J Food Process Eng Journal of Food Process Engineering = J Food Process Eng Journal of Food Process Engineering = J. Food Process Eng Journal of Food Process Engineering = J. Food Process Eng. Journal of Food Processing and Preservation = J Food Process Pres Journal of Food Processing and Preservation = J. Food Process. Pres. Journal of Food Processing and Preservation = J. Food Process. Preserv. Journal of food protection = J Food Prot Journal of Food Protection = J. Food Prot. Journal of Food Protection = J Food Protect Journal of Food Protection = J. Food Protect. Journal of food quality = J Food Qual Journal of Food Quality = J. Food Qual. Journal of Food Quality = J Food Quality Journal of Food Quality = J. Food Quality Journal of Food Safety = J. Food Saf. Journal of Food Safety = J Food Safety Journal of Food Safety = J. Food Safety Journal of Food Science and Technology = J. Food Sci. Technol. Journal of Food Science and Technology-mysore = J Food Sci Tech Mys Journal of Food Science and Technology-mysore = J. Food Sci. Tech. Mys. Journal of Food Science Education = J. Food Sci. Educ. Journal of food science = J Food Sci Journal of Food Science = J Food Sci Journal of Food Science = J. Food Sci. Journal of Food Technology = J Food Technol Journal of Food Technology = J. Food Technol. Journal of Foot and Ankle Surgery=J Foot Ankle Surg;; Journal of Foot and Ankle Surgery = J. Foot Ankle Surg. Journal of Foot & Ankle Surgery = J Foot Ankle Surg Journal of Foot & Ankle Surgery = J. Foot Ankle Surg. Journal of Foot Surgery = J. Foot Surg. Journal of Foramineferal Research = J. Foramineferal Res. Journal of Foraminiferal Research = J Foramin Res Journal of Foraminiferal Research = J. Foramin. Res. Journal of forecasting = J Forecast Journal of Forecasting = J Forecasting Journal of Forecasting = J. Forecasting Journal of forensic and legal medicine = J Forensic Leg Med Journal of Forensic Economics=J. Forensic Econ. Journal of Forensic Medicine and Toxicology = J. Forensic Med. Toxicol. Journal of forensic medicine = J Forensic Med Journal of Forensic Medicine = J. Forensic Med. Journal of forensic nursing = J Forensic Nurs Journal of Forensic Nursing = J. Forensic. Nurs. Journal of Forensic Odonto-Stomatology = J. Forensic Odontostomatol. Journal of Forensic Psychiatry = J Forensic Psychiatr Journal of Forensic Psychiatry = J. Forensic Psychiatr. Journal of Forensic Psychiatry & Psychology = J Foren Psychi Psych Journal of Forensic Psychiatry & Psychology = J. Foren. Psychi. Psych. Journal of Forensic Psychiatry & Psychology = J Forensic Psychi Ps Journal of Forensic Psychiatry & Psychology = J. Forensic Psychi. Ps. Journal of Forensic Psychology Practice = J Forensic Psychol P Journal of Forensic Psychology Practice = J. Forensic Psychol. P. Journal of Forensic Science = J. Forensic Sci. Journal of forensic sciences = J Forensic Sci Journal of Forensic Sciences=J Forensic Sci;; Journal of Forensic Sciences = J Forensic Sci Journal of Forensic Sciences = J. Forensic Sci. Journal of Forest Economics = J Forest Econ Journal of Forest Economics = J. Forest Econ. Journal of Forest Research = J Forest Res-jpn Journal of Forest Research = J. Forest Res-jpn. Journal of Forest Research = J For Res-jpn Journal of Forest Research = J. For. Res-jpn. Journal of Forestry = J. For. Journal of Forestry = J Forest Journal of Forestry = J. Forest. Journal of Fourier Analysis and Applications = J Fourier Anal Appl Journal of Fourier Analysis and Applications = J. Fourier Anal. Appl. Journal of Fractional Calculus = J. Fract. Calc. Journal of Free Radicals in Biology and Medicine = J. Free Radic. Biol. Med. Journal of free radicals in biology & medicine = J Free Radic Biol Med Journal of French Language Studies = J Fr Lang Stud Journal of French Language Studies = J. Fr. Lang. Stud. Journal of Freshwater Ecology = J Freshwater Ecol Journal of Freshwater Ecology = J. Freshwater Ecol. Journal of Friction and Wear = J Frict Wear+ Journal of Friction and Wear = J. Frict. Wear Journal of Friction and Wear = J. Frict. Wear+.+ Journal of Fuel Cell Science and Technology = J Fuel Cell Sci Tech Journal of Fuel Cell Science and Technology = J. Fuel Cell Sci. Tech. Journal of Fuel Cell Science and Technology = J. Fuel Cell Sci. Technol. Journal of Functional Analysis = J. Funct. Anal. Journal of Functional Analysis = J Funct Anal Journal of Functional Analysis = J. Funct. Anal. Journal of Functional Foods = J. Funct. Foods Journal of Functional Programming = J Funct Program Journal of Functional Programming = J. Funct. Program. Journal of Functional Programming = J. Funct. Programming Journal of Function Spaces and Applications = J Funct Space Appl Journal of Function Spaces and Applications = J. Funct. Space. Appl. Journal of Fusion Energy = J Fusion Energ Journal of Fusion Energy = J. Fusion Energ. Journal of Fusion Energy = J. Fusion Energy Journal of Futures Markets=J. Futures Markets Journal of Futures Markets = J Futures Markets Journal of Futures Markets = J. Futures Markets Journal of Fuzhou University = J. Fuzhou Univ. Nat. Sci. Ed. Journal of Fuzzy Mathematics = J. Fuzzy Math. Journal of gambling studies / co-sponsored by the National Council on Problem Gambling and Institute for the Study of Gambling and Commercial Gaming = J Gambl Stud Journal of Gambling Studies = J Gambl Stud Journal of Gambling Studies = J. Gambl. Stud. Journal of Gansu University of Technology = J. Gansu Univ. Technol. Journal of Gansu University of Technology = J. Gansu Univ. Technol. (Engl. Ed.) Journal of Garden History = J Garden Hist Journal of Garden History = J. Garden Hist. Journal of garden history = J Gard Hist Journal of Gas Chromatography = J Gas Chromatogr Journal of Gas Chromatography = J. Gas Chromatogr. Journal of Gastroenterology and Hepatology = J Gastroen Hepatol Journal of Gastroenterology and Hepatology = J. Gastroen. Hepatol. Journal of gastroenterology and hepatology = J Gastroenterol Hepatol Journal of Gastroenterology and Hepatology=J Gastroenterol Hepatol;; Journal of Gastroenterology and Hepatology = J. Gastroenterol. Hepatol. Journal of gastroenterology = J Gastroenterol Journal of Gastroenterology=J Gastroenterol;; Journal of Gastroenterology = J Gastroenterol Journal of Gastroenterology = J. Gastroenterol. Journal of Gastrointestinal and Liver Diseases = J. Gastrointestin. Liver Dis. Journal of Gastrointestinal and Liver Diseases = J Gastrointest Liver Journal of Gastrointestinal and Liver Diseases = J. Gastrointest. Liver Journal of gastrointestinal and liver diseases : JGLD = J Gastrointestin Liver Dis Journal of Gastrointestinal Motility = J Gastrointest Motil Journal of Gastrointestinal Motility = J. Gastrointest. Motil. Journal of Gastrointestinal Surgery = J Gastrointest Surg Journal of Gastrointestinal Surgery = J. Gastrointest. Surg. Journal of gastrointestinal surgery : official journal of the Society for Surgery of the Alimentary Tract = J Gastrointest Surg Journal of Gemmology = J. Gemmol. Journal of Gender-Specific Medicine = J. Gend. Specif. Med. Journal of Gender Studies = J Gender Stud Journal of Gender Studies = J. Gender Stud. Journal of Gene Medicine = J Gene Med Journal of Gene Medicine = J. Gene Med. Journal of General and Applied Microbiology = J Gen Appl Microbiol Journal of General and Applied Microbiology = J. Gen. Appl. Microbiol. Journal of General Chemistry Ussr = J Gen Chem Ussr Journal of General Chemistry Ussr = J. Gen. Chem. Ussr Journal of General Education = J Gen Educ Journal of General Education = J. Gen. Educ. Journal of General Internal Medicine=J Gen Intern Med;; Journal of General Internal Medicine = J Gen Intern Med Journal of General Internal Medicine = J. Gen. Intern. Med. Journal of general internal medicine : official journal of the Society for Research and Education in Primary Care Internal Medicine = J Gen Intern Med Journal of General Management = J Gen Manage Journal of General Management = J. Gen. Manage. Journal of general microbiology = J Gen Microbiol Journal of General Microbiology = J Gen Microbiol Journal of General Microbiology = J. Gen. Microbiol. Journal of general orthodontics = J Gen Orthod Journal of General Orthodontics = J. Gen. Orthod. Journal of General Physiology=J Gen Physiol;; Journal of General Physiology = J Gen Physiol Journal of General Physiology = J. Gen. Physiol. Journal of General Plant Pathology = J Gen Plant Pathol Journal of General Plant Pathology = J. Gen. Plant Pathol. Journal of General Psychology=J Gen Psychol;; Journal of General Psychology = J Gen Psychol Journal of General Psychology = J. Gen. Psychol. Journal of General Virology=J Gen Virol;; Journal of General Virology = J Gen Virol Journal of General Virology = J. Gen. Virol. Journal of genetic counseling = J Genet Couns Journal of Genetic Counseling = J Genet Couns Journal of Genetic Counseling = J. Genet. Couns. Journal of Genetic Psychology=J Genet Psychol;; Journal of Genetic Psychology = J Genet Psychol Journal of Genetic Psychology = J. Genet. Psychol. Journal of Genetics and Genomics = J Genet Genomics Journal of Genetics and Genomics = J. Genet. Genomics Journal of genetics = J Genet Journal of Genetics = J Genet Journal of Genetics = J. Genet. Journal of Genome Science and Technology = J. Genome Sci. Technol. Journal of Geochemical Exploration = J Geochem Explor Journal of Geochemical Exploration = J. Geochem. Explor. Journal of Geodesy = J. Geod. Journal of Geodesy = J Geodesy Journal of Geodesy = J. Geodesy Journal of Geodynamics = J Geodyn Journal of Geodynamics = J. Geodyn. Journal of Geographical Sciences = J Geogr Sci Journal of Geographical Sciences = J. Geogr. Sci. Journal of Geographical Sciences = J. Geog. Sci. Journal of Geographical Systems=J. Geograph. Systems Journal of geographical systems = J Geogr Syst Journal of Geographical Systems = J Geogr Syst Journal of Geographical Systems = J. Geogr. Syst. Journal of Geography in Higher Education = J Geogr Higher Educ Journal of Geography in Higher Education = J. Geogr. Higher Educ. Journal of Geography = J Geogr Journal of Geography = J. Geogr. Journal of Geological Education = J Geol Educ Journal of Geological Education = J. Geol. Educ. Journal of Geology = J Geol Journal of Geology = J. Geol. Journal of Geomagnetism and Geoelectricity = J. Geomagn. Geoelec. Journal of Geomagnetism and Geoelectricity = J Geomagn Geoelectr Journal of Geomagnetism and Geoelectricity = J. Geomagn. Geoelectr. Journal of Geometric Analysis = J Geom Anal Journal of Geometric Analysis = J. Geom. Anal. Journal of Geometry and Physics = J. Geom. Phys. Journal of Geometry and Physics = J Geom Phys Journal of Geometry and Physics = J. Geom. Phys. Journal of Geometry = J. Geom. Journal of Geophysical Research, A: Space Physics = J. Geophys. Res. A: Space Phys. Journal of Geophysical Research, A: Space Physics = J. Geophys. Res., A: Space Phys. Journal of Geophysical Research-atmospheres = J Geophys Res-atmos Journal of Geophysical Research-atmospheres = J. Geophys. Res-atmos. Journal of Geophysical Research, [Atmospheres] = J. Geophys. Res. [Atmos.] Journal of Geophysical Research, [Atmospheres] = J. Geophys. Res. Atmos. Journal of Geophysical Research-biogeosciences = J Geophys Res-biogeo Journal of Geophysical Research-biogeosciences = J. Geophys. Res-biogeo. Journal of Geophysical Research, [Biogeosciences] = J. Geophys. Res. [Biogeosci.] Journal of Geophysical Research, Biogeosciences = J. Geophys. Res. Biogeosci. Journal of Geophysical Research, B: Solid Earth = J. Geophys. Res. B: Solid Earth Journal of Geophysical Research, B: Solid Earth = J. Geophys. Res., B: Solid Earth Journal of Geophysical Research, C: Oceans = J. Geophys. Res. C: Oceans Journal of Geophysical Research, C: Oceans = J. Geophys. Res., C: Oceans Journal of Geophysical Research, D: Atmospheres = J. Geophys. Res. D: Atmos. Journal of Geophysical Research, D: Atmospheres = J. Geophys. Res., D: Atmos. Journal of Geophysical Research-earth Surface = J Geophys Res-earth Journal of Geophysical Research-earth Surface = J. Geophys. Res-earth. Journal of Geophysical Research, Earth Surface = J. Geophys. Res. Earth Surf. Journal of Geophysical Research, [Earth Surface] = J. Geophys. Res. [Earth Surface] Journal of Geophysical Research, E: Planets = J. Geophys. Res. E: Planets Journal of Geophysical Research, E: Planets = J. Geophys. Res., E: Planets Journal of Geophysical Research, F: Earth Surface = J. Geophys. Res. F: Earth Surf. Journal of Geophysical Research, F: Earth Surface = J. Geophys. Res., F: Earth Surface Journal of Geophysical Research, G: Biogeosciences = J. Geophys. Res. G: Biogeosci. Journal of Geophysical Research, G: Biogeosciences = J. Geophys. Res., G: Biogeosci. Journal of geophysical research = J Geophys Res Journal of Geophysical Research = J Geophys Res Journal of Geophysical Research = J. Geophys. Res. Journal of Geophysical Research-oceans and Atmospheres = J Geophys Res-oc Atm Journal of Geophysical Research-oceans and Atmospheres = J. Geophys. Res-oc. Atm. Journal of Geophysical Research-oceans = J Geophys Res-oceans Journal of Geophysical Research-oceans = J. Geophys. Res-oceans. Journal of Geophysical Research, [Oceans] = J. Geophys. Res. [Oceans] Journal of Geophysical Research, Oceans = J. Geophys. Res. Oceans Journal of Geophysical Research-planets = J Geophys Res-planet Journal of Geophysical Research-planets = J. Geophys. Res-planet. Journal of Geophysical Research, [Planets] = J. Geophys. Res. [Planets] Journal of Geophysical Research, Planets = J. Geophys. Res. Planets Journal of Geophysical Research-solid Earth and Planets = J Geophys Res-solid Journal of Geophysical Research-solid Earth and Planets = J. Geophys. Res-solid. Journal of Geophysical Research-solid Earth = J Geophys Res-sol Ea Journal of Geophysical Research-solid Earth = J. Geophys. Res-sol. Ea. Journal of Geophysical Research, [Solid Earth] = J. Geophys. Res. [Solid Earth] Journal of Geophysical Research, Solid Earth = J. Geophys. Res. Solid Earth Journal of Geophysical Research-space Physics = J Geophys Res Journal of Geophysical Research-space Physics = J. Geophys. Res. Journal of Geophysical Research-space Physics = J Geophys Res-space Journal of Geophysical Research-space Physics = J. Geophys. Res-space. Journal of Geophysical Research, [Space Physics] = J. Geophys. Res. [Space Phys.] Journal of Geophysical Research, Space Physics = J. Geophys. Res. Space Phys. Journal of Geophysics and Engineering = J Geophys Eng Journal of Geophysics and Engineering = J. Geophys. Eng. Journal of Geophysics = J. Geophys. Journal of Geophysics-zeitschrift Fur Geophysik = J Geophys-z Geophys Journal of Geophysics-zeitschrift Fur Geophysik = J. Geophys-z. Geophys. Journal of Geoscience Education = J. Geosci. Educ. Journal of Geosciences = J. Geosci. Journal of Geotechnical and Geoenvironmental Engineering = J Geotech Geoenviron Journal of Geotechnical and Geoenvironmental Engineering = J. Geotech. Geoenviron. Journal of Geotechnical and Geoenvironmental Engineering = J. Geotech. Geoenviron. Eng. Journal of Geotechnical Engineering-asce = J Geotech Eng-asce Journal of Geotechnical Engineering-asce = J. Geotech. Eng-asce. Journal of geriatric physical therapy (2001) = J Geriatr Phys Ther Journal of Geriatric Physical Therapy = J. Geriatr. Phys. Ther. Journal of geriatric psychiatry and neurology = J Geriatr Psychiatry Neurol Journal of Geriatric Psychiatry and Neurology=J Geriatr Psychiatry Neurol;; Journal of Geriatric Psychiatry and Neurology = J. Geriatr. Psychiatry Neurol. Journal of Geriatric Psychiatry and Neurology = J Geriatr Psych Neur Journal of Geriatric Psychiatry and Neurology = J. Geriatr. Psych. Neur. Journal of Geriatric Psychiatry = J Geriatr Psychiat Journal of Geriatric Psychiatry = J. Geriatr. Psychiat. Journal of geriatric psychiatry = J Geriatr Psychiatry Journal of Geriatric Psychiatry = J. Geriatr. Psychiatry Journal of Germanic Linguistics = J Ger Linguist Journal of Germanic Linguistics = J. Ger. Linguist. Journal of gerontological nursing = J Gerontol Nurs Journal of Gerontological Nursing = J Gerontol Nurs Journal of Gerontological Nursing = J. Gerontol. Nurs. Journal of gerontological social work = J Gerontol Soc Work Journal of Gerontological Social Work = J Gerontol Soc Work Journal of Gerontological Social Work = J. Gerontol. Soc. Work Journal of gerontology = J Gerontol Journal of Gerontology = J. Gerontol. Journal of Glaciology = J Glaciol Journal of Glaciology = J. Glaciol. Journal of glass studies = J Glass Stud Journal of Glass Studies = J Glass Stud Journal of Glass Studies = J. Glass Stud. Journal of Glass Studies = JGS Journal of Glass Studies = JGS Journal of glaucoma = J Glaucoma Journal of Glaucoma=J Glaucoma;; Journal of Glaucoma = J Glaucoma Journal of Glaucoma = J. Glaucoma Journal of Global History = J Global Hist Journal of Global History = J. Global Hist. Journal of Global Information Management = J Glob Inf Manag Journal of Global Information Management = J. Glob. Inf. Manag. Journal of Global Optimization = J. Global Optim. Journal of Global Optimization = J Global Optim Journal of Global Optimization = J. Global Optim. Journal of Gnathology = J. Gnathol. Journal of government information : an international review of policy, issues and resources = J Gov Inf Journal of Government Information = J Gov Inform Journal of Government Information = J. Gov. Inform. Journal of Graph Algorithms and Applications = J. Graph Algorithms Appl. Journal of Graph Theory = J Graph Theor Journal of Graph Theory = J. Graph Theor. Journal of Graph Theory = J. Graph Theory Journal of gravitational physiology : a journal of the International Society for Gravitational Physiology = J Gravit Physiol Journal of Great Lakes research = J Great Lakes Res Journal of Great Lakes Research = J Great Lakes Res Journal of Great Lakes Research = J. Great Lakes Res. Journal of Greco-Roman Studies = JGRS Journal of Green Building = J Green Build Journal of Green Building = J. Green Build. Journal of Grey System = J Grey Syst Journal of Grey System = J. Grey Syst. Journal of Grey System = J Grey Syst-wuhan Journal of Grey System = J. Grey Syst-wuhan. Journal of Grid Computing = J Grid Comput Journal of Grid Computing = J. Grid Comput. Journal of Group Psychotherapy Psychodrama and Sociometry = J Group Psychother P Journal of Group Psychotherapy Psychodrama and Sociometry = J. Group Psychother. P. Journal of group psychotherapy, psychodrama and sociometry = J Group Psychother Psychodrama Sociom Journal of Group Theory = J. Group Theory Journal of Group Theory = J Group Theory Journal of Group Theory = J. Group Theory Journal of Guidance and Control = J Guid Control Journal of Guidance and Control = J. Guid. Control Journal of guidance, control, and dynamics : a publication of the American Institute of Aeronautics and Astronautics devoted to the technology of dynamics and control = J Guid Control Dyn Journal of Guidance Control and Dynamics = J Guid Control Dynam Journal of Guidance Control and Dynamics = J. Guid. Control Dynam. Journal of gynaecological endocrinology = J Gynaecol Endocrinol Journal of Gynecologic Oncology = J Gynecol Oncol Journal of Gynecologic Oncology = J. Gynecol. Oncol. Journal of gynecologic surgery = J Gynecol Surg Journal of Gynecologic Surgery = J Gynecol Surg Journal of Gynecologic Surgery = J. Gynecol. Surg. Journal of halacha and contemporary society = J Halacha Contemporary Society Journal of Hand Surgery-american Volume = J Hand Surg-am Journal of Hand Surgery-american Volume = J. Hand Surg-am. Journal of Hand Surgery. American Volume=J Hand Surg [Am];; Journal of Hand Surgery. American Volume = J. Hand Surg. [Am.] Journal of Hand Surgery-british and European Volume = J Hand Surg-brit Eur Journal of Hand Surgery-british and European Volume = J. Hand Surg-brit. Eur. Journal of Hand Surgery. British Volume=J Hand Surg [Br];; Journal of Hand Surgery. British Volume = J. Hand Surg. [Br.] Journal of hand surgery (Edinburgh, Scotland) = J Hand Surg [Br] Journal of Hand Surgery-european Volume = J Hand Surg-eur Vol Journal of Hand Surgery-european Volume = J. Hand Surg-eur. Vol. Journal of Hand Therapy=J Hand Ther;; Journal of Hand Therapy = J Hand Ther Journal of Hand Therapy = J. Hand Ther. Journal of hand therapy : official journal of the American Society of Hand Therapists = J Hand Ther Journal of Hangzhou University = J. Hangzhou Univ. Natur. Sci. Ed. Journal of happiness studies = J Happiness Stud Journal of Happiness Studies = J Happiness Stud Journal of Happiness Studies = J. Happiness Stud. Journal of Hard Materials = J Hard Mater Journal of Hard Materials = J. Hard Mater. Journal of Hard Tissue Biology = J Hard Tissue Biol Journal of Hard Tissue Biology = J. Hard Tissue Biol. Journal of hazardous materials = J Hazard Mater Journal of Hazardous materials = J. Hazard. Mater. Journal of Hazardous Materials = J Hazard Mater Journal of Hazardous Materials = J. Hazard. Mater. Journal of Headache and Pain = J Headache Pain Journal of Headache and Pain = J. Headache Pain Journal of Head Trauma Rehabilitation = J Head Trauma Rehab Journal of Head Trauma Rehabilitation = J. Head Trauma Rehab. Journal of Head Trauma Rehabilitation = J. Head Trauma Rehabil. Journal of Health Administration Education = J. Health Adm. Educ. Journal of health and hospital law : a publication of the American Academy of Hospital Attorneys of the American Hospital Association = J Health Hosp Law Journal of Health and Hospital Law = J. Health Hosp. Law Journal of health and human behavior = J Health Hum Behav Journal of Health and Human Behavior = J Health Hum Behav Journal of Health and Human Behavior = J. Health Hum. Behav. Journal of health and human resources administration = J Health Hum Resour Adm Journal of Health and Human Resources Administration = J. Health Hum. Resour. Adm. Journal of health and human services administration = J Health Hum Serv Adm Journal of Health and Human Services Administration = J. Health Hum. Serv. Adm. Journal of health and social behavior = J Health Soc Behav Journal of Health and Social Behavior=J Health Soc Behav;; Journal of Health and Social Behavior = J Health Soc Behav Journal of Health and Social Behavior = J. Health Soc. Behav. Journal of Health and Social Policy = J. Health Soc. Policy Journal of health care benefits = J Health Care Benefits Journal of Health Care Benefits = J. Health Care Benefits Journal of health care chaplaincy = J Health Care Chaplain Journal of Health Care Chaplaincy = J. Health Care Chaplain. Journal of Healthcare Design = J. Healthc. Des. Journal of healthcare design : proceedings from the ... Symposium on Healthcare Design. Symposium on Healthcare Design = J Healthc Des Journal of Healthcare Education and Training = J. Healthc. Educ. Train. Journal of healthcare education and training : the journal of the American Society for Healthcare Education and Training / American Hospital Association = J Healthc Educ Train Journal of health care finance = J Health Care Finance Journal of Health Care Finance=J Health Care Finance;; Journal of Health Care Finance = J. Health Care Finance Journal of Health Care for The Poor and Underserved = J Health Care Poor U Journal of Health Care for The Poor and Underserved = J. Health Care Poor U. Journal of health care for the poor and underserved = J Health Care Poor Underserved Journal of Health Care for the Poor and Underserved = J. Health Care Poor Underserved Journal of Health Care For The Poor and Underserved=J Health Care Poor Underserved;; Journal of Healthcare Information Management = J. Healthc. Inf. Manag. Journal of healthcare information management : JHIM = J Healthc Inf Manag Journal of Health Care Interior Design = J. Health Care Inter. Des. Journal of health care interior design : proceedings from the ... Annual National Symposium on Health Care Interior Design. National Symposium on Health Care Interior Design (U.S.) = J Health Care Inter Des Journal of health care interior design : proceedings from the ... Symposium on Health Care Interior Design. Symposium on Health Care Interior Design = J Health Care Inter Des Journal of health care law & policy = J Health Care Law Policy Journal of healthcare management / American College of Healthcare Executives = J Healthc Manag Journal of Healthcare Management = J Healthc Manag Journal of Healthcare Management = J. Healthc. Manag. Journal of health care marketing = J Health Care Mark Journal of Health Care Marketing = J. Health Care Mark. Journal of Health Care Marketing = J Health Care Market Journal of Health Care Marketing = J. Health Care Market. Journal of healthcare materiel management = J Healthc Mater Manage Journal of Healthcare Materiel Management = J. Healthc. Mater. Manage. Journal of Healthcare Protection Management = J. Healthc. Prot. Manage. Journal of healthcare protection management : publication of the International Association for Hospital Security = J Healthc Prot Manage Journal of healthcare resource management = J Healthc Resour Manag Journal of Healthcare Resource Management = J. Healthc. Resour. Manag. Journal of Healthcare Risk Management = J. Healthc. Risk Manag. Journal of healthcare risk management : the journal of the American Society for Healthcare Risk Management = J Healthc Risk Manag Journal of health care technology = J Health Care Technol Journal of Health Care Technology = J. Health Care Technol. Journal of health communication = J Health Commun Journal of Health Communication = J Health Commun Journal of Health Communication = J. Health Commun. Journal of health economics = J Health Econ Journal of Health Economics=J. Health Econ. Journal of Health Economics = J Health Econ Journal of Health Economics = J. Health Econ. Journal of health education / Association for the Advancement of Health Education = J Health Educ Journal of Health Education = J. Health Educ. Journal of health law = J Health Law Journal of health management = J Health Manag Journal of health organization and management = J Health Organ Manag Journal of Health Politics, Policy and Law=J. Health Politics, Pol. Law Journal of Health Politics Policy and Law = J Health Polit Polic Journal of Health Politics Policy and Law = J. Health Polit. Polic. Journal of health politics, policy and law = J Health Polit Policy Law Journal of Health Politics, Policy and Law=J Health Polit Policy Law;; Journal of Health Politics, Policy and Law = J. Health Polit. Policy Law Journal of health, population, and nutrition = J Health Popul Nutr Journal of Health Population and Nutrition = J Health Popul Nutr Journal of Health Population and Nutrition = J. Health Popul. Nutr. Journal of Health, Population, and Nutrition = J. Health Popul. Nutr. Journal of health & population in developing countries = J Health Popul Dev Ctries Journal of health psychology = J Health Psychol Journal of Health Psychology = J Health Psychol Journal of Health Psychology = J. Health Psychol. Journal of Health Science = J Health Sci Journal of Health Science = J. Health Sci. Journal of Health Services Research and Policy = J. Health Serv. Res. Policy Journal of Health Services Research & Policy = J Health Serv Res Po Journal of Health Services Research & Policy = J. Health Serv. Res. Po. Journal of health services research & policy = J Health Serv Res Policy Journal of health & social policy = J Health Soc Policy Journal of Heart and Lung Transplantation = J Heart Lung Transpl Journal of Heart and Lung Transplantation = J. Heart Lung Transpl. Journal of Heart and Lung Transplantation=J Heart Lung Transplant;; Journal of Heart and Lung Transplantation = J. Heart Lung Transplant. Journal of Heart Transplantation = J Heart Transplant Journal of Heart Transplantation = J. Heart Transplant. Journal of Heart Valve Disease=J Heart Valve Dis;; Journal of Heart Valve Disease = J Heart Valve Dis Journal of Heart Valve Disease = J. Heart Valve Dis. Journal of Heat Recovery Systems = J Heat Recov Syst Journal of Heat Recovery Systems = J. Heat Recov. Syst. Journal of Heat Transfer = J Heat Transf Journal of Heat Transfer = J. Heat Transf. Journal of Heat Transfer = J. Heat Transfer Journal of Heat Transfer-transactions of The Asme = J Heat Trans-t Asme Journal of Heat Transfer-transactions of The Asme = J. Heat Trans-t. Asme Journal of Heat Treating = J. Heat. Treat. Journal of Hellenic Studies = J Hellenic Stud Journal of Hellenic Studies = J. Hellenic Stud. Journal of Hellenic Studies = JHS Journal of helminthology = J Helminthol Journal of Helminthology=J Helminthol;; Journal of Helminthology = J Helminthol Journal of Helminthology = J. Helminthol. Journal of Hematology & Oncology = J Hematol Oncol Journal of Hematology & Oncology = J. Hematol. Oncol. Journal of Hematotherapy and Stem Cell Research = J. Hematother. Stem Cell Res. Journal of hematotherapy = J Hematother Journal of Hematotherapy=J Hematother;; Journal of Hematotherapy = J Hematother Journal of Hematotherapy = J. Hematother. Journal of hematotherapy & stem cell research = J Hematother Stem Cell Res Journal of Hematotherapy & Stem Cell Research = J Hematoth Stem Cell Journal of Hematotherapy & Stem Cell Research = J. Hematoth. Stem Cell Journal of Hepato-biliary-pancreatic Surgery = J Hepato-biliary-pan Journal of Hepato-biliary-pancreatic Surgery = J. Hepato-biliary-pan. Journal of hepato-biliary-pancreatic surgery = J Hepatobiliary Pancreat Surg Journal of Hepato-Biliary-Pancreatic Surgery = J. Hepatobiliary. Pancreat. Surg. Journal of hepatology = J Hepatol Journal of Hepatology=J Hepatol;; Journal of Hepatology = J Hepatol Journal of Hepatology = J. Hepatol. Journal of hepatology. Supplement / EASL = J Hepatol Suppl Journal of Hepatology. Supplement = J. Hepatol. Suppl. Journal of herbal pharmacotherapy = J Herb Pharmacother Journal of Herbal Pharmacotherapy = J. Herb. Pharmacother. Journal of Herbs Spices & Medicinal Plants = J. Herbs Spices Med Plants Journal of Heredity=J Hered;; Journal of Heredity = J Hered Journal of Heredity = J. Hered. Journal of Herpetology = J Herpetol Journal of Herpetology = J. Herpetol. Journal of heterocyclic chemistry = J Heterocycl Chem Journal of Heterocyclic Chemistry = J. Heterocycl. Chem. Journal of Heterocyclic Chemistry = J Heterocyclic Chem Journal of Heterocyclic Chemistry = J. Heterocyclic Chem. Journal of Heuristics = J Heuristics Journal of Heuristics = J. Heuristics Journal of High Energy Physics = J High Energy Phys Journal of High Energy Physics = J. High Energy Phys. Journal of Higher Education = J High Educ Journal of Higher Education = J. High. Educ. Journal of Higher Education Policy and Management=J. Higher Educ. Pol. Manage. Journal of High Resolution Chromatography & Chromatography Communications = J High Res Chromatog Journal of High Resolution Chromatography & Chromatography Communications = J. High Res. Chromatog. Journal of high resolution chromatography : HRC = J High Resolut Chromatogr Journal of High Resolution Chromatography = J. High. Resolut. Chromatogr. Journal of High Speed Networks = J High Speed Netw Journal of High Speed Networks = J. High Speed Netw. Journal of Hispanic Philology = J Hispan Philology Journal of Hispanic Philology = J. Hispan. Philology Journal of Histochemistry and Cytochemistry=J Histochem Cytochem;; Journal of Histochemistry and Cytochemistry = J. Histochem. Cytochem. Journal of Histochemistry & Cytochemistry = J Histochem Cytochem Journal of Histochemistry & Cytochemistry = J. Histochem. Cytochem. Journal of historical geography = J Hist Geogr Journal of Historical Geography = J Hist Geogr Journal of Historical Geography = J. Hist. Geogr. Journal of Historical Pragmatics = J Hist Pragmat Journal of Historical Pragmatics = J. Hist. Pragmat. Journal of Historical Research = J Hist Res Journal of Historical Research = J. Hist. Res. Journal of historical sociology = J Hist Sociol Journal of Historical Sociology = J Hist Sociol Journal of Historical Sociology = J. Hist. Sociol. Journal Of Historical Sociology = J. Hist. Sociol. Journal of histotechnology = J Histotechnol Journal of Histotechnology = J Histotechnol Journal of Histotechnology = J. Histotechnol. Journal of HIV/AIDS prevention in children & youth = J HIV AIDS Prev Child Youth Journal of HIV therapy = J HIV Ther Journal of HIV Therapy = J. HIV Ther. Journal of Hohai University = J. Hohai Univ. Journal of Hokkaido University of Education = J. Hokkaido Univ. Ed. Sect. II A Journal of Holistic Nursing = J. Holist. Nurs. Journal of holistic nursing : official journal of the American Holistic Nurses' Association = J Holist Nurs Journal of home economics = J Home Econ Journal of Home Economics = J Home Econ Journal of Home Economics = J. Home Econ. Journal of Home Economics Research = J Home Econ Res Journal of Home Economics Research = J. Home Econ. Res. Journal of Homeland Security and Emergency Management = J Homel Secur Emerg Journal of Homeland Security and Emergency Management = J. Homel. Secur. Emerg. Journal of homosexuality = J Homosex Journal of Homosexuality=J Homosex;; Journal of Homosexuality = J. Homosex. Journal of Homosexuality = J Homosexual Journal of Homosexuality = J. Homosexual. Journal of Horticultural Science & Biotechnology = J Hortic Sci Biotech Journal of Horticultural Science & Biotechnology = J. Hortic. Sci. Biotech. Journal of Horticultural Science = J Hortic Sci Journal of Horticultural Science = J. Hortic. Sci. Journal of Hospice & Palliative Nursing = J Hosp Palliat Nurs Journal of Hospice & Palliative Nursing = J. Hosp. Palliat. Nurs. Journal of hospital dental practice = J Hosp Dent Pract Journal of Hospital Dental Practice = J. Hosp. Dent. Pract. Journal of Hospital Infection=J Hosp Infect;; Journal of Hospital Infection = J Hosp Infect Journal of Hospital Infection = J. Hosp. Infect. Journal of Hospitality Leisure Sport & Tourism Education = J Hosp Leis Sport To Journal of Hospitality Leisure Sport & Tourism Education = J. Hosp. Leis. Sport To. Journal of hospital marketing = J Hosp Mark Journal of Hospital Marketing = J. Hosp. Mark. Journal of hospital marketing & public relations = J Hosp Mark Public Relations Journal of Hospital Medicine = J Hosp Med Journal of Hospital Medicine = J. Hosp. Med. Journal of hospital medicine (Online) = J Hosp Med Journal of hospital supply, processing, and distribution = J Hosp Supply Process Distrib Journal of Hospital Supply, Processing and Distribution = J. Hosp. Supply. Process. Distrib. Journal of Housing and the Built Environment = J. Hous. Built Environ. Journal of Housing Economics = J Hous Econ Journal of Housing Economics = J. Hous. Econ. Journal of Housing Economics=J. Housing Econ. Journal of Housing Research=J. Housing Res. Journal of Huaqiao University = J. Huaqiao Univ. Nat. Sci. Ed. Journal of Huazhong University of Science and Technology-medical Sciences = J Huazhong Univ Sci Journal of Huazhong University of Science and Technology-medical Sciences = J. Huazhong Univ. Sci. Journal of Huazhong University of Science and Technology. Medical Sciences = J. Huazhong Univ. Sci. Technolog. Med. Sci. Journal of Huazhong University of Science and Technology-medical Sciences = J Huazhong U Sci-med Journal of Huazhong University of Science and Technology-medical Sciences = J. Huazhong U. Sci-med. Journal Of Human Behavior In The Social Environment = J Hum Behav Soc Environ Journal of human ecology (Delhi, India) = J Hum Ecol Journal of human ergology = J Hum Ergol (Tokyo) Journal of Human Ergology=J Hum Ergol (Tokyo);; Journal of Human Ergology = J. Hum. Ergol. (Tokyo) Journal of human evolution = J Hum Evol Journal of Human Evolution=J Hum Evol;; Journal of Human Evolution = J Hum Evol Journal of Human Evolution = J. Hum. Evol. Journal of human genetics = J Hum Genet Journal of Human Genetics=J Hum Genet;; Journal of Human Genetics = J Hum Genet Journal of Human Genetics = J. Hum. Genet. Journal of human hypertension = J Hum Hypertens Journal of Human Hypertension=J Hum Hypertens;; Journal of Human Hypertension = J Hum Hypertens Journal of Human Hypertension = J. Hum. Hypertens. Journal of Humanistic Psychology = J Humanist Psychol Journal of Humanistic Psychology = J. Humanist. Psychol. Journal of Human Kinetics = J Hum Kinet Journal of Human Kinetics = J. Hum. Kinet. Journal of Human Lactation = J Hum Lact Journal of Human Lactation = J. Hum. Lact. Journal of human lactation : official journal of International Lactation Consultant Association = J Hum Lact Journal of Human Movement Studies = J Hum Movement Stud Journal of Human Movement Studies = J. Hum. Movement Stud. Journal of Human Nutrition and Dietetics = J Hum Nutr Diet Journal of Human Nutrition and Dietetics = J. Hum. Nutr. Diet. Journal of human nutrition and dietetics : the official journal of the British Dietetic Association = J Hum Nutr Diet Journal of human nutrition = J Hum Nutr Journal of Human Nutrition = J Hum Nutr Journal of Human Nutrition = J. Hum. Nutr. Journal of Human Relations = J Hum Relat Journal of Human Relations = J. Hum. Relat. Journal of Human Resources=J. Human Res. Journal of Human Resources = J Hum Resour Journal of Human Resources = J. Hum. Resour. Journal of human stress = J Human Stress Journal of Human Stress = J. Human Stress Journal of Human Stress = J Hum Stress Journal of Human Stress = J. Hum. Stress Journal of Human Virology = J Human Virol Journal of Human Virology = J. Human Virol. Journal of human virology = J Hum Virol Journal of Human Virology = J. Hum. Virol. Journal of Hydraulic Engineering-asce = J Hydraul Eng-asce Journal of Hydraulic Engineering-asce = J. Hydraul. Eng-asce. Journal of Hydraulic Engineering = J. Hydraul. Eng. Journal of Hydraulic Research = J Hydraul Res Journal of Hydraulic Research = J. Hydraul. Res. Journal of Hydrodynamics = J Hydrodyn Journal of Hydrodynamics = J. Hydrodyn. Journal of Hydrodynamics = J. Hydrodyn. Ser. B (English Ed.) Journal of Hydrodynamics, Series B = J. Hydrodyn. Ser. B Journal of Hydro-environment Research = J. Hydro-environ. Res. Journal of Hydroinformatics = J. Hydroinf. Journal of Hydroinformatics = J Hydroinform Journal of Hydroinformatics = J. Hydroinform. Journal of Hydrologic Engineering = J Hydrol Eng Journal of Hydrologic Engineering = J. Hydrol. Eng. Journal of Hydrology and Hydromechanics = J Hydrol Hydromech Journal of Hydrology and Hydromechanics = J. Hydrol. Hydromech. Journal of Hydrology = J Hydrol Journal of Hydrology = J. Hydrol. Journal of Hydrometeorology = J Hydrometeorol Journal of Hydrometeorology = J. Hydrometeorol. Journal of Hydronautics = J Hydronaut Journal of Hydronautics = J. Hydronaut. Journal of Hygiene-cambridge = J Hyg-camb Journal of Hygiene-cambridge = J. Hyg-camb. Journal of hygiene, epidemiology, microbiology, and immunology = J Hyg Epidemiol Microbiol Immunol Journal of Hygiene, Epidemiology, Microbiology and Immunology = J. Hyg. Epidemiol. Microbiol. Immunol. Journal of Hygiene Epidemiology Microbiology and Immunology = J Hyg Epid Microb Im Journal of Hygiene Epidemiology Microbiology and Immunology = J. Hyg. Epid. Microb. Im. Journal of Hygiene = J Hyg-cambridge Journal of Hygiene = J. Hyg-cambridge. Journal of Hygiene = J. Hyg. (Lond.) Journal of Hymenoptera Research = J Hymenopt Res Journal of Hymenoptera Research = J. Hymenopt. Res. Journal of Hyperbolic Differential Equations = J Hyperbol Differ Eq Journal of Hyperbolic Differential Equations = J. Hyperbol. Differ. Eq. Journal of hypertension = J Hypertens Journal of Hypertension=J Hypertens;; Journal of Hypertension = J Hypertens Journal of Hypertension = J. Hypertens. Journal of Hypertension. Supplement=J Hypertens Suppl;; Journal of Hypertension. Supplement = J. Hypertens. Suppl. Journal of hypertension. Supplement : official journal of the International Society of Hypertension = J Hypertens Suppl Journal of Iberian Archaeology = JIbA Journal of Iberian Geology = J Iber Geol Journal of Iberian Geology = J. Iber. Geol. Journal of image guided surgery = J Image Guid Surg Journal of Image Guided Surgery = J. Image Guid. Surg. Journal of Imaging Science and Technology = J Imaging Sci Techn Journal of Imaging Science and Technology = J. Imaging Sci. Techn. Journal of Imaging Science and Technology = J. Imaging Sci. Technol. Journal of Imaging Science = J Imaging Sci Journal of Imaging Science = J. Imaging Sci. Journal of Imaging Technology = J Imaging Technol Journal of Imaging Technology = J. Imaging Technol. Journal of immigrant and minority health / Center for Minority Public Health = J Immigr Minor Health Journal of Immigrant and Minority Health = J. Immigr. Minor. Health Journal of immigrant health = J Immigr Health Journal of immigrant & refugee studies = J Immigr Refug Stud Journal of immune based therapies and vaccines = J Immune Based Ther Vaccines Journal of Immunoassay and Immunochemistry = J. Immunoassay Immunochem. Journal of immunoassay & immunochemistry = J Immunoassay Immunochem Journal of Immunoassay & Immunochemistry = J. Immunoassay Immunochem. Journal of Immunoassay & Immunochemistry = J Immunoass Immunoch Journal of Immunoassay & Immunochemistry = J. Immunoass. Immunoch. Journal of immunoassay = J Immunoassay Journal of Immunoassay=J Immunoassay;; Journal of Immunoassay = J Immunoassay Journal of Immunoassay = J. Immunoassay Journal of immunogenetics = J Immunogenet Journal of Immunogenetics = J Immunogenet Journal of Immunogenetics = J. Immunogenet. Journal of immunological methods = J Immunol Methods Journal of Immunological Methods=J Immunol Methods;; Journal of Immunological Methods = J Immunol Methods Journal of Immunological Methods = J. Immunol. Methods Journal of Immunological Research = J Immunol Res Journal of Immunological Research = J. Immunol. Res. Journal of immunology (Baltimore, Md. : 1950) = J Immunol Journal of Immunology=J Immunol;; Journal of Immunology = J Immunol Journal of Immunology = J. Immunol. Journal of immunopharmacology = J Immunopharmacol Journal of Immunopharmacology = J Immunopharmacol Journal of Immunopharmacology = J. Immunopharmacol. Journal of immunotherapy (Hagerstown, Md. : 1997) = J Immunother (1997) Journal of Immunotherapy = J Immunother Journal of Immunotherapy = J. Immunother. Journal of immunotherapy : official journal of the Society for Biological Therapy = J Immunother Journal of Immunotherapy with Emphasis on Tumor Immunology = J. Immunother. Emphasis Tumor Immunol. Journal of immunotherapy with emphasis on tumor immunology : official journal of the Society for Biological Therapy = J Immunother Emphasis Tumor Immunol Journal of Immunotoxicology = J Immunotoxicol Journal of Immunotoxicology = J. Immunotoxicol. Journal of Imperial and Commonwealth History = J Imp Commonw Hist Journal of Imperial and Commonwealth History = J. Imp. Commonw. Hist. Journal of Inclusion Phenomena and Macrocyclic Chemistry = J Incl Phenom Macro Journal of Inclusion Phenomena and Macrocyclic Chemistry = J. Incl. Phenom. Macro. Journal of Inclusion Phenomena and Macrocyclic Chemistry = J. Inclusion Phenom. Macrocyclic Chem. Journal of Inclusion Phenomena and Macrocyclic Chemistry = J. Inclusion Phenom.Macrocyclic Chem. Journal of Inclusion Phenomena and Molecular Recognition in Chemistry = J. Inclusion Phenom. Mol. Recognit. Chem. Journal of Inclusion Phenomena and Molecular Recognition in Chemistry = J Inclus Phenom Mol Journal of Inclusion Phenomena and Molecular Recognition in Chemistry = J. Inclus. Phenom. Mol. Journal of Inclusion Phenomena = J Inclusion Phenom Journal of Inclusion Phenomena = J. Inclusion Phenom. Journal of Income Distribution=J. Income Distribution Journal of Indian Association for Communicable Diseases = J Indian Assoc Commun Dis Journal of Indian Council of Chemists = J. Indian Counc. Chem. Journal of Indian History = J Indian Hist Journal of Indian History = J. Indian Hist. Journal of Indian Philosophy = J Indian Philos Journal of Indian Philosophy = J. Indian Philos. Journal of Indian Society of Statistics and Operations Research = J. Indian Soc. Statist. Oper. Res. Journal of Individual Differences = J Individ Dif Journal of Individual Differences = J. Individ. Dif. Journal of individual psychology = J Individ Psychol Journal of Individual Psychology = J. Individ. Psychol. Journal of Individual Psychology = J Indiv Psychol Journal of Individual Psychology = J. Indiv. Psychol. Journal of Indo-European Studies = JIES Journal of Indo-european Studies = J Indo-eur Stud Journal of Indo-european Studies = J. Indo-eur. Stud. Journal of Indo-european Studies Monograph Series = J Indo Eur Stud Mono Journal of Indo-european Studies Monograph Series = J. Indo. Eur. Stud. Mono. Journal of Industrial Aerodynamics = J Ind Aerodynam Journal of Industrial Aerodynamics = J. Ind. Aerodynam. Journal of Industrial and Engineering Chemistry = J Ind Eng Chem Journal of Industrial and Engineering Chemistry = J. Ind. Eng. Chem. Journal of Industrial and Engineering Chemistry (Seoul, Republic of Korea) = J. Ind. Eng. Chem. (Seoul, Repub. Korea) Journal of Industrial and Management Optimization = J Ind Manag Optim Journal of Industrial and Management Optimization = J. Ind. Manag. Optim. Journal of Industrial Ecology = J Ind Ecol Journal of Industrial Ecology = J. Ind. Ecol. Journal of Industrial Economics=J. Ind. Econ. Journal of Industrial Economics = J Ind Econ Journal of Industrial Economics = J. Ind. Econ. Journal of Industrial Engineering = J Ind Engineering Journal of Industrial Engineering = J. Ind. Engineering Journal of Industrial Hygiene and Toxicology = J Ind Hyg Toxicol Journal of Industrial Hygiene and Toxicology = J. Ind. Hyg. Toxicol. Journal of Industrial Microbiology and Biotechnology = J. Ind. Microbiol. Biotechnol. Journal of Industrial Microbiology & Biotechnology = J Ind Microbiol Biot Journal of Industrial Microbiology & Biotechnology = J. Ind. Microbiol. Biot. Journal of industrial microbiology & biotechnology = J Ind Microbiol Biotechnol Journal of Industrial Microbiology & Biotechnology = J. Ind. Microbiol. Biotechnol. Journal of industrial microbiology = J Ind Microbiol Journal of Industrial Microbiology = J Ind Microbiol Journal of Industrial Microbiology = J. Ind. Microbiol. Journal of Industrial Pollution Control = J. Ind. Pollut. Control Journal of Industrial Psychology = J Ind Psychol Journal of Industrial Psychology = J. Ind. Psychol. Journal of Industrial Relations = J Ind Relat Journal of Industrial Relations = J. Ind. Relat. Journal of Industrial Textiles = J Ind Text Journal of Industrial Textiles = J. Ind. Text. Journal of Industry Studies=J. Industry Stud. Journal of Inequalities and Applications = J Inequal Appl Journal of Inequalities and Applications = J. Inequal. Appl. Journal of Infection and Chemotherapy = J Infect Chemother Journal of Infection and Chemotherapy = J. Infect. Chemother. Journal of infection and chemotherapy : official journal of the Japan Society of Chemotherapy = J Infect Chemother Journal of Infection=J Infect;; Journal of Infection = J. Infect. Journal of Infection = J Infection Journal of Infection = J. Infection Journal of Infectious Diseases=J Infect Dis;; Journal of Infectious Diseases = J Infect Dis Journal of Infectious Diseases = J. Infect. Dis. Journal of inflammation = J Inflamm Journal of Inflammation=J Inflamm;; Journal of Inflammation = J Inflamm Journal of Inflammation = J. Inflamm. Journal of inflammation (London, England) = J Inflamm (Lond) Journal of Inflammation-london = J Inflamm-lond Journal of Inflammation-london = J. Inflamm-lond. Journal of Information and Image Management = J. Inf. Image Manage. Journal of information ethics = J Infor Ethics Journal of Information Ethics = J Inform Ethics Journal of Information Ethics = J. Inform. Ethics Journal of Information & Optimization Sciences = J. Inform. Optim. Sci. Journal of Information Recording = J Inform Rec Journal of Information Recording = J. Inform. Rec. Journal of Information Recording Materials = J Inform Rec Mater Journal of Information Recording Materials = J. Inform. Rec. Mater. Journal of Information Science and Engineering = J Inf Sci Eng Journal of Information Science and Engineering = J. Inf. Sci. Eng. Journal of Information Science = J Inform Sci Journal of Information Science = J. Inform. Sci. Journal of Information Science = J Inf Sci Journal of Information Science = J. Inf. Sci. Journal of Information Storage and Processing Systems = J Inf Stor Proc Syst Journal of Information Storage and Processing Systems = J. Inf. Stor. Proc. Syst. Journal of Information Technology = J Inform Technol Journal of Information Technology = J. Inform. Technol. Journal of Information Technology = J Inf Technol Journal of Information Technology = J. Inf. Technol. Journal of Informetrics = J Informetr Journal of Informetrics = J. Informetr. Journal of Infrared and Millimeter Waves = J. Infrared Millimeter Waves Journal of Infrared and Millimeter Waves = J Infrared Millim W Journal of Infrared and Millimeter Waves = J. Infrared Millim. W. Journal of Infrared Millimeter and Terahertz Waves = J Infrared Millim Te Journal of Infrared Millimeter and Terahertz Waves = J. Infrared Millim. Te. Journal of Infrastructure Systems = J Infrastruct Syst Journal of Infrastructure Systems = J. Infrastruct. Syst. Journal of Infusional Chemotherapy = J. Infus. Chemother. Journal of infusion nursing : the official publication of the Infusion Nurses Society = J Infus Nurs Journal of inherited metabolic disease = J Inherit Metab Dis Journal of Inherited Metabolic Disease=J Inherit Metab Dis;; Journal of Inherited Metabolic Disease = J Inherit Metab Dis Journal of Inherited Metabolic Disease = J. Inherit. Metab. Dis. Journal of Innate Immunity = J Innate Immun Journal of Innate Immunity = J. Innate Immun. Journal of Inorganic and Nuclear Chemistry = J. Inorg. Nucl. Chem. Journal of Inorganic and Organometallic Polymers and Materials = J Inorg Organomet P Journal of Inorganic and Organometallic Polymers and Materials = J. Inorg. Organomet. P. Journal of Inorganic and Organometallic Polymers and Materials = J. Inorg. Organomet. Polym. Mater. Journal of Inorganic and Organometallic Polymers = J Inorg Organomet P Journal of Inorganic and Organometallic Polymers = J. Inorg. Organomet. P. Journal of Inorganic and Organometallic Polymers = J. Inorg. Organomet. Polym. Journal of inorganic biochemistry = J Inorg Biochem Journal of Inorganic Biochemistry=J Inorg Biochem;; Journal of Inorganic Biochemistry = J Inorg Biochem Journal of Inorganic Biochemistry = J. Inorg. Biochem. Journal of Inorganic Chemistry-ussr = J Inorg Chem-ussr Journal of Inorganic Chemistry-ussr = J. Inorg. Chem-ussr. Journal of Inorganic Materials = J Inorg Mater Journal of Inorganic Materials = J. Inorg. Mater. Journal of Inorganic & Nuclear Chemistry = J Inorg Nucl Chem Journal of Inorganic & Nuclear Chemistry = J. Inorg. Nucl. Chem. Journal of Insect Behavior = J Insect Behav Journal of Insect Behavior = J. Insect Behav. Journal of Insect Conservation = J Insect Conserv Journal of Insect Conservation = J. Insect Conserv. Journal of Insect Pathology = J Insect Pathol Journal of Insect Pathology = J. Insect Pathol. Journal of insect physiology = J Insect Physiol Journal of Insect Physiology = J Insect Physiol Journal of Insect Physiology = J. Insect Physiol. Journal of Insect Science = J Insect Sci Journal of Insect Science = J. Insect Sci. Journal of insect science (Online) = J Insect Sci Journal of Institute of Chemists (India) = J. Inst. Chem. Journal of Institute of Economic Research. J.S.S. Institute of Economic Research = J Inst Econ Res Journal of Institutional and Theoretical Economics=J. Inst. Theoretical Econ. Journal of Institutional and Theoretical Economics-zeitschrift Fur Die Gesamte Staatswissenschaft = J Inst Theor Econ Journal of Institutional and Theoretical Economics-zeitschrift Fur Die Gesamte Staatswissenschaft = J. Inst. Theor. Econ. Journal of Instrumentation = J Instrum Journal of Instrumentation = J. Instrum. Journal of insurance medicine = J Insur Med Journal of Insurance Medicine = J. Insur. Med. Journal of insurance medicine (New York, N.Y.) = J Insur Med Journal of Integral Equations and Applications = J Integral Equ Appl Journal of Integral Equations and Applications = J. Integral Equ. Appl. Journal of Integral Equations and Applications = J. Integral Equations Appl. Journal of Integral Equations and Mathematical Physics = J. Integral Equations Math. Phys. Journal of Integral Equations = J Integral Equat Journal of Integral Equations = J. Integral Equat. Journal of Integrated Design and Process Science = J. Integr. Des. Process Sci. Journal of Integrative Environmental Sciences = J. Integr. Environ. Sci. Journal of integrative neuroscience = J Integr Neurosci Journal of Integrative Neuroscience = J Integr Neurosci Journal of Integrative Neuroscience = J. Integr. Neurosci. Journal of Integrative Plant Biology = J Integr Plant Biol Journal of Integrative Plant Biology = J. Integr. Plant Biol. Journal of Intellectual & Developmental Disability = J Intellect Dev Dis Journal of Intellectual & Developmental Disability = J. Intellect. Dev. Dis. Journal of intellectual & developmental disability = J Intellect Dev Disabil Journal of Intellectual Disabilities = J. Intellect. Disabil. Journal of intellectual disabilities : JOID = J Intellect Disabil Journal of intellectual disability research : JIDR = J Intellect Disabil Res Journal of Intellectual Disability Research = J Intell Disabil Res Journal of Intellectual Disability Research = J. Intell. Disabil. Res. Journal of Intellectual Disability Research=J Intellect Disabil Res;; Journal of Intellectual Disability Research = J. Intellect. Disabil. Res. Journal of Intellectual Property Rights = J Intellect Prop Rig Journal of Intellectual Property Rights = J. Intellect. Prop. Rig. Journal of Intelligent and Robotic Systems = J. Intell. Rob. Syst. Journal of Intelligent & Fuzzy Systems = J Intell Fuzzy Syst Journal of Intelligent & Fuzzy Systems = J. Intell. Fuzzy Syst. Journal of Intelligent Information Systems = J Intell Inf Syst Journal of Intelligent Information Systems = J. Intell. Inf. Syst. Journal of Intelligent Manufacturing = J Intell Manuf Journal of Intelligent Manufacturing = J. Intell. Manuf. Journal of Intelligent Material Systems and Structures = J. Intell. Mater. Syst. Struct. Journal of Intelligent Material Systems and Structures = J Intel Mat Syst Str Journal of Intelligent Material Systems and Structures = J. Intel. Mat. Syst. Str. Journal of Intelligent & Robotic Systems = J Intell Robot Syst Journal of Intelligent & Robotic Systems = J. Intell. Robot. Syst. Journal of Intelligent Tranportation Systems: Technology, Planning, and Operations = J. Intell. Transp. Syst. Technol. Plann. Oper. Journal of Intelligent Transportation Systems = J Intell Transport S Journal of Intelligent Transportation Systems = J. Intell. Transport. S. Journal of intensive care medicine = J Intensive Care Med Journal of Intensive Care Medicine = J Intensive Care Med Journal of Intensive Care Medicine = J. Intensive Care Med. Journal of Interactive Marketing = J Interact Mark Journal of Interactive Marketing = J. Interact. Mark. Journal of Interamerican Studies and World Affairs=J. Interamer. Stud. World Aff. Journal of Interamerican Studies and World Affairs = J Interam Stud World Journal of Interamerican Studies and World Affairs = J. Interam. Stud. World Journal of interamerican studies and world affairs = J Inter Am Stud World Aff Journal of Inter-american Studies = J Inter-am Stud Journal of Inter-american Studies = J. Inter-am. Stud. Journal of intercultural studies (Melbourne, Vic.) = J Intercult Stud Journal of Interdisciplinary Cycle Research = J Interdiscipl Cycle Journal of Interdisciplinary Cycle Research = J. Interdiscipl. Cycle Journal of interdisciplinary cycle research = J Interdiscipl Cycle Res Journal of Interdisciplinary Economics=J. Interdisciplinary Econ. Journal of Interdisciplinary History = J Interdiscipl Hist Journal of Interdisciplinary History = J. Interdiscipl. Hist. Journal of Interdisciplinary Mathematics = J. Interdiscip. Math. Journal of Interdisciplinary Modeling and Simulation = J Interdiscipl Model Journal of Interdisciplinary Modeling and Simulation = J. Interdiscipl. Model. Journal of Interferon and Cytokine Research = J Interf Cytok Res Journal of Interferon and Cytokine Research = J. Interf. Cytok. Res. Journal of Interferon and Cytokine Research=J Interferon Cytokine Res;; Journal of Interferon and Cytokine Research = J. Interferon Cytokine Res. Journal of Interferon & Cytokine Research = J. Interferon Cytokine Res. Journal of interferon & cytokine research : the official journal of the International Society for Interferon and Cytokine Research = J Interferon Cytokine Res Journal of interferon research = J Interferon Res Journal of Interferon Research = J Interferon Res Journal of Interferon Research = J. Interferon Res. Journal of internal medicine = J Intern Med Journal of Internal Medicine=J Intern Med;; Journal of Internal Medicine = J Intern Med Journal of Internal Medicine = J. Intern. Med. Journal of internal medicine. Supplement = J Intern Med Suppl Journal of Internal Medicine. Supplement=J Intern Med Suppl;; Journal of Internal Medicine. Supplement = J. Intern. Med. Suppl. Journal of International Advanced Otology = J Int Adv Otol Journal of International Advanced Otology = J. Int. Adv. Otol. Journal of international affairs = J Int Aff Journal of International Affairs = J Int Aff Journal of International Affairs = J. Int. Aff. Journal of International and Comparative Economics=J. Int. Compar. Econ. Journal of International Biomedical Information and Data-ibid = J Int Biomed Inf Dat Journal of International Biomedical Information and Data-ibid = J. Int. Biomed. Inf. Dat. Journal of International Business Studies=J. Int. Bus. Stud. Journal of International Business Studies = J Int Bus Stud Journal of International Business Studies = J. Int. Bus. Stud. Journal of international development = J Int Dev Journal of International Development = J Int Dev Journal of International Development = J. Int. Dev. Journal of International Development=J. Int. Devel. Journal of International Economic Law=J. Int. Econ. Law Journal of International Economic Law = J Int Econ Law Journal of International Economic Law = J. Int. Econ. Law Journal of international economics = J Int Econ Journal of International Economics=J. Int. Econ. Journal of International Economics = J Int Econ Journal of International Economics = J. Int. Econ. Journal of International Financial Markets, Institutions and Money=J. Int. Finan. Markets, Inst. Money Journal of International Law and Economics = J Int Law Econ Journal of International Law and Economics = J. Int. Law Econ. Journal of International Management = J Int Manag Journal of International Management = J. Int. Manag. Journal of International Marketing = J Int Marketing Journal of International Marketing = J. Int. Marketing Journal of International Medical Research=J Int Med Res;; Journal of International Medical Research = J Int Med Res Journal of International Medical Research = J. Int. Med. Res. Journal of International Money and Finance = J Int Money Financ Journal of International Money and Finance = J. Int. Money Financ. Journal of International Money and Finance=J. Int. Money Finance Journal of International Relations and Development = J Int Relat Dev Journal of International Relations and Development = J. Int. Relat. Dev. Journal of International Research Communications = J. Int. Res. Commun. Journal of International Trade and Economic Development=J. Int. Trade Econ. Devel. Journal of International Trade & Economic Development = J Int Trade Econ Dev Journal of International Trade & Economic Development = J. Int. Trade Econ. Dev. Journal of Internet Technology = J Internet Technol Journal of Internet Technology = J. Internet Technol. Journal of interpersonal violence = J Interpers Violence Journal of Interpersonal Violence = J Interpers Violence Journal of Interpersonal Violence = J. Interpers. Violence Journal of interprofessional care = J Interprof Care Journal of Interprofessional Care = J Interprof Care Journal of Interprofessional Care = J. Interprof. Care Journal of Interprofessional Care = J Interprofessional Journal of Interprofessional Care = J. Interprofessional Journal of interventional cardiac electrophysiology : an international journal of arrhythmias and pacing = J Interv Card Electrophysiol Journal of Interventional Cardiac Electrophysiology = J Interv Card Electr Journal of Interventional Cardiac Electrophysiology = J. Interv. Card. Electr. Journal of Interventional Cardiac Electrophysiology = J. Interv. Card. Electrophysiol. Journal of interventional cardiology = J Interv Cardiol Journal of Interventional Cardiology = J Interv Cardiol Journal of Interventional Cardiology = J. Interv. Cardiol. Journal of Interventional Cardiology = J. Intervent. Cardiol. Journal of Interventional Radiology = J Intervent Radiol Journal of Interventional Radiology = J. Intervent. Radiol. Journal of Intravenous Nursing = J. Intraven. Nurs. Journal of intravenous nursing : the official publication of the Intravenous Nurses Society = J Intraven Nurs Journal of Invasive Cardiology = J Invasive Cardiol Journal of Invasive Cardiology = J. Invasive Cardiol. Journal of Inverse and Ill-Posed Problems = J. Inverse Ill-Posed Probl. Journal of Inverse and Ill-posed Problems = J Inverse Ill-pose P Journal of Inverse and Ill-posed Problems = J. Inverse Ill-pose. P. Journal of invertebrate pathology = J Invertebr Pathol Journal of Invertebrate Pathology=J Invertebr Pathol;; Journal of Invertebrate Pathology = J Invertebr Pathol Journal of Invertebrate Pathology = J. Invertebr. Pathol. Journal of Investigational Allergology and Clinical Immunology = J Invest Allerg Clin Journal of Investigational Allergology and Clinical Immunology = J. Invest. Allerg. Clin. Journal of Investigational Allergology and Clinical Immunology=J Investig Allergol Clin Immunol;; Journal of Investigational Allergology and Clinical Immunology = J. Investig. Allergol. Clin. Immunol. Journal of Investigational Allergology & Clinical Immunology = J Invest Allerg Clin Journal of Investigational Allergology & Clinical Immunology = J. Invest. Allerg. Clin. Journal of investigational allergology & clinical immunology : official organ of the International Association of Asthmology (INTERASMA) and Sociedad Latinoamericana de Alergia e Inmunologia = J Investig Allergol Clin Immunol Journal of Investigative Dermatology=J Invest Dermatol;; Journal of Investigative Dermatology = J Invest Dermatol Journal of Investigative Dermatology = J. Invest. Dermatol. Journal of Investigative Dermatology Symposium Proceedings = J Invest Derm Symp P Journal of Investigative Dermatology Symposium Proceedings = J. Invest. Derm. Symp. P. Journal of Investigative Dermatology. Symposium Proceedings = J. Investig. Dermatol. Symp. Proc. Journal of Investigative Medicine=J Investig Med;; Journal of Investigative Medicine = J. Investig. Med. Journal of Investigative Medicine = J Invest Med Journal of Investigative Medicine = J. Invest. Med. Journal of investigative medicine : the official publication of the American Federation for Clinical Research = J Investig Med Journal of Investigative Surgery=J Invest Surg;; Journal of Investigative Surgery = J Invest Surg Journal of Investigative Surgery = J. Invest. Surg. Journal of investigative surgery : the official journal of the Academy of Surgical Research = J Invest Surg Journal of in vitro fertilization and embryo transfer : IVF = J In Vitro Fert Embryo Transf Journal of In Vitro Fertilization and Embryo Transfer = J. In Vitro Fert. Embryo Transf. Journal of in Vitro Fertilization and Embryo Transfer = J In Vitro Fertil Em Journal of in Vitro Fertilization and Embryo Transfer = J. In. Vitro Fertil. Em. Journal of Irish Literature = J Irish Literature Journal of Irish Literature = J. Irish Literature Journal of Iron and Steel Research International = J Iron Steel Res Int Journal of Iron and Steel Research International = J. Iron Steel Res. Int. Journal of Iron and Steel Research International = J. Iron. Steel Res. Int. Journal of Irrigation and Drainage Engineering-asce = J Irrig Drain E-asce Journal of Irrigation and Drainage Engineering-asce = J. Irrig. Drain. E-asce. Journal of Irrigation and Drainage Engineering = J. Irrig. Drain. Eng. Journal of Islamic Studies = J Islam Stud Journal of Islamic Studies = J. Islam. Stud. Journal of Israeli History = J Isr Hist Journal of Israeli History = J. Isr. Hist. Journal of Japanese Botany = J. Jpn. Bot. Journal of Japanese Society of Tribologists = J Jpn Soc Tribologis Journal of Japanese Society of Tribologists = J. Jpn. Soc. Tribologis. Journal of Japanese Studies = J Jpn Stud Journal of Japanese Studies = J. Jpn. Stud. Journal of Japan Society of Lubrication Engineers = J Jpn Soc Lubr Eng Journal of Japan Society of Lubrication Engineers = J. Jpn. Soc. Lubr. Eng. Journal of Jazz Studies = J Jazz Stud Journal of Jazz Studies = J. Jazz Stud. Journal of Jewish Art = Jewish Art Journal of Jewish Art = J Jewish Art Journal of Jewish Art = J. Jewish Art Journal of Jewish communal service = J Jew Communal Serv Journal of Jewish Studies = J Jewish Stud Journal of Jewish Studies = J. Jewish Stud. Journal of Jewish Thought & Philosophy = J Jewish Thought Ph Journal of Jewish Thought & Philosophy = J. Jewish Thought Ph. Journal of Jiangxi Normal University = J. Jiangxi Norm. Univ. Nat. Sci. Ed. Journal of J. J. Group of Hospitals and Grant Medical College = J Jj Group Hosp Grant Med Coll Journal of Juristic Papyrology = JJP Journal of Juristic Papyrology = J Juristic Papyrol Journal of Juristic Papyrology = J. Juristic Papyrol. Journal of King Abdulaziz University: Islamic Economics=J. King Abdulaziz Univ.: Islamic Econ. Journal of Knee Surgery = J. Knee Surg. Journal of Knot Theory and Its Ramifications = J Knot Theor Ramif Journal of Knot Theory and Its Ramifications = J. Knot Theor. Ramif. Journal of Knot Theory and its Ramifications = J. Knot Theory Ramifications Journal of Knowledge Management = J Knowl Manag Journal of Knowledge Management = J. Knowl. Manag. Journal of Korean Academy of Nursing = J Korean Acad Nurs Journal of Korean Academy of Nursing = J. Korean Acad. Nurs. Journal of Korean medical science = J Korean Med Sci Journal of Korean Medical Science=J Korean Med Sci;; Journal of Korean Medical Science = J Korean Med Sci Journal of Korean Medical Science = J. Korean Med. Sci. Journal of Korean Neurosurgical Society = J Korean Neurosurg S Journal of Korean Neurosurgical Society = J. Korean Neurosurg. S. Journal of Korean Studies = J Korean Stud Journal of Korean Studies = J. Korean Stud. Journal of Korea Trade = J Korea Trade Journal of Korea Trade = J. Korea Trade Journal of K-theory = J K-theory Journal of K-theory = J. K-theory Journal of Labelled Compounds and Radiopharmaceuticals = J. Labelled Compd. Radiopharm. Journal of labelled compounds = J Labelled Compd Journal of Labelled Compounds = J Labelled Compd Journal of Labelled Compounds = J. Labelled Compd. Journal of Labelled Compounds & Radiopharmaceuticals = J Labelled Compd Rad Journal of Labelled Compounds & Radiopharmaceuticals = J. Labelled Compd. Rad. Journal of labelled compounds & radiopharmaceuticals = J Labelled Comp Radiopharm Journal of Laboratory and Clinical Medicine=J Lab Clin Med;; Journal of Laboratory and Clinical Medicine = J Lab Clin Med Journal of Laboratory and Clinical Medicine = J. Lab. Clin. Med. Journal of Labor Economics=J. Lab. Econ. Journal of labor economics = J Labor Econ Journal of Labor Economics = J Labor Econ Journal of Labor Economics = J. Labor Econ. Journal of labor research = J Labor Res Journal of Labor Research = J Labor Res Journal of Labor Research = J. Labor Res. Journal of Labor Research=J. Lab. Res. Journal of Land and Public Utility Economics = J Land Public Util E Journal of Land and Public Utility Economics = J. Land Public Util. E. Journal of Language and Politics = J Lang Polit Journal of Language and Politics = J. Lang. Polit. Journal of Language and Social Psychology = J Lang Soc Psychol Journal of Language and Social Psychology = J. Lang. Soc. Psychol. Journal of Language Identity and Education = J Lang Identity Educ Journal of Language Identity and Education = J. Lang. Identity Educ. Journal of Lanzhou Railway Institute = J. Lanzhou Railway Inst. Journal of Lanzhou University = J. Lanzhou Univ. Nat. Sci. Journal of Laparoendoscopic & Advanced Surgical Techniques = J Laparoendosc Adv S Journal of Laparoendoscopic & Advanced Surgical Techniques = J. Laparoendosc. Adv. S. Journal of Laparoendoscopic & Advanced Surgical Techniques-part A = J Laparoendosc Adv A Journal of Laparoendoscopic & Advanced Surgical Techniques-part A = J. Laparoendosc. Adv. A Journal of laparoendoscopic & advanced surgical techniques. Part A = J Laparoendosc Adv Surg Tech A Journal of Laparoendoscopic and Advanced Surgical Techniques. Part A=J Laparoendosc Adv Surg Tech A;; Journal of Laparoendoscopic and Advanced Surgical Techniques. Part A = J. Laparoendosc. Adv. Surg. Tech. A Journal of laparoendoscopic surgery = J Laparoendosc Surg Journal of Laparoendoscopic Surgery = J Laparoendosc Surg Journal of Laparoendoscopic Surgery = J. Laparoendosc. Surg. Journal of Laryngology and Otology=J Laryngol Otol;; Journal of Laryngology and Otology = J Laryngol Otol Journal of Laryngology and Otology = J. Laryngol. Otol. Journal of Laryngology and Otology. Supplement=J Laryngol Otol Suppl;; Journal of Laryngology and Otology. Supplement = J. Laryngol. Otol. Suppl. Journal of laser applications = J Laser Appl Journal of Laser Applications = J Laser Appl Journal of Laser Applications = J. Laser Appl. Journal of Laser Micro Nanoengineering = J Laser Micro Nanoen Journal of Laser Micro Nanoengineering = J. Laser Micro Nanoen. Journal of Laser Micro/nanoengineering = J. Laser Micro/Nanoeng. Journal of Latin American Cultural Studies = J Lat Am Cult Stud Journal of Latin American Cultural Studies = J. Lat. Am. Cult. Stud. Journal of Latin American Lore = J Lat Amer Lore Journal of Latin American Lore = J. Lat. Amer. Lore Journal of Latin American lore = J Lat Am Lore Journal of Latin American studies = J Lat Am Stud Journal of Latin American Studies = J Lat Am Stud Journal of Latin American Studies = J. Lat. Am. Stud. Journal of Law and Economics=J. Law Econ. Journal of law and ethics in dentistry = J Law Ethics Dent Journal of Law and Ethics in Dentistry = J. Law Ethics Dent. Journal of law and health = J Law Health Journal of Law and Health = J. Law Health Journal of law and medicine = J Law Med Journal of law and policy = J Law Policy Journal of law and society = J Law Soc Journal of Law and Society = J Law Soc Journal of Law and Society = J. Law Soc. Journal Of Law And Society = J. Law Soc. Journal of Law, Economics, and Organization=J. Law, Econ., Organ. Journal of Law & Economics = J Law Econ Journal of Law & Economics = J. Law Econ. Journal of Law Economics & Organization = J Law Econ Organ Journal of Law Economics & Organization = J. Law Econ. Organ. Journal of Law & Education = J Law Educ Journal of Law & Education = J. Law Educ. Journal of Law, Medicine and Ethics = J. Law. Med. Ethics Journal of Law Medicine & Ethics = J Law Med Ethics Journal of Law Medicine & Ethics = J. Law Med. Ethics Journal of learning disabilities = J Learn Disabil Journal of Learning Disabilities = J Learn Disabil Journal of Learning Disabilities = J. Learn. Disabil. Journal of Learning Disabilities = J Learn Disabil-us Journal of Learning Disabilities = J. Learn. Disabil-us. Journal of Leather and Chemical Technology = J. Leather Chem. Technol. Journal of Legal Economics=J. Legal Econ. Journal of legal education = J Legal Educ Journal of Legal Education = J Legal Educ Journal of Legal Education = J. Legal Educ. Journal of Legal History = J Legal Hist Journal of Legal History = J. Legal Hist. Journal of Legal Medicine = J Legal Med Journal of Legal Medicine = J. Legal Med. Journal of Legal Medicine=J Leg Med;; Journal of Legal Medicine = J. Leg. Med. Journal of Legal Studies=J. Legal Stud. Journal of Legal Studies = J Legal Stud Journal of Legal Studies = J. Legal Stud. Journal of legislation = J Legis Journal Of Leisure Research = J. Leis. Res. Journal of Leisure Research = J Leisure Res Journal of Leisure Research = J. Leisure Res. Journal of lesbian studies = J Lesbian Stud Journal of Less-Common Metals = J. Less-Common Met. Journal of leukocyte biology = J Leukoc Biol Journal of Leukocyte Biology=J Leukoc Biol;; Journal of Leukocyte Biology = J. Leukoc. Biol. Journal of Leukocyte Biology = J Leukocyte Biol Journal of Leukocyte Biology = J. Leukocyte Biol. Journal of leukocyte biology. Supplement = J Leukoc Biol Suppl Journal of Leukocyte Biology. Supplement = J. Leukoc. Biol. Suppl. Journal of LGBT Health Research = J. LGBT Health Res. Journal of Librarianship and Information Science = J Libr Inf Sci Journal of Librarianship and Information Science = J. Libr. Inf. Sci. Journal of librarianship = J Libr Journal of Librarianship = J Libr Journal of Librarianship = J. Libr. Journal of Library Automation = J Libr Automat Journal of Library Automation = J. Libr. Automat. Journal of Library History Philosophy and Comparative Librarianship = J Libr Hist Philos Journal of Library History Philosophy and Comparative Librarianship = J. Libr. Hist. Philos. Journal of library history (Tallahassee, Fla. : 1974) = J Libr Hist Journal of Lie Theory = J. Lie Theory Journal of Lie Theory = J Lie Theory Journal of Lie Theory = J. Lie Theory Journal of Life Sciences Royal Dublin Society = J Life Sci R Dubl S Journal of Life Sciences Royal Dublin Society = J. Life Sci. R. Dubl. S. Journal of Light Metals = J. Light Met. Journal of Light & Visual Environment = J. Light Visual Environ. Journal of Lightwave Technology = J Lightwave Technol Journal of Lightwave Technology = J. Lightwave Technol. Journal of Limnology = J Limnol Journal of Limnology = J. Limnol. Journal of Linguistic Anthropology = J Linguist Anthropol Journal of Linguistic Anthropology = J. Linguist. Anthropol. Journal of Linguistic Calculus = J Linguist Calculus Journal of Linguistic Calculus = J. Linguist. Calculus Journal of Linguistics = J Linguist Journal of Linguistics = J. Linguist. Journal of Lipid Mediators and Cell Signalling = J Lipid Mediat Cell Journal of Lipid Mediators and Cell Signalling = J. Lipid Mediat. Cell Journal of lipid mediators and cell signalling = J Lipid Mediat Cell Signal Journal of Lipid Mediators and Cell Signalling=J Lipid Mediat Cell Signal;; Journal of Lipid Mediators and Cell Signalling = J. Lipid Mediat. Cell Signal. Journal of Lipid Mediators and Cell Signalling = J. Lipid Mediators Cell Signalling Journal of lipid mediators = J Lipid Mediat Journal of Lipid Mediators = J. Lipid Mediat. Journal of Lipid Mediators = J Lipid Mediator Journal of Lipid Mediators = J. Lipid Mediator. Journal of Lipid Mediators = J. Lipid Mediators Journal of lipid research = J Lipid Res Journal of Lipid Research=J Lipid Res;; Journal of Lipid Research = J Lipid Res Journal of Lipid Research = J. Lipid Res. Journal of Lipid Science and Technology = J. Lipid Sci. Technol. Journal of liposome research = J Liposome Res Journal of Liposome Research = J Liposome Res Journal of Liposome Research = J. Liposome Res. Journal of Liposome Research = J Lipos Res Journal of Liposome Research = J. Lipos. Res. Journal of Liquid Chromatography and Related Technologies = J. Liq. Chromatogr. Related Technol. Journal of liquid chromatography = J Liq Chromatogr Journal of Liquid Chromatography = J Liq Chromatogr Journal of Liquid Chromatography = J. Liq. Chromatogr. Journal of Liquid Chromatography & Related Technologies = J. Liq. Chromatogr. Relat. Technol. Journal of Liquid Chromatography & Related Technologies = J Liq Chromatogr R T Journal of Liquid Chromatography & Related Technologies = J. Liq. Chromatogr. R. T. Journal of Literacy Research = J Lit Res Journal of Literacy Research = J. Lit. Res. Journal of Literary Semantics = J Literary Semantics Journal of Literary Semantics = J. Literary Semantics Journal of Lithotripsy and Stone Disease = J. Lithotr. Stone Dis. Journal of Lithotripsy & Stone Disease = J Lithotr Stone Dis Journal of Lithotripsy & Stone Disease = J. Lithotr. Stone Dis. Journal of Logic and Algebraic Programming = J Logic Algebr Progr Journal of Logic and Algebraic Programming = J. Logic Algebr. Progr. Journal of Logic and Computation = J. Logic Comput. Journal of Logic and Computation = J Logic Comput Journal of Logic and Computation = J. Logic Comput. Journal of Logic, Language and Information = J. Logic Lang. Inform. Journal of Logic Programming = J Logic Program Journal of Logic Programming = J. Logic Program. Journal of Logic Programming = J. Logic Programming Journal of Long Term Care Administration = J. Long Term Care Adm. Journal of Long-term Effects of Medical Implants = J Long-term Eff Med Journal of Long-term Effects of Medical Implants = J. Long-term Eff. Med. Journal of long-term effects of medical implants = J Long Term Eff Med Implants Journal of Long-Term Effects of Medical Implants = J. Long. Term Eff. Med. Implants Journal of Long Term Home Health Care = J. Long Term Home Health Care Journal of Loss Prevention in The Process Industries = J Loss Prevent Proc Journal of Loss Prevention in The Process Industries = J. Loss Prevent. Proc. Journal of Loss Prevention in the Process Industries = J. Loss Prev. Process Ind. Journal of Loss & Trauma = J Loss Trauma Journal of Loss & Trauma = J. Loss Trauma Journal of Lower Genital Tract Disease = J Low Genit Tract Di Journal of Lower Genital Tract Disease = J. Low. Genit. Tract Di. Journal of lower genital tract disease = J Low Genit Tract Dis Journal of Low Frequency Noise Vibration and Active Control = J Low Freq Noise V A Journal of Low Frequency Noise Vibration and Active Control = J. Low Freq. Noise V. A. Journal of Low Frequency Noise & Vibration = J Low Freq Noise Vib Journal of Low Frequency Noise & Vibration = J. Low Freq. Noise Vib. Journal of Low Temperature Physics = J Low Temp Phys Journal of Low Temperature Physics = J. Low Temp. Phys. Journal of Lubrication Technology = J Lubr Technol Journal of Lubrication Technology = J. Lubr. Technol. Journal of Lubrication Technology-transactions of The Asme = J Lubric Tech-t Asme Journal of Lubrication Technology-transactions of The Asme = J. Lubric. Tech-t. Asme Journal of Luminescence = J Lumin Journal of Luminescence = J. Lumin. Journal of Machine Learning Research = J Mach Learn Res Journal of Machine Learning Research = J. Mach. Learn. Res. Journal of machine learning research : JMLR = J Mach Learn Res Journal of macroeconomics = J Macroecon Journal of Macroeconomics=J. Macroecon. Journal of Macroeconomics = J Macroecon Journal of Macroeconomics = J. Macroecon. Journal of Macromolecular Science-chemistry = J Macromol Sci Chem Journal of Macromolecular Science-chemistry = J. Macromol. Sci. Chem. Journal of Macromolecular Science Part A-pure and Applied Chemistry = J Macromol Sci A Journal of Macromolecular Science Part A-pure and Applied Chemistry = J. Macromol. Sci. A. Journal of Macromolecular Science, Part A Pure and Applied Chemistry = J. Macromol. Sci. Part A Pure Appl. Chem. Journal of Macromolecular Science, Part A: Pure and Applied Chemistry = J. Macromol. Sci., Part A: Pure Appl. Chem. Journal of Macromolecular Science Part B-physics = J Macromol Sci B Journal of Macromolecular Science Part B-physics = J. Macromol. Sci. B. Journal of Macromolecular Science, Part B Physics = J. Macromol. Sci. Part B Phys. Journal of Macromolecular Science, Part B: Physics = J. Macromol. Sci., Part B: Phys. Journal of Macromolecular Science, Part C: Polymer Reviews = J. Macromol. Sci., Part C: Polym. Rev. Journal of Macromolecular Science-physics = J Macromol Sci Phys Journal of Macromolecular Science-physics = J. Macromol. Sci. Phys. Journal of Macromolecular Science - Physics = J. Macromol. Sci., Phys. Journal of Macromolecular Science, Physics = J. Macromol. Sci., Phys. Journal of Macromolecular Science-polymer Reviews = J Macromol Sci-pol R Journal of Macromolecular Science-polymer Reviews = J. Macromol. Sci-pol. R. Journal of Macromolecular Science Polymer Reviews = J. Macromol. Sci., Polym. Rev. Journal of Macromolecular Science, Polymer Reviews = J. Macromol. Sci., Polym. Rev. Journal of Macromolecular Science-pure and Applied Chemistry = J Macromol Sci Pure Journal of Macromolecular Science-pure and Applied Chemistry = J. Macromol. Sci. Pure. Journal of Macromolecular Science Pure and Applied Chemistry = J. Macromol. Sci., Pure Appl. Chem. Journal of Macromolecular Science, Pure and Applied Chemistry = J. Macromol. Sci., Pure Appl. Chem. Journal of Macromolecular Science - Reviews in Macromolecular Chemistry and Physics = J. Macromol. Sci., Rev. Macromol. Chem. Phys. Journal of Macromolecular Science-reviews in Macromolecular Chemistry and Physics = J Macromol Sci R M C Journal of Macromolecular Science-reviews in Macromolecular Chemistry and Physics = J. Macromol. Sci. R. M. C. Journal of Macromolecular Science-reviews in Macromolecular Chemistry = J Macromol Sci-rev M Journal of Macromolecular Science-reviews in Macromolecular Chemistry = J. Macromol. Sci-rev. M. Journal of Macromolecular Science-reviews in Polymer Technology = J Macromol R P T Journal of Macromolecular Science-reviews in Polymer Technology = J. Macromol. R. P. T. Journal of Magnetic Resonance Imaging = J Magn Reson Imaging Journal of Magnetic Resonance Imaging = J. Magn. Reson. Imaging Journal of Magnetic Resonance IMAging=J Magn Reson Imaging;; Journal of magnetic resonance imaging : JMRI = J Magn Reson Imaging Journal of Magnetic Resonance=J Magn Reson;; Journal of Magnetic Resonance = J Magn Reson Journal of Magnetic Resonance = J. Magn. Reson. Journal of magnetic resonance (San Diego, Calif. : 1997) = J Magn Reson Journal of magnetic resonance. Series A = J Magn Reson A Journal of Magnetic Resonance. Series A = J. Magn. Reson. A Journal of Magnetic Resonance Series A = J Magn Reson Ser A Journal of Magnetic Resonance Series A = J. Magn. Reson. Ser. A Journal of Magnetic Resonance Series A = J. Magn. Reson., Ser A Journal of Magnetic Resonance Series A = J. Magn. Reson., Ser. A Journal of magnetic resonance. Series B = J Magn Reson B Journal of Magnetic Resonance. Series B = J. Magn. Reson. B Journal of Magnetic Resonance Series B = J Magn Reson Ser B Journal of Magnetic Resonance Series B = J. Magn. Reson. Ser. B Journal of Magnetic Resonance Series B = J. Magn. Reson., Ser B Journal of Magnetic Resonance Series B = J. Magn. Reson., Ser. B Journal of Magnetics = J Magn Journal of Magnetics = J. Magn. Journal of Magnetism and Magnetic Materials = J Magn Magn Mater Journal of Magnetism and Magnetic Materials = J. Magn. Magn. Mater. Journal of mammalian evolution = J Mamm Evol Journal of Mammalian Evolution = J Mamm Evol Journal of Mammalian Evolution = J. Mamm. Evol. Journal of mammalogy = J Mammal Journal of Mammalogy = J Mammal Journal of Mammalogy = J. Mammal. Journal of Mammary Gland Biology and Neoplasia = J Mammary Gland Biol Journal of Mammary Gland Biology and Neoplasia = J. Mammary Gland Biol. Journal of mammary gland biology and neoplasia = J Mammary Gland Biol Neoplasia Journal of Mammary Gland Biology and Neoplasia = J. Mammary Gland Biol. Neoplasia Journal of Managed Care Pharmacy = J Manag Care Pharm Journal of Managed Care Pharmacy = J. Manag. Care Pharm. Journal of Managed Care Pharmacy = J Manage Care Pharm Journal of Managed Care Pharmacy = J. Manage. Care Pharm. Journal of managed care pharmacy : JMCP = J Manag Care Pharm Journal of Management Accounting Research=J. Manage. Acc. Res. Journal of Management and Governance=J. Manage. Governance Journal of Management in Engineering = J Manage Eng Journal of Management in Engineering = J. Manage. Eng. Journal of Management Information Systems = J Manage Inform Syst Journal of Management Information Systems = J. Manage. Inform. Syst. Journal of management in medicine = J Manag Med Journal of Management in Medicine = J. Manag. Med. Journal of Management Inquiry = J Manage Inquiry Journal of Management Inquiry = J. Manage. Inquiry Journal of Management = J Manage Journal of Management = J. Manage. Journal of Management & Organization = J Manage Organ Journal of Management & Organization = J. Manage. Organ. Journal of Management Studies = J Manage Stud Journal of Management Studies = J. Manage. Stud. Journal of Managerial Psychology = J Manage Psychol Journal of Managerial Psychology = J. Manage. Psychol. Journal of Manipulative and Physiological Therapeutics = J Manip Physiol Ther Journal of Manipulative and Physiological Therapeutics = J. Manip. Physiol. Ther. Journal of manipulative and physiological therapeutics = J Manipulative Physiol Ther Journal of Manipulative and Physiological Therapeutics=J Manipulative Physiol Ther;; Journal of Manipulative and Physiological Therapeutics = J. Manipulative Physiol. Ther. Journal of Manufacturing = J Manuf Journal of Manufacturing = J. Manuf. Journal of Manufacturing Processes = J. Manuf. Processes Journal of Manufacturing Science and Engineering = J. Manuf. Sci. Eng. Journal of Manufacturing Science and Engineering-transactions of The Asme = J Manuf Sci E-t Asme Journal of Manufacturing Science and Engineering-transactions of The Asme = J. Manuf. Sci. E-t. Asme Journal of Manufacturing Systems = J Manuf Syst Journal of Manufacturing Systems = J. Manuf. Syst. Journal of Maps = J Maps Journal of Maps = J. Maps Journal of marine biotechnology = J Mar Biotechnol Journal of Marine Biotechnology = J Mar Biotechnol Journal of Marine Biotechnology = J. Mar. Biotechnol. Journal of Marine Engineering and Technology = J Mar Eng Technol Journal of Marine Engineering and Technology = J. Mar. Eng. Technol. Journal of Marine Research = J Mar Res Journal of Marine Research = J. Mar. Res. Journal of Marine Science and Application = J. Mar. Sci. Appl. Journal of Marine Science and Technology = J Mar Sci Tech-japan Journal of Marine Science and Technology = J. Mar. Sci. Tech-japan. Journal of Marine Science and Technology = J Mar Sci Technol Journal of Marine Science and Technology = J. Mar. Sci. Technol. Journal of Marine Science and Technology-taiwan = J Mar Sci Technol-ta Journal of Marine Science and Technology-taiwan = J. Mar. Sci. Technol-ta. Journal of Marine Science and Technology-taiwan = J Mar Sci Tech-taiw Journal of Marine Science and Technology-taiwan = J. Mar. Sci. Tech-taiw. Journal of Marine Systems = J Marine Syst Journal of Marine Systems = J. Marine Syst. Journal of Marine Systems = J. Mar. Sys. Journal of Marine Systems = J. Mar. Syst. Journal of marital and family therapy = J Marital Fam Ther Journal of Marital and Family Therapy=J Marital Fam Ther;; Journal of Marital and Family Therapy = J Marital Fam Ther Journal of Marital and Family Therapy = J. Marital Fam. Ther. Journal of Maritime Archaeology = J Marit Archaeol Journal of Maritime Archaeology = J. Marit. Archaeol. Journal of Maritime Law and Commerce = J Marit Law Commer Journal of Maritime Law and Commerce = J. Marit. Law Commer. Journal of marketing for mental health = J Mark Ment Health Journal of Marketing for Mental Health = J. Mark. Ment. Health Journal of marketing for professions = J Mark Prof Journal of Marketing for Professions = J. Mark. Prof. Journal of marketing = J Mark Journal of Marketing=J. Marketing Journal of Marketing = J Marketing Journal of Marketing = J. Marketing Journal of Marketing Research=J. Marketing Res. Journal of Marketing Research = J Marketing Res Journal of Marketing Research = J. Marketing Res. Journal of Markets and Morality=J. Markets Morality Journal of Marmara University Dental Faculty = J Marmara Univ Dent Fac Journal of Marmara University Dental Faculty = J. Marmara Univ. Dent. Fac. Journal of marriage and family counseling = J Marriage Fam Couns Journal of Marriage and Family Counseling = J Marriage Fam Couns Journal of Marriage and Family Counseling = J. Marriage Fam. Couns. Journal of marriage and the family = J Marriage Fam Journal of Marriage and The Family = J Marriage Fam Journal of Marriage and The Family = J. Marriage Fam. Journal Of Marriage And The Family = J. Marriage Fam. Journal of Mass Spectrometry=J Mass Spectrom;; Journal of Mass Spectrometry = J Mass Spectrom Journal of Mass Spectrometry = J. Mass Spectrom. Journal of mass spectrometry : JMS = J Mass Spectrom Journal of Material Culture = J Mat Cult Journal of Material Culture = J. Mat. Cult. Journal of Material Cycles and Waste Management = J Mater Cycles Waste Journal of Material Cycles and Waste Management = J. Mater. Cycles Waste Journal of Material Cycles and Waste Management = J. Mater. Cycles Waste Manage. Journal of Materials Chemistry = J Mater Chem Journal of Materials Chemistry = J. Mater. Chem. Journal of Materials Education = J. Mater. Educ. Journal of Materials Engineering and Performance = J Mater Eng Perform Journal of Materials Engineering and Performance = J. Mater. Eng. Perform. Journal of Materials Engineering = J Mater Eng Journal of Materials Engineering = J. Mater. Eng. Journal of Materials for Energy Systems = J. Mater. Energy Syst. Journal of Materials for Energy Systems = J Mater Eng Journal of Materials for Energy Systems = J. Mater. Eng. Journal of Materials in Civil Engineering = J. Mater. Civ. Eng. Journal of Materials in Civil Engineering = J Mater Civil Eng Journal of Materials in Civil Engineering = J. Mater. Civil Eng. Journal of Materials = J Mater Journal of Materials = J. Mater. Journal of Materials Processing and Manufacturing Science = J. Mater. Process. Manuf. Sci. Journal of Materials Processing & Manufacturing Science = J Mater Process Manu Journal of Materials Processing & Manufacturing Science = J. Mater. Process. Manu. Journal of Materials Processing Technology = J Mater Process Tech Journal of Materials Processing Technology = J. Mater. Process. Tech. Journal of Materials Processing Technology = J. Mater. Process. Technol. Journal of materials research = J Mater Res Journal of Materials Research = J Mater Res Journal of Materials Research = J. Mater. Res. Journal of Materials Science and Technology = J. Mater. Sci. Technol. Journal of Materials Science = J Mater Sci Journal of Materials Science = J. Mater. Sci. Journal of materials science letters = J Mater Sci Lett Journal of Materials Science Letters = J Mater Sci Lett Journal of Materials Science Letters = J. Mater. Sci. Lett. Journal of Materials Science-materials in Electronics = J Mater Sci-mater El Journal of Materials Science-materials in Electronics = J. Mater. Sci-mater. El. Journal of Materials Science - Materials in Electronics = J. Mater. Sci. - Mater. Electron. Journal of Materials Science: Materials in Electronics = J. Mater. Sci.: Mater. Electron. Journal of Materials Science-materials in Medicine = J Mater Sci-mater M Journal of Materials Science-materials in Medicine = J. Mater. Sci-mater. M. Journal of materials science. Materials in medicine = J Mater Sci Mater Med Journal of Materials Science Materials in Medicine = J. Mater. Sci. - Mater. Med. Journal of Materials Science: Materials in Medicine = J. Mater. Sci.: Mater. Med. Journal of Materials Science & Technology = J Mater Sci Technol Journal of Materials Science & Technology = J. Mater. Sci. Technol. Journal of Materials Shaping Technology = J. Mater. Shaping Technol. Journal of Materials Synthesis and Processing = J Mater Synth Proces Journal of Materials Synthesis and Processing = J. Mater. Synth. Proces. Journal of Materials Synthesis and Processing = J. Mater. Synth. Process. Journal of Maternal-Fetal and Neonatal Medicine = J. Matern. Fetal Neonatal Med. Journal of Maternal-fetal Investigation = J Matern-fetal Inves Journal of Maternal-fetal Investigation = J. Matern-fetal. Inves. Journal of maternal-fetal investigation : the official journal of French Society of Ultrasound in Medicine and Biology ... [et al.] = J Matern Fetal Investig Journal of Maternal-Fetal Medicine=J Matern Fetal Med;; Journal of Maternal-Fetal Medicine = J. Matern. Fetal Med. Journal of Maternal-fetal & Neonatal Medicine = J Matern-fetal Neo M Journal of Maternal-fetal & Neonatal Medicine = J. Matern-fetal. Neo. M. Journal of mathematical analysis and applications = J Math Anal Appl Journal of Mathematical Analysis and Applications = J. Math. Anal. Appl. Journal of Mathematical Analysis and Applications = J Math Anal Appl Journal of Mathematical Analysis and Applications = J. Math. Anal. Appl. Journal of Mathematical and Physical Sciences = J. Math. Phys. Sci. Journal of mathematical biology = J Math Biol Journal of Mathematical Biology = J. Math. Biol. Journal of Mathematical Biology=J Math Biol;; Journal of Mathematical Biology = J Math Biol Journal of Mathematical Biology = J. Math. Biol. Journal of mathematical chemistry = J Math Chem Journal of Mathematical Chemistry = J. Math. Chem. Journal of Mathematical Chemistry = J Math Chem Journal of Mathematical Chemistry = J. Math. Chem. Journal of Mathematical Economics=J. Math. Econ. Journal of Mathematical Economics = J Math Econ Journal of Mathematical Economics = J. Math. Econ. Journal of Mathematical Economics = J. Math. Econom. Journal of Mathematical Fluid Mechanics = J Math Fluid Mech Journal of Mathematical Fluid Mechanics = J. Math. Fluid Mech. Journal of Mathematical Imaging and Vision = J Math Imaging Vis Journal of Mathematical Imaging and Vision = J. Math. Imaging Vis. Journal of Mathematical Imaging and Vision = J. Math. Imaging Vision Journal of Mathematical Logic = J Math Log Journal of Mathematical Logic = J. Math. Log. Journal of Mathematical Physics Analysis Geometry = J Math Phys Anal Geo Journal of Mathematical Physics Analysis Geometry = J. Math. Phys. Anal. Geo. Journal of Mathematical Physics = J. Math. Phys. Journal of Mathematical Physics = J Math Phys Journal of Mathematical Physics = J. Math. Phys. Journal of Mathematical Psycholog y= J. Math. Psych. Journal of mathematical psychology = J Math Psychol Journal of Mathematical Psychology = J Math Psychol Journal of Mathematical Psychology = J. Math. Psychol. Journal of Mathematical Research and Exposition = J. Math. Res. Exposition Journal of Mathematical Sciences (Calcutta) = J. Math. Sci. (Calcutta) Journal of Mathematical Sciences (New York) = J. Math. Sci. (New York) Journal of Mathematical Sciences-the University of Tokyo = J Math Sci-univ Toky Journal of Mathematical Sciences-the University of Tokyo = J. Math. Sci-univ. Toky. Journal of Mathematical Sciences-the University of Tokyo = J Math Sci-u Tokyo Journal of Mathematical Sciences-the University of Tokyo = J. Math. Sci-u. Tokyo Journal of Mathematical Sociology = J Math Sociol Journal of Mathematical Sociology = J. Math. Sociol. Journal Of Mathematical Sociology = J. Math. Sociol. Journal of Mathematical Study = J. Math. Study Journal of Mathematical Systems, Estimation, and Control = J. Math. Systems Estim. Control Journal of Mathematics and Mechanics = J Math Mech Journal of Mathematics and Mechanics = J. Math. Mech. Journal of Mathematics and Music = J Math Music Journal of Mathematics and Music = J. Math. Music Journal of Mathematics and Physics = J. Math. Phys. Journal of Mathematics and Physics = J Math Phys Camb Journal of Mathematics and Physics = J. Math. Phys. Camb. Journal of Mathematics = J. Math. Tokushima Univ. Journal of Mathematics = J. Math. (Wuhan) Journal of Mathematics of Kyoto University = J Math Kyoto U Journal of Mathematics of Kyoto University = J. Math. Kyoto U. Journal of Mathematics of Kyoto University = J. Math. Kyoto Univ. Journal of maxillofacial orthopedics = J Maxillofac Orthop Journal of Maxillofacial Orthopedics = J. Maxillofac. Orthop. Journal of maxillofacial surgery = J Maxillofac Surg Journal of Maxillofacial Surgery = J Maxillofac Surg Journal of Maxillofacial Surgery = J. Maxillofac. Surg. Journal of Mechanical Design = J. Mech. Des. Journal of Mechanical Design = J Mech Design Journal of Mechanical Design = J. Mech. Design Journal of Mechanical Design-transactions of The Asme = J Mech Des-t Asme Journal of Mechanical Design-transactions of The Asme = J. Mech. Des-t. Asme Journal of Mechanical Engineering Laboratory = J Mech Eng Lab Journal of Mechanical Engineering Laboratory = J. Mech. Eng. Lab. Journal of Mechanical Engineering Science = J Mech Eng Sci Journal of Mechanical Engineering Science = J. Mech. Eng. Sci. Journal of Mechanical Science and Technology = J Mech Sci Technol Journal of Mechanical Science and Technology = J. Mech. Sci. Technol. Journal of Mechanical Working Technology = J Mech Work Technol Journal of Mechanical Working Technology = J. Mech. Work. Technol. Journal of Mechanics in Medicine and Biology = J Mech Med Biol Journal of Mechanics in Medicine and Biology = J. Mech. Med. Biol. Journal of Mechanics = J Mech Journal of Mechanics = J. Mech. Journal of Mechanics of Materials and Structures = J Mech Mater Struct Journal of Mechanics of Materials and Structures = J. Mech. Mater. Struct. Journal of Mechanisms = J Mechanisms Journal of Mechanisms = J. Mechanisms Journal of Mechanisms Transmissions and Automation in Design-transactions of The Asme = J Mech Transm-t Asme Journal of Mechanisms Transmissions and Automation in Design-transactions of The Asme = J. Mech. Transm-t. Asme Journal of Mechanochemistry and Cell Motility = J. Mechanochem. Cell Motil. Journal of mechanochemistry & cell motility = J Mechanochem Cell Motil Journal of Media Economics = J Media Econ Journal of Media Economics = J. Media Econ. Journal of Medical and Biological Engineering = J Med Biol Eng Journal of Medical and Biological Engineering = J. Med. Biol. Eng. Journal of medical and dental sciences = J Med Dent Sci Journal of Medical and Dental Sciences=J Med Dent Sci;; Journal of Medical and Dental Sciences = J. Med. Dent. Sci. Journal of medical and veterinary mycology : bi-monthly publication of the International Society for Human and Animal Mycology = J Med Vet Mycol Journal of Medical and Veterinary Mycology=J Med Vet Mycol;; Journal of Medical and Veterinary Mycology = J Med Vet Mycol Journal of Medical and Veterinary Mycology = J. Med. Vet. Mycol. Journal of Medical Biochemistry = J Med Biochem Journal of Medical Biochemistry = J. Med. Biochem. Journal of medical biography = J Med Biogr Journal of Medical Biography = J Med Biogr Journal of Medical Biography = J. Med. Biogr. Journal of medical case reports = J Med Case Reports Journal of Medical Devices = J. Med. Devices Journal of medical education = J Med Educ Journal of Medical Education = J Med Educ Journal of Medical Education = J. Med. Educ. Journal of Medical Engineering and Technology=J Med Eng Technol;; Journal of Medical Engineering and Technology = J. Med. Eng. Technol. Journal of medical engineering & technology = J Med Eng Technol Journal of Medical Engineering & Technology = J Med Eng Technol Journal of Medical Engineering & Technology = J. Med. Eng. Technol. Journal of medical entomology = J Med Entomol Journal of Medical Entomology=J Med Entomol;; Journal of Medical Entomology = J Med Entomol Journal of Medical Entomology = J. Med. Entomol. Journal of medical entomology. Supplement = J Med Entomol Suppl Journal of Medical Entomology. Supplement = J. Med. Entomol. Suppl. Journal of medical ethics = J Med Ethics Journal of Medical Ethics=J Med Ethics;; Journal of Medical Ethics = J Med Ethics Journal of Medical Ethics = J. Med. Ethics Journal of medical genetics = J Med Genet Journal of Medical Genetics=J Med Genet;; Journal of Medical Genetics = J Med Genet Journal of Medical Genetics = J. Med. Genet. Journal of Medical Humanities and Bioethics = J. Med. Humanit. Bioeth. Journal of Medical Humanities = J. Med. Humanit. Journal of Medical Imaging and Radiation Oncology = J Med Imag Radiat On Journal of Medical Imaging and Radiation Oncology = J. Med. Imag. Radiat. On. Journal of medical Internet research = J Med Internet Res Journal of Medical Internet Research = J Med Internet Res Journal of Medical Internet Research = J. Med. Internet Res. Journal of Medical Investigation=J Med Invest;; Journal of Medical Investigation = J. Med. Invest. Journal of Medical Laboratory Technology = J. Med. Lab. Technol. Journal of medical microbiology = J Med Microbiol Journal of Medical Microbiology=J Med Microbiol;; Journal of Medical Microbiology = J Med Microbiol Journal of Medical Microbiology = J. Med. Microbiol. Journal of Medical Practice Management = J. Med. Pract. Manage. Journal of medical primatology = J Med Primatol Journal of Medical Primatology=J Med Primatol;; Journal of Medical Primatology = J Med Primatol Journal of Medical Primatology = J. Med. Primatol. Journal of medical science = J Med Sci Journal of medical sciences (Taipei, Taiwan) = J Med Sci Journal of medical screening = J Med Screen Journal of Medical Screening=J Med Screen;; Journal of Medical Screening = J Med Screen Journal of Medical Screening = J. Med. Screen. Journal of Medical Speech-language Pathology = J Med Speech-lang Pa Journal of Medical Speech-language Pathology = J. Med. Speech-lang. Pa. Journal of medical speech-language pathology = J Med Speech Lang Pathol Journal of medical systems = J Med Syst Journal of Medical Systems=J Med Syst;; Journal of Medical Systems = J Med Syst Journal of Medical Systems = J. Med. Syst. Journal of Medical Technology = J Med Technol Journal of Medical Technology = J. Med. Technol. Journal of medical technology : official publication of American Medical Technologists [and] American Society for Medical Technology = J Med Technol Journal of Medical Toxicology = J. Med. Toxicol. Journal of Medical Ultrasonics = J Med Ultrason Journal of Medical Ultrasonics = J. Med. Ultrason. Journal of medical virology = J Med Virol Journal of Medical Virology=J Med Virol;; Journal of Medical Virology = J Med Virol Journal of Medical Virology = J. Med. Virol. Journal of medicinal and pharmaceutical chemistry = J Med Pharm Chem Journal of Medicinal and Pharmaceutical Chemistry = J. Med. Pharm. Chem. Journal of medicinal chemistry = J Med Chem Journal of Medicinal Chemistry=J Med Chem;; Journal of Medicinal Chemistry = J Med Chem Journal of Medicinal Chemistry = J. Med. Chem. Journal of medicinal food = J Med Food Journal of Medicinal Food = J Med Food Journal of Medicinal Food = J. Med. Food Journal of Medicinal & Pharmaceutical Chemistry = J Med Pharmaceut Ch Journal of Medicinal & Pharmaceutical Chemistry = J. Med. Pharmaceut. Ch. Journal of Medicinal Plants Research = J Med Plants Res Journal of Medicinal Plants Research = J. Med. Plants Res. Journal of medicine and law / Detroit College of Law at Michigan State University = J Med Law Journal of Medicine and Philosophy=J Med Philos;; Journal of Medicine and Philosophy = J Med Philos Journal of Medicine and Philosophy = J. Med. Philos. Journal of medicine = J Med Journal of Medicine=J Med;; Journal of Medicine = J Med Journal of Medicine = J. Med. Journal of Medieval and Early Modern Studies = J Mediev Early Mod S Journal of Medieval and Early Modern Studies = J. Mediev. Early Mod. S. Journal of Medieval and Renaissance Studies = J Medieval Renaiss Journal of Medieval and Renaissance Studies = J. Medieval Renaiss. Journal of Medieval History = J Medieval Hist Journal of Medieval History = J. Medieval Hist. Journal of medieval history = J Mediev Hist Journal of Mediterranean Anthropology and Archaeology = JMedAnthrA Journal of Mediterranean archaeology = JMA Journal of Mediterranean Archaeology = JMedA Journal of Mediterranean Studies = J Mediterr Stud Journal of Mediterranean Studies = J. Mediterr. Stud. Journal of Membrane Biology = J Membrane Biol Journal of Membrane Biology = J. Membrane Biol. Journal of Membrane Biology=J Membr Biol;; Journal of Membrane Biology = J. Membr. Biol. Journal of Membrane Science = J Membrane Sci Journal of Membrane Science = J. Membrane Sci. Journal of Membrane Science = J. Membr. Sci. Journal of membrane science = J Memb Sci Journal of memory and language = J Mem Lang Journal of Memory and Language = J Mem Lang Journal of Memory and Language = J. Mem. Lang. Journal of mental deficiency research = J Ment Defic Res Journal of Mental Deficiency Research = J Ment Defic Res Journal of Mental Deficiency Research = J. Ment. Defic. Res. Journal of mental health administration = J Ment Health Adm Journal of Mental Health Administration = J. Ment. Health Adm. Journal of Mental Health Administration = J Ment Health Admin Journal of Mental Health Administration = J. Ment. Health Admin. Journal of Mental Health = J Ment Health Journal of Mental Health = J. Ment. Health Journal of Mental Health Policy and Economics = J Ment Health Policy Journal of Mental Health Policy and Economics = J. Ment. Health Policy Journal of Mental Health Policy and Economics = J. Ment. Health Policy Econ. Journal of Mental Science = J Ment Sci Journal of Mental Science = J. Ment. Sci. Journal of Mental Subnormality = J Ment Subnorm Journal of Mental Subnormality = J. Ment. Subnorm. Journal of Metallurg and Materials Science = J. Metall. Mater. Sci. Journal of Metals = Jom-j Min Met Mat S Journal of Metals = Jom-j. Min. Met. Mat. S. Journal of Metamorphic Geology = J Metamorph Geol Journal of Metamorphic Geology = J. Metamorph. Geol. Journal of Metastable and Nanocrystalline Materials = J. Metastable Nanocryst. Mater. Journal of Metastable and Nanocrystalline Materials Series = J Metastab Nanocryst Journal of Metastable and Nanocrystalline Materials Series = J. Metastab. Nanocryst. Journal of Meteorological Research, Japan = J. Meteor. Res. Japan Journal of Meteorology = J. Meteor. Journal of Meteorology = J Meteorol Journal of Meteorology = J. Meteorol. Journal of Michigan Dental Association = J. Mich. Dent. Assoc. Journal of Microbial Biotechnology = J Microbial Biotech Journal of Microbial Biotechnology = J. Microbial Biotech. Journal of Microbiological Methods = J Microbiol Meth Journal of Microbiological Methods = J. Microbiol. Meth. Journal of microbiological methods = J Microbiol Methods Journal of Microbiological Methods = J. Microbiol. Methods Journal of Microbiology and Biotechnology = J Microbiol Biotechn Journal of Microbiology and Biotechnology = J. Microbiol. Biotechn. Journal of microbiology and biotechnology = J Microbiol Biotechnol Journal of Microbiology and Biotechnology = J. Microbiol. Biotechnol. Journal of Microbiology Epidemiology and Immunobiology Ussr = J Micr Epid Imm Ussr Journal of Microbiology Epidemiology and Immunobiology Ussr = J. Micr. Epid. Imm. Ussr Journal of microbiology, epidemiology and immunobiology. Zhurnal mikrobiologii, epidemiologii i immunobiologii = J Microbiol Epidemiol Immunobiol Journal of Microbiology Immunology and Infection = J Microbiol Immunol Journal of Microbiology Immunology and Infection = J. Microbiol. Immunol. Journal of Microbiology, Immunology, and Infection = J. Microbiol. Immunol. Infect. Journal of Microbiology = J Microbiol Journal of Microbiology = J. Microbiol. Journal of microbiology (Seoul, Korea) = J Microbiol Journal of Microcolumn Separations = J Microcolumn Sep Journal of Microcolumn Separations = J. Microcolumn Sep. Journal of Microcomputer Applications = J Microcomput Appl Journal of Microcomputer Applications = J. Microcomput. Appl. Journal of microelectromechanical systems : a joint IEEE and ASME publication on microstructures, microactuators, microsensors, and microsystems = J Microelectromech Syst Journal of Microelectromechanical Systems = J Microelectromech S Journal of Microelectromechanical Systems = J. Microelectromech. S. Journal of Microelectromechanical Systems = J. Microelectromech. Syst. Journal of Microelectronic Systems = J. Microelectromech. Syst. Journal of microencapsulation = J Microencapsul Journal of Microencapsulation=J Microencapsul;; Journal of Microencapsulation = J Microencapsul Journal of Microencapsulation = J. Microencapsul. Journal of Microencapsulation = J. Microencapsulation Journal of Micrographics = J. Microgr. Journal of Micrographics = J Micrographics Journal of Micrographics = J. Micrographics Journal of Microlithography Microfabrication and Microsystems = J Microlith Microfab Journal of Microlithography Microfabrication and Microsystems = J. Microlith. Microfab. Journal of Microlithography, Microfabrication, and Microsystems = J. Microlith. Microfab. Microsys. Journal of Micromechanics and Microengineering = J Micromech Microeng Journal of Micromechanics and Microengineering = J. Micromech. Microeng. Journal of Micro-nanolithography Mems and Moems = J Micro-nanolith Mem Journal of Micro-nanolithography Mems and Moems = J. Micro-nanolith. Mem. Journal of Micro/Nanolithography, MEMS and MOEMS = J. Micro/Nanolithogr. MEMS MOEMS Journal of Micro/Nanolithography, Microfabrican, and Microsystems = J. Micro/Nanolithog. Microfab. Microsys. Journal of Micro - Nano Mechatronics = J. Micro - Nano Mechatron. Journal of Micronutrient Analysis = J Micronutr Anal Journal of Micronutrient Analysis = J. Micronutr. Anal. Journal of Micropalaeontology = J Micropalaeontol Journal of Micropalaeontology = J. Micropalaeontol. Journal of microscopy = J Microsc Journal of Microscopy=J Microsc;; Journal of Microscopy = J. Microsc. Journal of Microscopy-oxford = J Microsc-oxford Journal of Microscopy-oxford = J. Microsc-oxford. Journal of microsurgery = J Microsurg Journal of Microsurgery = J. Microsurg. Journal of Microwave Power and Electromagnetic Energy = J Microwave Power Ee Journal of Microwave Power and Electromagnetic Energy = J. Microwave Power Ee. Journal of Microwave Power and Electromagnetic Energy = J. Microwave Power Electromagn. Energy Journal of Microwave Power and Electromagnetic Energy=J Microw Power Electromagn Energy;; Journal of Microwave Power and Electromagnetic Energy = J. Microw. Power Electromagn. Energy Journal of Microwave Power = J. Microwave Power Journal of Microwave Power = J. Microw. Power Journal of Midwifery and Women's Health = J. Midwifery Womens Health Journal of midwifery & women's health = J Midwifery Womens Health Journal of Midwifery & Womens Health = J Midwifery Wom Heal Journal of Midwifery & Womens Health = J. Midwifery Wom. Heal. Journal of Military History = J Military Hist Journal of Military History = J. Military Hist. Journal of Milk and Food Technology = J Milk Food Technol Journal of Milk and Food Technology = J. Milk Food Technol. Journal of Mind and Behavior = J Mind Behav Journal of Mind and Behavior = J. Mind Behav. Journal of Mineralogical and Petrological Sciences = J. Mineral. Petrol. Sci. Journal of Mineralogical and Petrological Sciences = J Miner Petrol Sci Journal of Mineralogical and Petrological Sciences = J. Miner. Petrol. Sci. Journal of Mines, Metals and Fuels = J. Mines Met. Fuels Journal of Minimally Invasive Gynecology = J Minim Invas Gyn Journal of Minimally Invasive Gynecology = J. Minim. Invas. Gyn. Journal of Minimally Invasive Gynecology = J Minim Invas Gyn L Journal of Minimally Invasive Gynecology = J. Minim. Invas. Gyn. L. Journal of minimally invasive gynecology = J Minim Invasive Gynecol Journal of Minimally Invasive Gynecology = J. Minim. Invasive Gynecol. Journal of Mining and Metallurgy, Section A: Mining = J. Min. Metall. Sect. A. Journal of Mining and Metallurgy Section B-metallurgy = J Min Metall B Journal of Mining and Metallurgy Section B-metallurgy = J. Min. Metall. B. Journal of Mining and Metallurgy Section B-metallurgy = J Min Metall Sect B- Journal of Mining and Metallurgy Section B-metallurgy = J. Min. Metall. Sect. B-. Journal of Mining and Metallurgy, Section B: Metallurgy = J. Min. Metall. Sect. B. Journal of Mining Science = J Min Sci+ Journal of Mining Science = J. Min. Sci. Journal of Mining Science = J. Min. Sci+.+ Journal of Mithraic Studies = J Mithraic Stud Journal of Mithraic Studies = J. Mithraic Stud. Journal of Mithraic Studies = JMithrSt Journal of Mixed Methods Research = J Mix Method Res Journal of Mixed Methods Research = J. Mix. Method. Res. Journal of MMIJ = J. MMIJ Journal of Modern African Studies = J Mod Afr Stud Journal of Modern African Studies = J. Mod. Afr. Stud. Journal of modern applied statistical methods : JMASM = J Mod Appl Stat Methods Journal of Modern Craft = J Mod Craft Journal of Modern Craft = J. Mod. Craft Journal of Modern Dynamics = J Mod Dyn Journal of Modern Dynamics = J. Mod. Dyn. Journal of Modern European History = J Mod Eur Hist Journal of Modern European History = J. Mod. Eur. Hist. Journal of Modern Greek Studies = J Mod Greek Stud Journal of Modern Greek Studies = J. Mod. Greek Stud. Journal of Modern History = J Mod Hist Journal of Modern History = J. Mod. Hist. Journal of Modern Italian Studies = J Mod Ital Stud Journal of Modern Italian Studies = J. Mod. Ital. Stud. Journal of Modern Literature = J Mod Literature Journal of Modern Literature = J. Mod. Literature Journal of Modern Optics = J. Modern Opt. Journal of Modern Optics = J. Mod. Opt. Journal of Modern Optics = J Mod Optic Journal of Modern Optics = J. Mod. Optic. Journal of molecular and applied genetics = J Mol Appl Genet Journal of Molecular and Applied Genetics = J Mol Appl Genet Journal of Molecular and Applied Genetics = J. Mol. Appl. Genet. Journal of molecular and cellular cardiology = J Mol Cell Cardiol Journal of Molecular and Cellular Cardiology=J Mol Cell Cardiol;; Journal of Molecular and Cellular Cardiology = J Mol Cell Cardiol Journal of Molecular and Cellular Cardiology = J. Mol. Cell. Cardiol. Journal of Molecular and Cellular Immunology = J Mol Cell Immunol Journal of Molecular and Cellular Immunology = J. Mol. Cell. Immunol. Journal of Molecular and Cellular Pathology = J. Mol. Cell. Pathol. Journal of Molecular and Genetic Medicine = J. Mol. Genet. Med. Journal of molecular biology = J Mol Biol Journal of Molecular Biology=J Mol Biol;; Journal of Molecular Biology = J Mol Biol Journal of Molecular Biology = J. Mol. Biol. Journal of Molecular Catalysis A-chemical = J Mol Catal A-chem Journal of Molecular Catalysis A-chemical = J. Mol. Catal. A-chem. Journal of Molecular Catalysis A: Chemical = J. Mol. Catal. A: Chem. Journal of Molecular Catalysis B-enzymatic = J Mol Catal B-enzym Journal of Molecular Catalysis B-enzymatic = J. Mol. Catal. B-enzym. Journal of Molecular Catalysis B: Enzymatic = J. Mol. Catal. B: Enzym. Journal of Molecular Catalysis = J Mol Catal Journal of Molecular Catalysis = J. Mol. Catal. Journal of Molecular Cell Biology = J. Mol. Cell. Biol. Journal of Molecular Diagnostics = J Mol Diagn Journal of Molecular Diagnostics = J. Mol. Diagn. Journal of Molecular Electronics = J Mol Electron Journal of Molecular Electronics = J. Mol. Electron. Journal of molecular endocrinology = J Mol Endocrinol Journal of Molecular Endocrinology=J Mol Endocrinol;; Journal of Molecular Endocrinology = J Mol Endocrinol Journal of Molecular Endocrinology = J. Mol. Endocrinol. Journal of molecular evolution = J Mol Evol Journal of Molecular Evolution=J Mol Evol;; Journal of Molecular Evolution = J Mol Evol Journal of Molecular Evolution = J. Mol. Evol. Journal of Molecular Graphics and Modelling = J. Mol. Graphics Modell. Journal of Molecular Graphics and Modelling=J Mol Graph Model;; Journal of Molecular Graphics and Modelling = J. Mol. Graph. Model. Journal of molecular graphics = J Mol Graph Journal of Molecular Graphics = J. Mol. Graph. Journal of Molecular Graphics = J Mol Graphics Journal of Molecular Graphics = J. Mol. Graphics Journal of Molecular Graphics & Modelling = J. Mol. Graphics Modell. Journal of molecular graphics & modelling = J Mol Graph Model Journal of Molecular Graphics & Modelling = J Mol Graph Model Journal of Molecular Graphics & Modelling = J. Mol. Graph. Model. Journal of molecular histology = J Mol Histol Journal of Molecular Histology = J Mol Histol Journal of Molecular Histology = J. Mol. Histol. Journal of Molecular Liquids = J Mol Liq Journal of Molecular Liquids = J. Mol. Liq. Journal of molecular medicine (Berlin, Germany) = J Mol Med Journal of Molecular Medicine-jmm = J Mol Med-jmm Journal of Molecular Medicine-jmm = J. Mol. Med-jmm. Journal of molecular medicine = J Mol Med Journal of Molecular Medicine=J Mol Med;; Journal of Molecular Medicine = J Mol Med Journal of Molecular Medicine = J. Mol. Med. Journal of Molecular Microbiology and Biotechnology = J Mol Microb Biotech Journal of Molecular Microbiology and Biotechnology = J. Mol. Microb. Biotech. Journal of molecular microbiology and biotechnology = J Mol Microbiol Biotechnol Journal of Molecular Microbiology and Biotechnology = J. Mol. Microbiol. Biotechnol. Journal of molecular modeling = J Mol Model Journal of Molecular Modeling = J Mol Model Journal of Molecular Modeling = J. Mol. Model. Journal of Molecular Neuroscience=J Mol Neurosci;; Journal of Molecular Neuroscience = J Mol Neurosci Journal of Molecular Neuroscience = J. Mol. Neurosci. Journal of molecular neuroscience : MN = J Mol Neurosci Journal of Molecular Recognition=J Mol Recognit;; Journal of Molecular Recognition = J Mol Recognit Journal of Molecular Recognition = J. Mol. Recognit. Journal of molecular recognition : JMR = J Mol Recognit Journal of molecular signaling = J Mol Signal Journal of Molecular Signaling = J. Mol. Signaling Journal of molecular spectroscopy = J Mol Spectrosc Journal of Molecular Spectroscopy = J Mol Spectrosc Journal of Molecular Spectroscopy = J. Mol. Spectrosc. Journal of molecular structure = J Mol Struct Journal of Molecular Structure = J Mol Struct Journal of Molecular Structure = J. Mol. Struct. Journal of Molecular Structure-theochem = J Mol Struc-theochem Journal of Molecular Structure-theochem = J. Mol. Struc-theochem. Journal of Molecular Structure: THEOCHEM = J. Mol. Struct. THEOCHEM Journal of Molluscan Studies = J Mollus Stud Journal of Molluscan Studies = J. Mollus. Stud. Journal of Monetary Economics = J Monetary Econ Journal of Monetary Economics = J. Monetary Econ. Journal of Monetary Economics=J. Monet. Econ. Journal of Money Credit and Banking = J Money Credit Bank Journal of Money Credit and Banking = J. Money Credit Bank. Journal of Money, Credit, and Banking=J. Money, Credit, Banking Journal of moral education = J Moral Educ Journal of Moral Education = J Moral Educ Journal of Moral Education = J. Moral Educ. Journal of Mormon history = J Mormon Hist Journal of morphology = J Morphol Journal of Morphology=J Morphol;; Journal of Morphology = J Morphol Journal of Morphology = J. Morphol. Journal of motor behavior = J Mot Behav Journal of Motor Behavior = J Motor Behav Journal of Motor Behavior = J. Motor Behav. Journal of Mountain Science = J Mt Sci Journal of Mountain Science = J. Mt. Sci. Journal of Mountain Science = J Mt Sci-engl Journal of Mountain Science = J. Mt. Sci-engl. Journal of Multicultural Counseling and Development = J Multicult Couns D Journal of Multicultural Counseling and Development = J. Multicult. Couns. D. Journal of multicultural counseling and development = J Multicult Couns Devel Journal of multicultural social work = J Multicult Soc Work Journal of Multilingual and Multicultural Development = J Multiling Multicul Journal of Multilingual and Multicultural Development = J. Multiling. Multicul. Journal of Multinational Financial Management=J. Multinat. Finan. Manage. Journal of Multiple-valued Logic and Soft Computing = J Mult-valued Log S Journal of Multiple-valued Logic and Soft Computing = J. Mult-valued. Log. S. Journal of Multiscale Modeling = J. Multiscale Model. Journal of Multivariate Analysis = J. Multivariate Anal. Journal of Multivariate Analysis = J Multivariate Anal Journal of Multivariate Analysis = J. Multivariate Anal. Journal of Muscle Foods = J Muscle Foods Journal of Muscle Foods = J. Muscle Foods Journal of Muscle Research and Cell Motility = J Muscle Res Cell M Journal of Muscle Research and Cell Motility = J. Muscle Res. Cell M. Journal of muscle research and cell motility = J Muscle Res Cell Motil Journal of Muscle Research and Cell Motility=J Muscle Res Cell Motil;; Journal of Muscle Research and Cell Motility = J. Muscle Res. Cell Motil. Journal of musculoskeletal & neuronal interactions = J Musculoskelet Neuronal Interact Journal of Musculoskeletal Pain = J Musculoskelet Pain Journal of Musculoskeletal Pain = J. Musculoskelet. Pain Journal of Musicological Research = J Musicol Res Journal of Musicological Research = J. Musicol. Res. Journal of Musicology = J Musicology Journal of Musicology = J. Musicology Journal of Music Theory = J Music Theory Journal of Music Theory = J. Music Theory Journal of music therapy = J Music Ther Journal of Music Therapy = J Music Ther Journal of Music Therapy = J. Music Ther. Journal of NAL Associates = J Nal Assoc Journal of Nanbiotechnology = J. Nanobiotechnol. Journal of Nanjing Normal University = J. Nanjing Norm. Univ. Nat. Sci. Ed. Journal of nanobiotechnology = J Nanobiotechnology Journal of Nano Education = J. Nano Educ. Journal of Nanoelectronics and Optoelectronics = J Nanoelectron Optoe Journal of Nanoelectronics and Optoelectronics = J. Nanoelectron. Optoe. Journal of Nanoelectronics and Optoelectronics = J. Nanoelectron. Optoelectron. Journal of Nanoeuroscience = J. Nanoeurosci. Journal of Nanomaterials = J Nanomater Journal of Nanomaterials = J. Nanomater. Journal of Nanoparticle Research = J Nanopart Res Journal of Nanoparticle Research = J. Nanopart. Res. Journal of Nanophotonics = J Nanophotonics Journal of Nanophotonics = J. Nanophotonics Journal of Nano Research = J Nano Res Journal of Nano Research = J. Nano Res. Journal of Nano Research = J Nano Res-sw Journal of Nano Research = J. Nano Res-sw. Journal of Nanoscience and Nanotechnology = J Nanosci Nanotechno Journal of Nanoscience and Nanotechnology = J. Nanosci. Nanotechno. Journal of nanoscience and nanotechnology = J Nanosci Nanotechnol Journal of Nanoscience and Nanotechnology = J. Nanosci. Nanotechnol. Journal of Narrative and Life History = J Narrat Life Hist Journal of Narrative and Life History = J. Narrat. Life Hist. Journal of Narrative Technique = J Narrative Tech Journal of Narrative Technique = J. Narrative Tech. Journal of National Black Nurses Association = J. Natl. Black Nurses Assoc. Journal of National Black Nurses' Association : JNBNA = J Natl Black Nurses Assoc Journal of Natural Fibers = J. Nat. Fibers Journal of Natural Gas Chemistry = J Nat Gas Chem Journal of Natural Gas Chemistry = J. Nat. Gas Chem. Journal of Natural Gas Science and Engineering = J. Nat. Gas Sci. Eng. Journal of Natural Geometry = J. Natur. Geom. Journal of Natural History = J Nat Hist Journal of Natural History = J. Nat. Hist. Journal of Natural Medicines = J Nat Med Journal of Natural Medicines = J. Nat. Med. Journal of Natural Medicines = J Nat Med-tokyo Journal of Natural Medicines = J. Nat. Med-tokyo. Journal of Natural & Physical Sciences = J. Natur. Phys. Sci. Journal of natural products = J Nat Prod Journal of Natural Products=J Nat Prod;; Journal of Natural Products = J Nat Prod Journal of Natural Products = J. Nat. Prod. Journal of Natural Products-lloydia = J Nat Products Journal of Natural Products-lloydia = J. Nat. Products. Journal of Natural Resource Policy Research = J. Nat. Resour. Policy Res. Journal of natural toxins = J Nat Toxins Journal of Natural Toxins = J Nat Toxins Journal of Natural Toxins = J. Nat. Toxins Journal of Nature Conservation = J. Nat. Conserv. Journal of Navigation = J. Navig. Journal of Navigation = J Navigation Journal of Navigation = J. Navigation Journal of Near Eastern Studies = J Near Eastern Stud Journal of Near Eastern Studies = J. Near Eastern Stud. Journal of Near Eastern studies = J Near East Stud Journal of Near Eastern Studies = JNES Journal of Near Eastern Studies = JNES Journal of Near Infrared Spectroscopy = J Near Infrared Spec Journal of Near Infrared Spectroscopy = J. Near Infrared Spec. Journal of Near Infrared Spectroscopy = J. Near Infrared Spectrosc. Journal of negative results in biomedicine = J Negat Results Biomed Journal of Negative Results in Biomedicine = J. Negat. Results Biomed. Journal of Negro Education = J Negro Educ Journal of Negro Education = J. Negro Educ. Journal of Negro History = J Negro Hist Journal of Negro History = J. Negro Hist. Journal of nematology = J Nematol Journal of Nematology = J Nematol Journal of Nematology = J. Nematol. Journal of Nepal Chemical Society = J. Nepal Chem. Soc. Journal of Nepal Medical Association = J Nepal Med Assoc Journal of Nepal Medical Association = J. Nepal Med. Assoc. Journal of nephrology = J Nephrol Journal of Nephrology=J Nephrol;; Journal of Nephrology = J Nephrol Journal of Nephrology = J. Nephrol. Journal of nephrology nursing = J Nephrol Nurs Journal of Nephrology Nursing = J. Nephrol. Nurs. Journal of Nervous and Mental Disease=J Nerv Ment Dis;; Journal of Nervous and Mental Disease = J Nerv Ment Dis Journal of Nervous and Mental Disease = J. Nerv. Ment. Dis. Journal of Network and Computer Applications = J Netw Comput Appl Journal of Network and Computer Applications = J. Netw. Comput. Appl. Journal of Network and Systems Management = J Netw Syst Manag Journal of Network and Systems Management = J. Netw. Syst. Manag. Journal of neural engineering = J Neural Eng Journal of Neural Engineering = J Neural Eng Journal of Neural Engineering = J. Neural Eng. Journal of Neural Transmission-general Section = J Neural Transm-gen Journal of Neural Transmission-general Section = J. Neural Transm-gen. Journal of neural transmission. General section = J Neural Transm Gen Sect Journal of Neural Transmission: General Section = J. Neural Transm.: Gen. Sect. Journal of Neural Transmission. General Section = J. Neural Transm. Gen. Sect. Journal of neural transmission = J Neural Transm Journal of Neural Transmission=J Neural Transm;; Journal of Neural Transmission = J Neural Transm Journal of Neural Transmission = J. Neural Transm. Journal of Neural Transmission-parkinsons Disease and Dementia Section = J Neural Transm-park Journal of Neural Transmission-parkinsons Disease and Dementia Section = J. Neural Transm-park. Journal of neural transmission. Parkinson's disease and dementia section = J Neural Transm Park Dis Dement Sect Journal of Neural Transmission. Parkinsons Disease and Dementia Section = J. Neural Transm. Park. Dis. Dement. Sect. Journal of Neural Transmission, Suppl 29 = J Neur Tr S Journal of Neural Transmission, Suppl 29 = J. Neur. Tr. S. Journal of Neural Transmission, Suppl 30 = J Neur Tr S Journal of Neural Transmission, Suppl 30 = J. Neur. Tr. S. Journal of Neural Transmission, Suppl 31 = J Neur Tr S Journal of Neural Transmission, Suppl 31 = J. Neur. Tr. S. Journal of Neural Transmission, Suppl 32 = J Neur Tr S Journal of Neural Transmission, Suppl 32 = J. Neur. Tr. S. Journal of Neural Transmission - Supplementa = J Neur Tr S Journal of Neural Transmission - Supplementa = J. Neur. Tr. S. Journal of Neural Transmission-supplement = J Neural Transm-supp Journal of Neural Transmission-supplement = J. Neural Transm-supp. Journal of neural transmission. Supplementum = J Neural Transm Suppl Journal of Neural Transmission. Supplementum=J Neural Transm Suppl;; Journal of Neural Transmission. Supplementum = J. Neural Transm. Suppl. Journal of neural transmission (Vienna, Austria : 1996) = J Neural Transm Journal of Neural Transplantation and Plasticity=J Neural Transplant Plast;; Journal of Neural Transplantation and Plasticity = J. Neural Transplant. Plast. Journal of neural transplantation = J Neural Transplant Journal of Neural Transplantation = J. Neural Transplant. Journal of neural transplantation & plasticity = J Neural Transplant Plast Journal of Neural Transplantation & Plasticity = J Neural Transp Plas Journal of Neural Transplantation & Plasticity = J. Neural Transp. Plas. Journal of neuro-AIDS = J NeuroAIDS Journal of neurobiology = J Neurobiol Journal of Neurobiology=J Neurobiol;; Journal of Neurobiology = J Neurobiol Journal of Neurobiology = J. Neurobiol. Journal of neurochemistry = J Neurochem Journal of Neurochemistry=J Neurochem;; Journal of Neurochemistry = J Neurochem Journal of Neurochemistry = J. Neurochem. Journal of neurocytology = J Neurocytol Journal of Neurocytology=J Neurocytol;; Journal of Neurocytology = J Neurocytol Journal of Neurocytology = J. Neurocytol. Journal of Neurodevelopmental Disorders = J Neurodev Disord Journal of Neurodevelopmental Disorders = J. Neurodev. Disord. Journal of neuroendocrinology = J Neuroendocrinol Journal of Neuroendocrinology=J Neuroendocrinol;; Journal of Neuroendocrinology = J Neuroendocrinol Journal of Neuroendocrinology = J. Neuroendocrinol. Journal of neuroengineering and rehabilitation = J Neuroeng Rehabil Journal of Neuroengineering and Rehabilitation = J Neuroeng Rehabil Journal of Neuroengineering and Rehabilitation = J. Neuroeng. Rehabil. Journal of neurogenetics = J Neurogenet Journal of Neurogenetics=J Neurogenet;; Journal of Neurogenetics = J Neurogenet Journal of Neurogenetics = J. Neurogenet. Journal of Neuroimaging=J Neuroimaging;; Journal of Neuroimaging = J Neuroimaging Journal of Neuroimaging = J. Neuroimaging Journal of neuroimaging : official journal of the American Society of Neuroimaging = J Neuroimaging Journal of Neuroimmune Pharmacology = J Neuroimmune Pharm Journal of Neuroimmune Pharmacology = J. Neuroimmune Pharm. Journal of neuroimmunology = J Neuroimmunol Journal of Neuroimmunology=J Neuroimmunol;; Journal of Neuroimmunology = J Neuroimmunol Journal of Neuroimmunology = J. Neuroimmunol. Journal of neuroimmunology. Supplement = J Neuroimmunol Suppl Journal of Neuroimmunology. Supplement=J Neuroimmunol Suppl;; Journal of Neuroimmunology. Supplement = J. Neuroimmunol. Suppl. Journal of Neuroinflammation = J Neuroinflamm Journal of Neuroinflammation = J. Neuroinflamm. Journal of neuroinflammation = J Neuroinflammation Journal of Neurolinguistics = J Neurolinguist Journal of Neurolinguistics = J. Neurolinguist. Journal of neurolinguistics = J Neurolinguistics Journal of Neurological and Orthopaedic Medicine and Surgery = J Neurol Orth Med S Journal of Neurological and Orthopaedic Medicine and Surgery = J. Neurol. Orth. Med. S. Journal of Neurological Sciences-turkish = J Neurol Sci-turk Journal of Neurological Sciences-turkish = J. Neurol. Sci-turk. Journal of Neurologic Physical Therapy = J. Neurol. Phys. Ther. Journal of neurologic physical therapy : JNPT = J Neurol Phys Ther Journal of neurologic rehabilitation = J Neurol Rehabil Journal of Neurologic Rehabilitation = J Neurol Rehabil Journal of Neurologic Rehabilitation = J. Neurol. Rehabil. Journal of neurology = J Neurol Journal of Neurology=J Neurol;; Journal of Neurology = J Neurol Journal of Neurology = J. Neurol. Journal of neurology, neurosurgery, and psychiatry = J Neurol Neurosurg Psychiatry Journal of Neurology, Neurosurgery and Psychiatry=J Neurol Neurosurg Psychiatry;; Journal of Neurology, Neurosurgery and Psychiatry = J. Neurol. Neurosurg. Psychiatry Journal of Neurology Neurosurgery and Psychiatry = J Neurol Neurosur Ps Journal of Neurology Neurosurgery and Psychiatry = J. Neurol. Neurosur. Ps. Journal of neuro-oncology = J Neurooncol Journal of Neuro-oncology = J Neuro-oncol Journal of Neuro-oncology = J. Neuro-oncol. Journal of Neuro-Oncology=J Neurooncol;; Journal of Neuro-Oncology = J. Neurooncol. Journal of Neuro-ophthalmology = J Neuro-ophthalmol Journal of Neuro-ophthalmology = J. Neuro-ophthalmol. Journal of Neuro-Ophthalmology=J Neuroophthalmol;; Journal of Neuro-Ophthalmology = J. Neuroophthalmol. Journal of neuro-ophthalmology : the official journal of the North American Neuro-Ophthalmology Society = J Neuroophthalmol Journal of neuropathic pain & symptom palliation = J Neuropathic Pain Symptom Palliation Journal of Neuropathology and Experimental Neurology = J Neuropath Exp Neur Journal of Neuropathology and Experimental Neurology = J. Neuropath. Exp. Neur. Journal of neuropathology and experimental neurology = J Neuropathol Exp Neurol Journal of Neuropathology and Experimental Neurology=J Neuropathol Exp Neurol;; Journal of Neuropathology and Experimental Neurology = J. Neuropathol. Exp. Neurol. Journal of neurophysiology = J Neurophysiol Journal of Neurophysiology=J Neurophysiol;; Journal of Neurophysiology = J Neurophysiol Journal of Neurophysiology = J. Neurophysiol. Journal of Neuropsychiatry and Clinical Neurosciences = J Neuropsych Clin N Journal of Neuropsychiatry and Clinical Neurosciences = J. Neuropsych. Clin. N. Journal of Neuropsychiatry and Clinical Neurosciences=J Neuropsychiatry Clin Neurosci;; Journal of Neuropsychiatry and Clinical Neurosciences = J. Neuropsychiatry Clin. Neurosci. Journal of neuropsychiatry = J Neuropsychiatr Journal of Neuropsychiatry = J Neuropsychiatry Journal of Neuropsychiatry = J. Neuropsychiatry Journal of Neuropsychology = J Neuropsychol Journal of Neuropsychology = J. Neuropsychol. Journal of Neuroradiology = J. Neuroradiol. Journal of Neuroradiology = J Neuroradiology Journal of Neuroradiology = J. Neuroradiology Journal of neuroradiology. Journal de neuroradiologie = J Neuroradiol Journal of Neuroradiology. Journal de Neuroradiologie=J Neuroradiol;; Journal of Neuroscience=J Neurosci;; Journal of Neuroscience = J Neurosci Journal of Neuroscience = J. Neurosci. Journal of Neuroscience Methods = J Neurosci Meth Journal of Neuroscience Methods = J. Neurosci. Meth. Journal of neuroscience methods = J Neurosci Methods Journal of Neuroscience Methods=J Neurosci Methods;; Journal of Neuroscience Methods = J. Neurosci. Methods Journal of Neuroscience Nursing=J Neurosci Nurs;; Journal of Neuroscience Nursing = J Neurosci Nurs Journal of Neuroscience Nursing = J. Neurosci. Nurs. Journal of neuroscience research = J Neurosci Res Journal of Neuroscience Research=J Neurosci Res;; Journal of Neuroscience Research = J Neurosci Res Journal of Neuroscience Research = J. Neurosci. Res. Journal of neurosurgery = J Neurosurg Journal of Neurosurgery=J Neurosurg;; Journal of Neurosurgery = J Neurosurg Journal of Neurosurgery = J. Neurosurg. Journal of Neurosurgery-pediatrics = J Neuros-pediatr Journal of Neurosurgery-pediatrics = J. Neuros-pediatr. Journal of neurosurgery. Spine = J Neurosurg Spine Journal of Neurosurgery-spine = J Neurosurg-spine Journal of Neurosurgery-spine = J. Neurosurg-spine. Journal of Neurosurgery. Spine = J. Neurosurg. Spine Journal of Neurosurgical Anesthesiology = J Neurosurg Anesth Journal of Neurosurgical Anesthesiology = J. Neurosurg. Anesth. Journal of neurosurgical anesthesiology = J Neurosurg Anesthesiol Journal of Neurosurgical Anesthesiology=J Neurosurg Anesthesiol;; Journal of Neurosurgical Anesthesiology = J. Neurosurg. Anesthesiol. Journal of neurosurgical nursing = J Neurosurg Nurs Journal of Neurosurgical Nursing = J. Neurosurg. Nurs. Journal of neurosurgical sciences = J Neurosurg Sci Journal of Neurosurgical Sciences=J Neurosurg Sci;; Journal of Neurosurgical Sciences = J Neurosurg Sci Journal of Neurosurgical Sciences = J. Neurosurg. Sci. Journal of Neurotrauma = J Neurotraum Journal of Neurotrauma = J. Neurotraum. Journal of neurotrauma = J Neurotrauma Journal of Neurotrauma=J Neurotrauma;; Journal of Neurotrauma = J. Neurotrauma Journal of neurovirology = J Neurovirol Journal of Neurovirology=J Neurovirol;; Journal of Neurovirology = J Neurovirol Journal of Neurovirology = J. Neurovirol. Journal of neuro-visceral relations = J Neurovisc Relat Journal of Neuro-Visceral Relations = J. Neurovisc. Relat. Journal of Neuro-visceral Relations = J Neuro-vis Relat Journal of Neuro-visceral Relations = J. Neuro-vis. Relat. Journal of Neutron Research = J. Neutron Res. Journal of New Drugs = J New Drugs Journal of New Drugs = J. New Drugs Journal of New Materials for Electrochemical Systems = J New Mat Electr Sys Journal of New Materials for Electrochemical Systems = J. New Mat. Electr. Sys. Journal of New Materials for Electrochemical Systems = J New Mat Elect Syst Journal of New Materials for Electrochemical Systems = J. New Mat. Elect. Syst. Journal of New Materials for Electrochemical Systems = J. New Mater. Electrochem. Syst. Journal of New Music Research = J New Music Res Journal of New Music Research = J. New Music Res. Journal of New Zealand Society of Periodontology = J. N. Z. Soc. Periodontol. Journal of Nihon University School of Dentistry = J. Nihon Univ. Sch. Dent. Journal of NIHon University School Of Dentistry=J Nihon Univ Sch Dent;; Journal of Ningxia University = J. Ningxia Univ. Nat. Sci. Ed. Journal of Nippon Medical School = J. Nippon Med. Sch. Journal of Noncommutative Geometry = J Noncommut Geom Journal of Noncommutative Geometry = J. Noncommut. Geom. Journal of Non-crystalline Solids = J Non-cryst Solids Journal of Non-crystalline Solids = J. Non-cryst. Solids Journal of Non-Crystalline Solids = J. Non-Cryst. Solids Journal of Nondestructive Evaluation = J. Nondestr. Eval. Journal of Nondestructive Evaluation = J Nondestruct Eval Journal of Nondestructive Evaluation = J. Nondestruct. Eval. Journal of Non-Equilibrium Thermodynamics = J. Non-Equilib. Thermodyn. Journal of Non-equilibrium Thermodynamics = J Non-equil Thermody Journal of Non-equilibrium Thermodynamics = J. Non-equil. Thermody. Journal of Nonlinear and Convex Analysis = J Nonlinear Convex A Journal of Nonlinear and Convex Analysis = J. Nonlinear Convex A. Journal of Nonlinear Mathematical Physics = J Nonlinear Math Phy Journal of Nonlinear Mathematical Physics = J. Nonlinear Math. Phy. Journal of Nonlinear Mathematical Physics = J. Nonlinear Math. Phys. Journal of Nonlinear Mathematical Physics = J. Nonlinear Math. Phys. Journal of Nonlinear Optical Physics and Materials = J. Nonlinear Opt. Phys. Mater. Journal of Nonlinear Optical Physics & Materials = J Nonlinear Opt Phys Journal of Nonlinear Optical Physics & Materials = J. Nonlinear Opt. Phys. Journal of Nonlinear Science = J. Nonlinear Sci. Journal of Nonlinear Science = J Nonlinear Sci Journal of Nonlinear Science = J. Nonlinear Sci. Journal of Non-newtonian Fluid Mechanics = J Non-newton Fluid Journal of Non-newtonian Fluid Mechanics = J. Non-newton. Fluid Journal of Non-Newtonian Fluid Mechanics = J. Non-Newtonian Fluid Mech. Journal of Nonparametric Statistics = J Nonparametr Stat Journal of Nonparametric Statistics = J. Nonparametr. Stat. Journal of Nonparametric Statistics = J. Nonparametr. Statist. Journal of Nonverbal Behavior = J Nonverbal Behav Journal of Nonverbal Behavior = J. Nonverbal Behav. Journal of Northeastern University = J. Northeast. Univ. Nat. Sci. Journal of Northwest University = J. Northwest Univ. Journal of Nuclear and Radiochemical Sciences = J. Nucl. Radiochem. Sci. Journal of Nuclear Biology and Medicine = J Nucl Biol Med Journal of Nuclear Biology and Medicine = J. Nucl. Biol. Med. Journal of nuclear biology and medicine (Turin, Italy : 1991) = J Nucl Biol Med Journal of Nuclear Cardiology=J Nucl Cardiol;; Journal of Nuclear Cardiology = J Nucl Cardiol Journal of Nuclear Cardiology = J. Nucl. Cardiol. Journal of nuclear cardiology : official publication of the American Society of Nuclear Cardiology = J Nucl Cardiol Journal of Nuclear Energy = J. Nuclear Eng. Journal of Nuclear Energy = J Nucl Energy Journal of Nuclear Energy = J. Nucl. Energy Journal of Nuclear Energy = J. Nucl. Eng. Journal of Nuclear Energy, Part A: Reactor Science = J. Nuclear Eng. Part A: Journal of Nuclear Energy, Part A: Reactor Science = J. Nucl. Eng. Part A: Journal of Nuclear Energy, Part B: Reactor Technology = J. Nuclear Eng. Part B: Journal of Nuclear Energy, Part B: Reactor Technology = J. Nucl. Eng. Part B: Journal of Nuclear Energy, Part C: Plasma Physics, Accelerators, Thermonuclear Research = J. Nuclear Eng. Part C: Journal of Nuclear Energy Part C-plasma Physics Accelerators Thermonuclear Research = J Nucl Energy C Journal of Nuclear Energy Part C-plasma Physics Accelerators Thermonuclear Research = J. Nucl. Energy C. Journal of Nuclear Energy. Part C, Plasma Physics, Accelerators, Thermonuclear Research = J. Nucl. Eng. Part C: Journal of Nuclear Energy Parts A and B-reactor Science and Technology = J Nucl Energy Ab Journal of Nuclear Energy Parts A and B-reactor Science and Technology = J. Nucl. Energy Ab. Journal of Nuclear Materials = J Nucl Mater Journal of Nuclear Materials = J. Nucl. Mater. Journal of Nuclear Medicine and Allied Sciences = J Nucl Med Allied S Journal of Nuclear Medicine and Allied Sciences = J. Nucl. Med. Allied S. Journal of Nuclear Medicine and Allied Sciences = J. Nucl. Med. Allied Sci. Journal of Nuclear Medicine=J Nucl Med;; Journal of Nuclear Medicine = J Nucl Med Journal of Nuclear Medicine = J. Nucl. Med. Journal of nuclear medicine : official publication, Society of Nuclear Medicine = J Nucl Med Journal of nuclear medicine technology = J Nucl Med Technol Journal of Nuclear Medicine Technology=J Nucl Med Technol;; Journal of Nuclear Medicine Technology = J. Nucl. Med. Technol. Journal of Nuclear Science and Technology = J Nucl Sci Technol Journal of Nuclear Science and Technology = J. Nucl. Sci. Technol. Journal of Nuclear Science and Technology (Tokyo, Japan) = J. Nucl. Sci. Technol. (Tokyo, Jpn.) Journal of Nuclear Science and Technology-tokyo = J Nucl Sci Technol-t Journal of Nuclear Science and Technology-tokyo = J. Nucl. Sci. Technol-t. Journal of Number Theory = J. Number Theory Journal of Number Theory = J Number Theory Journal of Number Theory = J. Number Theory Journal of Numerical Mathematics = J Numer Math Journal of Numerical Mathematics = J. Numer. Math. Journal of nurse-midwifery = J Nurse Midwifery Journal of Nurse-midwifery = J Nurse-midwifery Journal of Nurse-midwifery = J. Nurse-midwifery Journal of Nurse-Midwifery=J Nurse Midwifery;; Journal of Nurse-Midwifery = J. Nurse. Midwifery Journal of Nursing Administration=J Nurs Adm;; Journal of Nursing Administration = J. Nurs. Adm. Journal of Nursing Administration = J Nurs Admin Journal of Nursing Administration = J. Nurs. Admin. Journal of Nursing Care = J. Nurs. Care Journal of nursing care quality = J Nurs Care Qual Journal of Nursing Care Quality=J Nurs Care Qual;; Journal of Nursing Care Quality = J Nurs Care Qual Journal of Nursing Care Quality = J. Nurs. Care Qual. Journal of Nursing Education=J Nurs Educ;; Journal of Nursing Education = J Nurs Educ Journal of Nursing Education = J. Nurs. Educ. Journal of Nursing Ethics = J. Nurs. Ethics Journal Of Nursing Ethics = J Nurs Ethics Journal of nursing history : a publication of the Nursing Archives Associates at Boston University = J Nurs Hist Journal of Nursing History = J. Nurs. Hist. Journal of nursing law = J Nurs Law Journal of nursing management = J Nurs Manag Journal of Nursing Management = J. Nurs. Manag. Journal of nursing measurement = J Nurs Meas Journal of Nursing Measurement=J Nurs Meas;; Journal of Nursing Measurement = J. Nurs. Meas. Journal of nursing quality assurance = J Nurs Qual Assur Journal of Nursing Quality Assurance = J. Nurs. Qual. Assur. Journal of Nursing Research = J. Nurs. Res. Journal of nursing scholarship : an official publication of Sigma Theta Tau International Honor Society of Nursing / Sigma Theta Tau = J Nurs Scholarsh Journal of Nursing Scholarship = J. Nurs. Scholarsh. Journal of Nursing Scholarship = J Nurs Scholarship Journal of Nursing Scholarship = J. Nurs. Scholarship Journal of nursing staff development : JNSD = J Nurs Staff Dev Journal of Nursing Staff Development = J. Nurs. Staff Dev. Journal of Nutrigenetics and Nutrigenomics = J Nutrigenet Nutrige Journal of Nutrigenetics and Nutrigenomics = J. Nutrigenet. Nutrige. Journal of Nutritional Biochemistry = J Nutr Biochem Journal of Nutritional Biochemistry = J. Nutr. Biochem. Journal of Nutritional & Environmental Medicine = J. Nutr. Environ. Med. Journal of Nutritional Science and Vitaminology = J Nutr Sci Vitaminol Journal of Nutritional Science and Vitaminology = J. Nutr. Sci. Vitaminol. Journal of nutritional science and vitaminology = J Nutr Sci Vitaminol (Tokyo) Journal of Nutritional Science and Vitaminology=J Nutr Sci Vitaminol (Tokyo);; Journal of Nutritional Science and Vitaminology = J. Nutr. Sci. Vitaminol. (Tokyo) Journal of nutrition and dietetics = J Nutr Diet Journal of Nutrition and Dietetics = J Nutr Diet Journal of Nutrition and Dietetics = J. Nutr. Diet. Journal of nutrition education and behavior = J Nutr Educ Behav Journal of Nutrition Education and Behavior = J Nutr Educ Behav Journal of Nutrition Education and Behavior = J. Nutr. Educ. Behav. Journal of nutrition education = J Nutr Educ Journal of Nutrition Education = J Nutr Educ Journal of Nutrition Education = J. Nutr. Educ. Journal of nutrition for the elderly = J Nutr Elder Journal of Nutrition for the Elderly = J. Nutr. Elder. Journal of Nutrition Health & Aging = J Nutr Health Aging Journal of Nutrition Health & Aging = J. Nutr. Health Aging Journal of Nutrition, Health and Aging = J. Nutr. Health Aging Journal of Nutrition=J Nutr;; Journal of Nutrition = J Nutr Journal of Nutrition = J. Nutr. Journal of Object-oriented Programming = J Object-orient Prog Journal of Object-oriented Programming = J. Object-orient. Prog. Journal of Obstetric, Gynecologic, and Neonatal Nursing=J Obstet Gynecol Neonatal Nurs;; Journal of Obstetric, Gynecologic, and Neonatal Nursing = J. Obstet. Gynecol. Neonatal Nurs. Journal of obstetric, gynecologic, and neonatal nursing : JOGNN / NAACOG = J Obstet Gynecol Neonatal Nurs Journal of Obstetrics and Gynaecology Canada = J. Obstet. Gynaecol. Can. Journal of Obstetrics and Gynaecology = J Obstet Gynaecol Journal of Obstetrics and Gynaecology = J. Obstet. Gynaecol. Journal of obstetrics and gynaecology = J Obstet Gynaecol (Lahore) Journal of obstetrics and gynaecology of India = J Obstet Gynaecol India Journal of Obstetrics and Gynaecology of India = J. Obstet. Gynaecol. India Journal of Obstetrics and Gynaecology of the British Commonwealth = J. Obstet. Gynaecol. Br. Commonw. Journal of Obstetrics and Gynaecology of The British Empire = J Obstet Gyn Brit Em Journal of Obstetrics and Gynaecology of The British Empire = J. Obstet. Gyn. Brit. Em. Journal of Obstetrics and Gynaecology Research = J Obstet Gynaecol Re Journal of Obstetrics and Gynaecology Research = J. Obstet. Gynaecol. Re. Journal of Obstetrics and Gynaecology Research=J Obstet Gynaecol Res;; Journal of Obstetrics and Gynaecology Research = J. Obstet. Gynaecol. Res. Journal of obstetrics and gynaecology : the journal of the Institute of Obstetrics and Gynaecology = J Obstet Gynaecol Journal of obstetrics and gynaecology (Tokyo, Japan) = J Obstet Gynaecol Journal of obstetrics & gynaecology of Eastern and Central Africa = J Obstet Gynaecol East Cent Africa Journal of Obstetrics & Gynaecology of The British Commonwealth = J Obstet Gyn Br Comm Journal of Obstetrics & Gynaecology of The British Commonwealth = J. Obstet. Gyn. Br. Comm. Journal of Occupational Accidents = J Occup Accid Journal of Occupational Accidents = J. Occup. Accid. Journal of occupational and environmental hygiene = J Occup Environ Hyg Journal of Occupational and Environmental Hygiene = J Occup Environ Hyg Journal of Occupational and Environmental Hygiene = J. Occup. Environ. Hyg. Journal of occupational and environmental medicine / American College of Occupational and Environmental Medicine = J Occup Environ Med Journal of Occupational and Environmental Medicine=J Occup Environ Med;; Journal of Occupational and Environmental Medicine = J Occup Environ Med Journal of Occupational and Environmental Medicine = J. Occup. Environ. Med. Journal of Occupational and Organizational Psychology = J Occup Organ Psych Journal of Occupational and Organizational Psychology = J. Occup. Organ. Psych. Journal of Occupational Behaviour = J Occup Behav Journal of Occupational Behaviour = J. Occup. Behav. Journal of occupational health = J Occup Health Journal of Occupational Health = J Occup Health Journal of Occupational Health = J. Occup. Health Journal of Occupational Health Psychology = J Occup Health Psych Journal of Occupational Health Psychology = J. Occup. Health Psych. Journal of occupational health psychology = J Occup Health Psychol Journal of Occupational Health Psychology = J. Occup. Health Psychol. Journal of occupational medicine and toxicology (London, England) = J Occup Med Toxicol Journal of Occupational Medicine = J. Occup. Med. Journal of Occupational Medicine = Jom-j Occup Med Journal of Occupational Medicine = Jom-j. Occup. Med. Journal of occupational medicine. : official publication of the Industrial Medical Association = J Occup Med Journal of Occupational Psychology = J Occup Psychol Journal of Occupational Psychology = J. Occup. Psychol. Journal of occupational rehabilitation = J Occup Rehabil Journal of Occupational Rehabilitation = J Occup Rehabil Journal of Occupational Rehabilitation = J. Occup. Rehabil. Journal of Oceanography = J Oceanogr Journal of Oceanography = J. Oceanogr. Journal of Ocean Technology = J Ocean Technol Journal of Ocean Technology = J. Ocean Technol. Journal of Ocean University of China (English Edition) = J. Ocean Univ. Chin. Journal of Ocular Pharmacology and Therapeutics = J Ocul Pharmacol Th Journal of Ocular Pharmacology and Therapeutics = J. Ocul. Pharmacol. Th. Journal of Ocular Pharmacology and Therapeutics=J Ocul Pharmacol Ther;; Journal of Ocular Pharmacology and Therapeutics = J. Ocul. Pharmacol. Ther. Journal of ocular pharmacology and therapeutics : the official journal of the Association for Ocular Pharmacology and Therapeutics = J Ocul Pharmacol Ther Journal of ocular pharmacology = J Ocul Pharmacol Journal of Ocular Pharmacology = J Ocul Pharmacol Journal of Ocular Pharmacology = J. Ocul. Pharmacol. Journal of official statistics = J Off Stat Journal of Official Statistics = J Off Stat Journal of Official Statistics = J. Off. Stat. Journal of Offshore Mechanics and Arctic Engineering = J. Offshore Mech. Arct. Eng. Journal of Offshore Mechanics and Arctic Engineering-transactions of The Asme = J Offshore Mech Arct Journal of Offshore Mechanics and Arctic Engineering-transactions of The Asme = J. Offshore Mech. Arct. Journal of Oil Palm Research = J Oil Palm Res Journal of Oil Palm Research = J. Oil Palm Res. Journal of oleo science = J Oleo Sci Journal of Oleo Science = J Oleo Sci Journal of Oleo Science = J. Oleo Sci. Journal of Oncology Management = J. Oncol. Manag. Journal of oncology pharmacy practice : official publication of the International Society of Oncology Pharmacy Practitioners = J Oncol Pharm Pract Journal of Operational Oceanography = J Oper Oceanogr Journal of Operational Oceanography = J. Oper. Oceanogr. Journal of Operational Risk = J Oper Risk Journal of Operational Risk = J. Oper. Risk Journal of Operations Management = J Oper Manag Journal of Operations Management = J. Oper. Manag. Journal of Operations Management = J. Oper. Manage. Journal of Operator Theory = J. Operator Theory Journal of Operator Theory = J Operat Theor Journal of Operator Theory = J. Operat. Theor. Journal of Ophthalmic Nursing and Technology = J. Ophthalmic Nurs. Technol. Journal of ophthalmic nursing & technology = J Ophthalmic Nurs Technol Journal of opioid management = J Opioid Manag Journal of Optical Communication = J. Opt. Commun. Journal of Optical Communications and Networking = J Opt Commun Netw Journal of Optical Communications and Networking = J. Opt. Commun. Netw. Journal of Optical Networking = J Opt Netw Journal of Optical Networking = J. Opt. Netw. Journal of Optical Technology = J Opt Technol+ Journal of Optical Technology = J. Opt. Technol+.+ Journal of Optics A-pure and Applied Optics = J Opt A-pure Appl Op Journal of Optics A-pure and Applied Optics = J. Opt. A-pure Appl. Op. Journal of Optics A: Pure and Applied Optics = J. Opt. A: Pure Appl. Opt. Journal of Optics B: Quantum and Semiclassical Optics = J. Opt. B: Quantum Semiclassical Opt. Journal of Optics B-quantum and Semiclassical Optics = J Opt B-quantum S O Journal of Optics B-quantum and Semiclassical Optics = J. Opt. B-quantum S. O. Journal of optics. B, Quantum and semiclassical optics : journal of the European Optical Society = J Opt B Quantum Semiclassical Opt Journal of Optics = J. Opt. Journal of Optics-nouvelle Revue D Optique = J Opt Journal of Optics-nouvelle Revue D Optique = J. Opt. Journal of Optimization Theory and Applications = J Optimiz Theory App Journal of Optimization Theory and Applications = J. Optimiz. Theory App. Journal of Optimization Theory and Applications = J. Optim. Theory Appl. Journal of Optoelectronics and Advanced Materials = J Optoelectron Adv M Journal of Optoelectronics and Advanced Materials = J. Optoelectron. Adv. M. Journal of Optoelectronics and Advanced Materials = J. Optoelectron. Adv. Mater. Journal of Oral and Maxillofacial Surgery=J Oral Maxillofac Surg;; Journal of Oral and Maxillofacial Surgery = J. Oral Maxillofac. Surg. Journal of Oral and Maxillofacial Surgery = J Oral Maxil Surg Journal of Oral and Maxillofacial Surgery = J. Oral Maxil. Surg. Journal of oral and maxillofacial surgery : official journal of the American Association of Oral and Maxillofacial Surgeons = J Oral Maxillofac Surg Journal of Oral Implant and Transplant Surgery = J. Oral Implant Transplant Surg. Journal of Oral Implantology = J Oral Implant Journal of Oral Implantology = J. Oral Implant. Journal of Oral Implantology = J Oral Implantol Journal of Oral Implantology = J. Oral Implantol. Journal of oral medicine = J Oral Med Journal of Oral Medicine = J. Oral Med. Journal of Oral Pathology and Medicine=J Oral Pathol Med;; Journal of Oral Pathology and Medicine = J. Oral Pathol. Med. Journal of oral pathology = J Oral Pathol Journal of Oral Pathology = J. Oral Pathol. Journal of Oral Pathology & Medicine = J Oral Pathol Med Journal of Oral Pathology & Medicine = J. Oral Pathol. Med. Journal of oral pathology & medicine : official publication of the International Association of Oral Pathologists and the American Academy of Oral Pathology = J Oral Pathol Med Journal of oral rehabilitation = J Oral Rehabil Journal of Oral Rehabilitation=J Oral Rehabil;; Journal of Oral Rehabilitation = J Oral Rehabil Journal of Oral Rehabilitation = J. Oral Rehabil. Journal of oral science = J Oral Sci Journal of Oral Science = J. Oral Sci. Journal of oral surgery (American Dental Association : 1965) = J Oral Surg Journal of oral surgery, anesthesia, and hospital dental service = J Oral Surg Anesth Hosp Dent Serv Journal of Oral Surgery = J Oral Surg Journal of Oral Surgery = J. Oral Surg. Journal of oral surgery = J Oral Surg (Chic) Journal of Oral Therapeutics and Pharmacology = J Oral Ther Pharmaco Journal of Oral Therapeutics and Pharmacology = J. Oral Ther. Pharmaco. Journal of oral therapeutics and pharmacology = J Oral Ther Pharmacol Journal of Oral Therapeutics and Pharmacology = J. Oral Ther. Pharmacol. Journal of Organic Chemistry = J Org Chem Journal of Organic Chemistry = J. Org. Chem. Journal of Organizational Behavior = J Organ Behav Journal of Organizational Behavior = J. Organ. Behav. Journal of Organizational Behavior Management = J Organ Behav Manage Journal of Organizational Behavior Management = J. Organ. Behav. Manage. Journal of Organizational Change Management = J Organ Change Manag Journal of Organizational Change Management = J. Organ. Change Manag. Journal of Organizational Computing and Electronic Commerce = J Org Comp Elect Com Journal of Organizational Computing and Electronic Commerce = J. Org. Comp. Elect. Com. Journal of Organometallic Chemistry = J Organomet Chem Journal of Organometallic Chemistry = J. Organomet. Chem. Journal of Orissa Mathematical Society = J. Orissa Math. Soc. Journal of Ornithology = J Ornithol Journal of Ornithology = J. Ornithol. Journal of Orofacial Orthopedics-fortschritte Der Kieferorthopadie = J Orofac Orthop Journal of Orofacial Orthopedics-fortschritte Der Kieferorthopadie = J. Orofac. Orthop. Journal of Orofacial Orthopedics = J. Orofac. Orthop. Journal of orofacial pain = J Orofac Pain Journal of Orofacial Pain = J Orofac Pain Journal of Orofacial Pain = J. Orofac. Pain Journal of orthodontics = J Orthod Journal of Orthodontics = J. Orthod. Journal of Orthomolecular Medicine = J Orthomol Med Journal of Orthomolecular Medicine = J. Orthomol. Med. Journal of Orthomolecular Psychiatry = J Orthomol Med Journal of Orthomolecular Psychiatry = J. Orthomol. Med. Journal of Orthopaedic and Sports Physical Therapy=J Orthop Sports Phys Ther;; Journal of Orthopaedic and Sports Physical Therapy = J. Orthop. Sports Phys. Ther. Journal of Orthopaedic Research = J Orthopaed Res Journal of Orthopaedic Research = J. Orthopaed. Res. Journal of Orthopaedic Research=J Orthop Res;; Journal of Orthopaedic Research = J Orthop Res Journal of Orthopaedic Research = J. Orthop. Res. Journal of orthopaedic research : official publication of the Orthopaedic Research Society = J Orthop Res Journal of Orthopaedic Rheumatology = J Orthop Rheumatol Journal of Orthopaedic Rheumatology = J. Orthop. Rheumatol. Journal of Orthopaedic Science = J Orthop Sci Journal of Orthopaedic Science = J. Orthop. Sci. Journal of orthopaedic science : official journal of the Japanese Orthopaedic Association = J Orthop Sci Journal of Orthopaedic & Sports Physical Therapy = J Orthop Sport Phys Journal of Orthopaedic & Sports Physical Therapy = J. Orthop. Sport. Phys. Journal of orthopaedic surgery and research = J Orthop Surg Journal of orthopaedic surgery (Hong Kong) = J Orthop Surg (Hong Kong) Journal of orthopaedic trauma = J Orthop Trauma Journal of Orthopaedic Trauma=J Orthop Trauma;; Journal of Orthopaedic Trauma = J Orthop Trauma Journal of Orthopaedic Trauma = J. Orthop. Trauma Journal of Osaka Dental University = J Osaka Dent Univ Journal of Osaka Dental University = J. Osaka Dent. Univ. Journal of Otolaryngology-head & Neck Surgery = J Otolaryngol-head N Journal of Otolaryngology-head & Neck Surgery = J. Otolaryngol-head. N. Journal of Otolaryngology=J Otolaryngol;; Journal of Otolaryngology = J Otolaryngol Journal of Otolaryngology = J. Otolaryngol. Journal of Otolaryngology. Supplement = J. Otolaryngol. Suppl. Journal of outcome measurement = J Outcome Meas Journal of Outcome Measurement = J. Outcome Meas. Journal of Pacific History = J Pac Hist Journal of Pacific History = J. Pac. Hist. Journal of Pacific Rim Psychology = J Pac Rim Psychol Journal of Pacific Rim Psychology = J. Pac. Rim Psychol. Journal of paediatric dentistry = J Paediatr Dent Journal of Paediatric Dentistry = J. Paediatr. Dent. Journal of Paediatrics and Child Health = J Paediatr Child H Journal of Paediatrics and Child Health = J. Paediatr. Child H. Journal of paediatrics and child health = J Paediatr Child Health Journal of Paediatrics and Child Health=J Paediatr Child Health;; Journal of Paediatrics and Child Health = J. Paediatr. Child Health Journal of Pain and Palliative Care Pharmacotherapy = J. Pain Palliat. Care Pharmacother. Journal of Pain and Symptom Management = J Pain Symptom Manag Journal of Pain and Symptom Management = J. Pain Symptom Manag. Journal of pain and symptom management = J Pain Symptom Manage Journal of Pain and Symptom Management=J Pain Symptom Manage;; Journal of Pain and Symptom Management = J. Pain Symptom Manage. Journal of Pain = J Pain Journal of Pain = J. Pain Journal of pain & palliative care pharmacotherapy = J Pain Palliat Care Pharmacother Journal of Paint Technology = J Paint Technol Journal of Paint Technology = J. Paint Technol. Journal of paleolimnology = J Paleolimnol Journal of Paleolimnology = J Paleolimnol Journal of Paleolimnology = J. Paleolimnol. Journal of paleontology = J Paleontol Journal of Paleontology = J Paleontol Journal of Paleontology = J. Paleontol. Journal of Palestine Studies = J Palestine Stud Journal of Palestine Studies = J. Palestine Stud. Journal of Palestine studies = J Palest Stud Journal of palliative care = J Palliat Care Journal of Palliative Care=J Palliat Care;; Journal of Palliative Care = J Palliat Care Journal of Palliative Care = J. Palliat. Care Journal of Palliative Care = J Palliative Care Journal of Palliative Care = J. Palliative Care Journal of palliative medicine = J Palliat Med Journal of Palliative Medicine = J Palliat Med Journal of Palliative Medicine = J. Palliat. Med. Journal of Palynology = J. Palynol. Journal of Parallel and Distributed Computing = J Parallel Distr Com Journal of Parallel and Distributed Computing = J. Parallel Distr. Com. Journal of Parallel and Distributed Computing = J. Parallel Distrib. Comput. Journal of Parapsychology = J Parapsychol Journal of Parapsychology = J. Parapsychol. Journal of Parasitology=J Parasitol;; Journal of Parasitology = J Parasitol Journal of Parasitology = J. Parasitol. Journal of Parenteral and Enteral Nutrition = Jpen-parenter Enter Journal of Parenteral and Enteral Nutrition = Jpen-parenter. Enter. Journal of parenteral science and technology : a publication of the Parenteral Drug Association = J Parenter Sci Technol Journal of Parenteral Science and Technology = J. Parenter. Sci. Technol. Journal of Parenteral Science and Technology = J Parent Sci Techn Journal of Parenteral Science and Technology = J. Parent. Sci. Techn. Journal of Partial Differential Equations = J. Partial Differential Equations Journal of pastoral care = J Pastoral Care Journal of Pastoral Care = J. Pastoral Care Journal of Pathology and Bacteriology = J Pathol Bacteriol Journal of Pathology and Bacteriology = J. Pathol. Bacteriol. Journal of Pathology=J Pathol;; Journal of Pathology = J Pathol Journal of Pathology = J. Pathol. Journal of patient account management = J Patient Acc Manage Journal of Patient Account Management = J. Patient Acc. Manage. Journal of peace research = J Peace Res Journal of Peace Research=J. Peace Res. Journal of Peace Research = J Peace Res Journal of Peace Research = J. Peace Res. Journal of Peace Science=J. Peace Sci. Journal of Peace Science = J Peace Sci Journal of Peace Science = J. Peace Sci. Journal of Peasant Studies = J Peasant Stud Journal of Peasant Studies = J. Peasant Stud. Journal of pediatric and adolescent gynecology = J Pediatr Adolesc Gynecol Journal of Pediatric and Adolescent Gynecology=J Pediatr Adolesc Gynecol;; Journal of Pediatric and Adolescent Gynecology = J. Pediatr. Adolesc. Gynecol. Journal of Pediatric and Adolescent Gynecology = J Pediatr Adol Gynec Journal of Pediatric and Adolescent Gynecology = J. Pediatr. Adol. Gynec. Journal of Pediatric and Perinatal Nutrition = J. Pediatr. Perinat. Nutr. Journal of Pediatric Endocrinology and Metabolism=J Pediatr Endocrinol Metab;; Journal of Pediatric Endocrinology and Metabolism = J. Pediatr. Endocrinol. Metab. Journal of Pediatric Endocrinology = J Pediatr Endocrinol Journal of Pediatric Endocrinology = J. Pediatr. Endocrinol. Journal of Pediatric Endocrinology & Metabolism = J Pediatr Endocr Met Journal of Pediatric Endocrinology & Metabolism = J. Pediatr. Endocr. Met. Journal of pediatric endocrinology & metabolism : JPEM = J Pediatr Endocrinol Metab Journal of Pediatric Gastroenterology and Nutrition = J Pediatr Gastr Nutr Journal of Pediatric Gastroenterology and Nutrition = J. Pediatr. Gastr. Nutr. Journal of pediatric gastroenterology and nutrition = J Pediatr Gastroenterol Nutr Journal of Pediatric Gastroenterology and Nutrition=J Pediatr Gastroenterol Nutr;; Journal of Pediatric Gastroenterology and Nutrition = J. Pediatr. Gastroenterol. Nutr. Journal of Pediatric Health Care = J Pediatr Health Car Journal of Pediatric Health Care = J. Pediatr. Health Car. Journal of Pediatric Health Care = J. Pediatr. Health Care Journal of pediatric health care : official publication of National Association of Pediatric Nurse Associates & Practitioners = J Pediatr Health Care Journal of Pediatric Hematology Oncology = J Pediat Hematol Onc Journal of Pediatric Hematology Oncology = J. Pediat. Hematol. Onc. Journal of Pediatric Hematology/Oncology=J Pediatr Hematol Oncol;; Journal of Pediatric Hematology/Oncology = J. Pediatr. Hematol. Oncol. Journal of pediatric hematology/oncology : official journal of the American Society of Pediatric Hematology/Oncology = J Pediatr Hematol Oncol Journal of pediatric nursing = J Pediatr Nurs Journal of Pediatric Nursing=J Pediatr Nurs;; Journal of Pediatric Nursing = J. Pediatr. Nurs. Journal of Pediatric Oncology Nursing=J Pediatr Oncol Nurs;; Journal of Pediatric Oncology Nursing = J Pediatr Oncol Nurs Journal of Pediatric Oncology Nursing = J. Pediatr. Oncol. Nurs. Journal of pediatric oncology nursing : official journal of the Association of Pediatric Oncology Nurses = J Pediatr Oncol Nurs Journal of pediatric ophthalmology and strabismus = J Pediatr Ophthalmol Strabismus Journal of Pediatric Ophthalmology and Strabismus=J Pediatr Ophthalmol Strabismus;; Journal of Pediatric Ophthalmology and Strabismus = J. Pediatr. Ophthalmol. Strabismus Journal of pediatric ophthalmology = J Pediatr Ophthalmol Journal of Pediatric Ophthalmology = J Pediatr Ophthalmol Journal of Pediatric Ophthalmology = J. Pediatr. Ophthalmol. Journal of Pediatric Ophthalmology & Strabismus = J Pediat Ophth Strab Journal of Pediatric Ophthalmology & Strabismus = J. Pediat. Ophth. Strab. Journal of Pediatric Ophthalmology & Strabismus = J Pediatr Ophthalmol Journal of Pediatric Ophthalmology & Strabismus = J. Pediatr. Ophthalmol. Journal of Pediatric Orthopaedics = J Pediatr Orthoped Journal of Pediatric Orthopaedics = J. Pediatr. Orthoped. Journal of pediatric orthopaedics. Part B / European Paediatric Orthopaedic Society, Pediatric Orthopaedic Society of North America = J Pediatr Orthop B Journal of Pediatric Orthopaedics-part B = J Pediatr Orthop B Journal of Pediatric Orthopaedics-part B = J. Pediatr. Orthop. B Journal of Pediatric Orthopaedics. Part B=J Pediatr Orthop B;; Journal of Pediatric Orthopaedics. Part B = J. Pediatr. Orthop. B Journal of pediatric orthopedics = J Pediatr Orthop Journal of Pediatric Orthopedics=J Pediatr Orthop;; Journal of Pediatric Orthopedics = J. Pediatr. Orthop. Journal of pediatric & perinatal nutrition = J Pediatr Perinat Nutr Journal of pediatric psychology = J Pediatr Psychol Journal of Pediatric Psychology=J Pediatr Psychol;; Journal of Pediatric Psychology = J Pediatr Psychol Journal of Pediatric Psychology = J. Pediatr. Psychol. Journal of Pediatrics=J Pediatr;; Journal of Pediatrics = J Pediatr Journal of Pediatrics = J. Pediatr. Journal of Pediatrics = J Pediatr-us Journal of Pediatrics = J. Pediatr-us. Journal of pediatric surgery = J Pediatr Surg Journal of Pediatric Surgery=J Pediatr Surg;; Journal of Pediatric Surgery = J Pediatr Surg Journal of Pediatric Surgery = J. Pediatr. Surg. Journal of pediatric urology = J Pediatr Urol Journal of Pedodontics = J. Pedod. Journal of Pension Economics & Finance = J Pension Econ Finan Journal of Pension Economics & Finance = J. Pension Econ. Finan. Journal of Peptide Research=J Pept Res;; Journal of Peptide Research = J Pept Res Journal of Peptide Research = J. Pept. Res. Journal of peptide science : an official publication of the European Peptide Society = J Pept Sci Journal of Peptide Science=J Pept Sci;; Journal of Peptide Science = J Pept Sci Journal of Peptide Science = J. Pept. Sci. Journal of Performance of Constructed Facilities = J Perform Constr Fac Journal of Performance of Constructed Facilities = J. Perform. Constr. Fac. Journal of Performance of Constructed Facilities = J. Perform. Constr. Facil Journal of Perianesthesia Nursing = J. Perianesth. Nurs. Journal of perianesthesia nursing : official journal of the American Society of PeriAnesthesia Nurses / American Society of PeriAnesthesia Nurses = J Perianesth Nurs Journal of Perinatal and Neonatal Nursing = J. Perinat. Neonatal Nurs. Journal of perinatal medicine = J Perinat Med Journal of Perinatal Medicine=J Perinat Med;; Journal of Perinatal Medicine = J Perinat Med Journal of Perinatal Medicine = J. Perinat. Med. Journal of Perinatal & Neonatal Nursing = J Perinat Neonat Nur Journal of Perinatal & Neonatal Nursing = J. Perinat. Neonat. Nur. Journal of Perinatology=J Perinatol;; Journal of Perinatology = J Perinatol Journal of Perinatology = J. Perinatol. Journal of perinatology : official journal of the California Perinatal Association = J Perinatol Journal of periodontal research = J Periodontal Res Journal of Periodontal Research=J Periodontal Res;; Journal of Periodontal Research = J Periodontal Res Journal of Periodontal Research = J. Periodontal Res. Journal of periodontal research. Supplement = J Periodontal Res Suppl Journal of Periodontal Research. Supplement = J. Periodontal Res. Suppl. Journal of periodontology = J Periodontol Journal of Periodontology=J Periodontol;; Journal of Periodontology = J Periodontol Journal of Periodontology = J. Periodontol. Journal of perioperative practice = J Perioper Pract Journal of Personal & Interpersonal Loss = J Pers Interpers Los Journal of Personal & Interpersonal Loss = J. Pers. Interpers. Los. Journal of personality and social psychology = J Pers Soc Psychol Journal of Personality and Social Psychology=J Pers Soc Psychol;; Journal of Personality and Social Psychology = J Pers Soc Psychol Journal of Personality and Social Psychology = J. Pers. Soc. Psychol. Journal of personality assessment = J Pers Assess Journal of Personality Assessment=J Pers Assess;; Journal of Personality Assessment = J Pers Assess Journal of Personality Assessment = J. Pers. Assess. Journal of Personality Disorders = J Pers Disord Journal of Personality Disorders = J. Pers. Disord. Journal of personality disorders = J Personal Disord Journal of Personality Disorders=J Personal Disord;; Journal of Personality Disorders = J. Personal. Disord. Journal of personality = J Pers Journal of Personality=J Pers;; Journal of Personality = J Pers Journal of Personality = J. Pers. Journal of Personnel Evaluation in Education = J Pers Eval Educ Journal of Personnel Evaluation in Education = J. Pers. Eval. Educ. Journal of Pesticide Science = J Pestic Sci Journal of Pesticide Science = J. Pestic. Sci. Journal of Pest Science = J Pest Sci Journal of Pest Science = J. Pest Sci. Journal of Petroleum Geology = J. Pet. Geol Journal of Petroleum Geology = J Petrol Geol Journal of Petroleum Geology = J. Petrol. Geol. Journal of Petroleum Science and Engineering = J Petrol Sci Eng Journal of Petroleum Science and Engineering = J. Petrol. Sci. Eng. Journal of Petroleum Science and Technology = J. Pet. Sci. Technol. Journal of Petroleum Science & Engineering = J. Pet. Sci. Eng. Journal of Petroleum Technology = J Petrol Technol Journal of Petroleum Technology = J. Petrol. Technol. Journal of Petrology = J Petrol Journal of Petrology = J. Petrol. Journal of Pharmaceutical and Biomedical Analysis = J Pharmaceut Biomed Journal of Pharmaceutical and Biomedical Analysis = J. Pharmaceut. Biomed. Journal of pharmaceutical and biomedical analysis = J Pharm Biomed Anal Journal of Pharmaceutical and Biomedical Analysis=J Pharm Biomed Anal;; Journal of Pharmaceutical and Biomedical Analysis = J. Pharm. Biomed. Anal. Journal of Pharmaceutical Marketing and Management = J. Pharm. Mark. Manage. Journal of pharmaceutical marketing & management = J Pharm Mark Manage Journal of Pharmaceutical Science and Technology = J. Pharm. Sci. Technol. Journal of pharmaceutical science and technology : the official journal of PDA = J Pharm Sci Technol Journal of pharmaceutical sciences = J Pharm Sci Journal of Pharmaceutical Sciences=J Pharm Sci;; Journal of Pharmaceutical Sciences = J Pharm Sci Journal of Pharmaceutical Sciences = J. Pharm. Sci. Journal of Pharmaceutical Sciences = J Pharm Sci-us Journal of Pharmaceutical Sciences = J. Pharm. Sci-us. Journal of pharmacobio-dynamics = J Pharmacobiodyn Journal of Pharmacobio-Dynamics = J. Pharmacobiodyn. Journal of Pharmacobio-Dynamics = J. Pharmacobio-Dyn. Journal of Pharmacobio-dynamics = J Pharmacobio-dynam Journal of Pharmacobio-dynamics = J. Pharmacobio-dynam. Journal of Pharmacokinetics and Biopharmaceutics = J Pharmacokinet Biop Journal of Pharmacokinetics and Biopharmaceutics = J. Pharmacokinet. Biop. Journal of pharmacokinetics and biopharmaceutics = J Pharmacokinet Biopharm Journal of Pharmacokinetics and Biopharmaceutics=J Pharmacokinet Biopharm;; Journal of Pharmacokinetics and Biopharmaceutics = J. Pharmacokinet. Biopharm. Journal of Pharmacokinetics and Pharmacodynamics = J Pharmacokinet Phar Journal of Pharmacokinetics and Pharmacodynamics = J. Pharmacokinet. Phar. Journal of pharmacokinetics and pharmacodynamics = J Pharmacokinet Pharmacodyn Journal of Pharmacokinetics and Pharmacodynamics = J. Pharmacokinet. Pharmacodyn. Journal of Pharmacological and Toxicological Methods = J Pharmacol Toxicol Journal of Pharmacological and Toxicological Methods = J. Pharmacol. Toxicol. Journal of pharmacological and toxicological methods = J Pharmacol Toxicol Methods Journal of Pharmacological and Toxicological Methods=J Pharmacol Toxicol Methods;; Journal of Pharmacological and Toxicological Methods = J. Pharmacol. Toxicol. Methods Journal of Pharmacological Methods = J Pharmacol Method Journal of Pharmacological Methods = J. Pharmacol. Method. Journal of pharmacological methods = J Pharmacol Methods Journal of Pharmacological Methods = J. Pharmacol. Methods Journal of pharmacological sciences = J Pharmacol Sci Journal of Pharmacological Sciences = J Pharmacol Sci Journal of Pharmacological Sciences = J. Pharmacol. Sci. Journal of Pharmacological Sciences (Tokyo, Japan) = J. Pharmacol. Sci. (Tokyo, Jpn.) Journal of Pharmacology and Experimental Therapeutics=J Pharmacol Exp Ther;; Journal of Pharmacology and Experimental Therapeutics = J Pharmacol Exp Ther Journal of Pharmacology and Experimental Therapeutics = J. Pharmacol. Exp. Ther. Journal of pharmacotherapy = J Pharmacother Journal of Pharmacy and Chemistry = J. Pharm. Chem. Journal of Pharmacy and Pharmaceutical Sciences = J Pharm Pharm Sci Journal of Pharmacy and Pharmaceutical Sciences = J. Pharm. Pharm. Sci. Journal of Pharmacy and Pharmacology=J Pharm Pharmacol;; Journal of Pharmacy and Pharmacology = J Pharm Pharmacol Journal of Pharmacy and Pharmacology = J. Pharm. Pharmacol. Journal of pharmacy & pharmaceutical sciences : a publication of the Canadian Society for Pharmaceutical Sciences, Societe canadienne des sciences pharmaceutiques = J Pharm Pharm Sci Journal of Pharmacy Technology = J. Pharm. Technol. Journal of Phase Equilibria and Diffusion = J Phase Equilib Diff Journal of Phase Equilibria and Diffusion = J. Phase Equilib. Diff. Journal of Phase Equilibria and Diffusion = J. Phase Equilib. Diffus. Journal of Phase Equilibria = J Phase Equilib Journal of Phase Equilibria = J. Phase Equilib. Journal of Phase Equilibrium and Diffusion = J. Phase Equilib. Diffus. Journal of Phase Equilibrium = J. Phase Equilib. Journal of Phenomenological Psychology = J Phenomenol Psychol Journal of Phenomenological Psychology = J. Phenomenol. Psychol. Journal of Philippine development : a technical journal of the National Economic and Development Authority = J Philipp Dev Journal of Philippine statistics = J Philipp Stat Journal of Philology = JPhil Journal of Philosophical Logic = J. Philos. Logic Journal of Philosophical Logic = J Philos Logic Journal of Philosophical Logic = J. Philos. Logic Journal of Philosophical Research = J Philos Res Journal of Philosophical Research = J. Philos. Res. Journal of Philosophy = JPh Journal of Philosophy = J Philos Journal of Philosophy = J. Philos. Journal of Philosophy of Education = J Philos Educ Journal of Philosophy of Education = J. Philos. Educ. Journal of Philosophy, Science and Law = J. Philos. Sci. Law Journal of Phonetics = J Phonetics Journal of Phonetics = J. Phonetics Journal of Photochemical Etching = J Photochem Etching Journal of Photochemical Etching = J. Photochem. Etching Journal of Photochemistry and Photobiology A: Chemistry = J. Photochem. Photobiol., A Journal of Photochemistry and Photobiology, A: Chemistry = J. Photochem. Photobiol., A Journal of Photochemistry and Photobiology A-chemistry = J Photoch Photobio A Journal of Photochemistry and Photobiology A-chemistry = J. Photoch. Photobio. A. Journal of photochemistry and photobiology. B, Biology = J Photochem Photobiol B Journal of Photochemistry and Photobiology B: Biology = J. Photochem. Photobiol., B Journal of Photochemistry and Photobiology, B: Biology = J. Photochem. Photobiol., B Journal of Photochemistry and Photobiology. B, Biology=J Photochem Photobiol B;; Journal of Photochemistry and Photobiology. B, Biology = J. Photochem. Photobiol. B Journal of Photochemistry and Photobiology B-biology = J Photoch Photobio B Journal of Photochemistry and Photobiology B-biology = J. Photoch. Photobio. B. Journal of Photochemistry and Photobiology C: Photochemistry Reviews = J. Photochem. Photobiol., C Journal of Photochemistry and Photobiology, C: Photochemistry Reviews = J. Photochem. Photobiol., C Journal of Photochemistry and Photobiology C-photochemistry Reviews = J Photoch Photobio C Journal of Photochemistry and Photobiology C-photochemistry Reviews = J. Photoch. Photobio. C. Journal of Photochemistry = J Photochem Journal of Photochemistry = J. Photochem. Journal of Photogrammetry and Remote Sensing = J. Photogramm. Remote Sens. Journal of Photographic Science = J Photogr Sci Journal of Photographic Science = J. Photogr. Sci. Journal of Photopolymer Science and Technology = J Photopolym Sci Tec Journal of Photopolymer Science and Technology = J. Photopolym. Sci. Tec. Journal of Photopolymer Science and Technology = J. Photopolym. Sci. Technol. Journal of phycology = J Phycol Journal of Phycology = J Phycol Journal of Phycology = J. Phycol. Journal of physical activity & health = J Phys Act Health Journal of Physical and Chemical Reference Data = J Phys Chem Ref Data Journal of Physical and Chemical Reference Data = J. Phys. Chem. Ref. Data Journal of Physical and Colloid Chemistry = J Phys Colloid Chem Journal of Physical and Colloid Chemistry = J. Phys. Colloid Chem. Journal of Physical Chemistry A = J Phys Chem A Journal of Physical Chemistry A = J. Phys. Chem. A Journal of Physical Chemistry B = J Phys Chem B Journal of Physical Chemistry B = J. Phys. Chem. B Journal of Physical Chemistry C = J Phys Chem C Journal of Physical Chemistry C = J. Phys. Chem. C Journal of Physical Chemistry = J. Phys. Chem. Journal of Physical Chemistry = J Phys Chem-us Journal of Physical Chemistry = J. Phys. Chem-us. Journal of Physical Chemistry Letters = J. Phys. Chem. Lett. Journal of Physical Oceanography = J Phys Oceanogr Journal of Physical Oceanography = J. Phys. Oceanogr. Journal of Physical Organic Chemistry = J Phys Org Chem Journal of Physical Organic Chemistry = J. Phys. Org. Chem. Journal of Physical Therapy Science = J Phys Ther Sci Journal of Physical Therapy Science = J. Phys. Ther. Sci. Journal of Physics A: General Physics = J. Phys. A: Gen. Phys. Journal of physics A: Mathematical and general = J Phys A Math Gen Journal of Physics A-mathematical and General = J Phys A-math Gen Journal of Physics A-mathematical and General = J. Phys. A-math. Gen. Journal of Physics A: Mathematical and General = J. Phys. A: Math. Gen. Journal of Physics A-mathematical and Theoretical = J Phys A-math Theor Journal of Physics A-mathematical and Theoretical = J. Phys. A-math. Theor. Journal of Physics A: Mathematical and Theoretical = J. Phys. A: Math. Theor. Journal of Physics A: Mathematical, Nuclear and General = J. Phys. A: Math. Nucl. Gen. Journal of Physics and Chemistry of Solids = J Phys Chem Solids Journal of Physics and Chemistry of Solids = J. Phys. Chem. Solids Journal of Physics B: Atomic and Molecular Physics = J. Phys. B: At. Mol. Phys. Journal of physics. B, Atomic, molecular, and optical physics : an Institute of Physics journal = J Phys B At Mol Opt Phys Journal of Physics B-atomic Molecular and Optical Physics = J Phys B-at Mol Opt Journal of Physics B-atomic Molecular and Optical Physics = J. Phys. B-at. Mol. Opt. Journal of Physics B: Atomic, Molecular and Optical Physics = J. Phys. B: At. Mol. Opt. Phys. Journal of Physics B: Atomic, Molecular and Optical Physics = J. Phys. B: At., Mol. Opt. Phys. Journal of physics. Condensed matter : an Institute of Physics journal = J Phys Condens Matter Journal of Physics-condensed Matter = J Phys-condens Mat Journal of Physics-condensed Matter = J. Phys-condens. Mat. Journal of Physics: Condensed Matter = J. Phys. Condens. Matter Journal of Physics: Condensed Matter = J. Phys.: Condens. Matter Journal of Physics Conference Series = J Phys Conf Ser Journal of Physics Conference Series = J. Phys. Conf. Ser. Journal of Physics: Conference Series = J. Phys: Conf. Ser. Journal of Physics: Conference Series = J. Phys. Conf. Ser. Journal of Physics C-solid State Physics = J Phys C Solid State Journal of Physics C-solid State Physics = J. Phys. C. Solid. State Journal of Physics C: Solid State Physics = J. Phys. C: Solid State Phys. Journal of physics D: Applied physics = J Phys D Appl Phys Journal of Physics D-applied Physics = J Phys D Appl Phys Journal of Physics D-applied Physics = J. Phys. D. Appl. Phys. Journal of Physics D: Applied Physics = J. Phys. D: Appl. Phys. Journal of physics E: Scientific instruments = J Phys [E] Journal of Physics. E, Scientific Instruments = J. Phys. [E] Journal of Physics E-scientific Instruments = J Phys E Sci Instrum Journal of Physics E-scientific Instruments = J. Phys. E. Sci. Instrum. Journal of Physics E: Scientific Instruments = J. Phys. E: Sci. Instrum. Journal of Physics F-metal Physics = J Phys F Met Phys Journal of Physics F-metal Physics = J. Phys. F. Met. Phys. Journal of Physics F: Metal Physics = J. Phys, F: Met. Phys. Journal of Physics F: Metal Physics = J. Phys. F: Met. Phys. Journal of physics. G, Nuclear and particle physics : an Institute of Physics journal = J Phys G Nucl Part Phys Journal of Physics G-nuclear and Particle Physics = J Phys G Nucl Partic Journal of Physics G-nuclear and Particle Physics = J. Phys. G. Nucl. Partic. Journal of Physics G: Nuclear and Particle Physics = J. Phys. G: Nucl. Part. Phys. Journal of Physics G: Nuclear Physics = J. Phys. G: Nucl. Phys. Journal of physics = J Phys Journal of Physics = J. Phys. Journal of Physics = J. Phys. A Journal of Physics of The Earth = J Phys Earth Journal of Physics of The Earth = J. Phys. Earth Journal of Physics Part A General = J Phys Pt A Gen Journal of Physics Part A General = J. Phys. Pt. A Gen. Journal of Physics Part B Atomic and Molecular Physics = J Phys Pt B Atom M P Journal of Physics Part B Atomic and Molecular Physics = J. Phys. Pt. B Atom. M. P. Journal of Physics Part C Solid State Physics = J Phys Part C Solid Journal of Physics Part C Solid State Physics = J. Phys. Part C Solid Journal of physiological anthropology and applied human science = J Physiol Anthropol Appl Human Sci Journal of Physiological Anthropology and Applied Human Science = J. Physiol. Anthropol. Appl. Human Sci. Journal of physiological anthropology = J Physiol Anthropol Journal of Physiological Anthropology = J. Physiol. Anthropol. Journal of Physiological Sciences = J Physiol Sci Journal of Physiological Sciences = J. Physiol. Sci. Journal of physiology and biochemistry = J Physiol Biochem Journal of Physiology and Biochemistry = J Physiol Biochem Journal of Physiology and Biochemistry = J. Physiol. Biochem. Journal of physiology and pharmacology : an official journal of the Polish Physiological Society = J Physiol Pharmacol Journal of Physiology and Pharmacology=J Physiol Pharmacol;; Journal of Physiology and Pharmacology = J Physiol Pharmacol Journal of Physiology and Pharmacology = J. Physiol. Pharmacol. Journal of Physiology=J Physiol (Lond);; Journal of Physiology = J. Physiol. (Lond.) Journal of Physiology-london = J Physiol-london Journal of Physiology-london = J. Physiol-london. Journal of Physiology (Oxford, United Kingdom) = J. Physiol. (Oxford, U. K.) Journal of Physiology-paris = J Physiology-paris Journal of Physiology-paris = J. Physiology-paris Journal of physiology, Paris = J Physiol Paris Journal of Physiology, Paris=J Physiol Paris;; Journal of Physiology, Paris = J. Physiol. Paris Journal of Phytopathology = J Phytopathol Journal of Phytopathology = J. Phytopathol. Journal of Phytopathology-phytopathologische Zeitschrift = J Phytopathol Journal of Phytopathology-phytopathologische Zeitschrift = J. Phytopathol. Journal of Pidgin and Creole Languages = J Pidgin Creole Lang Journal of Pidgin and Creole Languages = J. Pidgin Creole Lang. Journal of Pierre Fauchard Academy = J. Pierre Fauchard Acad. Journal of Pierre Fauchard Academy (Pierre Fauchard Academy. India Section) = J Pierre Fauchard Acad Journal of pineal research = J Pineal Res Journal of Pineal Research=J Pineal Res;; Journal of Pineal Research = J Pineal Res Journal of Pineal Research = J. Pineal Res. Journal of Pipelines = J Pipeline Journal of Pipelines = J. Pipeline. Journal of Pipeline Systems Engineering and Practice = J. Pipeline Syst. Eng. Pract. Journal of Planar Chromatography - Modern TLC = J. Planar. Chromatogr. - Mod. TLC Journal of Planar Chromatography--Modern TLC = J. Planar Chromatogr.--Mod. TLC Journal of plankton research = J Plankton Res Journal of Plankton Research = J Plankton Res Journal of Plankton Research = J. Plankton Res. Journal of Planning Education and Research = J Plan Educ Res Journal of Planning Education and Research = J. Plan. Educ. Res. Journal of Planning Literature = J Plan Lit Journal of Planning Literature = J. Plan. Lit. Journal of Plantation Crops = J Plantation Crops Journal of Plantation Crops = J. Plantation Crops Journal of Plant Biochemistry and Biotechnology = J Plant Biochem Biot Journal of Plant Biochemistry and Biotechnology = J. Plant Biochem. Biot. Journal of Plant Biochemistry and Biotechnology = J. Plant Biochem. Biotechnol. Journal of Plant Biology = J Plant Biol Journal of Plant Biology = J. Plant Biol. Journal of Plant Diseases and Protection = J Plant Dis Protect Journal of Plant Diseases and Protection = J. Plant Dis. Protect. Journal of Plant Ecology-uk = J Plant Ecol-uk Journal of Plant Ecology-uk = J. Plant Ecol-uk. Journal of plant growth regulation = J Plant Growth Regul Journal of Plant Growth Regulation = J Plant Growth Regul Journal of Plant Growth Regulation = J. Plant Growth Regul. Journal of Plant Interactions = J. Plant Interact. Journal of Plant Nutrition and Soil Science = J. Plant Nutr. Soil Sci. Journal of Plant Nutrition and Soil Science-zeitschrift Fur Pflanzenernahrung Und Bodenkunde = J Plant Nutr Soil Sc Journal of Plant Nutrition and Soil Science-zeitschrift Fur Pflanzenernahrung Und Bodenkunde = J. Plant Nutr. Soil Sc. Journal of plant nutrition = J Plant Nutr Journal of Plant Nutrition = J Plant Nutr Journal of Plant Nutrition = J. Plant Nutr. Journal of Plant Pathology = J Plant Pathol Journal of Plant Pathology = J. Plant Pathol. Journal of plant physiology = J Plant Physiol Journal of Plant Physiology = J Plant Physiol Journal of Plant Physiology = J. Plant Physiol. Journal of Plant Registrations = J Plant Regist Journal of Plant Registrations = J. Plant Regist. Journal of plant research = J Plant Res Journal of Plant Research = J Plant Res Journal of Plant Research = J. Plant Res. Journal of Plasma Physics = J Plasma Phys Journal of Plasma Physics = J. Plasma Phys. Journal of Plastic and Reconstructive Surgical Nursing = J. Plast. Reconstr. Surg. Nurs. Journal of Plastic Film & Sheeting = J Plast Film Sheet Journal of Plastic Film & Sheeting = J. Plast. Film Sheet. Journal of Plastic Film & Sheeting = J. Plast. Film Sheeting Journal of plastic, reconstructive & aesthetic surgery : JPRAS = J Plast Reconstr Aesthet Surg Journal of Plastic Reconstructive and Aesthetic Surgery = J Plast Reconstr Aes Journal of Plastic Reconstructive and Aesthetic Surgery = J. Plast. Reconstr. Aes. Journal of Plastic, Reconstructive and Aesthetic Surgery = J. Plast. Reconstr. Aesthet. Surg. Journal of Police Science and Administration = J Police Sci Admin Journal of Police Science and Administration = J. Police Sci. Admin. Journal of Policy Analysis and Management=J. Pol. Anal. Manage. Journal of Policy Analysis and Management = J Policy Anal Manag Journal of Policy Analysis and Management = J. Policy Anal. Manag. Journal of Policy Analysis and Management = J. Policy Anal. Manage. Journal of policy analysis and management : [the journal of the Association for Public Policy Analysis and Management] = J Policy Anal Manage Journal of policy history : JPH = J Policy Hist Journal of Policy Modeling = J Policy Model Journal of Policy Modeling = J. Policy Model. Journal of Policy Modeling=J. Pol. Modeling Journal of Policy Reform = J Policy Reform Journal of Policy Reform = J. Policy Reform Journal of Policy Reform=J. Pol. Reform Journal of Politeness Research-language Behaviour Culture = J Politeness Res-lan Journal of Politeness Research-language Behaviour Culture = J. Politeness Res-lan. Journal of Political Economy = J Polit Econ Journal of Political Economy = J. Polit. Econ. Journal of Political Economy=J. Polit. Economy Journal Of Political & Military Sociology = J. Polit. Mil. Soc. Journal of Political & Military Sociology = J Polit Mil Sociol Journal of Political & Military Sociology = J. Polit. Mil. Sociol. Journal of Political Philosophy = J Polit Philos Journal of Political Philosophy = J. Polit. Philos. Journal of political science = J Polit Sci Journal of Politics = J Polit Journal of Politics = J. Polit. Journal of Polymer Engineering = J Polym Eng Journal of Polymer Engineering = J. Polym. Eng. Journal of Polymer Materials = J Polym Mater Journal of Polymer Materials = J. Polym. Mater. Journal of Polymer Research = J Polym Res Journal of Polymer Research = J. Polym. Res. Journal of Polymer Research-taiwan = J Polym Res-taiwan Journal of Polymer Research-taiwan = J. Polym. Res-taiwan. Journal of Polymers and the Environment = J. Polym. Environ. Journal of Polymers and The Environment = J Polym Environ Journal of Polymers and The Environment = J. Polym. Environ. Journal of Polymer Science = J Polym Sci Journal of Polymer Science = J. Polym. Sci. Journal of polymer science. Part A-1, Polymer chemistry = J Polym Sci [A1] Journal of Polymer Science Part A-1-polymer Chemistry = J Polym Sci A1 Journal of Polymer Science Part A-1-polymer Chemistry = J. Polym. Sci. A1. Journal of Polymer Science. Part A-1, Polymer Chemistry = J. Polym. Sci. [A1] Journal of Polymer Science Part A-2-polymer Physics = J Polym Sci A2 Journal of Polymer Science Part A-2-polymer Physics = J. Polym. Sci. A2. Journal of polymer science: Part A, General papers = J Polym Sci A Journal of Polymer Science. Part A, General Papers = J. Polym. Sci. A Journal of Polymer Science Part A-general Papers = J Polym Sci Part A Journal of Polymer Science Part A-general Papers = J. Polym. Sci. Part A. Journal of Polymer Science Part A: Polymer Chemistry = J. Polym. Sci., Part A: Polym. Chem. Journal of Polymer Science, Part A: Polymer Chemistry = J. Polym. Sci., Part A: Polym. Chem. Journal of Polymer Science Part A-polymer Chemistry = J Polym Sci Pol Chem Journal of Polymer Science Part A-polymer Chemistry = J. Polym. Sci. Pol. Chem. Journal of polymer science. Part B: Polymer letters = J Polym Sci [B] Journal of Polymer Science. Part B, Polymer Letters = J. Polym. Sci. [B] Journal of Polymer Science Part B-polymer Letters = J Polym Sci Pol Lett Journal of Polymer Science Part B-polymer Letters = J. Polym. Sci. Pol. Lett. Journal of Polymer Science Part B: Polymer Physics = J. Polym. Sci., Part B: Polym. Phys. Journal of Polymer Science, Part B: Polymer Physics = J. Polym. Sci., Part B: Polym. Phys. Journal of Polymer Science Part B-polymer Physics = J Polym Sci Pol Phys Journal of Polymer Science Part B-polymer Physics = J. Polym. Sci. Pol. Phys. Journal of Polymer Science Part C: Polymer Letters = J. Polym. Sci., Part C: Polym. Lett. Journal of Polymer Science Part C-polymer Letters = J Polym Sci Pol Lett Journal of Polymer Science Part C-polymer Letters = J. Polym. Sci. Pol. Lett. Journal of Polymer Science Part C-polymer Symposium = J Polym Sci Pol Sym Journal of Polymer Science Part C-polymer Symposium = J. Polym. Sci. Pol. Sym. Journal of Polymer Science-polymer Symposia = J Polym Sci Pol Sym Journal of Polymer Science-polymer Symposia = J. Polym. Sci. Pol. Sym. Journal of Polymer Science Polymer Symposium = J. Polym. Sci. Polym. Symp. Journal of popular culture = J Pop Cult Journal of Popular Culture = J Pop Cult Journal of Popular Culture = J. Pop. Cult. Journal of Popular Film and Television = J Pop Film Tv Journal of Popular Film and Television = J. Pop. Film Tv. Journal of Popular Film = J Pop Film Journal of Popular Film = J. Pop. Film Journal of Popular Music Studies = J Pop Music Stud Journal of Popular Music Studies = J. Pop. Music Stud. Journal of Population Economics=J. Population Econ. Journal of population economics = J Popul Econ Journal of Population Economics = J Popul Econ Journal of Population Economics = J. Popul. Econ. Journal of population = J Popul Journal of Population = J Populat Journal of Population = J. Populat. Journal of population research = J Popul Res Journal of Porous Materials = J Porous Mat Journal of Porous Materials = J. Porous Mat. Journal of Porous Materials = J. Porous Mater. Journal of Porous Media = J Porous Media Journal of Porous Media = J. Porous Media Journal of Porphyrins and Phthalocyanines = J. Porphyrins Phthalocyanines Journal of Porphyrins and Phthalocyanines = J Porphyr Phthalocya Journal of Porphyrins and Phthalocyanines = J. Porphyr. Phthalocya. Journal of Portfolio Management = J Portfolio Manage Journal of Portfolio Management = J. Portfolio Manage. Journal of Portfolio Management=J. Portfol. Manage. Journal of Positive Behavior Interventions = J Posit Behav Interv Journal of Positive Behavior Interventions = J. Posit. Behav. Interv. Journal of post anesthesia nursing = J Post Anesth Nurs Journal of Post Anesthesia Nursing = J. Post Anesth. Nurs. Journal of postgraduate medicine = J Postgrad Med Journal of Postgraduate Medicine=J Postgrad Med;; Journal of Postgraduate Medicine = J Postgrad Med Journal of Postgraduate Medicine = J. Postgrad. Med. Journal of post Keynesian economics = J Post Keynes Econ Journal of Post Keynesian Economics = J Post Keynesian Ec Journal of Post Keynesian Economics = J. Post Keynesian Ec. Journal of Post Keynesian Economics=J. Post Keynesian Econ. Journal of Poultry Science = J Poult Sci Journal of Poultry Science = J. Poult. Sci. Journal of poverty = J Poverty Journal of Power Electronics = J Power Electron Journal of Power Electronics = J. Power Electron. Journal of Power Sources = J Power Sources Journal of Power Sources = J. Power Sources Journal of Practical Nursing = J. Pract. Nurs. Journal of Pragmatics = J Pragmatics Journal of Pragmatics = J. Pragmatics Journal of prehistoric religion = JPR Journal of Prehistoric Religion = JPrehistRel Journal of Pre-raphaelite and Aesthetic Studies = J Pre-raphaelite Aes Journal of Pre-raphaelite and Aesthetic Studies = J. Pre-raphaelite Aes. Journal of Pre-raphaelite Studies-new Series = J Pre-raphaelite St Journal of Pre-raphaelite Studies-new Series = J. Pre-raphaelite St. Journal of Presbyterian History = J Presbyterian Hist Journal of Presbyterian History = J. Presbyterian Hist. Journal of Presbyterian history = J Presbyt Hist Journal of Pressure Vessel Technology = J. Pressure Vessel Technol. Journal of Pressure Vessel Technology-transactions of The Asme = J Press Vess-t Asme Journal of Pressure Vessel Technology-transactions of The Asme = J. Press. Vess-t. Asme Journal of prevention & intervention in the community = J Prev Interv Community Journal of preventive and social medicine : JOPSOM : a bi-annual journal of the National Institute of Preventive and Social Medicine = J Prev Soc Med Journal of Preventive Dentistry = J Prev Dent Journal of Preventive Dentistry = J. Prev. Dent. Journal of preventive medicine and hygiene = J Prev Med Hyg Journal of Preventive Medicine and Public Health = J. Prev. Med. Pub. Health Journal of preventive psychiatry = J Prev Psychiatry Journal of prison health = J Prison Health Journal of prison & jail health = J Prison Jail Health Journal of Private Enterprise=J. Private Enterprise Journal of Process Control = J Process Contr Journal of Process Control = J. Process Contr. Journal of Process Control = J. Process Control Journal of Product Innovation Management = J Prod Innovat Manag Journal of Product Innovation Management = J. Prod. Innovat. Manag. Journal of Production Agriculture = J Prod Agric Journal of Production Agriculture = J. Prod. Agric. Journal of Productivity Analysis = J Prod Anal Journal of Productivity Analysis = J. Prod. Anal. Journal of Productivity Analysis=J. Productiv. Anal. Journal of products liability = J Prod Liability Journal of Products Liability = J Prod Liability Journal of Products Liability = J. Prod. Liability Journal of Professional Issues in Engineering-asce = J Prof Iss Eng-asce Journal of Professional Issues in Engineering-asce = J. Prof. Iss. Eng-asce. Journal of Professional Issues in Engineering Education and Practice = J Prof Iss Eng Ed Pr Journal of Professional Issues in Engineering Education and Practice = J. Prof. Iss. Eng. Ed. Pr. Journal of Professional Issues in Engineering Education and Practice = J. Prof. Issues Eng. Educ. Pract. Journal of Professional Nursing=J Prof Nurs;; Journal of Professional Nursing = J Prof Nurs Journal of Professional Nursing = J. Prof. Nurs. Journal of professional nursing : official journal of the American Association of Colleges of Nursing = J Prof Nurs Journal of professional services marketing = J Prof Serv Mark Journal of Professional Services Marketing = J. Prof. Serv. Mark. Journal of Programming Languages = J Program Lang Journal of Programming Languages = J. Program. Lang. Journal of Projective Techniques and Personality Assessment = J. Proj. Tech. Pers. Assess. Journal of projective techniques = J Proj Tech Journal of Projective Techniques = J Proj Tech Journal of Projective Techniques = J. Proj. Tech. Journal of Projective Techniques & Personality Assessment = J Proj Tech Pers Ass Journal of Projective Techniques & Personality Assessment = J. Proj. Tech. Pers. Ass. Journal of projective techniques & personality assessment = J Proj Tech Pers Assess Journal of Propulsion and Power = J Propul Power Journal of Propulsion and Power = J. Propul. Power Journal of Prosthetic Dentistry=J Prosthet Dent;; Journal of Prosthetic Dentistry = J Prosthet Dent Journal of Prosthetic Dentistry = J. Prosthet. Dent. Journal of Prosthetics and Orthotics = J Prosthet Orthot Journal of Prosthetics and Orthotics = J. Prosthet. Orthot. Journal of Prosthodontics = J. Prosthodont. Journal of prosthodontics : official journal of the American College of Prosthodontists = J Prosthodont Journal of protein chemistry = J Protein Chem Journal of Protein Chemistry=J Protein Chem;; Journal of Protein Chemistry = J Protein Chem Journal of Protein Chemistry = J. Protein Chem. Journal of proteome research = J Proteome Res Journal of Proteome Research = J Proteome Res Journal of Proteome Research = J. Proteome Res. Journal of Proteomics = J Proteomics Journal of Proteomics = J. Proteomics Journal of Protozoology = J Protozool Journal of Protozoology = J. Protozool. Journal of Protozoology Research = J Protozool Res Journal of Protozoology Research = J. Protozool. Res. Journal of Psychedelic Drugs = J Psychedel Drug Journal of Psychedelic Drugs = J. Psychedel. Drug. Journal of psychedelic drugs = J Psychedelic Drugs Journal of Psychedelic Drugs = J. Psychedelic Drugs Journal of psychiatric and mental health nursing = J Psychiatr Ment Health Nurs Journal of Psychiatric and Mental Health Nursing = J. Psychiatr. Ment. Health Nurs. Journal of Psychiatric and Mental Health Nursing = J Psychiatr Ment Hlt Journal of Psychiatric and Mental Health Nursing = J. Psychiatr. Ment. Hlt. Journal of Psychiatric Education = J Psychiat Educ Journal of Psychiatric Education = J. Psychiat. Educ. Journal of psychiatric education = J Psychiatr Educ Journal of Psychiatric Nursing and Mental Health Services = J. Psychiatr. Nurs. Journal of psychiatric nursing and mental health services = J Psychiatr Nurs Ment Health Serv Journal of psychiatric nursing = J Psychiatr Nurs Journal of psychiatric practice = J Psychiatr Pract Journal of Psychiatric Practice = J Psychiatr Pract Journal of Psychiatric Practice = J. Psychiatr. Pract. Journal of Psychiatric Research = J Psychiat Res Journal of Psychiatric Research = J. Psychiat. Res. Journal of psychiatric research = J Psychiatr Res Journal of Psychiatric Research=J Psychiatr Res;; Journal of Psychiatric Research = J Psychiatr Res Journal of Psychiatric Research = J. Psychiatr. Res. Journal of psychiatric social work = J Psychiatr Soc Work Journal of psychiatric treatment and evaluation = J Psychiatr Treat Eval Journal of Psychiatric Treatment and Evaluation = J Psychiat Treat Ev Journal of Psychiatric Treatment and Evaluation = J. Psychiat. Treat. Ev. Journal of Psychiatry and Neuroscience=J Psychiatry Neurosci;; Journal of Psychiatry and Neuroscience = J. Psychiatry Neurosci. Journal of Psychiatry & Law = J Psychiat Law Journal of Psychiatry & Law = J. Psychiat. Law Journal of psychiatry & neuroscience : JPN = J Psychiatry Neurosci Journal of Psychiatry & Neuroscience = J Psychiatr Neurosci Journal of Psychiatry & Neuroscience = J. Psychiatr. Neurosci. Journal of Psychoactive Drugs = J. Psychoact. Drugs Journal of psychoactive drugs = J Psychoactive Drugs Journal of Psychoactive Drugs=J Psychoactive Drugs;; Journal of Psychoactive Drugs = J Psychoactive Drugs Journal of Psychoactive Drugs = J. Psychoactive Drugs Journal of Psychoeducational Assessment = J Psychoeduc Assess Journal of Psychoeducational Assessment = J. Psychoeduc. Assess. Journal of Psychohistory = J Psychohist Journal of Psychohistory = J. Psychohist. Journal of psycholinguistic research = J Psycholinguist Res Journal of Psycholinguistic Research=J Psycholinguist Res;; Journal of Psycholinguistic Research = J Psycholinguist Res Journal of Psycholinguistic Research = J. Psycholinguist. Res. Journal of Psychological Studies = J Psychol Stud Journal of Psychological Studies = J. Psychol. Stud. Journal of psychology and Judaism = J Psychol Judaism Journal of Psychology and Judaism = J Psychol Judaism Journal of Psychology and Judaism = J. Psychol. Judaism Journal of psychology and theology = J Psychol Theol Journal of Psychology and Theology = J Psychol Theol Journal of Psychology and Theology = J. Psychol. Theol. Journal of psychology & human sexuality = J Psychol Human Sex Journal of Psychology in Africa = J Psychol Afr Journal of Psychology in Africa = J. Psychol. Afr. Journal of Psychology=J Psychol;; Journal of Psychology = J Psychol Journal of Psychology = J. Psychol. Journal of Psychopathology and Behavioral Assessment = J Psychopathol Behav Journal of Psychopathology and Behavioral Assessment = J. Psychopathol. Behav. Journal of psychopathology and behavioral assessment = J Psychopathol Behav Assess Journal of Psychopharmacology = J Psychopharmacol Journal of Psychopharmacology = J. Psychopharmacol. Journal of Psychopharmacology=J Psychopharmacol (Oxf);; Journal of Psychopharmacology = J. Psychopharmacol. (Oxf.) Journal of psychopharmacology (Oxford, England) = J Psychopharmacol Journal of Psychophysiology = J Psychophysiol Journal of Psychophysiology = J. Psychophysiol. Journal of Psychosocial Nursing and Mental Health Services = J Psychosoc Nurs Journal of Psychosocial Nursing and Mental Health Services = J. Psychosoc. Nurs. Journal of psychosocial nursing and mental health services = J Psychosoc Nurs Ment Health Serv Journal of Psychosocial Nursing and Mental Health Services=J Psychosoc Nurs Ment Health Serv;; Journal of Psychosocial Nursing and Mental Health Services = J. Psychosoc. Nurs. Ment. Health Serv. Journal of psychosocial oncology = J Psychosoc Oncol Journal of Psychosocial Oncology = J Psychosoc Oncol Journal of Psychosocial Oncology = J. Psychosoc. Oncol. Journal of psychosomatic obstetrics and gynaecology = J Psychosom Obstet Gynaecol Journal of Psychosomatic Obstetrics and Gynaecology=J Psychosom Obstet Gynaecol;; Journal of Psychosomatic Obstetrics and Gynaecology = J. Psychosom. Obstet. Gynaecol. Journal of Psychosomatic Obstetrics and Gynecology = J Psychosom Obst Gyn Journal of Psychosomatic Obstetrics and Gynecology = J. Psychosom. Obst. Gyn. Journal of psychosomatic research = J Psychosom Res Journal of Psychosomatic Research=J Psychosom Res;; Journal of Psychosomatic Research = J Psychosom Res Journal of Psychosomatic Research = J. Psychosom. Res. Journal of Psychotherapy Integration = J Psychother Integr Journal of Psychotherapy Integration = J. Psychother. Integr. Journal of Psychotherapy Practice and Research=J Psychother Pract Res;; Journal of Psychotherapy Practice and Research = J. Psychother. Pract. Res. Journal of Public Administration Research and Theory = J Publ Adm Res Theor Journal of Public Administration Research and Theory = J. Publ. Adm. Res. Theor. Journal of Public and International Affairs=J. Public Int. Aff. Journal of public economics = J Public Econ Journal of Public Economics=J. Public Econ. Journal of Public Economics = J Public Econ Journal of Public Economics = J. Public Econ. Journal of Public Economic Theory=J. Public Econ. Theory Journal of Public Economic Theory = J Public Econ Theory Journal of Public Economic Theory = J. Public Econ. Theory Journal of Public Finance and Public Choice=J. Public Finance Public Choice Journal of public health dentistry = J Public Health Dent Journal of Public Health Dentistry=J Public Health Dent;; Journal of Public Health Dentistry = J Public Health Dent Journal of Public Health Dentistry = J. Public Health Dent. Journal of Public Health = J Public Health Journal of Public Health = J. Public Health Journal of public health = J Public Health (Bangkok) Journal of Public Health = J Public Health-uk Journal of Public Health = J. Public Health-uk. Journal of public health management and practice : JPHMP = J Public Health Manag Pract Journal of Public Health Management and Practice = J Public Health Man Journal of Public Health Management and Practice = J. Public Health Man. Journal of Public Health Management and Practice = J. Public Health Manag. Pract. Journal of public health medicine = J Public Health Med Journal of Public Health Medicine=J Public Health Med;; Journal of Public Health Medicine = J Public Health Med Journal of Public Health Medicine = J. Public Health Med. Journal of public health (Oxford, England) = J Public Health (Oxf) Journal of Public Health Policy = J Public Health Pol Journal of Public Health Policy = J. Public Health Pol. Journal of public health policy = J Public Health Policy Journal of Public Health Policy=J Public Health Policy;; Journal of Public Health Policy = J. Public Health Policy Journal of Public Law = J Public Law Journal of Public Law = J. Public Law Journal of public policy = J Public Policy Journal of Public Policy & Marketing = J Public Policy Mark Journal of Public Policy & Marketing = J. Public Policy Mark. Journal of Public Relations Research = J Public Relat Res Journal of Public Relations Research = J. Public Relat. Res. Journal of Pulp and Paper Science = J Pulp Pap Sci Journal of Pulp and Paper Science = J. Pulp Pap. Sci. Journal of Pure and Applied Algebra = J. Pure Appl. Algebra Journal of Pure and Applied Algebra = J Pure Appl Algebra Journal of Pure and Applied Algebra = J. Pure Appl. Algebra Journal of Qingdao University = J. Qingdao Univ. Nat. Sci. Ed. Journal of quality assurance : a publication of the National Association of Quality Assurance Professionals = J Qual Assur Journal of Quality Assurance = J. Qual. Assur. Journal of quality in clinical practice = J Qual Clin Pract Journal of Quality in Clinical Practice = J. Qual. Clin. Pract. Journal of Quality In Clinical Practice=J Qual Clin Pract;; Journal of Quality Technology = J Qual Technol Journal of Quality Technology = J. Qual. Technol. Journal of Quantitative Criminology = J Quant Criminol Journal of Quantitative Criminology = J. Quant. Criminol. Journal of quantitative economics : journal of the Indian Econometric Society = J Quant Econ Journal of Quantitative Economics=J. Quant. Econ. Journal of Quantitative Linguistics = J Quant Linguist Journal of Quantitative Linguistics = J. Quant. Linguist. Journal of Quantitative Spectroscopy and Radiative Transfer = J. Quant. Spectrosc. Radiat. Transfer Journal of Quantitative Spectroscopy & Radiative Transfer = J Quant Spectrosc Ra Journal of Quantitative Spectroscopy & Radiative Transfer = J. Quant. Spectrosc. Ra. Journal of quantitative spectroscopy & radiative transfer = J Quant Spectrosc Radiat Transf Journal of Quantitative Spectroscopy & Radiative Transfer = J. Quant. Spectrosc. Radiat. Transfer Journal of Quaternary Science = J Quaternary Sci Journal of Quaternary Science = J. Quaternary Sci. Journal of Quaternary Science = J. Quat. Sci. Journal of Radiation Research = J Radiat Res Journal of Radiation Research = J. Radiat. Res. Journal of radiation research = J Radiat Res (Tokyo) Journal of Radiation Research=J Radiat Res (Tokyo);; Journal of Radiation Research = J. Radiat. Res. (Tokyo) Journal of Radioanalytical and Nuclear Chemistry Articles = J. Radioanal. Nucl. Chem. Art. Journal of Radioanalytical and Nuclear Chemistry-articles = J Radioan Nucl Ch Ar Journal of Radioanalytical and Nuclear Chemistry-articles = J. Radioan. Nucl. Ch. Ar. Journal of Radioanalytical and Nuclear Chemistry = J Radioanal Nucl Ch Journal of Radioanalytical and Nuclear Chemistry = J. Radioanal. Nucl. Ch. Journal of Radioanalytical and Nuclear Chemistry = J. Radioanal. Nucl. Chem. Journal of Radioanalytical and Nuclear Chemistry Letters = J. Radioanal. Nucl. Chem. Lett. Journal of Radioanalytical and Nuclear Chemistry-letters = J Radioan Nucl Ch Le Journal of Radioanalytical and Nuclear Chemistry-letters = J. Radioan. Nucl. Ch. Le. Journal of Radioanalytical Chemistry = J Radioanal Chem Journal of Radioanalytical Chemistry = J. Radioanal. Chem. Journal of Radiological Protection=J Radiol Prot;; Journal of Radiological Protection = J Radiol Prot Journal of Radiological Protection = J. Radiol. Prot. Journal of radiological protection : official journal of the Society for Radiological Protection = J Radiol Prot Journal of Radiotherapy in Practice = J. Radiother. Pract. Journal of Raman Specroscopy = J. Raman Spectrosc. Journal of Raman Spectroscopy = J Raman Spectrosc Journal of Raman Spectroscopy = J. Raman Spectrosc. Journal of Range Management = J Range Manage Journal of Range Management = J. Range Manage. Journal of Rapid Methods and Automation in Microbiology = J Rapid Meth Aut Mic Journal of Rapid Methods and Automation in Microbiology = J. Rapid Meth. Aut. Mic. Journal of Rapid Methods and Automation in Microbiology = J. Rapid Methods Autom. Microbiol. Journal of Raptor Research = J Raptor Res Journal of Raptor Research = J. Raptor Res. Journal of Rare Earths = J Rare Earth Journal of Rare Earths = J. Rare Earth. Journal of Rare Earths = J. Rare Earths Journal of Rational Mechanics and Analysis = J Ration Mech Anal Journal of Rational Mechanics and Analysis = J. Ration. Mech. Anal. Journal of Reading Behavior = J Reading Behav Journal of Reading Behavior = J. Reading Behav. Journal of Reading = J Reading Journal of Reading = J. Reading Journal of Real Estate Finance and Economics = J Real Estate Financ Journal of Real Estate Finance and Economics = J. Real Estate Financ. Journal of Real Estate Finance and Economics=J. Real Estate Finance Econ. Journal of Real Estate Literature=J. Real Estate Lit. Journal of Real Estate Portfolio Management=J. Real Estate Portfol. Manage. Journal of Real Estate Practice and Education=J. Real Estate Practice Educ. Journal of Real Estate Research=J. Real Estate Res. Journal of Real Estate Research = J Real Estate Res Journal of Real Estate Research = J. Real Estate Res. Journal of Real Estate Taxation = J Real Estate Tax Journal of Real Estate Taxation = J. Real Estate Tax. Journal of receptor and signal transduction research = J Recept Signal Transduct Res Journal of Receptor and Signal Transduction Research=J Recept Signal Transduct Res;; Journal of Receptor and Signal Transduction Research = J. Recept. Signal Transduct. Res. Journal of Receptor and Signal Transduction Research = J Recept Signal Tr R Journal of Receptor and Signal Transduction Research = J. Recept. Signal Tr. R. Journal of Receptor Research = J Receptor Res Journal of Receptor Research = J. Receptor Res. Journal of receptor research = J Recept Res Journal of Receptor Research = J. Recept. Res. Journal of Receptors and Signal Transduction = J. Recept. Signal Transduction Journal of Receptors and Signal Transduction = J Recept Sig Transd Journal of Receptors and Signal Transduction = J. Recept. Sig. Transd. Journal of reconstructive microsurgery = J Reconstr Microsurg Journal of Reconstructive Microsurgery=J Reconstr Microsurg;; Journal of Reconstructive Microsurgery = J Reconstr Microsurg Journal of Reconstructive Microsurgery = J. Reconstr. Microsurg. Journal of Reform Judaism = J Reform Jud Journal of Refractive and Corneal Surgery = J Refract Corneal S Journal of Refractive and Corneal Surgery = J. Refract. Corneal S. Journal of refractive and corneal surgery = J Refract Corneal Surg Journal of Refractive and Corneal Surgery = J. Refract. Corneal Surg. Journal of Refractive Surgery=J Refract Surg;; Journal of Refractive Surgery = J Refract Surg Journal of Refractive Surgery = J. Refract. Surg. Journal of refractive surgery (Thorofare, N.J. : 1995) = J Refract Surg Journal of refugee studies = J Refug Stud Journal of Refugee Studies = J Refug Stud Journal of Refugee Studies = J. Refug. Stud. Journal of Regional Analysis and Policy=J. Reg. Anal. Pol. Journal of regional policy = J Reg Policy Journal of Regional Science = J Regional Sci Journal of Regional Science = J. Regional Sci. Journal of regional science = J Reg Sci Journal of Regional Science=J. Reg. Sci. Journal of Regulatory Economics=J. Regul. Econ. Journal of Regulatory Economics = J Regul Econ Journal of Regulatory Economics = J. Regul. Econ. Journal of rehabilitation = J Rehabil Journal of Rehabilitation = J Rehabil Journal of Rehabilitation = J. Rehabil. Journal of Rehabilitation Medicine = J Rehabil Med Journal of Rehabilitation Medicine = J. Rehabil. Med. Journal of rehabilitation medicine : official journal of the UEMS European Board of Physical and Rehabilitation Medicine = J Rehabil Med Journal of Rehabilitation of The Deaf = J Rehabil Deaf Journal of Rehabilitation of The Deaf = J. Rehabil. Deaf Journal of Rehabilitation R and D = J. Rehabil. R D Journal of rehabilitation R&D / Veterans Administration, Department of Medicine and Surgery, Rehabilitation R&D Service = J Rehabil R D Journal of Rehabilitation Research and Development. Clinical Supplement = J. Rehabil. Res. Dev. Clin. Suppl. Journal of rehabilitation research and development. Clinical supplement / Veterans Administration = J Rehabil Res Dev Clin Suppl Journal of rehabilitation research and development = J Rehabil Res Dev Journal of Rehabilitation Research and Development=J Rehabil Res Dev;; Journal of Rehabilitation Research and Development = J Rehabil Res Dev Journal of Rehabilitation Research and Development = J. Rehabil. Res. Dev. Journal of Reinforced Plastics and Composites = J Reinf Plast Comp Journal of Reinforced Plastics and Composites = J. Reinf. Plast. Comp. Journal of Reinforced Plastics and Composites = J. Reinf. Plast. Compos. Journal of religion & aging = J Relig Aging Journal of religion and health = J Relig Health Journal of Religion & Health = J Relig Health Journal of Religion & Health = J. Relig. Health Journal of Religion in Africa = J Relig Afr Journal of Religion in Africa = J. Relig. Afr. Journal of religion in Africa. Religion en Afrique = J Relig Afr Journal of Religion = JR Journal of Religion = J Relig Journal of Religion = J. Relig. Journal of Religious Ethics = J Relig Ethics Journal of Religious Ethics = J. Relig. Ethics Journal of religious gerontology = J Relig Gerontol Journal of Religious History = J Relig Hist Journal of Religious History = J. Relig. Hist. Journal of Religious History = JRH Journal of Renal Nutrition = J Renal Nutr Journal of Renal Nutrition = J. Renal Nutr. Journal of Renal Nutrition = J. Ren. Nutr. Journal of renal nutrition : the official journal of the Council on Renal Nutrition of the National Kidney Foundation = J Ren Nutr Journal of Renewable and Sustainable Energy = J. Renewable Sustainable Energy Journal of Reproduction and Development = J Reprod Develop Journal of Reproduction and Development = J. Reprod. Develop. Journal of Reproduction and Fertility. Abstract Series=J Reprod Fertil Abstr Ser;; Journal of Reproduction and Fertility. Abstract Series = J. Reprod. Fertil. Abstr. Ser. Journal of reproduction and fertility = J Reprod Fertil Journal of Reproduction and Fertility=J Reprod Fertil;; Journal of Reproduction and Fertility = J Reprod Fertil Journal of Reproduction and Fertility = J. Reprod. Fertil. Journal of reproduction and fertility. Supplement = J Reprod Fertil Suppl Journal of Reproduction and Fertility. Supplement=J Reprod Fertil Suppl;; Journal of Reproduction and Fertility. Supplement = J. Reprod. Fertil. Suppl. Journal of Reproduction and Fertility, Supplements = J Rep Fer S Journal of Reproduction and Fertility, Supplements = J. Rep. Fer. S. Journal of reproduction & fertility. Abstract series = J Reprod Fertil Abstr Ser Journal of Reproductive and Infant Psychology = J Reprod Infant Psyc Journal of Reproductive and Infant Psychology = J. Reprod. Infant Psyc. Journal of reproductive and infant psychology = J Reprod Infant Psychol Journal of reproductive immunology = J Reprod Immunol Journal of Reproductive Immunology=J Reprod Immunol;; Journal of Reproductive Immunology = J Reprod Immunol Journal of Reproductive Immunology = J. Reprod. Immunol. Journal of Reproductive Medicine=J Reprod Med;; Journal of Reproductive Medicine = J Reprod Med Journal of Reproductive Medicine = J. Reprod. Med. Journal of Research and Development in Education = J Res Dev Educ Journal of Research and Development in Education = J. Res. Dev. Educ. Journal of Research and Practice in Information Technology = J Res Pract Inf Tech Journal of Research and Practice in Information Technology = J. Res. Pract. Inf. Tech. Journal of Research Communication Studies = J Res Commun Stud Journal of Research Communication Studies = J. Res. Commun. Stud. Journal of Research in Crime and Delinquency = J Res Crime Delinq Journal of Research in Crime and Delinquency = J. Res. Crime Delinq. Journal of Research in Islamic Economics=J. Res. Islamic Econ. Journal of Research in Medical Sciences = J Res Med Sci Journal of Research in Medical Sciences = J. Res. Med. Sci. Journal of Research in Music Education = J Res Music Educ Journal of Research in Music Education = J. Res. Music Educ. Journal of research in personality = J Res Pers Journal of Research in Personality = J Res Pers Journal of Research in Personality = J. Res. Pers. Journal of Research in Pharmaceutical Economics=J. Res. Pharmaceut. Econ. Journal of research in reading = J Res Read Journal of Research in Reading = J Res Read Journal of Research in Reading = J. Res. Read. Journal of Research in Science Teaching = J Res Sci Teach Journal of Research in Science Teaching = J. Res. Sci. Teach. Journal of Research of the National Bureau of Standards = J. Res. Nat. Bur. Stand. Journal of Research of The National Bureau of Standards = J Res Nat Bur Stand Journal of Research of The National Bureau of Standards = J. Res. Nat. Bur. Stand. Journal of Research of The National Bureau of Standards = J Res Natl Inst Stan Journal of Research of The National Bureau of Standards = J. Res. Natl. Inst. Stan. Journal of Research of The National Bureau of Standards Section A-physics and Chemistry = J Res Nbs A Phys Ch Journal of Research of The National Bureau of Standards Section A-physics and Chemistry = J. Res. Nbs. A. Phys. Ch. Journal of Research of The National Bureau of Standards Section B-mathematical Sciences = J Res Nbs B Math Sci Journal of Research of The National Bureau of Standards Section B-mathematical Sciences = J. Res. Nbs. B. Math. Sci. Journal of Research of The National Bureau of Standards Section B-mathematics and Mathematical = J Res Natl Bur Stand Journal of Research of The National Bureau of Standards Section B-mathematics and Mathematical = J. Res. Natl. Bur. Stand. Journal of Research of The National Bureau of Standards Section C-engineering and Instrumentation = J Res Nbs C Eng Inst Journal of Research of The National Bureau of Standards Section C-engineering and Instrumentation = J. Res. Nbs. C. Eng. Inst. Journal of Research of The National Bureau of Standards Section D-radio Science = J Res Nbs D Rad Sci Journal of Research of The National Bureau of Standards Section D-radio Science = J. Res. Nbs. D. Rad. Sci. Journal of Research of the National Institute of Standards and Technology = J. Res. Nat. Inst. Stand. Technol. Journal of Research of The National Institute of Standards and Technology = J Res Natl Inst Stan Journal of Research of The National Institute of Standards and Technology = J. Res. Natl. Inst. Stan. Journal of research of the National Institute of Standards and Technology = J Res Natl Inst Stand Technol Journal of Research of The Us Geological Survey = J Res Us Geol Surv Journal of Research of The Us Geological Survey = J. Res. Us Geol. Surv. Journal of Research On Adolescence = J Res Adolescence Journal of Research On Adolescence = J. Res. Adolescence Journal of research on adolescence : the official journal of the Society for Research on Adolescence = J Res Adolesc Journal of Research On The Lepidoptera = J Res Lepidoptera Journal of Research On The Lepidoptera = J. Res. Lepidoptera Journal of Residuals Science & Technology = J Residuals Sci Tech Journal of Residuals Science & Technology = J. Residuals Sci. Tech. Journal of Retailing = J Retailing Journal of Retailing = J. Retailing Journal of Rheology = J Rheol Journal of Rheology = J. Rheol. Journal of Rheology (Melville, NY, United States) = J. Rheol. (Melville, NY, U. S.) Journal of Rheology (New York, NY, United States) = J. Rheol. (N. Y., NY, U. S.) Journal of Rheumatology=J Rheumatol;; Journal of Rheumatology = J Rheumatol Journal of Rheumatology = J. Rheumatol. Journal of Rheumatology. Supplement=J Rheumatol Suppl;; Journal of Rheumatology. Supplement = J. Rheumatol. Suppl. Journal of Risk and Insurance=J. Risk Ins. Journal of Risk and Insurance = J Risk Insur Journal of Risk and Insurance = J. Risk Insur. Journal of risk and uncertainty = J Risk Uncertain Journal of Risk and Uncertainty=J. Risk Uncertainty Journal of Risk and Uncertainty = J Risk Uncertainty Journal of Risk and Uncertainty = J. Risk Uncertainty Journal of Risk = J Risk Journal of Risk = J. Risk Journal of Risk Research = J Risk Res Journal of Risk Research = J. Risk Res. Journal of Robotic Systems = J Robotic Syst Journal of Robotic Systems = J. Robotic Syst. Journal of robotic systems = J Robot Syst Journal of Roman archaeology = JRA Journal of Roman Archaeology = JRA Journal of Roman military equipment studies = JRMES Journal of Roman Military Equipment Studies = JRomMilSt Journal of Roman Pottery Studies = JRomPotSt Journal of Roman Studies = J Roman Stud Journal of Roman Studies = J. Roman Stud. Journal of Roman Studies = JRS Journal of Roman Studies = JRS Journal of Rubber Research = J Rubber Res Journal of Rubber Research = J. Rubber Res. Journal Of Rural Development = J Rural Dev Journal of Rural Development = J Rural Develop Journal of Rural Development = J. Rural Develop. Journal of Rural Economics and Development = J Rural Econ Dev Journal of Rural Economics and Development = J. Rural Econ. Dev. Journal of Rural Health = J Rural Health Journal of Rural Health = J. Rural Health Journal of rural studies = J Rural Stud Journal of Rural Studies = J Rural Stud Journal of Rural Studies = J. Rural Stud. Journal of Russian Laser Research = J Russ Laser Res Journal of Russian Laser Research = J. Russ. Laser Res. Journal of safety research = J Safety Res Journal of Safety Research = J Safety Res Journal of Safety Research = J. Safety Res. Journal of Safety Research = J. Saf. Res. Journal of Sandwich Structures and Materials = J. Sandwich Struct. Mater. Journal of Sandwich Structures & Materials = J Sandw Struct Mater Journal of Sandwich Structures & Materials = J. Sandw. Struct. Mater. Journal of Scheduling = J. Sched. Journal of Scheduling = J Sched Journal of Scheduling = J. Sched. Journal of Scholarly Publishing = J Scholarly Publ Journal of Scholarly Publishing = J. Scholarly Publ. Journal of School Health=J Sch Health;; Journal of School Health = J. Sch. Health Journal of School Health = J School Health Journal of School Health = J. School Health Journal of School Nursing = J Sch Nurs Journal of School Nursing = J. Sch. Nurs. Journal of School Psychology = J School Psychol Journal of School Psychology = J. School Psychol. Journal of school psychology = J Sch Psychol Journal of Science and Medicine in Sport = J Sci Med Sport Journal of Science and Medicine in Sport = J. Sci. Med. Sport Journal of science and medicine in sport / Sports Medicine Australia = J Sci Med Sport Journal of Science and Technology = J Sci Technol Journal of Science and Technology = J. Sci. Technol. Journal of Science Education and Technology = J Sci Educ Technol Journal of Science Education and Technology = J. Sci. Educ. Technol. Journal of Science of the University of Tehran = J. Sci. Univ. Tehran Int. Ed. Journal of Scientific and Industrial Research = J. Sci. Ind. Res. Journal of scientific and industrial research = J Sci Ind Res (India) Journal of Scientific Computing = J. Sci. Comput. Journal of Scientific Computing = J Sci Comput Journal of Scientific Computing = J. Sci. Comput. Journal of scientific & industrial research. C. Biological sciences = J Sci Ind Res (C) Journal of Scientific & Industrial Research = J Sci Ind Res India Journal of Scientific & Industrial Research = J. Sci. Ind. Res. India. Journal of Scientific Instruments and of Physics in Industry = J Sci Instr Phys Ind Journal of Scientific Instruments and of Physics in Industry = J. Sci. Instr. Phys. Ind. Journal of scientific instruments = J Sci Instrum Journal of Scientific Instruments = J Sci Instrum Journal of Scientific Instruments = J. Sci. Instrum. Journal of Sea Research = J Sea Res Journal of Sea Research = J. Sea Res. Journal of Second Language Writing = J Second Lang Writ Journal of Second Language Writing = J. Second Lang. Writ. Journal of sedimentary petrology = J Sediment Petrol Journal of Sedimentary Petrology = J Sediment Petrol Journal of Sedimentary Petrology = J. Sediment. Petrol. Journal of Sedimentary Research = J Sediment Res Journal of Sedimentary Research = J. Sediment. Res. Journal of sedimentary research. Section A, Sedimentary petrology and processes : an international journal of SEPM (Society for Sedimentary Geology) = J Sediment Res A Sediment Petrol Process Journal of Sedimentary Research Section A-sedimentary Petrology and Processes = J Sediment Res A Journal of Sedimentary Research Section A-sedimentary Petrology and Processes = J. Sediment. Res. A. Journal of Sedimentary Research Section B-stratigraphy and Global Studies = J Sediment Res B Journal of Sedimentary Research Section B-stratigraphy and Global Studies = J. Sediment. Res. B. Journal of Seed Technology = J Seed Technol Journal of Seed Technology = J. Seed Technol. Journal of Seismic Exploration = J Seism Explor Journal of Seismic Exploration = J. Seism. Explor. Journal of Seismology = J Seismol Journal of Seismology = J. Seismol. Journal of Seismology = J. Seismolog. Journal of Semantics = J Semant Journal of Semantics = J. Semant. Journal of Semiconductors = J. Semicond. Journal of Semitic Studies = J Semitic Stud Journal of Semitic Studies = J. Semitic Stud. Journal of Semitic studies = J Semit Stud Journal of Semitic Studies = JSS Journal of sensory studies = J Sens Stud Journal of Sensory Studies = J Sens Stud Journal of Sensory Studies = J. Sens. Stud. Journal of separation science = J Sep Sci Journal of Separation Science = J Sep Sci Journal of Separation Science = J. Sep. Sci. Journal of Service Management = J Serv Manage Journal of Service Management = J. Serv. Manage. Journal of Service Research = J Serv Res-us Journal of Service Research = J. Serv. Res-us. Journal of Services Marketing = J Serv Mark Journal of Services Marketing = J. Serv. Mark. Journal of Sex and Marital Therapy=J Sex Marital Ther;; Journal of Sex and Marital Therapy = J. Sex Marital Ther. Journal of sex education and therapy = J Sex Educ Ther Journal of Sex Education & Therapy = J Sex Educ Ther Journal of Sex Education & Therapy = J. Sex Educ. Ther. Journal of sex & marital therapy = J Sex Marital Ther Journal of Sex & Marital Therapy = J Sex Marital Ther Journal of Sex & Marital Therapy = J. Sex Marital Ther. Journal of sex research = J Sex Res Journal of Sex Research = J Sex Res Journal of Sex Research = J. Sex Res. Journal of Sexual Medicine = J Sex Med Journal of Sexual Medicine = J. Sex. Med. Journal of Shanghai Jiaotong University = J. Shanghai Jiaotong Univ. (Chin. Ed.) Journal of Shanghai Jiaotong University = J. Shanghai Jiaotong Univ. (Engl. Ed.) Journal of Shanghai University = J. Shanghai Univ. Journal of Shanghai University = J. Shanghai Univ. Nat. Sci. Journal of Shellfish Research = J Shellfish Res Journal of Shellfish Research = J. Shellfish Res. Journal of Ship Research = J Ship Res Journal of Ship Research = J. Ship Res. Journal of shoulder and elbow surgery / American Shoulder and Elbow Surgeons ... [et al.] = J Shoulder Elbow Surg Journal of Shoulder and Elbow Surgery=J Shoulder Elbow Surg;; Journal of Shoulder and Elbow Surgery = J. Shoulder Elbow Surg. Journal of Shoulder and Elbow Surgery = J Shoulder Elb Surg Journal of Shoulder and Elbow Surgery = J. Shoulder Elb. Surg. Journal of Sichuan Union University = J. Sichuan Union Univ. Eng. Sci. Ed. Journal of Signal Processing Systems for Signal Image and Video Technology = J Signal Process Sys Journal of Signal Processing Systems for Signal Image and Video Technology = J. Signal Process. Sys. Journal of sleep research = J Sleep Res Journal of Sleep Research=J Sleep Res;; Journal of Sleep Research = J Sleep Res Journal of Sleep Research = J. Sleep Res. Journal of Small Animal Practice=J Small Anim Pract;; Journal of Small Animal Practice = J Small Anim Pract Journal of Small Animal Practice = J. Small Anim. Pract. Journal of Small Business Management = J Small Bus Manage Journal of Small Business Management = J. Small Bus. Manage. Journal of Smooth Muscle Research (Hirosaki-Shi=J Smooth Muscle Res;; Journal of Smooth Muscle Research = J. Smooth Muscle Res. Journal of social and administrative pharmacy : JSAP = J Soc Adm Pharm Journal of social and biological structures = J Soc Biol Struct Journal of Social and Biological Structures = J Soc Biol Struct Journal of Social and Biological Structures = J. Soc. Biol. Struct. Journal of social and clinical psychology = J Soc Clin Psychol Journal of Social and Clinical Psychology = J Soc Clin Psychol Journal of Social and Clinical Psychology = J. Soc. Clin. Psychol. Journal of Social and Economic Development=J. Soc. Econ. Devel. Journal of social and economic studies = J Soc Econ Stud Journal of Social and Evolutionary Systems = J Soc Evol Syst Journal of Social and Evolutionary Systems = J. Soc. Evol. Syst. Journal of social and personal relationships = J Soc Pers Relat Journal of Social and Personal Relationships = J Soc Pers Relat Journal of Social and Personal Relationships = J. Soc. Pers. Relat. Journal of Social and Political Studies = J Soc Polit Econ St Journal of Social and Political Studies = J. Soc. Polit. Econ. St. Journal of Social Archaeology = J Soc Archaeol Journal of Social Archaeology = J. Soc. Archaeol. Journal of social behavior and personality = J Soc Behav Pers Journal of Social Behavior and Personality = J Soc Behav Pers Journal of Social Behavior and Personality = J. Soc. Behav. Pers. Journal of Social Casework = J Soc Casew Journal of Social Casework = J. Soc. Casew. Journal of social development in Africa = J Soc Dev Afr Journal of Social Distress and The Homeless = J Soc Distress Homel Journal of Social Distress and The Homeless = J. Soc. Distress Homel. Journal of social history = J Soc Hist Journal of Social History = J Soc Hist Journal of Social History = J. Soc. Hist. Journal of social hygiene = J Soc Hyg Journal of Social Issues = J Soc Issues Journal of Social Issues = J. Soc. Issues Journal of social philosophy = J Soc Philos Journal of social policy = J Soc Policy Journal of Social Policy = J Soc Policy Journal of Social Policy = J. Soc. Policy Journal of Social Political and Economic Studies = J Soc Polit Econ St Journal of Social Political and Economic Studies = J. Soc. Polit. Econ. St. Journal of Social Psychology=J Soc Psychol;; Journal of Social Psychology = J Soc Psychol Journal of Social Psychology = J. Soc. Psychol. Journal of social service research = J Soc Serv Res Journal of Social Service Research = J Soc Serv Res Journal of Social Service Research = J. Soc. Serv. Res. Journal of Social Work Education = J Soc Work Educ Journal of Social Work Education = J. Soc. Work Educ. Journal of social work & human sexuality = J Soc Work Hum Sex Journal of social work in disability & rehabilitation = J Soc Work Disabil Rehabil Journal of social work in end-of-life & palliative care = J Soc Work End Life Palliat Care Journal of Social Work Practice = J Soc Work Pract Journal of Social Work Practice = J. Soc. Work Pract. Journal of Socio-Economics=J. Socio-Econ. Journal of Sociolinguistics = J Socioling Journal of Sociolinguistics = J. Socioling. Journal of sociology and social welfare = J Sociol Soc Welf Journal of Sociology and Social Welfare = J Sociol Soc Welfare Journal of Sociology and Social Welfare = J. Sociol. Soc. Welfare Journal of Sociology = J Sociol Journal of Sociology = J. Sociol. Journal Of Sociology = J. Sociol. Journal of sociology (Melbourne, Vic.) = J Sociol (Melb) Journal of Software Maintenance and Evolution-research and Practice = J Softw Maint Evol-r Journal of Software Maintenance and Evolution-research and Practice = J. Softw. Maint. Evol-r. Journal of Software Maintenance-research and Practice = J Softw Maint-res Pr Journal of Software Maintenance-research and Practice = J. Softw. Maint-res. Pr. Journal of Soil and Water Conservation = J Soil Water Conserv Journal of Soil and Water Conservation = J. Soil Water Conserv. Journal of Soil Contamination = J Soil Contam Journal of Soil Contamination = J. Soil Contam. Journal of Soils and Sediments = J Soil Sediment Journal of Soils and Sediments = J. Soil. Sediment. Journal of Soils and Sediments = J Soils Sediments Journal of Soils and Sediments = J. Soils Sediments Journal of Soil Science = J Soil Sci Journal of Soil Science = J. Soil Sci. Journal of Soil Science, The = J. Soil Sci. Journal of Solar Energy Engineering = J. Sol. Energy Eng. Journal of Solar Energy Engineering-transactions of The Asme = J Sol Energ-t Asme Journal of Solar Energy Engineering-transactions of The Asme = J. Sol. Energ-t. Asme Journal of Sol-gel Science and Technology = J Sol-gel Sci Techn Journal of Sol-gel Science and Technology = J. Sol-gel Sci. Techn. Journal of Sol-Gel Science and Technology = J. Sol-Gel Sci. Technol. Journal of Solid State Chemistry = J Solid State Chem Journal of Solid State Chemistry = J. Solid State Chem. Journal of Solid State Electrochemistry = J Solid State Electr Journal of Solid State Electrochemistry = J. Solid State Electr. Journal of Solid State Electrochemistry = J. Solid State Electrochem. Journal of Solution Chemistry = J Solution Chem Journal of Solution Chemistry = J. Solution Chem. Journal of Song-yuan Studies = J Song-yuan Stud Journal of Song-yuan Studies = J. Song-yuan Stud. Journal of Sound and Vibration = J Sound Vib Journal of Sound and Vibration = J. Sound Vib. Journal of Sound and Vibration = J. Sound Vibration Journal of South American Earth Sciences = J S Am Earth Sci Journal of South American Earth Sciences = J. S. Am. Earth Sci. Journal of South American Earth Sciences = J. South Amer. Earth Sci. Journal of South Asian and Middle Eastern studies = J South Asian Middle East Stud Journal of South Asian Literature = J S Asian Lit Journal of South Asian Literature = J. S. Asian Lit. Journal of South China Normal University = J. South China Normal Univ. Natur. Sci. Ed. Journal of Southeast Asian Earth Sciences = J Southe Asian Earth Journal of Southeast Asian Earth Sciences = J. Southe. Asian Earth Journal of Southeast Asian earth sciences = J Southeast Asian Earth Sci Journal of Southeast Asian Earth Sciences = J. Southeast Asian Earth Sci. Journal of Southeast Asian Studies = J Southe Asian Stud Journal of Southeast Asian Studies = J. Southe. Asian Stud. Journal of Southeast Asian Studies = J Southeast Asian St Journal of Southeast Asian Studies = J. Southeast Asian St. Journal of Southeast Asian studies = J Southeast Asian Stud Journal of Southeast University = J. Southeast Univ. Journal of Southeast University = J. Southeast Univ. (English Ed.) Journal of Southern African Studies = J S Afr Stud Journal of Southern African Studies = J. S. Afr. Stud. Journal of southern African studies = J South Afr Stud Journal of Southern Europe and The Balkans = J South Eur Balk Journal of Southern Europe and The Balkans = J. South. Eur. Balk. Journal of Southern History = J Southern Hist Journal of Southern History = J. Southern Hist. Journal of Soviet nationalities : a quarterly publication of the Center on East-West Trade, Investment, and Communications = J Sov Natly Journal of Spacecraft and Rockets = J Spacecraft Rockets Journal of Spacecraft and Rockets = J. Spacecraft Rockets Journal of spacecraft and rockets = J Spacecr Rockets Journal of Spacecraft Technology = J Spacecr Technol Journal of Spacecraft Technology = J. Spacecr. Technol. Journal of Spanish Studies Twentieth Century = J Spanish Stud 20th Journal of Spanish Studies Twentieth Century = J. Spanish Stud. 20th. Journal of Spatial Science = J Spat Sci Journal of Spatial Science = J. Spat. Sci. Journal of Special Education = J Spec Educ Journal of Special Education = J. Spec. Educ. Journal of Speech and Hearing Disorders = J Speech Hear Disord Journal of Speech and Hearing Disorders = J. Speech Hear. Disord. Journal of speech and hearing disorders. Monograph supplement = J Speech Hear Disord Monogr Suppl Journal of speech and hearing research = J Speech Hear Res Journal of Speech and Hearing Research = J Speech Hear Res Journal of Speech and Hearing Research = J. Speech Hear. Res. Journal of Speech Disorders = J Speech Disord Journal of Speech Disorders = J. Speech Disord. Journal of speech, language, and hearing research : JSLHR = J Speech Lang Hear Res Journal of Speech Language and Hearing Research = J Speech Lang Hear R Journal of Speech Language and Hearing Research = J. Speech Lang. Hear. R. Journal of Speech, Language, and Hearing Research=J Speech Lang Hear Res;; Journal of Speech, Language, and Hearing Research = J. Speech Lang. Hear. Res. Journal of Spinal Cord Medicine=J Spinal Cord Med;; Journal of Spinal Cord Medicine = J Spinal Cord Med Journal of Spinal Cord Medicine = J. Spinal Cord Med. Journal of Spinal Disorders and Techniques = J. Spinal Disord. Tech. Journal of spinal disorders = J Spinal Disord Journal of Spinal Disorders=J Spinal Disord;; Journal of Spinal Disorders = J Spinal Disord Journal of Spinal Disorders = J. Spinal Disord. Journal of spinal disorders & techniques = J Spinal Disord Tech Journal of Spinal Disorders & Techniques = J Spinal Disord Tech Journal of Spinal Disorders & Techniques = J. Spinal Disord. Tech. Journal of Sport & Exercise Psychology = J Sport Exercise Psy Journal of Sport & Exercise Psychology = J. Sport Exercise Psy. Journal of sport & exercise psychology = J Sport Exerc Psychol Journal of sport history = J Sport Hist Journal of Sport History = J Sport Hist Journal of Sport History = J. Sport Hist. Journal of Sport Management = J Sport Manage Journal of Sport Management = J. Sport Manage. Journal of Sport Psychology = J Sport Exercise Psy Journal of Sport Psychology = J. Sport Exercise. Psy. Journal of Sport Psychology = J Sport Psychol Journal of Sport Psychology = J. Sport Psychol. Journal of sport rehabilitation = J Sport Rehabil Journal of Sport Rehabilitation = J Sport Rehabil Journal of Sport Rehabilitation = J. Sport Rehabil. Journal of Sports Chiropractic & Rehabilitation = J Sport Chiropr Reh Journal of Sports Chiropractic & Rehabilitation = J. Sport. Chiropr. Reh. Journal of Sports Economics = J Sport Econ Journal of Sports Economics = J. Sport. Econ. Journal of Sports Economics=J. Sports Econ. Journal of Sports Medicine and Physical Fitness = J Sport Med Phys Fit Journal of Sports Medicine and Physical Fitness = J. Sport. Med. Phys. Fit. Journal of Sports Medicine and Physical Fitness=J Sports Med Phys Fitness;; Journal of Sports Medicine and Physical Fitness = J. Sports Med. Phys. Fitness Journal of Sports Medicine = J. Sports Med. Journal of Sport & Social Issues = J Sport Soc Issues Journal of Sport & Social Issues = J. Sport Soc. Issues Journal Of Sport & Social Issues = J. Sport Soc. Issues Journal of Sports Science and Medicine = J Sport Sci Med Journal of Sports Science and Medicine = J. Sport. Sci. Med. Journal of Sports Sciences = J Sport Sci Journal of Sports Sciences = J. Sport. Sci. Journal of sports sciences = J Sports Sci Journal of Sports Sciences=J Sports Sci;; Journal of Sports Sciences = J. Sports Sci. Journal of Sports Traumatology and Related Research = J Sport Traumatol Journal of Sports Traumatology and Related Research = J. Sport. Traumatol. Journal of State Government = J. State Gov. Journal of State Government = J State Govt Journal of State Government = J. State Govt. Journal of Statistical Computation and Simulation = J Stat Comput Sim Journal of Statistical Computation and Simulation = J. Stat. Comput. Sim. Journal of Statistical Computation and Simulation = J. Stat. Comput. Simul. Journal of Statistical Computation and Simulation = J. Statist. Comput. Simulation Journal of Statistical Mechanics-theory and Experiment = J Stat Mech-theory E Journal of Statistical Mechanics-theory and Experiment = J. Stat. Mech-theory. E. Journal of Statistical Mechanics: Theory and Experiment = J. Stat. Mech: Theory Exp. Journal of Statistical Physics = J. Statist. Phys. Journal of Statistical Physics = J Stat Phys Journal of Statistical Physics = J. Stat. Phys. Journal of Statistical Planning and Inference = J. Statist. Plann. Inference Journal of Statistical Planning and Inference = J Stat Plan Infer Journal of Statistical Planning and Inference = J. Stat. Plan. Infer. Journal of statistical planning and inference = J Stat Plan Inference Journal of Statistical Planning and Inference = J. Stat. Plan. Inference Journal of Statistical Research = J. Statist. Res. Journal of Statistical Software = J Stat Softw Journal of Statistical Software = J. Stat. Softw. Journal of Statistical Studies = J. Stat. Stud. Journal of Statistics & Management Systems = J. Stat. Manag. Syst. Journal of sterile services management = J Sterile Serv Manage Journal of Sterile Services Management = J. Sterile Serv. Manage. Journal of Steroid Biochemistry and Molecular Biology = J Steroid Biochem Journal of Steroid Biochemistry and Molecular Biology = J. Steroid Biochem. Journal of Steroid Biochemistry and Molecular Biology=J Steroid Biochem Mol Biol;; Journal of Steroid Biochemistry and Molecular Biology = J. Steroid Biochem. Mol. Biol. Journal of steroid biochemistry = J Steroid Biochem Journal of Steroid Biochemistry = J. Steroid Biochem. Journal of Steroid Biochemistry = J Steroid Biochemist Journal of Steroid Biochemistry = J. Steroid Biochemist. Journal of Stone Disease = J Stone Dis Journal of Stone Disease = J. Stone Dis. Journal of Stored Products Research = J Stored Prod Res Journal of Stored Products Research = J. Stored Prod. Res. Journal of Strain Analysis for Engineering Design = J Strain Anal Eng Journal of Strain Analysis for Engineering Design = J. Strain Anal. Eng. Journal of Strain Analysis for Engineering Design = J. Strain Anal. Eng. Des. Journal of Strategic Information Systems = J Strategic Inf Syst Journal of Strategic Information Systems = J. Strategic Inf. Syst. Journal of Strategic Studies = J Strategic Stud Journal of Strategic Studies = J. Strategic Stud. Journal of Strength and Conditioning Research = J Strength Cond Res Journal of Strength and Conditioning Research = J. Strength Cond. Res. Journal of strength and conditioning research / National Strength & Conditioning Association = J Strength Cond Res Journal of stroke and cerebrovascular diseases : the official journal of National Stroke Association = J Stroke Cerebrovasc Dis Journal of Stroke & Cerebrovascular Diseases = J Stroke Cerebrovasc Journal of Stroke & Cerebrovascular Diseases = J. Stroke Cerebrovasc. Journal of structural and functional genomics = J Struct Funct Genomics Journal of Structural and Functional Genomics = J. Struct. Funct. Genomics Journal of structural biology = J Struct Biol Journal of Structural Biology=J Struct Biol;; Journal of Structural Biology = J Struct Biol Journal of Structural Biology = J. Struct. Biol. Journal of Structural Chemistry = J Struct Chem+ Journal of Structural Chemistry = J. Struct. Chem. Journal of Structural Chemistry = J. Struct. Chem+.+ Journal of Structural Design = J. Struct. Des. Journal of Structural Engineering-asce = J Struct Eng-asce Journal of Structural Engineering-asce = J. Struct. Eng-asce. Journal of Structural Engineering = J. Struct. Eng. Journal of Structural Geology = J Struct Geol Journal of Structural Geology = J. Struct. Geol. Journal of Structural Learning = J Struct Learn Journal of Structural Learning = J. Struct. Learn. Journal of Structural Mechanics = J Struct Mech Journal of Structural Mechanics = J. Struct. Mech. Journal of Studies in International Education = J Stud Int Educ Journal of Studies in International Education = J. Stud. Int. Educ. Journal of studies on alcohol and drugs = J Stud Alcohol Drugs Journal of Studies On Alcohol and Drugs = J Stud Alcohol Drugs Journal of Studies On Alcohol and Drugs = J. Stud. Alcohol Drugs Journal of studies on alcohol = J Stud Alcohol Journal of Studies on Alcohol=J Stud Alcohol;; Journal of Studies on Alcohol = J. Stud. Alcohol Journal of Studies On Alcohol = J Stud Alcohol Journal of Studies On Alcohol = J. Stud. Alcohol Journal of studies on alcohol. Supplement = J Stud Alcohol Suppl Journal of Studies on Alcohol. Supplement=J Stud Alcohol Suppl;; Journal of Studies on Alcohol. Supplement = J. Stud. Alcohol. Suppl. Journal of Submicroscopic Cytology and Pathology = J Submicr Cytol Path Journal of Submicroscopic Cytology and Pathology = J. Submicr. Cytol. Path. Journal of submicroscopic cytology and pathology = J Submicrosc Cytol Pathol Journal of Submicroscopic Cytology and Pathology=J Submicrosc Cytol Pathol;; Journal of Submicroscopic Cytology and Pathology = J. Submicrosc. Cytol. Pathol. Journal of submicroscopic cytology = J Submicrosc Cytol Journal of Submicroscopic Cytology = J Submicrosc Cytol Journal of Submicroscopic Cytology = J. Submicrosc. Cytol. Journal of substance abuse = J Subst Abuse Journal of Substance Abuse=J Subst Abuse;; Journal of Substance Abuse = J Subst Abuse Journal of Substance Abuse = J. Subst. Abuse Journal of substance abuse treatment = J Subst Abuse Treat Journal of Substance Abuse Treatment=J Subst Abuse Treat;; Journal of Substance Abuse Treatment = J Subst Abuse Treat Journal of Substance Abuse Treatment = J. Subst. Abuse Treat. Journal of Substance Use = J Subst Use Journal of Substance Use = J. Subst. Use Journal of Sulfur Chemistry = J Sulfur Chem Journal of Sulfur Chemistry = J. Sulfur Chem. Journal of Supercomputing = J Supercomput Journal of Supercomputing = J. Supercomput. Journal of Superconductivity and Novel Magnetism = J. Supercond. Novel Magn. Journal of Superconductivity and Novel Magnetism = J Supercond Nov Magn Journal of Superconductivity and Novel Magnetism = J. Supercond. Nov. Magn. Journal of Superconductivity = J Supercond Journal of Superconductivity = J. Supercond. Journal of Supercritical Fluids = J Supercrit Fluid Journal of Supercritical Fluids = J. Supercrit. Fluid. Journal of Supercritical Fluids = J. Supercrit. Fluids Journal of Superhard Materials = J Superhard Mater Journal of Superhard Materials = J. Superhard Mater. Journal of Supportive Oncology = J. Support. Oncol. Journal of Supramolecular Chemistry = J. Supramol. Chem. Journal of Supramolecular Chemistry = J. Supramolecular Chemistry Journal of Supramolecular Structure and Cellular Biochemistry = J Supramol Str Cell Journal of Supramolecular Structure and Cellular Biochemistry = J. Supramol. Str. Cell. Journal of supramolecular structure and cellular biochemistry = J Supramol Struct Cell Biochem Journal of Supramolecular Structure and Cellular Biochemistry = J. Supramol. Struct. Cell. Biochem. Journal of supramolecular structure and cellular biochemistry. Supplement = J Supramol Struct Cell Biochem Suppl Journal of Supramolecular Structure and Cellular Biochemistry. Supplement = J. Supramol. Struct. Cell. Biochem. Suppl. Journal of Supramolecular Structure = J Supramol Str Cell Journal of Supramolecular Structure = J. Supramol. Str. Cell. Journal of supramolecular structure = J Supramol Struct Journal of Supramolecular Structure = J. Supramol. Struct. Journal of supramolecular structure. Supplement = J Supramol Struct Suppl Journal of Supramolecular Structure. Supplement = J. Supramol. Struct. Suppl. Journal of Surface Investigation: X-ray, Synchrotron and Neutron Techniques = J. Surf. Invest. Journal of Surface Investigation-x-ray Synchrotron and Neutron Techniques = J Surf Investig-x-ra Journal of Surface Investigation-x-ray Synchrotron and Neutron Techniques = J. Surf. Investig-x-ra. Journal of Surface Investigation-x-ray Synchrotron and Neutron Techniques = J Surf Invest-x-ray+ Journal of Surface Investigation-x-ray Synchrotron and Neutron Techniques = J. Surf. Invest-x-ray+.+ Journal of Surfactants and Detergents = J Surfactants Deterg Journal of Surfactants and Detergents = J. Surfactants Deterg. Journal of surgical education = J Surg Educ Journal of Surgical Education = J Surg Educ Journal of Surgical Education = J. Surg. Educ. Journal of surgical oncology = J Surg Oncol Journal of Surgical Oncology=J Surg Oncol;; Journal of Surgical Oncology = J Surg Oncol Journal of Surgical Oncology = J. Surg. Oncol. Journal of surgical oncology. Supplement = J Surg Oncol Suppl Journal of Surgical Oncology. Supplement=J Surg Oncol Suppl;; Journal of Surgical Oncology. Supplement = J. Surg. Oncol. Suppl. Journal of surgical orthopaedic advances = J Surg Orthop Adv Journal of Surgical Orthopaedic Advances = J. Surg. Orthop. Adv. Journal of Surgical Research=J Surg Res;; Journal of Surgical Research = J Surg Res Journal of Surgical Research = J. Surg. Res. Journal of Surveying Engineering-asce = J Surv Eng-asce Journal of Surveying Engineering-asce = J. Surv. Eng-asce. Journal of Surveying Engineering = J. Surv. Eng. Journal of Sustainable Agriculture = J Sustain Agr Journal of Sustainable Agriculture = J. Sustain. Agr. Journal of Sustainable Forestry = J. Sustainable For. Journal of Sustainable Product Design = J. Sustainable Prod. Des. Journal of Sustainable Science and Management = J. Sustainable Sci. Manage. Journal of Sustainable Tourism = J Sustain Tour Journal of Sustainable Tourism = J. Sustain. Tour. Journal of Swine Health and Production = J Swine Health Prod Journal of Swine Health and Production = J. Swine Health Prod. Journal of Symbolic Computation = J Symb Comput Journal of Symbolic Computation = J. Symb. Comput. Journal of Symbolic Computation = J. Symbolic Comput. Journal of Symbolic Logic = J Symbolic Logic Journal of Symbolic Logic = J. Symbolic Logic Journal of Symplectic Geometry = J Symplect Geom Journal of Symplectic Geometry = J. Symplect. Geom. Journal of synchrotron radiation = J Synchrotron Radiat Journal of Synchrotron Radiation = J Synchrotron Radiat Journal of Synchrotron Radiation = J. Synchrotron Radiat. Journal of Synchrotron Radiat. = J. Synchrotron Radiat. Journal of Synthetic Lubrication = J. Synth. Lubr. Journal of Synthetic Organic Chemistry Japan = J Syn Org Chem Jpn Journal of Synthetic Organic Chemistry Japan = J. Syn. Org. Chem. Jpn. Journal of Synthetic Organic Chemistry, Japan = J. Synth. Org. Chem Jpn. Journal of Systematic Palaeontology = J Syst Palaeontol Journal of Systematic Palaeontology = J. Syst. Palaeontol. Journal of Systematic Palaeontology = J. Syst. Paleontol. Journal of Systematics and Evolution = J Syst Evol Journal of Systematics and Evolution = J. Syst. Evol. Journal of Systems and Software = J Syst Software Journal of Systems and Software = J. Syst. Software Journal of Systems Architecture = J. Syst. Archit. Journal of Systems Architecture = J Syst Architect Journal of Systems Architecture = J. Syst. Architect. Journal of Systems Engineering and Electronics = J Syst Eng Electron Journal of Systems Engineering and Electronics = J. Syst. Eng. Electron. Journal of Systems Engineering = J. Systems Engrg. Journal of Systems Engineering = J. Syst. Eng. Journal of Systems Engineering = J Syst Eng Journal of Systems Engineering = J. Syst. Eng. Journal of Systems Management = J Syst Manage Journal of Systems Management = J. Syst. Manage. Journal of Systems Science and Mathematical Sciences = J. Systems Sci. Math. Sci. Journal of Systems Science and Systems Engineering = J Syst Sci Syst Eng Journal of Systems Science and Systems Engineering = J. Syst. Sci. Syst. Eng. Journal of Systems Science & Complexity = J Syst Sci Complex Journal of Systems Science & Complexity = J. Syst. Sci. Complex. Journal of Taxation = J Tax Journal of Taxation = J. Tax. Journal of Taxation=J. Taxation Journal of Teacher Education = J Teach Educ Journal of Teacher Education = J. Teach. Educ. Journal of Teaching and Research in Chemistry = J. Teach. Res. Chem. Journal of Teaching in Physical Education = J Teach Phys Educ Journal of Teaching in Physical Education = J. Teach. Phys. Educ. Journal of Technical Topics in Civil Engineering-asce = J Tech Top Civ-asce Journal of Technical Topics in Civil Engineering-asce = J. Tech. Top. Civ-asce. Journal of Technical Writing and Communication = J Tech Writ Commun Journal of Technical Writing and Communication = J. Tech. Writ. Commun. Journal of Technology Transfer = J Technol Transfer Journal of Technology Transfer = J. Technol. Transfer Journal of Technology Transfer=J. Tech. Transfer Journal of Telecommunication Networks = J Telecommun Network Journal of Telecommunication Networks = J. Telecommun. Network. Journal of telemedicine and telecare = J Telemed Telecare Journal of Telemedicine and Telecare=J Telemed Telecare;; Journal of Telemedicine and Telecare = J Telemed Telecare Journal of Telemedicine and Telecare = J. Telemed. Telecare Journal of Terramechanics = J. Terramech. Journal of Terramechanics = J Terramechanics Journal of Terramechanics = J. Terramechanics Journal of Testing and Evaluation = J Test Eval Journal of Testing and Evaluation = J. Test. Eval. Journal of texture studies = J Texture Stud Journal of Texture Studies = J Texture Stud Journal of Texture Studies = J. Texture Stud. Journal of Thai Association for Voluntary Sterilization = J Thai Assoc Volunt Steriliz Journal of thanatology = J Thanatol Journal of Thanatology = J Thanatol Journal of Thanatology = J. Thanatol. Journal of The Academy of Marketing Science = J Acad Market Sci Journal of The Academy of Marketing Science = J. Acad. Market. Sci. Journal of The Academy of Rehabilitative Audiology-cedar Falls = J Acad R Journal of The Academy of Rehabilitative Audiology-cedar Falls = J. Acad. R. Journal of The Academy of Rehabilitative Audiology. = J Acad Reh Journal of The Academy of Rehabilitative Audiology. = J. Acad. Reh. Journal of The Academy of Rehabilitative Audiology, Vol 23 = J Acad R Journal of The Academy of Rehabilitative Audiology, Vol 23 = J. Acad. R. Journal of The Academy of Rehabilitative Audiology, Vol 25 = J Acad R Journal of The Academy of Rehabilitative Audiology, Vol 25 = J. Acad. R. Journal of The Academy of Rehabilitative Audiology, Vol 28, 1995 = J Acad Reh Journal of The Academy of Rehabilitative Audiology, Vol 28, 1995 = J. Acad. Reh. Journal of The Academy of Rehabilitative Audiology, Vol Xxx, 1997 = J Acad Reh Journal of The Academy of Rehabilitative Audiology, Vol Xxx, 1997 = J. Acad. Reh. Journal of The Academy of Rehabilitative Audiology, Vol Xxxv, 2002 = J Acad Reh Journal of The Academy of Rehabilitative Audiology, Vol Xxxv, 2002 = J. Acad. Reh. Journal of the ACM = J. ACM Journal of The Acm = J Acm Journal of The Acm = J. Acm Journal of the Acoustical Society of America = J. Acoust. Soc. Am. Journal of The Acoustical Society of America = J Acoust Soc Am Journal of The Acoustical Society of America = J. Acoust. Soc. Am. Journal of The Acoustical Society Of America=J Acoust Soc Am;; Journal of the Aeronautical Sciences = J. Aeronaut. Sci. Journal of The Aeronautical Sciences = J Aeronaut Sci Journal of The Aeronautical Sciences = J. Aeronaut. Sci. Journal of The Aerospace Sciences = J Aerosp Sci Journal of The Aerospace Sciences = J. Aerosp. Sci. Journal of the Afro-American Historical and Genealogical Society. Afro-American Historical and Genealogical Society (Washington, D.C.) = J Afro Am Hist Geneal Soc Journal of The Agricultural Association of China = J Agr Assoc China Journal of The Agricultural Association of China = J. Agr. Assoc. China Journal of The Agricultural Chemical Society of Japan = J Agr Chem Soc Jpn Journal of The Agricultural Chemical Society of Japan = J. Agr. Chem. Soc. Jpn. Journal of The Agricultural Chemical Society of Japan = Nippon Nogeik Kaishi Journal of The Agricultural Chemical Society of Japan = Nippon. Nogeik. Kaishi. Journal of The Agricultural Society of Trinidad & Tobago = J Agr Soc Trinid Tob Journal of The Agricultural Society of Trinidad & Tobago = J. Agr. Soc. Trinid. Tob. Journal of the Air and Waste Management Association = J. Air Waste Manag. Assoc. Journal of The Air and Waste Management Association=J Air Waste Manag Assoc;; Journal of the Air and Waste Management Association = J. Air Waste Manage. Assoc. Journal of the Air Pollution Control Association = J Air Pollut Control Assoc Journal of the Air Pollution Control Association = J. Air Pollut. Control Assoc. Journal of The Air Pollution Control Association = Japca J Air Waste Ma Journal of The Air Pollution Control Association = Japca. J. Air Waste. Ma. Journal of the Air & Waste Management Association (1995) = J Air Waste Manag Assoc Journal of The Air & Waste Management Association = J Air Waste Manage Journal of The Air & Waste Management Association = J. Air Waste Manage. Journal of the Air & Waste Management Association = J Air Waste Manage Assoc Journal of The Albert Einstein Medical Center = J Alb Einstein Med C Journal of The Albert Einstein Medical Center = J. Alb. Einstein Med. C. Journal of the All India Dental Association = J. All India Dent. Assoc. Journal of the All-India Ophthalmological Society = J All India Ophthalmol Soc Journal of the All-India Ophthalmological Society = J. All. India Ophthalmol. Soc. Journal of The American Academy Of Audiology (Hamilton, Ont.=J Am Acad Audiol;; Journal of the American Academy of Audiology = J Am Acad Audiol Journal of the American Academy of Audiology = J. Am. Acad. Audiol. Journal of The American Academy of Audiology = J Am Acad Audiol Journal of The American Academy of Audiology = J. Am. Acad. Audiol. Journal of the American Academy of Child and Adolescent Psychiatry = J Am Acad Child Adolesc Psychiatry Journal of the American Academy of Child and Adolescent Psychiatry = J. Am. Acad. Child Adolesc. Psychiatry Journal of The American Academy Of Child and Adolescent Psychiatry=J Am Acad Child Adolesc Psychiatry;; Journal of The American Academy of Child and Adolescent Psychiatry = J Am Acad Child Psy Journal of The American Academy of Child and Adolescent Psychiatry = J. Am. Acad. Child Psy. Journal of the American Academy of Child Psychiatry = J Am Acad Child Psychiatry Journal of the American Academy of Child Psychiatry = J. Am. Acad. Child Psychiatry Journal of The American Academy of Child Psychiatry = J Amer Acad Child Ps Journal of The American Academy of Child Psychiatry = J. Amer. Acad. Child Ps. Journal of the American Academy of Dermatology = J Am Acad Dermatol Journal of the American Academy of Dermatology = J. Am. Acad. Dermatol. Journal of The American Academy of Dermatology = J Am Acad Dermatol Journal of The American Academy of Dermatology = J. Am. Acad. Dermatol. Journal of The American Academy Of Dermatology=J Am Acad Dermatol;; Journal of the American Academy of Gold Foil Operators = J. Am. Acad. Gold Foil Oper. Journal of The American Academy of Nurse Practitioners = J Am Acad Nurse Prac Journal of The American Academy of Nurse Practitioners = J. Am. Acad. Nurse Prac. Journal of the American Academy of Nurse Practitioners = J Am Acad Nurse Pract Journal of the American Academy of Nurse Practitioners = J. Am. Acad. Nurse Pract. Journal of The American Academy of Orthopaedic Surgeons = J Am Acad Orthop Sur Journal of The American Academy of Orthopaedic Surgeons = J. Am. Acad. Orthop. Sur. Journal of the American Academy of Orthopaedic Surgeons = J. Am. Acad. Orthop. Surg. Journal of the American Academy of Physician Assistants = J Am Acad Physician Assist Journal of The American Academy of Psychiatry and Neurology = J Am Acad Psych Neur Journal of The American Academy of Psychiatry and Neurology = J. Am. Acad. Psych. Neur. Journal of The American Academy of Psychiatry and The Law = J Am Acad Psychiatry Journal of The American Academy of Psychiatry and The Law = J. Am. Acad. Psychiatry Journal of the American Academy of Psychiatry and the Law = J. Am. Acad. Psychiatry Law Journal of The American Academy Of Psychiatry and The Law=J Am Acad Psychiatry Law;; Journal of the American Academy of Psychoanalysis and Dynamic Psychiatry = J. Am. Acad. Psychoanal. Dyn. Psychiatry Journal of The American Academy of Psychoanalysis = J Am Acad Psychoan Journal of The American Academy of Psychoanalysis = J. Am. Acad. Psychoan. Journal of the American Academy of Psychoanalysis = J. Am. Acad. Psychoanal. Journal of The American Academy Of Psychoanalysis=J Am Acad Psychoanal;; Journal of the American Academy of Religion. American Academy of Religion = J Am Acad Relig Journal of The American Academy of Religion = J Am Acad Relig Journal of The American Academy of Religion = J. Am. Acad. Relig. Journal of The American Aging Association = J Am Aging Assoc Journal of The American Aging Association = J. Am. Aging Assoc. Journal of the American Animal Hospital Association = J Am Anim Hosp Assoc Journal of the American Animal Hospital Association = J. Am. Anim. Hosp. Assoc. Journal of The American Animal Hospital Association=J Am Anim Hosp Assoc;; Journal of The American Animal Hospital Association = J Am Anim Hosp Assoc Journal of The American Animal Hospital Association = J. Am. Anim. Hosp. Assoc. Journal of the American Association for Laboratory Animal Science : JAALAS = J Am Assoc Lab Anim Sci Journal of The American Association for Laboratory Animal Science = J Am Assoc Lab Anim Journal of The American Association for Laboratory Animal Science = J. Am. Assoc. Lab. Anim. Journal of the American Association for Laboratory Animal Science = J. Am. Assoc. Lab. Anim. Sci. Journal of the American Association of Gynecologic Laparoscopists = J. Am. Assoc. Gynecol. Laparosc. Journal of The American Association Of Gynecologic Laparoscopists=J Am Assoc Gynecol Laparosc;; Journal of The American Association of Gynecologic Laparoscopists = J Am Assoc Gyn Lap Journal of The American Association of Gynecologic Laparoscopists = J. Am. Assoc. Gyn. Lap. Journal of the American Association of Nephrology Nurses and Technicians = J. Am. Assoc. Nephrol. Nurses Tech. Journal of The American Association of Nurse Anesthetists = J Am Ass Nurs Anesth Journal of The American Association of Nurse Anesthetists = J. Am. Ass. Nurs. Anesth. Journal of the American Association of Nurse Anesthetists = J. Am. Assoc. Nurse Anesth. Journal of the American Audiology Society = J Am Audiol Soc Journal of the American Audiology Society = J. Am. Audiol. Soc. Journal of The American Audiology Society = J Am Auditory Soc Journal of The American Audiology Society = J. Am. Auditory. Soc. Journal of The American Auditory Society = J Am Auditory Soc Journal of The American Auditory Society = J. Am. Auditory Soc. Journal of the American Auditory Society = J Am Aud Soc Journal of the American Auditory Society = J. Am. Aud. Soc. Journal of the American Board of Family Medicine : JABFM = J Am Board Fam Med Journal of the American Board of Family Medicine = J. Am. Board Fam. Med. Journal of The American Board of Family Medicine = J Am Board Fam Med Journal of The American Board of Family Medicine = J. Am. Board Fam. Med. Journal of the American Board of Family Practice = J. Am. Board Fam. Pract. Journal of The American Board of Family Practice = J Am Board Fam Pract Journal of The American Board of Family Practice = J. Am. Board Fam. Pract. Journal of The American Board Of Family Practice=J Am Board Fam Pract;; Journal of the American Ceramic Society = J. Am. Ceram. Soc. Journal of The American Ceramic Society = J Am Ceram Soc Journal of The American Ceramic Society = J. Am. Ceram. Soc. Journal of the American Chemical Society = JACS Journal of the American Chemical Society = J Am Chem Soc Journal of the American Chemical Society = J. Am. Chem. Soc. Journal of The American Chemical Society = J Am Chem Soc Journal of The American Chemical Society = J. Am. Chem. Soc. Journal of The American College Health Association = J Am Coll Health Ass Journal of The American College Health Association = J. Am. Coll. Health Ass. Journal of the American College Health Association = J Am Coll Health Assoc Journal of the American College Health Association = J. Am. Coll. Health Assoc. Journal of the American College of Cardiology = J Am Coll Cardiol Journal of the American College of Cardiology = J. Am. Coll. Cardiol. Journal of The American College of Cardiology = J Am Coll Cardiol Journal of The American College of Cardiology = J. Am. Coll. Cardiol. Journal of The American College Of Cardiology=J Am Coll Cardiol;; Journal of the American College of Dentists = J. Am. Coll. Dent. Journal of The American College Of Dentists=J Am Coll Dent;; Journal of The American College of Health Association = J Amer Coll Health A Journal of The American College of Health Association = J. Amer. Coll. Health A. Journal of the American College of Neuropsychiatrists = J Am Coll Neuropsychiatr Journal of the American College of Nutrition = J Am Coll Nutr Journal of the American College of Nutrition = J. Am. Coll. Nutr. Journal of The American College of Nutrition = J Am Coll Nutr Journal of The American College of Nutrition = J. Am. Coll. Nutr. Journal of The American College Of Nutrition=J Am Coll Nutr;; Journal of the American College of Radiology : JACR = J Am Coll Radiol Journal of the American College of Surgeons = J Am Coll Surg Journal of the American College of Surgeons = J. Am. Coll. Surg. Journal of The American College Of Surgeons=J Am Coll Surg;; Journal of The American College of Surgeons = J Am Coll Surgeons Journal of The American College of Surgeons = J. Am. Coll. Surgeons Journal of the American College of Toxicology = J Am Coll Toxicol Journal of The American College of Toxicology = J Am Coll Toxicol Journal of The American College of Toxicology = J. Am. Coll. Toxicol. Journal of The American Concrete Institute = J Am Concrete I Journal of The American Concrete Institute = J. Am. Concrete I. Journal of the American Dental Association (1939) = J Am Dent Assoc Journal of the American Dental Association (Edizione Italiana) = J. Am. Dent. Assoc. (Ed. Ital.) Journal Of The American Dental Association (Edizione Italiana) = J Am Dent Assoc (Ed Ital) Journal of the American Dental Association = J. Am. Dent. Assoc. Journal of The American Dental Association=J Am Dent Assoc;; Journal of The American Dental Association = J Am Dent Assoc Journal of The American Dental Association = J. Am. Dent. Assoc. Journal of the American Dental Hygienists Association = J. Am. Dent. Hyg. Assoc. Journal of the American Dental Society of Anesthesiology = J Am Dent Soc Anesthesiol Journal of the American Dental Society of Anesthesiology = J. Am. Dent. Soc. Anesthesiol. Journal of the American Dietetic Association = J Am Diet Assoc Journal of the American Dietetic Association = J. Am. Diet. Assoc. Journal of The American Dietetic Association=J Am Diet Assoc;; Journal of The American Dietetic Association = J Am Diet Assoc Journal of The American Dietetic Association = J. Am. Diet. Assoc. Journal of the American Geriatrics Society = J Am Geriatr Soc Journal of the American Geriatrics Society = J. Am. Geriatr. Soc. Journal of The American Geriatrics Society=J Am Geriatr Soc;; Journal of The American Geriatrics Society = J Am Geriatr Soc Journal of The American Geriatrics Society = J. Am. Geriatr. Soc. Journal of The American Helicopter Society = J Am Helicopter Soc Journal of The American Helicopter Society = J. Am. Helicopter Soc. Journal of the American Historical Society of Germans from Russia. American Historical Society of Germans from Russia = J Am Hist Soc Ger Russ Journal of The American Institute for Conservation = J Am Inst Conserv Journal of The American Institute for Conservation = J. Am. Inst. Conserv. Journal of the American Institute of Homeopathy = J Am Inst Homeopath Journal of the American Institute of Homeopathy = J. Am. Inst. Homeopath. Journal of the American Institute of Planners = J Am Inst Plann Journal of the American Institute of Planners = J. Am. Inst. Plann. Journal of The American Institute of Planners = J Am I Planners Journal of The American Institute of Planners = J. Am. I. Planners Journal of The American Leather Chemists Association = J Am Leather Chem As Journal of The American Leather Chemists Association = J. Am. Leather Chem. As. Journal of the American Leather Chemists Association = J. Am. Leather Chem. Assoc. Journal of the American Mathematical Society = J. Amer. Math. Soc. Journal of The American Mathematical Society = J Am Math Soc Journal of The American Mathematical Society = J. Am. Math. Soc. Journal of The American Medical Association = J Amer Med Assoc Journal of The American Medical Association = J. Amer. Med. Assoc. Journal of the American Medical Association = J Am Med Assoc Journal of the American Medical Directors Association = J Am Med Dir Assoc Journal of The American Medical Directors Association = J Am Med Dir Assoc Journal of The American Medical Directors Association = J. Am. Med. Dir. Assoc. Journal of the American Medical Informatics Association : JAMIA = J Am Med Inform Assoc Journal of The American Medical Informatics Association = J Am Med Inform Assn Journal of The American Medical Informatics Association = J. Am. Med. Inform. Assn. Journal of the American Medical Informatics Association = J. Am. Med. Inform. Assoc. Journal of The American Medical Informatics Association=J Am Med Inform Assoc;; Journal of the American Medical Record Association = J Am Med Rec Assoc Journal of the American Medical Record Association = J. Am. Med. Rec. Assoc. Journal of the American Medical Technologists = J Am Med Technol Journal of The American Medical Technologists = J Am Med Technol Journal of The American Medical Technologists = J. Am. Med. Technol. Journal of the American Medical Women's Association (1972) = J Am Med Womens Assoc Journal of the American Medical Womens Association = J. Am. Med. Wom. Assoc. Journal of The American Medical Womens Association = J Am Med Women Assoc Journal of The American Medical Womens Association = J. Am. Med. Women. Assoc. Journal of the American Medical Women's Association = J Am Med Womens Assoc Journal of The American Medical Womens Association=J Am Med Womens Assoc;; Journal of the American Mosquito Control Association = J Am Mosq Control Assoc Journal of the American Mosquito Control Association = J. Am. Mosq. Control Assoc. Journal of The American Mosquito Control Association=J Am Mosq Control Assoc;; Journal of The American Mosquito Control Association = J Am Mosquito Contr Journal of The American Mosquito Control Association = J. Am. Mosquito Contr. Journal of the American Mosquito Control Association. Supplement = J Am Mosq Control Assoc Suppl Journal of the American Mosquito Control Association. Supplement = J. Am. Mosq. Control Assoc. Suppl. Journal of The American Mosquito Control Association. Supplement=J Am Mosq Control Assoc Suppl;; Journal of The American Musical Instrument Society = J Am Music Instrum S Journal of The American Musical Instrument Society = J. Am. Music. Instrum. S. Journal of The American Musicological Society = J Am Music Soc Journal of The American Musicological Society = J. Am. Music. Soc. Journal of the American Oil Chemists Society = J. Am. Oil Chem. Soc. Journal of the American Oil Chemists' Society = J Am Oil Chem Soc Journal of the American Oil Chemists' Society = J. Am. Oil Chem. Soc. Journal of The American Oil Chemists Society = J Am Oil Chem Soc Journal of The American Oil Chemists Society = J. Am. Oil Chem. Soc. Journal of the American Optometric Association = J Am Optom Assoc Journal of the American Optometric Association = J. Am. Optom. Assoc. Journal of The American Optometric Association=J Am Optom Assoc;; Journal of The American Optometric Association = J Am Optom Assoc Journal of The American Optometric Association = J. Am. Optom. Assoc. Journal of the American Oriental Society. American Oriental Society = J Am Orient Soc Journal of The American Oriental Society = J Am Oriental Soc Journal of The American Oriental Society = J. Am. Oriental Soc. Journal of the American Oriental Society = JAOS Journal of the American Oriental Society = JAOS Journal of the American Osteopathic Association = J. Am. Osteopath. Assoc. Journal of The American Osteopathic Association=J Am Osteopath Assoc;; Journal of The American Osteopathic Association = J Am Osteopath Assoc Journal of The American Osteopathic Association = J. Am. Osteopath. Assoc. Journal of the American Paraplegia Society = J. Am. Paraplegia Soc. Journal of the American Pharmaceutical Association. American Pharmaceutical Association = J Am Pharm Assoc Am Pharm Assoc (Baltim) Journal of the American Pharmaceutical Association = J Am Pharm Assoc Journal of the American Pharmaceutical Association = J. Am. Pharm. Assoc. Journal of The American Pharmaceutical Association = J Am Pharm Assoc Journal of The American Pharmaceutical Association = J. Am. Pharm. Assoc. Journal of The American Pharmaceutical Association=J Am Pharm Assoc (Wash);; Journal of The American Pharmaceutical Association-practical Pharmacy Edition = J Am Pharm Assoc P P Journal of The American Pharmaceutical Association-practical Pharmacy Edition = J. Am. Pharm. Assoc. P. P. Journal of The American Pharmaceutical Association-scientific Edition = J Am Pharm Assoc Sci Journal of The American Pharmaceutical Association-scientific Edition = J. Am. Pharm. Assoc. Sci. Journal of the American Pharmaceutical Association (Washington,D.C. : 1996) = J Am Pharm Assoc (Wash) Journal of the American Pharmaceutical Association (Washington, D.C.) = J. Am. Pharm. Assoc. (Wash.) Journal of The American Pharmacists Association = J Am Pharm Assn Journal of The American Pharmacists Association = J. Am. Pharm. Assn. Journal of the American Pharmacists Association = J. Am. Pharm. Assoc. Journal of The American Pharmacists Association = J Am Pharm Assoc Journal of The American Pharmacists Association = J. Am. Pharm. Assoc. Journal of the American Pharmacists Association : JAPhA = J Am Pharm Assoc (2003) Journal of the American Physical Therapy Association = J Am Phys Ther Assoc Journal of the American Planning Association. American Planning Association = J Am Plann Assoc Journal of the American Planning Association = J. Am. Plann. Assoc. Journal of The American Planning Association = J Am Plann Assoc Journal of The American Planning Association = J. Am. Plann. Assoc. Journal of The American Podiatric Medical Association = J Am Podiat Med Assn Journal of The American Podiatric Medical Association = J. Am. Podiat. Med. Assn. Journal of the American Podiatric Medical Association = J Am Podiatr Med Assoc Journal of the American Podiatric Medical Association = J. Am. Podiatr. Med. Assoc. Journal of The American Podiatric Medical Association=J Am Podiatr Med Assoc;; Journal of The American Podiatry Association = J Am Pod Assoc Journal of The American Podiatry Association = J. Am. Pod. Assoc. Journal of the American Podiatry Association = J Am Podiatry Assoc Journal of the American Podiatry Association = J. Am. Podiatry Assoc. Journal of The American Pomological Society = J Amer Pomolog Soc Journal of The American Pomological Society = J. Amer. Pomolog. Soc. Journal of The American Pomological Society = J Am Pomol Soc Journal of The American Pomological Society = J. Am. Pomol. Soc. Journal of the American Psychiatric Nurses Association = J Am Psychiatr Nurses Assoc Journal of The American Psychoanalytic Association = J Am Psychoanal Ass Journal of The American Psychoanalytic Association = J. Am. Psychoanal. Ass. Journal of the American Psychoanalytic Association = J Am Psychoanal Assoc Journal of the American Psychoanalytic Association = J. Am. Psychoanal. Assoc. Journal of The American Psychoanalytic Association=J Am Psychoanal Assoc;; Journal of the American Real Estate and Urban Economics Association=J. Amer. Real Estate Urban Econ. Assoc. Journal of The American Real Estate and Urban Economics Association = J Am Real Estate Urb Journal of The American Real Estate and Urban Economics Association = J. Am. Real Estate Urb. Journal of the American Research Center in Egypt = JARCE Journal of the American Research Center in Egypt = JARCE Journal of The American Rocket Society = J Am Rocket Soc Journal of The American Rocket Society = J. Am. Rocket Soc. Journal of the American Scientific Affiliation. American Scientific Affiliation = J Am Sci Affil Journal of the American Society for Geriatric Dentistry = J. Am. Soc. Geriatr. Dent. Journal of the American Society for Horticultural Science. American Society for Horticultural Science = J Am Soc Hortic Sci Journal of the American Society for Horticultural Science = J. Am. Soc. Hortic. Sci. Journal of The American Society for Horticultural Science = J Am Soc Hortic Sci Journal of The American Society for Horticultural Science = J. Am. Soc. Hortic. Sci. Journal of the American Society for Information Science. American Society for Information Science = J Am Soc Inf Sci Journal of The American Society for Information Science and Technology = J Am Soc Inf Sci Tec Journal of The American Society for Information Science and Technology = J. Am. Soc. Inf. Sci. Tec. Journal of The American Society for Information Science = J Am Soc Inform Sci Journal of The American Society for Information Science = J. Am. Soc. Inform. Sci. Journal of the American Society for Information Science = J. Am. Soc. Inf. Sci. Journal of The American Society for Mass Spectrometry = J Am Soc Mass Spectr Journal of The American Society for Mass Spectrometry = J. Am. Soc. Mass Spectr. Journal of the American Society for Mass Spectrometry = J Am Soc Mass Spectrom Journal of the American Society for Mass Spectrometry = J. Am. Soc. Mass Spectrom. Journal of the American Society for Mass Spectrometry = J. Am. Soc. Mass. Spectrom. Journal of the American Society for Preventive Dentistry = J. Am. Soc. Prev. Dent. Journal of The American Society for Psychical Research = J Am Soc Psychical R Journal of The American Society for Psychical Research = J. Am. Soc. Psychical R. Journal of the American Society for the Study of Orthodontics. American Society for the Study of Orthodontics = J Am Soc Study Orthod Journal of The American Society of Agronomy = J Am Soc Agron Journal of The American Society of Agronomy = J. Am. Soc. Agron. Journal of the American Society of Brewing Chemists = J. Am. Soc. Brew. Chem. Journal of The American Society of Brewing Chemists = J Am Soc Brew Chem Journal of The American Society of Brewing Chemists = J. Am. Soc. Brew. Chem. Journal of The American Society of Echocardiography = J Am Soc Echocardiog Journal of The American Society of Echocardiography = J. Am. Soc. Echocardiog. Journal of the American Society of Echocardiography = J. Am. Soc. Echocardiogr. Journal of The American Society Of Echocardiography=J Am Soc Echocardiogr;; Journal of the American Society of Echocardiography : official publication of the American Society of Echocardiography = J Am Soc Echocardiogr Journal of The American Society of Hypertension = J Am Soc Hypertens Journal of The American Society of Hypertension = J. Am. Soc. Hypertens. Journal of the American Society of Naval Engineers = J. Am. Soc. Naval Eng. Journal of the American Society of Nephrology = J. Am. Soc. Nephrol. Journal of The American Society of Nephrology = J Am Soc Nephrol Journal of The American Society of Nephrology = J. Am. Soc. Nephrol. Journal of The American Society Of Nephrology=J Am Soc Nephrol;; Journal of the American Society of Nephrology : JASN = J Am Soc Nephrol Journal of the American Society of Psychosomatic Dentistry and Medicine = J. Am. Soc. Psychosom. Dent. Med. Journal of The American Society of Sugar Beet Technologists = J Am Soc Sugar Beet Journal of The American Society of Sugar Beet Technologists = J. Am. Soc. Sugar Beet Journal of the American Statistical Association = J. Amer. Statist. Assoc. Journal of the American Statistical Association=J. Amer. Statistical Assoc. Journal of the American Statistical Association = J Am Stat Assoc Journal of the American Statistical Association = J. Am. Stat. Assoc. Journal of The American Statistical Association = J Am Stat Assoc Journal of The American Statistical Association = J. Am. Stat. Assoc. Journal of the American Venereal Disease Association = J Am Vener Dis Assoc Journal of the American Venereal Disease Association = J. Am. Vener. Dis. Assoc. Journal of the American Veterinary Medical Association = J Am Vet Med Assoc Journal of the American Veterinary Medical Association = J. Am. Vet. Med. Assoc. Journal of The American Veterinary Medical Association=J Am Vet Med Assoc;; Journal of The American Veterinary Medical Association = J Am Vet Med Assoc Journal of The American Veterinary Medical Association = J. Am. Vet. Med. Assoc. Journal of The American Veterinary Radiology Society = J Am Vet Radiol Soc Journal of The American Veterinary Radiology Society = J. Am. Vet. Radiol. Soc. Journal of The American Water Resources Association = J Am Water Resour As Journal of The American Water Resources Association = J. Am. Water Resour. As. Journal of the American Water Resources Association = J. Am. Water Resour. Assoc. Journal of the Anatomical Society of India = J Anat Soc India Journal of the Anatomical Society of India = J. Anat. Soc. India Journal of The Anatomical Society of India = J Anat Soc India Journal of The Anatomical Society of India = J. Anat. Soc. India Journal of The Anthropological Society of Nippon = J Anthropol Soc Nip Journal of The Anthropological Society of Nippon = J. Anthropol. Soc. Nip. Journal of the Argentine Chemical Society = J. Argent. Chem. Soc. Journal of The Arkansas Medical Society = J Arkansas Med Soc Journal of The Arkansas Medical Society = J. Arkansas Med. Soc. Journal of the Arkansas Medical Society = J. Ark. Med. Soc. Journal of The Arkansas Medical Society=J Ark Med Soc;; Journal of the Arnold Arboretum. Arnold Arboretum = J Arnold Arbor Journal of The Arnold Arboretum = J Arnold Arboretum Journal of The Arnold Arboretum = J. Arnold Arboretum Journal of The Arnold Schoenberg Institute = J Arnold Schoenberg Journal of The Arnold Schoenberg Institute = J. Arnold Schoenberg Journal of the Asahikawa National College of Technology = J. Asahikawa Nat. College Tech. Journal of The Asia Pacific Economy = J Asia Pac Econ Journal of The Asia Pacific Economy = J. Asia Pac. Econ. Journal of the Asia Pacific Economy=J. Asia Pacific Economy Journal of the Asiatic Society = J Asiat Soc Journal of the Assam Science Society = J. Assam Sci. Soc. Journal of the Association for Academic Minority Physicians = J. Assoc. Acad. Minor. Phys. Journal of The Association For Academic Minority Physicians=J Assoc Acad Minor Phys;; Journal of the Association for Academic Minority Physicians : the official publication of the Association for Academic Minority Physicians = J Assoc Acad Minor Phys Journal of The Association for Computing Machinery = J Assoc Comput Mach Journal of The Association for Computing Machinery = J. Assoc. Comput. Mach. Journal of The Association for Information Systems = J Assoc Inf Syst Journal of The Association for Information Systems = J. Assoc. Inf. Syst. Journal of The Association for Persons With Severe Handicaps = J Assoc Pers Severe Journal of The Association for Persons With Severe Handicaps = J. Assoc. Pers. Severe Journal of the Association for Physical and Mental Rehabilitation = J Assoc Phys Ment Rehabil Journal of the Association for Physical and Mental Rehabilitation = J. Assoc. Phys. Ment. Rehabil. Journal of the Association for Research in Otolaryngology : JARO = J Assoc Res Otolaryngol Journal of the Association for Research in Otolaryngology = J. Assoc. Res. Otolaryngol. Journal of the Association for the Care of Children in Hospitals = J Assoc Care Child Hosp Journal of the Association for the Care of Children in Hospitals = J. Assoc. Care Child. Hosp. Journal of the Association for the Care of Children's Health = J Assoc Care Child Health Journal of the Association for the Care of Children's Health = J. Assoc. Care Child. Health Journal of The Association for The Study of Perception = J Assoc Stud Percept Journal of The Association for The Study of Perception = J. Assoc. Stud. Percept. Journal of The Association of American Medical Colleges = J Assoc Am Med Coll Journal of The Association of American Medical Colleges = J. Assoc. Am. Med. Coll. Journal of The Association of Asphalt Paving Technologists = J Assoc Asphalt Pav Journal of The Association of Asphalt Paving Technologists = J. Assoc. Asphalt Pav. Journal of the Association of Asphalt Paving Technologists = J. Assoc. Asphalt Paving Technol. Journal of the Association of Genetic Technologists = J Assoc Genet Technol Journal of the Association of Medical Illustrators = J Assoc Med Illus Journal of the Association of Nurses in AIDS Care = J. Assoc. Nurses AIDS Care Journal of The Association Of Nurses In AIDS Care=J Assoc Nurses AIDS Care;; Journal of The Association of Official Agricultural Chemists = J Assoc Off Agr Chem Journal of The Association of Official Agricultural Chemists = J. Assoc. Off. Agr. Chem. Journal of the Association of Official Agricultural Chemists = J. Assoc. Off. Agric. Chem. Journal of The Association of Official Analytical Chemists = J Assoc Off Ana Chem Journal of The Association of Official Analytical Chemists = J. Assoc. Off. Ana. Chem. Journal of the Association of Pediatric Oncology Nurses = J Assoc Pediatr Oncol Nurses Journal of the Association of Pediatric Oncology Nurses = J. Assoc. Pediatr. Oncol. Nurses Journal of the Association of Physicians of India = J. Assoc. Physicians India Journal of The Association Of Physicians Of India=J Assoc Physicians India;; Journal of the Association of Public Analysts = J. Assoc. Public Anal. Journal of The Association of Public Analysts = J Assoc Public Anal Journal of The Association of Public Analysts = J. Assoc. Public Anal. Journal of The Astronautical Sciences = J Astronaut Sci Journal of The Astronautical Sciences = J. Astronaut. Sci. Journal of the Atmospheric Sciences = J. Atmospheric Sci. Journal of the Atmospheric Sciences = J. Atmos. Sci. Journal of The Atmospheric Sciences = J Atmos Sci Journal of The Atmospheric Sciences = J. Atmos. Sci. Journal of The Atomic Energy Society of Japan = J Atom Energ Soc Jpn Journal of The Atomic Energy Society of Japan = J. Atom. Energ. Soc. Jpn. Journal of the Audio Engineering Society. Audio Engineering Society = J Audio Eng Soc Journal of The Audio Engineering Society = J Audio Eng Soc Journal of The Audio Engineering Society = J. Audio Eng. Soc. Journal of The Australasian Ceramic Society = J Aust Ceram Soc Journal of The Australasian Ceramic Society = J. Aust. Ceram. Soc. Journal of the Australasian Ceramic Society = J. Australas. Ceram. Soc. Journal of The Australasian Institute of Metals = J Aust I Met Journal of The Australasian Institute of Metals = J. Aust. I. Met. Journal of the Australasian Universities Language and Literature Association = AUMLA Journal of the Australian Ceramic Society = J. Aust. Ceram. Soc. Journal of The Australian Entomological Society = J Aust Entomol Soc Journal of The Australian Entomological Society = J. Aust. Entomol. Soc. Journal of The Australian Institute of Agricultural Science = J Aust I Agr Sci Journal of The Australian Institute of Agricultural Science = J. Aust. I. Agr. Sci. Journal of The Australian Institute of Metals = J Aust Inst Metals Journal of The Australian Institute of Metals = J. Aust. Inst. Metals Journal of the Australian Institute of Surgical and Dental Technicians (Melbourne) = J. Aust. Inst. Surg. Dent. Tech. Journal Of The Australian Institute Of Surgical And Dental Technicians (Melbourne) = J Aust Inst Surg Dent Tech Journal of The Australian Mathematical Society = J Aust Math Soc Journal of The Australian Mathematical Society = J. Aust. Math. Soc. Journal of The Australian Mathematical Society Series A-pure Mathematics and Statistics = J Aust Math Soc A Journal of The Australian Mathematical Society Series A-pure Mathematics and Statistics = J. Aust. Math. Soc. A. Journal of The Australian Mathematical Society Series B-applied Mathematics = J Aust Math Soc B Journal of The Australian Mathematical Society Series B-applied Mathematics = J. Aust. Math. Soc. B. Journal of the Australian Population Association = J Aust Popul Assoc Journal of The Australian Traditional-medicine Society = J Aust Tradit-med So Journal of The Australian Traditional-medicine Society = J. Aust. Tradit-med. So. Journal of the autonomic nervous system = J Auton Nerv Syst Journal of the Autonomic Nervous System = J. Auton. Nerv. Syst. Journal of The Autonomic Nervous System=J Auton Nerv Syst;; Journal of The Autonomic Nervous System = J Autonom Nerv Syst Journal of The Autonomic Nervous System = J. Autonom. Nerv. Syst. Journal of The Balkan Tribological Association = J Balk Tribol Assoc Journal of The Balkan Tribological Association = J. Balk. Tribol. Assoc. Journal of the Baltimore College of Dental Surgery = J Baltimore Coll Dent Surg Journal of the Baltimore College of Dental Surgery = J. Baltimore Coll. Dent. Surg. Journal of the Bergen County Dental Society = J. Bergen Cty. Dent. Soc. Journal of the Biological Photographic Association = J Biol Photogr Assoc Journal of the Biological Photographic Association = J. Biol. Photogr. Assoc. Journal of The Biological Photographic Association = J Biol Photogr Assoc Journal of The Biological Photographic Association = J. Biol. Photogr. Assoc. Journal of the Black Sea/Mediterranean Environment = J. Black Sea/Mediterr. Environ. Journal of the Board of Greenkeeping Research = J. Board Greenkeep. Res. Journal of the Brazialian Computer Society = J. Braz. Comput. Sci. Journal of the Brazilian Chemical Society = J. Braz. Chem. Soc. Journal of The Brazilian Chemical Society = J Brazil Chem Soc Journal of The Brazilian Chemical Society = J. Brazil. Chem. Soc. Journal of The Brazilian Society of Mechanical Sciences and Engineering = J Braz Soc Mech Sci Journal of The Brazilian Society of Mechanical Sciences and Engineering = J. Braz. Soc. Mech. Sci. Journal of The British Archaeological Association = J Br Archaeol Assoc Journal of The British Archaeological Association = J. Br. Archaeol. Assoc. Journal of The British Association of Teachers of The Deaf = J Br Assoc Teach D Journal of The British Association of Teachers of The Deaf = J. Br. Assoc. Teach. D. Journal of The British Association of Teachers of The Deaf = Teach Deaf Journal of The British Association of Teachers of The Deaf = Teach. Deaf Journal of the British Endodontic Society = J Br Endod Soc Journal of the British Endodontic Society = J. Br. Endod. Soc. Journal of the British Fertility Society = J Br Fer Soc Journal of the British Grassland Society = J. Br. Grassl. Soc. Journal of The British Grassland Society = J Brit Grassland Soc Journal of The British Grassland Society = J. Brit. Grassland Soc. Journal of the British Interplanetary Society = J Br Interplanet Soc Journal of The British Interplanetary Society = J Brit Inter Soc Journal of The British Interplanetary Society = J. Brit. Inter. Soc. Journal of The British Nuclear Energy Society = J Brit Nucl Ener Soc Journal of The British Nuclear Energy Society = J. Brit. Nucl. Ener. Soc. Journal of The British Society for Phenomenology = J Brit Soc Phenomen Journal of The British Society for Phenomenology = J. Brit. Soc. Phenomen. Journal of the British Waterworks Association = J. Br. Waterworks Assoc. Journal of the California Dental Association = J Calif Dent Assoc Journal of the California Dental Association = J. Calif. Dent. Assoc. Journal of the Canadian Association of Radiologists = J Can Assoc Radiol Journal of the Canadian Association of Radiologists = J. Can. Assoc. Radiol. Journal of The Canadian Association of Radiologists-journal De L Association Canadienne Des Radiologistes = J Can Assoc Radiol Journal of The Canadian Association of Radiologists-journal De L Association Canadienne Des Radiologistes = J. Can. Assoc. Radiol. Journal of The Canadian Ceramic Society = J Can Ceram Soc Journal of The Canadian Ceramic Society = J. Can. Ceram. Soc. Journal of the Canadian Dental Association = J. Can. Dent. Assoc. Journal of The Canadian Dental Association = J Can Dent Assoc Journal of The Canadian Dental Association = J. Can. Dent. Assoc. Journal of the Canadian Dental Association = J Can Dent Assoc (Tor) Journal of the Canadian Dietetic Association = J Can Diet Assoc Journal of the Canadian Dietetic Association = J. Can. Diet. Assoc. Journal of The Canadian Dietetic Association-revue De L Association Canadienne Des Dietetistes = J Can Diet Assoc Journal of The Canadian Dietetic Association-revue De L Association Canadienne Des Dietetistes = J. Can. Diet. Assoc. Journal of The Canadian Historical Association-revue De La Societe Historique Du Canada = J Can Hist Assoc Journal of The Canadian Historical Association-revue De La Societe Historique Du Canada = J. Can. Hist. Assoc. Journal of the cardiometabolic syndrome = J Cardiometab Syndr Journal of the Catholic Nurses Guild of England and Wales = J Cathol Nurses Guild Engl Wales Journal of the Catholic Nurses Guild of England and Wales = J. Cathol. Nurses Guild Engl. Wales Journal of The Central Agricultural Experiment Station = J Cent Agr Exp Sta Journal of The Central Agricultural Experiment Station = J. Cent. Agr. Exp. Sta. Journal of the Ceramic Society of Japan = J. Ceram. Soc. Jpn. Journal of The Ceramic Society of Japan = J Ceram Soc Jpn Journal of The Ceramic Society of Japan = J. Ceram. Soc. Jpn. Journal of the Charles H. Tweed International Foundation = J Charles H. Tweed Int Found Journal of the Charles H. Tweed International Foundation = J. Charles H. Tweed Int. Found. Journal of The Chartered Institution of Water and Environmental Management = J Chart Inst Water E Journal of The Chartered Institution of Water and Environmental Management = J. Chart. Inst. Water E. Journal of the Chemical Society, Abstracts = J. Chem. Soc. Abstr. Journal of the Chemical Society A: Inorganic, Physical, Theoretical = J. Chem. Soc. A Journal of The Chemical Society A -inorganic Physical Theoretical = J Chem Soc A Journal of The Chemical Society A -inorganic Physical Theoretical = J. Chem. Soc. A Journal of the Chemical Society B: Physical Organic = J. Chem. Soc. B Journal of The Chemical Society B-physical Organic = J Chem Soc B Journal of The Chemical Society B-physical Organic = J. Chem. Soc. B. Journal of The Chemical Society-chemical Communications = J Chem Soc Chem Comm Journal of The Chemical Society-chemical Communications = J. Chem. Soc. Chem. Comm. Journal of the Chemical Society. Chemical communications = J Chem Soc Chem Commun Journal of the Chemical Society, Chemical Communications = J. Chem. Soc., Chem. Commun. Journal of the Chemical Society C: Organic = J. Chem. Soc. C Journal of The Chemical Society C-organic = J Chem Soc C Journal of The Chemical Society C-organic = J. Chem. Soc. C. Journal of The Chemical Society-dalton Transactions = J Chem Soc Dalton Journal of The Chemical Society-dalton Transactions = J. Chem. Soc. Dalton. Journal of the Chemical Society, Dalton Transactions = J. Chem. Soc., Dalton Trans. Journal of The Chemical Society D-chemical Communications = J Chem Soc Chem Comm Journal of The Chemical Society D-chemical Communications = J. Chem. Soc. Chem. Comm. Journal of the Chemical Society D: Chemical Communications = J. Chem. Soc. D Journal of the Chemical Society, Faraday Transactions 1: Physical Chemistry in Condensed Phases = J. Chem. Soc., Faraday Trans. 1 F Journal of the Chemical Society, Faraday Transactions 2: Molecular and Chemical Physics = J. Chem. Soc., Faraday Trans. 2 Journal of The Chemical Society-faraday Transactions Ii = J Chem Soc Farad T 2 Journal of The Chemical Society-faraday Transactions Ii = J. Chem. Soc. Farad. T. 2. Journal of The Chemical Society-faraday Transactions I = J Chem Soc Farad T 1 Journal of The Chemical Society-faraday Transactions I = J. Chem. Soc. Farad. T. 1. Journal of The Chemical Society-faraday Transactions = J Chem Soc Faraday T Journal of The Chemical Society-faraday Transactions = J. Chem. Soc. Faraday. T. Journal of the Chemical Society, Faraday Transactions = J. Chem. Soc., Faraday Trans. Journal of the Chemical Society = J Chem Soc Journal of the Chemical Society = J. Chem. Soc. Journal of The Chemical Society = J Chem Soc Journal of The Chemical Society = J. Chem. Soc. Journal of the Chemical Society of Pakistan = J. Chem. Soc. Pak. Journal of The Chemical Society of Pakistan = J Chem Soc Pakistan Journal of The Chemical Society of Pakistan = J. Chem. Soc. Pakistan Journal of the Chemical Society. Perkin transactions 1 = J Chem Soc [Perkin 1] Journal of the Chemical Society. Perkin Transactions 1 = J. Chem. Soc. [Perkin 1] Journal of the Chemical Society, Perkin Transactions 1 = J. Chem. Soc., Perkin Trans. 1 Journal of The Chemical Society-perkin Transactions 1 = J Chem Soc Perk T 1 Journal of The Chemical Society-perkin Transactions 1 = J. Chem. Soc. Perk. T. 1 Journal of the Chemical Society, Perkin Transactions 2 = J. Chem. Soc., Perkin Trans. 2 Journal of The Chemical Society-perkin Transactions 2 = J Chem Soc Perk T 2 Journal of The Chemical Society-perkin Transactions 2 = J. Chem. Soc. Perk. T. 2 Journal of the Chemical Society, Transactions = J. chem. Soc. Trans. Journal of the Chester Archaeological Society. Chester Archaeological Society = J Chester Archaeol Soc Journal of the Chilean Chemical Society = J. Chil. Chem. Soc. Journal of The Chilean Chemical Society = J Chil Chem Soc Journal of The Chilean Chemical Society = J. Chil. Chem. Soc. Journal of the China University of Geosciences = J. China Univ. Geosci. Journal of the Chinese Chemical Society = J. Chin. Chem. Soc. Journal of The Chinese Chemical Society = J Chin Chem Soc-taip Journal of The Chinese Chemical Society = J. Chin. Chem. Soc-taip. Journal of the Chinese Chemical Society (Taipei, Taiwan) = J. Chin. Chem. Soc. (Taipei, Taiwan) Journal of the Chinese Institute of Chemical Engineers = J. Chin. Inst. Chem. Eng, Journal of the Chinese Institute of Chemical Engineers = J. Chin. Inst. Chem. Eng. Journal of The Chinese Institute of Chemical Engineers = J Chin Inst Chem Eng Journal of The Chinese Institute of Chemical Engineers = J. Chin. Inst. Chem. Eng. Journal of The Chinese Institute of Engineers = J Chin Inst Eng Journal of The Chinese Institute of Engineers = J. Chin. Inst. Eng. Journal of the Chinese Medical Association = J. Chin. Med. Assoc. Journal of The Chinese Medical Association = J Chin Med Assoc Journal of The Chinese Medical Association = J. Chin. Med. Assoc. Journal of the Chinese Medical Association : JCMA = J Chin Med Assoc Journal of The Chinese Society of Mechanical Engineers = J Chin Soc Mech Eng Journal of The Chinese Society of Mechanical Engineers = J. Chin. Soc. Mech. Eng. Journal of The College and University Personnel Association = J Coll U Pers Assoc Journal of The College and University Personnel Association = J. Coll. U. Pers. Assoc. Journal of the College of General Practitioners = J. Coll. Gen. Pract. Journal of The College of Radiologists of Australasia = J Coll Radiol Austra Journal of The College of Radiologists of Australasia = J. Coll. Radiol. Austra. Journal of the College of Radiologists of Australasia = J Coll Radiol Australas Journal of the College of Radiologists of Australasia = J. Coll. Radiol. Australas. Journal of the Colorado Dental Association = J Colo Dent Assoc Journal of the Colorado Dental Association = J. Colo. Dent. Assoc. Journal of The Communications Network = J Commun Netw-uk Journal of The Communications Network = J. Commun. Netw-uk. Journal of The Communications Research Laboratory = J Commun Res Lab Journal of The Communications Research Laboratory = J. Commun. Res. Lab. Journal of the Community Development Society = J Community Dev Soc Journal of The Construction Division-asce = J Construct Div-asce Journal of The Construction Division-asce = J. Construct. Div-asce. Journal of The Copyright Society of The Usa = J Copyright Soc Usa Journal of The Copyright Society of The Usa = J. Copyright Soc. Usa Journal of the Dental Association of South Africa = J. Dent. Assoc. S. Afr. Journal of the Dental Association of Thailand = J. Dent. Assoc. Thai. Journal of the Dental Auxiliaries = J. Dent. Aux. Journal of the Dental Guidance Council on the Handicapped = J Dent Guid Counc Handicap Journal of the Dental Guidance Council on the Handicapped = J. Dent. Guid. Counc. Handicap. Journal of the Dental School, National University of Iran = J Dent Sch Natl Univ Iran Journal of the Dental School, National University of Iran = J. Dent. Sch. Natl. Univ. Iran Journal of the early Republic = J Early Repub Journal of The Early Republic = J Early Republ Journal of The Early Republic = J. Early Republ. Journal of The Economic and Social History of The Orient = J Econ Soc Hist Orie Journal of The Economic and Social History of The Orient = J. Econ. Soc. Hist. Orie. Journal of the economic and social history of the Orient = JESHO Journal of the Economics of Business=J. Econ. of Bus. Journal of the Egyptian Mathematical Society = J. Egyptian Math. Soc. Journal of the Egyptian Medical Association = J. Egypt. Med. Assoc. Journal of the Egyptian National Cancer Institute = J Egypt Natl Canc Inst Journal of the Egyptian Public Health Association = J. Egypt. Public Health Assoc. Journal of The Egyptian Public Health Association=J Egypt Public Health Assoc;; Journal Of The Egyptian Society Of Obstetrics And Gynecology = J Egypt Soc Obstet Gynecol Journal of the Egyptian Society of Parasitology = J Egypt Soc Parasitol Journal of the Egyptian Society of Parasitology = J. Egypt. Soc. Parasitol. Journal of The Egyptian Society Of Parasitology=J Egypt Soc Parasitol;; Journal of the Electrochemical Society = J. Electrochem. Soc. Journal of The Electrochemical Society = J Electrochem Soc Journal of The Electrochemical Society = J. Electrochem. Soc. Journal of the Electrochemical Society of India = J. Electrochem. Soc. India Journal of The Electrochemical Society of Japan = J Electrochem Soc Jp Journal of The Electrochemical Society of Japan = J. Electrochem. Soc. Jp. Journal of the Elisha Mitchell Scientific Society = J. Elisha Mitchell Sci. Soc. Journal of The Elisha Mitchell Scientific Society = J Elisha Mitch Sci S Journal of The Elisha Mitchell Scientific Society = J. Elisha Mitch. Sci. S. Journal of The Energy Division-asce = J Energ Div-asce Journal of The Energy Division-asce = J. Energ. Div-asce. Journal of the Energy Institute = J. Energy Inst. Journal of The Energy Institute = J Energy Inst Journal of The Energy Institute = J. Energy Inst. Journal of The Engineering Mechanics Division-asce = J Eng Mech Div-asce Journal of The Engineering Mechanics Division-asce = J. Eng. Mech. Div-asce. Journal of The Entomological Research Society = J Entomol Res Soc Journal of The Entomological Research Society = J. Entomol. Res. Soc. Journal of The Entomological Society of Southern Africa = J Entomol Soc S Afr Journal of The Entomological Society of Southern Africa = J. Entomol. Soc. S. Afr. Journal of The Environmental Engineering Division-asce = J Env Eng Div-asce Journal of The Environmental Engineering Division-asce = J. Env. Eng. Div-asce. Journal of the European Academy of Dermatology and Venereology : JEADV = J Eur Acad Dermatol Venereol Journal of The European Academy of Dermatology and Venereology = J Eur Acad Dermatol Journal of The European Academy of Dermatology and Venereology = J. Eur. Acad. Dermatol. Journal of the European Academy of Dermatology and Venereology = J. Eur. Acad. Dermatol. Venereol. Journal of the European Ceramic Society = J. Eur. Ceram. Soc. Journal of The European Ceramic Society = J Eur Ceram Soc Journal of The European Ceramic Society = J. Eur. Ceram. Soc. Journal of The European Economic Association = J Eur Econ Assoc Journal of The European Economic Association = J. Eur. Econ. Assoc. Journal of The European Mathematical Society = J Eur Math Soc Journal of The European Mathematical Society = J. Eur. Math. Soc. Journal of the European Optical Society Part A = J. Eur. Opt. Soc. Part A Journal of the European Optical Society Part B = J. Eur. Opt. Soc. Part B Journal of The European Optical Society-rapid Publications = J Eur Opt Soc-rapid Journal of The European Optical Society-rapid Publications = J. Eur. Opt. Soc-rapid. Journal of the Evangelical Theological Society. Evangelical Theological Society = J Evang Theol Soc Journal of the experimental analysis of behavior = J Exp Anal Behav Journal of the Experimental Analysis of Behavior = J. Exp. Anal. Behav. Journal of The Experimental Analysis of Behavior = J Exp Anal Behav Journal of The Experimental Analysis of Behavior = J. Exp. Anal. Behav. Journal of The Experimental Analysis Of Behavior=J Exp Anal Behav;; Journal of the Faculty of Agriculture, Hokkaido University = Hokkaido Daigaku Nogakubu kiyo|J. Fac. Agric. Hokkaido Univ. Journal of The Faculty of Agriculture Kyushu University = J Fac Agr Kyushu U Journal of The Faculty of Agriculture Kyushu University = J. Fac. Agr. Kyushu U. Journal of the Faculty of Agriculture, Shinshu University = J. Fac. Agric., Shinshu Univ. Journal of The Faculty of Engineering and Architecture of Gazi University = J Fac Eng Archit Gaz Journal of The Faculty of Engineering and Architecture of Gazi University = J. Fac. Eng. Archit. Gaz. Journal of the Faculty of Engineering = J. Fac. Engrg. Chiba Univ. Journal of the Faculty of Engineering = J. Fac. Engrg. Univ. Tokyo Ser. B Journal of the Faculty of Liberal Arts = J. Fac. Liberal Arts Yamaguchi Univ. Natur. Sci. Journal of the Faculty of Medicine, Baghdad = J Fac Med Baghdad Journal of The Faculty of Radiologists-london = J Fac Radiol-london Journal of The Faculty of Radiologists-london = J. Fac. Radiol-london. Journal of the Faculty of Science and Engineering = J. Fac. Sci. Eng. Kinki Univ. Journal of the Faculty of Science = J. Fac. Sci. Shinshu Univ. Journal of The Faculty of Science University of Tokyo Section 1-mathematics Astronomy Physics Chemistry = J Fac Sci U Tokyo 1 Journal of The Faculty of Science University of Tokyo Section 1-mathematics Astronomy Physics Chemistry = J. Fac. Sci. U. Tokyo 1. Journal of the Fisheries Research Board of Canada = J. Fish. Res. Board Can. Journal of The Fisheries Research Board of Canada = J Fish Res Board Can Journal of The Fisheries Research Board of Canada = J. Fish. Res. Board Can. Journal of the Florida Medical Association = J. Fla. Med. Assoc. Journal of The Florida Medical Association=J Fla Med Assoc;; Journal of The Florida Medical Association = J Fla Med Assoc Journal of The Florida Medical Association = J. Fla. Med. Assoc. Journal of the Florida State Dental Society = J. Fla. State Dent. Soc. Journal of The Folklore Institute = J Folklore Inst Journal of The Folklore Institute = J. Folklore Inst. Journal of The Food Hygienic Society of Japan = J Food Hyg Soc Jpn Journal of The Food Hygienic Society of Japan = J. Food Hyg. Soc. Jpn. Journal of the Forensic Science Society = J. Forensic Sci. Soc. Journal of The Forensic Science Society = J Forensic Sci Soc Journal of The Forensic Science Society = J. Forensic Sci. Soc. Journal of the Formosan Medical Association = J. Formos. Med. Assoc. Journal of The Formosan Medical Association=J Formos Med Assoc;; Journal of The Formosan Medical Association = J Formos Med Assoc Journal of The Formosan Medical Association = J. Formos. Med. Assoc. Journal of The Franklin Institute-engineering and Applied Mathematics = J Franklin I Journal of The Franklin Institute-engineering and Applied Mathematics = J. Franklin I. Journal of the Franklin Institute = J. Franklin Inst. Journal of the Franklin Institute = J. Franklin Inst. B Journal of the Gay and Lesbian Medical Association = J Gay Lesbian Med Assoc Journal of the Geological Society = J Geol Soc London Journal of The Geological Society = J Geol Soc London Journal of The Geological Society = J. Geol. Soc. London. Journal of the Geological Society (London, United Kingdom) = J. Geol. Soc. (London, U.K.) Journal of the Geological Society of Australia = J. Geol. Soc. Aust. Journal of The Geological Society of Australia = J Geol Soc Aust Journal of The Geological Society of Australia = J. Geol. Soc. Aust. Journal of the Geological Society of India = J. Geol. Soc. India Journal of The Geological Society of India = J Geol Soc India Journal of The Geological Society of India = J. Geol. Soc. India Journal of the Geological Society of Jamaica = J. Geol. Soc. Jam. Journal of the Geological Society of London = J. Geol. Soc. London Journal of the Georgia Association of Historians = Proc Pap Ga Assoc Hist Journal of the Georgia Dental Association = J Ga Dent Assoc Journal of the Georgia Dental Association = J. Ga. Dent. Assoc. Journal of The Georgia Entomological Society = J Georgia Entomol So Journal of The Georgia Entomological Society = J. Georgia Entomol. So. Journal of The Geotechnical Engineering Division-asce = J Geotech Eng-asce Journal of The Geotechnical Engineering Division-asce = J. Geotech. Eng-asce. Journal of the German Statistical Society=J. German Statistical Society Journal of the Germantown Hospital = J Germantown Hosp Journal of the Ghana Science Association = J. Ghana Sci. Assoc. Journal of the Graduate School and Faculty of Engineering = J. Grad. Sch. Fac. Eng. Univ. Tokyo Ser. B Journal of the Greater Houston Dental Society = J. Gt. Houst. Dent. Soc. Journal of the Hattori Botanical Laboratory = J. Hattori Bot. Lab. Journal of The Hattori Botanical Laboratory = J Hattori Bot Lab Journal of The Hattori Botanical Laboratory = J. Hattori Bot. Lab. Journal of the Hawaii Dental Association = J Hawaii Dent Assoc Journal of the Hawaii Dental Association = J. Hawaii Dent. Assoc. Journal of the Hawaii State Dental Association = J Hawaii State Dent Assoc Journal of the Hawaii State Dental Association = J. Hawaii State Dent. Assoc. Journal of The Helminthological Society of Washington = J Helminthol Soc W Journal of The Helminthological Society of Washington = J. Helminthol. Soc. W. Journal of the Hillside Hospital = J Hillside Hosp Journal of The Historical Society = J Hist Soc Journal of The Historical Society = J. Hist. Soc. Journal of the history of biology = JHB Journal of the history of biology = J Hist Biol Journal of The History of Biology = J Hist Biol Journal of The History of Biology = J. Hist. Biol. Journal of the history of dentistry = J Hist Dent Journal of the History of Dentistry = J. Hist. Dent. Journal of the History of Economic Thought=J. Hist. Econ. Thought Journal of the History of Ideas = JHI Journal of the history of ideas = J Hist Ideas Journal of The History of Ideas = J Hist Ideas Journal of The History of Ideas = J. Hist. Ideas Journal of the history of medicine and allied sciences = J Hist Med Allied Sci Journal of the History of Medicine and Allied Sciences = J. Hist. Med. Allied Sci. Journal of The History Of Medicine and Allied Sciences=J Hist Med Allied Sci;; Journal of The History of Medicine and Allied Sciences = J Hist Med All Sci Journal of The History of Medicine and Allied Sciences = J. Hist. Med. All. Sci. Journal of the History of Medicine and allied Sciences = JHM Journal of the history of philosophy = J Hist Philos Journal of The History of Philosophy = J Hist Philos Journal of The History of Philosophy = J. Hist. Philos. Journal of the History of Philosophy = JHPh Journal of the history of sexuality = J Hist Sex Journal Of The History Of Sexuality = J. Hist. Sex. Journal of The History of Sexuality = J Hist Sexuality Journal of The History of Sexuality = J. Hist. Sexuality Journal of the history of sexuality = JHSex Journal of the history of the behavioral sciences = J Hist Behav Sci Journal of the History of the Behavioral Sciences = J. Hist. Behav. Sci. Journal of The History of The Behavioral Sciences = J Hist Behav Sci Journal of The History of The Behavioral Sciences = J. Hist. Behav. Sci. Journal of The History Of The Behavioral Sciences=J Hist Behav Sci;; Journal of the history of the neurosciences = J Hist Neurosci Journal of The History of The Neurosciences = J Hist Neurosci Journal of The History of The Neurosciences = J. Hist. Neurosci. Journal of the Hong Kong Branch of the Royal Asiatic Society = J Hong Kong Branch R Asiat Soc Journal of the Houston District Dental Society = J. Houston Dist. Dent. Soc. Journal of The Hydraulics Division-asce = J Hydr Eng Div-asce Journal of The Hydraulics Division-asce = J. Hydr. Eng. Div-asce. Journal of the Idaho Academy of Science = J Idaho Acad Sci Journal of The Ies = J Ies Journal of The Ies = J. Ies Journal of The Iest = J Iest Journal of The Iest = J. Iest Journal of the Illuminating Engineering Society = J. Illum. Eng. Soc. Journal of The Illuminating Engineering Society = J Illum Eng Soc Journal of The Illuminating Engineering Society = J. Illum. Eng. Soc. Journal of the Indian Academy of Dentistry = J Indian Acad Dent Journal of the Indian Academy of Dentistry = J. Indian Acad. Dent. Journal of the Indian Academy of Forensic Sciences = J. Indian Acad. Forensic Sci. Journal of the Indian Academy of Forensic Sciences = J Indian Forensic Sci Journal of the Indian Academy of Wood Science = J. Indian Acad. Wood Sci. Journal of the Indiana Dental Association = J. Indiana Dent. Assoc. Journal of the Indian Anthropological Society / the Indian Anthropological Society = J Indian Anthropol Soc Journal of the Indianapolis District Dental Society = J. Indianap. Dist. Dent. Soc. Journal of the Indiana State Dental Association = J. Indiana State Dent. Assoc. Journal of the Indiana State Medical Association = J. Indiana State Med. Assoc. Journal of The Indiana State Medical Association = J Indiana St Med Ass Journal of The Indiana State Medical Association = J. Indiana St. Med. Ass. Journal of the Indian Chemical Society = J. Indian Chem. Soc. Journal of The Indian Chemical Society = J Indian Chem Soc Journal of The Indian Chemical Society = J. Indian Chem. Soc. Journal of the Indian Dental Association = J Indian Dent Assoc Journal of the Indian Dental Association = J. Indian Dent. Assoc. Journal of the Indian Institute of Science = J. Indian Inst. Sci. Journal of The Indian Institute of Science = J Indian I Sci Journal of The Indian Institute of Science = J. Indian I. Sci. Journal of The Indian Institute of Science Section A-engineering & Technology = J Indian I Sci A-eng Journal of The Indian Institute of Science Section A-engineering & Technology = J. Indian I. Sci. A-eng. Journal of The Indian Institute of Science Section B-physical & Chemical Sciences = J Indian I Sci B-phy Journal of The Indian Institute of Science Section B-physical & Chemical Sciences = J. Indian I. Sci. B-phy. Journal of The Indian Institute of Science Section C-biological Sciences = J Indian I Sci C-bio Journal of The Indian Institute of Science Section C-biological Sciences = J. Indian I. Sci. C-bio. Journal of the Indian Law Institute = J Indian Law Inst Journal of the Indian Leather Technologists' Association = J. Indian Leather Technol. Assoc. Journal of the Indian Medical Association = J Indian Med Assoc Journal of the Indian Medical Association = J. Indian Med. Assoc. Journal of The Indian Medical Association=J Indian Med Assoc;; Journal of The Indian Medical Association = J Indian Med Assoc Journal of The Indian Medical Association = J. Indian Med. Assoc. Journal of the Indian medical profession = J Indian Med Prof Journal of the Indian Medical Profession = J. Indian Med. Prof. Journal of The Indian Musicological Society = J Indian Music Soc Journal of The Indian Musicological Society = J. Indian Music. Soc. Journal of the Indian Orthodontic Society = J. Indian Orthod. Soc. Journal of the Indian Society of Agricultural Statistics = J. Indian Soc. Agricultural Statist. Journal of the Indian Society of Pedodontics and Preventive Dentistry = J Indian Soc Pedod Prev Dent Journal of the Indian Society of Pedodontics and Preventive Dentistry = J. Indian Soc. Pedod. Prev. Dent. Journal of the Indian Society of Remote Sensing = J. Indian Soc. Remote Sens. Journal of the Indian Society of Soil Science = J. Indian Soc. Soil Sci. Journal of the Indian Statistical Association = J. Indian Statist. Assoc. Journal of the Institute of Actuaries = J Inst Actuar Journal of The Institute of Brewing = J I Brewing Journal of The Institute of Brewing = J. I. Brewing Journal of the Institute of Brewing = J. Inst. Brew. Journal of the Institute of Chartered Accountants of Sri Lanka = J Inst Chart Account Sri Lanka Journal of The Institute of Energy = J I Energy Journal of The Institute of Energy = J. I. Energy Journal of the Institute of Energy = J. Inst. Energy Journal of The Institute of Environmental Sciences = J Inst Environ Sci Journal of The Institute of Environmental Sciences = J. Inst. Environ. Sci. Journal of the Institute of Environment Sciences = J. Inst. Environ. Sci. Journal of The Institute of Fuel = J I Fuel Journal of The Institute of Fuel = J. I. Fuel Journal of the Institute of Hospital Engineering = J. Inst. Hosp. Eng. Journal of The Institute of Mathematics and Its Applications = J I Math Appl Journal of The Institute of Mathematics and Its Applications = J. I. Math. Appl. Journal of The Institute of Mathematics of Jussieu = J Inst Math Jussieu Journal of The Institute of Mathematics of Jussieu = J. Inst. Math. Jussieu Journal of the Institute of Medicine = J Inst Med Journal of The Institute of Metals = J I Met Journal of The Institute of Metals = J. I. Met. Journal of the Institute of Metals = J. Inst. Met. Journal of The Institute of Navigation = J Inst Navig Journal of The Institute of Navigation = J. Inst. Navig. Journal of the Institute of Petroleum = J. Inst. Pet. Journal of The Institute of Petroleum = J I Petrol Journal of The Institute of Petroleum = J. I. Petrol. Journal of The Institute of Telecommunications Professionals = J I Telecommun Prof Journal of The Institute of Telecommunications Professionals = J. I. Telecommun. Prof. Journal of The Institute of Wood Science = J I Wood Sci Journal of The Institute of Wood Science = J. I. Wood Sci. Journal of The Institution of British Telecommunications Engineers = J Inst Brit Telecomm Journal of The Institution of British Telecommunications Engineers = J. Inst. Brit. Telecomm. Journal of the Institution of Chemists (India) = J. Inst. Chem. (India) Journal of The Institution of Electronic and Radio Engineers = J I Electron Rad Eng Journal of The Institution of Electronic and Radio Engineers = J. I. Electron. Rad. Eng. Journal of The Institution of Electronics and Telecommunication Engineers = J I El Telecom Eng Journal of The Institution of Electronics and Telecommunication Engineers = J. I. El. Telecom. Eng. Journal of the Institution of Engineers (India) Chemical Engineering Division = J. Inst. Eng. (India) Chem. Eng. Div. Journal of the Institution of Engineers (India) Metallurgical and Materials Engineering Division = J. Inst. Eng. (India) Metall. Mater. Eng. Div. Journal of The Institution of Highway Engineers = J I Highw Eng Journal of The Institution of Highway Engineers = J. I. Highw. Eng. Journal of The Institution of Nuclear Engineers = J I Nucl Eng Journal of The Institution of Nuclear Engineers = J. I. Nucl. Eng. Journal of The Institution of Water and Environmental Management = J Inst Water Env Man Journal of The Institution of Water and Environmental Management = J. Inst. Water Env. Man. Journal of the Institution of Water and Environment Management = J. Inst. Water Environ. Manage. Journal of the Instrument Society of India = J. Instrum. Soc. India Journal of the International Academy of Periodontology = J Int Acad Periodontol Journal of The International Association for Mathematical Geology = J Int Ass Math Geol Journal of The International Association for Mathematical Geology = J. Int. Ass. Math. Geol. Journal of the International Association of Dentistry for Children = J Int Assoc Dent Child Journal of the International Association of Dentistry for Children = J. Int. Assoc. Dent. Child. Journal of the International Association of Physicians in AIDS Care (Chicago, Ill. : 2002) = J Int Assoc Physicians AIDS Care (Chic Ill) Journal of the International Association of Physicians in AIDS Care = J Int Assoc Physicians AIDS Care Journal of the International Association of Physicians in AIDS Care = J. Int. Assoc. Physicians AIDS Care Journal of the International College of Dentists, Japan Section = J. Int. Coll. Dent. (Jpn.) Journal Of The International College Of Dentists; Japan Section = J Int Coll Dent (Jpn) Journal of the International College of Surgeons = J. Int. Coll. Surg. Journal of the International Federation of Clinical Chemistry / IFCC = J Int Fed Clin Chem Journal of the International Federation of Clinical Chemistry = J. Int. Fed. Clin. Chem. Journal of the International Federation of Gynaecology and Obstetrics = J Int Fed Gynaecol Obstet Journal of the International Neuropsychological Society : JINS = J Int Neuropsychol Soc Journal of the International Neuropsychological Society = J. Int. Neuropsychol. Soc. Journal of The International Neuropsychological Society=J Int Neuropsychol Soc;; Journal of The International Neuropsychological Society = J Int Neuropsych Soc Journal of The International Neuropsychological Society = J. Int. Neuropsych. Soc. Journal of The International Phonetic Association = J Int Phon Assoc Journal of The International Phonetic Association = J. Int. Phon. Assoc. Journal of The International Society of Sports Nutrition = J Int Soc Sport Nutr Journal of The International Society of Sports Nutrition = J. Int. Soc. Sport. Nutr. Journal of the International Society of Sports Nutrition = J Int Soc Sports Nutr Journal of the International Wine & Food Society (London : 1989) = J Int Wine Food Soc Journal of the Iowa Medical Society = J Iowa Med Soc Journal of the Iowa Medical Society = J. Iowa Med. Soc. Journal of The Iowa Medical Society = J Iowa Med Soc Journal of The Iowa Medical Society = J. Iowa Med. Soc. Journal of the Iran Dental Association = J. Iran Dent. Assoc. Journal of the Iranian Chemical Society = J. Iran. Chem. Soc. Journal of The Iranian Chemical Society = J Iran Chem Soc Journal of The Iranian Chemical Society = J. Iran. Chem. Soc. Journal of the Irish Colleges of Physicians and Surgeons = J Ir Coll Physicians Surg Journal of The Irish Colleges of Physicians and Surgeons = J Irish Coll Phys S Journal of The Irish Colleges of Physicians and Surgeons = J. Irish Coll. Phys. S. Journal of the Irish Dental Association = J Ir Dent Assoc Journal of the Irish Dental Association = J. Ir. Dent. Assoc. Journal of The Irish Medical Association = J Irish Med Assoc Journal of The Irish Medical Association = J. Irish Med. Assoc. Journal of the Irish Medical Association = J Ir Med Assoc Journal of the Irish Medical Association = J. Ir. Med. Assoc. Journal of The Iron and Steel Institute = J Iron Steel I Journal of The Iron and Steel Institute = J. Iron Steel I. Journal of The Irrigation and Drainage Division-asce = J Irr Drain Div-asce Journal of The Irrigation and Drainage Division-asce = J. Irr. Drain. Div-asce. Journal of the Japanese and International Economies=J. Japanese Int. Economies Journal of the Japanese and international economies = J Jpn Int Econ Journal of The Japanese and International Economies = J Jpn Int Econ Journal of The Japanese and International Economies = J. Jpn. Int. Econ. Journal of The Japanese Association for Thoracic Surgery = J Jpn Ass Thor Surg Journal of The Japanese Association for Thoracic Surgery = J. Jpn. Ass. Thor. Surg. Journal of the Japanese Obstetrical and Gynecological Society = J. Jpn. Obstet. Gynecol. Soc. Journal of the Japanese Obstetrical & Gynecological Society = J Jpn Obstet Gynecol Soc Journal of The Japanese Society for Food Science and Technology-nippon Shokuhin Kagaku Kogaku Kaishi = J Jpn Soc Food Sci Journal of The Japanese Society for Food Science and Technology-nippon Shokuhin Kagaku Kogaku Kaishi = J. Jpn. Soc. Food Sci. Journal of The Japanese Society for Horticultural Science = J Jpn Soc Hortic Sci Journal of The Japanese Society for Horticultural Science = J. Jpn. Soc. Hortic. Sci. Journal of the Japanese Society of Computational Statistics = J. Japanese Soc. Comput. Statist. Journal of The Japanese Society of Internal Medicine = J Jpn Soc Intern Med Journal of The Japanese Society of Internal Medicine = J. Jpn. Soc. Intern. Med. Journal of The Japanese Society of Starch Science = J Jpn Soc Starch Sci Journal of The Japanese Society of Starch Science = J. Jpn. Soc. Starch Sci. Journal of The Japan Institute of Metals = J Jpn I Met Journal of The Japan Institute of Metals = J. Jpn. I. Met. Journal of the Japan Institute of Metals = J. Jpn. Inst. Met. Journal of the Japan Petroleum Institute = J. Jpn. Pet. Inst. Journal of The Japan Petroleum Institute = J Jpn Petrol Inst Journal of The Japan Petroleum Institute = J. Jpn. Petrol. Inst. Journal of the Japan Statistical Society (Nihon Tôkei Gakkai Kaihô) = J. Japan Statist. Soc. Journal of the Kansas Dental Association = J Kans Dent Assoc Journal of the Kansas Dental Association = J. Kans. Dent. Assoc. Journal of the Kansas Entomological Society = J. Kansas Entomol. Soc. Journal of The Kansas Entomological Society = J Kansas Entomol Soc Journal of The Kansas Entomological Society = J. Kansas Entomol. Soc. Journal of the Kansas Entomological Society = J Kans Entomol Soc Journal of The Kansas Medical Society = J Kansas Med Soc Journal of The Kansas Medical Society = J. Kansas Med. Soc. Journal of the Kansas Medical Society = J. Kans. Med. Soc. Journal of the Kansas State Dental Association = J. Kans. State Dent. Assoc. Journal of the Kentucky Dental Association = J Ky Dent Assoc Journal of the Kentucky Dental Association = J. Ky. Dent. Assoc. Journal of The Kentucky Medical Association = J Kentucky Med Assoc Journal of The Kentucky Medical Association = J. Kentucky Med. Assoc. Journal of the Kentucky Medical Association = J. Ky. Med. Assoc. Journal of The Kentucky Medical Association=J Ky Med Assoc;; Journal of the Kenya Chemical Society = J. Kenya Chem. Soc. Journal of The Korean Astronomical Society = J Korean Astron Soc Journal of The Korean Astronomical Society = J. Korean Astron. Soc. Journal of the Korean Ceramic Society = J. Korean Ceram. Soc. Journal of the Korean Chemical Society = J. Korean Chem. Soc. Journal of The Korean Institute of Metals and Materials = J Korean Inst Met Ma Journal of The Korean Institute of Metals and Materials = J. Korean Inst. Met. Ma. Journal of the Korean Mathematical Society = J. Korean Math. Soc. Journal of The Korean Mathematical Society = J Korean Math Soc Journal of The Korean Mathematical Society = J. Korean Math. Soc. Journal of The Korean Medical Association = J Korean Med Assoc Journal of The Korean Medical Association = J. Korean Med. Assoc. Journal of The Korean Meteorological Society = J Korean Meteor Soc Journal of The Korean Meteorological Society = J. Korean Meteor. Soc. Journal of The Korean Physical Society = J Korean Phys Soc Journal of The Korean Physical Society = J. Korean Phys. Soc. Journal of the Korean Research Society for Dental Hypnosis = J. Korean Res. Soc. Dent. Hypn. Journal Of The Korean Research Society For Dental Hypnosis = J Korean Res Soc Dent Hypn Journal of The Korean Society for Applied Biological Chemistry = J Korean Soc Appl Bi Journal of The Korean Society for Applied Biological Chemistry = J. Korean Soc. Appl. Bi. Journal of the Korean Statistical Society = J. Korean Statist. Soc. Journal of The Korean Statistical Society = J Korean Stat Soc Journal of The Korean Statistical Society = J. Korean Stat. Soc. Journal of The Korean Surgical Society = J Korean Surg Soc Journal of The Korean Surgical Society = J. Korean Surg. Soc. Journal of the Korea Society of Mathematical Education = J. Korea Soc. Math. Educ. Ser. B Pure Appl. Math. Journal of The Kuwait Medical Association = J Kuwait Med Assoc Journal of The Kuwait Medical Association = J. Kuwait Med. Assoc. Journal of the Lancaster County Historical Society. Lancaster County Historical Society (Pa.) = J Lanc Cty Hist Soc Journal of The Learning Sciences = J Learn Sci Journal of The Learning Sciences = J. Learn. Sci. Journal of The Lepidopterists Society = J Lepid Soc Journal of The Lepidopterists Society = J. Lepid. Soc. Journal of The Less-common Metals = J Less-common Met Journal of The Less-common Metals = J. Less-common Met. Journal of The Limnological Society of Southern Africa = J Limnol Soc S Afr Journal of The Limnological Society of Southern Africa = J. Limnol. Soc. S. Afr. Journal of the Linnean Society of London, Botany = J. Linn. Soc. London, Bot. Journal of the Linnean Society of London, Zoology = J. Linn. Soc. London, Zool. Journal of The London Mathematical Society = J London Math Soc Journal of The London Mathematical Society = J. London Math. Soc. Journal of The London Mathematical Society-second Series = J Lond Math Soc Journal of The London Mathematical Society-second Series = J. Lond. Math. Soc. Journal of the Louisiana Dental Association = J La Dent Assoc Journal of the Louisiana Dental Association = J. La. Dent. Assoc. Journal of the Louisiana State Medical Society = J. La. State Med. Soc. Journal of The Louisiana State Medical Society=J La State Med Soc;; Journal of The Louisiana State Medical Society = J Louisiana St Med S Journal of The Louisiana State Medical Society = J. Louisiana St. Med. S. Journal of the Macomb Dental Society = J. Macomb Dent. Soc. Journal Of The Macomb Dental Society = J Macomb Dent Soc Journal of the Maine Medical Association = J. Maine Med. Assoc. Journal of The Maine Medical Association = J Maine Med Assoc Journal of The Maine Medical Association = J. Maine Med. Assoc. Journal of the Malaysian Branch of the Royal Asiatic Society = J Malays Branch R Asiat Soc Journal of the Marine Biological Association of the UK = J. Mar. Biol. Assoc. U. K. Journal of The Marine Biological Association of The United Kingdom = J Mar Biol Assoc Uk Journal of The Marine Biological Association of The United Kingdom = J. Mar. Biol. Assoc. Uk. Journal of the Marine Biology Association of the United Kingdom = J. mar. biol. Ass. U.K. Journal of the Marine Technology Society = J. Mar. Technol. Soc. Journal of The Market Research Society = J Market Res Soc Journal of The Market Research Society = J. Market Res. Soc. Journal of the Market Research Society. Market Research Society = J Mark Res Soc Journal of the Maryland State Dental Association = J Md State Dent Assoc Journal of the Maryland State Dental Association = J. Md. State Dent. Assoc. Journal of the Massachusetts Dental Society = J Mass Dent Soc Journal of the Massachusetts Dental Society = J. Mass. Dent. Soc. Journal of the Mathematical Society of Japan = J. Math. Soc. Japan Journal of The Mathematical Society of Japan = J Math Soc Jpn Journal of The Mathematical Society of Japan = J. Math. Soc. Jpn. Journal of The Mechanical Behavior of Biomedical Materials = J Mech Behav Biomed Journal of The Mechanical Behavior of Biomedical Materials = J. Mech. Behav. Biomed. Journal of the Mechanical Behavior of Biomedical Materials = J. Mech. Behav. Biomed. Mater. Journal of the Mechanics and Physics of Solids = J. Mech. Phys. Solids Journal of the Mechanics and Physics of Solids = J. Mech. Phys. Solids Journal of The Mechanics and Physics of Solids = J Mech Phys Solids Journal of The Mechanics and Physics of Solids = J. Mech. Phys. Solids Journal of the Medical Association for Prevention of War = J Med Assoc Prev War Journal of the Medical Association of Georgia = J Med Assoc Ga Journal of the Medical Association of Georgia = J. Med. Assoc. Ga. Journal of The Medical Association Of Georgia=J Med Assoc Ga;; Journal of the Medical Association of Thailand = J. Med. Assoc. Thai. Journal of The Medical Association Of Thailand=J Med Assoc Thai;; Journal of The Medical Association of Thailand = J Med Assoc Thailand Journal of The Medical Association of Thailand = J. Med. Assoc. Thailand Journal of the Medical Association of the State of Alabama = J Med Assoc State Ala Journal of the Medical Association of the State of Alabama = J. Med. Assoc. State Ala. Journal of the Medical Library Association = J. Med. Libr. Assoc. Journal of The Medical Library Association = J Med Libr Assoc Journal of The Medical Library Association = J. Med. Libr. Assoc. Journal of the Medical Library Association : JMLA = J Med Libr Assoc Journal of the Medical Society of New Jersey = J. Med. Soc. N. J. Journal of the Mercer Dental Society = J. Mercer Dent. Soc. Journal of The Meteorological Society of Japan = J Meteorol Soc Jpn Journal of The Meteorological Society of Japan = J. Meteorol. Soc. Jpn. Journal of the Meteorological Society of Japan = J. Meteor. Soc. Japan Journal of the Mexican Chemical Society = J. Mex. Chem. Soc. Journal of The Mexican Chemical Society = J Mex Chem Soc Journal of The Mexican Chemical Society = J. Mex. Chem. Soc. Journal of the Michigan State Dental Association = J. Mich. State Dent. Assoc. Journal of The Midwest Modern Language Association = J Midwest Mod Lang Journal of The Midwest Modern Language Association = J. Midwest Mod. Lang. Journal of the Mining and Materials Processing Institute of Japan = J. Min. Mater. Process.Inst. Jpn. Journal of the Minnesota Academy of Science = J Minn Acad Sci Journal of The Mississippi State Medical Association = J Miss State Med Ass Journal of The Mississippi State Medical Association = J. Miss. State Med. Ass. Journal of the Mississippi State Medical Association = J Miss State Med Assoc Journal of the Mississippi State Medical Association = J. Miss. State Med. Assoc. Journal of The Mississippi State Medical Association=J Miss State Med Assoc;; Journal of the Missouri Bar = J Mo Bar Journal of the Missouri Dental Association = J Mo Dent Assoc Journal of the Missouri Dental Association = J. Mo. Dent. Assoc. Journal of the Mongolian Mathematical Society = J. Mong. Math. Soc. Journal of The Mount Sinai Hospital = J Mt Sinai Hosp Journal of The Mount Sinai Hospital = J. Mt. Sinai Hosp. Journal of the Mount Sinai Hospital, New York = J Mt Sinai Hosp N Y Journal of the Mount Sinai Hospital, New York = J. Mt. Sinai Hosp. N. Y. Journal of The Musical Arts in Africa = J Music Arts Afr Journal of The Musical Arts in Africa = J. Music. Arts Afr. Journal of the National Analgesia Society = J. Natl. Analg. Soc. Journal of the National Association of Chiropodists = J Natl Assoc Chiropodists Journal of the National Association of Seventh-Day Adventist Dentists = J. Natl. Assoc. Seventh. Day Advent. Dent. Journal Of The National Association Of Seventh-Day Adventist Dentists = J Natl Assoc Seventh Day Advent Dent Journal of the National Cancer Institute (1988) = J. Natl. Cancer Inst. Journal of The National Cancer Institute = J Natl Cancer I Journal of The National Cancer Institute = J. Natl. Cancer I. Journal of the National Cancer Institute = J Natl Cancer Inst Journal of the National Cancer Institute = J. Natl. Cancer Inst. Journal of The National Cancer Institute=J Natl Cancer Inst;; Journal of the National Cancer Institute. Monographs = J Natl Cancer Inst Monogr Journal of the National Cancer Institute. Monographs. = J. Natl. Cancer Inst. Monogr. Journal of The National Cancer Institute. Monographs=J Natl Cancer Inst Monogr;; Journal of The National Comprehensive Cancer Network = J Natl Compr Canc Ne Journal of The National Comprehensive Cancer Network = J. Natl. Compr. Canc. Ne. Journal of the National Comprehensive Cancer Network = J. Natl. Compr. Canc. Netw. Journal of the National Comprehensive Cancer Network : JNCCN = J Natl Compr Canc Netw Journal of the National Medical Association = J Natl Med Assoc Journal of the National Medical Association = J. Natl. Med. Assoc. Journal of The National Medical Association=J Natl Med Assoc;; Journal of The National Medical Association = J Natl Med Assoc Journal of The National Medical Association = J. Natl. Med. Assoc. Journal of The National Science Foundation of Sri Lanka = J Natl Sci Found Sri Journal of The National Science Foundation of Sri Lanka = J. Natl. Sci. Found. Sri Journal of the Nebraska Dental Association = J. Nebr. Dent. Assoc. Journal of the neurological sciences = J Neurol Sci Journal of the Neurological Sciences = J. Neurol. Sci. Journal of The Neurological Sciences=J Neurol Sci;; Journal of The Neurological Sciences = J Neurol Sci Journal of The Neurological Sciences = J. Neurol. Sci. Journal of the New Jersey Dental Association = J N J Dent Assoc Journal of the New Jersey Dental Association = J. N. J. Dent. Assoc. Journal of the New Jersey Dental Hygienists Association = J. N. J. Dent. Hyg. Assoc. Journal Of The New Jersey Dental Hygienists Association = J N J Dent Hyg Assoc Journal of the New Jersey State Dental Society = J. N. J. State Dent. Soc. Journal of The New York Entomological Society = J New York Entomol S Journal of The New York Entomological Society = J. New York Entomol. S. Journal of the New York State Nurses Association = J. N. Y. State Nurses Assoc. Journal of the New York State School Nurse Teachers Association = J. N. Y. State Sch. Nurse Teach. Assoc. Journal of the New York State School Nurse-Teachers Association = J N Y State Sch Nurse Teach Assoc Journal of the New Zealand Society of Periodontology = J N Z Soc Periodontol Journal of the Nigeria Association of Dental Students = J. Niger. Assoc. Dent. Stud. Journal Of The Nigeria Association Of Dental Students = J Niger Assoc Dent Stud Journal of the Nigeria Medical Association = J Nigeria Med Assoc Journal of the Nigerian Mathematical Society = J. Nigerian Math. Soc. Journal of The North American Benthological Society = J N Am Benthol Soc Journal of The North American Benthological Society = J. N. Am. Benthol. Soc. Journal of the North Carolina Academy of Science = J. N.C. Acad. Sci. Journal of the North Carolina Dental Society = J. N. C. Dent. Soc. Journal of the Oceanographical Society of Japan = J. Oceanogr. Soc. Japan Journal of the Oceanographical Society of Japan = J. Oceanogr. Soc. Jpn. Journal of The Oil & Colour Chemists Association = J Oil Colour Chem As Journal of The Oil & Colour Chemists Association = J. Oil Colour Chem. As. Journal of The Oklahoma State Medical Association = J Okla St Med Assoc Journal of The Oklahoma State Medical Association = J. Okla. St. Med. Assoc. Journal of Theological Studies = J Theol Stud Journal of Theological Studies = J. Theol. Stud. Journal of Theological Studies. Oxford, Clarendon Press = JThS Journal of theology for Southern Africa = J Theol South Afr Journal of the Ontario Dental Association = J. Ont. Dent. Assoc. Journal of the Operating Room Research Institute = J. Oper. Room Res. Inst. Journal of the Operational Research Society = J. Oper. Res. Soc. Journal of The Operational Research Society = J Oper Res Soc Journal of The Operational Research Society = J. Oper. Res. Soc. Journal of The Operations Research Society of America = J Oper Res Soc Am Journal of The Operations Research Society of America = J. Oper. Res. Soc. Am. Journal of the Operations Research Society of Japan = J. Oper. Res. Soc. Japan Journal of The Operations Research Society of Japan = J Oper Res Soc Jpn Journal of The Operations Research Society of Japan = J. Oper. Res. Soc. Jpn. Journal of the Optical Society of America A = J. Opt. Soc. Amer. A Journal of the Optical Society of America. A, Optics and image science = J Opt Soc Am A Journal of the Optical Society of America A, Optics and Image Science = J. Opt. Soc. Am. A Journal of the Optical Society of America A: Optics, Image Science, and Vision = J. Opt. Soc. Am. A Journal of the Optical Society of America A: Optics, Image Science, and Vision = J. Opt. Soc. Am. A: Journal of The Optical Society of America A-optics Image Science and Vision = J Opt Soc Am A Journal of The Optical Society of America A-optics Image Science and Vision = J. Opt. Soc. Am. A. Journal of the Optical Society of America. A, Optics, image science, and vision = J Opt Soc Am A Opt Image Sci Vis Journal of the Optical Society of America A, Optics, Image Science, and Vision = J. Opt. Soc. Am. A Opt. Image Sci. Vis. Journal of The Optical Society Of America A. Optics, IMAge Science, and Vision=J Opt Soc Am A Opt Image Sci Vis;; Journal of the Optical Society of America. B, Optical physics = J Opt Soc Am B Journal of the Optical Society of America B: Optical Physics = J. Opt. Soc. Am. B Journal of The Optical Society of America B-optical Physics = J Opt Soc Am B Journal of The Optical Society of America B-optical Physics = J. Opt. Soc. Am. B. Journal of the Optical Society of America B: Optical Physics = J. Opt. Soc. Am. B: Opt. Phys. Journal of the Optical Society of America = J Opt Soc Am Journal of the Optical Society of America = J. Opt. Soc. Am. Journal of The Optical Society of America = J Opt Soc Am Journal of The Optical Society of America = J. Opt. Soc. Am. Journal of The Optical Society of Korea = J Opt Soc Korea Journal of The Optical Society of Korea = J. Opt. Soc. Korea Journal of the Oregon Dental Association = J. Oreg. Dent. Assoc. Journal of Theoretical and Applied Mechanics = J Theor Appl Mech Journal of Theoretical and Applied Mechanics = J. Theor. Appl. Mech. Journal of Theoretical and Applied Mechanics = J Theor App Mech-pol Journal of Theoretical and Applied Mechanics = J. Theor. App. Mech-pol. Journal of Theoretical and Applied Mechanics = J. Theoret. Appl. Mech. Journal of Theoretical Archaeology = JTheorA Journal of theoretical biology = J Theor Biol Journal of Theoretical Biology=J Theor Biol;; Journal of Theoretical Biology = J Theor Biol Journal of Theoretical Biology = J. Theor. Biol. Journal of Theoretical & Computational Chemistry = J Theor Comput Chem Journal of Theoretical & Computational Chemistry = J. Theor. Comput. Chem. Journal of Theoretical Neurobiology = J Theor Neurobiol Journal of Theoretical Neurobiology = J. Theor. Neurobiol. Journal of Theoretical Politics = J Theor Polit Journal of Theoretical Politics = J. Theor. Polit. Journal of Theoretical Probability = J. Theoret. Probab. Journal of Theoretical Probability = J Theor Probab Journal of Theoretical Probability = J. Theor. Probab. Journal of the Osaka University Dental School = J. Osaka Univ. Dent. Sch. Journal of the Oslo city hospitals = J Oslo City Hosp Journal of the Oslo City Hospitals = J. Oslo City Hosp. Journal of the Oto-laryngological Society of Australia = J Otolaryngol Soc Aust Journal of the Oto-Laryngological Society of Australia = J. Otolaryngol. Soc. Aust. Journal of The Otto Rank Association = J Otto Rank Assoc Journal of The Otto Rank Association = J. Otto Rank Assoc. Journal of the Otto Rank Association. Otto Rank Association = J Otto Rank Assoc Journal of the Pakistan Medical Association = J Pak Med Assoc Journal of The Pakistan Medical Association = J Pak Med Assoc Journal of The Pakistan Medical Association = J. Pak. Med. Assoc. Journal of the Parenteral Drug Association = J Parenter Drug Assoc Journal of the Parenteral Drug Association = J. Parenter. Drug Assoc. Journal of The Patent and Trademark Office Society = J Patent Trademark Journal of The Patent and Trademark Office Society = J. Patent Trademark Journal of the Patent and Trademark Office Society = J Pat Trademark Off Soc Journal of The Patent Office Society = J Patent Trademark Journal of The Patent Office Society = J. Patent Trademark. Journal of the Patent Office Society. Patent Office Society (U.S.) = J Pat Off Soc Journal of The Pca Research and Development Laboratories = J Pca Res Dev Lab Journal of The Pca Research and Development Laboratories = J. Pca Res. Dev. Lab. Journal of the Pennsylvania Academy of Science = J Pa Acad Sci Journal of the Peripheral Nervous System = J. Peripher. Nerv. Syst. Journal of The Peripheral Nervous System = J Peripher Nerv Syst Journal of The Peripheral Nervous System = J. Peripher. Nerv. Syst. Journal of the peripheral nervous system : JPNS = J Peripher Nerv Syst Journal of the Philadelphia County Dental Society = J. Phila. Cty. Dent. Soc. Journal of the Philippine Dental Association = J. Philipp. Dent. Assoc. Journal of the Philippine Federation of Private Medical Practitioners = J Philipp Fed Priv Med Pract Journal of the Philippine Federation of Private Medical Practitioners = J. Philipp. Fed. Priv. Med. Pract. Journal of the Philippine Medical Association = J Philipp Med Assoc Journal of the Philippine Medical Association = J. Philipp. Med. Assoc. Journal of The Philosophy of Sport = J Philos Sport Journal of The Philosophy of Sport = J. Philos. Sport Journal of the Physical Society of Japan = J. Phys. Soc. Japan Journal of the Physical Society of Japan = J. Phys. Soc. Jpn. Journal of The Physical Society of Japan = J Phys Soc Jpn Journal of The Physical Society of Japan = J. Phys. Soc. Jpn. Journal of the Physicians Association for AIDS Care = J Physicians Assoc AIDS Care Journal of The Polarographic Society = J Polar Soc Journal of The Polarographic Society = J. Polar. Soc. Journal of The Polynesian Society = J Polynesian Soc Journal of The Polynesian Society = J. Polynesian Soc. Journal of The Power Division-asce = J Power Div Asce Journal of The Power Division-asce = J. Power Div. Asce. Journal of The Professional Association for Cactus Development = J Prof Assoc Cactus Journal of The Professional Association for Cactus Development = J. Prof. Assoc. Cactus Journal of The Radio Research Laboratory = J Radio Res Lab Journal of The Radio Research Laboratory = J. Radio Res. Lab. Journal of the Ramanujan Mathematical Society = J. Ramanujan Math. Soc. Journal of the renin-angiotensin-aldosterone system : JRAAS = J Renin Angiotensin Aldosterone Syst Journal of The Renin-angiotensin-aldosterone System = J Renin-angio-aldo S Journal of The Renin-angiotensin-aldosterone System = J. Renin-angio-aldo. S. Journal of the Renin-Angiotensin-Aldosterone System = J. Renin Angiotensin Aldosterone Syst. Journal of the Reticuloendothelial Society = J Reticuloendothel Soc Journal of the Reticuloendothelial Society = J. Reticuloendothel. Soc. Journal of The Reticuloendothelial Society = J Reticuloendoth Soc Journal of The Reticuloendothelial Society = J. Reticuloendoth. Soc. Journal of the Rhode Island State Dental Society = J R I State Dent Soc Journal of the Rhode Island State Dental Society = J. R. I. State Dent. Soc. Journal of Thermal Analysis and Calorimetry = J Therm Anal Calorim Journal of Thermal Analysis and Calorimetry = J. Therm. Anal. Calorim. Journal of Thermal Analysis = J Therm Anal Journal of Thermal Analysis = J. Therm. Anal. Journal of Thermal Analysis = J Therm Analysis Journal of Thermal Analysis = J. Therm. Analysis Journal of thermal biology = J Therm Biol Journal of Thermal Biology = J Therm Biol Journal of Thermal Biology = J. Therm. Biol Journal of Thermal Biology = J. Therm. Biol. Journal of Thermal Envelope and Building Science = J. Therm. Envelope Build. Sci. Journal of Thermal Envelope & Building Science = J. Therm. Envelope Build. Sci. Journal of Thermal Insulation and Building Envelopes = J. Therm. Insul. Build. Envelopes Journal of Thermal Insulation = J. Therm. Insul. Journal of Thermal Science and Technology = J. Them. Sci. Technol. Journal of Thermal Science and Technology = J Therm Sci Tech-jpn Journal of Thermal Science and Technology = J. Therm. Sci. Tech-jpn. Journal of Thermal Science and Technology = J. Therm. Sci. Technol. Journal of Thermal Science = J Therm Sci Journal of Thermal Science = J. Therm. Sci. Journal of Thermal Spray Technology = J Therm Spray Techn Journal of Thermal Spray Technology = J. Therm. Spray Techn. Journal of Thermal Spray Technology = J. Therm. Spray Technol. Journal of Thermal Stresses = J. Thermal Stresses Journal of Thermal Stresses = J Therm Stresses Journal of Thermal Stresses = J. Therm. Stresses Journal of Thermophysics and Heat Transfer = J Thermophys Heat Tr Journal of Thermophysics and Heat Transfer = J. Thermophys. Heat Tr. Journal of Thermophysics and Heat Transfer = J. Thermophys Heat Transfer Journal of Thermophysics and Heat Transfer = J. Thermophys. Heat Transfer Journal of Thermoplastic Composite Materials = J Thermoplast Compos Journal of Thermoplastic Composite Materials = J. Thermoplast. Compos. Journal of Thermoplastic Composite Materials = J. Thermoplast. Compos. Mater. Journal of the Rocky Mountain Analgesia Society = J Rocky Mt Analg Soc Journal of the Rocky Mountain Analgesia Society = J. Rocky Mt. Analg. Soc. Journal of the Rocky Mountain Medieval and Renaissance Association. Rocky Mountain Medieval and Renaissance Association = J Rocky Mt Mediev Renaiss Assoc Journal of the Roy Aeronautical Society = J. R. Aeronaut. Soc. Journal of The Royal Aeronautical Society = J R Aeronaut Soc Journal of The Royal Aeronautical Society = J. R. Aeronaut. Soc. Journal of The Royal Agricultural Society of England = J Roy Agr Soc Engl Journal of The Royal Agricultural Society of England = J. Roy. Agr. Soc. Engl. Journal of The Royal Anthropological Institute = J Roy Anthropol Inst Journal of The Royal Anthropological Institute = J. Roy. Anthropol. Inst. Journal of The Royal Anthropological Institute of Great Britain and Ireland = J R Anthropol Inst G Journal of The Royal Anthropological Institute of Great Britain and Ireland = J. R. Anthropol. Inst. G. Journal of the Royal Army Medical Corps = J R Army Med Corps Journal of the Royal Army Medical Corps = J. R. Army Med. Corps Journal of The Royal Army Medical Corps=J R Army Med Corps;; Journal of The Royal Asiatic Society = J Roy Asiatic Soc Journal of The Royal Asiatic Society = J. Roy. Asiatic Soc. Journal of the Royal Asiatic Society of Great Britain and Ireland = JAS Journal of the Royal Asiatic Society of Great Britain & Ireland. Royal Asiatic Society of Great Britain and Ireland = J R Asiat Soc GB Irel Journal of the Royal Astronomical Society of Canada = J. R. Astron. Soc. Can. Journal of The Royal Astronomical Society of Canada = J Roy Astron Soc Can Journal of The Royal Astronomical Society of Canada = J. Roy. Astron. Soc. Can. Journal of the Royal Australian Historical Society = J R Aust Hist Soc Journal of The Royal Australian Historical Society = J Roy Aust Hist Soc Journal of The Royal Australian Historical Society = J. Roy. Aust. Hist. Soc. Journal of the Royal College of General Practitioners = J. R. Coll. Gen. Pract. Journal of The Royal College of General Practitioners = J Roy Coll Gen Pract Journal of The Royal College of General Practitioners = J. Roy. Coll. Gen. Pract. Journal of the Royal College of General Practitioners. Occasional Paper = J. R. Coll. Gen. Pract. Occas. Pap. Journal of the Royal College of Physicians of London = J R Coll Physicians Lond Journal of the Royal College of Physicians of London = J. R. Coll. Physicians Lond. Journal of The Royal College Of Physicians Of London=J R Coll Physicians Lond;; Journal of The Royal College of Physicians of London = J Roy Coll Phys Lond Journal of The Royal College of Physicians of London = J. Roy. Coll. Phys. Lond. Journal of the Royal College of Surgeons of Edinburgh = J R Coll Surg Edinb Journal of the Royal College of Surgeons of Edinburgh = J. R. Coll. Surg. Edinb. Journal of The Royal College Of Surgeons Of Edinburgh=J R Coll Surg Edinb;; Journal of The Royal College of Surgeons of Edinburgh = J Roy Coll Surg Edin Journal of The Royal College of Surgeons of Edinburgh = J. Roy. Coll. Surg. Edin. Journal of the Royal Institute of Chemistry = J. R. Inst. Chem. Journal of the Royal Microscopical Society = J. R. Microsc. Soc. Journal of The Royal Musical Association = J Roy Music Assn Journal of The Royal Musical Association = J. Roy. Music. Assn. Journal of the Royal Naval Medical Service = J R Nav Med Serv Journal of the Royal Naval Medical Service = J. R. Nav. Med. Serv. Journal of The Royal Naval Medical Service=J R Nav Med Serv;; Journal of The Royal Society for The Promotion of Health = J R Soc Promo Health Journal of The Royal Society for The Promotion of Health = J. R. Soc. Promo. Health Journal of The Royal Society Interface = J Roy Soc Interface Journal of The Royal Society Interface = J. Roy. Soc. . Interface Journal of the Royal Society, Interface = J. R. Soc. Interface Journal of The Royal Society Interface = J R Soc Interface Journal of The Royal Society Interface = J. R. Soc. Interface Journal of the Royal Society, Interface / the Royal Society = J R Soc Interface Journal of the Royal Society of Antiquaries of Ireland. Royal Society of Antiquaries of Ireland = J R Soc Antiq Irel Journal of the Royal Society of Arts = J R Soc Arts Journal of The Royal Society of Health = J Roy Soc Health Journal of The Royal Society of Health = J. Roy. Soc. Health Journal of the Royal Society of Health = J R Soc Health Journal of the Royal Society of Health = J. R. Soc. Health Journal of The Royal Society Of Health=J R Soc Health;; Journal of The Royal Society of Medicine = J Roy Soc Med Journal of The Royal Society of Medicine = J. Roy. Soc. Med. Journal of the Royal Society of Medicine = J R Soc Med Journal of the Royal Society of Medicine = J. R. Soc. Med. Journal of The Royal Society Of Medicine=J R Soc Med;; Journal of The Royal Society of New Zealand = J Roy Soc New Zeal Journal of The Royal Society of New Zealand = J. Roy. Soc. New Zeal. Journal of the Royal Society of Western Australia = J R Soc West Aust Journal of the Royal Statistical Society = J. Roy. Statist. Soc. Ser. A Journal of the Royal Statistical Society = J. Roy. Statist. Soc. Ser. B Journal of the Royal Statistical Society = J. Roy. Statist. Soc. Ser. C Journal of the Royal Statistical Society = J. R. Stat. Soc. Journal of the Royal Statistical Society = J. R. Stat. Soc. Ser. B Stat. Methodol. Journal of the Royal Statistical Society. Series A (General) = J R Stat Soc [Ser A] Journal of The Royal Statistical Society Series A-general = J R Stat Soc Ser A-g Journal of The Royal Statistical Society Series A-general = J. R. Stat. Soc. Ser. A-g. Journal of the Royal Statistical Society, Series A=J. Roy. Statistical Society Journal of The Royal Statistical Society Series A-statistics in Society = J Roy Stat Soc A Sta Journal of The Royal Statistical Society Series A-statistics in Society = J. Roy. Stat. Soc. A. Sta. Journal of the Royal Statistical Society. Series A, (Statistics in Society) = J R Stat Soc Ser A Stat Soc Journal of The Royal Statistical Society Series B-methodological = J Roy Stat Soc B Met Journal of The Royal Statistical Society Series B-methodological = J. Roy. Stat. Soc. B. Met. Journal of The Royal Statistical Society Series B-statistical Methodology = J Roy Stat Soc B Journal of The Royal Statistical Society Series B-statistical Methodology = J. Roy. Stat. Soc. B. Journal of The Royal Statistical Society Series C-applied Statistics = J Roy Stat Soc C-app Journal of The Royal Statistical Society Series C-applied Statistics = J. Roy. Stat. Soc. C-app. Journal of the Royal Statistical Society. Series C, Applied statistics = J R Stat Soc Ser C Appl Stat Journal of The Royal Statistical Society Series D-the Statistician = J Roy Stat Soc D-sta Journal of The Royal Statistical Society Series D-the Statistician = J. Roy. Stat. Soc. D-sta. Journal of The Rubber Research Institute of Malaysia = J Rubber Res I Malay Journal of The Rubber Research Institute of Malaysia = J. Rubber Res. I. Malay. Journal of the Russell Society = J. Russell Soc. Journal of the San Antonio District Dental Society = J. San Antonio Dent. Soc. Journal of The Sanitary Engineering Division-asce = J Sanit Eng Div Asce Journal of The Sanitary Engineering Division-asce = J. Sanit. Eng. Div. Asce. Journal of The Science of Food and Agriculture = J Sci Food Agr Journal of The Science of Food and Agriculture = J. Sci. Food Agr. Journal of the science of food and agriculture = J Sci Food Agric Journal of the Science of Food and Agriculture = J. Sci. Food Agric. Journal of the Science Society of Thailand = J Sci Soc Thailand Journal of The Science Society of Thailand = J Sci Soc Thailand Journal of The Science Society of Thailand = J. Sci. Soc. Thailand Journal of The Scientific Agricultural Society of Finland = J Agr Sci Finland Journal of The Scientific Agricultural Society of Finland = J. Agr. Sci. Finland Journal of The Scientific Laboratories-denison University = J Sci Lab Denison U Journal of The Scientific Laboratories-denison University = J. Sci. Lab. Denison. U. Journal of the Seattle District Dental Society = J Seattle Dist Dent Soc Journal of the Seattle District Dental Society = J. Seattle Dist. Dent. Soc. Journal of the Serbian Chemical Society = J. Serb. Chem. Soc. Journal of The Serbian Chemical Society = J Serb Chem Soc Journal of The Serbian Chemical Society = J. Serb. Chem. Soc. Journal of the Singapore Paediatric Society = J. Singapore Paediatr. Soc. Journal of The Smpte-society of Motion Picture and Television Engineers = J Smpte Journal of The Smpte-society of Motion Picture and Television Engineers = J. Smpte. Journal of the Social Sciences=J. Soc. Sci. Journal of The Society for American Music = J Soc Am Music Journal of The Society for American Music = J. Soc. Am. Music Journal of the Society for Army Historical Research. Society for Army Historical Research (London, England) = J Soc Army Hist Res Journal of The Society for Gynecologic Investigation = J Soc Gynecol Invest Journal of The Society for Gynecologic Investigation = J. Soc. Gynecol. Invest. Journal of the Society for Gynecologic Investigation = J Soc Gynecol Investig Journal of the Society for Gynecologic Investigation = J. Soc. Gynecol. Investig. Journal of The Society For Gynecologic Investigation=J Soc Gynecol Investig;; Journal of the Society for Health Systems = J Soc Health Syst Journal of the Society for Health Systems = J. Soc. Health Syst. Journal of The Society For Health Systems=J Soc Health Syst;; Journal of The Society for Industrial and Applied Mathematics = J Soc Ind Appl Math Journal of The Society for Industrial and Applied Mathematics = J. Soc. Ind. Appl. Math. Journal of the Society for Information Display = J Soc Inf Disp Journal of The Society for Information Display = J Soc Inf Display Journal of The Society for Information Display = J. Soc. Inf. Display Journal of the Society for Integrative Oncology = J Soc Integr Oncol Journal of the Society for Integrative Oncology = J. Soc. Integr. Oncol. Journal of the Society for Radiological Protection = J. Soc. Radiol. Prot. Journal of the Society of Architectural Historians = JSAH Journal of The Society of Architectural Historians = J Soc Archit Hist Journal of The Society of Architectural Historians = J. Soc. Archit. Hist. Journal of The Society of Archivists = J Soc Archivists Journal of The Society of Archivists = J. Soc. Archivists Journal of the Society of Archivists. Society of Archivists (Great Britain) = J Soc Arch Journal of The Society of Chemical Industry-london = J Soc Chem Ind-l Journal of The Society of Chemical Industry-london = J. Soc. Chem. Ind-l. Journal of the Society of Chemical Industry, London = J. Soc. Chem. Ind. London Journal of the Society of Christian Ethics = J Soc Christ Ethics Journal of The Society of Christian Ethics = J Soc Christ Ethics Journal of The Society of Christian Ethics = J. Soc. Christ. Ethics Journal of the Society of Cosmetic Chemists = J Soc Cosmet Chem Journal of the Society of Cosmetic Chemists = J. Soc. Cosmet. Chem. Journal of The Society of Cosmetic Chemists = J Soc Cosmet Chem Journal of The Society of Cosmetic Chemists = J. Soc. Cosmet. Chem. Journal of The Society of Dairy Technology = J Soc Dairy Technol Journal of The Society of Dairy Technology = J. Soc. Dairy Technol. Journal of the Society of Dyers and Colourists = J. Soc. Dyers Colour. Journal of The Society of Dyers and Colourists = J Soc Dyers Colour Journal of The Society of Dyers and Colourists = J. Soc. Dyers Colour. Journal of the Society of Glass Technology = J. Soc. Glass Technol. Journal of the Society of Inorganic Materials, Japan = J. Soc. Inorg. Mater., Jpn. Journal of the Society of Laparoendoscopic Surgeons = J. Soc. Laparoendosc. Surg. Journal of the Society of Leather Technologists and Chemists = J. Soc. Leather Technol. Chem. Journal of The Society of Leather Technologists and Chemists = J Soc Leath Tech Ch Journal of The Society of Leather Technologists and Chemists = J. Soc. Leath. Tech. Ch. Journal of The Society of Motion Picture Engineers = J Soc Motion Pic Eng Journal of The Society of Motion Picture Engineers = J. Soc. Motion Pic. Eng. Journal of The Society of Motion Picture & Television Engineers = J Soc Motion Pict T Journal of The Society of Motion Picture & Television Engineers = J. Soc. Motion Pict. T. Journal of The Society of Motion Picture Television Engineers = J Soc Motion Pict T Journal of The Society of Motion Picture Television Engineers = J. Soc. Motion Pict. T. Journal of the Society of Occupational Medicine = J. Soc. Occup. Med. Journal of The Society of Occupational Medicine = J Soc Occup Med Journal of The Society of Occupational Medicine = J. Soc. Occup. Med. Journal of the Society of Pediatric Nurses = J. Soc. Pediatr. Nurs. Journal of The Society Of Pediatric Nurses=J Soc Pediatr Nurs;; Journal of the Society of Pediatric Nurses : JSPN = J Soc Pediatr Nurs Journal of The Society of Photo-optical Instrumentation Engineers = J Soc Photo Opt I Journal of The Society of Photo-optical Instrumentation Engineers = J. Soc. Photo. Opt. I. Journal of the Society of Research Administrators. Society of Research Administrators = J Soc Res Adm Journal of The Society of Rheology Japan = J Soc Rheol Jpn Journal of The Society of Rheology Japan = J. Soc. Rheol. Jpn. Journal of the Solar Energy Society of India = J. Sol. Energy Soc. India Journal of The South African Chemical Institute = J S Afr Chem I Journal of The South African Chemical Institute = J. S. Afr. Chem. I. Journal of The South African Institute of Mining and Metallurgy = J S Afr I Min Metall Journal of The South African Institute of Mining and Metallurgy = J. S. Afr. I. Min. Metall. Journal of the South African Institute of Mining and Metallurgy = J. S. Afr. Inst. Min. Metall. Journal of The South African Institution of Civil Engineering = J S Afr Inst Civ Eng Journal of The South African Institution of Civil Engineering = J. S. Afr. Inst. Civ. Eng. Journal of the South African Logopedic Society = J S Afr Logop Soc Journal of the South African Speech and Hearing Association = J S Afr Speech Hear Assoc Journal of the South African Speech and Hearing Association = J. S. Afr. Speech Hear. Assoc. Journal of the South African Veterinary Association = J S Afr Vet Assoc Journal of the South African Veterinary Association = J. S. Afr. Vet. Assoc. Journal of The South African Veterinary Association=J S Afr Vet Assoc;; Journal of The South African Veterinary Association-tydskrif Van Die Suid-afrikaanse Veterinere Vereniging = J S Afr Vet Assoc Journal of The South African Veterinary Association-tydskrif Van Die Suid-afrikaanse Veterinere Vereniging = J. S. Afr. Vet. Assoc. Journal of the South African Veterinary Medical Association = J S Afr Vet Med Assoc Journal of the South African Veterinary Medical Association = J. S. Afr. Vet. Med. Assoc. Journal of the South Carolina Medical Association (1975) = J S C Med Assoc Journal of The South Carolina Medical Association = J S C Med Assoc Journal of The South Carolina Medical Association = J. S. C. Med. Assoc. Journal of the Southern African Institute of Mining and Metallurgy = J. South Afr. Inst. Min. Metall. Journal of the Southern California Dental Hygienists Association = J. South. Calif. State. Dent. Hyg. Assoc. Journal of the Southern California Dental Hygienists' Association = J South Calif State Dent Hyg Assoc Journal of the Southern Orthopaedic Association = J South Orthop Assoc Journal of the Southern Orthopaedic Association = J. South. Orthop. Assoc. Journal of The Southern Orthopaedic Association=J South Orthop Assoc;; Journal of The Southwest = J Southwest Journal of The Southwest = J. Southwest Journal of the Sri Lanka Branch of the Royal Asiatic Society = J Sri Lanka Branch R Asiat Soc Journal of the Statistical and Social Inquiry Society of Ireland=J. Statistical Soc. Inquiry Society Ireland Journal of The Structural Division-asce = J Struct Div-asce Journal of The Structural Division-asce = J. Struct. Div-asce. Journal of The Surveying and Mapping Division-asce = J Surv Eng Div-asce Journal of The Surveying and Mapping Division-asce = J. Surv. Eng. Div-asce. Journal of The Taiwan Institute of Chemical Engineers = J Taiwan Inst Chem E Journal of The Taiwan Institute of Chemical Engineers = J. Taiwan Inst. Chem. E. Journal of the Taiwan Institute of Chemical Engineers = J. Taiwan Inst. Chem. Eng. Journal of the Technical University at Plovdiv = J. Tech. Univ. Plovdiv Fundam. Sci. Appl. Ser. A Pure Appl. Math. Journal of the Tennessee Dental Association = J. Tenn. Dent. Assoc. Journal of The Tennessee Medical Association = J Tennessee Med Ass Journal of The Tennessee Medical Association = J. Tennessee Med. Ass. Journal of the Tennessee Medical Association = J Tenn Med Assoc Journal of the Tennessee Medical Association = J. Tenn. Med. Assoc. Journal of the Texas Dental Hygienists Association = J. Texas Dent. Hyg. Assoc. Journal of The Textile Institute = J Text I Journal of The Textile Institute = J. Text. I. Journal of the Textile Institute = J. Text. Inst. Journal of The Torrey Botanical Society = J Torrey Bot Soc Journal of The Torrey Botanical Society = J. Torrey Bot. Soc. Journal of The University Film and Video Association = J Univ Film Video As Journal of The University Film and Video Association = J. Univ. Film Video As. Journal of The University Film Association = J Univ Film Assoc Journal of The University Film Association = J. Univ. Film Assoc. Journal of The University of Kuwait-science = J U Kuwait-sci Journal of The University of Kuwait-science = J. U. Kuwait-sci. Journal of The Urban Planning & Development Division-asce = J Urban Plan Dev Div Journal of The Urban Planning & Development Division-asce = J. Urban Plan. Dev. Div. Journal of The Violin Society of America = J Violin Soc Am Journal of The Violin Society of America = J. Violin Soc. Am. Journal of the Walters Art Gallery = JWAG Journal of The Warburg and Courtauld Institutes = J Warburg Courtauld Journal of The Warburg and Courtauld Institutes = J. Warburg Courtauld Journal of the Warburg and Courtauld Institutes = J. Warburg Courtauld Inst. Journal of the Warburg and Courtauld Institutes = J Warburg Courtauld Inst Journal of the Warburg and Courtauld Institutes = JWCI Journal of the Warburg and Courtauld Institutes = JWI Journal of The Waterway Port Coastal and Ocean Division-asce = J Waterw Port C Div Journal of The Waterway Port Coastal and Ocean Division-asce = J. Waterw. Port C. Div. Journal of The Waterways Harbors and Coastal Engineering Division-asce = J Waterway Div-asce Journal of The Waterways Harbors and Coastal Engineering Division-asce = J. Waterway. Div-asce. Journal of the West Australian Nurses = J West Aust Nurses Journal of the West Australian Nurses = J. West Aust. Nurses Journal of the Western Society of Periodontology / Periodontal Abstracts = J. West. Soc. Periodontal Periodontal Abstr. Journal of the West = J West Journal of The West = J West Journal of The West = J. West Journal of the West Virginia Philosophical Society = J West Va Philo Soc Journal of the Wisconsin Dental Association = J. Wis. Dent. Assoc. Journal of the Wisconsin State Dental Society = J. Wis. State Dent. Soc. Journal of the World Aquaculture Society = J. World Aquacult. Soc. Journal of The World Aquaculture Society = J World Aquacult Soc Journal of The World Aquaculture Society = J. World Aquacult. Soc. Journal of Thoracic and Cardiovascular Surgery=J Thorac Cardiovasc Surg;; Journal of Thoracic and Cardiovascular Surgery = J. Thorac. Cardiovasc. Surg. Journal of Thoracic and Cardiovascular Surgery = J Thorac Cardiov Sur Journal of Thoracic and Cardiovascular Surgery = J. Thorac. Cardiov. Sur. Journal of Thoracic Imaging = J Thorac Imag Journal of Thoracic Imaging = J. Thorac. Imag. Journal of thoracic imaging = J Thorac Imaging Journal of Thoracic Imaging = J. Thorac. Imaging Journal of Thoracic Oncology = J Thorac Oncol Journal of Thoracic Oncology = J. Thorac. Oncol. Journal of thoracic oncology : official publication of the International Association for the Study of Lung Cancer = J Thorac Oncol Journal of Thoracic Surgery = J Thorac Surg Journal of Thoracic Surgery = J. Thorac. Surg. Journal of thought = J Thought Journal of Thought = J Thought Journal of Thought = J. Thought Journal of thrombosis and haemostasis : JTH = J Thromb Haemost Journal of Thrombosis and Haemostasis = J Thromb Haemost Journal of Thrombosis and Haemostasis = J. Thromb. Haemost. Journal of Thrombosis and Thrombolysis = J Thromb Thrombolys Journal of Thrombosis and Thrombolysis = J. Thromb. Thrombolys. Journal of thrombosis and thrombolysis = J Thromb Thrombolysis Journal of Thrombosis and Thrombolysis = J. Thromb. Thrombolysis Journal of Tianjin Normal University = J. Tianjin Norm. Univ. Nat. Sci. Ed. Journal of Tianjin University = J. Tianjin Univ. Journal of Time Series Analysis = J. Time Ser. Anal. Journal of Time Series Analysis = J Time Ser Anal Journal of Time Series Analysis = J. Time Ser. Anal. Journal of tissue culture methods : Tissue Culture Association manual of cell, tissue, and organ culture procedures = J Tissue Cult Methods Journal of Tissue Engineering and Regenerative Medicine = J Tissue Eng Regen M Journal of Tissue Engineering and Regenerative Medicine = J. Tissue Eng. Regen. M. Journal of tissue viability = J Tissue Viability Journal of Tongji Medical University=J Tongji Med Univ;; Journal of Tongji Medical University = J. Tongji Med. Univ. Journal of Topology = J Topol Journal of Topology = J. Topol. Journal of Town Planning Institute = J Town Plann I Journal of Town Planning Institute = J. Town Plann. I. Journal of Toxicological Sciences=J Toxicol Sci;; Journal of Toxicological Sciences = J Toxicol Sci Journal of Toxicological Sciences = J. Toxicol. Sci. Journal of Toxicologic Pathology = J Toxicol Pathol Journal of Toxicologic Pathology = J. Toxicol. Pathol. Journal of Toxicology and Environmental Health = J Toxicol Env Health Journal of Toxicology and Environmental Health = J. Toxicol. Env. Health Journal of toxicology and environmental health = J Toxicol Environ Health Journal of Toxicology and Environmental Health=J Toxicol Environ Health;; Journal of Toxicology and Environmental Health = J. Toxicol. Environ. Health Journal of Toxicology and Environmental Health-part A-current Issues = J Toxicol Env Heal A Journal of Toxicology and Environmental Health-part A-current Issues = J. Toxicol. Env. Heal. A. Journal of Toxicology and Environmental Health-part A = J Toxicol Env Heal A Journal of Toxicology and Environmental Health-part A = J. Toxicol. Env. Heal. A Journal of toxicology and environmental health. Part A = J Toxicol Environ Health A Journal of Toxicology and Environmental Health. Part A = J. Toxicol. Environ. Health A Journal of Toxicology and Environmental Health, Part A = J. Toxicol. Environ. Health, Part A Journal of Toxicology and Environmental Health-part B-critical Reviews = J Toxicol Env Heal B Journal of Toxicology and Environmental Health-part B-critical Reviews = J. Toxicol. Env. Heal. B. Journal of toxicology and environmental health. Part B, Critical reviews = J Toxicol Environ Health B Crit Rev Journal of Toxicology and Environmental Health. Part B, Critical Reviews = J. Toxicol. Environ. Health B Crit. Rev. Journal of Toxicology and Environmental Health, Part B: Critical Reviews = J. Toxicol. Environ. Health, Part B Journal of toxicology and environmental health. Supplement = J Toxicol Environ Health Suppl Journal of Toxicology and Environmental Health. Supplement = J. Toxicol. Environ. Health. Suppl. Journal of Toxicology and Environment Health = J. Toxicol. Environ. Health Journal of Toxicology-clinical Toxicology = J Toxicol-clin Toxic Journal of Toxicology-clinical Toxicology = J. Toxicol-clin. Toxic. Journal of toxicology. Clinical toxicology = J Toxicol Clin Toxicol Journal of Toxicology - Clinical Toxicology = J. Toxicol., Clin. Toxicol. Journal of Toxicology, Clinical Toxicology = J. Toxicol. Clin. Toxicol. Journal of Toxicology. Clinical Toxicology=J Toxicol Clin Toxicol;; Journal of Toxicology. Clinical Toxicology = J. Toxicol. Clin. Toxicol. Journal of toxicology. Cutaneous and ocular toxicology = J Toxicol Cutaneous Ocul Toxicol Journal of Toxicology - Cutaneous and Ocular Toxicology = J. Toxicol. Cutaneous Ocul. Toxicol. Journal of Toxicology - Cutaneous and Ocular Toxicology = J. Toxicol., Cutaneous Ocul. Toxicol. Journal of Toxicology-cutaneous and Ocular Toxicology = J Toxicol-cutan Ocul Journal of Toxicology-cutaneous and Ocular Toxicology = J. Toxicol-cutan. Ocul. Journal of Toxicology & Environmental Health Part A: Current Issues = J. Toxicol. Environ. Health Part A Journal of Toxicology & Environmental Health Part B: Critical Reviews = J. Toxicol. Environ. Health Part B Journal of toxicology. Toxin reviews = J Toxicol Toxin Rev Journal of Toxicology-toxin Reviews = J Toxicol-toxin Rev Journal of Toxicology-toxin Reviews = J. Toxicol-toxin. Rev. Journal of Toxicology - Toxin Reviews = J. Toxicol. Toxin Rev. Journal of Toxicology - Toxin Reviews = J. Toxicol., Toxin Rev. Journal of Trace and Microprobe Techniques = J Trace Microprobe T Journal of Trace and Microprobe Techniques = J. Trace Microprobe T. Journal of Trace and Microprobe Techniques = J. Trace Microprobe Tech. Journal of Trace Elements and Electrolytes in Health and Disease = J Trace Elem Elect H Journal of Trace Elements and Electrolytes in Health and Disease = J. Trace Elem. Elect. H. Journal of trace elements and electrolytes in health and disease = J Trace Elem Electrolytes Health Dis Journal of Trace Elements and Electrolytes in Health and Disease = J. Trace Elem. Electrolytes Health Dis. Journal of Trace Elements in Experimental Medicine = J Trace Elem Exp Med Journal of Trace Elements in Experimental Medicine = J. Trace Elem. Exp. Med. Journal of Trace Elements in Medicine and Biology = J Trace Elem Med Bio Journal of Trace Elements in Medicine and Biology = J. Trace Elem. Med. Bio. Journal of Trace Elements in Medicine and Biology = J. Trace Elem. Med Biol. Journal of Trace Elements in Medicine and Biology = J. Trace Elem. Med. Biol. Journal of Trace Elements In Medicine and Biology=J Trace Elem Med Biol;; Journal of trace elements in medicine and biology : organ of the Society for Minerals and Trace Elements (GMS) = J Trace Elem Med Biol Journal of Traditional Chinese Medicine=J Tradit Chin Med;; Journal of Traditional Chinese Medicine = J Tradit Chin Med Journal of Traditional Chinese Medicine = J. Tradit. Chin. Med. Journal of Transcultural Nursing = J Transcult Nurs Journal of Transcultural Nursing = J. Transcult. Nurs. Journal of transcultural nursing : official journal of the Transcultural Nursing Society / Transcultural Nursing Society = J Transcult Nurs Journal of translational medicine = J Transl Med Journal of Translational Medicine = J Transl Med Journal of Translational Medicine = J. Transl. Med. Journal of transnational law & policy / Florida State University = J Transnatl Law Policy Journal of Transnational Management Development=J. Transnat. Manage. Devel. Journal of Transpersonal Psychology = J Transpersonal Psy Journal of Transpersonal Psychology = J. Transpersonal Psy. Journal of Transplant Coordination = J. Transpl. Coord. Journal of transplant coordination : official publication of the North American Transplant Coordinators Organization (NATCO) = J Transpl Coord Journal of Transportation Engineering-asce = J Transp Eng-asce Journal of Transportation Engineering-asce = J. Transp. Eng-asce. Journal of Transportation Engineering = J. Transp. Eng. Journal of Transport Economics and Policy=J. Transp. Econ. Pol. Journal of Transport Economics and Policy = J Transp Econ Policy Journal of Transport Economics and Policy = J. Transp. Econ. Policy Journal of Transport Geography = J Transp Geogr Journal of Transport Geography = J. Transp. Geogr. Journal of Trauma & Dissociation = J Trauma Dissociatio Journal of Trauma & Dissociation = J. Trauma Dissociatio. Journal of trauma & dissociation : the official journal of the International Society for the Study of Dissociation (ISSD) = J Trauma Dissociation Journal of Trauma-injury Infection and Critical Care = J Trauma Journal of Trauma-injury Infection and Critical Care = J. Trauma. Journal of Trauma = J Traum Journal of Trauma = J. Traum. Journal of Trauma=J Trauma;; Journal of Trauma = J. Trauma Journal of Trauma Nursing = J. Trauma Nurs. Journal of trauma nursing : the official journal of the Society of Trauma Nurses = J Trauma Nurs Journal of traumatic stress = J Trauma Stress Journal of Traumatic Stress=J Trauma Stress;; Journal of Traumatic Stress = J Trauma Stress Journal of Traumatic Stress = J. Trauma. Stress Journal of Travel Medicine = J Travel Med Journal of Travel Medicine = J. Travel Med. Journal of travel medicine : official publication of the International Society of Travel Medicine and the Asia Pacific Travel Health Association = J Travel Med Journal of Travel Research = J Travel Res Journal of Travel Research = J. Travel Res. Journal of Tribology = J. Tribol. Journal of Tribology-transactions of The Asme = J Tribol-t Asme Journal of Tribology-transactions of The Asme = J. Tribol-t. Asme Journal of Tropical Ecology = J Trop Ecol Journal of Tropical Ecology = J. Trop. Ecol. Journal of Tropical Forest Science = J Trop For Sci Journal of Tropical Forest Science = J. Trop. For. Sci. Journal of Tropical Geography = J Trop Geogr Journal of Tropical Geography = J. Trop. Geogr. Journal of Tropical Medicine and Hygiene = J Trop Med Hyg Journal of Tropical Medicine and Hygiene = J. Trop. Med. Hyg. Journal of Tropical Meteorology = J Trop Meteorol Journal of Tropical Meteorology = J. Trop. Meteorol. Journal of Tropical Microbiology and Biotechnology = J. Trop. Microbiol. Biotechnol. Journal of Tropical Pediatrics and African Child Health = J. Trop. Pediatr. Afr. Child Health Journal of Tropical Pediatrics and Environmental Child Health = J Trop Ped Env Ch H Journal of Tropical Pediatrics and Environmental Child Health = J. Trop. Ped. Env. Ch. H. Journal of Tropical Pediatrics and Environmental Child Health = J. Trop. Pediatr. Environ. Child Health Journal of tropical pediatrics = J Trop Pediatr Journal of Tropical Pediatrics=J Trop Pediatr;; Journal of Tropical Pediatrics = J. Trop. Pediatr. Journal of Tropical Pediatrics = J Trop Pediatrics Journal of Tropical Pediatrics = J. Trop. Pediatrics Journal of Tsinghua University = J. Tsinghua Univ. Journal of Tsuda College = J. Tsuda College Journal of Tumor Marker Oncology = J Tumor Marker Oncol Journal of Tumor Marker Oncology = J. Tumor Marker Oncol. Journal of Turbomachinery = J. Turbomach. Journal of Turbomachinery-transactions of The Asme = J Turbomach Journal of Turbomachinery-transactions of The Asme = J. Turbomach. Journal of Turbulence = J Turbul Journal of Turbulence = J. Turbul. Journal of Typographic Research = J Typograph Res Journal of Typographic Research = J. Typograph. Res. Journal of Ukrainian Studies = J Ukr Stud Journal of Ukrainian Studies = J. Ukr. Stud. Journal of Ultrasound in Medicine = J Ultras Med Journal of Ultrasound in Medicine = J. Ultras. Med. Journal of Ultrasound in Medicine = J. Ultrasound Med. Journal of Ultrasound In Medicine=J Ultrasound Med;; Journal of ultrasound in medicine : official journal of the American Institute of Ultrasound in Medicine = J Ultrasound Med Journal of Ultrasound = J. Ultrasound Journal of Ultrastructure and Molecular Structure Research = J Ultra Mol Struct R Journal of Ultrastructure and Molecular Structure Research = J. Ultra. Mol. Struct. R. Journal of ultrastructure and molecular structure research = J Ultrastruct Mol Struct Res Journal of Ultrastructure and Molecular Structure Research = J. Ultrastruct. Mol. Struct. Res. Journal of Ultrastructure Research = J Ultra Mol Struct R Journal of Ultrastructure Research = J. Ultra. Mol. Struct. R. Journal of ultrastructure research = J Ultrastruct Res Journal of Ultrastructure Research = J. Ultrastruct. Res. Journal of Universal Computer Science = J Univers Comput Sci Journal of Universal Computer Science = J. Univers. Comput. Sci. Journal of University of Science and Technology Beijing = J Univ Sci Technol B Journal of University of Science and Technology Beijing = J. Univ. Sci. Technol. B. Journal of UOEH = J UOEH Journal of UOEH, University of Occupational and Environmental Health = J. UOEH Journal of Urban Affairs = J Urban Aff Journal of Urban Affairs = J. Urban Aff. Journal of Urban Analysis = J Urban Anal Journal of Urban Analysis = J. Urban Anal. Journal of urban economics = J Urban Econ Journal of Urban Economics=J. Urban Econ. Journal of Urban Economics = J Urban Econ Journal of Urban Economics = J. Urban Econ. Journal of urban health : bulletin of the New York Academy of Medicine = J Urban Health Journal of Urban Health-bulletin of The New York Academy of Medicine = J Urban Health Journal of Urban Health-bulletin of The New York Academy of Medicine = J. Urban Health. Journal of Urban Health = J. Urban Health Journal of urban history = J Urban Hist Journal of Urban History = J Urban Hist Journal of Urban History = J. Urban Hist. Journal of Urban Law = J Urban Law Journal of Urban Law = J. Urban Law Journal of urban law / University of Detroit = J Urban Law Journal of Urban Planning and Development-asce = J Urban Plan D-asce Journal of Urban Planning and Development-asce = J. Urban Plan. D-asce. Journal of Urban Planning and Development = J. Urban Plann. Dev. Journal of Urban Technology = J Urban Technol Journal of Urban Technology = J. Urban Technol. Journal of urological nursing = J Urol Nurs Journal of Urology=J Urol;; Journal of Urology = J. Urol. Journal of Urology = J Urology Journal of Urology = J. Urology Journal of Vacuum Science and Technology A = J. Vac. Sci. Technol., A Journal of Vacuum Science and Technology B = J. Vac. Sci. Technol., B Journal of Vacuum Science & Technology A = J Vac Sci Technol A Journal of Vacuum Science & Technology A = J. Vac. Sci. Technol. A Journal of vacuum science & technology. A, Vacuum, surfaces, and films : an official journal of the American Vacuum Society = J Vac Sci Technol A Journal of Vacuum Science & Technology A-vacuum Surfaces and Films = J Vac Sci Technol A Journal of Vacuum Science & Technology A-vacuum Surfaces and Films = J. Vac. Sci. Technol. A. Journal of Vacuum Science & Technology, A: Vacuum, Surfaces, and Films = J. Vac. Sci. Technol., A Journal of Vacuum Science & Technology B = J Vac Sci Technol B Journal of Vacuum Science & Technology B = J. Vac. Sci. Technol. B Journal of Vacuum Science & Technology, B: Microelectronics and Nanometer Structures--Processing, Measurement, and Phenomena = J. Vac. Sci. Technol., B: Microelectron. Nanometer Struct.--Process., Meas., Phenom. Journal of Vacuum Science & Technology, B: Microelectronics Processing and Phenomena = J. Vac. Sci. Technol., B Journal of Vacuum Science & Technology = J Vac Sci Technol Journal of Vacuum Science & Technology = J. Vac. Sci. Technol. Journal of Value Inquiry = J Value Inquiry Journal of Value Inquiry = J. Value Inquiry Journal of Vascular Access = J Vasc Access Journal of Vascular Access = J. Vasc. Access Journal of Vascular and Interventional Radiology=J Vasc Interv Radiol;; Journal of Vascular and Interventional Radiology = J Vasc Interv Radiol Journal of Vascular and Interventional Radiology = J. Vasc. Interv. Radiol. Journal of vascular and interventional radiology : JVIR = J Vasc Interv Radiol Journal of Vascular Diseases, Supplement = J Vasc Dis Journal of Vascular Diseases, Supplement = J. Vasc. Dis. Journal of Vascular Nursing = J. Vasc. Nurs. Journal of vascular nursing : official publication of the Society for Peripheral Vascular Nursing = J Vasc Nurs Journal of vascular research = J Vasc Res Journal of Vascular Research=J Vasc Res;; Journal of Vascular Research = J Vasc Res Journal of Vascular Research = J. Vasc. Res. Journal of Vascular Surgery=J Vasc Surg;; Journal of Vascular Surgery = J Vasc Surg Journal of Vascular Surgery = J. Vasc. Surg. Journal of vascular surgery : official publication, the Society for Vascular Surgery [and] International Society for Cardiovascular Surgery, North American Chapter = J Vasc Surg Journal of vector borne diseases = J Vector Borne Dis Journal of Vector Borne Diseases = J. Vector Borne Dis. Journal of Vector Borne Diseases = J Vector Dis Journal of Vector Borne Diseases = J. Vector Dis. Journal of vector ecology : journal of the Society for Vector Ecology = J Vector Ecol Journal of Vector Ecology=J Vector Ecol;; Journal of Vector Ecology = J Vector Ecol Journal of Vector Ecology = J. Vector Ecol. Journal of Vegetation Science = J Veg Sci Journal of Vegetation Science = J. Veg. Sci. Journal of Venomous Animals and Toxins Including Tropical Diseases = J Venom Anim Toxins Journal of Venomous Animals and Toxins Including Tropical Diseases = J. Venom. Anim. Toxins Journal of Venomous Animals Including Tropical Diseases = J. Venomous Anim. Toxins Incl. Trop. Dis. Journal of Verbal Learning and Verbal Behavior = J Verb Learn Verb Be Journal of Verbal Learning and Verbal Behavior = J. Verb. Learn. Verb. Be. Journal of Vertebrate Paleontology = J Vertebr Paleontol Journal of Vertebrate Paleontology = J. Vertebr. Paleontol. Journal of vestibular research : equilibrium & orientation = J Vestib Res Journal of Vestibular Research-equilibrium & Orientation = J Vestibul Res-equil Journal of Vestibular Research-equilibrium & Orientation = J. Vestibul. Res-equil. Journal of Vestibular Research=J Vestib Res;; Journal of Vestibular Research = J. Vestib. Res. Journal of Veterinary Behavior-clinical Applications and Research = J Vet Behav Journal of Veterinary Behavior-clinical Applications and Research = J. Vet. Behav. Journal of veterinary cardiology : the official journal of the European Society of Veterinary Cardiology = J Vet Cardiol Journal of veterinary dentistry = J Vet Dent Journal of Veterinary Dentistry = J Vet Dent Journal of Veterinary Dentistry = J. Vet. Dent. Journal of Veterinary Diagnostic Investigation=J Vet Diagn Invest;; Journal of Veterinary Diagnostic Investigation = J Vet Diagn Invest Journal of Veterinary Diagnostic Investigation = J. Vet. Diagn. Invest. Journal of veterinary diagnostic investigation : official publication of the American Association of Veterinary Laboratory Diagnosticians, Inc = J Vet Diagn Invest Journal of Veterinary Emergency and Critical Care = J Vet Emerg Crit Car Journal of Veterinary Emergency and Critical Care = J. Vet. Emerg. Crit. Car. Journal of veterinary internal medicine / American College of Veterinary Internal Medicine = J Vet Intern Med Journal of Veterinary Internal Medicine=J Vet Intern Med;; Journal of Veterinary Internal Medicine = J Vet Intern Med Journal of Veterinary Internal Medicine = J. Vet. Intern. Med. Journal of veterinary medical education = J Vet Med Educ Journal of Veterinary Medical Education = J Vet Med Educ Journal of Veterinary Medical Education = J. Vet. Med. Educ. Journal of Veterinary Medical Science=J Vet Med Sci;; Journal of Veterinary Medical Science = J Vet Med Sci Journal of Veterinary Medical Science = J. Vet. Med. Sci. Journal of veterinary medicine. A, Physiology, pathology, clinical medicine = J Vet Med A Physiol Pathol Clin Med Journal of Veterinary Medicine. A, Physiology, Pathology, Clinical Medicine = J. Vet. Med. A Physiol. Pathol. Clin. Med. Journal of veterinary medicine. B, Infectious diseases and veterinary public health = J Vet Med B Infect Dis Vet Public Health Journal of Veterinary Medicine. B, Infectious Diseases and Veterinary Public Health = J. Vet. Med. B Infect. Dis. Vet. Public Health Journal of Veterinary Medicine Series A-physiology Pathology Clinical Medicine = J Vet Med A Journal of Veterinary Medicine Series A-physiology Pathology Clinical Medicine = J. Vet. Med. A. Journal of Veterinary Medicine Series A-zentralblatt Fur Veterinarmedizin Reihe A-physiology Pathology Clinical Medicine = J Vet Med A Journal of Veterinary Medicine Series A-zentralblatt Fur Veterinarmedizin Reihe A-physiology Pathology Clinical Medicine = J. Vet. Med. A. Journal of Veterinary Medicine Series B-infectious Diseases and Veterinary Public Health = J Vet Med B Journal of Veterinary Medicine Series B-infectious Diseases and Veterinary Public Health = J. Vet. Med. B. Journal of Veterinary Medicine Series B-infectious Diseases and Veterinary Public Health = J Vet Med B Journal of Veterinary Medicine Series B-infectious Diseases and Veterinary Public Health = J. Vet. Med. B. Journal of Veterinary Medicine Series B-zentralblatt Fur Veterinarmedizin Reihe B-infectious Diseases and Veterinary Public Health = J Vet Med B Journal of Veterinary Medicine Series B-zentralblatt Fur Veterinarmedizin Reihe B-infectious Diseases and Veterinary Public Health = J. Vet. Med. B. Journal of veterinary pharmacology and therapeutics = J Vet Pharmacol Ther Journal of Veterinary Pharmacology and Therapeutics=J Vet Pharmacol Ther;; Journal of Veterinary Pharmacology and Therapeutics = J Vet Pharmacol Ther Journal of Veterinary Pharmacology and Therapeutics = J. Vet. Pharmacol. Ther. Journal of Veterinary Science = J Vet Sci Journal of Veterinary Science = J. Vet. Sci. Journal of veterinary science (Suwon-si, Korea) = J Vet Sci Journal of Vibration Acoustics Stress and Reliability in Design-transactions of The Asme = J Vib Acoust Journal of Vibration Acoustics Stress and Reliability in Design-transactions of The Asme = J. Vib. Acoust. Journal of Vibration Acoustics Stress and Reliability in Design-transactions of The Asme = J Vib Acoust Stress Journal of Vibration Acoustics Stress and Reliability in Design-transactions of The Asme = J. Vib. Acoust. Stress Journal of Vibration and Acoustics = J. Vib. Acoust. Journal of Vibration and Acoustics-transactions of The Asme = J Vib Acoust Journal of Vibration and Acoustics-transactions of The Asme = J. Vib. Acoust. Journal of Vibration and Control = J. Vib. Control Journal of Vibration and Control = J Vib Control Journal of Vibration and Control = J. Vib. Control Journal of Vibroengineering = J Vibroeng Journal of Vibroengineering = J. Vibroeng. Journal of Vinyl & Additive Technology = J Vinyl Addit Techn Journal of Vinyl & Additive Technology = J. Vinyl Addit. Techn. Journal of Vinyl & Additive Technology = J. Vinyl Addit. Technol. Journal of Vinyl and Additive Technology = J. Vinyl Add. Tech. Journal of viral hepatitis = J Viral Hepat Journal of Viral Hepatitis=J Viral Hepat;; Journal of Viral Hepatitis = J. Viral Hepat. Journal of Viral Hepatitis = J Viral Hepatitis Journal of Viral Hepatitis = J. Viral Hepatitis Journal of virological methods = J Virol Methods Journal of Virological Methods=J Virol Methods;; Journal of Virological Methods = J Virol Methods Journal of Virological Methods = J. Virol. Methods Journal of virology = J Virol Journal of Virology=J Virol;; Journal of Virology = J Virol Journal of Virology = J. Virol. Journal of vision = J Vis Journal of Vision = J. Vis. Journal of Vision = J Vision Journal of Vision = J. Vision Journal of Visual Communication and Image Representation = J Vis Commun Image R Journal of Visual Communication and Image Representation = J. Vis. Commun. Image R. Journal of Visual Communication and Image Representation = J. Visual Commun. Image Represent. Journal of visual communication in medicine = J Vis Commun Med Journal of Visual Communication in Medicine = J. Vis. Commun. Med. Journal of Visual Culture = J Vis Cult Journal of Visual Culture = J. Vis. Cult. Journal of visual impairment & blindness = J Vis Impair Blind Journal of Visual Impairment & Blindness = J Visual Impair Blin Journal of Visual Impairment & Blindness = J. Visual Impair. Blin. Journal of Visualization and Computer Animation = J Visual Comp Animat Journal of Visualization and Computer Animation = J. Visual. Comp. Animat. Journal of Visualization = J. Visualization Journal of Visualization = J Visual-japan Journal of Visualization = J. Visual-japan. Journal of Visual Languages and Computing = J Visual Lang Comput Journal of Visual Languages and Computing = J. Visual Lang. Comput. Journal of Vitaminology = J Vitaminol Journal of Vitaminology = J. Vitaminol. Journal of Vitaminology = J. Vitaminol. (Kyoto) Journal of Vlsi and Computer Systems = J Vlsi Comput Syst Journal of Vlsi and Computer Systems = J. Vlsi Comput. Syst. Journal of Vlsi Signal Processing = J Vlsi Signal Proc Journal of Vlsi Signal Processing = J. Vlsi Signal Proc. Journal of VLSI Signal Processing = J. VLSI Sig. Proc. Journal of Vlsi Signal Processing Series = J Vlsi Sign Journal of Vlsi Signal Processing Series = J. Vlsi Sign. Journal of Vlsi Signal Processing Systems for Signal Image and Video Technology = J Vlsi Sig Process S Journal of Vlsi Signal Processing Systems for Signal Image and Video Technology = J. Vlsi Sig. Process. S. Journal of Vlsi Signal Processing Systems for Signal Image and Video Technology = J Vlsi Sig Proc Syst Journal of Vlsi Signal Processing Systems for Signal Image and Video Technology = J. Vlsi Sig. Proc. Syst. Journal of Vlsi Signal Processing, Vol 3, Nos 1 and 2 = J Vlsi Sign Journal of Vlsi Signal Processing, Vol 3, Nos 1 and 2 = J. Vlsi Sign. Journal of vocational behavior = J Vocat Behav Journal of Vocational Behavior = J Vocat Behav Journal of Vocational Behavior = J. Vocat. Behav. Journal of Voice=J Voice;; Journal of Voice = J Voice Journal of Voice = J. Voice Journal of voice : official journal of the Voice Foundation = J Voice Journal of Volcanology and Geothermal Research = J. Volcanol. Geotherm. Res. Journal of Volcanology and Geothermal Research = J Volcanol Geoth Res Journal of Volcanology and Geothermal Research = J. Volcanol. Geoth. Res. Journal of Volcanology and Seismology = J Volcanol Seismol+ Journal of Volcanology and Seismology = J. Volcanol. Seismol+.+ Journal of Volcanology and Seismology = J. Volcanol. Seismolog. Journal of voluntary action research = J Volunt Action Res Journal of Voluntary Action Research = J Volunt Action Res Journal of Voluntary Action Research = J. Volunt. Action Res. Journal of Volunteer Administration = J. Volunt. Adm. Journal of Water and Climate = J. Water Clim. Journal of water and health = J Water Health Journal of Water and Health = J Water Health Journal of Water and Health = J. Water Health Journal of Water Chemistry and Technology = J Water Chem Techno+ Journal of Water Chemistry and Technology = J. Water Chem. Techno+.+ Journal of Water Chemistry and Technology = J. Water Chem. Technol. Journal of Water Resource and Protection = J. Water Resour. Prot. Journal of Water Resources Planning and Management-asce = J Water Res Pl-asce Journal of Water Resources Planning and Management-asce = J. Water Res. Pl-asce. Journal of Water Resources Planning and Management = J. Water Resour. Plann. Manage. Journal of Water Services Research and Technology-aqua = J Water Serv Res Tec Journal of Water Services Research and Technology-aqua = J. Water Serv. Res. Tec. Journal of Water Supply Research and Technology-aqua = J Water Supply Res T Journal of Water Supply Research and Technology-aqua = J. Water Supply Res. T. Journal of Water Supply: Research and Technology - AQUA = J. Water Supply Res. Technol. AQUA Journal of Waterway Port Coastal and Ocean Engineering-asce = J Waterw Port C-asce Journal of Waterway Port Coastal and Ocean Engineering-asce = J. Waterw. Port C-asce. Journal of Waterway Port, Coastal, and Ocean Engineering = J. Waterw. Port Coastal Ocean Eng. Journal of Web Engineering = J Web Eng Journal of Web Engineering = J. Web Eng. Journal of Web Semantics = J Web Semant Journal of Web Semantics = J. Web Semant. Journal of Wide Bandgap Materials = J. Wide Bandgap Mater. Journal of wilderness medicine = J Wilderness Med Journal of Wilderness Medicine = J Wilderness Med Journal of Wilderness Medicine = J. Wilderness Med. Journal of wildlife diseases = J Wildl Dis Journal of Wildlife Diseases=J Wildl Dis;; Journal of Wildlife Diseases = J. Wildl. Dis. Journal of Wildlife Diseases = J Wildlife Dis Journal of Wildlife Diseases = J. Wildlife Dis. Journal of Wildlife Management = J Wildlife Manage Journal of Wildlife Management = J. Wildlife Manage. Journal of Wildlife Management = J. Wildl. Manage. Journal of Wildlife Rehabilitation = J Wildlife Rehabil Journal of Wildlife Rehabilitation = J. Wildlife Rehabil. Journal of Wind Engineering and Industrial Aerodynamics = J Wind Eng Ind Aerod Journal of Wind Engineering and Industrial Aerodynamics = J. Wind Eng. Ind. Aerod. Journal of Wind Engineering and Industrial Aerodynamics = J. Wind Eng. Ind. Aerodyn. Journal of women & aging = J Women Aging Journal of Women & Aging = J Women Aging Journal of Women & Aging = J. Women Aging Journal of Women and Aging = J. Women Aging Journal of Women Politics & Policy = J Women Polit Policy Journal of Women Politics & Policy = J. Women Polit. Policy Journal of women's health (2002) = J Womens Health (Larchmt) Journal of Women's Health and Gender-Based Medicine = J. Womens Health Gend. Based Med. Journal of women's health and law = J Womens Heal Journal of Womens Health & Gender-based Medicine = J Women Health Gen-b Journal of Womens Health & Gender-based Medicine = J. Women. Health Gen-b. Journal of women's health & gender-based medicine = J Womens Health Gend Based Med Journal of Women's Health = J. Womens Health Journal of Womens Health=J Womens Health;; Journal of Womens Health = J Womens Health Journal of Womens Health = J. Womens Health Journal of women's health / the official publication of the Society for the Advancement of Women's Health Research = J Womens Health Journal of women's history = J Womens Hist Journal of Womens History = J Womens Hist Journal of Womens History = J. Womens Hist. Journal of Wood Chemistry and Technology = J Wood Chem Technol Journal of Wood Chemistry and Technology = J. Wood Chem. Technol. Journal of Wood Science = J Wood Sci Journal of Wood Science = J. Wood Sci. Journal of World Business=J. World Bus. Journal of World Business = J World Bus Journal of World Business = J. World Bus. Journal of World History = J World Hist Journal of World History = J. World Hist. Journal of World Prehistory = J World Prehist Journal of World Prehistory = J. World Prehist. Journal of World Trade=J. World Trade Journal of World Trade = J World Trade Journal of World Trade = J. World Trade Journal of World Trade Law=J. World Trade Law Journal of wound care = J Wound Care Journal of Wound Care = J. Wound Care Journal of Wound Ostomy and Continence Nursing = J Wound Ostomy Cont Journal of Wound Ostomy and Continence Nursing = J. Wound Ostomy Cont. Journal of Wound, Ostomy and Continence Nursing = J. Wound. Ostomy Continence Nurs. Journal of wound, ostomy, and continence nursing : official publication of The Wound, Ostomy and Continence Nurses Society / WOCN = J Wound Ostomy Continence Nurs Journal of Wscg, 2006 = Journal Wscg Journal of Wscg, 2006 = Journal Wscg. Journal of Wscg, 2007 = Journal Wscg Journal of Wscg, 2007 = Journal Wscg. Journal of Wscg, 2008 = Journal Wscg Journal of Wscg, 2008 = Journal Wscg. Journal of Wscg = Journal Wscg Journal of Wuhan University = J. Wuhan Univ. Natur. Sci. Ed. Journal of Wuhan University of Technology-materials Science Edition = J Wuhan Univ Technol Journal of Wuhan University of Technology-materials Science Edition = J. Wuhan Univ. Technol. Journal of X-ray science and technology = J Xray Sci Technol Journal of X-ray Science and Technology = J X-ray Sci Technol Journal of X-ray Science and Technology = J. X-ray Sci. Technol. Journal of Yangzhou University = J. Yangzhou Univ. Nat. Sci. Ed. Journal of Yiyang Teachers' College = J. Yiyang Teachers College Journal of youth and adolescence = J Youth Adolesc Journal of Youth and Adolescence = J Youth Adolescence Journal of Youth and Adolescence = J. Youth Adolescence Journal of Youth Studies = J Youth Stud Journal of Youth Studies = J. Youth Stud. Journal of Zhejiang University-science A = J Zhejiang Univ-sc A Journal of Zhejiang University-science A = J. Zhejiang Univ-sc. A Journal of Zhejiang University-science B = J Zhejiang Univ-sc B Journal of Zhejiang University-science B = J. Zhejiang Univ-sc. B Journal of Zhejiang University. Science. B = J. Zhejiang Univ. Sci. B Journal of Zhejiang University. Science. B. = J Zhejiang Univ Sci B Journal of Zhejiang University. Science = J Zhejiang Univ Sci Journal of Zhengzhou University = J. Zhengzhou Univ. Nat. Sci. Ed. Journal of Zoo and Wildlife Medicine = J Zoo Wildlife Med Journal of Zoo and Wildlife Medicine = J. Zoo Wildlife Med. Journal of Zoo and Wildlife Medicine=J Zoo Wildl Med;; Journal of zoo and wildlife medicine : official publication of the American Association of Zoo Veterinarians = J Zoo Wildl Med Journal of Zoo Animal Medicine = J Zoo Anim Med Journal of Zoo Animal Medicine = J. Zoo Anim. Med. Journal of Zoo Animal Medicine = J Zoo Wildlife Med Journal of Zoo Animal Medicine = J. Zoo Wildlife. Med. Journal of Zoological Systematics and Evolutionary Research = J Zool Syst Evol Res Journal of Zoological Systematics and Evolutionary Research = J. Zool. Syst. Evol. Res. Journal of zoological systematics and evolutionary research = Zeitschrift fur zoologische Systematik und Evolutionsforschung|J. Zoolog. Syst. Evol. Res. Journal of zoology = J Zool Journal of Zoology = J Zool Journal of Zoology = J. Zool. Journal of Zoology (London) = J. Zool. (London) Journal - Oklahoma Dental Association = J Okla Dent Assoc Journal, Oklahoma Dental Association = J. Okla. Dent. Assoc. Journal - Oklahoma State Dental Association = J Okla State Dent Assoc Journal, Oklahoma State Dental Association = J. Okla. State Dent. Assoc. Journal - Oklahoma State Medical Association=J Okla State Med Assoc;; Journal, Oklahoma State Medical Association = J. Okla. State Med. Assoc. Journal On Data Semantics Iii = Lect Notes Comput Sc Journal On Data Semantics Iii = Lect. Notes. Comput. Sc. Journal On Data Semantics Ii = Lect Notes Comput Sc Journal On Data Semantics Ii = Lect. Notes. Comput. Sc. Journal On Data Semantics I = Lect Notes Comput Sc Journal On Data Semantics I = Lect. Notes. Comput. Sc. Journal On Data Semantics Iv = Lect Notes Comput Sc Journal On Data Semantics Iv = Lect. Notes. Comput. Sc. Journal On Data Semantics Ix = Lect Notes Comput Sc Journal On Data Semantics Ix = Lect. Notes. Comput. Sc. Journal On Data Semantics Vii = Lect Notes Comput Sc Journal On Data Semantics Vii = Lect. Notes. Comput. Sc. Journal On Data Semantics Vi = Lect Notes Comput Sc Journal On Data Semantics Vi = Lect. Notes. Comput. Sc. Journal On Data Semantics V = Lect Notes Comput Sc Journal On Data Semantics V = Lect. Notes. Comput. Sc. Journal on Numerical Methods and Computer Applications = J. Numer. Methods Comput. Appl. Journal Prestressed Concrete Institute = J Prestr Concrete I Journal Prestressed Concrete Institute = J. Prestr. Concrete I. Journal. Royal Microscopical Society (Great Britain) = J R Microsc Soc Journal. Royal Sanitary Institute (Great Britain) = J R Sanit Inst Journal. San Antonio District Dental Society = J San Antonio Dent Soc Journals and History of Science = Biblio Nuncius Journals and History of Science = Biblio. Nuncius. Journal - Scottish Labour History Society. Scottish Labour History Society = J Scott Labour Hist Soc Journal - Seattle-King County Dental Society = J Seattle King Cty Dent Soc Journal, Seattle-King County Dental Society = J. Seattle. King Cty. Dent. Soc. Journals of Gerontology = J Gerontol Journals of Gerontology = J. Gerontol. Journals of Gerontology Series A-biological Sciences and Medical Sciences = J Gerontol A-biol Journals of Gerontology Series A-biological Sciences and Medical Sciences = J. Gerontol. A-biol. Journals of Gerontology. Series A, Biological Sciences and Medical Sciences = J. Gerontol. A. Biol. Sci. Med. Sci. Journals of Gerontology. Series A, Biological Sciences And Medical Sciences=J Gerontol A Biol Sci Med Sci;; Journals of Gerontology Series B-psychological Sciences and Social Sciences = J Gerontol B-psychol Journals of Gerontology Series B-psychological Sciences and Social Sciences = J. Gerontol. B-psychol. Journals of Gerontology. Series B, Psychological Sciences and Social Sciences = J. Gerontol. B. Psychol. Sci. Soc. Sci. Journals of Gerontology. Series B, Psychological Sciences And Social Sciences=J Gerontol B Psychol Sci Soc Sci;; Journal SOGC : journal of the Society of Obstetricians and Gynaecologists of Canada = J SOGC Journal - South Carolina Medical Association=J S C Med Assoc;; Journal, South Carolina Medical Association = J. S. C. Med. Assoc. Journal (Southern California Dental Assistants Association) = J South Calif Dent Assistants Assoc Journal, Southern California Dental Assistants Association = J. South. Calif. Dent. Assistants Assoc. Journal - Southern California Dental Association = J South Calif Dent Assoc Journal, Southern California Dental Association = J. South. Calif. Dent. Assoc. Journal, Southern California State Dental Association = J. South. Calif. State Dent. Assoc. Journal - Tennessee State Dental Association = J Tenn State Dent Assoc Journal, Tennessee State Dental Association = J. Tenn. State Dent. Assoc. Journal. Washington Academy of Sciences, Washington, D. C = J Wash Acad Sci Journal Water Pollution Control Federation = J Water Pollut Con F Journal Water Pollution Control Federation = J. Water Pollut. Con. F. Journal - Water Pollution Control Federation = J Water Pollut Control Fed Journal Water Pollution Control Federation = J. Water Pollut. Control Fed. Journal, Water Pollution Control Federation = J. Water Pollut. Control Fed. Journees annuelles de diabetologie de l'Hotel-Dieu = Journ Annu Diabetol Hotel Dieu Journees Annuelles de Diabetologie de l'Hotel-Dieu = Journ. Annu. Diabetol. Hotel Dieu Journees Annuelles de Diabetologie De L Hotel-Dieu=Journ Annu Diabetol Hotel Dieu;; Jovan Ducic Under The Signs of Apollo and Dionysis = Serb Ac Mon Jovan Ducic Under The Signs of Apollo and Dionysis = Serb. Ac. Mon. Jpc-journal of Planar Chromatography-modern Tlc = Jpc-j Planar Chromat Jpc-journal of Planar Chromatography-modern Tlc = Jpc-j. Planar Chromat. JPC Journal of Planar Chromatography Modern TLC = JPC J. Planar Chromatogr. - Mod. TLC JPEN. Journal of parenteral and enteral nutrition = JPEN J Parenter Enteral Nutr JPEN: Journal of Parenteral and Enteral Nutrition = JPEN J. Parenter. Enteral Nutr. JPEN. Journal of Parenteral and Enteral Nutrition=JPEN J Parenter Enteral Nutr;; JPMA: Journal of the Pakistan Medical Association = JPMA J. Pak. Med. Assoc. JPMA. Journal of The Pakistan Medical Association=JPMA J Pak Med Assoc;; JPMA. The Journal of the Pakistan Medical Association = J Pak Med Assoc JPO: Journal of Practical Orthodontics = JPO J. Pract. Orthod. JPO: the journal of practical orthodontics = JPO J Pract Orthod JSAC grapevine. Joint Strategy and Action Committee (New York, N.Y.) = JSAC Grapevine Jsaem Studies in Applied Electromagnetics and Mechanics = Jsaem St Appl Electr Jsaem Studies in Applied Electromagnetics and Mechanics = Jsaem St. Appl. Electr. Jsaem Studies in Applied Electromagnetics = Jsaem Appl Electrom Jsaem Studies in Applied Electromagnetics = Jsaem Appl. Electrom. Jsae Review = Jsae Rev Jsae Review = Jsae Rev. JSLS: Journal of the Society of Laparoendoscopic Surgeons = JSLS Jsls-journal of The Society of Laparoendoscopic Surgeons = Jsls-j Soc Laparoend Jsls-journal of The Society of Laparoendoscopic Surgeons = Jsls-j. Soc. Laparoend. JSLS : Journal of the Society of Laparoendoscopic Surgeons / Society of Laparoendoscopic Surgeons = JSLS Jsme International Journal = Jsme Int J Jsme International Journal = Jsme Int. J. Jsme International Journal Series A-mechanics and Material Engineering = Jsme Int J A-mech M Jsme International Journal Series A-mechanics and Material Engineering = Jsme Int. J. A-mech. M. JSME International Journal Series A: Mechanics and Material Engineering = JSME Int J., Ser. A Jsme International Journal Series A-solid Mechanics and Material Engineering = Jsme Int J A-solid M Jsme International Journal Series A-solid Mechanics and Material Engineering = Jsme Int. J. A-solid M. Jsme International Journal Series B-fluids and Thermal Engineering = Jsme Int J B-fluid T Jsme International Journal Series B-fluids and Thermal Engineering = Jsme Int. J. B-fluid. T. JSME International Journal Series B: Fluids and Thermal Engineering = JSME Int J., Ser. B Jsme International Journal Series C-dynamics Control Robotics Design and Manufacturing = Jsme Int J C-dyn Con Jsme International Journal Series C-dynamics Control Robotics Design and Manufacturing = Jsme Int. J. C-dyn. Con. Jsme International Journal Series C-mechanical Systems Machine Elements and Manufacturing = Jsme Int J C-mech Sy Jsme International Journal Series C-mechanical Systems Machine Elements and Manufacturing = Jsme Int. J. C-mech. Sy. JSME International Journal Series C: Mechanical Systems Machine Elements and Manufacturing = JSME Int J., Ser. C Jsme International Journal Series Ii-fluids Engineering Heat Transfer Power Combustion Thermophysical Properties = Jsme Int J Ii-fluid Jsme International Journal Series Ii-fluids Engineering Heat Transfer Power Combustion Thermophysical Properties = Jsme Int. J. Ii-fluid. Jsme International Journal Series Iii-vibration Control Engineering Engineering for Industry = Jsme Int J Iii-vib C Jsme International Journal Series Iii-vibration Control Engineering Engineering for Industry = Jsme Int. J. Iii-vib. C. Jsme International Journal Series I-solid Mechanics Strength of Materials = Jsme Int J I-solid M Jsme International Journal Series I-solid Mechanics Strength of Materials = Jsme Int. J. I-solid M. Jspe Publication Series = Jspe Publ Ser Jspe Publication Series = Jspe Publ. Ser. Judaica Bohemiae = Jud Bohem Judaica Bohemiae = Jud. Bohem. Judaica librarianship = Jud Librariansh Judaism in Context = Jud Context Judaism in Context = Jud. Context Judaism = Judaism Judaism, Science, and Moral Responsibility = Orthodox Forum Ser Judaism, Science, and Moral Responsibility = Orthodox. Forum. Ser. Judging The Validity of Information Sources : Teaching Critical Analysis in Bibliographic Instruction = Lib Orient Judging The Validity of Information Sources : Teaching Critical Analysis in Bibliographic Instruction = Lib. Orient. Judgment and Decision Making Journal = Judgm Decis Mak Judgment and Decision Making Journal = Judgm. Decis. Mak. Judgment and Decision Making = Judgm Decis Mak Judgment and Decision Making = Judgm. Decis. Mak. Judicature = Judicature Judicial Reform in Latin America and The Caribbean = World Ban T Judicial Reform in Latin America and The Caribbean = World. Ban. T. Jugoslavenska ginekologija i opstetricija = Jugosl Ginekol Opstet Jugoslavenska Ginekologija i Opstetricija = Jugosl. Ginekol. Opstet. Jugoslavenska ginekologija i perinatologija = Jugosl Ginekol Perinatol Jugoslavenska Ginekologija i Perinatologija = Jugosl. Ginekol. Perinatol. Jugoslovenska Medicinska Biohemija-yugoslav Medical Biochemistry = Jugoslav Med Biohem Jugoslovenska Medicinska Biohemija-yugoslav Medical Biochemistry = Jugoslav. Med. Biohem. Jugoslovenski pregled; informativno dokumentarni prirucnik o Jugoslaviji = Jugosl Pregl Julkaisu. Suomen Naishammaslaakarit ryhma, Helsingfors = Julk Suom Naishammaslaak Ryhma Junctures-the Journal for Thematic Dialogue = Junctures Junctures-the Journal for Thematic Dialogue = Junctures. Jung Journal-culture & Psyche = Jung J-cult Psyche Jung Journal-culture & Psyche = Jung J-cult. Psyche Jun shi yi xue ke xue yuan yuan kan = Bulletin of the Academy of Military Medical Sciences|Chun Shih I Hsueh Ko Hsueh Yuan Yuan Kan Jun wu xi tong = Mycosystema / Zhongguo ke xue yuan Wei sheng wu yan jiu suo. Zhongguo jun wu xue hui zhu ban|Jun Wu Xi Tong Jurimetrics = Jurimetrics Juris doctor = Juris Dr Juristat = Juristat Jurist (Washington, D.C.) = Jurist Just Ecological Integrity = St Social Polit Leg Just Ecological Integrity = St. Social. Polit. Leg. Justice and Xenophobia = Ver Ludwig Boltzmann Justice and Xenophobia = Ver. Ludwig. Boltzmann. Justice, Morality, and Social Responsibility = Res Soc Iss Man Ser Justice, Morality, and Social Responsibility = Res. Soc. Iss. Man. Ser. Justice Quarterly = Justice Q Justice Quarterly = Justice Q. Justice System Journal = Justice Syst J Justice System Journal = Justice Syst. J. Just-in-time and Quick Response Systems in Textile and Garment Manufacturing = Vdi Bericht Just-in-time and Quick Response Systems in Textile and Garment Manufacturing = Vdi. Bericht. Just-in-time Manufacturing Systems : Operational Planning and Control Issues = Manuf Res Technol Just-in-time Manufacturing Systems : Operational Planning and Control Issues = Manuf. Res. Technol. Justus Liebigs Annalen der Chemie = Justus Liebigs Ann Chem Justus Liebigs Annalen der Chemie = Justus Liebigs Ann. Chem. Justus Liebigs Annalen Der Chemie = Liebigs Ann Chem Justus Liebigs Annalen Der Chemie = Liebigs Ann. Chem. Jutland Archaeological Society Publications = Jut Arch Soc Publ Jutland Archaeological Society Publications = Jut. Arch. Soc. Publ. Juvenile and Family Court Journal = Juvenile Fam Court J Juvenile and Family Court Journal = Juvenile Fam. Court J. Juvenile & Family Court Journal = Juvenile Fam Court J Juvenile & Family Court Journal = Juvenile Fam. Court J. Juvenile & family court journal = Juv Fam Court J Juvenile Headache = Int Congr Ser Juvenile Headache = Int. Congr. Ser. Juvenile Justice = Juvenile Justice Jyske samlinger = Jyske Saml K3 Projective Models in Scrolls = Lect Notes Math K3 Projective Models in Scrolls = Lect. Notes. Math. Kadmoniyot = Qadmoniot Kadmos. Zeitschrift für vor- und frühgriechische Epigraphik = Kadmos Kafkas Universitesi Veteriner Fakultesi Dergisi = Kafkas Univ Vet Fak Kafkas Universitesi Veteriner Fakultesi Dergisi = Kafkas Univ. Vet. Fak. Kafka, Zionism and Beyond = Condit Jud Kafka, Zionism and Beyond = Condit. Jud. Kagaku Kogaku = Kagaku Kogaku Kagaku Kogaku Ronbunshu = Kagaku Kogaku Ronbun Kagaku Kogaku Ronbunshu = Kagaku Kogaku Ronbun. Kagaku Kogaku Ronbunshu = Kagaku Kogaku Ronbunshu Kagaku (Kyoto) = Kagaku (Kyoto) Kagakushi kenkyu. [Journal of the history of science, Japan = Kagakushi Kenkyu Kagaku to Seibutsu = Kagaku to Seibutsu Kaibogaku zasshi. Journal of anatomy = Kaibogaku Zasshi Kaibogaku Zasshi (Journal of Anatomy) = Kaibogaku Zasshi Kaibogaku Zasshi. Journal of Anatomy=Kaibogaku Zasshi;; Kaiin dayori. [Membership news]. Nippon Kontakuto Renzu Gakkai = Kaiin Dayori Nippon Kontakuto Renzu Gakkai Kaikille Kansoille: Lahetystyo Kulttuurien Vuoropuheluna = Hist Arkisto Kaikille Kansoille: Lahetystyo Kulttuurien Vuoropuheluna = Hist. Arkisto. Kainate Receptors: Novel Signaling Insights = Adv Exp Med Biol Kainate Receptors: Novel Signaling Insights = Adv. Exp. Med. Biol. Kairos. Zeitschrift für Judaistik und Religionswissenschaft = Kairos Kaiser Julian Apostata Und Die Philosophische Reaktion Gegen Das Christentum = Millenn Stud Kult Ge Kaiser Julian Apostata Und Die Philosophische Reaktion Gegen Das Christentum = Millenn. Stud. Kult. Ge. Kaiser Wilhelm Institute for Anthropology, Human Heredity, and Eugenics, 1927-1945: Crossing Boundaries = Bost Stud Philos Sci Kaiser Wilhelm Institute for Anthropology, Human Heredity, and Eugenics, 1927-1945: Crossing Boundaries = Bost. Stud. Philos. Sci. Kajok kyehoek nonjip. Journal of family planning studies = Kajok Kyehoek Nonjip Kako Gijutsu (Osaka) = Kako Gijutsu (Osaka) Kaku Igaku (Japanese Journal of Nuclear Medicine) = Kaku Igaku Kaku Igaku [Japanese Journal of Nuclear Medicine]=Kaku Igaku;; Kaku igaku. The Japanese journal of nuclear medicine = Kaku Igaku Kalapodi. Ergebnisse der Ausgrabungen im Heiligtum der Artemis und des Apollon von Hyampolis in der antiken Phokis = Kalapodi Kalathos. Revista del Seminario de arqueología y etnología Turolense, Universidad de Teruel = Kalathos Kaleckis Principle of Increasing Risk and Keynesian Economics = Routl Stud Hist Econ Kaleckis Principle of Increasing Risk and Keynesian Economics = Routl. Stud. Hist. Econ. Kalikasan-the Philippine Journal of Biology = Kalikasan Kalikasan-the Philippine Journal of Biology = Kalikasan. Kallmann Syndrome and Hypogonadotropic Hypogonadism = Front Horm Res Kallmann Syndrome and Hypogonadotropic Hypogonadism = Front. Horm. Res. Kalós. Arte in Sicilia = Kalos Kalte Und Klimatechnik = Kalte Klimatechnik Kamper almanak = Kampener Alm Kanagawa Shigaku (Journal of the Kanagawa Odontological Society) = Kanagawa Shigaku Kanagawa shigaku. The Journal of the Kanagawa Odontological Society = Kanagawa Shigaku Kanagawa University = Rep. Fac. Engrg. Kanagawa Univ. Kanagawa University = Sci. Rep. Res. Inst. Engrg. Kanagawa Univ. Kanazawa Ika Daigaku zasshi = Journal of Kanazawa Medical University|Kanazawa Ika Daigaku Zasshi Kanazawa University = Ann. Sci. Kanazawa Univ. Kanban-controlled Manufacturing Systems = Lect Notes Econ Math Kanban-controlled Manufacturing Systems = Lect. Notes. Econ. Math. Kangaroo = Kangaroo Kangogaku Zasshi (Japanese Journal of Nursing) = Kangogaku Zasshi [Kangogaku zasshi] The Japanese journal of nursing = Kangogaku Zasshi Kango Gijutsu (Japanese Journal of Nursing Art) = Kango Gijutsu [Kango gijutsu] : [Nursing technique] = Kango Gijutsu [Kango] Japanese journal of nursing = Kango Kango = Kango Kango Kenkyu (Japanese Journal of Nursing Research) = Kango Kenkyu Kango kenkyu. The Japanese journal of nursing research = Kango Kenkyu [Kango kyoiku] Japanese journal of nurses' education = Kango Kyoiku Kango Kyoiku (Japanese Journal of Nurses' Education) = Kango Kyoiku Kango Kyoshitsu (Japanese Journal of the Nursing Class) = Kango Kyoshitsu Kango kyoshitsu. [Nursing classroom] = Kango Kyoshitsu Kango Tenbo (Japanese Journal of Nursing Science) = Kango Tenbo Kango tenbo. The Japanese journal of nursing science = Kango Tenbo Kanho Hakhoe Chi (Journal of Nurses' Academic Society) = Kanho Hakhoe Chi Kanho Hakhoe chi [The Journal of Nurses Academic Society] = Kanho Hakhoe Chi Kanhohak t'amgu = Kanhohak Tamgu Kansai Daigaku keizai ronshu = Kansai Daigaku Keizai Ronshu Kansai University = Tech. Rep. Kansai Univ. Kansallisten Elakestrategioiden Muotoutuminen Ja Euroopan Unionin Avoin Koordinaatiomenetelma = Stud Soc Secur Healt Kansallisten Elakestrategioiden Muotoutuminen Ja Euroopan Unionin Avoin Koordinaatiomenetelma = Stud. Soc. Secur. Healt. Kansantaloudellinen Aikakauskirja=Kansant. Aikak. Kansas Agricultural Experiment Station Bulletin = Kans Aes Bull Kansas Agricultural Experiment Station Bulletin = Kans. Aes. Bull. Kansas Agricultural Experiment Station Research Publication = Kans Aes Res Publ Kansas Agricultural Experiment Station Research Publication = Kans. Aes. Res. Publ. Kansas history = Kans Hist Kansas Medicine=Kans Med;; Kansas Medicine = Kans. Med. Kansas medicine : the journal of the Kansas Medical Society = Kans Med Kansas Nurse = Kans. Nurse Kansas statutes annotated : duly arranged, numbered, annotated, and indexed with histories, notes, and references as required by law / Compiled and edited by Franklin Corrick, revisor of statutes. Kansas = Kans Statut Annot Kans Kansenshogaku Zasshi (Journal of the Japanese Association for Infectious Diseases) = Kansenshogaku Zasshi Kansenshogaku Zasshi. Journal of The Japanese Association ForInfectious Diseases=Kansenshogaku Zasshi;; Kansenshogaku zasshi. The Journal of the Japanese Association for Infectious Diseases = Kansenshogaku Zasshi Kant and Contemporary Epistemology = U W Ont Phi Kant and Contemporary Epistemology = U. W. Ont. Phi. Kant and Critique: New Essays in Honor of W.h. Werkmeister = Synth Libr Kant and Critique: New Essays in Honor of W.h. Werkmeister = Synth. Libr. Kant and Kierkegaard On Religion = Claremon Stud Philos Kant and Kierkegaard On Religion = Claremon. Stud. Philos. Kant and Philosophy of Science Today = Roy I Ph S Kant and Philosophy of Science Today = Roy. I. Ph. S. Kant and Swedenborg: Approaches to A Controversial Relationship = Hell Beit Eur Auk Kant and Swedenborg: Approaches to A Controversial Relationship = Hell. Beit. Eur. Auk. Kan, Tan, Sui = Kan, Tan, Sui Kant = Routl Philos Kant = Routl. Philos. Kant's Critique of Pure Reason: The Foundation of Modern Philosophy = Stud Ger Idealism Kant's Critique of Pure Reason: The Foundation of Modern Philosophy = Stud. Ger. Idealism. Kants Idealism: New Interpretations of A Controversial Doctrine = New Synth Hist Lib Kants Idealism: New Interpretations of A Controversial Doctrine = New Synth. Hist. Lib. Kant's Theory of The Self = Rout St Eight Cn Phi Kant's Theory of The Self = Rout. St. Eight. Cn. Phi. Kant-studien = Kant-stud Kant-studien = Kant-stud. Kantstudien = Kantstudien Kant-Studien: Philosophische Zeitschrift = KantStud Kao gu ren lei xue kan = Kao Ku Jen Lei Hsueh Kan Kao-Hsiung I Hsueh Ko Hsueh Tsa Chih [Kaohsiung Journal Of Medical Sciences]=Kao Hsiung I Hsueh Ko Hsueh Tsa Chih;; Kaohsiung Journal of Medical Sciences = Kaohsiung J Med Sci Kaohsiung Journal of Medical Sciences = Kaohsiung J. Med. Sci. Kapitalgesellschaftsrecht, 3. Auflage = Degruyter Lehrb Kapitalgesellschaftsrecht, 3. Auflage = Degruyter. Lehrb. Kaposi Sarcoma Herpesvirus: New Perspectivess = Curr Top Microbiol Kaposi Sarcoma Herpesvirus: New Perspectivess = Curr. Top. Microbiol. Karachi University = Karachi Univ. J. Sci. Karaoke Fascism: Burma and The Politics of Fear = Ethnogr Polit Violen Karaoke Fascism: Burma and The Politics of Fear = Ethnogr. Polit. Violen. Kardiochirurgia I Torakochirurgia Polska = Kardiochir Torakochi Kardiochirurgia I Torakochirurgia Polska = Kardiochir. Torakochi. Kardiologia polska = Kardiol Pol Kardiologia Polska = Kardiol Pol Kardiologia Polska = Kardiol. Pol. Kardiologiia = Kardiologiia Kardiologiya = Kardiologiya Karlamagnus-saga I Und Ihre Altfranzosische Vorlage = Beih Z Roman Philol Karlamagnus-saga I Und Ihre Altfranzosische Vorlage = Beih. Z. Roman. Philol. Karl Leonhard Reinhold and The Enlightenment = Stud Ger Idealism Karl Leonhard Reinhold and The Enlightenment = Stud. Ger. Idealism. Karl Marxs Grundrisse: Foundations of The Critique of Political Economy 150 Years Later = Routl Front Polit Ec Karl Marxs Grundrisse: Foundations of The Critique of Political Economy 150 Years Later = Routl. Front. Polit. Ec. Karl Popper: Philosophy and Problems = Roy I Ph S Karl Popper: Philosophy and Problems = Roy. I. Ph. S. Karolinska Institute Nobel Conference Series = Kar Ins Ncs Karolinska Institute Nobel Conference Series = Kar. Ins. Ncs. Karstenia = Karstenia Karst Hydrogeology and Karst Environment Protection, Vols 1-2 = Iahs-aish P Karst Hydrogeology and Karst Environment Protection, Vols 1-2 = Iahs-aish. P. Karthago. Revue d'archéologie mediterranéenne = Karthago Karyogamic Theory of Cancer Cell Formation From The View of The Xxi Century = Cancer Etiol Diagn T Karyogamic Theory of Cancer Cell Formation From The View of The Xxi Century = Cancer Etiol. Diagn. T. Kasmera = Kasmera Kassenzahnarzt; Colloquium Med Dent = Kassenzahnarzt Colloq. Med. Dent. Kathmandu Summer School Lecture Notes = Kathman Sum Kathmandu Summer School Lecture Notes = Kathman. Sum. Kathmandu University Medical Journal = Kathmandu Univ. Med. J. Kathmandu University medical journal (KUMJ) = Kathmandu Univ Med J (KUMJ) Katilolehti = Katilolehti Katilolehti (Tidskrift for Barnmorskor) = Katilolehti Kat'ollik Taehak Uihakpu nonmunjip = Katollik Taehak Uihakpu Nonmunjip Katsadtamattomien Ajoneuvojen Tunnistaminen Liikennevalvonnassa = Vtt Res Notes Katsadtamattomien Ajoneuvojen Tunnistaminen Liikennevalvonnassa = Vtt. Res. Notes. Katsaus Ydinjatehuollon Tilanteeseen Suomessa Ja Muissa Maissa = Vtt Res Notes Katsaus Ydinjatehuollon Tilanteeseen Suomessa Ja Muissa Maissa = Vtt. Res. Notes. Katunob = Katunob Katyn and The Soviet Massacre of 1940: Truth Justice and Memory = Basees-rout Ser Russ Katyn and The Soviet Massacre of 1940: Truth Justice and Memory = Basees-rout. Ser. Russ. Kauchuk i Rezina = Kauch. Rezina Kauffman Foundation Series On Innovation and Entrepreneurship = Kauff Found Ser Kauffman Foundation Series On Innovation and Entrepreneurship = Kauff. Found. Ser. Kaufmann Von Berlin: Ein Historisches Schauspiel Aus Der Deutschen Inflation = Conditio Jud Kaufmann Von Berlin: Ein Historisches Schauspiel Aus Der Deutschen Inflation = Conditio. Jud. Kausalitat Und Argumentrealisierung = Linguist Arb Kausalitat Und Argumentrealisierung = Linguist. Arb. Kautschuk Gummi Kunststoffe = Kaut Gummi Kunstst Kautschuk Gummi Kunststoffe = Kaut. Gummi Kunstst. Kautschuk Gummi Kunststoffe = Kautsch. Gummi Kunstst. Kavaka = Kavaka Kawasaki Disease = Int Congr Ser Kawasaki Disease = Int. Congr. Ser. Kazakhstan: Ethnicity, Language and Power = Cent Asian Stud Ser Kazakhstan: Ethnicity, Language and Power = Cent. Asian. Stud. Ser. Kazaliste Vlasti: Ceremonijal I Drzavni Blagdani Dubrovacke Republike U 17 I 18 Stoljecu = Croat Acad Sci Arts Kazaliste Vlasti: Ceremonijal I Drzavni Blagdani Dubrovacke Republike U 17 I 18 Stoljecu = Croat. Acad. Sci. Arts. Kazanskii meditsinskii zhurnal = Kazan Med Zh Kazanskiy Gosudarstvennyy Universitet = Gravitatsiya i Teor. Otnositel\cprime nosti Kazanskiy Universitet = Issled. Prikl. Mat. Kazanskiy Universitet = Issled. Teor. Plastin i Obolochek Kazanskiy Universitet = Trudy Geom. Sem. Kazan. Univ. Kazı Sonuçları Toplantısı = KST Kazuo Ishiguro = Routledge Guides Lit Kazuo Ishiguro = Routledge. Guides. Lit. Keats-shelley Journal = Keats-shelley J Keats-shelley Journal = Keats-shelley J. Keats-shelley Memorial Association Bulletin = Keats-shelley Mem As Keats-shelley Memorial Association Bulletin = Keats-shelley Mem. As. Keats-shelley Memorial Association Bulletin = Keats-shelley Rev Keats-shelley Memorial Association Bulletin = Keats-shelley Rev. Keats-shelley Review = Keats-shelley Rev Keats-shelley Review = Keats-shelley Rev. Keck Center for International and Strategic Studies/monograph Series = Keck Ctr Int St Stud Keck Center for International and Strategic Studies/monograph Series = Keck Ctr. Int. St. Stud. Kedi Journal of Educational Policy = Kedi J Educ Policy Kedi Journal of Educational Policy = Kedi J. Educ. Policy Keele Cognition Seminars = Keele Cog S Keele Cognition Seminars = Keele Cog. S. Keeping People Out of Prison = Aic Conf P Keeping People Out of Prison = Aic. Conf. P. Keeping posted = Keep Posted Keeping The User in Mind: Instructional Design and The Modern Library = Chandos Inf Prof Ser Keeping The User in Mind: Instructional Design and The Modern Library = Chandos. Inf. Prof. Ser. Keio economic studies = Keio Econ Stud Keio Economic Studies=Keio Econ. Stud. Keio Economic Studies = Keio Econ Stud Keio Economic Studies = Keio Econ. Stud. Keio Journal of Medicine=Keio J Med;; Keio Journal of Medicine = Keio J. Med. Keio Science and Technology Reports = Keio Sci. Tech. Rep. Keio University = Hiyoshi Rev. Natur. Sci. Keio University International Symposia for Life Sciences and Medicine = Keio U Int Symp Life Keio University International Symposia for Life Sciences and Medicine = Keio U. Int. Symp. Life Keio University Symposia for Life Science and Medicine = Keio Univ Symp Life Keio University Symposia for Life Science and Medicine = Keio Univ. Symp. Life Keisei Geka (Japanese Journal of Plastic and Reconstructive Surgery) = Keisei Geka Keisei geka. Plastic & reconstructive surgery = Keisei Geka Kekkaku=Kekkaku;; Kekkaku : [Tuberculosis] = Kekkaku Kekkaku (Tuberculosis) = Kekkaku KEK Proceedings = KEK Proc. Kelan Kuntoutuksen Vuonna 2003 Paattaneet = Stud Soc Secur Healt Kelan Kuntoutuksen Vuonna 2003 Paattaneet = Stud. Soc. Secur. Healt. Kelvin and Ireland = J Phys Conf Ser Kelvin and Ireland = J. Phys. Conf. Ser. Kemalism in Turkish Politics: The Republican People's Party, Secularism and Nationalism = Routl Stud Mid E Pol Kemalism in Turkish Politics: The Republican People's Party, Secularism and Nationalism = Routl. Stud. Mid. E. Pol. Kemiai Kozlemenyek = Kem Kozl Kemiai Kozlemenyek = Kem. Kozl. Kemia - Kemi = Kem.-Kemi Kemija u Industriji = Kem. Ind. Kemikaalialtistumisen Vahentaminen Palokohteissa = Vtt Res Notes Kemikaalialtistumisen Vahentaminen Palokohteissa = Vtt. Res. Notes. Kemikaru Enjiniyaringu = Kemikaru Enjiniyaringu Kemi = Kemi Kêmi. Revue de philologie et d'archéologie égytiennes et coptes = Kemi Kemisk Tidskrift = Kem Tidskr Kemisk Tidskrift = Kem. Tidskr. Kenchreai. Eastern Port of Corinth. Results of Investigations by the University of Chicago and Indiana University for the American School of Classical Studies at Athens = Kenchreai Kendall's Library of Statistics = Kendall's Lib. Statist. Kennedy Institute of Ethics Journal = Kennedy Inst Ethic J Kennedy Institute of Ethics Journal = Kennedy Inst. Ethic. J. Kennedy Institute of Ethics journal = Kennedy Inst Ethics J Kennedy Institute of Ethics Journal = Kennedy Inst. Ethics J. Kennedy, Johnson and Nato = Contemp Secur Stud Kennedy, Johnson and Nato = Contemp. Secur. Stud. Kent Archaeological Review = KentAR Kentucky bench & bar = Ky Bench Bar Kentucky dental journal = Ky Dent J Kentucky Dental Journal = Ky. Dent. J. Kentucky Engineer = Ky Eng Kentucky Engineer = Ky. Eng. Kentucky Folklore Record = Ky Folklore Rec Kentucky Folklore Record = Ky. Folklore Rec. Kentucky folklore record = Ky Folkl Rec Kentucky hospitals magazine = Ky Hosp Mag Kentucky Hospitals Magazine = Ky. Hosp. Mag. Kentucky Law Journal = Ky Law J Kentucky Law Journal = Ky. Law J. Kentucky law journal (Lexington, Ky.) = KY Law J Kentucky medical journal = Ky Med J Kentucky nurse = Ky Nurse Kentucky Nurse = Ky. Nurse Kentucky Nurses Association Newsletter = Ky. Nurses Assoc. Newsl. Kentucky Romance Quarterly = Ky Romance Quart Kentucky Romance Quarterly = Ky. Romance Quart. Kenya nursing journal = Kenya Nurs J Kenya Nursing Journal = Kenya Nurs. J. Kenya statistical digest = Kenya Stat Dig Kenyon Review = Kenyon Rev Kenyon Review = Kenyon Rev. Keos. Results of Excavations Conducted by the University of Cincinnati under the Auspices of the American School of Classical Studies at Athens = Keos Kept 2009: Knowledge Engineering Principles and Techniques = Knowl Eng Prin Tech Kept 2009: Knowledge Engineering Principles and Techniques = Knowl. Eng. Prin. Tech. Kerameikos. Ergebnisse der Ausgrabungen = Kerameikos Keramische Zeitschrift = Keram. Z. Kernal-based Data Fusion for Machine Learning: Methods and Applications in Bioinformatics and Text Mining = Stud Comput Intell Kernal-based Data Fusion for Machine Learning: Methods and Applications in Bioinformatics and Text Mining = Stud. Comput. Intell. Kernel-based Data Fusion for Machine Learning: Methods and Applications in Bioinformatics and Text Mining = Stud Comput Intell Kernel-based Data Fusion for Machine Learning: Methods and Applications in Bioinformatics and Text Mining = Stud. Comput. Intell. Kernels for Structured Data = Ser Mach Percept Art Kernels for Structured Data = Ser. Mach. Percept. Art. Kernenergie = Kernenergie Kernicterus = Contemp Clin Neurosc Kernicterus = Contemp. Clin. Neurosc. Kernos. Revue internationale et pluridisciplinaire de religion grecque antique = Kernos Kerntechnik Isotopentechnik Und Chemie = Kerntech Isotopen Ch Kerntechnik Isotopentechnik Und Chemie = Kerntech. Isotopen. Ch. Kerntechnik = Kerntechnik Kew Bulletin = Kew Bull. Kexue Tongbao = Kexue Tongbao Kexue Tongbao = Kexue Tongbao (Chinese) [Ke xue tong bao] [Science bulletin] = Ko Hsueh Tung Pao Key Advances in The Clinical Management of Skin Cancer = Key Adv Symp Ser Key Advances in The Clinical Management of Skin Cancer = Key Adv. Symp. Ser. Key Advances in The Effective Management of Benign Prostatic Disease = Key Adv Symp Ser Key Advances in The Effective Management of Benign Prostatic Disease = Key Adv. Symp. Ser. Key Advances in The Effective Management of Breast Cancer = Key Adv Symp Ser Key Advances in The Effective Management of Breast Cancer = Key Adv. Symp. Ser. Key Advances in The Effective Management of Glaucoma = Key Adv Symp Ser Key Advances in The Effective Management of Glaucoma = Key Adv. Symp. Ser. Key Advances in The Effective Management of Myocardial Infarction = Key Adv Symp Ser Key Advances in The Effective Management of Myocardial Infarction = Key Adv. Symp. Ser. Key Advances in The Effective Management of Osteoporosis = Key Adv Symp Ser Key Advances in The Effective Management of Osteoporosis = Key Adv. Symp. Ser. Key Advances Symposia Series = Key Adv Symp Ser Key Advances Symposia Series = Key Adv. Symp. Ser. Key Concepts for Understanding Curriculum, Fourth Edition = Teach Libr Key Concepts for Understanding Curriculum, Fourth Edition = Teach. Libr. Key Engineering Materials = Key Eng Mat Key Engineering Materials = Key Eng. Mat. Key Engineering Materials = Key Eng Mater Key Engineering Materials = Key Eng. Mater. Key Guides to Effective Teaching in Higher Education = Key Guid Eff Teach H Key Guides to Effective Teaching in Higher Education = Key Guid. Eff. Teach. H. Key Ideas in Criminology = Key Ideas Criminol Key Ideas in Criminology = Key Ideas Criminol. Key Ideas in Geography = Key Ideas Geogr Key Ideas in Geography = Key Ideas Geogr. Key Ideas = Key Ideas Key Issues in Cultural Heritage = Key Issues Cult Heri Key Issues in Cultural Heritage = Key Issues Cult. Heri. Key Issues in Educational Development = Ox St Com E Key Issues in Educational Development = Ox. St. Com. E. Key Issues in Higher Education = Key Issues High Educ Key Issues in Higher Education = Key Issues High. Educ. Key Issues in Mental Health = Key Issues Ment Heal Key Issues in Mental Health = Key Issues Ment. Heal. Key Issues in Sociological Theory = Key Iss Soc Key Issues in Sociological Theory = Key Iss. Soc. Keynesian Multiplier = Routl Front Polit Ec Keynesian Multiplier = Routl. Front. Polit. Ec. Keynes On Monetary Policy, Finance and Uncertainty: Liquidity Preference Theory and The Global Financial Crisis = Routl Stud Hist Econ Keynes On Monetary Policy, Finance and Uncertainty: Liquidity Preference Theory and The Global Financial Crisis = Routl. Stud. Hist. Econ. Keynes's General Theory After Seventy Years = Int Econ Assoc Serie Keynes's General Theory After Seventy Years = Int. Econ. Assoc. Serie. Keynes's Theoretical Development: From The Tract to The General Theory = Routl Stud Hist Econ Keynes's Theoretical Development: From The Tract to The General Theory = Routl. Stud. Hist. Econ. Keynes's Vision: Why The Great Depression Did Not Return = Routl Stud Hist Econ Keynes's Vision: Why The Great Depression Did Not Return = Routl. Stud. Hist. Econ. Key Processes in The Growth and Cropping of Deciduous Fruit and Nut Trees = Acta Hortic Key Processes in The Growth and Cropping of Deciduous Fruit and Nut Trees = Acta. Hortic. Keys for Regeneration = Mg Devel B Keys for Regeneration = Mg. Devel. B. Key Sociologists = Key Sociol Key Sociologists = Key Sociol. Keystone folklore quarterly = Keystone Folkl Q Key Technologies for Data Management = Lect Notes Comput Sc Key Technologies for Data Management = Lect. Notes. Comput. Sc. Key Texts: Classic Studies in the History of Ideas = Key Texts Classic Stud. Hist. Ideas Key Topics in Brain Research = Key Top Brain Res Key Topics in Brain Research = Key Top. Brain Res. Kfki Preprint/report Series = Kfki Prep R Kfki Preprint/report Series = Kfki Prep. R. K F K Reports = K F K Reports Kgk-kautschuk Gummi Kunststoffe = Kgk-kaut Gummi Kunst Kgk-kautschuk Gummi Kunststoffe = Kgk-kaut. Gummi Kunst. KGK, Kautschuk Gummi Kunststoffe = KGK, Kautsch. Gummi Kunstst. Khams Pa Histories: Visions of People, Place and Authority = Brills Tibet Stu Lib Khams Pa Histories: Visions of People, Place and Authority = Brills. Tibet. Stu. Lib. Khar\cprime kovskiy Universitet = Vestnik Khar\cprime kov. Univ. Khecarividya of Adinatha: A Critical Edition and Annotated Translation of An Early Text of Hathayoga = Routledge Stud Tantr Khecarividya of Adinatha: A Critical Edition and Annotated Translation of An Early Text of Hathayoga = Routledge. Stud. Tantr. Khedive Ismails Army = Cass Mil Stud Khedive Ismails Army = Cass. Mil. Stud. Khelmintologiia = Khelmintologiia Khigiena i zdraveopazvane = Hig Zdraveopaz Khimicheskaya Fizika = Khim Fiz Khimicheskaya Fizika = Khim. Fiz. Khimicheskaya Promyshlennost = Khim Promst+ Khimicheskaya Promyshlennost = Khim. Promst+.+ Khimicheskaya Promyshlennost Segodnya = Khim. Prom-st. Segodnya Khimicheskaya Promyshlennost (St. Petersburg, Russian Federation) = Khim. Prom-st. (St. Petersburg, Russ. Fed.) Khimicheskie Volokna = Khim. Volokna Khimicheskoe i Neftyanoe Mashinostroenie = Khim. Neft. Mashinostr. Khimiia i meditsina = Khimiia Meditsina Khimiia prirodnykh soedinenii = Him Prir Soedin Khimiko-farmatsevticheskii Zhurnal = Khim Farm Zh+ Khimiko-farmatsevticheskii Zhurnal = Khim. Farm. Zh+.+ Khimiko-Farmatsevticheskii Zhurnal = Khim.-Farm. Zh. Khimiya Drevesiny = Khim. Drev. Khimiya Geterotsiklicheskikh Soedinenii = Khim Geterotsikl+ Khimiya Geterotsiklicheskikh Soedinenii = Khim. Geterotsikl+.+ Khimiya Geterotsiklicheskikh Soedinenii = Khim. Geterotsikl. Soedin. Khimiya i Tekhnologiya Topliv i Masel = Khim. Tekhnol. Topl. Masel Khimiya i Tekhnologiya Vody = Khim. Tekhnol. Vody Khimiya Prirodnykh Soedinenii = Khim Prirodnyk Soedi Khimiya Prirodnykh Soedinenii = Khim. Prirodnyk. Soedi. Khimiya Prirodnykh Soedinenii = Khim Prir Soedin+ Khimiya Prirodnykh Soedinenii = Khim. Prir. Soedin. Khimiya Prirodnykh Soedinenii = Khim. Prir. Soedin+.+ Khimiya Tverdogo Topliva (Moscow, Russian Federation) = Khim. Tverd. Topl. (Moscow, Russ. Fed.) Khimiya v Interesakh Ustoichivogo Razvitiya = Khim. Interesakh Ustoich. Razvit. Khimiya Vysokikh Energii = Khim. Vys. Energ. Khimizatsiya Sel'skogo Khozyaistva = Khim. Sel'sk. Khoz. Khirurgiia=Khirurgiia (Mosk);; Khirurgiia=Khirurgiia (Sofiia);; Khirurgiia = Khirurgiia (Sofiia) Khirurgiya = Khirurgiya Ki2002: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki2002: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki 2003: Advances in Artificial Intelligence = Lect Notes Artif Int Ki 2003: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Ki 2004: Advances in Artificial Intelligence, Proceedings = Lect Notes Comput Sc Ki 2004: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Ki2005: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki2005: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki 2006: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki 2006: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki 2007: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki 2007: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki 2008: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki 2008: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki 2009: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Ki 2009: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Ki-98: Advances in Artificial Intelligence = Lect Notes Artif Int Ki-98: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Ki-99: Advances in Artificial Intelligence = Lect Notes Artif Int Ki-99: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Kidney and Blood Pressure Regulation = Contrib Nephrol Kidney and Blood Pressure Regulation = Contrib. Nephrol. Kidney and Blood Pressure Research=Kidney Blood Press Res;; Kidney and Blood Pressure Research = Kidney Blood Press. Res. Kidney and Pancreas Transplantation: A Pracitical Guide = Curr Clin Urol Kidney and Pancreas Transplantation: A Pracitical Guide = Curr. Clin. Urol. Kidney & Blood Pressure Research = Kidney Blood Press R Kidney & Blood Pressure Research = Kidney Blood Press. R. Kidney & blood pressure research = Kidney Blood Press Res Kidney in Plasma Cell Dyscrasias = Contrib Nephrol Kidney in Plasma Cell Dyscrasias = Contrib. Nephrol. Kidney international = Kidney Int Kidney International=Kidney Int;; Kidney International = Kidney Int Kidney International = Kidney Int. Kidney international. Supplement = Kidney Int Suppl Kidney International. Supplement=Kidney Int Suppl;; Kidney International. Supplement = Kidney Int. Suppl. Kidney, Proteins and Drugs : An Update = Contrib Nephrol Kidney, Proteins and Drugs : An Update = Contrib. Nephrol. Kidney, Proteins and Drugs = Contrib Nephrol Kidney, Proteins and Drugs = Contrib. Nephrol. Kidney Transplantation : Strategies to Prevent Organ Rejection = Contrib Nephrol Kidney Transplantation : Strategies to Prevent Organ Rejection = Contrib. Nephrol. Kieler Beitrage zur Geschichte der Medizin und Pharmazie = Kieler Beitr Gesch Med Pharm Kieler geographische Schriften = Kiel Geogr Schr Kieler Milchwirtschaftliche Forschungsberichte = Kieler Milchw Forsch Kieler Milchwirtschaftliche Forschungsberichte = Kieler Milchw. Forsch. Kieler Studien = Kieler Stud Kieler Studien = Kieler Stud. Kieler Studien = Kiel Stud Kieler Studien = Kiel. Stud. Kierkegaardian Author = Kierke Stud Monogr S Kierkegaardian Author = Kierke. Stud. Monogr. S. Kierkegaard Revisited = Kierkeg St Monog Ser Kierkegaard Revisited = Kierkeg. St. Monog. Ser. Kierkegaards Deiktische Theologie = Kierke Stud Monogr S Kierkegaards Deiktische Theologie = Kierke. Stud. Monogr. S. Kierkegaards Furcht Und Zittern: Als Bild Seines Ethischen Erkenntnisbegriffs = Kierke Stud Monogr S Kierkegaards Furcht Und Zittern: Als Bild Seines Ethischen Erkenntnisbegriffs = Kierke. Stud. Monogr. S. Kierkegaard Studies: Monograph Series = Kierkeg St Monog Ser Kierkegaard Studies: Monograph Series = Kierkeg. St. Monog. Ser. Kierkegaard Studies Monograph Series = Kierke Stud Monogr S Kierkegaard Studies Monograph Series = Kierke. Stud. Monogr. S. Kierkegaard Und Schleiermacher = Kierke Stud Monogr S Kierkegaard Und Schleiermacher = Kierke. Stud. Monogr. S. Kievskiy Gosudarstvennyy Universitet = Issled. Operatsiy i ASU Kievskiy Politekhnicheskiy Institut = Adapt. Sistemy Avtomat. Upravleniya Kievskiy Universitet = Vestnik Kiev. Univ. Model. Optim. Slozhn. Sist. Killing in A Gray Area Between Humanitarian Law and Human Rights = Schr Juris Fak Eur Killing in A Gray Area Between Humanitarian Law and Human Rights = Schr. Juris. Fak. Eur. Killing Women: The Visual Culture of Gender and Violence = Cult Stud Ser Killing Women: The Visual Culture of Gender and Violence = Cult. Stud. Ser. Kinderarztliche Praxis = Kinderarztl Prax Kinderarztliche Praxis = Kinderarztl. Prax. Kindergartens: Programs, Functions and Outcomes = Educ Compet Glob Wor Kindergartens: Programs, Functions and Outcomes = Educ. Compet. Glob. Wor. Kinderkrankenschwester = Kinderkrankenschwester Kinderkrankenschwester : Organ der Sektion Kinderkrankenpflege / Deutsche Gesellschaft fur Sozialpadiatrie und Deutsche Gesellschaft fur Kinderheilkunde = Kinderkrankenschwester Kindheit Und Entwicklung = Kindh Entwickl Kindheit Und Entwicklung = Kindh. Entwickl. Kindling 5 = Adv Behav Biol Kindling 5 = Adv. Behav. Biol. Kindling 6 = Adv Behav Biol Kindling 6 = Adv. Behav. Biol. Kinematic Evolution and Structural Styles of Fold-and-thrust Belts = Geol Soc Spec Publ Kinematic Evolution and Structural Styles of Fold-and-thrust Belts = Geol. Soc. Spec. Publ. Kinematics and Dynamics of Lava Flows = Geol Soc Am Spec Pap Kinematics and Dynamics of Lava Flows = Geol. Soc. Am. Spec. Pap. Kinematics and Dynamics of Multibody Systems With Imperfect Joints: Models and Case Studies = Lect Notes Appl Comp Kinematics and Dynamics of Multibody Systems With Imperfect Joints: Models and Case Studies = Lect. Notes. Appl. Comp. Kinematics and Physics of Celestial Bodies = Kinematics Phys. Celestial Bodies Kinematics and Physics of Celestial Bodies = Kinemat Phys Celest+ Kinematics and Physics of Celestial Bodies = Kinemat. Phys. Celest+.+ Kinematic Systems in Geodesy, Surveying, and Remote Sensing = Iag Symp Kinematic Systems in Geodesy, Surveying, and Remote Sensing = Iag. Symp. Kinesiology = Kinesiology Kinetic and Related Models = Kinet Relat Mod Kinetic and Related Models = Kinet. Relat. Mod. Kinetics and Catalysis = Kinet Catal+ Kinetics and Catalysis = Kinet. Catal. Kinetics and Catalysis = Kinet. Catal+.+ Kinetics-driven Nanopatterning On Surfaces = Mater Res Soc Symp P Kinetics-driven Nanopatterning On Surfaces = Mater. Res. Soc. Symp. P. Kinetics of Ordering and Growth At Surfaces = Nato Adv Sci I B-phy Kinetics of Ordering and Growth At Surfaces = Nato. Adv. Sci. I. B-phy. Kinetics of Phase Transformations = Mater Res Soc Symp P Kinetics of Phase Transformations = Mater. Res. Soc. Symp. P. Kinetic Theory of A Dilute Ionized Plasma = Springer Ser Atom Op Kinetic Theory of A Dilute Ionized Plasma = Springer. Ser. Atom. Op. Kinetic Theory of Nonideal Plasmas = J Phys Conf Ser Kinetic Theory of Nonideal Plasmas = J. Phys. Conf. Ser. Kinetika i Kataliz = Kinet. Katal. Kinetoplastid biology and disease = Kinetoplastid Biol Dis King and The Whore: King Roderick and La Cava = New Middle Ages King and The Whore: King Roderick and La Cava = New. Middle. Ages. King Authur in The Medieval Low Countries = Mediaevalia Lovan King Authur in The Medieval Low Countries = Mediaevalia. Lovan. Kingdom of Priests: Ancestry and Merit in Ancient Judaism = Jew Cult Context Kingdom of Priests: Ancestry and Merit in Ancient Judaism = Jew. Cult. Context. Kingdom of Sicily, 1100-1250: A Literary History = Middle Ages Ser Kingdom of Sicily, 1100-1250: A Literary History = Middle. Ages. Ser. King Faisal Specialist Hospital Medical Journal = K F Spec Hosp Med J King Faisal Specialist Hospital Medical Journal = K. F. Spec. Hosp. Med. J. King Faisal Specialist Hospital Medical Journal = King Faisal Spec. Hosp. Med. J. King Herod: A Persecuted Persecutor = Stud Judaica King Herod: A Persecuted Persecutor = Stud. Judaica. King Lear: New Critical Essays = Shakespear Crit King Lear: New Critical Essays = Shakespear. Crit. King Manasseh and Child Sacrifice: Biblical Distortions of Historical Realities = Beih Z Alttest Wiss King Manasseh and Child Sacrifice: Biblical Distortions of Historical Realities = Beih. Z. Alttest. Wiss. Kingship, Rebellion and Political Culture: England and Germany, C.1215 - C.1250 = Mediev Cult Soc Kingship, Rebellion and Political Culture: England and Germany, C.1215 - C.1250 = Mediev. Cult. Soc. King's Lynn and The Fens: Medieval Art, Architecture and Archaeology = Brit Archaeol Assoc King's Lynn and The Fens: Medieval Art, Architecture and Archaeology = Brit. Archaeol. Assoc. Kinki University = J. Fac. Sci. Tech. Kinki Univ. Kinki University Series On Quantum Computing = Kinki U Ser Quantum Kinki University Series On Quantum Computing = Kinki U. Ser. Quantum Kino Zairyo = Kino Zairyo Kinsey Institute Series = Kinsey Inst Kinsey Institute Series = Kinsey Inst. Kinship and Demographic Behavior in The Past = Intl Studies Populat Kinship and Demographic Behavior in The Past = Intl. Studies. Populat. KIPH bulletin = KIPH Bull Kirk-Othmer Encyclopedia of Chemical Technology = Kirk-Othmer Encycl. Chem. Technol. Kiryat sefer = Kiryat Sefer Kisaengchunghak Chapchi (Korean Journal of Parasitology) = Kisaengchunghak Chapchi Kisaengch'unghak chapchi. The Korean journal of parasitology = Kisaengchunghak Chapchi Kiseichugaku zasshi. Japanese journal of parasitology = Kisechugaku Zasshi Kiserletes orvostudomany = Kiserl Orvostud Kiso shinrigaku kenkyu = Jpn J Psychon Sci Kissing Christians: Ritual and Community in The Late Ancient Church = Divin Reread Late An Kissing Christians: Ritual and Community in The Late Ancient Church = Divin. Reread. Late An. Kita Kanto igaku. Kitakanto medical journal = Kita Kanto Igaku Kitasato Archives of Experimental Medicine = Kitasato Arch. Exp. Med. Kiyo. [Reports]. Kyoto Daigaku. Kekkaku Kenkyusho = Kyoto Daigaku Kekkaku Kenkyusho Kiyo Kjemi = Kjemi Klassik Und Moderne-schriftenreihe Der Klassik Stiftung Weimar = Klass Mod-schriftenr Klassik Und Moderne-schriftenreihe Der Klassik Stiftung Weimar = Klass. Mod-schriftenr. Klearchos. Bollettino dell'Associazione Amici del Museo nazionale di Reggio Calabria = Klearchos Kleine Senckenbergreihe = Kleine Senckenb.r. Kleintierpraxis = Kleintierpraxis Kleio = Kleio Kleos. Estemporaneo di studi e testi sulla fortuna dell'antico = Kleos Klinicheskaia khirurgiia = Klin Khir Klinicheskaia laboratornaia diagnostika = Klin Lab Diagn Klinicheskaia Laboratornaia Diagnostika=Klin Lab Diagn;; Klinicheskaia Laboratornaia Diagnostika = Klin. Lab. Diagn. Klinicheskaia meditsina = Klin Med (Mosk) Klinicheskaia Meditsina=Klin Med (Mosk);; Klinicheskaia Meditsina = Klin. Med. (Mosk.) Klinicheskaya Meditsina = Klin Med Moscow+ Klinicheskaya Meditsina = Klin. Med. Moscow+.+ Klinichna Khirurhiia = Klin. Khir. Klinichna khirurhiia / Ministerstvo okhorony zdorov'ia Ukrainy, Naukove tovarystvo khirurhiv Ukrainy = Klin Khir Klinicka mikrobiologie a infekcni lekarstvi = Klin Mikrobiol Infekc Lek Klinika i lechenie zlokachestvennykh novoobrazovanii = Klin Lech Zlokach Novoobraz Klinika i Lechenie Zlokachestvennykh Novoobrazovanii = Klin. Lech. Zlokach. Novoobraz. Klinika oczna = Klin Oczna Klinika Oczna=Klin Oczna;; Klinika Oczna = Klin. Oczna Klinik Psikofarmakoloji Bulteni-bulletin of Clinical Psychopharmacology = Klin Psikofarmakol B Klinik Psikofarmakoloji Bulteni-bulletin of Clinical Psychopharmacology = Klin. Psikofarmakol. B. Klinische Anasthesiologie und Intensivtherapie = Klin Anasthesiol Intensivther Klinische Anasthesiologie und Intensivtherapie = Klin. Anasthesiol. Intensivther. Klinische Anasthesiologie Und Intensivtherapie=Klin Anasthesiol Intensivther;; Klinische Medizin; osterreichische Zeitschrift fur wissenschaftliche und praktische Medizin = Klin Med Osterr Z Wiss Prakt Med Klinische Medizin; Osterreichische Zeitschrift fur Wissenschaftliche und Praktische Medizin = Klin. Med. Osterr. Z. Wiss. Prakt. Med. Klinische Monatsblatter Fur Augenheilkunde = Klin Monatsbl Augenh Klinische Monatsblatter Fur Augenheilkunde = Klin. Monatsbl. Augenh. Klinische Monatsblatter fur Augenheilkunde = Klin Monatsbl Augenheilkd Klinische Monatsblatter fur Augenheilkunde = Klin. Monatsbl. Augenheilkd. Klinische Monatsblatter Fur Augenheilkunde=Klin Monatsbl Augenheilkd;; Klinische Monatsblatter fur Augenheilkunde und fur augenarztliche Fortbildung = Klin Monatsblatter Augenheilkd Augenarztl Fortbild Klinische Neurophysiologie = Klin Neurophysiol Klinische Neurophysiologie = Klin. Neurophysiol. Klinische Neuroradiologie = Klin Neuroradiol Klinische Neuroradiologie = Klin. Neuroradiol. Klinische Padiatrie=Klin Padiatr;; Klinische Padiatrie = Klin Padiatr Klinische Padiatrie = Klin. Padiatr. Klinische Wochenschrift = Klin Wochenschr Klinische Wochenschrift = Klin. Wochenschr. Klinisk sygepleje = Klin Sygepleje Klinisk Sygepleje = Klin. Sygepleje Klio. Beiträge zur alten Geschichte = Klio Klner Zeitschrift fr Soziologie und Sozialpsychologie = Koln. Z. Soziol. Sozialpsych. Kluwer International Handbooks of Education = Kluwer Int. Handb. Educ. Kluwer International Series in Engineering and Computer Science : Communications and Information Theory = Kluw Commun Kluwer International Series in Engineering and Computer Science : Communications and Information Theory = Kluw. Commun. Kluwer International Series in Engineering and Computer Science = Kluwer Int Ser Eng C Kluwer International Series in Engineering and Computer Science = Kluwer Int. Ser. Eng. C. Kluwer International Series in Engineering and Computer Science : Real-time System = Kluw Real T Kluwer International Series in Engineering and Computer Science : Real-time System = Kluw. Real. T. Kluwer International Series in Engineering and Computer Science : Robotics - Vision, Manipulation and Sensors = Kluw Robot Kluwer International Series in Engineering and Computer Science : Robotics - Vision, Manipulation and Sensors = Kluw. Robot. Kluwer International Series in Engineering and Computer Science : Vlsi, Computer Architecture and Digital Signal Processing = Kluw S Vlsi Kluwer International Series in Engineering and Computer Science : Vlsi, Computer Architecture and Digital Signal Processing = Kluw. S. Vlsi. Kluwer International Series On Advances in Database Systems = Kluw Int S Adv Data Kluwer International Series On Advances in Database Systems = Kluw. Int. S. Adv. Data. Kluwer International Series On Computer Supported Cooperative Work = Kis Co Sup Coop Work Kluwer International Series On Computer Supported Cooperative Work = Kis. Co. Sup. Coop. Work Kluwer International Series On Discrete Event Dynamic Systems = Kluw Int S Dis Ev Dy Kluwer International Series On Discrete Event Dynamic Systems = Kluw. Int. S. Dis. Ev. Dy. Kluwer Internatonal Series in Video Computing = Klu Int S Video Comp Kluwer Internatonal Series in Video Computing = Klu. Int. S. Video Comp. Kluwer Texts in the Mathematical Sciences = Kluwer Texts Math. Sci. Klystrons, Traveling Wave Tubes, Magnetrons, Crossed-field Amplifiers, and Gyrotrons = Artech Hse Microw Li Klystrons, Traveling Wave Tubes, Magnetrons, Crossed-field Amplifiers, and Gyrotrons = Artech. Hse. Microw. Li. Kmetijstvo V Mestni Obcini Ljubljana: Relikt Ali Razvojni Potencial = Geograff Kmetijstvo V Mestni Obcini Ljubljana: Relikt Ali Razvojni Potencial = Geograff. $K$-Monographs in Mathematics = $K$-Monogr. Math. Knee = Knee Knee Surgery, Sports Traumatology, Arthroscopy=Knee Surg Sports Traumatol Arthrosc;; Knee Surgery, Sports Traumatology, Arthroscopy = Knee Surg. Sports Traumatol. Arthrosc. Knee Surgery Sports Traumatology Arthroscopy = Knee Surg Sport Tr A Knee Surgery Sports Traumatology Arthroscopy = Knee Surg. Sport. Tr. A. Knee surgery, sports traumatology, arthroscopy : official journal of the ESSKA = Knee Surg Sports Traumatol Arthrosc Knjizevna Smotra = Kjnizev Smotra Knjizevna Smotra = Kjnizev. Smotra Knossos: Palace, City, State, Proceedings = Br Sch Athens Stud Knossos: Palace, City, State, Proceedings = Br. Sch. Athens. Stud. Knots and Links in Three-dimensional Flows = Lect Notes Math Knots and Links in Three-dimensional Flows = Lect. Notes. Math. Knots and Quantum Gravity = Oxf Lec S Math Appl Knots and Quantum Gravity = Oxf. Lec. S. Math. Appl. Knowing Art: Essays in Aesthetics and Epistemology = Philos Stud Ser Knowing Art: Essays in Aesthetics and Epistemology = Philos. Stud. Ser. Knowing Full Well = Soochow Univ Lect Knowing Full Well = Soochow. Univ. Lect. Knowledge Acquisition: Approaches, Algorithms and Applications = Lect Notes Artif Int Knowledge Acquisition: Approaches, Algorithms and Applications = Lect. Notes. Artif. Int. Knowledge Acquisition in Practice: A Step-by-step Guide = Decis Eng Knowledge Acquisition in Practice: A Step-by-step Guide = Decis. Eng. Knowledge Acquisition = Knowl Acquis Knowledge Acquisition = Knowl. Acquis. Knowledge Acquisition, Modeling and Management = Lect Notes Artif Int Knowledge Acquisition, Modeling and Management = Lect. Notes. Artif. Int. Knowledge Ahead Approach to Risk: Theory and Experimental Evidence = Lect Notes Econ Math Knowledge Ahead Approach to Risk: Theory and Experimental Evidence = Lect. Notes. Econ. Math. Knowledge and Critical Pedagogy: An Introduction = Explor Educ Purp Knowledge and Critical Pedagogy: An Introduction = Explor. Educ. Purp. Knowledge and Information-studies in Information Science = Knowl Info-stud Info Knowledge and Information-studies in Information Science = Knowl. Info-stud. Info. Knowledge and Information Systems = Knowl Inf Syst Knowledge and Information Systems = Knowl. Inf. Syst. Knowledge and Information Visualization: Searching for Synergies = Lect Notes Comput Sc Knowledge and Information Visualization: Searching for Synergies = Lect. Notes. Comput. Sc. Knowledge and Infromation Visualization: Searching for Synergies = Lect Notes Comput Sc Knowledge and Infromation Visualization: Searching for Synergies = Lect. Notes. Comput. Sc. Knowledge and Management of Aquatic Ecosystems = Knowl Manag Aquat Ec Knowledge and Management of Aquatic Ecosystems = Knowl. Manag. Aquat. Ec. Knowledge and Power in The Artic, Conference Proceedings = U Lap A C R Knowledge and Power in The Artic, Conference Proceedings = U. Lap. A. C. R. Knowledge and Questions = Grazer Philos Stud Knowledge and Questions = Grazer. Philos. Stud. Knowledge and Skill Chains in Engineering and Manufacturing = Int Fed Info Proc Knowledge and Skill Chains in Engineering and Manufacturing = Int. Fed. Info. Proc. Knowledge and Space = Knowl Space Knowledge and Space = Knowl. Space Knowledge and Technology Transfer for Plant Pathology = Plant Path 21st Knowledge and Technology Transfer for Plant Pathology = Plant Path. 21st. Knowledge and The Family Business: The Governance and Management of Family Firms in The New Knowledge Economy = Innov Tech Knowl Man Knowledge and The Family Business: The Governance and Management of Family Firms in The New Knowledge Economy = Innov. Tech. Knowl. Man. Knowledge Annotation: Making Implicit Knowledge Explicit = Intel Syst Ref Libr Knowledge Annotation: Making Implicit Knowledge Explicit = Intel. Syst. Ref. Libr. Knowledge-based and Intelligent Information and Engineering Systems, Pt Iii = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt Iii = Lect. Notes. Artif. Int. Knowledge-based and Intelligent Information and Engineering Systems, Pt Ii = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt Ii = Lect. Notes. Artif. Int. Knowledge-based and Intelligent Information and Engineering Systems, Pt Ii, Proceedings = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Knowledge-based and Intelligent Information and Engineering Systems, Pt I = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt I = Lect. Notes. Artif. Int. Knowledge-based and Intelligent Information and Engineering Systems, Pt I, Proceedings = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt I, Proceedings = Lect. Notes. Artif. Int. Knowledge-based and Intelligent Information and Engineering Systems, Pt Iv = Lect Notes Artif Int Knowledge-based and Intelligent Information and Engineering Systems, Pt Iv = Lect. Notes. Artif. Int. Knowledge-based Artificial Intelligence Systems in Aerospace and Industry = P Soc Photo-opt Ins Knowledge-based Artificial Intelligence Systems in Aerospace and Industry = P. Soc. Photo-opt. Ins. Knowledge Based Computer Systems = Lect Notes Artif Int Knowledge Based Computer Systems = Lect. Notes. Artif. Int. Knowledge-based Expert Systems in Chemistry: Not Counting On Computers = Rsc Theor Comput Che Knowledge-based Expert Systems in Chemistry: Not Counting On Computers = Rsc. Theor. Comput. Che. Knowledge Based Hybrid Systems = Ifip Trans B Knowledge Based Hybrid Systems = Ifip. Trans. B. Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt Iii, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt Iii, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt Ii, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt I, Proceedings = Lect Notes Comput Sc Knowledge-based Intelligent Information and Engineering Systems: Kes 2007 - Wirn 2007, Pt I, Proceedings = Lect. Notes. Comput. Sc. Knowledge-based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect. Notes. Artif. Int. Knowledge - Based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect Notes Artif Int Knowledge - Based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect Notes Comput Sc Knowledge-based Intelligent Information and Engineering Systems, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Knowledge-based Intelligent Information and Engineering Systems, Pt 2, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems, Pt 2, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information and Engineering Systems, Pt 2, Proceedings = Lect Notes Comput Sc Knowledge-based Intelligent Information and Engineering Systems, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Knowledge-based Intelligent Information and Engineering Systems, Pt 3, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems, Pt 3, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information and Engineering Systems, Pt 4, Proceedings = Lect Notes Artif Int Knowledge-based Intelligent Information and Engineering Systems, Pt 4, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Intelligent Information Engineering Systems & Allied Technologies, Pts 1 and 2 = Fr Art Int Knowledge-based Intelligent Information Engineering Systems & Allied Technologies, Pts 1 and 2 = Fr. Art. Int. Knowledge-based Intelligent Information Engineering Systems & Allied Technologies, Pts 1 and 2 = Front Artif Intel Ap Knowledge-based Intelligent Information Engineering Systems & Allied Technologies, Pts 1 and 2 = Front. Artif. Intel. Ap. Knowledge-based Intellignet Information and Engineering Systems, Pt 2, Proceedings = Lect Notes Artif Int Knowledge-based Intellignet Information and Engineering Systems, Pt 2, Proceedings = Lect. Notes. Artif. Int. Knowledge-based Management Support Systems = E Horwood B Knowledge-based Management Support Systems = E. Horwood. B. Knowledge-based Neurocomputing: A Fuzzy Logic Approach = Stud Fuzz Soft Comp Knowledge-based Neurocomputing: A Fuzzy Logic Approach = Stud. Fuzz. Soft. Comp. Knowledge Based Organization International Conference = Knowl Bas Organ Int Knowledge Based Organization International Conference = Knowl. Bas. Organ. Int. Knowledge-based Reactive Scheduling = Ifip Trans B Knowledge-based Reactive Scheduling = Ifip. Trans. B. Knowledge-based Software Engineering = Fr Art Int Knowledge-based Software Engineering = Fr. Art. Int. Knowledge-based Software Engineering = Front Artif Intel Ap Knowledge-based Software Engineering = Front. Artif. Intel. Ap. Knowledge-based Systems = Knowl-based Syst Knowledge-based Systems = Knowl-based. Syst. Knowledge Bases for Education Policies = Oecd Docum Knowledge Bases for Education Policies = Oecd. Docum. Knowledge Business: Horticulture Education and Knowledge Transfer = Acta Hortic Knowledge Business: Horticulture Education and Knowledge Transfer = Acta. Hortic. Knowledge Cartography: Software Tools and Mapping Techniques = Adv Inform Knowl Pro Knowledge Cartography: Software Tools and Mapping Techniques = Adv. Inform. Knowl. Pro. Knowledge Contributors = Synth Libr Knowledge Contributors = Synth. Libr. Knowledge-creation Diffusion Utilization = Knowledge Knowledge-creation Diffusion Utilization = Knowledge. Knowledge Discovery and Data Mining, Proceedings = Lect Notes Artif Int Knowledge Discovery and Data Mining, Proceedings = Lect. Notes. Artif. Int. Knowledge Discovery and Emergent Complexity in Bioinformatics = Lect N Bioinformat Knowledge Discovery and Emergent Complexity in Bioinformatics = Lect. N. Bioinformat. Knowledge Discovery Enhanced With Semantic and Social Information = Stud Comp Intell Knowledge Discovery Enhanced With Semantic and Social Information = Stud. Comp. Intell. Knowledge Discovery for Counterterrorism and Law Enforcement = Ch Crc Data Min Know Knowledge Discovery for Counterterrorism and Law Enforcement = Ch. Crc. Data. Min. Know. Knowledge Discovery From Legal Databases = Law Philos Libr Knowledge Discovery From Legal Databases = Law. Philos. Libr. Knowledge Discovery From Sensor Data = Ind Innov Ser Knowledge Discovery From Sensor Data = Ind. Innov. Ser. Knowledge Discovery From Sensor Data = Lect Notes Comput Sc Knowledge Discovery From Sensor Data = Lect. Notes. Comput. Sc. Knowledge Discovery From Xml Documents, Proceedings = Lect Notes Comput Sc Knowledge Discovery From Xml Documents, Proceedings = Lect. Notes. Comput. Sc. Knowledge Discovery in Databases: Pkdd 2003, Proceedings = Lect Notes Artif Int Knowledge Discovery in Databases: Pkdd 2003, Proceedings = Lect. Notes. Artif. Int. Knowledge Discovery in Databases: Pkdd 2004, Proceedings = Lect Notes Artif Int Knowledge Discovery in Databases: Pkdd 2004, Proceedings = Lect. Notes. Artif. Int. Knowledge Discovery in Databases: Pkdd 2005 = Lect Notes Artif Int Knowledge Discovery in Databases: Pkdd 2005 = Lect. Notes. Artif. Int. Knowledge Discovery in Databases: Pkdd 2006, Proceedings = Lect Notes Artif Int Knowledge Discovery in Databases: Pkdd 2006, Proceedings = Lect. Notes. Artif. Int. Knowledge Discovery in Databases: Pkdd 2007, Proceedings = Lect Notes Artif Int Knowledge Discovery in Databases: Pkdd 2007, Proceedings = Lect. Notes. Artif. Int. Knowledge Discovery in Inductive Databases = Lect Notes Comput Sc Knowledge Discovery in Inductive Databases = Lect. Notes. Comput. Sc. Knowledge Discovery in Life Science Literature, Proceedings = Lect Notes Comput Sc Knowledge Discovery in Life Science Literature, Proceedings = Lect. Notes. Comput. Sc. Knowledge Discovery in Spatial Data = Adv Spat Sci Knowledge Discovery in Spatial Data = Adv. Spat. Sci. Knowledge Discovery, Knowledge Engineering and Knowledge Management = Comm Com Inf Sc Knowledge Discovery, Knowledge Engineering and Knowledge Management = Comm. Com. Inf. Sc. Knowledge-driven Computing: Knowledge Engineering and Intelligent Computations = Stud Comput Intell Knowledge-driven Computing: Knowledge Engineering and Intelligent Computations = Stud. Comput. Intell. Knowledge-driven Corporation: Complex Creative Destruction = Lmx Leadersh Ser Knowledge-driven Corporation: Complex Creative Destruction = Lmx. Leadersh. Ser. Knowledge-driven Entrepreneurship: The Key to Social and Economic Transformation = Innov Tech Knowl Man Knowledge-driven Entrepreneurship: The Key to Social and Economic Transformation = Innov. Tech. Knowl. Man. Knowledge-driven Multimedia Information Extraction and Ontology Evolution: Bridging The Semantic Gap = Lect Notes Artif Int Knowledge-driven Multimedia Information Extraction and Ontology Evolution: Bridging The Semantic Gap = Lect. Notes. Artif. Int. Knowledge Economies: Innovation, Organization and Location = Routl Stud Glob Comp Knowledge Economies: Innovation, Organization and Location = Routl. Stud. Glob. Comp. Knowledge Engineering and Knowledge Management, Proceedings = Lect Notes Artif Int Knowledge Engineering and Knowledge Management, Proceedings = Lect. Notes. Artif. Int. Knowledge Engineering: Practice and Patterns, Proceedings = Lect Notes Artif Int Knowledge Engineering: Practice and Patterns, Proceedings = Lect. Notes. Artif. Int. Knowledge Engineering Principles and Techniques = Knowl Eng Prin Tech Knowledge Engineering Principles and Techniques = Knowl. Eng. Prin. Tech. Knowledge Engineering Review = Knowl Eng Rev Knowledge Engineering Review = Knowl. Eng. Rev. Knowledge Enterprise: Intelligent Strategies in Product Design, Manufacturing, and Management = Int Fed Info Proc Knowledge Enterprise: Intelligent Strategies in Product Design, Manufacturing, and Management = Int. Fed. Info. Proc. Knowledge Exploration in Life Science Informatics, Proceedings = Lect Notes Artif Int Knowledge Exploration in Life Science Informatics, Proceedings = Lect. Notes. Artif. Int. Knowledge Flows in European Industry = Routl Stud Bus Organ Knowledge Flows in European Industry = Routl. Stud. Bus. Organ. Knowledge for Inclusive Development = Int Ser Technol Poli Knowledge for Inclusive Development = Int. Ser. Technol. Poli. Knowledge for Inclusive Development = Int S Techn Pol Inn Knowledge for Inclusive Development = Int. S. Techn. Pol. Inn. Knowledge-free and Learning-based Methods in Intelligent Game Playing = Stud Comput Intell Knowledge-free and Learning-based Methods in Intelligent Game Playing = Stud. Comput. Intell. Knowledge Generation & Technical Change = Nat Res Man Knowledge Generation & Technical Change = Nat. Res. Man. Knowledge Generation & Technical Change = Nat Res Manag Policy Knowledge Generation & Technical Change = Nat. Res. Manag. Policy. Knowledge in Formation: A Computational Theory of Interpretation = Cogn Technol Knowledge in Formation: A Computational Theory of Interpretation = Cogn. Technol. Knowledge in The Development of Economies: Institutional Choices Under Globalisation = New Perspect Mod Cor Knowledge in The Development of Economies: Institutional Choices Under Globalisation = New. Perspect. Mod. Cor. Knowledge Management and Acquisition for Smart Systems and Services = Lect Notes Artif Int Knowledge Management and Acquisition for Smart Systems and Services = Lect. Notes. Artif. Int. Knowledge Management and Management Learning = Integr Ser Inform Sy Knowledge Management and Management Learning = Integr. Ser. Inform. Sy. Knowledge Management and Organizational Learning = Ann Inform Syst Knowledge Management and Organizational Learning = Ann. Inform. Syst. Knowledge Management: An Evolutionary Review = Adv Manag Inform Sys Knowledge Management: An Evolutionary Review = Adv. Manag. Inform. Sys. Knowledge Management: Competencies and Professionalism = Ser Innovat Knowl Ma Knowledge Management: Competencies and Professionalism = Ser. Innovat. Knowl. Ma. Knowledge Management for Educational Innovation = Int Fed Info Proc Knowledge Management for Educational Innovation = Int. Fed. Info. Proc. Knowledge Management for Health Care Procedures = Lect Notes Artif Int Knowledge Management for Health Care Procedures = Lect. Notes. Artif. Int. Knowledge Management for Health Care Procedures = Lect Notes Comput Sc Knowledge Management for Health Care Procedures = Lect. Notes. Comput. Sc. Knowledge Management in Action = Int Fed Info Proc Knowledge Management in Action = Int. Fed. Info. Proc. Knowledge Management in Electronic Government = Lect Notes Artif Int Knowledge Management in Electronic Government = Lect. Notes. Artif. Int. Knowledge Management in Electronic Government, Proceedings = Lect Notes Comput Sc Knowledge Management in Electronic Government, Proceedings = Lect. Notes. Comput. Sc. Knowledge Management: Innovation, Technology and Cultures = Ser Innovat Knowl Ma Knowledge Management: Innovation, Technology and Cultures = Ser. Innovat. Knowl. Ma. Knowledge Management Research & Practice = Knowl Man Res Pract Knowledge Management Research & Practice = Knowl. Man. Res. Pract. Knowledge Mining = Stud Fuzz Soft Comp Knowledge Mining = Stud. Fuzz. Soft. Comp. Knowledge Modeling & Expertise Transfer = Fr Art Int Knowledge Modeling & Expertise Transfer = Fr. Art. Int. Knowledge Organization and Quality Management = Adv Know Or Knowledge Organization and Quality Management = Adv. Know. Or. Knowledge Organization in Subject Areas = Knowl Org Subj Area Knowledge Organization in Subject Areas = Knowl. Org. Subj. Area. Knowledge Organization = Knowl Organ Knowledge Organization = Knowl. Organ. Knowledge Oriented Software Design = Ifip Trans A Knowledge Oriented Software Design = Ifip. Trans. A. Knowledge Processing and Decision Making in Agent-based Systems = Stud Comput Intell Knowledge Processing and Decision Making in Agent-based Systems = Stud. Comput. Intell. Knowledge Processing With Interval and Soft Computing = Adv Inform Knowl Pro Knowledge Processing With Interval and Soft Computing = Adv. Inform. Knowl. Pro. Knowledge Representation for Agents and Multi-agent Systems = Lect Notes Artif Int Knowledge Representation for Agents and Multi-agent Systems = Lect. Notes. Artif. Int. Knowledge Representation for Health-care: Data, Processes and Guidelines = Lect Notes Artif Int Knowledge Representation for Health-care: Data, Processes and Guidelines = Lect. Notes. Artif. Int. Knowledge Science, Engineering and Management = Lect Notes Artif Int Knowledge Science, Engineering and Management = Lect. Notes. Artif. Int. Knowledge Science, Engineering and Management = Lect Notes Comput Sc Knowledge Science, Engineering and Management = Lect. Notes. Comput. Sc. Knowledge Seeker - Ontology Modelling for Information Search and Management: A Compendium = Intel Syst Ref Libr Knowledge Seeker - Ontology Modelling for Information Search and Management: A Compendium = Intel. Syst. Ref. Libr. Knowledge Services Management: Organizing Around Internal Markets = Serv Sci Res Innov S Knowledge Services Management: Organizing Around Internal Markets = Serv. Sci. Res. Innov. S. Knowledge Sharing in The Integrated Enterprise: Interoperability Strategies for The Enterprise Architect = Int Fed Info Proc Knowledge Sharing in The Integrated Enterprise: Interoperability Strategies for The Enterprise Architect = Int. Fed. Info. Proc. Knowledge Society Vs. Knowledge Economy: Knowledge, Power, and Politics = Issues High Educ-pal Knowledge Society Vs. Knowledge Economy: Knowledge, Power, and Politics = Issues. High. Educ-pal. Knowledge, Technology Transfer, and Foresight = Nato Asi S 4 Sci Tec Knowledge, Technology Transfer, and Foresight = Nato. Asi. S. 4. Sci. Tec. Kobe Daigaku Igakubu kiyo. Medical journal of Kobe University = Kobe Daigaku Igakubu Kiyo Kobe Daigaku Igakubu Kiyo (Medical Journal of Kobe University) = Kobe Daigaku Igakubu Kiyo Kobe Earthquake: Geodynamical Aspects = Adv Earthq Engn Kobe Earthquake: Geodynamical Aspects = Adv. Earthq. Engn. Kobe Economic and Business Review=Kobe Econ. Bus. Rev. Kobe Ika Daigaku kiyo = Kobe Ika Daigaku Kiyo Kobe Ika Daigaku Kiyo = Kobe Ika Daigaku Kiyo Kobe Journal of Mathematics = Kobe J. Math. Kobe Journal of Medical Sciences=Kobe J Med Sci;; Kobe Journal of Medical Sciences = Kobe J. Med. Sci. Kobe University Economic Review=Kobe Univ. Econ. Rev. Kobunshi Kagaku = Kobunshi Kagaku Kobunshi Ronbunshu = Kobunshi Ronbunshu Kochi University = Mem. Fac. Sci. Kochi Univ. Ser. A Math. Kodai. Journal of Ancient History = Kodai Kodai Mathematical Journal = Kodai Math. J. Kodai Mathematical Journal = Kodai Math J Kodai Mathematical Journal = Kodai Math. J. Kodai School On Solar Physics = Aip Conf Proc Kodai School On Solar Physics = Aip. Conf. Proc. Kodikas Code-ars Semeiotica = Kodikas Code-ars Sem Kodikas Code-ars Semeiotica = Kodikas Code-ars Sem. Koedoe = Koedoe Kog Kagaku Zasshi = Kog Kagaku Zasshi Kogyo Kagaku Zasshi = Kogyo Kagaku Zasshi Kogyo Zairyo = Kogyo Zairyo Koharenzbegriffe in Der Ethik = Ideen Argumente Koharenzbegriffe in Der Ethik = Ideen. Argumente. Ko Hsueh Tung Pao = Kexue Tongbao [English Language Edition]|Kexue Tongbao Koi 2008: 12th International Conference On Operational Research, Proceedings = Int Conf Oper Res Koi 2008: 12th International Conference On Operational Research, Proceedings = Int. Conf. Oper. Res. Koinonia = Koinonia Koks i Khimiya = Koks Khim. Kokubyo Gakkai Zasshi (Journal of the Stomatological Society, Japan) = Kokubyo Gakkai Zasshi Kokubyo Gakkai zasshi. The Journal of the Stomatological Society, Japan = Kokubyo Gakkai Zasshi Kokubyo Gakkai Zasshi. The Journal of The Stomatological Society, Japan=Kokubyo Gakkai Zasshi;; Koku Eisei Gakkai zasshi = Koku Eisei Gakkai Zasshi Koku Eisei Gakkai Zasshi = Koku Eisei Gakkai Zasshi Kokumin-Keizai Zasshi=Kokumin-Keizai Zasshi Kokuritsu Iyakuhin Shokuhin Eisei Kenkyujo Hokoku (Bulletin of National Institute of Health Sciences) = Kokuritsu Iyakuhin Shokuhin Eisei Kenkyusho Hokoku Kokuritsu Iyakuhin Shokuhin Eisei Kenkyusho Hokoku (Bulletin of National Institute of Health Sciences) = Kokuritsu Iyakuhin Shokuhin Eisei Kenkyusho Hokoku Kokuritsu Kogai Kenkyusho Tokubetsu Kenkyu Hokoku = Kokuritsu Kogai Kenkyusho Kenkyu Hokoku [Kokyuki shinryo] Clinics of respiratory organs = Kokyuki Shinryo Kokyu to Junkan (Respiration and Circulation) = Kokyu To Junkan Kokyu to junkan. Respiration & circulation = Kokyu To Junkan Koldewey-Gesellschaft, Vereinigung für baugeschichtliche Forschung e. V. Bericht über die Tagung für Ausgrabungswissenschaft und Bauforschung = KGB Kolloidchemische Beihefte = Kolloidchem. Beih. Kolloidnyi Zhurnal = Colloid J Ussr+ Kolloidnyi Zhurnal = Colloid. J. Ussr+.+ Kolloidnyi Zhurnal = Kolloidn. Zh. Kolloidn Zhurnal = Kolloidn Zh. Kolloid-zeitschrift and Zeitschrift Fur Polymere = Kolloid Z Z Polym Kolloid-zeitschrift and Zeitschrift Fur Polymere = Kolloid. Z. Z. Polym. Kolloid-zeitschrift = Kolloid Z Kolloid-zeitschrift = Kolloid. Z. Kolloid Zeitschrift = Kolloid Z. Kolloid Zeitschrift & Zeitschrift fur Polymere = Kolloid Z. Z. Polym. Kolloquien zur Allgemeinen und Vergleichenden Archäologie = KollAVA Kölner Jahrbuch für Vor- und Frühgeschichte, hrsg. vom Römisch- Germanischen Museum und der Archäologischen Gesellschaft Köln = KJ Kölner Jahrbuch = KoelnJb Kolner medizinhistorische Beitrage = Koln Med Beitr Kölner Museums-Bulletin. Berichte und Forschungen aus den Museen der Stadt Köln = KoelnMusB Kolner Zeitschrift Fur Soziologie Und Sozialpsychologie = Kolner Z Soziol Soz Kolner Zeitschrift Fur Soziologie Und Sozialpsychologie = Kolner Z. Soziol. Soz. Kolner Zeitschrift fur Soziologie und Sozialpsychologie = Kolner Z Soz Sozialpsychol (Aufl) Kommunikation Im Spiegel Der Unternehmenskultur: Dialogisches Handeln Und Unternehmerische Zwecke = Beitr Dialogforsch Kommunikation Im Spiegel Der Unternehmenskultur: Dialogisches Handeln Und Unternehmerische Zwecke = Beitr. Dialogforsch. Kommunist = Kommunist Komparatistische Hefte = Komparatist Hefte Komparatistische Hefte = Komparatist. Hefte Kompetenz-Zentrum Holz = Kompet.-Zent. Holz Kompleksnoe Ispol'zovanie Mineral'nogo Syr'ya = Kompleksn. Ispol'z. Miner. Syr'ya Komunikaty mazursko-warminskie = Komun Mazur Warm Kona Powder and Particle Journal = Kona Powder Part J Kona Powder and Particle Journal = Kona Powder Part. J. Kona-powder and Particle = Kona Kona-powder and Particle = Kona. Kondo Effect and Dephasing in Low-dimensional Metallic Systems = Nato Sci Ser Ii-math Kondo Effect and Dephasing in Low-dimensional Metallic Systems = Nato. Sci. Ser. Ii-math. Kondo Effect and Dephasing in Low-dimensional Metallic Systems = Nato Sci Ser Ii Math Kondo Effect and Dephasing in Low-dimensional Metallic Systems = Nato. Sci. Ser. Ii. Math. Konfliktverlaufe: Normen Der Geschlechterbeziehungen in Texten Des 17th Jahrhunderts = Quell Forsch Lit Kul Konfliktverlaufe: Normen Der Geschlechterbeziehungen in Texten Des 17th Jahrhunderts = Quell. Forsch. Lit. Kul. Kongelige Danske Videnskabernes Selskab: Matematisk-fysiske Meddelelser = Kong Dansk Vidensk Kongelige Danske Videnskabernes Selskab: Matematisk-fysiske Meddelelser = Kong. Dansk. Vidensk. Kongressband / Deutsche Gesellschaft fur Chirurgie. Deutsche Gesellschaft fur Chirurgie. Kongress = Kongressbd Dtsch Ges Chir Kongr Kongressband, Deutsche Gesellschaft fur Chirurgie = Kongressbd. Dtsch. Ges. Chir. Kongr. Kŏn'guk Taehakkyo, Haksul Yŏn'guwon = Hak-sul Chi Koninklijke Nederlandse Akademie van Wetenschappen = Indag. Math. (N.S.) Koninklijke Nederlandse Akademie van Wetenschappen = K. Ned. Akad. Wet. Verh. Afd. Lett. (N. S.) Koninklijke Nederlandse Akademie van Wetenschappen = Konink. Nederl. Akad. Wetensch. Verh. Afd. Natuurk. Eerste Reeks Koninklijke Nederlandse Akademie van Wetenschappen = Proc. Konink. Nederl. Akad. Wetensch. Koninklijke Nederlandse Akademie Van Wetenschappen, Verhandelingen = Knaw Verhan Koninklijke Nederlandse Akademie Van Wetenschappen, Verhandelingen = Knaw. Verhan. Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series A-mathematical Sciences = K Ned Akad Van Wet A Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series A-mathematical Sciences = K. Ned. Akad. Van Wet. A. Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series B-physical Sciences = K Ned Akad Van Wet-b Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series B-physical Sciences = K. Ned. Akad. Van Wet-b. Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series C-biological and Medical Sciences = K Ned Akad Van Wet-p Koninklijke Nederlandse Akademie Van Weteschappen-proceedings Series C-biological and Medical Sciences = K. Ned. Akad. Van Wet-p. Konjunkturpolitik=Konjunkturpolitik Konjunkturpolitik = Konjunkturpolitik Konkretisierungskompetenz Und Konkretisierungsmethoden Im Europaischen Privatrecht = Pap Eur Int Retail B Konkretisierungskompetenz Und Konkretisierungsmethoden Im Europaischen Privatrecht = Pap. Eur. Int. Retail. B. Konkretisierung Von Generalklauseln Im Europaischen Privatrecht = Schr Eur Int Priv B Konkretisierung Von Generalklauseln Im Europaischen Privatrecht = Schr. Eur. Int. Priv. B. Konsthistorisk Tidskrift = Konsthist Tidskr Konsthistorisk Tidskrift = Konsthist. Tidskr. Konstruieren Mit Faser-kunststoff-verbunden = Vdi-buch Konstruieren Mit Faser-kunststoff-verbunden = Vdi-buch. Konstruktionen Der Fremde = Spectr Literaturwiss Konstruktionen Der Fremde = Spectr. Literaturwiss. Konzepte Des Hochdeutschen = Stud Linguist Ger Konzepte Des Hochdeutschen = Stud. Linguist. Ger. Koordinatsionnaya Khimiya = Koordinats Khim+ Koordinatsionnaya Khimiya = Koordinats. Khim+.+ Koordinatsionnaya Khimiya (Russian Journal of Coordination Chemistry) = Koord. Khim. Koptische Apokryphen Aus Nubien: Der Kasr El-wizz Kodex = Texte Unters Gesch A Koptische Apokryphen Aus Nubien: Der Kasr El-wizz Kodex = Texte. Unters. Gesch. A. Koptische Zeugen Der Auferstehungsberichte = Arb Neutest Textfors Koptische Zeugen Der Auferstehungsberichte = Arb. Neutest. Textfors. KORA Bericht = KORA Ber. Korea-australia Rheology Journal = Korea-aust Rheol J Korea-australia Rheology Journal = Korea-aust. Rheol. J. Korea Confronts Globalization = Routl Adv Korean Stu Korea Confronts Globalization = Routl. Adv. Korean. Stu. Korea in The New Asia = Rout Adv Korea Studi Korea in The New Asia = Rout. Adv. Korea Studi. Korea journal = Korea J Korea Journal = Korea J Korea Journal = Korea J. Korea journal of population and development = Korea J Popul Dev Korean and Korean-American studies bulletin = Korean Korean Am Stud Bull Korean Developmental State: From Dirigisme to Neo-liberalism = Routledge Stud Growt Korean Developmental State: From Dirigisme to Neo-liberalism = Routledge. Stud. Growt. Korean Journal for Food Science of Animal Resources = Korean J Food Sci An Korean Journal for Food Science of Animal Resources = Korean J. Food Sci. An. Korean Journal of Applied Statistics = Korean J. Appl. Statist. Korean Journal of Biochemistry = Korean J Biochem Korean Journal of Biochemistry = Korean J. Biochem. Korean journal of biological sciences = Korean J Biol Sci Korean Journal of Chemical Engineering = Korean J Chem Eng Korean Journal of Chemical Engineering = Korean J. Chem. Eng. Korean Journal of Defense Analysis = Korean J Def Anal Korean Journal of Defense Analysis = Korean J. Def. Anal. Korean Journal of Gastroenterology = Korean J. Gastroenterol. Korean Journal of Genetics = Korean J Genetic Korean Journal of Genetics = Korean J. Genetic. Korean Journal of Hepatology = Korean J. Hepatol. Korean Journal of Horticultural Science & Technology = Korean J Hortic Sci Korean Journal of Horticultural Science & Technology = Korean J. Hortic. Sci. Korean Journal of Internal Medicine = Korean J. Intern. Med. Korean Journal of Laboratory Medicine = Korean J Lab Med Korean Journal of Laboratory Medicine = Korean J. Lab. Med. Korean Journal of Laboratory Medicine = Kor J Lab Med Korean Journal of Laboratory Medicine = Kor. J. Lab. Med. Korean Journal of Medical History = Kor J Med Hist Korean Journal of Medical History = Kor. J. Med. Hist. Korean Journal of Metals and Materials = Korean J Met Mater Korean Journal of Metals and Materials = Korean J. Met. Mater. Korean journal of ophthalmology : KJO = Korean J Ophthalmol Korean Journal of Ophthalmology=Korean J Ophthalmol;; Korean Journal of Ophthalmology = Korean J. Ophthalmol. Korean Journal of Orthodontics = Korean J Orthod Korean Journal of Orthodontics = Korean J. Orthod. Korean Journal of Parasitology=Korean J Parasitol;; Korean Journal of Parasitology = Korean J Parasitol Korean Journal of Parasitology = Korean J. Parasitol. Korean Journal of Pathology = Korean J Pathol Korean Journal of Pathology = Korean J. Pathol. Korean Journal of Physiology & Pharmacology = Korean J Physiol Pha Korean Journal of Physiology & Pharmacology = Korean J. Physiol. Pha. Korean Journal of Radiology = Korean J Radiol Korean Journal of Radiology = Korean J. Radiol. Korean journal of radiology : official journal of the Korean Radiological Society = Korean J Radiol Korean Journal of Soil Science and Fertilizer = Korean J. Soil Sci. Fert. Korean Mathematical Society = Commun. Korean Math. Soc. Korean Studies = Pac Assoc Korean St Korean Studies = Pac. Assoc. Korean St. Korean War in History = Stud E As Korean War in History = Stud. E. As. Korea Observer = Korea Obs Korea Observer = Korea Obs. Korea Polymer Journal = Korea Polym J Korea Polymer Journal = Korea Polym. J. Korea Research Monograph = Korea Res M Korea Research Monograph = Korea Res. M. Korea & world affairs = Korea (South) Korot = Korot Korperkultur Und Moderne: Robert Musils Asthetik Des Sports = Quell Forsch Lit Kul Korperkultur Und Moderne: Robert Musils Asthetik Des Sports = Quell. Forsch. Lit. Kul. Korrozios Figyelo = Korroz Figy Korrozios Figyelo = Korroz. Figy. Korteweg-de Vries and Nonlinear Schroginger Equations: Qualitative Theory = Lect Notes Math Korteweg-de Vries and Nonlinear Schroginger Equations: Qualitative Theory = Lect. Notes. Math. Koshu Eiseiin kenkyu hokoku. Bulletin of the Institute of Public Health = Koshu Eisei In Kenkyu Hokoku KOS = Kos Kosmas : [journal of the Czechoslovak Society of Arts and Sciences (SVU)] = Kosmas Kosmicheskaia biologiia i aviakosmicheskaia meditsina = Kosm Biol Aviakosm Med Kosmicheskaia Biologiia i Aviakosmicheskaia Meditsina = Kosm. Biol. Aviakosm. Med. Kosmicheskaia biologiia i meditsina = Kosm Biol Med Kosmicheskaia Biologiia i Meditsina = Kosm. Biol. Med. Kosmicheskaya Biologiya I Aviakosmicheskaya Meditsina = Kosm Biol Aviak Med+ Kosmicheskaya Biologiya I Aviakosmicheskaya Meditsina = Kosm. Biol. Aviak. Med+.+ Kosmicheskaya Biologiya I Meditsina = Kosm Biol Aviak Med+ Kosmicheskaya Biologiya I Meditsina = Kosm. Biol. Aviak. Med+.+ Kosmorama = Kosmorama Kosmos. Seria A, Biologia / Polskie Towarzystwo Przyrodnikow im. Kopernika = Kosm Ser A Biol Kosovo and Metohija in Serbian-albanian Relations in The 19th Century (1804-1878) = Serb Hist Sci Kosovo and Metohija in Serbian-albanian Relations in The 19th Century (1804-1878) = Serb. Hist. Sci. Kosovo Between War and Peace: Nationalism, Peacebuilding and International Trusteeship = Cass Ser Peacekeepin Kosovo Between War and Peace: Nationalism, Peacebuilding and International Trusteeship = Cass. Ser. Peacekeepin. Kostengunstig Entwickeln Und Konstruieren: Kostenmanagement Bei Der Integrierten Produktentwicklung = Vdi-buch Kostengunstig Entwickeln Und Konstruieren: Kostenmanagement Bei Der Integrierten Produktentwicklung = Vdi-buch. Kotiseutu = Kotiseutu Kovove Materialy-metallic Materials = Kovove Mater Kovove Materialy-metallic Materials = Kovove Mater. Kovove Materialy Metallic Materials = Kovove Mater. Kozhevenno-Obuvnaya Promyshlennost = Kozh.-Obuvn. Prom-st. Kraft-warme-kopplung = Vdi-buch Kraft-warme-kopplung = Vdi-buch. Kraftwerkstechnik: Zur Nutzung Fossiler, Nuklearer Und Regenerativer Energiequellen = Vdi-buch Kraftwerkstechnik: Zur Nutzung Fossiler, Nuklearer Und Regenerativer Energiequellen = Vdi-buch. Krankengymnastik = Krankengymnastik Krankenpflege (Frankfurt am Main, Germany) = Krankenpflege (Frankf) Krankenpflege Journal = Krankenpfl J Krankenpflege Journal = Krankenpfl. J. Krankenpflege = Krankenpflege (Frankf.) Krankenpflege. Soins infirmiers = Krankenpfl Soins Infirm Krankenpflege (Soins Infirmiers) = Krankenpfl. Soins Infirm. Krankenschwester = Krankenschwester Kratkie soobščenija Instituta archeologii, Kiev = KSIAKiev Kratkie soobščenija o dokladach i polevych issledovanijach Instituta archeologii = KSIA Kratkie Soobshcheniya po Fizike = Kratk. Soobshch. Fiz. Kratkije soobseniâ Inst. arheol. Akad. Nauk SSSR = KSIA Kratylos. Kritisches Berichts- und Rezensionsorgan für indogermanische und allgemeine Sprachwissenschaft = Kratylos Krebsarzt = Krebsarzt Krebsforschung und Krebsbekampfung = Krebsforsch Krebsbekampf Krebsforschung und Krebsbekampfung = Krebsforsch. Krebsbekampf. Kredit und Kapital=Kredit Kapital Krefeld Historical Symposia = Krefeld Hist Symp Krefeld Historical Symposia = Krefeld Hist. Symp. K Reports = K Rep. K [reports]. U.S. Atomic Energy Commission = K Rep Kriminalistik = Kriminalistik Kriminalistik Und Forensische Wissenschaften = Krim Forens Wissen Kriminalistik Und Forensische Wissenschaften = Krim. Forens. Wissen. Kriminalistik und Forensische Wissenschaft = Krim. Forensische Wiss. Kriminologisches Journal = Kriminol J Kriminologisches Journal = Kriminol. J. Krise Der Printmedien: Eine Krise Des Journalismus? = Dortmund Beitr Ztg Krise Der Printmedien: Eine Krise Des Journalismus? = Dortmund. Beitr. Ztg. Kristallografiya = Kristallografiya Kristallografiya = Kristallografiya+ Kristallografiya = Kristallografiya+.+ Kristall Und Technik-crystal Research and Technology = Krist Tech Kristall Und Technik-crystal Research and Technology = Krist. Tech. Kristall und Technik = Krist. Tech. Kriterion = Kriterion Kriterion-revista De Filosofia = Kriterion Kriterion-revista De Filosofia = Kriterion. Kritiek = Kritiek Kritiek (Ravels, Belgium) = Kritiek Kritika-explorations in Russian and Eurasian History = Kritika Kritika-explorations in Russian and Eurasian History = Kritika. Kritika = Kritika Kritische Metaphysik Der Substanz - Kant Im Widerspruch Zu Leibniz = Kantstudien Kritische Metaphysik Der Substanz - Kant Im Widerspruch Zu Leibniz = Kantstudien. Kritisches Jahrbuch der Philosophie = Krit. Jahrb. Philos. Kroc Foundation series = Kroc Found Ser Kroc Foundation Series = Kroc Found. Ser. Kronika (Ljubljana, Slovenia) = Kronika Ksce Journal of Civil Engineering = Ksce J Civ Eng Ksce Journal of Civil Engineering = Ksce J. Civ. Eng. KSCE Journal of Civil Engineering = KSCE J. Civ. Eng. Ksii Transactions On Internet and Information Systems = Ksii T Internet Inf Ksii Transactions On Internet and Information Systems = Ksii T. Internet Inf. Ksme International Journal = Ksme Int J Ksme International Journal = Ksme Int. J. Ksme Journal = Ksme J Ksme Journal = Ksme J. Ktema. Civilisations de l'Orient, de la Grèce et de Rome antiques = Ktema K-theory = K-theory $K$-Theory = $K$-Theory Kuang Pu Hseuh Yu Kuang Pu Fen Hsi Spectroscopy and Spectral Analysis (Pei-Ching=Kuang Pu Hseuh Yu Kuang Pu Fen Hsi;; Kultura fizyczna = Kult Fiz Kul'tura iskusstvo anticnogo mira = KIAM Kultura i spoleczenstwo = Kult Spolecz Kulturraum Tirol: Literatur - Sprache - Medien = Innsbr Beitr Kult Ge Kulturraum Tirol: Literatur - Sprache - Medien = Innsbr. Beitr. Kult. Ge. Kultur & Technik : Zeitschrift des Deutschen Museums Munchen = Kult Tech Kulturtopographie Des Alemannischen Raums = Kult Alemann Raums Kulturtopographie Des Alemannischen Raums = Kult. Alemann. Raums Kulturtopographie Des Deutschsprachigen Sudwestens Im Spateren Mittelalter: Studien Und Texte = Kult Alemann Raums Kulturtopographie Des Deutschsprachigen Sudwestens Im Spateren Mittelalter: Studien Und Texte = Kult. Alemann. Raums. Kumamoto Igakkai Zasshi (Journal of the Kumamoto Medical Society) = Kumamoto Igakkai Zasshi Kumamoto Igakkai zasshi. The Journal of the Kumamoto Medical Society = Kumamoto Igakkai Zasshi Kumamoto Journal of Mathematics = Kumamoto J. Math. Kumamoto Medical Journal = Kumamoto Med. J. Kumamoto University = Mem. Fac. Ed. Kumamoto Univ. Natur. Sci. Kumamoto University = Mem. Fac. Gen. Ed. Kumamoto Univ. Natur. Sci. Kumarian Press Library of Management for Development = Kum P Lib M Kumarian Press Library of Management for Development = Kum. P. Lib. M. Kuml. Årbog for Jysk Arkaeologisk Selskab = Kuml Kun chong fen lei xue bao = Entomotaxonomia|Kun Chong Fen Lei Xue Bao Kun chong xue bao. Acta entomologica Sinica = Kun Chong Xue Bao Kun chong zhi shi = Kunchong zhishi / [Zhongguo kun chong xue hui]|Kun Chong Zhi Shi Kungliga Krigsvetenskapsakademiens handlingar och tidskrift = K Krigsvetenskapakad Handlingar Tidskr Kungliga vitterhets historie och antikvitets akademiens handlingar. Antikvariska serien = Handlingar Kungl Vitterhets Histoire Och Antikvitets Akademien : Konferenser = Kungl Vit H Kungl Vitterhets Histoire Och Antikvitets Akademien : Konferenser = Kungl Vit. H. Kunstchronik. Monatsschrift für Kunstwissenschaft, Museumswesen und Denkmalpflege, Mitteilungsblatt des Verbandes Deutscher Kunsthistoriker = Kunstchronik Kunst der Welt in den Berliner Museen = KuWeltBerlMus Kunst des Orients = Kunst Orient Kunst des Orients = KuOr Kunstgeschichtliche Anzeigen = KuGeschAnz Kunst = Grundthemen Philos Kunst = Grundthemen. Philos. Kunststoffe-german Plastics = Kunstst-ger Plast+ Kunststoffe-german Plastics = Kunstst-ger. Plast+.+ Kunststoffe = Kunststoffe Kunststoffe-plast Europe = Kunstst-plast Eur Kunststoffe-plast Europe = Kunstst-plast. Eur. Kunststoffe-plastics = Kunstst-plast Kunststoffe-plastics = Kunstst-plast. Kunst & Therapie = Kunst Ther Kunstwerk = Kunstwerk Kunst, Wissenschaft Und Geschichte Bei Nietzsche = Monogr Texte Nietzsc Kunst, Wissenschaft Und Geschichte Bei Nietzsche = Monogr. Texte. Nietzsc. Kuram Ve Uygulamada Egitim Bilimleri = Kuram Uygulama Egi Kuram Ve Uygulamada Egitim Bilimleri = Kuram Uygulama. Egi. Kuram Ve Uygulamada Egitim Bilimleri = Kuram Uygul Egit Bil Kuram Ve Uygulamada Egitim Bilimleri = Kuram Uygul. Egit. Bil. Kurinikaru Sutadi (Clinical Study) = Kurinikaru Sutadi Kurume Medical Journal=Kurume Med J;; Kurume Medical Journal = Kurume Med. J. Kush. Journal of the National Corporation for Antiquities and Museums (NCAM) = Kush Kuwait Amid War, Peace and Revolution: 1979-1991 and New Challenges = St Antonys Ser Kuwait Amid War, Peace and Revolution: 1979-1991 and New Challenges = St. Antonys. Ser. Kuwait Journal of Science & Engineering = Kuwait J Sci Eng Kuwait Journal of Science & Engineering = Kuwait J. Sci. Eng. Kuwait Journal of Science & Engineering = Kuwait J. Sci. Engrg. Kuwait Medical Journal = Kuwait Med J Kuwait Medical Journal = Kuwait Med. J. Kvantovaya Elektronika = Kvantovaya Elektron+ Kvantovaya Elektronika = Kvantovaya Elektron+.+ Kvantovaya Elektronika (Moscow) = Kvantovaya Elektron. (Moscow) Kwansei Gakuin University = Kwansei Gakuin Univ. Nat. Sci. Rev. Kwartalnik historii kultury materialnej = Kwart Hist Kult Mater Kwartalnik historii nauki i techniki : Kwartal'nyi zhurnal istorii nauki i tekhniki - = Kwart Hist Nauki Tech Kwartalnik Historii Nauki i Techniki = Kwart. Hist. Nauk. Tech. Kwartalnik historii ruchu zawodowego = Kwart Hist Ruchu Zaw Kwartalnik Historii Zydow-jewish History Quarterly = Kwartalnik Hist Zydo Kwartalnik Historii Zydow-jewish History Quarterly = Kwartalnik Hist. Zydo. Kwartalnik historyczny = Kwart Hist Kybernetes = Kybernetes Kybernetes = Kybernetes Kybernetika = Kybernetika Kybernetika = Kybernetika (Prague) Kybernetika = Kybernetika (Prague) Suppl. Kybernetik = Kybernetik Kyklos : Jahrbuch des Instituts fur Geschichte der Medizin an der Universitat Leipzig = Kyklos Kyklos=Kyklos Kyklos = Kyklos Kynurenine and Serotonin Pathways : Progress in Tryptophan Research = Adv Exp Med Biol Kynurenine and Serotonin Pathways : Progress in Tryptophan Research = Adv. Exp. Med. Biol. Kyobu Geka (Japanese Journal of Thoracic Surgery) = Kyobu Geka Kyobu Geka. Japanese Journal of Thoracic Surgery=Kyobu Geka;; Kyobu geka. The Japanese journal of thoracic surgery = Kyobu Geka Kyoto Area Studies On Asia = Kyoto Area Studies Kyoto Daigaku kokukagaku kiyo. Bulletin of stomatology, Kyoto University = Kyoto Daigaku Kokukagaku Kiyo Kyoto Daigaku Kokukagaku Kiyo (Bulletin of Stomatology, Kyoto University) = Kyoto Daigaku Kokukagaku Kiyo Kyoto Journal of Mathematics = Kyoto J Math Kyoto Journal of Mathematics = Kyoto J. Math. Kyoto University Economic Review=Kyoto Univ. Econ. Rev. Kyoto University = Publ. Res. Inst. Math. Sci. Kypriakai spoudai : deltion tes Hetaireias Kypriakon Spoudon = Kupr Spoud KY Reports = KY Rep. KY [reports]. U.S. Atomic Energy Commission = KY Rep Kyungpook National University = Kyungpook Math. J. Kyushu Journal of Mathematics = Kyushu J. Math. Kyushu Journal of Mathematics = Kyushu J Math Kyushu Journal of Mathematics = Kyushu J. Math. Kyushu journal of medical science = Kyushu J Med Sci Kyushu Journal of Medical Science = Kyushu J. Med. Sci. Kyushu Sangyo University = J. Fac. Internat. Stud. Cult. Kyushu Sangyo Univ. Kώκαλος. Studi pubblicati dall’Istituto di storia antica dell’Università di Palermo = Kokalos L(1) Adaptive Control Theory: Guaranteed Robustness With Fast Adaptation = Adv Des Control L(1) Adaptive Control Theory: Guaranteed Robustness With Fast Adaptation = Adv. Des. Control L(1)-statistical Procedures and Related Topics = Inst Math S L(1)-statistical Procedures and Related Topics = Inst. Math. S. Lab Animal = Lab Animal Lab animal = Lab Anim (NY) LabCiencia con Noticias Tecnicas del Laboratorio = LabCiencia Not. Tec. Lab. Labeo. Rassegna di ritritto romano = Labeo La Bibliofilia; rivista de storia del libro e delle arti grafiche di bibliografia ed erudizione = Bibliofilia Labmedicine = Labmedicine Lab on a chip = Lab Chip Lab on a Chip = Lab Chip Lab on a Chip = Lab. Chip Lab On A Chip = Lab Chip Lab - On - A - Chip: Platforms, Devices, and Applications = Proc Spie Lab - On - A - Chip: Platforms, Devices, and Applications = Proc. Spie. Lab - On - A - Chip: Platforms, Devices, and Applications = P Soc Photo-opt Ins Lab - On - A - Chip: Platforms, Devices, and Applications = P. Soc. Photo-opt. Ins. Lab-on-a-chip: Techniques, Circuits, and Biomedical Applications = Artech Hse Integr Mi Lab-on-a-chip: Techniques, Circuits, and Biomedical Applications = Artech. Hse. Integr. Mi. Labor and Democracy in The Transition to A Market System = Us Post Sov Labor and Democracy in The Transition to A Market System = Us. Post. Sov. "Laboratorio;" analisis clinicos, bacteriologia, inmunologia, parasitologia, hematologia, anatomia patologica, quimica clinica = Laboratorio Laboratorio = Laboratorio Laboratoriumsmedizin-journal of Laboratory Medicine = Laboratoriumsmedizin Laboratoriumsmedizin-journal of Laboratory Medicine = Laboratoriumsmedizin. Laboratornoe delo = Lab Delo Laboratornoe Delo = Lab Delo Laboratornoe Delo = Lab. Delo Laboratory and Astronomical High Resolution Spectra = Astr Soc P Laboratory and Astronomical High Resolution Spectra = Astr. Soc. P. Laboratory and research methods in biology and medicine = Lab Res Methods Biol Med Laboratory and Research Methods in Biology and Medicine = Lab. Res. Methods Biol. Med. Laboratory animal care = Lab Anim Care Laboratory Animal Care = Lab Anim Care Laboratory Animal Care = Lab. Anim. Care Laboratory animal science = Lab Anim Sci Laboratory Animal Science=Lab Anim Sci;; Laboratory Animal Science = Lab Anim Sci Laboratory Animal Science = Lab. Anim. Sci. Laboratory animals = Lab Anim Laboratory Animals=Lab Anim;; Laboratory Animals = Lab Anim Laboratory Animals = Lab. Anim. Laboratory Animals = Lab Anim-uk Laboratory Animals = Lab. Anim-uk. Laboratory Automation and Information Management = Lab. Autom. Inf. Manage. Laboratory hematology : official publication of the International Society for Laboratory Hematology = Lab Hematol Laboratory investigation; a journal of technical methods and pathology = Lab Invest Laboratory Investigation=Lab Invest;; Laboratory Investigation = Lab Invest Laboratory Investigation = Lab. Invest. Laboratory medicine = Lab Med Laboratory Medicine = Lab Med Laboratory Medicine = Lab. Med. Laboratory Phonology 7 = Phonol Phon Laboratory Phonology 7 = Phonol. Phon. Laboratory Phonology 7 = Phonol Phonet Laboratory Phonology 7 = Phonol. Phonet. Laboratory Planetology = Adv Space Res Laboratory Planetology = Adv. Space. Res. Laboratory practice = Lab Pract Laboratory Practice = Lab. Pract. Laboratory Robotics and Automation = Lab. Rob. Autom. Laboratory Robotics and Automation = Lab Robotics Automat Laboratory Robotics and Automation = Lab. Robotics Automat. Labor, Democratization and Development in India and Pakistan = Routl Cont S Asia Se Labor, Democratization and Development in India and Pakistan = Routl. Cont. S. Asia. Se. Labor Documentation Series = Coll Instrum Trav Labor Documentation Series = Coll. Instrum. Trav. Labor History=Lab. Hist. Labor history = Labor Hist Labor History = Labor Hist Labor History = Labor Hist. Labor History = Labor Hist-uk Labor History = Labor Hist-uk. Labor, Industry, and Regulation During The Progressive Era = New Polit Econ Ser Labor, Industry, and Regulation During The Progressive Era = New. Polit. Econ. Ser. Laboring Women: Reproduction and Gender in New World Slavery = Encounters Asia Laboring Women: Reproduction and Gender in New World Slavery = Encounters. Asia. Labor in The Modern South = Econ Soc Mod S Labor in The Modern South = Econ. Soc. Mod. S. Labor Law in America = Jh Comp His Labor Law in America = Jh. Comp. His. Labor law journal = Labor Law J Labor Law Journal = Labor Law J Labor Law Journal = Labor Law J. Labor Market Institutions and Public Regulation = Cesifo Seminar Ser Labor Market Institutions and Public Regulation = Cesifo. Seminar. Ser. Labor Markets and Economic Development = Rout Stud Dev Econ Labor Markets and Economic Development = Rout. Stud. Dev. Econ. Labor Markets and Firm Benefit Policies in Japan and The United States = Nber Conf R Labor Markets and Firm Benefit Policies in Japan and The United States = Nber. Conf. R. Labor Relations in The Public Sector, Fourth Edition = Public Adm Public Po Labor Relations in The Public Sector, Fourth Edition = Public Adm. Public Po. Labor Statistics Measurement Issues = Stud Income Labor Statistics Measurement Issues = Stud. Income. Labour and Leisure in Historical Perspective, Thirteenth to Twentieth Centuries = Vier Soz Wirts Beih Labour and Leisure in Historical Perspective, Thirteenth to Twentieth Centuries = Vier. Soz. Wirts. Beih. Labour and society = Labour Soc Labour capital and society. Travail capital et societe = Labour Cap Soc Labour (Committee on Canadian Labour History). = Labour Labour Economics=Lab. Econ. Labour Economics = Labour Econ Labour Economics = Labour Econ. Labour, Globalization and The State = Routl Cont S Asia Se Labour, Globalization and The State = Routl. Cont. S. Asia. Se. Labour Governments 1964-1970 = Brit Polit Soc Labour Governments 1964-1970 = Brit. Polit. Soc. Labour history = Labour Hist Labour History = Labour Hist Labour History = Labour Hist. Labour History = Labour Hist-aust Labour History = Labour Hist-aust. Labour History Review = Labour Hist Rev Labour History Review = Labour Hist. Rev. Labour=Labour Labour Law in Motion: Diversification of The Labour Force & Terms and Conditions of Employment : Trends in Australia... = Bull Comparat Lab Re Labour Law in Motion: Diversification of The Labour Force & Terms and Conditions of Employment : Trends in Australia... = Bull. Comparat. Lab. Re. Labour-le Travail = Labour-travail Labour-le Travail = Labour-travail. Labour-management Relations Series = Lab Man Rel Labour-management Relations Series = Lab. Man. Rel. Labour Market Contracts and Institutions = Contrib To Econ Anal Labour Market Contracts and Institutions = Contrib. To. Econ. Anal. Labour-market Flexibility and Individual Careers: A Comparative Study = Tech Vocat Ed Train Labour-market Flexibility and Individual Careers: A Comparative Study = Tech. Vocat. Ed. Train. Labour Market Impact of The Eu Enlargement: A New Regional Geography of Europe? = Aiel Ser Labour Econ Labour Market Impact of The Eu Enlargement: A New Regional Geography of Europe? = Aiel. Ser. Labour Econ. Labour Market Triangle: Employment Protection, Unemployment Compensation and Activation in Europe = Glob Welf Labour Market Triangle: Employment Protection, Unemployment Compensation and Activation in Europe = Glob. Welf. Labour Migration and Social Development in Contemporary China = Comp Dev Policy Asia Labour Migration and Social Development in Contemporary China = Comp. Dev. Policy. Asia. Labour Migration in Europe = Migrat Minor Citizen Labour Migration in Europe = Migrat. Minor. Citizen. Labour Relations in Caribbean Countries = Lab Man Rel Labour Relations in Caribbean Countries = Lab. Man. Rel. Lab world = Lab World Labyrinth in Nuclear Structure = Aip Conf Proc Labyrinth in Nuclear Structure = Aip. Conf. Proc. La Casana = Casana Lace Expansion and Its Applications = Lect Notes Math Lace Expansion and Its Applications = Lect. Notes. Math. La Cellule = Cellule La Chirurgia degli organi di movimento = Chir Organi Mov La chronique du CEPED / Centre francais sur la population et le developpement = Chron CEPED La Civilta cattolica = Civ Cattol La Clinica ginecologica = Clin Ginecol La Clinica ortopedica = Clin Ortop La Clinica ostetrica e ginecologica = Clin Ostet Ginecol La Clinica otorinolaringoiatrica = Clin Otorinolaringoiatr La Clinica pediatrica = Clin Pediatr (Bologna) La Clinica terapeutica = Clin Ter La Clinica termale = Clin Term La Clinica veterinaria = Clin Vet (Milano) Lacrimal Gland, Tear Film, and Dry Eye Syndromes 2 = Adv Exp Med Biol Lacrimal Gland, Tear Film, and Dry Eye Syndromes 2 = Adv. Exp. Med. Biol. Lacrimal Gland, Tear Film, and Dry Eye Syndromes 3: Basic Science and Clinical Relevance, Pts A & B = Adv Exp Med Biol Lacrimal Gland, Tear Film, and Dry Eye Syndromes 3: Basic Science and Clinical Relevance, Pts A & B = Adv. Exp. Med. Biol. Lacrimal Gland, Tear Film, and Dry Eye Syndromes = Adv Exp Med Biol Lacrimal Gland, Tear Film, and Dry Eye Syndromes = Adv. Exp. Med. Biol. La Critica sociologica = Crit Sociol Lacroix and The Calculus = Sci Netw Hist Stud Lacroix and The Calculus = Sci. Netw. Hist. Stud. L'Action nationale = Action Natl Lactoferrin = Adv Exp Med Biol Lactoferrin = Adv. Exp. Med. Biol. Lactoferrin - Interactions and Biological Functions = Exp Biol M Lactoferrin - Interactions and Biological Functions = Exp. Biol. M. Lactoferrin: Structure, Function and Applications = Int Congr Ser Lactoferrin: Structure, Function and Applications = Int. Congr. Ser. L'Actualite chimique = Actual Chim L'Actualite economique = Actual Econ L'Actualité Economique=L'Actual. Econ. La Cultura Scientifica = Cult. Sci. Lacuny Occasional Paper = Lacuny Oc P Lacuny Occasional Paper = Lacuny Oc. P. Lacus Forum = Lacus Forum Lacus Forum Xxiv = Lacus Forum Lacus Forum Xxvii = Lacus Forum Lacus Forum Xxvi = Lacus Forum Lacus Forum Xxv = Lacus Forum Lacustrine Basin Exploration = Aapg Memoir Lacustrine Basin Exploration = Aapg. Memoir. Lade Jahwes Im Alten Testament Und in Den Texten Vom Toten Meer = Beih Z Alttest Wiss Lade Jahwes Im Alten Testament Und in Den Texten Vom Toten Meer = Beih. Z. Alttest. Wiss. Laeknabladid = Laeknabladid L'Aeronautique et l'astronautique : organe commun de l'Association francaise des ingenieurs et techniciens de l'aeronautique de l'espace (A.F.I.T.A.E.) et de la Societe francaise d'astronautique (S.F.A.) = Aeronaut Astronaut Laertiana: Capitoli Sulla Tradizione Manoscritta E Sulla Storia Del Testo Delle Vite Dei Filosofi Di Diogene Laerzio = Beitr Altertumskunde Laertiana: Capitoli Sulla Tradizione Manoscritta E Sulla Storia Del Testo Delle Vite Dei Filosofi Di Diogene Laerzio = Beitr. Altertumskunde. L'Afrique et l'Asie modernes = Afr Asie Mod L'Afrique litteraire et artistique = Afr Litt Artist La Gaceta de la Real Sociedad Matemática Española = Gac. R. Soc. Mat. Esp. La Gazette des archives = Gaz Arch Lagerstatte De La Voulte: Un Environnement Bathyal Au Jurassique = Mem Mus Nat Hist Nat Lagerstatte De La Voulte: Un Environnement Bathyal Au Jurassique = Mem. Mus. Nat. Hist. Nat. Lagrange and Finsler Geometry = Fund Theor Lagrange and Finsler Geometry = Fund. Theor. Lagrange Multiplier Approach to Variational Problems and Applications = Adv Des Control Lagrange Multiplier Approach to Variational Problems and Applications = Adv. Des. Control. Lagrangian and Hamiltonian Methods for Nonlinear Control 2006 = Lect Notes Contr Inf Lagrangian and Hamiltonian Methods for Nonlinear Control 2006 = Lect. Notes. Contr. Inf. Lagrangian and Hamiltonian Methods for Nonlinear Control = Ifac Work S Lagrangian and Hamiltonian Methods for Nonlinear Control = Ifac. Work. S. Lagrangian and Hamiltonian Methods in Nonlinear Control 2003 = Ifac Work S Lagrangian and Hamiltonian Methods in Nonlinear Control 2003 = Ifac. Work. S. Laguna De Gallocanta: Medico Natural, Conservacion Y Teledeteccion = Mem Real Soc Esp His Laguna De Gallocanta: Medico Natural, Conservacion Y Teledeteccion = Mem. Real. Soc. Esp. His. Lahey Clinic Foundation Bulletin = Lahey Clin Found B Lahey Clinic Foundation Bulletin = Lahey Clin. Found. B. Lahey Clinic Foundation bulletin = Lahey Clin Found Bull Lahey Clinic Foundation Bulletin = Lahey Clin. Found. Bull. Lahore Journal of Economics=Lahore J. Econ. Laietania. Estudios d'arqueologia del Maresme = Laietania Lait = Lait Lakartidningen=Lakartidningen;; Lakartidningen = Lakartidningen Lake and Reservoir Management = Lake Reserv Manage Lake and Reservoir Management = Lake Reserv. Manage. Lake and Reservoir Management = Lake Reservoir Manage. Lake Huron Ecosystem: Ecology, Fisheries and Management = Ecovis World Mg Ser Lake Huron Ecosystem: Ecology, Fisheries and Management = Ecovis. World. Mg. Ser. Lake Issyk-kul: Its Natural Environment = Nato Sci S Ss Iv Ear Lake Issyk-kul: Its Natural Environment = Nato. Sci. S. Ss. Iv. Ear. Lakes As Ocean Model = Oceanis S D Lakes As Ocean Model = Oceanis. S. D. Lakes & Reservoirs: Research and Management = Lakes Reservoirs Res. Manage. Lakokrasochnye Materialy i Ikh Primenenie = Lakokras. Mater. Ikh Primen. L' Alimentation et la vie = Aliment Vie La linguistique = Ling La Lutte contre le cancer = Lutte Cancer La Medecine aeronautique = Med Aeronaut La Medecine en France = Med Fr (Bombay) La Medecine infantile = Med Infant (Paris) La Medicina colonial = Med Colon La Medicina del lavoro = Med Lav La Medicina internazionale = Med Int (Milano) La Medicina tropical = Med Trop (Madr) Lamotrigine - A Brighter Future = Roy Soc Med Int Cong Lamotrigine - A Brighter Future = Roy. Soc. Med. Int. Cong. Lamotrigine - A New Advance in The Treatment of Epilepsy = Roy Soc Med Int Cong Lamotrigine - A New Advance in The Treatment of Epilepsy = Roy. Soc. Med. Int. Cong. Lampada = Lampada Lampas. Tijdschrift voor nederlandse classici = Lampas Lampf Workshop On ( Pi, K ) Physics = Aip Conf Proc Lampf Workshop On ( Pi, K ) Physics = Aip. Conf. Proc. Lamp = Lamp Lancet Infectious Diseases = Lancet Infect Dis Lancet Infectious Diseases = Lancet Infect. Dis. Lancet=Lancet;; Lancet = Lancet Lancet neurology = Lancet Neurol Lancet Neurology = Lancet Neurol Lancet Neurology = Lancet Neurol. Lancet Oncology = Lancet Oncol Lancet Oncology = Lancet Oncol. Lancia. Revista de prehistoria, arqueología e historia antigua del noreste peninsular = Lancia Land and Community : Geography in Jewish Studies = Stud Text Jew Hist Land and Community : Geography in Jewish Studies = Stud. Text. Jew. Hist. Land and Maritime Boundary Disputes of The Americas = Am Polit Econ Secur Land and Maritime Boundary Disputes of The Americas = Am. Polit. Econ. Secur. Land and Nationalism in Fictions From Southern Africa = Rout Res Postcol Lit Land and Nationalism in Fictions From Southern Africa = Rout. Res. Postcol. Lit. Land and water law review = Land Water Law Rev Landarzt = Landarzt Landbauforschung = Landbauforschung-ger Landbauforschung = Landbauforschung-ger. Landbauforschung = Langbauforschung-ger Landbauforschung = Langbauforschung-ger. Landbauforschung Volkenrode = Landbauforsch Volk Landbauforschung Volkenrode = Landbauforsch. Volk. Landbauforschung-vti Agriculture and Forestry Research Sonderheft = Landbauforsch-vti Ag Landbauforschung-vti Agriculture and Forestry Research Sonderheft = Landbauforsch-vti. Ag. Landbauforschung-vti Agriculture and Forestry Research, Sonderheft = Landbauforsch Vti Ag Landbauforschung-vti Agriculture and Forestry Research, Sonderheft = Landbauforsch. Vti. Ag. Landbouwmechanisatie = Landbouwmechanisatie Landbouwtijdschrift-revue De L Agriculture = Landbouwtijd-rev Agr Landbouwtijdschrift-revue De L Agriculture = Landbouwtijd-rev. Agr. Land Degradation and Development = Land Degrad. Dev. Land Degradation and Rehabilitation = Land Degrad Rehabil Land Degradation and Rehabilitation = Land Degrad. Rehabil. Land Degradation & Development = Land Degrad Dev Land Degradation & Development = Land Degrad. Dev. Land Development and Public Involvement in Transportation = Transport Res Rec Land Development and Public Involvement in Transportation = Transport. Res. Rec. Land economics = Land Econ Land Economics=Land Econ. Land Economics = Land Econ Land Economics = Land Econ. Landeshydrologie und -geologie, Mitteilung = Landeshydrol. -geol., Mitt. Landeskundliche Vierteljahrsblätter. Trier = LandKunVierJBl Landfall = Landfall Landfill Closures...environmental Protection and Land Recovery = Geotech Sp Landfill Closures...environmental Protection and Land Recovery = Geotech. Sp. Landmarks in Organo-transition Metal Chemistry: A Personal View = Profiles Inorg Chem Landmarks in Organo-transition Metal Chemistry: A Personal View = Profiles. Inorg. Chem. Land, Nation and Culture, 1740-1840 = Palgrave Stud Enligh Land, Nation and Culture, 1740-1840 = Palgrave. Stud. Enligh. Land Reconstruction and Management Series = Land Recons Land Reconstruction and Management Series = Land Recons. Land Reconstruction and Management Series = Land Reconstr Manag Land Reconstruction and Management Series = Land Reconstr. Manag. Land Reform in Developing Countries: Property Rights and Property Wrongs = Routl Prior Dev Econ Land Reform in Developing Countries: Property Rights and Property Wrongs = Routl. Prior. Dev. Econ. Land Remote Sensing and Global Environmental Change: Nasa's Earth Observing System and The Science of Aster and Modis = Remote Sens Digit Im Land Remote Sensing and Global Environmental Change: Nasa's Earth Observing System and The Science of Aster and Modis = Remote Sens. Digit. Im. Landscape and Ecological Engineering = Landsc Ecol Eng Landscape and Ecological Engineering = Landsc. Ecol. Eng. Landscape and Urban Planning = Landscape Urban Plan Landscape and Urban Planning = Landscape Urban Plan. Landscape and urban planning = Landsc Urban Plan Landscape and Urban Planning = Landsc. Urban Plan. Landscape Archaeology and Ecology = Landsc Archaeol Ecol Landscape Archaeology and Ecology = Landsc. Archaeol. Ecol. Landscape Architecture = Landscape Archit Landscape Architecture = Landscape Archit. Landscape Architecture Magazine = Landsc Archit Mag Landscape Architecture Magazine = Landsc. Archit. Mag. Landscape Ecology and Wildlife Habitat Evaluation: Critical Information for Ecological Risk Assessment, Land-use Management Activities, and Biodiversity Enhancement = Am Soc Test Mater Landscape Ecology and Wildlife Habitat Evaluation: Critical Information for Ecological Risk Assessment, Land-use Management Activities, and Biodiversity Enhancement = Am. Soc. Test. Mater. Landscape Ecology in Asian Cultures = Ecol Res Monogr Landscape Ecology in Asian Cultures = Ecol. Res. Monogr. Landscape Ecology = Landscape Ecol Landscape Ecology = Landscape Ecol. Landscape Ecology = Landsc. Ecol. Landscape Ecology of Fire = Ecol Stud-anal Synth Landscape Ecology of Fire = Ecol. Stud-anal. Synth. Landscape Evolution: Denudation, Climate and Tectonics Over Different Time and Space Scales = Geol Soc Spec Publ Landscape Evolution: Denudation, Climate and Tectonics Over Different Time and Space Scales = Geol. Soc. Spec. Publ. Landscape Influences On Stream Habitats and Biological Assemblages = Am Fish S S Landscape Influences On Stream Habitats and Biological Assemblages = Am. Fish. S. S. Landscape Journal = Landsc. J. Landscape = Key Ideas Geogr Landscape = Key. Ideas. Geogr. Landscape = Landscape Landscape, Literature and English Religious Culture, 1660-1800: Samuel Johnson and Languages of Natural Description = Stud Mod Hist Landscape, Literature and English Religious Culture, 1660-1800: Samuel Johnson and Languages of Natural Description = Stud. Mod. Hist. Landscape Modelling: Geographical Space, Transformation and Future Scenarios = Urban Land Perspect Landscape Modelling: Geographical Space, Transformation and Future Scenarios = Urban. Land. Perspect. Landscape of Hope and Despair: Palestinian Refugee Camps = Ethnogr Polit Violen Landscape of Hope and Despair: Palestinian Refugee Camps = Ethnogr. Polit. Violen. Landscape Perspectives of Land Use Changes = Adv Ecol Sci Landscape Perspectives of Land Use Changes = Adv. Ecol. Sci. Landscape Planning = Landscape Plan Landscape Planning = Landscape Plan. Landscape Research = Landscape Res Landscape Research = Landscape Res. Landscape Series = Landsc Ser Landscape Series = Landsc. Ser. Landscapes in Education = Landsc Educ Landscapes in Education = Landsc. Educ. Landscapes of Movement: Trails, Paths, and Roads in Anthropological Perspective = Penn Museum Int Res Landscapes of Movement: Trails, Paths, and Roads in Anthropological Perspective = Penn. Museum. Int. Res. Landscapes of Transition = Geoj Lib Landscapes of Transition = Geoj. Lib. Landscapes - Perception, Recognition and Management: Reconciling The Impossible?, Conference Proceedings = Landsc Archaeol Ecol Landscapes - Perception, Recognition and Management: Reconciling The Impossible?, Conference Proceedings = Landsc. Archaeol. Ecol. Landscapes-the Arts Aesthetics and Education = Landsc Art Aesthet E Landscapes-the Arts Aesthetics and Education = Landsc. Art. Aesthet. E. Landscape Theory = Art Semin Landscape Theory = Art. Semin. Landschaft Aargau = Landsch. Aargau Landschaftsentwicklung und Umweltforschung = Landsch.entwickl. Umweltforsch. Landschaftsgenese und Landschaftsökologie = Landsch.genes. Landsch.ökol. Landschaftsökologie und Umweltforschung = Landsch.ökol. Umweltforsch. Landschaftspflege und Vegetationskunde = Landsch.pfl. Veg.kd. Landslide Disaster Mitigation in Three Gorges Reservioir, China = Environ Sci Eng Landslide Disaster Mitigation in Three Gorges Reservioir, China = Environ. Sci. Eng. Landslides and Climate Change: Challenges and Solutions = Proc Monogr Eng Wate Landslides and Climate Change: Challenges and Solutions = Proc. Monogr. Eng. Wate. Landslides and Engineering Geology of The Seattle, Washington, Area = Rev Eng Geol Landslides and Engineering Geology of The Seattle, Washington, Area = Rev. Eng. Geol. Landslides: Causes, Types and Effects = Nat Disaster Res Pr Landslides: Causes, Types and Effects = Nat. Disaster. Res. Pr. Landslides From Massive Rock Slope Failure = Nato Sci S Ss Iv Ear Landslides From Massive Rock Slope Failure = Nato. Sci. S. Ss. Iv. Ear. Landslides = Landslides Land Stewardship in The 21st Century: The Contributions of Watershed Management, Conference Proceedings = Us For Serv Rmrs-p Land Stewardship in The 21st Century: The Contributions of Watershed Management, Conference Proceedings = Us. For. Serv. Rmrs-p. Land Subsidence Case Studies and Current Research: Proceedings of The Dr. Joseph F. Poland Symposium On Land Subsidence = Assoc Engn Geologist Land Subsidence Case Studies and Current Research: Proceedings of The Dr. Joseph F. Poland Symposium On Land Subsidence = Assoc. Engn. Geologist. Land Subsidence / = Iahs-aish P Land Subsidence / = Iahs-aish. P. Land Surface Characterization and Remote Sensing of Ocean Processes = Adv Space Res Land Surface Characterization and Remote Sensing of Ocean Processes = Adv. Space. Res. Land Surface Characterization and Remote Sensing of Ocean Processes = Adv Space Res-series Land Surface Characterization and Remote Sensing of Ocean Processes = Adv. Space. Res-series. Landtechnik = Landtechnik Landtechnische Forschung = Landtech Forsch Landtechnische Forschung = Landtech. Forsch. Land Type Associations Conference: Development and Use in Natural Resources Management, Planning and Research, Proceedings = Usda Ne Exp Land Type Associations Conference: Development and Use in Natural Resources Management, Planning and Research, Proceedings = Usda. Ne. Exp. Land Use and Climate Change = Clim Chang Cause Eff Land Use and Climate Change = Clim. Chang. Cause. Eff. Land Use and Transportation Planning and Programming Applications = Transport Res Rec Land Use and Transportation Planning and Programming Applications = Transport. Res. Rec. Land Use and Watersheds = Water Sci Appl Land Use and Watersheds = Water. Sci. Appl. Land Use Change : The Causes and Consequences = Ite Symp Land Use Change : The Causes and Consequences = Ite. Symp. Land Use Planning Applications = World Soil Land Use Planning Applications = World. Soil. Land use policy = Land use policy Land Use Policy = Land Use Policy Land Use Scenarios: Environmental Consequences of Development = Integr Stud Water Ma Land Use Scenarios: Environmental Consequences of Development = Integr. Stud. Water. Ma. Landwirtschaftliche Forschung = Landwirt Forsch Landwirtschaftliche Forschung = Landwirt. Forsch. Landwirtschaftliche Forschung = Landwirtsch. Forsch. Landwirtschaftliches Jahrbuch der Schweiz = Landwirtsch. Jahrb. Schweiz L'Âne d'Or = Âne d'Or Langages = Langages Langenbecks Archive of Surgery=Langenbecks Arch Surg;; Langenbeck's archives of surgery / Deutsche Gesellschaft fur Chirurgie = Langenbecks Arch Surg Langenbecks Archives of Surgery = Langenbeck Arch Surg Langenbecks Archives of Surgery = Langenbeck. Arch. Surg. Langenbeck's Archives of Surgery = Langenbecks Arch. Surg. Langenbecks Archiv Fur Chirurgie = Langenbeck Arch Chir Langenbecks Archiv Fur Chirurgie = Langenbeck. Arch. Chir. Langenbecks Archiv fur Chirurgie = Langenbecks Arch Chir Langenbecks Archiv fur Chirurgie = Langenbecks Arch. Chir. Langenbecks Archiv fur Chirurgie. Supplement II, Verhandlungen der Deutschen Gesellschaft fur Chirurgie. Deutsche Gesellschaft fur Chirurgie. Kongress = Langenbecks Arch Chir Suppl II Verh Dtsch Ges Chir Langenbecks Archiv fur Chirurgie. Supplement II, Verhandlungen der Deutschen Gesellschaft fur Chirurgie = Langenbecks Arch. Chir. Suppl. II Verh. Dtsch. Ges. Chir. Langenbecks Archiv fur Chirurgie. Supplement. Kongressband. Deutsche Gesellschaft fur Chirurgie. Kongress = Langenbecks Arch Chir Suppl Kongressbd Langenbecks Archiv fur Chirurgie. Supplement, Kongressband = Langenbecks Arch. Chir. Suppl. Kongressbd. Langenbecks Archiv Fur Chirurgie. Supplement. Kongressband=Langenbecks Arch Chir Suppl Kongressbd;; Langenbecks Archiv Fur Chirurgie Supplement = Langeng Arc Langenbecks Archiv Fur Chirurgie Supplement = Langeng. Arc. Langenbecks Archiv fur klinische Chirurgie ... vereinigt mit Deutsche Zeitschrift fur Chirurgie = Langenbecks Arch Klin Chir Ver Dtsch Z Chir Langland's Early Modern Identities = New Middle Ages Langland's Early Modern Identities = New. Middle. Ages. Langmuir = Langmuir Langmuir : the ACS journal of surfaces and colloids = Langmuir Language Acquisition = Lang Acquis Language Acquisition = Lang. Acquis. Language Acquisition = Palgrave Adv Language Acquisition = Palgrave. Adv. Language Acquisition Problems and Reading Disorders: Aspects of Diagnosis and Intervention = Prev Int Ch Language Acquisition Problems and Reading Disorders: Aspects of Diagnosis and Intervention = Prev. Int. Ch. Language and Automata Theory and Applications = Lect Notes Comput Sc Language and Automata Theory and Applications = Lect. Notes. Comput. Sc. Language and Cognitive Processes = Lang Cognitive Proc Language and Cognitive Processes = Lang. Cognitive Proc. Language and cognitive processes = Lang Cogn Process Language and Communication : Comparative Perspectives = Compar Cogn Language and Communication : Comparative Perspectives = Compar. Cogn. Language and Communication Disorders=Lang Commun Disord;; Language and Computers = Lang Comput Language and Computers = Lang. Comput. Language and Computers : Studies in Practical Linguistics = Lang Comput Language and Computers : Studies in Practical Linguistics = Lang. Comput. Language and Cultural Change = Gr Stud Cult Language and Cultural Change = Gr. Stud. Cult. Language and Culture = Brit S Ap L Language and Culture = Brit. S. Ap. L. Language and Development = Languag Dev Language and Development = Languag. Dev. Language and Education = Brit S Ap L Language and Education = Brit. S. Ap. L. Language and Education in Japan: Unequal Access to Bilingualism = Palg Stud Minor Lang Language and Education in Japan: Unequal Access to Bilingualism = Palg. Stud. Minor. Lang. Language and Education = Lang Educ-uk Language and Education = Lang. Educ-uk. Language and Education Library = Lang Educ Lib Language and Education Library = Lang. Educ. Lib. Language and Gender = Routl Appl Lingu Ser Language and Gender = Routl. Appl. Lingu. Ser. Language and Globalization = Lang Glob Language and Globalization = Lang. Glob. Language and Globalization = Lang Globalization Language and Globalization = Lang. Globalization Language and History: Integrationist Perspectives = Routl Adv Commun Lin Language and History: Integrationist Perspectives = Routl. Adv. Commun. Lin. Language and Intercultural Communication = Lang Intercult Comm Language and Intercultural Communication = Lang. Intercult. Comm. Language and Linguistics = Lang Linguist Language and Linguistics = Lang. Linguist. Language and Linguistics = Lang Linguist-taiwan Language and Linguistics = Lang. Linguist-taiwan. Language and Literacy Education in A Challenging World = Lang Linguist Ser Language and Literacy Education in A Challenging World = Lang. Linguist. Ser. Language and Literature = Lang Lit Language and Literature = Lang. Lit. Language and Mathematics Education: Multiple Perspectives and Directions for Research = Res Math Educ Ser Language and Mathematics Education: Multiple Perspectives and Directions for Research = Res. Math. Educ. Ser. Language and Nation = Brit S Ap L Language and Nation = Brit. S. Ap. L. Language and Politics in The Sixteenth-century History Play = Early Mod Lit Hist Language and Politics in The Sixteenth-century History Play = Early. Mod. Lit. Hist. Language and Rhythm in Plautus = Sozomena-stud Recov Language and Rhythm in Plautus = Sozomena-stud. Recov. Language and Social Cognition: Expression of The Social Mind = Trends Linguist-stud Language and Social Cognition: Expression of The Social Mind = Trends. Linguist-stud. Language and Society in Post-communist Europe = Int Congr Cent E Eur Language and Society in Post-communist Europe = Int. Congr. Cent. E. Eur. Language and Space: An International Handbook of Linguistic Variation Vol 1 = Handb Sprach Kommun Language and Space: An International Handbook of Linguistic Variation Vol 1 = Handb. Sprach. Kommun. Language and Speech / = Act Neur S Language and Speech / = Act. Neur. S. Language and speech = Lang Speech Language and Speech=Lang Speech;; Language and Speech = Lang Speech Language and Speech = Lang. Speech Language and Spirit = Claremon Stud Philos Language and Spirit = Claremon. Stud. Philos. Language and Style = Lang Style Language and Style = Lang. Style Language and The City = Lang Glob Language and The City = Lang. Glob. Language and The Renewal of Society in Walt Whitman, Laura (riding) Jackson, and Charles Olson: The American Cratylus = Mod Contemp Poet Poe Language and The Renewal of Society in Walt Whitman, Laura (riding) Jackson, and Charles Olson: The American Cratylus = Mod. Contemp. Poet. Poe. Language Arts = Lang Arts Language Arts = Lang. Arts Language As A Mirror of Culture = A U Um Hum Language As A Mirror of Culture = A U. Um. Hum. Language Assessment Quarterly = Lang Assess Q Language Assessment Quarterly = Lang. Assess. Q. Language At Work = Brit S Ap L Language At Work = Brit. S. Ap. L. Language Awareness = Lang Aware Language Awareness = Lang. Aware. Language Change and Functional Explanations = Trend Lin S Language Change and Functional Explanations = Trend. Lin. S. Language Choice in A Nation Under Transition = Lang Policy Ser Language Choice in A Nation Under Transition = Lang. Policy. Ser. Language Choices = Impact Language Choices = Impact. Language, Citizenship and Identity in Quebec = Lang Glob Language, Citizenship and Identity in Quebec = Lang. Glob. Language - Communication - Information Science = Ling Arb Language - Communication - Information Science = Ling. Arb. Language - Communication - Information Science, Vol 2 = Ling Arb Language - Communication - Information Science, Vol 2 = Ling. Arb. Language & communication = Lang Commun Language & Communication = Lang Commun Language & Communication = Lang. Commun. Language Context and Cognition = Lang Context Cogn Language Context and Cognition = Lang. Context Cogn. Language Continuum = Comm Lang S Language Continuum = Comm. Lang. S. Language Culture and Curriculum = Lang Cult Curric Language Culture and Curriculum = Lang. Cult. Curric. Language Culture and Teaching = Lang Cult Teach Language Culture and Teaching = Lang. Cult. Teach. Language Curriculum Design = Esl Appl Ling Prof Language Curriculum Design = Esl. Appl. Ling. Prof. Language, Discourse and Identity in Central Europe: The German Language in A Multilingual Space = Lang Glob Language, Discourse and Identity in Central Europe: The German Language in A Multilingual Space = Lang. Glob. Language, Discourse and Identity in Central Europe: The German Language in A Multilingual Space = Lang Globalization Language, Discourse and Identity in Central Europe: The German Language in A Multilingual Space = Lang. Globalization. Language, Discourse and Social Psychology = Palgrave Adv Language, Discourse and Social Psychology = Palgrave. Adv. Language Discourse Society = Lang Discourse Soc Language Discourse Society = Lang. Discourse Soc. Language Discourse Society = Lang Disc Soc Language Discourse Society = Lang. Disc. Soc. Language, Discourse, Society Reader = Lang Discourse Soc Language, Discourse, Society Reader = Lang. Discourse. Soc. Language Diversity Endangered = Trend Lin S Language Diversity Endangered = Trend. Lin. S. Language Diversity Endangered = Trends Linguist-stud Language Diversity Endangered = Trends. Linguist-stud. Language, Education and Society in A Changing World = Multiling Language, Education and Society in A Changing World = Multiling. Language Education for Intercultural Communication = Multiling Language Education for Intercultural Communication = Multiling. Language Encounter in The Americas, 1492-1800 = Eur Ex Glob Interact Language Encounter in The Americas, 1492-1800 = Eur. Ex. Glob. Interact. Language Engineering and Rigorous Software Development = Lect Notes Comput Sc Language Engineering and Rigorous Software Development = Lect. Notes. Comput. Sc. Language Engineering for Lesser-studied Languages = Nato Sc S Ss Iii C S Language Engineering for Lesser-studied Languages = Nato. Sc. S. Ss. Iii. C. S. Language, Gender, and Citizenship in American Literature, 1789-1919 = Stud Am Popul Hist C Language, Gender, and Citizenship in American Literature, 1789-1919 = Stud. Am. Popul. Hist. C. Language History and Linguistic Description in Africa = Tr Afr Ling Language History and Linguistic Description in Africa = Tr. Afr. Ling. Language History, Language Change, and Language Relationship: An Introduction to Historical and Comparative Linguistics, Second Edition = Trends Linguist-stud Language History, Language Change, and Language Relationship: An Introduction to Historical and Comparative Linguistics, Second Edition = Trends. Linguist-stud. Language Ideologies, Policies and Practices: Language and The Future of Europe = Lang Glob Language Ideologies, Policies and Practices: Language and The Future of Europe = Lang. Glob. Language in A Changing Europe = Brit S Ap L Language in A Changing Europe = Brit. S. Ap. L. Language in Baden-wurttemberg: Features of The Regional Standard = Linguist Arb Language in Baden-wurttemberg: Features of The Regional Standard = Linguist. Arb. Language in Education-theory and Practice = Lang Educ T Language in Education-theory and Practice = Lang. Educ. T. Language in Life, and A Life in Language: Jacob Mey - A Festschrift = Stud Pragmat Language in Life, and A Life in Language: Jacob Mey - A Festschrift = Stud. Pragmat. Language in Mind: Advances in The Study of Language and Thought = Bradford Books Language in Mind: Advances in The Study of Language and Thought = Bradford. Books. Language in Religion = P Ctr Res D Language in Religion = P. Ctr. Res. D. Language in Society = Lang Soc Language in Society = Lang. Soc. Language In Society = Lang. Soc. Language in The Context of Use = Cogn Linguist Res Language in The Context of Use = Cogn. Linguist. Res. Language = Language Language Learning and Language Technology = Lang L Lang Technol Language Learning and Language Technology = Lang. L. Lang. Technol. Language Learning = Lang Learn Language Learning = Lang. Learn. Language Learning & Technology = Lang Learn Technol Language Learning & Technology = Lang. Learn. Technol. Language Legislation and Linguistic Rights = Impact Language Legislation and Linguistic Rights = Impact. Language, Literature and Culture of Slavs - Past and Present = Ptpn Filol Piloz Language, Literature and Culture of Slavs - Past and Present = Ptpn. Filol. Piloz. Language Matters = Lang Matters Language Matters = Lang. Matters Language Matters: Reflections On Educational Linguistics = Contemp Lang Educ Language Matters: Reflections On Educational Linguistics = Contemp. Lang. Educ. Language, Meaning, Interpretation = Philos Probl Today Language, Meaning, Interpretation = Philos. Probl. Today. Language-meaning-social Construction Interdisciplinary Studies = Crit Stud Language-meaning-social Construction Interdisciplinary Studies = Crit. Stud. Language, Minds, and Brains = Stud Lang-finland Language, Minds, and Brains = Stud. Lang-finland. Language Minority Students in American Schools = Esl Appl Ling Prof Language Minority Students in American Schools = Esl. Appl. Ling. Prof. Language, Nation and State: Identity Politics in A Multingual Age = Eur Transit Nyu Eur Language, Nation and State: Identity Politics in A Multingual Age = Eur. Transit. Nyu. Eur. Language Norms At The Interface Between Theory and Practice of Written Language = Stud Linguist Ger Language Norms At The Interface Between Theory and Practice of Written Language = Stud. Linguist. Ger. Language of Belonging = Lang Glob Language of Belonging = Lang. Glob. Language of Comic Narratives = Humor Res Language of Comic Narratives = Humor. Res. Language of Mathematics: Telling Mathematical Tales = Math Educ Lib Language of Mathematics: Telling Mathematical Tales = Math. Educ. Lib. Language of Pain: Talking About Pain = Linguist-impulse Ten Language of Pain: Talking About Pain = Linguist-impulse. Ten. Language of Work: Technical Communication At Lukens Steel, 1810 to 1925 = Baywoods Tech Commun Language of Work: Technical Communication At Lukens Steel, 1810 to 1925 = Baywoods. Tech. Commun. Language, People, Numbers: Corpus Linguistics and Society = Lang Comput Language, People, Numbers: Corpus Linguistics and Society = Lang. Comput. Language Policy and Modernity in Southeast Asia: Malaysia, The Philippines, Singapore, and Thailand = Lang Policy Ser Language Policy and Modernity in Southeast Asia: Malaysia, The Philippines, Singapore, and Thailand = Lang. Policy Ser. Language Policy and Nation-building in Post-apartheid South Africa = Lang Policy Ser Language Policy and Nation-building in Post-apartheid South Africa = Lang. Policy Ser. Language Policy for The European Community = Contr Soc L Language Policy for The European Community = Contr. Soc. L. Language Policy in The People's Republic of China: Theory and Practice Since 1949 = Lang Policy Ser Language Policy in The People's Republic of China: Theory and Practice Since 1949 = Lang. Policy Ser. Language Policy in The People's Republic of China: Theory and Practice Since 1949 = Language Policy Language Policy in The Soviet Union = Lang Policy Ser Language Policy in The Soviet Union = Lang. Policy Ser. Language Policy = Lang Policy-neth Language Policy = Lang. Policy-neth. Language Policy Series = Lang Policy Ser Language Policy Series = Lang. Policy Ser. Language Policy Series = Language Policy Language, Power and Identity Politics = Palg Stud Minor Lang Language, Power and Identity Politics = Palg. Stud. Minor. Lang. Language Power and Social Processes = Lang Power Soc Proce Language Power and Social Processes = Lang. Power Soc. Proce. Language Problems & Language Planning = Lang Probl Lang Plan Language Problems & Language Planning = Lang. Probl. Lang. Plan. Language Processing and Language Acquisition = Stud Th Psy Language Processing and Language Acquisition = Stud. Th. Psy. Language, Quantum, Music = Synth Libr Language, Quantum, Music = Synth. Libr. Language Regimes in Transformation = Contrib Sociol Lang Language Regimes in Transformation = Contrib. Sociol. Lang. Language Resources and Evaluation = Lang Resour Eval Language Resources and Evaluation = Lang. Resour. Eval. Languages and Compilers for High Performance Computing = Lect Notes Comput Sc Languages and Compilers for High Performance Computing = Lect. Notes. Comput. Sc. Languages and Compilers for Parallel Computing = Lect Notes Comput Sc Languages and Compilers for Parallel Computing = Lect. Notes. Comput. Sc. Languages and Cultures in Contact = Orient Lovan Anal Languages and Cultures in Contact = Orient. Lovan. Anal. Languages and Linguistics Series = Lang Linguist Ser Languages and Linguistics Series = Lang. Linguist. Ser. Language Sciences = Lang Sci Language Sciences = Lang. Sci. Language Scientist As Expert in The Legal Setting = Ann Ny Acad Sci Language Scientist As Expert in The Legal Setting = Ann. Ny. Acad. Sci. Languages, Compilers, and Run-time Systems for Scalable Computers = Lect Notes Comput Sc Languages, Compilers, and Run-time Systems for Scalable Computers = Lect. Notes. Comput. Sc. Languages for A Multicultural World in Transition = Northe Conf Languages for A Multicultural World in Transition = Northe. Conf. Languages for System Specification = Chdl Ser Languages for System Specification = Chdl. Ser. Languages: From Formal to Natural = Lect Notes Comput Sc Languages: From Formal to Natural = Lect. Notes. Comput. Sc. Languages in The European Community Ii - Minority Languages = Diag Hisp Languages in The European Community Ii - Minority Languages = Diag. Hisp. Languages in The European Community Ii - Second Language And/or Foreign Language Acquisition = Diag Hisp Languages in The European Community Ii - Second Language And/or Foreign Language Acquisition = Diag. Hisp. Languages in The European Community Ii - Teaching of Second Languages And/or Foreign Languages = Diag Hisp Languages in The European Community Ii - Teaching of Second Languages And/or Foreign Languages = Diag. Hisp. Languages in The European Community Ii - Translation = Diag Hisp Languages in The European Community Ii - Translation = Diag. Hisp. Languages, Methodologies and Development Tools for Multi-agent Systems = Lect Notes Artif Int Languages, Methodologies and Development Tools for Multi-agent Systems = Lect. Notes. Artif. Int. Languages, Methodologies, and Development Tools for Multi-agent Systems = Lect Notes Artif Int Languages, Methodologies, and Development Tools for Multi-agent Systems = Lect. Notes. Artif. Int. Languages of Sentiment = Adv Consc Res Languages of Sentiment = Adv. Consc. Res. Language, Speech, and Communication = Lang. Speech Commun. Language, Speech, and Communication = Lang Speech & Commun Language, Speech, and Communication = Lang. Speech. &. Commun. Language Speech and Hearing Services in Schools = Lang Speech Hear Ser Language Speech and Hearing Services in Schools = Lang. Speech Hear. Ser. Language, speech, and hearing services in schools = Lang Speech Hear Serv Sch Language, Speech, Behavior: Proceedings of The 28th Linguistic Colloquium, Held in Graz, Austria, 1993, Vol 1 = Ling Arb Language, Speech, Behavior: Proceedings of The 28th Linguistic Colloquium, Held in Graz, Austria, 1993, Vol 1 = Ling. Arb. Language, Speech, Behavior: Proceedings of The 28th Linguistic Colloquium Held in Graz, Austria, 1993, Vol 2 = Ling Arb Language, Speech, Behavior: Proceedings of The 28th Linguistic Colloquium Held in Graz, Austria, 1993, Vol 2 = Ling. Arb. Language Spread and Social Change = Publ Icrb A Language Spread and Social Change = Publ. Icrb. A. Language Talent and Brain Activity = Trends Appl Linguist Language Talent and Brain Activity = Trends. Appl. Linguist. Language Teaching: Integrational Linguistic Approaches = Routl Adv Commun Lin Language Teaching: Integrational Linguistic Approaches = Routl. Adv. Commun. Lin. Language Teaching = Lang Teach Language Teaching = Lang. Teach. Language Teaching = Lang Teaching Language Teaching = Lang. Teaching Language Teaching Research = Lang Teach Res Language Teaching Research = Lang. Teach. Res. Language Testing and Assessment = Routl Appl Lingu Ser Language Testing and Assessment = Routl. Appl. Lingu. Ser. Language Testing and Validation: An Evidence-based Approach = Res Pract Appl Lingu Language Testing and Validation: An Evidence-based Approach = Res. Pract. Appl. Lingu. Language Testing = Lang Test Language Testing = Lang. Test. Language Usage and Language Structure = Trends Linguist-stud Language Usage and Language Structure = Trends. Linguist-stud. Language Variation and Change = Lang Var Change Language Variation and Change = Lang. Var. Change Langue Francaise = Langue Francaise Langues orientales anciennes. Philologie et linguistique = LangOrAnc Lanman 2004: 13th Ieee Workshop On Local and Metropolitan Area Networks = Wrks Loc Metro Area Lanman 2004: 13th Ieee Workshop On Local and Metropolitan Area Networks = Wrks. Loc. Metro. Area L' Annee biologique = Annee Biol L'Annee endocrinologique = Annee Endocrinol L'année épigraphique = AE L'Année épigraphique = AnnEpigr L'année philologique = APh L'Année Philologique = APh L' Annee psychologique = Annee Psychol L'Annee sociale / Institut de Sociologie, Universite libre de Bruxelles = Annee Soc L' Annee sociologique = Annee Sociol L' Annee therapeutique = Annee Ther L'Annee therapeutique et clinique en ophtalmologie = Annee Ther Clin Ophtalmol La nouvelle Clio = NouvClio La Nouvelle presse medicale = Nouv Presse Med La Nouvelle revue des deux mondes = Nouv Rev Deux Mondes L'Antiquité classique = AC L'antiquité classique = AntCl L'Antiquite classique = Antiq Class La Nuova veterinaria = Nuova Vet La parola del passato = Parola Passato La parola del passato = PP La Parola del passato: rivista di studi antichi = PP Laparoscopic Hernia Repair: A New Standard? = Prog Surg Laparoscopic Hernia Repair: A New Standard? = Prog. Surg. La Pathologie generale = Pathol Gen La Pediatria medica e chirurgica : Medical and surgical pediatrics = Pediatr Med Chir La Pediatria = Pediatria (Napoli) La Pensee et les hommes = Pensee Hommes La Pensee = Pensee La Pharmacie industrielle = Pharm Ind La Pie = Pie Laplacian Eigenvectors of Graphs = Lect Notes Math Laplacian Eigenvectors of Graphs = Lect. Notes. Math. La Prensa medica mexicana = Prensa Med Mex La Presse medicale = Presse Med La Presse thermale et climatique = Presse Therm Clim La Promotion dentaire = Promot Dent La Prophylaxie antivenerienne = Prophyl Antivenerienne La Prophylaxie sanitaire et morale = Prophyl Sanit Morale La Provence medicale = Prov Med La provincia di Lucca = ProvLucca La Psychiatrie de l'enfant = Psychiatr Enfant La Quintessenza = Quintessenza La Rabida 2009: International Scientific Meeting On Nuclear Physics = Aip Conf Proc La Rabida 2009: International Scientific Meeting On Nuclear Physics = Aip. Conf. Proc. La Radiologia medica = Radiol Med (Torino) La Rassegna della letteratura italiana = Rass Lett Ital La Rassegna di clinica, terapia e scienze affini = Rass Clin Ter L'archeologo subacqueo. Quadrimestrale di archeologia subacquea e navale = ASub L'Archiginnasio : bullettino della Biblioteca comunale di Bologna = Archiginnasio L' Arcispedale S. Anna di Ferrara = Arcisp S Anna Ferrara LARC medical = LARC Med LARC Medical = LARC Med. La Recherche = Recherche Laredo Lectures On Orthogonal Polynomials and Special Functions = Adv Theor Sp Funct Laredo Lectures On Orthogonal Polynomials and Special Functions = Adv. Theor. Sp. Funct. LA Reports = LA Rep. LA [reports]. U.S. Atomic Energy Commission = LA Rep La Republique Des Lettres = Rep Des Let La Republique Des Lettres = Rep. Des Let. La Revue de geographie de Montreal = Rev Geogr Montr La Revue de geriatrie = Revue Geriatr La Revue de medecine interne / fondee ... par la Societe nationale francaise de medecine interne = Rev Med Interne La Revue de medecine = Rev Med (Paris) La Revue de pediatrie = Rev Pediatr La revue des arts. Musées de France = RArtMus La Revue des infirmieres et infirmiers auxiliaires du Quebec = Rev Infirm Infirm Aux Que La Revue du Louvre et des musees de France = Rev Louvre Mus Fr La Revue du praticien = Rev Prat La Revue francaise de la prothese dentaire = Rev Fr Prothese Dent La Revue francaise d'endocrinologie clinique, nutrition, et metabolisme = Rev Fr Endocrinol Clin La Revue lyonnaise de medecine = Rev Lyon Med La Revue medicale de Picardie = Rev Med Picardie La Revue stomato-odontologique du nord de la France = Rev Stomatoodontol Nord Fr Large Animal Practice = Large Anim Pract Large Animal Practice = Large Anim. Pract. Large Animal Review = Large Anim Rev Large Animal Review = Large Anim. Rev. Large Area Vegetation Survey = Colloq Phytosiol Large Area Vegetation Survey = Colloq. Phytosiol. Large Bowel Cancer : Policy, Prevention, Research and Treatment = Front Gastr Res Large Bowel Cancer : Policy, Prevention, Research and Treatment = Front. Gastr. Res. Large Clusters of Atoms and Molecules = Nato Adv Sci Inst Se Large Clusters of Atoms and Molecules = Nato. Adv. Sci. Inst. Se. Large Coulomb Systems = Lect Notes Phys Large Coulomb Systems = Lect. Notes. Phys. Large Ecosystem Perturbations: Causes and Consequences = Geol S Am S Large Ecosystem Perturbations: Causes and Consequences = Geol. S. Am. S. Large Ground-based Telescopes, Pts 1 and 2 = Proc Spie Large Ground-based Telescopes, Pts 1 and 2 = Proc. Spie. Large Ground-based Telescopes, Pts 1 and 2 = P Soc Photo-opt Ins Large Ground-based Telescopes, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Large Hadron Collider Workshop, Vol 2 = Cern Report Large Hadron Collider Workshop, Vol 2 = Cern. Report. Large Hadron Collider Workshop, Vol 3 = Cern Report Large Hadron Collider Workshop, Vol 3 = Cern. Report. Large Lakes = Brock Spr S Large Lakes = Brock. Spr. S. Large Lenses and Prism = P Soc Photo-opt Ins Large Lenses and Prism = P. Soc. Photo-opt. Ins. Large Marine Ecosystems of The North Atlantic: Changing States and Sustainability = Lar Mar Ecosyst Large Marine Ecosystems of The North Atlantic: Changing States and Sustainability = Lar. Mar. Ecosyst. Large Marine Ecosystems (series) = Lar Mar Ecosyst Large Marine Ecosystems (series) = Lar. Mar. Ecosyst. Large Meteorite Impacts and Planetary Evolution Ii = Geol S Am S Large Meteorite Impacts and Planetary Evolution Ii = Geol. S. Am. S. Large Meteorite Impacts and Planetary Evolution Ii = Geol Soc Am Spec Pap Large Meteorite Impacts and Planetary Evolution Ii = Geol. Soc. Am. Spec. Pap. Large Meteorite Impacts and Planetary Evolution Iv = Geol Soc Am Spec Pap Large Meteorite Impacts and Planetary Evolution Iv = Geol. Soc. Am. Spec. Pap. Large Meteorite Impacts Iii = Geol Soc Am Spec Pap Large Meteorite Impacts Iii = Geol. Soc. Am. Spec. Pap. Large Optics Ii = P Soc Photo-opt Ins Large Optics Ii = P. Soc. Photo-opt. Ins. Large Random Matrices: Lectures On Macroscopic Asymptotics = Lect Notes Math Large Random Matrices: Lectures On Macroscopic Asymptotics = Lect. Notes. Math. Large-sale Scientific Computing = Lect Notes Comput Sc Large-sale Scientific Computing = Lect. Notes. Comput. Sc. Large Sample Techniques for Statistics = Springer Texts Stat Large Sample Techniques for Statistics = Springer. Texts. Stat. Large Scale Computations, Embedded Systems and Computer Security = Comput Sci Tech Appl Large Scale Computations, Embedded Systems and Computer Security = Comput. Sci. Tech. Appl. Large Scale Computations in Air Pollution Modelling = Nato Asi 2 Large Scale Computations in Air Pollution Modelling = Nato. Asi. 2. Large-scale Constructions in Coastal Environments = Environm Sci Large-scale Constructions in Coastal Environments = Environm. Sci. Large-scale Constructions in Coastal Environments = Environ Sci-ger Large-scale Constructions in Coastal Environments = Environ. Sci-ger. Large-scale Knowledge Resources = Lect Notes Artif Int Large-scale Knowledge Resources = Lect. Notes. Artif. Int. Large Scale Management of Distributed Systems, Proceedings = Lect Notes Comput Sc Large Scale Management of Distributed Systems, Proceedings = Lect. Notes. Comput. Sc. Large-scale Molecular Systems = Nato Adv Sci I B-phy Large-scale Molecular Systems = Nato. Adv. Sci. I. B-phy. Large-scale Motions in The Universe : A Vatican Study Week = Pr S Phys Large-scale Motions in The Universe : A Vatican Study Week = Pr. S. Phys. Large-scale Nonlinear Optimization = Noncon Optim Its App Large-scale Nonlinear Optimization = Noncon. Optim. Its. App. Large-scale Nonlinear Optimization = Nonconvex Optim Large-scale Nonlinear Optimization = Nonconvex. Optim. Large-scale Numerical Optimization = Siam Proc S Large-scale Numerical Optimization = Siam. Proc. S. Large-scale Optimization With Applications, Pt 3: Molecular Structure and Optimization = Ima V Math Large-scale Optimization With Applications, Pt 3: Molecular Structure and Optimization = Ima. V. Math. Large-scale Optimization With Applications, Pt I: Optimization in Inverse Problems and Design = Ima V Math Large-scale Optimization With Applications, Pt I: Optimization in Inverse Problems and Design = Ima. V. Math. Large-scale Organizational Change = Jos-bas Man Large-scale Organizational Change = Jos-bas. Man. Large-scale Parallel Data Mining = Lect Notes Artif Int Large-scale Parallel Data Mining = Lect. Notes. Artif. Int. Large-scale Pde-constrained Optimization in Applications = Lect Notes Appl Comp Large-scale Pde-constrained Optimization in Applications = Lect. Notes. Appl. Comp. Large-scale Pde-constrained Optimization = Lect Notes Comp Sci Large-scale Pde-constrained Optimization = Lect. Notes. Comp. Sci. Large-scale Scientific Computing = Lect Notes Comput Sc Large-scale Scientific Computing = Lect. Notes. Comput. Sc. Large Scale Simulations of Complex Systems, Condensed Matter and Fusion Plasma = Aip Conf Proc Large Scale Simulations of Complex Systems, Condensed Matter and Fusion Plasma = Aip. Conf. Proc. Large-scale Structural Testing = Amer Conc I Large-scale Structural Testing = Amer. Conc. I. Large-scale Structures and Their Role in Solar Activity = Astr Soc P Large-scale Structures and Their Role in Solar Activity = Astr. Soc. P. Large Scale Systems in Information and Decision Technologies = Large Scale Syst Large Scale Systems in Information and Decision Technologies = Large Scale Syst. Large Scale Systems: Theory and Applications 1992 = Ifac Symp Series Large Scale Systems: Theory and Applications 1992 = Ifac. Symp. Series. Large Scale Systems: Theory and Applications 2001 (lss'01) = Ifac Symp Series Large Scale Systems: Theory and Applications 2001 (lss'01) = Ifac. Symp. Series. Large-screen-projection, Avionic, and Helmet-mounted Displays = P Soc Photo-opt Ins Large-screen-projection, Avionic, and Helmet-mounted Displays = P. Soc. Photo-opt. Ins. Large-screen Projection Displays Ii = P Soc Photo-opt Ins Large-screen Projection Displays Ii = P. Soc. Photo-opt. Ins. Large Spectrum of Free Oscillations of The World Ocean Including The Full Ocean Loading and Self-attraction Effects = Hamb Stud Marit Aff Large Spectrum of Free Oscillations of The World Ocean Including The Full Ocean Loading and Self-attraction Effects = Hamb. Stud. Marit. Aff. Large Time Asymptotics for Solutions of Nonlinear Partial Differential Equations = Springer Monogr Math Large Time Asymptotics for Solutions of Nonlinear Partial Differential Equations = Springer. Monogr. Math. Large-wavelength Deformations of The Lithosphere: Materials for A History of The Evolution of Thought From The Earliest Times to Plate Tectonics = Geol Soc Am Mem Large-wavelength Deformations of The Lithosphere: Materials for A History of The Evolution of Thought From The Earliest Times to Plate Tectonics = Geol. Soc. Am. Mem. La Ricerca in clinica e in laboratorio = Ric Clin Lab La Ricerca scientifica. 2. ser., pt.1: Rivista = Ric Sci 2 Ser Pt 1 Riv La Ricerca scientifica. 2. ser., pt. 2: Rendiconti. Sezione B: Biologica = Ric Sci 2 Ser Pt 2 Rend [B] La Ricerca scientifica = Ric Sci La Riforma medica = Riforma Med La Rivista del Nuovo Cimento della Società Italiana di Fisica = Riv. Nuovo Cimento Soc. Ital. Fis. (4) La Rivista del Nuovo Cimento = Riv. Nuovo Cimento (3) Larval Biology = Bur Rur R P Larval Biology = Bur. Rur. R. P. Laryngeal Cancer = Int Congr Ser Laryngeal Cancer = Int. Congr. Ser. Laryngeal Diseases: Symptoms, Diagnosis and Treatment = Otolaryngol Res Adv Laryngeal Diseases: Symptoms, Diagnosis and Treatment = Otolaryngol. Res. Adv. Laryngologie, Rhinologie, Otologie = Laryngol Rhinol Otol (Stuttg) Laryngologie, Rhinologie, Otologie = Laryngol. Rhinol. Otol. (Stuttg.) Laryngologie Rhinologie Otologie Vereinigt Mit Monatsschrift Fur Ohrenheilkunde = Laryngo Rhino Otol Laryngologie Rhinologie Otologie Vereinigt Mit Monatsschrift Fur Ohrenheilkunde = Laryngo. Rhino. Otol. Laryngologie Rhinologie Otologie Vereinigt Mit Monatsschrift Fur Ohrenheilkunde = Laryng Rhinol Otol V Laryngologie Rhinologie Otologie Vereinigt Mit Monatsschrift Fur Ohrenheilkunde = Laryng. Rhinol. Otol. V. Laryngo-rhino-otologie = Laryngo Rhino Otol Laryngo-rhino-otologie = Laryngo. Rhino. Otol. Laryngo- rhino- otologie = Laryngorhinootologie Laryngo- Rhino- Otologie=Laryngorhinootologie;; Laryngo- Rhino- Otologie = Laryngorhinootologie. Laryngoscope=Laryngoscope;; Laryngoscope = Laryngoscope La Sante A Coeur Ouvert: Socioogie Du Bien-etre, De La Maladie, Et Du Soin = Socio-logiques La Sante A Coeur Ouvert: Socioogie Du Bien-etre, De La Maladie, Et Du Soin = Socio-logiques. La Sante publique = Sante Publique (Bucur) La Semaine des hopitaux de Paris = Sem Hop Paris La semaine des hopitaux : organe fonde par l'Association d'enseignement medical des hopitaux de Paris = Sem Hop La Semaine des hopitaux: therapeutique = Sem Hop Ther Paris La Semaine medicale [medecine sociale. Edition: couverture jaune] = Sem Medicale Med Soc La Semana medica = Sem Med Laser Ablation for Materials Synthesis = Mater Res Soc Symp P Laser Ablation for Materials Synthesis = Mater. Res. Soc. Symp. P. Laser Ablation in Materials Processing : Fundamentals and Applications = Mater Res Soc Symp P Laser Ablation in Materials Processing : Fundamentals and Applications = Mater. Res. Soc. Symp. P. Laser Ablation: Mechanisms and Applications-ii = Aip Conf Proc Laser Ablation: Mechanisms and Applications-ii = Aip. Conf. Proc. Laser Ablation of Electronic Materials = E Mrs Mongr Laser Ablation of Electronic Materials = E. Mrs. Mongr. Laser Acceleration of Electrons, Protons, and Ions and Medical Applications of Laser-generated Secondary Sources of Radiation and Particles = Proc Spie Laser Acceleration of Electrons, Protons, and Ions and Medical Applications of Laser-generated Secondary Sources of Radiation and Particles = Proc. Spie. Laser Acceleration of Electrons, Protons, and Ions and Medical Applications of Laser-generated Secondary Sources of Radiation and Particles = P Soc Photo-opt Ins Laser Acceleration of Electrons, Protons, and Ions and Medical Applications of Laser-generated Secondary Sources of Radiation and Particles = P. Soc. Photo-opt. Ins. Laser and Beam Control Technologies = P Soc Photo-opt Ins Laser and Beam Control Technologies = P. Soc. Photo-opt. Ins. Laser and Nonchoherent Light Ocular Effects: Epidemiology, Prevention, and Treatment = P Soc Photo-opt Ins Laser and Nonchoherent Light Ocular Effects: Epidemiology, Prevention, and Treatment = P. Soc. Photo-opt. Ins. Laser and Noncoherent Light Ocular Effects: Epidemiology, Prevention, and Treatment Iii = P Soc Photo-opt Ins Laser and Noncoherent Light Ocular Effects: Epidemiology, Prevention, and Treatment Iii = P. Soc. Photo-opt. Ins. Laser and Noncoherent Ocular Effects: Epidemiology, Prevention, and Treatment, Proceedings Of = P Soc Photo-opt Ins Laser and Noncoherent Ocular Effects: Epidemiology, Prevention, and Treatment, Proceedings Of = P. Soc. Photo-opt. Ins. Laser- and Particle-beam Chemical Processes On Surfaces = Mat Res S C Laser- and Particle-beam Chemical Processes On Surfaces = Mat. Res. S. C. Laser and Particle Beams = Laser Part Beams Laser and Particle Beams = Laser Part. Beams Laser and Photonics Reviews = Laser Photonic Rev. Laser and Plasma Applications in Materials Science = Adv Mater Res-switz Laser and Plasma Applications in Materials Science = Adv. Mater. Res-switz. Laser and Plasma Applications in Materials Science = Aip Conf Proc Laser and Plasma Applications in Materials Science = Aip. Conf. Proc. Laser Anemometry : Advances and Applications = P Soc Photo-opt Ins Laser Anemometry : Advances and Applications = P. Soc. Photo-opt. Ins. Laser Applications Engineering (lae-96) = P Soc Photo-opt Ins Laser Applications Engineering (lae-96) = P. Soc. Photo-opt. Ins. Laser Applications for Mechanical Industry = Nato Adv Sci I E-app Laser Applications for Mechanical Industry = Nato. Adv. Sci. I. E-app. Laser Applications for Mechanical Industry = Nato Adv Sci Inst Se Laser Applications for Mechanical Industry = Nato. Adv. Sci. Inst. Se. Laser Applications in Combustion and Combustion Diagnostics Ii = P Soc Photo-opt Ins Laser Applications in Combustion and Combustion Diagnostics Ii = P. Soc. Photo-opt. Ins. Laser Applications in Combustion and Combustion Diagnostics = P Soc Photo-opt Ins Laser Applications in Combustion and Combustion Diagnostics = P. Soc. Photo-opt. Ins. Laser Applications in Life Sciences, Parts 1 and 2 = P Soc Photo-opt Ins Laser Applications in Life Sciences, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Laser Applications in Life Sciences = P Soc Photo-opt Ins Laser Applications in Life Sciences = P. Soc. Photo-opt. Ins. Laser Applications in Medicine and Dentistry, Proceedings Of = P Soc Photo-opt Ins Laser Applications in Medicine and Dentistry, Proceedings Of = P. Soc. Photo-opt. Ins. Laser Applications in Medicine, Biology and Environmental Science = P Soc Photo-opt Ins Laser Applications in Medicine, Biology and Environmental Science = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Iii = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Iii = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Ii = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Ii = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Iv = Proc Spie Laser Applications in Microelectronic and Optoelectronic Manufacturing Iv = Proc. Spie. Laser Applications in Microelectronic and Optoelectronic Manufacturing Iv = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Iv = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Vii = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Vii = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Vi = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Vi = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing V = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing V = P. Soc. Photo-opt. Ins. Laser Applications in Microelectronic and Optoelectronic Manufacturing Xv = P Soc Photo-opt Ins Laser Applications in Microelectronic and Optoelectronic Manufacturing Xv = P. Soc. Photo-opt. Ins. Laser Applications = P Soc Photo-opt Ins Laser Applications = P. Soc. Photo-opt. Ins. Laser-assisted Fabrication of Thin Films and Microstructures = P Soc Photo-opt Ins Laser-assisted Fabrication of Thin Films and Microstructures = P. Soc. Photo-opt. Ins. Laser-assisted Micro- and Nanotechnologies 2003 = P Soc Photo-opt Ins Laser-assisted Micro- and Nanotechnologies 2003 = P. Soc. Photo-opt. Ins. Laser-assisted Microtechnology 2000 = Proc Spie Laser-assisted Microtechnology 2000 = Proc. Spie. Laser-assisted Microtechnology 2000 = P Soc Photo-opt Ins Laser-assisted Microtechnology 2000 = P. Soc. Photo-opt. Ins. Laser Assisted Net Shape Engineering 6, Proceedings of The Lane 2010, Part 1 = Physcs Proc Laser Assisted Net Shape Engineering 6, Proceedings of The Lane 2010, Part 1 = Physcs. Proc. Laser Assisted Net Shape Engineering 6, Proceedings of The Lane 2010, Part 2 = Physcs Proc Laser Assisted Net Shape Engineering 6, Proceedings of The Lane 2010, Part 2 = Physcs. Proc. Laser-assisted Processing Ii = P Soc Photo-opt Ins Laser-assisted Processing Ii = P. Soc. Photo-opt. Ins. Laser-based Micro- and Nanopackaging and Assembly Iii = P Soc Photo-opt Ins Laser-based Micro- and Nanopackaging and Assembly Iii = P. Soc. Photo-opt. Ins. Laser-based Micro- and Nanopackaging and Assembly Ii = Proc Spie Laser-based Micro- and Nanopackaging and Assembly Ii = Proc. Spie. Laser-based Micro- and Nanopackaging and Assembly Iv = P Soc Photo-opt Ins Laser-based Micro- and Nanopackaging and Assembly Iv = P. Soc. Photo-opt. Ins. Laser-based Micro- and Nanopackaging and Assembly = P Soc Photo-opt Ins Laser-based Micro- and Nanopackaging and Assembly = P. Soc. Photo-opt. Ins. Laser-based Micropackaging = P Soc Photo-opt Ins Laser-based Micropackaging = P. Soc. Photo-opt. Ins. Laser Beam Control and Applications = Proc Spie Laser Beam Control and Applications = Proc. Spie. Laser Beam Control and Applications = P Soc Photo-opt Ins Laser Beam Control and Applications = P. Soc. Photo-opt. Ins. Laser Beam Diagnostics = P Soc Photo-opt Ins Laser Beam Diagnostics = P. Soc. Photo-opt. Ins. Laser Beam Propagation and Control = P Soc Photo-opt Ins Laser Beam Propagation and Control = P. Soc. Photo-opt. Ins. Laser Beam Shaping Iii = P Soc Photo-opt Ins Laser Beam Shaping Iii = P. Soc. Photo-opt. Ins. Laser Beam Shaping Ii = Proc Spie Laser Beam Shaping Ii = Proc. Spie. Laser Beam Shaping Ii = P Soc Photo-opt Ins Laser Beam Shaping Ii = P. Soc. Photo-opt. Ins. Laser Beam Shaping Iv = Proc Spie Laser Beam Shaping Iv = Proc. Spie. Laser Beam Shaping Iv = P Soc Photo-opt Ins Laser Beam Shaping Iv = P. Soc. Photo-opt. Ins. Laser Beam Shaping Ix = P Soc Photo-opt Ins Laser Beam Shaping Ix = P. Soc. Photo-opt. Ins. Laser Beam Shaping = P Soc Photo-opt Ins Laser Beam Shaping = P. Soc. Photo-opt. Ins. Laser Beam Shaping Viii = Proc Spie Laser Beam Shaping Viii = Proc. Spie. Laser Beam Shaping Viii = P Soc Photo-opt Ins Laser Beam Shaping Viii = P. Soc. Photo-opt. Ins. Laser Beam Shaping Vii = Proc Spie Laser Beam Shaping Vii = Proc. Spie. Laser Beam Shaping Vii = P Soc Photo-opt Ins Laser Beam Shaping Vii = P. Soc. Photo-opt. Ins. Laser Beam Shaping V = Proc Spie Laser Beam Shaping V = Proc. Spie. Laser Beam Shaping V = P Soc Photo-opt Ins Laser Beam Shaping V = P. Soc. Photo-opt. Ins. Laser Beam Shaping Xi = Proc Spie Laser Beam Shaping Xi = Proc. Spie. Laser Beam Shaping Xi = P Soc Photo-opt Ins Laser Beam Shaping Xi = P. Soc. Photo-opt. Ins. Laser Capture Microdissection: Methods and Protocols, Second Edition = Methods Mol Biol Laser Capture Microdissection: Methods and Protocols, Second Edition = Methods Mol. Biol. Laser Capture Microscopy and Microdissection = Method Enzymol Laser Capture Microscopy and Microdissection = Method. Enzymol. Laser Chemistry, Biophysics, and Biomedicine = P Soc Photo-opt Ins Laser Chemistry, Biophysics, and Biomedicine = P. Soc. Photo-opt. Ins. Laser Chemistry = Laser Chem Laser Chemistry = Laser Chem. Laser Chemistry of Organometallics = Acs Sym Ser Laser Chemistry of Organometallics = Acs. Sym. Ser. Laser Coherence Control : Technology and Applications = P Soc Photo-opt Ins Laser Coherence Control : Technology and Applications = P. Soc. Photo-opt. Ins. Laser Control and Manipulation of Molecules = Acs Sym Ser Laser Control and Manipulation of Molecules = Acs. Sym. Ser. Laser Cooling of Solids = P Soc Photo-opt Ins Laser Cooling of Solids = P. Soc. Photo-opt. Ins. Laser Cooling of Solids (wh) = Woodhead Publ Mater Laser Cooling of Solids (wh) = Woodhead. Publ. Mater. Laser Crystallization of Silicon = Semiconduct Semimet Laser Crystallization of Silicon = Semiconduct. Semimet. Laser Crystals, Glasses, and Nonlinear Materials Growth and Characterization = Proc Spie Laser Crystals, Glasses, and Nonlinear Materials Growth and Characterization = Proc. Spie. Laser Crystals, Glasses, and Nonlinear Materials Growth and Characterization = P Soc Photo-opt Ins Laser Crystals, Glasses, and Nonlinear Materials Growth and Characterization = P. Soc. Photo-opt. Ins. Laser Dimensional Metrology: Recent Advances for Industrial Application = P Soc Photo-opt Ins Laser Dimensional Metrology: Recent Advances for Industrial Application = P. Soc. Photo-opt. Ins. Laser Diode and Led Applications Iii = P Soc Photo-opt Ins Laser Diode and Led Applications Iii = P. Soc. Photo-opt. Ins. Laser Diode Chip and Packaging Technology = P Soc Photo-opt Ins Laser Diode Chip and Packaging Technology = P. Soc. Photo-opt. Ins. Laser Diodes and Applications Iii = P Soc Photo-opt Ins Laser Diodes and Applications Iii = P. Soc. Photo-opt. Ins. Laser Diodes and Applications Ii = P Soc Photo-opt Ins Laser Diodes and Applications Ii = P. Soc. Photo-opt. Ins. Laser Diodes and Applications = P Soc Photo-opt Ins Laser Diodes and Applications = P. Soc. Photo-opt. Ins. Laser Diodes and Leds in Industrial, Measurement, Imaging, and Sensors Applications Ii; Testing, Packaging and Reliability of Semiconductor Lasers V = P Soc Photo-opt Ins Laser Diodes and Leds in Industrial, Measurement, Imaging, and Sensors Applications Ii; Testing, Packaging and Reliability of Semiconductor Lasers V = P. Soc. Photo-opt. Ins. Laser Diodes, Optoelectronic Devices, and Heterogenous Integration = Proc Spie Laser Diodes, Optoelectronic Devices, and Heterogenous Integration = Proc. Spie. Laser Diodes, Optoelectronic Devices, and Heterogenous Integration = P Soc Photo-opt Ins Laser Diodes, Optoelectronic Devices, and Heterogenous Integration = P. Soc. Photo-opt. Ins. Laser Diode Technology and Applications Iii = P Soc Photo-opt Ins Laser Diode Technology and Applications Iii = P. Soc. Photo-opt. Ins. Laser-diode Technology and Applications Ii = P Soc Photo-opt Ins Laser-diode Technology and Applications Ii = P. Soc. Photo-opt. Ins. Laser Diode Technology and Applications Iv = P Soc Photo-opt Ins Laser Diode Technology and Applications Iv = P. Soc. Photo-opt. Ins. Laser Diode Technology and Applications Vi = P Soc Photo-opt Ins Laser Diode Technology and Applications Vi = P. Soc. Photo-opt. Ins. Laser Diode Technology and Applications V = P Soc Photo-opt Ins Laser Diode Technology and Applications V = P. Soc. Photo-opt. Ins. Laser Driven Relativistic Plasmas Applied for Science, Industry, and Medicine = Aip Conf Proc Laser Driven Relativistic Plasmas Applied for Science, Industry, and Medicine = Aip. Conf. Proc. Laser-driven Relativistic Plasmas Applied to Science, Industry and Medicine = Aip Conf Proc Laser-driven Relativistic Plasmas Applied to Science, Industry and Medicine = Aip. Conf. Proc. Laser Energy Distribution Profiles : Measurement and Applications = P Soc Photo-opt Ins Laser Energy Distribution Profiles : Measurement and Applications = P. Soc. Photo-opt. Ins. Laser Florence 2000: A Window On The Laser Medicine World = P Soc Photo-opt Ins Laser Florence 2000: A Window On The Laser Medicine World = P. Soc. Photo-opt. Ins. Laser Florence 2001: A Window On The Laser Medicine World = Proc Spie Laser Florence 2001: A Window On The Laser Medicine World = Proc. Spie. Laser Florence 2001: A Window On The Laser Medicine World = P Soc Photo-opt Ins Laser Florence 2001: A Window On The Laser Medicine World = P. Soc. Photo-opt. Ins. Laser Florence 2003: A Window On The Laser Medicine World = Proc Spie Laser Florence 2003: A Window On The Laser Medicine World = Proc. Spie. Laser Florence 2003: A Window On The Laser Medicine World = P Soc Photo-opt Ins Laser Florence 2003: A Window On The Laser Medicine World = P. Soc. Photo-opt. Ins. Laser Florence 2008 = Aip Conf Proc Laser Florence 2008 = Aip. Conf. Proc. Laser Florence 2009: A Gallery Through The Laser Medicine World = Aip Conf Proc Laser Florence 2009: A Gallery Through The Laser Medicine World = Aip. Conf. Proc. Laser Florence '99: A Window On The Laser Medicine World = P Soc Photo-opt Ins Laser Florence '99: A Window On The Laser Medicine World = P. Soc. Photo-opt. Ins. Laser Focus-electro-optics = Laser Focus World Laser Focus-electro-optics = Laser Focus. World. Laser Focus-electro-optics = Las Focus-electro-op Laser Focus-electro-optics = Las. Focus-electro-op. Laser Focus With Fiberoptic Technology = Laser Focus World Laser Focus With Fiberoptic Technology = Laser Focus World. Laser Focus World = Laser Focus World Laser Frequency Stabilization and Noise Reduction = P Soc Photo-opt Ins Laser Frequency Stabilization and Noise Reduction = P. Soc. Photo-opt. Ins. Laser Frequency Stabilization, Standards, Measurement and Applications = Proc Spie Laser Frequency Stabilization, Standards, Measurement and Applications = Proc. Spie. Laser Frequency Stabilization, Standards, Measurement and Applications = P Soc Photo-opt Ins Laser Frequency Stabilization, Standards, Measurement and Applications = P. Soc. Photo-opt. Ins. Laser-generated and Other Laboratory X-ray and Euv Sources, Optics, and Applications = P Soc Photo-opt Ins Laser-generated and Other Laboratory X-ray and Euv Sources, Optics, and Applications = P. Soc. Photo-opt. Ins. Laser Heterodyning = Springer Ser Opt Sci Laser Heterodyning = Springer. Ser. Opt. Sci. Laser-induced Damage in Optical Materials : 1990 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials : 1990 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials : 1991 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials : 1991 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials : 1992 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials : 1992 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1993 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1993 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1994 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1994 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1995 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1995 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1996 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1996 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1997, Proceedings = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1997, Proceedings = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1998 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1998 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 1999 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 1999 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2000, Proceedings = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2000, Proceedings = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2001 Proceedings = Proc Spie Laser-induced Damage in Optical Materials: 2001 Proceedings = Proc. Spie. Laser-induced Damage in Optical Materials: 2001 Proceedings = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2001 Proceedings = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2002 and 7th International Workshop On Laser Beam and Optics Characterization = Proc Spie Laser-induced Damage in Optical Materials: 2002 and 7th International Workshop On Laser Beam and Optics Characterization = Proc. Spie. Laser-induced Damage in Optical Materials: 2002 and 7th International Workshop On Laser Beam and Optics Characterization = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2002 and 7th International Workshop On Laser Beam and Optics Characterization = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2003 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2003 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2004 = Proc Spie Laser-induced Damage in Optical Materials: 2004 = Proc. Spie. Laser-induced Damage in Optical Materials: 2004 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2004 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2005 = Proc Spie Laser-induced Damage in Optical Materials: 2005 = Proc. Spie. Laser-induced Damage in Optical Materials: 2005 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2005 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2006 = Proc Spie Laser-induced Damage in Optical Materials: 2006 = Proc. Spie. Laser-induced Damage in Optical Materials: 2006 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2006 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2007 = Proc Spie Laser-induced Damage in Optical Materials: 2007 = Proc. Spie. Laser-induced Damage in Optical Materials: 2007 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2007 = P. Soc. Photo-opt. Ins. Laser-induced Damage in Optical Materials: 2010 = P Soc Photo-opt Ins Laser-induced Damage in Optical Materials: 2010 = P. Soc. Photo-opt. Ins. Laser-induced Thin Film Processing = P Soc Photo-opt Ins Laser-induced Thin Film Processing = P. Soc. Photo-opt. Ins. Laser-inflicted Eye Injuries: Epidemiology, Prevention, and Treatment, Proceedings Of = P Soc Photo-opt Ins Laser-inflicted Eye Injuries: Epidemiology, Prevention, and Treatment, Proceedings Of = P. Soc. Photo-opt. Ins. Laser in Production = Vdi Bericht Laser in Production = Vdi. Bericht. Laser Institute of America - Proceedings = Lia P Laser Institute of America - Proceedings = Lia. P. Laser Interaction and Related Plasma Phenomena - 13th International Conference = Aip Conf Proc Laser Interaction and Related Plasma Phenomena - 13th International Conference = Aip. Conf. Proc. Laser Interaction and Related Plasma Phenomena = Aip Conf Proc Laser Interaction and Related Plasma Phenomena = Aip. Conf. Proc. Laser Interaction and Related Plasma Phenomena = Laser Inter Laser Interaction and Related Plasma Phenomena = Laser Inter. Laser Interaction and Related Plasma Phenomena, Vol 10 = Laser Inter Laser Interaction and Related Plasma Phenomena, Vol 10 = Laser Inter. Laser Interaction and Related Plasma Phenomena, Vol 9 = Laser Inter Laser Interaction and Related Plasma Phenomena, Vol 9 = Laser Inter. Laser Interactions With Atoms, Solids, and Plasmas = Nato Adv Sci Inst Se Laser Interactions With Atoms, Solids, and Plasmas = Nato. Adv. Sci. Inst. Se. Laser Interaction With Hard and Soft Tissue Ii, Proceedings Of = P Soc Photo-opt Ins Laser Interaction With Hard and Soft Tissue Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Laser Interaction With Matter = Inst Phys Conf Ser Laser Interaction With Matter = Inst. Phys. Conf. Ser. Laser Interaction With Matter = P Soc Photo-opt Ins Laser Interaction With Matter = P. Soc. Photo-opt. Ins. Laser Interaction With Tissue and Cells Xv = P Soc Photo-opt Ins Laser Interaction With Tissue and Cells Xv = P. Soc. Photo-opt. Ins. Laser Interferometer Space Antenna = Aip Conf Proc Laser Interferometer Space Antenna = Aip. Conf. Proc. Laser Interferometry Ix: Applications = P Soc Photo-opt Ins Laser Interferometry Ix: Applications = P. Soc. Photo-opt. Ins. Laser Interferometry Ix: Techniques and Analysis = Proc Spie Laser Interferometry Ix: Techniques and Analysis = Proc. Spie. Laser Interferometry Ix: Techniques and Analysis = P Soc Photo-opt Ins Laser Interferometry Ix: Techniques and Analysis = P. Soc. Photo-opt. Ins. Laser Interferometry : Quantitative Analysis of Interferograms = P Soc Photo-opt Ins Laser Interferometry : Quantitative Analysis of Interferograms = P. Soc. Photo-opt. Ins. Laser Interferometry Viii: Applications = P Soc Photo-opt Ins Laser Interferometry Viii: Applications = P. Soc. Photo-opt. Ins. Laser Interferometry Viii: Techniques and Analysis = P Soc Photo-opt Ins Laser Interferometry Viii: Techniques and Analysis = P. Soc. Photo-opt. Ins. Laser Interferometry X: Techniques and Analysis and Applications, Pts A and B = Proc Spie Laser Interferometry X: Techniques and Analysis and Applications, Pts A and B = Proc. Spie. Laser Interferometry X: Techniques and Analysis and Applications, Pts A and B = P Soc Photo-opt Ins Laser Interferometry X: Techniques and Analysis and Applications, Pts A and B = P. Soc. Photo-opt. Ins. Laser Interometry Iv : Computer-aided Interferometry = P Soc Photo-opt Ins Laser Interometry Iv : Computer-aided Interferometry = P. Soc. Photo-opt. Ins. Laser Isotope Separation = P Soc Photo-opt Ins Laser Isotope Separation = P. Soc. Photo-opt. Ins. Laser Manipulation of Cells and Tissues = Method Cell Biol Laser Manipulation of Cells and Tissues = Method. Cell. Biol. Laser Marketplace 1992 = P Soc Photo-opt Ins Laser Marketplace 1992 = P. Soc. Photo-opt. Ins. Laser Marketplace in 1991 = P Soc Photo-opt Ins Laser Marketplace in 1991 = P. Soc. Photo-opt. Ins. Laser Material Crystal Growth and Nonlinear Materials and Devices = P Soc Photo-opt Ins Laser Material Crystal Growth and Nonlinear Materials and Devices = P. Soc. Photo-opt. Ins. Laser Materials Processing and Machining = P Soc Photo-opt Ins Laser Materials Processing and Machining = P. Soc. Photo-opt. Ins. Laser Materials Processing - Icaleo 94 = P Soc Photo-opt Ins Laser Materials Processing - Icaleo 94 = P. Soc. Photo-opt. Ins. Laser Materials Processing: Industrial and Microelectronics Applications = P Soc Photo-opt Ins Laser Materials Processing: Industrial and Microelectronics Applications = P. Soc. Photo-opt. Ins. Laser Methods of Surface Treatment and Modification, Alt 94 International Conference = P Soc Photo-opt Ins Laser Methods of Surface Treatment and Modification, Alt 94 International Conference = P. Soc. Photo-opt. Ins. Laser Metrology and Inspection = P Soc Photo-opt Ins Laser Metrology and Inspection = P. Soc. Photo-opt. Ins. Laser Metrology for Precision Measurement and Inspection in Industry = Proc Spie Laser Metrology for Precision Measurement and Inspection in Industry = Proc. Spie. Laser Metrology for Precision Measurement and Inspection in Industry = P Soc Photo-opt Ins Laser Metrology for Precision Measurement and Inspection in Industry = P. Soc. Photo-opt. Ins. Laser Micromachining for Optoelectronic Device Fabrication = P Soc Photo-opt Ins Laser Micromachining for Optoelectronic Device Fabrication = P. Soc. Photo-opt. Ins. Laser Microscopy = P Soc Photo-opt Ins Laser Microscopy = P. Soc. Photo-opt. Ins. Laser Microtechnology and Laser and Diagnostics of Surfaces = P Soc Photo-opt Ins Laser Microtechnology and Laser and Diagnostics of Surfaces = P. Soc. Photo-opt. Ins. Laser Noise = P Soc Photo-opt Ins Laser Noise = P. Soc. Photo-opt. Ins. Laser Optics 2000: Control of Laser Beam Characteristics and Nonlinear Methods for Wavefront Control = P Soc Photo-opt Ins Laser Optics 2000: Control of Laser Beam Characteristics and Nonlinear Methods for Wavefront Control = P. Soc. Photo-opt. Ins. Laser Optics 2000: High-power Gas Lasers = P Soc Photo-opt Ins Laser Optics 2000: High-power Gas Lasers = P. Soc. Photo-opt. Ins. Laser Optics 2000: Semiconductor Lasers and Optical Communication = P Soc Photo-opt Ins Laser Optics 2000: Semiconductor Lasers and Optical Communication = P. Soc. Photo-opt. Ins. Laser Optics 2000: Solid State Lasers = P Soc Photo-opt Ins Laser Optics 2000: Solid State Lasers = P. Soc. Photo-opt. Ins. Laser Optics 2000: Ultrafast Optics and Superstrong Laser Fields = Proc Spie Laser Optics 2000: Ultrafast Optics and Superstrong Laser Fields = Proc. Spie. Laser Optics 2000: Ultrafast Optics and Superstrong Laser Fields = P Soc Photo-opt Ins Laser Optics 2000: Ultrafast Optics and Superstrong Laser Fields = P. Soc. Photo-opt. Ins. Laser Optics 2003: Diode Lasers and Telecommunication Systems = Proc Spie Laser Optics 2003: Diode Lasers and Telecommunication Systems = Proc. Spie. Laser Optics 2003: Diode Lasers and Telecommunication Systems = P Soc Photo-opt Ins Laser Optics 2003: Diode Lasers and Telecommunication Systems = P. Soc. Photo-opt. Ins. Laser Optics 2003: High-power Gas Lasers = Proc Spie Laser Optics 2003: High-power Gas Lasers = Proc. Spie. Laser Optics 2003: High-power Gas Lasers = P Soc Photo-opt Ins Laser Optics 2003: High-power Gas Lasers = P. Soc. Photo-opt. Ins. Laser Optics 2003: Solid State Lasers and Nonlinear Frequency Conversion = P Soc Photo-opt Ins Laser Optics 2003: Solid State Lasers and Nonlinear Frequency Conversion = P. Soc. Photo-opt. Ins. Laser Optics 2003: Superintense Light Fields and Ultrafast Processes = P Soc Photo-opt Ins Laser Optics 2003: Superintense Light Fields and Ultrafast Processes = P. Soc. Photo-opt. Ins. Laser Optics 2003: Wavefront Transformation and Laser Beam Control = P Soc Photo-opt Ins Laser Optics 2003: Wavefront Transformation and Laser Beam Control = P. Soc. Photo-opt. Ins. Laser Optics 2006: Diode Lasers and Telecommunication Systems = P Soc Photo-opt Ins Laser Optics 2006: Diode Lasers and Telecommunication Systems = P. Soc. Photo-opt. Ins. Laser Optics 2006: High-power Gas Lasers = Proc Spie Laser Optics 2006: High-power Gas Lasers = Proc. Spie. Laser Optics 2006: High-power Gas Lasers = P Soc Photo-opt Ins Laser Optics 2006: High-power Gas Lasers = P. Soc. Photo-opt. Ins. Laser Optics 2006: Solid State Lasers and Nonlinear Frequency Conversion = P Soc Photo-opt Ins Laser Optics 2006: Solid State Lasers and Nonlinear Frequency Conversion = P. Soc. Photo-opt. Ins. Laser Optics 2006: Superintense Light Fields and Ultrafast Processes = P Soc Photo-opt Ins Laser Optics 2006: Superintense Light Fields and Ultrafast Processes = P. Soc. Photo-opt. Ins. Laser Optics 2006: Wavefront Transformation and Laser Beam Control = P Soc Photo-opt Ins Laser Optics 2006: Wavefront Transformation and Laser Beam Control = P. Soc. Photo-opt. Ins. Laser Optics 2010 = Proc Spie Laser Optics 2010 = Proc. Spie. Laser Optics 2010 = P Soc Photo-opt Ins Laser Optics 2010 = P. Soc. Photo-opt. Ins. Laser Optics '95: Biomedical Applications of Lasers = P Soc Photo-opt Ins Laser Optics '95: Biomedical Applications of Lasers = P. Soc. Photo-opt. Ins. Laser Optics '95: Phase Conjugation and Adaptive Optics = P Soc Photo-opt Ins Laser Optics '95: Phase Conjugation and Adaptive Optics = P. Soc. Photo-opt. Ins. Laser Optics '95: Solid State Lasers = P Soc Photo-opt Ins Laser Optics '95: Solid State Lasers = P. Soc. Photo-opt. Ins. Laser & Photonics Reviews = Laser Photonics Rev Laser & Photonics Reviews = Laser Photonics Rev. Laser physics = Laser Phys Laser Physics = Laser Phys Laser Physics = Laser Phys. Laser Physics Letters = Laser Phys Lett Laser Physics Letters = Laser Phys. Lett. Laser Physics = P Soc Photo-opt Ins Laser Physics = P. Soc. Photo-opt. Ins. Laser Plasma Generation and Diagnostics = P Soc Photo-opt Ins Laser Plasma Generation and Diagnostics = P. Soc. Photo-opt. Ins. Laser Plasma Interactions 5: Inertial Confinement Fusion = Sussp Proc Laser Plasma Interactions 5: Inertial Confinement Fusion = Sussp. Proc. Laser-plasma Interactions = Scot Grad Ser Laser-plasma Interactions = Scot. Grad. Ser. Laser Power Beaming Ii = P Soc Photo-opt Ins Laser Power Beaming Ii = P. Soc. Photo-opt. Ins. Laser Power Beaming = P Soc Photo-opt Ins Laser Power Beaming = P. Soc. Photo-opt. Ins. Laser Processing of Advanced Materials and Laser Microtechnologies = P Soc Photo-opt Ins Laser Processing of Advanced Materials and Laser Microtechnologies = P. Soc. Photo-opt. Ins. Laser Processing of Materials and Industrial Applications Ii = P Soc Photo-opt Ins Laser Processing of Materials and Industrial Applications Ii = P. Soc. Photo-opt. Ins. Laser Processing of Materials and Industrial Applications = P Soc Photo-opt Ins Laser Processing of Materials and Industrial Applications = P. Soc. Photo-opt. Ins. Laser Processing of Materials: Fundamentals, Applications and Developments = Springer Ser Mater S Laser Processing of Materials: Fundamentals, Applications and Developments = Springer. Ser. Mater. S. Laser Processing: Surface Treatment and Film Deposition = Nato Adv Sci I E-app Laser Processing: Surface Treatment and Film Deposition = Nato. Adv. Sci. I. E-app. Laser Radar Iv = P Soc Photo-opt Ins Laser Radar Iv = P. Soc. Photo-opt. Ins. Laser Radar: Ranging and Atmospheric Lidar Techniques Iii = P Soc Photo-opt Ins Laser Radar: Ranging and Atmospheric Lidar Techniques Iii = P. Soc. Photo-opt. Ins. Laser Radar Ranging and Atmospheric Lidar Techniques Ii = P Soc Photo-opt Ins Laser Radar Ranging and Atmospheric Lidar Techniques Ii = P. Soc. Photo-opt. Ins. Laser Radar Ranging and Atmospheric Lidar Techniques = P Soc Photo-opt Ins Laser Radar Ranging and Atmospheric Lidar Techniques = P. Soc. Photo-opt. Ins. Laser Radar Techniques for Atmospheric Sensing = Bba Lib Laser Radar Techniques for Atmospheric Sensing = Bba. Lib. Laser Radar Technology and Applications Iii = P Soc Photo-opt Ins Laser Radar Technology and Applications Iii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Ii = P Soc Photo-opt Ins Laser Radar Technology and Applications Ii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Iv = P Soc Photo-opt Ins Laser Radar Technology and Applications Iv = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Ix = Proc Spie Laser Radar Technology and Applications Ix = Proc. Spie. Laser Radar Technology and Applications Ix = P Soc Photo-opt Ins Laser Radar Technology and Applications Ix = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications = P Soc Photo-opt Ins Laser Radar Technology and Applications = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Viii = P Soc Photo-opt Ins Laser Radar Technology and Applications Viii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Vii = P Soc Photo-opt Ins Laser Radar Technology and Applications Vii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Vi = P Soc Photo-opt Ins Laser Radar Technology and Applications Vi = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications V = P Soc Photo-opt Ins Laser Radar Technology and Applications V = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Xiii = Proc Spie Laser Radar Technology and Applications Xiii = Proc. Spie. Laser Radar Technology and Applications Xiii = P Soc Photo-opt Ins Laser Radar Technology and Applications Xiii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Xii = P Soc Photo-opt Ins Laser Radar Technology and Applications Xii = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Xi = P Soc Photo-opt Ins Laser Radar Technology and Applications Xi = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications X = Proc Spie Laser Radar Technology and Applications X = Proc. Spie. Laser Radar Technology and Applications X = P Soc Photo-opt Ins Laser Radar Technology and Applications X = P. Soc. Photo-opt. Ins. Laser Radar Technology and Applications Xvi = Proc Spie Laser Radar Technology and Applications Xvi = Proc. Spie. Laser Radar Technology and Applications Xv = P Soc Photo-opt Ins Laser Radar Technology and Applications Xv = P. Soc. Photo-opt. Ins. Laser Radar Technology for Remote Sensing = Proc Spie Laser Radar Technology for Remote Sensing = Proc. Spie. Laser Radar Technology for Remote Sensing = P Soc Photo-opt Ins Laser Radar Technology for Remote Sensing = P. Soc. Photo-opt. Ins. Laser Radar Vii : Advanced Technology for Applications = P Soc Photo-opt Ins Laser Radar Vii : Advanced Technology for Applications = P. Soc. Photo-opt. Ins. Laser Radar Vi = P Soc Photo-opt Ins Laser Radar Vi = P. Soc. Photo-opt. Ins. Laser Radar V = P Soc Photo-opt Ins Laser Radar V = P. Soc. Photo-opt. Ins. Laser Refrigeration of Solids Iii = P Soc Photo-opt Ins Laser Refrigeration of Solids Iii = P. Soc. Photo-opt. Ins. Laser Refrigeration of Solids Ii = P Soc Photo-opt Ins Laser Refrigeration of Solids Ii = P. Soc. Photo-opt. Ins. Laser Refrigeration of Solids Iv = Proc Spie Laser Refrigeration of Solids Iv = Proc. Spie. Laser Refrigeration of Solids = P Soc Photo-opt Ins Laser Refrigeration of Solids = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Ix = P Soc Photo-opt Ins Laser Resonators and Beam Control Ix = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Viii = Proc Spie Laser Resonators and Beam Control Viii = Proc. Spie. Laser Resonators and Beam Control Viii = P Soc Photo-opt Ins Laser Resonators and Beam Control Viii = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Vii = P Soc Photo-opt Ins Laser Resonators and Beam Control Vii = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Vi = Proc Spie Laser Resonators and Beam Control Vi = Proc. Spie. Laser Resonators and Beam Control Vi = P Soc Photo-opt Ins Laser Resonators and Beam Control Vi = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control V = Proc Spie Laser Resonators and Beam Control V = Proc. Spie. Laser Resonators and Beam Control V = P Soc Photo-opt Ins Laser Resonators and Beam Control V = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Xii = P Soc Photo-opt Ins Laser Resonators and Beam Control Xii = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control Xi = P Soc Photo-opt Ins Laser Resonators and Beam Control Xi = P. Soc. Photo-opt. Ins. Laser Resonators and Beam Control X = Proc Spie Laser Resonators and Beam Control X = Proc. Spie. Laser Resonators and Beam Control X = P Soc Photo-opt Ins Laser Resonators and Beam Control X = P. Soc. Photo-opt. Ins. Laser Resonators and Coherent Optics : Modeling, Technology, and Applications = P Soc Photo-opt Ins Laser Resonators and Coherent Optics : Modeling, Technology, and Applications = P. Soc. Photo-opt. Ins. Laser Resonators Iii = P Soc Photo-opt Ins Laser Resonators Iii = P. Soc. Photo-opt. Ins. Laser Resonators Ii = Proc Spie Laser Resonators Ii = Proc. Spie. Laser Resonators Ii = P Soc Photo-opt Ins Laser Resonators Ii = P. Soc. Photo-opt. Ins. Laser Resonators Iv = Proc Spie Laser Resonators Iv = Proc. Spie. Laser Resonators Iv = P Soc Photo-opt Ins Laser Resonators Iv = P. Soc. Photo-opt. Ins. Laser Resonators = P Soc Photo-opt Ins Laser Resonators = P. Soc. Photo-opt. Ins. Laser Safety, Eyesafe Laser Systems, and Laser Eye Protection = P Soc Photo-opt Ins Laser Safety, Eyesafe Laser Systems, and Laser Eye Protection = P. Soc. Photo-opt. Ins. Laser Safety: Tools and Training = Opt Sci Eng-crc Laser Safety: Tools and Training = Opt. Sci. Eng-crc. Lasers and Applications = Proc Spie Lasers and Applications = Proc. Spie. Lasers and Electro-optics Research and Technology = Lasers Electro-opt R Lasers and Electro-optics Research and Technology = Lasers Electro-opt. R. Lasers and Optics for Surface Analysis = P Soc Photo-opt Ins Lasers and Optics for Surface Analysis = P. Soc. Photo-opt. Ins. Lasers As Tools for Manufacturing Ii = P Soc Photo-opt Ins Lasers As Tools for Manufacturing Ii = P. Soc. Photo-opt. Ins. Lasers As Tools for Manufacturing of Durable Goods and Microelectronics = P Soc Photo-opt Ins Lasers As Tools for Manufacturing of Durable Goods and Microelectronics = P. Soc. Photo-opt. Ins. Lasers As Tools for Manufacturing = P Soc Photo-opt Ins Lasers As Tools for Manufacturing = P. Soc. Photo-opt. Ins. Lasers, Clocks and Drag-free Control: Exploration of Relativistic Gravity in Space = Astrophys Space Sc L Lasers, Clocks and Drag-free Control: Exploration of Relativistic Gravity in Space = Astrophys. Space Sc. L. Lasers for Measurements and Information Transfer 2002 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2002 = P. Soc. Photo-opt. Ins. Lasers for Measurements and Information Transfer 2003 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2003 = P. Soc. Photo-opt. Ins. Lasers for Measurements and Information Transfer 2004 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2004 = P. Soc. Photo-opt. Ins. Lasers for Measurements and Information Transfer 2005 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2005 = P. Soc. Photo-opt. Ins. Lasers for Measurements and Information Transfer 2006 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2006 = P. Soc. Photo-opt. Ins. Lasers for Measurements and Information Transfer 2007 = Proc Spie Lasers for Measurements and Information Transfer 2007 = Proc. Spie. Lasers for Measurements and Information Transfer 2007 = P Soc Photo-opt Ins Lasers for Measurements and Information Transfer 2007 = P. Soc. Photo-opt. Ins. Lasers: Fundamentals and Applications, Second Edition = Grad Texts Phys Lasers: Fundamentals and Applications, Second Edition = Grad. Texts. Phys. Laser Shock Peening = World Metall Laser Shock Peening = World. Metall. Lasers in Dentistry Iii, Proceedings Of = P Soc Photo-opt Ins Lasers in Dentistry Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Dentistry Ii, Proceedings Of = P Soc Photo-opt Ins Lasers in Dentistry Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Dentistry = Int Congr Ser Lasers in Dentistry = Int. Congr. Ser. Lasers in Dentistry Iv, Proceedings Of = P Soc Photo-opt Ins Lasers in Dentistry Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Dentistry Ix = Proc Spie Lasers in Dentistry Ix = Proc. Spie. Lasers in Dentistry Ix = P Soc Photo-opt Ins Lasers in Dentistry Ix = P. Soc. Photo-opt. Ins. Lasers in Dentistry, Proceedings = Int Congr Ser Lasers in Dentistry, Proceedings = Int. Congr. Ser. Lasers in Dentistry, Proceedings Of = P Soc Photo-opt Ins Lasers in Dentistry, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Dentistry Viii = Proc Spie Lasers in Dentistry Viii = Proc. Spie. Lasers in Dentistry Viii = P Soc Photo-opt Ins Lasers in Dentistry Viii = P. Soc. Photo-opt. Ins. Lasers in Dentistry Vii = P Soc Photo-opt Ins Lasers in Dentistry Vii = P. Soc. Photo-opt. Ins. Lasers in Dentistry Vi = Proc Spie Lasers in Dentistry Vi = Proc. Spie. Lasers in Dentistry Vi = P Soc Photo-opt Ins Lasers in Dentistry Vi = P. Soc. Photo-opt. Ins. Lasers in Dentistry V, Proceedings Of = P Soc Photo-opt Ins Lasers in Dentistry V, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Dentistry Xiii = P Soc Photo-opt Ins Lasers in Dentistry Xiii = P. Soc. Photo-opt. Ins. Lasers in Dentistry Xii = P Soc Photo-opt Ins Lasers in Dentistry Xii = P. Soc. Photo-opt. Ins. Lasers in Dentistry Xi = P Soc Photo-opt Ins Lasers in Dentistry Xi = P. Soc. Photo-opt. Ins. Lasers in Dentistry Xiv = P Soc Photo-opt Ins Lasers in Dentistry Xiv = P. Soc. Photo-opt. Ins. Lasers in Dentistry X = P Soc Photo-opt Ins Lasers in Dentistry X = P. Soc. Photo-opt. Ins. Lasers in Dentistry Xvii = Proc Spie Lasers in Dentistry Xvii = Proc. Spie. Lasers in Dentistry Xvi = Proc Spie Lasers in Dentistry Xvi = Proc. Spie. Lasers in Dentistry Xv = P Soc Photo-opt Ins Lasers in Dentistry Xv = P. Soc. Photo-opt. Ins. Lasers in Engineering = Laser Eng Lasers in Engineering = Laser. Eng. Lasers in Material Processing and Manufacturing Iii = P Soc Photo-opt Ins Lasers in Material Processing and Manufacturing Iii = P. Soc. Photo-opt. Ins. Lasers in Material Processing and Manufacturing Ii = P Soc Photo-opt Ins Lasers in Material Processing and Manufacturing Ii = P. Soc. Photo-opt. Ins. Lasers in Material Processing and Manufacturing = P Soc Photo-opt Ins Lasers in Material Processing and Manufacturing = P. Soc. Photo-opt. Ins. Lasers in Material Processing = P Soc Photo-opt Ins Lasers in Material Processing = P. Soc. Photo-opt. Ins. Lasers in Materials Science = Mater Sci Forum Lasers in Materials Science = Mater. Sci. Forum. Lasers in Medical Science = Laser Med Sci Lasers in Medical Science = Laser. Med. Sci. Lasers in medical science = Lasers Med Sci Lasers in Medicine and Dentistry: Diagnostics and Treatment = P Soc Photo-opt Ins Lasers in Medicine and Dentistry: Diagnostics and Treatment = P. Soc. Photo-opt. Ins. Lasers in Medicine = P Soc Photo-opt Ins Lasers in Medicine = P. Soc. Photo-opt. Ins. Lasers in Microelectronic Manufacturing = P Soc Photo-opt Ins Lasers in Microelectronic Manufacturing = P. Soc. Photo-opt. Ins. Lasers in Ophthalmology Iii, Proceedings Of = P Soc Photo-opt Ins Lasers in Ophthalmology Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Ophthalmology Ii, Proceedings Of = P Soc Photo-opt Ins Lasers in Ophthalmology Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Ophthalmology Iv, Proceedings Of = P Soc Photo-opt Ins Lasers in Ophthalmology Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Optical Systems and Devices = P Soc Photo-opt Ins Lasers in Optical Systems and Devices = P. Soc. Photo-opt. Ins. Lasers in Otorhinolaryngology, and in Head and Neck Surgery = Adv Oto-rhino-laryng Lasers in Otorhinolaryngology, and in Head and Neck Surgery = Adv. Oto-rhino-laryng. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Ix, Proceedings Of = Proc Spie Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Ix, Proceedings Of = Proc. Spie. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Ix, Proceedings Of = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Ix, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Viii, Proceedings Of = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Viii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Vii, Proceedings Of = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Vii, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Vi, Proceedings Of = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Vi, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems V, Proceedings Of = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems V, Proceedings Of = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xiii = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xiii = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xii = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xii = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization Therapeutics, and Systems Xi = Proc Spie Lasers in Surgery: Advanced Characterization Therapeutics, and Systems Xi = Proc. Spie. Lasers in Surgery: Advanced Characterization Therapeutics, and Systems Xi = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization Therapeutics, and Systems Xi = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xiv = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems Xiv = P. Soc. Photo-opt. Ins. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems X = Proc Spie Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems X = Proc. Spie. Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems X = P Soc Photo-opt Ins Lasers in Surgery: Advanced Characterization, Therapeutics, and Systems X = P. Soc. Photo-opt. Ins. Lasers in surgery and medicine = Lasers Surg Med Lasers in Surgery and Medicine = Lasers Surg. Med. Lasers In Surgery and Medicine=Lasers Surg Med;; Lasers in Surgery and Medicine = Laser Surg Med Lasers in Surgery and Medicine = Laser. Surg. Med. Lasers in surgery and medicine. Supplement = Lasers Surg Med Suppl Lasers in Surgery and Medicine. Supplement = Lasers Surg. Med. Suppl. Lasers In Surgery and Medicine. Supplement=Lasers Surg Med Suppl;; Lasers in Synthesis, Characterization, and Processing of Diamond = P Soc Photo-opt Ins Lasers in Synthesis, Characterization, and Processing of Diamond = P. Soc. Photo-opt. Ins. Lasers in The Conservation of Artworks, Proceedings = Springer Proc Phys Lasers in The Conservation of Artworks, Proceedings = Springer. Proc. Phys. Lasers in The Conservation of Artworks = Springer Proc Phys Lasers in The Conservation of Artworks = Springer. Proc. Phys. Lasers in Urology = P Soc Photo-opt Ins Lasers in Urology = P. Soc. Photo-opt. Ins. Laser Source and System Technology for Defense and Security Ii = P Soc Photo-opt Ins Laser Source and System Technology for Defense and Security Ii = P. Soc. Photo-opt. Ins. Laser Source and System Technology for Defense and Security = P Soc Photo-opt Ins Laser Source and System Technology for Defense and Security = P. Soc. Photo-opt. Ins. Laser Source Technology for Defense and Security Iii = Proc Spie Laser Source Technology for Defense and Security Iii = Proc. Spie. Laser Source Technology for Defense and Security Iii = P Soc Photo-opt Ins Laser Source Technology for Defense and Security Iii = P. Soc. Photo-opt. Ins. Laser Source Technology for Defense and Security Iv = Proc Spie Laser Source Technology for Defense and Security Iv = Proc. Spie. Laser Source Technology for Defense and Security Iv = P Soc Photo-opt Ins Laser Source Technology for Defense and Security Iv = P. Soc. Photo-opt. Ins. Laser Spectroscopy = Aip Conf Proc Laser Spectroscopy = Aip. Conf. Proc. Laser Spectroscopy and Optical Diagnostics: Novel Trends and Applications in Laser Chemistry, Biophysics, and Biomedicine - Icono'98 = P Soc Photo-opt Ins Laser Spectroscopy and Optical Diagnostics: Novel Trends and Applications in Laser Chemistry, Biophysics, and Biomedicine - Icono'98 = P. Soc. Photo-opt. Ins. Laser Spectroscopy of Biomolecules = P Soc Photo-opt Ins Laser Spectroscopy of Biomolecules = P. Soc. Photo-opt. Ins. Laser Study of Macroscopic Biosystems = P Soc Photo-opt Ins Laser Study of Macroscopic Biosystems = P. Soc. Photo-opt. Ins. Laser-surface Interactions for New Materials Production: Tailoring Structure and Properties = Springer Ser Mater S Laser-surface Interactions for New Materials Production: Tailoring Structure and Properties = Springer. Ser. Mater. S. Laser Surface Processing and Characterization = Eur Mat Res Laser Surface Processing and Characterization = Eur. Mat. Res. Laser Surgery: Advanced Characterization, Therapeutics, and Systems Iv, Proceedings Of = P Soc Photo-opt Ins Laser Surgery: Advanced Characterization, Therapeutics, and Systems Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Laser Surgery : Advanced Characterization, Therapeutics, and Systems = P Soc Photo-opt Ins Laser Surgery : Advanced Characterization, Therapeutics, and Systems = P. Soc. Photo-opt. Ins. Laser Systems for Photobiology and Photomedicine = Nato Adv Sci I B-phy Laser Systems for Photobiology and Photomedicine = Nato. Adv. Sci. I. B-phy. Laser Systems Technology Ii = P Soc Photo-opt Ins Laser Systems Technology Ii = P. Soc. Photo-opt. Ins. Laser Systems Technology = P Soc Photo-opt Ins Laser Systems Technology = P. Soc. Photo-opt. Ins. Lasertechnik Fur Die Fertigung: Grundlagen, Perspektiven Und Beispiele Fur Den Innovativen Ingenieur = Vdi-buch Lasertechnik Fur Die Fertigung: Grundlagen, Perspektiven Und Beispiele Fur Den Innovativen Ingenieur = Vdi-buch. Laser Technik Journal = Laser Tech. J. Laser Techniques and Systems in Art Conservation = Proc Spie Laser Techniques and Systems in Art Conservation = Proc. Spie. Laser Techniques and Systems in Art Conservation = P Soc Photo-opt Ins Laser Techniques and Systems in Art Conservation = P. Soc. Photo-opt. Ins. Laser Techniques for Condensed-phase and Biological Systems = P Soc Photo-opt Ins Laser Techniques for Condensed-phase and Biological Systems = P. Soc. Photo-opt. Ins. Laser Techniques for State-selected and State-to-state Chemistry Iii = P Soc Photo-opt Ins Laser Techniques for State-selected and State-to-state Chemistry Iii = P. Soc. Photo-opt. Ins. Laser Techniques for State-selected and State-to-state Chemistry Ii = P Soc Photo-opt Ins Laser Techniques for State-selected and State-to-state Chemistry Ii = P. Soc. Photo-opt. Ins. Laser Techniques for State-selected and State-to-state Chemistry Iv = P Soc Photo-opt Ins Laser Techniques for State-selected and State-to-state Chemistry Iv = P. Soc. Photo-opt. Ins. Laser Techniques for State-selected and State-to-state Chemistry = P Soc Photo-opt Ins Laser Techniques for State-selected and State-to-state Chemistry = P. Soc. Photo-opt. Ins. Laser Techniques for Surface Science Iii = P Soc Photo-opt Ins Laser Techniques for Surface Science Iii = P. Soc. Photo-opt. Ins. Laser Techniques for Surface Science Ii = P Soc Photo-opt Ins Laser Techniques for Surface Science Ii = P. Soc. Photo-opt. Ins. Laser Techniques for Surface Science = P Soc Photo-opt Ins Laser Techniques for Surface Science = P. Soc. Photo-opt. Ins. Laser Techniques in Luminescence Spectroscopy = Am Soc Test Mater Laser Techniques in Luminescence Spectroscopy = Am. Soc. Test. Mater. Laser Technology for Defense and Security Vii = P Soc Photo-opt Ins Laser Technology for Defense and Security Vii = P. Soc. Photo-opt. Ins. Laser Technology for Defense and Security Vi = P Soc Photo-opt Ins Laser Technology for Defense and Security Vi = P. Soc. Photo-opt. Ins. Laser Technology Iv: Applications in Medicine = P Soc Photo-opt Ins Laser Technology Iv: Applications in Medicine = P. Soc. Photo-opt. Ins. Laser Technology Iv: Research Trends, Instrumentation, and Applications in Metrology and Materials Processing = P Soc Photo-opt Ins Laser Technology Iv: Research Trends, Instrumentation, and Applications in Metrology and Materials Processing = P. Soc. Photo-opt. Ins. Laser Technology V: Applications in Materials Sciences and Engineering = P Soc Photo-opt Ins Laser Technology V: Applications in Materials Sciences and Engineering = P. Soc. Photo-opt. Ins. Laser Technology Vi: Applications = Proc Spie Laser Technology Vi: Applications = Proc. Spie. Laser Technology Vi: Applications = P Soc Photo-opt Ins Laser Technology Vi: Applications = P. Soc. Photo-opt. Ins. Laser Technology Vii: Applications of Lasers = P Soc Photo-opt Ins Laser Technology Vii: Applications of Lasers = P. Soc. Photo-opt. Ins. Laser Technology Viii: Applications of Lasers = Proc Spie Laser Technology Viii: Applications of Lasers = Proc. Spie. Laser Technology Viii: Applications of Lasers = P Soc Photo-opt Ins Laser Technology Viii: Applications of Lasers = P. Soc. Photo-opt. Ins. Laser Technology Viii: Progress in Lasers = P Soc Photo-opt Ins Laser Technology Viii: Progress in Lasers = P. Soc. Photo-opt. Ins. Laser Technology Vii: Progress in Lasers = P Soc Photo-opt Ins Laser Technology Vii: Progress in Lasers = P. Soc. Photo-opt. Ins. Laser Technology Vi: Progress in Lasers = Proc Spie Laser Technology Vi: Progress in Lasers = Proc. Spie. Laser Technology Vi: Progress in Lasers = P Soc Photo-opt Ins Laser Technology Vi: Progress in Lasers = P. Soc. Photo-opt. Ins. Laser Technology V: Physics and Research and Development Trends = P Soc Photo-opt Ins Laser Technology V: Physics and Research and Development Trends = P. Soc. Photo-opt. Ins. Laser Testing and Reliability = P Soc Photo-opt Ins Laser Testing and Reliability = P. Soc. Photo-opt. Ins. Laser-tissue Interaction and Tissue Optics Ii, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction and Tissue Optics Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction and Tissue Optics, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction and Tissue Optics, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Ix. Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction Ix. Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interactions, Therapeutic Applications, and Photodynamic Therapy = P Soc Photo-opt Ins Laser-tissue Interactions, Therapeutic Applications, and Photodynamic Therapy = P. Soc. Photo-opt. Ins. Laser-tissue Interaction, Tissue Optics, and Laser Welding Iii, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction, Tissue Optics, and Laser Welding Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Viii, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction Viii, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Vii, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction Vii, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Vi, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction Vi, Proceedings Of = P. Soc. Photo-opt. Ins. Laser-tissue Interaction V, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction V, Proceedings Of = P. Soc. Photo-opt. Ins. Laser Tissue Interaction Xiii: Photochemical, Photothermal, and Photomechanical = Proc Spie Laser Tissue Interaction Xiii: Photochemical, Photothermal, and Photomechanical = Proc. Spie. Laser Tissue Interaction Xiii: Photochemical, Photothermal, and Photomechanical = P Soc Photo-opt Ins Laser Tissue Interaction Xiii: Photochemical, Photothermal, and Photomechanical = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Xii: Photochemical, Photothermal, and Photomechanical = Proc Spie Laser-tissue Interaction Xii: Photochemical, Photothermal, and Photomechanical = Proc. Spie. Laser-tissue Interaction Xii: Photochemical, Photothermal, and Photomechanical = P Soc Photo-opt Ins Laser-tissue Interaction Xii: Photochemical, Photothermal, and Photomechanical = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Xi: Photochemical, Photothermal, and Photomechanical = P Soc Photo-opt Ins Laser-tissue Interaction Xi: Photochemical, Photothermal, and Photomechanical = P. Soc. Photo-opt. Ins. Laser-tissue Interaction Xiv = Proc Spie Laser-tissue Interaction Xiv = Proc. Spie. Laser-tissue Interaction Xiv = P Soc Photo-opt Ins Laser-tissue Interaction Xiv = P. Soc. Photo-opt. Ins. Laser-tissue Interaction X: Photochemical, Photothermal, and Photomechanical, Proceedings Of = P Soc Photo-opt Ins Laser-tissue Interaction X: Photochemical, Photothermal, and Photomechanical, Proceedings Of = P. Soc. Photo-opt. Ins. Laser Wakefield Electron Acceleration: A Novel Approach Employing Supersonic Microjets and Few-cycle Laser Pulses = Springer Theses-reco Laser Wakefield Electron Acceleration: A Novel Approach Employing Supersonic Microjets and Few-cycle Laser Pulses = Springer. Theses-reco. Laser Weapons Technology Iii = P Soc Photo-opt Ins Laser Weapons Technology Iii = P. Soc. Photo-opt. Ins. Laser Weapons Technology Ii = P Soc Photo-opt Ins Laser Weapons Technology Ii = P. Soc. Photo-opt. Ins. Laser Weapons Technology = P Soc Photo-opt Ins Laser Weapons Technology = P. Soc. Photo-opt. Ins. La Société Royale du Canada = C. R. Math. Rep. Acad. Sci. Canada Last Battle of The Cold War: An Inside Account of Negotiating The Intermediate Range Nuclear Forces Treaty = Initiat Strateg Stud Last Battle of The Cold War: An Inside Account of Negotiating The Intermediate Range Nuclear Forces Treaty = Initiat. Strateg. Stud. Last Decade of The Cold War: From Conflict Escalation to Conflict Transformation = Nobel Symp Last Decade of The Cold War: From Conflict Escalation to Conflict Transformation = Nobel. Symp. Laster Im Mittelalter = Scrin Friburg Laster Im Mittelalter = Scrin. Friburg. Last Hunters-first Farmers = Sch Am Res Last Hunters-first Farmers = Sch. Am. Res. Last Total Solar Eclipse of The Millennium in Turkey = Astr Soc P Last Total Solar Eclipse of The Millennium in Turkey = Astr. Soc. P. Lat 2010: International Conference On Lasers, Applications, and Technologies = Proc Spie Lat 2010: International Conference On Lasers, Applications, and Technologies = Proc. Spie. Lat 2010: International Conference On Lasers, Applications, and Technologies = P Soc Photo-opt Ins Lat 2010: International Conference On Lasers, Applications, and Technologies = P. Soc. Photo-opt. Ins. Late Cenozoic Drainage History of The Southwestern Great Basin and Lower Colorado River Region: Geologic and Biotic Perspectives = Geol S Am S Late Cenozoic Drainage History of The Southwestern Great Basin and Lower Colorado River Region: Geologic and Biotic Perspectives = Geol. S. Am. S. Late Cenozoic Structure and Evolution of The Great Basin-sierra Nevada Transition = Geol Soc Am Spec Pap Late Cenozoic Structure and Evolution of The Great Basin-sierra Nevada Transition = Geol. Soc. Am. Spec. Pap. La Technique de l'eau et de l'assainissement = Tech Eau Assainissement Late Effects of Treatment for Brain Tumors = Cancer Treat Res Late Effects of Treatment for Brain Tumors = Cancer. Treat. Res. Late Effects of Treatment for Childhood Cancer = Curr Clin O Late Effects of Treatment for Childhood Cancer = Curr. Clin. O. Late Eocene Earth: Hothouse Icehouse, and Impacts = Geol Soc Am Spec Pap Late Eocene Earth: Hothouse Icehouse, and Impacts = Geol. Soc. Am. Spec. Pap. Late Graft Loss = Transp Cl Immun Sfmm Late Graft Loss = Transp. Cl. Immun. Sfmm. Late Imperial China = Late Imp China Late Imperial China = Late Imp. China Lateinamerika = Lateinamerika Late Minoan Iii Pottery = Mg Danish Inst Athen Late Minoan Iii Pottery = Mg. Danish. Inst. Athen. Late Modernism: Art, Culture, and Politics in Cold War America = Arts Intell Life Mod Late Modernism: Art, Culture, and Politics in Cold War America = Arts. Intell. Life. Mod. Late Neogene and Quaternary Biodiversity and Evolution: Regional Developments and Interregional Correlations, Vol 1 = Cour For Sekenbg Late Neogene and Quaternary Biodiversity and Evolution: Regional Developments and Interregional Correlations, Vol 1 = Cour. For. Sekenbg. Late Neogene and Quaternary Biodiversity and Evolution: Regional Developments and Interregional Correlations, Vol Ii = Cour For Sekenbg Late Neogene and Quaternary Biodiversity and Evolution: Regional Developments and Interregional Correlations, Vol Ii = Cour. For. Sekenbg. L'Ateneo parmense. Acta bio-medica : organo della Societa di medicina e scienze naturali di Parma = Ateneo Parmense Acta Biomed L'Ateneo parmense. Acta naturalia : organo della Societa di medicina e scienze naturali di Parma = Ateneo Parmense Acta Nat L' Ateneo parmense. Sezione I: Acta bio-medica = Ateneo Parmense [1] Latent Variable Analysis and Signal Sparation = Lect Notes Comput Sc Latent Variable Analysis and Signal Sparation = Lect. Notes. Comput. Sc. Late Palaeozoic and Mesozoic Ecosystems in Se Asia = Geol Soc Spec Publ Late Palaeozoic and Mesozoic Ecosystems in Se Asia = Geol. Soc. Spec. Publ. Late Paleozoic Glacial Events and Postglacial Transgressions in Gondwana = Geol Soc Am Spec Pap Late Paleozoic Glacial Events and Postglacial Transgressions in Gondwana = Geol. Soc. Am. Spec. Pap. Late Quaternary Palaeoceanography of The North Atlantic Margins = Geol Soc Sp Late Quaternary Palaeoceanography of The North Atlantic Margins = Geol. Soc. Sp. Lateral Aligment of Epitaxial Quantum Dots = Nanosci Technol Lateral Aligment of Epitaxial Quantum Dots = Nanosci. Technol. Laterality = Laterality Lateral Theory of Phonology: What Is Cvcv, and Hy Should It Be? = Stud Generat Gramm Lateral Theory of Phonology: What Is Cvcv, and Hy Should It Be? = Stud. Generat. Gramm. Late Roman Transition in The North = Bar Brit Ser Late Roman Transition in The North = Bar. Brit. Ser. Latest Advances in The Aerodynamics of Turbomachinery With Special Emphasis Upon Unsteady Flows = Imeche Sem Latest Advances in The Aerodynamics of Turbomachinery With Special Emphasis Upon Unsteady Flows = Imeche. Sem. Late Stalinist Russia: Society Between Reconstruction and Reinvention = Basees-rout Ser Russ Late Stalinist Russia: Society Between Reconstruction and Reinvention = Basees-rout. Ser. Russ. Latest Trends in Condensed Matter Physics: Experimental and Theoretical Aspects = Solid State Phenomen Latest Trends in Condensed Matter Physics: Experimental and Theoretical Aspects = Solid. State. Phenomen. Latest Trends On Engineering Mechanics, Structures, Engineering Geology = Ma Comput Sci Eng Latest Trends On Engineering Mechanics, Structures, Engineering Geology = Ma. Comput. Sci. Eng. Latest Trends On Engineering Mechanics, Structures, Engineering Geology = Math Comput Sci Eng Latest Trends On Engineering Mechanics, Structures, Engineering Geology = Math. Comput. Sci. Eng. Latin 2000: Theoretical Informatics = Lect Notes Comput Sc Latin 2000: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 2002: Theoretical Informatics = Lect Notes Comput Sc Latin 2002: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 2004: Theoretical Informatics = Lect Notes Comput Sc Latin 2004: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 2006: Theoretical Informatics = Lect Notes Comput Sc Latin 2006: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 2008: Theoretical Informatics = Lect Notes Comput Sc Latin 2008: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 2010: Theoretical Informatics = Lect Notes Comput Sc Latin 2010: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin 92 = Lect Notes Comput Sc Latin 92 = Lect. Notes. Comput. Sc. Latin '95: Theoretical Informatics = Lect Notes Comput Sc Latin '95: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin '98: Theoretical Informatics = Lect Notes Comput Sc Latin '98: Theoretical Informatics = Lect. Notes. Comput. Sc. Latin America and Contemporary Modernity = Routl Adv Sociol Latin America and Contemporary Modernity = Routl. Adv. Sociol. Latin America: A New Developmental Welfare State Model in The Making = Soc Policy Dev Conte Latin America: A New Developmental Welfare State Model in The Making = Soc. Policy. Dev. Conte. Latin America: A New Interpretation = Stud Am Latin America: A New Interpretation = Stud. Am. Latin America Applied Research = Lat. Am. Appl. Res. Latin America, Media, and Revolution: Communication in Modern Mesoamerica = Palgr Mac Ser Int Po Latin America, Media, and Revolution: Communication in Modern Mesoamerica = Palgr. Mac. Ser. Int. Po. Latin American Antiquity = Lat Am Antiq Latin American Antiquity = Lat. Am. Antiq. Latin American Applied Research = Lat Am Appl Res Latin American Applied Research = Lat. Am. Appl. Res. Latin American Applied Research = Latin Am Appl Res Latin American Applied Research = Latin Am. Appl. Res. Latin American Economic Crises: Trade and Labour = Int Econ Assoc Serie Latin American Economic Crises: Trade and Labour = Int. Econ. Assoc. Serie. Latin American Indian Literatures Journal = Lat Am Indian Lit J Latin American Indian Literatures Journal = Lat. Am. Indian Lit. J. Latin American Indian Literatures = Lat Am Indian Lit Latin American Indian Literatures = Lat. Am. Indian Lit. Latin American Journal of Aquatic Research = Lat Am J Aquat Res Latin American Journal of Aquatic Research = Lat. Am. J. Aquat. Res. Latin American Journal of Chemical Engineering and Applied Chemistry = Lat Am J Chem Eng Latin American Journal of Chemical Engineering and Applied Chemistry = Lat. Am. J. Chem. Eng. Latin American Journal of Pharmacy = Lat Am J Pharm Latin American Journal of Pharmacy = Lat. Am. J. Pharm. Latin American Journal of Solids and Structures = Lat Am J Solids Stru Latin American Journal of Solids and Structures = Lat. Am. J. Solids Stru. Latin American Literary Review = Lat Am Literary Rev Latin American Literary Review = Lat. Am. Literary Rev. Latin American Monographs-institute Latin American Studies Austin = Lat Am Monogr Latin American Monographs-institute Latin American Studies Austin = Lat. Am. Monogr. Latin American Music Review-revista De Musica Latinoamericana = Lat Am Music Rev Latin American Music Review-revista De Musica Latinoamericana = Lat. Am. Music Rev. Latin American perspectives = Lat Am Perspect Latin American Perspectives = Lat Am Perspect Latin American Perspectives = Lat. Am. Perspect. Latin American Political Economic and Security Issues = Lat Am Polit Econ Se Latin American Political Economic and Security Issues = Lat. Am. Polit. Econ. Se. Latin American Politics and Society = Lat Am Polit Soc Latin American Politics and Society = Lat. Am. Polit. Soc. Latin American Politics and Society=Latin Amer. Politics Society Latin American population history bulletin = Lat Am Popul Hist Bull Latin American population history newsletter = Lat Am Popul Hist News Latin American Project On Biogeography and Systematic Entomology = Mongr Terc Milenio Latin American Project On Biogeography and Systematic Entomology = Mongr. Terc. Milenio. Latin American research review = Lat Am Res Rev Latin American Research Review = Lat Am Res Rev Latin American Research Review = Lat. Am. Res. Rev. Latin-american School of Physics Xl Elaf: Symmetries in Physics = Aip Conf Proc Latin-american School of Physics Xl Elaf: Symmetries in Physics = Aip. Conf. Proc. Latin-american School of Physics Xxx Elaf = Aip Conf Proc Latin-american School of Physics Xxx Elaf = Aip. Conf. Proc. Latin-american School of Physics Xxxi Elaf = Aip Conf Proc Latin-american School of Physics Xxxi Elaf = Aip. Conf. Proc. Latin-american School of Physics - Xxxv Elaf = Aip Conf Proc Latin-american School of Physics - Xxxv Elaf = Aip. Conf. Proc. Latin-american School of Physics Xxxviii Elaf = Aip Conf Proc Latin-american School of Physics Xxxviii Elaf = Aip. Conf. Proc. Latin American Studies Series = Lat Amer St Latin American Studies Series = Lat. Amer. St. Latin American Studies Series, University of Nebraska Press = Lat Amer S Latin American Studies Series, University of Nebraska Press = Lat. Amer. S. Latin American Symposium On Protein for Food = Mg Inia Latin American Symposium On Protein for Food = Mg. Inia. Latin American Theatre Review = Lat Am Theatre Rev Latin American Theatre Review = Lat. Am. Theatre Rev. Latin American Writers and The Rise of Hollywood Cinema = Rout Stud Tw Cen Lit Latin American Writers and The Rise of Hollywood Cinema = Rout. Stud. Tw. Cen. Lit. Latina-o Hope = Explor Educ Purp Latina-o Hope = Explor. Educ. Purp. Latin Drama in The Early Modern Age: Exemplary Insights in Practice and Theory = Fruhe Neuzeit Studie Latin Drama in The Early Modern Age: Exemplary Insights in Practice and Theory = Fruhe. Neuzeit. Studie. Latinitas. Commentarii linguae Latinae excolendae provehendae = Latinitas Latino Children and Families in The United States = Praeg S Appl Psychol Latino Children and Families in The United States = Praeg. S. Appl. Psychol. Latino Communities = Lat Communities Latino Communities = Lat. Communities Latin Trade = Lat Trade Latin Trade = Lat. Trade Latomus = Latomus Latomus. Revue d'études latines = Latomus La torretta. Rivista quadrimestrale a cura della Biblioteca comunale di Blera = Torretta La tourbe des philosophes : revue d'etudes alchimiques = Tourbe Philos La Tour de l’Orle-d’Or, Semur-en-Auxois = TourOrleOr La Tribuna odontologica = Trib Odontol (B Aires) Latsploitation, Exploitation Cinemas, and Latin America = Routl Adv Film Stud Latsploitation, Exploitation Cinemas, and Latin America = Routl. Adv. Film. Stud. Lattante = Lattante Latte = Latte Lattice Fermions and Structure of The Vacuum = Nato Adv Sci I C-mat Lattice Fermions and Structure of The Vacuum = Nato. Adv. Sci. I. C-mat. Lattice-gas Cellular Automata and Lattice Boltzmann Models = Lect Notes Math Lattice-gas Cellular Automata and Lattice Boltzmann Models = Lect. Notes. Math. Lattice: Multivariate Data Visualization With R = Use R Lattice: Multivariate Data Visualization With R = Use. R L'Attualita dietetica = Attual Diet La Tunisie medicale = Tunis Med Latvian Journal of Physics and Technical Sciences = Latv. J. Phys. Tech. Sci. Latvijas Kimijas Zurnals = Latv. Kim. Z. Latviy skaya Akademiya Nauk = Latv. Mat. Ezhegodnik Laufener Seminarbeiträge = Laufener Semin.beitr. Laughter Unlimited = Monat Occ V Laughter Unlimited = Monat. Occ. V. Launching Space Objects: Issues of Liability and Future Prospects = Space Regul Lib Launching Space Objects: Issues of Liability and Future Prospects = Space Regul. Lib. Laundry and Dry Cleaning Journal of Canada = Laundry Dry Clean. J. Can. Laundry news = Laund News Laundry News = Laund. News Laurance Reid Gas Conditioning Conf = L Reid Gas Laurance Reid Gas Conditioning Conf = L. Reid Gas L'Auxiliaire = Auxiliaire Lava Flows and Domes = Iavcei Volc Lava Flows and Domes = Iavcei. Volc. Laval medical = Laval Med Laval Medical = Laval Med. Laval Theologique Et Philosophique = Laval Theol Philos Laval Theologique Et Philosophique = Laval Theol. Philos. Laval Théologique et Philosophique = LThPh L'Avenir medical = Avenir Med Laverna. Beiträge zur Wirtschafts- und Sozialgeschichte der Alten Welt = Laverna La Vie medicale au Canada francais = Vie Med Can Fr La Vie medicale. Evolution medicale et therapeutique = Vie Med Evolut Med Ther La voix de la femme : magazine trimestriel d'information, d'education et de mobilisation de l'APDF = Voix Femme La Voix dentaire = Voix Dent Lavori dell'Istituto di anatomia e istologia patologica, Universita degli studi di Perugia = Lav Ist Anat Istol Patol Univ Studi Perugia Lavori dell'Istituto di Anatomia e Istologia Patologica, Universita degli Studi di Perugia = Lav. Ist. Anat. Istol. Patol. Univ. Studi Perugia Lavoro umano = Lav Um Lavoro Umano = Lav. Um. Law Against Unfair Competition: Towards A New Paradigm in Europe = Mpi Stud Intell Prop Law Against Unfair Competition: Towards A New Paradigm in Europe = Mpi. Stud. Intell. Prop. Law and Computer Technology = Law Comput Technol Law and Computer Technology = Law Comput. Technol. Law and Contemporary Problems=Law Contemp. Prob. Law and contemporary problems = Law Contemp Probl Law and Contemporary Problems = Law Contemp Probl Law and Contemporary Problems = Law Contemp. Probl. Law and Corporate Finance = Elgar Financ Law Law and Corporate Finance = Elgar. Financ. Law Law and Ecology: New Environmental Foundations = Law Just Ecol Law and Ecology: New Environmental Foundations = Law Just. Ecol. Law and Economics of International Telecommunications = Law Econ Int Telecom Law and Economics of International Telecommunications = Law Econ. Int. Telecom. Law and Electronic Commerce = Law Electr Commerce Law and Electronic Commerce = Law Electr. Commerce Law and Human Behavior = Law Human Behav Law and Human Behavior = Law Human Behav. Law and human behavior = Law Hum Behav Law and Human Behavior=Law Hum Behav;; Law and Human Behavior = Law Hum. Behav. Law and Legalization in Transnational Relations = Routl Adv Int Relat Law and Legalization in Transnational Relations = Routl. Adv. Int. Relat. Law and Literature = Curr Leg Iss Law and Literature = Curr. Leg. Iss. Law and mental health = Law Ment Health Law and philosophy = Law Philos Law and Philosophy = Law Philos Law and Philosophy = Law Philos. Law and Philosophy Library = Law Philos Libr Law and Philosophy Library = Law Philos. Libr. Law and policy in international business = Law Policy Int Bus Law and Prediction in The Light of Chaos Research = Lect Notes Phys Law and Prediction in The Light of Chaos Research = Lect. Notes. Phys. Law and psychology review = Law Psychol Rev Law and Social Inquiry-journal of The American Bar Foundation = Law Social Inquiry Law and Social Inquiry-journal of The American Bar Foundation = Law Social Inquiry. Law and State = Law State Law and The Arts = Contr Leg S Law and The Arts = Contr. Leg. S. Law and the Human Genome Review = Law Hum. Genome Rev. Law and The Illicit in Medieval Europe = Middle Ages Ser Law and The Illicit in Medieval Europe = Middle. Ages. Ser. Law and The Ordering of Our Life Together = Encounter S Law and The Ordering of Our Life Together = Encounter. S. Law and The Semantic Web = Lect Notes Comput Sc Law and The Semantic Web = Lect. Notes. Comput. Sc. Law and The State: A Political Economy Approach = New Horiz Law Econ Law and The State: A Political Economy Approach = New. Horiz. Law Econ. Law As Institution = Law Philos Libr Law As Institution = Law Philos. Libr. Law As Symbolic Form: Ernst Cassirer and The Anthropocentric View of Law = Law Philos Libr Law As Symbolic Form: Ernst Cassirer and The Anthropocentric View of Law = Law Philos. Libr. Law, Christianity and Modernism in Islamic Society = Orient Lovan Anal Law, Christianity and Modernism in Islamic Society = Orient. Lovan. Anal. Law, Democracy and Solidarity in A Post-national Union = Rout Stud Democr Eur Law, Democracy and Solidarity in A Post-national Union = Rout. Stud. Democr. Eur. Law Development and Globalization = Law Dev Glob Law Development and Globalization = Law Dev. Glob. Law & Empire in The Pacific: Fiji and Hawai'i = Sch Am Res Law & Empire in The Pacific: Fiji and Hawai'i = Sch. Am. Res. Law Enforcement Technologies: Identification Technologies and Traffic Safety = P Soc Photo-opt Ins Law Enforcement Technologies: Identification Technologies and Traffic Safety = P. Soc. Photo-opt. Ins. Law file = Law File Law Governance and Technology Series = Law Gov Technol Ser Law Governance and Technology Series = Law Gov. Technol. Ser. Law in context (Bundoora, Vic.) = Law Context Law in Eastern Europe = Law East E Law in Eastern Europe = Law East. E. Law & inequality = Law Inequal Law in Its Social Setting = Law Soc Set Law in Its Social Setting = Law Soc. Set. Law in Shakespeare = Early Mod Lit Hist Law in Shakespeare = Early. Mod. Lit. Hist. Law Institute journal : the official organ of the Law Institute of Victoria = Law Inst J Law Justice and Ecology = Law Just Ecol Law Justice and Ecology = Law Just. Ecol. Law & justice = Law Justice Law & liberty = Law Lib Law library journal = Law Libr J Law Library Journal = Law Libr J Law Library Journal = Law Libr. J. Law & Literature = Law Lit Law & Literature = Law Lit. Lawmaking and Exogamy: Constructing The Crime of Incest in The Early Middle Ages = Millenn Stud Kult Ge Lawmaking and Exogamy: Constructing The Crime of Incest in The Early Middle Ages = Millenn. Stud. Kult. Ge. Law Making and The Scottish Parliament: The Early Years = Edinb Stud Law Law Making and The Scottish Parliament: The Early Years = Edinb. Stud. Law Law-making in The People's Republic of China = Lon Lei Ser Law Adm Law-making in The People's Republic of China = Lon. Lei. Ser. Law. Adm. Law, Medicine and Health Care = Law. Med. Health Care Law, medicine & health care : a publication of the American Society of Law & Medicine = Law Med Health Care Law-medicine news = Law Med News Law of The Sea in Dialogue = Beitr Ausl Offentl R Law of The Sea in Dialogue = Beitr. Ausl. Offentl. R. Law & policy = Law Policy Law & Policy = Law Policy Law & policy quarterly = Law Policy Q Law, Politics, and Morality in Judaism = Ethikon Ser Comp Law, Politics, and Morality in Judaism = Ethikon. Ser. Comp. Law Quarterly Review = Law Quart Rev Law Quarterly Review = Law Quart. Rev. Lawrence Stone Lectures = Lawrence Stone Lect Lawrence Stone Lectures = Lawrence Stone Lect. Laws and Legislation = Laws Legis Laws and Legislation = Laws Legis. Law Science and Society = Law Sci Soc Law Science and Society = Law Sci. Soc. Law & social inquiry : journal of the American Bar Foundation = Law Soc Inq Law & society review = Law Soc Rev Law & Society Review = Law Soc Rev Law & Society Review = Law Soc. Rev. Laws of Life Symposia Series = Laws Lif Symp Ser Laws of Life Symposia Series = Laws Lif. Symp. Ser. Laws of Love: A Brief Historical and Practical Manual = Lang Discourse Soc Laws of Love: A Brief Historical and Practical Manual = Lang. Discourse. Soc. Laws of Puerto Rico annotated. Puerto Rico = Laws P R Annot P R Laws of the state of New Mexico. New Mexico = Laws State N M N M Laws of the state of Oregon / enacted during the ... session of the Legislative Assembly, begun ... concluded ... Oregon = Laws State Or Or Laws / passed by the ... General Assembly of the state of Illinois at their ... session ... Illinois = Laws Ill Lawyers and The Rule of Law in An Era of Globalization = Law Dev Glob Lawyers and The Rule of Law in An Era of Globalization = Law Dev. Glob. Lawyers On Psychology and Psychologists On Law = Ser Law Psy Lawyers On Psychology and Psychologists On Law = Ser. Law Psy. Layer-adapted Meshes for Reaction-convection-diffusion Problems = Lect Notes Math Layer-adapted Meshes for Reaction-convection-diffusion Problems = Lect. Notes. Math. Layered Double Hydroxides = Struct Bond Layered Double Hydroxides = Struct. Bond. Layered, Functional Gradient Ceramics, and Thermal Barrier Coatings: Design, Fabrication and Applications = Key Eng Mat Layered, Functional Gradient Ceramics, and Thermal Barrier Coatings: Design, Fabrication and Applications = Key. Eng. Mat. Layered, Functional Gradient Ceramics, and Thermal Barrier Coatings: Design, Fabrication and Applications = Key Eng Mater Layered, Functional Gradient Ceramics, and Thermal Barrier Coatings: Design, Fabrication and Applications = Key. Eng. Mater. Layered Materials for Structural Applications = Mater Res Soc Symp P Layered Materials for Structural Applications = Mater. Res. Soc. Symp. P. Layered Nanostructures - Polymers With Improved Properties = Macromol Sy Layered Nanostructures - Polymers With Improved Properties = Macromol. Sy. Layered Structures - Heteroepitaxy, Superlattices, Strain, and Metastability = Mater Res Soc Symp P Layered Structures - Heteroepitaxy, Superlattices, Strain, and Metastability = Mater. Res. Soc. Symp. P. Layered Superconductors : Fabrication, Properties and Applications = Mater Res Soc Symp P Layered Superconductors : Fabrication, Properties and Applications = Mater. Res. Soc. Symp. P. Layout Markers in Biblical Manuscripts and Ugaritic Tablets = Pericope Layout Markers in Biblical Manuscripts and Ugaritic Tablets = Pericope. Lboc - Third International Workshop On Laser Beam and Optics Characterization = P Soc Photo-opt Ins Lboc - Third International Workshop On Laser Beam and Optics Characterization = P. Soc. Photo-opt. Ins. Lc Gc Europe = Lc Gc Eur Lc Gc Europe = Lc Gc Eur. LC-GC = LC-GC LC GC : magazine of liquid and gas chromatography = LC GC Lc Gc-magazine of Separation Science = Lc Gc-mag Sep Sci Lc Gc-magazine of Separation Science = Lc Gc-mag. Sep. Sci. Lc Gc North America = Lc Gc N Am Lc Gc North America = Lc Gc N. Am. LCGC North America = LCGC North Am. LC-GC The Magazine of Separation Science = LC-GC Lc-ms/ms in Proteomics: Methods and Applications = Methods Mol Biol Lc-ms/ms in Proteomics: Methods and Applications = Methods Mol. Biol. Lcn 2001: 26th Annual Ieee Conference On Local Computer Networks, Proceedings = C Local Comput Netw Lcn 2001: 26th Annual Ieee Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. Lcn 2001: 26th Annual Ieee Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne Lcn 2001: 26th Annual Ieee Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. Lcn 2002: 27th Annual Ieee Conference On Local Computer Networks, Proceedings = C Local Comput Netw Lcn 2002: 27th Annual Ieee Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. Lcn 2002: 27th Annual Ieee Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne Lcn 2002: 27th Annual Ieee Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. Lcn 2003: 28th Conference On Local Computer Networks, Proceedings = C Local Comput Netw Lcn 2003: 28th Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. Lcn 2003: 28th Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne Lcn 2003: 28th Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. Lcn 2004: 29th Annual Ieee International Conference On Local Computer Networks, Proceedings = C Local Comput Netw Lcn 2004: 29th Annual Ieee International Conference On Local Computer Networks, Proceedings = C. Local Comput. Netw. Lcn 2004: 29th Annual Ieee International Conference On Local Computer Networks, Proceedings = Conf Local Comput Ne Lcn 2004: 29th Annual Ieee International Conference On Local Computer Networks, Proceedings = Conf. Local Comput. Ne. Lda Application Methods Laser Doppler Anemometry for Fluid Dynamics = Exp Fluid Mech Lda Application Methods Laser Doppler Anemometry for Fluid Dynamics = Exp. Fluid Mech. LDA journal = LDA J LDA Journal = LDA J. LDI issue brief = LDI Issue Brief Ldpc Coded Modulations = Signals Commun Techn Ldpc Coded Modulations = Signals. Commun. Techn. Leadership and Business Ethics = Issues Bus Ethics Leadership and Business Ethics = Issues. Bus. Ethics Leadership and Discovery = Jepson Stud Leadersh Leadership and Discovery = Jepson. Stud. Leadersh. Leadership and Learning: Matters of Social Justice = Int Perspect Curric Leadership and Learning: Matters of Social Justice = Int. Perspect. Curric. Leadership and Management in Engineering = Leadersh. Manage. Eng. Leadership and Security in Southeast Asia = Iss Se As S Leadership and Security in Southeast Asia = Iss. Se. As. S. Leadership and The Liberal Arts: Achieving The Promise of A Liberal Education = Jepson Stud Leadersh Leadership and The Liberal Arts: Achieving The Promise of A Liberal Education = Jepson. Stud. Leadersh. Leadership for An Age of Wisdom = Stud Educ Leadersh Leadership for An Age of Wisdom = Stud. Educ. Leadersh. Leadership for Learning Series = Leadersh Learn Ser Leadership for Learning Series = Leadersh. Learn. Ser. Leadership for Social Justice: Promoting Equity and Excellence Through Inquiry and Reflective Practice = Educ Leader Soc Just Leadership for Social Justice: Promoting Equity and Excellence Through Inquiry and Reflective Practice = Educ. Leader. Soc. Just. Leadership Horizons = Leadersh Horiz Leadership Horizons = Leadersh. Horiz. Leadership in Health Services = Leadersh. Health Serv. Leadership in The Big Bangs of European Integration = Palgrave Stud Eur Un Leadership in The Big Bangs of European Integration = Palgrave. Stud. Eur. Un. Leadership in The Library / Information Processing = Mc F S Rutg Leadership in The Library / Information Processing = Mc. F. S. Rutg. Leadership = Leadership-london Leadership = Leadership-london. Leadership Mindsets = Lead Sch Transform Leadership Mindsets = Lead. Sch. Transform. Leadership Quarterly = Leadership Quart Leadership Quarterly = Leadership Quart. Leaders in War: West Point Remembers The 1991 Gulf War = Cass Mil Stud Leaders in War: West Point Remembers The 1991 Gulf War = Cass. Mil. Stud. Leading Contemporary Economists = Routl Stud Hist Econ Leading Contemporary Economists = Routl. Stud. Hist. Econ. Leading-edge Manufacturing Strategies = Pma Tech Symp Proc Leading-edge Manufacturing Strategies = Pma. Tech. Symp. Proc. Leading-edge Strategies and Technologies for Sustainable Urban Water Management = Wa Sci Technol Leading-edge Strategies and Technologies for Sustainable Urban Water Management = Wa. Sci. Technol. Leading-edge Technology 2005 - Water Treatment = Wa Sci Technol Leading-edge Technology 2005 - Water Treatment = Wa. Sci. Technol. Leading Issues in Competition, Regulation and Development = Crc Ser Compet Regul Leading Issues in Competition, Regulation and Development = Crc. Ser. Compet. Regul. Leading Learning: Process, Themes and Issues in International Contexts = Leadersh Learn Ser Leading Learning: Process, Themes and Issues in International Contexts = Leadersh. Learn. Ser. Leading Linguists = Lead Linguist Leading Linguists = Lead. Linguist. Leading School Transformation = Lead Sch Transform Leading School Transformation = Lead. Sch. Transform. Leading The Web in Concurrent Engineering: Next Generation Concurrent Engineering = Fr Art Int Leading The Web in Concurrent Engineering: Next Generation Concurrent Engineering = Fr. Art. Int. Leading The Web in Concurrent Engineering: Next Generation Concurrent Engineering = Front Artif Intel Ap Leading The Web in Concurrent Engineering: Next Generation Concurrent Engineering = Front. Artif. Intel. Ap. Lead Markets for Environmental Innovations = Zew Econ Stud Lead Markets for Environmental Innovations = Zew. Econ. Stud. Lead-seeking Approaches = Top Med Chem Ser Lead-seeking Approaches = Top. Med. Chem. Ser. Leaflet Agricultural Research Organization, Division of Forestry = Leafl. Agric. Res. Organ., Div. For. League exchange = League Exch League Exchange = League Exch. League lines = League Lines League Lines = League Lines Leak Detection for Underground Storage Tanks = Am Soc Test Mater Leak Detection for Underground Storage Tanks = Am. Soc. Test. Mater. Lean Burn Combustion Engines = Imeche Sem Lean Burn Combustion Engines = Imeche. Sem. Lean Business Systems and Beyond = Int Fed Info Proc Lean Business Systems and Beyond = Int. Fed. Info. Proc. Lean Enterprise Software and Systems = Lect Notes Bus Inf Lean Enterprise Software and Systems = Lect. Notes. Bus. Inf. Lean Enterprise Software and Systems = Lect Notes Bus Inf P Lean Enterprise Software and Systems = Lect. Notes. Bus. Inf. P. Lean Performance Erp Project Management: Implementing The Virtual Lean Enterprise, Second Edition = Resource Manag-crc Lean Performance Erp Project Management: Implementing The Virtual Lean Enterprise, Second Edition = Resource. Manag-crc. Lean Production and Beyond = Forum S Labour Chang Lean Production and Beyond = Forum. S. Labour. Chang. Learned Antiquity = Gr Stud Cult Learned Antiquity = Gr. Stud. Cult. Learned Publishing = Learn Publ Learned Publishing = Learn. Publ. Learned Queen: The Image of Elizabeth I in Politics and Poetry = Queenship Power Learned Queen: The Image of Elizabeth I in Politics and Poetry = Queenship. Power. Learners in A Changing Learning Landscape = Lifelong Learn Book Learners in A Changing Learning Landscape = Lifelong. Learn. Book. Learners, Learning and Educational Activity = Found Futures Educ Learners, Learning and Educational Activity = Found. Futures. Educ. Learning Across Sites: New Tools, Infrastructures and Practices = New Persp Learn Inst Learning Across Sites: New Tools, Infrastructures and Practices = New Persp. Learn. Inst. Learning and Adaption in Multi-agent Systems = Lect Notes Comput Sc Learning and Adaption in Multi-agent Systems = Lect. Notes. Comput. Sc. Learning and Behavior = Learn. Behav. Learning and Individual Differences = Learn Individ Differ Learning and Individual Differences = Learn. Individ. Differ. Learning and Instruction = Eur Res Int Learning and Instruction = Eur. Res. Int. Learning and Instruction = Learn Instr Learning and Instruction = Learn. Instr. Learning and Intelligent Optimization = Lect Notes Comput Sc Learning and Intelligent Optimization = Lect. Notes. Comput. Sc. Learning and Memory Developments and Intellectual Disabilities = Neurosci Res Prog Se Learning and Memory Developments and Intellectual Disabilities = Neurosci. Res. Prog. Se. Learning and Memory = Learn. Mem. Learning and motivation = Learn Motiv Learning and Motivation = Learn Motiv Learning and Motivation = Learn. Motiv. Learning and Teaching Early Math: The Learning Trajectories Approach = Stud Math Think Lear Learning and Teaching Early Math: The Learning Trajectories Approach = Stud. Math. Think. Lear. Learning & behavior : a Psychonomic Society publication = Learn Behav Learning & Behavior = Learn Behav Learning & Behavior = Learn. Behav. Learning By Doing in Markets, Firms, and Countries = Nber Conf R Learning By Doing in Markets, Firms, and Countries = Nber. Conf. R. Learning By Playing = Lect Notes Comput Sc Learning By Playing = Lect. Notes. Comput. Sc. Learning Capitalist Culture: Deep in The Heart of Tejas, Second Edition = Contemp Ethnogr Learning Capitalist Culture: Deep in The Heart of Tejas, Second Edition = Contemp. Ethnogr. Learning Classifier Systems in Data Mining = Stud Comput Intell Learning Classifier Systems in Data Mining = Stud. Comput. Intell. Learning Classifier Systems = Lect Notes Artif Int Learning Classifier Systems = Lect. Notes. Artif. Int. Learning Commons: Evolution and Collaborative Essentials = Chandos Inf Prof Ser Learning Commons: Evolution and Collaborative Essentials = Chandos. Inf. Prof. Ser. Learning Communities in Practice = Explor Educ Purp Learning Communities in Practice = Explor. Educ. Purp. Learning, Control and Hybrid Systems = Lect Notes Contr Inf Learning, Control and Hybrid Systems = Lect. Notes. Contr. Inf. Learning Curve = Learn. Curve Learning disabilities research & practice : a publication of the Division for Learning Disabilities, Council for Exceptional Children = Learn Disabil Res Pract Learning Disability Quarterly = Learn Disability Q Learning Disability Quarterly = Learn. Disability Q. Learning Efficacy: Celebrations and Persuasions = Res Teach Learn Learning Efficacy: Celebrations and Persuasions = Res. Teach. Learn. Learning for Economic Self-sufficiency: Constructing Pedagogies of Hope Among Low-income, Low-literate Adults = Adult Educ Spec Top Learning for Economic Self-sufficiency: Constructing Pedagogies of Hope Among Low-income, Low-literate Adults = Adult. Educ. Spec. Top. Learning Forensic Assessment = Int Persp Foren Learning Forensic Assessment = Int. Persp. Foren. Learning From Clusters: A Critical Assessment From An Economic-geographical Perspective = Geojournal Lib Learning From Clusters: A Critical Assessment From An Economic-geographical Perspective = Geojournal. Lib. Learning From Failure: Long-term Behaviour of Heavy Masonry Structures = Int Ser Adv Archit Learning From Failure: Long-term Behaviour of Heavy Masonry Structures = Int. Ser. Adv. Archit. Learning From Greensboro: Truth and Reconciliation in The United States = Pa Stud Hum Rights Learning From Greensboro: Truth and Reconciliation in The United States = Pa. Stud. Hum. Rights. Learning From Inquiry in Practice = Astr Soc P Learning From Inquiry in Practice = Astr. Soc. P. Learning From Nature How to Design New Implantable Biomaterials: From Biomineralization Fundamentals to Biomimetic Materials and Processing Routes = Nato Sci Ser Ii-math Learning From Nature How to Design New Implantable Biomaterials: From Biomineralization Fundamentals to Biomimetic Materials and Processing Routes = Nato. Sci. Ser. Ii-math. Learning From Nature How to Design New Implantable Biomaterials: From Biomineralization Fundamentals to Biomimetic Materials and Processing Routes = Nato Sci Ser Ii Math Learning From Nature How to Design New Implantable Biomaterials: From Biomineralization Fundamentals to Biomimetic Materials and Processing Routes = Nato. Sci. Ser. Ii. Math. Learning From Research On Teaching: Perspective, Methodology, and Representation = Adv Res Teach Learning From Research On Teaching: Perspective, Methodology, and Representation = Adv. Res. Teach. Learning Grid Handbook: Concepts Technologies and Applications = Future Learn Learning Grid Handbook: Concepts Technologies and Applications = Future. Learn. Learning How to Learn: Tools for Schools = Improv Learn Tlrp Learning How to Learn: Tools for Schools = Improv. Learn. Tlrp. Learning Imaging = Learn Imaging Learning Imaging = Learn. Imaging Learning in Communities = Hum-comput Int-sprin Learning in Communities = Hum-comput. Int-sprin. Learning in Cultural Context: Family, Peers, and School = Int Cult Psychol Learning in Cultural Context: Family, Peers, and School = Int. Cult. Psychol. Learning in Economic Systems With Expectations Feedback = Lect Notes Econ Math Learning in Economic Systems With Expectations Feedback = Lect. Notes. Econ. Math. Learning in Graphical Models = Nato Adv Sci I D-beh Learning in Graphical Models = Nato. Adv. Sci. I. D-beh. Learning in School, Home and Community: Ict for Early and Elementary Education = Int Fed Info Proc Learning in School, Home and Community: Ict for Early and Elementary Education = Int. Fed. Info. Proc. Learning Institutionalized = N D Conf M Learning Institutionalized = N. D. Conf. M. Learning in The Network Society and The Digitized School = Educ Compet Glob Wor Learning in The Network Society and The Digitized School = Educ. Compet. Glob. Wor. Learning in The Synergy of Multiple Disciplines, Proceedings = Lect Notes Comput Sc Learning in The Synergy of Multiple Disciplines, Proceedings = Lect. Notes. Comput. Sc. Learning Languages, Learning Life Skills = Educ Linguist Learning Languages, Learning Life Skills = Educ. Linguist. Learning Machine Translation = Neural Inf Process S Learning Machine Translation = Neural. Inf. Process. S. Learning Matlab = Other Titl Appl Math Learning Matlab = Other. Titl. Appl. Math. Learning Media and Technology = Learn Media Technol Learning Media and Technology = Learn. Media Technol. Learning & memory (Cold Spring Harbor, N.Y.) = Learn Mem Learning & Memory = Learn Memory Learning & Memory = Learn. Memory Learning Pediatric Imaging: 100 Essential Cases = Learn Imaging Learning Pediatric Imaging: 100 Essential Cases = Learn. Imaging. Learning Robots, Proceedings = Lect Notes Artif Int Learning Robots, Proceedings = Lect. Notes. Artif. Int. Learning, Skill Acquisition, Reading, and Dyslexia = Ann Ny Acad Sci Learning, Skill Acquisition, Reading, and Dyslexia = Ann. Ny. Acad. Sci. Learning Software Organizations: Methodology and Applications = Lect Notes Comput Sc Learning Software Organizations: Methodology and Applications = Lect. Notes. Comput. Sc. Learning Theory and Kernel Machines = Lect Notes Artif Int Learning Theory and Kernel Machines = Lect. Notes. Artif. Int. Learning Theory, Proceedings = Lect Notes Artif Int Learning Theory, Proceedings = Lect. Notes. Artif. Int. Learning Theory, Proceedings = Lect Notes Comput Sc Learning Theory, Proceedings = Lect. Notes. Comput. Sc. Learning Through Practice: Models, Traditions, Orientations and Approaches = Prof Pract-based Lea Learning Through Practice: Models, Traditions, Orientations and Approaches = Prof. Pract-based. Lea. Learning Through Teaching Mathematics: Development of Teachers' Knowledge and Expertise in Practice = Math Teach Educ Learning Through Teaching Mathematics: Development of Teachers' Knowledge and Expertise in Practice = Math. Teach. Educ. Learning to Be Professionals = Innov Chang Prof Edu Learning to Be Professionals = Innov. Chang. Prof. Edu. Learning to Mentor-as-praxis: Foundations for A Curriculum in Teacher Education = Prof Learn Dev Sch H Learning to Mentor-as-praxis: Foundations for A Curriculum in Teacher Education = Prof. Learn. Dev. Sch. H. Learning to Work = Brookings D Learning to Work = Brookings. D. Learning, Training, and Development in Organizations = Siop Organ Front Ser Learning, Training, and Development in Organizations = Siop. Organ. Front. Ser. Learning Vascular and Interventional Radiology = Learn Imaging Learning Vascular and Interventional Radiology = Learn. Imaging. Learning With Digital Games: A Practical Guide to Engaging Students in Higher Education = Open Flex Learn Ser Learning With Digital Games: A Practical Guide to Engaging Students in Higher Education = Open. Flex. Learn. Ser. Learning Without Boundaries = Defen Res S Learning Without Boundaries = Defen. Res. S. Learning With Recurrent Neural Networks = Lect Notes Contr Inf Learning With Recurrent Neural Networks = Lect. Notes. Contr. Inf. Learning, Work and Social Responsibility = Lifelong Learn Book Learning, Work and Social Responsibility = Lifelong. Learn. Book. Lea's Communication Series = Lea Commun Ser Lea's Communication Series = Lea. Commun. Ser. Leas Communication Series = Lea Commun Ser Leas Communication Series = Lea. Commun. Ser. Lea's Organization and Management Series = Leas Org Man Series Lea's Organization and Management Series = Leas. Org. Man. Series Least-squares Finite Element Methods = Appl Math Sci Least-squares Finite Element Methods = Appl. Math. Sci. Least Squares Orthogonal Distance Fitting of Curves and Surfaces in Space = Lect Notes Comput Sc Least Squares Orthogonal Distance Fitting of Curves and Surfaces in Space = Lect. Notes. Comput. Sc. Lea Telecommunications Series = Lea Telecommun Lea Telecommunications Series = Lea Telecommun. Leaving Terrorism Behind: Individual and Collective Disengagement = Cass Ser Polit Viole Leaving Terrorism Behind: Individual and Collective Disengagement = Cass. Ser. Polit. Viole. Leaving The Cradle : Human Exploration of Space in The 21st Century = Sci Tech Leaving The Cradle : Human Exploration of Space in The 21st Century = Sci. Tech. Lebanese Medical Journal = Leban Med J Lebanese Medical Journal = Leban. Med. J. Lebanon: Liberation, Conflict, and Crisis = Middle E Focus Lebanon: Liberation, Conflict, and Crisis = Middle. E. Focus. Lebensmittelindustrie = Lebensmittelindustr Lebensmittelindustrie = Lebensmittelindustr. Lebensmittel Industrie = Lebensmittelindustr Lebensmittel Industrie = Lebensmittelindustr. Lebensmittel-Wissenschaft + [i.e. und] Technologie. Food science + technology. Science + technologie alimentaire = Lebenson Wiss Technol Lebensmittel-wissenschaft & Technologie = Lebensm Wiss Technol Lebensmittel-wissenschaft & Technologie = Lebensm. Wiss. Technol. Lebensmittel-wissenschaft Und-technologie-food Science and Technology = Lebensm-wiss Technol Lebensmittel-wissenschaft Und-technologie-food Science and Technology = Lebensm-wiss. Technol. Lebensmittel-Wissenschaft und -Technologie = Lebensm.-Wiss. Technol. Lebensmittel-Wissenschaft und Technologie = Lebensm. Wiss. Technol. Lebensversicherungs Medizin = Lebensversicher Med Lebensversicherungs Medizin = Lebensversicher. Med. Leber Magen Darm = Leber Magen Darm Leber, Magen, Darm = Leber Magen Darm Leber, Magen, Darm = Leber. Magen. Darm Lebesgue and Sobolev Spaces With Variable Exponents = Lect Notes Math Lebesgue and Sobolev Spaces With Variable Exponents = Lect. Notes. Math. Bulletin trimestriel du planning familial = Bull Trimest Plan Fam Le Centre-est medical = Cent Est Med Le Chirurgien-dentiste de France = Chir Dent Fr L'Echo medical des Cevennes = Echo Med Cevennes L'echo medical du nord = Echo Med Nord L'Economia umana; rassegna medica internazionale = Economia Umana Rassegna Medica Internazionale L'Economie de la Reunion = Econ Reun Le Contrat social = Contrat Soc Le Corps medical = Corps Med (Ettelbruck) Le Courrier de l'Unesco = Courr Unesco Le courrier des pays de l'Est / publie avec le concours du Centre de documentation sur l'U.R.S.S. et les pays slaves de l'Ecole pratique des hautes etudes = Courr Pays Est Lecourt-global Communications in Legal Information Technology = Lecourt Lecourt-global Communications in Legal Information Technology = Lecourt. L'Écrit du temps = EDT Lectio Divina = Divin Lect Lectio Divina = Divin. Lect. Lecturas de Economia=Lecturas Econ. Lecturas Matemáticas = Lect. Mat. Lecture Notes in Applied and Computational Mechanics = Lect Notes Appl Comp Lecture Notes in Applied and Computational Mechanics = Lect. Notes Appl. Comp. Lecture Notes in Applied and Computational Mechanics = Ln App C M Lecture Notes in Applied and Computational Mechanics = Ln. App. C. M. Lecture Notes in Applied Mechanics = L Not App M Lecture Notes in Applied Mechanics = L. Not. App. M. Lecture Notes in Artificial Intelligence = Lect Notes Artif Int Lecture Notes in Artificial Intelligence = Lect. Notes Artif. Int. Lecture Notes in Artificial Intelligence = Lect Notes Comput Sc Lecture Notes in Artificial Intelligence = Lect. Notes Comput. Sc. Lecture Notes in Artificial Intelligence = Lecture Notes in Artificial Intelligence Lecture Notes in Bioinformatics = Lect N Bioinformat Lecture Notes in Bioinformatics = Lect. N. Bioinformat. Lecture Notes in Biomathematics = Lect Notes Biomath Lecture Notes in Biomathematics = Lect. Notes Biomath. Lecture Notes in Biomathematics = Lecture Notes in Biomath. Lecture Notes in Business Information Processing = Lect Notes Bus Inf Lecture Notes in Business Information Processing = Lect. Notes Bus. Inf. Lecture Notes in Business Information Processing = Lect Notes Bus Inf P Lecture Notes in Business Information Processing = Lect. Notes Bus. Inf. P. Lecture Notes in Chemistry = Lect N Chem Lecture Notes in Chemistry = Lect. N. Chem. Lecture Notes in Chemistry = Lect. Notes Chem. Lecture Notes in Chemistry = Lecture Notes in Chem. Lecture Notes in Computational Science and Engineering = Lect Notes Comp Sci Lecture Notes in Computational Science and Engineering = Lect. Notes Comp. Sci. Lecture Notes in Computational Science and Engineering = Lect. Notes Comput. Sci. Eng. Lecture Notes in Computer Science = Lect Notes Comput Sc Lecture Notes in Computer Science = Lect. Notes Comput. Sc. Lecture notes in computer science = Lect Notes Comput Sci Lecture Notes in Computer Science = Lect. Notes Comput. Sci. Lecture Notes in Computer Science = Lecture Notes in Comput. Sci. Lecture Notes in Computer Science <d> = Lect Notes Comput<d> Lecture Notes in Computer Science <d> = Lect. Notes Comput<d>. Lecture Notes in Control and Information Sciences = Lect Notes Contr Inf Lecture Notes in Control and Information Sciences = Lect. Notes Contr. Inf. Lecture Notes in Control and Information Sciences = Lecture Notes in Control and Inform. Sci. Lecture Notes in Earth Sciences = Lect Notes Earth Sci Lecture Notes in Earth Sciences = Lect. Notes Earth Sci. Lecture Notes in Economics and Mathematical Systems = Lect Notes Econ Math Lecture Notes in Economics and Mathematical Systems = Lect. Notes Econ. Math. Lecture Notes in Economics and Mathematical Systems = Lecture Notes in Econom. and Math. Systems Lecture Notes in Electrical Engineering = Lect Not El Engr Lecture Notes in Electrical Engineering = Lect. Not. El. Engr. Lecture Notes in Electrical Engineering = Lect Notes Electr En Lecture Notes in Electrical Engineering = Lect. Notes Electr. En. Lecture Notes in Engineering and Computer Science = Lect Notes Eng Comp Lecture Notes in Engineering and Computer Science = Lect. Notes Eng. Comp. Lecture Notes in Geoinformation and Cartography = Lec Not Geo Carto Lecture Notes in Geoinformation and Cartography = Lec. Not. Geo. Carto. Lecture Notes in Geoinformation and Cartography = Lect Notes Geoinf Ca Lecture Notes in Geoinformation and Cartography = Lect. Notes Geoinf. Ca. Lecture Notes in Information Technology = Lect Note Informtech Lecture Notes in Information Technology = Lect. Note. Informtech. Lecture Notes in Logic = Lect Notes Logic Lecture Notes in Logic = Lect. Notes Logic Lecture Notes in Logic = Lecture Notes Logic Lecture Notes in Mathematics = Lect Notes Math Lecture Notes in Mathematics = Lect. Notes Math. Lecture Notes in Mathematics = Lecture Notes in Math. Lecture Notes in Nanoscale Science and Technology = Lect Notes Nanoscale Lecture Notes in Nanoscale Science and Technology = Lect. Notes Nanoscale Lecture Notes in Nanoscale Science and Technology = Lect Nts Nnscl Sci Lecture Notes in Nanoscale Science and Technology = Lect. Nts. Nnscl. Sci. Lecture Notes in Numerical and Applied Analysis = Lecture Notes Numer. Appl. Anal. Lecture Notes in Operations Research = Lect Notes Oper Res Lecture Notes in Operations Research = Lect. Notes Oper. Res. Lecture Notes in Physics = Lect Notes Phys Lecture Notes in Physics = Lect. Notes Phys. Lecture Notes in Physics = Lecture Notes in Phys. Lecture Notes in Physics = Lecture Notes in Phys. New Ser. m Monogr. Lecture Notes in Physics Monographs = Lect. Notes Phys. Monogr. Lecture Notes in Pure and Applied Mathematics = Lect Notes Pure Appl Lecture Notes in Pure and Applied Mathematics = Lect. Notes Pure Appl. Lecture Notes in Pure and Applied Mathematics = Lecture Notes in Pure and Appl. Math. Lecture Notes in Signal Science, Internet and Education (ssip'07/miv'07/diweb'07) = Ele Com Eng Lecture Notes in Signal Science, Internet and Education (ssip'07/miv'07/diweb'07) = Ele. Com. Eng. Lecture Notes in Social Networks = Lect Notes Soc Netw Lecture Notes in Social Networks = Lect. Notes Soc. Netw. Lecture Notes in Statistics = Lect Notes Stat Lecture Notes in Statistics = Lect. Notes Stat. Lecture Notes in Statistics = Lecture Notes in Statist. Lecture Notes of The Institute for Computer Sciences Social Informatics and Telecommunications Engineering = L N Inst Comp Sci So Lecture Notes of The Institute for Computer Sciences Social Informatics and Telecommunications Engineering = L. N. Inst. Comp. Sci. So. Lecture Notes of The Unione Matematica Italiana = Lect Notes Unione Ma Lecture Notes of The Unione Matematica Italiana = Lect. Notes Unione Ma. Lecture Notes On Energy and Environment = Energy Environ Eng S Lecture Notes On Energy and Environment = Energy Environ. Eng. S. Lecture Notes On Numerical Methods in Engineering and Sciences = Lect Notes Numer Met Lecture Notes On Numerical Methods in Engineering and Sciences = Lect. Notes Numer. Met. Lecture Notes On The General Theory of Relativity = Lect Notes Phys Lecture Notes On The General Theory of Relativity = Lect. Notes Phys. Lecture Notes On Turbulence and Coherent Structures in Fluids, Plasmas and Nonlinear Media = World Sci Lect Notes Lecture Notes On Turbulence and Coherent Structures in Fluids, Plasmas and Nonlinear Media = World. Sci. Lect. Notes Lecture Notes-scuola Normale Superiore = Lect Notes-sc Norm S Lecture Notes-scuola Normale Superiore = Lect. Notes-sc. Norm. S. Lecture Notes Series, Institute for Mathematical Sciences, National University of Singapore = Lect Notes Ser Inst Lecture Notes Series, Institute for Mathematical Sciences, National University of Singapore = Lect. Notes Ser. Inst. Lecture Notes Series = Lecture Notes Ser. Lecture Notes Series on Computing = Lecture Notes Ser. Comput. Lecture Notes Series On Computing = Ln Ser Computing Lecture Notes Series On Computing = Ln. Ser. Computing Lectures and Thoughts On Mineral Economics = Econ Iss Probl Persp Lectures and Thoughts On Mineral Economics = Econ. Iss. Probl. Persp. Lecture Series On Computer and Computational Sciences = Lect Ser Computer Co Lecture Series On Computer and Computational Sciences = Lect. Ser. Computer Co. Lectures in Applied Mathematics = Lectures in Appl. Math. Lectures in Astrobiology, Vol 1 = Adv Astrobio Biogeop Lectures in Astrobiology, Vol 1 = Adv. Astrobio. Biogeop. Lectures in Astrobiology, Vol 1 = Adv Astrobiol Biogeo Lectures in Astrobiology, Vol 1 = Adv. Astrobiol. Biogeo. Lectures in Astrobiology Vol 2 = Adv Astrobio Biogeop Lectures in Astrobiology Vol 2 = Adv. Astrobio. Biogeop. Lectures in Astrobiology Vol 2 = Adv Astrobiol Biogeo Lectures in Astrobiology Vol 2 = Adv. Astrobiol. Biogeo. Lectures in Mathematics ETH Zürich = Lectures Math. ETH Zürich Lectures in Mathematics = Lect Math Lectures in Mathematics = Lect. Math. Lectures in Real Geometry = De Gru Ex M Lectures in Real Geometry = De. Gru. Ex. M. Lectures Notes On Composite Materials: Current Topics and Achievements = Solid Mech Appl Lectures Notes On Composite Materials: Current Topics and Achievements = Solid. Mech. Appl. Lectures Notes On Diophantine Analysis = Appunti Sc Norm Supe Lectures Notes On Diophantine Analysis = Appunti. Sc. Norm. Supe. Lectures Ob Probability Theory and Statistics = Lect Notes Math Lectures Ob Probability Theory and Statistics = Lect. Notes. Math. Lectures On Advanced Computational Methods in Mechanics = Rad Ser Comp App Lectures On Advanced Computational Methods in Mechanics = Rad. Ser. Comp. App. Lectures On Advances in Combinatorics = Universitext Lectures On Advances in Combinatorics = Universitext. Lectures On Algebraic Statistics = Oberwolfach Semin Lectures On Algebraic Statistics = Oberwolfach. Semin. Lectures On Choquet's Theorem, Second Edition = Lect Notes Math Lectures On Choquet's Theorem, Second Edition = Lect. Notes. Math. Lectures On Concurrency and Petri Nets = Lect Notes Comput Sc Lectures On Concurrency and Petri Nets = Lect. Notes. Comput. Sc. Lectures On Cosmology: Accelerated Expansion of The Universe = Lect Notes Phys Lectures On Cosmology: Accelerated Expansion of The Universe = Lect. Notes. Phys. Lectures On Data Security = Lect Notes Comput Sc Lectures On Data Security = Lect. Notes. Comput. Sc. Lectures On Differential Geometry = Ems Ser Lect Math Lectures On Differential Geometry = Ems. Ser. Lect. Math. Lectures On Dynamical Systems: Hamiltonian Vector Fields and Symplectic Capacities = Ems Textb Math Lectures On Dynamical Systems: Hamiltonian Vector Fields and Symplectic Capacities = Ems. Textb. Math. Lectures On Flavor Physics = Lect Notes Phys Lectures On Flavor Physics = Lect. Notes. Phys. Lectures On Gaussian Integral Operators and Classical Groups = Ems Ser Lect Math Lectures On Gaussian Integral Operators and Classical Groups = Ems. Ser. Lect. Math. Lectures On Global Optimization = Fields I Commun Lectures On Global Optimization = Fields. I. Commun. Lectures On Global Optimization = Fields Inst Commun Lectures On Global Optimization = Fields. Inst. Commun. Lectures On Probability Theory and Statistics = Lect Notes Math Lectures On Probability Theory and Statistics = Lect. Notes. Math. Lectures On Proof Verification and Approximation Algorithms = Lect Notes Comput Sc Lectures On Proof Verification and Approximation Algorithms = Lect. Notes. Comput. Sc. Lectures On Quantum Gravity = Ser Cent Es Lectures On Quantum Gravity = Ser. Cent. Es. Lectures On Quark Matter = Lect Notes Phys Lectures On Quark Matter = Lect. Notes. Phys. Lectures On Resolution of Singularities = Ann Math Stud Lectures On Resolution of Singularities = Ann. Math. Stud. Lectures On Solar Physics = Lect Notes Phys Lectures On Solar Physics = Lect. Notes. Phys. Lectures On Stochastic Programming = Mps-siam Ser Optimiz Lectures On Stochastic Programming = Mps-siam. Ser. Optimiz. Lectures On Superconductivity in Networks and Mesoscopic Systems = Aip Conf Proc Lectures On Superconductivity in Networks and Mesoscopic Systems = Aip. Conf. Proc. Lectures On The Automorphism Groups of Kobayashi-hyberbolic Manifolds = Lect Notes Math Lectures On The Automorphism Groups of Kobayashi-hyberbolic Manifolds = Lect. Notes. Math. Lectures On The Electroweak Interactions = Appunti Sc Norm Supe Lectures On The Electroweak Interactions = Appunti. Sc. Norm. Supe. Lectures On The L2-sobolev Theory of The Delta-neumann Problem = Esi Lect Math Phys Lectures On The L2-sobolev Theory of The Delta-neumann Problem = Esi. Lect. Math. Phys. Lectures On The Physics of Highly Correlated Electron Systems Iv = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems Iv = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems Ix = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems Ix = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems V = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems V = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems Vi = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems Vi = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems Vii = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems Vii = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems Viii = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems Viii = Aip. Conf. Proc. Lectures On The Physics of Highly Correlated Electron Systems X = Aip Conf Proc Lectures On The Physics of Highly Correlated Electron Systems X = Aip. Conf. Proc. Lectures On The Physics of Strongly Correlated Systems Xi = Aip Conf Proc Lectures On The Physics of Strongly Correlated Systems Xi = Aip. Conf. Proc. Lectures On The Physics of Strongly Correlated Systems Xii = Aip Conf Proc Lectures On The Physics of Strongly Correlated Systems Xii = Aip. Conf. Proc. Lectures On The Physics of Strongly Correlated Systems Xiii = Aip Conf Proc Lectures On The Physics of Strongly Correlated Systems Xiii = Aip. Conf. Proc. Lectures On The Physics of Strongly Correlated Systems Xiv = Aip Conf Proc Lectures On The Physics of Strongly Correlated Systems Xiv = Aip. Conf. Proc. Lectures on the scientific basis of medicine = Lect Sci Basis Med Lectures On The Theory of Games = Ann Math Stud Lectures On The Theory of Games = Ann. Math. Stud. Lectures On Topological Fluid Mechanics = Lect Notes Math Lectures On Topological Fluid Mechanics = Lect. Notes. Math. Lectures On Ultrafast Intense Laser Science 1 = Springer Ser Chem Ph Lectures On Ultrafast Intense Laser Science 1 = Springer. Ser. Chem. Ph. Led and Display Technologies = P Soc Photo-opt Ins Led and Display Technologies = P. Soc. Photo-opt. Ins. Le Debat = Debat Le Developpement voltaique = Dev Volta Le Diabete = Diabete Leeds Dental Journal = Leeds Dent J Leeds Dental Journal = Leeds Dent. J. Left Party in Contemporary German Politics = New Perspect Ger Stu Left Party in Contemporary German Politics = New. Perspect. Ger. Stu. Left-right Asymmetry in Vertebrate Development = Adv Anat Embryol Cel Left-right Asymmetry in Vertebrate Development = Adv. Anat. Embryol. Cel. Legacies of Richard Popkin = Int Arch H Legacies of Richard Popkin = Int. Arch. H. Legacy for Living Systems: Gregory Bateson As Precursor to Biosemiotics = Biosemiotics Legacy for Living Systems: Gregory Bateson As Precursor to Biosemiotics = Biosemiotics Ser Legacy for Living Systems: Gregory Bateson As Precursor to Biosemiotics = Biosemiotics Ser. Legacy = Legacy Legal and Criminological Psychology = Legal Criminol Psych Legal and Criminological Psychology = Legal Criminol. Psych. Legal Aspects of International Organization = Leg A Int O Legal Aspects of International Organization = Leg. A. Int. O. Legal aspects of medical practice = Leg Aspects Med Pract Legal Aspects of Medical Practice = Leg. Aspects Med. Pract. Legal Capital in Europe = Eur Co Financ Law Re Legal Capital in Europe = Eur. Co. Financ. Law. Re. Legal-economic Nexus = Econ Legal Relation Legal-economic Nexus = Econ. Legal. Relation. Legal ethics (Oxford, England) = Leg Ethics Legal Frameworks for Forest Management in Asia = Oc P Prog Environm Legal Frameworks for Forest Management in Asia = Oc. P. Prog. Environm. Legal Issues in Electronic Banking = St Trans E Legal Issues in Electronic Banking = St. Trans. E. Legal Issues of Services of General Interest = Leg Iss Serv Gen Int Legal Issues of Services of General Interest = Leg. Iss. Serv. Gen. Int. Legalizing Religion: The Indian Supreme Court and Secularism = Pol Stud Legalizing Religion: The Indian Supreme Court and Secularism = Pol. Stud. Legal Knowledge and Information Systems = Fr Art Int Legal Knowledge and Information Systems = Fr. Art. Int. Legal Knowledge and Information Systems = Front Artif Intel Ap Legal Knowledge and Information Systems = Front. Artif. Intel. Ap. Legal Knowledge and Information Systems: Jurix 2009: The Twenty-second Annual Conference = Front Artif Intel Ap Legal Knowledge and Information Systems: Jurix 2009: The Twenty-second Annual Conference = Front. Artif. Intel. Ap. Legal medical quarterly = Leg Med Q Legal Medical Quarterly = Leg. Med. Q. Legal medicine annual = Leg Med Annu Legal Medicine Annual = Leg. Med. Annu. Legal Medicine = Legal Med Legal Medicine = Legal Med. Legal Medicine = Legal Med-tokyo Legal Medicine = Legal Med-tokyo. Legal medicine = Leg Med Legal Medicine = Leg Med Legal Medicine = Leg. Med. Legal medicine (Tokyo, Japan) = Leg Med (Tokyo) Legal Orderings and Economic Institutions = Routl Siena Stud Pol Legal Orderings and Economic Institutions = Routl. Siena. Stud. Pol. Legal Perspectives in Bioethics = Routl Ann Bioethics Legal Perspectives in Bioethics = Routl. Ann. Bioethics Legal Perspectives On Equal Treatment and Non-discrimination = Stud Emp Soc Policy Legal Perspectives On Equal Treatment and Non-discrimination = Stud. Emp. Soc. Policy. Legal Philosophy: General Aspects = Arsp Beiheft Legal Philosophy: General Aspects = Arsp. Beiheft. Legal Positon of Churches and Church Autonomy = Scrip Canon Legal Positon of Churches and Church Autonomy = Scrip. Canon. Legal Programming: Designing Legally Compliant Rfid and Software Agent Architectures for Retail Processes and Beyond = Integr Ser Inform Sy Legal Programming: Designing Legally Compliant Rfid and Software Agent Architectures for Retail Processes and Beyond = Integr. Ser. Inform. Sy. Legal reference services quarterly = Legal Ref Serv Q Legal Rules of Technology Transfer in Asia = Max Planck Series Legal Rules of Technology Transfer in Asia = Max. Planck. Series. Legal Sizes and Their Use in Fisheries Management = Bur Rur R P Legal Sizes and Their Use in Fisheries Management = Bur. Rur. R. P. Legal studies (Society of Legal Scholars) = Leg Stud (Soc Leg Scholars) Legal studies (Society of Public Teachers of Law) = Leg Stud Legal Theory, Sources of Law and The Semantic Web = Front Artif Intel Ap Legal Theory, Sources of Law and The Semantic Web = Front. Artif. Intel. Ap. Lege artis medicinae : uj magyar orvosi hirmondo = Lege Artis Med Legenda Series = Legenda Ser Legenda Series = Legenda Ser. Legenda Special Lecture Series = Legend Spec Lect Ser Legenda Special Lecture Series = Legend. Spec. Lect. Ser. Le Genre humain = GH Legionella Pneumophila: From Environment to Disease = Env Health Phys Chem Legionella Pneumophila: From Environment to Disease = Env. Health. Phys. Chem. Legislation for Noise and Vibration = Imeche Sem Legislation for Noise and Vibration = Imeche. Sem. Legislative Studies Quarterly = Legis Stud Quart Legislative Studies Quarterly = Legis. Stud. Quart. Legitimacy: Ambiguities of Political Success Or Failure in East and Southeast Asia = Ser Contemp China Legitimacy: Ambiguities of Political Success Or Failure in East and Southeast Asia = Ser. Contemp. China. Legitimacy in An Age of Global Politics = Transform State Legitimacy in An Age of Global Politics = Transform. State. Legitimacy in European Nature Conservation Policy: Case Studies in Multilevel Governance = Int Libr Environ Agr Legitimacy in European Nature Conservation Policy: Case Studies in Multilevel Governance = Int. Libr. Environ. Agr. Legitimacy in International Law = Beitr Ausl Offentl R Legitimacy in International Law = Beitr. Ausl. Offentl. R. Legitimacy in International Society: Japan's Reaction to Global Wildlife Preservation = St Antonys Ser Legitimacy in International Society: Japan's Reaction to Global Wildlife Preservation = St. Antonys. Ser. Legitimation of Sole Rule in The Context of The Generation Discussion = Beitr Altertumskunde Legitimation of Sole Rule in The Context of The Generation Discussion = Beitr. Altertumskunde. Legitimising The Use of Force in International Politics = Contemp Secur Stud Legitimising The Use of Force in International Politics = Contemp. Secur. Stud. Legume Research = Legume Res Legume Research = Legume Res. L'Egypte contemporaine = Egypte Contemp Lehrbücher und Monographien zur Didaktik der Mathematik = Lehrbücher Monogr. Didakt. Math. Lehrbuch Mathematik = Lehrbuch Math. Leibniz and The English-speaking World = New Syn Hist L Leibniz and The English-speaking World = New. Syn. Hist. L. Leibniz's Final System: Monads, Matter, and Animals = Routledge Stud Seven Leibniz's Final System: Monads, Matter, and Animals = Routledge. Stud. Seven. Leibniz's Metaphysics of Time and Space = Bost Stud Philos Sci Leibniz's Metaphysics of Time and Space = Bost. Stud. Philos. Sci. Leibniz: What Kind of Rationalist? = Logic Epistemol Unit Leibniz: What Kind of Rationalist? = Logic. Epistemol. Unit. Leiden Journal of International Law = Leiden J Int Law Leiden Journal of International Law = Leiden J. Int. Law Le infezioni in medicina : rivista periodica di eziologia, epidemiologia, diagnostica, clinica e terapia delle patologie infettive = Infez Med Leipzig Explorations in Literature and Culture = Le Explorat Lit Cul Leipzig Explorations in Literature and Culture = Le. Explorat. Lit. Cul. Leistungsubertragung in Fahrzeuggetrieben: Grundlagen Der Auslegung Entwicklung Und Validierung Von Fahrzeuggetrieben Und Deren Komponenten = Vdi-buch Leistungsubertragung in Fahrzeuggetrieben: Grundlagen Der Auslegung Entwicklung Und Validierung Von Fahrzeuggetrieben Und Deren Komponenten = Vdi-buch. Leisure Sciences = Leis. Sci. Leisure Sciences = Leisure Sci Leisure Sciences = Leisure Sci. Leisure Studies = Leisure Stud Leisure Studies = Leisure Stud. Leitfäden der Angewandten Mathematik und Mechanik = Leitfäden Angew. Math. Mech. Leitfäden der Informatik = Leitfäden Inform. Leitfaden Fur Den Praktiker = Leitf Prakt Leitfaden Fur Den Praktiker = Leitf. Prakt. Leitfäden und Monographien der Informatik = Leitfäden Monogr. Inform. Leitz, Mitteilungen für Wissenschaft und Technik = Leitz, Mitt. Wiss. Tech. Le Journal dentaire belge. Belgisch blad voor tandheelkunde = J Dent Belge Le Journal dentaire du Quebec = J Dent Que Le Journal medical libanais. The Lebanese medical journal = J Med Liban Lekarska veda v zahranici = Lek Veda Zahr Lekarska Veda v Zahranici = Lek. Veda Zahr. Lekarske listy = Lek List Lekarske prace = Lek Pr Lekarske Prace = Lek. Pr. Lekarsky obzor = Lek Obz Lekarz wojskowy = Lek Wojsk Le Lait = Lait Le Livre et l'estampe = Livre Estampe Le Mali medical = Mali Med Le Marche. Archeologia, storia, territorio = Marche Le Matematiche = Matematiche (Catania) Lemay = Great Gen Lemay = Great. Gen. Le Medecin de reserve = Med Reserve (Paris) Le Medecin d'usine; revue d'hygiene industrielle et des maladies professionnelles = Med Usine Rev Hyg Ind Mal Prof Le Medecin generaliste de France = Med Gen Fr Le Medecin libre = Med Libre Lemelson Center Studies in Invention and Innovation = Lemelson Cent Stud I Lemelson Center Studies in Invention and Innovation = Lemelson Cent. Stud. I. Le Monde alpin et rhodanien = Monde Alp Rhodan Le monde dentaire = Monde Dent Le Moniteur des pharmacies et des laboratoires = Monit Pharm Lab Le Mouvement social = Mouv Soc Lemouzi = Lemouzi Le Moyen Âge: revue trimestrielle d'histoire et de philologie = MA Le Museon = Museon Le Muséon. Revue d'études orientales = Museon L'Encephale = Encephale Lender of Last Resort = Routl Int Stud Money Lender of Last Resort = Routl. Int. Stud. Money. L'enfant en milieu tropical = Enfant Milieu Trop Leningradskiy Gosudarstvennyy Ordena Lenina Universitet imeni A = Leningrad. Gos. Univ. Uchen. Zap. Ser. Mat. Nauk Leningradskiy Gosudarstvennyy Universitet = Vychisl. Tekhn. Voprosy Kibernet. Leningradskiy Ordena Lenina Gosudarstvennyy Universitet imeni A = Metody Vychisl. Leningradskiy Universitet = Voprosy Teor. Sistem Avtomat. Upravleniya Lenition and Fortition = Stud Generat Gramm Lenition and Fortition = Stud. Generat. Gramm. Lenksysteme Fur Nutzfahrzeuge = Vdi-buch Lenksysteme Fur Nutzfahrzeuge = Vdi-buch. Le Nourrisson = Nourrisson Lens and eye toxicity research = Lens Eye Toxic Res Lens and Eye Toxicity Research = Lens Eye Toxic. Res. Lens and Optical Systems Design, Pts 1 and 2 = P Soc Photo-opt Ins Lens and Optical Systems Design, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Lens Design, Illumination, and Optomechanical Modeling = P Soc Photo-opt Ins Lens Design, Illumination, and Optomechanical Modeling = P. Soc. Photo-opt. Ins. L'Enseignement Mathématique = Enseign. Math. (2) Lens research = Lens Res Lentiviral Vectors = Curr Top Microbiol Lentiviral Vectors = Curr. Top. Microbiol. Lentivirus Gene Engineering Protocols, Second Edition = Methods Mol Biol Lentivirus Gene Engineering Protocols, Second Edition = Methods. Mol. Biol. Leodium = Leodium Leonardo = Leonardo Leonardo Music Journal = Leonardo Music J Leonardo Music Journal = Leonardo Music J. Leonardo Series = Leonardo Ser Leonardo Series = Leonardo Ser. Leonardo (series) = Leonardo Series Leonardo (series) = Leonardo Series. Leopoldina = Leopoldina Leos 2000 - Ieee Annual Meeting Conference Proceedings, Vols. 1 & 2 = Ieee Leos Ann Mtg Leos 2000 - Ieee Annual Meeting Conference Proceedings, Vols. 1 & 2 = Ieee Leos Ann. Mtg. Leos 2001: 14th Annual Meeting of The Ieee Lasers & Electro-optics Society, Vols 1 and 2, Proceedings = Ieee Leos Ann Mtg Leos 2001: 14th Annual Meeting of The Ieee Lasers & Electro-optics Society, Vols 1 and 2, Proceedings = Ieee Leos Ann. Mtg. Leos '93 Conference Proceedings = Ieee Leos Ann Mtg Leos '93 Conference Proceedings = Ieee. Leos Ann. Mtg. Leos '94 - Conference Proceedings, Vol 1 = Ieee Leos Ann Mtg Leos '94 - Conference Proceedings, Vol 1 = Ieee. Leos Ann. Mtg. Leos '94 - Conference Proceedings, Vol 2 = Ieee Leos Ann Mtg Leos '94 - Conference Proceedings, Vol 2 = Ieee. Leos Ann. Mtg. Leos '95 - Ieee Lasers and Electro-optics Society 1995 Annual Meeting - 8th Annual Meeting Conference Proceedings, Vols. 1 & 2 = Ieee Leos Ann Mtg Leos '95 - Ieee Lasers and Electro-optics Society 1995 Annual Meeting - 8th Annual Meeting Conference Proceedings, Vols. 1 & 2 = Ieee Leos Ann. Mtg. Leo The Great = Early Church Fathers Leo The Great = Early. Church. Fathers. Le Pharmacien biologiste = Pharm Biol Le Poumon et le coeur = Poumon Coeur Le Poumon = Poumon Le Progres medical = Progr Med (Paris) Le Progres odonto-stomatologique = Prog Odontostomatol Leprosy in India = Lepr India Leprosy in India = Lepr. India Leprosy Review = Leprosy Rev Leprosy Review = Leprosy Rev. Leprosy review = Lepr Rev Leprosy Review=Lepr Rev;; Leprosy Review = Lepr. Rev. Lepton and Photon Interactions: Xvi International Symposium = Aip Conf Proc Lepton and Photon Interactions: Xvi International Symposium = Aip. Conf. Proc. L E R S Monograph Series = Lers Monogr L E R S Monograph Series = Lers. Monogr. Le Saguenay medical = Saguenay Med Les and Dns of Ignition Processes and Complex-structure Flames With Local Extinction, Proceedings = Aip Conf Proc Les and Dns of Ignition Processes and Complex-structure Flames With Local Extinction, Proceedings = Aip. Conf. Proc. Le Sang = Sang Les annales archéologiques arabes syriennes = AAS Les Annales de l'I.F.O.R.D = Ann IFORD Les annales des pays Nivernais = AnnNivern Les Annales d'oto-laryngologie = Ann Otolaryngol Les Annales homeopathiques francaises = Ann Homeopath Fr Lesarten: Die Rezeption Des Werks Von Edgar Hilsenrath = Conditio Jud Lesarten: Die Rezeption Des Werks Von Edgar Hilsenrath = Conditio. Jud. Lesbian Discourses: Images of A Community = Routl Stud Linguist Lesbian Discourses: Images of A Community = Routl. Stud. Linguist. Lesbian Motherhood: Gender, Families and Sexual Citizenship = Palgr Mac Stud Fam Lesbian Motherhood: Gender, Families and Sexual Citizenship = Palgr. Mac. Stud. Fam. Les Bronches = Bronches Les Cahiers de Fontenay = Cah Fontenay Les Cahiers de l'Alliance israelite universelle = Cah All Isr Univers Les Cahiers de l'analyse des donnees = Cah Anal Donnees Les Cahiers de la recherche architecturale = Cah Rech Archit Les Cahiers de l'Iroise = Cah Iroise Les Cahiers de l'Orient = Cah Orient Les cahiers de Mariemont. Bulletin du Musée royal de Mariemont = CahMariemont Les Cahiers de medecine = Cah Med Les Cahiers de medecine veterinaire = Cah Med Vet Les Cahiers de prothese = Cah Prothese Les Cahiers des Dix. Les Dix = Cah Dix Les cahiers de Tunisie = Cah Tunis Les Cahiers de Tunisie = CT Les cahiers d'outre-mer = Cah O M Les Cahiers du College de medecine des hopitaux de Paris = Cah Coll Med Hop Paris Les cahiers du nursing = Cah Nurs Les Cahiers haut-marnais = Cah Haut Marnais Les Cahiers lorrains = Cah Lorrains Les Cahiers rationalistes = Cah Ration Le Scalpel = Scalpel (Brux) Les Colloques De L Institut Servier = Colloq Inst Servier Les Colloques De L Institut Servier = Colloq. Inst. Servier Les dossiers d'archéologie = DossAParis Les dossiers du Centre régional archéologique d'Alet = DossAlet Les entretiens de Bichat. Medecine. Entretiens de Bichat = Entret Bichat Med Entret Bichat Les Études Classiques = LEC Les études classiques. Revue trimestrielle de recherche et d'enseignement = EtCl Les Genres Litteraires Et L'ambition Anthropologique Au Dix-huitieme Siecle: Experiences Et Limites = Rep Des Let Les Genres Litteraires Et L'ambition Anthropologique Au Dix-huitieme Siecle: Experiences Et Limites = Rep. Des. Let. Les Grands Classiques Gauthier-Villars = Grands Class. Gauthier-Villars Les Houches Series = Les Houches Les Houches Summer School Session = Les Houch S Les Houches Summer School Session = Les Houch. S. Lesions of Primary Afferent Fibers As A Tool for The Study of Clinical Pain = Int Congr Ser Lesions of Primary Afferent Fibers As A Tool for The Study of Clinical Pain = Int. Congr. Ser. L'Espace geographique = Espace Geogr Les Revues medicales normandes = Rev Med Normandes Les Sciences hors d'Occident au XXe Siècle = Sci. Occident XXe Siècle Lesser-known Languages of South Asia: Status and Policies, Case Studies and Applications of Information Technology = Trends Linguist-stud Lesser-known Languages of South Asia: Status and Policies, Case Studies and Applications of Information Technology = Trends. Linguist-stud. Lesser Known Large Dsdna Viruses = Curr Top Microbiol Lesser Known Large Dsdna Viruses = Curr. Top. Microbiol. Lessico Intellettuale Europeo = Less Intell Lessico Intellettuale Europeo = Less. Intell. Lessons From Bosnia = Rand Conf Proc Lessons From Bosnia = Rand. Conf. Proc. Lessons From Laron Syndrome ( Ls ) 1966-1992 = Pediat Ad E Lessons From Laron Syndrome ( Ls ) 1966-1992 = Pediat. Ad. E. Lessons From Learning = Ifip Trans A Lessons From Learning = Ifip. Trans. A. Lessons From The Asian Financial Crisis = Routl Contemp Asia Lessons From The Asian Financial Crisis = Routl. Contemp. Asia. Lessons in Leadership: Executive Leadership Programs for Advancing Diversity in Higher Education = Divers High Educ Lessons in Leadership: Executive Leadership Programs for Advancing Diversity in Higher Education = Divers. High. Educ. Lessons of Cross-national Comparison in Education = Ox Stud Comp Educ Lessons of Cross-national Comparison in Education = Ox. Stud. Comp. Educ. L'Estampille = Estampille Les temps modernes = Temps Mod Le Sud medical et chirurgical = Sud Med Chir Le Technicien belge en prothese dentaire = Tech Belge Prothese Dent Le Temps de la réflexion = TR Lethaia = Lethaia Lethal Yellowing: Research and Practical Aspects = Dev Plant Pathol Lethal Yellowing: Research and Practical Aspects = Dev. Plant. Pathol. L' Ethnographie = Ethnographie. Letras De Deusto = Letras Deusto Letras Del Siglo Xx = Let Siglo Xx Letras Del Siglo Xx = Let. Siglo Xx Le Travail humain = Trav Hum Let's Face Chaos Through Nonlinear Dynamics = Aip Conf Proc Let's Face Chaos Through Nonlinear Dynamics = Aip. Conf. Proc. Lettere Al Nuovo Cimento = Lett Nuovo Cimento Lettere Al Nuovo Cimento = Lett. Nuovo Cimento Lettere italiane = Lett Ital Lettere Italiane = Lett Ital Lettere Italiane = Lett. Ital. Letter in The 18th Century and Its Avatars = Coll Dont Act Letter in The 18th Century and Its Avatars = Coll. Dont. Act. Letters in applied microbiology = Lett Appl Microbiol Letters in Applied Microbiology = Lett Appl Microbiol Letters in Applied Microbiology = Lett. Appl. Microbiol. Letters in drug design & discovery = Lett Drug Des Discov Letters in Drug Design & Discovery = Lett Drug Des Discov Letters in Drug Design & Discovery = Lett. Drug Des. Discov. Letters in Drug Design & Discovery = Lett. Drug Des. Discovery Letters in Heat and Mass Transfer = Lett Heat Mass Trans Letters in Heat and Mass Transfer = Lett. Heat Mass Trans. Letters in Mathematical Physics = Lett. Math. Phys. Letters in Mathematical Physics = Lett Math Phys Letters in Mathematical Physics = Lett. Math. Phys. Letters in Organic Chemistry = Lett Org Chem Letters in Organic Chemistry = Lett. Org. Chem. Letters in Peptide Science = Lett Pept Sci Letters in Peptide Science = Lett. Pept. Sci. Lettres Romanes = Lett Romanes Lettres Romanes = Lett. Romanes Letzte Junger Des Philosophen Dionysos = Monogr Texte Nietzsc Letzte Junger Des Philosophen Dionysos = Monogr. Texte. Nietzsc. Leucaena - Adaptation, Quality and Farming Systems = Aciar Proc Leucaena - Adaptation, Quality and Farming Systems = Aciar. Proc. Leucaena - Opportunities and Limitations = Aciar Proc Leucaena - Opportunities and Limitations = Aciar. Proc. Leucocyte Trafficking: The Role of Fucosyltransferases and Selectins = E Schering Res Fdn W Leucocyte Trafficking: The Role of Fucosyltransferases and Selectins = E. Schering. Res. Fdn. W. Leukemia and Lymphoma=Leuk Lymphoma;; Leukemia and Lymphoma = Leuk. Lymphoma Leukemia=Leukemia;; Leukemia = Leukemia Leukemia & Lymphoma = Leukemia Lymphoma Leukemia & lymphoma = Leuk Lymphoma Leukemia : official journal of the Leukemia Society of America, Leukemia Research Fund, U.K = Leukemia Leukemia Research = Leukemia Res Leukemia Research = Leukemia Res. Leukemia research = Leuk Res Leukemia Research=Leuk Res;; Leukemia Research = Leuk. Res. Leukocyte Adhesion = Curr Top Membr Leukocyte Adhesion = Curr. Top. Membr. Leukocyte Adhesion = Int Congr Ser Leukocyte Adhesion = Int. Congr. Ser. Leukocyte Integrins in The Immune System and Malignant Disease = Curr Top Microbiol Leukocyte Integrins in The Immune System and Malignant Disease = Curr. Top. Microbiol. Leukos = Leukos Leukotriene Receptor Antagonists: Evidence and Experience Examined = Roy S Med S Leukotriene Receptor Antagonists: Evidence and Experience Examined = Roy. S. Med. S. Leukotrienes and Prostanoids in Health and Disease = New Trend L Leukotrienes and Prostanoids in Health and Disease = New. Trend. L. L' Eurobiologiste = Eurobiologiste Leuven Lectures On Religious Institutions, Religious Communities and Rights = Canon Law Monogr S Leuven Lectures On Religious Institutions, Religious Communities and Rights = Canon. Law. Monogr. S. Leuven Notes in Mathematical and Theoretical Physics = Leuven Notes Math. Theoret. Phys. Ser. B Theoret. Particle Phys. Leuvensche bijdragen = Leuvense Bijdr Levant. Journal of the British School of Archaeology in Jerusalem and the British Institute at Amman for Archaeology and History = Levant Lev Davidovich Landau and His Impact On Contemporary Theoretical Physics = Horiz World Phys Ser Lev Davidovich Landau and His Impact On Contemporary Theoretical Physics = Horiz. World. Phys. Ser. Level Crossing Methods in Stochastic Models = Int Ser Oper Res Man Level Crossing Methods in Stochastic Models = Int. Ser. Oper. Res. Man. Levels and Structures = Approach Hung Levels and Structures = Approach. Hung. Leveltari kozlemenyek = Leveltari Kozl Leveltari szemle = Leveltari Sz Leveraging Applications of Formal Methods = Lect Notes Comput Sc Leveraging Applications of Formal Methods = Lect. Notes. Comput. Sc. Leveraging Applications of Formal Methods, Verification and Validation, Proceedings = Comm Com Inf Sc Leveraging Applications of Formal Methods, Verification and Validation, Proceedings = Comm. Com. Inf. Sc. Leveraging Applications of Formal Methods, Verification, and Validation, Pt Ii = Lect Notes Comput Sc Leveraging Applications of Formal Methods, Verification, and Validation, Pt Ii = Lect. Notes. Comput. Sc. Leveraging Applications of Formal Methods, Verification, and Validation, Pt I = Lect Notes Comput Sc Leveraging Applications of Formal Methods, Verification, and Validation, Pt I = Lect. Notes. Comput. Sc. Leveraging Knowledge for Innovation in Collaborative Networks = Ifip Adv Inf Comm Te Leveraging Knowledge for Innovation in Collaborative Networks = Ifip. Adv. Inf. Comm. Te. Leveraging Mobile Media = Inform Age Econ Leveraging Mobile Media = Inform. Age. Econ. Leveraging The Semantics of Topics Maps = Lect Notes Artif Int Leveraging The Semantics of Topics Maps = Lect. Notes. Artif. Int. Leviathan Sonderheft = Leviathan Sonderh Leviathan Sonderheft = Leviathan Sonderh. Levinas and Education: At The Intersection of Faith and Reason = Rout Int Stud Philos Levinas and Education: At The Intersection of Faith and Reason = Rout. Int. Stud. Philos. Levinas in Jerusalem: Phenomenology, Ethics, Politics, Aesthetics = Amst Stud Jew Philos Levinas in Jerusalem: Phenomenology, Ethics, Politics, Aesthetics = Amst. Stud. Jew. Philos. Levoglucosenone and Levoglucosans = Front Biom Levoglucosenone and Levoglucosans = Front. Biom. L' Evolution medicale = Evol Med L' Evolution psychiatrique = Evol Psychiatr (Paris) Levy Flights and Related Topics in Physics = Lect Notes Phys Levy Flights and Related Topics in Physics = Lect. Notes. Phys. Levy Matters I: Recent Progress in Theory and Applications: Foundations, Trees and Numerical Issues in Finance = Lect Notes Math Levy Matters I: Recent Progress in Theory and Applications: Foundations, Trees and Numerical Issues in Finance = Lect. Notes. Math. Lex et scientia = Lex Sci Lexical Analysis of Romance Languages = Ling Arb Lexical Analysis of Romance Languages = Ling. Arb. Lexical and Syntactical Constructions and The Construction of Meaning = Amst Stud Theory His Lexical and Syntactical Constructions and The Construction of Meaning = Amst. Stud. Theory. His. Lexical Markers of Common Grounds = Stud Pragmat Lexical Markers of Common Grounds = Stud. Pragmat. Lexical Semantics and Diachronic Morphology: The Development of -hood, -dom and -ship in The History of English = Linguist Arb Lexical Semantics and Diachronic Morphology: The Development of -hood, -dom and -ship in The History of English = Linguist. Arb. Lexical Semantics and Knowledge Representation = Lect Notes Artif Int Lexical Semantics and Knowledge Representation = Lect. Notes. Artif. Int. Lexicographica, Series Maior = Lexicograph Lexicographica, Series Maior = Lexicograph. Lexicographica Series Maior = Lexicogr Ser Maior Lexicographica Series Maior = Lexicogr. Ser. Maior Lexicography in The Borderland Between Knowledge and Non-knowledge = Lexicogr Ser Maior Lexicography in The Borderland Between Knowledge and Non-knowledge = Lexicogr. Ser. Maior. Lexicology, Semantics and Lexicography = Amst Stud Theory His Lexicology, Semantics and Lexicography = Amst. Stud. Theory. His. Lexicon and Test = Lexicograph Lexicon and Test = Lexicograph. Lexicon Development for Speech and Language Processing = Text Speech Lang Tec Lexicon Development for Speech and Language Processing = Text. Speech Lang. Tec. Lexicon Philosophicum = Lexicon Philos Lexicon Philosophicum = Lexicon Philos. Lexikon der Ägyptologie = LAe Lexikon iconographicum mythologiae classicae = LIMC Lexikon topographicum urbis Romae = LTUR Lexikon Und Grammatik in Interaktion = Reihe Ger Linguist Lexikon Und Grammatik in Interaktion = Reihe. Ger. Linguist. Lexikos = Lexikos LEXIS District of Columbia code. District of Columbia = Lexis DC Code DC Lexis. Poetica, retorica e comunicazione nella tradizione classica = Lexis Lex Localis-journal of Local Self-government = Lex Localis Lex Localis-journal of Local Self-government = Lex Localis. Leyte-Samar studies = Leyte Samar Stud Lezioni Lincee = Lezioni Lincee L' Homeopathie francaise = Homeopath Fr L' Homme; revue francaise d'anthropologie = Homme L' Hopital = Hopital L'Hygiene mentale = Hyg Ment Liability of Classification Societies = Hamb Stud Marit Aff Liability of Classification Societies = Hamb. Stud. Marit. Aff. Liaison, Schottky Problem and Invariant Theory: Remembering Federico Gaeta = Prog Math Liaison, Schottky Problem and Invariant Theory: Remembering Federico Gaeta = Prog. Math. Liapunov Functions and Stability in Control Theory = Lect Notes Contr Inf Liapunov Functions and Stability in Control Theory = Lect. Notes. Contr. Inf. Lias-journal of Early Modern Intellectual Culture and Its Sources = Lias Lias-journal of Early Modern Intellectual Culture and Its Sources = Lias. Lias = Lias Lias-sources and Documents Relating to The Early Modern History of Ideas = Lias Lias-sources and Documents Relating to The Early Modern History of Ideas = Lias. Lias-sources and Documents Relating to The Early Modern History of Ideas = Lias-sourc Doc Relat Lias-sources and Documents Relating to The Early Modern History of Ideas = Lias-sourc. Doc. Relat. Libeb, Cosmic Rays, and Related X- and Gamma-rays = Astr Soc P Libeb, Cosmic Rays, and Related X- and Gamma-rays = Astr. Soc. P. Liberal Education = Liberal Educ Liberal Education = Liberal Educ. Liberalism, Neoliberalism, Social Democracy = Routl Stud Soc Polit Liberalism, Neoliberalism, Social Democracy = Routl. Stud. Soc. Polit. Liberalization and Regulation of The Telecommunications Sector in Transition Countries = Contrib Econ Liberalization and Regulation of The Telecommunications Sector in Transition Countries = Contrib. Econ. Liberalization of Postal Services in The European Union = Euro Monogr Liberalization of Postal Services in The European Union = Euro. Monogr. Liberalization of The Postal and Delivery Sector = Adv Regul Econ Liberalization of The Postal and Delivery Sector = Adv. Regul. Econ. Liberal Leviathan: The Origins, Crisis, and Transformation of The American World Order = Princ Stud Int Hist Liberal Leviathan: The Origins, Crisis, and Transformation of The American World Order = Princ. Stud. Int. Hist. Liberation Between Selves, Sexualities, and War = Radic Philos Today Liberation Between Selves, Sexualities, and War = Radic. Philos. Today. Liberation (New York, N.Y.) = Liberation Liberation Theology in Chicana/o Literature: Manifestations of Feminist and Gay Identities = Lat Communities Liberation Theology in Chicana/o Literature: Manifestations of Feminist and Gay Identities = Lat. Communities. Liberian studies journal = Liberian Stud J Liberia: The Violence of Democracy = Ethnogr Polit Violen Liberia: The Violence of Democracy = Ethnogr. Polit. Violen. Libertas Mathematica = Libertas Math. Liberte = Liberte Liberty, life, and family = Lib Life Fam Liberty On The Waterfront: American Maritime Culture in The Age of Revolution = Early Am Stud Ser Liberty On The Waterfront: American Maritime Culture in The Age of Revolution = Early. Am. Stud. Ser. Librarianship and Human Rights: A Twenty-first Century Guide = Chandos Inf Prof Ser Librarianship and Human Rights: A Twenty-first Century Guide = Chandos. Inf. Prof. Ser. Librarianship Series = Librarian S Librarianship Series = Librarian. S. Libraries and Electronic Publishing : Promises and Challenges for The 90's = Ver U Essen Libraries and Electronic Publishing : Promises and Challenges for The 90's = Ver. U. Essen. Libraries and Information Services Towards The Attainment of The Un Millennium Development Goals = Ifla Publ Libraries and Information Services Towards The Attainment of The Un Millennium Development Goals = Ifla. Publ. Libraries and Publishers = Iatul Proc New Ser Libraries and Publishers = Iatul. Proc. New. Ser. Libraries and Scholarly Communication in The United States = Beta Phi Mu Libraries and Scholarly Communication in The United States = Beta. Phi. Mu. Libraries & culture = Libr Cult Libraries & Culture = Libr Culture Libraries & Culture = Libr. Culture Libraries for Literacy in Geographically and Socially Isolated Communities, Final Report of Ifla Pre-session Seminar = Ifla Alp Proj Rep Libraries for Literacy in Geographically and Socially Isolated Communities, Final Report of Ifla Pre-session Seminar = Ifla Alp. Proj. Rep. Libraries for Users: Services in Academic Libraries = Chandos Inf Prof Ser Libraries for Users: Services in Academic Libraries = Chandos. Inf. Prof. Ser. Libraries & The Cultural Record = Libr Cult Rec Libraries & The Cultural Record = Libr. Cult. Rec. Library Acquisitions-practice and Theory = Libr Acquis Pract Th Library Acquisitions-practice and Theory = Libr. Acquis. Pract. Th. Library and Information Research Report = Lib Info R Library and Information Research Report = Lib. Info. R. Library and Information Science = Libr Inform Sc Library and Information Science = Libr. Inform. Sc. Library and Information Science = Libr Inform Sci Library and Information Science = Libr. Inform. Sci. Library and Information Science Series = Libr Inform Sci Ser Library and Information Science Series = Libr. Inform. Sci. Ser. Library and Information Services in Astronomy Iii (lisa Iii) = Astr Soc P Library and Information Services in Astronomy Iii (lisa Iii) = Astr. Soc. P. Library and Information Services in Astronomy V: Common Challenges, Uncommon Solutions = Astr Soc P Library and Information Services in Astronomy V: Common Challenges, Uncommon Solutions = Astr. Soc. P. Library and Information Services in Astronomy Vi: 21st Century Astronomy Librarianship, From New Ideas to Action = Astr Soc P Library and Information Services in Astronomy Vi: 21st Century Astronomy Librarianship, From New Ideas to Action = Astr. Soc. P. Library Association record. Library Association = Libr Assoc Rec Library chronicle = Libr Chron Library Chronicle of The University of Texas At Austin = Libr Chron Univ Tex Library Chronicle of The University of Texas At Austin = Libr. Chron. Univ. Tex. Library Collections Acquisitions & Technical Services = Libr Collect Acquis Library Collections Acquisitions & Technical Services = Libr. Collect. Acquis. Library Computer Systems and Equipment Review = Libr Comp Sys Equip Library Computer Systems and Equipment Review = Libr. Comp. Sys. Equip. Library Computing = Libr Comput Library Computing = Libr. Comput. Library history = Libr Hist Library Hi Tech = Libr Hi Tech Library Hi Tech = Libr. Hi Tech Library & Information Science Research = Libr Inform Sci Res Library & Information Science Research = Libr. Inform. Sci. Res. Library journal = Libr J Library Journal = Libr J Library Journal = Libr. J. Library = Library Library Management: A Case Study Approach = Chandos Inf Prof Ser Library Management: A Case Study Approach = Chandos. Inf. Prof. Ser. Library of American Production = Lib Am Prod Library of American Production = Lib. Am. Prod. Library of Engineering Mathematics = Lib. Engrg. Math. Library of Ethics and Applied Philosophy = Lib Ethics Appl Phil Library of Ethics and Applied Philosophy = Lib. Ethics Appl. Phil. Library of Ethics and Applied Philosophy = Libr Ethics Appl Phi Library of Ethics and Applied Philosophy = Libr. Ethics Appl. Phi. Library of Flight = Libr Flight Library of Flight = Libr. Flight Library of Legislative Studies = Libr Legis Stud Library of Legislative Studies = Libr. Legis. Stud. Library of Philosophy and Religion = Libr Philos Relig Library of Philosophy and Religion = Libr. Philos. Relig. Library of Public Policy and Public Administration = Lib Pub Policy Pub A Library of Public Policy and Public Administration = Lib. Pub. Policy Pub. A. Library of Public Policy and Public Administration = Libr Public Policy P Library of Public Policy and Public Administration = Libr. Public Policy P. Library of Religious Beliefs and Practices = Libr Relig Beliefs P Library of Religious Beliefs and Practices = Libr. Relig. Beliefs P. Library of The History of Psychology Theories = Libr Hist Psychol Th Library of The History of Psychology Theories = Libr. Hist. Psychol. Th. Library of Theoria = Libr. Theor. Library Orientation Series = Lib Orient Library Orientation Series = Lib. Orient. Library Project Funding: A Guide to Planning and Writing Proposals = Chandos Inf Prof Ser Library Project Funding: A Guide to Planning and Writing Proposals = Chandos. Inf. Prof. Ser. Library Quarterly = Libr Quart Library Quarterly = Libr. Quart. Library Resources and Technical Services = Libr. Resources Tech. Serv. Library Resources & Technical Services = Libr Resour Tech Ser Library Resources & Technical Services = Libr. Resour. Tech. Ser. Library resources & technical services = Libr Resour Tech Serv Library review. Great Britain. Forestry Commission = Libr Rev (Lond) Library Science With A Slant to Documentation = Libr Sci Slant Doc Library Science With A Slant to Documentation = Libr. Sci. Slant Doc. Library science with a slant to documentation = Lib Sci Slant Doc Library Software Review = Libr Software Rev Library Software Review = Libr. Software Rev. Library technology reports = Libr Technol Rep Library Technology Reports = Libr. Technol. Rep. Library trends = Libr Trends Library Trends = Libr Trends Library Trends = Libr. Trends Library Web Ecology: What You Need to Know As Web Design Coordinator = Chandos Inf Prof Ser Library Web Ecology: What You Need to Know As Web Design Coordinator = Chandos. Inf. Prof. Ser. Libri = Libri Libya antiqua = LibyaAnt Libyan Economic and Business Review=Libyan Econ. Bus. Rev. Libyan Journal of Medicine = Libyan J Med Libyan Journal of Medicine = Libyan J. Med. Libyan Studies = LibSt Libyan Studies = LibStud Libyca. Bulletin du Service des antiquités. Archéologie, épigraphie = LibycaBServAnt Libyca. Travaux du Laboratoire d'anthropologie et d'archéologie préhistorique du Musée du Bardo = LibycaTrav Lichenologist = Lichenologist Lichenologist (London, England) = Lichenologist Lichens As Bioindicators of Air Quality = Usda Rocky Lichens As Bioindicators of Air Quality = Usda. Rocky. Lichttechnik = Lichttechnik Lics 2005: 20th Annual Ieee Symposium On Logic in Computer Science - Proceedings = Ieee S Log Lics 2005: 20th Annual Ieee Symposium On Logic in Computer Science - Proceedings = Ieee S. Log. Lidar and Atmospheric Sensing = P Soc Photo-opt Ins Lidar and Atmospheric Sensing = P. Soc. Photo-opt. Ins. Lidar Atmospheric Monitoring = P Soc Photo-opt Ins Lidar Atmospheric Monitoring = P. Soc. Photo-opt. Ins. Lidar for Remote Sensing = P Soc Photo-opt Ins Lidar for Remote Sensing = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Environmental Monitoring Iv = P Soc Photo-opt Ins Lidar Remote Sensing for Environmental Monitoring Iv = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Environmental Monitoring Viii = Proc Spie Lidar Remote Sensing for Environmental Monitoring Viii = Proc. Spie. Lidar Remote Sensing for Environmental Monitoring Viii = P Soc Photo-opt Ins Lidar Remote Sensing for Environmental Monitoring Viii = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Environmental Monitoring Vii = Proc Spie Lidar Remote Sensing for Environmental Monitoring Vii = Proc. Spie. Lidar Remote Sensing for Environmental Monitoring Vii = P Soc Photo-opt Ins Lidar Remote Sensing for Environmental Monitoring Vii = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Environmental Monitoring Xi = P Soc Photo-opt Ins Lidar Remote Sensing for Environmental Monitoring Xi = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Industry and Environmental Monitoring V = Proc Spie Lidar Remote Sensing for Industry and Environmental Monitoring V = Proc. Spie. Lidar Remote Sensing for Industry and Environmental Monitoring V = P Soc Photo-opt Ins Lidar Remote Sensing for Industry and Environmental Monitoring V = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Industry and Environment Monitoring Iii = P Soc Photo-opt Ins Lidar Remote Sensing for Industry and Environment Monitoring Iii = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Industry and Environment Monitoring Ii = Proc Spie Lidar Remote Sensing for Industry and Environment Monitoring Ii = Proc. Spie. Lidar Remote Sensing for Industry and Environment Monitoring Ii = P Soc Photo-opt Ins Lidar Remote Sensing for Industry and Environment Monitoring Ii = P. Soc. Photo-opt. Ins. Lidar Remote Sensing for Industry and Environment Monitoring = Proc Spie Lidar Remote Sensing for Industry and Environment Monitoring = Proc. Spie. Lidar Remote Sensing for Industry and Environment Monitoring = P Soc Photo-opt Ins Lidar Remote Sensing for Industry and Environment Monitoring = P. Soc. Photo-opt. Ins. Lidar Techniques for Remote Sensing Ii = P Soc Photo-opt Ins Lidar Techniques for Remote Sensing Ii = P. Soc. Photo-opt. Ins. Lidar Techniques for Remote Sensing = P Soc Photo-opt Ins Lidar Techniques for Remote Sensing = P. Soc. Photo-opt. Ins. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Iii = Proc Spie Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Iii = Proc. Spie. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Iii = P Soc Photo-opt Ins Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Iii = P. Soc. Photo-opt. Ins. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Ii = Proc Spie Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Ii = Proc. Spie. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Ii = P Soc Photo-opt Ins Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Ii = P. Soc. Photo-opt. Ins. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Vi = Proc Spie Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Vi = Proc. Spie. Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Vi = P Soc Photo-opt Ins Lidar Technologies, Techniques, and Measurements for Atmospheric Remote Sensing Vi = P. Soc. Photo-opt. Ins. Lie Algebras, Vertex Operator Algebras and Their Applications = Contemp Math Lie Algebras, Vertex Operator Algebras and Their Applications = Contemp. Math. Liebigs Annalen der Chemie = Liebigs Ann. Chem. Liebigs Annalen Der Chemie = Liebigs Ann Chem Liebigs Annalen Der Chemie = Liebigs Ann. Chem. Liebigs Annalen = Liebigs Ann Liebigs Annalen = Liebigs Ann. Liebigs Annalen-recueil = Liebigs Ann-recl Liebigs Annalen-recueil = Liebigs Ann-recl. Liebigs Annalen - Recueil = Liebigs Ann. Recl. Lied Und Populare Kultur-song and Popular Culture = Lied Pop Kult Lied Und Populare Kultur-song and Popular Culture = Lied Pop. Kult. Lie Groups: New Research = Math Res Dev Lie Groups: New Research = Math. Res. Dev. Lie Methods in Optics Ii = Lect Notes Phys Lie Methods in Optics Ii = Lect. Notes. Phys. Lie Theory and Its Applications in Physics = Aip Conf Proc Lie Theory and Its Applications in Physics = Aip. Conf. Proc. Lie Theory of Connected Pro-lie Groups = Ems Tracts Math Lie Theory of Connected Pro-lie Groups = Ems. Tracts. Math. Lietuvos Fizikos Rinkinys = Liet. Fiz. Rinkinys Lietuvos istorijos metrastis = Liet Istor Metrast Lietuvos TSR aukstuju mokyklu mokslo darbai: Biologija = Liet Tsr Aukst Mokyklu Mokslo Darb Life and Death in Besieged Leningrad, 1941-1944 = Stud Russ E Eur Hist Life and Death in Besieged Leningrad, 1941-1944 = Stud. Russ. E. Eur. Hist. Life and Death in The Delta: African American Narratives of Violence, Resilience, and Social Change = Palgr Stud Oral Hist Life and Death in The Delta: African American Narratives of Violence, Resilience, and Social Change = Palgr. Stud. Oral. Hist. Life and Death in The Nervous System = Wenn Gr Int Life and Death in The Nervous System = Wenn. Gr. Int. Life and Environments in Purbeck Times = Spec Pap Palaeontol Life and Environments in Purbeck Times = Spec. Pap. Palaeontol. Life and Environments in Purbeck Times = Sp Palaeont Life and Environments in Purbeck Times = Sp. Palaeont. Life and Gravity: Physiological and Morphological Responses = Adv Space Res Life and Gravity: Physiological and Morphological Responses = Adv. Space. Res. Life and Mind-philosophical Issues in Biology and Psychology = Life Mind-philos Iss Life and Mind-philosophical Issues in Biology and Psychology = Life Mind-philos. Iss. Life and Works of Mitropolitan Mihailo (1826-1898) = Sasa Dept Hist Sci Life and Works of Mitropolitan Mihailo (1826-1898) = Sasa. Dept. Hist. Sci. Life and Works of Saint Gregentios, Archbishop of Taphar: Introduction, Critical Edition and Translation = Millenn Stud Kult Ge Life and Works of Saint Gregentios, Archbishop of Taphar: Introduction, Critical Edition and Translation = Millenn. Stud. Kult. Ge. Life and Writings of Stuart Chase (1885-1985) From An Accountant's Perspective = Stud Dev Account Tho Life and Writings of Stuart Chase (1885-1985) From An Accountant's Perspective = Stud. Dev. Account. Tho. Life-as A Matter of Fat : The Emerging Science of Lipidomics = Front Collect Life-as A Matter of Fat : The Emerging Science of Lipidomics = Front. Collect. Life As Its Own Designer = Biosemiotics Ser Life As Its Own Designer = Biosemiotics. Ser. Life-based Design: A Holistic Approach to Designing Human-technology Interaction = Vtt Publ Life-based Design: A Holistic Approach to Designing Human-technology Interaction = Vtt. Publ. Life (Chicago, Ill. : 1978) = Life Life Conduct in Modern Times: Karl Jaspers and Psychoanalysis = Philos Med Life Conduct in Modern Times: Karl Jaspers and Psychoanalysis = Philos. Med. Life-cycle Analysis for New Energy Conversion and Storage Systems = Mater Res Soc Symp P Life-cycle Analysis for New Energy Conversion and Storage Systems = Mater. Res. Soc. Symp. P. Life-cycle Analysis Tools for Green Materials and Process Selection = Mater Res Soc Symp P Life-cycle Analysis Tools for Green Materials and Process Selection = Mater. Res. Soc. Symp. P. Life Cycle Assessment of Products and Technologies = Vtt Symp Life Cycle Assessment of Products and Technologies = Vtt. Symp. Life-cycle Cost and Performance of Civil Infrastructure Systems = Proc Monogr Eng Wate Life-cycle Cost and Performance of Civil Infrastructure Systems = Proc. Monogr. Eng. Wate. Life Cycle Costs = Imeche Sem Life Cycle Costs = Imeche. Sem. Life Cycle Engineering of Passenger Cars = Vdi Bericht Life Cycle Engineering of Passenger Cars = Vdi. Bericht. Life Cycle for Clusters: The Dynamics of Agglomeration, Change, and Adaption = Contrib Econ Life Cycle for Clusters: The Dynamics of Agglomeration, Change, and Adaption = Contrib. Econ. Life Distributions: Structure of Nonparametric, Semiparametric, and Parametric Families = Springer Ser Stat Life Distributions: Structure of Nonparametric, Semiparametric, and Parametric Families = Springer. Ser. Stat. Life - in The Glory of Its Radiating Manifestations = Analecta Husserl Life - in The Glory of Its Radiating Manifestations = Analecta. Husserl. Life - in The Glory of Its Radiating Manifestations = Anal Hus Yb Life - in The Glory of Its Radiating Manifestations = Anal. Hus. Yb. Life in The Slow Lane = Am Fish S S Life in The Slow Lane = Am. Fish. S. S. Life in The Universe: From The Miller Experiment to The Search for Life On Other Worlds = Cell Origin Life Ext Life in The Universe: From The Miller Experiment to The Search for Life On Other Worlds = Cell. Origin. Life Ext. Life in The Universe: From The Miller Experiment to The Search for Life On Other Worlds = Cell Orig Life Extre Life in The Universe: From The Miller Experiment to The Search for Life On Other Worlds = Cell. Orig. Life Extre. Lifeline Earthquake Engineering = Tech Coun L Lifeline Earthquake Engineering = Tech. Coun. L. Lifelong Learning and The Learning Society = Lifelong Learn Learn Lifelong Learning and The Learning Society = Lifelong Learn. Learn. Lifelong Learning Book Series = Lifelong Learn Book Lifelong Learning Book Series = Lifelong Learn. Book Lifelong Learning, Participation and Equity = Lifelong Learn Book Lifelong Learning, Participation and Equity = Lifelong Learn. Book. Lifelong Learning-signs, Discourses, Practices = Lifelong Learn Book Lifelong Learning-signs, Discourses, Practices = Lifelong Learn. Book. Lifelong learning, the adult years / Adult Education Association of the United States of America = Lifelong Learn Adult Years Lifelong Learning; The Adult Years = Lifelong Learn. Adult Years Life of Admiral of The Fleet Andrew Cunningham: A Twentieth-century Naval Leader = Cass Ser Nav Policy Life of Admiral of The Fleet Andrew Cunningham: A Twentieth-century Naval Leader = Cass. Ser. Nav. Policy. Life of John Rastrick, 1650-1727 = Camden Fifth Ser Life of John Rastrick, 1650-1727 = Camden. Fifth. Ser. Life of The Past = Life O Past Life of The Past = Life O. Past Life Passages = Life Passage Life Passages = Life Passage. Life Prediction Methodologies and Data for Ceramic Materials = Am Soc Test Mater Life Prediction Methodologies and Data for Ceramic Materials = Am. Soc. Test. Mater. Lifers: Seeking Redemption in Prison = Criminol Just Stud Lifers: Seeking Redemption in Prison = Criminol. Just. Stud. Life science advances. Experimental and clinical endocrinology : a journal of the Council of Scientific Research Integration = Life Sci Adv Exp Clin Endocrinol Life science advances = Life Sci Adv Life science advances. Plant physiology : a journal of the Council of Scientific Research Integration = Life Sci Adv Plant Physiol Life Science Journal-acta Zhengzhou University Overseas Edition = Life Sci J Life Science Journal-acta Zhengzhou University Overseas Edition = Life Sci. J. Life Science Part 1 Physiology & Pharmacology = Life Sci Life Science Part 1 Physiology & Pharmacology = Life Sci. Life sciences and space research = Life Sci Space Res Life Sciences and Space Research Xxiv (1) : Gravitational Biology = Adv Space Res-series Life Sciences and Space Research Xxiv (1) : Gravitational Biology = Adv. Space Res-series. Life Sciences and Space Research Xxiv (2) : Radiation Biology = Adv Space Res-series Life Sciences and Space Research Xxiv (2) : Radiation Biology = Adv. Space Res-series. Life Sciences and Space Research Xxiv (3) : Planetary Biology and Origins of Life = Adv Space Res-series Life Sciences and Space Research Xxiv (3) : Planetary Biology and Origins of Life = Adv. Space Res-series. Life Sciences and Space Research Xxiv (4) : Natural and Artificial Ecosystems = Adv Space Res-series Life Sciences and Space Research Xxiv (4) : Natural and Artificial Ecosystems = Adv. Space Res-series. Life Sciences and Space Research Xxv (1): Gravitational Biology = Adv Space Res Life Sciences and Space Research Xxv (1): Gravitational Biology = Adv. Space Res. Life Sciences and Space Research Xxv (1): Gravitational Biology = Adv Space Res-series Life Sciences and Space Research Xxv (1): Gravitational Biology = Adv. Space Res-series. Life Sciences and Space Research Xxv(2) = Adv Space Res Life Sciences and Space Research Xxv(2) = Adv. Space Res. Life Sciences and Space Research Xxv(2) = Adv Space Res-series Life Sciences and Space Research Xxv(2) = Adv. Space Res-series. Life Sciences and Space Research Xxv (3) = Adv Space Res Life Sciences and Space Research Xxv (3) = Adv. Space Res. Life Sciences and Space Research Xxv (4) = Adv Space Res Life Sciences and Space Research Xxv (4) = Adv. Space Res. Life Sciences and Space Research Xxv (4) = Adv Space Res-series Life Sciences and Space Research Xxv (4) = Adv. Space Res-series. Life Sciences: Artificial Ecosystems = Adv Space Res Life Sciences: Artificial Ecosystems = Adv. Space. Res. Life Sciences: Artificial Ecosystems = Adv Space Res-series Life Sciences: Artificial Ecosystems = Adv. Space. Res-series. Life Sciences: Biodosimetry, Chromosome Damage and Carcinogenesis = Adv Space Res Life Sciences: Biodosimetry, Chromosome Damage and Carcinogenesis = Adv. Space. Res. Life Sciences: Biodosimetry, Chromosome Damage and Carcinogenesis = Adv Space Res-series Life Sciences: Biodosimetry, Chromosome Damage and Carcinogenesis = Adv. Space. Res-series. Life Sciences: Complex Organics in Space = Adv Space Res Life Sciences: Complex Organics in Space = Adv. Space Res. Life Sciences: Complex Organics in Space = Adv Space Res-series Life Sciences: Complex Organics in Space = Adv. Space Res-series. Life Sciences: Exobiology = Adv Space Res Life Sciences: Exobiology = Adv. Space. Res. Life Sciences: Exobiology = Adv Space Res-series Life Sciences: Exobiology = Adv. Space. Res-series. Life sciences = Life Sci Life Sciences=Life Sci;; Life Sciences = Life Sci Life Sciences = Life Sci. Life Sciences: Life Support Systems Studies-i = Adv Space Res Life Sciences: Life Support Systems Studies-i = Adv. Space. Res. Life Sciences: Life Support Systems Studies-i = Adv Space Res-series Life Sciences: Life Support Systems Studies-i = Adv. Space. Res-series. Life Sciences: Microgravity and Space Radiation Effects = Adv Space Res Life Sciences: Microgravity and Space Radiation Effects = Adv. Space Res. Life Sciences: Microgravity Research = Adv Space Res Life Sciences: Microgravity Research = Adv. Space. Res. Life Sciences: Microgravity Research = Adv Space Res-series Life Sciences: Microgravity Research = Adv. Space. Res-series. Life Sciences: Microgravity Research I = Adv Space Res Life Sciences: Microgravity Research I = Adv. Space. Res. Life Sciences: Microgravity Research I = Adv Space Res-series Life Sciences: Microgravity Research I = Adv. Space. Res-series. Life Sciences: Microgravity Research Ii = Adv Space Res Life Sciences: Microgravity Research Ii = Adv. Space. Res. Life Sciences: Microgravity Research Ii = Adv Space Res-series Life Sciences: Microgravity Research Ii = Adv. Space. Res-series. Life Sciences: New Insights Into Complex Organics in Space = Adv Space Res Life Sciences: New Insights Into Complex Organics in Space = Adv. Space Res. Life Sciences: New Insights Into Complex Organics in Space = Adv Space Res-series Life Sciences: New Insights Into Complex Organics in Space = Adv. Space Res-series. Life Sciences Part 1 Physiology and Pharmacology and Part 2 Biochemistry General and Molecular Biology = Life Sci Pt 1 Physi Life Sciences Part 1 Physiology and Pharmacology and Part 2 Biochemistry General and Molecular Biology = Life Sci. Pt. 1 Physi. Life Sciences. Part 1, Physiology and Pharmacology = Life Sci. I Life Sciences. Part 2, Biochemistry, General and Molecular Biology = Life Sci. II Life Sciences: Planetary Protection; Ozone and Uvb Radiation Effects = Adv Space Res Life Sciences: Planetary Protection; Ozone and Uvb Radiation Effects = Adv. Space. Res. Life sciences. Pt. 1: Physiology and pharmacology = Life Sci I Life Sciences Pt-2 Biochemistry General and Molecular Biology = Life Sci 2-bioch Gen Life Sciences Pt-2 Biochemistry General and Molecular Biology = Life Sci. 2-bioch. Gen. Life sciences. Pt. 2: Biochemistry, general and molecular biology = Life Sci II Life Sciences: Radiation Environment and Modelling = Adv Space Res Life Sciences: Radiation Environment and Modelling = Adv. Space. Res. Life Sciences: Radiation Environment and Modelling = Adv Space Res-series Life Sciences: Radiation Environment and Modelling = Adv. Space. Res-series. Life Sciences: Recent Dosimetry Results, Chromosome Damage and Heritable Effects = Adv Space Res Life Sciences: Recent Dosimetry Results, Chromosome Damage and Heritable Effects = Adv. Space. Res. Life Sciences Research Report = Life Sci R Life Sciences Research Report = Life Sci. R. Life Sciences: Space and Mars Recent Results = Adv Space Res Life Sciences: Space and Mars Recent Results = Adv. Space Res. Life Sciences: Space and Mars Recent Results = Adv Space Res-series Life Sciences: Space and Mars Recent Results = Adv. Space Res-series. Life Sciences: Space Flight and The Central Nervous System: The Potential Independent and Synergistic Effects of Microgravity and Radiation = Adv Space Res Life Sciences: Space Flight and The Central Nervous System: The Potential Independent and Synergistic Effects of Microgravity and Radiation = Adv. Space Res. Life Sciences: Space Flight and The Central Nervous System: The Potential Independent and Synergistic Effects of Microgravity and Radiation = Adv Space Res-series Life Sciences: Space Flight and The Central Nervous System: The Potential Independent and Synergistic Effects of Microgravity and Radiation = Adv. Space Res-series. Life Sciences: Space Life Support Systems and The Lunar Farside Crater Saha Proposal = Adv Space Res Life Sciences: Space Life Support Systems and The Lunar Farside Crater Saha Proposal = Adv. Space Res. Life Sciences: Space Life Support Systems and The Lunar Farside Crater Saha Proposal = Adv Space Res-series Life Sciences: Space Life Support Systems and The Lunar Farside Crater Saha Proposal = Adv. Space Res-series. Life-span Communication = Lea Commun Ser Life-span Communication = Lea. Commun. Ser. Life-span Development and Behavior = Life-span Dev Behav Life-span Development and Behavior = Life-span Dev. Behav. Life-span Extension: Single-cell Organisms to Man = Aging Med Life-span Extension: Single-cell Organisms to Man = Aging. Med. Lifespan Learning = Lifesp Learn Lifespan Learning = Lifesp. Learn. Lifestyle in Medicine = Crit Stud Health Soc Lifestyle in Medicine = Crit. Stud. Health. Soc. Life support & biosphere science : international journal of earth space = Life Support Biosph Sci Life Support Systems = Life Support Syst Life Support Systems = Life Support Syst. Life support systems : the journal of the European Society for Artificial Organs = Life Support Syst Life System Modeling and Intelligent Computing = Lect N Bioinformat Life System Modeling and Intelligent Computing = Lect. N. Bioinformat. Life System Modeling and Intelligent Computing, Pt I = Comm Com Inf Sc Life System Modeling and Intelligent Computing, Pt I = Comm. Com. Inf. Sc. Life System Modeling and Intelligent Computing, Pt Ii = Comm Com Inf Sc Life System Modeling and Intelligent Computing, Pt Ii = Comm. Com. Inf. Sc. Life System Modeling and Intelligent Computing, Pt Ii = Lect Notes Comput Sc Life System Modeling and Intelligent Computing, Pt Ii = Lect. Notes. Comput. Sc. Life System Modeling and Intelligent Computing, Pt I = Lect Notes Comput Sc Life System Modeling and Intelligent Computing, Pt I = Lect. Notes. Comput. Sc. Life System Modeling and Simulation, Proceedings = Lect N Bioinformat Life System Modeling and Simulation, Proceedings = Lect. N. Bioinformat. Life : The Human Being Between Life and Death = Anal Hus Yb Life : The Human Being Between Life and Death = Anal. Hus. Yb. Life - The Human Quest for An Ideal = Anal Hus Yb Life - The Human Quest for An Ideal = Anal. Hus. Yb. Life - The Play of Life On The Stage of The World in Fine Arts, Stage-play, and Literature = Anal Hus Yb Life - The Play of Life On The Stage of The World in Fine Arts, Stage-play, and Literature = Anal. Hus. Yb. Life-threatening behavior = Life Threat Behav Life-Threatening Behavior = Life. Threat. Behav. Life-threatening Behavior = Life Threatening Beh Life-threatening Behavior = Life. Threatening. Beh. Lifetime data analysis = Lifetime Data Anal Lifetime Data Analysis = Lifetime Data Anal. Lifetime Data Analysis=Lifetime Data Anal;; Lifetime Data Analysis = Lifetime Data Anal Lifetime Data Analysis = Lifetime Data Anal. Lifetime Modelling of High Temperature Corrosion Processes = Eur Fed Corros Publ Lifetime Modelling of High Temperature Corrosion Processes = Eur. Fed. Corros. Publ. Lifetime Modelling of High Temperature Corrosion Processes = Eur Fed Corr Publ Lifetime Modelling of High Temperature Corrosion Processes = Eur. Fed. Corr. Publ. Life - Truth in Its Various Perspectives = Anal Hus Yb Life - Truth in Its Various Perspectives = Anal. Hus. Yb. Life (un)worthy of Living: Reproductive Genetics in Israel and Germany = Int Libr Eth Law New Life (un)worthy of Living: Reproductive Genetics in Israel and Germany = Int. Libr. Eth. Law. New. Life Writing Series = Life Writ Ser Life Writing Series = Life Writ. Ser. Lifting Modules: Supplements and Projectivity in Module Theory = Front Math Lifting Modules: Supplements and Projectivity in Module Theory = Front. Math. Ligament = Ligament Ligand-macromolecular Interactions in Drug Discovery: Methods and Protocols = Methods Mol Biol Ligand-macromolecular Interactions in Drug Discovery: Methods and Protocols = Methods Mol. Biol. Light-activated Pest Control = Acs Sym Ser Light-activated Pest Control = Acs. Sym. Ser. Light and Optics in Biomedicine = P Soc Photo-opt Ins Light and Optics in Biomedicine = P. Soc. Photo-opt. Ins. Light As An Energy Source and Information Carrier in Plant Physiology = Nato Adv Sci Inst Se Light As An Energy Source and Information Carrier in Plant Physiology = Nato. Adv. Sci. Inst. Se. Light At Extreme Intensities: Opportunities and Technological Issues of The Extreme Light Infrastructure = Aip Conf Proc Light At Extreme Intensities: Opportunities and Technological Issues of The Extreme Light Infrastructure = Aip. Conf. Proc. Light-driven Alignment = Springer Ser Opt Sci Light-driven Alignment = Springer. Ser. Opt. Sci. Light Element Abundances = Eso Astrophy Symp Light Element Abundances = Eso. Astrophy. Symp. Light Elements and Their Evolution = Iau Symp Light Elements and Their Evolution = Iau. Symp. Light Elements in The Universe = Iau Symp P Series Light Elements in The Universe = Iau. Symp. P. Series. Light Emission From Silicon = Mater Res Soc Symp P Light Emission From Silicon = Mater. Res. Soc. Symp. P. Light Emission From Silicon: Progress Towards Si-based Optoelectronics = Eur Mat Res Light Emission From Silicon: Progress Towards Si-based Optoelectronics = Eur. Mat. Res. Light Emission in Silicon: From Physics to Devices = Semiconduct Semimet Light Emission in Silicon: From Physics to Devices = Semiconduct. Semimet. Light-emiting Diodes: Research, Manufacturing, and Applications X = P Soc Photo-opt Ins Light-emiting Diodes: Research, Manufacturing, and Applications X = P. Soc. Photo-opt. Ins. Light-emitting Diode Materials and Devices Ii = P Soc Photo-opt Ins Light-emitting Diode Materials and Devices Ii = P. Soc. Photo-opt. Ins. Light-emitting Diode Materials and Devices = P Soc Photo-opt Ins Light-emitting Diode Materials and Devices = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xiii = P Soc Photo-opt Ins Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xiii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xiv = Proc Spie Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xiv = Proc. Spie. Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xv = Proc Spie Light-emitting Diodes: Materials, Devices, and Applications for Solid State Lighting Xv = Proc. Spie. Light-emitting Diodes: Research, Manufacturing, and Applications Iii = Proc Spie Light-emitting Diodes: Research, Manufacturing, and Applications Iii = Proc. Spie. Light-emitting Diodes: Research, Manufacturing, and Applications Iii = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Iii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Ii = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Ii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Iv = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Iv = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Ix = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Ix = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications = P. Soc. Photo-opt. Ins. Light -emitting Diodes: Research, Manufacturing, and Applications Viii = Proc Spie Light -emitting Diodes: Research, Manufacturing, and Applications Viii = Proc. Spie. Light -emitting Diodes: Research, Manufacturing, and Applications Viii = P Soc Photo-opt Ins Light -emitting Diodes: Research, Manufacturing, and Applications Viii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Vii = Proc Spie Light-emitting Diodes: Research, Manufacturing, and Applications Vii = Proc. Spie. Light-emitting Diodes: Research, Manufacturing, and Applications Vii = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Vii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Vi = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Vi = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research Manufacturing, and Applications V = Proc Spie Light-emitting Diodes: Research Manufacturing, and Applications V = Proc. Spie. Light-emitting Diodes: Research Manufacturing, and Applications V = P Soc Photo-opt Ins Light-emitting Diodes: Research Manufacturing, and Applications V = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Xii = Proc Spie Light-emitting Diodes: Research, Manufacturing, and Applications Xii = Proc. Spie. Light-emitting Diodes: Research, Manufacturing, and Applications Xii = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Xii = P. Soc. Photo-opt. Ins. Light-emitting Diodes: Research, Manufacturing, and Applications Xi = P Soc Photo-opt Ins Light-emitting Diodes: Research, Manufacturing, and Applications Xi = P. Soc. Photo-opt. Ins. Light Emitting Silicon for Microphotonics = Springer Trac Mod Ph Light Emitting Silicon for Microphotonics = Springer. Trac. Mod. Ph. Light Emitting Silicon for Microphotonics = Springer Tr Mod Phys Light Emitting Silicon for Microphotonics = Springer. Tr. Mod. Phys. Light & Engineering = Light Eng Light & Engineering = Light Eng. Light Gauge Metal Structures Recent Advances = Cism Cour L Light Gauge Metal Structures Recent Advances = Cism. Cour. L. Light Gauge Metal Structures Recent Advances = Cism Courses Lect Light Gauge Metal Structures Recent Advances = Cism. Courses. Lect. Lightguides and Their Applications Iii = P Soc Photo-opt Ins Lightguides and Their Applications Iii = P. Soc. Photo-opt. Ins. Lightguides and Their Applications Ii = Proc Spie Lightguides and Their Applications Ii = Proc. Spie. Lightguides and Their Applications Ii = P Soc Photo-opt Ins Lightguides and Their Applications Ii = P. Soc. Photo-opt. Ins. Lightguides and Their Applications = P Soc Photo-opt Ins Lightguides and Their Applications = P. Soc. Photo-opt. Ins. Lighthouses of The Universe: The Most Luminous Celestial Objects and Their Use for Cosmology = Eso Astrophy Symp Lighthouses of The Universe: The Most Luminous Celestial Objects and Their Use for Cosmology = Eso. Astrophy. Symp. Light-induced Processes in Optically-tweezed Aerosol Droplets = Springer Theses-reco Light-induced Processes in Optically-tweezed Aerosol Droplets = Springer. Theses-reco. Lighting Design & Application = Light Design Appl Lighting Design & Application = Light. Design Appl. Lighting Journal = Light. J. Lighting Research and Technology = Light. Res. Technol. Lighting Research & Technology = Lighting Res Technol Lighting Research & Technology = Lighting Res. Technol. Light, Lasers, and Synchrotron Radiation = Nato Adv Sci I B-phy Light, Lasers, and Synchrotron Radiation = Nato. Adv. Sci. I. B-phy. Light Metal Age = Light Met Age Light Metal Age = Light Met. Age Light Metals 2001 = Light Met Light Metals 2001 = Light Met. Light Metals 2002 = Light Met Light Metals 2002 = Light Met. Light Metals 2003 = Light Met Light Metals 2003 = Light Met. Light Metals 2004 = Light Met Light Metals 2004 = Light Met. Light Metals 2005 = Light Met Light Metals 2005 = Light Met. Light Metals 2006, Vol 1: Alumina & Bauxite = Light Met Light Metals 2006, Vol 1: Alumina & Bauxite = Light Met. Light Metals 2006, Vol 2: Aluminum Reduction Technology = Light Met Light Metals 2006, Vol 2: Aluminum Reduction Technology = Light Met. Light Metals 2006, Vol 3: Carbon Technology = Light Met Light Metals 2006, Vol 3: Carbon Technology = Light Met. Light Metals 2006 Vol 4: Cast Shop Technology and Recycling - Aluminum = Light Met Light Metals 2006 Vol 4: Cast Shop Technology and Recycling - Aluminum = Light Met. Light Metals 2007 = Light Met Light Metals 2007 = Light Met. Light Metals 2008 = Light Met Light Metals 2008 = Light Met. Light Metals 2009 = Light Met Light Metals 2009 = Light Met. Light Metals 2010 = Light Met Light Metals 2010 = Light Met. Light Metals = Light Met Light Metals = Light Met. Light Metals Technology 2009 = Mater Sci Forum Light Metals Technology 2009 = Mater. Sci. Forum. Light Metals (Warrendale, Pennsylvania) = Light Met. (Warrendale, Pa.) Lightmetry 2002: Metrology and Testing Techniques Using Light = Proc Spie Lightmetry 2002: Metrology and Testing Techniques Using Light = Proc. Spie. Lightmetry 2002: Metrology and Testing Techniques Using Light = P Soc Photo-opt Ins Lightmetry 2002: Metrology and Testing Techniques Using Light = P. Soc. Photo-opt. Ins. Lightmetry and Light and Optics in Biomedicine 2004 = Pro Biomed Opt Imag Lightmetry and Light and Optics in Biomedicine 2004 = Pro. Biomed. Opt. Imag. Lightmetry: Metrology, Spectroscopy, and Testing Techniques Using Light = Proc Spie Lightmetry: Metrology, Spectroscopy, and Testing Techniques Using Light = Proc. Spie. Lightmetry: Metrology, Spectroscopy, and Testing Techniques Using Light = P Soc Photo-opt Ins Lightmetry: Metrology, Spectroscopy, and Testing Techniques Using Light = P. Soc. Photo-opt. Ins. Light Microscopy: Methods and Protocols = Methods Mol Biol Light Microscopy: Methods and Protocols = Methods Mol. Biol. Lightning in The Tropics: From A Source of Fire to A Monitoring Systems of Climatic Changes = Clim Chang Cause Eff Lightning in The Tropics: From A Source of Fire to A Monitoring Systems of Climatic Changes = Clim. Chang. Cause. Eff. Light Pollution: The Global View = Astrophys Space Sc L Light Pollution: The Global View = Astrophys. Space. Sc. L. Light Scattering and Photon Correlation Spectroscopy = Nato Asi 3 High Tech Light Scattering and Photon Correlation Spectroscopy = Nato. Asi. 3. High. Tech. Light Scattering From Polymer Solutions and Nanoparticle Dispersions = Springer Lab Man Pol Light Scattering From Polymer Solutions and Nanoparticle Dispersions = Springer. Lab. Man. Pol. Light Scattering in Semiconductor Structures and Superlattices = Nato Adv Sci I B-phy Light Scattering in Semiconductor Structures and Superlattices = Nato. Adv. Sci. I. B-phy. Light Scattering in Solids Ix = Top Appl Phys Light Scattering in Solids Ix = Top. Appl. Phys. Light Scattering in Solids Viii = Top Appl Phys Light Scattering in Solids Viii = Top. Appl. Phys. Light Scattering in Solids Vii = Top Appl Phys Light Scattering in Solids Vii = Top. Appl. Phys. Light Scattering Reviews 2: Remote Sensing and Inverse Problems = S-p B Environ Sci Light Scattering Reviews 2: Remote Sensing and Inverse Problems = S-p. B. Environ. Sci. Light Scattering Reviews 3: Light Scattering and Reflection = S-p B Environ Sci Light Scattering Reviews 3: Light Scattering and Reflection = S-p. B. Environ. Sci. Light Scattering Reviews 4: Single Light Scattering and Radioactive Transfer = S-p B Environ Sci Light Scattering Reviews 4: Single Light Scattering and Radioactive Transfer = S-p. B. Environ. Sci. Light Scattering Reviews 5: Single Light Scattering and Radiative Transfer = S-p B Environ Sci Light Scattering Reviews 5: Single Light Scattering and Radiative Transfer = S-p. B. Environ. Sci. Light Sources 2004 = Inst Phys Conf Ser Light Sources 2004 = Inst. Phys. Conf. Ser. Light Weight Metal Corrosion and Modeling for Corrosion Prevention, Life Prediction and Assessment = Adv Mater Res-switz Light Weight Metal Corrosion and Modeling for Corrosion Prevention, Life Prediction and Assessment = Adv. Mater. Res-switz. L'igiene moderna = Ig Mod Lignin : Historical, Biological, and Materials Perspectives = Acs Sym Ser Lignin : Historical, Biological, and Materials Perspectives = Acs. Sym. Ser. Ligno-cellulosics = E H S Polym Ligno-cellulosics = E. H. S. Polym. Lignoselluoosaetanolin Ja Synteesikaasusta Fermentoitujen Polttonesteiden Teknologiatarkastelu = Vtt Res Notes Lignoselluoosaetanolin Ja Synteesikaasusta Fermentoitujen Polttonesteiden Teknologiatarkastelu = Vtt. Res. Notes. Liguorian = Liguorian Lihir Destiny: Cultural Responses to Mining in Melanesia = Asia-pac Env Monogr Lihir Destiny: Cultural Responses to Mining in Melanesia = Asia-pac. Env. Monogr. Lihua Jianyan, Huaxue Fence = Lihua Jianyan, Huaxue Fence Liikenneturvallisuus Erilaisissa Suunnitelmissa - Esiselvitys = Vtt Res Notes Liikenneturvallisuus Erilaisissa Suunnitelmissa - Esiselvitys = Vtt. Res. Notes. Liikenneturvallisuustoiminnan Lahestymistavat = Vtt Res Notes Liikenneturvallisuustoiminnan Lahestymistavat = Vtt. Res. Notes. Liiketaloudellinen Aikakauskirja=Liiketaloudellinen Aikak. Lijecnicki vjesnik = Lijec Vjesn Lijecnicki Vjesnik=Lijec Vjesn;; Lijecnicki Vjesnik = Lijec. Vjesn. Likarska Sprava=Lik Sprava;; Likarska Sprava = Lik. Sprava Likars'ka sprava / Ministerstvo okhorony zdorov'ia Ukrainy = Lik Sprava Like An Everlasting Signet Ring: Generosity in The Book of Sirach = Deuter Cogn Lit Stud Like An Everlasting Signet Ring: Generosity in The Book of Sirach = Deuter. Cogn. Lit. Stud. Lilith (Fitzroy, Vic.) = Lilith Lili-zeitschrift Fur Literaturwissenschaft Und Linguistik = Lili Lili-zeitschrift Fur Literaturwissenschaft Und Linguistik = Lili. Lille chirurgical = Lille Chir Lille Chirurgical = Lille Chir. Lille medical : journal de la Faculte de medecine et de pharmacie de l'Universite de Lille = Lille Med Lille Medical = Lille Med Lille Medical = Lille Med. Limb Development and Regeneration, Pt A = Prog Clin Biol Res Limb Development and Regeneration, Pt A = Prog. Clin. Biol. Res. Limb Development and Regeneration, Pt B = Prog Clin Biol Res Limb Development and Regeneration, Pt B = Prog. Clin. Biol. Res. Limb Lengthening for Whom, When & How? = Mod Endocrin Diabet Limb Lengthening for Whom, When & How? = Mod. Endocrin. Diabet. Limburg = Limburg Limerick and South-west Ireland: Medieval Art and Architecture = Brit Archaeol Assoc Limerick and South-west Ireland: Medieval Art and Architecture = Brit. Archaeol. Assoc. Limesforschungen. Studien zur Organisation der römischen Reichsgrenze an Rhein und Donau = Limesforschungen Limestone in The Built Environment: Present Day Challenges for The Preservation of The Past = Geol Soc Spec Publ Limestone in The Built Environment: Present Day Challenges for The Preservation of The Past = Geol. Soc. Spec. Publ. Limitations and Future Trends in Neural Computation = Nato Sc S Ss Iii C S Limitations and Future Trends in Neural Computation = Nato. Sc. S. Ss. Iii. C. S. Limitations of Test Methods for Plastics = Am Soc Test Mater Limitations of Test Methods for Plastics = Am. Soc. Test Mater. Limited Data Rate in Control Systems With Networks = Lect Notes Contr Inf Limited Data Rate in Control Systems With Networks = Lect. Notes. Contr. Inf. Limiting Greenhouse Effects = Dahl Ws Env Limiting Greenhouse Effects = Dahl. Ws. Env. Limits and Control of Competition With A View to International Harmonization = Int Compet Law Ser Limits and Control of Competition With A View to International Harmonization = Int. Compet. Law. Ser. Limits of British Colonial Control in South Asia = Routl Stud Mod Hist Limits of British Colonial Control in South Asia = Routl. Stud. Mod. Hist. Limits of Constitutional Democracy = Univ Cent Hum Limits of Constitutional Democracy = Univ. Cent. Hum. Limits of European Citizenship: European Integration and Domestic Immigration Policies = Migrat Minor Citizen Limits of European Citizenship: European Integration and Domestic Immigration Policies = Migrat. Minor. Citizen. Limits of Europeanization: Reform Capacity and Policy Conflict in Greece = Palgrave Stud Eur Un Limits of Europeanization: Reform Capacity and Policy Conflict in Greece = Palgrave. Stud. Eur. Un. Limits of Logical Empiricism: Selected Papers of Arthur Pap = Synth Libr Limits of Logical Empiricism: Selected Papers of Arthur Pap = Synth. Libr. Limits of Reductionism in Biology = Ciba F Symp Limits of Reductionism in Biology = Ciba. F. Symp. Limits of Russian Democratisation = Basees-rout Ser Russ Limits of Russian Democratisation = Basees-rout. Ser. Russ. Limits to Globalization: North-south Divergence = Rethink Glob Limits to Globalization: North-south Divergence = Rethink. Glob. Limit Theorems for Markov Chains and Stochastic Properties of Dynamical Systems By Quasi-compactness = Lect Notes Math Limit Theorems for Markov Chains and Stochastic Properties of Dynamical Systems By Quasi-compactness = Lect. Notes. Math. Limit Theorems in Probability and Statistics = Colloq Math Soc J B Limit Theorems in Probability and Statistics = Colloq. Math. Soc. J. B. Limnetica = Limnetica Limnologica = Limnologica Limnologie Aktuell = Limnol Akt Limnologie Aktuell = Limnol. Akt. Limnologie Aktuell = Limnol Aktuell Limnologie Aktuell = Limnol. Aktuell Limnology and oceanography = Limnol Oceanogr Limnology and Oceanography = Limnol Oceanogr Limnology and Oceanography = Limnol. Oceanogr. Limnology and Oceanography-methods = Limnol Oceanogr-meth Limnology and Oceanography-methods = Limnol. Oceanogr-meth. Limnology in Developing Countries = Limnol Dev Countr Limnology in Developing Countries = Limnol. Dev. Countr. Limnology in Developing Countries, Vol 4 = Limnol Dev Countr Limnology in Developing Countries, Vol 4 = Limnol. Dev. Countr. Limnology = Limnology Limosa = Limosa L'Impresa=L'Impresa Linchan Huaxue Yu Gongye = Linchan Huaxue Yu Gongye Lin Chuang Er Bi Yan Hou Ke Za Zhi (Journal of Clinical Otorhinolaryngology) = Lin Chuang Er Bi Yan Hou Ke Za Zhi Lin Chuang Erh Pi Yen Hou Ko Tsa Chih Journal of Clinical Otorhinolaryngology (Wu-Han Shih=Lin Chuang Erh Pi Yen Hou Ko Tsa Chih;; Lin Chuang Ping T=Hsueh Tsa Chih;; Lincoln herald = Linc Her Lincoln law review (San Francisco, Calif.) = Linc Law Rev Lincoln review (Washington, D.C.) = Lincoln Rev Lincolns Legacy of Leadership = Jepson Stud Leadersh Lincolns Legacy of Leadership = Jepson. Stud. Leadersh. Lindbergia = Lindbergia Lindos. Fouilles et recherches = Lindos L'Industria=L'Industria L'Industria, Nuova Serie=L'Industria, N.S. Linea Ecologica = Linea Ecol. Linear Algebra and its Applications = Linear Algebra Appl. Linear Algebra and Its Applications = Linear Algebra Appl Linear Algebra and Its Applications = Linear Algebra Appl. Linear Algebra for Large Scale and Real-time Applications = Nato Adv Sci Inst Se Linear Algebra for Large Scale and Real-time Applications = Nato. Adv. Sci. Inst. Se. Linear and Generalized Linear Mixed Models and Their Applications = Springer Ser Stat Linear and Generalized Linear Mixed Models and Their Applications = Springer. Ser. Stat. Linear and Integer Programming Vs Linear Integration and Counting: A Duality Viewpoint = Springer Ser Oper Re Linear and Integer Programming Vs Linear Integration and Counting: A Duality Viewpoint = Springer. Ser. Oper. Re. Linear and Multilinear Algebra = Linear and Multilinear Algebra Linear and Nonlinear Conjugate Gradient-related Methods = Siam Proc S Linear and Nonlinear Conjugate Gradient-related Methods = Siam. Proc. S. Linear and Nonlinear Control of Small-scale Unmanned Helicopters = Intel Syst Contr Aut Linear and Nonlinear Control of Small-scale Unmanned Helicopters = Intel. Syst. Contr. Aut. Linear and Nonlinear Integrated Optics = P Soc Photo-opt Ins Linear and Nonlinear Integrated Optics = P. Soc. Photo-opt. Ins. Linear and Nonlinear Iterative Learning Control = Lect Notes Contr Inf Linear and Nonlinear Iterative Learning Control = Lect. Notes. Contr. Inf. Linear and Nonlinear Optics of Organic Materials Iii = Proc Spie Linear and Nonlinear Optics of Organic Materials Iii = Proc. Spie. Linear and Nonlinear Optics of Organic Materials Iii = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Iii = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials Ii = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Ii = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials Iv = Proc Spie Linear and Nonlinear Optics of Organic Materials Iv = Proc. Spie. Linear and Nonlinear Optics of Organic Materials Iv = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Iv = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials = Proc Spie Linear and Nonlinear Optics of Organic Materials = Proc. Spie. Linear and Nonlinear Optics of Organic Materials = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials Viii = Proc Spie Linear and Nonlinear Optics of Organic Materials Viii = Proc. Spie. Linear and Nonlinear Optics of Organic Materials Viii = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Viii = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials Vii = Proc Spie Linear and Nonlinear Optics of Organic Materials Vii = Proc. Spie. Linear and Nonlinear Optics of Organic Materials Vii = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Vii = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials Vi = Proc Spie Linear and Nonlinear Optics of Organic Materials Vi = Proc. Spie. Linear and Nonlinear Optics of Organic Materials Vi = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials Vi = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optics of Organic Materials X = P Soc Photo-opt Ins Linear and Nonlinear Optics of Organic Materials X = P. Soc. Photo-opt. Ins. Linear and Nonlinear Optimization, Second Edition = Other Titl Appl Math Linear and Nonlinear Optimization, Second Edition = Other. Titl. Appl. Math. Linear and Nonlinear Programming, Third Edition = Int Ser Oper Res Man Linear and Nonlinear Programming, Third Edition = Int. Ser. Oper. Res. Man. Linear Cmos Rf Power Amplifiers for Wireless Applications: Efficiency Enhancement and Frequency-tunable Capability = Analog Circ Sig Proc Linear Cmos Rf Power Amplifiers for Wireless Applications: Efficiency Enhancement and Frequency-tunable Capability = Analog. Circ. Sig. Proc. Linear Complementarity Problem = Class Appl Math Linear Complementarity Problem = Class. Appl. Math. Linear Control Theory: Structure, Robustness, and Optimization = Autom Control Eng Se Linear Control Theory: Structure, Robustness, and Optimization = Autom. Control Eng. Se. Linear Estimation and Detection in Krylov Subspaces = Found Signal Process Linear Estimation and Detection in Krylov Subspaces = Found. Signal. Process. Linear Feedback Control: Analysis and Design With Matlab = Adv Des Control Linear Feedback Control: Analysis and Design With Matlab = Adv. Des. Control. Linear Isentropic Oscillations of Stars: Theoretical Foundations = Astrophys Space Sc L Linear Isentropic Oscillations of Stars: Theoretical Foundations = Astrophys. Space. Sc. L. Linearization Methods for Stochastic Dynamic Systems = Lect Notes Phys Linearization Methods for Stochastic Dynamic Systems = Lect. Notes. Phys. Linearization Models for Complex Dynamical Systems: Topics in Univalent Functions, Functional Equations and Semigroup Theory = Oper Theory Adv Appl Linearization Models for Complex Dynamical Systems: Topics in Univalent Functions, Functional Equations and Semigroup Theory = Oper. Theory Adv. Appl. Linearization of Chains and Sideward Movement = Linguist Inq Monogr Linearization of Chains and Sideward Movement = Linguist. Inq. Monogr. Linear Mixed Models for Longitudinal Data = Springer Ser Stat Linear Mixed Models for Longitudinal Data = Springer. Ser. Stat. Linear Models and Generalizations: Least Squares and Alternatives = Springer Ser Stat Linear Models and Generalizations: Least Squares and Alternatives = Springer. Ser. Stat. Linear & Multilinear Algebra = Linear Multilinear A Linear & Multilinear Algebra = Linear Multilinear A. Linear, Nonlinear, and Power-limiting Organics = Proc Spie Linear, Nonlinear, and Power-limiting Organics = Proc. Spie. Linear, Nonlinear, and Power-limiting Organics = P Soc Photo-opt Ins Linear, Nonlinear, and Power-limiting Organics = P. Soc. Photo-opt. Ins. Linear Ordering Problem: Exact and Heuristic Methods in Combinatorial Optimization = Appl Math Sci Linear Ordering Problem: Exact and Heuristic Methods in Combinatorial Optimization = Appl. Math. Sci. Linear Programming and Generalizations: A Problem-based Introduction With Spreadsheets = Int Ser Oper Res Man Linear Programming and Generalizations: A Problem-based Introduction With Spreadsheets = Int. Ser. Oper. Res. Man. Linear Programming: Foundations and Extensions, Third Edition = Int Ser Oper Res Man Linear Programming: Foundations and Extensions, Third Edition = Int. Ser. Oper. Res. Man. Linear Programming With Matlab = Mps-siam Ser Optimiz Linear Programming With Matlab = Mps-siam. Ser. Optimiz. Linear Sampling Method in Inverse Electromagnetic Scattering = Cbms-nsf Ma Linear Sampling Method in Inverse Electromagnetic Scattering = Cbms-nsf. Ma. Linear-scaling Techniques in Computational Chemistry and Physics: Methods and Applications = Chall Adv Comput Che Linear-scaling Techniques in Computational Chemistry and Physics: Methods and Applications = Chall. Adv. Comput. Che. Linear, Time-varying Approximations to Nonlinear Dynamical Systems = Lect Notes Contr Inf Linear, Time-varying Approximations to Nonlinear Dynamical Systems = Lect. Notes. Contr. Inf. Linear Time-varying Systems: Algebraic-analytic Approach = Lect Notes Contr Inf Linear Time-varying Systems: Algebraic-analytic Approach = Lect. Notes. Contr. Inf. Linear Time Varying Systems and Sampled-data Systems = Lect Notes Contr Inf Linear Time Varying Systems and Sampled-data Systems = Lect. Notes. Contr. Inf. Linear Topological Spaces and Complex Analysis = Linear Topol. Spaces Complex Anal. Linea Veneta = Linea Venet Linea Veneta = Linea Venet. Line Groups in Physics: Theory and Applications Nanotubes and Polymers = Lect Notes Phys Line Groups in Physics: Theory and Applications Nanotubes and Polymers = Lect. Notes. Phys. Linen supply news = Linen Supply News Linen Supply News = Linen Supply News Liner Conferences in Competition Law = Hamb Stud Marit Aff Liner Conferences in Competition Law = Hamb. Stud. Marit. Aff. L'Infirmiere auxiliaire : revue de la Corporation professionnelle des infirmieres et infirmiers auxiliaires du Quebec = Infirm Aux L' Infirmiere canadienne = Infirm Can L'Infirmiere du Quebec : revue officielle de l'Ordre des infirmieres et infirmiers du Quebec = Infirm Que L'Infirmiere francaise = Infirm Fr L' Infirmiere haitienne = Infirm Haiti L' Infirmiere = Infirmiere L' Information dentaire = Inf Dent L'Information d'histoire de l'art = Inf Hist Art L'Information geographique = Inf Geogr L'Information grammaticale = IG L'Information historique = IH L'Information historique = Inf Hist L'Information littéraire = IL L'Information litteraire = Inf Litt L' Information medicale et paramedicale = Inf Med Paramed (Montreal) L'Information psychiatrique = Inf Psychiatr L'Informatore medico = Inf Med Lingua E Stile = Lingua Stile Lingua e stile = L&S Lingua Franca = Lingua Franca Lingua. International review of general linguistics. Revue internationale de linguistique generale = Lingua Lingua = Lingua Lingua nostra = Lingua Nostra Lingua Nostra = Lingua Nostra Lingue E Iscrizioni Dell Italia Antica = Lingue Iscr Lingue E Iscrizioni Dell Italia Antica = Lingue Iscr. Linguistica Biblica: interdisziplinäre Zeitschrift für Theologie und Linguistik = LingBibl Linguistica Biblica = Linguist Bibl Linguistica Biblica = Linguist. Bibl. Linguistica, epigrafia, filologia italica = LingIt Linguistic Analysis = Linguist Anal Linguistic Analysis = Linguist. Anal. Linguistica Pragensia = Linguist Prag Linguistica Pragensia = Linguist. Prag. Linguistica Uralica = Linguist Ural Linguistica Uralica = Linguist. Ural. Linguistic Authority, Language Ideology, and Metaphor = Lang Power Soc Proce Linguistic Authority, Language Ideology, and Metaphor = Lang. Power. Soc. Proce. Linguistic Diversity and Language Theories = Stud Lang C Linguistic Diversity and Language Theories = Stud. Lang. C. Linguistic Fuzzy Logic Methods in Social Sciences = Stud Fuzz Soft Comp Linguistic Fuzzy Logic Methods in Social Sciences = Stud. Fuzz. Soft. Comp. Linguistic Inquiry = Linguist Inq Linguistic Inquiry = Linguist. Inq. Linguistic Inquiry Monographs = Linguist Inq Monogr Linguistic Inquiry Monographs = Linguist. Inq. Monogr. Linguistic inquiry (Online) = Linguist Inq Linguistic Insights = Ling Insights Linguistic Insights = Ling. Insights Linguistic Meaning, Truth Conditions and Relevance = Palg Stud Pragm Lang Linguistic Meaning, Truth Conditions and Relevance = Palg. Stud. Pragm. Lang. Linguistic Modeling of Information and Markup Languages: Contributions to Language Technology = Text Speech Lang Tec Linguistic Modeling of Information and Markup Languages: Contributions to Language Technology = Text. Speech. Lang. Tec. Linguistic Policies and The Survival of Regional Languages in France and Britain = Palg Stud Minor Lang Linguistic Policies and The Survival of Regional Languages in France and Britain = Palg. Stud. Minor. Lang. Linguistic Review = Linguist Rev Linguistic Review = Linguist. Rev. Linguistics and philosophy = Linguist Philos Linguistics and Philosophy = Linguist Philos Linguistics and Philosophy = Linguist. Philos. Linguistic Scepticism and Poetology = Hermaea Ger Forsch Linguistic Scepticism and Poetology = Hermaea. Ger. Forsch. Linguistics in The Netherlands 2005 = Avt Publ Linguistics in The Netherlands 2005 = Avt. Publ. Linguistics in The Netherlands 2006 = Avt Publ Linguistics in The Netherlands 2006 = Avt. Publ. Linguistics = Linguistics Linguistics of Laughter: A Corpus-assisted Study of Laughter-talk = Routl Stud Linguist Linguistics of Laughter: A Corpus-assisted Study of Laughter-talk = Routl. Stud. Linguist. Linguistik Aktuell = Ling Akt Linguistik Aktuell = Ling. Akt. Linguistik-impulse and Tendenzen = Linguist-impulse Ten Linguistik-impulse and Tendenzen = Linguist-impulse. Ten. Linguistik-impulse and Tendenzen = Linguist Impul Tend Linguistik-impulse and Tendenzen = Linguist. Impul. Tend. Linguistique = Linguistique Linguistische Arbeiten = Ling Arb Linguistische Arbeiten = Ling. Arb. Linguistische Arbeiten = Linguist Arb Linguistische Arbeiten = Linguist. Arb. Linguists and Language Issues in Quebec = Ciral Pub B Linguists and Language Issues in Quebec = Ciral. Pub. B. Linkage in Evolutionary Computation = Stud Comput Intell Linkage in Evolutionary Computation = Stud. Comput. Intell. Linking Affect to Action: Critical Contributions of The Orbitofrontal Cortex = Ann Ny Acad Sci Linking Affect to Action: Critical Contributions of The Orbitofrontal Cortex = Ann. Ny. Acad. Sci. Linking and Aligning Scores and Scales = Stat Soc Behav Sc Linking and Aligning Scores and Scales = Stat. Soc. Behav. Sc. Linking Climate Change to Land Surface Change = Adv Glob Change Res Linking Climate Change to Land Surface Change = Adv. Glob. Change Res. Linking Competence to Opportunities to Learn: Models of Competence and Data Mining = Innov Sci Educ Techn Linking Competence to Opportunities to Learn: Models of Competence and Data Mining = Innov. Sci. Educ. Techn. Linking Literature, Information, and Knowledge for Biology = Lect N Bioinformat Linking Literature, Information, and Knowledge for Biology = Lect. N. Bioinformat. Linking Research and Marketing Opportunities for Pulses in The 21st Century = Curr Plant Sci Biot Linking Research and Marketing Opportunities for Pulses in The 21st Century = Curr. Plant. Sci. Biot. Linking Science and Technology to Society's Environmental Goals = Nat F Sci Tech Goal Linking Science and Technology to Society's Environmental Goals = Nat. F. Sci. Tech. Goal. Linking The Gaseous and Condensed Phases of Matter = Nato Adv Sci Inst Se Linking The Gaseous and Condensed Phases of Matter = Nato. Adv. Sci. Inst. Se. Linking Tourism, The Environment, and Sustainability = Usda Interm Linking Tourism, The Environment, and Sustainability = Usda. Interm. Linking Trade and Technology Policies = S Pros Gl E Linking Trade and Technology Policies = S. Pros. Gl. E. Linking Up Contrastive and Learner Corpus Research = Lang Comput Linking Up Contrastive and Learner Corpus Research = Lang. Comput. Linkoping Studies in Education and Psychology = Linkop Stud Ed Psych Linkoping Studies in Education and Psychology = Linkop. Stud. Ed. Psych. Linköping Studies in Science and Technology = Linköping Stud. Sci. Tech. Diss. Links Between Geological Processes, Microbial Activities & Evolution of Life: Microbes and Geology = Mod Appr Sol Earth S Links Between Geological Processes, Microbial Activities & Evolution of Life: Microbes and Geology = Mod. Appr. Sol. Earth. S. Links (New York, N.Y.) = Links Linnaeus in Italy = Upps Hist Sci Linnaeus in Italy = Upps. Hist. Sci. Linnaeus in Italy = Upps Stud Hist Sci Linnaeus in Italy = Upps. Stud. Hist. Sci. Linnean Society Symposium Series = Linnean Soc Linnean Society Symposium Series = Linnean Soc. Linnean Society Symposium Series = Linn. Soc. Symp. Ser. Linzer biologische Beiträge = Linz. biol. Beitr. Lion and The Unicorn = Lion Unicorn Lipases, Part A = Method Enzymol Lipases, Part A = Method. Enzymol. Lipases, Part A = Methods Enzymol Lipases, Part A = Methods. Enzymol. Lipases, Pt B = Method Enzymol Lipases, Pt B = Method. Enzymol. Lipases, Pt B = Methods Enzymol Lipases, Pt B = Methods. Enzymol. Lipases : Structure, Mechanism and Genetic Engineering = Gbf Monog Series Lipases : Structure, Mechanism and Genetic Engineering = Gbf. Monog. Series. Lipid A in Cancer Therapy = Adv Exp Med Biol Lipid A in Cancer Therapy = Adv. Exp. Med. Biol. Lipid and Polymer-lipid Systems = Prog Coll Pol Sci S Lipid and Polymer-lipid Systems = Prog. Coll. Pol. Sci. S. Lipid-mediated Signaling = Methods Signal Trans Lipid-mediated Signaling = Methods. Signal. Trans. Lipid Modifications of Proteins = Method Enzymol Lipid Modifications of Proteins = Method. Enzymol. Lipidomics and Bioactive Lipids: Mass-spectrometry-based Lipid Analysis = Method Enzymol Lipidomics and Bioactive Lipids: Mass-spectrometry-based Lipid Analysis = Method. Enzymol. Lipidomics and Bioactive Lipids = Method Enzymol Lipidomics and Bioactive Lipids = Method. Enzymol. Lipidomics: Vol 1: Methods and Protocols = Methods Mol Biol Lipidomics: Vol 1: Methods and Protocols = Methods Mol. Biol. Lipidomics, Vol 2: Methods and Protocols = Methods Mol Biol Lipidomics, Vol 2: Methods and Protocols = Methods Mol. Biol. Lipid Oxidation in Food = Acs Sym Ser Lipid Oxidation in Food = Acs. Sym. Ser. Lipid Polymorphism and Membrane Properties = Curr Top Membr Lipid Polymorphism and Membrane Properties = Curr. Top. Membr. Lipids and Biomineralizations = Prog Histochem Cytoc Lipids and Biomineralizations = Prog. Histochem. Cytoc. Lipids and Health = Int Congr Ser Lipids and Health = Int. Congr. Ser. Lipids and Insulin Resistance: The Role of Fatty Acid Metabolism and Fuel Partitioning = Ann Ny Acad Sci Lipids and Insulin Resistance: The Role of Fatty Acid Metabolism and Fuel Partitioning = Ann. Ny. Acad. Sci. Lipids and Syndromes of Insulin Resistance = Ann Ny Acad Sci Lipids and Syndromes of Insulin Resistance = Ann. Ny. Acad. Sci. Lipids and The Kidney = Contrib Nephrol Lipids and The Kidney = Contrib. Nephrol. Lipids: Categories, Biological Functions and Metabolism, Nutrition and Health = Cell Bio Res Prog Lipids: Categories, Biological Functions and Metabolism, Nutrition and Health = Cell. Bio. Res. Prog. Lipid Signaling in Plants = Plant Cell Monogr Lipid Signaling in Plants = Plant. Cell. Monogr. Lipids in Food Flavors = Acs Sym Ser Lipids in Food Flavors = Acs. Sym. Ser. Lipids in health and disease = Lipids Health Dis Lipids in Health and Disease = Lipids Health Dis Lipids in Health and Disease = Lipids Health Dis. Lipids in Photosynthesis: Essential and Regulatory Functions = Adv Photosynth Resp Lipids in Photosynthesis: Essential and Regulatory Functions = Adv. Photosynth. Resp. Lipids=Lipids;; Lipids = Lipids Lipids, Rafts and Traffic = Biochem Soc Symp Lipids, Rafts and Traffic = Biochem. Soc. Symp. Lipofuscin and Ceroid Pigments = Adv Exp Med Biol Lipofuscin and Ceroid Pigments = Adv. Exp. Med. Biol. Lipoproteins and The Pathogenesis of Atherosclerosis = Int Congr Ser Lipoproteins and The Pathogenesis of Atherosclerosis = Int. Congr. Ser. Liposomes in Drug Delivery = Drug Targ D Liposomes in Drug Delivery = Drug Targ. D. Liposomes: Methods and Protocols, Vol 1 = Methods Mol Biol Liposomes: Methods and Protocols, Vol 1 = Methods Mol. Biol. Liposomes: Methods and Protocols, Vol 2 = Methods Mol Biol Liposomes: Methods and Protocols, Vol 2 = Methods Mol. Biol. Liposomes, Pt A = Method Enzymol Liposomes, Pt A = Method. Enzymol. Liposomes, Pt B = Method Enzymol Liposomes, Pt B = Method. Enzymol. Liposomes, Pt D = Method Enzymol Liposomes, Pt D = Method. Enzymol. Liposomes, Pt D = Methods Enzymol Liposomes, Pt D = Methods. Enzymol. Liposomes, Pt E = Method Enzymol Liposomes, Pt E = Method. Enzymol. Lipoxygenases and Their Metabolites = Adv Exp Med Biol Lipoxygenases and Their Metabolites = Adv. Exp. Med. Biol. Lippincott Health Promotion Letter = Lippincott Health Promot. Lett. Lippincott's case management : managing the process of patient care = Lippincotts Case Manag Lippincott's primary care practice = Lippincotts Prim Care Pract Lippincott's Primary Care Practice = Lippincotts Prim. Care Pract. Lippische Mitteilungen aus Geschichte und Landeskunde = Lipp Mitt Gesch Landeskd Liquefaction, Differential Settlement, and Foundation Engineering = Transport Res Rec Liquefaction, Differential Settlement, and Foundation Engineering = Transport. Res. Rec. Liquid and Solid State Crystals : Physics, Technology, and Applications = P Soc Photo-opt Ins Liquid and Solid State Crystals : Physics, Technology, and Applications = P. Soc. Photo-opt. Ins. Liquid Chromatography for The Determination of Mycotoxins in Foods = Food Sci Technol Liquid Chromatography for The Determination of Mycotoxins in Foods = Food. Sci. Technol. Liquid Chromatography Ftir Microspectroscopy Microwave Assisted Synthesis = Adv Polym Sci Liquid Chromatography Ftir Microspectroscopy Microwave Assisted Synthesis = Adv. Polym. Sci. Liquid Chromatography/mass Spectrometry / = Acs Sym Ser Liquid Chromatography/mass Spectrometry / = Acs. Sym. Ser. Liquid Chromatography/mass Spectrometry, Ms/ms and Time-of-flight Ms = Acs Sym Ser Liquid Chromatography/mass Spectrometry, Ms/ms and Time-of-flight Ms = Acs. Sym. Ser. Liquid Chromatography-mass Spectrometry, Third Edition = Chromatogr Sci Ser Liquid Chromatography-mass Spectrometry, Third Edition = Chromatogr. Sci. Ser. Liquid Crystal Chemistry, Physics, and Applications = P Soc Photo-opt Ins Liquid Crystal Chemistry, Physics, and Applications = P. Soc. Photo-opt. Ins. Liquid Crystal Displays and Applications = P Soc Photo-opt Ins Liquid Crystal Displays and Applications = P. Soc. Photo-opt. Ins. Liquid Crystalline Functional Assemblies and Their Supramolecular Structures = Struct Bond Liquid Crystalline Functional Assemblies and Their Supramolecular Structures = Struct. Bond. Liquid-crystalline Polymers = Acs Sym Ser Liquid-crystalline Polymers = Acs. Sym. Ser. Liquid-crystalline Polymer Systems = Acs Sym Ser Liquid-crystalline Polymer Systems = Acs. Sym. Ser. Liquid Crystal Materials and Devices = Mater Res Soc Symp P Liquid Crystal Materials and Devices = Mater. Res. Soc. Symp. P. Liquid Crystal Materials, Devices, and Applications Iii = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Iii = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Ii = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Iv = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Iv = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Ix = Proc Spie Liquid Crystal Materials, Devices, and Applications Ix = Proc. Spie. Liquid Crystal Materials, Devices, and Applications Ix = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Ix = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Viii = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Viii = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Vii = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Vii = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Vi = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Vi = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications V = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications V = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications X and Projection Displays X = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications X and Projection Displays X = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Applications Xi = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Applications Xi = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Displays = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Displays = P. Soc. Photo-opt. Ins. Liquid Crystal Materials, Devices, and Flat Panel Displays = P Soc Photo-opt Ins Liquid Crystal Materials, Devices, and Flat Panel Displays = P. Soc. Photo-opt. Ins. Liquid Crystals and Applications in Optics = P Soc Photo-opt Ins Liquid Crystals and Applications in Optics = P. Soc. Photo-opt. Ins. Liquid Crystals: Chemistry and Structure = P Soc Photo-opt Ins Liquid Crystals: Chemistry and Structure = P. Soc. Photo-opt. Ins. Liquid Crystals: Chemistry, Physics and Applications = P Soc Photo-opt Ins Liquid Crystals: Chemistry, Physics and Applications = P. Soc. Photo-opt. Ins. Liquid Crystals for Advanced Technologies = Mater Res Soc Symp P Liquid Crystals for Advanced Technologies = Mater. Res. Soc. Symp. P. Liquid Crystals Iii = P Soc Photo-opt Ins Liquid Crystals Iii = P. Soc. Photo-opt. Ins. Liquid Crystals Ii = P Soc Photo-opt Ins Liquid Crystals Ii = P. Soc. Photo-opt. Ins. Liquid Crystals Iv = P Soc Photo-opt Ins Liquid Crystals Iv = P. Soc. Photo-opt. Ins. Liquid Crystals = Liq Cryst Liquid Crystals = Liq. Cryst. Liquid Crystals: Materials Science and Applications = P Soc Photo-opt Ins Liquid Crystals: Materials Science and Applications = P. Soc. Photo-opt. Ins. Liquid Crystals: Physics, Technology and Applications = P Soc Photo-opt Ins Liquid Crystals: Physics, Technology and Applications = P. Soc. Photo-opt. Ins. Liquid Crystals = P Soc Photo-opt Ins Liquid Crystals = P. Soc. Photo-opt. Ins. Liquid Crystals Viii = Proc Spie Liquid Crystals Viii = Proc. Spie. Liquid Crystals Viii = P Soc Photo-opt Ins Liquid Crystals Viii = P. Soc. Photo-opt. Ins. Liquid Crystals Vii = Proc Spie Liquid Crystals Vii = Proc. Spie. Liquid Crystals Vii = P Soc Photo-opt Ins Liquid Crystals Vii = P. Soc. Photo-opt. Ins. Liquid Crystals Vi = Proc Spie Liquid Crystals Vi = Proc. Spie. Liquid Crystals Vi = P Soc Photo-opt Ins Liquid Crystals Vi = P. Soc. Photo-opt. Ins. Liquid Crystals V = P Soc Photo-opt Ins Liquid Crystals V = P. Soc. Photo-opt. Ins. Liquid Crystals Xi = Proc Spie Liquid Crystals Xi = Proc. Spie. Liquid Crystals Xi = P Soc Photo-opt Ins Liquid Crystals Xi = P. Soc. Photo-opt. Ins. Liquid Crystals Xiv = P Soc Photo-opt Ins Liquid Crystals Xiv = P. Soc. Photo-opt. Ins. Liquid Crystals X = Proc Spie Liquid Crystals X = Proc. Spie. Liquid Crystals X = P Soc Photo-opt Ins Liquid Crystals X = P. Soc. Photo-opt. Ins. Liquid Crystal Today = Liq. Cryst. Today Liquid Crystal Xii = Proc Spie Liquid Crystal Xii = Proc. Spie. Liquid Crystal Xii = P Soc Photo-opt Ins Liquid Crystal Xii = P. Soc. Photo-opt. Ins. Liquid Dynamics: Experiment, Simulation, and Theory = Acs Sym Ser Liquid Dynamics: Experiment, Simulation, and Theory = Acs. Sym. Ser. Liquidity, Interest Rates and Banking = Financ I Serv Ser Liquidity, Interest Rates and Banking = Financ. I. Serv. Ser. Liquid Nourishment = Food & Soc Liquid Nourishment = Food. &. Soc. Liquid Phase Epitaxy of Electronic, Optical and Optoelectronic Materials = Wiley Ser Mater Elec Liquid Phase Epitaxy of Electronic, Optical and Optoelectronic Materials = Wiley. Ser. Mater. Elec. Liquids At Interfaces = Les Houch S Liquids At Interfaces = Les. Houch. S. Liquids, Freezing and Glass Transition, Pt 1 = Les Houch S Liquids, Freezing and Glass Transition, Pt 1 = Les. Houch. S. Liquids, Freezing and Glass Transition, Pt 2 = Les Houch S Liquids, Freezing and Glass Transition, Pt 2 = Les. Houch. S. Liquids Under Negative Pressure = Nato Sci Ser Ii-math Liquids Under Negative Pressure = Nato. Sci. Ser. Ii-math. Liquids Under Negative Pressure = Nato Sci Ser Ii Math Liquids Under Negative Pressure = Nato. Sci. Ser. Ii. Math. Lisbon Treaty: Eu Constitutionalism Without A Constitutional Treaty? = Schr Ost Ges Eur Ecs Lisbon Treaty: Eu Constitutionalism Without A Constitutional Treaty? = Schr. Ost. Ges. Eur. Ecs. Lishi yanjiu = Lishi Yanjiu List Decoding of Error-correcting Codes = Lect Notes Comput Sc List Decoding of Error-correcting Codes = Lect. Notes. Comput. Sc. Listener (London, England : 1967) = Listener Listening = Listening Listening to and Learning From Students: Possibilities for Teaching, Learning, and Curriculum = Landsc Educ Listening to and Learning From Students: Possibilities for Teaching, Learning, and Curriculum = Landsc. Educ. ## List of Journal Name and Abbreviation from Web of Science ## List of Journal Name and Abbreviation in Life Science Area Listy Cukrovarnicke A Reparske = Listy Cukrov Listy Cukrovarnicke A Reparske = Listy Cukrov. Listy Cukrovarnicke A Reparske = Listy Cukrov Repar Listy Cukrovarnicke A Reparske = Listy Cukrov. Repar. Listy filologické = LF Listy filologické = LF Listy Filologicke = List Filol Listy Filologicke = List. Filol. Lita Presidents Series = Lita Pres S Lita Presidents Series = Lita Pres. S. Liteinoe Proizvodstvo = Liteinoe Proizvod. Literacies = Literacies Literacy and Augmentative and Alternative Communication = Aug Alt Comm Persp Literacy and Augmentative and Alternative Communication = Aug. Alt. Comm. Persp. Literacy and Basic Education in Europe On The Eve of The 21st-century = Eur Educ R Literacy and Basic Education in Europe On The Eve of The 21st-century = Eur. Educ. R. Literacy and Power = Lang Cult Teach Literacy and Power = Lang. Cult. Teach. Literacy Development and Enhancement Across Orthographies and Cultures = Lit Stud Literacy Development and Enhancement Across Orthographies and Cultures = Lit. Stud. Literacy discussion = Lit Discuss Literacy Language and Learning = Lit Lang Learn Literacy Language and Learning = Lit. Lang. Learn. Literacy = Literacy Literacy Studies = Lit Stud Literacy Studies = Lit. Stud. Literacy: Traditional, Cultural, Technological = Iasl Proc Literacy: Traditional, Cultural, Technological = Iasl. Proc. Literarhistorische Filmbiographien: Autorschaft Und Literaturgeschichte Im Kino - Mit Einer Filmographie 1909-2007 = Medien Kult Erinneru Literarhistorische Filmbiographien: Autorschaft Und Literaturgeschichte Im Kino - Mit Einer Filmographie 1909-2007 = Medien. Kult. Erinneru. Literarische Vereine in Dresden: Kulturelle Praxis Und Politische Orientierung Des Burgertums Im 19 Jahrhundert = Stud Texte Sozialges Literarische Vereine in Dresden: Kulturelle Praxis Und Politische Orientierung Des Burgertums Im 19 Jahrhundert = Stud. Texte. Sozialges. Literary and Cultural Theory = Lit Cultural Theory Literary and Cultural Theory = Lit. Cultural Theory Literary and Linguistic Computing = Lit Linguist Comput Literary and Linguistic Computing = Lit. Linguist. Comput. Literary Criticism and Cultural Theory = Lit Crit Cult Theory Literary Criticism and Cultural Theory = Lit. Crit. Cult. Theory Literary Imagination = Lit Imagin Literary Imagination = Lit. Imagin. Literary Lives = Lit Lives Literary Lives = Lit. Lives Literary Market: Authorship and Modernity in The Old Regime = Mater Texts Literary Market: Authorship and Modernity in The Old Regime = Mater. Texts. Literary Minstrelsy, 1770-1830: Minstrels and Improvisers in British, Irish, and American Literature = Palgrave Stud Enligh Literary Minstrelsy, 1770-1830: Minstrels and Improvisers in British, Irish, and American Literature = Palgrave. Stud. Enligh. Literary Modernity Between The Middle East and Europe = Routl Stud Mid E Lit Literary Modernity Between The Middle East and Europe = Routl. Stud. Mid. E. Lit. Literary Quest for An American National Character = Routl Transnat Persp Literary Quest for An American National Character = Routl. Transnat. Persp. Literary Relations : East and West = Lit St E W Literary Relations : East and West = Lit. St. E. W. Literary Research-a Journal of Scholarly Method and Technique = Lit Res-j Sch Meth T Literary Research-a Journal of Scholarly Method and Technique = Lit. Res-j. Sch. Meth. T. Literary Research Newsletter = Lit Res-j Sch Meth T Literary Research Newsletter = Lit. Res-j. Sch. Meth. T. Literary Review = Literary Rev Literary Review = Literary Rev. Literary Scene in The Federal Republic of Germany - A View From Outside = Ams C Mod G Literary Scene in The Federal Republic of Germany - A View From Outside = Ams. C. Mod. G. Literary Studies East and West = Lit St E W Literary Studies East and West = Lit. St. E. W. Literary Subversions of Medieval Women = New Middle Ages Literary Subversions of Medieval Women = New. Middle. Ages. Literary Theory: The Basics, Second Edition = Basics Literary Theory: The Basics, Second Edition = Basics. Literary Theory: The Basics, Second Edition = Basics Ser Literary Theory: The Basics, Second Edition = Basics. Ser. Literary Tradition and Practice in Russian Culture = Stud Slav L Literary Tradition and Practice in Russian Culture = Stud. Slav. L. Literary Utopias of Cultural Communities, 1790-1910 = Dqr Stud Lit Literary Utopias of Cultural Communities, 1790-1910 = Dqr. Stud. Lit. Literatura Espanola En Tiempos De Los Novatores (1675-1725) = Criticon Literatura Espanola En Tiempos De Los Novatores (1675-1725) = Criticon. Literatur Als Spiel: Evolutionsbiologische, Asthetische Und Padagogische Konzepte = Spectr Literaturwiss Literatur Als Spiel: Evolutionsbiologische, Asthetische Und Padagogische Konzepte = Spectr. Literaturwiss. Literatura (San Sebastian, Spain) = Literatura Literature and Development in North Africa: The Modernizing Mission = Lit Crit Cult Theory Literature and Development in North Africa: The Modernizing Mission = Lit. Crit. Cult. Theory. Literature and History = Lit Hist Literature and History = Lit. Hist. Literature and Industry = Bibliot Arc Literature and Industry = Bibliot. Arc. Literature and Language in Tirol = Schlern Sch Literature and Language in Tirol = Schlern. Sch. Literature and medicine = Lit Med Literature and Medicine=Lit Med;; Literature and Medicine = Lit Med Literature and Medicine = Lit. Med. Literature and Psychology = Lit Psychol Literature and Psychology = Lit. Psychol. Literature and Revolutions = False Title Literature and Revolutions = False. Title. Literature and Theology = Lit Theol Literature and Theology = Lit. Theol. Literature and War = Rod Per Mod Literature and War = Rod. Per. Mod. Literature-based Discovery = Inform Sci Knowl Man Literature-based Discovery = Inform. Sci. Knowl. Man. Literature-film Quarterly = Lit-film Quart Literature-film Quarterly = Lit-film. Quart. Literature & history = Lit Hist Literature & History-third Series = Lit Hist-third Ser Literature & History-third Series = Lit. Hist-third. Ser. Literatur-Eildienst "Roche." = Lit Eildienst Roche Literature, Journalism and The Avant-garde: Intersection in Egypt = Routl Stud Mid E Lit Literature, Journalism and The Avant-garde: Intersection in Egypt = Routl. Stud. Mid. E. Lit. Literature Music Fine Arts = Lit Music Fine Arts Literature Music Fine Arts = Lit. Music Fine Arts Literature of The Indian Diaspora = Rout Res Postcol Lit Literature of The Indian Diaspora = Rout. Res. Postcol. Lit. Literature, Politics and Law in Renaissance England = Lang Discourse Soc Literature, Politics and Law in Renaissance England = Lang. Discourse. Soc. Literature, Politics and Law in Renaissance England = Lang Disc Soc Literature, Politics and Law in Renaissance England = Lang. Disc. Soc. Literature, Politics, Theory = Lit Pol Th Literature, Politics, Theory = Lit. Pol. Th. Literature, Science, and A New Humanities = Cogn Stud Lit Perfor Literature, Science, and A New Humanities = Cogn. Stud. Lit. Perfor. Literatures of Congo-zaire = Matatu Literatures of Congo-zaire = Matatu. Literatur Intermedial: Paradigmenbildung Zwischen 1918 Und 1968 = Spectr Literaturwiss Literatur Intermedial: Paradigmenbildung Zwischen 1918 Und 1968 = Spectr. Literaturwiss. Literatur Und Kritik = Lit Kritik Literatur Und Kritik = Lit. Kritik Literatur, Wissenschaft Und Wissen Seit Der Epochenschwelle Um 1800 = Spectr Literaturwiss Literatur, Wissenschaft Und Wissen Seit Der Epochenschwelle Um 1800 = Spectr. Literaturwiss. Lithics in Action = Lithic Stud Soc Occ Lithics in Action = Lithic. Stud. Soc. Occ. Lithic Studies Society Occasional Paper = Lithic Stud Soc Occ Lithic Studies Society Occasional Paper = Lithic Stud. Soc. Occ. Lithium Batteries, Proceedings = Elec Soc S Lithium Batteries, Proceedings = Elec. Soc. S. Lithium Batteries: Research,technology and Applications = Electr Eng Dev Lithium Batteries: Research,technology and Applications = Electr. Eng. Dev. Lithium = Lithium Lithium Niobate: Defects, Photorefraction and Ferroelectric Switching = Springer Ser Mater S Lithium Niobate: Defects, Photorefraction and Ferroelectric Switching = Springer. Ser. Mater. S. Lithographic and Micromachining Techniques for Optical Component Fabrication Ii = P Soc Photo-opt Ins Lithographic and Micromachining Techniques for Optical Component Fabrication Ii = P. Soc. Photo-opt. Ins. Lithographic and Micromachining Techniques for Optical Component Fabrication = P Soc Photo-opt Ins Lithographic and Micromachining Techniques for Optical Component Fabrication = P. Soc. Photo-opt. Ins. Lithography Asia 2008 = Proc Spie Lithography Asia 2008 = Proc. Spie. Lithography for Semiconductor Manufacturing Ii = P Soc Photo-opt Ins Lithography for Semiconductor Manufacturing Ii = P. Soc. Photo-opt. Ins. Lithography for Semiconductor Manufacturing = P Soc Photo-opt Ins Lithography for Semiconductor Manufacturing = P. Soc. Photo-opt. Ins. Lithology and Mineral Resources = Lithol Miner Resour Lithology and Mineral Resources = Lithol Miner Resour+ Lithology and Mineral Resources = Lithol. Miner. Resour. Lithology and Mineral Resources = Lithol. Miner. Resour+.+ Lithology and Mineral Resources = Lithol. Min. Resour. Lithos = Lithos Lithosphere = Lithosphere-us Lithosphere = Lithosphere-us. Lithuanian Academy of Sciences = Informatica (Vilnius) Lithuanian Journal of Physics = Lith J Phys Lithuanian Journal of Physics = Lith. J. Phys. Lithuanian Mathematical Journal = Lith Math J Lithuanian Mathematical Journal = Lith. Math. J. Lithuanian Mathematical Journal = Lithuanian Math. J. Litigation in Korea = Elgar Korean Law Litigation in Korea = Elgar. Korean. Law. Litigation Issues in The Distribution of Securities: An International Perspective = Int Bar Ass Litigation Issues in The Distribution of Securities: An International Perspective = Int. Bar. Ass. Lit-literature Interpretation Theory = Lit-lit Interpret Th Lit-literature Interpretation Theory = Lit-lit. Interpret. Th. Litterae Numismaticae Vindobonenses = LNV Litterature = Litterature Litterature, medecine, societe = Litt Med Soc Littérature, médicine, société = LMS Litteratures = Litteratures Little Rock: Race and Resistance At Central High School = Polit Soc Twentieth Little Rock: Race and Resistance At Central High School = Polit. Soc. Twentieth. Littman Library of Jewish Civilization = Lit Lib Jew Littman Library of Jewish Civilization = Lit. Lib. Jew. Lituanus = Lituanus Liturgia Condenda = Liturg Condenda Liturgia Condenda = Liturg. Condenda Liturgical Perspectives: Prayer and Poetry in Light of The Dead Sea Scrolls = Stud Text Des Judah Liturgical Perspectives: Prayer and Poetry in Light of The Dead Sea Scrolls = Stud. Text. Des. Judah. Liturgy and Muse = Liturg Condenda Liturgy and Muse = Liturg. Condenda. Live Cell Imaging: Methods and Protocols = Methods Mol Biol Live Cell Imaging: Methods and Protocols = Methods Mol. Biol. Lived Experiences of Public Consumption: Encounters With Value in Marketplaces On Five Continents = Consum Public Life Lived Experiences of Public Consumption: Encounters With Value in Marketplaces On Five Continents = Consum. Public Life. Livelihoods and Vulnerability in The Arid and Semi-arid Lands of Southern Africa = Hunger Poverty Cause Livelihoods and Vulnerability in The Arid and Semi-arid Lands of Southern Africa = Hunger. Poverty. Cause. Liver and Aging - 1990 = Int Congr Ser Liver and Aging - 1990 = Int. Congr. Ser. Liver and Drugs '94 = Prog Hepat Pharm Liver and Drugs '94 = Prog. Hepat. Pharm. Liver and Pancreatic Diseases Management = Adv Exp Med Biol Liver and Pancreatic Diseases Management = Adv. Exp. Med. Biol. Liver Carcinogenesis = Nato Adv Sci Inst Se Liver Carcinogenesis = Nato. Adv. Sci. Inst. Se. Liver Cell Carcinoma = Falk Symp Liver Cell Carcinoma = Falk. Symp. Liver Cirrhosis: From Pathophysiology to Disease Management = Falk Symp Liver Cirrhosis: From Pathophysiology to Disease Management = Falk. Symp. Liver Diseases: Advances in Treatment and Prevention = Falk Symp Liver Diseases: Advances in Treatment and Prevention = Falk. Symp. Liver International = Liver Int Liver International = Liver Int. Liver international : official journal of the International Association for the Study of the Liver = Liver Int Liver=Liver;; Liver = Liver Liver, Metabolism and Ageing = T Aging Res Liver, Metabolism and Ageing = T. Aging. Res. Liver Metastasis: Biology and Clinical Management = Cancer Metast Biol T Liver Metastasis: Biology and Clinical Management = Cancer. Metast. Biol. T. Liver Microcirculation and Hepatobiliary Function = Progr Appl Micr Liver Microcirculation and Hepatobiliary Function = Progr. Appl. Micr. Liver Pathology = Consult Pathol Liver Pathology = Consult. Pathol. Liver Pathophysiology = Int Congr Ser Liver Pathophysiology = Int. Congr. Ser. Liverpool Classical Monthly = LCM Liverpool classical monthly : LCM = Liverp Classical Mon Liverpool Science Fiction Texts and Studies = Lp Sci Fic T Studies Liverpool Science Fiction Texts and Studies = Lp. Sci. Fic. T. Studies Liver Radioembolization With 90y Microspheres = Med Radiol Diagn Ima Liver Radioembolization With 90y Microspheres = Med. Radiol. Diagn. Ima. Liver Regeneration = Tr Adv Liv Liver Regeneration = Tr. Adv. Liv. Liver Transplantation and Surgery = Liver Transplant Sur Liver Transplantation and Surgery = Liver Transplant. Sur. Liver Transplantation and Surgery=Liver Transpl Surg;; Liver Transplantation and Surgery = Liver Transpl. Surg. Liver transplantation and surgery : official publication of the American Association for the Study of Liver Diseases and the International Liver Transplantation Society = Liver Transpl Surg Liver Transplantation: Challenging Controversies and Topics = Clin Gastroent-ser Liver Transplantation: Challenging Controversies and Topics = Clin. Gastroent-ser. Liver Transplantation = Liver Transpl. Liver Transplantation = Liver Transplant Liver Transplantation = Liver Transplant. Liver transplantation : official publication of the American Association for the Study of Liver Diseases and the International Liver Transplantation Society = Liver Transpl Lives of The Anchoresses: The Rise of The Urban Recluse in Medieval Europe = Middle Ages Ser Lives of The Anchoresses: The Rise of The Urban Recluse in Medieval Europe = Middle. Ages. Ser. Lives of The Neutron Stars = Nato Adv Sci I C-mat Lives of The Neutron Stars = Nato. Adv. Sci. I. C-mat. Lives of The Neutron Stars = Nato Adv Sci Inst Se Lives of The Neutron Stars = Nato. Adv. Sci. Inst. Se. Livestock Environment Iv = Asae Publ Livestock Environment Iv = Asae. Publ. Livestock Farming Systems = Eaap Public Livestock Farming Systems = Eaap. Public. Livestock Farming Systems in Central and Eastern Europe = Eaap Tech Livestock Farming Systems in Central and Eastern Europe = Eaap. Tech. Livestock Farming Systems: Research, Development Socio-economics and The Land Manager = Eaap Public Livestock Farming Systems: Research, Development Socio-economics and The Land Manager = Eaap. Public. Livestock in The Mediterranean Cereal Production Systems = Eaap Public Livestock in The Mediterranean Cereal Production Systems = Eaap. Public. Livestock Production and Climatic Uncertainty in The Mediterranean = Eaap Public Livestock Production and Climatic Uncertainty in The Mediterranean = Eaap. Public. Livestock Production Science = Livest Prod Sci Livestock Production Science = Livest. Prod. Sci. Livestock Production Sector in Eastern Europe As Affected By Current Changes = Eaap Public Livestock Production Sector in Eastern Europe As Affected By Current Changes = Eaap. Public. Livestock Science = Livest Sci Livestock Science = Livest. Sci. Living Cell in Four Dimensions = Aip Conf Proc Living Cell in Four Dimensions = Aip. Conf. Proc. Living Cities in Japan = Nissan I Routl Jpn S Living Cities in Japan = Nissan. I. Routl. Jpn. S. Living Concepts = Living Concepts Living for The Elderly: A Design Manual = Des Man Living for The Elderly: A Design Manual = Des. Man. Living in A Chemical World: Framing The Future in Light of The Past = Ann Ny Acad Sci Living in A Chemical World: Framing The Future in Light of The Past = Ann. Ny. Acad. Sci. Living in Poverty: Developmental Poetics of Cultural Realities = Adv Cult Psychol Con Living in Poverty: Developmental Poetics of Cultural Realities = Adv. Cult. Psychol. Con. Living in Worlds of Music: A View of Education and Values = Landsc Art Aesthet E Living in Worlds of Music: A View of Education and Values = Landsc. Art. Aesthet. E. Living = Living Living On The Edge: The Mythical, Spiritual, and Philosophical Roots of Social Marginality = Health Hum Dev Living On The Edge: The Mythical, Spiritual, and Philosophical Roots of Social Marginality = Health. Hum. Dev. Living Reviews in Relativity = Living Rev Relativ Living Reviews in Relativity = Living Rev. Relativ. Living Reviews in Solar Physics = Living Rev Sol Phys Living Reviews in Solar Physics = Living Rev. Sol. Phys. Livrustkammaren = Livrustkammaren Ljetopis Socijalnog Rada = Ljetop Soc Rada Ljetopis Socijalnog Rada = Ljetop. Soc. Rada LJ special report = LJ Spec Rep Llano Estacado heritage = Llano Estac Heritage Lloydia = Lloyd Lloydia = Lloyd. Lloydia = Lloydia Lloydia-the Journal of Natural Products = Lloydia Lloydia-the Journal of Natural Products = Lloydia. Lloyds Bank Annual Review = Lloyds Bank Annu Rev Lloyds Bank Annual Review = Lloyds Bank Annu. Rev. Lloyds Bank Review=Lloyds Bank Rev. LLULL : boletin de la Sociedad Espanola de Historia de las Ciencias = Llull Lmi Approach to Analysis and Control of Takagi-sugeno Fuzzy Systems With Time Delay = Lect Notes Contr Inf Lmi Approach to Analysis and Control of Takagi-sugeno Fuzzy Systems With Time Delay = Lect. Notes. Contr. Inf. Lms Journal of Computation and Mathematics = Lms J Comput Math Lms Journal of Computation and Mathematics = Lms J. Comput. Math. LMS Journal of Computation and Mathematics = LMS J. Comput. Math. LMT : Lab management today = LMT LMT; Lab Management Today = LMT Lmx Leadership Series = Lmx Leadersh Ser Lmx Leadership Series = Lmx Leadersh. Ser. LÖBF-Mitteilungen, Landesanstalt für Ökologie, Bodenordnung und Forsten / Landesamt für Agrarordnung, Nordrhein-Westfalen = LÖBF-Mitt., Landesanst. Ökol. Bodenordn. Forsten, Landesamt Agrarordn. Nordrh.-Westfal. LÖBF-Schriftenreihe, Landesanstalt für Ökologie, Bodenordnung und Forsten, Nordrhein-Westfalen = LÖBF-Schr.reihe, Landesanst. Ökol. Bodenordn. Forsten Nordrh.-Westfal. Local and Analytic Cyclic Homology = Ems Tracts Math Local and Analytic Cyclic Homology = Ems. Tracts. Math. Local and Metropolitan Area Networks = P Soc Photo-opt Ins Local and Metropolitan Area Networks = P. Soc. Photo-opt. Ins. Local and Semi-local Bifurcations in Hamiltonian Dynamical Systems: Results and Examples = Lect Notes Math Local and Semi-local Bifurcations in Hamiltonian Dynamical Systems: Results and Examples = Lect. Notes. Math. Local Area Network Applications: Leveraging The Lan = Ifip Trans A Local Area Network Applications: Leveraging The Lan = Ifip. Trans. A. Local Area Network Security = Lect Notes Comput Sc Local Area Network Security = Lect. Notes. Comput. Sc. Local Bifurcations, Center Manifolds, and Normal Forms in Infinite-dimensional Dynamical Systems = Universitext Local Bifurcations, Center Manifolds, and Normal Forms in Infinite-dimensional Dynamical Systems = Universitext. Local Bubble and Beyond Ii = Aip Conf Proc Local Bubble and Beyond Ii = Aip. Conf. Proc. Local Cells, Global Science: The Rise of Embryonic Stem Cell Research in India = Genet Soc Local Cells, Global Science: The Rise of Embryonic Stem Cell Research in India = Genet. Soc. Local Cohomology and Its Applications = Lect Notes Pure Appl Local Cohomology and Its Applications = Lect. Notes. Pure. Appl. Local Construction of A Global Language = Lang Power Soc Proce Local Construction of A Global Language = Lang. Power. Soc. Proce. Local Economy=Local Economy Local Elites, Political Capital and Democratic Development: Governing Leaders in Seven European Countries = Urban Reg Res Int Local Elites, Political Capital and Democratic Development: Governing Leaders in Seven European Countries = Urban. Reg. Res. Int. Local Governance in Central and Eastern Europe: Comparing Performance in The Czech Republic, Hungary, Poland and Russia = St Antonys Ser Local Governance in Central and Eastern Europe: Comparing Performance in The Czech Republic, Hungary, Poland and Russia = St. Antonys. Ser. Local Government Studies = Local Gov Stud Local Government Studies = Local Gov. Stud. Local Government Studies-new Series = Loc Gov Stud-new Ser Local Government Studies-new Series = Loc. Gov. Stud-new. Ser. Local Group As An Astrophysical Laboratory = Space Tel S Local Group As An Astrophysical Laboratory = Space. Tel. S. Local Heroes in The Global Village = Int Stud Entre Local Heroes in The Global Village = Int. Stud. Entre. Local Immunity in Reproductive Tract Tissues = Sci Bas Fer Local Immunity in Reproductive Tract Tissues = Sci. Bas. Fer. Local Immunity = Local Immun Local Immunity = Local Immun. Local Immunotherapy in Allergy = Chem Immunol Local Immunotherapy in Allergy = Chem. Immunol. Localisation 1990 = Inst Phys Conf Ser Localisation 1990 = Inst. Phys. Conf. Ser. Localised Technological Change: Towards The Economics of Complexity = Routl Stud Glob Comp Localised Technological Change: Towards The Economics of Complexity = Routl. Stud. Glob. Comp. Localist Movements in A Global Economy: Sustainability, Justice, and Urban Development in The United States = Urban Ind Environ Localist Movements in A Global Economy: Sustainability, Justice, and Urban Development in The United States = Urban Ind. Environ. Locality Domains in The Spanish Determiner Phrase = Stud Nat Lang Lingui Locality Domains in The Spanish Determiner Phrase = Stud. Nat. Lang. Lingui. Locality in Minimalist Syntax = Linguist Inq Monogr Locality in Minimalist Syntax = Linguist. Inq. Monogr. Locality in Vowel Harmony = Linguist Inq Monogr Locality in Vowel Harmony = Linguist. Inq. Monogr. Localization and Confinement of Electrons in Semiconductors = Springer Series Soli Localization and Confinement of Electrons in Semiconductors = Springer. Series. Soli. Localized In-situ Methods for Investigating Electrochemical Interfaces = Elec Soc S Localized In-situ Methods for Investigating Electrochemical Interfaces = Elec. Soc. S. Localized to Itinerant Electronic Transition in Perovskite Oxides = Struct Bond Localized to Itinerant Electronic Transition in Perovskite Oxides = Struct. Bond. Local land and soil news = Local land soil news Local Lattice Rotations and Disclinations in Microstructures of Distorted Crystalline Materials = Solid State Phenomen Local Lattice Rotations and Disclinations in Microstructures of Distorted Crystalline Materials = Solid. State. Phenomen. Local Lattice Rotations and Disclinations in Microstructures of Distorted Crystalline Materials = Sol St Phen Local Lattice Rotations and Disclinations in Microstructures of Distorted Crystalline Materials = Sol. St. Phen. Local Lyapunov Exponents: Sublimiting Growth Rates of Linear Random Differential Equations = Lect Notes Math Local Lyapunov Exponents: Sublimiting Growth Rates of Linear Random Differential Equations = Lect. Notes. Math. Locally Compact Quantum Groups and Groupoids = Irma L Math The Phys Locally Compact Quantum Groups and Groupoids = Irma. L. Math. The. Phys. Locally Decodable Codes and Private Information Retrieval Schemes = Inform Sec Crypt Tex Locally Decodable Codes and Private Information Retrieval Schemes = Inform. Sec. Crypt. Tex. Local Mediterranean Food Plants and Nutraceuticals = Forum Nutr Local Mediterranean Food Plants and Nutraceuticals = Forum. Nutr. Local-moment Ferromagnets = Lect Notes Phys Local-moment Ferromagnets = Lect. Notes. Phys. Local Newforms for Gsp(4) = Lect Notes Math Local Newforms for Gsp(4) = Lect. Notes. Math. Local Organizations and Urban Governance in East and Southeast Asia: Straddling State and Society = Routl Stud Civil Soc Local Organizations and Urban Governance in East and Southeast Asia: Straddling State and Society = Routl. Stud. Civil. Soc. Local Pattern Detection = Lect Notes Artif Int Local Pattern Detection = Lect. Notes. Artif. Int. Local Politics and Democratization in Russia = Basees-rout Ser Russ Local Politics and Democratization in Russia = Basees-rout. Ser. Russ. Local population studies = Local Popul Stud Local Prostatic Carcinoma = Contr Oncol Local Prostatic Carcinoma = Contr. Oncol. Local Structure From Diffraction = Fundmat Res Local Structure From Diffraction = Fundmat. Res. Local Sustainability = Local Sustain Local Sustainability = Local Sustain. Local Systems in Reproduction = Serono Sym Local Systems in Reproduction = Serono. Sym. Local Transport Studies in Fusion Plasmas = Int Sch Pl Local Transport Studies in Fusion Plasmas = Int. Sch. Pl. Locational Competition in The World Economy, Symposium 1994 = Inst Weltwirts Symp Locational Competition in The World Economy, Symposium 1994 = Inst. Weltwirts. Symp. Location- and Context-awareness = Lect Notes Comput Sc Location- and Context-awareness = Lect. Notes. Comput. Sc. Location and Context Awareness = Lect Notes Comput Sc Location and Context Awareness = Lect. Notes. Comput. Sc. Location- and Context-awareness, Proceedings = Lect Notes Comput Sc Location- and Context-awareness, Proceedings = Lect. Notes. Comput. Sc. Location Behaviour and Relationship Stability in International Business Networks: Evidence From The Automotive Industry = Routl Stud Bus Organ Location Behaviour and Relationship Stability in International Business Networks: Evidence From The Automotive Industry = Routl. Stud. Bus. Organ. Location Services and Navigation Technologies = P Soc Photo-opt Ins Location Services and Navigation Technologies = P. Soc. Photo-opt. Ins. Locative Syntax of Experiencers = Linguist Inq Monogr Locative Syntax of Experiencers = Linguist. Inq. Monogr. Lock-in Thermography: Basics and Use for Evaluating Electronic Devices and Materials, Second Edition = Spr Ser Adv Microele Lock-in Thermography: Basics and Use for Evaluating Electronic Devices and Materials, Second Edition = Spr. Ser. Adv. Microele. Locus (Denton, Tex.) = Locus L'Odontologie = Odontologie Lodz Studies in Language = Lodz Stud Language Lodz Studies in Language = Lodz Stud. Language Loeb Measures in Practice: Recent Advances = Lect Notes Math Loeb Measures in Practice: Recent Advances = Lect. Notes. Math. Loess : Geomorphological Hazards and Process = Catena Supp Loess : Geomorphological Hazards and Process = Catena. Supp. Log-gases and Random Matrices = Lond Math Soc Monogr Log-gases and Random Matrices = Lond. Math. Soc. Monogr. Logical and Computational Aspects of Model-based Reasoning = Appl Log Ser Logical and Computational Aspects of Model-based Reasoning = Appl. Log. Ser. Logical and Relational Learning = Cogn Technol Logical and Relational Learning = Cogn. Technol. Logical Approaches to Comptational Barriers, Proceedings = Lect Notes Comput Sc Logical Approaches to Comptational Barriers, Proceedings = Lect. Notes. Comput. Sc. Logical Approaches to Computational Barriers, Proceedings = Lect Notes Comput Sc Logical Approaches to Computational Barriers, Proceedings = Lect. Notes. Comput. Sc. Logical Approach to Philosophy: Essays in Honour of Graham Solomon = W Ont Ser Philos Sci Logical Approach to Philosophy: Essays in Honour of Graham Solomon = W. Ont. Ser. Philos. Sci. Logical Aspects of Computational Linguistics = Lect Notes Artif Int Logical Aspects of Computational Linguistics = Lect. Notes. Artif. Int. Logical Aspects of Computational Linguistics, Proceedings = Lect Notes Comput Sc Logical Aspects of Computational Linguistics, Proceedings = Lect. Notes. Comput. Sc. Logical Empiricism in North America = Minn Stud Philos Sci Logical Empiricism in North America = Minn. Stud. Philos. Sci. Logical Foundations of Computer Science = Lect Notes Comput Sc Logical Foundations of Computer Science = Lect. Notes. Comput. Sc. Logical Foundations of Computer Science, Proceedings = Lect Notes Comput Sc Logical Foundations of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Logical Foundations of Computer Science - Tver 92 = Lect Notes Comput Sc Logical Foundations of Computer Science - Tver 92 = Lect. Notes. Comput. Sc. Logical Methods in Computer Science = Log Meth Comput Sci Logical Methods in Computer Science = Log. Meth. Comput. Sci. Logical Methods = Prog Com Sc Logical Methods = Prog. Com. Sc. Logical Tools for Handling Change in Agent-based Systems = Cogn Technol Logical Tools for Handling Change in Agent-based Systems = Cogn. Technol. Logic and Algebra = Lect Notes Pure Appl Logic and Algebra = Lect. Notes. Pure. Appl. Logic and Computation in Philosophy = Logic Comput. Philos. Logic and Computer Science = Lect Notes Math Logic and Computer Science = Lect. Notes. Math. Logic and Integer Programming = Int Ser Oper Res Man Logic and Integer Programming = Int. Ser. Oper. Res. Man. Logic and Its Applications = Contemp Math Logic and Its Applications = Contemp. Math. Logic and Its Applications = Lect Notes Artif Int Logic and Its Applications = Lect. Notes. Artif. Int. Logic and Logical Philosophy = Logic Log. Philos. Logic and Philosophy of Mathematics in The Early Husserl = Synth Libr Logic and Philosophy of Mathematics in The Early Husserl = Synth. Libr. Logic and Philosophy of Science in Uppsala = Synth Libr Logic and Philosophy of Science in Uppsala = Synth. Libr. Logic and Scientific Methods = Synth Libr Logic and Scientific Methods = Synth. Libr. Logic and The Foundations of Game and Decision Theory - Loft 8 = Lect Notes Artif Int Logic and The Foundations of Game and Decision Theory - Loft 8 = Lect. Notes. Artif. Int. Logic and Theory of Algorithms = Lect Notes Comput Sc Logic and Theory of Algorithms = Lect. Notes. Comput. Sc. Logica Nova = Logica Nova Logic, Artificial Intelligence and Robotics = Fr Art Int Logic, Artificial Intelligence and Robotics = Fr. Art. Int. Logic, Artificial Intelligence and Robotics = Front Artif Intel Ap Logic, Artificial Intelligence and Robotics = Front. Artif. Intel. Ap. Logica Trianguli = Log. Trianguli Logic-based Artificial Intelligence = Kluwer Int Ser Eng C Logic-based Artificial Intelligence = Kluwer. Int. Ser. Eng. C. Logic-based Artificial Intelligence = Springer Int Ser Eng Logic-based Artificial Intelligence = Springer. Int. Ser. Eng. Logic-based Program Synthesis and Transformation = Lect Notes Comput Sc Logic-based Program Synthesis and Transformation = Lect. Notes. Comput. Sc. Logic Based Program Synthesis and Transformation = Lect Notes Comput Sc Logic Based Program Synthesis and Transformation = Lect. Notes. Comput. Sc. Logic-based Program Synthesis and Transformation, Proceedings = Lect Notes Comput Sc Logic-based Program Synthesis and Transformation, Proceedings = Lect. Notes. Comput. Sc. Logic Based Program Synthesis and Trnsformation = Lect Notes Comput Sc Logic Based Program Synthesis and Trnsformation = Lect. Notes. Comput. Sc. Logic Colloquim 01, Proceedings = Lect Notes Logic Logic Colloquim 01, Proceedings = Lect. Notes. Logic Logic Colloquim '98 = Lect Notes Logic Logic Colloquim '98 = Lect. Notes. Logic Logic Colloquium '02 = Lect Notes Logic Logic Colloquium '02 = Lect. Notes. Logic Logic Colloquium '95 = Lect Notes Logic Logic Colloquium '95 = Lect. Notes. Logic Logic Epistemology and The Unity of Science = Logic Epistemol Unit Logic Epistemology and The Unity of Science = Logic Epistemol. Unit. Logic for Programming and Automated Reasoning, Proceedings = Lect Notes Artif Int Logic for Programming and Automated Reasoning, Proceedings = Lect. Notes. Artif. Int. Logic for Programming, Artificial Intelligence, and Reasoning = Lect Notes Artif Int Logic for Programming, Artificial Intelligence, and Reasoning = Lect. Notes. Artif. Int. Logic for Programming, Artificial Intelligence, and Reasoning = Lect Notes Comput Sc Logic for Programming, Artificial Intelligence, and Reasoning = Lect. Notes. Comput. Sc. Logic for Programming, Artificial Intelligence, and Reasoning, Proceedings = Lect Notes Artif Int Logic for Programming, Artificial Intelligence, and Reasoning, Proceedings = Lect. Notes. Artif. Int. Logic for Programming, Artificial Intelligence, and Reasoning, Proceedings = Lect Notes Comput Sc Logic for Programming, Artificial Intelligence, and Reasoning, Proceedings = Lect. Notes. Comput. Sc. Logicism, Intuitionism, and Formalism: What Has Become of Them? = Synth Libr Logicism, Intuitionism, and Formalism: What Has Become of Them? = Synth. Libr. Logic Journal of The Igpl = Logic J Igpl Logic Journal of The Igpl = Logic J. Igpl Logic Journal of the IGPL = Log. J. IGPL Logic Journal of The Igpl = Log J Igpl Logic Journal of The Igpl = Log. J. Igpl Logic, Language, and Computation = Lect Notes Artif Int Logic, Language, and Computation = Lect. Notes. Artif. Int. Logic, Language, and The Structure of Scientific Theories = Pitt Konst S Philos Logic, Language, and The Structure of Scientific Theories = Pitt. Konst. S. Philos. Logic, Language, Information and Computation = Lect Notes Artif Int Logic, Language, Information and Computation = Lect. Notes. Artif. Int. Logic, Language, Information and Computation, Proceedings = Lect Notes Comput Sc Logic, Language, Information and Computation, Proceedings = Lect. Notes. Comput. Sc. Logic, Mathematics, Philosophy: Vintage Enthusiasms: Essays in Honour of John L Bell = W Ont Ser Philos Sci Logic, Mathematics, Philosophy: Vintage Enthusiasms: Essays in Honour of John L Bell = W. Ont. Ser. Philos. Sci. Logic of Adaptive Behavior: Knowledge Representation and Algorithms for Adaptive Sequential Decision Making Under Uncertainty in First-order and Relational Domains = Front Artif Intel Ap Logic of Adaptive Behavior: Knowledge Representation and Algorithms for Adaptive Sequential Decision Making Under Uncertainty in First-order and Relational Domains = Front. Artif. Intel. Ap. Logic of Theory Change = Lect Notes Artif Int Logic of Theory Change = Lect. Notes. Artif. Int. Logic Programming and Automated Reasoning = Lect Notes Artif Int Logic Programming and Automated Reasoning = Lect. Notes. Artif. Int. Logic Programming and Knowledge Representation = Lect Notes Artif Int Logic Programming and Knowledge Representation = Lect. Notes. Artif. Int. Logic Programming and Nonmonotonic Reasoning = Lect Notes Artif Int Logic Programming and Nonmonotonic Reasoning = Lect. Notes. Artif. Int. Logic Programming and Nonmonotonic Reasoning, Proceedings = Lect Notes Artif Int Logic Programming and Nonmonotonic Reasoning, Proceedings = Lect. Notes. Artif. Int. Logic Programming and Nonmonotonic Reasoning, Proceedings = Lect Notes Comput Sc Logic Programming and Nonmonotonic Reasoning, Proceedings = Lect. Notes. Comput. Sc. Logic Programming in Action = Lect Notes Artif Int Logic Programming in Action = Lect. Notes. Artif. Int. Logic Programming = Lect Notes Comput Sc Logic Programming = Lect. Notes. Comput. Sc. Logic Programming = Logic Programm Logic Programming = Logic Programm. Logic Programming = Mit Ps Log Logic Programming = Mit. Ps. Log. Logic Programming, Proceedings = Lect Notes Comput Sc Logic Programming, Proceedings = Lect. Notes. Comput. Sc. Logic Programming : Proceedings of The 1990 North American Conference = Logic Programm Logic Programming : Proceedings of The 1990 North American Conference = Logic Programm. Logic Programming : Proceedings of The 1991 International Symposium = Logic Programm Logic Programming : Proceedings of The 1991 International Symposium = Logic Programm. Logic Programming - Proceedings of The 1997 International Symposium = Logic Programm Logic Programming - Proceedings of The 1997 International Symposium = Logic Programm. Logic Programming - Proceedings of The 1998 Joint International Conference and Symposium On Logic Programming = Logic Programm Logic Programming - Proceedings of The 1998 Joint International Conference and Symposium On Logic Programming = Logic Programm. Logic Programming: Proceedings of The 1999 International Conference On Logic Programming = Logic Programm Logic Programming: Proceedings of The 1999 International Conference On Logic Programming = Logic Programm. Logic Programming : Proceedings of The Eighth International Conference = Logic Programm Logic Programming : Proceedings of The Eighth International Conference = Logic Programm. Logic Programming : Proceedings of The North American Conference, 1989, Vol 1-2 = Logic Programm Logic Programming : Proceedings of The North American Conference, 1989, Vol 1-2 = Logic Programm. Logic Programming : Proceedings of The Seventh International Conference = Logic Programm Logic Programming : Proceedings of The Seventh International Conference = Logic Programm. Logic Program Synthesis and Transformation = Lect Notes Comput Sc Logic Program Synthesis and Transformation = Lect. Notes. Comput. Sc. Logic Program Synthesis and Transformation = Work Comp Logic Program Synthesis and Transformation = Work. Comp. Logic, Rationality, and Interaction, Proceedings = Lect Notes Artif Int Logic, Rationality, and Interaction, Proceedings = Lect. Notes. Artif. Int. Logics for Linguistic Structures = Trend Lin S Logics for Linguistic Structures = Trend. Lin. S. Logics in Ai = Lect Notes Artif Int Logics in Ai = Lect. Notes. Artif. Int. Logics in Ai / = Lect Notes Artif Int Logics in Ai / = Lect. Notes. Artif. Int. Logics in Artificial Intelligence 8th = Lect Notes Artif Int Logics in Artificial Intelligence 8th = Lect. Notes. Artif. Int. Logics in Artificial Intelligence = Lect Notes Artif Int Logics in Artificial Intelligence = Lect. Notes. Artif. Int. Logics in Artificial Intelligence, Proceedings = Lect Notes Artif Int Logics in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Logics in Artificial Intelligence, Proceedings = Lect Notes Comput Sc Logics in Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Logics of Critical Explanation in Social and Political Theory = Routl Innov Polit Th Logics of Critical Explanation in Social and Political Theory = Routl. Innov. Polit. Th. Logics of Specification Languages = Monogr Theor Comput Logics of Specification Languages = Monogr. Theor. Comput. Logics Programming, Proceedings = Lect Notes Comput Sc Logics Programming, Proceedings = Lect. Notes. Comput. Sc. Logic Synthesis for Compositional Microprogram Control Units = Lect Notes Electr En Logic Synthesis for Compositional Microprogram Control Units = Lect. Notes. Electr. En. Logic System of Concept Graphs With Negation and Its Relationship to Predicate Logic = Lect Notes Artif Int Logic System of Concept Graphs With Negation and Its Relationship to Predicate Logic = Lect. Notes. Artif. Int. Logic, Thought and Action = Logic Epistemol Unit Logic, Thought and Action = Logic. Epistemol. Unit. Logic Versus Approximation = Lect Notes Comput Sc Logic Versus Approximation = Lect. Notes. Comput. Sc. Logique Et Analyse = Log Anal Logique Et Analyse = Log. Anal. Logique et Analyse = Logique et Anal. (N.S.) Logistic Regression Models = Ch Crc Text Stat Sci Logistic Regression Models = Ch. Crc. Text. Stat. Sci. Logistics and Politics of The British Campaigns in The Middle East, 1914-22 = Stud Mil Strateg His Logistics and Politics of The British Campaigns in The Middle East, 1914-22 = Stud. Mil. Strateg. His. Logistics and Transportation Review = Logist Transport Rev Logistics and Transportation Review = Logist. Transport. Rev. Logistics and Transportation Review=Logist. Transp. Rev. Logistics Outsourcing Relationships: Measurement, Antecedents, and Effects of Logistics Outsourcing Performance = Contrib Manag Sci Logistics Outsourcing Relationships: Measurement, Antecedents, and Effects of Logistics Outsourcing Performance = Contrib. Manag. Sci. Logistik in Der Automobilindustrie: Innovatives Supply Chain Management Fur Wettbewerbsfahige Zulieferstrukturen = Vdi-buch Logistik in Der Automobilindustrie: Innovatives Supply Chain Management Fur Wettbewerbsfahige Zulieferstrukturen = Vdi-buch. Log = Log Logopedics, phoniatrics, vocology = Logoped Phoniatr Vocol Logopedics, Phoniatrics, Vocology = Logoped. Phoniatr. Vocol. Logopedics Phoniatrics Vocology = Logop Phoniatr Voco Logopedics Phoniatrics Vocology = Logop. Phoniatr. Voco. Logos-a Journal of Catholic Thought and Culture = Logos-st Paul Logos-a Journal of Catholic Thought and Culture = Logos-st. Paul. Logos = Logos Logos of History - Logos of Life. Historicity, Time, Nature, Communication, Consciousness, Alterity, Culutre = Anal Hus Yb Logos of History - Logos of Life. Historicity, Time, Nature, Communication, Consciousness, Alterity, Culutre = Anal. Hus. Yb. Logos of Phenomenology and Phenomenology of The Logos, Book 1 = Anal Hus Yb Logos of Phenomenology and Phenomenology of The Logos, Book 1 = Anal. Hus. Yb. Logos of Phenomenology and Phenomenology of The Logos, Book 2 = Anal Hus Yb Logos of Phenomenology and Phenomenology of The Logos, Book 2 = Anal. Hus. Yb. Logos of Phenomenology and Phenomenology of The Logos, Book 4 = Anal Hus Yb Logos of Phenomenology and Phenomenology of The Logos, Book 4 = Anal. Hus. Yb. Logos of Phenomenology and Phenomenology of The Logos, Book 5 = Analecta Husserl Logos of Phenomenology and Phenomenology of The Logos, Book 5 = Analecta. Husserl. Logos of Phenomenology and Phenomenology of The Logos, Book 5 = Anal Hus Yb Logos of Phenomenology and Phenomenology of The Logos, Book 5 = Anal. Hus. Yb. Logos & Pneuma-chinese Journal of Theology = Logos Pneuma-chin J Logos & Pneuma-chinese Journal of Theology = Logos Pneuma-chin. J. Logos (Santa Clara, Calif.) = Logos (Santa Clara) Logos-vilnius = Logos-vilnius Lohnanspruche Deutscher Arbeitsloser: Determinanten Und Auswirkungen Von Reservationslohnen = Kiel Stud Lohnanspruche Deutscher Arbeitsloser: Determinanten Und Auswirkungen Von Reservationslohnen = Kiel. Stud. Lois De Conservations Euleriennes, Lagrangiennes Et Methodes Numeriques = Math Appl-berlin Lois De Conservations Euleriennes, Lagrangiennes Et Methodes Numeriques = Math. Appl-berlin. Loisir & Societe-society and Leisure = Loisir Soc-soc Leis Loisir & Societe-society and Leisure = Loisir Soc-soc. Leis. LÖLF-Mitteilungen, Landesanstalt für Ökologie, Landschaftsentwicklung und Forstplanung, Nordrhein-Westfalen = LÖLF-Mitt., Landesanst. Ökol. Landsch.entwickl.  Forstplan., Nordrh.-Westfal. Loma Linda University Dentist Magazine = Loma Linda Univ Dent Mag Loma Linda University Dentist Magazine = Loma Linda Univ. Dent. Mag. London Clinic medical journal = Lond Clin Med J London Clinic Medical Journal = Lond. Clin. Med. J. London Journal = Lond J London Journal = Lond. J. London-leiden Series On Law, Administration and Development = Lon Lei Ser Law Adm London-leiden Series On Law, Administration and Development = Lon. Lei. Ser. Law. Adm. London Mathematical Society Lecture Note Series = Lond Math S London Mathematical Society Lecture Note Series = Lond. Math. S. London Mathematical Society Lecture Note Series = London Math. Soc. Lecture Note Ser. London Mathematical Society Monographs = Lond Math Soc Monogr London Mathematical Society Monographs = Lond. Math. Soc. Monogr. London Mathematical Society Monographs = London Math. Soc. Monogr. (N.S.) London Mathematical Society Student Texts = London Math. Soc. Stud. Texts London Papers in Regional Science = London Pap London Papers in Regional Science = London Pap. London School of Hygiene & Tropical Medicine - Annual Public Health Form = Lshtm Publ Heal For London School of Hygiene & Tropical Medicine - Annual Public Health Form = Lshtm. Publ. Heal. For. London Studies in The History of Philosophy = Lond Stud Hist Philo London Studies in The History of Philosophy = Lond. Stud. Hist. Philo. Lone-parent Families = Oecd Soc P Lone-parent Families = Oecd. Soc. P. Long and Winding Road From Blake to The Beatles = Ninet-century Major Long and Winding Road From Blake to The Beatles = Ninet-century. Major. Longer Wavelength Lasers and Applications = P Soc Photo-opt Ins Longer Wavelength Lasers and Applications = P. Soc. Photo-opt. Ins. Longevita = Longevita Longevity and Evolution = Aging Iss Health Fin Longevity and Evolution = Aging. Iss. Health. Fin. Longevity Health Sciences: The Phoenix Conference = Ann Ny Acad Sci Longevity Health Sciences: The Phoenix Conference = Ann. Ny. Acad. Sci. Longevity, Regeneration, and Optimal Health: Integrating Eastern and Westen Perspectives = Ann Ny Acad Sci Longevity, Regeneration, and Optimal Health: Integrating Eastern and Westen Perspectives = Ann. Ny. Acad. Sci. Longevity Revolution = Colloq Inst Servier Longevity Revolution = Colloq. Inst. Servier. Long Island forum = Long Isl Forum Longitudinal Data Analysis = Ch Crc Handb Mod Sta Longitudinal Data Analysis = Ch. Crc. Handb. Mod. Sta. Longitudinal Models in The Behavioral and Related Sciences = Eur Assoc Methodol S Longitudinal Models in The Behavioral and Related Sciences = Eur. Assoc. Methodol. S. Long Non-coding Rnas, Vol 51 = Prog Mol Subcell Bio Long Non-coding Rnas, Vol 51 = Prog. Mol. Subcell. Bio. Long-range Atmospheric Transport of Natural and Contaminant Substances = Nato Adv Sci I C-mat Long-range Atmospheric Transport of Natural and Contaminant Substances = Nato. Adv. Sci. I. C-mat. Long-range Charge Transfer in Dna Ii = Top Curr Chem Long-range Charge Transfer in Dna Ii = Top. Curr. Chem. Long-range Charge Transfer in Dna I = Top Curr Chem Long-range Charge Transfer in Dna I = Top. Curr. Chem. Long-range Control of Gene Expression = Adv Genet Long-range Control of Gene Expression = Adv. Genet. Long-range Correlations in Astrophysical Systems = Ann Ny Acad Sci Long-range Correlations in Astrophysical Systems = Ann. Ny. Acad. Sci. Long-range Interactions, Stochasticity and Fractional Dynamics = Nonlinear Phys Sci Long-range Interactions, Stochasticity and Fractional Dynamics = Nonlinear. Phys. Sci. Long range planning = Long Range Plann Long Range Planning = Long Range Plann Long Range Planning = Long Range Plann. Long term care and health services administration quarterly = Long Term Care Health Serv Adm Q Long Term Care and Health Services Administration Quarterly = Long Term Care Health Serv. Adm. Q. Long term care (Don Mills, Ont.) = Long Term Care (Don Mills) Long-term Care for Frail Older People = Keio Univ Symp Life Long-term Care for Frail Older People = Keio. Univ. Symp. Life. Long Term Care = Long Term Care (Don Mills) Long-term Care Medicine: A Pocket Guide = Curr Clin Pract Long-term Care Medicine: A Pocket Guide = Curr. Clin. Pract. Long-term care quarterly = Long Term Care Q Long Term Care Quarterly = Long Term Care Q. Long-term Changes in Ecosystem Diversity = Oceanis S D Long-term Changes in Ecosystem Diversity = Oceanis. S. D. Long-term Consequences of Early Feeding = Nestle Nutr Works Se Long-term Consequences of Early Feeding = Nestle. Nutr. Works. Se. Long-term Cyclosporin: Delivering Effective Therapeutic Levels = Roy S Med S Long-term Cyclosporin: Delivering Effective Therapeutic Levels = Roy. S. Med. S. Long Term Evolution: 3gpp Lte Radio and Cellular Technology = Internet Commun Long Term Evolution: 3gpp Lte Radio and Cellular Technology = Internet. Commun. Long-term Field Trials to Assess Environmental Impacts of Harvesting = Fri Bull Long-term Field Trials to Assess Environmental Impacts of Harvesting = Fri. Bull. Long-term Hillslope and Fluvial System Modelling = Lect Notes Earth Sci Long-term Hillslope and Fluvial System Modelling = Lect. Notes. Earth. Sci. Long-term Management of Contaminated Sites = Res Soc Probl Public Long-term Management of Contaminated Sites = Res. Soc. Probl. Public. Long-term Monitoring of The Earths Radiation Budget = P Soc Photo-opt Ins Long-term Monitoring of The Earths Radiation Budget = P. Soc. Photo-opt. Ins. Long-term Properties of Polyolefins = Adv Polym Sci Long-term Properties of Polyolefins = Adv. Polym. Sci. Long-term Trends: Thermosphere, Mesosphere, Stratosphere, and Lower Ionosphere = Adv Space Res Long-term Trends: Thermosphere, Mesosphere, Stratosphere, and Lower Ionosphere = Adv. Space. Res. Long Time Behaviour of Classical and Quantum Systems = Ser Con Appl Math Long Time Behaviour of Classical and Quantum Systems = Ser. Con. Appl. Math. Long View of Research and Practice in Operations Research and Management Science: The Past and The Future = Int Ser Oper Res Man Long View of Research and Practice in Operations Research and Management Science: The Past and The Future = Int. Ser. Oper. Res. Man. Long Wavelength Infrared Detectors and Arrays: Physics and Applications V = Elec Soc S Long Wavelength Infrared Detectors and Arrays: Physics and Applications V = Elec. Soc. S. Long-wavelength Semiconductor Devices, Materials, and Processes = Mater Res Soc Symp P Long-wavelength Semiconductor Devices, Materials, and Processes = Mater. Res. Soc. Symp. P. Look At State and Local Tax Policies = Tax Pol R P Look At State and Local Tax Policies = Tax Pol. R. P. Looking At It From Asia: The Processes That Shaped The Sources of History of Science = Bost Stud Philos Sci Looking At It From Asia: The Processes That Shaped The Sources of History of Science = Bost. Stud. Philos. Sci. Looking Back, Looking Forward: Centralization, Multiple Conflicts, and Democratic State Building in Nepal = Pol Stud Looking Back, Looking Forward: Centralization, Multiple Conflicts, and Democratic State Building in Nepal = Pol. Stud. Looking Deep in The Southern Sky = Eso Astrophy Symp Looking Deep in The Southern Sky = Eso. Astrophy. Symp. Looking for Information: Survey of Research On Information Seeking, Needs and Behavior, Second Edition = Libr Inform Sci Ser Looking for Information: Survey of Research On Information Seeking, Needs and Behavior, Second Edition = Libr. Inform. Sci. Ser. Looking Inward: Devotional Reading and The Private Self in Late Medieval England = Middle Ages Ser Looking Inward: Devotional Reading and The Private Self in Late Medieval England = Middle. Ages. Ser. Looking South = Contr Am Hi Looking South = Contr. Am. Hi. Lord Byron The European: Essays From The International Byron Society = Stud Brit Lit Lord Byron The European: Essays From The International Byron Society = Stud. Brit. Lit. L' Orthodontie francaise = Orthod Fr Los Alamos National Laboratory, Preprint Archive, Astrophysics = Los Alamos Nat. Lab. Prepr. Arch. Astrophys. Los Alamos National Laboratory, Preprint Archive, Condensed Matter = Los Alamos Nat. Lab. Prepr. Arch. Condens. Matter Los Alamos National Laboratory, Preprint Archive, General Relativity and Quantum Cosmology = Los Alamos Nat. Lab. Prepr. Arch. Gen. Relativ. Quantum Cosmol. Los Alamos National Laboratory, Preprint Archive, High Energy Physics-Experiment = Los Alamos Nat. Lab. Prepr. Arch. High Energy Phys. Exp. Los Alamos National Laboratory, Preprint Archive, High Energy Physics-Lattice = Los Alamos Nat. Lab. Prepr. Arch. High Energy Phys. Lattice Los Alamos National Laboratory, Preprint Archive, High Energy Physics-Phenomenology = Los Alamos Nat. Lab. Prepr. Arch. High Energy Phys. Phenomenol. Los Alamos National Laboratory, Preprint Archive, High Energy Physics-Theory = Los Alamos Nat. Lab. Prepr. Arch. High Energy Phys. Theory Los Alamos National Laboratory, Preprint Archive, Nuclear Experiment = Los Alamos Nat. Lab. Prepr. Arch. High Energy Phys. Nucl. Exp. Los Alamos National Laboratory, Preprint Archive, Nuclear Theory = Los Alamos Nat. Lab. Prepr. Arch. Nucl. Theory Los Alamos National Laboratory, Preprint Archive, Physics = Los Alamos Nat. Lab. Prepr. Arch. Phys. Los Alamos National Laboratory, Preprint Archive, Quantitative Biology = Los Alamos Nat. Lab. Prepr. Arch. Quant. Biol. Los Alamos National Laboratory, Preprint Archive, Quantum Physics = Los Alamos Nat. Lab. Prepr. Arch. Quantum Phys. Los Alamos science / Los Alamos Scientific Laboratory = Los Alamos Sci Los Angeles lawyer = Los Angel Lawyer L' Ospedale maggiore = Osp Maggiore L'Ospedale psichiatrico = Osp Psichiatr Lo sperimentale = Sperimentale Loss, grief & care = Loss Grief Care Lost Generation Journal = Lost Generation J Lost Generation Journal = Lost Generation J. Lost Worlds & Mad Elephants = Le Explorat Lit Cul Lost Worlds & Mad Elephants = Le. Explorat. Lit. Cul. L'Oto-rino-laringologia italiana = Otorinolaringol Ital Lot-sizing and Scheduling for Flexible Flow Lines = Lect Notes Econ Math Lot-sizing and Scheduling for Flexible Flow Lines = Lect. Notes. Econ. Math. Lotta Contro la Tubercolosi = Lotta Contro Tuberc. Lotta contro la tubercolosi = Lotta Tuberc Lotus International = Lotus Int Lotus International = Lotus Int. Lou Beray E Naturau Gascoun = Interlangues Lou Beray E Naturau Gascoun = Interlangues. Loudness = Springer Handb Audit Loudness = Springer. Handb. Audit. Louisiana Agricultural Experiment Station Bulletin = La Aes Bull Louisiana Agricultural Experiment Station Bulletin = La. Aes. Bull. Louisiana Agricultural Experiment Station Circular = La Aes Circ Louisiana Agricultural Experiment Station Circular = La. Aes. Circ. Louisiana Agriculture = La Agr Louisiana Agriculture = La. Agr. Louisiana history = La Hist Louisiana law review = LA Law Rev Louisiana Law Review = La Law Rev Louisiana Law Review = La. Law Rev. Louisiana studies = La Stud Louvain Economic Review=Louvain Econ. Rev. Louvain Medical = Louvain Med Louvain Medical = Louvain Med. Louvain medical = Louv Med Louvain studies = Louv Stud Louvain Theological & Pastoral Monographs = Louvain Theol Pastor Louvain Theological & Pastoral Monographs = Louvain Theol. Pastor. Love and War in London: A Womans Diary 1939-1942 = Life Writ Ser Love and War in London: A Womans Diary 1939-1942 = Life. Writ. Ser. Love in Modern Japan: Its Estrangement From Self, Sex and Society = Anthropol Asia Love in Modern Japan: Its Estrangement From Self, Sex and Society = Anthropol. Asia. Love, Justice, and Education: John Dewey and The Utopians = Landsc Educ Love, Justice, and Education: John Dewey and The Utopians = Landsc. Educ. Lovelace Medical Foundation Annual Conference = Lov Med Fdn Lovelace Medical Foundation Annual Conference = Lov. Med. Fdn. Loving The Body: Black Religious Studies and The Erotic = Black Relig Woman Th Loving The Body: Black Religious Studies and The Erotic = Black Relig. Woman. Th. Lovtidende. A, Almindelige love, anordninger og bekendtgoerelser. Denmark = LOVTID K DAN A Low and Equatorial Latitudes in The International Reference Ionosphere (iri) = Adv Space Res Low and Equatorial Latitudes in The International Reference Ionosphere (iri) = Adv. Space. Res. Low and High Dielectric Constant Materials: Materials Science, Processing, and Reliability Issues and Thin Film Materials for Advanced Packaging Technologies = Elec Soc S Low and High Dielectric Constant Materials: Materials Science, Processing, and Reliability Issues and Thin Film Materials for Advanced Packaging Technologies = Elec. Soc. S. Low-calorie Sweeteners: Present and Future = World Rev Nutr Diet Low-calorie Sweeteners: Present and Future = World. Rev. Nutr. Diet. Low Cost Automation 1992 = Ifac Symp Series Low Cost Automation 1992 = Ifac. Symp. Series. Low Cost Automation = Ifac Symp Series Low Cost Automation = Ifac. Symp. Series. Low Countries and The New World(s): Travel, Discovery, Early Relations = Publ Aans Low Countries and The New World(s): Travel, Discovery, Early Relations = Publ. Aans. Low-dielectric Constant Materials Iii = Mater Res Soc Symp P Low-dielectric Constant Materials Iii = Mater. Res. Soc. Symp. P. Low-dielectric Constant Materials Ii = Mater Res Soc Symp P Low-dielectric Constant Materials Ii = Mater. Res. Soc. Symp. P. Low-dielectric Constant Materials Iv = Mater Res Soc Symp P Low-dielectric Constant Materials Iv = Mater. Res. Soc. Symp. P. Low-dielectric Constant Materials - Synthesis and Applications in Microelectronics = Mater Res Soc Symp P Low-dielectric Constant Materials - Synthesis and Applications in Microelectronics = Mater. Res. Soc. Symp. P. Low-dielectric Constant Materials V = Mater Res Soc Symp P Low-dielectric Constant Materials V = Mater. Res. Soc. Symp. P. Low-dimensional Applications of Quantum Field Theory = Nato Adv Sci I B-phy Low-dimensional Applications of Quantum Field Theory = Nato. Adv. Sci. I. B-phy. Low-dimensional Carriers Under In-plane Magnetic Field: Novel Phenomena = Condens Matter Res T Low-dimensional Carriers Under In-plane Magnetic Field: Novel Phenomena = Condens. Matter. Res. T. Low-dimensional Structures in Semiconductors = Nato Adv Sci I B-phy Low-dimensional Structures in Semiconductors = Nato. Adv. Sci. I. B-phy. Low-dimensional Systems = Lect Notes Phys Low-dimensional Systems = Lect. Notes. Phys. Low-dimensional Systems: Theory, Preparation, and Some Applications = Nato Sci Ser Ii-math Low-dimensional Systems: Theory, Preparation, and Some Applications = Nato. Sci. Ser. Ii-math. Low-dimensional Systems: Theory, Preparation, and Some Applications = Nato Sci Ser Ii Math Low-dimensional Systems: Theory, Preparation, and Some Applications = Nato. Sci. Ser. Ii. Math. Low-dimensional Topology and Quantum Field Theory = Nato Adv Sci Inst Se Low-dimensional Topology and Quantum Field Theory = Nato. Adv. Sci. Inst. Se. Low Dimensional Topology = Bolyai Math Stud Low Dimensional Topology = Bolyai. Math. Stud. Low-dimensional Topology = Conf Proc Lect Not G Low-dimensional Topology = Conf. Proc. Lect. Not. G. Low Dose Irradiation and Biological Defense Mechanisms = Int Congr Ser Low Dose Irradiation and Biological Defense Mechanisms = Int. Congr. Ser. Lowell Wakefield Fisheries Symposia Series = Low Wake Fi Lowell Wakefield Fisheries Symposia Series = Low. Wake. Fi. Low Energy Antiproton Physics = Aip Conf Proc Low Energy Antiproton Physics = Aip. Conf. Proc. Low-energy Cooling Technologies for Buildings = Imeche Sem Low-energy Cooling Technologies for Buildings = Imeche. Sem. Low Energy Ion Beam and Plasma Modification of Materials = Mater Res Soc Symp P Low Energy Ion Beam and Plasma Modification of Materials = Mater. Res. Soc. Symp. P. Low-energy Ion Irradiation of Solid Surfaces = Springer Trac Mod Ph Low-energy Ion Irradiation of Solid Surfaces = Springer. Trac. Mod. Ph. Low-energy Ion Irradiation of Solid Surfaces = Springer Tr Mod Phys Low-energy Ion Irradiation of Solid Surfaces = Springer. Tr. Mod. Phys. Lower Central and Dimension Series of Groups = Lect Notes Math Lower Central and Dimension Series of Groups = Lect. Notes. Math. Lower Damodar River, India: Understanding The Human Role in Changing Fluvial Environment = Adv Asian Hum-env Re Lower Damodar River, India: Understanding The Human Role in Changing Fluvial Environment = Adv. Asian. Hum-env. Re. Lower-dimensional Systems and Molecular Electronics = Nato Adv Sci I B-phy Lower-dimensional Systems and Molecular Electronics = Nato. Adv. Sci. I. B-phy. Lower Gastrointestinal Malignancies = Radiat Med Rounds Lower Gastrointestinal Malignancies = Radiat. Med. Rounds. Lower Ionosphere: Measurements and Models = Adv Space Res Lower Ionosphere: Measurements and Models = Adv. Space. Res. Lower Jurassic Floras From Hope Bay and Botany Bay, Antarctica = Sp Palaeont Lower Jurassic Floras From Hope Bay and Botany Bay, Antarctica = Sp. Palaeont. Low-frequency Noise in Advanced Mos Devices = Analog Circ Sig Proc Low-frequency Noise in Advanced Mos Devices = Analog. Circ. Sig. Proc. Low-frequency Radio Universe = Astr Soc P Low-frequency Radio Universe = Astr. Soc. P. Low-german in Scandinavian Iv = Beih Zeit Deut Phil Low-german in Scandinavian Iv = Beih. Zeit. Deut. Phil. Low-grade Fuels, Vol 1 = Vtt Symp Low-grade Fuels, Vol 1 = Vtt. Symp. Low-grade Fuels, Vol 2 = Vtt Symp Low-grade Fuels, Vol 2 = Vtt. Symp. Low Gravity Phenomena and Condensed Matter Experiments in Space = Adv Space Res Low Gravity Phenomena and Condensed Matter Experiments in Space = Adv. Space Res. Low Gravity Phenomena and Condensed Matter Experiments in Space = Adv Space Res-series Low Gravity Phenomena and Condensed Matter Experiments in Space = Adv. Space Res-series. Low Incomes: Social, Health and Educational Impacts = Soc Iss Justice Stat Low Incomes: Social, Health and Educational Impacts = Soc. Iss. Justice. Stat. Low-latitude Ionospheric Physics = Cospar Coll Low-latitude Ionospheric Physics = Cospar. Coll. Low-light-level and Real-time Imaging Systems, Components, and Applications = P Soc Photo-opt Ins Low-light-level and Real-time Imaging Systems, Components, and Applications = P. Soc. Photo-opt. Ins. Low-lying Potential Energy Surfaces = Acs Sym Ser Low-lying Potential Energy Surfaces = Acs. Sym. Ser. Low-mass Stars and Brown Dwarfs - Imf Accretion and Activity = Mem Soc Astron Ital Low-mass Stars and Brown Dwarfs - Imf Accretion and Activity = Mem. Soc. Astron. Ital. Low-metallicity Star Formation: From The First Stars to Dwarf Galaxies = Iau Symp P Series Low-metallicity Star Formation: From The First Stars to Dwarf Galaxies = Iau. Symp. P. Series. Low Molecular Mass Gelators: Design, Self-assembly, Function = Top Curr Chem Low Molecular Mass Gelators: Design, Self-assembly, Function = Top. Curr. Chem. Low-power Crystal and Mems Oscillators: The Experience of Watch Developments = Integr Circuit Syst Low-power Crystal and Mems Oscillators: The Experience of Watch Developments = Integr. Circuit. Syst. Low Power Design Essentials = Integr Circuit Syst Low Power Design Essentials = Integr. Circuit. Syst. Low Power Design in Deep Submicron Electronics = Nato Adv Sci I E-app Low Power Design in Deep Submicron Electronics = Nato. Adv. Sci. I. E-app. Low-power High-resolution Analog to Digital Converters: Design, Test and Calibration = Analog Circ Sig Proc Low-power High-resolution Analog to Digital Converters: Design, Test and Calibration = Analog Circ. Sig. Proc. Low-power High -speed Adcs for Nanometer Cmos Integration = Analog Circ Sig Proc Low-power High -speed Adcs for Nanometer Cmos Integration = Analog. Circ. Sig. Proc. Low-power Noc for High-performance Soc Design = Syst-chip Des Techno Low-power Noc for High-performance Soc Design = Syst-chip. Des. Techno. Low Power Uwb Cmos Radar Sensors = Analog Circ Sig Proc Low Power Uwb Cmos Radar Sensors = Analog. Circ. Sig. Proc. Low Surface Brightness Universe = Astr Soc P Low Surface Brightness Universe = Astr. Soc. P. Low Temperature and Cryogenic Refrigeration = Nato Sci Ser Ii-math Low Temperature and Cryogenic Refrigeration = Nato. Sci. Ser. Ii-math. Low Temperature and Cryogenic Refrigeration = Nato Sci Ser Ii Math Low Temperature and Cryogenic Refrigeration = Nato. Sci. Ser. Ii. Math. Low Temperature Detectors = Aip Conf Proc Low Temperature Detectors = Aip. Conf. Proc. Low Temperature Detectors Ltd 13 = Aip Conf Proc Low Temperature Detectors Ltd 13 = Aip. Conf. Proc. Low Temperature Electronics and Low Temperature Cofired Ceramic Based Electronic Devices = Elec Soc S Low Temperature Electronics and Low Temperature Cofired Ceramic Based Electronic Devices = Elec. Soc. S. Low Temperature ( Lt ) Gaas and Related Materials = Mater Res Soc Symp P Low Temperature ( Lt ) Gaas and Related Materials = Mater. Res. Soc. Symp. P. Low Temperature Lubricant Rheology Measurement and Relevance to Engine Operation = Am Soc Test Mater Low Temperature Lubricant Rheology Measurement and Relevance to Engine Operation = Am. Soc. Test. Mater. Low Temperature Physics = Low Temp Phys+ Low Temperature Physics = Low Temp. Phys. Low Temperature Physics = Low Temp. Phys+.+ Low Temperature Physics, Pts A and B = Aip Conf Proc Low Temperature Physics, Pts A and B = Aip. Conf. Proc. Low-temperature Thermochronology: Techniques, Interpretations, and Applications = Rev Mineral Geochem Low-temperature Thermochronology: Techniques, Interpretations, and Applications = Rev. Mineral. Geochem. Low Vision = St Heal T Low Vision = St. Heal. T. Low Voltage Power Mosfets: Design, Performance and Applications = Spr Brief Appl Sci Low Voltage Power Mosfets: Design, Performance and Applications = Spr. Brief. Appl. Sci. Loyalty and Identity: Jacobites At Home and Abroad = Stud Mod Hist Loyalty and Identity: Jacobites At Home and Abroad = Stud. Mod. Hist. Loyola consumer law review = Loyola Consum Law Rev Loyola law review = Loyola Law Rev Loyola of Los Angeles international and comparative law journal = Loyola Los Angel Int Comp Law J Loyola of Los Angeles law review = Loyola Los Angel Law Rev Loyola University of Chicago law journal. Loyola University of Chicago. School of Law = Loyola Univ Chicago Law J Lse International Studies Series = Lse Int Stud Ser Lse International Studies Series = Lse Int. Stud. Ser. LTC regulatory risk & liability advisor = LTC Regul Risk Liabil Advis Lubrication At The Frontier = Tribology S Lubrication At The Frontier = Tribology. S. Lubrication Engineering = Lubr Eng Lubrication Engineering = Lubr. Eng. Lubrication = Lubrication Lubrication Science = Lubr Sci Lubrication Science = Lubr. Sci. Lucentum. Anales de la Universidad de Alicante. Prehistoria, arqueología e historia antigua = Lucentum Luftfahrtechnik Raumfahrtechnik = Luftfahrtech Raumfah Luftfahrtechnik Raumfahrtechnik = Luftfahrtech. Raumfah. Luft- und Raumfahrt = Luft Raumfahrt Luminescence Applied in Sensor Science = Top Curr Chem Luminescence Applied in Sensor Science = Top. Curr. Chem. Luminescence = Luminescence Luminescence Microscopy and Spectroscopy : Qualitative and Quantitative Applications = Sepm Short Luminescence Microscopy and Spectroscopy : Qualitative and Quantitative Applications = Sepm. Short. Luminescence : the journal of biological and chemical luminescence = Luminescence Luminescent Materials = Mater Res Soc Symp P Luminescent Materials = Mater. Res. Soc. Symp. P. Luminescent Materials Vi = Elec Soc S Luminescent Materials Vi = Elec. Soc. S. Luminous Blue Variables : Massive Stars in Transition = Astr Soc P Luminous Blue Variables : Massive Stars in Transition = Astr. Soc. P. Luminous High-latitude Stars = Astr Soc P Luminous High-latitude Stars = Astr. Soc. P. Lunar Concrete = Amer Conc I Lunar Concrete = Amer. Conc. I. Lunar Exploration 2000 = Adv Space Res Lunar Exploration 2000 = Adv. Space. Res. Lunar Exploration 2000 = Adv Space Res-series Lunar Exploration 2000 = Adv. Space. Res-series. Lund Archaeological Review = LundAR Lundqua Report = Lundqua Rep. Lung Biology in Health and Disease = Lung Biol Health Dis Lung Biology in Health and Disease = Lung Biol. Health Dis. Lung cancer (Amsterdam, Netherlands) = Lung Cancer Lung Cancer=Lung Cancer;; Lung Cancer = Lung Cancer Lung Cancer = Lung Cancer-j Iaslc Lung Cancer = Lung Cancer-j. Iaslc. Lung Cancer: Prevention, Management, and Emerging Therapies = Curr Clin Oncol Lung Cancer: Prevention, Management, and Emerging Therapies = Curr. Clin. Oncol. Lung=Lung;; Lung = Lung Lung Surfactant: Basic Research in The Pathogenesis of Lung Disorders = Prog R Res Lung Surfactant: Basic Research in The Pathogenesis of Lung Disorders = Prog. R. Res. Lung Transplantation = Eur Respir Monogr Lung Transplantation = Eur. Respir. Monogr. L'union medicale du Canada = Union Med Can L'univers Des Musiciens: Analyse D'une Experience Artistique = Socio-logiques L'univers Des Musiciens: Analyse D'une Experience Artistique = Socio-logiques. Luoyang University = J. Luoyang Univ. Lupin Production and Bio-processing for Feed, Food and Other By-products = Agric S Cec Lupin Production and Bio-processing for Feed, Food and Other By-products = Agric. S. Cec. Lupus=Lupus;; Lupus = Lupus Lupus Nephritis: Frontiers and Challenges = Immunol Immune Syst Lupus Nephritis: Frontiers and Challenges = Immunol. Immune. Syst. L’Urbe. Rivista romana = LUrbe Lure of The Object = Clark Stud Vis Arts Lure of The Object = Clark. Stud. Vis. Arts. Lurking Evil : Racial and Ethnic Conflict On The College Campus = Aascu Iss Lurking Evil : Racial and Ethnic Conflict On The College Campus = Aascu. Iss. Luso-brazilian Review = Luso-braz Rev Luso-brazilian Review = Luso-braz. Rev. Luso-Brazilian review = Luso-Braz Rev Lustrum. Internationale Forschungsberichte aus dem Bereich des klassischen Altertums = Lustrum Luther and Theosis = Schr Luth A Luther and Theosis = Schr. Luth. A. Lutheran quarterly (Gettysburg, Pa. : 1949) = Lutheran Q Lutheran Quarterly = Lutheran Quart Lutheran Quarterly = Lutheran Quart. Lutheran theological journal = Lutheran Theol J Luts-lower Urinary Tract Symptoms = Luts Luts-lower Urinary Tract Symptoms = Luts. Lutte Contre le Cancer = Lutte Cancer Luzifer-Amor : Zeitschrift zur Geschichte der Psychoanalyse = Luzif Amor Lvov-warsaw School and Contemporary Philosophy = Synth Libr Lvov-warsaw School and Contemporary Philosophy = Synth. Libr. Lwt-food Science and Technology = Lwt-food Sci Technol Lwt-food Science and Technology = Lwt-food Sci. Technol. LWT Food Science and Technology = LWT Food Sci. Technol. LWT--Food Science and Technology = LWT--Food Sci. Technol. Lxiii Yamada Conference On Photo-induced Phase Transition and Cooperative Phenomena (pipt3) = J Phys Conf Ser Lxiii Yamada Conference On Photo-induced Phase Transition and Cooperative Phenomena (pipt3) = J. Phys. Conf. Ser. Lyapunov Exponents = Lect Notes Math Lyapunov Exponents = Lect. Notes. Math. Lydgate Matters: Poetry and Material Culture in The Fifteenth Century = New Middle Ages Lydgate Matters: Poetry and Material Culture in The Fifteenth Century = New. Middle. Ages. Lyell: The Past Is The Key to The Present = Geol Soc Spec Publ Lyell: The Past Is The Key to The Present = Geol. Soc. Spec. Publ. Lykia. Anadolu-akdeniz kültürleri = Lykia Lyme Borreliosis Ii = Zbl Bakt P Lyme Borreliosis Ii = Zbl. Bakt. P. Lyme Borreliosis = Nato Adv Sci Inst Se Lyme Borreliosis = Nato. Adv. Sci. Inst. Se. Lymphangiogenesis in Cancer Metastasis = Cancer Metast Biol T Lymphangiogenesis in Cancer Metastasis = Cancer Metast. Biol. T. Lymphatic Continuum: Lymphatic Biology and Disease = Ann Ny Acad Sci Lymphatic Continuum: Lymphatic Biology and Disease = Ann. Ny. Acad. Sci. Lymphatic Continuum Revisited = Ann Ny Acad Sci Lymphatic Continuum Revisited = Ann. Ny. Acad. Sci. Lymphatic Metastasis and Sentinel Lymphonodectomy = Recent Res Cancer Lymphatic Metastasis and Sentinel Lymphonodectomy = Recent. Res. Cancer. Lymphatic research and biology = Lymphat Res Biol Lymphatic Research and Biology = Lymphat Res Biol Lymphatic Research and Biology = Lymphat. Res. Biol. Lymphatics in The Digestive System: Physiology, Health, and Disease = Ann Ny Acad Sci Lymphatics in The Digestive System: Physiology, Health, and Disease = Ann. Ny. Acad. Sci. Lymphatic System and Cancer = Front Radiat Ther On Lymphatic System and Cancer = Front. Radiat. Ther. On. Lymph Node Cytopathology = Essent Cytopathol Lymph Node Cytopathology = Essent. Cytopathol. Lymphocyte Activation and Immune Regulation Ix = Adv Exp Med Biol Lymphocyte Activation and Immune Regulation Ix = Adv. Exp. Med. Biol. Lymphocyte Activation = Chem Immunol Lymphocyte Activation = Chem. Immunol. Lymphocyte Signal Transduction = Adv Exp Med Biol Lymphocyte Signal Transduction = Adv. Exp. Med. Biol. Lymphoid Organogenesis = Curr Top Microbiol Lymphoid Organogenesis = Curr. Top. Microbiol. Lymphokine and cytokine research = Lymphokine Cytokine Res Lymphokine and Cytokine Research = Lymphokine Cytokine Res. Lymphokine and Cytokine Research = Lymphokine Cytok Res Lymphokine and Cytokine Research = Lymphokine Cytok. Res. Lymphokine research = Lymphokine Res Lymphokine Research = Lymphokine Res Lymphokine Research = Lymphokine Res. Lymphology=Lymphology;; Lymphology = Lymphology Lyndon Baines Johnson and The Uses of Power = Contrib Polit Sci Lyndon Baines Johnson and The Uses of Power = Contrib. Polit. Sci. Lyon chirurgical = Lyon Chir Lyon Chirurgical = Lyon Chir Lyon Chirurgical = Lyon Chir. Lyon medical = Lyon Med Lyon Medical = Lyon Med Lyon Medical = Lyon Med. Lyon Mediterranee medical. Medecine du Sud-Est = Lyon Mediterr Med Med Sud Est Lyon pharmaceutique = Lyon Pharm Lyon Pharmaceutique = Lyon Pharm Lyon Pharmaceutique = Lyon Pharm. Lyophilization = Paperb Apv Lyophilization = Paperb. Apv. Lyric = New Crit Idiom Lyric = New. Crit. Idiom. Lysimeter Concept = Acs Sym Ser Lysimeter Concept = Acs. Sym. Ser. Lysophospholipids and Eicosanoids in Biology and Pathophysiology = Ann Ny Acad Sci Lysophospholipids and Eicosanoids in Biology and Pathophysiology = Ann. Ny. Acad. Sci. M3d : Mechanics and Mechanisms of Material Damping = Am Soc Test Mater M3d : Mechanics and Mechanisms of Material Damping = Am. Soc. Test. Mater. Maandblad van "Oud-Utrecht" : vereeniging tot beoefening en tot verspreiding van de kennis der geschiedenis van Utrecht en omstreken = Maandbl Oud Utrecht Maandschrift - Centraal Bureau voor de Statistiek. Netherlands. Centraal Bureau voor de Statistiek = Maandschr Cent Bur Stat Maandschrift voor kindergeneeskunde = Maandschr Kindergeneeskd Maandschrift voor Kindergeneeskunde = Maandschr. Kindergeneeskd. Maandstatistiek van bevolking en volksgezondheid. Netherlands. Centraal Bureau voor de Statistiek = Maandstat Bevolking Volksgezond Maandstatistiek van de bevolking (Hague, Netherlands : 1982) = Maandstat Bevolking Maanedsskrift for Praktisk Laegegerning = Manedsskr. Prakt. Laegegern. Maanedsskrift for praktisk Laegegerning og social Medicin = Manedsskr Prakt Laegegern Maa Notes = Maa Notes MAA Notes = MAA Notes Maa Notes Series = Maa Notes Ser Maa Notes Series = Maa Notes Ser. Maa, Seutu, Kulmakunta: Nakokulmia Aluehistorialliseen Tutkimukseen = Hist Arkisto Maa, Seutu, Kulmakunta: Nakokulmia Aluehistorialliseen Tutkimukseen = Hist. Arkisto. MAAS journal of Islamic science = MAAS J Islam Sci MAA Spectrum = MAA Spectrum Maastricht journal of European and comparative law = Maastrich J Eur Comp Law Maatstaf = Maatstaf Mabe'08: Proceedings of The 4th Wseas International Conference On Mathematical Biology and Ecology = Ma Comput Sci Eng Mabe'08: Proceedings of The 4th Wseas International Conference On Mathematical Biology and Ecology = Ma. Comput. Sci. Eng. Mabe 09: Proceedings of The 5th Wseas International Conference On Mathematical Biology and Ecology = Rec Adv Biol Biomed Mabe 09: Proceedings of The 5th Wseas International Conference On Mathematical Biology and Ecology = Rec. Adv. Biol. Biomed. Mabs = Mabs Mabs = Mabs-austin Mabs = Mabs-austin. Macbeth: New Critical Essays = Shakespear Crit Macbeth: New Critical Essays = Shakespear. Crit. Macedoniae acta archaeologica = MacActaA Macedonian Journal of Chemistry and Chemical Engineering = Maced J Chem Chem En Macedonian Journal of Chemistry and Chemical Engineering = Maced. J. Chem. Chem. En. Macedonian Journal of Chemistry and Chemical Engineering = Maced. J. Chem. Chem. Eng. Machiine Vision Applications in Industrial Inspection Xii = Bba Lib Machiine Vision Applications in Industrial Inspection Xii = Bba. Lib. Machine Design = Mach Des Machine Design = Mach. Des. Machine Elements: Life and Design = Mech Eng Ser Txb Ref Machine Elements: Life and Design = Mech. Eng. Ser. Txb. Ref. Machine Intelligence 12 = Mach Intell Machine Intelligence 12 = Mach. Intell. Machine Intelligence and Pattern Recognition = Mach. Intelligence Pattern Recogn. Machine Intelligence and Pattern Recognition = Mach Intell Patt Rec Machine Intelligence and Pattern Recognition = Mach. Intell. Patt. Rec. Machine Intelligence = Mach Intell Machine Intelligence = Mach. Intell. Machine Learning: An Algorithmic Perspective = Ch Crc Mach Learn Pa Machine Learning: An Algorithmic Perspective = Ch. Crc. Mach. Learn. Pa. Machine Learning and Data Mining in Pattern Recognition = Lect Notes Artif Int Machine Learning and Data Mining in Pattern Recognition = Lect. Notes. Artif. Int. Machine Learning and Data Mining in Pattern Recognition, Proceedinds = Lect Notes Artif Int Machine Learning and Data Mining in Pattern Recognition, Proceedinds = Lect. Notes. Artif. Int. Machine Learning and Data Mining in Pattern Recognition, Proceedings = Lect Notes Artif Int Machine Learning and Data Mining in Pattern Recognition, Proceedings = Lect. Notes. Artif. Int. Machine Learning and Knowledge Discovery in Databases, Part Ii, Proceedings = Lect Notes Artif Int Machine Learning and Knowledge Discovery in Databases, Part Ii, Proceedings = Lect. Notes. Artif. Int. Machine Learning and Knowledge Discovery in Databases, Part I, Proceedings = Lect Notes Artif Int Machine Learning and Knowledge Discovery in Databases, Part I, Proceedings = Lect. Notes. Artif. Int. Machine Learning and Knowledge Discovery in Databases, Pt Ii = Lect Notes Artif Int Machine Learning and Knowledge Discovery in Databases, Pt Ii = Lect. Notes. Artif. Int. Machine Learning and Knowledge Discovery in Databases, Pt I = Lect Notes Artif Int Machine Learning and Knowledge Discovery in Databases, Pt I = Lect. Notes. Artif. Int. Machine Learning Challenges = Lect Notes Artif Int Machine Learning Challenges = Lect. Notes. Artif. Int. Machine Learning: Ecml 2000 = Lect Notes Artif Int Machine Learning: Ecml 2000 = Lect. Notes. Artif. Int. Machine Learning: Ecml 2002 = Lect Notes Artif Int Machine Learning: Ecml 2002 = Lect. Notes. Artif. Int. Machine Learning: Ecml 2003 = Lect Notes Artif Int Machine Learning: Ecml 2003 = Lect. Notes. Artif. Int. Machine Learning: Ecml 2004, Proceedings = Lect Notes Comput Sc Machine Learning: Ecml 2004, Proceedings = Lect. Notes. Comput. Sc. Machine Learning: Ecml 2005, Proceedings = Lect Notes Artif Int Machine Learning: Ecml 2005, Proceedings = Lect. Notes. Artif. Int. Machine Learning: Ecml 2006, Proceedings = Lect Notes Comput Sc Machine Learning: Ecml 2006, Proceedings = Lect. Notes. Comput. Sc. Machine Learning: Ecml 2007, Proceedings = Lect Notes Artif Int Machine Learning: Ecml 2007, Proceedings = Lect. Notes. Artif. Int. Machine Learning: Ecml-95 = Lect Notes Artif Int Machine Learning: Ecml-95 = Lect. Notes. Artif. Int. Machine Learning : Ecml-97 = Lect Notes Artif Int Machine Learning : Ecml-97 = Lect. Notes. Artif. Int. Machine Learning - Ewsl-91 = Lect Notes Artif Int Machine Learning - Ewsl-91 = Lect. Notes. Artif. Int. Machine Learning for Multimedia Content Analysis = Multimed Syst Appl Machine Learning for Multimedia Content Analysis = Multimed. Syst. Appl. Machine Learning for Multimodal Interaction = Lect Notes Comput Sc Machine Learning for Multimodal Interaction = Lect. Notes. Comput. Sc. Machine Learning for Multimodal Interaction, Proceedings = Lect Notes Comput Sc Machine Learning for Multimodal Interaction, Proceedings = Lect. Notes. Comput. Sc. Machine Learning for Signal Processing Xiv = Machine Learn Sign P Machine Learning for Signal Processing Xiv = Machine Learn. Sign. P. Machine Learning in Document Analysis and Recognition = Stud Comput Intell Machine Learning in Document Analysis and Recognition = Stud. Comput. Intell. Machine Learning in Medical Imaging = Lect Notes Comput Sc Machine Learning in Medical Imaging = Lect. Notes. Comput. Sc. Machine Learning = Mach Learn Machine Learning = Mach. Learn. Machine Learning: Modeling Data Locally and Globally = Adv Top Sci Tech Chi Machine Learning: Modeling Data Locally and Globally = Adv. Top. Sci. Tech. Chi. Machine Learning Techniques for Multimedia: Case Studies On Organization and Retrieval = Cogn Technol Machine Learning Techniques for Multimedia: Case Studies On Organization and Retrieval = Cogn. Technol. Machinery Acoustics 1999: Development of Low-noise and Low-vibration Products = Vdi Bericht Machinery Acoustics 1999: Development of Low-noise and Low-vibration Products = Vdi. Bericht. Machinery and Production Engineering = Mach Prod Eng Machinery and Production Engineering = Mach. Prod. Eng. Machinery = Machinery Machinery, Materials Science and Engineering Applications, Pts 1 and 2 = Adv Mater Res-switz Machinery, Materials Science and Engineering Applications, Pts 1 and 2 = Adv. Mater. Res-switz. Machines, Computations, and Universality = Lect Notes Comput Sc Machines, Computations, and Universality = Lect. Notes. Comput. Sc. Machines, Computations, and Universality, Proceedings = Lect Notes Comput Sc Machines, Computations, and Universality, Proceedings = Lect. Notes. Comput. Sc. Machines of Leonardo Da Vinci and Franz Reuleaux: Kinematics of Machines From The Renaissance to The 20th Century = Hist Mech Mach Sci Machines of Leonardo Da Vinci and Franz Reuleaux: Kinematics of Machines From The Renaissance to The 20th Century = Hist. Mech. Mach. Sci. Machines of Nature and Corporeal Substances in Leibniz = New Synth Hist Lib Machines of Nature and Corporeal Substances in Leibniz = New. Synth. Hist. Lib. Machine Tool, In-line, and Robot Sensors and Controls = P Soc Photo-opt Ins Machine Tool, In-line, and Robot Sensors and Controls = P. Soc. Photo-opt. Ins. Machine Tool Review = Mach Tool Rev Machine Tool Review = Mach. Tool Rev. Machine Translation and The Information Soup = Lect Notes Artif Int Machine Translation and The Information Soup = Lect. Notes. Artif. Int. Machine Translation: From Real Users to Research, Proceedings = Lect Notes Comput Sc Machine Translation: From Real Users to Research, Proceedings = Lect. Notes. Comput. Sc. Machine Translation: From Research to Real Users = Lect Notes Artif Int Machine Translation: From Research to Real Users = Lect. Notes. Artif. Int. Machine Vision and Applications = Mach Vision Appl Machine Vision and Applications = Mach. Vision Appl. Machine Vision and Its Optomechatronic Applications = Proc Spie Machine Vision and Its Optomechatronic Applications = Proc. Spie. Machine Vision and Its Optomechatronic Applications = P Soc Photo-opt Ins Machine Vision and Its Optomechatronic Applications = P. Soc. Photo-opt. Ins. Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology Ii = Proc Spie Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology Ii = Proc. Spie. Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology Ii = P Soc Photo-opt Ins Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology Ii = P. Soc. Photo-opt. Ins. Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology = P Soc Photo-opt Ins Machine Vision and Three-dimensional Imaging Systems for Inspection and Metrology = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration Iii = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration Iii = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration Ii = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration Ii = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration Iv = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration Iv = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration Vi = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration Vi = P. Soc. Photo-opt. Ins. Machine Vision Applications, Architectures, and Systems Integration V = P Soc Photo-opt Ins Machine Vision Applications, Architectures, and Systems Integration V = P. Soc. Photo-opt. Ins. Machine Vision Applications in Character Recognition and Industrial Inspection = P Soc Photo-opt Ins Machine Vision Applications in Character Recognition and Industrial Inspection = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Iii = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Iii = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Ii = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Ii = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Iv = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Iv = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Ix = Proc Spie Machine Vision Applications in Industrial Inspection Ix = Proc. Spie. Machine Vision Applications in Industrial Inspection Ix = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Ix = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Viii = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Viii = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Vii = Proc Spie Machine Vision Applications in Industrial Inspection Vii = Proc. Spie. Machine Vision Applications in Industrial Inspection Vii = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Vii = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Vi = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Vi = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection V = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection V = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Xiii = Proc Spie Machine Vision Applications in Industrial Inspection Xiii = Proc. Spie. Machine Vision Applications in Industrial Inspection Xiii = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Xiii = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Xi = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Xi = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Xiv = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Xiv = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection X = Proc Spie Machine Vision Applications in Industrial Inspection X = Proc. Spie. Machine Vision Applications in Industrial Inspection X = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection X = P. Soc. Photo-opt. Ins. Machine Vision Applications in Industrial Inspection Xv = P Soc Photo-opt Ins Machine Vision Applications in Industrial Inspection Xv = P. Soc. Photo-opt. Ins. Machine Vision Architectures, Integration, and Applications = P Soc Photo-opt Ins Machine Vision Architectures, Integration, and Applications = P. Soc. Photo-opt. Ins. Machine Vision Beyond Visible Spectrum = Augment Vis Real Machine Vision Beyond Visible Spectrum = Augment. Vis. Real. Machine Vision Systems for Inspection and Metrology Viii = Proc Spie Machine Vision Systems for Inspection and Metrology Viii = Proc. Spie. Machine Vision Systems for Inspection and Metrology Viii = P Soc Photo-opt Ins Machine Vision Systems for Inspection and Metrology Viii = P. Soc. Photo-opt. Ins. Machine Vision Systems for Inspection and Metrology Vii = P Soc Photo-opt Ins Machine Vision Systems for Inspection and Metrology Vii = P. Soc. Photo-opt. Ins. Machine Vision Systems Integration in Industry = P Soc Photo-opt Ins Machine Vision Systems Integration in Industry = P. Soc. Photo-opt. Ins. Machining and Advanced Manufacturing Technology X = Key Eng Mat Machining and Advanced Manufacturing Technology X = Key. Eng. Mat. Machining Dynamics: Fundamentals, Applications and Practices = Springer Ser Adv Man Machining Dynamics: Fundamentals, Applications and Practices = Springer. Ser. Adv. Man. Machining Impossible Shapes = Int Fed Info Proc Machining Impossible Shapes = Int. Fed. Info. Proc. Machining of Natural Stone Materials = Key Eng Mat Machining of Natural Stone Materials = Key. Eng. Mat. Machining of Natural Stone Materials = Key Eng Mater Machining of Natural Stone Materials = Key. Eng. Mater. Machining Science and Technology = Mach Sci Technol Machining Science and Technology = Mach. Sci. Technol. Mach's Principle: From Newton's Bucket to Quantum Gravity = Einstein St Mach's Principle: From Newton's Bucket to Quantum Gravity = Einstein. St. Mackenzie Delta : Environmental Interactions and Implications of Development = Nhri Symp Mackenzie Delta : Environmental Interactions and Implications of Development = Nhri. Symp. Maclean's = Macleans Macmese 2008: Proceedings of The 10th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering, Pts I and Ii = Ma Comput Sci Eng Macmese 2008: Proceedings of The 10th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering, Pts I and Ii = Ma. Comput. Sci. Eng. Macmese 2008: Proceedings of The 10th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering, Pts I and Ii = Math Comput Sci Eng Macmese 2008: Proceedings of The 10th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering, Pts I and Ii = Math. Comput. Sci. Eng. Macmillan, Khrushchev and The Berlin Crisis, 1958-1960 = Cold War Hist-routl Macmillan, Khrushchev and The Berlin Crisis, 1958-1960 = Cold. War. Hist-routl. Macquarie Monographs in Cognitive Science = Macquarie Mg Cog Sci Macquarie Monographs in Cognitive Science = Macquarie Mg. Cog. Sci. Macquarie Monographs in Cognitive Science = M M Cog Sci Macquarie Monographs in Cognitive Science = M. M. Cog. Sci. Macrocyclic Chemistry: New Research Developments = Chem Res Appl-nova Macrocyclic Chemistry: New Research Developments = Chem. Res. Appl-nova. Macroeconomic and Structural Adjustment Policies in Zimbabwe = Int Pol Ec Macroeconomic and Structural Adjustment Policies in Zimbabwe = Int. Pol. Ec. Macroeconomic Consequences of Demographic Change: Modeling Issues and Applications = Lect Notes Econ Math Macroeconomic Consequences of Demographic Change: Modeling Issues and Applications = Lect. Notes. Econ. Math. Macroeconomic Dynamics = Macroecon. Dyn. Macroeconomic Dynamics = Macroecon Dyn Macroeconomic Dynamics = Macroecon. Dyn. Macroeconomic Dynamics=Macroecon. Dynam. Macroeconomic Linkage = Nber E A Ec Macroeconomic Linkage = Nber. E. A. Ec. Macroeconomic Management and Fiscal Decentralization = Edi Semin S Macroeconomic Management and Fiscal Decentralization = Edi. Semin. S. Macroeconomic Management in China = World B Dis Macroeconomic Management in China = World. B. Dis. Macroeconomic Modelling and Policy Implications = Contrib To Econ Anal Macroeconomic Modelling and Policy Implications = Contrib. To. Econ. Anal. Macroeconomics Annual 2002 = Nber Macroecon Ann Macroeconomics Annual 2002 = Nber. Macroecon. Ann. Macroeconomics Annual 2002 = Nber Macroecon Annu Macroeconomics Annual 2002 = Nber. Macroecon. Annu. Macroeconomics of Global Imbalances: European and Asian Perspectives = Rout Stud Mod Wor Macroeconomics of Global Imbalances: European and Asian Perspectives = Rout. Stud. Mod. Wor. Macroelements and Trace Elements = Mengen Spurenelement Macroelements and Trace Elements = Mengen. Spurenelement. Macro-ion Characterization = Acs Sym Ser Macro-ion Characterization = Acs. Sym. Ser. Macro-, Meso-, Micro- and Nano-mechancis of Materials = Adv Mat Res Macro-, Meso-, Micro- and Nano-mechancis of Materials = Adv. Mat. Res. Macromolecular Anticancer Therapeutics = Cancer Drug Discov D Macromolecular Anticancer Therapeutics = Cancer. Drug. Discov. D. Macromolecular Architectures = Adv Polym Sci Macromolecular Architectures = Adv. Polym. Sci. Macromolecular Assemblies in Polymeric Systems = Acs Sym Ser Macromolecular Assemblies in Polymeric Systems = Acs. Sym. Ser. Macromolecular bioscience = Macromol Biosci Macromolecular Bioscience = Macromol Biosci Macromolecular Bioscience = Macromol. Biosci. Macromolecular Chemistry and Physics = Macromol Chem Phys Macromolecular Chemistry and Physics = Macromol. Chem. Phys. Macromolecular Chemistry and Physics = Macromol Chem Physic Macromolecular Chemistry and Physics = Macromol. Chem. Physic. Macromolecular Chemistry and Physics-makromolekulare Chemie = Macromol Chem Phys Macromolecular Chemistry and Physics-makromolekulare Chemie = Macromol. Chem. Phys. Macromolecular Chemistry and Physics Supplement = Macromol. Chem. Phys. Suppl. Macromolecular Crystallography, Pt A = Method Enzymol Macromolecular Crystallography, Pt A = Method. Enzymol. Macromolecular Crystallography, Pt B = Method Enzymol Macromolecular Crystallography, Pt B = Method. Enzymol. Macromolecular Crystallography, Pt B = Methods Enzymol Macromolecular Crystallography, Pt B = Methods. Enzymol. Macromolecular Crystallography, Pt C = Method Enzymol Macromolecular Crystallography, Pt C = Method. Enzymol. Macromolecular Crystallography, Pt C = Methods Enzymol Macromolecular Crystallography, Pt C = Methods. Enzymol. Macromolecular Crystallography, Pt D = Method Enzymol Macromolecular Crystallography, Pt D = Method. Enzymol. Macromolecular Host-guest Complexes : Optical, Optoelectronic, and Photorefractive Properties and Applications = Mater Res Soc Symp P Macromolecular Host-guest Complexes : Optical, Optoelectronic, and Photorefractive Properties and Applications = Mater. Res. Soc. Symp. P. Macromolecular Interactions in Food Technology = Acs Sym Ser Macromolecular Interactions in Food Technology = Acs. Sym. Ser. Macromolecular Interplay in Brain Associative Mechanisms = Ser Biophys Biocyber Macromolecular Interplay in Brain Associative Mechanisms = Ser. Biophys. Biocyber. Macromolecular Liquids = Mater Res Soc Symp P Macromolecular Liquids = Mater. Res. Soc. Symp. P. Macromolecular Materials and Engineering = Macromol Mater Eng Macromolecular Materials and Engineering = Macromol. Mater. Eng. Macromolecular Metal Carboxylates and Their Nanocomposites = Springer Ser Mater S Macromolecular Metal Carboxylates and Their Nanocomposites = Springer. Ser. Mater. S. Macromolecular Rapid Communications = Macromol Rapid Comm Macromolecular Rapid Communications = Macromol. Rapid Comm. Macromolecular Rapid Communications = Macromol. Rapid Commun. Macromolecular Reaction Engineering = Macromol React Eng Macromolecular Reaction Engineering = Macromol. React. Eng. Macromolecular Research = Macromol Res Macromolecular Research = Macromol. Res. Macromolecular Reviews Part D-journal of Polymer Science = Macromol Rev Macromolecular Reviews Part D-journal of Polymer Science = Macromol. Rev. Macromolecular Symposia = Macromol Sy Macromolecular Symposia = Macromol. Sy. Macromolecular Symposia = Macromol Symp Macromolecular Symposia = Macromol. Symp. Macromolecular Symposium = Macromol. Symp. Macromolecular Theory and Simulations = Macromol Theor Simul Macromolecular Theory and Simulations = Macromol. Theor. Simul. Macromolecular Theory and Simulations = Macromol. Theory Simul. Macromolecules Containing Metal and Metal-like Elements Series = Macromol Contain Met Macromolecules Containing Metal and Metal-like Elements Series = Macromol. Contain. Met. Macromolecules = Macromolecules Macromolecules (Washington, DC, United States) = Macromolecules (Washington, DC, U. S.) Macro-roles for Micrornas in The Life and Death of Neurons = Res Per Neurosci Macro-roles for Micrornas in The Life and Death of Neurons = Res. Per. Neurosci. Macroscale Modelling of The Hydrosphere = Iahs-aish P Macroscale Modelling of The Hydrosphere = Iahs-aish. P. Macula = Macula Macular and Retinal Diseases = Dev Ophthalmol Macular and Retinal Diseases = Dev. Ophthalmol. Macular Edema: A Practical Approach = Dev Ophthalmol Macular Edema: A Practical Approach = Dev. Ophthalmol. Macworld = Macworld Mad Cow Disease and Related Spongiform Encephalopathies = Curr Top Microbiol Mad Cow Disease and Related Spongiform Encephalopathies = Curr. Top. Microbiol. Mad Dogs and Englishmen: Rabies in Britain, 1830-2000 = Sci Technol Med Mod Mad Dogs and Englishmen: Rabies in Britain, 1830-2000 = Sci. Technol. Med. Mod. ## Made by Domenico Cufalo Made in India: Decolonizations, Queer Sexualities, Trans/national Projects = Comp Fem Stud Ser Made in India: Decolonizations, Queer Sexualities, Trans/national Projects = Comp. Fem. Stud. Ser. Mademoiselle = Mademoiselle Maderas-ciencia Y Tecnologia = Maderas-cienc Tecnol Maderas-ciencia Y Tecnologia = Maderas-cienc. Tecnol. Madera Y Bosques = Madera Bosques Madjalah Kedokteran Indonesia = Madjalah Kedokt Indones Madjalah Persatuan Dokter Gigi Indonesia (Journal of the Indonesian Dental Association) = Madj. Persat. Dokt. Gigi Indones. Madjalah Persatuan Dokter Gigi Indonesia. Journal Of The Indonesian Dental Association = Madj Persat Dokt Gigi Indones Madness in Seventeenth-century Autobiography = Early Mod Hist-soc C Madness in Seventeenth-century Autobiography = Early. Mod. Hist-soc. C. Madrasas in South Asia: Teaching Terror? = Routl Cont S Asia Se Madrasas in South Asia: Teaching Terror? = Routl. Cont. S. Asia. Se. Madrider Beiträge = MB Madrider Forschungen = MF Madrider Mitteilungen = MM Maecenas. Studi sul mondo classico = Maecenas Maejo International Journal of Science and Technology = Maejo Int J Sci Tech Maejo International Journal of Science and Technology = Maejo Int. J. Sci. Tech. Maejo International Journal of Science and Technology = Maejo Int. J. Sci. Technol. Mafic Dykes and Emplacement Mechanisms = Int Geol C Mafic Dykes and Emplacement Mechanisms = Int. Geol. C. Magallania = Magallania Magasin De L Univers = Brill S In Magasin De L Univers = Brill. S. In. Magazine Antiques = Mag Antiques Magazine Antiques = Mag. Antiques Magazine antiques (New York, N.Y. : 1971) = Mag Antiq Magazine litteraire = Mag Litt Magazine of Concrete Research = Mag Concrete Res Magazine of Concrete Research = Mag. Concrete Res. Magazine of Concrete Research = Mag. Concr. Res. Magazine Production = Media Skills Magazine Production = Media. Skills. Magazin istoric = Mag Istor Magellanic Clouds = Iau Symp Magellanic Clouds = Iau. Symp. Magellanic System: Stars, Gas, and Galaxies = Iau Symp P Series Magellanic System: Stars, Gas, and Galaxies = Iau. Symp. P. Series. Maghreb-machrek = Maghreb-machrek Maghreb, Machrek = Maghreb Machrek Maghreb Mathematical Review = Maghreb Math. Rev. MAGMA=MAGMA;; MAGMA = MAGMA Magma (New York, N.Y.) = MAGMA Magnesium Alloys 2000 = Mater Sci Forum Magnesium Alloys 2000 = Mater. Sci. Forum. Magnesium Alloys 2003, Pts 1 and 2 = Mater Sci Forum Magnesium Alloys 2003, Pts 1 and 2 = Mater. Sci. Forum. Magnesium and Calcium = Schrif Gms Magnesium and Calcium = Schrif. Gms. Magnesium and Pyridoxine: Fundamental Studies and Clinical Practice = Biochem Res Trends Magnesium and Pyridoxine: Fundamental Studies and Clinical Practice = Biochem. Res. Trends. Magnesium and Trace Elements = Magnesium Trace Elem Magnesium and Trace Elements = Magnesium Trace Elem. Magnesium and trace elements = Magnes Trace Elem Magnesium and Trace Elements = Magnes. Trace Elem. Magnesium-bulletin = Magnesium-b Magnesium-bulletin = Magnesium-b. Magnesium in The Environment and in Organisms = Serb Ac Sci Magnesium in The Environment and in Organisms = Serb. Ac. Sci. Magnesium = Magnesium Magnesium Research = Magnesium Res Magnesium Research = Magnesium Res. Magnesium Research=Magnes Res;; Magnesium Research = Magnes. Res. Magnesium research : official organ of the International Society for the Development of Research on Magnesium = Magnes Res Magnesium - Science, Technology and Applications = Mater Sci Forum Magnesium - Science, Technology and Applications = Mater. Sci. Forum. Magnesium - Science, Technology and Applicaton = Mater Sci Forum Magnesium - Science, Technology and Applicaton = Mater. Sci. Forum. Magnesium Technology 2008 = Magnesium Technology Magnesium Technology 2009 = Magnesium Technology Magnesium Technology 2010 = Magnesium Technology Magnesium Technology Series = Magnesium Technology Magnetic and Electronic Films-microstructure, Texture and Application to Data Storage = Mater Res Soc Symp P Magnetic and Electronic Films-microstructure, Texture and Application to Data Storage = Mater. Res. Soc. Symp. P. Magnetic and Velocity Fields of Solar Active Regions = Astr Soc P Magnetic and Velocity Fields of Solar Active Regions = Astr. Soc. P. Magnetic Anisotropies in Nanostructured Matter = Condens Matt Phy-crc Magnetic Anisotropies in Nanostructured Matter = Condens. Matt. Phy-crc. Magnetic Cataclysmic Variables = Astr Soc P Magnetic Cataclysmic Variables = Astr. Soc. P. Magnetic Control of Tokamak Plasmas = Adv Ind Control Magnetic Control of Tokamak Plasmas = Adv. Ind. Control Magnetic Dichroism in Core-level Photoemission = Springer Tr Mod Phys Magnetic Dichroism in Core-level Photoemission = Springer. Tr. Mod. Phys. Magnetic Energy Conversion = Adv Space E Magnetic Energy Conversion = Adv. Space. E. Magnetic Fields Across The Hertzsprung-russell Diagram = Astr Soc P Magnetic Fields Across The Hertzsprung-russell Diagram = Astr. Soc. P. Magnetic Fields in The Universe: From Laboratory and Stars to Primordial Structures = Aip Conf Proc Magnetic Fields in The Universe: From Laboratory and Stars to Primordial Structures = Aip. Conf. Proc. Magnetic Fields in The Universe Ii: From Laboratory and Stars to The Primordial Universe = Rev Mex Ast Astr Magnetic Fields in The Universe Ii: From Laboratory and Stars to The Primordial Universe = Rev. Mex. Ast. Astr. Magnetic Functions Beyond The Spin-hamiltonian = Struct Bond Magnetic Functions Beyond The Spin-hamiltonian = Struct. Bond. Magnetic Helicity At The Sun, in Solar Wind and Magnetospheres: Vistas From X-ray Observatories = Adv Space Res Magnetic Helicity At The Sun, in Solar Wind and Magnetospheres: Vistas From X-ray Observatories = Adv. Space. Res. Magnetic Helicity At The Sun, in Solar Wind and Magnetospheres: Vistas From X-ray Observatories = Adv Space Res-series Magnetic Helicity At The Sun, in Solar Wind and Magnetospheres: Vistas From X-ray Observatories = Adv. Space. Res-series. Magnetic Heterostructures = Springer Trac Mod Ph Magnetic Heterostructures = Springer. Trac. Mod. Ph. Magnetic Heterostructures = Springer Tr Mod Phys Magnetic Heterostructures = Springer. Tr. Mod. Phys. Magnetic Hysteresis in Novel Magnetic Materials = Nato Adv Sci I E-app Magnetic Hysteresis in Novel Magnetic Materials = Nato. Adv. Sci. I. E-app. Magnetic Materials = Aip Conf Proc Magnetic Materials = Aip. Conf. Proc. Magnetic Materials : Microstructure and Properties = Mater Res Soc Symp P Magnetic Materials : Microstructure and Properties = Mater. Res. Soc. Symp. P. Magnetic Materials, Processes, and Devices Vii and Electrodeposition of Alloys, Proceedings = Elec Soc S Magnetic Materials, Processes, and Devices Vii and Electrodeposition of Alloys, Proceedings = Elec. Soc. S. Magnetic Molecular Materials = Nato Adv Sci I E-app Magnetic Molecular Materials = Nato. Adv. Sci. I. E-app. Magnetic Nanostructures in Modern Technology: Spintronics, Magnetic Mems and Recording = Nato Science Peace S Magnetic Nanostructures in Modern Technology: Spintronics, Magnetic Mems and Recording = Nato. Science. Peace. S. Magnetic Nanostructures in Modern Technology: Spintronics, Magnetic Mems and Recording = Nato Sci Peace Sec B Magnetic Nanostructures in Modern Technology: Spintronics, Magnetic Mems and Recording = Nato. Sci. Peace. Sec. B. Magnetic Nanostructures = Springer Ser Mater S Magnetic Nanostructures = Springer. Ser. Mater. S. Magnetic Properties and Applications of Ferromagnetic Microwires With Amorphous and Nanocrystalline Structure = Nanotechnol Sci Tech Magnetic Properties and Applications of Ferromagnetic Microwires With Amorphous and Nanocrystalline Structure = Nanotechnol. Sci. Tech. Magnetic Properties of Fine Particles = N-holland D Magnetic Properties of Fine Particles = N-holland. D. Magnetic Properties of Low-dimensional Systems Ii = Springer Proc Phys Magnetic Properties of Low-dimensional Systems Ii = Springer. Proc. Phys. Magnetic Properties of Solids = Mater Sci Technol Magnetic Properties of Solids = Mater. Sci. Technol. Magnetic Pulsed Compaction of Nanosized Powders = Nanotechnol Sci Tech Magnetic Pulsed Compaction of Nanosized Powders = Nanotechnol. Sci. Tech. Magnetic Reconnection Processes in The Solar Atmosphere = Adv Space Res Magnetic Reconnection Processes in The Solar Atmosphere = Adv. Space. Res. Magnetic Reconnection Processes in The Solar Atmosphere = Adv Space Res-series Magnetic Reconnection Processes in The Solar Atmosphere = Adv. Space. Res-series. Magnetic Resonance and Brain Function: Approaches From Physics = P Int Sch Phys Magnetic Resonance and Brain Function: Approaches From Physics = P. Int. Sch. Phys. Magnetic resonance annual = Magn Reson Annu Magnetic Resonance Annual = Magn. Reson. Annu. Magnetic Resonance Imaging Clinics of North America = Magn Reson Imaging C Magnetic Resonance Imaging Clinics of North America = Magn. Reson. Imaging C. Magnetic resonance imaging clinics of North America = Magn Reson Imaging Clin N Am Magnetic Resonance Imaging Clinics of North America = Magn. Reson. Imaging Clin. N. Am. Magnetic Resonance IMAging Clinics of North America=Magn Reson Imaging Clin N Am;; Magnetic resonance imaging = Magn Reson Imaging Magnetic Resonance Imaging = Magn Reson Imaging Magnetic Resonance Imaging = Magn. Reson. Imaging Magnetic Resonance IMAging=Magn Reson Imaging;; Magnetic Resonance in Biology = Magnet Reson Biol Magnetic Resonance in Biology = Magnet. Reson. Biol. Magnetic Resonance in Chemistry = Magn Reson Chem Magnetic Resonance in Chemistry = Magn. Reson. Chem. Magnetic resonance in chemistry : MRC = Magn Reson Chem Magnetic Resonance in Experimental and Clinical Oncology = Dev Oncol Magnetic Resonance in Experimental and Clinical Oncology = Dev. Oncol. Magnetic Resonance in Food Science: From Molecules to Man = Roy Soc Ch Magnetic Resonance in Food Science: From Molecules to Man = Roy. Soc. Ch. Magnetic Resonance in Food Science: Latest Developments = Roy Soc Ch Magnetic Resonance in Food Science: Latest Developments = Roy. Soc. Ch. Magnetic Resonance in Food Science = Roy Soc Ch Magnetic Resonance in Food Science = Roy. Soc. Ch. Magnetic Resonance in Medical Sciences = Magn Reson Med Sci Magnetic Resonance in Medical Sciences = Magn. Reson. Med. Sci. Magnetic resonance in medical sciences : MRMS : an official journal of Japan Society of Magnetic Resonance in Medicine = Magn Reson Med Sci Magnetic Resonance in Medicine = Magnet Reson Med Magnetic Resonance in Medicine = Magnet. Reson. Med. Magnetic Resonance in Medicine = Magn Reson Med Magnetic Resonance in Medicine = Magn. Reson. Med. Magnetic Resonance In Medicine=Magn Reson Med;; Magnetic resonance in medicine : official journal of the Society of Magnetic Resonance in Medicine / Society of Magnetic Resonance in Medicine = Magn Reson Med Magnetic Resonance in Porous Media = Aip Conf Proc Magnetic Resonance in Porous Media = Aip. Conf. Proc. Magnetic Resonance Materials in Physics Biology and Medicine = Magn Reson Mater Phy Magnetic Resonance Materials in Physics Biology and Medicine = Magn. Reson. Mater. Phy. Magnetic Resonance Materials in Physics, Biology and Medicine = Magn. Reson. Mater. Phys., Biol. Med. Magnetic Resonance Neuroimaging: Methods and Protocols = Methods Mol Biol Magnetic Resonance Neuroimaging: Methods and Protocols = Methods Mol. Biol. Magnetic resonance quarterly = Magn Reson Q Magnetic Resonance Quarterly = Magn. Reson. Q. Magnetic Resonance Quarterly = Magn Reson Quart Magnetic Resonance Quarterly = Magn. Reson. Quart. Magnetic Resonance Scanning and Epilepsy = Nato Adv Sci Inst Se Magnetic Resonance Scanning and Epilepsy = Nato. Adv. Sci. Inst. Se. Magnetic Storage Systems Beyond 2000 = Nato Sci Ser Ii-math Magnetic Storage Systems Beyond 2000 = Nato. Sci. Ser. Ii-math. Magnetic Storage Systems Beyond 2000 = Nato Sci Ser Ii Math Magnetic Storage Systems Beyond 2000 = Nato. Sci. Ser. Ii. Math. Magnetic Surfaces, Thin Films, and Multilayers = Mater Res Soc Symp P Magnetic Surfaces, Thin Films, and Multilayers = Mater. Res. Soc. Symp. P. Magnetic Ultrathin Films = Mater Res Soc Symp P Magnetic Ultrathin Films = Mater. Res. Soc. Symp. P. Magnetic Ultrathin Films, Multilayers and Surfaces - 1997 = Mater Res Soc Symp P Magnetic Ultrathin Films, Multilayers and Surfaces - 1997 = Mater. Res. Soc. Symp. P. Magnetic Ultrathin Films, Multilayers and Surfaces = Mater Res Soc Symp P Magnetic Ultrathin Films, Multilayers and Surfaces = Mater. Res. Soc. Symp. P. Magnetism and Activity of The Sun and Stars = Eas Publications Magnetism and Activity of The Sun and Stars = Eas. Publications. Magnetism and Magnetic Materials = Sol St Phen Magnetism and Magnetic Materials = Sol. St. Phen. Magnetism and Structure in Systems of Reduced Dimension = Nato Adv Sci Inst Se Magnetism and Structure in Systems of Reduced Dimension = Nato. Adv. Sci. Inst. Se. Magnetism and Synchrotron Radiation: New Trends = Springer Proc Phys Magnetism and Synchrotron Radiation: New Trends = Springer. Proc. Phys. Magnetism: A Supramolecular Function = Nato Adv Sci I C-mat Magnetism: A Supramolecular Function = Nato. Adv. Sci. I. C-mat. Magnetism: A Synchrotron Radiation Approach = Lect Notes Phys Magnetism: A Synchrotron Radiation Approach = Lect. Notes. Phys. Magnetism in Metals = Kong Dansk Vidensk Magnetism in Metals = Kong. Dansk. Vidensk. Magnetism, Magnetic Materials and Their Applications = Mater Sci Forum Magnetism, Magnetic Materials and Their Applications = Mater. Sci. Forum. Magnetoelastic Effects and Applications = Els Appl Elect Mat Magnetoelastic Effects and Applications = Els. Appl. Elect. Mat. Magnetoelectric Interaction Phenomena in Crystals = Nato Sci Ser Ii-math Magnetoelectric Interaction Phenomena in Crystals = Nato. Sci. Ser. Ii-math. Magnetoelectric Interaction Phenomena in Crystals = Nato Sci Ser Ii Math Magnetoelectric Interaction Phenomena in Crystals = Nato. Sci. Ser. Ii. Math. Magnetoelectronics and Magnetic Materials-novel Phenomena and Advanced Characterization = Mater Res Soc Symp P Magnetoelectronics and Magnetic Materials-novel Phenomena and Advanced Characterization = Mater. Res. Soc. Symp. P. Magnetoencephalography = Int Rev Neurobiol Magnetoencephalography = Int. Rev. Neurobiol. Magnetohydrodynamics: Historical Evolution and Trends = Fluid Mec A Magnetohydrodynamics: Historical Evolution and Trends = Fluid. Mec. A. Magnetohydrodynamics: Historical Evolution and Trends = Fluid Mech Appl Magnetohydrodynamics: Historical Evolution and Trends = Fluid. Mech. Appl. Magnetohydrodynamics = Magnetohydrodynamics Magnetohydrodynamics = Magnetohydrodynamics Magneto Luminous Chemical Vapor Deposition = Green Chem Chem Eng Magneto Luminous Chemical Vapor Deposition = Green. Chem. Chem. Eng. Magneto-optical Imaging = Nato Sci Ser Ii-math Magneto-optical Imaging = Nato. Sci. Ser. Ii-math. Magneto-optical Imaging = Nato Sci Ser Ii Math Magneto-optical Imaging = Nato. Sci. Ser. Ii. Math. Magneto-optical Materials for Photonics and Recording = Mater Res Soc Symp P Magneto-optical Materials for Photonics and Recording = Mater. Res. Soc. Symp. P. Magnetoresistive Oxides and Related Materials = Mater Res Soc Symp P Magnetoresistive Oxides and Related Materials = Mater. Res. Soc. Symp. P. Magneto-science: Magnetic Field Effects On Materials = Springer Ser Mater S Magneto-science: Magnetic Field Effects On Materials = Springer. Ser. Mater. S. Magnetosheath = Adv Space Res Magnetosheath = Adv. Space. Res. Magnetospheric Current Systems = Geoph Monog Series Magnetospheric Current Systems = Geoph. Monog. Series. Magnetospheric Current Systems = Geophys Monogr Ser Magnetospheric Current Systems = Geophys. Monogr. Ser. Magnetospheric Dynamics and The International Living With A Star Program = Adv Space Res-series Magnetospheric Dynamics and The International Living With A Star Program = Adv. Space. Res-series. Magnetospheric Research With Advanced Techniques = Cospar Coll Magnetospheric Research With Advanced Techniques = Cospar. Coll. Magnetospheric Substorms = Geoph Monog Series Magnetospheric Substorms = Geoph. Monog. Series. Magnetospheric Ulf Waves: Synthesis and New Directions = Geoph Monog Series Magnetospheric Ulf Waves: Synthesis and New Directions = Geoph. Monog. Series. Magnetospheric Ulf Waves: Synthesis and New Directions = Geophys Monogr Ser Magnetospheric Ulf Waves: Synthesis and New Directions = Geophys. Monogr. Ser. Magnetothermal Properties Near Quantum Criticality in The Itinerant Metamagnet Sr3ru2o7 = Springer Theses-reco Magnetothermal Properties Near Quantum Criticality in The Itinerant Metamagnet Sr3ru2o7 = Springer. Theses-reco. Magyar Allatorvosok Lapja = Magy Allatorvosok Magyar Allatorvosok Lapja = Magy. Allatorvosok Magyar belorvosi archivum = Magy Belorv Arch Magyar Kemiai Folyoirat, Kemiai Kozlemenyek = Magy. Kem. Foly., Kem. Kozl. Magyar Kemiai Folyoirat = Magy Kem Foly Magyar Kemiai Folyoirat = Magy. Kem. Foly. Magyar Kemikusok Lapja = Magy Kem Lapja Magyar Kemikusok Lapja = Magy. Kem. Lapja Magyar noorvosok lapja = Magy Noorv Lapja Magyar onkologia = Magy Onkol Magyar Pszichologiai Szemle = Magy Pszichol Szeml Magyar Pszichologiai Szemle = Magy. Pszichol. Szeml. Magyar radiologia = Magy Radiol Magyar sebeszet = Magy Seb Magyar traumatologia, orthopaedia es helyreallito sebeszet = Magy Traumatol Orthop Helyreallito Seb Magyar Traumatologia, Orthopaedia es Helyreallito Sebeszet = Magy. Traumatol. Orthop. Helyreallito Seb. Magyar traumatologia, ortopedia, kezsebeszet, plasztikai sebeszet = Magy Traumatol Ortop Kezseb Plasztikai Seb Magyar Traumatologia, Ortopedia, Kezsebeszet, Plasztikai Sebeszet = Magy. Traumatol. Ortop. Kezseb. Plasztikai Seb. Magyar tudomany : [a Magyar Tudomanyos Akademia Ertesitoje] = Magy Tud Magyar Zene = Magy Zene Magyar Zene = Magy. Zene Maharashtra medical journal = Maharashtra Med J Mahayana Buddhism: The Doctrinal Foundations, 2nd Edition = Libr Relig Beliefs P Mahayana Buddhism: The Doctrinal Foundations, 2nd Edition = Libr. Relig. Beliefs. P. Mahidol population gazette / Institute for Population and Social Research, Mahidol University = Mahidol Popul Q Gaz Maia = Maia Maia: rivista di letterature classiche = Maia Maia. Rivista di letterature classiche = Maia Maia-rivista Di Letterature Classiche = Maia-riv Lett Class Maia-rivista Di Letterature Classiche = Maia-riv. Lett. Class. Maid in China = Asias Transform Maid in China = Asias. Transform. Maikotokishin : Maikotokishin Kenkyukai kaiho = Proceedings of the Japanese Association of Mycotoxicology|Maikotokishin Maillard Reaction: Chemistry At The Interface of Nutrition, Aging, and Disease = Ann Ny Acad Sci Maillard Reaction: Chemistry At The Interface of Nutrition, Aging, and Disease = Ann. Ny. Acad. Sci. Maillard Reaction in Food Chemistry and Medical Science: Update for The Postgenomic Era = Int Congr Ser Maillard Reaction in Food Chemistry and Medical Science: Update for The Postgenomic Era = Int. Congr. Ser. Maillard Reaction in Food Processing, Human Nutrition and Physiology = Adv Lif Sci Maillard Reaction in Food Processing, Human Nutrition and Physiology = Adv. Lif. Sci. Maillard Reaction: Recent Advances in Food and Biomedical Sciences = Ann Ny Acad Sci Maillard Reaction: Recent Advances in Food and Biomedical Sciences = Ann. Ny. Acad. Sci. Mail Technology: Evolution to E-revolution = Imeche Conf Trans Mail Technology: Evolution to E-revolution = Imeche. Conf. Trans. Maimonides in His World: Portrait of A Mediterranean Thinker = Jew Christ Muslim Maimonides in His World: Portrait of A Mediterranean Thinker = Jew. Christ. Muslim. Maimonides Und Die Fruhmittelalterliche Islamische Philosophie = Stud Judaica Maimonides Und Die Fruhmittelalterliche Islamische Philosophie = Stud. Judaica. Mainake. Estudios de arqueología Malagueña = Mainake Main-chain Modification As A Result of Polyolefin Functionalization By Different Techniques = Polym Sci Technol Se Main-chain Modification As A Result of Polyolefin Functionalization By Different Techniques = Polym. Sci. Technol. Se. Main Currents in Modern Thought = Main Curr Mod Though Main Currents in Modern Thought = Main Curr. Mod. Though. Maine Agricultural Experiment Station Bulletin = Maine Aes Bull Maine Agricultural Experiment Station Bulletin = Maine Aes. Bull. Maine Agricultural Experiment Station Technical Bulletin = Maine Aes Tech Bull Maine Agricultural Experiment Station Technical Bulletin = Maine Aes. Tech. Bull. Maine Historical Society quarterly = Maine Hist Soc Q Maine law review = Maine Law Rev Maine nurse = Maine Nurse Maine Nurse = Maine Nurse Maine revised statutes annotated, 1964 : being the tenth revision of the Revised statutes of the state of Maine, 1964 / prepared under the supervision of the Committee on Revision of Statutes. Maine = Maine Revis Statut Annot 1964 Maine Main Group Chemistry = Main Group Chem Main Group Chemistry = Main Group Chem. Main Group Metal Chemistry = Main Group Met Chem Main Group Metal Chemistry = Main Group Met. Chem. Mainlines = Mainlines MainLines : the newsletter for the Midwest Alliance in Nursing = Mainlines Maintaining Financial Stability in A Global Economy = Fed Bank Ks Maintaining Financial Stability in A Global Economy = Fed. Bank. Ks. Maintaining Focus, Energy, and Options Over The Career = Res Careers Maintaining Focus, Energy, and Options Over The Career = Res. Careers. Maintenance and Management of Bridges and Pavements = Transport Res Rec Maintenance and Management of Bridges and Pavements = Transport. Res. Rec. Maintenance and Management of Bridge Structures = Transport Res Rec Maintenance and Management of Bridge Structures = Transport. Res. Rec. Maintenance and Management of Pavement and Structures = Transport Res Rec Maintenance and Management of Pavement and Structures = Transport. Res. Rec. Maintenance for Industrial Systems = Springer Ser Reliab Maintenance for Industrial Systems = Springer. Ser. Reliab. Maintenance Management and Operations Services = Transport Res Rec Maintenance Management and Operations Services = Transport. Res. Rec. Maintenance Management and Services = Transport Res Rec Maintenance Management and Services = Transport. Res. Rec. Maintenance Management International = Maint Manage Int Maintenance Management International = Maint. Manage. Int. Maintenance, Meed, and Marriage in Medieval English Literature = New Middle Ages Maintenance, Meed, and Marriage in Medieval English Literature = New. Middle. Ages. Maintenance of Pavements and Structures = Transport Res Rec Maintenance of Pavements and Structures = Transport. Res. Rec. Maintenance of Process Instrumentation in Nuclear Power Plants = Power Syst Maintenance of Process Instrumentation in Nuclear Power Plants = Power Syst. Maintenance of Transportation Pavements and Structures = Transport Res Rec Maintenance of Transportation Pavements and Structures = Transport. Res. Rec. Maintenance : The Business Challenge = Proc Inst Mech Eng S Maintenance : The Business Challenge = Proc. Inst. Mech. Eng. S. Mainz and The Middle Rhine Valley: Medieval Art, Architecture and Archaeology = Brit Archaeol Assoc Mainz and The Middle Rhine Valley: Medieval Art, Architecture and Archaeology = Brit. Archaeol. Assoc. Mainzer Archäologische Zeitschrift = MAZ Mainzer Zeitschrift = MainzZ Mainzer Zeitschrift: Mittelrheinisches Jahrbuch für Archäologie, Kunst und Geschichte = MZ Maitriser L'aleatoire: Exercices Resolus De Probabilites Et Statistique = Collect Stat Prob Ap Maitriser L'aleatoire: Exercices Resolus De Probabilites Et Statistique = Collect. Stat. Prob. Ap. Majalah demografi Indonesia = Majalah Demografi Indones Majalah obstetri dan ginekologi Indonesia = Majalah Obstet Ginekol Indones Majallah-i'ulum-i payah-i pizishki-i Iran = Iranian journal of basic medical sciences / Mashad University of Medical Sciences|Majallah iulum i Payah i Pizishki i Iran Majallat al-buhuth wa-al-dirasat al-'Arabiyah = Majallat Albuhuth Waaldirasat Alarabiyah Majallat al-Diwan al-Qawmi lil-Usrah wa-al-'Umran al-Bashari = Majallat Aldiwan Alqawmi Lilusrah Waal Umran lbashari Majallat ma had al-makhtutat al-Arabiyah = Majallat Ma had al Makhtutat al Arabiy Majallat Majma' al-Lughah al-'Arabiyah bi-Dimashq = Rev Acad Arabe Damas Majallat Niqabat Attiba' al-Asnan al-Urduniyah = Majallat Niqabat Attiba Alasnnan Alurduniyah Majallat tibb al-asnan al-Suriyah = Majallat Tibb Alasnan Alsuriyah Majallat tibb al-famm al-Suriyah = Majallat Tibb Alfamm Alsuriyah Major Advances in Human Female Reproduction = Serono Sym Major Advances in Human Female Reproduction = Serono. Sym. Major American Universities Ph = Major Amer. Univ. Ph.D. Qualif. Questions Solut. Major Chemical Disasters - Medical Aspects of Management = Roy Soc Med Int Cong Major Chemical Disasters - Medical Aspects of Management = Roy. Soc. Med. Int. Cong. Major Controversies in Infant Nutrition = Roy Soc Med Int Cong Major Controversies in Infant Nutrition = Roy. Soc. Med. Int. Cong. Major Events in Early Vertebrate Evolution: Palaeontology, Phylogeny, Genetics and Development = Syst Assoc Spec Vol Major Events in Early Vertebrate Evolution: Palaeontology, Phylogeny, Genetics and Development = Syst. Assoc. Spec. Vol. Major Genes for Reproduction in Sheep = Colloq Inra Major Genes for Reproduction in Sheep = Colloq. Inra. Major Hazards Onshore and Offshore Ii = Inst Chem E Major Hazards Onshore and Offshore Ii = Inst. Chem. E. Major Hazards Onshore and Offshore = Inst Chem E Major Hazards Onshore and Offshore = Inst. Chem. E. Major problems in clinical pediatrics = Major Probl Clin Pediatr Major Problems in Clinical Pediatrics = Major Probl. Clin. Pediatr. Major problems in clinical surgery = Major Probl Clin Surg Major Problems in Clinical Surgery = Major Probl. Clin. Surg. Major problems in internal medicine = Major Probl Intern Med Major Problems in Internal Medicine = Major Probl. Intern. Med. Major problems in obstetrics and gynecology = Major Probl Obstet Gynecol Major Problems in Obstetrics and Gynecology = Major Probl. Obstet. Gynecol. Major problems in pathology = Major Probl Pathol Major Problems in Pathology = Major Probl. Pathol. Makaaberi Ruumis: Mielikuvia Kuolemasta Ja Kehosta = Hist Arkisto Makaaberi Ruumis: Mielikuvia Kuolemasta Ja Kehosta = Hist. Arkisto. Makedonska Akademija na Naukite i Umetnostite = Makedon. Akad. Nauk. Umet. Oddel. Mat.-Tehn. Nauk. Prilozi Makedonski medicinski pregled. Revue medicale macedonienne = Makedon Med Pregl Makedonsko nasledstvo. Spisanie za arheologija, istorija, istorija na umetnosta i etnologija = MakedNasl Making A Collection Count: A Holistic Approach to Library Collection Management = Chandos Inf Prof Ser Making A Collection Count: A Holistic Approach to Library Collection Management = Chandos. Inf. Prof. Ser. Making A Difference in Teacher Education Through Self-study = Self Study Teach Tea Making A Difference in Teacher Education Through Self-study = Self. Study. Teach. Tea. Making Adjustments : Change and Continuity in Planter Nova Scotia, 1759 - 1800 = Planters St Making Adjustments : Change and Continuity in Planter Nova Scotia, 1759 - 1800 = Planters. St. Making and Metaphor: A Discussion of Meaning in Contemporary Craft = Mercury Ser Making and Metaphor: A Discussion of Meaning in Contemporary Craft = Mercury. Ser. Making British Culture = Routl Stud Cult Hist Making British Culture = Routl. Stud. Cult. Hist. Making European Citizens: Civic Inclusion in A Transnational Context = One Eur Several Making European Citizens: Civic Inclusion in A Transnational Context = One. Eur. Several. Making Fair Lending A Reality in The New Millennium, Proceedings = Res Roundtable Ser Making Fair Lending A Reality in The New Millennium, Proceedings = Res. Roundtable. Ser. Making Fisheries Management Work: Implementation of Policies for Sustainable Fishing = Rev-methods Technol Making Fisheries Management Work: Implementation of Policies for Sustainable Fishing = Rev-methods. Technol. Making Functional Materials With Nanotubes = Mater Res Soc Symp P Making Functional Materials With Nanotubes = Mater. Res. Soc. Symp. P. Making Globally Distributed Software Development A Success Story = Lect Notes Comput Sc Making Globally Distributed Software Development A Success Story = Lect. Notes. Comput. Sc. Making Haste Slowly = Dev Orient Res Agr Making Haste Slowly = Dev. Orient. Res. Agr. Making Healthcare Care: Managing Via Simple Guiding Principles = Manag Complex Making Healthcare Care: Managing Via Simple Guiding Principles = Manag. Complex. Making Health Services More Accessible in Developing Countries: Finance and Health Resources for Functioning Health Systems = Ide-jetro Ser Making Health Services More Accessible in Developing Countries: Finance and Health Resources for Functioning Health Systems = Ide-jetro. Ser. Making Meaning: Constructing Multimodal Perspectives of Language, Literacy, and Learning Through Arts-based Early Childhood Education = Educ Young Child Making Meaning: Constructing Multimodal Perspectives of Language, Literacy, and Learning Through Arts-based Early Childhood Education = Educ. Young. Child. Making Media Content: The Influence of Constituency Groups On Mass Media = Lea Commun Ser Making Media Content: The Influence of Constituency Groups On Mass Media = Lea. Commun. Ser. Making Music in Japan's Underground: The Tokyo Hardcore Scene = E Asia Hist Polit So Making Music in Japan's Underground: The Tokyo Hardcore Scene = E. Asia. Hist. Polit. So. Making of A Digital World: The Evolution of Technological Change and How It Shaped Our World = Evol Proc World Pol Making of A Digital World: The Evolution of Technological Change and How It Shaped Our World = Evol. Proc. World Pol. Making of A Good Doctor = Public Health 21st C Making of A Good Doctor = Public. Health. 21st. C. Making of A Mediterranean Emirate = Middle Ages Ser Making of A Mediterranean Emirate = Middle. Ages. Ser. Making of Jewish and Christian Worship = Two Liturg Making of Jewish and Christian Worship = Two. Liturg. Making of Modern Afghanistan = Camb Imp Post-col St Making of Modern Afghanistan = Camb. Imp. Post-col. St. Making of Modern Switzerland, 1848-1998 = New Perspect German Making of Modern Switzerland, 1848-1998 = New. Perspect. German. Making of The Contemporary World = Making Contemp World Making of The Contemporary World = Making Contemp. World Making of The Geological Society of London = Geol Soc Spec Publ Making of The Geological Society of London = Geol. Soc. Spec. Publ. Making Peace Work: The Challenges of Social and Economic Reconstruction = Stud Dev Econ Policy Making Peace Work: The Challenges of Social and Economic Reconstruction = Stud. Dev. Econ. Policy. Making Profits Out of Seafood Wastes = Alaska Sea Making Profits Out of Seafood Wastes = Alaska. Sea. Making Public Services Management Critical = Routl Crit Stud Publ Making Public Services Management Critical = Routl. Crit. Stud. Publ. Making Rights Work = Soc Legal St Ser Making Rights Work = Soc. Legal. St. Ser. Making Schools Work for Underachieving Minority Students = Cont Stud E Making Schools Work for Underachieving Minority Students = Cont. Stud. E. Making Schools Work = Milken Inst Ser Econ Making Schools Work = Milken. Inst. Ser. Econ. Making Sense of Health, Illness and Disease = At The Interface Making Sense of Health, Illness and Disease = At. The. Interface. Making Silicon Valley: Innovation and The Growth of High Tech, 1930-1970 = Inside Technol Making Silicon Valley: Innovation and The Growth of High Tech, 1930-1970 = Inside. Technol. Making Strategies in Spatial Planning: Knowledge and Values = Urban Land Perspect Making Strategies in Spatial Planning: Knowledge and Values = Urban. Land. Perspect. Making Sustainability Operational: Fourth Mexico/u.s. Symposium = Usda Rocky Making Sustainability Operational: Fourth Mexico/u.s. Symposium = Usda. Rocky. Making Teaching and Learning Matter: Transformative Spaces in Higher Education = Explor Educ Purp Making Teaching and Learning Matter: Transformative Spaces in Higher Education = Explor. Educ. Purp. Making The Connection = Lang Educ T Making The Connection = Lang. Educ. T. Making The Connection: Research and Teaching in Undergraduate Mathematics Education = Maa Notes Making The Connection: Research and Teaching in Undergraduate Mathematics Education = Maa. Notes. Making the rounds in health, faith, & ethics = Mak Rounds Health Faith Ethics Making The Transition Work for Women in Europe and Central Asia = World B Dis Making The Transition Work for Women in Europe and Central Asia = World. B. Dis. Making Transnational Feminism = Perspect Gend Making Transnational Feminism = Perspect. Gend. Making Universal Service Policy = Telecommun Making Universal Service Policy = Telecommun. Makromolekulare Chemie-macromolecular Chemistry and Physics = Makromol Chem Makromolekulare Chemie-macromolecular Chemistry and Physics = Makromol. Chem. Makromolekulare Chemie, Macromolecular Symposia = Makromol. Chem. Macromol. Symp. Makromolekulare Chemie, Macromolecular Symposia = Makromol. Chem., Macromol. Symp. Makromolekulare Chemie-macromolecular Symposia = Makromol Chem-m Symp Makromolekulare Chemie-macromolecular Symposia = Makromol. Chem-m. Symp. Makromolekulare Chemie = Makromol. Chem. Makromolekulare Chemie = Makromolekul Chem Makromolekulare Chemie = Makromolekul. Chem. Makromolekulare Chemie-rapid Communications = Makromol Chem-rapid Makromolekulare Chemie-rapid Communications = Makromol. Chem-rapid. Makromolekulare Chemie, Rapid Communications = Makromol. Chem. Rapid Commun. Makromolekulare Chemie, Rapid Communications = Makromol. Chem., Rapid Commun. Makromolekulare Chemie, Supplement = Makromol. Chem. Suppl. Makromolekulare Chemie, Supplement = Makromol. Chem., Suppl. Makromolekulare Chemie-theory and Simulations = Makromol Chem-theor Makromolekulare Chemie-theory and Simulations = Makromol. Chem-theor. Makromolekulare Chemie, Theory and Simulations = Makromol. Chem. Theory Simul. Malacologia = Malacologia Malaga = Malaga Malahat Review = Malahat Rev Malahat Review = Malahat Rev. Malaise Dans Le Capitalisme = Psychanalyse Et Malaise Dans Le Capitalisme = Psychanalyse. Et. Malaria: Drugs, Disease and Post-genomic Biology = Curr Top Microbiol Malaria: Drugs, Disease and Post-genomic Biology = Curr. Top. Microbiol. Malaria Immunology, 2nd Edition = Chem Immunol Malaria Immunology, 2nd Edition = Chem. Immunol. Malaria in South Asia: Eradication Resurgence During The Second Half of The Twentieth Century = Adv Asian Hum-env Re Malaria in South Asia: Eradication Resurgence During The Second Half of The Twentieth Century = Adv. Asian. Hum-env. Re. Malaria Journal = Malaria J Malaria Journal = Malaria J. Malaria journal = Malar J Malaria Journal = Malar. J. Malaria Vector Control and Personal Protection: Report of A Who Study Group = Who Tech Rep Ser Malaria Vector Control and Personal Protection: Report of A Who Study Group = Who Tech. Rep. Ser. Malaria weekly = Malar Wkly Malattie cardiovascolari = Mal Cardiovasc Malattie Cardiovascolari = Mal. Cardiovasc. Malawi Medical Journal = Malawi Med J Malawi Medical Journal = Malawi Med. J. Malawi medical journal : the journal of Medical Association of Malawi = Malawi Med J Malayan Economic Review=Malayan Econ. Rev. Malayan Economic Review = Singapore Econ Rev Malayan Economic Review = Singapore. Econ. Rev. Malayan Journal of Tropical Geography = Malayan J. Trop. Geogr. Malayan Nature Journal, The = Malayan Nat. J. Malaysia Annual Physics Conference 2010 (perfik-2010) = Aip Conf Proc Malaysia Annual Physics Conference 2010 (perfik-2010) = Aip. Conf. Proc. Malaysian dental journal = Malays Dent J Malaysian Dental Journal = Malays. Dent. J. Malaysian Forester, The = Malays. For. Malaysian Journal of Computer Science = Malayas J Comput Sci Malaysian Journal of Computer Science = Malayas. J. Comput. Sci. Malaysian Journal of Computer Science = Malays J Comput Sci Malaysian Journal of Computer Science = Malays. J. Comput. Sci. Malaysian Journal of Library & Information Science = Malays J Libr Inf Sc Malaysian Journal of Library & Information Science = Malays. J. Libr. Inf. Sc. Malaysian Journal of Pathology=Malays J Pathol;; Malaysian Journal of Pathology = Malays. J. Pathol. Malaysian journal of reproductive health : a publication of the Reproductive Research Centre of the National Population and Family Development Board, Malaysia = Malays J Reprod Health Malaysian journal of tropical geography = Malays J Trop Geogr Malaysian Mathematical Society = Bull. Malaysian Math. Soc. (2) Malaysian Nepenthes: Evolutionary and Taxonomic Perspectives = Bot Res Pract Malaysian Nepenthes: Evolutionary and Taxonomic Perspectives = Bot. Res. Pract. Malcolm D. Shuster Astronautics Symposium = Adv Astronaut Sci Malcolm D. Shuster Astronautics Symposium = Adv. Astronaut. Sci. Male and Female Infertility: Genetic Causes, Hormonal Treatments and Health Effects = Hum Reprod Syst Anat Male and Female Infertility: Genetic Causes, Hormonal Treatments and Health Effects = Hum. Reprod. Syst. Anat. Male Factor in Human Infertility = Front Endocrinol Male Factor in Human Infertility = Front. Endocrinol. Male Fertility Patterns and Determinants = Springer Ser Demogr Male Fertility Patterns and Determinants = Springer. Ser. Demogr. Male Germ Cell : Spermatogonium to Fertilization = Ann Ny Acad Sci Male Germ Cell : Spermatogonium to Fertilization = Ann. Ny. Acad. Sci. Male Germline Stem Cells: Developmental An Regenerative Potential = Stem Cells Biol Reg Male Germline Stem Cells: Developmental An Regenerative Potential = Stem Cells. Biol. Reg. Male Infertility: Problems and Solutions = Curr Clin Urol Male Infertility: Problems and Solutions = Curr. Clin. Urol. Male-mediated Developmental Toxicity = Iss Toxicol Male-mediated Developmental Toxicity = Iss. Toxicol. Male-mediated Developmental Toxicity = Issues Toxicol Male-mediated Developmental Toxicity = Issues. Toxicol. Male-mediated Developmental Toxicity = Reprod Biol Male-mediated Developmental Toxicity = Reprod. Biol. Male Nurses Journal = Male Nurses J. Male Reproductive Cancers: Epidemiology, Pathology and Genetics = Cancer Genet-ser Male Reproductive Cancers: Epidemiology, Pathology and Genetics = Cancer. Genet-ser. Malignant Liver Tumours: Basic Concepts and Clinical Management = Falk Symp Malignant Liver Tumours: Basic Concepts and Clinical Management = Falk. Symp. Malignant Mesothelioma = Recent Results Canc Malignant Mesothelioma = Recent. Results. Canc. Malliavin Calculus for Levy Processes With Applications to Finance = Universitext Malliavin Calculus for Levy Processes With Applications to Finance = Universitext. Malnourished Child = Nestle Nutr Works Se Malnourished Child = Nestle. Nutr. Works. Se. Malpractice digest = Malpract Dig Malvern Physics Series = Malvern Phy Malvern Physics Series = Malvern Phy. Malware Detection = Adv Inform Secur Malware Detection = Adv. Inform. Secur. Malware Detection = Adv Inf Sec Malware Detection = Adv. Inf. Sec. Mamiferos De Restingas E Mangueais Do Brasil = Ser Livros Mus Nac Mamiferos De Restingas E Mangueais Do Brasil = Ser. Livros. Mus. Nac. Mammalia = Mammalia Mammalian Biology = Mamm Biol Mammalian Biology = Mamm. Biol. Mammalian biology = Zeitschrift fur Saugetierkunde|Mamm. Biol. Mammalian Cell Viability: Methods and Protocols = Methods Mol Biol Mammalian Cell Viability: Methods and Protocols = Methods Mol. Biol. Mammalian Chromosome Engineering: Methods and Protocols = Methods Mol Biol Mammalian Chromosome Engineering: Methods and Protocols = Methods Mol. Biol. Mammalian Cochlear Nuclei = Nato Adv Sci Inst Se Mammalian Cochlear Nuclei = Nato. Adv. Sci. Inst. Se. Mammalian Genome=Mamm Genome;; Mammalian Genome = Mamm Genome Mammalian Genome = Mamm. Genome Mammalian genome : official journal of the International Mammalian Genome Society = Mamm Genome Mammal Review = Mammal Rev Mammal Review = Mammal Rev. Mammal Review = Mamm. Rev. Mammals As Predators = Sym Zool S Mammals As Predators = Sym. Zool. S. Mammal Study = Mamm Study Mammal Study = Mamm. Study Mammary Development in Cancer = Biochem Soc Symp Mammary Development in Cancer = Biochem. Soc. Symp. Mana-estudos De Antropologia Social = Mana-estud Antropol Mana-estudos De Antropologia Social = Mana-estud. Antropol. Managed care interface = Manag Care Interface Managed Care Interface = Manag. Care Interface Managed care (Langhorne, Pa.) = Manag Care Managed Care = Manag. Care Managed care quarterly = Manag Care Q Managed Care Quarterly = Manag. Care Q. Managed care strategies (Atlanta, Ga.) = Manag Care Strateg Managed Care Strategies = Manag. Care Strateg. Managed Medicare and Medicaid News = Manag. Medicare Medicaid News Managed medicare & medicaid news = Manag Medicare Medicaid News Management Accounting=Manage. Acc. Management Accounting Research = Manage Account Res Management Accounting Research = Manage. Account. Res. Management and compliance series / American Society for Hospital Engineering of the American Hospital Association = Manag Compliance Ser Management and Compliance Series = Manag. Compliance Ser. Management and Delivery of Maintenance and Operations Services = Transport Res Rec Management and Delivery of Maintenance and Operations Services = Transport. Res. Rec. Management and Operation of Ships = Imare Conf Management and Operation of Ships = Imare. Conf. Management and Organization Review = Manage Organ Rev Management and Organization Review = Manage. Organ. Rev. Management and Public Policy 2005 = Transport Res Rec Management and Public Policy 2005 = Transport. Res. Rec. Management and Public Policy 2006 = Transport Res Rec Management and Public Policy 2006 = Transport. Res. Rec. Management and Restoration of Fluvial Systems With Broad Historical Changes and Human Impacts = Geol S Am S Management and Restoration of Fluvial Systems With Broad Historical Changes and Human Impacts = Geol. S. Am. S. Management and The Dominance of Managers = Routl Stud Manag Org Management and The Dominance of Managers = Routl. Stud. Manag. Org. Management Communication Quarterly = Manage Commun Q Management Communication Quarterly = Manage. Commun. Q. Management Controls = Manage Controls Management Controls = Manage. Controls Management Datamatics = Manage Datamat Management Datamatics = Manage. Datamat. Management Decision = Manage Decis Management Decision = Manage. Decis. Management Development: Perspectives From Research and Practice = Routl Stud Hum Resou Management Development: Perspectives From Research and Practice = Routl. Stud. Hum. Resou. Management Education for Global Sustainability = Res Manag Educ Dev Management Education for Global Sustainability = Res. Manag. Educ. Dev. Management Enabling The Future Internet for Changing Business and New Computing Services, Proceedings = Lect Notes Comput Sc Management Enabling The Future Internet for Changing Business and New Computing Services, Proceedings = Lect. Notes. Comput. Sc. Management focus = Manage Focus Management Focus = Manage Focus Management Focus = Manage. Focus Management Informatics = Manage Inform Management Informatics = Manage. Inform. Management Information Systems 2000 = Manag Informat Syst Management Information Systems 2000 = Manag. Informat. Syst. Management Information Systems 2002: Incorporating Gis and Remote Sensing = Manag Informat Syst Management Information Systems 2002: Incorporating Gis and Remote Sensing = Manag. Informat. Syst. Management Information Systems 2004: Gis and Remote Sensing = Manag Informat Syst Management Information Systems 2004: Gis and Remote Sensing = Manag. Informat. Syst. Management Information Systems = Manag Informat Syst Management Information Systems = Manag. Informat. Syst. Management International Review = Manage Int Rev Management International Review = Manage. Int. Rev. Management in The Airline Industry = Routl Res Employ Rel Management in The Airline Industry = Routl. Res. Employ. Rel. Management Issues in Manufacturing: Improving Business Performance = Tech Papers Isa Management Issues in Manufacturing: Improving Business Performance = Tech. Papers. Isa. Management Learning = Manage Learn Management Learning = Manage. Learn. Management=Management Management of Ageing in Graphite Reactor Cores = Roy Soc Ch Management of Ageing in Graphite Reactor Cores = Roy. Soc. Ch. Management of Antimicrobials in Infectious Diseases: Impact of Antibiotic Resistance, Second Edition = Infect Dis Management of Antimicrobials in Infectious Diseases: Impact of Antibiotic Resistance, Second Edition = Infect. Dis. Management of Carbon Sequestration in Soil = Adv Soil S Management of Carbon Sequestration in Soil = Adv. Soil S. Management of Cardiac Arrhythmias, Second Edition = Contemp Cardiol Management of Cardiac Arrhythmias, Second Edition = Contemp. Cardiol. Management of Chronic Obstructive Pulmonary Disease = Eur Respir Monogr Management of Chronic Obstructive Pulmonary Disease = Eur. Respir. Monogr. Management of Clay Soils for Rainfed Lowland Rice-based Cropping Systems = Aciar Proc Management of Clay Soils for Rainfed Lowland Rice-based Cropping Systems = Aciar. Proc. Management of Collective Irrigated Areas At The Dawn of The 21st Century: Issues, Problems and Approaches = Cirad Colloques Management of Collective Irrigated Areas At The Dawn of The 21st Century: Issues, Problems and Approaches = Cirad. Colloques. Management of Converged Multimedia Networks and Services, Proceedings = Lect Notes Comput Sc Management of Converged Multimedia Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Management of Convergence in Innovation: Strategies and Capabilities for Value Creation Beyond Blurring Industry Boundaries = Contrib Manag Sci Management of Convergence in Innovation: Strategies and Capabilities for Value Creation Beyond Blurring Industry Boundaries = Contrib. Manag. Sci. Management of Convergence Networks and Services, Proceedings = Lect Notes Comput Sc Management of Convergence Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Management of Defense Acquisition Projects = Libr Flight Management of Defense Acquisition Projects = Libr. Flight. Management of Education in The Information Age = Int Fed Info Proc Management of Education in The Information Age = Int. Fed. Info. Proc. Management of Epilepsy in Developing Countries : An Icberg Manual = Roy Soc Med Int Cong Management of Epilepsy in Developing Countries : An Icberg Manual = Roy. Soc. Med. Int. Cong. Management of Fire and Explosions = Imeche Conf Trans Management of Fire and Explosions = Imeche. Conf. Trans. Management of Fruit Flies in The Pacific = Aciar Proc Management of Fruit Flies in The Pacific = Aciar. Proc. Management of Global Animal Genetic Resources = Fao Anim Pr Management of Global Animal Genetic Resources = Fao. Anim. Pr. Management of Health Risks From Environment and Food = Alliance Glob Sustai Management of Health Risks From Environment and Food = Alliance. Glob. Sustai. Management of Indoor Hygiene = Vdi Bericht Management of Indoor Hygiene = Vdi. Bericht. Management of Intellectual Property = New Horiz Intel Prop Management of Intellectual Property = New. Horiz. Intel. Prop. Management of Intentional and Accidental Water Pollution = Nato Sci Peace Secur Management of Intentional and Accidental Water Pollution = Nato. Sci. Peace. Secur. Management of Knowledge Imperfection in Building Intelligent Systems = Stud Fuzz Soft Comp Management of Knowledge Imperfection in Building Intelligent Systems = Stud. Fuzz. Soft. Comp. Management of Lakes and Reservoirs During Global Climate Change = Nato Asi 2 Management of Lakes and Reservoirs During Global Climate Change = Nato. Asi. 2. Management of Latin American River Basins: Amazon, Plata, and Sao Francisco = Water Reso Manage Po Management of Latin American River Basins: Amazon, Plata, and Sao Francisco = Water. Reso. Manage. Po. Management of Multimedia Networks and Services, Proceedings = Lect Notes Comput Sc Management of Multimedia Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Management of Multimedia On The Internet = Lect Notes Comput Sc Management of Multimedia On The Internet = Lect. Notes. Comput. Sc. Management of Natural Resources, Sustainable Development and Ecological Hazards Ii = Wit Trans Ecol Envir Management of Natural Resources, Sustainable Development and Ecological Hazards Ii = Wit. Trans. Ecol. Envir. Management of Natural Resources, Sustainable Development and Ecological Hazards = Wit Trans Ecol Envir Management of Natural Resources, Sustainable Development and Ecological Hazards = Wit. Trans. Ecol. Envir. Management of Pediatric Obesity and Diabetes = Nutr Health Ser Management of Pediatric Obesity and Diabetes = Nutr. Health. Ser. Management of Pollutant Emmission From Landfills and Sludge = Proc Monogr Eng Wate Management of Pollutant Emmission From Landfills and Sludge = Proc. Monogr. Eng. Wate. Management of Psoriasis = Curr Probl Dermatol Management of Psoriasis = Curr. Probl. Dermatol. Management of Safety in The '90s = Int Air Saf Sem P Management of Safety in The '90s = Int. Air. Saf. Sem. P. Management of Scarce Water Resources: A Middle Eastern Experience = Progr Wat Resour Management of Scarce Water Resources: A Middle Eastern Experience = Progr. Wat. Resour. Management of Serious Paediatric Infections = Res Clin Forums Management of Serious Paediatric Infections = Res. Clin. Forums. Management of Small and Medium Enterprises = Routl Stud Small Bus Management of Small and Medium Enterprises = Routl. Stud. Small Bus. Management of Technology Innovation and Value Creation = Manag Tech Management of Technology Innovation and Value Creation = Manag. Tech. Management of Technology = Manag Tech Management of Technology = Manag. Tech. Management of Technology Series = Manag Technol Ser Management of Technology Series = Manag. Technol. Ser. Management of The Coastal Lagoons and Enclosed Bays = Coastl Worl Management of The Coastal Lagoons and Enclosed Bays = Coastl. Worl. Management of Transboundary Rivers and Lakes = Water Res Devel Man Management of Transboundary Rivers and Lakes = Water. Res. Devel. Man. Management of Transboundary Rivers and Lakes = Water Resour Dev Man Management of Transboundary Rivers and Lakes = Water. Resour. Dev. Man. Management of Transshipment Terminals: Decision Support for Terminal Operations in Finished Vehicle Supply Chains = Oper Res Comput Sci Management of Transshipment Terminals: Decision Support for Terminal Operations in Finished Vehicle Supply Chains = Oper. Res. Comput. Sci. Management of Uncertainty: Theory and Application in The Design of Systems and Organizations = Decis Eng Management of Uncertainty: Theory and Application in The Design of Systems and Organizations = Decis. Eng. Management of Urinary Tract Infections = Roy Soc Med Int Cong Management of Urinary Tract Infections = Roy. Soc. Med. Int. Cong. Management of Weather and Climate Risk in The Energy Industry = Nato Sci Peace Sec C Management of Weather and Climate Risk in The Energy Industry = Nato. Sci. Peace. Sec. C. Management of Weather and Climate Risk in The Energy Industry = Nato Sci Peace Secur Management of Weather and Climate Risk in The Energy Industry = Nato. Sci. Peace. Secur. Management of World Wastes = Manage World Waste Management of World Wastes = Manage. World Waste. Management review = Manage Rev Management Review = Manage. Rev. Management Review = Manag Rev Management Review = Manag. Rev. Management Science and Engineering Management = Manag Sci Eng Manag Management Science and Engineering Management = Manag. Sci. Eng. Manag. Management science = Manage Sci Management Science = Manage Sci Management Science = Manage. Sci. Management Science Series A-theory = Manage Sci Management Science Series A-theory = Manage. Sci. Management Science Series B-application = Manage Sci B-appl Management Science Series B-application = Manage. Sci. B-appl. Management Science Theory and Applications = Manag Sci Theor Appl Management Science Theory and Applications = Manag. Sci. Theor. Appl. Management Services in Government = Manage Serv Gov Management Services in Government = Manage. Serv. Gov. Management Strategies for Exploited Fish Populations = Low Wake Fi Management Strategies for Exploited Fish Populations = Low. Wake. Fi. Management Technologies for E-commerce and E-business Applications, Proceedings = Lect Notes Comput Sc Management Technologies for E-commerce and E-business Applications, Proceedings = Lect. Notes. Comput. Sc. Management Technologies for Metal Mining Influenced Water = Manag Technol Met Mi Management Technologies for Metal Mining Influenced Water = Manag. Technol. Met. Mi. Management Today = Manage Today Management Today = Manage. Today Management Training in High-tech and R&d = Nato Asi S 4 Sci Tec Management Training in High-tech and R&d = Nato. Asi. S. 4. Sci. Tec. Management Training Review=Manage. Train. Rev. Management world = Manage World Management World = Manage. World Managerial and Decision Economics = Manage Decis Econ Managerial and Decision Economics = Manage. Decis. Econ. Managerial and Decision Economics=Managerial Dec. Econ. Managerial Attitudes Toward A Stakeholder Prominence Within A Southeast Asia Context = Stud Manag Financ Ac Managerial Attitudes Toward A Stakeholder Prominence Within A Southeast Asia Context = Stud. Manag. Financ. Ac. Managerial Competence Within The Hospitality and Tourism Service Industries: Global Cultural Contextual Analysis = Routl Adv Manag Bus Managerial Competence Within The Hospitality and Tourism Service Industries: Global Cultural Contextual Analysis = Routl. Adv. Manag. Bus. Managerial Economics of Non-profit Organizations = Routl Stud Man Volun Managerial Economics of Non-profit Organizations = Routl. Stud. Man. Volun. Managerial Finance = Manage Financ Managerial Finance = Manage. Financ. Managerial Uses of Accounting Information = Springer Ser Account Managerial Uses of Accounting Information = Springer. Ser. Account. Managers and Missionaries : Library Services to Children and Young Adults in The Information Age = Allerton Pa Managers and Missionaries : Library Services to Children and Young Adults in The Information Age = Allerton. Pa. Managing Allergens in Food = Woodhead Food Ser Managing Allergens in Food = Woodhead. Food Ser. Managing and Maintaining Highway Structures and Pavements = Transport Res Rec Managing and Maintaining Highway Structures and Pavements = Transport. Res. Rec. Managing and Mining Graph Data = Adv Database Syst Managing and Mining Graph Data = Adv. Database. Syst. Managing and Mining Uncertain Data = Adv Database Syst Managing and Mining Uncertain Data = Adv. Database. Syst. Managing and Modelling Complex Projects = Nato Asi S 4 Sci Tec Managing and Modelling Complex Projects = Nato. Asi. S. 4. Sci. Tec. Managing Aseans Coastal Resources for Sustainable Development : Roles of Policymakers, Scientists, Donors, Media and Communities = Iclarm Conf Managing Aseans Coastal Resources for Sustainable Development : Roles of Policymakers, Scientists, Donors, Media and Communities = Iclarm. Conf. Managing Business Interfaces: Marketing and Engineering Issues in The Supply Chain and Internet Domains = Int Ser Quant Market Managing Business Interfaces: Marketing and Engineering Issues in The Supply Chain and Internet Domains = Int. Ser. Quant. Market. Managing Care: A Shared Responsibility = Issues Bus Ethics Managing Care: A Shared Responsibility = Issues. Bus. Ethics. Managing Change in The Postal and Delivery Industries = T Reg Econ Managing Change in The Postal and Delivery Industries = T. Reg. Econ. Managing Commuters' Behaviour: A New Role for Companies = Ecmt Round Managing Commuters' Behaviour: A New Role for Companies = Ecmt. Round. Managing Complex Governance Systems = Routl Crit Stud Publ Managing Complex Governance Systems = Routl. Crit. Stud. Publ. Managing Conflict in Economic Convergence of Regions in Greater Europe = Contrib Confl Manag Managing Conflict in Economic Convergence of Regions in Greater Europe = Contrib. Confl. Manag. Managing Critical Infrastructure Risks: Decision Tools and Application for Port Security = Nato Sci Peace Secur Managing Critical Infrastructure Risks: Decision Tools and Application for Port Security = Nato. Sci. Peace. Secur. Managing Currency Crises in Emerging Markets = Nber Conf R Managing Currency Crises in Emerging Markets = Nber. Conf. R. Managing Defence in A Democracy = Cass Mil Stud Managing Defence in A Democracy = Cass. Mil. Stud. Managing Dental Trauma in Practice = Quintessent Dent Pra Managing Dental Trauma in Practice = Quintessent. Dent. Pra. Managing Emerging Market Portfolios = Icfa Cont Educ Ser Managing Emerging Market Portfolios = Icfa. Cont. Educ. Ser. Managing Emotions in Mergers and Acquisitions = New Horiz Manag Managing Emotions in Mergers and Acquisitions = New. Horiz. Manag. Managing European Coasts: Past, Present and Future = Environm Sci Managing European Coasts: Past, Present and Future = Environm. Sci. Managing European Coasts: Past, Present and Future = Environ Sci-ger Managing European Coasts: Past, Present and Future = Environ. Sci-ger. Managing Fishery Resources = World B Dis Fis Managing Fishery Resources = World. B. Dis. Fis. Managing Forest Ecosystems = Manag For Ecosyst Managing Forest Ecosystems = Manag. For. Ecosyst. Managing for Health = Routl Health Manag Managing for Health = Routl. Health Manag. Managing Global Legal Systems: International Employment Regulation and Competitive Advantage = Rout Glob Hum Resour Managing Global Legal Systems: International Employment Regulation and Competitive Advantage = Rout. Glob. Hum. Resour. Managing Human Resources in Europe: A Thematic Approach = Rout Glob Hum Resour Managing Human Resources in Europe: A Thematic Approach = Rout. Glob. Hum. Resour. Managing Human Resources in Latin America: An Agenda for International Leaders = Rout Glob Hum Resour Managing Human Resources in Latin America: An Agenda for International Leaders = Rout. Glob. Hum. Resour. Managing Human Resources in The Middle-east = Rout Glob Hum Resour Managing Human Resources in The Middle-east = Rout. Glob. Hum. Resour. Managing Infections in Patients With Hematological Malignancies = Contemp Hematol Managing Infections in Patients With Hematological Malignancies = Contemp. Hematol. Managing Inflation in Socialist Economies in Transition = Edi Semin S Managing Inflation in Socialist Economies in Transition = Edi. Semin. S. Managing Information Technologys Organizational Impact, Ii = Ifip Trans A Managing Information Technologys Organizational Impact, Ii = Ifip. Trans. A. Managing Instability in Algeria: Elites and Political Change Since 1995 = Hist Soc Islam World Managing Instability in Algeria: Elites and Political Change Since 1995 = Hist. Soc. Islam. World. Managing international development : MID = Manag Int Dev Managing in The Information Economy: Current Research Issues = Ann Inform Syst Managing in The Information Economy: Current Research Issues = Ann. Inform. Syst. Managing in Uncertainty: Theory and Practice = Appl Optim Managing in Uncertainty: Theory and Practice = Appl. Optim. Managing in Uncertainty: Theory and Practice = Appl Optimizat Managing in Uncertainty: Theory and Practice = Appl. Optimizat. Managing Knowledge Assets and Organizational Learning = Res Compet-based Man Managing Knowledge Assets and Organizational Learning = Res. Compet-based. Man. Managing Knowledge for Global and Collaborative Innovations = Ser Innovat Knowl Ma Managing Knowledge for Global and Collaborative Innovations = Ser. Innovat. Knowl. Ma. Managing Knowledge in A World of Networks, Proceedings = Lect Notes Artif Int Managing Knowledge in A World of Networks, Proceedings = Lect. Notes. Artif. Int. Managing Large-scale Service Deployment, Proceedings = Lect Notes Comput Sc Managing Large-scale Service Deployment, Proceedings = Lect. Notes. Comput. Sc. Managing Next Generation Networks and Services, Proceedings = Lect Notes Comput Sc Managing Next Generation Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Managing Organizational Culture for Effective Internal Control: From Practice to Theory = Contrib Manag Sci Managing Organizational Culture for Effective Internal Control: From Practice to Theory = Contrib. Manag. Sci. Managing Organizational Transitions in A Global Economy = U Cal I Ind Managing Organizational Transitions in A Global Economy = U. Cal. I. Ind. Managing Orofacial Pain in Practice = Quintessent Dent Pra Managing Orofacial Pain in Practice = Quintessent. Dent. Pra. Managing Parliaments in The 21st Century = Int Inst Adm Sci Mg Managing Parliaments in The 21st Century = Int. Inst. Adm. Sci. Mg. Managing People Globally: An Asian Perspective = Chandos Asian Stud Managing People Globally: An Asian Perspective = Chandos. Asian Stud. Managing Pesticide Waste and Packaging = Bcpc Symp Ser Managing Pesticide Waste and Packaging = Bcpc. Symp. Ser. Managing Pinon-juniper Ecosystems for Sustainability and Social Needs = Usda Rocky Managing Pinon-juniper Ecosystems for Sustainability and Social Needs = Usda. Rocky. Managing Product Innovation = Adv Bus Mark Purch Managing Product Innovation = Adv. Bus. Mark. Purch. Managing Project Ending = Routl Adv Manag Bus Managing Project Ending = Routl. Adv. Manag. Bus. Managing Quality Assurance At The Fe/he Inferface = Mendip Pap Managing Quality Assurance At The Fe/he Inferface = Mendip. Pap. Managing Resistance to Agrochemicals = Acs Sym Ser Managing Resistance to Agrochemicals = Acs. Sym. Ser. Managing Resources in A Sea of Change = Iamslic C S Managing Resources in A Sea of Change = Iamslic. C. S. Managing Risks of Nitrates to Humans and The Environment = Roy Soc Ch Managing Risks of Nitrates to Humans and The Environment = Roy. Soc. Ch. Managing Science: Methodology and Organization of Research = Innov Tech Knowl Man Managing Science: Methodology and Organization of Research = Innov. Tech. Knowl. Man. Managing Service Quality = Manag Serv Qual Managing Service Quality = Manag. Serv. Qual. Managing Soil-borne Pathogens: A Sound Rhizosphere to Improve Productivity in Intensive Horticultural Systems = Acta Hortic Managing Soil-borne Pathogens: A Sound Rhizosphere to Improve Productivity in Intensive Horticultural Systems = Acta. Hortic. Managing Staphylococus Aureus in Eczema = Roy S Med S Managing Staphylococus Aureus in Eczema = Roy. S. Med. S. Managing Terrorism and Insurgency: Regeneration, Recruitment and Attrition = Contemp Terror Stud Managing Terrorism and Insurgency: Regeneration, Recruitment and Attrition = Contemp. Terror. Stud. Managing The Complex = Manag Complex Managing The Complex = Manag. Complex Managing The Contemporary Multinational: The Role of Headquarters = New Horiz Int Bus Managing The Contemporary Multinational: The Role of Headquarters = New. Horiz. Int. Bus. Managing The Effects of Hydroelectric Development = C Env Geol Managing The Effects of Hydroelectric Development = C. Env. Geol. Managing The Transition From Print to Electronic Journals and Resources: A Guide for Library and Information Professionals = Rout Stud Lib Inform Managing The Transition From Print to Electronic Journals and Resources: A Guide for Library and Information Professionals = Rout. Stud. Lib. Inform. Managing Traffic Performance in Converged Networks = Lect Notes Comput Sc Managing Traffic Performance in Converged Networks = Lect. Notes. Comput. Sc. Managing Uncerttainty: Ethnographic Studies of Illness, Risk and The Struggle for Control = Crit Anthrop Managing Uncerttainty: Ethnographic Studies of Illness, Risk and The Struggle for Control = Crit. Anthrop. Managing Urban and High-use Recreation Settings = Usda N Cent Managing Urban and High-use Recreation Settings = Usda. N. Cent. Managing Urban Traffic Systems = Transport Res Rec Managing Urban Traffic Systems = Transport. Res. Rec. Managing Value-based Organizations: Its Not What You Think = New Horiz Manag Managing Value-based Organizations: Its Not What You Think = New. Horiz. Manag. Managing Virtualization of Networks and Services, Proceedings = Lect Notes Comput Sc Managing Virtualization of Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Managing Water Resources in A Time of Global Change: Contributions From The Rosenberg International Forum On Water Policy = Cont Ros Int For Wat Managing Water Resources in A Time of Global Change: Contributions From The Rosenberg International Forum On Water Policy = Cont. Ros. Int. For. Wat. Managing Wine Quality, Volume 1: Viticulture and Wine Quality = Woodhead Food Ser Managing Wine Quality, Volume 1: Viticulture and Wine Quality = Woodhead. Food. Ser. Man and medicine = Man Med Man and Medicine = Man Med. Man and Nature : Proceedings of The Canadian Society for Eighteenth Century Studies = Man Nature Man and Nature, Vol 8 = Man Nature Man and Nature, Vol 8 = Man Nature. Man and Nature, Vol 9 = Man Nature Man and Nature, Vol 9 = Man Nature. Man and The Biosphere Series = Man Biosph Man and The Biosphere Series = Man Biosph. Man and The Geosphere = Earth Sci 21st Cent Man and The Geosphere = Earth. Sci. 21st. Cent. Man and World-an International Philosophical Review = Man World Man and World-an International Philosophical Review = Man World. Man As Witch: Male Witches in Central Europe = Palgr Hist Stud Witc Man As Witch: Male Witches in Central Europe = Palgr. Hist. Stud. Witc. Man Bac: The Excavation of A Neolithic Site in Northern Vietnam = Terra Australis Man Bac: The Excavation of A Neolithic Site in Northern Vietnam = Terra. Australis. Manchester Medical Gazette = Manch. Med. Gaz. Manchester memoirs / Manchester Literary and Philosophical Society = Manch Men Manchester School=Manchester Sch. Manchester School = Manch Sch Manchester School = Manch. Sch. Manchester School of Economic and Social Studies=Manchester Sch. Econ. Soc. Stud. Manchester School of Economic and Social Studies = Manch Sch Econ Soc Manchester School of Economic and Social Studies = Manch. Sch. Econ. Soc. Manchuria Under Japanese Dominion = Encounters Asia Manchuria Under Japanese Dominion = Encounters. Asia. Manfred Fuhrmann Als Vermittler Der Antike: Ein Beitrag Zu Theorie Und Praxis Des Ubersetzens = Transform Antike Manfred Fuhrmann Als Vermittler Der Antike: Ein Beitrag Zu Theorie Und Praxis Des Ubersetzens = Transform. Antike. Mangrove Dynamics and Management in North Brazil = Ecol Stud-anal Synth Mangrove Dynamics and Management in North Brazil = Ecol. Stud-anal. Synth. Man in India = Man India Man in The Ice = Man In Ice Man in The Ice = Man In. Ice Manipulating Pig Production Viii, Proceedings = Apsa Conf P Manipulating Pig Production Viii, Proceedings = Apsa. Conf. P. Manipulating Pig Production Vii, Proceedings = Apsa Conf P Manipulating Pig Production Vii, Proceedings = Apsa. Conf. P. Manipulating Quantum Coherence in Solid State Systems = Nato Sci Ser Ii-math Manipulating Quantum Coherence in Solid State Systems = Nato. Sci. Ser. Ii-math. Manipulating Quantum Coherence in Solid State Systems = Nato Sci Ser Ii Math Manipulating Quantum Coherence in Solid State Systems = Nato. Sci. Ser. Ii. Math. Manipulation and Analysis of Biomolecules, Cells and Tissues = P Soc Photo-opt Ins Manipulation and Analysis of Biomolecules, Cells and Tissues = P. Soc. Photo-opt. Ins. Manipulation and Control of Jets in Crossflow = Cism Cour L Manipulation and Control of Jets in Crossflow = Cism. Cour. L. Manipulation of Canopy Structure in Arable Crops = Brit Soc Pl Manipulation of Canopy Structure in Arable Crops = Brit. Soc. Pl. Manis Valuations and Prufer Extensions I = Lect Notes Math Manis Valuations and Prufer Extensions I = Lect. Notes. Math. Manitoba history = Man Hist Manitoba law journal = Manit Law J Manitoba medical review = Manit Med Rev Manitoba Medical Review = Manit. Med. Rev. Mankind = Mankind Mankind Quarterly = Mankind Quart Mankind Quarterly = Mankind Quart. Manlichiu Wip, Wiplich Man = Beih Zeit Deut Phil Manlichiu Wip, Wiplich Man = Beih. Zeit. Deut. Phil. Man-machine Interactions = Adv Intell Soft Comp Man-machine Interactions = Adv. Intell. Soft. Comp. Man-machine Interactions = Adv Intel Soft Compu Man-machine Interactions = Adv. Intel. Soft. Compu. Manmade Marvels in Medieval Culture and Literature = New Middle Ages Manmade Marvels in Medieval Culture and Literature = New. Middle. Ages. Man-Made Textiles in India = Man-Made Text. India Man = Man Man, Meaning, and Mystery: 100 Years of History of Religions in Norway = St Hist Rel Man, Meaning, and Mystery: 100 Years of History of Religions in Norway = St. Hist. Rel. Mans Future in Arctic Areas = U Lap A C P Mans Future in Arctic Areas = U. Lap. A. C. P. Manshurat Majallat dirasat al-Khalij wa-al-Jazirah al-'Arabiyah / Jami'at al-Kuwayt = Manshur Atmajallat Dirasat Alkhalij Waal Jazirah Alarabiyah Man's Influence On Freshwater Ecosystems and Water Use = Iahs-aish P Man's Influence On Freshwater Ecosystems and Water Use = Iahs-aish. P. Mansoura Journal of Chemistry = Mansoura J. Chem. Mans Self-interpretation-in-existence = Anal Hus Yb Mans Self-interpretation-in-existence = Anal. Hus. Yb. Mantle and Lower Crust Exposed in Oceanic Ridges and in Ophiolites = Petr Stru G Mantle and Lower Crust Exposed in Oceanic Ridges and in Ophiolites = Petr. Stru. G. Mantle Dynamics and Plate Interactions in East Asia = Geodynamics Mantle Dynamics and Plate Interactions in East Asia = Geodynamics. Mantle Flow and Melt Generation At Mid-ocean Ridges = Geoph Monog Series Mantle Flow and Melt Generation At Mid-ocean Ridges = Geoph. Monog. Series. Mantle Plumes: Their Identification Through Time = Geol S Am S Mantle Plumes: Their Identification Through Time = Geol. S. Am. S. Mantle Plumes: Their Identification Through Time = Geol Soc Am Spec Pap Mantle Plumes: Their Identification Through Time = Geol. Soc. Am. Spec. Pap. Mantua and Ancient Egypt = Accad Naz Virg Sci M Mantua and Ancient Egypt = Accad. Naz. Virg. Sci. M. Manual therapy = Man Ther Manual Therapy = Manual Ther Manual Therapy = Manual Ther. Manufacturing and Service Enterprise With Risks: A Stochastic Management Approach = Int Ser Oper Res Man Manufacturing and Service Enterprise With Risks: A Stochastic Management Approach = Int. Ser. Oper. Res. Man. Manufacturing Automation Technology Development = Key Eng Mater Manufacturing Automation Technology Development = Key. Eng. Mater. Manufacturing Automation Technology = Key Eng Mat Manufacturing Automation Technology = Key. Eng. Mat. Manufacturing Challenge in Aerospace = Imeche Sem Manufacturing Challenge in Aerospace = Imeche. Sem. Manufacturing chemist and aerosol news = Manuf Chem Aerosol News Manufacturing Chemist and Aerosol News = Manuf Chemist Aer N Manufacturing Chemist and Aerosol News = Manuf. Chemist Aer. N. Manufacturing Chemist = Manuf. Chem. Manufacturing Chemist = Manuf Chemist Manufacturing Chemist = Manuf. Chemist Manufacturing Confectioner = Manuf Confect Manufacturing Confectioner = Manuf. Confect. Manufacturing Engineering and Automation I, Pts 1-3 = Adv Mater Res-switz Manufacturing Engineering and Automation I, Pts 1-3 = Adv. Mater. Res-switz. Manufacturing Engineering and Materials Handling, 2005 Pts A and B = Manuf Eng Div Asme Manufacturing Engineering and Materials Handling, 2005 Pts A and B = Manuf. Eng. Div. Asme. Manufacturing Engineering and Materials Processing = Manuf Eng Mater Proc Manufacturing Engineering and Materials Processing = Manuf. Eng. Mater. Proc. Manufacturing Engineering and Materials Processing = Manuf. Eng. Mater. Process. Manufacturing Engineering Division of The American Society of Mechanical Engineers = Manuf Eng Div Asme Manufacturing Engineering Division of The American Society of Mechanical Engineers = Manuf. Eng. Div. Asme. Manufacturing Engineering & Management = Manuf Eng Manage Manufacturing Engineering & Management = Manuf. Eng. Manage. Manufacturing Engineering = Manuf Eng Manufacturing Engineering = Manuf. Eng. Manufacturing Human Bombs: The Making of Palestinian Suicide Bombers = Perspect Ser Manufacturing Human Bombs: The Making of Palestinian Suicide Bombers = Perspect. Ser. Manufacturing in The Era of Concurrent Engineering = Ifip Trans B Manufacturing in The Era of Concurrent Engineering = Ifip. Trans. B. Manufacturing in The New Urban Economy = Reg Cities Manufacturing in The New Urban Economy = Reg. Cities. Manufacturing Leds for Lighting and Displays = P Soc Photo-opt Ins Manufacturing Leds for Lighting and Displays = P. Soc. Photo-opt. Ins. Manufacturing, Modeling, Management and Control, Proceedings = Ifac Symp Series Manufacturing, Modeling, Management and Control, Proceedings = Ifac. Symp. Series. Manufacturing, Modelling, Management and Control 2001 (mim 2001) = Ifac Work S Manufacturing, Modelling, Management and Control 2001 (mim 2001) = Ifac. Work. S. Manufacturing of Electronic Materials and Components = Ceram Trans Manufacturing of Electronic Materials and Components = Ceram. Trans. Manufacturing Process Control for Microelectronic Devices and Circuits = P Soc Photo-opt Ins Manufacturing Process Control for Microelectronic Devices and Circuits = P. Soc. Photo-opt. Ins. Manufacturing Processes 1: Cutting = Rwthedition Manufacturing Processes 1: Cutting = Rwthedition. Manufacturing Processes 2: Grinding, Honing, Lapping = Rwthedition Manufacturing Processes 2: Grinding, Honing, Lapping = Rwthedition. Manufacturing Processes and Systems, Pts 1-2 = Adv Mater Res-switz Manufacturing Processes and Systems, Pts 1-2 = Adv. Mater. Res-switz. Manufacturing Process Technology, Pts 1-5 = Adv Mater Res-switz Manufacturing Process Technology, Pts 1-5 = Adv. Mater. Res-switz. Manufacturing Research and Technology = Manuf Res Technol Manufacturing Research and Technology = Manuf. Res. Technol. Manufacturing Science and Engineering, Pts 1-5 = Adv Mater Res-switz Manufacturing Science and Engineering, Pts 1-5 = Adv. Mater. Res-switz. Manufacturing Science and Engineering, Pts 1-5 = Adv Mat Res Manufacturing Science and Engineering, Pts 1-5 = Adv. Mat. Res. Manure: Management, Uses and Environmental Impacts = Agr Issues Policies Manure: Management, Uses and Environmental Impacts = Agr. Issues. Policies. Manuscripta Geodaetica = Manuscr Geodaet Manuscripta Geodaetica = Manuscr. Geodaet. Manuscripta = Manuscripta Manuscripta Mathematica = Manuscripta Math. Manuscripta Mathematica = Manuscripta Math Manuscripta Mathematica = Manuscripta Math. Manuscripts in Transition: Recycling Manuscripts, Texts and Images = Corpus Illuminat Ms Manuscripts in Transition: Recycling Manuscripts, Texts and Images = Corpus. Illuminat. Ms. Manuscripts (New York, N.Y.) = Manuscripts (N Y) Manushi = Manushi Many and The One: Religious and Secular Perspectives On Ethical Pluralism in The Modern World = Ethikon Ser Comp Many and The One: Religious and Secular Perspectives On Ethical Pluralism in The Modern World = Ethikon. Ser. Comp. Many-body Boson Systems: Half A Century Later = Theor Math Phys Ser Many-body Boson Systems: Half A Century Later = Theor. Math. Phys. Ser. Many-body Physics in Condensed Matter Systems = Appunti Sc Norm Supe Many-body Physics in Condensed Matter Systems = Appunti. Sc. Norm. Supe. Many Canons of Tibetan Buddhism = Brills Tibet Stu Lib Many Canons of Tibetan Buddhism = Brills. Tibet. Stu. Lib. Many Deaths of Tsar Nicholas Ii: Relics, Remains and The Romanovs = Routl Stud Hist Russ Many Deaths of Tsar Nicholas Ii: Relics, Remains and The Romanovs = Routl. Stud. Hist. Russ. Many Faces of Depression = Roy S Med S Many Faces of Depression = Roy. S. Med. S. Many Faces of Neutron Stars = Nato Adv Sci I C-mat Many Faces of Neutron Stars = Nato. Adv. Sci. I. C-mat. Many Faces of Panic Disorder = Psych Fen S Many Faces of Panic Disorder = Psych. Fen. S. Many Identities, One Nation: The Revolution and Its Legacy in The Mid-atlantic = Early Am Stud Ser Many Identities, One Nation: The Revolution and Its Legacy in The Mid-atlantic = Early. Am. Stud. Ser. Mapan-journal of Metrology Society of India = Mapan-j Metrol Soc I Mapan-journal of Metrology Society of India = Mapan-j. Metrol. Soc. I. Map Kinase Signaling Protocols, Second Edition = Methods Mol Biol Map Kinase Signaling Protocols, Second Edition = Methods. Mol. Biol. Mapletech = Mapletech Maple Technical Newsletter, The = Maple Tech. Newsl. Mapping American Culture = Am Land Lif Mapping American Culture = Am. Land. Lif. Mapping Decline: St. Louis and The Fate of The American City = Polit Cult Mod Am Mapping Decline: St. Louis and The Fate of The American City = Polit. Cult. Mod. Am. Mapping Ethnography in Early Modern Germany: New Worlds in Print Culture = Hist Text Technol Mapping Ethnography in Early Modern Germany: New Worlds in Print Culture = Hist. Text. Technol. Mapping Hazardous Terrain Using Remote Sensing = Geol Soc Spec Publ Mapping Hazardous Terrain Using Remote Sensing = Geol. Soc. Spec. Publ. Mapping Linguistic Diversity in Multicultural Contexts = Contrib Sociol Lang Mapping Linguistic Diversity in Multicultural Contexts = Contrib. Sociol. Lang. Mapping, Measuring, and Modelling The Universe = Astr Soc P Mapping, Measuring, and Modelling The Universe = Astr. Soc. P. Mapping Mongolia: Situating Mongolia in The World From Geologic Time to The Present = Penn Museum Int Res Mapping Mongolia: Situating Mongolia in The World From Geologic Time to The Present = Penn. Museum. Int. Res. Mapping Nanotechnology Innovations and Knowledge = Integr Ser Inform Sy Mapping Nanotechnology Innovations and Knowledge = Integr. Ser. Inform. Sy. Mapping Sustainability: Knowledge E-networking and The Value Chain = Alliance Glob Sustai Mapping Sustainability: Knowledge E-networking and The Value Chain = Alliance. Glob. Sustai. Mapping Terrorism Research: State of The Art, Gaps and Future Direction = Cass Ser Polit Viole Mapping Terrorism Research: State of The Art, Gaps and Future Direction = Cass. Ser. Polit. Viole. Mapping The Galaxy and Nearby Galaxies = Astrophysics Space Mapping The Galaxy and Nearby Galaxies = Astrophysics. Space. Mapping The Hidden Universe: The Universe Behind The Milky Way - The Universe in Hi, Proceedings = Astr Soc P Mapping The Hidden Universe: The Universe Behind The Milky Way - The Universe in Hi, Proceedings = Astr. Soc. P. Mapping The Higher Education Landscape: Towards A European Classification of Higher Education = High Educ Dynam Mapping The Higher Education Landscape: Towards A European Classification of Higher Education = High. Educ. Dynam. Mapping The Progress of Alzheimer's and Parkinson's Disease = Adv Behav Biol Mapping The Progress of Alzheimer's and Parkinson's Disease = Adv. Behav. Biol. Mapping The Triangle = Aip Conf Proc Mapping The Triangle = Aip. Conf. Proc. Mapping Tomorrow's Resources = Nat Resour Env Iss Mapping Tomorrow's Resources = Nat. Resour. Env. Iss. Maps and Mirrors = Phi Lit Cul Maps and Mirrors = Phi. Lit. Cul. Maps of The Cosmos = Iau Symp Maps of The Cosmos = Iau. Symp. Marburg and Ebola Viruses = Curr Top Microbiol Marburg and Ebola Viruses = Curr. Top. Microbiol. Marburger Beiträge zur antiken Handels-, Wirtschafts- und Sozialgeschichte, vor Jahrgang 2009 Münstersche Beiträge zur antiken Handelsgeschichte = MBAH Marburger geographische Schriften = Marbg Geogr Schr Marburger Schriften zur Medizingeschichte = Marbg Schrift Medgesch Marburger Winckelmann-Programm = MarbWPr Marcel Bataillon: Hispanisme Et Engagement = Hesperides Marcel Bataillon: Hispanisme Et Engagement = Hesperides. Marcellia = Marcellia Marcello Malpighi Symposia Series = Marc Malpig Symp Ser Marcello Malpighi Symposia Series = Marc. Malpig. Symp. Ser. Marcel Proust Aujourd Hui = Marcel Proust Aujour Marcel Proust Aujourd Hui = Marcel Proust Aujour. Marcel Proust Aujourd'hui, No 7 = Marcel Proust Aujour Marcel Proust Aujourd'hui, No 7 = Marcel Proust Aujour. Marconi Review = Marconi Rev Marconi Review = Marconi Rev. Marek's Disease = Curr Top Microbiol Marek's Disease = Curr. Top. Microbiol. Marga = Marga Marginalia dermatologica = Marginalia Dermatol Marginalised Mothers: Exploring Working Class Experiences of Parenting = Relatsh Resour Marginalised Mothers: Exploring Working Class Experiences of Parenting = Relatsh. Resour. Marginality, Power, and Social Structure: Issues in Race, Class, and Gender Analysis = Res Race Ethn Relat Marginality, Power, and Social Structure: Issues in Race, Class, and Gender Analysis = Res. Race. Ethn. Relat. Marginalization in Urban China: Comparative Perspectives = Int Polit Econ Ser Marginalization in Urban China: Comparative Perspectives = Int. Polit. Econ. Ser. Marginalized Literacies: Critical Literacy in The Language Arts Classroom = Contemp Res Educ Marginalized Literacies: Critical Literacy in The Language Arts Classroom = Contemp. Res. Educ. Marginal Models: for Dependent, Clustered, and Longitudinal Categorical Data = Stat Soc Behav Sc Marginal Models: for Dependent, Clustered, and Longitudinal Categorical Data = Stat. Soc. Behav. Sc. Marginal Productivity Theory of Distribution: A Critical History = Routl Adv Heterod Ec Marginal Productivity Theory of Distribution: A Critical History = Routl. Adv. Heterod. Ec. Margin=Margin Margin = Margin Margins (Baltimore, Md.) = Margins (Baltim) Margins Theoretical and Experimental Earth Science Series = Marg Theor Exp Earth Margins Theoretical and Experimental Earth Science Series = Marg. Theor. Exp. Earth MARHIA = MARHIA Mariani Foundation Paediatric Neurology Series = Mariani F P Mariani Foundation Paediatric Neurology Series = Mariani F. P. Mari. Annales de recherches interdisciplinaires = Mari Marianne Moore Newsletter = Marianne Moore Newsl Marianne Moore Newsletter = Marianne Moore Newsl. Marian Studies = Marian St Marian Studies = Marian St. Marian Studies, Vol 40 = Marian St Marian Studies, Vol 40 = Marian St. Marian Studies, Vol 41 = Marian St Marian Studies, Vol 41 = Marian St. Marian Studies, Vol 42 = Marian St Marian Studies, Vol 42 = Marian St. Marienerscheinung in Zeiten Der Diktatur = Relig Vers Vorarbeit Marienerscheinung in Zeiten Der Diktatur = Relig. Vers. Vorarbeit. Marine and Freshwater Behaviour and Physiology = Mar Freshw Behav Phy Marine and Freshwater Behaviour and Physiology = Mar. Freshw. Behav. Phy. Marine and Freshwater Research = Mar Freshwater Res Marine and Freshwater Research = Mar. Freshwater Res. Marine and Maritime = Marine Maritime Marine and Petroleum Geology = Mar. Pet. Geol. Marine and Petroleum Geology = Mar Petrol Geol Marine and Petroleum Geology = Mar. Petrol. Geol. Marine behaviour and physiology = Mar Behav Physiol Marine Behaviour and Physiology = Mar Behav Physiol Marine Behaviour and Physiology = Mar. Behav. Physiol. Marine Biodiversity = Mar. Biodivers. Marine Biogeochemistry = Oceanis S D Marine Biogeochemistry = Oceanis. S. D. Marine Biology Letters = Mar Biol Lett Marine Biology Letters = Mar. Biol. Lett. Marine Biology = Mar Biol Marine Biology = Mar. Biol. Marine Biology Research = Mar Biol Res Marine Biology Research = Mar. Biol. Res. Marine Biotechnology I = Adv Biochem Eng Biot Marine Biotechnology I = Adv. Biochem. Eng. Biot. Marine Biotechnology Ii = Adv Biochem Eng Biot Marine Biotechnology Ii = Adv. Biochem. Eng. Biot. Marine Biotechnology = Mar Biotechnol Marine Biotechnology = Mar. Biotechnol. Marine biotechnology (New York, N.Y.) = Mar Biotechnol (NY) Marine chemistry = Mar Chem Marine Chemistry = Mar Chem Marine Chemistry = Mar. Chem. Marine Chemistry = Water Trans Marine Chemistry = Water. Trans. Marine Climate and Climate Change: Storms, Wind Waves and Storm Surges = S-p B Environ Sci Marine Climate and Climate Change: Storms, Wind Waves and Storm Surges = S-p. B. Environ. Sci. Marine Corrosion in Tropical Environments = Am Soc Test Mater Marine Corrosion in Tropical Environments = Am. Soc. Test. Mater. Marine Debris in Alaska: Coordinating Our Efforts = Uasgcp Rep Marine Debris in Alaska: Coordinating Our Efforts = Uasgcp. Rep. Marine Drugs = Mar Drugs Marine Drugs = Mar. Drugs Marine Ecological Geography: Theory and Experience = Environ Sci Eng Marine Ecological Geography: Theory and Experience = Environ. Sci. Eng. Marine Ecology-an Evolutionary Perspective = Mar Ecol-evol Persp Marine Ecology-an Evolutionary Perspective = Mar. Ecol-evol. Persp. Marine Ecology = Mar. Ecol. Marine ecology progress series = Mar Ecol Prog Ser Marine Ecology-progress Series = Mar Ecol-prog Ser Marine Ecology-progress Series = Mar. Ecol-prog. Ser. Marine Ecology Progress Series = Mar. Ecol. Prog. Ser. Marine Ecology-pubblicazioni Della Stazione Zoologica Di Napoli I = Mar Ecol-p S Z N I Marine Ecology-pubblicazioni Della Stazione Zoologica Di Napoli I = Mar. Ecol-p. S. Z. N. I Marine Ecology-pubblicazioni Della Stazione Zoologica Di Napoli I = Pszni Mar Ecol Marine Ecology-pubblicazioni Della Stazione Zoologica Di Napoli I = Pszni. Mar. Ecol. Marine Ecotoxicology = Oceanis S D Marine Ecotoxicology = Oceanis. S. D. Marine Engineering Log = Mar Eng-log Marine Engineering Log = Mar. Eng-log. Marine Engineering = T Engineer Marine Engineering = T. Engineer. Marine environmental research = Mar Environ Res Marine Environmental Research = Mar Environ Res Marine Environmental Research = Mar. Environ. Res. Marine Environment and Sustainable Development : Law, Policy, and Science = P Law Sea I Marine Environment and Sustainable Development : Law, Policy, and Science = P. Law. Sea. I. Marine Environment Research = Mar. Environ. Res. Marine Eutrophication and Population Dynamics = Olsen Int S Marine Eutrophication and Population Dynamics = Olsen. Int. S. Marine Fisheries Review = Mar Fish Rev Marine Fisheries Review = Mar. Fish. Rev. Marine Foods = Bibl Nutr Diet Marine Foods = Bibl. Nutr. Diet. Marine & Freshwater Research = Mar. Freshwater Res. Marine Genomics = Mar Genom Marine Genomics = Mar. Genom. Marine Genomics = Mar. Geonomics Marine Geodesy = Mar Geod Marine Geodesy = Mar. Geod. Marine geology = Mar Geol Marine Geology = Mar Geol Marine Geology = Mar. Geol. Marine Geophysical Researches = Mar Geophys Res Marine Geophysical Researches = Mar. Geophys. Res. Marine Geophysical Research = Mar Geophys Res Marine Geophysical Research = Mar. Geophys. Res. Marine Georesources and Geotechnology = Mar. Georesour. Geotechnol. Marine Georesources & Geotechnology = Mar Georesour Geotec Marine Georesources & Geotechnology = Mar. Georesour. Geotec. Marine Geotechnology = Mar Geotechnol Marine Geotechnology = Mar. Geotechnol. Marine Hard Bottom Communities: Patterns, Dynamics, Diversity, and Change = Ecol Stud-anal Synth Marine Hard Bottom Communities: Patterns, Dynamics, Diversity, and Change = Ecol. Stud-anal. Synth. Marine Mammal Science = Mar Mammal Sci Marine Mammal Science = Mar. Mammal Sci. Marine Microbial Food Webs = Mar. Microb. Food Webs Marine Micropaleontology = Mar Micropaleontol Marine Micropaleontology = Mar. Micropaleontol. Marine Mining = Mar. Min. Marine Mining = Mar Mining Marine Mining = Mar. Mining Marine Observer = Mar. Obs. Marine Particles : Analysis and Characterization = Geoph Monog Series Marine Particles : Analysis and Characterization = Geoph. Monog. Series. Marine Pelagic Cyanobacteria : Trichodesmium and Other Diazotrophs = Nato Adv Sci I C-mat Marine Pelagic Cyanobacteria : Trichodesmium and Other Diazotrophs = Nato. Adv. Sci. I. C-mat. Marine Policy = Mar Policy Marine Policy = Mar. Policy Marine pollution bulletin = Mar Pollut Bull Marine Pollution Bulletin = Mar Pollut Bull Marine Pollution Bulletin = Mar. Pollut. Bull. Marine Refrigeration = Imare Conf Marine Refrigeration = Imare. Conf. Marine Research and Conservation in The Coral Triangle: The Wakatobi National Park = Environ Sci Eng Tech Marine Research and Conservation in The Coral Triangle: The Wakatobi National Park = Environ. Sci. Eng. Tech. Marine Resource Economics=Marine Resource Econ. Marine Resource Economics = Mar Resour Econ Marine Resource Economics = Mar. Resour. Econ. Marine Resources: Property Rights, Economics and Environment = Int Rev Com Marine Resources: Property Rights, Economics and Environment = Int. Rev. Com. Marine Risk Assessment: A Better Way to Manage Your Business, Conference Proceedings, Pt Ii = Imare Conf Marine Risk Assessment: A Better Way to Manage Your Business, Conference Proceedings, Pt Ii = Imare. Conf. Marine Risk Assessment: A Better Way to Manage Your Business, Conference Proceedings, Pt I = Imare Conf Marine Risk Assessment: A Better Way to Manage Your Business, Conference Proceedings, Pt I = Imare. Conf. Mariners Mirror = Mariners Mirror Mariners Weather Log = Mar. Wea. Log Marine-rundschau = Mar Rundsch Marine Science Communications = Mar Sci Commun Marine Science Communications = Mar. Sci. Commun. Marine Science Information Throughout The World : Sharing The Resources = Iamslic Con Marine Science Information Throughout The World : Sharing The Resources = Iamslic. Con. Marine Science Series = Mar Sci Ser Marine Science Series = Mar. Sci. Ser. Marine Structures = Mar. struct. Marine Structures = Mar Struct Marine Structures = Mar. Struct. Marine Substances With Therapeutic Application = Oceanis S D Marine Substances With Therapeutic Application = Oceanis. S. D. Marine Technology and Sname News = Mar Technol Sname N Marine Technology and Sname News = Mar. Technol. Sname N. Marine Technology Iii = Marine Maritime Marine Technology Iii = Marine Maritime. Marine Technology Iv = Marine Maritime Marine Technology Iv = Marine Maritime. Marine Technology = Mar. Technol. Marine Technology Society Journal = Mar Technol Soc J Marine Technology Society Journal = Mar. Technol. Soc. J. Marine Technology V = Marine Maritime Marine Technology V = Marine Maritime. Marine Toxins = Acs Sym Ser Marine Toxins = Acs. Sym. Ser. Marine Toxins and New Zealand Shellfish = Misc S Rsnz Marine Toxins and New Zealand Shellfish = Misc. S. Rsnz. Marine Transportation and Port Operations = Transport Res Rec Marine Transportation and Port Operations = Transport. Res. Rec. Marisia. Studii şi materiale. Arheologie, istorie, etnografie = Marisia Marital Litigation in The Court of Requests 1542-1642 = Camden Fifth Ser Marital Litigation in The Court of Requests 1542-1642 = Camden. Fifth. Ser. Maritime Archaeology and Social Relations = Springer Ser Underw Maritime Archaeology and Social Relations = Springer. Ser. Underw. Maritime Archaeology: Australian Approaches = Springer Ser Underw Maritime Archaeology: Australian Approaches = Springer. Ser. Underw. Maritime Containerlogistik = Vdi-buch Maritime Containerlogistik = Vdi-buch. Maritime Engineering and Ports = Comp Met Water Res Maritime Engineering and Ports = Comp. Met. Water. Res. Maritime Engineering and Ports Ii = Wat Stud Ser Maritime Engineering and Ports Ii = Wat. Stud. Ser. Maritime Engineering & Ports Iii = Wat Stud Ser Maritime Engineering & Ports Iii = Wat. Stud. Ser. Maritime Heritage = Adv Arc Ser Maritime Heritage = Adv. Arc. Ser. Maritime History As World History = New Perspectives Mar Maritime History As World History = New. Perspectives. Mar. Maritime History, Vol 1: The Age of Discovery = Open Forum Ser Maritime History, Vol 1: The Age of Discovery = Open. Forum. Ser. Maritime History, Vol 2 = Open Forum Ser Maritime History, Vol 2 = Open. Forum. Ser. Maritime Industry, Ocean Engineering and Coastal Resources, Vols 1 and 2 = Proc Monogr Eng Wate Maritime Industry, Ocean Engineering and Coastal Resources, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Maritime Occupational Health = Marit. Occup. Health Maritime Policy and Management=Maritime Pol. Manage. Maritime Policy & Management = Marit Policy Manag Maritime Policy & Management = Marit. Policy Manag. Maritime Research Seminar '99 = Vtt Symp Maritime Research Seminar '99 = Vtt. Symp. Maritime Safety '97 = Vtt Symp Maritime Safety '97 = Vtt. Symp. Maritime Security in Southeast Asia = Routl Secur Asia Ser Maritime Security in Southeast Asia = Routl. Secur. Asia Ser. Maritime Topography and The Medieval Town = Publ Natl Mus Stud Maritime Topography and The Medieval Town = Publ. Natl. Mus. Stud. Markedness and Economy in A Derivational Model of Phonology = Stud Generat Gramm Markedness and Economy in A Derivational Model of Phonology = Stud. Generat. Gramm. Markedness and Language Change: The Romani Sample = Empir Approach Lang Markedness and Language Change: The Romani Sample = Empir. Approach. Lang. Markers of Neuronal Injury and Degeneration = Ann Ny Acad Sci Markers of Neuronal Injury and Degeneration = Ann. Ny. Acad. Sci. Markers : the annual journal of the Association for Gravestone Studies = Markers Market Approach to Comparable Company Valuation = Zew Econ Stud Market Approach to Comparable Company Valuation = Zew. Econ. Stud. Market-based Instruments for Environmental Management = Int Stud Environm Po Market-based Instruments for Environmental Management = Int. Stud. Environm. Po. Market-consistent Actuarial Valuation, Second Edition = Eaa Ser Market-consistent Actuarial Valuation, Second Edition = Eaa. Ser. Market Devices = Sociol Rev Monogr Market Devices = Sociol. Rev. Monogr. Market Discipline in Banking: Theory and Evidence = Res Fin Serv Market Discipline in Banking: Theory and Evidence = Res. Fin. Serv. Marketing and Consumer Psychology Series = Market Consum Psych Marketing and Consumer Psychology Series = Market. Consum. Psych. Marketing and Public Policy Conference Proceedings = Ama Conf P Marketing and Public Policy Conference Proceedings = Ama. Conf. P. Marketing Discourse = Rout Interp Mark Res Marketing Discourse = Rout. Interp. Mark. Res. Marketing health services = Mark Health Serv Marketing Health Services = Mark. Health Serv. Marketing in Developing Countries: Nigerian Advertising in A Global and Technological Economy = Routl Int Bus World Marketing in Developing Countries: Nigerian Advertising in A Global and Technological Economy = Routl. Int. Bus. World. Marketing Intelligent Systems Using Soft Computing: Managerial and Research Applications = Stud Fuzz Soft Comp Marketing Intelligent Systems Using Soft Computing: Managerial and Research Applications = Stud. Fuzz. Soft Comp. Marketing Letters = Market Lett Marketing Letters = Market. Lett. Marketing of Edgar Allan Poe = Stud Am Popul Hist C Marketing of Edgar Allan Poe = Stud. Am. Popul. Hist. C. Marketing Science=Marketing Sci. Marketing Science = Market Sci Marketing Science = Market. Sci. Marketing The Best Deal in Town: Your Library - Where Is Your Purple Owl = Chandos Inf Prof Ser Marketing The Best Deal in Town: Your Library - Where Is Your Purple Owl = Chandos. Inf. Prof. Ser. Marketing The E-business, Second Edition = Routl Ebusiness Marketing The E-business, Second Edition = Routl. Ebusiness. Marketing Theory = Marketing Theor Marketing Theory = Marketing Theor. Marketization and Democracy in China = Rout Stud China Tran Marketization and Democracy in China = Rout. Stud. China Tran. Market Morality and Company Size = Iss Bus Eth Market Morality and Company Size = Iss. Bus. Eth. Marketplace for Industrial Lasers = P Soc Photo-opt Ins Marketplace for Industrial Lasers = P. Soc. Photo-opt. Ins. Market Potential of High Effeciency Chp and Waste Based Ethanol in European Pulp and Paper Industry = Vtt Res Notes Market Potential of High Effeciency Chp and Waste Based Ethanol in European Pulp and Paper Industry = Vtt. Res. Notes. Markets and Compensation for Executives in Europe = Int Bus Manag-ser Markets and Compensation for Executives in Europe = Int. Bus. Manag-ser. Markets, Information and Communication = Found Mark Econ Markets, Information and Communication = Found. Mark. Econ. Markets in Higher Education: Rhetoric Or Reality? = High Edu Dyn Markets in Higher Education: Rhetoric Or Reality? = High. Edu. Dyn. Markets With Transaction Costs: Mathematical Theory = Springer Financ Markets With Transaction Costs: Mathematical Theory = Springer. Financ. Markham Review = Markham Rev Markham Review = Markham Rev. Markov Chains: Models, Algorithms and Applications = Int Ser Oper Res Man Markov Chains: Models, Algorithms and Applications = Int. Ser. Oper. Res. Man. Markov Decision Processes With Applications to Finance = Universitext Markov Decision Processes With Applications to Finance = Universitext. Markov Decision Processes With Their Applications = Adv Mech Math Markov Decision Processes With Their Applications = Adv. Mech. Math. Markovian Demand Inventory Models = Int Ser Oper Res Man Markovian Demand Inventory Models = Int. Ser. Oper. Res. Man. Markov Process and Control Theory = Math Res Markov Process and Control Theory = Math. Res. Markov Processes and Related Fields = Markov Process. Related Fields Markov Processes From K. Ito's Perspective = Ann Math Stud Markov Processes From K. Ito's Perspective = Ann. Math. Stud. Mark Twain Journal = Mark Twain J Mark Twain Journal = Mark Twain J. Marmara Univ Publication = Marmara U P Marmara Univ Publication = Marmara U. P. Maroc medical = Maroc Med Maroc Medical = Maroc Med. Marquesan: A Grammar of Space = Trends Linguist-stud Marquesan: A Grammar of Space = Trends. Linguist-stud. Marquette Business Review=Marquette Bus. Rev. Marquette law review = Marquette Law Rev Marquette medical review = Marquette Med Rev Marquette Studies in Theology = Marq Stud Theol Marquette Studies in Theology = Marq. Stud. Theol. Marriage and family living = Marriage Fam Living Marriage and Family Living = Marriage Fam Living Marriage and Family Living = Marriage Fam. Living Marriage and family newsletter = Marriage Fam Newsl Marriage and Family Review = Marriage Fam Rev Marriage and Family Review = Marriage Fam. Rev. Marriage & family review = Marriage Fam Rev Marriage in Contemporary Japan = Routl Contemp Jpn Se Marriage in Contemporary Japan = Routl. Contemp. Jpn. Se. Marriage = Marriage Marriage: Roles, Stability and Conflict = Fam Iss 21st Century Marriage: Roles, Stability and Conflict = Fam. Iss. 21st. Century. Marriage, Sex, and Civic Culture in Late Medieval London = Middle Ages Ser Marriage, Sex, and Civic Culture in Late Medieval London = Middle. Ages. Ser. Marseille chirurgical = Mars Chir Marseille Chirurgical = Mars. Chir. Marseille medical = Mars Med Marseille Medical = Mars. Med. Mars Express: The Scientific Investigations = Esa Spec Publ Mars Express: The Scientific Investigations = Esa. Spec. Publ. Marsh Management in Coastal Louisiana : Effects and Issues = Usdi Fish W Marsh Management in Coastal Louisiana : Effects and Issues = Usdi. Fish. W. Mars International Reference Atmosphere, Living With A Star and Fundamental Physics = Adv Space Res Mars International Reference Atmosphere, Living With A Star and Fundamental Physics = Adv. Space. Res. Mars International Reference Atmosphere, Living With A Star and Fundamental Physics = Adv Space Res-series Mars International Reference Atmosphere, Living With A Star and Fundamental Physics = Adv. Space. Res-series. Marstruct Book Series = Marstruct Bk Series Marstruct Book Series = Marstruct Bk. Series Marsyas. Studies in the History of Art = Marsyas Martian Expedition Planning = Sci Tech Martian Expedition Planning = Sci. Tech. Martian Outpost: The Challenges of Establishing A Human Settlement On Mars = S-p B Space Explor Martian Outpost: The Challenges of Establishing A Human Settlement On Mars = S-p. B. Space. Explor. Martin Classical Lectures = Martin Class Lect Martin Classical Lectures = Martin Class. Lect. Martin Opitz: Lateinische Werke Bd 1, 1614-1624 = Ausg Deut Lit 15 18 Martin Opitz: Lateinische Werke Bd 1, 1614-1624 = Ausg. Deut. Lit. 15. 18. Martin Opitz: Le Livre De La Poesie Allemande = Interlangues Martin Opitz: Le Livre De La Poesie Allemande = Interlangues. Martin Walser : International Perspectives = Am U St Ger Martin Walser : International Perspectives = Am. U. St. Ger. Marx and Lenin, Freud and Lacan = S Decouv Fr Marx and Lenin, Freud and Lacan = S. Decouv. Fr. Marx Avec Hegel = Philos Toulouse Marx Avec Hegel = Philos. Toulouse. Marxism and Education = Marx Educ Marxism and Education = Marx. Educ. Marxism and The Chinese Experience = Pol Econ S Marxism and The Chinese Experience = Pol. Econ. S. Marxism in The Postmodern Age = Crit Pers G Marxism in The Postmodern Age = Crit. Pers. G. Marxism & Scientific Socialism: From Engels to Althusser = Routl Stud Soc Polit Marxism & Scientific Socialism: From Engels to Althusser = Routl. Stud. Soc. Polit. Marxist Approaches in Economic Anthropology = Mg Econ Ant Marxist Approaches in Economic Anthropology = Mg. Econ. Ant. Marxist perspectives = Marx Perspect Maryland Agricultural Experiment Station Bulletin = Maryland Aes Bull Maryland Agricultural Experiment Station Bulletin = Maryland Aes. Bull. Maryland Agricultural Experiment Station Miscellaneous Publication = Maryland Aes Misc Pu Maryland Agricultural Experiment Station Miscellaneous Publication = Maryland Aes. Misc. Pu. Maryland Cooperative Extension Service Bulletin = Maryland Ces Bull Maryland Cooperative Extension Service Bulletin = Maryland Ces. Bull. Maryland Genealogical Society bulletin = Md Geneal Soc Bull Maryland Historian = Maryland Historian Maryland historical magazine = Md Hist Mag Maryland journal of contemporary legal issues = Md J Contemp Leg Issues Maryland journal of international law and trade = Md J Int Law Trade Maryland law forum = Md Law Forum Maryland law review (Baltimore, Md. : 1936) = MD Law Rev Maryland medical journal (Baltimore, Md. : 1985) = Md Med J Maryland Medical Journal=Md Med J;; Maryland Medical Journal = Md. Med. J. Maryland Medicine = Md. Med. Maryland medicine : MM : a publication of MEDCHI, the Maryland State Medical Society = Md Med Maryland Nurse = Md. Nurse Maryland nursing news = Md Nurs News Maryland Nursing News = Md. Nurs. News Maryland State Medical Journal = Maryland State Med J Maryland State Medical Journal = Maryland State Med. J. Maryland state medical journal = Md State Med J Maryland State Medical Journal = Md. State Med. J. Mary Queen of Scots = Routledge Hist Biogr Mary Queen of Scots = Routledge. Hist. Biogr. Mary Wollstonecraft: A Literary Life = Lit Lives Mary Wollstonecraft: A Literary Life = Lit. Lives. MASA Review=MASA Rev;; MASA Review = MASA Rev. Masca Journal. Museum Applied Science Center for Archaeology, University of Pennsylvania = MascaJ Masca Research Papers in Science and Archaeology = MascaP Maschinenakustik 2008: Wettbewerbsvorteil Durch Gerauscharme Produkte = Vdi Bericht Maschinenakustik 2008: Wettbewerbsvorteil Durch Gerauscharme Produkte = Vdi. Bericht. Maschinenbau Technik = Maschinenbau Tech Maschinenbau Technik = Maschinenbau Tech. Maschinenbautechnik = Maschinenbautechnik Mascots '93 = Simul Series Mascots '93 = Simul. Series. Maske Und Kothurn = Maske Kothurn Mask Technology for Microelectronic Components = Vdi Bericht Mask Technology for Microelectronic Components = Vdi. Bericht. Masonry = Am Soc Test Mater Masonry = Am. Soc. Test. Mater. Masonry : Design and Construction, Problems and Repair = Am Soc Test Mater Masonry : Design and Construction, Problems and Repair = Am. Soc. Test. Mater. Masonry : Esthetics, Engineering, and Economy = Am Soc Test Mater Masonry : Esthetics, Engineering, and Economy = Am. Soc. Test. Mater. Masonry: Materials, Testing, and Applications = Am Soc Test Mater Masonry: Materials, Testing, and Applications = Am. Soc. Test. Mater. Masonry: Opportunities for The 21st Century = Am Soc Test Mater Masonry: Opportunities for The 21st Century = Am. Soc. Test. Mater. Masquerade, Crime and Fiction: Criminal Deceptions = Crime Files Ser Masquerade, Crime and Fiction: Criminal Deceptions = Crime Files. Ser. Massachusetts Agricultural Experiment Station Bulletin = Mass Agr Exp St Bull Massachusetts Agricultural Experiment Station Bulletin = Mass. Agr. Exp. St. Bull. Massachusetts Agricultural Experiment Station Research Bulletin = Mass Agr Exp St Re B Massachusetts Agricultural Experiment Station Research Bulletin = Mass. Agr. Exp. St. Re. B. Massachusetts general laws annotated : under arrangement of the official General laws of Massachusetts. Massachusetts = Mass Gen Laws Annot Mass Massachusetts Historical Society Studies in American History and Culture = Mass Hist Soc Stud Massachusetts Historical Society Studies in American History and Culture = Mass. Hist. Soc. Stud. Massachusetts journal of mental health = Mass Journal Ment Health Massachusetts law review = Mass Law Rev Massachusetts Nurse = Mass. Nurse Massachusetts Physician = Mass Phys Massachusetts Physician = Mass. Phys. Massachusetts physician = Mass Physician Massachusetts reports : cases argued and determined in the Supreme Judicial Court of Massachusetts. Massachusetts. Supreme Judicial Court = Mass Rep Mass Supreme Judic Court Massachusetts Review = Mass Rev Massachusetts Review = Mass. Rev. Massachusetts Studies in English = Mass Stud Engl Massachusetts Studies in English = Mass. Stud. Engl. Mass Communication and Political Information Processing = Communic Mass Communication and Political Information Processing = Communic. Mass Communication and Society = Mass Commun Soc Mass Communication and Society = Mass Commun. Soc. Mass Customization: An Exploration of European Characteristics = Springerbrief Bus Mass Customization: An Exploration of European Characteristics = Springerbrief. Bus. Mass Customization: Challenges and Solutions = Int Ser Oper Res Man Mass Customization: Challenges and Solutions = Int. Ser. Oper. Res. Man. Mass Ejection From Active Galactic Nuclei = Astr Soc P Mass Ejection From Active Galactic Nuclei = Astr. Soc. P. Mass Emergencies = Mass Emergencies Masses of Fundamental Particles = Nato Adv Sci I B-phy Masses of Fundamental Particles = Nato. Adv. Sci. I. B-phy. Massive Computing = Massive Comp Massive Computing = Massive Comp. Massively Multi-agent Systems I = Lect Notes Artif Int Massively Multi-agent Systems I = Lect. Notes. Artif. Int. Massively Multi-agent Technology = Lect Notes Artif Int Massively Multi-agent Technology = Lect. Notes. Artif. Int. Massive Neutrinos Tests of Fundamental Symmetries = Moriond Wor Massive Neutrinos Tests of Fundamental Symmetries = Moriond. Wor. Massive Stars: Fundamental Parameters and Circumstellar Interactions = Rev Mex Ast Astr Massive Stars: Fundamental Parameters and Circumstellar Interactions = Rev. Mex. Ast. Astr. Massive Stars in Interacting Binaries = Astr Soc P Massive Stars in Interacting Binaries = Astr. Soc. P. Massive Stars : Their Lives in The Interstellar Medium = Astr Soc P Massive Stars : Their Lives in The Interstellar Medium = Astr. Soc. P. Massive Stellar Clusters = Astr Soc P Massive Stellar Clusters = Astr. Soc. P. Massive Wdm and Tdm Soliton Transmission Systems = Sol Sci Technol Lib Massive Wdm and Tdm Soliton Transmission Systems = Sol. Sci. Technol. Lib. Mass-losing Pulsating Stars and Their Circumstellar Matter: Observations and Theory = Astrophys Space Sc L Mass-losing Pulsating Stars and Their Circumstellar Matter: Observations and Theory = Astrophys. Space. Sc. L. Mass Media and Drug Prevention: Classic and Contemporary Theories and Research = Clar Symp Mass Media and Drug Prevention: Classic and Contemporary Theories and Research = Clar. Symp. Mass Media and Latino Politics: Studies of U.s. Media Content, Campaign Strategies and Survey Research: 1984-2004 = Lea Commun Ser Mass Media and Latino Politics: Studies of U.s. Media Content, Campaign Strategies and Survey Research: 1984-2004 = Lea. Commun. Ser. Mass Media, Culture and Society in Twentieth-century Germany = New Perspect Ger Stu Mass Media, Culture and Society in Twentieth-century Germany = New. Perspect. Ger. Stu. Massmin 2000, Proceedings = Australas I Min Met Massmin 2000, Proceedings = Australas. I. Min. Met. M.a.s.s. - Model Atmospheres and Spectrum Synthesis, 5th Vienna - Workshop = Astr Soc P M.a.s.s. - Model Atmospheres and Spectrum Synthesis, 5th Vienna - Workshop = Astr. Soc. P. Mass of Galaxies At Low and High Redshift = Eso Astrophy Symp Mass of Galaxies At Low and High Redshift = Eso. Astrophy. Symp. Mass Outflow in Active Galactic Nuclei: New Perspectives = Astr Soc P Mass Outflow in Active Galactic Nuclei: New Perspectives = Astr. Soc. P. Mass Profiles and Shapes of Cosmological Structures = Eas Publications Mass Profiles and Shapes of Cosmological Structures = Eas. Publications. Mass Rearing of Juvenile Fish = Ices Mar Sc Mass Rearing of Juvenile Fish = Ices. Mar. Sc. Mass Spectrometry and Nutrition Research = Rsc Food Anal Monogr Mass Spectrometry and Nutrition Research = Rsc. Food. Anal. Monogr. Mass Spectrometry for The Characterization of Microorganisms = Acs Sym Ser Mass Spectrometry for The Characterization of Microorganisms = Acs. Sym. Ser. Mass Spectrometry Imaging: Principles and Protocols = Methods Mol Biol Mass Spectrometry Imaging: Principles and Protocols = Methods. Mol. Biol. Mass Spectrometry in Biomolecular Sciences = Nato Adv Sci Inst Se Mass Spectrometry in Biomolecular Sciences = Nato. Adv. Sci. Inst. Se. Mass Spectrometry in Food Safety: Methods and Protocols = Methods Mol Biol Mass Spectrometry in Food Safety: Methods and Protocols = Methods Mol. Biol. Mass Spectrometry in The Biological Sciences : A Tutorial = Nato Adv Sci I C-mat Mass Spectrometry in The Biological Sciences : A Tutorial = Nato. Adv. Sci. I. C-mat. Mass Spectrometry: Modified Proteins and Glycoconjugates = Method Enzymol Mass Spectrometry: Modified Proteins and Glycoconjugates = Method. Enzymol. Mass spectrometry reviews = Mass Spectrom Rev Mass Spectrometry Reviews=Mass Spectrom Rev;; Mass Spectrometry Reviews = Mass Spectrom Rev Mass Spectrometry Reviews = Mass Spectrom. Rev. Mass Transit = Mass Transit Mass Vaccination: Global Aspects - Progress and Obstacles = Curr Top Microbiol Mass Vaccination: Global Aspects - Progress and Obstacles = Curr. Top. Microbiol. Mast Cell Biology: Contemporary and Emerging Topics = Adv Exp Med Biol Mast Cell Biology: Contemporary and Emerging Topics = Adv. Exp. Med. Biol. Master Drawings = Master Drawings Mastering Hidden Costs and Socio-economic Performance = Res Manag Consult Mastering Hidden Costs and Socio-economic Performance = Res. Manag. Consult. Mastering The Growth of Scientific and Technological Information = Eirma Conf Mastering The Growth of Scientific and Technological Information = Eirma. Conf. Master Lecture Series = Master Lect Master Lecture Series = Master Lect. Master Lectures in Psychology = Mast Lect P Master Lectures in Psychology = Mast. Lect. P. Masters of Modern Physics = Masters Modern Phys. Mastia. Revista del Museo arqueológico municipal de Cartagena = Mastia Mastication Robots: Biological Inspiration to Implementation = Stud Comput Intell Mastication Robots: Biological Inspiration to Implementation = Stud. Comput. Intell. Mastology 88 = Int Congr Ser Mastology 88 = Int. Congr. Ser. Mastology = Int Congr Ser Mastology = Int. Congr. Ser. Masui (Japanese Journal of Anesthesiology) = Masui. Masui. Japanese Journal of Anesthesiology=Masui;; Masui. The Japanese journal of anesthesiology = Masui Maszyny Przepływowe = Masz. Przepływ. Matatu = Matatu Match-communications in Mathematical and in Computer Chemistry = Match-commun Math Co Match-communications in Mathematical and in Computer Chemistry = Match-commun. Math. Co. Matchmaking in Electronic Markets = Lect Notes Artif Int Matchmaking in Electronic Markets = Lect. Notes. Artif. Int. Match = Match Matej Bel University = Acta Univ. Mathaei Belii Nat. Sci. Ser. Ser. Math. Matekon=Matekon Matekon = Matekon Matekon: translations of Russian & East European mathematical economics = Matekon Matematica Aplicada E Computacional = Mat Apl Comput Matematica Aplicada E Computacional = Mat. Apl. Comput. Matemática Contemporânea = Mat. Contemp. Matematicheskaya Fizika, Analiz, Geometriya = Mat. Fiz. Anal. Geom. Matematichki Bilten = Mat. Bilten Matematichki Vesnik = Mat. Vesnik Matematikai Lapok = Mat. Lapok (N.S.) Matematikos ir Informatikos Institutas = Liet. Mat. Rink. Matematisk-fysiske Meddelelser Kongelige Danske Videnskabernes Selskab = Mat Fys Medd Dan Vid Matematisk-fysiske Meddelelser Kongelige Danske Videnskabernes Selskab = Mat. Fys. Medd. Dan. Vid. Matematisk-fysiske Meddelelser = Mat. Medd. Danske Vid. Selsk. Matematisk-fysiske Meddelelser Udgivet Af Det Kongelige Danske Videnskabernes Selskab = Matemat-fysis Meddel Matematisk-fysiske Meddelelser Udgivet Af Det Kongelige Danske Videnskabernes Selskab = Matemat-fysis. Meddel. Matematisk-fysiske Skrifter Udgivet Af Det Kongelige Danske Videnskabernes Selskab = Mat-fys Skr Udg K Da Matematisk-fysiske Skrifter Udgivet Af Det Kongelige Danske Videnskabernes Selskab = Mat-fys. Skr. Udg. K. Da. Material and Devices for Smart Systems Ii = Mater Res Soc Symp P Material and Devices for Smart Systems Ii = Mater. Res. Soc. Symp. P. Material culture = Mater Cult Material, Design, Construction, Maintenance, and Testing of Pavement = Geotech Sp Material, Design, Construction, Maintenance, and Testing of Pavement = Geotech. Sp. Materiale Plastice = Mater Plast Materiale Plastice = Mater. Plast. Materiales De Construccion = Mater Construcc Materiales De Construccion = Mater. Construcc. Materiale şi cercetări arheologice = MatCercA Material Flow Management: Improving Cost Efficiency and Environmental Performance = Sustain Innov Material Flow Management: Improving Cost Efficiency and Environmental Performance = Sustain. Innov. Materialfluss in Logistiksystemen = Vdi-buch Materialfluss in Logistiksystemen = Vdi-buch. Materialflusssysteme = Vdi-buch Materialflusssysteme = Vdi-buch. Material Handling Engineering = Mater Handl Eng Material Handling Engineering = Mater. Handl. Eng. Material history bulletin. Bulletin d'histoire de la culture materielle = Mater Hist Bull Materiali e contributi per la storia della narrativa greco-latina = MCSN Materiali E Discussioni Per L Analisi Dei Testi Classici = Mater Discuss Anal T Materiali E Discussioni Per L Analisi Dei Testi Classici = Mater. Discuss. Anal. T. Materiali e discussioni per l'analisi dei testi classici = MatTestiCl Materiali e discussioni per l'analisi dei testi classici = MD Materialien zur Allgemeinen und Vergleichenden Archäologie = MAVA Materialien zur Bevolkerungswissenschaft / Bundesinstitut fur Bevolkerungswissenschaft = Mater Bevolkwiss Materiali in Tehnologije = Mater Tehnol Materiali in Tehnologije = Mater. Tehnol. Material Inhomogeneities and Their Evolution: A Geometric Approach = Interact Mech Math Material Inhomogeneities and Their Evolution: A Geometric Approach = Interact. Mech. Math. Material Instabilities in Elastic and Plastic Solids = Cism Cour L Material Instabilities in Elastic and Plastic Solids = Cism. Cour. L. Materialitat in Der Editionswissenschaft = Beih Editio Materialitat in Der Editionswissenschaft = Beih. Editio. Materializing Culture = Materializ Cult Materializing Culture = Materializ. Cult. Material Properties Under Intensive Dynamic Loading = Shock Wave High Pres Material Properties Under Intensive Dynamic Loading = Shock. Wave. High. Pres. Materialprufung = Materialprufung Material Religion and Popular Culture = Routl Stud Relig Material Religion and Popular Culture = Routl. Stud. Relig. Material Religion = Mater Relig Material Religion = Mater. Relig. Material Research in Atomic Scale By Mossbauer Spectroscopy = Nato Sci Ser Ii-math Material Research in Atomic Scale By Mossbauer Spectroscopy = Nato. Sci. Ser. Ii-math. Material Research in Atomic Scale By Mossbauer Spectroscopy = Nato Sci Ser Ii Math Material Research in Atomic Scale By Mossbauer Spectroscopy = Nato. Sci. Ser. Ii. Math. Materials and Automotive Engines = Vdi Bericht Materials and Automotive Engines = Vdi. Bericht. Materials and Corrosion = Mater. Corros. Materials and Corrosion-werkstoffe Und Korrosion = Mater Corros Materials and Corrosion-werkstoffe Und Korrosion = Mater. Corros. Materials and Crystallographic Aspects of Ht(c)-superconductivity = Nato Adv Sci Inst Se Materials and Crystallographic Aspects of Ht(c)-superconductivity = Nato. Adv. Sci. Inst. Se. Materials and Design Against Fire = Imeche Sem Materials and Design Against Fire = Imeche. Sem. Materials and Design Against Fire = Proc Inst Mech Eng S Materials and Design Against Fire = Proc. Inst. Mech. Eng. S. Materials and Design = Mater. Des. Materials and Device Characterization in Micromachining Iii = Proc Spie Materials and Device Characterization in Micromachining Iii = Proc. Spie. Materials and Device Characterization in Micromachining Iii = P Soc Photo-opt Ins Materials and Device Characterization in Micromachining Iii = P. Soc. Photo-opt. Ins. Materials and Device Characterization in Micromachining Ii = P Soc Photo-opt Ins Materials and Device Characterization in Micromachining Ii = P. Soc. Photo-opt. Ins. Materials and Device Characterization in Micromachining = P Soc Photo-opt Ins Materials and Device Characterization in Micromachining = P. Soc. Photo-opt. Ins. Materials and Devices for Laser Remote Sensing and Optical Communication = Mater Res Soc Symp P Materials and Devices for Laser Remote Sensing and Optical Communication = Mater. Res. Soc. Symp. P. Materials and Devices for Optoelectronics and Microphotonics = Mater Res Soc Symp P Materials and Devices for Optoelectronics and Microphotonics = Mater. Res. Soc. Symp. P. Materials and Devices for Photonic Circuits Ii = Proc Spie Materials and Devices for Photonic Circuits Ii = Proc. Spie. Materials and Devices for Photonic Circuits Ii = P Soc Photo-opt Ins Materials and Devices for Photonic Circuits Ii = P. Soc. Photo-opt. Ins. Materials and Devices for Photonic Circuits = P Soc Photo-opt Ins Materials and Devices for Photonic Circuits = P. Soc. Photo-opt. Ins. Materials and Devices for Silicon-based Optoelectronics = Mater Res Soc Symp P Materials and Devices for Silicon-based Optoelectronics = Mater. Res. Soc. Symp. P. Materials and Devices for Smart Systems Iii = Mater Res Soc Symp P Materials and Devices for Smart Systems Iii = Mater. Res. Soc. Symp. P. Materials and Devices for Smart Systems = Mater Res Soc Symp P Materials and Devices for Smart Systems = Mater. Res. Soc. Symp. P. Materials and Devices for Thermal-to-electric Energy Conversion = Mater Res Soc Symp P Materials and Devices for Thermal-to-electric Energy Conversion = Mater. Res. Soc. Symp. P. Materials and Electronics for High-speed and Infrared Detectors = Proc Spie Materials and Electronics for High-speed and Infrared Detectors = Proc. Spie. Materials and Electronics for High-speed and Infrared Detectors = P Soc Photo-opt Ins Materials and Electronics for High-speed and Infrared Detectors = P. Soc. Photo-opt. Ins. Materials and Fluids Under Low Gravity = Lect Notes Phys Materials and Fluids Under Low Gravity = Lect. Notes. Phys. Materials and Manufacturing Processes = Mater Manuf Process Materials and Manufacturing Processes = Mater. Manuf. Process. Materials and Manufacturing Processes = Mater. Manuf. Processes Materials and Manufacturing Technology = Mater Manuf Technol Materials and Manufacturing Technology = Mater. Manuf. Technol. Materials and Manufacturing Technology, Pts 1 and 2 = Adv Mater Res-switz Materials and Manufacturing Technology, Pts 1 and 2 = Adv. Mater. Res-switz. Materials and Organisms = Mater. Org. Materials and Physics for Nonvolatile Memories = Mater Res Soc Symp P Materials and Physics for Nonvolatile Memories = Mater. Res. Soc. Symp. P. Materials and Process Challenges: Aging Systems, Affordability, Alternative Applications, Books 1 and 2 = Sci Adv Mat Materials and Process Challenges: Aging Systems, Affordability, Alternative Applications, Books 1 and 2 = Sci. Adv. Mat. Materials and Processes for Environmental Protection = Mater Res Soc Symp P Materials and Processes for Environmental Protection = Mater. Res. Soc. Symp. P. Materials and Processes for Nonvolatile Memories Ii = Mater Res Soc Symp P Materials and Processes for Nonvolatile Memories Ii = Mater. Res. Soc. Symp. P. Materials and Processes for Nonvolatile Memories = Mater Res Soc Symp P Materials and Processes for Nonvolatile Memories = Mater. Res. Soc. Symp. P. Materials and Product Technologies = Adv Mater Res-switz Materials and Product Technologies = Adv. Mater. Res-switz. Materials and Society = Mater Soc Materials and Society = Mater. Soc. Materials and Strategies for Lab-on-a-chip - Biological Analysis, Cell-material Interfaces and Fluidic Assembly of Nanostructures = Mater Res Soc Symp P Materials and Strategies for Lab-on-a-chip - Biological Analysis, Cell-material Interfaces and Fluidic Assembly of Nanostructures = Mater. Res. Soc. Symp. P. Materials and Structures for Energy Absorption = Imeche Sem Materials and Structures for Energy Absorption = Imeche. Sem. Materials and Structures = Mater Struct Materials and Structures = Mater. Struct. Materials and Technologies = Adv Mater Res-switz Materials and Technologies = Adv. Mater. Res-switz. Materials and Technologies = Adv Mat Res Materials and Technologies = Adv. Mat. Res. Materials and Technologies for 3-d Integration = Mater Res Soc Symp P Materials and Technologies for 3-d Integration = Mater. Res. Soc. Symp. P. Materials and Technologies for Direct Thermal-to-electric Energy Conversion = Mater Res Soc Symp P Materials and Technologies for Direct Thermal-to-electric Energy Conversion = Mater. Res. Soc. Symp. P. Materials and Technology for Hydrogen Economy = Mater Res Soc Symp P Materials and Technology for Hydrogen Economy = Mater. Res. Soc. Symp. P. Materials Aspects of X-ray Lithography = Mater Res Soc Symp P Materials Aspects of X-ray Lithography = Mater. Res. Soc. Symp. P. Materials at High Temperatures = Mater. High Temp. Materials At High Temperatures = Mater High Temp Materials At High Temperatures = Mater. High Temp. Materials Australia = Mater. Aust. Materials Challenge Diversification and The Future, Books 1 and 2 = Sci Adv Mat Materials Challenge Diversification and The Future, Books 1 and 2 = Sci. Adv. Mat. Materials Challenges in Alternative and Renewable Energy = Ceram Trans Materials Challenges in Alternative and Renewable Energy = Ceram. Trans. Materials Characterisation Iv: Computational Methods and Experiments = Wit Trans Eng Sci Materials Characterisation Iv: Computational Methods and Experiments = Wit. Trans. Eng. Sci. Materials Characterization By Dynamic and Modulated Thermal Analytical Techniques = Am Soc Test Mater Materials Characterization By Dynamic and Modulated Thermal Analytical Techniques = Am. Soc. Test. Mater. Materials Characterization By Thermomechanical Analysis = Am Soc Test Mater Materials Characterization By Thermomechanical Analysis = Am. Soc. Test. Mater. Materials Characterization = Mater Charact Materials Characterization = Mater. Charact. Materials Chemistry = Adv Chem Ser Materials Chemistry = Adv. Chem. Ser. Materials Chemistry and Physics = Mater Chem Phys Materials Chemistry and Physics = Mater. Chem. Phys. Materials Chemistry = Mater Chem Materials Chemistry = Mater. Chem. Material Science and Material Properties for Infrared Optoelectronics = P Soc Photo-opt Ins Material Science and Material Properties for Infrared Optoelectronics = P. Soc. Photo-opt. Ins. Materials, Design and Manufacturing for Lightweight Vehicles = Woodhead Publ Mater Materials, Design and Manufacturing for Lightweight Vehicles = Woodhead. Publ. Mater. Materials & design = Mater Des Materials & Design = Mater Design Materials & Design = Mater. Design Materials Development for Direct Write Technologies = Mater Res Soc Symp P Materials Development for Direct Write Technologies = Mater. Res. Soc. Symp. P. Materials, Devices, and Systems for Display and Lighting = Proc Spie Materials, Devices, and Systems for Display and Lighting = Proc. Spie. Materials, Devices, and Systems for Display and Lighting = P Soc Photo-opt Ins Materials, Devices, and Systems for Display and Lighting = P. Soc. Photo-opt. Ins. Materials, Devices, and Systems for Optoelectronic Processing = P Soc Photo-opt Ins Materials, Devices, and Systems for Optoelectronic Processing = P. Soc. Photo-opt. Ins. Materials, Devices, Techniques, and Applications for Z-plane Focal Plane Array Technology Ii = P Soc Photo-opt Ins Materials, Devices, Techniques, and Applications for Z-plane Focal Plane Array Technology Ii = P. Soc. Photo-opt. Ins. Materials Division of The American Society of Mechanial Engineers = Mater Div Asme Materials Division of The American Society of Mechanial Engineers = Mater. Div. Asme. Materials Engineering = Mater Eng Materials Engineering = Mater. Eng. Materials Engineering (Modena, Italy) = Mater. Eng. (Modena, Italy) Materials Engineering Series = Mater Eng Ser Materials Engineering Series = Mater. Eng. Ser. Materials & Equipment and Whitewares = Ceram Eng Sci Proc Materials & Equipment and Whitewares = Ceram. Eng. Sci. Proc. Materials Evaluation = Mater Eval Materials Evaluation = Mater. Eval. Materials-fabrication and Patterning At The Nanoscale = Mater Res Soc Symp P Materials-fabrication and Patterning At The Nanoscale = Mater. Res. Soc. Symp. P. Materials for Electrochemical Energy Conversion and Storage = Ceram Trans Materials for Electrochemical Energy Conversion and Storage = Ceram. Trans. Materials for Electrochemical Energy Storage and Conversion - Batteries, Capacitors and Fuel Cells = Mater Res Soc Symp P Materials for Electrochemical Energy Storage and Conversion - Batteries, Capacitors and Fuel Cells = Mater. Res. Soc. Symp. P. Materials for Electrochemical Energy Storage and Conversion Ii-batteries, Capacitors and Fuel Cells = Mater Res Soc Symp P Materials for Electrochemical Energy Storage and Conversion Ii-batteries, Capacitors and Fuel Cells = Mater. Res. Soc. Symp. P. Materials for Energy Efficiency and Thermal Comfort in Buildings = Woodhead Publ Ser En Materials for Energy Efficiency and Thermal Comfort in Buildings = Woodhead. Publ. Ser. En. Materials for Energy Storage, Generation and Transport = Mater Res Soc Symp P Materials for Energy Storage, Generation and Transport = Mater. Res. Soc. Symp. P. Materials for Environmental Technology = Vdi Bericht Materials for Environmental Technology = Vdi. Bericht. Materials for Fuel Cells = Woodhead Publ Mater Materials for Fuel Cells = Woodhead. Publ. Mater. Materials for Future Fusion and Fission Technologies = Mater Res Soc Symp P Materials for Future Fusion and Fission Technologies = Mater. Res. Soc. Symp. P. Materials for High-temperature Superconductor Technologies = Mater Res Soc Symp P Materials for High-temperature Superconductor Technologies = Mater. Res. Soc. Symp. P. Materials for Hydrogen Storage-2004 = Mater Res Soc Symp P Materials for Hydrogen Storage-2004 = Mater. Res. Soc. Symp. P. Materials for Information Technology: Devices, Interconnects and Packaging = Eng Mater Process Materials for Information Technology: Devices, Interconnects and Packaging = Eng. Mater. Process. Materials for Information Technology: Devices, Interconnects and Packaging = Eng Mat Pro Materials for Information Technology: Devices, Interconnects and Packaging = Eng. Mat. Pro. Materials for Infrared Detectors Iii = P Soc Photo-opt Ins Materials for Infrared Detectors Iii = P. Soc. Photo-opt. Ins. Materials for Infrared Detectors Ii = P Soc Photo-opt Ins Materials for Infrared Detectors Ii = P. Soc. Photo-opt. Ins. Materials for Infrared Detectors = P Soc Photo-opt Ins Materials for Infrared Detectors = P. Soc. Photo-opt. Ins. Materials for Mechanical and Optical Microsystems = Mater Res Soc Symp P Materials for Mechanical and Optical Microsystems = Mater. Res. Soc. Symp. P. Materials for Nanophotonics - Plasmonics, Metamaterials and Light Localization = Mater Res Soc Symp P Materials for Nanophotonics - Plasmonics, Metamaterials and Light Localization = Mater. Res. Soc. Symp. P. Materials for Non-linear and Electro-optics 1989 = Inst Phys Conf Ser Materials for Non-linear and Electro-optics 1989 = Inst. Phys. Conf. Ser. Materials for Nonlinear Optics = Acs Sym Ser Materials for Nonlinear Optics = Acs. Sym. Ser. Materials for Optical Information Processing = Mater Res Soc Symp P Materials for Optical Information Processing = Mater. Res. Soc. Symp. P. Materials for Optical Limiting Ii = Mater Res Soc Symp P Materials for Optical Limiting Ii = Mater. Res. Soc. Symp. P. Materials for Optical Limiting = Mater Res Soc Symp P Materials for Optical Limiting = Mater. Res. Soc. Symp. P. Materials for Photovoltaics = Mater Res Soc Symp P Materials for Photovoltaics = Mater. Res. Soc. Symp. P. Materials for Rigid and Flexible Printed Wiring Boards = Electr Comput Eng Materials for Rigid and Flexible Printed Wiring Boards = Electr. Comput. Eng. Materials for Smart Systems Ii = Mater Res Soc Symp P Materials for Smart Systems Ii = Mater. Res. Soc. Symp. P. Materials for Smart Systems = Mater Res Soc Symp P Materials for Smart Systems = Mater. Res. Soc. Symp. P. Materials for Space Applications = Mater Res Soc Symp P Materials for Space Applications = Mater. Res. Soc. Symp. P. Materials for Tomorrow: Theory, Experiments and Modelling = Springer Series Mate Materials for Tomorrow: Theory, Experiments and Modelling = Springer. Series. Mate. Materials for Tomorrow: Theory, Experiments and Modelling = Springer Ser Mater S Materials for Tomorrow: Theory, Experiments and Modelling = Springer. Ser. Mater. S. Materials Forum = Mater Forum Materials Forum = Mater. Forum Materials in Design Engineering = Mater Des Eng Materials in Design Engineering = Mater. Des. Eng. Materials in Extreme Environments = Mater Res Soc Symp P Materials in Extreme Environments = Mater. Res. Soc. Symp. P. Materials Innovations in An Emerging Hydrogen Economy = Ceram Trans Materials Innovations in An Emerging Hydrogen Economy = Ceram. Trans. Materials in Space-science, Technology and Exploration = Mater Res Soc Symp P Materials in Space-science, Technology and Exploration = Mater. Res. Soc. Symp. P. Materials Inspired By Biology = Mater Res Soc Symp P Materials Inspired By Biology = Mater. Res. Soc. Symp. P. Materials, Integration and Packaging Issues for High-frequency Devices Ii = Mater Res Soc Symp P Materials, Integration and Packaging Issues for High-frequency Devices Ii = Mater. Res. Soc. Symp. P. Materials, Integration and Packaging Issues for High-frequency Devices = Mater Res Soc Symp P Materials, Integration and Packaging Issues for High-frequency Devices = Mater. Res. Soc. Symp. P. Materials, Integration and Technology for Monolithic Instruments = Mater Res Soc Symp P Materials, Integration and Technology for Monolithic Instruments = Mater. Res. Soc. Symp. P. Materials Interactions Relevant to Recycling of Wood-based Materials = Mater Res Soc Symp P Materials Interactions Relevant to Recycling of Wood-based Materials = Mater. Res. Soc. Symp. P. Materials Interactions Relevant to The Pulp, Paper, and Wood Industries = Mater Res Soc Symp P Materials Interactions Relevant to The Pulp, Paper, and Wood Industries = Mater. Res. Soc. Symp. P. Materials in Transition, Proceedings = Sol St Phen Materials in Transition, Proceedings = Sol. St. Phen. Materials Issues and Modeling for Device Nanofabrication = Mater Res Soc Symp P Materials Issues and Modeling for Device Nanofabrication = Mater. Res. Soc. Symp. P. Materials Issues for Generation Iv Systems: Status, Open Questions and Challenges = Nato Science Peace S Materials Issues for Generation Iv Systems: Status, Open Questions and Challenges = Nato. Science. Peace. S. Materials Issues for Generation Iv Systems: Status, Open Questions and Challenges = Nato Sci Peace Sec B Materials Issues for Generation Iv Systems: Status, Open Questions and Challenges = Nato. Sci. Peace. Sec. B. Materials Issues for Tunable Rf and Microwave Devices Iii = Mater Res Soc Symp P Materials Issues for Tunable Rf and Microwave Devices Iii = Mater. Res. Soc. Symp. P. Materials Issues for Tunable Rf and Microwave Devices = Mater Res Soc Symp P Materials Issues for Tunable Rf and Microwave Devices = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology Iii = Mater Res Soc Symp P Materials Issues in Art and Archaeology Iii = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology Ii = Mater Res Soc Symp P Materials Issues in Art and Archaeology Ii = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology Viii = Mater Res Soc Symp P Materials Issues in Art and Archaeology Viii = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology Vii = Mater Res Soc Symp P Materials Issues in Art and Archaeology Vii = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology Vi = Mater Res Soc Symp P Materials Issues in Art and Archaeology Vi = Mater. Res. Soc. Symp. P. Materials Issues in Art and Archaeology V = Mater Res Soc Symp P Materials Issues in Art and Archaeology V = Mater. Res. Soc. Symp. P. Materials Issues in Microcrystalline Semiconductors = Mater Res Soc Symp P Materials Issues in Microcrystalline Semiconductors = Mater. Res. Soc. Symp. P. Materials Issues in Novel Si-based Technology = Mater Res Soc Symp P Materials Issues in Novel Si-based Technology = Mater. Res. Soc. Symp. P. Materials Issues in Vacuum Microelectronics = Mater Res Soc Symp P Materials Issues in Vacuum Microelectronics = Mater. Res. Soc. Symp. P. Materials Letters = Mater Lett Materials Letters = Mater. Lett. Materials management in health care = Mater Manag Health Care Materials Management in Health Care = Mater. Manag. Health Care Materials, Manufacturing, and Measurement for Synchrotron Radiation Mirrors = P Soc Photo-opt Ins Materials, Manufacturing, and Measurement for Synchrotron Radiation Mirrors = P. Soc. Photo-opt. Ins. Materials Modelling Series = Mat Modelling Ser Materials Modelling Series = Mat. Modelling Ser. Materials Modification and Synthesis By Ion Beam Processing = Mater Res Soc Symp P Materials Modification and Synthesis By Ion Beam Processing = Mater. Res. Soc. Symp. P. Materials Modification By Energetic Atoms and Ions = Mater Res Soc Symp P Materials Modification By Energetic Atoms and Ions = Mater. Res. Soc. Symp. P. Materials Modification By Ion Irradiation = P Soc Photo-opt Ins Materials Modification By Ion Irradiation = P. Soc. Photo-opt. Ins. Materials of Smart Systems Iii = Mater Res Soc Symp P Materials of Smart Systems Iii = Mater. Res. Soc. Symp. P. Materials performance = Mater Perform Materials Performance = Mater Performance Materials Performance = Mater. Performance Materials Performance : Sulphur and Energy = Cim An Conf Materials Performance : Sulphur and Energy = Cim. An. Conf. Materials, Processes, Integration and Reliability in Advanced Interconnects for Micro- and Nanoelectronics = Mater Res Soc Symp P Materials, Processes, Integration and Reliability in Advanced Interconnects for Micro- and Nanoelectronics = Mater. Res. Soc. Symp. P. Materials Processing and Design: Modeling, Simulation and Applications, Pts 1 and 2 = Aip Conf Proc Materials Processing and Design: Modeling, Simulation and Applications, Pts 1 and 2 = Aip. Conf. Proc. Materials Processing and Texture = Ceram Trans Materials Processing and Texture = Ceram. Trans. Materials Processing in Space = Mater Sci Forum Materials Processing in Space = Mater. Sci. Forum. Materials Processing Technologies, Pts 1 and 2 = Adv Mater Res-switz Materials Processing Technologies, Pts 1 and 2 = Adv. Mater. Res-switz. Materials & Process Integration for Mems = Microsystems Materials & Process Integration for Mems = Microsystems. Materials & Process Integration for Mems = Microsyst Ser Materials & Process Integration for Mems = Microsyst. Ser. Materials Protection and Performance = Mater Prot Perform Materials Protection and Performance = Mater. Prot. Perform. Materials Protection = Mater Prot Materials Protection = Mater. Prot. Materials Reliability in Microelectronics Iii = Mater Res Soc Symp P Materials Reliability in Microelectronics Iii = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Ii = Mater Res Soc Symp P Materials Reliability in Microelectronics Ii = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Iv = Mater Res Soc Symp P Materials Reliability in Microelectronics Iv = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Ix = Mater Res Soc Symp P Materials Reliability in Microelectronics Ix = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Viii = Mater Res Soc Symp P Materials Reliability in Microelectronics Viii = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Vii = Mater Res Soc Symp P Materials Reliability in Microelectronics Vii = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics Vi = Mater Res Soc Symp P Materials Reliability in Microelectronics Vi = Mater. Res. Soc. Symp. P. Materials Reliability in Microelectronics V = Mater Res Soc Symp P Materials Reliability in Microelectronics V = Mater. Res. Soc. Symp. P. Materials Reliability Issues in Microelectronics = Mater Res Soc Symp P Materials Reliability Issues in Microelectronics = Mater. Res. Soc. Symp. P. Materials Research and Standards = Mater Res Standard Materials Research and Standards = Mater. Res. Standard. Materials Research At High Pressure = Mater Res Soc Symp P Materials Research At High Pressure = Mater. Res. Soc. Symp. P. Materials research bulletin = Mater Res Bull Materials Research Bulletin = Mater Res Bull Materials Research Bulletin = Mater. Res. Bull. Materials Research-ibero-american Journal of Materials = Mater Res-ibero-am J Materials Research-ibero-american Journal of Materials = Mater. Res-ibero-am. J. Materials Research in Low Gravity Ii = Proc Spie Materials Research in Low Gravity Ii = Proc. Spie. Materials Research in Low Gravity Ii = P Soc Photo-opt Ins Materials Research in Low Gravity Ii = P. Soc. Photo-opt. Ins. Materials Research in Low Gravity = P Soc Photo-opt Ins Materials Research in Low Gravity = P. Soc. Photo-opt. Ins. Materials Research Innovations = Mater Res Innov Materials Research Innovations = Mater. Res. Innov. Materials Research Innovations = Mater. Res. Innovations Materials Research = Mater. Res. Materials Research, Pts 1 and 2 = Mater Sci Forum Materials Research, Pts 1 and 2 = Mater. Sci. Forum. Materials Research Society Conference Proceedings = Mat Res S C Materials Research Society Conference Proceedings = Mat. Res. S. C. Materials Research Society symposia proceedings. Materials Research Society = Mater Res Soc Symp Proc Mater Res Soc Materials Research Society Symposia Proceedings = Mater. Res. Soc. Symp. Proc. Materials Research Society Symposium Proceedings = Mater Res Soc Symp P Materials Research Society Symposium Proceedings = Mater. Res. Soc. Symp. P. Materials Research Society Symposium Proceedings = Mater. Res. Soc. Symp. Proc. Materials Science and Applied Physics = Aip Conf Proc Materials Science and Applied Physics = Aip. Conf. Proc. Materials Science and Engineering A = Mater. Sci. Eng., A Materials Science and Engineering Applications, Pts 1-3 = Adv Mater Res-switz Materials Science and Engineering Applications, Pts 1-3 = Adv. Mater. Res-switz. Materials Science and Engineering A-structural Materials Properties Microstructure and Processing = Mat Sci Eng A-struct Materials Science and Engineering A-structural Materials Properties Microstructure and Processing = Mat. Sci. Eng. A-struct. Materials Science and Engineering B-advanced Functional Solid-state Materials = Mater Sci Eng B-adv Materials Science and Engineering B-advanced Functional Solid-state Materials = Mater. Sci. Eng. B-adv. Materials Science and Engineering B = Mater. Sci. Eng., B Materials Science and Engineering B-solid State Materials for Advanced Technology = Mat Sci Eng B-solid Materials Science and Engineering B-solid State Materials for Advanced Technology = Mat. Sci. Eng. B-solid Materials Science and Engineering C = Mater. Sci. Eng., C Materials Science and Engineering = Mater Sci Eng Materials Science and Engineering = Mater. Sci. Eng. Materials Science and Engineering, Pts 1-2 = Adv Mater Res-switz Materials Science and Engineering, Pts 1-2 = Adv. Mater. Res-switz. Materials Science and Engineering Reports = Mater. Sci. Eng., R Materials Science and Technologies = Mater Sci Technol Materials Science and Technologies = Mater. Sci. Technol. Materials Science and Technology for Nonvolatile Memories = Mater Res Soc Symp P Materials Science and Technology for Nonvolatile Memories = Mater. Res. Soc. Symp. P. Materials Science and Technology = Mater Sci Tech-lond Materials Science and Technology = Mater. Sci. Tech-lond. Materials Science and Technology = Mater. Sci. Technol. Materials Science and Technology = Mater Sci Tech Ser Materials Science and Technology = Mater. Sci. Tech. Ser. Materials Science Applications of Ion Beam Techniques = Mater Sci Forum Materials Science Applications of Ion Beam Techniques = Mater. Sci. Forum. Materials Science & Engineering, A: Structural Materials: Properties, Microstructure and Processing = Mater. Sci. Eng., A Materials Science & Engineering, B: Solid-State Materials for Advanced Technology = Mater. Sci. Eng., B Materials Science & Engineering, C: Biomimetic and Supramolecular Systems = Mater. Sci. Eng., C Materials Science & Engineering C-biomimetic and Supramolecular Systems = Mat Sci Eng C-bio S Materials Science & Engineering C-biomimetic and Supramolecular Systems = Mat. Sci. Eng. C-bio. S. Materials Science & Engineering C-biomimetic Materials Sensors and Systems = Mat Sci Eng C-biomim Materials Science & Engineering C-biomimetic Materials Sensors and Systems = Mat. Sci. Eng. C-biomim. Materials Science & Engineering C-materials for Biological Applications = Mat Sci Eng C-mater Materials Science & Engineering C-materials for Biological Applications = Mat. Sci. Eng. C-mater. Materials Science & Engineering, R: Reports = Mater. Sci. Eng., R Materials Science & Engineering R-reports = Mat Sci Eng R Materials Science & Engineering R-reports = Mat. Sci. Eng. R. Materials Science Forum = Mater Sci Forum Materials Science Forum = Mater. Sci. Forum Materials Science Foundations = Mater Sci Found Materials Science Foundations = Mater. Sci. Found. Materials Science in Semiconductor Processing = Mater. Sci. Semicond. Process. Materials Science in Semiconductor Processing = Mat Sci Semicon Proc Materials Science in Semiconductor Processing = Mat. Sci. Semicon. Proc. Materials Science = Mater Sci+ Materials Science = Mater. Sci. Materials Science = Mater. Sci+.+ Materials Science-medziagotyra = Mater Sci-medzg Materials Science-medziagotyra = Mater Sci-medzg+ Materials Science-medziagotyra = Mater. Sci-medzg. Materials Science-medziagotyra = Mater. Sci-medzg+.+ Materials Science Monographs = Mater Sci Monog Materials Science Monographs = Mater. Sci. Monog. Materials Science Monographs = Mater. Sci. Monogr. Materials Science of Concrete Series = Mat Sci Series Materials Science of Concrete Series = Mat. Sci. Series Materials Science of Concrete: Special Volume = Mat Sci Series Materials Science of Concrete: Special Volume = Mat. Sci. Series. Materials Science of High Temperature Polymers for Microelectronics = Mater Res Soc Symp P Materials Science of High Temperature Polymers for Microelectronics = Mater. Res. Soc. Symp. P. Materials Science of Microelectromechanical Systems (mems) Devices Ii = Mater Res Soc Symp P Materials Science of Microelectromechanical Systems (mems) Devices Ii = Mater. Res. Soc. Symp. P. Materials Science of Microelectromechanical Systems (mems) Devices Iv = Mater Res Soc Symp P Materials Science of Microelectromechanical Systems (mems) Devices Iv = Mater. Res. Soc. Symp. P. Materials Science of Microelectromechanical Systems (mems) Devices = Mater Res Soc Symp P Materials Science of Microelectromechanical Systems (mems) Devices = Mater. Res. Soc. Symp. P. Materials Science of Novel Oxide-based Electronics = Mater Res Soc Symp P Materials Science of Novel Oxide-based Electronics = Mater. Res. Soc. Symp. P. Materials Science of The Cell = Mater Res Soc Symp P Materials Science of The Cell = Mater. Res. Soc. Symp. P. Materials Science-poland = Mater Sci-poland Materials Science-poland = Mater. Sci-poland. Materials Science Reports = Mater Sci Rep Materials Science Reports = Mater. Sci. Rep. Materials Science Research International = Mater Sci Res Int Materials Science Research International = Mater. Sci. Res. Int. Materials Science, Testing and Informatics Iii = Mater Sci Forum Materials Science, Testing and Informatics Iii = Mater. Sci. Forum. Materials Science, Testing and Informatics Ii = Mater Sci Forum Materials Science, Testing and Informatics Ii = Mater. Sci. Forum. Materials Science, Testing and Informatics Iv = Mater Sci Forum Materials Science, Testing and Informatics Iv = Mater. Sci. Forum. Materials Science, Testing and Informatics = Mater Sci Forum Materials Science, Testing and Informatics = Mater. Sci. Forum. Materials Science With Ion Beams = Top Appl Phys Materials Science With Ion Beams = Top. Appl. Phys. Materials Structure & Micromechanics of Fracture Iv = Mater Sci Forum Materials Structure & Micromechanics of Fracture Iv = Mater. Sci. Forum. Materials Structure & Micromechanics of Fracture = Key Eng Mater Materials Structure & Micromechanics of Fracture = Key. Eng. Mater. Materials Structure & Micromechanics of Fracture V = Mater Sci Forum Materials Structure & Micromechanics of Fracture V = Mater. Sci. Forum. Materials Synthesis and Processing Using Ion Beams = Mater Res Soc Symp P Materials Synthesis and Processing Using Ion Beams = Mater. Res. Soc. Symp. P. Materials Synthesis Based On Biological Processes = Mater Res Soc Symp P Materials Synthesis Based On Biological Processes = Mater. Res. Soc. Symp. P. Materials Synthesis Utilizing Biological Processes = Mater Res Soc Symp P Materials Synthesis Utilizing Biological Processes = Mater. Res. Soc. Symp. P. Materials, Technology and Reliability for Advanced Interconnects and Low-k Dielectrics-2003 = Mater Res Soc Symp P Materials, Technology and Reliability for Advanced Interconnects and Low-k Dielectrics-2003 = Mater. Res. Soc. Symp. P. Materials, Technology and Reliability for Advanced Interconnects and Low-k Dielectrics-2004 = Mater Res Soc Symp P Materials, Technology and Reliability for Advanced Interconnects and Low-k Dielectrics-2004 = Mater. Res. Soc. Symp. P. Materials, Technology and Reliability of Advanced Interconnects-2005 = Mater Res Soc Symp P Materials, Technology and Reliability of Advanced Interconnects-2005 = Mater. Res. Soc. Symp. P. Materials, Technology and Reliability of Low-k Dielectrics and Copper Interconnects = Mater Res Soc Symp P Materials, Technology and Reliability of Low-k Dielectrics and Copper Interconnects = Mater. Res. Soc. Symp. P. Materials Technology = Mater Technol Materials Technology = Mater. Technol. Materials Testing-materials and Components Technology and Application = Mater Test Materials Testing-materials and Components Technology and Application = Mater. Test. Materials Testing = Mater Test Materials Testing = Mater. Test. Materials Theory and Modelling = Mater Res Soc Symp P Materials Theory and Modelling = Mater. Res. Soc. Symp. P. Materials Theory, Simulations, and Parallel Algorithms = Mater Res Soc Symp P Materials Theory, Simulations, and Parallel Algorithms = Mater. Res. Soc. Symp. P. Materials-the Star At Center Stage = Int Sampe Tech Conf Materials-the Star At Center Stage = Int. Sampe. Tech. Conf. Materials Today = Mater Today Materials Today = Mater. Today Materials Transactions Jim = Mater T Jim Materials Transactions Jim = Mater. T. Jim Materials Transactions, JIM = Mater. Trans., JIM Materials Transactions = Mater Trans Materials Transactions = Mater. Trans. Materials Working for You in The 21st Century = Sci Adv Mat Materials Working for You in The 21st Century = Sci. Adv. Mat. Materials World = Mater World Materials World = Mater. World Material Texts = Mater Texts Material Texts = Mater. Texts Material Und Organismen = Mater Organismen Material Und Organismen = Mater. Organismen Materialwissenschaft Und Werkstofftechnik = Materialwiss Werkst Materialwissenschaft Und Werkstofftechnik = Materialwiss. Werkst. Materialwissenschaft und Werkstofftechnik = Materialwiss. Werkstofftech. Materialwissenschaft und Werkstofftechnik = Materwiss Werksttech Materialy i issledovanija po archeologii SSSR = MatIsslA Materialy i prace antropologiczne = Mater Pr Antropol Materialy po archeologii BSSR = MatABSSR Materialy po archeologii severnogo Pričernomor’ja = MatASevPri Materiały starożytne i wczesnośredniowieczne = MatStarWczes Materiały starożytne = MatStar Materiały wczesnośredniowieczne = MatWczes Materia Medica Greca = Mater Med Greca Materia medica Nordmark = Mater Med Nordmark Materia Medica Polona=Mater Med Pol;; Materia Medica Polona = Mater. Med. Pol. Materia medica Polona. Polish journal of medicine and pharmacy = Mater Med Pol Materia-rio De Janeiro = Materia Materia-rio De Janeiro = Materia. Materia-rio De Janeiro = Materia-brazil Materia-rio De Janeiro = Materia-brazil. Matériaux pour la Carte Géologique de la Suisse, n.s. = Matér. Carte Géol. Suisse Matériaux pour le levé géobotanique de la Suisse = Matér. levé géobot. Suisse Materiaux & Techniques = Mater. Tech. Maternal and child health journal = Matern Child Health J Maternal and Child Health Journal = Matern. Child Health J. Maternal and Child Health Journal = Matern Child Healt J Maternal and Child Health Journal = Matern. Child Healt. J. Maternal and Child Health Journal = Matern Child Hlth J Maternal and Child Health Journal = Matern. Child Hlth. J. Maternal and Child Nutrition = Matern Child Nutr Maternal and Child Nutrition = Matern. Child Nutr. Maternal and Child Nutrition = Matern. Child. Nutr. Maternal-child nursing journal = Matern Child Nurs J Maternal-Child Nursing Journal = Matern. Child Nurs. J. Maternal & child nutrition = Matern Child Nutr Maternal Nutrition and Pregnancy Outcome = Ann Ny Acad Sci Maternal Nutrition and Pregnancy Outcome = Ann. Ny. Acad. Sci. Maternal Nutrition and Pregnancy Outcomes = Pan Am H O Maternal Nutrition and Pregnancy Outcomes = Pan. Am. H. O. Maternal Physiology and Pathology = C St Gyn Ob Maternal Physiology and Pathology = C. St. Gyn. Ob. Maternidade e infancia; arquivos medicos-sociais = Matern Infanc (Sao Paulo) Maternidade e Infancia = Matern. Infanc. (Sao Paulo) Maternite = Maternite Maternite; revue pratique d'obstetrique et de puericulture = Maternite Math/chem/comp 1988 = Stud Phys Theo Chem Math/chem/comp 1988 = Stud. Phys. Theo. Chem. Mathematica Balkanica = Math. Balkanica (N.S.) Mathematicae Notae = Math. Notae Mathematica Japonica = Math. Japon. Mathematical Analysis and Applications = Aip Conf Proc Mathematical Analysis and Applications = Aip. Conf. Proc. Mathematical Analysis of Urban Spatial Networks = Underst Complex Syst Mathematical Analysis of Urban Spatial Networks = Underst. Complex. Syst. Mathematical and Analytical Techniques With Applications to Engineering = Math Anal Tech Appl Mathematical and Analytical Techniques With Applications to Engineering = Math. Anal. Tech. Appl. Mathematical and Computational Analysis of Natural Language = Stud Funct Struct Mathematical and Computational Analysis of Natural Language = Stud. Funct. Struct. Mathematical and computer modelling = Math Comput Model Mathematical and Computer Modelling = Math Comput Model Mathematical and Computer Modelling = Math. Comput. Model. Mathematical and Computer Modelling = Math. Comput. Modell. Mathematical and Computer Modelling = Math. Comput. Modelling Mathematical and Computer Modelling of Dynamical Systems = Math Comp Model Dyn Mathematical and Computer Modelling of Dynamical Systems = Math. Comp. Model. Dyn. Mathematical and Computer Modelling of Dynamical Systems = Math. Comput. Model. Dyn. Syst. Mathematical and Computer Modelling of Dynamical Systems = Math. Comput. Modell. Dyn. Syst. Mathematical and Control Applications in Agriculture and Horticulture = Ifac Work S Mathematical and Control Applications in Agriculture and Horticulture = Ifac. Work. S. Mathematical and Experimental Modeling of Physical and Biological Processes = Textb Math Mathematical and Experimental Modeling of Physical and Biological Processes = Textb. Math. Mathematical and Quantum Aspects of Relativity and Cosmology = Lect Notes Phys Mathematical and Quantum Aspects of Relativity and Cosmology = Lect. Notes. Phys. Mathematical and Statisical Methods for Imaging = Contemp Math Mathematical and Statisical Methods for Imaging = Contemp. Math. Mathematical and Statistical Models and Metheds in Reliability: Applications to Medicine, Finance, and Quality Control = Stat Ind Technol Mathematical and Statistical Models and Metheds in Reliability: Applications to Medicine, Finance, and Quality Control = Stat. Ind. Technol. Mathematical Approaches for Emerging and Reemerging Infectious Diseases: An Introduction = Ima V Math Mathematical Approaches for Emerging and Reemerging Infectious Diseases: An Introduction = Ima. V. Math. Mathematical Approaches for Emerging and Reemerging Infectious Diseases: An Introduction = Ima Vol Math Appl Mathematical Approaches for Emerging and Reemerging Infectious Diseases: An Introduction = Ima. Vol. Math. Appl. Mathematical Approaches for Emerging and Reemerging Infectious Diseases: Models, Methods, and Theory = Ima V Math Mathematical Approaches for Emerging and Reemerging Infectious Diseases: Models, Methods, and Theory = Ima. V. Math. Mathematical Approaches for Emerging and Reemerging Infectious Diseases: Models, Methods, and Theory = Ima Vol Math Appl Mathematical Approaches for Emerging and Reemerging Infectious Diseases: Models, Methods, and Theory = Ima. Vol. Math. Appl. Mathematical Approaches to Cardiac Arrhythmias = Ann Ny Acad Sci Mathematical Approaches to Cardiac Arrhythmias = Ann. Ny. Acad. Sci. Mathematical Aspects of Artificial Intelligence = Proc Sym Ap Mathematical Aspects of Artificial Intelligence = Proc. Sym. Ap. Mathematical Aspects of Boundary Element Methods = Ch Crc Res Notes Mathematical Aspects of Boundary Element Methods = Ch. Crc. Res. Notes. Mathematical Aspects of Boundary Element Methods = Ch Crc Res Notes Mat Mathematical Aspects of Boundary Element Methods = Ch. Crc. Res. Notes. Mat. Mathematical Aspects of Evolving Interfaces = Lect Notes Math Mathematical Aspects of Evolving Interfaces = Lect. Notes. Math. Mathematical Aspects of Fluid and Plasma Dynamics = Lect Notes Math Mathematical Aspects of Fluid and Plasma Dynamics = Lect. Notes. Math. Mathematical Aspects of Quantum Maps = Lect Notes Phys Mathematical Aspects of Quantum Maps = Lect. Notes. Phys. Mathematical Biosciences and Engineering = Math Biosci Eng Mathematical Biosciences and Engineering = Math. Biosci. Eng. Mathematical biosciences and engineering : MBE = Math Biosci Eng Mathematical biosciences = Math Biosci Mathematical Biosciences = Math. Biosci. Mathematical Biosciences=Math Biosci;; Mathematical Biosciences = Math Biosci Mathematical Biosciences = Math. Biosci. Mathematical Chemistry Series = Math. Chem. Ser. Mathematical Communications = Math. Commun. Mathematical Communications = Math Commun Mathematical Communications = Math. Commun. Mathematical & Computational Applications = Math Comput Appl Mathematical & Computational Applications = Math. Comput. Appl. Mathematical Concepts and Methods in Science and Engineering = Math. Concepts Methods Sci. Engrg. Mathematical Concepts and Methods in Science and Engineering = Math C Sci Mathematical Concepts and Methods in Science and Engineering = Math. C. Sci. Mathematical Control Theory, Nos 1 and 2 = Ictp Lect Notes Mathematical Control Theory, Nos 1 and 2 = Ictp. Lect. Notes. Mathematical Education = Math. Ed. Mathematical Education of Engineers = Inst Math A Mathematical Education of Engineers = Inst. Math. A. Mathematical Engineering in Industry = Math Eng Ind Mathematical Engineering in Industry = Math. Eng. Ind. Mathematical Engineering in Industry = Math. Engrg. Indust. Mathematical Engineering = Math Eng Mathematical Engineering = Math. Eng. Mathematical Epidemiology = Lect Notes Math Mathematical Epidemiology = Lect. Notes. Math. Mathematical Finance - Bachelier Congress 2000 = Springer Financ Mathematical Finance - Bachelier Congress 2000 = Springer. Financ. Mathematical Finance - Bachelier Congress 2000 = Springer Finance Mathematical Finance - Bachelier Congress 2000 = Springer. Finance Mathematical Finance: Core Theory, Problems and Statistical Algorithms = Routl Adv Texts Econ Mathematical Finance: Core Theory, Problems and Statistical Algorithms = Routl. Adv. Texts. Econ. Mathematical Finance = Math Financ Mathematical Finance = Math. Financ. Mathematical Finance = Math. Finance Mathematical Finance=Math. Finance Mathematical Foundation of Turbulent Viscous Flows = Lect Notes Math Mathematical Foundation of Turbulent Viscous Flows = Lect. Notes. Math. Mathematical Foundations of Computer Science 1990 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 1990 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 1991 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 1991 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 1992 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 1992 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 1996 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 1996 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 1998 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 1998 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2001 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2001 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2002 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2002 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2003, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2003, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2004, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2004, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2005, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2005, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2006, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2006, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2007, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2007, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2008, Proceedings = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2008, Proceedings = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2009 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2009 = Lect. Notes. Comput. Sc. Mathematical Foundations of Computer Science 2010 = Lect Notes Comput Sc Mathematical Foundations of Computer Science 2010 = Lect. Notes. Comput. Sc. Mathematical Foundations of Neuroscience = Interd Appl Math Mathematical Foundations of Neuroscience = Interd. Appl. Math. Mathematical Foundations of Programming Semantics / = Lect Notes Comput Sc Mathematical Foundations of Programming Semantics / = Lect. Notes. Comput. Sc. Mathematical Foundations of Quantum Information and Computation and Its Applications to Nano- and Bio-systems = Theor Math Phys Ser Mathematical Foundations of Quantum Information and Computation and Its Applications to Nano- and Bio-systems = Theor. Math. Phys. Ser. Mathematical Foundations of Scientific Visualization, Computer Graphics, and Massive Data Exploration = Math Vis Mathematical Foundations of Scientific Visualization, Computer Graphics, and Massive Data Exploration = Math. Vis. Mathematical Foundations of Speech and Language Processing = Ima V Math Mathematical Foundations of Speech and Language Processing = Ima. V. Math. Mathematical Foundations of Speech and Language Processing = Ima Vol Math Appl Mathematical Foundations of Speech and Language Processing = Ima. Vol. Math. Appl. Mathematical Gazette = Math Gaz Mathematical Gazette = Math. Gaz. Mathematical Geology = Math. Geol. Mathematical Geology = Math Geol Mathematical Geology = Math. Geol. Mathematical Geoscience = Interd Appl Math Mathematical Geoscience = Interd. Appl. Math. Mathematical Geosciences = Math Geosci Mathematical Geosciences = Math. Geosci. Mathematical Imaging : Wavelet Applications in Signal and Image Processing = P Soc Photo-opt Ins Mathematical Imaging : Wavelet Applications in Signal and Image Processing = P. Soc. Photo-opt. Ins. Mathematical Inequalities & Applications = Math. Inequal. Appl. Mathematical Inequalities & Applications = Math Inequal Appl Mathematical Inequalities & Applications = Math. Inequal. Appl. Mathematical Intelligencer = Math Intell Mathematical Intelligencer = Math. Intell. Mathematical Introduction to Conformal Field Theory, Second Edition = Lect Notes Phys Mathematical Introduction to Conformal Field Theory, Second Edition = Lect. Notes. Phys. Mathematical Journal of Ibaraki University = Math. J. Ibaraki Univ. Mathematical Journal of Okayama University = Math. J. Okayama Univ. Mathematical Knowledge in Teaching = Math Educ Lib Mathematical Knowledge in Teaching = Math. Educ. Lib. Mathematical Knowledge Management = Lect Notes Comput Sc Mathematical Knowledge Management = Lect. Notes. Comput. Sc. Mathematical Knowledge Management, Proceedings = Lect Notes Artif Int Mathematical Knowledge Management, Proceedings = Lect. Notes. Artif. Int. Mathematical Knowledge Management, Proceedings = Lect Notes Comput Sc Mathematical Knowledge Management, Proceedings = Lect. Notes. Comput. Sc. Mathematical Linguistics = Adv Inform Knowl Pro Mathematical Linguistics = Adv. Inform. Knowl. Pro. Mathematical Literacy: Developing Identities of Inclusion = Stud Math Think Lear Mathematical Literacy: Developing Identities of Inclusion = Stud. Math. Think. Lear. Mathematical Logic: Foundations for Information Science = Prog Comput Sci Appl Mathematical Logic: Foundations for Information Science = Prog. Comput. Sci. Appl. Mathematical Logic Quarterly = Math. Logic Quart. Mathematical Logic Quarterly = Math Logic Quart Mathematical Logic Quarterly = Math. Logic Quart. Mathematical medicine and biology : a journal of the IMA = Math Med Biol Mathematical Medicine and Biology-a Journal of The Ima = Math Med Biol Mathematical Medicine and Biology-a Journal of The Ima = Math. Med. Biol. Mathematical Medicine and Biology = Math. Med. Biol. Mathematical Medley = Math. Medley Mathematical Methods and Applied Computing, Vol 1 = Ma Comput Sci Eng Mathematical Methods and Applied Computing, Vol 1 = Ma. Comput. Sci. Eng. Mathematical Methods and Applied Computing, Vol 1 = Math Comput Sci Eng Mathematical Methods and Applied Computing, Vol 1 = Math. Comput. Sci. Eng. Mathematical Methods and Computational Techniques in Research and Education = Ele Com Eng Mathematical Methods and Computational Techniques in Research and Education = Ele. Com. Eng. Mathematical Methods, Computational Techniques, Non-linear Systems, Intelligent Systems = Ma Comput Sci Eng Mathematical Methods, Computational Techniques, Non-linear Systems, Intelligent Systems = Ma. Comput. Sci. Eng. Mathematical Methods, Computational Techniques, Non-linear Systems, Intelligent Systems = Math Comput Sci Eng Mathematical Methods, Computational Techniques, Non-linear Systems, Intelligent Systems = Math. Comput. Sci. Eng. Mathematical Methods for Curves and Surfaces Ii = Innov Appl Math Mathematical Methods for Curves and Surfaces Ii = Innov. Appl. Math. Mathematical Methods for Curves and Surfaces = Lect Notes Comput Sc Mathematical Methods for Curves and Surfaces = Lect. Notes. Comput. Sc. Mathematical Methods for Curves and Surfaces: Oslo 2000 = Innov Appl Math Mathematical Methods for Curves and Surfaces: Oslo 2000 = Innov. Appl. Math. Mathematical Methods for Financial Markets = Springer Financ Mathematical Methods for Financial Markets = Springer. Financ. Mathematical Methods for Protein Structure Analysis and Design = Lect Notes Comput Sc Mathematical Methods for Protein Structure Analysis and Design = Lect. Notes. Comput. Sc. Mathematical Methods for Robust and Nonlinear Control = Lect Notes Contr Inf Mathematical Methods for Robust and Nonlinear Control = Lect. Notes. Contr. Inf. Mathematical Methods in Biomedical Imaging and Intensity-modulated Radiation Therapy (imrt) = Crm Ser Mathematical Methods in Biomedical Imaging and Intensity-modulated Radiation Therapy (imrt) = Crm. Ser. Mathematical Methods in Computer Science = Lect Notes Comput Sc Mathematical Methods in Computer Science = Lect. Notes. Comput. Sc. Mathematical Methods in Computer Vision = Ima V Math Mathematical Methods in Computer Vision = Ima. V. Math. Mathematical Methods in Electro-magneto-elasticity = Lect Notes Appl Comp Mathematical Methods in Electro-magneto-elasticity = Lect. Notes. Appl. Comp. Mathematical Methods in Geophysical Imaging Iii = P Soc Photo-opt Ins Mathematical Methods in Geophysical Imaging Iii = P. Soc. Photo-opt. Ins. Mathematical Methods in Geophysical Imaging Ii = P Soc Photo-opt Ins Mathematical Methods in Geophysical Imaging Ii = P. Soc. Photo-opt. Ins. Mathematical Methods in Geophysical Imaging Iv = P Soc Photo-opt Ins Mathematical Methods in Geophysical Imaging Iv = P. Soc. Photo-opt. Ins. Mathematical Methods in Geophysical Imaging = P Soc Photo-opt Ins Mathematical Methods in Geophysical Imaging = P. Soc. Photo-opt. Ins. Mathematical Methods in Geophysical Imaging V = P Soc Photo-opt Ins Mathematical Methods in Geophysical Imaging V = P. Soc. Photo-opt. Ins. Mathematical Methods in Medical Imaging Iii = P Soc Photo-opt Ins Mathematical Methods in Medical Imaging Iii = P. Soc. Photo-opt. Ins. Mathematical Methods in Medical Imaging Ii = P Soc Photo-opt Ins Mathematical Methods in Medical Imaging Ii = P. Soc. Photo-opt. Ins. Mathematical Methods in Medical Imaging = P Soc Photo-opt Ins Mathematical Methods in Medical Imaging = P. Soc. Photo-opt. Ins. Mathematical Methods in The Applied Sciences = Math Method Appl Sci Mathematical Methods in The Applied Sciences = Math. Method. Appl. Sci. Mathematical Methods in the Applied Sciences = Math. Methods Appl. Sci. Mathematical Methods in Time Series Analysis and Digital Image Processing = Underst Complex Syst Mathematical Methods in Time Series Analysis and Digital Image Processing = Underst. Complex. Syst. Mathematical Methods in Tomography = Lect Notes Math Mathematical Methods in Tomography = Lect. Notes. Math. Mathematical Methods of Operations Research = Math Method Oper Res Mathematical Methods of Operations Research = Math. Method. Oper. Res. Mathematical Methods of Operations Research=Math. Methods Operations Res. Mathematical Methods of Operations Research = Math. Methods Oper. Res. Mathematical Methods of Statistics = Math. Methods Statist. Mathematical Methods On Optimization in Transportation Systems = Appl Optimizat Mathematical Methods On Optimization in Transportation Systems = Appl. Optimizat. Mathematical Methods, Systems Theory and Control = Ma Comput Sci Eng Mathematical Methods, Systems Theory and Control = Ma. Comput. Sci. Eng. Mathematical Methods, Systems Theory and Control = Math Comput Sci Eng Mathematical Methods, Systems Theory and Control = Math. Comput. Sci. Eng. Mathematical Modeling and Computational Experiment = Math. Modeling Comput. Experiment Mathematical Modeling and Computation = Math Model Comput Mathematical Modeling and Computation = Math. Model. Comput. Mathematical Modeling and Estimation Techniques in Computer Vision = P Soc Photo-opt Ins Mathematical Modeling and Estimation Techniques in Computer Vision = P. Soc. Photo-opt. Ins. Mathematical Modeling and Numerical Simulation in Continuum Mechanics = Lect Notes Comp Sci Mathematical Modeling and Numerical Simulation in Continuum Mechanics = Lect. Notes. Comp. Sci. Mathematical Modeling, Bayesian Estimation, and Inverse Problems = Proc Spie Mathematical Modeling, Bayesian Estimation, and Inverse Problems = Proc. Spie. Mathematical Modeling, Bayesian Estimation, and Inverse Problems = P Soc Photo-opt Ins Mathematical Modeling, Bayesian Estimation, and Inverse Problems = P. Soc. Photo-opt. Ins. Mathematical Modeling, Clustering Algorithms and Applications = Math Res Dev Mathematical Modeling, Clustering Algorithms and Applications = Math. Res. Dev. Mathematical Modeling, Estimation, and Imaging = Proc Spie Mathematical Modeling, Estimation, and Imaging = Proc. Spie. Mathematical Modeling, Estimation, and Imaging = P Soc Photo-opt Ins Mathematical Modeling, Estimation, and Imaging = P. Soc. Photo-opt. Ins. Mathematical Modeling in Biomedical Imaging I = Lect Notes Math Mathematical Modeling in Biomedical Imaging I = Lect. Notes. Math. Mathematical Modeling in Nutrition and The Health Sciences = Adv Exp Med Biol Mathematical Modeling in Nutrition and The Health Sciences = Adv. Exp. Med. Biol. Mathematical Modeling = Math Mod Mathematical Modeling = Math. Mod. Mathematical Modeling = Math. Model. Mathematical Modeling of Biological Systems, Vol I = Model Simul Sci Eng Mathematical Modeling of Biological Systems, Vol I = Model. Simul. Sci. Eng. Mathematical Modeling of Biosensors: An Introduction for Chemists and Mathematicians = Springer Ser Chem Se Mathematical Modeling of Biosensors: An Introduction for Chemists and Mathematicians = Springer. Ser. Chem. Se. Mathematical Modeling of Collective Behavior in Socio-economic and Life Sciences = Model Simul Sci Eng Mathematical Modeling of Collective Behavior in Socio-economic and Life Sciences = Model. Simul. Sci. Eng. Mathematical Modeling of Wave Phenomena = Aip Conf Proc Mathematical Modeling of Wave Phenomena = Aip. Conf. Proc. Mathematical Modelling and Analysis = Math Model Anal Mathematical Modelling and Analysis = Math. Model. Anal. Mathematical Modelling and Scientific Computing = Math. Modelling Sci. Comput. Mathematical Modelling in Experimental Nutrition = Adv Exp Med Biol Mathematical Modelling in Experimental Nutrition = Adv. Exp. Med. Biol. Mathematical Modelling = Math Modelling Mathematical Modelling = Math. Modelling Mathematical Modelling of Biosystems = Appl Optim Mathematical Modelling of Biosystems = Appl. Optim. Mathematical Modelling of Natural Phenomena = Math Model Nat Pheno Mathematical Modelling of Natural Phenomena = Math. Model. Nat. Pheno. Mathematical Modelling of Systems = Math. Model. Systems Mathematical Modelling of Weld Phenomena 4 = Mat Modelling Ser Mathematical Modelling of Weld Phenomena 4 = Mat. Modelling Ser. Mathematical Modelling of Weld Phenomena 6 = Mat Modelling Ser Mathematical Modelling of Weld Phenomena 6 = Mat. Modelling Ser. Mathematical Modelling-theory and Applications = Math Modell Mathematical Modelling-theory and Applications = Math. Modell. Mathematical Modelling: Theory and Applications = Math Modell Mathematical Modelling: Theory and Applications = Math. Modell. Mathematical Modelling: Theory and Applications = Math. Modell. Theory Appl. Mathematical Modelling-theory and Applications = Math Model-theor App Mathematical Modelling-theory and Applications = Math. Model-theor. App. Mathematical Modelling: Theory and Applications = Math. Model. Theory Appl. Mathematical Models and Computer Simulations = Math. Models Comput. Simul. Mathematical Models and Methods in Applied Sciences = Math. Models Method Appl. Sci. Mathematical Models and Methods in Applied Sciences = Math. Models Methods Appl. Sci. Mathematical Models in Engineering, Biology and Medicine = Aip Conf Proc Mathematical Models in Engineering, Biology and Medicine = Aip. Conf. Proc. Mathematical Models in Medical and Health Science = Innov Appl Math Mathematical Models in Medical and Health Science = Innov. Appl. Math. Mathematical Models in The Manufacturing of Glass = Lect Notes Math Mathematical Models in The Manufacturing of Glass = Lect. Notes. Math. Mathematical Models & Methods in Applied Sciences = Math. Models Methods Appl. Sci. Mathematical Models & Methods in Applied Sciences = Math Mod Meth Appl S Mathematical Models & Methods in Applied Sciences = Math. Mod. Meth. Appl. S. Mathematical Models of Granular Matter = Lect Notes Math Mathematical Models of Granular Matter = Lect. Notes. Math. Mathematical Morphology: 40 Years On = Comp Imag Vis Mathematical Morphology: 40 Years On = Comp. Imag. Vis. Mathematical Morphology: 40 Years On = Comput Imaging Vis Mathematical Morphology: 40 Years On = Comput. Imaging. Vis. Mathematical Morphology and Its Applications to Image and Signal Processing = Comp Imag Vis Mathematical Morphology and Its Applications to Image and Signal Processing = Comp. Imag. Vis. Mathematical Morphology and Its Applications to Image and Signal Processing = Comput Imaging Vis Mathematical Morphology and Its Applications to Image and Signal Processing = Comput. Imaging. Vis. Mathematical Morphology and Its Applications to Image Processing = Comp Imag Vis Mathematical Morphology and Its Applications to Image Processing = Comp. Imag. Vis. Mathematical Morphology and Its Applications to Image Processing = Comput Imaging Vis Mathematical Morphology and Its Applications to Image Processing = Comput. Imaging. Vis. Mathematical Morphology and Its Application to Signal and Image Processing = Lect Notes Comput Sc Mathematical Morphology and Its Application to Signal and Image Processing = Lect. Notes. Comput. Sc. Mathematical Notes = Math. Notes Mathematical Notes = Math Notes+ Mathematical Notes = Math. Notes+.+ Mathematical Notes - Princeton University Press = Math N Princ Mathematical Notes - Princeton University Press = Math. N. Princ. Mathematical Optimization and Economic Analysis = Springer Ser Optim A Mathematical Optimization and Economic Analysis = Springer. Ser. Optim. A. Mathematical Physics Analysis and Geometry = Math Phys Anal Geom Mathematical Physics Analysis and Geometry = Math. Phys. Anal. Geom. Mathematical Physics and Applied Mathematics = Math. Phys. Appl. Math. Mathematical Physics Electronic Journal = Math. Phys. Electron. J. Mathematical Physics of Quantum Mechanics = Lect Notes Phys Mathematical Physics of Quantum Mechanics = Lect. Notes. Phys. Mathematical Physics Studies = Math Phys S Mathematical Physics Studies = Math. Phys. S. Mathematical Physics Studies = Math. Phys. Stud. Mathematical Population Dynamics = Lect Notes Pure Appl Mathematical Population Dynamics = Lect. Notes. Pure. Appl. Mathematical population studies = Math Popul Stud Mathematical Population Studies = Math Popul Stud Mathematical Population Studies = Math. Popul. Stud. Mathematical Problems in Engineering = Math Probl Eng Mathematical Problems in Engineering = Math. Probl. Eng. Mathematical Problems in Seminconductor Physics = Lect Notes Math Mathematical Problems in Seminconductor Physics = Lect. Notes. Math. Mathematical Proceedings of The Cambridge Philosophical Society = Math Proc Cambridge Mathematical Proceedings of The Cambridge Philosophical Society = Math. Proc. Cambridge Mathematical Proceedings of the Cambridge Philosophical Society = Math. Proc. Cambridge Philos. Soc. Mathematical Proceedings of the Cambridge Philosophical Society = Math. Proc. Cambridge Philos. Soc. Mathematical Programming and Game Theory for Decision Making = Stat Sci Interdisc R Mathematical Programming and Game Theory for Decision Making = Stat. Sci. Interdisc. R. Mathematical Programming = Appl Manag Sci Mathematical Programming = Appl. Manag. Sci. Mathematical Programming = Math Program Mathematical Programming = Math. Program. Mathematical Programming = Math. Programming Mathematical Programming Study = Math Program Stud Mathematical Programming Study = Math. Program. Stud. Mathematical Properties of Sequences and Other Combinatorial Structures = Kluwer Int Ser Eng C Mathematical Properties of Sequences and Other Combinatorial Structures = Kluwer. Int. Ser. Eng. C. Mathematical Properties of Sequences and Other Combinatorial Structures = Springer Int Ser Eng Mathematical Properties of Sequences and Other Combinatorial Structures = Springer. Int. Ser. Eng. Mathematical Relationships in Education: Identities and Participation = Routl Res Educ Mathematical Relationships in Education: Identities and Participation = Routl. Res. Educ. Mathematical Reports = Math Rep Mathematical Reports = Math. Rep. Mathematical Representation At The Interface of Body and Culture = Int Perspect Math Ed Mathematical Representation At The Interface of Body and Culture = Int. Perspect. Math. Ed. Mathematical Research Letters = Math. Res. Lett. Mathematical Research Letters = Math Res Lett Mathematical Research Letters = Math. Res. Lett. Mathematical Research = Math. Res. Mathematical Research = Math Res Mathematical Research = Math. Res. Mathematical Research Today and Tomorrow = Lect Notes Math Mathematical Research Today and Tomorrow = Lect. Notes. Math. Mathematical Results in Quantum Mechanics = Oper Theor Mathematical Results in Quantum Mechanics = Oper. Theor. Mathematical Results in Quantum Mechanics = Oper Theory Adv Appl Mathematical Results in Quantum Mechanics = Oper. Theory. Adv. Appl. Mathematical Reviews = MR Mathematical Sciences Reference Series = Math. Sci. Ref. Ser. Mathematical Sciences Research Hot-Line = Math. Sci. Res. Hot-Line Mathematical Sciences Research Institute Publications = Math Sci R Mathematical Sciences Research Institute Publications = Math. Sci. R. Mathematical Sciences Research Institute Publications = Math. Sci. Res. Inst. Publ. Mathematical Social Sciences = Math. Social Sci. Mathematical social sciences = Math Soc Sci Mathematical Social Sciences=Math. Soc. Sci. Mathematical Social Sciences = Math Soc Sci Mathematical Social Sciences = Math. Soc. Sci. Mathematical Software-icms 2006, Proceedings = Lect Notes Comput Sc Mathematical Software-icms 2006, Proceedings = Lect. Notes. Comput. Sc. Mathematical Software - Icms 2010 = Lect Notes Comput Sc Mathematical Software - Icms 2010 = Lect. Notes. Comput. Sc. Mathematical Structures for Software Engineering = Inst Math C Mathematical Structures for Software Engineering = Inst. Math. C. Mathematical Structures in Computer Science = Math Struct Comp Sci Mathematical Structures in Computer Science = Math. Struct. Comp. Sci. Mathematical Structures in Computer Science = Math. Structures Comput. Sci. Mathematical Studies in Nonlinear Wave Propagation = Contemp Math Mathematical Studies in Nonlinear Wave Propagation = Contemp. Math. Mathematical Studies On Human Disease Dynamics: Emerging Paradigms and Challenges = Contemp Math Mathematical Studies On Human Disease Dynamics: Emerging Paradigms and Challenges = Contemp. Math. Mathematical Surveys and Monographs = Math. Surveys Monogr. Mathematical Systems Theory in Biology, Communications, Computation, and Finance = Ima V Math Mathematical Systems Theory in Biology, Communications, Computation, and Finance = Ima. V. Math. Mathematical Systems Theory in Biology, Communications, Computation, and Finance = Ima Vol Math Appl Mathematical Systems Theory in Biology, Communications, Computation, and Finance = Ima. Vol. Math. Appl. Mathematical Systems Theory = Math Syst Theory Mathematical Systems Theory = Math. Syst. Theory Mathematical Theory and Computational Practice = Lect Notes Comput Sc Mathematical Theory and Computational Practice = Lect. Notes. Comput. Sc. Mathematical Theory of Adaptive Control = Interd Math Sci Mathematical Theory of Adaptive Control = Interd. Math. Sci. Mathematical Theory of Control = Lect Notes Pure Appl Mathematical Theory of Control = Lect. Notes. Pure. Appl. Mathematical Theory of Dispersion-managed Optical Solitons = Nonlinear Phys Sci Mathematical Theory of Dispersion-managed Optical Solitons = Nonlinear. Phys. Sci. Mathematical Theory of Feynman Path Integrals: An Introduction = Lect Notes Math Mathematical Theory of Feynman Path Integrals: An Introduction = Lect. Notes. Math. Mathematical Theory of Nonequilibrium Steady States: On The Frontier of Probability and Dynamical Systems = Lect Notes Math Mathematical Theory of Nonequilibrium Steady States: On The Frontier of Probability and Dynamical Systems = Lect. Notes. Math. Mathematical Theory of Queueing Systems = Queueing Sy Mathematical Theory of Queueing Systems = Queueing Sy. Mathematical Thinking and Learning = Math Think Learn Mathematical Thinking and Learning = Math. Think. Learn. Mathematical Tools for Data Mining = Adv Inform Knowl Pro Mathematical Tools for Data Mining = Adv. Inform. Knowl. Pro. Mathematical Topics = Math. Top. Mathematical Vistas : Papers From The Mathematics Section = Ann Ny Acad Sci Mathematical Vistas : Papers From The Mathematics Section = Ann. Ny. Acad. Sci. Mathematical World = Math. World Mathematica = Mathematica Mathematica Montisnigri = Math. Montisnigri Mathematica Numerica Sinica = Math. Numer. Sin. Mathematica Numerica Sinica = Math. Numer. Sinica Mathematica Pannonica = Math. Pannon. Mathematica Scandinavica = Math. Scand. Mathematica Scandinavica = Math Scand Mathematica Scandinavica = Math. Scand. Mathematica Slovaca = Math. Slovaca Mathematica Slovaca = Math Slovaca Mathematica Slovaca = Math. Slovaca Mathematicians At War: Volterra and His French Colleagues in World War I = Archimedes Mathematicians At War: Volterra and His French Colleagues in World War I = Archimedes. Mathematics and Applications of Data/image Coding, Compression, and Encryption Iii = Proc Spie Mathematics and Applications of Data/image Coding, Compression, and Encryption Iii = Proc. Spie. Mathematics and Applications of Data/image Coding, Compression, and Encryption Iii = P Soc Photo-opt Ins Mathematics and Applications of Data/image Coding, Compression, and Encryption Iii = P. Soc. Photo-opt. Ins. Mathematics and Art = Math Visual Mathematics and Art = Math. Visual. Mathematics and Astronomy: A Joint Long Journey = Aip Conf Proc Mathematics and Astronomy: A Joint Long Journey = Aip. Conf. Proc. Mathematics and Biosciences in Interaction = Math Biosci Interac Mathematics and Biosciences in Interaction = Math. Biosci. Interac. Mathematics and Biosciences in Interaction = Math. Biosci. Interact. Mathematics and Biosciences in Interaction = Math Biosci Interact Mathematics and Biosciences in Interaction = Math. Biosci. Interact. Mathematics and Computation, A Contemporary View: The Abel Symposium 2006 = Abel Symp Mathematics and Computation, A Contemporary View: The Abel Symposium 2006 = Abel Symp. Mathematics and Computation in Music = Comm Com Inf Sc Mathematics and Computation in Music = Comm. Com. Inf. Sc. Mathematics and Computer Science Iii: Algorithms, Trees, Combinatorics and Probabilities = Trends Math Mathematics and Computer Science Iii: Algorithms, Trees, Combinatorics and Probabilities = Trends. Math. Mathematics and Computer Science Ii = Trends Math Mathematics and Computer Science Ii = Trends. Math. Mathematics and Computer Science = Trends Math Mathematics and Computer Science = Trends. Math. Mathematics and Computers in Biology and Chemistry = Rec Adv Biol Biomed Mathematics and Computers in Biology and Chemistry = Rec. Adv. Biol. Biomed. Mathematics and Computers in Science and Engineering = Ma Comput Sci Eng Mathematics and Computers in Science and Engineering = Ma. Comput. Sci. Eng. Mathematics and Computers in Science and Engineering = Math Comput Sci Eng Mathematics and Computers in Science and Engineering = Math. Comput. Sci. Eng. Mathematics and computers in simulation = Math Comput Simul Mathematics and Computers in Simulation = Math. Comput. Simul Mathematics and Computers in Simulation = Math Comput Simulat Mathematics and Computers in Simulation = Math. Comput. Simulat. Mathematics and Computers in Simulation = Math. Comput. Simulation Mathematics and Control in Smart Structures = P Soc Photo-opt Ins Mathematics and Control in Smart Structures = P. Soc. Photo-opt. Ins. Mathematics and Control in Smart Structures - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Mathematics and Control in Smart Structures - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Mathematics and Democracy: Recent Advances in Voting Systems and Collective Choice = Studies Choice Welfa Mathematics and Democracy: Recent Advances in Voting Systems and Collective Choice = Studies. Choice Welfa. Mathematics and its Applications (China Series) = Math. Appl. (China Ser.) Mathematics and Its Applications : Chinese Series = Math Appl C Mathematics and Its Applications : Chinese Series = Math. Appl. C. Mathematics and Its Applications = Math Appl Mathematics and Its Applications = Math. Appl. Mathematics and Mathematical Logic: New Research = Math Res Dev Mathematics and Mathematical Logic: New Research = Math. Res. Dev. Mathematics and Mechanics of Solids = Math. Mech. Solids Mathematics and Mechanics of Solids = Math Mech Solids Mathematics and Mechanics of Solids = Math. Mech. Solids Mathematics and The Aesthetic: New Approaches to and Ancient Affinity = Cms Books Math Mathematics and The Aesthetic: New Approaches to and Ancient Affinity = Cms. Books. Math. Mathematics and Topology of Fullerenes = Carbon Mater-chem Ph Mathematics and Topology of Fullerenes = Carbon. Mater-chem. Ph. Mathematics and Visualization = Math Vis Mathematics and Visualization = Math. Vis. Mathematics and Visualization = Math Visual Mathematics and Visualization = Math. Visual. Mathematics Applied to Continuum Mechanics = Class Appl Math Mathematics Applied to Continuum Mechanics = Class. Appl. Math. Mathematics As A Constructive Activity: Learners Generating Examples = Stud Math Think Lear Mathematics As A Constructive Activity: Learners Generating Examples = Stud. Math. Think. Lear. Mathematics, Developmental Biology and Tumour Growth = Contemp Math Mathematics, Developmental Biology and Tumour Growth = Contemp. Math. Mathematics Education and Language: Interpreting Hermeneutics and Post-structuralism = Math Educ Lib Mathematics Education and Language: Interpreting Hermeneutics and Post-structuralism = Math. Educ. Lib. Mathematics, Education, and Society = Sci Tech Ed Mathematics, Education, and Society = Sci. Tech. Ed. Mathematics Education and Technology - Rethinking The Terrain: The 17th Icmi Study = New Icmi Stud Ser Mathematics Education and Technology - Rethinking The Terrain: The 17th Icmi Study = New. Icmi Stud. Ser. Mathematics Education and The Legacy of Zoltan Paul Dienes = Mont Math Enthus Mon Mathematics Education and The Legacy of Zoltan Paul Dienes = Mont. Math. Enthus. Mon. Mathematics Education in Different Cultural Traditions: A Comparative Study of East Asia and The West = New Icmi Stud Ser Mathematics Education in Different Cultural Traditions: A Comparative Study of East Asia and The West = New. Icmi. Stud. Ser. Mathematics Education Library = Math. Ed. Lib. Mathematics Education Library = Math Educ Lib Mathematics Education Library = Math. Educ. Lib. Mathematics for Ecology and Environmental Sciences = Biol Med Phys Biomed Mathematics for Ecology and Environmental Sciences = Biol. Med. Phys. Biomed. Mathematics for Life Science and Medicine = Biol Med Phys Biomed Mathematics for Life Science and Medicine = Biol. Med. Phys. Biomed. Mathematics in Finance = Contemp Math Mathematics in Finance = Contemp. Math. Mathematics in Industry = Math Indust Mathematics in Industry = Math. Indust. Mathematics in Practice and Theory = Math. Practice Theory Mathematics in Science and Engineering = Math. Sci. Engrg. Mathematics in Signal Processing Iv = Inst Math C Mathematics in Signal Processing Iv = Inst. Math. C. Mathematics in Signal Processing V = Inst Math C Mathematics in Signal Processing V = Inst. Math. C. Mathematics in Smart Structures = P Soc Photo-opt Ins Mathematics in Smart Structures = P. Soc. Photo-opt. Ins. Mathematics Journal of Toyama University = Math. J. Toyama Univ. Mathematicsl Methods in the Applied Sciences = Math. Methods Appl. Sci. Mathematics Magazine = Math. Mag. Mathematics Magazine = Math Mag Mathematics Magazine = Math. Mag. Mathematics of Computation = Math. Comp. Mathematics of Computation = Math Comput Mathematics of Computation = Math. Comput. Mathematics of Control Signals and Systems = Math Control Signal Mathematics of Control Signals and Systems = Math. Control Signal. Mathematics of Control, Signals, and Systems = Math. Control Signals Systems Mathematics of Darwin's Legacy = Math Biosci Interact Mathematics of Darwin's Legacy = Math. Biosci. Interact. Mathematics of Data/image Coding, Compression,and Encryption Ii = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression,and Encryption Ii = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption Iv, With Applications = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption Iv, With Applications = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption Vii, With Applications = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption Vii, With Applications = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption Vi, With Applications = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption Vi, With Applications = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption V, With Applications = Proc Spie Mathematics of Data/image Coding, Compression, and Encryption V, With Applications = Proc. Spie. Mathematics of Data/image Coding, Compression, and Encryption V, With Applications = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption V, With Applications = P. Soc. Photo-opt. Ins. Mathematics of Data/image Coding, Compression, and Encryption With Applications Xii = Proc Spie Mathematics of Data/image Coding, Compression, and Encryption With Applications Xii = Proc. Spie. Mathematics of Data/image Coding, Compression, and Encryption With Applications Xii = P Soc Photo-opt Ins Mathematics of Data/image Coding, Compression, and Encryption With Applications Xii = P. Soc. Photo-opt. Ins. Mathematics of Data Image Pattern Recognition, Compression, and Encryption With Applications Ix = Proc Spie Mathematics of Data Image Pattern Recognition, Compression, and Encryption With Applications Ix = Proc. Spie. Mathematics of Data Image Pattern Recognition, Compression, and Encryption With Applications Ix = P Soc Photo-opt Ins Mathematics of Data Image Pattern Recognition, Compression, and Encryption With Applications Ix = P. Soc. Photo-opt. Ins. Mathematics of Data/image Pattern Recognition, Compression, and Encryption With Applications Xi = P Soc Photo-opt Ins Mathematics of Data/image Pattern Recognition, Compression, and Encryption With Applications Xi = P. Soc. Photo-opt. Ins. Mathematics of Data/image Pattern Recognition, Compression, Coding, and Encryption X, With Applications = Proc Spie Mathematics of Data/image Pattern Recognition, Compression, Coding, and Encryption X, With Applications = Proc. Spie. Mathematics of Data/image Pattern Recognition, Compression, Coding, and Encryption X, With Applications = P Soc Photo-opt Ins Mathematics of Data/image Pattern Recognition, Compression, Coding, and Encryption X, With Applications = P. Soc. Photo-opt. Ins. Mathematics of Dna Structure, Function and Interactions = Ima V Math Mathematics of Dna Structure, Function and Interactions = Ima. V. Math. Mathematics of Dna Structure, Function and Interactions = Ima Vol Math Appl Mathematics of Dna Structure, Function and Interactions = Ima. Vol. Math. Appl. Mathematics of Fuzziness-basic Issues = Stud Fuzz Soft Comp Mathematics of Fuzziness-basic Issues = Stud. Fuzz. Soft. Comp. Mathematics of Generalization = Sfi S Sci C Mathematics of Generalization = Sfi. S. Sci. C. Mathematics of Harmony: From Euclid to Contemporary Mathematics and Computer Science = Ser Knots Everything Mathematics of Harmony: From Euclid to Contemporary Mathematics and Computer Science = Ser. Knots. Everything. Mathematics of Heat Transfer = Inst Math A Mathematics of Heat Transfer = Inst. Math. A. Mathematics of Knots: Theory and Application = Contrib Math Comput Mathematics of Knots: Theory and Application = Contrib. Math. Comput. Mathematics of Long-range Aperiodic Order = Nato Adv Sci I C-mat Mathematics of Long-range Aperiodic Order = Nato. Adv. Sci. I. C-mat. Mathematics of Marriage: Dynamic Nonlinear Models = Bradford Books Mathematics of Marriage: Dynamic Nonlinear Models = Bradford. Books. Mathematics of Minkowski Space-time: With An Introduction to Commutative Hypercomplex Numbers = Front Math Mathematics of Minkowski Space-time: With An Introduction to Commutative Hypercomplex Numbers = Front. Math. Mathematics of Operations Research = Math. Oper. Res. Mathematics of Operations Research = Math Oper Res Mathematics of Operations Research = Math. Oper. Res. Mathematics of Preference, Choice and Order: Essays in Honor of Peter C. Fishburn = Stud Choice Welf Mathematics of Preference, Choice and Order: Essays in Honor of Peter C. Fishburn = Stud. Choice Welf. Mathematics of Program Consstruction = Lect Notes Comput Sc Mathematics of Program Consstruction = Lect. Notes. Comput. Sc. Mathematics of Program Construction = Lect Notes Comput Sc Mathematics of Program Construction = Lect. Notes. Comput. Sc. Mathematics of Program Construction, Proceedings = Lect Notes Comput Sc Mathematics of Program Construction, Proceedings = Lect. Notes. Comput. Sc. Mathematics of Surfaces, Proceedings = Lect Notes Comput Sc Mathematics of Surfaces, Proceedings = Lect. Notes. Comput. Sc. Mathematics of Surfaces Xiii = Lect Notes Comput Sc Mathematics of Surfaces Xiii = Lect. Notes. Comput. Sc. Mathematics of Surfaces Xii, Proceedings = Lect Notes Comput Sc Mathematics of Surfaces Xii, Proceedings = Lect. Notes. Comput. Sc. Mathematics of Syntactic Structure = Stud Genera Grammar Mathematics of Syntactic Structure = Stud. Genera. Grammar. Mathematics of The Internet = Ima V Math Mathematics of The Internet = Ima. V. Math. Mathematics of The Internet = Ima Vol Math Appl Mathematics of The Internet = Ima. Vol. Math. Appl. Mathematics of The Ussr-izvestiya = Math Ussr Izv+ Mathematics of The Ussr-izvestiya = Math. Ussr. Izv+.+ Mathematics of The Ussr-sbornik = Math Ussr Sb+ Mathematics of The Ussr-sbornik = Math. Ussr. Sb+.+ Mathematics Research Developments = Math Res Dev Mathematics Research Developments = Math. Res. Dev. Mathematics Teacher Education = Math Teach Educ Mathematics Teacher Education = Math. Teach. Educ. Mathematics Teacher Noticing: Seeing Through Teachers Eyes = Stud Math Think Lear Mathematics Teacher Noticing: Seeing Through Teachers Eyes = Stud. Math. Think. Lear. Mathematics Teachers At Work: Connecting Curriculum Materials and Classroom Instruction = Stud Math Think Lear Mathematics Teachers At Work: Connecting Curriculum Materials and Classroom Instruction = Stud. Math. Think. Lear. Mathematics Teaching, Learning, and Liberation in The Lives of Black Children = Stud Math Think Lear Mathematics Teaching, Learning, and Liberation in The Lives of Black Children = Stud. Math. Think. Lear. Mathematics Today (Ahmedabad) = Math. Today (Ahmedabad) Mathematics Today = Math. Today Mathematics Today = Math. Today (Southend-on-Sea) Mathematika = Mathematika Mathematika = Mathematika Mathematik für Ingenieure und Naturwissenschaftler = Math. Ingen. Naturwiss. Mathematiques & Applications = Math Appl-berlin Mathematiques & Applications = Math. Appl-berlin. Mathématiques Appliquées = Math. Appl. Mathématiques Informatique et Sciences Humaines = Math. Inform. Sci. Humaines Mathématiques = Mathématiques Mathematisch-Astronomische Blätter---Neue Folge = Math.-Astronom. Blätter---N.F. Mathematische Annalen = Math. Ann. Mathematische Annalen = Math Ann Mathematische Annalen = Math. Ann. Mathematische Leitfäden = Math. Leitfäden Mathematische Nachrichten = Math. Nachr. Mathematische Nachrichten = Math Nachr Mathematische Nachrichten = Math. Nachr. Mathematische Semesterberichte = Math. Semesterber. Mathematische Texte = Math. Texte Mathematische und Naturwissenschaftliche Unterricht = Math. Naturwiss. Unterr. Mathematische Zeitschrift = Math. Z. Mathematische Zeitschrift = Math Z Mathematische Zeitschrift = Math. Z. Mathesis = Mathesis Matheuristics: Hybridizing Metaheuristics and Mathematical Programming = Ann Inform Syst Matheuristics: Hybridizing Metaheuristics and Mathematical Programming = Ann. Inform. Syst. Mathknow: Mathematics, Applied Sciences and Real Life = Ms&a Modeling Simula Mathknow: Mathematics, Applied Sciences and Real Life = Ms&a. Modeling. Simula. Mathware & Soft Computing = Mathware Soft Comput. Matimyás Matematika = Matimyás Mat. Matlab Codes for Finite Element Analysis: Solids and Structures = Solid Mech Appl Matlab Codes for Finite Element Analysis: Solids and Structures = Solid. Mech. Appl. Matrices, Moments and Quadrature With Applications = Princ Ser Appl Math Matrices, Moments and Quadrature With Applications = Princ. Ser. Appl. Math. Matrices: Theory and Applications, Second Edition = Grad Texts Math Matrices: Theory and Applications, Second Edition = Grad. Texts. Math. Matrix-analytic Methods in Stochastic Models = Lect Notes Pure Appl Matrix-analytic Methods in Stochastic Models = Lect. Notes. Pure. Appl. Matrix and Tensor Quarterly = Matrix Tensor Quart Matrix and Tensor Quarterly = Matrix Tensor Quart. Matrix-based Multigrid: Theory and Applications, Second Edition = Numer Methods Algori Matrix-based Multigrid: Theory and Applications, Second Edition = Numer. Methods. Algori. Matrix biology : journal of the International Society for Matrix Biology = Matrix Biol Matrix Biology=Matrix Biol;; Matrix Biology = Matrix Biol Matrix Biology = Matrix Biol. Matrix Convolution Operators On Groups = Lect Notes Math Matrix Convolution Operators On Groups = Lect. Notes. Math. Matrix Eigenvalue Problem: Gr and Krylov Subspace Methods = Other Titl Appl Math Matrix Eigenvalue Problem: Gr and Krylov Subspace Methods = Other. Titl. Appl. Math. Matrix Inequalities = Lect Notes Math Matrix Inequalities = Lect. Notes. Math. Matrix = Matrix Matrix Metalloproteinase Protocols, Second Edition = Methods Mol Biol Matrix Metalloproteinase Protocols, Second Edition = Methods. Mol. Biol. Matrix Methods in Data Mining and Pattern Recognition = Fund Algorithms Matrix Methods in Data Mining and Pattern Recognition = Fund. Algorithms. Matrix Polynomials = Class Appl Math Matrix Polynomials = Class. Appl. Math. Matrix (Stuttgart, Germany) = Matrix Matrix (Stuttgart, Germany). Supplement = Matrix Suppl Matrix. Supplement = Matrix. Suppl. Matter and Energy in Clusters of Galaxies, Proceedings = Astr Soc P Matter and Energy in Clusters of Galaxies, Proceedings = Astr. Soc. P. Matter and Mind: A Philosophical Inquiry = Bost Stud Philos Sci Matter and Mind: A Philosophical Inquiry = Bost. Stud. Philos. Sci. Matter At High Densities in Astrophysics = Springer Tr Mod Phys Matter At High Densities in Astrophysics = Springer. Tr. Mod. Phys. Matthew's Messianic Shepherd-king: in Search of The Lost Sheep of The House of Israel = Beih Z Neutest Wiss Matthew's Messianic Shepherd-king: in Search of The Lost Sheep of The House of Israel = Beih. Z. Neutest. Wiss. Maturing Usability: Quality in Software, Interaction and Value = Hum-comput Int-sprin Maturing Usability: Quality in Software, Interaction and Value = Hum-comput. Int-sprin. Maturitas=Maturitas;; Maturitas = Maturitas Maulana Azad College of Technology = J. Maulana Azad College Tech. Mau Mau in Harlem: The U S and The Liberation of Kenya = Contemp Black Hist Mau Mau in Harlem: The U S and The Liberation of Kenya = Contemp. Black. Hist. Maury Workshop On The History of Polar Oceanography = Maury Worksh Hist Po Maury Workshop On The History of Polar Oceanography = Maury Worksh. Hist. Po. Mausam = Mausam Maven in Blue Jeans: A Festschrift in Honor of Zev Garber = Shofar Suppl Jew Stu Maven in Blue Jeans: A Festschrift in Honor of Zev Garber = Shofar. Suppl. Jew. Stu. Mawazo = Mawazo Max Brod in Prague: Identity and Mediation = Conditio Jud Max Brod in Prague: Identity and Mediation = Conditio. Jud. Maximising The Value of Marine By-products = Woodhead Food Ser Maximising The Value of Marine By-products = Woodhead. Food. Ser. Maximizing The Security and Development Benefits From The Biological and Toxin Weapons Convention = Nato Sci Prt 1 Disar Maximizing The Security and Development Benefits From The Biological and Toxin Weapons Convention = Nato. Sci. Prt. 1. Disar. Maximum Entropy and Bayesian Methods = Fund Theor Maximum Entropy and Bayesian Methods = Fund. Theor. Maximum Entropy and Bayesian Methods / = Fund Theor Maximum Entropy and Bayesian Methods / = Fund. Theor. Maximum Entropy and Bayesian Methods // = Fund Theor Maximum Entropy and Bayesian Methods // = Fund. Theor. Maximum Entropy and Bayesian Methods /// = Fund Theor Maximum Entropy and Bayesian Methods /// = Fund. Theor. Maximum Entropy and Bayesian Methods = Fund Theor Phys Maximum Entropy and Bayesian Methods = Fund. Theor. Phys. Maximum Entropy and Bayesian Methods - Proceedings of The Fourteenth International Workshop On Maximum Entropy and Bayesian Methods, Cambridge, England, 1994 = Fund Theor Maximum Entropy and Bayesian Methods - Proceedings of The Fourteenth International Workshop On Maximum Entropy and Bayesian Methods, Cambridge, England, 1994 = Fund. Theor. Maximum Entropy and Bayesian Methods - Proceedings of The Thirteenth International Workshop On Maximum Entropy and Bayesian Methods, Santa Barbara, California, U.s.a., 1993 = Fund Theor Maximum Entropy and Bayesian Methods - Proceedings of The Thirteenth International Workshop On Maximum Entropy and Bayesian Methods, Santa Barbara, California, U.s.a., 1993 = Fund. Theor. Maximum Likelihood Estimation of Misspecified Models: Twenty Years Later = Adv Econometrics Maximum Likelihood Estimation of Misspecified Models: Twenty Years Later = Adv. Econometrics. Maximum Penalized Likelihood Estimation, Vol Ii: Regression = Springer Ser Stat Maximum Penalized Likelihood Estimation, Vol Ii: Regression = Springer. Ser. Stat. Maximum Principle = Prog Nonlinear Diffe Maximum Principle = Prog. Nonlinear. Diffe. Maximum Principles and Eigenvalue Problems in Partial Differential Equations = Pitman Res Maximum Principles and Eigenvalue Problems in Partial Differential Equations = Pitman. Res. Max-linear Systems: Theory and Algorithms = Springer Monogr Math Max-linear Systems: Theory and Algorithms = Springer. Monogr. Math. Max Planck Institute for Comparative Public Law and International Law = World Court Dig Max Planck Institute for Comparative Public Law and International Law = World. Court. Dig. Max Planck Series On Asian Intellectual Property Law = Max Planck Series Maxwell review = Maxwell Rev Mayan = Mayan Maydica = Maydica Mayo Clinic health letter (English ed.) = Mayo Clin Health Lett Mayo Clinic Health Letter = Mayo Clin. Health Lett. Mayo Clinic proceedings. Mayo Clinic = Mayo Clin Proc Mayo Clinic Proceedings=Mayo Clin Proc;; Mayo Clinic Proceedings = Mayo Clin Proc Mayo Clinic Proceedings = Mayo Clin. Proc. Mayo Clinic women's healthsource = Mayo Clin Womens Healthsource Mayoral Control of The New York City Schools = Springer Stud Work I Mayoral Control of The New York City Schools = Springer. Stud. Work. I. Mazingira = Mazingira Mbio = Mbio MBM Metal Bulletin Monthly = MBM Met. Bull. Mon. M & B pharmaceutical bulletin = M B Pharm Bull Mcbc'09: Proceedings of The 10th Wseas International Conference On Mathematics and Computers in Biology and Chemistry = Rec Adv Biol Biomed Mcbc'09: Proceedings of The 10th Wseas International Conference On Mathematics and Computers in Biology and Chemistry = Rec. Adv. Biol. Biomed. McCall's (Los Angeles, Calif. : 1921) = McCalls Mcfarland Series of Rutgers Scils Symposia = Mc F S Rutg Mcfarland Series of Rutgers Scils Symposia = Mc. F. S. Rutg. McGeorge law review = McGeorge Law Rev McGill Dental Review = McGill Dent. Rev. Mcgill European Studies = Mcgill Euro Studies Mcgill European Studies = Mcgill Euro. Studies Mcgill International Entrepreneurship Series = Mcgill Int Entrepr S Mcgill International Entrepreneurship Series = Mcgill Int. Entrepr. S. Mcgill International Entrepreneurship Series = Mcgill Intl Entrepre Mcgill International Entrepreneurship Series = Mcgill Intl. Entrepre. McGill journal of education = McGill J Educ Mcgill Law Journal = Mcgill Law J Mcgill Law Journal = Mcgill Law J. McGill law journal. Revue de droit de McGill = McGill Law J McGill medical journal = Mcgill Med J Mcgill Queens Associated Medical Services Studies in The History of Medicine Health and Society = Mcgill Queens Assoc Mcgill Queens Associated Medical Services Studies in The History of Medicine Health and Society = Mcgill Queens Assoc. McGill-Queen's/Hannah Institute studies in the history of medicine, health, and society = Mcgill Queens Hannah Inst Stud Hist Med Health Soc Mcgill-queens Studies in The History of Religion = Mq Stud Hist Relig Mcgill-queens Studies in The History of Religion = Mq. Stud. Hist. Relig. Mcgill Studies in Religion = Mcgill Stud Relig Mcgill Studies in Religion = Mcgill Stud. Relig. McGraw-Hill's Medicine and Health = McGraw Hills Med. Health McGraw-Hill's medicine & health = Mcgraw Hills Med Health McGraw-Hill's Washington Report on Medicine and Health = McGraw Hills Wash. Rep. Med. Health McGraw-Hill's Washington report on medicine & health = Mcgraw Hills Wash Rep Med Health MCH news PAC = MCH News PAC McKinney's Consolidated laws of New York annotated : with annotations from state and federal courts and state agencies. New York (State) = McKinneys Consol Laws N Y Annot N Y State Mcmaster New Testament Studies = Mcmaster New Test St Mcmaster New Testament Studies = Mcmaster New Test. St. Mcmaster Symposia On Iron and Steelmaking = Mcmaster S Mcmaster Symposia On Iron and Steelmaking = Mcmaster S. MCN; American Journal of Maternal Child Nursing=MCN Am J Matern Child Nurs;; MCN; American Journal of Maternal Child Nursing = MCN. Am. J. Matern. Child Nurs. Mcn-the American Journal of Maternal-child Nursing = Mcn-am J Matern-chil Mcn-the American Journal of Maternal-child Nursing = Mcn-am. J. Matern-chil. MCN. The American journal of maternal child nursing = MCN Am J Matern Child Nurs Mcr 2009: Proceedings of The 4th International Conference On Multi-component Reactions and Related Chemistry = Adv Exp Med Biol Mcr 2009: Proceedings of The 4th International Conference On Multi-component Reactions and Related Chemistry = Adv. Exp. Med. Biol. M. Crawford, Roman Republican Coinage (London 1974) = RRC Md Anderson Cancer Care Series = M D Anderson Cancer Md Anderson Cancer Care Series = M. D. Anderson Cancer Md Anderson Solid Tumor Oncology Series = Md Anderson Solid Tu Md Anderson Solid Tumor Oncology Series = Md Anderson Solid Tu. M.D. computing : computers in medical practice = MD Comput Md Computing=MD Comput;; M D Computing = M D Comput M D Computing = M D Comput. MD Computing = MD Comput. MD = MD MD medical newsmagazine = MD Mead Johnson Symposium on Perinatal and Developmental Medicine = Mead Johnson Symp Perinat Dev Med Mead Johnson Symposium on Perinatal and Developmental Medicine = Mead Johnson Symp. Perinat. Dev. Med. Meals in Science and Practice = Woodhead Food Ser Meals in Science and Practice = Woodhead. Food. Ser. Mean Curvature Flow and Isoperimetric Inequalities = Adv Courses Math Crm Mean Curvature Flow and Isoperimetric Inequalities = Adv. Courses. Math. Crm. Meander = Meander Meander. Miesięcznik poświęcony kulturze świata starożytnego = Meander Mean Field Models for Spin Glasses: Basic Examples, Vol 1 = Ergeb Math Grenzgeb Mean Field Models for Spin Glasses: Basic Examples, Vol 1 = Ergeb. Math. Grenzgeb. Meaning and Analysis: New Essays On Grice = Palg Stud Pragm Lang Meaning and Analysis: New Essays On Grice = Palg. Stud. Pragm. Lang. Meaning and Language: Phenomenological Perspectives = Phaenomenologica Meaning and Language: Phenomenological Perspectives = Phaenomenologica. Meaning and Measurement of Social Support = Ser Clin C Meaning and Measurement of Social Support = Ser. Clin. C. Meaningful Play, Playful Meaning = Assoc Anthr Meaningful Play, Playful Meaning = Assoc. Anthr. Meaning in Mathematics Education Vol 37 = Math Educ Lib Meaning in Mathematics Education Vol 37 = Math. Educ. Lib. Meaning in The Second Language = Stud Lang Acquis Meaning in The Second Language = Stud. Lang. Acquis. Meaning of Activities in The Dwelling and Residential Environment: A Structural Approach in People-environment Relations = Sustain Urban Areas Meaning of Activities in The Dwelling and Residential Environment: A Structural Approach in People-environment Relations = Sustain. Urban. Areas. Meaning of Life in Romantic Poetry and Poetics = Routl Stud Romantic Meaning of Life in Romantic Poetry and Poetics = Routl. Stud. Romantic Meaning of Photography = Clark Stud Vis Arts Meaning of Photography = Clark. Stud. Vis. Arts. Meanings in Texts and Actions : Questioning Paul Ricoeur = St Rel Cult Meanings in Texts and Actions : Questioning Paul Ricoeur = St. Rel. Cult. Meaning: The Dynamic Turn = Cur Res Sem Prag Int Meaning: The Dynamic Turn = Cur. Res. Sem. Prag. Int. Meaning: The Dynamic Turn = Curr Res Semant Prag Meaning: The Dynamic Turn = Curr. Res. Semant. Prag. Meaning Through Language Contrast, Vol 1 = Prag Beyond New Ser Meaning Through Language Contrast, Vol 1 = Prag. Beyond. New. Ser. Meaning Through Language Contrast, Vol 2 = Prag Beyond New Ser Meaning Through Language Contrast, Vol 2 = Prag. Beyond. New. Ser. Meanjin = Meanjin Mean Oscillations and Equimeasurable Rearrangements of Functions = Lect Notes Unione Ma Mean Oscillations and Equimeasurable Rearrangements of Functions = Lect. Notes. Unione. Ma. Means, Ends and Medical Care = Philos Med Means, Ends and Medical Care = Philos. Med. Means of Hilbert Space Operators = Lect Notes Math Means of Hilbert Space Operators = Lect. Notes. Math. Means-tested Transfer Programs in The United States = Nber Conf R Means-tested Transfer Programs in The United States = Nber. Conf. R. Measles: History and Basic Biology = Curr Top Microbiol Measles: History and Basic Biology = Curr. Top. Microbiol. Measles: Pathogenesis and Control = Curr Top Microbiol Measles: Pathogenesis and Control = Curr. Top. Microbiol. Measles Virus = Curr Top Microbiol Measles Virus = Curr. Top. Microbiol. Measure and Quality Control in Production = Vdi Bericht Measure and Quality Control in Production = Vdi. Bericht. Measured Quantum Groupoids in Action = Mem Soc Math Fr Measured Quantum Groupoids in Action = Mem. Soc. Math. Fr. Measured Quantum Groupoids = Mem Soc Math Fr Measured Quantum Groupoids = Mem. Soc. Math. Fr. Measurement and Control = Meas Control Measurement and Control = Meas. Control Measurement and Evaluation in Counseling and Development = Meas Eval Couns Dev Measurement and Evaluation in Counseling and Development = Meas. Eval. Couns. Dev. Measurement and Evaluation in Guidance = Meas Eval Guid Measurement and Evaluation in Guidance = Meas. Eval. Guid. Measurement and Interpretation of The On-site Corrosion Rate = Rilem Proc Measurement and Interpretation of The On-site Corrosion Rate = Rilem. Proc. Measurement and Prevention of Boar Taint in Entire Male Pigs = Colloq Inra Measurement and Prevention of Boar Taint in Entire Male Pigs = Colloq. Inra. Measurement and Regulation Technology in Wastewater Treatment Plants - Concepts, Experiences, Trends = Vdi Bericht Measurement and Regulation Technology in Wastewater Treatment Plants - Concepts, Experiences, Trends = Vdi. Bericht. Measurement and Testing Methodologies in Automotive Design = Vdi Bericht Measurement and Testing Methodologies in Automotive Design = Vdi. Bericht. Measurement Challenges in Atmospheric Chemistry = Acs Sym Ser Measurement Challenges in Atmospheric Chemistry = Acs. Sym. Ser. Measurement & Control = Meas Control-uk Measurement & Control = Meas. Control-uk. Measurement Error: Models, Methods, and Applications = Interd Stat Measurement Error: Models, Methods, and Applications = Interd. Stat. Measurement Errors in Surveys = Wiley S Pro Measurement Errors in Surveys = Wiley. S. Pro. Measurement = Measurement Measurement, Modelling, and Evaluation of Computing Systems and Dependability and Fault Tolerance = Lect Notes Comput Sc Measurement, Modelling, and Evaluation of Computing Systems and Dependability and Fault Tolerance = Lect. Notes. Comput. Sc. Measurement of Atmospheric Gases = P Soc Photo-opt Ins Measurement of Atmospheric Gases = P. Soc. Photo-opt. Ins. Measurement of Cotton Fiber Stickiness and Ways of Neutralization of Its Effect = Cirad Colloques Measurement of Cotton Fiber Stickiness and Ways of Neutralization of Its Effect = Cirad. Colloques. Measurement of Pain in Infants and Children = Prog Pain Res Manag Measurement of Pain in Infants and Children = Prog. Pain Res. Manag. Measurement of Primary Production From The Molecular to The Global Scale = Ices Mar Sc Measurement of Primary Production From The Molecular to The Global Scale = Ices. Mar. Sc. Measurement of Residual and Applied Stress Using Neutron Diffraction = Nato Adv Sci I E-app Measurement of Residual and Applied Stress Using Neutron Diffraction = Nato. Adv. Sci. I. E-app. Measurement of The Top Quark Mass in The Dilepton Final State Using The Matrix Element Method = Springer Theses-reco Measurement of The Top Quark Mass in The Dilepton Final State Using The Matrix Element Method = Springer. Theses-reco. Measurement Science and Technology = Meas. Sci. Technol. Measurement Science Review = Meas Sci Rev Measurement Science Review = Meas. Sci. Rev. Measurement science & technology = Meas Sci Technol Measurement Science & Technology = Meas Sci Technol Measurement Science & Technology = Meas. Sci. Technol. Measurements & Control = Meas Control-us Measurements & Control = Meas. Control-us. Measurement Techniques in Radiation Protection: Recent Trends in Personal Dosimetry = Fzka Tech Umw Wis B Measurement Techniques in Radiation Protection: Recent Trends in Personal Dosimetry = Fzka. Tech. Umw. Wis. B. Measurement Techniques = Meas Tech+ Measurement Techniques = Meas. Tech. Measurement Techniques = Meas. Tech+.+ Measurement Techniques Ussr = Meas Tech+ Measurement Techniques Ussr = Meas. Tech+.+ Measurement Techniques-ussr = Meas Tech-ussr Measurement Techniques-ussr = Meas. Tech-ussr. Measurement Technology and Intelligent Instruments Ix = Key Eng Mat Measurement Technology and Intelligent Instruments Ix = Key. Eng. Mat. Measurement Technology and Intelligent Instruments Ix = Key Eng Mater Measurement Technology and Intelligent Instruments Ix = Key. Eng. Mater. Measurement Technology and Intelligent Instruments Viii = Key Eng Mater Measurement Technology and Intelligent Instruments Viii = Key. Eng. Mater. Measurement Technology and Intelligent Instruments Vi = Key Eng Mat Measurement Technology and Intelligent Instruments Vi = Key. Eng. Mat. Measurement Technology and Intelligent Instruments Vi = Key Eng Mater Measurement Technology and Intelligent Instruments Vi = Key. Eng. Mater. Measure of Woman: Law and Female Identity in The Crown of Aragon = Middle Ages Ser Measure of Woman: Law and Female Identity in The Crown of Aragon = Middle. Ages. Ser. Measures of Complexity and Chaos = Nato Adv Sci I B-phy Measures of Complexity and Chaos = Nato. Adv. Sci. I. B-phy. Measures With Symmetry Properties = Lect Notes Math Measures With Symmetry Properties = Lect. Notes. Math. Measure-valued Branching Markov Processes = Probab Appl Ser Measure-valued Branching Markov Processes = Probab. Appl. Ser. Measuring Advertising Effectiveness = Advert Cons Measuring Advertising Effectiveness = Advert. Cons. Measuring and Testing Techniques in The Vehicle Industry = Vdi Bericht Measuring and Testing Techniques in The Vehicle Industry = Vdi. Bericht. Measuring and Testing Techniques in Vehicle Development: Testing and Simulation = Vdi Bericht Measuring and Testing Techniques in Vehicle Development: Testing and Simulation = Vdi. Bericht. Measuring Biological Responses With Automated Microscopy = Method Enzymol Measuring Biological Responses With Automated Microscopy = Method. Enzymol. Measuring Capital in The New Economy = Stud Income Measuring Capital in The New Economy = Stud. Income. Measuring Dioxin Emissions = Vdi Bericht Measuring Dioxin Emissions = Vdi. Bericht. Measuring Entrepreneurship : Building A Statistical System = Int Stud Entrep Measuring Entrepreneurship : Building A Statistical System = Int. Stud. Entrep. Measuring Precipitation From Space: Eurainsat and The Future = Adv Glob Change Res Measuring Precipitation From Space: Eurainsat and The Future = Adv. Glob. Change. Res. Measuring Quality: Performance Measurement in Libraries, Second Edition = Ifla Publ Measuring Quality: Performance Measurement in Libraries, Second Edition = Ifla. Publ. Measuring The Economy: Gdp and Nipas = Monet Fisc Trade Pol Measuring The Economy: Gdp and Nipas = Monet. Fisc. Trade. Pol. Measuring The Impact of The Nonprofit Sector = Nonprof Civ Soc Stud Measuring The Impact of The Nonprofit Sector = Nonprof. Civ. Soc. Stud. Measuring The Social Value of Innovation: A Link in The University Technology Transfer and Entrepreneurship Equation = Adv St Entr Measuring The Social Value of Innovation: A Link in The University Technology Transfer and Entrepreneurship Equation = Adv. St. Entr. Measuring The Social Value of Innovation: A Link in The University Technology Transfer and Entrepreneurship Equation = Adv Stud Entrep Inno Measuring The Social Value of Innovation: A Link in The University Technology Transfer and Entrepreneurship Equation = Adv. Stud. Entrep. Inno. Measuring Time = Int Ser Oper Res Man Measuring Time = Int. Ser. Oper. Res. Man. Meat Science = Meat Sci Meat Science = Meat Sci. Mecanique and Industries = Mec. Ind. Mecanique Industrielle Et Materiaux = Mec Ind Mater Mecanique Industrielle Et Materiaux = Mec. Ind. Mater. Mecanique & Industries = Mec Ind Mecanique & Industries = Mec. Ind. Meccanica = Meccanica Meccanica = Meccanica Mechanical Activation of Inorganic Materials = Srpska Akad Nauk Mechanical Activation of Inorganic Materials = Srpska. Akad. Nauk. Mechanical Alloying = Mater Sci Forum Mechanical Alloying = Mater. Sci. Forum. Mechanical and Dynamical Principles of Protein Nanomotors: The Key to Nano-engineering Applications = Nanotechnol Sci Tech Mechanical and Dynamical Principles of Protein Nanomotors: The Key to Nano-engineering Applications = Nanotechnol. Sci. Tech. Mechanical Behavior of Diamond and Other Forms of Carbon = Mater Res Soc Symp P Mechanical Behavior of Diamond and Other Forms of Carbon = Mater. Res. Soc. Symp. P. Mechanical Behavior of Materials and Structures in Microelectronics = Mater Res Soc Symp P Mechanical Behavior of Materials and Structures in Microelectronics = Mater. Res. Soc. Symp. P. Mechanical Behavior of Materials = Mech Beh M Mechanical Behavior of Materials = Mech. Beh. M. Mechanical Behavior of Materials X, Pts 1and 2 = Key Eng Mat Mechanical Behavior of Materials X, Pts 1and 2 = Key. Eng. Mat. Mechanical Behavior of Materials X, Pts 1and 2 = Key Eng Mater Mechanical Behavior of Materials X, Pts 1and 2 = Key. Eng. Mater. Mechanical Behavior of Salt - Understanding of Thmc Processes in Salt = Proc Monogr Eng Wate Mechanical Behavior of Salt - Understanding of Thmc Processes in Salt = Proc. Monogr. Eng. Wate. Mechanical Behaviour of Materials = Mater Sci Forum Mechanical Behaviour of Materials = Mater. Sci. Forum. Mechanical Behaviour of Materials-vi, Vols 1-4 = Int S Stren Mechanical Behaviour of Materials-vi, Vols 1-4 = Int. S. Stren. Mechanical Engineering : A Series of Textbooks and Reference Books = Mech Eng Se Mechanical Engineering : A Series of Textbooks and Reference Books = Mech. Eng. Se. Mechanical Engineering-crc = Mech Eng-crc Mechanical Engineering-crc = Mech. Eng-crc. Mechanical Engineering = Mech Eng Mechanical Engineering = Mech. Eng. Mechanical engineering (New York, N.Y. : 1919) = Mech Eng Mechanical Engineering Science = Mech Eng Sci Mechanical Engineering Science = Mech. Eng. Sci. Mechanical Engineering Series = Mech. Engrg. Ser. Mechanical Engineering Series = Mech Eng Ser Mechanical Engineering Series = Mech. Eng. Ser. Mechanical Engineering Series of Textbook and Reference Books = Mech Eng Ser Txb Ref Mechanical Engineering Series of Textbook and Reference Books = Mech. Eng. Ser. Txb. Ref. Mechanical Engineering Theory and Applications = Mech Eng Theor Appl Mechanical Engineering Theory and Applications = Mech. Eng. Theor. Appl. Mechanical Handling International = Mech Handl Mechanical Handling International = Mech. Handl. Mechanical Handling = Mech Handling Mechanical Handling = Mech. Handling Mechanical, Industrial, and Manufacturing Engineering = Lect Note Informtech Mechanical, Industrial, and Manufacturing Engineering = Lect. Note. Informtech. Mechanical Integration of Plant Cells and Plants = Signal Commun Plants Mechanical Integration of Plant Cells and Plants = Signal. Commun. Plants Mechanically Alloyed and Nanocrystalline Materials = Mater Sci Forum Mechanically Alloyed and Nanocrystalline Materials = Mater. Sci. Forum. Mechanically Alloyed, Metastable and Nanocrystalline Materials, Part 1 = Mater Sci Forum Mechanically Alloyed, Metastable and Nanocrystalline Materials, Part 1 = Mater. Sci. Forum. Mechanically Alloyed, Metastable and Nanocrystalline Materials, Part 2 = Mater Sci Forum Mechanically Alloyed, Metastable and Nanocrystalline Materials, Part 2 = Mater. Sci. Forum. Mechanical Modelling and Computational Issues in Civil Engineering = Lect Notes Appl Comp Mechanical Modelling and Computational Issues in Civil Engineering = Lect. Notes. Appl. Comp. Mechanical Properties and Deformation Behavior of Materials Having Ultra-fine Microstructures = Nato Adv Sci Inst Se Mechanical Properties and Deformation Behavior of Materials Having Ultra-fine Microstructures = Nato. Adv. Sci. Inst. Se. Mechanical Properties and Performance of Engineering Ceramics and Composites = Ceram Eng Sci Proc Mechanical Properties and Performance of Engineering Ceramics and Composites = Ceram. Eng. Sci. Proc. Mechanical Properties and Performance of Engineering Ceramics and Composites Ii = Ceram Eng Sci Proc Mechanical Properties and Performance of Engineering Ceramics and Composites Ii = Ceram. Eng. Sci. Proc. Mechanical Properties and Performance of Engineering Ceramics and Composites Iii = Ceram Eng Sci Proc Mechanical Properties and Performance of Engineering Ceramics and Composites Iii = Ceram. Eng. Sci. Proc. Mechanical Properties and Performance of Engineering Ceramics and Composites Iv = Ceram Eng Sci Proc Mechanical Properties and Performance of Engineering Ceramics and Composites Iv = Ceram. Eng. Sci. Proc. Mechanical Properties and Processing of Ceramic Binary,ternary, and Composite Systems = Ceram Eng Sci Proc Mechanical Properties and Processing of Ceramic Binary,ternary, and Composite Systems = Ceram. Eng. Sci. Proc. Mechanical Properties Derived From Nanostructuring Materials = Mater Res Soc Symp P Mechanical Properties Derived From Nanostructuring Materials = Mater. Res. Soc. Symp. P. Mechanical Properties of Bioinspired and Biological Materials = Mater Res Soc Symp P Mechanical Properties of Bioinspired and Biological Materials = Mater. Res. Soc. Symp. P. Mechanical Properties of Materials At High Rates of Strain 1989 = Inst Phys Conf Ser Mechanical Properties of Materials At High Rates of Strain 1989 = Inst. Phys. Conf. Ser. Mechanical Properties of Nanostructured Materials and Nanocomposites = Mater Res Soc Symp P Mechanical Properties of Nanostructured Materials and Nanocomposites = Mater. Res. Soc. Symp. P. Mechanical Properties of Porous and Cellular Materials = Mater Res Soc Symp P Mechanical Properties of Porous and Cellular Materials = Mater. Res. Soc. Symp. P. Mechanical Properties of Semiconductors = Semiconduct Semimet Mechanical Properties of Semiconductors = Semiconduct. Semimet. Mechanical Properties of Solids Xi = Key Eng Mat Mechanical Properties of Solids Xi = Key. Eng. Mat. Mechanical Properties of Solids Xi = Key Eng Mater Mechanical Properties of Solids Xi = Key. Eng. Mater. Mechanical Properties of Structural Films = Am Soc Test Mater Mechanical Properties of Structural Films = Am. Soc. Test. Mater. Mechanical Response of Composites = Comp Meth Appl Sci Mechanical Response of Composites = Comp. Meth. Appl. Sci. Mechanical Sound: Technology, Culture, and Public Problems of Noise in The Twentieth Century = Inside Technol Mechanical Sound: Technology, Culture, and Public Problems of Noise in The Twentieth Century = Inside. Technol. Mechanical Spectroscopy Iii = Sol St Phen Mechanical Spectroscopy Iii = Sol. St. Phen. Mechanical Spectroscopy Ii, Proceedings = Sol St Phen Mechanical Spectroscopy Ii, Proceedings = Sol. St. Phen. Mechanical Spectroscopy Q-1 2001 = Mater Sci Forum Mechanical Spectroscopy Q-1 2001 = Mater. Sci. Forum. Mechanical Stress Evaluation By Neutrons and Synchrotron Radiation = Mater Sci Forum Mechanical Stress Evaluation By Neutrons and Synchrotron Radiation = Mater. Sci. Forum. Mechanical System Dynamics = Lect Notes Appl Comp Mechanical System Dynamics = Lect. Notes. Appl. Comp. Mechanical Systems and Signal Processing = Mech Syst Signal Pr Mechanical Systems and Signal Processing = Mech. Syst. Signal Pr. Mechanical Systems and Signal Processing = Mech. Syst. Sig. Process. Mechanical Systems, Classical Models, Vol Iii: Analytical Mechanics = Math Anal Tech Appl Mechanical Systems, Classical Models, Vol Iii: Analytical Mechanics = Math. Anal. Tech. Appl. Mechanical Systems, Classical Models, Vol Ii = Math Anal Tech Appl Mechanical Systems, Classical Models, Vol Ii = Math. Anal. Tech. Appl. Mechanical Systems, Classical Models, Vol I = Math Anal Tech Appl Mechanical Systems, Classical Models, Vol I = Math. Anal. Tech. Appl. Mechanical Tests for Bituminous Mixes = Rilem Proc Mechanical Tests for Bituminous Mixes = Rilem. Proc. Mechanical, Thermal and Environmental Testing and Performance of Ceramic Composites and Components = Am Soc Test Mater Mechanical, Thermal and Environmental Testing and Performance of Ceramic Composites and Components = Am. Soc. Test. Mater. Mechanical Translation = Mech Transl Mechanical Translation = Mech. Transl. Mechanical Vibrations of Discontinuous Systems = Mech Eng Theor Appl Mechanical Vibrations of Discontinuous Systems = Mech. Eng. Theor. Appl. Mechanics and Biophysics of Hearing = Lect Notes Biomath Mechanics and Biophysics of Hearing = Lect. Notes. Biomath. Mechanics and Natural Philosophy Before The Scientific Revolution = Bost Stud Philos Sci Mechanics and Natural Philosophy Before The Scientific Revolution = Bost. Stud. Philos. Sci. Mechanics and Physics of Precise Vacuum Mechanisms = Fluid Mech Appl Mechanics and Physics of Precise Vacuum Mechanisms = Fluid. Mech. Appl. Mechanics and Related Processes in Structured Agricultural Soils = Nato Adv Sci I E-app Mechanics and Related Processes in Structured Agricultural Soils = Nato. Adv. Sci. I. E-app. Mechanics and Thermomechanics of Rubberlike Solids = Cism Cour L Mechanics and Thermomechanics of Rubberlike Solids = Cism. Cour. L. Mechanics Based Design of Structures and Machines = Mech Based Des Struc Mechanics Based Design of Structures and Machines = Mech. Based Des. Struc. Mechanics Based Design of Structures and Machines = Mech. Based Des. Struct. Mach. Mechanics & chemistry of biosystems : MCB = Mech Chem Biosyst Mechanics for Electronics = Vtt Symp Mechanics for Electronics = Vtt. Symp. Mechanics: From Newton's Laws to Deterministic Chaos, Fifth Edition = Grad Texts Phys Mechanics: From Newton's Laws to Deterministic Chaos, Fifth Edition = Grad. Texts. Phys. Mechanics of Advanced Materials and Structures = Mech Adv Mater Struc Mechanics of Advanced Materials and Structures = Mech. Adv. Mater. Struc. Mechanics of Advanced Materials and Structures = Mech. Adv. Mater. Struct. Mechanics of Cohesive-frictional Materials = Mech Cohes-frict Mat Mechanics of Cohesive-frictional Materials = Mech. Cohes-frict. Mat. Mechanics of Composite Materials and Structures = Mech Compos Mater St Mechanics of Composite Materials and Structures = Mech. Compos. Mater. St. Mechanics of Composite Materials and Structures = Mech. Compos. Mater. Struct. Mechanics of Composite Materials and Structures = Nato Adv Sci I E-app Mechanics of Composite Materials and Structures = Nato. Adv. Sci. I. E-app. Mechanics of Composite Materials = Mech Compos Mater Mechanics of Composite Materials = Mech. Compos. Mater. Mechanics of Electromagnetic Materials and Structures = Stud Appl Electromag Mechanics of Electromagnetic Materials and Structures = Stud. Appl. Electromag. Mechanics of Generalized Continua = Adv Mech Math Mechanics of Generalized Continua = Adv. Mech. Math. Mechanics of Material Forces = Adv Mech Math Mechanics of Material Forces = Adv. Mech. Math. Mechanics of Materials = Mech Mater Mechanics of Materials = Mech. Mater. Mechanics of Microstructured Materials = Cism Cour L Mechanics of Microstructured Materials = Cism. Cour. L. Mechanics of Microstructured Materials = Cism Courses Lect Mechanics of Microstructured Materials = Cism. Courses. Lect. Mechanics of Microstructured Solids = Lect Notes Appl Comp Mechanics of Microstructured Solids = Lect. Notes. Appl. Comp. Mechanics of Microstructured Solids = Ln App C M Mechanics of Microstructured Solids = Ln. App. C. M. Mechanics of Non-holonomic Systems: A New Class of Control Systems = Found Eng Mech Mechanics of Non-holonomic Systems: A New Class of Control Systems = Found. Eng. Mech. Mechanics of Solids and Structures - Hierarchical Modeling and The Finite Element Solution = Comput Fluid Solid M Mechanics of Solids and Structures - Hierarchical Modeling and The Finite Element Solution = Comput. Fluid. Solid. M. Mechanics of Solids = Mech Sol Mechanics of Solids = Mech. Sol. Mechanics of Solids = Mech Solids+ Mechanics of Solids = Mech. Solids Mechanics of Solids = Mech. Solids+.+ Mechanics of Structural Elements: Theory and Applications = Found Eng Mech Mechanics of Structural Elements: Theory and Applications = Found. Eng. Mech. Mechanics of Structures and Machines = Mech Struct Mach Mechanics of Structures and Machines = Mech. Struct. Mach. Mechanics of Structures and Machines = Mech. Structures Mach. Mechanics of Time-dependent Materials = Mech Time-depend Mat Mechanics of Time-dependent Materials = Mech. Time-depend. Mat. Mechanics of Time Dependent Materials = Mech. Time-Depend. Mater. Mechanics of Wind-blown Sand Movements = Environ Sci-ger Mechanics of Wind-blown Sand Movements = Environ. Sci-ger. Mechanics Research Communications = Mech. Res. Comm. Mechanics Research Communications = Mech Res Commun Mechanics Research Communications = Mech. Res. Commun. Mechanika 2007, Proceedings = Mecka Mechanika 2007, Proceedings = Mecka. Mechanika 2008, Proceedings = Mecka Mechanika 2008, Proceedings = Mecka. Mechanika 2009 - Proceedings of The 14th International Conference = Mecka Mechanika 2009 - Proceedings of The 14th International Conference = Mecka. Mechanika 2010: Proceedings of The 15th International Conference = Mecka Mechanika 2010: Proceedings of The 15th International Conference = Mecka. Mechanika Kaunas University of Technology = Mecka Mechanika Kaunas University of Technology = Mecka. Mechanika = Mechanika Mechanik = Mechanik Mechanik Miesiecznik Naukowo-techniczny = Mech Mies Nauk Tech Mechanik Miesiecznik Naukowo-techniczny = Mech. Mies. Nauk. Tech. Mechanism and Machine Theory = Mech Mach Theory Mechanism and Machine Theory = Mech. Mach. Theory Mechanism and New Approach On Drug Resistance of Cancer Cells = Int Congr Ser Mechanism and New Approach On Drug Resistance of Cancer Cells = Int. Congr. Ser. Mechanism of Fertilization : Plants to Humans = Nato Adv Sci I H-cel Mechanism of Fertilization : Plants to Humans = Nato. Adv. Sci. I. H-cel. Mechanism of Myofilament Sliding in Muscle Contraction = Adv Exp Med Biol Mechanism of Myofilament Sliding in Muscle Contraction = Adv. Exp. Med. Biol. Mechanisms and Control of Emesis = Colloq Inse Mechanisms and Control of Emesis = Colloq. Inse. Mechanisms and Machine Science = Mech Mach Sci Mechanisms and Machine Science = Mech. Mach. Sci. Mechanisms and Pathways of Heterotrimeric G Protein Signaling = Adv Protein Chem Mechanisms and Pathways of Heterotrimeric G Protein Signaling = Adv. Protein Chem. Mechanisms and Principles of Epitaxial Growth in Metallic Systems = Mater Res Soc Symp P Mechanisms and Principles of Epitaxial Growth in Metallic Systems = Mater. Res. Soc. Symp. P. Mechanisms and Regulation of Transport Processes = Br Plant Gr Mechanisms and Regulation of Transport Processes = Br. Plant. Gr. Mechanisms and Significance of Cell Volume Regulation = Contrib Nephrol Mechanisms and Significance of Cell Volume Regulation = Contrib. Nephrol. Mechanisms and Specificity of Hiv Entry Into Host Cells = Adv Exp Med Biol Mechanisms and Specificity of Hiv Entry Into Host Cells = Adv. Exp. Med. Biol. Mechanisms for Autonomous Management of Networks and Services = Lect Notes Comput Sc Mechanisms for Autonomous Management of Networks and Services = Lect. Notes. Comput. Sc. Mechanisms for Low-light Therapy Iii = Proc Spie Mechanisms for Low-light Therapy Iii = Proc. Spie. Mechanisms for Low-light Therapy Iii = P Soc Photo-opt Ins Mechanisms for Low-light Therapy Iii = P. Soc. Photo-opt. Ins. Mechanisms for Low-light Therapy Ii = P Soc Photo-opt Ins Mechanisms for Low-light Therapy Ii = P. Soc. Photo-opt. Ins. Mechanisms for Low-light Therapy Iv = Proc Spie Mechanisms for Low-light Therapy Iv = Proc. Spie. Mechanisms for Low-light Therapy Iv = P Soc Photo-opt Ins Mechanisms for Low-light Therapy Iv = P. Soc. Photo-opt. Ins. Mechanisms for Low Light Therapy = P Soc Photo-opt Ins Mechanisms for Low Light Therapy = P. Soc. Photo-opt. Ins. Mechanisms for Low-light Therapy V = Proc Spie Mechanisms for Low-light Therapy V = Proc. Spie. Mechanisms for Low-light Therapy V = P Soc Photo-opt Ins Mechanisms for Low-light Therapy V = P. Soc. Photo-opt. Ins. Mechanisms in B-cell Neoplasia 1990 = Curr Top Microbiol Mechanisms in B-cell Neoplasia 1990 = Curr. Top. Microbiol. Mechanisms in Fibre Carcinogenesis = Nato Adv Sci I A-lif Mechanisms in Fibre Carcinogenesis = Nato. Adv. Sci. I. A-lif. Mechanisms in Myeloid Tumorigenesis 1988 = Curr Top Microbiol Mechanisms in Myeloid Tumorigenesis 1988 = Curr. Top. Microbiol. Mechanisms in Occupational Lung Diseases = Colloq Inse Mechanisms in Occupational Lung Diseases = Colloq. Inse. Mechanisms in The Pathogenesis of Enteric Diseases 2 = Adv Exp Med Biol Mechanisms in The Pathogenesis of Enteric Diseases 2 = Adv. Exp. Med. Biol. Mechanisms in The Pathogenesis of Enteric Diseases = Adv Exp Med Biol Mechanisms in The Pathogenesis of Enteric Diseases = Adv. Exp. Med. Biol. Mechanisms of Activity and Unrest At Large Calderas = Geol Soc Spec Publ Mechanisms of Activity and Unrest At Large Calderas = Geol. Soc. Spec. Publ. Mechanisms of ageing and development = Mech Ageing Dev Mechanisms of Ageing and Development=Mech Ageing Dev;; Mechanisms of Ageing and Development = Mech Ageing Dev Mechanisms of Ageing and Development = Mech. Ageing Dev. Mechanisms of Anesthetic Action in Skeletal, Cardiac, and Smooth Muscle = Adv Exp Med Biol Mechanisms of Anesthetic Action in Skeletal, Cardiac, and Smooth Muscle = Adv. Exp. Med. Biol. Mechanisms of B Cell Neoplasia 1998 = Curr Top Microbiol Mechanisms of B Cell Neoplasia 1998 = Curr. Top. Microbiol. Mechanisms of Cadmium Toxicity to Various Trophic Saltwater Organisms = Environ Sci Eng Tech Mechanisms of Cadmium Toxicity to Various Trophic Saltwater Organisms = Environ. Sci. Eng. Tech. Mechanisms of Cell Death = Ann Ny Acad Sci Mechanisms of Cell Death = Ann. Ny. Acad. Sci. Mechanisms of Cell Death Ii = Ann Ny Acad Sci Mechanisms of Cell Death Ii = Ann. Ny. Acad. Sci. Mechanisms of Cognitive Development: Behavioral and Neural Perspectives = Carn S Cogn Mechanisms of Cognitive Development: Behavioral and Neural Perspectives = Carn. S. Cogn. Mechanisms of development = Mech Dev Mechanisms of Development=Mech Dev;; Mechanisms of Development = Mech. Dev. Mechanisms of Development = Mech Develop Mechanisms of Development = Mech. Develop. Mechanisms of Egg Activation = Bod Mar Lab Mechanisms of Egg Activation = Bod. Mar. Lab. Mechanisms of Everyday Cognition = Wvu Con Lif Mechanisms of Everyday Cognition = Wvu. Con. Lif. Mechanisms of Exocytosis = Ann Ny Acad Sci Mechanisms of Exocytosis = Ann. Ny. Acad. Sci. Mechanisms of Fibre Carcinogenesis = Iarc Sci Publ Mechanisms of Fibre Carcinogenesis = Iarc. Sci. Publ. Mechanisms of Heteroepitaxial Growth = Mater Res Soc Symp P Mechanisms of Heteroepitaxial Growth = Mater. Res. Soc. Symp. P. Mechanisms of Immune Regulation = Chem Immunol Mechanisms of Immune Regulation = Chem. Immunol. Mechanisms of Intestinal Inflammation: Implications for Therapeutic Intervention in Ibd = Falk Symp Mechanisms of Intestinal Inflammation: Implications for Therapeutic Intervention in Ibd = Falk. Symp. Mechanisms of Lymphocyte Activation and Immune Regulation Ii = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Ii = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Iii = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Iii = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Iv = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Iv = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation V = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation V = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Vi = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Vi = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Vii = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Vii = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Viii: Autoimmunity 2000 and Beyond = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Viii: Autoimmunity 2000 and Beyond = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation Xi: B Cell Biology = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation Xi: B Cell Biology = Adv. Exp. Med. Biol. Mechanisms of Lymphocyte Activation and Immune Regulation X: Innate Immunity = Adv Exp Med Biol Mechanisms of Lymphocyte Activation and Immune Regulation X: Innate Immunity = Adv. Exp. Med. Biol. Mechanisms of Metallocenter Assembly = Adv Inorg Biochem Mechanisms of Metallocenter Assembly = Adv. Inorg. Biochem. Mechanisms of Neuronal Damage in Virus Infections of The Nervous System = Curr Top Microbiol Mechanisms of Neuronal Damage in Virus Infections of The Nervous System = Curr. Top. Microbiol. Mechanisms of Oncogenesis: An Update On Tumorigenesis = Cancer Grow Prog-dor Mechanisms of Oncogenesis: An Update On Tumorigenesis = Cancer. Grow. Prog-dor. Mechanisms of Peptic Ulcer Healing = Falk Symp Mechanisms of Peptic Ulcer Healing = Falk. Symp. Mechanisms of Plant Defense Responses = Dev Plant Pathol Mechanisms of Plant Defense Responses = Dev. Plant Pathol. Mechanisms of Plant Perception and Response to Environmental Stimuli = Brit Soc Pl Mechanisms of Plant Perception and Response to Environmental Stimuli = Brit. Soc. Pl. Mechanisms of Platelet Activation and Control = Adv Exp Med Biol Mechanisms of Platelet Activation and Control = Adv. Exp. Med. Biol. Mechanisms of Reactions of Organometallic Compounds With Surfaces = Nato Adv Sci I B-phy Mechanisms of Reactions of Organometallic Compounds With Surfaces = Nato. Adv. Sci. I. B-phy. Mechanisms of Secondary Brain Damage From Trauma and Ischemia, Recent Advances of Our Understanding = Act Neur S Mechanisms of Secondary Brain Damage From Trauma and Ischemia, Recent Advances of Our Understanding = Act. Neur. S. Mechanisms of Secondary Brain Damage in Cerebral Ischemia and Trauma = Act Neur S Mechanisms of Secondary Brain Damage in Cerebral Ischemia and Trauma = Act. Neur. S. Mechanisms of Thin Film Evolution = Mater Res Soc Symp P Mechanisms of Thin Film Evolution = Mater. Res. Soc. Symp. P. Mechanisms of Work Production and Work Absorption in Muscle = Adv Exp Med Biol Mechanisms of Work Production and Work Absorption in Muscle = Adv. Exp. Med. Biol. Mechanisms, Symbols and Models Underlying Cognition, Pt 1, Proceedings = Lect Notes Comput Sc Mechanisms, Symbols and Models Underlying Cognition, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Mechanistic Bioinorganic Chemistry = Adv Chem Ser Mechanistic Bioinorganic Chemistry = Adv. Chem. Ser. Mechanistic Relationships Between Development and Learning = Dahlem Work Mechanistic Relationships Between Development and Learning = Dahlem. Work. Mechanizing, Mathematical Reasoning: Essays in Homor of Jorg H Siekmann On The Occasion of His 60th Birthday = Lect Notes Artif Int Mechanizing, Mathematical Reasoning: Essays in Homor of Jorg H Siekmann On The Occasion of His 60th Birthday = Lect. Notes. Artif. Int. Mechanosensitive Ion Channels, Part A = Curr Top Membr Mechanosensitive Ion Channels, Part A = Curr. Top. Membr. Mechanosensitive Ion Channels, Pt B = Curr Top Membr Mechanosensitive Ion Channels, Pt B = Curr. Top. Membr. Mechanosensitivity and Mechanotransduction = Mechanosens Cells Ti Mechanosensitivity and Mechanotransduction = Mechanosens. Cells. Ti. Mechanosensitivity in Cells and Tissues = Mechanosens Cells Ti Mechanosensitivity in Cells and Tissues = Mechanosens. Cells Ti. Mechanosensitivity of The Heart = Mechanosens Cells Ti Mechanosensitivity of The Heart = Mechanosens. Cells. Ti. Mechatronic Design Automation: Emerging Research and Recent Advances = Mech Eng Theor Appl Mechatronic Design Automation: Emerging Research and Recent Advances = Mech. Eng. Theor. Appl. Mechatronic Design in Textile Engineering = Nato Adv Sci Inst Se Mechatronic Design in Textile Engineering = Nato. Adv. Sci. Inst. Se. Mechatronics and Intelligent Materials, Pts 1 and 2 = Adv Mater Res-switz Mechatronics and Intelligent Materials, Pts 1 and 2 = Adv. Mater. Res-switz. Mechatronic Servo System Control: Problems in Industries and Their Theoretical Solutions = Lect Notes Contr Inf Mechatronic Servo System Control: Problems in Industries and Their Theoretical Solutions = Lect. Notes. Contr. Inf. Mechatronics - Mechanical and Electrical Drive Technology = Vdi Bericht Mechatronics - Mechanical and Electrical Drive Technology = Vdi. Bericht. Mechatronics = Mechatronics Mechatronic Systems and Materials Iii = Solid State Phenomen Mechatronic Systems and Materials Iii = Solid. State. Phenomen. Mechatronic Systems and Materials: Materials Production Technologies = Sol St Phen Mechatronic Systems and Materials: Materials Production Technologies = Sol. St. Phen. Mechatronic Systems and Materials: Mechatronic Systems and Robotics = Solid State Phenomen Mechatronic Systems and Materials: Mechatronic Systems and Robotics = Solid. State. Phenomen. Mechatronic Systems and Materials: Mechatronic Systems and Robotics = Sol St Phen Mechatronic Systems and Materials: Mechatronic Systems and Robotics = Sol. St. Phen. Mechatronic Systems and Materials = Solid State Phenomen Mechatronic Systems and Materials = Solid. State. Phenomen. Mechatronic Systems and Materials = Sol St Phen Mechatronic Systems and Materials = Sol. St. Phen. Mechatronic Systems: Devices, Design, Control, Operation and Monitoring = Mech Eng Ser Txb Ref Mechatronic Systems: Devices, Design, Control, Operation and Monitoring = Mech. Eng. Ser. Txb. Ref. Mechatronik - Mechanisch/elektrische Antriebstechnik = Vdi Bericht Mechatronik - Mechanisch/elektrische Antriebstechnik = Vdi. Bericht. Mechthild of Magdeburg and Her Book: Gender and The Making of Textual Authority = Middle Ages Ser Mechthild of Magdeburg and Her Book: Gender and The Making of Textual Authority = Middle. Ages. Ser. Meconium Aspiration Syndrome: From Pathomechanisms to Treatment = Preg Infants-med Psy Meconium Aspiration Syndrome: From Pathomechanisms to Treatment = Preg. Infants-med. Psy. Medchemcomm = Medchemcomm Meddelanden fran Flyg- och navalmedicinska namnden. Statens namnd for flyg- och navalmedicinsk forsknings- och forsoksverksamhet = Medd Flyg Navalmed Namnd Statens Namnd For Flyg Navalmed Forsk Forsoksvererksamhet Meddelanden från Lunds universtitets historiska museum = MeddelLund Meddelelser. Denmark. Sundhedsstyrelsen. Beredskabsafdelingen = Medd Sundhedsstyr Beredskabsafdelingen Meddelelser Fra Det Norske Skogforsoksvesen = Medd Nor Skogforsok Meddelelser Fra Det Norske Skogforsoksvesen = Medd. Nor. Skogforsok. Meddelelser fra Norsk farmaceutisk selskap = Medd Nor Farm Selsk Meddelelser fra Norsk Farmaceutisk Selskap = Medd. Nor. Farm. Selsk. Meddelelser fra Norsk Institutt for Skogforskning = Medd. Nor. Inst. Skogforsk. Meddelelser Fra Norsk Institutt for Skogforskning = Medd Norsk I Skogfor Meddelelser Fra Norsk Institutt for Skogforskning = Medd. Norsk I. Skogfor. Meddelelser fra Ny Carlsberg Glyptotek = MeddelGlypt Meddelelser fra Thorvaldsens Museum = MeddelThor Meddelelser om Groenland: Geoscience = Medd. Groenl.: Geosc. Medea Hypothesis: Is Life On Earth Ultimately Self-destructive = Sci Essentials Medea Hypothesis: Is Life On Earth Ultimately Self-destructive = Sci. Essentials. Medecine aeronautique et spatiale = Med Aeronaut Spat Medecine & chirurgie digestives = Med Chir Dig Medecine & Chirurgie Digestives = Med Chir Dig Medecine & Chirurgie Digestives = Med. Chir. Dig. Medecine d'Afrique noire = Med Afr Noire Medecine dans le monde = Med Monde Medecine d'Egypte = Med Egypte Medecine et armees = Med Armees Medecine Et Armees = Med Armees Medecine Et Armees = Med. Armees Medecine et audio vision = Med Audio Vis Medecine et Audio Vision = Med. Audio Vis. Medecine et Chirurgie Digestives = Med. Chir. Dig. Medecine Et Chirurgie Du Pied = Med Chir Pied Medecine Et Chirurgie Du Pied = Med. Chir. Pied Medecine Et Hygiene = Med Hyg Medecine Et Hygiene = Med. Hyg. Medecine et hygiene = Med Hyg (Geneve) Medecine et Hygiene = Med. Hyg. (Geneve) Medecine et laboratoire = Med Lab Medecine Et Maladies Infectieuses = Med Maladies Infect Medecine Et Maladies Infectieuses = Med. Maladies Infect. Medecine et maladies infectieuses = Med Mal Infect Medecine Infantile = Med. Infant. (Paris) Medecine interne = Med Interne Medecine Interne = Med. Interne Medecine legale et dommage corporel = Med Leg Dommage Corpor Medecine Legale et Dommage Corporel = Med. Leg. Dommage Corpor. Medecine Legale Toxicologie = Med Leg Toxicol Medecine Legale Toxicologie = Med. Leg. Toxicol. Medecine Nucleaire-imagerie Fonctionnelle Et Metabolique = Med Nucl Medecine Nucleaire-imagerie Fonctionnelle Et Metabolique = Med. Nucl. Medecine Nucleaire = Med Nucl Medecine Nucleaire = Med. Nucl. Medecine sciences : M/S = Med Sci (Paris) Medecine Tropicale=Med Trop (Mars);; Medecine Tropicale = Med. Trop. (Mars.) Medecine tropicale : revue du Corps de sante colonial = Med Trop (Mars) Mededelingenblad. Vereniging van Vrienden Allard Pierson Museum = VerAmstMeded Mededelingen (Rijksuniversiteit te Gent. Fakulteit van de Landbouwkundige en Toegepaste Biologische Wetenschappen) = Meded Rijksuniv Gent Fak Landbouwkd Toegep Biol Wet Mededelingen van de Faculteit Landbouwwetenschappen, Universiteit Gent = Meded. Fac. Landbouwwet., Rijksuniv. Gent Mededelingen Van De Faculteit Landbouwwetenschappen, Universiteit-gent, Vol 57, 2a, Pts 1-4 = Int S Crop Mededelingen Van De Faculteit Landbouwwetenschappen, Universiteit-gent, Vol 57, 2a, Pts 1-4 = Int. S. Crop. Mededelingen Van De Faculteit Van De Landbouwwetenschappen, Vol 58, Pts 2a, 2b, 3a, 3b, 1993 = Int S Crop Mededelingen Van De Faculteit Van De Landbouwwetenschappen, Vol 58, Pts 2a, 2b, 3a, 3b, 1993 = Int. S. Crop. Mededelingen van de Koninklijke Academie voor wetenschappen, letteren en schone kunsten van Belgie. Klasse der wetenschappen = Meded K Acad Wet Lett Schone Kunsten Belg Kl Wet Mededelingen van de Koninklijke Academie voor Wetenschappen, Letteren en Schone Kunsten van België = Med. Konink. Acad. Wetensch. België Mededelingen van de koninklijke Academie voor Wetensehappen, Letteren & Schone Kunsten van België, Kl. der Letteren = MAWBL Mededelingen van de Landbouwhoogeschool te Wageningen = Meded. Landbouwhoogesch. Wagening. Mededelingen van het Nederlandsch historisch Instituut te Rome = MNIR Mededelingen van het Nederlands instituut te Rome = MededRom Mededelingen van het Wiskundig Genootschap = Meded. Wiskd. Genoot. Medelhavsmuseet. Bulletin = MedelhavsMusB MedGenMed = MedGenMed MedGenMed : Medscape general medicine = MedGenMed Media and Communications Technologies Policies and Challenges = Media Commun Technol Media and Communications Technologies Policies and Challenges = Media Commun. Technol. Media and Cultural Memory = Media Cult Mem Media and Cultural Memory = Media Cult. Mem. Media and Cultural Transformation in China = Routl Media Cult Soc Media and Cultural Transformation in China = Routl. Media Cult. Soc. Media and Ethnic Identity: Hopi Views On Media, Identity, and Communication = Indigen People Polit Media and Ethnic Identity: Hopi Views On Media, Identity, and Communication = Indigen. People. Polit. Media and Languages in Humanistic Historiography = Transform Antike Media and Languages in Humanistic Historiography = Transform. Antike. Media and Social Theory = Cult Econ Soc Media and Social Theory = Cult. Econ. Soc. Media and The Chinese Diaspora: Community, Communications and Commerce = Routl Media Cult Soc Media and The Chinese Diaspora: Community, Communications and Commerce = Routl. Media Cult. Soc. Media and The Make-believe Worlds of Children = Lea Commun Ser Media and The Make-believe Worlds of Children = Lea. Commun. Ser. Media and The Politics of Failure: Great Powers, Communication Strategies, and Military Defeats = Palgr Mac Ser Int Po Media and The Politics of Failure: Great Powers, Communication Strategies, and Military Defeats = Palgr. Mac. Ser. Int. Po. Media and The Tourist Imagination = Contemp Geogr Leis T Media and The Tourist Imagination = Contemp. Geogr. Leis. T. Media Asia = Media Asia Media Bias in Reporting Social Research: The Case of Reviewing Ethnic Inequalities in Education = Routl Adv Sociol Media Bias in Reporting Social Research: The Case of Reviewing Ethnic Inequalities in Education = Routl. Adv. Sociol. Media, Bureaucracies, and Foreign Aid: A Comparative Analysis of United States, The United Kingdom, Canada, France and Japan = Adv Foreign Policy A Media, Bureaucracies, and Foreign Aid: A Comparative Analysis of United States, The United Kingdom, Canada, France and Japan = Adv. Foreign Policy. A Media, Children, and The Family = Communic Media, Children, and The Family = Communic. Media Consumption and Everyday Life in Asia = Routl Adv Int Media Media Consumption and Everyday Life in Asia = Routl. Adv. Int. Media Media Consumption and Public Engagement: Beyond The Presumption of Attention = Consum Public Life Media Consumption and Public Engagement: Beyond The Presumption of Attention = Consum. Public Life. Media Culture and Social Change in Asia Series = Media Cult Soc Chang Media Culture and Social Change in Asia Series = Media Cult. Soc. Chang. Media, Culture and Society in Iran: Living With Globalization and The Islamic State = Iran Stud Ser Media, Culture and Society in Iran: Living With Globalization and The Islamic State = Iran. Stud. Ser. Media Culture & Society = Media Cult Soc Media Culture & Society = Media Cult. Soc. Media development = Media Dev Media Diversity and Localism: Meaning and Metrics = Lea Commun Ser Media Diversity and Localism: Meaning and Metrics = Lea. Commun. Ser. Media Effects: Advances in Theory and Research, Third Edition = Commun Ser Media Effects: Advances in Theory and Research, Third Edition = Commun. Ser. Mediaevalia-a Journal of Medieval Studies = Mediaevalia Mediaevalia-a Journal of Medieval Studies = Mediaevalia. Mediaevalia Groningana New Series = Mediaev Groningana Mediaevalia Groningana New Series = Mediaev. Groningana Mediaevalia Lovaniensia = Mediaevalia Lovan Mediaevalia Lovaniensia = Mediaevalia Lovan. Mediaevalia philosophica polonorum = Mediaev Philos Pol Mediaeval Islamic Historiography and Political Legitimacy: Bal'ami's Tarikhnamah = Rout Stud Hist Iran Mediaeval Islamic Historiography and Political Legitimacy: Bal'ami's Tarikhnamah = Rout. Stud. Hist. Iran. Mediaeval Studies = Mediaeval Stud Mediaeval Studies = Mediaeval Stud. Mediaeval studies = Mediaev Stud Mediaeval Studies = MS Media Events in A Global Age = Comedia Media Events in A Global Age = Comedia. Media Forensics and Security Ii = Proc Spie Media Forensics and Security Ii = Proc. Spie. Media & gender monitor / An occasional publication by the Women's Programme at the World Association for Christian Communication = Media & Gend Monit Media Globalization and The Discovery Channel Networks = Routl Adv Int Media Media Globalization and The Discovery Channel Networks = Routl. Adv. Int. Media Media in Hong Kong: Press Freedom and Political Change, 1967-2005 = Routl Media Cult Soc Media in Hong Kong: Press Freedom and Political Change, 1967-2005 = Routl. Media Cult. Soc. Media International Australia = Media Int Aust Media International Australia = Media Int. Aust. Media in Transition = Media Transit Media in Transition = Media Transit. Mediale Erregungen? Autonomie Und Aufmerksamkeit Im Literatur- Und Kulturbetrieb Der Gegenwart = Stud Texte Sozialges Mediale Erregungen? Autonomie Und Aufmerksamkeit Im Literatur- Und Kulturbetrieb Der Gegenwart = Stud. Texte. Sozialges. Media Literacy and Semiotics = Semiot Pop Cult Media Literacy and Semiotics = Semiot. Pop. Cult. Media Literacy: New Agendas in Communication = New Agendas Commun Media Literacy: New Agendas in Communication = New Agendas Commun. Medial Latitudes: Linguistische Gegenstandskonstitution Aus Medientheoretischer Und Pragmatischer Perspektive = Linguist-impulse Ten Medial Latitudes: Linguistische Gegenstandskonstitution Aus Medientheoretischer Und Pragmatischer Perspektive = Linguist-impulse. Ten. Medial Representations: Mathematics, Algorithms and Applications = Comput Imaging Vis Medial Representations: Mathematics, Algorithms and Applications = Comput. Imaging. Vis. Media Management and Economics Series = Media Manag Econ Ser Media Management and Economics Series = Media Manag. Econ. Ser. Media On The Move: Global Flow and Contra-flow = Commun Soc-ser Media On The Move: Global Flow and Contra-flow = Commun. Soc-ser. Media Perspectives for The 21st Century = Commun Soc-ser Media Perspectives for The 21st Century = Commun. Soc-ser. Media Practice = Media Pract Media Practice = Media Pract. Media Pressure On Foreign Policy: The Evolving Theoretical Framework = Palgr Mac Ser Int Po Media Pressure On Foreign Policy: The Evolving Theoretical Framework = Palgr. Mac. Ser. Int. Po. Media Processors 1999 = Proc Spie Media Processors 1999 = Proc. Spie. Media Processors 1999 = P Soc Photo-opt Ins Media Processors 1999 = P. Soc. Photo-opt. Ins. Media Processors 2000 = Proc Spie Media Processors 2000 = Proc. Spie. Media Processors 2000 = P Soc Photo-opt Ins Media Processors 2000 = P. Soc. Photo-opt. Ins. Media Processors 2001 = Proc Spie Media Processors 2001 = Proc. Spie. Media Processors 2001 = P Soc Photo-opt Ins Media Processors 2001 = P. Soc. Photo-opt. Ins. Media Processors 2002 = Proc Spie Media Processors 2002 = Proc. Spie. Media Processors 2002 = P Soc Photo-opt Ins Media Processors 2002 = P. Soc. Photo-opt. Ins. Media Psychology = Media Psychol Media Psychology = Media Psychol. Media Skills = Media Skills Media Space 20+ Years of Mediated Life = Comput Supp Coop Wor Media Space 20+ Years of Mediated Life = Comput. Supp. Coop. Wor. Media Studies Journal = Media Stud J Media Studies Journal = Media Stud. J. Media/theory-thinking About Media and Communications = Comedia Media/theory-thinking About Media and Communications = Comedia. Mediating Health Information: The Go-betweens in A Changing Socio-technical Landscape = Health Technol Soc Mediating Health Information: The Go-betweens in A Changing Socio-technical Landscape = Health Technol. Soc. Mediation in The Asia-pacific Region: Transforming Conflicts and Building Peace = Routl Adv Int Relat Mediation in The Asia-pacific Region: Transforming Conflicts and Building Peace = Routl. Adv. Int. Relat. Mediation of Power = Commun Soc-ser Mediation of Power = Commun. Soc-ser. Mediation, Remediation, and The Dynamics of Cultural Memory = Media Cult Mem Mediation, Remediation, and The Dynamics of Cultural Memory = Media. Cult. Mem. Mediators in The Cardiovascular System: Regional Ischemia = Agent Action Suppl Mediators in The Cardiovascular System: Regional Ischemia = Agent. Action. Suppl. Mediators of Inflammation = Mediat Inflamm Mediators of Inflammation = Mediat. Inflamm. Mediators of inflammation = Mediators Inflamm Mediators of Inflammation = Mediators Inflamm. Media War and Security = Media War Secur Media War and Security = Media War Secur. Medica Britannica = Med Br (Lond) Medical affairs = Med Aff Medical Affairs = Med. Aff. Medical and Biological Engineering and Computing = Med. Biol. Eng. Comput. Medical and Biological Engineering And Computing=Med Biol Eng Comput;; Medical and Biological Engineering = Med. Biol. Eng. Medical and Biological Illustration = Med Biol Illus Medical and Biological Illustration = Med. Biol. Illus. Medical and Care Compunetics 2 = St Heal T Medical and Care Compunetics 2 = St. Heal. T. Medical and Care Compunetics 2 = Stud Health Technol Medical and Care Compunetics 2 = Stud. Health. Technol. Medical and Care Compunetics 3 = St Heal T Medical and Care Compunetics 3 = St. Heal. T. Medical and Care Compunetics 4 = St Heal T Medical and Care Compunetics 4 = St. Heal. T. Medical and Care Compunetics 4 = Stud Health Technol Medical and Care Compunetics 4 = Stud. Health. Technol. Medical and Care Compunetics 5 = St Heal T Medical and Care Compunetics 5 = St. Heal. T. Medical and Care Compunetics 5 = Stud Health Technol Medical and Care Compunetics 5 = Stud. Health. Technol. Medical and Fiber Optic Sensors and Delivery Systems, Proceedings Of = P Soc Photo-opt Ins Medical and Fiber Optic Sensors and Delivery Systems, Proceedings Of = P. Soc. Photo-opt. Ins. Medical and pediatric oncology = Med Pediatr Oncol Medical and Pediatric Oncology=Med Pediatr Oncol;; Medical and Pediatric Oncology = Med Pediatr Oncol Medical and Pediatric Oncology = Med. Pediatr. Oncol. Medical and pediatric oncology. Supplement = Med Pediatr Oncol Suppl Medical and Pediatric Oncology. Supplement=Med Pediatr Oncol Suppl;; Medical and Pediatric Oncology. Supplement = Med. Pediatr. Oncol. Suppl. Medical and veterinary entomology = Med Vet Entomol Medical and Veterinary Entomology=Med Vet Entomol;; Medical and Veterinary Entomology = Med Vet Entomol Medical and Veterinary Entomology = Med. Vet. Entomol. Medical Annals of the District of Columbia = Med. Ann. Dist. Columbia Medical anthropology = Med Anthropol Medical Anthropology=Med Anthropol;; Medical Anthropology = Med Anthropol Medical Anthropology = Med. Anthropol. Medical anthropology newsletter = Med Anthropol Newsl Medical anthropology quarterly = Med Anthropol Q Medical Anthropology Quarterly=Med Anthropol Q;; Medical Anthropology Quarterly = Med Anthropol Q Medical Anthropology Quarterly = Med. Anthropol. Q. Medical Applications for Shape-memory Alloys (sma) = Imeche Sem Medical Applications for Shape-memory Alloys (sma) = Imeche. Sem. Medical Applications of Lasers Ii, Proceedings Of = P Soc Photo-opt Ins Medical Applications of Lasers Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Medical Applications of Lasers in Dermatology, Cardiology, Ophthalmology, and Dentistry Ii, Proceedings Of = P Soc Photo-opt Ins Medical Applications of Lasers in Dermatology, Cardiology, Ophthalmology, and Dentistry Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Medical Applications of Lasers in Dermatology, Ophthalmology, Dentistry, and Endoscopy, Proceedings Of = P Soc Photo-opt Ins Medical Applications of Lasers in Dermatology, Ophthalmology, Dentistry, and Endoscopy, Proceedings Of = P. Soc. Photo-opt. Ins. Medical Applications of Lasers, Proceedings Of = P Soc Photo-opt Ins Medical Applications of Lasers, Proceedings Of = P. Soc. Photo-opt. Ins. Medical Applications of Penetrating Radiation = P Soc Photo-opt Ins Medical Applications of Penetrating Radiation = P. Soc. Photo-opt. Ins. Medical art = Med Art Medical Art = Med. Art Medical arts and sciences = Med Arts Sci Medical Arts and Sciences = Med. Arts Sci. Medical aspects of human sexuality = Med Aspects Hum Sex Medical Aspects of Human Sexuality = Med. Aspects Hum. Sex. Medical Aspects of Proteases and Protease Inhibitors = Biom Hlth R Medical Aspects of Proteases and Protease Inhibitors = Biom. Hlth. R. Medical Audit and Accountability = Roy Soc Med Int Cong Medical Audit and Accountability = Roy. Soc. Med. Int. Cong. Medical & biological engineering & computing = Med Biol Eng Comput Medical & Biological Engineering & Computing = Med Biol Eng Comput Medical & Biological Engineering & Computing = Med. Biol. Eng. Comput. Medical & biological engineering = Med Biol Eng Medical & Biological Engineering = Med Biol Eng Medical & Biological Engineering = Med. Biol. Eng. Medical & biological illustration = Med Biol Illus Medical biology = Med Biol Medical Biology = Med Biol Medical Biology = Med. Biol. Medical Biometrics, Proceedings = Lect Notes Comput Sc Medical Biometrics, Proceedings = Lect. Notes. Comput. Sc. Medical Biostatistics, Second Edition = Ch Crc Biostat Ser Medical Biostatistics, Second Edition = Ch. Crc. Biostat. Ser. Medical bulletin (Ann Arbor, Mich.) = Med Bull (Ann Arbor) Medical bulletin. Harrisburg Polyclinic Hospital = Med Bull Harrisburg Polyclin Hosp Medical bulletin of Istanbul Medical Faculty = Med Bull Istanbul Med Fac Medical bulletin of the U. S. Army, Europe. United States. Army, Europe. Medical Division = Med Bull US Army Eur Medical Bulletin Of Uganda = Med Bull Uganda Medical bulletin. St. Louis University = Med Bull St Louis Univ Medical bulletin. United States. Army. European Command. Medical Division = Med Bull U S Army Eur Command Med Div Medical bulletin. United States. Veterans Administration. Dept. of Medicine and Surgery = Med Bull Vet Adm Medical Bulletin / U.S. Army First Army United States. Army. Army, 1st = Med Bull U S Army Army 1st Medical Bulletin, Veterans Administration = Med. Bull. Vet. Adm. Medical care = Med Care Medical Care=Med Care;; Medical Care = Med Care Medical Care = Med. Care Medical Care Output and Productivity = Stud Income Medical Care Output and Productivity = Stud. Income. Medical care research and review : MCRR = Med Care Res Rev Medical Care Research and Review = Med Care Res Rev Medical Care Research and Review = Med. Care Res. Rev. Medical care review = Med Care Rev Medical Care Review = Med. Care Rev. Medical claims management = Med Claims Manag Medical Claims Management = Med. Claims Manag. Medical Clinics of North America = Med Clin N Am Medical Clinics of North America = Med. Clin. N. Am. Medical Clinics of North America=Med Clin North Am;; Medical Clinics of North America = Med. Clin. North Am. Medical College of Virginia Quarterly = Med Coll Va Quart Medical College of Virginia Quarterly = Med. Coll. Va. Quart. Medical Content-based Retrieval for Clinical Decision Support = Lect Notes Comput Sc Medical Content-based Retrieval for Clinical Decision Support = Lect. Notes. Comput. Sc. Medical counterpoint = Med Counterpoint Medical Data Analysis, Proceedings = Lect Notes Comput Sc Medical Data Analysis, Proceedings = Lect. Notes. Comput. Sc. Medical decision making : an international journal of the Society for Medical Decision Making = Med Decis Making Medical Decision Making=Med Decis Making;; Medical Decision Making = Med Decis Making Medical Decision Making = Med. Decis. Making Medical/dental journal = Med Dent J Medical/Dental Journal = Med. Dent. J. Medical design and material = Med Des Mater Medical Design and Material = Med. Des. Mater. Medical Device Data and Modeling for Clinical Decision Making = Artech Hse Bioinf Bi Medical Device Data and Modeling for Clinical Decision Making = Artech. Hse. Bioinf. Bi. Medical Device & Diagnostic Industry = Med Device Diagn Ind Medical Device & Diagnostic Industry = Med. Device Diagn. Ind. Medical device technology = Med Device Technol Medical Device Technology = Med Device Technol Medical Device Technology = Med. Device Technol. Medical digest = Med Dig Medical dimensions = Med Dimens Medical Dosimetry=Med Dosim;; Medical Dosimetry = Med Dosim Medical Dosimetry = Med. Dosim. Medical dosimetry : official journal of the American Association of Medical Dosimetrists = Med Dosim Medical economics = Med Econ Medical Economics = Med. Econ. Medical Education in The New Millennium = Educ Compet Glob Wor Medical Education in The New Millennium = Educ. Compet. Glob. Wor. Medical education = Med Educ Medical Education=Med Educ;; Medical Education = Med Educ Medical Education = Med. Educ. Medical Education: The State of The Art = Educ Compet Glob Wor Medical Education: The State of The Art = Educ. Compet. Glob. Wor. Medical Education-us = Med Educ-us Medical Education-us = Med. Educ-us. Medical Electronics and Biological Engineering = Med. Electron. Biol. Eng. Medical electronics & biological engineering = Med Electron Biol Eng Medical electronics = Med Electron Medical Electronics = Med. Electron. Medical electron microscopy : official journal of the Clinical Electron Microscopy Society of Japan = Med Electron Microsc Medical Engineering and Physics=Med Eng Phys;; Medical Engineering and Physics = Med. Eng. Phys. Medical engineering & physics = Med Eng Phys Medical Engineering & Physics = Med Eng Phys Medical Engineering & Physics = Med. Eng. Phys. Medical Enhancement and Posthumanity = Int Libr Eth Law Tec Medical Enhancement and Posthumanity = Int. Libr. Eth. Law. Tec. Medical Entomology and Zoology = Med. Entomol. Zool. Medical Enzymology: A Simplified Approach = Biochem Res Trends Medical Enzymology: A Simplified Approach = Biochem. Res. Trends. Medical Ethics At The Dawn of The 21st Century = Ann Ny Acad Sci Medical Ethics At The Dawn of The 21st Century = Ann. Ny. Acad. Sci. Medical ethics (Burlington, Mass.) = Med Ethics (Burlingt, Mass) Medical ethics : journal of Forum for Medical Ethics Society = Med Ethics Medical Genetics in The Clinical Practice of Orl = Adv Oto-rhino-laryng Medical Genetics in The Clinical Practice of Orl = Adv. Oto-rhino-laryng. Medical Geography in Historical Perspective = Med His Sup Medical Geography in Historical Perspective = Med. His. Sup. Medical Geography in Historical Perspective = Med Hist Suppl Medical Geography in Historical Perspective = Med. Hist. Suppl. Medical Geology: A Regional Synthesis = Int Year Planet Eart Medical Geology: A Regional Synthesis = Int. Year. Planet. Eart. Medical Group Management Journal = Med Group Manage J Medical Group Management Journal = Med. Group Manage. J. Medical group management journal / MGMA = Med Group Manage J Medical group management = Med Group Manage Medical Group Management = Med. Group Manage. Medical gynaecology, andrology, and sociology = Med Gynaecol Androl Sociol Medical Gynaecology, Andrology, and Sociology = Med. Gynaecol. Androl. Sociol. Medical gynaecology and sociology = Med Gynaecol Sociol Medical heritage = Med Herit Medical History: a quarterly journal devoted to the history of medicine and related sciences = MedHist Medical history Australia = Med Hist Aust Medical history = Med Hist Medical History=Med Hist;; Medical History = Med Hist Medical History = Med. Hist. Medical History, Supplement = Med His Sup Medical History, Supplement = Med. His. Sup. Medical history. Supplement = Med Hist Suppl Medical History Supplement = Med Hist Suppl Medical History Supplement = Med. Hist. Suppl. Medical History. Supplement=Med Hist Suppl;; Medical History. Supplement = Med. Hist. Suppl. Medical humanities = Med Humanit Medical Humanities = Med Humanit Medical Humanities = Med. Humanit. Medical humanities review = Med Humanit Rev Medical Humanities Series = Med Hum Ser Medical Humanities Series = Med. Hum. Ser. Medical hypotheses = Med Hypotheses Medical Hypotheses=Med Hypotheses;; Medical Hypotheses = Med Hypotheses Medical Hypotheses = Med. Hypotheses Medical Image 2002: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Image 2002: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Image 2002: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Image 2002: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Image Acquisition and Processing = Proc Spie Medical Image Acquisition and Processing = Proc. Spie. Medical Image Acquisition and Processing = P Soc Photo-opt Ins Medical Image Acquisition and Processing = P. Soc. Photo-opt. Ins. Medical image analysis = Med Image Anal Medical Image Analysis = Med Image Anal Medical Image Analysis = Med. Image Anal. Medical Image Computing and Computer-assisted Intervention - Miccai 2000 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2000 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention-miccai 2002, Pt 1 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention-miccai 2002, Pt 1 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2003, Pt 1 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2003, Pt 1 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2003, Pt 2 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2003, Pt 2 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2004, Pt 1, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2004, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2004, Pt 2, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2004, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2005, Pt 1 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2005, Pt 1 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2005, Pt 2 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2005, Pt 2 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2006, Pt 1 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2006, Pt 1 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2006, Pt 2 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2006, Pt 2 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2007, Pt 1, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2007, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention- Miccai 2007, Pt 2, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention- Miccai 2007, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2008, Pt Ii, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2008, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2008, Pt I, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2008, Pt I, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2009, Pt Ii, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2009, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2009, Pt I, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2009, Pt I, Proceedings = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt Iii = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt Iii = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt Ii, = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt Ii, = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt I = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai 2010, Pt I = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention - Miccai'98 = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention - Miccai'98 = Lect. Notes. Comput. Sc. Medical Image Computing and Computer-assisted Intervention, Miccai'99, Proceedings = Lect Notes Comput Sc Medical Image Computing and Computer-assisted Intervention, Miccai'99, Proceedings = Lect. Notes. Comput. Sc. Medical image computing and computer-assisted intervention : MICCAI ... International Conference on Medical Image Computing and Computer-Assisted Intervention = Med Image Comput Comput Assist Interv Int Conf Med Image Comput Comput Assist Interv Medical Image Processing: Techniques and Applications = Biol Med Phys Biomed Medical Image Processing: Techniques and Applications = Biol. Med. Phys. Biomed. Medical Image V : Pacs Design and Evaluation = P Soc Photo-opt Ins Medical Image V : Pacs Design and Evaluation = P. Soc. Photo-opt. Ins. Medical Imaging 1993 : Image Capture, Formatting, and Display = P Soc Photo-opt Ins Medical Imaging 1993 : Image Capture, Formatting, and Display = P. Soc. Photo-opt. Ins. Medical Imaging 1993 : Image Processing = P Soc Photo-opt Ins Medical Imaging 1993 : Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging 1993 : Pacs Design and Evaluation = P Soc Photo-opt Ins Medical Imaging 1993 : Pacs Design and Evaluation = P. Soc. Photo-opt. Ins. Medical Imaging 1993 : Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 1993 : Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 1995: Image Processing = P Soc Photo-opt Ins Medical Imaging 1995: Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging 1995 - Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 1995 - Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 1996: Image Processing = P Soc Photo-opt Ins Medical Imaging 1996: Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging 1996: Physiology and Function From Multidimensional Images = P Soc Photo-opt Ins Medical Imaging 1996: Physiology and Function From Multidimensional Images = P. Soc. Photo-opt. Ins. Medical Imaging 1998: Image Processing, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 1998: Image Processing, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 1998 - Pacs Design and Evaluation: Engineering and Clinical Issues = P Soc Photo-opt Ins Medical Imaging 1998 - Pacs Design and Evaluation: Engineering and Clinical Issues = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Image Display = Proc Spie Medical Imaging 1999: Image Display = Proc. Spie. Medical Imaging 1999: Image Display = P Soc Photo-opt Ins Medical Imaging 1999: Image Display = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Image Perception and Performance = Proc Spie Medical Imaging 1999: Image Perception and Performance = Proc. Spie. Medical Imaging 1999: Image Perception and Performance = P Soc Photo-opt Ins Medical Imaging 1999: Image Perception and Performance = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Image Processing, Pts 1 and 2 = Proc Spie Medical Imaging 1999: Image Processing, Pts 1 and 2 = Proc. Spie. Medical Imaging 1999: Image Processing, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 1999: Image Processing, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 1999 - Pacs Design and Evaluation: Engineering and Clinical Issues = Proc Spie Medical Imaging 1999 - Pacs Design and Evaluation: Engineering and Clinical Issues = Proc. Spie. Medical Imaging 1999 - Pacs Design and Evaluation: Engineering and Clinical Issues = P Soc Photo-opt Ins Medical Imaging 1999 - Pacs Design and Evaluation: Engineering and Clinical Issues = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Physics of Medical Imaging, Pts 1 and 2 = Proc Spie Medical Imaging 1999: Physics of Medical Imaging, Pts 1 and 2 = Proc. Spie. Medical Imaging 1999: Physics of Medical Imaging, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 1999: Physics of Medical Imaging, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Physiology and Function From Multidimensional Images = Proc Spie Medical Imaging 1999: Physiology and Function From Multidimensional Images = Proc. Spie. Medical Imaging 1999: Physiology and Function From Multidimensional Images = P Soc Photo-opt Ins Medical Imaging 1999: Physiology and Function From Multidimensional Images = P. Soc. Photo-opt. Ins. Medical Imaging 1999: Ultrasonic Transducer Engineering = Proc Spie Medical Imaging 1999: Ultrasonic Transducer Engineering = Proc. Spie. Medical Imaging 1999: Ultrasonic Transducer Engineering = P Soc Photo-opt Ins Medical Imaging 1999: Ultrasonic Transducer Engineering = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Image Display and Visualization = Proc Spie Medical Imaging 2000: Image Display and Visualization = Proc. Spie. Medical Imaging 2000: Image Display and Visualization = P Soc Photo-opt Ins Medical Imaging 2000: Image Display and Visualization = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Image Perception and Performance = Proc Spie Medical Imaging 2000: Image Perception and Performance = Proc. Spie. Medical Imaging 2000: Image Perception and Performance = P Soc Photo-opt Ins Medical Imaging 2000: Image Perception and Performance = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Image Processing, Pts 1 and 2 = Proc Spie Medical Imaging 2000: Image Processing, Pts 1 and 2 = Proc. Spie. Medical Imaging 2000: Image Processing, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2000: Image Processing, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Pacs Design and Evaluation - Engineering and Clinical Issues = Proc Spie Medical Imaging 2000: Pacs Design and Evaluation - Engineering and Clinical Issues = Proc. Spie. Medical Imaging 2000: Pacs Design and Evaluation - Engineering and Clinical Issues = P Soc Photo-opt Ins Medical Imaging 2000: Pacs Design and Evaluation - Engineering and Clinical Issues = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Physics of Medical Imaging = Proc Spie Medical Imaging 2000: Physics of Medical Imaging = Proc. Spie. Medical Imaging 2000: Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 2000: Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Physiology and Function Form Multidimensional Images = Proc Spie Medical Imaging 2000: Physiology and Function Form Multidimensional Images = Proc. Spie. Medical Imaging 2000: Physiology and Function Form Multidimensional Images = P Soc Photo-opt Ins Medical Imaging 2000: Physiology and Function Form Multidimensional Images = P. Soc. Photo-opt. Ins. Medical Imaging 2000: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2000: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2000: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2000: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Image Perception and Performance = Proc Spie Medical Imaging 2001: Image Perception and Performance = Proc. Spie. Medical Imaging 2001: Image Perception and Performance = P Soc Photo-opt Ins Medical Imaging 2001: Image Perception and Performance = P. Soc. Photo-opt. Ins. Medical Imaging: 2001: Image Processing, Pts 1-3 = Proc Spie Medical Imaging: 2001: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging: 2001: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging: 2001: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc Spie Medical Imaging 2001: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc. Spie. Medical Imaging 2001: Pacs and Integrated Medical Information Systems: Design and Evaluation = P Soc Photo-opt Ins Medical Imaging 2001: Pacs and Integrated Medical Information Systems: Design and Evaluation = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Physics of Medical Imaging = Proc Spie Medical Imaging 2001: Physics of Medical Imaging = Proc. Spie. Medical Imaging 2001: Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 2001: Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Physiology and Function From Multidimensional Images = Proc Spie Medical Imaging 2001: Physiology and Function From Multidimensional Images = Proc. Spie. Medical Imaging 2001: Physiology and Function From Multidimensional Images = P Soc Photo-opt Ins Medical Imaging 2001: Physiology and Function From Multidimensional Images = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2001: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2001: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2001: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2001: Visualization, Display, and Image-guided Procedures = Proc Spie Medical Imaging 2001: Visualization, Display, and Image-guided Procedures = Proc. Spie. Medical Imaging 2001: Visualization, Display, and Image-guided Procedures = P Soc Photo-opt Ins Medical Imaging 2001: Visualization, Display, and Image-guided Procedures = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2002: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2002: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2002: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Image Processing, Vol 1-3 = Proc Spie Medical Imaging 2002: Image Processing, Vol 1-3 = Proc. Spie. Medical Imaging 2002: Image Processing, Vol 1-3 = P Soc Photo-opt Ins Medical Imaging 2002: Image Processing, Vol 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc Spie Medical Imaging 2002: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc. Spie. Medical Imaging 2002: Pacs and Integrated Medical Information Systems: Design and Evaluation = P Soc Photo-opt Ins Medical Imaging 2002: Pacs and Integrated Medical Information Systems: Design and Evaluation = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 2002: Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Physiology and Function From Multidimensional Images = Proc Spie Medical Imaging 2002: Physiology and Function From Multidimensional Images = Proc. Spie. Medical Imaging 2002: Physiology and Function From Multidimensional Images = P Soc Photo-opt Ins Medical Imaging 2002: Physiology and Function From Multidimensional Images = P. Soc. Photo-opt. Ins. Medical Imaging 2002: Visualization, Image-guided Procedures, and Display = Proc Spie Medical Imaging 2002: Visualization, Image-guided Procedures, and Display = Proc. Spie. Medical Imaging 2002: Visualization, Image-guided Procedures, and Display = P Soc Photo-opt Ins Medical Imaging 2002: Visualization, Image-guided Procedures, and Display = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2003: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2003: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2003: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Image Processing, Pts 1-3 = Proc Spie Medical Imaging 2003: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging 2003: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2003: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc Spie Medical Imaging 2003: Pacs and Integrated Medical Information Systems: Design and Evaluation = Proc. Spie. Medical Imaging 2003: Pacs and Integrated Medical Information Systems: Design and Evaluation = P Soc Photo-opt Ins Medical Imaging 2003: Pacs and Integrated Medical Information Systems: Design and Evaluation = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Physics of Medical Imaging, Pts 1 and 2 = Proc Spie Medical Imaging 2003: Physics of Medical Imaging, Pts 1 and 2 = Proc. Spie. Medical Imaging 2003: Physics of Medical Imaging, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2003: Physics of Medical Imaging, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Physiology and Function: Methods, Systems, and Applications = Proc Spie Medical Imaging 2003: Physiology and Function: Methods, Systems, and Applications = Proc. Spie. Medical Imaging 2003: Physiology and Function: Methods, Systems, and Applications = P Soc Photo-opt Ins Medical Imaging 2003: Physiology and Function: Methods, Systems, and Applications = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2003: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2003: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2003: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2003: Visualization, Image-guided Procedures, and Display = Proc Spie Medical Imaging 2003: Visualization, Image-guided Procedures, and Display = Proc. Spie. Medical Imaging 2003: Visualization, Image-guided Procedures, and Display = P Soc Photo-opt Ins Medical Imaging 2003: Visualization, Image-guided Procedures, and Display = P. Soc. Photo-opt. Ins. Medical Imaging 2004: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2004: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2004: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2004: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2004: Image Processing, Pts 1-3 = Proc Spie Medical Imaging 2004: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging 2004: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2004: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2004: Pacs and Imaging Informatics = Pro Biomed Opt Imag Medical Imaging 2004: Pacs and Imaging Informatics = Pro. Biomed. Opt. Imag. Medical Imaging 2004: Physics of Medical Imaging, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2004: Physics of Medical Imaging, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2004: Physiology, Function, and Structure From Medical Images = Pro Biomed Opt Imag Medical Imaging 2004: Physiology, Function, and Structure From Medical Images = Pro. Biomed. Opt. Imag. Medical Imaging 2004: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2004: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2004: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2004: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2004: Visualization, Image-guided Procedures, and Display = Proc Spie Medical Imaging 2004: Visualization, Image-guided Procedures, and Display = Proc. Spie. Medical Imaging 2004: Visualization, Image-guided Procedures, and Display = P Soc Photo-opt Ins Medical Imaging 2004: Visualization, Image-guided Procedures, and Display = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2005: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2005: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2005: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Image Processing, Pt 1-3 = Proc Spie Medical Imaging 2005: Image Processing, Pt 1-3 = Proc. Spie. Medical Imaging 2005: Image Processing, Pt 1-3 = P Soc Photo-opt Ins Medical Imaging 2005: Image Processing, Pt 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Pacs and Imaging Informatics = Proc Spie Medical Imaging 2005: Pacs and Imaging Informatics = Proc. Spie. Medical Imaging 2005: Pacs and Imaging Informatics = P Soc Photo-opt Ins Medical Imaging 2005: Pacs and Imaging Informatics = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Physics of Medical Imaging, Pts 1 and 2 = Proc Spie Medical Imaging 2005: Physics of Medical Imaging, Pts 1 and 2 = Proc. Spie. Medical Imaging 2005: Physics of Medical Imaging, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2005: Physics of Medical Imaging, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Physiology, Function, and Structure From Medical Images, Pts 1 and 2 = Proc Spie Medical Imaging 2005: Physiology, Function, and Structure From Medical Images, Pts 1 and 2 = Proc. Spie. Medical Imaging 2005: Physiology, Function, and Structure From Medical Images, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2005: Physiology, Function, and Structure From Medical Images, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2005: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2005: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2005: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2005: Visualization, Image-guided Procedures, and Display, Pts 1 and 2 = Proc Spie Medical Imaging 2005: Visualization, Image-guided Procedures, and Display, Pts 1 and 2 = Proc. Spie. Medical Imaging 2005: Visualization, Image-guided Procedures, and Display, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2005: Visualization, Image-guided Procedures, and Display, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Image Perception, Observer Performance and Technology Assessment = Proc Spie Medical Imaging 2006: Image Perception, Observer Performance and Technology Assessment = Proc. Spie. Medical Imaging 2006: Image Perception, Observer Performance and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2006: Image Perception, Observer Performance and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Image Processing, Pts 1-3 = Proc Spie Medical Imaging 2006: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging 2006: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2006: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Pacs and Imaging Informatics = Proc Spie Medical Imaging 2006: Pacs and Imaging Informatics = Proc. Spie. Medical Imaging 2006: Pacs and Imaging Informatics = P Soc Photo-opt Ins Medical Imaging 2006: Pacs and Imaging Informatics = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Physics of Medical Imaging, Pts 1-3 = Proc Spie Medical Imaging 2006: Physics of Medical Imaging, Pts 1-3 = Proc. Spie. Medical Imaging 2006: Physics of Medical Imaging, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2006: Physics of Medical Imaging, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Physiology, Function, and Structure From Medical Images Pts 1 and 2 = Proc Spie Medical Imaging 2006: Physiology, Function, and Structure From Medical Images Pts 1 and 2 = Proc. Spie. Medical Imaging 2006: Physiology, Function, and Structure From Medical Images Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2006: Physiology, Function, and Structure From Medical Images Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2006: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2006: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2006: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2006: Visualization, Image-guided Procedures, and Display = Proc Spie Medical Imaging 2006: Visualization, Image-guided Procedures, and Display = Proc. Spie. Medical Imaging 2006: Visualization, Image-guided Procedures, and Display = P Soc Photo-opt Ins Medical Imaging 2006: Visualization, Image-guided Procedures, and Display = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Computer-aided Diagnosis, Pts 1 and 2 = Proc Spie Medical Imaging 2007: Computer-aided Diagnosis, Pts 1 and 2 = Proc. Spie. Medical Imaging 2007: Computer-aided Diagnosis, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2007: Computer-aided Diagnosis, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2007: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2007: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2007: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Image Processing, Pts 1-3 = Proc Spie Medical Imaging 2007: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging 2007: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2007: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Pacs and Imaging Informatics = Proc Spie Medical Imaging 2007: Pacs and Imaging Informatics = Proc. Spie. Medical Imaging 2007: Pacs and Imaging Informatics = P Soc Photo-opt Ins Medical Imaging 2007: Pacs and Imaging Informatics = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Physics of Medical Imaging, Pts 1-3 = Proc Spie Medical Imaging 2007: Physics of Medical Imaging, Pts 1-3 = Proc. Spie. Medical Imaging 2007: Physics of Medical Imaging, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2007: Physics of Medical Imaging, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Physiology, Function, and Structure From Medical Images = Proc Spie Medical Imaging 2007: Physiology, Function, and Structure From Medical Images = Proc. Spie. Medical Imaging 2007: Physiology, Function, and Structure From Medical Images = P Soc Photo-opt Ins Medical Imaging 2007: Physiology, Function, and Structure From Medical Images = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2007: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2007: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2007: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2007: Visualization and Image-guided Procedures, Pts 1 and 2 = Proc Spie Medical Imaging 2007: Visualization and Image-guided Procedures, Pts 1 and 2 = Proc. Spie. Medical Imaging 2007: Visualization and Image-guided Procedures, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2007: Visualization and Image-guided Procedures, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Computer-aided Diagnosis, Pts 1 and 2 = Proc Spie Medical Imaging 2008: Computer-aided Diagnosis, Pts 1 and 2 = Proc. Spie. Medical Imaging 2008: Computer-aided Diagnosis, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2008: Computer-aided Diagnosis, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2008: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2008: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2008: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Image Processing, Pts 1-3 = Proc Spie Medical Imaging 2008: Image Processing, Pts 1-3 = Proc. Spie. Medical Imaging 2008: Image Processing, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2008: Image Processing, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Pacs and Imaging Informatics = Proc Spie Medical Imaging 2008: Pacs and Imaging Informatics = Proc. Spie. Medical Imaging 2008: Physics of Medical Imaging, Pts 1-3 = Proc Spie Medical Imaging 2008: Physics of Medical Imaging, Pts 1-3 = Proc. Spie. Medical Imaging 2008: Physics of Medical Imaging, Pts 1-3 = P Soc Photo-opt Ins Medical Imaging 2008: Physics of Medical Imaging, Pts 1-3 = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Physiology, Function, and Structure From Medical Images = Proc Spie Medical Imaging 2008: Physiology, Function, and Structure From Medical Images = Proc. Spie. Medical Imaging 2008: Physiology, Function, and Structure From Medical Images = P Soc Photo-opt Ins Medical Imaging 2008: Physiology, Function, and Structure From Medical Images = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Ultrasonic Imaging and Signal Processing = Proc Spie Medical Imaging 2008: Ultrasonic Imaging and Signal Processing = Proc. Spie. Medical Imaging 2008: Ultrasonic Imaging and Signal Processing = P Soc Photo-opt Ins Medical Imaging 2008: Ultrasonic Imaging and Signal Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2008: Visualization, Image-guided Procedures, and Modeling, Pts 1 and 2 = Proc Spie Medical Imaging 2008: Visualization, Image-guided Procedures, and Modeling, Pts 1 and 2 = Proc. Spie. Medical Imaging 2008: Visualization, Image-guided Procedures, and Modeling, Pts 1 and 2 = P Soc Photo-opt Ins Medical Imaging 2008: Visualization, Image-guided Procedures, and Modeling, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Advanced Pacs-based Imaging Informatics and Therapeutic Applications = P Soc Photo-opt Ins Medical Imaging 2010: Advanced Pacs-based Imaging Informatics and Therapeutic Applications = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Biomedical Applications in Molecular, Structural, and Functional Imaging = P Soc Photo-opt Ins Medical Imaging 2010: Biomedical Applications in Molecular, Structural, and Functional Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Computer - Aided Diagnosis = Proc Spie Medical Imaging 2010: Computer - Aided Diagnosis = Proc. Spie. Medical Imaging 2010: Computer - Aided Diagnosis = P Soc Photo-opt Ins Medical Imaging 2010: Computer - Aided Diagnosis = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Image Perception, Observer Performance, and Technology Assessment = Proc Spie Medical Imaging 2010: Image Perception, Observer Performance, and Technology Assessment = Proc. Spie. Medical Imaging 2010: Image Perception, Observer Performance, and Technology Assessment = P Soc Photo-opt Ins Medical Imaging 2010: Image Perception, Observer Performance, and Technology Assessment = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Image Processing = Proc Spie Medical Imaging 2010: Image Processing = Proc. Spie. Medical Imaging 2010: Image Processing = P Soc Photo-opt Ins Medical Imaging 2010: Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Physics of Medical Imaging = Proc Spie Medical Imaging 2010: Physics of Medical Imaging = Proc. Spie. Medical Imaging 2010: Physics of Medical Imaging = P Soc Photo-opt Ins Medical Imaging 2010: Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Ultrasonic Imaging, Tomography, and Therapy = P Soc Photo-opt Ins Medical Imaging 2010: Ultrasonic Imaging, Tomography, and Therapy = P. Soc. Photo-opt. Ins. Medical Imaging 2010: Visualization, Image-guided Procedures, and Modeling = P Soc Photo-opt Ins Medical Imaging 2010: Visualization, Image-guided Procedures, and Modeling = P. Soc. Photo-opt. Ins. Medical Imaging 2011: Biomedical Applications in Molecular, Structural, and Functional Imaging = P Soc Photo-opt Ins Medical Imaging 2011: Biomedical Applications in Molecular, Structural, and Functional Imaging = P. Soc. Photo-opt. Ins. Medical Imaging 2011: Computer-aided Diagnosis = Proc Spie Medical Imaging 2011: Computer-aided Diagnosis = Proc. Spie. Medical Imaging 2011: Image Processing = Proc Spie Medical Imaging 2011: Image Processing = Proc. Spie. Medical Imaging 2011: Physics of Medical Imaging = Proc Spie Medical Imaging 2011: Physics of Medical Imaging = Proc. Spie. Medical Imaging 2011: Visualization, Image-guided Procedures, and Modeling = Proc Spie Medical Imaging 2011: Visualization, Image-guided Procedures, and Modeling = Proc. Spie. Medical Imaging and Augmented Reality = Lect Notes Comput Sc Medical Imaging and Augmented Reality = Lect. Notes. Comput. Sc. Medical Imaging and Augmented Reality, Proceedings = Lect Notes Comput Sc Medical Imaging and Augmented Reality, Proceedings = Lect. Notes. Comput. Sc. Medical Imaging and Informatics = Lect Notes Comput Sc Medical Imaging and Informatics = Lect. Notes. Comput. Sc. Medical Imaging in Gastroenterology and Hepatology = Falk Symp Medical Imaging in Gastroenterology and Hepatology = Falk. Symp. Medical Imaging Iv : Image Capture and Display = P Soc Photo-opt Ins Medical Imaging Iv : Image Capture and Display = P. Soc. Photo-opt. Ins. Medical Imaging Iv : Image Formation = P Soc Photo-opt Ins Medical Imaging Iv : Image Formation = P. Soc. Photo-opt. Ins. Medical Imaging Iv : Image Processing = P Soc Photo-opt Ins Medical Imaging Iv : Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging Iv : Pacs System Design and Evaluation, Parts 1 and 2 = P Soc Photo-opt Ins Medical Imaging Iv : Pacs System Design and Evaluation, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Medical Imaging Vi : Image Capture, Formatting, and Display = P Soc Photo-opt Ins Medical Imaging Vi : Image Capture, Formatting, and Display = P. Soc. Photo-opt. Ins. Medical Imaging Vi : Image Processing = P Soc Photo-opt Ins Medical Imaging Vi : Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging Vi : Instrumentation = P Soc Photo-opt Ins Medical Imaging Vi : Instrumentation = P. Soc. Photo-opt. Ins. Medical Imaging V : Image Capture, Formatting, and Display = P Soc Photo-opt Ins Medical Imaging V : Image Capture, Formatting, and Display = P. Soc. Photo-opt. Ins. Medical Imaging V : Image Physics = P Soc Photo-opt Ins Medical Imaging V : Image Physics = P. Soc. Photo-opt. Ins. Medical Imaging V : Image Processing = P Soc Photo-opt Ins Medical Imaging V : Image Processing = P. Soc. Photo-opt. Ins. Medical Imaging Vi : Pacs Design and Evaluation = P Soc Photo-opt Ins Medical Imaging Vi : Pacs Design and Evaluation = P. Soc. Photo-opt. Ins. Medical immunology (London, England) = Med Immunol Medical Immunology = Med. Immunol. Medical Infobahn for Europe, Proceedings = St Heal T Medical Infobahn for Europe, Proceedings = St. Heal. T. Medical Infobahn for Europe, Proceedings = Stud Health Technol Medical Infobahn for Europe, Proceedings = Stud. Health. Technol. Medical Informatics and The Internet in Medicine = Med Inform Internet Medical Informatics and The Internet in Medicine = Med. Inform. Internet Medical informatics and the Internet in medicine = Med Inform Internet Med Medical Informatics and the Internet in Medicine = Med. Inform. Internet Med. Medical Informatics Europe '96 = St Heal T Medical Informatics Europe '96 = St. Heal. T. Medical Informatics Europe '97 = St Heal T Medical Informatics Europe '97 = St. Heal. T. Medical Informatics Europe '97 = Stud Health Technol Medical Informatics Europe '97 = Stud. Health. Technol. Medical Informatics Europe '99 = St Heal T Medical Informatics Europe '99 = St. Heal. T. Medical Informatics Europe '99 = Stud Health Technol Medical Informatics Europe '99 = Stud. Health. Technol. Medical Informatics=Med Inf (Lond);; Medical Informatics = Med Inform Medical Informatics = Med. Inform. Medical Informatics = Med. Inform. (Lond.) Medical Innovation At The Crossroads = Med Inn Cr Medical Innovation At The Crossroads = Med. Inn. Cr. Medical insight = Med Insight Medical instrumentation = Med Instrum Medical Instrumentation = Med Instrum Medical Instrumentation = Med. Instrum. Medical interface = Med Interface Medical Interface = Med. Interface Medical Journal of Australia=Med J Aust;; Medical Journal of Australia = Med. J. Aust. Medical Journal of Australia = Med J Australia Medical Journal of Australia = Med. J. Australia Medical Journal of Malaya = Med. J. Malaya Medical Journal of Malaysia=Med J Malaysia;; Medical Journal of Malaysia = Med. J. Malaysia Medical journal of Osaka University = Med J Osaka Univ Medical Journal of Osaka University=Med J Osaka Univ;; Medical Journal of Osaka University = Med. J. Osaka Univ. Medical journal of the Islamic Republic of Iran = Med J Islam Repub Iran Medical journal of Zambia = Med J Zambia Medical Journal of Zambia = Med J Zambia Medical Journal of Zambia = Med. J. Zambia Medical laboratory sciences = Med Lab Sci Medical Laboratory Sciences = Med Lab Sci Medical Laboratory Sciences = Med. Lab. Sci. Medical laboratory technology = Med Lab Technol Medical Laboratory Technology = Med Lab Technol Medical Laboratory Technology = Med. Lab. Technol. Medical Laser Application = Med. Laser Appl Medical Laser Applications and Laser-tissue Interactions V = Proc Spie Medical Laser Applications and Laser-tissue Interactions V = Proc. Spie. Medical Law and Moral Rights = Law Philos Libr Medical Law and Moral Rights = Law Philos. Libr. Medical law international = Med Law Int Medical law review = Med Law Rev Medical Law Review = Med Law Rev Medical Law Review = Med. Law Rev. Medical Letter on Drugs and Therapeutics=Med Lett Drugs Ther;; Medical Letter on Drugs and Therapeutics = Med. Lett. Drugs Ther. Medical Letter On Drugs and Therapeutics = Med Lett Drugs Ther Medical Letter On Drugs and Therapeutics = Med. Lett. Drugs Ther. Medical Malpractice Cost Containment Journal = Med. Malpract. Cost Containment J. Medical management network = Med Manag Netw Medical Management Network = Med. Manag. Netw. Medical Management of Oesophageal Reflux Disease = Roy S Med S Medical Management of Oesophageal Reflux Disease = Roy. S. Med. S. Medical Management of Selected Neurological Disorders: Epilepsy, Spasticity and Pain = Roy Soc Med Int Cong Medical Management of Selected Neurological Disorders: Epilepsy, Spasticity and Pain = Roy. Soc. Med. Int. Cong. Medical Marketing and Media = Med. Mark. Media Medical marketing & media = Med Mark Media Medical Methods for Termination of Pregnancy = Who Tech Rep Ser Medical Methods for Termination of Pregnancy = Who. Tech. Rep. Ser. Medical Microbiology and Immunology = Med Microbiol Immun Medical Microbiology and Immunology = Med. Microbiol. Immun. Medical microbiology and immunology = Med Microbiol Immunol Medical Microbiology and Immunology=Med Microbiol Immunol (Berl);; Medical Microbiology and Immunology = Med. Microbiol. Immunol. (Berl.) Medical Microbiology Letters = Med Microbiol Lett Medical Microbiology Letters = Med. Microbiol. Lett. Medical Mineraology and Geochemistry = Rev Mineral Geochem Medical Mineraology and Geochemistry = Rev. Mineral. Geochem. Medical molecular morphology = Med Mol Morphol Medical Molecular Morphology = Med Mol Morphol Medical Molecular Morphology = Med. Mol. Morphol. Medical Mycology = Med Mycol Medical Mycology = Med. Mycol. Medical mycology : official publication of the International Society for Human and Animal Mycology = Med Mycol Medical network strategy report = Med Netw Strategy Rep Medical Network Strategy Report = Med. Netw. Strategy Rep. Medical newsletter = Med Newsl (Lond) Medical Newsletter = Med. Newsl. (London) Medical Oncology and Tumor Pharmacotherapy = Med Oncol Tumor Phar Medical Oncology and Tumor Pharmacotherapy = Med. Oncol. Tumor Phar. Medical oncology and tumor pharmacotherapy = Med Oncol Tumor Pharmacother Medical Oncology and Tumor Pharmacotherapy = Med. Oncol. Tumor Pharmacother. Medical Oncology=Med Oncol;; Medical Oncology = Med Oncol Medical Oncology = Med. Oncol. Medical oncology (Northwood, London, England) = Med Oncol Medical opinion & review = Med Opin Rev Medical Physics = Aip Conf Proc Medical Physics = Aip. Conf. Proc. Medical Physics in The Baltic States = Med Phys Baltic Stat Medical Physics in The Baltic States = Med. Phys. Baltic Stat. Medical Physics in The Baltic States: Proceedings of The 7th International Conference On Medical Physics = Med Phys Baltic Stat Medical Physics in The Baltic States: Proceedings of The 7th International Conference On Medical Physics = Med. Phys. Baltic Stat. Medical physics = Med Phys Medical Physics=Med Phys;; Medical Physics = Med Phys Medical Physics = Med. Phys. Medical Physics Monographs = Med Phys Mg Medical Physics Monographs = Med. Phys. Mg. Medi-Cal Policy Institute issue brief = Medi-Cal Policy Inst Issue Brief Medical principles and practice : international journal of the Kuwait University, Health Science Centre = Med Princ Pract Medical Principles and Practice = Med Prin Pract Medical Principles and Practice = Med. Prin. Pract. Medical Problems of Performing Artists = Med Probl Perform Ar Medical Problems of Performing Artists = Med. Probl. Perform. Ar. Medical problems of performing artists = Med Probl Perform Art Medical Products Sales = Med. Prod. Sales Medical products sales : MPS : the official journal of the American Surgical Trade Association = Med Prod Sales Medical progress; a review of medical advances = Med Prog Medical progress through technology = Med Prog Technol Medical Progress Through Technology=Med Prog Technol;; Medical Progress Through Technology = Med Prog Technol Medical Progress Through Technology = Med. Prog. Technol. Medical Radiation Detectors = Med Sci Ser Medical Radiation Detectors = Med. Sci. Ser. Medical radiographer = Med Radiogr Medical radiography and photography = Med Radiogr Photogr Medical Radiography and Photography = Med. Radiogr. Photogr. Medical Radiology Diagnostic Imaging = Med Radiol Diagn Ima Medical Radiology Diagnostic Imaging = Med. Radiol. Diagn. Ima. Medical radiology = Med Radiol Medical Radiology-radiation Oncology = Med Radiol Radiat On Medical Radiology-radiation Oncology = Med. Radiol. Radiat. On. Medical Radiology Radiation Oncology = Med Radiol Rad Oncol Medical Radiology Radiation Oncology = Med. Radiol. Rad. Oncol. Medical record and annals = Med Rec Ann Medical record and health care information journal = Med Rec Health Care Inf J Medical Record and Health Care Information Journal = Med. Rec. Health Care Inf. J. Medical record news = Med Rec News Medical Record News = Med Rec News Medical Record News = Med. Rec. News Medical reference services quarterly = Med Ref Serv Q Medical Reference Services Quarterly = Med. Ref. Serv. Q. Medical Research At The Dawn of The 21st Century: Medical Research and Animal Models = Colloq Inst Servier Medical Research At The Dawn of The 21st Century: Medical Research and Animal Models = Colloq. Inst. Servier. Medical Research Council memorandum = Memo Med Res Counc Medical Research Council Special Report Series = Med. Res. Counc. Spec. Rep. Ser. (Lond.) Medical research engineering = Med Res Eng Medical Research Engineering = Med Res Eng Medical Research Engineering = Med. Res. Eng. Medical Retina: Focus On Retinal Imaging = Essent Ophthalmol Medical Retina: Focus On Retinal Imaging = Essent. Ophthalmol. Medical science = Med Sci Medical science monitor : international medical journal of experimental and clinical research = Med Sci Monit Medical Science Monitor = Med Sci Monitor Medical Science Monitor = Med. Sci. Monitor Medical Science Research-biochemistry = Med Sci Res-biochem Medical Science Research-biochemistry = Med. Sci. Res-biochem. Medical science research = Med Sci Res Medical Science Research = Med Sci Res Medical Science Research = Med. Sci. Res. Medical Science Series = Med Sci Ser Medical Science Series = Med. Sci. Ser. Medical Science Symposia Series = Med Sci Symp Ser Medical Science Symposia Series = Med. Sci. Symp. Ser. Medical Section Proceedings = Med. Sect. Proc. Medical Section proceedings : the ... annual Meeting of the Medical Section of the American Council of Life Insurance. American Council of Life Insurance. Medical Section. Meeting = Med Sect Proc Medical self-care = Med Self Care Medical Sensors Ii and Fiber Optic Sensors, Proceedings Of = P Soc Photo-opt Ins Medical Sensors Ii and Fiber Optic Sensors, Proceedings Of = P. Soc. Photo-opt. Ins. Medical service = Med Serv Medical Service = Med. Serv. Medical services journal, Canada = Med Serv J Can Medical Services Journal, Canada = Med. Serv. J. Can. Medical Simulation, Proceedings = Lect Notes Comput Sc Medical Simulation, Proceedings = Lect. Notes. Comput. Sc. Medical Sociology and Old Age:towards A Sociology of Health in Later Life = Crit Stud Health Soc Medical Sociology and Old Age:towards A Sociology of Health in Later Life = Crit. Stud. Health Soc. Medical Staff Counselor = Med. Staff Couns. Medical teacher = Med Teach Medical Teacher = Med Teach Medical Teacher = Med. Teach. Medical technicians bulletin = Med Techn Bull Medical Technologies and The Life World: The Social Construction of Normality = Crit Stud Health Soc Medical Technologies and The Life World: The Social Construction of Normality = Crit. Stud. Health. Soc. Medical Technologies in Neurosurgery = Acta Neurochir Suppl Medical Technologies in Neurosurgery = Acta. Neurochir. Suppl. Medical Technologies in Neurosurgery = Act Neur S Medical Technologies in Neurosurgery = Act. Neur. S. Medical Technology Into Healthcare and Society: A Sociology of Devices, Innovation and Governance = Health Technol Soc Medical Technology Into Healthcare and Society: A Sociology of Devices, Innovation and Governance = Health. Technol. Soc. Medical Textiles and Biomaterials for Healthcare = Woodh Publ Text Medical Textiles and Biomaterials for Healthcare = Woodh. Publ. Text. Medical times = Med Times Medical Times = Med. Times Medical Toxicology and Adverse Drug Experience = Med Toxicol Adv Drug Medical Toxicology and Adverse Drug Experience = Med. Toxicol. Adv. Drug Medical toxicology and adverse drug experience = Med Toxicol Adverse Drug Exp Medical Toxicology and Adverse Drug Experience = Med. Toxicol. Adverse Drug Exp. Medical toxicology = Med Toxicol Medical Toxicology = Med. Toxicol. Medical Treatment of Intoxications and Decontamination of Chemical Agents in The Area of Terrorist Attack = Nato Security Sci A Medical Treatment of Intoxications and Decontamination of Chemical Agents in The Area of Terrorist Attack = Nato. Security. Sci. A. Medical Treatment of Intoxications and Decontamination of Chemical Agents in The Area of Terrorist Attack = Nato Secur Sci Ser A Medical Treatment of Intoxications and Decontamination of Chemical Agents in The Area of Terrorist Attack = Nato. Secur. Sci. Ser. A. Medical trial technique quarterly = Med Trial Tech Q Medical Trial Technique Quarterly = Med. Trial Tech. Q. Medical tribune and medical news = Med Trib Med News Medical ultrasound = Med Ultrasound Medical Ultrasound = Med Ultrasound Medical Ultrasound = Med. Ultrasound Medical Virology 10 = Med Virol Medical Virology 10 = Med. Virol. Medical Virology 9 = Med Virol Medical Virology 9 = Med. Virol. Medical Virology = Med Virol Medical Virology = Med. Virol. Medical waste analyst = Med Waste Anal Medical Waste Analyst = Med. Waste Anal. Medical woman's journal = Med Womans J Medical world = Med World Medical world news = Med World News Medical World News = Med. World News Medicamenta = Medicamenta (Madr) Medicamento, historia e sociedade = Medicam Hist Soc Medicamentos de actualidad. Drugs of today = Med Actual Medicamentum = Medicamentum Medicamundi = Medicamundi Medicare brief / National Academy of Social Insurance = Medicare Brief Medicare Reform: Issues and Answers = Bush Sch S Publ Medicare Reform: Issues and Answers = Bush. Sch. S. Publ. Medicc Review = Medicc Rev Medicc Review = Medicc Rev. Medici Gardens: From Making to Design = Penn Stud Landsc Arc Medici Gardens: From Making to Design = Penn. Stud. Landsc. Arc. Medicina-buenos Aires = Medicina-buenos Aire Medicina-buenos Aires = Medicina-buenos Aire. Medicina, cirurgia, farmacia = Med Cir Farm Medicina clinica e sperimentale = Med Clin Sper Medicina Clinica e Sperimentale = Med. Clin. Sper. Medicina clinica = Med Clin (Barc) Medicina Clinica=Med Clin (Barc);; Medicina Clinica = Med. Clin. (Barc.) Medicina Clinica = Med Clin-barcelona Medicina Clinica = Med. Clin-barcelona. Medicina contemporanea (Lisbon, Portugal) = Med Contemp Medicina Contemporanea = Med. Contemp. Medicina cutanea ibero-latino-americana = Med Cutan Ibero Lat Am Medicina Cutanea Ibero-Latino-Americana = Med. Cutan. Ibero. Lat. Am. Medicina De Hoje = Med Hoje Medicina del deporte y del trabajo = Med Deporte Trab Medicina del Lavoro = Med. Lav. Medicina Del Lavoro=Med Lav;; Medicina Del Lavoro = Med Lav Medicina Del Lavoro = Med. Lav. Medicina Dello Sport = Med Sport Medicina Dello Sport = Med. Sport Medicina dello Sport = Med. Sport (Roma) Medicina dello sport; rivista di fisiopatologia dello sport = Med Sport (Roma) Medicina e historia = Med Hist (Barc) Medicina em revista = Med Rev Medicina espanola = Med Esp Medicina Espanola = Med Esp Medicina Espanola = Med. Esp. Medicina et pharmacologia experimentalis. International journal of experimental medicine = Med Pharmacol Exp Int J Exp Med Medicina et Pharmacologia Experimentalis (International Journal of Experimental Medicine) = Med. Pharmacol. Exp. Int. J. Exp. Med. Medicina Et Pharmacologia Experimentalis = Med Pharmacol Exp Medicina Et Pharmacologia Experimentalis = Med. Pharmacol. Exp. Medicina experimentalis. International journal of experimental medicine = Med Exp Int J Exp Med Medicina Experimentalis (International Journal of Experimental Medicine) = Med. Exp. Int. J. Exp. Med. Medicina Experimentalis = Med Exp Medicina Experimentalis = Med. Exp. Medicina fisica y rehabilitacion = Med Fis Rehabil Medicina Fisica y Rehabilitacion = Med. Fis. Rehabil. Medicina (Florence, Italy) = Medicina (Firenze) Medicina infantil = Med Infant Medicina Intensiva = Med Intensiva Medicina Intensiva = Med. Intensiva Medicina intensiva / Sociedad Espanola de Medicina Intensiva y Unidades Coronarias = Med Intensiva Medicina interna (Bucharest, Romania : 1991) = Med Interna Medicina Interna=Med Interna;; Medicina Interna = Med. Interna Medicina interna = Med Interna (Bucur) Medicina (Kaunas, Lithuania) = Medicina (Kaunas) Medicinal and Aromatic Plants: Agricultural, Commercial, Ecological, Legal, Pharmacological and Social Aspects = Wag Ur Fron Medicinal and Aromatic Plants: Agricultural, Commercial, Ecological, Legal, Pharmacological and Social Aspects = Wag. Ur. Fron. Medicinal and Aromatic Plants-industrial Profiles = Med Aromat Plants-in Medicinal and Aromatic Plants-industrial Profiles = Med. Aromat. Plants-in. Medicina latina; revista medica de colaboracion cientifica = Med Lat Medicinal Chemistry and Pharmacological Potential of Fullerenes and Carbon Nanotubes = Carbon Mater-chem Ph Medicinal Chemistry and Pharmacological Potential of Fullerenes and Carbon Nanotubes = Carbon Mater-chem. Ph. Medicinal Chemistry Into The Millennium = Roy Soc Ch Medicinal Chemistry Into The Millennium = Roy. Soc. Ch. Medicinal Chemistry = Med Chem Medicinal Chemistry = Med. Chem. Medicinal chemistry research : an international journal for rapid communications on design and mechanisms of action of biologically active agents = Med Chem Res Medicinal Chemistry Research = Med Chem Res Medicinal Chemistry Research = Med. Chem. Res. Medicinal chemistry (Shariqah, United Arab Emirates) = Med Chem Medicina-lithuania = Med Lith Medicina-lithuania = Med. Lith. Medicinal Organometallic Chemistry = Top Organometal Chem Medicinal Organometallic Chemistry = Top. Organometal. Chem. Medicinal Plants: Classification, Biosynthesis and Pharmacology = Biotech Agr Ind Med Medicinal Plants: Classification, Biosynthesis and Pharmacology = Biotech. Agr. Ind. Med. Medicinal research reviews = Med Res Rev Medicinal Research Reviews=Med Res Rev;; Medicinal Research Reviews = Med Res Rev Medicinal Research Reviews = Med. Res. Rev. Medicina = Medicina Medicina=Medicina (B Aires);; Medicina = Medicina (Mex.) Medicina nei secoli. Arte e scienza = MediSec Medicina nei secoli = Med Secoli Medicina nei Secoli = Med. Secoli Medicina Oral = Med. Oral Medicina oral : organo oficial de la Sociedad Espanola de Medicina Oral y de la Academia Iberoamericana de Patologia y Medicina Bucal = Med Oral Medicina Oral Patologia Oral Y Cirugia Bucal = Med Oral Patol Oral Medicina Oral Patologia Oral Y Cirugia Bucal = Med. Oral Patol. Oral Medicina oral, patologia oral y cirugia bucal = Med Oral Patol Oral Cir Bucal Medicina Paliativa = Med Paliativa Medicina Paliativa = Med. Paliativa Medicina panamericana = Med Panam Medicina Panamericana = Med. Panam. Medicina practica = Med Pract (Zaragoza) Medicina psicosomatica = Med Psicosom Medicina-revista Mexicana = Med Rev Mex Medicina-revista Mexicana = Med. Rev. Mex. Medicina-rivista Della Enciclopedia Medica Italiana = Med-riv Enc Med Ital Medicina-rivista Della Enciclopedia Medica Italiana = Med-riv. Enc. Med. Ital. Medicinar = Medicinar Medicina thoracalis = Med Thorac Medicina Thoracalis = Med Thorac Medicina Thoracalis = Med. Thorac. Medicina tradicional = Med Tradic Medicina Tropical = Med. Trop. (Madr.) Medicina Veterinaria-recife = Med Vet-recife Medicina Veterinaria-recife = Med. Vet-recife. Medicina y cirugia de guerra = Med Cir Guerra Medicina y Cirugia de Guerra = Med. Cir. Guerra Medicina y cirugia = Med Cir (Bogota) Medicina y desarrollo = Med Desarrollo Medicina y seguridad del trabajo = Med Segur Trab (Madr) Medicine and Change : Historical and Sociological Studies of Medical Innovation = Colloq Inse Medicine and Change : Historical and Sociological Studies of Medical Innovation = Colloq. Inse. Medicine and Evolution: Current Applications, Future Prospects = Soc St Hum Medicine and Evolution: Current Applications, Future Prospects = Soc. St. Hum. Medicine and global survival : M & GS = Med Glob Surviv Medicine and Health = Med. Health Medicine and health, Rhode Island = Med Health R I Medicine and Health, Rhode Island=Med Health R I;; Medicine and Health, Rhode Island = Med. Health R. I. Medicine and law = Med Law Medicine and Law=Med Law;; Medicine and Law = Med. Law Medicine and Science in Aquatic Sports = Med Sport Sci Medicine and Science in Aquatic Sports = Med. Sport. Sci. Medicine and Science in Sports and Exercise = Med Sci Sport Exer Medicine and Science in Sports and Exercise = Med. Sci. Sport. Exer. Medicine and science in sports and exercise = Med Sci Sports Exerc Medicine and Science in Sports and Exercise = Med. Sci. Sports Exerc. Medicine and Science In Sports And Exercise=Med Sci Sports Exerc;; Medicine and science in sports = Med Sci Sports Medicine and Science in Sports = Med. Sci. Sports Medicine and society = Med Soc (Berkeley) Medicine and sport science = Med Sport Sci Medicine and Sport Science = Med Sport Sci Medicine and Sport Science = Med. Sport Sci. Medicine and war = Med War Medicine and War = Med. War Medicine at Emory = Med Emory Medicine, conflict, and survival = Med Confl Surviv Medicine, Conflict and Survival=Med Confl Surviv;; Medicine, Conflict and Survival = Med. Confl. Surviv. Medicine & health (1997) = Med Health Medicine Health Care and Philosophy = Med Health Care Phil Medicine Health Care and Philosophy = Med. Health Care Phil. Medicine, health care, and philosophy = Med Health Care Philos Medicine, Health Care, and Philosophy = Med. Health Care Philos. Medicine & health = Med Health Medicine illustrated = Med Illus Medicine international (UK ed.) = Med Int Medicine in The Enlightenment = Clio Medica Medicine in The Enlightenment = Clio. Medica. Medicine, Malpractice and Misapprehensions = Biomed Law Ethics Li Medicine, Malpractice and Misapprehensions = Biomed. Law. Ethics. Li. Medicine = Medicine Medicine=Medicine (Baltimore);; Medicine = Medicine (Baltimore) Medicine Meets Engineering = St Heal T Medicine Meets Engineering = St. Heal. T. Medicine Meets Engineering = Stud Health Technol Medicine Meets Engineering = Stud. Health. Technol. Medicine Meets Virtual Reality 02/10 = St Heal T Medicine Meets Virtual Reality 02/10 = St. Heal. T. Medicine Meets Virtual Reality 02/10 = Stud Health Technol Medicine Meets Virtual Reality 02/10 = Stud. Health. Technol. Medicine Meets Virtual Reality 11 = St Heal T Medicine Meets Virtual Reality 11 = St. Heal. T. Medicine Meets Virtual Reality 11 = Stud Health Technol Medicine Meets Virtual Reality 11 = Stud. Health. Technol. Medicine Meets Virtual Reality 12 = St Heal T Medicine Meets Virtual Reality 12 = St. Heal. T. Medicine Meets Virtual Reality 12 = Stud Health Technol Medicine Meets Virtual Reality 12 = Stud. Health. Technol. Medicine Meets Virtual Reality 13: The Magical Next Becomes The Medical Now = St Heal T Medicine Meets Virtual Reality 13: The Magical Next Becomes The Medical Now = St. Heal. T. Medicine Meets Virtual Reality 14 = St Heal T Medicine Meets Virtual Reality 14 = St. Heal. T. Medicine Meets Virtual Reality 15 = St Heal T Medicine Meets Virtual Reality 15 = St. Heal. T. Medicine Meets Virtual Reality 16 = St Heal T Medicine Meets Virtual Reality 16 = St. Heal. T. Medicine Meets Virtual Reality 16 = Stud Health Technol Medicine Meets Virtual Reality 16 = Stud. Health. Technol. Medicine Meets Virtual Reality 17 - Nextmed: Design For/the Well Being = St Heal T Medicine Meets Virtual Reality 17 - Nextmed: Design For/the Well Being = St. Heal. T. Medicine Meets Virtual Reality 2001: Outer Space, Inner Space, Virtual Space = St Heal T Medicine Meets Virtual Reality 2001: Outer Space, Inner Space, Virtual Space = St. Heal. T. Medicine Meets Virtual Reality 2001: Outer Space, Inner Space, Virtual Space = Stud Health Technol Medicine Meets Virtual Reality 2001: Outer Space, Inner Space, Virtual Space = Stud. Health. Technol. Medicine Meets Virtual Reality = St Heal T Medicine Meets Virtual Reality = St. Heal. T. Medicine Meets Virtual Reality = Stud Health Technol Medicine Meets Virtual Reality = Stud. Health. Technol. Medicine of the year = Med Year Medicines and Foods = Colloq Semi Medicines and Foods = Colloq. Semi. Medicine, science, and the law = Med Sci Law Medicine, Science and the Law = Med. Sci. Law Medicine Science and The Law = Med Sci Law Medicine Science and The Law = Med. Sci. Law Medicine, Science and The Law=Med Sci Law;; Medicine & Science in Sports & Exercise = Med. Sci. Sports Exercise Medicine Series of The Commission of The European Communities = Med S Comm Medicine Series of The Commission of The European Communities = Med. S. Comm. Medicines, ethics and practice : a guide for pharmacists. Royal Pharmaceutical Society of Great Britain = Med Ethics Pract Royal Pharm Soc G B Medicine's geographic heritage = Med Geogr Herit Medicine today = Med Today Medicinsk Forum = Med Forum Medicinski arhiv = Med Arh Medicinski Arhiv=Med Arh;; Medicinski Arhiv = Med. Arh. Medicinski glasnik = Med Glas Medicinski Glasnik = Med Glas Medicinski Glasnik = Med. Glas. Medicinski pregled = Med Pregl Medicinski Pregled=Med Pregl;; Medicinski Pregled = Med. Pregl. Medicinski razgledi = Med Razgl Medicinski vjesnik (Osijek, Croatia) = Med Vjesn (Osijek) Medico Boehringer: overseas ed = Med Bohringer (Overseas) Medico; Europa Ausg = Medico (Eur) Medicographia = Medicographia Medico; international ed = Medico (Int) Medico-legal bulletin = Med Leg Bull Medico-Legal Bulletin = Med. Leg. Bull. Medico-legal Issues in Infectious Diseases: Guide for Physicians = Emerg Inf Dis 21st C Medico-legal Issues in Infectious Diseases: Guide for Physicians = Emerg. Inf. Dis. 21st. C. Medico-Legal Journal=Med Leg J;; Medico-Legal Journal = Med. Leg. J. Medicolegal news = Medicoleg News Medicolegal News = Medicoleg. News Medien Des Kollektiven Gedachtnisses = Media Cult Mem Medien Des Kollektiven Gedachtnisses = Media. Cult. Mem. Medien Und Kulturelle Erinnerung = Medien Kult Erinneru Medien Und Kulturelle Erinnerung = Medien Kult. Erinneru. Medieval Andalusian Courtly Culture in The Mediterranean = Routl Stud Mid E Lit Medieval Andalusian Courtly Culture in The Mediterranean = Routl. Stud. Mid. E. Lit. Medieval and Renaissance Humanism11: Rhetoric, Representation, and Reform = Brill S In Medieval and Renaissance Humanism11: Rhetoric, Representation, and Reform = Brill. S. In. Medieval and Renaissance Texts and Studies = Mediev Ren Tex Stud Medieval and Renaissance Texts and Studies = Mediev. Ren. Tex. Stud. Medieval Archaeology. Journal of the Society for Medieval Archaeology = MedievA Medieval archaeology = Mediev Archaeol Medieval Archaeology = Mediev Archaeol Medieval Archaeology = Mediev. Archaeol. Medieval Author in Medieval French Literature = Stud Arthur Court Cu Medieval Author in Medieval French Literature = Stud. Arthur. Court. Cu. Medieval Boundaries: Rethinking Difference in Old French Literature = Middle Ages Ser Medieval Boundaries: Rethinking Difference in Old French Literature = Middle. Ages. Ser. Medieval Chastity Belt: A Myth-making Process = New Middle Ages Medieval Chastity Belt: A Myth-making Process = New. Middle. Ages. Medieval Culture and Society = Mediev Cult Soc Medieval Culture and Society = Mediev. Cult. Soc. Medieval Cultures = Mediev Cult Medieval Cultures = Mediev. Cult. Medieval Education = Fordham Ser Mediev S Medieval Education = Fordham. Ser. Mediev. S. Medievales = Medievales Medieval Hebrew Encyclopedias of Science and Philosophy, Proceedings = Amst Stud Jewish Medieval Hebrew Encyclopedias of Science and Philosophy, Proceedings = Amst. Stud. Jewish. Medieval Hebrew Encyclopedias of Science and Philosophy, Proceedings = Amst Stud Jew Though Medieval Hebrew Encyclopedias of Science and Philosophy, Proceedings = Amst. Stud. Jew. Though. Medieval History Journal = Mediev Hist J Medieval History Journal = Mediev. Hist. J. Medievalia et humanistica = Mediev Humanist Medievalia et Humanistica: studies in medieval and Renaissance society = M&H Medievalism, Multilingualism, and Chaucer = New Middle Ages Medievalism, Multilingualism, and Chaucer = New. Middle. Ages. Medieval Literacy and Textuality in Middle High German: Reading and Writing in Albrecht's Jungerer Titurel = Stud Arthur Court Cu Medieval Literacy and Textuality in Middle High German: Reading and Writing in Albrecht's Jungerer Titurel = Stud. Arthur. Court. Cu. Medieval Mediterranean = Mediev St M Medieval Mediterranean = Mediev. St. M. Medieval Mediterranean: Peoples, Economies and Cultures, 400 - 1453 = Medieval Mediterr Medieval Mediterranean: Peoples, Economies and Cultures, 400 - 1453 = Medieval Mediterr. Medieval Opus = False Title Medieval Opus = False. Title. Medieval Poetics of The Reliquary: Enshrinement, Inscription, Performance = New Middle Ages Medieval Poetics of The Reliquary: Enshrinement, Inscription, Performance = New. Middle. Ages. Medieval Romance and The Construction of Heterosexuality = New Middle Ages Medieval Romance and The Construction of Heterosexuality = New. Middle. Ages. Medieval Sexuality: A Casebook = Routl Medieval Caseb Medieval Sexuality: A Casebook = Routl. Medieval Caseb. Medieval Studies At Minnesota = Mediev St M Medieval Studies At Minnesota = Mediev. St. M. Medieval Tibeto-burman Languages = Brills Tibet Stu Lib Medieval Tibeto-burman Languages = Brills. Tibet. Stu. Lib. Medieval Tibeto-burman Languages Ii = Brills Tibet Stu Lib Medieval Tibeto-burman Languages Ii = Brills. Tibet. Stu. Lib. Medieval Tuscan Pulpits = Acad Tosc S Medieval Tuscan Pulpits = Acad. Tosc. S. Medika; informativni casopis farmaceutiskih poduzeca NRH = Medika (Zagreb) Medikon = Medikon Medinfo 2001: Proceedings of The 10th World Congress On Medical Informatics, Pts 1 and 2 = St Heal T Medinfo 2001: Proceedings of The 10th World Congress On Medical Informatics, Pts 1 and 2 = St. Heal. T. Medinfo 2001: Proceedings of The 10th World Congress On Medical Informatics, Pts 1 and 2 = Stud Health Technol Medinfo 2001: Proceedings of The 10th World Congress On Medical Informatics, Pts 1 and 2 = Stud. Health. Technol. Medinfo 2004: Proceedings of The 11th World Congress On Medical Informatics, Pt 1 and 2 = St Heal T Medinfo 2004: Proceedings of The 11th World Congress On Medical Informatics, Pt 1 and 2 = St. Heal. T. Medinfo 2004: Proceedings of The 11th World Congress On Medical Informatics, Pt 1 and 2 = Stud Health Technol Medinfo 2004: Proceedings of The 11th World Congress On Medical Informatics, Pt 1 and 2 = Stud. Health. Technol. Medinfo 2007: Proceedings of The 12th World Congress On Health (medical) Informatics, Pts 1 and 2 = St Heal T Medinfo 2007: Proceedings of The 12th World Congress On Health (medical) Informatics, Pts 1 and 2 = St. Heal. T. Medinfo 2007: Proceedings of The 12th World Congress On Health (medical) Informatics, Pts 1 and 2 = Stud Health Technol Medinfo 2007: Proceedings of The 12th World Congress On Health (medical) Informatics, Pts 1 and 2 = Stud. Health Technol. Medinfo '98 - 9th World Congress On Medical Informatics, Pts 1 and 2 = St Heal T Medinfo '98 - 9th World Congress On Medical Informatics, Pts 1 and 2 = St. Heal. T. Medinfo '98 - 9th World Congress On Medical Informatics, Pts 1 and 2 = Stud Health Technol Medinfo '98 - 9th World Congress On Medical Informatics, Pts 1 and 2 = Stud. Health. Technol. Medinfo = Medinfo Medinfo. MEDINFO = Medinfo Medioevo greco = MEG Medioevo latino = Medioevo Lat Medioevo-rivista Di Storia Della Filosofia Medievale = Medioevo Medioevo-rivista Di Storia Della Filosofia Medievale = Medioevo. Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 33 = Medioevo Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 33 = Medioevo. Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 34 = Medioevo Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 34 = Medioevo. Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 35 = Medioevo Medioevo: Rivista Di Storia Della Filosofia Medievale, Vol 35 = Medioevo. Medioevo Romanzo = Medioevo Romanzo Medioevo romanzo = Medioev Romanzo Medisch contact = Med Contact (Bussum) Medisch maandblad = Med Maandbl Medi@sia: Global Media/tion in and Out of Context = Asias Transform Medi@sia: Global Media/tion in and Out of Context = Asias. Transform. Meditations in Theology: Georges De Schrijver's Wager and Liberation Theologies = Annu Nunt Lovanien Meditations in Theology: Georges De Schrijver's Wager and Liberation Theologies = Annu. Nunt. Lovanien. Mediterranean Archaeology & Archaeometry = Mediterr Archaeol Ar Mediterranean Archaeology & Archaeometry = Mediterr. Archaeol. Ar. Mediterranean Archaeology: Australian and New Zealand journal for the archaeology of the Mediterranean world = MedArch Mediterranean Archaeology = MedA Mediterranean Climate: Variability and Trends = Reg Clim St Mediterranean Climate: Variability and Trends = Reg. Clim. St. Mediterranean Climate: Variability and Trends = Reg Clim Stud Mediterranean Climate: Variability and Trends = Reg. Clim. Stud. Mediterranean Historical Review, ed. by the Aranne School of History, Tel Aviv Univ = MHR Mediterranean Historical Review = MedHistR Mediterranean Historical Review = Mediterr Hist Rev Mediterranean Historical Review = Mediterr. Hist. Rev. Mediterranean Journal of Mathematics = Mediterr J Math Mediterranean Journal of Mathematics = Mediterr. J. Math. Mediterranean Journal of Otology = Mediterr J Otol Mediterranean Journal of Otology = Mediterr. J. Otol. Mediterranean Landsurface Processes Assessed From Space = Reg Clim Stud Mediterranean Landsurface Processes Assessed From Space = Reg. Clim. Stud. Mediterranean Marine Science = Mediterr Mar Sci Mediterranean Marine Science = Mediterr. Mar. Sci. Mediterranean Politics = Mediterr Polit Mediterranean Politics = Mediterr. Polit. Mediterranean Society = Forward Stud Ser Mediterranean Society = Forward. Stud. Ser. Mediterranea-ricerche Storiche = Mediterr-ric Stor Mediterranea-ricerche Storiche = Mediterr-ric. Stor. Mediterranee medicale = Mediterr Med Mediterraneo antico. Economie, società, culture = MedAnt Meditsina truda i promyshlennaia ekologiia = Med Tr Prom Ekol Meditsina Truda i Promyshlennaia Ekologiia = Med. Tr. Prom. Ekol. Meditsinskaia parazitologiia i parazitarnye bolezni = Med Parazitol (Mosk) Meditsinskaia Parazitologiia i Parazitarnye Bolezni = Med. Parazitol. (Mosk.) Meditsinskaia Parazitologiia I Parazitarnye Bolezni=Med Parazitol (Mosk);; Meditsinskaia promyshlennost' SSSR = Med Prom SSSR Meditsinskaia Promyshlennost SSSR = Med. Prom. SSSR Meditsinskaia radiologiia = Med Radiol (Mosk) Meditsinskaia Radiologiia = Med. Radiol. (Mosk.) Meditsinskaia sestra = Med Sestra Meditsinskaia Sestra = Med. Sestra Meditsinskaia tekhnika = Med Tekh Meditsinskaia Tekhnika=Med Tekh;; Meditsinskaia Tekhnika = Med. Tekh. Meditsinskii zhurnal Uzbekistana = Med Zh Uzb Medium Aevum = MAev Medium Aevum = Medium Aevum Medium- and Long-term Energy Outlook : Energy Balances in Oil-importing and Oil-exporting Countries = Energ S Cec Medium- and Long-term Energy Outlook : Energy Balances in Oil-importing and Oil-exporting Countries = Energ. S. Cec. Medium-energy Antiprotons and The Quark-gluon Structures of Hadrons = E Maj Int S Medium-energy Antiprotons and The Quark-gluon Structures of Hadrons = E. Maj. Int. S. Medizin, Gesellschaft, und Geschichte. Beiheft : Jahrbuch des Instituts fur Geschichte der Medizin der Robert Bosch Stiftung = Med Ges Gesch Beih Medizin, Gesellschaft, und Geschichte : Jahrbuch des Instituts fur Geschichte der Medizin der Robert Bosch Stiftung = Med Ges Gesch Medizinhistorisches Journal=Medizinhist J;; Medizinhistorisches Journal = Medizinhist J Medizinhistorisches Journal = Medizinhist. J. Medizin-historisches Journal = MHJ Medizin in Geschichte und Kultur = Med Gesch Kult Medizinische Dokumentation = Med Dok Medizinische Dokumentation = Med Dokum Medizinische Dokumentation = Med. Dokum. Medizinische Genetik = Med. Gen. Medizinische Genetik = Med Genet Medizinische Genetik = Med. Genet. Medizinische Genetik = Med Genet-berlin Medizinische Genetik = Med. Genet-berlin. Medizinische Klinik (Klinik-Ausg.) = Med Klin [Klin] Medizinische Klinik=Med Klin;; Medizinische Klinik = Med Klin Medizinische Klinik = Med. Klin. Medizinische Klinik (Munich, Germany : 1983) = Med Klin (Munich) Medizinische Klinik (Munich, Germany : 1983). Supplement = Med Klin Suppl Medizinische Klinik (Praxis-Ausg.) = Med Klin [Prax] Medizinische Klinik. Supplement = Med. Klin. Suppl. Medizinische Laboratorium = Med. Lab. (Stuttg.) Medizinische Monatsschrift fur Pharmazeuten = Med Monatsschr Pharm Medizinische Monatsschrift fur Pharmazeuten = Med. Monatsschr. Pharm. Medizinische Monatsschrift Fur Pharmazeuten=Med Monatsschr Pharm;; Medizinische Monatsschrift = Med Monatsschr Medizinische Monatsschrift = Med. Monatsschr. Medizinische Novitaten = Med Nov Medizinischer Bild-Dienst = Med Bild Dienst Medizinische Schreibweisen: Ausdifferenzierung Und Transfer Zwischen Medizin Und Literatur (16001900) = Stud Texte Sozialges Medizinische Schreibweisen: Ausdifferenzierung Und Transfer Zwischen Medizin Und Literatur (16001900) = Stud. Texte. Sozialges. Medizinische Technik = Med Tech (Stuttg) Medizinische Welt = Med Welt Medizinische Welt = Med. Welt Medizinrecht : MedR = Medizinrecht Medizin und Gesellschaft = Med Ges Medizin und Gesellschaft = Med. Ges. Medizin und Sport = Med. Sport Medizin und Sport = Med Sport (Berl) Medscape Womens Health = Medscape Womens Heal Medscape Womens Health = Medscape Womens Heal. Medscape women's health = Medscape Womens Health Medscape Women's Health = Medscape Womens Health Medsurg Nursing = Medsurg Nurs. Medsurg nursing : official journal of the Academy of Medical-Surgical Nurses = Medsurg Nurs Medtech 89 : Medical Imaging = P Soc Photo-opt Ins Medtech 89 : Medical Imaging = P. Soc. Photo-opt. Ins. Medullary Thyroid Carcinoma / = Colloq Inse Medullary Thyroid Carcinoma / = Colloq. Inse. Medychnyi zhurnal = Med Zhurnal Medycyna doswiadczalna i mikrobiologia = Med Dosw Mikrobiol Medycyna Doswiadczalna i Mikrobiologia = Med. Dosw. Mikrobiol. Medycyna Doswiadczalna I Mikrobiologia=Med Dosw Mikrobiol;; Medycyna doswiadczalna = Med Dosw Medycyna Doswiadczalna = Med. Dosw. Medycyna nowozytna : studia nad historia medycyny / Polska Akademia Nauk, Instytut Historii Nauki = Med Nowozytna Medycyna pracy = Med Pr Medycyna Pracy=Med Pr;; Medycyna Pracy = Med Pr Medycyna Pracy = Med. Pr. Medycyna weterynaryjna = Med Weter Medycyna Weterynaryjna = Med Weter Medycyna Weterynaryjna = Med. Weter. Medycyna wieku rozwojowego = Med Wieku Rozwoj Medycyna Wieku Rozwojowego = Med. Wieku Rozwoj. Meeresforschung-reports On Marine Research = Meeresforschung Meeresforschung-reports On Marine Research = Meeresforschung. Meeting Basic Learning Needs in The Informal Sector: Integrating Education and Training for Decent Work, Empowerment and Citizenship Vol 2 = Tech Vocat Ed Train Meeting Basic Learning Needs in The Informal Sector: Integrating Education and Training for Decent Work, Empowerment and Citizenship Vol 2 = Tech. Vocat. Ed. Train. Meeting The China Challenge: The U.s. in Southeast Asian Regional Security Strategies = Pol Stud Meeting The China Challenge: The U.s. in Southeast Asian Regional Security Strategies = Pol. Stud. Meeting The Entropy Challenge = Aip Conf Proc Meeting The Entropy Challenge = Aip. Conf. Proc. Meeting The Human Immunology Challenge = Ann Ny Acad Sci Meeting The Human Immunology Challenge = Ann. Ny. Acad. Sci. Megacities: Urban Form, Governance, and Sustainability = Csur Ut Ser Lib Sust Megacities: Urban Form, Governance, and Sustainability = Csur. Ut. Ser. Lib. Sust. Megadesign and Megaopt - German Initiatives for Aerodynamic Simulation and Optimization in Aircraft Design = Note N Fl Mech Mul D Megadesign and Megaopt - German Initiatives for Aerodynamic Simulation and Optimization in Aircraft Design = Note. N. Fl. Mech. Mul. D. Megaflow - Numerical Flow Simulation for Aircraft Design = Note N Fl Mech Mul D Megaflow - Numerical Flow Simulation for Aircraft Design = Note. N. Fl. Mech. Mul. D. Megamot = Megamot Meharri-Dent = Meharri. Dent Meikai Daigaku Shigaku Zasshi = Meikai Daigaku Shigaku Zasshi Meiosis and Gametogenesis = Curr Top Dev Biol Meiosis and Gametogenesis = Curr. Top. Dev. Biol. Meiosis, Vol 1: Molecular and Genetic Methods = Methods Mol Biol Meiosis, Vol 1: Molecular and Genetic Methods = Methods Mol. Biol. Meiosis, Vol 2: Cytological Methods = Methods Mol Biol Meiosis, Vol 2: Cytological Methods = Methods Mol. Biol. Meister Eckhart in Erfurt = Miscellan Mediaeval Meister Eckhart in Erfurt = Miscellan. Mediaeval. Mekhanika Kompositnykh Materialov (Zinatne) = Mekh. Kompoz. Mater. (Zinatne) Mélanges d'Archéologie et d'Histoire de l'école Française de Rome, Antiquité = MEFRA Mélanges de la Casa de Velázquez. Antiquité et moyen âge = MelCasaVelazquez Mélanges de la Casa de Velázquez, Madrid = MCV Melanges De La Casa De Velazquez = Melanges Casa Velazq Melanges De La Casa De Velazquez = Melanges Casa Velazq. Melanges de la Casa de Velazquez = Melanges Casa Velazquez Mélanges de l'École française de Rome. Antiquité = MEFRA Mélanges de l'école française de Rome. Moyen Âge et temps modernes = MEFRM Melanges de l'Ecole francaise de Rome. Moyen age, temps modernes = Melanges Ec Fr Rome Moyen Age Temps Mod Mélanges de l'Université Saint-Joseph = MelBeyrouth Mélanges de Science Religieuse = MSR Melanocortins: Multiple Actions and Therapeutic Potential = Adv Exp Med Biol Melanocortins: Multiple Actions and Therapeutic Potential = Adv. Exp. Med. Biol. Melanocortin System = Ann Ny Acad Sci Melanocortin System = Ann. Ny. Acad. Sci. Melanogenesis and Malignant Melanoma: Biochemistry, Cell Biology, Molecular Biology, Pathophysiology, Diagnosis and Treatment = Int Congr Ser Melanogenesis and Malignant Melanoma: Biochemistry, Cell Biology, Molecular Biology, Pathophysiology, Diagnosis and Treatment = Int. Congr. Ser. Melanoma research = Melanoma Res Melanoma Research=Melanoma Res;; Melanoma Research = Melanoma Res Melanoma Research = Melanoma Res. Melatonin After Four Decades = Adv Exp Med Biol Melatonin After Four Decades = Adv. Exp. Med. Biol. Melatonin and The Pineal Gland = Int Congr Ser Melatonin and The Pineal Gland = Int. Congr. Ser. Melatonin: A Universal Photoperiodic Signal With Diverse Actions = Front Horm Res Melatonin: A Universal Photoperiodic Signal With Diverse Actions = Front. Horm. Res. Melatonin, Sleep and Insomnia = Endocr Res Clin Dev Melatonin, Sleep and Insomnia = Endocr. Res. Clin. Dev. Melbourne historical journal = Melb Hist J Melbourne Studies in Comparative and International Law = Melb Stu C Int Law Melbourne Studies in Comparative and International Law = Melb. Stu. C. Int. Law Melbourne University law review = Melb Univ Law Rev Melbourne University Law Review = Melb Univ Law Rev Melbourne University Law Review = Melb. Univ. Law Rev. Meldinger fra Norges Landbrukshoegskole = Meld. Nor. Landbrukshoegsk. Meldinger Fra Norges Landbrukshogskole = Meld Norg Landbruks Meldinger Fra Norges Landbrukshogskole = Meld. Norg. Landbruks. Melecon 2000: Information Technology and Electrotechnology for The Mediterranean Countries, Vols 1-3, Proceedings = Ieee Mediterr Elect Melecon 2000: Information Technology and Electrotechnology for The Mediterranean Countries, Vols 1-3, Proceedings = Ieee. Mediterr. Elect. Melecon 2004: Proceedings of The 12th Ieee Mediterranean Electrotechnical Conference, Vols 1-3 = Ieee Mediterr Elect Melecon 2004: Proceedings of The 12th Ieee Mediterranean Electrotechnical Conference, Vols 1-3 = Ieee Mediterr. Elect. Melecon 2010: The 15th Ieee Mediterranean Electrotechnical Conference = Ieee Mediterr Elect Melecon 2010: The 15th Ieee Mediterranean Electrotechnical Conference = Ieee Mediterr. Elect. Melecon '96 - 8th Mediterranean Electrotechnical Conference, Proceedings, Vols I-iii = Ieee Mediterr Elect Melecon '96 - 8th Mediterranean Electrotechnical Conference, Proceedings, Vols I-iii = Ieee. Mediterr. Elect. Melecon '98 - 9th Mediterranean Electrotechnical Conference, Vols 1 and 2 = Ieee Conf R Melecon '98 - 9th Mediterranean Electrotechnical Conference, Vols 1 and 2 = Ieee. Conf. R. Melita theologica : the review of the Royal University Students' Theological Association, Malta = Melita Theol Mellen history of medicine = Mellen Hist Med Mellen Studies in Anthropology = Mell Stud Anthro Mellen Studies in Anthropology = Mell. Stud. Anthro. Mellen Studies in Business = Mell St Bus Mellen Studies in Business = Mell. St. Bus. Mellen Studies in Sociology = Mellen St S Mellen Studies in Sociology = Mellen St. S. Melliand Textilberichte International Textile Reports = Melliand Textil Int Melliand Textilberichte International Textile Reports = Melliand Textil. Int. Melliand Textilberichte = Melliand Textilber. Melos-neue Zeitschrift Fur Musik = Melos-n Z Musik Melos-neue Zeitschrift Fur Musik = Melos-n. Z. Musik Melsheimer entomological series = Meisheimer Entomol Ser Melt Chemistry, Relaxation, and Solidification Kinetics of Glasses = Ceram Trans Melt Chemistry, Relaxation, and Solidification Kinetics of Glasses = Ceram. Trans. Meltdown: Climate Change, Natural Disasters and Other Catastrophes - Fears and Concerns for The Future = Nat Disaster Res Pr Meltdown: Climate Change, Natural Disasters and Other Catastrophes - Fears and Concerns for The Future = Nat. Disaster. Res. Pr. Melt Inclusions in Volcanic Systems: Methods, Applications and Problems = Dev Volcano Melt Inclusions in Volcanic Systems: Methods, Applications and Problems = Dev. Volcano. Melusine = Melusine Melus = Melus Memai heiko igaku = Memai Heiko Igaku Membrane and Cell Biology=Membr Cell Biol;; Membrane and Cell Biology = Membr. Cell Biol. Membrane and Desalination Technologies = Handb Environ Eng Membrane and Desalination Technologies = Handb. Environ. Eng. Membrane Biochemistry = Membrane Biochem Membrane Biochemistry = Membrane Biochem. Membrane biochemistry = Membr Biochem Membrane Biochemistry = Membr. Biochem. Membrane & cell biology = Membr Cell Biol Membrane Computing = Lect Notes Comput Sc Membrane Computing = Lect. Notes. Comput. Sc. Membrane Formation and Modification = Acs Sym Ser Membrane Formation and Modification = Acs. Sym. Ser. Membrane Fusion = Curr Top Membr Membrane Fusion = Curr. Top. Membr. Membrane in Cancer Cells = Ann Ny Acad Sci Membrane in Cancer Cells = Ann. Ny. Acad. Sci. Membrane-mimetic Approach to Advanced Materials = Adv Polym Sci Membrane-mimetic Approach to Advanced Materials = Adv. Polym. Sci. Membrane Permeability = Curr Top Membr Membrane Permeability = Curr. Top. Membr. Membrane Processes in Separation and Purification = Nato Adv Sci Inst Se Membrane Processes in Separation and Purification = Nato. Adv. Sci. Inst. Se. Membrane Protein Crystallization = Curr Top Membr Membrane Protein Crystallization = Curr. Top. Membr. Membrane Protein-cytoskeleton Interactions = Curr Top Membr Membrane Protein-cytoskeleton Interactions = Curr. Top. Membr. Membrane Proteins = Adv Protein Chem Membrane Proteins = Adv. Protein. Chem. Membrane Proteins : Structures, Interactions and Models = Jerus Sym Q Membrane Proteins : Structures, Interactions and Models = Jerus. Sym. Q. Membrane Protein Structure Determination: Methods and Protocols = Methods Mol Biol Membrane Protein Structure Determination: Methods and Protocols = Methods Mol. Biol. Membrane Reactor Technology = Aiche Sym S Membrane Reactor Technology = Aiche. Sym. S. Membrane Receptors, Channels and Transporters in Pulmonary Circulation = Adv Exp Med Biol Membrane Receptors, Channels and Transporters in Pulmonary Circulation = Adv. Exp. Med. Biol. Membranes in Drinking and Industrial Water Production Ii = Wa Sci Technol Membranes in Drinking and Industrial Water Production Ii = Wa. Sci. Technol. Membranes = Membranes Membranes-preparation, Properties and Applications = Mater Res Soc Symp P Membranes-preparation, Properties and Applications = Mater. Res. Soc. Symp. P. Membrane Technology in Water and Wastewater Treatment = Roy Soc Ch Membrane Technology in Water and Wastewater Treatment = Roy. Soc. Ch. Membrane Technology = Membr. Technol. Membrane Technology = Serono Sym Membrane Technology = Serono. Sym. Membrane Trafficking in Viral Replication = Curr Top Microbiol Membrane Trafficking in Viral Replication = Curr. Top. Microbiol. Membrane Transport and Renal Physiology = Ima V Math Membrane Transport and Renal Physiology = Ima. V. Math. Membrane Transporters in Drug Discovery and Development: Methods and Protocols = Methods Mol Biol Membrane Transporters in Drug Discovery and Development: Methods and Protocols = Methods Mol. Biol. Membrane Transport in Plants and Fungi: Molecular Mechanisms and Control = Sym Soc Exp Biol Membrane Transport in Plants and Fungi: Molecular Mechanisms and Control = Sym. Soc. Exp. Biol. Membranverfahren: Grundlagen Der Modul- Und Anlagenauslegung, 3 Aktualisierte Und Erweiterte Auflage Ed = Vdi-buch Membranverfahren: Grundlagen Der Modul- Und Anlagenauslegung, 3 Aktualisierte Und Erweiterte Auflage Ed = Vdi-buch. Memea: 2009 Ieee International Workshop On Medical Measurements and Applications = Ieee Int Work Med Me Memea: 2009 Ieee International Workshop On Medical Measurements and Applications = Ieee Int. Work. Med. Me. Memento = Philos Film Memento = Philos. Film. Memoir - American Association of Petroleum Geologists = Mem. Am. Assoc. Pet. Geol. Memoire Della Societa Astronomica Italiana - Series = Mem Soc Astron Ital Memoire Della Societa Astronomica Italiana - Series = Mem. Soc. Astron. Ital. Memoires. Academie de chirurgie (France) = Mem Acad Chir (Paris) Memoires de l'Academie de Chirurgie = Mem. Acad. Chir. (Paris) Mémoires de l'Académie des Inscriptions et Belles Lettres = MAI Mémoires de l'Académie des inscriptions et belles-lettres = MemAcInscr Memoires de l'Academie des sciences, inscriptions et belles-lettres de Toulouse = Mem Acad Sci Inscr B-Lett Toulouse Memoires de l'Academie royale de medecine de Belgique = Mem Acad R Med Belg Memoires de l Academie Royale de Medecine de Belgique = Mem. Acad. R. Med. Belg. Memoires de la Societe d'agriculture, commerce, sciences et arts du departement de la Marne. Societe d'agriculture, commerce, sciences et arts du departement de la Marne, Chalons-sur-Marne = Mem Soc Agric Commer Sci Arts Marne Memoires De La Societe Geologique De France, ( Nouvelle Serie ) = Mem S Geo F Memoires De La Societe Geologique De France, ( Nouvelle Serie ) = Mem. S. Geo. F. Memoires De La Societe Mathematique De France = Mem Soc Math Fr Memoires De La Societe Mathematique De France = Mem. Soc. Math. Fr. Mémoires de la Société Mathématique de France = Mém. Soc. Math. France (N.S.) Mémoires de la Société Mathématique de France = Mém. Soc. Math. Fr. (N.S.) Mémoires de la Société nationale des antiquaires de France = MemAntFr Memoires De La Societe Royale De Botanique De Belgique = Mem S R Bot Memoires De La Societe Royale De Botanique De Belgique = Mem. S. R. Bot. Mémoires de la Société vaudoise des Sciences Naturelles = Mém. Soc. vaud. Sci. Nat. Mémoires de l'Institut national de France = MemInstNatFr Memoires De Toulouse: Ville D'hier, Ville D'aujourd'hui = Villes Territ Memoires De Toulouse: Ville D'hier, Ville D'aujourd'hui = Villes. Territ. Memoires Du Museum National D Histoire Naturelle = Mem Mus Nat Hist Nat Memoires Du Museum National D Histoire Naturelle = Mem. Mus. Nat. Hist. Nat. Memoires Du Museum National D Histoire Naturelle = Memoir Mus Natl Hist Memoires Du Museum National D Histoire Naturelle = Memoir. Mus. Natl. Hist. Memoires Et Etudes Scientifiques De La Revue De Metallurgie = Mem Etud Sci Rev Met Memoires Et Etudes Scientifiques De La Revue De Metallurgie = Mem. Etud. Sci. Rev. Met. Memoires Scientifiques De La Revue De Metallurgie = Mem Etud Sci Rev Met Memoires Scientifiques De La Revue De Metallurgie = Mem. Etud. Sci. Rev. Met. Memoirs and Proceedings, Chemical Society = Mem. Proc. Chem. Soc. Memoirs = Memoirs Memoirs of Osaka Kyoiku University = Mem. Osaka Kyoiku Univ. III Natur. Sci. Appl. Sci. Memoirs of the American Academy in Rome = MemAmAc Memoirs of the American Mathematical Society = Mem. Amer. Math. Soc. Memoirs of The American Mathematical Society = Mem Am Math Soc Memoirs of The American Mathematical Society = Mem. Am. Math. Soc. Memoirs of the American Philosophical Society = Mem. Amer. Philos. Soc. Memoirs of The American Philosophical Society = Mem Am Philos Soc Memoirs of The American Philosophical Society = Mem. Am. Philos. Soc. Memoirs of The American Philosophical Society = Mem A Philo Memoirs of The American Philosophical Society = Mem. A. Philo. Memoirs of The Association of Australasian Palaeontologists = Mem Assoc Australas Memoirs of The Association of Australasian Palaeontologists = Mem. Assoc. Australas. Memoirs of The California Academy of Sciences = Mem Calif Acad Sci Memoirs of The California Academy of Sciences = Mem. Calif. Acad. Sci. Memoirs of the College of Education Akita University = Mem. College Ed. Akita Univ. Natur. Sci. Memoirs of The Entomological Society of Canada = Mem Entomol Soc Can Memoirs of The Entomological Society of Canada = Mem. Entomol. Soc. Can. Memoirs of the Faculty of Education = Mem. Fac. Educ. Shiga Univ. Nat. Sci. Memoirs of the Faculty of Engineering and Design Kyoto Institute of Technology = Mem. Fac. Engrg. Design Kyoto Inst. Tech. Ser. Sci. Tech. Memoirs of the Faculty of Engineering = Mem. Fac. Engrg. Hiroshima Univ. Memoirs of the Faculty of Engineering = Mem. Fac. Engrg. Miyazaki Univ. Memoirs of the Faculty of Science and Engineering Shimane University = Mem. Fac. Sci. Eng. Shimane Univ. Ser. B Math. Sci. Memoirs of the Faculty of Science, Kyushu University, Series C: Chemistry = Mem. Fac. Sci. Kyushu Univ., Ser. C Memoirs of the Institute of Science and Engineering = Mem. Inst. Sci. Engrg. Ritsumeikan Univ. Memoirs of the Institute of Scientific and Industrial Research, Osaka University = Mem. Insts. Sci. Ind. Res., Osaka Univ. Memoirs of the Muroran Institute of Technology = Mem. Muroran Inst. Tech. Memoirs of the Muroran Institute of Technology = Mem. Muroran Inst. Technol. Memoirs of the National Defense Academy = Mem. Nat. Defense Acad. Memoirs of The New York Botanical Garden = Mem New York Botan G Memoirs of The New York Botanical Garden = Mem. New York Botan. G. Memoirs of the Osaka Institute of Technology = Mem. Osaka Inst. Tech. Ser. A Memoirs of The Royal Metrological Society = Mem R Metrol Soc Memoirs of The Royal Metrological Society = Mem. R. Metrol. Soc. Memoirs of the School of Science and Engineering = Mem. School Sci. Engrg. Waseda Univ. Memorabilia Zoologica = Mem Zoologi Memorabilia Zoologica = Mem. Zoologi. Memorandum, Medical Research Council = Memo. Med. Res. Counc. Memorandum report. Naval Medical Research Institute (U.S.) = Memo Rep Nav Med Res Inst (US) Memoria antiquitatis. Acta Musei Petrodavensis. Revista Muzeului arheologic Piatra Neamţ = MemAnt Memoria de el Colegio Nacional. Colegio Nacional (Mexico) = Mem Col Nac (Mex) Memorias da Academia das Ciencias de Lisboa, Classe de Ciencias = Mem Acad Cienc Lisb Cl Cienc Memorias de historia antigua = MHA Memorias de historia antigua (Universidad de Oviedo) = MemHistAnt Memorias de la Real Academia de Ciencias Exactas, Físicas y Naturales de Madrid = Mem. Real Acad. Cienc. Exact. Fís. Natur. Madrid Memorias de la Real Academia de Ciencias y Artes de Barcelona = Mem. Real Acad. Cienc. Artes Barcelona Memorias De La Real Sociedad Espanola De Historia Natural = Mem Real Soc Esp His Memorias De La Real Sociedad Espanola De Historia Natural = Mem. Real Soc. Esp. His. Memorias do Instituto Butantan = Mem Inst Butantan Memorias do Instituto Butantan = Mem. Inst. Butantan Memorias do Instituto Oswaldo Cruz = Mem Inst Oswaldo Cruz Memorias Do Instituto Oswaldo Cruz=Mem Inst Oswaldo Cruz;; Memórias do Instituto Oswaldo Cruz = Mem. Inst. Oswaldo Cruz Memorias Do Instituto Oswaldo Cruz = Mem I Oswaldo Cruz Memorias Do Instituto Oswaldo Cruz = Mem. I. Oswaldo Cruz Memorias Do Instituto Oswaldo Cruz, Vol 82, Suppl 3, Special Issue = Mem I Os Cr Memorias Do Instituto Oswaldo Cruz, Vol 82, Suppl 3, Special Issue = Mem. I. Os. Cr. Memoria storica. Rivista del Centro studi storici terni = MemStor Memoria. Universidad de Barcelona, Instituto de arqueología y prehistoria = MemBarcelA Memorie dell'Accademia delle Scienze dell'Istituto di Bologna, Cl. di Sc. morali = MAIB Memorie dell'Accademia delle Scienze di Torino, Classe di Scienze morali, storiche e filologiche = MAT Memorie dell'Accademia di archeologia, lettere e belle arti di Napoli = MemNap Memorie della Classe di Scienze morali e storiche dell'Accademia dei Lincei = MAL Memorie dell'Ist. Lombardo, Accademia di Scienze e Lettere, Cl. di Lett., Sc. morali e storiche = MIL Memories From Darkness: Archaeology of Repression and Resistance in Latin America = Contrib Glob Hist Ar Memories From Darkness: Archaeology of Repression and Resistance in Latin America = Contrib. Glob. Hist. Ar. Memories in Wireless Systems = Signals Commun Techn Memories in Wireless Systems = Signals. Commun. Techn. Memories: Molecules and Circuits = Res Per Neurosci Memories: Molecules and Circuits = Res. Per. Neurosci. Memorie storiche forogiuliesi = MemStorFriuli Memory, Allegory, and Testimony in South American Theater: Upstaging Dictatorship = Routl Adv Theatr Per Memory, Allegory, and Testimony in South American Theater: Upstaging Dictatorship = Routl. Adv. Theatr. Per. Memory and Affect in Development = Minn Sym Child Psych Memory and Affect in Development = Minn. Sym. Child. Psych. Memory and Cognition = Mem. Cognit. Memory and Emotion = Ser Biophys Biocyber Memory and Emotion = Ser. Biophys. Biocyber. Memory & cognition = Mem Cognit Memory & Cognition = Mem Cognition Memory & Cognition = Mem. Cognition Memory Concepts - 1993 = Int Congr Ser Memory Concepts - 1993 = Int. Congr. Ser. Memory (Hove, England) = Memory Memory in Play: From Aeschylus to Sam Shepard = Palg Stud Theat Perf Memory in Play: From Aeschylus to Sam Shepard = Palg. Stud. Theat. Perf. Memory in The Ontopoiesis of Life, Book One = Anal Hus Memory in The Ontopoiesis of Life, Book One = Anal. Hus. Memory in The Ontopoiesis of Life: Memory in The Orbit of The Human Creative Existence, Book Two = Anal Hus Memory in The Ontopoiesis of Life: Memory in The Orbit of The Human Creative Existence, Book Two = Anal. Hus. Memory Management = Lect Notes Comput Sc Memory Management = Lect. Notes. Comput. Sc. Memory Matters = Interd Germ Cult Memory Matters = Interd. Germ. Cult. Memory=Memory;; Memory = Memory Memory = New Crit Idiom Memory = New. Crit. Idiom. Memory of Touch, for Love of The Other = Int Stud Philos Mono Memory of Touch, for Love of The Other = Int. Stud. Philos. Mono. Memory T Cells = Adv Exp Med Biol Memory T Cells = Adv. Exp. Med. Biol. Memphis and Mid-South medical journal = Memphis Mid South Med J Memphis medical journal = Memphis Med J Memphis State University law review = Memphis State Univ Law Rev Mems-03: Ieee The Sixteenth Annual International Conference On Micro Electro Mechanical Systems = Proc Ieee Micr Elect Mems-03: Ieee The Sixteenth Annual International Conference On Micro Electro Mechanical Systems = Proc. Ieee Micr. Elect. Mems 2004: 17th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Mems 2004: 17th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Mems 2005 Miami: Technical Digest = Proc Ieee Micr Elect Mems 2005 Miami: Technical Digest = Proc. Ieee. Micr. Elect. Mems 2006: 19th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Mems 2006: 19th Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Mems 2008: 21st Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Mems 2008: 21st Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Mems 2010: 23rd Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Mems 2010: 23rd Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Mems 97, Proceedings - Ieee The Tenth Annual International Workshop On Micro Electro Mechanical Systems = Proc Ieee Micr Elect Mems 97, Proceedings - Ieee The Tenth Annual International Workshop On Micro Electro Mechanical Systems = Proc. Ieee Micr. Elect. Mems '99: Twelfth Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc Ieee Micr Elect Mems '99: Twelfth Ieee International Conference On Micro Electro Mechanical Systems, Technical Digest = Proc. Ieee Micr. Elect. Mems Adaptive Optics Iii = P Soc Photo-opt Ins Mems Adaptive Optics Iii = P. Soc. Photo-opt. Ins. Mems Adaptive Optics Ii = Proc Spie Mems Adaptive Optics Ii = Proc. Spie. Mems Adaptive Optics Ii = P Soc Photo-opt Ins Mems Adaptive Optics Ii = P. Soc. Photo-opt. Ins. Mems Adaptive Optics Iv = P Soc Photo-opt Ins Mems Adaptive Optics Iv = P. Soc. Photo-opt. Ins. Mems Adaptive Optics = P Soc Photo-opt Ins Mems Adaptive Optics = P. Soc. Photo-opt. Ins. Mems-based Integrated Navigation = Artech Hse Gnss Tech Mems-based Integrated Navigation = Artech. Hse. Gnss. Tech. Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication Ii = Proc Spie Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication Ii = Proc. Spie. Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication Ii = P Soc Photo-opt Ins Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication Ii = P. Soc. Photo-opt. Ins. Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication = P Soc Photo-opt Ins Mems Components and Applications for Industry, Automobiles, Aerospace, and Communication = P. Soc. Photo-opt. Ins. Mems Design, Fabrication, Characterization, and Packaging = Proc Spie Mems Design, Fabrication, Characterization, and Packaging = Proc. Spie. Mems Design, Fabrication, Characterization, and Packaging = P Soc Photo-opt Ins Mems Design, Fabrication, Characterization, and Packaging = P. Soc. Photo-opt. Ins. Mems Linear and Nonlinear Statics and Dynamics = Microsyst Ser Mems Linear and Nonlinear Statics and Dynamics = Microsyst. Ser. Mems Materials and Processes Handbook = Mems Ref Shelf Mems Materials and Processes Handbook = Mems Ref. Shelf. Mems/moems: Advances in Photonic Communications, Sensing, Metrology, Packaging and Assembly = Proc Spie Mems/moems: Advances in Photonic Communications, Sensing, Metrology, Packaging and Assembly = Proc. Spie. Mems/moems: Advances in Photonic Communications, Sensing, Metrology, Packaging and Assembly = P Soc Photo-opt Ins Mems/moems: Advances in Photonic Communications, Sensing, Metrology, Packaging and Assembly = P. Soc. Photo-opt. Ins. Mems, Moems, and Micromaching Iii = Proc Spie Mems, Moems, and Micromaching Iii = Proc. Spie. Mems, Moems, and Micromaching Iii = P Soc Photo-opt Ins Mems, Moems, and Micromaching Iii = P. Soc. Photo-opt. Ins. Mems, Moems, and Micromachining Ii = Proc Spie Mems, Moems, and Micromachining Ii = Proc. Spie. Mems, Moems, and Micromachining Ii = P Soc Photo-opt Ins Mems, Moems, and Micromachining Ii = P. Soc. Photo-opt. Ins. Mems, Moems, and Micromachining = Proc Spie Mems, Moems, and Micromachining = Proc. Spie. Mems, Moems, and Micromachining = P Soc Photo-opt Ins Mems, Moems, and Micromachining = P. Soc. Photo-opt. Ins. Mems/moems Components and Their Applications Iii = Proc Spie Mems/moems Components and Their Applications Iii = Proc. Spie. Mems/moems Components and Their Applications Iii = P Soc Photo-opt Ins Mems/moems Components and Their Applications Iii = P. Soc. Photo-opt. Ins. Mems/moems Components and Their Applications Ii = Proc Spie Mems/moems Components and Their Applications Ii = Proc. Spie. Mems/moems Components and Their Applications Ii = P Soc Photo-opt Ins Mems/moems Components and Their Applications Ii = P. Soc. Photo-opt. Ins. Mems/moems Components and Their Applications Iv = Proc Spie Mems/moems Components and Their Applications Iv = Proc. Spie. Mems/moems Components and Their Applications Iv = P Soc Photo-opt Ins Mems/moems Components and Their Applications Iv = P. Soc. Photo-opt. Ins. Mems/moems Components and Their Applications = Proc Spie Mems/moems Components and Their Applications = Proc. Spie. Mems/moems Components and Their Applications = P Soc Photo-opt Ins Mems/moems Components and Their Applications = P. Soc. Photo-opt. Ins. Mems/moems Components and Their Applications V. - Special Focus Topics: Transducers At The Micro-nano Interface = Proc Spie Mems/moems Components and Their Applications V. - Special Focus Topics: Transducers At The Micro-nano Interface = Proc. Spie. Mems/moems Components and Their Applications V. - Special Focus Topics: Transducers At The Micro-nano Interface = P Soc Photo-opt Ins Mems/moems Components and Their Applications V. - Special Focus Topics: Transducers At The Micro-nano Interface = P. Soc. Photo-opt. Ins. Mems/moems Technologies and Applications Iii = P Soc Photo-opt Ins Mems/moems Technologies and Applications Iii = P. Soc. Photo-opt. Ins. Mems/moems Technologies and Applications Ii = Proc Spie Mems/moems Technologies and Applications Ii = Proc. Spie. Mems/moems Technologies and Applications Ii = P Soc Photo-opt Ins Mems/moems Technologies and Applications Ii = P. Soc. Photo-opt. Ins. Mems/moems Technologies and Applications = Proc Spie Mems/moems Technologies and Applications = Proc. Spie. Mems/moems Technologies and Applications = P Soc Photo-opt Ins Mems/moems Technologies and Applications = P. Soc. Photo-opt. Ins. Mems Reference Shelf = Mems Ref Shelf Mems Reference Shelf = Mems Ref. Shelf Mems Reliability for Critical and Space Applications = Proc Spie Mems Reliability for Critical and Space Applications = Proc. Spie. Mems Reliability for Critical and Space Applications = P Soc Photo-opt Ins Mems Reliability for Critical and Space Applications = P. Soc. Photo-opt. Ins. Mems Reliability for Critical Applications = Proc Spie Mems Reliability for Critical Applications = Proc. Spie. Mems Reliability for Critical Applications = P Soc Photo-opt Ins Mems Reliability for Critical Applications = P. Soc. Photo-opt. Ins. Mems Reliability = Mems Ref Shelf Mems Reliability = Mems Ref. Shelf. Mems Vibratory Gyroscopes: Structural Approaches to Improve Robustness = Mems Ref Shelf Mems Vibratory Gyroscopes: Structural Approaches to Improve Robustness = Mems Ref. Shelf. Men and Addictions: New Research = Subst Abus Assess In Men and Addictions: New Research = Subst. Abus. Assess. In. Men and Masculinities = Men Masc Men and Masculinities = Men Masc. Menckeniana = Menckeniana Mendeleev Communications = Mendeleev Commun Mendeleev Communications = Mendeleev Commun. Mendell 2009 = Mendel Mendell 2009 = Mendel. Mendel = Mendel Mendels Theatre: Heredity, Eugenics, and Early Twentieth-century American Drama = Palg Stud Theat Perf Mendels Theatre: Heredity, Eugenics, and Early Twentieth-century American Drama = Palg. Stud. Theat. Perf. Mendip Papers = Mendip Pap Mendip Papers = Mendip Pap. Menemui Matematik = Menemui Mat. Mengen-und Spurenelemente = Mengen Spurenelement Mengen-und Spurenelemente = Mengen. Spurenelement. Mengen- Und Spurenelemente = Mengen Spurenelement Mengen- Und Spurenelemente = Mengen. Spurenelement. Mengen- Und Spurenelemente (series) = Mengen Spurenelement Mengen- Und Spurenelemente (series) = Mengen. Spurenelement. Menninger perspective = Menninger Perspect Menopause international = Menopause Int Menopause = Menopause Menopause (New York, N.Y.) = Menopause Menopause-the Journal of The North American Menopause Society = Menopause Menopause: Vasomotor Symptoms, Systematic Treatments and Self-care Measures = Aging Iss Health Fin Menopause: Vasomotor Symptoms, Systematic Treatments and Self-care Measures = Aging. Iss. Health. Fin. Menschengerechte Groupware - Software-ergonomische Gestaltung Und Partizipative Umsetzung = Ber Ger Acm Menschengerechte Groupware - Software-ergonomische Gestaltung Und Partizipative Umsetzung = Ber. Ger. Acm. Menschen – Kulturen – Traditionen. Studien aus den Forschungsclustern des Deutschen Archäologischen Instituts = MKT Menschliches Leben = Grundthemen Philos Menschliches Leben = Grundthemen. Philos. Mens en onderneming = Mens Ondernem Men's Family Relations = Goteb Univ Dep Socio Men's Family Relations = Goteb. Univ. Dep. Socio. Men's reproductive health = Men's Reprod Health Menstrual Cycle and Adolescent Health = Ann Ny Acad Sci Menstrual Cycle and Adolescent Health = Ann. Ny. Acad. Sci. Mental and physical disability law reporter = Ment Phys Disabil Law Rep Mental and Physical Disability Law Reporter=Ment Phys Disabil Law Rep;; Mental disability law reporter / American Bar Association, Commission on the Mentally Disabled = Ment Disabil Law Rep Mental Disorders and Cognitive Deficits in Multiple Sclerosis = Curr Prob N Mental Disorders and Cognitive Deficits in Multiple Sclerosis = Curr. Prob. N. Mental Handicap Research = Ment Handicap Res Mental Handicap Research = Ment. Handicap Res. Mental health and society = Ment Health Soc Mental Health and Society = Ment Health Soc Mental Health and Society = Ment. Health Soc. Mental Health As The Observable = Colloq Inse Mental Health As The Observable = Colloq. Inse. Mental health care = Ment Health Care Mental Health Care = Ment. Health Care Mental Health Library Series: Monograph = Ment Heal Lib Monogr Mental Health Library Series: Monograph = Ment. Heal. Lib. Monogr. Mental health = Ment Health (Lond) Mental health nursing : journal of the Psychiatric Nurses Association / PNA = Ment Health Nurs Mental Health Nursing = Ment. Health Nurs. Mental health services research = Ment Health Serv Res Mental Health Services Research = Ment. Health Serv. Res. Mental health statistical note = Ment Health Stat Note Mental Health Statistical Note=Ment Health Stat Note;; Mental Health Statistical Note = Ment. Health Stat. Note Mental health today (Brighton, England) = Ment Health Today Mental hospitals = Ment Hosp Mental Hospitals = Ment. Hosp. Mental Hospitals = Ment Hospitals Mental Hospitals = Ment. Hospitals Mental hygiene = Ment Hyg Mental Hygiene = Ment Hyg Mental Hygiene = Ment. Hyg. Mentalis = Mentalis Mentalization: Theoretical Considerations, Research Findings, and Clinical Implications = Psychoanal Inq Book Mentalization: Theoretical Considerations, Research Findings, and Clinical Implications = Psychoanal. Inq. Book. Mental Models and Human-computer Interaction 1 = Hum Fac Inf Mental Models and Human-computer Interaction 1 = Hum. Fac. Inf. Mental Representation and Processing of Geographic Knowledge: A Computational Approach = Lect Notes Artif Int Mental Representation and Processing of Geographic Knowledge: A Computational Approach = Lect. Notes. Artif. Int. Mental retardation abstracts = Ment Retard Abstr Mental Retardation Abstracts = Ment. Retard. Abstr. Mental retardation and developmental disabilities research reviews = Ment Retard Dev Disabil Res Rev Mental Retardation and Developmental Disabilities Research Reviews = Ment Retard Dev D R Mental Retardation and Developmental Disabilities Research Reviews = Ment. Retard. Dev. D. R. Mental retardation and the law = Ment Retard Law Mental retardation = Ment Retard Mental Retardation=Ment Retard;; Mental Retardation = Ment Retard Mental Retardation = Ment. Retard. Mental Retardation, Personality, and Motivational Systems = Int Rev Res Ment Ret Mental Retardation, Personality, and Motivational Systems = Int. Rev. Res. Ment. Ret. Mentoring and Diversity: Tips for Students and Professionals for Developing and Maintaining A Diverse Scientific Community = Mentor Acad Ind Mentoring and Diversity: Tips for Students and Professionals for Developing and Maintaining A Diverse Scientific Community = Mentor. Acad. Ind. Mentoring in Academia and Industry = Mentor Acad Ind Mentoring in Academia and Industry = Mentor. Acad. Ind. Mentoring: Program Development, Relationships and Outcomes = Educ Compet Glob Wor Mentoring: Program Development, Relationships and Outcomes = Educ. Compet. Glob. Wor. Mentoring Strategies to Facilitate The Advancement of Women Faculty = Acs Sym Ser Mentoring Strategies to Facilitate The Advancement of Women Faculty = Acs. Sym. Ser. Mercer Dental Society Newsletter = Mercer Dent Soc Newsl Mercer Dental Society Newsletter = Mercer Dent. Soc. Newsl. Mercer law review = Mercer Law Rev Mercer Law Review = Mercer Law Rev Mercer Law Review = Mercer Law Rev. Mercer University Lamar Memorial Lectures = Mercer U L Mercer University Lamar Memorial Lectures = Mercer U. L. Mercury, Mars and Saturn = Adv Space Res Mercury, Mars and Saturn = Adv. Space. Res. Mercury, Mars and Saturn = Adv Space Res-series Mercury, Mars and Saturn = Adv. Space. Res-series. Mercury Series Archaeological Survey of Canada Papers-national Museums of Canada = Mercury Ser Archaeol Mercury Series Archaeological Survey of Canada Papers-national Museums of Canada = Mercury Ser. Archaeol. Mercury Series Ethnology Division Papers-national Museums of Canada = Mercury Ser Ethnol Mercury Series Ethnology Division Papers-national Museums of Canada = Mercury Ser. Ethnol. Mercury Series = Mercury Ser Mercury Series = Mercury Ser. Merger and Competition Policy in The European Community = De Vries L Merger and Competition Policy in The European Community = De. Vries. L. Mergers and Acquisitions in Asia: A Global Perspective = Routl Stud Glob Comp Mergers and Acquisitions in Asia: A Global Perspective = Routl. Stud. Glob. Comp. Mergers and Productivity = Nber Conf R Mergers and Productivity = Nber. Conf. R. Merica: A Conference On The Culture and Literature of Italians in North America = Filibrary S Merica: A Conference On The Culture and Literature of Italians in North America = Filibrary. S. Mérida. Ciudad y patrimonio = Merida Mérida. Excavaciones arqueológicas. Memoria = MeridaMem Merit Aid and The Politics of Education = Stud High Educ Ser Merit Aid and The Politics of Education = Stud. High. Educ. Ser. Merkblatt für den Forstpraktiker Eidg. Anstalt für das forstliche Versuchswesen = Merkbl. Forstprakt. Eidgenöss. Anst. forstl. Vers.wes. Merkblatt für die Praxis = Merkbl. Prax. Merkel Cells, Merkel Cell Carcinoma and Neurobiology of The Skin = Int Congr Ser Merkel Cells, Merkel Cell Carcinoma and Neurobiology of The Skin = Int. Congr. Ser. Merkur-deutsche Zeitschrift Fur Europaisches Denken = Merkur-deut Z Eur D Merkur-deutsche Zeitschrift Fur Europaisches Denken = Merkur-deut. Z. Eur. D. Merleau-ponty = Routl Philos Merleau-ponty = Routl. Philos. Mer-marine Engineers Review = Mer-mar Eng Rev Mer-marine Engineers Review = Mer-mar. Eng. Rev. Meroitica. Schriften zur altsudanesischen Geschichte und Archäologie = Meroitica Merrill-palmer Quarterly-journal of Developmental Psychology = Merrill Palmer Quart Merrill-palmer Quarterly-journal of Developmental Psychology = Merrill. Palmer. Quart. Merrill-Palmer quarterly = Merrill Palmer Q Merrill-palmer Quarterly of Behavior and Development = Merrill-palmer Q Beh Merrill-palmer Quarterly of Behavior and Development = Merrill-palmer Q. Beh. Merrill-Palmer quarterly of behavior and development = Merrill Palmer Q Behav Dev Merrill-Palmer quarterly (Wayne State University. Press) = Merrill Palmer Q (Wayne State Univ Press) Mershon International Studies Review = Mershon Int Stud Rev Mershon International Studies Review = Mershon Int. Stud. Rev. Mesa Monographs = Mesa Mg Mesa Monographs = Mesa Mg. Mesencephalic Trigeminal Nucleus in The Cat = Adv Anat Embryol Cel Mesencephalic Trigeminal Nucleus in The Cat = Adv. Anat. Embryol. Cel. Mesenchymal Stem Cell Assays and Applications = Methods Mol Biol Mesenchymal Stem Cell Assays and Applications = Methods. Mol. Biol. Mesenchymal Stem Cells for The Heart: From Bench to Bedside = Adv Top Sci Tech Chi Mesenchymal Stem Cells for The Heart: From Bench to Bedside = Adv. Top. Sci. Tech. Chi. Mese sanitario = Mese Sanit Meshfree Methods for Partial Equations = Lect Notes Comp Sci Meshfree Methods for Partial Equations = Lect. Notes. Comp. Sci. Mesh Reduction Methods = Wit Trans Model Sim Mesh Reduction Methods = Wit. Trans. Model. Sim. Mesoamerica (Antigua, Guatemala) = Mesoamerica (Antigua Guatem) Mesocscopic Theory of Polymer Dynamics, Second Edition = Springer Ser Chem Ph Mesocscopic Theory of Polymer Dynamics, Second Edition = Springer. Ser. Chem. Ph. Mesomechanics 2009 = Procedia Engineer Mesomechanics 2009 = Procedia. Engineer. Meson Physics At Cosy - 11 and Wasa-at- Cosy = Aip Conf Proc Meson Physics At Cosy - 11 and Wasa-at- Cosy = Aip. Conf. Proc. Mesons and Light Nuclei '95 = Few Body Sy Mesons and Light Nuclei '95 = Few. Body. Sy. Mesons and Light Nuclei = Aip Conf Proc Mesons and Light Nuclei = Aip. Conf. Proc. Mesopause and Extra-terrestrial Influences On The Ozone Layer = Adv Space Res Mesopause and Extra-terrestrial Influences On The Ozone Layer = Adv. Space. Res. Mesophases, Polymers, and Particles = Prog Coll Pol Sci S Mesophases, Polymers, and Particles = Prog. Coll. Pol. Sci. S. Mesoporous Crystals and Related Nano-structured Materials = Stud Surf Sci Catal Mesoporous Crystals and Related Nano-structured Materials = Stud. Surf. Sci. Catal. Mesoporous Materials: Properties, Preparation and Applications = Mater Sci Technol Mesoporous Materials: Properties, Preparation and Applications = Mater. Sci. Technol. Mesoporous Molecular Sieves 1998 = Stud Surf Sci Catal Mesoporous Molecular Sieves 1998 = Stud. Surf. Sci. Catal. Mesopotamian Dark Age Revisited = Con Chronol Mesopotamian Dark Age Revisited = Con. Chronol. Mesopotamia. Rivista di archeologia = Mesopotamia Mesoscale Phenomena in Fluid Systems = Acs Sym Ser Mesoscale Phenomena in Fluid Systems = Acs. Sym. Ser. Mesoscopic Electron Transport = Nato Adv Sci I E-app Mesoscopic Electron Transport = Nato. Adv. Sci. I. E-app. Mesoscopic, Nanoscopic, and Macroscopic Materials = Aip Conf Proc Mesoscopic, Nanoscopic, and Macroscopic Materials = Aip. Conf. Proc. Mesoscopic Physics and Nanotechnology = Mesoscopic Phys Nano Mesoscopic Physics and Nanotechnology = Mesoscopic Phys. Nano. Mesoscopic Quantum Physics = Les Houch S Mesoscopic Quantum Physics = Les. Houch. S. Mesozoic and Cenozoic Carbonate Systems of The Mediterranean and The Middle East = Geol Soc Spec Publ Mesozoic and Cenozoic Carbonate Systems of The Mediterranean and The Middle East = Geol. Soc. Spec. Publ. Mesozoic Sub-continental Lithospheric Thinning Under Eastern Asia = Geol Soc Spec Publ Mesozoic Sub-continental Lithospheric Thinning Under Eastern Asia = Geol. Soc. Spec. Publ. Message Effects in Communication Science = Sage Ar Cr Message Effects in Communication Science = Sage. Ar. Cr. Messana. Rassegna di studi filologici, linguistici e storici = Messana Messtechnik = Messtechnik Mester = Mester Mestizo Scripts, Digital Migrations, and The Territories of Writing = New Concepts Lat Am Mestizo Scripts, Digital Migrations, and The Territories of Writing = New. Concepts. Lat. Am. Mesures Regulation Automatisme = Mes Regul Automat Mesures Regulation Automatisme = Mes. Regul. Automat. Meta-analysis of Binary Data Using Profile Likelihood = Interd Stat Meta-analysis of Binary Data Using Profile Likelihood = Interd. Stat. Metabolic and Nutritional Abnormalities in Kidney Disease = Contrib Nephrol Metabolic and Nutritional Abnormalities in Kidney Disease = Contrib. Nephrol. Metabolic and pediatric ophthalmology = Metab Pediatr Ophthalmol Metabolic and Pediatric Ophthalmology = Metab. Pediatr. Ophthalmol. Metabolic and Pediatric Ophthalmology = Metab Pediatr Syst O Metabolic and Pediatric Ophthalmology = Metab. Pediatr. Syst. O. Metabolic Bone Disease and Related Research = Metab. Bone Dis. Relat. Res. Metabolic Bone Disease & Related Research = Metab Bone Dis Relat Metabolic Bone Disease & Related Research = Metab. Bone Dis. Relat. Metabolic bone disease & related research = Metab Bone Dis Relat Res Metabolic brain disease = Metab Brain Dis Metabolic Brain Disease=Metab Brain Dis;; Metabolic Brain Disease = Metab Brain Dis Metabolic Brain Disease = Metab. Brain Dis. Metabolic Diseases-laboratory and Clinical Research = Metab Dis-lab Clin R Metabolic Diseases-laboratory and Clinical Research = Metab. Dis-lab. Clin. R. Metabolic Disorders and Nutrition Correlated With Skin = Curr Probl Dermatol Metabolic Disorders and Nutrition Correlated With Skin = Curr. Probl. Dermatol. Metabolic Encephalopathies = Mariani F P Metabolic Encephalopathies = Mariani. F. P. Metabolic engineering = Metab Eng Metabolic Engineering = Metab Eng Metabolic Engineering = Metab. Eng. Metabolic Issues of Clinical Nutrition = Nes Nutr Ws Metabolic Issues of Clinical Nutrition = Nes. Nutr. Ws. Metabolic ophthalmology = Metab Ophthalmol Metabolic Ophthalmology = Metab. Ophthalmol. Metabolic Ophthalmology = Metab Pediatr Syst O Metabolic Ophthalmology = Metab. Pediatr. Syst. O. Metabolic ophthalmology, pediatric and systemic = Metab Ophthalmol Metabolic Pediatric and Systemic Ophthalmology = Metab Pediatr Syst O Metabolic Pediatric and Systemic Ophthalmology = Metab. Pediatr. Syst. O. Metabolic, pediatric, and systemic ophthalmology = Metab Pediatr Syst Ophthalmol Metabolic, Pediatric and Systemic Ophthalmology = Metab. Pediatr. Syst. Ophthalmol. Metabolic, Pediatric, and Systemic Ophthalmology=Metab Pediatr Syst Ophthalmol;; Metabolic, pediatric, and systemic ophthalmology (New York, N.Y. : 1985) = Metab Pediatr Syst Ophthalmol Metabolic Profiling: Methods and Protocols = Methods Mol Biol Metabolic Profiling: Methods and Protocols = Methods Mol. Biol. Metabolic Syndrome and Related Disorders = Metab Syndr Relat D Metabolic Syndrome and Related Disorders = Metab. Syndr. Relat. D. Metabolic syndrome and related disorders = Metab Syndr Relat Disord Metabolic Syndrome: Diabetes, Obesity, Hyperlipidemia and Hypertension = Int Congr Ser Metabolic Syndrome: Diabetes, Obesity, Hyperlipidemia and Hypertension = Int. Congr. Ser. Metabolic Syndrome: Epidemiology, Clinical Treatment, and Underlying Mechanisms = Contemp Endocrinol S Metabolic Syndrome: Epidemiology, Clinical Treatment, and Underlying Mechanisms = Contemp. Endocrinol. S. Metabolism Clincal and Experimental = Metab. Clin. Exp. Metabolism, Clinical and Experimental = Metab., Clin. Exp. Metabolism: clinical and experimental = Metabolism Metabolism-clinical and Experimental = Metabolism Metabolism-clinical and Experimental = Metabolism. Metabolism: Clinical and Experimental=Metabolism;; Metabolism: Clinical and Experimental = Metabolism. Metabolismes Hormones Diabetes Et Nutrition = Metab Horm Diabet Nu Metabolismes Hormones Diabetes Et Nutrition = Metab. Horm. Diabet. Nu. Metabolism in The Female Life Cycle = Front Endocrinol Metabolism in The Female Life Cycle = Front. Endocrinol. Metabolism = Metabolis Metabolism = Metabolis. Metabolism, Pharmacokinetics and Toxicity of Functional Groups: Impact of The Building Blocks of Medicinal Chemistry On Admet = Rsc Drug Discov Metabolism, Pharmacokinetics and Toxicity of Functional Groups: Impact of The Building Blocks of Medicinal Chemistry On Admet = Rsc. Drug. Discov. Metabolomics = Metabolomics Metabolomics : Official journal of the Metabolomic Society = Metabolomics Metabotropic Glutamate Receptors and Brain Function = Portl Pr P Metabotropic Glutamate Receptors and Brain Function = Portl. Pr. P. Metaclasses and Their Application = Lect Notes Comput Sc Metaclasses and Their Application = Lect. Notes. Comput. Sc. Metacognition and Learning = Metacogn Learn Metacognition and Learning = Metacogn. Learn. Metadata and Semantic Research = Comm Com Inf Sc Metadata and Semantic Research = Comm. Com. Inf. Sc. Metadata and Semantic Research, Proceedings = Comm Com Inf Sc Metadata and Semantic Research, Proceedings = Comm. Com. Inf. Sc. Metadata-driven Software Systems in Biomedicine: Designing Systems That Can Adapt to Changing Knowledge = Health Inform Ser Metadata-driven Software Systems in Biomedicine: Designing Systems That Can Adapt to Changing Knowledge = Health. Inform. Ser. Metagenomics: Methods and Protocols = Methods Mol Biol Metagenomics: Methods and Protocols = Methods Mol. Biol. Metagraphs and Their Applications = Integr Ser Inform Sy Metagraphs and Their Applications = Integr. Ser. Inform. Sy. Metaheuristic Clustering = Stud Comput Intell Metaheuristic Clustering = Stud. Comput. Intell. Metaheuristic Procedures for Training Neutral Networks = Oper Res Comput Sci Metaheuristic Procedures for Training Neutral Networks = Oper. Res. Comput. Sci. Metaheuristics: Computer Decision-making = Appl Optim Metaheuristics: Computer Decision-making = Appl. Optim. Metaheuristics: Computer Decision-making = Appl Optimizat Metaheuristics: Computer Decision-making = Appl. Optimizat. Metaheuristics for Scheduling in Distributed Computing Environments = Stud Comput Intell Metaheuristics for Scheduling in Distributed Computing Environments = Stud. Comput. Intell. Metaheuristics for Scheduling in Industrial and Manufacturing Applications = Stud Comput Intell Metaheuristics for Scheduling in Industrial and Manufacturing Applications = Stud. Comput. Intell. Metaheuristics in The Service Industry = Lect Notes Econ Math Metaheuristics in The Service Industry = Lect. Notes. Econ. Math. Metaheuristics: Progress in Complex Systems Optimization = Oper Res Comput Sci Metaheuristics: Progress in Complex Systems Optimization = Oper. Res. Comput. Sci. Metainformatics = Lect Notes Comput Sc Metainformatics = Lect. Notes. Comput. Sc. Metal and Ceramic Matrix Composites = Ser Mater Sci Eng Metal and Ceramic Matrix Composites = Ser. Mater. Sci. Eng. Metal and Ceramic Matrix Composites = Ser Mat Sci Engn Metal and Ceramic Matrix Composites = Ser. Mat. Sci. Engn. Metal-Based Drugs = Met.-Based Drugs Metal Catalysts in Olefin Polymerization = Top Organometal Chem Metal Catalysts in Olefin Polymerization = Top. Organometal. Chem. Metal Catalyzed Reductive C-c Bond Formation: A Departure From Preformed Organometallic Reagents = Top Curr Chem Metal Catalyzed Reductive C-c Bond Formation: A Departure From Preformed Organometallic Reagents = Top. Curr. Chem. Metal Complex Catalysts Supercritical Fluid Polymerization Supramolecular Architecture = Adv Polym Sci Metal Complex Catalysts Supercritical Fluid Polymerization Supramolecular Architecture = Adv. Polym. Sci. Metal Complexes With Tetrapyrrole Ligands Iii = Struct Bond Metal Complexes With Tetrapyrrole Ligands Iii = Struct. Bond. Metal Construction and British Welding Journal = Met Constr-brit Weld Metal Construction and British Welding Journal = Met. Constr-brit. Weld. Metal Construction = Met Constr-brit Weld Metal Construction = Met. Constr-brit. Weld. Metal-containing and Metallosupramolecular Polymers and Materials = Acs Sym Ser Metal-containing and Metallosupramolecular Polymers and Materials = Acs. Sym. Ser. Metal Cutting: Research Advances = Mater Manuf Technol Metal Cutting: Research Advances = Mater. Manuf. Technol. Metal Cuttings = Met Cuttings Metal Cuttings = Met. Cuttings Meta-learning in Computational Intelligence = Stud Comput Intell Meta-learning in Computational Intelligence = Stud. Comput. Intell. Metal Fatigue: What It Is, Why It Matters = Solid Mech Appl Metal Fatigue: What It Is, Why It Matters = Solid. Mech. Appl. Metal Finishing = Met Finish Metal Finishing = Met. Finish. Metal Forming = Met Form Metal Forming = Met. Form. Metal Ions in Biolgical Systems, Vol 42: Metal Complexes in Tumor Diagnosis and As Anticancer Agents = Met Ions Biol Syst Metal Ions in Biolgical Systems, Vol 42: Metal Complexes in Tumor Diagnosis and As Anticancer Agents = Met. Ions Biol. Syst. Metal ions in biological systems = Met Ions Biol Syst Metal Ions in Biological Systems = Met Ions Biol Syst Metal Ions in Biological Systems = Met. Ions Biol. Syst. Metal Ions In Biological Systems=Met Ions Biol Syst;; Metal Ions in Biological Systems, Vol 30 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 30 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 31 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 31 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 32 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 32 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 33 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 33 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 34 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 34 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 35 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 35 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 36 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 36 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 37 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 37 = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 41: Metal Ions and Their Complexes in Medication = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 41: Metal Ions and Their Complexes in Medication = Met. Ions Biol. Syst. Metal Ions in Biological Systems, Vol 44 = Met Ions Biol Syst Metal Ions in Biological Systems, Vol 44 = Met. Ions Biol. Syst. Metal Ions in Biology and Medicine = Metal Ions Biol Med Metal Ions in Biology and Medicine = Metal Ions Biol. Med. Metal Ions in Biology and Medicine = Met Ion Bio Metal Ions in Biology and Medicine = Met. Ion. Bio. Metal Ions in Biology and Medicine, Vol 10 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 10 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 2 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 2 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 3 = Met Ion Bio Metal Ions in Biology and Medicine, Vol 3 = Met. Ion. Bio. Metal Ions in Biology and Medicine, Vol 4 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 4 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 4 = Met Ion Bio Metal Ions in Biology and Medicine, Vol 4 = Met. Ion. Bio. Metal Ions in Biology and Medicine, Vol 5 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 5 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 7 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 7 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 8 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 8 = Metal Ions Biol. Med. Metal Ions in Biology and Medicine, Vol 9 = Metal Ions Biol Med Metal Ions in Biology and Medicine, Vol 9 = Metal Ions Biol. Med. Metal Ions in Life Sciences = Metal Ions Life Sci Metal Ions in Life Sciences = Metal Ions Life Sci. Metall (Berlin) = Metall (Berlin) Metallfedern: Grundlagen, Werkstoffe, Berechnung, Gestaltung Und Rechnereinsatz, 2 Auflage = Vdi-buch Metallfedern: Grundlagen, Werkstoffe, Berechnung, Gestaltung Und Rechnereinsatz, 2 Auflage = Vdi-buch. Metallgesellschaft Periodic Review = Metallges. Period. Rev. Metallic Alloys: Experimental and Theoretical Perspectives = Nato Adv Sci Inst Se Metallic Alloys: Experimental and Theoretical Perspectives = Nato. Adv. Sci. Inst. Se. Metallic and Molecular Interactions in Nanometer Layers, Pores and Particles: New Findings At The Yoctolitre Level = Rsc Nanosci Nanotech Metallic and Molecular Interactions in Nanometer Layers, Pores and Particles: New Findings At The Yoctolitre Level = Rsc. Nanosci. Nanotech. Metallic Materials With High Structural Efficiency = Nato Sci Ser Ii-math Metallic Materials With High Structural Efficiency = Nato. Sci. Ser. Ii-math. Metallic Materials With High Structural Efficiency = Nato Sci Ser Ii Math Metallic Materials With High Structural Efficiency = Nato. Sci. Ser. Ii. Math. Metallic Micro and Nano Materials: Fabrication With Atomic Diffusion = Eng Mater Metallic Micro and Nano Materials: Fabrication With Atomic Diffusion = Eng. Mater. Metallic Multilayers = Mater Sci Forum Metallic Multilayers = Mater. Sci. Forum. Metal-ligand Interactions : From Atoms, to Clusters, to Surfaces = Nato Adv Sci Inst Se Metal-ligand Interactions : From Atoms, to Clusters, to Surfaces = Nato. Adv. Sci. Inst. Se. Metal-ligand Interactions in Chemistry, Physics and Biology = Nato Adv Sci I C-mat Metal-ligand Interactions in Chemistry, Physics and Biology = Nato. Adv. Sci. I. C-mat. Metal-ligand Interactions: Molecular, Nano-, Micro-, and Macro-systems in Complex Environments = Nato Sci Ser Ii-math Metal-ligand Interactions: Molecular, Nano-, Micro-, and Macro-systems in Complex Environments = Nato. Sci. Ser. Ii-math. Metal-ligand Interactions: Molecular, Nano-, Micro-, and Macro-systems in Complex Environments = Nato Sci Ser Ii Math Metal-ligand Interactions: Molecular, Nano-, Micro-, and Macro-systems in Complex Environments = Nato. Sci. Ser. Ii. Math. Metal-ligand Interactions = Nato Adv Sci Inst Se Metal-ligand Interactions = Nato. Adv. Sci. Inst. Se. Metallization of Polymers = Acs Sym Ser Metallization of Polymers = Acs. Sym. Ser. Metallization : Performance and Reliability Issues for Vlsi and Ulsi = P Soc Photo-opt Ins Metallization : Performance and Reliability Issues for Vlsi and Ulsi = P. Soc. Photo-opt. Ins. Metall = Metall Metallobiochemistry, Part C = Method Enzymol Metallobiochemistry, Part C = Method. Enzymol. Metallobiochemistry, Part C = Methods Enzymol Metallobiochemistry, Part C = Methods. Enzymol. Metallobiochemistry, Pt D = Method Enzymol Metallobiochemistry, Pt D = Method. Enzymol. Metallofizika i Noveishie Tekhnologii = Metallofiz. Noveishie Tekhnol. Metallofizika I Noveishie Tekhnologii = Metallofiz Nov Tekh+ Metallofizika I Noveishie Tekhnologii = Metallofiz. Nov. Tekh+.+ Metallofizika I Noveishie Tekhnologii-metal Physics and Advanced Technologies = Metallofiz Nov Tekh+ Metallofizika I Noveishie Tekhnologii-metal Physics and Advanced Technologies = Metallofiz. Nov. Tekh+.+ Metallofizika (Kiev) = Metallofizika (Akad. Nauk Ukr. SSR, Otd. Fiz. Astron.) Metallographic Characterization of Metals After Welding, Processing and Service = Microstr Sc Metallographic Characterization of Metals After Welding, Processing and Service = Microstr. Sc. Metallography = Metallography Metallomics = Metallomics Metalloorganicheskaya Khimiya = Metalloorg. Khim. Metallothionein Iii = Adv Lif Sci Metallothionein Iii = Adv. Lif. Sci. Metallovedenie i Termicheskaya Obrabotka Metallov = Metalloved. Term. Obrab. Met. Metallurgia and Metal Forming = Metall Met Form Metallurgia and Metal Forming = Metall. Met. Form. Metallurgia Italiana = Metall Ital Metallurgia Italiana = Metall. Ital. Metallurgia = Metallurgia Metallurgical and Materials Transactions A-physical Metallurgy and Materials Science = Metall Mater Trans A Metallurgical and Materials Transactions A-physical Metallurgy and Materials Science = Metall. Mater. Trans. A. Metallurgical and Materials Transactions A: Physical Metallurgy and Materials Science = Metall. Mater. Trans. A Metallurgical and Materials Transactions B-process Metallurgy and Materials Processing Science = Metall Mater Trans B Metallurgical and Materials Transactions B-process Metallurgy and Materials Processing Science = Metall. Mater. Trans. B. Metallurgical and Materials Transactions B: Process Metallurgy and Materials Processing Science = Metall. Mater. Trans. B Metallurgical Transactions A = Metall. Trans. A Metallurgical Transactions A-physical Metallurgy and Materials Science = Metall Trans A Metallurgical Transactions A-physical Metallurgy and Materials Science = Metall. Trans. A. Metallurgical Transactions B = Metall. Trans. B Metallurgical Transactions B-process Metallurgy = Metall Trans B Metallurgical Transactions B-process Metallurgy = Metall. Trans. B. Metallurgical Transactions = Metall Trans Metallurgical Transactions = Metall. Trans. Metallurgist = Metallurgist+ Metallurgist = Metallurgist+.+ Metally = Metally Metal-metal Bonding = Struct Bond Metal-metal Bonding = Struct. Bond. Metal-metal Bonds and Clusters in Chemistry and Catalysis = Ind Univ C Metal-metal Bonds and Clusters in Chemistry and Catalysis = Ind. Univ. C. Metal-microbe Interactions = Spec Publ Soc Gen Mi Metal-microbe Interactions = Spec. Publ. Soc. Gen. Mi. Metal Mirrors = P Soc Photo-opt Ins Metal Mirrors = P. Soc. Photo-opt. Ins. Metal/nonmetal Microsystems: Physics, Technology, and Applications = P Soc Photo-opt Ins Metal/nonmetal Microsystems: Physics, Technology, and Applications = P. Soc. Photo-opt. Ins. Metalogicon = Metalogicon Metal-organic Chemical Vapor Deposition of Electronic Ceramics Ii = Mater Res Soc Symp P Metal-organic Chemical Vapor Deposition of Electronic Ceramics Ii = Mater. Res. Soc. Symp. P. Metal-organic Chemical Vapor Deposition of Electronic Ceramics = Mater Res Soc Symp P Metal-organic Chemical Vapor Deposition of Electronic Ceramics = Mater. Res. Soc. Symp. P. Metal Oxide Nanoparticles in Organic Solvents: Synthesis, Formation, Assembly and Application = Eng Mater Process Metal Oxide Nanoparticles in Organic Solvents: Synthesis, Formation, Assembly and Application = Eng. Mater. Process. Metal-oxo and Metal-peroxo Species in Catalytic Oxidations = Struct Bond Metal-oxo and Metal-peroxo Species in Catalytic Oxidations = Struct. Bond. Metal Powder Report = Met. Powder Rep. Metal Progress = Met Prog Metal Progress = Met. Prog. Metals and Materials International = Met Mater-int Metals and Materials International = Met. Mater-int. Metals and Materials International = Met Mater Int Metals and Materials International = Met. Mater. Int. Metals and Materials-korea = Met Mater-korea Metals and Materials-korea = Met. Mater-korea. Metals and Materials = Met. Mater. Metals and The Environment Series = Met Environm Metals and The Environment Series = Met. Environm. Metal Science and Heat Treatment = Met Sci Heat Treat+ Metal Science and Heat Treatment = Met. Sci. Heat Treat. Metal Science and Heat Treatment = Met. Sci. Heat Treat+.+ Metal Science = Met Sci Metal Science = Met. Sci. Metals Engineering Quarterly = Met Eng Quart Metals Engineering Quarterly = Met. Eng. Quart. Metals for Biomedical Devices = Woodhead Publ Mater Metals for Biomedical Devices = Woodhead. Publ. Mater. Metals Forum = Met Forum Metals Forum = Met. Forum Metals in Biology: Applications of High-resolution Epr to Metalloenzymes = Biol Magn Reson Metals in Biology: Applications of High-resolution Epr to Metalloenzymes = Biol. Magn. Reson. Metal Sites in Proteins and Models = Struct Bond Metal Sites in Proteins and Models = Struct. Bond. Metals Materials and Processes = Met Mater Process Metals Materials and Processes = Met. Mater. Process. Metal Stamping = Met Stamp Metal Stamping = Met. Stamp. Metals Technology = Met Technol Metals Technology = Met. Technol. Metal-to-nonmetal Transitions = Springer Series Mate Metal-to-nonmetal Transitions = Springer. Series. Mate. Metal Treating = Metal Treat Metal Treating = Metal Treat. Metalurgia International = Metal Int Metalurgia International = Metal. Int. Metalurgija = Metalurgija Metalworking Economics = Metalwork Econ Metalworking Economics = Metalwork. Econ. Metalworking = Metalworking Metalworking Production = Metalwork Prod Metalworking Production = Metalwork. Prod. Metamaterials and Plasmonics: Fundamentals, Modelling, Applications = Nato Science Peace S Metamaterials and Plasmonics: Fundamentals, Modelling, Applications = Nato. Science. Peace. S. Metamaterials: Classes, Properties and Applications = Mater Sci Technol Metamaterials: Classes, Properties and Applications = Mater. Sci. Technol. Metamaterials: Fundamentals and Applications Iii = Proc Spie Metamaterials: Fundamentals and Applications Iii = Proc. Spie. Metamaterials: Fundamentals and Applications Iii = P Soc Photo-opt Ins Metamaterials: Fundamentals and Applications Iii = P. Soc. Photo-opt. Ins. Metamaterials: Fundamentals and Applications = Proc Spie Metamaterials: Fundamentals and Applications = Proc. Spie. Metamaterials: Fundamentals and Applications = P Soc Photo-opt Ins Metamaterials: Fundamentals and Applications = P. Soc. Photo-opt. Ins. Metamaterials Iii = Proc Spie Metamaterials Iii = Proc. Spie. Metamaterials Ii = Proc Spie Metamaterials Ii = Proc. Spie. Metamaterials Ii = P Soc Photo-opt Ins Metamaterials Ii = P. Soc. Photo-opt. Ins. Metamaterials V = Proc Spie Metamaterials V = Proc. Spie. Metamaterials V = P Soc Photo-opt Ins Metamaterials V = P. Soc. Photo-opt. Ins. Metamedicine = Metamedicine Meta = Meta Metamorphoses of Hamiltonian Systems With Symmetries = Lect Notes Math Metamorphoses of Hamiltonian Systems With Symmetries = Lect. Notes. Math. Metamorphoses: Resurrection, Body and Transformative Practices in Early Christianity = Ekstasis Metamorphoses: Resurrection, Body and Transformative Practices in Early Christianity = Ekstasis. Metamorphosis of Magic From Late Antiquity to The Early Modern Period = Gr Stud Cult Metamorphosis of Magic From Late Antiquity to The Early Modern Period = Gr. Stud. Cult. Metamorphosis: Transformations of The Body and The Influence of Ovid's Metamorphoses On Germanic Literature of The Nineteenth and Twentieth Centuries = Int Forsch Allg Vgl Metamorphosis: Transformations of The Body and The Influence of Ovid's Metamorphoses On Germanic Literature of The Nineteenth and Twentieth Centuries = Int. Forsch. Allg. Vgl. Metaphilosophy = Metaphilosophy Metaphor and Analogy in Science Education = Sci Technol Educ Lib Metaphor and Analogy in Science Education = Sci. Technol. Educ. Lib. Metaphor and Continental Philosophy: From Kant to Derrida = Rout Stud Tw Cen Phi Metaphor and Continental Philosophy: From Kant to Derrida = Rout. Stud. Tw. Cen. Phi. Metaphor and Symbolic Activity = Metaphor Symb Act Metaphor and Symbolic Activity = Metaphor Symb. Act. Metaphor and Symbol = Metaphor Symbol Metaphor in Cognitive Linguistics = Amst Stud Theory His Metaphor in Cognitive Linguistics = Amst. Stud. Theory. His. Metaphor, Metonymy, and Experientialist Philosophy = Top Engl Linguist Metaphor, Metonymy, and Experientialist Philosophy = Top. Engl. Linguist. Metaphor = New Crit Idiom Metaphor = New. Crit. Idiom. Metaphysics and God: Essays in Honor of Eleonore Stump = Rout Stud Philos Rel Metaphysics and God: Essays in Honor of Eleonore Stump = Rout. Stud. Philos. Rel. Metaphysics of Consciousness = Roy I Philos Suppl Metaphysics of Consciousness = Roy. I. Philos. Suppl. Metaphysics of Memory = Philos Stud Ser Metaphysics of Memory = Philos. Stud. Ser. Metaphysics of Perception: Wilfrid Sellars, Perpetual Consciousness and Critical Realism = Rout Stud Tw Cen Phi Metaphysics of Perception: Wilfrid Sellars, Perpetual Consciousness and Critical Realism = Rout. Stud. Tw. Cen. Phi. Metaphysics of Perfect Beings = Rout Stud Philos Rel Metaphysics of Perfect Beings = Rout. Stud. Philos. Rel. Metaphysics of Science: An Account of Modern Science in Terms of Principles, Laws and Theories, Second Edition = Bost Stud Philos Sci Metaphysics of Science: An Account of Modern Science in Terms of Principles, Laws and Theories, Second Edition = Bost. Stud. Philos. Sci. Meta-programming in Logic = Lect Notes Comput Sc Meta-programming in Logic = Lect. Notes. Comput. Sc. Meta-programming in Logic Programming = Logic Programm Meta-programming in Logic Programming = Logic Programm. Metasomatism in Oceanic and Continental Lithospheric Mantle = Geol Soc Spec Publ Metasomatism in Oceanic and Continental Lithospheric Mantle = Geol. Soc. Spec. Publ. Metasprachdiskurse: Einstellungen Zu Anglizismen Und Ihre Wissenschaftliche Rezeption = Linguist-impulse Ten Metasprachdiskurse: Einstellungen Zu Anglizismen Und Ihre Wissenschaftliche Rezeption = Linguist-impulse. Ten. Metastable and Nanostructured Materials Iii = Mater Sci Forum Metastable and Nanostructured Materials Iii = Mater. Sci. Forum. Metastable and Nanostructured Materials - Nanomat-2001, Proceedings = Mater Sci Forum Metastable and Nanostructured Materials - Nanomat-2001, Proceedings = Mater. Sci. Forum. Metastable, Mechanically Alloyed and Nanocrystalline Materials, Ismanam-2000 = Mater Sci Forum Metastable, Mechanically Alloyed and Nanocrystalline Materials, Ismanam-2000 = Mater. Sci. Forum. Metastable, Mechanically Alloyed and Nanocrystalline Materials = J Metastab Nanocryst Metastable, Mechanically Alloyed and Nanocrystalline Materials = J. Metastab. Nanocryst. Metastable, Mechanically Alloyed and Nanocrystalline Materials = Mater Sci Forum Metastable, Mechanically Alloyed and Nanocrystalline Materials = Mater. Sci. Forum. Metastable, Mechanically Alloyed and Nanocrystalline Materials, Pts 1 and 2 = Mater Sci Forum Metastable, Mechanically Alloyed and Nanocrystalline Materials, Pts 1 and 2 = Mater. Sci. Forum. Metastable Phases and Microstructures = Mater Res Soc Symp P Metastable Phases and Microstructures = Mater. Res. Soc. Symp. P. Metastable States in Amorphous Chalcogenide Semiconductors = Springer Ser Mater S Metastable States in Amorphous Chalcogenide Semiconductors = Springer. Ser. Mater. S. Metastable Systems Under Pressure = Nato Sci Peace Sec A Metastable Systems Under Pressure = Nato. Sci. Peace. Sec. A. Metastasis of Colorectal Cancer = Cancer Metast Biol T Metastasis of Colorectal Cancer = Cancer Metast. Biol. T. Metatemas = Metatemas Metathesis Chemistry: From Nanostructure Design to Synthesis of Advanced Materials = Nato Sci Ser Ii Math Metathesis Chemistry: From Nanostructure Design to Synthesis of Advanced Materials = Nato. Sci. Ser. Ii. Math. Metathesis Polymerization = Adv Polym Sci Metathesis Polymerization = Adv. Polym. Sci. Metathesis Polymerization of Olefins and Polymerization of Alkynes = Nato Adv Sci I C-mat Metathesis Polymerization of Olefins and Polymerization of Alkynes = Nato. Adv. Sci. I. C-mat. "Meteor" Forschungsergebnisse = "Meteor" Forschungsergeb. Meteorite Impact = Geoparks World Meteorite Impact = Geoparks. World. Meteoritics = Meteoritics Meteoritics & planetary science = Meteorit Planet Sci Meteoritics & Planetary Science = Meteorit Planet Sci Meteoritics & Planetary Science = Meteorit. Planet. Sci. Meteoritics & Planetary Science = Metorit Planet Sci Meteoritics & Planetary Science = Metorit. Planet. Sci. Meteorological Applications = Meteorol Appl Meteorological Applications = Meteorol. Appl. Meteorological Magazine = Meteor. Mag. Meteorological Magazine = Meteorol Mag Meteorological Magazine = Meteorol. Mag. Meteorological Monographs = Meteor Mon Meteorological Monographs = Meteor. Mon. Meteorological Monographs = Meteor. Monogr. Meteorologische Rundschau = Meteorol Rundsch Meteorologische Rundschau = Meteorol. Rundsch. Meteorologische Rundschau = Meteor. Rundsch. Meteorologische Zeitschrift = Meteorol Z Meteorologische Zeitschrift = Meteorol. Z. Meteorologische Zeitschrift = Meteor. Z. Meteorologiya i Gidrologiya = Meteor. Gidrol. Meteorology and Atmospheric Physics = Meteor. Atmos. Phys. Meteorology and Atmospheric Physics = Meteorol Atmos Phys Meteorology and Atmospheric Physics = Meteorol. Atmos. Phys. Methane Gas Hydrate = Green Energy Technol Methane Gas Hydrate = Green. Energy. Technol. Methicillin-resistant Staphylococcus Aureus (mrsa): Etiology, At-risk Populations and Treatment = Bacteriol Res Dev Methicillin-resistant Staphylococcus Aureus (mrsa): Etiology, At-risk Populations and Treatment = Bacteriol. Res. Dev. Method and Substance in Macrocomparative Analysis = Res Methods Ser Method and Substance in Macrocomparative Analysis = Res. Methods. Ser. Methoden Der Diskurslinguistik: Sprachwissenschaftliche Zugange Zur Transtextuellen Ebene = Linguist-impulse Ten Methoden Der Diskurslinguistik: Sprachwissenschaftliche Zugange Zur Transtextuellen Ebene = Linguist-impulse. Ten. Methoden = Methoden Methoden und Verfahren der Mathematischen Physik = Methoden Verfahren Math. Phys. Méthodes et Pratiques de l'Ingénieur = Méthodes Prat. Ingén. Méthodes Mathématiques pour l'Ingénieur = Méthodes Math. Ingr. Methodische Entwicklung Technischer Produkte: Methoden Flexibel Und Situationsgerecht Anwenden, 3., Korrigierte Auflage = Vdi-buch Methodische Entwicklung Technischer Produkte: Methoden Flexibel Und Situationsgerecht Anwenden, 3., Korrigierte Auflage = Vdi-buch. Methodist history = Methodist Hist Method of Approximate Inverse: Theory and Applications = Lect Notes Math Method of Approximate Inverse: Theory and Applications = Lect. Notes. Math. Method of Intrinsic Scaling: A Systematic Approach to Regularity for Degenerate and Singular Pdes = Lect Notes Math Method of Intrinsic Scaling: A Systematic Approach to Regularity for Degenerate and Singular Pdes = Lect. Notes. Math. Methodological Issues in Aging Research = N D Ser Quant Method Methodological Issues in Aging Research = N. D. Ser. Quant. Method. Methodological Surveys in Biochemistry and Analysis, Subseries A : Analysis = Meth Surv A Methodological Surveys in Biochemistry and Analysis, Subseries A : Analysis = Meth. Surv. A Methodological Surveys in Biochemistry and Analysis, Subseries B : Biochemistry = Meth Surv I Methodological Surveys in Biochemistry and Analysis, Subseries B : Biochemistry = Meth. Surv. I. Methodologies for Developing and Managing Emerging Technology Based Information Systems = Bcs Conf Series Methodologies for Developing and Managing Emerging Technology Based Information Systems = Bcs. Conf. Series. Methodologies for Intelligent Systems = Lect Notes Artif Int Methodologies for Intelligent Systems = Lect. Notes. Artif. Int. Methodologies in Asymmetric Catalysis = Acs Sym Ser Methodologies in Asymmetric Catalysis = Acs. Sym. Ser. Methodology and Computing in Applied Probability = Methodol Comput Appl Methodology and Computing in Applied Probability = Methodol. Comput. Appl. Methodology and science = Methodol Sci Methodology-european Journal of Research Methods for The Behavioral and Social Sciences = Methodology-eur Methodology-european Journal of Research Methods for The Behavioral and Social Sciences = Methodology-eur. Methodology of Assessment of Occupational Exposures in The Context of Epidemiological Detection of Cancer Risks = Med S Comm Methodology of Assessment of Occupational Exposures in The Context of Epidemiological Detection of Cancer Risks = Med. S. Comm. Methodology of The Evaluation of Psychotropic Drugs = Psychoph S Methodology of The Evaluation of Psychotropic Drugs = Psychoph. S. Methodos Series = Methods Ser Methodos Series = Methods. Ser. Methods-a Companion to Methods in Enzymology = Methods Methods and achievements in experimental pathology = Methods Achiev Exp Pathol Methods and Achievements in Experimental Pathology = Methods Achiev. Exp. Pathol. Methods and Applications in Micropalaeontology = Stud Geol Polon Methods and Applications in Micropalaeontology = Stud. Geol. Polon. Methods and Applications of Analysis = Methods Appl. Anal. Methods and Applications of Artificial Intelligence = Lect Notes Artif Int Methods and Applications of Artificial Intelligence = Lect. Notes. Artif. Int. Methods and Applications of Artificial Intelligence, Proceedings = Lect Notes Comput Sc Methods and Applications of Artificial Intelligence, Proceedings = Lect. Notes. Comput. Sc. Methods and Applications of Economic Dynamics = Contrib To Econ Anal Methods and Applications of Economic Dynamics = Contrib. To. Econ. Anal. Methods and Associated Tools for The Information Systems Life Cycle = Ifip Trans A Methods and Associated Tools for The Information Systems Life Cycle = Ifip. Trans. A. Methods and Findings in Experimental and Clinical Pharmacology = Method Find Exp Clin Methods and Findings in Experimental and Clinical Pharmacology = Method. Find. Exp. Clin. Methods and findings in experimental and clinical pharmacology = Methods Find Exp Clin Pharmacol Methods and Findings in Experimental and Clinical Pharmacology = Methods Find. Exp. Clin. Pharmacol. Methods and Findings In Experimental And Clinical Pharmacology=Methods Find Exp Clin Pharmacol;; Methods and Findings in Experimental and Clinical Pharmacology = Methods Finds Exp. Clin. Pharmacol. Methods and Mechanisms for Producing Ions From Large Molecules = Nato Adv Sci I B-phy Methods and Mechanisms for Producing Ions From Large Molecules = Nato. Adv. Sci. I. B-phy. Methods and Models in Artificial and Natural Computation, Pt I = Lect Notes Comput Sc Methods and Models in Artificial and Natural Computation, Pt I = Lect. Notes. Comput. Sc. Methods and Models in Transport and Telecommunications = Adv Spat Sci Methods and Models in Transport and Telecommunications = Adv. Spat. Sci. Methods and Supporting Technologies for Data Analysis = Stud Comput Intell Methods and Supporting Technologies for Data Analysis = Stud. Comput. Intell. Methods and Techniques for Cleaning-up Contaminated Sites = Nato Sci Peace Secur Methods and Techniques for Cleaning-up Contaminated Sites = Nato. Sci. Peace. Secur. Methods and Tools for Drought Analysis and Management = Water Sci Technol Li Methods and Tools for Drought Analysis and Management = Water. Sci. Technol. Li. Methods and Tools of Parallel Programming Multicomputers = Lect Notes Comput Sc Methods and Tools of Parallel Programming Multicomputers = Lect. Notes. Comput. Sc. Methods for Evaluation and Recognition of Alternatives to Animal Experimentation = Bga Schrift Methods for Evaluation and Recognition of Alternatives to Animal Experimentation = Bga. Schrift. Methods for Handling Imperfect Spatial Information = Stud Fuzz Soft Comp Methods for Handling Imperfect Spatial Information = Stud. Fuzz. Soft. Comp. Methods for Monitoring and Diagnosing The Efficiency of Catalytic Converters: A Patent-oriented Survey = Stud Surf Sci Catal Methods for Monitoring and Diagnosing The Efficiency of Catalytic Converters: A Patent-oriented Survey = Stud. Surf. Sci. Catal. Methods for The Discovery and Characterization of G Protein-coupled Receptors = Neuromethods Methods for The Discovery and Characterization of G Protein-coupled Receptors = Neuromethods. Methods for Ultrasensitive Detection Ii = P Soc Photo-opt Ins Methods for Ultrasensitive Detection Ii = P. Soc. Photo-opt. Ins. Methods for Ultrasensitive Detection = P Soc Photo-opt Ins Methods for Ultrasensitive Detection = P. Soc. Photo-opt. Ins. Methods in Biobanking = Methods Mol Biol Methods in Biobanking = Methods Mol. Biol. Methods in Bioengineering: 3d Tissue Engineering = Artech Hse Meth Bioe Methods in Bioengineering: 3d Tissue Engineering = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Alternative Technologies to Animal Testing = Artech Hse Meth Bioe Methods in Bioengineering: Alternative Technologies to Animal Testing = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Biomicrofabrication and Biomicrofluidics = Artech Hse Meth Bioe Methods in Bioengineering: Biomicrofabrication and Biomicrofluidics = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Cell Transplantation = Artech Hse Meth Bioe Methods in Bioengineering: Cell Transplantation = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Microdevices in Biology and Medicine = Artech Hse Meth Bioe Methods in Bioengineering: Microdevices in Biology and Medicine = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Nanoscale Bioengineering and Nanomedicine = Artech Hse Meth Bioe Methods in Bioengineering: Nanoscale Bioengineering and Nanomedicine = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Organ Preservation and Reengineering = Artech Hse Meth Bioe Methods in Bioengineering: Organ Preservation and Reengineering = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Stem Cell Bioengineering = Artech Hse Meth Bioe Methods in Bioengineering: Stem Cell Bioengineering = Artech. Hse. Meth. Bioe. Methods in Bioengineering: Systems Analysis of Biological Networks = Artech Hse Meth Bioe Methods in Bioengineering: Systems Analysis of Biological Networks = Artech. Hse. Meth. Bioe. Methods in Cancer Research = Method Cancer Res Methods in Cancer Research = Method. Cancer Res. Methods in Cell Biology = Method Cell Biol Methods in Cell Biology = Method. Cell Biol. Methods in cell biology = Methods Cell Biol Methods in Cell Biology = Methods Cell Biol Methods in Cell Biology = Methods Cell Biol. Methods In Cell Biology=Methods Cell Biol;; Methods in Cell Biology, Vol 101 = Method Cell Biol Methods in Cell Biology, Vol 101 = Method. Cell Biol. Methods in Cell Biology, Vol 102: Recent Advances in Cytometry, Part A: Instrumentation, Methods, Fifth Edition = Method Cell Biol Methods in Cell Biology, Vol 102: Recent Advances in Cytometry, Part A: Instrumentation, Methods, Fifth Edition = Method. Cell Biol. Methods in Cell Biology, Vol 103: Recent Advances in Cytometry, Part B: Advances in Applications, Fifth Edition = Method Cell Biol Methods in Cell Biology, Vol 103: Recent Advances in Cytometry, Part B: Advances in Applications, Fifth Edition = Method. Cell Biol. Methods in Cell Biology, Vol 37 = Method Cell Biol Methods in Cell Biology, Vol 37 = Method. Cell Biol. Methods in Cell Biology, Vol 37 = Methods Cell Biol Methods in Cell Biology, Vol 37 = Methods Cell Biol. Methods in Cell Biology, Vol 38 = Method Cell Biol Methods in Cell Biology, Vol 38 = Method. Cell Biol. Methods in Cell Biology, Vol 39 = Method Cell Biol Methods in Cell Biology, Vol 39 = Method. Cell Biol. Methods in Cell Biology, Vol 40 = Method Cell Biol Methods in Cell Biology, Vol 40 = Method. Cell Biol. Methods in Cell Biology, Vol 41 = Method Cell Biol Methods in Cell Biology, Vol 41 = Method. Cell Biol. Methods in Cell Biology, Vol 42 = Method Cell Biol Methods in Cell Biology, Vol 42 = Method. Cell Biol. Methods in Cell Biology, Vol 43 = Method Cell Biol Methods in Cell Biology, Vol 43 = Method. Cell Biol. Methods in Cell Biology, Vol 44 = Method Cell Biol Methods in Cell Biology, Vol 44 = Method. Cell Biol. Methods in Cell Biology, Vol 45 = Method Cell Biol Methods in Cell Biology, Vol 45 = Method. Cell Biol. Methods in Cell Biology, Vol 46 = Method Cell Biol Methods in Cell Biology, Vol 46 = Method. Cell Biol. Methods in Cell Biology, Vol 47 = Method Cell Biol Methods in Cell Biology, Vol 47 = Method. Cell Biol. Methods in Cell Biology, Vol 48 = Method Cell Biol Methods in Cell Biology, Vol 48 = Method. Cell Biol. Methods in Cell Biology, Vol 49 = Method Cell Biol Methods in Cell Biology, Vol 49 = Method. Cell Biol. Methods in Cell Biology, Vol 49 = Methods Cell Biol Methods in Cell Biology, Vol 49 = Methods Cell Biol. Methods in Cell Biology, Vol 50 = Method Cell Biol Methods in Cell Biology, Vol 50 = Method. Cell Biol. Methods in Cell Biology, Vol 50 = Methods Cell Biol Methods in Cell Biology, Vol 50 = Methods Cell Biol. Methods in Cell Biology, Vol 51 = Method Cell Biol Methods in Cell Biology, Vol 51 = Method. Cell Biol. Methods in Cell Biology, Vol 52 = Method Cell Biol Methods in Cell Biology, Vol 52 = Method. Cell Biol. Methods in Cell Biology, Vol 52 = Methods Cell Biol Methods in Cell Biology, Vol 52 = Methods Cell Biol. Methods in Cell Biology, Vol 53 = Method Cell Biol Methods in Cell Biology, Vol 53 = Method. Cell Biol. Methods in Cell Biology, Vol 55 = Method Cell Biol Methods in Cell Biology, Vol 55 = Method. Cell Biol. Methods in Cell Biology, Vol 57 = Method Cell Biol Methods in Cell Biology, Vol 57 = Method. Cell Biol. Methods in Cell Biology, Vol 58 = Method Cell Biol Methods in Cell Biology, Vol 58 = Method. Cell Biol. Methods in Cell Biology, Vol 59 = Method Cell Biol Methods in Cell Biology, Vol 59 = Method. Cell Biol. Methods in Cell Biology, Vol 59 = Methods Cell Biol Methods in Cell Biology, Vol 59 = Methods Cell Biol. Methods in Cell Biology, Vol 60 = Method Cell Biol Methods in Cell Biology, Vol 60 = Method. Cell Biol. Methods in Cell Biology, Vol 60 = Methods Cell Biol Methods in Cell Biology, Vol 60 = Methods Cell Biol. Methods in Cell Biology, Vol 61 = Method Cell Biol Methods in Cell Biology, Vol 61 = Method. Cell Biol. Methods in Cell Biology, Vol 62 = Method Cell Biol Methods in Cell Biology, Vol 62 = Method. Cell Biol. Methods in Cell Biology, Vol 62 = Methods Cell Biol Methods in Cell Biology, Vol 62 = Methods Cell Biol. Methods in Cell Biology, Vol 63 = Method Cell Biol Methods in Cell Biology, Vol 63 = Method. Cell Biol. Methods in Cell Biology, Vol 64 = Method Cell Biol Methods in Cell Biology, Vol 64 = Method. Cell Biol. Methods in Cell Biology, Vol 65 = Method Cell Biol Methods in Cell Biology, Vol 65 = Method. Cell Biol. Methods in Cell Biology, Vol 65 = Methods Cell Biol Methods in Cell Biology, Vol 65 = Methods Cell Biol. Methods in Cell Biology, Vol 66 = Method Cell Biol Methods in Cell Biology, Vol 66 = Method. Cell Biol. Methods in Cell Biology, Vol 67 = Method Cell Biol Methods in Cell Biology, Vol 67 = Method. Cell Biol. Methods in Cell Biology, Vol 92 = Method Cell Biol Methods in Cell Biology, Vol 92 = Method. Cell Biol. Methods in Cell Biology, Vol 94: Primary Cilia = Method Cell Biol Methods in Cell Biology, Vol 94: Primary Cilia = Method. Cell Biol. Methods in Cell Biology, Vol 95 = Method Cell Biol Methods in Cell Biology, Vol 95 = Method. Cell Biol. Methods in Cell Biology, Volume 56 = Method Cell Biol Methods in Cell Biology, Volume 56 = Method. Cell Biol. Methods in Cell-matrix Adhesion = Method Cell Biol Methods in Cell-matrix Adhesion = Method. Cell. Biol. Methods in cell science : an official journal of the Society for In Vitro Biology = Methods Cell Sci Methods in Chromotography = Methods Chromatogr Methods in Chromotography = Methods Chromatogr. Methods in Computational Molecular Physics = Nato Adv Sci I B-phy Methods in Computational Molecular Physics = Nato. Adv. Sci. I. B-phy. Methods in Dialectology = Multiling Methods in Dialectology = Multiling. Methods in Ecology and Evolution = Methods Ecol Evol Methods in Ecology and Evolution = Methods Ecol. Evol. Methods in Enzymology: Autophagy in Mammalian Systems, Vol 452, Pt B = Method Enzymol Methods in Enzymology: Autophagy in Mammalian Systems, Vol 452, Pt B = Method. Enzymol. Methods in Enzymology: Biology of Serpins = Method Enzymol Methods in Enzymology: Biology of Serpins = Method. Enzymol. Methods in Enzymology: Biothermodynamics,vol 455, Part A = Method Enzymol Methods in Enzymology: Biothermodynamics,vol 455, Part A = Method. Enzymol. Methods in Enzymology: Biothermodynamics, Vol 492, Pt D = Method Enzymol Methods in Enzymology: Biothermodynamics, Vol 492, Pt D = Method. Enzymol. Methods in Enzymology: Computer Methods, Part B = Method Enzymol Methods in Enzymology: Computer Methods, Part B = Method. Enzymol. Methods in Enzymology: Computer Methods, Vol 454, Pt A = Method Enzymol Methods in Enzymology: Computer Methods, Vol 454, Pt A = Method. Enzymol. Methods in Enzymology; Liposomes, Pt F = Method Enzymol Methods in Enzymology; Liposomes, Pt F = Method. Enzymol. Methods in Enzymology Liposomes, Pt G = Method Enzymol Methods in Enzymology Liposomes, Pt G = Method. Enzymol. Methods in Enzymology = Method Enzymol Methods in Enzymology = Method. Enzymol. Methods in enzymology = Methods Enzymol Methods in Enzymology = Methods Enzymol Methods in Enzymology = Methods Enzymol. Methods In Enzymology=Methods Enzymol;; Methods in Enzymology: Methods in Methane Metabolism, Pt A = Method Enzymol Methods in Enzymology: Methods in Methane Metabolism, Pt A = Method. Enzymol. Methods in Enzymology: Methods in Methane Metabolism, Vol 495, Pt B = Method Enzymol Methods in Enzymology: Methods in Methane Metabolism, Vol 495, Pt B = Method. Enzymol. Methods in Enzymology: Non-natural Amino Acids = Method Enzymol Methods in Enzymology: Non-natural Amino Acids = Method. Enzymol. Methods in Enzymology: Research On Nitrification and Related Processes, Vol 486, Part A = Method Enzymol Methods in Enzymology: Research On Nitrification and Related Processes, Vol 486, Part A = Method. Enzymol. Methods in Enzymology: Unfolded Protein Response and Cellular Stress, Vol 489, Pt A = Method Enzymol Methods in Enzymology: Unfolded Protein Response and Cellular Stress, Vol 489, Pt A = Method. Enzymol. Methods in Enzymology: Unfolded Protein Response and Cellular Stress, Vol 490, Pt B = Method Enzymol Methods in Enzymology: Unfolded Protein Response and Cellular Stress, Vol 490, Pt B = Method. Enzymol. Methods in Enzymology, Vol 355: Cumulative Subject Index for Vols 321-354 = Method Enzymol Methods in Enzymology, Vol 355: Cumulative Subject Index for Vols 321-354 = Method. Enzymol. Methods in Enzymology, Vol 406, Regulators and Effectors of Small Gtpases: Rho Family = Method Enzymol Methods in Enzymology, Vol 406, Regulators and Effectors of Small Gtpases: Rho Family = Method. Enzymol. Methods in Enzymology Vol 453: Autophagy in Disease and Clinical Applications, Pt C = Method Enzymol Methods in Enzymology Vol 453: Autophagy in Disease and Clinical Applications, Pt C = Method. Enzymol. Methods in Enzymology, Vol 456 = Method Enzymol Methods in Enzymology, Vol 456 = Method. Enzymol. Methods in Enzymology, Vol 457: Mitochondrial Function, Partb Mitochondrial Protein Kinases, Protein Phosphatases and Mitochondrial Diseases = Method Enzymol Methods in Enzymology, Vol 457: Mitochondrial Function, Partb Mitochondrial Protein Kinases, Protein Phosphatases and Mitochondrial Diseases = Method. Enzymol. Methods in Enzymology, Vol 461: Chemokines, Part B = Method Enzymol Methods in Enzymology, Vol 461: Chemokines, Part B = Method. Enzymol. Methods in Enzymology, Vol 466: Biothermodynamics, Pt B = Method Enzymol Methods in Enzymology, Vol 466: Biothermodynamics, Pt B = Method. Enzymol. Methods in Enzymology, Vol 468: Biophysical, Chemical, and Functional Probes of Rna Structure, Interactions and Folding, Pt A = Method Enzymol Methods in Enzymology, Vol 468: Biophysical, Chemical, and Functional Probes of Rna Structure, Interactions and Folding, Pt A = Method. Enzymol. Methods in Enzymology, Vol 469: Biophysical, Chemical, and Functional Probes of Rna Structure, Interactions and Folding, Pt B = Method Enzymol Methods in Enzymology, Vol 469: Biophysical, Chemical, and Functional Probes of Rna Structure, Interactions and Folding, Pt B = Method. Enzymol. Methods in Enzymology, Vol 46: Research On Nitrification and Related Processes, Pt B = Method Enzymol Methods in Enzymology, Vol 46: Research On Nitrification and Related Processes, Pt B = Method. Enzymol. Methods in Enzymology, Vol 470: Guide to Yeast Genetics: = Method Enzymol Methods in Enzymology, Vol 470: Guide to Yeast Genetics: = Method. Enzymol. Methods in Enzymology, Vol 471: Two-component Signaling Systems, Part C = Method Enzymol Methods in Enzymology, Vol 471: Two-component Signaling Systems, Part C = Method. Enzymol. Methods in Enzymology, Vol 472: Single Molecule Tools, Pt A: Fluorescence Based Approaches = Method Enzymol Methods in Enzymology, Vol 472: Single Molecule Tools, Pt A: Fluorescence Based Approaches = Method. Enzymol. Methods in Enzymology, Vol 473: Thiol Redox Transitions in Cell Signaling, Pt A: Chemistry and Biochemistry of Low Molecular Weight and Protein Thiols = Method Enzymol Methods in Enzymology, Vol 473: Thiol Redox Transitions in Cell Signaling, Pt A: Chemistry and Biochemistry of Low Molecular Weight and Protein Thiols = Method. Enzymol. Methods in Enzymology, Vol 474: Thiol Redox Transitions in Cell Signaling, Pt B: Cellular Localization and Signaling = Method Enzymol Methods in Enzymology, Vol 474: Thiol Redox Transitions in Cell Signaling, Pt B: Cellular Localization and Signaling = Method. Enzymol. Methods in Enzymology, Vol 475: Single Molecule Tools, Pt B = Method Enzymol Methods in Enzymology, Vol 475: Single Molecule Tools, Pt B = Method. Enzymol. Methods in Enzymology, Vol 477: Guide to Techniques in Mouse Development, Part B: Mouse Molecular Genetics, Second Edition = Method Enzymol Methods in Enzymology, Vol 477: Guide to Techniques in Mouse Development, Part B: Mouse Molecular Genetics, Second Edition = Method. Enzymol. Methods in Enzymology, Vol 478: Glycomics = Method Enzymol Methods in Enzymology, Vol 478: Glycomics = Method. Enzymol. Methods in Enzymology, Vol 479: Functional Glycomics = Method Enzymol Methods in Enzymology, Vol 479: Functional Glycomics = Method. Enzymol. Methods in Enzymology, Vol 480: Glycobiology = Method Enzymol Methods in Enzymology, Vol 480: Glycobiology = Method. Enzymol. Methods in Enzymology, Vol 481: Cryo-em, Part A - Sample Preparation and Data Collection = Method Enzymol Methods in Enzymology, Vol 481: Cryo-em, Part A - Sample Preparation and Data Collection = Method. Enzymol. Methods in Enzymology, Vol 482: Cryo-em, Part B: 3-d Reconstruction = Method Enzymol Methods in Enzymology, Vol 482: Cryo-em, Part B: 3-d Reconstruction = Method. Enzymol. Methods in Enzymology, Vol 483: Cryo-em, Part C: Analyses, Interpretation, and Case Studies = Method Enzymol Methods in Enzymology, Vol 483: Cryo-em, Part C: Analyses, Interpretation, and Case Studies = Method. Enzymol. Methods in Enzymology, Vol 487: Computer Methods, Pt C = Method Enzymol Methods in Enzymology, Vol 487: Computer Methods, Pt C = Method. Enzymol. Methods in Enzymology, Vol 488: Biothermodynamics, Pt C = Method Enzymol Methods in Enzymology, Vol 488: Biothermodynamics, Pt C = Method. Enzymol. Methods in Enzymology, Vol 491: Unfolded Protein Response and Cellular Stress, Pt C = Method Enzymol Methods in Enzymology, Vol 491: Unfolded Protein Response and Cellular Stress, Pt C = Method. Enzymol. Methods in Enzymology, Vol 497: Synthetic Biology, Methods for Part/device Characterization and Chassis Engineering, Pt A = Method Enzymol Methods in Enzymology, Vol 497: Synthetic Biology, Methods for Part/device Characterization and Chassis Engineering, Pt A = Method. Enzymol. Methods in Enzymology, Volume 484: Constitutive Activity in Receptors and Other Proteins, Part A = Method Enzymol Methods in Enzymology, Volume 484: Constitutive Activity in Receptors and Other Proteins, Part A = Method. Enzymol. Methods in Enzymology, Volume 485: Constitutive Activity in Receptors and Other Proteins, Part B = Method Enzymol Methods in Enzymology, Volume 485: Constitutive Activity in Receptors and Other Proteins, Part B = Method. Enzymol. Methods in Geochemistry and Geophysics = Meth Geoch Methods in Geochemistry and Geophysics = Meth. Geoch. Methods in Geochemistry and Geophysics = Methods Geochem. Geophys. Methods in Historical Pragmatics = Top Engl Linguist Methods in Historical Pragmatics = Top. Engl. Linguist. Methods in Macromolecular Crystallography = Nato Sci Ser I Life Methods in Macromolecular Crystallography = Nato. Sci. Ser. I. Life. Methods in Medical Research = Meth Med Res Methods in Medical Research = Meth. Med. Res. Methods in medical research = Methods Med Res Methods in Medical Research = Methods Med. Res. Methods in Microbiology = Method Microbiol Methods in Microbiology = Method. Microbiol. Methods in Microbiology = Methods Microbiol Methods in Microbiology = Methods Microbiol. Methods in Microbiology, Vol 25 = Method Microbiol Methods in Microbiology, Vol 25 = Method. Microbiol. Methods in Microbiology, Vol 27 = Method Microbiol Methods in Microbiology, Vol 27 = Method. Microbiol. Methods in Microbiology, Vol 27 = Methods Microbiol Methods in Microbiology, Vol 27 = Methods Microbiol. Methods in Microbiology, Vol 28 = Method Microbiol Methods in Microbiology, Vol 28 = Method. Microbiol. Methods in Microbiology, Vol 30 = Method Microbiol Methods in Microbiology, Vol 30 = Method. Microbiol. Methods in Microbiology, Vol 30 = Methods Microbiol Methods in Microbiology, Vol 30 = Methods Microbiol. Methods in Module Theory = Lect Notes Pure Appl Methods in Module Theory = Lect. Notes. Pure. Appl. Methods in Molecular and Cellular Biology = Method Mol Cell Biol Methods in Molecular and Cellular Biology = Method. Mol. Cell. Biol. Methods in molecular biology (Clifton, N.J.) = Methods Mol Biol Methods in Molecular Biology = Methods Mol Biol Methods in Molecular Biology = Methods Mol. Biol. Methods In Molecular Biology=Methods Mol Biol;; Methods in molecular medicine = Methods Mol Med Methods in Molecular Medicine = Methods Mol. Med. Methods in Nano Cell Biology = Method Cell Biol Methods in Nano Cell Biology = Method. Cell Biol. Methods in Protein Sequence Analysis / = Adv Lif Sci Methods in Protein Sequence Analysis / = Adv. Lif. Sci. Methods in Proteome and Protein Analysis = Princ Pract Methods in Proteome and Protein Analysis = Princ. Pract. Methods in Proteome and Protein Analysis = Prin Pract Methods in Proteome and Protein Analysis = Prin. Pract. Methods in Ring Theory = Lect Notes Pure Appl Methods in Ring Theory = Lect. Notes. Pure. Appl. Methods in Signal Transduction Series = Methods Signal Trans Methods in Signal Transduction Series = Methods Signal Trans. Methods=Methods;; Methods = Methods Methods Microbiology, Vol 29 = Method Microbiol Methods Microbiology, Vol 29 = Method. Microbiol. Methods, Models and Tools for Fault Tolerance = Lect Notes Comput Sc Methods, Models and Tools for Fault Tolerance = Lect. Notes. Comput. Sc. Methods of Analysis for Functional Foods and Nutraceuticals, Second Edition = Funct Food Nutra Ser Methods of Analysis for Functional Foods and Nutraceuticals, Second Edition = Funct. Food. Nutra. Ser. Methods of Annotation and Types of Notes = Beih Editio Methods of Annotation and Types of Notes = Beih. Editio. Methods of Behavior Analysis in Neuroscience, Second Edition = Front Neurosci Methods of Behavior Analysis in Neuroscience, Second Edition = Front. Neurosci. Methods of Biochemical Analysis = Method Biochem Anal Methods of Biochemical Analysis = Method. Biochem. Anal. Methods of biochemical analysis = Methods Biochem Anal Methods of Biochemical Analysis=Methods Biochem Anal;; Methods of Biochemical Analysis = Methods Biochem. Anal. Methods of Cancer Diagnosis, Therapy, and Prognosis: Brain Cancer = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis: Brain Cancer = Methods Cancer Diagn. Methods of Cancer Diagnosis Therapy and Prognosis = Methods Cancer Diagn Methods of Cancer Diagnosis Therapy and Prognosis = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy and Prognosis, Vol 1: Breast Carcinoma = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy and Prognosis, Vol 1: Breast Carcinoma = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 2 = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 2 = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 4 = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 4 = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 5 = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 5 = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 6 = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 6 = Methods Cancer Diagn. Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 7 = Methods Cancer Diagn Methods of Cancer Diagnosis, Therapy, and Prognosis, Vol 7 = Methods Cancer Diagn. Methods of Celestial Mechanics, Vol I: Physical, Mathematical, and Numerical Principles = Astron Astrophys Lib Methods of Celestial Mechanics, Vol I: Physical, Mathematical, and Numerical Principles = Astron. Astrophys. Lib. Methods of Contemporary Mathematical Statistical Physics = Lect Notes Math Methods of Contemporary Mathematical Statistical Physics = Lect. Notes. Math. Methods of Cut-elimination = Trends Log Stud Log Methods of Cut-elimination = Trends. Log. Stud. Log. Methods of Environmental Impact Assessment, Third Edition = Nat Built Environ Se Methods of Environmental Impact Assessment, Third Edition = Nat. Built. Environ. Se. Methods of Experimental Physics = Methods Experiment. Phys. Methods of Functional Analysis and Topology = Methods Funct. Anal. Topology Methods of Graded Rings = Lect Notes Math Methods of Graded Rings = Lect. Notes. Math. Methods of Information in Medicine = Method Inform Med Methods of Information in Medicine = Method. Inform. Med. Methods of information in medicine = Methods Inf Med Methods of Information in Medicine = Methods Inf. Med. Methods of Information In Medicine=Methods Inf Med;; Methods of information in medicine. Supplement = Methods Inf Med Suppl Methods of Information in Medicine. Supplement = Methods Inf. Med. Suppl. Methods of Investigation of The Dead Sea Scrolls and The Khirbet Qumran Site: Present Realities and Future Prospects = Ann Ny Acad Sci Methods of Investigation of The Dead Sea Scrolls and The Khirbet Qumran Site: Present Realities and Future Prospects = Ann. Ny. Acad. Sci. Methods of Legal Reasoning = Law Philos Libr Methods of Legal Reasoning = Law. Philos. Libr. Methods of Microwave Fixation for Microscopy = Prog Histochem Cytoc Methods of Microwave Fixation for Microscopy = Prog. Histochem. Cytoc. Methods of Nonconvex Analysis = Lect Notes Math Methods of Nonconvex Analysis = Lect. Notes. Math. Methods of Pesticide Exposure Assessment = Nato-chal M Methods of Pesticide Exposure Assessment = Nato-chal. M. Methods of Spectral Analysis in Mathematical Physics = Oper Theor Methods of Spectral Analysis in Mathematical Physics = Oper. Theor. Methods of Thought: Individual Differences in Reasoning Strategies = Curr Iss Think Reaso Methods of Thought: Individual Differences in Reasoning Strategies = Curr. Iss. Think. Reaso. Methods (Oxford, United Kingdom) = Methods (Oxford, U. K.) Methods (San Diego, Calif.) = Methods Methods (San Diego, CA, United States) = Methods (San Diego, CA, U. S.) Methods to Assess The Effects of Chemicals On Ecosystems = Scope Ser Methods to Assess The Effects of Chemicals On Ecosystems = Scope. Ser. Method & Theory in The Study of Religion = Meth Theory Stud Rel Method & Theory in The Study of Religion = Meth. Theory Stud. Rel. Methodus=Methodus Methylmercury = Environ Health Crit Methylmercury = Environ. Health. Crit. Métis. Revue d'anthropologie du monde grec ancien = Metis Metody Diskretnogo Analiza = Metody Diskret. Anal. Metra = Metra Metric Foliations and Curvature = Prog Math Metric Foliations and Curvature = Prog. Math. Metrics for Process Models: Empirical Foundations of Verification, Error Prediction, and Guidelines for Correctness = Lect Notes Bus Inf P Metrics for Process Models: Empirical Foundations of Verification, Error Prediction, and Guidelines for Correctness = Lect. Notes. Bus. Inf. P. Metrics On The Phase Space and Non-selfadjoint Pseudo-differential Operators = Pseudo Differ Oper Metrics On The Phase Space and Non-selfadjoint Pseudo-differential Operators = Pseudo. Differ. Oper. Metrika = Metrika Metrika=Metrika Metrika = Metrika Metroeconomica=Metroecon. Metroeconomica = Metroeconom Metroeconomica = Metroeconom. Metroeconomica = Metroeconomica Metroeconomica = Metroeconomica Metrologia = Metrologia Metrology and Identification of Speciality Animal Fibres - Saf '95 = Eur Fin Fib Netw O P Metrology and Identification of Speciality Animal Fibres - Saf '95 = Eur. Fin. Fib. Netw. O. P. Metrology and Measurement Systems = Metrol Meas Syst Metrology and Measurement Systems = Metrol. Meas. Syst. Metrology-based Control for Micro-manufacturing = P Soc Photo-opt Ins Metrology-based Control for Micro-manufacturing = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xiii, Pts 1 and 2 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xiii, Pts 1 and 2 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xiii, Pts 1 and 2 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xiii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xii = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xii = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xi = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xi = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xiv = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xiv = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xiv = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xiv = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xix, Pts 1-3 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xix, Pts 1-3 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xix, Pts 1-3 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xix, Pts 1-3 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography X = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography X = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xviii, Pts 1 and 2 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xviii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xvii, Pts 1 and 2 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xvii, Pts 1 and 2 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xvii, Pts 1 and 2 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xvii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xvi, Pts 1 & 2 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xvi, Pts 1 & 2 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xvi, Pts 1 & 2 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xvi, Pts 1 & 2 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xv = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xv = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xv = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xv = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xxii, Pts 1 and 2 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xxii, Pts 1 and 2 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xxi, Pts 1-3 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xxi, Pts 1-3 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xxi, Pts 1-3 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xxi, Pts 1-3 = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xxiv = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xxiv = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xxiv = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xxiv = P. Soc. Photo-opt. Ins. Metrology, Inspection, and Process Control for Microlithography Xx, Pts 1 and 2 = Proc Spie Metrology, Inspection, and Process Control for Microlithography Xx, Pts 1 and 2 = Proc. Spie. Metrology, Inspection, and Process Control for Microlithography Xx, Pts 1 and 2 = P Soc Photo-opt Ins Metrology, Inspection, and Process Control for Microlithography Xx, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Metrology of Pedestrian Locomotion and Slip Resistance = Am Soc Test Mater Metrology of Pedestrian Locomotion and Slip Resistance = Am. Soc. Test. Mater. Metron = Metron Metropolis and Modern Life = Metrop Mod Life Metropolis and Modern Life = Metrop. Mod. Life Metropolitan Museum Journal = MetrMusJ Metropolitan Museum Journal = Metropol Museum J Metropolitan Museum Journal = Metropol. Museum J. Metropolitan Museum Journal = MMJ Metropolitan Museum of Art Bulletin = Metropol Mus Art B Metropolitan Museum of Art Bulletin = Metropol. Mus. Art B. Metropolitan Museum Studies = MetrMusSt Metropolitan Portraits = Metrop Portraits Metropolitan Portraits = Metrop. Portraits Metsantutkimuslaitoksen Tiedonantoja = Metsan Tied Metsantutkimuslaitoksen Tiedonantoja = Metsan. Tied. Metu Journal of The Faculty of Architecture = Metu J Fac Archit Metu Journal of The Faculty of Architecture = Metu J. Fac. Archit. Mexican Indigenous Languages At The Dawn of The Twenty-first Century = Contrib Sociol Lang Mexican Indigenous Languages At The Dawn of The Twenty-first Century = Contrib. Sociol. Lang. Mexican Studies-estudios Mexicanos = Mex Stud Mexican Studies-estudios Mexicanos = Mex. Stud. Meyer-neldel Rule = Defect Diffus Forum Meyer-neldel Rule = Defect. Diffus. Forum. Meylania = Meylania Mezzogiorno d'Europa = Mezzog Eur Mfa Bulletin of The Museum of Fine Arts Boston = Mfa B Mus Fine Art Mfa Bulletin of The Museum of Fine Arts Boston = Mfa B. Mus. Fine Art. Mfdbs 91 = Lect Notes Comput Sc Mfdbs 91 = Lect. Notes. Comput. Sc. Mfs-modern Fiction Studies = Mfs-mod Fict Stud Mfs-modern Fiction Studies = Mfs-mod. Fict. Stud. MGH news / Montreal General Hospital = MGH News MGMA connexion / Medical group Management Association = MGMA Connex Mhd Couette Flows: Experiments and Models = Aip Conf Proc Mhd Couette Flows: Experiments and Models = Aip. Conf. Proc. Mhd Flows in Compact Astrophysical Objects: Accretion, Winds and Jets = Astron Astrophys Lib Mhd Flows in Compact Astrophysical Objects: Accretion, Winds and Jets = Astron. Astrophys. Lib. MH; Mental Hygiene = MH MH = MH Miami: Mistress of The Americas = Metrop Portraits Miami: Mistress of The Americas = Metrop. Portraits. Mian yi xue za zhi = Journal of immunology|Mian Yi Xue Za Zhi Micai 2000: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Micai 2000: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Micai 2004: Advances in Artificial Intelligence = Lect Notes Comput Sc Micai 2004: Advances in Artificial Intelligence = Lect. Notes. Comput. Sc. Micai 2005: Advances in Artificial Intelligence = Lect Notes Artif Int Micai 2005: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Micai 2006: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Micai 2006: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Micai 2007: Advances in Artificial Intelligence = Lect Notes Artif Int Micai 2007: Advances in Artificial Intelligence = Lect. Notes. Artif. Int. Micai 2008: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Micai 2008: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Micai 2009: Advances in Artificial Intelligence, Proceedings = Lect Notes Artif Int Micai 2009: Advances in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Micas: Crystal Chemistry and Metamorphic Petrology = Rev Mineral Geochem Micas: Crystal Chemistry and Metamorphic Petrology = Rev. Mineral. Geochem. Micbe '09: Proceedings of The 10th Wseas International Conference On Mathematics and Computers in Business and Economics = Rec Adv Comput Eng Micbe '09: Proceedings of The 10th Wseas International Conference On Mathematics and Computers in Business and Economics = Rec. Adv. Comput. Eng. Micellar Catalysis = Surfactant Sci Ser Micellar Catalysis = Surfactant. Sci. Ser. Michael Ryan's Writings On Medical Ethics = Philos Med Michael Ryan's Writings On Medical Ethics = Philos. Med. Michele Federico Sciacca E La Filosofia Oggi, Vols I and Ii = Pubb Sciacca Sez Att Michele Federico Sciacca E La Filosofia Oggi, Vols I and Ii = Pubb. Sciacca Sez. Att. Michel Foucault-lectures At The College De France = Michel Foucault-lect Michel Foucault-lectures At The College De France = Michel Foucault-lect. Michie's annotated code of the public general laws of Maryland / Prepared by the editorial staff of the publishers .... Maryland = Michies Annot Code Public Gen Laws Md Md Michie's West Virginia code, annotated / prepared by the editorial staff of the publisher. West Virginia = Michies W Va Code Annot W Va Michigan academician = Mich Acad Michigan Academician=Mich. Academician Michigan Agricultural Experiment Station Research Report = Mich Aes Res Rep Michigan Agricultural Experiment Station Research Report = Mich. Aes. Res. Rep. Michigan appeals reports : cases decided in the Michigan Court of Appeals. Michigan. Court of Appeals = Mich Appeals Rep Mich Court Appeals Michigan compiled laws annotated. Michigan = Mich Compil Laws Annot Mich Michigan Cooperative Extension Service Extension Bulletin = Mich Ces Ext Bull Michigan Cooperative Extension Service Extension Bulletin = Mich. Ces. Ext. Bull. Michigan Germanic Studies = Mich German Stud Michigan Germanic Studies = Mich. German. Stud. Michigan Health and Hospitals = Mich. Health Hosp. Michigan health & hospitals = Mich Health Hosp Michigan Historical Review = Mich Hist Rev Michigan Historical Review = Mich. Hist. Rev. Michigan history = Mich Hist Michigan hospitals = Mich Hosp Michigan Hospitals = Mich. Hosp. Michigan Jewish history = Mich Jew Hist Michigan journal of gender & law = Mich J Gend Law Michigan law review = Mich Law Rev Michigan Law Review=Mich. Law Rev. Michigan Law Review = Mich Law Rev Michigan Law Review = Mich. Law Rev. Michigan Mathematical Journal = Mich Math J Michigan Mathematical Journal = Mich. Math. J. Michigan medicine = Mich Med Michigan Medicine=Mich Med;; Michigan Medicine = Mich. Med. Michigan Nurse = Mich. Nurse Michigan quarterly review = Mich Q Rev Michigan Quarterly Review = Mich Quart Rev Michigan Quarterly Review = Mich. Quart. Rev. Michigan Slavic Materials = Mich Slav Mat Michigan Slavic Materials = Mich. Slav. Mat. Michigan State University Contributions to International Business and Innovation = Adv Int Mar Michigan State University Contributions to International Business and Innovation = Adv. Int. Mar. Michigan statutes annotated / Compiled and edited by ... the publisher's editorial staff. Michigan = Mich Statut Annot Mich Michigan Studies of South and Southeast Asia = Mich St S Michigan Studies of South and Southeast Asia = Mich. St. S. Micologia italiana = Micol. ital. Micon 90 : Advances in Video Technology for Microstructural Control = Am Soc Test Mater Micon 90 : Advances in Video Technology for Microstructural Control = Am. Soc. Test. Mater. Micro-37 2004: 37th Annual International Symposium On Microarchitecture, Proceedings = Int Symp Microarch Micro-37 2004: 37th Annual International Symposium On Microarchitecture, Proceedings = Int. Symp. Microarch. Micro-38: Proceedings of The 38th Annual Ieee/acm International Symposiumn On Microarchitecture = Int Symp Microarch Micro-38: Proceedings of The 38th Annual Ieee/acm International Symposiumn On Microarchitecture = Int. Symp. Microarch. Micro-39: Proceedings of The 39th Annual Ieee/acm International Symposium On Microarchitecture = Int Symp Microarch Micro-39: Proceedings of The 39th Annual Ieee/acm International Symposium On Microarchitecture = Int. Symp. Microarch. Micro-40: Proceedings of The 40th Annual Ieee/acm International Symposium On Microarchitecture = Int Symp Microarch Micro-40: Proceedings of The 40th Annual Ieee/acm International Symposium On Microarchitecture = Int. Symp. Microarch. Microalgae As Feedstock for Biofuels = Springerbrief Micro Microalgae As Feedstock for Biofuels = Springerbrief. Micro. Microalgal Cell Cycles = Cell Bio Res Prog Microalgal Cell Cycles = Cell Bio. Res. Prog. Microalloying for New Steel Processes and Applications = Mater Sci Forum Microalloying for New Steel Processes and Applications = Mater. Sci. Forum. Micro- and Macrodata of Firms = Contr Stat Micro- and Macrodata of Firms = Contr. Stat. Micro and Macro Mixing: Analysis, Simulation and Numerical Calculation = Heat Mass Transf Micro and Macro Mixing: Analysis, Simulation and Numerical Calculation = Heat. Mass. Transf. Micro- and Mesoporous Mineral Phases = Rev Mineral Geochem Micro- and Mesoporous Mineral Phases = Rev. Mineral Geochem. Micro- and Nanoelectronics 2003 = P Soc Photo-opt Ins Micro- and Nanoelectronics 2003 = P. Soc. Photo-opt. Ins. Micro- and Nanoelectronics 2005 = Proc Spie Micro- and Nanoelectronics 2005 = Proc. Spie. Micro- and Nanoelectronics 2005 = P Soc Photo-opt Ins Micro- and Nanoelectronics 2005 = P. Soc. Photo-opt. Ins. Micro- and Nanoelectronics 2007 = Proc Spie Micro- and Nanoelectronics 2007 = Proc. Spie. Micro- and Nanofabricated Electro-optical Mechanical Systems for Biomedical and Environmental Applications, Proceedings Of = P Soc Photo-opt Ins Micro- and Nanofabricated Electro-optical Mechanical Systems for Biomedical and Environmental Applications, Proceedings Of = P. Soc. Photo-opt. Ins. Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications Ii = Proc Spie Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications Ii = Proc. Spie. Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications Ii = P Soc Photo-opt Ins Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications Ii = P. Soc. Photo-opt. Ins. Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications = Prog Biom O Micro- and Nanofabricated Structures and Devices for Biomedical Environmental Applications = Prog. Biom. O. Micro and Nanomanufacturing Research = Mater Manuf Technol Micro and Nanomanufacturing Research = Mater. Manuf. Technol. Micro- and Nano-optics for Optical Interconnection and Information Processing = P Soc Photo-opt Ins Micro- and Nano-optics for Optical Interconnection and Information Processing = P. Soc. Photo-opt. Ins. Micro- and Nano-photonic Materials and Devices = Proc Spie Micro- and Nano-photonic Materials and Devices = Proc. Spie. Micro- and Nano-photonic Materials and Devices = P Soc Photo-opt Ins Micro- and Nano-photonic Materials and Devices = P. Soc. Photo-opt. Ins. Micro-and Nanosystems in Medicine, Active Implants, Biosensors = Ifmbe Proc Micro-and Nanosystems in Medicine, Active Implants, Biosensors = Ifmbe. Proc. Micro- and Nanosystems-materials and Devices = Mater Res Soc Symp P Micro- and Nanosystems-materials and Devices = Mater. Res. Soc. Symp. P. Micro- and Nanosystems = Mater Res Soc Symp P Micro- and Nanosystems = Mater. Res. Soc. Symp. P. Micro and Nano Technologies in Bioanalysis: Methods and Protocols = Methods Mol Biol Micro and Nano Technologies in Bioanalysis: Methods and Protocols = Methods Mol. Biol. Micro and Nano Technology = Adv Mat Res Micro and Nano Technology = Adv. Mat. Res. Micro- and Nanotechnology for Biomedical and Environmental Applications = Proc Spie Micro- and Nanotechnology for Biomedical and Environmental Applications = Proc. Spie. Micro- and Nanotechnology for Biomedical and Environmental Applications = P Soc Photo-opt Ins Micro- and Nanotechnology for Biomedical and Environmental Applications = P. Soc. Photo-opt. Ins. Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Iii = Proc Spie Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Iii = Proc. Spie. Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Iii = P Soc Photo-opt Ins Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Iii = P. Soc. Photo-opt. Ins. Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Ii = Proc Spie Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Ii = Proc. Spie. Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Ii = P Soc Photo-opt Ins Micro- and Nanotechnology: Materials, Processes, Packaging, and Systems Ii = P. Soc. Photo-opt. Ins. Micro- and Nanotechnology Sensors, Systems, and Applications Iii = Proc Spie Micro- and Nanotechnology Sensors, Systems, and Applications Iii = Proc. Spie. Micro- and Nanotechnology Sensors, Systems, and Applications Iii = P Soc Photo-opt Ins Micro- and Nanotechnology Sensors, Systems, and Applications Iii = P. Soc. Photo-opt. Ins. Micro- and Nanotechnology Sensors, Systems, and Applications Ii = Proc Spie Micro- and Nanotechnology Sensors, Systems, and Applications Ii = Proc. Spie. Micro- and Nanotechnology Sensors, Systems, and Applications Ii = P Soc Photo-opt Ins Micro- and Nanotechnology Sensors, Systems, and Applications Ii = P. Soc. Photo-opt. Ins. Micro- and Opto-electronic Materials, Structures, and Systems = Micro- Opto-electron Micro- and Opto-electronic Materials, Structures, and Systems = Micro- Opto-electron. Microarray Analysis of The Physical Genome: Methods and Protocols = Methods Mol Biol Microarray Analysis of The Physical Genome: Methods and Protocols = Methods Mol. Biol. Microarray Innovations: Technology and Experimentation = Drug Discov Ser Microarray Innovations: Technology and Experimentation = Drug. Discov. Ser. Microarray Methods for Drug Discovery = Methods Mol Biol Microarray Methods for Drug Discovery = Methods Mol. Biol. Microarrays and Combinatorial Techniques: Design, Fabrication, and Analysis Ii = Pro Biomed Opt Imag Microarrays and Combinatorial Techniques: Design, Fabrication, and Analysis Ii = Pro. Biomed. Opt. Imag. Microarrays and Combinatorial Technologies for Biomedical Applications: Design, Fabrication, and Analysis = Proc Spie Microarrays and Combinatorial Technologies for Biomedical Applications: Design, Fabrication, and Analysis = Proc. Spie. Microarrays and Combinatorial Technologies for Biomedical Applications: Design, Fabrication, and Analysis = P Soc Photo-opt Ins Microarrays and Combinatorial Technologies for Biomedical Applications: Design, Fabrication, and Analysis = P. Soc. Photo-opt. Ins. Microarrays, Immune Responses and Vaccines = Ann Ny Acad Sci Microarrays, Immune Responses and Vaccines = Ann. Ny. Acad. Sci. Microarrays: Optical Technologies and Informatics = Proc Spie Microarrays: Optical Technologies and Informatics = Proc. Spie. Microarrays: Optical Technologies and Informatics = P Soc Photo-opt Ins Microarrays: Optical Technologies and Informatics = P. Soc. Photo-opt. Ins. Microarrays: Preparation, Microfluidics, Detection Methods, and Biological Applications = Integr Anal Syst Microarrays: Preparation, Microfluidics, Detection Methods, and Biological Applications = Integr. Anal. Syst. Microarray Technology and Cancer Gne Profiling = Adv Exp Med Biol Microarray Technology and Cancer Gne Profiling = Adv. Exp. Med. Biol. Micro-assembly Technologies and Applications = Int Fed Info Proc Micro-assembly Technologies and Applications = Int. Fed. Info. Proc. Microbeam Analysis 1995 = Microb Anal Microbeam Analysis 1995 = Microb. Anal. Microbeam Analysis 2000, Proceedings = Inst Phys Conf Ser Microbeam Analysis 2000, Proceedings = Inst. Phys. Conf. Ser. Microbeam Analysis = Microb Anal Microbeam Analysis = Microb. Anal. Microbeam Analysis = Microbeam Anal Microbeam Analysis = Microbeam Anal. Microbes and Environments = Microbes Environ Microbes and Environments = Microbes Environ. Microbes and Environments = Microbes Environment Microbes and Environments = Microbes Environment. Microbes and infection / Institut Pasteur = Microbes Infect Microbes and Infection = Microbes Infect Microbes and Infection = Microbes Infect. Microbes and Microbial Products As Herbicides = Acs Sym Ser Microbes and Microbial Products As Herbicides = Acs. Sym. Ser. Microbe (Washington, D.C.) = Microbe Wash DC Microbial and Comparative Genomics = Microb. Comp. Genomics Microbial Biotechnology = Microb Biotechnol Microbial Biotechnology = Microb. Biotechnol. Microbial cell factories = Microb Cell Fact Microbial Cell Factories = Microb Cell Fact Microbial Cell Factories = Microb. Cell Fact. Microbial & comparative genomics = Microb Comp Genomics Microbial drug resistance (Larchmont, N.Y.) = Microb Drug Resist Microbial Drug Resistance-mechanisms Epidemiology and Disease = Microb Drug Resist Microbial Drug Resistance-mechanisms Epidemiology and Disease = Microb. Drug Resist. Microbial Drug Resistance=Microb Drug Resist;; Microbial Drug Resistance = Microb Drug Resist Microbial Drug Resistance = Microb. Drug Resist. Microbial Ecology in Health and Disease = Microb Ecol Health D Microbial Ecology in Health and Disease = Microb. Ecol. Health D. Microbial ecology = Microb Ecol Microbial Ecology = Microb Ecol Microbial Ecology = Microb. Ecol. Microbial Ecology = Microbial Ecol Microbial Ecology = Microbial Ecol. Microbial Enhancement of Oil Recovery - Recent Advances = Dev Petr Sci Microbial Enhancement of Oil Recovery - Recent Advances = Dev. Petr. Sci. Microbial Enhancement of Oil Recovery - Recent Advances / = Dev Petr Sci Microbial Enhancement of Oil Recovery - Recent Advances / = Dev. Petr. Sci. Microbial Enzymes in Aquatic Environments = Brock Spr S Microbial Enzymes in Aquatic Environments = Brock. Spr. S. Microbial Growth in Biofilms, Pt A = Method Enzymol Microbial Growth in Biofilms, Pt A = Method. Enzymol. Microbial Growth in Biofilms, Pt A = Methods Enzymol Microbial Growth in Biofilms, Pt A = Methods. Enzymol. Microbial Growth in Biofilms, Pt A R Biological Aspects = Method Enzymol Microbial Growth in Biofilms, Pt A R Biological Aspects = Method. Enzymol. Microbial Growth in Biofilms, Pt B = Method Enzymol Microbial Growth in Biofilms, Pt B = Method. Enzymol. Microbial-host Interaction: Tolerance Versus Allergy = Nestle Nutr Works Se Microbial-host Interaction: Tolerance Versus Allergy = Nestle. Nutr. Works. Se. Microbial Imaging = Method Microbiol Microbial Imaging = Method. Microbiol. Microbial Infections = Adv Exp Med Biol Microbial Infections = Adv. Exp. Med. Biol. Microbial Insecticides: Novelty Or Necessity? = Bcpc Symp Ser Microbial Insecticides: Novelty Or Necessity? = Bcpc. Symp. Ser. Microbial Pathogenesis and Immune Response = Ann Ny Acad Sci Microbial Pathogenesis and Immune Response = Ann. Ny. Acad. Sci. Microbial Pathogenesis and Immune Response Ii = Ann Ny Acad Sci Microbial Pathogenesis and Immune Response Ii = Ann. Ny. Acad. Sci. Microbial pathogenesis = Microb Pathog Microbial Pathogenesis=Microb Pathog;; Microbial Pathogenesis = Microb. Pathog. Microbial Pathogenesis = Microb Pathogenesis Microbial Pathogenesis = Microb. Pathogenesis Microbial Pathogenomics = Genome Dynam Microbial Pathogenomics = Genome. Dynam. Microbial Processes for Bioremediation = Bioremed Ser Microbial Processes for Bioremediation = Bioremed. Ser. Microbial Products : New Approaches = Symp Soc Gen Microbi Microbial Products : New Approaches = Symp. Soc. Gen. Microbi. Microbial Reagents in Organic Synthesis = Nato Adv Sci I C-mat Microbial Reagents in Organic Synthesis = Nato. Adv. Sci. I. C-mat. Microbial Releases = Microb. Releases Microbial releases : viruses, bacteria, fungi = Microb Releases Microbial Risk Analysis in Foods = Emerg Iss Food Saf Microbial Risk Analysis in Foods = Emerg. Iss. Food. Saf. Microbial Signalling and Communication = Symp Soc Gen Microbi Microbial Signalling and Communication = Symp. Soc. Gen. Microbi. Microbial Source Tracking = Emerg Iss Food Saf Microbial Source Tracking = Emerg. Iss. Food. Saf. Microbial Surface Components and Toxins in Relation to Pathogenesis = Fems Symp Microbial Surface Components and Toxins in Relation to Pathogenesis = Fems. Symp. Microbial Toxins: Methods and Protocols = Methods Mol Biol Microbial Toxins: Methods and Protocols = Methods Mol. Biol. Microbiologia espanola = Microbiol Esp Microbiologia Espanola = Microbiol. Esp. Microbiologia (Madrid, Spain) = Microbiologia Microbiologia=Microbiologia;; Microbiologia = Microbiologia Microbiologia, parazitologia, epidemiologia = Microbiol Parazitol Epidemiol (Bucur) Microbiologia, Parazitologia, Epidemiologia = Microbiol. Parazitol. Epidemiol. (Bucur.) Microbiological Analysis of Red Meat, Poultry and Eggs = Woodhead Food Ser Microbiological Analysis of Red Meat, Poultry and Eggs = Woodhead. Food. Ser. Microbiological, Chemotherapeutical and Immunological Problems in High Risk Patients = Serono Sym Microbiological, Chemotherapeutical and Immunological Problems in High Risk Patients = Serono. Sym. Microbiologically Influenced Corrosion Testing = Am Soc Test Mater Microbiologically Influenced Corrosion Testing = Am. Soc. Test. Mater. Microbiological research = Microbiol Res Microbiological Research=Microbiol Res;; Microbiological Research = Microbiol Res Microbiological Research = Microbiol. Res. Microbiological reviews = Microbiol Rev Microbiological Reviews = Microbiol Rev Microbiological Reviews = Microbiol. Rev. Microbiological sciences = Microbiol Sci Microbiological Sciences = Microbiol Sci Microbiological Sciences = Microbiol. Sci. Microbiologica = Microbiologica Microbiologist and Biological Defense Research = Ann Ny Acad Sci Microbiologist and Biological Defense Research = Ann. Ny. Acad. Sci. Microbiology and Biochemistry of Strict Anaerobes Involved in Interspecies Hydrogen Transfer = Fems Symp Microbiology and Biochemistry of Strict Anaerobes Involved in Interspecies Hydrogen Transfer = Fems. Symp. Microbiology and Biogeochemistry of Hypersaline Environments = Micr Extrem Unusual Microbiology and Biogeochemistry of Hypersaline Environments = Micr. Extrem. Unusual. Microbiology and immunology = Microbiol Immunol Microbiology and Immunology=Microbiol Immunol;; Microbiology and Immunology = Microbiol Immunol Microbiology and Immunology = Microbiol. Immunol. Microbiology and Molecular Biology Reviews = Microbiol Mol Biol R Microbiology and Molecular Biology Reviews = Microbiol. Mol. Biol. R. Microbiology and Molecular Biology Reviews=Microbiol Mol Biol Rev;; Microbiology and Molecular Biology Reviews = Microbiol. Mol. Biol. Rev. Microbiology and molecular biology reviews : MMBR = Microbiol Mol Biol Rev Microbiology Handbook = Microbiol Handb Microbiology Handbook = Microbiol. Handb. Microbiology in Civil Engineering = Fems Symp Microbiology in Civil Engineering = Fems. Symp. Microbiology=Microbiology;; Microbiology = Microbiology Microbiology = Microbiology+ Microbiology = Microbiology+.+ Microbiology Monographs = Microbiol Monogr Microbiology Monographs = Microbiol. Monogr. Microbiology (Moscow, Russian Federation)(Translation of Mikrobiologiya) = Microbiology (Moscow, Russ. Fed.) Microbiology (New York, NY, United States) = Microbiology (N. Y., NY, U. S.) Microbiology of Atmospheric Trace Gases = Nato Asi Ser Ser I Microbiology of Atmospheric Trace Gases = Nato. Asi. Ser. Ser. I. Microbiology of Extreme and Unusual Environments = Micr Extrem Unusual Microbiology of Extreme and Unusual Environments = Micr. Extrem. Unusual Microbiology of Extreme Environments and Its Potential for Biotechnology = Fems Symp Microbiology of Extreme Environments and Its Potential for Biotechnology = Fems. Symp. Microbiology (Reading, England) = Microbiology Microbiology (Reading, United Kingdom) = Microbiology (Reading, U. K.) Microbiology Research Advances = Microbiol Res Adv Microbiology Research Advances = Microbiol. Res. Adv. Microbiology (Road Town, Virgin Islands (British)) = Microbiology (Road Town, V. I. (Br.)) Microbiology-sgm = Microbiol-sgm Microbiology-sgm = Microbiol-sgm. Microbiology-uk = Microbiol-uk Microbiology-uk = Microbiol-uk. Microbiology-ussr = Microbiology-ussr Microbios Letters = Microbios Lett Microbios Letters = Microbios Lett. Microbios=Microbios;; Microbios = Microbios Microbotics: Components and Applications = P Soc Photo-opt Ins Microbotics: Components and Applications = P. Soc. Photo-opt. Ins. Micro Bunches Workshop = Aip Conf Proc Micro Bunches Workshop = Aip. Conf. Proc. Microcavities and Photonic Bandgaps: Physics and Applications = Nato Adv Sci I E-app Microcavities and Photonic Bandgaps: Physics and Applications = Nato. Adv. Sci. I. E-app. Microchemical journal, devoted to the application of microtechniques in all branches of science = Microchem J Microchemical Journal = Microchem J Microchemical Journal = Microchem. J. Microchemistry = N-holland D Microchemistry = N-holland. D. Microchimica Acta = Microchim Acta Microchimica Acta = Microchim. Acta Microcirculation, endothelium, and lymphatics = Microcirc Endothelium Lymphatics Microcirculation, Endothelium, and Lymphatics = Microcirc. Endothelium. Lymphatics Microcirculation Endothelium and Lymphatics = Microcirc Endoth Lym Microcirculation Endothelium and Lymphatics = Microcirc. Endoth. Lym. Microcirculation in Chronic Venous Insufficiency = Prog Appl Microcir Microcirculation in Chronic Venous Insufficiency = Prog. Appl. Microcir. Microcirculation in Chronic Venous Insufficiency = Progr Appl Micr Microcirculation in Chronic Venous Insufficiency = Progr. Appl. Micr. Microcirculation in Organ Transplantation = Progr Appl Micr Microcirculation in Organ Transplantation = Progr. Appl. Micr. Microcirculation-london = Microcirculation-lon Microcirculation-london = Microcirculation-lon. Microcirculation=Microcirculation;; Microcirculation = Microcirculation Microcirculation (New York, N.Y. : 1994) = Microcirculation Microcirculatory Approach to Asian Traditional Medicine = Int Congr Ser Microcirculatory Approach to Asian Traditional Medicine = Int. Congr. Ser. Microcirculatory Effects of Hemoglobin Solutions = Prog Appl Microcir Microcirculatory Effects of Hemoglobin Solutions = Prog. Appl. Microcir. Microcirculatory Stasis in The Brain = Int Congr Ser Microcirculatory Stasis in The Brain = Int. Congr. Ser. Microcomputers in Public Policy = Aaas Select Microcomputers in Public Policy = Aaas. Select. Microcomputing = Microcomputing Microcontamination = Microcontamination Microcrystalline and Nanocrystalline Semiconductors-1998 = Mater Res Soc Symp P Microcrystalline and Nanocrystalline Semiconductors-1998 = Mater. Res. Soc. Symp. P. Microcrystalline and Nanocrystalline Semiconductors = Mater Res Soc Symp P Microcrystalline and Nanocrystalline Semiconductors = Mater. Res. Soc. Symp. P. Microcrystalline Semiconductors : Materials Science & Devices = Mat Res S C Microcrystalline Semiconductors : Materials Science & Devices = Mat. Res. S. C. Microdevices Physics and Fabrication Technologies = Microdevice Phys Fab Microdevices Physics and Fabrication Technologies = Microdevice. Phys. Fab. Micro-doppler Effect in Radar = Artech Hse Radar Lib Micro-doppler Effect in Radar = Artech. Hse. Radar Lib. Microdynamics Simulation = Lect Notes Earth Sci Microdynamics Simulation = Lect. Notes. Earth. Sci. Microecology and Therapy = Microecol T Microecology and Therapy = Microecol. T. Microecology and Therapy, Vol 17 = Microecol T Microecology and Therapy, Vol 17 = Microecol. T. Microecology and Therapy, Vol 18 = Microecol T Microecology and Therapy, Vol 18 = Microecol. T. Microecology and Therapy, Vol 19 = Microecol T Microecology and Therapy, Vol 19 = Microecol. T. Microecology and Therapy, Vol 20 = Microecol T Microecology and Therapy, Vol 20 = Microecol. T. Microecology and Therapy, Vol 23, 1995 = Microecol T Microecology and Therapy, Vol 23, 1995 = Microecol. T. Microecology and Therapy, Vol 25 , 1995 = Microecol T Microecology and Therapy, Vol 25 , 1995 = Microecol. T. Microeconomic Contributions to Strategic Management = Adv Ser Manage Microeconomic Contributions to Strategic Management = Adv. Ser. Manage. Microeconomics: Behavior, Institutions, and Evolution = Roundtable Ser Behav Microeconomics: Behavior, Institutions, and Evolution = Roundtable. Ser. Behav. Microelectrodes : Theory and Applications = Nato Adv Sci I E-app Microelectrodes : Theory and Applications = Nato. Adv. Sci. I. E-app. Microelectromechancial Systems - Materials and Devices Ii = Mater Res Soc Symp P Microelectromechancial Systems - Materials and Devices Ii = Mater. Res. Soc. Symp. P. Microelectromechanical Structures for Materials Research = Mater Res Soc Symp P Microelectromechanical Structures for Materials Research = Mater. Res. Soc. Symp. P. Micro-electro-mechanical Systems - 2005 = Microelect Mech Syst Micro-electro-mechanical Systems - 2005 = Microelect. Mech. Syst. Micro-electro-mechanical Systems Division of The American Society of Mechanical Engineers = Microelect Mech Syst Micro-electro-mechanical Systems Division of The American Society of Mechanical Engineers = Microelect. Mech. Syst. Microelectromechanical Systems - Materials and Devices = Mater Res Soc Symp P Microelectromechanical Systems - Materials and Devices = Mater. Res. Soc. Symp. P. Microelectronic Device and Multilevel Interconnection Technology Ii = P Soc Photo-opt Ins Microelectronic Device and Multilevel Interconnection Technology Ii = P. Soc. Photo-opt. Ins. Microelectronic Device and Multilevel Interconnection Technology = Proc Spie Microelectronic Device and Multilevel Interconnection Technology = Proc. Spie. Microelectronic Device and Multilevel Interconnection Technology = P Soc Photo-opt Ins Microelectronic Device and Multilevel Interconnection Technology = P. Soc. Photo-opt. Ins. Microelectronic Device Technology Iii = P Soc Photo-opt Ins Microelectronic Device Technology Iii = P. Soc. Photo-opt. Ins. Microelectronic Device Technology Ii = P Soc Photo-opt Ins Microelectronic Device Technology Ii = P. Soc. Photo-opt. Ins. Microelectronic Device Technology = P Soc Photo-opt Ins Microelectronic Device Technology = P. Soc. Photo-opt. Ins. Microelectronic Engineering : An International Journal of Semiconductor Manufacturing Technology = Micro Engn Microelectronic Engineering : An International Journal of Semiconductor Manufacturing Technology = Micro. Engn. Microelectronic Engineering = Microelectron Eng Microelectronic Engineering = Microelectron. Eng. Microelectronic Engineering, Vol 13 = Micro Engn Microelectronic Engineering, Vol 13 = Micro. Engn. Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iii = P Soc Photo-opt Ins Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iii = P. Soc. Photo-opt. Ins. Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Ii = P Soc Photo-opt Ins Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Ii = P. Soc. Photo-opt. Ins. Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iv = Proc Spie Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iv = Proc. Spie. Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iv = P Soc Photo-opt Ins Microelectronic Manufacturing Yield, Reliability, and Failure Analysis Iv = P. Soc. Photo-opt. Ins. Microelectronic Manufacturing Yield, Reliability, and Failure Analysis = P Soc Photo-opt Ins Microelectronic Manufacturing Yield, Reliability, and Failure Analysis = P. Soc. Photo-opt. Ins. Microelectronic Packaging and Laser Processing = P Soc Photo-opt Ins Microelectronic Packaging and Laser Processing = P. Soc. Photo-opt. Ins. Microelectronic Processes, Sensors, and Controls = P Soc Photo-opt Ins Microelectronic Processes, Sensors, and Controls = P. Soc. Photo-opt. Ins. Microelectronics and Reliability = Microelectron Reliab Microelectronics and Reliability = Microelectron. Reliab. Microelectronics: Design, Technology, and Packaging Iii = Proc Spie Microelectronics: Design, Technology, and Packaging Iii = Proc. Spie. Microelectronics: Design, Technology, and Packaging Iii = P Soc Photo-opt Ins Microelectronics: Design, Technology, and Packaging Iii = P. Soc. Photo-opt. Ins. Microelectronics: Design, Technology, and Packaging Ii = Proc Spie Microelectronics: Design, Technology, and Packaging Ii = Proc. Spie. Microelectronics: Design, Technology, and Packaging Ii = P Soc Photo-opt Ins Microelectronics: Design, Technology, and Packaging Ii = P. Soc. Photo-opt. Ins. Microelectronics: Design, Technology, and Packaging = Proc Spie Microelectronics: Design, Technology, and Packaging = Proc. Spie. Microelectronics: Design, Technology, and Packaging = P Soc Photo-opt Ins Microelectronics: Design, Technology, and Packaging = P. Soc. Photo-opt. Ins. Microelectronics Education = Mesa Mg Microelectronics Education = Mesa. Mg. Microelectronics International = Microelectron Int Microelectronics International = Microelectron. Int. Microelectronics Journal = Microelectr J Microelectronics Journal = Microelectr. J. Microelectronics Journal = Microelectron J Microelectronics Journal = Microelectron. J. Microelectronics Manufacturability, Yield, and Reliability = P Soc Photo-opt Ins Microelectronics Manufacturability, Yield, and Reliability = P. Soc. Photo-opt. Ins. Microelectronics Manufacturing and Reliability = P Soc Photo-opt Ins Microelectronics Manufacturing and Reliability = P. Soc. Photo-opt. Ins. Microelectronics Reliability = Microelectron Reliab Microelectronics Reliability = Microelectron. Reliab. Microelectronics Technology = Acs Sym Ser Microelectronics Technology = Acs. Sym. Ser. Microelectronics Technology and Process Integration = P Soc Photo-opt Ins Microelectronics Technology and Process Integration = P. Soc. Photo-opt. Ins. Microelectronic Structures and Mems for Optical Processing Iii = P Soc Photo-opt Ins Microelectronic Structures and Mems for Optical Processing Iii = P. Soc. Photo-opt. Ins. Microelectronic Structures and Mems for Optical Processing Ii = Proc Spie Microelectronic Structures and Mems for Optical Processing Ii = Proc. Spie. Microelectronic Structures and Mems for Optical Processing Ii = P Soc Photo-opt Ins Microelectronic Structures and Mems for Optical Processing Ii = P. Soc. Photo-opt. Ins. Microelectronic Structures and Mems for Optical Processing Iv = Proc Spie Microelectronic Structures and Mems for Optical Processing Iv = Proc. Spie. Microelectronic Structures and Mems for Optical Processing Iv = P Soc Photo-opt Ins Microelectronic Structures and Mems for Optical Processing Iv = P. Soc. Photo-opt. Ins. Microelectronic Structures and Microelectromechanical Devices for Optical Processing and Multimedia Applications = Proc Spie Microelectronic Structures and Microelectromechanical Devices for Optical Processing and Multimedia Applications = Proc. Spie. Microelectronic Structures and Microelectromechanical Devices for Optical Processing and Multimedia Applications = P Soc Photo-opt Ins Microelectronic Structures and Microelectromechanical Devices for Optical Processing and Multimedia Applications = P. Soc. Photo-opt. Ins. Microelectronic Yield, Reliability, and Advanced Packaging = Proc Spie Microelectronic Yield, Reliability, and Advanced Packaging = Proc. Spie. Microelectronic Yield, Reliability, and Advanced Packaging = P Soc Photo-opt Ins Microelectronic Yield, Reliability, and Advanced Packaging = P. Soc. Photo-opt. Ins. Microelements and Trace Elements = Mengen Spurenelement Microelements and Trace Elements = Mengen. Spurenelement. Microemulsions and Emulsions in Foods = Acs Sym Ser Microemulsions and Emulsions in Foods = Acs. Sym. Ser. Microemulsions: Properties and Applications = Surfactant Sci Ser Microemulsions: Properties and Applications = Surfactant. Sci. Ser. Microencapsulation - Microgels - Iniferters = Adv Polym Sci Microencapsulation - Microgels - Iniferters = Adv. Polym. Sci. Microengineering in Biotechnology = Methods Mol Biol Microengineering in Biotechnology = Methods. Mol. Biol. Microfabricated Sensors = Acs Sym Ser Microfabricated Sensors = Acs. Sym. Ser. Microfabricated Systems and Mems Vi, Proceedings = Elec Soc S Microfabricated Systems and Mems Vi, Proceedings = Elec. Soc. S. Microfabrication for Microfluidics = Artech Hse Integr Mi Microfabrication for Microfluidics = Artech. Hse. Integr. Mi. Microfinance: A Reader = Routl Stud Dev Econ Microfinance: A Reader = Routl. Stud. Dev. Econ. Microfluidic Devices and Systems Iii = Proc Spie Microfluidic Devices and Systems Iii = Proc. Spie. Microfluidic Devices and Systems Iii = P Soc Photo-opt Ins Microfluidic Devices and Systems Iii = P. Soc. Photo-opt. Ins. Microfluidic Devices and Systems Ii = Proc Spie Microfluidic Devices and Systems Ii = Proc. Spie. Microfluidic Devices and Systems Ii = P Soc Photo-opt Ins Microfluidic Devices and Systems Ii = P. Soc. Photo-opt. Ins. Microfluidic Devices and Systems = Proc Spie Microfluidic Devices and Systems = Proc. Spie. Microfluidic Devices and Systems = P Soc Photo-opt Ins Microfluidic Devices and Systems = P. Soc. Photo-opt. Ins. Microfluidic Lab-on-a-chip for Chemical and Biological Analysis and Discovery = Chromatogr Sci Ser Microfluidic Lab-on-a-chip for Chemical and Biological Analysis and Discovery = Chromatogr. Sci. Ser. Microfluidics and Biomems = Proc Spie Microfluidics and Biomems = Proc. Spie. Microfluidics and Biomems = P Soc Photo-opt Ins Microfluidics and Biomems = P. Soc. Photo-opt. Ins. Microfluidics and Nanofluidics = Microfluid Nanofluid Microfluidics and Nanofluidics = Microfluid. Nanofluid. Microfluidics Based Microsystems: Fundamentals and Applications = Nato Sci Peace Sec A Microfluidics Based Microsystems: Fundamentals and Applications = Nato. Sci. Peace. Sec. A. Microfluidics, Biomems, and Medical Microsystems Iii = Proc Spie Microfluidics, Biomems, and Medical Microsystems Iii = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems Iii = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems Iii = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems Ii = Proc Spie Microfluidics, Biomems, and Medical Microsystems Ii = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems Ii = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems Ii = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems Iv = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems Iv = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems = Proc Spie Microfluidics, Biomems, and Medical Microsystems = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems Viii = Proc Spie Microfluidics, Biomems, and Medical Microsystems Viii = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems Vii = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems Vii = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems Vi = Proc Spie Microfluidics, Biomems, and Medical Microsystems Vi = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems Vi = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems Vi = P. Soc. Photo-opt. Ins. Microfluidics, Biomems, and Medical Microsystems V = Proc Spie Microfluidics, Biomems, and Medical Microsystems V = Proc. Spie. Microfluidics, Biomems, and Medical Microsystems V = P Soc Photo-opt Ins Microfluidics, Biomems, and Medical Microsystems V = P. Soc. Photo-opt. Ins. Microfluidics for Biotechnology = Artech Hse Microel S Microfluidics for Biotechnology = Artech. Hse. Microel. S. Microfluidics for Biotechnology, Second Edition = Artech Hse Integr Mi Microfluidics for Biotechnology, Second Edition = Artech. Hse. Integr. Mi. Microfluidics: Theory and Applications = Phys Res Technol Microfluidics: Theory and Applications = Phys. Res. Technol. Microfluidic Technologies for Miniaturized Analysis Systems = Mems Ref Shelf Microfluidic Technologies for Miniaturized Analysis Systems = Mems. Ref. Shelf. Microglia: A Pictorial = Prog Histochem Cytoc Microglia: A Pictorial = Prog. Histochem. Cytoc. Microgravity quarterly : MGQ = Microgravity Q Microgravity Research : Material and Fluid Sciences = Adv Space Res-series Microgravity Research : Material and Fluid Sciences = Adv. Space. Res-series. Microgravity Science and Technology = Microgravity Sci Tec Microgravity Science and Technology = Microgravity Sci. Tec. Microgravity science and technology = Microgravity Sci Technol Microgravity Science and Technology = Microgravity Sci. Technol. Microgravity Sciences: Results and Analysis of Recent Spaceflights = Adv Space Res Microgravity Sciences: Results and Analysis of Recent Spaceflights = Adv. Space. Res. Microgravity Transport Processes in Fluid, Thermal, Biological, and Materials Sciences = Ann Ny Acad Sci Microgravity Transport Processes in Fluid, Thermal, Biological, and Materials Sciences = Ann. Ny. Acad. Sci. Microgravity Two-phase Flow and Heat Transfer = Space Technol Lib Microgravity Two-phase Flow and Heat Transfer = Space. Technol. Lib. Microirrigation for A Changing World: Conserving Resources/preserving The Environment = Asae Publ Microirrigation for A Changing World: Conserving Resources/preserving The Environment = Asae. Publ. Microjoining and Nanojoining = Woodhead Publ Mater Microjoining and Nanojoining = Woodhead. Publ. Mater. Microlensing 2000: A New Era of Microlensing Astrophysics = Astr Soc P Microlensing 2000: A New Era of Microlensing Astrophysics = Astr. Soc. P. Microlithographic Techniques in Ic Fabrication = P Soc Photo-opt Ins Microlithographic Techniques in Ic Fabrication = P. Soc. Photo-opt. Ins. Microlithographic Techniques in Integrated Circuit Fabrication Ii = Proc Spie Microlithographic Techniques in Integrated Circuit Fabrication Ii = Proc. Spie. Microlithographic Techniques in Integrated Circuit Fabrication Ii = P Soc Photo-opt Ins Microlithographic Techniques in Integrated Circuit Fabrication Ii = P. Soc. Photo-opt. Ins. Microlithography 1999: Advances in Resist Technology and Processing Xvi, Pts 1 and 2 = Proc Spie Microlithography 1999: Advances in Resist Technology and Processing Xvi, Pts 1 and 2 = Proc. Spie. Microlithography 1999: Advances in Resist Technology and Processing Xvi, Pts 1 and 2 = P Soc Photo-opt Ins Microlithography 1999: Advances in Resist Technology and Processing Xvi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Microlithography and Metrology in Micromachining Iii = P Soc Photo-opt Ins Microlithography and Metrology in Micromachining Iii = P. Soc. Photo-opt. Ins. Microlithography and Metrology in Micromachining Ii = P Soc Photo-opt Ins Microlithography and Metrology in Micromachining Ii = P. Soc. Photo-opt. Ins. Microlithography and Metrology in Micromachining = P Soc Photo-opt Ins Microlithography and Metrology in Micromachining = P. Soc. Photo-opt. Ins. Microlithography - Molecular Imprinting = Adv Polym Sci Microlithography - Molecular Imprinting = Adv. Polym. Sci. Microlithography World = Microlithogr World Microlithography World = Microlithogr. World Microlocal Analysis and Nonlinear Waves = Ima V Math Microlocal Analysis and Nonlinear Waves = Ima. V. Math. Microlocal Analysis and Spectral Theory = Nato Adv Sci I C-mat Microlocal Analysis and Spectral Theory = Nato. Adv. Sci. I. C-mat. Micromachined Devices and Components Iii = P Soc Photo-opt Ins Micromachined Devices and Components Iii = P. Soc. Photo-opt. Ins. Micromachined Devices and Components Ii = Proc Spie Micromachined Devices and Components Ii = Proc. Spie. Micromachined Devices and Components Ii = P Soc Photo-opt Ins Micromachined Devices and Components Ii = P. Soc. Photo-opt. Ins. Micromachined Devices and Components Iv = Proc Spie Micromachined Devices and Components Iv = Proc. Spie. Micromachined Devices and Components Iv = P Soc Photo-opt Ins Micromachined Devices and Components Iv = P. Soc. Photo-opt. Ins. Micromachined Devices and Components = P Soc Photo-opt Ins Micromachined Devices and Components = P. Soc. Photo-opt. Ins. Micromachined Devices and Components Vi = Proc Spie Micromachined Devices and Components Vi = Proc. Spie. Micromachined Devices and Components Vi = P Soc Photo-opt Ins Micromachined Devices and Components Vi = P. Soc. Photo-opt. Ins. Micromachined Devices and Components V = Proc Spie Micromachined Devices and Components V = Proc. Spie. Micromachined Devices and Components V = P Soc Photo-opt Ins Micromachined Devices and Components V = P. Soc. Photo-opt. Ins. Micromachine Technology for Diffractive and Holographic Optics = Proc Spie Micromachine Technology for Diffractive and Holographic Optics = Proc. Spie. Micromachine Technology for Diffractive and Holographic Optics = P Soc Photo-opt Ins Micromachine Technology for Diffractive and Holographic Optics = P. Soc. Photo-opt. Ins. Micromaching Technology for Micro-optics and Nano-optics Iv = P Soc Photo-opt Ins Micromaching Technology for Micro-optics and Nano-optics Iv = P. Soc. Photo-opt. Ins. Micromachining and Imaging = P Soc Photo-opt Ins Micromachining and Imaging = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology and Devices = Proc Spie Micromachining and Microfabrication Process Technology and Devices = Proc. Spie. Micromachining and Microfabrication Process Technology and Devices = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology and Devices = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Iii = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Iii = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Ii = Proc Spie Micromachining and Microfabrication Process Technology Ii = Proc. Spie. Micromachining and Microfabrication Process Technology Ii = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Ii = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Iv = Proc Spie Micromachining and Microfabrication Process Technology Iv = Proc. Spie. Micromachining and Microfabrication Process Technology Iv = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Iv = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Ix = Proc Spie Micromachining and Microfabrication Process Technology Ix = Proc. Spie. Micromachining and Microfabrication Process Technology Ix = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Ix = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology = Proc Spie Micromachining and Microfabrication Process Technology = Proc. Spie. Micromachining and Microfabrication Process Technology = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Viii = Proc Spie Micromachining and Microfabrication Process Technology Viii = Proc. Spie. Micromachining and Microfabrication Process Technology Viii = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Viii = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Vii = Proc Spie Micromachining and Microfabrication Process Technology Vii = Proc. Spie. Micromachining and Microfabrication Process Technology Vii = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Vii = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Vi = Proc Spie Micromachining and Microfabrication Process Technology Vi = Proc. Spie. Micromachining and Microfabrication Process Technology Vi = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Vi = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology V = Proc Spie Micromachining and Microfabrication Process Technology V = Proc. Spie. Micromachining and Microfabrication Process Technology V = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology V = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Xiii = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Xiii = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Xi = Proc Spie Micromachining and Microfabrication Process Technology Xi = Proc. Spie. Micromachining and Microfabrication Process Technology Xi = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Xi = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Xiv = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology Xiv = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology X = Proc Spie Micromachining and Microfabrication Process Technology X = Proc. Spie. Micromachining and Microfabrication Process Technology X = P Soc Photo-opt Ins Micromachining and Microfabrication Process Technology X = P. Soc. Photo-opt. Ins. Micromachining and Microfabrication Process Technology Xv = Proc Spie Micromachining and Microfabrication Process Technology Xv = Proc. Spie. Micromachining and Microfabrication = Proc Spie Micromachining and Microfabrication = Proc. Spie. Micromachining and Microfabrication = P Soc Photo-opt Ins Micromachining and Microfabrication = P. Soc. Photo-opt. Ins. Micromachining Technology for Micro-optics and Nano-optics Iii = Proc Spie Micromachining Technology for Micro-optics and Nano-optics Iii = Proc. Spie. Micromachining Technology for Micro-optics and Nano-optics Iii = P Soc Photo-opt Ins Micromachining Technology for Micro-optics and Nano-optics Iii = P. Soc. Photo-opt. Ins. Micromachining Technology for Micro-optics and Nano-optics Ii = P Soc Photo-opt Ins Micromachining Technology for Micro-optics and Nano-optics Ii = P. Soc. Photo-opt. Ins. Micromachining Technology for Micro-optics and Nano-optics = Proc Spie Micromachining Technology for Micro-optics and Nano-optics = Proc. Spie. Micromachining Technology for Micro-optics and Nano-optics = P Soc Photo-opt Ins Micromachining Technology for Micro-optics and Nano-optics = P. Soc. Photo-opt. Ins. Micromachining Technology for Micro-optics and Nano-optics V and Microfabrication Process Technology Xii = P Soc Photo-opt Ins Micromachining Technology for Micro-optics and Nano-optics V and Microfabrication Process Technology Xii = P. Soc. Photo-opt. Ins. Micromachining Technology for Micro-optics = Proc Spie Micromachining Technology for Micro-optics = Proc. Spie. Micromachining Technology for Micro-optics = P Soc Photo-opt Ins Micromachining Technology for Micro-optics = P. Soc. Photo-opt. Ins. Micromechanics of Contact and Interphase Layers = Lect Notes Appl Comp Micromechanics of Contact and Interphase Layers = Lect. Notes. Appl. Comp. Micromechanisms of Fracture and Fatigue: in A Multiscale Context = Eng Mater Process Micromechanisms of Fracture and Fatigue: in A Multiscale Context = Eng. Mater. Process. Micromechatronics: Modeling, Analysis, and Design With Matlab, Second Edition = Nano Microsci Eng Te Micromechatronics: Modeling, Analysis, and Design With Matlab, Second Edition = Nano. Microsci. Eng. Te. Micro (mems) and Nanotechnologies for Defense and Security = Proc Spie Micro (mems) and Nanotechnologies for Defense and Security = Proc. Spie. Micro (mems) and Nanotechnologies for Defense and Security = P Soc Photo-opt Ins Micro (mems) and Nanotechnologies for Defense and Security = P. Soc. Photo-opt. Ins. Micro (mems) and Nanotechnologies for Space Applications = P Soc Photo-opt Ins Micro (mems) and Nanotechnologies for Space Applications = P. Soc. Photo-opt. Ins. Micro (mems) and Nanotechnologies for Space, Defense, and Security Ii = Proc Spie Micro (mems) and Nanotechnologies for Space, Defense, and Security Ii = Proc. Spie. Micro (mems) and Nanotechnologies for Space, Defense, and Security Ii = P Soc Photo-opt Ins Micro (mems) and Nanotechnologies for Space, Defense, and Security Ii = P. Soc. Photo-opt. Ins. Micro = Micro Micromolluscs: Methodological Challenges - Exciting Results = Zoosymposia Micromolluscs: Methodological Challenges - Exciting Results = Zoosymposia. Micron and Microscopica Acta = Micron Microsc Acta Micron and Microscopica Acta = Micron Microsc. Acta Micro Nano Devices, Structure and Computing Systems = Adv Mater Res-switz Micro Nano Devices, Structure and Computing Systems = Adv. Mater. Res-switz. Micro & Nano Letters = Micro Nano Lett Micro & Nano Letters = Micro Nano Lett. Micro/nanotribology and Its Applications = Nato Adv Sci I E-app Micro/nanotribology and Its Applications = Nato. Adv. Sci. I. E-app. Micronesica : A Journal of The University of Guam = Micronesica-series Micronesica : A Journal of The University of Guam = Micronesica-series. Micronesica = Micronesica Micronesica, Supplement No 3, June 1991 = Micronesica-series Micronesica, Supplement No 3, June 1991 = Micronesica-series. Micron=Micron;; Micron = Micron Micron (Oxford, England : 1993) = Micron Micronutrient Deficiencies During The Weaning Period and The First Years of Life = Nestle Nutr Works Se Micronutrient Deficiencies During The Weaning Period and The First Years of Life = Nestle. Nutr. Works. Se. Micro-optical Technologies for Measurement, Sensors, and Microsystems Ii and Optical Fiber Sensor Technologies and Applications = P Soc Photo-opt Ins Micro-optical Technologies for Measurement, Sensors, and Microsystems Ii and Optical Fiber Sensor Technologies and Applications = P. Soc. Photo-opt. Ins. Micro-optical Technologies for Measurement, Sensors, and Microsystems = P Soc Photo-opt Ins Micro-optical Technologies for Measurement, Sensors, and Microsystems = P. Soc. Photo-opt. Ins. Micro-optics 2008 = Proc Spie Micro-optics 2008 = Proc. Spie. Micro-optics 2010 = P Soc Photo-opt Ins Micro-optics 2010 = P. Soc. Photo-opt. Ins. Micro-optics: Fabrication, Packaging, and Integration = P Soc Photo-opt Ins Micro-optics: Fabrication, Packaging, and Integration = P. Soc. Photo-opt. Ins. Micro-optics Ii = P Soc Photo-opt Ins Micro-optics Ii = P. Soc. Photo-opt. Ins. Micro-optics Integration and Assemblies = P Soc Photo-opt Ins Micro-optics Integration and Assemblies = P. Soc. Photo-opt. Ins. Micro-optics/micromechanics and Laser Scanning and Shaping = P Soc Photo-opt Ins Micro-optics/micromechanics and Laser Scanning and Shaping = P. Soc. Photo-opt. Ins. Micro-optics, Vcsels, and Photonic Interconnects Ii: Fabrication, Packaging, and Integration = Proc Spie Micro-optics, Vcsels, and Photonic Interconnects Ii: Fabrication, Packaging, and Integration = Proc. Spie. Micro-optics, Vcsels, and Photonic Interconnects Ii: Fabrication, Packaging, and Integration = P Soc Photo-opt Ins Micro-optics, Vcsels, and Photonic Interconnects Ii: Fabrication, Packaging, and Integration = P. Soc. Photo-opt. Ins. Micro-optics, Vcsels, and Photonic Interconnects = Proc Spie Micro-optics, Vcsels, and Photonic Interconnects = Proc. Spie. Micro-optics, Vcsels, and Photonic Interconnects = P Soc Photo-opt Ins Micro-optics, Vcsels, and Photonic Interconnects = P. Soc. Photo-opt. Ins. Micro-opto-electro-mechanical Systems = Proc Spie Micro-opto-electro-mechanical Systems = Proc. Spie. Micro-opto-electro-mechanical Systems = P Soc Photo-opt Ins Micro-opto-electro-mechanical Systems = P. Soc. Photo-opt. Ins. Micropalaeontological Society Special Publications = Micropal Soc Spec Pu Micropalaeontological Society Special Publications = Micropal. Soc. Spec. Pu. Micropalaeontology, Sedimentary Environments and Stratigraphy: A Tribute to Dennis Curry (1921-2001) = Micropaleaeontologic Micropalaeontology, Sedimentary Environments and Stratigraphy: A Tribute to Dennis Curry (1921-2001) = Micropaleaeontologic. Micropaleaeontological Society Special Publications = Micropaleaeontologic Micropaleaeontological Society Special Publications = Micropaleaeontologic. Micropaleontology = Micropaleontology Microphone Array Signal Processing = Springer Top Sign Pr Microphone Array Signal Processing = Springer. Top. Sign. Pr. Microporous and Macroporous Materials = Mat Res S C Microporous and Macroporous Materials = Mat. Res. S. C. Microporous and Mesoporous Materials = Micropor Mesopor Mat Microporous and Mesoporous Materials = Micropor. Mesopor. Mat. Microporous and Mesoporous Materials = Microporous Mesoporous Mater. Microporous Framework Solids = Rsc Mater Monogr Microporous Framework Solids = Rsc. Mater. Monogr. Microporous Materials = Microporous Mater Microporous Materials = Microporous Mater. Micropremie : The Next Frontier = Ross C Ped Micropremie : The Next Frontier = Ross. C. Ped. Microprocessing and Microprogramming = Microproc Microprog Microprocessing and Microprogramming = Microproc. Microprog. Microprocessors and Microsystems = Microprocess Microsy Microprocessors and Microsystems = Microprocess. Microsy. Microprocessors and Microsystems = Microprocess. Microsyst. Microprocessors = Microprocessors Micro-raman Spectroscopy and Luminescence Studies in The Earth and Planetary Sciences = Aip Conf Proc Micro-raman Spectroscopy and Luminescence Studies in The Earth and Planetary Sciences = Aip. Conf. Proc. Microreactor Technology and Process Intensification = Acs Sym Ser Microreactor Technology and Process Intensification = Acs. Sym. Ser. Microresonators As Building Blocks for Vlsi Photonics = Aip Conf Proc Microresonators As Building Blocks for Vlsi Photonics = Aip. Conf. Proc. Microrna and Cancer: Methods and Protocols = Methods Mol Biol Microrna and Cancer: Methods and Protocols = Methods Mol. Biol. Microrna Methods = Method Enzymol Microrna Methods = Method. Enzymol. Micrornas and The Immune System: Methods and Protocols = Methods Mol Biol Micrornas and The Immune System: Methods and Protocols = Methods Mol. Biol. Micrornas in Breast Cancer = Cancer Etiol Diagn T Micrornas in Breast Cancer = Cancer Etiol. Diagn. T. Micrornas in Development: Methods and Protocols = Methods Mol Biol Micrornas in Development: Methods and Protocols = Methods Mol. Biol. Microrobotics and Microassembly Iii = Proc Spie Microrobotics and Microassembly Iii = Proc. Spie. Microrobotics and Microassembly Iii = P Soc Photo-opt Ins Microrobotics and Microassembly Iii = P. Soc. Photo-opt. Ins. Microrobotics and Microassembly Ii = P Soc Photo-opt Ins Microrobotics and Microassembly Ii = P. Soc. Photo-opt. Ins. Microrobotics and Microassembly = P Soc Photo-opt Ins Microrobotics and Microassembly = P. Soc. Photo-opt. Ins. Microrobotics and Micromanipulation = P Soc Photo-opt Ins Microrobotics and Micromanipulation = P. Soc. Photo-opt. Ins. Microrobotics and Micromechanical Systems = P Soc Photo-opt Ins Microrobotics and Micromechanical Systems = P. Soc. Photo-opt. Ins. Microrobotics and Microsystem Fabrication = P Soc Photo-opt Ins Microrobotics and Microsystem Fabrication = P. Soc. Photo-opt. Ins. Microsatellites As Research Tools = Cospar Coll Microsatellites As Research Tools = Cospar. Coll. Microscale and Nanoscale Heat Transfer = Top Appl Phys Microscale and Nanoscale Heat Transfer = Top. Appl. Phys. Microscale Heat Transfer: Fundamentals and Applications = Nato Sci Ser Ii-math Microscale Heat Transfer: Fundamentals and Applications = Nato. Sci. Ser. Ii-math. Microscale Heat Transfer: Fundamentals and Applications = Nato Sci Ser Ii Math Microscale Heat Transfer: Fundamentals and Applications = Nato. Sci. Ser. Ii. Math. Microscale Thermophysical Engineering = Microscale Therm Eng Microscale Thermophysical Engineering = Microscale Therm. Eng. Microscale Thermophysical Engineering = Microscale Thermophys. Eng. Microscope (Carshalton Beeches (Surrey)) = Microscope Microscope = Microscope Microscopia Electronica Y Biologia Celular = Microsc Electron Bio Microscopia Electronica Y Biologia Celular = Microsc. Electron. Bio. Microscopia Electronica y Biologia Celular = Microsc. Electron. Biol. Celular Microscopia electronica y biologia celular : organo oficial de las Sociedades Latinoamericana de Microscopia Electronica e Iberoamericana de Biologia Celular = Microsc Electron Biol Celular Microscopica acta = Microsc Acta Microscopica Acta = Microsc Acta Microscopica Acta = Microsc. Acta Microscopica acta. Supplement = Microsc Acta Suppl Microscopica Acta. Supplement = Microsc. Acta. Suppl. Microscopic Aspects of Nonlinearity in Condensed Matter = Nato Adv Sci I B-phy Microscopic Aspects of Nonlinearity in Condensed Matter = Nato. Adv. Sci. I. B-phy. Microscopic Processes in Space Plasmas and Their Role in Macroscale Phenomena = Adv Space Res Microscopic Processes in Space Plasmas and Their Role in Macroscale Phenomena = Adv. Space Res. Microscopic Properties and Processes in Minerals = Nato Adv Sci I C-mat Microscopic Properties and Processes in Minerals = Nato. Adv. Sci. I. C-mat. Microscopic Simulation of Interfacial Phenomena in Solids and Liquids = Mater Res Soc Symp P Microscopic Simulation of Interfacial Phenomena in Solids and Liquids = Mater. Res. Soc. Symp. P. Microscopic Simulations of Complex Flows = Nato Adv Sci I B-phy Microscopic Simulations of Complex Flows = Nato. Adv. Sci. I. B-phy. Microscopic Simulations of Complex Hydrodynamic Phenomena = Nato Adv Sci I B-phy Microscopic Simulations of Complex Hydrodynamic Phenomena = Nato. Adv. Sci. I. B-phy. Microscopy and Image Analysis of Building Materials = Vtt Symp Microscopy and Image Analysis of Building Materials = Vtt. Symp. Microscopy and Microanalysis = Microsc Microanal Microscopy and Microanalysis = Microsc. Microanal. Microscopy and microanalysis : the official journal of Microscopy Society of America, Microbeam Analysis Society, Microscopical Society of Canada = Microsc Microanal Microscopy in Materials Science Series = Micro Mat Sci S Microscopy in Materials Science Series = Micro. Mat. Sci. S. Microscopy Microanalysis Microstructures = Microsc Microanal M Microscopy Microanalysis Microstructures = Microsc. Microanal. M. Microscopy of Semiconducting Materials 1989 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1989 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 1991 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1991 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 1993 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1993 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 1995 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1995 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 1997 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1997 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 1999, Proceedings = Inst Phys Conf Ser Microscopy of Semiconducting Materials 1999, Proceedings = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 2001 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 2001 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 2003 = Inst Phys Conf Ser Microscopy of Semiconducting Materials 2003 = Inst. Phys. Conf. Ser. Microscopy of Semiconducting Materials 2007 = Springer Proc Phys Microscopy of Semiconducting Materials 2007 = Springer. Proc. Phys. Microscopy of Semiconducting Materials = Springer Proc Phys Microscopy of Semiconducting Materials = Springer. Proc. Phys. Microscopy research and technique = Microsc Res Tech Microscopy Research and Technique=Microsc Res Tech;; Microscopy Research and Technique = Microsc. Res. Tech. Microscopy Research and Technique = Microsc Res Techniq Microscopy Research and Technique = Microsc. Res. Techniq. Microscopy Techniques = Adv Biochem Eng Biot Microscopy Techniques = Adv. Biochem. Eng. Biot. Microscopy : the journal of the Quekett Microscopical Club = Microscopy Microsimulation and Public Policy = Contrib To Econ Anal Microsimulation and Public Policy = Contrib. To. Econ. Anal. Micro-simulation in Action = Res Labor Econ Micro-simulation in Action = Res. Labor. Econ. Microsimulation in Government Policy and Forecasting = Contrib To Econ Anal Microsimulation in Government Policy and Forecasting = Contrib. To. Econ. Anal. Microstructural Border Between The Motor and The Cognitive Domain in The Human Cerebral Cortex = Adv Anat Embryol Cel Microstructural Border Between The Motor and The Cognitive Domain in The Human Cerebral Cortex = Adv. Anat. Embryol. Cel. Microstructurally Short Cracks in Polycrystals Described By Crystal Plasticity = Mater Sci Technol Microstructurally Short Cracks in Polycrystals Described By Crystal Plasticity = Mater. Sci. Technol. Microstructural Processes in Irradiated Materials = Mater Res Soc Symp P Microstructural Processes in Irradiated Materials = Mater. Res. Soc. Symp. P. Microstructural Science = Microstr Sc Microstructural Science = Microstr. Sc. Microstructural Stability of Creep Resistant Alloys for High Temperature Plant Applications = Micro High Temp Mat Microstructural Stability of Creep Resistant Alloys for High Temperature Plant Applications = Micro. High Temp. Mat. Microstructure Evolution During Irradiation = Mater Res Soc Symp P Microstructure Evolution During Irradiation = Mater. Res. Soc. Symp. P. Microstructure of Cement-based Systems/bonding and Interfaces in Cementitious Materials = Mater Res Soc Symp P Microstructure of Cement-based Systems/bonding and Interfaces in Cementitious Materials = Mater. Res. Soc. Symp. P. Microstructure of Fine-grained Sediments = Front Sed Microstructure of Fine-grained Sediments = Front. Sed. Microstructure of Foreign Exchange Markets = Nber Conf R Microstructure of Foreign Exchange Markets = Nber. Conf. R. Microstructure of High Temperature Materials = Micro High Temp Mat Microstructure of High Temperature Materials = Micro. High Temp. Mat. Microstructure of Irradiated Materials = Mater Res Soc Symp P Microstructure of Irradiated Materials = Mater. Res. Soc. Symp. P. Microstructure Related Durability of Cementitious Composites, Vols 1 and 2 = Rilem Proc Microstructure Related Durability of Cementitious Composites, Vols 1 and 2 = Rilem. Proc. Microstructuring of Glasses = Springer Ser Mater S Microstructuring of Glasses = Springer. Ser. Mater. S. Microsurgery = Microsurg Microsurgery = Microsurg. Microsurgery=Microsurgery;; Microsurgery = Microsurgery Microsurveys in Discrete Probability = Dimacs Ser Discret M Microsurveys in Discrete Probability = Dimacs. Ser. Discret. M. Microsystems Dynamics = Intel Syst Contr Aut Microsystems Dynamics = Intel. Syst. Contr. Aut. Microsystems Engineering: Metrology and Inspection Iii = P Soc Photo-opt Ins Microsystems Engineering: Metrology and Inspection Iii = P. Soc. Photo-opt. Ins. Microsystems Engineering: Metrology and Inspection = Proc Spie Microsystems Engineering: Metrology and Inspection = Proc. Spie. Microsystems Engineering: Metrology and Inspection = P Soc Photo-opt Ins Microsystems Engineering: Metrology and Inspection = P. Soc. Photo-opt. Ins. Microsystems Mechanical Design = Cism Cour L Microsystems Mechanical Design = Cism. Cour. L. Microsystems Metrology and Inspection = Proc Spie Microsystems Metrology and Inspection = Proc. Spie. Microsystems Metrology and Inspection = P Soc Photo-opt Ins Microsystems Metrology and Inspection = P. Soc. Photo-opt. Ins. Microsystems (series) = Microsystems Microsystems Series = Microsyst Ser Microsystems Series = Microsyst. Ser. Microsystem Technologies-micro-and Nanosystems-information Storage and Processing Systems = Microsyst Technol Microsystem Technologies-micro-and Nanosystems-information Storage and Processing Systems = Microsyst. Technol. Microsystem Technologies = Microsyst Technol Microsystem Technologies = Microsyst. Technol. Microsystem Technology for Chemical and Biological Microreactors = Dech Monog Microsystem Technology for Chemical and Biological Microreactors = Dech. Monog. Microsystem Technology in Chemistry and Life Science = Top Curr Chem Microsystem Technology in Chemistry and Life Science = Top. Curr. Chem. Microtechnology and Mems = Microtechnol Mems Microtechnology and Mems = Microtechnol. Mems Microtecnic = Microtecnic Micro Total Analysis Systems 2000, Proceedings = Mesa Mg Micro Total Analysis Systems 2000, Proceedings = Mesa. Mg. Micro Total Analysis Systems 2004, Vol 1 = Roy Soc Ch Micro Total Analysis Systems 2004, Vol 1 = Roy. Soc. Ch. Micro Total Analysis Systems 2004, Vol 2 = Roy Soc Ch Micro Total Analysis Systems 2004, Vol 2 = Roy. Soc. Ch. Micro Total Analysis Systems '98 = Mesa Mg Micro Total Analysis Systems '98 = Mesa. Mg. Micro Total Analysis Systems = Mesa Mg Micro Total Analysis Systems = Mesa. Mg. Microtube Dynamics: Methods and Protocols = Methods Mol Biol Microtube Dynamics: Methods and Protocols = Methods Mol. Biol. Microvariation in Syntactic Doubling = Syntax Semantics Microvariation in Syntactic Doubling = Syntax. Semantics. Microvascular research = Microvasc Res Microvascular Research=Microvasc Res;; Microvascular Research = Microvasc Res Microvascular Research = Microvasc. Res. Microwave and Optical Technology 2003 = Proc Spie Microwave and Optical Technology 2003 = Proc. Spie. Microwave and Optical Technology 2003 = P Soc Photo-opt Ins Microwave and Optical Technology 2003 = P. Soc. Photo-opt. Ins. Microwave and Optical Technology Letters = Microwave Opt. Technol. Lett. Microwave and Optical Technology Letters = Microw Opt Techn Let Microwave and Optical Technology Letters = Microw. Opt. Techn. Let. Microwave and Radio Frequency Applications = Ceram Trans Microwave and Radio Frequency Applications = Ceram. Trans. Microwave and Terahertz Photonics = Proc Spie Microwave and Terahertz Photonics = Proc. Spie. Microwave and Terahertz Photonics = P Soc Photo-opt Ins Microwave and Terahertz Photonics = P. Soc. Photo-opt. Ins. Microwave Discharges = Nato Adv Sci Inst Se Microwave Discharges = Nato. Adv. Sci. Inst. Se. Microwave Foregrounds = Astr Soc P Microwave Foregrounds = Astr. Soc. P. Microwave Induced Plasma Analytical Spectrometry = Rsc Anal Spectrosc M Microwave Induced Plasma Analytical Spectrometry = Rsc. Anal. Spectrosc. M. Microwave Instrumentation and Satellite Photogrammetry for Remote Sensing of The Earth = P Soc Photo-opt Ins Microwave Instrumentation and Satellite Photogrammetry for Remote Sensing of The Earth = P. Soc. Photo-opt. Ins. Microwave Instrumentation for Remote Sensing of The Earth = P Soc Photo-opt Ins Microwave Instrumentation for Remote Sensing of The Earth = P. Soc. Photo-opt. Ins. Microwave Journal = Microwave J Microwave Journal = Microwave J. Microwave Materials for Wireless Applications = Artech Hse Microw Li Microwave Materials for Wireless Applications = Artech. Hse. Microw. Li. Microwave Methods in Organic Synthesis = Top Curr Chem Microwave Methods in Organic Synthesis = Top. Curr. Chem. Microwave Network Design Using The Scattering Matrix = Artech Hse Microw Li Microwave Network Design Using The Scattering Matrix = Artech. Hse. Microw. Li. Microwave Physics and Techniques = Nato Asi 3 High Tech Microwave Physics and Techniques = Nato. Asi. 3. High. Tech. Microwave Processing of Materials Iii = Mater Res Soc Symp P Microwave Processing of Materials Iii = Mater. Res. Soc. Symp. P. Microwave Processing of Materials Ii = Mater Res Soc Symp P Microwave Processing of Materials Ii = Mater. Res. Soc. Symp. P. Microwave Processing of Materials Iv = Mater Res Soc Symp P Microwave Processing of Materials Iv = Mater. Res. Soc. Symp. P. Microwave Processing of Materials V = Mater Res Soc Symp P Microwave Processing of Materials V = Mater. Res. Soc. Symp. P. Microwave Radio Transmission Design Guide, Second Edition = Artech Hse Microw Li Microwave Radio Transmission Design Guide, Second Edition = Artech. Hse. Microw. Li. Microwave Remote Sensing of The Atmosphere and Environment Iii = Proc Spie Microwave Remote Sensing of The Atmosphere and Environment Iii = Proc. Spie. Microwave Remote Sensing of The Atmosphere and Environment Iii = P Soc Photo-opt Ins Microwave Remote Sensing of The Atmosphere and Environment Iii = P. Soc. Photo-opt. Ins. Microwave Remote Sensing of The Atmosphere and Environment Ii = Proc Spie Microwave Remote Sensing of The Atmosphere and Environment Ii = Proc. Spie. Microwave Remote Sensing of The Atmosphere and Environment Ii = P Soc Photo-opt Ins Microwave Remote Sensing of The Atmosphere and Environment Ii = P. Soc. Photo-opt. Ins. Microwave Remote Sensing of The Atmosphere and Environment Iv = Proc Spie Microwave Remote Sensing of The Atmosphere and Environment Iv = Proc. Spie. Microwave Remote Sensing of The Atmosphere and Environment Iv = P Soc Photo-opt Ins Microwave Remote Sensing of The Atmosphere and Environment Iv = P. Soc. Photo-opt. Ins. Microwave Remote Sensing of The Atmosphere and Environment = P Soc Photo-opt Ins Microwave Remote Sensing of The Atmosphere and Environment = P. Soc. Photo-opt. Ins. Microwave Remote Sensing of The Atmosphere and Environment V = Proc Spie Microwave Remote Sensing of The Atmosphere and Environment V = Proc. Spie. Microwave Remote Sensing of The Atmosphere and Environment V = P Soc Photo-opt Ins Microwave Remote Sensing of The Atmosphere and Environment V = P. Soc. Photo-opt. Ins. Microwave Remote Sensing of The Earth System = Stud Geo Op Microwave Remote Sensing of The Earth System = Stud. Geo. Op. Microwave Scattering and Emission Models for Users = Artech Hse Remote Se Microwave Scattering and Emission Models for Users = Artech. Hse. Remote. Se. Microwave Sensing and Synthetic Aperture Radar = P Soc Photo-opt Ins Microwave Sensing and Synthetic Aperture Radar = P. Soc. Photo-opt. Ins. Microwaves = Microwaves Microwaves & Rf = Microwaves Rf Microwave Superconductivity = Nato Adv Sci I E-app Microwave Superconductivity = Nato. Adv. Sci. I. E-app. Mid-America; an historical review = Mid Am Mid-america-an Historical Review = Mid-am-hist Rev Mid-america-an Historical Review = Mid-am-hist. Rev. Mid-american Review of Sociology = Mid-am Rev Sociol Mid-american Review of Sociology = Mid-am. Rev. Sociol. Mid-American review of sociology = Mid Am Rev Sociol Midbrain Periaqueductal Gray Matter = Nato Adv Sci I A-lif Midbrain Periaqueductal Gray Matter = Nato. Adv. Sci. I. A-lif. Midcontinental journal of archaeology, MCJA = MidCont J Archaeol Middle Ages Series = Middle Ages Ser Middle Ages Series = Middle Ages Ser. Middle and Upper Atmosphere Results = Adv Space Res-series Middle and Upper Atmosphere Results = Adv. Space. Res-series. Middle and Upper Atmospheres, Active Experiments, and Dusty Plasmas = Adv Space Res-series Middle and Upper Atmospheres, Active Experiments, and Dusty Plasmas = Adv. Space. Res-series. Middle and Upper Atmospheres: Small Scale Structures and Remote Sensing = Adv Space Res Middle and Upper Atmospheres: Small Scale Structures and Remote Sensing = Adv. Space. Res. Middle and Upper Atmospheres: Small Scale Structures and Remote Sensing = Adv Space Res-series Middle and Upper Atmospheres: Small Scale Structures and Remote Sensing = Adv. Space. Res-series. Middle Atmosphere and Lower Thermosphere Electrodynamics = Adv Space Res Middle Atmosphere and Lower Thermosphere Electrodynamics = Adv. Space. Res. Middle Atmosphere: Changes and Electrodynamics = Adv Space Res Middle Atmosphere: Changes and Electrodynamics = Adv. Space. Res. Middle Atmosphere Structure and Dynamics = Adv Space Res Middle Atmosphere Structure and Dynamics = Adv. Space. Res. Middle Atmosphere Temporal and Spatial Structures = Adv Space Res Middle Atmosphere Temporal and Spatial Structures = Adv. Space. Res. Middle East Business and Economic Review=Middle East Bus. Econ. Rev. Middle East Dentistry and Oral Health = Middle East Dent. Oral Health Middle East dentistry & oral health = Middle East Dent Oral Health Middle East Economic Papers=Middle East Econ. Pap. Middle Eastern Literatures = Middle East Lit Middle Eastern Literatures = Middle East. Lit. Middle Eastern Military Studies = Middle E Mil Stud Middle Eastern Military Studies = Middle E. Mil. Stud. Middle Eastern Monographs-oxford University Press = Middle Eastern Monog Middle Eastern Monographs-oxford University Press = Middle Eastern Monog. Middle Eastern Studies = Middle Eastern Stud Middle Eastern Studies = Middle Eastern Stud. Middle Eastern studies = Middle East Stud Middle East health = Middle East Health Middle East Health = Middle East Health Middle East in Focus = Middle E Focus Middle East in Focus = Middle E. Focus Middle East in Turmoil = Middle E Turmoil Middle East in Turmoil = Middle E. Turmoil Middle East Journal=Middle East J. Middle East Journal = Middle East J Middle East Journal = Middle East J. Middle East journal of anaesthesiology = Middle East J Anaesthesiol Middle East Journal of Anaesthesiology = Middle East J. Anaesthesiol. Middle East journal of anesthesiology = Middle East J Anesthesiol Middle East Journal of Anesthesiology=Middle East J Anesthesiol;; Middle East Journal of Anesthesiology = Middle East J. Anesthesiol. Middle East Policy = Middle East Policy Middle East report (New York, N.Y.) = Middle East Rep Middle East Review = Middle East Rev Middle East Review = Middle East Rev. Middle East Studies History Politics and Law = Middle E Stud Hist P Middle East Studies History Politics and Law = Middle E. Stud. Hist. P. Middle East Technical University Studies in Development=METU Stud. Devel. Middle Grades Research Journal Top Studies = Middle Grades Res J Middle Grades Research Journal Top Studies = Middle Grades Res. J. Middle Miocene Environments and Ecosystem Dynamics of The Eurasian Neogene (eeden) = Cour For Sekenbg Middle Miocene Environments and Ecosystem Dynamics of The Eurasian Neogene (eeden) = Cour. For. Sekenbg. Middleware 2000 = Lect Notes Comput Sc Middleware 2000 = Lect. Notes. Comput. Sc. Middleware 2003, Proceedings = Lect Notes Comput Sc Middleware 2003, Proceedings = Lect. Notes. Comput. Sc. Middleware 2004, Proceedings = Lect Notes Comput Sc Middleware 2004, Proceedings = Lect. Notes. Comput. Sc. Middleware 2005, Proceedings = Lect Notes Comput Sc Middleware 2005, Proceedings = Lect. Notes. Comput. Sc. Middleware 2006, Proceedings = Lect Notes Comput Sc Middleware 2006, Proceedings = Lect. Notes. Comput. Sc. Middleware 2007, Proceedings = Lect Notes Comput Sc Middleware 2007, Proceedings = Lect. Notes. Comput. Sc. Middleware 2008, Proceedings = Lect Notes Comput Sc Middleware 2008, Proceedings = Lect. Notes. Comput. Sc. Middleware 2009, Proceedings = Lect Notes Comput Sc Middleware 2009, Proceedings = Lect. Notes. Comput. Sc. Middleware 2010 = Lect Notes Comput Sc Middleware 2010 = Lect. Notes. Comput. Sc. Mid-infrared Coherent Sources and Applications = Nato Science Peace S Mid-infrared Coherent Sources and Applications = Nato. Science. Peace. S. Mid-infrared Coherent Sources and Applications = Nato Sci Peace Sec B Mid-infrared Coherent Sources and Applications = Nato. Sci. Peace. Sec. B. Midland history = Midl Hist Midlatitude Ionospheric Dynamics and Disturbances = Geophys Monogr Ser Midlatitude Ionospheric Dynamics and Disturbances = Geophys. Monogr. Ser. Midlife Health - Current Concepts and Challenges for The Future = Int Congr Ser Midlife Health - Current Concepts and Challenges for The Future = Int. Congr. Ser. Mid-ocean Ridges: Hydrothermal Interactions Between The Lithosphere and Oceans = Geoph Monog Series Mid-ocean Ridges: Hydrothermal Interactions Between The Lithosphere and Oceans = Geoph. Monog. Series. Mid-ocean Ridges: Hydrothermal Interactions Between The Lithosphere and Oceans = Geophys Monogr Ser Mid-ocean Ridges: Hydrothermal Interactions Between The Lithosphere and Oceans = Geophys. Monogr. Ser. Midrash and Multiplicity = Stud Judaica Midrash and Multiplicity = Stud. Judaica. Midstream; a monthly Jewish review = Midstream (N Y) Mid-victorian Imperialists = Brit Polit Soc Mid-victorian Imperialists = Brit. Polit. Soc. Midway = Midway Midwest Alliance in Nursing journal / MAIN = Midwest Alliance Nurs J Midwest Alliance in Nursing Journal = Midwest Alliance Nurs. J. Midwestern dentist = Midwest Dent Midwestern Dentist = Midwest. Dent. Midwestern History and Culture = Midwes Hist Cult Midwestern History and Culture = Midwes. Hist. Cult. Midwestern Journal of Philosophy = Midwest J Philos Midwestern Journal of Philosophy = Midwest. J. Philos. Midwest Journal of Political Science = Midwest J Polit Sci Midwest Journal of Political Science = Midwest J. Polit. Sci. Midwest medical ethics : a publication of the Midwest Bioethics Center = Midwest Med Ethics Midwest Quarterly-a Journal of Contemporary Thought = Midwest Quart Midwest Quarterly-a Journal of Contemporary Thought = Midwest Quart. Midwest Studies in Philosophy = Midwest Stud Philos Midwest Studies in Philosophy = Midwest Stud. Philos. Midwest Studies in Philosophy: The American Philosophers, Vol. 28 = Midwest Stud Philos Midwest Studies in Philosophy: The American Philosophers, Vol. 28 = Midwest Stud. Philos. Midwest Studies in Philosophy Volume Xxx: Shared Intentions and Collective Responsibility = Midwest Stud Philos Midwest Studies in Philosophy Volume Xxx: Shared Intentions and Collective Responsibility = Midwest Stud. Philos. Midwest Symposium On Circuits and Systems Conference Proceedings = Midwest Symp Circuit Midwest Symposium On Circuits and Systems Conference Proceedings = Midwest Symp. Circuit. Midwife and health visitor = Midwife Health Visit Midwife and Health Visitor = Midwife Health Visit. Midwife, Health Visitor and Community Nurse = Midwife. Health Visit. Community Nurse Midwife, health visitor & community nurse = Midwife Health Visit Community Nurse Midwifery = Midwifery Midwifery today and childbirth education = Midwifery Today Childbirth Educ Midwifery Today and Childbirth Education = Midwifery Today Childbirth Educ. Midwifery today with international midwife = Midwifery Today Int Midwife Midwifery Today with International Midwife = Midwifery Today Int. Midwife Midwives chronicle = Midwives Chron Midwives Chronicle = Midwives Chron. Midwives = Midwives Midwives : official journal of the Royal College of Midwives = Midwives Mie medical journal = Mie Med J Mie Medical Journal = Mie Med. J. Mietsicherungs- Oder Mieterdienstbarkeit = Schr Deut Eur Int In Mietsicherungs- Oder Mieterdienstbarkeit = Schr. Deut. Eur. Int. In. Mighty Mass of Brick and Smoke: Victorian and Edwardian Representations of London = Dqr Stud Lit Mighty Mass of Brick and Smoke: Victorian and Edwardian Representations of London = Dqr. Stud. Lit. Migracije = Migracije Migracijske teme = Migr Teme Migrant Men: Critical Studies of Masculinities and The Migration Experience = Routl Res Gend Soc Migrant Men: Critical Studies of Masculinities and The Migration Experience = Routl. Res. Gend. Soc. Migrants to The Metropolis: The Rise of Immigrant Gateway Cities = Spa Plac Soc Migrants to The Metropolis: The Rise of Immigrant Gateway Cities = Spa. Plac. Soc. Migration, Accommodation and Language Change: Language At The Intersection of Regional and Ethnic Identity = Palgr Mac Stud Lang Migration, Accommodation and Language Change: Language At The Intersection of Regional and Ethnic Identity = Palgr. Mac. Stud. Lang. Migration and Activism in Europe Since 1945 = Eur Transit-nyu Eur Migration and Activism in Europe Since 1945 = Eur. Transit-nyu. Eur. Migration and Reorganization: The Pueblo Iv Period in The American Southwest = Anthr Res P Migration and Reorganization: The Pueblo Iv Period in The American Southwest = Anthr. Res. P. Migration and Social Protection: Claiming Social Rights Beyond Borders = Rethink Int Dev Migration and Social Protection: Claiming Social Rights Beyond Borders = Rethink. Int. Dev. Migration and Social Protection in China = Ser Contemp China Migration and Social Protection in China = Ser. Contemp. China Migration and The New Technological Borders of Europe = Migrat Minor Citizen Migration and The New Technological Borders of Europe = Migrat. Minor. Citizen. Migration: A Worldwide Challenge for Social Security = Stud Res Ss Migration: A Worldwide Challenge for Social Security = Stud. Res. Ss. Migration, Ethnic Relations and Chinese Business = Chin Worlds Migration, Ethnic Relations and Chinese Business = Chin. Worlds. Migration in Comparative Perspective = Routl Res Popul Migr Migration in Comparative Perspective = Routl. Res. Popul. Migr. Migration in The 21st Century: Rights, Outcomes, and Policy = Reg Cities Migration in The 21st Century: Rights, Outcomes, and Policy = Reg. Cities. Migration = Migration Migration, Minorities and Citizenship = Migra Minor Migration, Minorities and Citizenship = Migra. Minor. Migration Minorities and Citizenship = Migrat Minor Citizen Migration Minorities and Citizenship = Migrat. Minor. Citizen. Migration news = Migr News Migration of Serbs and Montenegrins From Kosovo and Metohija = Ser Asa Dem Migration of Serbs and Montenegrins From Kosovo and Metohija = Ser. Asa. Dem. Migration Policies and Political Participation: Inclusion Or Intrusion in Western Europe? = Migrat Minor Citizen Migration Policies and Political Participation: Inclusion Or Intrusion in Western Europe? = Migrat. Minor. Citizen. Migration today (Staten Island, New York, N.Y.) = Migr Today Migration world magazine = Migr World Mag Migratory Interactive Applications for Ubiquitous Environments = Hum-comput Int-sprin Migratory Interactive Applications for Ubiquitous Environments = Hum-comput. Int-sprin. Mig Welding Guide = Woodhead Publ Mater Mig Welding Guide = Woodhead. Publ. Mater. Mikhail Bakhtin: The Word in The World = Crit Twent Century Mikhail Bakhtin: The Word in The World = Crit. Twent. Century. Mikologiya I Fitopatologiya = Mikol Fitopatol Mikologiya I Fitopatologiya = Mikol. Fitopatol. Mikrobiologicheskii zhurnal = Mikrobiol Zh Mikrobiologicheskii Zhurnal = Mikrobiol. Zh. Mikrobiologiia=Mikrobiologiia;; Mikrobiologiia = Mikrobiologiia Mikrobiologiya = Mikrobiologiya Mikrobiolohichnyi zhurnal (Kiev, Ukraine : 1993) = Mikrobiol Z Mikrobiolohichnyi Zhurnal=Mikrobiol Z;; Mikrobiolohichnyi zhurnal = Mikrobiol Zh Mikrobiolohichnyi Zhurnal = Mikrobiol. Zh. Mikrobiyoloji bulteni = Mikrobiyol Bul Mikrobiyoloji Bulteni = Mikrobiyol Bul Mikrobiyoloji Bulteni = Mikrobiyol. Bul. Mikrochimica acta = Mikrochim Acta Mikrochimica Acta = Mikrochim Acta Mikrochimica Acta = Mikrochim. Acta Mikrochimica et ichnoanalytica acta = Mikrochim Ichnoanal Acta Mikrochimica et Ichnoanalytica Acta = Mikrochim. Ichnoanal. Acta Mikrochimica Et Ichnoanalytica Acta = Mikrochim Ichoanal Mikrochimica Et Ichnoanalytica Acta = Mikrochim. Ichoanal. Mikroskopie = Mikroskopie Milan Journal of Mathematics = Milan J Math Milan Journal of Mathematics = Milan J. Math. Milbank Memorial Fund Quarterly Bulletin = Milb Meml Fund Q Bu Milbank Memorial Fund Quarterly Bulletin = Milb. Meml. Fund Q. Bu. Milbank Memorial Fund Quarterly-health and Society = Milbank Fund Q Milbank Memorial Fund Quarterly-health and Society = Milbank Fund Q. Milbank Memorial Fund Quarterly. Health and Society = Milbank Mem. Fund Q. Health Soc. Milbank Memorial Fund Quarterly-health and Society = Milbank Q Milbank Memorial Fund Quarterly-health and Society = Milbank Q. Milbank Memorial Fund Quarterly = Milbank Mem. Fund Q. Milbank Memorial Fund Quarterly = Milbank Meml Fund Q Milbank Memorial Fund Quarterly = Milbank Meml. Fund Q. Milbank Quarterly=Milbank Q;; Milbank Quarterly = Milbank Q Milbank Quarterly = Milbank Q. Milchwissenschaft = Milchwissenschaft Milchwissenschaft-milk Science International = Milchwissenschaft Milchwissenschaft-milk Science International = Milchwissenschaft. Milcom 2000: 21st Century Military Communications Conference Proceedings, Vols 1 and 2 = Ieee Milit Commun C Milcom 2000: 21st Century Military Communications Conference Proceedings, Vols 1 and 2 = Ieee. Milit. Commun. C. Milcom 2003 - 2003 Ieee Military Communications Conference, Vols 1 and 2 = Ieee Milit Commun C Milcom 2003 - 2003 Ieee Military Communications Conference, Vols 1 and 2 = Ieee Milit. Commun. C. Milcom 2004 - 2004 Ieee Military Communications Conference, Vols 1- 3 = Ieee Milit Commun C Milcom 2004 - 2004 Ieee Military Communications Conference, Vols 1- 3 = Ieee Milit. Commun. C. Milcom 2005 - 2005 Ieee Military Communications Conference, Vols 1-5 = Ieee Milit Commun C Milcom 2005 - 2005 Ieee Military Communications Conference, Vols 1-5 = Ieee Milit. Commun. C. Milcom 2009 - 2009 Ieee Military Communications Conference, Vols 1-4 = Ieee Milit Commun C Milcom 2009 - 2009 Ieee Military Communications Conference, Vols 1-4 = Ieee Milit. Commun. C. Milenko Zivkovic = Sasa Dept F Arts Mon Milenko Zivkovic = Sasa. Dept. F. Arts. Mon. Milesians: Thales = Traditio Praesocrati Milesians: Thales = Traditio. Praesocrati. Milesische Forschungen = MilForsch Milestones in 150 Years of The Chemical Industry = Roy Soc Ch Milestones in 150 Years of The Chemical Industry = Roy. Soc. Ch. Milestones in Drug Therapy = Milestones Drug Ther Milestones in Drug Therapy = Milestones Drug Ther. Milestones in Environmental Physiology = Prog Biomet Milestones in Environmental Physiology = Prog. Biomet. Milestones in Systematics = Syst Assoc Spec Vol Milestones in Systematics = Syst. Assoc. Spec. Vol. Milet. Ergebnisse der Ausgrabungen und Untersuchungen seit dem Jahr 1899 = Milet Milieus of Creativity: An Interdisciplinary Approach to Spatiality of Creativity = Knowl Space Milieus of Creativity: An Interdisciplinary Approach to Spatiality of Creativity = Knowl. Space. Milieux (Le Creusot, France) = Milieux Militaerlaegen = Militaerlaegen Militargeschichte = Militargeschichte Militärgeschichtliche Mitteilungen = MGM Militargeschichtliche Mitteilungen = Militargesch Mitt Militargeschichtliche Mitteilungen = Militargesch. Mitt. Militargeschichtliche Zeitschrift = Militargesch Z Militargeschichtliche Zeitschrift = Militargesch. Z. Military Advising and Assistance: From Mercenaries to Privatization, 1815-2007 = Cass Mil Stud Military Advising and Assistance: From Mercenaries to Privatization, 1815-2007 = Cass. Mil. Stud. Military Aerospace Technologies - Fitec '98 = Imeche Conf Trans Military Aerospace Technologies - Fitec '98 = Imeche. Conf. Trans. Military affairs : journal of the American Military Institute = Mil Aff Military Affairs = Mil Aff Military Affairs = Mil. Aff. Military and Domestic Politics: A Concordance Theory of Civil-military Relations = Cass Mil Stud Military and Domestic Politics: A Concordance Theory of Civil-military Relations = Cass. Mil. Stud. Military and Negotiation: The Role of The Soldier Diplomat = Cass Ser Peacekeepin Military and Negotiation: The Role of The Soldier Diplomat = Cass. Ser. Peacekeepin. Military and The State in Central Asia: From Red Army to Independence = Cent Asian Stud Ser Military and The State in Central Asia: From Red Army to Independence = Cent. Asian. Stud. Ser. Military As An Economic Actor: Soldiers in Business = Int Polit Econ Ser Military As An Economic Actor: Soldiers in Business = Int. Polit. Econ. Ser. Military Aspects of Scandinavian Society in A European Perspective, Ad 1-1300 = Publ Natl Mus Stud Military Aspects of Scandinavian Society in A European Perspective, Ad 1-1300 = Publ. Natl. Mus. Stud. Military Balance in The Cold War = Cold War Hist-routl Military Balance in The Cold War = Cold War Hist-routl. Military collector & historian = Milit Collect Hist Military Communications Conference, 2010 (milcom 2010) = Ieee Milit Commun C Military Communications Conference, 2010 (milcom 2010) = Ieee. Milit. Commun. C. Military Control in Pakistan = Routl Adv S Asian St Military Control in Pakistan = Routl. Adv. S. Asian. St. Military Cooperation in Multinational Peace Operations: Managing Cultural Diversity and Crisis Response = Cass Mil Stud Military Cooperation in Multinational Peace Operations: Managing Cultural Diversity and Crisis Response = Cass. Mil. Stud. Military Forces in 21st Century Peace Operations = Contemp Secur Stud Military Forces in 21st Century Peace Operations = Contemp. Secur. Stud. Military, Government and Aerospace Simulation = Simul Series Military, Government and Aerospace Simulation = Simul. Series. Military, Government, and Aerospace Simulation = Simul Series Military, Government, and Aerospace Simulation = Simul. Series. Military History and Policy = Mil Hist Policy Military History and Policy = Mil. Hist. Policy Military history of Texas and the Southwest = Milit Hist Tex Southwest Military Honour and The Conduct of War: From Ancient Greece to Iraq = Cass Mil Stud Military Honour and The Conduct of War: From Ancient Greece to Iraq = Cass. Mil. Stud. Military Industry and Regional Defense Policy: India, Iraq and Israel = Cass Mil Stud Military Industry and Regional Defense Policy: India, Iraq and Israel = Cass. Mil. Stud. Military law review = Mil Law Rev Military Law Review = Mil Law Rev Military Law Review = Mil. Law Rev. Military Leadership in The British Civil Wars, 1642-1651: The Genius of This Age = Cass Mil Stud Military Leadership in The British Civil Wars, 1642-1651: The Genius of This Age = Cass. Mil. Stud. Military medicine = Mil Med Military Medicine=Mil Med;; Military Medicine = Mil Med Military Medicine = Mil. Med. Military Missions and Their Implications Reconsidered: The Aftermath of September 11th = Contrib Confl Manag Military Missions and Their Implications Reconsidered: The Aftermath of September 11th = Contrib. Confl. Manag. Military Nanotechnology: Potential Applications and Preventive Arms Control = Contemp Secur Stud Military Nanotechnology: Potential Applications and Preventive Arms Control = Contemp. Secur. Stud. Military Operations Research = Mil Oper Res Military Operations Research = Mil. Oper. Res. Military Psychiatry: New Developments = Psychiat Theor Appl Military Psychiatry: New Developments = Psychiat. Theor. Appl. Military Psychology = Mil Psychol Military Psychology = Mil. Psychol. Military psychology : the official journal of the Division of Military Psychology, American Psychological Association = Mil Psychol Military Remote Sensing = Proc Spie Military Remote Sensing = Proc. Spie. Military Remote Sensing = P Soc Photo-opt Ins Military Remote Sensing = P. Soc. Photo-opt. Ins. Military review = Mil Rev Military Satellites: Issues, Goals and Challenges = Def Secur Strateg Military Satellites: Issues, Goals and Challenges = Def. Secur. Strateg. Military surgeon = Mil Surg Military Textiles = Woodhead Publ Text Military Textiles = Woodhead. Publ. Text. Military Transformation and Strategy = Contemp Secur Stud Military Transformation and Strategy = Contemp. Secur. Stud. Military Unionism in The Post-cold War Era: A Future Reality = Cass Mil Stud Military Unionism in The Post-cold War Era: A Future Reality = Cass. Mil. Stud. Milk and Beef Recording: State of The Art, 1994 = Eaap Public Milk and Beef Recording: State of The Art, 1994 = Eaap. Public. Milk and Milk Products in Human Nutrition = Nes Nutr I Work Ped Milk and Milk Products in Human Nutrition = Nes. Nutr. I. Work. Ped. Milk Composition, Production and Biotechnology = Biotechn Ag Milk Composition, Production and Biotechnology = Biotechn. Ag. Milk Consumption and Health = Food Bev Consum Hlth Milk Consumption and Health = Food. Bev. Consum. Hlth. Milken Family Foundation Series On Education Policy = Milken Fam Found Ser Milken Family Foundation Series On Education Policy = Milken Fam. Found. Ser. Milken Institute Series in Economics and Education = Milken Inst Ser Econ Milken Institute Series in Economics and Education = Milken Inst. Ser. Econ. Milken Institute Series On Financial Innovation and Economic Growth = Milken Inst Ser Fina Milken Institute Series On Financial Innovation and Economic Growth = Milken Inst. Ser. Fina. Milk Industry = Milk Ind Milk Industry = Milk Ind. Milking and Milk Production of Dairy Sheep and Goats = Eaap Public Milking and Milk Production of Dairy Sheep and Goats = Eaap. Public. Milk Protein = Int Dairy F Milk Protein = Int. Dairy. F. Milky Way Surveys The Structure and Evolution of Our Galaxy = Astr Soc P Milky Way Surveys The Structure and Evolution of Our Galaxy = Astr. Soc. P. Millennium Development Goals and Beyond: International Assistance to The Asia-pacific = Rethink Int Dev Millennium Development Goals and Beyond: International Assistance to The Asia-pacific = Rethink. Int. Dev. Millennium Film Journal = Millennium Film J Millennium Film Journal = Millennium Film J. Millennium-journal of International Studies = Millennium-j Int St Millennium-journal of International Studies = Millennium-j. Int. St. Millennium Studien Zu Kultur Und Geschichte Des Ersten Jahrtausends N Chr = Millennium Studien Millennium Studien Zu Kultur Und Geschichte Des Ersten Jahrtausends N Chr = Millenn Stud Kult Ge Millennium Studien Zu Kultur Und Geschichte Des Ersten Jahrtausends N Chr = Millenn. Stud. Kult. Ge. Milli Folklor = Milli Folklor Millimeter and Submillimeter Detectors and Instrumentation for Astonomy Iv = P Soc Photo-opt Ins Millimeter and Submillimeter Detectors and Instrumentation for Astonomy Iv = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Detectors and Instrumentation for Astronomy Iii = Proc Spie Millimeter and Submillimeter Detectors and Instrumentation for Astronomy Iii = Proc. Spie. Millimeter and Submillimeter Detectors and Instrumentation for Astronomy Iii = P Soc Photo-opt Ins Millimeter and Submillimeter Detectors and Instrumentation for Astronomy Iii = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Detectors for Astronomy Ii = Proc Spie Millimeter and Submillimeter Detectors for Astronomy Ii = Proc. Spie. Millimeter and Submillimeter Detectors for Astronomy Ii = P Soc Photo-opt Ins Millimeter and Submillimeter Detectors for Astronomy Ii = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Detectors for Astronomy = Proc Spie Millimeter and Submillimeter Detectors for Astronomy = Proc. Spie. Millimeter and Submillimeter Detectors for Astronomy = P Soc Photo-opt Ins Millimeter and Submillimeter Detectors for Astronomy = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Waves Iii = P Soc Photo-opt Ins Millimeter and Submillimeter Waves Iii = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Waves Ii = P Soc Photo-opt Ins Millimeter and Submillimeter Waves Ii = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Waves Iv = Proc Spie Millimeter and Submillimeter Waves Iv = Proc. Spie. Millimeter and Submillimeter Waves Iv = P Soc Photo-opt Ins Millimeter and Submillimeter Waves Iv = P. Soc. Photo-opt. Ins. Millimeter and Submillimeter Wave Spectroscopy of Solids = Top Curr Chem Millimeter and Submillimeter Wave Spectroscopy of Solids = Top. Curr. Chem. Millimeter and Submillimeter Waves = P Soc Photo-opt Ins Millimeter and Submillimeter Waves = P. Soc. Photo-opt. Ins. Millimeter, Submillimeter, and Far-infrared Detectors and Instrumentation for Astronomy V = P Soc Photo-opt Ins Millimeter, Submillimeter, and Far-infrared Detectors and Instrumentation for Astronomy V = P. Soc. Photo-opt. Ins. Millimeter Wave and Synthetic Aperture Radar = P Soc Photo-opt Ins Millimeter Wave and Synthetic Aperture Radar = P. Soc. Photo-opt. Ins. Millimeter-wave and Terahertz Photonics = Proc Spie Millimeter-wave and Terahertz Photonics = Proc. Spie. Millimeter-wave and Terahertz Photonics = P Soc Photo-opt Ins Millimeter-wave and Terahertz Photonics = P. Soc. Photo-opt. Ins. Millimeter Wave Technology in Wireless Pan, Lan, and Man = Wirel Netw Mob Commu Millimeter Wave Technology in Wireless Pan, Lan, and Man = Wirel. Netw. Mob. Commu. Millimetre Wave and Terahertz Sensors and Technology Iii = P Soc Photo-opt Ins Millimetre Wave and Terahertz Sensors and Technology Iii = P. Soc. Photo-opt. Ins. Milling Feed and Fertiliser = Mill Feed Fertil Milling Feed and Fertiliser = Mill. Feed Fertil. Milling = Milling Millisecond Pulsars: A Decade of Surprise = Astr Soc P Millisecond Pulsars: A Decade of Surprise = Astr. Soc. P. Milton Quarterly = Milton Quart Milton Quarterly = Milton Quart. Milton's Theology of Freedom = Arb Kirchengesch Milton's Theology of Freedom = Arb. Kirchengesch. Milton Studies L = Milton Stud Milton Studies L = Milton Stud. Milton Studies <d> = Milton Stud <d> Milton Studies <d> = Milton Stud. <d> Milton Studies = Milton Stud Milton Studies = Milton Stud. Milton Studies Xlix = Milton Stud Milton Studies Xlix = Milton Stud. Milton Studies Xlviii = Milton Stud Milton Studies Xlviii = Milton Stud. Milton Studies Xlvii = Milton Stud Milton Studies Xlvii = Milton Stud. Milton Studies Xlvi = Milton Stud Milton Studies Xlvi = Milton Stud. Milton Studies Xlv = Milton Stud Milton Studies Xlv = Milton Stud. Milton Studies Xxxiii = Milton Stud Milton Studies Xxxiii = Milton Stud. Milton Studies Xxxii = Milton Stud Milton Studies Xxxii = Milton Stud. Milton Studies Xxxiv = Milton Stud Milton Studies Xxxiv = Milton Stud. Milton Studies Xxx = Milton Stud Milton Studies Xxx = Milton Stud. Milton Studies Xxxvi = Milton Stud Milton Studies Xxxvi = Milton Stud. Milton Studies Xxxv = Milton Stud Milton Studies Xxxv = Milton Stud. Milutin Milankovitch Anniversary Symposium: Paleoclimate and The Earth Climate System = Sasa Dep Math Phys G Milutin Milankovitch Anniversary Symposium: Paleoclimate and The Earth Climate System = Sasa. Dep. Math. Phys. G. Milwaukee history = Milw Hist Mimesis and Intertextuality in Antiquity and Christianity = St Ant Chr Mimesis and Intertextuality in Antiquity and Christianity = St. Ant. Chr. Mimesis = New Crit Idiom Mimesis = New. Crit. Idiom. Mimesis-romanische Literaturen Der Welt = Mimesis Mimesis-romanische Literaturen Der Welt = Mimesis. Mims magazine weekly : the journal of quality patient care = MIMS Mag Mind and Heart of The Church = P Wethers I Mind and Heart of The Church = P. Wethers. I. Mind and Motion: The Bidirectional Link Between Thought and Action = Prog Brain Res Mind and Motion: The Bidirectional Link Between Thought and Action = Prog. Brain. Res. Mind; a quarterly review of psychology and philosophy = Mind Mind Association Occasional Series = Mind Assoc Occas Ser Mind Association Occasional Series = Mind Assoc. Occas. Ser. Mind Brain and Education = Mind Brain Educ Mind Brain and Education = Mind Brain Educ. Mind Culture and Activity = Mind Cult Act Mind Culture and Activity = Mind Cult. Act. Mind, Diet, and The Common Cold = Roy Soc Med Int Cong Mind, Diet, and The Common Cold = Roy. Soc. Med. Int. Cong. Mindev 97 - The International Conference On Mine Project Development = Australas I Min Met Mindev 97 - The International Conference On Mine Project Development = Australas. I. Min. Met. Mind Force: On Human Attractions = Stud Nonlin Phenom Mind Force: On Human Attractions = Stud. Nonlin. Phenom. Mindfulness in Early Buddhism: New Approaches Through Psychology and Textual Analysis of Pali, Chinese and Sanskrit Sources = Routl Crit Stud Budd Mindfulness in Early Buddhism: New Approaches Through Psychology and Textual Analysis of Pali, Chinese and Sanskrit Sources = Routl. Crit. Stud. Budd. Mindful Universe: Quantum Mechanics and The Participating Observer = Front Collect Mindful Universe: Quantum Mechanics and The Participating Observer = Front. Collect. Mindful Universe: Quantum Mechanics and The Participating Observer, Second Edition = Front Collect Mindful Universe: Quantum Mechanics and The Participating Observer, Second Edition = Front. Collect. Minding The Gap: Appraising The Promise and Performance of Regulatory Reform in Australia = Anzsog Monogr Minding The Gap: Appraising The Promise and Performance of Regulatory Reform in Australia = Anzsog. Monogr. Mind & Language = Mind Lang Mind & Language = Mind Lang. Mind, Matter and Quantum Mechanics, Third Edition = Front Collect Mind, Matter and Quantum Mechanics, Third Edition = Front. Collect. Mind, Matter and The Implicate Order = Front Collect Mind, Matter and The Implicate Order = Front. Collect. Mind Matters = Carn S Cogn Mind Matters = Carn. S. Cogn. Mind = Mind Mind = Mind Mind of Donald Davidson = Graz Phil S Mind of Donald Davidson = Graz. Phil. S. Minds and Machines = Mind Mach Minds and Machines = Mind. Mach. Minds and Persons = Roy I Ph S Minds and Persons = Roy. I. Ph. S. Mindscapes = Alternative Mindscapes = Alternative. Mindscapes: Philosophy, Science, and The Mind = Pitt Konst S Philos Mindscapes: Philosophy, Science, and The Mind = Pitt. Konst. S. Philos. Minefill'98 = Australas I Min Met Minefill'98 = Australas. I. Min. Met. Mine Pit Lakes: Characteristics, Predictive Modeling, and Sustainability, Vol 3 = Manag Technol Met Mi Mine Pit Lakes: Characteristics, Predictive Modeling, and Sustainability, Vol 3 = Manag. Technol. Met. Mi. Mineral and Electrolyte Metabolism = Miner Electrol Metab Mineral and Electrolyte Metabolism = Miner. Electrol. Metab. Mineral and electrolyte metabolism = Miner Electrolyte Metab Mineral and Electrolyte Metabolism=Miner Electrolyte Metab;; Mineral and Electrolyte Metabolism = Miner. Electrolyte Metab. Mineral Concentrations and Hydrocarbon Accumulations in The Escap Region = Miner Conc Hydrocarb Mineral Concentrations and Hydrocarbon Accumulations in The Escap Region = Miner. Conc. Hydrocarb. Mineral Deposits and Earth Evolution = Geol Soc Spec Publ Mineral Deposits and Earth Evolution = Geol. Soc. Spec. Publ. Mineral Fillers in Thermoplastics I = Adv Polym Sci Mineral Fillers in Thermoplastics I = Adv. Polym. Sci. Mineralium Deposita = Miner Deposita Mineralium Deposita = Miner. Deposita Mineralization in Natural and Synthetic Biomaterials = Mater Res Soc Symp P Mineralization in Natural and Synthetic Biomaterials = Mater. Res. Soc. Symp. P. Mineral Nutrient Disorders of Root Crops in The Pacific = Aciar Proc Mineral Nutrient Disorders of Root Crops in The Pacific = Aciar. Proc. Mineral Nutrition and Fertilizer Use for Deciduous Fruit Crops = Acta Hortic Mineral Nutrition and Fertilizer Use for Deciduous Fruit Crops = Acta. Hortic. Mineralogical Magazine and Journal of The Mineralogical Society = Mineral Mag J M Soc Mineralogical Magazine and Journal of The Mineralogical Society = Mineral. Mag. J. M. Soc. Mineralogical magazine = Mineral Mag Mineralogical Magazine = Mineral Mag Mineralogical Magazine = Mineral. Mag. Mineralogical Magazine = Mineralog. Mag. Mineralogical Record = Mineral Rec Mineralogical Record = Mineral. Rec. Mineralogical Society Series = Min Soc Ser Mineralogical Society Series = Min. Soc. Ser. Mineralogicheskii Zhurnal = Mineral. Zh. Mineralogy and Petrology = Mineral. Petrol. Mineralogy and Petrology = Miner Petrol Mineralogy and Petrology = Miner. Petrol. Mineral Processing and Extractive Metallurgy Review = Miner Process Extr M Mineral Processing and Extractive Metallurgy Review = Miner. Process. Extr. M. Mineral Processing and Extractive Metallurgy Review = Miner. Process. Extr. Metall. Rev. Mineral Resources Assessment, Development and Management Series = Min Res Ass Dev Man Mineral Resources Assessment, Development and Management Series = Min. Res. Ass. Dev. Man. Mineral Resources Engineering = Miner Resour Eng Mineral Resources Engineering = Miner. Resour. Eng. Minerals and Metallurgical Processing = Miner Metall Proc Minerals and Metallurgical Processing = Miner. Metall. Proc. Minerals and Metallurgical Processing = Miner. Metall. Process Minerals and Metals Development and Trade for Sustainable Supply in Asia and The Pacific = Min Res Ass Dev Man Minerals and Metals Development and Trade for Sustainable Supply in Asia and The Pacific = Min. Res. Ass. Dev. Man. Minerals and Reactions At The Atomic Scale : Transmission Electron Microscopy = Rev Mineral Minerals and Reactions At The Atomic Scale : Transmission Electron Microscopy = Rev. Mineral. Minerals and The Environment = Miner Environ Minerals and The Environment = Miner. Environ. Minerals Engineering = Miner Eng Minerals Engineering = Miner. Eng. Minerals, Inclusions and Volcanic Processes = Rev Mineral Geochem Minerals, Inclusions and Volcanic Processes = Rev. Mineral. Geochem. Minerals & Metallurgical Processing = Miner Metall Proc Minerals & Metallurgical Processing = Miner. Metall. Proc. Minerals & Metallurgical Processing = Miner. Metall. Process. Minerals Science and Engineering = Miner Sci Eng Minerals Science and Engineering = Miner. Sci. Eng. Mineral Surfaces = Min Soc Ser Mineral Surfaces = Min. Soc. Ser. Mineral/water Interactions Close to Equilibrium = Fzka Tech Umw Wis B Mineral/water Interactions Close to Equilibrium = Fzka. Tech. Umw. Wis. B. Mineral-water Interface Geochemistry = Rev Mineral Mineral-water Interface Geochemistry = Rev. Mineral. Minerva anestesiologica = Minerva Anestesiol Minerva Anestesiologica=Minerva Anestesiol;; Minerva Anestesiologica = Minerva Anestesiol Minerva Anestesiologica = Minerva Anestesiol. Minerva (Arlington, Va.) = Minerva (Arlingt Va) Minerva Biotecnologica = Minerva Biotecnol Minerva Biotecnologica = Minerva Biotecnol. Minerva cardioangiologica Europea = Minerva Cardioangiol Eur Minerva cardioangiologica = Minerva Cardioangiol Minerva Cardioangiologica=Minerva Cardioangiol;; Minerva Cardioangiologica = Minerva Cardioangiol Minerva Cardioangiologica = Minerva Cardioangiol. Minerva chirurgica = Minerva Chir Minerva Chirurgica=Minerva Chir;; Minerva Chirurgica = Minerva Chir Minerva Chirurgica = Minerva Chir. Minerva dermatologica = Minerva Dermatol Minerva Dermatologica = Minerva Dermatol. Minerva dietologica e gastroenterologica = Minerva Dietol Gastroenterol Minerva Dietologica e Gastroenterologica = Minerva Dietol. Gastroenterol. Minerva dietologica = Minerva Dietol Minerva ecologica idroclimatologica e fisiconucleare = Minerva Ecol Idroclimatol Fisiconucl Minerva Ecologica, Idroclimatologica e Fisiconucleare = Minerva Ecol. Idroclimatol. Fisiconucl. Minerva ecologica idroclimatologica fisicosanitaria = Minerva Ecol Idroclimatol Fis Sanit Minerva Ecologica, Idroclimatologica, Fisicosanitaria = Minerva Ecol. Idroclimatol. Fis. Sanit. Minerva endocrinologica = Minerva Endocrinol Minerva Endocrinologica=Minerva Endocrinol;; Minerva Endocrinologica = Minerva Endocrinol Minerva Endocrinologica = Minerva Endocrinol. Minerva farmaceutica = Minerva Farm Minerva Fisiconucleare = Minerva Fisiconuc Minerva Fisiconucleare = Minerva Fisiconuc. Minerva fisiconucleare = Minerva Fisiconucl Minerva Fisiconucleare = Minerva Fisiconucl. Minerva Fisiconuclear-giornale Di Fisica Sanitaria Protezione Contro Le Radizioni = Minerva Fisiconucl Minerva Fisiconuclear-giornale Di Fisica Sanitaria Protezione Contro Le Radizioni = Minerva Fisiconucl. Minerva fisioterapica e radiobiologica = Minerva Fisioter Radiobiol Minerva gastroenterologica e dietologica = Minerva Gastroenterol Dietol Minerva Gastroenterologica e Dietologica = Minerva Gastroenterol. Dietol. Minerva gastroenterologica = Minerva Gastroenterol Minerva ginecologica = Minerva Ginecol Minerva Ginecologica=Minerva Ginecol;; Minerva Ginecologica = Minerva Ginecol Minerva Ginecologica = Minerva Ginecol. Minerva medica = Minerva Med Minerva Medica=Minerva Med;; Minerva Medica = Minerva Med Minerva Medica = Minerva Med. Minerva medicolegale; archivio di antropologia criminale, psichiatria, e medicina legale = Minerva Medicoleg Minerva Medicolegale = Minerva Medicoleg. Minerva = Minerva Minerva nefrologica = Minerva Nefrol Minerva Nefrologica = Minerva Nefrol. Minerva neurochirurgica = Minerva Neurochir Minerva Neurochirurgica = Minerva Neurochir. Minerva nipiologica = Minerva Nipiol Minerva Nipiologica = Minerva Nipiol. Minerva nucleare = Minerva Nucl Minerva Nucleare = Minerva Nucl. Minerva oftalmologica = Minerva Oftalmol Minerva Oftalmologica = Minerva Oftalmol. Minerva ortognatodontica = Minerva Ortognatod Minerva Ortognatodontica = Minerva Ortognatod. Minerva Ortopedica E Traumatologica = Minerva Ortop Trauma Minerva Ortopedica E Traumatologica = Minerva Ortop. Trauma. Minerva ortopedica = Minerva Ortop Minerva Ortopedica = Minerva Ortop. Minerva Ortopedica = Minerva Ortoped Minerva Ortopedica = Minerva Ortoped. Minerva otorinolaringologica = Minerva Otorinolaringol Minerva Otorinolaringologica = Minerva Otorinolaringol. Minerva pediatrica = Minerva Pediatr Minerva Pediatrica=Minerva Pediatr;; Minerva Pediatrica = Minerva Pediatr Minerva Pediatrica = Minerva Pediatr. Minerva psichiatrica = Minerva Psichiatr Minerva Psichiatrica = Minerva Psichiatr. Minerva radiologica, fisioterapica e radiobiologica = Minerva Radiol Fisioter Radiobiol Minerva Radiologica Fisioterapica E Radiobiologica = Minerva Radiol Fis R Minerva Radiologica Fisioterapica E Radiobiologica = Minerva Radiol. Fis. R. Minerva radiologica = Minerva Radiol Minerva Radiologica = Minerva Radiol Minerva Radiologica = Minerva Radiol. Minerva. Revista de filología clásica = Minerva Minerva: revista de filología clásica = Minerva(vall) Minerva stomatologica = Minerva Stomatol Minerva Stomatologica=Minerva Stomatol;; Minerva Stomatologica = Minerva Stomatol. Minerva: the international review of ancient art and archaeology = Minerva(lond) Minerva Urologica e Nefrologica = Minerva Urol. Nefrol. Minerva Urologica E Nefrologica=Minerva Urol Nefrol;; Minerva urologica = Minerva Urol Minerva Urologica = Minerva Urol. Mine Safety: A Modern Approach = Springer Ser Reliab Mine Safety: A Modern Approach = Springer. Ser. Reliab. Mine to Mill 1998 Conference = Australas I Min Met Mine to Mill 1998 Conference = Australas. I. Min. Met. Mine Water and the Environment = Mine Water Environ. Mine Water and The Environment = Mine Water Environ Mine Water and The Environment = Mine Water Environ. Miniature and Micro-optics and Micromechanics = P Soc Photo-opt Ins Miniature and Micro-optics and Micromechanics = P. Soc. Photo-opt. Ins. Miniature and Micro-optics : Fabrication and System Applications Ii = P Soc Photo-opt Ins Miniature and Micro-optics : Fabrication and System Applications Ii = P. Soc. Photo-opt. Ins. Miniature and Micro-optics : Fabrication and System Applications = P Soc Photo-opt Ins Miniature and Micro-optics : Fabrication and System Applications = P. Soc. Photo-opt. Ins. Miniature Vertebrates = Sym Zool S Miniature Vertebrates = Sym. Zool. S. Miniaturized Systems With Micro-optics and Mems = Proc Spie Miniaturized Systems With Micro-optics and Mems = Proc. Spie. Miniaturized Systems With Micro-optics and Mems = P Soc Photo-opt Ins Miniaturized Systems With Micro-optics and Mems = P. Soc. Photo-opt. Ins. Miniaturized Systems With Micro-optics and Micromechanics Iii = P Soc Photo-opt Ins Miniaturized Systems With Micro-optics and Micromechanics Iii = P. Soc. Photo-opt. Ins. Miniaturized Systems With Micro-optics and Micromechanics Ii = P Soc Photo-opt Ins Miniaturized Systems With Micro-optics and Micromechanics Ii = P. Soc. Photo-opt. Ins. Miniaturized Systems With Micro-optics and Micromechanics = P Soc Photo-opt Ins Miniaturized Systems With Micro-optics and Micromechanics = P. Soc. Photo-opt. Ins. Minicourse On Stochastic Partial Differential Equations = Lect Notes Math Minicourse On Stochastic Partial Differential Equations = Lect. Notes. Math. Minima epigraphica et papyrologica. Taccuini della cattedra e del laboratorio di epigrafia e papirologia giuridica dell'Università degli studi di Catanzaro »Magna Graecia« = MinEpigrP Minimalism: Designing Simplicity = Hum-comput Int-sprin Minimalism: Designing Simplicity = Hum-comput. Int-sprin. Minimalist Approach to Scrambling = Stud Generat Gramm Minimalist Approach to Scrambling = Stud. Generat. Gramm. Minimalist Inquiries Into Child and Adult Language Acquisition: Case Studies Across Portuguese = Stud Lang Acquis Minimalist Inquiries Into Child and Adult Language Acquisition: Case Studies Across Portuguese = Stud. Lang. Acquis. Minimality Effects in Syntax = Stud Genera Grammar Minimality Effects in Syntax = Stud. Genera. Grammar. Minimally Invasive Breast Biopsies = Recent Results Canc Minimally Invasive Breast Biopsies = Recent. Results. Canc. Minimally Invasive Neurosurgery Ii = Act Neur S Minimally Invasive Neurosurgery Ii = Act. Neur. S. Minimally Invasive Neurosurgery=Minim Invasive Neurosurg;; Minimally Invasive Neurosurgery = Minim. Invasive Neurosurg. Minimally Invasive Neurosurgery = Minim Invas Neurosur Minimally Invasive Neurosurgery = Minim. Invas. Neurosur. Minimally invasive neurosurgery : MIN = Minim Invasive Neurosurg Minimally invasive surgical nursing = Minim Invasive Surg Nurs Minimally Invasive Surgical Nursing = Minim. Invasive Surg. Nurs. Minimally Invasive Therapy & Allied Technologies = Minim Invasiv Ther Minimally Invasive Therapy & Allied Technologies = Minim. Invasiv. Ther. Minimally invasive therapy & allied technologies : MITAT : official journal of the Society for Minimally Invasive Therapy = Minim Invasive Ther Allied Technol Minimally Invasive Therapy = Minimal Invasiv Ther Minimally Invasive Therapy = Minimal. Invasiv. Ther. Minimally Invasive Treatment, Arrest, and Control of Periodontal Diseases, Vol 5 = Axelss Ser Prev Dent Minimally Invasive Treatment, Arrest, and Control of Periodontal Diseases, Vol 5 = Axelss. Ser. Prev. Dent. Minimal Model Approach and Determinants of Glucose Tolerance = Penn Ctr N Minimal Model Approach and Determinants of Glucose Tolerance = Penn. Ctr. N. Minimal Processing of Foods and Process Optimization = Food Engn Mfg Minimal Processing of Foods and Process Optimization = Food. Engn. Mfg. Minimal Processing of Foods = Vtt Symp Minimal Processing of Foods = Vtt. Symp. Minimal Residual Disease in Melanoma = Recent Res Cancer Minimal Residual Disease in Melanoma = Recent. Res. Cancer. Minimal Residual Epithelial Cancer: Diagnostic Approaches and Prognostic Relevance = Prog Histochem Cytoc Minimal Residual Epithelial Cancer: Diagnostic Approaches and Prognostic Relevance = Prog. Histochem. Cytoc. Minimax Theory and Applications = Noncon Optim Its App Minimax Theory and Applications = Noncon. Optim. Its. App. Mini-micro Fuel Cells: Fundamentals and Applications = Nato Sci Peace Secur Mini-micro Fuel Cells: Fundamentals and Applications = Nato. Sci. Peace. Secur. Mini-micro Systems = Mini-micro Syst Mini-micro Systems = Mini-micro Syst. Minimizing Spurious Tones in Digital Delta-sigma Modulators = Analog Circ Sig Proc Minimizing Spurious Tones in Digital Delta-sigma Modulators = Analog. Circ. Sig. Proc. Minimum Reinforcement in Concrete Members = Esis Publ Minimum Reinforcement in Concrete Members = Esis. Publ. Minimum Wages, Low Pay and Unemployment = Appl Econom Ass Ser Minimum Wages, Low Pay and Unemployment = Appl. Econom. Ass. Ser. Mining and Analyzing Social Networks = Stud Comput Intell Mining and Analyzing Social Networks = Stud. Comput. Intell. Mining and Control of Network Traffic By Computational Intelligence = Stud Comput Intell Mining and Control of Network Traffic By Computational Intelligence = Stud. Comput. Intell. Mining and Metallurgy in Ancient Peru = Geol Soc Am Spec Pap Mining and Metallurgy in Ancient Peru = Geol. Soc. Am. Spec. Pap. Mining and Metallurgy Quarterly = Min Metall Quart Mining and Metallurgy Quarterly = Min. Metall. Quart. Mining and Modeling Massive Data Sets in Science, Engineering, and Business With A Subtheme in Environmental Statistics = Comp Sci Stat Mining and Modeling Massive Data Sets in Science, Engineering, and Business With A Subtheme in Environmental Statistics = Comp. Sci. Stat. Mining and Scientific Press = Min. Sci. Press Mining Complex Data = Lect Notes Comput Sc Mining Complex Data = Lect. Notes. Comput. Sc. Mining Complex Data = Stud Comput Intell Mining Complex Data = Stud. Comput. Intell. Mining Congress Journal = Min Congr J Mining Congress Journal = Min. Congr. J. Mining Engineering = Min. Eng. Mining Engineering = Min Eng-littleton Mining Engineering = Min. Eng-littleton. Mining Equipment Reliability, Maintainability, and Safety = Springer Ser Reliab Mining Equipment Reliability, Maintainability, and Safety = Springer. Ser. Reliab. Mining Heritage and Tourism: A Global Synthesis = Routl Adv Tour Mining Heritage and Tourism: A Global Synthesis = Routl. Adv. Tour. Mining Journal = Min. J. Mining Magazine = Min. Mag. Mining Multimedia and Complex Data = Lect Notes Artif Int Mining Multimedia and Complex Data = Lect. Notes. Artif. Int. Mining of Data With Complex Structures = Stud Comput Intell Mining of Data With Complex Structures = Stud. Comput. Intell. Mining Smartness From Nature = Adv Sci Tech Mining Smartness From Nature = Adv. Sci. Tech. Mining The Sky = Eso Astrophy Symp Mining The Sky = Eso. Astrophy. Symp. Mini Nutritional Assessment (mna): Research and Practice in The Elderly = Nes Nutr Ws Mini Nutritional Assessment (mna): Research and Practice in The Elderly = Nes. Nutr. Ws. Mini reviews in medicinal chemistry = Mini Rev Med Chem Mini-reviews in Medicinal Chemistry = Mini-rev Med Chem Mini-reviews in Medicinal Chemistry = Mini-rev. Med. Chem. Mini - Reviews in Medicinal Chemistry = Mini Rev. Med. Chem. Mini Reviews in Medicinal Chemistry = Mini Rev. Med. Chem. Mini-Reviews in Medicinal Chemistry = Mini-Rev. Med. Chem. Mini-reviews in Organic Chemistry = Mini-rev Org Chem Mini-reviews in Organic Chemistry = Mini-rev. Org. Chem. Mini-Reviews in Organic Chemistry = Mini-Rev. Org. Chem. Ministry to Outpatients = Guid Pastor Ministry to Outpatients = Guid. Pastor. Minisum Hyperspheres = Springer Ser Optim A Minisum Hyperspheres = Springer. Ser. Optim. A. Mini-symposium On Image-based Motion Measurement = P Soc Photo-opt Ins Mini-symposium On Image-based Motion Measurement = P. Soc. Photo-opt. Ins. Minke Whales, Harp and Hooded Seals: Major Predators in The North Atlantic Ecosystem = Nammco Sci Publ Minke Whales, Harp and Hooded Seals: Major Predators in The North Atlantic Ecosystem = Nammco. Sci. Publ. Minkowski Spacetime: A Hundred Years Later = Fund Theor Phys Minkowski Spacetime: A Hundred Years Later = Fund. Theor. Phys. Minneapolis District Dental Journal = Minneap. Dist. Dent. J. Minnesota Agricultural Experiment Station Bulletin = Minn Aes Bull Minnesota Agricultural Experiment Station Bulletin = Minn. Aes. Bull. Minnesota Agricultural Experiment Station Miscellaneous Report = Minn Aes Misc Rep Minnesota Agricultural Experiment Station Miscellaneous Report = Minn. Aes. Misc. Rep. Minnesota Agricultural Experiment Station Technical Bulletin = Minn Aes Tech Bull Minnesota Agricultural Experiment Station Technical Bulletin = Minn. Aes. Tech. Bull. Minnesota Agricultural Extension Service Extension Bulletin = Minn Aes Ext Bull Minnesota Agricultural Extension Service Extension Bulletin = Minn. Aes. Ext. Bull. Minnesota Agricultural Extension Service Special Report = Minn Aes Spec Rep Minnesota Agricultural Extension Service Special Report = Minn. Aes. Spec. Rep. Minnesota history = Minn Hist Minnesota law review = Minn Law Rev Minnesota Law Review = Minn Law Rev Minnesota Law Review = Minn. Law Rev. Minnesota Lectures On Clusters of Galaxies and Large-scale Structure = Astr Soc P Minnesota Lectures On Clusters of Galaxies and Large-scale Structure = Astr. Soc. P. Minnesota Lectures On Extragalactic Neutral Hydrogen = Astr Soc P Minnesota Lectures On Extragalactic Neutral Hydrogen = Astr. Soc. P. Minnesota Lectures On The Structure and Dynamics of The Milky Way = Astr Soc P Minnesota Lectures On The Structure and Dynamics of The Milky Way = Astr. Soc. P. Minnesota medicine = Minn Med Minnesota Medicine=Minn Med;; Minnesota Medicine = Minn Med Minnesota Medicine = Minn. Med. Minnesota nursing accent = Minn Nurs Accent Minnesota Nursing Accent = Minn. Nurs. Accent Minnesota pharmacist = Minn Pharm Minnesota Review = Minn Rev Minnesota Review = Minn. Rev. Minnesota statutes annotated. Minnesota = Minn Statut Annot Minn Minnesota Studies in The Philosophy of Science = Minn Stud Philos Sci Minnesota Studies in The Philosophy of Science = Minn. Stud. Philos. Sci. Minnesota Studies in The Philosophy of Science, Vol 15 = Minn Stud Philos Sci Minnesota Studies in The Philosophy of Science, Vol 15 = Minn. Stud. Philos. Sci. Minnesota Symposia On Child Psychology = Minn Sym Child Psych Minnesota Symposia On Child Psychology = Minn. Sym. Child Psych. Mino'09: Proceedings of The 8th Wseas International Conference On Microelectronics, Nanoelectronics, Optoelectronics = Ele Com Eng Mino'09: Proceedings of The 8th Wseas International Conference On Microelectronics, Nanoelectronics, Optoelectronics = Ele. Com. Eng. Minoan and Mycenaean Seals = Corp Mino Myken Sieg Minoan and Mycenaean Seals = Corp. Mino. Myken. Sieg. Minor Bodies in The Outer Solar System = Eso Astrophy Symp Minor Bodies in The Outer Solar System = Eso. Astrophy. Symp. Minority Carriers in Iii-v Semiconductors: Physics and Applications = Semiconduct Semimet Minority Carriers in Iii-v Semiconductors: Physics and Applications = Semiconduct. Semimet. Minority Governments in India: The Puzzle of Elusive Majorities = Routl Cont S Asia Se Minority Governments in India: The Puzzle of Elusive Majorities = Routl. Cont. S. Asia. Se. Minority Marketing: Research Perspectives for The 1990s = Sp Conf Ams Minority Marketing: Research Perspectives for The 1990s = Sp. Conf. Ams. Minority Nationalist Parties and European Integration: A Comparative Study = Routl Uaces Contemp Minority Nationalist Parties and European Integration: A Comparative Study = Routl. Uaces. Contemp. Minority nurse newsletter = Minor Nurse Newsl Minority Nurse Newsletter = Minor. Nurse Newsl. Minority Populations = St Biol Ec Minority Populations = St. Biol. Ec. Minority Rights in Central and Eastern Europe = Basees-rout Ser Russ Minority Rights in Central and Eastern Europe = Basees-rout. Ser. Russ. Minority Status, Oppositional Culture, & Schooling = Sociocult Polit Hist Minority Status, Oppositional Culture, & Schooling = Sociocult. Polit. Hist. Minority Within A Minority: Black Francophone Immigrants and The Dynamics of Power and Resistance = New Approach Sociol Minority Within A Minority: Black Francophone Immigrants and The Dynamics of Power and Resistance = New. Approach. Sociol. Minor Oral Surgery in Dental Practice = Quintessent Dent Pra Minor Oral Surgery in Dental Practice = Quintessent. Dent. Pra. Minos. Revista de filología egea = Minos Minprex 2000: International Congress On Mineral Processing and Extractive Metallurgy = Australas I Min Met Minprex 2000: International Congress On Mineral Processing and Extractive Metallurgy = Australas. I. Min. Met. Minskiy Radiotekhnicheskiy Institut = Avtomat. i Vychisl. Tekhn. (Minsk) [Minzoku eisei] Race hygiene = Minzoku Eisei Minzokugaku Kenkyu-japanese Journal of Ethnology = Minzokugaku Kenkyu Minzokugaku Kenkyu-japanese Journal of Ethnology = Minzokugaku Kenkyu. Miocene and Oligocene Petroleum Reservoirs of The Santa Maria and Santa Barbara - Ventura Basins, California = Sepm Core Workshop Miocene and Oligocene Petroleum Reservoirs of The Santa Maria and Santa Barbara - Ventura Basins, California = Sepm. Core. Workshop. Miocene Tectonics of The Lake Mead Region, Central Basin and Range = Geol Soc Am Spec Pap Miocene Tectonics of The Lake Mead Region, Central Basin and Range = Geol. Soc. Am. Spec. Pap. Mippr 2007: Automatic Target Recognition and Image Analysis; and Multispectral Image Acquisition, Pts 1 and 2 = Proc Spie Mippr 2007: Automatic Target Recognition and Image Analysis; and Multispectral Image Acquisition, Pts 1 and 2 = Proc. Spie. Mippr 2007: Automatic Target Recognition and Image Analysis; and Multispectral Image Acquisition, Pts 1 and 2 = P Soc Photo-opt Ins Mippr 2007: Automatic Target Recognition and Image Analysis; and Multispectral Image Acquisition, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Mippr 2007: Medical Imaging, Parallel Processing of Images, and Optimization Techniques = Proc Spie Mippr 2007: Medical Imaging, Parallel Processing of Images, and Optimization Techniques = Proc. Spie. Mippr 2007: Medical Imaging, Parallel Processing of Images, and Optimization Techniques = P Soc Photo-opt Ins Mippr 2007: Medical Imaging, Parallel Processing of Images, and Optimization Techniques = P. Soc. Photo-opt. Ins. Mippr 2007: Multispectral Image Processing = Proc Spie Mippr 2007: Multispectral Image Processing = Proc. Spie. Mippr 2007: Multispectral Image Processing = P Soc Photo-opt Ins Mippr 2007: Multispectral Image Processing = P. Soc. Photo-opt. Ins. Mippr 2007: Pattern Recognition and Computer Vision = Proc Spie Mippr 2007: Pattern Recognition and Computer Vision = Proc. Spie. Mippr 2007: Pattern Recognition and Computer Vision = P Soc Photo-opt Ins Mippr 2007: Pattern Recognition and Computer Vision = P. Soc. Photo-opt. Ins. Mips and Their Role in The Exchange of Metalloids = Adv Exp Med Biol Mips and Their Role in The Exchange of Metalloids = Adv. Exp. Med. Biol. Miracles and Extraordinary Experience in Northern Kenya = Contemp Ethnogr Miracles and Extraordinary Experience in Northern Kenya = Contemp. Ethnogr. Miracles and The Miraculous in Medieval Germanic and Latin Literature = Germania Latina Miracles and The Miraculous in Medieval Germanic and Latin Literature = Germania. Latina. Miracles in Jewish and Christian Antiquity = Notr Dam Theol Miracles in Jewish and Christian Antiquity = Notr. Dam. Theol. Miraculous Growth and Stagnation in Post-war Japan = Routl Stud Mod World Miraculous Growth and Stagnation in Post-war Japan = Routl. Stud. Mod. World. Miraggio Di Alceo = Beitr Altertumskunde Miraggio Di Alceo = Beitr. Altertumskunde. Mircen-journal of Applied Microbiology and Biotechnology = Mircen J Appl Microb Mircen-journal of Applied Microbiology and Biotechnology = Mircen. J. Appl. Microb. Miriam S Balmuth Lectures in Ancient History and Archaeology = Mir S Balm Lect Anc Miriam S Balmuth Lectures in Ancient History and Archaeology = Mir. S Balm. Lect. Anc. Mirna Regulation of The Translational Machinery = Prog Mol Subcell Bio Mirna Regulation of The Translational Machinery = Prog. Mol. Subcell. Bio. Mirovaia ekonomika i mezhdunarodnye otnosheniia / Akademiia nauk SSSR, Institut mirovoi ekonomiki i mezhd'unarodnykh otnoshenii = Mirovaia Ekon Mezdunar Otnosheiia Mirror / Georgetown University School of Dentistry = Georgetown Univ Sch Dent Mirror Mirror Symmetry and Tropical Geometry = Contemp Math Mirror Symmetry and Tropical Geometry = Contemp. Math. Misaengmul kwa sanop = The microorganisms and industry|Misaengmul Gwa San-eob Miscelanea de estudios arabes y hebraicos = Misc Estud Arabes Hebraicos Miscelánea Matemática = Miscelánea Mat. Miscellanea di studi di letteratura christiana antica = MiscCrAnt Miscellanea di studi storici = MiscStStor Miscellanea greca e romana: studi pubblicati dall'Ist. italiano per la storia antica = MGR Miscellanea Mediaevalia = Miscellan Mediaeval Miscellanea Mediaevalia = Miscellan. Mediaeval. Miscellaneous Series - Royal Society of New Zealand = Misc S Rsnz Miscellaneous Series - Royal Society of New Zealand = Misc. S. Rsnz. Misconceptions About The Middle Ages = Rout Stud Mediev Rel Misconceptions About The Middle Ages = Rout. Stud. Mediev. Rel. Mises au point de l'accoucheur et du pediatre = Mises Point Accouch Pediatre Miskolc Mathematical Notes = Miskolc Math Notes Miskolc Mathematical Notes = Miskolc Math. Notes Mis-matching of Welds = Esis Publ Mis-matching of Welds = Esis. Publ. Mis Quarterly Executive = Mis Q Exec Mis Quarterly Executive = Mis Q. Exec. Mis Quarterly = Mis Quart Mis Quarterly = Mis Quart. Missile Defence = Contemp Secur Stud Missile Defence = Contemp. Secur. Stud. Missili E Spazio = Missili E Spazio Missili = Missili Missing Data in Longitudinal Studies: Strategies for Bayesian Modeling and Sensitivity Analysis = Monogr Stat Appl Pro Missing Data in Longitudinal Studies: Strategies for Bayesian Modeling and Sensitivity Analysis = Monogr. Stat. Appl. Pro. Missing Italian Nuremberg: Cultural Amnesia and Postwar Politics = Ital Ital Am Stud Missing Italian Nuremberg: Cultural Amnesia and Postwar Politics = Ital. Ital. Am. Stud. Missing Link in Cybernetics: Logic and Continuity = Ifsr Int Ser Syst Sc Missing Link in Cybernetics: Logic and Continuity = Ifsr. Int. Ser. Syst. Sc. Missing Links in Teacher Education Design = Self Study Teach Tea Missing Links in Teacher Education Design = Self. Study. Teach. Tea. Missionalia hispanica = Mission Hisp Missionary Factor in Ethiopia = Stud Int Hist Christ Missionary Factor in Ethiopia = Stud. Int. Hist. Christ. Missionary Linguistics Ii / Linguistica Misionera Ii: Orthography and Phonology = Amst St Th Missionary Linguistics Ii / Linguistica Misionera Ii: Orthography and Phonology = Amst. St. Th. Missionary Linguistics/linguistica Misionera = Amst St Th Missionary Linguistics/linguistica Misionera = Amst. St. Th. Mission Design & Implementation of Satellite Constellations = Space Technol Proc Mission Design & Implementation of Satellite Constellations = Space. Technol. Proc. Mission of The Early Church to Jews and Gentiles = W U Neu Test Mission of The Early Church to Jews and Gentiles = W. U. Neu. Test. Missions and Conversions: Creating The Montagnard-dega Refugee Community = Contemp Anthr Relig Missions and Conversions: Creating The Montagnard-dega Refugee Community = Contemp. Anthr. Relig. Missions, States, and European Expansion in Africa = Afr Stud-hist Polit Missions, States, and European Expansion in Africa = Afr. Stud-hist. Polit. Missions to The Moon and Exploring The Cold Universe = Adv Space Res Missions to The Moon and Exploring The Cold Universe = Adv. Space. Res. Missions to The Moon and Exploring The Cold Universe = Adv Space Res-series Missions to The Moon and Exploring The Cold Universe = Adv. Space. Res-series. Missions to The Sun Ii = P Soc Photo-opt Ins Missions to The Sun Ii = P. Soc. Photo-opt. Ins. Missions to The Sun = P Soc Photo-opt Ins Missions to The Sun = P. Soc. Photo-opt. Ins. Mission to Proclaim and to Celebrate Christian Existence = Tex Etu Lit Mission to Proclaim and to Celebrate Christian Existence = Tex. Etu. Lit. Mississippi Agricultural & Forestry Experiment Station Bulletin = Miss Afes Bull Mississippi Agricultural & Forestry Experiment Station Bulletin = Miss. Afes. Bull. Mississippi Agricultural & Forestry Experiment Station Information Sheet = Miss Afes Info Sheet Mississippi Agricultural & Forestry Experiment Station Information Sheet = Miss. Afes. Info. Sheet Mississippi Agricultural & Forestry Experiment Station Research Report = Miss Afes Res Rep Mississippi Agricultural & Forestry Experiment Station Research Report = Miss. Afes. Res. Rep. Mississippi Agricultural & Forestry Experiment Station Technical Bulletin = Miss Afes Tech Bull Mississippi Agricultural & Forestry Experiment Station Technical Bulletin = Miss. Afes. Tech. Bull. Mississippi College law review. Mississippi College. School of Law = Miss Coll Law Rev Mississippi Dental Association journal = Miss Dent Assoc J Mississippi Dental Association Journal = Miss. Dent. Assoc. J. Mississippi law journal = Miss Law J Mississippi Law Journal = Miss Law J Mississippi Law Journal = Miss. Law J. Mississippi Quarterly = Miss Quart Mississippi Quarterly = Miss. Quart. Mississippi RN = Miss RN Mississippi RN = Miss. RN Mississippi Valley Historical Review = Miss Valley Hist Rev Mississippi Valley Historical Review = Miss. Valley Hist. Rev. Mississippi Valley Journal of Business and Economics=Miss. Val. J. Bus. Econ. Mississippi Valley Journal of Business and Economics = Miss Valley J Bus Ec Mississippi Valley Journal of Business and Economics = Miss. Valley J. Bus. Ec. Mississippi Valley medical journal = Miss Valley Med J Missouri Agricultural Experiment Station Research Bulletin = Mo Aes Res Bull Missouri Agricultural Experiment Station Research Bulletin = Mo. Aes. Res. Bull. Missouri Agricultural Experiment Station Special Report = Mo Aes Spec Rep Missouri Agricultural Experiment Station Special Report = Mo. Aes. Spec. Rep. Missouri dental journal (Jefferson City, Mo.) = Mo Dent J Missouri Dental Journal = Mo. Dent. J. Missouri historical review = Mo Hist Rev Missouri Journal of Mathematical Sciences = Missouri J. Math. Sci. Missouri law review = Miss Law Rev Missouri medicine = Mo Med Missouri Medicine=Mo Med;; Missouri Medicine = Mo Med Missouri Medicine = Mo. Med. Missouri Nurse = Mo. Nurse Missouri statutes annotated : The laws of a general and permanent nature as contained in the Revised statutes of Missouri, 1929, including laws of the 56th General assembly, 1931, together with annotations from the cases construing thos... = Mo Statut Annot Mo Missouri Symposium On Research and Educational Policy = Mo S Res Educ Pol Missouri Symposium On Research and Educational Policy = Mo. S. Res. Educ. Pol. Mitbestimmungsgesetz Und Drittelbeteiligungsgesetz: Kommentar, 5.auflage = Degruyter Komment Mitbestimmungsgesetz Und Drittelbeteiligungsgesetz: Kommentar, 5.auflage = Degruyter. Komment. Mitigating Impacts of Natural Hazards On Fishery Ecosystems = Am Fish S S Mitigating Impacts of Natural Hazards On Fishery Ecosystems = Am. Fish. S. S. Mitigation and Adaptation Strategies for Global Change = Mitig Adapt Strat Gl Mitigation and Adaptation Strategies for Global Change = Mitig. Adapt. Strat. Gl. Mitigation and Financing of Seismic Risks: Turkish and International Perspectives = Nato Sci S Ss Iv Ear Mitigation and Financing of Seismic Risks: Turkish and International Perspectives = Nato. Sci. S. Ss. Iv. Ear. Mitigation of Metal Mining Influenced Water, Vol 2 = Manag Technol Met Mi Mitigation of Metal Mining Influenced Water, Vol 2 = Manag. Technol. Met. Mi. Mitigation = Stud Pragmat Mitigation = Stud. Pragmat. Mitochondria, 2nd Edition = Method Cell Biol Mitochondria, 2nd Edition = Method. Cell. Biol. Mitochondria and Cell Death = Biochem Soc Symp Mitochondria and Cell Death = Biochem. Soc. Symp. Mitochondria and Oxidative Stress in Neurodegenerative Disorders = Ann Ny Acad Sci Mitochondria and Oxidative Stress in Neurodegenerative Disorders = Ann. Ny. Acad. Sci. Mitochondrial Biogenesis and Genetics, Pt A = Method Enzymol Mitochondrial Biogenesis and Genetics, Pt A = Method. Enzymol. Mitochondrial Dna: Methods and Protocols = Methods Mol Biol Mitochondrial Dna: Methods and Protocols = Methods Mol. Biol. Mitochondrial Dna = Mitochondr Dna Mitochondrial Dna = Mitochondr. Dna Mitochondrial Encephalomyopathies = Prog Neuropath Mitochondrial Encephalomyopathies = Prog. Neuropath. Mitochondrial Function and Dysfunction = Int Rev Neurobiol Mitochondrial Function and Dysfunction = Int. Rev. Neurobiol. Mitochondrial Pathogenesis: From Genes and Apoptosis to Aging and Disease = Ann Ny Acad Sci Mitochondrial Pathogenesis: From Genes and Apoptosis to Aging and Disease = Ann. Ny. Acad. Sci. Mitochondrial Research in Translational Medicine = Ann Ny Acad Sci Mitochondrial Research in Translational Medicine = Ann. Ny. Acad. Sci. Mitochondria: Structure, Functions and Dysfunctions = Cell Bio Res Prog Mitochondria: Structure, Functions and Dysfunctions = Cell. Bio. Res. Prog. Mitochondrion in The Germline and Early Development = Curr Top Dev Biol Mitochondrion in The Germline and Early Development = Curr. Top. Dev. Biol. Mitochondrion = Mitochondrion Mitosis: Methods and Protocols = Methods Mol Biol Mitosis: Methods and Protocols = Methods Mol. Biol. MIT Press Series in Artificial Intelligence = MIT Press Ser. Artificial Intelligence MIT Press Series in Logic Programming = MIT Press Ser. Logic Program. Mit Press Series in Logic Programming = Mit Ps Log Mit Press Series in Logic Programming = Mit Ps. Log. MIT Press Series on Economic Learning and Social Evolution = MIT Press Ser. Econ. Learn. Soc. Evol. Mit Press Sourcebooks = Mit Press Sourceb Mit Press Sourcebooks = Mit Press Sourceb. Mit Sloan Management Review = Mit Sloan Manage Rev Mit Sloan Management Review = Mit Sloan Manage. Rev. MIT's technology review = MITS Technol Rev Mitsubishi Electric Advance = Mitsubishi Electr Ad Mitsubishi Electric Advance = Mitsubishi Electr. Ad. Mitteilungen aus dem Heinrich-Schliemann-Museum Ankershagen = MSchliemann Mitteilungen aus dem Mathematischen Seminar Giessen = Mitt. Math. Sem. Giessen Mitteilungen aus der Arbeitsmarkt- und Berufsforschung = Mitt Arbeitsmarkt Berufsforsch Mitteilungen aus der Arbeitsmarkt- und Berufsforschung=Mitteilungen Arbeitsmarkt- Berufsforschung Mitteilungen aus der Biologischen Bundesanstalt für Land- und Forstwirtschaft, Berlin-Dahlem = Mitt. Biol. Bundesanst. Land- Forstwirtsch., Berl.-Dahl. Mitteilungen aus der Norddeutschen Naturschutzakademie (NNA) = Mitt. Norddtsch. Nat.schutzakad. Mitteilungen aus der Staatsforstverwaltung Bayerns = Mitt. Staatsforstverwalt. Bayerns Mitteilungen der Aargauischen naturforschenden Gesellschaft = Mitt. Aargau. nat.forsch. Ges. Mitteilungen der Abteilung für Botanik am Landesmuseum Joanneum in Graz = Mitt. Abt. Bot. Landesmus. Joanneum Graz Mitteilungen der Abteilung für Forstliche Biometrie der Universität Freiburg = Mitt. Abt. Forstl. Biom. Univ. Freibg. Mitteilungen der Anthropologischen Gesellschaft in Wien = MAnthrWien Mitteilungen der Arbeitsgemeinschaft Geobotanik in Schleswig-Holstein und Hamburg = Mitt. Arb.gem. Geobot. Schlesw.-Holst. Hambg. Mitteilungen der Archäologischen Gesellschaft Graz = MAGesGraz Mitteilungen der Archäologischen Gesellschaft Steiermark = MAGesStei Mitteilungen der Archäologischen Gesellschaft Steiermark = MAGS Mitteilungen Der Bundesforschungsanstalt Fur Forst-und Holzwirtschaft = Mitt Bundesforsch Mitteilungen Der Bundesforschungsanstalt Fur Forst-und Holzwirtschaft = Mitt. Bundesforsch. Mitteilungen der Bundesforschungsanstalt für Forst- und Holzwirtschaft = Mitt. Bundesforsch.anst. Forst-  Holzwirtsch. Mitteilungen der Deutschen Bodenkundlichen Gesellschaft = Mitt. Dtsch. Bodenkdl. Ges. Mitteilungen der Deutschen dendrologischen Gesellschaft = Mitt. Dtsch. dendrol. Ges. Mitteilungen Der Deutschen Gesellschaft Fuer Allgemeine Und Angewandte Entomologie = M D Gesell Allg Ange Mitteilungen Der Deutschen Gesellschaft Fuer Allgemeine Und Angewandte Entomologie = M. D. Gesell. Allg. Ange. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Agewandte Entomologie, Band 11, Heft 1-6, Dezember 1997 = M D Gesell Allg Ange Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Agewandte Entomologie, Band 11, Heft 1-6, Dezember 1997 = M. D. Gesell. Allg. Ange. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 10, Heft 1-6, Dezember 1995 = Mitt Dgaae Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 10, Heft 1-6, Dezember 1995 = Mitt. Dgaae. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 12, Heft 1-6, Feb 2000 = Mitt Deut Ges Allgem Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 12, Heft 1-6, Feb 2000 = Mitt. Deut. Ges. Allgem. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 12, Heft 1-6, Feb 2000 = Mitt Dtsch Ges Allg Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 12, Heft 1-6, Feb 2000 = Mitt. Dtsch. Ges. Allg. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 17 = Mitt Deut Ges Allgem Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 17 = Mitt. Deut. Ges. Allgem. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 9, Heft 1-3, 1994 = Mitt Dgaae Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Band 9, Heft 1-3, 1994 = Mitt. Dgaae. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = M D Gesell Allg Ange Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = M. D. Gesell. Allg. Ange. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt Deut Ges Allgem Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt. Deut. Ges. Allgem. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt Dgaae Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt. Dgaae. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt Dtsch Ges Allg Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie = Mitt. Dtsch. Ges. Allg. Mitteilungen der Deutschen Gesellschaft für allgemeine und angewandte Entomologie = Mitt. Dtsch. Ges. allg. angew. Entomol. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = M D Gesell Allg Ange Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = M. D. Gesell. Allg. Ange. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = Mitt Deut Ges Allgem Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = Mitt. Deut. Ges. Allgem. Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = Mitt Dtsch Ges Allg Mitteilungen Der Deutschen Gesellschaft Fur Allgemeine Und Angewandte Entomologie, Vol 16 = Mitt. Dtsch. Ges. Allg. Mitteilungen der deutschen malakozoologischen Gesellschaft = Mitt. dtsch. malakozool. Ges. Mitteilungen der Deutschen Mathematiker-Vereinigung = Mitt. Dtsch. Math.-Ver. Mitteilungen der Deutschen Orient-Gesellschaft zu Berlin = MDOG Mitteilungen der Deutschen Pharmazeutischen Gesellschaft und der Pharmazeutischen Gesellschaft der DDR = Mitt. Dtsch. Pharm. Ges. Pharm. Ges. DDR Mitteilungen der Eidg. Forschungsanstalt für Wald, Schnee und Landschaft = Mitt. Eidgenöss. Forsch.anst. Wald Schnee Landsch. Mitteilungen der Entomologischen Gesellschaft Basel = Mitt. Entomol. Ges. Basel Mitteilungen der Floristisch-soziologischen Arbeitsgemeinschaft = Mitt. Florist.-soziol. Arb.gem. Mitteilungen der Forstlichen Bundes-Versuchsanstalt Wien = Mitt. Forstl. Bundes-Vers.anst. Wien Mitteilungen der Forstlichen Versuchs- und Forschungsanstalt Baden-Württemberg = Mitt. Forstl. Vers.- Forsch.anst. Baden-Württ. Mitteilungen der Geographisch-Ethnographischen Gesellschaft Zürich = Mitt. Geogr.-Ethnogr. Ges. Zür. Mitteilungen der Gesellschaft für Angewandte Mathematik und Mechanik = GAMM Mitt. Ges. Angew. Math. Mech. Mitteilungen der Gesellschaft für Angewandte Mathematik und Mechanik = Mitt. Ges. Angew. Math. Mech. Mitteilungen der Gesellschaft für Bibliothekswesen und Dokumentation des Landbaues = Mitt. Ges. Bibl.wes. Dok. Landbaues Mitteilungen der Gesellschaft fur Salzburger Landeskunde = Mitt Ges Salzburger Landeskd Mitteilungen der Hessischen Landesforstverwaltung = Mitt. Hess. Landesforstverwalt. Mitteilungen der Internationalen bodenkundlichen Gesellschaft = Mitt. Int. bodenkdl. Ges. Mitteilungen der Mathematischen Gesellschaft in Hamburg = Mitt. Math. Ges. Hamburg Mitteilungen der Naturforschenden Gesellschaft des Kantons Glarus = Mitt. Nat.forsch. Ges. Kanton Glarus Mitteilungen der Naturforschenden Gesellschaft des Kantons Solothurn = Mitt. Nat.forsch. Ges. Kanton Solothurn Mitteilungen der Naturforschenden Gesellschaft in Bern = Mitt. Nat.forsch. Ges. Bern Mitteilungen der Naturforschenden Gesellschaft Luzern = Mitt. Nat.forsch. Ges. Luzern Mitteilungen der Naturforschenden Gesellschaft Schaffhausen = Mitt. Nat.forsch. Ges. Schaffhausen  Mitteilungen der Naturwissenschaftlichen Gesellschaft Thun = Mitt. Nat.wiss. Ges. Thun Mitteilungen der Naturwissenschaftlichen Gesellschaft Winterthur = Mitt. Nat.wiss. Ges. Winterthur Mitteilungen der Niedersächsischen forstlichen Versuchsanstalt = Mitt. Niedersächs. forstl. Vers.anst. Mitteilungen Der Osterreichischen Geographischen Gesellschaft = Mitt Osterr Geogr G Mitteilungen Der Osterreichischen Geographischen Gesellschaft = Mitt. Osterr. Geogr. G. Mitteilungen der Osterreichischen Gesellschaft fur Tropenmedizin und Parasitologie = Mitt Osterr Ges Tropenmed Parasitol Mitteilungen der Österreichischen Numismatischen Gesellschaft = MOeNumGes Mitteilungen der osterreichischen Sanitatsverwaltung = Mitt Osterr Sanitatsverwalt Mitteilungen der Prähistorischen Kommission der Österreichischen Akademie der Wissenschaften = MPraehistKomWien Mitteilungen der Schweizerischen Entomologischen Gesellschaft = Mitt. Schweiz. Entomol. Ges. Mitteilungen Der Schweizerischen Gesellschaft Fur Boden- Und Felsmechanik = Mit Sch Ges Mitteilungen Der Schweizerischen Gesellschaft Fur Boden- Und Felsmechanik = Mit. Sch. Ges. Mitteilungen der Thurgauischen Naturforschenden Gesellschaft = Mitt. Thurgau. Nat.forsch. Ges. Mitteilungen der Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie an der Eidg. Technischen Hochschule Zürich = Mitt. Vers.anst. Wasserbau Hydrol. Glaziol. Eidgenöss. Tech. Hochsch. Zür. Mitteilungen Der Versuchsanstalt Fur Wasserbau, Hydrologie Und Glaziologie = Mit Ver Was Mitteilungen Der Versuchsanstalt Fur Wasserbau, Hydrologie Und Glaziologie = Mit. Ver. Was. Mitteilungen des Arbeitskreises Wald und Wasser = Mitt. Arb.kr. Wald Wasser Mitteilungen des Archäologischen Instituts der Ungarischen Akademie der Wissenschaften = MAInstUngAk Mitteilungen des Badischen Landesvereins für Naturkunde und Naturschutz = Mitt. Bad. Landesver. Nat.kd. Nat.schutz Mitteilungen des Deutschen Archäologen-Verbandes e.V. = MDAVerb Mitteilungen des Deutschen Archäologischen Instituts, Abteilung Kairo = MDAIK Mitteilungen des Deutschen Archäologischen Instituts (Abt. Istambul) = MDAI(I) Mitteilungen des Deutschen Archäologischen Instituts (Abt. Madrid) = MDAI(M) Mitteilungen des Deutschen Archäologischen Instituts, Athenische Abteilung = AM Mitteilungen des Deutschen Archaologischen Instituts. Deutsches Archaologisches Institut. Abteilung Kairo = Mitt Dtsch Archaeol Inst Abt Kairo Mitteilungen des Deutschen Archäologischen Instituts = MdI Mitteilungen des Deutschen Archäologischen Instituts, Römische Abteilung = RM Mitteilungen des Deutschen Archäologischen Instituts (Athen. Abt.) = MDAI(A) Mitteilungen des Deutschen Archäologischen Instituts (Röm. Abt.) = MDAI(R) Mitteilungen des Eidg. Institutes für Schnee- und Lawinenforschung = Mitt. Eidgenöss. Inst. Schnee- Lawinenforsch. Mitteilungen des Historischen Vereins des Kantons Schwyz = Mitt. Hist. Ver. Kanton Schwyz Mitteilungen Des Instituts Fur Asienkunde Hamburg = Mit Inst Asienk Hamb Mitteilungen Des Instituts Fur Asienkunde Hamburg = Mit. Inst. Asienk. Hamb. Mitteilungen des Instituts für Orientforschung = MIO Mitteilungen des Instituts für österreichische Geschichtsforschung = MIöG Mitteilungen Des Instituts Fur Osterreichische Geschichtsforschung = Mitt Inst Osterr Ges Mitteilungen Des Instituts Fur Osterreichische Geschichtsforschung = Mitt. Inst. Osterr. Ges. Mitteilungen des Kremser Stadtarchivs. Krems an der Donau (Austria). Stadtarchiv = Mitt Krems Stadtarch Mitteilungen Des Kunsthistorischen Institutes in Florenz = Mitt Kunsthist I Flo Mitteilungen Des Kunsthistorischen Institutes in Florenz = Mitt. Kunsthist. I. Flo. Mitteilungen des Kunsthistorischen Institutes in Florenz = MKuHistFlorenz Mitteilungen des Kuratoriums für Waldarbeit und Forsttechnik = Mitt. Kurat. Waldarb. Forsttech. Mitteilungen des Vereins für forstliche Standortskunde und Forstpflanzenzüchtung = Mitt. Ver. forstl. Standortskd. Forstpflanzenzücht. Mitteilungen. Deutsche Pharmazeutische Gesellschaft = Mitt Dtsch Pharm Ges Pharm Ges DDR Mitteilungen Eidg. Anstalt für das forstliche Versuchswesen = Mitt. Eidgenöss. Anst. forstl. Vers.wes. Mitteilungen - Gesellschaft Deutscher Chemiker - Fachgruppe Geschichte der Chemie = Mitt. Gesell. Dtscher. Chem. Fachgruppe Gesch. Chem. Mitteilungen Internationale Vereinigung fur Theoretische und Angewandte Limnologie = Mitt. Int. Ver. Theor. Angew. Limnol. Mitteilungen Klosterneuburg = Mitt Klosterneubg Mitteilungen Klosterneuburg = Mitt. Klosterneubg. Mitteilungen Klosterneuburg = Mitt Klosterneuburg Mitteilungen Klosterneuburg = Mitt. Klosterneuburg Mitteilungen. Leichtweiss-Institut für Wasserbau der Technischen Universität Braunschweig = MInstWasser Mitteilungen. Schweizerische Unfallversicherungsanstalt. Medizinische Abteilung = Mitt Med Abt Schweiz Unfallversicherunst Mitteilungen und Forschungsbeitrage der Cusanus-Gesellschaft = Mitt Forschungsbeitr Cusanus Ges Mitteilungen zur christlichen Archäologie = MiChA Mitteilungen zur christlichen Archäologie = MitChrA Mitteilungen zur frühchristlichen Archäologie in Österreich = MFruehChrOe Mitteilungen zur Kulturkunde = MKul Mitteilungen zur spätantiken Archäologie und byzantinischen Kunstgeschichte = MSpaetAByz Mitteilungsblatt der Schweizerischen Gesellschaft für Ur- und Frühgeschichte = MSchwUrFruehGesch Mitteilungsblatt für Vor- und Frühgeschichte = MBlVFruehGesch Mitteilungsblatt. Osterreichische Gesellschaft fur Statistik und Informatik = Mittbl Osterr Ges Stat Inform Mitteldeutsche Familienkunde = Mitteldtsch Famkd Mittellateinisches Jahrbuch = Mittellat Jahrb Mittellateinisches Jahrbuch = MLatJB Mittelniederdeutsche Theophilus-spiel: Text - Ubersetzung - Stellenkommentar = Quell Fors Lit Kul G Mittelniederdeutsche Theophilus-spiel: Text - Ubersetzung - Stellenkommentar = Quell. Fors. Lit. Kul. G. Mixed Automorphic Forms, Torus Bundles, and Jacobi Forms = Lect Notes Math Mixed Automorphic Forms, Torus Bundles, and Jacobi Forms = Lect. Notes. Math. Mixed Boundary Value Problems = Ch Crc Appl Math Non Mixed Boundary Value Problems = Ch. Crc. Appl. Math. Non. Mixed Carbonate - Siliciclastic Sequences = Sepm Core Workshop Mixed Carbonate - Siliciclastic Sequences = Sepm. Core. Workshop. Mixed Finite Elements, Compatibility Conditions, and Applications = Lect Notes Math Mixed Finite Elements, Compatibility Conditions, and Applications = Lect. Notes. Math. Mixed Finite Element Technologies = Cism Courses Lect Mixed Finite Element Technologies = Cism. Courses. Lect. Mixed Hodge Structures = Ergeb Math Grenzgeb Mixed Hodge Structures = Ergeb. Math. Grenzgeb. Mixed Ionic Electronic Conducting Perovskites for Advanced Energy Systems = Nato Sci Ser Ii-math Mixed Ionic Electronic Conducting Perovskites for Advanced Energy Systems = Nato. Sci. Ser. Ii-math. Mixed Ionic Electronic Conducting Perovskites for Advanced Energy Systems = Nato Sci Ser Ii Math Mixed Ionic Electronic Conducting Perovskites for Advanced Energy Systems = Nato. Sci. Ser. Ii. Math. Mixed-mode Crack Behavior = Am Soc Test Mater Mixed-mode Crack Behavior = Am. Soc. Test. Mater. Mixed Surfactant Systems = Acs Sym Ser Mixed Surfactant Systems = Acs. Sym. Ser. Mixed Valency Systems : Applications in Chemistry, Physics and Biology = Nato Adv Sci I C-mat Mixed Valency Systems : Applications in Chemistry, Physics and Biology = Nato. Adv. Sci. I. C-mat. Mixing: Chaos and Turbulence = Nato Adv Sci I B-phy Mixing: Chaos and Turbulence = Nato. Adv. Sci. I. B-phy. Miyagi National College of Technology = Res. Rep. Miyagi Nat. College Tech. Mk Process At 50 Years: A Powerful Tool for Astrophysical Insight = Astr Soc P Mk Process At 50 Years: A Powerful Tool for Astrophysical Insight = Astr. Soc. P. Mljekarstvo = Mljekarstvo MLM Reports = MLM Rep. MLM [reports]. U.S. Atomic Energy Commission = MLM Rep MLN bulletin = MLN Bull MLN Bulletin = MLN Bull. Mln = Mln Mln-modern Language Notes = Mln-mod Lang Notes Mln-modern Language Notes = Mln-mod. Lang. Notes MLO: medical laboratory observer = MLO Med Lab Obs MLO; Medical Laboratory Observer = MLO. Med. Lab. Obs. MLQ = MLQ Math. Log. Q. Mmactee' 08: Proceedings of The 10th Wseas International Conference Mathermatical Methods and Computational Techniques in Electrical Engineering = Ele Com Eng Mmactee' 08: Proceedings of The 10th Wseas International Conference Mathermatical Methods and Computational Techniques in Electrical Engineering = Ele. Com. Eng. M = M. B. Porter Lectures MMG. Medizin, Mensch, Gesellschaft = Mmg Mmixware: A Risc Computer for The Third Millennium = Lect Notes Comput Sc Mmixware: A Risc Computer for The Third Millennium = Lect. Notes. Comput. Sc. Mm-wave Silicon Technology: 60 Ghz and Beyond = Integr Circuit Syst Mm-wave Silicon Technology: 60 Ghz and Beyond = Integr. Circuit. Syst. Mmw-fortschritte Der Medizin = Mmw-fortsch Medizin Mmw-fortschritte Der Medizin = Mmw-fortsch. Medizin MMW Fortschritte der Medizin = MMW Fortschr Med MMW Fortschritte der Medizin = MMW Fortschr. Med. MMW, Munchener medizinische Wochenschrift = MMW Munch Med Wochenschr MMW; Munchener Medizinische Wochenschrift = MMW Munch. Med. Wochenschr. MMWR Cdc Surveillance Summaries=MMWR CDC Surveill Summ;; MMWR CDC Surveillance Summaries = MMWR CDC Surveill. Summ. MMWR. CDC surveillance summaries : Morbidity and mortality weekly report. CDC surveillance summaries / Centers for Disease Control = MMWR CDC Surveill Summ MMWR. Morbidity and mortality weekly report = MMWR Morb Mortal Wkly Rep MMWR; Morbidity and Mortality Weekly Report = MMWR Morb. Mortal. Wkly. Rep. MMWR. Morbidity and Mortality Weekly Report=MMWR Morb Mortal Wkly Rep;; MMWR. Recommendations and reports : Morbidity and mortality weekly report. Recommendations and reports / Centers for Disease Control = MMWR Recomm Rep MMWR Surveillance Summaries = MMWR Surveill. Summ. MMWR. Surveillance summaries : Morbidity and mortality weekly report. Surveillance summaries / CDC = MMWR Surveill Summ Mn'09: Proceedings of The 2nd International Conference On Maritime and Naval Science and Engineering = Ma Comput Sci Eng Mn'09: Proceedings of The 2nd International Conference On Maritime and Naval Science and Engineering = Ma. Comput. Sci. Eng. MNA accent / Minnesota Nurses Association = MNA Accent MNA Accent = MNA Accent Mnemosyne. A Journal of Classical Studies = Mnemosyne Mnemosyne: bibliotheca classica Batava = Mnemosyne Mnemosyne = Mnemosyne Mnemosyne Supplementa = Mnemosyne Suppl Mnemosyne Supplementa = Mnemosyne Suppl. Moab in The Iron Age: Hegemony, Polity, Archaeology = Archaeol Cult Soc Moab in The Iron Age: Hegemony, Polity, Archaeology = Archaeol. Cult. Soc. Mobiili-ict Kiinteisto- Ja Rakennusalalla = Vtt Res Notes Mobiili-ict Kiinteisto- Ja Rakennusalalla = Vtt. Res. Notes. Mobile Ad-hoc and Sensor Networks, Proceedings = Lect Notes Comput Sc Mobile Ad-hoc and Sensor Networks, Proceedings = Lect. Notes. Comput. Sc. Mobile Agents: Control Algorithms = Lect Notes Comput Sc Mobile Agents: Control Algorithms = Lect. Notes. Comput. Sc. Mobile Agents for Telecommunication Applications, Proceedings = Lect Notes Comput Sc Mobile Agents for Telecommunication Applications, Proceedings = Lect. Notes. Comput. Sc. Mobile Agents = Lect Notes Comput Sc Mobile Agents = Lect. Notes. Comput. Sc. Mobile Agents: Principles of Operation and Applications = Adv Manag Inform Mobile Agents: Principles of Operation and Applications = Adv. Manag. Inform. Mobile Agents, Proceedings = Lect Notes Comput Sc Mobile Agents, Proceedings = Lect. Notes. Comput. Sc. Mobile and Rapidly Assembled Structures Iii = Adv Arc Ser Mobile and Rapidly Assembled Structures Iii = Adv. Arc. Ser. Mobile and Ubiquitous Information Access = Lect Notes Comput Sc Mobile and Ubiquitous Information Access = Lect. Notes. Comput. Sc. Mobile and Wireless Communication Networks = Int Fed Info Proc Mobile and Wireless Communication Networks = Int. Fed. Info. Proc. Mobile and Wireless Communications Networks = Lect Notes Comput Sc Mobile and Wireless Communications Networks = Lect. Notes. Comput. Sc. Mobile Communications International = Mob Commun Int Mobile Communications International = Mob. Commun. Int. Mobile Communications = Lect Notes Comput Sc Mobile Communications = Lect. Notes. Comput. Sc. Mobile Computing Research and Applications = Comput Sci Tech Appl Mobile Computing Research and Applications = Comput. Sci. Tech. Appl. Mobile Data Access = Lect Notes Comput Sc Mobile Data Access = Lect. Notes. Comput. Sc. Mobile Data Management, Proceedings = Lect Notes Comput Sc Mobile Data Management, Proceedings = Lect. Notes. Comput. Sc. Mobile Datat Access = Lect Notes Comput Sc Mobile Datat Access = Lect. Notes. Comput. Sc. Mobile Entity Localization and Tracking in Gps-less Environments = Lect Notes Comput Sc Mobile Entity Localization and Tracking in Gps-less Environments = Lect. Notes. Comput. Sc. Mobile Human-computer Interaction - Mobilehci 2004, Proceedings = Lect Notes Comput Sc Mobile Human-computer Interaction - Mobilehci 2004, Proceedings = Lect. Notes. Comput. Sc. Mobile Hybrid Intrusion Detection: The Movicab-ids System = Stud Comput Intell Mobile Hybrid Intrusion Detection: The Movicab-ids System = Stud. Comput. Intell. Mobile Information Systems-bk = Int Fed Info Proc Mobile Information Systems-bk = Int. Fed. Info. Proc. Mobile Information Systems Ii = Int Fed Info Proc Mobile Information Systems Ii = Int. Fed. Info. Proc. Mobile Information Systems = Mob Inf Syst Mobile Information Systems = Mob. Inf. Syst. Mobile Multimedia/image Processing for Military and Security Applications 2007 = Proc Spie Mobile Multimedia/image Processing for Military and Security Applications 2007 = Proc. Spie. Mobile Multimedia/image Processing for Military and Security Applications 2007 = P Soc Photo-opt Ins Mobile Multimedia/image Processing for Military and Security Applications 2007 = P. Soc. Photo-opt. Ins. Mobile Multimedia/image Processing for Military and Security Applications = Proc Spie Mobile Multimedia/image Processing for Military and Security Applications = Proc. Spie. Mobile Multimedia/image Processing for Military and Security Applications = P Soc Photo-opt Ins Mobile Multimedia/image Processing for Military and Security Applications = P. Soc. Photo-opt. Ins. Mobile Multimedia/image Processing, Security, and Applications 2008 = Proc Spie Mobile Multimedia/image Processing, Security, and Applications 2008 = Proc. Spie. Mobile Multimedia/image Processing, Security, and Applications 2010 = P Soc Photo-opt Ins Mobile Multimedia/image Processing, Security, and Applications 2010 = P. Soc. Photo-opt. Ins. Mobile Multimedia/image Processing, Security, and Applications 2011 = P Soc Photo-opt Ins Mobile Multimedia/image Processing, Security, and Applications 2011 = P. Soc. Photo-opt. Ins. Mobile Multimedia Processing: Fundamentals, Methods, and Applications = Lect Notes Comput Sc Mobile Multimedia Processing: Fundamentals, Methods, and Applications = Lect. Notes. Comput. Sc. Mobile Networks & Applications = Mobile Netw Appl Mobile Networks & Applications = Mobile Netw. Appl. Mobile Object Systems = Lect Notes Comput Sc Mobile Object Systems = Lect. Notes. Comput. Sc. Mobile Particulate Systems = Nato Adv Sci Inst Se Mobile Particulate Systems = Nato. Adv. Sci. Inst. Se. Mobile Response = Lect Notes Comput Sc Mobile Response = Lect. Notes. Comput. Sc. Mobile Robots Iv = P Soc Photo-opt Ins Mobile Robots Iv = P. Soc. Photo-opt. Ins. Mobile Robots Ix = P Soc Photo-opt Ins Mobile Robots Ix = P. Soc. Photo-opt. Ins. Mobile Robots: The Evolutionary Approach = Stud Comput Intell Mobile Robots: The Evolutionary Approach = Stud. Comput. Intell. Mobile Robots Viii = P Soc Photo-opt Ins Mobile Robots Viii = P. Soc. Photo-opt. Ins. Mobile Robots Vii = P Soc Photo-opt Ins Mobile Robots Vii = P. Soc. Photo-opt. Ins. Mobile Robots Vi = P Soc Photo-opt Ins Mobile Robots Vi = P. Soc. Photo-opt. Ins. Mobile Robots V = P Soc Photo-opt Ins Mobile Robots V = P. Soc. Photo-opt. Ins. Mobile Robots Xi and Automated Vehicle Control Systems = P Soc Photo-opt Ins Mobile Robots Xi and Automated Vehicle Control Systems = P. Soc. Photo-opt. Ins. Mobile Robots Xiii and Intelligent Transportation Systems = Proc Spie Mobile Robots Xiii and Intelligent Transportation Systems = Proc. Spie. Mobile Robots Xiii and Intelligent Transportation Systems = P Soc Photo-opt Ins Mobile Robots Xiii and Intelligent Transportation Systems = P. Soc. Photo-opt. Ins. Mobile Robots Xii = P Soc Photo-opt Ins Mobile Robots Xii = P. Soc. Photo-opt. Ins. Mobile Robots Xiv = Proc Spie Mobile Robots Xiv = Proc. Spie. Mobile Robots Xiv = P Soc Photo-opt Ins Mobile Robots Xiv = P. Soc. Photo-opt. Ins. Mobile Robots X = P Soc Photo-opt Ins Mobile Robots X = P. Soc. Photo-opt. Ins. Mobile Robots Xv and Telemanipulator and Telepresence Technologies Vii = Proc Spie Mobile Robots Xv and Telemanipulator and Telepresence Technologies Vii = Proc. Spie. Mobile Robots Xv and Telemanipulator and Telepresence Technologies Vii = P Soc Photo-opt Ins Mobile Robots Xv and Telemanipulator and Telepresence Technologies Vii = P. Soc. Photo-opt. Ins. Mobile Robots Xvii = Proc Spie Mobile Robots Xvii = Proc. Spie. Mobile Robots Xvii = P Soc Photo-opt Ins Mobile Robots Xvii = P. Soc. Photo-opt. Ins. Mobile Robots Xvi = Proc Spie Mobile Robots Xvi = Proc. Spie. Mobile Robots Xvi = P Soc Photo-opt Ins Mobile Robots Xvi = P. Soc. Photo-opt. Ins. Mobile Robot Technology, Proceedings = Ifac Work S Mobile Robot Technology, Proceedings = Ifac. Work. S. Mobile Technologies of The City = Networked Cities Ser Mobile Technologies of The City = Networked. Cities. Ser. Mobile Tv: Customizing Content and Experience = Hum-comput Int-sprin Mobile Tv: Customizing Content and Experience = Hum-comput. Int-sprin. Mobile Wimax: Toward Broadband Wireless Metropolitan Area Networks = Wirel Netw Mob Commu Mobile Wimax: Toward Broadband Wireless Metropolitan Area Networks = Wirel. Netw. Mob. Commu. Mobile Wireless Middleware, Operating Systems, and Applications = L N Inst Comp Sci So Mobile Wireless Middleware, Operating Systems, and Applications = L. N. Inst. Comp. Sci. So. Mobilities = Mobilities-uk Mobilities = Mobilities-uk. Mobility and Transport for Elderly and Disabled Persons = Transp Stud Mobility and Transport for Elderly and Disabled Persons = Transp. Stud. Mobility Aware Technologies and Applications, Proceedings = Lect Notes Comput Sc Mobility Aware Technologies and Applications, Proceedings = Lect. Notes. Comput. Sc. Mobility = Key Ideas Geogr Mobility = Key. Ideas. Geogr. Mobility, Sexuality and Aids = Sex Cult Health Mobility, Sexuality and Aids = Sex. Cult. Health. Mobilization = Mobilization Mobius = Mobius Mobiwac'07: Proceedings of The Fifth Acm International Workshop On Mobility Management and Wireless Access = I W Mob Man Wirel Ac Mobiwac'07: Proceedings of The Fifth Acm International Workshop On Mobility Management and Wireless Access = I. W. Mob. Man. Wirel. Ac. Mobiwac'08: Proceedings of The Sixth Acm International Symposium On Mobility Management and Wireless Access = I W Mob Man Wirel Ac Mobiwac'08: Proceedings of The Sixth Acm International Symposium On Mobility Management and Wireless Access = I. W. Mob. Man. Wirel. Ac. MOCT-MOST: Economic Policy in Transitional Economies=MOCT-MOST: Econ. Pol. Transitional Economies Moda 4 - Advances in Model-oriented Data Analysis = Contr Stat Moda 4 - Advances in Model-oriented Data Analysis = Contr. Stat. Moda6 Advances in Model-oriented Design and Analysis = Contrib Stat Moda6 Advances in Model-oriented Design and Analysis = Contrib. Stat. Moda6 Advances in Model-oriented Design and Analysis = Contr Stat Moda6 Advances in Model-oriented Design and Analysis = Contr. Stat. Moda 7 - Advances in Model-oriented Design and Analysis, Proceedings = Contrib Stat Moda 7 - Advances in Model-oriented Design and Analysis, Proceedings = Contrib. Stat. Moda 7 - Advances in Model-oriented Design and Analysis, Proceedings = Contr Stat Moda 7 - Advances in Model-oriented Design and Analysis, Proceedings = Contr. Stat. Moda 8 - Advances in Model-oriented Design and Analysis = Contrib Stat Moda 8 - Advances in Model-oriented Design and Analysis = Contrib. Stat. Moda 8 - Advances in Model-oriented Design and Analysis = Contr Stat Moda 8 - Advances in Model-oriented Design and Analysis = Contr. Stat. Modal Analysis-the International Journal of Analytical and Experimental Modal Analysis = Modal Anal Modal Analysis-the International Journal of Analytical and Experimental Modal Analysis = Modal Anal. Modal Array Signal Processing: Principles and Applications of Acoustic Wavefield Decomposition = Lect Notes Contr Inf Modal Array Signal Processing: Principles and Applications of Acoustic Wavefield Decomposition = Lect. Notes. Contr. Inf. Modal Interpretation of Quantum Mechanics = West Ont Ser Philos Modal Interpretation of Quantum Mechanics = West. Ont. Ser. Philos. Modal Interpretation of Quantum Mechanics = W Ont Ser Philos Sci Modal Interpretation of Quantum Mechanics = W. Ont. Ser. Philos. Sci. Modalities and Multimodalities = Logic Epistemol Unit Modalities and Multimodalities = Logic. Epistemol. Unit. Modality = Acta Analyt Modality = Acta. Analyt. Modality and Ellipsis = Trends Linguist-stud Modality and Ellipsis = Trends. Linguist-stud. Modality in Grammar and Discourse = Typol St L Modality in Grammar and Discourse = Typol. St. L. Modality in Specialized Texts = Ling Insights Modality in Specialized Texts = Ling. Insights. Modals and Quasi-modals in English = Lang Comput Modals and Quasi-modals in English = Lang. Comput. Modals in The Languages of Europe: A Reference Work = Empir Approach Lang Modals in The Languages of Europe: A Reference Work = Empir. Approach. Lang. Model Abstraction in Dynamical Systems: Application to Mobile Robot Control = Lect Notes Contr Inf Model Abstraction in Dynamical Systems: Application to Mobile Robot Control = Lect. Notes. Contr. Inf. Model-based Control of Logistics Processes in Volatile Environments: Decision Support for Operations Planning in Supply Consortia = Oper Res Comput Sci Model-based Control of Logistics Processes in Volatile Environments: Decision Support for Operations Planning in Supply Consortia = Oper. Res. Comput. Sci. Model-based Engineering of Embedded Real-time Systems = Lect Notes Comput Sc Model-based Engineering of Embedded Real-time Systems = Lect. Notes. Comput. Sc. Model-based Geostatistics = Springer Ser Stat Model-based Geostatistics = Springer. Ser. Stat. Model Based Learning and Instruction in Science = Model Model Sci Educ Model Based Learning and Instruction in Science = Model Model Sci. Educ. Model-based Process Supervision: A Bond Graph Approach = Adv Ind Control Model-based Process Supervision: A Bond Graph Approach = Adv. Ind. Control. Model-based Reasoning in Science and Technology: Abduction, Logic and Computational Discovery = Stud Comp Intell Model-based Reasoning in Science and Technology: Abduction, Logic and Computational Discovery = Stud. Comp. Intell. Model-based Reasoning in Science and Technology: Abduction, Logic and Computational Discovery = Stud Comput Intell Model-based Reasoning in Science and Technology: Abduction, Logic and Computational Discovery = Stud. Comput. Intell. Model-based Reasoning in Science, Technology, and Medicine = Stud Comp Intell Model-based Reasoning in Science, Technology, and Medicine = Stud. Comp. Intell. Model-based Reasoning in Science, Technology, and Medicine = Stud Comput Intell Model-based Reasoning in Science, Technology, and Medicine = Stud. Comput. Intell. Model-based Software and Data Integration = Comm Com Inf Sc Model-based Software and Data Integration = Comm. Com. Inf. Sc. Model-based Testing of Reactive Systems = Lect Notes Comput Sc Model-based Testing of Reactive Systems = Lect. Notes. Comput. Sc. Model-based Vision Development and Tools = P Soc Photo-opt Ins Model-based Vision Development and Tools = P. Soc. Photo-opt. Ins. Model-based Vision = P Soc Photo-opt Ins Model-based Vision = P. Soc. Photo-opt. Ins. Modelcare 90 : Calibration and Reliability in Groundwater Modelling = Iahs-aish P Modelcare 90 : Calibration and Reliability in Groundwater Modelling = Iahs-aish. P. Model Cellulosic Surfaces = Acs Sym Ser Model Cellulosic Surfaces = Acs. Sym. Ser. Model Checking and Artificial Intelligence = Lect Notes Artif Int Model Checking and Artificial Intelligence = Lect. Notes. Artif. Int. Model Checking and Artificial Intelligence = Lect Notes Comput Sc Model Checking and Artificial Intelligence = Lect. Notes. Comput. Sc. Model-checking Based Data Retrieval: An Application to Semistructured and Temporal Data = Lect Notes Comput Sc Model-checking Based Data Retrieval: An Application to Semistructured and Temporal Data = Lect. Notes. Comput. Sc. Model Checking Software = Lect Notes Comput Sc Model Checking Software = Lect. Notes. Comput. Sc. Model Checking Software, Proceedings = Lect Notes Comput Sc Model Checking Software, Proceedings = Lect. Notes. Comput. Sc. Model Driven Architecture - Foundations and Applications = Lect Notes Comput Sc Model Driven Architecture - Foundations and Applications = Lect. Notes. Comput. Sc. Model Driven Architecture - Foundations and Applications, Proceedings = Lect Notes Comput Sc Model Driven Architecture - Foundations and Applications, Proceedings = Lect. Notes. Comput. Sc. Model Driven Architecture Foundations and Applications, Proceedings = Lect Notes Comput Sc Model Driven Architecture Foundations and Applications, Proceedings = Lect. Notes. Comput. Sc. Model Driven Architecture = Lect Notes Comput Sc Model Driven Architecture = Lect. Notes. Comput. Sc. Model-driven Development of Reliable Automotive Services = Lect Notes Comput Sc Model-driven Development of Reliable Automotive Services = Lect. Notes. Comput. Sc. Model Driven Engineering Languages and Systems, Proceedings = Lect Notes Comput Sc Model Driven Engineering Languages and Systems, Proceedings = Lect. Notes. Comput. Sc. Model Driven Engineering Languages and Systems, Pt Ii = Lect Notes Comput Sc Model Driven Engineering Languages and Systems, Pt Ii = Lect. Notes. Comput. Sc. Model Driven Engineering Languages and Systems, Pt I = Lect Notes Comput Sc Model Driven Engineering Languages and Systems, Pt I = Lect. Notes. Comput. Sc. Model Generation for Natural Language Interpretation and Analysis = Lect Notes Artif Int Model Generation for Natural Language Interpretation and Analysis = Lect. Notes. Artif. Int. Modeling and Characterization of Light Sources = P Soc Photo-opt Ins Modeling and Characterization of Light Sources = P. Soc. Photo-opt. Ins. Modeling and Control for Efficient Bipedal Walking Robots: A Port-based Approach = Springer Trac Adv Ro Modeling and Control for Efficient Bipedal Walking Robots: A Port-based Approach = Springer. Trac. Adv. Ro. Modeling and Control in Environmental Issues 2001 = Ifac Work S Modeling and Control in Environmental Issues 2001 = Ifac. Work. S. Modeling and Control of Antennas and Telescopes = Mech Eng Ser Modeling and Control of Antennas and Telescopes = Mech. Eng. Ser. Modeling and Control of Biotechnical Processes 1992 = Ifac Symp Series Modeling and Control of Biotechnical Processes 1992 = Ifac. Symp. Series. Modeling and Control of Complex Systems = Autom Control Eng Se Modeling and Control of Complex Systems = Autom. Control Eng. Se. Modeling and Control of Ventilation = Adv Exp Med Biol Modeling and Control of Ventilation = Adv. Exp. Med. Biol. Modeling and Control of Vibration in Mechanical Systems = Autom Control Eng Se Modeling and Control of Vibration in Mechanical Systems = Autom. Control Eng. Se. Modeling and Design of Wireless Networks = Proc Spie Modeling and Design of Wireless Networks = Proc. Spie. Modeling and Design of Wireless Networks = P Soc Photo-opt Ins Modeling and Design of Wireless Networks = P. Soc. Photo-opt. Ins. Modeling and Identification of Linear Parameter-varying Systems = Lect Notes Contr Inf Modeling and Identification of Linear Parameter-varying Systems = Lect. Notes. Contr. Inf. Modeling and Numerical Simulation of Materials Behavior and Evolution = Mater Res Soc Symp P Modeling and Numerical Simulation of Materials Behavior and Evolution = Mater. Res. Soc. Symp. P. Modeling and Retrieval of Context = Lect Notes Artif Int Modeling and Retrieval of Context = Lect. Notes. Artif. Int. Modeling and Simulating Sensory Response for Real and Virtual Environments = P Soc Photo-opt Ins Modeling and Simulating Sensory Response for Real and Virtual Environments = P. Soc. Photo-opt. Ins. Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Kluwer Int Ser Eng C Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Kluwer. Int. Ser. Eng. C. Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Springer Int Ser Eng Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Springer. Int. Ser. Eng. Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Spring Int Ser Eng C Modeling and Simulation Environment for Satellite and Terrestrial Communications Networks, Proceedings = Spring. Int. Ser. Eng. C. Modeling and Simulation for Defense Systems and Applications Vi = P Soc Photo-opt Ins Modeling and Simulation for Defense Systems and Applications Vi = P. Soc. Photo-opt. Ins. Modeling and Simulation for Defense Systems and Applications V = P Soc Photo-opt Ins Modeling and Simulation for Defense Systems and Applications V = P. Soc. Photo-opt. Ins. Modeling and Simulation for Military Applications = Proc Spie Modeling and Simulation for Military Applications = Proc. Spie. Modeling and Simulation for Military Applications = P Soc Photo-opt Ins Modeling and Simulation for Military Applications = P. Soc. Photo-opt. Ins. Modeling and Simulation for Military Operations Iii = Proc Spie Modeling and Simulation for Military Operations Iii = Proc. Spie. Modeling and Simulation for Military Operations Iii = P Soc Photo-opt Ins Modeling and Simulation for Military Operations Iii = P. Soc. Photo-opt. Ins. Modeling and Simulation for Military Operations Ii = P Soc Photo-opt Ins Modeling and Simulation for Military Operations Ii = P. Soc. Photo-opt. Ins. Modeling and Simulation in Science Engineering and Technology = Model Simul Sci Eng Modeling and Simulation in Science Engineering and Technology = Model. Simul. Sci. Eng. Modeling and Simulation in Science, Engineering & Technology = Model Simul Sci Eng Modeling and Simulation in Science, Engineering & Technology = Model. Simul. Sci. Eng. Modeling and Simulation in Science, Engineering, & Technology = Model. Simul. Sci. Eng. Technol. Modeling and Simulation of Biological Networks = Proc Sym Ap Modeling and Simulation of Biological Networks = Proc. Sym. Ap. Modeling and Simulation of Higher-power Laser Systems Iv = P Soc Photo-opt Ins Modeling and Simulation of Higher-power Laser Systems Iv = P. Soc. Photo-opt. Ins. Modeling and Simulation of Laser Systems Iii = P Soc Photo-opt Ins Modeling and Simulation of Laser Systems Iii = P. Soc. Photo-opt. Ins. Modeling and Simulation of Laser Systems Ii = P Soc Photo-opt Ins Modeling and Simulation of Laser Systems Ii = P. Soc. Photo-opt. Ins. Modeling and Simulation of New Materials = Aip Conf Proc Modeling and Simulation of New Materials = Aip. Conf. Proc. Modeling and Systems Engineering for Astronomy = P Soc Photo-opt Ins Modeling and Systems Engineering for Astronomy = P. Soc. Photo-opt. Ins. Modeling and Using Context = Lect Notes Artif Int Modeling and Using Context = Lect. Notes. Artif. Int. Modeling and Using Context, Proceedings = Lect Notes Artif Int Modeling and Using Context, Proceedings = Lect. Notes. Artif. Int. Modeling Aspects in Optical Metrology Iii = Proc Spie Modeling Aspects in Optical Metrology Iii = Proc. Spie. Modeling Aspects in Optical Metrology Ii = Proc Spie Modeling Aspects in Optical Metrology Ii = Proc. Spie. Modeling Aspects in Optical Metrology Ii = P Soc Photo-opt Ins Modeling Aspects in Optical Metrology Ii = P. Soc. Photo-opt. Ins. Modeling Aspects in Optical Metrology = Proc Spie Modeling Aspects in Optical Metrology = Proc. Spie. Modeling Aspects in Optical Metrology = P Soc Photo-opt Ins Modeling Aspects in Optical Metrology = P. Soc. Photo-opt. Ins. Modeling By Nonlinear Differential Equations: Dissipative and Conservative Processes = World Sci Ser Nonlin Modeling By Nonlinear Differential Equations: Dissipative and Conservative Processes = World. Sci. Ser. Nonlin. Modeling Complex Living Systems: A Kinetic Theory and Stochastic Game Approach = Model Simul Sci Eng Modeling Complex Living Systems: A Kinetic Theory and Stochastic Game Approach = Model. Simul. Sci. Eng. Modeling Complex Systems = Nebr Sym Motiv Modeling Complex Systems = Nebr. Sym. Motiv. Modeling Complex Systems, Second Edition = Grad Texts Phys Modeling Complex Systems, Second Edition = Grad. Texts. Phys. Modeling, Computation and Optimization = Stat Sci Interdisc R Modeling, Computation and Optimization = Stat. Sci. Interdisc. R. Modeling, Control and Implementation of Smart Structures: A Fema-state Space Approach = Lect Notes Contr Inf Modeling, Control and Implementation of Smart Structures: A Fema-state Space Approach = Lect. Notes. Contr. Inf. Modeling, Control and Optimization of Complex Systems = Kluw Int S Dis Ev Dy Modeling, Control and Optimization of Complex Systems = Kluw. Int. S. Dis. Ev. Dy. Modeling Cooperative Behavior in The Social Sciences = Aip Conf Proc Modeling Cooperative Behavior in The Social Sciences = Aip. Conf. Proc. Modeling Decisions for Artificial Intelligence = Lect Notes Artif Int Modeling Decisions for Artificial Intelligence = Lect. Notes. Artif. Int. Modeling Decisions for Artificial Intelligence, Proceedings = Lect Notes Artif Int Modeling Decisions for Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Modeling Demographic Processes in Marked Populations = Environ Ecol Stat Se Modeling Demographic Processes in Marked Populations = Environ. Ecol. Stat. Se. Modeling, Design, and Simulation of Systems With Uncertainties = Math Eng Modeling, Design, and Simulation of Systems With Uncertainties = Math. Eng. Modeling Dynamic Systems = Model Dyn Syst Modeling Dynamic Systems = Model. Dyn. Syst. Modeling, Estimation and Control = Lect Notes Contr Inf Modeling, Estimation and Control = Lect. Notes. Contr. Inf. Modeling, Estimation and Control of Systems With Uncertainty = Prog Syst C Modeling, Estimation and Control of Systems With Uncertainty = Prog. Syst. C. Modeling Foundations of Economic Property Rights Theory: An Axiomatic Analysis of Economic Agreements = Stud Econ Theory Modeling Foundations of Economic Property Rights Theory: An Axiomatic Analysis of Economic Agreements = Stud. Econ. Theory. Modeling Groundwater Flow and Contaminant Transport = Theor Appl Trans Por Modeling Groundwater Flow and Contaminant Transport = Theor. Appl. Trans. Por. Modeling, Identification and Control = MIC---Model. Identif. Control Modeling Identification and Control = Model Ident Control Modeling Identification and Control = Model. Ident. Control Modeling in Combustion Science = Lect Notes Phys Modeling in Combustion Science = Lect. Notes. Phys. Modeling Income Distributions and Lorenz Curves = Econ Stud Inequal So Modeling Income Distributions and Lorenz Curves = Econ. Stud. Inequal. So. Modeling in Systems Biology-the Petri Net Approach = Comput Biol Ser Modeling in Systems Biology-the Petri Net Approach = Comput. Biol. Ser. Modeling Language, Cognition and Action = Prog Neural Process Modeling Language, Cognition and Action = Prog. Neural. Process. Modeling Languages in Mathematical Optimization = Appl Optimizat Modeling Languages in Mathematical Optimization = Appl. Optimizat. Modeling Machine Emotions for Realizing Intelligence = Smart Innov Syst Tec Modeling Machine Emotions for Realizing Intelligence = Smart. Innov. Syst. Tec. Modeling Magnetospheric Plasma Processes = Geoph Monog Series Modeling Magnetospheric Plasma Processes = Geoph. Monog. Series. Modeling Multi-level Systems = Underst Complex Syst Modeling Multi-level Systems = Underst. Complex. Syst. Modeling Neural Development = Dev Cogn Neurosci Modeling Neural Development = Dev. Cogn. Neurosci. Modeling of Complex Systems = Aip Conf Proc Modeling of Complex Systems = Aip. Conf. Proc. Modeling of Creep for Structural Analysis = Found Eng Mech Modeling of Creep for Structural Analysis = Found. Eng. Mech. Modeling of Indoor Air Quality and Exposure = Am Soc Test Mater Modeling of Indoor Air Quality and Exposure = Am. Soc. Test. Mater. Modeling of Metal Forming and Machining Processes: By Finite Element and Soft Computing Methods = Eng Mater Process Modeling of Metal Forming and Machining Processes: By Finite Element and Soft Computing Methods = Eng. Mater. Process. Modeling of Optical Thin Films Ii = P Soc Photo-opt Ins Modeling of Optical Thin Films Ii = P. Soc. Photo-opt. Ins. Modeling of Soft Matter = Ima V Math Modeling of Soft Matter = Ima. V. Math. Modeling Paradigms and Analysis of Disease Transmission Models = Dimacs Ser Discret M Modeling Paradigms and Analysis of Disease Transmission Models = Dimacs. Ser. Discret. M. Modeling Phase Transitions in The Brain = Spr Ser Comput Neuro Modeling Phase Transitions in The Brain = Spr. Ser. Comput. Neuro. Modeling Risk Management in Sustainable Contruction = Comput Risk Manag Modeling Risk Management in Sustainable Contruction = Comput. Risk Manag. Modeling, Signal Processing, and Control for Smart Structures 2007 = Proc Spie Modeling, Signal Processing, and Control for Smart Structures 2007 = Proc. Spie. Modeling, Signal Processing, and Control for Smart Structures 2007 = P Soc Photo-opt Ins Modeling, Signal Processing, and Control for Smart Structures 2007 = P. Soc. Photo-opt. Ins. Modeling, Signal Processing, and Control for Smart Structures 2008 = Proc Spie Modeling, Signal Processing, and Control for Smart Structures 2008 = Proc. Spie. Modeling, Signal Processing, and Control for Smart Structures 2008 = P Soc Photo-opt Ins Modeling, Signal Processing, and Control for Smart Structures 2008 = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Calibration of Space-based Systems = P Soc Photo-opt Ins Modeling, Simulation, and Calibration of Space-based Systems = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Control Technologies for Manufacturing = P Soc Photo-opt Ins Modeling, Simulation, and Control Technologies for Manufacturing = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Optimization of Integrated Circuits = Int Ser Numer Math Modeling, Simulation, and Optimization of Integrated Circuits = Int. Ser. Numer. Math. Modeling, Simulation, and Optimization of Integrated Circuits = Int S Num M Modeling, Simulation, and Optimization of Integrated Circuits = Int. S. Num. M. Modeling, Simulation, and Verification of Space-based Systems Iii = P Soc Photo-opt Ins Modeling, Simulation, and Verification of Space-based Systems Iii = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Verification of Space-based Systems Ii = P Soc Photo-opt Ins Modeling, Simulation, and Verification of Space-based Systems Ii = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Visualization for Real and Virtual Environments = P Soc Photo-opt Ins Modeling, Simulation, and Visualization for Real and Virtual Environments = P. Soc. Photo-opt. Ins. Modeling, Simulation, and Visualization of Sensory Response for Defense Applications = P Soc Photo-opt Ins Modeling, Simulation, and Visualization of Sensory Response for Defense Applications = P. Soc. Photo-opt. Ins. Modeling Solid Oxide Fuel Cells: Methods, Procedures and Techniques = Fuel Cell Hydro Ener Modeling Solid Oxide Fuel Cells: Methods, Procedures and Techniques = Fuel Cell. Hydro. Ener. Modeling, Systems Engineering, and Project Management for Astronomy Ii = Proc Spie Modeling, Systems Engineering, and Project Management for Astronomy Ii = Proc. Spie. Modeling, Systems Engineering, and Project Management for Astronomy Ii = P Soc Photo-opt Ins Modeling, Systems Engineering, and Project Management for Astronomy Ii = P. Soc. Photo-opt. Ins. Modeling, Systems Engineering, and Project Management for Astronomy Iv = Proc Spie Modeling, Systems Engineering, and Project Management for Astronomy Iv = Proc. Spie. Modeling, Systems Engineering, and Project Management for Astronomy Iv = P Soc Photo-opt Ins Modeling, Systems Engineering, and Project Management for Astronomy Iv = P. Soc. Photo-opt. Ins. Modeling The Earth's Climate and It's Variability = Les Houch S Modeling The Earth's Climate and It's Variability = Les. Houch. S. Modeling The Hydrogen Bond = Acs Sym Ser Modeling The Hydrogen Bond = Acs. Sym. Ser. Modeling Theory in Science Education = Sci Technol Educ Lib Modeling Theory in Science Education = Sci. Technol. Educ. Lib. Modeling The Stellar Environment : How and Why = Iap Astr M Modeling The Stellar Environment : How and Why = Iap. Astr. M. Modeling Uncertainty With Fuzzy Logic: With Recent Theory and Applications = Stud Fuzz Soft Comp Modeling Uncertainty With Fuzzy Logic: With Recent Theory and Applications = Stud. Fuzz. Soft. Comp. Modelisation, Analyse Et Commande Des Systemes Lineaires = Pour Ing Modelisation, Analyse Et Commande Des Systemes Lineaires = Pour. Ing. Modelling, Analysis, and Design of Hybrid Systems = Lect Notes Contr Inf Modelling, Analysis, and Design of Hybrid Systems = Lect. Notes. Contr. Inf. Modelling and Analysis of Hybrid Supervisory Systems: A Petri Net Approach = Adv Ind Control Modelling and Analysis of Hybrid Supervisory Systems: A Petri Net Approach = Adv. Ind. Control. Modelling and Applications in Mathematics Education: The 14th Icmi Study = New Icmi Stud Ser Modelling and Applications in Mathematics Education: The 14th Icmi Study = New. Icmi Stud. Ser. Modelling and Computation for Applications in Mathematics, Science, and Engineering = Numer Math Sci Comp Modelling and Computation for Applications in Mathematics, Science, and Engineering = Numer. Math. Sci. Comp. Modelling and Control for Intelligent Industrial Systems: Adaptive Algorithms in Robotics and Industrial Engineering = Intel Syst Ref Libr Modelling and Control for Intelligent Industrial Systems: Adaptive Algorithms in Robotics and Industrial Engineering = Intel. Syst. Ref. Libr. Modelling and Control in Biomedical Systems 2003 (including Biological Systems) = Ifac Symp Series Modelling and Control in Biomedical Systems 2003 (including Biological Systems) = Ifac. Symp. Series. Modelling and Control of Dynamical Systems: Numerical Implementation in A Behavioral Framework = Stud Comput Intell Modelling and Control of Dynamical Systems: Numerical Implementation in A Behavioral Framework = Stud. Comput. Intell. Modelling and Estimation Strategies for Fault Diagnosis of Non-linear Systems: From Analytical to Soft Computing Approaches = Lect Notes Contr Inf Modelling and Estimation Strategies for Fault Diagnosis of Non-linear Systems: From Analytical to Soft Computing Approaches = Lect. Notes. Contr. Inf. Modelling and Evaluating Treatment Effects in Econometrics = Adv Econometrics Modelling and Evaluating Treatment Effects in Econometrics = Adv. Econometrics Modelling and Experimental Measurements in Acoustics Iii = Comp Exptl Methods Modelling and Experimental Measurements in Acoustics Iii = Comp. Exptl. Methods. Modelling and Experimentation in Two-phase Flow = Cism Cour L Modelling and Experimentation in Two-phase Flow = Cism. Cour. L. Modelling and Experimentation in Two-phase Flow = Cism Courses Lect Modelling and Experimentation in Two-phase Flow = Cism. Courses. Lect. Modelling and Laboratory Studies Supporting Space Missions to Small Bodies = Adv Space Res Modelling and Laboratory Studies Supporting Space Missions to Small Bodies = Adv. Space Res. Modelling and Laboratory Studies Supporting Space Missions to Small Bodies = Adv Space Res-series Modelling and Laboratory Studies Supporting Space Missions to Small Bodies = Adv. Space Res-series. Modelling and Management of Sustainable Basin-scale Water Resource Systems = Iahs-aish P Modelling and Management of Sustainable Basin-scale Water Resource Systems = Iahs-aish. P. Modelling and Motion Capture Techniques for Virtual Environments = Lect Notes Artif Int Modelling and Motion Capture Techniques for Virtual Environments = Lect. Notes. Artif. Int. Modelling and Performance Evaluation of Atm Technology = Ifip Trans C Modelling and Performance Evaluation of Atm Technology = Ifip. Trans. C. Modelling and Predicting Textile Behaviour = Woodhead Text Ser Modelling and Predicting Textile Behaviour = Woodhead. Text. Ser. Modelling and Simulation in Materials Science and Engineering = Modell. Simul. Mater. Sci. Eng. Modelling and Simulation in Materials Science and Engineering = Model Simul Mater Sc Modelling and Simulation in Materials Science and Engineering = Model. Simul. Mater. Sc. Modelling and Simulation of Multitechnological Machine Systems = Vtt Symp Modelling and Simulation of Multitechnological Machine Systems = Vtt. Symp. Modelling and Simulation of Steam Generators and Firing Systems = Vdi Bericht Modelling and Simulation of Steam Generators and Firing Systems = Vdi. Bericht. Modelling and Simulation of Systems = Imacs Ann C Modelling and Simulation of Systems = Imacs. Ann. C. Modelling and Simulation of Thin-film Processing = Mater Res Soc Symp P Modelling and Simulation of Thin-film Processing = Mater. Res. Soc. Symp. P. Modelling and Simulation - Sixth Bath International Fluid Power Workshop = Fluid Power Ser Modelling and Simulation - Sixth Bath International Fluid Power Workshop = Fluid Power Ser. Modelling and Simulation-world Academic Union = Modelling Simulation Modelling and Simulation-world Academic Union = Modelling Simulation. Modelling Aqueous Corrosion = Nato Adv Sci Inst Se Modelling Aqueous Corrosion = Nato. Adv. Sci. Inst. Se. Modelling Autonomic Communication Environments = Lect Notes Comput Sc Modelling Autonomic Communication Environments = Lect. Notes. Comput. Sc. Modelling Autonomic Communications Environments = Lect Notes Comput Sc Modelling Autonomic Communications Environments = Lect. Notes. Comput. Sc. Modelling Autonomic Communications Environments, Proceedings = Lect Notes Comput Sc Modelling Autonomic Communications Environments, Proceedings = Lect. Notes. Comput. Sc. Modelling Communication With Robots and Virtual Humans = Lect Notes Artif Int Modelling Communication With Robots and Virtual Humans = Lect. Notes. Artif. Int. Modelling, Computation and Optimization in Information Systems and Management Sciences, Proceedings = Comm Com Inf Sc Modelling, Computation and Optimization in Information Systems and Management Sciences, Proceedings = Comm. Com. Inf. Sc. Modelling Critical and Catastrophic Phenomena in Geoscience: A Statistical Physics Approach = Lect Notes Phys Modelling Critical and Catastrophic Phenomena in Geoscience: A Statistical Physics Approach = Lect. Notes. Phys. Modelling Diesel Combustion = Mech Eng Ser Modelling Diesel Combustion = Mech. Eng. Ser. Modelling Distributed Systems = Texts Theor Comput S Modelling Distributed Systems = Texts. Theor. Comput. S. Modelling Dynamics in Processes and Systems = Stud Comput Intell Modelling Dynamics in Processes and Systems = Stud. Comput. Intell. Modelling, Estimation and Control of Networked Complex Systems = Und Com Sys Modelling, Estimation and Control of Networked Complex Systems = Und. Com. Sys. Modelling, Estimation and Control of Networked Complex Systems = Underst Complex Syst Modelling, Estimation and Control of Networked Complex Systems = Underst. Complex Syst. Modelling Flows in Environmental and Civil Engineering = Environ Sci Eng Tech Modelling Flows in Environmental and Civil Engineering = Environ. Sci. Eng. Tech. Modelling Foundations and Applications, Proceedings = Lect Notes Comput Sc Modelling Foundations and Applications, Proceedings = Lect. Notes. Comput. Sc. Modelling in Medicine and Biology Viii = Wit Tr Biomed Health Modelling in Medicine and Biology Viii = Wit. Tr. Biomed. Health. Modelling in Medicine and Biology Vii = Wit Tr Biomed Health Modelling in Medicine and Biology Vii = Wit. Tr. Biomed. Health. Modelling in Medicine and Biology Vi = Wit Tr Biomed Health Modelling in Medicine and Biology Vi = Wit. Tr. Biomed. Health. Modelling in Molecular Biology = Nat Comp Ser Modelling in Molecular Biology = Nat. Comp. Ser. Modelling Land-use Change: Progress and Applications = Geojournal Lib Modelling Land-use Change: Progress and Applications = Geojournal. Lib. Modelling Measurement & Control C = Modell. Meas. Control C Modelling Microorganisms in Food = Woodhead Publ Food S Modelling Microorganisms in Food = Woodhead. Publ. Food S. Modelling, Monitoring and Management of Forest Fires = Wit Trans Ecol Envir Modelling, Monitoring and Management of Forest Fires = Wit. Trans. Ecol. Envir. Modelling Non-stationary Economic Time Series: A Multivariate Approach = Palgr Texts Economet Modelling Non-stationary Economic Time Series: A Multivariate Approach = Palgr. Texts. Economet. Modelling of Biomolecular Structures and Mechanisms = Jerus Sym Q Modelling of Biomolecular Structures and Mechanisms = Jerus. Sym. Q. Modelling of Corroding Concrete Structures = Rilem Bookser Modelling of Corroding Concrete Structures = Rilem. Bookser. Modelling of Engineering and Technological Problems = Aip Conf Proc Modelling of Engineering and Technological Problems = Aip. Conf. Proc. Modelling of Environmental Chemical Exposure and Risk = Nato Sci S Ss Iv Ear Modelling of Environmental Chemical Exposure and Risk = Nato. Sci. S. Ss. Iv. Ear. Modelling of Machining Operations = Adv Mater Res-switz Modelling of Machining Operations = Adv. Mater. Res-switz. Modelling of Microstructural Evolution in Creep Resistant Materials = Micro High Temp Mat Modelling of Microstructural Evolution in Creep Resistant Materials = Micro. High. Temp. Mat. Modelling of Molecular Structures and Properties = Stud Phys Theo Chem Modelling of Molecular Structures and Properties = Stud. Phys. Theo. Chem. Modelling of Powder Die Compaction = Eng Mater Process Modelling of Powder Die Compaction = Eng. Mater. Process. Modelling of Radiation Damage in Metals Using Ehrenfest Dynamics = Springer Theses-reco Modelling of Radiation Damage in Metals Using Ehrenfest Dynamics = Springer. Theses-reco. Modelling of Stellar Atmospheres = Iau Symp Modelling of Stellar Atmospheres = Iau. Symp. Modelling Parasite Transmission and Control = Adv Exp Med Biol Modelling Parasite Transmission and Control = Adv. Exp. Med. Biol. Modelling, Pricing, and Hedging Counterparty Credit Exposure: A Technical Guide = Springer Financ Modelling, Pricing, and Hedging Counterparty Credit Exposure: A Technical Guide = Springer. Financ. Modelling Regional Scenarios for The Enlarged Europe: European Competiveness and Global Strategies = Adv Spat Sci Modelling Regional Scenarios for The Enlarged Europe: European Competiveness and Global Strategies = Adv. Spat. Sci. Modelling, Simulation and Software Concepts for Scientific-technological Problems = Lect Notes Appl Comp Modelling, Simulation and Software Concepts for Scientific-technological Problems = Lect. Notes. Appl. Comp. Modelling Soil Erosion By Water = Nato Asi Ser Ser I Modelling Soil Erosion By Water = Nato. Asi. Ser. Ser. I. Modelling Soil Erosion, Sediment Transport and Closely Related Hydrological Processes = Iahs-aish P Modelling Soil Erosion, Sediment Transport and Closely Related Hydrological Processes = Iahs-aish. P. Modelling, State Observation and Diagnosis of Quantised Systems = Lect Notes Contr Inf Modelling, State Observation and Diagnosis of Quantised Systems = Lect. Notes. Contr. Inf. Modelling Stochastic Fibrous Materials With Mathematica = Eng Mater Process Modelling Stochastic Fibrous Materials With Mathematica = Eng. Mater. Process. Modelling Sustainable Development: Transitions to A Sustainable Future = Feem Ser Econ Envir Modelling Sustainable Development: Transitions to A Sustainable Future = Feem. Ser. Econ. Envir. Modelling, Systems Engineering, and Project Management for Astronomy Iii = Proc Spie Modelling, Systems Engineering, and Project Management for Astronomy Iii = Proc. Spie. Modelling, Systems Engineering, and Project Management for Astronomy Iii = P Soc Photo-opt Ins Modelling, Systems Engineering, and Project Management for Astronomy Iii = P. Soc. Photo-opt. Ins. Modelling The Physiological Human = Lect Notes Comput Sc Modelling The Physiological Human = Lect. Notes. Comput. Sc. Modelling The Topside Ionosphere and Plasmasphere = Adv Space Res Modelling The Topside Ionosphere and Plasmasphere = Adv. Space. Res. Modelling, Valuing and Managing Mediterranean Forest Ecosystems for Non-timber Goods and Services = Eur Forest Inst Proc Modelling, Valuing and Managing Mediterranean Forest Ecosystems for Non-timber Goods and Services = Eur. Forest Inst. Proc. Modelling With Transparent Soils: Visualizing Soil Structure Interaction and Multi Phase Flow, Non-intrusively = Springer Ser Geomech Modelling With Transparent Soils: Visualizing Soil Structure Interaction and Multi Phase Flow, Non-intrusively = Springer. Ser. Geomech. Modelling With Words: Learning, Fusion, and Reasoning Within A Formal Linguistic Representation Framework = Lect Notes Artif Int Modelling With Words: Learning, Fusion, and Reasoning Within A Formal Linguistic Representation Framework = Lect. Notes. Artif. Int. Model Minority Myth Revisited: An Interdisciplinary Approach to Demystifying Asian American Educational Experiences = Chin Am Educ Res Dev Model Minority Myth Revisited: An Interdisciplinary Approach to Demystifying Asian American Educational Experiences = Chin. Am. Educ. Res. Dev. Mode-locked and Solid State Lasers, Amplifiers, and Applications = P Soc Photo-opt Ins Mode-locked and Solid State Lasers, Amplifiers, and Applications = P. Soc. Photo-opt. Ins. Mode-locked Lasers and Ultrafast Phenomena = P Soc Photo-opt Ins Mode-locked Lasers and Ultrafast Phenomena = P. Soc. Photo-opt. Ins. Model of The Response Function of Cuore Bolometers = Springer Theses-reco Model of The Response Function of Cuore Bolometers = Springer. Theses-reco. Model Order Reduction: Theory, Research Aspects and Applications = Eur Consort Math Ind Model Order Reduction: Theory, Research Aspects and Applications = Eur. Consort. Math. Ind. Model Predictive Control of Wasterwater Systems = Adv Ind Control Model Predictive Control of Wasterwater Systems = Adv. Ind. Control Model Reduction Methods for Vector Autoregressive Processes = Lect Notes Econ Math Model Reduction Methods for Vector Autoregressive Processes = Lect. Notes. Econ. Math. Models, Algebras and Logic of Engineering Software = Nato Sc S Ss Iii C S Models, Algebras and Logic of Engineering Software = Nato. Sc. S. Ss. Iii. C. S. Models, Algebras, and Proofs = Lect Notes Pure Appl Models, Algebras, and Proofs = Lect. Notes. Pure. Appl. Models and Algorithms for Global Optimization = Springer Ser Optim A Models and Algorithms for Global Optimization = Springer. Ser. Optim. A. Models and Applications to Urban Water Systems, Monograph 9 = Adv Mod Manag Stormw Models and Applications to Urban Water Systems, Monograph 9 = Adv. Mod. Manag. Stormw. Models and Images of Catholicism in Italian Americana: Academy and Society = Filibrary S Models and Images of Catholicism in Italian Americana: Academy and Society = Filibrary. S. Models and Modeling: Cognitive Tools for Scientific Enquiry = Model Model Sci Educ Models and Modeling: Cognitive Tools for Scientific Enquiry = Model. Model. Sci. Educ. Models and Modeling in Science Education = Model Model Sci Educ Models and Modeling in Science Education = Model. Model. Sci. Educ. Models and Phenomenology for Conventional and High-temperature Superconductivity = P Int Sch Phys Models and Phenomenology for Conventional and High-temperature Superconductivity = P. Int. Sch. Phys. Models for Assessing and Monitoring Groundwater Quality = Iahs-aish P Models for Assessing and Monitoring Groundwater Quality = Iahs-aish. P. Models for The Sustainable Management of Temperate Plantation Forests, Proceedings = Eur Forest Inst Proc Models for The Sustainable Management of Temperate Plantation Forests, Proceedings = Eur. Forest. Inst. Proc. Models in Cooperative Game Theory: Crisp, Fuzzy, and Multi-choice Games = Lect Notes Econ Math Models in Cooperative Game Theory: Crisp, Fuzzy, and Multi-choice Games = Lect. Notes. Econ. Math. Models in Hardware Testing: Lecture Notes of The Forum in Honor of Christian Landrault = Front Electron Test Models in Hardware Testing: Lecture Notes of The Forum in Honor of Christian Landrault = Front. Electron. Test. Models in Software Engineering = Lect Notes Comput Sc Models in Software Engineering = Lect. Notes. Comput. Sc. Models of Brain and Mind: Physical, Computational and Psychological Approaches = Prog Brain Res Models of Brain and Mind: Physical, Computational and Psychological Approaches = Prog. Brain Res. Models of Discovery and Creativity = Orig Stud Sourc Sci Models of Discovery and Creativity = Orig. Stud. Sourc. Sci. Models of Disequilibrium and Shortage in Centrally Planned Economies = Int St Ec M Models of Disequilibrium and Shortage in Centrally Planned Economies = Int. St. Ec. M. Models of Hysteresis = Pitman Res Models of Hysteresis = Pitman. Res. Models of Neuropeptide Action = Ann Ny Acad Sci Models of Neuropeptide Action = Ann. Ny. Acad. Sci. Models of Sustainable Development = New Hor Env Eco Models of Sustainable Development = New. Hor. Env. Eco. Models of Viral Hepatitis = Monogr Virol Models of Viral Hepatitis = Monogr. Virol. Models: The Third Dimension of Science = Writing Sci Models: The Third Dimension of Science = Writing. Sci. Modern Acoustics and Signal Processing = Mod Acoust Sign Proc Modern Acoustics and Signal Processing = Mod. Acoust. Sign. Proc. Modern age (Chicago, Ill.) = Mod Age Modern Algebra of Information Retrieval = Inform Retrieval Ser Modern Algebra of Information Retrieval = Inform. Retrieval Ser. Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 1 = Oper Theor Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 1 = Oper. Theor. Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 1 = Oper Theory Adv Appl Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 1 = Oper. Theory. Adv. Appl. Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 2 = Oper Theor Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 2 = Oper. Theor. Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 2 = Oper Theory Adv Appl Modern Analysis and Applications: Mark Krein Centenary Conference, Vol 2 = Oper. Theory. Adv. Appl. Modern Analytical Chemistry = Mod Anal Ch Modern Analytical Chemistry = Mod. Anal. Ch. Modern and Ancient Continental Shelf Anoxia = Geol Soc Spec Publ Modern and Ancient Continental Shelf Anoxia = Geol. Soc. Spec. Publ. Modern and Contemporary Poetry and Poetics = Mod Contemp Poet Poe Modern and Contemporary Poetry and Poetics = Mod. Contemp. Poet. Poe. Modern Anthropology of Southeast Asia Editors = Mod Anthropol Se Asi Modern Anthropology of Southeast Asia Editors = Mod. Anthropol. Se. Asi. Modern Applications of Social Work = Mod Appl Sw Modern Applications of Social Work = Mod. Appl. Sw. Modern Approaches in Geophysics = Modern Approaches Geophys. Modern Approaches in Solid Earth Sciences = Mod Appr Sol Earth S Modern Approaches in Solid Earth Sciences = Mod. Appr. Sol. Earth S. Modern Approach to Functional Integration = Appl Numer Harmon An Modern Approach to Functional Integration = Appl. Numer. Harmon. An. Modern Approach to Intelligent Animation: Theory and Practice = Adv Top Sci Tech Chi Modern Approach to Intelligent Animation: Theory and Practice = Adv. Top. Sci. Tech. Chi. Modern Approach to Regession With R = Springer Texts Stat Modern Approach to Regession With R = Springer. Texts. Stat. Modern Art in The 2000s = Stud Proferlit Modern Art in The 2000s = Stud. Proferlit. Modern Asian studies = Mod Asian Stud Modern Asian Studies=Mod. Asian Stud. Modern Asian Studies = Mod Asian Stud Modern Asian Studies = Mod. Asian Stud. Modern Aspects of Electrochemistry = Mod Aspect Electroc Modern Aspects of Electrochemistry = Mod. Aspect. Electroc. Modern Aspects of Electrochemistry = Mod Asp Electrochem Modern Aspects of Electrochemistry = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 42 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 42 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 43 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 43 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 44 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 44 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 45 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 45 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 46 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 46 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 48 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 48 = Mod. Asp. Electrochem. Modern Aspects of Electrochemistry, No 49 = Mod Asp Electrochem Modern Aspects of Electrochemistry, No 49 = Mod. Asp. Electrochem. Modern Aspects of Main Group Chemistry = Acs Sym Ser Modern Aspects of Main Group Chemistry = Acs. Sym. Ser. Modern Aspects of Small-angle Scattering = Nato Adv Sci Inst Se Modern Aspects of Small-angle Scattering = Nato. Adv. Sci. Inst. Se. Modern Aspects of Spin Physics = Lect Notes Phys Modern Aspects of Spin Physics = Lect. Notes. Phys. Modern Aspects of The Theory of Partial Differential Equations = Oper Theory Adv Appl Modern Aspects of The Theory of Partial Differential Equations = Oper. Theory Adv. Appl. Moderna Sprak = Mod Sprak Moderna Sprak = Mod. Sprak Modern Austrian Literature = Mod Austrian Lit Modern Austrian Literature = Mod. Austrian Lit. Modern Birkhauser Classics = Mod Birkhauser Class Modern Birkhauser Classics = Mod. Birkhauser Class. Modern British Literature = Mod Brit Literature Modern British Literature = Mod. Brit. Literature Modern Casting = Mod Cast Modern Casting = Mod. Cast. Modern Catalan Literature = Catalan Stud Modern Catalan Literature = Catalan Stud. Modern Challenges in Nonlinear Plasma Physics: A Festschrift Honoring The Career of Dennis Papadopoulos = Aip Conf Proc Modern Challenges in Nonlinear Plasma Physics: A Festschrift Honoring The Career of Dennis Papadopoulos = Aip. Conf. Proc. Modern Challenges in Statistical Mechanics: Patterns, Noise, and The Interplay of Nonlinearity and Complexity = Aip Conf Proc Modern Challenges in Statistical Mechanics: Patterns, Noise, and The Interplay of Nonlinearity and Complexity = Aip. Conf. Proc. Modern China = Mod China Modern China = Mod. China Modern Chinese Literature and Culture = Mod Chin Lit Cult Modern Chinese Literature and Culture = Mod. Chin. Lit. Cult. Modern Chinese Literature = Mod Chinese Lit Modern Chinese Literature = Mod. Chinese Lit. Modern Circuit Placement: Best Practices and Results = Integr Circuit Syst Modern Circuit Placement: Best Practices and Results = Integr. Circuit Syst. Modern Coating and Drying Technology = Adv Interf Modern Coating and Drying Technology = Adv. Interf. Modern Communications Jamming: Principles and Techniques, Second Edition = Artech Hse Intel Inf Modern Communications Jamming: Principles and Techniques, Second Edition = Artech. Hse. Intel. Inf. Modern Communications Receiver Design and Technology = Artech Hse Intel Inf Modern Communications Receiver Design and Technology = Artech. Hse. Intel. Inf. Modern Computational Intelligence Methods for The Interpretation of Medical Images = Stud Comput Intell Modern Computational Intelligence Methods for The Interpretation of Medical Images = Stud. Comput. Intell. Modern Computer Techniques and Their Impact On Chemical Engineering = Dech Monog Modern Computer Techniques and Their Impact On Chemical Engineering = Dech. Monog. Modern Concepts in Penicillium and Aspergillus Classification = Nato Adv Sci I A-lif Modern Concepts in Penicillium and Aspergillus Classification = Nato. Adv. Sci. I. A-lif. Modern Concepts of Cardiovascular Disease = Mod Conc Cardiov Dis Modern Concepts of Cardiovascular Disease = Mod. Conc. Cardiov. Dis. Modern concepts of cardiovascular disease = Mod Concepts Cardiovasc Dis Modern Concepts of Cardiovascular Disease = Mod. Concepts Cardiovasc. Dis. Modern Concrete Technology = Mod Conrete Technol Modern Concrete Technology = Mod. Conrete. Technol. Modern & Contemporary France = Mod Contemp Fr Modern & Contemporary France = Mod. Contemp. Fr. Modern Countercurrent Chromatography = Acs Sym Ser Modern Countercurrent Chromatography = Acs. Sym. Ser. Modern dental practice = Mod Dent Pract Modern Dental Practice = Mod. Dent. Pract. Modern Developments in Multivariate Approximation = Int Ser Numer Math Modern Developments in Multivariate Approximation = Int. Ser. Numer. Math. Modern Developments in Multivariate Approximation = Int S Num M Modern Developments in Multivariate Approximation = Int. S. Num. M. Modern Developments in X-ray and Neutron Optics = Springer Ser Opt Sci Modern Developments in X-ray and Neutron Optics = Springer. Ser. Opt. Sci. Modern Dietary Fat Intakes in Disease Promotion = Nutr Health Ser Modern Dietary Fat Intakes in Disease Promotion = Nutr. Health. Ser. Modern Drama = Mod Drama Modern Drama = Mod. Drama Modern Drug Discovery = Mod. Drug Discovery Modern Economic History of Southeast Asia = Mod Econ Hist Se Asi Modern Economic History of Southeast Asia = Mod. Econ. Hist. Se. Asi. Modern Endocrinology and Diabetes = Mod Endocrin Diabet Modern Endocrinology and Diabetes = Mod. Endocrin. Diabet. Modernen Vater Der Antike = Transform Antike Modernen Vater Der Antike = Transform. Antike Modern Extraction Techniques: Food and Agricultural Samples = Acs Sym Ser Modern Extraction Techniques: Food and Agricultural Samples = Acs. Sym. Ser. Modern Fiction Studies = Mod Fiction Stud Modern Fiction Studies = Mod. Fiction Stud. Modern Firm, Corporate Governance and Investment = New Perspect Mod Cor Modern Firm, Corporate Governance and Investment = New. Perspect. Mod. Cor. Modern Fluid Dynamics: Basic Theory and Selected Applications in Macro- and Micro-fluidics = Fluid Mech Appl Modern Fluid Dynamics: Basic Theory and Selected Applications in Macro- and Micro-fluidics = Fluid Mech. Appl. Modern Fourier Analysis, Second Edition = Grad Texts Math Modern Fourier Analysis, Second Edition = Grad. Texts. Math. Modern French Identities = Mod Fr Iden Modern French Identities = Mod. Fr. Iden. Modern Geophysics in Engineering Geology = Geol Soc Eng Geol Sp Modern Geophysics in Engineering Geology = Geol. Soc. Eng. Geol. Sp. Modern healthcare = Mod Healthc Modern Healthcare = Mod. Healthc. Modern Healthcare = Mod Healthcare Modern Healthcare = Mod. Healthcare Modern healthcare. [Short-term care ed.] = Mod Healthc (Short Term Care) Modern Healthcare (Short Term Care) = Mod. Healthc. (Short Term Care) Modern Hebrew Literature = Mod Hebrew Lit Modern Hebrew Literature = Mod. Hebrew Lit. Modern hospital = Mod Hosp Modern Hospital = Mod. Hosp. Modern Humanities Research Association Texts and Dissertations = Mod Humanit Res Asso Modern Humanities Research Association Texts and Dissertations = Mod. Humanit. Res. Asso. Modern Infectious Disease Epidemiology = Stat Biol Health Modern Infectious Disease Epidemiology = Stat. Biol. Health. Modern Insights Into Disease From Molecules to Man = Mod Insights Dis Mol Modern Insights Into Disease From Molecules to Man = Mod. Insights Dis. Mol. Modern Intellectual History = Mod Intellect Hist Modern Intellectual History = Mod. Intellect. Hist. Modern International Drama = Mod Int Drama Modern International Drama = Mod. Int. Drama Modernism and Poetic Inspiration: The Shadow Mouth = Mod Contemp Poet Poe Modernism and Poetic Inspiration: The Shadow Mouth = Mod. Contemp. Poet. Poe. Modernism and The Language of Philosophy = Rout Stud Tw Cen Phi Modernism and The Language of Philosophy = Rout. Stud. Tw. Cen. Phi. Modernism-modernity = Modernism-modernity Modernism Revisited: Transgression Boundaries and Strategies of Renewal in American Poetry = Dqr Stud Lit Modernism Revisited: Transgression Boundaries and Strategies of Renewal in American Poetry = Dqr. Stud. Lit. Modernism, Second Edition = New Crit Idiom Modernism, Second Edition = New. Crit. Idiom. Modern Issues and Methods in Biostatistics = Stat Biol Health Modern Issues and Methods in Biostatistics = Stat. Biol. Health. Modernist Studies-literature and Culture 1920-1940 = Mod Stud-lit Cult Modernist Studies-literature and Culture 1920-1940 = Mod. Stud-lit. Cult. Modernity and Malaysia = Mod Anthropol Se Asi Modernity and Malaysia = Mod. Anthropol. Se. Asi. Modernity and The Nation in Mexican Representations of Masculinity: From Sensuality to Bloodshed = New Concepts Lat Am Modernity and The Nation in Mexican Representations of Masculinity: From Sensuality to Bloodshed = New. Concepts. Lat. Am. Modernity in Asian Art = U Syd E Asia Ser Modernity in Asian Art = U. Syd. E. Asia. Ser. Modernity, The Media and The Military: The Creation of National Mythologies On The Western Front 1914-1918 = Cass Mil Stud Modernity, The Media and The Military: The Creation of National Mythologies On The Western Front 1914-1918 = Cass. Mil. Stud. Modernizing Democracy: Innovations in Citizen Participation = Transform Tr Gov Dem Modernizing Democracy: Innovations in Citizen Participation = Transform. Tr. Gov. Dem. Modern Japan: A Social and Political History, Second Edition = Nissan I Routl Jpn S Modern Japan: A Social and Political History, Second Edition = Nissan. I. Routl. Jpn. S. Modern Jewish Literatures: Intersections and Boundaries = Jew Cult Context Modern Jewish Literatures: Intersections and Boundaries = Jew. Cult. Context. Modern Judaism = Mod Jud Modern Judaism = Mod Judaism Modern Judaism = Mod. Judaism Modern Language Journal = Mod Lang J Modern Language Journal = Mod. Lang. J. Modern language notes = Mod Lang Notes Modern Language Quarterly = Mod Lang Quart Modern Language Quarterly = Mod. Lang. Quart. Modern Language Review = Mod Lang Rev Modern Language Review = Mod. Lang. Rev. Modern Languages in Practice = Mod Lang Pract Modern Languages in Practice = Mod. Lang. Pract. Modern Language Studies = Mod Lang Stud Modern Language Studies = Mod. Lang. Stud. Modern Law and Society = Mod Law Soc Modern Law and Society = Mod. Law Soc. Modern Law Review = Mod Law Rev Modern Law Review = Mod. Law Rev. Modern Logic = Modern Logic Modern Machine Shop = Mod Mach Shop Modern Machine Shop = Mod. Mach. Shop Modern Magnetic Resonances = Molecul Phys Rep Modern Magnetic Resonances = Molecul. Phys. Rep. Modern Management of Combined Hypertension and Diabetes = Roy S Med S Modern Management of Combined Hypertension and Diabetes = Roy. S. Med. S. Modern Management of The Menopause = I C S S Modern Management of The Menopause = I. C. S. S. Modern Mass Spectrometry = Top Curr Chem Modern Mass Spectrometry = Top. Curr. Chem. Modern Materials Handling = Mod Mater Handl Modern Materials Handling = Mod. Mater. Handl. Modern Mathematical Tools and Techniques in Capturing Complexity = Underst Complex Syst Modern Mathematical Tools and Techniques in Capturing Complexity = Underst. Complex. Syst. Modern medicine = Mod Med Modern medicine of Asia = Mod Med Asia Modern Medicine of Asia = Mod. Med. Asia Modern Metals = Mod Met Modern Metals = Mod. Met. Modern Methods in Complex Analysis = Ann Math Stud Modern Methods in Complex Analysis = Ann. Math. Stud. Modern Methods in Food Mycology = Dev Food Sci Modern Methods in Food Mycology = Dev. Food Sci. Modern Methods in Scientific Computing and Applications = Nato Sci Ser Ii-math Modern Methods in Scientific Computing and Applications = Nato. Sci. Ser. Ii-math. Modern Methods in Scientific Computing and Applications = Nato Sci Ser Ii Math Modern Methods in Scientific Computing and Applications = Nato. Sci. Ser. Ii. Math. Modern Methods of Analytical Mechanics and Their Applications = Cism Cour L Modern Methods of Analytical Mechanics and Their Applications = Cism. Cour. L. Modern Methods of Analytical Mechanics and Their Applications = Cism Courses Lect Modern Methods of Analytical Mechanics and Their Applications = Cism. Courses. Lect. Modern Methods of Clinical Investigation = Med Inn Cr Modern Methods of Clinical Investigation = Med. Inn. Cr. Modern Methods of Igneous Petrology : Understanding Magmatic Processes = Rev Mineral Modern Methods of Igneous Petrology : Understanding Magmatic Processes = Rev. Mineral. Modern Methods of Optimization = Lect Notes Econ Math Modern Methods of Optimization = Lect. Notes. Econ. Math. Modern Microbiological Methods for Dairy Products = Int Dairy F Modern Microbiological Methods for Dairy Products = Int. Dairy F. Modern midwife = Mod Midwife Modern Midwife = Mod. Midwife Modern Molecular Biology: Approaches for Unbiased Discovery in Cancer Research = Appl Bioinf Biostat Modern Molecular Biology: Approaches for Unbiased Discovery in Cancer Research = Appl. Bioinf. Biostat. Modern Morphometrics in Physical Anthropology = Dev Primatol-prog Pr Modern Morphometrics in Physical Anthropology = Dev. Primatol-prog. Pr. Modern Multivariate Statistical Techniques: Regression, Classification, and Manifold Learning = Springer Texts Stat Modern Multivariate Statistical Techniques: Regression, Classification, and Manifold Learning = Springer. Texts. Stat. Modern Nmr Spectroscopy in Education = Acs Sym Ser Modern Nmr Spectroscopy in Education = Acs. Sym. Ser. Modern Nonlinear Optics, Pt 1, Second Ed = Adv Chem Phys Modern Nonlinear Optics, Pt 1, Second Ed = Adv. Chem. Phys. Modern Nonlinear Optics, Pt 2, Second Ed = Adv Chem Phys Modern Nonlinear Optics, Pt 2, Second Ed = Adv. Chem. Phys. Modern Nonlinear Optics, Pt 3, Second Ed = Adv Chem Phys Modern Nonlinear Optics, Pt 3, Second Ed = Adv. Chem. Phys. Modern nursing home = Mod Nurs Home Modern Nursing Home = Mod. Nurs. Home Modern Optimal Control = Lect Notes Pure Appl Modern Optimal Control = Lect. Notes. Pure. Appl. Modern Paint and Coatings = Mod Paint Coating Modern Paint and Coatings = Mod. Paint Coating. Modern pathology : an official journal of the United States and Canadian Academy of Pathology, Inc = Mod Pathol Modern Pathology = Modern Pathol Modern Pathology = Modern Pathol. Modern Pathology=Mod Pathol;; Modern Pathology = Mod. Pathol. Modern Persian Literature in Afghanistan = Iran Stud Ser Modern Persian Literature in Afghanistan = Iran. Stud. Ser. Modern Perspectives in Inorganic Crystal Chemistry = Nato Adv Sci I C-mat Modern Perspectives in Inorganic Crystal Chemistry = Nato. Adv. Sci. I. C-mat. Modern Perspectives On Thermoelectrics and Related Materials = Mater Res Soc Symp P Modern Perspectives On Thermoelectrics and Related Materials = Mater. Res. Soc. Symp. P. Modern philology = Mod Philol Modern Philology = Mod Philology Modern Philology = Mod. Philology Modern Physics Letters A = Modern Phys. Lett. A Modern Physics Letters A = Mod Phys Lett A Modern Physics Letters A = Mod. Phys. Lett. A Modern Physics Letters B = Modern Phys. Lett. B Modern Physics Letters B = Mod Phys Lett B Modern Physics Letters B = Mod. Phys. Lett. B Modern Phytochemical Methods = Recent Adv Phytochem Modern Phytochemical Methods = Recent. Adv. Phytochem. Modern Pioneers in Psychological Science = Mod Pioneer Psychol Modern Pioneers in Psychological Science = Mod. Pioneer. Psychol. Modern Plastics = Mod Plast Modern Plastics = Mod. Plast. Modern Poetics and Hemispheric American Cultural Studies = Stud Am Modern Poetics and Hemispheric American Cultural Studies = Stud. Am. Modern Poetry Studies = Mod Poetry Stud Modern Poetry Studies = Mod. Poetry Stud. Modern Practice in Stress and Vibration Analysis = Mater Sci Forum Modern Practice in Stress and Vibration Analysis = Mater. Sci. Forum. Modern Practice in Stress and Vibration Analysis Vi, Proceedings = Appl Mech Mater Modern Practice in Stress and Vibration Analysis Vi, Proceedings = Appl. Mech. Mater. Modern Probability and Statistics = Mod. Probab. Stat. Modern problems in ophthalmology = Mod Probl Ophthalmol Modern Problems in Ophthalmology = Mod. Probl. Ophthalmol. Modern problems in paediatrics = Mod Probl Paediatr Modern Problems in Paediatrics = Mod. Probl. Paediatr. Modern Problems of Electrostatics With Applications in Environment Protection = Nato Sci S Prt 2 Env Modern Problems of Electrostatics With Applications in Environment Protection = Nato. Sci. S. Prt. 2. Env. Modern Problems of Pharmacopsychiatry = Mod Probl Pharm Modern Problems of Pharmacopsychiatry = Mod. Probl. Pharm. Modern problems of pharmacopsychiatry = Mod Probl Pharmacopsychiatry Modern Problems of Pharmacopsychiatry=Mod Probl Pharmacopsychiatry;; Modern Problems of Pharmacopsychiatry = Mod. Probl. Pharmacopsychiatry Modern Problems of Structural Stability = Cism Cour L Modern Problems of Structural Stability = Cism. Cour. L. Modern Problems of Structural Stability = Cism Courses Lect Modern Problems of Structural Stability = Cism. Courses. Lect. Modern Protective Structures = Crc Press Civ Env En Modern Protective Structures = Crc. Press. Civ. Env. En. Modern Public Economics, Second Edition = Routl Adv Texts Econ Modern Public Economics, Second Edition = Routl. Adv. Texts. Econ. Modern Quaternary Research in Southeast Asia = Mod Quat Re Modern Quaternary Research in Southeast Asia = Mod. Quat. Re. Modern Refrigeration and Air Conditioning = Mod Refrig Air Cond Modern Refrigeration and Air Conditioning = Mod. Refrig. Air Cond. Modern Rheumatology = Mod Rheumatol Modern Rheumatology = Mod. Rheumatol. Modern rheumatology / the Japan Rheumatism Association = Mod Rheumatol Moderns Abroad: Architecture, Cities and Italian Imperialism = Architext Moderns Abroad: Architecture, Cities and Italian Imperialism = Architext. Modern Schoolman = Mod Schoolman Modern Schoolman = Mod. Schoolman Modern Science of Climate Changes = Clim Chang Cause Eff Modern Science of Climate Changes = Clim. Chang. Cause. Eff. Modern Sliding Mode Control Theory: New Perspectives and Applications = Lect Notes Contr Inf Modern Sliding Mode Control Theory: New Perspectives and Applications = Lect. Notes. Contr. Inf. Modern Solvents in Organic Synthesis = Top Curr Chem Modern Solvents in Organic Synthesis = Top. Curr. Chem. Moderns Trends in Ophthalmology = Int Congr Ser Moderns Trends in Ophthalmology = Int. Congr. Ser. Modern Supercritical Fluid Chromatography = Chromat Met Modern Supercritical Fluid Chromatography = Chromat. Met. Modern Synthetic Methods = Mod Syn Met Modern Synthetic Methods = Mod. Syn. Met. Modern Synthetic Methods, Vol 5, 1989 = Mod Syn Met Modern Synthetic Methods, Vol 5, 1989 = Mod. Syn. Met. Modern Techniques for Nano- and Microreactors/-reactions = Adv Polym Sci Modern Techniques for Nano- and Microreactors/-reactions = Adv. Polym. Sci. Modern Technologies Applied to Medical Practice = P Soc Photo-opt Ins Modern Technologies Applied to Medical Practice = P. Soc. Photo-opt. Ins. Modern Technologies in Space- and Ground-based Telescopes and Instrumentation = Proc Spie Modern Technologies in Space- and Ground-based Telescopes and Instrumentation = Proc. Spie. Modern Technologies in Space- and Ground-based Telescopes and Instrumentation = P Soc Photo-opt Ins Modern Technologies in Space- and Ground-based Telescopes and Instrumentation = P. Soc. Photo-opt. Ins. Modern Testing Techniques for Structural Systems: Dynamics and Control = Cism Cour L Modern Testing Techniques for Structural Systems: Dynamics and Control = Cism. Cour. L. Modern Theory of Anisotropic Elasticity and Applications = Siam Proc S Modern Theory of Anisotropic Elasticity and Applications = Siam. Proc. S. Modern Theory of Gratings = Springer Ser Opt Sci Modern Theory of Gratings = Springer. Ser. Opt. Sci. Modern Tools and Methods of Water Treatment for Improving Living Standards = Nato Sci S Ss Iv Ear Modern Tools and Methods of Water Treatment for Improving Living Standards = Nato. Sci. S. Ss. Iv. Ear. Modern treatment = Mod Treat Modern Treatment = Mod Treat Modern Treatment = Mod. Treat. Modern Trends in Biothermokinetics (series) = Mod Tr Biothermokin Modern Trends in Biothermokinetics (series) = Mod. Tr. Biothermokin. Modern Trends in Composite Laminates Mechanics = Cism Cour L Modern Trends in Composite Laminates Mechanics = Cism. Cour. L. Modern Trends in Geomechanics = Springer Proc Phys Modern Trends in Geomechanics = Springer. Proc. Phys. Modern trends in human reproductive physiology = Mod Trends Hum Reprod Physiol Modern trends in immunology = Mod Trends Immunol Modern Trends in Immunology = Mod. Trends Immunol. Modern Trends in Magnetostriction Study and Application = Nato Sci Ser Ii-math Modern Trends in Magnetostriction Study and Application = Nato. Sci. Ser. Ii-math. Modern Trends in Magnetostriction Study and Application = Nato Sci Ser Ii Math Modern Trends in Magnetostriction Study and Application = Nato. Sci. Ser. Ii. Math. Modern trends in medical virology = Mod Trends Med Virol Modern Trends in Medical Virology = Mod. Trends Med. Virol. Modern trends in neurology = Mod Trends Neurol Modern Trends in Neurology = Mod. Trends Neurol. Modern trends in orthopaedics = Mod Trends Orthop Modern Trends in Orthopaedics = Mod. Trends Orthop. Modern Trends in Physics Research = Aip Conf Proc Modern Trends in Physics Research = Aip. Conf. Proc. Modern trends in plastic surgery = Mod Trends Plast Surg Modern Trends in Plastic Surgery = Mod. Trends Plast. Surg. Modern Trends in Polymer Science-epf 09 = Macromol Sy Modern Trends in Polymer Science-epf 09 = Macromol. Sy. Modern Trends in Pseudo-differential Operators = Oper Theor Modern Trends in Pseudo-differential Operators = Oper. Theor. Modern Trends in Pseudo-differential Operators = Oper Theory Adv Appl Modern Trends in Pseudo-differential Operators = Oper. Theory. Adv. Appl. Modern trends in radiotherapy = Mod Trends Radiother Modern Trends in Radiotherapy = Mod. Trends Radiother. Modern trends in rheumatology = Mod Trends Rheumatol Modern Trends in Rheumatology = Mod. Trends Rheumatol. Modern trends in surgery = Mod Trends Surg Modern Trends in Surgery = Mod. Trends Surg. Modern Vaccine Design = Behr Inst Mitt Modern Vaccine Design = Behr. Inst. Mitt. Modern veterinary practice = Mod Vet Pract Modern Veterinary Practice = Mod Vet Pract Modern Veterinary Practice = Mod. Vet. Pract. Modern Yugoslav Conflict 1991-1995: Perception, Deception and Dishonesty = Contemp Secur Stud Modern Yugoslav Conflict 1991-1995: Perception, Deception and Dishonesty = Contemp. Secur. Stud. Mode Selective Chemistry = Jerus Sym Q Mode Selective Chemistry = Jerus. Sym. Q. Modes of Action of Gnrh and Gnrh Analogs = Serono Symp Modes of Action of Gnrh and Gnrh Analogs = Serono. Symp. Modes of Star Formation and The Origin of Field Populations, Proceedings = Astr Soc P Modes of Star Formation and The Origin of Field Populations, Proceedings = Astr. Soc. P. Modification and Blending of Synthetic and Natural Macromolecules = Nato Sci Ser Ii-math Modification and Blending of Synthetic and Natural Macromolecules = Nato. Sci. Ser. Ii-math. Modification and Blending of Synthetic and Natural Macromolecules = Nato Sci Ser Ii Math Modification and Blending of Synthetic and Natural Macromolecules = Nato. Sci. Ser. Ii. Math. Modification and Preparation of Membrane in Supercritical Carbon Dioxide = Chem Res Appl-nova Modification and Preparation of Membrane in Supercritical Carbon Dioxide = Chem. Res. Appl-nova. Modifications of Nuclear Dna and Its Regulatory Proteins = Prog Mol Biol Transl Modifications of Nuclear Dna and Its Regulatory Proteins = Prog. Mol. Biol. Transl. Modifying Flavour in Food = Woodhead Publ Food S Modifying Flavour in Food = Woodhead. Publ. Food S. Modtech 2010: New Face of Tmcr, Proceedings = Pr Int Conf Modtech Modtech 2010: New Face of Tmcr, Proceedings = Pr. Int. Conf. Modtech Modular Algorithms in Symbolic Summation and Symbolic Integration = Lect Notes Comput Sc Modular Algorithms in Symbolic Summation and Symbolic Integration = Lect. Notes. Comput. Sc. Modular Chemistry = Nato Adv Sci I C-mat Modular Chemistry = Nato. Adv. Sci. I. C-mat. Modular Curves and Abelian Varieties = Prog Math Modular Curves and Abelian Varieties = Prog. Math. Modular Forms and String Duality = Fields Inst Commun Modular Forms and String Duality = Fields. Inst. Commun. Modular Invariant Theory = Encycl Math Sci Modular Invariant Theory = Encycl. Math. Sci. Modularity and Constraints in Language and Cognition = Minn Sym Child Psych Modularity and Constraints in Language and Cognition = Minn. Sym. Child. Psych. Modularity in Language = Trends Linguist-stud Modularity in Language = Trends. Linguist-stud. Modularity of Orthopedic Implants = Am Soc Test Mater Modularity of Orthopedic Implants = Am. Soc. Test. Mater. Modular Mathematics Series = Modular Math. Ser. Modular Ontologies: Concepts, Theories and Techniques for Knowledge Modularization = Lect Notes Comput Sc Modular Ontologies: Concepts, Theories and Techniques for Knowledge Modularization = Lect. Notes. Comput. Sc. Modular Programming Languages = Lect Notes Comput Sc Modular Programming Languages = Lect. Notes. Comput. Sc. Modular Programming Languages, Proceedings = Lect Notes Comput Sc Modular Programming Languages, Proceedings = Lect. Notes. Comput. Sc. Modulation of Cellular Responses in Toxicity = Nato Adv Sci Inst Se Modulation of Cellular Responses in Toxicity = Nato. Adv. Sci. Inst. Se. Modulation of Neuronal Responses: Implications for Active Vision = Nato Sci Ser I Life Modulation of Neuronal Responses: Implications for Active Vision = Nato. Sci. Ser. I. Life. Modulation of The Immune Response to Vaccine Antigens = Dev Biologicals Modulation of The Immune Response to Vaccine Antigens = Dev. Biologicals. Modulation of The Immune Response to Vaccine Antigens = Dev Biol Stand Modulation of The Immune Response to Vaccine Antigens = Dev. Biol. Stand. Modulation of The Inflammatory Response in Severe Sepsis = Prog Surg Modulation of The Inflammatory Response in Severe Sepsis = Prog. Surg. Modules Over Discrete Valuation Domains = Degruyter Expos Math Modules Over Discrete Valuation Domains = Degruyter. Expos. Math. Modules Over Operads and Functors = Lect Notes Math Modules Over Operads and Functors = Lect. Notes. Math. Moduli in Modern Mapping Theory = Springer Monogr Math Moduli in Modern Mapping Theory = Springer. Monogr. Math. Moduli of Abelian Varieties = Prog Math Moduli of Abelian Varieties = Prog. Math. Moduli of Families of Curves for Conformal and Quasconformal Mapping = Lect Notes Math Moduli of Families of Curves for Conformal and Quasconformal Mapping = Lect. Notes. Math. Moduli Space of Curves = Prog Math Moduli Space of Curves = Prog. Math. Moduli Spaces in Algebraic Geometry = Ictp Lect Notes Moduli Spaces in Algebraic Geometry = Ictp. Lect. Notes. Moems and Minaturized Systems Iii = Proc Spie Moems and Minaturized Systems Iii = Proc. Spie. Moems and Minaturized Systems Iii = P Soc Photo-opt Ins Moems and Minaturized Systems Iii = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Ii = Proc Spie Moems and Miniaturized Systems Ii = Proc. Spie. Moems and Miniaturized Systems Ii = P Soc Photo-opt Ins Moems and Miniaturized Systems Ii = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Iv = Proc Spie Moems and Miniaturized Systems Iv = Proc. Spie. Moems and Miniaturized Systems Iv = P Soc Photo-opt Ins Moems and Miniaturized Systems Iv = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Ix = P Soc Photo-opt Ins Moems and Miniaturized Systems Ix = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems = Proc Spie Moems and Miniaturized Systems = Proc. Spie. Moems and Miniaturized Systems = P Soc Photo-opt Ins Moems and Miniaturized Systems = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Viii = Proc Spie Moems and Miniaturized Systems Viii = Proc. Spie. Moems and Miniaturized Systems Viii = P Soc Photo-opt Ins Moems and Miniaturized Systems Viii = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Vii = Proc Spie Moems and Miniaturized Systems Vii = Proc. Spie. Moems and Miniaturized Systems Vii = P Soc Photo-opt Ins Moems and Miniaturized Systems Vii = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems Vi = Proc Spie Moems and Miniaturized Systems Vi = Proc. Spie. Moems and Miniaturized Systems Vi = P Soc Photo-opt Ins Moems and Miniaturized Systems Vi = P. Soc. Photo-opt. Ins. Moems and Miniaturized Systems X = Proc Spie Moems and Miniaturized Systems X = Proc. Spie. Moems Display and Imaging Systems Iii = Proc Spie Moems Display and Imaging Systems Iii = Proc. Spie. Moems Display and Imaging Systems Iii = P Soc Photo-opt Ins Moems Display and Imaging Systems Iii = P. Soc. Photo-opt. Ins. Moems Display and Imaging Systems Ii = Proc Spie Moems Display and Imaging Systems Ii = Proc. Spie. Moems Display and Imaging Systems Ii = P Soc Photo-opt Ins Moems Display and Imaging Systems Ii = P. Soc. Photo-opt. Ins. Moems Display and Imaging Systems = P Soc Photo-opt Ins Moems Display and Imaging Systems = P. Soc. Photo-opt. Ins. Moems Display, Imaging, and Miniaturized Microsystems Iv = Proc Spie Moems Display, Imaging, and Miniaturized Microsystems Iv = Proc. Spie. Moems Display, Imaging, and Miniaturized Microsystems Iv = P Soc Photo-opt Ins Moems Display, Imaging, and Miniaturized Microsystems Iv = P. Soc. Photo-opt. Ins. Mohlomi = Mohlomi Mohu Xitong yu Shuxue = Mohu Xitong yu Shuxue Moire Techniques, Holographic Interferometry, Optical Ndt, and Applications to Fluid Mechanics, Pts 1 and 2 = P Soc Photo-opt Ins Moire Techniques, Holographic Interferometry, Optical Ndt, and Applications to Fluid Mechanics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Moisture Control in Buildings: The Key Factor in Mold Prevention, 2nd Edition = Astm Man Ser Moisture Control in Buildings: The Key Factor in Mold Prevention, 2nd Edition = Astm. Man. Ser. Moisture Measurement in Concrete Constructions Exposed to Temperature and Moisture Variations = Vtt Symp Moisture Measurement in Concrete Constructions Exposed to Temperature and Moisture Variations = Vtt. Symp. Moisture Sensitivity of Plastic Packages of Ic Devices = Micro- Opto-electron Moisture Sensitivity of Plastic Packages of Ic Devices = Micro-. Opto-electron. Mokuzai Gakkaishi = Mokuzai Gakkaishi Molding Systems = Molding Syst Molding Systems = Molding Syst. Molecualr Imaging: An Essential Tool in Preclinical Research, Diagnostic Imaging, and Therapy = E Schering Res Fdn W Molecualr Imaging: An Essential Tool in Preclinical Research, Diagnostic Imaging, and Therapy = E. Schering. Res. Fdn. W. Molecular Action of Insecticides On Ion Channels = Acs Sym Ser Molecular Action of Insecticides On Ion Channels = Acs. Sym. Ser. Molecular Analysis of B Lymphocyte Development and Activation = Curr Top Microbiol Molecular Analysis of B Lymphocyte Development and Activation = Curr. Top. Microbiol. Molecular Analysis of Dna Rearrangements in The Immune System = Curr Top Microbiol Molecular Analysis of Dna Rearrangements in The Immune System = Curr. Top. Microbiol. Molecular and Biochemical Parasitology = Mol Biochem Parasit Molecular and Biochemical Parasitology = Mol. Biochem. Parasit. Molecular and biochemical parasitology = Mol Biochem Parasitol Molecular and Biochemical Parasitology=Mol Biochem Parasitol;; Molecular and Biochemical Parasitology = Mol. Biochem. Parasitol. Molecular and Biomolecular Electronics = Adv Chem Ser Molecular and Biomolecular Electronics = Adv. Chem. Ser. Molecular and Biophysical Mechanisms of Arousal, Alertness, and Attention = Ann Ny Acad Sci Molecular and Biophysical Mechanisms of Arousal, Alertness, and Attention = Ann. Ny. Acad. Sci. Molecular and Cell Biological Aspects of Gastroenteropancreatic Neuroendocrine Tumor Disease = Ann Ny Acad Sci Molecular and Cell Biological Aspects of Gastroenteropancreatic Neuroendocrine Tumor Disease = Ann. Ny. Acad. Sci. Molecular and Cell Biology Methods for Fungi = Methods Mol Biol Molecular and Cell Biology Methods for Fungi = Methods Mol. Biol. Molecular and Cell Biology of Human Diseases Series = Mol Cel Hum Molecular and Cell Biology of Human Diseases Series = Mol. Cel. Hum. Molecular and cell biology of human diseases series = Mol Cell Biol Hum Dis Ser Molecular and Cell Biology of Human Diseases Series = Mol. Cell Biol. Hum. Dis. Ser. Molecular and Cell Biology of Type 2 Diabetes and Its Complications = Front Diabetes Molecular and Cell Biology of Type 2 Diabetes and Its Complications = Front. Diabetes Molecular and Cell Biology Updates = Mcbu Molecular and Cell Biology Updates = Mcbu. Molecular and Cellular Approaches to The Treatment of Neurological Disease = Res P Arnmd Molecular and Cellular Approaches to The Treatment of Neurological Disease = Res. P. Arnmd. Molecular and Cellular Aspects of Muscle Contraction = Adv Exp Med Biol Molecular and Cellular Aspects of Muscle Contraction = Adv. Exp. Med. Biol. Molecular and Cellular Aspects of Plant Reproduction = Soc Exp Biol Semin S Molecular and Cellular Aspects of Plant Reproduction = Soc. Exp. Biol. Semin. S. Molecular and cellular biochemistry = Mol Cell Biochem Molecular and Cellular Biochemistry=Mol Cell Biochem;; Molecular and Cellular Biochemistry = Mol Cell Biochem Molecular and Cellular Biochemistry = Mol. Cell. Biochem. Molecular and cellular biology = Mol Cell Biol Molecular and Cellular Biology=Mol Cell Biol;; Molecular and Cellular Biology = Mol Cell Biol Molecular and Cellular Biology = Mol. Cell. Biol. Molecular and Cellular Biology of Cytokines = Prog Leuc B Molecular and Cellular Biology of Cytokines = Prog. Leuc. B. Molecular and Cellular Biology of Neuroprotection in The Cns = Adv Exp Med Biol Molecular and Cellular Biology of Neuroprotection in The Cns = Adv. Exp. Med. Biol. Molecular and Cellular Biomechanics = Mol. Cell. Biomech. Molecular and Cellular Biophysics = Crc Ser Pure Appl Ph Molecular and Cellular Biophysics = Crc. Ser. Pure. Appl. Ph. Molecular and Cellular Differentiation = Mol Cell Differ Molecular and Cellular Differentiation = Mol. Cell. Differ. Molecular and cellular endocrinology = Mol Cell Endocrinol Molecular and Cellular Endocrinology=Mol Cell Endocrinol;; Molecular and Cellular Endocrinology = Mol Cell Endocrinol Molecular and Cellular Endocrinology = Mol. Cell. Endocrinol. Molecular and Cellular Gerontology = Ann Ny Acad Sci Molecular and Cellular Gerontology = Ann. Ny. Acad. Sci. Molecular and Cellular Mechanisms of Alcohol and Anesthetics = Ann Ny Acad Sci Molecular and Cellular Mechanisms of Alcohol and Anesthetics = Ann. Ny. Acad. Sci. Molecular and Cellular Mechanisms of Neuronal Plasticity = Adv Exp Med Biol Molecular and Cellular Mechanisms of Neuronal Plasticity = Adv. Exp. Med. Biol. Molecular and Cellular Mechanisms of Neuronal Plasticity in Normal Aging and Alzheimers Disease = Prog Brain Res Molecular and Cellular Mechanisms of Neuronal Plasticity in Normal Aging and Alzheimers Disease = Prog. Brain. Res. Molecular and Cellular Mechanisms of Neurotransmitter Release = Adv Sec Mess Phosph Molecular and Cellular Mechanisms of Neurotransmitter Release = Adv. Sec. Mess. Phosph. Molecular and Cellular Networks for Cancer Therapy = Int Congr Ser Molecular and Cellular Networks for Cancer Therapy = Int. Congr. Ser. Molecular and Cellular Neuroscience = Mol Cell Neurosci Molecular and Cellular Neuroscience = Mol. Cell. Neurosci. Molecular and cellular neurosciences = Mol Cell Neurosci Molecular and Cellular Neurosciences=Mol Cell Neurosci;; Molecular and Cellular Neurosciences = Mol. Cell. Neurosci. Molecular and Cellular Pharmacology = Mol. Cell. Pharm. Molecular and Cellular Probes = Mol Cell Probe Molecular and Cellular Probes = Mol. Cell. Probe. Molecular and cellular probes = Mol Cell Probes Molecular and Cellular Probes=Mol Cell Probes;; Molecular and Cellular Probes = Mol. Cell. Probes Molecular and Cellular Proteomics = Mol. Cell. Proteomics Molecular and Cellular Regulation of Calcium and Phosphate Metabolism = Prog Clin Biol Res Molecular and Cellular Regulation of Calcium and Phosphate Metabolism = Prog. Clin. Biol. Res. Molecular and Cellular Targets for Anti-epileptic Drugs = Curr Prob E Molecular and Cellular Targets for Anti-epileptic Drugs = Curr. Prob. E. Molecular and Chemical Neuropathology=Mol Chem Neuropathol;; Molecular and Chemical Neuropathology = Mol Chem Neuropathol Molecular and Chemical Neuropathology = Mol. Chem. Neuropathol. Molecular and chemical neuropathology / sponsored by the International Society for Neurochemistry and the World Federation of Neurology and research groups on neurochemistry and cerebrospinal fluid = Mol Chem Neuropathol Molecular and Colloidal Electro-optics = Surfactant Sci Ser Molecular and Colloidal Electro-optics = Surfactant. Sci. Ser. Molecular and Developmental Biology of Cartilage = Ann Ny Acad Sci Molecular and Developmental Biology of Cartilage = Ann. Ny. Acad. Sci. Molecular and Functional Diversity of Ion Channels and Receptors = Ann Ny Acad Sci Molecular and Functional Diversity of Ion Channels and Receptors = Ann. Ny. Acad. Sci. Molecular and Functional Models in Neuropsychiatry = Curr Top Behav Neuro Molecular and Functional Models in Neuropsychiatry = Curr. Top. Behav. Neuro. Molecular and General Genetics=Mol Gen Genet;; Molecular and General Genetics = Mol Gen Genet Molecular and General Genetics = Mol. Gen. Genet. Molecular and Genetic Aspects of Obesity = Penn Ctr N Molecular and Genetic Aspects of Obesity = Penn. Ctr. N. Molecular and Integrative Physiology of The Musculoskeletal System = Ann Ny Acad Sci Molecular and Integrative Physiology of The Musculoskeletal System = Ann. Ny. Acad. Sci. Molecular and Organic Electronics Devices = Electr Eng Dev Molecular and Organic Electronics Devices = Electr. Eng. Dev. Molecular and Structural Archaeology: Cosmetic and Therapeutic Chemicals = Nato Sci Ser Ii-math Molecular and Structural Archaeology: Cosmetic and Therapeutic Chemicals = Nato. Sci. Ser. Ii-math. Molecular and Structural Archaeology: Cosmetic and Therapeutic Chemicals = Nato Sci Ser Ii Math Molecular and Structural Archaeology: Cosmetic and Therapeutic Chemicals = Nato. Sci. Ser. Ii. Math. Molecular and Structural Biology of Hair = Ann Ny Acad Sci Molecular and Structural Biology of Hair = Ann. Ny. Acad. Sci. Molecular and Subcellular Cardiology = Adv Exp Med Biol Molecular and Subcellular Cardiology = Adv. Exp. Med. Biol. Molecular and Supramolecular Photochemistry = Mol. Supramol. Photochem. Molecular and Translational Medicine = Mol Transl Med Molecular and Translational Medicine = Mol. Transl. Med. Molecular Approaches to Compartmentation and Metabolic Regulation = Aspp Symp P Molecular Approaches to Compartmentation and Metabolic Regulation = Aspp. Symp. P. Molecular Approaches to Controlling Cancer = Cold Sh Q B Molecular Approaches to Controlling Cancer = Cold. Sh. Q. B. Molecular Approaches to The Study and Treatment of Human Diseases = Int Congr Ser Molecular Approaches to The Study and Treatment of Human Diseases = Int. Congr. Ser. Molecular Aspects of Aging = Life Sci R Molecular Aspects of Aging = Life. Sci. R. Molecular Aspects of Ammoniagenesis = Contrib Nephrol Molecular Aspects of Ammoniagenesis = Contrib. Nephrol. Molecular Aspects of Biotechnology : Computational Models and Theories = Nato Adv Sci I C-mat Molecular Aspects of Biotechnology : Computational Models and Theories = Nato. Adv. Sci. I. C-mat. Molecular Aspects of Development and Aging of The Nervous System = Adv Exp Med Biol Molecular Aspects of Development and Aging of The Nervous System = Adv. Exp. Med. Biol. Molecular Aspects of Fish and Marine Biology = Mol Asp Fish Mar Bio Molecular Aspects of Fish and Marine Biology = Mol. Asp. Fish Mar. Bio. Molecular aspects of medicine = Mol Aspects Med Molecular Aspects of Medicine=Mol Aspects Med;; Molecular Aspects of Medicine = Mol Aspects Med Molecular Aspects of Medicine = Mol. Aspects Med. Molecular Aspects of Monooxygenases and Bioactivation of Toxic Compounds = Nato Adv Sci I A-lif Molecular Aspects of Monooxygenases and Bioactivation of Toxic Compounds = Nato. Adv. Sci. I. A-lif. Molecular Aspects of Myeloid Stem Cell Development = Curr Top Microbiol Molecular Aspects of Myeloid Stem Cell Development = Curr. Top. Microbiol. Molecular Aspects of Oxidative Drug Metabolizing Enzymes: Their Significance in Environmental Toxicology, Chemical Carcinogenesis and Health = Nato Adv Sci I H-cel Molecular Aspects of Oxidative Drug Metabolizing Enzymes: Their Significance in Environmental Toxicology, Chemical Carcinogenesis and Health = Nato. Adv. Sci. I. H-cel. Molecular Aspects of Oxidative Drug Metabolizing Enzymes: Their Significance in Environmental Toxicology, Chemical Carcinogenesis and Health = Nato Adv Sci Inst Se Molecular Aspects of Oxidative Drug Metabolizing Enzymes: Their Significance in Environmental Toxicology, Chemical Carcinogenesis and Health = Nato. Adv. Sci. Inst. Se. Molecular Aspects of The Stress Response: Chaperones, Membranes and Networks = Adv Exp Med Biol Molecular Aspects of The Stress Response: Chaperones, Membranes and Networks = Adv. Exp. Med. Biol. Molecular Bases of Human Diseases = Int Congr Ser Molecular Bases of Human Diseases = Int. Congr. Ser. Molecular Basis of Axon Growth and Nerve Pattern Formation = Tanig Symp Brain Sci Molecular Basis of Axon Growth and Nerve Pattern Formation = Tanig. Symp. Brain. Sci. Molecular Basis of Cellular Defence Mechanisms = Ciba F Symp Molecular Basis of Cellular Defence Mechanisms = Ciba. F. Symp. Molecular Basis of Dementia = Ann Ny Acad Sci Molecular Basis of Dementia = Ann. Ny. Acad. Sci. Molecular Basis of Endocrine Diseases = Front Endocrinol Molecular Basis of Endocrine Diseases = Front. Endocrinol. Molecular Basis of Human Cancer / = Nato Adv Sci I A-lif Molecular Basis of Human Cancer / = Nato. Adv. Sci. I. A-lif. Molecular Basis of Inflammation = Chall Mod Med Molecular Basis of Inflammation = Chall. Mod. Med. Molecular Basis of Ion Channels and Receptors Involved in Nerve Excitation, Synaptic Transmission and Muscle Contraction = Ann Ny Acad Sci Molecular Basis of Ion Channels and Receptors Involved in Nerve Excitation, Synaptic Transmission and Muscle Contraction = Ann. Ny. Acad. Sci. Molecular Basis of Multiple Sclerosis: The Immune System = Results Probl Cell D Molecular Basis of Multiple Sclerosis: The Immune System = Results. Probl. Cell. D. Molecular Basis of Nk Cell Recognition and Function = Chem Immunol Molecular Basis of Nk Cell Recognition and Function = Chem. Immunol. Molecular Basis of Pulmonary Disease: Insights From Rare Lung Disorders = Respir Med Ser Molecular Basis of Pulmonary Disease: Insights From Rare Lung Disorders = Respir. Med. Ser. Molecular Basis of Smell and Taste Transduction = Ciba F Symp Molecular Basis of Smell and Taste Transduction = Ciba. F. Symp. Molecular Basis of Specificity in Nucleic Acid-drug Interactions = Jerus Sym Q Molecular Basis of Specificity in Nucleic Acid-drug Interactions = Jerus. Sym. Q. Molecular Basis of The Immune Response = Ann Ny Acad Sci Molecular Basis of The Immune Response = Ann. Ny. Acad. Sci. Molecular Beam Epitaxy / = Mater Sci Forum Molecular Beam Epitaxy / = Mater. Sci. Forum. Molecular & Biochemical Parasitology = Mol. Biochem. Parasitol. Molecular Biology and Differentiation of Megakaryocytes = Prog Clin Biol Res Molecular Biology and Differentiation of Megakaryocytes = Prog. Clin. Biol. Res. Molecular biology and evolution = Mol Biol Evol Molecular Biology and Evolution=Mol Biol Evol;; Molecular Biology and Evolution = Mol Biol Evol Molecular Biology and Evolution = Mol. Biol. Evol. Molecular Biology and Function of Carrier Proteins = Soc Gen Phy Molecular Biology and Function of Carrier Proteins = Soc. Gen. Phy. Molecular Biology and Genetics of Alzheimers Disease = Int Congr Ser Molecular Biology and Genetics of Alzheimers Disease = Int. Congr. Ser. Molecular Biology and Medicine = Mol. Biol. Med. Molecular Biology and Pathology of Elastic Tissues = Ciba F Symp Molecular Biology and Pathology of Elastic Tissues = Ciba. F. Symp. Molecular Biology and Physiology of Insulin and Insulin-like Growth Factors = Adv Exp Med Biol Molecular Biology and Physiology of Insulin and Insulin-like Growth Factors = Adv. Exp. Med. Biol. Molecular biology, biochemistry, and biophysics = Mol Biol Biochem Biophys Molecular Biology, Biochemistry and Biophysics = Mol. Biol. Biochem. Biophys. Molecular Biology in Blood Transfusion = Dev Hematol Molecular Biology in Blood Transfusion = Dev. Hematol. Molecular Biology Intelligence Unit = Mol B Int U Molecular Biology Intelligence Unit = Mol. B. Int. U. Molecular Biology Intelligence Unit = Mol Biol Intell Unit Molecular Biology Intelligence Unit = Mol. Biol. Intell. Unit Molecular Biology Intelligence Unit P53 = Mol Biol Intell Unit Molecular Biology Intelligence Unit P53 = Mol. Biol. Intell. Unit Molecular Biology in Tumour Research = Biotechfor Molecular Biology in Tumour Research = Biotechfor. Molecular Biology : Its Practice and Role in Crop Protection = Br Crop Pr Molecular Biology : Its Practice and Role in Crop Protection = Br. Crop Pr. Molecular biology & medicine = Mol Biol Med Molecular Biology & Medicine = Mol Biol Med Molecular Biology & Medicine = Mol. Biol. Med. Molecular biology = Mol Biol Molecular Biology = Mol Biol+ Molecular Biology = Mol. Biol. Molecular Biology = Mol. Biol+.+ Molecular Biology (Moscow, Russian Federation, English Edition) (Translation of Molekulyarnaya Biologiya) = Mol. Biol. (Moscow, Russ. Fed., Engl. Ed.) Molecular Biology (New York, NY, United States, English Edition) = Mol. Biol. (N. Y., NY, U. S., Engl. Ed.) Molecular Biology of Aging = Alfred Benzon Symp S Molecular Biology of Aging = Alfred. Benzon. Symp. S. Molecular Biology of Aging = Ucla Sym Bi Molecular Biology of Aging = Ucla. Sym. Bi. Molecular Biology of Erythropoiesis = Adv Exp Med Biol Molecular Biology of Erythropoiesis = Adv. Exp. Med. Biol. Molecular Biology of Membrane-bound Complexes in Phototrophic Bacteria = Fems Symp Molecular Biology of Membrane-bound Complexes in Phototrophic Bacteria = Fems. Symp. Molecular Biology of Muscle = Sym Soc Exp Biol Molecular Biology of Muscle = Sym. Soc. Exp. Biol. Molecular Biology of Plant Development = Sym Soc Exp Biol Molecular Biology of Plant Development = Sym. Soc. Exp. Biol. Molecular Biology of Protein Folding, Pt A = Prog Mol Biol Transl Molecular Biology of Protein Folding, Pt A = Prog. Mol. Biol. Transl. Molecular Biology of Protein Folding, Pt B = Prog Mol Biol Transl Molecular Biology of Protein Folding, Pt B = Prog. Mol. Biol. Transl. Molecular Biology of Rna Processing and Decay in Prokaryotes = Prog Mol Biol Transl Molecular Biology of Rna Processing and Decay in Prokaryotes = Prog. Mol. Biol. Transl. Molecular Biology of The Autoimmune Disease = Nato Adv Sci I H-cel Molecular Biology of The Autoimmune Disease = Nato. Adv. Sci. I. H-cel. Molecular Biology of The Cardiovascular System = Ucla Sym Bi Molecular Biology of The Cardiovascular System = Ucla. Sym. Bi. Molecular biology of the cell = Mol Biol Cell Molecular Biology of the Cell = Mol. Biol. Cell Molecular Biology of The Cell=Mol Biol Cell;; Molecular Biology of The Cell = Mol Biol Cell Molecular Biology of The Cell = Mol. Biol. Cell Molecular Biology of The Retina = Prog Clin Biol Res Molecular Biology of The Retina = Prog. Clin. Biol. Res. Molecular biology reports = Mol Biol Rep Molecular Biology Reports=Mol Biol Rep;; Molecular Biology Reports = Mol Biol Rep Molecular Biology Reports = Mol. Biol. Rep. Molecular bioSystems = Mol Biosyst Molecular Biosystems = Mol Biosyst Molecular Biosystems = Mol. Biosyst. Molecular BioSystems = Mol. BioSyst. Molecular biotechnology = Mol Biotechnol Molecular Biotechnology=Mol Biotechnol;; Molecular Biotechnology = Mol Biotechnol Molecular Biotechnology = Mol. Biotechnol. Molecular Biotechnology of Fungal Beta-lactam Antibiotics and Related Peptide Synthetases = Adv Biochem Eng Biot Molecular Biotechnology of Fungal Beta-lactam Antibiotics and Related Peptide Synthetases = Adv. Biochem. Eng. Biot. Molecular biotherapy = Mol Biother Molecular Biotherapy = Mol Biother Molecular Biotherapy = Mol. Biother. Molecular Botany: Signals and The Environment = Biochem Soc Symp Molecular Botany: Signals and The Environment = Biochem. Soc. Symp. Molecular Brain Research = Mol Brain Res Molecular Brain Research = Mol. Brain Res. Molecular Brain Research = Mol. Brain. Res. Molecular Breeding = Mol Breeding Molecular Breeding = Mol. Breeding Molecular Breeding of Forage and Turf, Proceedings = Dev Plant Breed Molecular Breeding of Forage and Turf, Proceedings = Dev. Plant. Breed. Molecular Breeding of Forage Crops = Dev Plant Breed Molecular Breeding of Forage Crops = Dev. Plant. Breed. Molecular Breeding of Woody Plants, Proceedings = Progr Biotechnol Molecular Breeding of Woody Plants, Proceedings = Progr. Biotechnol. Molecular Building Blocks for Nanotechnology: From Diamondoids to Nanoscale Materials and Applications = Top Appl Phys Molecular Building Blocks for Nanotechnology: From Diamondoids to Nanoscale Materials and Applications = Top. Appl. Phys. Molecular cancer = Mol Cancer Molecular Cancer = Mol Cancer Molecular Cancer = Mol. Cancer Molecular cancer research : MCR = Mol Cancer Res Molecular Cancer Research = Mol Cancer Res Molecular Cancer Research = Mol. Cancer Res. Molecular cancer therapeutics = Mol Cancer Ther Molecular Cancer Therapeutics = Mol Cancer Ther Molecular Cancer Therapeutics = Mol. Cancer Ther. Molecular carcinogenesis = Mol Carcinog Molecular Carcinogenesis=Mol Carcinog;; Molecular Carcinogenesis = Mol. Carcinog. Molecular Carcinogenesis = Mol Carcinogen Molecular Carcinogenesis = Mol. Carcinogen. Molecular Catalysis of Rare-earth Elements = Struct Bond Molecular Catalysis of Rare-earth Elements = Struct. Bond. Molecular Catalysts for Energy Conversion = Springer Ser Mater S Molecular Catalysts for Energy Conversion = Springer. Ser. Mater. S. Molecular cell biology research communications : MCBRC = Mol Cell Biol Res Commun Molecular Cell Biology Research Communications = Mol. Cell Biol. Res. Commun. Molecular cell = Mol Cell Molecular Cell = Mol Cell Molecular Cell = Mol. Cell Molecular, Cellular, and Clinical Aspects of Angiogenesis = Nato Adv Sci Inst Se Molecular, Cellular, and Clinical Aspects of Angiogenesis = Nato. Adv. Sci. Inst. Se. Molecular, Cellular, and Developmental Biology of Erythropoietin and Erythropoiesis = Ann Ny Acad Sci Molecular, Cellular, and Developmental Biology of Erythropoietin and Erythropoiesis = Ann. Ny. Acad. Sci. Molecular, Cellular and Developmental Biology of Reproduction = Marc Malpig Symp Ser Molecular, Cellular and Developmental Biology of Reproduction = Marc. Malpig. Symp. Ser. Molecular & cellular biomechanics : MCB = Mol Cell Biomech Molecular Cellular Microbiology = Method Microbiol Molecular Cellular Microbiology = Method. Microbiol. Molecular & cellular proteomics : MCP = Mol Cell Proteomics Molecular & Cellular Proteomics = Mol Cell Proteomics Molecular & Cellular Proteomics = Mol. Cell. Proteomics Molecular & Cellular Toxicology = Mol Cell Toxicol Molecular & Cellular Toxicology = Mol. Cell. Toxicol. Molecular Chaperones = Method Enzymol Molecular Chaperones = Method. Enzymol. Molecular, Clinical and Environmental Toxicology Vol 2: Clinical Toxicology = Experientia Suppl Molecular, Clinical and Environmental Toxicology Vol 2: Clinical Toxicology = Experientia. Suppl. Molecular Control of Haemopoiesis = Ciba F Symp Molecular Control of Haemopoiesis = Ciba. F. Symp. Molecular Crystals and Liquid Crystals = Mol Cryst Liq Cryst Molecular Crystals and Liquid Crystals = Mol. Cryst. Liq. Cryst. Molecular Crystals and Liquid Crystals Science and Technology Section A = Mol. Cryst. Liq. Cryst. Sci. Technol., Sect. A Molecular Crystals and Liquid Crystals Science and Technology Section A-molecular Crystals and Liquid Crystals = Mol Cryst Liq Crys A Molecular Crystals and Liquid Crystals Science and Technology Section A-molecular Crystals and Liquid Crystals = Mol. Cryst. Liq. Crys. A. Molecular Crystals and Liquid Crystals Science and Technology Section B = Mol. Cryst. Liq. Cryst. Sci. Technol., Sect. B Molecular Crystals and Liquid Crystals Science and Technology Section C = Mol. Cryst. Liq. Cryst. Sci. Technol., Sect. C Molecular Crystals and Liquid Crystals Science and Technology Section C-molecular Materials = Mol Cryst Liq Crys C Molecular Crystals and Liquid Crystals Science and Technology Section C-molecular Materials = Mol. Cryst. Liq. Crys. C. Molecular Crystals & Liquid Crystals = Mol. Cryst. Liq. Cryst. Molecular Crystals = Mol Cryst Molecular Crystals = Mol. Cryst. Molecular Determinants of Radiation Response = Curr Cancer Res Molecular Determinants of Radiation Response = Curr. Cancer. Res. Molecular diagnosis : a journal devoted to the understanding of human disease through the clinical application of molecular biology = Mol Diagn Molecular Diagnosis and Monitoring of Leukaemia and Lymphoma = Chall Mod Med Molecular Diagnosis and Monitoring of Leukaemia and Lymphoma = Chall. Mod. Med. Molecular Diagnosis and Therapy = Mol. Diagn. Ther. Molecular Diagnosis = Mol Diagn Molecular Diagnosis = Mol. Diagn. Molecular diagnosis & therapy = Mol Diagn Ther Molecular Diagnosis & Therapy = Mol Diagn Ther Molecular Diagnosis & Therapy = Mol. Diagn. Ther. Molecular Diagnostics of Human Cancer = Cancer Cel Molecular Diagnostics of Human Cancer = Cancer Cel. Molecular diversity = Mol Divers Molecular Diversity=Mol Divers;; Molecular Diversity = Mol Divers Molecular Diversity = Mol. Divers. Molecular Diversity = Mol. Diversity Molecular Dynamics of Glass-forming Systems: Effects of Pressure = Adv Dielectr Molecular Dynamics of Glass-forming Systems: Effects of Pressure = Adv. Dielectr. Molecular ecology = Mol Ecol Molecular Ecology=Mol Ecol;; Molecular Ecology = Mol Ecol Molecular Ecology = Mol. Ecol. Molecular ecology notes = Mol Ecol Notes Molecular Ecology Notes = Mol Ecol Notes Molecular Ecology Notes = Mol. Ecol. Notes Molecular Ecology of Aquatic Microbes = Nato Adv Sci Inst Se Molecular Ecology of Aquatic Microbes = Nato. Adv. Sci. Inst. Se. Molecular Ecology Resources = Mol Ecol Resour Molecular Ecology Resources = Mol. Ecol. Resour. Molecular Electrochemistry of Inorganic, Bioinorganic and Organometallic Compounds = Nato Adv Sci Inst Se Molecular Electrochemistry of Inorganic, Bioinorganic and Organometallic Compounds = Nato. Adv. Sci. Inst. Se. Molecular Electronics: Bio-sensors and Bio-computers = Nato Sci Ser Ii-math Molecular Electronics: Bio-sensors and Bio-computers = Nato. Sci. Ser. Ii-math. Molecular Electronics: Bio-sensors and Bio-computers = Nato Sci Ser Ii Math Molecular Electronics: Bio-sensors and Bio-computers = Nato. Sci. Ser. Ii. Math. Molecular Electronics = Eur Mat Res Molecular Electronics = Eur. Mat. Res. Molecular Electronics Ii = Ann Ny Acad Sci Molecular Electronics Ii = Ann. Ny. Acad. Sci. Molecular Electronics Iii = Ann Ny Acad Sci Molecular Electronics Iii = Ann. Ny. Acad. Sci. Molecular Electronics - Science and Technology = Aip Conf Proc Molecular Electronics - Science and Technology = Aip. Conf. Proc. Molecular Electronics: Science and Technology = Ann Ny Acad Sci Molecular Electronics: Science and Technology = Ann. Ny. Acad. Sci. Molecular Endocrinology and Steroid Hormone Action = Prog Clin Biol Res Molecular Endocrinology and Steroid Hormone Action = Prog. Clin. Biol. Res. Molecular endocrinology (Baltimore, Md.) = Mol Endocrinol Molecular Endocrinology: Methods and Protocols = Methods Mol Biol Molecular Endocrinology: Methods and Protocols = Methods Mol. Biol. Molecular Endocrinology=Mol Endocrinol;; Molecular Endocrinology = Mol Endocrinol Molecular Endocrinology = Mol. Endocrinol. Molecular Engineering for Advanced Materials = Nato Adv Sci Inst Se Molecular Engineering for Advanced Materials = Nato. Adv. Sci. Inst. Se. Molecular Epidemiology of Microorganisms = Methods Mol Biol Molecular Epidemiology of Microorganisms = Methods. Mol. Biol. Molecular Evolution of Physiological Processes = Soc Gen Phy Molecular Evolution of Physiological Processes = Soc. Gen. Phy. Molecular Evolution On Rugged Landscapes : Proteins, Rna and The Immune System = Sfi S Sci C Molecular Evolution On Rugged Landscapes : Proteins, Rna and The Immune System = Sfi. S. Sci. C. Molecular Evolution: Producing The Biochemical Data = Method Enzymol Molecular Evolution: Producing The Biochemical Data = Method. Enzymol. Molecular Evolution: Producing The Biochemical Data, Part B = Method Enzymol Molecular Evolution: Producing The Biochemical Data, Part B = Method. Enzymol. Molecular Evolution = Ucla Sym Bi Molecular Evolution = Ucla. Sym. Bi. Molecular Farming = Sci Update Molecular Farming = Sci. Update. Molecular & general genetics : MGG = Mol Gen Genet Molecular & General Genetics = Mol Gen Genet Molecular & General Genetics = Mol. Gen. Genet. Molecular genetic medicine = Mol Genet Med Molecular Genetic Medicine = Mol. Genet. Med. Molecular Genetics and Evolution of Pesticide Resistance = Acs Sym Ser Molecular Genetics and Evolution of Pesticide Resistance = Acs. Sym. Ser. Molecular genetics and genomics : MGG = Mol Genet Genomics Molecular Genetics and Genomics = Mol Genet Genomics Molecular Genetics and Genomics = Mol. Genet. Genomics Molecular genetics and metabolism = Mol Genet Metab Molecular Genetics and Metabolism=Mol Genet Metab;; Molecular Genetics and Metabolism = Mol Genet Metab Molecular Genetics and Metabolism = Mol. Genet. Metab. Molecular Genetics, Gene Transfer, and Therapy = Adv Veter Med Ap Molecular Genetics, Gene Transfer, and Therapy = Adv. Veter. Med. Ap. Molecular Genetics, Gene Transfer, and Therapy = Adv Vet Med-acad Pr Molecular Genetics, Gene Transfer, and Therapy = Adv. Vet. Med-acad. Pr. Molecular Genetics Microbiology and Virology = Mol Genet Microbiol+ Molecular Genetics Microbiology and Virology = Mol. Genet. Microbiol+.+ Molecular Genetics of Chromosome 21 and Down Syndrome = Prog Clin Biol Res Molecular Genetics of Chromosome 21 and Down Syndrome = Prog. Clin. Biol. Res. Molecular Genetics of Host-specific Toxins in Plant Diseases = Dev Plant Pathol Molecular Genetics of Host-specific Toxins in Plant Diseases = Dev. Plant Pathol. Molecular Genetics of Liver Neoplasia = Cancer Genet-ser Molecular Genetics of Liver Neoplasia = Cancer. Genet-ser. Molecular Geomicrobiology = Rev Mineral Geochem Molecular Geomicrobiology = Rev. Mineral. Geochem. Molecular human reproduction = Mol Hum Reprod Molecular Human Reproduction=Mol Hum Reprod;; Molecular Human Reproduction = Mol Hum Reprod Molecular Human Reproduction = Mol. Hum. Reprod. Molecular Hydrogen in Space = Cam Contemp Astrophy Molecular Hydrogen in Space = Cam. Contemp. Astrophy. Molecular imaging and biology : MIB : the official publication of the Academy of Molecular Imaging = Mol Imaging Biol Molecular Imaging and Biology = Mol Imaging Biol Molecular Imaging and Biology = Mol. Imaging Biol. Molecular Imaging & Biology = Mol. Imag. Biol. Molecular Imaging: Computer Reconstruction and Practice = Nato Science Peace S Molecular Imaging: Computer Reconstruction and Practice = Nato. Science. Peace. S. Molecular Imaging Iii = Proc Spie Molecular Imaging Iii = Proc. Spie. Molecular Imaging Ii = Proc Spie Molecular Imaging Ii = Proc. Spie. Molecular Imaging = Mol Imaging Molecular Imaging = Mol. Imaging Molecular imaging : official journal of the Society for Molecular Imaging = Mol Imaging Molecular Imaging = Proc Spie Molecular Imaging = Proc. Spie. Molecular Imaging = P Soc Photo-opt Ins Molecular Imaging = P. Soc. Photo-opt. Ins. Molecular Imaging: Reporters, Dyes, Markers, and Instrumentation = P Soc Photo-opt Ins Molecular Imaging: Reporters, Dyes, Markers, and Instrumentation = P. Soc. Photo-opt. Ins. Molecular immunology = Mol Immunol Molecular Immunology=Mol Immunol;; Molecular Immunology = Mol Immunol Molecular Immunology = Mol. Immunol. Molecular Immunology of Complex Carbohydrates-2 = Adv Exp Med Biol Molecular Immunology of Complex Carbohydrates-2 = Adv. Exp. Med. Biol. Molecular Informatics = Mol. Inf. Molecular Informatics = Mol Inform Molecular Informatics = Mol. Inform. Molecular interventions = Mol Interv Molecular Interventions = Mol Interv Molecular Interventions = Mol. Interv. Molecular Interventions = Mol. Interventions Molecular Level Artificial Photosynthetic Materials = Prog Inorg Chem Molecular Level Artificial Photosynthetic Materials = Prog. Inorg. Chem. Molecular Liquids : New Perspectives in Physics and Chemistry = Nato Adv Sci I C-mat Molecular Liquids : New Perspectives in Physics and Chemistry = Nato. Adv. Sci. I. C-mat. Molecular Low Dimensional and Nanostructured Materials for Advanced Applications = Nato Sci Ser Ii-math Molecular Low Dimensional and Nanostructured Materials for Advanced Applications = Nato. Sci. Ser. Ii-math. Molecular Low Dimensional and Nanostructured Materials for Advanced Applications = Nato Sci Ser Ii Math Molecular Low Dimensional and Nanostructured Materials for Advanced Applications = Nato. Sci. Ser. Ii. Math. Molecularly Designed Ultrafine/nanostructured Materials = Mater Res Soc Symp P Molecularly Designed Ultrafine/nanostructured Materials = Mater. Res. Soc. Symp. P. Molecularly Imprinted Materials-2003 = Mater Res Soc Symp P Molecularly Imprinted Materials-2003 = Mater. Res. Soc. Symp. P. Molecularly Imprinted Materials-sensors and Other Devices = Mater Res Soc Symp P Molecularly Imprinted Materials-sensors and Other Devices = Mater. Res. Soc. Symp. P. Molecular Machines and Motors = Struct Bond Molecular Machines and Motors = Struct. Bond. Molecular Machines = Top Curr Chem Molecular Machines = Top. Curr. Chem. Molecular Magnetism: From Molecular Assemblies to The Devices = Nato Adv Sci Inst Se Molecular Magnetism: From Molecular Assemblies to The Devices = Nato. Adv. Sci. Inst. Se. Molecular Manufacturing = Electr Biot Adv For Molecular Manufacturing = Electr. Biot. Adv. For. Molecular Marine Biology and Biotechnology = Mol Mar Biol Biotech Molecular Marine Biology and Biotechnology = Mol. Mar. Biol. Biotech. Molecular marine biology and biotechnology = Mol Mar Biol Biotechnol Molecular Marine Biology and Biotechnology=Mol Mar Biol Biotechnol;; Molecular Marine Biology and Biotechnology = Mol. Mar. Biol. Biotechnol. Molecular Markers in Environmental Geochemistry = Acs Sym Ser Molecular Markers in Environmental Geochemistry = Acs. Sym. Ser. Molecular Materials = Mol Mater Molecular Materials = Mol. Mater. Molecular Mechanism and Therapeutics of Amyotrophic Lateral Sclerosis = Int Congr Ser Molecular Mechanism and Therapeutics of Amyotrophic Lateral Sclerosis = Int. Congr. Ser. Molecular Mechanisms and Epochal Therapeutics of Ischemic Stroke and Dementia = Int Congr Ser Molecular Mechanisms and Epochal Therapeutics of Ischemic Stroke and Dementia = Int. Congr. Ser. Molecular Mechanisms and Models of Aging = Ann Ny Acad Sci Molecular Mechanisms and Models of Aging = Ann. Ny. Acad. Sci. Molecular Mechanisms and Their Clinical Application in Malignancies = Bris Myer C Molecular Mechanisms and Their Clinical Application in Malignancies = Bris. Myer. C. Molecular Mechanisms in Dna Replication and Recombination = Ucla Sym Bi Molecular Mechanisms in Dna Replication and Recombination = Ucla. Sym. Bi. Molecular Mechanisms in Spermatogenesis = Adv Exp Med Biol Molecular Mechanisms in Spermatogenesis = Adv. Exp. Med. Biol. Molecular Mechanisms Involved in The Pathogenesis of Huntington's Disease = Neurodegener Dis Lab Molecular Mechanisms Involved in The Pathogenesis of Huntington's Disease = Neurodegener. Dis. Lab. Molecular Mechanisms of Bacterial Infection Via The Gut = Curr Top Microbiol Molecular Mechanisms of Bacterial Infection Via The Gut = Curr. Top. Microbiol. Molecular Mechanisms of Fever = Ann Ny Acad Sci Molecular Mechanisms of Fever = Ann. Ny. Acad. Sci. Molecular Mechanisms of Insecticide Resistance = Acs Sym Ser Molecular Mechanisms of Insecticide Resistance = Acs. Sym. Ser. Molecular Mechanisms of Metabolic Arrest = Exptl Biol Rev Molecular Mechanisms of Metabolic Arrest = Exptl. Biol. Rev. Molecular Mechanisms of Signal Transduction = Nato Sci S A Lif Sci Molecular Mechanisms of Signal Transduction = Nato. Sci. S. A. Lif. Sci. Molecular Mechanisms of Spondyloarthropathies = Adv Exp Med Biol Molecular Mechanisms of Spondyloarthropathies = Adv. Exp. Med. Biol. Molecular Mechanisms of Transcellular Signaling = Nato Adv Sci I A-lif Molecular Mechanisms of Transcellular Signaling = Nato. Adv. Sci. I. A-lif. Molecular Mechanisms of Transport = Devel Bioch Molecular Mechanisms of Transport = Devel. Bioch. Molecular Mechanisms of Xeroderma Pigmentosum = Adv Exp Med Biol Molecular Mechanisms of Xeroderma Pigmentosum = Adv. Exp. Med. Biol. Molecular Mechanisms to Regulate The Activities of Insulin-like Growth Factors = Int Congr Ser Molecular Mechanisms to Regulate The Activities of Insulin-like Growth Factors = Int. Congr. Ser. Molecular medicine (Cambridge, Mass.) = Mol Med Molecular Medicine=Mol Med;; Molecular Medicine = Mol Med Molecular Medicine = Mol. Med. Molecular Medicine: Novel Findings of Gene Diagnosis, Regulation of Gene Expression, and Gene Therapy = Int Congr Ser Molecular Medicine: Novel Findings of Gene Diagnosis, Regulation of Gene Expression, and Gene Therapy = Int. Congr. Ser. Molecular Medicine Reports = Mol Med Rep Molecular Medicine Reports = Mol. Med. Rep. Molecular medicine today = Mol Med Today Molecular Medicine Today=Mol Med Today;; Molecular Medicine Today = Mol Med Today Molecular Medicine Today = Mol. Med. Today Molecular membrane biology = Mol Membr Biol Molecular Membrane Biology=Mol Membr Biol;; Molecular Membrane Biology = Mol Membr Biol Molecular Membrane Biology = Mol. Membr. Biol. Molecular microbiology = Mol Microbiol Molecular Microbiology=Mol Microbiol;; Molecular Microbiology = Mol Microbiol Molecular Microbiology = Mol. Microbiol. Molecular Mimicry: Infection-inducing Autoimmune Disease = Curr Top Microbiol Molecular Mimicry: Infection-inducing Autoimmune Disease = Curr. Top. Microbiol. Molecular Mimicry in Health and Disease = Int Congr Ser Molecular Mimicry in Health and Disease = Int. Congr. Ser. Molecular Modeling = Acs Sym Ser Molecular Modeling = Acs. Sym. Ser. Molecular Modeling and Dynamics of Bioinorganic Systems = Nato Asi 3 High Tech Molecular Modeling and Dynamics of Bioinorganic Systems = Nato. Asi. 3. High. Tech. Molecular Modeling and Simulation: An Interdisciplinary Guide, 2nd Edition = Interd Appl Math Molecular Modeling and Simulation: An Interdisciplinary Guide, 2nd Edition = Interd. Appl. Math. Molecular Modeling of Nucleic Acids = Acs Sym Ser Molecular Modeling of Nucleic Acids = Acs. Sym. Ser. Molecular Modeling Theory: Applications in The Geosciences = Rev Mineral Geochem Molecular Modeling Theory: Applications in The Geosciences = Rev. Mineral. Geochem. Molecular Motors and The Cytoskeleton, Pt B = Method Enzymol Molecular Motors and The Cytoskeleton, Pt B = Method. Enzymol. Molecular Nanomagnets = Mesoscopic Phys Nano Molecular Nanomagnets = Mesoscopic. Phys. Nano. Molecular Nanostructures = Aip Conf Proc Molecular Nanostructures = Aip. Conf. Proc. Molecular Nanowires and Other Quantum Objects = Nato Sci Ser Ii-math Molecular Nanowires and Other Quantum Objects = Nato. Sci. Ser. Ii-math. Molecular Nanowires and Other Quantum Objects = Nato Sci Ser Ii Math Molecular Nanowires and Other Quantum Objects = Nato. Sci. Ser. Ii. Math. Molecular Networks = Struct Bond Molecular Networks = Struct. Bond. Molecular neurobiology = Mol Neurobiol Molecular Neurobiology=Mol Neurobiol;; Molecular Neurobiology = Mol Neurobiol Molecular Neurobiology = Mol. Neurobiol. Molecular Neurobiology of Pain = Prog Pain Res Manag Molecular Neurobiology of Pain = Prog. Pain Res. Manag. Molecular neurodegeneration = Mol Neurodegener Molecular Neurodegeneration = Mol Neurodegener Molecular Neurodegeneration = Mol. Neurodegener. Molecular Neuropharmacology = Mol Neuropharmacol Molecular Neuropharmacology = Mol. Neuropharmacol. Molecular Nutrition and Food Research = Mol. Nutr. Food Res. Molecular nutrition & food research = Mol Nutr Food Res Molecular Nutrition & Food Research = Mol Nutr Food Res Molecular Nutrition & Food Research = Mol. Nutr. Food Res. Molecular Oncology and Clinical Applications = Mcbu Molecular Oncology and Clinical Applications = Mcbu. Molecular Oncology = Mol Oncol Molecular Oncology = Mol. Oncol. Molecular Oral Microbiology = Mol Oral Microbiol Molecular Oral Microbiology = Mol. Oral Microbiol. Molecular Organisation On Interfaces = Prog Coll Pol Sci S Molecular Organisation On Interfaces = Prog. Coll. Pol. Sci. S. Molecular Organometallic Materials for Optics = Top Organometal Chem Molecular Organometallic Materials for Optics = Top. Organometal. Chem. Molecular pain = Mol Pain Molecular Pain = Mol Pain Molecular Pain = Mol. Pain Molecular Parameters Indicating Adaptation to Mechanical Stress in Fibrous Connective Tissue = Adv Anat Embryol Cel Molecular Parameters Indicating Adaptation to Mechanical Stress in Fibrous Connective Tissue = Adv. Anat. Embryol. Cel. Molecular Pathogenesis of Diabetes Mellitus = Front Horm Res Molecular Pathogenesis of Diabetes Mellitus = Front. Horm. Res. Molecular Pathogenesis of Gastrointestinal Infections = Fems Symp Molecular Pathogenesis of Gastrointestinal Infections = Fems. Symp. Molecular Pathogenesis of Modys = Front Diabetes Molecular Pathogenesis of Modys = Front. Diabetes. Molecular Pathogenesis of Pancreatic Cancer = Biom Hlth R Molecular Pathogenesis of Pancreatic Cancer = Biom. Hlth. R. Molecular Pathogenesis of Virus Infections = Symp Soc Gen Microbi Molecular Pathogenesis of Virus Infections = Symp. Soc. Gen. Microbi. Molecular Pathology Library = Mol Pathol Lib Molecular Pathology Library = Mol. Pathol. Lib. Molecular Pathology=Mol Pathol;; Molecular Pathology = Mol. Pathol. Molecular pathology : MP = Mol Pathol Molecular Pathology of Endocrine Diseases = Mol Pathol Lib Molecular Pathology of Endocrine Diseases = Mol. Pathol. Lib. Molecular Pathology of Hematolymphoid Diseases = Mol Pathol Lib Molecular Pathology of Hematolymphoid Diseases = Mol. Pathol. Lib. Molecular Pathology of Liver Diseases = Mol Pathol Lib Molecular Pathology of Liver Diseases = Mol. Pathol. Lib. Molecular Pathology of Lung Diseases = Mol Pathol Lib Molecular Pathology of Lung Diseases = Mol. Pathol. Lib. Molecular Pathology of The Pituitary = Front Horm Res Molecular Pathology of The Pituitary = Front. Horm. Res. Molecular pharmaceutics = Mol Pharm Molecular Pharmaceutics = Mol Pharm Molecular Pharmaceutics = Mol. Pharm. Molecular Pharmaceutics = Mol Pharmaceut Molecular Pharmaceutics = Mol. Pharmaceut. Molecular Pharmaceutics = Mol. Pharmaceutics Molecular pharmacology = Mol Pharmacol Molecular Pharmacology=Mol Pharmacol;; Molecular Pharmacology = Mol Pharmacol Molecular Pharmacology = Mol. Pharmacol. Molecular Photochemistry = Mol Photochem Molecular Photochemistry = Mol. Photochem. Molecular phylogenetics and evolution = Mol Phylogenet Evol Molecular Phylogenetics and Evolution=Mol Phylogenet Evol;; Molecular Phylogenetics and Evolution = Mol Phylogenet Evol Molecular Phylogenetics and Evolution = Mol. Phylogenet. Evol. Molecular Physics and Hypersonic Flows = Nato Adv Sci I C-mat Molecular Physics and Hypersonic Flows = Nato. Adv. Sci. I. C-mat. Molecular Physics and Hypersonic Flows = Nato Adv Sci Inst Se Molecular Physics and Hypersonic Flows = Nato. Adv. Sci. Inst. Se. Molecular physics = Mol Phys Molecular Physics = Mol Phys Molecular Physics = Mol. Phys. Molecular Physics Reports(series) = Molecul Phys Rep Molecular Physics Reports(series) = Molecul. Phys. Rep. Molecular Physics Reports, Vol 11 - 1995 = Molecul Phys Rep Molecular Physics Reports, Vol 11 - 1995 = Molecul. Phys. Rep. Molecular Physics Reports, Vol 12 - 1995 = Molecul Phys Rep Molecular Physics Reports, Vol 12 - 1995 = Molecul. Phys. Rep. Molecular Physics Reports, Vol 5, 1994 = Molecul Phys Rep Molecular Physics Reports, Vol 5, 1994 = Molecul. Phys. Rep. Molecular Physics Reports, Vol 6, 1994 = Molecul Phys Rep Molecular Physics Reports, Vol 6, 1994 = Molecul. Phys. Rep. Molecular Physics Reports, Vol 7, 1994 = Molecul Phys Rep Molecular Physics Reports, Vol 7, 1994 = Molecul. Phys. Rep. Molecular Physiology = Mol Physiol Molecular Physiology = Mol. Physiol. Molecular plant breeding = Fen zi zhi wu yu zhong|Mol. Plant Breed. Molecular Plant-microbe Interactions = Mol Plant Microbe In Molecular Plant-microbe Interactions = Mol. Plant. Microbe. In. Molecular Plant-Microbe Interactions=Mol Plant Microbe Interact;; Molecular Plant-Microbe Interactions = Mol. Plant-Microbe Interact. Molecular Plant-Microbe Interactions = Mol. Plant. Microbe Interact. Molecular plant-microbe interactions : MPMI = Mol Plant Microbe Interact Molecular Plant = Mol Plant Molecular Plant = Mol. Plant Molecular Plant Pathology = Mol Plant Pathol Molecular Plant Pathology = Mol. Plant Pathol. Molecular Probes for Biomedical Applications Ii = Proc Spie Molecular Probes for Biomedical Applications Ii = Proc. Spie. Molecular Psychiatry = Mol Psychiatr Molecular Psychiatry = Mol. Psychiatr. Molecular psychiatry = Mol Psychiatry Molecular Psychiatry=Mol Psychiatry;; Molecular Psychiatry = Mol. Psychiatry Molecular Realizations of Quantum Computing 2007 = Kinki U Ser Quantum Molecular Realizations of Quantum Computing 2007 = Kinki. U. Ser. Quantum Molecular Recognition : Chemical and Biochemical Problems Ii = Roy Soc Ch Molecular Recognition : Chemical and Biochemical Problems Ii = Roy. Soc. Ch. Molecular Recognition in Host-parasite Interactions = Fems Symp Molecular Recognition in Host-parasite Interactions = Fems. Symp. Molecular Repertoire of Adenoviruses Iii = Curr Top Microbiol Molecular Repertoire of Adenoviruses Iii = Curr. Top. Microbiol. Molecular reproduction and development = Mol Reprod Dev Molecular Reproduction and Development=Mol Reprod Dev;; Molecular Reproduction and Development = Mol Reprod Dev Molecular Reproduction and Development = Mol. Reprod. Dev Molecular Reproduction and Development = Mol. Reprod. Dev. Molecular Screening News = Mol. Screen. News Molecular Self-assembly = Struct Bond Molecular Self-assembly = Struct. Bond. Molecular Sieves: From Basic Research to Industrial Applications, Pts A and B = Stud Surf Sci Catal Molecular Sieves: From Basic Research to Industrial Applications, Pts A and B = Stud. Surf. Sci. Catal. Molecular Sieves Science and Technology = Mol Sieves Sci Techn Molecular Sieves Science and Technology = Mol. Sieves Sci. Techn. Molecular Similarity Ii = Top Curr Chem Molecular Similarity Ii = Top. Curr. Chem. Molecular Similarity I = Top Curr Chem Molecular Similarity I = Top. Curr. Chem. Molecular Simulation Fracture Gel Theory = Adv Polym Sci Molecular Simulation Fracture Gel Theory = Adv. Polym. Sci. Molecular Simulation = Mol. Simul. Molecular Simulation = Mol Simulat Molecular Simulation = Mol. Simulat. Molecular Simulations and Biomembranes: From Biophysics to Function = Rsc Biomol Sci Molecular Simulations and Biomembranes: From Biophysics to Function = Rsc. Biomol. Sci. Molecular Staging of Cancer = Recent Res Cancer Molecular Staging of Cancer = Recent. Res. Cancer Molecular Staging of Cancer = Recent Results Canc Molecular Staging of Cancer = Recent. Results. Canc. Molecular Strategies in Biological Evolution = Ann Ny Acad Sci Molecular Strategies in Biological Evolution = Ann. Ny. Acad. Sci. Molecular Structure and Function of The Tight Junction: From Basic Mechanisms to Clinical Manifestations = Ann Ny Acad Sci Molecular Structure and Function of The Tight Junction: From Basic Mechanisms to Clinical Manifestations = Ann. Ny. Acad. Sci. Molecular Systematics and Plant Evolution = Syst Assoc Spec Vol Molecular Systematics and Plant Evolution = Syst. Assoc. Spec. Vol. Molecular Systematics of Bryophytes = Monog Syst Botan Molecular Systematics of Bryophytes = Monog. Syst. Botan. Molecular systems biology = Mol Syst Biol Molecular Systems Biology = Mol Syst Biol Molecular Systems Biology = Mol. Syst. Biol. Molecular Targets and Therapeutic Uses of Curcumin in Health and Disease = Adv Exp Med Biol Molecular Targets and Therapeutic Uses of Curcumin in Health and Disease = Adv. Exp. Med. Biol. Molecular Therapy = Mol Ther Molecular Therapy = Mol. Ther. Molecular Therapy of Breast Cancer: Classicism Meets Modernity = Cancer Etiol Diagn T Molecular Therapy of Breast Cancer: Classicism Meets Modernity = Cancer. Etiol. Diagn. T. Molecular therapy : the journal of the American Society of Gene Therapy = Mol Ther Molecular Therodynamics of Complex Systems = Struct Bond Molecular Therodynamics of Complex Systems = Struct. Bond. Molecular toxicology = Mol Toxicol Molecular Toxicology = Mol. Toxicol. Molecular Trafficking = Essays Biochem Molecular Trafficking = Essays. Biochem. Molecular urology = Mol Urol Molecular Urology = Mol Urol Molecular Urology = Mol. Urol. Molecular vision = Mol Vis Molecular Vision=Mol Vis;; Molecular Vision = Mol Vis Molecular Vision = Mol. Vis. Molecular Wires: From Design to Properties = Top Curr Chem Molecular Wires: From Design to Properties = Top. Curr. Chem. Molecule-based Magnetic Materials = Acs Sym Ser Molecule-based Magnetic Materials = Acs. Sym. Ser. Molecules and cells = Mol Cells Molecules and Cells=Mol Cells;; Molecules and Cells = Mol Cells Molecules and Cells = Mol. Cells Molecules and Grains in Space = Aip Conf Proc Molecules and Grains in Space = Aip. Conf. Proc. Molecules As Components of Electronic Devices = Acs Sym Ser Molecules As Components of Electronic Devices = Acs. Sym. Ser. Molecules (Basel, Switzerland) = Molecules Molecules in Astrophysics: Probes and Processes = Iau Symp Molecules in Astrophysics: Probes and Processes = Iau. Symp. Molecules = Molecules Molekuliarnaia biologiia = Mol Biol (Mosk) Molekuliarnaia Biologiia=Mol Biol (Mosk);; Molekuliarnaia Biologiia = Mol. Biol. (Mosk.) Molekuliarnaia Genetika, Mikrobiologia, I Virusologa=Mol Gen Mikrobiol Virusol;; Molekuliarnaia Genetika, Mikrobiologiia i Virusologia = Mol. Gen. Mikrobiol. Virusol. Molekuliarnaia genetika, mikrobiologiia i virusologiia = Mol Gen Mikrobiol Virusol Molekuliarna Meditsina=Mol Med (Sofia);; Molekuliarna Meditsina = Mol. Med. (Sofia) Molekulyarnaya Biologiya = Molek Biol Molekulyarnaya Biologiya = Molek. Biol. Molekulyarnaya Biologiya (Moscow) = Mol. Biol. (Moscow) Molekulyarnaya Genetika, Mikrobiologiya i Virusologiya = Mol. Genet., Mikrobiol. Virusol. Moleuclar Imaging: Methods and Protocols = Methods Mol Biol Moleuclar Imaging: Methods and Protocols = Methods Mol. Biol. Molgramostim Gm-csf : Possibilities and Perspectives = Roy Soc Med Int Cong Molgramostim Gm-csf : Possibilities and Perspectives = Roy. Soc. Med. Int. Cong. Molluscan Neurobiology = Knaw Verhan Molluscan Neurobiology = Knaw. Verhan. Molluscan Research = Molluscan Res Molluscan Research = Molluscan Res. Molotov: A Biography = Stud Russ E Eur Hist Molotov: A Biography = Stud. Russ. E. Eur. Hist. Molten Salt Chemistry and Technology = Mater Sci Forum Molten Salt Chemistry and Technology = Mater. Sci. Forum. Molten Salt Forum = Molt Salt Forum Molten Salt Forum = Molt. Salt Forum Molten Salts: From Fundamentals to Applications = Nato Sci Ser Ii-math Molten Salts: From Fundamentals to Applications = Nato. Sci. Ser. Ii-math. Molten Salts: From Fundamentals to Applications = Nato Sci Ser Ii Math Molten Salts: From Fundamentals to Applications = Nato. Sci. Ser. Ii. Math. Molten Salts Xiii = Elec Soc S Molten Salts Xiii = Elec. Soc. S. Molten Salts Xii, Proceedings = Elec Soc S Molten Salts Xii, Proceedings = Elec. Soc. S. Molybdenum and Tungsten: Their Roles in Biological Processes = Met Ions Biol Syst Molybdenum and Tungsten: Their Roles in Biological Processes = Met. Ions. Biol. Syst. Molybdenum Enzymes, Cofactors, and Model Systems = Acs Sym Ser Molybdenum Enzymes, Cofactors, and Model Systems = Acs. Sym. Ser. Momenti e Problemi della Storia del Pensiero = Momenti Probl. Storia Pensiero Moment (New York, N.Y.) = Moment Momento Económico=Momento Econ. Moment of Experienced Life On The Poetry of The German Democratic Republic = Gdr Mon Sp Moment of Experienced Life On The Poetry of The German Democratic Republic = Gdr. Mon. Sp. Momentum = Momentum Monaldi Archives for Chest Disease = Monaldi Arch. Chest Dis. Monaldi Archives For Chest Disease=Monaldi Arch Chest Dis;; Monash bioethics review = Monash Bioeth Rev Monash Engineering Education Series = Monas Engn Educ Ser Monash Engineering Education Series = Monas. Engn. Educ. Ser. Monash Studies in Global Movements = Monash Stud Glob Mov Monash Studies in Global Movements = Monash Stud. Glob. Mov. Monash University law review. Monash University. Faculty of Law = Monash Univ Law Rev Monastic Bodies: Discipline and Salvation in Shenoute of Atripe = Divin Reread Late An Monastic Bodies: Discipline and Salvation in Shenoute of Atripe = Divin. Reread. Late. An. Monastic studies = Monastic Stud Monatshefte fur Chemie = Monatsh. Chem. Monatshefte Fur Chemie = Monatsh Chem Monatshefte Fur Chemie = Monatsh. Chem. Monatshefte für Chemie = Monatsh. Chem. Monatshefte Fur Chemie Und Verwandte Teile Anderer Wissenschaften = Monatsh Chem Verw Tl Monatshefte Fur Chemie Und Verwandte Teile Anderer Wissenschaften = Monatsh. Chem. Verw. Tl. Monatshefte Fur Mathematik = Monatsh Math Monatshefte Fur Mathematik = Monatsh. Math. Monatshefte für Mathematik = Monatsh. Math. Monatshefte fur Tierheilkunde = Monatsh Tierheilkd Monatshefte fur Veterinarmedizin = Monatsh Veterinarmed Monatshefte fur Veterinarmedizin = Monatsh. Veterinarmed. Monatshefte Fur Veterinarmedizin = Monatsh Veterinarmed Monatshefte Fur Veterinarmedizin = Monatsh. Veterinarmed. Monatshefte Occasional Volumes = Monat Occ V Monatshefte Occasional Volumes = Monat. Occ. V. Monatskurse fur die arztliche Fortbildung. Bildbeilage; Farbige Medizin = Monatskurse Arztl Fortbild [Bildbeil] Monatsschrift deutscher Zahnarzte: der freie Zahnarzt = Monatsschr Dtsch Zahnarzte Freie Zahnarzt Monatsschrift Deutscher Zahnarzte; Der Freie Zahnarzt = Monatsschr. Dtsch. Zahnarzte Freie Zahnarzt Monatsschrift Fur Brauerei = Monat Brauerei Monatsschrift Fur Brauerei = Monat. Brauerei Monatsschrift fur Brauwissenschaft = Monatsschr. Brauwiss. Monatsschrift Fur Brauwissenschaft = Monatsschr Brauwiss Monatsschrift Fur Brauwissenschaft = Monatsschr. Brauwiss. Monatsschrift für das württembergische Forstwesen = Mon.schr. württ. Forstwes. Monatsschrift fur Kinderheilkunde = Monatsschr Kinderheilkd Monatsschrift fur Kinderheilkunde = Monatsschr. Kinderheilkd. Monatsschrift Fur Kriminologie Und Strafrechtsreform = Monats Kriminol Monatsschrift Fur Kriminologie Und Strafrechtsreform = Monats. Kriminol. Monatsschrift fur Ohrenheilkunde und Laryngo-Rhinologie = Monatsschr Ohrenheilkd Laryngorhinol Monatsschrift fur Ohrenheilkunde und Laryngo-Rhinologie = Monatsschr. Ohrenheilkd. Laryngorhinol. Monatsschrift fur Psychiatrie und Neurologie = Monatsschr Psychiatr Neurol Monatsschrift Fur Psychiatrie Und Neurologie = Mon Psychiatr Neurol Monatsschrift Fur Psychiatrie Und Neurologie = Mon. Psychiatr. Neurol. Monatsschrift fur Tuberkulosebekampfung = Monatsschr Tuberkulosebekampf Monatsschrift Fur Uknfallheilkunde Verischerungs-versorungs-und Verkehrsmedizin = Mon Unfall Verisch-v Monatsschrift Fur Uknfallheilkunde Verischerungs-versorungs-und Verkehrsmedizin = Mon. Unfall. Verisch-v. Monatsschrift Fur Unfallheilkunde = Monatsschr Unfall Monatsschrift Fur Unfallheilkunde = Monatsschr. Unfall. Monatsschrift fur Unfallheilkunde = Monatsschr Unfallheilkd Monatsschrift fur Unfallheilkunde = Monatsschr. Unfallheilkd. Monatsschrift fur Unfallheilkunde und Versicherungsmedizin = Monatsschr Unfallheilkd Versicherungsmed Monatsschrift fur Unfallheilkunde, Versicherungs-, Versorgungs- und Verkehrsmedizin = Monatsschr Unfallheilkd Versicher Versorg Verkehrsmed Monatsschrift fur Unfallheilkunde, Versicherungs-, Versorgungs- und Verkehrsmedizin = Monatsschr. Unfallheilkd. Versicher. Versorg. Verkehrsmed. Monatsschrift Kinderheilkunde = Monatsschr Kinderh Monatsschrift Kinderheilkunde = Monatsschr. Kinderh. Monatsschrift Kinderheilkunde = Monatsschr. Kinderheilkd. Monatsschrift Kinderheilkunde : Organ der Deutschen Gesellschaft fur Kinderheilkunde = Monatsschr Kinderheilkd Mondai to kenkyu : Chugoku jijo senmonshi = Mondai To Kenkyu Monday developments : a biweekly publication of InterAction = Monday Dev Monde Dentaire = Monde Dent. Monde medical = Monde Med Monden Institute of Management-japanese Management and International Studies = Monden Inst Manag-jp Monden Institute of Management-japanese Management and International Studies = Monden Inst. Manag-jp. Mondes En Developpement = Mondes Dev Mondes En Developpement = Mondes Dev. Mondes et cultures : comptes rendus trimestriels des seances de l'Academie des sciences d'outre-mer = Mondes Cult Mondo Aperto=Mondo Aperto Mondo cinese = Mondo Cin Mondo odontostomatologico = Mondo Odontostomatol Mondo Odontostomatologico = Mondo Odontostomatol. Mondo ortodontico = Mondo Ortod Mondo Ortodontico = Mondo Ortod. Moneda y Crédito=Moneda Crédito Moneta e Credito=Moneta Credito Monetary and Banking History: Essays in Honour of Forrest Capie = Routl Int Stud Money Monetary and Banking History: Essays in Honour of Forrest Capie = Routl. Int. Stud. Money. Monetary and Banking Reform in Post Communist Economies = Inst Ew Sec Monetary and Banking Reform in Post Communist Economies = Inst. Ew. Sec. Monetary and Economic Studies=Monet. Econ. Stud. Monetary Fiscal and Trade Policies = Monet Fisc Trade Pol Monetary Fiscal and Trade Policies = Monet. Fisc. Trade Pol. Monetary Growth Theory = Routl Int Stud Money Monetary Growth Theory = Routl. Int. Stud. Money. Monetary Policy and Central Banking in The Middle East and North Africa = Routl Polit Econ Mid Monetary Policy and Central Banking in The Middle East and North Africa = Routl. Polit. Econ. Mid. Monetary Policy and Central Banking in The Middle East and North Africa = Rout Polit Econ Mid Monetary Policy and Central Banking in The Middle East and North Africa = Rout. Polit. Econ. Mid. Monetary Policy and Taiwan's Economy = Acad Stud Asian Econ Monetary Policy and Taiwan's Economy = Acad. Stud. Asian. Econ. Monetary Policy and The German Unemployment Problem in Macroeconomic Models : Theory and Evidence = Kiel Stud Monetary Policy and The German Unemployment Problem in Macroeconomic Models : Theory and Evidence = Kiel. Stud. Monetary Policy for A Volatile Global Economy = Aei Studies Monetary Policy for A Volatile Global Economy = Aei. Studies. Monetary Policy in A Converging Europe = Finan Mon P Monetary Policy in A Converging Europe = Finan. Mon. P. Monetary Policy in An Integrated World Economy, Symposium 1995 = Inst Weltwirts Symp Monetary Policy in An Integrated World Economy, Symposium 1995 = Inst. Weltwirts. Symp. Monetary Policy in Central Europe = Routl Int Stud Money Monetary Policy in Central Europe = Routl. Int. Stud. Money. Monetary Policy Instruments for Developing Countries = World Bank Monetary Policy Instruments for Developing Countries = World. Bank. Monetary Policy in Transition: Inflation Nexus Money Supply in Postcommunist Russia = Stud Econ Transit Monetary Policy in Transition: Inflation Nexus Money Supply in Postcommunist Russia = Stud. Econ. Transit. Monetary Policy Over Fifty Years: Experiences and Lessons = Rout Int Stud Mon Monetary Policy Over Fifty Years: Experiences and Lessons = Rout. Int. Stud. Mon. Monetary Policy Over Fifty Years: Experiences and Lessons = Routl Int Stud Money Monetary Policy Over Fifty Years: Experiences and Lessons = Routl. Int. Stud. Money. Monetary Policy Rules = Nber Conf R Monetary Policy Rules = Nber. Conf. R. Monetary Policy = Stud Bus Cycles Monetary Policy = Stud. Bus. Cycles. Monetary Theory and Policy Experience = Int Econ Assoc Serie Monetary Theory and Policy Experience = Int. Econ. Assoc. Serie. Monetary Union in The Gulf: Prospects for A Single Currency in The Arabian Peninsula = Durh Mod Mid E Islam Monetary Union in The Gulf: Prospects for A Single Currency in The Arabian Peninsula = Durh. Mod. Mid. E. Islam. Money and Exchange: Folktales and Reality = Routl Stud Hist Econ Money and Exchange: Folktales and Reality = Routl. Stud. Hist. Econ. Money and Markets: A Doctrinal Approach = Routl Stud Hist Econ Money and Markets: A Doctrinal Approach = Routl. Stud. Hist. Econ. Money and Markets in The Americas: New Challenges for Hemispheric Integration = St Econ Fut W Hem Money and Markets in The Americas: New Challenges for Hemispheric Integration = St. Econ. Fut. W. Hem. Money and Modernity = Asao Monog Ser Money and Modernity = Asao. Monog. Ser. Money and Payments in Theory and Practice = Routl Int Stud Money Money and Payments in Theory and Practice = Routl. Int. Stud. Money Money and The Age of Shakespeare: Essays in New Economic Criticism = Early Mod Cult Stud Money and The Age of Shakespeare: Essays in New Economic Criticism = Early. Mod. Cult. Stud. Money, Banking and Financial Markets in Central and Eastern Europe: 20 Years of Transition = Palgr Mac Stud Bank Money, Banking and Financial Markets in Central and Eastern Europe: 20 Years of Transition = Palgr. Mac. Stud. Bank. Money, Enterprise and Income Distribution = Routl Front Polit Ec Money, Enterprise and Income Distribution = Routl. Front. Polit. Ec. Money of Pre-federal America = Coin Amer P Money of Pre-federal America = Coin. Amer. P. Money, Stock Prices and Central Banks: A Cointegrated Var Analysis = Contrib Econ Money, Stock Prices and Central Banks: A Cointegrated Var Analysis = Contrib. Econ. Money, Uncertainty and Time = Routl Int Stud Money Money, Uncertainty and Time = Routl. Int. Stud. Money. Mongolia: A Guide to Economic and Political Developments = Guide Econ Polit Dev Mongolia: A Guide to Economic and Political Developments = Guide Econ. Polit. Dev. Monist = Monist Monitore ostetrico-ginecologico di endocrinologia e del metabolismo = Monit Ostet Ginecol Endocrinol Metab Monitore ostetrico-ginecologico = Monit Ostet Ginecolog Monitore Zoologico Italiano-italian Journal of Zoology = Monit Zool Ital Monitore Zoologico Italiano-italian Journal of Zoology = Monit. Zool. Ital. Monitoring A Comprehensive Test Ban Treaty = Nato Adv Sci Inst Se Monitoring A Comprehensive Test Ban Treaty = Nato. Adv. Sci. Inst. Se. Monitoring and Diagnosis in Power Plants = Vdi Bericht Monitoring and Diagnosis in Power Plants = Vdi. Bericht. Monitoring and Indicators of Forest Biodiversity in Europe - From Ideas to Operationality = Eur Forest Inst Proc Monitoring and Indicators of Forest Biodiversity in Europe - From Ideas to Operationality = Eur. Forest Inst. Proc. Monitoring and Verification of Bioremediation = Bioremed Ser Monitoring and Verification of Bioremediation = Bioremed. Ser. Monitoring Food Safety, Agriculture, and Plant Health = Proc Spie Monitoring Food Safety, Agriculture, and Plant Health = Proc. Spie. Monitoring Food Safety, Agriculture, and Plant Health = P Soc Photo-opt Ins Monitoring Food Safety, Agriculture, and Plant Health = P. Soc. Photo-opt. Ins. Monitoring Induced Seismicity = Pageoph Top Vol Monitoring Induced Seismicity = Pageoph. Top. Vol. Monitoring of Changes Related to Natural and Manmade Hazards Using Space Technology = Adv Space Res Monitoring of Changes Related to Natural and Manmade Hazards Using Space Technology = Adv. Space Res. Monitoring of Gaseous Pollutants By Tunable Diode Lasers / = Air Poll R Monitoring of Gaseous Pollutants By Tunable Diode Lasers / = Air. Poll. R. Monitoring, Security, and Rescue Techniques in Multiagent Systems = Adv Soft Comp Monitoring, Security, and Rescue Techniques in Multiagent Systems = Adv. Soft. Comp. Monitoring, Simulation, Prevention and Remediation of Dense and Debris Flows = Wit Trans Ecol Envir Monitoring, Simulation, Prevention and Remediation of Dense and Debris Flows = Wit. Trans. Ecol. Envir. Monitoring, Simulation, Prevention and Remediation of Dense Debris Flows Ii = Wit Trans Eng Sci Monitoring, Simulation, Prevention and Remediation of Dense Debris Flows Ii = Wit. Trans. Eng. Sci. Monitoring Water in The 1990s : Meeting New Challenges = Am Soc Test Mater Monitoring Water in The 1990s : Meeting New Challenges = Am. Soc. Test. Mater. Monitoring With Lichens - Monitoring Lichens = Nato Sci S Ss Iv Ear Monitoring With Lichens - Monitoring Lichens = Nato. Sci. S. Ss. Iv. Ear. Mono- and Multivariable Control and Estimation: Linear, Quadratic and Lmi Methods = Math Eng Mono- and Multivariable Control and Estimation: Linear, Quadratic and Lmi Methods = Math. Eng. Monoclonal Gammapathies Iii : Clinical Significance and Basic Mechanisms = T Aging Res Monoclonal Gammapathies Iii : Clinical Significance and Basic Mechanisms = T. Aging. Res. Monografías Ciencia y Tecnología = Monogr. Cienc. Tecnol. Monografías de la Academia de Ciencias Exactas, Físicas, Químicas y Naturales de Zaragoza = Monogr. Acad. Ci. Exact. Fís.-Quím. Nat. Zaragoza Monografias de la Corporacion Centro Regional de la Poblacion = Monogr Corp Cent Reg Poblac Monografias Inia (instituto Nacional De Investigacion Y Tecnologia Agraria Y Alimentaria) = Mg Inia Monografias Inia (instituto Nacional De Investigacion Y Tecnologia Agraria Y Alimentaria) = Mg. Inia Monografias Tercer Milenio = Mongr Terc Milenio Monografias Tercer Milenio = Mongr. Terc. Milenio Monografie della Scuola archeologica di Atene e delle missioni italiane in Oriente = MSAtene Monografie di quaderni internazionali di storia della medicina e della sanita = Monogr Quad Int Stor Med Sanita Monografie Matematyczne = Monogr Mat Monografie Matematyczne = Monogr. Mat. Monografie = Monografie Monografii Matematice = Monogr. Mat. Monographiae Biologicae = Monog Biol Monographiae Biologicae = Monog. Biol. Monographiae Biologicae = Monogr Biol Monographiae Biologicae = Monogr. Biol. Monographien aus dem Gesamtgebiete der Neurologie und Psychiatrie = Monogr Gesamtgeb Neurol Psychiatr Monographien aus dem Gesamtgebiete der Neurologie und Psychiatrie = Monogr. Gesamtgeb. Neurol. Psychiatr. (Berlin) Monographien aus dem Gesamtgebiete der Psychiatrie = Monogr Gesamtgeb Psychiatr Psychiatry Ser Monographien aus dem Gesamtgebiete der Psychiatrie. Psychiatry Series = Monogr. Gesamtgeb. Psychiatr. Psychiatry Ser. Monographien Und Texte Zur Nietzsche-forschung = Monogr Texte Nietzsc Monographien Und Texte Zur Nietzsche-forschung = Monogr. Texte Nietzsc. Monograph in Behavioral Disorders = Mg Beh Dis Monograph in Behavioral Disorders = Mg. Beh. Dis. Monograph in Behavioral Disorders, Vol 11 = Mg Beh Dis Monograph in Behavioral Disorders, Vol 11 = Mg. Beh. Dis. Monograph in Behavioral Disorders, Vol 12 = Mg Beh Dis Monograph in Behavioral Disorders, Vol 12 = Mg. Beh. Dis. Monograph = Monogr. Monograph of the American Association of Mental Deficiency = Monogr Am Assoc Ment Defic Monograph of the American Association of Mental Deficiency = Monogr. Am. Assoc. Ment. Defic. Monograph of The Cotsen Institute of Archaelogy, Ucla = Monogr Cotsen Inst A Monograph of The Cotsen Institute of Archaelogy, Ucla = Monogr. Cotsen Inst. A. Monograph of The Gonostomatidae and Kahliellidae (ciliophora, Hypotricha) = Monogr Biol Monograph of The Gonostomatidae and Kahliellidae (ciliophora, Hypotricha) = Monogr. Biol. Monographs and Textbooks in Pure and Applied Mathematics = Mg Txb Pur Appl Math Monographs and Textbooks in Pure and Applied Mathematics = Mg. Txb. Pur. Appl. Math. Monographs and Textbooks in Pure and Applied Mathematics = Monogr. Textbooks Pure Appl. Math. Monographs and Textbooks in Pure and Applied Mathematics = Monogr Textb Pure Ap Monographs and Textbooks in Pure and Applied Mathematics = Monogr. Textb. Pure Ap. Monographs and Textbooks in Pure and Applied Mathematics = Monogr Txb Pure Appl Monographs and Textbooks in Pure and Applied Mathematics = Monogr. Txb. Pure Appl. Monograph Series in World Affairs University of Denver = Monogr S World Aff Monograph Series in World Affairs University of Denver = Monogr. S. World Aff. Monograph Series of The Psychoanalysis Unit of University College London and The Anna Freud Centre = Mg S Psychanal Unit Monograph Series of The Psychoanalysis Unit of University College London and The Anna Freud Centre = Mg. S. Psychanal. Unit Monograph Series of The Ralph R Greenson Memorial Library of The San Diego Psychoanalytic Society and Institute = Mg S Ralph Monograph Series of The Ralph R Greenson Memorial Library of The San Diego Psychoanalytic Society and Institute = Mg. S. Ralph Monograph series. World Health Organization = Monogr Ser World Health Organ Monographs in allergy = Monogr Allergy Monographs in Allergy = Monogr Allergy Monographs in Allergy = Monogr. Allergy Monographs In Allergy=Monogr Allergy;; Monographs in Anthropology = Monogr Anthropol Monographs in Anthropology = Monogr. Anthropol. Monographs in Balkan Studies = Mg Balkan Stud Monographs in Balkan Studies = Mg. Balkan Stud. Monographs in Behavior and Ecology = Mg Beh Ecol Monographs in Behavior and Ecology = Mg. Beh. Ecol. Monographs in Clinical Cytology = Mg Clin Cyt Monographs in Clinical Cytology = Mg. Clin. Cyt. Monographs in clinical cytology = Monogr Clin Cytol Monographs in Clinical Cytology = Monogr Clin Cytol Monographs in Clinical Cytology = Monogr. Clin. Cytol. Monographs In Clinical Cytology=Monogr Clin Cytol;; Monographs in Computer Science = Mg Comp Sci Monographs in Computer Science = Mg. Comp. Sci. Monographs in Computer Science = Monogr. Comput. Sci. Monographs in Computer Science = Monogr Comput Sci Monographs in Computer Science = Monogr. Comput. Sci. Monographs in Contemporary Mathematics = Monogr. Contemp. Math. Monographs in Developmental Biology = Mg Devel B Monographs in Developmental Biology = Mg. Devel. B. Monographs in developmental biology = Monogr Dev Biol Monographs in Developmental Biology = Monogr. Dev. Biol. Monographs in Economic Anthropology = Mg Econ Ant Monographs in Economic Anthropology = Mg. Econ. Ant. Monographs in Electrochemistry = Monogr Electrochem Monographs in Electrochemistry = Monogr. Electrochem. Monographs in human genetics = Monogr Hum Genet Monographs in Human Genetics = Monogr Hum Genet Monographs in Human Genetics = Monogr. Hum. Genet. Monographs in Leadership and Management = Monogr Lead Manage Monographs in Leadership and Management = Monogr. Lead. Manage. Monographs in Mathematics = Mg Math Monographs in Mathematics = Mg. Math. Monographs in Mathematics = Monogr. Math. Monographs in Neural Sciences = Mg Neur Sci Monographs in Neural Sciences = Mg. Neur. Sci. Monographs in neural sciences = Monogr Neural Sci Monographs in Neural Sciences = Monogr. Neural Sci. Monographs in oral science = Monogr Oral Sci Monographs in Oral Science = Monogr Oral Sci Monographs in Oral Science = Monogr. Oral Sci. Monographs In Oral Science=Monogr Oral Sci;; Monographs in Paediatrica = Monogr Paediatrica Monographs in Paediatrica = Monogr. Paediatrica Monographs in paediatrics = Monogr Paediatr Monographs in Paediatrics = Monogr Paediatr Monographs in Paediatrics = Monogr. Paediatr. Monographs in Parenting Series = Mon Parent Monographs in Parenting Series = Mon. Parent. Monographs in pathology = Monogr Pathol Monographs in Pathology = Monogr. Pathol. Monographs In Pathology=Monogr Pathol;; Monographs in population biology = Monogr Popul Biol Monographs in Population Biology = Monogr Popul Biol Monographs in Population Biology = Monogr. Popul. Biol. Monographs in Primatology = Mg Primatol Monographs in Primatology = Mg. Primatol. Monographs in Soviet medical sciences = Monogr Sov Med Sci Monographs in Supramolecular Chemistry = Monogr Supramol Chem Monographs in Supramolecular Chemistry = Monogr. Supramol. Chem. Monographs in Systematic Botany From The Missouri Botanical Garden = Monog Syst Botan Monographs in Systematic Botany From The Missouri Botanical Garden = Monog. Syst. Botan. Monographs in Theoretical Computer Science An Eatcs Series = Monogr Theor Comput Monographs in Theoretical Computer Science An Eatcs Series = Monogr. Theor. Comput. Monographs in Theoretical Computer Science = Monogr. Theoret. Comput. Sci. EATCS Ser. Monographs in the surgical sciences = Monogr Surg Sci Monographs in the Surgical Sciences = Monogr. Surg. Sci. Monographs in Virology = Mg Virology Monographs in Virology = Mg. Virology Monographs in virology = Monogr Virol Monographs in Virology = Monogr Virol Monographs in Virology = Monogr. Virol. Monographs of Polish Journal of Environmental Studies = Mg Pol J Envir Stud Monographs of Polish Journal of Environmental Studies = Mg. Pol. J. Envir. Stud. Monographs of the American Association on Mental Deficiency (1982) = Monogr Am Assoc Ment Defic Monographs of the American Association on Mental Deficiency = Monogr Am Assoc Ment Defic Monographs of the American Association on Mental Deficiency = Monogr. Am. Assoc. Ment. Defic. Monographs of the American Association on Mental Retardation = Monogr Am Assoc Ment Retard Monographs of the American Association on Mental Retardation = Monogr. Am. Assoc. Ment. Retard. Monographs of The Astronomical Society of The Pacific = Monogr Astron Soc Pa Monographs of The Astronomical Society of The Pacific = Monogr. Astron. Soc. Pa. Monographs of The Carolina Population Center = Monogr Carolina Pop Monographs of The Carolina Population Center = Monogr. Carolina Pop. Monographs of The Danish Institute At Athens = Mg Danish Inst Athen Monographs of The Danish Institute At Athens = Mg. Danish Inst. Athen. Monographs of The Peshitta Institute Leiden = Mg Pesh Inst Leiden Monographs of The Peshitta Institute Leiden = Mg. Pesh. Inst. Leiden Monographs of the Physiological Society = Monogr Physiol Soc Monographs of the Physiological Society = Monogr. Physiol. Soc. Monographs of The Society for Research in Child Development = Monogr Soc Res Child Monographs of The Society for Research in Child Development = Monogr. Soc. Res. Child Monographs of the Society for Research in Child Development = Monogr Soc Res Child Dev Monographs of the Society for Research in Child Development = Monogr. Soc. Res. Child Dev. Monographs of The Society For Research In Child Development=Monogr Soc Res Child Dev;; Monographs On Atherosclerosis = Mg Atherosc Monographs On Atherosclerosis = Mg. Atherosc. Monographs on atherosclerosis = Monogr Atheroscler Monographs on Atherosclerosis = Monogr. Atheroscler. Monographs On Australian Lepidoptera = Monogr Aust Lepidopt Monographs On Australian Lepidoptera = Monogr. Aust. Lepidopt. Monographs on endocrinology = Monogr Endocrinol Monographs on Endocrinology=Monogr Endocrinol;; Monographs on Endocrinology = Monogr. Endocrinol. Monographs on Numerical Analysis = Monogr. Numer. Anal. Monographs On Social Anthropology = Monogr Soc Anthropol Monographs On Social Anthropology = Monogr. Soc. Anthropol. Monographs On Statistics and Applied Probability = Mg Stat Pro Monographs On Statistics and Applied Probability = Mg. Stat. Pro. Monographs On Statistics and Applied Probability = Monogr Stat Appl Pro Monographs On Statistics and Applied Probability = Monogr. Stat. Appl. Pro. Monographs on Statistics and Applied Probability = Monogr. Statist. Appl. Probab. Monolithic Microwave Integrated Circuits for Sensors, Radar, and Communications Systems = P Soc Photo-opt Ins Monolithic Microwave Integrated Circuits for Sensors, Radar, and Communications Systems = P. Soc. Photo-opt. Ins. Monomers, Oligomers, Polymers, Composites and Nanocomposites Research: Synthesis, Properties and Applications = Polym Yearb Monomers, Oligomers, Polymers, Composites and Nanocomposites Research: Synthesis, Properties and Applications = Polym. Yearb. Monomial Ideals = Grad Texts Math Monomial Ideals = Grad. Texts. Math. Monomialization of Morphisms From 3-folds to Surfaces = Lect Notes Math Monomialization of Morphisms From 3-folds to Surfaces = Lect. Notes. Math. Monotone Random Systems - Theory and Applications = Lect Notes Math Monotone Random Systems - Theory and Applications = Lect. Notes. Math. Monsoon Evolution and Tectonics - Climate Linkage in Asia = Geol Soc Spec Publ Monsoon Evolution and Tectonics - Climate Linkage in Asia = Geol. Soc. Spec. Publ. Monspeliensis Hippocrates = Monspel Hippocrates Monster and Lie Algebras = Ohio St U M Monster and Lie Algebras = Ohio. St. U. M. Monster's Fiery Breath: Feedback in Galaxies, Groups, and Clusters = Aip Conf Proc Monster's Fiery Breath: Feedback in Galaxies, Groups, and Clusters = Aip. Conf. Proc. Monstrosity of Christ: Paradox Or Dialectic = Short Circuits Monstrosity of Christ: Paradox Or Dialectic = Short. Circuits. Montana Agricultural Experiment Station Bulletin = Mont Aes Bull Montana Agricultural Experiment Station Bulletin = Mont. Aes. Bull. Montana code annotated. Montana = Mont Code Annot Mont Montana law review = Mont Law Rev Montana Law Review = Mont Law Rev Montana Law Review = Mont. Law Rev. Montana Mathematics Enthusiast-monograph Series in Mathematics Education = Montana Math Enthus Montana Mathematics Enthusiast-monograph Series in Mathematics Education = Montana Math. Enthus. Montana Mathematics Enthusiast Monograph Series in Mathematics Education = Montana Math Enthus Montana Mathematics Enthusiast Monograph Series in Mathematics Education = Montana Math. Enthus. Montana Mathematics Enthusiast Monograph Series in Mathematics Education = Mont Math Enthus Mon Montana Mathematics Enthusiast Monograph Series in Mathematics Education = Mont. Math. Enthus. Mon. Montana : the magazine of western history = Montana Montana-the Magazine of Western History = Montana Montana-the Magazine of Western History = Montana. Montana wildlife (Bozeman, Mont.) = Mont Wildl Monte Carlo and Molecular Dynamics of Condensed Matter Systems = Ital Phy So Monte Carlo and Molecular Dynamics of Condensed Matter Systems = Ital. Phy. So. Monte Carlo and Quasi-monte Carlo Sampling = Springer Ser Stat Monte Carlo and Quasi-monte Carlo Sampling = Springer. Ser. Stat. Monte Carlo Method in Condensed Matter Physics, Second, Corrected and Updated Edition = Top Appl Phys Monte Carlo Method in Condensed Matter Physics, Second, Corrected and Updated Edition = Top. Appl. Phys. Monte Carlo Method in The Physical Sciences = Aip Conf Proc Monte Carlo Method in The Physical Sciences = Aip. Conf. Proc. Monte Carlo Methods and Applications = Monte Carlo Methods Appl. Monte Carlo Methods in Chemical Physics = Adv Chem Phys Monte Carlo Methods in Chemical Physics = Adv. Chem. Phys. Monte Carlo Methods in Fuzzy Optimization = Stud Fuzz Soft Comp Monte Carlo Methods in Fuzzy Optimization = Stud. Fuzz. Soft. Comp. Monte Carlo Simulation in Statistical Physics: An Introduction, Fifth Edition = Grad Texts Phys Monte Carlo Simulation in Statistical Physics: An Introduction, Fifth Edition = Grad. Texts. Phys. Monte Verità = Monte Verità Monte Verita : Proceedings of The Centro Stefano Franscini Ascona = Monte Verit Monte Verita : Proceedings of The Centro Stefano Franscini Ascona = Monte Verit. Montfort : Vierteljahresschrift fur Geschichte und Gegenwartskunde Vorarlbergs = Montfort Monthly bulletin of statistics (United Nations. Statistical Office) = Mon Bull Stat U N Stat Off Monthly bulletin of the Ministry of Health and the Public Health Laboratory Service = Mon Bull Minist Health Public Health Lab Serv Monthly Bulletin of the Ministry of Health and the Public Health Laboratory Service = Mon. Bull. Minist. Health Public Health Lab. Serv. Monthly Labor Review = Mon Labor Rev Monthly Labor Review = Mon. Labor Rev. Monthly Labor Review=Mon. Lab. Rev. Monthly labor review / U.S. Department of Labor, Bureau of Labor Statistics = Mon Labor Rev Monthly Notices of the Royal Astronomical Society = MNRAS Monthly notices of the Royal Astronomical Society = Mon Not R Astron Soc Monthly Notices of the Royal Astronomical Society = Mon. Not. R. Astron. Soc. Monthly Notices of The Royal Astronomical Society = Mon Not R Astron Soc Monthly Notices of The Royal Astronomical Society = Mon. Not. R. Astron. Soc. Monthly Review-an Independent Socialist Magazine = Mon Rev Monthly Review-an Independent Socialist Magazine = Mon. Rev. Monthly review (New York, N.Y. : 1949) = Mon Rev Monthly Review of The Us Bureau of Labor Statistics = Mon Rev Us Bur Labor Monthly Review of The Us Bureau of Labor Statistics = Mon. Rev. Us Bur. Labor Monthly vital statistics report = Mon Vital Stat Rep Monthly Vital Statistics Report=Mon Vital Stat Rep;; Monthly Vital Statistics Report = Mon. Vital Stat. Rep. Monthly Weather Review = Mon. Wea. Rev. Monthly Weather Review = Mon Weather Rev Monthly Weather Review = Mon. Weather Rev. Monthy Notices of the Royal Astronomical Society Letters = Mon. Not. R. Astron. Soc. Lett. Monthy Notices of the Royal Astronomical Society = Mon. Not. R. Astron. Soc. Monti e boschi = Monti boschi Montierte Texte-hybride Helden: Zur Poetik Der Wolfdietrich-dichtungen = Quell Forsch Lit Kul Montierte Texte-hybride Helden: Zur Poetik Der Wolfdietrich-dichtungen = Quell. Forsch. Lit. Kul. Montpellier medical = Montp Med Montpellier Medical = Montp. Med. Montreal medical = Montreal Med Montroll Memorial Lecture Series in Mathematical Physics = Montroll Memorial Lecture Ser. Math. Phys. Monumenta artis Romanae = MARo Monumenta Asiae Minoris antiqua. Publications of the American Society for Archaeological Research in Asia Minor = MAMA Monumenta Nipponica = Monum Nippon Monumenta Nipponica = Monum. Nippon. Monumenti antichi = MonAnt Monumenti antichi, pubblicati dall'Accademia dei Lincei = MonAL Monumenti della pittura antica scoperti in Italia = MonPitt Monumenti inediti pubblicati dall'Istituto Archeologico = MonInst Monuments et mémoires. Fondation E. Piot = MonPiot Monuments et mémoires publiés par l'Académie des Inscriptions et Belles-Lettres (Fondation Piot) = MMAI Monuments historiques : Mh = Monum Hist Monuments Historiques = Monument Hist Monuments Historiques = Monument. Hist. Mood and Anxiety Related Phenotypes in Mice: Characterization Using Behavioral Tests = Neuromethods Mood and Anxiety Related Phenotypes in Mice: Characterization Using Behavioral Tests = Neuromethods. Mood Disorders = Mod Probl Pharm Mood Disorders = Mod. Probl. Pharm. Moon and Mars = Adv Space Res Moon and Mars = Adv. Space. Res. Moon and Mars = Adv Space Res-series Moon and Mars = Adv. Space. Res-series. Moon and Near-earth Objects = Adv Space Res Moon and Near-earth Objects = Adv. Space. Res. Moon and Near-earth Objects = Adv Space Res-series Moon and Near-earth Objects = Adv. Space. Res-series. Moon and The Planets = Moon Planets Moon = Moon Planets Moon = Moon Planets. Moon: Science, Exploration and Utilisation = Adv Space Res Moon: Science, Exploration and Utilisation = Adv. Space. Res. Moonshine of Finite Groups = Ems Ser Lect Math Moonshine of Finite Groups = Ems. Ser. Lect. Math. Moon That Wasn't: The Saga of Venus' Spurious Satellite = Sci Netw Hist Stud Moon That Wasn't: The Saga of Venus' Spurious Satellite = Sci. Netw. Hist. Stud. Moorgate and Wall Street = Moorgate Wall Street Moral Acquaintances and Moral Decisions = Philos Med Moral Acquaintances and Moral Decisions = Philos. Med. Moral Dilemmas in Real Life: Current Issues in Applied Ethics = Law Philos Libr Moral Dilemmas in Real Life: Current Issues in Applied Ethics = Law. Philos. Libr. Moral Education: Beyond The Teaching of Right and Wrong = Philos Educ-neth Moral Education: Beyond The Teaching of Right and Wrong = Philos. Educ-neth. Moral Fabric in Contemporary Societies = Ann Int Inst Sociol Moral Fabric in Contemporary Societies = Ann. Int. Inst. Sociol. Moral Imperative = Wid Diss Resis Third Moral Imperative = Wid. Diss. Resis. Third. Moralische Selbstachtung: Zur Grundfigur Einer Sozialliberalen Gerechtigkeitstheorie = Ideen Argumente Moralische Selbstachtung: Zur Grundfigur Einer Sozialliberalen Gerechtigkeitstheorie = Ideen. Argumente. Morality and Foreign Policy = Dialog Publ Morality and Foreign Policy = Dialog. Publ. Morality and Nationalism = Routl Innov Polit Th Morality and Nationalism = Routl. Innov. Polit. Th. Moralizing International Relations: Called to Account = Ceri Ser Int Relat P Moralizing International Relations: Called to Account = Ceri. Ser. Int. Relat. P. Moral Judgment and Decision Making = Psychol Learn Motiv Moral Judgment and Decision Making = Psychol. Learn. Motiv. Moral Media: How Journalists Reason About Ethics = Lea Commun Ser Moral Media: How Journalists Reason About Ethics = Lea. Commun. Ser. Moral Motivation Through The Life Span = Nebr Sym Motiv Moral Motivation Through The Life Span = Nebr. Sym. Motiv. Moral Philosophy On The Threshold of Modernity = New Syn Hist L Moral Philosophy On The Threshold of Modernity = New. Syn. Hist. L. Moral Responsibility, Authenticity, and Education = Rout Int Stud Philos Moral Responsibility, Authenticity, and Education = Rout. Int. Stud. Philos. Moral Responsibility: The Ways of Scepticism = Routl Stud Eth Moral Moral Responsibility: The Ways of Scepticism = Routl. Stud. Eth. Moral Moral Und Motivation Im Werk Heinrich Von Kleists = Stud Deut Lit Moral Und Motivation Im Werk Heinrich Von Kleists = Stud. Deut. Lit. Moral Values in Liberalism and Conservatism = A R Cecil L Moral Values in Liberalism and Conservatism = A. R. Cecil. L. Moral Wager: Evolution and Contract = Philos Stud Ser Moral Wager: Evolution and Contract = Philos. Stud. Ser. Moravian Music Foundation Bulletin = Moravian Music Found Moravian Music Foundation Bulletin = Moravian Music Found. Morbidity and mortality = Morb Mortal Morbidity and mortality weekly report. Surveillance summaries : MMWR / Centers for Disease Control = Morb Mortal Wkly Rep Surveill Summ Moreana = Moreana More Baking Problems Solved = Woodhead Food Ser More Baking Problems Solved = Woodhead. Food. Ser. More Economic Approach to European Competition Law = Conf Ne Po Ec More Economic Approach to European Competition Law = Conf. Ne. Po. Ec. More Efficient Utilization of Fish and Fisheries Products = Dev Food Sci More Efficient Utilization of Fish and Fisheries Products = Dev. Food. Sci. More Equal Than Others: America From Nixon to The New Century = Polit Soc Twentieth More Equal Than Others: America From Nixon to The New Century = Polit. Soc. Twentieth. Morfologia Normal Y Patologica Seccion A-histologia = Morfol Norm Patol A Morfologia Normal Y Patologica Seccion A-histologia = Morfol. Norm. Patol. A. Morfologia Normal Y Patologica Seccion B-anatomia Patologica = Morfol Norm Patol B Morfologia Normal Y Patologica Seccion B-anatomia Patologica = Morfol. Norm. Patol. B. Morfologiia = Morfologiia Morfologiia (Saint Petersburg, Russia) = Morfologiia Morfologiia (Sankt-Peterburg=Morfologiia;; Morgan Kaufmann Series in Machine Learning = Mor Kauf M Morgan Kaufmann Series in Machine Learning = Mor. Kauf. M. Morgan Kaufmann Series in Representation and Reasoning = Mor Kauf R Morgan Kaufmann Series in Representation and Reasoning = Mor. Kauf. R. Moriond Astrophysics Meetings = Moriond Ast Moriond Astrophysics Meetings = Moriond Ast. Moriond Condensed Matter Physics = Moriond Cond Matt P Moriond Condensed Matter Physics = Moriond Cond. Matt. P. Moriond Particle Physics Meetings = Moriond Par Moriond Particle Physics Meetings = Moriond Par. Moriond Workshops = Moriond Wor Moriond Workshops = Moriond Wor. Moro Conflict: Landlessness and Misdirected State Policies = Pol Stud Moro Conflict: Landlessness and Misdirected State Policies = Pol. Stud. Morphogenesis and Maturation of Retroviruses = Curr Top Microbiol Morphogenesis and Maturation of Retroviruses = Curr. Top. Microbiol. Morphogenesis: Cellular Interactions = Ann Ny Acad Sci Morphogenesis: Cellular Interactions = Ann. Ny. Acad. Sci. Morphogenesis in Plants = Nato Adv Sci Inst Se Morphogenesis in Plants = Nato. Adv. Sci. Inst. Se. Morphogenesis of Down Syndrome = Prog Clin Biol Res Morphogenesis of Down Syndrome = Prog. Clin. Biol. Res. Morphologiai es igazsagugyi orvosi szemle = Morphol Igazsagugyi Orv Sz Morphologiai es Igazsagugyi Orvosi Szemle = Morphol. Igazsagugyi Orv. Sz. Morphologia medica = Morphol Med Morphologia Medica = Morphol. Med. Morphological Analysis in Comparison = Amst Stud Theory His Morphological Analysis in Comparison = Amst. Stud. Theory. His. Morphological and Cellular Aspects of Tail and Limb Regeneration in Lizards = Adv Anat Embryol Cel Morphological and Cellular Aspects of Tail and Limb Regeneration in Lizards = Adv. Anat. Embryol. Cel. Morphological and Compositional Evolution of Heteroepitaxial Semiconductor Thin Films = Mater Res Soc Symp P Morphological and Compositional Evolution of Heteroepitaxial Semiconductor Thin Films = Mater. Res. Soc. Symp. P. Morphological and Compositional Evolution of Thin Films = Mater Res Soc Symp P Morphological and Compositional Evolution of Thin Films = Mater. Res. Soc. Symp. P. Morphological and Physical Classification of Galaxies = Astrophys Space Sc L Morphological and Physical Classification of Galaxies = Astrophys. Space. Sc. L. Morphological Control in Multiphase Polymer Mixtures = Mat Res S C Morphological Control in Multiphase Polymer Mixtures = Mat. Res. S. C. Morphologie : bulletin de l'Association des anatomistes = Morphologie Morphologie et embryologie = Morphol Embryol (Bucur) Morphologie et Embryologie = Morphol. Embryol. (Bucur.) Morphologie = Morphologie Morphology and Evolution = Senckenberg Buch Morphology and Evolution = Senckenberg. Buch. Morphology and Its Demacations = Amst Stud Theory His Morphology and Its Demacations = Amst. Stud. Theory. His. Morphology and The Web of Grammar = Stanf Stud Morphol L Morphology and The Web of Grammar = Stanf. Stud. Morphol. L. Morphology of Condensed Matter: Physics and Geometry of Spatially Complex Systems = Lect Notes Phys Morphology of Condensed Matter: Physics and Geometry of Spatially Complex Systems = Lect. Notes. Phys. Morphology, Phonology, and Aphasia = Spr S Neur Morphology, Phonology, and Aphasia = Spr. S. Neur. Morphosyntactic Persistence in Spoken English = Trends Linguist-stud Morphosyntactic Persistence in Spoken English = Trends. Linguist-stud. Morphotropic Phase Boundary Perovskites, High Strain Piezoelectrics, and Dielectric Ceramics = Ceram Trans Morphotropic Phase Boundary Perovskites, High Strain Piezoelectrics, and Dielectric Ceramics = Ceram. Trans. Morrey and Campanato Meet Besov, Lizorkin and Triebel = Lect Notes Math Morrey and Campanato Meet Besov, Lizorkin and Triebel = Lect. Notes. Math. Morse Theoretic Methods in Nonlinear Analysis and in Symplectic Topology = Nato Sci Ser Ii Math Morse Theoretic Methods in Nonlinear Analysis and in Symplectic Topology = Nato. Sci. Ser. Ii. Math. Mosaic-a Journal for The Interdisciplinary Study of Literature = Mosaic Mosaic-a Journal for The Interdisciplinary Study of Literature = Mosaic. Moscow Mathematical Journal = Mosc Math J Moscow Mathematical Journal = Mosc. Math. J. Moscow Physical Society = J. Moscow Phys. Soc. Moscow University Chemistry Bulletin = Moscow Univ. Chem. Bull. Moscow University Computational Mathematics and Cybernetics = Moscow Univ. Comput. Math. Cybernet. Moscow University Geology Bulletin = Moscow Univ. Geol. Bull. Moscow University Mathematics Bulletin = Moscow Univ. Math. Bull. Moscow University Mechanics Bulletin = Moscow Univ. Mech. Bull. Moscow University Physics Bulletin = Moscow Univ. Phys. Bull. Moscow University Physics Bulletin = Mosc Univ Phys Bull+ Moscow University Physics Bulletin = Mosc. Univ. Phys. Bull+.+ Moscow University Physics Bulletin = Mosc U Phys B+ Moscow University Physics Bulletin = Mosc. U. Phys. B+.+ Moskovskiy Universitet = Trudy Sem. Petrovsk. Mosquito news = Mosq News Mosquito News = Mosq News Mosquito News = Mosq. News Mossbauer Spectroscopy in Materials Science 2008 = Aip Conf Proc Mossbauer Spectroscopy in Materials Science 2008 = Aip. Conf. Proc. Mossbauer Spectroscopy in Materials Science - 2010 = Aip Conf Proc Mossbauer Spectroscopy in Materials Science - 2010 = Aip. Conf. Proc. Mossbauer Spectroscopy in Materials Science = Nato Asi 3 High Tech Mossbauer Spectroscopy in Materials Science = Nato. Asi. 3. High. Tech. Mos-siam Series On Optimization = Mos-siam Ser Optim Mos-siam Series On Optimization = Mos-siam Ser. Optim. Mostly Finite Geometries = Lect Notes Pure Appl Mostly Finite Geometries = Lect. Notes. Pure. Appl. Mother In/and French Literature = Fr Lit Ser Mother In/and French Literature = Fr. Lit. Ser. Mother Jones = Mother Jones Mothers and children = Mothers Child Motion in Games, First International Workshop, Mig 2008 = Lect Notes Comput Sc Motion in Games, First International Workshop, Mig 2008 = Lect. Notes. Comput. Sc. Motion in Games = Lect Notes Comput Sc Motion in Games = Lect. Notes. Comput. Sc. Motion in Games, Proceedings = Lect Notes Comput Sc Motion in Games, Proceedings = Lect. Notes. Comput. Sc. Motion Planning in Medicine: Optimization and Simulation Algorithms for Image-guided Procedures = Springer Trac Adv Ro Motion Planning in Medicine: Optimization and Simulation Algorithms for Image-guided Procedures = Springer. Trac. Adv. Ro. Motions in The Solar Atmosphere = Astrophys Space Sc L Motions in The Solar Atmosphere = Astrophys. Space. Sc. L. Motivated Social Perception: Ontario Symposium, Vol 9 = Ont Symp P Motivated Social Perception: Ontario Symposium, Vol 9 = Ont. Symp. P. Motivational Aspects of Prejudice and Racism = Nebr Sym Motiv Motivational Aspects of Prejudice and Racism = Nebr. Sym. Motiv. Motivational Factors in The Etiology of Drug Abuse = Nebr Sym Motiv Motivational Factors in The Etiology of Drug Abuse = Nebr. Sym. Motiv. Motivational Impact of Nicotine and Its Role in Tobacco Use = Nebr Sym Motiv Motivational Impact of Nicotine and Its Role in Tobacco Use = Nebr. Sym. Motiv. Motivation and Emotion = Motiv Emotion Motivation and Emotion = Motiv. Emotion Motives and Algebraic Cycles: A Celebration in Honour of Spencer J. Bloch = Fields Inst Commun Motives and Algebraic Cycles: A Celebration in Honour of Spencer J. Bloch = Fields. Inst. Commun. Motives for Metaphor in Scientific and Technical Communication = Baywoods Tech Commun Motives for Metaphor in Scientific and Technical Communication = Baywoods. Tech. Commun. Motor Control and Sensory Motor Integration = Adv Psychol Motor Control and Sensory Motor Integration = Adv. Psychol. Motor Control : Concepts and Issues = Life Sci R Motor Control : Concepts and Issues = Life. Sci. R. Motor control = Motor Control Motor Control = Motor Control Motorcycles = Vdi Bericht Motorcycles = Vdi. Bericht. Motor Development in Early and Later Childhood : Longitudinal Approaches = Eur Network Motor Development in Early and Later Childhood : Longitudinal Approaches = Eur. Network. Motor Unit Number Estimation (mune), Proceedings = Suppl Clin Neurophys Motor Unit Number Estimation (mune), Proceedings = Suppl. Clin. Neurophys. Motriz-revista De Educacao Fisica = Motriz Motriz-revista De Educacao Fisica = Motriz. Mott Metal-insulator Transition = Springer Tr Mod Phys Mott Metal-insulator Transition = Springer. Tr. Mod. Phys. Mound-builders: Malleefowl, Brush Turkeys and Scrubfowl = Austral Nat Hist Ser Mound-builders: Malleefowl, Brush Turkeys and Scrubfowl = Austral. Nat. Hist. Ser. Mountain Pine Beetle Symposium: Challenges and Solutions = Pacif For C Mountain Pine Beetle Symposium: Challenges and Solutions = Pacif. For. C. Mountain research and development = Mt Res Dev Mountain Research and Development = Mt Res Dev Mountain Research and Development = Mt. Res. Dev. Mountains in Image and Word in The English-speaking World = Anglophonia Mountains in Image and Word in The English-speaking World = Anglophonia. Mountains: Sources of Water, Sources of Knowledge = Adv Glob Change Res Mountains: Sources of Water, Sources of Knowledge = Adv. Glob. Change. Res. Mount Athos and Byzantine Monasticism = Soc Prom Byzant St Mount Athos and Byzantine Monasticism = Soc. Prom. Byzant. St. Mount Sinai Journal of Medicine=Mt Sinai J Med;; Mount Sinai Journal of Medicine = Mt Sinai J Med Mount Sinai Journal of Medicine = Mt. Sinai J. Med. Mouse Cell Culture: Methods and Protocols = Methods Mol Biol Mouse Cell Culture: Methods and Protocols = Methods Mol. Biol. Mouse Liver Carcinogenesis = Prog Clin Biol Res Mouse Liver Carcinogenesis = Prog. Clin. Biol. Res. Mouse Models for Drug Discovery: Methods and Protocols = Methods Mol Biol Mouse Models for Drug Discovery: Methods and Protocols = Methods Mol. Biol. Mouse Models of Developmental Genetic Disease = Curr Top Dev Biol Mouse Models of Developmental Genetic Disease = Curr. Top. Dev. Biol. Mouth (American Student Dental Association) = Mouth Mouton Grammar Library = Mouton Gramm Libr Mouton Grammar Library = Mouton Gramm. Libr. Mouton Series in Pragmatics = Mouton Ser Pragmat Mouton Series in Pragmatics = Mouton Ser. Pragmat. Mouton Textbook = Mouton Txb Mouton Textbook = Mouton Txb. Mouvement Social = Mouvement Soc Mouvement Social = Mouvement Soc. Movement and Experimentation in Young Childrens Learning = Contest Early Childh Movement and Experimentation in Young Childrens Learning = Contest. Early. Childh. Movement Disorders in Children = Med Sport Sci Movement Disorders in Children = Med. Sport. Sci. Movement Disorders=Mov Disord;; Movement Disorders = Mov. Disord. Movement Disorders = Movement Disord Movement Disorders = Movement Disord. Movement disorders : official journal of the Movement Disorder Society = Mov Disord Movement Training for The Modern Actor = Routl Adv Theatr Per Movement Training for The Modern Actor = Routl. Adv. Theatr. Per. Movie = Movie Movimento = Movimento Movimento = Movimento-porto Aleg Movimento = Movimento-porto. Aleg. Movimento operaio e socialista = Mov Operaio Soc Moving Beyond Storytelling: Emerging Research in Microfinance = Contemp Stud Econ Fi Moving Beyond Storytelling: Emerging Research in Microfinance = Contemp. Stud. Econ. Fi. Moving Boundaries V: Computational Modelling of Free and Moving Boundary Problems = Comp Exptl Methods Moving Boundaries V: Computational Modelling of Free and Moving Boundary Problems = Comp. Exptl. Methods. Moving Boundaries Vi: Computational Modelling of Free and Moving Boundary Problems = Comp Exptl Methods Moving Boundaries Vi: Computational Modelling of Free and Moving Boundary Problems = Comp. Exptl. Methods. Moving Boundaries Vii: Computational Modelling of Free and Moving Boundary Problems = Comp Exptl Methods Moving Boundaries Vii: Computational Modelling of Free and Moving Boundary Problems = Comp. Exptl. Methods. Moving Interface Problems and Applications in Fluid Dynamics = Contemp Math Moving Interface Problems and Applications in Fluid Dynamics = Contemp. Math. Moving Millions: Transport Strategies for Sustainable Development in Megacities = Alliance Glob Sustai Moving Millions: Transport Strategies for Sustainable Development in Megacities = Alliance. Glob. Sustai. Moving On = Act Jutland Moving On = Act. Jutland. Moving Targets: Elliott-automation and The Dawn of The Computer Age in Britain, 1947-67 = Hist Comput-springer Moving Targets: Elliott-automation and The Dawn of The Computer Age in Britain, 1947-67 = Hist. Comput-springer. Moving The Maasai: A Colonial Misadventure = St Antonys Ser Moving The Maasai: A Colonial Misadventure = St. Antonys. Ser. Moyen Age = Moyen Age Moyo = Moyo Mozia. Rapporto preliminare della missione congiunta con la Soprintendenza alle antichità della Sicilia occidentale = Mozia Mpi Studies On Intellectual Property Competition and Tax Law = Mpi Stud Intell Prop Mpi Studies On Intellectual Property Competition and Tax Law = Mpi Stud. Intell. Prop. MPS. Medical products salesman = MPS MPS; Medical Products Salesman = MPS Mps-siam Series On Optimization = Mps-siam Ser Optimiz Mps-siam Series On Optimization = Mps-siam Ser. Optimiz. Mr Angiography of The Body = Med Radiol Diagn Ima Mr Angiography of The Body = Med. Radiol. Diagn. Ima. Mri and Ct of The Female Pelvis = Med Radiol Diagn Ima Mri and Ct of The Female Pelvis = Med. Radiol. Diagn. Ima. Mri and Ultrasound in Diagnosis and Management of Rheumatological Diseases = Ann Ny Acad Sci Mri and Ultrasound in Diagnosis and Management of Rheumatological Diseases = Ann. Ny. Acad. Sci. Mri of The Lung = Med Radiol Diagn Ima Mri of The Lung = Med. Radiol. Diagn. Ima. Mrsa (methicillin Resistant Staphylococcus Aureus): Infections and Treatment = Public Health 21st C Mrsa (methicillin Resistant Staphylococcus Aureus): Infections and Treatment = Public. Health. 21st. C. MRS bulletin / Materials Research Society = MRS Bull Mrs Bulletin = Mrs Bull Mrs Bulletin = Mrs Bull. MRS Bulletin = MRS Bull. MRS Internet Journal of Nitride Semiconductor Research = MRS Internet J. Nitride Semicond. Res. Mrs Internet Journal of Nitride Semiconductor Research = Mrs Internet J N S R Mrs Internet Journal of Nitride Semiconductor Research = Mrs Internet J. N. S. R. Ms&a-modeling Simulation and Applications = Ms&a Modeling Simula Ms&a-modeling Simulation and Applications = Ms&a. Modeling. Simula. Ms&a-modeling Simulation and Applications = Ms A Mod Simul Ms&a-modeling Simulation and Applications = Ms. A. Mod. Simul. MSDA journal : journal of the Maryland State Dental Association = MSDA J MSDA Journal = MSDA J. M S-medecine Sciences = M S-med Sci M S-medecine Sciences = M S-med. Sci. MS = Ms M&som-manufacturing & Service Operations Management = M&som-manuf Serv Op M&som-manufacturing & Service Operations Management = M&som-manuf. Serv. Op. Msu Business Topics-michigan State University = Msu Bus Topics-mich Msu Business Topics-michigan State University = Msu Bus. Topics-mich. Msu Business Topics = Msu Bus Top-mich St Msu Business Topics = Msu Bus. Top-mich. St. Mswim'07: Proceedings of The Tenth Acm Symposium On Modeling, Analysis, and Simulation of Wireless and Mobile Systems = Acm S Model Anal Sim Mswim'07: Proceedings of The Tenth Acm Symposium On Modeling, Analysis, and Simulation of Wireless and Mobile Systems = Acm S. Model. Anal. Sim. Mswim'08: Proceedings of The Eleventh Acm International Conference On Modeling, Analysis, and Simulation of Wireless and Mobile Systems = Acm S Model Anal Sim Mswim'08: Proceedings of The Eleventh Acm International Conference On Modeling, Analysis, and Simulation of Wireless and Mobile Systems = Acm S. Model. Anal. Sim. Mtdt'06: 2006 Ieee International Workshop On Memory Technology, Design, and Testing, Proceedings = Rec Ieee Int Wkshp M Mtdt'06: 2006 Ieee International Workshop On Memory Technology, Design, and Testing, Proceedings = Rec. Ieee Int. Wkshp. M. M-theory and Quantum Geometry = Nato Adv Sci I C-mat M-theory and Quantum Geometry = Nato. Adv. Sci. I. C-mat. M. Thompson – C. M. Kraay – O. Mørkholm, An Inventory of Greek Coin Hoards (New York 1973) = IGCH Mti and Pulsed Doppler Radar With Matlab, Second Edition = Artech Hse Radar Lib Mti and Pulsed Doppler Radar With Matlab, Second Edition = Artech. Hse. Radar Lib. Mtor Pathway and Mtor Inhibitors in Cancer Therapy = Cancer Drug Discov D Mtor Pathway and Mtor Inhibitors in Cancer Therapy = Cancer Drug. Discov. D. Mtpr-06: Modern Trends in Physics Research = Aip Conf Proc Mtpr-06: Modern Trends in Physics Research = Aip. Conf. Proc. M&T Series = M&T Ser. Mtv 2007: Eighth International Workshop On Microprocessor Test and Verification, Proceedings = Int Workshop Micropr Mtv 2007: Eighth International Workshop On Microprocessor Test and Verification, Proceedings = Int. Workshop Micropr. Mtv 2008: Ninth International Workshop On Microprocessor Test and Verification, Proceedings = Int Workshop Micropr Mtv 2008: Ninth International Workshop On Microprocessor Test and Verification, Proceedings = Int. Workshop Micropr. Mucopolysaccharides Biochimica et Biophysica Acta, Specialized Section on Mucoproteins and Mucopolysaccharides = Biochim. Biophys. Acta, Spec. Sect. Mucoproteins Mucosal Immunity = Adv Immunol Mucosal Immunity = Adv. Immunol. Mucosal Immunity and The Gut Epithelium: Interactions in Health and Disease = Dyn Nutr R Mucosal Immunity and The Gut Epithelium: Interactions in Health and Disease = Dyn. Nutr. R. Mucosal Immunology = Mucosal Immunol Mucosal Immunology = Mucosal Immunol. Mucosal T Cells = Chem Immunol Mucosal T Cells = Chem. Immunol. Mucus and Related Topics = Sym Soc Exp Biol Mucus and Related Topics = Sym. Soc. Exp. Biol. Mucus Hypersecretion in Respiratory Disease = Novart Fdn Symp Mucus Hypersecretion in Respiratory Disease = Novart. Fdn. Symp. Muddied Waters = Verh Konik Muddied Waters = Verh. Konik. Mud Volcanoes, Geodynamics and Seismicity = Nato Sci S Ss Iv Ear Mud Volcanoes, Geodynamics and Seismicity = Nato. Sci. S. Ss. Iv. Ear. Muhammad Is Not The Father of Any of Your Men: The Making of The Last Prophet = Divin Reread Late An Muhammad Is Not The Father of Any of Your Men: The Making of The Last Prophet = Divin. Reread. Late. An. Mulitmedia Networks: Security, Displays, Terminals, and Gateways = P Soc Photo-opt Ins Mulitmedia Networks: Security, Displays, Terminals, and Gateways = P. Soc. Photo-opt. Ins. Mullite and Mullite Matrix Composites = Ceram Trans Mullite and Mullite Matrix Composites = Ceram. Trans. Multiaccess, Mobility and Teletraffic for Personal Communications = Kluw Commun Multiaccess, Mobility and Teletraffic for Personal Communications = Kluw. Commun. Multiaccess, Reservations and Queues = Philips Res Book Ser Multiaccess, Reservations and Queues = Philips. Res. Book. Ser. Multi-agent and Multi-agent-based Simulation = Lect Notes Comput Sc Multi-agent and Multi-agent-based Simulation = Lect. Notes. Comput. Sc. Multi-agent-based Simulation Iii = Lect Notes Artif Int Multi-agent-based Simulation Iii = Lect. Notes. Artif. Int. Multi-agent-based Simulation Ii = Lect Notes Artif Int Multi-agent-based Simulation Ii = Lect. Notes. Artif. Int. Multi-agent-based Simulation Ix = Lect Notes Artif Int Multi-agent-based Simulation Ix = Lect. Notes. Artif. Int. Multi-agent-based Simulation = Lect Notes Artif Int Multi-agent-based Simulation = Lect. Notes. Artif. Int. Multi-agent-based Simulation Viii = Lect Notes Comput Sc Multi-agent-based Simulation Viii = Lect. Notes. Comput. Sc. Multi-agent-based Simulation Vii = Lect Notes Artif Int Multi-agent-based Simulation Vii = Lect. Notes. Artif. Int. Multi-agent-based Simulation Vi = Lect Notes Artif Int Multi-agent-based Simulation Vi = Lect. Notes. Artif. Int. Multi-agent-based Simulation X = Lect Notes Artif Int Multi-agent-based Simulation X = Lect. Notes. Artif. Int. Multi-agent for Mass User Support = Lect Notes Comput Sc Multi-agent for Mass User Support = Lect. Notes. Comput. Sc. Multiagent Platforms = Lect Notes Artif Int Multiagent Platforms = Lect. Notes. Artif. Int. Multi-agent Rationality = Lect Notes Artif Int Multi-agent Rationality = Lect. Notes. Artif. Int. Multi-agent Systems and Agent-based Simulation = Lect Notes Artif Int Multi-agent Systems and Agent-based Simulation = Lect. Notes. Artif. Int. Multi-agent Systems and Applications Iii, Proceedings = Lect Notes Artif Int Multi-agent Systems and Applications Iii, Proceedings = Lect. Notes. Artif. Int. Multi-agent Systems and Applications Ii = Lect Notes Artif Int Multi-agent Systems and Applications Ii = Lect. Notes. Artif. Int. Multi-agent Systems and Applications Iv, Proceedings = Lect Notes Artif Int Multi-agent Systems and Applications Iv, Proceedings = Lect. Notes. Artif. Int. Multi-agent Systems and Applications = Lect Notes Artif Int Multi-agent Systems and Applications = Lect. Notes. Artif. Int. Multi-agent Systems and Applications V, Proceedings = Lect Notes Artif Int Multi-agent Systems and Applications V, Proceedings = Lect. Notes. Artif. Int. Multiagent Systems, Artificial Societies, and Simulated Organizations: International Book Series = Mu S Art Soc Sim Org Multiagent Systems, Artificial Societies, and Simulated Organizations: International Book Series = Mu. S. Art. Soc. Sim. Org. Multi-agent Systems for Society = Lect Notes Artif Int Multi-agent Systems for Society = Lect. Notes. Artif. Int. Multi-agent Systems = Lect Notes Artif Int Multi-agent Systems = Lect. Notes. Artif. Int. Multiagent System Technologies = Lect Notes Artif Int Multiagent System Technologies = Lect. Notes. Artif. Int. Multi-agent System Technologies, Proceedings = Lect Notes Artif Int Multi-agent System Technologies, Proceedings = Lect. Notes. Artif. Int. Multiagent System Technologies, Proceedings = Lect Notes Artif Int Multiagent System Technologies, Proceedings = Lect. Notes. Artif. Int. Multiagent System Technologies, Proceedings = Lect Notes Comput Sc Multiagent System Technologies, Proceedings = Lect. Notes. Comput. Sc. Multiaxial Fatigue and Deformation: Testing and Prediction = Am Soc Test Mater Multiaxial Fatigue and Deformation: Testing and Prediction = Am. Soc. Test. Mater. Multiaxial Fatigue and Deformation Testing Techniques = Am Soc Test Mater Multiaxial Fatigue and Deformation Testing Techniques = Am. Soc. Test. Mater. Multiaxial Notch Fatigue = Woodhead Publ Mater Multiaxial Notch Fatigue = Woodhead. Publ. Mater. Multiband Integrated Antennas for 4g Terminals = Artech Hse Antenn Pr Multiband Integrated Antennas for 4g Terminals = Artech. Hse. Antenn. Pr. Multibody System Dynamics = Multibody Sys.Dyn. Multibody system dynamics = Multibody Syst Dyn Multibody System Dynamics = Multibody Syst. Dyn. Multibody System Dynamics = Multibody Syst Dyn Multibody System Dynamics = Multibody Syst. Dyn. Multi-carrier Spread Spectrum 2007 = Lect Not El Engr Multi-carrier Spread Spectrum 2007 = Lect. Not. El. Engr. Multi-carrier Spread Spectrum 2007 = Lect Notes Electr En Multi-carrier Spread Spectrum 2007 = Lect. Notes. Electr. En. Multichain Immune Recognition Receptor Signaling: From Spatiotemporal Organization to Human Disease = Adv Exp Med Biol Multichain Immune Recognition Receptor Signaling: From Spatiotemporal Organization to Human Disease = Adv. Exp. Med. Biol. Multichamber and In-situ Processing of Electronic Materials = P Soc Photo-opt Ins Multichamber and In-situ Processing of Electronic Materials = P. Soc. Photo-opt. Ins. Multichip Modules : International Conference and Exhibition = P Soc Photo-opt Ins Multichip Modules : International Conference and Exhibition = P. Soc. Photo-opt. Ins. Multichip Modules = P Soc Photo-opt Ins Multichip Modules = P. Soc. Photo-opt. Ins. Multicolored Landscape of Compact Objects and Their Explosive Origins = Aip Conf Proc Multicolored Landscape of Compact Objects and Their Explosive Origins = Aip. Conf. Proc. Multicomponent and Multilayered Thin Films for Advanced Microtechnologies : Techniques, Fundamentals and Devices = Nato Adv Sci Inst Se Multicomponent and Multilayered Thin Films for Advanced Microtechnologies : Techniques, Fundamentals and Devices = Nato. Adv. Sci. Inst. Se. Multicomponent Interfacial Transport: Described By The Square Gradient Model During Evaporation and Condensation = Springer Theses-reco Multicomponent Interfacial Transport: Described By The Square Gradient Model During Evaporation and Condensation = Springer. Theses-reco. Multicomponent Oxide Films for Electronics = Mater Res Soc Symp P Multicomponent Oxide Films for Electronics = Mater. Res. Soc. Symp. P. Multicore Processors and Systems = Integr Circuit Syst Multicore Processors and Systems = Integr. Circuit. Syst. Multicriteria Analysis and Lca Techniques: With Applications to Agro-engineerng Problems = Green Energy Technol Multicriteria Analysis and Lca Techniques: With Applications to Agro-engineerng Problems = Green. Energy. Technol. Multicultural Challenge = Comp Soc Re Multicultural Challenge = Comp. Soc. Re. Multicultural Challenge = Comp Soc Res Multicultural Challenge = Comp. Soc. Res. Multicultural Europe = Multicult Europe Multicultural Europe = Multicult. Europe Multicultural Families, Home Literacies, and Mainstream Schooling = Lit Lang Learn Multicultural Families, Home Literacies, and Mainstream Schooling = Lit. Lang. Learn. Multicultural Horizons: Diversity and The Limits of The Civil Nation = Int Libr Sociol Multicultural Horizons: Diversity and The Limits of The Civil Nation = Int. Libr. Sociol. Multiculturalism and Hybridity in African Literatures = Ann Sel Pap Multiculturalism and Hybridity in African Literatures = Ann. Sel. Pap. Multiculturalism and Moral Conflict = Routl Innov Polit Th Multiculturalism and Moral Conflict = Routl. Innov. Polit. Th. Multiculturalism in The Age of The Mosaic: Essays in Honor of Rudolph G. Wilson = Educ Compet Glob Wor Multiculturalism in The Age of The Mosaic: Essays in Honor of Rudolph G. Wilson = Educ. Compet. Glob. Wor. Multidimensional Approaches to Reservoir Fisheries Management = Am Fish S S Multidimensional Approaches to Reservoir Fisheries Management = Am. Fish. S. S. Multidimensional Hyperbolic Problems and Computations = Ima V Math Multidimensional Hyperbolic Problems and Computations = Ima. V. Math. Multidimensional Item Response Theory = Stat Soc Behav Sc Multidimensional Item Response Theory = Stat. Soc. Behav. Sc. Multidimensional Poverty Measurement: Concepts and Applications = Econ Stud Inequal So Multidimensional Poverty Measurement: Concepts and Applications = Econ. Stud. Inequal. So. Multidimensional Screening = Stud Econ Theory Multidimensional Screening = Stud. Econ. Theory. Multidimensional Signals, Circuits and Systems = T&f S Syst Contr Multidimensional Signals, Circuits and Systems = T&f. S. Syst. Contr. Multidimensional Spectroscopy of Polymers = Acs Sym Ser Multidimensional Spectroscopy of Polymers = Acs. Sym. Ser. Multidimensional Systems and Signal Processing = Multidimension. Syst. Signal Process. Multidimensional Systems and Signal Processing = Multidimens. Systems Signal Process. Multidimensional Systems and Signal Processing = Multidim Syst Sign P Multidimensional Systems and Signal Processing = Multidim. Syst. Sign. P. Multidisciplinary Approaches to Visual Representations and Interpretations = Stud Multidiscip Multidisciplinary Approaches to Visual Representations and Interpretations = Stud. Multidiscip. Multidisciplinary Approach to Myelin Diseases Ii = Nato Adv Sci Inst Se Multidisciplinary Approach to Myelin Diseases Ii = Nato. Adv. Sci. Inst. Se. Multidisciplinary Design Optimization = Siam Proc S Multidisciplinary Design Optimization = Siam. Proc. S. Multidisciplinary Methods for Analysis Optimization and Control of Complex Systems = Math Indust Multidisciplinary Methods for Analysis Optimization and Control of Complex Systems = Math. Indust. Multidisciplinary Perspectives On Menopause = Ann Ny Acad Sci Multidisciplinary Perspectives On Menopause = Ann. Ny. Acad. Sci. Multidisciplinary Research in Control = Lect Notes Contr Inf Multidisciplinary Research in Control = Lect. Notes. Contr. Inf. Multidisciplinary Respiratory Medicine = Multidiscip Resp Med Multidisciplinary Respiratory Medicine = Multidiscip. Resp. Med. Multidisciplinary Respiratory Medicine = Multidscip Respir M Multidisciplinary Respiratory Medicine = Multidscip. Respir. M. Multi-drug Resistance in Cancer = Methods Mol Biol Multi-drug Resistance in Cancer = Methods. Mol. Biol. Multi-ethnic Britain 2000(plus): New Perspectives in Literature, Film and The Arts = Int Forsch Allg Vgl Multi-ethnic Britain 2000(plus): New Perspectives in Literature, Film and The Arts = Int. Forsch. Allg. Vgl. Multifacets of Dusty Plasma = Aip Conf Proc Multifacets of Dusty Plasma = Aip. Conf. Proc. Multi-feed Systems for Radio Telescopes = Astr Soc P Multi-feed Systems for Radio Telescopes = Astr. Soc. P. Multifrequency Electronic/photonic Devices and Systems for Dual-use Applications = P Soc Photo-opt Ins Multifrequency Electronic/photonic Devices and Systems for Dual-use Applications = P. Soc. Photo-opt. Ins. Multifunctional Barriers for Flexible Structure: Textile, Leather and Paper = Springer Ser Mater S Multifunctional Barriers for Flexible Structure: Textile, Leather and Paper = Springer. Ser. Mater. S. Multifunctional Energetic Materials = Mater Res Soc Symp P Multifunctional Energetic Materials = Mater. Res. Soc. Symp. P. Multifunctional Landscapes, Vol Iii: Continuity and Change = Adv Ecol Sci Multifunctional Landscapes, Vol Iii: Continuity and Change = Adv. Ecol. Sci. Multifunctional Landscapes, Vol Ii: Monitoring, Diversity and Management = Adv Ecol Sci Multifunctional Landscapes, Vol Ii: Monitoring, Diversity and Management = Adv. Ecol. Sci. Multifunctional Landscapes, Vol I : Theory, Values and History = Adv Ecol Sci Multifunctional Landscapes, Vol I : Theory, Values and History = Adv. Ecol. Sci. Multi-functional Materials and Structures Iii, Pts 1 and 2 = Adv Mater Res-switz Multi-functional Materials and Structures Iii, Pts 1 and 2 = Adv. Mater. Res-switz. Multi-functional Materials and Structures Ii, Pts 1 and 2 = Adv Mater Res-switz Multi-functional Materials and Structures Ii, Pts 1 and 2 = Adv. Mater. Res-switz. Multi-functional Materials and Structures Ii, Pts 1 and 2 = Adv Mat Res Multi-functional Materials and Structures Ii, Pts 1 and 2 = Adv. Mat. Res. Multi-functional Materials and Structures, Pts 1 and 2 = Adv Mater Res-switz Multi-functional Materials and Structures, Pts 1 and 2 = Adv. Mater. Res-switz. Multi-functional Materials and Structures, Pts 1 and 2 = Adv Mat Res Multi-functional Materials and Structures, Pts 1 and 2 = Adv. Mat. Res. Multifunctional Mesoporous Inorganic Solids = Nato Adv Sci Inst Se Multifunctional Mesoporous Inorganic Solids = Nato. Adv. Sci. Inst. Se. Multifunctional Metallic Hollow Sphere Structures: Manufacturing, Properties and Application = Eng Mater Multifunctional Metallic Hollow Sphere Structures: Manufacturing, Properties and Application = Eng. Mater. Multifunctional Polycrystalline Ferroelectric Materials: Processing and Properties = Springer Ser Mater S Multifunctional Polycrystalline Ferroelectric Materials: Processing and Properties = Springer. Ser. Mater. S. Multigigabit Fiber Communications = P Soc Photo-opt Ins Multigigabit Fiber Communications = P. Soc. Photo-opt. Ins. Multigigabit Fiber Communication Systems = P Soc Photo-opt Ins Multigigabit Fiber Communication Systems = P. Soc. Photo-opt. Ins. Multi-gigabit Microwave and Millimeter-wave Wireless Communications = Artech Hse Mob Comm Multi-gigabit Microwave and Millimeter-wave Wireless Communications = Artech. Hse. Mob. Comm. Multigrid Methods Iii = Int S Num M Multigrid Methods Iii = Int. S. Num. M. Multigrid Methods Iv = Int S Num M Multigrid Methods Iv = Int. S. Num. M. Multilateral Dimension in Russian Foreign Policy = Rou Con Rus Eas Eu S Multilateral Dimension in Russian Foreign Policy = Rou. Con. Rus. Eas. Eu. S. Multilateralism and Regionalism in The Post-uruguay Round Era = Eu Ldc Trad Cap Rel Multilateralism and Regionalism in The Post-uruguay Round Era = Eu. Ldc. Trad. Cap. Rel. Multilateralism, Regionalism and Bilateralism in Trade and Investment: 2006 World Report On Regional Integration = Un U Ser Regionalism Multilateralism, Regionalism and Bilateralism in Trade and Investment: 2006 World Report On Regional Integration = Un. U. Ser. Regionalism Multilateral Treaty-making = Nijhoff Law Spec Multilateral Treaty-making = Nijhoff. Law. Spec. Multilayer and Grazing Incidence X-ray / Euv Optics for Astronomy and Projection Lithography = P Soc Photo-opt Ins Multilayer and Grazing Incidence X-ray / Euv Optics for Astronomy and Projection Lithography = P. Soc. Photo-opt. Ins. Multilayer and Grazing Incidence X-ray/euv Optics Iii = P Soc Photo-opt Ins Multilayer and Grazing Incidence X-ray/euv Optics Iii = P. Soc. Photo-opt. Ins. Multilayer and Grazing Incidence X-ray/euv Optics Ii = P Soc Photo-opt Ins Multilayer and Grazing Incidence X-ray/euv Optics Ii = P. Soc. Photo-opt. Ins. Multilayer and Grazing Incidence X-ray/euv Optics = P Soc Photo-opt Ins Multilayer and Grazing Incidence X-ray/euv Optics = P. Soc. Photo-opt. Ins. Multilayered Migration Governance:the Promise of Partnership = Routl Adv Int Relat Multilayered Migration Governance:the Promise of Partnership = Routl. Adv. Int. Relat. Multilayer Electronic Ceramic Devices = Ceram Trans Multilayer Electronic Ceramic Devices = Ceram. Trans. Multilayer Optics for Advanced X-ray Applications = P Soc Photo-opt Ins Multilayer Optics for Advanced X-ray Applications = P. Soc. Photo-opt. Ins. Multilevel Interconnection : Issues That Impact Competitiveness = P Soc Photo-opt Ins Multilevel Interconnection : Issues That Impact Competitiveness = P. Soc. Photo-opt. Ins. Multilevel Interconnect Technology Iii = P Soc Photo-opt Ins Multilevel Interconnect Technology Iii = P. Soc. Photo-opt. Ins. Multilevel Interconnect Technology Ii = Proc Spie Multilevel Interconnect Technology Ii = Proc. Spie. Multilevel Interconnect Technology Ii = P Soc Photo-opt Ins Multilevel Interconnect Technology Ii = P. Soc. Photo-opt. Ins. Multilevel Interconnect Technology = P Soc Photo-opt Ins Multilevel Interconnect Technology = P. Soc. Photo-opt. Ins. Multi-level Issues in Creativity and Innovation = Res Multi Level Iss Multi-level Issues in Creativity and Innovation = Res. Multi. Level. Iss. Multi-level Issues in Organizational Behavior and Leadership = Res Multi Level Iss Multi-level Issues in Organizational Behavior and Leadership = Res. Multi. Level. Iss. Multi-level Issues in Organizational Behavior and Strategy = Res Multi Level Iss Multi-level Issues in Organizational Behavior and Strategy = Res. Multi. Level. Iss. Multi-level Issues in Organizations and Time = Res Multi Level Iss Multi-level Issues in Organizations and Time = Res. Multi. Level. Iss. Multi-level Issues in Social Systems = Res Multi Level Iss Multi-level Issues in Social Systems = Res. Multi. Level. Iss. Multi-level Issues in Strategy and Methods = Res Multi Level Iss Multi-level Issues in Strategy and Methods = Res. Multi. Level. Iss. Multilevel Modeling of Educational Data = Quant Meth Educ Beha Multilevel Modeling of Educational Data = Quant. Meth. Educ. Beha. Multilevel Union Administration: The Transformation of Executive Politics in Europe = Palgrave Stud Eur Un Multilevel Union Administration: The Transformation of Executive Politics in Europe = Palgrave. Stud. Eur. Un. Multilingua-journal of Cross-cultural and Interlanguage Communication = Multilingua Multilingua-journal of Cross-cultural and Interlanguage Communication = Multilingua. Multilingual and Multimodal Information Access Evaluation = Lect Notes Comput Sc Multilingual and Multimodal Information Access Evaluation = Lect. Notes. Comput. Sc. Multilingual Europe: Facts and Policies = Contrib Sociol Lang Multilingual Europe: Facts and Policies = Contrib. Sociol. Lang. Multilingual Framenets in Computational Lexicography = Trends Linguist-stud Multilingual Framenets in Computational Lexicography = Trends. Linguist-stud. Multilingual Identities in A Global City: London Stories = Lang Glob Multilingual Identities in A Global City: London Stories = Lang. Glob. Multilingual Information Access Evaluation Ii: Multimedia Experiments, Pt Ii = Lect Notes Comput Sc Multilingual Information Access Evaluation Ii: Multimedia Experiments, Pt Ii = Lect. Notes. Comput. Sc. Multilingual Information Access Evaluation I: Text Retrieval Experiments = Lect Notes Comput Sc Multilingual Information Access Evaluation I: Text Retrieval Experiments = Lect. Notes. Comput. Sc. Multilingual Information Access for Text, Speech and Images = Lect Notes Comput Sc Multilingual Information Access for Text, Speech and Images = Lect. Notes. Comput. Sc. Multilingualism and Sign Languages: From The Great Plains to Austrialia = Sociolinguist Deaf Multilingualism and Sign Languages: From The Great Plains to Austrialia = Sociolinguist. Deaf. Multilingualism for All = Eur St Multilin Multilingualism for All = Eur. St. Multilin. Multilingual Matters = Multiling Multilingual Matters = Multiling. Multimedia 2001, Proceedings = Spring Eurograp Multimedia 2001, Proceedings = Spring. Eurograp. Multimedia'99 = Spring Comp Sci Multimedia'99 = Spring. Comp. Sci. Multimedia Analysis, Processing and Communications = Stud Comput Intell Multimedia Analysis, Processing and Communications = Stud. Comput. Intell. Multimedia Applications, Services and Techniques - Ecmast '97 = Lect Notes Comput Sc Multimedia Applications, Services and Techniques - Ecmast '97 = Lect. Notes. Comput. Sc. Multimedia Applications, Services and Techniques - Ecmast'98 = Lect Notes Comput Sc Multimedia Applications, Services and Techniques - Ecmast'98 = Lect. Notes. Comput. Sc. Multimedia Applications, Services and Techniques - Ecmast'99 = Lect Notes Comput Sc Multimedia Applications, Services and Techniques - Ecmast'99 = Lect. Notes. Comput. Sc. Multimedia, Computer Graphics and Broadcasting, Proceedings = Comm Com Inf Sc Multimedia, Computer Graphics and Broadcasting, Proceedings = Comm. Com. Inf. Sc. Multimedia Computing and Networking 1995 = P Soc Photo-opt Ins Multimedia Computing and Networking 1995 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 1996 = P Soc Photo-opt Ins Multimedia Computing and Networking 1996 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 1997 = P Soc Photo-opt Ins Multimedia Computing and Networking 1997 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 1998 = P Soc Photo-opt Ins Multimedia Computing and Networking 1998 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 1999 = Proc Spie Multimedia Computing and Networking 1999 = Proc. Spie. Multimedia Computing and Networking 1999 = P Soc Photo-opt Ins Multimedia Computing and Networking 1999 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2000 = Proc Spie Multimedia Computing and Networking 2000 = Proc. Spie. Multimedia Computing and Networking 2000 = P Soc Photo-opt Ins Multimedia Computing and Networking 2000 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2001 = Proc Spie Multimedia Computing and Networking 2001 = Proc. Spie. Multimedia Computing and Networking 2001 = P Soc Photo-opt Ins Multimedia Computing and Networking 2001 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2002 = Proc Spie Multimedia Computing and Networking 2002 = Proc. Spie. Multimedia Computing and Networking 2002 = P Soc Photo-opt Ins Multimedia Computing and Networking 2002 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2003 = Proc Spie Multimedia Computing and Networking 2003 = Proc. Spie. Multimedia Computing and Networking 2003 = P Soc Photo-opt Ins Multimedia Computing and Networking 2003 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2004 = Proc Spie Multimedia Computing and Networking 2004 = Proc. Spie. Multimedia Computing and Networking 2004 = P Soc Photo-opt Ins Multimedia Computing and Networking 2004 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2005 = Proc Spie Multimedia Computing and Networking 2005 = Proc. Spie. Multimedia Computing and Networking 2005 = P Soc Photo-opt Ins Multimedia Computing and Networking 2005 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2006 = Proc Spie Multimedia Computing and Networking 2006 = Proc. Spie. Multimedia Computing and Networking 2006 = P Soc Photo-opt Ins Multimedia Computing and Networking 2006 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2007 = Proc Spie Multimedia Computing and Networking 2007 = Proc. Spie. Multimedia Computing and Networking 2007 = P Soc Photo-opt Ins Multimedia Computing and Networking 2007 = P. Soc. Photo-opt. Ins. Multimedia Computing and Networking 2008 = Proc Spie Multimedia Computing and Networking 2008 = Proc. Spie. Multimedia Content Access: Algorithms and Systems Ii = Proc Spie Multimedia Content Access: Algorithms and Systems Ii = Proc. Spie. Multimedia Content Access: Algorithms and Systems Ii = P Soc Photo-opt Ins Multimedia Content Access: Algorithms and Systems Ii = P. Soc. Photo-opt. Ins. Multimedia Content Access: Algorithms and Systems = P Soc Photo-opt Ins Multimedia Content Access: Algorithms and Systems = P. Soc. Photo-opt. Ins. Multimedia Content Analysis and Mining, Proceedings = Lect Notes Comput Sc Multimedia Content Analysis and Mining, Proceedings = Lect. Notes. Comput. Sc. Multimedia Content Analysis, Management, and Retrieval 2006 = Proc Spie Multimedia Content Analysis, Management, and Retrieval 2006 = Proc. Spie. Multimedia Content Analysis, Management, and Retrieval 2006 = P Soc Photo-opt Ins Multimedia Content Analysis, Management, and Retrieval 2006 = P. Soc. Photo-opt. Ins. Multimedia Content Analysis: Theory and Applications = Signals Commun Techn Multimedia Content Analysis: Theory and Applications = Signals. Commun. Techn. Multimedia Content Representation, Classification and Security = Lect Notes Comput Sc Multimedia Content Representation, Classification and Security = Lect. Notes. Comput. Sc. Multimedia Databases and Image Communication = Ser Softw Engn Knowl Multimedia Databases and Image Communication = Ser. Softw. Engn. Knowl. Multimedia Data Mining: A Systematic Introduction to Concepts and Theory = Ch Crc Data Min Know Multimedia Data Mining: A Systematic Introduction to Concepts and Theory = Ch. Crc. Data Min. Know. Multimedia Explorations in Urban Policy and Planning: Beyond The Flatlands = Urban Land Perspect Multimedia Explorations in Urban Policy and Planning: Beyond The Flatlands = Urban Land. Perspect. Multimedia: Full-service Impact On Business, Education, and The Home = P Soc Photo-opt Ins Multimedia: Full-service Impact On Business, Education, and The Home = P. Soc. Photo-opt. Ins. Multimedia Hardware Architectures 1997 = P Soc Photo-opt Ins Multimedia Hardware Architectures 1997 = P. Soc. Photo-opt. Ins. Multimedia Hardware Architectures 1998 = P Soc Photo-opt Ins Multimedia Hardware Architectures 1998 = P. Soc. Photo-opt. Ins. Multimedia, Hypermedia and Virtual Reality = Lect Notes Comput Sc Multimedia, Hypermedia and Virtual Reality = Lect. Notes. Comput. Sc. Multimedia, Image Processing and Soft Computing: Trends, Principles and Applications = Tsi Press S Multimedia, Image Processing and Soft Computing: Trends, Principles and Applications = Tsi. Press. S. Multimedia in Education and Special Education = Educ Compet Glob Wor Multimedia in Education and Special Education = Educ. Compet. Glob. Wor. Multimedia Interaction and Intelligent User Interfaces: Principles, Methods and Applications = Adv Pattern Recognit Multimedia Interaction and Intelligent User Interfaces: Principles, Methods and Applications = Adv. Pattern. Recognit. Multimedia Learning: Cognitive and Instructional Issues = Adv Learn Ins Series Multimedia Learning: Cognitive and Instructional Issues = Adv. Learn. Ins. Series. Multimedia Multiprocessor Systems: Analysis, Design and Management = Embed Syst Multimedia Multiprocessor Systems: Analysis, Design and Management = Embed. Syst. Multimedia Networks for Automotive Applications = Imeche Sem Multimedia Networks for Automotive Applications = Imeche. Sem. Multimedia On Mobile Devices 2007 = Proc Spie Multimedia On Mobile Devices 2007 = Proc. Spie. Multimedia On Mobile Devices 2007 = P Soc Photo-opt Ins Multimedia On Mobile Devices 2007 = P. Soc. Photo-opt. Ins. Multimedia On Mobile Devices 2008 = Proc Spie Multimedia On Mobile Devices 2008 = Proc. Spie. Multimedia On Mobile Devices 2010 = Proc Spie Multimedia On Mobile Devices 2010 = Proc. Spie. Multimedia On Mobile Devices Ii = Proc Spie Multimedia On Mobile Devices Ii = Proc. Spie. Multimedia On Mobile Devices Ii = P Soc Photo-opt Ins Multimedia On Mobile Devices Ii = P. Soc. Photo-opt. Ins. Multimedia On Mobile Devices = Proc Spie Multimedia On Mobile Devices = Proc. Spie. Multimedia On Mobile Devices = P Soc Photo-opt Ins Multimedia On Mobile Devices = P. Soc. Photo-opt. Ins. Multimedia Services in Intelligent Environments: Integrated Systems = Smart Innov Syst Tec Multimedia Services in Intelligent Environments: Integrated Systems = Smart. Innov. Syst. Tec. Multimedia Services in Intelligent Environments: Software Development Challenges and Solutions = Smart Innov Syst Tec Multimedia Services in Intelligent Environments: Software Development Challenges and Solutions = Smart. Innov. Syst. Tec. Multimedia Services in Intelligent Environments = Stud Comput Intell Multimedia Services in Intelligent Environments = Stud. Comput. Intell. Multimedia Storage and Archiving Systems Iii = P Soc Photo-opt Ins Multimedia Storage and Archiving Systems Iii = P. Soc. Photo-opt. Ins. Multimedia Storage and Archiving Systems Ii = P Soc Photo-opt Ins Multimedia Storage and Archiving Systems Ii = P. Soc. Photo-opt. Ins. Multimedia Storage and Archiving Systems Iv = Proc Spie Multimedia Storage and Archiving Systems Iv = Proc. Spie. Multimedia Storage and Archiving Systems Iv = P Soc Photo-opt Ins Multimedia Storage and Archiving Systems Iv = P. Soc. Photo-opt. Ins. Multimedia Storage and Archiving Systems = P Soc Photo-opt Ins Multimedia Storage and Archiving Systems = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications-book = Proc Spie Multimedia Systems and Applications-book = Proc. Spie. Multimedia Systems and Applications-book = P Soc Photo-opt Ins Multimedia Systems and Applications-book = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications Iii = Proc Spie Multimedia Systems and Applications Iii = Proc. Spie. Multimedia Systems and Applications Iii = P Soc Photo-opt Ins Multimedia Systems and Applications Iii = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications Ii = P Soc Photo-opt Ins Multimedia Systems and Applications Ii = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications Iv = Proc Spie Multimedia Systems and Applications Iv = Proc. Spie. Multimedia Systems and Applications Iv = P Soc Photo-opt Ins Multimedia Systems and Applications Iv = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications Ix = Proc Spie Multimedia Systems and Applications Ix = Proc. Spie. Multimedia Systems and Applications Ix = P Soc Photo-opt Ins Multimedia Systems and Applications Ix = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications = Multimed Syst Appl Multimedia Systems and Applications = Multimed. Syst. Appl. Multimedia Systems and Applications (series) = Mu Sys Appl Multimedia Systems and Applications (series) = Mu. Sys. Appl. Multimedia Systems and Applications Vii = P Soc Photo-opt Ins Multimedia Systems and Applications Vii = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications Vi = Proc Spie Multimedia Systems and Applications Vi = Proc. Spie. Multimedia Systems and Applications Vi = P Soc Photo-opt Ins Multimedia Systems and Applications Vi = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications V = Proc Spie Multimedia Systems and Applications V = Proc. Spie. Multimedia Systems and Applications V = P Soc Photo-opt Ins Multimedia Systems and Applications V = P. Soc. Photo-opt. Ins. Multimedia Systems and Applications X = Proc Spie Multimedia Systems and Applications X = Proc. Spie. Multimedia Systems and Applications X = P Soc Photo-opt Ins Multimedia Systems and Applications X = P. Soc. Photo-opt. Ins. Multimedia Systems = Multimedia Syst Multimedia Systems = Multimedia Syst. Multimedia Tools and Applications = Multimed Tools Appl Multimedia Tools and Applications = Multimed. Tools Appl. Multimedia Tools for Communicating Mathematics = Math Visual Multimedia Tools for Communicating Mathematics = Math. Visual. Multimedia Translation for Film, Television and The Stage = Cinema E Traduzione Multimedia Translation for Film, Television and The Stage = Cinema. E. Traduzione. Multimodal and Marine Freight Transportation Issues = Transport Res Rec Multimodal and Marine Freight Transportation Issues = Transport. Res. Rec. Multimodal Biomedical Imaging Iii = P Soc Photo-opt Ins Multimodal Biomedical Imaging Iii = P. Soc. Photo-opt. Ins. Multimodal Biomedical Imaging Ii = Proc Spie Multimodal Biomedical Imaging Ii = Proc. Spie. Multimodal Biomedical Imaging Ii = P Soc Photo-opt Ins Multimodal Biomedical Imaging Ii = P. Soc. Photo-opt. Ins. Multimodal Biomedical Imaging Iv = Proc Spie Multimodal Biomedical Imaging Iv = Proc. Spie. Multimodal Biomedical Imaging Iv = P Soc Photo-opt Ins Multimodal Biomedical Imaging Iv = P. Soc. Photo-opt. Ins. Multimodal Biomedical Imaging = Proc Spie Multimodal Biomedical Imaging = Proc. Spie. Multimodal Biomedical Imaging = P Soc Photo-opt Ins Multimodal Biomedical Imaging = P. Soc. Photo-opt. Ins. Multimodal Biomedical Imaging Vi = Proc Spie Multimodal Biomedical Imaging Vi = Proc. Spie. Multimodal Biomedical Imaging V = P Soc Photo-opt Ins Multimodal Biomedical Imaging V = P. Soc. Photo-opt. Ins. Multimodal Corpora: From Models of Natural Interaction to Systems and Applications = Lect Notes Artif Int Multimodal Corpora: From Models of Natural Interaction to Systems and Applications = Lect. Notes. Artif. Int. Multimodal Intelligent Information Presentation = Text Speech Lang Tec Multimodal Intelligent Information Presentation = Text. Speech. Lang. Tec. Multimodality in Language and Speech Systems = Text Speech Lang Tec Multimodality in Language and Speech Systems = Text. Speech Lang. Tec. Multimodal Metaphor = Appl Cogn Linguist Multimodal Metaphor = Appl. Cogn. Linguist. Multimodal Processing and Interaction: Audio, Video, Text = Multimed Syst Appl Multimodal Processing and Interaction: Audio, Video, Text = Multimed. Syst. Appl. Multimodal Signal: Cognitive and Algorithmic Issues = Lect Notes Artif Int Multimodal Signal: Cognitive and Algorithmic Issues = Lect. Notes. Artif. Int. Multimodal Technologies for Perception of Humans = Lect Notes Comput Sc Multimodal Technologies for Perception of Humans = Lect. Notes. Comput. Sc. Multimodal Usability = Hum-comput Int-sprin Multimodal Usability = Hum-comput. Int-sprin. Multi-modal User Interactions in Controlled Environments = Multimed Syst Appl Multi-modal User Interactions in Controlled Environments = Multimed. Syst. Appl. Multimodal User Interfaces: From Signals to Interaction = Signals Commun Techn Multimodal User Interfaces: From Signals to Interaction = Signals Commun. Techn. Multinational Companies From Emerging Economies: Composition, Conceptualization and Direction in The Global Economy = Int Polit Econ Ser Multinational Companies From Emerging Economies: Composition, Conceptualization and Direction in The Global Economy = Int. Polit. Econ. Ser. Multinational Companies: Outsourcing, Conduct, and Taxes = Bus Iss Compet Entre Multinational Companies: Outsourcing, Conduct, and Taxes = Bus. Iss. Compet. Entre. Multinational Corporations and The Emerging Network Economy in Asia and The Pacific = Pac Trad Dev Conf S Multinational Corporations and The Emerging Network Economy in Asia and The Pacific = Pac. Trad. Dev. Conf. S. Multinational Enterprises and The Social Challenges of The Xxist Century = Bull Comparat Lab Re Multinational Enterprises and The Social Challenges of The Xxist Century = Bull. Comparat. Lab. Re. Multinational Enterprises, Foreign Direct Investment and Growth in Africa: South African Perspectives = Contrib Econ Multinational Enterprises, Foreign Direct Investment and Growth in Africa: South African Perspectives = Contrib. Econ. Multinational Federations = Routl Ser Fed Stud Multinational Federations = Routl. Ser. Fed. Stud. Multinational Finance Journal=Multinat. Finance J. Multinational Monitor = Multinatl Monit Multinational Monitor = Multinatl. Monit. Multinationals and Economic Growth in East Asia = Routl Int Bus Asia Multinationals and Economic Growth in East Asia = Routl. Int. Bus. Asia Multinationals and Europe 1992 = Int Bus S Multinationals and Europe 1992 = Int. Bus. S. Multinationals, Environment and Global Competition = Res Glob Strateg Man Multinationals, Environment and Global Competition = Res. Glob. Strateg. Man. Multi-objective Evolutionary Algorithms for Knowledge Discovery From Databases = Stud Comput Intell Multi-objective Evolutionary Algorithms for Knowledge Discovery From Databases = Stud. Comput. Intell. Multi-objective Memetic Algorithms = Stud Comput Intell Multi-objective Memetic Algorithms = Stud. Comput. Intell. Multiobjective Optimization: Interactive and Evolutionary Approaches = Lect Notes Comput Sc Multiobjective Optimization: Interactive and Evolutionary Approaches = Lect. Notes. Comput. Sc. Multiobjective Problems of Mathematical Programming = Lect Notes Econ Math Multiobjective Problems of Mathematical Programming = Lect. Notes. Econ. Math. Multi-objective Programming and Goal Programming = Adv Soft Comp Multi-objective Programming and Goal Programming = Adv. Soft. Comp. Multiobjective Programming and Goal Programming: Theoretical Results and Practical Applications = Lect Notes Econ Math Multiobjective Programming and Goal Programming: Theoretical Results and Practical Applications = Lect. Notes. Econ. Math. Multi-objective Swarm Intelligent Systems: Theory & Experiences = Stud Comput Intell Multi-objective Swarm Intelligent Systems: Theory & Experiences = Stud. Comput. Intell. Multiparadigm Programming in Mozart/oz = Lect Notes Comput Sc Multiparadigm Programming in Mozart/oz = Lect. Notes. Comput. Sc. Multiparticle Dynamics = Aip Conf Proc Multiparticle Dynamics = Aip. Conf. Proc. Multiparty Democracy and Political Change = Cont P Dev Soc Multiparty Democracy and Political Change = Cont. P. Dev. Soc. Multiphase 95, 7th International Conference = Bhr Gr Conf Ser Publ Multiphase 95, 7th International Conference = Bhr. Gr. Conf. Ser. Publ. Multiphase Flow Dynamics = Vtt Publ Multiphase Flow Dynamics = Vtt. Publ. Multiphase Flow: The Ultimate Measurement Challenge, Proceedings = Aip Conf Proc Multiphase Flow: The Ultimate Measurement Challenge, Proceedings = Aip. Conf. Proc. Multiphase Reacting Flows: Modelling and Simulation = Cism Cour L Multiphase Reacting Flows: Modelling and Simulation = Cism. Cour. L. Multiphoton Absorption and Nonlinear Transmission Processes: Materials, Theory, and Applications = Proc Spie Multiphoton Absorption and Nonlinear Transmission Processes: Materials, Theory, and Applications = Proc. Spie. Multiphoton Absorption and Nonlinear Transmission Processes: Materials, Theory, and Applications = P Soc Photo-opt Ins Multiphoton Absorption and Nonlinear Transmission Processes: Materials, Theory, and Applications = P. Soc. Photo-opt. Ins. Multiphoton and Light Driven Multielectron Processes in Organics: New Phenomena, Materials and Applications = Nato Sci S Prt 3 Hi Multiphoton and Light Driven Multielectron Processes in Organics: New Phenomena, Materials and Applications = Nato. Sci. S. Prt. 3. Hi. Multiphoton Microscopy in The Biomedical Sciences Iii = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Iii = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Ii = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Ii = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Iv = Proc Spie Multiphoton Microscopy in The Biomedical Sciences Iv = Proc. Spie. Multiphoton Microscopy in The Biomedical Sciences Iv = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Iv = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Ix = Proc Spie Multiphoton Microscopy in The Biomedical Sciences Ix = Proc. Spie. Multiphoton Microscopy in The Biomedical Sciences Ix = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Ix = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Viii = Proc Spie Multiphoton Microscopy in The Biomedical Sciences Viii = Proc. Spie. Multiphoton Microscopy in The Biomedical Sciences Viii = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Viii = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Vii = Proc Spie Multiphoton Microscopy in The Biomedical Sciences Vii = Proc. Spie. Multiphoton Microscopy in The Biomedical Sciences Vii = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Vii = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences Vi = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences Vi = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences V = P Soc Photo-opt Ins Multiphoton Microscopy in The Biomedical Sciences V = P. Soc. Photo-opt. Ins. Multiphoton Microscopy in The Biomedical Sciences X = Proc Spie Multiphoton Microscopy in The Biomedical Sciences X = Proc. Spie. Multiphoton Processes 1996 = Inst Phys Conf Ser Multiphoton Processes 1996 = Inst. Phys. Conf. Ser. Multiphoton Processes = Aip Conf Proc Multiphoton Processes = Aip. Conf. Proc. Multiple Access Communications = Lect Notes Comput Sc Multiple Access Communications = Lect. Notes. Comput. Sc. Multiple Approaches to Intelligent Systems, Proceedings = Lect Notes Artif Int Multiple Approaches to Intelligent Systems, Proceedings = Lect. Notes. Artif. Int. Multiple Classifier Systems = Lect Notes Comput Sc Multiple Classifier Systems = Lect. Notes. Comput. Sc. Multiple Classifier Systems, Proceeding = Lect Notes Comput Sc Multiple Classifier Systems, Proceeding = Lect. Notes. Comput. Sc. Multiple Classifier Systems, Proceedings = Lect Notes Comput Sc Multiple Classifier Systems, Proceedings = Lect. Notes. Comput. Sc. Multiple Criteria Decision Aiding = Bus Econ Rapid Chang Multiple Criteria Decision Aiding = Bus. Econ. Rapid. Chang. Multiple Criteria Decision Analysis: State of The Art Surveys = Int Ser Oper Res Man Multiple Criteria Decision Analysis: State of The Art Surveys = Int. Ser. Oper. Res. Man. Multiple Criteria Decision Making in The New Millennium = Lect Notes Econ Math Multiple Criteria Decision Making in The New Millennium = Lect. Notes. Econ. Math. Multiple Dirichlet Series, Automorphic Forms, and Analytic Number Theory = P Symp Pure Math Multiple Dirichlet Series, Automorphic Forms, and Analytic Number Theory = P. Symp. Pure. Math. Multiple Drug Resistance = Pharm Res Saf Test Multiple Drug Resistance = Pharm. Res. Saf. Test. Multiple Heterogeneous Unmanned Aerial Vehicles = Springer Trac Adv Ro Multiple Heterogeneous Unmanned Aerial Vehicles = Springer. Trac. Adv. Ro. Multiple Intelligences and Leadership = Leas Org Man Series Multiple Intelligences and Leadership = Leas. Org. Man. Series. Multiple Myeloma and Related Disorders = Chall Mod Med Multiple Myeloma and Related Disorders = Chall. Mod. Med. Multiple Myeloma = Emerg Cancer Ther Multiple Myeloma = Emerg. Cancer. Ther. Multiple Myeloma: Symptoms, Diagnosis and Treatment = Cancer Etiol Diagn T Multiple Myeloma: Symptoms, Diagnosis and Treatment = Cancer. Etiol. Diagn. T. Multiple Primary Malignancies = Updates Surg Multiple Primary Malignancies = Updates. Surg. Multiple Realities of Multilingualism: Personal Narratives and Researchers Perspectives = Trends Appl Linguist Multiple Realities of Multilingualism: Personal Narratives and Researchers Perspectives = Trends. Appl. Linguist. Multiple Representations in Chemical Education = Model Model Sci Educ Multiple Representations in Chemical Education = Model. Model. Sci. Educ. Multiple Risk Factors in Cardiovascular Disease = Med Sci Symp Ser Multiple Risk Factors in Cardiovascular Disease = Med. Sci. Symp. Ser. Multiple sclerosis (Houndmills, Basingstoke, England) = Mult Scler Multiple Sclerosis Journal = Mult Scler J Multiple Sclerosis Journal = Mult. Scler. J. Multiple Sclerosis=Mult Scler;; Multiple Sclerosis = Mult Scler Multiple Sclerosis = Mult. Scler. Multiple Sclerosis Research = Int Congr Ser Multiple Sclerosis Research = Int. Congr. Ser. Multiple Self Theory of Personality = Psychol Res Prog Multiple Self Theory of Personality = Psychol. Res. Prog. Multiple Stars Across The H-r Diagram = Eso Astrophy Symp Multiple Stars Across The H-r Diagram = Eso. Astrophy. Symp. Multiple Stressor Effects in Relation to Declining Amphibian Populations = Am Soc Test Mater Multiple Stressor Effects in Relation to Declining Amphibian Populations = Am. Soc. Test. Mater. Multiple Stressors: A Challenge for The Future = Nato Sci Peace Secur Multiple Stressors: A Challenge for The Future = Nato. Sci. Peace. Secur. Multiple Testing Procedures With Applications to Genomics = Springer Ser Stat Multiple Testing Procedures With Applications to Genomics = Springer. Ser. Stat. Multiplicity in Unity: Plant Subindividual Variation and Interactions With Animals = Interspec Interact Multiplicity in Unity: Plant Subindividual Variation and Interactions With Animals = Interspec. Interact. Multi-point Interaction With Real and Virtual Objects = Springer Trac Adv Ro Multi-point Interaction With Real and Virtual Objects = Springer. Trac. Adv. Ro. Multi-point Interaction With Real and Virtual Objects = Spr Tra Adv Robot Multi-point Interaction With Real and Virtual Objects = Spr. Tra. Adv. Robot. Multipoint Mapping and Linkage Based Upon Affected Pedigree Members = Prog Clin Biol Res Multipoint Mapping and Linkage Based Upon Affected Pedigree Members = Prog. Clin. Biol. Res. Multiprocessors and Array Processors / = Simul Series Multiprocessors and Array Processors / = Simul. Series. Multipurpose Livestock Production in A Tropical Environment ( State of Colima ) = Et S Iemvt Multipurpose Livestock Production in A Tropical Environment ( State of Colima ) = Et. S. Iemvt. Multi-relational Data Mining = Front Artif Intel Ap Multi-relational Data Mining = Front. Artif. Intel. Ap. Multiscale and Functionally Graded Materials = Aip Conf Proc Multiscale and Functionally Graded Materials = Aip. Conf. Proc. Multiscale and Multiphysics Computational Frameworks for Nano- and Bio-systems = Springer Theses-reco Multiscale and Multiphysics Computational Frameworks for Nano- and Bio-systems = Springer. Theses-reco. Multiscale Computational Methods in Chemistry and Physics = Nato Sc S Ss Iii C S Multiscale Computational Methods in Chemistry and Physics = Nato. Sc. S. Ss. Iii. C. S. Multiscale Damage Related to Environment Assisted Cracking = Fracture Mech Symp Multiscale Damage Related to Environment Assisted Cracking = Fracture. Mech. Symp. Multiscale Dissipative Mechanisms and Hierarchical Surfaces: Friction, Superhydrophobicity, and Biomimetics = Nanosci Technol Multiscale Dissipative Mechanisms and Hierarchical Surfaces: Friction, Superhydrophobicity, and Biomimetics = Nanosci. Technol. Multiscale Fatigue Crack Initiation and Propagation of Engineering Materials: Structural Integrity and Microstructural Worthiness = Solid Mech Appl Multiscale Fatigue Crack Initiation and Propagation of Engineering Materials: Structural Integrity and Microstructural Worthiness = Solid. Mech. Appl. Multiscale Finite Element Methods: Theory and Applications = Surv Tutor Appl Math Multiscale Finite Element Methods: Theory and Applications = Surv. Tutor. Appl. Math. Multiscale Kinetic Modelling of Materials = Sol St Phen Multiscale Kinetic Modelling of Materials = Sol. St. Phen. Multiscale Materials Modelling: Fundamentals and Applications = Woodhead Publ Mater Multiscale Materials Modelling: Fundamentals and Applications = Woodhead. Publ. Mater. Multiscale Methods: Averaging and Homogenization = Texts Appl Math Multiscale Methods: Averaging and Homogenization = Texts. Appl. Math. Multiscale Methods in Quantum Mechanics: Theory and Experiment = Trends Math Multiscale Methods in Quantum Mechanics: Theory and Experiment = Trends. Math. Multiscale Modeling and Simulation = Multiscale Model. Simul. Multiscale Modeling in Continuum Mechanics and Structured Deformations = Cism Cour L Multiscale Modeling in Continuum Mechanics and Structured Deformations = Cism. Cour. L. Multiscale Modeling in Epitaxial Growth = Int Ser Numer Math Multiscale Modeling in Epitaxial Growth = Int. Ser. Numer. Math. Multiscale Modeling in Epitaxial Growth = Int S Num M Multiscale Modeling in Epitaxial Growth = Int. S. Num. M. Multiscale Modeling in Solid Mechanics: Computational Approaches = Comput Exp Method St Multiscale Modeling in Solid Mechanics: Computational Approaches = Comput. Exp. Method. St. Multiscale Modeling of Developmental Systems = Curr Top Dev Biol Multiscale Modeling of Developmental Systems = Curr. Top. Dev. Biol. Multiscale Modeling & Simulation = Multiscale Model Sim Multiscale Modeling & Simulation = Multiscale Model. Sim. Multiscale Modelling of Damage and Fracture Processes in Composite Materials = Cism Cour L Multiscale Modelling of Damage and Fracture Processes in Composite Materials = Cism. Cour. L. Multiscale Modelling of Damage and Fracture Processes in Composite Materials = Cism Courses Lect Multiscale Modelling of Damage and Fracture Processes in Composite Materials = Cism. Courses. Lect. Multiscale Modelling of Materials = Mater Res Soc Symp P Multiscale Modelling of Materials = Mater. Res. Soc. Symp. P. Multiscale Modelling of Plasticity and Fracture By Means of Dislocation Mechanics = Cism Cour L Multiscale Modelling of Plasticity and Fracture By Means of Dislocation Mechanics = Cism. Cour. L. Multiscale Modelling of Plasticity and Fracture By Means of Dislocation Mechanics = Cism Courses Lect Multiscale Modelling of Plasticity and Fracture By Means of Dislocation Mechanics = Cism. Courses. Lect. Multiscale Modelling of Polymer Properties = Comput-aided Chem En Multiscale Modelling of Polymer Properties = Comput-aided. Chem. En. Multiscale, Multifunctional and Functionally Graded Materials = Mater Sci Forum Multiscale, Multifunctional and Functionally Graded Materials = Mater. Sci. Forum. Multiscale Optimization Methods and Applications = Noncon Optim Its App Multiscale Optimization Methods and Applications = Noncon. Optim. Its. App. Multiscale Optimization Methods and Applications = Nonconvex Optim Multiscale Optimization Methods and Applications = Nonconvex. Optim. Multiscale Phenomena in Biology = Aip Conf Proc Multiscale Phenomena in Biology = Aip. Conf. Proc. Multiscale Phenomena in Materials-experiments and Modeling = Mater Res Soc Symp P Multiscale Phenomena in Materials-experiments and Modeling = Mater. Res. Soc. Symp. P. Multiscale Phenomena in Materials-experiments and Modeling Related to Mechanical Behavior = Mater Res Soc Symp P Multiscale Phenomena in Materials-experiments and Modeling Related to Mechanical Behavior = Mater. Res. Soc. Symp. P. Multiscale Phenomena in Plasticity: From Experiments to Phenomenology, Modelling and Materials = Nato Adv Sci I E-app Multiscale Phenomena in Plasticity: From Experiments to Phenomenology, Modelling and Materials = Nato. Adv. Sci. I. E-app. Multiscale Problems and Methods in Numerical Simulations = Lect Notes Math Multiscale Problems and Methods in Numerical Simulations = Lect. Notes. Math. Multiscale Problems in The Life Sciences: From Microscopic to Macroscopic = Lect Notes Math Multiscale Problems in The Life Sciences: From Microscopic to Macroscopic = Lect. Notes. Math. Multiscale Processes in The Earth's Magnetosphere: From Interball to Cluster = Nato Sci Ser Ii-math Multiscale Processes in The Earth's Magnetosphere: From Interball to Cluster = Nato. Sci. Ser. Ii-math. Multiscale Processes in The Earth's Magnetosphere: From Interball to Cluster = Nato Sci Ser Ii Math Multiscale Processes in The Earth's Magnetosphere: From Interball to Cluster = Nato. Sci. Ser. Ii. Math. Multiscaling Associated With Structural and Material Integrity Under Elevated Temperature = Fracture Mech Symp Multiscaling Associated With Structural and Material Integrity Under Elevated Temperature = Fracture. Mech. Symp. Multisensor Fusion = Nato Sci Ser Ii-math Multisensor Fusion = Nato. Sci. Ser. Ii-math. Multisensor Fusion = Nato Sci Ser Ii Math Multisensor Fusion = Nato. Sci. Ser. Ii. Math. Multisensor, Multisource Informatin Fusion: Architectures, Algorithms, and Applications 2006 = Proc Spie Multisensor, Multisource Informatin Fusion: Architectures, Algorithms, and Applications 2006 = Proc. Spie. Multisensor, Multisource Informatin Fusion: Architectures, Algorithms, and Applications 2006 = P Soc Photo-opt Ins Multisensor, Multisource Informatin Fusion: Architectures, Algorithms, and Applications 2006 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2003 = Proc Spie Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2003 = Proc. Spie. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2003 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2003 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms and Applications 2005 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms and Applications 2005 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2007 = Proc Spie Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2007 = Proc. Spie. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2007 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2007 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2008 = Proc Spie Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2008 = Proc. Spie. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2008 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2008 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2010 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applications 2010 = P. Soc. Photo-opt. Ins. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applicatons 2004 = Proc Spie Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applicatons 2004 = Proc. Spie. Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applicatons 2004 = P Soc Photo-opt Ins Multisensor, Multisource Information Fusion: Architectures, Algorithms, and Applicatons 2004 = P. Soc. Photo-opt. Ins. Multiset Processing = Lect Notes Comput Sc Multiset Processing = Lect. Notes. Comput. Sc. Multis = Multis MULTIs = Multis Multisource Data Integration in Remote Sensing = Nasa Conf P Multisource Data Integration in Remote Sensing = Nasa. Conf. P. Multispecies Models Relevant to Management of Living Resources = Ices Mar Sc Multispecies Models Relevant to Management of Living Resources = Ices. Mar. Sc. Multispectral and Hyperspectral Image Acquisition and Processing = P Soc Photo-opt Ins Multispectral and Hyperspectral Image Acquisition and Processing = P. Soc. Photo-opt. Ins. Multispectral and Hyperspectral Remote Sensing Instruments and Applications Ii = Proc Spie Multispectral and Hyperspectral Remote Sensing Instruments and Applications Ii = Proc. Spie. Multispectral and Hyperspectral Remote Sensing Instruments and Applications Ii = P Soc Photo-opt Ins Multispectral and Hyperspectral Remote Sensing Instruments and Applications Ii = P. Soc. Photo-opt. Ins. Multispectral and Hyperspectral Remote Sensing Instruments and Applications = P Soc Photo-opt Ins Multispectral and Hyperspectral Remote Sensing Instruments and Applications = P. Soc. Photo-opt. Ins. Multispectral and Microwave Sensing of Forestry, Hydrology, and Natural Resources = P Soc Photo-opt Ins Multispectral and Microwave Sensing of Forestry, Hydrology, and Natural Resources = P. Soc. Photo-opt. Ins. Multispectral, Hyperspectral, and Ultraspectral Remote Sensing Technology, Techniques, and Applications Iii = P Soc Photo-opt Ins Multispectral, Hyperspectral, and Ultraspectral Remote Sensing Technology, Techniques, and Applications Iii = P. Soc. Photo-opt. Ins. Multispectral, Hyperspectral, and Ultraspectral Remote Sensing Technology, Techniques, and Applications = P Soc Photo-opt Ins Multispectral, Hyperspectral, and Ultraspectral Remote Sensing Technology, Techniques, and Applications = P. Soc. Photo-opt. Ins. Multispectral Imaging for Terrestrial Applications Ii = P Soc Photo-opt Ins Multispectral Imaging for Terrestrial Applications Ii = P. Soc. Photo-opt. Ins. Multispectral Imaging for Terrestrial Applications = P Soc Photo-opt Ins Multispectral Imaging for Terrestrial Applications = P. Soc. Photo-opt. Ins. Multispectral Satellite Image Understanding: From Land Classification to Building and Road Detection = Adv Comput Vis Patt Multispectral Satellite Image Understanding: From Land Classification to Building and Road Detection = Adv. Comput. Vis. Patt. Multistage Carcinogenesis = Princess Takamatsu S Multistage Carcinogenesis = Princess. Takamatsu. S. Multiunit Organization and Multimarket Strategy = Adv Strat M Multiunit Organization and Multimarket Strategy = Adv. Strat. M. Multivariate Analysis and Its Applications = Inst Math S Multivariate Analysis and Its Applications = Inst. Math. S. Multivariate Analysis: Future Directions = N-holland Stat Prob Multivariate Analysis: Future Directions = N-holland. Stat. Prob. Multivariate and Mixture Distribution Rasch Models: Extensions and Applications = Stat Soc Behav Sc Multivariate and Mixture Distribution Rasch Models: Extensions and Applications = Stat. Soc. Behav. Sc. Multivariate Applications Series = Multivar Appl Ser Multivariate Applications Series = Multivar. Appl. Ser. Multivariate Approximation and Interpolation = Int S Num M Multivariate Approximation and Interpolation = Int. S. Num. M. Multivariate Approximation Theory Iv = Int S Num M Multivariate Approximation Theory Iv = Int. S. Num. M. Multivariate Behavioral Research Monographs = Multivar Behav Res M Multivariate Behavioral Research Monographs = Multivar. Behav. Res. M. Multivariate Behavioral Research = Multivar Behav Res Multivariate Behavioral Research = Multivar. Behav. Res. Multivariate behavioral research = Multivariate Behav Res Multivariate Environmental Statistics = N-holland Stat Prob Multivariate Environmental Statistics = N-holland. Stat. Prob. Multivariate Experimental Clinical Research = Multivar Exp Clin R Multivariate Experimental Clinical Research = Multivar. Exp. Clin. R. Multiversal Journeys = Multiversal Journeys Multi-wafer Rotating Mems Machines = Mems Ref Shelf Multi-wafer Rotating Mems Machines = Mems Ref. Shelf. Multi-wavelength Continuum Emission of Agn = Iau Symp Multi-wavelength Continuum Emission of Agn = Iau. Symp. Multiwavelength Cosmology = Astrophys Space Sc L Multiwavelength Cosmology = Astrophys. Space. Sc. L. Multiwavelength Mapping of Galaxy Formation and Evolution = Eso Astrophy Symp Multiwavelength Mapping of Galaxy Formation and Evolution = Eso. Astrophy. Symp. Multi-wavelength Observations of Coronal Structure and Dynamics = Cospar Coll Multi-wavelength Observations of Coronal Structure and Dynamics = Cospar. Coll. Munca sanitara = Munca Sanit Munca Sanitara = Munca Sanit. Munchener medizinische Wochenschrift (1950) = Munch Med Wochenschr Munchener Medizinische Wochenschrift = Munchen Med Wochen Munchener Medizinische Wochenschrift = Munchen. Med. Wochen. Munchener Medizinische Wochenschrift = Munch. Med. Wochenschr. Münchener Studien zur Sprachwissenschaft = MSS Münchener Studien zur Sprachwissenschaft = MuenchStSprWiss Münchner Beiträge zur Vor- und Frühgeschichte = MuenchBeitrVFG Münchner Jahrbuch der bildenden Kunst = MueJb Munda Verb: Typological Perspectives = Trends Linguist-stud Munda Verb: Typological Perspectives = Trends. Linguist-stud. Mund-, Kiefer- und Gesichtschirurgie : MKG = Mund Kiefer Gesichtschir Mund-, Kiefer- und Gesichtschirurgie = Mund. Kiefer. Gesichtschir. Mund-, Kiefer- Und Gesichtschirurgie=Mund Kiefer Gesichtschir;; Mundo Medico = Mundo Med Mundus Artium = Mundus Artium Munger Africana Library notes = Munger Afr Libr Notes Munich Lectures in Economics = Munich Lect Econ Munich Lectures in Economics = Munich Lect. Econ. Municipal Waste Incineration Risk Assessment = Cont Iss Ri Municipal Waste Incineration Risk Assessment = Cont. Iss. Ri. Munnpleien = Munnpleien Münsterische Beiträge zur antiken Handelsgeschichte = MBAH Munstersche Beitrage zur Geschichte und Theorie der Medizin = Munstersche Beitr Gesch Theor Med Münzen und Medaillen = MuM Muonic Atoms and Molecules = Monte Verit Muonic Atoms and Molecules = Monte. Verit. Muonium-antimuonium Oscillations in An Extended Minimal Supersymmetric Standard Model = Springer Theses-reco Muonium-antimuonium Oscillations in An Extended Minimal Supersymmetric Standard Model = Springer. Theses-reco. Muon Science = Sussp Proc Muon Science = Sussp. Proc. Muqarnas: An Annual On The Visual Culture of The Islamic World, Vol 25 = Muqarnas Muqarnas: An Annual On The Visual Culture of The Islamic World, Vol 25 = Muqarnas. Muqarnas: An Annual On The Visual Cultures of The Islamic World, Vol 26 = Muqarnas Muqarnas: An Annual On The Visual Cultures of The Islamic World, Vol 26 = Muqarnas. Muqarnas = Muqarnas Muscle Afferents and Spinal Control of Movement = Ibro Ser Muscle Afferents and Spinal Control of Movement = Ibro. Ser. Muscle and Nerve=Muscle Nerve;; Muscle and Nerve = Muscle Nerve Muscle and Nerve. Supplement = Muscle Nerve. Suppl. Muscle biology = Muscle Biol Muscle Biology = Muscle Biol. Muscle Biophysics: From Molecules to Cells = Adv Exp Med Biol Muscle Biophysics: From Molecules to Cells = Adv. Exp. Med. Biol. Muscle Fatigue Mechanisms in Exercise and Training = Med Sport Sci Muscle Fatigue Mechanisms in Exercise and Training = Med. Sport. Sci. Muscle Gene Therapy: Methods and Protocols = Methods Mol Biol Muscle Gene Therapy: Methods and Protocols = Methods Mol. Biol. Muscle, Matrix, and Bladder Function = Adv Exp Med Biol Muscle, Matrix, and Bladder Function = Adv. Exp. Med. Biol. Muscle & nerve = Muscle Nerve Muscle & Nerve = Muscle Nerve Muscle & nerve. Supplement = Muscle Nerve Suppl Muscle Strength Types, Efficiency and Drug Effects = Muscular Syst-anat F Muscle Strength Types, Efficiency and Drug Effects = Muscular. Syst-anat. F. Muscular Dystrophy Research : From Molecular Diagnosis Toward Therapy = Int Congr Ser Muscular Dystrophy Research : From Molecular Diagnosis Toward Therapy = Int. Congr. Ser. Muscular Judaism = Routl Jew Stud Ser Muscular Judaism = Routl. Jew. Stud. Ser. Muscular System-anatomy Functions and Injuries = Muscular Syst-anat F Muscular System-anatomy Functions and Injuries = Muscular Syst-anat. F. Musculoskeletal care = Musculoskeletal Care Musculoskeletal Care = Musculoskeletal Care Musculoskeletal Medicine = Musculoskelet Med Musculoskeletal Medicine = Musculoskelet. Med. Muse. Annual of the Museum of Art and Archaeology, University of Missouri, Columbia = Muse Museen in Köln. Bulletin = MusKoeln Musees de Geneve = Mus Geneve Musei e gallerie d'Italia = MusGalIt Musei Ferraresi. Bollettino annuale = MusFerr Museo civico Pontecorvo. Quaderni = QuadMusPontecorvo Museo de Zaragoza. Boletín = BMusZaragoza Museo de Zaragoza, Boletín = BMZ Museo in rivista. Notiziario dei Musei civici di Pavia = MusRiv Museon = Museon Muses Common-weale = Ess Sev Cen Muses Common-weale = Ess. Sev. Cen. Museum Africum. West African Journal of Classical and Related Studies = MusAfr Museum. A Quarterly Review Published by UNESCO = MuseumUnesco Museum Criticum = MCr Museum criticum = MusCrit Museum Haaretz, Tel Aviv. Yearbook = MusHaaretz Museum helveticum = Mus Helv Museum Helveticum = MusHelv Museum Helveticum: revue suisse pour l'étude de l'Antiquité classique = MH Museum International = Museum Int Museum International = Museum Int. Museum Meanings = Mus Mean Museum Meanings = Mus. Mean. Museum = Museum Museum News = Museum News Museum Notes. American Numismatic Society = ANSMusNotes Museum Notes. The American Numismatic Society = MusNotAmNumSoc Museum of Fine Arts Boston Bulletin = Museum Fine Art Bos Museum of Fine Arts Boston Bulletin = Museum Fine Art. Bos. Museum Patavinum: rivista semestrale della Facoltà di Lettere e Filosofia di Padova = MusPat Museum Philologum Londiniense = MPhL Museums and Community: Ideas, Issues and Challenges = Mus Mean Museums and Community: Ideas, Issues and Challenges = Mus. Mean. Museums and Education: Purpose, Pedagogy, Performance = Mus Mean Museums and Education: Purpose, Pedagogy, Performance = Mus. Mean. Museums in A Troubled World: Renewal, Irrelevance Or Collapse? = Mus Mean Museums in A Troubled World: Renewal, Irrelevance Or Collapse? = Mus. Mean. Museums of Modern Science = Nobel Symp Museums of Modern Science = Nobel. Symp. Museum Texts: Communication Frameworks = Mus Mean Museum Texts: Communication Frameworks = Mus. Mean. Museum Tusculanum. København = MusTusc Museum Tusculanum = MT Musica Disciplina = Musica Disciplina Musicae Scientiae = Music Sci Musicae Scientiae = Music. Sci. Musica Hodie = Musica Hodie Musical Crowd in English Fiction, 1840-1910: Class, Culture and Nation = Palgrave Stud Ninet- Musical Crowd in English Fiction, 1840-1910: Class, Culture and Nation = Palgrave. Stud. Ninet-. Musical Newsletter = Music Newsl Musical Newsletter = Music. Newsl. Musical Quarterly = Music Quart Musical Quarterly = Music. Quart. Musical Times = Music Times Musical Times = Music. Times Musica = Musica Music Analysis = Music Anal Music Analysis = Music Anal. Music and The Sacred = Hist Mus C Music and The Sacred = Hist. Mus. C. Music: Composition, Interpretation and Effects = Focus Civiliz Cult Music: Composition, Interpretation and Effects = Focus. Civiliz. Cult. Music Education: An Artificial Intelligence Approach = Work Comp Music Education: An Artificial Intelligence Approach = Work. Comp. Music Education = Educ Compet Glob Wor Music Education = Educ. Compet. Glob. Wor. Music Education for Changing Times: Guiding Visions for Practice = Landsc Art Aesthet E Music Education for Changing Times: Guiding Visions for Practice = Landsc. Art. Aesthet. E. Music Education Research = Music Educ Res Music Education Research = Music Educ. Res. Music Educators Journal = Music Educ J Music Educators Journal = Music Educ. J. Musicians for The Churches: Reflections On Vocation and Formation = Yale Stud Sac Music Musicians for The Churches: Reflections On Vocation and Formation = Yale. Stud. Sac. Music. Music in Florence During The Time of Lorenzo The Magnificent = Quad Riv It Music in Florence During The Time of Lorenzo The Magnificent = Quad. Riv. It. Music-inspired Harmony Search Algorithm: Theory and Applications = Stud Comput Intell Music-inspired Harmony Search Algorithm: Theory and Applications = Stud. Comput. Intell. Music in Television: Channels of Listening = Rout Mus Screen Med Music in Television: Channels of Listening = Rout. Mus. Screen. Med. Music Journal = Music J Music Journal = Music J. Music & letters = Music Lett Music & Letters = Music Lett Music & Letters = Music Lett. Music Library Association : Technical Reports = Mla Tech R Music Library Association : Technical Reports = Mla. Tech. R. Music & Man = Music Man Music Perception = Music Percept Music Perception = Music Percept. Music Perception = Springer Handb Audit Music Perception = Springer. Handb. Audit. Music Review = Music Rev Music Review = Music Rev. Music Theory Spectrum = Music Theor Spectrum Music Theory Spectrum = Music Theor. Spectrum Music Therapy and Music in Special Education : The International State of The Art = Isme Edit Music Therapy and Music in Special Education : The International State of The Art = Isme. Edit. Musikforschung = Musikforschung Musik in Bayern = Musik Bayern Musiktheorie = Musiktheorie Musik Und Kirche = Musik Kirche Musik Und Sprachprosodie: Kindgerichtetes Singen Im Fruhen Spracherwerb = Lang Context Cogn Musik Und Sprachprosodie: Kindgerichtetes Singen Im Fruhen Spracherwerb = Lang. Context. Cogn. Musique En Jeu = Musique Jeu Muslim Brotherhood = Routl Stud Pol Islam Muslim Brotherhood = Routl. Stud. Pol. Islam. Muslim-christian Relations in Central Asia = Cent Asian Stud Ser Muslim-christian Relations in Central Asia = Cent. Asian. Stud. Ser. Muslim Diaspora = Routl Islam Stud Muslim Diaspora = Routl. Islam. Stud. Muslim Perspectives On The Sri Lankan Conflict = Pol Stud Muslim Perspectives On The Sri Lankan Conflict = Pol. Stud. Muslim Resistance in Southern Thailand and Southern Philippines: Religion, Ideology, and Politics = Pol Stud Muslim Resistance in Southern Thailand and Southern Philippines: Religion, Ideology, and Politics = Pol. Stud. Muslims in Global Politics: Identities, Interest, and Human Rights = Pa Stud Hum Rights Muslims in Global Politics: Identities, Interest, and Human Rights = Pa. Stud. Hum. Rights Muslims in Global Societies Series = Muslims Glob Soc Ser Muslims in Global Societies Series = Muslims Glob. Soc. Ser. Muslims in Prison: Challenge and Change in Britain and France = Migrat Minor Citizen Muslims in Prison: Challenge and Change in Britain and France = Migrat. Minor. Citizen. Muslims in Singapore = Routl Cont Se Asia S Muslims in Singapore = Routl. Cont. Se. Asia. S. Muslim Societies and The Challenge of Secularization: An Interdisciplinary Approach = Muslims Glob Soc Ser Muslim Societies and The Challenge of Secularization: An Interdisciplinary Approach = Muslims. Glob. Soc. Ser. Muslim Society and The Western Indian Ocean: The Seafarers of Kachchh = Routl Indian Ocean S Muslim Society and The Western Indian Ocean: The Seafarers of Kachchh = Routl. Indian Ocean. S. Muslim Women in Law and Society: Annotated Translation of Al-tahir Al-haddad's Imra'tuna Fi 'l-sharica Wa 'l-mujtamac, With An Introduction = Cult Civiliz Mid E Muslim Women in Law and Society: Annotated Translation of Al-tahir Al-haddad's Imra'tuna Fi 'l-sharica Wa 'l-mujtamac, With An Introduction = Cult. Civiliz. Mid. E. Muslim Women, Reform and Princely Patronage - Nawab Sultan Jahan Begam of Bhopal = Roy Asiat Soc Books Muslim Women, Reform and Princely Patronage - Nawab Sultan Jahan Begam of Bhopal = Roy. Asiat. Soc. Books. Muslim world (Hartford, Conn.) = Muslim World (Hartford) Muslim World = Muslim World Musp '06: Proceedings of The 9th Wseas International Conference On Multimedia Systems and Signal Processing = Ele Com Eng Musp '06: Proceedings of The 9th Wseas International Conference On Multimedia Systems and Signal Processing = Ele. Com. Eng. Musp '08: Multimedia Systems and Signal Processing = Ele Com Eng Musp '08: Multimedia Systems and Signal Processing = Ele. Com. Eng. Mussolini's Propaganda Abroad: Subversion in The Mediterranean and The Middle East, 1935-1940 = Stud Intell Mussolini's Propaganda Abroad: Subversion in The Mediterranean and The Middle East, 1935-1940 = Stud. Intell. Must '96 - Munich Meeting On Air Separation Technology = Refr Sci T Must '96 - Munich Meeting On Air Separation Technology = Refr. Sci. T. Mutagenesis=Mutagenesis;; Mutagenesis = Mutagenesis Mutagens and Carcinogens in The Diet = Prog Clin Biol Res Mutagens and Carcinogens in The Diet = Prog. Clin. Biol. Res. Mutational Analysis: A Joint Framework for Cauchy Problems in and Beyond Vector Spaces = Lect Notes Math Mutational Analysis: A Joint Framework for Cauchy Problems in and Beyond Vector Spaces = Lect. Notes. Math. Mutation and The Environment, Part A = Prog Clin Biol Res Mutation and The Environment, Part A = Prog. Clin. Biol. Res. Mutation and The Environment, Part B = Prog Clin Biol Res Mutation and The Environment, Part B = Prog. Clin. Biol. Res. Mutation and The Environment, Part C = Prog Clin Biol Res Mutation and The Environment, Part C = Prog. Clin. Biol. Res. Mutation and The Environment, Part D = Prog Clin Biol Res Mutation and The Environment, Part D = Prog. Clin. Biol. Res. Mutation and The Environment, Part E = Prog Clin Biol Res Mutation and The Environment, Part E = Prog. Clin. Biol. Res. Mutation Research-dnaging Genetic Instability and Aging = Mutat Res-dnaging G Mutation Research-dnaging Genetic Instability and Aging = Mutat. Res-dnaging. G. Mutation Research-dna Repair = Mutat Res-dna Repair Mutation Research-dna Repair = Mutat. Res-dna. Repair Mutation Research-environmental Mutagenesis and Related Subjects = Mutat Res-envir Muta Mutation Research-environmental Mutagenesis and Related Subjects = Mutat. Res-envir. Muta. Mutation Research, Fundamental and Molecular Mechanisms of Mutagenesis = Mutat. Res., Fundam. Mol. Mech. Mutagen. Mutation Research-fundamental and Molecular Mechanisms of Mutagenesis = Mutat Res-fund Mol M Mutation Research-fundamental and Molecular Mechanisms of Mutagenesis = Mutat. Res-fund. Mol. M. Mutation Research, Genetic Toxicology and Environmental Mutagenesis = Mutat. Res., Genet. Toxicol. Environ. Mutagen. Mutation Research-genetic Toxicology and Environmental Mutagenesis = Mutat Res-gen Tox En Mutation Research-genetic Toxicology and Environmental Mutagenesis = Mutat. Res-gen. Tox. En. Mutation Research-genetic Toxicology = Mutat Res-genet Tox Mutation Research-genetic Toxicology = Mutat. Res-genet. Tox. Mutation Research-genomics = Mutat Res-genomics Mutation Research-genomics = Mutat. Res-genomics. Mutation Research Letters = Mutat Res Lett Mutation Research Letters = Mutat. Res. Lett. Mutation research = Mutat Res Mutation Research=Mutat Res;; Mutation Research = Mutat Res Mutation Research = Mutat. Res. Mutation Research-reviews in Genetic Toxicology = Mutat Res-rev Genet Mutation Research-reviews in Genetic Toxicology = Mutat. Res-rev. Genet. Mutation Research-reviews in Mutation Research = Mutat Res-rev Mutat Mutation Research-reviews in Mutation Research = Mutat. Res-rev. Mutat. Mutation Research, Reviews in Mutation Research = Mutat. Res., Rev. Mutat. Res. Mutation Testing for The New Century = Kluw Int S Adv Data Mutation Testing for The New Century = Kluw. Int. S. Adv. Data. Muttersprache = Muttersprache Mutual Encounter of East and West, 1492-1992 = Renais Mon Mutual Encounter of East and West, 1492-1992 = Renais. Mon. Mutual Funds: Fifty Years of Research Findings = Innov Financ Market Mutual Funds: Fifty Years of Research Findings = Innov. Financ. Market. Mutual Perceptions of Religions in The Late Middle Ages and The Early Modern Age = Abh Akad Wiss Got Ph Mutual Perceptions of Religions in The Late Middle Ages and The Early Modern Age = Abh. Akad. Wiss. Got. Ph. Muzei i pametnici na kulturata = MuzPamKul MuzeulnaionalBucureti = MuzNa Muzikoloski Zbornik = Muzikoloski Zb Muzikoloski Zbornik = Muzikoloski Zb. Myasthenia Gravis and Related Diseases = Ann Ny Acad Sci Myasthenia Gravis and Related Diseases = Ann. Ny. Acad. Sci. Myasthenia Gravis and Related Disorders: 11th International Conference = Ann Ny Acad Sci Myasthenia Gravis and Related Disorders: 11th International Conference = Ann. Ny. Acad. Sci. Myasthenia Gravis and Related Disorders = Ann Ny Acad Sci Myasthenia Gravis and Related Disorders = Ann. Ny. Acad. Sci. Myasthenia Gravis and Related Disorders : Experimental and Clinical Aspects = Ann Ny Acad Sci Myasthenia Gravis and Related Disorders : Experimental and Clinical Aspects = Ann. Ny. Acad. Sci. Myc/max/mad Transcription Factor Network = Curr Top Microbiol Myc/max/mad Transcription Factor Network = Curr. Top. Microbiol. Mycologia Balcanica = Mycol. Balc. Mycologia Helvetica = Mycol. Helv. Mycologia = Mycologia Mycological Progress = Mycol Prog Mycological Progress = Mycol. Prog. Mycological research = Mycol Res Mycological Research = Mycol Res Mycological Research = Mycol. Res. Mycology Series = Mycol Ser Mycology Series = Mycol. Ser. Mycopathologia Et Mycologia Applicata = Mycopath Mycol Appl Mycopathologia Et Mycologia Applicata = Mycopath. Mycol. Appl. Mycopathologia et mycologia applicata = Mycopathol Mycol Appl Mycopathologia et Mycologia Applicata = Mycopathol. Mycol. Appl. Mycopathologia=Mycopathologia;; Mycopathologia = Mycopathologia Mycorrhizae and Plant Health = Aps Symp Ser Mycorrhizae and Plant Health = Aps. Symp. Ser. Mycorrhizae in Sustainable Agriculture = Asa Spec P Mycorrhizae in Sustainable Agriculture = Asa. Spec. P. Mycorrhiza = Mycorrhiza Mycorrhizas for Plantation Forestry in Asia = Aciar Proc Mycorrhizas for Plantation Forestry in Asia = Aciar. Proc. Mycoscience = Mycoscience Mycoses=Mycoses;; Mycoses = Mycoses Mycota-a Comprehensive Treatise On Fungi As Experimental Systems for Basic and Applied Research = Mycota Mycota-a Comprehensive Treatise On Fungi As Experimental Systems for Basic and Applied Research = Mycota. Mycota: Industrial Applications, Vol 10, Second Edition = Mycota Mycota: Industrial Applications, Vol 10, Second Edition = Mycota. Mycotaxon = Mycotaxon Mycota Xv: Physiology and Genetics = Mycota Mycotoxicoses in Animals Economically Important = Anim Sci Issues Prof Mycotoxicoses in Animals Economically Important = Anim. Sci. Issues. Prof. Mycotoxin Contamination in Grains = Aciar Tec R Mycotoxin Contamination in Grains = Aciar. Tec. R. Mycotoxin Prevention and Control in Agriculture = Acs Sym Ser Mycotoxin Prevention and Control in Agriculture = Acs. Sym. Ser. Mycotoxin Research = Mycotoxin Res. Mycotoxins and Food Safety = Adv Exp Med Biol Mycotoxins and Food Safety = Adv. Exp. Med. Biol. Mycotoxins and Phycotoxins 88 = Bioact Mol Mycotoxins and Phycotoxins 88 = Bioact. Mol. Mycotoxins, Endemic Nephropathy and Urinary Tract Tumours = Iarc Sci Publ Mycotoxins, Endemic Nephropathy and Urinary Tract Tumours = Iarc. Sci. Publ. Myelination and Dysmyelination = Ann Ny Acad Sci Myelination and Dysmyelination = Ann. Ny. Acad. Sci. Myelodysplastic Syndrome and Cytokines = Int Congr Ser Myelodysplastic Syndrome and Cytokines = Int. Congr. Ser. Myelodysplastic Syndromes = Int Congr Ser Myelodysplastic Syndromes = Int. Congr. Ser. Myelodysplastic Syndromes : Pathophysiology and Treatment = Int Congr Ser Myelodysplastic Syndromes : Pathophysiology and Treatment = Int. Congr. Ser. Myeloma Bone Disease = Curr Clin Oncol Myeloma Bone Disease = Curr. Clin. Oncol. Myeloma Therapy: Pursuing The Plasma Cell = Contemp Hematol Myeloma Therapy: Pursuing The Plasma Cell = Contemp. Hematol. Myeloproliferative Neoplasms- Biology and Therapy = Contemp Hematol Myeloproliferative Neoplasms- Biology and Therapy = Contemp. Hematol. Mykosen = Mycoses Mykosen = Mycoses. Mykosen = Mykosen Mykosen. Supplement = Mykosen Suppl Mykosen. Supplement = Mykosen. Suppl. Mymensingh medical journal : MMJ = Mymensingh Med J Myoblast Transfer Therapy = Adv Exp Med Biol Myoblast Transfer Therapy = Adv. Exp. Med. Biol. Myocardial Cytoprotection: A Novel Therapeutic Approach to Coronary Heart Disease = Res Clin Forums Myocardial Cytoprotection: A Novel Therapeutic Approach to Coronary Heart Disease = Res. Clin. Forums. Myocardial Ischemia and Preconditioning = Prog Exp Cardiol Myocardial Ischemia and Preconditioning = Prog. Exp. Cardiol. Myocardial Ischemia: Causes, Symptoms and Treatment = Cardiol Res Clin Dev Myocardial Ischemia: Causes, Symptoms and Treatment = Cardiol. Res. Clin. Dev. Myocardial Preservation, Preconditioning, and Adaptation = Ann Ny Acad Sci Myocardial Preservation, Preconditioning, and Adaptation = Ann. Ny. Acad. Sci. Myoclonus and Paroxysmal Dyskinesias = Adv Neurol Myoclonus and Paroxysmal Dyskinesias = Adv. Neurol. Myofascial Pain and Fibromyalgia = Adv Pain Res Ther Myofascial Pain and Fibromyalgia = Adv. Pain Res. Ther. Myopia and The Control of Eye Growth = Ciba F Symp Myopia and The Control of Eye Growth = Ciba. F. Symp. My Personal Adaptive Global Net (magnet) = Signals Commun Techn My Personal Adaptive Global Net (magnet) = Signals. Commun. Techn. Myriad Christ = Bib Eph The Myriad Christ = Bib. Eph. The. Myrmecological News = Myrmecol News Myrmecological News = Myrmecol. News Mysore Journal of Agricultural Sciences = Mysore J Agr Sci Mysore Journal of Agricultural Sciences = Mysore J. Agr. Sci. Mysteries, Puzzles, and Paradoxes in Quantum Mechanics = Aip Conf Proc Mysteries, Puzzles, and Paradoxes in Quantum Mechanics = Aip. Conf. Proc. Mystery of Personality: A History of Psychodynamic Theories = Libr Hist Psychol Th Mystery of Personality: A History of Psychodynamic Theories = Libr. Hist. Psychol. Th. Mystery of Yawning in Physiology and Disease = Front Neurol Neurosc Mystery of Yawning in Physiology and Disease = Front. Neurol. Neurosc. Mystik Und Natur: Zur Geschichte Ihres Verhaltnisses Vom Altertum Bis Zur Gegenwart = Theophr Paracel Stud Mystik Und Natur: Zur Geschichte Ihres Verhaltnisses Vom Altertum Bis Zur Gegenwart = Theophr. Paracel. Stud. Myth and Geology = Geol Soc Spec Publ Myth and Geology = Geol. Soc. Spec. Publ. Mythlore = Mythlore Myth, Matriarchy and Modernity = Interd Germ Cult Myth, Matriarchy and Modernity = Interd. Germ. Cult. Myth = New Crit Idiom Myth = New. Crit. Idiom. Myth of Germanic Kingship = Reallexikon Ger Alte Myth of Germanic Kingship = Reallexikon. Ger. Alte. Myth of Ham in Nineteenth-century American Christianity = Black Relig Woman Th Myth of Ham in Nineteenth-century American Christianity = Black. Relig. Woman. Th. Mythological State and Its Empire = Routl Stud Soc Polit Mythological State and Its Empire = Routl. Stud. Soc. Polit. Myth, Protest and Struggle in Okinawa = Sheff Cent Jpn Stud Myth, Protest and Struggle in Okinawa = Sheff. Cent. Jpn. Stud. Myths and Science of Soils of The Tropics = Sssa Spec Publ Myths and Science of Soils of The Tropics = Sssa. Spec. Publ. Myths, Historical Archetypes and Symbolic Figures in Arabic Literature = Beiruter Text Stud Myths, Historical Archetypes and Symbolic Figures in Arabic Literature = Beiruter. Text. Stud. Myths of Europe = Int For Lit Myths of Europe = Int. For. Lit. Myths of Renaissance Individualism = Early Mod Hist-soc C Myths of Renaissance Individualism = Early. Mod. Hist-soc. C. N-3 Fats: Nutritional Needs, Traditional and Novel Sources and Microbial Production Strategies = Nutr Diet Res Prog N-3 Fats: Nutritional Needs, Traditional and Novel Sources and Microbial Production Strategies = Nutr. Diet. Res. Prog. N-3 Fatty Acids and Vascular Disease = Curr Top Cardiov Dis N-3 Fatty Acids and Vascular Disease = Curr. Top. Cardiov. Dis. NAACOG newsletter = NAACOG Newsl NAACOG Newsletter = NAACOG Newsl. NAACOG's clinical issues in perinatal and women's health nursing = NAACOGS Clin Issu Perinat Womens Health Nurs NAACOG's Clinical Issues in Perinatal and Women's Health Nursing = NAACOGs Clin. Issu. Perinat. Womens Health Nurs. NAACOG technical bulletin = NAACOG Tech Bull NAACOG Technical Bulletin = NAACOG Tech. Bull. Nabc Report = Nabc Rep Nabc Report = Nabc Rep. Nabe Review of Research and Practice = Nabe Rev Res Pract Nabe Review of Research and Practice = Nabe Rev. Res. Pract. NABER report = NABER Rep NACDL journal = NACDL J NACDL Journal = NACDL J. N-acetylaspartate: A Unique Neuronal Molecule in The Central Nervous System = Adv Exp Med Biol N-acetylaspartate: A Unique Neuronal Molecule in The Central Nervous System = Adv. Exp. Med. Biol. Nachlese: Kleine Schriften 2 = Beitr Altertumskunde Nachlese: Kleine Schriften 2 = Beitr. Altertumskunde. Nachrichten aus Chemie Technik und Laboratorium = Nachr. Chem. Tech. Lab. Nachrichten Aus Chemie Technik Und Laboratorium = Nachr Chem Tech Lab Nachrichten Aus Chemie Technik Und Laboratorium = Nachr. Chem. Tech. Lab. Nachrichten aus dem Institut fur Geschichte der Naturwissenschaften Hamburg = Nachr Inst Gesch Naturwiss Hamburg Nachrichten aus der Chemie = Nachr. Chem. Nachrichten Aus Der Chemie = Nachr Chem Nachrichten Aus Der Chemie = Nachr. Chem. Nachrichtenblatt Arbeitskreis Unterwasserarchäologie = NachrArbUWA Nachrichtenblatt des Deutschen Pflanzenschutzdienstes = Nachr.bl. Dtsch. Pflanzenschutzd. Nachrichtenblatt. Deutsche Gesellschaft fur Geschichte der Medizin, der Naturwissenschaften und der Technik = Nachrichtenbl Dtsch Ges Gesch Med Naturwiss Tech Nachrichten der Akademie der Wissenschaften in Göttingen = Nachr. Akad. Wiss. Göttingen Math.-Phys. Kl. II Nachrichten der Akademie der Wissenschaften in Göttingen, Philol.- Hist. Klasse = NAWG Nachrichten der Akademie der Wissenschaften in Göttingen. Philologisch-Historische Klasse = NAWG Nachrichten Fur Dokumentation = Nachr Dok Nachrichten Fur Dokumentation = Nachr. Dok. Nachrichtentechnische Zeitschrift = Nachrichtentech Z Nachrichtentechnische Zeitschrift = Nachrichtentech. Z. Nachrichten von der Akademie der Wissenschaften in Gottingen. Philologisch-Historische Klasse = Nachr Akad Wiss Gott Philol Hist Kl Nachrichten von der Gesellschaft der Wissenschaften zu Göttingen. Philologisch-Historische Klasse = NGWG Nachte Der Aufklarung: Studien Zur Asthetik, Ethik Und Erkenntnistheorie in Voyage Au Bout De La Nuit Von Louis-ferdinand Celine Und Die Schlafwandler Von Hermann Broch = Communicatio Nachte Der Aufklarung: Studien Zur Asthetik, Ethik Und Erkenntnistheorie in Voyage Au Bout De La Nuit Von Louis-ferdinand Celine Und Die Schlafwandler Von Hermann Broch = Communicatio. Nachtrichtenblatt des Deutschen Pflanzenschutzdienstes = Nachrichtenbl. Dtsch. Pflanzenschutzdienst Naciones Intelectuales: Las Fundaciones De La Modernidad Literaria Mexicana (1917-1959) = Purdue Stud Roman Li Naciones Intelectuales: Las Fundaciones De La Modernidad Literaria Mexicana (1917-1959) = Purdue. Stud. Roman. Li. NACTA Journal = NACTA J. NACUBO business officer : magazine of the National Association of College and University Business Officers. National Association of College and University Business Officers = NACUBO Bus Off NADA (Salisbury, Zimbabwe) = NADA NADC-MA-. United States. Naval Air Development Center, Johnsville, Pa. Aviation Medical Acceleration Laboratory = NADC MA United States Nav Air Dev Cen Johnsville Pa Aviat Med Accel Lab NADC-MR [reports]. United States. Naval Air Development Center, Johnsville, Pa. Aerospace Medical Research Dept = NADC-MR Rep NADL journal = NADL J NADL Journal = NADL J. Nagasaki Symposium On Chernobyl: Update and Future = Int Congr Ser Nagasaki Symposium On Chernobyl: Update and Future = Int. Congr. Ser. Nagasaki Symposium - Radiation and Human Health: Proposal From Nagasaki = Int Congr Ser Nagasaki Symposium - Radiation and Human Health: Proposal From Nagasaki = Int. Congr. Ser. Nagoya journal of medical science = Nagoya J Med Sci Nagoya Journal of Medical Science=Nagoya J Med Sci;; Nagoya Journal of Medical Science = Nagoya J. Med. Sci. Nagoya Mathematical Journal = Nagoya Math. J. Nagoya Mathematical Journal = Nagoya Math J Nagoya Mathematical Journal = Nagoya Math. J. Nagoya medical journal = Nagoya Med J Nagoya Medical Journal = Nagoya Med. J. NAHAM access management journal = NAHAM Access Manag J NAHAM Management Journal = NAHAM Manage. J. Nahm Transform for Integrable Connections On The Riemann Sphere = Mem Soc Math Fr Nahm Transform for Integrable Connections On The Riemann Sphere = Mem. Soc. Math. Fr. Nahrung-food = Nahrung Nahrung-food = Nahrung. Nahrung=Nahrung;; Nahrung = Nahrung Naika hokan. Japanese archives of internal medicine = Naika Hokan Naika Hokan (Japanese Archives of Internal Medicine) = Naika Hokan Naika. Internal medicine = Naika Naika (Internal Medicine) = Naika Nakadori Byoin iho. Nakadori Hospital medical bulletin] = Nakadori Byoin Iho Na/k-atpase and Related Atpases = Int Congr Ser Na/k-atpase and Related Atpases = Int. Congr. Ser. Na,k-atpase and Related Cation Pumps = Ann Ny Acad Sci Na,k-atpase and Related Cation Pumps = Ann. Ny. Acad. Sci. Na/k-atpase and Related Transport Atpases = Ann Ny Acad Sci Na/k-atpase and Related Transport Atpases = Ann. Ny. Acad. Sci. Names-a Journal of Onomastics = Names Names-a Journal of Onomastics = Names. Naming Theatre: Demonstrative Diagnosis in Performance = Perform Interv Naming Theatre: Demonstrative Diagnosis in Performance = Perform. Interv. Nammco Scientific Publications = Nammco Sci Publ Nammco Scientific Publications = Nammco Sci. Publ. Nancy Cartwright's Philosophy of Science = Rout Stu Philos Sci Nancy Cartwright's Philosophy of Science = Rout. Stu. Philos. Sci. N and HC Perspectives on Community = N HC Perspect. Community Nan Fang Yi Ke Da Xue Xue Bao (Journal of Southern Medical University) = Nan Fang Yi Ke Da Xue Xue Bao Nanjing Daxue Xuebao = Nanjing Daxue Xuebao Shuxue Bannian Kan Nanjing Daxue Xuebao = Nanjing Daxue Xuebao Ziran Kexue Ban Nanjing shi da xue bao. Zi ran ke xue ban = Nanjing shida xuebao|Nanjing Shi Da Xue Bao Nan kai da xue xue bao. Zi ran ke xue ban = Acta scientiarum naturalium Universitatis Nankaiensis|Nan Kai Da Xue Xue Bao Zi Ran Ke Xue Ban Nankai Tracts in Mathematics = Nankai Tracts Math Nankai Tracts in Mathematics = Nankai Tracts Math. Nannofossils and Their Applications = Br Micropal Nannofossils and Their Applications = Br. Micropal. Nano 2008: 2nd National Conference On Nanotechnology = J Phys Conf Ser Nano 2008: 2nd National Conference On Nanotechnology = J. Phys. Conf. Ser. Nano-and Microelectromechanical Systems (nems and Mems) and Molecular Machines = Mater Res Soc Symp P Nano-and Microelectromechanical Systems (nems and Mems) and Molecular Machines = Mater. Res. Soc. Symp. P. Nano- and Micromaterials = Adv Mater Res-ger Nano- and Micromaterials = Adv. Mater. Res-ger. Nano-and Micro-optics for Information Systems = Proc Spie Nano-and Micro-optics for Information Systems = Proc. Spie. Nano-and Micro-optics for Information Systems = P Soc Photo-opt Ins Nano-and Micro-optics for Information Systems = P. Soc. Photo-opt. Ins. Nano- and Microscience Engineering Technology and Medicine Series = Nano Microsci Eng Te Nano- and Microscience Engineering Technology and Medicine Series = Nano. Microsci. Eng. Te. Nano- and Microtechnology: Materials, Processes, Packaging, and Systems = Proc Spie Nano- and Microtechnology: Materials, Processes, Packaging, and Systems = Proc. Spie. Nano- and Microtechnology: Materials, Processes, Packaging, and Systems = P Soc Photo-opt Ins Nano- and Microtechnology: Materials, Processes, Packaging, and Systems = P. Soc. Photo-opt. Ins. Nanobioelectronics - for Electronics, Biology, and Medicine = Nanostruct Sci Techn Nanobioelectronics - for Electronics, Biology, and Medicine = Nanostruct. Sci. Techn. Nanobiology = Nanobiology Nanobiophotonics and Biomedical Applications Iii = P Soc Photo-opt Ins Nanobiophotonics and Biomedical Applications Iii = P. Soc. Photo-opt. Ins. Nanobiophotonics and Biomedical Applications Ii = Proc Spie Nanobiophotonics and Biomedical Applications Ii = Proc. Spie. Nanobiophotonics and Biomedical Applications Ii = P Soc Photo-opt Ins Nanobiophotonics and Biomedical Applications Ii = P. Soc. Photo-opt. Ins. Nanobiophotonics and Biomedical Applications = P Soc Photo-opt Ins Nanobiophotonics and Biomedical Applications = P. Soc. Photo-opt. Ins. Nanobiosensing: Principles, Development and Application = Biol Med Phys Biomed Nanobiosensing: Principles, Development and Application = Biol. Med. Phys. Biomed. Nanobiosystems: Processing, Characterization, and Applications Iii = Proc Spie Nanobiosystems: Processing, Characterization, and Applications Iii = Proc. Spie. Nanobiosystems: Processing, Characterization, and Applications Iii = P Soc Photo-opt Ins Nanobiosystems: Processing, Characterization, and Applications Iii = P. Soc. Photo-opt. Ins. Nanobiosystems: Processing, Characterization, and Applications Ii = P Soc Photo-opt Ins Nanobiosystems: Processing, Characterization, and Applications Ii = P. Soc. Photo-opt. Ins. Nanobiosystems: Processing, Characterization, and Applications = Proc Spie Nanobiosystems: Processing, Characterization, and Applications = Proc. Spie. Nanobiosystems: Processing, Characterization, and Applications = P Soc Photo-opt Ins Nanobiosystems: Processing, Characterization, and Applications = P. Soc. Photo-opt. Ins. NanoBiotechnology = NanoBiotechnology Nanobiotronics = P Soc Photo-opt Ins Nanobiotronics = P. Soc. Photo-opt. Ins. Nanocasting: A Versatile Strategy for Creating Nanostructured Porous Materials = Rsc Nanosci Nanotech Nanocasting: A Versatile Strategy for Creating Nanostructured Porous Materials = Rsc. Nanosci. Nanotech. Nanocatalysis = Nanosci Technol Nanocatalysis = Nanosci. Technol. Nanocharacterisation = Rsc Nanosci Nanotech Nanocharacterisation = Rsc. Nanosci. Nanotech. Nanocoatings = Proc Spie Nanocoatings = Proc. Spie. Nanocoatings = P Soc Photo-opt Ins Nanocoatings = P. Soc. Photo-opt. Ins. Nanocoatings: Size Effect in Nanostructured Films = Eng Mater Nanocoatings: Size Effect in Nanostructured Films = Eng. Mater. Nanocomposite Coatings and Nanocomposite Materials = Mater Sci Found Nanocomposite Coatings and Nanocomposite Materials = Mater. Sci. Found. Nanocomposite Materials = Solid State Phenomen Nanocomposite Materials = Solid. State. Phenomen. Nanocomposite Materials = Sol St Phen Nanocomposite Materials = Sol. St. Phen. Nanocomposites and Nanoporous Materials = Sol St Phen Nanocomposites and Nanoporous Materials = Sol. St. Phen. Nanocomposites and Nanoporous Materials Viii = Solid State Phenomen Nanocomposites and Nanoporous Materials Viii = Solid. State. Phenomen. Nanocomposites and Nanoporous Materials Viii = Sol St Phen Nanocomposites and Nanoporous Materials Viii = Sol. St. Phen. Nanocomposites: Ionic Conducting Materials and Structural Spectroscopies = Electron Mater Sci T Nanocomposites: Ionic Conducting Materials and Structural Spectroscopies = Electron. Mater. Sci. T. Nano-crystalline and Thin Film Magnetic Oxides = Nato Asi 3 High Tech Nano-crystalline and Thin Film Magnetic Oxides = Nato. Asi. 3. High. Tech. Nanocrystals and Organic and Hybrid Nanomaterials = P Soc Photo-opt Ins Nanocrystals and Organic and Hybrid Nanomaterials = P. Soc. Photo-opt. Ins. Nanodesign, Technology, and Computer Simulations = P Soc Photo-opt Ins Nanodesign, Technology, and Computer Simulations = P. Soc. Photo-opt. Ins. Nanoelectrodynamics: Electrons and Electromagnetic Fields in Nanometer-scale Structure = Nanosci Technol Nanoelectrodynamics: Electrons and Electromagnetic Fields in Nanometer-scale Structure = Nanosci. Technol. Nanoengineered Assemblies and Advanced Micro/nanosystems = Mater Res Soc Symp P Nanoengineered Assemblies and Advanced Micro/nanosystems = Mater. Res. Soc. Symp. P. Nanoengineered Nanofibrous Materials = Nato Sci Ser Ii-math Nanoengineered Nanofibrous Materials = Nato. Sci. Ser. Ii-math. Nanoengineered Nanofibrous Materials = Nato Sci Ser Ii Math Nanoengineered Nanofibrous Materials = Nato. Sci. Ser. Ii. Math. Nanoengineering: Fabrication, Properties, Optics, and Devices Iii = P Soc Photo-opt Ins Nanoengineering: Fabrication, Properties, Optics, and Devices Iii = P. Soc. Photo-opt. Ins. Nanoengineering: Fabrication, Properties, Optics, and Devices Iv = Proc Spie Nanoengineering: Fabrication, Properties, Optics, and Devices Iv = Proc. Spie. Nanoengineering: Fabrication, Properties, Optics, and Devices Iv = P Soc Photo-opt Ins Nanoengineering: Fabrication, Properties, Optics, and Devices Iv = P. Soc. Photo-opt. Ins. Nanoengineering: Fabrication, Properties, Optics, and Devices = Proc Spie Nanoengineering: Fabrication, Properties, Optics, and Devices = Proc. Spie. Nanoengineering: Fabrication, Properties, Optics, and Devices = P Soc Photo-opt Ins Nanoengineering: Fabrication, Properties, Optics, and Devices = P. Soc. Photo-opt. Ins. Nanoengineering: Fabrication, Properties, Optics, and Devices Vii = Proc Spie Nanoengineering: Fabrication, Properties, Optics, and Devices Vii = Proc. Spie. Nanoengineering: Fabrication, Properties, Optics, and Devices Vii = P Soc Photo-opt Ins Nanoengineering: Fabrication, Properties, Optics, and Devices Vii = P. Soc. Photo-opt. Ins. Nanoengineering: Fabrication, Properties, Optics, and Devices V = Proc Spie Nanoengineering: Fabrication, Properties, Optics, and Devices V = Proc. Spie. Nanoengineering: Fabrication, Properties, Optics, and Devices V = P Soc Photo-opt Ins Nanoengineering: Fabrication, Properties, Optics, and Devices V = P. Soc. Photo-opt. Ins. Nanoepitaxy: Homo- and Heterogeneous Synthesis, Characterization, and Device Integration of Nanomaterials Ii = P Soc Photo-opt Ins Nanoepitaxy: Homo- and Heterogeneous Synthesis, Characterization, and Device Integration of Nanomaterials Ii = P. Soc. Photo-opt. Ins. Nanofabrication Technologies and Device Integration = P Soc Photo-opt Ins Nanofabrication Technologies and Device Integration = P. Soc. Photo-opt. Ins. Nanofabrication: Technologies, Devices and Applications = Proc Spie Nanofabrication: Technologies, Devices and Applications = Proc. Spie. Nanofabrication: Technologies, Devices and Applications = P Soc Photo-opt Ins Nanofabrication: Technologies, Devices and Applications = P. Soc. Photo-opt. Ins. Nanofabrication Technologies = P Soc Photo-opt Ins Nanofabrication Technologies = P. Soc. Photo-opt. Ins. Nanofair 2003: New Ideas for Industry = Vdi Bericht Nanofair 2003: New Ideas for Industry = Vdi. Bericht. Nanofair 2004 New Ideas for Industry = Vdi Bericht Nanofair 2004 New Ideas for Industry = Vdi. Bericht. Nanofair 2005: New Ideas for Industry = Vdi Bericht Nanofair 2005: New Ideas for Industry = Vdi. Bericht. Nanofair 2006 New Ideas for Industry = Vdi Bericht Nanofair 2006 New Ideas for Industry = Vdi. Bericht. Nanofair 2008: New Ideas for Industry = Vdi Bericht Nanofair 2008: New Ideas for Industry = Vdi. Bericht. Nanofluidics: Nanoscience and Nanotechnology = Rsc Nanosci Nanotech Nanofluidics: Nanoscience and Nanotechnology = Rsc. Nanosci. Nanotech. Nanohybridization of Organic-inorganic Materials = Adv Mater Res-ger Nanohybridization of Organic-inorganic Materials = Adv. Mater. Res-ger. Nano letters = Nano Lett Nano Letters = Nano Lett Nano Letters = Nano Lett. Nanolithography: A Borderland Between Stm, Eb, Ib, and X-ray Lithographies = Nato Adv Sci Inst Se Nanolithography: A Borderland Between Stm, Eb, Ib, and X-ray Lithographies = Nato. Adv. Sci. Inst. Se. Nanomagnetism = Nato Adv Sci Inst Se Nanomagnetism = Nato. Adv. Sci. Inst. Se. Nanomanipulation With Light Ii = Proc Spie Nanomanipulation With Light Ii = Proc. Spie. Nanomanipulation With Light Ii = P Soc Photo-opt Ins Nanomanipulation With Light Ii = P. Soc. Photo-opt. Ins. Nanomanipulation With Light = Proc Spie Nanomanipulation With Light = Proc. Spie. Nanomanipulation With Light = P Soc Photo-opt Ins Nanomanipulation With Light = P. Soc. Photo-opt. Ins. Nanomaterials and Devices: Processing and Applications = Adv Mat Res Nanomaterials and Devices: Processing and Applications = Adv. Mat. Res. Nanomaterials and Plastic Deformation = Mater Sci Forum Nanomaterials and Plastic Deformation = Mater. Sci. Forum. Nanomaterials and Their Optical Applications = P Soc Photo-opt Ins Nanomaterials and Their Optical Applications = P. Soc. Photo-opt. Ins. Nanomaterials By Severe Plastic Deformation Iv, Pts 1 and 2 = Mater Sci Forum Nanomaterials By Severe Plastic Deformation Iv, Pts 1 and 2 = Mater. Sci. Forum. Nanomaterials By Severe Plastic Deformation = Mater Sci Forum Nanomaterials By Severe Plastic Deformation = Mater. Sci. Forum. Nanomaterials for Applications in Medicine and Biology = Nato Science Peace S Nanomaterials for Applications in Medicine and Biology = Nato. Science. Peace. S. Nanomaterials for Applications in Medicine and Biology = Nato Sci Peace Sec B Nanomaterials for Applications in Medicine and Biology = Nato. Sci. Peace. Sec. B. Nanomaterials for Solid State Hydrogen Storage = Fuel Cell Hydro Ener Nanomaterials for Solid State Hydrogen Storage = Fuel. Cell. Hydro. Ener. Nanomaterials for Structural Applications = Mater Res Soc Symp P Nanomaterials for Structural Applications = Mater. Res. Soc. Symp. P. Nanomaterials: Properties, Preparation and Processes = Nanotechnol Sci Tech Nanomaterials: Properties, Preparation and Processes = Nanotechnol. Sci. Tech. Nanomaterials: Risks and Benefits = Nato Sci Peace Secur Nanomaterials: Risks and Benefits = Nato. Sci. Peace. Secur. Nanomaterials Synthesis, Interfacing, and Integrating in Devices, Circuits, and Systems Ii = Proc Spie Nanomaterials Synthesis, Interfacing, and Integrating in Devices, Circuits, and Systems Ii = Proc. Spie. Nanomaterials Synthesis, Interfacing, and Integrating in Devices, Circuits, and Systems Ii = P Soc Photo-opt Ins Nanomaterials Synthesis, Interfacing, and Integrating in Devices, Circuits, and Systems Ii = P. Soc. Photo-opt. Ins. Nanomaterial Synthesis and Integration for Sensors, Electronics, Photonics, and Electro-optics = P Soc Photo-opt Ins Nanomaterial Synthesis and Integration for Sensors, Electronics, Photonics, and Electro-optics = P. Soc. Photo-opt. Ins. Nanomedicine Design of Particles, Sensors, Motors, Implants, Robots, and Devices = Eng Med Biol Nanomedicine Design of Particles, Sensors, Motors, Implants, Robots, and Devices = Eng. Med. Biol. Nanomedicine (London, England) = Nanomed Nanomedicine = Nanomedicine Nanomedicine = Nanomedicine-uk Nanomedicine = Nanomedicine-uk. Nanomedicine : nanotechnology, biology, and medicine = Nanomedicine Nanomedicine-nanotechnology Biology and Medicine = Nanomed-nanotechnol Nanomedicine-nanotechnology Biology and Medicine = Nanomed-nanotechnol. Nanomedicine: Nanotechnology, Biology and Medicine = Nanomed. Nanotechnol. Biol. Med. Nanomedicine (New York, NY, United States) = Nanomedicine (N. Y., NY, U. S.) Nanometer Cmos Rfics for Mobile Tv Applications = Analog Circ Sig Proc Nanometer Cmos Rfics for Mobile Tv Applications = Analog. Circ. Sig. Proc. Nanometer Scale Science and Technology = P Int Sch Phys Nanometer Scale Science and Technology = P. Int. Sch. Phys. Nano/micro Biotechnology = Adv Biochem Eng Biot Nano/micro Biotechnology = Adv. Biochem. Eng. Biot. Nanomodeling Ii = Proc Spie Nanomodeling Ii = Proc. Spie. Nanomodeling Ii = P Soc Photo-opt Ins Nanomodeling Ii = P. Soc. Photo-opt. Ins. Nanomodeling = P Soc Photo-opt Ins Nanomodeling = P. Soc. Photo-opt. Ins. Nano = Nano NANO = NANO Nanonetwork Materials: Fullerenes, Nanotubes and Related Systems = Aip Conf Proc Nanonetwork Materials: Fullerenes, Nanotubes and Related Systems = Aip. Conf. Proc. Nanoneuroscience and Nanoneuropharmacology = Prog Brain Res Nanoneuroscience and Nanoneuropharmacology = Prog. Brain. Res. Nanoneuroscience: Structural and Functional Roles of The Neuronal Cytoskeleton in Health and Disease = Biol Med Phys Biomed Nanoneuroscience: Structural and Functional Roles of The Neuronal Cytoskeleton in Health and Disease = Biol. Med. Phys. Biomed. Nano-optics and Nanophotonics = Nanopt Nanophoto Nano-optics and Nanophotonics = Nanopt. Nanophoto. Nano-optics and Nano-structures = Proc Spie Nano-optics and Nano-structures = Proc. Spie. Nano-optics and Nano-structures = P Soc Photo-opt Ins Nano-optics and Nano-structures = P. Soc. Photo-opt. Ins. Nano-optics and Near-field Optical Microscopy = Art Hse Nano Sci Eng Nano-optics and Near-field Optical Microscopy = Art. Hse. Nano. Sci. Eng. Nanoparticles and Nanodevices in Biological Applications = Lect Nts Nnscl Sci Nanoparticles and Nanodevices in Biological Applications = Lect. Nts. Nnscl. Sci. Nanoparticles and Nanostructured Surfaces: Novel Reporters With Biological Applications = Proc Spie Nanoparticles and Nanostructured Surfaces: Novel Reporters With Biological Applications = Proc. Spie. Nanoparticles and Nanostructured Surfaces: Novel Reporters With Biological Applications = P Soc Photo-opt Ins Nanoparticles and Nanostructured Surfaces: Novel Reporters With Biological Applications = P. Soc. Photo-opt. Ins. Nanoparticles and Nanowire Building Blocks-synthesis, Processing, Characterization and Theory = Mater Res Soc Symp P Nanoparticles and Nanowire Building Blocks-synthesis, Processing, Characterization and Theory = Mater. Res. Soc. Symp. P. Nanoparticles and The Environment = Rev Mineral Geochem Nanoparticles and The Environment = Rev. Mineral. Geochem. Nanoparticles in Biomedical Imaging: Emerging Technologies and Applications = Fund Biomed Technol Nanoparticles in Biomedical Imaging: Emerging Technologies and Applications = Fund. Biomed. Technol. Nanoparticles in Solids and Solutions = Nato Asi 3 High Tech Nanoparticles in Solids and Solutions = Nato. Asi. 3. High. Tech. Nanoparticles: Properties, Classification, Characterization, and Fabrication = Nanotechnol Sci Tech Nanoparticles: Properties, Classification, Characterization, and Fabrication = Nanotechnol. Sci. Tech. Nanoparticulate Materials = Mater Res Soc Symp P Nanoparticulate Materials = Mater. Res. Soc. Symp. P. Nanopatterning-from Ultralarge-scale Intergration to Biotechnology = Mater Res Soc Symp P Nanopatterning-from Ultralarge-scale Intergration to Biotechnology = Mater. Res. Soc. Symp. P. Nanophase and Nanocomposite Materials Iii = Mater Res Soc Symp P Nanophase and Nanocomposite Materials Iii = Mater. Res. Soc. Symp. P. Nanophase and Nanocomposite Materials Ii = Mater Res Soc Symp P Nanophase and Nanocomposite Materials Ii = Mater. Res. Soc. Symp. P. Nanophase and Nanocomposite Materials Iv = Mater Res Soc Symp P Nanophase and Nanocomposite Materials Iv = Mater. Res. Soc. Symp. P. Nanophase and Nanocomposite Materials = Mat Res S C Nanophase and Nanocomposite Materials = Mat. Res. S. C. Nanophase Materials = Mater Sci Forum Nanophase Materials = Mater. Sci. Forum. Nanophase Materials: Synthesis - Properties - Applications = Nato Adv Sci Inst Se Nanophase Materials: Synthesis - Properties - Applications = Nato. Adv. Sci. Inst. Se. Nanophenomena At Surfaces: Fundamentals of Exotic Condensed Matter Properties = Springer Ser Surf Sc Nanophenomena At Surfaces: Fundamentals of Exotic Condensed Matter Properties = Springer. Ser. Surf. Sc. Nanophotonic Materials Iii = P Soc Photo-opt Ins Nanophotonic Materials Iii = P. Soc. Photo-opt. Ins. Nanophotonic Materials Iv = P Soc Photo-opt Ins Nanophotonic Materials Iv = P. Soc. Photo-opt. Ins. Nanophotonic Materials = P Soc Photo-opt Ins Nanophotonic Materials = P. Soc. Photo-opt. Ins. Nanophotonic Materials Vii = P Soc Photo-opt Ins Nanophotonic Materials Vii = P. Soc. Photo-opt. Ins. Nanophotonic Materials V = Proc Spie Nanophotonic Materials V = Proc. Spie. Nanophotonic Materials V = P Soc Photo-opt Ins Nanophotonic Materials V = P. Soc. Photo-opt. Ins. Nanophotonics and Macrophotonics for Space Environments Ii = P Soc Photo-opt Ins Nanophotonics and Macrophotonics for Space Environments Ii = P. Soc. Photo-opt. Ins. Nanophotonics and Macrophotonics for Space Environments Iv = P Soc Photo-opt Ins Nanophotonics and Macrophotonics for Space Environments Iv = P. Soc. Photo-opt. Ins. Nanophotonics and Macrophotonics for Space Environments = P Soc Photo-opt Ins Nanophotonics and Macrophotonics for Space Environments = P. Soc. Photo-opt. Ins. Nanophotonics for Communication: Materials and Devices = Proc Spie Nanophotonics for Communication: Materials and Devices = Proc. Spie. Nanophotonics for Communication: Materials and Devices = P Soc Photo-opt Ins Nanophotonics for Communication: Materials and Devices = P. Soc. Photo-opt. Ins. Nanophotonics for Communication: Materials, Devices, and Systems Iii = P Soc Photo-opt Ins Nanophotonics for Communication: Materials, Devices, and Systems Iii = P. Soc. Photo-opt. Ins. Nanophotonics for Communication: Materials, Devices, and Systems Iv = P Soc Photo-opt Ins Nanophotonics for Communication: Materials, Devices, and Systems Iv = P. Soc. Photo-opt. Ins. Nanophotonics Iii = Proc Spie Nanophotonics Iii = Proc. Spie. Nanophotonics Iii = P Soc Photo-opt Ins Nanophotonics Iii = P. Soc. Photo-opt. Ins. Nanophotonics Ii = Proc Spie Nanophotonics Ii = Proc. Spie. Nanophotonics Ii = P Soc Photo-opt Ins Nanophotonics Ii = P. Soc. Photo-opt. Ins. Nanophotonics: Integrating Photochemistry, Optics and Nano/bio Materials Studies = Handai Nanophoton Nanophotonics: Integrating Photochemistry, Optics and Nano/bio Materials Studies = Handai. Nanophoton. Nanophotonics, Nanostructure, and Nanometrology Ii = P Soc Photo-opt Ins Nanophotonics, Nanostructure, and Nanometrology Ii = P. Soc. Photo-opt. Ins. Nanophotonics, Nanostructure, and Nanometrology = P Soc Photo-opt Ins Nanophotonics, Nanostructure, and Nanometrology = P. Soc. Photo-opt. Ins. Nanophotonics = Proc Spie Nanophotonics = Proc. Spie. Nanophotonics = P Soc Photo-opt Ins Nanophotonics = P. Soc. Photo-opt. Ins. Nanophysics: Coherence and Transport = Les Houch S Nanophysics: Coherence and Transport = Les. Houch. S. Nanoporous Materials Iii = Stud Surf Sci Catal Nanoporous Materials Iii = Stud. Surf. Sci. Catal. Nanoporous Materials Iv = Stud Surf Sci Catal Nanoporous Materials Iv = Stud. Surf. Sci. Catal. Nanoporous Materials: Types, Properties and Uses = Nanotechnol Sci Tech Nanoporous Materials: Types, Properties and Uses = Nanotechnol. Sci. Tech. Nanopowders and Nanocoatings: Production, Properties and Applications = Nanotechnol Sci Tech Nanopowders and Nanocoatings: Production, Properties and Applications = Nanotechnol. Sci. Tech. Nano Research = Nano Res Nano Research = Nano Res. Nanoscale and Microscale Thermophysical Engineering = Nanoscale Microscale Thermophys. Eng. Nanoscale and Microscale Thermophysical Engineering = Nanosc Microsc Therm Nanoscale and Microscale Thermophysical Engineering = Nanosc. Microsc. Therm. Nanoscale Biocatalysis: Methods and Protocols = Methods Mol Biol Nanoscale Biocatalysis: Methods and Protocols = Methods Mol. Biol. Nanoscale Devices: Fabrication, Functionalization, and Accessibility From The Macroscopic World = Nanosci Technol Nanoscale Devices: Fabrication, Functionalization, and Accessibility From The Macroscopic World = Nanosci. Technol. Nanoscale Devices: Fabrication, Functionalization, and Accessiblility From The Macroscopic World = Nanosci Technol Nanoscale Devices: Fabrication, Functionalization, and Accessiblility From The Macroscopic World = Nanosci. Technol. Nanoscale Devices - Fundamentals and Applications = Nato Sci Ser Ii-math Nanoscale Devices - Fundamentals and Applications = Nato. Sci. Ser. Ii-math. Nanoscale Devices - Fundamentals and Applications = Nato Sci Ser Ii Math Nanoscale Devices - Fundamentals and Applications = Nato. Sci. Ser. Ii. Math. Nanoscaled Semiconductor-on-insulator Structures and Devices = Nato Science Peace S Nanoscaled Semiconductor-on-insulator Structures and Devices = Nato. Science. Peace. S. Nanoscaled Semiconductor-on-insulator Structures and Devices = Nato Sci Peace Sec B Nanoscaled Semiconductor-on-insulator Structures and Devices = Nato. Sci. Peace. Sec. B. Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications Vii = Proc Spie Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications Vii = Proc. Spie. Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications Vi = P Soc Photo-opt Ins Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications Vi = P. Soc. Photo-opt. Ins. Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications V = Proc Spie Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications V = Proc. Spie. Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications V = P Soc Photo-opt Ins Nanoscale Imaging, Sensing, and Actuation for Biomedical Applications V = P. Soc. Photo-opt. Ins. Nanoscale Imaging, Spectroscopy, Sensing, and Actuation for Biomedical Applications Iv = P Soc Photo-opt Ins Nanoscale Imaging, Spectroscopy, Sensing, and Actuation for Biomedical Applications Iv = P. Soc. Photo-opt. Ins. Nanoscale Interactions of Metal-containing Polymers = Macromol Contain Met Nanoscale Interactions of Metal-containing Polymers = Macromol. Contain. Met. Nanoscale Linear and Nonlinear Optics = Aip Conf Proc Nanoscale Linear and Nonlinear Optics = Aip. Conf. Proc. Nanoscale Materials and Modeling-relations Among Processing, Microstructure and Mechanical Properties = Mater Res Soc Symp P Nanoscale Materials and Modeling-relations Among Processing, Microstructure and Mechanical Properties = Mater. Res. Soc. Symp. P. Nanoscale Materials in Chemistry : Environmental Applications = Acs Sym Ser Nanoscale Materials in Chemistry : Environmental Applications = Acs. Sym. Ser. Nanoscale Materials Science in Biology and Medicine = Mater Res Soc Symp P Nanoscale Materials Science in Biology and Medicine = Mater. Res. Soc. Symp. P. Nanoscale Memory Repair = Integr Circuit Syst Nanoscale Memory Repair = Integr. Circuit. Syst. Nanoscale = Nanoscale Nanoscale Optics and Applications = P Soc Photo-opt Ins Nanoscale Optics and Applications = P. Soc. Photo-opt. Ins. Nanoscale Phenomena: Fundamentals and Applications = Nanosci Technol Nanoscale Phenomena: Fundamentals and Applications = Nanosci. Technol. Nanoscale Photonic and Cell Technologies for Photovoltaics = Proc Spie Nanoscale Photonic and Cell Technologies for Photovoltaics = Proc. Spie. Nanoscale Photonic and Cell Technologies for Photovoltaics = P Soc Photo-opt Ins Nanoscale Photonic and Cell Technologies for Photovoltaics = P. Soc. Photo-opt. Ins. Nanoscale Probes of The Solid/liquid Interface = Nato Adv Sci I E-app Nanoscale Probes of The Solid/liquid Interface = Nato. Adv. Sci. I. E-app. Nanoscale Probes of The Solid/liquid Interface = Nato Adv Sci Inst Se Nanoscale Probes of The Solid/liquid Interface = Nato. Adv. Sci. Inst. Se. Nanoscale Research Letters = Nanoscale Res Lett Nanoscale Research Letters = Nanoscale Res. Lett. Nanoscale Science and Technology = Nato Adv Sci I E-app Nanoscale Science and Technology = Nato. Adv. Sci. I. E-app. Nanoscale Spectroscopy and Its Applications to Semiconductor Research = Lect Notes Phys Nanoscale Spectroscopy and Its Applications to Semiconductor Research = Lect. Notes. Phys. Nanoscience and Engineering in Superconductivity = Nanosci Technol Nanoscience and Engineering in Superconductivity = Nanosci. Technol. Nanoscience and Nanotechnolog Letters = Nanosci. Nanotechnol. Lett. Nanoscience and Nanotechnology = Aip Conf Proc Nanoscience and Nanotechnology = Aip. Conf. Proc. Nanoscience and Nanotechnology for Chemical and Biological Defense = Acs Sym Ser Nanoscience and Nanotechnology for Chemical and Biological Defense = Acs. Sym. Ser. Nanoscience and Nanotechnology Letters = Nanosci Nanotech Let Nanoscience and Nanotechnology Letters = Nanosci. Nanotech. Let. Nano Science and Nano Technology = Nano Sci. Nano Technol. Nanoscience and Technology = Nanosci Technol Nanoscience and Technology = Nanosci. Technol. NanoScience and Technology = NanoSci. Technol. Nanoscience and Technology, Pts 1 and 2 = Solid State Phenomen Nanoscience and Technology, Pts 1 and 2 = Solid. State. Phenomen. Nanoscience and Technology, Pts 1 and 2 = Sol St Phen Nanoscience and Technology, Pts 1 and 2 = Sol. St. Phen. Nanoscience Using Laser-solid Interactions = P Soc Photo-opt Ins Nanoscience Using Laser-solid Interactions = P. Soc. Photo-opt. Ins. Nanosensing: Materials and Devices = Proc Spie Nanosensing: Materials and Devices = Proc. Spie. Nanosensing: Materials and Devices = P Soc Photo-opt Ins Nanosensing: Materials and Devices = P. Soc. Photo-opt. Ins. Nanosensing: Materials, Devices, and Systems Iii = Proc Spie Nanosensing: Materials, Devices, and Systems Iii = Proc. Spie. Nanosensing: Materials, Devices, and Systems Iii = P Soc Photo-opt Ins Nanosensing: Materials, Devices, and Systems Iii = P. Soc. Photo-opt. Ins. Nanosensors and Microsensors for Bio-systems 2008 = Proc Spie Nanosensors and Microsensors for Bio-systems 2008 = Proc. Spie. Nanosensors, Biosensors, and Info-tech Sensors and Systems 2010 = Proc Spie Nanosensors, Biosensors, and Info-tech Sensors and Systems 2010 = Proc. Spie. Nanosensors, Biosensors, and Info-tech Sensors and Systems 2010 = P Soc Photo-opt Ins Nanosensors, Biosensors, and Info-tech Sensors and Systems 2010 = P. Soc. Photo-opt. Ins. Nanosensors, Biosensors, and Info-tech Sensors and Systems 2011 = Proc Spie Nanosensors, Biosensors, and Info-tech Sensors and Systems 2011 = Proc. Spie. Nanosensors, Microsensors, and Biosensors and Systems 2007 = Proc Spie Nanosensors, Microsensors, and Biosensors and Systems 2007 = Proc. Spie. Nanosensors, Microsensors, and Biosensors and Systems 2007 = P Soc Photo-opt Ins Nanosensors, Microsensors, and Biosensors and Systems 2007 = P. Soc. Photo-opt. Ins. Nano-society: Pushing The Boundaries of Technology = Rsc Nanosci Nanotech Nano-society: Pushing The Boundaries of Technology = Rsc. Nanosci. Nanotech. Nanosources and Manipulation of Atoms Under High Fields and Temperatures : Applications = Nato Adv Sci Inst Se Nanosources and Manipulation of Atoms Under High Fields and Temperatures : Applications = Nato. Adv. Sci. Inst. Se. Nanostructued Materials: Classification, Properties and Fabrication = Nanotechnol Sci Tech Nanostructued Materials: Classification, Properties and Fabrication = Nanotechnol. Sci. Tech. Nanostructured and Advanced Materials for Applications in Sensor, Optoelectronic and Photovoltaic Technology = Nato Sci Ser Ii-math Nanostructured and Advanced Materials for Applications in Sensor, Optoelectronic and Photovoltaic Technology = Nato. Sci. Ser. Ii-math. Nanostructured and Advanced Materials for Applications in Sensor, Optoelectronic and Photovoltaic Technology = Nato Sci Ser Ii Math Nanostructured and Advanced Materials for Applications in Sensor, Optoelectronic and Photovoltaic Technology = Nato. Sci. Ser. Ii. Math. Nanostructured Biomaterials = Adv Top Sci Tech Chi Nanostructured Biomaterials = Adv. Top. Sci. Tech. Chi. Nanostructured Conducting Polymers and Their Nanocomposites: Classification, Properties, Fabrication and Applications = Nanotechnol Sci Tech Nanostructured Conducting Polymers and Their Nanocomposites: Classification, Properties, Fabrication and Applications = Nanotechnol. Sci. Tech. Nanostructured Films and Coatings = Nato Sci S Prt 3 Hi Nanostructured Films and Coatings = Nato. Sci. S. Prt. 3. Hi. Nanostructured Interfaces = Mater Res Soc Symp P Nanostructured Interfaces = Mater. Res. Soc. Symp. P. Nanostructured Magnetic Materials and Their Applications = Lect Notes Phys Nanostructured Magnetic Materials and Their Applications = Lect. Notes. Phys. Nanostructured Materials = Acs Sym Ser Nanostructured Materials = Acs. Sym. Ser. Nanostructured Materials and Coatings for Biomedical and Sensor Applications = Nato Sci Ser Ii-math Nanostructured Materials and Coatings for Biomedical and Sensor Applications = Nato. Sci. Ser. Ii-math. Nanostructured Materials and Coatings for Biomedical and Sensor Applications = Nato Sci Ser Ii Math Nanostructured Materials and Coatings for Biomedical and Sensor Applications = Nato. Sci. Ser. Ii. Math. Nanostructured Materials and Hybrid Composites for Gas Sensors and Biomedical Applications = Mater Res Soc Symp P Nanostructured Materials and Hybrid Composites for Gas Sensors and Biomedical Applications = Mater. Res. Soc. Symp. P. Nanostructured Materials and Nanotechnology = Ceram Eng Sci Proc Nanostructured Materials and Nanotechnology = Ceram. Eng. Sci. Proc. Nanostructured Materials and Nanotechnology Ii = Ceram Eng Sci Proc Nanostructured Materials and Nanotechnology Ii = Ceram. Eng. Sci. Proc. Nanostructured Materials and Nanotechnology Iii = Ceram Eng Sci Proc Nanostructured Materials and Nanotechnology Iii = Ceram. Eng. Sci. Proc. Nanostructured Materials and Systems = Ceram Trans Nanostructured Materials and Systems = Ceram. Trans. Nanostructured Materials By High-pressure Severe Plastic Deformation = Nato Sci Ser Ii-math Nanostructured Materials By High-pressure Severe Plastic Deformation = Nato. Sci. Ser. Ii-math. Nanostructured Materials By High-pressure Severe Plastic Deformation = Nato Sci Ser Ii Math Nanostructured Materials By High-pressure Severe Plastic Deformation = Nato. Sci. Ser. Ii. Math. Nanostructured Materials for Advanced Technological Applications = Nato Science Peace S Nanostructured Materials for Advanced Technological Applications = Nato. Science. Peace. S. Nanostructured Materials for Advanced Technological Applications = Nato Sci Peace Sec B Nanostructured Materials for Advanced Technological Applications = Nato. Sci. Peace. Sec. B. Nanostructured Materials for Electrochemical Biosensors = Nanotechnol Sci Tech Nanostructured Materials for Electrochemical Biosensors = Nanotechnol. Sci. Tech. Nanostructured Materials for Electrochemical Energy Production and Storage = Nanostruct Sci Techn Nanostructured Materials for Electrochemical Energy Production and Storage = Nanostruct. Sci. Techn. Nanostructured Materials in Alternative Energy Devices = Mater Res Soc Symp P Nanostructured Materials in Alternative Energy Devices = Mater. Res. Soc. Symp. P. Nanostructured Materials = Nanostruct Mater Nanostructured Materials = Nanostruct. Mater. Nanostructured Materials = Nato Asi 3 High Tech Nanostructured Materials = Nato. Asi. 3. High. Tech. Nanostructured Materials, Thin Films and Hard Coatings for Advanced Applications = Solid State Phenomen Nanostructured Materials, Thin Films and Hard Coatings for Advanced Applications = Solid. State. Phenomen. Nanostructured Materials, Thin Films and Hard Coatings for Advanced Applications = Sol St Phen Nanostructured Materials, Thin Films and Hard Coatings for Advanced Applications = Sol. St. Phen. Nanostructured Metals and Alloys: Processing, Microstructure, Mechanical Properties and Applications = Woodhead Publ Mater Nanostructured Metals and Alloys: Processing, Microstructure, Mechanical Properties and Applications = Woodhead. Publ. Mater. Nanostructured Metals: Fundamentals to Applications = Riso Mat Sci Nanostructured Metals: Fundamentals to Applications = Riso. Mat. Sci. Nanostructured Powders and Their Industrial Applications = Mater Res Soc Symp P Nanostructured Powders and Their Industrial Applications = Mater. Res. Soc. Symp. P. Nanostructured Soft Matter: Experiment, Theory, Simulation and Perspectives = Nanosci Technol Nanostructured Soft Matter: Experiment, Theory, Simulation and Perspectives = Nanosci. Technol. Nanostructured Thin Films and Nanodispersion Strengthened Coatings = Nato Sci Ser Ii-math Nanostructured Thin Films and Nanodispersion Strengthened Coatings = Nato. Sci. Ser. Ii-math. Nanostructured Thin Films and Nanodispersion Strengthened Coatings = Nato Sci Ser Ii Math Nanostructured Thin Films and Nanodispersion Strengthened Coatings = Nato. Sci. Ser. Ii. Math. Nanostructured Thin Films Iii = Proc Spie Nanostructured Thin Films Iii = Proc. Spie. Nanostructured Thin Films Iii = P Soc Photo-opt Ins Nanostructured Thin Films Iii = P. Soc. Photo-opt. Ins. Nanostructured Thin Films = Proc Spie Nanostructured Thin Films = Proc. Spie. Nanostructured Thin Films = P Soc Photo-opt Ins Nanostructured Thin Films = P. Soc. Photo-opt. Ins. Nanostructures and Microstructure Correlation With Physical Properties of Semiconductors = P Soc Photo-opt Ins Nanostructures and Microstructure Correlation With Physical Properties of Semiconductors = P. Soc. Photo-opt. Ins. Nanostructure Science and Technology = Nanostruct Sci Techn Nanostructure Science and Technology = Nanostruct. Sci. Techn. Nanostructure Science and Technology = Nanostructure Sci Te Nanostructure Science and Technology = Nanostructure Sci. Te. Nanostructure Science and Technology = Nan Sci Tec Nanostructure Science and Technology = Nan. Sci. Tec. Nanostructure Semiconductor Optical Amplifiers: Building Blocks for All-optical Processing = Eng Mater Nanostructure Semiconductor Optical Amplifiers: Building Blocks for All-optical Processing = Eng. Mater. Nanostructures: Fabrication and Analysis = Nanosci Technol Nanostructures: Fabrication and Analysis = Nanosci. Technol. Nanostructures: Synthesis, Functional Properties and Applications = Nato Sci Ser Ii-math Nanostructures: Synthesis, Functional Properties and Applications = Nato. Sci. Ser. Ii-math. Nanostructures: Synthesis, Functional Properties and Applications = Nato Sci Ser Ii Math Nanostructures: Synthesis, Functional Properties and Applications = Nato. Sci. Ser. Ii. Math. Nanostructuring Materials With Energetic Beams = Mater Res Soc Symp P Nanostructuring Materials With Energetic Beams = Mater. Res. Soc. Symp. P. Nanotechnological Basis for Advanced Sensors = Nato Sci Peace Sec B Nanotechnological Basis for Advanced Sensors = Nato. Sci. Peace. Sec. B. Nanotechnologies in Food = Rsc Nanosci Nanotech Nanotechnologies in Food = Rsc. Nanosci. Nanotech. Nanotechnologies in Russia = Nanotechnol. Russ. Nanotechnology = Acs Sym Ser Nanotechnology = Acs. Sym. Ser. Nanotechnology / = Adv Nan Phy Nanotechnology / = Adv. Nan. Phy. Nanotechnology and Computer Engineering = Adv Mater Res-switz Nanotechnology and Computer Engineering = Adv. Mater. Res-switz. Nanotechnology and Its Applications = Aip Conf Proc Nanotechnology and Its Applications = Aip. Conf. Proc. Nanotechnology and The Challenges of Equity, Equality and Development = Yearb Nanotechnol So Nanotechnology and The Challenges of Equity, Equality and Development = Yearb. Nanotechnol. So. Nanotechnology Applications in Coatings = Acs Sym Ser Nanotechnology Applications in Coatings = Acs. Sym. Ser. Nanotechnology: Assessment and Perspectives = Ethics Sci Tech Ass Nanotechnology: Assessment and Perspectives = Ethics. Sci. Tech. Ass. Nanotechnology: Ethics and Society = Perspect Nanotechnol Nanotechnology: Ethics and Society = Perspect. Nanotechnol. Nanotechnology for Electronic Materials and Devices = Nan Sci Tec Nanotechnology for Electronic Materials and Devices = Nan. Sci. Tec. Nanotechnology for Electronics, Photonics, and Renewable Energy = Nanostruct Sci Techn Nanotechnology for Electronics, Photonics, and Renewable Energy = Nanostruct. Sci. Techn. Nanotechnology Iii = Proc Spie Nanotechnology Iii = Proc. Spie. Nanotechnology Iii = P Soc Photo-opt Ins Nanotechnology Iii = P. Soc. Photo-opt. Ins. Nanotechnology Ii = Proc Spie Nanotechnology Ii = Proc. Spie. Nanotechnology Ii = P Soc Photo-opt Ins Nanotechnology Ii = P. Soc. Photo-opt. Ins. Nanotechnology in Catalysis, Vol 3 = Nanostruct Sci Techn Nanotechnology in Catalysis, Vol 3 = Nanostruct. Sci. Techn. Nanotechnology in Catalysis, Vols 1 and 2 = Nanostruct Sci Techn Nanotechnology in Catalysis, Vols 1 and 2 = Nanostruct. Sci. Techn. Nanotechnology in Catalysis, Vols 1 and 2 = Nanostructure Sci Te Nanotechnology in Catalysis, Vols 1 and 2 = Nanostructure. Sci. Te. Nanotechnology in Catalysis, Vols 1 and 2 = Nan Sci Tec Nanotechnology in Catalysis, Vols 1 and 2 = Nan. Sci. Tec. Nanotechnology in Mesostructured Materials = Stud Surf Sci Catal Nanotechnology in Mesostructured Materials = Stud. Surf. Sci. Catal. Nanotechnology in Undergraduate Education = Acs Sym Ser Nanotechnology in Undergraduate Education = Acs. Sym. Ser. Nanotechnology: Legal Aspects = Perspect Nanotechnol Nanotechnology: Legal Aspects = Perspect. Nanotechnol. Nanotechnology: Nanofabrication, Patterning and Self Assembly = Nanotechnol Sci Tech Nanotechnology: Nanofabrication, Patterning and Self Assembly = Nanotechnol. Sci. Tech. Nanotechnology = Nanotechnology Nanotechnology = Proc Spie Nanotechnology = Proc. Spie. Nanotechnology = P Soc Photo-opt Ins Nanotechnology = P. Soc. Photo-opt. Ins. Nanotechnology: Risk, Ethics and Law = Sci Soc Ser Nanotechnology: Risk, Ethics and Law = Sci. Soc. Ser. Nanotechnology Science and Technology = Nanotechnol Sci Tech Nanotechnology Science and Technology = Nanotechnol. Sci. Tech. Nanotechnology Standards = Nanostruct Sci Techn Nanotechnology Standards = Nanostruct. Sci. Techn. Nanotechnology: The Business = Perspect Nanotechnol Nanotechnology: The Business = Perspect. Nanotechnol. Nanotechnology - Toxicological Issues and Environmental Safety = Nato Sci Peace Secur Nanotechnology - Toxicological Issues and Environmental Safety = Nato. Sci. Peace. Secur. Nano Today = Nano Today Nanotoxicology = Nanotoxicology Nanotube-based Devices = Mater Res Soc Symp P Nanotube-based Devices = Mater. Res. Soc. Symp. P. Nanotubes and Nanowires = Proc Spie Nanotubes and Nanowires = Proc. Spie. Nanotubes and Nanowires = P Soc Photo-opt Ins Nanotubes and Nanowires = P. Soc. Photo-opt. Ins. Nanotubes and Nanowires = Rsc Nanosci Nanotech Nanotubes and Nanowires = Rsc. Nanosci. Nanotech. Nanotubes, Nanowires, Nanobelts and Nanocoils - Promise, Expectations and Status = Mater Res Soc Symp P Nanotubes, Nanowires, Nanobelts and Nanocoils - Promise, Expectations and Status = Mater. Res. Soc. Symp. P. Nanowelded Carbon Nanotubes: From Field-effect Transistors to Solar Microcells = Nanosci Technol Nanowelded Carbon Nanotubes: From Field-effect Transistors to Solar Microcells = Nanosci. Technol. Nanowires = Nato Adv Sci I E-app Nanowires = Nato. Adv. Sci. I. E-app. Nanowires - Synthesis, Properties, Assembly and Applications = Mater Res Soc Symp P Nanowires - Synthesis, Properties, Assembly and Applications = Mater. Res. Soc. Symp. P. Nanr News = NANR News NANR News = NANR News Naphthyridines = Chem Heterocycl Comp Naphthyridines = Chem. Heterocycl. Comp. NAPHT news = NAPHT News Napoli nobilissima = NapNobil Naqshbandiyya = Routledge Sufi Ser Naqshbandiyya = Routledge. Sufi. Ser. Narcolepsy: Symptoms, Causes and Diagnosis = Sleep-physiol Funct Narcolepsy: Symptoms, Causes and Diagnosis = Sleep-physiol. Funct. NARESA monograph = NARESA Mongr Narodno zdravlje = Nar Zdrav Narodno Zdravlje = Nar. Zdrav. Narodonaselenie = Narodonaselenie Narrating Class in American Fiction = Am Lit Read Twenty-f Narrating Class in American Fiction = Am. Lit. Read. Twenty-f. Narrating Post/communism: Colonial Discourse and Europe's Borderline Civilization = Basees-rout Ser Russ Narrating Post/communism: Colonial Discourse and Europe's Borderline Civilization = Basees-rout. Ser. Russ. Narrating The Management Guru = Routl Adv Manag Bus Narrating The Management Guru = Routl. Adv. Manag. Bus. Narrating The Rise of Big Business in The Usa = Rout Int Stud Bus Hi Narrating The Rise of Big Business in The Usa = Rout. Int. Stud. Bus. Hi. Narrative As Social Practice = Lang Power Soc Proce Narrative As Social Practice = Lang. Power. Soc. Proce. Narrative Development in Adolescence: Creating The Storied Self = Adv Respons Adol Dev Narrative Development in Adolescence: Creating The Storied Self = Adv. Respons. Adol. Dev. Narrative Identity and Moral Identity = Rout Stud Contemp Ph Narrative Identity and Moral Identity = Rout. Stud. Contemp. Ph. Narrative Inquiries Into Curriculum Making in Teacher Education, Vol 13 = Adv Res Teach Narrative Inquiries Into Curriculum Making in Teacher Education, Vol 13 = Adv. Res. Teach. Narrative Inquiry = Narrat Inq Narrative Inquiry = Narrat. Inq. Narrative Life: Democratic Curriculum and Indigenous Learning = Explor Educ Purp Narrative Life: Democratic Curriculum and Indigenous Learning = Explor. Educ. Purp. Narrative = Narrative Narrative, Pain, and Suffering = Prog Pain Res Manag Narrative, Pain, and Suffering = Prog. Pain. Res. Manag. Narratives, Health, and Healing: Communication Theory, Research, and Practice = Lea Commun Ser Narratives, Health, and Healing: Communication Theory, Research, and Practice = Lea. Commun. Ser. Narratives of The European Border: A History of Nowhere = Lang Discourse Soc Narratives of The European Border: A History of Nowhere = Lang. Discourse. Soc. Narratives of Trauma: Discourse of German Wartime Suffering in National and International Perspective = Ger Monitor Narratives of Trauma: Discourse of German Wartime Suffering in National and International Perspective = Ger. Monitor. Narrative Unreliability in The Twentieth-century First-person Novel = Narratologia Narrative Unreliability in The Twentieth-century First-person Novel = Narratologia. Narrative Urteil: Erzahlerische Problemverhandlungen Von Hiob Bis Kant = Narratologia Narrative Urteil: Erzahlerische Problemverhandlungen Von Hiob Bis Kant = Narratologia. Narratologia-contributions to Narrative Theory = Narrat-contrib Narra Narratologia-contributions to Narrative Theory = Narrat-contrib. Narra. Narratologia = Narratolog Narratologia = Narratolog. Narratologia = Narratologia Narratological Analysis of Lyric Poetry = Narratologia Narratological Analysis of Lyric Poetry = Narratologia. Narratologie Des Raumes = Narratologia Narratologie Des Raumes = Narratologia. Narratology and Interpretation = Trends Class Suppl V Narratology and Interpretation = Trends. Class. Suppl. V. Narratology and Narrative = Fr Lit Ser Narratology and Narrative = Fr. Lit. Ser. Narratology in The Age of Cross-disciplinary Narrative Research = Narratolog Narratology in The Age of Cross-disciplinary Narrative Research = Narratolog. Narratology in The Age of Cross-disciplinary Narrative Research = Narratologia Narratology in The Age of Cross-disciplinary Narrative Research = Narratologia. Narrow Gap Semiconductors 1995 = Inst Phys Conf Ser Narrow Gap Semiconductors 1995 = Inst. Phys. Conf. Ser. Narrow Gap Semiconductors 2007 = Springer Proc Phys Narrow Gap Semiconductors 2007 = Springer. Proc. Phys. Narrowing The Achievement Gap in A (re)segregated Urban School District: Research, Practice, and Policy = Achiev Gap Res Pract Narrowing The Achievement Gap in A (re)segregated Urban School District: Research, Practice, and Policy = Achiev. Gap Res. Pract. Narrowing The Achievement Gap: Strategues Fir Educating Latino, Black, and Asian Students = Iss Childr Fam Lives Narrowing The Achievement Gap: Strategues Fir Educating Latino, Black, and Asian Students = Iss. Childr. Fam. Lives. Narrow Vein Mining Conference 2008, Proceedings = Australas I Min Met Narrow Vein Mining Conference 2008, Proceedings = Australas. I. Min. Met. Nasa Conference Publication = Nasa Conf P Nasa Conference Publication = Nasa Conf. P. NASA Conference Publication = NASA Conf. Publ. NASA contractor report. NASA CR. United States. National Aeronautics and Space Administration = NASA Contract Rep NASA CR Nasa Monographs in Systems and Software Engineering = Nasa Monogr Syst Sof Nasa Monographs in Systems and Software Engineering = Nasa Monogr. Syst. Sof. Nasa Office of Space Science Education and Public Outreach Conference = Astr Soc P Nasa Office of Space Science Education and Public Outreach Conference = Astr. Soc. P. Nasa Space Science Vision Missions = Prog Astronaut Aeron Nasa Space Science Vision Missions = Prog. Astronaut. Aeron. Nasa/spie Conference On Spin-off Technologies From Nasa for Commercial Sensors and Scientific Applications = P Soc Photo-opt Ins Nasa/spie Conference On Spin-off Technologies From Nasa for Commercial Sensors and Scientific Applications = P. Soc. Photo-opt. Ins. Naselenie (Sofia, Bulgaria : 1983) = Naselenie Nash and Nutritional Therapy = Frontiers Hepatology Nash and Nutritional Therapy = Frontiers. Hepatology. NASNewsletter = Nasnewsletter NASPCP newsletter / National AIDS/STD Prevention and Control Program. National AIDS/STD Prevention and Control Program (Philippines) = NASPCP Newsl Nassauische Annalen = NassAnn Nasser and The Missile Age in The Middle East = Contemp Secur Stud Nasser and The Missile Age in The Middle East = Contemp. Secur. Stud. Nasu Suteshon (Journal of Nursing Administration for Patients) = Nasu Suteshon Nasza przeszlosc = Nasza Przeslosc National Academy of Science Letters = Nat. Acad. Sci. Lett. National Academy Science Letters-india = Natl Acad Sci Lett National Academy Science Letters-india = Natl. Acad. Sci. Lett. National Academy Science Letters (India) = Natl. Acad. Sci. Lett. (India) National AIDS bulletin / Australian Federation of AIDS Organisations Inc = Natl AIDS Bull National and Ethnic Conflict in The 21st Century = Natl Ethn Confl 21st National and Ethnic Conflict in The 21st Century = Natl. Ethn. Confl. 21st National and International Law Enforcement Databases = P Soc Photo-opt Ins National and International Law Enforcement Databases = P. Soc. Photo-opt. Ins. National Approaches to The Governance of Historical Heritage Over Time: A Comparative Report = Int I Adm Sci Monogr National Approaches to The Governance of Historical Heritage Over Time: A Comparative Report = Int. I. Adm. Sci. Monogr. National Assessment of College Student Learning: Identification of The Skills to Be Taught, Learned, and Assessed = Nces Res Dev Rep National Assessment of College Student Learning: Identification of The Skills to Be Taught, Learned, and Assessed = Nces. Res. Dev. Rep. National Association of College Teachers of Agriculture Journal = Nacta J National Association of College Teachers of Agriculture Journal = Nacta. J. National Black law journal = Natl Black Law J National Board of Education Series = Natl B Educ National Board of Education Series = Natl. B. Educ. National Bureau of Economic Research bulletin on aging and health = Natl Bur Econ Res Bull Aging Health National Bureau of Economic Research Comparative Labor Markets Series = Nat Bur Econ Res Com National Bureau of Economic Research Comparative Labor Markets Series = Nat. Bur. Econ. Res. Com. National Bureau of Economic Research Conference Report = Nber Conf R National Bureau of Economic Research Conference Report = Nber. Conf. R. National Bureau of Economic Research Project Reports = Nat Bur Ec National Bureau of Economic Research Project Reports = Nat. Bur. Ec. National Bureau of Economic Research Studies in Business Cycles = Nat Bur Econ Res Stu National Bureau of Economic Research Studies in Business Cycles = Nat. Bur. Econ. Res. Stu. National Bureau of Standards Monographs = Natl Bureau Stand M National Bureau of Standards Monographs = Natl. Bureau Stand. M. National Cancer Institute carcinogenesis technical report series = Natl Cancer Inst Carcinog Tech Rep Ser National Cancer Institute monograph = Natl Cancer Inst Monogr National Cancer Institute Monographs = Natl Cancer I Monogr National Cancer Institute Monographs = Natl. Cancer I. Monogr. National Cancer Institute Monographs = Natl. Cancer Inst. Monogr. National Cancer Institute research report = Natl Cancer Inst Res Rep National Cancer Institute Research Report = Natl. Cancer Inst. Res. Rep. National Catholic reporter = Natl Cathol Report National Center for Education Statistics Research and Development Report = Nces Res Dev Rep National Center for Education Statistics Research and Development Report = Nces. Res. Dev. Rep. National Center for Research On Teacher Education, Conference Series = Ncrte Conf National Center for Research On Teacher Education, Conference Series = Ncrte. Conf. National Cinemas = Natl Cine National Cinemas = Natl. Cine. National civic review = Natl Civ Rev National Clearinghouse for Poison Control Centers Bulletin = Natl. Clgh. Poison Control Cent. Bull. National Competitiveness: Transferring Australian Research to Industry = Aatse Inv Symp National Competitiveness: Transferring Australian Research to Industry = Aatse. Inv. Symp. National Conference on Dental Public Relations = Natl Conf Dent Public Relat National Conference on Dental Public Relations = Natl. Conf. Dent. Public Relat. National Conference On Environmental Engineering 1992 = Inst Eng A National Conference On Environmental Engineering 1992 = Inst. Eng. A. National Conference On Juvenile Detention = Aic Conf P National Conference On Juvenile Detention = Aic. Conf. P. National Conference On Juvenile Justice = Aic Conf P National Conference On Juvenile Justice = Aic. Conf. P. National Conference On Legal Information Issues: Selected Essays = Aall Publ S National Conference On Legal Information Issues: Selected Essays = Aall. Publ. S. National Council for The Social Studies-bulletin = Natl Coun Soc St B National Council for The Social Studies-bulletin = Natl. Coun. Soc. St. B. National Council for The Social Studies-yearbook = Natl Coun Soc St Ybk National Council for The Social Studies-yearbook = Natl. Coun. Soc. St. Ybk. National Cultural Asset Protection and Free Movement of Union Citizens = Schrift Kulturgut National Cultural Asset Protection and Free Movement of Union Citizens = Schrift. Kulturgut. National Culture and Groups = Res Manag Group Team National Culture and Groups = Res. Manag. Group. Team. National Currencies and Globalization: Endangered Specie? = Ripe Ser Glob Polit National Currencies and Globalization: Endangered Specie? = Ripe. Ser. Glob. Polit. National Dental Association journal = Natl Dent Assoc J National Dental Association Journal = Natl. Dent. Assoc. J. National Dental Health Conference = Natl. Dent. Health Conf. National Educators Workshop : Update 89 = Nasa Conf P National Educators Workshop : Update 89 = Nasa. Conf. P. National Engineer = Natl. Eng. National Family Health Survey bulletin = Natl Fam Health Surv Bull National Federation of Catholic Physicians' Guilds newsletter = Natl Fed Cathol Physicians Guild Newsl National Financial Literacy Strategy = Educ Compet Glob Wor National Financial Literacy Strategy = Educ. Compet. Glob. Wor. National Forest Inventories: Contributions to Forest Biodiversity Assessments = Manag For Ecosyst National Forest Inventories: Contributions to Forest Biodiversity Assessments = Manag. For. Ecosyst. National Forest Programmes in A European Context = Eur Forest Inst Proc National Forest Programmes in A European Context = Eur. Forest Inst. Proc. National forum = Natl Forum National Forum on Hospital and Health Affairs = Natl. Forum Hosp. Health Aff. National Forum On Science and Technology Goals = Nat F Sci Tech Goal National Forum On Science and Technology Goals = Nat. F. Sci. Tech. Goal. National Geographic Magazine = Nat. Geogr. Mag. National Geographic = Natl Geogr National Geographic = Natl. Geogr. National geographic = Natl Geogr Mag National geographic research = Natl Geogr Res National Geographic Research = Natl Geogr Res National Geographic Research = Natl. Geogr. Res. National History Standards - The Problem of The Canon and The Future of Teaching History = Inter Rev Hist Educ National History Standards - The Problem of The Canon and The Future of Teaching History = Inter. Rev. Hist. Educ. National History Standards - The Problem of The Canon and The Future of Teaching History = Int Rev Hist Educ National History Standards - The Problem of The Canon and The Future of Teaching History = Int. Rev. Hist. Educ. National hospital and health care = Natl Hosp Health Care National Hospital and Health Care = Natl. Hosp. Health Care National Hydrology Workshop Proceedings - Watersheds in The Nineties = Usda Rocky National Hydrology Workshop Proceedings - Watersheds in The Nineties = Usda. Rocky. National Identities and Ethic Minorities in Eastern Europe = Int Congr Cent E Eur National Identities and Ethic Minorities in Eastern Europe = Int. Congr. Cent. E. Eur. National Identities = Polit Q Sup National Identities = Polit. Q. Sup. National Identity and Europe = Eur Media M National Identity and Europe = Eur. Media. M. National Income Tax Magazine = Natl Income Tax Mag National Income Tax Magazine = Natl. Income Tax Mag. National Infrastructure: Protecting, Funding and Rebuilding = Terror Hot Spots Con National Infrastructure: Protecting, Funding and Rebuilding = Terror. Hot. Spots. Con. National Innovation, Indicators and Policy = New Horiz Econ Innov National Innovation, Indicators and Policy = New. Horiz. Econ. Innov. National Institute Economic Review=Nat. Inst. Econ. Rev. National Institute economic review = Natl Inst Econ Rev National Institute for Urban Wildlife Symposium Series = Niuw Symp S National Institute for Urban Wildlife Symposium Series = Niuw. Symp. S. National Institute of Allergy and Infectious Diseases, Nih, Vol 1: Frontiers in Research = Infec Dis S National Institute of Allergy and Infectious Diseases, Nih, Vol 1: Frontiers in Research = Infec. Dis. S. National Institute of Allergy and Infectious Diseases, Nih, Vol 1: Frontiers in Research = Infect Dis National Institute of Allergy and Infectious Diseases, Nih, Vol 1: Frontiers in Research = Infect. Dis. National Institute of Allergy and Infectious Diseases, Nih, Vol 2 = Infect Dis National Institute of Allergy and Infectious Diseases, Nih, Vol 2 = Infect. Dis. National Institute of Allergy and Infectious Diseases, Nih, Vol 3: Intramural Research = Infect Dis National Institute of Allergy and Infectious Diseases, Nih, Vol 3: Intramural Research = Infect. Dis. National Institute of Animal Health Quarterly = Natl I Anim Health Q National Institute of Animal Health Quarterly = Natl. I. Anim. Health Q. National Institute of Animal Health quarterly = Natl Inst Anim Health Q (Tokyo) National Institute of Animal Health Quarterly = Natl. Inst. Anim. Health Q. (Tokyo) National Institute on Drug Abuse research monograph series = Natl Inst Drug Abuse Res Monogr Ser National Institute on Drug Abuse Research Monograph Series = Natl. Inst. Drug Abuse Res. Monogr. Ser. National Institutes of Health consensus development conference consensus statement = Natl Inst Health Consens Dev Conf Consens Statement National Institutes of Health Consensus Development Conference Consensus Statement = Natl. Inst. Health Consens. Dev. Conf. Consens. Statement National Institutes of Health consensus development conference summaries = Natl Inst Health Consens Dev Conf Summ National Institutes of Health Consensus Development Conference Summaries = Natl. Inst. Health Consens. Dev. Conf. Summ. National Institutes of Health consensus development conference summary = Natl Inst Health Consens Dev Conf Summ National Institutes of Health Consensus Development Conference Summary = Natl. Inst. Health Consens. Dev. Conf. Summ. National Interest and Global Goals = Ex Ed Fdn R National Interest and Global Goals = Ex. Ed. Fdn. R. Nationalising and Denationalising European Border Regions, 1800-2000 = Geoj Lib Nationalising and Denationalising European Border Regions, 1800-2000 = Geoj. Lib. Nationalism and Racism in The Liberal Order = Aveb S Phil Nationalism and Racism in The Liberal Order = Aveb. S. Phil. Nationalism and Sexuality: Crises of Identity = Amer St Gr Nationalism and Sexuality: Crises of Identity = Amer. St. Gr. Nationalism in A Global Era: The Persistence of Nations = Routl Stud Nat Ethn Nationalism in A Global Era: The Persistence of Nations = Routl. Stud. Nat. Ethn. Nationalism in International Relations: Norms, Foreign Policy, and Enmity = Adv Foreign Policy A Nationalism in International Relations: Norms, Foreign Policy, and Enmity = Adv. Foreign Policy. A. Nationalism in Literature - Literarischer Nationalismus = Scot St Pub Nationalism in Literature - Literarischer Nationalismus = Scot. St. Pub. Nationalism, Islam and World Literature: Sites of Confluence in The Writings of Mahmud Al-masadi = Routl Stud Mid E Lit Nationalism, Islam and World Literature: Sites of Confluence in The Writings of Mahmud Al-masadi = Routl. Stud. Mid. E. Lit. Nationalism, Racism and The Rule of Law = Soc Legal St Ser Nationalism, Racism and The Rule of Law = Soc. Legal. St. Ser. Nationalisms in Japan = Sheff Cent Jpn Stud Nationalisms in Japan = Sheff. Cent. Jpn. Stud. Nationalisms Old and New = Expl Sociol Nationalisms Old and New = Expl. Sociol. Nationalities papers = Natl Pap Nationalizing The Past: Historians As Nation Builders in Modern Europe = Writing Nation Nationalizing The Past: Historians As Nation Builders in Modern Europe = Writing. Nation National Jewish law review = Natl Jew Law Rev National journal = Natl J (Wash) National Journal = Natl. J. (Wash.) National Livestock, Poultry and Aquaculture Waste Management = Asae Publ National Livestock, Poultry and Aquaculture Waste Management = Asae. Publ. National Medical Care Utilization and Expenditure Survey. Series B, Descriptive Report = Natl. Med. Care Util. Expend. Surv. B. National Medical Care Utilization and Expenditure Survey. Series C, Analytical Report = Natl. Med. Care Util. Expend. Surv. C. National Medical Care Utilization and Expenditure Survey (Series). Series B, Descriptive report. = Natl Med Care Util Expend Surv B National Medical Care Utilization and Expenditure Survey (Series). Series C, Analytical report. = Natl Med Care Util Expend Surv C National Medical Journal of India=Natl Med J India;; National Medical Journal of India = Natl Med J India National Medical Journal of India = Natl. Med. J. India National medical-legal journal = Natl Med Leg J National Medical-Legal Journal = Natl. Med. Leg. J. National network (Dallas, Tex.) = Natl Netw National Network = Natl. Netw. National Nosocomial Infections Study report = Natl Nosocomial Infect Study Rep National Nosocomial Infections Study Report = Natl. Nosocomial Infect. Study Rep. National observer (Washington, D.C.) = Natl Obs Nationalokonomisk tidsskrift : maanedskrift for samfundssporgsmaal, okonomi og handel = Nationalokon Tidsskr Nationalokonomisk Tidsskrift = Nationalokon Tidsskr Nationalokonomisk Tidsskrift = Nationalokon. Tidsskr. Nationaløkonomisk Tidsskrift=Nationaløkon. Tidsskr. National Overview On Crime Prevention = Aic Conf P National Overview On Crime Prevention = Aic. Conf. P. Nationalpark-Forschung in der Schweiz = Natl.park-Forsch. Schweiz National Parks: Biodiversity, Conservation and Tourism = Wildl Prot Destr Ext National Parks: Biodiversity, Conservation and Tourism = Wildl. Prot. Destr. Ext. National Parks: Vegetation, Wildlife and Threats = Wildl Prot Destr Ext National Parks: Vegetation, Wildlife and Threats = Wildl. Prot. Destr. Ext. National population news bulletin : newsletter of the National Population Council = Natl Popul News Bull National Proceedings: Forest and Conservation Nursery Associations 1995 = Usda Pac Nw National Proceedings: Forest and Conservation Nursery Associations 1995 = Usda. Pac. Nw. National Proceedings: Forest and Conservation Nursery Associations 1995 = Us For Serv T R Pnw National Proceedings: Forest and Conservation Nursery Associations 1995 = Us. For. Serv. T. R. Pnw. National Proceedings: Forest and Conservation Nursery Associations 2002 = Us For Serv Rmrs-p National Proceedings: Forest and Conservation Nursery Associations 2002 = Us. For. Serv. Rmrs-p. National Proceedings: Forest and Conservation Nursery Associations 2004 = Us For Serv Rmrs-p National Proceedings: Forest and Conservation Nursery Associations 2004 = Us. For. Serv. Rmrs-p. National Proceedings: Forest and Conservation Nursery Associations 2005 = Us For Serv Rmrs-p National Proceedings: Forest and Conservation Nursery Associations 2005 = Us. For. Serv. Rmrs-p. National Proceedings: Forest and Conservation Nursery Associations = Usda Rocky National Proceedings: Forest and Conservation Nursery Associations = Usda. Rocky. National Question and Expulsion in Czechoslovakia and Hungary 1938-1948 = Oaw Zentraleuropa St National Question and Expulsion in Czechoslovakia and Hungary 1938-1948 = Oaw. Zentraleuropa. St. National Radio Science Conference Nrsc = Nat Radio Sci Co National Radio Science Conference Nrsc = Nat. Radio Sci. Co. National Regulation of Space Activities = Space Regul Lib National Regulation of Space Activities = Space Regul. Lib. National report on subacute care = Natl Rep Subacute Care National review = Natl Rev National Safety Congress Transactions = Natl. Saf. Congr. Trans. National safety news = Natl Saf News National Safety News = Natl. Saf. News National Saving and Economic Performance = Nat Bur Ec National Saving and Economic Performance = Nat. Bur. Ec. National Science Foundation (nsf) Forum On Optical Science and Engineering = P Soc Photo-opt Ins National Science Foundation (nsf) Forum On Optical Science and Engineering = P. Soc. Photo-opt. Ins. National Sculpture Review = Natl Sculpture Rev National Sculpture Review = Natl. Sculpture Rev. National Security = Handb Info Syst National Security = Handb. Info. Syst. National Security: Institutional Approaches, Policy Models and Global Impacts = Def Secur Strateg National Security: Institutional Approaches, Policy Models and Global Impacts = Def. Secur. Strateg. National Self-determination and Justice in Multinational States = Stud Glob Justice National Self-determination and Justice in Multinational States = Stud. Glob. Justice National, State, and Freight Data Issues and Asset Management = Transport Res Rec National, State, and Freight Data Issues and Asset Management = Transport. Res. Rec. National Symposium On Family Issues = Natl Symp Fam Iss National Symposium On Family Issues = Natl. Symp. Fam. Iss. National Symposium On Information Display = Nat Sym Inform Disp National Symposium On Information Display = Nat. Sym. Inform. Disp. National tax journal = Natl Tax J National Tax Journal = Natl Tax J National Tax Journal = Natl. Tax J. National Tax Journal=Nat. Tax J. National Tax Magazine = Natl Tax Mag National Tax Magazine = Natl. Tax Mag. National Theatres in A Changing Europe = Stud Int Perform National Theatres in A Changing Europe = Stud. Int. Perform. National Toxicology Program technical report series = Natl Toxicol Program Tech Rep Ser National Underwriter = Natl. Underwrit. [Life Health] National University law review = Natl Univ Law Rev National Virtual Observatory: Tools and Techniques for Astronomical Research = Astr Soc P National Virtual Observatory: Tools and Techniques for Astronomical Research = Astr. Soc. P. National vital statistics reports : from the Centers for Disease Control and Prevention, National Center for Health Statistics, National Vital Statistics System = Natl Vital Stat Rep National Vital Statistics Reports = Natl. Vital Stat. Rep. National Vocational Guidance Association Bulletin = Natl Vocat Guid Asso National Vocational Guidance Association Bulletin = Natl. Vocat. Guid. Asso. National Weather Digest = Natl. Wea. Dig. National Westminster Bank Quarterly Review = Natl Westm Bank Q R National Westminster Bank Quarterly Review = Natl. Westm. Bank Q. R. National Westminster Bank Quarterly Review=Nat. Westminster Bank Quart. Rev. National Wildlife Federation Scientific and Technical Series = Nat Wil F S National Wildlife Federation Scientific and Technical Series = Nat. Wil. F. S. National wildlife = Natl Widl National Wildlife = Natl Wildlife National Wildlife = Natl. Wildlife National women's health report = Natl Womens Health Rep National Workshop On Nonlinear Dynamics = Ital Phy So National Workshop On Nonlinear Dynamics = Ital. Phy. So. Nation and Identity in The New German Cinema = Routl Adv Film Stud Nation and Identity in The New German Cinema = Routl. Adv. Film. Stud. Nation and Language: Modern Aspects of Socio-linguistic Development, Proceedings = Int Conf Nation Lang Nation and Language: Modern Aspects of Socio-linguistic Development, Proceedings = Int. Conf. Nation Lang. Nation-building, Identity and Citizenship Education: Cross-cultural Perspectives = Glob Comp Educ Polic Nation-building, Identity and Citizenship Education: Cross-cultural Perspectives = Glob. Comp. Educ. Polic. Nation = Nation Nation (New York, N.Y. : 1865) = Nation Nation of A Hundred Million Idiots: A Social History of Japanese Television, 1953-1973 = E Asia Hist Polit So Nation of A Hundred Million Idiots: A Social History of Japanese Television, 1953-1973 = E. Asia. Hist. Polit. So. Nation of Women: Gender and Colonial Encounters Among The Delaware Indians = Early Am Stud Ser Nation of Women: Gender and Colonial Encounters Among The Delaware Indians = Early. Am. Stud. Ser. Nation, Psychology, and International Politics, 1870-1919 = Palg Mac Ser Trans Nation, Psychology, and International Politics, 1870-1919 = Palg. Mac. Ser. Trans. Nation, Psychology, and International Politics, 1870-1919 = Palg Mac Transnat H Nation, Psychology, and International Politics, 1870-1919 = Palg. Mac. Transnat. H. Nations and Nationalism = Nations Natl Nations and Nationalism = Nations Natl. Nation's business = Nations Bus Nation's Business = Nations Bus. Nation, State and The Industrial Revolution = Routl Explor Econ Hi Nation, State and The Industrial Revolution = Routl. Explor. Econ. Hi. Nation State in A Global/information Era: Policy Challenges = Bell Canada Pap Econ Nation State in A Global/information Era: Policy Challenges = Bell. Canada. Pap. Econ. Native American Literature: Towards A Spatialized Reading = Routl Transnat Persp Native American Literature: Towards A Spatialized Reading = Routl. Transnat. Persp. Native Ground: Indians and Colonists in The Heart of The Continent = Early Am Stud Ser Native Ground: Indians and Colonists in The Heart of The Continent = Early. Am. Stud. Ser. Native Mice and Rats = Austral Nat Hist Ser Native Mice and Rats = Austral. Nat. Hist. Ser. Native Speaker Concept: Ethnographic Investigations of Native Speaker Effects = Lang Power Soc Proce Native Speaker Concept: Ethnographic Investigations of Native Speaker Effects = Lang. Power. Soc. Proce. NATNews = NATNEWS NATNEWS = NATNEWS Nato Advanced Science Institute Series, Series I, Global Environment Change = Nato Asi Ser Ser I Nato Advanced Science Institute Series, Series I, Global Environment Change = Nato Asi. Ser. Ser. I. Nato Advanced Science Institute Series, Sub-series 1: Disarmament Technologies = Nato Sci S 1 Disarm Nato Advanced Science Institute Series, Sub-series 1: Disarmament Technologies = Nato Sci. S. 1. Disarm. Nato Advanced Science Institute Series, Sub-series 3, High Technology = Nato Asi 3 High Tech Nato Advanced Science Institute Series, Sub-series 3, High Technology = Nato Asi. 3. High Tech. NATO Advanced Science Institutes Series B: Physics = NATO Adv. Sci. Inst. Ser. B Phys. NATO Advanced Science Institutes Series C: Mathematical and Physical Sciences = NATO Adv. Sci. Inst. Ser. C Math. Phys. Sci. NATO Advanced Science Institutes Series E: Applied Sciences = NATO Adv. Sci. Inst. Ser. E Appl. Sci. NATO Advanced Science Institutes Series F: Computer and Systems Sciences = NATO Adv. Sci. Inst. Ser. F Comput. Systems Sci. Nato Advanced Science Institutes Series, Ser 2 = Nato Asi 2 Nato Advanced Science Institutes Series, Ser 2 = Nato Asi. 2 Nato Advanced Science Institutes Series, Series A, Life Sciences = Nato Adv Sci I A-lif Nato Advanced Science Institutes Series, Series A, Life Sciences = Nato Adv. Sci. I. A-lif. Nato Advanced Science Institutes Series, Series A, Life Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series A, Life Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series B, Physics = Nato Adv Sci I B-phy Nato Advanced Science Institutes Series, Series B, Physics = Nato Adv. Sci. I. B-phy. Nato Advanced Science Institutes Series, Series B, Physics = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series B, Physics = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series C, Mathematical and Physical Sciences = Nato Adv Sci I C-mat Nato Advanced Science Institutes Series, Series C, Mathematical and Physical Sciences = Nato Adv. Sci. I. C-mat. Nato Advanced Science Institutes Series, Series C, Mathematical and Physical Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series C, Mathematical and Physical Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series D, Behavioral and Social Sciences = Nato Adv Sci I D-beh Nato Advanced Science Institutes Series, Series D, Behavioral and Social Sciences = Nato Adv. Sci. I. D-beh. Nato Advanced Science Institutes Series, Series D, Behavioral and Social Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series D, Behavioral and Social Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series E, Applied Sciences = Nato Adv Sci I E-app Nato Advanced Science Institutes Series, Series E, Applied Sciences = Nato Adv. Sci. I. E-app. Nato Advanced Science Institutes Series, Series E, Applied Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series E, Applied Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series F, Computer and Systems Sciences = Nato Adv Sci I F-com Nato Advanced Science Institutes Series, Series F, Computer and Systems Sciences = Nato Adv. Sci. I. F-com. Nato Advanced Science Institutes Series, Series F, Computer and Systems Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series F, Computer and Systems Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series G, Ecological Sciences = Nato Adv Sci I G-eco Nato Advanced Science Institutes Series, Series G, Ecological Sciences = Nato Adv. Sci. I. G-eco. Nato Advanced Science Institutes Series, Series G, Ecological Sciences = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series G, Ecological Sciences = Nato Adv. Sci. Inst. Se. Nato Advanced Science Institutes Series, Series H, Cell Biology = Nato Adv Sci I H-cel Nato Advanced Science Institutes Series, Series H, Cell Biology = Nato Adv. Sci. I. H-cel. Nato Advanced Science Institutes Series, Series H, Cell Biology = Nato Adv Sci Inst Se Nato Advanced Science Institutes Series, Series H, Cell Biology = Nato Adv. Sci. Inst. Se. NATO Advanced Science Institutes Series, Series I: Global Environmental Change = NATO ASI Ser. Ser. I Glob. Environ. Change Nato Advanced Science Institutes Series, Sub-ser 2, Environmental Security = Nato Asi 2 Nato Advanced Science Institutes Series, Sub-ser 2, Environmental Security = Nato Asi. 2. Nato Advanced Science Institutes Series, Sub-series 4, Science and Technology Policy = Nato Asi S 4 Sci Tec Nato Advanced Science Institutes Series, Sub-series 4, Science and Technology Policy = Nato Asi. S. 4. Sci. Tec. Nato Advanced Sciences Institute Series, Ser 2 = Nato Asi 2 Nato Advanced Sciences Institute Series, Ser 2 = Nato Asi. 2 Nato and Peace Support Operations 1991-1999: Policies and Doctrines = Cass Ser Peacekeepin Nato and Peace Support Operations 1991-1999: Policies and Doctrines = Cass. Ser. Peacekeepin. Nato and Terrorism - On Scene: New Challenges for First Responders and Civil Protection = Nato Science Peace S Nato and Terrorism - On Scene: New Challenges for First Responders and Civil Protection = Nato Science. Peace. S. NATO ASI Series, Series A Life Sciences = NATO ASI Ser., Ser. A NATO ASI Series, Series A: Life Sciences = NATO ASI Ser., Ser. A NATO ASI Series, Series B Physics = NATO ASI Ser., Ser. B NATO ASI Series, Series B: Physics = NATO ASI Ser., Ser. B NATO ASI Series, Series C Mathematical and Physical Sciences = NATO ASI Ser., Ser. C NATO ASI Series, Series C: Mathematical and Physical Sciences = NATO ASI Ser., Ser. C NATO ASI Series, Series E Applied Physics = NATO ASI Ser., Ser. E NATO ASI Series, Series E: Applied Physics = NATO ASI Ser., Ser. E NATO ASI Series, Series G Ecological Sciences = NATO ASI Ser., Ser. G NATO ASI Series, Series G: Ecological Sciences = NATO ASI Ser., Ser. G NATO ASI Series, Series H Cell Biology = NATO ASI Ser., Ser. H NATO ASI Series, Series H: Cell Biology = NATO ASI Ser., Ser. H NATO ASI Series, Series I: Global Environmental Change = NATO ASI Ser., Ser. I Nato - Challenges of Modern Society = Nato-chal M Nato - Challenges of Modern Society = Nato-chal. M. Nato Challenges of Modern Society = Nato Chal M Nato Challenges of Modern Society = Nato Chal. M. Nato : Economics and Information Directorates = Nato Ec Inf Nato : Economics and Information Directorates = Nato Ec. Inf. Natonal Report on Subacute Care = Natl. Rep. Subacute Care Nato-russia Relations in The Twenty-first Century = Routl Contemp Russ E Nato-russia Relations in The Twenty-first Century = Routl. Contemp. Russ. E. Nato Science for Peace and Security Series A-chemistry and Biology = Nato Scie Peace Secu Nato Science for Peace and Security Series A-chemistry and Biology = Nato Scie. Peace Secu. Nato Science for Peace and Security Series A-chemistry and Biology = Nato Sci Peace Sec A Nato Science for Peace and Security Series A-chemistry and Biology = Nato Sci. Peace Sec. A. Nato Science for Peace and Security Series B - Physics and Biophysics = Nato Science Peace S Nato Science for Peace and Security Series B - Physics and Biophysics = Nato Science Peace S. Nato Science for Peace and Security Series B-physics and Biophysics = Nato Sci Peace Sec B Nato Science for Peace and Security Series B-physics and Biophysics = Nato Sci. Peace Sec. B. Nato Science for Peace and Security Series C-environmental Security = Nato Sci Peace Sec C Nato Science for Peace and Security Series C-environmental Security = Nato Sci. Peace Sec. C. Nato Science for Peace and Security Series C-environmental Security = Nato Sci Peace Secur Nato Science for Peace and Security Series C-environmental Security = Nato Sci. Peace Secur. Nato Science for Peace and Security Series C - Environmental Security = Nato Sci Peace Secur Nato Science for Peace and Security Series C - Environmental Security = Nato Sci. Peace Secur. Nato Science Series Ii-mathematics Physics and Chemistry = Nato Sci Ser Ii-math Nato Science Series Ii-mathematics Physics and Chemistry = Nato Sci. Ser. Ii-math. Nato Science Series Ii-mathematics Physics and Chemistry = Nato Sci Ser Ii Math Nato Science Series Ii-mathematics Physics and Chemistry = Nato Sci. Ser. Ii. Math. Nato Science Series Ii Mathematics Physics and Chemistry = Nato Sci Ser Ii Math Nato Science Series Ii Mathematics Physics and Chemistry = Nato Sci. Ser. Ii Math. Nato Science Series Iv-earth and Environmental Sciences = Nato Sci S Ss Iv Ear Nato Science Series Iv-earth and Environmental Sciences = Nato Sci. S. Ss. Iv. Ear. Nato Science Series Iv Earth and Environmental Sciences = Nato Sci S Ss Iv Ear Nato Science Series Iv Earth and Environmental Sciences = Nato Sci. S. Ss. Iv Ear. Nato Science Series Iv Earth and Environmental Sciences, Series Iv: Earth and Environmental Sciences = Nato Sci S Iv Ear En Nato Science Series Iv Earth and Environmental Sciences, Series Iv: Earth and Environmental Sciences = Nato Sci. S. Iv Ear. En. Nato Science Series, Partnership Sub-series 1: Disarmament Technologies = Nato Sci Prt 1 Disar Nato Science Series, Partnership Sub-series 1: Disarmament Technologies = Nato Sci. Prt. 1. Disar. Nato Science Series, Partnership Sub-series 2: Environmental Security = Nato Sci S Prt 2 Env Nato Science Series, Partnership Sub-series 2: Environmental Security = Nato Sci. S. Prt. 2. Env. Nato Science Series, Partnership Sub-series 3: High Technology = Nato Sci S Prt 3 Hi Nato Science Series, Partnership Sub-series 3: High Technology = Nato Sci. S. Prt. 3. Hi. Nato Science Series, Series A: Life Science = Nato Sci S A Lif Sci Nato Science Series, Series A: Life Science = Nato Sci. S. A. Lif. Sci. Nato Science Series, Series Ii: Mathematics, Physics and Chemistry = Nato Sci Ser Ii Math Nato Science Series, Series Ii: Mathematics, Physics and Chemistry = Nato Sci. Ser. Ii. Math. Nato Science Series, Sub-series Iii: Computer and Systems Sciences = Nato Sc S Ss Iii C S Nato Science Series, Sub-series Iii: Computer and Systems Sciences = Nato Sc. S. Ss. Iii. C. S. Nato Science Series, Sub-series I: Life and Behavioural Sciences = Nato Sci Ser I Life Nato Science Series, Sub-series I: Life and Behavioural Sciences = Nato Sci. Ser. I. Life Nato, Security and Risk Management = Contemp Secur Stud Nato, Security and Risk Management = Contemp. Secur. Stud. Nato Security Through Science Series A: Chemistry and Biology = Nato Security Sci A Nato Security Through Science Series A: Chemistry and Biology = Nato Security Sci. A. Nato Security Through Science Series A-chemistry and Biology = Nato Secur Sci Ser A Nato Security Through Science Series A-chemistry and Biology = Nato Secur. Sci. Ser. A. Nato Security Through Science Series B: Physics and Biophysics = Nato Sec Sci B Phys Nato Security Through Science Series B: Physics and Biophysics = Nato Sec. Sci. B. Phys. Nato Security Through Science Series -- C = Nato Sec Sci Nato Security Through Science Series -- C = Nato Sec. Sci. Nato's Role in European Stability = Csis Rep Nato's Role in European Stability = Csis. Rep. Natsional\cprime naya Akademiya Nauk Armenii = Izv. Nats. Akad. Nauk Armenii Mat. Natsional\cprime naya Akademiya Nauk Ukrainy = Gidromekh. (Kiev) Natsional\cprime naya Akademiya Nauk Ukrainy = Kibernet. Sistem. Anal. Natsional\cprime naya Akademiya Nauk Ukrainy = Problemy Upravlen. Inform. Natura croatica : periodicum Musei Historiae Naturalis Croatici = casopis Hrvatskoga prirodoslovnog muzeja|Nat. Croat. Natural and Anthropogenic Hazards in Karst Areas: Recognition, Analysis and Mitigation = Geol Soc Spec Publ Natural and Anthropogenic Hazards in Karst Areas: Recognition, Analysis and Mitigation = Geol. Soc. Spec. Publ. Natural and Artificial Control of Hearing and Balance = Prog Brain Res Natural and Artificial Control of Hearing and Balance = Prog. Brain. Res. Natural and Artificial Ecosystems = Adv Space Res Natural and Artificial Ecosystems = Adv. Space. Res. Natural and Built Environment Series = Nat Built Environ Se Natural and Built Environment Series = Nat. Built Environ. Se. Natural and Engineered Pest Management Agents = Acs Sym Ser Natural and Engineered Pest Management Agents = Acs. Sym. Ser. Natural and Engineered Resistance to Plant Viruses, Pt Ii = Adv Virus Res Natural and Engineered Resistance to Plant Viruses, Pt Ii = Adv. Virus. Res. Natural and Selected Synthetic Toxins = Acs Sym Ser Natural and Selected Synthetic Toxins = Acs. Sym. Ser. Natural Antioxidants and Anticarcinogens in Nutrition, Health and Disease = Roy Soc Ch Natural Antioxidants and Anticarcinogens in Nutrition, Health and Disease = Roy. Soc. Ch. Natural Areas Journal = Nat Area J Natural Areas Journal = Nat. Area. J. Natural Areas Journal = Nat. Areas J. Natural Attenuation of Environmental Contaminants = Bioremed Ser Natural Attenuation of Environmental Contaminants = Bioremed. Ser. Natural-based Polymers for Biomedical Applications = Woodhead Publ Mater Natural-based Polymers for Biomedical Applications = Woodhead. Publ. Mater. Natural Cement = Am Soc Test Mater Natural Cement = Am. Soc. Test. Mater. Natural Compounds and Their Role in Apoptotic Cell Signaling Pathways = Ann Ny Acad Sci Natural Compounds and Their Role in Apoptotic Cell Signaling Pathways = Ann. Ny. Acad. Sci. Natural Computing in Computational Finance = Stud Comp Intell Natural Computing in Computational Finance = Stud. Comp. Intell. Natural Computing in Computational Finance = Stud Comput Intell Natural Computing in Computational Finance = Stud. Comput. Intell. Natural Computing in Computational Finance, Vol 2 = Stud Comput Intell Natural Computing in Computational Finance, Vol 2 = Stud. Comput. Intell. Natural Computing in Computational Finance, Vol 3 = Stud Comp Intell Natural Computing in Computational Finance, Vol 3 = Stud. Comp. Intell. Natural Computing in Computational Finance, Vol 3 = Stud Comput Intell Natural Computing in Computational Finance, Vol 3 = Stud. Comput. Intell. Natural Computing = Nat Comput Natural Computing = Nat. Comput. Natural Computing, Proceedings = Proc Info Commun Natural Computing, Proceedings = Proc. Info. Commun. Natural Computing = Proc Info Commun Natural Computing = Proc. Info. Commun. Natural Computing Series = Nat Comp Ser Natural Computing Series = Nat. Comp. Ser. Natural Computing Series = Nat Comput Ser Natural Computing Series = Nat. Comput. Ser. Natural Deduction, Hybrid Systems and Modal Logics = Trends Log Stud Log Natural Deduction, Hybrid Systems and Modal Logics = Trends. Log. Stud. Log. Natural Delineation of Human Passions: The Historic Moment of Lyrical Ballads = Dqr Stud Lit Natural Delineation of Human Passions: The Historic Moment of Lyrical Ballads = Dqr. Stud. Lit. Natural Disaster Research Prediction and Mitigation = Nat Disaster Res Pr Natural Disaster Research Prediction and Mitigation = Nat. Disaster Res. Pr. Natural Disasters and Sustainable Development = Environm Sci Natural Disasters and Sustainable Development = Environm. Sci. Natural Disasters and Sustainable Development = Environ Sci-ger Natural Disasters and Sustainable Development = Environ. Sci-ger. Natural Disturbances and Ecosystem-based Forest Management = Mol Cel Hum Natural Disturbances and Ecosystem-based Forest Management = Mol. Cel. Hum. Natural Disturbances and Ecosystem-based Forest Management = Trans Fac For Est Ag Natural Disturbances and Ecosystem-based Forest Management = Trans. Fac. For. Est. Ag. Natural Dyestuffs and Industrial Culture in Europe, 1750-1880 = Eur St Sci Hist Arts Natural Dyestuffs and Industrial Culture in Europe, 1750-1880 = Eur. St. Sci. Hist. Arts. Natural Ethical Facts: Evolution, Connectionism, and Moral Cognition = Bradford Books Natural Ethical Facts: Evolution, Connectionism, and Moral Cognition = Bradford. Books. Natural Experiment On Electoral Law Reform: Evaluating The Long Run Consequence of 1990s Electoral Reform in Italy and Japan = Stud Pub Ch Natural Experiment On Electoral Law Reform: Evaluating The Long Run Consequence of 1990s Electoral Reform in Italy and Japan = Stud. Pub. Ch. Natural Experiment On Electoral Law Reform: Evaluating The Long Run Consequence of 1990s Electoral Reform in Italy and Japan = Stud Public Choice Natural Experiment On Electoral Law Reform: Evaluating The Long Run Consequence of 1990s Electoral Reform in Italy and Japan = Stud. Public. Choice. Natural Experiments: Ecosystem-based Management and The Environment = Am Comp Environ Poli Natural Experiments: Ecosystem-based Management and The Environment = Am. Comp. Environ. Poli. Natural Food Colorants: Science and Technology = Ift Bas Sym Natural Food Colorants: Science and Technology = Ift. Bas. Sym. Natural Gas Conversion Ii = Stud Surf Sci Catal Natural Gas Conversion Ii = Stud. Surf. Sci. Catal. Natural Gas Conversion Iv = Stud Surf Sci Catal Natural Gas Conversion Iv = Stud. Surf. Sci. Catal. Natural Gas Conversion = Stud Surf Sci Catal Natural Gas Conversion = Stud. Surf. Sci. Catal. Natural Gas Conversion Viii, Proceedings of The 8th Natural Gas Conversion Symposium = Stud Surf Sci Catal Natural Gas Conversion Viii, Proceedings of The 8th Natural Gas Conversion Symposium = Stud. Surf. Sci. Catal. Natural Gas Conversion Vii = Stud Surf Sci Catal Natural Gas Conversion Vii = Stud. Surf. Sci. Catal. Natural Gas Conversion V = Stud Surf Sci Catal Natural Gas Conversion V = Stud. Surf. Sci. Catal. Natural Genetic Engineering and Natural Genome Editing = Ann Ny Acad Sci Natural Genetic Engineering and Natural Genome Editing = Ann. Ny. Acad. Sci. Natural Hazards and Earth System Sciences = Nat Hazard Earth Sys Natural Hazards and Earth System Sciences = Nat. Hazard. Earth Sys. Natural Hazards and Earth System Sciences = Nat. Hazards Earth Syst. Sci. Natural Hazards and Oceanographic Processes From Satellite Data = Adv Space Res Natural Hazards and Oceanographic Processes From Satellite Data = Adv. Space. Res. Natural Hazards and Oceanographic Processes From Satellite Data = Adv Space Res-series Natural Hazards and Oceanographic Processes From Satellite Data = Adv. Space. Res-series. Natural Hazards in El Salvador = Geol Soc Am Spec Pap Natural Hazards in El Salvador = Geol. Soc. Am. Spec. Pap. Natural Hazards: Monitoring and Assessment Using Remote Sensing Technique = Adv Space Res Natural Hazards: Monitoring and Assessment Using Remote Sensing Technique = Adv. Space. Res. Natural Hazards = Nat Hazards Natural Hazards = Nat. Hazards Natural Hazards Review = nat. Hazard. Rev. Natural Hazards Review = Nat Hazards Rev Natural Hazards Review = Nat. Hazards Rev. Natural history = Nat Hist Natural History = Nat Hist Natural History = Nat. Hist. Natural History of The Earth: Debating Long-term Change in The Geosphere and Biosphere = Routl Stud Phys Geog Natural History of The Earth: Debating Long-term Change in The Geosphere and Biosphere = Routl. Stud. Phys. Geog. Naturalia Monspeliensia. Serie botanique = Nat Monspel Ser Bot Natural Image Statistics: A Probabilistic Approach to Early Computational Vision = Comput Imaging Vis Natural Image Statistics: A Probabilistic Approach to Early Computational Vision = Comput. Imaging. Vis. Natural Immunity and Cell Growth Regulation = Nat Immun Cell Grow Natural Immunity and Cell Growth Regulation = Nat. Immun. Cell Grow. Natural immunity and cell growth regulation = Nat Immun Cell Growth Regul Natural Immunity and Cell Growth Regulation = Nat. Immun. Cell Growth Regul. Natural immunity = Nat Immun Natural Immunity=Nat Immun;; Natural Immunity = Nat Immun Natural Immunity = Nat. Immun. Natural Intelligence for Scheduling, Planning and Packing Problems = Stud Comput Intell Natural Intelligence for Scheduling, Planning and Packing Problems = Stud. Comput. Intell. Naturalism, Evolution and Mind = Roy I Ph S Naturalism, Evolution and Mind = Roy. I. Ph. S. Naturaliste Canadien = Nat Can Naturaliste Canadien = Nat. Can. Naturaliste Canadien (Québec) = Nat. Can. (Qué.) Naturalistes Belges, Les = Nat. Belg. Naturalistic Decision Making = Exp Res Appl Naturalistic Decision Making = Exp. Res. Appl. Naturalist, The = Naturalist Natural Killer Cell Protocols = Methods Mol Biol Natural Killer Cell Protocols = Methods. Mol. Biol. Natural Language and Information Systems, Proceedings = Lect Notes Comput Sc Natural Language and Information Systems, Proceedings = Lect. Notes. Comput. Sc. Natural Language Engineering = Nat Lang Eng Natural Language Engineering = Nat. Lang. Eng. Natural Language Generation: Proceedings = Lect Notes Artif Int Natural Language Generation: Proceedings = Lect. Notes. Artif. Int. Natural Language & Linguistic Theory = Nat Lang Linguist Th Natural Language & Linguistic Theory = Nat. Lang. Linguist. Th. Natural Language Processing and Information Systems = Lect Notes Comput Sc Natural Language Processing and Information Systems = Lect. Notes. Comput. Sc. Natural Language Processing and Information Systems, Proceedings = Lect Notes Comput Sc Natural Language Processing and Information Systems, Proceedings = Lect. Notes. Comput. Sc. Natural Language Processing - Ijcnlp 2004 = Lect Notes Comput Sc Natural Language Processing - Ijcnlp 2004 = Lect. Notes. Comput. Sc. Natural Language Processing - Ijcnlp 2005, Proceedings = Lect Notes Artif Int Natural Language Processing - Ijcnlp 2005, Proceedings = Lect. Notes. Artif. Int. Natural Language Processing = Lect Notes Artif Int Natural Language Processing = Lect. Notes. Artif. Int. Natural Language Processing-nlp 2000, Proceedings = Lect Notes Artif Int Natural Language Processing-nlp 2000, Proceedings = Lect. Notes. Artif. Int. Natural Language Processing (series) = Nat Lang Proc Natural Language Processing (series) = Nat. Lang. Proc. Natural Language Semantics = Nat Lang Semant Natural Language Semantics = Nat. Lang. Semant. Natural Law and The Possibility of A Global Ethics = Philos Stud Contemp Natural Law and The Possibility of A Global Ethics = Philos. Stud. Contemp. Natural law forum = Nat Law Forum Naturally Occuring Pest Bioregulators = Acs Sym Ser Naturally Occuring Pest Bioregulators = Acs. Sym. Ser. Naturally-produced Organohalogens = Environ Chem Naturally-produced Organohalogens = Environ. Chem. Natural Microporous Materials in Environmental Technology = Nato Adv Sci I E-app Natural Microporous Materials in Environmental Technology = Nato. Adv. Sci. I. E-app. Natural Organic Material Research: Innovations and Applications for Drinking Water = Water Supp Natural Organic Material Research: Innovations and Applications for Drinking Water = Water Supp. Natural Product Chemistry for Drug Discovery = Rsc Biomol Sci Natural Product Chemistry for Drug Discovery = Rsc. Biomol. Sci. Natural Product Communications = Nat Prod Commun Natural Product Communications = Nat. Prod. Commun. Natural product letters = Nat Prod Lett Natural Product Letters = Nat Prod Lett Natural Product Letters = Nat. Prod. Lett. Natural product reports = Nat Prod Rep Natural Product Reports=Nat Prod Rep;; Natural Product Reports = Nat Prod Rep Natural Product Reports = Nat. Prod. Rep. Natural product research = Nat Prod Res Natural Product Research = Nat Prod Res Natural Product Research = Nat. Prod. Res. Natural Product Research Part A: Structure and Synthesis = Nat. Prod. Res., Part A Natural Product Research, Part A: Structure and Synthesis = Nat. Prod. Res., Part A Natural Product Research Part B: Bioactive Natural Products = Nat. Prod. Res. Part B Natural Product Research, Part B: Bioactive Natural Products = Nat. Prod. Res., Part B Natural Products and Molecular Therapy = Ann Ny Acad Sci Natural Products and Molecular Therapy = Ann. Ny. Acad. Sci. Natural Product Sciences = Nat. Prod. Sci. Natural Products Communications = Nat. Prod. Commun. Natural Products Ii = Recent Prog Med Plan Natural Products Ii = Recent. Prog. Med. Plan. Natural Products in The New Millennium: Prospects and Industrial Application = Pr Phyt Soc Natural Products in The New Millennium: Prospects and Industrial Application = Pr. Phyt. Soc. Natural Products I = Recent Prog Med Plan Natural Products I = Recent. Prog. Med. Plan. Natural Products Letters = Nat. Prod. Lett. Natural Products Reports = Nat. Prod. Rep. Natural Products Research Part A: Structure and Synthesis = Nat. Prod. Res., Part A Natural Products Research Part B: Bioactive Natural Products = Nat. Prod. Res. Part B Natural Products Synthesis Ii Targets, Methods, Concepts = Top Curr Chem Natural Products Synthesis Ii Targets, Methods, Concepts = Top. Curr. Chem. Natural Products Synthesis I: Targets Methods Concepts = Top Curr Chem Natural Products Synthesis I: Targets Methods Concepts = Top. Curr. Chem. Natural Products Via Enzymatic Reactions = Top Curr Chem Natural Products Via Enzymatic Reactions = Top. Curr. Chem. Natural Radiation Environment = Aip Conf Proc Natural Radiation Environment = Aip. Conf. Proc. Natural Radiation Environment Vii = Radioactiv Environm Natural Radiation Environment Vii = Radioactiv. Environm. Natural Resistance to Infection = Local Immun Natural Resistance to Infection = Local. Immun. Natural Resource Management and Policy = Nat Res Man Natural Resource Management and Policy = Nat. Res. Man. Natural Resource Management and Policy = Nat Res Manag Policy Natural Resource Management and Policy = Nat. Res. Manag. Policy Natural Resource Modeling = Nat Resour Model Natural Resource Modeling = Nat. Resour. Model. Natural Resource Modeling=Natural Res. Modeling Natural Resource Modeling = Natur. Resource Modeling Natural Resources and Environmental Issues (nrei) = Nat Resour Env Iss Natural Resources and Environmental Issues (nrei) = Nat. Resour. Env. Iss. Natural resources forum = Nat Resour Forum Natural Resources Forum = Nat Resour Forum Natural Resources Forum = Nat. Resour. Forum Natural Resources in Ghana: Management, Policy and Economics = Environ Sci Eng Tech Natural Resources in Ghana: Management, Policy and Economics = Environ. Sci. Eng. Tech. Natural resources journal = Nat Resour J Natural Resources Journal = Nat Resour J Natural Resources Journal = Nat. Resour. J. Natural Resources Journal=Natural Res. J. Natural Resources Lawyer = Nat Resour Law Natural Resources Lawyer = Nat. Resour. Law. Natural Resources Research = Nat. Resour. Res. Natural Rubber Research = Nat. Rubber Res. Natural Science in Archaeology = Nat Sci Arc Natural Science in Archaeology = Nat. Sci. Arc. Natural Science in Archaeology = Nat Sci Archaeol Natural Science in Archaeology = Nat. Sci. Archaeol. Natural Science Journal of Xiangtan University = Natur. Sci. J. Xiangtan Univ. Natural Science Report of the Ochanomizu University = Natur. Sci. Rep. Ochanomizu Univ. Natural Sciences and Mountains = Act Cnss Sc Natural Sciences and Mountains = Act. Cnss. Sc. Natural Sciences Journal of Harbin Normal University = Natur. Sci. J. Harbin Normal Univ. Natural Stone Resources for Historical Monuments = Geol Soc Spec Publ Natural Stone Resources for Historical Monuments = Geol. Soc. Spec. Publ. Natural Structural Biology = Nat. Struct. Biol. Natural Theology Versus Theology of Nature? = Theol Bilb Natural Theology Versus Theology of Nature? = Theol. Bilb. Natural Toxins 2 = Adv Exp Med Biol Natural Toxins 2 = Adv. Exp. Med. Biol. Natural toxins = Nat Toxins Natural Toxins=Nat Toxins;; Natural Toxins = Nat Toxins Natural Toxins = Nat. Toxins Natural Working Fluids'98: Iir - Gustav Lorentzen Conference = Refr Sci T Natural Working Fluids'98: Iir - Gustav Lorentzen Conference = Refr. Sci. T. Natural Zeolites: Occurrence, Properties, Applications = Rev Mineral Geochem Natural Zeolites: Occurrence, Properties, Applications = Rev. Mineral. Geochem. Natura = Natura Natur Des Schlechten Bei Proklos = Quellen Stud Philos Natur Des Schlechten Bei Proklos = Quellen. Stud. Philos. Nature After The Genome = Sociol Rev Monogr Nature After The Genome = Sociol. Rev. Monogr. Nature and Culture in America = Nat Cult Am Nature and Culture in America = Nat. Cult. Am. Nature and environment = Nat. environ. Nature and Evolutionary Status of Herbig Ae/be Stars = Astr Soc P Nature and Evolutionary Status of Herbig Ae/be Stars = Astr. Soc. P. Nature and Evolution of Disks Around Hot Stars = Astr Soc P Nature and Evolution of Disks Around Hot Stars = Astr. Soc. P. Nature and Life in Southeast Asia = Nat. Life Southeast Asia Nature and Origin of Amyloid Fibrils = Ciba F Symp Nature and Origin of Amyloid Fibrils = Ciba. F. Symp. Nature and Origin of Compression in Passive Margins = Geol Soc Spec Publ Nature and Origin of Compression in Passive Margins = Geol. Soc. Spec. Publ. Nature and Resources = Nat. Resources Nature and system = Nat Syst Nature and Tectonic Significance of Fault Zone Weakening = Geol Soc Spec Publ Nature and Tectonic Significance of Fault Zone Weakening = Geol. Soc. Spec. Publ. Nature As Model: Salomon De Caus and Early Seventeenth-century Landscape Design = Penn Stud Landsc Arc Nature As Model: Salomon De Caus and Early Seventeenth-century Landscape Design = Penn. Stud. Landsc. Arc. Nature-based Tourism, Environment and Land Management = Ecotourism Nature-based Tourism, Environment and Land Management = Ecotourism. Nature biotechnology = Nat Biotechnol Nature Biotechnology=Nat Biotechnol;; Nature Biotechnology = Nat Biotechnol Nature Biotechnology = Nat. Biotechnol. Nature = Cah Rev The Nature = Cah. Rev. The. Nature cell biology = Nat Cell Biol Nature Cell Biology = Nat Cell Biol Nature Cell Biology = Nat. Cell Biol. Nature chemical biology = Nat Chem Biol Nature Chemical Biology = Nat Chem Biol Nature Chemical Biology = Nat. Chem. Biol. Nature Chemistry = Nat Chem Nature Chemistry = Nat. Chem. Nature Climate Change = Nat Clim Change Nature Climate Change = Nat. Clim. Change Nature Clinical Practice Cardiovascular Medicine = Nat Clin Pract Card Nature Clinical Practice Cardiovascular Medicine = Nat. Clin. Pract. Card. Nature clinical practice. Cardiovascular medicine = Nat Clin Pract Cardiovasc Med Nature Clinical Practice. Cardiovascular Medicine = Nat. Clin. Pract. Cardiovasc. Med. Nature Clinical Practice. Endocrinology and Metabolism = Nat. Clin. Pract. Endocrinol. Metab. Nature Clinical Practice Endocrinology & Metabolism = Nat Clin Pract Endoc Nature Clinical Practice Endocrinology & Metabolism = Nat. Clin. Pract. Endoc. Nature clinical practice. Endocrinology & metabolism = Nat Clin Pract Endocrinol Metab Nature Clinical Practice. Gastroenterology and Hepatology = Nat. Clin. Pract. Gastroenterol. Hepatol. Nature Clinical Practice Gastroenterology & Hepatology = Nat Clin Pract Gastr Nature Clinical Practice Gastroenterology & Hepatology = Nat. Clin. Pract. Gastr. Nature clinical practice. Gastroenterology & hepatology = Nat Clin Pract Gastroenterol Hepatol Nature Clinical Practice Nephrology = Nat Clin Pract Nephr Nature Clinical Practice Nephrology = Nat. Clin. Pract. Nephr. Nature clinical practice. Nephrology = Nat Clin Pract Nephrol Nature Clinical Practice. Nephrology = Nat. Clin. Pract. Nephrol. Nature Clinical Practice Neurology = Nat Clin Pract Neuro Nature Clinical Practice Neurology = Nat. Clin. Pract. Neuro. Nature clinical practice. Neurology = Nat Clin Pract Neurol Nature Clinical Practice. Neurology = Nat. Clin. Pract. Neurol. Nature clinical practice. Oncology = Nat Clin Pract Oncol Nature Clinical Practice Oncology = Nat Clin Pract Oncol Nature Clinical Practice Oncology = Nat. Clin. Pract. Oncol. Nature Clinical Practice. Oncology = Nat. Clin. Pract. Oncol. Nature Clinical Practice Rheumatology = Nat Clin Pract Rheum Nature Clinical Practice Rheumatology = Nat. Clin. Pract. Rheum. Nature clinical practice. Rheumatology = Nat Clin Pract Rheumatol Nature Clinical Practice. Rheumatology = Nat. Clin. Pract. Rheumatol. Nature clinical practice. Urology = Nat Clin Pract Urol Nature Clinical Practice Urology = Nat Clin Pract Urol Nature Clinical Practice Urology = Nat. Clin. Pract. Urol. Nature Clinical Practice. Urology = Nat. Clin. Pract. Urol. Nature Communications = Nat Commun Nature Communications = Nat. Commun. Nature Conservation 2 : The Role of Corridors = Nat Conserv Ser Nature Conservation 2 : The Role of Corridors = Nat. Conserv. Ser. Nature Conservation 4: The Role of Networks = Nat Conserv Ser Nature Conservation 4: The Role of Networks = Nat. Conserv. Ser. Nature Conservation Series = Nat Conserv Ser Nature Conservation Series = Nat. Conserv. Ser. Nature + Culture = Nat Cult Nature + Culture = Nat. Cult. Nature, Environment and Pollution Technology = Nat. Environ. Pollut. Technol. Nature et Progrès = Nat. Prog. Nature genetics = Nat Genet Nature Genetics=Nat Genet;; Nature Genetics = Nat Genet Nature Genetics = Nat. Genet. Nature Geoscience = Nat Geosci Nature Geoscience = Nat. Geosci. Nature Helps... How Plants and Other Organisms Contribute to Solve Health Problems = Parasitol Res Mg Nature Helps... How Plants and Other Organisms Contribute to Solve Health Problems = Parasitol. Res. Mg. Nature immunology = Nat Immunol Nature Immunology = Nat Immunol Nature Immunology = Nat. Immunol. Nature Information = Nat. Inf. Nature-inspired Algorithms for Optimisation = Stud Comput Intell Nature-inspired Algorithms for Optimisation = Stud. Comput. Intell. Nature Inspired Cooperative Strategies for Optimization (nicso 2007) = Stud Comp Intell Nature Inspired Cooperative Strategies for Optimization (nicso 2007) = Stud. Comp. Intell. Nature Inspired Cooperative Strategies for Optimization (nicso 2007) = Stud Comput Intell Nature Inspired Cooperative Strategies for Optimization (nicso 2007) = Stud. Comput. Intell. Nature Inspired Problem-solving Methods in Knowledge Engineering, Pt 2, Proceedings = Lect Notes Comput Sc Nature Inspired Problem-solving Methods in Knowledge Engineering, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Nature, Knowledge and Negation = Curr Perspect Soc Th Nature, Knowledge and Negation = Curr. Perspect. Soc. Th. Nature, London = Nature (London) Nature (London, United Kingdom) = Nature (London, U. K.) Nature materials = Nat Mater Nature Materials = Nat Mater Nature Materials = Nat. Mater. Nature medicine = Nat Med Nature Medicine=Nat Med;; Nature Medicine = Nat Med Nature Medicine = Nat. Med. Nature Medicine (New York, NY, United States) = Nat. Med. (N. Y., NY, U. S.) Nature methods = Nat Methods Nature Methods = Nat Methods Nature Methods = Nat. Methods Nature Nanotechnology = Nat Nanotechnol Nature Nanotechnology = Nat. Nanotechnol. Nature = Nat Nature=Nature;; Nature = Nature Nature neuroscience = Nat Neurosci Nature Neuroscience = Nat Neurosci Nature Neuroscience = Nat. Neurosci. Nature: New biology = Nat New Biol Nature-new Biology = Nature-new Biol Nature-new Biology = Nature-new Biol. Nature. New Biology = Nature. New Biol. Nature of Asian Firms: An Evolutionary Perspective = Chandos Asian Stud Nature of Asian Firms: An Evolutionary Perspective = Chandos. Asian Stud. Nature of Light: Light in Nature Ii = Proc Spie Nature of Light: Light in Nature Ii = Proc. Spie. Nature of Light: Light in Nature = P Soc Photo-opt Ins Nature of Light: Light in Nature = P. Soc. Photo-opt. Ins. Nature of Light: What Are Photons? = Proc Spie Nature of Light: What Are Photons? = Proc. Spie. Nature of Light: What Are Photons? = P Soc Photo-opt Ins Nature of Light: What Are Photons? = P. Soc. Photo-opt. Ins. Nature of Light: What Is A Photon? = Proc Spie Nature of Light: What Is A Photon? = Proc. Spie. Nature of Light: What Is A Photon? = P Soc Photo-opt Ins Nature of Light: What Is A Photon? = P. Soc. Photo-opt. Ins. Nature of Remembering = Sci Con Ser Nature of Remembering = Sci. Con. Ser. Nature of Stalin's Dictatorship: The Politburo, 1928-1953 = Stud Russ E Eur Hist Nature of Stalin's Dictatorship: The Politburo, 1928-1953 = Stud. Russ. E. Eur. Hist. Nature of The Self-recognition in The Form of Right and Morality = Quellen Stud Philos Nature of The Self-recognition in The Form of Right and Morality = Quellen. Stud. Philos. Nature of The Word: Studies in Honor of Paul Kiparsky = Curr Stud Linguist Nature of The Word: Studies in Honor of Paul Kiparsky = Curr. Stud. Linguist. Nature of Time: Geometry, Physics and Perception = Nato Sci Ser Ii-math Nature of Time: Geometry, Physics and Perception = Nato. Sci. Ser. Ii-math. Nature of Time: Geometry, Physics and Perception = Nato Sci Ser Ii Math Nature of Time: Geometry, Physics and Perception = Nato. Sci. Ser. Ii. Math. Nature of Unidentified Galactic High-energy Gamma-ray Sources = Astrophys Space Sc L Nature of Unidentified Galactic High-energy Gamma-ray Sources = Astrophys. Space. Sc. L. Nature, Paris = Nature (Paris) Nature Performed: Environment, Culture and Performance = Sociol Rev Monogr Nature Performed: Environment, Culture and Performance = Sociol. Rev. Monogr. Nature Performed: Environment, Culture and Performance = Soc Rev Mon Nature Performed: Environment, Culture and Performance = Soc. Rev. Mon. Nature Photonics = Nat Photonics Nature Photonics = Nat. Photonics Nature-physical Science = Nature-phys Sci Nature-physical Science = Nature-phys. Sci. Nature Physics = Nat Phys Nature Physics = Nat. Phys. Nature protocols = Nat Protoc Nature Protocols = Nat Protoc Nature Protocols = Nat. Protoc. Nature, Raw Materials, and Political Economy = Res Rural Sociol Dev Nature, Raw Materials, and Political Economy = Res. Rural. Sociol. Dev. Nature & Resources = Nature Resour Nature & Resources = Nature Resour. Nature reviews. Cancer = Nat Rev Cancer Nature Reviews Cancer = Nat Rev Cancer Nature Reviews Cancer = Nat. Rev. Cancer Nature Reviews. Cancer = Nat. Rev. Cancer Nature Reviews Cardiology = Nat Rev Cardiol Nature Reviews Cardiology = Nat. Rev. Cardiol. Nature Reviews Clinical Oncology = Nat Rev Clin Oncol Nature Reviews Clinical Oncology = Nat. Rev. Clin. Oncol. Nature reviews. Drug discovery = Nat Rev Drug Discov Nature Reviews Drug Discovery = Nat Rev Drug Discov Nature Reviews Drug Discovery = Nat. Rev. Drug Discov. Nature Reviews. Drug Discovery = Nat. Rev. Drug Discov. Nature Reviews Drug Discovery = Nat. Rev. Drug Discovery Nature Reviews Endocrinology = Nat Rev Endocrinol Nature Reviews Endocrinology = Nat. Rev. Endocrinol. Nature Reviews Endrocrinology = Nat. Rev. Endocrinol. Nature Reviews Gastroenterology & Hepatology = Nat Rev Gastro Hepat Nature Reviews Gastroenterology & Hepatology = Nat. Rev. Gastro. Hepat. Nature reviews. Genetics = Nat Rev Genet Nature Reviews Genetics = Nat Rev Genet Nature Reviews Genetics = Nat. Rev. Genet. Nature Reviews. Genetics = Nat. Rev. Genet. Nature reviews. Immunology = Nat Rev Immunol Nature Reviews Immunology = Nat Rev Immunol Nature Reviews Immunology = Nat. Rev. Immunol. Nature Reviews. Immunology = Nat. Rev. Immunol. Nature reviews. Microbiology = Nat Rev Microbiol Nature Reviews Microbiology = Nat Rev Microbiol Nature Reviews Microbiology = Nat. Rev. Microbiol. Nature Reviews. Microbiology = Nat. Rev. Microbiol. Nature Reviews Molecular Cell Biology = Nat Rev Mol Cell Bio Nature Reviews Molecular Cell Biology = Nat. Rev. Mol. Cell Bio. Nature reviews. Molecular cell biology = Nat Rev Mol Cell Biol Nature Reviews Molecular Cell Biology = Nat. Rev. Mol. Cell Biol. Nature Reviews. Molecular Cell Biology = Nat. Rev. Mol. Cell Biol. Nature Reviews Nephrology = Nat Rev Nephrol Nature Reviews Nephrology = Nat. Rev. Nephrol. Nature Reviews Neurology = Nat Rev Neurol Nature Reviews Neurology = Nat. Rev. Neurol. Nature reviews. Neuroscience = Nat Rev Neurosci Nature Reviews Neuroscience = Nat Rev Neurosci Nature Reviews Neuroscience = Nat. Rev. Neurosci. Nature Reviews. Neuroscience = Nat. Rev. Neurosci. Nature Reviews Rheumatology = Nat Rev Rheumatol Nature Reviews Rheumatology = Nat. Rev. Rheumatol. Nature Reviews Urology = Nat Rev Urol Nature Reviews Urology = Nat. Rev. Urol. Nature, Ritual, and Society in Japan's Ryukyu Islands = Jpn Anthropol Worksh Nature, Ritual, and Society in Japan's Ryukyu Islands = Jpn. Anthropol. Worksh. Nature, Society and Environmental Crisis = Sociol Rev Monogr Nature, Society and Environmental Crisis = Sociol. Rev. Monogr. Nature's Principles = Logic Epistemol Unit Nature's Principles = Logic. Epistemol. Unit. Natures Principles = Logic Epistemol Unit Natures Principles = Logic. Epistemol. Unit. Nature Structural and Molecular Biology = Nat. Struct. Mol. Biol. Nature structural biology = Nat Struct Biol Nature Structural Biology=Nat Struct Biol;; Nature Structural Biology = Nat Struct Biol Nature Structural Biology = Nat. Struct. Biol. Nature structural & molecular biology = Nat Struct Mol Biol Nature Structural & Molecular Biology = Nat Struct Mol Biol Nature Structural & Molecular Biology = Nat. Struct. Mol. Biol. Nature, Technology and Cultural Change in Twentieth-century German Literature: The Challenge of Ecocriticism = New Perspect Ger Stu Nature, Technology and Cultural Change in Twentieth-century German Literature: The Challenge of Ecocriticism = New. Perspect. Ger. Stu. Nature, Value, Duty: Life On Earth With Holmes Rolston, Iii = Int Libr Environ Agr Nature, Value, Duty: Life On Earth With Holmes Rolston, Iii = Int. Libr. Environ. Agr. Natureza & Conservacao = Nat Conservacao Natureza & Conservacao = Nat. Conservacao Naturlichkeit = Grundthemen Philos Naturlichkeit = Grundthemen. Philos. Naturopa = Naturopa Naturschutz heute = Nat.schutz heute Naturschutz und Landschaftspflege in Hamburg = Nat.schutz Landsch.pfl. Hambg. Naturschutz und Landschaftspflege in Niedersachsen = Nat.schutz Landsch.pfl. Niedersachs. Naturschutz und Landschaftsplanung = Nat.schutz Landsch.plan. Natur, Technik, Geist = Quellen Stud Philos Natur, Technik, Geist = Quellen. Stud. Philos. Natur und Landschaft = Nat. Landsch. Natur- und Landschaftsschutzgebiete Baden-Württembergs = Nat.- Landsch.schutzgeb. Baden-Württ. Natur und Mensch = Nat. Mensch Natur und Museum = Nat. Mus. Natur und Museum = Natur Mus Natur und Naturschutz in Mecklenburg = Nat. Nat.schutz Mecklenbg. Natur und Philosophie = Nat. Philos. Natur und Technik = Nat. Tech. Naturwissenschaften, Die = Naturwissenschaften Naturwissenschaften=Naturwissenschaften;; Naturwissenschaften = Naturwissenschaften Naturwissenschaft im Unterricht Chemie = Naturwiss. Unterr. Chem. Naturwissenschaft im Unterricht Physik = Naturwiss. Unterr. Phys. Naturwissenschaftliche Rundschau = Naturwiss Rundsch Naturwissenschaftliche Rundschau = Naturwiss. Rundschau Naturwissenschaftliche Rundschau = Nat.wiss. Rundsch. Naturwissenschaftliche Wochenschrift = Naturwiss. Wochenschr. Naturzustandstheorie Des Thomas Hobbes = Quellen Stud Philos Naturzustandstheorie Des Thomas Hobbes = Quellen. Stud. Philos. Nauchni trudove na Meditsinskata akademiia "Vulko Chervenkov" = Nauchni Tr Med Acad Vulko Chervenkov Nauchni Trudove na Nauchno-Izsledovatelskiia Stomatologichen Institut = Nauchni Tr. Nauchnoizsled. Stomatol. Inst. (Sofiia) Nauchni trudove na Visshiia meditsinski institut, Sofiia = Nauchni Tr Vissh Med Inst Sofiia Nauchni Trudove na Visshiia Meditsinski Institut, Sofiia = Nauchni Tr. Vissh. Med. Inst. Sofiia Nauchni trudove. Sofia. Nauchno-izsledovatelski stomatologichen institut = Nauchni Tr Nauchnoizsled Stomatol Inst (Sofiia) Nauchno-tekhnicheskaya Informatsiya = Nauchno-tekhn Inform Nauchno-tekhnicheskaya Informatsiya = Nauchno-tekhn. Inform. Nauchno-tekhnicheskaya Informatsiya Seriya 1-organizatsiya I Metodika Informatsionnoi Raboty = Nauch-tekhn Inform 1 Nauchno-tekhnicheskaya Informatsiya Seriya 1-organizatsiya I Metodika Informatsionnoi Raboty = Nauch-tekhn. Inform. 1. Nauchno-tekhnicheskaya Informatsiya Seriya 2-informatsionnye Protsessy I Sistemy = Nauch-tekhn Inform 2 Nauchno-tekhnicheskaya Informatsiya Seriya 2-informatsionnye Protsessy I Sistemy = Nauch-tekhn. Inform. 2. Nauchnye doklady vysshei shkoly. Biologicheskie nauki = Nauchnye Doki Vyss Shkoly Biol Nauki Naunyn-Schmiedeberg's archives of pharmacology = Naunyn Schmiedebergs Arch Pharmacol Naunyn-Schmiedeberg's Archives of Pharmacology = Naunyn-Schmiedeberg's Arch. Pharmacol. Naunyn-Schmiedeberg's Archives of Pharmacology = Naunyn. Schmiedebergs Arch. Pharmacol. Naunyn-Schmiedebergs Archives of Pharmacology=Naunyn Schmiedebergs Arch Pharmacol;; Naunyn-schmiedebergs Archives of Pharmacology = N-s Arch Pharmacol Naunyn-schmiedebergs Archives of Pharmacology = N-s. Arch. Pharmacol. Naunyn-Schmiedebergs Archiv fur Experimentelle Pathologie und Pharmacologie = Naunyn-Schmiedeberg's Arch. Exp. Pathol. Pharmacol. Naunyn-Schmiedebergs Archiv fur experimentelle Pathologie und Pharmakologie = Naunyn Schmiedebergs Arch Exp Pathol Pharmakol Naunyn-Schmiedebergs Archiv fur Experimentelle Pathologie und Pharmakologie = Naunyn. Schmiedebergs Arch. Exp. Pathol. Pharmakol. Naunyn-schmiedebergs Archiv Fur Experimentelle Pathologie Und Pharmakologie = N-s Arch Ex Path Ph Naunyn-schmiedebergs Archiv Fur Experimentelle Pathologie Und Pharmakologie = N-s. Arch. Ex. Path. Ph. Naunyn-schmiedebergs Archiv Fur Experimentelle Pathologie Und Pharmakologi = N-s Arch Ex Path Ph Naunyn-schmiedebergs Archiv Fur Experimentelle Pathologie Und Pharmakologi = N-s. Arch. Ex. Path. Ph. Naunyn-Schmiedebergs Archiv fur Pharmakologie = Naunyn Schmiedebergs Arch Pharmakol Naunyn-Schmiedebergs Archiv fur Pharmakologie = Naunyn. Schmiedebergs Arch. Pharmakol. Naunyn-schmiedebergs Archiv Fur Pharmakologie = N-s Arch Pharmakol Naunyn-schmiedebergs Archiv Fur Pharmakologie = N-s. Arch. Pharmakol. Naunyn-Schmiedebergs Archiv fur Pharmakologie und experimentelle Pathologie = Naunyn Schmiedebergs Arch Pharmakol Exp Pathol Nautiloids Before and During The Origin of Ammonoids in A Siluro-devonian Section in The Tafilalt, Anti-atlas, Morocco = Spec Pap Palaeontol Nautiloids Before and During The Origin of Ammonoids in A Siluro-devonian Section in The Tafilalt, Anti-atlas, Morocco = Spec. Pap. Palaeontol. Nautilus = Nautilus Naval Architect = Nav Archit Naval Architect = Nav. Archit. Naval Blockades and Seapower - Strategies and Counter-strategies, 1805-2005 = Cass Ser Nav Policy Naval Blockades and Seapower - Strategies and Counter-strategies, 1805-2005 = Cass. Ser. Nav. Policy. Naval Coalition Warfare: From The Napoleonic War to Operation Iraqi Freedom = Cass Ser Nav Policy Naval Coalition Warfare: From The Napoleonic War to Operation Iraqi Freedom = Cass. Ser. Nav. Policy. Naval Engineers Journal = Nav Eng J Naval Engineers Journal = Nav. Eng. J. Naval Peacekeeping and Humanitarian Operations: Stability From The Sea = Cass Ser Nav Pol His Naval Peacekeeping and Humanitarian Operations: Stability From The Sea = Cass. Ser. Nav. Pol. His. Naval Research Logistics = Naval Res. Logist. Naval Research Logistics = Nav Res Log Naval Research Logistics = Nav. Res. Log. Naval Research Logistics = Nav. Res. Logist. Naval Research Logistics Quarterly = Nav Res Logist Q Naval Research Logistics Quarterly = Nav. Res. Logist. Q. Naval Research Reviews = Nav Res Rev Naval Research Reviews = Nav. Res. Rev. Naval review (Annapolis, Md.) = Nav Rev Naval Ship Systems Command Technical News = Naval Ship Syst C T Naval Ship Systems Command Technical News = Naval Ship Syst. C. T. Naval War College Historical Monograph Series = Nwc Hist Mg Naval War College Historical Monograph Series = Nwc. Hist. Mg. Navier-stokes Equations Ii - Theory and Numerical Methods = Lect Notes Math Navier-stokes Equations Ii - Theory and Numerical Methods = Lect. Notes. Math. Navier-stokes Equations: Theory and Numerical Methods = Lect Notes Pure Appl Navier-stokes Equations: Theory and Numerical Methods = Lect. Notes. Pure. Appl. Navigating Sovereignty: World Politics Lost in China = Comp Perspect Mod As Navigating Sovereignty: World Politics Lost in China = Comp. Perspect. Mod. As. Navigating Time and Space in Population Studies = Int Stud Popul Navigating Time and Space in Population Studies = Int. Stud. Popul. Navigation and Control Technologies for Unmanned Systems Ii = P Soc Photo-opt Ins Navigation and Control Technologies for Unmanned Systems Ii = P. Soc. Photo-opt. Ins. Navigation and Control Technologies for Unmanned Systems = P Soc Photo-opt Ins Navigation and Control Technologies for Unmanned Systems = P. Soc. Photo-opt. Ins. Navigation Signal Processing for Gnss Software Receivers = Artech Hse Gnss Tech Navigation Signal Processing for Gnss Software Receivers = Artech. Hse. Gnss Tech. Navy medicine = Navy Med Navy Medicine = Navy Med. Nazism in Syria and Lebanon: The Ambivalence of The German Option, 1933-1945 = Soas-rout Stud Mid E Nazism in Syria and Lebanon: The Ambivalence of The German Option, 1933-1945 = Soas-rout. Stud. Mid. E. Nbc Risks: Current Capabilities and Future Perspectives for Protection = Nato Sci S 1 Disarm Nbc Risks: Current Capabilities and Future Perspectives for Protection = Nato. Sci. S. 1. Disarm. Nber Comparative Labor Markets Series = Nber Compa Labor Mar Nber Comparative Labor Markets Series = Nber Compa. Labor Mar. Nber-east Asia Seminar On Economics = Nber E A Ec Nber-east Asia Seminar On Economics = Nber. E. A. Ec. Nber Frontiers in Health Policy Research = Nber Fr Hlth Pol Res Nber Frontiers in Health Policy Research = Nber Fr. Hlth. Pol. Res. Nber General Series-national Bureau of Economic Research = Nber Gen Ser-nat Bur Nber General Series-national Bureau of Economic Research = Nber Gen. Ser-nat. Bur. Nber International Seminar On Macroeconomics 2007 = Nber Int Sem Mac Nber International Seminar On Macroeconomics 2007 = Nber Int. Sem. Mac. Nber International Seminar On Macroeconomics 2009 = Nber Int Sem Mac Nber International Seminar On Macroeconomics 2009 = Nber Int. Sem. Mac. Nber International Seminar On Macroeconomics = Nber Int Sem Mac Nber International Seminar On Macroeconomics = Nber Int. Sem. Mac. Nber Macoeconomics Annual 2004 = Nber Macroecon Ann Nber Macoeconomics Annual 2004 = Nber Macroecon. Ann. Nber Macroeconomics Annual 1990 = Nber Macroecon Ann Nber Macroeconomics Annual 1990 = Nber Macroecon. Ann. Nber Macroeconomics Annual 1997 = Nber Macroecon Ann Nber Macroeconomics Annual 1997 = Nber Macroecon. Ann. Nber Macroeconomics Annual 1997 = Nber Macroecon Annu Nber Macroeconomics Annual 1997 = Nber Macroecon. Annu. Nber Macroeconomics Annual 1998 = Nber Macroecon Ann Nber Macroeconomics Annual 1998 = Nber Macroecon. Ann. Nber Macroeconomics Annual 1998 = Nber Macroecon Annu Nber Macroeconomics Annual 1998 = Nber Macroecon. Annu. Nber Macroeconomics Annual 1999 = Nber Macroecon Ann Nber Macroeconomics Annual 1999 = Nber Macroecon. Ann. Nber Macroeconomics Annual 1999 = Nber Macroecon Annu Nber Macroeconomics Annual 1999 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2000 = Nber Macroecon Ann Nber Macroeconomics Annual 2000 = Nber Macroecon. Ann. Nber Macroeconomics Annual 2000 = Nber Macroecon Annu Nber Macroeconomics Annual 2000 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2001 = Nber Macroecon Ann Nber Macroeconomics Annual 2001 = Nber Macroecon. Ann. Nber Macroeconomics Annual 2001 = Nber Macroecon Annu Nber Macroeconomics Annual 2001 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2003 = Nber Macroecon Ann Nber Macroeconomics Annual 2003 = Nber Macroecon. Ann. Nber Macroeconomics Annual 2003 = Nber Macroecon Annu Nber Macroeconomics Annual 2003 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2004 = Nber Macroecon Ann Nber Macroeconomics Annual 2004 = Nber Macroecon. Ann. Nber Macroeconomics Annual 2005 = Nber Macroecon Annu Nber Macroeconomics Annual 2005 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2006 = Nber Macroecon Annu Nber Macroeconomics Annual 2006 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2007 = Nber Macroecon Annu Nber Macroeconomics Annual 2007 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2009 = Nber Macroecon Annu Nber Macroeconomics Annual 2009 = Nber Macroecon. Annu. Nber Macroeconomics Annual 2010 = Nber Macroecon Annu Nber Macroeconomics Annual 2010 = Nber Macroecon. Annu. Nber Macroeconomics Annual = Nber Macroecon Ann Nber Macroeconomics Annual = Nber Macroecon. Ann. Nber Macroeconomics Annual = Nber Macroecon Annu Nber Macroeconomics Annual = Nber Macroecon. Annu. Nber Occasional Papers-national Bureau of Economic Research = Nber Occas Pap-nat B Nber Occasional Papers-national Bureau of Economic Research = Nber Occas. Pap-nat. B. Nbs Monograph = Natl Bur Stand Monog Nbs Monograph = Natl. Bur. Stand. Monog. NCCE news = NCCE News NCI monographs : a publication of the National Cancer Institute = NCI Monogr NCI Monographs = NCI Monogr. NCP bulletin / Nutrition Center of the Philippines = NCP Bull Ncpv Photovoltaics Program Review = Aip Conf Proc Ncpv Photovoltaics Program Review = Aip. Conf. Proc. Ncrp Proceedings = Ncrp Proc Ncrp Proceedings = Ncrp Proc. Ncrp Symposium Proceedings = Ncrp Symp Proc Ncrp Symposium Proceedings = Ncrp Symp. Proc. NCSDHA Dental Hygienist = NCSDHA Dent. Hyg. NCSL legisbrief = NCSL Legisbrief NDA journal = NDA J NDA Journal = NDA J. NDT and E International = NDT and E Int. Ndt & E International = Ndt&e Int Ndt & E International = Ndt&e. Int. Ndt International = Ndt Int Ndt International = Ndt Int. NDT International = NDT Int. Neanderthal Lifeways, Subsistence and Technology: One Hundred Fifty Years of Neanderthal Study = Vertebr Paleobiol Pa Neanderthal Lifeways, Subsistence and Technology: One Hundred Fifty Years of Neanderthal Study = Vertebr. Paleobiol. Pa. Neanderthals Revisited: New Approaches and Perspectives = Vertebr Paleobiol Pa Neanderthals Revisited: New Approaches and Perspectives = Vertebr. Paleobiol. Pa. Nearby Large-scale Structures and The Zone of Avoidance = Astr Soc P Nearby Large-scale Structures and The Zone of Avoidance = Astr. Soc. P. Near-earth Laser Communications = Opt Sci Eng-crc Near-earth Laser Communications = Opt. Sci. Eng-crc. Near-earth Objects = Ann Ny Acad Sci Near-earth Objects = Ann. Ny. Acad. Sci. Near-earth Objects, Impact Hazards, and The Mars International Program = Adv Space Res Near-earth Objects, Impact Hazards, and The Mars International Program = Adv. Space. Res. Near-earth Objects, Impact Hazards, and The Mars International Program = Adv Space Res-series Near-earth Objects, Impact Hazards, and The Mars International Program = Adv. Space. Res-series. Near-earth Radiation Environment Including Time Variations and Secondary Radiation = Adv Space Res Near-earth Radiation Environment Including Time Variations and Secondary Radiation = Adv. Space. Res. Near Eastern Archaeology = Near East Archaeol Near Eastern Archaeology = Near East. Archaeol. Near-field Characterization of Micro/nano-scaled Fluid Flows = Exp Fluid Mech Near-field Characterization of Micro/nano-scaled Fluid Flows = Exp. Fluid Mech. Near-field Optics and Surface Plasmon Polaritons = Top Appl Phys Near-field Optics and Surface Plasmon Polaritons = Top. Appl. Phys. Near-field Optics: Physics, Devices, and Information Processing = Proc Spie Near-field Optics: Physics, Devices, and Information Processing = Proc. Spie. Near-field Optics: Physics, Devices, and Information Processing = P Soc Photo-opt Ins Near-field Optics: Physics, Devices, and Information Processing = P. Soc. Photo-opt. Ins. Near-field Optics = P Soc Photo-opt Ins Near-field Optics = P. Soc. Photo-opt. Ins. Near-infrared Dyes for High Technology Applications = Nato Asi 3 High Tech Near-infrared Dyes for High Technology Applications = Nato. Asi. 3. High Tech. Near Infra-red Spectroscopy = Ellis Hor S Near Infra-red Spectroscopy = Ellis. Hor. S. Near-rings and Near-fields = Math Appl Near-rings and Near-fields = Math. Appl. Nearrings, Nearfields, and K-loops = Math Appl Nearrings, Nearfields, and K-loops = Math. Appl. Nearshore and Estuarine Cohesive Sediment Transport = Coast Estuar Stud Nearshore and Estuarine Cohesive Sediment Transport = Coast. Estuar. Stud. Near-space Remote Sensing: Potential and Challenges = Sprbrief Elect Near-space Remote Sensing: Potential and Challenges = Sprbrief. Elect. Near Surface Geophysics = Near Surf Geophys Near Surface Geophysics = Near Surf. Geophys. Near-wall Turbulence = P Int C Hea Near-wall Turbulence = P. Int. C. Hea. Nebraska history = Nebr Hist Nebraska Journal of Economics and Business=Nebr. J. Econ. Bus. Nebraska Journal of Economics and Business = Nebr J Econ Bus Nebraska Journal of Economics and Business = Nebr. J. Econ. Bus. Nebraska law review = Neb Law Rev Nebraska Medical Journal = Nebr. Med. J. Nebraska nurse = Nebr Nurse Nebraska Nurse = Nebr. Nurse Nebraska State Medical Journal = Nebr. State Med. J. Nebraska Symposium On Information Technology in Education = Nebr Symp Inf Tech E Nebraska Symposium On Information Technology in Education = Nebr. Symp. Inf. Tech. E. Nebraska Symposium On Motivation 1988 = Nebr Sym Motiv Nebraska Symposium On Motivation 1988 = Nebr. Sym. Motiv. Nebraska Symposium On Motivation 1990 = Nebr Sym Motiv Nebraska Symposium On Motivation 1990 = Nebr. Sym. Motiv. Nebraska Symposium on Motivation. Nebraska Symposium on Motivation = Nebr Symp Motiv Nebraska Symposium On Motivation = Nebr Sym Motiv Nebraska Symposium On Motivation = Nebr. Sym. Motiv. Nebraska Symposium on Motivation=Nebr Symp Motiv;; Nebraska Symposium on Motivation = Nebr. Symp. Motiv. NEC Journal of Advanced Technology = NEC J. Adv. Technol. Nec Research & Development = Nec Res Dev Nec Research & Development = Nec Res. Dev. Nectar Series On Transportation and Communications Networks Research = Nectar Ser Transp Nectar Series On Transportation and Communications Networks Research = Nectar Ser. Transp. Nec Technical Journal = Nec Tech J Nec Technical Journal = Nec Tech. J. NEC Technical Journal = NEC Tech. J. Nederlands Bosbouw-Tijdschrift = Ned. Bosb.-Tijdschr. Nederlandsch tijdschrift voor verloskunde en gynaecologie = Ned Tijdschr Verloskd Gynaecol Nederlandsch Tijdschrift voor Verloskunde en Gynaecologie = Ned. Tijdschr. Verloskd. Gynaecol. Nederlands Melk-en Zuiveltijdschrift = Ned Melk Zui Nederlands Melk-en Zuiveltijdschrift = Ned. Melk. Zui. Nederlands militair geneeskundig tijdschrift = Ned Milit Geneeskd Tijdschr Nederlands Militair Geneeskundig Tijdschrift = Ned. Milit. Geneeskd. Tijdschr. Nederlands tandartsenblad = Ned Tandartsenbl Nederlands Tandartsenblad = Ned. Tandartsenbl. Nederlands tijdschrift voor de psychologie en haar grensgebieden = Ned Tijdschr Psychol Nederlands Tijdschrift voor de Psychologie en haar Grensgebieden = Ned. Tijdschr. Psychol. Nederlands Tijdschrift Voor Geneeskunde = Ned Tijdschr Genees Nederlands Tijdschrift Voor Geneeskunde = Ned. Tijdschr. Genees. Nederlands tijdschrift voor geneeskunde = Ned Tijdschr Geneeskd Nederlands Tijdschrift voor Geneeskunde = Ned. Tijdschr. Geneeskd. Nederlands Tijdschrift Voor Geneeskunde=Ned Tijdschr Geneeskd;; Nederlands tijdschrift voor gerontologie = Ned Tijdschr Gerontol Nederlands Tijdschrift voor Gerontologie = Ned. Tijdschr. Gerontol. Nederlands tijdschrift voor tandheelkunde = Ned Tijdschr Tandheelkd Nederlands Tijdschrift voor Tandheelkunde = Ned. Tijdschr. Tandheelkd. Needham Research Institute Series = Needham Res Inst Ser Needham Research Institute Series = Needham Res. Inst. Ser. Needham Research Institute Studies = Needham Res. Inst. Stud. Needs and Moral Necessity = Routl Stud Eth Moral Needs and Moral Necessity = Routl. Stud. Eth. Moral Needs and Solutions for Pollution Monitoring, Control, and Abatement, Vols 1 and 2 = P Soc Photo-opt Ins Needs and Solutions for Pollution Monitoring, Control, and Abatement, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Needs and Welfare = Sage Mod Needs and Welfare = Sage. Mod. Neerlands volksleven = Neerl Volksleven Nefer: The Aesthetic Ideal in Classical Egypt = Afr Stud-hist Polit Nefer: The Aesthetic Ideal in Classical Egypt = Afr. Stud-hist. Polit. Nefrologia = Nefrologia Nefrologia : publicacion oficial de la Sociedad Espanola Nefrologia = Nefrologia Neftekhimiya = Neftekhimiya Neftyanoe Khozyaistvo = Neft Khoz Neftyanoe Khozyaistvo = Neft. Khoz. Neftyanoe Khozyaistvo (Petroleum Industry) = Neft. Khoz. Negation = Perspekt Analyt Phil Negation = Perspekt. Analyt. Phil. Negative Co-receptors and Ligands = Curr Top Microbiol Negative Co-receptors and Ligands = Curr. Top. Microbiol. Negative Differential Resistance and Instabilities in 2-d Semiconductors = Nato Adv Sci Inst Se Negative Differential Resistance and Instabilities in 2-d Semiconductors = Nato. Adv. Sci. Inst. Se. Negative Ions, Beams and Sources = Aip Conf Proc Negative Ions, Beams and Sources = Aip. Conf. Proc. Negative Motor Phenomena = Adv Neurol Negative Motor Phenomena = Adv. Neurol. Negative Regulation of Hematopoiesis = Colloq Inse Negative Regulation of Hematopoiesis = Colloq. Inse. Negative Regulators of Hematopoiesis = Ann Ny Acad Sci Negative Regulators of Hematopoiesis = Ann. Ny. Acad. Sci. Negotiating Afropolitanism: Essays On Borders and Spaces in Contemporary African Literature and Folklore = Int Forsch Allg Vgl Negotiating Afropolitanism: Essays On Borders and Spaces in Contemporary African Literature and Folklore = Int. Forsch. Allg. Vgl. Negotiating Boundaries and Borders = Stud Qual Methodol Negotiating Boundaries and Borders = Stud. Qual. Methodol. Negotiating Decolonization in The United Nations: Politics of Space, Identity, and International Community = New Approach Sociol Negotiating Decolonization in The United Nations: Politics of Space, Identity, and International Community = New. Approach. Sociol. Negotiating Motherhood in Nineteenth-century American Literature = Stud Am Popul Hist C Negotiating Motherhood in Nineteenth-century American Literature = Stud. Am. Popul. Hist. C. Negotiation and Conflict Management: Essays On Theory and Practice = Secur Confl Manag Negotiation and Conflict Management: Essays On Theory and Practice = Secur. Confl. Manag. Negotiation and Power in Dialogic Interaction = Amst Stud Theory His Negotiation and Power in Dialogic Interaction = Amst. Stud. Theory. His. Negotiation, Auctions, and Market Engineering = Lect Notes Bus Inf Negotiation, Auctions, and Market Engineering = Lect. Notes. Bus. Inf. Negotiation, Auctions, and Market Engineering = Lect Notes Bus Inf P Negotiation, Auctions, and Market Engineering = Lect. Notes. Bus. Inf. P. Negotiation Journal = Negotiation J Negotiation Journal = Negotiation J. Negotiation Journal-on The Process of Dispute Settlement = Negotiation J Negotiation Journal-on The Process of Dispute Settlement = Negotiation J. Negotiations With Asymmetrical Distribution of Power = Contrib Econ Negotiations With Asymmetrical Distribution of Power = Contrib. Econ. Negotiation Theory and Research = Front Soc Psychol Negotiation Theory and Research = Front. Soc. Psychol. Negro American Literature Forum = Negro Am Lit Forum Negro American Literature Forum = Negro Am. Lit. Forum Negro history bulletin = Negro Hist Bull Negro History Bulletin = Negro Hist Bull Negro History Bulletin = Negro Hist. Bull. NEHW health watch = NEHW Health Watch NEHW Health Watch = NEHW Health Watch Neighbours and Strangers: Literary and Cultural Relations in Germany, Austria and Central Europe Since 1989 = Germ Monit Neighbours and Strangers: Literary and Cultural Relations in Germany, Austria and Central Europe Since 1989 = Germ. Monit. Neimenggu Daxue Xuebao = Neimenggu Daxue Xuebao Ziran Kexue Neimenggu Shida Xuebao = Neimenggu Shida Xuebao Ziran Kexue Hanwen Ban Neirofiziologiia = Neirofiziologiia Nelson-hall Series in Psychology = Nel Hal Psy Nelson-hall Series in Psychology = Nel. Hal. Psy. Nematics = Nato Adv Sci I C-mat Nematics = Nato. Adv. Sci. I. C-mat. Nematologia mediterranea = Nematol. mediterr. Nematologica = Nematologica Nematology Monographs and Perspectives = Nematol Monogr Persp Nematology Monographs and Perspectives = Nematol. Monogr. Persp. Nematology = Nematology Nematropica = Nematropica Nemla Italian Studies (series) = Nemla Ital Stud Nemla Italian Studies (series) = Nemla Ital. Stud. Nemla Italian Studies, Vols, Xxvii-xxviii, 2003-2004 = Nemla Ital Stud Nemla Italian Studies, Vols, Xxvii-xxviii, 2003-2004 = Nemla Ital. Stud. Nemla Italian Studies, Vol Xxii, 1998 = Nemla Ital Stud Nemla Italian Studies, Vol Xxii, 1998 = Nemla Ital. Stud. Nems/mems Technology and Devices = Adv Mater Res-switz Nems/mems Technology and Devices = Adv. Mater. Res-switz. Nems/mems Technology and Devices = Adv Mat Res Nems/mems Technology and Devices = Adv. Mat. Res. Nenpo : Annual reports. Jinko Mondai Kenkyujo (Japan) = Jinko Mondai Kenkyusho Nenpo [Nenpo] The Annual report of Takamine Laboratory. Takamine Kenkyusho = Takamine Kenkyusho Nenpo Neoadjuvant Chemotherapy in Invasive Bladder Cancer = Prog Clin Biol Res Neoadjuvant Chemotherapy in Invasive Bladder Cancer = Prog. Clin. Biol. Res. Neo-avant-garde = Avant Garde Crit Stu Neo-avant-garde = Avant. Garde. Crit. Stu. Neobiota = Neobiota Neocortex = Nato Adv Sci I A-lif Neocortex = Nato. Adv. Sci. I. A-lif. Neocortical Epilepsies = Adv Neurol Neocortical Epilepsies = Adv. Neurol. Neocortical Grafting to Newborn and Adult Rats: Developmental, Anatomical and Functional Aspects = Adv Anat Embryol Cel Neocortical Grafting to Newborn and Adult Rats: Developmental, Anatomical and Functional Aspects = Adv. Anat. Embryol. Cel. Neodymium Based Ziegler Catalysts-fundamental Chemistry = Adv Polym Sci Neodymium Based Ziegler Catalysts-fundamental Chemistry = Adv. Polym. Sci. Neo-formalist Papers = Stud Slav L Neo-formalist Papers = Stud. Slav. L. Neogene-quarternary Continental Margin Volcanism: A Perspective From Mexico = Geol S Am S Neogene-quarternary Continental Margin Volcanism: A Perspective From Mexico = Geol. S. Am. S. Neogene-quarternary Continental Margin Volcanism: A Perspective From Mexico = Geol Soc Am Spec Pap Neogene-quarternary Continental Margin Volcanism: A Perspective From Mexico = Geol. Soc. Am. Spec. Pap. Neoglycoconjugates, Pt A = Method Enzymol Neoglycoconjugates, Pt A = Method. Enzymol. Neoglycoconjugates, Pt A = Methods Enzymol Neoglycoconjugates, Pt A = Methods. Enzymol. Neoglycoconjugates, Pt B = Method Enzymol Neoglycoconjugates, Pt B = Method. Enzymol. Neoglycoconjugates, Pt B = Methods Enzymol Neoglycoconjugates, Pt B = Methods. Enzymol. Neohelicon = Neohelicon Neo-imperialism in Children's Literature About Africa: A Study of Contemporary Fiction = Child Lit Cult Neo-imperialism in Children's Literature About Africa: A Study of Contemporary Fiction = Child. Lit. Cult. Neoliberalism and Aids Crisis in Sub-saharan Africa: Globalization's Pandemic = Int Polit Econ Ser Neoliberalism and Aids Crisis in Sub-saharan Africa: Globalization's Pandemic = Int. Polit. Econ. Ser. Neoliberalism, Civil Society and Security in Africa = Int Polit Econ Ser Neoliberalism, Civil Society and Security in Africa = Int. Polit. Econ. Ser. Neoliberalism: National and Regional Experiments With Global Ideas = Routl Front Polit Ec Neoliberalism: National and Regional Experiments With Global Ideas = Routl. Front. Polit. Ec. Neonatal Haematology and Immunology Ii = Int Congr Ser Neonatal Haematology and Immunology Ii = Int. Congr. Ser. Neonatal Haematology and Immunology = Int Congr Ser Neonatal Haematology and Immunology = Int. Congr. Ser. Neonatal Hematology and Immunology Iii = Int Congr Ser Neonatal Hematology and Immunology Iii = Int. Congr. Ser. Neonatal Intensive Care = Neonatal Intensive Care Neonatal intensive care : the journal of perinatology-neonatology = Neonatal Intensive Care Neonatal Network = Neonatal Netw. Neonatal network : NN = Neonatal Netw Neonatal Survival and Growth = Occ Pub Bri Neonatal Survival and Growth = Occ. Pub. Bri. Neonatology = Neonatology Neophilologus = Neophilologus Neoplasia = Neoplasia Neoplasia (New York, N.Y.) = Neoplasia Neoplasma=Neoplasma;; Neoplasma = Neoplasma Neoplastic disease at various sites = Monogr Neoplast Dis Var Sites Neoplastic Disease at Various Sites = Monogr. Neoplast. Dis. Var. Sites Neoplastic Hematopathology: Experimental and Clinical Approaches = Contemp Hematol Neoplastic Hematopathology: Experimental and Clinical Approaches = Contemp. Hematol. Neoplastic Transformation in Human Cell Culture = Exp Biol M Neoplastic Transformation in Human Cell Culture = Exp. Biol. M. Neoplatonism and Contemporary Thought, Pt 1 = Stud Neoplatonism Neoplatonism and Contemporary Thought, Pt 1 = Stud. Neoplatonism Neoplatonism and Indian Philosophy = Stud Neoplatonism Neoplatonism and Indian Philosophy = Stud. Neoplatonism Neoplatonism and Western Aesthetics = Stud Neoplatonism Neoplatonism and Western Aesthetics = Stud. Neoplatonism Neopsichiatria (U.S.L. n. 15) = Neopsichiatria Neorganicheskie Materialy = Neorg. Mater. Neotropical entomology = Neotrop Entomol Neotropical Entomology = Neotrop Entomol Neotropical Entomology = Neotrop. Entomol. Neotropical Ichthyology = Neotrop Ichthyol Neotropical Ichthyology = Neotrop. Ichthyol. Neotropical Savannas and Seasonally Dry Forests: Plant Diversity, Biogeography, and Conservation = Syst Assoc Spec Vol Neotropical Savannas and Seasonally Dry Forests: Plant Diversity, Biogeography, and Conservation = Syst. Assoc. Spec. Vol. Nepal in The 21st Century = Glob Polit Stud Nepal in The 21st Century = Glob. Polit. Stud. Nepal Medical College journal : NMCJ = Nepal Med Coll J Nepal population and development journal = Nepal Popul Dev J Nepc Series = Nepc Ser Nepc Series = Nepc Ser. Nepegeszsegugy = Nepegeszseguegy Nephrologie et Therapeutique = Nephrol. Ther. Nephrologie=Nephrologie;; Nephrologie = Nephrologie Nephrologie & therapeutique = Nephrol Ther Nephrologie & Therapeutique = Nephrol Ther Nephrologie & Therapeutique = Nephrol. Ther. Nephrology and Urology in The Aged Patient = Dev Nephrol Nephrology and Urology in The Aged Patient = Dev. Nephrol. Nephrology (Carlton, Vic.) = Nephrology (Carlton) Nephrology Dialysis Transplantation = Nephrol Dial Transpl Nephrology Dialysis Transplantation = Nephrol. Dial. Transpl. Nephrology, Dialysis, Transplantation=Nephrol Dial Transplant;; Nephrology, Dialysis, Transplantation = Nephrol. Dial. Transplant. Nephrology - Dialysis - Transplantation = Nephrol Res Clin Dev Nephrology - Dialysis - Transplantation = Nephrol. Res. Clin. Dev. Nephrology, dialysis, transplantation : official publication of the European Dialysis and Transplant Association - European Renal Association = Nephrol Dial Transplant Nephrology Grand Rounds: Clinical Issues in Nephrology = Contrib Nephrol Nephrology Grand Rounds: Clinical Issues in Nephrology = Contrib. Nephrol. Nephrology = Nephrology Nephrology News and Issues = Nephrol. News Issues Nephrology news & issues = Nephrol News Issues Nephrology nurse = Nephrol Nurse Nephrology Nurse = Nephrol. Nurse Nephrology nursing journal : journal of the American Nephrology Nurses' Association = Nephrol Nurs J Nephrology Nursing Journal = Nephrol Nurs J Nephrology Nursing Journal = Nephrol. Nurs. J. Nephrology Research and Clinical Developments = Nephrol Res Clin Dev Nephrology Research and Clinical Developments = Nephrol. Res. Clin. Dev. Nephron. Clinical practice = Nephron Clin Pract Nephron Clinical Practice = Nephron Clin Pract Nephron Clinical Practice = Nephron Clin. Pract. Nephron. Clinical Practice = Nephron Clin. Pract. Nephron. Experimental nephrology = Nephron Exp Nephrol Nephron Experimental Nephrology = Nephron Exp Nephrol Nephron Experimental Nephrology = Nephron Exp. Nephrol. Nephron. Experimental Nephrology = Nephron Exp. Nephrol. Nephron=Nephron;; Nephron = Nephron Nephron Physiology = Nephron Physiol Nephron Physiology = Nephron Physiol. Nephron. Physiology = Nephron Physiol Nephron. Physiology = Nephron Physiol. Neptune and Triton = Space Sci S Neptune and Triton = Space. Sci. S. Nervenarzt=Nervenarzt;; Nervenarzt = Nervenarzt Nervenheilkunde = Nervenheilkunde Nerves and The Gastrointestinal Tract = Falk Symp Nerves and The Gastrointestinal Tract = Falk. Symp. Nervnaia sistema / Leningradskii ordena Lenina gosudarstvennyi universitet imeni A.A. Zhdanova, Fiziologicheskii institut imeni akad. A.A. Ukhtomskogo = Nerv Sist Nervnaia Sistema = Nerv. Sist. Nervous and Mental Disease Monograph Series = Nerv Ment Dis Monogr Nervous and Mental Disease Monograph Series = Nerv. Ment. Dis. Monogr. Nervous Child = Nerv Child Nervous Child = Nerv. Child Nervous, Immune, Endocrine Regulatory Systems and Diseases Associated With Nerve Growth Factor Co-secretion = Endocr Res Clin Dev Nervous, Immune, Endocrine Regulatory Systems and Diseases Associated With Nerve Growth Factor Co-secretion = Endocr. Res. Clin. Dev. Nested Partitions Method, Theory and Applications = Int Ser Oper Res Man Nested Partitions Method, Theory and Applications = Int. Ser. Oper. Res. Man. Nestle Nutrition Institute Workshop Series = Nestle Nutr Works Se Nestle Nutrition Institute Workshop Series = Nestle Nutr. Works. Se. Nestle Nutrition Institute Workshop Series Pediatric Program = Nes Nutr I Work Ped Nestle Nutrition Institute Workshop Series Pediatric Program = Nes. Nutr. I. Work. Ped. Nestle Nutrition Workshop Series. Clinical and Performance Programme = Nestle Nutr. Workshop Ser. Clin. Perform. Programme Nestle Nutrition workshop series. Clinical & performance programme = Nestle Nutr Workshop Ser Clin Perform Programme Nestle Nutrition Workshop Series-clinical & Performance Program = Nes Nutr Ws Nestle Nutrition Workshop Series-clinical & Performance Program = Nes. Nutr. Ws. Nestle Nutrition Workshop Series: Clinical & Performance Program = Nes Nutr Ws Nestle Nutrition Workshop Series: Clinical & Performance Program = Nes. Nutr. Ws. Nestle Nutrition Workshop Series = Nestle Nutr Works Se Nestle Nutrition Workshop Series = Nestle Nutr. Works. Se. Nestle Nutrition workshop series. Paediatric programme = Nestle Nutr Workshop Ser Pediatr Program Nestle Nutrition Workshop Series Pediatric Program = Nestle Nutr Works Se Nestle Nutrition Workshop Series Pediatric Program = Nestle Nutr. Works. Se. Net Dextral Slip, Neogene San Gregorio-hosgri Fault Zone, Coastal California: Geologic Evidence and Tectonic Implications = Geol Soc Am Spec Pap Net Dextral Slip, Neogene San Gregorio-hosgri Fault Zone, Coastal California: Geologic Evidence and Tectonic Implications = Geol. Soc. Am. Spec. Pap. Netherlands and Nazi Genocide = Symposium S Netherlands and Nazi Genocide = Symposium. S. Netherlands heart journal : monthly journal of the Netherlands Society of Cardiology and the Netherlands Heart Foundation = Neth Heart J Netherlands Heart Journal = Neth Heart J Netherlands Heart Journal = Neth. Heart J. Netherlands Institute for Sea Research : Publication Series = Neth Inst S Netherlands Institute for Sea Research : Publication Series = Neth. Inst. S. Netherlands Journal of Agricultural Science = Neth. J. Agric. Sci. Netherlands Journal of Agricultural Science = Neth J Agr Sci Netherlands Journal of Agricultural Science = Neth. J. Agr. Sci. Netherlands Journal of Geosciences-geologie En Mijnbouw = Neth J Geosci Netherlands Journal of Geosciences-geologie En Mijnbouw = Neth. J. Geosci. Netherlands Journal of Geosciences = Neth. J. Geosci. Netherlands Journal of Medicine=Neth J Med;; Netherlands Journal of Medicine = Neth J Med Netherlands Journal of Medicine = Neth. J. Med. Netherlands Journal of Plant Pathology = Neth J Plant Pathol Netherlands Journal of Plant Pathology = Neth. J. Plant Pathol. Netherlands Journal of Sea Research = Neth J Sea Res Netherlands Journal of Sea Research = Neth. J. Sea Res. Netherlands Journal of Social Sciences = Neth J Soc Sci Netherlands Journal of Social Sciences = Neth. J. Soc. Sci. Netherlands Journal of Surgery = Neth J Surg Netherlands Journal of Surgery = Neth. J. Surg. Netherlands Journal of Zoology = Neth J Zool Netherlands Journal of Zoology = Neth. J. Zool. Netherlands Milk and Dairy Journal-nederlands-nederlands Melk En Zuiveltijdschrift = Neth Milk Dairy J-ne Netherlands Milk and Dairy Journal-nederlands-nederlands Melk En Zuiveltijdschrift = Neth. Milk Dairy J-ne. Netherlands Milk and Dairy Journal = Neth Milk Dairy J Netherlands Milk and Dairy Journal = Neth. Milk Dairy J. Netherlands Quarterly of Human Rights = Neth Q Hum Rights Netherlands Quarterly of Human Rights = Neth. Q. Hum. Rights Netherlands Yearbook for History of Art-nederlands Kunsthistorisch Jaarboek = Neth Yearb Hist Art Netherlands Yearbook for History of Art-nederlands Kunsthistorisch Jaarboek = Neth. Yearb. Hist. Art. Netherlands Yearbook of International Law Series = Neth Yearb Int Law S Netherlands Yearbook of International Law Series = Neth. Yearb. Int. Law S. Netherlands Yearbook of International Law, Vol 41, 2010: Necessity Across International Law = Neth Yearb Int Law S Netherlands Yearbook of International Law, Vol 41, 2010: Necessity Across International Law = Neth. Yearb. Int. Law S. Netherlands Yearbook of International Law , Vol Xl, 2009 = Neth Yearb Int Law S Netherlands Yearbook of International Law , Vol Xl, 2009 = Neth. Yearb. Int. Law S. Netherlands Yearbook of International Law, Vol Xxxix, 2008 = Neth Yearb Int Law S Netherlands Yearbook of International Law, Vol Xxxix, 2008 = Neth. Yearb. Int. Law. S. Netherlands Yearbook of International Law, Vol Xxxviii, 2007 = Neth Yearb Int Law S Netherlands Yearbook of International Law, Vol Xxxviii, 2007 = Neth. Yearb. Int. Law. S. Netnomics=Netnomics Network Analysis:methodological Foundations = Lect Notes Comput Sc Network Analysis:methodological Foundations = Lect. Notes. Comput. Sc. Network and Parallel Computing = Lect Notes Comput Sc Network and Parallel Computing = Lect. Notes. Comput. Sc. Network and Parallel Computing, Proceedings = Lect Notes Comput Sc Network and Parallel Computing, Proceedings = Lect. Notes. Comput. Sc. Network and Systems Management = Netw Syst Manag Network and Systems Management = Netw. Syst. Manag. Network Architectures, Management, and Applications Iii, Pts 1 and 2 = Proc Spie Network Architectures, Management, and Applications Iii, Pts 1 and 2 = Proc. Spie. Network Architectures, Management, and Applications Iii, Pts 1 and 2 = P Soc Photo-opt Ins Network Architectures, Management, and Applications Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Network Architectures, Management, and Applications Ii, Pts 1 and 2 = Proc Spie Network Architectures, Management, and Applications Ii, Pts 1 and 2 = Proc. Spie. Network Architectures, Management, and Applications Ii, Pts 1 and 2 = P Soc Photo-opt Ins Network Architectures, Management, and Applications Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Network Architectures, Management, and Applications Iv = Proc Spie Network Architectures, Management, and Applications Iv = Proc. Spie. Network Architectures, Management, and Applications Iv = P Soc Photo-opt Ins Network Architectures, Management, and Applications Iv = P. Soc. Photo-opt. Ins. Network Architectures, Management, and Applications Viii = Proc Spie Network Architectures, Management, and Applications Viii = Proc. Spie. Network Architectures, Management, and Applications V, Pts 1 and 2 = Proc Spie Network Architectures, Management, and Applications V, Pts 1 and 2 = Proc. Spie. Network Architectures, Management, and Applications V, Pts 1 and 2 = P Soc Photo-opt Ins Network Architectures, Management, and Applications V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Network-based Information Systems, Proceedings = Lect Notes Comput Sc Network-based Information Systems, Proceedings = Lect. Notes. Comput. Sc. Network-based Parallel Computing = Lect Notes Comput Sc Network-based Parallel Computing = Lect. Notes. Comput. Sc. Network-based Parallel Computing, Proceedings = Lect Notes Comput Sc Network-based Parallel Computing, Proceedings = Lect. Notes. Comput. Sc. Network (Bristol, England) = Network Network-centric Collaboration and Supporting Frameworks = Int Fed Info Proc Network-centric Collaboration and Supporting Frameworks = Int. Fed. Info. Proc. Network-computation in Neural Systems = Network-comp Neural Network-computation in Neural Systems = Network-comp. Neural Network Control and Engineering for Qos, Security and Mobility, Iii = Int Fed Info Proc Network Control and Engineering for Qos, Security and Mobility, Iii = Int. Fed. Info. Proc. Network Control and Engineering for Qos, Security and Mobility Ii = Int Fed Info Proc Network Control and Engineering for Qos, Security and Mobility Ii = Int. Fed. Info. Proc. Network Control and Engineering for Qos, Security and Mobility = Int Fed Info Proc Network Control and Engineering for Qos, Security and Mobility = Int. Fed. Info. Proc. Network Control and Engineering for Qos, Security and Mobility, Iv = Int Fed Info Proc Network Control and Engineering for Qos, Security and Mobility, Iv = Int. Fed. Info. Proc. Network Control and Engineering for Qos, Security and Mobility, V = Int Fed Info Proc Network Control and Engineering for Qos, Security and Mobility, V = Int. Fed. Info. Proc. Network Control and Optimization = Lect Notes Comput Sc Network Control and Optimization = Lect. Notes. Comput. Sc. Network Control and Optimization, Proceedings = Lect Notes Comput Sc Network Control and Optimization, Proceedings = Lect. Notes. Comput. Sc. Network Economics for Next Generation Networks, Proceedings = Lect Notes Comput Sc Network Economics for Next Generation Networks, Proceedings = Lect. Notes. Comput. Sc. Networked and Distributed Predictive Control: Methods and Nonlinear Process Network Applications = Adv Ind Control Networked and Distributed Predictive Control: Methods and Nonlinear Process Network Applications = Adv. Ind. Control. Networked Cities Series = Networked Cities Ser Networked Cities Series = Networked Cities Ser. Networked Control Systems = Lect Notes Contr Inf Networked Control Systems = Lect. Notes. Contr. Inf. Networked Digital Technologies, Pt 1 = Comm Com Inf Sc Networked Digital Technologies, Pt 1 = Comm. Com. Inf. Sc. Networked Digital Technologies, Pt 2 = Comm Com Inf Sc Networked Digital Technologies, Pt 2 = Comm. Com. Inf. Sc. Networked Embedded Sensing and Control = Lect Notes Contr Inf Networked Embedded Sensing and Control = Lect. Notes. Contr. Inf. Networked Group Communication, Proceedings = Lect Notes Comput Sc Networked Group Communication, Proceedings = Lect. Notes. Comput. Sc. Networked Information Technologies: Diffusion and Adoption = Int Fed Info Proc Networked Information Technologies: Diffusion and Adoption = Int. Fed. Info. Proc. Networked Rfid: Systems, Software and Services = Comput Commun Netw S Networked Rfid: Systems, Software and Services = Comput. Commun. Netw. S. Networked Services and Applications - Engineering, Control and Management = Lect Notes Comput Sc Networked Services and Applications - Engineering, Control and Management = Lect. Notes. Comput. Sc. Network Empowerment = Nato Sc S Ss Iii C S Network Empowerment = Nato. Sc. S. Ss. Iii. C. S. Network en francais = Netw Fr Network Enterprises: The Evolution of Organizational Models From Guilds to Assembly Lines to Innovation Clusters = Innov Tech Knowl Man Network Enterprises: The Evolution of Organizational Models From Guilds to Assembly Lines to Innovation Clusters = Innov. Tech. Knowl. Man. Networking 2000 = Lect Notes Comput Sc Networking 2000 = Lect. Notes. Comput. Sc. Networking 2004 = Lect Notes Comput Sc Networking 2004 = Lect. Notes. Comput. Sc. Networking 2005: Networking Technologies, Services, and Protocols; Performance of Computer and Communication Networks; Mobile and Wireless Communications Systems = Lect Notes Comput Sc Networking 2005: Networking Technologies, Services, and Protocols; Performance of Computer and Communication Networks; Mobile and Wireless Communications Systems = Lect. Notes. Comput. Sc. Networking 2006: Networking Technologies, Services, and Protocols; Performance of Computer and Communication Networks; Mobile and Wireless Communications Systems = Lect Notes Comput Sc Networking 2006: Networking Technologies, Services, and Protocols; Performance of Computer and Communication Networks; Mobile and Wireless Communications Systems = Lect. Notes. Comput. Sc. Networking 2007: Ad Hoc and Sensor Networks, Wireless Networks, Next Generation Internet, Proceedings = Lect Notes Comput Sc Networking 2007: Ad Hoc and Sensor Networks, Wireless Networks, Next Generation Internet, Proceedings = Lect. Notes. Comput. Sc. Networking 2008: Ad Hoc and Sensor Networks, Wireless Networks, Next Generation Internet, Proceedings = Lect Notes Comput Sc Networking 2008: Ad Hoc and Sensor Networks, Wireless Networks, Next Generation Internet, Proceedings = Lect. Notes. Comput. Sc. Networking 2009 = Lect Notes Comput Sc Networking 2009 = Lect. Notes. Comput. Sc. Networking 2010, Proceedings = Lect Notes Comput Sc Networking 2010, Proceedings = Lect. Notes. Comput. Sc. Networking and Communications On The Plant Floor = Tech Papers Isa Networking and Communications On The Plant Floor = Tech. Papers. Isa. Networking and Mobile Computing, Proceedings = Lect Notes Comput Sc Networking and Mobile Computing, Proceedings = Lect. Notes. Comput. Sc. Networking: Connecting Workers in and Between Organizations = Ifip Trans A Networking: Connecting Workers in and Between Organizations = Ifip. Trans. A. Networking for Digital Preservation: Current Practice in 15 National Libraries = Ifla Publ Networking for Digital Preservation: Current Practice in 15 National Libraries = Ifla. Publ. Networking - Icn 2001, Part Ii, Proceedings = Lect Notes Comput Sc Networking - Icn 2001, Part Ii, Proceedings = Lect. Notes. Comput. Sc. Networking - Icn 2001, Pt I, Proceedings = Lect Notes Comput Sc Networking - Icn 2001, Pt I, Proceedings = Lect. Notes. Comput. Sc. Networking - Icn 2005, Pt 1 = Lect Notes Comput Sc Networking - Icn 2005, Pt 1 = Lect. Notes. Comput. Sc. Networking - Icn 2005, Pt 2 = Lect Notes Comput Sc Networking - Icn 2005, Pt 2 = Lect. Notes. Comput. Sc. Network Intelligence: Internet-based Manufacturing = Proc Spie Network Intelligence: Internet-based Manufacturing = Proc. Spie. Network Intelligence: Internet-based Manufacturing = P Soc Photo-opt Ins Network Intelligence: Internet-based Manufacturing = P. Soc. Photo-opt. Ins. Network - International Fertility Research Program = Netw Int Fertil Res Program Network Intrusion Detection and Prevention: Concepts and Techniques = Adv Inform Secur Network Intrusion Detection and Prevention: Concepts and Techniques = Adv. Inform. Secur. Network Magazine = Netw Mag Network Magazine = Netw. Mag. Network Modeling 2005 = Transport Res Rec Network Modeling 2005 = Transport. Res. Rec. Network Modeling 2006 = Transport Res Rec Network Modeling 2006 = Transport. Res. Rec. Network Models and Optimization: Multiobjective Genetic Algorithm Approach = Decis Eng Network Models and Optimization: Multiobjective Genetic Algorithm Approach = Decis. Eng. Network = Network Network Optimization = Lect Notes Econ Math Network Optimization = Lect. Notes. Econ. Math. Network Performance Engineering: A Handbook On Convergent Multi-service Networks and Next Generation Internet = Lect Notes Comput Sc Network Performance Engineering: A Handbook On Convergent Multi-service Networks and Next Generation Internet = Lect. Notes. Comput. Sc. Network Planning Papers = Netw Plan P Network Planning Papers = Netw. Plan. P. Network (Research Triangle Park, N.C.) = Netw Res Triangle Park N C Networks and Heterogeneous Media = Netw Heterog Media Networks and Heterogeneous Media = Netw. Heterog. Media Networks in Action: Text and Computer Exercises in Network Optimization = Int Ser Oper Res Man Networks in Action: Text and Computer Exercises in Network Optimization = Int. Ser. Oper. Res. Man. Networks = Networks Networks = Networks Networks of Nazi Persecution: Bureaucracy, Business, and The Organization of The Holocaust = Stud War Genocide Networks of Nazi Persecution: Bureaucracy, Business, and The Organization of The Holocaust = Stud. War. Genocide. Networks, Open Access, and Virtual Libraries = Cl Lib Appl Networks, Open Access, and Virtual Libraries = Cl. Lib. Appl. Networks & Spatial Economics = Netw Spat Econ Networks & Spatial Economics = Netw. Spat. Econ. Networks, Topology and Dynamics:theory and Applications to Economics and Social Systems = Lect Notes Econ Math Networks, Topology and Dynamics:theory and Applications to Economics and Social Systems = Lect. Notes. Econ. Math. Network Strategy = Adv Strateg Manage Network Strategy = Adv. Strateg. Manage. Network Strategy = Adv Strat M Network Strategy = Adv. Strat. M. Neudrucke Deutscher Literaturwerke Neue Folge = Neudrucke Dtsch Lit Neudrucke Deutscher Literaturwerke Neue Folge = Neudrucke Dtsch. Lit. Neue Ephemeris für semitische Epigraphik = NEphemSemEpigr Neue Fragen Des Insolvenzrechts = Schr Deut Eur Int In Neue Fragen Des Insolvenzrechts = Schr. Deut. Eur. Int. In. Neue Heimat = Neue Heimat Neue Hutte = Neue Hutte Neue juristische Wochenschrift = Neue Jurist Wochenschr Neue Landschaft = Neue Landsch. Neue Munchner Beitrage zur Geschichte der Medizin und Naturwissenschaften. Medizinhistorische Reihe = Neue Munch Beitr Gesch Med Naturwiss Medizinhist Reihe Neue Munchner Beitrage zur Geschichte der Medizin und Naturwissenschaften. Medizinhistorische Reihe = Neue Munch. Beitr. Gesch. Med. Naturwiss. Medizinhist. Reihe Neue osterreichische Zeitschrift fur Kinderheilkunde = Neue Osterr Z Kinderheilkd Neue politische Literatur = Neue Polit Lit Neuere Medizin- und Wissenschaftsgeschichte = Neuere Med Wiss Quellen Stud Neue Rundschau = Neue Rundsch Neue Rundschau = Neue Rundsch. Neues Jahrbuch Fur Geologie Und Palaontologie-abhandlungen = Neues Jahrb Geol P-a Neues Jahrbuch Fur Geologie Und Palaontologie-abhandlungen = Neues Jahrb. Geol. P-a. Neues Jahrbuch fur Geologie und Palaontologie. Abhandlungen = Neues Jahrb Geol Palaontol Abh Neues Jahrbuch Fur Geologie Und Palaontologie-monatshefte = Neues Jahrb Geol P-m Neues Jahrbuch Fur Geologie Und Palaontologie-monatshefte = Neues Jahrb. Geol. P-m. Neues Jahrbuch Fur Geologie Und Palaontologie-monatshefte = Neues Jahrb Geol P M Neues Jahrbuch Fur Geologie Und Palaontologie-monatshefte = Neues Jahrb. Geol. P. M. Neues Jahrbuch fur Mineralogie, Abhandlungen = Neues Jahrb. Mineral. Abh. Neues Jahrbuch für Mineralogie, Abhandlungen = Neues Jahrb. Mineral., Abh. Neues Jahrbuch Fur Mineralogie-abhandlungen = Neues Jb Miner Abh Neues Jahrbuch Fur Mineralogie-abhandlungen = Neues Jb. Miner. Abh. Neues Jahrbuch fur Mineralogie, Geologie und Palaeontologie, Abhandlungen Abteiling A: Mineralogie, Petrographie = Neues Jahrb. Mineral. Geol. Palaeontol. Abh. Abt. A Neues Jahrbuch fur Mineralogie, Geologie und Palaeontologie, Abhandlungen Abteiling B: Geologie, Palaeontologie = Neues Jahrb. Mineral. Geol. Palaeontol. Abh. Abt. B Neues Jahrbuch fur Mineralogie, Geologie und Palaeontologie, Referate = Neues Jahrb. Mineral. Geol. Palaeontol. Ref. Neues Jahrbuch fur Mineralogie, Monatshefte = Neues Jahrb. Mineral. Monatsh.. Neues Jahrbuch für Mineralogie, Monatshefte = Neues Jahrb. Mineral., Monatsh. Neues Jahrbuch Fur Mineralogie-monatshefte = Neues Jb Miner Monat Neues Jahrbuch Fur Mineralogie-monatshefte = Neues Jb. Miner. Monat. Neue Zeitschrift Fur Musik = Neue Z Musik Neue Zeitschrift Fur Musik = Neue Z. Musik Neue Zeitschrift Fur Systematische Theologie Und Religionsphilosophie = Neue Z Syst Theol R Neue Zeitschrift Fur Systematische Theologie Und Religionsphilosophie = Neue Z. Syst. Theol. R. Neue Zürcher Zeitung = Neue Zür. Ztg. Neujahrsblatt der Lesegesellschaft Wädenswil = Neujahrsbl. Leseges. Wädenswil Neujahrsblatt der Naturforschenden Gesellschaft in Zürich = Neujahrsbl. Nat.forsch. Ges. Zür. Neujahrsblatt der Naturforschenden Gesellschaft Schaffhausen = Neujahrsbl. Nat.forsch. Ges. Schaffhausen Neujahrsbote für das Glarner Hinterland = Neujahrsbote Glarner Hinterland Neulekturen-new Readings: Festschrift Fur Gerd Labroisse Zum 80. Geburtstag = Amst Beitr Neuer Ger Neulekturen-new Readings: Festschrift Fur Gerd Labroisse Zum 80. Geburtstag = Amst. Beitr. Neuer. Ger. Neumologia y cirugia de torax = Neumol Cir Torax Neuphilologische Mitteilungen = Neuphilol Mitt Neuphilologische Mitteilungen = Neuphilol. Mitt. Neuphilologische Mitteilungen = NphM Neural and Stochastic Methods in Image and Signal Processing Iii = P Soc Photo-opt Ins Neural and Stochastic Methods in Image and Signal Processing Iii = P. Soc. Photo-opt. Ins. Neural and Stochastic Methods in Image and Signal Processing Ii = P Soc Photo-opt Ins Neural and Stochastic Methods in Image and Signal Processing Ii = P. Soc. Photo-opt. Ins. Neural and Stochastic Methods in Image and Signal Processing = P Soc Photo-opt Ins Neural and Stochastic Methods in Image and Signal Processing = P. Soc. Photo-opt. Ins. Neural Bases of Motor Behaviour = Nato Adv Sci I D-beh Neural Bases of Motor Behaviour = Nato. Adv. Sci. I. D-beh. Neural Basis of Behavioural Adaptations = Forts Zool Neural Basis of Behavioural Adaptations = Forts. Zool. Neural Basis of Early Vision = Keio U Int Symp Life Neural Basis of Early Vision = Keio. U. Int. Symp. Life. Neural Cell Specification = Altschul Sy Neural Cell Specification = Altschul. Sy. Neural Computation and Particle Accelerators: Research, Technology and Applications = Neurosci Res Prog Se Neural Computation and Particle Accelerators: Research, Technology and Applications = Neurosci. Res. Prog. Se. Neural computation = Neural Comput Neural Computation=Neural Comput;; Neural Computation = Neural Comput Neural Computation = Neural Comput. Neural Computing & Applications = Neural Comput Appl Neural Computing & Applications = Neural Comput. Appl. Neural Control of Space Coding and Action Production = Prog Brain Res Neural Control of Space Coding and Action Production = Prog. Brain. Res. Neural Crest Induction and Differentiation = Adv Exp Med Biol Neural Crest Induction and Differentiation = Adv. Exp. Med. Biol. Neural Development and Plasticity = Prog Brain Res Neural Development and Plasticity = Prog. Brain. Res. Neural Development and Schizophrenia = Nato Adv Sci Inst Se Neural Development and Schizophrenia = Nato. Adv. Sci. Inst. Se. Neural Development-book = Keio Univ Symp Life Neural Development-book = Keio. Univ. Symp. Life. Neural Development = Neural Dev Neural Development = Neural Dev. Neural development = Neural Develop Neural Information Processing = Lect Notes Comput Sc Neural Information Processing = Lect. Notes. Comput. Sc. Neural Information Processing: Models and Applications, Pt Ii = Lect Notes Comput Sc Neural Information Processing: Models and Applications, Pt Ii = Lect. Notes. Comput. Sc. Neural Information Processing, Part Ii = Lect Notes Comput Sc Neural Information Processing, Part Ii = Lect. Notes. Comput. Sc. Neural Information Processing, Part I = Lect Notes Comput Sc Neural Information Processing, Part I = Lect. Notes. Comput. Sc. Neural Information Processing, Pt 1, Proceedings = Lect Notes Comput Sc Neural Information Processing, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Neural Information Processing, Pt 2, Proceedings = Lect Notes Comput Sc Neural Information Processing, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Neural Information Processing, Pt 3, Proceedings = Lect Notes Comput Sc Neural Information Processing, Pt 3, Proceedings = Lect. Notes. Comput. Sc. Neural Information Processing Series = Neu Inf Pro Neural Information Processing Series = Neu. Inf. Pro. Neural Information Processing Series = Neural Inf Process S Neural Information Processing Series = Neural Inf. Process. S. Neural Information Processing: Theory and Algorithms, Pt I = Lect Notes Comput Sc Neural Information Processing: Theory and Algorithms, Pt I = Lect. Notes. Comput. Sc. Neural Injury and Regeneration = Adv Neurol Neural Injury and Regeneration = Adv. Neurol. Neurally Mediated Syncope: Pathophysiology, Investigations, and Treatment = Bakken Res Neurally Mediated Syncope: Pathophysiology, Investigations, and Treatment = Bakken. Res. Neural Mechanisms of Visual Perception = P Ret Res F Neural Mechanisms of Visual Perception = P. Ret. Res. F. Neural Monitoring = Neurotraum Neural Monitoring = Neurotraum. Neural, Morphological, and Stochastic Methods in Image and Signal Processing = P Soc Photo-opt Ins Neural, Morphological, and Stochastic Methods in Image and Signal Processing = P. Soc. Photo-opt. Ins. Neural Nets = Lect Notes Comput Sc Neural Nets = Lect. Notes. Comput. Sc. Neural Nets Wirn Vietri-01 = Persp Neural Comp Neural Nets Wirn Vietri-01 = Persp. Neural Comp. Neural Nets - Wirn Vietri-99 = Persp Neural Comp Neural Nets - Wirn Vietri-99 = Persp. Neural Comp. Neural Network and Distributed Processing = Proc Spie Neural Network and Distributed Processing = Proc. Spie. Neural Network and Distributed Processing = P Soc Photo-opt Ins Neural Network and Distributed Processing = P. Soc. Photo-opt. Ins. Neural Network-based State Estimation of Nonlinear Systems: Application to Fault Detection and Isolation = Lect Notes Contr Inf Neural Network-based State Estimation of Nonlinear Systems: Application to Fault Detection and Isolation = Lect. Notes. Contr. Inf. Neural Network Models = Lect Notes Contr Inf Neural Network Models = Lect. Notes. Contr. Inf. Neural Network Models of Conditioning and Action = Quant An B Neural Network Models of Conditioning and Action = Quant. An. B. Neural Networks and Soft Computing = Adv Soft Comp Neural Networks and Soft Computing = Adv. Soft Comp. Neural Networks: Best Practice in Europe = Prog Neural Process Neural Networks: Best Practice in Europe = Prog. Neural Process. Neural Networks for Instrumentation, Measurement and Related Industrial Applications = Nato Sc S Ss Iii C S Neural Networks for Instrumentation, Measurement and Related Industrial Applications = Nato. Sc. S. Ss. Iii. C. S. Neural Networks in Atmospheric Remote Sensing = Artech Hse Remote Se Neural Networks in Atmospheric Remote Sensing = Artech. Hse. Remote Se. Neural Networks in Robotics = Kluw Robot Neural Networks in Robotics = Kluw. Robot. Neural Networks in The Analysis and Design of Structures = Cism Cour L Neural Networks in The Analysis and Design of Structures = Cism. Cour. L. Neural Networks in The Analysis and Design of Structures = Cism Courses Lect Neural Networks in The Analysis and Design of Structures = Cism. Courses. Lect. Neural Networks / = Lect Notes Comput Sc Neural Networks / = Lect. Notes. Comput. Sc. Neural Networks = Neural Networks Neural Networks - Producing Dependable Systems, Conference Proceedings = Era Rep Neural Networks - Producing Dependable Systems, Conference Proceedings = Era. Rep. Neural Networks: The Inns Series of Texts, Monographs, and Proceedings = Neural Netw Inns Neural Networks: The Inns Series of Texts, Monographs, and Proceedings = Neural Netw. Inns Neural networks : the official journal of the International Neural Network Society = Neural Netw Neural Networks: Tricks of The Trade = Lect Notes Comput Sc Neural Networks: Tricks of The Trade = Lect. Notes. Comput. Sc. Neural Network Systems Techniques and Applications = Neural Netw. Syst. Tech. Appl. Neural Network World = Neural Netw World Neural Network World = Neural Netw. World Neural, Parallel & Scientific Computations = Neural Parallel Sci. Comput. Neural Plasticity and Regeneration = Prog Brain Res Neural Plasticity and Regeneration = Prog. Brain. Res. Neural plasticity = Neural Plast Neural Plasticity = Neural Plast Neural Plasticity = Neural Plast. Neural Processing Letters = Neural Process Lett Neural Processing Letters = Neural Process. Lett. Neural Programming = Tanig Symp Brain Sci Neural Programming = Tanig. Symp. Brain. Sci. Neural Regeneration = Prog Brain Res Neural Regeneration = Prog. Brain. Res. Neural Regeneration Research = Neural Regen Res Neural Regeneration Research = Neural Regen. Res. Neural Signaling: Opportunities for Novel Diagnostic Approaches and Therapies = Ann Ny Acad Sci Neural Signaling: Opportunities for Novel Diagnostic Approaches and Therapies = Ann. Ny. Acad. Sci. Neural Substrates of Memory, Affective Functions, and Conscious Experience = Adv Anat Embryol Cel Neural Substrates of Memory, Affective Functions, and Conscious Experience = Adv. Anat. Embryol. Cel. Neural-symbolic Cognitive Reasoning = Cogn Technol Neural-symbolic Cognitive Reasoning = Cogn. Technol. Neural Transplantation : From Molecular Basis to Clinical Applications = Prog Brain Res Neural Transplantation : From Molecular Basis to Clinical Applications = Prog. Brain. Res. Neural Transplantation in Neurodegenerative Disease: Current Status and New Directions = Novart Fdn Symp Neural Transplantation in Neurodegenerative Disease: Current Status and New Directions = Novart. Fdn. Symp. Neural Tube Effects = Ciba F Symp Neural Tube Effects = Ciba. F. Symp. Neuregulin-i /erbb Signaling System in Development and Disease = Adv Anat Embryol Cel Neuregulin-i /erbb Signaling System in Development and Disease = Adv. Anat. Embryol. Cel. Neuroanatomy and Pathology of Sporadic Parkinson's Disease = Adv Anat Embryol Cel Neuroanatomy and Pathology of Sporadic Parkinson's Disease = Adv. Anat. Embryol. Cel. Neuroanatomy of The Oculomotor System = Prog Brain Res Neuroanatomy of The Oculomotor System = Prog. Brain. Res. Neuroanatomy Research Advances = Neuroanat Res Lead Neuroanatomy Research Advances = Neuroanat. Res. Lead. Neuroanatomy Research At The Leading Edge = Neuroanat Res Lead Neuroanatomy Research At The Leading Edge = Neuroanat. Res. Lead. Neuroanesthesia = Dev C C Med Neuroanesthesia = Dev. C. C. Med. Neurobehavioral toxicology and teratology = Neurobehav Toxicol Teratol Neurobehavioral Toxicology and Teratology = Neurobehav. Toxicol. Teratol. Neurobehavioral Toxicology and Teratology = Neurobeh Toxicol Ter Neurobehavioral Toxicology and Teratology = Neurobeh. Toxicol. Ter. Neurobehavioral Toxicology and Teratology = Neurotoxicol Teratol Neurobehavioral Toxicology and Teratology = Neurotoxicol. Teratol. Neurobehavioral toxicology = Neurobehav Toxicol Neurobehavioral Toxicology = Neurobehav. Toxicol. Neurobehavioral Toxicology: Neurological and Neuropsychological Perspectives, Volume Iii = Stud Neuropsychol Ne Neurobehavioral Toxicology: Neurological and Neuropsychological Perspectives, Volume Iii = Stud. Neuropsychol. Ne. Neurobehavioral Toxicology = Neurotoxicol Teratol Neurobehavioral Toxicology = Neurotoxicol. Teratol. Neurobiologia = Neurobiologia Neurobiological Mechanisms of Drugs of Abuse: Cocaine, Ibogaine, and Substituted Amphetamines = Ann Ny Acad Sci Neurobiological Mechanisms of Drugs of Abuse: Cocaine, Ibogaine, and Substituted Amphetamines = Ann. Ny. Acad. Sci. Neurobiology and Cell Physiology of Chemoreception = Adv Exp Med Biol Neurobiology and Cell Physiology of Chemoreception = Adv. Exp. Med. Biol. Neurobiology (Budapest, Hungary) = Neurobiology (Bp) Neurobiology-budapest = Neurobiology-budapes Neurobiology-budapest = Neurobiology-budapes. Neurobiology = Nato Adv Sci I A-lif Neurobiology = Nato. Adv. Sci. I. A-lif. Neurobiology = Neurobiology Neurobiology=Neurobiology (Bp);; Neurobiology of Actin: From Neurulation to Synaptic Function = Adv Neurobiol Neurobiology of Actin: From Neurulation to Synaptic Function = Adv. Neurobiol. Neurobiology of aging = Neurobiol Aging Neurobiology of Aging=Neurobiol Aging;; Neurobiology of Aging = Neurobiol Aging Neurobiology of Aging = Neurobiol. Aging Neurobiology of Alzheimer's Disease = Ann Ny Acad Sci Neurobiology of Alzheimer's Disease = Ann. Ny. Acad. Sci. Neurobiology of C. Elegans = Int Rev Neurobiol Neurobiology of C. Elegans = Int. Rev. Neurobiol. Neurobiology of Decision-making = Res Per Neurosci Neurobiology of Decision-making = Res. Per. Neurosci. Neurobiology of Dementia = Int Rev Neurobiol Neurobiology of Dementia = Int. Rev. Neurobiol. Neurobiology of Diabetic Neuropathy = Int Rev Neurobiol Neurobiology of Diabetic Neuropathy = Int. Rev. Neurobiol. Neurobiology of disease = Neurobiol Dis Neurobiology of Disease=Neurobiol Dis;; Neurobiology of Disease = Neurobiol Dis Neurobiology of Disease = Neurobiol. Dis. Neurobiology of Drug Abuse : Learning and Memory = Nida Res Mg Neurobiology of Drug Abuse : Learning and Memory = Nida. Res. Mg. Neurobiology of Drug and Alcohol Addiction = Ann Ny Acad Sci Neurobiology of Drug and Alcohol Addiction = Ann. Ny. Acad. Sci. Neurobiology of Early Infant Behaviour = Wenner-gr C Neurobiology of Early Infant Behaviour = Wenner-gr. C. Neurobiology of Epilepsy and Aging = Int Rev Neurobiol Neurobiology of Epilepsy and Aging = Int. Rev. Neurobiol. Neurobiology of Essential Fatty Acids = Adv Exp Med Biol Neurobiology of Essential Fatty Acids = Adv. Exp. Med. Biol. Neurobiology of Eye Movements: From Molecules to Behavior = Ann Ny Acad Sci Neurobiology of Eye Movements: From Molecules to Behavior = Ann. Ny. Acad. Sci. Neurobiology of Human Values = Res Per Neurosci Neurobiology of Human Values = Res. Per. Neurosci. Neurobiology of Hyperthermia = Prog Brain Res Neurobiology of Hyperthermia = Prog. Brain. Res. Neurobiology of Incontinence = Ciba F Symp Neurobiology of Incontinence = Ciba. F. Symp. Neurobiology of Infantile Autism = Int Congr Ser Neurobiology of Infantile Autism = Int. Congr. Ser. Neurobiology of learning and memory = Neurobiol Learn Mem Neurobiology of Learning and Memory=Neurobiol Learn Mem;; Neurobiology of Learning and Memory = Neurobiol Learn Mem Neurobiology of Learning and Memory = Neurobiol. Learn. Mem. Neurobiology of Mastication - From Molecular to Systems Approach = Int Congr Ser Neurobiology of Mastication - From Molecular to Systems Approach = Int. Congr. Ser. Neurobiology of Multiple Sclerosis = Int Rev Neurobiol Neurobiology of Multiple Sclerosis = Int. Rev. Neurobiol. Neurobiology of Neurotensin = Ann Ny Acad Sci Neurobiology of Neurotensin = Ann. Ny. Acad. Sci. Neurobiology of No- and -oh = Ann Ny Acad Sci Neurobiology of No- and -oh = Ann. Ny. Acad. Sci. Neurobiology of Painting = Int Rev Neurobiol Neurobiology of Painting = Int. Rev. Neurobiol. Neurobiology of Post-traumatic Stress Disorder = Psychiat Theor Appl Neurobiology of Post-traumatic Stress Disorder = Psychiat. Theor. Appl. Neurobiology of Puberty = Endocrin Updat Neurobiology of Puberty = Endocrin. Updat. Neurobiology of Puberty = Endocr Updat Neurobiology of Puberty = Endocr. Updat. Neurobiology of Stress Ulcers = Ann Ny Acad Sci Neurobiology of Stress Ulcers = Ann. Ny. Acad. Sci. Neurobiology of Suicide = Ann Ny Acad Sci Neurobiology of Suicide = Ann. Ny. Acad. Sci. Neurobiology of The Immune System = Int Rev Neurobiol Neurobiology of The Immune System = Int. Rev. Neurobiol. Neurobiology of The Locus Coeruleus = Prog Brain Res Neurobiology of The Locus Coeruleus = Prog. Brain. Res. Neurobiology of The Retina = Sem Ophtalm Neurobiology of The Retina = Sem. Ophtalm. Neurobiology of Umwelt: How Living Beings Perceive The World = Res Per Neurosci Neurobiology of Umwelt: How Living Beings Perceive The World = Res. Per. Neurosci. Neuro-cardiovascular Regulation: From Molecules to Man = Ann Ny Acad Sci Neuro-cardiovascular Regulation: From Molecules to Man = Ann. Ny. Acad. Sci. Neurocase : case studies in neuropsychology, neuropsychiatry, and behavioural neurology = Neurocase Neurocase = Neurocase Neurochemical Aspects of Phospholipid Metabolism = Fidia Res Series Neurochemical Aspects of Phospholipid Metabolism = Fidia. Res. Series. Neurochemical Journal = Neurochem J Neurochemical Journal = Neurochem J+ Neurochemical Journal = Neurochem. J. Neurochemical Journal = Neurochem. J+.+ Neurochemical Mechanisms in Disease = Adv Neurobiol Neurochemical Mechanisms in Disease = Adv. Neurobiol. Neurochemical pathology = Neurochem Pathol Neurochemical Pathology = Neurochem Pathol Neurochemical Pathology = Neurochem. Pathol. Neurochemical research = Neurochem Res Neurochemical Research=Neurochem Res;; Neurochemical Research = Neurochem Res Neurochemical Research = Neurochem. Res. Neurochemistry in Clinical Application = Adv Exp Med Biol Neurochemistry in Clinical Application = Adv. Exp. Med. Biol. Neurochemistry international = Neurochem Int Neurochemistry International=Neurochem Int;; Neurochemistry International = Neurochem Int Neurochemistry International = Neurochem. Int. Neurochemistry: Molecular Aspects, Cellular Aspects and Cinical Applications = Neurosci Res Prog Se Neurochemistry: Molecular Aspects, Cellular Aspects and Cinical Applications = Neurosci. Res. Prog. Se. Neurochemistry of Drug Dependence = Biochem Soc Symp Neurochemistry of Drug Dependence = Biochem. Soc. Symp. Neurochemistry of Drugs of Abuse = Ann Ny Acad Sci Neurochemistry of Drugs of Abuse = Ann. Ny. Acad. Sci. Neurochirurgia = Neurochirurgia Neurochirurgia = Neurochirurgia (Stuttg.) Neurochirurgia = Neurochirurgia (Stuttg) Neuro-chirurgie = Neuro-chir Neuro-chirurgie = Neuro-chir. Neurochirurgie = Neurochirurgie Neuro-Chirurgie=Neurochirurgie;; Neuro-Chirurgie = Neurochirurgie Neuro-Chirurgie = Neurochirurgie. Neurocirugia (Asturias, Spain) = Neurocirugia (Astur) Neurocirugia = Neurocirugia Neurocognition and Social Cognition in Schizophrenia Patients: Basic Concepts and Treatments = Key Issues Ment Heal Neurocognition and Social Cognition in Schizophrenia Patients: Basic Concepts and Treatments = Key. Issues. Ment. Heal. Neurocomputers and Attention, Vol 1 = Proc Nonlin Neurocomputers and Attention, Vol 1 = Proc. Nonlin. Neurocomputers and Attention, Vol 2 = Proc Nonlin Neurocomputers and Attention, Vol 2 = Proc. Nonlin. Neurocomputing = Neurocomputing Neurocritical Care: A Guide to Practical Management = Compet-base Crit Car Neurocritical Care: A Guide to Practical Management = Compet-base. Crit. Car. Neurocritical care = Neurocrit Care Neurocritical Care = Neurocrit Care Neurocritical Care = Neurocrit. Care Neurodegeneration : a journal for neurodegenerative disorders, neuroprotection, and neuroregeneration = Neurodegeneration Neurodegeneration in Multiple Sclerosis = Topics Neurosci Neurodegeneration in Multiple Sclerosis = Topics. Neurosci. Neurodegeneration in Multiple Sclerosis = Top Neurosci Neurodegeneration in Multiple Sclerosis = Top. Neurosci. Neurodegeneration = Neurodegeneration Neurodegenerative Diseases = Gwumc Dept Neurodegenerative Diseases = Gwumc. Dept. Neurodegenerative Diseases Laboratory and Clinical Research Series = Neurodegener Dis Lab Neurodegenerative Diseases Laboratory and Clinical Research Series = Neurodegener. Dis. Lab. Neuro-degenerative diseases = Neurodegener Dis Neurodegenerative Diseases = Neurodegener Dis Neurodegenerative Diseases = Neurodegener. Dis. Neuro-Degenerative Diseases = Neurodegener. Dis. Neurodegenerative Diseases = Top Med Chem Ser Neurodegenerative Diseases = Top. Med. Chem. Ser. Neurodegenerative Disorders = Life Sci R Neurodegenerative Disorders = Life. Sci. R. Neurodegenerative Disorders: Loss of Function Through Gain of Function = Res Per Alz Neurodegenerative Disorders: Loss of Function Through Gain of Function = Res. Per. Alz. Neurodevelopmental Diseases Laboratory and Clinical Research Series = Neurodev Dis Lab Cli Neurodevelopmental Diseases Laboratory and Clinical Research Series = Neurodev. Dis. Lab. Cli. Neurodynamics = S Neur Netw Neurodynamics = S. Neur. Netw. Neuroeconomics = Adv Health Econ Heal Neuroeconomics = Adv. Health. Econ. Heal. Neuroendocrine and Immune Crosstalk = Ann Ny Acad Sci Neuroendocrine and Immune Crosstalk = Ann. Ny. Acad. Sci. Neuroendocrine and Neural Regulation of Autoimmune and Inflammatory Disease: Molecular, Systems, and Clinical Insights = Ann Ny Acad Sci Neuroendocrine and Neural Regulation of Autoimmune and Inflammatory Disease: Molecular, Systems, and Clinical Insights = Ann. Ny. Acad. Sci. Neuroendocrine Cells and Peptidergic Innervation in Human and Rat Prostate = Adv Anat Embryol Cel Neuroendocrine Cells and Peptidergic Innervation in Human and Rat Prostate = Adv. Anat. Embryol. Cel. Neuroendocrine Immune Basis of The Rheumatic Diseases = Ann Ny Acad Sci Neuroendocrine Immune Basis of The Rheumatic Diseases = Ann. Ny. Acad. Sci. Neuroendocrine Immune Basis of The Rheumatic Diseases Ii, Proceedings = Ann Ny Acad Sci Neuroendocrine Immune Basis of The Rheumatic Diseases Ii, Proceedings = Ann. Ny. Acad. Sci. Neuroendocrine-immune Interactions = Front Horm Res Neuroendocrine-immune Interactions = Front. Horm. Res. Neuroendocrine Immunology in Rheumatic Diseases = Ann Ny Acad Sci Neuroendocrine Immunology in Rheumatic Diseases = Ann. Ny. Acad. Sci. Neuroendocrine Leydig Cells and Their Stem Cell Progenitors, The Pericytes = Adv Anat Embryol Cel Neuroendocrine Leydig Cells and Their Stem Cell Progenitors, The Pericytes = Adv. Anat. Embryol. Cel. Neuroendocrine Tumors = Curr Clin Oncol Neuroendocrine Tumors = Curr. Clin. Oncol. Neuro endocrinology letters = Neuro Endocrinol Lett Neuroendocrinology Letters = Neuroendocrinol Lett Neuroendocrinology Letters = Neuroendocrinol. Lett. Neuroendocrinology=Neuroendocrinology;; Neuroendocrinology = Neuroendocrinology Neuroendocrinology of Leptin = Front Horm Res Neuroendocrinology of Leptin = Front. Horm. Res. Neuroendocrinology: Pathological Situations and Diseases = Prog Brain Res Neuroendocrinology: Pathological Situations and Diseases = Prog. Brain. Res. Neuroendocrinology Research Developments = Endocr Res Clin Dev Neuroendocrinology Research Developments = Endocr. Res. Clin. Dev. Neuroendocrinology: The Normal Neuroendocrine System = Prog Brain Res Neuroendocrinology: The Normal Neuroendocrine System = Prog. Brain. Res. Neuroepidemiology=Neuroepidemiology;; Neuroepidemiology = Neuroepidemiology Neuroethics = Neuroethics-neth Neuroethics = Neuroethics-neth. Neurofibromatosis = Neurofibromatosis Neuroforum = Neuroforum Neuro-fuzzy Associative Machinery for Comprehensive Brain and Cognition Modelling = Stud Comput Intell Neuro-fuzzy Associative Machinery for Comprehensive Brain and Cognition Modelling = Stud. Comput. Intell. Neurogastroenterology and Motility=Neurogastroenterol Motil;; Neurogastroenterology and Motility = Neurogastroenterol. Motil. Neurogastroenterology and Motility = Neurogastroent Motil Neurogastroenterology and Motility = Neurogastroent. Motil. Neurogastroenterology and motility : the official journal of the European Gastrointestinal Motility Society = Neurogastroenterol Motil Neurogenetics = Neurogenetics Neurohypophysis : A Window On Brain Function = Ann Ny Acad Sci Neurohypophysis : A Window On Brain Function = Ann. Ny. Acad. Sci. Neurohypophysis = Int Congr Ser Neurohypophysis = Int. Congr. Ser. Neuroimage=Neuroimage;; Neuroimage = Neuroimage NeuroImage = Neuroimage Neuroimaging Clinics of North America = Neuroimag Clin N Am Neuroimaging Clinics of North America = Neuroimag. Clin. N. Am. Neuroimaging clinics of North America = Neuroimaging Clin N Am Neuroimaging Clinics of North America=Neuroimaging Clin N Am;; Neuroimaging Clinics of North America = Neuroimaging Clin. N. Am. Neuroimaging, Pt A = Int Rev Neurobiol Neuroimaging, Pt A = Int. Rev. Neurobiol. Neuroimaging, Pt B = Int Rev Neurobiol Neuroimaging, Pt B = Int. Rev. Neurobiol. Neuroimmune Circuits, Drugs of Abuse, and Infectious Diseases = Adv Exp Med Biol Neuroimmune Circuits, Drugs of Abuse, and Infectious Diseases = Adv. Exp. Med. Biol. Neuroimmunoendocrinology, 3rd Revised and Enlarged Edition = Chem Immunol Neuroimmunoendocrinology, 3rd Revised and Enlarged Edition = Chem. Immunol. Neuroimmunomodulation = Ann Ny Acad Sci Neuroimmunomodulation = Ann. Ny. Acad. Sci. Neuroimmunomodulation: From Fundamental Biology to Therapy = Ann Ny Acad Sci Neuroimmunomodulation: From Fundamental Biology to Therapy = Ann. Ny. Acad. Sci. Neuroimmunomodulation = Neuroimmunomodulat Neuroimmunomodulation = Neuroimmunomodulat. Neuroimmunomodulation=Neuroimmunomodulation;; Neuroimmunomodulation = Neuroimmunomodulation NeuroImmunoModulation = NeuroImmunoModulation Neuroimmunomodulation: The State of The Art = Ann Ny Acad Sci Neuroimmunomodulation: The State of The Art = Ann. Ny. Acad. Sci. Neuro-immuno-physiology of The Gastrointestinal Mucosa = Ann Ny Acad Sci Neuro-immuno-physiology of The Gastrointestinal Mucosa = Ann. Ny. Acad. Sci. Neuroinflammation - From Bench to Bedside = E Schering Res Fdn W Neuroinflammation - From Bench to Bedside = E. Schering. Res. Fdn. W. Neuroinflammation in Neuronal Death and Repair = Int Rev Neurobiol Neuroinflammation in Neuronal Death and Repair = Int. Rev. Neurobiol. Neuroinflammation in Stroke = E Schering Res Fdn W Neuroinflammation in Stroke = E. Schering. Res. Fdn. W. Neuroinformatics = Neuroinformatics Neuroleptic-nonresponsive Patient : Characterization and Treatment = Prog Psych Neuroleptic-nonresponsive Patient : Characterization and Treatment = Prog. Psych. Neurologia (Barcelona, Spain) = Neurologia Neurologia Croatica = Neurol. Croat. Neurologia Croatica = Neurol Croatica Neurologia Croatica = Neurol. Croatica Neurologia i neurochirurgia polska = Neurol Neurochir Pol Neurologia i Neurochirurgia Polska = Neurol. Neurochir. Pol. Neurologia I Neurochirurgia Polska=Neurol Neurochir Pol;; Neurologia I Neurochirurgia Polska = Neurol Neurochir Pol Neurologia I Neurochirurgia Polska = Neurol. Neurochir. Pol. Neurologia Medico-chirurgica = Neurol Med-chir Neurologia Medico-chirurgica = Neurol. Med-chir. Neurologia medico-chirurgica = Neurol Med Chir (Tokyo) Neurologia Medico-Chirurgica=Neurol Med Chir (Tokyo);; Neurologia Medico-Chirurgica = Neurol. Med. Chir. (Tokyo) Neurologia, neurochirurgia i psychiatria polska = Neurol Neurochir Psychiatr Pol Neurologia, Neurochirurgia i Psychiatria Polska = Neurol. Neurochir. Psychiatr. Pol. Neurologia, neurocirugia, psiquiatria = Neurol Neurocir Psiquiatr Neurologia-Neurocirugia-Psiquiatria = Neurol. Neurocir. Psiquiatr. Neurologia=Neurologia;; Neurologia = Neurologia Neurologia, psihiatria, neurochirurgia = Neurol Psihiatr Neurochir Neurologia, Psihiatria, Neurochirurgia = Neurol. Psihiatr. Neurochir. Neurological Disorders in Famous Artists, Pt 3 = Front Neurol Neurosc Neurological Disorders in Famous Artists, Pt 3 = Front. Neurol. Neurosc. Neurological research = Neurol Res Neurological Research=Neurol Res;; Neurological Research = Neurol Res Neurological Research = Neurol. Res. Neurological Sciences = Neurol Sci Neurological Sciences = Neurol. Sci. Neurological sciences : official journal of the Italian Neurological Society and of the Italian Society of Clinical Neurophysiology = Neurol Sci Neurological Surgery = Neurol Surg Tokyo Neurological Surgery = Neurol. Surg. Tokyo. Neurologic clinics = Neurol Clin Neurologic Clinics=Neurol Clin;; Neurologic Clinics = Neurol Clin Neurologic Clinics = Neurol. Clin. Neurologie a psychiatrie ceskoslovenska = Neurol Psychiatr Ceskoslov Neurologie et psychiatrie = Neurol Psychiatr (Bucur) Neurologie et Psychiatrie = Neurol. Psychiatr. (Bucur.) Neurologija = Neurologija Neurologist = Neurologist Neurology and Clinical Neurophysiology = Neurol. Clin. Neurophysiol. Neurology and Literature, 1860-1920 = Palgrave Stud Ninet- Neurology and Literature, 1860-1920 = Palgrave. Stud. Ninet-. Neurology and Neurobiology = Neurol Neur Neurology and Neurobiology = Neurol. Neur. Neurology Asia = Neurol Asia Neurology Asia = Neurol. Asia Neurology & clinical neurophysiology : NCN = Neurol Clin Neurophysiol Neurology India = Neurol India Neurology India = Neurol. India Neurology Laboratory and Clinical Research Series = Neurol Lab Clin Res Neurology Laboratory and Clinical Research Series = Neurol. Lab. Clin. Res. Neurology=Neurology;; Neurology = Neurology Neurology, neurophysiology, and neuroscience = Neurol Neurophysiol Neurosci Neurology, Neurophysiology, and Neuroscience = Neurol. Neurophysiol. Neurosci. Neurology Psychiatry and Brain Research = Neurol Psychiat Br Neurology Psychiatry and Brain Research = Neurol. Psychiat. Br. Neurology Reference Series = Neurol Ref Ser Neurology Reference Series = Neurol. Ref. Ser. Neuromethods = Neuromethods Neuromodulation = Neuromodulation Neuromodulators = Int Rev Neurobiol Neuromodulators = Int. Rev. Neurobiol. Neuromolecular medicine = Neuromolecular Med Neuromolecular Medicine = Neuromolecular Med. Neuromolecular Medicine = Neuromol Med Neuromolecular Medicine = Neuromol. Med. NeuroMolecular Medicine = NeuroMol. Med. Neuromuscular Diseases During Development = Mariani F P Neuromuscular Diseases During Development = Mariani. F. P. Neuromuscular Disorders = Neuromuscular Disord Neuromuscular Disorders = Neuromuscular Disord. Neuromuscular Disorders=Neuromuscul Disord;; Neuromuscular Disorders = Neuromuscul. Disord. Neuromuscular disorders : NMD = Neuromuscul Disord Neuromuscular Junctions in Drosophila = Int Rev Neurobiol Neuromuscular Junctions in Drosophila = Int. Rev. Neurobiol. Neuronal Activity in Tumor Tissue = Prog Exp Tumor Res Neuronal Activity in Tumor Tissue = Prog. Exp. Tumor Res. Neuronal-astrocytic Interactions = Prog Brain Res Neuronal-astrocytic Interactions = Prog. Brain. Res. Neuronal Control of Bodily Function : Basic and Clinical Aspects = Neur Cont B Neuronal Control of Bodily Function : Basic and Clinical Aspects = Neur. Cont. B. Neuronal Cytoskeleton = Tanig Symp Brain Sci Neuronal Cytoskeleton = Tanig. Symp. Brain. Sci. Neuronal Death By Accident Or Design = Res Per Neurosci Neuronal Death By Accident Or Design = Res. Per. Neurosci. Neuronal Degeneration and Regeneration: From Basic Mechanisms to Prospects for Therapy = Prog Brain Res Neuronal Degeneration and Regeneration: From Basic Mechanisms to Prospects for Therapy = Prog. Brain. Res. Neuronal Grafting and Alzheimers Disease = Res Per Alz Neuronal Grafting and Alzheimers Disease = Res. Per. Alz. Neuronal Input Pathways to The Brain's Biological Clock and Their Functional Significance = Adv Anat Embryol Cel Neuronal Input Pathways to The Brain's Biological Clock and Their Functional Significance = Adv. Anat. Embryol. Cel. Neuronal Mechanisms for Generating Locomotor Activity = Ann Ny Acad Sci Neuronal Mechanisms for Generating Locomotor Activity = Ann. Ny. Acad. Sci. Neuronal Plasticity: Building A Bridge From The Laboratory to The Clinic = Res Per Neurosci Neuronal Plasticity: Building A Bridge From The Laboratory to The Clinic = Res. Per. Neurosci. Neuronal Signal Transduction and Alzheimer's Disease = Biochem Soc Symp Neuronal Signal Transduction and Alzheimer's Disease = Biochem. Soc. Symp. Neuron glia biology = Neuron Glia Biol Neuron Glia Biology = Neuron Glia Biol Neuron Glia Biology = Neuron Glia Biol. Neuron=Neuron;; Neuron = Neuron Neurons and Networks in The Spinal Cord = Ann Ny Acad Sci Neurons and Networks in The Spinal Cord = Ann. Ny. Acad. Sci. Neurons: Methods and Applications for The Cell Biologist = Method Cell Biol Neurons: Methods and Applications for The Cell Biologist = Method. Cell Biol. Neuro-oncology and Cancer Targeted Therapy = Cancer Etiol Diagn T Neuro-oncology and Cancer Targeted Therapy = Cancer Etiol. Diagn. T. Neuro-oncology = Dev Oncol Neuro-oncology = Dev. Oncol. Neuro-oncology = Neuro-oncol. Neuro-oncology = Neuro Oncol Neuro-oncology = Neuro-oncology Neuro-ophthalmology (Aeolus Press) = Neuroophthalmology Neuro-ophthalmology = Neuro-ophthalmology Neuro-orthopedics = Neuro-orthopedics Neuropadiatrie = Neuropadiatrie Neuropathic Pain: Bench to Bedside = Roy Soc Med Int Cong Neuropathic Pain: Bench to Bedside = Roy. Soc. Med. Int. Cong. Neuropathology and Applied Neurobiology = Neuropath Appl Neuro Neuropathology and Applied Neurobiology = Neuropath. Appl. Neuro. Neuropathology and applied neurobiology = Neuropathol Appl Neurobiol Neuropathology and Applied Neurobiology=Neuropathol Appl Neurobiol;; Neuropathology and Applied Neurobiology = Neuropathol. Appl. Neurobiol. Neuropathology and Genetics of Dementia = Adv Exp Med Biol Neuropathology and Genetics of Dementia = Adv. Exp. Med. Biol. Neuropathology in Brain Research = Int Congr Ser Neuropathology in Brain Research = Int. Congr. Ser. Neuropathology = Neuropathology Neuropathology : official journal of the Japanese Society of Neuropathology = Neuropathology Neuropatologia polska = Neuropatol Pol Neuropatologia Polska = Neuropatol. Pol. Neuropediatrics=Neuropediatrics;; Neuropediatrics = Neuropediatrics Neuropeptide Cholecystokinin ( Cck ) = Ellis Hor S Neuropeptide Cholecystokinin ( Cck ) = Ellis. Hor. S. Neuropeptides (Amsterdam, Netherlands) = Neuropeptides (Amsterdam, Neth.) Neuropeptides and Immunopeptides : Messengers in A Neuroimmune Axis = Ann Ny Acad Sci Neuropeptides and Immunopeptides : Messengers in A Neuroimmune Axis = Ann. Ny. Acad. Sci. Neuropeptides and Their Receptors = Alfred Benzon Symp S Neuropeptides and Their Receptors = Alfred. Benzon. Symp. S. Neuropeptides: Basic and Clinical Advances = Ann Ny Acad Sci Neuropeptides: Basic and Clinical Advances = Ann. Ny. Acad. Sci. Neuropeptides in Development and Aging = Ann Ny Acad Sci Neuropeptides in Development and Aging = Ann. Ny. Acad. Sci. Neuropeptides in Respiratory Medicine = Cl Aller Im Neuropeptides in Respiratory Medicine = Cl. Aller. Im. Neuropeptides in The Spinal Cord = Prog Brain Res Neuropeptides in The Spinal Cord = Prog. Brain. Res. Neuropeptides=Neuropeptides;; Neuropeptides = Neuropeptides Neuropeptides (Oxford, United Kingdom) = Neuropeptides (Oxford, U. K.) Neuropeptides: Structure and Function in Biology and Behavior = Ann Ny Acad Sci Neuropeptides: Structure and Function in Biology and Behavior = Ann. Ny. Acad. Sci. Neuropeptide Systems As Targets for Parasite and Pest Control = Adv Exp Med Biol Neuropeptide Systems As Targets for Parasite and Pest Control = Adv. Exp. Med. Biol. Neuropharmacology=Neuropharmacology;; Neuropharmacology = Neuropharmacology Neuropharmacology of Serotonin / = Ann Ny Acad Sci Neuropharmacology of Serotonin / = Ann. Ny. Acad. Sci. Neurophysiologie Clinique-clinical Neurophysiology = Neurophysiol Clin Neurophysiologie Clinique-clinical Neurophysiology = Neurophysiol. Clin. Neurophysiologie Clinique=Neurophysiol Clin;; Neurophysiologie Clinique = Neurophysiol. Clin. Neurophysiology = Neurophysiology Neurophysiology = Neurophysiology+ Neurophysiology = Neurophysiology+.+ Neuropilin: From Nervous System to Vascular and Tumor Biology = Adv Exp Med Biol Neuropilin: From Nervous System to Vascular and Tumor Biology = Adv. Exp. Med. Biol. Neuroprotection and Neurodegeneration in Parkinson's Disease = Roy S Med S Neuroprotection and Neurodegeneration in Parkinson's Disease = Roy. S. Med. S. Neuroprotective Agents and Cerebral Ischaemia = Int Rev Neurobiol Neuroprotective Agents and Cerebral Ischaemia = Int. Rev. Neurobiol. Neuroprotective Agents = Ann Ny Acad Sci Neuroprotective Agents = Ann. Ny. Acad. Sci. Neuroprotective Agents: Eighth International Neuroprotection Society Meeting = Ann Ny Acad Sci Neuroprotective Agents: Eighth International Neuroprotection Society Meeting = Ann. Ny. Acad. Sci. Neuroprotective Agents: Fourth International Conference = Ann Ny Acad Sci Neuroprotective Agents: Fourth International Conference = Ann. Ny. Acad. Sci. Neuroprotective Agents - Third International Conference = Ann Ny Acad Sci Neuroprotective Agents - Third International Conference = Ann. Ny. Acad. Sci. Neuroproteomics: Methods and Protocols = Methods Mol Biol Neuroproteomics: Methods and Protocols = Methods Mol. Biol. Neuroproteomics = Neuromethods Neuroproteomics = Neuromethods. Neuroprotocols-a Companion to Methods in Neurosciences = Neuroprotocols Neuroprotocols-a Companion to Methods in Neurosciences = Neuroprotocols. Neuropsichiatria = Neuropsichiatria Neuropsihijatrija = Neuropsihijatrija Neuropsychiatric Disease and Treatment = Neuropsych Dis Treat Neuropsychiatric Disease and Treatment = Neuropsych. Dis. Treat. Neuropsychiatric Manifestations of Systemic Lupus Erythematosus = Ann Ny Acad Sci Neuropsychiatric Manifestations of Systemic Lupus Erythematosus = Ann. Ny. Acad. Sci. Neuropsychiatrie De L Enfance Et De L Adolescence = Neuropsychiat Enfan Neuropsychiatrie De L Enfance Et De L Adolescence = Neuropsychiat. Enfan. Neuropsychiatrie de l'enfance et de l'adolescence = Neuropsychiatr Enfance Adolesc Neuropsychiatrie de l'Enfance et de l'Adolescence = Neuropsychiatr. Enfance Adolesc. Neuropsychiatrie : Klinik, Diagnostik, Therapie und Rehabilitation : Organ der Gesellschaft Osterreichischer Nervenarzte und Psychiater = Neuropsychiatr Neuropsychiatrie = Neuropsychiatrie Neuropsychiatry in Old Age: An Update = Psychiat Progr Ser Neuropsychiatry in Old Age: An Update = Psychiat. Progr. Ser. Neuropsychiatry = Neuropsychiatry Neuropsychiatry, neuropsychology, and behavioral neurology = Neuropsychiatry Neuropsychol Behav Neurol Neuropsychiatry, Neuropsychology, and Behavioral Neurology=Neuropsychiatry Neuropsychol Behav Neurol;; Neuropsychiatry, Neuropsychology, and Behavioral Neurology = Neuropsychiatry. Neuropsychol. Behav. Neurol. Neuropsychiatry Neuropsychology and Behavioral Neurology = Neuropsy Neuropsy Be Neuropsychiatry Neuropsychology and Behavioral Neurology = Neuropsy. Neuropsy. Be. Neuropsychobiology=Neuropsychobiology;; Neuropsychobiology = Neuropsychobiology Neuropsychologia=Neuropsychologia;; Neuropsychologia = Neuropsychologia Neuropsychological Rehabilitation-a Modular Handbook = Neuropsycholog Rehab Neuropsychological Rehabilitation-a Modular Handbook = Neuropsycholog. Rehab. Neuropsychological Rehabilitation and People With Dementia = Neuropsycholog Rehab Neuropsychological Rehabilitation and People With Dementia = Neuropsycholog. Rehab. Neuropsychological rehabilitation = Neuropsychol Rehabil Neuropsychological Rehabilitation = Neuropsychol Rehabil Neuropsychological Rehabilitation = Neuropsychol. Rehabil. Neuropsychologists Handbook = Neuropsychologist Hb Neuropsychologists Handbook = Neuropsychologist. Hb. Neuropsychology and Cognition = Neurops Cog Neuropsychology and Cognition = Neurops. Cog. Neuropsychology and Substance Use: State-of-the-art and Future Directions = Stud Neuropsych Dev Neuropsychology and Substance Use: State-of-the-art and Future Directions = Stud. Neuropsych. Dev. Neuropsychology, development, and cognition. Section B, Aging, neuropsychology and cognition = Neuropsychol Dev Cogn B Aging Neuropsychol Cogn Neuropsychology=Neuropsychology;; Neuropsychology = Neuropsychology Neuropsychology of Asian Americans = Stud Neuropsychol Ne Neuropsychology of Asian Americans = Stud. Neuropsychol. Ne. Neuropsychology of High-level Vision = Carn S Cogn Neuropsychology of High-level Vision = Carn. S. Cogn. Neuropsychology of Schizophrenia = Brain Dam B Neuropsychology of Schizophrenia = Brain. Dam. B. Neuropsychology of The Sense of Agency = Psychol Res Prog Neuropsychology of The Sense of Agency = Psychol. Res. Prog. Neuropsychology of Women = Issues Divers Clin N Neuropsychology of Women = Issues. Divers. Clin. N. Neuropsychology review = Neuropsychol Rev Neuropsychology Review=Neuropsychol Rev;; Neuropsychology Review = Neuropsychol Rev Neuropsychology Review = Neuropsychol. Rev. Neuropsychopharmacology = Neuropsychopharmacol Neuropsychopharmacology = Neuropsychopharmacol. Neuropsychopharmacology=Neuropsychopharmacology;; Neuropsychopharmacology = Neuropsychopharmacology Neuropsychopharmacology : official publication of the American College of Neuropsychopharmacology = Neuropsychopharmacology Neuroquantology = Neuroquantology Neuroradiology=Neuroradiology;; Neuroradiology = Neuroradiology Neuroreceptor Mechanisms in Brain = Adv Exp Med Biol Neuroreceptor Mechanisms in Brain = Adv. Exp. Med. Biol. Neurorehabilitation and neural repair = Neurorehabil Neural Repair Neurorehabilitation and Neural Repair = Neurorehabil. Neural Repair Neurorehabilitation and Neural Repair = Neurorehab Neural Re Neurorehabilitation and Neural Repair = Neurorehab. Neural Re. Neurorehabilitation = Neurorehabilitation NeuroRehabilitation = NeuroRehabilitation Neuroreport=Neuroreport;; Neuroreport = Neuroreport Neurorx = Neurorx NeuroRx : the journal of the American Society for Experimental NeuroTherapeutics = NeuroRx Neuroscience and behavioral physiology = Neurosci Behav Physiol Neuroscience and Behavioral Physiology=Neurosci Behav Physiol;; Neuroscience and Behavioral Physiology = Neurosci. Behav. Physiol. Neuroscience and Biobehavioral Reviews = Neurosci Biobehav R Neuroscience and Biobehavioral Reviews = Neurosci. Biobehav. R. Neuroscience and biobehavioral reviews = Neurosci Biobehav Rev Neuroscience and Biobehavioral Reviews=Neurosci Biobehav Rev;; Neuroscience and Biobehavioral Reviews = Neurosci. Biobehav. Rev. Neuroscience bulletin = Neurosci Bull Neuroscience Bulletin = Neurosci Bull Neuroscience Bulletin = Neurosci. Bull. Neuroscience: From The Molecular to The Cognitive = Prog Brain Res Neuroscience: From The Molecular to The Cognitive = Prog. Brain. Res. Neuroscience letters = Neurosci Lett Neuroscience Letters=Neurosci Lett;; Neuroscience Letters = Neurosci Lett Neuroscience Letters = Neurosci. Lett. Neuroscience letters. Supplement = Neurosci Lett Suppl Neuroscience Letters. Supplement=Neurosci Lett Suppl;; Neuroscience Letters. Supplement = Neurosci. Lett. Suppl. Neuroscience=Neuroscience;; Neuroscience = Neuroscience Neuroscience news = Neurosci News Neuroscience of Decision Making = Cont Top Cogn Neuros Neuroscience of Decision Making = Cont. Top. Cogn. Neuros. Neuroscience of The Mind On The Centennial of Freuds Project for A Scientific Psychology = Ann Ny Acad Sci Neuroscience of The Mind On The Centennial of Freuds Project for A Scientific Psychology = Ann. Ny. Acad. Sci. Neuroscience (Oxford, United Kingdom) = Neuroscience (Oxford, U. K.) Neuroscience research communications = Neurosci Res Commun Neuroscience Research Communications = Neurosci Res Commun Neuroscience Research Communications = Neurosci. Res. Commun. Neuroscience research = Neurosci Res Neuroscience Research=Neurosci Res;; Neuroscience Research = Neurosci Res Neuroscience Research = Neurosci. Res. Neuroscience Research Progress Series = Neurosci Res Prog Se Neuroscience Research Progress Series = Neurosci. Res. Prog. Se. Neuroscience Research. Supplement=Neurosci Res Suppl;; Neuroscience Research. Supplement = Neurosci. Res. Suppl. Neuroscience research. Supplement : the official journal of the Japan Neuroscience Society = Neurosci Res Suppl Neuroscience (San Diego, CA, United States) = Neuroscience (San Diego, CA, U. S.) Neurosciences and Music = Ann Ny Acad Sci Neurosciences and Music = Ann. Ny. Acad. Sci. Neurosciences and Music Ii: From Perception to Performance = Ann Ny Acad Sci Neurosciences and Music Ii: From Perception to Performance = Ann. Ny. Acad. Sci. Neurosciences and Music Iii: Disorders and Plasticity = Ann Ny Acad Sci Neurosciences and Music Iii: Disorders and Plasticity = Ann. Ny. Acad. Sci. Neurosciences Institute Publications Series = Neurosci In Neurosciences Institute Publications Series = Neurosci. In. Neurosciences in The Postgenomic Era = Res Per Neurosci Neurosciences in The Postgenomic Era = Res. Per. Neurosci. Neurosciences-japan = Neurosciences-jpn Neurosciences-japan = Neurosciences-jpn. Neurosciences = Neurosciences Neurosciences research = Neurosci Res (N Y) Neurosciences Research = Neurosci. Res. (N. Y.) Neurosciences Research Program Bulletin = Neurosci Res Prog B Neurosciences Research Program Bulletin = Neurosci. Res. Prog. B. Neurosciences Research Program bulletin = Neurosci Res Program Bull Neurosciences Research Program Bulletin = Neurosci. Res. Program Bull. Neuroscientist = Neuroscientist Neuro-signals = Neurosignals Neurosignals = Neurosignals Neuro-Signals = Neurosignals Neurosteroids and Brain Function = Int Rev Neurobiol Neurosteroids and Brain Function = Int. Rev. Neurobiol. Neurosurgery and Medical Ethics = Act Neur S Neurosurgery and Medical Ethics = Act. Neur. S. Neurosurgery clinics of North America = Neurosurg Clin N Am Neurosurgery Clinics of North America=Neurosurg Clin N Am;; Neurosurgery Clinics of North America = Neurosurg Clin N Am Neurosurgery Clinics of North America = Neurosurg. Clin. N. Am. Neurosurgery = Eur Man Med Neurosurgery = Eur. Man. Med. Neurosurgery=Neurosurgery;; Neurosurgery = Neurosurgery Neurosurgery Quarterly = Neurosurg Quart Neurosurgery Quarterly = Neurosurg. Quart. Neurosurgical Aspects of Epilepsy = Act Neur S Neurosurgical Aspects of Epilepsy = Act. Neur. S. Neurosurgical focus = Neurosurg Focus Neurosurgical Focus = Neurosurg Focus Neurosurgical Focus = Neurosurg. Focus Neurosurgical Re-engineering of The Damaged Brain and Spinal Cord = Acta Neurochir Suppl Neurosurgical Re-engineering of The Damaged Brain and Spinal Cord = Acta. Neurochir. Suppl. Neurosurgical Re-engineering of The Damaged Brain and Spinal Cord = Act Neur S Neurosurgical Re-engineering of The Damaged Brain and Spinal Cord = Act. Neur. S. Neurosurgical review = Neurosurg Rev Neurosurgical Review=Neurosurg Rev;; Neurosurgical Review = Neurosurg Rev Neurosurgical Review = Neurosurg. Rev. Neurotherapeutics = Neurotherapeutics Neurotherapeutics : the journal of the American Society for Experimental NeuroTherapeutics = Neurotherapeutics Neurotherapy: Progress in Restorative Neuroscience and Neurology = Prog Brain Res Neurotherapy: Progress in Restorative Neuroscience and Neurology = Prog. Brain. Res. Neurotox 88 = Int Congr Ser Neurotox 88 = Int. Congr. Ser. Neurotoxicity and Developmental Disabilities = Int Rev Res Ment Ret Neurotoxicity and Developmental Disabilities = Int. Rev. Res. Ment. Ret. Neurotoxicity of Excitatory Amino Acids = Fid Res Fdn Neurotoxicity of Excitatory Amino Acids = Fid. Res. Fdn. Neurotoxicity research = Neurotox Res Neurotoxicity Research = Neurotox Res Neurotoxicity Research = Neurotox. Res. Neurotoxicology and teratology = Neurotoxicol Teratol Neurotoxicology and Teratology=Neurotoxicol Teratol;; Neurotoxicology and Teratology = Neurotoxicol Teratol Neurotoxicology and Teratology = Neurotoxicol. Teratol. Neurotoxicology=Neurotoxicology;; Neurotoxicology = Neurotoxicology Neurotoxins and Neurodegenerative Disease = Ann Ny Acad Sci Neurotoxins and Neurodegenerative Disease = Ann. Ny. Acad. Sci. Neurotoxins in Neurochemistry = E H S Biot Neurotoxins in Neurochemistry = E. H. S. Biot. Neurotoxins=Neurotoxins;; Neurotoxins = Neurotoxins Neurotransmission and Cerebrovascular Function, Vol 1 = Int Congr Ser Neurotransmission and Cerebrovascular Function, Vol 1 = Int. Congr. Ser. Neurotransmission and Cerebrovascular Function, Vol 2 = Int Congr Ser Neurotransmission and Cerebrovascular Function, Vol 2 = Int. Congr. Ser. Neurotransmitter Receptors and Intracellular Signaling = Int Congr Ser Neurotransmitter Receptors and Intracellular Signaling = Int. Congr. Ser. Neurotransmitters in Neuronal Plasticity and Psychiatric Disorders = Int Congr Ser Neurotransmitters in Neuronal Plasticity and Psychiatric Disorders = Int. Congr. Ser. Neurotransmitters = Int Congr Ser Neurotransmitters = Int. Congr. Ser. Neurotransmitters in The Human Brain = Adv Behav Biol Neurotransmitters in The Human Brain = Adv. Behav. Biol. Neurotransmitter Transporters = Method Enzymol Neurotransmitter Transporters = Method. Enzymol. Neurotrauma = Neurotraum Neurotrauma = Neurotraum. Neurotrauma: New Insights Into Pathology and Treatment = Prog Brain Res Neurotrauma: New Insights Into Pathology and Treatment = Prog. Brain. Res. Neurotraumatology: Biomechanic Aspects, Cytologic and Molecular Mechanisms = Res Leg Med Neurotraumatology: Biomechanic Aspects, Cytologic and Molecular Mechanisms = Res. Leg. Med. Neurotrophic Factors = Tanig Symp Brain Sci Neurotrophic Factors = Tanig. Symp. Brain. Sci. Neurourology and urodynamics = Neurourol Urodyn Neurourology and Urodynamics=Neurourol Urodyn;; Neurourology and Urodynamics = Neurourol. Urodyn. Neurourology and Urodynamics = Neurourol Urodynam Neurourology and Urodynamics = Neurourol. Urodynam. Neusser Jahrbuch = Neuss Jahrb Neutral Ism in Starburst Galaxies = Astr Soc P Neutral Ism in Starburst Galaxies = Astr. Soc. P. Neutral Kaons = Springer Tr Mod Phys Neutral Kaons = Springer. Tr. Mod. Phys. Neutrino Factories and Superbeams = Aip Conf Proc Neutrino Factories and Superbeams = Aip. Conf. Proc. Neutrino Factories, Superbeams and Betabeams = Aip Conf Proc Neutrino Factories, Superbeams and Betabeams = Aip. Conf. Proc. Neutrino Factories, Superbeams, and Beta Beams = Aip Conf Proc Neutrino Factories, Superbeams, and Beta Beams = Aip. Conf. Proc. Neutrino Mass = Springer Trac Mod Ph Neutrino Mass = Springer. Trac. Mod. Ph. Neutrino Mass = Springer Tr Mod Phys Neutrino Mass = Springer. Tr. Mod. Phys. Neutrino-nucleus Interactions in The Few-gev Region = Aip Conf Proc Neutrino-nucleus Interactions in The Few-gev Region = Aip. Conf. Proc. Neutrino Physics = P Int Sch Phys Neutrino Physics = P. Int. Sch. Phys. Neutrinos and Explosive Events in The Universe = Nato Sci Ser Ii-math Neutrinos and Explosive Events in The Universe = Nato. Sci. Ser. Ii-math. Neutrinos and Explosive Events in The Universe = Nato Sci Ser Ii Math Neutrinos and Explosive Events in The Universe = Nato. Sci. Ser. Ii. Math. Neutrinos, Flavor Physics, and Precision Cosmology = Aip Conf Proc Neutrinos, Flavor Physics, and Precision Cosmology = Aip. Conf. Proc. Neutron and X-ray Scattering Advancing Materials Research = Aip Conf Proc Neutron and X-ray Scattering Advancing Materials Research = Aip. Conf. Proc. Neutron and X-ray Scattering As Probes of Multiscale Phenomena = Mater Res Soc Symp P Neutron and X-ray Scattering As Probes of Multiscale Phenomena = Mater. Res. Soc. Symp. P. Neutron and X-ray Scattering : Complementary Techniques = Inst Phys Conf Ser Neutron and X-ray Scattering : Complementary Techniques = Inst. Phys. Conf. Ser. Neutron and X-ray Scattering in Materials Science and Biology = Aip Conf Proc Neutron and X-ray Scattering in Materials Science and Biology = Aip. Conf. Proc. Neutron Applications in Earth, Energy and Environmental Sciences = Neutron Scatt Appl T Neutron Applications in Earth, Energy and Environmental Sciences = Neutron Scatt. Appl. T. Neutron Beam Design, Development, and Performance for For Neutron Capture Therapy = Basic Life Sci Neutron Beam Design, Development, and Performance for For Neutron Capture Therapy = Basic. Life. Sci. Neutron Imaging and Applications: A Reference for The Imaging Community = Neutron Scatt Appl T Neutron Imaging and Applications: A Reference for The Imaging Community = Neutron Scatt. Appl. T. Neutron Optical Devices and Applications = P Soc Photo-opt Ins Neutron Optical Devices and Applications = P. Soc. Photo-opt. Ins. Neutron Optics = P Soc Photo-opt Ins Neutron Optics = P. Soc. Photo-opt. Ins. Neutrons and Numerical Methods-n(2)m = Aip Conf Proc Neutrons and Numerical Methods-n(2)m = Aip. Conf. Proc. Neutrons and Their Applications, International Conference = P Soc Photo-opt Ins Neutrons and Their Applications, International Conference = P. Soc. Photo-opt. Ins. Neutron Scattering Applications and Techniques = Neutron Scatt Appl T Neutron Scattering Applications and Techniques = Neutron Scatt. Appl. T. Neutron Scattering Data Analysis 1990 = Inst Phys Conf Ser Neutron Scattering Data Analysis 1990 = Inst. Phys. Conf. Ser. Neutron Scattering for Materials Science = Mater Res Soc Symp P Neutron Scattering for Materials Science = Mater. Res. Soc. Symp. P. Neutron Scattering in Condensed Matter Physics = Ser Neutron Tech App Neutron Scattering in Condensed Matter Physics = Ser. Neutron Tech. App. Neutron Scattering in Earth Sciences = Rev Mineral Geochem Neutron Scattering in Earth Sciences = Rev. Mineral. Geochem. Neutron Scattering in Materials Science Ii = Mater Res Soc Symp P Neutron Scattering in Materials Science Ii = Mater. Res. Soc. Symp. P. Neutrons in Biology = Basic Life Sci Neutrons in Biology = Basic. Life. Sci. Neutrons in Research and Industry, International Conference = P Soc Photo-opt Ins Neutrons in Research and Industry, International Conference = P. Soc. Photo-opt. Ins. Neutron Spin Echo in Polymer Systems = Adv Polym Sci Neutron Spin Echo in Polymer Systems = Adv. Polym. Sci. Neutron Spin Echo Spectroscopy: Basics, Trends and Applications = Lect Notes Phys Neutron Spin Echo Spectroscopy: Basics, Trends and Applications = Lect. Notes. Phys. Neutron Spin Echo Spectroscopy Viscoelasticity Rheology = Adv Polym Sci Neutron Spin Echo Spectroscopy Viscoelasticity Rheology = Adv. Polym. Sci. Neutron Star - Black Hole Connection = Nato Sci Ser Ii-math Neutron Star - Black Hole Connection = Nato. Sci. Ser. Ii-math. Neutron Star - Black Hole Connection = Nato Sci Ser Ii Math Neutron Star - Black Hole Connection = Nato. Sci. Ser. Ii. Math. Neutron Stars 1: Equation of State Structure = Astrophys Space Sc L Neutron Stars 1: Equation of State Structure = Astrophys. Space. Sc. L. Neutron Stars and Pulsars = Astrophys Space Sc L Neutron Stars and Pulsars = Astrophys. Space. Sc. L. Neutron Stars and Their Birth Events = Nato Adv Sci I C-mat Neutron Stars and Their Birth Events = Nato. Adv. Sci. I. C-mat. Neutron Stars in Supernova Remnants = Astr Soc P Neutron Stars in Supernova Remnants = Astr. Soc. P. Neutron Stars : Theory and Observation = Nato Adv Sci I C-mat Neutron Stars : Theory and Observation = Nato. Adv. Sci. I. C-mat. Neutrons, X Rays, and Gamma Rays : Imaging Detectors, Material Characterization Techniques, and Applications = P Soc Photo-opt Ins Neutrons, X Rays, and Gamma Rays : Imaging Detectors, Material Characterization Techniques, and Applications = P. Soc. Photo-opt. Ins. Neutron, X-ray and Light Scattering : Introduction to An Investigative Tool for Colloidal and Polymeric Systems = N-holland D Neutron, X-ray and Light Scattering : Introduction to An Investigative Tool for Colloidal and Polymeric Systems = N-holland. D. Neutrophil: An Emerging Regulator of Inflammatory and Immune Response = Chem Immunol Neutrophil: An Emerging Regulator of Inflammatory and Immune Response = Chem. Immunol. Neutrophils: Lifespan, Functions and Roles in Disease = Cell Bio Res Prog Neutrophils: Lifespan, Functions and Roles in Disease = Cell. Bio. Res. Prog. Nevada Agricultural Experiment Station Series B = Nev Agr Exp Sta Se B Nevada Agricultural Experiment Station Series B = Nev. Agr. Exp. Sta. Se. B Nevada Agricultural Experiment Station Series T = Nev Agr Exp Sta Se T Nevada Agricultural Experiment Station Series T = Nev. Agr. Exp. Sta. Se. T Nevada Historical Society quarterly (1961) = Nev Hist Soc Q Nevada Nurses Association Quarterly Newsletter = Nev Nurses Assoc Q Newsl Nevada Nurses Association Quarterly Newsletter = Nev. Nurses Assoc. Q. Newsl. Nevada revised statutes : containing all statute laws of Nevada of a general, public, and permanent nature / Classified, arranged, revised, indexed and published (pursuant to chapter 220 of NRS) by the Legislative Counsel, State of Neva... = Nev Revis Statut Nev Nevada RNformation = Nev Rnformation Nevada RNformation = Nev. Rnformation Never Mind The Web: Here Comes The Book = Chandos Publ Ser Never Mind The Web: Here Comes The Book = Chandos. Publ. Ser. Nevrone; periodico di neurologia, psichiatria e scienze affini = Nevrone Period Neurol Psichiatr Sci Affin Nevropatologiia i psikhiatriia = Nevropatol Psikhiatriia New Advances in Cardiovascular Physiology and Pharmacology = Int Congr Ser New Advances in Cardiovascular Physiology and Pharmacology = Int. Congr. Ser. New Advances in Computational Structural Mechanics = Stud Appl Mech New Advances in Computational Structural Mechanics = Stud. Appl. Mech. New Advances in Cytokines = Serono Sym New Advances in Cytokines = Serono. Sym. New Advances in Intelligent Decision Technologies = Stud Comp Intell New Advances in Intelligent Decision Technologies = Stud. Comp. Intell. New Advances in Intelligent Decision Technologies = Stud Comput Intell New Advances in Intelligent Decision Technologies = Stud. Comput. Intell. New Advances in Radiology and Screening of Asbestos-related Diseases, Proceedings = People Work Res Rep New Advances in Radiology and Screening of Asbestos-related Diseases, Proceedings = People. Work. Res. Rep. New Advances in Simulation, Modelling and Optimization (smo '07) = Ele Com Eng New Advances in Simulation, Modelling and Optimization (smo '07) = Ele. Com. Eng. New Advances in The Control of Lipid Metabolism : Focus On Pravastatin = Roy Soc Med Int Cong New Advances in The Control of Lipid Metabolism : Focus On Pravastatin = Roy. Soc. Med. Int. Cong. New Advances in Thoracic Oncology: From Scientific Evidence to Optimal Management = Nato Sci Ser I Life New Advances in Thoracic Oncology: From Scientific Evidence to Optimal Management = Nato. Sci. Ser. I. Life. New Advances in Virtual Humans: Artificial Intelligence Environment = Stud Comput Intell New Advances in Virtual Humans: Artificial Intelligence Environment = Stud. Comput. Intell. New African = New Afr New Agendas in Communication = New Agendas Commun New Agendas in Communication = New Agendas Commun. New America-a Review = New America New America-a Review = New America. New American review = New Am Rev New American Way of War: Military Culture and The Political Utility of Force = Lse Int Stud Ser New American Way of War: Military Culture and The Political Utility of Force = Lse. Int. Stud. Ser. New and Advanced Materials, Pts 1 and 2 = Adv Mater Res-switz New and Advanced Materials, Pts 1 and 2 = Adv. Mater. Res-switz. New and Enduring Themes in Development Economics = Stat Sci Interdisc R New and Enduring Themes in Development Economics = Stat. Sci. Interdisc. R. New and Enduring Themes in Development Economics = Stat Sci Int Res New and Enduring Themes in Development Economics = Stat. Sci. Int. Res. New and Exotic Phenomena 90 = Moriond Wor New and Exotic Phenomena 90 = Moriond. Wor. New Antibacterial Strategies = Fr Infec D New Antibacterial Strategies = Fr. Infec. D. New Applications for Wide-bandgap Semiconductors = Mater Res Soc Symp P New Applications for Wide-bandgap Semiconductors = Mater. Res. Soc. Symp. P. New Applications in Modeling Urban Water Systems, Monograph 7 = Adv Mod Manag Stormw New Applications in Modeling Urban Water Systems, Monograph 7 = Adv. Mod. Manag. Stormw. New Approaches and Concepts in Turbulence = Monte Verit New Approaches and Concepts in Turbulence = Monte. Verit. New Approaches for Security, Privacy and Trust in Complex Environments = Int Fed Info Proc New Approaches for Security, Privacy and Trust in Complex Environments = Int. Fed. Info. Proc. New Approaches in Biomedical Spectroscopy = Acs Sym Ser New Approaches in Biomedical Spectroscopy = Acs. Sym. Ser. New Approaches in Medical Image Analysis = Proc Spie New Approaches in Medical Image Analysis = Proc. Spie. New Approaches in Medical Image Analysis = P Soc Photo-opt Ins New Approaches in Medical Image Analysis = P. Soc. Photo-opt. Ins. New Approaches in Sociology = New Approach Sociol New Approaches in Sociology = New Approach. Sociol. New Approaches to Circle Packing in A Square: With Program Codes = Springer Ser Optim A New Approaches to Circle Packing in A Square: With Program Codes = Springer. Ser. Optim. A New Approaches to Designing Automobiles = Vdi Bericht New Approaches to Designing Automobiles = Vdi. Bericht. New Approaches to Employee Management = N Appr Employ Manag New Approaches to Employee Management = N. Appr. Employ. Manag. New Approaches to Employee Management, Vol 4, 1997 = N Appr Employ Manag New Approaches to Employee Management, Vol 4, 1997 = N. Appr. Employ. Manag. New Approaches to High-tech Materials: Nondestructive Testing and Computer Simulations in Materials Science and Engineering = P Soc Photo-opt Ins New Approaches to High-tech Materials: Nondestructive Testing and Computer Simulations in Materials Science and Engineering = P. Soc. Photo-opt. Ins. New Approaches to Housing for The Second Half of Life = Living Concepts New Approaches to Housing for The Second Half of Life = Living. Concepts. New Approaches to Interpreter Education = Interpreter Educ Ser New Approaches to Interpreter Education = Interpreter Educ. Ser. New Approaches to Old Problems = Amst Stud Theory His New Approaches to Old Problems = Amst. Stud. Theory. His. New Approaches to Organization Design: Theory and Practice of Adaptive Enterprises = Inform Organ Des Ser New Approaches to Organization Design: Theory and Practice of Adaptive Enterprises = Inform. Organ. Des. Ser. New Approaches to Peace and Security = N App Peace New Approaches to Peace and Security = N. App. Peace New Approaches to Problems in Liquid State Theory = Nato Adv Sci I C-mat New Approaches to Problems in Liquid State Theory = Nato. Adv. Sci. I. C-mat. New Approaches to Stabilisation of Vaccines Potency = Dev Biologicals New Approaches to Stabilisation of Vaccines Potency = Dev. Biologicals. New Approaches to Stabilisation of Vaccines Potency = Dev Biol Stand New Approaches to Stabilisation of Vaccines Potency = Dev. Biol. Stand. New Approaches to The Economics of Plant Health = Wag Ur Fron New Approaches to The Economics of Plant Health = Wag. Ur. Fron. New Architecture for Functional Grammar = Funct Grammar New Architecture for Functional Grammar = Funct. Grammar New Architecture for The U.s. National Accounts = Stud Income New Architecture for The U.s. National Accounts = Stud. Income. New Asian Innovation Dynamics - China and India in Perspective = Technol Glob Dev Ser New Asian Innovation Dynamics - China and India in Perspective = Technol. Glob. Dev. Ser. New Aspects in Phosphorus Chemistry Iii = Top Curr Chem New Aspects in Phosphorus Chemistry Iii = Top. Curr. Chem. New Aspects in Phosphorus Chemistry Ii = Top Curr Chem New Aspects in Phosphorus Chemistry Ii = Top. Curr. Chem. New Aspects in Phosphorus Chemistry I = Top Curr Chem New Aspects in Phosphorus Chemistry I = Top. Curr. Chem. New Aspects in Phosphorus Chemistry Iv = Top Curr Chem New Aspects in Phosphorus Chemistry Iv = Top. Curr. Chem. New Aspects in Phosphorus Chemistry V = Top Curr Chem New Aspects in Phosphorus Chemistry V = Top. Curr. Chem. New Aspects of Applied Informatics, Biomedical Electronics and Informatics and Communication = Int C Appl Inform C New Aspects of Applied Informatics, Biomedical Electronics and Informatics and Communication = Int. C. Appl. Inform. C. New Aspects of Electromagnetic and Acoustic Wave Diffusion = Springer Tr Mod Phys New Aspects of Electromagnetic and Acoustic Wave Diffusion = Springer. Tr. Mod. Phys. New Aspects of Energy, Environment, Ecosystems and Sustainable Development, Pt 1 = Energy Environ Eng S New Aspects of Energy, Environment, Ecosystems and Sustainable Development, Pt 1 = Energy. Environ. Eng. S. New Aspects of Engineering Education = Ma Comput Sci Eng New Aspects of Engineering Education = Ma. Comput. Sci. Eng. New Aspects of Engineering Education = Math Comput Sci Eng New Aspects of Engineering Education = Math. Comput. Sci. Eng. New Aspects of Engineering Mechanics, Structures, Engineering Geology = Ma Comput Sci Eng New Aspects of Engineering Mechanics, Structures, Engineering Geology = Ma. Comput. Sci. Eng. New Aspects of Engineering Mechanics, Structures, Engineering Geology = Math Comput Sci Eng New Aspects of Engineering Mechanics, Structures, Engineering Geology = Math. Comput. Sci. Eng. New Aspects of Fluid Mechanics, Heat Transfer and Environment = Wseas Mech Eng Ser New Aspects of Fluid Mechanics, Heat Transfer and Environment = Wseas. Mech. Eng. Ser. New Aspects of Human Polymorphonuclear Leukocytes = Adv Exp Med Biol New Aspects of Human Polymorphonuclear Leukocytes = Adv. Exp. Med. Biol. New Aspects of Microelectronics, Nanoelectronics, Optoelectronics = Ele Com Eng New Aspects of Microelectronics, Nanoelectronics, Optoelectronics = Ele. Com. Eng. New Aspects of Nuclear Dynamics = Nato Adv Sci I B-phy New Aspects of Nuclear Dynamics = Nato. Adv. Sci. I. B-phy. New Aspects of Nutritional Status = Bibl Nutr Diet New Aspects of Nutritional Status = Bibl. Nutr. Diet. New Aspects of Resistance Research On Cultivated Plants Bacterial Diseases, Proceedings = Beitrage Zf New Aspects of Resistance Research On Cultivated Plants Bacterial Diseases, Proceedings = Beitrage. Zf. New Aspects of Signal Processing and Wavelets = Ele Com Eng New Aspects of Signal Processing and Wavelets = Ele. Com. Eng. New Aspects of Spillover Effect in Catalysis = Stud Surf Sci Catal New Aspects of Spillover Effect in Catalysis = Stud. Surf. Sci. Catal. New Aspects of Systems, Pts I and Ii = Ma Comput Sci Eng New Aspects of Systems, Pts I and Ii = Ma. Comput. Sci. Eng. New Aspects of Systems, Pts I and Ii = Math Comput Sci Eng New Aspects of Systems, Pts I and Ii = Math. Comput. Sci. Eng. New Aspects of Systems Theory and Scientific Computation = Math Comput Sci Eng New Aspects of Systems Theory and Scientific Computation = Math. Comput. Sci. Eng. New Aspects of Telecommunications and Informatics = Ele Com Eng New Aspects of Telecommunications and Informatics = Ele. Com. Eng. New Aspects of Urban Planning and Transportation = Ma Comput Sci Eng New Aspects of Urban Planning and Transportation = Ma. Comput. Sci. Eng. New Aspects of Urban Planning and Transportation = Math Comput Sci Eng New Aspects of Urban Planning and Transportation = Math. Comput. Sci. Eng. New Astronomy = New Astron New Astronomy = New Astron. New Astronomy: Opening The Electromagnetic Window and Expanding Our View of Planet Earth = Astrophys Space Sc L New Astronomy: Opening The Electromagnetic Window and Expanding Our View of Planet Earth = Astrophys. Space. Sc. L. New Astronomy Review = New Astron. Rev. New Astronomy Reviews = New Astron. Rev. New Astronomy Reviews = New Astron Rev New Astronomy Reviews = New Astron. Rev. New Atlantis (Washington, D.C.) = New Atlantis New Avenues to Efficient Chemical Synthesis: Emerging Technologies = Ernst Schering Found New Avenues to Efficient Chemical Synthesis: Emerging Technologies = Ernst. Schering. Found. New Balanced Anesthesia = Int Congr Ser New Balanced Anesthesia = Int. Congr. Ser. New Biocides Development: Combined Approach of Chemistry and Microbiology = Acs Sym Ser New Biocides Development: Combined Approach of Chemistry and Microbiology = Acs. Sym. Ser. New Biologist = New Biol New Biologist = New Biol. New Biology of Steroid Hormones = Serono Sym New Biology of Steroid Hormones = Serono. Sym. New Biomedical Materials = Biom Hlth R New Biomedical Materials = Biom. Hlth. R. New Biotechnology = New Biotechnol New Biotechnology = New Biotechnol. New Black: Alternative Paradigms and Strategies for The 21st Century = Res Race Ethn Relat New Black: Alternative Paradigms and Strategies for The 21st Century = Res. Race. Ethn. Relat. New Blackfriars = New Blackfriars Newborn and infant nursing reviews : NAINR = Newborn Infant Nurs Rev New Buddhist Movements in Thailand: Towards An Understanding of Wat Phra Dhammakaya and Santi Asoke = Routl Crit Stud Budd New Buddhist Movements in Thailand: Towards An Understanding of Wat Phra Dhammakaya and Santi Asoke = Routl. Crit. Stud. Budd. New Business Creation: An International Overview = Int Stud Entrep New Business Creation: An International Overview = Int. Stud. Entrep. New Carbon Based Materials for Electrochemical Energy Storage Systems: Batteries, Supercapacitors and Fuel Cells = Nato Sci Ser Ii-math New Carbon Based Materials for Electrochemical Energy Storage Systems: Batteries, Supercapacitors and Fuel Cells = Nato. Sci. Ser. Ii-math. New Carbon Based Materials for Electrochemical Energy Storage Systems: Batteries, Supercapacitors and Fuel Cells = Nato Sci Ser Ii Math New Carbon Based Materials for Electrochemical Energy Storage Systems: Batteries, Supercapacitors and Fuel Cells = Nato. Sci. Ser. Ii. Math. New Carbon Materials = New Carbon Mater New Carbon Materials = New Carbon Mater. Newcastle Disease in Village Chickens = Aciar Proc Newcastle Disease in Village Chickens = Aciar. Proc. Newcastle medical journal = Newcastle Med J New Catalysts for Clean Environment = Vtt Symp New Catalysts for Clean Environment = Vtt. Symp. New Catholic world = New Cathol World New Century of X-ray Astronomy = Astr Soc P New Century of X-ray Astronomy = Astr. Soc. P. New Challenges for Intelligent Information and Database Systems = Stud Comput Intell New Challenges for Intelligent Information and Database Systems = Stud. Comput. Intell. New Challenges for Public Administration in The Twenty-first Century: Efficient Civil Service and Decentralized Public Administration = Int Inst Adm Sci Mg New Challenges for Public Administration in The Twenty-first Century: Efficient Civil Service and Decentralized Public Administration = Int. Inst. Adm. Sci. Mg. New Challenges in Applied Intelligence Technologies = Stud Comp Intell New Challenges in Applied Intelligence Technologies = Stud. Comp. Intell. New Challenges in Applied Intelligence Technologies = Stud Comput Intell New Challenges in Applied Intelligence Technologies = Stud. Comput. Intell. New Challenges in Computational Collective Intelligence = Stud Comp Intell New Challenges in Computational Collective Intelligence = Stud. Comp. Intell. New Challenges in Computational Collective Intelligence = Stud Comput Intell New Challenges in Computational Collective Intelligence = Stud. Comput. Intell. New Challenges in Superconductivity: Experimental Advances and Emerging Theories = Nato Sci Ser Ii-math New Challenges in Superconductivity: Experimental Advances and Emerging Theories = Nato. Sci. Ser. Ii-math. New Challenges in Superconductivity: Experimental Advances and Emerging Theories = Nato Sci Ser Ii Math New Challenges in Superconductivity: Experimental Advances and Emerging Theories = Nato. Sci. Ser. Ii. Math. New Challenges in Typology : Broadening The Horizons and Redefining The Foundations = Trends Linguist-stud New Challenges in Typology : Broadening The Horizons and Redefining The Foundations = Trends. Linguist-stud. New Challenges in Typology = Trends Linguist-stud New Challenges in Typology = Trends. Linguist-stud. New Challenges to Health: The Threat of Virus Infection = Symp Soc Gen Microbi New Challenges to Health: The Threat of Virus Infection = Symp. Soc. Gen. Microbi. New Challenges to International Marketing = Adv Int Marketing New Challenges to International Marketing = Adv. Int. Marketing New community = New community New Comprehensive Biochemistry = New Compr. Biochem. New Computational Methods in Power System Reliability = Stud Comput Intell New Computational Methods in Power System Reliability = Stud. Comput. Intell. New Computational Paradigms = Lect Notes Comput Sc New Computational Paradigms = Lect. Notes. Comput. Sc. New Concepts and Methods in Air Traffic Management = Transportation Analy New Concepts and Methods in Air Traffic Management = Transportation. Analy. New Concepts in Anxiety = P Fabre Mon New Concepts in Anxiety = P. Fabre. Mon. New Concepts in Asthma = P Fabre Mon New Concepts in Asthma = P. Fabre. Mon. New Concepts in Cancer = P Fabre Mon New Concepts in Cancer = P. Fabre. Mon. New Concepts in Diagnosis and Therapy of Pancreatic Adenocarcinoma = Med Radiol Diagn Ima New Concepts in Diagnosis and Therapy of Pancreatic Adenocarcinoma = Med. Radiol. Diagn. Ima. New Concepts in Latino American Cultures = New Concept Lat Amer New Concepts in Latino American Cultures = New Concept. Lat. Amer. New Concepts in Latino American Cultures = New Concepts Lat Am New Concepts in Latino American Cultures = New Concepts Lat. Am. New Concepts in Pathology and Treatment of Autoimmune Disorders = E Schering Res Fdn W New Concepts in Pathology and Treatment of Autoimmune Disorders = E. Schering. Res. Fdn. W. New Concepts in The Pathogenesis of Niddm = Adv Exp Med Biol New Concepts in The Pathogenesis of Niddm = Adv. Exp. Med. Biol. New Concepts of Psychostimulants Induced Neurotoxicity = Int Rev Neurobiol New Concepts of Psychostimulants Induced Neurotoxicity = Int. Rev. Neurobiol. New Consciousness Reader = New Consciousness Re New Consciousness Reader = New Consciousness Re. New Constantines = Soc Prom Byzant St New Constantines = Soc. Prom. Byzant. St. New Contributions to The Philosophy of History = Methods Ser New Contributions to The Philosophy of History = Methods. Ser. New Cosmology = Aip Conf Proc New Cosmology = Aip. Conf. Proc. New Creation Or Eternal Now = Theol Bilb New Creation Or Eternal Now = Theol. Bilb. New Critical Essays On Kurt Vonnegut = Am Lit Read Twenty-f New Critical Essays On Kurt Vonnegut = Am. Lit. Read. Twenty-f. New Critical Idiom = New Crit Idiom New Critical Idiom = New Crit. Idiom New Deal Banking Reforms and Keynesian Welfare State Capitalism = New Polit Econ Ser New Deal Banking Reforms and Keynesian Welfare State Capitalism = New Polit. Econ. Ser. New Dentist = New Dent. New Departures in Marxian Theory = Econ Soc Theor New Departures in Marxian Theory = Econ. Soc. Theor. New Development and Application in Chemical Reaction Engineering, 4th Asia-pacific Chemical Reaction Engineering Symposium (apcre 05) = Stud Surf Sci Catal New Development and Application in Chemical Reaction Engineering, 4th Asia-pacific Chemical Reaction Engineering Symposium (apcre 05) = Stud. Surf. Sci. Catal. New Developments and Applications in Optical Radiometry = Inst Phys Conf Ser New Developments and Applications in Optical Radiometry = Inst. Phys. Conf. Ser. New Developments in Algebraic Geometry, Integrable Systems and Mirror Symmetry (rims, Kyoto, 2008) = Adv Stu P M New Developments in Algebraic Geometry, Integrable Systems and Mirror Symmetry (rims, Kyoto, 2008) = Adv. Stu. P. M. New Developments in Approximation Theory = Int Ser Numer Math New Developments in Approximation Theory = Int. Ser. Numer. Math. New Developments in Approximation Theory = Int S Num M New Developments in Approximation Theory = Int. S. Num. M. New Developments in Array Technology and Applications = Iau Symp New Developments in Array Technology and Applications = Iau. Symp. New Developments in Classification and Data Analysis = St Class Dat Anal New Developments in Classification and Data Analysis = St. Class. Dat. Anal. New Developments in Classification and Data Analysis = Stud Class Data Anal New Developments in Classification and Data Analysis = Stud. Class. Data Anal. New Developments in Computational Fluid Dynamics = Note N Fl Mech Mul D New Developments in Computational Fluid Dynamics = Note. N. Fl. Mech. Mul. D. New Developments in Dietary Fiber = Adv Exp Med Biol New Developments in Dietary Fiber = Adv. Exp. Med. Biol. New Developments in Differential Geometry = Math Appl New Developments in Differential Geometry = Math. Appl. New Developments in Distributed Applications and Interoperable Systems = Int Fed Info Proc New Developments in Distributed Applications and Interoperable Systems = Int. Fed. Info. Proc. New Developments in Fatty Acid Oxidation = Prog Clin Biol Res New Developments in Fatty Acid Oxidation = Prog. Clin. Biol. Res. New Developments in Formal Languages and Applications = Stud Comput Intell New Developments in Formal Languages and Applications = Stud. Comput. Intell. New Developments in Fundamental Interaction Theories = Aip Conf Proc New Developments in Fundamental Interaction Theories = Aip. Conf. Proc. New Developments in Glycomedicine = Int Congr Ser New Developments in Glycomedicine = Int. Congr. Ser. New Developments in High Temperature Superconductivity = Lect Notes Phys New Developments in High Temperature Superconductivity = Lect. Notes. Phys. New Developments in Industrial Wastewater Treatment = Nato Adv Sci I E-app New Developments in Industrial Wastewater Treatment = Nato. Adv. Sci. I. E-app. New Developments in Lie Theory and Geometry = Contemp Math New Developments in Lie Theory and Geometry = Contemp. Math. New Developments in Lie Theory and Its Applications = Contemp Math New Developments in Lie Theory and Its Applications = Contemp. Math. New Developments in Lipid-protein Interactions and Receptor Function = Nato Adv Sci Inst Se New Developments in Lipid-protein Interactions and Receptor Function = Nato. Adv. Sci. Inst. Se. New Developments in Nonlinear Plasma Physics = Aip Conf Proc New Developments in Nonlinear Plasma Physics = Aip. Conf. Proc. New Developments in Optomechanics = P Soc Photo-opt Ins New Developments in Optomechanics = P. Soc. Photo-opt. Ins. New Developments in Parsing Technology = Text Speech Lang Tec New Developments in Parsing Technology = Text. Speech. Lang. Tec. New Developments in Polymer Analytics I = Adv Polym Sci New Developments in Polymer Analytics I = Adv. Polym. Sci. New Developments in Polymer Analytics Ii = Adv Polym Sci New Developments in Polymer Analytics Ii = Adv. Polym. Sci. New Developments in Pseudo-differential Operators = Oper Theor New Developments in Pseudo-differential Operators = Oper. Theor. New Developments in Pseudo-differential Operators = Oper Theory Adv Appl New Developments in Pseudo-differential Operators = Oper. Theory. Adv. Appl. New Developments in Quantum Field Theory = Nato Adv Sci I B-phy New Developments in Quantum Field Theory = Nato. Adv. Sci. I. B-phy. New Developments in Refrigeration for Food Safety and Quality = Refr Sci T New Developments in Refrigeration for Food Safety and Quality = Refr. Sci. T. New Developments in Selective Oxidation By Heterogeneous Catalyses = Stud Surf Sci Catal New Developments in Selective Oxidation By Heterogeneous Catalyses = Stud. Surf. Sci. Catal. New Developments in Selective Oxidation Ii = Stud Surf Sci Catal New Developments in Selective Oxidation Ii = Stud. Surf. Sci. Catal. New Developments in Selective Oxidation = Stud Surf Sci Catal New Developments in Selective Oxidation = Stud. Surf. Sci. Catal. New Developments in Sheep Production = Occ Pub Bri New Developments in Sheep Production = Occ. Pub. Bri. New Developments in Singularity Theory = Nato Sci Ser Ii-math New Developments in Singularity Theory = Nato. Sci. Ser. Ii-math. New Developments in Singularity Theory = Nato Sci Ser Ii Math New Developments in Singularity Theory = Nato. Sci. Ser. Ii. Math. New Developments in The Theory of Networks: Franchising, Alliances and Cooperatives = Contrib Manag Sci New Developments in The Theory of Networks: Franchising, Alliances and Cooperatives = Contrib. Manag. Sci. New Developments in The Therapy of Allergic Disorders and Asthma = Int Acad B New Developments in The Therapy of Allergic Disorders and Asthma = Int. Acad. B. New Developments in Ultrasonic Transducers and Transducer Systems = P Soc Photo-opt Ins New Developments in Ultrasonic Transducers and Transducer Systems = P. Soc. Photo-opt. Ins. New Developments in X-ray and Ultraviolet Astronomy = Adv Space Res New Developments in X-ray and Ultraviolet Astronomy = Adv. Space. Res. New Developments in X-ray and Ultraviolet Astronomy = Adv Space Res-series New Developments in X-ray and Ultraviolet Astronomy = Adv. Space. Res-series. New Developments On Fundamental Problems in Quantum Physics = Fund Theor New Developments On Fundamental Problems in Quantum Physics = Fund. Theor. New Diagnostic Technology: Applications in Animal Health and Biologics Controls = Dev Biologicals New Diagnostic Technology: Applications in Animal Health and Biologics Controls = Dev. Biologicals. New Diamond and Frontier Carbon Technology = New Diam Front C Tec New Diamond and Frontier Carbon Technology = New Diam. Front. C. Tec. New Diamond and Frontier Carbon Technology = New Diamond Front. Carbon Technol. New Diamond Science and Technology = Mat Res S C New Diamond Science and Technology = Mat. Res. S. C. New Dimensions in Information Processing = Schr Inform New Dimensions in Information Processing = Schr. Inform. New Dimensions in International Security, Pt 1 = Adelp Pap New Dimensions in International Security, Pt 1 = Adelp. Pap. New Dimensions in Networks = New Dimens Netw New Dimensions in Networks = New Dimens. Netw. New Dimensions in Networks = New Dim Net New Dimensions in Networks = New Dim. Net. New Dimensions of Contrast Media = Int Congr Ser New Dimensions of Contrast Media = Int. Congr. Ser. New Dimensions of Peacekeeping = Nijhoff Law Spec New Dimensions of Peacekeeping = Nijhoff. Law. Spec. New Dimensions of The European Landscape = Wag Ur Fron New Dimensions of The European Landscape = Wag. Ur. Fron. New Directions and Applications in Control Theory = Lect Notes Contr Inf New Directions and Applications in Control Theory = Lect. Notes. Contr. Inf. New Directions: Efficiency and Productivity = Stud Product Effic New Directions: Efficiency and Productivity = Stud. Product. Effic. New Directions for Cellular and Organ Transplantation = Int Congr Ser New Directions for Cellular and Organ Transplantation = Int. Congr. Ser. New directions for child and adolescent development = New Dir Child Adolesc Dev New Directions for Child and Adolescent Development = New Dir. Child Adolesc. Dev. New directions for child development = New Dir Child Dev New Directions for Child Development = New Dir. Child Dev. New Directions For Child Development=New Dir Child Dev;; New Directions for Community Colleges = New Dir Commun Coll New Directions for Community Colleges = New Dir. Commun. Coll. New Directions for Education = New Dir Educ New Directions for Education = New Dir. Educ. New Directions for Higher Education = New Dir Higher Educ New Directions for Higher Education = New Dir. Higher Educ. New directions for mental health services = New Dir Ment Health Serv New Directions for Mental Health Services = New Dir. Ment. Health Serv. New Directions For Mental Health Services=New Dir Ment Health Serv;; New Directions for Situated Cognition in Mathematics Education = Math Educ Lib New Directions for Situated Cognition in Mathematics Education = Math. Educ. Lib. New directions for youth development = New Dir Youth Dev New Directions for Youth Development = New Dir. Youth Dev. New Directions in Aging Research: Health and Cognition = Aging Iss Health Fin New Directions in Aging Research: Health and Cognition = Aging Iss. Health Fin. New Directions in Ai Planning = Fr Art Int New Directions in Ai Planning = Fr. Art. Int. New Directions in Anthropology = New Dir Anthr New Directions in Anthropology = New Dir. Anthr. New Directions in Archaeological Science = Terra Australis New Directions in Archaeological Science = Terra. Australis. New Directions in Biblical Theology = Supp Novum Testament New Directions in Biblical Theology = Supp. Novum. Testament. New Directions in Biological Control = Ucla Sym Bi New Directions in Biological Control = Ucla. Sym. Bi. New Directions in Civil Engineering = New D Civ E New Directions in Civil Engineering = New D. Civ. E. New Directions in Communication Disorders Research = New Dir Commun D Res New Directions in Communication Disorders Research = New Dir. Commun. D. Res. New Directions in Economic Geography = New Horiz Reg Sci New Directions in Economic Geography = New Horiz. Reg. Sci. New Directions in Human Information Behavior = Inform Sci Knowl Man New Directions in Human Information Behavior = Inform. Sci. Knowl. Man. New Directions in Information Management = New Dir Inform Manag New Directions in Information Management = New Dir. Inform. Manag. New Directions in Intelligent Interactive Multimedia = Stud Comp Intell New Directions in Intelligent Interactive Multimedia = Stud. Comp. Intell. New Directions in Intelligent Interactive Multimedia = Stud Comput Intell New Directions in Intelligent Interactive Multimedia = Stud. Comput. Intell. New Directions in Intelligent Interactive Multimedia Systems and Services - 2 = Stud Comp Intell New Directions in Intelligent Interactive Multimedia Systems and Services - 2 = Stud. Comp. Intell. New Directions in Irish and Irish American Literature = New Dir Ir Ir Am Lit New Directions in Irish and Irish American Literature = New Dir. Ir. Ir. Am. Lit. New Directions in Latino American Cultures = New Dir Lat Am Cult New Directions in Latino American Cultures = New Dir. Lat. Am. Cult. New Directions in Mathematical Fluid Mechanics: The Alexander V. Kazhikhov Memorial Volume = Adv Math Fluid Mech New Directions in Mathematical Fluid Mechanics: The Alexander V. Kazhikhov Memorial Volume = Adv. Math. Fluid Mech. New Directions in Mesoscopic Physics (towards Nanoscience) = Nato Sci Ser Ii-math New Directions in Mesoscopic Physics (towards Nanoscience) = Nato. Sci. Ser. Ii-math. New Directions in Mesoscopic Physics (towards Nanoscience) = Nato Sci Ser Ii Math New Directions in Mesoscopic Physics (towards Nanoscience) = Nato. Sci. Ser. Ii. Math. New Directions in Modern Economics = New Dir Mod Econ New Directions in Modern Economics = New Dir. Mod. Econ. New Directions in Nonlinear and Observer Design = Lect Notes Contr Inf New Directions in Nonlinear and Observer Design = Lect. Notes. Contr. Inf. New Directions in Philosophy and Cognitive Science = New Dir Philos Cogn New Directions in Philosophy and Cognitive Science = New Dir. Philos. Cogn. New Directions in Quantum Chaos = P Int Sch Phys New Directions in Quantum Chaos = P. Int. Sch. Phys. New Directions in Quantum Chromodynamics = Aip Conf Proc New Directions in Quantum Chromodynamics = Aip. Conf. Proc. New Directions in Regional Economic Development = Adv Spat Sci New Directions in Regional Economic Development = Adv. Spat. Sci. New Directions in Research and Clinical Works for Obesity and Diabetes Mellitus = Int Congr Ser New Directions in Research and Clinical Works for Obesity and Diabetes Mellitus = Int. Congr. Ser. New Directions in Research With Third-generation Soft X-ray Synchrotron Radiation Sources = Nato Adv Sci Inst Se New Directions in Research With Third-generation Soft X-ray Synchrotron Radiation Sources = Nato. Adv. Sci. Inst. Se. New Directions in Rough Sets, Data Mining, and Granular-soft Computing = Lect Notes Artif Int New Directions in Rough Sets, Data Mining, and Granular-soft Computing = Lect. Notes. Artif. Int. New Directions in Statistical Data Analysis and Robustness = Monte Verit New Directions in Statistical Data Analysis and Robustness = Monte. Verit. New Directions in Terahertz Technology = Nato Adv Sci I E-app New Directions in Terahertz Technology = Nato. Adv. Sci. I. E-app. New Directions in The Human-animal Bond = New Dir Hum-anim Bon New Directions in The Human-animal Bond = New Dir. Hum-anim. Bon. New Directions in The Sociology of Global Development = Res Rural Sociol Dev New Directions in The Sociology of Global Development = Res. Rural. Sociol. Dev. New Directions in Us Foreign Policy = Rout Stud Us For Pol New Directions in Us Foreign Policy = Rout. Stud. Us For. Pol. New Directions in Vestibular Research = Ann Ny Acad Sci New Directions in Vestibular Research = Ann. Ny. Acad. Sci. New Directions in Web Data Management 1 = Stud Comput Intell New Directions in Web Data Management 1 = Stud. Comput. Intell. New Discoveries in Agrochemicals = Acs Sym Ser New Discoveries in Agrochemicals = Acs. Sym. Ser. New Disparities in Spatial Development in Europe = Ger Annu Spat Res Po New Disparities in Spatial Development in Europe = Ger. Annu. Spat. Res. Po. New Drugs and Targets for Asthma and Copd = Prog Respir Res New Drugs and Targets for Asthma and Copd = Prog. Respir. Res. New Drugs for Asthma Therapy = Agent Action Suppl New Drugs for Asthma Therapy = Agent. Action. Suppl. New Drugs in Allergy and Asthma = Agent Action Suppl New Drugs in Allergy and Asthma = Agent. Action. Suppl. New Dynamic Public Finance = Toulouse Lect Econ New Dynamic Public Finance = Toulouse. Lect. Econ. New Dynamics of Innovation and Competition = New Dynam Innov Comp New Dynamics of Innovation and Competition = New Dynam. Innov. Comp. New Economics As Mainstream Economics = Int Pap Polit Econ New Economics As Mainstream Economics = Int. Pap. Polit. Econ. New Economic Windows = Ne Econ Win New Economic Windows = Ne. Econ. Win. New Economic Windows = New Econ Windows New Economic Windows = New Econ. Windows New Economy in Development: Ict Challenges and Opportunities = Technol Glob Dev Ser New Economy in Development: Ict Challenges and Opportunities = Technol. Glob. Dev. Ser. New Economy=New Economy New Economy of The Inner City = Routl Stud Econ Geog New Economy of The Inner City = Routl. Stud. Econ. Geog. New Educational Review = New Educ Rev New Educational Review = New Educ. Rev. New Egyptian journal of medicine = New Egypt J Med New Egyptian Journal of Microbiology = New Egypt. J. Microbiol. New Electronics = New Electron New Electronics = New Electron. New England and regional allergy proceedings = N Engl Reg Allergy Proc New England and Regional Allergy Proceedings = N. Engl. Reg. Allergy Proc. New England and Regional Allergy Proceedings = New Engl Reg Allergy New England and Regional Allergy Proceedings = New Engl. Reg. Allergy New England Classical Newsletter = NECN New England Complex Systems Institute Series On Complexity = New Engl Compl Syst New England Complex Systems Institute Series On Complexity = New Engl. Compl. Syst. New England Economic Review=New England Econ. Rev. New England Economic Review = New Engl Econ Rev New England Economic Review = New Engl. Econ. Rev. New England journal of human services = N Engl J Hum Serv New England Journal of Human Services = N. Engl. J. Hum. Serv. New England Journal of Medicine=N Engl J Med;; New England Journal of Medicine = N. Engl. J. Med. New England Journal of Medicine = New Engl J Med New England Journal of Medicine = New Engl. J. Med. New England journal of public policy : a journal of the John W. McCormack Institute of Public Affairs, University of Massachusetts at Boston = N Engl J Public Policy New England journal on criminal and civil confinement = N Engl J Crim Civ Confin New England journal on prison law = New Engl J Prison Law New England law review = New Engl Law Rev New England Quarterly-a Historical Review of New England Life and Letters = New Engl Quart New England Quarterly-a Historical Review of New England Life and Letters = New Engl. Quart. New England Review and Bread Loaf Quarterly = New Engl Rev Bread L New England Review and Bread Loaf Quarterly = New Engl. Rev. Bread L. New England Review-middlebury Series = New Engl Rev-middleb New England Review-middlebury Series = New Engl. Rev-middleb. New England Review = New Engl Rev Bread L New England Review = New Engl. Rev. Bread. L. New Epidemics in Occupational Health = People Work Res Rep New Epidemics in Occupational Health = People. Work. Res. Rep. New Era in Cosmology = Astr Soc P New Era in Cosmology = Astr. Soc. P. New era nursing image international : NENI = New Era Nurs Image Int New Era Nursing Image International = New Era Nurs. Image Int. New Era of Wide Field Astronomy = Astr Soc P New Era of Wide Field Astronomy = Astr. Soc. P. New Essays in Religious Naturalism = High Inst S New Essays in Religious Naturalism = High. Inst. S. New Essays On American Drama = Costerus Es New Essays On American Drama = Costerus. Es. New Essays On Paretos Economic Theory = Routl Stud Hist Econ New Essays On Paretos Economic Theory = Routl. Stud. Hist. Econ. New Ethnicities and Language Use = Lang Glob New Ethnicities and Language Use = Lang. Glob. New Europe : Evolving Economic and Financial Systems in East and West = Finan Mon P New Europe : Evolving Economic and Financial Systems in East and West = Finan. Mon. P. New Extragalactic Perspectives in The New South Africa = Astrophys Space Sc L New Extragalactic Perspectives in The New South Africa = Astrophys. Space. Sc. L. New Eyes to See Inside The Sun and Stars = Iau Symp New Eyes to See Inside The Sun and Stars = Iau. Symp. New Face of Government: How Public Managers Are Forging A New Approach to Governance = Am Soc Public Admin New Face of Government: How Public Managers Are Forging A New Approach to Governance = Am. Soc. Public Admin. New Facet of Three Nucleon Force - 50 Years of Fujita Miyazawa Three Nucleon Force (fm 50) = Aip Conf Proc New Facet of Three Nucleon Force - 50 Years of Fujita Miyazawa Three Nucleon Force (fm 50) = Aip. Conf. Proc. New Faith in Ancient Lands: Western Missions in The Middle East in The Nineteenth and Early Twentienth Centuries = Stud Christ Mission New Faith in Ancient Lands: Western Missions in The Middle East in The Nineteenth and Early Twentienth Centuries = Stud. Christ. Mission. New Famines: Why Famines Persist in An Era of Globalization = Routl Stud Dev Econ New Famines: Why Famines Persist in An Era of Globalization = Routl. Stud. Dev. Econ. New Firm Creation in The United States: Initial Explorations With The Psed Ii Data Set = Int Stud Entrep New Firm Creation in The United States: Initial Explorations With The Psed Ii Data Set = Int. Stud. Entrep. New Forests = New For. New Forests = New Forest New Forests = New Forest. New Forum Books = New Forum Book New Forum Books = New Forum Book. Newfoundland Medical Association journal = Newfoundl Med Assoc J New Frontiers for Entertainment Computing = Int Fed Info Proc New Frontiers for Entertainment Computing = Int. Fed. Info. Proc. New Frontiers in Advanced Plasma Physics = Aip Conf Proc New Frontiers in Advanced Plasma Physics = Aip. Conf. Proc. New Frontiers in Applied Artificial Intelligence = Lect Notes Artif Int New Frontiers in Applied Artificial Intelligence = Lect. Notes. Artif. Int. New Frontiers in Applied Data Mining = Lect Notes Artif Int New Frontiers in Applied Data Mining = Lect. Notes. Artif. Int. New Frontiers in Artificial Intelligence = Lect Notes Artif Int New Frontiers in Artificial Intelligence = Lect. Notes. Artif. Int. New Frontiers in Artificial Intelligence = Lect Notes Comput Sc New Frontiers in Artificial Intelligence = Lect. Notes. Comput. Sc. New Frontiers in Catalysis, Pt B = Stud Surf Sci Catal New Frontiers in Catalysis, Pt B = Stud. Surf. Sci. Catal. New Frontiers in Catalysis, Pt C = Stud Surf Sci Catal New Frontiers in Catalysis, Pt C = Stud. Surf. Sci. Catal. New Frontiers in Catalysis, Pts A-c = Stud Surf Sci Catal New Frontiers in Catalysis, Pts A-c = Stud. Surf. Sci. Catal. New Frontiers in Chemical Biology: Enabling Drug Discovery = Rsc Drug Discov New Frontiers in Chemical Biology: Enabling Drug Discovery = Rsc. Drug Discov. New Frontiers in Computational Intelligence and Its Applications = Fr Art Int New Frontiers in Computational Intelligence and Its Applications = Fr. Art. Int. New Frontiers in Computational Intelligence and Its Applications = Front Artif Intel Ap New Frontiers in Computational Intelligence and Its Applications = Front. Artif. Intel. Ap. New Frontiers in Dead Sea Paleoenvironmental Research = Geol Soc Am Spec Pap New Frontiers in Dead Sea Paleoenvironmental Research = Geol. Soc. Am. Spec. Pap. New Frontiers in Entrepreneurship: Recognizing, Seizing, and Executing Opportunities = Int Stud Entrep New Frontiers in Entrepreneurship: Recognizing, Seizing, and Executing Opportunities = Int. Stud. Entrep. New Frontiers in Environmental and Social Labeling = Sustain Innovation New Frontiers in Environmental and Social Labeling = Sustain. Innovation. New Frontiers in Information and Software As Services: Service and Application Design Challenges in The Cloud = Lect Notes Bus Inf New Frontiers in Information and Software As Services: Service and Application Design Challenges in The Cloud = Lect. Notes. Bus. Inf. New Frontiers in Integrated Solid Earth Sciences = Int Year Planet Eart New Frontiers in Integrated Solid Earth Sciences = Int. Year. Planet. Eart. New Frontiers in Macromolecular Science = Macromol Sy New Frontiers in Macromolecular Science = Macromol. Sy. New Frontiers in Materials Processing Training and Learning = Mater Sci Forum New Frontiers in Materials Processing Training and Learning = Mater. Sci. Forum. New Frontiers in Medical Sciences: Redefining Hyaluronan = Int Congr Ser New Frontiers in Medical Sciences: Redefining Hyaluronan = Int. Congr. Ser. New Frontiers in Polymer Synthesis = Adv Polym Sci New Frontiers in Polymer Synthesis = Adv. Polym. Sci. New Frontiers in Quantum Electrodynamics and Quantum Optics = Nato Adv Sci I B-phy New Frontiers in Quantum Electrodynamics and Quantum Optics = Nato. Adv. Sci. I. B-phy. New Frontiers in Respiratory Control = Adv Exp Med Biol New Frontiers in Respiratory Control = Adv. Exp. Med. Biol. New Frontiers in Screening for Microbial Biocatalysts = Stud Org Chem New Frontiers in Screening for Microbial Biocatalysts = Stud. Org. Chem. New Frontiers in Stellar Interferometry, Pts 1-3 = Proc Spie New Frontiers in Stellar Interferometry, Pts 1-3 = Proc. Spie. New Frontiers in Stellar Interferometry, Pts 1-3 = P Soc Photo-opt Ins New Frontiers in Stellar Interferometry, Pts 1-3 = P. Soc. Photo-opt. Ins. New Frontiers in Women's Studies: Knowledge, Identity and Nationalism = Gen Soc Fem Persp New Frontiers in Women's Studies: Knowledge, Identity and Nationalism = Gen. Soc. Fem. Persp. New Frontiers of Arrhythmias 1990 : 9th International Congress = N Tr Arrhyt New Frontiers of Arrhythmias 1990 : 9th International Congress = N. Tr. Arrhyt. New Frontiers of Corpus Research = Lang Comput New Frontiers of Corpus Research = Lang. Comput. New Frontiers of Mr-based Techniques in Multiple Sclerosis = Topics Neurosci New Frontiers of Mr-based Techniques in Multiple Sclerosis = Topics. Neurosci. New Frontiers of Processing and Engineering in Advanced Materials = Mater Sci Forum New Frontiers of Processing and Engineering in Advanced Materials = Mater. Sci. Forum. New Generation Computing = New Generat Comput New Generation Computing = New Generat. Comput. New Generation of Antipsychotic Drugs : Novel Mechanisms of Action = Int Acad B New Generation of Antipsychotic Drugs : Novel Mechanisms of Action = Int. Acad. B. New Generation Vaccines = Nato Adv Sci Inst Se New Generation Vaccines = Nato. Adv. Sci. Inst. Se. New genetics and society = New Genet Soc New Genetics and Society = New Genet Soc New Genetics and Society = New Genet. Soc. New Genetics, New Identities = Genet Soc New Genetics, New Identities = Genet. Soc. New Genetics, New Social Formations = Genet Soc New Genetics, New Social Formations = Genet. Soc. New Geography of Knowledge in The Electronics Industry: Asias Role in Global Innovation Networks = Pol Stud New Geography of Knowledge in The Electronics Industry: Asias Role in Global Innovation Networks = Pol. Stud. New German Critique = New Ger Crit New German Critique = New Ger. Crit. New German critique, NGC = New Ger Crit New German Jewry and The European Context:the Return of The European Jewish Diaspora = New Perspect Ger Stu New German Jewry and The European Context:the Return of The European Jewish Diaspora = New Perspect. Ger. Stu. New Glimpse of Day One = Beih Z Neutest Wiss New Glimpse of Day One = Beih. Z. Neutest. Wiss. New Global Frontiers in Regulation: The Age of Nanotechnology = Monash Stud Glob Mov New Global Frontiers in Regulation: The Age of Nanotechnology = Monash. Stud. Glob. Mov. New Governance in European Social Policy: The Open Method of Coordination = Palgrave Stud Eur Un New Governance in European Social Policy: The Open Method of Coordination = Palgrave. Stud. Eur. Un. New guard = New Guard New Guide to Italian Cinema = Ital Ital Am Stud New Guide to Italian Cinema = Ital. Ital. Am. Stud. New Hampshire Agricultural Experiment Station Bulletin = New Hamp Aes Bull New Hampshire Agricultural Experiment Station Bulletin = New Hamp. Aes. Bull. New Hampshire Agricultural Experiment Station Research Report = New Hamp Aes Res Rep New Hampshire Agricultural Experiment Station Research Report = New Hamp. Aes. Res. Rep. New Hampshire revised statutes annotated, 1955. New Hampshire = N H Revis Statut Annot N H New hibernia review = New Hibernia Rev New History of English Metre = Stud Ling New History of English Metre = Stud. Ling. New horizons (Baltimore, Md.) = New Horiz New Horizons From Multi-wavelength Sky Surveys = Iau Symp New Horizons From Multi-wavelength Sky Surveys = Iau. Symp. New Horizons = Geoth Res T New Horizons = Geoth. Res. T. New Horizons in Allergy Immunotherapy = Adv Exp Med Biol New Horizons in Allergy Immunotherapy = Adv. Exp. Med. Biol. New Horizons in Astronomy: Frank N. Bash Symposium 2005 = Astr Soc P New Horizons in Astronomy: Frank N. Bash Symposium 2005 = Astr. Soc. P. New Horizons in Astronomy: Frank N. Bash Symposium 2007 = Astr Soc P New Horizons in Astronomy: Frank N. Bash Symposium 2007 = Astr. Soc. P. New Horizons in Astronomy: Frank N Bash Symposium 2009 = Astr Soc P New Horizons in Astronomy: Frank N Bash Symposium 2009 = Astr. Soc. P. New Horizons in Biological Dosimetry = Prog Clin Biol Res New Horizons in Biological Dosimetry = Prog. Clin. Biol. Res. New Horizons in Competition Law and Economics = New Horiz Compet Law New Horizons in Competition Law and Economics = New Horiz. Compet. Law New Horizons in Earth Reinforcement = Proc Monogr Eng Wate New Horizons in Earth Reinforcement = Proc. Monogr. Eng. Wate. New Horizons in Entrepreneurship = New Horiz Entrep New Horizons in Entrepreneurship = New Horiz. Entrep. New Horizons in Environmental and Energy Law = New Hor Env Energ New Horizons in Environmental and Energy Law = New Hor. Env. Energ. New Horizons in Environmental Economics = New Hor Env Eco New Horizons in Environmental Economics = New Hor. Env. Eco. New Horizons in Environmental Economics = New Horiz Environ Ec New Horizons in Environmental Economics = New Horiz. Environ. Ec. New Horizons in Environmental Law = New Horiz Environ La New Horizons in Environmental Law = New Horiz. Environ. La. New Horizons in Globular Cluster Astronomy = Astr Soc P New Horizons in Globular Cluster Astronomy = Astr. Soc. P. New Horizons in Information Management = Lect Notes Comput Sc New Horizons in Information Management = Lect. Notes. Comput. Sc. New Horizons in Institutional and Evolutionary Economics = New Hor Inst Evol Ec New Horizons in Institutional and Evolutionary Economics = New Hor. Inst. Evol. Ec. New Horizons in Institutional and Evolutionary Economics = New Horiz Inst Evol New Horizons in Institutional and Evolutionary Economics = New Horiz. Inst. Evol. New Horizons in Intellectual Property = New Horiz Intel Prop New Horizons in Intellectual Property = New Horiz. Intel. Prop. New Horizons in International Business = New Horiz Int Bus New Horizons in International Business = New Horiz. Int. Bus. New Horizons in Islamic Studies = New Horiz Islam Stud New Horizons in Islamic Studies = New Horiz. Islam. Stud. New Horizons in Law and Economics = New Horiz Law Econ New Horizons in Law and Economics = New Horiz. Law Econ. New Horizons in Law and Economics = Nh Law Econ New Horizons in Law and Economics = Nh. Law Econ. New Horizons in Leadership Studies = New Horiz Leadersh S New Horizons in Leadership Studies = New Horiz. Leadersh. S. New Horizons in Leadership Studies = New Hor Leadersh St New Horizons in Leadership Studies = New Hor. Leadersh. St. New Horizons in Management = New Horiz Manag New Horizons in Management = New Horiz. Manag. New Horizons in Mobile and Wireless Communications = Artech Hse Mob Comm New Horizons in Mobile and Wireless Communications = Artech. Hse. Mob. Comm. New Horizons in Mobile and Wireless Communications, Vol 1 = Artech Hse Univers P New Horizons in Mobile and Wireless Communications, Vol 1 = Artech. Hse. Univers. P. New Horizons in Mobile and Wireless Communications, Vol 2 = Artech Hse Univers P New Horizons in Mobile and Wireless Communications, Vol 2 = Artech. Hse. Univers. P. New Horizons in Mobile and Wireless Communications, Vol 3 = Artech Hse Mob Comm New Horizons in Mobile and Wireless Communications, Vol 3 = Artech. Hse. Mob. Comm. New Horizons in Money and Finance = New Horiz Money Fina New Horizons in Money and Finance = New Horiz. Money Fina. New Horizons in Money and Finance = Nh Mon Fin Ser New Horizons in Money and Finance = Nh. Mon. Fin. Ser. New Horizons in Money and Finance Series = Nh Mon Fin Ser New Horizons in Money and Finance Series = Nh. Mon. Fin. Ser. New Horizons in Neonatal Screening = Int Congr Ser New Horizons in Neonatal Screening = Int. Congr. Ser. New Horizons in Neuropsychology = Int Congr Ser New Horizons in Neuropsychology = Int. Congr. Ser. New Horizons in Nitrogen Fixation = Curr Plant Sci Biot New Horizons in Nitrogen Fixation = Curr. Plant. Sci. Biot. New Horizons in Preventing Cardiovascular Diseases = Int Congr Ser New Horizons in Preventing Cardiovascular Diseases = Int. Congr. Ser. New Horizons in Public Policy = New Horiz Public Pol New Horizons in Public Policy = New Horiz. Public Pol. New Horizons in Public Policy = New Horiz Pub Pol New Horizons in Public Policy = New Horiz. Pub. Pol. New Horizons in Regional Science = New Horiz Reg Sci New Horizons in Regional Science = New Horiz. Reg. Sci. New Horizons in Reproductive Medicine = I C S S New Horizons in Reproductive Medicine = I. C. S. S. New Horizons in The Economics of Innovation = New Hor Econ Innov New Horizons in The Economics of Innovation = New Hor. Econ. Innov. New Horizons in The Economics of Innovation = New Horiz Econ Innov New Horizons in The Economics of Innovation = New Horiz. Econ. Innov. New Horizons in The Economics of Sport = New Horiz Econ Sport New Horizons in The Economics of Sport = New Horiz. Econ. Sport New Horizons in Theology = Ann Pub Coll Theol S New Horizons in Theology = Ann. Pub. Coll. Theol. S. New Horizons in Therapeutics: Smithkline Beecham Pharmaceuticals U.s. Research Symposia Series = N Hor Th Sk&b Ph Us New Horizons in Therapeutics: Smithkline Beecham Pharmaceuticals U.s. Research Symposia Series = N. Hor. Th. Sk&b. Ph. Us. New Horizons in Therapeutics : Smith Kline & French Research Laboratories Symposia Series = N Horiz Th New Horizons in Therapeutics : Smith Kline & French Research Laboratories Symposia Series = N. Horiz. Th. New Horizons=New Horiz;; New Horizons = New Horiz. New Horizons of Applied Scanning Electron Microscopy = Springer Ser Surf Sc New Horizons of Applied Scanning Electron Microscopy = Springer. Ser. Surf. Sc. New Horizons of Tumor Immunotherapy = Int Congr Ser New Horizons of Tumor Immunotherapy = Int. Congr. Ser. New Horizons-the Science and Practice of Acute Medicine = New Horiz-sci Pract New Horizons-the Science and Practice of Acute Medicine = New Horiz-sci. Pract. New humanist (London, England) = New Humanist New Humanitarianism: Britain and Sierra Leone, 1997-2003 = Palgrave Stud Dev New Humanitarianism: Britain and Sierra Leone, 1997-2003 = Palgrave. Stud. Dev. New Hungarian Quarterly = New Hung Quart New Hungarian Quarterly = New Hung. Quart. New Icmi Studies Series = New Icmi Stud Ser New Icmi Studies Series = New Icmi Stud. Ser. New ICMI Studies Series = New ICMI Stud. Ser. New Icmi Study Series = New Icmi Stud Ser New Icmi Study Series = New Icmi Stud. Ser. New Ideas in Psychology = New Ideas Psychol New Ideas in Psychology = New Ideas Psychol. New Ideas in Tokamak Confinement = Res Tr Phys New Ideas in Tokamak Confinement = Res. Tr. Phys. New Image Processing Techniques and Applications: Algorithms, Methods, and Components Ii = P Soc Photo-opt Ins New Image Processing Techniques and Applications: Algorithms, Methods, and Components Ii = P. Soc. Photo-opt. Ins. New Insights in Germanic Linguistics I = Berk Insigh Linguist New Insights in Germanic Linguistics I = Berk. Insigh. Linguist. New Insights in Germanic Linguistics Ii = Berk Insigh Linguist New Insights in Germanic Linguistics Ii = Berk. Insigh. Linguist. New Insights Into Structural Interpretation and Modelling = Geol Soc Spec Publ New Insights Into Structural Interpretation and Modelling = Geol. Soc. Spec. Publ. New Insights Into The Pathogenesis of Mastitis = Flem Vet J New Insights Into The Pathogenesis of Mastitis = Flem. Vet. J. New Insights in Vertebrate Kidney Function = Soc Exp Biol Semin S New Insights in Vertebrate Kidney Function = Soc. Exp. Biol. Semin. S. New Institutionalism in Strategic Management = Adv Strat M New Institutionalism in Strategic Management = Adv. Strat. M. New Integrals = Lect Notes Math New Integrals = Lect. Notes. Math. New internationalist = New Int New International Policing = Glob Iss Ser New International Policing = Glob. Iss. Ser. New International Relations = New Int Relat New International Relations = New Int. Relat. New Interpretations of Beckett in The Twenty-first Century = New Interpret Becket New Interpretations of Beckett in The Twenty-first Century = New Interpret. Becket. New Istanbul contribution to clinical science = New Istanbul Contrib Clin Sci New Istanbul Contribution to Clinical Science = New Istanbul Contrib. Clin. Sci. New Japan for The Twenty-first Century: An Inside Overview of Current Fundamental Changes and Problems = Routl Contemp Jpn Se New Japan for The Twenty-first Century: An Inside Overview of Current Fundamental Changes and Problems = Routl. Contemp. Jpn. Se. New Jersey Agricultural Experiment Station Bulletin = New Jers Aes Bull New Jersey Agricultural Experiment Station Bulletin = New Jers. Aes. Bull. New Jersey Agricultural Experiment Station Special Report = New Jers Agr Ex St S New Jersey Agricultural Experiment Station Special Report = New Jers. Agr. Ex. St. S. New Jersey healthCare = N J Healthc New Jersey Healthcare = N. J. Healthc. New Jersey Historical Commission newsletter. New Jersey Historical Commission = N J Hist Comm Newsl New Jersey history = N J Hist New Jersey journal of pharmacy = N J J Pharm New Jersey League for Nursing news = N J League Nurs News New Jersey League for Nursing News = N. J. League Nurs. News New Jersey Medicine=N J Med;; New Jersey Medicine = N. J. Med. New Jersey medicine : the journal of the Medical Society of New Jersey = N J Med New Jersey nurse = N J Nurse New Jersey Nurse = N. J. Nurse New Jersey statutes annotated : Permanent ed. Laws of a general and permanent nature under arrangement of Revised statutes, 1937, including laws of the 163rd Legislature, 1939; with annotations from cases construing or applying the laws... = N J Statut Annot N J New journal (Institute of Health Record & Information Management) = New J (Inst Health Rec Inf Manag) New Journal of Chemistry = New J Chem New Journal of Chemistry = New J. Chem. New Journal of Physics = New J Phys New Journal of Physics = New J. Phys. New Kinds of Phase Transitions: Transformations in Disordered Substances = Nato Sci Ser Ii-math New Kinds of Phase Transitions: Transformations in Disordered Substances = Nato. Sci. Ser. Ii-math. New Kinds of Phase Transitions: Transformations in Disordered Substances = Nato Sci Ser Ii Math New Kinds of Phase Transitions: Transformations in Disordered Substances = Nato. Sci. Ser. Ii. Math. New Labour and The Civil Service: Reconstituting The Westminster Model = Transform Gov New Labour and The Civil Service: Reconstituting The Westminster Model = Transform. Gov. New leader (New York, N.Y. : 1935) = New Lead New Leads and Targets in Drug Research = Alfred Benzon Symp S New Leads and Targets in Drug Research = Alfred. Benzon. Symp. S. New Left review = New Left Rev New Left Review = New Left Rev New Left Review = New Left Rev. New Letters = New Letters New Light On Dark Stars: Red Dwarfs, Low-mass Stars, Brown Dwarfs = Springer-prax Books New Light On Dark Stars: Red Dwarfs, Low-mass Stars, Brown Dwarfs = Springer-prax. Books. New Light On Galaxy Evolution = Iau Symp New Light On Galaxy Evolution = Iau. Symp. New Literary History = New Literary Hist New Literary History = New Literary Hist. New literary history = New Lit Hist New Localism in American Education = Yearb Natl Soc Stud New Localism in American Education = Yearb. Natl. Soc. Stud. New Macrolides, Azalides, and Streptogramins in Clinical Practice = Infec Dis T New Macrolides, Azalides, and Streptogramins in Clinical Practice = Infec. Dis. T. Newman and The Word = Louvain Theol Pastor Newman and The Word = Louvain. Theol. Pastor. New Materials and Advanced Materials, Pts 1 and 2 = Adv Mater Res-switz New Materials and Advanced Materials, Pts 1 and 2 = Adv. Mater. Res-switz. New Materials and Their Applications 1990 = Inst Phys Conf Ser New Materials and Their Applications 1990 = Inst. Phys. Conf. Ser. New Materials: Conjugated Double Bond Systems = Mater Sci Forum New Materials: Conjugated Double Bond Systems = Mater. Sci. Forum. New Materials for Advanced Solid State Lasers = Mater Res Soc Symp P New Materials for Advanced Solid State Lasers = Mater. Res. Soc. Symp. P. New Materials for Batteries and Fuel Cells = Mater Res Soc Symp P New Materials for Batteries and Fuel Cells = Mater. Res. Soc. Symp. P. New Materials for Microphotonics = Mater Res Soc Symp P New Materials for Microphotonics = Mater. Res. Soc. Symp. P. New Mathematical Library = New Math. Library New Mechanisms for Tissue-selective Estrogen-free Contraception = E Schering Res Fdn W New Mechanisms for Tissue-selective Estrogen-free Contraception = E. Schering. Res. Fdn. W. New Media, 1740-1915 = Media Transit New Media, 1740-1915 = Media. Transit. New Media and The New Middle East = Palgr Mac Ser Int Po New Media and The New Middle East = Palgr. Mac. Ser. Int. Po. New Media, Cultural Studies, and Critical Theory After Postmodernism: Automodernity From Zizek to Laclau = Psychoanal Educ Soc New Media, Cultural Studies, and Critical Theory After Postmodernism: Automodernity From Zizek to Laclau = Psychoanal. Educ. Soc. New Media Handbook = Media Pract New Media Handbook = Media Pract. New Media & Society = New Media Soc New Media & Society = New Media Soc. New Medical Model : A Challenge for Biomedicine = Publ Hdi New Medical Model : A Challenge for Biomedicine = Publ. Hdi. New Medications for Drug Abuse = Ann Ny Acad Sci New Medications for Drug Abuse = Ann. Ny. Acad. Sci. New Medit = New Medit New Membrances and Advanced Materials for Wastewater Treatment = Acs Sym Ser New Membrances and Advanced Materials for Wastewater Treatment = Acs. Sym. Ser. New Methodologies and Techniques for A Sustainable Organic Chemistry = Nato Sci Ser Ii-math New Methodologies and Techniques for A Sustainable Organic Chemistry = Nato. Sci. Ser. Ii-math. New Methodologies and Techniques for A Sustainable Organic Chemistry = Nato Sci Ser Ii Math New Methodologies and Techniques for A Sustainable Organic Chemistry = Nato. Sci. Ser. Ii. Math. New Methods and Results in Non-linear Field Equations = Lect Notes Phys New Methods and Results in Non-linear Field Equations = Lect. Notes. Phys. New Methods for Corrosion Testing of Aluminum Alloys = Am Soc Test Mater New Methods for Corrosion Testing of Aluminum Alloys = Am. Soc. Test. Mater. New Methods for The Analysis of Change = Decade Behav New Methods for The Analysis of Change = Decade. Behav. New Methods for The Study of Biomolecular Complexes = Nato Adv Sci I C-mat New Methods for The Study of Biomolecular Complexes = Nato. Adv. Sci. I. C-mat. New Methods in Microscopy and Low Light Imaging = P Soc Photo-opt Ins New Methods in Microscopy and Low Light Imaging = P. Soc. Photo-opt. Ins. New Methods in Quantum Theory = Nato Asi 3 High Tech New Methods in Quantum Theory = Nato. Asi. 3. High. Tech. New Methods, Mechanisms and Models of Vapor Deposition = Mater Res Soc Symp P New Methods, Mechanisms and Models of Vapor Deposition = Mater. Res. Soc. Symp. P. New Methods of Competing in The Global Marketplace: Critical Success Factors From Service and Manufacturing = Resource Manag-crc New Methods of Competing in The Global Marketplace: Critical Success Factors From Service and Manufacturing = Resource. Manag-crc. New Methods of Concurrent Checking = Front Electron Test New Methods of Concurrent Checking = Front. Electron. Test. New Mexico Agricultural Experiment Station Bulletin = New Mex Agr Exp St B New Mexico Agricultural Experiment Station Bulletin = New Mex. Agr. Exp. St. B. New Mexico Agricultural Experiment Station Research Report = New Mex Agr Exp St R New Mexico Agricultural Experiment Station Research Report = New Mex. Agr. Exp. St. R. New Mexico Anthropologist = N M Anthr New Mexico Anthropologist = N. M. Anthr. New Mexico Business=New Mexico Bus. New Mexico Cooperative Extension Service Circular = New Mex Coop Ext S C New Mexico Cooperative Extension Service Circular = New Mex. Coop. Ext. S. C. New Mexico dental journal = N M Dent J New Mexico Dental Journal = N. M. Dent. J. New Mexico Historical Review = New Mex Hist Rev New Mexico Historical Review = New Mex. Hist. Rev. New Mexico historical review = N M Hist Rev New Mexico law review = N M Law Rev New Mexico nurse = N M Nurse New Mexico Nurse = N. M. Nurse New Mexico statutes, 1978 annotated. New Mexico = N M Statut 1978 Annot N M New Microbiologica=New Microbiol;; New Microbiologica = New Microbiol New Microbiologica = New Microbiol. New Middle Ages = New Middle Ages New Millennium South Korea: Neoliberal Capitalism and Transnational Movements = Routl Adv Korean Stu New Millennium South Korea: Neoliberal Capitalism and Transnational Movements = Routl. Adv. Korean. Stu. New Model for Analyzing Antimicrobial Peptides With Biomedical Applications = Nato Sci Ser I Life New Model for Analyzing Antimicrobial Peptides With Biomedical Applications = Nato. Sci. Ser. I. Life. New Modeling Concepts for Today's Software Processes = Lect Notes Comput Sc New Modeling Concepts for Today's Software Processes = Lect. Notes. Comput. Sc. New Models and Hydrocodes for Shock Wave Processes in Condensed Matter = Epj Web Conf New Models and Hydrocodes for Shock Wave Processes in Condensed Matter = Epj. Web. Conf. New Models, New Extensions of Attribution Theory = Rec Res Psy New Models, New Extensions of Attribution Theory = Rec. Res. Psy. New Modes of Particle Acceleration - Techniques and Sources = Aip Conf Proc New Modes of Particle Acceleration - Techniques and Sources = Aip. Conf. Proc. New Molecular Mechanisms of Estrogen Action and Their Impact On Future Perspectives in Estrogen Therapy = E Schering Res Fdn W New Molecular Mechanisms of Estrogen Action and Their Impact On Future Perspectives in Estrogen Therapy = E. Schering. Res. Fdn. W. New Multilateralism in South African Diplomacy = Stud Dev Econ Policy New Multilateralism in South African Diplomacy = Stud. Dev. Econ. Policy. New Nanotechnology Developments = Nanotechnol Sci Tech New Nanotechnology Developments = Nanotechnol. Sci. Tech. New Narratives in Eighteenth-century Chemistry = Archimedes New Narratives in Eighteenth-century Chemistry = Archimedes. New Nasdaq Marketplace = Zi Sch Bus Fin Ma New Nasdaq Marketplace = Zi. Sch. Bus. Fin. Ma. New Nation of Goods = Early Am Stud Ser New Nation of Goods = Early. Am. Stud. Ser. New Network Architectures: The Path to The Future Internet = Stud Comput Intell New Network Architectures: The Path to The Future Internet = Stud. Comput. Intell. New Norms and Knowledge in World Politics = Routl Adv Int Relat New Norms and Knowledge in World Politics = Routl. Adv. Int. Relat. New Observing Modes for The Next Century = Astr Soc P New Observing Modes for The Next Century = Astr. Soc. P. New Oceanography Research Developments: Marine Chemistry, Ocean Floor Analyses and Marine Phytoplankton = Oceanogr Ocean Eng New Oceanography Research Developments: Marine Chemistry, Ocean Floor Analyses and Marine Phytoplankton = Oceanogr. Ocean Eng. New Opportunities in The Management of Psychoses = Res Clin Forums New Opportunities in The Management of Psychoses = Res. Clin. Forums. New Orleans Review = New Orleans Rev New Orleans Review = New Orleans Rev. New Ornamental Crops and The Market for Floricultural Products = Acta Hortic New Ornamental Crops and The Market for Floricultural Products = Acta. Hortic. New Outlook for The Blind = New Outlook Blind New Paradigm for Re-engineering Education: Globalization, Localization and Individualization = Educ Asia Pac Reg-is New Paradigm for Re-engineering Education: Globalization, Localization and Individualization = Educ. Asia. Pac. Reg-is. New Paradigm of Knowledge Engineering By Soft Computing = Flsi Soft Comp Ser New Paradigm of Knowledge Engineering By Soft Computing = Flsi. Soft Comp. Ser. New Paradigms in Subsurface Prediction: Characterization of The Shallow Subsurface Implications for Urban Infrastructure and Environmental Assessment = Lect Notes Earth Sci New Paradigms in Subsurface Prediction: Characterization of The Shallow Subsurface Implications for Urban Infrastructure and Environmental Assessment = Lect. Notes. Earth. Sci. New Parties in Government: in Power for The First Time = Routl Ecpr Stud Eur New Parties in Government: in Power for The First Time = Routl. Ecpr. Stud. Eur. New Partnership for Africa's Development (nepad) - African Perspectives = Discuss Pap New Partnership for Africa's Development (nepad) - African Perspectives = Discuss. Pap. New Paths Towards Quantum Gravity = Lect Notes Phys New Paths Towards Quantum Gravity = Lect. Notes. Phys. New Perspectives and Challenges in Symplectic Field Theory = Crm Proc & Lect Note New Perspectives and Challenges in Symplectic Field Theory = Crm. Proc. &. Lect. Note. New Perspectives for The Effective Treatment of Pre-term Labour - An International Consensus = Res Clin Forums New Perspectives for The Effective Treatment of Pre-term Labour - An International Consensus = Res. Clin. Forums. New Perspectives in Caribbean Tourism = Routl Adv Tour New Perspectives in Caribbean Tourism = Routl. Adv. Tour. New Perspectives in Endocrinology = Serono Sym New Perspectives in Endocrinology = Serono. Sym. New Perspectives in German Political Studies = New Perspect Ger Pol New Perspectives in German Political Studies = New Perspect. Ger. Pol. New Perspectives in German Studies = New Perspect German New Perspectives in German Studies = New Perspect. German New Perspectives in German Studies = New Perspect Ger Stu New Perspectives in German Studies = New Perspect. Ger. Stu. New Perspectives in Hemodialysis, Peritoneal Dialysis, Arteriovenous Hemofiltration, and Plasmapheresis = Adv Exp Med Biol New Perspectives in Hemodialysis, Peritoneal Dialysis, Arteriovenous Hemofiltration, and Plasmapheresis = Adv. Exp. Med. Biol. New Perspectives in Histamine Research = Agent Action Suppl New Perspectives in Histamine Research = Agent. Action. Suppl. New Perspectives in Mathematical Biology = Fields I Commun New Perspectives in Mathematical Biology = Fields. I. Commun. New Perspectives in Ophthalmology (vi) = Res Clin Forums New Perspectives in Ophthalmology (vi) = Res. Clin. Forums. New Perspectives in Research On Corporate Sustainability = New Perspect Res Cor New Perspectives in Research On Corporate Sustainability = New Perspect. Res. Cor. New Perspectives in Service-learning: Research to Advance The Field = Adv Serv Learn Res New Perspectives in Service-learning: Research to Advance The Field = Adv. Serv. Learn. Res. New Perspectives in The Study of Mesoamerican Primates: Distribution, Ecology, Behavior, and Conservation = Dev Primatol New Perspectives in The Study of Mesoamerican Primates: Distribution, Ecology, Behavior, and Conservation = Dev. Primatol. New Perspectives in The Study of Mesoamerican Primates: Distribution, Ecology, Behavior, and Conservation = Dev Primatol-prog Pr New Perspectives in The Study of Mesoamerican Primates: Distribution, Ecology, Behavior, and Conservation = Dev. Primatol-prog. Pr. New Perspectives On Agri-environmental Policies = Routl Explor Environ New Perspectives On Agri-environmental Policies = Routl. Explor. Environ. New Perspectives On Asian American Parents, Students, and Teacher Recruitment = Res Educ Asian Pac New Perspectives On Asian American Parents, Students, and Teacher Recruitment = Res. Educ. Asian Pac. New Perspectives On Concepts = Grazer Philos Stud New Perspectives On Concepts = Grazer. Philos. Stud. New Perspectives On Evolution = Wist Symp S New Perspectives On Evolution = Wist. Symp. S. New Perspectives On Historical Latin Syntax, Vol 1: Syntax of The Sentence = Trends Linguist-stud New Perspectives On Historical Latin Syntax, Vol 1: Syntax of The Sentence = Trends. Linguist-stud. New Perspectives On Human Sacrifice and Ritual Body Treatments in Ancient Maya Society = Interd Cont New Perspectives On Human Sacrifice and Ritual Body Treatments in Ancient Maya Society = Interd. Cont. New Perspectives On Learning and Instruction = New Persp Learn Inst New Perspectives On Learning and Instruction = New Persp. Learn. Inst. New Perspectives On Maritime History and Nautical Archaeology = New Perspectives Mar New Perspectives On Maritime History and Nautical Archaeology = New Perspectives Mar. New Perspectives On Narrative and Multimodality = Routl Stud Multimod New Perspectives On Narrative and Multimodality = Routl. Stud. Multimod. New Perspectives On Narrative Perspective = Suny Ser Margins Lit New Perspectives On Narrative Perspective = Suny. Ser. Margins. Lit. New Perspectives On Neurobehavioral Evolution = Ann Ny Acad Sci New Perspectives On Neurobehavioral Evolution = Ann. Ny. Acad. Sci. New Perspectives On People and Forests = World Forests New Perspectives On People and Forests = World. Forests New Perspectives On Risk Analysis and Crisis Response = Adv Intel Sys Res New Perspectives On Risk Analysis and Crisis Response = Adv. Intel. Sys. Res. New Perspectives On Romance Linguistics, Vol 1: Morphology, Syntax, Semantics and Pragmatics = Amst Stud Theory His New Perspectives On Romance Linguistics, Vol 1: Morphology, Syntax, Semantics and Pragmatics = Amst. Stud. Theory. His. New Perspectives On Safavid Iran: Empire and Society = Iran Stud Ser New Perspectives On Safavid Iran: Empire and Society = Iran. Stud. Ser. New Perspectives On Solar Prominences = Astr Soc P New Perspectives On Solar Prominences = Astr. Soc. P. New Perspectives On Stellar Pulsation and Pulsating Variable Stars = Iau Colloq New Perspectives On Stellar Pulsation and Pulsating Variable Stars = Iau. Colloq. New Perspectives On Streptococci and Streptococcal Infections = Zbl Bakt S New Perspectives On Streptococci and Streptococcal Infections = Zbl. Bakt. S. New Perspectives On Technical Editing = Baywoods Tech Commun New Perspectives On Technical Editing = Baywoods. Tech. Commun. New Perspectives On The Interstellar Medium = Astr Soc P New Perspectives On The Interstellar Medium = Astr. Soc. P. New Perspectives On The Modern Corporation = New Perspect Mod Cor New Perspectives On The Modern Corporation = New Perspect. Mod. Cor. New Perspectives On The Old Red Sandstone = Geol Soc Spec Publ New Perspectives On The Old Red Sandstone = Geol. Soc. Spec. Publ. New Perspectives On The Transnational Right = Palg Mac Transnat H New Perspectives On The Transnational Right = Palg. Mac. Transnat. H. New perspectives on Turkey = New Perspect Turk New Perspectives On Turkey = New Perspect Turk New Perspectives On Turkey = New Perspect. Turk. New perspectives quarterly : NPQ = New Perspect Q New Perspectives : The Reception of Romanticism in The Literature of The Gdr = Gdr Mon Sp New Perspectives : The Reception of Romanticism in The Literature of The Gdr = Gdr Mon. Sp. New Pharmacological Approaches to Reproductive Health and Healthy Ageing = E Schering Res Fdn W New Pharmacological Approaches to Reproductive Health and Healthy Ageing = E. Schering. Res. Fdn. W. New Pharmacological Approaches to The Therapy of Depressive Disorders = Int Acad B New Pharmacological Approaches to The Therapy of Depressive Disorders = Int. Acad. B. New Philippines = New Philipp New Photonics Technologies for The Information Age: The Dream of Ubiquitous Services = Art H Opto New Photonics Technologies for The Information Age: The Dream of Ubiquitous Services = Art. H. Opto. New Physician = New Physician New Phytologist = New Phytol New Phytologist = New Phytol. New Plant Physiology Research = Bot Res Pract New Plant Physiology Research = Bot. Res. Pract. New Political Economy = New Polit Econ New Political Economy = New Polit. Econ. New Political Economy=New Polit. Economy New Political Economy of Urban Education: Neoliberalism, Race, and The Right to The City = Crit Soc Thought New Political Economy of Urban Education: Neoliberalism, Race, and The Right to The City = Crit. Soc. Thought. New Political Economy Series = New Polit Econ Ser New Political Economy Series = New Polit. Econ. Ser. New Politics of Conflict Resolution-responding to Difference = Rethink Peace Confl New Politics of Conflict Resolution-responding to Difference = Rethink. Peace. Confl. New Politics of Masculinity: Men, Power and Resistance = Routl Innov Polit Th New Politics of Masculinity: Men, Power and Resistance = Routl. Innov. Polit. Th. New Polymeric Materials = Acs Sym Ser New Polymeric Materials = Acs. Sym. Ser. New Polymeric Materials = New Polym Mat New Polymeric Materials = New Polym. Mat. New Polymeric Materials = New Polym. Mater. New Polymerization Techniques and Synthetic Methodologies = Adv Polym Sci New Polymerization Techniques and Synthetic Methodologies = Adv. Polym. Sci. New Population Problem: Why Families in Developed Countries Are Shrinking and What It Means = Penn State Univ Fam New Population Problem: Why Families in Developed Countries Are Shrinking and What It Means = Penn. State. Univ. Fam. Newport history : bulletin of the Newport Historical Society = Newport Hist Newport = Newport New Possibilities, New Paradigms = Am Acad Pe New Possibilities, New Paradigms = Am. Acad. Pe. New Problems of Philosophy = New Probl Philos New Problems of Philosophy = New Probl. Philos. New Promising Electrochemical Systems for Rechargeable Batteries = Nato Asi 3 High Tech New Promising Electrochemical Systems for Rechargeable Batteries = Nato. Asi. 3. High. Tech. New Quests in Stellar Astrophysics Ii = Astrophysics Space New Quests in Stellar Astrophysics Ii = Astrophysics Space. New Quests in Stellar Astrophysics: The Link Between Stars and Cosmology = Astrophys Space Sc L New Quests in Stellar Astrophysics: The Link Between Stars and Cosmology = Astrophys. Space. Sc. L. New Quinolones With Potential Anti-mrsa Activity = Cancer Etiol Diagn T New Quinolones With Potential Anti-mrsa Activity = Cancer. Etiol. Diagn. T. New Qumran Texts and Studies = Stud Text Des Judah New Qumran Texts and Studies = Stud. Text. Des. Judah. New Readings in John = J St Old Test Suppl New Readings in John = J. St. Old. Test. Suppl. New Regulation and Governance of Food: Beyond The Food Crisis? = Routl Stud Hum Geogr New Regulation and Governance of Food: Beyond The Food Crisis? = Routl. Stud. Hum. Geogr. New Republic = New Republic New republic (New York, N.Y.) = New Repub New Research in Education: Adult, Medical and Vocational = Educ Compet Glob Wor New Research in Education: Adult, Medical and Vocational = Educ. Compet. Glob. Wor. New Results and New Trends in Computer Science = Lect Notes Comput Sc New Results and New Trends in Computer Science = Lect. Notes. Comput. Sc. New Results in Far Ir and Sub-mm Astronomy = Adv Space Res New Results in Far Ir and Sub-mm Astronomy = Adv. Space. Res. New Results in Far Ir and Sub-mm Astronomy = Adv Space Res-series New Results in Far Ir and Sub-mm Astronomy = Adv. Space. Res-series. New Results in Numerical and Experimental Fluid Mechanics Iii = Note Num Fl New Results in Numerical and Experimental Fluid Mechanics Iii = Note. Num. Fl. New Results in Numerical and Experimental Fluid Mechanics Ii = Note Num Fl New Results in Numerical and Experimental Fluid Mechanics Ii = Note. Num. Fl. New Results in Numerical and Experimental Fluid Mechanics Iv = Note N Fl Mech Mul D New Results in Numerical and Experimental Fluid Mechanics Iv = Note. N. Fl. Mech. Mul. D. New Results in Numerical and Experimental Fluid Mechanics Vii = Notes Numer Fluid Me New Results in Numerical and Experimental Fluid Mechanics Vii = Notes. Numer. Fluid Me. New Results in Numerical and Experimental Fluid Mechanics Vi = Note N Fl Mech Mul D New Results in Numerical and Experimental Fluid Mechanics Vi = Note. N. Fl. Mech. Mul. D. New Results in Numerical and Experimental Fluid Mechanics Vi = Notes Numer Fluid Me New Results in Numerical and Experimental Fluid Mechanics Vi = Notes. Numer. Fluid Me. New Results in Numerical and Experimental Fluid Mechanics V = Note N Fl Mech Mul D New Results in Numerical and Experimental Fluid Mechanics V = Note. N. Fl. Mech. Mul. D. New & Resurgent Infections = Lshtm Publ Heal For New & Resurgent Infections = Lshtm. Publ. Heal. For. New Review = New Rev New Review = New Rev. New review of bioethics = New Rev Bioeth New Review of East European History = New Rev E Eur Hist New Review of East European History = New Rev. E. Eur. Hist. New Review of Hypermedia and Multimedia = New Rev Hypermedia M New Review of Hypermedia and Multimedia = New Rev. Hypermedia M. New Role of The Academies of Sciences in The Balkan Countries = Nato Asi S 4 Sci Tec New Role of The Academies of Sciences in The Balkan Countries = Nato. Asi. S. 4. Sci. Tec. New Rosetta Targets: Observations, Simulations and Instrument Performances = Astrophys Space Sc L New Rosetta Targets: Observations, Simulations and Instrument Performances = Astrophys. Space. Sc. L. News and Journalism in The Uk, Fifth Edition = Commun Soc-ser News and Journalism in The Uk, Fifth Edition = Commun. Soc-ser. News Bulletin and Calendar. Worcester Art Museum = NBWorcArtMus News Bulletin - Indian Dental Association = News Bull Indian Dent Assoc News Bulletin, Indian Dental Association = News Bull. Indian Dent. Assoc. New Scholar = New Scholar New Scholasticism = New Scholasticism New scientist (1971) = New Sci New scientist and science journal = New Sci Sci J New Scientist = New Sci New Scientist = New Sci. New Security Challenges = New Secur Chall New Security Challenges = New Secur. Chall. New Security Issues in Northern Europe = Routl Uaces Contemp New Security Issues in Northern Europe = Routl. Uaces. Contemp. New Selection Schemes in Cattle : Nucleus Programmes = Eaap Public New Selection Schemes in Cattle : Nucleus Programmes = Eaap. Public. New Series = New Ser. Newsette - Department of Health National League of Nurses, Manila, Philippines = Newsette Newsette = Newsette New Shelf-life Technologies and Safety Assessments = Vtt Symp New Shelf-life Technologies and Safety Assessments = Vtt. Symp. New Sight Towards Dye-sensitized Solar Cells: Material and Theoretical = Key Eng Mater New Sight Towards Dye-sensitized Solar Cells: Material and Theoretical = Key. Eng. Mater. News in Aseptic Processing and Packaging = Vtt Symp News in Aseptic Processing and Packaging = Vtt. Symp. News in Clinical Pharmacology and Biology = Actual Pharm Biol Cl News in Clinical Pharmacology and Biology = Actual. Pharm. Biol. Cl. News in physiological sciences : an international journal of physiology produced jointly by the International Union of Physiological Sciences and the American Physiological Society = News Physiol Sci News in Physiological Sciences = News Physiol Sci News in Physiological Sciences = News Physiol. Sci. Newsletter - American Academy of Health Administration. American Academy of Health Administration = Newsl Am Acad Health Adm Newsletter, American Academy of Health Administration = Newsl. Am. Acad. Health Adm. Newsletter. American Academy of Implant Dentistry = Newsl Am Acad Implant Dent Newsletter. American Academy of Pediatrics = Newsl Am Acad Pediatr Newsletter (American Academy of Psychiatry and the Law) = Newsl Am Acad Psychiatry Law Newsletter / American Association Of Tissue Banks = Newsl Am Assoc Tissue Banks Newsletter. British Society for the History of Science = Newsl Br Soc Hist Sci Newsletter (Canadian Society for the History of Medicine) = Newsl Can Soc Hist Med Newsletter. Department of Pottery Technology, University of Leiden = NewsletterPotTech Newsletter - Family Planning Association of Hong Kong / Family Planning Association of Hong Kong = Newsl Fam Plan Assoc Hong Kong Newsletter - Family Planning International Assistance / Planned Parenthood Federation of America. Family Planning International Assistance = Newsl Fam Plan Int Assist News Letter, Florence Nightingale International Nurses Association = News Lett. Florence Nightingale Int. Nurs. Assoc. News Letter; Florence Nightingale International Nurses Association = News Lett Florence Nightingale Int Nurs Assoc Newsletter - Group for the Use of Psychology in History. Group for the Use of Psychology in History = Newsl Group Use Psychol Hist Newsletter, history of anthropology = Newsl Hist Anthropol Newsletter (Infant Feeding Action Coalition). = Newsl Infant Feed Action Coalit Newsletter (Inter-African Committee on Traditional Practices Affecting the Health of Women and Children) = Newsl Inter Afr Comm Tradit Pract Affect Health Women Child Newsletter (International Academy of Periodontology) = Newsl Int Acad Periodontol Newsletter, International Academy of Periodontology = Newsl. Int. Acad. Periodontol. Newsletter, International College of Dentists, India Section = Newsl. Int. Coll. Dent. India Sect. Newsletter. International College of Dentists. India Section = Newsl Int Coll Dent India Sect Newsletter / International Union for the Scientific Study of Population. International Union for the Scientific Study of Population = Newsl Int Union Sci Study Popul Newsletter. Kentucky Nurses Association = Newsl Ky Nurses Assoc Newsletter (Macro Systems. Institute for Resource Development. Demographic and Health Surveys) = Newsl Macro Syst Inst Resour Dev Demogr Health Surv News letter. Maine State Nurses' Association = News Lett Maine State Nurses Assoc News Letter, Maine State Nurses Association = News Lett. Maine State Nurses Assoc. Newsletter (Medical Sciences Historical Society (Great Britain)) = Newsl Med Sci Hist Soc Newsletter of Biomedical Safety and Standards = Newsl. Biomed. Saf. Stand. Newsletter of the American Academy of Implant Dentistry = Newsl. Am. Acad. Implant Dent. Newsletter of the Netherlands Institute at Athens = NewsletterAthen Newsletter of the Society for ancient medicine and pharmacy = SAMPhN Newsletter on feminism and philosophy / American Philosophical Association = Newsl Feminism Philos Newsletter on philosophy and medicine / American Philosophical Association = APA Newsl Philos Med Newsletter on science, technology & human values = Newsl Sci Technol Human Values News letter. Scandinavian Society of Forensic Odontology = Newsl Scand Soc Forensic Odontol Newsletter-Social Welfare History Group. Social Welfare History Group = Newsl Soc Welf Hist Group Newsletter (Society for Ancient Medicine) = Newsl Soc Anc Med Newsletter (Society for Ancient Medicine & Pharmacy) = Newsl Soc Anc Med Pharm Newsletters On Stratigraphy = Newsl Stratigr Newsletters On Stratigraphy = Newsl. Stratigr. Newsletter - Springfield Dental Society = Newsl Springfield Dent Soc Newsletter, Springfield Dental Society = Newsl. Springfield Dent. Soc. Newsletter, Wisconsin League for Nursing = Newsl. Wis. League Nurs. Newsletter. Wisconsin League for Nursing = Newsl Wis League Nurs Newsletter (Women's Global Network on Reproductive Rights) = Newsl Womens Glob Netw Reprod Rights Newsline (People with AIDS Coalition of New York) = Newsline People AIDS Coalit N Y New Smart Materials Via Metal Mediated Macromolecular Engineering = Nato Sci Peace Sec A New Smart Materials Via Metal Mediated Macromolecular Engineering = Nato. Sci. Peace. Sec. A. News Media and Power in Russia = Basees-rout Ser Russ News Media and Power in Russia = Basees-rout. Ser. Russ. News Notes / Ohio Dental Journal = News Notes Ohio Dent J News Notes, Ohio Dental Journal = News Notes Ohio Dent. J. New Social Movements in The African Diaspora: Challenging Global Apartheid = Crit Black Stud Ser New Social Movements in The African Diaspora: Challenging Global Apartheid = Crit. Black. Stud. Ser. New Social Risks = Eiss Kluw Law Int S New Social Risks = Eiss. Kluw. Law. Int. S. New Social Studies: People, Projects and Perspectives = Stud Hist Educ New Social Studies: People, Projects and Perspectives = Stud. Hist. Educ. New society = New Soc New Society = New Statesman Soc New Society = New Statesman. Soc. New Sociology = New Sociol New Sociology = New Sociol. News of Forest History = News For. Hist. News of Norway = News Nor New Solar Physics With Solar-b Mission = Astr Soc P New Solar Physics With Solar-b Mission = Astr. Soc. P. New solutions : a journal of environmental and occupational health policy : NS = New Solut New Sound of Indo-european = Trend Lin S New Sound of Indo-european = Trend. Lin. S. New South (Atlanta, Ga.) = New South New South Wales public health bulletin = N S W Public Health Bull New Space Race: China Vs. The United States = S-p B Space Explor New Space Race: China Vs. The United States = S-p. B. Space Explor. New Standards for Fans = Imeche Sem New Standards for Fans = Imeche. Sem. New statesman (London, England : 1957) = New Statesman New Statesman & Society = New Statesman Soc New Statesman & Society = New Statesman Soc. New States of Matter in Hadronic Interactions = Aip Conf Proc New States of Matter in Hadronic Interactions = Aip. Conf. Proc. New Steps in Chemical and Biochemical Phyiscs: Pure and Applied Science = Phys Res Technol New Steps in Chemical and Biochemical Phyiscs: Pure and Applied Science = Phys. Res. Technol. New Strategies for Oral Immunization = Curr Top Microbiol New Strategies for Oral Immunization = Curr. Top. Microbiol. New Strategies in Fungal Disease = Fr Infec D New Strategies in Fungal Disease = Fr. Infec. D. New Strategies in Stroke Intervention: Ionic Transporters, Pumps, and New Channels = Contemp Neurosci New Strategies in Stroke Intervention: Ionic Transporters, Pumps, and New Channels = Contemp. Neurosci. New Strategies of Bone Marrow Transplantation = Ucla Sym Bi New Strategies of Bone Marrow Transplantation = Ucla. Sym. Bi. New Stream Cipher Designs = Lect Notes Comput Sc New Stream Cipher Designs = Lect. Notes. Comput. Sc. New Structuralism in Cognitive Development = Contrib Hum Dev New Structuralism in Cognitive Development = Contrib. Hum. Dev. New Structures for Physics = Lect Notes Phys New Structures for Physics = Lect. Notes. Phys. New Superconducting Electronics = Nato Adv Sci Inst Se New Superconducting Electronics = Nato. Adv. Sci. Inst. Se. News & Views : Rhode Island Nursing Magazine = News Views Newswatch (Ikeja, Lagos State, Nigeria) = Newswatch Newsweek = Newsweek News - Women's International Network. Women's International Network = WIN News New Symmetry Principles in Quantum Field Theory = Nato Adv Sci Inst Se New Symmetry Principles in Quantum Field Theory = Nato. Adv. Sci. Inst. Se. New Synthese Historical Library = New Syn Hist L New Synthese Historical Library = New Syn. Hist. L. New Synthese Historical Library = New Synth Hist Lib New Synthese Historical Library = New Synth. Hist. Lib. New Synthetic Methods (advances in Polymer Sci) = Adv Polym Sci New Synthetic Methods (advances in Polymer Sci) = Adv. Polym. Sci. New Taxonomy = Syst Assoc Spec Vol New Taxonomy = Syst. Assoc. Spec. Vol. New Teacher Identity and Regulative Government: The Discursive Formation of Primary Mathematics Teacher Education = Math Teach Educ New Teacher Identity and Regulative Government: The Discursive Formation of Primary Mathematics Teacher Education = Math. Teach. Educ. New Techniques and Analysis in Optical Measurements - Interferometry '94 = P Soc Photo-opt Ins New Techniques and Analysis in Optical Measurements - Interferometry '94 = P. Soc. Photo-opt. Ins. New Techniques for Future Accelerators Iii = E Maj Int S New Techniques for Future Accelerators Iii = E. Maj. Int. S. New Techniques for The Detection of Nuclear and Radioactive Agents = Nato Science Peace S New Techniques for The Detection of Nuclear and Radioactive Agents = Nato. Science. Peace. S. New Techniques in Sediment Core Analysis = Geol Soc Spec Publ New Techniques in Sediment Core Analysis = Geol. Soc. Spec. Publ. New Techniques in Solid-state Nmr = Top Curr Chem New Techniques in Solid-state Nmr = Top. Curr. Chem. New Techniques in Surgery = New Tech Surg New Techniques in Surgery = New Tech. Surg. New Technological Solutions in Underground Mining: International Mining Forum 2006 = Proc Monogr Eng Wate New Technological Solutions in Underground Mining: International Mining Forum 2006 = Proc. Monogr. Eng. Wate. New Technologies and Law of The Marine Environment = Int Env Law New Technologies and Law of The Marine Environment = Int. Env. Law New Technologies for Archaeology: Multidisciplinary Investigations in Palpa and Nasca, Peru = Nat Sci Archaeol New Technologies for Archaeology: Multidisciplinary Investigations in Palpa and Nasca, Peru = Nat. Sci. Archaeol. New Technologies for Astronomy = P Soc Photo-opt Ins New Technologies for Astronomy = P. Soc. Photo-opt. Ins. New Technologies for Automation of Metallurgical Industry 2003 = Ifac Work S New Technologies for Automation of Metallurgical Industry 2003 = Ifac. Work. S. New Technologies for Computer Control 2001 = Ifac Symp Series New Technologies for Computer Control 2001 = Ifac. Symp. Series. New Technologies for Supercolliders = E Maj Int S New Technologies for Supercolliders = E. Maj. Int. S. New Technologies in Aquaculture = Basics New Technologies in Aquaculture = Basics. New Technologies in Aquaculture = Basics Ser New Technologies in Aquaculture = Basics. Ser. New Technologies in Cytometry and Molecular Biology = P Soc Photo-opt Ins New Technologies in Cytometry and Molecular Biology = P. Soc. Photo-opt. Ins. New Technologies in Health Care: Challenge, Change and Innovation = Health Technol Soc New Technologies in Health Care: Challenge, Change and Innovation = Health Technol. Soc. New Technologies in Hospital Information Systems = St Heal T New Technologies in Hospital Information Systems = St. Heal. T. New Technologies in Public Administration = Int I Adm Sci Monogr New Technologies in Public Administration = Int. I. Adm. Sci. Monogr. New Technologies in Surgical Oncology = Updates Surg New Technologies in Surgical Oncology = Updates. Surg. New Technologies in The Education of The Visually Handicapped = Colloq Inse New Technologies in The Education of The Visually Handicapped = Colloq. Inse. New Technologies in Urology = New Tech Surg New Technologies in Urology = New Tech. Surg. New Technologies in Vlbi = Astr Soc P New Technologies in Vlbi = Astr. Soc. P. New Technology Based Firms in The New Millennium = New Tech Bas Firm Ne New Technology Based Firms in The New Millennium = New Tech. Bas. Firm. Ne. New Technology-based Firms in The New Millennium, Vol 6 = New Tech Bas Firm Ne New Technology-based Firms in The New Millennium, Vol 6 = New Tech. Bas. Firm. Ne. New Technology-based Firms in The New Millennium, Vol 7: Production and Distribution of Knowledge = New Tech Bas Firm Ne New Technology-based Firms in The New Millennium, Vol 7: Production and Distribution of Knowledge = New Tech. Bas. Firm. Ne. New Technology Work and Employment = New Tech Work Employ New Technology Work and Employment = New Tech. Work Employ. New Telecom Quarterly = New Telecom Q New Telecom Quarterly = New Telecom Q. New Tendencies in Mexican Art: The 1990s = New Concepts Lat Am New Tendencies in Mexican Art: The 1990s = New Concepts. Lat. Am. New Terror: Facing The Threat of Biological and Chemical Weapons = Hoover Natl Secur Fo New Terror: Facing The Threat of Biological and Chemical Weapons = Hoover. Natl. Secur. Fo. New Testament Abstracts = NTA New Testament in Early Christianity = Bib Eph The New Testament in Early Christianity = Bib. Eph. The. New Testament Studies: an international journal publ. quarterly under the auspices of Studiorum Novi Testamenti Societas = NTS New Testament Studies = New Testament Stud New Testament Studies = New Testament Stud. New Theatre Quarterly = New Theat Q New Theatre Quarterly = New Theat. Q. New theology review = New Theol Rev New Theoretical Approaches to Strongly Correlated Systems = Nato Sci Ser Ii-math New Theoretical Approaches to Strongly Correlated Systems = Nato. Sci. Ser. Ii-math. New Theoretical Approaches to Strongly Correlated Systems = Nato Sci Ser Ii Math New Theoretical Approaches to Strongly Correlated Systems = Nato. Sci. Ser. Ii. Math. New Theoretical Concepts for Understanding Organic Reactions = Nato Adv Sci I C-mat New Theoretical Concepts for Understanding Organic Reactions = Nato. Adv. Sci. I. C-mat. New Therapeutic Strategies in Nephrology = Dev Nephrol New Therapeutic Strategies in Nephrology = Dev. Nephrol. New Thinking in Political Economy = New Think Polit Econ New Thinking in Political Economy = New Think. Polit. Econ. New times = New Times Newton and Newtonianism: New Studies = Arch Int Hist Idees Newton and Newtonianism: New Studies = Arch. Int. Hist. Idees. Newton and Newtonianism: New Studies = Int Arch H Newton and Newtonianism: New Studies = Int. Arch. H. Newton and Religion = Arch Int Hist Idees Newton and Religion = Arch. Int. Hist. Idees. Newton and Religion = Int Arch H Newton and Religion = Int. Arch. H. New Topics in Feminist Philosophy of Religion: Contestations and Transcendence Incarnate = Fem Philos Collect New Topics in Feminist Philosophy of Religion: Contestations and Transcendence Incarnate = Fem. Philos. Collect. New Trains = Imeche Conf Trans New Trains = Imeche. Conf. Trans. New Transnationalism: Transnational Governance and Democratic Legitimacy = Transform State New Transnationalism: Transnational Governance and Democratic Legitimacy = Transform. State. New Trend in Applied Plasma Science and Technology = Aip Conf Proc New Trend in Applied Plasma Science and Technology = Aip. Conf. Proc. New Trends and Applications of Computer-aided Material and Engineering = Adv Mater Res-switz New Trends and Applications of Computer-aided Material and Engineering = Adv. Mater. Res-switz. New Trends and Developments in Occupational Health Services = Int Congr Ser New Trends and Developments in Occupational Health Services = Int. Congr. Ser. New Trends and Technologies in Computer-aided Learning for Computer-aided Design = Int Fed Info Proc New Trends and Technologies in Computer-aided Learning for Computer-aided Design = Int. Fed. Info. Proc. New Trends Czech. Econ.=New Trends Czech. Econ. New Trends in Applied Artificial Intelligence, Proceedings = Lect Notes Artif Int New Trends in Applied Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. New Trends in Arrhythmias = N Tr Arrhyt New Trends in Arrhythmias = N. Tr. Arrhyt. New Trends in Arrhythmias, Vol 6, No 4, 1990 = N Tr Arrhyt New Trends in Arrhythmias, Vol 6, No 4, 1990 = N. Tr. Arrhyt. New Trends in Arrhythmias, Vol 7, No 1, 1991 = N Tr Arrhyt New Trends in Arrhythmias, Vol 7, No 1, 1991 = N. Tr. Arrhyt. New Trends in Astrodynamics and Applications = Ann Ny Acad Sci New Trends in Astrodynamics and Applications = Ann. Ny. Acad. Sci. New Trends in Astrodynamics and Applications Iii = Aip Conf Proc New Trends in Astrodynamics and Applications Iii = Aip. Conf. Proc. New Trends in Autonomic Nervous System Research = Int Congr Ser New Trends in Autonomic Nervous System Research = Int. Congr. Ser. New Trends in Cancer for The 21st Century, 2nd Edition = Adv Exp Med Biol New Trends in Cancer for The 21st Century, 2nd Edition = Adv. Exp. Med. Biol. New Trends in Cancer for The 21st Century = Adv Exp Med Biol New Trends in Cancer for The 21st Century = Adv. Exp. Med. Biol. New Trends in Cerebral Aneurysm Management = Act Neur S New Trends in Cerebral Aneurysm Management = Act. Neur. S. New Trends in Clinical Neuropharmacology = Curr Prob N New Trends in Clinical Neuropharmacology = Curr. Prob. N. New Trends in Cytokines = New Tr Cyt New Trends in Cytokines = New Tr. Cyt. New Trends in Data Warehousing and Data Analysis = Ann Inform Syst New Trends in Data Warehousing and Data Analysis = Ann. Inform. Syst. New Trends in Distribution Logistics = Lect Notes Econ Math New Trends in Distribution Logistics = Lect. Notes. Econ. Math. New Trends in Dynamic Games and Applications = Ann Int Soc Dyn Game New Trends in Dynamic Games and Applications = Ann. Int. Soc. Dyn. Game. New Trends in Epilepsy Management : The Role of Gabapentin = Roy Soc Med Int Cong New Trends in Epilepsy Management : The Role of Gabapentin = Roy. Soc. Med. Int. Cong. New Trends in Formal Languages = Lect Notes Comput Sc New Trends in Formal Languages = Lect. Notes. Comput. Sc. New Trends in Gastric Cancer = Dev Oncol New Trends in Gastric Cancer = Dev. Oncol. New Trends in Hepatology 1996 = Falk Symp New Trends in Hepatology 1996 = Falk. Symp. New Trends in Hera Physics 1999 = Lect Notes Phys New Trends in Hera Physics 1999 = Lect. Notes. Phys. New Trends in Instrumentation for Hypersonic Research = Nato Adv Sci Inst Se New Trends in Instrumentation for Hypersonic Research = Nato. Adv. Sci. Inst. Se. New Trends in Integrability and Partial Solvability = Nato Sci Ser Ii Math New Trends in Integrability and Partial Solvability = Nato. Sci. Ser. Ii. Math. New Trends in Intercalation Compounds for Energy Storage = Nato Sci Ser Ii Math New Trends in Intercalation Compounds for Energy Storage = Nato. Sci. Ser. Ii. Math. New Trends in Lipid Mediators Research = New Trend L New Trends in Lipid Mediators Research = New Trend. L. New Trends in Materials Chemistry = Nato Adv Sci I C-mat New Trends in Materials Chemistry = Nato. Adv. Sci. I. C-mat. New Trends in Mechanics and Transport = Appl Mech Mater New Trends in Mechanics and Transport = Appl. Mech. Mater. New Trends in Microanatomy of Reproduction = Marc Malpig Symp Ser New Trends in Microanatomy of Reproduction = Marc. Malpig. Symp. Ser. New Trends in Modern Dutch Literature = Gr Stud Cult New Trends in Modern Dutch Literature = Gr. Stud. Cult. New Trends in Multimedia and Network Information Systems = Front Artif Intel Ap New Trends in Multimedia and Network Information Systems = Front. Artif. Intel. Ap. New Trends in Nonlinear Dynamics and Control, and Their Applications = Lect Notes Contr Inf New Trends in Nonlinear Dynamics and Control, and Their Applications = Lect. Notes. Contr. Inf. New Trends in Optical Network Design and Modeling = Int Fed Info Proc New Trends in Optical Network Design and Modeling = Int. Fed. Info. Proc. New Trends in Optical Soliton Transmission Systems = Sol Sci Technol Lib New Trends in Optical Soliton Transmission Systems = Sol. Sci. Technol. Lib. New Trends in Optimal Filtering and Control for Polynomial and Time-delay Systems = Lect Notes Contr Inf New Trends in Optimal Filtering and Control for Polynomial and Time-delay Systems = Lect. Notes. Contr. Inf. New Trends in Pediatric Neurology = Int Congr Ser New Trends in Pediatric Neurology = Int. Congr. Ser. New Trends in Pharmacokinetics = Nato Adv Sci I A-lif New Trends in Pharmacokinetics = Nato. Adv. Sci. I. A-lif. New Trends in Probability and Statistics = New Tr Prob Stat New Trends in Probability and Statistics = New Tr. Prob. Stat. New Trends in Probability and Statistics, Vol 4 = New Tr Prob Stat New Trends in Probability and Statistics, Vol 4 = New Tr. Prob. Stat. New Trends in Quantum Coherence and Nonlinear Optics = Horiz World Phys Ser New Trends in Quantum Coherence and Nonlinear Optics = Horiz. World. Phys. Ser. New Trends in Quantum Systems in Chemistry and Physics, Vol 1 = Prog T Chem New Trends in Quantum Systems in Chemistry and Physics, Vol 1 = Prog. T. Chem. New Trends in Quantum Systems in Chemistry and Physics, Vol 1 = Prog Theor Chem Phys New Trends in Quantum Systems in Chemistry and Physics, Vol 1 = Prog. Theor. Chem. Phys. New Trends in Quantum Systems in Chemistry and Physics, Vol 2 = Prog T Chem New Trends in Quantum Systems in Chemistry and Physics, Vol 2 = Prog. T. Chem. New Trends in Quantum Systems in Chemistry and Physics, Vol 2 = Prog Theor Chem Phys New Trends in Quantum Systems in Chemistry and Physics, Vol 2 = Prog. Theor. Chem. Phys. New Trends in Software Methodologies, Tools and Techniques = Fr Art Int New Trends in Software Methodologies, Tools and Techniques = Fr. Art. Int. New Trends in Software Methodologies, Tools and Techniques = Front Artif Intel Ap New Trends in Software Methodologies, Tools and Techniques = Front. Artif. Intel. Ap. New Trends in Space Geodesy = Adv Space Res New Trends in Space Geodesy = Adv. Space Res. New Trends in Space Geodesy = Adv Space Res-series New Trends in Space Geodesy = Adv. Space Res-series. New Trends in Systems Theory = Prog Syst C New Trends in Systems Theory = Prog. Syst. C. New Trends in The History of Science = N Ned Bij G New Trends in The History of Science = N. Ned. Bij. G. New Trends in Thin Structures: Formulation, Optimization and Coupled Problems = Cism Courses Lect New Trends in Thin Structures: Formulation, Optimization and Coupled Problems = Cism. Courses. Lect. New Trends in Veal Calf Production = Eaap Public New Trends in Veal Calf Production = Eaap. Public. New Trends of Surgery for Stroke and Its Perioperative Management = Act Neur S New Trends of Surgery for Stroke and Its Perioperative Management = Act. Neur. S. New Understandings of Teacher's Work: Emotions and Educational Change = Prof Learn Dev Sch H New Understandings of Teacher's Work: Emotions and Educational Change = Prof. Learn. Dev. Sch. H. New Universities Quarterly = U Quart-cult Educ S New Universities Quarterly = U. Quart-cult. Educ. S. New Vico Studies = New Vico S New Vico Studies = New Vico S. New Vico Studies Series = New Vico Stud Ser New Vico Studies Series = New Vico Stud. Ser. New Vico Studies, Vol Xix, 2001 = New Vico S New Vico Studies, Vol Xix, 2001 = New Vico S. New Vico Studies, Vol Xxvi, 2008 = New Vico Stud Ser New Vico Studies, Vol Xxvi, 2008 = New Vico Stud. Ser. New Vico Studies, Vol Xxvii = New Vico Stud Ser New Vico Studies, Vol Xxvii = New Vico Stud. Ser. New Views of The Magellanic Clouds = Iau Symp New Views of The Magellanic Clouds = Iau. Symp. New Views of The Moon = Rev Mineral Geochem New Views of The Moon = Rev. Mineral. Geochem. New Views On Historical and Contemporary Security Issues = Perspect War New Views On Historical and Contemporary Security Issues = Perspect. War. New Visions in Security = New Vis Secur New Visions in Security = New Vis. Secur. New Vistas in Dusty Plasmas = Aip Conf Proc New Vistas in Dusty Plasmas = Aip. Conf. Proc. New Vistas in Therapeutics, From Drug Design to Gene Therapy: Drug-resistant Tuberculosis, From Molecules to Macro-economics = Ann Ny Acad Sci New Vistas in Therapeutics, From Drug Design to Gene Therapy: Drug-resistant Tuberculosis, From Molecules to Macro-economics = Ann. Ny. Acad. Sci. New Voices On Adam Smith = Routl Stud Hist Econ New Voices On Adam Smith = Routl. Stud. Hist. Econ. New Waves in Aesthetics = New Waves Philos New Waves in Aesthetics = New Waves Philos. New Waves in Metaethics = New Waves Philos New Waves in Metaethics = New Waves Philos. New Waves in Philosophy = New Waves Philos New Waves in Philosophy = New Waves Philos. New Waves in Philosophy of Language = New Waves Philos New Waves in Philosophy of Language = New Waves Philos. New Waves in Philosophy of Mathematics = New Waves Philos New Waves in Philosophy of Mathematics = New Waves Philos. New Waves in Philosophy of Technology = New Waves Philos New Waves in Philosophy of Technology = New Waves Philos. New Waves in Political Philosophy = New Waves Philos New Waves in Political Philosophy = New Waves Philos. New West = New West New world (New Orleans, La.) = New World New World Order? = Contrib Econ Econ Hi New World Order? = Contrib. Econ. Econ. Hi. New World Orders: Violence, Sanction, and Authority in The Colonial Americas = Early Am Stud Ser New World Orders: Violence, Sanction, and Authority in The Colonial Americas = Early. Am. Stud. Ser. New X-ray Results, The Next Generation of X-ray Observatories and Gamma Ray Burst Afterglow Physics = Adv Space Res New X-ray Results, The Next Generation of X-ray Observatories and Gamma Ray Burst Afterglow Physics = Adv. Space. Res. New X-ray Results, The Next Generation of X-ray Observatories and Gamma Ray Burst Afterglow Physics = Adv Space Res-series New X-ray Results, The Next Generation of X-ray Observatories and Gamma Ray Burst Afterglow Physics = Adv. Space. Res-series. New York affairs = N Y Aff New Yorker = New Yorker New Yorker (New York, N.Y. : 1925) = New Yorker New York Fish and Game Journal = New York Fish Game J New York Fish and Game Journal = New York Fish Game J. New York Folklore = New York Folklore New York folklore = N Y Folk New York folklore quarterly = NY Folkl Q New York for Sale: Community Planning Confronts Global Real Estate = Urban Ind Environ New York for Sale: Community Planning Confronts Global Real Estate = Urban. Ind. Environ. New York Historical Society quarterly. New-York Historical Society = NY Hist Soc Q New-york Historical Society Quarterly = New York Hist Soc Q New-york Historical Society Quarterly = New. York. Hist. Soc. Q. New York History = New York Hist New York History = New York Hist. New York history. New York State Historical Association = N Y Hist New York Journal of Dentistry = N. Y. J. Dent. New York Journal of Mathematics = New York J. Math. New York law forum = N Y Law Forum New York law journal = N Y Law J New York Law School human rights annual = N Y Law School Hum Rights Annu New York Law School journal of human rights = N Y Law Sch J Hum Rights New York Law School journal of international and comparative law = N Y Law Sch J Int Comp Law New York Law School law review. New York Law School = NY Law Sch Law Rev New York Literary Forum = New York Lit Forum New York Literary Forum = New York Lit. Forum New York Medical College news & notes = N Y Med Coll News Notes New York medicine = NY Med New York = New York New York Quarterly = New York Quart New York Quarterly = New York Quart. New York Review of Books = New York Rev Books New York Review of Books = New York Rev. Books New Yorks Food and Life Sciences Bulletin = New York Food Life New Yorks Food and Life Sciences Bulletin = New York. Food Life New York State Agricultural Experiment Station Search Agriculture = Ny State Aes Search New York State Agricultural Experiment Station Search Agriculture = Ny. State Aes. Search New York State Agricultural Experiment Station Special Report = Ny State Aes Spec Re New York State Agricultural Experiment Station Special Report = Ny. State Aes. Spec. Re. New York state bar journal = N Y State Bar J New York State Dental Journal=N Y State Dent J;; New York State Dental Journal = N. Y. State Dent. J. New York State Journal of Medicine = New York State J Med New York State Journal of Medicine = New York State J. Med. New York state journal of medicine = N Y State J Med New York State Journal of Medicine = N. Y. State J. Med. New York State Museum Bulletin = N Y State Mus Bull New York State Museum Bulletin = N. Y. State Mus. Bull. New York state nurse = N Y State Nurse New York State Nurse = N. Y. State Nurse New York supplement. Second series = N Y Suppl Second Ser New York Theatre Critics Reviews = New York Theat Crit New York Theatre Critics Reviews = New York Theat. Crit. New York Times Book Review = New York Times Bk R New York Times Book Review = New York Times Bk. R. New York Times Book Review = Ny Times Bk Rev New York Times Book Review = Ny. Times Bk. Rev. New York Times Magazine = N. Y. Times Mag. New York Times = N.Y. Times New York University journal of dentistry = N Y Univ J Dent New York University Journal of Dentistry = N. Y. Univ. J. Dent. New York University journal of international law & politics. New York University. International Law Society = N Y Univ J Int Law Polit New York University journal of legislation and public policy = N Y Univ J Legis Public Policy New York University Law Quarterly Review = N Y Univ Law Q Rev New York University Law Quarterly Review = N. Y. Univ. Law Q. Rev. New York University law review (1950) = N Y Univ Law Rev New York University Law Review = New York U Law Rev New York University Law Review = New York U. Law Rev. New York University Monographs in Biomedical Engineering Series = Nyu M Biom New York University Monographs in Biomedical Engineering Series = Nyu. M. Biom. New York University Review of Law and Social Change = New York U Rev Law S New York University Review of Law and Social Change = New York U. Rev. Law S. New York University Salomon Center Series = Nyu Salomon New York University Salomon Center Series = Nyu. Salomon New York University Salomon Center Series On Financial Markets and Institutions = Nyu Sa Ctr Ser F M I New York University Salomon Center Series On Financial Markets and Institutions = Nyu. Sa. Ctr. Ser. F. M. I. New Zealand bioethics journal = N Z Bioeth J New Zealand cartography and geographic information systems : the journal of the New Zealand Cartographic Society = N Z Cartogr Geogr Inf Sys New Zealand Dental Journal=N Z Dent J;; New Zealand Dental Journal = N. Z. Dent. J. New Zealand Economic Papers=New Zealand Econ. Pap. New Zealand Economic Papers = New Zeal Econ Pap New Zealand Economic Papers = New Zeal. Econ. Pap. New Zealand Engineering = N.Z. Eng. New Zealand Entomologist = New Zeal Entomol New Zealand Entomologist = New Zeal. Entomol. New Zealand Entomologist = Nz Entomol New Zealand Entomologist = Nz. Entomol. New Zealand Entomologist = N Z Entomol New Zealand Entomologist = N. Z. Entomol. New Zealand Entomologist = N.Z. Entomol. New Zealand Environment = N.Z. Environ. New Zealand Fertilizer Journal = N.Z. Fert. J. New Zealand Freshwater Fishes: An Historical and Ecological Biogeography = Fish Fish Ser New Zealand Freshwater Fishes: An Historical and Ecological Biogeography = Fish. Fish. Ser. New Zealand Geographer=New Zealand Geographer New Zealand Geographer = New Zeal Geogr New Zealand Geographer = New Zeal. Geogr. New Zealand geographer = N Z Geog New Zealand Geological Survey Bulletin = N.Z. Geol. Surv. Bull. New Zealand Health and Hospital = N. Z. Health Hospital New Zealand health & hospital = N Z Health Hospital New Zealand hospital = N Z Hosp New Zealand Hospital = N. Z. Hosp. New Zealand Journal of Agricultural Research = New Zeal J Agr Res New Zealand Journal of Agricultural Research = New Zeal. J. Agr. Res. New Zealand Journal of Agricultural Research = N.Z. J. Agric. Res. New Zealand Journal of Agriculture = New Zeal J Agr New Zealand Journal of Agriculture = New Zeal. J. Agr. New Zealand Journal of Agriculture = N.Z. J. Agric. New Zealand Journal of Botany = New Zeal J Bot New Zealand Journal of Botany = New Zeal. J. Bot. New Zealand Journal of Botany = N. Z. J. Bot. New Zealand Journal of Crop and Horticultural Science = New Zeal J Crop Hort New Zealand Journal of Crop and Horticultural Science = New Zeal. J. Crop Hort. New Zealand Journal of Dairy Science and Technology = New Zeal J Dairy Sci New Zealand Journal of Dairy Science and Technology = New Zeal. J. Dairy Sci. New Zealand Journal of Dairy Science and Technology = N.Z. J. Dairy Sci. Technol. New Zealand Journal of Ecology = New Zeal J Ecol New Zealand Journal of Ecology = New Zeal. J. Ecol. New Zealand Journal of Ecology = N. Z. J. Ecol. New Zealand Journal of Educational Studies = New Zeal J Educ Stud New Zealand Journal of Educational Studies = New Zeal. J. Educ. Stud. New Zealand Journal of Experimental Agriculture = New Zeal J Exp Agr New Zealand Journal of Experimental Agriculture = New Zeal. J. Exp. Agr. New Zealand journal of family planning = N Z J Fam Plann New Zealand Journal of Forestry = N.Z. J. For. New Zealand Journal of Forestry Science = New Zeal J For Sci New Zealand Journal of Forestry Science = New Zeal. J. For. Sci. New Zealand Journal of Forest Science = N.Z. J. For. Sci. New Zealand journal of geography = N Z J Geogr New Zealand Journal of Geology and Geophysics = New Zeal J Geol Geop New Zealand Journal of Geology and Geophysics = New Zeal. J. Geol. Geop. New Zealand Journal of Geology and Geophysics = N.Z. J. Geol. Geophys. New Zealand Journal of History = New Zeal J Hist New Zealand Journal of History = New Zeal. J. Hist. New Zealand Journal of Marine and Freshwater Research = New Zeal J Mar Fresh New Zealand Journal of Marine and Freshwater Research = New Zeal. J. Mar. Fresh. New Zealand Journal of Marine and Freshwater Research = N. Z. J. Mar. Freshwater Res. New Zealand Journal of Marine and Freshwater Research = N.Z. J. Mar. Freshwater Res. New Zealand Journal of Mathematics = New Zealand J. Math. New Zealand Journal of Psychology = New Zeal J Psychol New Zealand Journal of Psychology = New Zeal. J. Psychol. New Zealand journal of psychology = NZ J Psychol New Zealand Journal of Science and Technology Section A = N.Z. J. Sci. Technol. Sect: A New Zealand Journal of Science and Technology Section B = N.Z. J. Sci. Technol. Sect: B New Zealand Journal of Science = New Zeal J Sci New Zealand Journal of Science = New Zeal. J. Sci. New Zealand Journal of Science = N.Z. J. Sci. New Zealand Journal of Technology = N.Z. J. Technol. New Zealand Journal of Zoology = New Zeal J Zool New Zealand Journal of Zoology = New Zeal. J. Zool. New Zealand Journal of Zoology = N.Z. J. Zool. New Zealand libraries = N Z Libr New Zealand Mathematical Society Newsletter = New Zealand Math. Soc. Newslett. New Zealand Medical Journal = New Zeal Med J New Zealand Medical Journal = New Zeal. Med. J. New Zealand Medical Journal=N Z Med J;; New Zealand Medical Journal = N. Z. Med. J. New Zealand nursing forum = N Z Nurs Forum New Zealand Nursing Forum = N. Z. Nurs. Forum New Zealand Nursing Journal = N. Z. Nurs. J. New Zealand Operational Research = New Zeal Oper Res New Zealand Operational Research = New Zeal. Oper. Res. New Zealand Plant Protection-series = N Z Plant Protect-se New Zealand Plant Protection-series = N. Z. Plant Protect-se. New Zealand Plant Protection, Vol 54 = N Z Plant Protect-se New Zealand Plant Protection, Vol 54 = N. Z. Plant Protect-se. New Zealand Plant Protection, Vol 55 = N Z Plant Protect-se New Zealand Plant Protection, Vol 55 = N. Z. Plant Protect-se. New Zealand Plant Protection, Vol 56 = N Z Plant Protect-se New Zealand Plant Protection, Vol 56 = N. Z. Plant Protect-se. New Zealand Plant Protection, Vol 57 = N Z Plant Protect-se New Zealand Plant Protection, Vol 57 = N. Z. Plant Protect-se. New Zealand population newsletter / New Zealand Demographic Society (Inc.) = N Z Popul Newsl New Zealand population review / New Zealand Demographic Society (Inc.) = N Z Popul Rev New Zealand Psychologist = New Zeal Psychol New Zealand Psychologist = New Zeal. Psychol. New Zealand School Dental Service gazette = N Z Sch Dent Serv Gaz New Zealand School Dental Service Gazette = N. Z. Sch. Dent. Serv. Gaz. New Zealand Veterinary Journal = New Zeal Vet J New Zealand Veterinary Journal = New Zeal. Vet. J. New Zealand veterinary journal = N Z Vet J New Zealand Veterinary Journal = N. Z. Vet. J. Next-generation Applied Intelligence, Proceedings = Lect Notes Artif Int Next-generation Applied Intelligence, Proceedings = Lect. Notes. Artif. Int. Next Generation Artificial Vision Systems: Reverse Engineering The Human Visual System = Artech Hse Bioinf Bi Next Generation Artificial Vision Systems: Reverse Engineering The Human Visual System = Artech. Hse. Bioinf. Bi. Next-generation Communication and Sensor Networks 2006 = Proc Spie Next-generation Communication and Sensor Networks 2006 = Proc. Spie. Next-generation Communication and Sensor Networks 2006 = P Soc Photo-opt Ins Next-generation Communication and Sensor Networks 2006 = P. Soc. Photo-opt. Ins. Next-generation Communication and Sensor Networks 2007 = Proc Spie Next-generation Communication and Sensor Networks 2007 = Proc. Spie. Next-generation Communication and Sensor Networks 2007 = P Soc Photo-opt Ins Next-generation Communication and Sensor Networks 2007 = P. Soc. Photo-opt. Ins. Next Generation Data Technologies for Collective Computational Intelligence = Stud Comput Intell Next Generation Data Technologies for Collective Computational Intelligence = Stud. Comput. Intell. Next Generation Environment Models and Computational Methods = Siam Proc S Next Generation Environment Models and Computational Methods = Siam. Proc. S. Next Generation Information System Technology = Lect Notes Comput Sc Next Generation Information System Technology = Lect. Notes. Comput. Sc. Next Generation Information Technologies and Systems = Lect Notes Comput Sc Next Generation Information Technologies and Systems = Lect. Notes. Comput. Sc. Next Generation Information Technologies and Systems, Proceedings = Lect Notes Comput Sc Next Generation Information Technologies and Systems, Proceedings = Lect. Notes. Comput. Sc. Next Generation in Scientific Ballooning = Adv Space Res Next Generation in Scientific Ballooning = Adv. Space. Res. Next Generation (nano) Photonic and Cell Technologies for Solar Energy Conversion = P Soc Photo-opt Ins Next Generation (nano) Photonic and Cell Technologies for Solar Energy Conversion = P. Soc. Photo-opt. Ins. Next Generation Networks = Lect Notes Comput Sc Next Generation Networks = Lect. Notes. Comput. Sc. Next Generation Nucleon Decay and Neutrino Detector = Aip Conf Proc Next Generation Nucleon Decay and Neutrino Detector = Aip. Conf. Proc. Next Generation of Data Mining = Ch Crc Data Min Know Next Generation of Data Mining = Ch. Crc. Data Min. Know. Next Generation of Electric Power Unit Commitment Models = Int Ser Oper Res Man Next Generation of Electric Power Unit Commitment Models = Int. Ser. Oper. Res. Man. Next Generation of Information Systems : From Data to Knowledge = Lect Notes Artif Int Next Generation of Information Systems : From Data to Knowledge = Lect. Notes. Artif. Int. Next Generation of Scientific Balloon Missions = Adv Space Res Next Generation of Scientific Balloon Missions = Adv. Space. Res. Next Generation Optical Network Design and Modelling = Int Fed Info Proc Next Generation Optical Network Design and Modelling = Int. Fed. Info. Proc. Next-generation Spectroscopic Technologies Iii = Proc Spie Next-generation Spectroscopic Technologies Iii = Proc. Spie. Next-generation Spectroscopic Technologies Iii = P Soc Photo-opt Ins Next-generation Spectroscopic Technologies Iii = P. Soc. Photo-opt. Ins. Next-generation Spectroscopic Technologies Iv = Proc Spie Next-generation Spectroscopic Technologies Iv = Proc. Spie. Next-generation Spectroscopic Technologies = Proc Spie Next-generation Spectroscopic Technologies = Proc. Spie. Next-generation Spectroscopic Technologies = P Soc Photo-opt Ins Next-generation Spectroscopic Technologies = P. Soc. Photo-opt. Ins. Next Generation Teletraffic and Wired/wireless Advanced Networking, Proceedings = Lect Notes Comput Sc Next Generation Teletraffic and Wired/wireless Advanced Networking, Proceedings = Lect. Notes. Comput. Sc. Next Generation Teletraffic and Wired/ Wireless Advanced Networking, Proceedings = Lect Notes Comput Sc Next Generation Teletraffic and Wired/ Wireless Advanced Networking, Proceedings = Lect. Notes. Comput. Sc. Next Generation Wide-field Multi-object Spectroscopy = Astr Soc P Next Generation Wide-field Multi-object Spectroscopy = Astr. Soc. P. Next Steps in Central America = Brookings D Next Steps in Central America = Brookings. D. Next Wave in Computing, Optimization, and Decision Technologies = Operat Res Comp Sci Next Wave in Computing, Optimization, and Decision Technologies = Operat. Res. Comp. Sci. Next Wave in Computing, Optimization, and Decision Technologies = Oper Res Comput Sci Next Wave in Computing, Optimization, and Decision Technologies = Oper. Res. Comput. Sci. Nexus Network Journal = Nexus Netw J Nexus Network Journal = Nexus Netw. J. NFAIS newsletter = NFAIS Newsl Nfd Information-wissenschaft Und Praxis = Nfd Inform-wiss Prax Nfd Information-wissenschaft Und Praxis = Nfd Inform-wiss. Prax. NFI bulletin = NFI Bull Nf-kb in Health and Disease = Curr Top Microbiol Nf-kb in Health and Disease = Curr. Top. Microbiol. NFPA Journal = NFPA J. NFPA journal : the official magazine of the National Fire Protection Association = NFPA J Ngf and Related Molecules in Health and Disease = Prog Brain Res Ngf and Related Molecules in Health and Disease = Prog. Brain. Res. Ngst Science and Technology Exposition = Astr Soc P Ngst Science and Technology Exposition = Astr. Soc. P. N&hc-perspectives On Community = N&hc Perspect Commun N&hc-perspectives On Community = N&hc. Perspect. Commun. N & HC perspectives on community : official publication of the National League for Nursing = N HC Perspect Community N-heterocyclic Carbenes: From Laboratory Curiosities to Efficient Synthetic Tools = Rsc Catal Ser N-heterocyclic Carbenes: From Laboratory Curiosities to Efficient Synthetic Tools = Rsc. Catal. Ser. N-heterocyclic Carbenes in Transition Metal Catalysis and Organocatalysis = Catal Met Complexes N-heterocyclic Carbenes in Transition Metal Catalysis and Organocatalysis = Catal. Met. Complexes. N-heterocyclic Carbenes in Transition Metal Catalysis = Top Organometal Chem N-heterocyclic Carbenes in Transition Metal Catalysis = Top. Organometal. Chem. Nhk Laboratories Note = Nhk Lab Note Nhk Laboratories Note = Nhk Lab. Note NHPF issue brief / National Health Policy Forum, George Washington University = NHPF Issue Brief Nhri Symposium = Nhri Symp Nhri Symposium = Nhri Symp. NHSA dialog = NHSA Dialog Niagara frontier = Niagara Frontier NIAID AIDS agenda / National Institute of Allergy and Infectious Diseases = NIAID AIDS Agenda Nianga, Laboratory for Irrigated Crop Production in The Middle Section of The Senegal Valley = Colloq Semi Nianga, Laboratory for Irrigated Crop Production in The Middle Section of The Senegal Valley = Colloq. Semi. Nibelungische Intertextualitat : Generationenbeziehungen Und Genealogische Strukturen in Der Heldenepik Des Spatmittelalters = Trends Mediev Philol Nibelungische Intertextualitat : Generationenbeziehungen Und Genealogische Strukturen in Der Heldenepik Des Spatmittelalters = Trends. Mediev. Philol. Nicaragua medica = Nicar Med Nicaragua Odontologica = Nicar Odontol Nicaragua Odontologica = Nicar. Odontol. Nice historique = Nice Hist Nice medical = Nice Med Nichidai igaku zasshi = Nichidai Igaku Zasshi Nichidai Koko Kagaku (Nihon University Journal of Oral Science) = Nichidai Koko Kagaku Nicholas Kaldor = Great Think Econ Nicholas Kaldor = Great. Think. Econ. Nickel '96 - Mineral to Market = Australas I Min Met Nickel '96 - Mineral to Market = Australas. I. Min. Met. Nickel Deposits of The Yilgarn Craton: Geology, Geochemistry, and Geophysics Applied to Exploration = Soc Econ Geol Spec P Nickel Deposits of The Yilgarn Craton: Geology, Geochemistry, and Geophysics Applied to Exploration = Soc. Econ. Geol. Spec. P. Nicotine and Tobacco Research = Nicotine Tob. Res. Nicotine & Tobacco Research = Nicotine Tob Res Nicotine & Tobacco Research = Nicotine Tob. Res. Nicotine & Tobacco Research = Nicotin Tob. Res. Nicotine & tobacco research : official journal of the Society for Research on Nicotine and Tobacco = Nicotine Tob Res Nicotinic Receptors in The Cns = Prog Brain Res Nicotinic Receptors in The Cns = Prog. Brain. Res. Nicso 2008: Nature Inspired Cooperative Strategies for Optimization = Stud Comp Intell Nicso 2008: Nature Inspired Cooperative Strategies for Optimization = Stud. Comp. Intell. Nicso 2008: Nature Inspired Cooperative Strategies for Optimization = Stud Comput Intell Nicso 2008: Nature Inspired Cooperative Strategies for Optimization = Stud. Comput. Intell. Nicso 2010: Nature Inspired Cooperative Strategies for Optimization = Stud Comp Intell Nicso 2010: Nature Inspired Cooperative Strategies for Optimization = Stud. Comp. Intell. Nicso 2010: Nature Inspired Cooperative Strategies for Optimization = Stud Comput Intell Nicso 2010: Nature Inspired Cooperative Strategies for Optimization = Stud. Comput. Intell. NIDA research monograph = NIDA Res Monogr NIDA Research Monograph=NIDA Res Monogr;; NIDA Research Monograph = NIDA Res. Monogr. Nida Research Monograph Series = Nida Res Mg Nida Research Monograph Series = Nida Res. Mg. Nidi Cbgs Publications = Nidi Cbgs P Nidi Cbgs Publications = Nidi Cbgs P. Nidoviruses (coronaviruses and Arteriviruses) = Adv Exp Med Biol Nidoviruses (coronaviruses and Arteriviruses) = Adv. Exp. Med. Biol. Nidoviruses: Toward Control of Sars and Other Nidovirus Diseases = Adv Exp Med Biol Nidoviruses: Toward Control of Sars and Other Nidovirus Diseases = Adv. Exp. Med. Biol. Niederdeutsche Mitteilungen / herausgegeben von der Niederdeutschen Arbeitsgemeinschaft zu Lund = Niederdtsch Mitt Niederrheinisches Jahrbuch = Niederhein Jahrb Niedersächsische Akademie der Geowissenschaften Veröffentlichungen = Niedersächs. Akad. Geowiss. Veröff. Niedersachsisches Aerzteblatt = Niedersachs Arztebl Niedersachsisches Zahnarzteblatt = Niedersachs Zahnarztebl Niedersachsisches Zahnarzteblatt = Niedersachs. Zahnarztebl. Nieren-und Hochdruckkrankheiten = Nieren Hochdruck Nieren-und Hochdruckkrankheiten = Nieren. Hochdruck. Nietzsche and Islam = Routl Adv Midd E Isl Nietzsche and Islam = Routl. Adv. Midd. E. Isl. Nietzsche: Philosophie De La Legerete = Monogr Texte Nietzsc Nietzsche: Philosophie De La Legerete = Monogr. Texte. Nietzsc. Nietzsche Studien, Band 32 = Nietzsche Stud Nietzsche Studien, Band 32 = Nietzsche Stud. Nietzsche Studien, Band 33 = Nietzsche Stud Nietzsche Studien, Band 33 = Nietzsche Stud. Nietzsche Studien, Band 34 = Nietzsche Stud Nietzsche Studien, Band 34 = Nietzsche Stud. Nietzsche Studien, Band 35 = Nietzsche Stud Nietzsche Studien, Band 35 = Nietzsche Stud. Nietzsche Studien, Band 36 = Nietzsche Stud Nietzsche Studien, Band 36 = Nietzsche Stud. Nietzsche Studien, Band 37 = Nietzsche Stud Nietzsche Studien, Band 37 = Nietzsche Stud. Nietzsche Studien, Band 38 = Nietzsche Stud Nietzsche Studien, Band 38 = Nietzsche Stud. Nietzsche Studien = Nietzsche Stud Nietzsche Studien = Nietzsche Stud. Nietzsche: The Key Concepts = Routl Key Guides Nietzsche: The Key Concepts = Routl. Key Guides. Nieuw Archief voor Wiskunde = Nieuw Arch. Wisk. (4) Nieuwe Nederlandse Bijdragen Tot De Geneeskunde En Der Natuurwetenschappen = N Ned Bij G Nieuwe Nederlandse Bijdragen Tot De Geneeskunde En Der Natuurwetenschappen = N. Ned. Bij. G. Nieuwe Nederlandse bijdragen tot de geschiedenis der geneeskunde en der natuurwetenschappen = Nieuwe Ned Bijdr Geschied Geneeskd Natuurwet Nieuwe West-Indische gids = Nieuwe West Indische Gids Nif Laser System Performance Ratings = P Soc Photo-opt Ins Nif Laser System Performance Ratings = P. Soc. Photo-opt. Ins. Nigeria and the Classics = NigCl Nigeria and the classics = Niger Classics Nigeria magazine = Niger Mag Nigerian Dental Journal = Niger Dent J Nigerian Dental Journal = Niger. Dent. J. Nigerian Food Journal = Niger. Food J. Nigerian journal of clinical practice = Niger J Clin Pract Nigerian Journal of Clinical Practice = Niger J Clin Pract Nigerian Journal of Clinical Practice = Niger. J. Clin. Pract. Nigerian Journal of Economic and Social Studies=Nigerian J. Econ. Soc. Stud. Nigerian journal of medicine : journal of the National Association of Resident Doctors of Nigeria = Niger J Med Nigerian journal of paediatrics = Niger J Paediatr Nigerian journal of physiological sciences : official publication of the Physiological Society of Nigeria = Niger J Physiol Sci Nigerian medical journal : journal of the Nigeria Medical Association = Niger Med J Nigerian Medical Journal = Nigerian Med J Nigerian Medical Journal = Nigerian Med. J. Nigerian Medical Journal = Niger. Med. J. Nigerian Nurse = Niger. Nurse Nigerian quarterly journal of hospital medicine = Nig Q J Hosp Med Nigeria's population : quarterly journal of population activities in Nigeria = Niger Pop Nigmeegs Tijdschrift Voor Psychologie = Nijm Tijdschr Psych Nigmeegs Tijdschrift Voor Psychologie = Nijm. Tijdschr. Psych. NIHAE bulletin = NIHAE Bull NIHAE Bulletin = NIHAE Bull. NIH consensus and state-of-the-science statements = NIH Consens State Sci Statements NIH Consensus and State-of-the-Science Statements = NIH Consens. State Sci. Statements NIH consensus development conference summary = NIH Consens Dev Conf Summ NIH consensus statement = NIH Consens Statement NIH Consensus Statement=NIH Consens Statement;; NIH Consensus Statement = NIH Consens. Statement NIH Guide for Grants and Contracts = NIH Guide Grants Contracts NIH Guide For Grants and Contracts=NIH Guide Grants Contracts;; NIH guide for grants and contracts (Online) = NIH Guide Grants Contracts NIH guide for grants and contracts / U.S. Department of Health, Education, and Welfare = NIH Guide Grants Contracts Nihilism = Key Ideas Nihilism = Key. Ideas. Nihon Ago Kansetsu Gakkai Zasshi = Nihon Ago Kansetsu Gakkai Zasshi Nihon Arukoru Yakubutsu Igakkai Zasshi (Japanese Journal of Alcohol Studies and Drug Dependence) = Nihon Arukoru Yakubutsu Igakkai Zasshi NIHon Arukoru Yakubutsu Igakkai Zasshi=Nihon Arukoru Yakubutsu Igakkai Zasshi;; NIHon Hansenbyo Gakkai Zasshi. Japanese Journal of Leprosy (Higashimurayama- Shi=Nihon Hansenbyo Gakkai Zasshi;; Nihon Hansenbyo Gakkai Zasshi (Japanese Journal of Leprosy) = Nihon Hansenbyo Gakkai Zasshi Nihon Hosenkin Gakkai shi = Actinomycetologica|Nippon Hosenkin Gakkaishi Nihon Hotetsu Shika Gakkai zasshi = Nihon Hotetsu Shika Gakkai Zasshi Nihon Igaku Hoshasen Gakkai zasshi. Nippon acta radiologica = Nippon Igaku Hoshasen Gakkai Zasshi Nihon ishigaku zasshi. [Journal of Japanese history of medicine] = Nippon Ishigaku Zasshi Nihonkai Mathematical Journal = Nihonkai Math. J. Nihon Kakin Gakkaishi = Japanese poultry science|Nippon Kakin Gakkaishi Nihon Kango Kagakkai Shi (Journal of Japan Academy of Nursing Science) = Nihon Kango Kagakkaishi Nihon Kokyuki Gakkai Zasshi (Journal of the Japanese Respiratory Society) = Nihon Kokyuki Gakkai Zasshi Nihon Kyobu Shikkan Gakkai zasshi = Nihon Kyobu Shikkan Gakkai Zasshi Nihon Naika Gakkai zasshi. The Journal of the Japanese Society of Internal Medicine = Nippon Naika Gakkai Zasshi Nihon Reoroji Gakkaishi = Nihon Reoroji Gakk Nihon Reoroji Gakkaishi = Nihon Reoroji Gakk. Nihon Reoroji Gakkaishi = Nihon Reoroji Gakkaishi Nihon Rinsho Meneki Gakkai Kaishi (Japanese Journal of Clinical Immunology) = Nihon Rinsho Meneki Gakkai Kaishi NIHon Rinsho Meneki Gakkai Kaishi=Nihon Rinsho Meneki Gakkai Kaishi;; Nihon Rinsho Shishubyo Danwakai Kaishi (Journal of the Japanese Society of Periodontists) = Nihon Rinsho Shishubyo Danwakai Kaishi Nihon Rinsho Shishubyo Danwakai kaishi = Nihon Rinsho Shishubyo Danwakai Kaishi Nihon Sakumotsu Gakkai kiji = Jpn J Crop Sci Nihon sanshigaku zasshi = The journal of sericultural science|Nihon Sanshigaku Zasshi Nihon Senchu Gakkai shi = Japanese journal of nematology|Nihon Senchu Gakkai Shi Nihon shi kenkyu = Nihonshi Kenkyu Nihon Shinkei Seishin Yakurigaku Zasshi (Japanese Journal of Psychopharmacology) = Nihon Shinkei Seishin Yakurigaku Zasshi NIHon Shinkei Seishin Yakurigaku Zasshi (Kawasaki-Shi=Nihon Shinkei Seishin Yakurigaku Zasshi;; Nihon Shokubutsu Byori Gakkaiho = Annals of the Phytopathological Society of Japan|Nippon Shokubutsu Byori Gakkaiho Nihon Shoyu Kenkyujo zasshi = Journal of Japan Soy Sauce Research Institute|Nihon Shoyu Kenkyujo Zasshi Nihon Sutoma Rihabiriteshon Gakkaishi [Journal Of Japanese Society Of Stoma Rehabilitation] = Nihon Sutoma Rihabiriteshon Gakkaishi J Jpn Soc Stoma Rehabil Niigata Igakkai zasshi. Niigata medical journal = Niigata Igakkai Zasshi Nijhoff International Philosophy Series = Nijhoff Int Nijhoff International Philosophy Series = Nijhoff Int. Nijhoff Law Specials = Nijhoff Law Spec Nijhoff Law Specials = Nijhoff Law Spec. Nikephoros. Zeitschrift für Sport und Kultur im Altertum = Nikephoros Nikkei in The Pacific Northwest = Emil Kathl Sick Lect Nikkei in The Pacific Northwest = Emil. Kathl. Sick. Lect. Niklas Luhmann: Law, Justice, Society = Nomikoi-crit Leg Thi Niklas Luhmann: Law, Justice, Society = Nomikoi-crit. Leg. Thi. Nilcrypt 10 = Tatra Mt Math Publ Nilcrypt 10 = Tatra. Mt. Math. Publ. Nile Into Tiber: Egypt in The Roman World = Relig Graeco Roman W Nile Into Tiber: Egypt in The Roman World = Relig. Graeco. Roman W. Nile: Origin, Environments, Limnology and Human Use = Monogr Biol Nile: Origin, Environments, Limnology and Human Use = Monogr. Biol. Nimhans Journal = Nimhans J Nimhans Journal = Nimhans J. Nine Lives: The Politics of Constitutional Reform in Japan = Pol Stud Nine Lives: The Politics of Constitutional Reform in Japan = Pol. Stud. Nineteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Nineteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Nineteenth Annual International Computer Software & Applications Conference (compsac'95), Proceedings = P Int Comp Softw App Nineteenth Annual International Computer Software & Applications Conference (compsac'95), Proceedings = P. Int. Comp. Softw. App. Nineteenth-century Contexts-an Interdisciplinary Journal = 19 Century Contexts Nineteenth-century Contexts-an Interdisciplinary Journal = 19. Century. Contexts. Nineteenth-century contexts = Ninet Century Contexts Nineteenth-century Fiction = Nineteen-cent Fict Nineteenth-century Fiction = Nineteen-cent. Fict. Nineteenth-century Fiction = Nineteen Cent Lit Nineteenth-century Fiction = Nineteen. Cent. Lit. Nineteenth-century fiction = Nineteenth Century Fict Nineteenth-century French Studies = Nineteen Cent Fr St Nineteenth-century French Studies = Nineteen. Cent. Fr. St. Nineteenth-century Literature = Nineteen Cent Lit Nineteenth-century Literature = Nineteen. Cent. Lit. Nineteenth-century Major Lives and Letters = Ninet-century Major Nineteenth-century Major Lives and Letters = Ninet-century. Major Nineteenth Century Music = Nineteen Cent Music Nineteenth Century Music = Nineteen. Cent. Music Nineteenth Century = Nineteen Cent Nineteenth Century = Nineteen. Cent. Nineteenth century (Philadelphia, Pa.) = Ninet Century Nineteenth Century Prose = Nineteenth Century P Nineteenth Century Prose = Nineteenth Century P. Nineteenth Century Theatre Research = Nineteen Cent Theat Nineteenth Century Theatre Research = Nineteen. Cent. Theat. Nineteenth Lacus Forum 1992 = Lacus Forum Nineteenth Nastran Users Colloquium = Nasa Conf P Nineteenth Nastran Users Colloquium = Nasa. Conf. P. Nineteenth Vertebrate Pest Conference, Proceedings = Proc Vertebr Pest C Nineteenth Vertebrate Pest Conference, Proceedings = Proc. Vertebr. Pest C. Nin. Journal of Gender Studies in Antiquity = Nin Ninth Annual International Workshop On Micro Electro Mechanical Systems, Ieee Proceedings = Proc Ieee Micr Elect Ninth Annual International Workshop On Micro Electro Mechanical Systems, Ieee Proceedings = Proc. Ieee Micr. Elect. Ninth Conference On The Small City and Regional Community = Sm City Reg Ninth Conference On The Small City and Regional Community = Sm. City Reg. Ninth Euromicro Workshop On Real Time Systems, Proceedings = Euromicro Ninth Great Lakes Symposium On Vlsi, Proceedings = Pr Gr Lak Symp Vlsi Ninth Great Lakes Symposium On Vlsi, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Ninth Great Plains Wildlife Damage Control Workshop Proceedings = Usda Rocky Ninth Great Plains Wildlife Damage Control Workshop Proceedings = Usda. Rocky. Ninth Ieee International Conference On Engineering Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Ninth Ieee International Conference On Engineering Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Ninth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Ninth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Ninth Ieee International High-level Design Validation and Test Workshop, Proceedings = Int High Level Desig Ninth Ieee International High-level Design Validation and Test Workshop, Proceedings = Int. High. Level. Desig. Ninth Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm Dis Sim Ninth Ieee International Symposium On Distributed Simulation and Real-time Applications, Proceedings = Ieee Acm. Dis. Sim. Ninth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy Ninth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. Ninth International Conference On Artificial Neural Networks (icann99), Vols 1 and 2 = Iee Conf Publ Ninth International Conference On Artificial Neural Networks (icann99), Vols 1 and 2 = Iee. Conf. Publ. Ninth International Conference On Computer Aided Design and Computer Graphics, Proceedings = Int C Comp Aid Des C Ninth International Conference On Computer Aided Design and Computer Graphics, Proceedings = Int. C. Comp. Aid. Des. C. Ninth International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Ninth International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Ninth International Conference On Electrical Machines and Drives = Iee Conf Publ Ninth International Conference On Electrical Machines and Drives = Iee. Conf. Publ. Ninth International Conference On Electromagnetic Compatibility = Iee Conf Publ Ninth International Conference On Electromagnetic Compatibility = Iee. Conf. Publ. Ninth International Conference On Grey Literature, Gl9 Conference Proceedings = Gl Conference Ser Ninth International Conference On Grey Literature, Gl9 Conference Proceedings = Gl. Conference Ser. Ninth International Conference On Harmonics and Quality of Power Proceedings, Vols I - Iii = Int C Harmon Qual Po Ninth International Conference On Harmonics and Quality of Power Proceedings, Vols I - Iii = Int. C. Harmon. Qual. Po. Ninth International Conference On Metering and Tariffs for Energy Supply = Iee Conf Publ Ninth International Conference On Metering and Tariffs for Energy Supply = Iee. Conf. Publ. Ninth International Conference On Road Transport Information and Control = Iee Conf Publ Ninth International Conference On Road Transport Information and Control = Iee. Conf. Publ. Ninth International School On Quantum Electronics: Lasers-physics and Applications = P Soc Photo-opt Ins Ninth International School On Quantum Electronics: Lasers-physics and Applications = P. Soc. Photo-opt. Ins. Ninth International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res Ninth International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. Ninth International Symposium On Electron Beam Ion Sources and Traps and Their Applications = J Phys Conf Ser Ninth International Symposium On Electron Beam Ion Sources and Traps and Their Applications = J. Phys. Conf. Ser. Ninth International Symposium On Gas Flow and Chemical Lasers = P Soc Photo-opt Ins Ninth International Symposium On Gas Flow and Chemical Lasers = P. Soc. Photo-opt. Ins. Ninth International Symposium On Laser Metrology, Pts 1 and 2 = Proc Spie Ninth International Symposium On Laser Metrology, Pts 1 and 2 = Proc. Spie. Ninth International Workshop On Nondestructive Testing and Computer Simulations = P Soc Photo-opt Ins Ninth International Workshop On Nondestructive Testing and Computer Simulations = P. Soc. Photo-opt. Ins. Ninth International Workshop On Rapid System Prototyping - Proceedings = P Ieee Rap Syst Prot Ninth International Workshop On Rapid System Prototyping - Proceedings = P. Ieee. Rap. Syst. Prot. Ninth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt Ii = P Soc Photo-opt Ins Ninth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt Ii = P. Soc. Photo-opt. Ins. Ninth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt I = P Soc Photo-opt Ins Ninth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt I = P. Soc. Photo-opt. Ins. Ninth Meeting of The East and Southern African Sub-committee for Soil Correlation and Land Evaluation = World Soil Ninth Meeting of The East and Southern African Sub-committee for Soil Correlation and Land Evaluation = World. Soil Ninth Mill Operators' Conference Proceedings = Australas I Min Met Ninth Mill Operators' Conference Proceedings = Australas. I. Min. Met. Ninth Texas-mexico Conference On Astrophysics = Rev Mex Ast Astr Ninth Texas-mexico Conference On Astrophysics = Rev. Mex. Ast. Astr. Ninth Workshop On Virtual Intelligence/dynamic Neural Networks: Academic/industrial/nasa/defense Technical Interchange and Tutorials = P Soc Photo-opt Ins Ninth Workshop On Virtual Intelligence/dynamic Neural Networks: Academic/industrial/nasa/defense Technical Interchange and Tutorials = P. Soc. Photo-opt. Ins. NIPH annals = NIPH Ann NIPH Annals = NIPH Ann. Nippon Byori Gakkai kaishi = Nippon Byori Gakkai Kaishi Nippon Byori Gakkai Kaishi (Transactiones Societatis Pathologicae Japonicae) = Nippon Byori Gakkai Kaishi Nippon Chokucho Komonbyo Gakkai zasshi = Nippon Chokucho Komonbyo Nippon Daicho Komonbyo Gakkai Zasshi (Journal of Japan Society of Colo-Proctology) = Nippon Daicho Komonbyo Gakkai Zasshi Nippon Daicho Komonbyo Gakkai zasshi = Nippon Daicho Komonbyo Gakkai Zasshi Nippon Densenbyo Gakkai zasshi = Nippon Densenbyo Gakkai Zasshi Nippon Densenbyo Gakkai Zasshi = Nippon Densenbyo Gakkai Zasshi Nippon eiseigaku zasshi. Japanese journal of hygiene = Nippon Eiseigaku Zasshi Nippon Eiseigaku Zasshi (Japanese Journal of Hygiene) = Nippon Eiseigaku Zasshi Nippon Eiseigaku Zasshi. Japanese Journal of Hygiene=Nippon Eiseigaku Zasshi;; Nippon Funin Gakkai Zasshi (Japanese Journal of Fertility and Sterility) = Nippon Funin Gakkai Zasshi Nippon Funin Gakkai zasshi = Nippon Funin Gakkai Zasshi Nippon Gan Chiryo Gakkai Shi (Journal of Japan Society for Cancer Therapy) = Nippon Gan Chiryo Gakkai Shi Nippon Gan Chiryo Gakkai shi = Nippon Gan Chiryo Gakkai Shi Nippon Ganka Gakkai Zasshi (Acta Societatis Ophthalmologicae Japonicae) = Nippon Ganka Gakkai Zasshi Nippon Ganka Gakkai Zasshi. Acta Societatis Ophthalmologicae Japonicae=Nippon Ganka Gakkai Zasshi;; Nippon Ganka Gakkai zasshi = Nippon Ganka Gakkai Zasshi Nippon Ganka Kiyo (Folia Ophthalmologica Japonica. Bulletin of Japanese Ophthalmology) = Nippon Ganka Kiyo Nippon ganka kiyo = Nippon Ganka Kiyo Nippon Geka Gakkai Zasshi (Journal of Japan Surgical Society) = Nippon Geka Gakkai Zasshi Nippon Geka Gakkai Zasshi. Journal of Japan Surgical Society=Nippon Geka Gakkai Zasshi;; Nippon Geka Gakkai zasshi = Nippon Geka Gakkai Zasshi Nippon geka hokan. Archiv fur japanische Chirurgie = Nippon Geka Hokan Nippon Geka Hokan (Archiv fur Japanische Chirurgie) = Nippon Geka Hokan. Nippon Geka Hokan. Archiv Fur Japanische Chirurgie=Nippon Geka Hokan;; Nippon Heikatsukin Gakkai zasshi = Nippon Heikatsukin Gakkai Zasshi Nippon Heikatsukin Gakkai Zasshi = Nippon Heikatsukin Gakkai Zasshi Nippon Hifuka Gakkai Zasshi (Japanese Journal of Dermatology) = Nippon Hifuka Gakkai Zasshi Nippon Hifuka Gakkai zasshi. The Japanese journal of dermatology = Nippon Hifuka Gakkai Zasshi Nippon Hinyokika Gakkai Zasshi (Japanese Journal of Urology) = Nippon Hinyokika Gakkai Zasshi Nippon Hinyokika Gakkai Zasshi. Japanese Journal of Urology=Nippon Hinyokika Gakkai Zasshi;; Nippon Hinyokika Gakkai zasshi. The japanese journal of urology = Nippon Hinyokika Gakkai Zasshi Nippon Hoigaku Zasshi (Japanese Journal of Legal Medicine) = Nippon Hoigaku Zasshi Nippon Hoigaku Zasshi. Japanese Journal of Legal Medicine=Nippon Hoigaku Zasshi;; Nippon Hoshasen Gijutsu Gakkai zasshi = Nippon Hoshasen Gijutsu Gakkai Zasshi Nippon Hotetsu Shika Gakkai Zasshi = Nippon Hotetsu Shika Gakkai Zasshi Nippon Igaku Hoshasen Gakkai Zasshi (Nippon Acta Radiologica) = Nippon Igaku Hoshasen Gakkai Zasshi Nippon Igaku Hoshasen Gakkai Zasshi. Nippon Acta Radiologica=Nippon Igaku Hoshasen Gakkai Zasshi;; [Nippon iji shinpo] Japanese medical journal = Jpn Med J Nippon Ika Daigaku Zasshi (Journal of the Nippon Medical School) = Nippon Ika Daigaku Zasshi Nippon Ika Daigaku Zasshi. Journal of The Nippon Medical School=Nippon Ika Daigaku Zasshi;; Nippon Ika Daigaku zasshi = Nippon Ika Daigaku Zasshi Nippon Ishikai zasshi. Journal of the Japan Medical Association = Nippon Ishikai Zasshi Nippon Ishikai Zasshi (Journal of the Japan Medical Association) = Nippon Ishikai Zasshi Nippon Ishinkin Gakkai Zasshi (Japanese Journal of Medical Mycology) = Nippon Ishinkin Gakkai Zasshi Nippon Jibiinkoka Gakkai Kaiho [Journal of The Oto-Rhino-Laryngological Society Of Japan]=Nippon Jibiinkoka Gakkai Kaiho;; Nippon Jibiinkoka Gakkai kaiho = Nippon Jibiinkoka Gakkai Kaiho Nippon Jibiinkoka Gakkai Kaiho = Nippon Jibiinkoka Gakkai Kaiho Nippon Jinzo Gakkai Shi. Japanese Journal of Nephrology=Nippon Jinzo Gakkai Shi;; Nippon Jinzo Gakkai shi = Nippon Jinzo Gakkai Shi Nippon Jinzo Gakkai Shi = Nippon Jinzo Gakkai Shi Nippon Juigaku Zasshi (Japanese Journal of Veterinary Science) = Nippon Juigaku Zasshi Nippon juigaku zasshi. The Japanese journal of veterinary science = Nippon Juigaku Zasshi Nippon Kagaku Kaishi = Nippon Kagaku Kaishi Nippon Kagaku Zasshi = Nippon Kagaku Zasshi Nippon Ketsueki Gakkai Zasshi (Acta Haematologica Japonica) = Nippon Ketsueki Gakkai Zasshi Nippon Ketsueki Gakkai zasshi : journal of Japan Haematological Society = Nippon Ketsueki Gakkai Zasshi Nippon Kikai Gakkai Ronbunshu, A-hen = Nippon Kikai Gakkai Ronbunshu, A-hen Nippon Kikai Gakkai Ronbunshu, B-hen = Nippon Kikai Gakkai Ronbunshu, B-hen Nippon Kinzoku Gakkaishi = Nippon Kinzoku Gakkaishi Nippon Koku Geka Gakkai zasshi = Nippon Koku Geka Gakkai Zasshi Nippon Koku Geka Gakkai Zasshi = Nippon Koku Geka Gakkai Zasshi Nippon Kontakuto Renzu Gakkai Kaiin Dayori (Journal of Japan Contact Lens Society) = Nippon Kontakuto Renzu Gakkai Kaiin Dayori. [Nippon koshu eisei zasshi] Japanese journal of public health = Nippon Koshu Eisei Zasshi Nippon Koshu Eisei Zasshi (Japanese journal of Public Health) = Nippon Koshu Eisei Zasshi Nippon Koshu Eisei Zasshi [Japanese Journal of Public Health]=Nippon Koshu Eisei Zasshi;; Nippon Kyobu Geka Gakkai Zasshi (Journal of the Japanese Association for Thoracic Surgery) = Nippon Kyobu Geka Gakkai Zasshi Nippon Kyobu Geka Gakkai Zasshi. Journal of The Japanese Association For Thoracic Surgery=Nippon Kyobu Geka Gakkai Zasshi;; Nippon Kyobu Shikkan Gakkai Zasshi (Japanese Journal of Thoracic Diseases) = Nippon Kyobu Shikkan Gakkai Zasshi Nippon Kyobu Shikkan Gakkai Zasshi. Japanese Journal of Thoracic Diseases=Nippon Kyobu Shikkan Gakkai Zasshi;; Nippon Kyosei Shika Gakkai Zasshi (Journal of Japan Orthodontic Society) = Nippon Kyosei Shika Gakkai Zasshi Nippon Naibunpi Gakkai Zasshi (Folia Endocrinologica Japonica) = Nippon Naibunpi Gakkai Zasshi Nippon Naibunpi Gakkai zasshi = Nippon Naibunpi Gakkai Zasshi Nippon Naika Gakkai Zasshi (Journal of Japanese Society of Internal Medicine) = Nippon Naika Gakkai Zasshi Nippon Naika Gakkai Zasshi. Journal of Japanese Society Of Internal Medicine=Nippon Naika Gakkai Zasshi;; Nippon Nogeikagaku Kaishi-journal of The Japan Society for Bioscience Biotechnology and Agrochemistry = Nippon Nogeik Kaishi Nippon Nogeikagaku Kaishi-journal of The Japan Society for Bioscience Biotechnology and Agrochemistry = Nippon Nogeik. Kaishi. Nippon Nogei Kagaku Kaishi = Nippon Nogei Kagaku Kaishi Nippon Nogei Kagaku Kaishi = Nippon Nog Kag Kaish Nippon Nogei Kagaku Kaishi = Nippon Nog. Kag. Kaish. Nippon Oyo Jiki Gakkaishi = Nippon Oyo Jiki Gakkaishi Nippon Rai Gakkai Zasshi (Japanese Journal of Leprosy) = Nippon Rai Gakkai Zasshi Nippon Rai Gakkai zasshi = Nippon Rai Gakkai Zasshi Nippon rinsho. Japanese journal of clinical medicine = Nippon Rinsho Nippon Rinsho (Japanese Journal of Clinical Medicine) = Nippon Rinsho Nippon Rinsho. Japanese Journal of Clinical Medicine=Nippon Rinsho;; Nippon Ronen Igakkai zasshi. Japanese journal of geriatrics = Nippon Ronen Igakkai Zasshi Nippon Ronen Igakkai Zasshi (Japanese Journal of Geriatrics) = Nippon Ronen Igakkai Zasshi Nippon Ronen Igakkai Zasshi. Japanese Journal of Geriatrics=Nippon Ronen Igakkai Zasshi;; Nippon saikingaku zasshi. Japanese journal of bacteriology = Nippon Saikingaku Zasshi Nippon Saikingaku Zasshi (Japanese Journal of Bacteriology) = Nippon Saikingaku Zasshi Nippon Saikingaku Zasshi. Japanese Journal of Bacteriology=Nippon Saikingaku Zasshi;; Nippon Sanka Fujinka Gakkai Zasshi (Acta Obstetrica et Gynaecologica Japonica) = Nippon Sanka Fujinka Gakkai Zasshi Nippon Sanka Fujinka Gakkai zasshi = Nippon Sanka Fujinka Gakkai Zasshi Nippon Seikeigeka Gakkai Zasshi (Journal of the Japanese Orthopaedic Association) = Nippon Seikeigeka Gakkai Zasshi Nippon Seikeigeka Gakkai zasshi = Nippon Seikeigeka Gakkai Zasshi Nippon seirigaku zasshi. Journal of the Physiological Society of Japan = Nippon Seirigaku Zasshi Nippon Seirigaku Zasshi (Journal of the Physiological Society of Japan) = Nippon Seirigaku Zasshi Nippon Seirigaku Zasshi. Journal of The Physiological Society Of Japan=Nippon Seirigaku Zasshi;; Nippon Seramikkusu Kyokai Gakujutsu Ronbunshi-journal of The Ceramic Society of Japan = Nippon Seram Kyo Gak Nippon Seramikkusu Kyokai Gakujutsu Ronbunshi-journal of The Ceramic Society of Japan = Nippon Seram. Kyo. Gak. Nippon Seramikkusu Kyokai Gakujutsu Ronbunshi = Nippon Seramikkusu Kyokai Gakujutsu Ronbunshi Nippon Shika Hyoron (Nippon Dental Review) = Nippon Shika Hyoron. [Nippon shika hyoron] The Nippon dental review = Nippon Shika Hyoron Nippon Shika Ishikai Zasshi (Journal of the Japan Dental Association) = Nippon Shika Ishikai Zasshi Nippon Shika Ishikai zasshi = Nippon Shika Ishikai Zasshi Nippon Shika Zairyo Kikai Gakkai Zasshi (Journal of the Japan Research Society of Dental Materials and Appliances) = Nippon Shika Zairyo Kikai Gakkai Zasshi Nippon Shika Zairyo Kikai Gakkai zasshi. The Journal of the Japan Research Society of Dental Materials & Appliances = Nippon Shika Zairyo Kikai Gakkai Zasshi Nippon Shishubyo Gakkai Kaishi (Journal of the Japanese Association of Periodontology) = Nippon Shishubyo Gakkai Kaishi Nippon Shishubyo Gakkai kaishi = Nippon Shishubyo Gakkai Kaishi Nippon Shokakibyo Gakkai Zasshi (Japanese Journal of Gastroenterology) = Nippon Shokakibyo Gakkai Zasshi Nippon Shokakibyo Gakkai Zasshi. Japanese Journal of Gastroenterology=Nippon Shokakibyo Gakkai Zasshi;; Nippon Shokakibyo Gakkai zasshi The Japanese journal of gastro-enterology = Nippon Shokakibyo Gakkai Zasshi Nippon Shokuhin Kogyo Gakkaishi = Nippon Shokuhin Kogyo Gakkaishi Nippon Shonika Gakkai zasshi. Acta paediatrica Japonica = Nippon Shonika Gakkai Zasshi Nippon Shonika Gakkai Zasshi (Acta Paediatrica Japonica) = Nippon Shonika Gakkai Zasshi Nippon Suisan Gakkai Shi. Bulletin Of The Japanese Society Of Scientific Fisheries = Nippon Suisan Gakkai Shi Nippon Suisan Gakkaishi = Nippon Suisan Gakk Nippon Suisan Gakkaishi = Nippon Suisan Gakk. Nippon Suisan Gakkaishi = Nippon Suisan Gakkaishi Nippon yakurigaku zasshi. Folia pharmacologica Japonica = Nippon Yakurigaku Zasshi Nippon Yakurigaku Zasshi (Folia Pharmacologica Japonica) = Nippon Yakurigaku Zasshi Nippon Yakurigaku Zasshi. Folia Pharmacologica Japonica=Nippon Yakurigaku Zasshi;; Nippon Yakurigaku Zasshi = Nippon Yakurigaku Zasshi Nishina Memorial Lectures: Creators of Modern Physics = Lect Notes Phys Nishina Memorial Lectures: Creators of Modern Physics = Lect. Notes. Phys. Nissan Institute Routledge Japanese Studies = Nissan I Routl Jpn S Nissan Institute Routledge Japanese Studies = Nissan I. Routl. Jpn. S. [Nisshin igaku] The Japanese journal of medical progress = Nisshin Igaku Jpn J Med Prog Nist Special Pubication = Nist Spec Publ Nist Special Pubication = Nist Spec. Publ. NIST Special Publication = NIST Spec. Publ. NITA = NITA Nitration = Acs Sym Ser Nitration = Acs. Sym. Ser. Nitric Acid-based Fertilizers and The Environment = Ifdc Sp Pub Nitric Acid-based Fertilizers and The Environment = Ifdc. Sp. Pub. Nitric Oxide-biology and Chemistry = Nitric Oxide-biol Ch Nitric Oxide-biology and Chemistry = Nitric Oxide-biol. Ch. Nitric oxide : biology and chemistry / official journal of the Nitric Oxide Society = Nitric Oxide Nitric Oxide: Brain and Immune System = Portl Pr P Nitric Oxide: Brain and Immune System = Portl. Pr. P. Nitric Oxide From L-arginine : Bioregulatory System = Int Congr Ser Nitric Oxide From L-arginine : Bioregulatory System = Int. Congr. Ser. Nitric Oxide in Brain Development, Plasticity and Disease = Prog Brain Res Nitric Oxide in Brain Development, Plasticity and Disease = Prog. Brain Res. Nitric Oxide: Methods and Protocols = Methods Mol Biol Nitric Oxide: Methods and Protocols = Methods Mol. Biol. Nitric Oxide = Nato Sci S A Lif Sci Nitric Oxide = Nato. Sci. S. A. Lif. Sci. Nitric Oxide = Nitric Oxide Nitric Oxide: Novel Actions, Deleterious Effects and Clinical Potential = Ann Ny Acad Sci Nitric Oxide: Novel Actions, Deleterious Effects and Clinical Potential = Ann. Ny. Acad. Sci. Nitric Oxide, Part F: Oxidative and Nitrosative Stress in Redox Regulation of Cell Signaling = Method Enzymol Nitric Oxide, Part F: Oxidative and Nitrosative Stress in Redox Regulation of Cell Signaling = Method. Enzymol. Nitric Oxide, Pt A - Sources and Detection of No; No Synthase = Method Enzymol Nitric Oxide, Pt A - Sources and Detection of No; No Synthase = Method. Enzymol. Nitric Oxide, Pt A - Sources and Detection of No; No Synthase = Methods Enzymol Nitric Oxide, Pt A - Sources and Detection of No; No Synthase = Methods. Enzymol. Nitric Oxide, Pt B = Method Enzymol Nitric Oxide, Pt B = Method. Enzymol. Nitric Oxide, Pt B = Methods Enzymol Nitric Oxide, Pt B = Methods. Enzymol. Nitric Oxide, Pt C = Method Enzymol Nitric Oxide, Pt C = Method. Enzymol. Nitric Oxide, Pt D = Method Enzymol Nitric Oxide, Pt D = Method. Enzymol. Nitric Oxide, Pt D = Methods Enzymol Nitric Oxide, Pt D = Methods. Enzymol. Nitric Oxide, Pt E = Method Enzymol Nitric Oxide, Pt E = Method. Enzymol. Nitric Oxide, Pt G: Oxidative and Nitrosative Stress in Redox Regulation of Cell Signaling = Method Enzymol Nitric Oxide, Pt G: Oxidative and Nitrosative Stress in Redox Regulation of Cell Signaling = Method. Enzymol. Nitric Oxide = Tanig Symp Brain Sci Nitric Oxide = Tanig. Symp. Brain. Sci. Nitrides and Oxynitrides 2 = Mater Sci Forum Nitrides and Oxynitrides 2 = Mater. Sci. Forum. Nitrides and Oxynitrides Iii = Mater Sci Forum Nitrides and Oxynitrides Iii = Mater. Sci. Forum. Nitrides and Oxynitrides = Mater Sci Forum Nitrides and Oxynitrides = Mater. Sci. Forum. Nitride Semiconductors = Mater Res Soc Symp P Nitride Semiconductors = Mater. Res. Soc. Symp. P. Nitrite and Nitrate in Human Health and Disease = Nutr Health Ser Nitrite and Nitrate in Human Health and Disease = Nutr. Health Ser. Nitroarenes = Envir Sci R Nitroarenes = Envir. Sci. R. Nitroazoles: Synthesis, Structure and Applications = Top Appl Chem Nitroazoles: Synthesis, Structure and Applications = Top. Appl. Chem. Nitrogen-containing Macromolecules in The Bio- and Geosphere = Acs Sym Ser Nitrogen-containing Macromolecules in The Bio- and Geosphere = Acs. Sym. Ser. Nitrogen Fixation With Non-legumes = Dev Plant Soil Sci Nitrogen Fixation With Non-legumes = Dev. Plant. Soil. Sci. Nitrogen Fixing Tree Research Reports Special Issue = Nitr Fix Tree Res Nitrogen Fixing Tree Research Reports Special Issue = Nitr. Fix. Tree Res. Nitrogen Fixing Trees for Acid Soils = Nitr Fix Tree Res Nitrogen Fixing Trees for Acid Soils = Nitr. Fix. Tree. Res. Nitrogen Fixing Trees for Fodder Production = For Farm Comm Tree R Nitrogen Fixing Trees for Fodder Production = For. Farm. Comm. Tree. R. Nitrogen Flow in Pig Production and Environmental Consequences = Eaap Public Nitrogen Flow in Pig Production and Environmental Consequences = Eaap. Public. Nitrogen Metabolism of Plants = Pr Phyt Soc Nitrogen Metabolism of Plants = Pr. Phyt. Soc. Nitrogen Pollution of Water = Water Supp Nitrogen Pollution of Water = Water Supp. Nitrosamines and Related N-nitroso Compounds = Acs Sym Ser Nitrosamines and Related N-nitroso Compounds = Acs. Sym. Ser. Nitrous Oxide Emissions Research Progress = Environ Sci Eng Tech Nitrous Oxide Emissions Research Progress = Environ. Sci. Eng. Tech. Nizhegorodskiy Gosudavstvennyy Universitet = Dinamika Sistem Njas-wageningen Journal of Life Sciences = Njas-wagen J Life Sc Njas-wageningen Journal of Life Sciences = Njas-wagen. J. Life Sc. NJPC bulletin = NJPC Bull NJPC Bulletin = NJPC Bull. Njsna Newsletter = NJSNA Newsl NJSNA Newsletter = NJSNA Newsl. NLN convention papers = NLN Conv Pap NLN Convention Papers = NLN Conv. Pap. NLN publications = NLN Publ NLN Publications = NLN Publ. NLN update : connecting members of the National League for Nursing = NLN Update NLN Update = NLN Update Nmai Editions = Nmai Ed Nmai Editions = Nmai Ed. Nmr - 3d Analysis - Photopolymerization = Adv Polym Sci Nmr - 3d Analysis - Photopolymerization = Adv. Polym. Sci. Nmr-basic Principles and Progress = Nmr-basic Princ Prog Nmr-basic Principles and Progress = Nmr-basic Princ. Prog. Nmr in Biomedicine = Nmr Biomed Nmr in Biomedicine = Nmr Biomed. NMR in biomedicine = NMR Biomed NMR in Biomedicine = NMR Biomed. NMR In Biomedicine=NMR Biomed;; Nmr in Supramolecular Chemistry = Nato Adv Sci I C-mat Nmr in Supramolecular Chemistry = Nato. Adv. Sci. I. C-mat. Nmr Probe of High-t(c) Materials = Springer Tr Mod Phys Nmr Probe of High-t(c) Materials = Springer. Tr. Mod. Phys. Nmr Spectroscopy and Computer Modeling of Carbohydrates: Recent Advances = Acs Sym Ser Nmr Spectroscopy and Computer Modeling of Carbohydrates: Recent Advances = Acs. Sym. Ser. Nmr Spectroscopy of Polymers in Solution and in The Solid State = Acs Sym Ser Nmr Spectroscopy of Polymers in Solution and in The Solid State = Acs. Sym. Ser. Nn'09: Proceedings of The 10th Wseas International Conference On Neural Networks = Artif Int Ser Wseas Nn'09: Proceedings of The 10th Wseas International Conference On Neural Networks = Artif. Int. Ser. Wseas NNA-Berichte = NNA-Ber. Nnn06: Next Generation Nucleon Decay and Neutrino Detectors 2006 = Aip Conf Proc Nnn06: Next Generation Nucleon Decay and Neutrino Detectors 2006 = Aip. Conf. Proc. Nobel Conference = Nobel Conf Nobel Conference = Nobel Conf. Nobel Laureates and Nanotechnologies of Applied Quantum Chemistry = Chem Res Appl-nova Nobel Laureates and Nanotechnologies of Applied Quantum Chemistry = Chem. Res. Appl-nova. Nobel Medicus = Nobel Med Nobel Medicus = Nobel Med. Nobel Symposium = Nobel Symp Nobel Symposium = Nobel Symp. Noble Gases in Geochemistry and Cosmochemistry = Rev Mineral Geochem Noble Gases in Geochemistry and Cosmochemistry = Rev. Mineral. Geochem. Noble Life: The Cultural Biography of Gabriel Kurck (1630-1712) = Suom Tiedeakat Toim Noble Life: The Cultural Biography of Gabriel Kurck (1630-1712) = Suom. Tiedeakat. Toim. Nociceptive Membrane = Curr Top Membr Nociceptive Membrane = Curr. Top. Membr. Noctuids (lepidoptera, Noctuidae) of Marsh Ecosystems in The Biebrza National Park = Pol Entomol Monogr Noctuids (lepidoptera, Noctuidae) of Marsh Ecosystems in The Biebrza National Park = Pol. Entomol. Monogr. Nodal Discontinuous Galerkin Methods: Algorithms, Analysis, and Applications = Texts Appl Math Nodal Discontinuous Galerkin Methods: Algorithms, Analysis, and Applications = Texts. Appl. Math. NoDEA = NoDEA Nonlinear Differential Equations Appl. Nodea-nonlinear Differential Equations and Applications = Nodea-nonlinear Diff Nodea-nonlinear Differential Equations and Applications = Nodea-nonlinear Diff. No Enchanted Palace: The End of Empire and The Ideological Origins of The United Nations = Lawrence Stone Lect No Enchanted Palace: The End of Empire and The Ideological Origins of The United Nations = Lawrence. Stone. Lect. No End to Alliance = Nobel Symp No End to Alliance = Nobel. Symp. Noesis (Pau, France) = Noesis Noetherian Semigroup Algebras = Algebra Appl Noetherian Semigroup Algebras = Algebra. Appl. Noether Theorems: Invariance and Conservation Laws in The Twentieth Century = Sourc Stud Hist Math Noether Theorems: Invariance and Conservation Laws in The Twentieth Century = Sourc. Stud. Hist. Math. Noir Thriller = Crime File Noir Thriller = Crime. File. Noise and Fluctuations = Aip Conf Proc Noise and Fluctuations = Aip. Conf. Proc. Noise and Fluctuations in Biological, Biophysical, and Biomedical Systems = Proc Spie Noise and Fluctuations in Biological, Biophysical, and Biomedical Systems = Proc. Spie. Noise and Fluctuations in Biological, Biophysical, and Biomedical Systems = P Soc Photo-opt Ins Noise and Fluctuations in Biological, Biophysical, and Biomedical Systems = P. Soc. Photo-opt. Ins. Noise and Fluctuations in Circuits, Devices, and Materials = Proc Spie Noise and Fluctuations in Circuits, Devices, and Materials = Proc. Spie. Noise and Fluctuations in Circuits, Devices, and Materials = P Soc Photo-opt Ins Noise and Fluctuations in Circuits, Devices, and Materials = P. Soc. Photo-opt. Ins. Noise and Fluctuations in Econophysics and Finance = Proc Spie Noise and Fluctuations in Econophysics and Finance = Proc. Spie. Noise and Fluctuations in Econophysics and Finance = P Soc Photo-opt Ins Noise and Fluctuations in Econophysics and Finance = P. Soc. Photo-opt. Ins. Noise and Fluctuations in Photonics, Quantum Optics, and Communications = Proc Spie Noise and Fluctuations in Photonics, Quantum Optics, and Communications = Proc. Spie. Noise and Fluctuations in Photonics, Quantum Optics, and Communications = P Soc Photo-opt Ins Noise and Fluctuations in Photonics, Quantum Optics, and Communications = P. Soc. Photo-opt. Ins. Noise and Information in Nanoelectronics, Sensors, and Standards Iii = Proc Spie Noise and Information in Nanoelectronics, Sensors, and Standards Iii = Proc. Spie. Noise and Information in Nanoelectronics, Sensors, and Standards Iii = P Soc Photo-opt Ins Noise and Information in Nanoelectronics, Sensors, and Standards Iii = P. Soc. Photo-opt. Ins. Noise and Information in Nanoelectronics, Sensors, and Standards Ii = Proc Spie Noise and Information in Nanoelectronics, Sensors, and Standards Ii = Proc. Spie. Noise and Information in Nanoelectronics, Sensors, and Standards Ii = P Soc Photo-opt Ins Noise and Information in Nanoelectronics, Sensors, and Standards Ii = P. Soc. Photo-opt. Ins. Noise and Information in Nanoelectronics, Sensors and Standards = Proc Spie Noise and Information in Nanoelectronics, Sensors and Standards = Proc. Spie. Noise and Information in Nanoelectronics, Sensors and Standards = P Soc Photo-opt Ins Noise and Information in Nanoelectronics, Sensors and Standards = P. Soc. Photo-opt. Ins. Noise and Stochastics in Complex Systems and Finance = Proc Spie Noise and Stochastics in Complex Systems and Finance = Proc. Spie. Noise and Stochastics in Complex Systems and Finance = P Soc Photo-opt Ins Noise and Stochastics in Complex Systems and Finance = P. Soc. Photo-opt. Ins. Noise and Vibration = Imeche Sem Noise and Vibration = Imeche. Sem. Noise and Vibration Mitigation for Rail Transportation Systems = Note N Fl Mech Mul D Noise and Vibration Mitigation for Rail Transportation Systems = Note. N. Fl. Mech. Mul. D. Noise and Vibration Mitigation for Rail Transportation Systems = Notes Numer Fluid Me Noise and Vibration Mitigation for Rail Transportation Systems = Notes. Numer. Fluid. Me. Noise As A Tool for Studying Materials = Proc Spie Noise As A Tool for Studying Materials = Proc. Spie. Noise As A Tool for Studying Materials = P Soc Photo-opt Ins Noise As A Tool for Studying Materials = P. Soc. Photo-opt. Ins. Noise-con 91 - Proceedings : 1991 National Conference On Noise Control Engineering = Noise Con P Noise-con 91 - Proceedings : 1991 National Conference On Noise Control Engineering = Noise Con. P. Noise-con 93 Proceedings - 1993 National Conference On Noise Control Engineering = Noise Con P Noise-con 93 Proceedings - 1993 National Conference On Noise Control Engineering = Noise Con. P. Noise-con 94, Proceedings = Noise Con P Noise-con 94, Proceedings = Noise. Con. P. Noise-con Proceedings = Noise Con P Noise-con Proceedings = Noise. Con. P. Noise Control and Acoustics Division - 2005 = Noise Cont Acoust Di Noise Control and Acoustics Division - 2005 = Noise Cont. Acoust. Di. Noise Control and Acoustics Division of The American Society of Mechanical Engineers = Noise Cont Acoust Di Noise Control and Acoustics Division of The American Society of Mechanical Engineers = Noise Cont. Acoust. Di. Noise Control and Measurement Techniques for Fluid Machinery = Imeche Sem Noise Control and Measurement Techniques for Fluid Machinery = Imeche. Sem. Noise Control Engineering Journal = Noise Control Eng Noise Control Engineering Journal = Noise Control Eng. Noise Control Engineering Journal = Noise Control Eng J Noise Control Engineering Journal = Noise Control Eng. J. Noise & health = Noise Health Noise & Health = Noise Health Noise in Communication = Proc Spie Noise in Communication = Proc. Spie. Noise in Communication = P Soc Photo-opt Ins Noise in Communication = P. Soc. Photo-opt. Ins. Noise in Communication Systems = P Soc Photo-opt Ins Noise in Communication Systems = P. Soc. Photo-opt. Ins. Noise in Complex Systems and Stochastic Dynamics Iii = Proc Spie Noise in Complex Systems and Stochastic Dynamics Iii = Proc. Spie. Noise in Complex Systems and Stochastic Dynamics Iii = P Soc Photo-opt Ins Noise in Complex Systems and Stochastic Dynamics Iii = P. Soc. Photo-opt. Ins. Noise in Complex Systems and Stochastic Dynamics Ii = Proc Spie Noise in Complex Systems and Stochastic Dynamics Ii = Proc. Spie. Noise in Complex Systems and Stochastic Dynamics Ii = P Soc Photo-opt Ins Noise in Complex Systems and Stochastic Dynamics Ii = P. Soc. Photo-opt. Ins. Noise in Complex Systems and Stochastic Dynamics = Proc Spie Noise in Complex Systems and Stochastic Dynamics = Proc. Spie. Noise in Complex Systems and Stochastic Dynamics = P Soc Photo-opt Ins Noise in Complex Systems and Stochastic Dynamics = P. Soc. Photo-opt. Ins. Noise in Devices and Circuits Iii = Proc Spie Noise in Devices and Circuits Iii = Proc. Spie. Noise in Devices and Circuits Iii = P Soc Photo-opt Ins Noise in Devices and Circuits Iii = P. Soc. Photo-opt. Ins. Noise in Devices and Circuits Ii = Proc Spie Noise in Devices and Circuits Ii = Proc. Spie. Noise in Devices and Circuits Ii = P Soc Photo-opt Ins Noise in Devices and Circuits Ii = P. Soc. Photo-opt. Ins. Noise in Devices and Circuits = Proc Spie Noise in Devices and Circuits = Proc. Spie. Noise in Devices and Circuits = P Soc Photo-opt Ins Noise in Devices and Circuits = P. Soc. Photo-opt. Ins. Noise in Fluid Machinery = Imeche Sem Noise in Fluid Machinery = Imeche. Sem. Noise in Physical Systems and 1/f Fluctuations = Aip Conf Proc Noise in Physical Systems and 1/f Fluctuations = Aip. Conf. Proc. Noise, Oscillators and Algebraic Randomness = Lect Notes Phys Noise, Oscillators and Algebraic Randomness = Lect. Notes. Phys. Noise Reduction in Speech Processing = Springer Top Sign Pr Noise Reduction in Speech Processing = Springer. Top. Sign. Pr. Nomadic peoples = Nomad People Nomen Et Fraternitas: Festschrift Fur Dieter Geuenich Zum 65. Geburtstag = Reallexikon Ger Alte Nomen Et Fraternitas: Festschrift Fur Dieter Geuenich Zum 65. Geburtstag = Reallexikon. Ger. Alte. Nomikoi-critical Legal Thinkers = Nomikoi-crit Leg Thi Nomikoi-critical Legal Thinkers = Nomikoi-crit. Leg. Thi. Nominalism and Its Aftermath: The Philosophy of Nelson Goodman = Synth Libr Nominalism and Its Aftermath: The Philosophy of Nelson Goodman = Synth. Libr. Nomos: Yearbook of The American Society for Political and Legal Philosophy = Nomos Nomos: Yearbook of The American Society for Political and Legal Philosophy = Nomos. Nomura Research Institute Quarterly Economic Review=Nomura Res. Inst. Quart. Econ. Rev. Non-archimedean L-functions and Arithmetical Siegel Modular Forms, 2nd Augmented Ed = Lect Notes Math Non-archimedean L-functions and Arithmetical Siegel Modular Forms, 2nd Augmented Ed = Lect. Notes. Math. Nonassociative Algebra and Its Applications = Lect Notes Pure Appl Nonassociative Algebra and Its Applications = Lect. Notes. Pure. Appl. Non-associative Algebra and Its Applications = Math Appl Non-associative Algebra and Its Applications = Math. Appl. Non-associative Algebra and Its Applications = Mg Txb Pur Appl Math Non-associative Algebra and Its Applications = Mg. Txb. Pur. Appl. Math. Non-associative Algebra and Its Applications = Monogr Textb Pure Ap Non-associative Algebra and Its Applications = Monogr. Textb. Pure. Ap. Non-associative Algebra and Its Applications = Monogr Txb Pure Appl Non-associative Algebra and Its Applications = Monogr. Txb. Pure. Appl. Non-bayesian Decision Theory: Beliefs and Desires As Reasons for Action = Theory Decis Lib A Non-bayesian Decision Theory: Beliefs and Desires As Reasons for Action = Theory. Decis. Lib. A. Nonblocking Supervisory Control of State Tree Structures = Lect Notes Contr Inf Nonblocking Supervisory Control of State Tree Structures = Lect. Notes. Contr. Inf. Nonclassical Logics and Information Processing = Lect Notes Artif Int Nonclassical Logics and Information Processing = Lect. Notes. Artif. Int. Non-classical Logics and Their Applications to Fuzzy Subsets = Theo Dec L Non-classical Logics and Their Applications to Fuzzy Subsets = Theo. Dec. L. Non Coding Rnas in Plants = Rna Technol Non Coding Rnas in Plants = Rna. Technol. Noncommunicative Grobner Bases and Filtered-graded Transfer = Lect Notes Math Noncommunicative Grobner Bases and Filtered-graded Transfer = Lect. Notes. Math. Noncommutative Algebra and Geometry = Lect Notes Pure Appl Noncommutative Algebra and Geometry = Lect. Notes. Pure. Appl. Noncommutative Differential Geometry and Its Applications to Physics, Proceedings = Math Phys S Noncommutative Differential Geometry and Its Applications to Physics, Proceedings = Math. Phys. S. Noncommutative Functional Calculus: Theory and Applications of Slice Hyperholomorphic Functions = Prog Math Noncommutative Functional Calculus: Theory and Applications of Slice Hyperholomorphic Functions = Prog. Math. Non-commutative Gelfand Theories: A Tool-kit for Operator Theorists and Numerical Analysts = Universitext Non-commutative Gelfand Theories: A Tool-kit for Operator Theorists and Numerical Analysts = Universitext. Noncommutative Geometry and Global Analysis = Contemp Math Noncommutative Geometry and Global Analysis = Contemp. Math. Noncommutative Geometry and Representation Theory in Mathematical Physics = Contemp Math Noncommutative Geometry and Representation Theory in Mathematical Physics = Contemp. Math. Noncommutative Geometry and The Standard Model of Elementary Particle Physics = Lect Notes Phys Noncommutative Geometry and The Standard Model of Elementary Particle Physics = Lect. Notes. Phys. Non-commutative Geometry in Mathematics and Physics = Contemp Math Non-commutative Geometry in Mathematics and Physics = Contemp. Math. Noncommutative Geometry = Lect Notes Math Noncommutative Geometry = Lect. Notes. Math. Noncommutative Harmonic Analysis With Applications to Probability = Banach Cent Noncommutative Harmonic Analysis With Applications to Probability = Banach. Cent. Noncommutative Rings, Group Rings, Diagram Algebras and Their Applications = Contemp Math Noncommutative Rings, Group Rings, Diagram Algebras and Their Applications = Contemp. Math. Noncommutative Rings = Math Sci R Noncommutative Rings = Math. Sci. R. Non-commutative Ring Theory = Lect Notes Math Non-commutative Ring Theory = Lect. Notes. Math. Noncommutative Spacetimes: Symmetries in Noncommutative Geometry and Field Theory = Lect Notes Phys Noncommutative Spacetimes: Symmetries in Noncommutative Geometry and Field Theory = Lect. Notes. Phys. Noncommutative Stationary Processes = Lect Notes Math Noncommutative Stationary Processes = Lect. Notes. Math. Noncommutative Structures in Mathematics and Physics = Nato Sci Ser Ii-math Noncommutative Structures in Mathematics and Physics = Nato. Sci. Ser. Ii-math. Noncommutative Structures in Mathematics and Physics = Nato Sci Ser Ii Math Noncommutative Structures in Mathematics and Physics = Nato. Sci. Ser. Ii. Math. Noncommutativity and Singularities: Proceedings of French-japanese Symposia Held At Ihes in 2006 = Adv Stu P M Noncommutativity and Singularities: Proceedings of French-japanese Symposia Held At Ihes in 2006 = Adv. Stu. P. M. Noncompact Lie Groups and Some of Their Applications = Nato Adv Sci Inst Se Noncompact Lie Groups and Some of Their Applications = Nato. Adv. Sci. Inst. Se. Nonconducting Photopolymers and Applications = P Soc Photo-opt Ins Nonconducting Photopolymers and Applications = P. Soc. Photo-opt. Ins. Noncontact Atomic Force Microscopy, Vol 2 = Nanosci Technol Noncontact Atomic Force Microscopy, Vol 2 = Nanosci. Technol. Nonconventional Optical Imaging Elements = P Soc Photo-opt Ins Nonconventional Optical Imaging Elements = P. Soc. Photo-opt. Ins. Nonconvex Optimization and Its Applications = Noncon Optim Its App Nonconvex Optimization and Its Applications = Noncon. Optim. Its App. Nonconvex Optimization and Its Applications = Nonconvex Optim Nonconvex Optimization and Its Applications = Nonconvex Optim. Nonconvex Optimization and its Applications = Nonconvex Optim. Appl. Non-covalent Interactions: Theory and Experiment = Rsc Theor Comput Che Non-covalent Interactions: Theory and Experiment = Rsc. Theor. Comput. Che. Non-covalent Multi-porphyrin Assemblies Synthesis and Properties = Struct Bond Non-covalent Multi-porphyrin Assemblies Synthesis and Properties = Struct. Bond. Noncovariant Gauges in Canonical Formalism = Lect Notes Phys Noncovariant Gauges in Canonical Formalism = Lect. Notes. Phys. Nondestructive and Automated Testing for Soil and Rock Properties = Am Soc Test Mater Nondestructive and Automated Testing for Soil and Rock Properties = Am. Soc. Test. Mater. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2007 = P Soc Photo-opt Ins Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2007 = P. Soc. Photo-opt. Ins. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2008 = Proc Spie Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2008 = Proc. Spie. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2008 = P Soc Photo-opt Ins Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2008 = P. Soc. Photo-opt. Ins. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2010 = Proc Spie Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2010 = Proc. Spie. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2010 = P Soc Photo-opt Ins Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2010 = P. Soc. Photo-opt. Ins. Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2011 = Proc Spie Nondestructive Characterization for Composite Materials, Aerospace Engineering, Civil Infrastructure, and Homeland Security 2011 = Proc. Spie. Nondestructive Characterization of Materials in Aging Systems = Mater Res Soc Symp P Nondestructive Characterization of Materials in Aging Systems = Mater. Res. Soc. Symp. P. Nondestructive Characterization of Materials Ix = Aip Conf Proc Nondestructive Characterization of Materials Ix = Aip. Conf. Proc. Nondestructive Characterization of Materials Vii, Pts 1 and 2 = Mater Sci Forum Nondestructive Characterization of Materials Vii, Pts 1 and 2 = Mater. Sci. Forum. Nondestructive Detection and Measurement for Homeland Security Iii = Proc Spie Nondestructive Detection and Measurement for Homeland Security Iii = Proc. Spie. Nondestructive Detection and Measurement for Homeland Security Iii = P Soc Photo-opt Ins Nondestructive Detection and Measurement for Homeland Security Iii = P. Soc. Photo-opt. Ins. Nondestructive Detection and Measurement for Homeland Security Ii = P Soc Photo-opt Ins Nondestructive Detection and Measurement for Homeland Security Ii = P. Soc. Photo-opt. Ins. Nondestructive Detection and Measurement for Homeland Security = P Soc Photo-opt Ins Nondestructive Detection and Measurement for Homeland Security = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Civil Infrastructures = Proc Spie Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Civil Infrastructures = Proc. Spie. Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Civil Infrastructures = P Soc Photo-opt Ins Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Civil Infrastructures = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Iii = P Soc Photo-opt Ins Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Iii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Ii = Proc Spie Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Ii = Proc. Spie. Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Ii = P Soc Photo-opt Ins Nondestructive Evaluation and Health Monitoring of Aerospace Materials and Composites Ii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Health Monitoring of Aerospace Materials, Composites, and Civil Infrastructure Iv = P Soc Photo-opt Ins Nondestructive Evaluation and Health Monitoring of Aerospace Materials, Composites, and Civil Infrastructure Iv = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Health Monitoring of Aerospace Materials, Composites, and Civil Infrastructure V = P Soc Photo-opt Ins Nondestructive Evaluation and Health Monitoring of Aerospace Materials, Composites, and Civil Infrastructure V = P. Soc. Photo-opt. Ins. Nondestructive Evaluation and Reliability of Micro-and Nanomaterial Systems = P Soc Photo-opt Ins Nondestructive Evaluation and Reliability of Micro-and Nanomaterial Systems = P. Soc. Photo-opt. Ins. Nondestructive Evaluation Engineering Division of The American Society of Mechanical Engineers = Nondestruct Eval Eng Nondestructive Evaluation Engineering Division of The American Society of Mechanical Engineers = Nondestruct. Eval. Eng. Nondestructive Evaluation for Process Control in Manufacturing = P Soc Photo-opt Ins Nondestructive Evaluation for Process Control in Manufacturing = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Aircraft, Airports, Aerospace Hardware, and Materials = Proc Spie Nondestructive Evaluation of Aging Aircraft, Airports, Aerospace Hardware, and Materials = Proc. Spie. Nondestructive Evaluation of Aging Aircraft, Airports, Aerospace Hardware, and Materials = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Aircraft, Airports, Aerospace Hardware, and Materials = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iii = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Ii = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Ii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iv = Proc Spie Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iv = Proc. Spie. Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iv = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware Iv = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Aircraft, Airports, and Aerospace Hardware = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Bridges and Highways = Proc Spie Nondestructive Evaluation of Aging Bridges and Highways = Proc. Spie. Nondestructive Evaluation of Aging Bridges and Highways = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Bridges and Highways = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Maritime Applications = Proc Spie Nondestructive Evaluation of Aging Maritime Applications = Proc. Spie. Nondestructive Evaluation of Aging Maritime Applications = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Maritime Applications = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Materials and Composites Iii = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Materials and Composites Iii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Materials and Composites Iv = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Materials and Composites Iv = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Railroads = Proc Spie Nondestructive Evaluation of Aging Railroads = Proc. Spie. Nondestructive Evaluation of Aging Railroads = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Railroads = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Structures and Dams = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Structures and Dams = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Aging Utilities = Proc Spie Nondestructive Evaluation of Aging Utilities = Proc. Spie. Nondestructive Evaluation of Aging Utilities = P Soc Photo-opt Ins Nondestructive Evaluation of Aging Utilities = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Bridges and Highways Iii = P Soc Photo-opt Ins Nondestructive Evaluation of Bridges and Highways Iii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Bridges and Highways = P Soc Photo-opt Ins Nondestructive Evaluation of Bridges and Highways = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Ceramics = Ceram Trans Nondestructive Evaluation of Ceramics = Ceram. Trans. Nondestructive Evaluation of Highways, Utilities, and Pipelines Iv = Proc Spie Nondestructive Evaluation of Highways, Utilities, and Pipelines Iv = Proc. Spie. Nondestructive Evaluation of Highways, Utilities, and Pipelines Iv = P Soc Photo-opt Ins Nondestructive Evaluation of Highways, Utilities, and Pipelines Iv = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Materials and Composites Ii = P Soc Photo-opt Ins Nondestructive Evaluation of Materials and Composites Ii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Materials and Composites = P Soc Photo-opt Ins Nondestructive Evaluation of Materials and Composites = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Materials and Composites V = P Soc Photo-opt Ins Nondestructive Evaluation of Materials and Composites V = P. Soc. Photo-opt. Ins. Non-destructive Evaluation of Reinforced Concrete Structures, Volume 1, Deterioration Processes and Standard Test Methods = Woodhead Publ Mater Non-destructive Evaluation of Reinforced Concrete Structures, Volume 1, Deterioration Processes and Standard Test Methods = Woodhead. Publ. Mater. Non-destructive Evaluation of Reinforced Concrete Structures, Volume 2: Non-destructive Testing Methods = Woodhead Publ Mater Non-destructive Evaluation of Reinforced Concrete Structures, Volume 2: Non-destructive Testing Methods = Woodhead. Publ. Mater. Nondestructive Evaluation of Utilities and Pipelines Iii = P Soc Photo-opt Ins Nondestructive Evaluation of Utilities and Pipelines Iii = P. Soc. Photo-opt. Ins. Nondestructive Evaluation of Utilities and Pipelines Ii = Spie Proc Ser Nondestructive Evaluation of Utilities and Pipelines Ii = Spie. Proc. Ser. Nondestructive Evaluation of Utilities and Pipelines = P Soc Photo-opt Ins Nondestructive Evaluation of Utilities and Pipelines = P. Soc. Photo-opt. Ins. Nondestructive Inspection of Aging Aircraft = P Soc Photo-opt Ins Nondestructive Inspection of Aging Aircraft = P. Soc. Photo-opt. Ins. Nondestructive Methods for Materials Characterization = Mater Res Soc Symp P Nondestructive Methods for Materials Characterization = Mater. Res. Soc. Symp. P. Nondestructive Monitoring of Materials Properties = Mater Res Soc Symp P Nondestructive Monitoring of Materials Properties = Mater. Res. Soc. Symp. P. Nondestructive Sensing for Food Safety, Quality, and Natural Resources = P Soc Photo-opt Ins Nondestructive Sensing for Food Safety, Quality, and Natural Resources = P. Soc. Photo-opt. Ins. Nondestructive Testing and Evaluation = Nondestruct Test Eva Nondestructive Testing and Evaluation = Nondestruct. Test. Eva. Nondestructive Testing: Methods, Analyses and Applications = Mech Eng Theor Appl Nondestructive Testing: Methods, Analyses and Applications = Mech. Eng. Theor. Appl. Non-Destructive Testing = Non-Destr. Test. Non-destructive Testing = Non-destruct Test Non-destructive Testing = Non-destruct. Test. Nondestructive Testing of Materials = Stud Appl Electromag Nondestructive Testing of Materials = Stud. Appl. Electromag. Nondestructive Testing of Pavements and Backcalculation of Moduli, 2nd Vol = Am Soc Test Mater Nondestructive Testing of Pavements and Backcalculation of Moduli, 2nd Vol = Am. Soc. Test. Mater. Nondestructive Testing of Pavements and Backcalculation of Moduli, 3rd Volume = Am Soc Test Mater Nondestructive Testing of Pavements and Backcalculation of Moduli, 3rd Volume = Am. Soc. Test. Mater. Nondestructive Testing Standards - Present and Future = Am Soc Test Mater Nondestructive Testing Standards - Present and Future = Am. Soc. Test. Mater. Non-dietary Human Exposure and Risk Assessment = Acs Sym Ser Non-dietary Human Exposure and Risk Assessment = Acs. Sym. Ser. Nonelliptic Partial Differential Equations: Analytic Hypoellipticity and The Courage to Localize High Powers of T = Dev Math Nonelliptic Partial Differential Equations: Analytic Hypoellipticity and The Courage to Localize High Powers of T = Dev. Math. None of The Above: Puerto Ricans in The Global Era = New Dir Lat Am Cult None of The Above: Puerto Ricans in The Global Era = New. Dir. Lat. Am. Cult. Nonequilibrium and Nonlinear Dynamics in Nuclear and Other Finite Systems = Aip Conf Proc Nonequilibrium and Nonlinear Dynamics in Nuclear and Other Finite Systems = Aip. Conf. Proc. Nonequilibrium Carrier Dynamics in Semiconductors Proceedings = Springer Proc Phys Nonequilibrium Carrier Dynamics in Semiconductors Proceedings = Springer. Proc. Phys. Nonequilibrium Materials = Key Eng Mat Nonequilibrium Materials = Key. Eng. Mat. Nonequilibrium Materials = Key Eng Mater Nonequilibrium Materials = Key. Eng. Mater. Non-equilibrium Nano-physics: A Many-body Approach = Lect Notes Phys Non-equilibrium Nano-physics: A Many-body Approach = Lect. Notes. Phys. Non-equilibrium Phase Transitions, Vol 2: Ageing and Dynamical Scaling Far From Equilibrium = Theor Math Phys Ser Non-equilibrium Phase Transitions, Vol 2: Ageing and Dynamical Scaling Far From Equilibrium = Theor. Math. Phys. Ser. Non-equilibrium Phase Transitions, Vol I = Theor Math Phys Ser Non-equilibrium Phase Transitions, Vol I = Theor. Math. Phys. Ser. Nonequilibrium Phenomena in Plasmas = Astrophys Space Sc L Nonequilibrium Phenomena in Plasmas = Astrophys. Space. Sc. L. Nonequilibrium Processes in Partially Ionized Gases = Nato Adv Sci I B-phy Nonequilibrium Processes in Partially Ionized Gases = Nato. Adv. Sci. I. B-phy. Non-equilibrium Reacting Gas Flows: Kinetic Theory of Transport and Relaxation Processes = Heat Mass Transf Non-equilibrium Reacting Gas Flows: Kinetic Theory of Transport and Relaxation Processes = Heat. Mass. Transf. Nonequilibrium Statistical Mechanics and Nonlinear Physics = Aip Conf Proc Nonequilibrium Statistical Mechanics and Nonlinear Physics = Aip. Conf. Proc. Non-equilibrium Statistical Physics Today = Aip Conf Proc Non-equilibrium Statistical Physics Today = Aip. Conf. Proc. Non-euclidean Geometries = Math Appl Non-euclidean Geometries = Math. Appl. Nonextensive Entropy: Interdisciplinary Applications = Sfi S Sci C Nonextensive Entropy: Interdisciplinary Applications = Sfi. S. Sci. C. Non-ferrous Pyrometallurgy : Trace Metals, Furnace Practices and Energy Efficiency = Cim An Conf Non-ferrous Pyrometallurgy : Trace Metals, Furnace Practices and Energy Efficiency = Cim. An. Conf. Non-ferrous Smelting Symposium = Aust I Min Non-ferrous Smelting Symposium = Aust. I. Min. Non-financial Performance Measurement and Management Practices in Manufacturing Firms: Comparative International Analysis = Stud Manag Financ Ac Non-financial Performance Measurement and Management Practices in Manufacturing Firms: Comparative International Analysis = Stud. Manag. Financ. Ac. Non-finite Complementation: A Usage-based Study of Infinitive and -ing Clauses in English = Lang Comput Non-finite Complementation: A Usage-based Study of Infinitive and -ing Clauses in English = Lang. Comput. Non-formal Education: Flexible Schooling Or Participatory Education = Cerc Stud Comp Educ Non-formal Education: Flexible Schooling Or Participatory Education = Cerc. Stud. Comp. Educ. Non-governmental Organizations and Development = Routl Perspect Dev Non-governmental Organizations and Development = Routl. Perspect. Dev. Non-governmental Organizations in China: The Rise of Dependent Autonomy = China Policy Ser Non-governmental Organizations in China: The Rise of Dependent Autonomy = China. Policy. Ser. Nong ye sheng wu ji shu xue bao = Journal of agricultural biotechnology|Nong Ye Sheng Wu Ji Shu Xue Bao Non-hodgkins Lymphoma - A European Portrait = Res Clin Forums Non-hodgkins Lymphoma - A European Portrait = Res. Clin. Forums. Nonimaging Optics and Efficient Illumination Systems Iii = P Soc Photo-opt Ins Nonimaging Optics and Efficient Illumination Systems Iii = P. Soc. Photo-opt. Ins. Nonimaging Optics and Efficient Illumination Systems Iv = P Soc Photo-opt Ins Nonimaging Optics and Efficient Illumination Systems Iv = P. Soc. Photo-opt. Ins. Nonimaging Optics and Efficient Illumination Systems = P Soc Photo-opt Ins Nonimaging Optics and Efficient Illumination Systems = P. Soc. Photo-opt. Ins. Nonimaging Optics and Efficient Illumination Systems V = P Soc Photo-opt Ins Nonimaging Optics and Efficient Illumination Systems V = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum Efficiency Light Transfer Iii = P Soc Photo-opt Ins Nonimaging Optics: Maximum Efficiency Light Transfer Iii = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum-efficiency Light Transfer Ii = P Soc Photo-opt Ins Nonimaging Optics: Maximum-efficiency Light Transfer Ii = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum Efficiency Light Transfer Iv = P Soc Photo-opt Ins Nonimaging Optics: Maximum Efficiency Light Transfer Iv = P. Soc. Photo-opt. Ins. Nonimaging Optics : Maximum Efficiency Light Transfer = P Soc Photo-opt Ins Nonimaging Optics : Maximum Efficiency Light Transfer = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum Efficiency Light Transfer Vii = Proc Spie Nonimaging Optics: Maximum Efficiency Light Transfer Vii = Proc. Spie. Nonimaging Optics: Maximum Efficiency Light Transfer Vii = P Soc Photo-opt Ins Nonimaging Optics: Maximum Efficiency Light Transfer Vii = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum Efficiency Light Transfer Vi = P Soc Photo-opt Ins Nonimaging Optics: Maximum Efficiency Light Transfer Vi = P. Soc. Photo-opt. Ins. Nonimaging Optics: Maximum Efficiency Light Transfer V = P Soc Photo-opt Ins Nonimaging Optics: Maximum Efficiency Light Transfer V = P. Soc. Photo-opt. Ins. Nonintrusive Inspection, Structures Monitoring, and Smart Systems for Homeland Security = P Soc Photo-opt Ins Nonintrusive Inspection, Structures Monitoring, and Smart Systems for Homeland Security = P. Soc. Photo-opt. Ins. Non-intrusive Inspection Technologies = P Soc Photo-opt Ins Non-intrusive Inspection Technologies = P. Soc. Photo-opt. Ins. Noninvasive Assessment of Trabecular Bone Architecture and The Competence of Bone = Adv Exp Med Biol Noninvasive Assessment of Trabecular Bone Architecture and The Competence of Bone = Adv. Exp. Med. Biol. Noninvasive Techniques in Biology and Medicine = Lov Med Fdn Noninvasive Techniques in Biology and Medicine = Lov. Med. Fdn. Noninvasive Ventilation, 2nd Edition = Eur Respir Monogr Noninvasive Ventilation, 2nd Edition = Eur. Respir. Monogr. Non-ionic Surfactants = Chem Eng Method Tech Non-ionic Surfactants = Chem. Eng. Method. Tech. Nonisotropic and Variable Outflows From Stars = Astr Soc P Nonisotropic and Variable Outflows From Stars = Astr. Soc. P. Non-life Insurance Mathematics, Second Edition = Universitext Non-life Insurance Mathematics, Second Edition = Universitext. Nonlinear Acoustics At The Turn of The Millennium = Aip Conf Proc Nonlinear Acoustics At The Turn of The Millennium = Aip. Conf. Proc. Nonlinear Acoustics Fundamentals and Applications = Aip Conf Proc Nonlinear Acoustics Fundamentals and Applications = Aip. Conf. Proc. Nonlinear Analyses and Algorithms for Speech Processing = Lect Notes Artif Int Nonlinear Analyses and Algorithms for Speech Processing = Lect. Notes. Artif. Int. Nonlinear Analysis and Its Applications to Differential Equations = Prog Nonlin Nonlinear Analysis and Its Applications to Differential Equations = Prog. Nonlin. Nonlinear Analysis and Its Applications to Differential Equations = Prog Nonlinear Diffe Nonlinear Analysis and Its Applications to Differential Equations = Prog. Nonlinear Diffe. Nonlinear Analysis and Optimization Ii: Optimization = Contemp Math Nonlinear Analysis and Optimization Ii: Optimization = Contemp. Math. Nonlinear Analysis and Optimization I: Nonlinear Analysis = Contemp Math Nonlinear Analysis and Optimization I: Nonlinear Analysis = Contemp. Math. Nonlinear Analysis and Synthesis Techniques for Aircraft Control = Lect Notes Contr Inf Nonlinear Analysis and Synthesis Techniques for Aircraft Control = Lect. Notes. Contr. Inf. Nonlinear Analysis and Variational Problems = Springer Ser Optim A Nonlinear Analysis and Variational Problems = Springer. Ser. Optim. A. Nonlinear Analysis, Differential Equations and Control = Nato Adv Sci I C-mat Nonlinear Analysis, Differential Equations and Control = Nato. Adv. Sci. I. C-mat. Nonlinear Analysis Forum = Nonlinear Anal. Forum Nonlinear Analysis, Function Spaces and Applications, Vol 4 = Teub Text M Nonlinear Analysis, Function Spaces and Applications, Vol 4 = Teub. Text. M. Nonlinear Analysis: Hybrid Systems = Nonlinear Anal. Hybrid Syst Nonlinear Analysis-modelling and Control = Nonlinear Anal-model Nonlinear Analysis-modelling and Control = Nonlinear Anal-model. Nonlinear Analysis = Nonlinear Anal. Nonlinear Analysis-real World Applications = Nonlinear Anal-real Nonlinear Analysis-real World Applications = Nonlinear Anal-real. Nonlinear Analysis: Real World Applications = Nonlinear Anal. Real World Appl. Nonlinear Analysis-theory Methods & Applications = Nonlinear Anal-theor Nonlinear Analysis-theory Methods & Applications = Nonlinear Anal-theor. Nonlinear Analysis: Theory Methods & Applications = Nonlinear Anal. Theory Methods Appl. Nonlinear and Adaptive Control, Ncn4 2001 = Lect Notes Contr Inf Nonlinear and Adaptive Control, Ncn4 2001 = Lect. Notes. Contr. Inf. Nonlinear and Adaptive Control With Applications = Commun Control Eng Nonlinear and Adaptive Control With Applications = Commun. Control Eng. Nonlinear and Coherent Optics - Lasers Optics '98 = P Soc Photo-opt Ins Nonlinear and Coherent Optics - Lasers Optics '98 = P. Soc. Photo-opt. Ins. Nonlinear and Collective Phenomena in Beam Physics 1998 Workshop = Aip Conf Proc Nonlinear and Collective Phenomena in Beam Physics 1998 Workshop = Aip. Conf. Proc. Nonlinear and Collective Phenomena in Beam Physics = Aip Conf Proc Nonlinear and Collective Phenomena in Beam Physics = Aip. Conf. Proc. Nonlinear and Electro-optic Materials for Optical Switching = P Soc Photo-opt Ins Nonlinear and Electro-optic Materials for Optical Switching = P. Soc. Photo-opt. Ins. Nonlinear and Modern Mathematical Physics = Aip Conf Proc Nonlinear and Modern Mathematical Physics = Aip. Conf. Proc. Nonlinear and Optimal Control Theory = Lect Notes Math Nonlinear and Optimal Control Theory = Lect. Notes. Math. Nonlinear and Relativistic Effects in Plasmas = Res Tr Phys Nonlinear and Relativistic Effects in Plasmas = Res. Tr. Phys. Nonlinear Astrophysical Fluid Dynamics = Ann Ny Acad Sci Nonlinear Astrophysical Fluid Dynamics = Ann. Ny. Acad. Sci. Nonlinear biomedical physics = Nonlinear Biomed Phys Nonlinear Coherent Structures in Physics and Biology = Nato Adv Sci Inst Se Nonlinear Coherent Structures in Physics and Biology = Nato. Adv. Sci. Inst. Se. Nonlinear Coherent Structures = Lect Notes Phys Nonlinear Coherent Structures = Lect. Notes. Phys. Nonlinear Computational Geometry = Ima V Math Nonlinear Computational Geometry = Ima. V. Math. Nonlinear Computational Geometry = Ima Vol Math Appl Nonlinear Computational Geometry = Ima. Vol. Math. Appl. Nonlinear Continuum Mechanics and Large Inelastic Deformations = Solid Mech Appl Nonlinear Continuum Mechanics and Large Inelastic Deformations = Solid. Mech. Appl. Non-linear Control Based On Physical Models = Lect Notes Contr Inf Non-linear Control Based On Physical Models = Lect. Notes. Contr. Inf. Nonlinear Control in The Year 2000, Vol 1 = Lect Notes Contr Inf Nonlinear Control in The Year 2000, Vol 1 = Lect. Notes. Contr. Inf. Nonlinear Control in The Year 2000, Vol 2 = Lect Notes Contr Inf Nonlinear Control in The Year 2000, Vol 2 = Lect. Notes. Contr. Inf. Nonlinear Controllability and Optimal Control = Pure A Math Nonlinear Controllability and Optimal Control = Pure. A. Math. Nonlinear Control of Vehicles and Robots = Adv Ind Control Nonlinear Control of Vehicles and Robots = Adv. Ind. Control Nonlinear Control of Wheeled Mobile Robots = Lect Notes Contr Inf Nonlinear Control of Wheeled Mobile Robots = Lect. Notes. Contr. Inf. Nonlinear Control Systems 2001, Vols 1-3 = Ifac Symp Series Nonlinear Control Systems 2001, Vols 1-3 = Ifac. Symp. Series. Nonlinear Control Systems Design 1992 = Ifac Symp Series Nonlinear Control Systems Design 1992 = Ifac. Symp. Series. Nonlinear Deformable-body Dynamics = Nonlinear Phys Sci Nonlinear Deformable-body Dynamics = Nonlinear Phys. Sci. Nonlinear Dielectric Phenomena in Complex Liquids = Nato Sci Ser Ii-math Nonlinear Dielectric Phenomena in Complex Liquids = Nato. Sci. Ser. Ii-math. Nonlinear Dielectric Phenomena in Complex Liquids = Nato Sci Ser Ii Math Nonlinear Dielectric Phenomena in Complex Liquids = Nato. Sci. Ser. Ii. Math. Nonlinear Differential Equations of Monotone Types in Banach Spaces = Springer Monogr Math Nonlinear Differential Equations of Monotone Types in Banach Spaces = Springer. Monogr. Math. Nonlinear Dimensionality Reduction = Inform Sci Stat Nonlinear Dimensionality Reduction = Inform. Sci. Stat. Nonlinear Discrete Optimization: An Algorithmic Theory = Zur Lect Adv Math Nonlinear Discrete Optimization: An Algorithmic Theory = Zur. Lect. Adv. Math. Nonlinear Dynamical Systems and Chaos = Prog Nonlin Nonlinear Dynamical Systems and Chaos = Prog. Nonlin. Nonlinear Dynamics and Chaos in Astrophysics: Festschrift in Honor of George Contopoulos = Ann Ny Acad Sci Nonlinear Dynamics and Chaos in Astrophysics: Festschrift in Honor of George Contopoulos = Ann. Ny. Acad. Sci. Nonlinear Dynamics and Evolution Equations = Fields I Commun Nonlinear Dynamics and Evolution Equations = Fields. I. Commun. Nonlinear Dynamics and Evolution Equations = Fields Inst Commun Nonlinear Dynamics and Evolution Equations = Fields. Inst. Commun. Non-linear Dynamics and Fundamental Interactions = Nato Sci Ser Ii-math Non-linear Dynamics and Fundamental Interactions = Nato. Sci. Ser. Ii-math. Non-linear Dynamics and Fundamental Interactions = Nato Sci Ser Ii Math Non-linear Dynamics and Fundamental Interactions = Nato. Sci. Ser. Ii. Math. Nonlinear Dynamics and Heterogeneous Interacting Agents = Lect Notes Econ Math Nonlinear Dynamics and Heterogeneous Interacting Agents = Lect. Notes. Econ. Math. Nonlinear Dynamics and Neuronal Networks = Nonlin Syst Nonlinear Dynamics and Neuronal Networks = Nonlin. Syst. Nonlinear Dynamics and Particle Acceleration = Aip Conf Proc Nonlinear Dynamics and Particle Acceleration = Aip. Conf. Proc. Nonlinear Dynamics and Pattern Formation in Semiconductors and Devices = Springer Proc Phys Nonlinear Dynamics and Pattern Formation in Semiconductors and Devices = Springer. Proc. Phys. Nonlinear Dynamics and Spatial Complexity in Optical Systems = Sussp Proc Nonlinear Dynamics and Spatial Complexity in Optical Systems = Sussp. Proc. Nonlinear Dynamics: Between Linear and Impact Limits = Lect Notes Appl Comp Nonlinear Dynamics: Between Linear and Impact Limits = Lect. Notes. Appl. Comp. Nonlinear Dynamics in Astronomy and Physics = Ann Ny Acad Sci Nonlinear Dynamics in Astronomy and Physics = Ann. Ny. Acad. Sci. Nonlinear Dynamics in Human Behavior = Stud Comput Intell Nonlinear Dynamics in Human Behavior = Stud. Comput. Intell. Nonlinear Dynamics in Lasers and Optical Systems = P Soc Photo-opt Ins Nonlinear Dynamics in Lasers and Optical Systems = P. Soc. Photo-opt. Ins. Nonlinear Dynamics in Lasers = P Soc Photo-opt Ins Nonlinear Dynamics in Lasers = P. Soc. Photo-opt. Ins. Nonlinear Dynamics in Particle Accelerators: Theory and Experiments = Aip Conf Proc Nonlinear Dynamics in Particle Accelerators: Theory and Experiments = Aip. Conf. Proc. Nonlinear Dynamics in Polymeric Systems = Acs Sym Ser Nonlinear Dynamics in Polymeric Systems = Acs. Sym. Ser. Nonlinear Dynamics in The Life and Social Sciences = Nato Sci S A Lif Sci Nonlinear Dynamics in The Life and Social Sciences = Nato. Sci. S. A. Lif. Sci. Nonlinear Dynamics = Nonlinear Dyn. Nonlinear Dynamics = Nonlinear Dynam. Nonlinear Dynamics = Nonlinear Dynam Nonlinear Dynamics = Nonlinear Dynam. Nonlinear Dynamics Psychology and Life Sciences = Nonlin Dynam Psychol Nonlinear Dynamics Psychology and Life Sciences = Nonlin. Dynam. Psychol. Nonlinear dynamics, psychology, and life sciences = Nonlinear Dynamics Psychol Life Sci Nonlinear Dynamics, Psychology, and Life Sciences=Nonlinear Dynam., Psych., and Life Sci. Non-linear Electromagnetic Systems = Stud Appl Electromag Non-linear Electromagnetic Systems = Stud. Appl. Electromag. Nonlinear Electromagnetic Systems = Stud Appl Electromag Nonlinear Electromagnetic Systems = Stud. Appl. Electromag. Non-linear Electromechanics = Found Eng Mech Non-linear Electromechanics = Found. Eng. Mech. Nonlinear Elliptic and Parabolic Problems = Prog Nonlin Nonlinear Elliptic and Parabolic Problems = Prog. Nonlin. Nonlinear Elliptic Partial Differential Equations = Contemp Math Nonlinear Elliptic Partial Differential Equations = Contemp. Math. Nonlinear Equations: Methods, Models and Applications = Prog Nonlin Nonlinear Equations: Methods, Models and Applications = Prog. Nonlin. Nonlinear Estimation and Classification = Lect Notes Stat Nonlinear Estimation and Classification = Lect. Notes. Stat. Nonlinear Evolution Equations : Integrability and Spectral Methods = Proc Nonlin Nonlinear Evolution Equations : Integrability and Spectral Methods = Proc. Nonlin. Nonlinear Evolution of Spatio-temporal Structures in Dissipative Continuous Systems = Nato Adv Sci I B-phy Nonlinear Evolution of Spatio-temporal Structures in Dissipative Continuous Systems = Nato. Adv. Sci. I. B-phy. Nonlinear Frequency Generation and Conversion: Materials Devices, and Applications Iii = Spr Hdb Aud Nonlinear Frequency Generation and Conversion: Materials Devices, and Applications Iii = Spr. Hdb. Aud. Nonlinear Frequency Generation and Conversion: Materials Devices, and Applications Iii = Springer Handb Audit Nonlinear Frequency Generation and Conversion: Materials Devices, and Applications Iii = Springer. Handb. Audit. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Ii = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Iv = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Iv = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Ix = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Ix = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Viii = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Viii = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vii = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vii = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vi = Proc Spie Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vi = Proc. Spie. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vi = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications Vi = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications V = Proc Spie Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications V = Proc. Spie. Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications V = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion: Materials, Devices, and Applications V = P. Soc. Photo-opt. Ins. Nonlinear Frequency Generation and Conversion = P Soc Photo-opt Ins Nonlinear Frequency Generation and Conversion = P. Soc. Photo-opt. Ins. Nonlinear Homogenization and Its Applications to Composites, Polycrystals and Smart Materials = Nato Sci Ser Ii-math Nonlinear Homogenization and Its Applications to Composites, Polycrystals and Smart Materials = Nato. Sci. Ser. Ii-math. Nonlinear Homogenization and Its Applications to Composites, Polycrystals and Smart Materials = Nato Sci Ser Ii Math Nonlinear Homogenization and Its Applications to Composites, Polycrystals and Smart Materials = Nato. Sci. Ser. Ii. Math. Nonlinear Hyperbolic Equations and Field Theory = Pitman Res Nonlinear Hyperbolic Equations and Field Theory = Pitman. Res. Nonlinear Hyperbolic Problems / = Lect Notes Math Nonlinear Hyperbolic Problems / = Lect. Notes. Math. Nonlinear Hyperbolic Problems: Theoretical, Applied, and Computational Aspects = Note Num Fl Nonlinear Hyperbolic Problems: Theoretical, Applied, and Computational Aspects = Note. Num. Fl. Nonlinear Image Processing and Pattern Analysis Xii = Proc Spie Nonlinear Image Processing and Pattern Analysis Xii = Proc. Spie. Nonlinear Image Processing and Pattern Analysis Xii = P Soc Photo-opt Ins Nonlinear Image Processing and Pattern Analysis Xii = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Iii = P Soc Photo-opt Ins Nonlinear Image Processing Iii = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Ii = P Soc Photo-opt Ins Nonlinear Image Processing Ii = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Iv = P Soc Photo-opt Ins Nonlinear Image Processing Iv = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Ix = P Soc Photo-opt Ins Nonlinear Image Processing Ix = P. Soc. Photo-opt. Ins. Nonlinear Image Processing = P Soc Photo-opt Ins Nonlinear Image Processing = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Viii = P Soc Photo-opt Ins Nonlinear Image Processing Viii = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Vii = P Soc Photo-opt Ins Nonlinear Image Processing Vii = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Vi = P Soc Photo-opt Ins Nonlinear Image Processing Vi = P. Soc. Photo-opt. Ins. Nonlinear Image Processing V = P Soc Photo-opt Ins Nonlinear Image Processing V = P. Soc. Photo-opt. Ins. Nonlinear Image Processing Xi = P Soc Photo-opt Ins Nonlinear Image Processing Xi = P. Soc. Photo-opt. Ins. Nonlinear Image Processing X = P Soc Photo-opt Ins Nonlinear Image Processing X = P. Soc. Photo-opt. Ins. Nonlinearity in biology, toxicology, medicine = Nonlinearity Biol Toxicol Med Nonlinearity = Nonlinearity Nonlinearity = Nonlinearity Nonlinear Least Squares for Inverse Problems: Theoretical Foundations and Step-by-step Guide for Applications = Sci Comput Nonlinear Least Squares for Inverse Problems: Theoretical Foundations and Step-by-step Guide for Applications = Sci. Comput. Nonlinear Materials Devices, and Applications = P Soc Photo-opt Ins Nonlinear Materials Devices, and Applications = P. Soc. Photo-opt. Ins. Nonlinear Materials: Growth, Characterization, Devices and Applications = P Soc Photo-opt Ins Nonlinear Materials: Growth, Characterization, Devices and Applications = P. Soc. Photo-opt. Ins. Nonlinear Mechanics of Crystals = Solid Mech Appl Nonlinear Mechanics of Crystals = Solid. Mech. Appl. Non-linear Mechanics of Materials = Solid Mech Appl Non-linear Mechanics of Materials = Solid. Mech. Appl. Nonlinear Mhd Waves and Turbulence = Lect Notes Phys Nonlinear Mhd Waves and Turbulence = Lect. Notes. Phys. Nonlinear Microwave Signal Processing: Towards A New Range of Devices = Nato Asi 3 High Tech Nonlinear Microwave Signal Processing: Towards A New Range of Devices = Nato. Asi. 3. High. Tech. Nonlinear Model Based Process Control = Nato Adv Sci I E-app Nonlinear Model Based Process Control = Nato. Adv. Sci. I. E-app. Nonlinear Model Predictive Control = Prog Syst C Nonlinear Model Predictive Control = Prog. Syst. C. Nonlinear Model Predictive Control:theory and Algorithms = Commun Control Eng Nonlinear Model Predictive Control:theory and Algorithms = Commun. Control. Eng. Nonlinear Model Predictive Control: Towards New Challenging Applications = Lect Notes Contr Inf Nonlinear Model Predictive Control: Towards New Challenging Applications = Lect. Notes. Contr. Inf. Nonlinear Numerical Methods and Rational Approximation Ii = Math Appl Nonlinear Numerical Methods and Rational Approximation Ii = Math. Appl. Nonlinear Observers and Applications = Lect Notes Contr Inf Nonlinear Observers and Applications = Lect. Notes. Contr. Inf. Nonlinear Optical Beam Manipulation and High Energy Beam Propagation Through The Atmosphere = P Soc Photo-opt Ins Nonlinear Optical Beam Manipulation and High Energy Beam Propagation Through The Atmosphere = P. Soc. Photo-opt. Ins. Nonlinear Optical Effects in Organic Polymers = Nato Adv Sci I E-app Nonlinear Optical Effects in Organic Polymers = Nato. Adv. Sci. I. E-app. Nonlinear Optical Engineering = P Soc Photo-opt Ins Nonlinear Optical Engineering = P. Soc. Photo-opt. Ins. Nonlinear Optical Interactions and Wave Dynamics = P Soc Photo-opt Ins Nonlinear Optical Interactions and Wave Dynamics = P. Soc. Photo-opt. Ins. Nonlinear Optical Liquids and Power Limiters = P Soc Photo-opt Ins Nonlinear Optical Liquids and Power Limiters = P. Soc. Photo-opt. Ins. Nonlinear Optical Liquids for Power Limiting and Imaging = P Soc Photo-opt Ins Nonlinear Optical Liquids for Power Limiting and Imaging = P. Soc. Photo-opt. Ins. Nonlinear Optical Liquids = P Soc Photo-opt Ins Nonlinear Optical Liquids = P. Soc. Photo-opt. Ins. Nonlinear Optical Materials = Acs Sym Ser Nonlinear Optical Materials = Acs. Sym. Ser. Nonlinear Optical Materials and Devices for Photonic Switching = P Soc Photo-opt Ins Nonlinear Optical Materials and Devices for Photonic Switching = P. Soc. Photo-opt. Ins. Nonlinear Optical Materials for Switching and Limiting = P Soc Photo-opt Ins Nonlinear Optical Materials for Switching and Limiting = P. Soc. Photo-opt. Ins. Nonlinear Optical Materials Iii = P Soc Photo-opt Ins Nonlinear Optical Materials Iii = P. Soc. Photo-opt. Ins. Nonlinear Optical Materials Ii = P Soc Photo-opt Ins Nonlinear Optical Materials Ii = P. Soc. Photo-opt. Ins. Nonlinear Optical Materials: Principles and Applications = P Int Sch Phys Nonlinear Optical Materials: Principles and Applications = P. Int. Sch. Phys. Nonlinear Optical Phenomena and Applications = Proc Spie Nonlinear Optical Phenomena and Applications = Proc. Spie. Nonlinear Optical Phenomena and Applications = P Soc Photo-opt Ins Nonlinear Optical Phenomena and Applications = P. Soc. Photo-opt. Ins. Nonlinear Optical Phenomena and Coherent Optics in Information Technologies - Icono'98 = Proc Spie Nonlinear Optical Phenomena and Coherent Optics in Information Technologies - Icono'98 = Proc. Spie. Nonlinear Optical Phenomena and Coherent Optics in Information Technologies - Icono'98 = P Soc Photo-opt Ins Nonlinear Optical Phenomena and Coherent Optics in Information Technologies - Icono'98 = P. Soc. Photo-opt. Ins. Nonlinear Optical Processes in Solids = P Soc Photo-opt Ins Nonlinear Optical Processes in Solids = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Advanced Materials = P Soc Photo-opt Ins Nonlinear Optical Properties of Advanced Materials = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Materials = P Soc Photo-opt Ins Nonlinear Optical Properties of Materials = P. Soc. Photo-opt. Ins. Non-linear Optical Properties of Matter: From Molecules to Condensed Phases = Chall Adv Comput Che Non-linear Optical Properties of Matter: From Molecules to Condensed Phases = Chall. Adv. Comput. Che. Nonlinear Optical Properties of Organic Materials Iii = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Iii = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Ii = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Ii = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Iv = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Iv = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Ix = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Ix = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Viii = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Viii = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Vii = Proc Spie Nonlinear Optical Properties of Organic Materials Vii = Proc. Spie. Nonlinear Optical Properties of Organic Materials Vii = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Vii = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials Vi = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials Vi = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials V = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials V = P. Soc. Photo-opt. Ins. Nonlinear Optical Properties of Organic Materials X = P Soc Photo-opt Ins Nonlinear Optical Properties of Organic Materials X = P. Soc. Photo-opt. Ins. Nonlinear Optical Transmission and Multiphoton Processes in Organics Ii = P Soc Photo-opt Ins Nonlinear Optical Transmission and Multiphoton Processes in Organics Ii = P. Soc. Photo-opt. Ins. Nonlinear Optical Transmission and Multiphoton Processes in Organics Iv = P Soc Photo-opt Ins Nonlinear Optical Transmission and Multiphoton Processes in Organics Iv = P. Soc. Photo-opt. Ins. Nonlinear Optical Transmission and Multiphoton Processes in Organics = P Soc Photo-opt Ins Nonlinear Optical Transmission and Multiphoton Processes in Organics = P. Soc. Photo-opt. Ins. Nonlinear Optical Transmission Processes and Organic Photorefractive Materials = P Soc Photo-opt Ins Nonlinear Optical Transmission Processes and Organic Photorefractive Materials = P. Soc. Photo-opt. Ins. Nonlinear Optics and Applications Ii = Proc Spie Nonlinear Optics and Applications Ii = Proc. Spie. Nonlinear Optics and Applications Ii = P Soc Photo-opt Ins Nonlinear Optics and Applications Ii = P. Soc. Photo-opt. Ins. Nonlinear Optics and Applications Iv = Proc Spie Nonlinear Optics and Applications Iv = Proc. Spie. Nonlinear Optics and Applications Iv = P Soc Photo-opt Ins Nonlinear Optics and Applications Iv = P. Soc. Photo-opt. Ins. Nonlinear Optics and Applications V = Proc Spie Nonlinear Optics and Applications V = Proc. Spie. Nonlinear Optics and Applications V = P Soc Photo-opt Ins Nonlinear Optics and Applications V = P. Soc. Photo-opt. Ins. Nonlinear Optics and Materials = P Soc Photo-opt Ins Nonlinear Optics and Materials = P. Soc. Photo-opt. Ins. Nonlinear Optics for High-speed Electronics and Optical Frequency Conversion = P Soc Photo-opt Ins Nonlinear Optics for High-speed Electronics and Optical Frequency Conversion = P. Soc. Photo-opt. Ins. Nonlinear Optics Iii = P Soc Photo-opt Ins Nonlinear Optics Iii = P. Soc. Photo-opt. Ins. Nonlinear Optics in Semiconductors Ii = Semiconduct Semimet Nonlinear Optics in Semiconductors Ii = Semiconduct. Semimet. Nonlinear Optics in Semiconductors I = Semiconduct Semimet Nonlinear Optics in Semiconductors I = Semiconduct. Semimet. Nonlinear Optics: Materials, Fundamentals, and Applications = Osa Trends Opt Photo Nonlinear Optics: Materials, Fundamentals, and Applications = Osa. Trends. Opt. Photo. Nonlinear Optics of Liquid and Photorefractive Crystals Ii = Proc Spie Nonlinear Optics of Liquid and Photorefractive Crystals Ii = Proc. Spie. Nonlinear Optics of Liquid and Photorefractive Crystals Ii = P Soc Photo-opt Ins Nonlinear Optics of Liquid and Photorefractive Crystals Ii = P. Soc. Photo-opt. Ins. Nonlinear Optics of Liquid and Photorefractive Crystals = Proc Spie Nonlinear Optics of Liquid and Photorefractive Crystals = Proc. Spie. Nonlinear Optics of Liquid and Photorefractive Crystals = P Soc Photo-opt Ins Nonlinear Optics of Liquid and Photorefractive Crystals = P. Soc. Photo-opt. Ins. Nonlinear Optics of Low-dimensional Structures and New Materials - Icono '95 = P Soc Photo-opt Ins Nonlinear Optics of Low-dimensional Structures and New Materials - Icono '95 = P. Soc. Photo-opt. Ins. Nonlinear Optics of Random Media = Springer Tr Mod Phys Nonlinear Optics of Random Media = Springer. Tr. Mod. Phys. Nonlinear Optics: Principles, Materials, Phenomena, and Devices (series) = Nonlin Opt Prin Mat Nonlinear Optics: Principles, Materials, Phenomena, and Devices (series) = Nonlin. Opt. Prin. Mat. Nonlinear Optics = P Soc Photo-opt Ins Nonlinear Optics = P. Soc. Photo-opt. Ins. Nonlinear Optics / = P Soc Photo-opt Ins Nonlinear Optics / = P. Soc. Photo-opt. Ins. Nonlinear Optics: Technologies and Applications = P Soc Photo-opt Ins Nonlinear Optics: Technologies and Applications = P. Soc. Photo-opt. Ins. Nonlinear Optimization and Related Topics = Appl Optimizat Nonlinear Optimization and Related Topics = Appl. Optimizat. Nonlinear Optimization = Lect Notes Math Nonlinear Optimization = Lect. Notes. Math. Nonlinear Optimization With Engineering Applications = Springer Ser Optim A Nonlinear Optimization With Engineering Applications = Springer. Ser. Optim. A. Nonlinear Oscillations = Nonlinear Oscil Nonlinear Oscillations = Nonlinear Oscil. Nonlinear Parabolic-hyperbolic Coupled Systems and Their Attractors = Oper Theory Adv Appl Nonlinear Parabolic-hyperbolic Coupled Systems and Their Attractors = Oper. Theory. Adv. Appl. Nonlinear Partial Differential Equations and Hyperbolic Wave Phenomena = Contemp Math Nonlinear Partial Differential Equations and Hyperbolic Wave Phenomena = Contemp. Math. Nonlinear Partial Differential Equations and Their Applications - College De France Seminar Volume Xii = Pitman Res Nonlinear Partial Differential Equations and Their Applications - College De France Seminar Volume Xii = Pitman. Res. Nonlinear Partial Differential Equations: Asymptotic Behavior of Solutions and Self-similar Solutions = Prog Nonlinear Diffe Nonlinear Partial Differential Equations: Asymptotic Behavior of Solutions and Self-similar Solutions = Prog. Nonlinear Diffe. Nonlinear Partial Differential Equations in Geometry and Physics = Prog Nonlin Nonlinear Partial Differential Equations in Geometry and Physics = Prog. Nonlin. Nonlinear Pde's in Condensed Matter and Reactive Flows = Nato Adv Sci I C-mat Nonlinear Pde's in Condensed Matter and Reactive Flows = Nato. Adv. Sci. I. C-mat. Nonlinear Phenomena and Complex Systems = Nonlinear Phenom. Complex Systems Nonlinear Phenomena and Complex Systems = Nonl Phen Compl Syst Nonlinear Phenomena and Complex Systems = Nonl. Phen. Compl. Syst. Nonlinear Phenomena in Fluids, Solids and Other Complex Systems = N-holland D Nonlinear Phenomena in Fluids, Solids and Other Complex Systems = N-holland. D. Nonlinear Phenomena in Physics of Fluids and Plasmas = P Enea Work Nonlinear Phenomena in Physics of Fluids and Plasmas = P. Enea. Work. Nonlinear Physical Science = Nonlinear Phys Sci Nonlinear Physical Science = Nonlinear Phys. Sci. Nonlinear Physics of Plasma = Springer Ser Atom Op Nonlinear Physics of Plasma = Springer. Ser. Atom. Op. Nonlinear Potential Theory and Weighted Sobolev Spaces = Lect Notes Math Nonlinear Potential Theory and Weighted Sobolev Spaces = Lect. Notes. Math. Nonlinear Problems in Accelerator Physics = Inst Phys Conf Ser Nonlinear Problems in Accelerator Physics = Inst. Phys. Conf. Ser. Nonlinear Problems in Engineering = P Enea Work Nonlinear Problems in Engineering = P. Enea. Work. Nonlinear Problems in Relativity and Cosmology = Ann Ny Acad Sci Nonlinear Problems in Relativity and Cosmology = Ann. Ny. Acad. Sci. Nonlinear Processes in Geophysics = Nonlinear Processes Geophys. Nonlinear Processes in Geophysics = Nonlinear Proc Geoph Nonlinear Processes in Geophysics = Nonlinear Proc. Geoph. Nonlinear Progamming: Concepts, Algorithms, and Applications to Chemical Processes = Mps-siam Ser Optimiz Nonlinear Progamming: Concepts, Algorithms, and Applications to Chemical Processes = Mps-siam. Ser. Optimiz. Nonlinear Pulsations and Hydrodynamics of Cepheids = Eas Publications Nonlinear Pulsations and Hydrodynamics of Cepheids = Eas. Publications. Nonlinear Regression With R = Use R Nonlinear Regression With R = Use. R Nonlinear Science and Complexity = Trans Nonlin Sci Com Nonlinear Science and Complexity = Trans. Nonlin. Sci. Com. Nonlinear Science At The Dawn of The 21st Century = Lect Notes Phys Nonlinear Science At The Dawn of The 21st Century = Lect. Notes. Phys. Nonlinear Science: The Challenge of Complex Systems = Springer Complex Nonlinear Science: The Challenge of Complex Systems = Springer. Complex Nonlinear Science Today = Nonlinear Sci. Today Nonlinear Science Today = Nonlinear Sci Today Nonlinear Science Today = Nonlinear Sci. Today Nonlinear Solid Mechanics = Solid Mech Appl Nonlinear Solid Mechanics = Solid Mech. Appl. Nonlinear Space Plasma Physics = Res Tr Phys Nonlinear Space Plasma Physics = Res. Tr. Phys. Nonlinear Spectral Theory = Degruyter Ser Nonlin Nonlinear Spectral Theory = Degruyter. Ser. Nonlin. Nonlinear Spectroscopy and Ultrafast Phenomena = P Soc Photo-opt Ins Nonlinear Spectroscopy and Ultrafast Phenomena = P. Soc. Photo-opt. Ins. Nonlinear Spectroscopy of Solids = Nato Adv Sci Inst Se Nonlinear Spectroscopy of Solids = Nato. Adv. Sci. Inst. Se. Nonlinear Spectroscopy = Proc Spie Nonlinear Spectroscopy = Proc. Spie. Nonlinear Spectroscopy = P Soc Photo-opt Ins Nonlinear Spectroscopy = P. Soc. Photo-opt. Ins. Nonlinear Speech Modeling and Applications = Lect Notes Artif Int Nonlinear Speech Modeling and Applications = Lect. Notes. Artif. Int. Nonlinear Stability of Structures = Cism Cour L Nonlinear Stability of Structures = Cism. Cour. L. Nonlinear Stochastic Pdes = Ima V Math Nonlinear Stochastic Pdes = Ima. V. Math. Nonlinear Structures in Physical Systems = Woodw Conf Nonlinear Structures in Physical Systems = Woodw. Conf. Nonlinear Studies = Nonlinear Stud. Nonlinear Systems : Concepts - Methods - Applications = Nonlin Syst Nonlinear Systems : Concepts - Methods - Applications = Nonlin. Syst. Nonlinear Targeted Energy Transfer in Mechanical and Structural Systems Ii = Solid Mech Appl Nonlinear Targeted Energy Transfer in Mechanical and Structural Systems Ii = Solid. Mech. Appl. Nonlinear Targeted Energy Transfer in Mechanical and Structural Systems I = Solid Mech Appl Nonlinear Targeted Energy Transfer in Mechanical and Structural Systems I = Solid. Mech. Appl. Nonlinear Theory of Generalized Functions = Ch Crc Res Notes Nonlinear Theory of Generalized Functions = Ch. Crc. Res. Notes. Nonlinear Theory of Generalized Functions = Ch Crc Res Notes Mat Nonlinear Theory of Generalized Functions = Ch. Crc. Res. Notes. Mat. Nonlinear Topographic Effects in The Ocean and Atmosphere = Atmos Ocean Sci Lib Nonlinear Topographic Effects in The Ocean and Atmosphere = Atmos. Ocean Sci. Lib. Nonlinear Vibration With Control: for Flexible and Adaptive Structures = Solid Mech Appl Nonlinear Vibration With Control: for Flexible and Adaptive Structures = Solid. Mech. Appl. Nonlinear Wave Processes in Excitable Media = Nato Adv Sci I B-phy Nonlinear Wave Processes in Excitable Media = Nato. Adv. Sci. I. B-phy. Nonlinear Waves and Weak Turbulence With Applications in Oceanography and Condensed Matter Physics = Prog Nonlin Nonlinear Waves and Weak Turbulence With Applications in Oceanography and Condensed Matter Physics = Prog. Nonlin. Nonlinear Waves: Classical and Quantum Aspects = Nato Sci Ser Ii-math Nonlinear Waves: Classical and Quantum Aspects = Nato. Sci. Ser. Ii-math. Nonlinear Waves: Classical and Quantum Aspects = Nato Sci Ser Ii Math Nonlinear Waves: Classical and Quantum Aspects = Nato. Sci. Ser. Ii. Math. Nonlinear Waves in Fluids: Recent Advances and Modern Applications = Cism Cour L Nonlinear Waves in Fluids: Recent Advances and Modern Applications = Cism. Cour. L. Nonlinear Waves in Integrable and Nonintegrable Systems = Math Model Comput Nonlinear Waves in Integrable and Nonintegrable Systems = Math. Model. Comput. Nonlinear Waves in Solid State Physics = Nato Adv Sci I B-phy Nonlinear Waves in Solid State Physics = Nato. Adv. Sci. I. B-phy. Nonlinear World = Nonlinear World Non-locality and Modality = Nato Sci Ser Ii-math Non-locality and Modality = Nato. Sci. Ser. Ii-math. Non-locality and Modality = Nato Sci Ser Ii Math Non-locality and Modality = Nato. Sci. Ser. Ii. Math. Non-lte Line Formation for Trace Elements in Stellar Atmospheres = Eas Publications Non-lte Line Formation for Trace Elements in Stellar Atmospheres = Eas. Publications. Nonmonotonic and Inductive Logic = Lect Notes Artif Int Nonmonotonic and Inductive Logic = Lect. Notes. Artif. Int. Non-monotonic Extensions of Logic Programming = Lect Notes Artif Int Non-monotonic Extensions of Logic Programming = Lect. Notes. Artif. Int. Non-native Language Teachers: Perceptions, Challenges and Contributions to The Profession = Educ Linguist Non-native Language Teachers: Perceptions, Challenges and Contributions to The Profession = Educ. Linguist. Non-negative Matrices and Markov Chains, Revised Printing = Springer Ser Stat Non-negative Matrices and Markov Chains, Revised Printing = Springer. Ser. Stat. Non-neoplastic Diseases of The Anorectum: An Interdisciplinary Approach = Falk Symp Non-neoplastic Diseases of The Anorectum: An Interdisciplinary Approach = Falk. Symp. Non-neoplastic Diseases of The Anorectum = Falk Symp Non-neoplastic Diseases of The Anorectum = Falk. Symp. Non-neutral Plasma Physics Ii = Aip Conf Proc Non-neutral Plasma Physics Ii = Aip. Conf. Proc. Non-neutral Plasma Physics Iii = Aip Conf Proc Non-neutral Plasma Physics Iii = Aip. Conf. Proc. Non-neutral Plasma Physics Iv = Aip Conf Proc Non-neutral Plasma Physics Iv = Aip. Conf. Proc. Non-neutral Plasma Physics V = Aip Conf Proc Non-neutral Plasma Physics V = Aip. Conf. Proc. Non-neutral Plasma Physics Vi = Aip Conf Proc Non-neutral Plasma Physics Vi = Aip. Conf. Proc. Non-neutral Plasma Physics Vii = Aip Conf Proc Non-neutral Plasma Physics Vii = Aip. Conf. Proc. Nonparametric Functional Estimation and Related Topics = Nato Adv Sci I C-mat Nonparametric Functional Estimation and Related Topics = Nato. Adv. Sci. I. C-mat. Nonperturbative Methods in Low Dimensional Quantum Field Theories = Johns Hop W Nonperturbative Methods in Low Dimensional Quantum Field Theories = Johns. Hop. W. Non-perturbative Particle Theory & Experimental Tests = Johns Hop W Non-perturbative Particle Theory & Experimental Tests = Johns. Hop. W. Non-point Water Quality Concerns - Legal and Regulatory Aspects = Asae Publ Non-point Water Quality Concerns - Legal and Regulatory Aspects = Asae. Publ. Nonprofit and Civil Society Studies: An International Multidisciplinary Series = Nonprof Civ Soc Stud Nonprofit and Civil Society Studies: An International Multidisciplinary Series = Nonprof. Civ. Soc. Stud. Nonprofit and Civil Society Studies-an International Multidisciplinary Series = Nonprofit Civ Soc St Nonprofit and Civil Society Studies-an International Multidisciplinary Series = Nonprofit Civ. Soc. St. Nonprofit and Voluntary Sector Quarterly = Nonprof Volunt Sec Q Nonprofit and Voluntary Sector Quarterly = Nonprof. Volunt. Sec. Q. Nonprofit Management and Leadership=Nonprofit Manage. Leadership Nonprofit Management and Leadership = Nonprofit Manag. Leadersh. Nonprofit Management & Leadership = Nonprofit Manag Lead Nonprofit Management & Leadership = Nonprofit Manag. Lead. Nonprofit management & leadership = Nonprofit Manag Leadersh Non-representational Theory = Int Libr Sociol Non-representational Theory = Int. Libr. Sociol. Non-reproductive Actions of Sex Steroids = Ciba F Symp Non-reproductive Actions of Sex Steroids = Ciba. F. Symp. Nonresonant Laser-matter Interaction (nlmi-10) = Proc Spie Nonresonant Laser-matter Interaction (nlmi-10) = Proc. Spie. Nonresonant Laser-matter Interaction (nlmi-10) = P Soc Photo-opt Ins Nonresonant Laser-matter Interaction (nlmi-10) = P. Soc. Photo-opt. Ins. Nonresonant Laser-matter Interaction (nlmi-11) = P Soc Photo-opt Ins Nonresonant Laser-matter Interaction (nlmi-11) = P. Soc. Photo-opt. Ins. Nonresonant Laser-matter Interaction (nlmi-9) = P Soc Photo-opt Ins Nonresonant Laser-matter Interaction (nlmi-9) = P. Soc. Photo-opt. Ins. Non-responding Hepatitis C Patient: Options and Variables = Roy S Med S Non-responding Hepatitis C Patient: Options and Variables = Roy. S. Med. S. Non-semisimple Topological Quantum Field Theories for 3-manifolds With Corners = Lect Notes Math Non-semisimple Topological Quantum Field Theories for 3-manifolds With Corners = Lect. Notes. Math. Nonsmooth Dynamics of Contacting Thermoelastic Bodies = Adv Mech Math Nonsmooth Dynamics of Contacting Thermoelastic Bodies = Adv. Mech. Math. Nonsmooth Variational Problems and Their Inequalities: Comparison Principles and Applications = Springer Monogr Math Nonsmooth Variational Problems and Their Inequalities: Comparison Principles and Applications = Springer. Monogr. Math. Nonsmooth Vector Functions and Continuous Optimization = Springer Ser Optim A Nonsmooth Vector Functions and Continuous Optimization = Springer. Ser. Optim. A. Nonstandard Analysis = Nato Adv Sci I C-mat Nonstandard Analysis = Nato. Adv. Sci. I. C-mat. Non-standard Employment Under Globalization: Flexible Work and Social Security in The Newly Industrializing Countries = Ide-jetro Ser Non-standard Employment Under Globalization: Flexible Work and Social Security in The Newly Industrializing Countries = Ide-jetro. Ser. Non-standard Parameter Adaptation for Exploratory Data Analysis = Stud Comput Intell Non-standard Parameter Adaptation for Exploratory Data Analysis = Stud. Comput. Intell. Non-standard Spatial Statistics and Spatial Econometrics = Adv Geogr Inform Sci Non-standard Spatial Statistics and Spatial Econometrics = Adv. Geogr. Inform. Sci. Non-stoichiometric Compounds = Nato Adv Sci I C-mat Non-stoichiometric Compounds = Nato. Adv. Sci. I. C-mat. Non-target Effects of Live Vaccines = Dev Biol Stand Non-target Effects of Live Vaccines = Dev. Biol. Stand. Nontraditional Methods of Sensing Stress, Strain, and Damage in Materials and Structures = Am Soc Test Mater Nontraditional Methods of Sensing Stress, Strain, and Damage in Materials and Structures = Am. Soc. Test. Mater. Nontraditional Methods of Sensing Stress, Strain, and Damage in Materials and Structures: Second Volume = Am Soc Test Mater Nontraditional Methods of Sensing Stress, Strain, and Damage in Materials and Structures: Second Volume = Am. Soc. Test. Mater. Non-university Higher Education in Europe = High Educ Dynam Non-university Higher Education in Europe = High. Educ. Dynam. Nonviolence and Peace Psychology = Peace Psychol Book S Nonviolence and Peace Psychology = Peace Psychol. Book. S. Non-viral Vectors for Gene Therapy, 2nd Edition: Part 1 = Adv Genet Non-viral Vectors for Gene Therapy, 2nd Edition: Part 1 = Adv. Genet. Non-viral Vectors for Gene Therapy, Second Edition: Part 2 = Adv Genet Non-viral Vectors for Gene Therapy, Second Edition: Part 2 = Adv. Genet. Non-visual Human-computer Interactions = Colloq Inse Non-visual Human-computer Interactions = Colloq. Inse. Non-waste Technology, Vol Ii = Vtt Symp Non-waste Technology, Vol Ii = Vtt. Symp. Non-waste Technology, Vol I = Vtt Symp Non-waste Technology, Vol I = Vtt. Symp. Nonwood Plant Fiber Pulping Series = Nonwd P Fib Nonwood Plant Fiber Pulping Series = Nonwd. P. Fib. Nonwood Plant Fibers = Nonwd P Fib Nonwood Plant Fibers = Nonwd. P. Fib. Noordgouw = Noordgouw No Place Like Home: Organizing Home-based Labor in The Era of Structural Adjustment = New Approach Sociol No Place Like Home: Organizing Home-based Labor in The Era of Structural Adjustment = New. Approach. Sociol. No Place of Rest: Jewish Literature, Expulsion, and The Memory of Medieval France = Middle Ages Ser No Place of Rest: Jewish Literature, Expulsion, and The Memory of Medieval France = Middle. Ages. Ser. Noradrenergic Mechanisms in Parkinson's Disease = P Fabre Mon Noradrenergic Mechanisms in Parkinson's Disease = P. Fabre. Mon. Norba. Revista de arte, geografía e historia = Norba Nordic Hydrology = Nord Hydrol Nordic Hydrology = Nord. Hydrol. Nordic Journal of Botany = Nord J Bot Nordic Journal of Botany = Nord. J. Bot. Nordic Journal of Computing = Nordic J. Comput. Nordic Journal of Linguistics = Nord J Linguist Nordic Journal of Linguistics = Nord. J. Linguist. Nordic Journal of Music Therapy = Nord J Music Ther Nordic Journal of Music Therapy = Nord. J. Music Ther. Nordic Journal of Philosophical Logic = Nordic J. Philos. Logic Nordic Journal of Political Economy=Nordic J. Polit. Economy Nordic Journal of Psychiatry = Nord J Psychiat Nordic Journal of Psychiatry = Nord. J. Psychiat. Nordic journal of psychiatry = Nord J Psychiatry Nordic Journal of Psychiatry = Nord. J. Psychiatry Nordic Journal of Religion and Society = Nord J Relig Soc Nordic Journal of Religion and Society = Nord. J. Relig. Soc. Nordic journal of Soviet and East European studies = Nord J Sov East Eur Stud Nordic Languages, Pt 1 = Handb Sprach Kommun Nordic Languages, Pt 1 = Handb. Sprach. Kommun. Nordic Psychology = Nord Psychol Nordic Psychology = Nord. Psychol. Nordic Pulp & Paper Research Journal = Nord Pulp Paper Res Nordic Pulp & Paper Research Journal = Nord. Pulp Paper Res. Nordic Pulp & Paper Research Journal = Nord Pulp Pap Res J Nordic Pulp & Paper Research Journal = Nord. Pulp Pap. Res. J. Nordic Theatre Studies = Nord Theatre Stud Nordic Theatre Studies = Nord. Theatre Stud. Nordic Treasure Hunt Extracting Energy From Forest Residues = Vtt Symp Nordic Treasure Hunt Extracting Energy From Forest Residues = Vtt. Symp. Nordiska Afrikainstitutet = Nord Afrikainst Nordiska Afrikainstitutet = Nord. Afrikainst. Nordisk hygienisk tidskrift = Nord Hyg Tidskr Nordisk Hygienisk Tidskrift = Nord. Hyg. Tidskr. Nordisk Hygienisk Tidskrift. Supplement = Nord. Hyg. Tidskr. Suppl. Nordisk hygienisk tidskrift. Supplementum = Nord Hyg Tidskr Suppl Nordisk medicinhistorisk arsbok = Nord Medicinhist Arsb Nordisk medicin = Nord Med Nordisk Medicin=Nord Med;; Nordisk Medicin = Nord Med Nordisk Medicin = Nord. Med. Nordisk numismatisk årsskrift. Utgiven av Kungliga vitterhets historie och antikvitets akademien i samarbete med Nordisk numismatisk union = NordNumArs Nordisk psykiatrisk medlemsblad = Nord Psyk Medl Nordisk psykiatrisk tidsskrift. Nordic journal of psychiatry = Nord Psykiatr Tidsskr Nordisk Psykiatrisk Tidsskrift = Nord. Psykiatr. Tidsskr. Nordisk psykologi = Nord Psykol Nordisk Psykologi = Nord Psykol Nordisk Psykologi = Nord. Psykol. Nordisk sexologi = Nord Sexol Nordisk veterinaermedicin = Nord Vet Med Nordisk Veterinaermedicin = Nord. Vet. Med. Nordisk Veterinaer Medicin = Nord Vet Med Nordisk Veterinaer Medicin = Nord. Vet. Med. Nordrhein-Westfälische Akademie der Wissenschaften = Vorträge Nordrhein-Westfälische Akad. Wiss. Norges Geologiske Undersokelse Bulletin = Norg Geol Unders B Norges Geologiske Undersokelse Bulletin = Norg. Geol. Unders. B. Normal and Malignant Hematopoiesis = Pez Fdn Sym Normal and Malignant Hematopoiesis = Pez. Fdn. Sym. Normal and Malignant Liver Cell Growth = Falk Symp Normal and Malignant Liver Cell Growth = Falk. Symp. Normal Approximation and Asymptotic Expansions = Class Appl Math Normal Approximation and Asymptotic Expansions = Class. Appl. Math. Normal Approximation By Steins Method = Probab Appl Ser Normal Approximation By Steins Method = Probab. Appl. Ser. Normale und pathologische Anatomie = Norm Pathol Anat (Stuttg) Normale und Pathologische Anatomie = Norm. Pathol. Anat. (Stuttg.) Normal Forms, Bifurcations and Finiteness Problems in Differential Equations = Nato Sci Ser Ii-math Normal Forms, Bifurcations and Finiteness Problems in Differential Equations = Nato. Sci. Ser. Ii-math. Normal Forms, Bifurcations and Finiteness Problems in Differential Equations = Nato Sci Ser Ii Math Normal Forms, Bifurcations and Finiteness Problems in Differential Equations = Nato. Sci. Ser. Ii. Math. Normal Testicular Descent and The Aetiology of Cryptorchidism = Adv Anat Embryol Cel Normal Testicular Descent and The Aetiology of Cryptorchidism = Adv. Anat. Embryol. Cel. Normal Tissue Reactions in Radiotherapy and Oncology = Front Radiat Ther On Normal Tissue Reactions in Radiotherapy and Oncology = Front. Radiat. Ther. On. Normandy Campaign 1944: Sixty Years On = Mil Hist Policy Normandy Campaign 1944: Sixty Years On = Mil. Hist. Policy. Normativity of The Natural: Human Goods, Human Virtues, and Human Flourishing = Philos Stud Contemp Normativity of The Natural: Human Goods, Human Virtues, and Human Flourishing = Philos. Stud. Contemp. Normat = Normat Norms, Logics and Information Systems = Fr Art Int Norms, Logics and Information Systems = Fr. Art. Int. Norms, Logics and Information Systems = Front Artif Intel Ap Norms, Logics and Information Systems = Front. Artif. Intel. Ap. Norms Over Force: The Enigma of European Power = Ceri Ser Int Relat P Norms Over Force: The Enigma of European Power = Ceri. Ser. Int. Relat. P. Norms, Values, and Society = Vien Cir Inst Yearbk Norms, Values, and Society = Vien. Cir. Inst. Yearbk. Norois = Norois Noropsikiyatri Arsivi-archives of Neuropsychiatry = Noropsikiyatri Ars Noropsikiyatri Arsivi-archives of Neuropsychiatry = Noropsikiyatri Ars. Norsig 2004: Proceedings of The 6th Nordic Signal Processing Symposium = Hels Univ Technol S Norsig 2004: Proceedings of The 6th Nordic Signal Processing Symposium = Hels. Univ. Technol. S. Norske Tannlaegeforenings Tidende = Nor. Tannlaegeforen. Tid. Norsk geografisk tidsskrift. Norwegian journal of geography = Nor Geogr Tidsskr Norsk Geografisk Tidsskrift-norwegian Journal of Geography = Norsk Geogr Tidsskr Norsk Geografisk Tidsskrift-norwegian Journal of Geography = Norsk Geogr. Tidsskr. Norsk Geologisk Tidsskrift = Nor. Geol. Tidsskr. Norsk Geologisk Tidsskrift = Norsk Geol Tidsskr Norsk Geologisk Tidsskrift = Norsk Geol. Tidsskr. Norsk Polarinstitutt Skrifter = Norsk Polarinst Skri Norsk Polarinstitutt Skrifter = Norsk Polarinst. Skri. Norsk Skogindustri = Norsk Skogind Norsk Skogindustri = Norsk Skogind. Norsk theologisk tidsskrift = Nor Teol Tidsskr North African Cretaceous Carbonate Platform Systems = Nato Sci S Ss Iv Ear North African Cretaceous Carbonate Platform Systems = Nato. Sci. S. Ss. Iv. Ear. North Aleutian Basin Energy-fisheries, Workshop Proceedings = Alaska Sea North Aleutian Basin Energy-fisheries, Workshop Proceedings = Alaska. Sea. North American Actuarial Journal=N. Amer. Actuarial J. North American Archaeologist = N Am Archaeol North American Archaeologist = N. Am. Archaeol. North American Economic and Financial Integration = Res Glob St North American Economic and Financial Integration = Res. Glob. St. North American Economic and Financial Integration = Res Glob Strateg Man North American Economic and Financial Integration = Res. Glob. Strateg. Man. North American Journal of Aquaculture = N Am J Aquacult North American Journal of Aquaculture = N. Am. J. Aquacult. North American Journal of Economics and Finance=N. Amer. J. Econ. Finance North American Journal of Economics and Finance = N Am J Econ Financ North American Journal of Economics and Finance = N. Am. J. Econ. Financ. North American Journal of Fisheries Management = N Am J Fish Manage North American Journal of Fisheries Management = N. Am. J. Fish. Manage. North American Nonwood Fiber Symposium, 1998 Tappi Proceedings = P Tech As P North American Nonwood Fiber Symposium, 1998 Tappi Proceedings = P. Tech. As. P. North American Perspectives On European Security = St World P North American Perspectives On European Security = St. World. P. North American Power Symposium = North Amer Pow Symp North American Power Symposium = North Amer. Pow. Symp. North American Review = N Am Rev North American Review = N. Am. Rev. North American Science Symposium: Toward A Unified Framework for Inventorying and Monitoring Forest Ecosystem Resources = Us For Serv Rmrs-p North American Science Symposium: Toward A Unified Framework for Inventorying and Monitoring Forest Ecosystem Resources = Us. For. Serv. Rmrs-p. North American Transputer Users Group Progress Reports = N Amer Tran North American Transputer Users Group Progress Reports = N. Amer. Tran. North American Tunneling 2006 = Proc Monogr Eng Wate North American Tunneling 2006 = Proc. Monogr. Eng. Wate. North Atlantic Fisheries = Isl Liv Ser North Atlantic Fisheries = Isl. Liv. Ser. North Atlantic Treaty Organization: The Enduring Alliance = Glob Inst North Atlantic Treaty Organization: The Enduring Alliance = Glob. Inst. North Carolina Agricultural Experiment Station Bulletin = N C Agr Exp Sta Bull North Carolina Agricultural Experiment Station Bulletin = N. C. Agr. Exp. Sta. Bull. North Carolina Agricultural Experiment Station Technical Bulletin = N C Agr Exp Sta Te B North Carolina Agricultural Experiment Station Technical Bulletin = N. C. Agr. Exp. Sta. Te. B. North Carolina Agricultural Research Service Technical Bulletin = N C Ars Tech Bull North Carolina Agricultural Research Service Technical Bulletin = N. C. Ars. Tech. Bull. North Carolina Central law journal = North Carol Centr Law J North Carolina dental gazette : a publication of North Carolina Dental Society = N C Dent Gaz North Carolina Dental Gazette = N. C. Dent. Gaz. North Carolina dental journal = N C Dent J North Carolina Dental Journal = N. C. Dent. J. North Carolina folklore = N C Folklor North Carolina journal of mental health = N C J Ment Health North Carolina law review = North Carol Law Rev North Carolina medical journal = N C Med J North Carolina Medical Journal = N C Med J North Carolina Medical Journal = N. C. Med. J. North Carolina Medical Journal (Relston-Salem Nc=N C Med J;; Northcliffe's Legacy = Contemp Hist Con Ser Northcliffe's Legacy = Contemp. Hist. Con. Ser. North Dakota Agricultural Experiment Station Bulletin = N Dak Agr Exp Sta Bu North Dakota Agricultural Experiment Station Bulletin = N. Dak. Agr. Exp. Sta. Bu. North Dakota century code : containing statutes of a general and permanent nature ... North Dakota = N D Century Code N D North Dakota Cooperative Extension Service Circular = N Dak Ces Circ North Dakota Cooperative Extension Service Circular = N. Dak. Ces. Circ. North Dakota Cooperative Extension Service Extension Bulletin = N Dak Coop Ext Se Ex North Dakota Cooperative Extension Service Extension Bulletin = N. Dak. Coop. Ext. Se. Ex. North Dakota Farm Research = N Dak Farm Res North Dakota Farm Research = N. Dak. Farm Res. North Dakota history = N D Hist North Dakota law review = N D Law Rev Northeast African Studies = Northeast Afr Stud Northeast Asia: Ripe for Integration? = Polit Econ Asia Pac Northeast Asia: Ripe for Integration? = Polit. Econ. Asia. Pac. Northeast Conference Reports = Northe Conf Northeast Conference Reports = Northe. Conf. Northeastern Environmental Science = Ne Envir Sc Northeastern Environmental Science = Ne. Envir. Sc. Northeastern Environmental Science, Vol 7, No 1 = Ne Envir Sc Northeastern Environmental Science, Vol 7, No 1 = Ne. Envir. Sc. Northeastern Mathematical Journal = Northeast. Math. J. Northeastern Naturalist = Northeast Nat Northeastern Naturalist = Northeast. Nat. North eastern reporter. Second series = North East Rep Second Ser Northeast folklore = Northeast Folk Northeast Subsistence-settlement Change: A,d, 700-1300 = N Y State Mus Bull Northeast Subsistence-settlement Change: A,d, 700-1300 = N. Y. State. Mus. Bull. Northern History = Northern Hist Northern History = Northern Hist. Northern history = North Hist Northern Hydrology : Selected Perspectives = Nhri Symp Northern Hydrology : Selected Perspectives = Nhri. Symp. Northern Illinois University law review = North Ill Univ Law Rev Northern Journal of Applied Forestry = North J Appl For Northern Journal of Applied Forestry = North. J. Appl. For. Northern Kentucky law review = North KY Law Rev Northern Kentucky State law forum = North Ky State Law Forum Northern Religions and Shamanism = Ethnol Ural Northern Religions and Shamanism = Ethnol. Ural. Northern Research Basins Water Balance = Iahs-aish P Northern Research Basins Water Balance = Iahs-aish. P. Northern Scotland = North Scotl Northern Territories, Asia-pacific Regional Conflicts and The Aland Experience = Asias Transform Northern Territories, Asia-pacific Regional Conflicts and The Aland Experience = Asias. Transform. Northern Virginia heritage = North Va Herit Northern Wilderness Areas: Ecology, Sustainability, Values = U Lap A C P Northern Wilderness Areas: Ecology, Sustainability, Values = U. Lap. A. C. P. Northern World = Northern World North European Engineering and Science Conference Series = N Euro Engn North European Engineering and Science Conference Series = N. Euro. Engn. North-holland Delta Series = N-holland D North-holland Delta Series = N-holland. D. North-holland Linguistic Series = N-holland L North-holland Linguistic Series = N-holland. L. North-Holland Mathematical Library = North-Holland Math. Library North-holland Mathematics Studies = N-holland M North-holland Mathematics Studies = N-holland. M. North-Holland Mathematics Studies = North-Holland Math. Stud. North-Holland Series in Applied Mathematics and Mechanics = North-Holland Ser. Appl. Math. Mech. North-holland Series in Statistics and Probability = N-holland Stat Prob North-holland Series in Statistics and Probability = N-holland. Stat. Prob. North-holland Studies in Telecommunication = North Holl Stud Tele North-holland Studies in Telecommunication = North. Holl. Stud. Tele. North Korea: A Guide to Economic and Political Developments = Guide Econ Polit Dev North Korea: A Guide to Economic and Political Developments = Guide Econ. Polit. Dev. North Korea in Transition = Korea Res M North Korea in Transition = Korea Res. M. North Korea: Issues and U.s. Policy = Asian Polit Econ Sec North Korea: Issues and U.s. Policy = Asian. Polit. Econ. Sec. North Korean Foreign Relations in The Post-cold War World = Asian Polit Econ Sec North Korean Foreign Relations in The Post-cold War World = Asian. Polit. Econ. Sec. North Korean Review = N Korean Rev North Korean Review = N. Korean Rev. North Korea Policy: Japan and The Great Powers = Eur Inst Jpn St E As North Korea Policy: Japan and The Great Powers = Eur. Inst. Jpn. St. E. As. North Korea's Military: Diplomatic Campaigns, 1966-2008 = Routl Secur Asia-pac North Korea's Military: Diplomatic Campaigns, 1966-2008 = Routl. Secur. Asia-pac. North Queensland Gold 89 Conference = Aust I Min North Queensland Gold 89 Conference = Aust. I. Min. Northrop Frye: Eastern and Western Perspectives = Frye Studies Northrop Frye: Eastern and Western Perspectives = Frye. Studies. North's Civil War = N Civil War North's Civil War = N. Civil War Northwest Caucasus: Past, Present, Future = Cent Asian Stud Ser Northwest Caucasus: Past, Present, Future = Cent. Asian. Stud. Ser. Northwest dentistry = Northwest Dent Northwest Dentistry = Northwest Dent. Northwest Environmental Journal = Northwest Environ J Northwest Environmental Journal = Northwest Environ. J. Northwestern dental research = Northwest Dent Res Northwestern Dental Research = Northwest. Dent. Res. North-western Journal of Zoology = North-west J Zool North-western Journal of Zoology = North-west. J. Zool. North western reporter. Second series = North West Rep Second Ser Northwestern University Bulletin, Dental Research and Graduate Study = Northwest. Univ. Bull. Dent. Res. Grad. Study Northwestern University Law Review = Northwest U Law Rev Northwestern University Law Review = Northwest. U. Law Rev. Northwestern University law review = Northwest Univ Law Rev Northwest Medical Journal = Northwest Med J Northwest Medical Journal = Northwest Med. J. Northwest medicine = Northwest Med Northwest Medicine = Northwest Med. Northwest Ohio quarterly = Northwest Ohio Q Northwest report : a newsletter of the Northwest Area Foundation = Northwest Rep Northwest Science = Northwest Sci Northwest Science = Northwest Sci. Norwegian Archaeological Review = Nor Archaeol Rev Norwegian Archaeological Review = Nor. Archaeol. Rev. Norwegian Journal of Botany = Norw J Bot Norwegian Journal of Botany = Norw. J. Bot. Norwegian Journal of Geology = Norw J Geol Norwegian Journal of Geology = Norw. J. Geol. Norwegian Journal of Zoology = Norw J Zool Norwegian Journal of Zoology = Norw. J. Zool. Norwegian Modals = Stud Generat Gramm Norwegian Modals = Stud. Generat. Gramm. Norwegian Petroleum Society (npf), Special Publication = Npf Sp Publ Norwegian Petroleum Society (npf), Special Publication = Npf. Sp. Publ. Nose 2010: International Conference On Environmental Odour Monitoring and Control = Chem Engineer Trans Nose 2010: International Conference On Environmental Odour Monitoring and Control = Chem. Engineer. Trans. Nose and Viral Cancer: Etiology, Pathogenesis and Treatment = Cancer Etiol Diagn T Nose and Viral Cancer: Etiology, Pathogenesis and Treatment = Cancer. Etiol. Diagn. T. Noseleutike = Noseleutike No shinkei geka. Neurological surgery = No Shinkei Geka No Shinkei Geka (Neurological Surgery) = No Shinkei Geka. No Shinkei Geka. Neurological Surgery=No Shinkei Geka;; Noshuyo Byori (Brain Tumor Pathology) = Noshuyo Byori No Social Science Without Critical Theory = Curr Perspect Soc Th No Social Science Without Critical Theory = Curr. Perspect. Soc. Th. Nos Oiseaux = Nos Oiseaux Nosokomeiaka chronika = Nosokom Chron nostro paese, Il = Nostro paese Nota Lepidopterologica = Nota Lepidopterol. Notariat Medieval: Droit, Pouvoir Et Societe En Bearn = Hist Notariale Notariat Medieval: Droit, Pouvoir Et Societe En Bearn = Hist. Notariale. Notarzt = Notarzt Notas de la Sociedad de Matemática de Chile = Notas Soc. Mat. Chile Notas de Lógica Matemática = Notas Lógica Mat. Notas de Matemática Discreta = Notas Mat. Discreta Notas de poblacion = Notas Poblacion Notatki plockie = Notatki Plockie Notch Effects in Fatigue and Fracture = Nato Sci Ser Ii Math Notch Effects in Fatigue and Fracture = Nato. Sci. Ser. Ii. Math. Notch From Neurodevelopment to Neurodegeneration: Keeping The Fate = Res Per Alz Notch From Neurodevelopment to Neurodegeneration: Keeping The Fate = Res. Per. Alz. Notch Signaling = Curr Top Dev Biol Notch Signaling = Curr. Top. Dev. Biol. Note di Matematica = Note Mat. Notes and queries = Notes Queries Notes and Queries = Notes Queries Notes and Records of The Royal Society = Notes Rec Roy Soc Notes and Records of The Royal Society = Notes Rec. Roy. Soc. Notes and Records of the Royal Society of London = Notes and Records Roy. Soc. London Notes and Records of The Royal Society of London = Notes Rec Roy Soc Notes and Records of The Royal Society of London = Notes Rec. Roy. Soc. Notes and records of the Royal Society of London = Notes Rec R Soc Lond Notes from the underground (New York, N.Y.) = Notes Undergr Notes = Notes Notes On Coxeter Transformations and The Mckay Correspondence = Springer Monogr Math Notes On Coxeter Transformations and The Mckay Correspondence = Springer. Monogr. Math. Notes On Introductory Combinatorics = Mod Birkhauser Class Notes On Introductory Combinatorics = Mod. Birkhauser. Class. Notes on Intuitionistic Fuzzy Sets = Notes IFS Notes on Number Theory and Discrete Mathematics = Notes Number Theory Discrete Math. Notes On Numerical Fluid Mechanics and Multidisciplinary Design = Note N Fl Mech Mul D Notes On Numerical Fluid Mechanics and Multidisciplinary Design = Note. N. Fl. Mech. Mul. D. Notes On Numerical Fluid Mechanics and Multidisciplinary Design = Notes Numer Fluid Me Notes On Numerical Fluid Mechanics and Multidisciplinary Design = Notes Numer. Fluid Me. Notes On Numerical Fluid Mechanics = Note Num Fl Notes On Numerical Fluid Mechanics = Note. Num. Fl. Notes on Numerical Fluid Mechanics = Notes Numer. Fluid Mech. Notes techniques du Centre d’écologie forestière et rurale = Notes tech. Cent. écol. for. rural Note technique Groupement technique forestier = Note tech. Group. tech. for. ## Note : The abbrev of "STUDIES IN SYMBOLIC INTERACTION" and "SOCIOLOGICAL METHODOLOGY" is NOT ISO abbrev. Notfall & Rettungsmedizin = Notfall Rettungsmed Notfall & Rettungsmedizin = Notfall Rettungsmed. Not for Profit: Why Democracy Needs The Humanities = Pub Square Not for Profit: Why Democracy Needs The Humanities = Pub. Square. Notice pour le praticien = Not. prat. Notices of The American Mathematical Society = Not Am Math Soc Notices of The American Mathematical Society = Not. Am. Math. Soc. Notices of the American Mathematical Society = Notices Amer. Math. Soc. Noticiario arqueológico hispánico. Arqueología = NotAHisp Noticiario arqueológico hispánico. Prehistoria = NotAHispPrehistoria No-till Farming: Effects On Soil, Pros and Cons and Potential = Agr Issues Policies No-till Farming: Effects On Soil, Pros and Cons and Potential = Agr. Issues. Policies. Not in This Family = Polit Cult Mod Am Not in This Family = Polit. Cult. Mod. Am. Notiziario farmaceutico = Not Farm Notiziario. Museo civico, Associazione archeologica, Allumiere = NotAllumiere Notiziario. Soprintendenza archeologica della Lombardia = NotALomb Notizie archeologiche bergomensi. Periodico di archeologia del Civico museo archeologico di Bergamo = NotABerg Notizie dal chiostro del monastero maggiore. Rassegna di studi del Civico museo archeologico e del Civico gabinetto numismatico di Milano = NotMilano Notizie degli scavi di antichità = NSA Notizie degli scavi di antichità = NSc Notizie di Politeia = Not Polit Notizie per la pratica = Not. prat. Not Man Apart = Not Man Apart No to hattatsu. Brain and development = No To Hattatsu No To Hattatsu [Brain and Development]=No To Hattatsu;; No to Hattatsu = No To Hattatsu No to Shinkei (Brain and Nerve) = No To Shinkei No To Shinkei. Brain and Nerve=No To Shinkei;; Notre Dame Conferences in Medieval Studies = N D Conf M Notre Dame Conferences in Medieval Studies = N. D. Conf. M. Notre Dame English Journal-a Journal of Religion in Literature = Notre Dame Engl J Notre Dame English Journal-a Journal of Religion in Literature = Notre Dame Engl. J. Notre Dame English Journal = Notre Dame Engl J Notre Dame English Journal = Notre Dame Engl. J. Notre Dame Journal of Education = Notre Dame J Educ Notre Dame Journal of Education = Notre Dame J. Educ. Notre Dame Journal of Formal Logic = Notre Dame J. Formal Logic Notre Dame Journal of Formal Logic = Notre Dame J Form L Notre Dame Journal of Formal Logic = Notre Dame J. Form. L. Notre Dame journal of law, ethics & public policy = Notre Dame J Law Ethics Public Policy Notre Dame Law Review = Notre Dame Law Rev Notre Dame Law Review = Notre Dame Law Rev. Notre Dame Lawyer = Notre Dame Lawyer Notre Dame Series On Quantitative Methodologies = N D Ser Quant Method Notre Dame Series On Quantitative Methodologies = N. D. Ser. Quant. Method. Notre Dame Series On Quantitative Methodology = N D Ser Quant Method Notre Dame Series On Quantitative Methodology = N. D. Ser. Quant. Method. Notre Dame Studies in Theology = Notr Dam Theol Notre Dame Studies in Theology = Notr. Dam. Theol. Nottingham French Studies = Nottingham Fr Stud Nottingham French Studies = Nottingham Fr. Stud. Notulae Botanicae Horti Agrobotanici Cluj-napoca = Not Bot Horti Agrobo Notulae Botanicae Horti Agrobotanici Cluj-napoca = Not. Bot. Horti Agrobo. Notulae Odonatologicae = Not. Odonatologicae Noun Phrase in Functional Discourse Grammar = Trend Lin S Noun Phrase in Functional Discourse Grammar = Trend. Lin. S. Noun Phrase in Functional Discourse Grammar = Trends Linguist-stud Noun Phrase in Functional Discourse Grammar = Trends. Linguist-stud. Noun Phrase in The Generative Perspective = Stud Generat Gramm Noun Phrase in The Generative Perspective = Stud. Generat. Gramm. Nous (Detroit, Mich.) = Nous Nous = Nous Noûs = Noûs Nouveau Journal De Chimie-new Journal of Chemistry = New J Chem Nouveau Journal De Chimie-new Journal of Chemistry = New. J. Chem. Nouveau Journal De Chimie-new Journal of Chemistry = Nouv J Chim Nouveau Journal De Chimie-new Journal of Chemistry = Nouv. J. Chim. Nouveau journal de chimie = Nouv J Chim Nouvel Automatisme = Nouv Automatisme Nouvel Automatisme = Nouv. Automatisme Nouvelle Bibliothèque Mathématique = Nouv. Bibl. Math. Nouvelle ecole = Nouv Ec Nouvelle Presse Medicale = Nouv Presse Med Nouvelle Presse Medicale = Nouv. Presse Med. Nouvelle Revue Aeronautique Astronautique = Nouv Rev Aeronaut As Nouvelle Revue Aeronautique Astronautique = Nouv. Rev. Aeronaut. As. Nouvelle Revue De Medecine De Toulouse = Nouv Rev Med Toulous Nouvelle Revue De Medecine De Toulouse = Nouv. Rev. Med. Toulous. Nouvelle Revue d'Optique Appliqu?e = Nouv. Rev. Opt. Appl. Nouvelle Revue d'Optique AppliquTe = Nouv. Rev. Opt. Appl. Nouvelle Revue d'Optique = Nouv. Rev. Opt. Nouvelle Revue D Optique = Nouv Rev Opt Nouvelle Revue D Optique = Nouv. Rev. Opt. Nouvelle Revue Du Seizieme Siecle = Nouv Rev Seizieme S Nouvelle Revue Du Seizieme Siecle = Nouv. Rev. Seizieme S. Nouvelle revue du XVIe siecle = Nouv Rev 16e Siecle Nouvelle revue francaise d'hematologie; blood cells = Nouv Rev Fr Hematol Blood Cells Nouvelle Revue Francaise d'Hematologie (Blood Cells) = Nouv. Rev. Fr. Hematol. Blood Cells Nouvelle revue francaise d'hematologie = Nouv Rev Fr Hematol Nouvelle Revue Francaise d'Hematologie = Nouv. Rev. Fr. Hematol. Nouvelle Revue Francaise D Hematologie = Nouv Rev Fr Hematol Nouvelle Revue Francaise D Hematologie = Nouv. Rev. Fr. Hematol. Nouvelle Revue Francaise = Nouv Rev Fr Nouvelle Revue Francaise = Nouv. Rev. Fr. Nouvelle Revue Théologique = NRTh Nouvelles - Comite international catholique des infirmieres et assistantes medico-sociales. News - International Committee of Catholic Nurses and Medico-Social Workers = Nouv Com Int Cathol Infirm Assist Med Soc Nouvelles de la republique des lettres (Naples, Italy) = Nouv Repub Lett Nouvelles der Landeshydrologie und -geologie = Nouv. Landeshydrol. -geol. Nouvelles Questions Feministes = Nouv Quest Fem Nouvelles Questions Feministes = Nouv. Quest. Fem. Nova acta Leopoldina : Abhandlungen der Kaiserlich Leopoldinisch-Carolinisch Deutschen Akademie der Naturforscher = Nova Acta Leopold Nova Acta Leopoldina = Nova Acta Leopold. Nova Acta Leopoldina = Nova Act Lc Nova Acta Leopoldina = Nova Act. Lc. Nova acta Paracelsica : ... Jahrbuch der Schweizerischen Paracelsus-Gesellschaft = Nova Acta Paracelsica Nova acta stomatologica = Nova Acta Stomatol Novaensia. Badania Ekspedycji archeologicznej Uniwersytetu warszawskiego w Novae = Novaensia Nova Hedwigia = Nova Hedwigia Novaia i noveishaia istoriia = Nov Novejsaja Istor Novaia khirurgiia = Nov Khir Nova Journal of Mathematics, Game Theory and Algebra = Nova J. Math. Game Theory Algebra Nova Journal of Theoretical Physics = Nova J. Theor. Phys. Nova law journal = Nova Law J Nova law review = Nova Law Rev Nova Religio-journal of Alternative and Emergent Religions = Nova Relig Nova Religio-journal of Alternative and Emergent Religions = Nova Relig. Novartis Foundation Symposium = Novart Fdn Symp Novartis Foundation Symposium = Novart. Fdn. Symp. Novartis Foundation symposium = Novartis Found Symp Novartis Foundation Symposium = Novartis Found. Symp. Nova Scotia historical review = N S Hist Rev Nova Scotia Medical Bulletin = N. S. Med. Bull. Nova Supplementa Entomologica = Nova Suppl Entomol Nova Supplementa Entomologica = Nova Suppl. Entomol. Nova Supplementa Entomologica, Vol 21 = Nova Suppl Entomol Nova Supplementa Entomologica, Vol 21 = Nova Suppl. Entomol. Novel-a Forum On Fiction = Novel-forum Fict Novel-a Forum On Fiction = Novel-forum. Fict. Novel Algorithms for Fast Statistical Analysis of Scaled Circuits = Lect Notes Electr En Novel Algorithms for Fast Statistical Analysis of Scaled Circuits = Lect. Notes. Electr. En. Novel Angiogenic Mechanisms: Role of Circulating Progenitor Endothelial Cells = Adv Exp Med Biol Novel Angiogenic Mechanisms: Role of Circulating Progenitor Endothelial Cells = Adv. Exp. Med. Biol. Novel Applications of Lasers and Pulsed Power = P Soc Photo-opt Ins Novel Applications of Lasers and Pulsed Power = P. Soc. Photo-opt. Ins. Novel Approaches in Anticancer Drug Design = Contr Oncol Novel Approaches in Anticancer Drug Design = Contr. Oncol. Novel Approaches to Improving High Temperature Corrosion Resistance: (efc 47) = Eur Fed Corros Publ Novel Approaches to Improving High Temperature Corrosion Resistance: (efc 47) = Eur. Fed. Corros. Publ. Novel Approaches to Selective Treatments of Human Solid Tumors = Adv Exp Med Biol Novel Approaches to Selective Treatments of Human Solid Tumors = Adv. Exp. Med. Biol. Novel Approaches to Studying Basal Ganglia and Related Neuropsychiatric Disoders = Int Rev Neurobiol Novel Approaches to Studying Basal Ganglia and Related Neuropsychiatric Disoders = Int. Rev. Neurobiol. Novel Approaches to The Structure and Dynamics of Liquids: Experiments, Theories and Simulations = Nato Sci Ser Ii-math Novel Approaches to The Structure and Dynamics of Liquids: Experiments, Theories and Simulations = Nato. Sci. Ser. Ii-math. Novel Approaches to The Structure and Dynamics of Liquids: Experiments, Theories and Simulations = Nato Sci Ser Ii Math Novel Approaches to The Structure and Dynamics of Liquids: Experiments, Theories and Simulations = Nato. Sci. Ser. Ii. Math. Novel Approaches to The Treatment of Alzheimers Disease = Adv Behav Biol Novel Approaches to The Treatment of Alzheimers Disease = Adv. Behav. Biol. Novel Aspects in Reproductive Biology and Medicine = Publ K Med Novel Aspects in Reproductive Biology and Medicine = Publ. K. Med. Novel Biodegradable Microbial Polymers = Nato Adv Sci I E-app Novel Biodegradable Microbial Polymers = Nato. Adv. Sci. I. E-app. Novel Biomaterials: Decontamination of Toxic Metals From Wastewater = Environ Sci Eng Novel Biomaterials: Decontamination of Toxic Metals From Wastewater = Environ. Sci. Eng. Novel Biophotonic Techniques and Applications = Proc Spie Novel Biophotonic Techniques and Applications = Proc. Spie. Novel Developments On Genetic Recombination: Dna Double Strand Break and Dna End-joining = Adv Biophys Novel Developments On Genetic Recombination: Dna Double Strand Break and Dna End-joining = Adv. Biophys. Novel Enzyme Technology for Food Applications = Woodhead Publ Food S Novel Enzyme Technology for Food Applications = Woodhead. Publ. Food S. Novel Food Ingredients for Weight Control = Woodhead Publ Food S Novel Food Ingredients for Weight Control = Woodhead. Publ. Food S. Novel Forms of Carbon Ii = Mater Res Soc Symp P Novel Forms of Carbon Ii = Mater. Res. Soc. Symp. P. Novel Forms of Carbon = Mater Res Soc Symp P Novel Forms of Carbon = Mater. Res. Soc. Symp. P. Novel Frontiers in The Production of Compounds for Biomedical Use, Vol 1 = Focus Biotechnol Novel Frontiers in The Production of Compounds for Biomedical Use, Vol 1 = Focus. Biotechnol. Novel Functions of Cholinesterases in Development, Physiology and Disease = Prog Histochem Cytoc Novel Functions of Cholinesterases in Development, Physiology and Disease = Prog. Histochem. Cytoc. Novel In-plane Semiconductor Lasers Iii = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers Iii = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Ii = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers Ii = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Iv = Proc Spie Novel In-plane Semiconductor Lasers Iv = Proc. Spie. Novel in - Plane Semiconductor Lasers Iv = P Soc Photo-opt Ins Novel in - Plane Semiconductor Lasers Iv = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Iv = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers Iv = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Ix = Proc Spie Novel In-plane Semiconductor Lasers Ix = Proc. Spie. Novel In-plane Semiconductor Lasers = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Viii = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers Viii = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers Vii = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers Vii = P. Soc. Photo-opt. Ins. Novel In-plane Semiconductor Lasers V = P Soc Photo-opt Ins Novel In-plane Semiconductor Lasers V = P. Soc. Photo-opt. Ins. Novel Materials and Devices for Spintronics = Mater Res Soc Symp P Novel Materials and Devices for Spintronics = Mater. Res. Soc. Symp. P. Novel Materials and Processes for Advanced Cmos = Mater Res Soc Symp P Novel Materials and Processes for Advanced Cmos = Mater. Res. Soc. Symp. P. Novel Materials in Heterogeneous Catalysis = Acs Sym Ser Novel Materials in Heterogeneous Catalysis = Acs. Sym. Ser. Novel Methods in Soft Matter Simulations = Lect Notes Phys Novel Methods in Soft Matter Simulations = Lect. Notes. Phys. Novel Methods to Study Interfacial Layers = Stud Interf Sci Novel Methods to Study Interfacial Layers = Stud. Interf. Sci. Novel Molecular Approaches to Anti-inflammatory Therapy = Agent Action Suppl Novel Molecular Approaches to Anti-inflammatory Therapy = Agent. Action. Suppl. Novel Nanocrystalline Alloys and Magnetic Nanomaterials = Ser Mater Sci Eng Novel Nanocrystalline Alloys and Magnetic Nanomaterials = Ser. Mater. Sci. Eng. Novel Nanocrystalline Alloys and Magnetic Nanomaterials = Ser Mat Sci Engn Novel Nanocrystalline Alloys and Magnetic Nanomaterials = Ser. Mat. Sci. Engn. Novel Optical Instrumentation for Biomedical Applications Iii = P Soc Photo-opt Ins Novel Optical Instrumentation for Biomedical Applications Iii = P. Soc. Photo-opt. Ins. Novel Optical Instrumentation for Biomedical Applications = Proc Spie Novel Optical Instrumentation for Biomedical Applications = Proc. Spie. Novel Optical Instrumentation for Biomedical Applications = P Soc Photo-opt Ins Novel Optical Instrumentation for Biomedical Applications = P. Soc. Photo-opt. Ins. Novel Optical Resolution Technologies = Top Curr Chem Novel Optical Resolution Technologies = Top. Curr. Chem. Novel Optical Systems and Large-apertur Imaging = P Soc Photo-opt Ins Novel Optical Systems and Large-apertur Imaging = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Iii = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Iii = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Iv = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Iv = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Ix = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Ix = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Vii = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Vii = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Vi = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Vi = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization V = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization V = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Xiii = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Xiii = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization Xi = Proc Spie Novel Optical Systems Design and Optimization Xi = Proc. Spie. Novel Optical Systems Design and Optimization Xi = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization Xi = P. Soc. Photo-opt. Ins. Novel Optical Systems Design and Optimization X = P Soc Photo-opt Ins Novel Optical Systems Design and Optimization X = P. Soc. Photo-opt. Ins. Novel Perspectives in Antibacterial Action = Roy S Med S Novel Perspectives in Antibacterial Action = Roy. S. Med. S. Novel Processes and Control Technologies in The Food Industry = Nato Sci Ser I Life Novel Processes and Control Technologies in The Food Industry = Nato. Sci. Ser. I. Life. Novel Production Methods for Ethylene, Light Hydrocarbons, and Aromatics = Chem Indust Novel Production Methods for Ethylene, Light Hydrocarbons, and Aromatics = Chem. Indust. Novel Synthesis and Processing of Ceramics = Key Eng Mat Novel Synthesis and Processing of Ceramics = Key. Eng. Mat. Novel Synthesis and Processing of Ceramics = Key Eng Mater Novel Synthesis and Processing of Ceramics = Key. Eng. Mater. Novel Systems for The Study of Human Disease = Oecd Proc Novel Systems for The Study of Human Disease = Oecd. Proc. Novel Techniques in Fossil Fuel Mass Spectrometry = Am Soc Test Mater Novel Techniques in Fossil Fuel Mass Spectrometry = Am. Soc. Test. Mater. Novel Trends in Rheology Iii = Aip Conf Proc Novel Trends in Rheology Iii = Aip. Conf. Proc. Novenytermeles = Novenytermeles Novi Sad Journal of Mathematics = Novi Sad J. Math. Novon = Novon Novosti meditsinskogo priborostroeniia = Nov Med Priborostr Novosti Meditsinskogo Priborostroeniia = Nov. Med. Priborostr. Novosti meditsinskoi tekhniki = Nov Med Tekh Novosti Meditsinskoi Tekhniki = Nov. Med. Tekh. Novum Testamentum: an international quarterly for New Testament and related studies = NT Novum Testamentum = Novum Testamentum Novyi Mir = Novyi Mir No War, No Peace: The Rejuvenation of Stalled Peace Processes and Peace Accords = Rethink Peace Confl No War, No Peace: The Rejuvenation of Stalled Peace Processes and Peace Accords = Rethink. Peace Confl. Nowe drogi = Nowe Drogi Nowotwory = Nowotwory Noxious Range Weeds = Wss Agr Sci Noxious Range Weeds = Wss. Agr. Sci. NPG forum series = NPG Forum Ser N* Physics = Proc Inst Nucl Theor N* Physics = Proc. Inst. Nucl. Theor. Npk Fertilizer Production Alternatives = Ifdc Sp Pub Npk Fertilizer Production Alternatives = Ifdc. Sp. Pub. NP news (Bellevue, Wash.) = NP News NP News = NP News NPN medecine = NPN Med Nraes, Natural Resource, Agriculture, and Engineering Service = Nraes, Nat Res Agr E Nraes, Natural Resource, Agriculture, and Engineering Service = Nraes, Nat. Res. Agr. E. Nrc Yearbook = Nrc Year Nrc Yearbook = Nrc Year. Nrel/snl Photovoltaics Program Review - Proceedings of The 14th Conference: A Joint Meeting = Aip Conf Proc Nrel/snl Photovoltaics Program Review - Proceedings of The 14th Conference: A Joint Meeting = Aip. Conf. Proc. Nrsc: 2009 National Radio Science Conference: Nrsc 2009, Vols 1 and 2 = Nat Radio Sci Co Nrsc: 2009 National Radio Science Conference: Nrsc 2009, Vols 1 and 2 = Nat. Radio Sci. Co. N(star) Physics and Nonperturbative Quantum Chromodynamics = Few Body Sy N(star) Physics and Nonperturbative Quantum Chromodynamics = Few. Body. Sy. Nsukka Studies in African Literature = Nsukka Stud Afr Lit Nsukka Studies in African Literature = Nsukka Stud. Afr. Lit. NT learning curve = NT Learn Curve NTM = NTM Ntm = Ntm-j Hist Sci Techn Ntm = Ntm-j. Hist. Sci. Techn. NTP CERHR MON = NTP CERHR MON Ntt Review = Ntt Review Ntz Archiv = Ntz Arch Ntz Archiv = Ntz Arch. Ntz-communications Journal = Ntz-commun J Ntz-communications Journal = Ntz-commun. J. Nubia christiana = NubChr Nubian Culture = Kungl Vit H Nubian Culture = Kungl. Vit. H. Nubian Letters = NubLet Nuc Compact-european-american Communications in Nuclear Medicine = Nuc Compact Nuc Compact-european-american Communications in Nuclear Medicine = Nuc Compact. Nucelar Receptors = Method Enzymol Nucelar Receptors = Method. Enzymol. Nucelar Receptors = Methods Enzymol Nucelar Receptors = Methods. Enzymol. Nuclear and Atomic Physics At One Gigaflop = Nucl Sci R Nuclear and Atomic Physics At One Gigaflop = Nucl. Sci. R. Nuclear and Chemical Waste Management = Nucl Chem Waste Man Nuclear and Chemical Waste Management = Nucl. Chem. Waste Man. Nuclear and Condensed Matter Physics = Aip Conf Proc Nuclear and Condensed Matter Physics = Aip. Conf. Proc. Nuclear and Particle Physics 1993 = Inst Phys Conf Ser Nuclear and Particle Physics 1993 = Inst. Phys. Conf. Ser. Nuclear Applications and Technology = Nucl Appl Technol Nuclear Applications and Technology = Nucl. Appl. Technol. Nuclear Applications = Nucl Appl Nuclear Applications = Nucl. Appl. Nuclear Cardiology, The Basics: How to Set Up and Maintain A Laboratory = Contemp Cardiol Nuclear Cardiology, The Basics: How to Set Up and Maintain A Laboratory = Contemp. Cardiol. Nuclear Collisions From The Mean-field Into The Fragmentation Regime = P Int Sch Phys Nuclear Collisions From The Mean-field Into The Fragmentation Regime = P. Int. Sch. Phys. Nuclear Condensed Matter Physics With Synchrotron Radiation: Basic Principles, Methodology and Applications = Springer Tr Mod Phys Nuclear Condensed Matter Physics With Synchrotron Radiation: Basic Principles, Methodology and Applications = Springer. Tr. Mod. Phys. Nuclear Data Section A = Nucl. Data Sect. A Nuclear Data Section B = Nucl. Data Sect. B Nuclear Data Sheets = Nucl Data Sheets Nuclear Data Sheets = Nucl. Data Sheets Nuclear Decom 2001 = Imeche Conf Trans Nuclear Decom 2001 = Imeche. Conf. Trans. Nuclear Decom 92 : Decommissioning of Radioactive Facilities = Proc Inst Mech Eng S Nuclear Decom 92 : Decommissioning of Radioactive Facilities = Proc. Inst. Mech. Eng. S. Nuclear Desalination of Sea Water = P S Iaea Nuclear Desalination of Sea Water = P. S. Iaea. Nuclear Dynamics: From Quarks to Nuclei = Few Body Sy Nuclear Dynamics: From Quarks to Nuclei = Few. Body. Sy. Nuclear Emergency Data Management = Oecd Proc Nuclear Emergency Data Management = Oecd. Proc. Nuclear Energy and The Environment = Acs Sym Ser Nuclear Energy and The Environment = Acs. Sym. Ser. Nuclear Energy-journal of The British Nuclear Energy Society = Nucl Energ-j Br Nucl Nuclear Energy-journal of The British Nuclear Energy Society = Nucl. Energ-j. Br. Nucl. Nuclear Energy = Nucl Energy Nuclear Energy = Nucl. Energy Nuclear engineering and design/fusion : an international journal devoted to the thermal, mechanical, materials, structural, and design problems of fusion energy = Nucl Eng Des/Fusion Nuclear Engineering and Design-fusion = Nucl Eng Des Fusion Nuclear Engineering and Design-fusion = Nucl. Eng. Des. Fusion. Nuclear Engineering and Design = Nucl Eng Des Nuclear Engineering and Design = Nucl. Eng. Des. Nuclear Engineering and Technology = Nucl Eng Technol Nuclear Engineering and Technology = Nucl. Eng. Technol. Nuclear Engineering International = Nucl Eng Int Nuclear Engineering International = Nucl. Eng. Int. Nuclear Equation of State, Part A = Nato Adv Sci I B-phy Nuclear Equation of State, Part A = Nato. Adv. Sci. I. B-phy. Nuclear Equation of State, Pt B = Nato Adv Sci I B-phy Nuclear Equation of State, Pt B = Nato. Adv. Sci. I. B-phy. Nuclear Export of Viral Rnas = Curr Top Microbiol Nuclear Export of Viral Rnas = Curr. Top. Microbiol. Nuclear Fission and Fission-product Spectroscopy = Aip Conf Proc Nuclear Fission and Fission-product Spectroscopy = Aip. Conf. Proc. Nuclear Fuels: Manufacturing Processes, Forms and Safety = Environ Sci Eng Tech Nuclear Fuels: Manufacturing Processes, Forms and Safety = Environ. Sci. Eng. Tech. Nuclear Fusion = Nucl Fusion Nuclear Fusion = Nucl. Fusion Nuclear Fusion Research = Springer Ser Chem Ph Nuclear Fusion Research = Springer. Ser. Chem. Ph. Nuclear Fusion Research = Springer Series Chem Nuclear Fusion Research = Springer. Series. Chem. Nuclear Geophysics = Nucl Geophys Nuclear Geophysics = Nucl. Geophys. Nuclear Imperative: A Critical Look At The Approaching Energy Crisis (more Physics for Presidents), Second Edition = Top Saf Risk Reliab Nuclear Imperative: A Critical Look At The Approaching Energy Crisis (more Physics for Presidents), Second Edition = Top. Saf. Risk. Reliab. Nuclear Imperative: A Critical Look At The Approaching Energy Crisis = Top Saf Risk Reliab Nuclear Imperative: A Critical Look At The Approaching Energy Crisis = Top. Saf. Risk. Reliab. Nuclear Instruments and Methods in Physics Research = Nucl. Instrum. Methods Phys. Res. Nuclear Instruments and Methods in Physics Research Section A: Accelerators, Spectrometers, Detectors and Associated Equipment = Nucl. Instrum. Methods Phys. Res., Sect. A Nuclear Instruments and Methods in Physics Research Section B: Beam Interactions with Materials and Atoms = Nucl. Instrum. Methods Phys. Res., Sect. B Nuclear Instruments and Methods = Nucl. Instrum. Methods Nuclear Instruments & Methods in Physics Research = Nucl Instrum Methods Nuclear Instruments & Methods in Physics Research = Nucl. Instrum. Methods Nuclear Instruments & Methods in Physics Research Section A-accelerators Spectrometers Detectors and Associated Equipment = Nucl Instrum Meth A Nuclear Instruments & Methods in Physics Research Section A-accelerators Spectrometers Detectors and Associated Equipment = Nucl. Instrum. Meth. A. Nuclear instruments & methods in physics research. Section A, Accelerators, spectrometers, detectors and associated equipment = Nucl Instrum Methods Phys Res A Nuclear Instruments & Methods in Physics Research, Section A: Accelerators, Spectrometers, Detectors, and Associated Equipment = Nucl. Instrum. Methods Phys. Res., Sect. A Nuclear Instruments & Methods in Physics Research Section B-beam Interactions With Materials and Atoms = Nucl Instrum Meth B Nuclear Instruments & Methods in Physics Research Section B-beam Interactions With Materials and Atoms = Nucl. Instrum. Meth. B. Nuclear instruments & methods in physics research. Section B, Beam interactions with materials and atoms = Nucl Instrum Methods Phys Res B Nuclear Instruments & Methods in Physics Research, Section B: Beam Interactions with Materials and Atoms = Nucl. Instrum. Methods Phys. Res., Sect. B Nuclear Instruments & Methods = Nucl Instrum Methods Nuclear Instruments & Methods = Nucl. Instrum. Methods Nuclear Instruments = Nucl. Instrum. Nuclear Logics: Contrasting Paths in East Asia and The Middle East = Princ Stud Int Hist Nuclear Logics: Contrasting Paths in East Asia and The Middle East = Princ. Stud. Int. Hist. Nuclear Magnetic Double Resonance = P Int Sch Phys Nuclear Magnetic Double Resonance = P. Int. Sch. Phys. Nuclear Magnetic Resonance and Its Applications, Proceedings = Molecul Phys Rep Nuclear Magnetic Resonance and Its Applications, Proceedings = Molecul. Phys. Rep. Nuclear Magnetic Resonance and Nucleic Acids = Method Enzymol Nuclear Magnetic Resonance and Nucleic Acids = Method. Enzymol. Nuclear Magnetic Resonance and Nucleic Acids = Methods Enzymol Nuclear Magnetic Resonance and Nucleic Acids = Methods. Enzymol. Nuclear Magnetic Resonance in Modern Technology = Nato Adv Sci Inst Se Nuclear Magnetic Resonance in Modern Technology = Nato. Adv. Sci. Inst. Se. Nuclear Magnetic Resonance = Nuc Magn Reson Nuclear Magnetic Resonance = Nuc. Magn. Reson. Nuclear Magnetic Resonance of Biological Macromolecules, Part C = Method Enzymol Nuclear Magnetic Resonance of Biological Macromolecules, Part C = Method. Enzymol. Nuclear Magnetic Resonance of Biological Macromolecules, Pt B = Method Enzymol Nuclear Magnetic Resonance of Biological Macromolecules, Pt B = Method. Enzymol. Nuclear Magnetic Resonance of Biologica Macromolecules, Pt A = Method Enzymol Nuclear Magnetic Resonance of Biologica Macromolecules, Pt A = Method. Enzymol. Nuclear Magnetic Resonance of Biologica Macromolecules, Pt A = Methods Enzymol Nuclear Magnetic Resonance of Biologica Macromolecules, Pt A = Methods. Enzymol. Nuclear Magnetic Resonance of Paramagnetic Macromolecules = Nato Adv Sci I C-mat Nuclear Magnetic Resonance of Paramagnetic Macromolecules = Nato. Adv. Sci. I. C-mat. Nuclear Magnetic Resonance of Paramagnetic Macromolecules = Nato Adv Sci Inst Se Nuclear Magnetic Resonance of Paramagnetic Macromolecules = Nato. Adv. Sci. Inst. Se. Nuclear Magnetic Resonance, Pt C = Method Enzymol Nuclear Magnetic Resonance, Pt C = Method. Enzymol. Nuclear Magnetic Resonance, Pt C = Methods Enzymol Nuclear Magnetic Resonance, Pt C = Methods. Enzymol. Nuclear Magnetic Resonance, Vol 34 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 34 = Nuc. Magn. Reson. Nuclear Magnetic Resonance, Vol 35 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 35 = Nuc. Magn. Reson. Nuclear Magnetic Resonance, Vol 36 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 36 = Nuc. Magn. Reson. Nuclear Magnetic Resonance, Vol 37 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 37 = Nuc. Magn. Reson. Nuclear Magnetic Resonance, Vol 38 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 38 = Nuc. Magn. Reson. Nuclear Magnetic Resonance, Vol 39 = Nuc Magn Reson Nuclear Magnetic Resonance, Vol 39 = Nuc. Magn. Reson. Nuclear Magnetic Shieldings and Molecular Structure = Nato Adv Sci Inst Se Nuclear Magnetic Shieldings and Molecular Structure = Nato. Adv. Sci. Inst. Se. Nuclear Many-body Problem 2001 = Nato Sci Ser Ii-math Nuclear Many-body Problem 2001 = Nato. Sci. Ser. Ii-math. Nuclear Many-body Problem 2001 = Nato Sci Ser Ii Math Nuclear Many-body Problem 2001 = Nato. Sci. Ser. Ii. Math. Nuclear Materials Safety Management = Nato Sci S 1 Disarm Nuclear Materials Safety Management = Nato. Sci. S. 1. Disarm. Nuclear Materials Safety Management Vol Ii = Nato Sci S 1 Disarm Nuclear Materials Safety Management Vol Ii = Nato. Sci. S. 1. Disarm. Nuclear Matter and Heavy Ion Collisions = Nato Adv Sci I B-phy Nuclear Matter and Heavy Ion Collisions = Nato. Adv. Sci. I. B-phy. Nuclear Matter in Different Phases and Transitions = Fund Theor Nuclear Matter in Different Phases and Transitions = Fund. Theor. Nuclear medicine and biology = Nucl Med Biol Nuclear Medicine and Biology=Nucl Med Biol;; Nuclear Medicine and Biology = Nucl Med Biol Nuclear Medicine and Biology = Nucl. Med. Biol. Nuclear Medicine Annual, 1997 = Nucl Med A Nuclear Medicine Annual, 1997 = Nucl. Med. A. Nuclear Medicine Annual = Nucl Med A Nuclear Medicine Annual = Nucl. Med. A. Nuclear medicine communications = Nucl Med Commun Nuclear Medicine Communications=Nucl Med Commun;; Nuclear Medicine Communications = Nucl Med Commun Nuclear Medicine Communications = Nucl. Med. Commun. Nuclear Medicine-nuklearmedizin = Nucl Med-nukl Nuclear Medicine-nuklearmedizin = Nucl. Med-nukl. Nuclear Medicine-nuklearmedizin = Nuklearmed Nuclear Medicine-nuklearmedizin = Nuklearmed. Nuclear medicine review. Central & Eastern Europe : journal of Bulgarian, Czech, Macedonian, Polish, Romanian, Russian, Slovak, Yugoslav societies of nuclear medicine and Ukrainian Society of Radiology = Nucl Med Rev Cent East Eur Nuclear Medicine Supplementum = Nucl Med Suppl Nuclear Medicine Supplementum = Nucl. Med. Suppl. Nuclear Medicine : The State of The Art of Nuclear Medicine in European = Nucl Med Suppl Nuclear Medicine : The State of The Art of Nuclear Medicine in European = Nucl. Med. Suppl. Nuclear-medizin = Nuclear-med Nuclear-medizin = Nuclear-med. Nuclear-Medizin = Nucl Med (Stuttg) Nuclear-Medizin = Nucl. Med. (Stuttg.) Nuclear Or Not: Does Nuclear Power Have A Place in A Sustainable Energy Future = Energ Clim Environ Nuclear Or Not: Does Nuclear Power Have A Place in A Sustainable Energy Future = Energ. Clim. Environ. Nuclear Physical Methods in Radioecological Investigations of Nuclear Test Sites = Nato Sci S 1 Disarm Nuclear Physical Methods in Radioecological Investigations of Nuclear Test Sites = Nato. Sci. S. 1. Disarm. Nuclear Physics 2008 = Aip Conf Proc Nuclear Physics 2008 = Aip. Conf. Proc. Nuclear Physics and Applications = Aip Conf Proc Nuclear Physics and Applications = Aip. Conf. Proc. Nuclear Physics and Astrophysics = Aip Conf Proc Nuclear Physics and Astrophysics = Aip. Conf. Proc. Nuclear physics. A = Nucl Phys A Nuclear Physics A = Nucl Phys A Nuclear Physics A = Nucl. Phys. A Nuclear Physics At Storage Rings = Aip Conf Proc Nuclear Physics At Storage Rings = Aip. Conf. Proc. Nuclear Physics B = Nuclear Phys. B Proc. Suppl. Nuclear Physics B = Nucl Phys B Nuclear Physics B = Nucl. Phys. B Nuclear Physics B-proceedings Supplements = Nucl Phys B-proc Sup Nuclear Physics B-proceedings Supplements = Nucl. Phys. B-proc. Sup. Nuclear Physics B - Proceedings Supplements = Nucl. Phys. B Proc. Suppl. Nuclear Physics B, Proceedings Supplements = Nucl. Phys. B, Proc. Suppl. Nuclear Physics in Astrophysics Iv (npaiv 2009) = J Phys Conf Ser Nuclear Physics in Astrophysics Iv (npaiv 2009) = J. Phys. Conf. Ser. Nuclear Physics in The 21st Century = Aip Conf Proc Nuclear Physics in The 21st Century = Aip. Conf. Proc. Nuclear Physics, Large and Small = Aip Conf Proc Nuclear Physics, Large and Small = Aip. Conf. Proc. Nuclear Physics Methods and Accelerators in Biology and Medicine = Aip Conf Proc Nuclear Physics Methods and Accelerators in Biology and Medicine = Aip. Conf. Proc. Nuclear Physics = Nuclear Phys. B Nuclear Physics = Nucl Phys Nuclear Physics = Nucl. Phys. Nuclear Physics Trends = Aip Conf Proc Nuclear Physics Trends = Aip. Conf. Proc. Nuclear Physics With Effective Field Theory Ii = Proc Inst Nucl Theor Nuclear Physics With Effective Field Theory Ii = Proc. Inst. Nucl. Theor. Nuclear Physics With Effective Field Theory = Proc Inst Nucl Theor Nuclear Physics With Effective Field Theory = Proc. Inst. Nucl. Theor. Nuclear Plant Journal = Nucl Plant J Nuclear Plant Journal = Nucl. Plant J. Nuclear Power and Energy Security = Nato Sci Peace Sec A Nuclear Power and Energy Security = Nato. Sci. Peace. Sec. A. Nuclear Pre-mrna Processing in Plants = Curr Top Microbiol Nuclear Pre-mrna Processing in Plants = Curr. Top. Microbiol. Nuclear Proficiency Testing = Aip Conf Proc Nuclear Proficiency Testing = Aip. Conf. Proc. Nuclear Proliferation and International Security = Rout Glob Secur Stud Nuclear Proliferation and International Security = Rout. Glob. Secur. Stud. Nuclear Proliferation in South Asia: Crisis Behaviour and The Bomb = Asian Secur Stud Nuclear Proliferation in South Asia: Crisis Behaviour and The Bomb = Asian. Secur. Stud. Nuclear Radiation Detection Materials-2009 = Mater Res Soc Symp P Nuclear Radiation Detection Materials-2009 = Mater. Res. Soc. Symp. P. Nuclear Reaction Data and Nuclear Reactors: Physics, Design and Safety, Nos 1 and 2 = Ictp Lect Notes Nuclear Reaction Data and Nuclear Reactors: Physics, Design and Safety, Nos 1 and 2 = Ictp. Lect. Notes. Nuclear Receptor Coregulators = Vitam Horm Nuclear Receptor Coregulators = Vitam. Horm. Nuclear receptor = Nucl Recept Nuclear Receptors: Current Concepts and Future Challenges = Proteins Cell Regul Nuclear Receptors: Current Concepts and Future Challenges = Proteins. Cell. Regul. Nuclear receptor signaling = Nucl Recept Signal Nuclear Region, Host Galaxy and Environment of Active Galaxies = Rev Mex Ast Astr Nuclear Region, Host Galaxy and Environment of Active Galaxies = Rev. Mex. Ast. Astr. Nuclear Risks in Central Asia = Nato Sci Peace Secur Nuclear Risks in Central Asia = Nato. Sci. Peace. Secur. Nuclear Safety = Nucl Safety Nuclear Safety = Nucl. Safety Nuclear Science and Engineering = Nucl Sci Eng Nuclear Science and Engineering = Nucl. Sci. Eng. Nuclear science and engineering : the journal of the American Nuclear Society = Nucl Sci Eng Nuclear Science and Safety in Europe = Nato Sec Sci B Phys Nuclear Science and Safety in Europe = Nato. Sec. Sci. B. Phys. Nuclear Science and Techniques = Nucl Sci Tech Nuclear Science and Techniques = Nucl. Sci. Tech. Nuclear Science and Technology Series = Nucl Sci & Techn Nuclear Science and Technology Series = Nucl. Sci. &. Techn. Nuclear Science Research Conference Series = Nucl Sci R Nuclear Science Research Conference Series = Nucl. Sci. R. Nuclear Shapes and Nuclear Structure At Low Excitation Energies = Nato Adv Sci I B-phy Nuclear Shapes and Nuclear Structure At Low Excitation Energies = Nato. Adv. Sci. I. B-phy. Nuclear Structural Engineering = Nucl. Struct. Eng. Nuclear Structure 98 = Aip Conf Proc Nuclear Structure 98 = Aip. Conf. Proc. Nuclear Structure and Dynamics '09 = Aip Conf Proc Nuclear Structure and Dynamics '09 = Aip. Conf. Proc. Nuclear Structure and Heavy-ion Reaction Dynamics 1990 = Inst Phys Conf Ser Nuclear Structure and Heavy-ion Reaction Dynamics 1990 = Inst. Phys. Conf. Ser. Nuclear Submarine Decommissioning and Related Problems = Nato Sci S 1 Disarm Nuclear Submarine Decommissioning and Related Problems = Nato. Sci. S. 1. Disarm. Nuclear Techniques in Soil-plant Studies for Sustainable Agriculture and Environmental Preservation = P S Iaea Nuclear Techniques in Soil-plant Studies for Sustainable Agriculture and Environmental Preservation = P. S. Iaea. Nuclear Technology-fusion = Nucl Technol-fusion Nuclear Technology-fusion = Nucl. Technol-fusion. Nuclear technology = Nucl Technol Nuclear Technology = Nucl Technol Nuclear Technology = Nucl. Technol. Nuclear Technology & Radiation Protection = Nucl Technol Radiat Nuclear Technology & Radiation Protection = Nucl. Technol. Radiat. Nuclear Track Detection = Nucl. Track Detect. Nuclear Track Detection = Nucl Tracks Rad Meas Nuclear Track Detection = Nucl. Tracks. Rad. Meas. Nuclear Track Detectors: Design, Methods and Applications = Electr Eng Dev Nuclear Track Detectors: Design, Methods and Applications = Electr. Eng. Dev. Nuclear Tracks and Radiation Measurement = Nucl. Tracks Radiat. Meas. Nuclear Tracks and Radiation Measurements = Nucl. Tracks Radiat. Meas. Nuclear Tracks And Radiation Measurements = Nucl Tracks Radiat Meas Nuclear Tracks and Radiation Measurements = Nucl Tracks Rad Meas Nuclear Tracks and Radiation Measurements = Nucl. Tracks Rad. Meas. Nuclear Tracks = Nucl. Tracks Nuclear Waste Instrumentation Engineering = P Soc Photo-opt Ins Nuclear Waste Instrumentation Engineering = P. Soc. Photo-opt. Ins. Nuclear Waste Management Iv = Ceram Trans Nuclear Waste Management Iv = Ceram. Trans. Nuclear Weapons and Conflict Transformation: The Case of India-pakistan = Asian Secur Stud Nuclear Weapons and Conflict Transformation: The Case of India-pakistan = Asian. Secur. Stud. Nuclear Weapons and Strategy: Us Nuclear Policy for The Twenty-first Century = Contemp Secur Stud Nuclear Weapons and Strategy: Us Nuclear Policy for The Twenty-first Century = Contemp. Secur. Stud. Nuclear Winter's Tale: Science and Politics in The 1980s = Transformations-stud Nuclear Winter's Tale: Science and Politics in The 1980s = Transformations-stud. Nucleation and Atmospheric Aerosols 2000 = Aip Conf Proc Nucleation and Atmospheric Aerosols 2000 = Aip. Conf. Proc. Nucleation and Crystallization in Liquids and Glasses = Ceram Trans Nucleation and Crystallization in Liquids and Glasses = Ceram. Trans. Nucleation and Growth Processes in Materials = Mater Res Soc Symp P Nucleation and Growth Processes in Materials = Mater. Res. Soc. Symp. P. Nuclei and Mesoscopic Physics = Aip Conf Proc Nuclei and Mesoscopic Physics = Aip. Conf. Proc. Nuclei At The Limits = Aip Conf Proc Nuclei At The Limits = Aip. Conf. Proc. Nucleic Acid Methylation = Ucla Sym Bi Nucleic Acid Methylation = Ucla. Sym. Bi. Nucleic Acids and Molecular Biology = Nucleic Acids Mol Bi Nucleic Acids and Molecular Biology = Nucleic Acids Mol. Bi. Nucleic Acids-chemical Structure Types and Components = Nucleic Acids-chem S Nucleic Acids-chemical Structure Types and Components = Nucleic Acids-chem. S. Nucleic Acids: Curvature and Deformation = Acs Sym Ser Nucleic Acids: Curvature and Deformation = Acs. Sym. Ser. Nucleic acids research = Nucleic Acids Res Nucleic Acids Research=Nucleic Acids Res;; Nucleic Acids Research = Nucleic Acids Res Nucleic Acids Research = Nucleic Acids Res. Nucleic acids research. Special publication = Nucleic Acids Res Spec Publ Nucleic acids research. Supplement (2001) = Nucleic Acids Res Suppl Nucleic Acids Research Supplement = Nucleic Acids Res. Suppl. Nucleic acids symposium series (2004) = Nucleic Acids Symp Ser (Oxf) Nucleic Acids Symposium Series = Nucl Acid S Nucleic Acids Symposium Series = Nucl. Acid. S. Nucleic acids symposium series = Nucleic Acids Symp Ser Nucleic Acids Symposium Series=Nucleic Acids Symp Ser;; Nucleic Acids Symposium Series = Nucleic Acids Symp. Ser. Nucleic Acid Therapeutics in Cancer = Canc Drug Disc Dev Nucleic Acid Therapeutics in Cancer = Canc. Drug. Disc. Dev. Nucleic Acid Therapeutics = Nucleic Acid Ther Nucleic Acid Therapeutics = Nucleic Acid Ther. Nuclei Far From Stability/atomic Masses and Fundamental Constants 1992 = Inst Phys Conf Ser Nuclei Far From Stability/atomic Masses and Fundamental Constants 1992 = Inst. Phys. Conf. Ser. Nuclei in The Cosmos Iii - Third International Symposium On Nuclear Astrophysics = Aip Conf Proc Nuclei in The Cosmos Iii - Third International Symposium On Nuclear Astrophysics = Aip. Conf. Proc. Nuclei of Normal Galaxies = Nato Adv Sci Inst Se Nuclei of Normal Galaxies = Nato. Adv. Sci. Inst. Se. Nucleonics = Nucleonics Nucleosides and Nucleotides = Nucleosides Nucleotides Nucleosides, Nucleotides and Nucleic Acids = Nucleosides Nucleotides Nucleic Acids Nucleosides, Nucleotides, and Nucleic Acids = Nucleosides Nucleotides Nucleic Acids Nucleosides, nucleotides & nucleic acids = Nucleosides Nucleotides Nucleic Acids Nucleosides, Nucleotides & Nucleic Acids = Nucleosides, Nucleotides Nucleic Acids Nucleosides Nucleotides & Nucleic Acids = Nucleos Nucleot Nucl Nucleosides Nucleotides & Nucleic Acids = Nucleos. Nucleot. Nucl. Nucleosides & nucleotides = Nucleosides Nucleotides Nucleosides & Nucleotides = Nucleosides Nucleotides Nucleosides & Nucleotides = Nucleos Nucleot Nucleosides & Nucleotides = Nucleos. Nucleot. Nucleotide Analogues As Antiviral Agents = Acs Sym Ser Nucleotide Analogues As Antiviral Agents = Acs. Sym. Ser. Nucleotides and Their Receptors in The Nervous Systems = Prog Brain Res Nucleotides and Their Receptors in The Nervous Systems = Prog. Brain. Res. Nucleus-cambridge = Nucleus-cambridge Nucleus = Nucleus Nuestra historia = Nuestra Hist Nueva enfermeria = Nueva Enferm Nueva Enfermeria = Nueva Enferm. Nueva Estafeta = Nueva Estafeta Nuevos libros / Acuerdo de Cartagena, Junta, Biblioteca = Nuevos Libros Nufusbilim Dergisi = Nufusbil Derg Nuklearmediziner = Nuklearmediziner Nuklearmedizin. Nuclear medicine = Nuklearmedizin Nuklearmedizin-nuclear Medicine = Nuklearmed-nucl Med Nuklearmedizin-nuclear Medicine = Nuklearmed-nucl. Med. Nuklearmedizin = Nuklearmed Nuklearmedizin = Nuklearmed. Nuklearmedizin=Nuklearmedizin;; Nuklearmedizin = Nuklearmedizin Nukleonika = Nukleonika Nukleonik = Nukleonik Numantia. Investigaciones arqueológicas en Castilla y León = Numantia Number Fields and Function Fields - Two Parallel Worlds = Prog Math Number Fields and Function Fields - Two Parallel Worlds = Prog. Math. Number Theoretic Methods: Future Trends = Dev Math Number Theoretic Methods: Future Trends = Dev. Math. Number Theory and Applications = Nato Adv Sci I C-mat Number Theory and Applications = Nato. Adv. Sci. I. C-mat. Number Theory and Dynamical Systems = Lond Math S Number Theory and Dynamical Systems = Lond. Math. S. Number Theory and Its Applications = Dev Math Number Theory and Its Applications = Dev. Math. Number Theory: An Introduction to Mathematics, Second Edition = Universitext Number Theory: An Introduction to Mathematics, Second Edition = Universitext. Number Theory = Crm Proc & Lect Note Number Theory = Crm. Proc. &. Lect. Note. Number Theory: Dreaming in Dreams = Ser Numb Theory Appl Number Theory: Dreaming in Dreams = Ser. Numb. Theory. Appl. Number Theory: Sailing On The Sea of Number Theory = Ser Numb Theory Appl Number Theory: Sailing On The Sea of Number Theory = Ser. Numb. Theory Appl. Number Theory = Tatra Mt Math Publ Number Theory = Tatra. Mt. Math. Publ. Number Theory: Tradition and Modernization = Dev Math Number Theory: Tradition and Modernization = Dev. Math. Number Theory With An Emphasis On The Markoff Spectrum = Lect Notes Pure Appl Number Theory With An Emphasis On The Markoff Spectrum = Lect. Notes. Pure. Appl. Numen Book Series = Numen Book Series Numen-international Review for The History of Religions = Numen Numen-international Review for The History of Religions = Numen. Numen. International Review for the History of Religions = Numen Numen = Numen Numeral Types and Changes Worldwide = Trend Lin S Numeral Types and Changes Worldwide = Trend. Lin. S. Numerical Algorithms = Numer. Algorithms Numerical Algorithms = Numer Algorithms Numerical Algorithms = Numer. Algorithms Numerical Analysis 1991 = Pitman Res Numerical Analysis 1991 = Pitman. Res. Numerical Analysis 1993 = Pitman Res Numerical Analysis 1993 = Pitman. Res. Numerical Analysis 1999 = Ch Crc Res Notes Numerical Analysis 1999 = Ch. Crc. Res. Notes. Numerical Analysis 1999 = Ch Crc Res Notes Mat Numerical Analysis 1999 = Ch. Crc. Res. Notes. Mat. Numerical Analysis and Applications = Numer. Anal. Appl. Numerical Analysis and Applied Mathematics = Aip Conf Proc Numerical Analysis and Applied Mathematics = Aip. Conf. Proc. Numerical Analysis and Applied Mathematics, Vols 1 and 2 = Aip Conf Proc Numerical Analysis and Applied Mathematics, Vols 1 and 2 = Aip. Conf. Proc. Numerical Analysis and Applied Mathematics, Vols I-iii = Aip Conf Proc Numerical Analysis and Applied Mathematics, Vols I-iii = Aip. Conf. Proc. Numerical Analysis and Its Applications = Lect Notes Comput Sc Numerical Analysis and Its Applications = Lect. Notes. Comput. Sc. Numerical Analysis and Simulation in Vehicle Engineering = Vdi Bericht Numerical Analysis and Simulation in Vehicle Engineering = Vdi. Bericht. Numerical Analysis for Statisticians, Second Edition = Stat Comput Ser Numerical Analysis for Statisticians, Second Edition = Stat. Comput. Ser. Numerical Analysis: Methods and Mathematical Software, Supplement = Ann Univ Ferrara Numerical Analysis: Methods and Mathematical Software, Supplement = Ann. Univ. Ferrara. Numerical Astrophysics = Astrophys Space Sc L Numerical Astrophysics = Astrophys. Space. Sc. L. Numerical Combustion = Lect Notes Phys Numerical Combustion = Lect. Notes. Phys. Numerical Computer Methods, Part C = Method Enzymol Numerical Computer Methods, Part C = Method. Enzymol. Numerical Computer Methods, Pt B = Method Enzymol Numerical Computer Methods, Pt B = Method. Enzymol. Numerical Computer Methods, Pt D = Method Enzymol Numerical Computer Methods, Pt D = Method. Enzymol. Numerical Computer Methods, Pt D = Methods Enzymol Numerical Computer Methods, Pt D = Methods. Enzymol. Numerical Computer Methods, Pt E = Method Enzymol Numerical Computer Methods, Pt E = Method. Enzymol. Numerical Computing With Simulink, Vol I: Creating Simulations = Other Titl Appl Math Numerical Computing With Simulink, Vol I: Creating Simulations = Other. Titl. Appl. Math. Numerical Determination of The Electronic Structure of Atoms, Diatomic and Polyatomic Molecules = Nato Adv Sci I C-mat Numerical Determination of The Electronic Structure of Atoms, Diatomic and Polyatomic Molecules = Nato. Adv. Sci. I. C-mat. Numerical Ecology With R = Use R Numerical Ecology With R = Use. R Numerical Flow Simulation Iii = Note N Fl Mech Mul D Numerical Flow Simulation Iii = Note. N. Fl. Mech. Mul. D. Numerical Flow Simulation Iii = Notes Numer Fluid Me Numerical Flow Simulation Iii = Notes. Numer. Fluid. Me. Numerical Flow Simulation Ii = Note Num Fl Numerical Flow Simulation Ii = Note. Num. Fl. Numerical Functional Analysis and Optimization = Numer Func Anal Opt Numerical Functional Analysis and Optimization = Numer. Func. Anal. Opt. Numerical Functional Analysis and Optimization = Numer. Funct. Anal. Optim. Numerical Geometry of Non-rigid Shapes = Monogr Comput Sci Numerical Geometry of Non-rigid Shapes = Monogr. Comput. Sci. Numerical Grid Methods and Their Applications to Schrodingers Equation = Nato Adv Sci Inst Se Numerical Grid Methods and Their Applications to Schrodingers Equation = Nato. Adv. Sci. Inst. Se. Numerical Heat Transfer = Numer Heat Tr A-appl Numerical Heat Transfer = Numer. Heat Tr. A-appl. Numerical Heat Transfer = Numer Heat Transfer Numerical Heat Transfer = Numer. Heat Transfer Numerical Heat Transfer Part A-applications = Numer Heat Tr A-appl Numerical Heat Transfer Part A-applications = Numer. Heat Tr. A-appl. Numerical Heat Transfer Part A = Numer. Heat Transfer, Part A Numerical Heat Transfer Part B-fundamentals = Numer Heat Tr B-fund Numerical Heat Transfer Part B-fundamentals = Numer. Heat Tr. B-fund. Numerical Heat Transfer Part B = Numer. Heat Transfer, Part B Numerical Insights = Numer Insight Numerical Insights = Numer. Insight. Numerical Integration Iv = Int S Num M Numerical Integration Iv = Int. S. Num. M. Numerical Integration = Nato Adv Sci I C-mat Numerical Integration = Nato. Adv. Sci. I. C-mat. Numerical Linear Algebra With Applications = Numer Linear Algebr Numerical Linear Algebra With Applications = Numer. Linear Algebr. Numerical Linear Algebra with Applications = Numer. Linear Algebra Appl. Numerical Linear Approximation in C = Ch Crc Numer Anal Sc Numerical Linear Approximation in C = Ch. Crc. Numer. Anal. Sc. Numerical Mathematics and Scientific Computation = Numer Math Sci Comp Numerical Mathematics and Scientific Computation = Numer. Math. Sci. Comp. Numerical Mathematics and Scientific Computation = Numer. Math. Sci. Comput. Numerical Mathematics = Numer. Math. J. Chinese Univ. Numerical Mathematics = Numer. Math. J. Chinese Univ. (English Ser.) Numerical Mathematics-theory Methods and Applications = Numer Math-theory Me Numerical Mathematics-theory Methods and Applications = Numer. Math-theory. Me. Numerical Methods and Algorithms = Numer Methods Algori Numerical Methods and Algorithms = Numer. Methods Algori. Numerical Methods and Applications = Lect Notes Comput Sc Numerical Methods and Applications = Lect. Notes. Comput. Sc. Numerical Methods and Constitutive Modelling in Geomechanics = Cism Cour L Numerical Methods and Constitutive Modelling in Geomechanics = Cism. Cour. L. Numerical Methods and Error Bounds = Math Res Numerical Methods and Error Bounds = Math. Res. Numerical Methods for Bifurcation Problems and Large-scale Dynamical Systems = Ima V Math Numerical Methods for Bifurcation Problems and Large-scale Dynamical Systems = Ima. V. Math. Numerical Methods for Bifurcation Problems and Large-scale Dynamical Systems = Ima Vol Math Appl Numerical Methods for Bifurcation Problems and Large-scale Dynamical Systems = Ima. Vol. Math. Appl. Numerical Methods for Controlled Stochastic Delay Systems = Syst Control-found A Numerical Methods for Controlled Stochastic Delay Systems = Syst. Control-found. A. Numerical Methods for Evolutionary Differential Equations = Comput Sci Eng Ser Numerical Methods for Evolutionary Differential Equations = Comput. Sci. Eng. Ser. Numerical Methods for Finance = Ch Crc Financ Math Numerical Methods for Finance = Ch. Crc. Financ. Math. Numerical Methods for Fluid Dynamics: With Applications to Geophysics, Second Edition = Texts Appl Math Numerical Methods for Fluid Dynamics: With Applications to Geophysics, Second Edition = Texts. Appl. Math. Numerical Methods for Free Boundary Problems = Int S Num M Numerical Methods for Free Boundary Problems = Int. S. Num. M. Numerical Methods for Hyperbolic and Kinetic Problems = Irma L Math The Phys Numerical Methods for Hyperbolic and Kinetic Problems = Irma. L. Math. The. Phys. Numerical Methods for Nonsmooth Dynamical Systems = Lect Notes Appl Comp Numerical Methods for Nonsmooth Dynamical Systems = Lect. Notes. Appl. Comp. Numerical Methods for Optimal Control Problems With State Constraints = Lect Notes Math Numerical Methods for Optimal Control Problems With State Constraints = Lect. Notes. Math. Numerical Methods for Partial Differential Equations = Numer. Methods Partial Differential Equations Numerical Methods for Partial Differential Equations = Numer Meth Part D E Numerical Methods for Partial Differential Equations = Numer. Meth. Part. D. E. Numerical Methods for Solving Inverse Problems of Mathematical Physics = Inver Ill Posed Prob Numerical Methods for Solving Inverse Problems of Mathematical Physics = Inver. Ill. Posed. Prob. Numerical Methods for Structured Matrices and Applications = Oper Theory Adv Appl Numerical Methods for Structured Matrices and Applications = Oper. Theory. Adv. Appl. Numerical Methods for Two-phase Incompressible Flows = Spr Ser Comput Math Numerical Methods for Two-phase Incompressible Flows = Spr. Ser. Comput. Math. Numerical Methods for Wave Propagation = Fluid Mec A Numerical Methods for Wave Propagation = Fluid. Mec. A. Numerical Methods in Approximation Theory, Vol 9 = Int S Num M Numerical Methods in Approximation Theory, Vol 9 = Int. S. Num. M. Numerical Methods in Geotechnical Engineering = Proc Monogr Eng Wate Numerical Methods in Geotechnical Engineering = Proc. Monogr. Eng. Wate. Numerical Modeling in Materials Science and Engineering = Spr Ser Comput Math Numerical Modeling in Materials Science and Engineering = Spr. Ser. Comput. Math. Numerical Modeling in Open Channel Hydraulics = Water Sci Technol Li Numerical Modeling in Open Channel Hydraulics = Water. Sci. Technol. Li. Numerical Modeling of Space Plasma Flows: Astronum-2006 = Astr Soc P Numerical Modeling of Space Plasma Flows: Astronum-2006 = Astr. Soc. P. Numerical Modeling of Space Plasma Flows: Astronum-2007 = Astr Soc P Numerical Modeling of Space Plasma Flows: Astronum-2007 = Astr. Soc. P. Numerical Modeling of Space Plasma Flows: Astronum-2008 = Astr Soc P Numerical Modeling of Space Plasma Flows: Astronum-2008 = Astr. Soc. P. Numerical Modeling of Space Plasma Flows Astronum-2009 = Astr Soc P Numerical Modeling of Space Plasma Flows Astronum-2009 = Astr. Soc. P. Numerical Modeling of The Global Atmosphere in The Climate System = Nato Adv Sci I C-mat Numerical Modeling of The Global Atmosphere in The Climate System = Nato. Adv. Sci. I. C-mat. Numerical Modelling of Hydrodynamics for Water Resources = Proc Monogr Eng Wate Numerical Modelling of Hydrodynamics for Water Resources = Proc. Monogr. Eng. Wate. Numerical Modelling of Nonlinear Stellar Pulsations = Nato Adv Sci I C-mat Numerical Modelling of Nonlinear Stellar Pulsations = Nato. Adv. Sci. I. C-mat. Numerical Models for Differential Problems = Ms A Mod Simul Numerical Models for Differential Problems = Ms. A. Mod. Simul. Numerical Models in Geomechanics: Numog X = Proc Monogr Eng Wate Numerical Models in Geomechanics: Numog X = Proc. Monogr. Eng. Wate. Numerical Optimization, Second Edition = Springer Ser Oper Re Numerical Optimization, Second Edition = Springer. Ser. Oper. Re. Numerical Regularization for Atmospheric Inverse Problems = Springer-prax Books Numerical Regularization for Atmospheric Inverse Problems = Springer-prax. Books. Numerical Semigroups = Dev Math Numerical Semigroups = Dev. Math. Numerical Simulation of Oscillatory Convection in Low-pr Fluids = Note Num Fl Numerical Simulation of Oscillatory Convection in Low-pr Fluids = Note. Num. Fl. Numerical Simulation of Turbulent Flows and Noise Generation = Notes Numer Fluid Me Numerical Simulation of Turbulent Flows and Noise Generation = Notes. Numer. Fluid. Me. Numerical Software With Result Verification = Lect Notes Comput Sc Numerical Software With Result Verification = Lect. Notes. Comput. Sc. Numerical Solution of Markov Chains = Prob Pur Ap Numerical Solution of Markov Chains = Prob. Pur. Ap. Numerical Solution of Stochastic Differential Equations With Jumps in Finance = Stoch Mod Appl Proba Numerical Solution of Stochastic Differential Equations With Jumps in Finance = Stoch. Mod. Appl. Proba. Numerical Solutions of Partial Differential Equations = Ad Co Math Numerical Solutions of Partial Differential Equations = Ad. Co. Math. Numerical Techniques for Boundary Element Methods = Note Num Fl Numerical Techniques for Boundary Element Methods = Note. Num. Fl. Numerical Tools for Ship Design = Vtt Symp Numerical Tools for Ship Design = Vtt. Symp. Numerical Treatment of Eigenvalue Problems, Vol 5 = Int S Num M Numerical Treatment of Eigenvalue Problems, Vol 5 = Int. S. Num. M. Numerical Treatment of Multiphase Flows in Porous Media = Lect Notes Phys Numerical Treatment of Multiphase Flows in Porous Media = Lect. Notes. Phys. Numerical Treatment of Multi-scale Problems = Note Num Fl Numerical Treatment of Multi-scale Problems = Note. Num. Fl. Numerical Validation in Current Hardware Architectures = Lect Notes Comput Sc Numerical Validation in Current Hardware Architectures = Lect. Notes. Comput. Sc. Numerics of Ordinary Differential Equations: Initial and Boundary Volume Problems = Degruyter Lehrb Numerics of Ordinary Differential Equations: Initial and Boundary Volume Problems = Degruyter. Lehrb. Numerics of Unilateral Contacts and Friction = Lect Notes Appl Comp Numerics of Unilateral Contacts and Friction = Lect. Notes. Appl. Comp. Numerische Mathematik = Numer. Math. Numerische Mathematik = Numer Math Numerische Mathematik = Numer. Math. Numerous Meanings: The Meaning of English Cardinals and The Legacy of Paul Grice = Curr Res Semant Prag Numerous Meanings: The Meaning of English Cardinals and The Legacy of Paul Grice = Curr. Res. Semant. Prag. Numiform '07: Materials Processing and Design: Modeling, Simulation and Applications, Pts I and Ii = Aip Conf Proc Numiform '07: Materials Processing and Design: Modeling, Simulation and Applications, Pts I and Ii = Aip. Conf. Proc. Numiform 2010, Vols 1 and 2 = Aip Conf Proc Numiform 2010, Vols 1 and 2 = Aip. Conf. Proc. Numisheet 2005: Proceedings of The 6th International Conference and Workshop On Numerical Simulation of 3d Sheet Metal Forming Processes, Pts A and B = Aip Conf Proc Numisheet 2005: Proceedings of The 6th International Conference and Workshop On Numerical Simulation of 3d Sheet Metal Forming Processes, Pts A and B = Aip. Conf. Proc. Numisma. Revista de la Sociedad iberoamericana de estudios numismáticos = Numisma Numismatica e antichità classiche: quaderni ticinesi = NAC Numismatica e antichità classiche. Quaderni ticinesi = NumAntCl Numismatica. Periodico di cultura e di informazione numismatica = NumismaticaRom Numismatic Chronicle = NC Numismatic Circular = NCirc Numismatic Literature = NL Numismatika i èpigraphika = NE Numismatisches Nachrichtenblatt: Organ des Verbandes der Dt. Münzvereine = NNB Numismatische Zeitschrift = NumZ Numismatische Zeitschrift = NZ Numizmatičar. Casopis za anticki i stari jugoslavenski novac = Numizmaticar Numizmatika i epigrafika = NumEpigr Nummus. Sociedade portuguesa de numismatica = Nummus Nuncius / Istituto e museo di storia della scienza = Nuncius Nuncius-journal of The History of Science = Nuncius Nuncius-journal of The History of Science = Nuncius. Nuntius radiologicus = Nunt Radiol Nuntius Radiologicus = Nunt. Radiol. Nuova antologia = Nuova Antologia Nuova Rivista di Neurologia = Nuova Riv. Neurol. Nuova Rivista Musicale Italiana = Nuova Riv Music Ital Nuova Rivista Musicale Italiana = Nuova Riv. Music. Ital. Nuova rivista storica = NRS Nuova rivista storica = Nuova Riv Stor Nuova Rivista Storica = Nuova Riv Storica Nuova Rivista Storica = Nuova Riv. Storica Nuovi annali della Facoltà di magistero dell'Università di Messina = AnnMessMag Nuovi annali della Facoltà di Magistero dell'Università di Messina = NAFM Nuovi annali d'igiene e microbiologia = Nuovi Ann Ig Microbiol Nuovi Annali d'Igiene e Microbiologia = Nuovi Ann. Ig. Microbiol. Nuovi studi fanesi = NStFan Nuovo bullettino archeologico sardo = BASard Nuovo Cimento A = Nuovo Ciment A Nuovo Cimento A = Nuovo Ciment. A Nuovo Cimento B = Nuovo Ciment B Nuovo Cimento B = Nuovo Ciment. B Nuovo Cimento Della Societa Italiana Di Fisica A-nuclei Particles and Fields = Nuovo Cimento A Nuovo Cimento Della Societa Italiana Di Fisica A-nuclei Particles and Fields = Nuovo Cimento A. Nuovo Cimento Della Societa Italiana Di Fisica A = Nuov Cimen S I Fis A Nuovo Cimento Della Societa Italiana Di Fisica A = Nuov. Cimen. S. I. Fis. A Nuovo Cimento della Societa Italiana di Fisica A = Nuovo Cimento Soc. Ital. Fis., A Nuovo Cimento Della Societa Italiana Di Fisica B-basic Topics in Physics = Nuovo Cim B Nuovo Cimento Della Societa Italiana Di Fisica B-basic Topics in Physics = Nuovo Cim. B. Nuovo Cimento Della Societa Italiana Di Fisica B-general Physics Relativity Astronomy and Mathematical Physics and Methods = Nuovo Cimento B Nuovo Cimento Della Societa Italiana Di Fisica B-general Physics Relativity Astronomy and Mathematical Physics and Methods = Nuovo Cimento B. Nuovo Cimento Della Societa Italiana Di Fisica B = Nuov Cimen S I Fis B Nuovo Cimento Della Societa Italiana Di Fisica B = Nuov. Cimen. S. I. Fis. B Nuovo Cimento della Societa Italiana di Fisica B = Nuovo Cimento Soc. Ital. Fis., B Nuovo Cimento Della Societa Italiana Di Fisica C-colloquia On Physics = Nuovo Cimento C Nuovo Cimento Della Societa Italiana Di Fisica C-colloquia On Physics = Nuovo Cimento C. Nuovo Cimento Della Societa Italiana Di Fisica C-geophysics and Space Physics = Nuovo Cimento C Nuovo Cimento Della Societa Italiana Di Fisica C-geophysics and Space Physics = Nuovo Cimento C. Nuovo Cimento della Societa Italiana di Fisica C = Nuovo Cimento Soc. Ital. Fis., C Nuovo Cimento Della Societa Italiana Di Fisica D-condensed Matter Atomic Molecular and Chemical Physics Fluids Plasmas Biophysics = Nuovo Cimento D Nuovo Cimento Della Societa Italiana Di Fisica D-condensed Matter Atomic Molecular and Chemical Physics Fluids Plasmas Biophysics = Nuovo Cimento D. Nuovo Cimento della Societa Italiana di Fisica D = Nuovo Cimento Soc. Ital. Fis., D Nuovo Cimento = Nuovo Cimento Nuovo Didaskaleion = NuovDidask Nuovo giornale botanico italiano = Nuovo g. bot. ital. Nur al-Mantiq wal-Ma\rasp rifah = Nur al-Mantiq wal-Ma\rasp rifah Nürnberger Blätter zur Archäologie. Publikationsreihe des Bildungszentrums der Stadt Nürnberg, Fachbereich Archäologie = NueBlA Nurse anesthesia = Nurse Anesth Nurse Anesthesia = Nurse Anesth. Nurse Author and Editor = Nurse Author Ed. Nurse author & editor = Nurse Author Ed Nurse education in practice = Nurse Educ Pract Nurse Education Today = Nurs Educ Today Nurse Education Today = Nurs. Educ. Today Nurse education today = Nurse Educ Today Nurse Education Today = Nurse Educ. Today Nurse Educator = Nurs Educ Nurse Educator = Nurs. Educ. Nurse educator = Nurse Educ Nurse Educator = Nurse Educ. Nurse Educators Opportunities and Innovations = Nurse Educ. Oppor. Innov. Nurse Educators Opportunities And Innovations = Nurse Educ Oppor Innov Nurse managers' bookshelf = Nurse Managers Bookshelf Nurse Managers Bookshelf = Nurse Managers Bookshelf Nurse Practitioner Forum-current Topics and Communications = Nurs Pract Forum Nurse Practitioner Forum-current Topics and Communications = Nurs. Pract. Forum. Nurse practitioner forum = Nurse Pract Forum Nurse Practitioner Forum = Nurse Pract. Forum Nurse Practitioner=Nurse Pract;; Nurse Practitioner = Nurse Pract. Nurse researcher = Nurse Res Nursery Crops Development, Evaluation, Production and Use = Acta Hortic Nursery Crops Development, Evaluation, Production and Use = Acta. Hortic. Nursery World Routledge Essential Guides for Early Years Practitioners = Nurs World Routledge Nursery World Routledge Essential Guides for Early Years Practitioners = Nurs. World Routledge Nurses Lamp = Nurses Lamp Nursing administration quarterly = Nurs Adm Q Nursing Administration Quarterly = Nurs. Adm. Q. Nursing and Health Care = Nurs. Health Care Nursing and Health Care Perspectives = Nurs Health Care Per Nursing and Health Care Perspectives = Nurs. Health Care Per. Nursing and health care perspectives = Nurs Health Care Perspect Nursing and Health Care Perspectives = Nurs. Health Care Perspect. Nursing BC = Nurs. BC Nursing BC / Registered Nurses Association of British Columbia = Nurs BC Nursing Beyond The Year 2000 = Who Tech Rep Ser Nursing Beyond The Year 2000 = Who. Tech. Rep. Ser. Nursing careers = Nurs Careers Nursing Careers = Nurs. Careers Nursing care = Nurs Care Nursing Care = Nurs. Care Nursing case management : managing the process of patient care = Nurs Case Manag Nursing Case Management = Nurs. Case Manag. Nursing Clinics of North America = Nurs Clin N Am Nursing Clinics of North America = Nurs. Clin. N. Am. Nursing Clinics of North America=Nurs Clin North Am;; Nursing Clinics of North America = Nurs. Clin. North Am. Nursing Connections = Nurs Connect Nursing Connections = Nurs. Connect. Nursingconnections = Nursingconnections NursingConnections = Nursingconnections Nursing diagnosis : ND : the official journal of the North American Nursing Diagnosis Association = Nurs Diagn Nursing Diagnosis = Nurs. Diagn. Nursing digest = Nurs Dig Nursing dynamics = Nurs Dyn Nursing Dynamics = Nurs. Dyn. Nursing economic$ = Nurs Econ Nursing Economics = Nurs Econ Nursing Economics = Nurs. Econ. Nursing education monographs = Nurs Educ Monogr Nursing Education Monographs = Nurs. Educ. Monogr. Nursing education perspectives = Nurs Educ Perspect Nursing educators microworld = Nurs Educ Microworld Nursing Educators Microworld = Nurs. Educ. Microworld Nursing ethics = Nurs Ethics Nursing Ethics = Nurs Ethics Nursing Ethics = Nurs. Ethics Nursing focus = Nurs Focus Nursing Focus = Nurs. Focus Nursing Forum = Nurs Forum Nursing Forum = Nurs. Forum Nursing forum = Nurs Forum (Auckl) Nursing Forum = Nurs. Forum (Auckl.) Nursing for women's health = Nurs Womens Health Nursing & Health Care = Nurs Health Care Nursing & Health Care = Nurs. Health Care Nursing & health care : official publication of the National League for Nursing = Nurs Health Care Nursing & health sciences = Nurs Health Sci Nursing & Health Sciences = Nurs Health Sci Nursing & Health Sciences = Nurs. Health Sci. Nursing History Review=Nurs Hist Rev;; Nursing History Review = Nurs Hist Rev Nursing History Review = Nurs. Hist. Rev. Nursing history review : official journal of the American Association for the History of Nursing = Nurs Hist Rev Nursing homes and senior citizen care = Nurs Homes Sr Citiz Care Nursing Homes and Senior Citizen Care = Nurs. Homes Sr. Citiz. Care Nursing homes = Nurs Homes Nursing Homes = Nurs. Homes Nursing in critical care = Nurs Crit Care Nursing in Critical Care = Nurs Crit Care Nursing in Critical Care = Nurs. Crit. Care Nursing Informatics = St Heal T Nursing Informatics = St. Heal. T. Nursing Informatics: Where Technology and Caring Meet, Fourth Edition = Health Inform Ser Nursing Informatics: Where Technology and Caring Meet, Fourth Edition = Health. Inform. Ser. Nursing inquiry = Nurs Inq Nursing Inquiry = Nurs Inq Nursing Inquiry = Nurs. Inq. Nursing Issues Problems and Challenges = Nurs Iss Probl Chall Nursing Issues Problems and Challenges = Nurs. Iss. Probl. Chall. Nursing journal = Nurs J (Manila) Nursing Journal = Nurs. J. (Manila) Nursing Journal of India = Nurs. J. India Nursing Journal of Singapore = Nurs. J. Singapore Nursing Law and Ethics = Nurs. Law Ethics Nursing law & ethics, = Nurs Law Ethics Nursing law's Regan report = Nurs Law Regan Rep Nursing leadership forum = Nurs Leadersh Forum Nursing leadership = Nurs Leadersh Nursing Leadership = Nurs. Leadersh. Nursing Life = Nurs. Life NursingLife = Nurs Life Nursing management (Harrow, London, England : 1994) = Nurs Manag (Harrow) Nursing management = Nurs Manage Nursing Management = Nurs. Manag. (Harrow) Nursing mirror and midwives journal = Nurs Mirror Midwives J Nursing Mirror and Midwives Journal = Nurs. Mirror Midwives J. Nursing mirror = Nurs Mirror Nursing Mirror = Nurs. Mirror Nursing Montreal = Nurs Montreal Nursing Montreal = Nurs. Montreal Nursing news = Nurs News (Meriden) Nursing News = Nurs. News (Meriden) Nursing New Zealand = Nurs N Z Nursing New Zealand = Nurs. N. Z. Nursing New Zealand (Wellington, N.Z. : 1995) = Nurs N Z Nursing = Nursing (Lond.) Nursing = Nursing (Lond) Nursing older people = Nurs Older People Nursing outlook = Nurs Outlook Nursing Outlook=Nurs Outlook;; Nursing Outlook = Nurs Outlook Nursing Outlook = Nurs. Outlook Nursing Papers = Nurs. Pap. Nursing papers. Perspectives en nursing = Nurs Pap Nursing philosophy : an international journal for healthcare professionals = Nurs Philos Nursing Philosophy = Nurs Philos Nursing Philosophy = Nurs. Philos. Nursing practice (Edinburgh, Scotland) = Nurs Pract Nursing Practice = Nurs. Pract. Nursing Practice = Who Tech Rep Ser Nursing Practice = Who. Tech. Rep. Ser. Nursing praxis in New Zealand inc = Nurs Prax N Z Nursing Praxis in New Zealand = Nurs. Prax. N. Z. Nursing quality connection = Nurs Qual Connect Nursing Quality Connection = Nurs. Qual. Connect. Nursing Quebec = Nurs Que Nursing Quebec = Nurs. Que. Nursing Research Conference = Nurs Res Conf Nursing Research Conference = Nurs. Res. Conf. Nursing research = Nurs Res Nursing Research=Nurs Res;; Nursing Research = Nurs Res Nursing Research = Nurs. Res. Nursing research report = Nurs Res Rep Nursing Research Report = Nurs. Res. Rep. Nursing RSA = Nurs. RSA Nursing science = Nurs Sci Nursing Science = Nurs. Sci. Nursing science quarterly = Nurs Sci Q Nursing Science Quarterly = Nurs. Sci. Q. Nursing Science Quarterly = Nurs Sci Quart Nursing Science Quarterly = Nurs. Sci. Quart. Nursing Spectrum (D.C./Baltimore Metro Edition) = Nurs. Spectr. (Wash. D. C.) Nursing spectrum (D.C./Baltimore metro ed.) = Nurs Spectr (Wash D C) Nursing Spectrum (Florida Edition) = Nurs. Spectr. (Fla. Ed.) Nursing spectrum (Florida ed.) = Nurs Spectr (Fla Ed) Nursing Spectrum (Greater Chicago/NE Illinois and NW Indiana Edition) = Nurs. Spectr. (Gt. Chic. NE Ill. NW Indiana Ed.) Nursing spectrum (Greater Philadelphia/Tri-state ed.) = Nurs Spectr (Gt Phila Tri State Ed) Nursing Spectrum (Greater Philadelphia/Tri-State ed) = Nurs. Spectr. (Gt. Phila. Tri State Ed.) Nursing spectrum (Illinois ed.) = Nurs Spectr (Gt Chic Ne Ill Nw Indiana Ed) Nursing Spectrum (New England Edition) = Nurs. Spectr. (N. Engl. Ed.) Nursing spectrum (New England ed.) = Nurs Spectr (N Engl Ed) Nursing staff development insider = Nurs Staff Dev Insid Nursing Staff Development Insider = Nurs. Staff Dev. Insid. Nursing Standard = Nurs. Stand. Nursing standard : official newspaper of the Royal College of Nursing = Nurs Stand Nursing standard (Royal College of Nursing (Great Britain) : 1987) = Nurs Stand Nursing standard (Royal College of Nursing (Great Britain) : 1987). Special supplement. = Nurs Stand Spec Suppl Nursing Standard. Special Supplement = Nurs. Stand. Spec. Suppl. Nursing success today = Nurs Success Today Nursing Success Today = Nurs. Success Today Nursing the elderly : in hospital, homes and the community = Nurs Elder Nursing the Elderly = Nurs. Elder. Nursing times. Nursing homes = Nurs Times Nurs Homes Nursing times = Nurs Times Nursing Times = Nurs. Times Nursing world = Nurs World Nurturing Faith Through The Book of Mormon = Sperry Symp Ser Nurturing Faith Through The Book of Mormon = Sperry. Symp. Ser. Nutraceutical Beverages: Chemistry, Nutrition, and Health Effects = Acs Sym Ser Nutraceutical Beverages: Chemistry, Nutrition, and Health Effects = Acs. Sym. Ser. Nutricion Hospitalaria=Nutr Hosp;; Nutricion Hospitalaria = Nutr Hosp Nutricion Hospitalaria = Nutr. Hosp. Nutricion hospitalaria : organo oficial de la Sociedad Espanola de Nutricion Parenteral y Enteral = Nutr Hosp Nutrient Cycling in Agroecosystems = Nutr Cycl Agroecosys Nutrient Cycling in Agroecosystems = Nutr. Cycl. Agroecosys. Nutrient Cycling in Agroecosystems = Nutr. Cycling Agroecosyst. Nutrient Regulation During Pregnancy, Lactation, and Infant Growth = Adv Exp Med Biol Nutrient Regulation During Pregnancy, Lactation, and Infant Growth = Adv. Exp. Med. Biol. Nutrients and Cancer Prevention = Exp Biol M Nutrients and Cancer Prevention = Exp. Biol. M. Nutrients, Dietary Supplements, and Nutriceuticals: Cost Analysis Versus Clinical Benefits = Nutr Health Ser Nutrients, Dietary Supplements, and Nutriceuticals: Cost Analysis Versus Clinical Benefits = Nutr. Health. Ser. Nutrients in Salmonid Ecosystems: Sustaining Production and Biodiversity = Am Fish S S Nutrients in Salmonid Ecosystems: Sustaining Production and Biodiversity = Am. Fish. S. S. Nutrigenetics and Nutrigenomics = World Rev Nutr Diet Nutrigenetics and Nutrigenomics = World. Rev. Nutr. Diet. Nutrigenomics - Opportunities in Asia = Forum Nutr Nutrigenomics - Opportunities in Asia = Forum. Nutr. Nutritio et dieta; European review of nutrition and dietetics = Nutr Dieta Eur Rev Nutr Diet Nutritio et Dieta (European Review of Nutrition and Dietetics) = Nutr. Dieta Eur. Rev. Nutr. Diet. Nutritio Et Dieta = Nutr Dieta Nutritio Et Dieta = Nutr. Dieta Nutrition abstracts and reviews = Nutr Abstr Rev Nutrition Abstracts and Reviews = Nutr. Abstr. Rev. Nutrition abstracts and reviews. Series A: Human and experimental = Nutr Abstr Rev Ser Hum Exp Nutritional Adaptation to New Life-styles = Bibl Nutr Diet Nutritional Adaptation to New Life-styles = Bibl. Nutr. Diet. Nutritional and Acid-base Aspects of Amino Acid Metabolism = Contrib Nephrol Nutritional and Acid-base Aspects of Amino Acid Metabolism = Contrib. Nephrol. Nutritional and Dietary Significance of Goat Milk = Colloq Inra Nutritional and Dietary Significance of Goat Milk = Colloq. Inra. Nutritional and Pharmacological Strategies in Chronic Renal Failure = Contrib Nephrol Nutritional and Pharmacological Strategies in Chronic Renal Failure = Contrib. Nephrol. Nutritional and Toxicological Consequences of Food Processing = Adv Exp Med Biol Nutritional and Toxicological Consequences of Food Processing = Adv. Exp. Med. Biol. Nutritional Anemias = Nestle Nutr Works Se Nutritional Anemias = Nestle. Nutr. Works. Se. Nutritional Aspects of Osteoporosis '94 = Chall Mod Med Nutritional Aspects of Osteoporosis '94 = Chall. Mod. Med. Nutritional Aspects of Osteoporosis = Serono Sym Nutritional Aspects of Osteoporosis = Serono. Sym. Nutritional Aspects of Osteoporosis = Serono Symp Nutritional Aspects of Osteoporosis = Serono. Symp. Nutritional Biochemistry of Space Flight = Space Sci Explor Pol Nutritional Biochemistry of Space Flight = Space Sci. Explor. Pol. Nutritional Education = Nutr Diet Res Prog Nutritional Education = Nutr. Diet. Res. Prog. Nutritional Factors and Osteoporosis Prevention = Nutr Diet Res Prog Nutritional Factors and Osteoporosis Prevention = Nutr. Diet. Res. Prog. Nutritional Implications of Macronutrient Substitutes = Ann Ny Acad Sci Nutritional Implications of Macronutrient Substitutes = Ann. Ny. Acad. Sci. Nutritional Management of Diabetes Mellitus and Dysmetabolic Syndrome = Nes Nutr Ws Nutritional Management of Diabetes Mellitus and Dysmetabolic Syndrome = Nes. Nutr. Ws. Nutritional neuroscience = Nutr Neurosci Nutritional Neuroscience = Nutr Neurosci Nutritional Neuroscience = Nutr. Neurosci. Nutritional Status Assessment of The Individual = Amer Hlth F Nutritional Status Assessment of The Individual = Amer. Hlth. F. Nutritional Support 1989 = Beitr Infus Nutritional Support 1989 = Beitr. Infus. Nutritional Support in Organ Failure = Int Congr Ser Nutritional Support in Organ Failure = Int. Congr. Ser. Nutrition and Aging = Nes Nutr Ws Nutrition and Aging = Nes. Nutr. Ws. Nutrition and Aging / = Prog Clin Biol Res Nutrition and Aging / = Prog. Clin. Biol. Res. Nutrition and Biotechnology in Heart Disease and Cancer = Adv Exp Med Biol Nutrition and Biotechnology in Heart Disease and Cancer = Adv. Exp. Med. Biol. Nutrition and Brain = Nes Nutr Ws Nutrition and Brain = Nes. Nutr. Ws. Nutrition and Cancer-an International Journal = Nutr Cancer Nutrition and Cancer-an International Journal = Nutr. Cancer. Nutrition and cancer = Nutr Cancer Nutrition and Cancer=Nutr Cancer;; Nutrition and Cancer = Nutr. Cancer Nutrition and Cancer Prevention = Adv Exp Med Biol Nutrition and Cancer Prevention = Adv. Exp. Med. Biol. Nutrition and Cardiovascular Risks = Bibl Nutr Diet Nutrition and Cardiovascular Risks = Bibl. Nutr. Diet. Nutrition and Critical Care = Nes Nutr Ws Nutrition and Critical Care = Nes. Nutr. Ws. Nutrition and Diet Research Progress = Nutr Diet Res Prog Nutrition and Diet Research Progress = Nutr. Diet Res. Prog. Nutrition and Feeding of The Broodmare = Eaap Public Nutrition and Feeding of The Broodmare = Eaap. Public. Nutrition and Fitness: Cultural, Genetic and Metabolic Aspects = World Rev Nutr Diet Nutrition and Fitness: Cultural, Genetic and Metabolic Aspects = World. Rev. Nutr. Diet. Nutrition and Fitness: Diet, Genes, Physical Activity and Health = World Rev Nutr Diet Nutrition and Fitness: Diet, Genes, Physical Activity and Health = World. Rev. Nutr. Diet. Nutrition and Fitness: Evolutionary Aspects, Children's Health, Programs and Policies = World Rev Nutr Diet Nutrition and Fitness: Evolutionary Aspects, Children's Health, Programs and Policies = World. Rev. Nutr. Diet. Nutrition and Fitness for Athletes = World Rev Nutr Diet Nutrition and Fitness for Athletes = World. Rev. Nutr. Diet. Nutrition and Fitness in Health and Disease = World Rev Nutr Diet Nutrition and Fitness in Health and Disease = World. Rev. Nutr. Diet. Nutrition and Fitness: Mental Health, Aging, and The Implementation of A Healthy Diet and Physical Activity Lifestyle = World Rev Nutr Diet Nutrition and Fitness: Mental Health, Aging, and The Implementation of A Healthy Diet and Physical Activity Lifestyle = World. Rev. Nutr. Diet Nutrition and Fitness: Metabolic and Behavioral Aspects in Health and Disease = World Rev Nutr Diet Nutrition and Fitness: Metabolic and Behavioral Aspects in Health and Disease = World. Rev. Nutr. Diet. Nutrition and Fitness: Metabolic Studies in Health and Disease = World Rev Nutr Diet Nutrition and Fitness: Metabolic Studies in Health and Disease = World. Rev. Nutr. Diet. Nutrition and Fitness: Obesity, The Metabolic Syndrome, Cardiovascular Disease, and Cancer = World Rev Nutr Diet Nutrition and Fitness: Obesity, The Metabolic Syndrome, Cardiovascular Disease, and Cancer = World. Rev. Nutr. Diet. Nutrition and Gastrointestinal Disease = Clin Gastroent-ser Nutrition and Gastrointestinal Disease = Clin. Gastroent-ser. Nutrition and Grazing Ecology of Speciality Fibre Producing Animals = Eur Fin Fib Netw O P Nutrition and Grazing Ecology of Speciality Fibre Producing Animals = Eur. Fin. Fib. Netw. O. P. Nutrition and Growth = Nestle Nutr Works Se Nutrition and Growth = Nestle. Nutr. Works. Se. Nutrition and health (Berkhamsted, Hertfordshire) = Nutr Health Nutrition and Health in Developing Countries, Second Edition = Nutr Health Ser Nutrition and Health in Developing Countries, Second Edition = Nutr. Health Ser. Nutrition and Health=Nutr Health;; Nutrition and Health = Nutr. Health Nutrition and Health Series = Nutr Health Ser Nutrition and Health Series = Nutr. Health Ser. Nutrition and Kidney Disease: A New Era = Contrib Nephrol Nutrition and Kidney Disease: A New Era = Contrib. Nephrol. Nutrition and metabolism = Nutr Metab Nutrition and Metabolism = Nutr Metab Nutrition and Metabolism = Nutr. Metab. Nutrition and Metabolism: Underlying Mechanisms and Clinical Consequences = Nutr Health Ser Nutrition and Metabolism: Underlying Mechanisms and Clinical Consequences = Nutr. Health. Ser. Nutrition and Physical Activity in Aging, Obesity, and Cancer = Ann Ny Acad Sci Nutrition and Physical Activity in Aging, Obesity, and Cancer = Ann. Ny. Acad. Sci. Nutrition and Reproduction, Vol 8 = Penn Ctr N Nutrition and Reproduction, Vol 8 = Penn. Ctr. N. Nutrition and Rheumatic Disease = Nutr Health Ser Nutrition and Rheumatic Disease = Nutr. Health. Ser. Nutrition and Stroke = Nestle Nutr Works Se Nutrition and Stroke = Nestle. Nutr. Works. Se. Nutrition (Burbank, Los Angeles County, Calif.) = Nutrition Nutrition Clinique Et Metabolisme = Nutr Clin Metab Nutrition Clinique Et Metabolisme = Nutr. Clin. Metab. Nutrition & Dietetics = Nutr Diet Nutrition & Dietetics = Nutr. Diet. Nutrition for healthy living = Nutr Healthy Living Nutrition for life = Nutr Life Nutrition, Genetics, and Heart Disease = Penn Ctr N Nutrition, Genetics, and Heart Disease = Penn. Ctr. N. Nutrition, Genetics, and Obesity = Penn Ctr N Nutrition, Genetics, and Obesity = Penn. Ctr. N. Nutrition Guide for Physicians = Nutr Health Ser Nutrition Guide for Physicians = Nutr. Health. Ser. Nutrition, Health, and Child Development = Paho Sci P Nutrition, Health, and Child Development = Paho. Sci. P. Nutrition history notes / Vanderbilt Medical Center Library = Nutr Hist Notes Nutrition, Immunity and Infection in Infants and Children = Nestle Nutr Works Se Nutrition, Immunity and Infection in Infants and Children = Nestle. Nutr. Works. Se. Nutrition in clinical care : an official publication of Tufts University = Nutr Clin Care Nutrition in Clinical Care = Nutr. Clin. Care Nutrition in Clinical Practice = Nutr Clin Pract Nutrition in Clinical Practice = Nutr. Clin. Pract. Nutrition in clinical practice : official publication of the American Society for Parenteral and Enteral Nutrition = Nutr Clin Pract Nutrition in Kidney Disease = Nutr Health Ser Nutrition in Kidney Disease = Nutr. Health. Ser. Nutrition in Pregnancy and Growth = Bibl Nutr Diet Nutrition in Pregnancy and Growth = Bibl. Nutr. Diet. Nutrition International = Nutrition Nutrition journal = Nutr J Nutrition Journal = Nutr J Nutrition Journal = Nutr. J. Nutrition, metabolism, and cardiovascular diseases : NMCD = Nutr Metab Cardiovasc Dis Nutrition Metabolism and Cardiovascular Diseases = Nutr Metab Cardiovas Nutrition Metabolism and Cardiovascular Diseases = Nutr. Metab. Cardiovas. Nutrition & Metabolism = Nutr Metab Nutrition & Metabolism = Nutr. Metab. Nutrition & metabolism = Nutr Metab (Lond) Nutrition & Metabolism = Nutr Metabolism Nutrition & Metabolism = Nutr. Metabolism Nutrition=Nutrition;; Nutrition = Nutrition Nutrition of The Elderly = Nestle Nutr Works Se Nutrition of The Elderly = Nestle. Nutr. Works. Se. Nutrition of The Low Birthweight Infant = Nestle Nutr Works Se Nutrition of The Low Birthweight Infant = Nestle. Nutr. Works. Se. Nutrition of The Performance Horse = Eaap Public Nutrition of The Performance Horse = Eaap. Public. Nutrition of The Very Low Birthweight Infant = Nestle Nutr Works Se Nutrition of The Very Low Birthweight Infant = Nestle. Nutr. Works. Se. Nutrition reports international = Nutr Rep Int Nutrition Reports International = Nutr Rep Int Nutrition Reports International = Nutr. Rep. Int. Nutrition Research and Practice = Nutr Res Pract Nutrition Research and Practice = Nutr. Res. Pract. Nutrition research (New York, N.Y.) = Nutr Res Nutrition Research (New York, NY, United States) = Nutr. Res. (N. Y., NY, U. S.) Nutrition Research = Nutr Res Nutrition Research = Nutr. Res. Nutrition Research Reviews = Nutr Res Rev Nutrition Research Reviews = Nutr. Res. Rev. Nutrition reviews = Nutr Rev Nutrition Reviews=Nutr Rev;; Nutrition Reviews = Nutr Rev Nutrition Reviews = Nutr. Rev. Nutrition Support for Infants and Children At Risk = Nestle Nutr Works Se Nutrition Support for Infants and Children At Risk = Nestle. Nutr. Works. Se. Nutrition today = Nutr Today Nutrition Today = Nutr Today Nutrition Today = Nutr. Today Nutrition update = Nutr Update Nuts and Bolts of Chemical Education Research = Acs Sym Ser Nuts and Bolts of Chemical Education Research = Acs. Sym. Ser. Nutzholzverbrauch in der Schweiz = Nutzholzverbrauch Schweiz Nwig-new West Indian Guide-nieuwe West-indische Gids = Nwig-new W Indian Gu Nwig-new West Indian Guide-nieuwe West-indische Gids = Nwig-new W. Indian Gu. NYO Reports = NYO Rep. NYO [reports]. U.S. Atomic Energy Commission = NYO Rep NYSSNTA journal = NYSSNTA J NYSSNTA Journal = NYSSNTA J. O3a: Optics for Arts, Architecture, and Archaeology Iii = Proc Spie O3a: Optics for Arts, Architecture, and Archaeology Iii = Proc. Spie. O3a: Optics for Arts, Architecture, and Archaeology Ii = Proc Spie O3a: Optics for Arts, Architecture, and Archaeology Ii = Proc. Spie. O3a: Optics for Arts, Architecture, and Archaeology = Proc Spie O3a: Optics for Arts, Architecture, and Archaeology = Proc. Spie. O3a: Optics for Arts, Architecture, and Archaeology = P Soc Photo-opt Ins O3a: Optics for Arts, Architecture, and Archaeology = P. Soc. Photo-opt. Ins. Oak Regeneration: Serious Problems, Practical Recommendations = Usda Southe Oak Regeneration: Serious Problems, Practical Recommendations = Usda. Southe. O arqueólogo português = APort Obama Education Blueprint: Researchers Examine The Evidence = Nepc Ser Obama Education Blueprint: Researchers Examine The Evidence = Nepc. Ser. Oberflache Und Performanz-untersuchungen Zur Sprache Als Dynamischer Gestalt = Reihe Ger Linguist Oberflache Und Performanz-untersuchungen Zur Sprache Als Dynamischer Gestalt = Reihe. Ger. Linguist. Oberwolfach Seminars = Oberwolfach Semin Oberwolfach Seminars = Oberwolfach Semin. Obese Child = Pediat Adol Obese Child = Pediat. Adol. Obesity and Cachexia : Physiological Mechanisms and New Approaches to Pharmacological Control = Biol Coun S Obesity and Cachexia : Physiological Mechanisms and New Approaches to Pharmacological Control = Biol. Coun. S. Obesity and Metabolism = Front Horm Res Obesity and Metabolism = Front. Horm. Res. Obesity and Metabolism-milan = Obes Metab-milan Obesity and Metabolism-milan = Obes. Metab-milan. Obesity and Pregnancy = Preg Infants-med Psy Obesity and Pregnancy = Preg. Infants-med. Psy. Obesity and The Kidney = Contrib Nephrol Obesity and The Kidney = Contrib. Nephrol. Obesity & Bariatric Medicine = Obesity Bariat Med Obesity & Bariatric Medicine = Obesity Bariat. Med. Obesity : Basic Concepts and Clinical Aspects = Front Diabetes Obesity : Basic Concepts and Clinical Aspects = Front. Diabetes. Obesity Before Birth: Maternal and Prenatal Influences On The Offspring = Endocr Updat Obesity Before Birth: Maternal and Prenatal Influences On The Offspring = Endocr. Updat. Obesity Facts = Obesity Facts Obesity in Childhood and Adolescence = Pediatr Adolesc Med Obesity in Childhood and Adolescence = Pediatr. Adolesc. Med. Obesity in Europe 91 = Obesity Eur Obesity in Europe 91 = Obesity Eur. Obesity in Europe = Obesity Eur Obesity in Europe = Obesity Eur. Obesity = Obesity Obesity: Preventing and Managing The Global Epidemic = Who Tech Rep Ser Obesity: Preventing and Managing The Global Epidemic = Who. Tech. Rep. Ser. Obesity Research & Clinical Practice = Obes Res Clin Pract Obesity Research & Clinical Practice = Obes. Res. Clin. Pract. Obesity research = Obes Res Obesity Research=Obes Res;; Obesity Research = Obes Res Obesity Research = Obes. Res. Obesity reviews : an official journal of the International Association for the Study of Obesity = Obes Rev Obesity Reviews = Obes Rev Obesity Reviews = Obes. Rev. Obesity (Silver Spring, Md.) = Obesity (Silver Spring) Obesity Surgery = Obes Surg Obesity Surgery = Obes. Surg. Obesity surgery : the official journal of the American Society for Bariatric Surgery and of the Obesity Surgery Society of Australia and New Zealand = Obes Surg Obesity : Towards A Molecular Approach = Ucla Sym Bi Obesity : Towards A Molecular Approach = Ucla. Sym. Bi. Obesity Treatment = Nato Adv Sci Inst Se Obesity Treatment = Nato. Adv. Sci. Inst. Se. Ob. gyn. news = Ob Gyn News Ob/gyn World = Ob/Gyn World Object-based Concurrent Computing = Lect Notes Comput Sc Object-based Concurrent Computing = Lect. Notes. Comput. Sc. Object Databases = Lect Notes Comput Sc Object Databases = Lect. Notes. Comput. Sc. Object Detection, Classification, and Tracking Technologies = Proc Spie Object Detection, Classification, and Tracking Technologies = Proc. Spie. Object Detection, Classification, and Tracking Technologies = P Soc Photo-opt Ins Object Detection, Classification, and Tracking Technologies = P. Soc. Photo-opt. Ins. Objective Coordination in Multi-agent System Engineering: Design and Implementation = Lect Notes Artif Int Objective Coordination in Multi-agent System Engineering: Design and Implementation = Lect. Notes. Artif. Int. Objectivity, Simulation and The Unity of Consciousness = P Brit Acad Objectivity, Simulation and The Unity of Consciousness = P. Brit. Acad. Object Modeling With The Ocl: The Rationale Behind The Object Constraint Language = Lect Notes Comput Sc Object Modeling With The Ocl: The Rationale Behind The Object Constraint Language = Lect. Notes. Comput. Sc. Object-oriented and Internet-based Technologies, Proceedings = Lect Notes Comput Sc Object-oriented and Internet-based Technologies, Proceedings = Lect. Notes. Comput. Sc. Object-oriented Information Systems = Lect Notes Comput Sc Object-oriented Information Systems = Lect. Notes. Comput. Sc. Object-oriented Information Systems, Proceedings = Lect Notes Comput Sc Object-oriented Information Systems, Proceedings = Lect. Notes. Comput. Sc. Object Oriented Methods for Interoperable Scientific and Engineering Computing, Proceedings = Siam Proc S Object Oriented Methods for Interoperable Scientific and Engineering Computing, Proceedings = Siam. Proc. S. Object-oriented Simulation 1991 = Simul Series Object-oriented Simulation 1991 = Simul. Series. Object-oriented Simulation Conference (oos'94) = Simul Series Object-oriented Simulation Conference (oos'94) = Simul. Series. Object Oriented Systems = Object Oriented Syst Object Oriented Systems = Object Oriented Syst. Object-oriented Technology: Ecoop 2006 Workshop Reader = Lect Notes Comput Sc Object-oriented Technology: Ecoop 2006 Workshop Reader = Lect. Notes. Comput. Sc. Object-oriented Technology: Ecoop 2007 Workshop Reader = Lect Notes Comput Sc Object-oriented Technology: Ecoop 2007 Workshop Reader = Lect. Notes. Comput. Sc. Object-oriented Technology = Lect Notes Comput Sc Object-oriented Technology = Lect. Notes. Comput. Sc. Object-oriented Technology, Proceedings = Lect Notes Comput Sc Object-oriented Technology, Proceedings = Lect. Notes. Comput. Sc. Objects, Agents, and Features = Lect Notes Comput Sc Objects, Agents, and Features = Lect. Notes. Comput. Sc. Objects and Databases = Lect Notes Comput Sc Objects and Databases = Lect. Notes. Comput. Sc. Objects and Other Subjects: Grammatical Functions, Functional Categories, and Configurationality = St Nat Lang Objects and Other Subjects: Grammatical Functions, Functional Categories, and Configurationality = St. Nat. Lang. Objects, Components, Architectures, Services, and Applications for A Networked World = Lect Notes Comput Sc Objects, Components, Architectures, Services, and Applications for A Networked World = Lect. Notes. Comput. Sc. Objects, Components, Models and Patterns = Lect Notes Bus Inf Objects, Components, Models and Patterns = Lect. Notes. Bus. Inf. Objects, Components, Models and Patterns = Lect Notes Bus Inf P Objects, Components, Models and Patterns = Lect. Notes. Bus. Inf. P. Objects, Components, Models and Patterns, Proceedings = Lect Notes Bus Inf Objects, Components, Models and Patterns, Proceedings = Lect. Notes. Bus. Inf. Objects, Components, Models and Patterns, Proceedings = Lect Notes Bus Inf P Objects, Components, Models and Patterns, Proceedings = Lect. Notes. Bus. Inf. P. Objects, Models, Components, Patterns = Lect Notes Comput Sc Objects, Models, Components, Patterns = Lect. Notes. Comput. Sc. Objets et mondes : la revue du Musee de l'homme, Museum national d'histoire naturelle = Objets Mondes Obliged By Memory: Literature, Religion, Ethics = Relig Theol Holo Obliged By Memory: Literature, Religion, Ethics = Relig. Theol. Holo. Observational and Physical Cosmology = Can Isl Ast Observational and Physical Cosmology = Can. Isl. Ast. Observational Aspects of Pulsating B and A Stars = Astr Soc P Observational Aspects of Pulsating B and A Stars = Astr. Soc. P. Observational Cosmology = Astrophys Space Sc L Observational Cosmology = Astrophys. Space. Sc. L. Observational Cosmology = Astr Soc P Observational Cosmology = Astr. Soc. P. Observational Cosmology: The Development of Galaxy Systems = Astr Soc P Observational Cosmology: The Development of Galaxy Systems = Astr. Soc. P. Observational Evidence for Black Holes in The Universe = Aip Conf Proc Observational Evidence for Black Holes in The Universe = Aip. Conf. Proc. Observational Plasma Astrophysics: Five Years of Yohkoh and Beyond = Astrophys Space Sc L Observational Plasma Astrophysics: Five Years of Yohkoh and Beyond = Astrophys. Space. Sc. L. Observational Tests of Cosmological Inflation = Nato Adv Sci Inst Se Observational Tests of Cosmological Inflation = Nato. Adv. Sci. Inst. Se. Observation Amd Modelling in Numerical Analysis & Model Tests in Dynamic Soil-structure Interaction Problems = Geotech Sp Observation Amd Modelling in Numerical Analysis & Model Tests in Dynamic Soil-structure Interaction Problems = Geotech. Sp. Observation and Control for Operator Semigroups = Birkhauser Adv Texts Observation and Control for Operator Semigroups = Birkhauser. Adv. Texts. Observation and Experiment in The Natural and Social Sciences = Bost Stud Philos Sci Observation and Experiment in The Natural and Social Sciences = Bost. Stud. Philos. Sci. Observation, Prediction and Simulation of Phase Transitions in Complex Fluids = Nato Adv Sci Inst Se Observation, Prediction and Simulation of Phase Transitions in Complex Fluids = Nato. Adv. Sci. Inst. Se. Observations et diagnostics economiques. Revue de l'OFCE = Obs Diagn Econ Observations in Earth Orbit and Beyond = Astrophys Space Sc L Observations in Earth Orbit and Beyond = Astrophys. Space. Sc. L. Observations of Earth From Space = Adv Space Res Observations of Earth From Space = Adv. Space Res. Observations of The Outer Heliosphere = Adv Space Res Observations of The Outer Heliosphere = Adv. Space. Res. Observatories of Development, Observatories for Development = Colloq Semi Observatories of Development, Observatories for Development = Colloq. Semi. Observatory = Observatory Observatory Operations: Strategies, Processes, and Systems Iii = P Soc Photo-opt Ins Observatory Operations: Strategies, Processes, and Systems Iii = P. Soc. Photo-opt. Ins. Observatory Operations: Strategies, Processes, and Systems Ii = Proc Spie Observatory Operations: Strategies, Processes, and Systems Ii = Proc. Spie. Observatory Operations: Strategies, Processes, and Systems Ii = P Soc Photo-opt Ins Observatory Operations: Strategies, Processes, and Systems Ii = P. Soc. Photo-opt. Ins. Observatory Operations: Strategies, Processes, and Systems = Proc Spie Observatory Operations: Strategies, Processes, and Systems = Proc. Spie. Observatory Operations: Strategies, Processes, and Systems = P Soc Photo-opt Ins Observatory Operations: Strategies, Processes, and Systems = P. Soc. Photo-opt. Ins. Observatory Operations to Optimize Scientific Return Iii = Proc Spie Observatory Operations to Optimize Scientific Return Iii = Proc. Spie. Observatory Operations to Optimize Scientific Return Iii = P Soc Photo-opt Ins Observatory Operations to Optimize Scientific Return Iii = P. Soc. Photo-opt. Ins. Observatory Operations to Optimize Scientific Return Ii = P Soc Photo-opt Ins Observatory Operations to Optimize Scientific Return Ii = P. Soc. Photo-opt. Ins. Observatory Operations to Optimize Scientific Return = P Soc Photo-opt Ins Observatory Operations to Optimize Scientific Return = P. Soc. Photo-opt. Ins. Observed Hr Diagrams and Stellar Evolution: The Interplay Between Observational Constraints and Theory = Astr Soc P Observed Hr Diagrams and Stellar Evolution: The Interplay Between Observational Constraints and Theory = Astr. Soc. P. Observing Dark Energy, Proceedings = Astr Soc P Observing Dark Energy, Proceedings = Astr. Soc. P. Observing Land From Space: Science, Customers and Technology = Adv Glob Change Res Observing Land From Space: Science, Customers and Technology = Adv. Glob. Change. Res. Observing Our Changing Earth = Iag Symp Observing Our Changing Earth = Iag. Symp. Observing Ultrahigh Energy Cosmic Rays From Space and Earth = Aip Conf Proc Observing Ultrahigh Energy Cosmic Rays From Space and Earth = Aip. Conf. Proc. Observing With The Vlt Interferometer = Eas Publications Observing With The Vlt Interferometer = Eas. Publications. Obsidian-black Literature in Review = Obsidian Obsidian-black Literature in Review = Obsidian. Obsidian Ii = Obsidian Ii Obstetrical and Gynecological Survey=Obstet Gynecol Surv;; Obstetrical and Gynecological Survey = Obstet. Gynecol. Surv. Obstetrical & gynecological survey = Obstet Gynecol Surv Obstetrical & Gynecological Survey = Obstet Gynecol Surv Obstetrical & Gynecological Survey = Obstet. Gynecol. Surv. Obstetrica si ginecologia = Obstet Ginecol (Bucur) Obstetrica si Ginecologia = Obstet. Ginecol. (Bucur.) Obstetricia pratica = Obstet Prat Obstetricia y ginecologia latino-americanas = Obstet Ginecol Lat Am Obstetricia y Ginecologia Latino-Americanas = Obstet. Ginecol. Lat. Am. Obstetrics and Gynecology Advances = Obstet Gynecol Adv Obstetrics and Gynecology Advances = Obstet. Gynecol. Adv. Obstetrics and gynecology annual = Obstet Gynecol Annu Obstetrics and Gynecology Annual = Obstet. Gynecol. Annu. Obstetrics and Gynecology Clinics of North America = Obstet Gyn Clin N Am Obstetrics and Gynecology Clinics of North America = Obstet. Gyn. Clin. N. Am. Obstetrics and gynecology clinics of North America = Obstet Gynecol Clin North Am Obstetrics and Gynecology Clinics of North America=Obstet Gynecol Clin North Am;; Obstetrics and Gynecology Clinics of North America = Obstet. Gynecol. Clin. North Am. Obstetrics and gynecology = Obstet Gynecol Obstetrics and Gynecology=Obstet Gynecol;; Obstetrics and Gynecology = Obstet Gynecol Obstetrics and Gynecology = Obstet. Gynecol. Obtaining The Best From Regulation and Competition = T Reg Econ Obtaining The Best From Regulation and Competition = T. Reg. Econ. Obzor-a Bulgarian Quarterly Review of Literature and Arts = Obzor Obzor-a Bulgarian Quarterly Review of Literature and Arts = Obzor. Occam and The Transputer - Current Developments = Transput Occam Eng S Occam and The Transputer - Current Developments = Transput. Occam Eng. S. Occam Users Group Progress Reports = Occam Us Gr Occam Users Group Progress Reports = Occam Us. Gr. Occasional newsletter (Lindsay Club) = Occas Newsl Lindsay Club Occasional Newsletter, Lindsay Club = Occas. Newsl. Lindsay Club Occasional Paper of The Heritage Resources Centre = Occas Pap Herit Res Occasional Paper of The Heritage Resources Centre = Occas. Pap. Herit. Res. Occasional paper (Royal College of General Practitioners) = Occas Pap R Coll Gen Pract Occasional Paper, Royal College of General Practitioners = Occas. Pap. R. Coll. Gen. Pract. Occasional Papers in Anthropology-penn State University = Occas Pap Anthropol Occasional Papers in Anthropology-penn State University = Occas. Pap. Anthropol. Occasional Papers in Economic and Social History-university of Hull = Occas Pap Econ Soc H Occasional Papers in Economic and Social History-university of Hull = Occas. Pap. Econ. Soc. H. Occasional Papers in Geography-university of Hull = Occas Pap Geogr Occasional Papers in Geography-university of Hull = Occas. Pap. Geogr. Occasional Papers International Affairs Ctr Int Aff Harvard U = Occas Pap Int Aff Occasional Papers International Affairs Ctr Int Aff Harvard U = Occas. Pap. Int Aff Occasional Papers of The Institute of Mennonite Studies = Occ P Inst Men Stud Occasional Papers of The Institute of Mennonite Studies = Occ. P. Inst. Men. Stud. Occasional Papers of The Program On Environment = Oc P Prog Environm Occasional Papers of The Program On Environment = Oc. P. Prog. Environm. Occasional papers on medical history Australia = Occas Pap Med Hist Aust Occasional Papers Rural Development Committee and South Asia Program-cornell University = Occas Pap Rur Dev Co Occasional Papers Rural Development Committee and South Asia Program-cornell University = Occas. Pap. Rur. Dev. Co. Occasional Papers - University of Illinois At Urbana-champaign, Graduate School of Library and Information Science = Oc P U Ill Occasional Papers - University of Illinois At Urbana-champaign, Graduate School of Library and Information Science = Oc. P. U. Ill. Occasional Publications in Classical Studies = OccasPublClSt Occasional Publications of The British Society for Animal Production = Occ Pub Bri Occasional Publications of The British Society for Animal Production = Occ. Pub. Bri. Occident and Orient = OccOr Occipital Seizures and Epilepsies in Children = Mariani F P Occipital Seizures and Epilepsies in Children = Mariani. F. P. Occupational and environmental medicine = Occup Environ Med Occupational and Environmental Medicine=Occup Environ Med;; Occupational and Environmental Medicine = Occup Environ Med Occupational and Environmental Medicine = Occup. Environ. Med. Occupational Asthma = Prog Inflamm Res Ser Occupational Asthma = Prog. Inflamm. Res. Ser. Occupational Cancer Epidemiology = Recent Res Cancer Occupational Cancer Epidemiology = Recent. Res. Cancer Occupational Electrical Injury: An International Symposium = Ann Ny Acad Sci Occupational Electrical Injury: An International Symposium = Ann. Ny. Acad. Sci. Occupational Epidemiology = Int Congr Ser Occupational Epidemiology = Int. Congr. Ser. Occupational health; a journal for occupational health nurses = Occup Health (Lond) Occupational Health and Safety=Occup Health Saf;; Occupational Health and Safety = Occup. Health Saf. Occupational Health for Europeans = People Work Res Rep Occupational Health for Europeans = People. Work. Res. Rep. Occupational Health in The 1990s = Ann Ny Acad Sci Occupational Health in The 1990s = Ann. Ny. Acad. Sci. Occupational Health Nurse = Occup. Health Nurse (Auckl.) Occupational health nursing = Occup Health Nurs Occupational Health Nursing = Occup Health Nurs Occupational Health Nursing = Occup. Health Nurs. Occupational Health = Occup Health (Auckl) Occupational Health = Occup. Health (Lond.) Occupational Health Psychology: European Perspectives On Research, Education and Practice, Vol 3 = Occup Healt Psychol Occupational Health Psychology: European Perspectives On Research, Education and Practice, Vol 3 = Occup. Healt. Psychol. Occupational Health Psychology = Occup Healt Psychol Occupational Health Psychology = Occup. Healt. Psychol. Occupational health review = Occup Health Rev Occupational Health Review = Occup. Health Rev. Occupational health & safety (Waco, Tex.) = Occup Health Saf Occupational Hygiene and Environmental Issues - Control of Chemical Risks On Both Sides of The Factory Fence = Inst Chem E Occupational Hygiene and Environmental Issues - Control of Chemical Risks On Both Sides of The Factory Fence = Inst. Chem. E. Occupational Medicine=Occup Med;; Occupational Medicine = Occup. Med. Occupational Medicine = Occup Med-c Occupational Medicine = Occup. Med-c. Occupational Medicine=Occup Med (Oxf);; Occupational medicine (Oxford, England) = Occup Med (Lond) Occupational Medicine-oxford = Occup Med-oxford Occupational Medicine-oxford = Occup. Med-oxford. Occupational medicine (Philadelphia, Pa.) = Occup Med Occupational Medicine-state of The Art Reviews = Occup Med Occupational Medicine-state of The Art Reviews = Occup. Med. Occupational Medicine-state of The Art Reviews = Occup Med-state Art Occupational Medicine-state of The Art Reviews = Occup. Med-state. Art Occupational outlook quarterly / United States Department of Labor, Bureau of Labor Statistics in cooperation with Veterans Administration = OCCUP Outlook Q Occupational Psychology = Occup Psychol Occupational Psychology = Occup. Psychol. Occupational Safety and Health Guide Series = Occup Saf Health Gui Occupational Safety and Health Guide Series = Occup. Saf. Health Gui. Occupational therapy and rehabilitation = Occup Ther Rehabil Occupational therapy international = Occup Ther Int Occupational Therapy International = Occup Ther Int Occupational Therapy International = Occup. Ther. Int. Occupational Therapy Journal of Research = Occup Ther J Res Occupational Therapy Journal of Research = Occup. Ther. J. Res. Occupations-the Vocational Guidance Journal = Occup-vocat Guid J Occupations-the Vocational Guidance Journal = Occup-vocat. Guid. J. Occupations-the Vocational Guidance Magazine = Occup-vocat Guid Ma Occupations-the Vocational Guidance Magazine = Occup-vocat. Guid. Ma. Occurrence, Characteristics, and Genesis of Carbonate, Gypsum, and Silica Accumulations in Soils = Sssa Spec Publ Occurrence, Characteristics, and Genesis of Carbonate, Gypsum, and Silica Accumulations in Soils = Sssa. Spec. Publ. Ocean Acoustic Interference Phenomena and Signal Processing = Aip Conf Proc Ocean Acoustic Interference Phenomena and Signal Processing = Aip. Conf. Proc. Ocean Ambient Noise: Measurement and Theory = Underw Acoust Ocean Ambient Noise: Measurement and Theory = Underw. Acoust. Ocean and Coastal Management = Ocean Coast. Manage. Ocean and Polar Research = Ocean Polar Res. Ocean Basins and Margins = Ocean Basin Margin Ocean Basins and Margins = Ocean Basin. Margin. Ocean & Coastal Management = Ocean Coast Manage Ocean & Coastal Management = Ocean Coast. Manage. Ocean Colour : Theory and Applications in A Decade of Czcs Experience = Euro Cours Rem Sens Ocean Colour : Theory and Applications in A Decade of Czcs Experience = Euro. Cours. Rem. Sens. Ocean Development and International Law = Ocean Dev Int Law Ocean Development and International Law = Ocean Dev. Int. Law Ocean Dynamics = Ocean Dyn. Ocean Dynamics = Ocean Dynam Ocean Dynamics = Ocean Dynam. Ocean Engineering = Ocean Eng Ocean Engineering = Ocean Eng. Oceania; a journal devoted to the study of the native peoples of Australia, New Guinea, and the Islands of the Pacific = Oceania Oceania = Oceania Oceanic and Anthropogenic Controls of Life in The Pacific Ocean = Geoj Lib Oceanic and Anthropogenic Controls of Life in The Pacific Ocean = Geoj. Lib. Oceanic Circulation Models : Combining Data and Dynamics = Nato Adv Sci I C-mat Oceanic Circulation Models : Combining Data and Dynamics = Nato. Adv. Sci. I. C-mat. Oceanic Explorations: Lapita and Western Pacific Settlement = Terra Australis Oceanic Explorations: Lapita and Western Pacific Settlement = Terra. Australis. Oceanic Fronts = Oceanis S D Oceanic Fronts = Oceanis. S. D. Oceanic Linguistics = Ocean Linguist Oceanic Linguistics = Ocean. Linguist. Oceanic Remote Sensing and Sea Ice Monitoring = P Soc Photo-opt Ins Oceanic Remote Sensing and Sea Ice Monitoring = P. Soc. Photo-opt. Ins. Oceanis : Serie De Documents Oceanographiques = Oceanis S D Oceanis : Serie De Documents Oceanographiques = Oceanis S. D. Oceanis-serie De Documents Oceanographiques = Oceanis-ser Doc Oceanis-serie De Documents Oceanographiques = Oceanis-ser. Doc. Oceanis, Vol 16, Fascicule 2 = Oceanis S D Oceanis, Vol 16, Fascicule 2 = Oceanis. S. D. Oceanis, Vol 16, Fascicule 3 = Oceanis S D Oceanis, Vol 16, Fascicule 3 = Oceanis. S. D. Oceanis, Vol 16, Fascicule Hors-serie = Oceanis S D Oceanis, Vol 16, Fascicule Hors-serie = Oceanis. S. D. Oceanis, Vol 18, Fascicule 2 = Oceanis S D Oceanis, Vol 18, Fascicule 2 = Oceanis. S. D. Oceanis, Vol 18, Fascicule 4 = Oceanis S D Oceanis, Vol 18, Fascicule 4 = Oceanis. S. D. Oceanis, Vol 22 - No 1- 1996 = Oceanis S D Oceanis, Vol 22 - No 1- 1996 = Oceanis. S. D. Oceanis, Vol 30, No 4 = Oceanis S D Oceanis, Vol 30, No 4 = Oceanis. S. D. Oceanis, Vol 30, No 4 = Oceanis-ser Doc Oceanis, Vol 30, No 4 = Oceanis-ser. Doc. Oceanis, Vol 33, No 1 and 2 = Oceanis S D Oceanis, Vol 33, No 1 and 2 = Oceanis. S. D. Oceanis, Vol 35, Nos 1 and 2 = Oceanis-ser Doc Oceanis, Vol 35, Nos 1 and 2 = Oceanis-ser. Doc. Ocean Management = Ocean Manage Ocean Management = Ocean Manage. Ocean Manage. = Ocean Manage. Ocean Margin Processes in Global Change = Phys Ch Ear Ocean Margin Processes in Global Change = Phys. Ch. Ear. Ocean Modeling and Parameterization = Nato Adv Sci I C-mat Ocean Modeling and Parameterization = Nato. Adv. Sci. I. C-mat. Ocean Modelling = Ocean Model Ocean Modelling = Ocean Model. Ocean Modelling = Ocean Modell. Oceanographic and Marine Biology = Oceanogr. Mar. Biol. Oceanographic Magazine = Oceanogr. Mag. Oceanography and Marine Biology - An Annual Review, Vol 33 = Oceanogr Mar Biol Oceanography and Marine Biology - An Annual Review, Vol 33 = Oceanogr. Mar. Biol. Oceanography and Marine Biology: An Annual Review, Vol 42 = Oceanogr Mar Biol Oceanography and Marine Biology: An Annual Review, Vol 42 = Oceanogr. Mar. Biol. Oceanography and Marine Biology - An Annual Review, Vol. 43 = Oceanogr Mar Biol Oceanography and Marine Biology - An Annual Review, Vol. 43 = Oceanogr. Mar. Biol. Oceanography and Marine Biology - An Annual Review, Vol 44 = Oceanogr Mar Biol Oceanography and Marine Biology - An Annual Review, Vol 44 = Oceanogr. Mar. Biol. Oceanography and Marine Biology: An Annual Review, Vol 46 = Oceanogr Mar Biol Oceanography and Marine Biology: An Annual Review, Vol 46 = Oceanogr. Mar. Biol. Oceanography and Marine Biology: An Annual Review, Vol 47 = Oceanogr Mar Biol Oceanography and Marine Biology: An Annual Review, Vol 47 = Oceanogr. Mar. Biol. Oceanography and Marine Biology: An Annual Review, Vol 48 = Oceanogr Mar Biol Oceanography and Marine Biology: An Annual Review, Vol 48 = Oceanogr. Mar. Biol. Oceanography and Marine Biology: An Annual Review, Vol 49 = Oceanogr Mar Biol Oceanography and Marine Biology: An Annual Review, Vol 49 = Oceanogr. Mar. Biol. Oceanography and Marine Biology = Oceanogr Mar Biol Oceanography and Marine Biology = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 32 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 32 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 34 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 34 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 37 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 37 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 38 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 38 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 39 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 39 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 40 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 40 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 41 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 41 = Oceanogr. Mar. Biol. Oceanography and Marine Biology, Vol 45 = Oceanogr Mar Biol Oceanography and Marine Biology, Vol 45 = Oceanogr. Mar. Biol. Oceanography and Meteorology = Oceanogr. Meteor. Oceanography and Ocean Engineering = Oceanogr Ocean Eng Oceanography and Ocean Engineering = Oceanogr. Ocean Eng. Oceanography = Oceanography Oceanography of Asian Marginal Seas = Elsev Oceanogr Serie Oceanography of Asian Marginal Seas = Elsev. Oceanogr. Serie. Oceanologia = Oceanologia Oceanologica Acta = Oceanol Acta Oceanologica Acta = Oceanol. Acta Oceanologica Acta = Oceanolog. Acta Oceanological and Hydrobiological Studies = Oceanol Hydrobiol St Oceanological and Hydrobiological Studies = Oceanol. Hydrobiol. St. Oceanology International = Oceanology Int Oceanology International = Oceanology Int. Oceanology = Oceanology+ Oceanology = Oceanology+.+ Oceanology-ussr = Oceanology-ussr Ocean Optics: Remote Sensing and Underwater Imaging = Proc Spie Ocean Optics: Remote Sensing and Underwater Imaging = Proc. Spie. Ocean Optics: Remote Sensing and Underwater Imaging = P Soc Photo-opt Ins Ocean Optics: Remote Sensing and Underwater Imaging = P. Soc. Photo-opt. Ins. Ocean Optics Xiii = P Soc Photo-opt Ins Ocean Optics Xiii = P. Soc. Photo-opt. Ins. Ocean Optics Xii = P Soc Photo-opt Ins Ocean Optics Xii = P. Soc. Photo-opt. Ins. Ocean Optics Xi = P Soc Photo-opt Ins Ocean Optics Xi = P. Soc. Photo-opt. Ins. Ocean Optics X = P Soc Photo-opt Ins Ocean Optics X = P. Soc. Photo-opt. Ins. Ocean Physics and Engineering = Ocean Phys Eng Ocean Physics and Engineering = Ocean Phys. Eng. Ocean Processes in Climate Dynamics: Global and Mediterranean Examples = Nato Adv Sci Inst Se Ocean Processes in Climate Dynamics: Global and Mediterranean Examples = Nato. Adv. Sci. Inst. Se. Ocean Remote Sensing and Applications = P Soc Photo-opt Ins Ocean Remote Sensing and Applications = P. Soc. Photo-opt. Ins. Ocean Remote Sensing and Imaging Ii = Proc Spie Ocean Remote Sensing and Imaging Ii = Proc. Spie. Ocean Remote Sensing and Imaging Ii = P Soc Photo-opt Ins Ocean Remote Sensing and Imaging Ii = P. Soc. Photo-opt. Ins. Oceans 2005, Vols 1-3 = Oceans-ieee Oceans 2005, Vols 1-3 = Oceans-ieee. Oceans 2006, Vols 1-4 = Oceans-ieee Oceans 2006, Vols 1-4 = Oceans-ieee. Oceans 2008 - Mts/ieee Kobe Techno-ocean, Vols 1-3 = Oceans-ieee Oceans 2008 - Mts/ieee Kobe Techno-ocean, Vols 1-3 = Oceans-ieee. Oceans 2008, Vols 1-4 = Oceans-ieee Oceans 2008, Vols 1-4 = Oceans-ieee. Oceans 2009 - Europe, Vols 1 and 2 = Oceans-ieee Oceans 2009 - Europe, Vols 1 and 2 = Oceans-ieee. Oceans 2009, Vols 1-3 = Oceans-ieee Oceans 2009, Vols 1-3 = Oceans-ieee. Oceans 2010 = Oceans-ieee Oceans 2010 = Oceans-ieee. Ocean Science and Engineering = Ocean Phys Eng Ocean Science and Engineering = Ocean Phys. Eng. Ocean Science and Technology = Ocean Sci. Technol. Ocean Science Discussions = Ocean Sci. Discuss. Ocean Science Journal = Ocean Sci. J. Ocean Science = Ocean Sci Ocean Science = Ocean Sci. Ocean Sensing and Monitoring Iii = P Soc Photo-opt Ins Ocean Sensing and Monitoring Iii = P. Soc. Photo-opt. Ins. Ocean Sensing and Monitoring Ii = P Soc Photo-opt Ins Ocean Sensing and Monitoring Ii = P. Soc. Photo-opt. Ins. Oceans-ieee = Oceans-ieee Oceans = Oceans Ocean University of Qingdao = J. Ocean Univ. Qingdao Oceanus = Oceanus Ocean Wave Energy: Current Status and Future Prespectives = Green Energy Technol Ocean Wave Energy: Current Status and Future Prespectives = Green. Energy. Technol. Ocean Waves Breaking and Marine Aerosol Fluxes = Atmos Ocean Sci Lib Ocean Waves Breaking and Marine Aerosol Fluxes = Atmos. Ocean Sci. Lib. [Ochanomizu igaku zasshi] The Ochanomizu medical journal = Ochanomizu Igaku Zasshi Ochrona Srodowiska = Ochr Sr Ochrona Srodowiska = Ochr. Sr. Ochsner Clinic reports = Ochsner Clin Rep Ocl-oleagineux Corps Gras Lipides = Ocl-ol Corps Gras Li Ocl-oleagineux Corps Gras Lipides = Ocl-ol. Corps Gras Li. October = October Octogon Mathematical Magazine = Octogon Math. Mag. Ocular immunology and inflammation = Ocul Immunol Inflamm Ocular Immunology and Inflammation=Ocul Immunol Inflamm;; Ocular Immunology and Inflammation = Ocul Immunol Inflamm Ocular Immunology and Inflammation = Ocul. Immunol. Inflamm. Ocular Immunology Today = Int Congr Ser Ocular Immunology Today = Int. Congr. Ser. Ocular Surface = Ocul Surf Ocular Surface = Ocul. Surf. Oculomotor and Vestibular Systems: Their Function and Disorders = Ann Ny Acad Sci Oculomotor and Vestibular Systems: Their Function and Disorders = Ann. Ny. Acad. Sci. Oculomotor Control and Cognitive Processes = Stud Vis Inform Proc Oculomotor Control and Cognitive Processes = Stud. Vis. Inform. Proc. Oculoplastics and Orbit: Aesthetic and Functional Oculofacial Plastic Problem-solving in The 21st Century = Essent Ophthalmol Oculoplastics and Orbit: Aesthetic and Functional Oculofacial Plastic Problem-solving in The 21st Century = Essent. Ophthalmol. Odd One In: On Comedy = Short Circuits Odd One In: On Comedy = Short. Circuits. Odense University Studies in History and Social Sciences = Oden U St H Odense University Studies in History and Social Sciences = Oden. U. St. H. Odgojne Znanosti-educational Sciences = Odgojne Znan Odgojne Znanosti-educational Sciences = Odgojne Znan. Odonatologica = Odonatologica Odontes = Odontes Odontiatrike = Odontiatriki Odontiatriki = Odontiatriki Odont = Odont Odontoestomatologia = Odontoestomatologia Odontoiatria pratica = Odontoiatr Prat Odontoiatria Pratica = Odontoiatr. Prat. Odontoiatria; revista ibero-americana de medicina de la boca = Odontoiatr Rev Iberoam Med Boca Odontoiatria; Revista Ibero-Americana de Medicina de la Boca = Odontoiatr. Rev. Iberoam. Med. Boca Odontologia Atual = Odontol Atual Odontologia Atual = Odontol. Atual Odontologia bonaerense. / FOPBA, Federacion Odontologica de la Pcia. de Bs. As = Ondontol Bonaer Odontologia Bonaerense = Ondontol. Bonaer. Odontologia capixaba = Odontol Capixaba Odontologia Capixaba = Odontol. Capixaba Odontologia chilena = Odontol Chil Odontologia Chilena = Odontol. Chil. Odontologia Clinica = Odontol Clin Odontologia Clinica = Odontol. Clin. Odontologia de America = Odontol Am Odontologia de postgrado = Odontol Postgrado Odontologia de Postgrado = Odontol. Postgrado Odontologia dinamica = Odontol Din Odontologia Dinamica = Odontol. Din. Odontologia Jalisciense = Odontol Jalisc Odontologia Jalisciense = Odontol. Jalisc. Odontologia = Odontologia Odontologia = Odontologia (Lima) Odontologia (Paris, France) = Odontologia Odontologia Peruana = Odontol Peru Odontologia Peruana = Odontol. Peru. Odontologia practica = Odontol Pract Odontologia Practica = Odontol. Pract. Odontologia uruguaya = Odontol Urug Odontologia Uruguaya = Odontol. Urug. Odontological bulletin = Odontol Bull Odontological Bulletin = Odontol. Bull. Odontologica = Odontologica Odontologie Conservatrice = Odontol Conserv Odontologie Conservatrice = Odontol. Conserv. Odontologiska foreningens tidskrift = Odontol Foren Tidskr Odontologiska Foreningens Tidskrift = Odontol. Foren. Tidskr. Odontologiska Samfundet i Finland Arsbok = Odontol. Samf. Finl. Arsb. Odontologisk revy = Odontol Revy Odontologisk Revy = Odontol Revy Odontologisk Revy = Odontol. Revy Odontologisk revy. Supplement = Odontol Revy Suppl Odontologisk Revy. Supplement = Odontol. Revy. Suppl. Odontologisk tidskrift = Odontol Tidskr Odontologisk Tidskrift = Odontol. Tidskr. Odontologo = Odontologo Odontology = Odontology Odontology / the Society of the Nippon Dental University = Odontology Odontoprotesi = Odontoprotesi Odontostomatologia e Implantoprotesi = Odontostomatol. Implantoprotesi Odontostomatologia E Implantoprotesi = Odontostomatol Implantoprotesi Odonto-Stomatologie Tropicale = Odontostomatol. Trop. Odontostomatologike proodos = Odontostomatol Proodos Odontostomatologike Proodos = Odontostomatol. Proodos Oecd and European Welfare States = Glob Welf Oecd and European Welfare States = Glob. Welf. Oecd Centre for Cooperation With European Economics in Transition, Publications = Oecd Ctr C Oecd Centre for Cooperation With European Economics in Transition, Publications = Oecd Ctr. C. Oecd China in The Global Economy = Oecd Chin Glob Econ Oecd China in The Global Economy = Oecd Chin. Glob. Econ. Oecd Development Centre Seminars = Oecd Devel Oecd Development Centre Seminars = Oecd Devel. Oecd Documents = Oecd Docum Oecd Documents = Oecd Docum. OECD Economic Studies=OECD Econ. Stud. Oecd Health Policy Studies = Oecd Heal Pol Stud Oecd Health Policy Studies = Oecd Heal. Pol. Stud. Oecd Informatics Studies = Oecd Inform Stud Oecd Informatics Studies = Oecd Inform. Stud. Oecd Model Convention - 1996 and Beyond = Ifa Congr S Oecd Model Convention - 1996 and Beyond = Ifa. Congr. S. Oecd Private Pensions Conference 2000 = Priv Pens S Oecd Private Pensions Conference 2000 = Priv. Pens. S. Oecd Proceedings = Oecd Proc Oecd Proceedings = Oecd Proc. Oecd Programme On Educational Building = Oecd Peb Oecd Programme On Educational Building = Oecd Peb. Oecd Social Policy Studies = Oecd Soc P Oecd Social Policy Studies = Oecd Soc. P. Oecd Workshop On Knowledge-based Expert Systems in Transportation, Vol 1 = Vtt Symp Oecd Workshop On Knowledge-based Expert Systems in Transportation, Vol 1 = Vtt. Symp. Oecd Workshop On Knowledge-based Expert Systems in Transportation, Vol 2 = Vtt Symp Oecd Workshop On Knowledge-based Expert Systems in Transportation, Vol 2 = Vtt. Symp. Oecologia = Oecologia Oecologia Plantarum = Oecolog Plantar Oecologia Plantarum = Oecolog. Plantar. Oeconomica Polona = Oecon Pol Oedipus At Colonus: Sophocles, Athens, and The World = Unters Antiken Lit G Oedipus At Colonus: Sophocles, Athens, and The World = Unters. Antiken. Lit. G. Oedipus = Gods Heroes Anc Worl Oedipus = Gods. Heroes. Anc. Worl. Oeil-magazine International D Art = Oeil-mag Int Art Oeil-magazine International D Art = Oeil-mag. Int. Art Oeil = Oeil Oekologia Plantarum = Oekol. Plant. Oekologie der Vögel = Oekol. Vögel Oesophageal Damage and Defence in Reflux Oesophagitis : Pathophysiological and Cell Biological Mechanisms = Prog Histochem Cytoc Oesophageal Damage and Defence in Reflux Oesophagitis : Pathophysiological and Cell Biological Mechanisms = Prog. Histochem. Cytoc. Oesterreichische Apotheker Zeitung = Osterr Apoth Ztg Oesterreichische Dentisten Zeitschrift = Osterr Dent Z Oesterreichische Wasser- und Abfallwirtschaft = Oesterr. Wasser Abfallwirtsch. Oesterreichische Wasser- und Abfallwirtschaft = Oesterr. Wasser- Abfallwirtsch. Oestrogen Deficiency = Adv Rep End Oestrogen Deficiency = Adv. Rep. End. Oeuvres & Critiques = Oeuvres Crit Oeuvres & Critiques = Oeuvres Crit. Ofdma System Analysis and Design = Artech Hse Mob Comm Ofdma System Analysis and Design = Artech. Hse. Mob. Comm. Ofdm: Concepts for Future Communication Systems = Signals Commun Techn Ofdm: Concepts for Future Communication Systems = Signals. Commun. Techn. Of Essays and Reading in Early Modern Britain = Palgrave Stud Enligh Of Essays and Reading in Early Modern Britain = Palgrave. Stud. Enligh. Offa. Berichte und Mitteilungen zur Urgeschiche, Frühgeschichte und Mittelalterarchäologie = Offa Offentliche Gesundheitsdienst = Offentl. Gesundheitsdienst Offentliche Gesundheitswesen = Offentl. Gesundheitswes. Offentliche Gesundheitswesen = Offentl Gesundh Wes Offentliche Gesundheitswesen = Offentl. Gesundh. Wes. Off-flavors in Aquaculture = Acs Sym Ser Off-flavors in Aquaculture = Acs. Sym. Ser. Office Administration and Automation = Office Admin Automat Office Administration and Automation = Office Admin. Automat. Office Communications, Pts 1 and 2 = Vdi Bericht Office Communications, Pts 1 and 2 = Vdi. Bericht. Officemation Product Reports = Officemation Prod R Officemation Product Reports = Officemation Prod. R. Office = Office Office of Science and Technology Policy Blue Ribbon Panel On The Threat of Biological Terrorism Directed Against Livestock = Rand Conf Proc Office of Science and Technology Policy Blue Ribbon Panel On The Threat of Biological Terrorism Directed Against Livestock = Rand. Conf. Proc. Official History of Britain and The Channel Tunnel = Whitehall Hist Official History of Britain and The Channel Tunnel = Whitehall. Hist. Official History of The Falklands Campaign Vol Ii: The 1982 Falklands War and It's Aftermath = Whitehall Hist Official History of The Falklands Campaign Vol Ii: The 1982 Falklands War and It's Aftermath = Whitehall. Hist. Official History of The Falklands Vol 1: The Origins of The Falklands Conflict = Whitehall Hist Official History of The Falklands Vol 1: The Origins of The Falklands Conflict = Whitehall. Hist. Official journal of the Canadian Association of Critical Care Nurses / CACCN = Off J Can Assoc Crit Care Nurs Official Journal of the Canadian Association of Critical Care Nurses = Off. J. Can. Assoc. Crit. Care Nurs. Official Proceedings of The Twenty-ninth International Power Conversion Conference = Pcim Ref S Official Proceedings of The Twenty-ninth International Power Conversion Conference = Pcim. Ref. S. Official Proceedings of The Twenty-sixth International Intelligent Motion Conference = Pcim Ref S Official Proceedings of The Twenty-sixth International Intelligent Motion Conference = Pcim. Ref. S. Official publication. Dental Hygienists' Association of the State of New York = Off Publ Dent Hyg Assoc State N Y Official Publication, Dental Hygienists Association of the State of New York = Off. Publ. Dent. Hyg. Assoc. State N. Y. Of Fish, Fly, Worm, and Man = E Schering Res Fdn W Of Fish, Fly, Worm, and Man = E. Schering. Res. Fdn. W. Off Median Phenomena and International Reference Ionosphere = Adv Space Res Off Median Phenomena and International Reference Ionosphere = Adv. Space. Res. Off our backs = Off Our Backs Offset Reduction Techniques in Highspeed Analog-to-digital Converters = Analog Circ Sig Proc Offset Reduction Techniques in Highspeed Analog-to-digital Converters = Analog. Circ. Sig. Proc. Offset Reduction Techniques in High-speed Analog-to-digital Converters: Analysis, Design and Tradeoffs = Analog Circ Sig Proc Offset Reduction Techniques in High-speed Analog-to-digital Converters: Analysis, Design and Tradeoffs = Analog. Circ. Sig. Proc. Offshore Engineering = Offsh Engin Offshore Engineering = Offsh. Engin. Offshore Engineering, Vol 8 = Offsh Engin Offshore Engineering, Vol 8 = Offsh. Engin. Offshore Finance and Small States: Sovereignty, Size and Money = Int Polit Econ Ser Offshore Finance and Small States: Sovereignty, Size and Money = Int. Polit. Econ. Ser. Offshore = Offshore Offshore Risk Assessment: Principles,modelling and Applications of Qra Studies, Second Edition = Springer Ser Reliab Offshore Risk Assessment: Principles,modelling and Applications of Qra Studies, Second Edition = Springer. Ser. Reliab. Offshore Site Investigation and Foundation Behaviour = Adv Underwat Technol Offshore Site Investigation and Foundation Behaviour = Adv. Underwat. Technol. Ofioliti = Ofioliti Of Mind and Matter: The Duality of National Identity in The German-danish = Cent Eur Stud Of Mind and Matter: The Duality of National Identity in The German-danish = Cent. Eur. Stud. Ofs-13: 13th International Conference On Optical Fiber Sensors & Workshop On Device and System Technology Toward Future Optical Fiber Communication and Sensing = Proc Spie Ofs-13: 13th International Conference On Optical Fiber Sensors & Workshop On Device and System Technology Toward Future Optical Fiber Communication and Sensing = Proc. Spie. Ofs-13: 13th International Conference On Optical Fiber Sensors & Workshop On Device and System Technology Toward Future Optical Fiber Communication and Sensing = P Soc Photo-opt Ins Ofs-13: 13th International Conference On Optical Fiber Sensors & Workshop On Device and System Technology Toward Future Optical Fiber Communication and Sensing = P. Soc. Photo-opt. Ins. Oftalmologia (Bucharest, Romania : 1990) = Oftalmologia Oftalmologia=Oftalmologia;; Oftalmologia = Oftalmologia Oftalmologicheskii zhurnal = Oftalmol Zh Oftalmologicheskii Zhurnal = Oftalmol. Zh. Of The Past, for The Future: Integrating Archaeology and Conservation = Getty Conserv Inst S Of The Past, for The Future: Integrating Archaeology and Conservation = Getty. Conserv. Inst. S. Of Thoughts and Words = Nobel Symp Of Thoughts and Words = Nobel. Symp. Of Wings and Wheels: A Synthetic Study of The Biblical Cherubim = Beih Z Alttest Wiss Of Wings and Wheels: A Synthetic Study of The Biblical Cherubim = Beih. Z. Alttest. Wiss. Ogam. Bulletin des Amis de la tradition celtique = Ogam Ogneupory = Ogneupory Ohio Agricultural Research and Development Center Department Series Ess = Ohio Ardc Rep Ser Es Ohio Agricultural Research and Development Center Department Series Ess = Ohio Ardc. Rep. Ser. Es. Ohio Agricultural Research and Development Center Research Bulletin = Ohio Ardc Res Bull Ohio Agricultural Research and Development Center Research Bulletin = Ohio Ardc. Res. Bull. Ohio Agricultural Research and Development Center Research Circular = Ohio Ardc Res Circ Ohio Agricultural Research and Development Center Research Circular = Ohio Ardc. Res. Circ. Ohio Agricultural Research and Development Center Special Circular = Ohio Ardc Spec Circ Ohio Agricultural Research and Development Center Special Circular = Ohio Ardc. Spec. Circ. Ohio Dental Journal = Ohio Dent. J. Ohio history / Ohio Historical Society = Ohio Hist Ohio Journal of Science = Ohio J Sci Ohio Journal of Science = Ohio J. Sci. Ohio medicine : journal of the Ohio State Medical Association = Ohio Med Ohio Medicine = Ohio Med. Ohio Northern University law review = Ohio North Univ Law Rev Ohio nurses review = Ohio Nurses Rev Ohio Nurses Review = Ohio Nurses Rev. Ohio Report On Research and Development = Ohio Rep Res Dev Ohio Report On Research and Development = Ohio Rep. Res. Dev. Ohio Review = Ohio Rev Ohio Review = Ohio Rev. Ohio State law journal = Ohio State Law J Ohio State Law Journal = Ohio State Law J Ohio State Law Journal = Ohio State Law J. Ohio State Medical Journal = Ohio State Med. J. Ohio State University Bulletin of Business Research=Ohio State U. Bull. Bus. Res. Ohio State University Mathematical Research Institute Publications = Ohio State Univ. Math. Res. Inst. Publ. Ohio State University Mathematical Research Institute Publications = Ohio St U M Ohio State University Mathematical Research Institute Publications = Ohio St. U. M. Ohio State University Working Papers in Linguistics = Osu Work Pap Ling Ohio State University Working Papers in Linguistics = Osu. Work. Pap. Ling. Ohio University Press Ecology and History Series = Ohio Univ Press Ecol Ohio University Press Ecology and History Series = Ohio Univ. Press Ecol. OHMS digest = OHMS Dig OHMS Digest = OHMS Dig. OH. Osteopathic hospitals = OH OH; Osteopathic Hospitals = OH Oie/fao International Scientific Conference On Avian Influenza = Dev Biologicals Oie/fao International Scientific Conference On Avian Influenza = Dev. Biologicals. Oie Global Conference On Aquatic Animal Health = Dev Biologicals Oie Global Conference On Aquatic Animal Health = Dev. Biologicals. Oikos = Oikos Oikumene. Studia ad historiam antiquam classicam et orientalem pertinentia = Oikumene Oil and Chemical Pollution = Oil Chem. Pollut. Oil and Gas International = Oil Gas Int. Oil and Gas Journal = Oil Gas J. Oil and Hydrocarbon Spills Iii: Modelling, Analysis and Control = Wat Stud Ser Oil and Hydrocarbon Spills Iii: Modelling, Analysis and Control = Wat. Stud. Ser. Oil and Hydrocarbon Spills, Modelling, Analysis and Control Ii = Wat Stud Ser Oil and Hydrocarbon Spills, Modelling, Analysis and Control Ii = Wat. Stud. Ser. Oil and Petrochemical Pollution = Oil Petrochem. Pollut. Oil and Security: A World Beyond Petroleum = Top Saf Risk Reliab Oil and Security: A World Beyond Petroleum = Top. Saf. Risk. Reliab. Oil and Soap = Oil Soap Oil & Chemical Pollution = Oil Chem Pollut Oil & Chemical Pollution = Oil Chem. Pollut. Oil Crops = Handb Plant Breed Oil Crops = Handb. Plant. Breed. Oilfield Review = Oilfield Rev Oilfield Review = Oilfield Rev. Oil Gas-european Magazine = Oil Gas-eur Mag Oil Gas-european Magazine = Oil Gas-eur. Mag. Oil, Gas (Hamburg, Germany) = Oil, Gas (Hamburg, Ger.) Oil & Gas Journal = Oil Gas J Oil & Gas Journal = Oil Gas J. Oil & Gas Science and Technology-revue De L Institut Francais Du Petrole = Oil Gas Sci Technol Oil & Gas Science and Technology-revue De L Institut Francais Du Petrole = Oil Gas Sci. Technol. Oil & Gas Science and Technology-revue D Ifp Energies Nouvelles = Oil Gas Sci Technol Oil & Gas Science and Technology-revue D Ifp Energies Nouvelles = Oil Gas Sci. Technol. Oil, paint, and drug reporter = Oil Paint Drug Report Oil Shale: A Solution to The Liquid Fuel Dilemma = Acs Sym Ser Oil Shale: A Solution to The Liquid Fuel Dilemma = Acs. Sym. Ser. Oil Shale = Oil Shale Oil Spill Response: A Global Perspective = Nato Sci Peace Secur Oil Spill Response: A Global Perspective = Nato. Sci. Peace. Secur. Oita University = Rep. Fac. Engrg. Oita Univ. Okajimas folia anatomica Japonica = Okajimas Folia Anat Jpn Okajimas Folia Anatomica Japonica=Okajimas Folia Anat Jpn;; Okajimas Folia Anatomica Japonica = Okajimas Folia Anat. Jpn. Okeanologiya = Okeanologiya+ Okeanologiya = Okeanologiya+.+ Okike-an African Journal of New Writing = Okike-afr J New Writ Okike-an African Journal of New Writing = Okike-afr. J. New Writ. Oklahoma Agricultural Experiment Station Bulletin = Okla Aes Bull Oklahoma Agricultural Experiment Station Bulletin = Okla. Aes. Bull. Oklahoma Agricultural Experiment Station Miscellaneous Publication = Okla Aes Misc Publ Oklahoma Agricultural Experiment Station Miscellaneous Publication = Okla. Aes. Misc. Publ. Oklahoma Agricultural Experiment Station Miscellaneous Publications = Ok Ag Ex Mp Oklahoma Agricultural Experiment Station Miscellaneous Publications = Ok. Ag. Ex. Mp. Oklahoma Agricultural Experiment Station Research Report = Okla Aes Res Rep Oklahoma Agricultural Experiment Station Research Report = Okla. Aes. Res. Rep. Oklahoma Agricultural Experiment Station Technical Bulletin = Okla Aes Tech Bull Oklahoma Agricultural Experiment Station Technical Bulletin = Okla. Aes. Tech. Bull. Oklahoma City University law review. Oklahoma City University = Oklahoma City Univ Law Rev Oklahoma Current Farm Economics = Okla Curr Farm Econ Oklahoma Current Farm Economics = Okla. Curr. Farm Econ. Oklahoma law review = Oklahoma Law Rev Oklahoma Law Review = Okla Law Rev Oklahoma Law Review = Okla. Law Rev. Oklahoma Nurse = Okla. Nurse Oklahoma statutes annotated. Oklahoma = Okla Statut Annot Okla Okoljski Ucinki Prometa in Turizma V Sloveniji = Geograff Okoljski Ucinki Prometa in Turizma V Sloveniji = Geograff. Okologie & Naturschutz = Okol Naturs Okologie & Naturschutz = Okol. Naturs. Ökologie und Landbau = Ökol. Landbau Okonomik Der Kooperation = Okon Koop Okonomik Der Kooperation = Okon. Koop. Okonomi og Politik=Okon. Polit. Okonomi=Okonomi Okonomische Theorie Der Hochschule = Okon Theorie Hsch Okonomische Theorie Der Hochschule = Okon. Theorie Hsch. Olba. Mersin Üniversitesi Kilikia Arkeolojisini Araştırma Merkezi yayınları = Olba Olba = Olba Old and New Methods in Historical Demography = Int St Demog Old and New Methods in Historical Demography = Int. St. Demog. Old and New Philology = Beih Editio Old and New Philology = Beih. Editio. Old and New Views of Protein Folding = Int Congr Ser Old and New Views of Protein Folding = Int. Congr. Ser. Oldenburgische Familienkunde = Oldenburg Familienkd Old English newsletter = Old Engl Newsl Older Adults With Hiv: An In-depth Examination of An Emerging Population = Hiv Aids-med Soc Psy Older Adults With Hiv: An In-depth Examination of An Emerging Population = Hiv. Aids-med. Soc. Psy. Old Germanic Name-studies = Reallexikon Ger Alte Old Germanic Name-studies = Reallexikon. Ger. Alte. Old-growth Forests: Function, Fate and Value = Ecol Stud-anal Synth Old-growth Forests: Function, Fate and Value = Ecol. Stud-anal. Synth. Old-growth Forests in The Southwest and Rocky Mountain Regions : Proceedings of A Workshop = Usda Rocky Old-growth Forests in The Southwest and Rocky Mountain Regions : Proceedings of A Workshop = Usda. Rocky Old Herborn University Seminar Monograph 5 = Old Her U M Old Herborn University Seminar Monograph 5 = Old Her. U. M. Old Herborn University Seminar Monograph 8 = Old Her U M Old Herborn University Seminar Monograph 8 = Old Her. U. M. Old Herborn University Seminar Monograph = Old Her U M Old Herborn University Seminar Monograph = Old Her. U. M. Old Herborn University Seminar Monograph, Vol 10 = Old Her U M Old Herborn University Seminar Monograph, Vol 10 = Old Her. U. M. Old Herborn University Seminar Monograph, Vol 11 = Old Her U M Old Herborn University Seminar Monograph, Vol 11 = Old Her. U. M. Old Herborn University Seminar Monograph, Vol 9 = Old Her U M Old Herborn University Seminar Monograph, Vol 9 = Old Her. U. M. Old Norse and Finnish Religions and Cultic Place-names = Sc Inst Don Old Norse and Finnish Religions and Cultic Place-names = Sc. Inst. Don. Old Testament in Its World = Old Test St Old Testament in Its World = Old Test. St. Old-time New England = Old-time New Engl Old-time New England = Old-time New Engl. Old Wineskins, New Wine: Readings in Sexuality in Sub-saharan Africa = Hum Sex Ser Old Wineskins, New Wine: Readings in Sexuality in Sub-saharan Africa = Hum. Sex. Ser. Old Worlds, New Mirrors: On Jewish Mysticism and Twentieth-century Thought = Jew Cult Context Old Worlds, New Mirrors: On Jewish Mysticism and Twentieth-century Thought = Jew. Cult. Context. Oleagineux, Corps Gras, Lipides = Ol. Corps Gras, Lipides Oleagineux = Oleagineux Olefin Metathesis = Macromol Sy Olefin Metathesis = Macromol. Sy. Olefin Polymerization = Acs Sym Ser Olefin Polymerization = Acs. Sym. Ser. Olefin Upgrading Catalysis By Nitrogen-based Metal Complexes Ii: State of The Art and Perspectives = Catal Met Complexes Olefin Upgrading Catalysis By Nitrogen-based Metal Complexes Ii: State of The Art and Perspectives = Catal. Met. Complexes Olefin Upgrading Catalysis By Nitrogen-based Metal Complexes I: State-of-the-art and Perspectives = Catal Met Complexes Olefin Upgrading Catalysis By Nitrogen-based Metal Complexes I: State-of-the-art and Perspectives = Catal. Met. Complexes Olfaction and Electronic Nose, Proceedings = Aip Conf Proc Olfaction and Electronic Nose, Proceedings = Aip. Conf. Proc. Olfaction and Taste Xii = Ann Ny Acad Sci Olfaction and Taste Xii = Ann. Ny. Acad. Sci. Olfaction in Mosquito-host Interactions = Ciba F Symp Olfaction in Mosquito-host Interactions = Ciba. F. Symp. Olhydraulik: Handbuch Fur Die Hydrostatische Leistungsubertragung in Der Fluidtechnik = Vdi-buch Olhydraulik: Handbuch Fur Die Hydrostatische Leistungsubertragung in Der Fluidtechnik = Vdi-buch. Oligomeric State of Substances = Polym Sci Technol Se Oligomeric State of Substances = Polym. Sci. Technol. Se. Oligomers Polymer Composties Molecular Imprinting = Adv Polym Sci Oligomers Polymer Composties Molecular Imprinting = Adv. Polym. Sci. Oligonucleotides As Therapeutic Agents = Ciba F Symp Oligonucleotides As Therapeutic Agents = Ciba. F. Symp. Oligonucleotides = Oligonucleotides Oligonucleotide Therapeutics = Ann Ny Acad Sci Oligonucleotide Therapeutics = Ann. Ny. Acad. Sci. Oligosaccharides in Food and Agriculture = Acs Sym Ser Oligosaccharides in Food and Agriculture = Acs. Sym. Ser. Olive: Its Processing and Waste Management = Food Sci Technol Olive: Its Processing and Waste Management = Food. Sci. Technol. Oliver Cromwell = Routledge Hist Biogr Oliver Cromwell = Routledge. Hist. Biogr. Olsen & Olsen International Symposium Series = Olsen Int S Olsen & Olsen International Symposium Series = Olsen Int. S. Olympia. Die Ergebnisse der von dem Deutschen Reich veranstalteten Ausgrabung (Berlin 1890--­1897) = Olympia Olympias: Mother of Alexander The Great = Women Ancient World Olympias: Mother of Alexander The Great = Women. Ancient. World. Olympic Media: Inside The Biggest Show On Television = Routl Crit Stud Spor Olympic Media: Inside The Biggest Show On Television = Routl. Crit. Stud. Spor. Olympic Women and The Media: International Perspectives = Glob Cult Sport Olympic Women and The Media: International Perspectives = Glob. Cult. Sport. Olympische Forschungen = OF Omaly sy anio. Hier et aujourd'hui = Omaly Anio Oman - The Islamic Democratic Tradition = Durh Mod Mid E Islam Oman - The Islamic Democratic Tradition = Durh. Mod. Mid. E. Islam. Omdoc - An Open Markup Format for Mathematical Documents = Lect Notes Artif Int Omdoc - An Open Markup Format for Mathematical Documents = Lect. Notes. Artif. Int. O Medico; semanario de assuntos medicos e paramedicos = Medico (Porto) Omega-international Journal of Management Science = Omega-int J Manage S Omega-international Journal of Management Science = Omega-int. J. Manage. S. Omega-journal of Death and Dying = Omega-j Death Dying Omega-journal of Death and Dying = Omega-j. Death Dying Omega = Omega (Westport) Omics : a journal of integrative biology = OMICS Omics-a Journal of Integrative Biology = Omics Omics-a Journal of Integrative Biology = Omics. Omics = OMICS OMICS = OMICS Omitted Variable Tests and Dynamic Specification = Lect Notes Econ Math Omitted Variable Tests and Dynamic Specification = Lect. Notes. Econ. Math. Omnia medica et therapeutica = Omnia Med Ther Omnia Medica et Therapeutica = Omnia Med. Ther. Omnia medica = Omnia Med Omnia medica. Supplemento = Omnia Med Suppl Omnia therapeutica = Omnia Ther Omnia therapeutica. Supplemento = Omnia Ther Suppl Omnidirectional Inductive Power for Biomedical Implants = Analog Circ Sig Proc Omnidirectional Inductive Power for Biomedical Implants = Analog. Circ. Sig. Proc. Omnidirectional Inductive Powering for Biomedical Implants = Analog Circ Sig Proc Omnidirectional Inductive Powering for Biomedical Implants = Analog. Circ. Sig. Proc. Omni (New York, N.Y.) = Omni Omni = Omni Omr-organic Magnetic Resonance = Omr-organ Magnet Res Omr-organic Magnetic Resonance = Omr-organ. Magnet. Res. Omvardaren = Omvardaren ONA journal = ONA J ONA Journal = ONA J. On Bypass: Advanced Perfusion Techniques = Curr Card Surg On Bypass: Advanced Perfusion Techniques = Curr. Card. Surg. Once Upon A Time in A Different World: Issues and Ideas in African American Childrens Literature = Child Lit Cult Once Upon A Time in A Different World: Issues and Ideas in African American Childrens Literature = Child. Lit. Cult. Onchi and Singing Development = Adv Stud Music Ed S Onchi and Singing Development = Adv. Stud. Music. Ed. S. On-chip Interconnect With Aelite: Composable and Predictable Systems = Embed Syst On-chip Interconnect With Aelite: Composable and Predictable Systems = Embed. Syst. Onchocerciasis and Its Control = Who Tech Rep Ser Onchocerciasis and Its Control = Who. Tech. Rep. Ser. Oncodevelopmental Biology and Medicine = Oncodev Biol Med Oncodevelopmental Biology and Medicine = Oncodev. Biol. Med. Oncodevelopmental biology and medicine : the journal of the International Society for Oncodevelopmental Biology and Medicine = Oncodev Biol Med Oncofertility: Ethical, Legal , Social, and Medical Perspectives = Cancer Treat Res Oncofertility: Ethical, Legal , Social, and Medical Perspectives = Cancer. Treat. Res. Oncogene and Transgenics Correlates of Cancer Risk Assessments = Nato Adv Sci Inst Se Oncogene and Transgenics Correlates of Cancer Risk Assessments = Nato. Adv. Sci. Inst. Se. Oncogene=Oncogene;; Oncogene = Oncogene Oncogene research = Oncogene Res Oncogene Research = Oncogene Res Oncogene Research = Oncogene Res. Oncogenesis and Molecular Biology of Pituitary Tumors = Front Horm Res Oncogenesis and Molecular Biology of Pituitary Tumors = Front. Horm. Res. Oncogenesis : Oncogenes in Signal Transduction and Cell Proliferation = Adv Ap Biot Oncogenesis : Oncogenes in Signal Transduction and Cell Proliferation = Adv. Ap. Biot. Oncogenes Meet Metabolism: From Deregulated Genes to A Broader Understanding of Tumour Physiology = Ernst Schering Found Oncogenes Meet Metabolism: From Deregulated Genes to A Broader Understanding of Tumour Physiology = Ernst. Schering. Found. Oncogene Techniques = Method Enzymol Oncogene Techniques = Method. Enzymol. On Collective Intelligence = Adv Intel Soft Compu On Collective Intelligence = Adv. Intel. Soft. Compu. Oncologia = Oncologia Oncologia = Oncologia-basel Oncologia = Oncologia-basel. Oncologica = Oncologica Oncologica / Vereniging van Oncologie Verpleegkundigen = Oncologica Oncologie = Oncologie Oncologist = Oncologist Oncology Letters = Oncol Lett Oncology Letters = Oncol. Lett. Oncology-new York = Oncology-ny Oncology-new York = Oncology-ny. Oncology nursing forum = Oncol Nurs Forum Oncology Nursing Forum=Oncol Nurs Forum;; Oncology Nursing Forum = Oncol Nurs Forum Oncology Nursing Forum = Oncol. Nurs. Forum Oncology=Oncology;; Oncology = Oncology Oncology = Oncology-basel Oncology = Oncology-basel. Oncology=Oncology (Huntingt);; Oncology reports = Oncol Rep Oncology Reports = Oncol Rep Oncology Reports = Oncol. Rep. Oncology research = Oncol Res Oncology Research=Oncol Res;; Oncology Research = Oncol Res Oncology Research = Oncol. Res. Oncology (Williston Park, N.Y.) = Oncology (Williston Park) On Comitatives and Related Categories = Empir Approach Lang On Comitatives and Related Categories = Empir. Approach. Lang. On Communication. An Interdisciplinary and Mathematical Approach = Theory Decis Lib A On Communication. An Interdisciplinary and Mathematical Approach = Theory. Decis. Lib. A. Oncotarget = Oncotarget Oncotargets and Therapy = Oncotargets Ther Oncotargets and Therapy = Oncotargets Ther. On Criticism = Think Action On Criticism = Think. Action. Onde Electrique = Onde Electr Onde Electrique = Onde Electr. Onderstepoort Journal of Veterinary Research = Onderstepoort J Vet Onderstepoort Journal of Veterinary Research = Onderstepoort J. Vet. Onderstepoort Journal of Veterinary Research=Onderstepoort J Vet Res;; Onderstepoort Journal of Veterinary Research = Onderstepoort J. Vet. Res. One-dimensional Nanostructures = Lect Notes Nanoscale One-dimensional Nanostructures = Lect. Notes. Nanoscale. One Europe Or Several = One Eur Several One Europe Or Several = One Eur. Several One Hundred Years of Philosophy = Stud Phil H One Hundred Years of Philosophy = Stud. Phil. H. One Hundred Years of Russell's Paradox: Mathematics, Logic, Philosophy = De Gru Log Applicat One Hundred Years of Russell's Paradox: Mathematics, Logic, Philosophy = De. Gru. Log. Applicat. One Land, Many Landscapes = Brit Archaeol Rep In One Land, Many Landscapes = Brit. Archaeol. Rep. In. One Legacy of Paul F. Brandwein: Creating Scientists = Class Sci Educ One Legacy of Paul F. Brandwein: Creating Scientists = Class. Sci. Educ. One Million Years of Anthropogenic Global Environmental Change = Knaw Verhan One Million Years of Anthropogenic Global Environmental Change = Knaw. Verhan. One-of-a-kind Production : New Approaches = Ifip Trans B One-of-a-kind Production : New Approaches = Ifip. Trans. B. One on one = One One One on One = One One Ones We Remember: Scholars Reflect On Teachers Who Made A Difference = Adolesc Educ Ones We Remember: Scholars Reflect On Teachers Who Made A Difference = Adolesc. Educ. One Teacher: Jesus' Teaching Role in Matthew's Gospel Report = Beih Z Neutest Wiss One Teacher: Jesus' Teaching Role in Matthew's Gospel Report = Beih. Z. Neutest. Wiss. One World Archaeology = One World Archaeol One World Archaeology = One World Archaeol. On Futurity: Malabou, Nancy and Derrida = Renew Philos On Futurity: Malabou, Nancy and Derrida = Renew. Philos. On Human Nature = Wissensch Technikfol On Human Nature = Wissensch. Technikfol. On Human Nature = Wiss Technik Folgenb On Human Nature = Wiss. Technik. Folgenb. On Inflection = Trends Linguist-stud On Inflection = Trends. Linguist-stud. On Integrating Unmanned Aircraft Systems Into The National Airspace System = Intel Syst Contr Aut On Integrating Unmanned Aircraft Systems Into The National Airspace System = Intel. Syst. Contr. Aut. On Interpreting Construction Schemas: From Action and Motion to Transitivity and Causality = Trends Linguist-stud On Interpreting Construction Schemas: From Action and Motion to Transitivity and Causality = Trends. Linguist-stud. Onkologe = Onkologe Onkologie = Onkologie Onkologisches Kolloquium = Onkol Koll Onkologisches Kolloquium = Onkol. Koll. On Languages and Language = Trend Lin S On Languages and Language = Trend. Lin. S. Online, ADL-Nachrichten = Online, ADL-Nachr. Online Algorithms = Lect Notes Comput Sc Online Algorithms = Lect. Notes. Comput. Sc. Online & Cdrom Review = Online Cdrom Rev Online & Cdrom Review = Online Cdrom Rev. Online Communication in Language Learning and Teaching = Res Pract Appl Lingu Online Communication in Language Learning and Teaching = Res. Pract. Appl. Lingu. Online Communities and Social Computing, Proceedings = Lect Notes Comput Sc Online Communities and Social Computing, Proceedings = Lect. Notes. Comput. Sc. Online Consumer Psychology = Advert Cons Online Consumer Psychology = Advert. Cons. On-line Error Detection and Fast Recover Techniques for Dependable Embedded Processors = Lect Notes Comput Sc On-line Error Detection and Fast Recover Techniques for Dependable Embedded Processors = Lect. Notes. Comput. Sc. On-line Fault Detection and Supervision in The Chemical Process Industries = Ifac Symp Series On-line Fault Detection and Supervision in The Chemical Process Industries = Ifac. Symp. Series. Online Information Review = Online Inform Rev Online Information Review = Online Inform. Rev. Online Journal of Current Clinical Trials=Online J Curr Clin Trials;; Online Journal of Current Clinical Trials = Online J. Curr. Clin. Trials Online journal of issues in nursing = Online J Issues Nurs Online Journal of Issues in Nursing = Online J. Issues Nurs. Online Journal of Knowledge Synthesis for Nursing = Online J Knowl Syn N Online Journal of Knowledge Synthesis for Nursing = Online J. Knowl. Syn. N. Online = Online Online Review = Online Rev Online Review = Online Rev. Online Society in China: Creating, Celebrating, and Instrumentalising The Online Carnival = Media Cult Soc Chang Online Society in China: Creating, Celebrating, and Instrumentalising The Online Carnival = Media. Cult. Soc. Chang. On-line Trajectory Generation in Robotic Systems: Basic Concepts for Instantaneous Reactions to Unforeseen (sensor) Events = Springer Trac Adv Ro On-line Trajectory Generation in Robotic Systems: Basic Concepts for Instantaneous Reactions to Unforeseen (sensor) Events = Springer. Trac. Adv. Ro. On Normalized Integral Table Algebras (fusion Rings): Generated By A Faithful Non-real Element of Degree 3 = Algebra Appl On Normalized Integral Table Algebras (fusion Rings): Generated By A Faithful Non-real Element of Degree 3 = Algebra. Appl. Onomazein = Onomazein On Our Way: The Final Passage Through Life and Death = Life Passage On Pied-piping: Wh-movement and Beyond = Stud Generat Gramm On Pied-piping: Wh-movement and Beyond = Stud. Generat. Gramm. Ons Amsterdam = Ons Amst ONS connect = ONS Connect [Onsen kagaku] Journal of the Balneological Society of Japan = Onsen Kagaku Onset of Nonlinearity in Cosmology = Ann Ny Acad Sci Onset of Nonlinearity in Cosmology = Ann. Ny. Acad. Sci. Onset of Puberty in Perspective = Int Congr Ser Onset of Puberty in Perspective = Int. Congr. Ser. On Sharing Religious Experience = Curr Encoun On Sharing Religious Experience = Curr. Encoun. Ons heem = Ons Heem Onshore-offshore Relationships On The North Atlantic Margin = Npf Sp Publ Onshore-offshore Relationships On The North Atlantic Margin = Npf. Sp. Publ. On-site Wastewater Treatment, Vol 6 = Asae Publ On-site Wastewater Treatment, Vol 6 = Asae. Publ. ONS news / Oncology Nursing Society = ONS News ONS News = ONS News Ontario dentist = Ont Dent Ontario Dentist = Ont. Dent. Ontario history = Ont Hist Ontario medical review = Ont Med Rev Ontario Symposium On Personality and Social Psychology = Ont Symp P Ontario Symposium On Personality and Social Psychology = Ont. Symp. P. On The Cohomology of Certain Non-compact Shimura Varieties = Ann Math Stud On The Cohomology of Certain Non-compact Shimura Varieties = Ann. Math. Stud. On The Compatibility of Flexible Instruments = Environ Policy On The Compatibility of Flexible Instruments = Environ. Policy. On The Convergence of Bio-information-, Environmental-, Energy-, Space- and Nano-technologies, Pts 1 and 2 = Key Eng Mat On The Convergence of Bio-information-, Environmental-, Energy-, Space- and Nano-technologies, Pts 1 and 2 = Key. Eng. Mat. On The Convergence of Bio-information-, Environmental-, Energy-, Space- and Nano-technologies, Pts 1 and 2 = Key Eng Mater On The Convergence of Bio-information-, Environmental-, Energy-, Space- and Nano-technologies, Pts 1 and 2 = Key. Eng. Mater. On The Eve of The 3rd Millennium, The European Challenge for Animal Production = Eaap Public On The Eve of The 3rd Millennium, The European Challenge for Animal Production = Eaap. Public. On The Goemetry of Diffusion Operators and Stochastic Flows = Lect Notes Math On The Goemetry of Diffusion Operators and Stochastic Flows = Lect. Notes. Math. On The Interpretation of Treaties: The Modern International Law As Expressed in The 1969 Vienna Convention On The Law of Treaties = Law Philos Libr On The Interpretation of Treaties: The Modern International Law As Expressed in The 1969 Vienna Convention On The Law of Treaties = Law Philos. Libr. On The Margins of French Literature = Fr Lit Ser On The Margins of French Literature = Fr. Lit. Ser. On The Move for Love = Pa Stud Hum Rights On The Move for Love = Pa. Stud. Hum. Rights. On The Move to Meaningful Internet Systems 2002: Coopls, Doa, and Odbase = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2002: Coopls, Doa, and Odbase = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2003: Coopis, Doa, and Odbase = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2003: Coopis, Doa, and Odbase = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2003: Otm 2003 Workshops = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2003: Otm 2003 Workshops = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2004: Coopis, Doa, and Odbase, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2004: Coopis, Doa, and Odbase, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2004: Coopls, Doa, and Odbase, Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2004: Coopls, Doa, and Odbase, Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2004: Otm 2004 Workshops, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2004: Otm 2004 Workshops, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2005: Coopis, Doa, and Odbase, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2005: Coopis, Doa, and Odbase, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2005: Coopis, Doa, and Odbase, Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2005: Coopis, Doa, and Odbase, Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2005: Otm 2005 Workshops, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2005: Otm 2005 Workshops, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2006: Coopis, Doa, Gada, and Odbase Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2006: Coopis, Doa, Gada, and Odbase Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2006: Coopis, Doa, Gada, and Odbas, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2006: Coopis, Doa, Gada, and Odbas, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2006: Otm 2006 Workshops, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2006: Otm 2006 Workshops, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2006: Otm 2006 Workshops, Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2006: Otm 2006 Workshops, Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2007: Coopis, Doa, Odbase, Gada, and Is, Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2007: Coopis, Doa, Odbase, Gada, and Is, Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2007: Coopls, Doa, Odbase, Gada, and Is, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2007: Coopls, Doa, Odbase, Gada, and Is, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2007: Otm 2007 Workshops, Pt 1, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2007: Otm 2007 Workshops, Pt 1, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems 2007: Otm 2007 Workshops, Pt 2, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems 2007: Otm 2007 Workshops, Pt 2, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2008, Part I = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2008, Part I = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2008, Pt Ii, Proceedings = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2008, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2008 Workshops = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2008 Workshops = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2009, Pt 1 = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2009, Pt 1 = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2009, Pt 2 = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2009, Pt 2 = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2009 Workshops = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2009 Workshops = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2010, Pt Ii = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2010, Pt Ii = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2010, Pt I = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2010, Pt I = Lect. Notes. Comput. Sc. On The Move to Meaningful Internet Systems: Otm 2010 Workshops = Lect Notes Comput Sc On The Move to Meaningful Internet Systems: Otm 2010 Workshops = Lect. Notes. Comput. Sc. On The Mysteries of Unemployment : Causes, Consequences and Policies = Stud Oper R On The Mysteries of Unemployment : Causes, Consequences and Policies = Stud. Oper. R. On The Special Needs of Blind and Low Vision Seniors = Assist Technol Res S On The Special Needs of Blind and Low Vision Seniors = Assist. Technol. Res. S. On The Special Needs of Blind and Low Vision Seniors = Assist Techn Res Ser On The Special Needs of Blind and Low Vision Seniors = Assist. Techn. Res. Ser. On The Syntactic Composition of Manner and Motion = Linguist Inq Monogr On The Syntactic Composition of Manner and Motion = Linguist. Inq. Monogr. On The Uniqueness of Humankind = Wissensch Technikfol On The Uniqueness of Humankind = Wissensch. Technikfol. On The Uniqueness of Humankind = Wiss Technik Folgenb On The Uniqueness of Humankind = Wiss. Technik. Folgenb. On The Uses of The Fantastic in Modern Theatre: Cocteau, Oedipus, and The Monster = Palg Stud Theat Perf On The Uses of The Fantastic in Modern Theatre: Cocteau, Oedipus, and The Monster = Palg. Stud. Theat. Perf. On The Way to Fuller Koinonia = Faith Order On The Way to Fuller Koinonia = Faith. Order. On Thinking = On Thinking On Three Levels: Micro-, Meso-, and Macro-approaches in Physics = Nato Adv Sci Inst Se On Three Levels: Micro-, Meso-, and Macro-approaches in Physics = Nato. Adv. Sci. Inst. Se. On Time - New Contributions to The Husserlian Phenomenology of Time = Phaenomenologica On Time - New Contributions to The Husserlian Phenomenology of Time = Phaenomenologica. Ontocape: A Re-usable Ontology for Chemical Process Engineering = Rwthedition Ontocape: A Re-usable Ontology for Chemical Process Engineering = Rwthedition. Ontogenetic and Phylogenetic Mechanisms of Neuroimmunomodulation = Ann Ny Acad Sci Ontogenetic and Phylogenetic Mechanisms of Neuroimmunomodulation = Ann. Ny. Acad. Sci. Ontogenez=Ontogenez;; Ontogenez = Ontogenez Ontogeny of Hematopoiesis = Colloq Inse Ontogeny of Hematopoiesis = Colloq. Inse. Ontolinguistics: How Ontological Status Shapes The Linguistic Coding of Concepts = Trends Linguist-stud Ontolinguistics: How Ontological Status Shapes The Linguistic Coding of Concepts = Trends. Linguist-stud. Ontological Explorations = Ontol Explor Ontological Explorations = Ontol. Explor. Ontologies-based Databases and Information Systems = Lect Notes Comput Sc Ontologies-based Databases and Information Systems = Lect. Notes. Comput. Sc. Ontologies for Agents: Theory and Experiences = Whitestein Ser Softw Ontologies for Agents: Theory and Experiences = Whitestein. Ser. Softw. Ontologies for Agents: Theory and Experiences = Ws So Ag Te Ontologies for Agents: Theory and Experiences = Ws. So. Ag. Te. Ontologies for Urban Development = Stud Comp Intell Ontologies for Urban Development = Stud. Comp. Intell. Ontologies for Urban Development = Stud Comput Intell Ontologies for Urban Development = Stud. Comput. Intell. Ontologies in Medicine = St Heal T Ontologies in Medicine = St. Heal. T. Ontologies in Medicine = Stud Health Technol Ontologies in Medicine = Stud. Health. Technol. Ontologies, Taxonomies and Thesauri in Systems Science and Systematics = Chandos Inf Prof Ser Ontologies, Taxonomies and Thesauri in Systems Science and Systematics = Chandos. Inf. Prof. Ser. Ontology Alignment: Bridging The Semantic Gap = Semat Web Beyond-com Ontology Alignment: Bridging The Semantic Gap = Semat. Web. Beyond-com. Ontology and The Semantic Web = Front Artif Intel Ap Ontology and The Semantic Web = Front. Artif. Intel. Ap. Ontology-based Multi-agent Systems = Stud Comput Intell Ontology-based Multi-agent Systems = Stud. Comput. Intell. Ontology, Conceptualization and Epistemology for Information Systems, Software Engineering and Service Science = Lect Notes Bus Inf Ontology, Conceptualization and Epistemology for Information Systems, Software Engineering and Service Science = Lect. Notes. Bus. Inf. Ontology Learning and Population: Bridging The Gap Between Text and Knowledge = Front Artif Intel Ap Ontology Learning and Population: Bridging The Gap Between Text and Knowledge = Front. Artif. Intel. Ap. Ontology Management: Semantic Web, Semantic Web Services, and Business Applications = Semat Web Beyond-com Ontology Management: Semantic Web, Semantic Web Services, and Business Applications = Semat. Web Beyond-com. Ontology Representation: Design Patterns and Ontologies That Make Sense = Front Artif Intel Ap Ontology Representation: Design Patterns and Ontologies That Make Sense = Front. Artif. Intel. Ap. On Waiting = Think Action On Waiting = Think. Action. On Water, Vol 79 = Vom Wasser On Water, Vol 79 = Vom. Wasser. OOQ; Occupational Outlook Quarterly = OOQ Occup. Outlook Q. Oostvlaamsche zanten = Oostvlaam Zanten Opacity of Spiral Disks = Nato Adv Sci Inst Se Opacity of Spiral Disks = Nato. Adv. Sci. Inst. Se. OPEC Review=OPEC Rev. Open and Flexible Learning Series = Open Flex Learn Ser Open and Flexible Learning Series = Open Flex. Learn. Ser. Open Applied Mathematics Journal = Open Appl. Math. J. Open Architecture Control Systems and Standards = P Soc Photo-opt Ins Open Architecture Control Systems and Standards = P. Soc. Photo-opt. Ins. Open Biochemistry Journal = Open Biochem. J. Open Biochemistry Letters = Open Biochem. Lett. Open Biomaterials Journal = Open Biomater. J. Open Biomedical Engineering Journal = Open Biomed. Eng. J. Open Biomedical Engineering Letters = Open Biomed. Eng.Lett. Open Biotechnology Journal = Open Biotechnol. J. Open Chemical Engineering Journal = Open Chem. Eng. J. Open Design, A Stakeholder-oriented Approach in Architecture, Urban Planning, and Project Management = Res Des Ser Open Design, A Stakeholder-oriented Approach in Architecture, Urban Planning, and Project Management = Res. Des. Ser. Open Distributed Processing = Ifip Trans C Open Distributed Processing = Ifip. Trans. C. Open Distributed Processing, Ii = Ifip Trans C Open Distributed Processing, Ii = Ifip. Trans. C. Open Drug Delivery Journal = Open Drug Delivery J. Open Drug Delivery Reviews = Open Drug Delivery Rev. Open Economics: Economics in Relation to Other Disciplines = Routl Stud Hist Econ Open Economics: Economics in Relation to Other Disciplines = Routl. Stud. Hist. Econ. Open Economies Review=Open Economies Rev. Open Economies Review = Open Econ Rev Open Economies Review = Open Econ. Rev. Open File Publications = Open File Publ Open File Publications = Open File Publ. Open Food Science Journal = Open Food Sci. J. Open Forum Series = Open Forum Ser Open Forum Series = Open Forum Ser. Open Government: Fostering Dialogue With Civil Society = Oecd Proc Open Government: Fostering Dialogue With Civil Society = Oecd. Proc. Open House International = Open House Int Open House International = Open House Int. Opening Doors: Access to The European Heritage in Museums = Toscana Musei Opening Doors: Access to The European Heritage in Museums = Toscana. Musei. Opening Frontiers in Solar Research = Adv Space Res-series Opening Frontiers in Solar Research = Adv. Space. Res-series. Opening Productive Partnerships = Adv Des Man Opening Productive Partnerships = Adv. Des. Man. Opening The Research Text: Critical Insights and In(ter)ventions Into Mathematics Education = Math Educ Lib Opening The Research Text: Critical Insights and In(ter)ventions Into Mathematics Education = Math. Educ. Lib. Open Inorganic Chemistry Journal = Open Inorg. Chem. J. Open Inorganic Chemistry Reviews = Open Inorg. Chem. Rev. Open Issues in Local Star Formation = Astrophys Space Sc L Open Issues in Local Star Formation = Astrophys. Space. Sc. L. Open It-based Innovation: Moving Towards Cooperative It Transfer and Knowledge Diffusion = Int Fed Info Proc Open It-based Innovation: Moving Towards Cooperative It Transfer and Knowledge Diffusion = Int. Fed. Info. Proc. Open Knowledge Society: A Computer Science and Information Systems Manifesto = Comm Com Inf Sc Open Knowledge Society: A Computer Science and Information Systems Manifesto = Comm. Com. Inf. Sc. Open-loop and Closed-loop Control of Vehicles and Engines - Autoreg 2004 = Vdi Bericht Open-loop and Closed-loop Control of Vehicles and Engines - Autoreg 2004 = Vdi. Bericht. Open Market Operations and Financial Markets = Routl Int Stud Money Open Market Operations and Financial Markets = Routl. Int. Stud. Money. Open Medicinal Chemistry Journal = Open Med. Chem. J. Openmp in A New Era of Parallelism, Proceedings = Lect Notes Comput Sc Openmp in A New Era of Parallelism, Proceedings = Lect. Notes. Comput. Sc. Openmp Shared Memory Parallel Programming = Lect Notes Comput Sc Openmp Shared Memory Parallel Programming = Lect. Notes. Comput. Sc. Openmp Shared Memory Parallel Programming, Proceedings = Lect Notes Comput Sc Openmp Shared Memory Parallel Programming, Proceedings = Lect. Notes. Comput. Sc. Open Nanoscience Journal = Open Nanosci. J. Open Organic Chemistry Journal = Open Org. Chem. J. Open Organic Chemistry Reviews = Open Inorg. Chem. Rev. Open Physical Chemistry Journal = Open Phys. Chem. J. Open Physical Chemistry Reviews = Open Phys. Chem. Rev. Open Quantum Systems Iii: Recent Developments = Lect Notes Math Open Quantum Systems Iii: Recent Developments = Lect. Notes. Math. Open Quantum Systems Ii = Lect Notes Math Open Quantum Systems Ii = Lect. Notes. Math. Open Quantum Systems I = Lect Notes Math Open Quantum Systems I = Lect. Notes. Math. Open Source Development, Adoption and Innovation = Int Fed Info Proc Open Source Development, Adoption and Innovation = Int. Fed. Info. Proc. Open Source Development, Communities and Quality = Int Fed Info Proc Open Source Development, Communities and Quality = Int. Fed. Info. Proc. Open Source Ecosystems-diverse Communities Interacting = Int Fed Info Proc Open Source Ecosystems-diverse Communities Interacting = Int. Fed. Info. Proc. Open Source Systems = Int Fed Info Proc Open Source Systems = Int. Fed. Info. Proc. Open Systems & Information Dynamics = Open Syst Inf Dyn Open Systems & Information Dynamics = Open Syst. Inf. Dyn. Open World and Closed Societies: Essays On Higher Education Policies in Transition = Issues High Educ-pal Open World and Closed Societies: Essays On Higher Education Policies in Transition = Issues. High. Educ-pal. Opera Botanica Belgica = Opera Bot Belg Opera Botanica Belgica = Opera Bot. Belg. Opera Botanica = Opera Bot. Opera News = Opera News Opera = Opera Opera Quarterly = Opera Quart Opera Quarterly = Opera Quart. Operating Hours and Working Times: A Survey of Capacity Utilisation and Employment in The European Union = Contrib Econ Operating Hours and Working Times: A Survey of Capacity Utilisation and Employment in The European Union = Contrib. Econ. Operational Characteristics and Crystal Growth of Nonlinear Optical Materials = Proc Spie Operational Characteristics and Crystal Growth of Nonlinear Optical Materials = Proc. Spie. Operational Characteristics and Crystal Growth of Nonlinear Optical Materials = P Soc Photo-opt Ins Operational Characteristics and Crystal Growth of Nonlinear Optical Materials = P. Soc. Photo-opt. Ins. Operational Effects of Geometrics 2003 = Transport Res Rec Operational Effects of Geometrics 2003 = Transport. Res. Rec. Operational Freight Carrier Planning = Gor-publ Operational Freight Carrier Planning = Gor-publ. Operational Oceanography = Elsev Oceanogr Serie Operational Oceanography = Elsev. Oceanogr. Serie. Operational Physics = Oper Phys Operational Physics = Oper. Phys. Operational Quantum Theory I: Nonrelativistic Structures = Oper Phys Operational Quantum Theory I: Nonrelativistic Structures = Oper. Phys. Operational research quarterly = Oper Res Q Operational Research Quarterly = Oper. Res. Q. Operational Research Quarterly = Oper Res Quart Operational Research Quarterly = Oper. Res. Quart. Operational Semantics for Timed Systems: A Non-standard Approach to Uniform Modeling of Timed and Hybrid Systems = Lect Notes Comput Sc Operational Semantics for Timed Systems: A Non-standard Approach to Uniform Modeling of Timed and Hybrid Systems = Lect. Notes. Comput. Sc. Operational Spacetime: Interactions and Particles = Fund Theor Phys Operational Spacetime: Interactions and Particles = Fund. Theor. Phys. Operational Warfare At Sea: Theory and Practice = Cass Ser Nav Policy Operational Warfare At Sea: Theory and Practice = Cass. Ser. Nav. Policy. Operation of A Cryogenic Rocket Engine: An Outline With Down-to-earth and Up-to-space Remarks = Springer Aerosp Tech Operation of A Cryogenic Rocket Engine: An Outline With Down-to-earth and Up-to-space Remarks = Springer. Aerosp. Tech. Operations and Management in Ip-based Networks, Proceedings = Lect Notes Comput Sc Operations and Management in Ip-based Networks, Proceedings = Lect. Notes. Comput. Sc. Operations Research and Cyber-infrastructure = Operat Res Comp Sci Operations Research and Cyber-infrastructure = Operat. Res. Comp. Sci. Operations Research and Cyber-infrastructure = Oper Res Comput Sci Operations Research and Cyber-infrastructure = Oper. Res. Comput. Sci. Operations Research and Decision Aid Methodologies in Traffic and Transportation Management = Nato Adv Sci I F-com Operations Research and Decision Aid Methodologies in Traffic and Transportation Management = Nato. Adv. Sci. I. F-com. Operations Research and Health Care: A Handbook of Methods and Applications = Int Ser Oper Res Man Operations Research and Health Care: A Handbook of Methods and Applications = Int. Ser. Oper. Res. Man. Operations Research and Its Applications = Lect Notes Oper Res Operations Research and Its Applications = Lect. Notes. Oper. Res. Operations Research and Its Applications, Proceedings = Lect Notes Oper Res Operations Research and Its Applications, Proceedings = Lect. Notes. Oper. Res. Operations Research and Management in Fishing = Nato Adv Sci I E-app Operations Research and Management in Fishing = Nato. Adv. Sci. I. E-app. Operations Research and Management Science Handbook = Oper Res Ser Operations Research and Management Science Handbook = Oper. Res. Ser. Operations Research/computer Science Interfaces = Operat Res Comp Sci Operations Research/computer Science Interfaces = Operat. Res. Comp. Sci. Operations Research Computer Science Interfaces = Operat Res Comp Sci Operations Research Computer Science Interfaces = Operat. Res. Comp. Sci. Operations Research Computer Science Interfaces = Oper Res Comput Sci Operations Research Computer Science Interfaces = Oper. Res. Comput. Sci. Operations Research/computer Science Interfaces Series = Operat Res Comp Sci Operations Research/computer Science Interfaces Series = Operat. Res. Comp. Sci. Operations Research/Computer Science Interfaces Series = Oper. Res./Comput. Sci. Interfaces Ser. Operations Research : Helping Family Planning Programs Work Better = Prog Clin Biol Res Operations Research : Helping Family Planning Programs Work Better = Prog. Clin. Biol. Res. Operations Research Letters = Oper. Res. Lett. Operations Research Letters = Oper Res Lett Operations Research Letters = Oper. Res. Lett. Operations Research Methodologies = Oper Res Ser Operations Research Methodologies = Oper. Res. Ser. Operations research = Oper Res Operations Research = Oper. Res. Operations Research = Oper Res Operations Research = Oper. Res. Operations Research Proceedings 2000 = Operat Res Proceed Operations Research Proceedings 2000 = Operat. Res. Proceed. Operations Research Proceedings 2001 = Operat Res Proceed Operations Research Proceedings 2001 = Operat. Res. Proceed. Operations Research Proceedings 2004 = Operat Res Proceed Operations Research Proceedings 2004 = Operat. Res. Proceed. Operations Research Proceedings 2007 = Operat Res Proceed Operations Research Proceedings 2007 = Operat. Res. Proceed. Operations Research Proceedings = Operat Res Proceed Operations Research Proceedings = Operat. Res. Proceed. Operations Research Series = Oper Res Ser Operations Research Series = Oper. Res. Ser. Operations Research Spektrum = OR Spektrum Operations Without Pain = Sci Technol Med Mod Operations Without Pain = Sci. Technol. Med. Mod. Operative dentistry = Oper Dent Operative Dentistry = Oper Dent Operative Dentistry = Oper. Dent. Operative dentistry. Supplement = Oper Dent Suppl Operative Dentistry. Supplement = Oper. Dent. Suppl. Operative Neuromodulation, Vol 1: Functional Neuroprosthetic Surgery, An Introduction = Acta Neurochir Suppl Operative Neuromodulation, Vol 1: Functional Neuroprosthetic Surgery, An Introduction = Acta. Neurochir. Suppl. Operative Neuromodulation: Vol 2: Neural Networks Surgery = Acta Neurochir Suppl Operative Neuromodulation: Vol 2: Neural Networks Surgery = Acta. Neurochir. Suppl. Operative Orthopadie Und Traumatologie = Oper Orthopade Traum Operative Orthopadie Und Traumatologie = Oper. Orthopade. Traum. Operative Orthopadie Und Traumatologie = Oper Orthop Traumato Operative Orthopadie Und Traumatologie = Oper. Orthop. Traumato. Operative Orthopadie und Traumatologie = Oper Orthop Traumatol Operative Techniques in Sports Medicine = Oper Techn Sport Med Operative Techniques in Sports Medicine = Oper. Techn. Sport. Med. Operative techniques in sports medicine = Oper Tech Sports Med Operator Algebras = Abel Symp Operator Algebras = Abel. Symp. Operator Algebras and Applications = Nato Adv Sci I C-mat Operator Algebras and Applications = Nato. Adv. Sci. I. C-mat. Operator Algebras, Operator Theory and Applications = Oper Theor Operator Algebras, Operator Theory and Applications = Oper. Theor. Operator Algebras, Operator Theory and Applications = Oper Theory Adv Appl Operator Algebras, Operator Theory and Applications = Oper. Theory Adv. Appl. Operator Algebras, Quantization, and Noncommutative Geometry = Contemp Math Operator Algebras, Quantization, and Noncommutative Geometry = Contemp. Math. Operator Algebras, Unitary Representations, Enveloping Algebras, and Invariant Theory = Prog Math Operator Algebras, Unitary Representations, Enveloping Algebras, and Invariant Theory = Prog. Math. Operator Calculus and Spectral Theory = Oper Theor Operator Calculus and Spectral Theory = Oper. Theor. Operator Functions and Localization of Spectra = Lect Notes Math Operator Functions and Localization of Spectra = Lect. Notes. Math. Operator Methods in Ordinary and Partial Differential Equations = Oper Theor Operator Methods in Ordinary and Partial Differential Equations = Oper. Theor. Operator Perspective On Signals and Systems = Oper Theory Adv Appl Operator Perspective On Signals and Systems = Oper. Theory. Adv. Appl. Operators and Iterative Processes of Fejer Type = Inver Ill Posed Prob Operators and Iterative Processes of Fejer Type = Inver. Ill. Posed. Prob. Operators and Matrices = Oper Matrices Operators and Matrices = Oper. Matrices Operators, Geometry and Quanta: Methods of Spectral Geometry in Quantum Field Theory = Theor Math Phys Ser Operators, Geometry and Quanta: Methods of Spectral Geometry in Quantum Field Theory = Theor. Math. Phys. Ser. Operator Splittings and Their Applications = Math Res Dev Operator Splittings and Their Applications = Math. Res. Dev. Operator Structures and Dynamical Systems = Contemp Math Operator Structures and Dynamical Systems = Contemp. Math. Operator Theory : Advances and Applications = Oper Theor Operator Theory : Advances and Applications = Oper. Theor. Operator Theory Advances and Applications = Oper Theor Operator Theory Advances and Applications = Oper. Theor. Operator Theory: Advances and Applications = Oper. Theory Adv. Appl. Operator Theory Advances and Applications = Oper Theory Adv Appl Operator Theory Advances and Applications = Oper. Theory Adv. Appl. Operator Theory, Analysis and Mathematical Physics = Oper Theor Operator Theory, Analysis and Mathematical Physics = Oper. Theor. Operator Theory and Analysis = Oper Theor Operator Theory and Analysis = Oper. Theor. Operator Theory and Boundary Eigenvalue Problems = Oper Theor Operator Theory and Boundary Eigenvalue Problems = Oper. Theor. Operator Theory and Indefinite Inner Product Spaces = Oper Theor Operator Theory and Indefinite Inner Product Spaces = Oper. Theor. Operator Theory and Interpolation = Oper Theor Operator Theory and Interpolation = Oper. Theor. Operator Theory and Related Topics = Oper Theor Operator Theory and Related Topics = Oper. Theor. Operator Theory and Related Topics = Oper Theory Adv Appl Operator Theory and Related Topics = Oper. Theory Adv. Appl. Operator Theory in Function Spaces and Banach Lattices = Oper Theor Operator Theory in Function Spaces and Banach Lattices = Oper. Theor. Operator Theory in Inner Product Spaces = Oper Theor Operator Theory in Inner Product Spaces = Oper. Theor. Operator Theory in Krein Spaces and Nonlinear Eigenvalue Problems = Oper Theor Operator Theory in Krein Spaces and Nonlinear Eigenvalue Problems = Oper. Theor. Operator Theory, Operator Algebras, and Applications = Contemp Math Operator Theory, Operator Algebras, and Applications = Contemp. Math. Operator Theory, System Theory and Related Topics = Oper Theor Operator Theory, System Theory and Related Topics = Oper. Theor. Operator Theory, System Theory and Related Topics = Oper Theory Adv Appl Operator Theory, System Theory and Related Topics = Oper. Theory Adv. Appl. Operator-valued Measures and Integrals for Cone-valued Functions = Lect Notes Math Operator-valued Measures and Integrals for Cone-valued Functions = Lect. Notes. Math. Ophelia = Ophelia Ophiolite Genesis and Evolution of The Oceanic Lithosphere = Petr Stru G Ophiolite Genesis and Evolution of The Oceanic Lithosphere = Petr. Stru. G. Ophiolites and Oceanic Crust: New Insights From Field Studies and Ocean Drilling Program = Geol S Am S Ophiolites and Oceanic Crust: New Insights From Field Studies and Ocean Drilling Program = Geol. S. Am. S. Ophiolites and Oceanic Crust: New Insights From Field Studies and Ocean Drilling Program = Geol Soc Am Spec Pap Ophiolites and Oceanic Crust: New Insights From Field Studies and Ocean Drilling Program = Geol. Soc. Am. Spec. Pap. Ophiolites, Arcs, and Batholiths: A Tribute to Cliff Hopson = Geol S Am S Ophiolites, Arcs, and Batholiths: A Tribute to Cliff Hopson = Geol. S. Am. S. Ophiolites in Earth History = Geol Soc Spec Publ Ophiolites in Earth History = Geol. Soc. Spec. Publ. Ophtalmologie : organe de la Societe francaise d'ophtalmologie = Ophtalmologie Ophthalmic and Physiological Optics=Ophthalmic Physiol Opt;; Ophthalmic and Physiological Optics = Ophthalmic Physiol. Opt. Ophthalmic and Physiological Optics = Ophthal Physl Opt Ophthalmic and Physiological Optics = Ophthal. Physl. Opt. Ophthalmic Echography 13 = Doc Ophth P Ophthalmic Echography 13 = Doc. Ophth. P. Ophthalmic Epidemiology = Ophthal Epidemiol Ophthalmic Epidemiology = Ophthal. Epidemiol. Ophthalmic epidemiology = Ophthalmic Epidemiol Ophthalmic Epidemiology=Ophthalmic Epidemiol;; Ophthalmic Epidemiology = Ophthalmic Epidemiol Ophthalmic Epidemiology = Ophthalmic Epidemiol. Ophthalmic genetics = Ophthalmic Genet Ophthalmic Genetics=Ophthalmic Genet;; Ophthalmic Genetics = Ophthalmic Genet Ophthalmic Genetics = Ophthalmic Genet. Ophthalmic Lens Design and Fabrication Ii: Proceedings Of = P Soc Photo-opt Ins Ophthalmic Lens Design and Fabrication Ii: Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Lens Design and Fabrication = P Soc Photo-opt Ins Ophthalmic Lens Design and Fabrication = P. Soc. Photo-opt. Ins. Ophthalmic literature = Ophthalmic Lit Ophthalmic Measurements and Optometry = P Soc Photo-opt Ins Ophthalmic Measurements and Optometry = P. Soc. Photo-opt. Ins. Ophthalmic Oncology = Md Anderson Solid Tu Ophthalmic Oncology = Md. Anderson. Solid. Tu. Ophthalmic Paediatrics and Genetics = Ophthalmic Paed Gen Ophthalmic Paediatrics and Genetics = Ophthalmic Paed. Gen. Ophthalmic paediatrics and genetics = Ophthalmic Paediatr Genet Ophthalmic Paediatrics and Genetics = Ophthalmic Paediatr. Genet. Ophthalmic & physiological optics : the journal of the British College of Ophthalmic Opticians (Optometrists) = Ophthalmic Physiol Opt Ophthalmic Plastic and Reconstructive Surgery = Ophthalmic Plast Rec Ophthalmic Plastic and Reconstructive Surgery = Ophthalmic Plast. Rec. Ophthalmic Plastic and Reconstructive Surgery = Ophthal Plast Recons Ophthalmic Plastic and Reconstructive Surgery = Ophthal. Plast. Recons. Ophthalmic plastic and reconstructive surgery = Ophthal Plast Reconstr Surg Ophthalmic Plastic and Reconstructive Surgery=Ophthal Plast Reconstr Surg;; Ophthalmic Plastic and Reconstructive Surgery = Ophthal. Plast. Reconstr. Surg. Ophthalmic research = Ophthalmic Res Ophthalmic Research=Ophthalmic Res;; Ophthalmic Research = Ophthalmic Res Ophthalmic Research = Ophthalmic Res. Ophthalmic Research = Ophthal Res Ophthalmic Research = Ophthal. Res. Ophthalmic seminars = Ophthalmic Semin Ophthalmic Seminars = Ophthalmic Semin Ophthalmic Seminars = Ophthalmic Semin. Ophthalmic Surgery and Lasers = Ophthalmic Surg Las Ophthalmic Surgery and Lasers = Ophthalmic Surg. Las. Ophthalmic surgery and lasers = Ophthalmic Surg Lasers Ophthalmic Surgery and Lasers=Ophthalmic Surg Lasers;; Ophthalmic Surgery and Lasers = Ophthalmic Surg. Lasers Ophthalmic Surgery, Lasers and Imaging = Ophthalmic Surg. Lasers Imaging Ophthalmic Surgery Lasers & Imaging = Ophthalmic Sur La Im Ophthalmic Surgery Lasers & Imaging = Ophthalmic Sur. La. Im. Ophthalmic Surgery Lasers & Imaging = Ophthal Surg Las Im Ophthalmic Surgery Lasers & Imaging = Ophthal. Surg. Las. Im. Ophthalmic surgery, lasers & imaging : the official journal of the International Society for Imaging in the Eye = Ophthalmic Surg Lasers Imaging Ophthalmic surgery = Ophthalmic Surg Ophthalmic Surgery = Ophthalmic Surg. Ophthalmic Technologies Iv, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Ix, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies Ix, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Viii, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies Viii, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Vii, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies Vii, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Vi, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies Vi, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies V, Proceedings Of = P Soc Photo-opt Ins Ophthalmic Technologies V, Proceedings Of = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xiii = P Soc Photo-opt Ins Ophthalmic Technologies Xiii = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xii = P Soc Photo-opt Ins Ophthalmic Technologies Xii = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xi = P Soc Photo-opt Ins Ophthalmic Technologies Xi = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xiv = P Soc Photo-opt Ins Ophthalmic Technologies Xiv = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xix = Proc Spie Ophthalmic Technologies Xix = Proc. Spie. Ophthalmic Technologies Xix = P Soc Photo-opt Ins Ophthalmic Technologies Xix = P. Soc. Photo-opt. Ins. Ophthalmic Technologies X = P Soc Photo-opt Ins Ophthalmic Technologies X = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xviii = P Soc Photo-opt Ins Ophthalmic Technologies Xviii = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xvii = P Soc Photo-opt Ins Ophthalmic Technologies Xvii = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xvi = P Soc Photo-opt Ins Ophthalmic Technologies Xvi = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xv = P Soc Photo-opt Ins Ophthalmic Technologies Xv = P. Soc. Photo-opt. Ins. Ophthalmic Technologies Xx = Proc Spie Ophthalmic Technologies Xx = Proc. Spie. Ophthalmic Technologies Xx = P Soc Photo-opt Ins Ophthalmic Technologies Xx = P. Soc. Photo-opt. Ins. Ophthalmologe=Ophthalmologe;; Ophthalmologe = Ophthalmologe Ophthalmologica. Journal international d'ophtalmologie. International journal of ophthalmology. Zeitschrift fur Augenheilkunde = Ophthalmologica Ophthalmologica=Ophthalmologica;; Ophthalmologica = Ophthalmologica Ophthalmologie = Ophtalmologie Ophthalmology clinics of North America = Ophthalmol Clin North Am Ophthalmology=Ophthalmology;; Ophthalmology = Ophthalmology Ophthalmology Today = Int Congr Ser Ophthalmology Today = Int. Congr. Ser. Opiate Receptors, Second Edition = Recept Ser Opiate Receptors, Second Edition = Recept. Ser. Opioid Analgesia = Adv Pain Res Ther Opioid Analgesia = Adv. Pain. Res. Ther. Opioids and Pain Relief: A Historical Perspective = Prog Pain Res Manag Opioids and Pain Relief: A Historical Perspective = Prog. Pain Res. Manag. Opioid Sensitivity of Chronic Noncancer Pain = Prog Pain Res Manag Opioid Sensitivity of Chronic Noncancer Pain = Prog. Pain Res. Manag. Opioids in The Treatment of Cancer Pain = Roy Soc Med Int Cong Opioids in The Treatment of Cancer Pain = Roy. Soc. Med. Int. Cong. Opportunities and Challenges for Next-generation Applied Intelligence = Stud Comp Intell Opportunities and Challenges for Next-generation Applied Intelligence = Stud. Comp. Intell. Opportunities for Molecular Biology in Crop Production = Br Crop Pr Opportunities for Molecular Biology in Crop Production = Br. Crop Pr. Opportunities, Use, and Transfer of Systems Research Methods in Agriculture to Developing Countries = Syst Appr S Opportunities, Use, and Transfer of Systems Research Methods in Agriculture to Developing Countries = Syst. Appr. S. Opportunity 2000 : Understanding and Serving Users in An Electronic Library = Ver U Essen Opportunity 2000 : Understanding and Serving Users in An Electronic Library = Ver. U. Essen. Oppositional Concepts in Computational Intelligence = Stud Comput Intell Oppositional Concepts in Computational Intelligence = Stud. Comput. Intell. Oppositional Discourses and Democracies = Routl Stud Soc Polit Oppositional Discourses and Democracies = Routl. Stud. Soc. Polit. Oppositions = Oppositions Opsearch = Opsearch Optica Acta = Opt Acta Optica Acta = Opt. Acta Optica acta = Opt Acta (Lond) Optica Acta = Opt. Acta (Lond.) Optica Applicata = Opt Appl Optica Applicata = Opt. Appl. Optical 3d Measurement Techniques Ii: Applications in Inspection, Quality Control, and Robotics = P Soc Photo-opt Ins Optical 3d Measurement Techniques Ii: Applications in Inspection, Quality Control, and Robotics = P. Soc. Photo-opt. Ins. Optical Absorption of Impurities and Defects in Semiconducting Crystals = Springer Ser Solid-s Optical Absorption of Impurities and Defects in Semiconducting Crystals = Springer. Ser. Solid-s. Optical Alignment = P Soc Photo-opt Ins Optical Alignment = P. Soc. Photo-opt. Ins. Optical Amplifiers and Their Applications = Osa Trends Opt Photo Optical Amplifiers and Their Applications = Osa. Trends. Opt. Photo. Optical Amplifiers and Their Applications, Proceedings = Osa Trends Opt Photo Optical Amplifiers and Their Applications, Proceedings = Osa. Trends. Opt. Photo. Optical Analysis Technology in Industry and Environment Today and Tomorrow = Vdi Bericht Optical Analysis Technology in Industry and Environment Today and Tomorrow = Vdi. Bericht. Optical and Digital Gaas Technologies for Signal-processing Applications = P Soc Photo-opt Ins Optical and Digital Gaas Technologies for Signal-processing Applications = P. Soc. Photo-opt. Ins. Optical and Digital Image Processing = Proc Spie Optical and Digital Image Processing = Proc. Spie. Optical and Electrical Properties of Polymers = Mater Res Soc Symp P Optical and Electrical Properties of Polymers = Mater. Res. Soc. Symp. P. Optical and Fiber Communications Reports = Opt Fiber Comm Rep Optical and Fiber Communications Reports = Opt. Fiber Comm. Rep. Optical and Fiber Communications Reports = Opt Fiber Commun Rep Optical and Fiber Communications Reports = Opt. Fiber Commun. Rep. Optical and Fiber Optic Sensor Systems = P Soc Photo-opt Ins Optical and Fiber Optic Sensor Systems = P. Soc. Photo-opt. Ins. Optical and Imaging Techniques for Biomonitoring Iii, Proceedings Of = P Soc Photo-opt Ins Optical and Imaging Techniques for Biomonitoring Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical and Imaging Techniques for Biomonitoring Ii, Proceedings Of = P Soc Photo-opt Ins Optical and Imaging Techniques for Biomonitoring Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical and Imaging Techniques for Biomonitoring Iv, Proceedings Of = Proc Spie Optical and Imaging Techniques for Biomonitoring Iv, Proceedings Of = Proc. Spie. Optical and Imaging Techniques for Biomonitoring Iv, Proceedings Of = P Soc Photo-opt Ins Optical and Imaging Techniques for Biomonitoring Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Optical and Imaging Techniques for Biomonitoring, Proceedings Of = P Soc Photo-opt Ins Optical and Imaging Techniques for Biomonitoring, Proceedings Of = P. Soc. Photo-opt. Ins. Optical and Imaging Techniques in Biomedicine, Proceedings Of = P Soc Photo-opt Ins Optical and Imaging Techniques in Biomedicine, Proceedings Of = P. Soc. Photo-opt. Ins. Optical and Infrared Detectors for Astronomy = Proc Spie Optical and Infrared Detectors for Astronomy = Proc. Spie. Optical and Infrared Detectors for Astronomy = P Soc Photo-opt Ins Optical and Infrared Detectors for Astronomy = P. Soc. Photo-opt. Ins. Optical and Infrared Interferometry Ii = Proc Spie Optical and Infrared Interferometry Ii = Proc. Spie. Optical and Infrared Interferometry Ii = P Soc Photo-opt Ins Optical and Infrared Interferometry Ii = P. Soc. Photo-opt. Ins. Optical and Infrared Interferometry = Proc Spie Optical and Infrared Interferometry = Proc. Spie. Optical and Infrared Interferometry = P Soc Photo-opt Ins Optical and Infrared Interferometry = P. Soc. Photo-opt. Ins. Optical and Infrared Spectroscopy of Circumstellar Matter = Astr Soc P Optical and Infrared Spectroscopy of Circumstellar Matter = Astr. Soc. P. Optical and Infrared Thin Films = P Soc Photo-opt Ins Optical and Infrared Thin Films = P. Soc. Photo-opt. Ins. Optical and Ir Telescope Instrumentation and Detectors, Pts 1 and 2 = Proc Spie Optical and Ir Telescope Instrumentation and Detectors, Pts 1 and 2 = Proc. Spie. Optical and Ir Telescope Instrumentation and Detectors, Pts 1 and 2 = P Soc Photo-opt Ins Optical and Ir Telescope Instrumentation and Detectors, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical and Photonic Applications of Electroactive and Conducting Polymers = P Soc Photo-opt Ins Optical and Photonic Applications of Electroactive and Conducting Polymers = P. Soc. Photo-opt. Ins. Optical and Quantum Electronics = Opt Quant Electron Optical and Quantum Electronics = Opt. Quant. Electron. Optical and Quantum Electronics = Opt. Quantum Electron. Optical and Quantum Electronics = Opt. Quantum. Electron. Optical Astronomical Instrumentation, Pts 1 and 2 = P Soc Photo-opt Ins Optical Astronomical Instrumentation, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Astronomy From The Earth and Moon = Astr Soc P Optical Astronomy From The Earth and Moon = Astr. Soc. P. Optical Believe It Or Not: Key Lessons Learned = P Soc Photo-opt Ins Optical Believe It Or Not: Key Lessons Learned = P. Soc. Photo-opt. Ins. Optical Binding Phenomena: Observations and Mechanisms = Springer Theses-reco Optical Binding Phenomena: Observations and Mechanisms = Springer. Theses-reco. Optical Biophysics, Proceedings Of = P Soc Photo-opt Ins Optical Biophysics, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsies and Microscopic Techniques Iii, Proceedings Of = P Soc Photo-opt Ins Optical Biopsies and Microscopic Techniques Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsies and Microscopic Techniques Ii = P Soc Photo-opt Ins Optical Biopsies and Microscopic Techniques Ii = P. Soc. Photo-opt. Ins. Optical Biopsies and Microscopic Techniques, Proceedings Of = P Soc Photo-opt Ins Optical Biopsies and Microscopic Techniques, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsies, Proceedings Of = P Soc Photo-opt Ins Optical Biopsies, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsy and Fluorescence Spectroscopy and Imaging, Proceedings Of = P Soc Photo-opt Ins Optical Biopsy and Fluorescence Spectroscopy and Imaging, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsy and Tissue Optics = P Soc Photo-opt Ins Optical Biopsy and Tissue Optics = P. Soc. Photo-opt. Ins. Optical Biopsy Iii = Proc Spie Optical Biopsy Iii = Proc. Spie. Optical Biopsy Iii = P Soc Photo-opt Ins Optical Biopsy Iii = P. Soc. Photo-opt. Ins. Optical Biopsy Ii, Proceedings Of = P Soc Photo-opt Ins Optical Biopsy Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Biopsy Iv = P Soc Photo-opt Ins Optical Biopsy Iv = P. Soc. Photo-opt. Ins. Optical Biopsy Vii = Proc Spie Optical Biopsy Vii = Proc. Spie. Optical Biopsy Vii = P Soc Photo-opt Ins Optical Biopsy Vii = P. Soc. Photo-opt. Ins. Optical Biopsy Vi = P Soc Photo-opt Ins Optical Biopsy Vi = P. Soc. Photo-opt. Ins. Optical Biopsy V = P Soc Photo-opt Ins Optical Biopsy V = P. Soc. Photo-opt. Ins. Optical Characterization Techniques for High-performance Microelectronic Device Manfacturing Iii = P Soc Photo-opt Ins Optical Characterization Techniques for High-performance Microelectronic Device Manfacturing Iii = P. Soc. Photo-opt. Ins. Optical Characterization Techniques for High-performance Microelectronic Device Manufacturing Ii = P Soc Photo-opt Ins Optical Characterization Techniques for High-performance Microelectronic Device Manufacturing Ii = P. Soc. Photo-opt. Ins. Optical Characterization Techniques for High-performance Microelectronic Device Manufacturing = P Soc Photo-opt Ins Optical Characterization Techniques for High-performance Microelectronic Device Manufacturing = P. Soc. Photo-opt. Ins. Optical Chemical Sensors = Nato Sci Ser Ii Math Optical Chemical Sensors = Nato. Sci. Ser. Ii. Math. Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiii = Proc Spie Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiii = Proc. Spie. Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiii = P Soc Photo-opt Ins Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiii = P. Soc. Photo-opt. Ins. Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiv = Proc Spie Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiv = Proc. Spie. Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiv = P Soc Photo-opt Ins Optical Coherence Tomography and Coherence Domain Optical Methods in Biomedicine Xiv = P. Soc. Photo-opt. Ins. Optical Coherence Tomography and Coherence Techniques Iii = Proc Spie Optical Coherence Tomography and Coherence Techniques Iii = Proc. Spie. Optical Coherence Tomography and Coherence Techniques Iii = P Soc Photo-opt Ins Optical Coherence Tomography and Coherence Techniques Iii = P. Soc. Photo-opt. Ins. Optical Coherence Tomography and Coherence Techniques = P Soc Photo-opt Ins Optical Coherence Tomography and Coherence Techniques = P. Soc. Photo-opt. Ins. Optical Coherence Tomography and Coherence Techniques V = Proc Spie Optical Coherence Tomography and Coherence Techniques V = Proc. Spie. Optical Coherence Tomography: Technology and Applications = Biol Med Phys Biomed Optical Coherence Tomography: Technology and Applications = Biol. Med. Phys. Biomed. Optical Communications = P Soc Photo-opt Ins Optical Communications = P. Soc. Photo-opt. Ins. Optical Components and Materials Iii = Proc Spie Optical Components and Materials Iii = Proc. Spie. Optical Components and Materials Iii = P Soc Photo-opt Ins Optical Components and Materials Iii = P. Soc. Photo-opt. Ins. Optical Components and Materials Ii = Proc Spie Optical Components and Materials Ii = Proc. Spie. Optical Components and Materials Ii = P Soc Photo-opt Ins Optical Components and Materials Ii = P. Soc. Photo-opt. Ins. Optical Components and Materials Iv = P Soc Photo-opt Ins Optical Components and Materials Iv = P. Soc. Photo-opt. Ins. Optical Components and Materials = P Soc Photo-opt Ins Optical Components and Materials = P. Soc. Photo-opt. Ins. Optical Components and Materials Viii = Proc Spie Optical Components and Materials Viii = Proc. Spie. Optical Components and Materials Vii = Proc Spie Optical Components and Materials Vii = Proc. Spie. Optical Components and Materials Vii = P Soc Photo-opt Ins Optical Components and Materials Vii = P. Soc. Photo-opt. Ins. Optical Components and Materials Vi = P Soc Photo-opt Ins Optical Components and Materials Vi = P. Soc. Photo-opt. Ins. Optical Components and Materials V = P Soc Photo-opt Ins Optical Components and Materials V = P. Soc. Photo-opt. Ins. Optical Computing and Neural Networks = P Soc Photo-opt Ins Optical Computing and Neural Networks = P. Soc. Photo-opt. Ins. Optical Computing = Inst Phys Conf Ser Optical Computing = Inst. Phys. Conf. Ser. Optical Constants of Materials for Uv to X-ray Wavelengths = Proc Spie Optical Constants of Materials for Uv to X-ray Wavelengths = Proc. Spie. Optical Constants of Materials for Uv to X-ray Wavelengths = P Soc Photo-opt Ins Optical Constants of Materials for Uv to X-ray Wavelengths = P. Soc. Photo-opt. Ins. Optical Data Storage 2000 = P Soc Photo-opt Ins Optical Data Storage 2000 = P. Soc. Photo-opt. Ins. Optical Data Storage 2001 = Proc Spie Optical Data Storage 2001 = Proc. Spie. Optical Data Storage 2001 = P Soc Photo-opt Ins Optical Data Storage 2001 = P. Soc. Photo-opt. Ins. Optical Data Storage 2003 = P Soc Photo-opt Ins Optical Data Storage 2003 = P. Soc. Photo-opt. Ins. Optical Data Storage 2004 = Proc Spie Optical Data Storage 2004 = Proc. Spie. Optical Data Storage 2004 = P Soc Photo-opt Ins Optical Data Storage 2004 = P. Soc. Photo-opt. Ins. Optical Data Storage 2006 = P Soc Photo-opt Ins Optical Data Storage 2006 = P. Soc. Photo-opt. Ins. Optical Data Storage 2007 = Proc Spie Optical Data Storage 2007 = Proc. Spie. Optical Data Storage 2007 = P Soc Photo-opt Ins Optical Data Storage 2007 = P. Soc. Photo-opt. Ins. Optical Data Storage 2010 = Proc Spie Optical Data Storage 2010 = Proc. Spie. Optical Data Storage 2010 = P Soc Photo-opt Ins Optical Data Storage 2010 = P. Soc. Photo-opt. Ins. Optical Data Storage 91 = P Soc Photo-opt Ins Optical Data Storage 91 = P. Soc. Photo-opt. Ins. Optical Data Storage '95 = P Soc Photo-opt Ins Optical Data Storage '95 = P. Soc. Photo-opt. Ins. Optical Data Storage '97 = P Soc Photo-opt Ins Optical Data Storage '97 = P. Soc. Photo-opt. Ins. Optical Data Storage '98 = P Soc Photo-opt Ins Optical Data Storage '98 = P. Soc. Photo-opt. Ins. Optical Data Storage = P Soc Photo-opt Ins Optical Data Storage = P. Soc. Photo-opt. Ins. Optical Data Storage Technologies = P Soc Photo-opt Ins Optical Data Storage Technologies = P. Soc. Photo-opt. Ins. Optical Design and Analysis Software Ii = Proc Spie Optical Design and Analysis Software Ii = Proc. Spie. Optical Design and Analysis Software Ii = P Soc Photo-opt Ins Optical Design and Analysis Software Ii = P. Soc. Photo-opt. Ins. Optical Design and Analysis Software = P Soc Photo-opt Ins Optical Design and Analysis Software = P. Soc. Photo-opt. Ins. Optical Design and Engineering Iii, Pts 1 and 2 = Proc Spie Optical Design and Engineering Iii, Pts 1 and 2 = Proc. Spie. Optical Design and Engineering = Proc Spie Optical Design and Engineering = Proc. Spie. Optical Design and Engineering = P Soc Photo-opt Ins Optical Design and Engineering = P. Soc. Photo-opt. Ins. Optical Design and Processing Technologies and Applications = P Soc Photo-opt Ins Optical Design and Processing Technologies and Applications = P. Soc. Photo-opt. Ins. Optical Design and Testing Iii, Pts 1 and 2 = Proc Spie Optical Design and Testing Iii, Pts 1 and 2 = Proc. Spie. Optical Design and Testing Iii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Design and Testing Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Design and Testing Ii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Design and Testing Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Design and Testing Iv = Proc Spie Optical Design and Testing Iv = Proc. Spie. Optical Design and Testing Iv = P Soc Photo-opt Ins Optical Design and Testing Iv = P. Soc. Photo-opt. Ins. Optical Design and Testing = Proc Spie Optical Design and Testing = Proc. Spie. Optical Design and Testing = P Soc Photo-opt Ins Optical Design and Testing = P. Soc. Photo-opt. Ins. Optical Design, Materials, Fabrication, and Maintenance = Proc Spie Optical Design, Materials, Fabrication, and Maintenance = Proc. Spie. Optical Design, Materials, Fabrication, and Maintenance = P Soc Photo-opt Ins Optical Design, Materials, Fabrication, and Maintenance = P. Soc. Photo-opt. Ins. Optical Detectors for Astronomy Ii = Astrophys Space Sc L Optical Detectors for Astronomy Ii = Astrophys. Space. Sc. L. Optical Devices and Diagnostics in Materials Science = P Soc Photo-opt Ins Optical Devices and Diagnostics in Materials Science = P. Soc. Photo-opt. Ins. Optical Devices and Methods for Microwave/millimeter-wave and Frontier Applications = P Soc Photo-opt Ins Optical Devices and Methods for Microwave/millimeter-wave and Frontier Applications = P. Soc. Photo-opt. Ins. Optical Devices for Fiber Communication Iii = P Soc Photo-opt Ins Optical Devices for Fiber Communication Iii = P. Soc. Photo-opt. Ins. Optical Devices for Fiber Communication Ii = P Soc Photo-opt Ins Optical Devices for Fiber Communication Ii = P. Soc. Photo-opt. Ins. Optical Devices for Fiber Communication Iv = P Soc Photo-opt Ins Optical Devices for Fiber Communication Iv = P. Soc. Photo-opt. Ins. Optical Devices for Fiber Communication = P Soc Photo-opt Ins Optical Devices for Fiber Communication = P. Soc. Photo-opt. Ins. Optical Diagnositics of Living Cells Iv = P Soc Photo-opt Ins Optical Diagnositics of Living Cells Iv = P. Soc. Photo-opt. Ins. Optical Diagnostic Methods for Inorganic Materials Iii = Proc Spie Optical Diagnostic Methods for Inorganic Materials Iii = Proc. Spie. Optical Diagnostic Methods for Inorganic Materials Iii = P Soc Photo-opt Ins Optical Diagnostic Methods for Inorganic Materials Iii = P. Soc. Photo-opt. Ins. Optical Diagnostic Methods for Inorganic Materials Ii = P Soc Photo-opt Ins Optical Diagnostic Methods for Inorganic Materials Ii = P. Soc. Photo-opt. Ins. Optical Diagnostic Methods for Inorganic Transmissive Materials = P Soc Photo-opt Ins Optical Diagnostic Methods for Inorganic Transmissive Materials = P. Soc. Photo-opt. Ins. Optical Diagnostics and Living Cells Ii, Proceedings Of = P Soc Photo-opt Ins Optical Diagnostics and Living Cells Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing in Biomedicine Iii = P Soc Photo-opt Ins Optical Diagnostics and Sensing in Biomedicine Iii = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing Iv = P Soc Photo-opt Ins Optical Diagnostics and Sensing Iv = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing Ix = P Soc Photo-opt Ins Optical Diagnostics and Sensing Ix = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring Ii = Proc Spie Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring Ii = Proc. Spie. Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring Ii = P Soc Photo-opt Ins Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring Ii = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring = P Soc Photo-opt Ins Optical Diagnostics and Sensing of Biological Fluids and Glucose and Cholesterol Monitoring = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing Viii = Proc Spie Optical Diagnostics and Sensing Viii = Proc. Spie. Optical Diagnostics and Sensing Viii = P Soc Photo-opt Ins Optical Diagnostics and Sensing Viii = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing Vii = P Soc Photo-opt Ins Optical Diagnostics and Sensing Vii = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing Vi = P Soc Photo-opt Ins Optical Diagnostics and Sensing Vi = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing V = P Soc Photo-opt Ins Optical Diagnostics and Sensing V = P. Soc. Photo-opt. Ins. Optical Diagnostics and Sensing X: Toward Point-of-care Diagnostics = Proc Spie Optical Diagnostics and Sensing X: Toward Point-of-care Diagnostics = Proc. Spie. Optical Diagnostics for Fluids/heat/combustion and Photomechanics for Solids = Proc Spie Optical Diagnostics for Fluids/heat/combustion and Photomechanics for Solids = Proc. Spie. Optical Diagnostics for Fluids/heat/combustion and Photomechanics for Solids = P Soc Photo-opt Ins Optical Diagnostics for Fluids/heat/combustion and Photomechanics for Solids = P. Soc. Photo-opt. Ins. Optical Diagnostics for Fluids Solids and Combustion = P Soc Photo-opt Ins Optical Diagnostics for Fluids Solids and Combustion = P. Soc. Photo-opt. Ins. Optical Diagnostics for Fluids, Solids, and Combustions Ii = P Soc Photo-opt Ins Optical Diagnostics for Fluids, Solids, and Combustions Ii = P. Soc. Photo-opt. Ins. Optical Diagnostics for Industrial Applications = P Soc Photo-opt Ins Optical Diagnostics for Industrial Applications = P. Soc. Photo-opt. Ins. Optical Diagnostics in Fluid and Thermal Flow = P Soc Photo-opt Ins Optical Diagnostics in Fluid and Thermal Flow = P. Soc. Photo-opt. Ins. Optical Diagnostics of Biological Fluids and Advanced Techniques in Analytical Cytology, Proceedings Of = P Soc Photo-opt Ins Optical Diagnostics of Biological Fluids and Advanced Techniques in Analytical Cytology, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Diagnostics of Biological Fluids Iii, Proceedings Of = P Soc Photo-opt Ins Optical Diagnostics of Biological Fluids Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Diagnostics of Biological Fluids Iv, Proceedings Of = P Soc Photo-opt Ins Optical Diagnostics of Biological Fluids Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Diagnostics of Biological Fluids V = Proc Spie Optical Diagnostics of Biological Fluids V = Proc. Spie. Optical Diagnostics of Biological Fluids V = P Soc Photo-opt Ins Optical Diagnostics of Biological Fluids V = P. Soc. Photo-opt. Ins. Optical Diagnostics of Living Cells and Biofluids, Proceedings Of = P Soc Photo-opt Ins Optical Diagnostics of Living Cells and Biofluids, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Diagnostics of Living Cells Iii = Proc Spie Optical Diagnostics of Living Cells Iii = Proc. Spie. Optical Diagnostics of Living Cells Iii = P Soc Photo-opt Ins Optical Diagnostics of Living Cells Iii = P. Soc. Photo-opt. Ins. Optical Diagnostics of Living Cells V = Proc Spie Optical Diagnostics of Living Cells V = Proc. Spie. Optical Diagnostics of Living Cells V = P Soc Photo-opt Ins Optical Diagnostics of Living Cells V = P. Soc. Photo-opt. Ins. Optical, Electronic Materials and Applications, Pts 1-2 = Adv Mater Res-switz Optical, Electronic Materials and Applications, Pts 1-2 = Adv. Mater. Res-switz. Optical Engineering and Remote Sensing = P Soc Photo-opt Ins Optical Engineering and Remote Sensing = P. Soc. Photo-opt. Ins. Optical Engineering At The Lawrence Livermore National Laboratory Ii: The National Ignition Facility = P Soc Photo-opt Ins Optical Engineering At The Lawrence Livermore National Laboratory Ii: The National Ignition Facility = P. Soc. Photo-opt. Ins. Optical Engineering At The Lawrence Livermore National Laboratory = P Soc Photo-opt Ins Optical Engineering At The Lawrence Livermore National Laboratory = P. Soc. Photo-opt. Ins. Optical Engineering for Sensing and Nanotechnology (icosn 2001) = Proc Spie Optical Engineering for Sensing and Nanotechnology (icosn 2001) = Proc. Spie. Optical Engineering for Sensing and Nanotechnology (icosn 2001) = P Soc Photo-opt Ins Optical Engineering for Sensing and Nanotechnology (icosn 2001) = P. Soc. Photo-opt. Ins. Optical Engineering for Sensing and Nanotechnology (icosn'99) = Proc Spie Optical Engineering for Sensing and Nanotechnology (icosn'99) = Proc. Spie. Optical Engineering for Sensing and Nanotechnology (icosn'99) = P Soc Photo-opt Ins Optical Engineering for Sensing and Nanotechnology (icosn'99) = P. Soc. Photo-opt. Ins. Optical Engineering Midwest '95, Pts 1 and 2 = P Soc Photo-opt Ins Optical Engineering Midwest '95, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Engineering = Opt Eng Optical Engineering = Opt. Eng. Optical Enhancements to Computing Technology = P Soc Photo-opt Ins Optical Enhancements to Computing Technology = P. Soc. Photo-opt. Ins. Optical Fabrication and Testing = P Soc Photo-opt Ins Optical Fabrication and Testing = P. Soc. Photo-opt. Ins. Optical Fabrication, Metrology, and Material Advancements for Telescopes = P Soc Photo-opt Ins Optical Fabrication, Metrology, and Material Advancements for Telescopes = P. Soc. Photo-opt. Ins. Optical Fabrication, Testing, and Metrology Iii = Proc Spie Optical Fabrication, Testing, and Metrology Iii = Proc. Spie. Optical Fabrication, Testing, and Metrology = P Soc Photo-opt Ins Optical Fabrication, Testing, and Metrology = P. Soc. Photo-opt. Ins. Optical Fiber and Fiber Component Mechanical Reliability and Testing Ii = P Soc Photo-opt Ins Optical Fiber and Fiber Component Mechanical Reliability and Testing Ii = P. Soc. Photo-opt. Ins. Optical Fiber and Fiber Component Mechanical Reliability and Testing = P Soc Photo-opt Ins Optical Fiber and Fiber Component Mechanical Reliability and Testing = P. Soc. Photo-opt. Ins. Optical Fiber Communication = P Soc Photo-opt Ins Optical Fiber Communication = P. Soc. Photo-opt. Ins. Optical Fiber Materials and Processing = Mater Res Soc Symp P Optical Fiber Materials and Processing = Mater. Res. Soc. Symp. P. Optical Fiber Reliability and Testing = P Soc Photo-opt Ins Optical Fiber Reliability and Testing = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Applications Iii = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Applications Iii = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Applications Ii = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Applications Ii = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Applications Iv = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Applications Iv = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Applications = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Applications = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Applications V = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Applications V = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Ix = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Ix = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Viii = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Viii = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Vii = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Vii = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Vi = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications Vi = P. Soc. Photo-opt. Ins. Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications X = P Soc Photo-opt Ins Optical Fibers and Sensors for Medical Diagnostics and Treatment Applications X = P. Soc. Photo-opt. Ins. Optical Fibers and Their Applications 2008 = P Soc Photo-opt Ins Optical Fibers and Their Applications 2008 = P. Soc. Photo-opt. Ins. Optical Fibers and Their Applications 2011 = Proc Spie Optical Fibers and Their Applications 2011 = Proc. Spie. Optical Fibers and Their Applications Viii = P Soc Photo-opt Ins Optical Fibers and Their Applications Viii = P. Soc. Photo-opt. Ins. Optical Fibers and Their Applications Vi = P Soc Photo-opt Ins Optical Fibers and Their Applications Vi = P. Soc. Photo-opt. Ins. Optical Fiber Technology = Opt Fiber Technol Optical Fiber Technology = Opt. Fiber Technol. Optical Fibre Sensing and Systems in Nuclear Environments = P Soc Photo-opt Ins Optical Fibre Sensing and Systems in Nuclear Environments = P. Soc. Photo-opt. Ins. Optical Generation and Control of Quantum Coherence in Semiconductor Nanostructures = Nanosci Technol Optical Generation and Control of Quantum Coherence in Semiconductor Nanostructures = Nanosci. Technol. Optical Guided-wave Chemical and Biosensors Ii = Springer Ser Chem Se Optical Guided-wave Chemical and Biosensors Ii = Springer. Ser. Chem. Se. Optical Guided-wave Chemical and Biosensos I = Springer Ser Chem Se Optical Guided-wave Chemical and Biosensos I = Springer. Ser. Chem. Se. Optical Hard Copy and Printing Systems = P Soc Photo-opt Ins Optical Hard Copy and Printing Systems = P. Soc. Photo-opt. Ins. Optical Imaging of Brain Function and Metabolism 2 = Adv Exp Med Biol Optical Imaging of Brain Function and Metabolism 2 = Adv. Exp. Med. Biol. Optical Imaging of Brain Function and Metabolism = Adv Exp Med Biol Optical Imaging of Brain Function and Metabolism = Adv. Exp. Med. Biol. Optical Implementation of Information Processing = P Soc Photo-opt Ins Optical Implementation of Information Processing = P. Soc. Photo-opt. Ins. Optical Information, Data Processing and Storage, and Laser Communication Technologies = P Soc Photo-opt Ins Optical Information, Data Processing and Storage, and Laser Communication Technologies = P. Soc. Photo-opt. Ins. Optical Information Processing Systems and Architectures Iii = P Soc Photo-opt Ins Optical Information Processing Systems and Architectures Iii = P. Soc. Photo-opt. Ins. Optical Information-processing Systems and Architectures Ii = P Soc Photo-opt Ins Optical Information-processing Systems and Architectures Ii = P. Soc. Photo-opt. Ins. Optical Information Processing Systems and Architectures Iv = P Soc Photo-opt Ins Optical Information Processing Systems and Architectures Iv = P. Soc. Photo-opt. Ins. Optical Information Processing Systems and Architectures = P Soc Photo-opt Ins Optical Information Processing Systems and Architectures = P. Soc. Photo-opt. Ins. Optical Information Processing Technology = Proc Spie Optical Information Processing Technology = Proc. Spie. Optical Information Processing Technology = P Soc Photo-opt Ins Optical Information Processing Technology = P. Soc. Photo-opt. Ins. Optical Information Systems Ii = P Soc Photo-opt Ins Optical Information Systems Ii = P. Soc. Photo-opt. Ins. Optical Information Systems Iv = Proc Spie Optical Information Systems Iv = Proc. Spie. Optical Information Systems Iv = P Soc Photo-opt Ins Optical Information Systems Iv = P. Soc. Photo-opt. Ins. Optical Information Systems = Opt Inf Syst Optical Information Systems = Opt. Inf. Syst. Optical Information Systems = Proc Spie Optical Information Systems = Proc. Spie. Optical Information Systems = P Soc Photo-opt Ins Optical Information Systems = P. Soc. Photo-opt. Ins. Optical, Infrared, and Millimeter Space Telescopes, Pts 1-3 = P Soc Photo-opt Ins Optical, Infrared, and Millimeter Space Telescopes, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Inorganic Dielectric Materials and Devices = P Soc Photo-opt Ins Optical Inorganic Dielectric Materials and Devices = P. Soc. Photo-opt. Ins. Optical Inspection and Micromeasurements Ii = P Soc Photo-opt Ins Optical Inspection and Micromeasurements Ii = P. Soc. Photo-opt. Ins. Optical Inspection and Micromeasurements = P Soc Photo-opt Ins Optical Inspection and Micromeasurements = P. Soc. Photo-opt. Ins. Optical Instrumentation for Gas Emissions Monitoring and Atmospheric Measurements = P Soc Photo-opt Ins Optical Instrumentation for Gas Emissions Monitoring and Atmospheric Measurements = P. Soc. Photo-opt. Ins. Optical Instruments for Weather Forecasting = P Soc Photo-opt Ins Optical Instruments for Weather Forecasting = P. Soc. Photo-opt. Ins. Optical Interactions With Tissue and Cells Xix = Proc Spie Optical Interactions With Tissue and Cells Xix = Proc. Spie. Optical Interactions With Tissue and Cells Xix = P Soc Photo-opt Ins Optical Interactions With Tissue and Cells Xix = P. Soc. Photo-opt. Ins. Optical Interactions With Tissue and Cells Xviii = P Soc Photo-opt Ins Optical Interactions With Tissue and Cells Xviii = P. Soc. Photo-opt. Ins. Optical Interactions With Tissue and Cells Xvii = P Soc Photo-opt Ins Optical Interactions With Tissue and Cells Xvii = P. Soc. Photo-opt. Ins. Optical Interactions With Tissue and Cells Xvi = P Soc Photo-opt Ins Optical Interactions With Tissue and Cells Xvi = P. Soc. Photo-opt. Ins. Optical Interactions With Tissue and Cells Xx = P Soc Photo-opt Ins Optical Interactions With Tissue and Cells Xx = P. Soc. Photo-opt. Ins. Optical Interactions With Tissues and Cells Xxi = Proc Spie Optical Interactions With Tissues and Cells Xxi = Proc. Spie. Optical Interconnections and Networks = P Soc Photo-opt Ins Optical Interconnections and Networks = P. Soc. Photo-opt. Ins. Optical Interconnects for Telecommunication and Data Communications = P Soc Photo-opt Ins Optical Interconnects for Telecommunication and Data Communications = P. Soc. Photo-opt. Ins. Optical Interconnects in Broadband Switching Architectures = P Soc Photo-opt Ins Optical Interconnects in Broadband Switching Architectures = P. Soc. Photo-opt. Ins. Optical Interconnects in The Computer Environment = P Soc Photo-opt Ins Optical Interconnects in The Computer Environment = P. Soc. Photo-opt. Ins. Optical Interconnects: The Silicon Approach = Springer Series Opti Optical Interconnects: The Silicon Approach = Springer. Series. Opti. Optical Interconnects: The Silicon Approach = Springer Ser Opt Sci Optical Interconnects: The Silicon Approach = Springer. Ser. Opt. Sci. Optical Interference Coatings, Pts 1 and 2 = P Soc Photo-opt Ins Optical Interference Coatings, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Investigations of Cells in Vitro and in Vivo, Proceedings Of = P Soc Photo-opt Ins Optical Investigations of Cells in Vitro and in Vivo, Proceedings Of = P. Soc. Photo-opt. Ins. Optical journal and review of optometry = Opt J Rev Optom Optical/laser Microlithography Ii = P Soc Photo-opt Ins Optical/laser Microlithography Ii = P. Soc. Photo-opt. Ins. Optical/laser Microlithography Iv = P Soc Photo-opt Ins Optical/laser Microlithography Iv = P. Soc. Photo-opt. Ins. Optical/laser Microlithography, Pts 1 and 2 = P Soc Photo-opt Ins Optical/laser Microlithography, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical/laser Microlithography Viii = P Soc Photo-opt Ins Optical/laser Microlithography Viii = P. Soc. Photo-opt. Ins. Optical/laser Microlithography Vii = P Soc Photo-opt Ins Optical/laser Microlithography Vii = P. Soc. Photo-opt. Ins. Optical/laser Microlithography V, Pts 1 and 2 = P Soc Photo-opt Ins Optical/laser Microlithography V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optically Activated Switching Iii = P Soc Photo-opt Ins Optically Activated Switching Iii = P. Soc. Photo-opt. Ins. Optically Activated Switching Ii = P Soc Photo-opt Ins Optically Activated Switching Ii = P. Soc. Photo-opt. Ins. Optically Activated Switching Iv = P Soc Photo-opt Ins Optically Activated Switching Iv = P. Soc. Photo-opt. Ins. Optically Activated Switching = P Soc Photo-opt Ins Optically Activated Switching = P. Soc. Photo-opt. Ins. Optically Based Biological and Chemical Detection for Defence Iii = Proc Spie Optically Based Biological and Chemical Detection for Defence Iii = Proc. Spie. Optically Based Biological and Chemical Detection for Defence Iii = P Soc Photo-opt Ins Optically Based Biological and Chemical Detection for Defence Iii = P. Soc. Photo-opt. Ins. Optically Based Biological and Chemical Sensing for Defence = Proc Spie Optically Based Biological and Chemical Sensing for Defence = Proc. Spie. Optically Based Biological and Chemical Sensing for Defence = P Soc Photo-opt Ins Optically Based Biological and Chemical Sensing for Defence = P. Soc. Photo-opt. Ins. Optically Based Methods for Process Analysis = P Soc Photo-opt Ins Optically Based Methods for Process Analysis = P. Soc. Photo-opt. Ins. Optical Manufacturing and Testing Iii = Proc Spie Optical Manufacturing and Testing Iii = Proc. Spie. Optical Manufacturing and Testing Iii = P Soc Photo-opt Ins Optical Manufacturing and Testing Iii = P. Soc. Photo-opt. Ins. Optical Manufacturing and Testing Ii = P Soc Photo-opt Ins Optical Manufacturing and Testing Ii = P. Soc. Photo-opt. Ins. Optical Manufacturing and Testing Iv = P Soc Photo-opt Ins Optical Manufacturing and Testing Iv = P. Soc. Photo-opt. Ins. Optical Manufacturing and Testing = P Soc Photo-opt Ins Optical Manufacturing and Testing = P. Soc. Photo-opt. Ins. Optical Manufacturing and Testing Vii = P Soc Photo-opt Ins Optical Manufacturing and Testing Vii = P. Soc. Photo-opt. Ins. Optical Manufacturing Technologies = P Soc Photo-opt Ins Optical Manufacturing Technologies = P. Soc. Photo-opt. Ins. Optical Manufacutring and Testing V = P Soc Photo-opt Ins Optical Manufacutring and Testing V = P. Soc. Photo-opt. Ins. Optical Materials and Applications = Proc Spie Optical Materials and Applications = Proc. Spie. Optical Materials and Applications = P Soc Photo-opt Ins Optical Materials and Applications = P. Soc. Photo-opt. Ins. Optical Materials and Structures Technologies Iii = Proc Spie Optical Materials and Structures Technologies Iii = Proc. Spie. Optical Materials and Structures Technologies Iii = P Soc Photo-opt Ins Optical Materials and Structures Technologies Iii = P. Soc. Photo-opt. Ins. Optical Materials and Structures Technologies = P Soc Photo-opt Ins Optical Materials and Structures Technologies = P. Soc. Photo-opt. Ins. Optical Materials in Defence Systems Technology Iii = P Soc Photo-opt Ins Optical Materials in Defence Systems Technology Iii = P. Soc. Photo-opt. Ins. Optical Materials in Defence Systems Technology Iv = P Soc Photo-opt Ins Optical Materials in Defence Systems Technology Iv = P. Soc. Photo-opt. Ins. Optical Materials in Defence Systems Technology = P Soc Photo-opt Ins Optical Materials in Defence Systems Technology = P. Soc. Photo-opt. Ins. Optical Materials = Opt Mater Optical Materials = Opt. Mater. Optical Materials Reliability and Testing : Benign and Adverse Environments = P Soc Photo-opt Ins Optical Materials Reliability and Testing : Benign and Adverse Environments = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Ix = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Ix = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Viii = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Viii = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi : Chromogenics for Smart Windows = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi : Chromogenics for Smart Windows = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xiii = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xiii = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xii = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xii = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi : Photovoltaics, Photochemistry, and Photoelectrochemistry = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi : Photovoltaics, Photochemistry, and Photoelectrochemistry = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xi = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xiv = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xiv = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion X = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion X = P. Soc. Photo-opt. Ins. Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xv = P Soc Photo-opt Ins Optical Materials Technology for Energy Efficiency and Solar Energy Conversion Xv = P. Soc. Photo-opt. Ins. Optical Measurement and Nondestructive Testing: Techniques and Applications = P Soc Photo-opt Ins Optical Measurement and Nondestructive Testing: Techniques and Applications = P. Soc. Photo-opt. Ins. Optical Measurements and Sensors for The Process Industries = P Soc Photo-opt Ins Optical Measurements and Sensors for The Process Industries = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection Ii: Application in Industrial Design = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection Ii: Application in Industrial Design = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection Ii: Applications in Production Engineering = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection Ii: Applications in Production Engineering = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection Iii = Proc Spie Optical Measurement Systems for Industrial Inspection Iii = Proc. Spie. Optical Measurement Systems for Industrial Inspection Iii = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection Iii = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection Iv, Pts 1 and 2 = Proc Spie Optical Measurement Systems for Industrial Inspection Iv, Pts 1 and 2 = Proc. Spie. Optical Measurement Systems for Industrial Inspection Iv, Pts 1 and 2 = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection = Proc Spie Optical Measurement Systems for Industrial Inspection = Proc. Spie. Optical Measurement Systems for Industrial Inspection = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection = P. Soc. Photo-opt. Ins. Optical Measurement Systems for Industrial Inspection V, Pts 1 and 2 = Proc Spie Optical Measurement Systems for Industrial Inspection V, Pts 1 and 2 = Proc. Spie. Optical Measurement Systems for Industrial Inspection V, Pts 1 and 2 = P Soc Photo-opt Ins Optical Measurement Systems for Industrial Inspection V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Measurement Techniques = Springer Ser Opt Sci Optical Measurement Techniques = Springer. Ser. Opt. Sci. Optical Memory and Neural Networks = P Soc Photo-opt Ins Optical Memory and Neural Networks = P. Soc. Photo-opt. Ins. Optical Memory = P Soc Photo-opt Ins Optical Memory = P. Soc. Photo-opt. Ins. Optical Methods and Physics of Colloidal Dispersions = Prog Coll Pol Sci S Optical Methods and Physics of Colloidal Dispersions = Prog. Coll. Pol. Sci. S. Optical Methods for Chemical Process Control = P Soc Photo-opt Ins Optical Methods for Chemical Process Control = P. Soc. Photo-opt. Ins. Optical Methods for Industrial Processes = P Soc Photo-opt Ins Optical Methods for Industrial Processes = P. Soc. Photo-opt. Ins. Optical Methods for Time and State-resolved Chemistry = P Soc Photo-opt Ins Optical Methods for Time and State-resolved Chemistry = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection : Mechanisms and Techniques in Photodynamics Therapy = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection : Mechanisms and Techniques in Photodynamics Therapy = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Iii, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Iv, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Ix = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Ix = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Viii, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Viii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Vi, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Vi, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy V, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy V, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xiii = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xiii = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xii = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xii = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xi = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xi = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xiv = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xiv = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xix = Proc Spie Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xix = Proc. Spie. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy X = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy X = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xviii = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xviii = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvii = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvii = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvi = Proc Spie Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvi = Proc. Spie. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvi = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xvi = P. Soc. Photo-opt. Ins. Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xv = Proc Spie Optical Methods for Tumor Treatment and Detection: Mechanisms and Techniques in Photodynamic Therapy Xv = Proc. Spie. Optical Methods for Tumor Treatment and Detections: Mechanisms and Techniques in Photodynamic Therapy Vii, Proceedings Of = P Soc Photo-opt Ins Optical Methods for Tumor Treatment and Detections: Mechanisms and Techniques in Photodynamic Therapy Vii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Methods for Ultrasensitive Detection and Analysis : Techniques and Applications = P Soc Photo-opt Ins Optical Methods for Ultrasensitive Detection and Analysis : Techniques and Applications = P. Soc. Photo-opt. Ins. Optical Methods in Atmospheric Chemistry = P Soc Photo-opt Ins Optical Methods in Atmospheric Chemistry = P. Soc. Photo-opt. Ins. Optical Methods in Biomedical and Environmental Sciences = Opt Within Life Sci Optical Methods in Biomedical and Environmental Sciences = Opt. Within. Life. Sci. Optical Methods in The Life Sciences = Proc Spie Optical Methods in The Life Sciences = Proc. Spie. Optical Methods in The Life Sciences = P Soc Photo-opt Ins Optical Methods in The Life Sciences = P. Soc. Photo-opt. Ins. Optical Methods of Biomedical Diagnostics and Therapy = P Soc Photo-opt Ins Optical Methods of Biomedical Diagnostics and Therapy = P. Soc. Photo-opt. Ins. Optical Methods of Flow Investigation = P Soc Photo-opt Ins Optical Methods of Flow Investigation = P. Soc. Photo-opt. Ins. Optical Methods, Sensors, Image Processing, and Visualization in Medicine = Proc Spie Optical Methods, Sensors, Image Processing, and Visualization in Medicine = Proc. Spie. Optical Methods, Sensors, Image Processing, and Visualization in Medicine = P Soc Photo-opt Ins Optical Methods, Sensors, Image Processing, and Visualization in Medicine = P. Soc. Photo-opt. Ins. Optical Metrology and Inspection for Industrial Applications = Proc Spie Optical Metrology and Inspection for Industrial Applications = Proc. Spie. Optical Metrology and Inspection for Industrial Applications = P Soc Photo-opt Ins Optical Metrology and Inspection for Industrial Applications = P. Soc. Photo-opt. Ins. Optical Metrology for Arts and Multimedia = P Soc Photo-opt Ins Optical Metrology for Arts and Multimedia = P. Soc. Photo-opt. Ins. Optical Metrology in Production Engineering = Proc Spie Optical Metrology in Production Engineering = Proc. Spie. Optical Metrology in Production Engineering = P Soc Photo-opt Ins Optical Metrology in Production Engineering = P. Soc. Photo-opt. Ins. Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries Ii = Proc Spie Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries Ii = Proc. Spie. Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries Ii = P Soc Photo-opt Ins Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries Ii = P. Soc. Photo-opt. Ins. Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries = P Soc Photo-opt Ins Optical Metrology Roadmap for The Semiconductor, Optical, and Data Storage Industries = P. Soc. Photo-opt. Ins. Optical Metro Networks and Short-haul Systems Iii = Proc Spie Optical Metro Networks and Short-haul Systems Iii = Proc. Spie. Optical Metro Networks and Short-haul Systems Ii = Proc Spie Optical Metro Networks and Short-haul Systems Ii = Proc. Spie. Optical Metro Networks and Short-haul Systems Ii = P Soc Photo-opt Ins Optical Metro Networks and Short-haul Systems Ii = P. Soc. Photo-opt. Ins. Optical Metro Networks and Short-haul Systems = Proc Spie Optical Metro Networks and Short-haul Systems = Proc. Spie. Optical Metro Networks and Short-haul Systems = P Soc Photo-opt Ins Optical Metro Networks and Short-haul Systems = P. Soc. Photo-opt. Ins. Optical Micro- and Nanometrology Iii = P Soc Photo-opt Ins Optical Micro- and Nanometrology Iii = P. Soc. Photo-opt. Ins. Optical Micro- and Nanometrology in Manufacturing Technology = Proc Spie Optical Micro- and Nanometrology in Manufacturing Technology = Proc. Spie. Optical Micro- and Nanometrology in Manufacturing Technology = P Soc Photo-opt Ins Optical Micro- and Nanometrology in Manufacturing Technology = P. Soc. Photo-opt. Ins. Optical Micro- and Nanometrology in Microsystems Technology Ii = Proc Spie Optical Micro- and Nanometrology in Microsystems Technology Ii = Proc. Spie. Optical Micro- and Nanometrology in Microsystems Technology Ii = P Soc Photo-opt Ins Optical Micro- and Nanometrology in Microsystems Technology Ii = P. Soc. Photo-opt. Ins. Optical Micro- and Nanometrology in Microsystems Technology = Proc Spie Optical Micro- and Nanometrology in Microsystems Technology = Proc. Spie. Optical Micro- and Nanometrology in Microsystems Technology = P Soc Photo-opt Ins Optical Micro- and Nanometrology in Microsystems Technology = P. Soc. Photo-opt. Ins. Optical Microlithography and Metrology for Microcircuit Fabrication = P Soc Photo-opt Ins Optical Microlithography and Metrology for Microcircuit Fabrication = P. Soc. Photo-opt. Ins. Optical Microlithography Ix = P Soc Photo-opt Ins Optical Microlithography Ix = P. Soc. Photo-opt. Ins. Optical Microlithography Xiii, Pts 1 and 2 = Proc Spie Optical Microlithography Xiii, Pts 1 and 2 = Proc. Spie. Optical Microlithography Xiii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Microlithography Xiii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Microlithography Xii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Microlithography Xii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Microlithography Xi = P Soc Photo-opt Ins Optical Microlithography Xi = P. Soc. Photo-opt. Ins. Optical Microlithography Xiv, Pts 1 and 2 = P Soc Photo-opt Ins Optical Microlithography Xiv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Microlithography Xix, Pts 1-3 = Proc Spie Optical Microlithography Xix, Pts 1-3 = Proc. Spie. Optical Microlithography Xix, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xix, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microlithography X = P Soc Photo-opt Ins Optical Microlithography X = P. Soc. Photo-opt. Ins. Optical Microlithography Xviii, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xviii, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microlithography Xvii, Pts 1-3 = Proc Spie Optical Microlithography Xvii, Pts 1-3 = Proc. Spie. Optical Microlithography Xvii, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xvii, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microlithography Xvi, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xvi, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microlithography Xv, Pts 1 and 2 = Proc Spie Optical Microlithography Xv, Pts 1 and 2 = Proc. Spie. Optical Microlithography Xv, Pts 1 and 2 = P Soc Photo-opt Ins Optical Microlithography Xv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Microlithography Xxiii = Proc Spie Optical Microlithography Xxiii = Proc. Spie. Optical Microlithography Xxiii = P Soc Photo-opt Ins Optical Microlithography Xxiii = P. Soc. Photo-opt. Ins. Optical Microlithography Xxi, Pts 1-3 = Proc Spie Optical Microlithography Xxi, Pts 1-3 = Proc. Spie. Optical Microlithography Xxi, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xxi, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microlithography Xxiv = Proc Spie Optical Microlithography Xxiv = Proc. Spie. Optical Microlithography Xx, Pts 1-3 = Proc Spie Optical Microlithography Xx, Pts 1-3 = Proc. Spie. Optical Microlithography Xx, Pts 1-3 = P Soc Photo-opt Ins Optical Microlithography Xx, Pts 1-3 = P. Soc. Photo-opt. Ins. Optical Microresonators: Theory, Fabrication, and Applications = Springer Ser Opt Sci Optical Microresonators: Theory, Fabrication, and Applications = Springer. Ser. Opt. Sci. Optical Microstructural Characterization of Semiconductors = Mater Res Soc Symp P Optical Microstructural Characterization of Semiconductors = Mater. Res. Soc. Symp. P. Optical Modeling and Measurements for Solar Energy Systems Ii = P Soc Photo-opt Ins Optical Modeling and Measurements for Solar Energy Systems Ii = P. Soc. Photo-opt. Ins. Optical Modeling and Measurements for Solar Energy Systems = Proc Spie Optical Modeling and Measurements for Solar Energy Systems = Proc. Spie. Optical Modeling and Measurements for Solar Energy Systems = P Soc Photo-opt Ins Optical Modeling and Measurements for Solar Energy Systems = P. Soc. Photo-opt. Ins. Optical Modeling and Performance Predictions Iii = P Soc Photo-opt Ins Optical Modeling and Performance Predictions Iii = P. Soc. Photo-opt. Ins. Optical Modeling and Performance Predictions = P Soc Photo-opt Ins Optical Modeling and Performance Predictions = P. Soc. Photo-opt. Ins. Optical Modelling and Design = Proc Spie Optical Modelling and Design = Proc. Spie. Optical Modelling and Design = P Soc Photo-opt Ins Optical Modelling and Design = P. Soc. Photo-opt. Ins. Optical Molecular Probes for Biomedical Applications = P Soc Photo-opt Ins Optical Molecular Probes for Biomedical Applications = P. Soc. Photo-opt. Ins. Optical Nanotechnologies: The Manipulation of Surface and Local Plasmons = Top Appl Phys Optical Nanotechnologies: The Manipulation of Surface and Local Plasmons = Top. Appl. Phys. Optical Network Design and Modeling, Proceedings = Lect Notes Comput Sc Optical Network Design and Modeling, Proceedings = Lect. Notes. Comput. Sc. Optical Network Design and Planning = Opt Netw Optical Network Design and Planning = Opt. Netw. Optical Network Engineering and Integrity = P Soc Photo-opt Ins Optical Network Engineering and Integrity = P. Soc. Photo-opt. Ins. Optical Networks and Technologies = Int Fed Info Proc Optical Networks and Technologies = Int. Fed. Info. Proc. Optical Networks: Design and Modelling = Int Fed Info Proc Optical Networks: Design and Modelling = Int. Fed. Info. Proc. Optical Networks = Opt Netw Optical Networks = Opt. Netw. Optical Neural Networks = P Soc Photo-opt Ins Optical Neural Networks = P. Soc. Photo-opt. Ins. Optical Online Industrial Process Monitoring = P Soc Photo-opt Ins Optical Online Industrial Process Monitoring = P. Soc. Photo-opt. Ins. Optical Organic and Inorganic Materials = Proc Spie Optical Organic and Inorganic Materials = Proc. Spie. Optical Organic and Inorganic Materials = P Soc Photo-opt Ins Optical Organic and Inorganic Materials = P. Soc. Photo-opt. Ins. Optical Organic and Semiconductor Inorganic Materials = P Soc Photo-opt Ins Optical Organic and Semiconductor Inorganic Materials = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Iii = P Soc Photo-opt Ins Optical Pattern Recognition Iii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Ii = P Soc Photo-opt Ins Optical Pattern Recognition Ii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Iv = P Soc Photo-opt Ins Optical Pattern Recognition Iv = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Ix = P Soc Photo-opt Ins Optical Pattern Recognition Ix = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Viii = P Soc Photo-opt Ins Optical Pattern Recognition Viii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Vii = P Soc Photo-opt Ins Optical Pattern Recognition Vii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Vi = P Soc Photo-opt Ins Optical Pattern Recognition Vi = P. Soc. Photo-opt. Ins. Optical Pattern Recognition V = P Soc Photo-opt Ins Optical Pattern Recognition V = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xiii = P Soc Photo-opt Ins Optical Pattern Recognition Xiii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xii = Proc Spie Optical Pattern Recognition Xii = Proc. Spie. Optical Pattern Recognition Xii = P Soc Photo-opt Ins Optical Pattern Recognition Xii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xi = Proc Spie Optical Pattern Recognition Xi = Proc. Spie. Optical Pattern Recognition Xi = P Soc Photo-opt Ins Optical Pattern Recognition Xi = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xiv = Proc Spie Optical Pattern Recognition Xiv = Proc. Spie. Optical Pattern Recognition Xiv = P Soc Photo-opt Ins Optical Pattern Recognition Xiv = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xix = Proc Spie Optical Pattern Recognition Xix = Proc. Spie. Optical Pattern Recognition Xix = P Soc Photo-opt Ins Optical Pattern Recognition Xix = P. Soc. Photo-opt. Ins. Optical Pattern Recognition X = P Soc Photo-opt Ins Optical Pattern Recognition X = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xviii = P Soc Photo-opt Ins Optical Pattern Recognition Xviii = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xvi = P Soc Photo-opt Ins Optical Pattern Recognition Xvi = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xv = P Soc Photo-opt Ins Optical Pattern Recognition Xv = P. Soc. Photo-opt. Ins. Optical Pattern Recognition Xxii = Proc Spie Optical Pattern Recognition Xxii = Proc. Spie. Optical Pattern Recogniton Xvii = P Soc Photo-opt Ins Optical Pattern Recogniton Xvii = P. Soc. Photo-opt. Ins. Optical Phenomena in Semiconductor Structures in Reduced Dimensions = Nato Adv Sci Inst Se Optical Phenomena in Semiconductor Structures in Reduced Dimensions = Nato. Adv. Sci. Inst. Se. Optical Probes of Conjugated Polymers = P Soc Photo-opt Ins Optical Probes of Conjugated Polymers = P. Soc. Photo-opt. Ins. Optical Processing and Computing: A Tribute to Adolf Lohmann = P Soc Photo-opt Ins Optical Processing and Computing: A Tribute to Adolf Lohmann = P. Soc. Photo-opt. Ins. Optical Properties of 2d Systems With Interacting Electrons = Nato Sci Ser Ii-math Optical Properties of 2d Systems With Interacting Electrons = Nato. Sci. Ser. Ii-math. Optical Properties of 2d Systems With Interacting Electrons = Nato Sci Ser Ii Math Optical Properties of 2d Systems With Interacting Electrons = Nato. Sci. Ser. Ii. Math. Optical Properties of Excited States in Solids = Nato Adv Sci Inst Se Optical Properties of Excited States in Solids = Nato. Adv. Sci. Inst. Se. Optical Properties of Low Dimensional Silicon Structures = Nato Adv Sci Inst Se Optical Properties of Low Dimensional Silicon Structures = Nato. Adv. Sci. Inst. Se. Optical Properties of Materials = Mater Res Soc Symp P Optical Properties of Materials = Mater. Res. Soc. Symp. P. Optical Properties of Nanocrystals = P Soc Photo-opt Ins Optical Properties of Nanocrystals = P. Soc. Photo-opt. Ins. Optical Properties of Nanostructured Random Media = Top Appl Phys Optical Properties of Nanostructured Random Media = Top. Appl. Phys. Optical Properties of Semiconductor Nanostructures = Nato Sci S Prt 3 Hi Optical Properties of Semiconductor Nanostructures = Nato. Sci. S. Prt. 3. Hi. Optical Properties of Semiconductor Quantum Dots = Springer Tr Mod Phys Optical Properties of Semiconductor Quantum Dots = Springer. Tr. Mod. Phys. Optical Properties of Semiconductors = Nato Adv Sci Inst Se Optical Properties of Semiconductors = Nato. Adv. Sci. Inst. Se. Optical Pulse and Beam Propagation Iii = P Soc Photo-opt Ins Optical Pulse and Beam Propagation Iii = P. Soc. Photo-opt. Ins. Optical Pulse and Beam Propagation Ii = P Soc Photo-opt Ins Optical Pulse and Beam Propagation Ii = P. Soc. Photo-opt. Ins. Optical Pulse and Beam Propagation = P Soc Photo-opt Ins Optical Pulse and Beam Propagation = P. Soc. Photo-opt. Ins. Optical Radiation Interaction With Matter = P Soc Photo-opt Ins Optical Radiation Interaction With Matter = P. Soc. Photo-opt. Ins. Optical Radiation Measurements Iii = P Soc Photo-opt Ins Optical Radiation Measurements Iii = P. Soc. Photo-opt. Ins. Optical Recording Mechanisms and Media = P Soc Photo-opt Ins Optical Recording Mechanisms and Media = P. Soc. Photo-opt. Ins. Optical Recording, Storage, and Retrieval Systems = P Soc Photo-opt Ins Optical Recording, Storage, and Retrieval Systems = P. Soc. Photo-opt. Ins. Optical Remote Sensing: Advances in Signal Processing and Exploitation Techniques = Augment Vis Real Optical Remote Sensing: Advances in Signal Processing and Exploitation Techniques = Augment. Vis. Real. Optical Remote Sensing for Industry and Environmental Monitoring = P Soc Photo-opt Ins Optical Remote Sensing for Industry and Environmental Monitoring = P. Soc. Photo-opt. Ins. Optical Remote Sensing of The Atmosphere and Clouds Iii = Proc Spie Optical Remote Sensing of The Atmosphere and Clouds Iii = Proc. Spie. Optical Remote Sensing of The Atmosphere and Clouds Iii = P Soc Photo-opt Ins Optical Remote Sensing of The Atmosphere and Clouds Iii = P. Soc. Photo-opt. Ins. Optical Remote Sensing of The Atmosphere and Clouds Ii = Proc Spie Optical Remote Sensing of The Atmosphere and Clouds Ii = Proc. Spie. Optical Remote Sensing of The Atmosphere and Clouds Ii = P Soc Photo-opt Ins Optical Remote Sensing of The Atmosphere and Clouds Ii = P. Soc. Photo-opt. Ins. Optical Remote Sensing of The Atmosphere and Clouds = P Soc Photo-opt Ins Optical Remote Sensing of The Atmosphere and Clouds = P. Soc. Photo-opt. Ins. Optical Resonators = P Soc Photo-opt Ins Optical Resonators = P. Soc. Photo-opt. Ins. Optical Resonators: Science and Engineering = Nato Asi 3 High Tech Optical Resonators: Science and Engineering = Nato. Asi. 3. High. Tech. Optical Review = Opt Rev Optical Review = Opt. Rev. Optical Scanning 2002 = Proc Spie Optical Scanning 2002 = Proc. Spie. Optical Scanning 2002 = P Soc Photo-opt Ins Optical Scanning 2002 = P. Soc. Photo-opt. Ins. Optical Scanning 2005 = Proc Spie Optical Scanning 2005 = Proc. Spie. Optical Scanning 2005 = P Soc Photo-opt Ins Optical Scanning 2005 = P. Soc. Photo-opt. Ins. Optical Scanning: Design and Applications = P Soc Photo-opt Ins Optical Scanning: Design and Applications = P. Soc. Photo-opt. Ins. Optical Scanning Systems: Design and Applications = P Soc Photo-opt Ins Optical Scanning Systems: Design and Applications = P. Soc. Photo-opt. Ins. Optical Scatter : Applications, Measurement, and Theory = P Soc Photo-opt Ins Optical Scatter : Applications, Measurement, and Theory = P. Soc. Photo-opt. Ins. Optical Scattering: Applications, Measurement, and Theory Ii = P Soc Photo-opt Ins Optical Scattering: Applications, Measurement, and Theory Ii = P. Soc. Photo-opt. Ins. Optical Scattering in The Optics, Semiconductor, and Computer Disk Industries = P Soc Photo-opt Ins Optical Scattering in The Optics, Semiconductor, and Computer Disk Industries = P. Soc. Photo-opt. Ins. Optical Science and Engineering-crc = Opt Sci Eng-crc Optical Science and Engineering-crc = Opt. Sci. Eng-crc. Optical Security and Anticounterfeiting Systems = P Soc Photo-opt Ins Optical Security and Anticounterfeiting Systems = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques Iii = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques Iii = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques Ii = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques Ii = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques Iv = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques Iv = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques Vi = Proc Spie Optical Security and Counterfeit Deterrence Techniques Vi = Proc. Spie. Optical Security and Counterfeit Deterrence Techniques Vi = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques Vi = P. Soc. Photo-opt. Ins. Optical Security and Counterfeit Deterrence Techniques V = P Soc Photo-opt Ins Optical Security and Counterfeit Deterrence Techniques V = P. Soc. Photo-opt. Ins. Optical Sensing and Detection = Proc Spie Optical Sensing and Detection = Proc. Spie. Optical Sensing and Detection = P Soc Photo-opt Ins Optical Sensing and Detection = P. Soc. Photo-opt. Ins. Optical Sensing for Environmental and Process Monitoring, Proceedings Of = P Soc Photo-opt Ins Optical Sensing for Environmental and Process Monitoring, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Sensing for Public Safety, Health, and Security = P Soc Photo-opt Ins Optical Sensing for Public Safety, Health, and Security = P. Soc. Photo-opt. Ins. Optical Sensing Ii = Proc Spie Optical Sensing Ii = Proc. Spie. Optical Sensing Ii = P Soc Photo-opt Ins Optical Sensing Ii = P. Soc. Photo-opt. Ins. Optical Sensing, Imaging, and Manipulation for Biological and Biomedical Applications = P Soc Photo-opt Ins Optical Sensing, Imaging, and Manipulation for Biological and Biomedical Applications = P. Soc. Photo-opt. Ins. Optical Sensing = Proc Spie Optical Sensing = Proc. Spie. Optical Sensing = P Soc Photo-opt Ins Optical Sensing = P. Soc. Photo-opt. Ins. Optical Sensing Technology and Applications = Proc Spie Optical Sensing Technology and Applications = Proc. Spie. Optical Sensing Technology and Applications = P Soc Photo-opt Ins Optical Sensing Technology and Applications = P. Soc. Photo-opt. Ins. Optical Sensors 2008 = Proc Spie Optical Sensors 2008 = Proc. Spie. Optical Sensors 2008 = P Soc Photo-opt Ins Optical Sensors 2008 = P. Soc. Photo-opt. Ins. Optical Sensors 2011 and Photonic Crystal Fibers V = Proc Spie Optical Sensors 2011 and Photonic Crystal Fibers V = Proc. Spie. Optical Sensors and Biophotonics Ii = Proc Spie Optical Sensors and Biophotonics Ii = Proc. Spie. Optical Sensors for Environmental and Chemical Process Monitoring = P Soc Photo-opt Ins Optical Sensors for Environmental and Chemical Process Monitoring = P. Soc. Photo-opt. Ins. Optical Sensors = P Soc Photo-opt Ins Optical Sensors = P. Soc. Photo-opt. Ins. Optical Sensor Systems in Biotechnology = Adv Biochem Eng Biot Optical Sensor Systems in Biotechnology = Adv. Biochem. Eng. Biot. Optical Society of America Proceedings = Osa Proc Optical Society of America Proceedings = Osa. Proc. Optical Solitons in Nonlinear Micro Ring Resonators: Unexpected Results and Applications = Lasers Electro-opt R Optical Solitons in Nonlinear Micro Ring Resonators: Unexpected Results and Applications = Lasers. Electro-opt. R. Optical Solitons: Theoretical Challenges and Industrial Perspectives = Ctr Phys Houches Optical Solitons: Theoretical Challenges and Industrial Perspectives = Ctr. Phys. Houches. Optical Space Communication = P Soc Photo-opt Ins Optical Space Communication = P. Soc. Photo-opt. Ins. Optical Space Communications Ii = P Soc Photo-opt Ins Optical Space Communications Ii = P. Soc. Photo-opt. Ins. Optical Spectra and Chemical Bonding in Inorganic Compounds, Vol 1 = Struct Bond Optical Spectra and Chemical Bonding in Inorganic Compounds, Vol 1 = Struct. Bond. Optical Spectra and Chemical Bonding in Transition Metal Complexes = Struct Bond Optical Spectra and Chemical Bonding in Transition Metal Complexes = Struct. Bond. Optical Spectra = Opt Spectra Optical Spectra = Opt. Spectra Optical Spectroscopic Instrumentation and Techniques for The 1990s : Applications in Astronomy, Chemistry, and Physics = P Soc Photo-opt Ins Optical Spectroscopic Instrumentation and Techniques for The 1990s : Applications in Astronomy, Chemistry, and Physics = P. Soc. Photo-opt. Ins. Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research Iii = P Soc Photo-opt Ins Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research Iii = P. Soc. Photo-opt. Ins. Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research Ii = P Soc Photo-opt Ins Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research Ii = P. Soc. Photo-opt. Ins. Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research = P Soc Photo-opt Ins Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research = P. Soc. Photo-opt. Ins. Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research V = Proc Spie Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research V = Proc. Spie. Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research V = P Soc Photo-opt Ins Optical Spectroscopic Techniques and Instrumentation for Atmospheric and Space Research V = P. Soc. Photo-opt. Ins. Optical Spectroscopic Techniques, Remote Sensing, and Instrumentation for Atmospheric and Space Research Iv = P Soc Photo-opt Ins Optical Spectroscopic Techniques, Remote Sensing, and Instrumentation for Atmospheric and Space Research Iv = P. Soc. Photo-opt. Ins. Optical Spectroscopy in Chemistry and Biology - Progress and Trends = Phys Chem T Optical Spectroscopy in Chemistry and Biology - Progress and Trends = Phys. Chem. T. Optical Spectroscopy of Low Dimensional Semiconductors = Nato Adv Sci I E-app Optical Spectroscopy of Low Dimensional Semiconductors = Nato. Adv. Sci. I. E-app. Optical Storage and Optical Information Processing = Proc Spie Optical Storage and Optical Information Processing = Proc. Spie. Optical Storage and Optical Information Processing = P Soc Photo-opt Ins Optical Storage and Optical Information Processing = P. Soc. Photo-opt. Ins. Optical Storage and Scanning Technology = P Soc Photo-opt Ins Optical Storage and Scanning Technology = P. Soc. Photo-opt. Ins. Optical Storage Technology = P Soc Photo-opt Ins Optical Storage Technology = P. Soc. Photo-opt. Ins. Optical Supercomputing, Proceedings = Lect Notes Comput Sc Optical Supercomputing, Proceedings = Lect. Notes. Comput. Sc. Optical Surfaces Resistant to Severe Environments = P Soc Photo-opt Ins Optical Surfaces Resistant to Severe Environments = P. Soc. Photo-opt. Ins. Optical Switching and Networking = Opt. Switching Networking Optical Switching and Networking = Opt Switch Netw Optical Switching and Networking = Opt. Switch. Netw. Optical System Alignment and Tolerancing Ii = P Soc Photo-opt Ins Optical System Alignment and Tolerancing Ii = P. Soc. Photo-opt. Ins. Optical System Alignment and Tolerancing = P Soc Photo-opt Ins Optical System Alignment and Tolerancing = P. Soc. Photo-opt. Ins. Optical System Alignment, Tolerancing, and Verification Iv = P Soc Photo-opt Ins Optical System Alignment, Tolerancing, and Verification Iv = P. Soc. Photo-opt. Ins. Optical System Contamination : Effects, Measurement, Control Iii = P Soc Photo-opt Ins Optical System Contamination : Effects, Measurement, Control Iii = P. Soc. Photo-opt. Ins. Optical System Contamination : Effects, Measurement, Control Ii = P Soc Photo-opt Ins Optical System Contamination : Effects, Measurement, Control Ii = P. Soc. Photo-opt. Ins. Optical System Contamination: Effects, Measurements, and Control 2008 = P Soc Photo-opt Ins Optical System Contamination: Effects, Measurements, and Control 2008 = P. Soc. Photo-opt. Ins. Optical System Contamination: Effects, Measurements, and Control 2010 = P Soc Photo-opt Ins Optical System Contamination: Effects, Measurements, and Control 2010 = P. Soc. Photo-opt. Ins. Optical System Contamination: Effects, Measurements, and Control Iv = P Soc Photo-opt Ins Optical System Contamination: Effects, Measurements, and Control Iv = P. Soc. Photo-opt. Ins. Optical System Contamination: Effects, Measurements, and Control Vii = P Soc Photo-opt Ins Optical System Contamination: Effects, Measurements, and Control Vii = P. Soc. Photo-opt. Ins. Optical System Contamination V and Stray Light and System Optimization = P Soc Photo-opt Ins Optical System Contamination V and Stray Light and System Optimization = P. Soc. Photo-opt. Ins. Optical Systems Contamination and Degradation Ii: Effects, Measurements, and Control = P Soc Photo-opt Ins Optical Systems Contamination and Degradation Ii: Effects, Measurements, and Control = P. Soc. Photo-opt. Ins. Optical Systems Contamination and Degradation = P Soc Photo-opt Ins Optical Systems Contamination and Degradation = P. Soc. Photo-opt. Ins. Optical Systems Degradation, Contamination, and Stray Light: Effects, Measurements, and Control = P Soc Photo-opt Ins Optical Systems Degradation, Contamination, and Stray Light: Effects, Measurements, and Control = P. Soc. Photo-opt. Ins. Optical Systems Degradation, Contamination, and Stray Light: Effects, Measurements, Control Ii = P Soc Photo-opt Ins Optical Systems Degradation, Contamination, and Stray Light: Effects, Measurements, Control Ii = P. Soc. Photo-opt. Ins. Optical Systems in Adverse Environments = P Soc Photo-opt Ins Optical Systems in Adverse Environments = P. Soc. Photo-opt. Ins. Optical Techniques and Instrumentation for The Measurement of Blood Composition, Structure and Dynamics = P Soc Photo-opt Ins Optical Techniques and Instrumentation for The Measurement of Blood Composition, Structure and Dynamics = P. Soc. Photo-opt. Ins. Optical Techniques for Environmental Sensing, Workplace Safety, and Health Monitoring = Proc Spie Optical Techniques for Environmental Sensing, Workplace Safety, and Health Monitoring = Proc. Spie. Optical Techniques for Environmental Sensing, Workplace Safety, and Health Monitoring = P Soc Photo-opt Ins Optical Techniques for Environmental Sensing, Workplace Safety, and Health Monitoring = P. Soc. Photo-opt. Ins. Optical Techniques in Fluid, Thermal, and Combustion Flow = P Soc Photo-opt Ins Optical Techniques in Fluid, Thermal, and Combustion Flow = P. Soc. Photo-opt. Ins. Optical Technologies for Arming, Safing, Fuzing, and Firing Iii = Proc Spie Optical Technologies for Arming, Safing, Fuzing, and Firing Iii = Proc. Spie. Optical Technologies for Arming, Safing, Fuzing, and Firing Iii = P Soc Photo-opt Ins Optical Technologies for Arming, Safing, Fuzing, and Firing Iii = P. Soc. Photo-opt. Ins. Optical Technologies for Arming, Safing, Fuzing, and Firing Ii = Proc Spie Optical Technologies for Arming, Safing, Fuzing, and Firing Ii = Proc. Spie. Optical Technologies for Arming, Safing, Fuzing, and Firing Ii = P Soc Photo-opt Ins Optical Technologies for Arming, Safing, Fuzing, and Firing Ii = P. Soc. Photo-opt. Ins. Optical Technologies for Arming, Safing, Fuzing, and Firing Iv = P Soc Photo-opt Ins Optical Technologies for Arming, Safing, Fuzing, and Firing Iv = P. Soc. Photo-opt. Ins. Optical Technologies for Arming, Safing, Fuzing, and Firing Vi = P Soc Photo-opt Ins Optical Technologies for Arming, Safing, Fuzing, and Firing Vi = P. Soc. Photo-opt. Ins. Optical Technologies for Atmospheric, Ocean, and Environmental Studies, Pts 1 and 2 = Proc Spie Optical Technologies for Atmospheric, Ocean, and Environmental Studies, Pts 1 and 2 = Proc. Spie. Optical Technologies for Atmospheric, Ocean, and Environmental Studies, Pts 1 and 2 = P Soc Photo-opt Ins Optical Technologies for Atmospheric, Ocean, and Environmental Studies, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Technologies for Communications = P Soc Photo-opt Ins Optical Technologies for Communications = P. Soc. Photo-opt. Ins. Optical Technologies for Telecommunications 2005 = P Soc Photo-opt Ins Optical Technologies for Telecommunications 2005 = P. Soc. Photo-opt. Ins. Optical Technologies for Telecommunications 2006 = P Soc Photo-opt Ins Optical Technologies for Telecommunications 2006 = P. Soc. Photo-opt. Ins. Optical Technologies for Telecommunications 2007 = Proc Spie Optical Technologies for Telecommunications 2007 = Proc. Spie. Optical Technologies for Telecommunications 2007 = P Soc Photo-opt Ins Optical Technologies for Telecommunications 2007 = P. Soc. Photo-opt. Ins. Optical Technologies for Telecommunications 2009 = Proc Spie Optical Technologies for Telecommunications 2009 = Proc. Spie. Optical Technologies for Telecommunications 2009 = P Soc Photo-opt Ins Optical Technologies for Telecommunications 2009 = P. Soc. Photo-opt. Ins. Optical Technologies for Telecommunications = Proc Spie Optical Technologies for Telecommunications = Proc. Spie. Optical Technologies for Telecommunications = P Soc Photo-opt Ins Optical Technologies for Telecommunications = P. Soc. Photo-opt. Ins. Optical Technologies in Biophysics and Medicine Ix = Proc Spie Optical Technologies in Biophysics and Medicine Ix = Proc. Spie. Optical Technology and Image Processing for Fluids and Solids Diagnostics 2002 = Proc Spie Optical Technology and Image Processing for Fluids and Solids Diagnostics 2002 = Proc. Spie. Optical Technology and Image Processing for Fluids and Solids Diagnostics 2002 = P Soc Photo-opt Ins Optical Technology and Image Processing for Fluids and Solids Diagnostics 2002 = P. Soc. Photo-opt. Ins. Optical Technology for Microwave Applications Iv = P Soc Photo-opt Ins Optical Technology for Microwave Applications Iv = P. Soc. Photo-opt. Ins. Optical Technology for Microwave Applications Vi and Optoelectronic Signal Processing for Phased-array Antennas Iii = P Soc Photo-opt Ins Optical Technology for Microwave Applications Vi and Optoelectronic Signal Processing for Phased-array Antennas Iii = P. Soc. Photo-opt. Ins. Optical Technology for Microwave Applications Vii = P Soc Photo-opt Ins Optical Technology for Microwave Applications Vii = P. Soc. Photo-opt. Ins. Optical Technology for Microwave Applications V = P Soc Photo-opt Ins Optical Technology for Microwave Applications V = P. Soc. Photo-opt. Ins. Optical Technology for Signal Processing Systems = P Soc Photo-opt Ins Optical Technology for Signal Processing Systems = P. Soc. Photo-opt. Ins. Optical Technology in Fluid, Thermal, and Combustion Flow Iii = P Soc Photo-opt Ins Optical Technology in Fluid, Thermal, and Combustion Flow Iii = P. Soc. Photo-opt. Ins. Optical Telescopes of Today and Tomorrow: Following in The Direction of Tycho Brahe = P Soc Photo-opt Ins Optical Telescopes of Today and Tomorrow: Following in The Direction of Tycho Brahe = P. Soc. Photo-opt. Ins. Optical Testing and Metrology Iii : Recent Advances in Industrial Optical Inspection, Pts 1 and 2 = P Soc Photo-opt Ins Optical Testing and Metrology Iii : Recent Advances in Industrial Optical Inspection, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Thin Films and Applications = P Soc Photo-opt Ins Optical Thin Films and Applications = P. Soc. Photo-opt. Ins. Optical Thin Films Iii : New Developments = P Soc Photo-opt Ins Optical Thin Films Iii : New Developments = P. Soc. Photo-opt. Ins. Optical Thin Films Iv: New Developments = P Soc Photo-opt Ins Optical Thin Films Iv: New Developments = P. Soc. Photo-opt. Ins. Optical Thin Films V: New Developments = P Soc Photo-opt Ins Optical Thin Films V: New Developments = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue Iii, Proceedings Of = Proc Spie Optical Tomography and Spectroscopy of Tissue Iii, Proceedings Of = Proc. Spie. Optical Tomography and Spectroscopy of Tissue Iii, Proceedings Of = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue Iv = Proc Spie Optical Tomography and Spectroscopy of Tissue Iv = Proc. Spie. Optical Tomography and Spectroscopy of Tissue Iv = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue Iv = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue: Theory, Instrumentation, Model, and Human Studies Ii, Proceedings Of = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue: Theory, Instrumentation, Model, and Human Studies Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue Viii = Proc Spie Optical Tomography and Spectroscopy of Tissue Viii = Proc. Spie. Optical Tomography and Spectroscopy of Tissue Viii = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue Viii = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue Vii = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue Vii = P. Soc. Photo-opt. Ins. Optical Tomography and Spectroscopy of Tissue Vi = Lect Notes Comput Sc Optical Tomography and Spectroscopy of Tissue Vi = Lect. Notes. Comput. Sc. Optical Tomography and Spectroscopy of Tissue V = Proc Spie Optical Tomography and Spectroscopy of Tissue V = Proc. Spie. Optical Tomography and Spectroscopy of Tissue V = P Soc Photo-opt Ins Optical Tomography and Spectroscopy of Tissue V = P. Soc. Photo-opt. Ins. Optical Tomography, Photon Migration, and Spectroscopy of Tissue and Model Media: Theory, Human Studies, and Instrumentation, Proceedings Of, Pts 1 and 2 = P Soc Photo-opt Ins Optical Tomography, Photon Migration, and Spectroscopy of Tissue and Model Media: Theory, Human Studies, and Instrumentation, Proceedings Of, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Transmission, Switching, and Subsystem Ii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Transmission, Switching, and Subsystem Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Transmission, Switching, and Subsystems Iii, Pts 1 and 2 = Proc Spie Optical Transmission, Switching, and Subsystems Iii, Pts 1 and 2 = Proc. Spie. Optical Transmission, Switching, and Subsystems Iii, Pts 1 and 2 = P Soc Photo-opt Ins Optical Transmission, Switching, and Subsystems Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Transmission, Switching, and Subsystems Iv, Pts 1 and 2 = Proc Spie Optical Transmission, Switching, and Subsystems Iv, Pts 1 and 2 = Proc. Spie. Optical Transmission, Switching, and Subsystems Iv, Pts 1 and 2 = P Soc Photo-opt Ins Optical Transmission, Switching, and Subsystems Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Transmission, Switching, and Subsystems V, Pts 1 and 2 = Proc Spie Optical Transmission, Switching, and Subsystems V, Pts 1 and 2 = Proc. Spie. Optical Transmission, Switching, and Subsystems V, Pts 1 and 2 = P Soc Photo-opt Ins Optical Transmission, Switching, and Subsystems V, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optical Transmission Systems and Equipment for Networking Vi = Proc Spie Optical Transmission Systems and Equipment for Networking Vi = Proc. Spie. Optical Transmission Systems and Equipment for Networking Vi = P Soc Photo-opt Ins Optical Transmission Systems and Equipment for Networking Vi = P. Soc. Photo-opt. Ins. Optical Transmission Systems and Equipment for Networking V = P Soc Photo-opt Ins Optical Transmission Systems and Equipment for Networking V = P. Soc. Photo-opt. Ins. Optical Transmission Systems and Equipment for Wdm Networking Iii = P Soc Photo-opt Ins Optical Transmission Systems and Equipment for Wdm Networking Iii = P. Soc. Photo-opt. Ins. Optical Transmission Systems and Equipment for Wdm Networking Ii = Proc Spie Optical Transmission Systems and Equipment for Wdm Networking Ii = Proc. Spie. Optical Transmission Systems and Equipment for Wdm Networking Ii = P Soc Photo-opt Ins Optical Transmission Systems and Equipment for Wdm Networking Ii = P. Soc. Photo-opt. Ins. Optical Transmission Systems and Equipment for Wdm Networking = P Soc Photo-opt Ins Optical Transmission Systems and Equipment for Wdm Networking = P. Soc. Photo-opt. Ins. Optical Transmission Systems, Switching, and Subsystems Viii = Proc Spie Optical Transmission Systems, Switching, and Subsystems Viii = Proc. Spie. Optical Trapping and Optical Micromanipulation Iii = Proc Spie Optical Trapping and Optical Micromanipulation Iii = Proc. Spie. Optical Trapping and Optical Micromanipulation Iii = P Soc Photo-opt Ins Optical Trapping and Optical Micromanipulation Iii = P. Soc. Photo-opt. Ins. Optical Trapping and Optical Micromanipulation Iv = Proc Spie Optical Trapping and Optical Micromanipulation Iv = Proc. Spie. Optical Trapping and Optical Micromanipulation Iv = P Soc Photo-opt Ins Optical Trapping and Optical Micromanipulation Iv = P. Soc. Photo-opt. Ins. Optical Trapping and Optical Micromanipulation = Proc Spie Optical Trapping and Optical Micromanipulation = Proc. Spie. Optical Trapping and Optical Micromanipulation = P Soc Photo-opt Ins Optical Trapping and Optical Micromanipulation = P. Soc. Photo-opt. Ins. Optical Trapping and Optical Micromanipulation Vii = Proc Spie Optical Trapping and Optical Micromanipulation Vii = Proc. Spie. Optical Trapping and Optical Micromanipulation Vii = P Soc Photo-opt Ins Optical Trapping and Optical Micromanipulation Vii = P. Soc. Photo-opt. Ins. Optical Trapping and Optical Micromanipulation V = Proc Spie Optical Trapping and Optical Micromanipulation V = Proc. Spie. Optical Trapping and Optical Micromanipulation V = P Soc Photo-opt Ins Optical Trapping and Optical Micromanipulation V = P. Soc. Photo-opt. Ins. Optical Velocimetry = P Soc Photo-opt Ins Optical Velocimetry = P. Soc. Photo-opt. Ins. Optical Waveguide Materials = Mater Res Soc Symp P Optical Waveguide Materials = Mater. Res. Soc. Symp. P. Optical Waveguide Sensing and Imaging = Nato Science Peace S Optical Waveguide Sensing and Imaging = Nato. Science. Peace. S. Optical Waveguide Sensing and Imaging = Nato Sci Peace Sec B Optical Waveguide Sensing and Imaging = Nato. Sci. Peace. Sec. B. Optical Wireless Communications Iii = P Soc Photo-opt Ins Optical Wireless Communications Iii = P. Soc. Photo-opt. Ins. Optical Wireless Communications Ii = P Soc Photo-opt Ins Optical Wireless Communications Ii = P. Soc. Photo-opt. Ins. Optical Wireless Communications Iv = P Soc Photo-opt Ins Optical Wireless Communications Iv = P. Soc. Photo-opt. Ins. Optical Wireless Communications = P Soc Photo-opt Ins Optical Wireless Communications = P. Soc. Photo-opt. Ins. Optical Wireless Communications V = P Soc Photo-opt Ins Optical Wireless Communications V = P. Soc. Photo-opt. Ins. Opticheskii Zhurnal = Opt. Zh. Opticomm 2000: Optical Networking and Communications = P Soc Photo-opt Ins Opticomm 2000: Optical Networking and Communications = P. Soc. Photo-opt. Ins. Opticomm 2001: Optical Networking and Communications = Proc Spie Opticomm 2001: Optical Networking and Communications = Proc. Spie. Opticomm 2001: Optical Networking and Communications = P Soc Photo-opt Ins Opticomm 2001: Optical Networking and Communications = P. Soc. Photo-opt. Ins. Opticomm 2002: Optical Networking and Communications = P Soc Photo-opt Ins Opticomm 2002: Optical Networking and Communications = P. Soc. Photo-opt. Ins. Opticomm 2003: Optical Networking and Communications = Proc Spie Opticomm 2003: Optical Networking and Communications = Proc. Spie. Opticomm 2003: Optical Networking and Communications = P Soc Photo-opt Ins Opticomm 2003: Optical Networking and Communications = P. Soc. Photo-opt. Ins. Optics and Lasers in Biomedicine and Cultures Owls V = Opt Within Life Sci Optics and Lasers in Biomedicine and Cultures Owls V = Opt. Within. Life. Sci. Optics and Lasers in Engineering = Opt Laser Eng Optics and Lasers in Engineering = Opt. Laser. Eng. Optics and Lasers in Engineering = Opt. Lasers Eng. Optics and Laser Technology = Opt Laser Technol Optics and Laser Technology = Opt. Laser Technol. Optics and Photonics for Counterterrorism and Crime Fighting Iii = P Soc Photo-opt Ins Optics and Photonics for Counterterrorism and Crime Fighting Iii = P. Soc. Photo-opt. Ins. Optics and Photonics for Counterterrorism and Crime Fighting Ii = Proc Spie Optics and Photonics for Counterterrorism and Crime Fighting Ii = Proc. Spie. Optics and Photonics for Counterterrorism and Crime Fighting Ii = P Soc Photo-opt Ins Optics and Photonics for Counterterrorism and Crime Fighting Ii = P. Soc. Photo-opt. Ins. Optics and Photonics for Counterterrorism and Crime Fighting = Proc Spie Optics and Photonics for Counterterrorism and Crime Fighting = Proc. Spie. Optics and Photonics for Counterterrorism and Crime Fighting = P Soc Photo-opt Ins Optics and Photonics for Counterterrorism and Crime Fighting = P. Soc. Photo-opt. Ins. Optics and Photonics for Counterterrorism and Crime Fighting Vi and Optical Materials in Defence Systems Technology Vii = Proc Spie Optics and Photonics for Counterterrorism and Crime Fighting Vi and Optical Materials in Defence Systems Technology Vii = Proc. Spie. Optics and Photonics for Counterterrorism and Crime Fighting Vi and Optical Materials in Defence Systems Technology Vii = P Soc Photo-opt Ins Optics and Photonics for Counterterrorism and Crime Fighting Vi and Optical Materials in Defence Systems Technology Vii = P. Soc. Photo-opt. Ins. Optics and Photonics for Information Processing Ii = P Soc Photo-opt Ins Optics and Photonics for Information Processing Ii = P. Soc. Photo-opt. Ins. Optics and Photonics for Information Processing Iv = P Soc Photo-opt Ins Optics and Photonics for Information Processing Iv = P. Soc. Photo-opt. Ins. Optics and Photonics for Information Processing = Proc Spie Optics and Photonics for Information Processing = Proc. Spie. Optics and Photonics for Information Processing = P Soc Photo-opt Ins Optics and Photonics for Information Processing = P. Soc. Photo-opt. Ins. Optics and Photonics in Global Homeland Security Iii = P Soc Photo-opt Ins Optics and Photonics in Global Homeland Security Iii = P. Soc. Photo-opt. Ins. Optics and Photonics in Global Homeland Security Ii = P Soc Photo-opt Ins Optics and Photonics in Global Homeland Security Ii = P. Soc. Photo-opt. Ins. Optics and Photonics in Global Homeland Security Iv = Proc Spie Optics and Photonics in Global Homeland Security Iv = Proc. Spie. Optics and Photonics in Global Homeland Security Iv = P Soc Photo-opt Ins Optics and Photonics in Global Homeland Security Iv = P. Soc. Photo-opt. Ins. Optics and Photonics in Global Homeland Security = Proc Spie Optics and Photonics in Global Homeland Security = Proc. Spie. Optics and Photonics in Global Homeland Security = P Soc Photo-opt Ins Optics and Photonics in Global Homeland Security = P. Soc. Photo-opt. Ins. Optics and Photonics in Global Homeland Security V and Biometric Technology for Human Identification Vi = Proc Spie Optics and Photonics in Global Homeland Security V and Biometric Technology for Human Identification Vi = Proc. Spie. Optics and Photonics Letters = Opt. Photonics Lett. Optics and Spectroscopy = Opt Spectrosc+ Optics and Spectroscopy = Opt. Spectrosc. Optics and Spectroscopy = Opt. Spectrosc+.+ Optics and Spectroscopy-ussr = Opt Spectrosc-ussr Optics and Spectroscopy-ussr = Opt. Spectrosc-ussr. Optics Communication = Opt. Commun. Optics communications = Opt Commun Optics Communications = Opt Commun Optics Communications = Opt. Commun. Optics Education and Outreach = P Soc Photo-opt Ins Optics Education and Outreach = P. Soc. Photo-opt. Ins. Optics express = Opt Express Optics Express = Opt Express Optics Express = Opt. Express Optics for Computers : Architectures and Technologies = P Soc Photo-opt Ins Optics for Computers : Architectures and Technologies = P. Soc. Photo-opt. Ins. Optics for Euv, X-ray, and Gamma-ray Astronomy Iii = Proc Spie Optics for Euv, X-ray, and Gamma-ray Astronomy Iii = Proc. Spie. Optics for Euv, X-ray, and Gamma-ray Astronomy Iii = P Soc Photo-opt Ins Optics for Euv, X-ray, and Gamma-ray Astronomy Iii = P. Soc. Photo-opt. Ins. Optics for Euv, X-ray, and Gamma-ray Astronomy Ii = Proc Spie Optics for Euv, X-ray, and Gamma-ray Astronomy Ii = Proc. Spie. Optics for Euv, X-ray, and Gamma-ray Astronomy Ii = P Soc Photo-opt Ins Optics for Euv, X-ray, and Gamma-ray Astronomy Ii = P. Soc. Photo-opt. Ins. Optics for Euv, X-ray, and Gamma-ray Astronomy Iv = Proc Spie Optics for Euv, X-ray, and Gamma-ray Astronomy Iv = Proc. Spie. Optics for Euv, X-ray and Gamma-ray Astronomy = Proc Spie Optics for Euv, X-ray and Gamma-ray Astronomy = Proc. Spie. Optics for Euv, X-ray and Gamma-ray Astronomy = P Soc Photo-opt Ins Optics for Euv, X-ray and Gamma-ray Astronomy = P. Soc. Photo-opt. Ins. Optics for Fourth-generation X-ray Sources = P Soc Photo-opt Ins Optics for Fourth-generation X-ray Sources = P. Soc. Photo-opt. Ins. Optics for High-brightness Synchrotron Radiation Beamlines Ii = P Soc Photo-opt Ins Optics for High-brightness Synchrotron Radiation Beamlines Ii = P. Soc. Photo-opt. Ins. Optics for High-brightness Synchrotron Radiation Beamlines = P Soc Photo-opt Ins Optics for High-brightness Synchrotron Radiation Beamlines = P. Soc. Photo-opt. Ins. Optics for Natural Resources, Agriculture, and Foods Ii = Proc Spie Optics for Natural Resources, Agriculture, and Foods Ii = Proc. Spie. Optics for Natural Resources, Agriculture, and Foods Ii = P Soc Photo-opt Ins Optics for Natural Resources, Agriculture, and Foods Ii = P. Soc. Photo-opt. Ins. Optics for Natural Resources, Agriculture, and Foods = Proc Spie Optics for Natural Resources, Agriculture, and Foods = Proc. Spie. Optics for Natural Resources, Agriculture, and Foods = P Soc Photo-opt Ins Optics for Natural Resources, Agriculture, and Foods = P. Soc. Photo-opt. Ins. Optics for Protection of Man and Environment Against Natural and Technological Disasters = Opt Within Life Sci Optics for Protection of Man and Environment Against Natural and Technological Disasters = Opt. Within. Life. Sci. Optics for The Quality of Life, Pts 1 and 2 = Proc Spie Optics for The Quality of Life, Pts 1 and 2 = Proc. Spie. Optics for The Quality of Life, Pts 1 and 2 = P Soc Photo-opt Ins Optics for The Quality of Life, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optics, Illumination, and Image Sensing for Machine Vision Iv = P Soc Photo-opt Ins Optics, Illumination, and Image Sensing for Machine Vision Iv = P. Soc. Photo-opt. Ins. Optics, Illumination, and Image Sensing for Machine Vision Viii = P Soc Photo-opt Ins Optics, Illumination, and Image Sensing for Machine Vision Viii = P. Soc. Photo-opt. Ins. Optics, Illumination, and Image Sensing for Machine Vision Vii = P Soc Photo-opt Ins Optics, Illumination, and Image Sensing for Machine Vision Vii = P. Soc. Photo-opt. Ins. Optics, Illumination, and Image Sensing for Machine Vision Vi = P Soc Photo-opt Ins Optics, Illumination, and Image Sensing for Machine Vision Vi = P. Soc. Photo-opt. Ins. Optics Illumination, and Image Sensing for Machine Vision V = P Soc Photo-opt Ins Optics Illumination, and Image Sensing for Machine Vision V = P. Soc. Photo-opt. Ins. Optics in Agriculture and Forestry = P Soc Photo-opt Ins Optics in Agriculture and Forestry = P. Soc. Photo-opt. Ins. Optics in Agriculture, Forestry, and Biological Processing Ii = P Soc Photo-opt Ins Optics in Agriculture, Forestry, and Biological Processing Ii = P. Soc. Photo-opt. Ins. Optics in Agriculture, Forestry, and Biological Processing = P Soc Photo-opt Ins Optics in Agriculture, Forestry, and Biological Processing = P. Soc. Photo-opt. Ins. Optics in Agriculture = P Soc Photo-opt Ins Optics in Agriculture = P. Soc. Photo-opt. Ins. Optics in Astrophysics = Nato Sci Ser Ii-math Optics in Astrophysics = Nato. Sci. Ser. Ii-math. Optics in Astrophysics = Nato Sci Ser Ii Math Optics in Astrophysics = Nato. Sci. Ser. Ii. Math. Optics in Atmospheric Propagation, Adaptive Systems, and Lidar Techniques for Remote Sensing = P Soc Photo-opt Ins Optics in Atmospheric Propagation, Adaptive Systems, and Lidar Techniques for Remote Sensing = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Iii = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Iii = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Ii = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Ii = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Iv = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Iv = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Ix = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Ix = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Vii = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Vii = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Vi = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Vi = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems V = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems V = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems Xiii = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems Xiii = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Adaptive Systems X = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Adaptive Systems X = P. Soc. Photo-opt. Ins. Optics in Atmospheric Propagation and Random Phenomena = P Soc Photo-opt Ins Optics in Atmospheric Propagation and Random Phenomena = P. Soc. Photo-opt. Ins. Optics in Bone Biology and Diagnostics = P Soc Photo-opt Ins Optics in Bone Biology and Diagnostics = P. Soc. Photo-opt. Ins. Optics in Complex Systems = P Soc Photo-opt Ins Optics in Complex Systems = P. Soc. Photo-opt. Ins. Optics in Computing 2000 = Proc Spie Optics in Computing 2000 = Proc. Spie. Optics in Computing 2000 = P Soc Photo-opt Ins Optics in Computing 2000 = P. Soc. Photo-opt. Ins. Optics in Computing 98 = P Soc Photo-opt Ins Optics in Computing 98 = P. Soc. Photo-opt. Ins. Optics in Health Care and Biomedical Optics: Diagnostics and Treatment Ii , Pts 1 and 2 = Proc Spie Optics in Health Care and Biomedical Optics: Diagnostics and Treatment Ii , Pts 1 and 2 = Proc. Spie. Optics in Health Care and Biomedical Optics: Diagnostics and Treatment Ii , Pts 1 and 2 = P Soc Photo-opt Ins Optics in Health Care and Biomedical Optics: Diagnostics and Treatment Ii , Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optics in Health Care and Biomedical Optics: Diagnostics and Treatment = P Soc Photo-opt Ins Optics in Health Care and Biomedical Optics: Diagnostics and Treatment = P. Soc. Photo-opt. Ins. Optics in Health Care and Biomedical Optics Iii = P Soc Photo-opt Ins Optics in Health Care and Biomedical Optics Iii = P. Soc. Photo-opt. Ins. Optics in Health Care and Biomedical Optics Iv = P Soc Photo-opt Ins Optics in Health Care and Biomedical Optics Iv = P. Soc. Photo-opt. Ins. Optics in Medicine, Biology and Environmental Research = Opt Within Life Sci Optics in Medicine, Biology and Environmental Research = Opt. Within. Life. Sci. Optics in Tissue Engineering and Regenerative Medicine Iii = P Soc Photo-opt Ins Optics in Tissue Engineering and Regenerative Medicine Iii = P. Soc. Photo-opt. Ins. Optics in Tissue Engineering and Regenerative Medicine Ii = Proc Spie Optics in Tissue Engineering and Regenerative Medicine Ii = Proc. Spie. Optics in Tissue Engineering and Regenerative Medicine Ii = P Soc Photo-opt Ins Optics in Tissue Engineering and Regenerative Medicine Ii = P. Soc. Photo-opt. Ins. Optics in Tissue Engineering and Regenerative Medicine Iv = Pro Biomed Opt Imag Optics in Tissue Engineering and Regenerative Medicine Iv = Pro. Biomed. Opt. Imag. Optics in Tissue Engineering and Regenerative Medicine = P Soc Photo-opt Ins Optics in Tissue Engineering and Regenerative Medicine = P. Soc. Photo-opt. Ins. Optics & Laser Technology = Opt. Laser Technol. Optics letters = Opt Lett Optics Letters = Opt Lett Optics Letters = Opt. Lett. Optics of Biological Particles = Nato Sci Ser Ii Math Optics of Biological Particles = Nato. Sci. Ser. Ii. Math. Optics of Charged Particle Analyzers = Adv Imag Elect Phys Optics of Charged Particle Analyzers = Adv. Imag. Elect. Phys. Optics of Cosmic Dust = Nato Sci Ser Ii-math Optics of Cosmic Dust = Nato. Sci. Ser. Ii-math. Optics of Cosmic Dust = Nato Sci Ser Ii Math Optics of Cosmic Dust = Nato. Sci. Ser. Ii. Math. Optics of Crystals = P Soc Photo-opt Ins Optics of Crystals = P. Soc. Photo-opt. Ins. Optics of The Air-sea Interface : Theory and Measurement = P Soc Photo-opt Ins Optics of The Air-sea Interface : Theory and Measurement = P. Soc. Photo-opt. Ins. Optics, Photonics, and Digital Technologies for Multimedia Applications = Proc Spie Optics, Photonics, and Digital Technologies for Multimedia Applications = Proc. Spie. Optics, Photonics, and Digital Technologies for Multimedia Applications = P Soc Photo-opt Ins Optics, Photonics, and Digital Technologies for Multimedia Applications = P. Soc. Photo-opt. Ins. Optics & Photonics News = Opt Photonics News Optics & Photonics News = Opt. Photonics News Optics Within Life Sciences = Opt Within Life Sci Optics Within Life Sciences = Opt. Within Life Sci. Optika '98 - 5th Congress On Modern Optics = P Soc Photo-opt Ins Optika '98 - 5th Congress On Modern Optics = P. Soc. Photo-opt. Ins. Optika i Spektroskopiya = Opt. Spektrosk. Optika I Spektroskopiya = Opt Spektrosk+ Optika I Spektroskopiya = Opt. Spektrosk+.+ Optiko-Mekhanicheskaya Promyshlennost = Opt.-Mekh. Prom-st. Optik = Optik Optim 2010: Proceedings of The 12th International Conference On Optimization of Electrical and Electronic Equipment, Pts I-iv = P Int Conf Optim El Optim 2010: Proceedings of The 12th International Conference On Optimization of Electrical and Electronic Equipment, Pts I-iv = P. Int. Conf. Optim El. Optimal Algorithms = Lect Notes Comput Sc Optimal Algorithms = Lect. Notes. Comput. Sc. Optimal Control and Dynamic Games: Applications in Finance, Management Science and Economics = Adv Comput Manag Sci Optimal Control and Dynamic Games: Applications in Finance, Management Science and Economics = Adv. Comput. Manag. Sci. Optimal Control Applications & Methods = Optimal Control Appl. Methods Optimal Control Applications & Methods = Optim Contr Appl Met Optimal Control Applications & Methods = Optim. Contr. Appl. Met. Optimal Control = Int S Num M Optimal Control = Int. S. Num. M. Optimal Control Models in Finance: A New Computational Approach = Appl Optim Optimal Control Models in Finance: A New Computational Approach = Appl. Optim. Optimal Control of Complex Structures = Int Ser Numer Math Optimal Control of Complex Structures = Int. Ser. Numer. Math. Optimal Control of Complex Structures = Int S Num M Optimal Control of Complex Structures = Int. S. Num. M. Optimal Control of Constrained Piecewise Affine Systems = Lect Notes Contr Inf Optimal Control of Constrained Piecewise Affine Systems = Lect. Notes. Contr. Inf. Optimal Control of Coupled Systems of Partial Differential Equations = Int Ser Numer Math Optimal Control of Coupled Systems of Partial Differential Equations = Int. Ser. Numer. Math. Optimal Control of Differential Equations = Lect Notes Pure Appl Optimal Control of Differential Equations = Lect. Notes. Pure. Appl. Optimal Control of Partial Differential Equations = Int Ser Numer Math Optimal Control of Partial Differential Equations = Int. Ser. Numer. Math. Optimal Control of Partial Differential Equations = Int S Num M Optimal Control of Partial Differential Equations = Int. S. Num. M. Optimal Control of Partial Differential Equations = Lect Notes Contr Inf Optimal Control of Partial Differential Equations = Lect. Notes. Contr. Inf. Optimal Control of Wind Energy Systems: Towards A Global Approach = Adv Ind Control Optimal Control of Wind Energy Systems: Towards A Global Approach = Adv. Ind. Control Optimal Control, Stabilizaton and Nonsmooth Analysis = Lect Notes Contr Inf Optimal Control, Stabilizaton and Nonsmooth Analysis = Lect. Notes. Contr. Inf. Optimal Control: Weakly Coupled Systems and Applications = Autom Control Eng Se Optimal Control: Weakly Coupled Systems and Applications = Autom. Control. Eng. Se. Optimal Design and Control = Prog Syst C Optimal Design and Control = Prog. Syst. C. Optimal Design and Related Areas in Optimization and Statistics = Springer Optim Appl Optimal Design and Related Areas in Optimization and Statistics = Springer. Optim. Appl. Optimal Design of Experiments = Class Appl Math Optimal Design of Experiments = Class. Appl. Math. Optimal Domain and Integral Extension of Operators: Acting in Function Spaces = Oper Theory Adv Appl Optimal Domain and Integral Extension of Operators: Acting in Function Spaces = Oper. Theory. Adv. Appl. Optimal Dose Identification = Int Congr Ser Optimal Dose Identification = Int. Congr. Ser. Optimal Exploitation of Marginal Mediterranean Areas By Extensive Ruminant Production Systems = Eaap Public Optimal Exploitation of Marginal Mediterranean Areas By Extensive Ruminant Production Systems = Eaap. Public. Optimal Feedback Control = Lect Notes Contr Inf Optimal Feedback Control = Lect. Notes. Contr. Inf. Optimal Interprocedural Program Optimization = Lect Notes Comput Sc Optimal Interprocedural Program Optimization = Lect. Notes. Comput. Sc. Optimality-theoretic Syntax = Lang Speech & Commun Optimality-theoretic Syntax = Lang. Speech. &. Commun. Optimality Theory and Pragmatics = Palg Stud Pragm Lang Optimality Theory and Pragmatics = Palg. Stud. Pragm. Lang. Optimal Linear Controller Design for Periodic Inputs = Lect Notes Contr Inf Optimal Linear Controller Design for Periodic Inputs = Lect. Notes. Contr. Inf. Optimal Management of Upper Gastrointestinal Bleeding = Res Clin Forums Optimal Management of Upper Gastrointestinal Bleeding = Res. Clin. Forums. Optimal Models and Methods With Fuzzy Quantities = Stud Fuzz Soft Comp Optimal Models and Methods With Fuzzy Quantities = Stud. Fuzz. Soft. Comp. Optimal Patient Management With Botulinum Toxins: Evidence and Experience = Roy S Med S Optimal Patient Management With Botulinum Toxins: Evidence and Experience = Roy. S. Med. S. Optimal Quadratic Programming Algorithms: With Applications to Variational Inequalities = Springer Ser Optim A Optimal Quadratic Programming Algorithms: With Applications to Variational Inequalities = Springer. Ser. Optim. A. Optimal Shape Design = Lect Notes Math Optimal Shape Design = Lect. Notes. Math. Optimal Time-domain Noise Reduction Filters: A Theoretical Study = Springerbriefs Elect Optimal Time-domain Noise Reduction Filters: A Theoretical Study = Springerbriefs. Elect. Optimal Transportation and Applications = Lect Notes Math Optimal Transportation and Applications = Lect. Notes. Math. Optimal Transportation Networks: Models and Theory = Lect Notes Math Optimal Transportation Networks: Models and Theory = Lect. Notes. Math. Optimal Transport: Old and New = Grundlehr Math Wiss Optimal Transport: Old and New = Grundlehr. Math. Wiss. Optimal Urban Networks Via Mass Transportation = Lect Notes Math Optimal Urban Networks Via Mass Transportation = Lect. Notes. Math. Optimierung Des Futterwertes Von Mais Und Maisprodukten = Landbauforsch-vti Ag Optimierung Des Futterwertes Von Mais Und Maisprodukten = Landbauforsch-vti. Ag. Optimisation, Econometric and Financial Analysis = Adv Comput Manag Sci Optimisation, Econometric and Financial Analysis = Adv. Comput. Manag. Sci. Optimising New Modes of Assessment: in Search of Qualities and Standards = Innov Chang Prof Edu Optimising New Modes of Assessment: in Search of Qualities and Standards = Innov. Chang. Prof. Edu. Optimising Sweet Taste in Foods = Woodhead Food Ser Optimising Sweet Taste in Foods = Woodhead. Food. Ser. Optimization and Control of Bilinear Systems: Theory, Algorithms, and Applications = Springer Ser Optim A Optimization and Control of Bilinear Systems: Theory, Algorithms, and Applications = Springer. Ser. Optim. A. Optimization and Control With Applications = Appl Optim Optimization and Control With Applications = Appl. Optim. Optimization and Control With Applications = Appl Optimizat Optimization and Control With Applications = Appl. Optimizat. Optimization and Cooperative Control Strategies = Lect Notes Contr Inf Optimization and Cooperative Control Strategies = Lect. Notes. Contr. Inf. Optimization and Engineering = Optim Eng Optimization and Engineering = Optim. Eng. Optimization and Industry: New Frontiers = Appl Optim Optimization and Industry: New Frontiers = Appl. Optim. Optimization and Industry: New Frontiers = Appl Optimizat Optimization and Industry: New Frontiers = Appl. Optimizat. Optimization and Logistics Challenges in The Enterprise = Springer Ser Optim A Optimization and Logistics Challenges in The Enterprise = Springer. Ser. Optim. A. Optimization and Systems Biology = Lect Notes Oper Res Optimization and Systems Biology = Lect. Notes. Oper. Res. Optimization and Systems Biology, Proceedings = Lect Notes Oper Res Optimization and Systems Biology, Proceedings = Lect. Notes. Oper. Res. Optimization-based Computer-aided Modelling and Design = Lect Notes Contr Inf Optimization-based Computer-aided Modelling and Design = Lect. Notes. Contr. Inf. Optimization Based Data Mining: Theory and Applications = Adv Inform Knowl Pro Optimization Based Data Mining: Theory and Applications = Adv. Inform. Knowl. Pro. Optimization for Decision Making = Int Ser Oper Res Man Optimization for Decision Making = Int. Ser. Oper. Res. Man. Optimization in Economics and Finance = Dynam Mod Econ Econ Optimization in Economics and Finance = Dynam. Mod. Econ. Econ. Optimization in Food Engineering = Contemp Food Eng Optimization in Food Engineering = Contemp. Food Eng. Optimization in Medicine and Biology = Eng Manag Innov Ser Optimization in Medicine and Biology = Eng. Manag. Innov. Ser. Optimization in Medicine = Springer Ser Optim A Optimization in Medicine = Springer. Ser. Optim. A. Optimization in Public Transportation = Springer Ser Optim A Optimization in Public Transportation = Springer. Ser. Optim. A. Optimization in The Energy Industry = Energ Syst Optimization in The Energy Industry = Energ. Syst. Optimization = Lect Notes Econ Math Optimization = Lect. Notes. Econ. Math. Optimization / = Lect Notes Math Optimization / = Lect. Notes. Math. Optimization Letters = Optim Lett Optimization Letters = Optim. Lett. Optimization Methods and Software = Optim. Methods Softw. Optimization Methods & Software = Optim Method Softw Optimization Methods & Software = Optim. Method. Softw. Optimization of Large Structural Systems, Vols 1 and 2 = Nato Adv Sci Inst Se Optimization of Large Structural Systems, Vols 1 and 2 = Nato. Adv. Sci. Inst. Se. Optimization of Sql Queries for Parallel Machines = Lect Notes Comput Sc Optimization of Sql Queries for Parallel Machines = Lect. Notes. Comput. Sc. Optimization, Optimal Control and Partial Differential Equations = Int S Num M Optimization, Optimal Control and Partial Differential Equations = Int. S. Num. M. Optimization = Optimization Optimization = Optimization Optimization: Structure and Applications = Springer Ser Optim A Optimization: Structure and Applications = Springer. Ser. Optim. A. Optimization Theory and Methods: Nonlinear Programming = Springer Ser Optim A Optimization Theory and Methods: Nonlinear Programming = Springer. Ser. Optim. A. Optimization Theory = Appl Optim Optimization Theory = Appl. Optim. Optimization Theory = Appl Optimizat Optimization Theory = Appl. Optimizat. Optimization With Multivalued Mappings:theory, Applications, and Algorithms = Springer Ser Optim A Optimization With Multivalued Mappings:theory, Applications, and Algorithms = Springer. Ser. Optim. A. Optimization With Pde Constraints = Math Model-theor App Optimization With Pde Constraints = Math. Model-theor. App. Optimizing Human Capital With A Strategic Project Office: Select, Train, Measure, and Reward People for Organization Success = Ctr Bus Pract Optimizing Human Capital With A Strategic Project Office: Select, Train, Measure, and Reward People for Organization Success = Ctr. Bus. Pract. Optimizing Post-earthquake Lifeline System Reliability = Tech Coun L Optimizing Post-earthquake Lifeline System Reliability = Tech. Coun. L. Optimizing Scientific Return for Astronomy Through Information Technologies = Proc Spie Optimizing Scientific Return for Astronomy Through Information Technologies = Proc. Spie. Optimizing Scientific Return for Astronomy Through Information Technologies = P Soc Photo-opt Ins Optimizing Scientific Return for Astronomy Through Information Technologies = P. Soc. Photo-opt. Ins. Optimizing Talent: What Every Leader and Manager Needs to Know to Sustain The Ultimate Workforce = Cont Trend Organ Dev Optimizing Talent: What Every Leader and Manager Needs to Know to Sustain The Ultimate Workforce = Cont. Trend. Organ. Dev. Optimizing The Drug-like Properties of Leads in Drug Discovery = Biotechnol Pharm Asp Optimizing The Drug-like Properties of Leads in Drug Discovery = Biotechnol. Pharm. Asp. Optimizing The Drug-like Properties of Leads in Drug Discovery = Biotech Pharm Aspect Optimizing The Drug-like Properties of Leads in Drug Discovery = Biotech. Pharm. Aspect. Optimizing The Management of Genital Herpes = Roy S Med S Optimizing The Management of Genital Herpes = Roy. S. Med. S. Optimum Design 2000 = Noncon Optim Its App Optimum Design 2000 = Noncon. Optim. Its. App. Optimum Design 2000 = Nonconvex Optim Optimum Design 2000 = Nonconvex. Optim. Option Prices As Probabilities = Springer Financ Option Prices As Probabilities = Springer. Financ. Options for Britain Ii: Cross Cutting Policy Issues - Changes and Challenges = Polit Q Sp Iss Ser Options for Britain Ii: Cross Cutting Policy Issues - Changes and Challenges = Polit. Q. Sp. Iss. Ser. Options for policy and practice = Options Policy Pract Options for The Control of Influenza Iii = Int Congr Ser Options for The Control of Influenza Iii = Int. Congr. Ser. Options for The Control of Influenza Ii = Int Congr Ser Options for The Control of Influenza Ii = Int. Congr. Ser. Options for The Control of Influenza Iv = Int Congr Ser Options for The Control of Influenza Iv = Int. Congr. Ser. Options for The Control of Influenza V = Int Congr Ser Options for The Control of Influenza V = Int. Congr. Ser. Optiques: The Science of The Eye and The Birth of Modern French Fiction = Crit Author Iss Optiques: The Science of The Eye and The Birth of Modern French Fiction = Crit. Author. Iss. Opto-contact: Workshop On Technology Transfers, Start-up Opportunities, and Strategic Alliances = P Soc Photo-opt Ins Opto-contact: Workshop On Technology Transfers, Start-up Opportunities, and Strategic Alliances = P. Soc. Photo-opt. Ins. Optoelectric Interconnects = P Soc Photo-opt Ins Optoelectric Interconnects = P. Soc. Photo-opt. Ins. Optoelectronic and Elctronic Sensors Iv = Proc Spie Optoelectronic and Elctronic Sensors Iv = Proc. Spie. Optoelectronic and Elctronic Sensors Iv = P Soc Photo-opt Ins Optoelectronic and Elctronic Sensors Iv = P. Soc. Photo-opt. Ins. Optoelectronic and Electronic Sensors Iii = P Soc Photo-opt Ins Optoelectronic and Electronic Sensors Iii = P. Soc. Photo-opt. Ins. Optoelectronic and Electronic Sensors Ii = P Soc Photo-opt Ins Optoelectronic and Electronic Sensors Ii = P. Soc. Photo-opt. Ins. Optoelectronic and Electronic Sensors = P Soc Photo-opt Ins Optoelectronic and Electronic Sensors = P. Soc. Photo-opt. Ins. Optoelectronic and Electronic Sensors Vi = P Soc Photo-opt Ins Optoelectronic and Electronic Sensors Vi = P. Soc. Photo-opt. Ins. Optoelectronic and Electronic Sensors V = Proc Spie Optoelectronic and Electronic Sensors V = Proc. Spie. Optoelectronic and Electronic Sensors V = P Soc Photo-opt Ins Optoelectronic and Electronic Sensors V = P. Soc. Photo-opt. Ins. Optoelectronic and Hybrid Optical/digital Systems for Image and Signal Processing = P Soc Photo-opt Ins Optoelectronic and Hybrid Optical/digital Systems for Image and Signal Processing = P. Soc. Photo-opt. Ins. Optoelectronic and Wireless Data Management, Processing, Storage, and Retrieval = Proc Spie Optoelectronic and Wireless Data Management, Processing, Storage, and Retrieval = Proc. Spie. Optoelectronic and Wireless Data Management, Processing, Storage, and Retrieval = P Soc Photo-opt Ins Optoelectronic and Wireless Data Management, Processing, Storage, and Retrieval = P. Soc. Photo-opt. Ins. Optoelectronic Component Technologies = P Soc Photo-opt Ins Optoelectronic Component Technologies = P. Soc. Photo-opt. Ins. Optoelectronic Devices and Applications = P Soc Photo-opt Ins Optoelectronic Devices and Applications = P. Soc. Photo-opt. Ins. Optoelectronic Devices and Integration Iii = Proc Spie Optoelectronic Devices and Integration Iii = Proc. Spie. Optoelectronic Devices and Integration Iii = P Soc Photo-opt Ins Optoelectronic Devices and Integration Iii = P. Soc. Photo-opt. Ins. Optoelectronic Devices and Integration Ii = Proc Spie Optoelectronic Devices and Integration Ii = Proc. Spie. Optoelectronic Devices and Integration Ii = P Soc Photo-opt Ins Optoelectronic Devices and Integration Ii = P. Soc. Photo-opt. Ins. Optoelectronic Devices and Integration, Pts 1 and 2 = Proc Spie Optoelectronic Devices and Integration, Pts 1 and 2 = Proc. Spie. Optoelectronic Devices and Integration, Pts 1 and 2 = P Soc Photo-opt Ins Optoelectronic Devices and Integration, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optoelectronic Devices: Physics, Fabrication, and Application Iii = Proc Spie Optoelectronic Devices: Physics, Fabrication, and Application Iii = Proc. Spie. Optoelectronic Devices: Physics, Fabrication, and Application Iii = P Soc Photo-opt Ins Optoelectronic Devices: Physics, Fabrication, and Application Iii = P. Soc. Photo-opt. Ins. Optoelectronic Devices: Physics, Fabrication, and Application Iv = P Soc Photo-opt Ins Optoelectronic Devices: Physics, Fabrication, and Application Iv = P. Soc. Photo-opt. Ins. Optoelectronic Imaging and Multimedia Technology = P Soc Photo-opt Ins Optoelectronic Imaging and Multimedia Technology = P. Soc. Photo-opt. Ins. Optoelectronic Information Processing: Optics for Information Systems = Crit Rev Op Optoelectronic Information Processing: Optics for Information Systems = Crit. Rev. Op. Optoelectronic Information Systems and Processing = P Soc Photo-opt Ins Optoelectronic Information Systems and Processing = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuit Materials, Physics, and Devices = P Soc Photo-opt Ins Optoelectronic Integrated Circuit Materials, Physics, and Devices = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Ii = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Ii = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Iv = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Iv = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Ix = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Ix = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits = P Soc Photo-opt Ins Optoelectronic Integrated Circuits = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Viii = Proc Spie Optoelectronic Integrated Circuits Viii = Proc. Spie. Optoelectronic Integrated Circuits Viii = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Viii = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Vii = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Vii = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Vi = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Vi = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits Xii = Proc Spie Optoelectronic Integrated Circuits Xii = Proc. Spie. Optoelectronic Integrated Circuits Xi = P Soc Photo-opt Ins Optoelectronic Integrated Circuits Xi = P. Soc. Photo-opt. Ins. Optoelectronic Integrated Circuits X = Proc Spie Optoelectronic Integrated Circuits X = Proc. Spie. Optoelectronic Integrated Circuits X = P Soc Photo-opt Ins Optoelectronic Integrated Circuits X = P. Soc. Photo-opt. Ins. Optoelectronic Integration On Silicon Ii = P Soc Photo-opt Ins Optoelectronic Integration On Silicon Ii = P. Soc. Photo-opt. Ins. Optoelectronic Integration On Silicon = Proc Spie Optoelectronic Integration On Silicon = Proc. Spie. Optoelectronic Integration On Silicon = P Soc Photo-opt Ins Optoelectronic Integration On Silicon = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects and Component Integration Ix = Proc Spie Optoelectronic Interconnects and Component Integration Ix = Proc. Spie. Optoelectronic Interconnects and Component Integration Ix = P Soc Photo-opt Ins Optoelectronic Interconnects and Component Integration Ix = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects and Packaging Iv = P Soc Photo-opt Ins Optoelectronic Interconnects and Packaging Iv = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects Iii = P Soc Photo-opt Ins Optoelectronic Interconnects Iii = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects Ii = P Soc Photo-opt Ins Optoelectronic Interconnects Ii = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects, Integrated Circuits, and Packaging = Proc Spie Optoelectronic Interconnects, Integrated Circuits, and Packaging = Proc. Spie. Optoelectronic Interconnects, Integrated Circuits, and Packaging = P Soc Photo-opt Ins Optoelectronic Interconnects, Integrated Circuits, and Packaging = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects Viii = P Soc Photo-opt Ins Optoelectronic Interconnects Viii = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects Vii; Photonics Packaging and Integration Ii = Proc Spie Optoelectronic Interconnects Vii; Photonics Packaging and Integration Ii = Proc. Spie. Optoelectronic Interconnects Vii; Photonics Packaging and Integration Ii = P Soc Photo-opt Ins Optoelectronic Interconnects Vii; Photonics Packaging and Integration Ii = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects Vi = P Soc Photo-opt Ins Optoelectronic Interconnects Vi = P. Soc. Photo-opt. Ins. Optoelectronic Interconnects V = P Soc Photo-opt Ins Optoelectronic Interconnects V = P. Soc. Photo-opt. Ins. Optoelectronic Intergrated Circuits and Packaging V = P Soc Photo-opt Ins Optoelectronic Intergrated Circuits and Packaging V = P. Soc. Photo-opt. Ins. Optoelectronic Materials and Devices for Optical Communications = Proc Spie Optoelectronic Materials and Devices for Optical Communications = Proc. Spie. Optoelectronic Materials and Devices for Optical Communications = P Soc Photo-opt Ins Optoelectronic Materials and Devices for Optical Communications = P. Soc. Photo-opt. Ins. Optoelectronic Materials and Devices Ii = Proc Spie Optoelectronic Materials and Devices Ii = Proc. Spie. Optoelectronic Materials and Devices Ii = P Soc Photo-opt Ins Optoelectronic Materials and Devices Ii = P. Soc. Photo-opt. Ins. Optoelectronic Materials and Devices = Proc Spie Optoelectronic Materials and Devices = Proc. Spie. Optoelectronic Materials and Devices = P Soc Photo-opt Ins Optoelectronic Materials and Devices = P. Soc. Photo-opt. Ins. Optoelectronic Materials and Devices V = Proc Spie Optoelectronic Materials and Devices V = Proc. Spie. Optoelectronic Materials and Technology in The Information Age = Ceram Trans Optoelectronic Materials and Technology in The Information Age = Ceram. Trans. Optoelectronic Materials: Ordering, Composition Modulation, and Self-assembled Structures = Mater Res Soc Symp P Optoelectronic Materials: Ordering, Composition Modulation, and Self-assembled Structures = Mater. Res. Soc. Symp. P. Optoelectronic Materials, Pts 1and 2 = Mater Sci Forum Optoelectronic Materials, Pts 1and 2 = Mater. Sci. Forum. Optoelectronic Metrology = P Soc Photo-opt Ins Optoelectronic Metrology = P. Soc. Photo-opt. Ins. Optoelectronic Packaging = P Soc Photo-opt Ins Optoelectronic Packaging = P. Soc. Photo-opt. Ins. Optoelectronics and Advanced Materials-rapid Communications = Optoelectron Adv Mat Optoelectronics and Advanced Materials-rapid Communications = Optoelectron. Adv. Mat. Optoelectronics and Advanced Materials, Rapid Communications = Optoelectron. Adv. Mater. Rapid Commun. Optoelectronics and Applications in Industry and Medicine = P Soc Photo-opt Ins Optoelectronics and Applications in Industry and Medicine = P. Soc. Photo-opt. Ins. Optoelectronics Applications in Medicine, Food Technology and Environmental Protection = Adv Las Med Optoelectronics Applications in Medicine, Food Technology and Environmental Protection = Adv. Las. Med. Optoelectronics-devices and Technologies = Optoelectron-devices Optoelectronics-devices and Technologies = Optoelectron-devices. Optoelectronics for Environmental Science = E Maj Int S Optoelectronics for Environmental Science = E. Maj. Int. S. Optoelectronic Signal Processing for Phased-array Antennas Iv = P Soc Photo-opt Ins Optoelectronic Signal Processing for Phased-array Antennas Iv = P. Soc. Photo-opt. Ins. Optoelectronics: Infrared-visible-ultraviolet Devices and Applications, Second Edition = Opt Sci Eng-crc Optoelectronics: Infrared-visible-ultraviolet Devices and Applications, Second Edition = Opt. Sci. Eng-crc. Optoelectronics of Group-iv-based Materials = Mater Res Soc Symp P Optoelectronics of Group-iv-based Materials = Mater. Res. Soc. Symp. P. Opto-electronics = Opto-electronics Opto-electronics Review = Opto-electron Rev Opto-electronics Review = Opto-electron. Rev. Opto-Electronics Review = Opto-Electron. Rev. Optoeletronic Integrated Circuits and Packaging Iii = P Soc Photo-opt Ins Optoeletronic Integrated Circuits and Packaging Iii = P. Soc. Photo-opt. Ins. Optoeletronic Materials and Devices, Pts 1 and 2 = Proc Spie Optoeletronic Materials and Devices, Pts 1 and 2 = Proc. Spie. Optoeletronic Materials and Devices, Pts 1 and 2 = P Soc Photo-opt Ins Optoeletronic Materials and Devices, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optofluidics = P Soc Photo-opt Ins Optofluidics = P. Soc. Photo-opt. Ins. Optogalvanic Spectroscopy = Inst Phys Conf Ser Optogalvanic Spectroscopy = Inst. Phys. Conf. Ser. Opto-ireland 2002: Optics and Photonics Technologies and Applications, Pts 1 and 2 = Proc Spie Opto-ireland 2002: Optics and Photonics Technologies and Applications, Pts 1 and 2 = Proc. Spie. Opto-ireland 2002: Optics and Photonics Technologies and Applications, Pts 1 and 2 = P Soc Photo-opt Ins Opto-ireland 2002: Optics and Photonics Technologies and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Opto-ireland 2005: Imaging and Vision = Proc Spie Opto-ireland 2005: Imaging and Vision = Proc. Spie. Opto-ireland 2005: Imaging and Vision = P Soc Photo-opt Ins Opto-ireland 2005: Imaging and Vision = P. Soc. Photo-opt. Ins. Opto-ireland 2005: Nanotechnology and Nanophotonics = Proc Spie Opto-ireland 2005: Nanotechnology and Nanophotonics = Proc. Spie. Opto-ireland 2005: Nanotechnology and Nanophotonics = P Soc Photo-opt Ins Opto-ireland 2005: Nanotechnology and Nanophotonics = P. Soc. Photo-opt. Ins. Opto-ireland 2005: Optical Sensing and Spectroscopy = Proc Spie Opto-ireland 2005: Optical Sensing and Spectroscopy = Proc. Spie. Opto-ireland 2005: Optical Sensing and Spectroscopy = P Soc Photo-opt Ins Opto-ireland 2005: Optical Sensing and Spectroscopy = P. Soc. Photo-opt. Ins. Opto-ireland 2005: Optoelectronics, Photonic Devices, and Optical Networks = Proc Spie Opto-ireland 2005: Optoelectronics, Photonic Devices, and Optical Networks = Proc. Spie. Opto-ireland 2005: Optoelectronics, Photonic Devices, and Optical Networks = P Soc Photo-opt Ins Opto-ireland 2005: Optoelectronics, Photonic Devices, and Optical Networks = P. Soc. Photo-opt. Ins. Opto-ireland 2005: Photonic Engineering = Proc Spie Opto-ireland 2005: Photonic Engineering = Proc. Spie. Opto-ireland 2005: Photonic Engineering = P Soc Photo-opt Ins Opto-ireland 2005: Photonic Engineering = P. Soc. Photo-opt. Ins. Optomechanical and Precision Instrument Design = P Soc Photo-opt Ins Optomechanical and Precision Instrument Design = P. Soc. Photo-opt. Ins. Optomechanical Design and Engineering 2001 = P Soc Photo-opt Ins Optomechanical Design and Engineering 2001 = P. Soc. Photo-opt. Ins. Optomechanical Design and Engineering 2002 = P Soc Photo-opt Ins Optomechanical Design and Engineering 2002 = P. Soc. Photo-opt. Ins. Optomechanical Design and Precision Instruments = P Soc Photo-opt Ins Optomechanical Design and Precision Instruments = P. Soc. Photo-opt. Ins. Optomechanical Design = P Soc Photo-opt Ins Optomechanical Design = P. Soc. Photo-opt. Ins. Optomechanical Engineering 2000 = P Soc Photo-opt Ins Optomechanical Engineering 2000 = P. Soc. Photo-opt. Ins. Optomechanical Engineering and Vibration Control = Proc Spie Optomechanical Engineering and Vibration Control = Proc. Spie. Optomechanical Engineering and Vibration Control = P Soc Photo-opt Ins Optomechanical Engineering and Vibration Control = P. Soc. Photo-opt. Ins. Optomechanical Technologies for Astronomy, Pts 1 and 2 = Proc Spie Optomechanical Technologies for Astronomy, Pts 1 and 2 = Proc. Spie. Optomechanical Technologies for Astronomy, Pts 1 and 2 = P Soc Photo-opt Ins Optomechanical Technologies for Astronomy, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Optomechanics 2003 = P Soc Photo-opt Ins Optomechanics 2003 = P. Soc. Photo-opt. Ins. Optomechanics and Dimensional Stability = P Soc Photo-opt Ins Optomechanics and Dimensional Stability = P. Soc. Photo-opt. Ins. Optomechatronic Actuators and Manipulation Iii = Proc Spie Optomechatronic Actuators and Manipulation Iii = Proc. Spie. Optomechatronic Actuators and Manipulation Iii = P Soc Photo-opt Ins Optomechatronic Actuators and Manipulation Iii = P. Soc. Photo-opt. Ins. Optomechatronic Actuators, Manipulation, and Systems Control = Proc Spie Optomechatronic Actuators, Manipulation, and Systems Control = Proc. Spie. Optomechatronic Actuators, Manipulation, and Systems Control = P Soc Photo-opt Ins Optomechatronic Actuators, Manipulation, and Systems Control = P. Soc. Photo-opt. Ins. Optomechatronic Computer-vision Systems Ii = P Soc Photo-opt Ins Optomechatronic Computer-vision Systems Ii = P. Soc. Photo-opt. Ins. Optomechatronic Micro/nano Components, Devices, and Systems = Proc Spie Optomechatronic Micro/nano Components, Devices, and Systems = Proc. Spie. Optomechatronic Micro/nano Components, Devices, and Systems = P Soc Photo-opt Ins Optomechatronic Micro/nano Components, Devices, and Systems = P. Soc. Photo-opt. Ins. Optomechatronic Micro/nano Devices and Components Iii = P Soc Photo-opt Ins Optomechatronic Micro/nano Devices and Components Iii = P. Soc. Photo-opt. Ins. Optomechatronic Micro/nano Devices and Components Ii = Proc Spie Optomechatronic Micro/nano Devices and Components Ii = Proc. Spie. Optomechatronic Micro/nano Devices and Components Ii = P Soc Photo-opt Ins Optomechatronic Micro/nano Devices and Components Ii = P. Soc. Photo-opt. Ins. Optomechatronic Sensors, Actuators, and Control = Proc Spie Optomechatronic Sensors, Actuators, and Control = Proc. Spie. Optomechatronic Sensors, Actuators, and Control = P Soc Photo-opt Ins Optomechatronic Sensors, Actuators, and Control = P. Soc. Photo-opt. Ins. Optomechatronic Sensors and Instrumentation Iii = Proc Spie Optomechatronic Sensors and Instrumentation Iii = Proc. Spie. Optomechatronic Sensors and Instrumentation Iii = P Soc Photo-opt Ins Optomechatronic Sensors and Instrumentation Iii = P. Soc. Photo-opt. Ins. Optomechatronic Sensors, Instrumentation, and Computer-vision Systems = Proc Spie Optomechatronic Sensors, Instrumentation, and Computer-vision Systems = Proc. Spie. Optomechatronic Sensors, Instrumentation, and Computer-vision Systems = P Soc Photo-opt Ins Optomechatronic Sensors, Instrumentation, and Computer-vision Systems = P. Soc. Photo-opt. Ins. Optomechatronic Systems Control Iii = Proc Spie Optomechatronic Systems Control Iii = Proc. Spie. Optomechatronic Systems Control Iii = P Soc Photo-opt Ins Optomechatronic Systems Control Iii = P. Soc. Photo-opt. Ins. Optomechatronic Systems Iii = Proc Spie Optomechatronic Systems Iii = Proc. Spie. Optomechatronic Systems Iii = P Soc Photo-opt Ins Optomechatronic Systems Iii = P. Soc. Photo-opt. Ins. Optomechatronic Systems Ii = Proc Spie Optomechatronic Systems Ii = Proc. Spie. Optomechatronic Systems Ii = P Soc Photo-opt Ins Optomechatronic Systems Ii = P. Soc. Photo-opt. Ins. Optomechatronic Systems Iv = Proc Spie Optomechatronic Systems Iv = Proc. Spie. Optomechatronic Systems Iv = P Soc Photo-opt Ins Optomechatronic Systems Iv = P. Soc. Photo-opt. Ins. Optomechatronic Systems = Proc Spie Optomechatronic Systems = Proc. Spie. Optomechatronic Systems = P Soc Photo-opt Ins Optomechatronic Systems = P. Soc. Photo-opt. Ins. Optometry and vision science : official publication of the American Academy of Optometry = Optom Vis Sci Optometry and Vision Science = Optometry Vision Sci Optometry and Vision Science = Optometry Vision Sci. Optometry and Vision Science=Optom Vis Sci;; Optometry and Vision Science = Optom. Vis. Sci. Optometry Clinics = Optom. Clin. Optometry clinics : the official publication of the Prentice Society = Optom Clin Optometry-journal of The American Optometric Association = Optometry Optometry-journal of The American Optometric Association = Optometry. Optometry = Optometry Optometry (St. Louis, Mo.) = Optometry Optp-ireland 2002: Optical Metrology, Imaging, and Machine Vision = P Soc Photo-opt Ins Optp-ireland 2002: Optical Metrology, Imaging, and Machine Vision = P. Soc. Photo-opt. Ins. Opuscula Atheniensia: acta Inst. Athen. Regni Sueciae = OAth Opuscula Atheniensia = OpAth Opuscula Instituti Romani Finlandiae = OpFin Opuscula Mathematica = Opuscula Math. Opuscula medica = Opusc Med Opuscula Medica = Opusc. Med. Opuscula Pompeiana = OpPomp Opuscula Romana: acta Inst. Rom. Regni Sueciae = ORom Opuscula Romana = OpRom Opusculum = Opusculum Opus. Rivista internazionale per la storia economica e sociale dell’antichità = Opus Oral and The Written in Early Islam = Routl Stud Mid E Lit Oral and The Written in Early Islam = Routl. Stud. Mid. E. Lit. Oral-based Diagnostics = Ann Ny Acad Sci Oral-based Diagnostics = Ann. Ny. Acad. Sci. Oral Biology: Molecular Techniques and Applications = Methods Mol Biol Oral Biology: Molecular Techniques and Applications = Methods. Mol. Biol. Oral Controlled Release Products = Paperb Apv Oral Controlled Release Products = Paperb. Apv. Oral Cytotoxic Treatment in Haematological Malignancies = Res Clin Forums Oral Cytotoxic Treatment in Haematological Malignancies = Res. Clin. Forums. Oral diseases = Oral Dis Oral Diseases = Oral Dis Oral Diseases = Oral Dis. Orale Implantologie = Orale Implantol Orale Implantologie = Orale Implantol. Oral Epic: Performance and Music = Intercult Music Stud Oral Epic: Performance and Music = Intercult. Music Stud. Oral Health and Preventive Dentistry = Oral Health Prev. Dent. Oral health = Oral Health Oral Health = Oral Health Oral health & preventive dentistry = Oral Health Prev Dent Oral Health & Preventive Dentistry = Oral Hlth Prev Dent Oral Health & Preventive Dentistry = Oral Hlth. Prev. Dent. Oral History, Oral Culture, and Italian Americans = Ital Ital Am Stud Oral History, Oral Culture, and Italian Americans = Ital. Ital. Am. Stud. Oral hygiene = Oral Hyg Oral Hygiene = Oral Hyg. Oral implantology = Oral Implantol Oral Implantology = Oral Implantol. Orality and Literacy in Modern Italian Culture = Italian Perspectives Orality and Literacy in Modern Italian Culture = Italian Perspectives. Orality, Literacy, and Colonialism in Antiquity = Sbl Semeia Orality, Literacy, and Colonialism in Antiquity = Sbl. Semeia. Oral Microbiology and Immunology = Oral Microbiol Immun Oral Microbiology and Immunology = Oral Microbiol. Immun. Oral microbiology and immunology = Oral Microbiol Immunol Oral Microbiology and Immunology = Oral Microbiol. Immunol. Oral Narration in Modern French: A Linguistic Analysis of Temporal Patterns = Res Monogr Fr Stud Oral Narration in Modern French: A Linguistic Analysis of Temporal Patterns = Res. Monogr. Fr. Stud. Oral Oncology-european Journal of Cancer Part B = Oral Oncol Oral Oncology-european Journal of Cancer Part B = Oral Oncol. Oral oncology = Oral Oncol Oral Oncology = Oral Oncol Oral Oncology = Oral Oncol. Oral Performance and Its Context = Mnemosyne Suppl Oral Performance and Its Context = Mnemosyne. Suppl. Oral-prophylaxe / Herausgeber, Verein fur Zahnhygiene e.V = Oralprophylaxe Oral-Prophylaxe = Oralprophylaxe. Oral Radiology = Oral Radiol Oral Radiology = Oral Radiol. Oral sciences reviews = Oral Sci Rev Oral Sciences Reviews = Oral Sci. Rev. Oral Surgery, Oral Diagnosis = Oral Surg. Oral Diagn. Oral surgery, oral diagnosis : OSD = Oral Surg Oral Diagn Oral surgery, oral medicine, and oral pathology = Oral Surg Oral Med Oral Pathol Oral Surgery Oral Medicine Oral Pathology Oral Radiology and Endodontics = Oral Surg Oral Med O Oral Surgery Oral Medicine Oral Pathology Oral Radiology and Endodontics = Oral Surg. Oral Med. O. Oral Surgery, Oral Medicine, Oral Pathology, Oral Radiology AndEndodontics Oral Surg Oral Med Oral Pathol Oral Radio=Endod;; Oral surgery, oral medicine, oral pathology, oral radiology, and endodontics = Oral Surg Oral Med Oral Pathol Oral Radiol Endod Oral Surgery, Oral Medicine, Oral Pathology, Oral Radiology and Endodontics = Oral Surg. Oral Med. Oral Pathol. Oral Radiol. Endod. Oral Surgery Oral Medicine Oral Pathology Oral Radiology and Endodontology = Oral Surg Oral Med O Oral Surgery Oral Medicine Oral Pathology Oral Radiology and Endodontology = Oral Surg. Oral Med. O. Oral Surgery, Oral Medicine, Oral Pathology = Oral Surg. Oral Med. Oral Pathol. Oral Tolerance: Mechanisms and Applications = Ann Ny Acad Sci Oral Tolerance: Mechanisms and Applications = Ann. Ny. Acad. Sci. Oral Tolerance: New Insights and Prospects for Clinical Application = Ann Ny Acad Sci Oral Tolerance: New Insights and Prospects for Clinical Application = Ann. Ny. Acad. Sci. Orange County Dental Society Bulletin = Orange Cty Dent Soc Bull Orange County Dental Society Bulletin = Orange Cty. Dent. Soc. Bull. Orang Suku Laut of Riau, Indonesia: The Inalienable Gift of Territory = Mod Anthropol Se Asi Orang Suku Laut of Riau, Indonesia: The Inalienable Gift of Territory = Mod. Anthropol. Se. Asi. Orbis-a Journal of World Affairs = Orbis-j World Aff Orbis-a Journal of World Affairs = Orbis-j. World Aff. Orbis Economicus=Orbis Econ. Orbis Litterarum = Orbis Lit Orbis Litterarum = Orbis Lit. Orbis = Orbis Orbis terrarum. Internationale Zeitschrift für historische Geographie der Alten Welt = OrbTerr Orbital Forcing Timescales and Cyclostratigraphy = Geol Soc Sp Orbital Forcing Timescales and Cyclostratigraphy = Geol. Soc. Sp. Orbital Mechanics and Mission Design = Adv Astronaut Sci Orbital Mechanics and Mission Design = Adv. Astronaut. Sci. Orbitals in Chemistry = Top Curr Chem Orbitals in Chemistry = Top. Curr. Chem. Orbit (Amsterdam, Netherlands) = Orbit Orbit-an International Journal On Orbital Disorders and Facial Reconstructive Surgery = Orbit Orbit-an International Journal On Orbital Disorders and Facial Reconstructive Surgery = Orbit. Orbit Correction and Analysis in Circular Accelerators = Aip Conf Proc Orbit Correction and Analysis in Circular Accelerators = Aip. Conf. Proc. Orbit Determination and Analysis = Adv Space Res Orbit Determination and Analysis = Adv. Space. Res. Orbit Method in Geometry and Physics = Prog Math Orbit Method in Geometry and Physics = Prog. Math. Orchestration of The Arts - A Creative Symbiosis of Existential Powers = Anal Hus Yb Orchestration of The Arts - A Creative Symbiosis of Existential Powers = Anal. Hus. Yb. Order-a Journal On The Theory of Ordered Sets and Its Applications = Order Order-a Journal On The Theory of Ordered Sets and Its Applications = Order. Order and Chaos in Inanimate and Animate Nature = Ver Ges D N Order and Chaos in Inanimate and Animate Nature = Ver. Ges. D. N. Order and Chaos in Stellar and Planetary Systems = Astr Soc P Order and Chaos in Stellar and Planetary Systems = Astr. Soc. P. Order and Disorder: Music-theoretical Strategies in 20th-century Music = Collect Writ Orpheus Order and Disorder: Music-theoretical Strategies in 20th-century Music = Collect. Writ. Orpheus. Ordered Algebraic Structures = Math Appl Ordered Algebraic Structures = Math. Appl. Ordered Algebraic Structures: Nanjing = Alg Log App Ordered Algebraic Structures: Nanjing = Alg. Log. App. Ordered and Turbulent Patterns in Taylor-couette Flow = Nato Adv Sci I B-phy Ordered and Turbulent Patterns in Taylor-couette Flow = Nato. Adv. Sci. I. B-phy. Ordered Intermetallics - Physical Metallurgy and Mechanical Behaviour = Nato Adv Sci I E-app Ordered Intermetallics - Physical Metallurgy and Mechanical Behaviour = Nato. Adv. Sci. I. E-app. Ordered Polymeric Nanostructures At Surfaces = Adv Polym Sci Ordered Polymeric Nanostructures At Surfaces = Adv. Polym. Sci. Ordering Disorder: Prospect and Retrospect in Condensed Matter Physics = Aip Conf Proc Ordering Disorder: Prospect and Retrospect in Condensed Matter Physics = Aip. Conf. Proc. Ordering The World in The Eighteenth Century = Stud Mod Hist Ordering The World in The Eighteenth Century = Stud. Mod. Hist. Order = Order Ordinal and Symbolic Data Analysis = St Class Dat Anal Ordinal and Symbolic Data Analysis = St. Class. Dat. Anal. Ordinary and Partial Differential Equations = Universitext Ordinary and Partial Differential Equations = Universitext. Ordinary and Partial Differential Equations, Vol 3 = Pitman Res Ordinary and Partial Differential Equations, Vol 3 = Pitman. Res. Ordinary Differential Equations: Introductions and Qualitative Theory, Third Edition = Monogr Txb Pure Appl Ordinary Differential Equations: Introductions and Qualitative Theory, Third Edition = Monogr. Txb. Pure. Appl. Ordinary Places, Extraordinary Events: Citizenship, Democracy and Public Space in Latin America = Plan Hist Environ Se Ordinary Places, Extraordinary Events: Citizenship, Democracy and Public Space in Latin America = Plan. Hist. Environ. Se. Ordona. Rapports et études = Ordona Ordovician Earth System = Geol Soc Am Spec Pap Ordovician Earth System = Geol. Soc. Am. Spec. Pap. Orebody Modelling and Strategic Mine Planning: Uncertainty and Risk Management Models = Aimm Spectr Ser Orebody Modelling and Strategic Mine Planning: Uncertainty and Risk Management Models = Aimm. Spectr. Ser. Ore Geology Reviews = Ore Geol Rev Ore Geology Reviews = Ore Geol. Rev. Oregon Agricultural Experiment Station Special Report = Oreg Aes Spec Rep Oregon Agricultural Experiment Station Special Report = Oreg. Aes. Spec. Rep. Oregon Business Review=Oregon Bus. Rev. Oregon Historical Quarterly = Oreg Hist Quart Oregon Historical Quarterly = Oreg. Hist. Quart. Oregon historical quarterly. Oregon Historical Society = Oreg Hist Q Oregon law review = Oregon Law Rev Oregon Nurse = Oreg. Nurse Oregon revised statutes : containing, with some exceptions, the statute laws of Oregon of a general, public and permanent nature ... Oregon = Or Revis Statut Or Oregon state dental journal = Oreg State Dent J Oregon State Dental Journal = Oreg. State Dent. J. Ore Reserve Reconciliation Workshop = Aimm Spectr Ser Ore Reserve Reconciliation Workshop = Aimm. Spectr. Ser. Ore Reserves and Finance = Aimm Spectr Ser Ore Reserves and Finance = Aimm. Spectr. Ser. Organ Allocation = Transp Cl Immun Sfmm Organ Allocation = Transp. Cl. Immun. Sfmm. Organ and Tissue Donation = Med Hum Ser Organ and Tissue Donation = Med. Hum. Ser. Organ Conservation in Curative Cancer Treatment = Front Radiat Ther On Organ Conservation in Curative Cancer Treatment = Front. Radiat. Ther. On. Organellar Ion Channels and Transporters = Soc Gen Phy Organellar Ion Channels and Transporters = Soc. Gen. Phy. Organic 3d Photonics Materials and Devices Ii = Proc Spie Organic 3d Photonics Materials and Devices Ii = Proc. Spie. Organic 3d Photonics Materials and Devices = P Soc Photo-opt Ins Organic 3d Photonics Materials and Devices = P. Soc. Photo-opt. Ins. Organic Acids in Aquatic Ecosystems = Life Sci R Organic Acids in Aquatic Ecosystems = Life. Sci. R. Organic and Biological Optoelectronics = P Soc Photo-opt Ins Organic and Biological Optoelectronics = P. Soc. Photo-opt. Ins. Organic and Biomolecular Chemistry = Org. Biomol. Chem. Organic and Nanocomposite Optical Materials = Mater Res Soc Symp P Organic and Nanocomposite Optical Materials = Mater. Res. Soc. Symp. P. Organic and Pervasive Computing - Arcs 2004 = Lect Notes Comput Sc Organic and Pervasive Computing - Arcs 2004 = Lect. Notes. Comput. Sc. Organic and Polymeric Materials and Devices = Mater Res Soc Symp P Organic and Polymeric Materials and Devices = Mater. Res. Soc. Symp. P. Organic and Polymeric Materials and Devices-optical, Electrical and Optoelectronic Properties = Mater Res Soc Symp P Organic and Polymeric Materials and Devices-optical, Electrical and Optoelectronic Properties = Mater. Res. Soc. Symp. P. Organic-based Chemical and Biological Sensors = P Soc Photo-opt Ins Organic-based Chemical and Biological Sensors = P. Soc. Photo-opt. Ins. Organic & biomolecular chemistry = Org Biomol Chem Organic & Biomolecular Chemistry = Org Biomol Chem Organic & Biomolecular Chemistry = Org. Biomol. Chem. Organic Coatings = Aip Conf Proc Organic Coatings = Aip. Conf. Proc. Organic Computing: A Paradigm Shift for Complex Systems = Auton Syst Organic Computing: A Paradigm Shift for Complex Systems = Auton. Syst. Organic Conductors, Superconductors and Magnets: From Synthesis to Molecular Electronics = Nato Sci Ser Ii-math Organic Conductors, Superconductors and Magnets: From Synthesis to Molecular Electronics = Nato. Sci. Ser. Ii-math. Organic Conductors, Superconductors and Magnets: From Synthesis to Molecular Electronics = Nato Sci Ser Ii Math Organic Conductors, Superconductors and Magnets: From Synthesis to Molecular Electronics = Nato. Sci. Ser. Ii. Math. Organic Electronics = Adv Polym Sci Organic Electronics = Adv. Polym. Sci. Organic Electronics = Org Electron Organic Electronics = Org. Electron. Organic Europium Complexes and Their Applications in Optoelectronic Devices = Chem Res Appl-nova Organic Europium Complexes and Their Applications in Optoelectronic Devices = Chem. Res. Appl-nova. Organic Farming and Peanut Crops = Agr Issues Policies Organic Farming and Peanut Crops = Agr. Issues. Policies. Organic Farming, Pest Control and Remediation of Soil Pollutants = Sustain Agr Rev Organic Farming, Pest Control and Remediation of Soil Pollutants = Sustain. Agr. Rev. Organic Field-effect Transistors Iii = P Soc Photo-opt Ins Organic Field-effect Transistors Iii = P. Soc. Photo-opt. Ins. Organic Field Effect Transistors Ii = P Soc Photo-opt Ins Organic Field Effect Transistors Ii = P. Soc. Photo-opt. Ins. Organic Field-effect Transistors Ix = P Soc Photo-opt Ins Organic Field-effect Transistors Ix = P. Soc. Photo-opt. Ins. Organic Field Effect Transistors = P Soc Photo-opt Ins Organic Field Effect Transistors = P. Soc. Photo-opt. Ins. Organic Field Effect Transistors: Theory, Fabrication and Characterization = Integr Circuit Syst Organic Field Effect Transistors: Theory, Fabrication and Characterization = Integr. Circuit. Syst. Organic Field-effect Transistors Vii and Organic Semiconductors in Sensors and Bioelectronics = P Soc Photo-opt Ins Organic Field-effect Transistors Vii and Organic Semiconductors in Sensors and Bioelectronics = P. Soc. Photo-opt. Ins. Organic Field-effect Transistors Vi = Proc Spie Organic Field-effect Transistors Vi = Proc. Spie. Organic Field-effect Transistors Vi = P Soc Photo-opt Ins Organic Field-effect Transistors Vi = P. Soc. Photo-opt. Ins. Organic Field-effect Transistors V = P Soc Photo-opt Ins Organic Field-effect Transistors V = P. Soc. Photo-opt. Ins. Organic geochemistry = Org Geochem Organic Geochemistry = Org Geochem Organic Geochemistry = Org. Geochem. Organic Holographic Materials and Applications Ii = P Soc Photo-opt Ins Organic Holographic Materials and Applications Ii = P. Soc. Photo-opt. Ins. Organic Holographic Materials and Applications Iv = P Soc Photo-opt Ins Organic Holographic Materials and Applications Iv = P. Soc. Photo-opt. Ins. Organic Holographic Materials and Applications = Proc Spie Organic Holographic Materials and Applications = Proc. Spie. Organic Holographic Materials and Applications = P Soc Photo-opt Ins Organic Holographic Materials and Applications = P. Soc. Photo-opt. Ins. Organic/inorganic Hybrid Materials-2002 = Mater Res Soc Symp P Organic/inorganic Hybrid Materials-2002 = Mater. Res. Soc. Symp. P. Organic/inorganic Hybrid Materials-2004 = Mater Res Soc Symp P Organic/inorganic Hybrid Materials-2004 = Mater. Res. Soc. Symp. P. Organic/inorganic Hybrid Materials - 2007 = Mater Res Soc Symp P Organic/inorganic Hybrid Materials - 2007 = Mater. Res. Soc. Symp. P. Organic-inorganic Hybrid Materials for Photonics = P Soc Photo-opt Ins Organic-inorganic Hybrid Materials for Photonics = P. Soc. Photo-opt. Ins. Organic/inorganic Hybrid Materials Ii = Mater Res Soc Symp P Organic/inorganic Hybrid Materials Ii = Mater. Res. Soc. Symp. P. Organic/inorganic Hybrid Materials = Mater Res Soc Symp P Organic/inorganic Hybrid Materials = Mater. Res. Soc. Symp. P. Organic letters = Org Lett Organic Letters = Org Lett Organic Letters = Org. Lett. Organic Light-emitting Materials and Devices Iii = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Iii = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices Ii = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Ii = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices Iv = Proc Spie Organic Light-emitting Materials and Devices Iv = Proc. Spie. Organic Light-emitting Materials and Devices Iv = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Iv = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices = Opt Sci Eng-crc Organic Light-emitting Materials and Devices = Opt. Sci. Eng-crc. Organic Light-emitting Materials and Devices = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices Viii = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Viii = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices Vii = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Vii = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices Vi = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices Vi = P. Soc. Photo-opt. Ins. Organic Light-emitting Materials and Devices V = P Soc Photo-opt Ins Organic Light-emitting Materials and Devices V = P. Soc. Photo-opt. Ins. Organic Light Emitting Materials and Devices Xii = P Soc Photo-opt Ins Organic Light Emitting Materials and Devices Xii = P. Soc. Photo-opt. Ins. Organic Light Emitting Materials and Devices Xi = Proc Spie Organic Light Emitting Materials and Devices Xi = Proc. Spie. Organic Light Emitting Materials and Devices Xi = P Soc Photo-opt Ins Organic Light Emitting Materials and Devices Xi = P. Soc. Photo-opt. Ins. Organic Light Emitting Materials and Devices X = P Soc Photo-opt Ins Organic Light Emitting Materials and Devices X = P. Soc. Photo-opt. Ins. Organic Magnetic Resonance = Org Magn Resonance Organic Magnetic Resonance = Org. Magn. Resonance Organic Mass Spectrometry = Org Mass Spectrom Organic Mass Spectrometry = Org. Mass Spectrom. Organic Materials for Non-linear Optics Ii = Roy Soc Ch Organic Materials for Non-linear Optics Ii = Roy. Soc. Ch. Organic Meat and Milk From Ruminants = Eaap Public Organic Meat and Milk From Ruminants = Eaap. Public. Organic, Metallo-organic, and Polymeric Materials for Nonlinear Optical Applications = P Soc Photo-opt Ins Organic, Metallo-organic, and Polymeric Materials for Nonlinear Optical Applications = P. Soc. Photo-opt. Ins. Organic Micropollutants in The Aquatic Environment / = Water Pol R Organic Micropollutants in The Aquatic Environment / = Water. Pol. R. Organic Molecules for Nonlinear Optics and Photonics = Nato Adv Sci I E-app Organic Molecules for Nonlinear Optics and Photonics = Nato. Adv. Sci. I. E-app. Organic Nanophotonics = Nato Sci Ser Ii-math Organic Nanophotonics = Nato. Sci. Ser. Ii-math. Organic Nanophotonics = Nato Sci Ser Ii Math Organic Nanophotonics = Nato. Sci. Ser. Ii. Math. Organic Nanostructures for Next Generation Devices = Springer Ser Mater S Organic Nanostructures for Next Generation Devices = Springer. Ser. Mater. S. Organic Nonlinear Optical Materials and Devices = Mater Res Soc Symp P Organic Nonlinear Optical Materials and Devices = Mater. Res. Soc. Symp. P. Organic Nonlinear Optical Materials = P Soc Photo-opt Ins Organic Nonlinear Optical Materials = P. Soc. Photo-opt. Ins. Organic Optoelectronic Materials, Processing and Devices = Mater Res Soc Symp P Organic Optoelectronic Materials, Processing and Devices = Mater. Res. Soc. Symp. P. Organic Optoelectronics and Photonics Iii = Proc Spie Organic Optoelectronics and Photonics Iii = Proc. Spie. Organic Optoelectronics and Photonics Iii = P Soc Photo-opt Ins Organic Optoelectronics and Photonics Iii = P. Soc. Photo-opt. Ins. Organic Optoelectronics and Photonics Ii = Proc Spie Organic Optoelectronics and Photonics Ii = Proc. Spie. Organic Optoelectronics and Photonics Ii = P Soc Photo-opt Ins Organic Optoelectronics and Photonics Ii = P. Soc. Photo-opt. Ins. Organic Optoelectronics and Photonics = Proc Spie Organic Optoelectronics and Photonics = Proc. Spie. Organic Optoelectronics and Photonics = P Soc Photo-opt Ins Organic Optoelectronics and Photonics = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Iii = P Soc Photo-opt Ins Organic Photonic Materials and Devices Iii = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Ii = Proc Spie Organic Photonic Materials and Devices Ii = Proc. Spie. Organic Photonic Materials and Devices Ii = P Soc Photo-opt Ins Organic Photonic Materials and Devices Ii = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Iv = P Soc Photo-opt Ins Organic Photonic Materials and Devices Iv = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Ix = Proc Spie Organic Photonic Materials and Devices Ix = Proc. Spie. Organic Photonic Materials and Devices Ix = P Soc Photo-opt Ins Organic Photonic Materials and Devices Ix = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices = P Soc Photo-opt Ins Organic Photonic Materials and Devices = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Viii = P Soc Photo-opt Ins Organic Photonic Materials and Devices Viii = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Vii = P Soc Photo-opt Ins Organic Photonic Materials and Devices Vii = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Vi = Proc Spie Organic Photonic Materials and Devices Vi = Proc. Spie. Organic Photonic Materials and Devices Vi = P Soc Photo-opt Ins Organic Photonic Materials and Devices Vi = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices V = Proc Spie Organic Photonic Materials and Devices V = Proc. Spie. Organic Photonic Materials and Devices V = P Soc Photo-opt Ins Organic Photonic Materials and Devices V = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Xiii = Proc Spie Organic Photonic Materials and Devices Xiii = Proc. Spie. Organic Photonic Materials and Devices Xii = P Soc Photo-opt Ins Organic Photonic Materials and Devices Xii = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices Xi = P Soc Photo-opt Ins Organic Photonic Materials and Devices Xi = P. Soc. Photo-opt. Ins. Organic Photonic Materials and Devices X = P Soc Photo-opt Ins Organic Photonic Materials and Devices X = P. Soc. Photo-opt. Ins. Organic Photonics Iv = P Soc Photo-opt Ins Organic Photonics Iv = P. Soc. Photo-opt. Ins. Organic Photorefractive and Photosensitive Materials for Holographic Applications = P Soc Photo-opt Ins Organic Photorefractive and Photosensitive Materials for Holographic Applications = P. Soc. Photo-opt. Ins. Organic Photorefractive Materials and Xerographic Photoreceptors = P Soc Photo-opt Ins Organic Photorefractive Materials and Xerographic Photoreceptors = P. Soc. Photo-opt. Ins. Organic Photorefractives, Photoreceptors, and Nanocomposites = P Soc Photo-opt Ins Organic Photorefractives, Photoreceptors, and Nanocomposites = P. Soc. Photo-opt. Ins. Organic Photorefractives, Photoreceptors, Waveguides, and Fibers = P Soc Photo-opt Ins Organic Photorefractives, Photoreceptors, Waveguides, and Fibers = P. Soc. Photo-opt. Ins. Organic Photovoltaics Iii = Proc Spie Organic Photovoltaics Iii = Proc. Spie. Organic Photovoltaics Iii = P Soc Photo-opt Ins Organic Photovoltaics Iii = P. Soc. Photo-opt. Ins. Organic Photovoltaics Ii = P Soc Photo-opt Ins Organic Photovoltaics Ii = P. Soc. Photo-opt. Ins. Organic Photovoltaics Iv = P Soc Photo-opt Ins Organic Photovoltaics Iv = P. Soc. Photo-opt. Ins. Organic Photovoltaics Ix = Proc Spie Organic Photovoltaics Ix = Proc. Spie. Organic Photovoltaics Ix = P Soc Photo-opt Ins Organic Photovoltaics Ix = P. Soc. Photo-opt. Ins. Organic Photovoltaics = Proc Spie Organic Photovoltaics = Proc. Spie. Organic Photovoltaics = P Soc Photo-opt Ins Organic Photovoltaics = P. Soc. Photo-opt. Ins. Organic Photovoltaics Viii = P Soc Photo-opt Ins Organic Photovoltaics Viii = P. Soc. Photo-opt. Ins. Organic Photovoltaics Vii = Proc Spie Organic Photovoltaics Vii = Proc. Spie. Organic Photovoltaics Vii = P Soc Photo-opt Ins Organic Photovoltaics Vii = P. Soc. Photo-opt. Ins. Organic Photovoltaics V = P Soc Photo-opt Ins Organic Photovoltaics V = P. Soc. Photo-opt. Ins. Organic Pollutants in The Environment = Cms Work Lect Organic Pollutants in The Environment = Cms. Work. Lect. Organic preparations and procedures international = Org Prep Proced Int Organic Preparations and Procedures International = Org Prep Proced Int Organic Preparations and Procedures International = Org. Prep. Proced. Int. Organic Process Research and Development = Org. Process Res. Dev. Organic Process Research & Development = Org Process Res Dev Organic Process Research & Development = Org. Process Res. Dev. Organic Reaction Mechanics = Org. React. Mech. Organic Reaction Mechanisms = Org. React. Mech. Organic Reactions = Org. React. Organic Reactions = Org Reactions Organic Reactions = Org. Reactions Organic Reactivity = Org Reactivity+ Organic Reactivity = Org. Reactivity+.+ Organic Semiconductors in Sensor Applications = Springer Ser Mater S Organic Semiconductors in Sensor Applications = Springer. Ser. Mater. S. Organic Semiconductors in Sensors and Bioelectronics Iii = Proc Spie Organic Semiconductors in Sensors and Bioelectronics Iii = Proc. Spie. Organic Semiconductors in Sensors and Bioelectronics Iii = P Soc Photo-opt Ins Organic Semiconductors in Sensors and Bioelectronics Iii = P. Soc. Photo-opt. Ins. Organic Solid State Reactions = Top Curr Chem Organic Solid State Reactions = Top. Curr. Chem. Organic Syntheses = Org Synth Organic Syntheses = Org. Synth. Organic Syntheses, Vol 72 = Org Synth Organic Syntheses, Vol 72 = Org. Synth. Organic Syntheses, Vol 75 = Org Synth Organic Syntheses, Vol 75 = Org. Synth. Organic Syntheses, Vol 76 - 1999 = Org Synth Organic Syntheses, Vol 76 - 1999 = Org. Synth. Organic Syntheses, Vol 83 = Org Synth Organic Syntheses, Vol 83 = Org. Synth. Organic Syntheses, Vol 84 = Org Synth Organic Syntheses, Vol 84 = Org. Synth. Organic Synthesis, Vol 73 = Org Synth Organic Synthesis, Vol 73 = Org. Synth. Organic Thin Film for Photonic Applications, Proceedings = Osa Trends Opt Photo Organic Thin Film for Photonic Applications, Proceedings = Osa. Trends. Opt. Photo. Organic Thin Films = Acs Sym Ser Organic Thin Films = Acs. Sym. Ser. Organic Xenobiotics and Plants: From Mode of Action to Ecophysiology = Plant Ecophysiol Organic Xenobiotics and Plants: From Mode of Action to Ecophysiology = Plant. Ecophysiol. Organisational Culture for Information Managers = Chandos Inf Prof Ser Organisational Culture for Information Managers = Chandos. Inf. Prof. Ser. Organisation Des Connaissances A L'ere Numerique = Sci Soc-france Organisation Des Connaissances A L'ere Numerique = Sci. Soc-france. Organisation for Economic Co-operation and Development (oecd) = Glob Inst Organisation for Economic Co-operation and Development (oecd) = Glob. Inst. Organisator, Der = Organisator Organised Sound = Organ Sound Organised Sound = Organ. Sound Organism and The Origins of Self = Bost Stud Philos Sci Organism and The Origins of Self = Bost. Stud. Philos. Sci. Organisms Diversity & Evolution = Org Divers Evol Organisms Diversity & Evolution = Org. Divers. Evol. Organism-sediment Interactions = Bel Bar Lib Organism-sediment Interactions = Bel. Bar. Lib. Organizational Behavior and Human Decision Processes = Organ Behav Hum Dec Organizational Behavior and Human Decision Processes = Organ. Behav. Hum. Dec. Organizational behavior and human decision processes = Organ Behav Hum Decis Process Organizational Behavior and Human Decision Processes = Organ. Behav. Hum. Decis. Process. Organizational Behavior and Human Performance = Organ Behav Hum Perf Organizational Behavior and Human Performance = Organ. Behav. Hum. Perf. Organizational behavior and human performance = Organ Behav Hum Perform Organizational Behavior and Human Performance = Organ. Behav. Hum. Perform. Organizational, Business, and Technological Aspects of The Knowledge Society Pt Ii = Comm Com Inf Sc Organizational, Business, and Technological Aspects of The Knowledge Society Pt Ii = Comm. Com. Inf. Sc. Organizational Change and Innovation = Organ Chang Innov Organizational Change and Innovation = Organ. Chang. Innov. Organizational Dynamics of Technology-based Innovation: Diversifying The Research Agenda = Int Fed Info Proc Organizational Dynamics of Technology-based Innovation: Diversifying The Research Agenda = Int. Fed. Info. Proc. Organizational dynamics = Organ Dyn Organizational Dynamics = Organ Dyn Organizational Dynamics = Organ. Dyn. Organizational Information Systems in The Context of Globalization = Int Fed Info Proc Organizational Information Systems in The Context of Globalization = Int. Fed. Info. Proc. Organizational Research Methods = Organ Res Methods Organizational Research Methods = Organ. Res. Methods Organizational Response to Persons With Mental Illness Invloved With The Criminal Justice System = Res Soc Probl Public Organizational Response to Persons With Mental Illness Invloved With The Criminal Justice System = Res. Soc. Probl. Public. Organizational Semiotics: Evolving A Science of Information Systems = Int Fed Info Proc Organizational Semiotics: Evolving A Science of Information Systems = Int. Fed. Info. Proc. Organization and Environment=Organ. Environ. Organization Design: The Evolving State-of-the-art = Info Org Desig Serie Organization Design: The Evolving State-of-the-art = Info. Org. Desig. Serie. Organization Development in Health Care: High Impact Practices for A Complex and Changing Environment = Cont Trend Organ Dev Organization Development in Health Care: High Impact Practices for A Complex and Changing Environment = Cont. Trend. Organ. Dev. Organization & Environment = Organ Environ Organization & Environment = Organ. Environ. Organization for Security and Co-operation in Europe = Glob Inst Organization for Security and Co-operation in Europe = Glob. Inst. Organization of Opinion: Open Voting in England, 1832-68 = Stud Mod Hist Organization of Opinion: Open Voting in England, 1832-68 = Stud. Mod. Hist. Organization of The Early Vertebrate Embryo = Nato Adv Sci Inst Se Organization of The Early Vertebrate Embryo = Nato. Adv. Sci. Inst. Se. Organization = Organization Organizations and The Sustainability Mosaic: Crafting Long-term Ecological and Societal Solutions = New Perspect Res Cor Organizations and The Sustainability Mosaic: Crafting Long-term Ecological and Societal Solutions = New. Perspect. Res. Cor. Organizations As Complex Systems: An Introduction to Knowledge Cybernetics = Manag Complex Organizations As Complex Systems: An Introduction to Knowledge Cybernetics = Manag. Complex Organizations As Learning Systems: Living Composition As An Enabling Infrastructure = Adv Ser Manag Organizations As Learning Systems: Living Composition As An Enabling Infrastructure = Adv. Ser. Manag. Organization Science = Organ Sci Organization Science = Organ. Sci. Organization Structures: Theory and Design, Analysis and Prescription = Inform Organ Des Ser Organization Structures: Theory and Design, Analysis and Prescription = Inform. Organ. Des. Ser. Organization Studies = Organ Stud Organization Studies = Organ. Stud. Organization Theory and Class Analysis = De Gruy St Organization Theory and Class Analysis = De. Gruy. St. Organized Adaption in Multi-agent Systems = Lect Notes Artif Int Organized Adaption in Multi-agent Systems = Lect. Notes. Artif. Int. Organized Business Interests in Changing Environments: The Complexity of Adaptation = Glob Gov Organized Business Interests in Changing Environments: The Complexity of Adaptation = Glob. Gov. Organized Crime and Corruption in Georgia = Routl Transnat Crime Organized Crime and Corruption in Georgia = Routl. Transnat. Crime Organized Crime and States: The Hidden Face of Politics = Sci Po Ser Int Relat Organized Crime and States: The Hidden Face of Politics = Sci. Po. Ser. Int. Relat. Organized Crime Community: Essays in Honor of Alan A. Block = Stud Organize Crime Organized Crime Community: Essays in Honor of Alan A. Block = Stud. Organize. Crime Organized Crime: Culture, Markets and Policies = Stud Organize Crime Organized Crime: Culture, Markets and Policies = Stud. Organize. Crime. Organized Crime in The Us = Crim Justice Law Enf Organized Crime in The Us = Crim. Justice. Law. Enf. Organizing A Research Agenda : Information Studies for The 1990s = Dalh U Lib Organizing A Research Agenda : Information Studies for The 1990s = Dalh. U. Lib. Organizing Innovation: New Approaches to Cultural Change and Intervention in Public Sector Organizations = Innov Public Sect Organizing Innovation: New Approaches to Cultural Change and Intervention in Public Sector Organizations = Innov. Public Sect. Organ Microcirculation: A Gateway to Diagnositc and Therapeutic Interventions = Keio U Int Symp Life Organ Microcirculation: A Gateway to Diagnositc and Therapeutic Interventions = Keio. U. Int. Symp. Life. Organocatalysis = Ernst Schering Found Organocatalysis = Ernst. Schering. Found. Organocatalytic Enantioselective Conjugate Addition Reactions: A Powerful Tool for The Stereocontrolled Synthesis of Complex Molecules = Rsc Catal Ser Organocatalytic Enantioselective Conjugate Addition Reactions: A Powerful Tool for The Stereocontrolled Synthesis of Complex Molecules = Rsc. Catal. Ser. Organofluorine Chemistry = Top Curr Chem Organofluorine Chemistry = Top. Curr. Chem. Organogenesis in Development = Curr Top Dev Biol Organogenesis in Development = Curr. Top. Dev. Biol. Organogenesis = Organogenesis Organohalogen Compounds = Organohalogen Compd. Organometallic and Coordination Chemistry of The Actinides = Struct Bond Organometallic and Coordination Chemistry of The Actinides = Struct. Bond. Organometallic Chemistry = Organomet Chem Organometallic Chemistry = Organomet. Chem. Organometallic Chemistry Reviews Section A-subject Reviews = Organomet Chem Rev A Organometallic Chemistry Reviews Section A-subject Reviews = Organomet. Chem. Rev. A. Organometallic Chemistry Reviews Section B-annual Surveys = Organomet Chem Rev B Organometallic Chemistry Reviews Section B-annual Surveys = Organomet. Chem. Rev. B. Organometallic Chemistry, Vol 32 = Organomet Chem Organometallic Chemistry, Vol 32 = Organomet. Chem. Organometallic Chemistry, Vol 33 = Organomet Chem Organometallic Chemistry, Vol 33 = Organomet. Chem. Organometallic Chemistry, Vol 34 = Organomet Chem Organometallic Chemistry, Vol 34 = Organomet. Chem. Organometallic Compounds: Preparation, Structure and Properties = Mater Sci Technol Organometallic Compounds: Preparation, Structure and Properties = Mater. Sci. Technol. Organometallic Oxidation Catalysis = Top Organometal Chem Organometallic Oxidation Catalysis = Top. Organometal. Chem. Organometallics in Chemical Synthesis = Organomet Chem Synth Organometallics in Chemical Synthesis = Organomet. Chem. Synth. Organometallics in Environment and Toxicology = Metal Ions Life Sci Organometallics in Environment and Toxicology = Metal. Ions. Life. Sci. Organometallics = Organometallics Organon F = Organon F Organon = Organon Organophosphorus Chemistry, Vol 34 = Spr-organophos Chem Organophosphorus Chemistry, Vol 34 = Spr-organophos. Chem. Organophosphorus Chemistry, Vol 35 = Spr-organophos Chem Organophosphorus Chemistry, Vol 35 = Spr-organophos. Chem. Organophosphorus Chemistry, Vol 36 = Spr-organophos Chem Organophosphorus Chemistry, Vol 36 = Spr-organophos. Chem. Organophosphorus Chemistry, Vol 37 = Spr-organophos Chem Organophosphorus Chemistry, Vol 37 = Spr-organophos. Chem. Organ = Organ Organoselenium Chemistry = Top Curr Chem Organoselenium Chemistry = Top. Curr. Chem. Organosilanes: Properties, Performance and Applications = Mater Sci Technol Organosilanes: Properties, Performance and Applications = Mater. Sci. Technol. Organosulfur Chemistry Ii = Top Curr Chem Organosulfur Chemistry Ii = Top. Curr. Chem. Organosulfur Chemistry I = Top Curr Chem Organosulfur Chemistry I = Top. Curr. Chem. Organotransition Metal Chemistry of Poly(pyrazolyl)borates, Pt 1 = Adv Organomet Chem Organotransition Metal Chemistry of Poly(pyrazolyl)borates, Pt 1 = Adv. Organomet. Chem. Organ Preservation With Htk and Uw Solution = Contibut Transplant Organ Preservation With Htk and Uw Solution = Contibut. Transplant. Organ-selective Actions of Steroid Hormones = E Schering Res Fdn W Organ-selective Actions of Steroid Hormones = E. Schering. Res. Fdn. W. Organ Shortage: The Solutions = Transp Cl Immun Sfmm Organ Shortage: The Solutions = Transp. Cl. Immun. Sfmm. Organs, Organisms, Organizations = Lit Cultural Theory Organs, Organisms, Organizations = Lit. Cultural. Theory. Organ Transplantation 1990 = Dev Surgery Organ Transplantation 1990 = Dev. Surgery. ORGYN : Organon's magazine on women & health = ORGYN Oriens Antiquus: rivista del Centro per le Antichità e la Storia dell'Arte del vicino Oriente = OA Oriens antiquus. Rivista del Centro per le antichità e la storia dell’arte del Vicino Oriente = OrAnt Oriens Christianus: Hefte für die Kunde des christlichen Orients = OC Oriens christianus = OrChr Oriens extremus = Oriens Extremus Oriental Art = Oriental Art Oriental Foods and Herbs = Acs Sym Ser Oriental Foods and Herbs = Acs. Sym. Ser. Orientalia Christiana Analecta = Orient Christ Analec Orientalia Christiana Analecta = Orient. Christ. Analec. Orientalia Christiana Periodica = OCP Orientalia christiana periodica = OrChrPer Orientalia Lovaniensia Analecta = Orient Lovan Anal Orientalia Lovaniensia Analecta = Orient. Lovan. Anal. Orientalia Lovaniensia Periodica = OLP Orientalia (Pontificio Istituto biblico) = Or Orientalia Suecana. An International Journal of Indological, Iranian, Semitic, Turkic Studies = OrSu Oriental Insects = Orient Insects Oriental Insects = Orient. Insects Oriental Institute Publications = OIP Orientalism, Empire and National Culture = Camb Imp Post-col St Orientalism, Empire and National Culture = Camb. Imp. Post-col. St. Orientalistische Literaturzeitung = OLZ Orientalistische Literaturzeitung = OLZ Oriental Journal of Chemistry = Orient. J. Chem. Orient-Archäologie = OrA Orientational Phenomena in Polymers = Prog Coll Pol Sci S Orientational Phenomena in Polymers = Prog. Coll. Pol. Sci. S. Orientation Scolaire Et Professionelle = Orientat Sc Prof Orientation Scolaire Et Professionelle = Orientat. Sc. Prof. Oriente Cristiano = Oriente Crist Oriente moderno = Oriente Mod Orient. The Reports of the Society for Near Eastern Studies in Japan = Orient Origenes Die Homilien Zum Buch Jesaja = Orig-werke Dtsch Ube Origenes Die Homilien Zum Buch Jesaja = Orig-werke. Dtsch. Ube. Origenes-werke Mit Deutscher Ubersetzung = Orig-werke Dtsch Ube Origenes-werke Mit Deutscher Ubersetzung = Orig-werke. Dtsch. Ube. Origeniana Septima: Origen in Analyses of The Fourth Century = Bib Eph The Origeniana Septima: Origen in Analyses of The Fourth Century = Bib. Eph. The Origen of Alexandria = Chr Jud Ant Origen of Alexandria = Chr. Jud. Ant. Origen's Hexapla and Fragments = Texte Stud Antik Jud Origen's Hexapla and Fragments = Texte. Stud. Antik. Jud. Original Explosion That Created Worlds: Essays On Werewere Liking's Art and Writings = Francopolyphonies Original Explosion That Created Worlds: Essays On Werewere Liking's Art and Writings = Francopolyphonies. Origin and Acceleration of Cosmic Rays = Adv Space Res Origin and Acceleration of Cosmic Rays = Adv. Space. Res. Origin and Acceleration of Cosmic Rays = Adv Space Res-series Origin and Acceleration of Cosmic Rays = Adv. Space. Res-series. Origin and Diversification of Language = Mem Calif Acad Sci Origin and Diversification of Language = Mem. Calif. Acad. Sci. Origin and Dynamics of Solar Magnetism = Space Sci Ser Issi Origin and Dynamics of Solar Magnetism = Space. Sci. Ser. Issi. Origin and Evolution of Interplanetary Dust = Astrophys Space Sc L Origin and Evolution of Interplanetary Dust = Astrophys. Space. Sc. L. Origin and Evolution of The Caribbean Plate = Geol Soc Spec Publ Origin and Evolution of The Caribbean Plate = Geol. Soc. Spec. Publ. Origin and Evolution of The Vertebrate Immune System = Curr Top Microbiol Origin and Evolution of The Vertebrate Immune System = Curr. Top. Microbiol. Origin and Evolution of The Vertebrate Telencephalon, With Special Reference to The Mammalian Neocortex = Adv Anat Embryol Cel Origin and Evolution of The Vertebrate Telencephalon, With Special Reference to The Mammalian Neocortex = Adv. Anat. Embryol. Cel. Origin and Posterity of The Gospel of John = Divin Lect Origin and Posterity of The Gospel of John = Divin. Lect. Origination of Organismal Form = Vienna Ser Theor Bio Origination of Organismal Form = Vienna. Ser. Theor. Bio. Origination of Organismal Form = Vienna S Theor Biol Origination of Organismal Form = Vienna. S. Theor. Biol. Origini. Preistoria e protostoria delle civiltà antiche = Origini Origin of Cancers: Clinical Perspectives and Implications of A Stem-cell Theory of Cancer = Cancer Treat Res Origin of Cancers: Clinical Perspectives and Implications of A Stem-cell Theory of Cancer = Cancer Treat. Res. Origin of Discrete Particles = Ser Knots Everything Origin of Discrete Particles = Ser. Knots. Everything. Origin of Electoral Systems in The Post-war Era: A Worldwide Approach = Routl Res Comp Polit Origin of Electoral Systems in The Post-war Era: A Worldwide Approach = Routl. Res. Comp. Polit. Origin of Matter and Evolution of Galaxies = Aip Conf Proc Origin of Matter and Evolution of Galaxies = Aip. Conf. Proc. Origin of Organized Crime in America: The New York City Mafia, 1891-1931 = Routl Adv Am Hist Origin of Organized Crime in America: The New York City Mafia, 1891-1931 = Routl. Adv. Am. Hist. Origin of Stars and Planetary Systems = Nato Adv Sci I C-mat Origin of Stars and Planetary Systems = Nato. Adv. Sci. I. C-mat. Origin of Structure in The Universe = Nato Adv Sci Inst Se Origin of Structure in The Universe = Nato. Adv. Sci. Inst. Se. Origin of The History of Science in Classical Antiquity = Peripatoi-philol-his Origin of The History of Science in Classical Antiquity = Peripatoi-philol-his. Origin of Values = Soc Econ Origin of Values = Soc. Econ. Origins, Ancestry and Alliance: Explorations in Austronesian Ethnography = Comp Austro Ser Origins, Ancestry and Alliance: Explorations in Austronesian Ethnography = Comp. Austro. Ser. Origins and Consequences of Obesity = Ciba F Symp Origins and Consequences of Obesity = Ciba. F. Symp. Origins and Development of High Ability = Ciba F Symp Origins and Development of High Ability = Ciba. F. Symp. Origins and Identities in French Literature = Fr Lit Ser Origins and Identities in French Literature = Fr. Lit. Ser. Origins and Role of The Laity = Champ Ethiq Origins and Role of The Laity = Champ. Ethiq. Origins and Successors of The Compact Disc: Contributions of Philips to Optical Storage = Philips Res Book Ser Origins and Successors of The Compact Disc: Contributions of Philips to Optical Storage = Philips Res. Book. Ser. Origins = Astr Soc P Origins = Astr. Soc. P. Origins of Anatomically Modern Humans = Interd Cont Origins of Anatomically Modern Humans = Interd. Cont. Origins of Black Humanism in America: Reverend Ethelred Brown and The Unitarian Church = Black Relig Woman Th Origins of Black Humanism in America: Reverend Ethelred Brown and The Unitarian Church = Black Relig. Woman. Th. Origins of Geology in Italy = Geol Soc Am Spec Pap Origins of Geology in Italy = Geol. Soc. Am. Spec. Pap. Origins of Globalization = Rout Int Stud Bus Hi Origins of Globalization = Rout. Int. Stud. Bus. Hi. Origins of Human Communication = Jean Nicod Lect Origins of Human Communication = Jean. Nicod. Lect. Origins of Jewish Secularization in Eighteenth-century Europe = Jew Cult Context Origins of Jewish Secularization in Eighteenth-century Europe = Jew. Cult. Context. Origins of Left-wing Cinema in China, 1932-37 = E Asia Hist Polit So Origins of Left-wing Cinema in China, 1932-37 = E. Asia. Hist. Polit. So. Origins of Life and Evolution of Biospheres = Origins Life Evol B Origins of Life and Evolution of Biospheres = Origins Life Evol. B. Origins of Life and Evolution of The Biosphere = Origins Life Evol B Origins of Life and Evolution of The Biosphere = Origins Life Evol. B. Origins of Life and Evolution of the Biosphere = Origins Life Evol. Biosphere Origins of Life and Evolution of the Biosphere = Orig. Life Evol. Biosph. Origins of Life and Evolution Of The Biosphere=Orig Life Evol Biosph;; Origins of life and evolution of the biosphere : the journal of the International Society for the Study of the Origin of Life = Orig Life Evol Biosph Origins of life = Orig Life Origins of Life = Orig. Life Origins of Stars and Planets: The Vlt View = Eso Astrophy Symp Origins of Stars and Planets: The Vlt View = Eso. Astrophy. Symp. Origins of The American-israeli Alliance: The Jordanian Factor = Isr Hist Polit Soc Origins of The American-israeli Alliance: The Jordanian Factor = Isr. Hist. Polit. Soc. Origins of The European Security System: The Helsinki Process Revisited, 1965-75 = Css Stud Sec Int Rel Origins of The European Security System: The Helsinki Process Revisited, 1965-75 = Css. Stud. Sec. Int. Rel. Origins of The Modern Chinese Press: The Influence of The Protestant Missionary Press in Late Qing China = Routl Media Cult Soc Origins of The Modern Chinese Press: The Influence of The Protestant Missionary Press in Late Qing China = Routl. Media. Cult. Soc. Origins = Origins Origins Studies in The Sources of Scientific Creativity = Orig Stud Sourc Sci Origins Studies in The Sources of Scientific Creativity = Orig. Stud. Sourc. Sci. ORINS [reports]. U.S. Atomic Energy Commission = ORINS Rep US At Energy Comm Orizzonti della ortopedia odierna e della riabilitazione = Orizz Ortop Odie Riabil Orizzonti della Ortopedia Odierna e della Riabilitazione = Orizz. Ortop. Odie. Riabil. Orizzonti. Rassegna di archeologia = Orizzonti ORL-head and neck nursing : official journal of the Society of Otorhinolaryngology and Head-Neck Nurses = ORL Head Neck Nurs ORL-Head and Neck Nursing = ORL. Head Neck Nurs. Orl-journal for Oto-rhino-laryngology and Its Related Specialties = Orl J Oto-rhino-lary Orl-journal for Oto-rhino-laryngology and Its Related Specialties = Orl. J. Oto-rhino-lary. ORL; journal for oto-rhino-laryngology and its related specialties = ORL J Otorhinolaryngol Relat Spec Orl; Journal of Oto-Rhino-Laryngology and Its Related Specialties=ORL J Otorhinolaryngol Relat Spec;; ORL; Journal of Oto-Rhino-Laryngology and Its Related Specialties = ORL. J. Otorhinolaryngol. Relat. Spec. OR manager = OR Manager OR Manager = OR Manager Ornamental Plant Improvement = Acta Hortic Ornamental Plant Improvement = Acta. Hortic. Ornicar? = Ornicar Ornis Fennica = Ornis Fenn. Ornis Fennica = Ornis Fennica Ornis Scandinavica = Ornis Scand Ornis Scandinavica = Ornis Scand. Ornithological Science = Ornithol Sci Ornithological Science = Ornithol. Sci. Ornithologische Abhandlungen = Ornithol. Abh. ornithologische Beobachter, Der = Ornithol. Beob. Ornithologische Jahreshefte für Baden-Württemberg = Ornithol. Jahresh. Baden-Württ. Ornitologia Neotropical = Ornitol Neotrop Ornitologia Neotropical = Ornitol. Neotrop. ORNL-NSIC [reports]. U.S. Atomic Energy Commission = ORNL-NSIC Rep ORNL = ORNL ORNL-TM [reports]. U.S. Atomic Energy Commission = ORNL-TM Rep ORNL. U.S. Atomic Energy Commission = ORNL Orofacial Pain and Temporomandibular Disorders = Adv Pain Res Ther Orofacial Pain and Temporomandibular Disorders = Adv. Pain Res. Ther. ORO Reports = ORO Rep. ORO [reports]. U.S. Atomic Energy Commission = ORO Rep Orotidine Monophosphate Decarboxylase: Mechanistic Dialogue = Top Curr Chem Orotidine Monophosphate Decarboxylase: Mechanistic Dialogue = Top. Curr. Chem. Orovosok lapja (Magyar Orvosok Szabad Szakszervezete) = Orvosok Lapja Nepeu Orphanet journal of rare diseases = Orphanet J Rare Dis Orphanet Journal of Rare Diseases = Orphanet J Rare Dis Orphanet Journal of Rare Diseases = Orphanet J. Rare Dis. Orpheus. Journal of Indo-European, Palaeo-Balkan and Thracian Studies = OrpheusThracSt Orpheus: rivista di umanità classica e cristiana = Orpheus Orpheus. Rivista di umanità classica e cristiana = Orpheus Orphism and Christianity in Late Antiquity = Sozomena-stud Recov Orphism and Christianity in Late Antiquity = Sozomena-stud. Recov. Or Spectrum = Or Spectrum OR Spectrum=OR Spectrum Or Spektrum = Or Spektrum OR Spektrum=OR Spektrum OR tech = OR Tech OR Tech = OR Tech Orthodontic review = Orthod Rev Orthodontic Review = Orthod. Rev. Orthodontics and Craniofacial Research = Orthod. Craniofac. Res. Orthodontics & craniofacial research = Orthod Craniofac Res Orthodontics & Craniofacial Research = Orthod Craniofac Res Orthodontics & Craniofacial Research = Orthod. Craniofac. Res. Orthodontic Treatment: Management of Unfavorable Sequelae = Cranio Grow Orthodontic Treatment: Management of Unfavorable Sequelae = Cranio. Grow. Orthodontic Treatment: Outcome and Effectiveness = Cranio Grow Orthodontic Treatment: Outcome and Effectiveness = Cranio. Grow. Orthodontie Francaise=Orthod Fr;; Orthodontie Francaise = Orthod. Fr. Orthodontike epitheorese : epiotemoniko periodiko tes Orthodontikes Etaireias tes Ellados / OEE = Orthod Epitheorese Orthodontike Epitheorese = Orthod. Epitheorese Orthodontist = Orthodontist Orthodox Forum Series = Orthodox Forum Ser Orthodox Forum Series = Orthodox Forum Ser. Orthogonal Frequency Division Multiple Access Fundamentals and Applications = Wirel Netw Mob Commu Orthogonal Frequency Division Multiple Access Fundamentals and Applications = Wirel. Netw. Mob. Commu. Orthogonal Frequency Division Multiplexing for Wireless Communications = Signals Commun Techn Orthogonal Frequency Division Multiplexing for Wireless Communications = Signals. Commun. Techn. Orthogonal Functions, Moment Theory, and Continued Fractions = Lect Notes Pure Appl Orthogonal Functions, Moment Theory, and Continued Fractions = Lect. Notes. Pure. Appl. Orthogonal Polarization Spectral Imaging = Progr Appl Micr Orthogonal Polarization Spectral Imaging = Progr. Appl. Micr. Orthogonal Polynomials and Special Functions: Computation and Applications = Lect Notes Math Orthogonal Polynomials and Special Functions: Computation and Applications = Lect. Notes. Math. Orthogonal Polynomials and Special Functions = Lect Notes Math Orthogonal Polynomials and Special Functions = Lect. Notes. Math. Orthogonal Polynomials and Their Applications / = Lect Notes Pure Appl Orthogonal Polynomials and Their Applications / = Lect. Notes. Pure. Appl. Orthogonal Polynomials : Theory and Practice = Nato Adv Sci I C-mat Orthogonal Polynomials : Theory and Practice = Nato. Adv. Sci. I. C-mat. Orthomolecular Psychiatry = Orthomol Psych Orthomolecular Psychiatry = Orthomol. Psych. Orthopade=Orthopade;; Orthopade = Orthopade Orthopaedic audio-synopsis continuing medical education = Orthop Surg Orthopaedic nursing / National Association of Orthopaedic Nurses = Orthop Nurs Orthopaedic Nursing = Orthop Nurs Orthopaedic Nursing = Orthop. Nurs. Orthopaedic review = Orthop Rev Orthopaedic Review = Orthop. Rev. Orthopaedics-oxford = Orthopaedics-oxford Orthopaedics & Traumatology-surgery & Research = Orthop Traumatol-sur Orthopaedics & Traumatology-surgery & Research = Orthop. Traumatol-sur. Orthopedic Clinics of North America = Orthop Clin N Am Orthopedic Clinics of North America = Orthop. Clin. N. Am. Orthopedic Clinics of North America=Orthop Clin North Am;; Orthopedic Clinics of North America = Orthop. Clin. North Am. Orthopedic nursing / National Association of Orthopedic Nurses = Orthop Nurs Orthopedic Nursing = Orthop. Nurs. Orthopedics=Orthopedics;; Orthopedics = Orthopedics Orthotics and Prosthetics = Orthotics Prosthet Orthotics and Prosthetics = Orthotics Prosthet. Ortodoncia = Ortodoncia Ortodontia = Ortodontia Ortopedia maxilar = Ortop Maxilar Ortopedia Maxilar = Ortop. Maxilar Ortopedia, traumatologia, rehabilitacja = Ortop Traumatol Rehabil Ortopediia travmatologiia i protezirovanie = Ortop Travmatol Protez Ortopediia Travmatologiia i Protezirovanie = Ortop. Travmatol. Protez. Orvosi hetilap = Orv Hetil Orvosi Hetilap=Orv Hetil;; Orvosi Hetilap = Orv. Hetil. Orvoskepzes = Orvoskepzes Orvostorteneti kozlemenyek = Orvostort Kozl Oryx = Oryx Osaka city medical journal = Osaka City Med J Osaka City Medical Journal=Osaka City Med J;; Osaka City Medical Journal = Osaka City Med. J. Osaka Daigaku Shigaku Zasshi (Journal of the Osaka University Dental Society) = Osaka Daigaku Shigaku Zasshi [Osaka Daigaku shigaku zasshi] The journal of Osaka University Dental Society = Osaka Daigaku Shigaku Zasshi Osaka Economic Papers=Osaka Econ. Pap. Osaka Journal of Mathematics = Osaka J. Math. Osaka Journal of Mathematics = Osaka J Math Osaka Journal of Mathematics = Osaka J. Math. Osaka University law review = Osaka Univ Law Rev Osap Prevention Monograph = Osap Prev M Osap Prevention Monograph = Osap Prev. M. Osa Proceedings On Advanced Solid-state Lasers = Osa Proc Osa Proceedings On Advanced Solid-state Lasers = Osa Proc. Osa Proceedings On Advanced Solid-state Lasers / = Osa Proc Osa Proceedings On Advanced Solid-state Lasers / = Osa Proc. Osa Proceedings On Advanced Solid-state Lasers, Vol 13 = Osa Proc Osa Proceedings On Advanced Solid-state Lasers, Vol 13 = Osa Proc. Osa Proceedings On Advances in Optical Imaging and Photon Migration = Osa Proc Osa Proceedings On Advances in Optical Imaging and Photon Migration = Osa Proc. Osa Proceedings On Inaugural Forum for The Research Center for Optical Physics = Osa Proc Osa Proceedings On Inaugural Forum for The Research Center for Optical Physics = Osa Proc. Osa Proceedings On Photonics in Switching, Vol 16 = Osa Proc Osa Proceedings On Photonics in Switching, Vol 16 = Osa Proc. Osa Proceedings On Photonic Switching, Vol 8 = Osa Proc Osa Proceedings On Photonic Switching, Vol 8 = Osa Proc. Osa Proceedings On Picosecond Electronics and Optoelectronics = Osa Proc Osa Proceedings On Picosecond Electronics and Optoelectronics = Osa Proc. Osa Proceedings On Short-wavelength Coherent Radiation : Generation and Applications, Vol 11 = Tech Dig S Osa Proceedings On Short-wavelength Coherent Radiation : Generation and Applications, Vol 11 = Tech. Dig. S. Osa Proceedings On Shortwavelength V: Physics With Intense Laser Pulses = Osa Proc Osa Proceedings On Shortwavelength V: Physics With Intense Laser Pulses = Osa Proc. Osa Proceedings On Soft-x-ray Projection Lithography = Osa Proc Osa Proceedings On Soft-x-ray Projection Lithography = Osa Proc. Osa Proceedings On Soft X-ray Projection Lithography = Osa Proc Osa Proceedings On Soft X-ray Projection Lithography = Osa Proc. Osa Proceedings On Ultrafast Electronics and Optoelectronics = Osa Proc Osa Proceedings On Ultrafast Electronics and Optoelectronics = Osa Proc. Osa Trends in Optics and Photonics = Osa Trends Opt Photo Osa Trends in Optics and Photonics = Osa Trends Opt. Photo. Oscar Montelius 150 Years = Kungl Vit H Oscar Montelius 150 Years = Kungl. Vit. H. Oscillating Heterogeneous Catalytic Systems = Stud Surf Sci Catal Oscillating Heterogeneous Catalytic Systems = Stud. Surf. Sci. Catal. Oscillation-based Test in Mixed-signal Circuits = Front Electron Test Oscillation-based Test in Mixed-signal Circuits = Front. Electron. Test Oscillatory Event-related Brain Dynamics = Nato Adv Sci Inst Se Oscillatory Event-related Brain Dynamics = Nato. Adv. Sci. Inst. Se. Oscillatory Integrals and Phenomena Beyond All Algebraic Orders = Lect Notes Math Oscillatory Integrals and Phenomena Beyond All Algebraic Orders = Lect. Notes. Math. Osgoode Hall law journal = Osgoode Hall Law J Osiris = Osiris Osiris = Osiris (2) Osjekizbornik = OsjZbor Osler Library newsletter = Osler Libr Newsl Osmoregulation and Drinking in Vertebrates = Exptl Biol Rev Osmoregulation and Drinking in Vertebrates = Exptl. Biol. Rev. Osmosensing and Osmosignaling = Method Enzymol Osmosensing and Osmosignaling = Method. Enzymol. Osmotic Dehydration & Vacuum Impregnation = Food Preserv Technol Osmotic Dehydration & Vacuum Impregnation = Food. Preserv. Technol. Osnabrücker Studien zur Mathematik = Osnabrück. Stud. Math. Ospedale Maggiore = Osp. Maggiore Ospedale Psichiatrico = Osp. Psichiatr. Ospedali d'Italia - chirurgia = Osp Ital Chir Ospedali d'Italia Chirurgia = Osp. Ital. Chir. Ostbairische Grenzmarken. Passauer Jahrbuch für Geschichte, Kunst und Volkskunde = OstbGrenzm Osteoarthritis and cartilage / OARS, Osteoarthritis Research Society = Osteoarthritis Cartilage Osteoarthritis and Cartilage = Osteoarthr Cartilage Osteoarthritis and Cartilage = Osteoarthr. Cartilage Osteoarthritis and Cartilage=Osteoarthritis Cartilage;; Osteoarthritis and Cartilage = Osteoarthritis Cartilage Osteoarthritis, Inflammation and Degradation: A Continuum = Biomed Health Res Osteoarthritis, Inflammation and Degradation: A Continuum = Biomed. Health. Res. Osteoimmunology = Adv Exp Med Biol Osteoimmunology = Adv. Exp. Med. Biol. Osteoimmunology: Interactions of The Immune and Skeletal Systems Ii = Adv Exp Med Biol Osteoimmunology: Interactions of The Immune and Skeletal Systems Ii = Adv. Exp. Med. Biol. Osteologie = Osteologie Osteopathic hospital leadership = Osteopath Hosp Leadersh Osteopathic Hospital Leadership = Osteopath. Hosp. Leadersh. Osteopathic Hospital = Osteopath. Hosp. Osteopathic medicine and primary care = Osteopath Med Prim Care Osteopontin: Role in Cell Signalling and Adhesion = Ann Ny Acad Sci Osteopontin: Role in Cell Signalling and Adhesion = Ann. Ny. Acad. Sci. Osteoporosis 1996 = Int Congr Ser Osteoporosis 1996 = Int. Congr. Ser. Osteoporosis international : a journal established as result of cooperation between the European Foundation for Osteoporosis and the National Osteoporosis Foundation of the USA = Osteoporos Int Osteoporosis International=Osteoporos Int;; Osteoporosis International = Osteoporos. Int. Osteoporosis International = Osteoporosis Int Osteoporosis International = Osteoporosis Int. Osteoporosis: Pathophysiology and Clinical Management, Second Edition = Contemp Endocrinol S Osteoporosis: Pathophysiology and Clinical Management, Second Edition = Contemp. Endocrinol. S. Österreichische Akademie der Wissenschaften. Almanach = AlmanachWien Österreichische Akademie der Wissenschaften = Anz. Österreich. Akad. Wiss. Math.-Natur. Kl. Österreichische Akademie der Wissenschaften Mathematisch-Naturwissenschaftliche Klasse = Österreich. Akad. Wiss. Math.-Natur. Kl. Sitzungsber. II Osterreichische Akademie Der Wissenschaften, Philosophisch-hhistorische Klasse, Historische Kommission - Zentraleuropa Studien = Oaw Zentraleuropa St Osterreichische Akademie Der Wissenschaften, Philosophisch-hhistorische Klasse, Historische Kommission - Zentraleuropa Studien = Oaw. Zentraleuropa St. Österreichische Akademie der Wissenschaften, Philosophisch-Historische Klasse. Denkschriften = DenkschrWien Osterreichische Akademie Der Wissenschaften Philosophisch-historische Klasse Denkschriften = Oaw Denkschriften Osterreichische Akademie Der Wissenschaften Philosophisch-historische Klasse Denkschriften = Oaw. Denkschriften Osterreichische Akademie Der Wissenschaften Schriftenreihe Der Erdwissenschaftlichen Kommissionen = Schr Erdwissenschaft Osterreichische Akademie Der Wissenschaften Schriftenreihe Der Erdwissenschaftlichen Kommissionen = Schr. Erdwissenschaft. Osterreichische Arztezeitung = Osterr Arzteztg Osterreichische Botanische Zeitschrift = Osterr Bot Z Osterreichische Botanische Zeitschrift = Osterr. Bot. Z. Österreichische botanische Zeitschrift = Österr. bot. Z. Osterreichische Chemie Zeitschrift = Osterr. Chem. Z. Osterreichische Dentisten Zeitschrift = Osterr. Dent. Z. Österreichische Forstzeitung = Österr. Forstztg. Osterreichische Hebammenzeitung = Osterr Hebammenztg Osterreichische Hebammenzeitung = Osterr. Hebammenztg. Osterreichische Kneipp-Magazin = Osterr. Kneipp. Mag. Osterreichische Krankenpflegezeitschrift = Osterr Krankenpflegez Osterreichische Krankenpflegezeitschrift = Osterr. Krankenpflegez. Osterreichische Musikzeitschrift = Osterr Musikz Osterreichische Musikzeitschrift = Osterr. Musikz. Osterreichische Musik Zeitschrift = Osterr Musik Z Osterreichische Musik Zeitschrift = Osterr. Musik Z. Osterreichische Osthefte = Osterr Osthefte Osterreichische Osthefte = Osterr. Osthefte Osterreichische Pflegezeitschrift : Organ des Osterreichischen Gesundheits- und Krankenpflegeverbands = Osterreichische Pflegezeitschrift Osterreichische Schwesternzeitung = Osterr Schwesternztg Osterreichische Schwesternzeitung = Osterr. Schwesternztg. Osterreichisches Forschungszentrum Seibersdorf, Berichte = Oefzs Ber Osterreichisches Forschungszentrum Seibersdorf, Berichte = Oefzs. Ber. Osterreichische Zahnarzte-Zeitung = Osterr. Zahnarzteztg. Osterreichische Zahnarzts-Zeitung; Mitteilungen der Bundesfachgruppe fur Zahnheilkunde der Osterreichischen Arztekammer = Osterr Zahnarzteztg Osterreichische Zahnprothetik = Osterr Zahnprothet Osterreichische Zahnprothetik = Osterr. Zahnprothet. Osterreichische Zahntechniker Handwerk = Osterr Zahntech Handwerk Osterreichische Zahntechniker Handwerk = Osterr. Zahntech. Handwerk Osterreichische Zeitschrift fur Erforschung und Bekampfung der Krebskrankheit = Osterr Z Erforsch Bekampf Krebskr Osterreichische Zeitschrift fur Erforschung und Bekampfung der Krebskrankheit = Osterr. Z. Erforsch. Bekampf. Krebskr. Osterreichische Zeitschrift fur Onkologie. Austrian journal of oncology = Osterr Z Onkol Osterreichische Zeitschrift Fur Politikwissenschaft = Osterr Z Polit Osterreichische Zeitschrift Fur Politikwissenschaft = Osterr. Z. Polit. Osterreichische Zeitschrift Fur Politikwissenschaft = Osterr Z Politwiss Osterreichische Zeitschrift Fur Politikwissenschaft = Osterr. Z. Politwiss. Osterreichische Zeitschrift fur Statistik und Informatik = Osterr Z Stat Inform Osterreichische Zeitschrift fur Stomatologie = Osterr Z Stomatol Osterreichische Zeitschrift fur Stomatologie = Osterr. Z. Stomatol. Osterreichische Zeitschrift Fur Volkskunde = Osterr Z Volskunde Osterreichische Zeitschrift Fur Volkskunde = Osterr. Z. Volskunde. Osteuropa = Osteuropa Ostkirchliche Studien = OS Ostomy Wound Management = Ostomy Wound Manag Ostomy Wound Management = Ostomy Wound Manag. Ostomy/wound management = Ostomy Wound Manage Ostomy/Wound Management = Ostomy. Wound Manage. Ostracods in British Stratigraphy = Micropaleaeontologic Ostracods in British Stratigraphy = Micropaleaeontologic. Ostraka. Rivista di antichità = Ostraka Ostrich = Ostrich Otago Conference Series = Otago Con S Otago Conference Series = Otago Con. S. Otago law review = Otago Law Rev Otechestvennaya Istoriya = Otechestv Istoriya Otechestvennaya Istoriya = Otechestv. Istoriya Other 99%: The Conservation and Biodiversity of Invertebrates = Trzs Nsw Other 99%: The Conservation and Biodiversity of Invertebrates = Trzs. Nsw. Other Global City = Routl Adv Geogr Other Global City = Routl. Adv. Geogr. Other Philadelphia Story: How Local Congregations Suppport Quality of Life in Urban America = City 21st Century Other Philadelphia Story: How Local Congregations Suppport Quality of Life in Urban America = City. 21st. Century. Other Titles in Applied Mathematics = Other Titl Appl Math Other Titles in Applied Mathematics = Other Titl. Appl. Math. Other Worlds: New Argentine Film = New Concepts Lat Am Other Worlds: New Argentine Film = New Concepts. Lat. Am. Otjr-occupation Participation and Health = Otjr-occup Part Heal Otjr-occupation Participation and Health = Otjr-occup. Part. Heal. Otjr-occupation Participation and Health = Otjr-occup Partici H Otjr-occupation Participation and Health = Otjr-occup. Partici. H. Otolaryngologia Polska=Otolaryngol Pol;; Otolaryngologia Polska = Otolaryngol. Pol. Otolaryngologia polska. The Polish otolaryngology = Otolaryngol Pol Otolaryngologic Clinics of North America = Otolaryng Clin N Am Otolaryngologic Clinics of North America = Otolaryng. Clin. N. Am. Otolaryngologic clinics of North America = Otolaryngol Clin North Am Otolaryngologic Clinics of North America=Otolaryngol Clin North Am;; Otolaryngologic Clinics of North America = Otolaryngol. Clin. North Am. Otolaryngology and head and neck surgery = Otolaryngol Head Neck Surg Otolaryngology and Head and Neck Surgery = Otolaryngol. Head Neck Surg. Otolaryngology-head and Neck Surgery = Otolaryng Head Neck Otolaryngology-head and Neck Surgery = Otolaryng. Head. Neck Otolaryngology - Head and Neck Surgery=Otolaryngol Head Neck Surg;; Otolaryngology - Head and Neck Surgery = Otolaryngol. Head Neck Surg. Otolaryngology in Asean Countries = Adv Oto-rhino-laryng Otolaryngology in Asean Countries = Adv. Oto-rhino-laryng. Otolaryngology = Otolaryng Head Neck Otolaryngology = Otolaryng. Head. Neck. Otolaryngology = Otolaryngology Otolaryngology Research Advances = Otolaryngol Res Adv Otolaryngology Research Advances = Otolaryngol. Res. Adv. Otolith Function and Disorders = Adv Oto-rhino-laryng Otolith Function and Disorders = Adv. Oto-rhino-laryng. Otolith Function in Spatial Orientation and Movement = Ann Ny Acad Sci Otolith Function in Spatial Orientation and Movement = Ann. Ny. Acad. Sci. Otology and Neurotology = Otol. Neurotol. Otology & neurotology : official publication of the American Otological Society, American Neurotology Society [and] European Academy of Otology and Neurotology = Otol Neurotol Otology & Neurotology = Otol Neurotol Otology & Neurotology = Otol. Neurotol. Oto-rhino-laryngologia Nova = Oto Rhino Laryn Nova Oto-rhino-laryngologia Nova = Oto. Rhino. Laryn. Nova Otorhinolaryngology, Head and Neck Surgery = Eur Man Med Otorhinolaryngology, Head and Neck Surgery = Eur. Man. Med. Oto-Rino-Laringologia Italiana = Otorinolaringol. Ital. Oto-rino-laringologie = Otorinolaringologie Oto-Rino-Laringologie = Otorinolaringologie. Otosclerosis and Stapes Surgery = Adv Oto-rhino-laryng Otosclerosis and Stapes Surgery = Adv. Oto-rhino-laryng. Ototoxicity: Basic Science and Clinical Applications = Ann Ny Acad Sci Ototoxicity: Basic Science and Clinical Applications = Ann. Ny. Acad. Sci. Ottawa Hispanic Studies = Ott Hisp St Ottawa Hispanic Studies = Ott. Hisp. St. Ottawa law review = Ottawa Law Rev Ottoman Administration of Iraq, 1890-1908 = Soas-rout Stud Mid E Ottoman Administration of Iraq, 1890-1908 = Soas-rout. Stud. Mid. E. Ottoman Army Effectiveness in World War I: A Comparative Study = Mil Hist Policy Ottoman Army Effectiveness in World War I: A Comparative Study = Mil. Hist. Policy. Ottoman Ceramics Embracing The Mediterranean and Their Reflections to The Present = Suna Inan Kirac Res Ottoman Ceramics Embracing The Mediterranean and Their Reflections to The Present = Suna. Inan. Kirac. Res. Otto Neurath and The Unity of Science = Logic Epistemol Unit Otto Neurath and The Unity of Science = Logic. Epistemol. Unit. Otto Neurath's Economics in Context = Vienna Circ Inst Yea Otto Neurath's Economics in Context = Vienna. Circ. Inst. Yea. Otto-novecento = Otto-novecento Ou Daigaku shigakushi = Ou Daigaku Shigakushi Ou Daigaku Shigakushi = Ou Daigaku Shigakushi Oudheidkundige mededelingen uit het Rijksmuseum van oudheden te Leiden = OudhMeded Oudheidkundige Mededelingen uit het Rijksmuseum van Oudheiden te Leiden = OMRL Oud Holland = Oud Holland Oudtestamentische Studien = Old Test St Oudtestamentische Studien = Old. Test. St. Ouest-medical = Ouest Med Ouest Medical = Ouest Med Ouest Medical = Ouest Med. Our planet : the magazine of the United Nations Environment Programme = Our Planet Our Scene Is London: Ben Jonson's City and The Space of The Author = Stud Major Lit Autho Our Scene Is London: Ben Jonson's City and The Space of The Author = Stud. Major. Lit. Autho. Outcomes management for nursing practice = Outcomes Manag Nurs Pract Outcomes Management for Nursing Practice = Outcomes Manag. Nurs. Pract. Outcomes management = Outcomes Manag Outdoor Atmospheric Corrosion = Am Soc Test Mater Outdoor Atmospheric Corrosion = Am. Soc. Test. Mater. Outdoor Recreation Benchmark 1988 : Proceedings of The National Outdoor Recreation Forum = Usda Southe Outdoor Recreation Benchmark 1988 : Proceedings of The National Outdoor Recreation Forum = Usda. Southe. Outer Billiards On Kites = Ann Math Stud Outer Billiards On Kites = Ann. Math. Stud. Outer Heliosphere: The Next Frontiers, Proceedings = Cospar Coll Outer Heliosphere: The Next Frontiers, Proceedings = Cospar. Coll. Outer Planets = Adv Space Res-series Outer Planets = Adv. Space. Res-series. Outflow of Cerebrospinal Fluid = Alfred Benzon Symp S Outflow of Cerebrospinal Fluid = Alfred. Benzon. Symp. S. Outlines in Pharmaceutical Sciences = Outl Pharm Sci Outlines in Pharmaceutical Sciences = Outl. Pharm. Sci. Outlook and bulletin. Southern Dental Society of New Jersey = Outlook Bull South Dent Soc N J Outlook and Bulletin, Southern Dental Society of New Jersey = Outlook Bull. South. Dent. Soc. N. J. Outlook magazine = Outlook Mag Outlook On Agriculture = Outlook Agr Outlook On Agriculture = Outlook Agr. Outlook on agriculture = Outlook Agric Out of Africa I: The First Hominin Colonization of Eurasia = Vertebr Paleobiol Pa Out of Africa I: The First Hominin Colonization of Eurasia = Vertebr. Paleobiol. Pa. Out-of-the-box Leadership: Transforming The Twenty-first-century Army and Other Top-performing Organizations = Monogr Lead Manage Out-of-the-box Leadership: Transforming The Twenty-first-century Army and Other Top-performing Organizations = Monogr. Lead. Manage. Output Measurement in The Service Sectors = Stud Income Output Measurement in The Service Sectors = Stud. Income. Outside Child, in and Out of The Book = Child Lit Cult Outside Child, in and Out of The Book = Child. Lit. Cult. Outsourcing and Human Resource Management: An International Survey = Routledge Stud Growt Outsourcing and Human Resource Management: An International Survey = Routledge. Stud. Growt. Outsourcing Technical Communication: Issues, Policies and Practices = Baywoods Tech Commun Outsourcing Technical Communication: Issues, Policies and Practices = Baywoods. Tech. Commun. Outstanding Dissertations in Linguistics = Outst Diss Lunguist Outstanding Dissertations in Linguistics = Outst. Diss. Lunguist. Ovarian Cancer: New Research = Horiz Cancer Res Ovarian Cancer: New Research = Horiz. Cancer. Res. Ovarian Cancer, Second Edition = Cancer Treat Res Ovarian Cancer, Second Edition = Cancer. Treat. Res. Ovarian Cancer: State of The Art and Future Directions in Translational Research = Adv Exp Med Biol Ovarian Cancer: State of The Art and Future Directions in Translational Research = Adv. Exp. Med. Biol. Ovary: Regulation, Dysfunction and Treatment = Int Congr Ser Ovary: Regulation, Dysfunction and Treatment = Int. Congr. Ser. Overcoming Aids: Lessons Learned From Uganda = Res Glob Child Advoc Overcoming Aids: Lessons Learned From Uganda = Res. Glob. Child. Advoc. Overexploitation and Contamination of Shared Groundwater Resources = Nato Sci Peace Secur Overexploitation and Contamination of Shared Groundwater Resources = Nato. Sci. Peace. Secur. Overijssel (Enschede, Netherlands) = Overijssel Overland = Overland Overseas Emigration and Family Research = Publ State Arch Free Overseas Emigration and Family Research = Publ. State. Arch. Free. Overview of The Changing Role of The Systems Librarian: Systemic Shifts = Chandos Inf Prof Ser Overview of The Changing Role of The Systems Librarian: Systemic Shifts = Chandos. Inf. Prof. Ser. Overweight and The Metabolic Syndrome: From Bench to Bedside = Endocr Updat Overweight and The Metabolic Syndrome: From Bench to Bedside = Endocr. Updat. Overweightness and Walking = Public Health 21st C Overweightness and Walking = Public. Health. 21st. C. Ovidian Transformations = Camb C J Proc Cam Ph Ovidian Transformations = Camb. C. J. Proc. Cam. Ph. Ovulation: Evolving Scientific and Clinical Concepts = Serono Symp Ovulation: Evolving Scientific and Clinical Concepts = Serono. Symp. Ovulation Induction: Basic Science and Clinical Advances = Int Congr Ser Ovulation Induction: Basic Science and Clinical Advances = Int. Congr. Ser. Owl of Minerva = Owl Minerva Ownership and Governance of Enterprises: Recent Innovative Developments = Stud Dev Econ Policy Ownership and Governance of Enterprises: Recent Innovative Developments = Stud. Dev. Econ. Policy. Oxbow Monograph = Oxbow Monogr Oxbow Monograph = Oxbow Monogr. Oxford Agrarian Studies = Oxford Agr Stud Oxford Agrarian Studies = Oxford Agr. Stud. Oxford Applied Mathematics and Computing Science Series = Oxford Appl. Math. Comput. Sci. Ser. Oxford Art Journal = Oxford Art J Oxford Art Journal = Oxford Art J. Oxford bulletin of economics and statistics = Oxf Bull Econ Stat Oxford Bulletin of Economics and Statistics = Oxford B Econ Stat Oxford Bulletin of Economics and Statistics = Oxford B. Econ. Stat. Oxford Bulletin of Economics and Statistics=Oxford Bull. Econ. Statist. Oxford Classic Texts in the Physical Sciences = Oxf. Class. Texts Phys. Sci. Oxford Development Studies=Oxford Devel. Stud. Oxford Economic Papers-new Series = Oxford Econ Pap Oxford Economic Papers-new Series = Oxford Econ. Pap. Oxford economic papers = Oxf Econ Pap Oxford Economic Papers=Oxford Econ. Pap. Oxford Engineering Science Series = Oxford Engrg. Sci. Ser. Oxford German studies = Oxf Ger Stud Oxford German Studies = Oxford Ger Stud Oxford German Studies = Oxford Ger. Stud. Oxford Graduate Texts in Mathematics = Oxf. Grad. Texts Math. Oxford Journal of Archaeology = OJA Oxford Journal of Archaeology = OxfJA Oxford Journal of Archaeology = Oxford J Archaeol Oxford Journal of Archaeology = Oxford J. Archaeol. Oxford journal of legal studies = Oxf J Leg Stud Oxford Journal of Legal Studies = Oxford J Legal Stud Oxford Journal of Legal Studies = Oxford J. Legal Stud. Oxford Lecture Series in Mathematics and Its Applications = Oxf Lec S Math Appl Oxford Lecture Series in Mathematics and Its Applications = Oxf. Lec. S. Math. Appl. Oxford Lecture Series in Mathematics and its Applications = Oxford Lecture Ser. Math. Appl. Oxford Literary Review = Oxford Literary Rev Oxford Literary Review = Oxford Literary Rev. Oxford Logic Guides = Oxford Logic Guides Oxford Logic Guides = Ox Logic G Oxford Logic Guides = Ox. Logic G. Oxford Mathematical Monographs = Oxford Math. Monogr. Oxford Medical Publications = Ox Med Publ Oxford Medical Publications = Ox. Med. Publ. Oxford Medical School gazette = Oxf Med Sch Gaz Oxford Monographs in Private International Law = Ox Mg Priv Int Law Oxford Monographs in Private International Law = Ox. Mg. Priv. Int. Law Oxford Readings in Philosophy = Oxf. Read. Philos. Oxford Review of Economic Policy=Oxford Rev. Econ. Pol. Oxford Review of Economic Policy = Oxford Rev Econ Pol Oxford Review of Economic Policy = Oxford Rev. Econ. Pol. Oxford Review of Education = Oxford Rev Educ Oxford Review of Education = Oxford Rev. Educ. Oxford Reviews of Reproductive Biology = Oxford Rev Reprod B Oxford Reviews of Reproductive Biology = Oxford Rev. Reprod. B. Oxford reviews of reproductive biology = Oxf Rev Reprod Biol Oxford Reviews of Reproductive Biology = Oxf. Rev. Reprod. Biol. Oxford Reviews of Reproductive Biology, Vol 17 = Oxford Rev Reprod B Oxford Reviews of Reproductive Biology, Vol 17 = Oxford Rev. Reprod. B. Oxford Science Publications = Oxford Sci. Publ. Oxford Slavonic papers = Oxf Slav Pap Oxford Statistical Science Series = Oxford Statist. Sci. Ser. Oxford Studies in Ancient Philosophy = OSAPh Oxford Studies in Ancient Philosophy = OxfStPhilos Oxford Studies in Anthropological Linguistics = Ox St Anthropol Ling Oxford Studies in Anthropological Linguistics = Ox. St. Anthropol. Ling. Oxford Studies in Comparative Education = Oxf Stud Comp Educ Oxford Studies in Comparative Education = Oxf. Stud. Comp. Educ. Oxford Studies in Comparative Education = Ox St Com E Oxford Studies in Comparative Education = Ox. St. Com. E. Oxford Studies in Comparative Education = Ox Stud Comp Educ Oxford Studies in Comparative Education = Ox. Stud. Comp. Educ. Oxford Studies in Probability = Oxford Stud. Probab. Oxford Surveys in Information Technology = Oxford Surv Inf Tech Oxford Surveys in Information Technology = Oxford Surv. Inf. Tech. Oxford surveys on eukaryotic genes = Oxf Surv Eukaryot Genes Oxford Surveys on Eukaryotic Genes=Oxf Surv Eukaryot Genes;; Oxford Surveys on Eukaryotic Genes = Oxf. Surv. Eukaryot. Genes Oxford, The Collegiate University: Conflict, Consensus and Continuity = High Educ Dynam Oxford, The Collegiate University: Conflict, Consensus and Continuity = High. Educ. Dynam. Oxidants and Antioxidants, Pt A = Method Enzymol Oxidants and Antioxidants, Pt A = Method. Enzymol. Oxidants and Antioxidants, Pt A = Methods Enzymol Oxidants and Antioxidants, Pt A = Methods. Enzymol. Oxidants and Antioxidants, Pt B = Method Enzymol Oxidants and Antioxidants, Pt B = Method. Enzymol. Oxidation and Combustion Reviews = Oxid Combust Rev Oxidation and Combustion Reviews = Oxid. Combust. Rev. Oxidation and The Testing of Turbine Oils = Am Soc Test Mater Oxidation and The Testing of Turbine Oils = Am. Soc. Test. Mater. Oxidation Communications = Oxid Commun Oxidation Communications = Oxid. Commun. Oxidation in Foods and Beverages and Antioxidant Applications, Vol 1: Understanding Mechanisms of Oxidation and Antioxidant Activity = Woodhead Publ Food S Oxidation in Foods and Beverages and Antioxidant Applications, Vol 1: Understanding Mechanisms of Oxidation and Antioxidant Activity = Woodhead. Publ. Food. S. Oxidation in Foods and Beverages and Antioxidant Applications, Vol 2: Management in Different Industry Sectors = Woodhead Publ Food S Oxidation in Foods and Beverages and Antioxidant Applications, Vol 2: Management in Different Industry Sectors = Woodhead. Publ. Food. S. Oxidation of Alcohols to Aldehydes and Ketones: A Guide to Current Common Practice = Basic React Org Synt Oxidation of Alcohols to Aldehydes and Ketones: A Guide to Current Common Practice = Basic. React. Org. Synt. Oxidation of Metals = Oxid Met Oxidation of Metals = Oxid. Met. Oxidation of Primary Alcohols to Carboxylic Acids: A Guide to Current Common Practice = Basic React Org Synt Oxidation of Primary Alcohols to Carboxylic Acids: A Guide to Current Common Practice = Basic. React. Org. Synt. Oxidative/energy Metabolism in Neurodegenerative Disorders = Ann Ny Acad Sci Oxidative/energy Metabolism in Neurodegenerative Disorders = Ann. Ny. Acad. Sci. Oxidative Medicine and Cellular Longevity = Oxid Med Cell Longev Oxidative Medicine and Cellular Longevity = Oxid. Med. Cell. Longev. Oxidative Neural Injury = Contemp Clin Neurosc Oxidative Neural Injury = Contemp. Clin. Neurosc. Oxidative/nitrosative Stress and Disease = Ann Ny Acad Sci Oxidative/nitrosative Stress and Disease = Ann. Ny. Acad. Sci. Oxidative Stress: A Focus On Cardiovascular Disease Pathogenesis = Cardiol Res Clin Dev Oxidative Stress: A Focus On Cardiovascular Disease Pathogenesis = Cardiol. Res. Clin. Dev. Oxidative Stress and Aging = Mcbu Oxidative Stress and Aging = Mcbu. Oxidative Stress and Free Radical Damage in Neurology = Oxid Stress Appl Bas Oxidative Stress and Free Radical Damage in Neurology = Oxid. Stress Appl. Bas. Oxidative Stress, Cell Activation and Viral Infection = Mcbu Oxidative Stress, Cell Activation and Viral Infection = Mcbu. Oxidative Stress in Applied Basic Research and Clinical Practice = Oxid Stress Appl Bas Oxidative Stress in Applied Basic Research and Clinical Practice = Oxid. Stress Appl. Bas. Oxide and Nitride Semiconductors: Processing, Properties, and Applications = Adv Mater Res-ger Oxide and Nitride Semiconductors: Processing, Properties, and Applications = Adv. Mater. Res-ger. Oxide-based Materials and Devices Ii = Proc Spie Oxide-based Materials and Devices Ii = Proc. Spie. Oxide-based Materials and Devices = Proc Spie Oxide-based Materials and Devices = Proc. Spie. Oxide Based Materials: New Sources, Novel Phases, New Applications = Stud Surf Sci Catal Oxide Based Materials: New Sources, Novel Phases, New Applications = Stud. Surf. Sci. Catal. Oxide-based Systems At The Crossroads of Chemistry = Stud Surf Sci Catal Oxide-based Systems At The Crossroads of Chemistry = Stud. Surf. Sci. Catal. Oxide Minerals : Petrologic and Magnetic Significance = Rev Mineral Oxide Minerals : Petrologic and Magnetic Significance = Rev. Mineral. Oxides = Key Eng Mat Oxides = Key. Eng. Mat. Oxides = Key Eng Mater Oxides = Key. Eng. Mater. Oxide Superconductor Physics and Nano-engineering Ii = P Soc Photo-opt Ins Oxide Superconductor Physics and Nano-engineering Ii = P. Soc. Photo-opt. Ins. Oxide Superconductor Physics and Nano-engineering = P Soc Photo-opt Ins Oxide Superconductor Physics and Nano-engineering = P. Soc. Photo-opt. Ins. Oxy-fuel Combustion for Power Generation and Carbon Dioxide (co2) Capture = Woodhead Publ Ser En Oxy-fuel Combustion for Power Generation and Carbon Dioxide (co2) Capture = Woodhead. Publ. Ser. En. Oxygen and Life: Oxygenases, Oxidase and Lipid Mediators = Int Congr Ser Oxygen and Life: Oxygenases, Oxidase and Lipid Mediators = Int. Congr. Ser. Oxygen Biology and Hypoxia = Method Enzymol Oxygen Biology and Hypoxia = Method. Enzymol. Oxygen Homeostasis and Its Dynamics = Keio Univ Symp Life Oxygen Homeostasis and Its Dynamics = Keio. Univ. Symp. Life. Oxygen in The Solar System = Rev Mineral Geochem Oxygen in The Solar System = Rev. Mineral. Geochem. Oxygen Ion and Mixed Conductors and Their Technological Applications = Nato Adv Sci I E-app Oxygen Ion and Mixed Conductors and Their Technological Applications = Nato. Adv. Sci. I. E-app. Oxygen Radicals in Biological Systems, Pt C = Method Enzymol Oxygen Radicals in Biological Systems, Pt C = Method. Enzymol. Oxygen Radicals in Biological Systems, Pt C = Methods Enzymol Oxygen Radicals in Biological Systems, Pt C = Methods. Enzymol. Oxygen Radicals in Biological Systems, Pt D = Method Enzymol Oxygen Radicals in Biological Systems, Pt D = Method. Enzymol. Oxygen Radicals in Biological Systems, Pt D = Methods Enzymol Oxygen Radicals in Biological Systems, Pt D = Methods. Enzymol. Oxygen Radicals = Int Congr Ser Oxygen Radicals = Int. Congr. Ser. Oxygen Sensing and Hypoxia-induced Responses = Essays Biochem Oxygen Sensing and Hypoxia-induced Responses = Essays. Biochem. Oxygen Sensing = Method Enzymol Oxygen Sensing = Method. Enzymol. Oxygen Sensing: Molecule to Man = Adv Exp Med Biol Oxygen Sensing: Molecule to Man = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Volume Xxiii = Adv Exp Med Biol Oxygen Transport to Tissue Volume Xxiii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xii = Adv Exp Med Biol Oxygen Transport to Tissue Xii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xiii = Adv Exp Med Biol Oxygen Transport to Tissue Xiii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xiv = Adv Exp Med Biol Oxygen Transport to Tissue Xiv = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xix = Adv Exp Med Biol Oxygen Transport to Tissue Xix = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xv = Adv Exp Med Biol Oxygen Transport to Tissue Xv = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xvi = Adv Exp Med Biol Oxygen Transport to Tissue Xvi = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xvii = Adv Exp Med Biol Oxygen Transport to Tissue Xvii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xviii = Adv Exp Med Biol Oxygen Transport to Tissue Xviii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xx = Adv Exp Med Biol Oxygen Transport to Tissue Xx = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxi = Adv Exp Med Biol Oxygen Transport to Tissue Xxi = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxiv = Adv Exp Med Biol Oxygen Transport to Tissue Xxiv = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxix = Adv Exp Med Biol Oxygen Transport to Tissue Xxix = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxv = Adv Exp Med Biol Oxygen Transport to Tissue Xxv = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxvi = Adv Exp Med Biol Oxygen Transport to Tissue Xxvi = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxvii = Adv Exp Med Biol Oxygen Transport to Tissue Xxvii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxviii = Adv Exp Med Biol Oxygen Transport to Tissue Xxviii = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxx = Adv Exp Med Biol Oxygen Transport to Tissue Xxx = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxxi = Adv Exp Med Biol Oxygen Transport to Tissue Xxxi = Adv. Exp. Med. Biol. Oxygen Transport to Tissue Xxxii = Adv Exp Med Biol Oxygen Transport to Tissue Xxxii = Adv. Exp. Med. Biol. Oxytocin = Adv Exp Med Biol Oxytocin = Adv. Exp. Med. Biol. Oxytocin in Maternal, Sexual, and Social Behaviors = Ann Ny Acad Sci Oxytocin in Maternal, Sexual, and Social Behaviors = Ann. Ny. Acad. Sci. Oyo Butsuri = Oyo Butsuri Oyo Yakuri = Oyo Yakuri O'zbekiston Kimyo Jurnali = O'zb. Kim. J. Ozone Science and Engineering = Ozone Sci. Eng. Ozone-science & Engineering = Ozone-sci Eng Ozone-science & Engineering = Ozone-sci. Eng. Ozone: Science & Engineering = Ozone: Sci. Eng. Ozone Variations of Solar Origin = Adv Space Res Ozone Variations of Solar Origin = Adv. Space. Res. P2 Purinoceptors: Localization, Function and Transduction Mechanisms = Ciba F Symp P2 Purinoceptors: Localization, Function and Transduction Mechanisms = Ciba. F. Symp. Pace law review = Pace Law Rev Pace-pacing and Clinical Electrophysiology = Pace Pace-pacing and Clinical Electrophysiology = Pace. Pachart History of Astronomy Series = Pachart Hist. Astronom. Ser. Pachyderm = Pachyderm Pacific affairs = Pac Aff Pacific Affairs = Pac Aff Pacific Affairs = Pac. Aff. Pacific AIDS alert bulletin / South Pacific Commission = Pac AIDS Alert Bull Pacifica : journal of the Melbourne College of Divinity = Pacifica Pacific and Asian Journal of Energy=Pacific Asian J. Energy Pacific Association for Korean Studies = Pac Assoc Korean St Pacific Association for Korean Studies = Pac. Assoc. Korean St. Pacific-basin Finance Journal = Pac-basin Financ J Pacific-basin Finance Journal = Pac-basin. Financ. J. Pacific-Basin Finance Journal=Pacific-Basin Finance J. Pacific Campaign in World War Ii: From Pearl Harbor to Guadalcanal = Cass Ser Nav Policy Pacific Campaign in World War Ii: From Pearl Harbor to Guadalcanal = Cass. Ser. Nav. Policy. Pacific Community = Pac Community Pacific Community = Pac. Community Pacific Economic Bulletin = Pac Econ Bull Pacific Economic Bulletin = Pac. Econ. Bull. Pacific Economic Bulletin=Pacific Econ. Bull. Pacific Economic Review = Pac Econ Rev Pacific Economic Review = Pac. Econ. Rev. Pacific Economic Review=Pacific Econ. Rev. Pacific Focus = Pac Focus Pacific Focus = Pac. Focus Pacific Forestry Centre Canada Information Report = Pacif For C Pacific Forestry Centre Canada Information Report = Pacif. For. C. Pacific From 5000 to 2000 Bp = Colloq Semi Pacific From 5000 to 2000 Bp = Colloq. Semi. Pacific health dialog : a publication of the Pacific Basin Officers Training Program and the Fiji School of Medicine = Pac Health Dialog Pacific historical review = Pac Hist Rev Pacific Historical Review = Pac Hist Rev Pacific Historical Review = Pac. Hist. Rev. Pacific Insects = Pac Insects Pacific Insects = Pac. Insects Pacific Journal of Mathematics = Pacific J. Math. Pacific Journal of Mathematics = Pac J Math Pacific Journal of Mathematics = Pac. J. Math. Pacific Journal of Optimization = Pac J Optim Pacific Journal of Optimization = Pac. J. Optim. Pacific law journal (Sacramento, Calif.) = Pac Law J Pacific medicine and surgery = Pac Med Surg Pacific Medicine and Surgery = Pac Med Surg Pacific Medicine and Surgery = Pac. Med. Surg. Pacific Northwest Fiber Optic Sensor Workshop, Proceedings = P Soc Photo-opt Ins Pacific Northwest Fiber Optic Sensor Workshop, Proceedings = P. Soc. Photo-opt. Ins. Pacific Northwest quarterly = Pac Northwest Q Pacific Northwest Quarterly = Pac Northwest Quart Pacific Northwest Quarterly = Pac. Northwest Quart. Pacific Performances: Theoreticality and Cross-cultural Encounter in The South Seas = Stud Int Perform Pacific Performances: Theoreticality and Cross-cultural Encounter in The South Seas = Stud. Int. Perform. Pacific Philosophical Quarterly = Pac Philos Quart Pacific Philosophical Quarterly = Pac. Philos. Quart. Pacific Pidgins and Creoles: Origins, Growth and Development = Trends Linguist-stud Pacific Pidgins and Creoles: Origins, Growth and Development = Trends. Linguist-stud. Pacific Policy Papers = Pacific Pol Papers Pacific Policy Papers = Pacific Pol. Papers Pacific reporter. Second series = Pac Rep Second Ser Pacific Review = Pac Rev Pacific Review = Pac. Rev. Pacific Rim Agriculture: Opportunities, Competitiveness and Reforms = Agr Policy Pacific Rim Agriculture: Opportunities, Competitiveness and Reforms = Agr. Policy. Pacific Rim Archaeology = Pacif Rim Archaeol Pacific Rim Archaeology = Pacif. Rim Archaeol. Pacific Rim Bio-based Composites Symposium = Fri Bull Pacific Rim Bio-based Composites Symposium = Fri. Bull. Pacific Rim Business and Technology = Pac Rim Bus Technol Pacific Rim Business and Technology = Pac. Rim Bus. Technol. Pacific Salmon Environmental and Life History Models: Advancing Science for Sustainable Salmon in The Future = Am Fish S S Pacific Salmon Environmental and Life History Models: Advancing Science for Sustainable Salmon in The Future = Am. Fish. S. S. Pacific Science = Pac Sci Pacific Science = Pac. Sci. Pacific sociological review = Pac Sociol Rev Pacific Sociological Review = Pac Sociol Rev Pacific Sociological Review = Pac. Sociol. Rev. Pacific studies = Pac Stud Pacific Symposium on Biocomputing. Pacific Symposium on Biocomputing = Pac Symp Biocomput Pacific Symposium on Biocomputing = Pac. Symp. Biocomput. Pacific Trade and Development Conference Series = Pac Trad Dev Conf S Pacific Trade and Development Conference Series = Pac. Trad. Dev. Conf. S. Pacific viewpoint = Pac Viewp Pacing and clinical electrophysiology : PACE = Pacing Clin Electrophysiol Pacing and Clinical Electrophysiology=Pacing Clin Electrophysiol;; Pacing and Clinical Electrophysiology = Pacing Clin. Electrophysiol. Packaged Software Reports = Packag Software Rep Packaged Software Reports = Packag. Software Rep. Package Engineering = Package Eng Package Engineering = Package Eng. Packaging = Packaging Packaging Technology and Science = Packag Technol Sci Packaging Technology and Science = Packag. Technol. Sci. Pacrim 2004 Congress = Australas I Min Met Pacrim 2004 Congress = Australas. I. Min. Met. Pacrim'99: International Congress On Earth Science, Exploration and Mining Around The Pacific Rim, Proceedings = Australas I Min Met Pacrim'99: International Congress On Earth Science, Exploration and Mining Around The Pacific Rim, Proceedings = Australas. I. Min. Met. Pacrim Congress 1995 - Exploring The Rim = Australas I Min Met Pacrim Congress 1995 - Exploring The Rim = Australas. I. Min. Met. Pacs Design and Evaluation: Engineering and Clinical Issues - Medical Imaging 1996 = P Soc Photo-opt Ins Pacs Design and Evaluation: Engineering and Clinical Issues - Medical Imaging 1996 = P. Soc. Photo-opt. Ins. Pacs Design and Evaluation: Engineering and Clinical Issues - Medical Imaging 1997 = P Soc Photo-opt Ins Pacs Design and Evaluation: Engineering and Clinical Issues - Medical Imaging 1997 = P. Soc. Photo-opt. Ins. Pacs Design and Evaluation: Engineering and Clinical Issues = P Soc Photo-opt Ins Pacs Design and Evaluation: Engineering and Clinical Issues = P. Soc. Photo-opt. Ins. Pacs: Design and Evaluation = P Soc Photo-opt Ins Pacs: Design and Evaluation = P. Soc. Photo-opt. Ins. Pact. Revue du Groupe européen d’études pour les techniques physiques, chimiques et mathématiques appliquées à l’archéologie = Pact Padagogische Rundschau = Padagog Rundsch Padagogische Rundschau = Padagog. Rundsch. Paddlefish Management, Propagation, and Conservation in The 21st Century: Building From 20 Years of Research and Management = Am Fish S S Paddlefish Management, Propagation, and Conservation in The 21st Century: Building From 20 Years of Research and Management = Am. Fish. S. S. Paddy and Water Environment = Paddy Water Environ Paddy and Water Environment = Paddy Water Environ. Padiatrie und Grenzgebiete = Padiatr Grenzgeb Padiatrie und Grenzgebiete = Padiatr. Grenzgeb. Padiatrie und Padologie = Padiatr Padol Padiatrie und Padologie = Padiatr. Padol. Padiatrie Und Padologie = Padiatr Padol Padiatrie Und Padologie = Padiatr. Padol. Padiatrie und Padologie. Supplementum = Padiatr Padol Suppl Padiatrie und Padologie. Supplementum = Padiatr. Padol. Suppl. P-adic Analysis = Lect Notes Math P-adic Analysis = Lect. Notes. Math. P-adic Functional Analysis = Lect Notes Pure Appl P-adic Functional Analysis = Lect. Notes. Pure. Appl. P-adic Functional Analysis, Proceedings = Lect Notes Pure Appl P-adic Functional Analysis, Proceedings = Lect. Notes. Pure. Appl. P-adic Lie Groups = Grundlehr Math Wiss P-adic Lie Groups = Grundlehr. Math. Wiss. P-adic Mathematical Physics = Aip Conf Proc P-adic Mathematical Physics = Aip. Conf. Proc. Pads 2008: 22nd International Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W Par Distr Simulat Pads 2008: 22nd International Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W. Par. Distr. Simulat. Pads 2008: 22nd International Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W Prin Adv Distr Sim Pads 2008: 22nd International Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W. Prin. Adv. Distr. Sim. Pads 2009: 23rd Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W Prin Adv Distr Sim Pads 2009: 23rd Workshop On Principles of Advanced and Distributed Simulation, Proceedings = W. Prin. Adv. Distr. Sim. Padusa. Bolletino del Centro polesano di studi storici, archeologici ed etnografici, Rovigo = Padusa Paedagogica historica = Paedagog Hist Paedagogica Historica = Paedagog Hist Paedagogica Historica = Paedagog. Hist. Paedagogik: Die Theorie Der Erziehung Von 1820/21 in Einer Nachschrift = Degruyter Texte Paedagogik: Die Theorie Der Erziehung Von 1820/21 in Einer Nachschrift = Degruyter. Texte. Paedagogische Rundschau = Paedagog Rundsch Paedagogische Rundschau = Paedagog. Rundsch. Paediatria Croatica = Paediatr Croat Paediatria Croatica = Paediatr. Croat. Paediatria Danubiana ... = Paediatr Danub Paediatria Japonica = Paediatr Jpn Paediatria Universitatis Tokyo = Paediatr Univ Tokyo Paediatria Universitatis Tokyo = Paediatr. Univ. Tokyo Paediatrica Indonesiana = Paediatr Indones Paediatrica Indonesiana = Paediatr. Indones. Paediatric anaesthesia = Paediatr Anaesth Paediatric Anaesthesia=Paediatr Anaesth;; Paediatric Anaesthesia = Paediatr Anaesth Paediatric Anaesthesia = Paediatr. Anaesth. Paediatric and perinatal drug therapy = Paediatr Perinat Drug Ther Paediatric and Perinatal Epidemiology = Paediatr Perinat Ep Paediatric and Perinatal Epidemiology = Paediatr. Perinat. Ep. Paediatric and perinatal epidemiology = Paediatr Perinat Epidemiol Paediatric and Perinatal Epidemiology=Paediatr Perinat Epidemiol;; Paediatric and Perinatal Epidemiology = Paediatr. Perinat. Epidemiol. Paediatric Bronchoscopy = Prog Respir Res Paediatric Bronchoscopy = Prog. Respir. Res. Paediatric Cholestasis = Falk Symp Paediatric Cholestasis = Falk. Symp. Paediatric drugs = Paediatr Drugs Paediatric Drugs = Paediatr. Drugs Paediatric Epilepsy Syndromes and Their Surgical Treatment = Curr Prob E Paediatric Epilepsy Syndromes and Their Surgical Treatment = Curr. Prob. E. Paediatric Gastroenterology : Inflammatory Bowel Diseases and Morbus Hirschsprung = Falk Symp Paediatric Gastroenterology : Inflammatory Bowel Diseases and Morbus Hirschsprung = Falk. Symp. Paediatrician = Paediatrician Paediatric Lung Function = Eur Respir Monogr Paediatric Lung Function = Eur. Respir. Monogr. Paediatric nursing = Paediatr Nurs Paediatric Nursing = Paediatr. Nurs. Paediatric Osteology = Int Congr Ser Paediatric Osteology = Int. Congr. Ser. Paediatric Osteology: Prevention of Osteoporosis - A Paediatric Task? = Int Congr Ser Paediatric Osteology: Prevention of Osteoporosis - A Paediatric Task? = Int. Congr. Ser. Paediatric respiratory reviews = Paediatr Respir Rev Paediatric Respiratory Reviews = Paediatr Respir Rev Paediatric Respiratory Reviews = Paediatr. Respir. Rev. Paediatrics & Child Health = Paed Child Healt-can Paediatrics & Child Health = Paed. Child Healt-can. Paediatrics & Child Health = Paediatr Child Healt Paediatrics & Child Health = Paediatr. Child Healt. Paedovita = Paedovita Paf Antagonists : New Developments for Clinical Application = Adv Ap Biot Paf Antagonists : New Developments for Clinical Application = Adv. Ap. Biot. Pagan Latin Culture Between The Third and The Fifth Centuries A.d. = Accad Naz Virg Sci M Pagan Latin Culture Between The Third and The Fifth Centuries A.d. = Accad. Naz. Virg. Sci. M. PAG bulletin = Pag Bull Pageoph Topical Volumes = Pageoph Top Vol Pageoph Topical Volumes = Pageoph Top. Vol. Page's Ohio revised code annotated : containing the text of the official Ohio revised code, effective October 1, 1953, with the addition of all statutes of a general nature enacted by the General Assembly ... and notes of decisions cons... = Pages Ohio Revis Code Annot Ohio Pagine di archeologia. Studi e materiali = PagA Pagine di storia della medicina. Collana = Pagine Stor Med [Collana] Pahlavi medical journal = Pahlavi Med J Pahlavi Medical Journal = Pahlavi Med J Pahlavi Medical Journal = Pahlavi Med. J. Pahs and The Universe: A Symposium to Celebrate The 25th Anniversary of The Pah Hypothesis = Eas Publications Pahs and The Universe: A Symposium to Celebrate The 25th Anniversary of The Pah Hypothesis = Eas. Publications. Paid and Unpaid Labour in The Social Economy: An International Perspective = Aiel Ser Labour Econ Paid and Unpaid Labour in The Social Economy: An International Perspective = Aiel. Ser. Labour Econ. Paideia : Philosophy/phenomenology of Life Inspiring Education for Our Times = Analecta Husserl Paideia : Philosophy/phenomenology of Life Inspiring Education for Our Times = Analecta. Husserl. Paideia : Philosophy/phenomenology of Life Inspiring Education for Our Times = Anal Hus Yb Paideia : Philosophy/phenomenology of Life Inspiring Education for Our Times = Anal. Hus. Yb. Paideia Studies in Philosophia Mathematica "at Large" = Paideia Stud. Philos. Math. at Large Paideuma-a Journal Devoted to Ezra Pound Scholarship = Paideuma Paideuma-a Journal Devoted to Ezra Pound Scholarship = Paideuma. Paideuma. Mitteilungen zur Kulturkunde = Paideuma Paideuma = Paideuma Paideuma-studies in American and British Modernist Poetry = Paideuma Paideuma-studies in American and British Modernist Poetry = Paideuma. Pain and Central Nervous System Disease = Symp Pain R Pain and Central Nervous System Disease = Symp. Pain R. Pain and headache = Pain Headache Pain and Headache = Pain Headache Pain and Injury in Sport = Ethics Sport Pain and Injury in Sport = Ethics. Sport Pain and Its Origins Diagnosis and Treatments = Pain Orig Diagn Trea Pain and Its Origins Diagnosis and Treatments = Pain Orig. Diagn. Trea. Pain and Reproduction = Front Gyn E Pain and Reproduction = Front. Gyn. E. Pain and The Brain = Adv Pain Res Ther Pain and The Brain = Adv. Pain Res. Ther. Pain: Brain Stimulation in The Treatment of Pain = Disabil Stud Pain: Brain Stimulation in The Treatment of Pain = Disabil. Stud. Pain Clinic / = Adv Pain Res Ther Pain Clinic / = Adv. Pain Res. Ther. Pain Clinic = Pain Clinic Pain Forum = Pain Forum Pain:its Nature and Management in Man and Animals = Roy Soc Med Int Cong Pain:its Nature and Management in Man and Animals = Roy. Soc. Med. Int. Cong. Painleve Equations in Differential Geometry of Surfaces H) = Lect Notes Math Painleve Equations in Differential Geometry of Surfaces H) = Lect. Notes. Math. Painleve Transcendents = Nato Adv Sci I B-phy Painleve Transcendents = Nato. Adv. Sci. I. B-phy. Pain Management and Anesthesiology = Dev C C Med Pain Management and Anesthesiology = Dev. C. C. Med. Pain management nursing : official journal of the American Society of Pain Management Nurses = Pain Manag Nurs Pain Management Nursing = Pain Manag Nurs Pain Management Nursing = Pain Manag. Nurs. Pain medicine (Malden, Mass.) = Pain Med Pain Medicine = Pain Med Pain Medicine = Pain Med. Pain=Pain;; Pain = Pain Pain physician = Pain Physician Pain Physician = Pain Physician Pain practice : the official journal of World Institute of Pain = Pain Pract Pain Research and Clinical Management = Pain Res Cl Pain Research and Clinical Management = Pain Res. Cl. Pain Research and Management = Pain Res. Manag. Pain Research & Management = Pain Res Manag Pain Research & Management = Pain Res. Manag. Pain Reviews = Pain Rev Pain Reviews = Pain Rev. Pain. Supplement = Pain Suppl Pain. Supplement = Pain. Suppl. Paintbrush-a Journal of Poetry Translations and Letters = Paintbrush Paintbrush-a Journal of Poetry Translations and Letters = Paintbrush. Pain Treatment Centers At A Crossroads = Prog Pain Res Manag Pain Treatment Centers At A Crossroads = Prog. Pain Res. Manag. Paired and Interacting Galaxies = Nasa Conf P Paired and Interacting Galaxies = Nasa. Conf. P. Pairing-based Cryptography - Pairing 2007 = Lect Notes Comput Sc Pairing-based Cryptography - Pairing 2007 = Lect. Notes. Comput. Sc. Pairing-based Cryptography - Pairing 2008 = Lect Notes Comput Sc Pairing-based Cryptography - Pairing 2008 = Lect. Notes. Comput. Sc. Pairing-based Cryptography - Pairing 2009 = Lect Notes Comput Sc Pairing-based Cryptography - Pairing 2009 = Lect. Notes. Comput. Sc. Pairing-based Cryptography-pairing 2010 = Lect Notes Comput Sc Pairing-based Cryptography-pairing 2010 = Lect. Notes. Comput. Sc. Paj-a Journal of Performance and Art = Paj Paj-a Journal of Performance and Art = Paj. PA Journal = PA J. Pa Journal-physician S Associate = Pa J-phys Assoc Pa Journal-physician S Associate = Pa J-phys. Assoc. Pakistan Dental Review = Pak. Dent. Rev. Pakistan development review = Pak Dev Rev Pakistan Development Review=Pakistan Devel. Rev. Pakistan economic and social review = Pak Econ Soc Rev Pakistan Economic and Social Review=Pakistan Econ. Soc. Rev. Pakistan-japan Relations: Continuity and Change in Economic Relations and Security Interests = Routl Cont S Asia Se Pakistan-japan Relations: Continuity and Change in Economic Relations and Security Interests = Routl. Cont. S. Asia. Se. Pakistan Journal of Analytical Chemistry = Pak. J. Anal. Chem. Pakistan Journal of Analytical & Environmental Chemistry = pak. J. Anal. Environ. Chem. Pakistan Journal of Applied Economics=Pakistan J. Appl. Econ. Pakistan Journal of Biochemistry and Molecular Biology = Pak. J. Biochem. Mol. Biol. Pakistan Journal of Biological Sciences = Pak. J. Biol. Sci. Pakistan journal of biological sciences: PJBS = Pak J Biol Sci Pakistan Journal of Botany = Pakistan J Bot Pakistan Journal of Botany = Pakistan J. Bot. Pakistan Journal of Botany = Pak J Bot Pakistan Journal of Botany = Pak. J. Bot. Pakistan journal of family planning = Pak J Fam Plann Pakistan Journal of Geriatrics = Pak J Geriatr Pakistan Journal of Geriatrics = Pak. J. Geriatr. Pakistan journal of health = Pak J Health Pakistan journal of medical research = Pak J Med Res Pakistan Journal of Medical Sciences = Pak J Med Sci Pakistan Journal of Medical Sciences = Pak. J. Med. Sci. Pakistan Journal of Nematology = Pakistan J Nematol Pakistan Journal of Nematology = Pakistan J. Nematol. Pakistan journal of pharmaceutical sciences = Pak J Pharm Sci Pakistan Journal of Pharmaceutical Sciences = Pak J Pharm Sci Pakistan Journal of Pharmaceutical Sciences = Pak. J. Pharm. Sci. Pakistan Journal of Pharmacology = Pak. J. Pharmacol. Pakistan journal of psychology = Pak J Psychol Pakistan journal of science = Pak J Sci Pakistan Journal of Science = Pak. J. Sci. Pakistan Journal of Scientific and Industrial Research = Pakistan J Sci Ind R Pakistan Journal of Scientific and Industrial Research = Pakistan J. Sci. Ind. R. Pakistan journal of scientific and industrial research = Pak J Sci Ind Res Pakistan Journal of Scientific and Industrial Research = Pak. J. Sci. Ind. Res. Pakistan Journal of Scientific Research = Pak. J. Sci. Res. Pakistan Journal of Statistics = Pakistan J. Statist. Pakistan Journal of Statistics = Pak J Stat Pakistan Journal of Statistics = Pak. J. Stat. Pakistan Journal of Surgery, Gynaecology and Obstetrics = Pak. J. Surg. Gynaecol. Obstet. Pakistan journal of zoology = Pak J Zool Pakistan Journal of Zoology = Pak J Zool Pakistan Journal of Zoology = Pak. J. Zool. Pakistan Nursing and Health Review = Pak. Nurs. Health Rev. Pakistan pediatric journal = Pak Pediatr J Pakistan population review = Pak Popul Rev Pakistan Veterinary Journal = Pak Vet J Pakistan Veterinary Journal = Pak. Vet. J. Palabra Y El Hombre = Palabra Hombre Palaeobiodiversity and Palaeoenvironments = Palaeobiodivers. Palaeoenviron. Palaeobiogeography and Biodiversity Change: The Ordovician and Mesozoic-cenozoic Radiations = Geol Soc Spec Publ Palaeobiogeography and Biodiversity Change: The Ordovician and Mesozoic-cenozoic Radiations = Geol. Soc. Spec. Publ. Palaeobyzantine Notations Iii = East Christ Studies Palaeobyzantine Notations Iii = East. Christ. Studies. Palaeoecology of Africa and The Surrounding Islands = Palaeoeco A Palaeoecology of Africa and The Surrounding Islands = Palaeoeco. A. Palaeoecology of Africa and The Surrounding Islands, Vol 21 = Palaeoeco A Palaeoecology of Africa and The Surrounding Islands, Vol 21 = Palaeoeco. A. Palaeoecology of Africa and The Surrounding Islands, Vol 25 = Palaeoeco A Palaeoecology of Africa and The Surrounding Islands, Vol 25 = Palaeoeco. A. Palaeoecology of Africa and The Surrounding Islands, Vol. 26 = Palaeoeco A Palaeoecology of Africa and The Surrounding Islands, Vol. 26 = Palaeoeco. A. Palaeoecology of Africa and The Surrounding Islands, Vol 27 = Palaeoeco A Palaeoecology of Africa and The Surrounding Islands, Vol 27 = Palaeoeco. A. Palaeoecology of Africa = Palaeoecol Afr Palaeoecology of Africa = Palaeoecol. Afr. Palaeogeography Palaeoclimatology Palaeoecology = Palaeogeogr Palaeocl Palaeogeography Palaeoclimatology Palaeoecology = Palaeogeogr. Palaeocl. Palaeogeography, palaeoclimatology, palaeoecology = Palaeogeogr Palaeoclimatol Palaeoecol Palaeogeography Palaeoclimatology Palaeoecology = Palaeogeogr. Palaeoclimatol. Palaeoecol. Palaeogeography, Palaeoclimatology, Palaeoecology = Palaeogeogr. Palaeoclimatol. Palaeoecol. Palaeohistoria. Acta et communicationes Instituti bio-archaeologici universitatis Groninganae = Palaeohistoria Palaeolimnological Proxies As Tools of Environmental Reconstruction in Fresh Water = Dev Hydrobiol Palaeolimnological Proxies As Tools of Environmental Reconstruction in Fresh Water = Dev. Hydrobiol. Palaeontographica Abteilung A-palaozoologie-stratigraphie = Palaeontogr Abt A Palaeontographica Abteilung A-palaozoologie-stratigraphie = Palaeontogr. Abt. A. Palaeontographica Abteilung B-palaophytologie = Palaeontogr Abt B Palaeontographica Abteilung B-palaophytologie = Palaeontogr. Abt. B. Palaeontologia Electronica = Palaeontol Electron Palaeontologia Electronica = Palaeontol. Electron. Palaeontologische Zeitschrift = Palaentolog. Z. Palaeontologische Zeitschrift = Palaeontol Z Palaeontologische Zeitschrift = Palaeontol. Z. Palaeontologische Zeitschrift = Palaeont Z Palaeontologische Zeitschrift = Palaeont. Z. Palaeontology = Palaeontology Palaeoproterozoic Supercontinents and Global Evolution = Geol Soc Spec Publ Palaeoproterozoic Supercontinents and Global Evolution = Geol. Soc. Spec. Publ. Palaeoseismology: Historical and Prehistorical Records of Earthquake Ground Effects for Seismic Hazard Assessment = Geol Soc Spec Publ Palaeoseismology: Historical and Prehistorical Records of Earthquake Ground Effects for Seismic Hazard Assessment = Geol. Soc. Spec. Publ. Palaeozoic Palaeogeography and Biogeography = Geo Soc Mem Palaeozoic Palaeogeography and Biogeography = Geo. Soc. Mem. Palaeozoic Reefs and Bioaccumulations: Climatic and Evolutionary Controls = Geol Soc Spec Publ Palaeozoic Reefs and Bioaccumulations: Climatic and Evolutionary Controls = Geol. Soc. Spec. Publ. Palaios = Palaios Paläoklimaforschung = Paläoklimaforschung Palc'99: Practical Applications in Language Corpora = Lodz Stud Language Palc'99: Practical Applications in Language Corpora = Lodz. Stud. Language Paleoaltimetry: Geochemical and Thermodynamic Approaches = Rev Mineral Geochem Paleoaltimetry: Geochemical and Thermodynamic Approaches = Rev. Mineral. Geochem. Paleoanthropology and Archaeology of Big-game Hunting: Protein, Fat, Or Politics? = Interd Contrib Arch Paleoanthropology and Archaeology of Big-game Hunting: Protein, Fat, Or Politics? = Interd. Contrib. Arch. Paleobiology of The Dinosaurs = Geol S Am S Paleobiology of The Dinosaurs = Geol. S. Am. S. Paleobiology = Paleobiology Paleoceanography = Paleoceanography Paleoclimate Research = Paleoclim. Res. Paleoclimatology and Paleometeorology : Modern and Past Patterns of Global Atmospheric Transport = Nato Adv Sci I C-mat Paleoclimatology and Paleometeorology : Modern and Past Patterns of Global Atmospheric Transport = Nato. Adv. Sci. I. C-mat. Paleoecology, Biostratigraphy, Paleoceanography and Taxonomy of Agglutinated Foraminifera = Nato Adv Sci I C-mat Paleoecology, Biostratigraphy, Paleoceanography and Taxonomy of Agglutinated Foraminifera = Nato. Adv. Sci. I. C-mat. Paleoenvironmental Record and Applications of Calcretes and Palustrine Carbonates = Geol Soc Am Spec Pap Paleoenvironmental Record and Applications of Calcretes and Palustrine Carbonates = Geol. Soc. Am. Spec. Pap. Paleoenvironments of Bear Lake, Utah and Idaho, and Its Catchment = Geol Soc Am Spec Pap Paleoenvironments of Bear Lake, Utah and Idaho, and Its Catchment = Geol. Soc. Am. Spec. Pap. Paleogene in South America and The Antarctic Pennisula = Asoc Pal Argent Publ Paleogene in South America and The Antarctic Pennisula = Asoc. Pal. Argent. Publ. Paleogeno De America Del Sur Y De La Peninsula Antartica = Asoc Pal Argent Publ Paleogeno De America Del Sur Y De La Peninsula Antartica = Asoc. Pal. Argent. Publ. Paleogeography, Paleoclimate, and Source Rocks = Aapg Stud Geol Paleogeography, Paleoclimate, and Source Rocks = Aapg. Stud. Geol. Paleohispánica. Revista sobre lenguas y culturas de la Hispania antigua = Paleohispanica Paleolithic Prehistory of The Zagros-taurus = U Mus Symp Paleolithic Prehistory of The Zagros-taurus = U. Mus. Symp. Paleontological Journal = Paleontol J Paleontological Journal = Paleontol J+ Paleontological Journal = Paleontol. J. Paleontological Journal = Paleontol. J+.+ Paleontological Journal = Paleontolog J Paleontological Journal = Paleontolog. J. Paleontological Research = Paleontol Res Paleontological Research = Paleontol. Res. Paleontologicheskii Zhurnal = Paleontol Zh Paleontologicheskii Zhurnal = Paleontol. Zh. Paleontology and Geology of Laetoli: Human Evolution in Context: Fossil Hominins and The Associated Fauna, Vol 2 = Vertebr Paleobiol Pa Paleontology and Geology of Laetoli: Human Evolution in Context: Fossil Hominins and The Associated Fauna, Vol 2 = Vertebr. Paleobiol. Pa. Paleontology and Geology of Laetoli: Human Evolution in Context: Geology, Geochronology, Paleoecology and Paleoenvironment, Vol 1 = Vertebr Paleobiol Pa Paleontology and Geology of Laetoli: Human Evolution in Context: Geology, Geochronology, Paleoecology and Paleoenvironment, Vol 1 = Vertebr. Paleobiol. Pa. Paleontology of The Upper Eocene Florissant Formation, Colorado = Geol S Am S Paleontology of The Upper Eocene Florissant Formation, Colorado = Geol. S. Am. S. Paleontology of The Upper Eocene Florissant Formation, Colorado = Geol Soc Am Spec Pap Paleontology of The Upper Eocene Florissant Formation, Colorado = Geol. Soc. Am. Spec. Pap. Paleopathology newsletter = Paleopathol Newsl Paleozoic and Early Mesozoic Paleogeographic Relations : Sierra Nevada, Klamath Mountains and Related Terranes = Geol S Am S Paleozoic and Early Mesozoic Paleogeographic Relations : Sierra Nevada, Klamath Mountains and Related Terranes = Geol. S. Am. S. Palestine and The Gulf States: The Presence At The Table = Middle E Stud Hist P Palestine and The Gulf States: The Presence At The Table = Middle. E. Stud. Hist. P. Palestine Exploration Quarterly = PalEQ Palestine exploration quarterly = Palest Explor Q Palestine Exploration Quarterly = Palest Explor Q Palestine Exploration Quarterly = Palest. Explor. Q. Palestine Exploration Quarterly = PEQ Palestinian Political Prisoners: Identity and Community = Routl Stud Arab Isr Palestinian Political Prisoners: Identity and Community = Routl. Stud. Arab. Isr. Palestinian Refugee Repatriation: Global Perspectives = Routl Stud Mid E Pol Palestinian Refugee Repatriation: Global Perspectives = Routl. Stud. Mid. E. Pol. Palgrave Advances in Byron Studies = Palgrave Adv Palgrave Advances in Byron Studies = Palgrave Adv. Palgrave Advances in Charles Dickens Studies = Palgrave Adv Palgrave Advances in Charles Dickens Studies = Palgrave Adv. Palgrave Advances in Cold War History = Palgrave Adv Palgrave Advances in Cold War History = Palgrave Adv. Palgrave Advances in Continental Political Thought = Palgrave Adv Palgrave Advances in Continental Political Thought = Palgrave Adv. Palgrave Advances in Development Studies = Palgrave Adv Palgrave Advances in Development Studies = Palgrave Adv. Palgrave Advances in Global Governance = Palgrave Adv Palgrave Advances in Global Governance = Palgrave Adv. Palgrave Advances in Henry James Studies = Palgrave Adv Palgrave Advances in Henry James Studies = Palgrave Adv. Palgrave Advances in International Environmental Politics = Palgrave Adv Palgrave Advances in International Environmental Politics = Palgrave Adv. Palgrave Advances in Irish History = Palgrave Adv Palgrave Advances in Irish History = Palgrave Adv. Palgrave Advances in Oscar Wilde Studies = Palgrave Adv Palgrave Advances in Oscar Wilde Studies = Palgrave Adv. Palgrave Advances in The Crusades = Palgrave Adv Palgrave Advances in The Crusades = Palgrave Adv. Palgrave Advances in The Modern History of Sexuality = Palgrave Adv Palgrave Advances in The Modern History of Sexuality = Palgrave Adv. Palgrave Advances in Virginia Woolf Studies = Palgrave Adv Palgrave Advances in Virginia Woolf Studies = Palgrave Adv. Palgrave Advances in Witchcraft Historiography = Palgrave Adv Palgrave Advances in Witchcraft Historiography = Palgrave Adv. Palgrave Advances in World Histories = Palgrave Adv Palgrave Advances in World Histories = Palgrave Adv. Palgrave Advances = Palgrave Adv Palgrave Advances = Palgrave Adv. Palgrave Essential Histories = Palgrave Essent Hist Palgrave Essential Histories = Palgrave Essent. Hist. Palgrave Historical Studies in Witchcraft and Magic = Palgr Hist Stud Wit Palgrave Historical Studies in Witchcraft and Magic = Palgr. Hist. Stud. Wit. Palgrave Historical Studies in Witchcraft and Magic = Palgr Hist Stud Witc Palgrave Historical Studies in Witchcraft and Magic = Palgr. Hist. Stud. Witc. Palgrave Histories of Literature = Palgrave Hist Lit Palgrave Histories of Literature = Palgrave Hist. Lit. Palgrave Macmillan Asian Business Series = Palgr Mac Asian Bus Palgrave Macmillan Asian Business Series = Palgr. Mac. Asian Bus. Palgrave Macmillan Series in International Political Communication = Palgr Mac Ser Int Po Palgrave Macmillan Series in International Political Communication = Palgr. Mac. Ser. Int. Po. Palgrave Macmillan Series in Transnational History = Palg Mac Ser Trans Palgrave Macmillan Series in Transnational History = Palg. Mac. Ser. Trans. Palgrave Macmillan Series On The History of International Thought = Palgr Mac Ser Hist Palgrave Macmillan Series On The History of International Thought = Palgr. Mac. Ser. Hist. Palgrave Macmillan Studies in Banking and Financial Institutions = Palgr Mac Stud Bank Palgrave Macmillan Studies in Banking and Financial Institutions = Palgr. Mac. Stud. Bank. Palgrave Macmillan Studies in Family and Intimate Life = Palgr Mac Stud Fam Palgrave Macmillan Studies in Family and Intimate Life = Palgr. Mac. Stud. Fam. Palgrave Macmillan Studies in Language Variation = Palgr Mac Stud Lang Palgrave Macmillan Studies in Language Variation = Palgr. Mac. Stud. Lang. Palgrave Macmillan Transnational History Series = Palg Mac Transnat H Palgrave Macmillan Transnational History Series = Palg. Mac. Transnat. H. Palgrave Review of British Politics 2005 = Palgr Rev Brit Polit Palgrave Review of British Politics 2005 = Palgr. Rev. Brit. Polit. Palgrave Review of British Politics = Palgr Rev Brit Polit Palgrave Review of British Politics = Palgr. Rev. Brit. Polit. Palgrave Series On Asian Governance = Palgr Ser Asian Gov Palgrave Series On Asian Governance = Palgr. Ser. Asian Gov. Palgrave Shakespeare Studies = Palgrave Shakespear Palgrave Shakespeare Studies = Palgrave Shakespear. Palgrave Studies in Cultural and Intellectual History = Palgrave Stud Cult Palgrave Studies in Cultural and Intellectual History = Palgrave Stud. Cult. Palgrave Studies in Development = Palgrave Stud Dev Palgrave Studies in Development = Palgrave Stud. Dev. Palgrave Studies in European Union Politics = Palgrave Stud Eur Un Palgrave Studies in European Union Politics = Palgrave Stud. Eur. Un. Palgrave Studies in European Union Politics = Palg Stud Eur Un Pol Palgrave Studies in European Union Politics = Palg. Stud. Eur. Un. Pol. Palgrave Studies in Governance Security and Development = Palgr Stud Gov Palgrave Studies in Governance Security and Development = Palgr. Stud. Gov. Palgrave Studies in Governance Security and Development = Palgr Stud Gov Secur Palgrave Studies in Governance Security and Development = Palgr. Stud. Gov. Secur. Palgrave Studies in International Relations = Palgr Stud Int Relat Palgrave Studies in International Relations = Palgr. Stud. Int. Relat. Palgrave Studies in Language History and Language Change = Palgr Stud Lang Hist Palgrave Studies in Language History and Language Change = Palgr. Stud. Lang. Hist. Palgrave Studies in Minority Languages and Communities = Palg Stud Minor Lang Palgrave Studies in Minority Languages and Communities = Palg. Stud. Minor. Lang. Palgrave Studies in Nineteenth-century Writing and Culture = Palgrave Stud Ninet- Palgrave Studies in Nineteenth-century Writing and Culture = Palgrave Stud. Ninet-. Palgrave Studies in Nineteenth-century Writing and Culture = Palgr Stud Nineteen Palgrave Studies in Nineteenth-century Writing and Culture = Palgr. Stud. Nineteen. Palgrave Studies in Oral History = Palgr Stud Oral Hist Palgrave Studies in Oral History = Palgr. Stud. Oral Hist. Palgrave Studies in Pragmatics Language and Cognition = Palg Stud Pragm Lang Palgrave Studies in Pragmatics Language and Cognition = Palg. Stud. Pragm. Lang. Palgrave Studies in Professional and Organizational Discourse = Palg Stud Prof Organ Palgrave Studies in Professional and Organizational Discourse = Palg. Stud. Prof. Organ. Palgrave Studies in Theatre and Performance History = Palg Stud Theat Perf Palgrave Studies in Theatre and Performance History = Palg. Stud. Theat. Perf. Palgrave Studies in The Enlightenment Romanticism and Cultures of Print = Palgrave Stud Enligh Palgrave Studies in The Enlightenment Romanticism and Cultures of Print = Palgrave Stud. Enligh. Palgrave Studies in The History of Science and Technology = Palgr Stud Hist Sci Palgrave Studies in The History of Science and Technology = Palgr. Stud. Hist. Sci. Palgrave Studies in Urban Education = Palg Stud Urban Educ Palgrave Studies in Urban Education = Palg. Stud. Urban Educ. Palgrave Textbooks in Translating and Interpreting = Palg Txb Transl Inte Palgrave Textbooks in Translating and Interpreting = Palg. Txb. Transl. Inte. Palgrave Texts in Econometrics = Palgr Texts Economet Palgrave Texts in Econometrics = Palgr. Texts Economet. Palgrave Texts in International Political Economy = Palg Texts Int Polit Palgrave Texts in International Political Economy = Palg. Texts Int. Polit. Palladio. Rivista di storia dell’architettura = Palladio Pallas: Review of Ancient Studies, Vol 51 = Pallas Pallas: Review of Ancient Studies, Vol 51 = Pallas. Pallas. Revue d’études antiques = Pallas Pallas - Revue D'etudes Antiques = Pallas Pallas-revue D Etudes Antiques = Pallas-rev Etud Anti Pallas-revue D Etudes Antiques = Pallas-rev. Etud. Anti. Palliative and Supportive Care = Palliat. Support. Care Palliative Medicine = Palliative Med Palliative Medicine = Palliative Med. Palliative medicine = Palliat Med Palliative Medicine=Palliat Med;; Palliative Medicine = Palliat. Med. Palliative & supportive care = Palliat Support Care Palmet. Sadberk Hanım Müzesi yıllığı = Palmet Paloriskin Arvionnin Tilastopohjaiset Tiedot = Vtt Res Notes Paloriskin Arvionnin Tilastopohjaiset Tiedot = Vtt. Res. Notes. Palvelut Muokkaavat Kaikkia Toimialoja: Palveluliiketoiminnan Toimialakohtaiset Tiekartat = Vtt Res Notes Palvelut Muokkaavat Kaikkia Toimialoja: Palveluliiketoiminnan Toimialakohtaiset Tiekartat = Vtt. Res. Notes. Palynology and Micropalaeontology of Boundaries = Geol Soc Spec Publ Palynology and Micropalaeontology of Boundaries = Geol. Soc. Spec. Publ. Palynology = Palynology Památky archeologické = PamA Pamatky Archeologicke = Pamatky Archeol Pamatky Archeologicke = Pamatky Archeol. Pamâtniki kul'tury (Monuments of culture: new discoveries) = PK Pamietnik Literacki = Pamietnik Literacki Pammatone = Pammatone Pan-African journal = Pan Afr J Panama: Politics and Economics = Polit Econ Lat Am Panama: Politics and Economics = Polit. Econ. Lat. Am. Pan American Health Organization Scientific Publication = Paho Sci P Pan American Health Organization Scientific Publication = Paho. Sci. P. Pan American Health Organization Special Publication = Pan Am H O Pan American Health Organization Special Publication = Pan Am. H. O. Pan American health = Pan Am Health Panamerican Mathematical Journal = Panamer. Math. J. Pan American medical woman's journal = Pan Am Med Womans J Pan-asianism and Japans War 1931-1945 = Palg Mac Ser Trans Pan-asianism and Japans War 1931-1945 = Palg. Mac. Ser. Trans. Pan -chromatic View of Clusters of Galaxies and The Large-scale Structure = Lect Notes Phys Pan -chromatic View of Clusters of Galaxies and The Large-scale Structure = Lect. Notes. Phys. Pancreas=Pancreas;; Pancreas = Pancreas Pancreatic Islet Cell Regeneration and Growth = Adv Exp Med Biol Pancreatic Islet Cell Regeneration and Growth = Adv. Exp. Med. Biol. Pancreatic Stem Cells = Stem Cells Biol Reg Pancreatic Stem Cells = Stem Cells Biol. Reg. Pancreatitis: Advances in Pathobiology, Diagnosis and Treatment = Falk Symp Pancreatitis: Advances in Pathobiology, Diagnosis and Treatment = Falk. Symp. Pancreatology : official journal of the International Association of Pancreatology (IAP) ... [et al.] = Pancreatology Pancreatology = Pancreatology Panel Data and Labor Market Studies = Contrib To Econ Anal Panel Data and Labor Market Studies = Contrib. To. Econ. Anal. Panel Data and Labour Market Dynamics = Contrib To Econ Anal Panel Data and Labour Market Dynamics = Contrib. To. Econ. Anal. Panel Data and Structural Labour Market Models = Contrib Econ Anal Panel Data and Structural Labour Market Models = Contrib. Econ. Anal. Panel Data and Structural Labour Market Models = Contrib To Econ Anal Panel Data and Structural Labour Market Models = Contrib. To. Econ. Anal. Panel Data Econometrics: Theoretical Contributions and Empirical Applications = Contrib To Econ Anal Panel Data Econometrics: Theoretical Contributions and Empirical Applications = Contrib. To. Econ. Anal. Pangea: Paleoclimate, Tectonics, and Sedimentation During Accretion, Zenith and Breakup of A Supercontinent = Geol S Am S Pangea: Paleoclimate, Tectonics, and Sedimentation During Accretion, Zenith and Breakup of A Supercontinent = Geol. S. Am. S. Pangeometry = Herit Eur Math Pangeometry = Herit. Eur. Math. Panhandle-Plains historical review = Panhand-Plains Hist Rev Panminerva medica = Panminerva Med Panminerva Medica=Panminerva Med;; Panminerva Medica = Panminerva Med Panminerva Medica = Panminerva Med. PAN (Nigeria) = PAN Panoeconomicus = Panoeconomicus Panorama of Hungarian Mathematics in The Twentieth Century I = Bolyai Soc Math Stud Panorama of Hungarian Mathematics in The Twentieth Century I = Bolyai. Soc. Math. Stud. Panoramas et Synthèses = Panor. Synthèses Panoramic Views of Galaxy Formation and Evolution, Proceedings = Astr Soc P Panoramic Views of Galaxy Formation and Evolution, Proceedings = Astr. Soc. P. Panoscope = Panoscope Pan-pacific Entomologist = Pan-pac Entomol Pan-pacific Entomologist = Pan-pac. Entomol. Pans = Pans Pan Stanford Series On Biomedical Nanotechnology = Pan St Ser Biom Nano Pan Stanford Series On Biomedical Nanotechnology = Pan St. Ser. Biom. Nano. Pan Stanford Series On Nanobiotechnology = Pan St Ser Nanobiote Pan Stanford Series On Nanobiotechnology = Pan St. Ser. Nanobiote. Pan. Studi dell’Istituto di filologia latina = Pan Panstwo i prawo : organ Zrzeszenia Prawnikow Demokratow w Polsce = Panstwo Prawo Pantheon-internationale Jahreszeitschrift Fur Kunst = Pantheon-int Z Kunst Pantheon-internationale Jahreszeitschrift Fur Kunst = Pantheon-int. Z. Kunst Papeles Bilbilitanos = PapBilb Papeles de Economía Española=Pap. Econ. Española Papeles de poblacion / Centro de Investigacion y Estudios Avanzados de la Poblacion, Universidad Autonoma del Estado de Mexico = Papeles Poblac Papeles De Poblacion = Papeles Poblac Papeles De Poblacion = Papeles Poblac. Paperback Apv = Paperb Apv Paperback Apv = Paperb. Apv Paper - Geological Survey of Canada = Pap. - Geol. Surv. Can. Paperi Ja Puu-paper and Timber = Pap Puu-pap Tim Paperi Ja Puu-paper and Timber = Pap. Puu-pap. Tim. Paperi Ja Puu = Pap. Puu Paper Industry = Pap Ind Paper Industry = Pap. Ind. Paper Ja Puu-papper Och Tra = Pap Puu-pap Och Tra Paper Ja Puu-papper Och Tra = Pap. Puu-pap. Och Tra Papers and Reports On Child Language Development, No 29 = Pap R Child Papers and Reports On Child Language Development, No 29 = Pap. R. Child Papers and Reports On Child Language Development = Pap R Child Papers and Reports On Child Language Development = Pap. R. Child Papers. Bibliographical Society of America = Pap Bibliogr Soc Am Paper series (United Hospital Fund of New York) = Pap Ser United Hosp Fund N Y Paper Series, United Hospital Fund of New York = Pap. Ser. United Hosp. Fund N. Y. Papers From The Budapest Conference = Approach Hung Papers From The Budapest Conference = Approach. Hung. Papers From The Deutschen-gesellschaft-fur-allgemeine-und-angewandte-entomologie, Vol 7, Pts 1-3 = M D Gesell Allg Ange Papers From The Deutschen-gesellschaft-fur-allgemeine-und-angewandte-entomologie, Vol 7, Pts 1-3 = M. D. Gesell. Allg. Ange. Papers From The Deutschen-gesellschaft-fur-allgemeine-und-angewandte-entomologie, Vol 7, Pts 4-6 = M D Gesell Allg Ange Papers From The Deutschen-gesellschaft-fur-allgemeine-und-angewandte-entomologie, Vol 7, Pts 4-6 = M. D. Gesell. Allg. Ange. Papers Given At The Second James Hogg Society Conference = Assoc Scot Papers Given At The Second James Hogg Society Conference = Assoc. Scot. Papers in International Studies-africa Series-ohio University = Pap Int Stud Afr Ser Papers in International Studies-africa Series-ohio University = Pap. Int. Stud. Afr. Ser. Papers in International Studies-southeast Asia Series-ohio University = Pap Int Stud Se Asia Papers in International Studies-southeast Asia Series-ohio University = Pap. Int. Stud. Se. Asia Papers in Meteorology and Geophysics = Pap. Meteor. Geophys. Papers in Meteorology and Geophysics = Pap Meteorol Geophys Papers in Meteorology and Geophysics = Pap. Meteorol. Geophys. Papers in Physical Oceanography and Meteorology = Pap. Phys. Oceanogr. Meteor. Papers in Regional Science=Pap. Reg. Sci. Papers in Regional Science = Pap Reg Sci Papers in Regional Science = Pap. Reg. Sci. Papers in regional science : the journal of the Regional Science Association International = Pap Reg Sci Papers in Slovene studies = Pap Slov Stud Papers / National Conference for Professional Nurses and Physicians = Pap Natl Conf Prof Nurses Physicians Papers, National Conference for Professional Nurses and Physicians = Pap. Natl. Conf. Prof. Nurses Physicians Papers of The 32nd Algonquian Conference = Pap Algon Conf Papers of The 32nd Algonquian Conference = Pap. Algon. Conf. Papers of The Algonquian Conference = Pap Algon Conf Papers of The Algonquian Conference = Pap. Algon. Conf. Papers of The Algonquin Conference = Pap Algon Conf Papers of The Algonquin Conference = Pap. Algon. Conf. Papers of The Bibliographical Society of America = Pap Bibliogr Soc Am Papers of The Bibliographical Society of America = Pap. Bibliogr. Soc. Am. Papers of the Bibliographical Society of Canada. Cahiers de la Societe bibliographique du Canada. Bibliographical Society of Canada = Pap Bibliogr Soc Can Papers of the British School at Rome = BSR Papers of the British School at Rome = Pap Br Sch Rome Papers of the British School at Rome = PBSR Papers of The Center for Research and Documentation of World Language Problems = P Ctr Res D Papers of The Center for Research and Documentation of World Language Problems = P. Ctr. Res. D. Papers of the Laboratory of Tree Ring Research = Pap. Lab. Tree Ring Res. Papers of the Michigan Academy of Science, Arts and Letters = Pap. Mich. Acad. Sci. Arts Lett. Papers of The Peabody Museum of American Archaeology and Ethnology-harvard University = Pap Peabody Mus Am A Papers of The Peabody Museum of American Archaeology and Ethnology-harvard University = Pap. Peabody Mus. Am. A. Papers of The Peabody Museum of Archaeology and Ethnology-harvard University = Pap Peabody Mus Arch Papers of The Peabody Museum of Archaeology and Ethnology-harvard University = Pap. Peabody Mus. Arch. Papers of The Regional Science Association = Pap Reg Sci Assoc Papers of The Regional Science Association = Pap. Reg. Sci. Assoc. Papers of The Regional Science Association, Vol 63, 1987 = Pap Reg Sci Assoc Papers of The Regional Science Association, Vol 63, 1987 = Pap. Reg. Sci. Assoc. Papers of The Regional Science Association, Vol 66, 1989 = Pap Reg Sci Assoc Papers of The Regional Science Association, Vol 66, 1989 = Pap. Reg. Sci. Assoc. Papers of The Regional Science Association, Vol 67, 1989 = Pap Reg Sci Assoc Papers of The Regional Science Association, Vol 67, 1989 = Pap. Reg. Sci. Assoc. Papers of The Regional Science Association, Vol 69, 1990 = Pap Reg Sci Assoc Papers of The Regional Science Association, Vol 69, 1990 = Pap. Reg. Sci. Assoc. Papers of The Thirtieth Algonquian Conference = Pap Algon Conf Papers of The Thirtieth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-eighth Algonquian Conference = Pap Algon Conf Papers of The Thirty-eighth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-fifth Algonquian Conference = Pap Algon Conf Papers of The Thirty-fifth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-first Algonquian Conference = Pap Algon Conf Papers of The Thirty-first Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-fourth Algonquian Conference = Pap Algon Conf Papers of The Thirty-fourth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-ninth Algonquian Conference = Pap Algon Conf Papers of The Thirty-ninth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-sixth Algonquian Conference = Pap Algon Conf Papers of The Thirty-sixth Algonquian Conference = Pap. Algon. Conf. Papers of The Thirty-third Algonquian Conference = Pap Algon Conf Papers of The Thirty-third Algonquian Conference = Pap. Algon. Conf. Papers of The Thiry-fourth Algonquian Conference = Pap Algon Conf Papers of The Thiry-fourth Algonquian Conference = Pap. Algon. Conf. Papers of The Twenty-eighth Algonquian Conference = Pap Algon Conf Papers of The Twenty-eighth Algonquian Conference = Pap. Algon. Conf. Papers of The Twenty-first Sigcse Technical Symposium On Computer Science Education = Sigcse Bull Papers of The Twenty-first Sigcse Technical Symposium On Computer Science Education = Sigcse Bull. Papers of The Twenty-ninth Algonquian Conference = Pap Algon Conf Papers of The Twenty-ninth Algonquian Conference = Pap. Algon. Conf. Papers of The Twenty-seventh Algonquian Conference = Pap Algon Conf Papers of The Twenty-seventh Algonquian Conference = Pap. Algon. Conf. Papers of The Western Region Home Management Family Economics Educators = Pap Wrhmfee Papers of The Western Region Home Management Family Economics Educators = Pap. Wrhmfee. Papers On European and International Retail Banking and Business Law = Pap Eur Int Retail B Papers On European and International Retail Banking and Business Law = Pap. Eur. Int. Retail B. Papers on Far Eastern history = Pap Far East Hist Papers On Far Eastern History = Pap Far East Hist Papers On Far Eastern History = Pap. Far East. Hist. Papers on French seventeenth century literature = Pap Fr Seventeenth Century Lit Papers On General Topology and Applications = Ann Ny Acad Sci Papers On General Topology and Applications = Ann. Ny. Acad. Sci. Papers On Language and Literature = Pap Lang Lit Papers On Language and Literature = Pap. Lang. Lit. Papers on Non-Market Decision Making=Pap. Non-Market Dec. Making Papers Peace Science Society International = Pap Peace Sci Soc In Papers Peace Science Society International = Pap. Peace Sci. Soc. In. Papers Presented At The Eighth Session of The Indo-pacific Fishery Commission Working Party On Fish Technology and Marketing = Fao Fish Papers Presented At The Eighth Session of The Indo-pacific Fishery Commission Working Party On Fish Technology and Marketing = Fao. Fish Papers Presented At The Fao/japan Expert Consultation On The Development of Community-based Coastal Fishery Management Systems for Asia and The Pacific, Vol 1 = Fao Fish Papers Presented At The Fao/japan Expert Consultation On The Development of Community-based Coastal Fishery Management Systems for Asia and The Pacific, Vol 1 = Fao. Fish. Papers Presented At The Fao/japan Expert Consultation On The Development of Community-based Coastal Fishery Management Systems for Asia and The Pacific, Vol 2 = Fao Fish Papers Presented At The Fao/japan Expert Consultation On The Development of Community-based Coastal Fishery Management Systems for Asia and The Pacific, Vol 2 = Fao. Fish. Papers presented at the ... meeting. American Chemical Society. Division of Polymer Chemistry = Polymer Prepr Papers Presented At The Sixth Session of The Standing Committee On Resources Research and Development = Fao Fish Papers Presented At The Sixth Session of The Standing Committee On Resources Research and Development = Fao. Fish. Papers / Regional Science Association. Regional Science Association. Meeting = Pap Reg Sci Assoc Paper Technology and Industry = Pap Technol Ind Paper Technology and Industry = Pap. Technol. Ind. Papier = Papier Papillomaviruses /// = Ucla Sym Bi Papillomaviruses /// = Ucla. Sym. Bi. Papillomavirus in Human Pathology = Chall Mod Med Papillomavirus in Human Pathology = Chall. Mod. Med. Papir a Celuloza = Pap. Celul. Pappus of Alexandria: Book 4 of The Collection = Sourc Stud Hist Math Pappus of Alexandria: Book 4 of The Collection = Sourc. Stud. Hist. Math. Papua and New Guinea medical journal = P N G Med J Papua Conflict: Jakartas Perceptions and Policies = Pol Stud Papua Conflict: Jakartas Perceptions and Policies = Pol. Stud. Papua New Guinea Agricultural Journal = Papua New Guinea Agr Papua New Guinea Agricultural Journal = Papua New Guinea Agr. Papua New Guinea Medical Journal = Papua New Guinea Med Papua New Guinea Medical Journal = Papua New Guinea Med. Papua New Guinea Medical Journal=P N G Med J;; Papua New Guinea Medical Journal = P. N. G. Med. J. Papyri. Bollettino del Museo del papiro = Papyri Papyrologica Lupiensia = PLup Parable and Story in Judaism and Christianity = St Jud Chr Parable and Story in Judaism and Christianity = St. Jud. Chr. Parabola-myth Tradition and The Search for Meaning = Parabola Parabola-myth Tradition and The Search for Meaning = Parabola. Parabola = Parabola Parabola-the Magazine of Myth and Tradition = Parabola Parabola-the Magazine of Myth and Tradition = Parabola. Paracelsian Moments:science, Medicine and Astrology in Early Modern Europe = Sixt Century Essays Paracelsian Moments:science, Medicine and Astrology in Early Modern Europe = Sixt. Century. Essays. Paracelsus; Archiv der praktischen Medizin = Paracelsus Arch Prakt Med Paracelsus-neue Paracelsus Edition = Paracelsus-neue Para Paracelsus-neue Paracelsus Edition = Paracelsus-neue Para. Paraconsistency = Lect Notes Pure Appl Paraconsistency = Lect. Notes. Pure. Appl. Parade (New York, N.Y.) = Parade Paradentologie = Paradentologie Para-differential Calculus and Applications to The Cauchy Problem for Nonlinear Systems = Crm Ser Para-differential Calculus and Applications to The Cauchy Problem for Nonlinear Systems = Crm. Ser. Paradigms, Poetics and Politics of Conversion = Gr Stud Cult Paradigms, Poetics and Politics of Conversion = Gr. Stud. Cult. Paradoxes = Trends Log Stud Log Paradoxes = Trends. Log. Stud. Log. Paradox of China's Post-mao Reforms = Harv Con Ch Paradox of China's Post-mao Reforms = Harv. Con. Ch. Paradox of Scientific Authority: The Role of Scientific Advice in Democracies = Inside Technol Paradox of Scientific Authority: The Role of Scientific Advice in Democracies = Inside. Technol. Paragone = Paragone Paragraph = Paragraph Parahippocampal Region = Ann Ny Acad Sci Parahippocampal Region = Ann. Ny. Acad. Sci. Parallax = Parallax Parallel Algorithms and Applications = Parallel Algorithms Appl. Parallel Algorithms for Partial Differential Equations = Note Num Fl Parallel Algorithms for Partial Differential Equations = Note. Num. Fl. Parallel and Distributed Computational Intelligence = Stud Comput Intell Parallel and Distributed Computational Intelligence = Stud. Comput. Intell. Parallel and Distributed Computing: Applications and Technologies, Proceedings = Lect Notes Comput Sc Parallel and Distributed Computing: Applications and Technologies, Proceedings = Lect. Notes. Comput. Sc. Parallel and Distributed Methods for Image Processing Iii = Proc Spie Parallel and Distributed Methods for Image Processing Iii = Proc. Spie. Parallel and Distributed Methods for Image Processing Iii = P Soc Photo-opt Ins Parallel and Distributed Methods for Image Processing Iii = P. Soc. Photo-opt. Ins. Parallel and Distributed Methods for Image Processing Ii = P Soc Photo-opt Ins Parallel and Distributed Methods for Image Processing Ii = P. Soc. Photo-opt. Ins. Parallel and Distributed Methods for Image Processing Iv = Proc Spie Parallel and Distributed Methods for Image Processing Iv = Proc. Spie. Parallel and Distributed Methods for Image Processing Iv = P Soc Photo-opt Ins Parallel and Distributed Methods for Image Processing Iv = P. Soc. Photo-opt. Ins. Parallel and Distributed Methods for Image Processing = P Soc Photo-opt Ins Parallel and Distributed Methods for Image Processing = P. Soc. Photo-opt. Ins. Parallel and Distributed Processing and Applications - Ispa 2005 Workshops = Lect Notes Comput Sc Parallel and Distributed Processing and Applications - Ispa 2005 Workshops = Lect. Notes. Comput. Sc. Parallel and Distributed Processing and Applications = Lect Notes Comput Sc Parallel and Distributed Processing and Applications = Lect. Notes. Comput. Sc. Parallel and Distributed Processing and Applications, Proceedings = Lect Notes Comput Sc Parallel and Distributed Processing and Applications, Proceedings = Lect. Notes. Comput. Sc. Parallel and Distributed Processing = Lect Notes Comput Sc Parallel and Distributed Processing = Lect. Notes. Comput. Sc. Parallel and Distributed Processing, Proceedings = Lect Notes Comput Sc Parallel and Distributed Processing, Proceedings = Lect. Notes. Comput. Sc. Parallel Architectures and Compilation Techniques = Ifip Trans A Parallel Architectures and Compilation Techniques = Ifip. Trans. A. Parallel Architectures for Image Processing = P Soc Photo-opt Ins Parallel Architectures for Image Processing = P. Soc. Photo-opt. Ins. Parallel Computation = Lect Notes Comput Sc Parallel Computation = Lect. Notes. Comput. Sc. Parallel Computer Routing and Communication = Lect Notes Comput Sc Parallel Computer Routing and Communication = Lect. Notes. Comput. Sc. Parallel Computing and Mathematical Optimization = Lect Notes Econ Math Parallel Computing and Mathematical Optimization = Lect. Notes. Econ. Math. Parallel Computing and Transputer Applications, Pts 1 and 2 = Transput Occam Eng S Parallel Computing and Transputer Applications, Pts 1 and 2 = Transput. Occam. Eng. S. Parallel Computing and Transputers = Transput Occam Eng S Parallel Computing and Transputers = Transput. Occam. Eng. S. Parallel Computing: Architectures, Algorithms and Applications = Adv Parallel Comput Parallel Computing: Architectures, Algorithms and Applications = Adv. Parallel Comput. Parallel Computing: Architectures, Algorithms and Applications = Adv Par Com Parallel Computing: Architectures, Algorithms and Applications = Adv. Par. Com. Parallel Computing: Fundamentals, Applications and New Directions = Adv Parallel Comput Parallel Computing: Fundamentals, Applications and New Directions = Adv. Parallel Comput. Parallel Computing: Fundamentals, Applications and New Directions = Adv Par Com Parallel Computing: Fundamentals, Applications and New Directions = Adv. Par. Com. Parallel Computing in Computational Chemistry = Acs Sym Ser Parallel Computing in Computational Chemistry = Acs. Sym. Ser. Parallel Computing in Optimization = Appl Optimizat Parallel Computing in Optimization = Appl. Optimizat. Parallel Computing = Parallel Comput. Parallel Computing = Parallel Comput Parallel Computing = Parallel Comput. Parallel Computing: Software Technology, Algorithms, Architectures and Applications = Adv Parallel Comput Parallel Computing: Software Technology, Algorithms, Architectures and Applications = Adv. Parallel Comput. Parallel Computing: Software Technology, Algorithms, Architectures and Applications = Adv Par Com Parallel Computing: Software Technology, Algorithms, Architectures and Applications = Adv. Par. Com. Parallel Computing Technologies = Lect Notes Comput Sc Parallel Computing Technologies = Lect. Notes. Comput. Sc. Parallel Computing Technologies, Proceedings = Lect Notes Comput Sc Parallel Computing Technologies, Proceedings = Lect. Notes. Comput. Sc. Parallel Computing: Technology and Practice = Transput Occam Eng S Parallel Computing: Technology and Practice = Transput. Occam. Eng. S. Parallel Corpora, Parallel Worlds = Lang Comput Parallel Corpora, Parallel Worlds = Lang. Comput. Parallel Database Systems = Lect Notes Comput Sc Parallel Database Systems = Lect. Notes. Comput. Sc. Parallel, Distributed and Grid Computing for Engineering = Comp Sci Engr Tech Parallel, Distributed and Grid Computing for Engineering = Comp. Sci. Engr. Tech. Parallel Genetic Algorithms: Theory and Real World Applications = Stud Comput Intell Parallel Genetic Algorithms: Theory and Real World Applications = Stud. Comput. Intell. Parallel Image Analysis = Lect Notes Comput Sc Parallel Image Analysis = Lect. Notes. Comput. Sc. Parallel Imaging in Clinical Mr Applications = Med Radiol Diagn Ima Parallel Imaging in Clinical Mr Applications = Med. Radiol. Diagn. Ima. Parallel Imports in Asia = Max Planck Series Parallel Imports in Asia = Max. Planck. Series. Parallelization in Inference Systems = Lect Notes Artif Int Parallelization in Inference Systems = Lect. Notes. Artif. Int. Parallel Kinematic Machines = Adv Manuf S Parallel Kinematic Machines = Adv. Manuf. S. Parallelkinematische Maschinen: Entwurf, Konstruktion, Anwendung = Vdi-buch Parallelkinematische Maschinen: Entwurf, Konstruktion, Anwendung = Vdi-buch. Parallel Lisp : Languages and Systems = Lect Notes Comput Sc Parallel Lisp : Languages and Systems = Lect. Notes. Comput. Sc. Parallel Matlab for Multicore and Multinode Computers = Softw Environ Tools Parallel Matlab for Multicore and Multinode Computers = Softw. Environ. Tools. Parallel Numerical Computation With Applications = Kluwer Int Ser Eng C Parallel Numerical Computation With Applications = Kluwer. Int. Ser. Eng. C. Parallel Numerical Computation With Applications = Spring Int Ser Eng C Parallel Numerical Computation With Applications = Spring. Int. Ser. Eng. C. Parallel Problem Solving From Nature = Lect Notes Comput Sc Parallel Problem Solving From Nature = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature - Ppsn Iii - International Conference On Evolutionary Computation, Proceedings = Lect Notes Comput Sc Parallel Problem Solving From Nature - Ppsn Iii - International Conference On Evolutionary Computation, Proceedings = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature - Ppsn Ix, Proceedings = Lect Notes Comput Sc Parallel Problem Solving From Nature - Ppsn Ix, Proceedings = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature - Ppsn Viii = Lect Notes Comput Sc Parallel Problem Solving From Nature - Ppsn Viii = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature - Ppsn V = Lect Notes Comput Sc Parallel Problem Solving From Nature - Ppsn V = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature-ppsn Xi, Pt Ii = Lect Notes Comput Sc Parallel Problem Solving From Nature-ppsn Xi, Pt Ii = Lect. Notes. Comput. Sc. Parallel Problem Solving From Nature - Ppsn X, Proceedings = Lect Notes Comput Sc Parallel Problem Solving From Nature - Ppsn X, Proceedings = Lect. Notes. Comput. Sc. Parallel Problems Solving From Nature - Ppsn Xi, Pt I = Lect Notes Comput Sc Parallel Problems Solving From Nature - Ppsn Xi, Pt I = Lect. Notes. Comput. Sc. Parallel Processing and Applied Mathematics = Lect Notes Comput Sc Parallel Processing and Applied Mathematics = Lect. Notes. Comput. Sc. Parallel Processing and Applied Mathematics, Part Ii = Lect Notes Comput Sc Parallel Processing and Applied Mathematics, Part Ii = Lect. Notes. Comput. Sc. Parallel Processing and Applied Mathematics, Pt I = Lect Notes Comput Sc Parallel Processing and Applied Mathematics, Pt I = Lect. Notes. Comput. Sc. Parallel Processing Applied Mathematics = Lect Notes Comput Sc Parallel Processing Applied Mathematics = Lect. Notes. Comput. Sc. Parallel Processing : Conpar 92 - Vapp V = Lect Notes Comput Sc Parallel Processing : Conpar 92 - Vapp V = Lect. Notes. Comput. Sc. Parallel Processing Developments = Concur Syst Engn Ser Parallel Processing Developments = Concur. Syst. Engn. Ser. Parallel Processing for Imaging Applications = Proc Spie Parallel Processing for Imaging Applications = Proc. Spie. Parallel Processing for Scientific Computing = Softw Environm Tool Parallel Processing for Scientific Computing = Softw. Environm. Tool. Parallel Processing for Scientific Computing = Softw Environ Tools Parallel Processing for Scientific Computing = Softw. Environ. Tools. Parallel Processing Letters = Parallel Process. Lett. Parallel Programming and Applications = Transput Occam Eng S Parallel Programming and Applications = Transput. Occam. Eng. S. Parallel Programming and Java = Concur Syst Engn Ser Parallel Programming and Java = Concur. Syst. Engn. Ser. Parallel Programming, Models and Applications in Grid and P2p Systems = Adv Parallel Comput Parallel Programming, Models and Applications in Grid and P2p Systems = Adv. Parallel Comput. Parallel Robots, Second Edition = Solid Mech Appl Parallel Robots, Second Edition = Solid. Mech. Appl. Parallel Scientific Computing and Optimization: Advances and Applications = Springer Optim Appl Parallel Scientific Computing and Optimization: Advances and Applications = Springer. Optim. Appl. Parallel Scientific Computing and Optimization: Advances and Applications = Springer Ser Optim A Parallel Scientific Computing and Optimization: Advances and Applications = Springer. Ser. Optim. A. Parallel Solution of Partial Differential Equations = Ima V Math Parallel Solution of Partial Differential Equations = Ima. V. Math. Parallel Solution of Partial Differential Equations = Ima Vol Math Appl Parallel Solution of Partial Differential Equations = Ima. Vol. Math. Appl. Parallel Symbolic Languages and Systems = Lect Notes Comput Sc Parallel Symbolic Languages and Systems = Lect. Notes. Comput. Sc. Paramagnetic Resonance of Metallobiomolecules = Acs Sym Ser Paramagnetic Resonance of Metallobiomolecules = Acs. Sym. Ser. Paramedics international = Paramed Int Paramedics International = Paramed. Int. Parameter Estimation in Stochastic Differential Equation = Lect Notes Math Parameter Estimation in Stochastic Differential Equation = Lect. Notes. Math. Parameter Identification of Materials and Structures = Cism Cour L Parameter Identification of Materials and Structures = Cism. Cour. L. Parameter Identification of Materials and Structures = Cism Courses Lect Parameter Identification of Materials and Structures = Cism. Courses. Lect. Parameterized and Exact Computation = Lect Notes Comput Sc Parameterized and Exact Computation = Lect. Notes. Comput. Sc. Parameterized and Exact Computation,proceedings = Lect Notes Comput Sc Parameterized and Exact Computation,proceedings = Lect. Notes. Comput. Sc. Parameterized and Exact Computation, Proceedings = Lect Notes Comput Sc Parameterized and Exact Computation, Proceedings = Lect. Notes. Comput. Sc. Parameter Setting in Evolutionary Algorithms = Stud Comp Intell Parameter Setting in Evolutionary Algorithms = Stud. Comp. Intell. Parameter Setting in Evolutionary Algorithms = Stud Comput Intell Parameter Setting in Evolutionary Algorithms = Stud. Comput. Intell. Parameters : journal of the US Army War College = Parameters Parametric X-ray Radiation in Crystals: Theory, Experiments and Applications = Springer Tr Mod Phys Parametric X-ray Radiation in Crystals: Theory, Experiments and Applications = Springer. Tr. Mod. Phys. Paranoia in The Normal Population = Psychiat Theor Appl Paranoia in The Normal Population = Psychiat. Theor. Appl. Paranoia of The Millionaire: Harry K. Thaw's 1907 Insanity Defense = Psychiat Theor Appl Paranoia of The Millionaire: Harry K. Thaw's 1907 Insanity Defense = Psychiat. Theor. Appl. Paraoxnases: Their Role in Disease Development and Xenobiotic Metabolism = Proteins Cell Reg Paraoxnases: Their Role in Disease Development and Xenobiotic Metabolism = Proteins. Cell. Reg. Paraoxnases: Their Role in Disease Development and Xenobiotic Metabolism = Proteins Cell Regul Paraoxnases: Their Role in Disease Development and Xenobiotic Metabolism = Proteins. Cell. Regul. Paraoxonases in Inflammation, Infection, and Toxicology = Adv Exp Med Biol Paraoxonases in Inflammation, Infection, and Toxicology = Adv. Exp. Med. Biol. Paraplegia = Paraplegia Parasite immunology = Parasite Immunol Parasite Immunology=Parasite Immunol;; Parasite Immunology = Parasite Immunol Parasite Immunology = Parasite Immunol. Parasite-journal De La Societe Francaise De Parasitologie = Parasite Parasite-journal De La Societe Francaise De Parasitologie = Parasite. Parasite=Parasite;; Parasite = Parasite Parasite (Paris, France) = Parasite Parasites = Ucla Sym Bi Parasites = Ucla. Sym. Bi. Parasites & Vectors = Parasite Vector Parasites & Vectors = Parasite. Vector. Parasitica = Parasitica Parasitism - Immune Responses in Parasitic Diseases = Nova Act Lc Parasitism - Immune Responses in Parasitic Diseases = Nova. Act. Lc. Parasitología al día = Parasitol. día Parasitología latinoamericana = Parasitol. latinoam. Parasitology international = Parasitol Int Parasitology International = Parasitol Int Parasitology International = Parasitol. Int. Parasitology=Parasitology;; Parasitology = Parasitology Parasitology Research Monograph = Parasitol Res Mg Parasitology Research Monograph = Parasitol. Res. Mg. Parasitology research = Parasitol Res Parasitology Research=Parasitol Res;; Parasitology Research = Parasitol Res Parasitology Research = Parasitol. Res. Parasitology Research Trends = Adv Biol Med Parasitology Research Trends = Adv. Biol. Med. Parasitology Today = Parasitol Today Parasitology Today = Parasitol. Today Parasitology today (Personal ed.) = Parasitol Today Parassitologia=Parassitologia;; Parassitologia = Parassitologia Parazitologiia=Parazitologiia;; Parazitologiia = Parazitologiia Parazitologiya = Parazitologiya+ Parazitologiya = Parazitologiya+.+ Parcella '94 = Math Res Parcella '94 = Math. Res. Parental Choice? A Critical Reconsideration of Choice and The Debate About Choice = Crit Constr Parental Choice? A Critical Reconsideration of Choice and The Debate About Choice = Crit. Constr. Parental Treatment and Mental Health of Personality = Health Psychol Res F Parental Treatment and Mental Health of Personality = Health Psychol. Res. F. Parent-child Interaction Therapy, Second Edition = Issues Clin Child Ps Parent-child Interaction Therapy, Second Edition = Issues. Clin. Child. Ps. Parenting, science and practice = Parent Sci Pract Parenting-science and Practice = Parent-sci Pract Parenting-science and Practice = Parent-sci. Pract. Parenting Young Children = Lifesp Learn Parenting Young Children = Lifesp. Learn. Parents and Children Communicating With Society = Routl Commun Ser Parents and Children Communicating With Society = Routl. Commun. Ser. Parents' magazine (Bergenfield, N.J.) = Parents Mag Parents magazine (New York, N.Y. : 1985) = Parents Mag (NY) Parergon = Parergon Pareto and Political Theory = Routl Stud Soc Polit Pareto and Political Theory = Routl. Stud. Soc. Polit. Pareto Optimality, Game Theory and Equilibria = Springer Ser Optim A Pareto Optimality, Game Theory and Equilibria = Springer. Ser. Optim. A. Paris and The Revolution = Hist Modern Paris and The Revolution = Hist. Modern. Parisankhyan Samikkha = Parisankhyan Samikkha Paris in The Middle Ages = Middle Ages Ser Paris in The Middle Ages = Middle Ages Ser. Paris medical = Paris Med Paris Peace Conference, 1919 = Stud Milit Strat Paris Peace Conference, 1919 = Stud. Milit. Strat. Paris-princeton Lectures On Mathematical Finance 2002 = Lect Notes Math Paris-princeton Lectures On Mathematical Finance 2002 = Lect. Notes. Math. Paris-princeton Lectures On Mathematical Finance 2003 = Lect Notes Math Paris-princeton Lectures On Mathematical Finance 2003 = Lect. Notes. Math. Paris-princeton Lectures On Mathematical Finance 2004 = Lect Notes Math Paris-princeton Lectures On Mathematical Finance 2004 = Lect. Notes. Math. Paris-princeton Lectures On Mathematical Finance 2010 = Lect Notes Math Paris-princeton Lectures On Mathematical Finance 2010 = Lect. Notes. Math. Paris Review = Paris Rev Paris Review = Paris Rev. Parivar ayojan = Parivar Ayojan Parking = Parking Parkinsonism & Related Disorders = Parkinsonism Relat D Parkinsonism & Related Disorders = Parkinsonism Relat. D. Parkinsonism & related disorders = Parkinsonism Relat Disord Parkinson's Disease = Adv Neurol Parkinson's Disease = Adv. Neurol. Parkinsons Disease : Anatomy, Pathology, and Therapy = Adv Neurol Parkinsons Disease : Anatomy, Pathology, and Therapy = Adv. Neurol. Parkinsons Disease : From Basic Research to Treatment = Adv Neurol Parkinsons Disease : From Basic Research to Treatment = Adv. Neurol. Parkinson's Disease = Solvay Pharmaceut Parkinson's Disease = Solvay. Pharmaceut. Parkinson's Disease: The Life Cycle of The Dopamine Neuron = Ann Ny Acad Sci Parkinson's Disease: The Life Cycle of The Dopamine Neuron = Ann. Ny. Acad. Sci. Parks and Heritage Series = Pk Herit Ser Parks and Heritage Series = Pk. Herit. Ser. Parks and People in Postcolonial Societies: Experiences in Southern Africa = Geojournal Lib Parks and People in Postcolonial Societies: Experiences in Southern Africa = Geojournal. Lib. Parle 91 : Parallel Architectures and Languages Europe, Vol 1 = Lect Notes Comput Sc Parle 91 : Parallel Architectures and Languages Europe, Vol 1 = Lect. Notes. Comput. Sc. Parle 91 : Parallel Architectures and Languages Europe, Vol 2 = Lect Notes Comput Sc Parle 91 : Parallel Architectures and Languages Europe, Vol 2 = Lect. Notes. Comput. Sc. Parle 92 : Parallel Architectures and Languages Europe = Lect Notes Comput Sc Parle 92 : Parallel Architectures and Languages Europe = Lect. Notes. Comput. Sc. Parliamentarian = Parliamentarian Parliamentary affairs = Parliam Aff Parliamentary Affairs = Parliament Aff Parliamentary Affairs = Parliament. Aff. Parliamentary Control and Government Accountability in South Asia: A Comparative Analysis of Bangladesh, India and Sri Lanka = Routl Adv S Asian St Parliamentary Control and Government Accountability in South Asia: A Comparative Analysis of Bangladesh, India and Sri Lanka = Routl. Adv. S. Asian. St. Parliamentary History = Parliam Hist Parliamentary History = Parliam. Hist. Parliaments and Legislatures Series = Parliaments Legisl S Parliaments and Legislatures Series = Parliaments Legisl. S. Parliaments and Screening = Ethique Sci Parliaments and Screening = Ethique. Sci. Parliaments Estates & Representation-parlements Etats & Representation = Parliament Estate R Parliaments Estates & Representation-parlements Etats & Representation = Parliament. Estate. R. Parma medica = Parma Med Parnassus-poetry in Review = Parnassus-poetry Rev Parnassus-poetry in Review = Parnassus-poetry Rev. Parodontologia e stomatologia (nuova) : organo ufficiale dell'ARPA italiana, della Societa italiana Jonoforesi stomatologica e della Accademia ligustica di stomatologia = Parodontol Stomatol (Nuova) Parodontologia e Stomatologia (Nuova) = Parodontol. Stomatol. (Nuova) Parodontologie and academy review = Parodontol Acad Rev Parodontologie and Academy Review = Parodontol. Acad. Rev. Parodontologie (Berlin, Germany) = Parodontol Parodontologie = Parodontologie Parodontologie (Zurich, Switzerland : 1954) = Parodontologie Parodontopathies = Parodontopathies Paroi Arterielle-arterial Wall = Paroi Arteriel Paroi Arterielle-arterial Wall = Paroi Arteriel. Paroi arterielle = Paroi Arterielle Paroi Arterielle = Paroi Arterielle Parsing Beyond Context-free Grammars = Cogn Technol Parsing Beyond Context-free Grammars = Cogn. Technol. Parsing Techniques: A Practical Guide, Second Edition = Monogr Comput Sci Parsing Techniques: A Practical Guide, Second Edition = Monogr. Comput. Sci. Parsis in India and The Diaspora = Routl S Asian Relig Parsis in India and The Diaspora = Routl. S. Asian. Relig. Part A news : independent news to legally maximize Medicare part A dollars = Part A News Part B news = Part B News Partenope. Rivista trimestrale di cultura napoletana = Partenope Parthica. Incontri di culture nel mondo antico = Parthica Partial Answers-journal of Literature and The History of Ideas = Partial Answ Partial Answers-journal of Literature and The History of Ideas = Partial Answ. Partial Covers, Reducts and Decision Rules in Rough Sets: Theory and Applications = Stud Comput Intell Partial Covers, Reducts and Decision Rules in Rough Sets: Theory and Applications = Stud. Comput. Intell. Partial Differential Equation Methods in Control and Shape Analysis = Lect Notes Pure Appl Partial Differential Equation Methods in Control and Shape Analysis = Lect. Notes. Pure. Appl. Partial Differential Equations and Functional Analysis: The Philippe Clement Festschrift = Oper Theor Partial Differential Equations and Functional Analysis: The Philippe Clement Festschrift = Oper. Theor. Partial Differential Equations and Functional Analysis: The Philippe Clement Festschrift = Oper Theory Adv Appl Partial Differential Equations and Functional Analysis: The Philippe Clement Festschrift = Oper. Theory. Adv. Appl. Partial Differential Equations and Mathematical Physics = Prog Nonlin Partial Differential Equations and Mathematical Physics = Prog. Nonlin. Partial Differential Equations and Solitary Waves Theory = Nonlinear Phys Sci Partial Differential Equations and Solitary Waves Theory = Nonlinear. Phys. Sci. Partial Differential Equations and Spectral Theory = Oper Theor Partial Differential Equations and Spectral Theory = Oper. Theor. Partial Differential Equations and Spectral Theory = Oper Theory Adv Appl Partial Differential Equations and Spectral Theory = Oper. Theory Adv. Appl. Partial Differential Equations = Ch Crc Res Notes Partial Differential Equations = Ch. Crc. Res. Notes. Partial Differential Equations = Ch Crc Res Notes Mat Partial Differential Equations = Ch. Crc. Res. Notes. Mat. Partial Differential Equations I: Basic Theory, Second Edition = Appl Math Sci Partial Differential Equations I: Basic Theory, Second Edition = Appl. Math. Sci. Partial Differential Equations Iii: Nonlinear Equations, Second Edition = Appl Math Sci Partial Differential Equations Iii: Nonlinear Equations, Second Edition = Appl. Math. Sci. Partial Differential Equations Ii: Qualitative Studies of Linear Equations, Second Edition = Appl Math Sci Partial Differential Equations Ii: Qualitative Studies of Linear Equations, Second Edition = Appl. Math. Sci. Partial Differential Equations = Math Res Partial Differential Equations = Math. Res. Partial Differential Equations: Modeling, Analysis, Computation = Math Model Comput Partial Differential Equations: Modeling, Analysis, Computation = Math. Model. Comput. Partial Differential Equations: Modeling and Numerical Simulation = Comput Meth Appl Sci Partial Differential Equations: Modeling and Numerical Simulation = Comput. Meth. Appl. Sci. Partial Differential Equations of Elliptic Type = Sym Math Partial Differential Equations of Elliptic Type = Sym. Math. Partial Differential Equations On Multistructures, Proceedings = Lect Notes Pure Appl Partial Differential Equations On Multistructures, Proceedings = Lect. Notes. Pure. Appl. Partial Differential Equations, Proceedings = Lect Notes Pure Appl Partial Differential Equations, Proceedings = Lect. Notes. Pure. Appl. Partial Differential Equations With Minimal Smoothness and Applications = Ima V Math Partial Differential Equations With Minimal Smoothness and Applications = Ima. V. Math. Partial Differential Operators and Mathematical Physics = Oper Theor Partial Differential Operators and Mathematical Physics = Oper. Theor. Partial Evaluation: Practice and Theory = Lect Notes Comput Sc Partial Evaluation: Practice and Theory = Lect. Notes. Comput. Sc. Partial Inner Product Spaces: Theory and Applications = Lect Notes Math Partial Inner Product Spaces: Theory and Applications = Lect. Notes. Math. Partial Left Ventriculectomy: Its Theory, Results and Perspectives = Int Congr Ser Partial Left Ventriculectomy: Its Theory, Results and Perspectives = Int. Congr. Ser. Partial Left Ventriculectomy: Recent Evolution for Safe and Effective Application = Int Congr Ser Partial Left Ventriculectomy: Recent Evolution for Safe and Effective Application = Int. Congr. Ser. Partially Hyperbolic Dynamics, Laminations, and Teichmuller Flow = Fields I Commun Partially Hyperbolic Dynamics, Laminations, and Teichmuller Flow = Fields. I. Commun. Partially Hyperbolic Dynamics, Laminations, and Teichmuller Flow = Fields Inst Commun Partially Hyperbolic Dynamics, Laminations, and Teichmuller Flow = Fields. Inst. Commun. Partially Integrable Evolution Equations in Physics = Nato Adv Sci I C-mat Partially Integrable Evolution Equations in Physics = Nato. Adv. Sci. I. C-mat. Partial-order Methods for The Verification of Concurrent Systems = Lect Notes Comput Sc Partial-order Methods for The Verification of Concurrent Systems = Lect. Notes. Comput. Sc. Participant journal = Part J Participants in The International Legal System: Multiple Perspectives On Non-state Actors in International Law = Routl Res Int Law Participants in The International Legal System: Multiple Perspectives On Non-state Actors in International Law = Routl. Res. Int. Law Participation in Fisheries Governance = Rev M T Fis Participation in Fisheries Governance = Rev. M. T. Fis. Participatory Action Research Approaches and Methods = Routl Stud Hum Geogr Participatory Action Research Approaches and Methods = Routl. Stud. Hum. Geogr. Participatory Community Research: Theories and Methods in Action = Apa Decade Behav Vol Participatory Community Research: Theories and Methods in Action = Apa. Decade. Behav. Vol. Participatory Democracy and Political Participation = Routledge/ecpr Stud Participatory Democracy and Political Participation = Routledge/ecpr. Stud. Participatory Learning in The Early Years: Research and Pedagogy = Routl Res Educ Participatory Learning in The Early Years: Research and Pedagogy = Routl. Res. Educ. Particle Acceleration and Detection = Part Accel Detect Particle Acceleration and Detection = Part. Accel. Detect. Particle Acceleration and Transport in The Heliosphere and Beyond = Aip Conf Proc Particle Acceleration and Transport in The Heliosphere and Beyond = Aip. Conf. Proc. Particle Acceleration Cosmic Plasmas = Aip Conf Proc Particle Acceleration Cosmic Plasmas = Aip. Conf. Proc. Particle Acceleration in Space Plasmas = Adv Space Res Particle Acceleration in Space Plasmas = Adv. Space Res. Particle Acceleration in Space Plasmas = Adv Space Res-series Particle Acceleration in Space Plasmas = Adv. Space Res-series. Particle Acceleration, Space Plasma Physics, Solar Radiation and The Earth's Atmosphere and Climate = Adv Space Res Particle Acceleration, Space Plasma Physics, Solar Radiation and The Earth's Atmosphere and Climate = Adv. Space Res. Particle Acceleration, Space Plasma Physics, Solar Radiation and The Earth's Atmosphere and Climate = Adv Space Res-series Particle Acceleration, Space Plasma Physics, Solar Radiation and The Earth's Atmosphere and Climate = Adv. Space Res-series. Particle Accelerators = Part Accel Particle Accelerators = Part. Accel. Particle and Astroparticle Physics = Ser High Energy Phys Particle and Astroparticle Physics = Ser. High. Energy. Phys. Particle and fibre toxicology = Part Fibre Toxicol Particle and Fibre Toxicology = Part Fibre Toxicol Particle and Fibre Toxicology = Part. Fibre Toxicol. Particle and Nuclear Physics At J-parc = Lect Notes Phys Particle and Nuclear Physics At J-parc = Lect. Notes. Phys. Particle and Nuclear Physics, Vol 39 = Prog Part Nucl Phys Particle and Nuclear Physics, Vol 39 = Prog. Part. Nucl. Phys. Particle and Nuclear Physics, Vol. 55, No 2 = Prog Part Nucl Phys Particle and Nuclear Physics, Vol. 55, No 2 = Prog. Part. Nucl. Phys. Particle and Particle Systems Characterization = Part. Part. Syst. Char. Particle Astrophysics = Aip Conf Proc Particle Astrophysics = Aip. Conf. Proc. Particle Astrophysics and Cosmology = Nato Adv Sci Inst Se Particle Astrophysics and Cosmology = Nato. Adv. Sci. Inst. Se. Particle Astrophysics, Atomic Physics and Gravitation = Moriond Par Particle Astrophysics, Atomic Physics and Gravitation = Moriond. Par. Particle Astrophysics Instrumentation = Proc Spie Particle Astrophysics Instrumentation = Proc. Spie. Particle Astrophysics Instrumentation = P Soc Photo-opt Ins Particle Astrophysics Instrumentation = P. Soc. Photo-opt. Ins. Particle Astrophysics / = Moriond Ast Particle Astrophysics / = Moriond. Ast. Particle Beams & Plasma Interaction On Materials and Ion & Plasma Surface Finishing 2004 = Solid State Phenomen Particle Beams & Plasma Interaction On Materials and Ion & Plasma Surface Finishing 2004 = Solid. State. Phenomen. Particle Beams & Plasma Interaction On Materials and Ion & Plasma Surface Finishing 2004 = Sol St Phen Particle Beams & Plasma Interaction On Materials and Ion & Plasma Surface Finishing 2004 = Sol. St. Phen. Particle Characterization = Part Part Syst Char Particle Characterization = Part. Part. Syst. Char. Particle Image Velocimetry: A Practical Guide, Second Edition = Exp Fluid Mech Particle Image Velocimetry: A Practical Guide, Second Edition = Exp. Fluid. Mech. Particle Image Velocimetry: New Developments and Recent Applications = Top Appl Phys Particle Image Velocimetry: New Developments and Recent Applications = Top. Appl. Phys. Particle-laden Flow: From Geophysical to Kolmogorov Scales = Ercoftac Ser Particle-laden Flow: From Geophysical to Kolmogorov Scales = Ercoftac. Ser. Particle Metaphysics: A Critical Account of Subatomic Reality = Front Collect Particle Metaphysics: A Critical Account of Subatomic Reality = Front. Collect. Particle & Particle Systems Characterization = Part Part Syst Char Particle & Particle Systems Characterization = Part. Part. Syst. Char. Particle Phenomenology in The 90s = W High En P Particle Phenomenology in The 90s = W. High. En. P. Particle Physics and Astrophysics = Rencon Viet Particle Physics and Astrophysics = Rencon. Viet. Particle Physics and Cosmology = Aip Conf Proc Particle Physics and Cosmology = Aip. Conf. Proc. Particle Physics and Cosmology, First Tropical Workshop - High Energy Physics, Second Latin American Symposium = Aip Conf Proc Particle Physics and Cosmology, First Tropical Workshop - High Energy Physics, Second Latin American Symposium = Aip. Conf. Proc. Particle Physics and Cosmology: The Interface = Nato Sci Ser Ii-math Particle Physics and Cosmology: The Interface = Nato. Sci. Ser. Ii-math. Particle Physics and Cosmology: The Interface = Nato Sci Ser Ii Math Particle Physics and Cosmology: The Interface = Nato. Sci. Ser. Ii. Math. Particle Physics and The Universe = Springer Proc Phys Particle Physics and The Universe = Springer. Proc. Phys. Particle Physics At The Fermi Scale = Ccast Wl Sw Particle Physics At The Fermi Scale = Ccast. Wl. Sw. Particle Physics From Underground to Heaven = Johns Hop W Particle Physics From Underground to Heaven = Johns. Hop. W. Particle Physics: Ideas and Recent Developments = Nato Adv Sci I C-mat Particle Physics: Ideas and Recent Developments = Nato. Adv. Sci. I. C-mat. Particle Physics in The New Millennium = Lect Notes Phys Particle Physics in The New Millennium = Lect. Notes. Phys. Particle Physics /// = Nato Adv Sci I B-phy Particle Physics /// = Nato. Adv. Sci. I. B-phy. Particle Production in Highly Excited Matter = Nato Adv Sci Inst Se Particle Production in Highly Excited Matter = Nato. Adv. Sci. Inst. Se. Particle Production Near Threshold = Aip Conf Proc Particle Production Near Threshold = Aip. Conf. Proc. Particle Removal From Reservoirs and Other Surface Waters = Wa Sci Technol Particle Removal From Reservoirs and Other Surface Waters = Wa. Sci. Technol. Particles and Fields = Aip Conf Proc Particles and Fields = Aip. Conf. Proc. Particles and Fields: Classical and Quantum = J Phys Conf Ser Particles and Fields: Classical and Quantum = J. Phys. Conf. Ser. Particles and Fields in Radio Galaxies = Astr Soc P Particles and Fields in Radio Galaxies = Astr. Soc. P. Particles and Fields, Proceedings = Aip Conf Proc Particles and Fields, Proceedings = Aip. Conf. Proc. Particles and Fields, Pt A = Aip Conf Proc Particles and Fields, Pt A = Aip. Conf. Proc. Particles and Fields, Pt B = Aip Conf Proc Particles and Fields, Pt B = Aip. Conf. Proc. Particles and Fields: Xi Mexican Workshop On Particles and Fields = Aip Conf Proc Particles and Fields: Xi Mexican Workshop On Particles and Fields = Aip. Conf. Proc. Particles and Nuclei = Aip Conf Proc Particles and Nuclei = Aip. Conf. Proc. Particles At The Semantics/pragmatics Interface: Synchronic and Diachronic Issues = Curr Res Semant Prag Particles At The Semantics/pragmatics Interface: Synchronic and Diachronic Issues = Curr. Res. Semant. Prag. Particle Scattering, X-ray Diffraction, and Microstructure of Solids and Liquids = Lect Notes Phys Particle Scattering, X-ray Diffraction, and Microstructure of Solids and Liquids = Lect. Notes. Phys. Particle Separation 2005 - Drinking Water Treatment = Wa Sci Technol Particle Separation 2005 - Drinking Water Treatment = Wa. Sci. Technol. Particles, Fields, and Gravitation = Aip Conf Proc Particles, Fields, and Gravitation = Aip. Conf. Proc. Particle Size Analysis = Roy Soc Ch Particle Size Analysis = Roy. Soc. Ch. Particle Size Distribution Ii = Acs Sym Ser Particle Size Distribution Ii = Acs. Sym. Ser. Particle Size Measurements: Fundamentals, Practice, Quality = Part Technol Ser Particle Size Measurements: Fundamentals, Practice, Quality = Part. Technol. Ser. Particle Sizing and Characterization = Acs Sym Ser Particle Sizing and Characterization = Acs. Sym. Ser. Particles, Strings, and Cosmology = Aip Conf Proc Particles, Strings, and Cosmology = Aip. Conf. Proc. Particle Technology Series = Part Technol Ser Particle Technology Series = Part. Technol. Ser. Particulate Debris From Medical Implants : Mechanisms of Formation and Biological Consequences = Am Soc Test Mater Particulate Debris From Medical Implants : Mechanisms of Formation and Biological Consequences = Am. Soc. Test. Mater. Particulate Gravity Currents = Spec Publ Int Particulate Gravity Currents = Spec. Publ. Int. Particulate Gravity Currents = Spec Publ Int Ass Se Particulate Gravity Currents = Spec. Publ. Int. Ass. Se. Particulate Gravity Currents = Sp Publ Int Particulate Gravity Currents = Sp. Publ. Int. Particulate Science and Technology = Particul Sci Technol Particulate Science and Technology = Particul. Sci. Technol. Particulate Science and Technology = Part. Sci. Technol. Particuology = Particuology Partisan review (New York, N.Y. : 1936) = Partis Rev Partisan Review = Partisan Rev Partisan Review = Partisan Rev. Partner Choice and Cooperation in Networks: Theory and Experimental Evidence = Lect Notes Econ Math Partner Choice and Cooperation in Networks: Theory and Experimental Evidence = Lect. Notes. Econ. Math. Partnering for Progress: Boston University, The Chelsea Public Schools, and Urban Education Reform = Res Educ Policy Loca Partnering for Progress: Boston University, The Chelsea Public Schools, and Urban Education Reform = Res. Educ. Policy. Loca. Partnership At Work: The Quest for Radical Organizational Change = Routl Res Employ Rel Partnership At Work: The Quest for Radical Organizational Change = Routl. Res. Employ. Rel. Partnership in Chemical Research and Education = Acs Sym Ser Partnership in Chemical Research and Education = Acs. Sym. Ser. Partnerships for A Common Purpose: Cooperative Fisheries Research and Management = Am Fish S S Partnerships for A Common Purpose: Cooperative Fisheries Research and Management = Am. Fish. S. S. Partnerships for Sustainable Forest Ecosystem Management: Fifth Mexico/u.s. Biennial Symposium = Usda Rocky Partnerships for Sustainable Forest Ecosystem Management: Fifth Mexico/u.s. Biennial Symposium = Usda. Rocky. Partnerships in Education : Toward A Literate America = Asha Report Partnerships in Education : Toward A Literate America = Asha. Report. Partonic Structure of The Photon = Springer Tr Mod Phys Partonic Structure of The Photon = Springer. Tr. Mod. Phys. Parttorteneti kozlemenyek. Magyar Szocialista Munkaspart. Kozponti Bizottsag. Parttorteneti Intezet = Parttort Kozl Part-whole Reasoning in An Object-centered Framework = Lect Notes Artif Int Part-whole Reasoning in An Object-centered Framework = Lect. Notes. Artif. Int. Part-whole Reasoning in An Object-centered Framwork = Lect Notes Artif Int Part-whole Reasoning in An Object-centered Framwork = Lect. Notes. Artif. Int. Party Discipline and Parliamentary Government = Parliaments Legisl S Party Discipline and Parliamentary Government = Parliaments. Legisl. S. Party Formation in East-central Europe = St Commun T Party Formation in East-central Europe = St. Commun. T. Party Policy in Modern Democracies = Routl Res Comp Polit Party Policy in Modern Democracies = Routl. Res. Comp. Polit. Party Politics and Democratization in Indonesia = Routl Cont Se Asia S Party Politics and Democratization in Indonesia = Routl. Cont. Se. Asia. S. Party Politics in Germany: A Comparative Politics Approach = New Perspect Ger Stu Party Politics in Germany: A Comparative Politics Approach = New. Perspect. Ger. Stu. Party Politics = Party Polit Party Politics = Party Polit. Parvovirus B19 and Hematological Disorders in Children = Virol Res Prog Parvovirus B19 and Hematological Disorders in Children = Virol. Res. Prog. Parvoviruses = Contrib Microbiol Parvoviruses = Contrib. Microbiol. PAS reporter = PAS Rep PAS Reporter = PAS Rep. Passages = Passages Passas - Revue D'etudes Antiques = Pallas Passas - Revue D'etudes Antiques = Pallas. Passato e presente (Florence, Italy) = Passato Presente Passauer Schriften zur Psychologiegeschichte / herausgegeben vom Institut fur Geschichte der Neueren Psychologie der Universitat Passau = Passau Schr Psychologiegesch Passenger Travel Demand Forecasting, Planning Applications, and Statewide Multimodal Planning = Transport Res Rec Passenger Travel Demand Forecasting, Planning Applications, and Statewide Multimodal Planning = Transport. Res. Rec. Passionate Histories: Myth, Memory and Indigenous Australia = Aborig Hist Mg Ser Passionate Histories: Myth, Memory and Indigenous Australia = Aborig. Hist. Mg. Ser. Passionate Society: The Social, Political and Moral Thought of Adam Ferguson = Arch Int Hist Idees Passionate Society: The Social, Political and Moral Thought of Adam Ferguson = Arch. Int. Hist. Idees. Passion for Policy: Essays in Public Sector Reform = Anzsog Monogr Passion for Policy: Essays in Public Sector Reform = Anzsog. Monogr. Passion of George Sarton: A Modern Marriage and Its Discipline = Mem Am Philos Soc Passion of George Sarton: A Modern Marriage and Its Discipline = Mem. Am. Philos. Soc. Passion of Infinity: Kierkegaard, Aristotle and The Rebirth of Tragedy = Kierke Stud Monogr S Passion of Infinity: Kierkegaard, Aristotle and The Rebirth of Tragedy = Kierke. Stud. Monogr. S. Passion Plays = Schlern Sch Passion Plays = Schlern. Sch. Passions in The Arts of The Early Modern Netherlands = Neth Yearb Hist Art Passions in The Arts of The Early Modern Netherlands = Neth. Yearb. Hist. Art. Passions of The Soul in The Metamorphosis of Becoming = Islam Ph Occident Passions of The Soul in The Metamorphosis of Becoming = Islam. Ph. Occident. Passivation of Metals and Semiconductors = Mater Sci Forum Passivation of Metals and Semiconductors = Mater. Sci. Forum. Passive and Active Measurement, Proceedings = Lect Notes Comput Sc Passive and Active Measurement, Proceedings = Lect. Notes. Comput. Sc. Passive and Active Network Measurement = Lect Notes Comput Sc Passive and Active Network Measurement = Lect. Notes. Comput. Sc. Passive and Active Network Measurement, Proceedings = Lect Notes Comput Sc Passive and Active Network Measurement, Proceedings = Lect. Notes. Comput. Sc. Passive Components and Fiber-based Devices Iii, Pts 1 and 2 = Proc Spie Passive Components and Fiber-based Devices Iii, Pts 1 and 2 = Proc. Spie. Passive Components and Fiber-based Devices Iii, Pts 1 and 2 = P Soc Photo-opt Ins Passive Components and Fiber-based Devices Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Passive Components and Fiber-based Devices Ii, Pt 1 and 2 = Proc Spie Passive Components and Fiber-based Devices Ii, Pt 1 and 2 = Proc. Spie. Passive Components and Fiber-based Devices Ii, Pt 1 and 2 = P Soc Photo-opt Ins Passive Components and Fiber-based Devices Ii, Pt 1 and 2 = P. Soc. Photo-opt. Ins. Passive Components and Fiber-based Devices Iv, Pts 1 and 2 = Proc Spie Passive Components and Fiber-based Devices Iv, Pts 1 and 2 = Proc. Spie. Passive Components and Fiber-based Devices Iv, Pts 1 and 2 = P Soc Photo-opt Ins Passive Components and Fiber-based Devices Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Passive Components and Fiber-based Devices, Pts 1 and 2 = P Soc Photo-opt Ins Passive Components and Fiber-based Devices, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Passive Components and Fiber-based Devices Vii = Proc Spie Passive Components and Fiber-based Devices Vii = Proc. Spie. Passive Damping and Isolation - Smart Structures and Materials 1996 = P Soc Photo-opt Ins Passive Damping and Isolation - Smart Structures and Materials 1996 = P. Soc. Photo-opt. Ins. Passive Damping and Isolation - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Passive Damping and Isolation - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Passive Damping and Isolation - Smart Structures and Materials 1998 = P Soc Photo-opt Ins Passive Damping and Isolation - Smart Structures and Materials 1998 = P. Soc. Photo-opt. Ins. Passive Damping = P Soc Photo-opt Ins Passive Damping = P. Soc. Photo-opt. Ins. Passive Eye Monitoring: Algorithms, Applications and Experiments = Signals Commun Techn Passive Eye Monitoring: Algorithms, Applications and Experiments = Signals. Commun. Techn. Passive Fiber Optic Components and Their Reliability = P Soc Photo-opt Ins Passive Fiber Optic Components and Their Reliability = P. Soc. Photo-opt. Ins. Passive Infrared Remote Sensing of Clouds and The Atmosphere Iii = P Soc Photo-opt Ins Passive Infrared Remote Sensing of Clouds and The Atmosphere Iii = P. Soc. Photo-opt. Ins. Passive Infrared Remote Sensing of Clouds and The Atmosphere Ii = P Soc Photo-opt Ins Passive Infrared Remote Sensing of Clouds and The Atmosphere Ii = P. Soc. Photo-opt. Ins. Passive Infrared Remote Sensing of Clouds and The Atmosphere = P Soc Photo-opt Ins Passive Infrared Remote Sensing of Clouds and The Atmosphere = P. Soc. Photo-opt. Ins. Passive Materials for Optical Elements Ii = P Soc Photo-opt Ins Passive Materials for Optical Elements Ii = P. Soc. Photo-opt. Ins. Passive Materials for Optical Elements = P Soc Photo-opt Ins Passive Materials for Optical Elements = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Iii = Proc Spie Passive Millimeter-wave Imaging Technology Iii = Proc. Spie. Passive Millimeter-wave Imaging Technology Iii = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Iii = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Ii = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Ii = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Iv = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Iv = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Ix = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Ix = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Vi and Radar Sensor Technology Vii = Proc Spie Passive Millimeter-wave Imaging Technology Vi and Radar Sensor Technology Vii = Proc. Spie. Passive Millimeter-wave Imaging Technology Vi and Radar Sensor Technology Vii = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Vi and Radar Sensor Technology Vii = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Viii = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Viii = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology V = Proc Spie Passive Millimeter-wave Imaging Technology V = Proc. Spie. Passive Millimeter-wave Imaging Technology V = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology V = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Xiii = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology Xiii = P. Soc. Photo-opt. Ins. Passive Millimeter-wave Imaging Technology Xi = Proc Spie Passive Millimeter-wave Imaging Technology Xi = Proc. Spie. Passive Millimeter-wave Imaging Technology Xiv = Proc Spie Passive Millimeter-wave Imaging Technology Xiv = Proc. Spie. Passive Millimeter-wave Imaging Technology X = P Soc Photo-opt Ins Passive Millimeter-wave Imaging Technology X = P. Soc. Photo-opt. Ins. Passive Millimetre-wave and Terahertz Imaging and Technology = Proc Spie Passive Millimetre-wave and Terahertz Imaging and Technology = Proc. Spie. Passive Millimetre-wave and Terahertz Imaging and Technology = P Soc Photo-opt Ins Passive Millimetre-wave and Terahertz Imaging and Technology = P. Soc. Photo-opt. Ins. Passive Optical Remote Sensing of The Atmosphere and Clouds Iv = Proc Spie Passive Optical Remote Sensing of The Atmosphere and Clouds Iv = Proc. Spie. Passive Optical Remote Sensing of The Atmosphere and Clouds Iv = P Soc Photo-opt Ins Passive Optical Remote Sensing of The Atmosphere and Clouds Iv = P. Soc. Photo-opt. Ins. Passivity and Localized Corrosion = Elec Soc S Passivity and Localized Corrosion = Elec. Soc. S. Past and Future of Information Systems: 1976-2006 and Beyond = Int Fed Info Proc Past and Future of Information Systems: 1976-2006 and Beyond = Int. Fed. Info. Proc. Past and Future of Medieval Studies = N D Conf M Past and Future of Medieval Studies = N. D. Conf. M. Past and Future Rapid Environmental Changes: The Spatial and Evolutionary Responses of Terrestrial Biota = Nato Asi Ser Ser I Past and Future Rapid Environmental Changes: The Spatial and Evolutionary Responses of Terrestrial Biota = Nato. Asi. Ser. Ser. I. Past and Present: a journal of historical Studies = P&P Past and Present in Deno(x) Catalysis: From Molecular Modelling to Chemical Engineering = Stud Surf Sci Catal Past and Present in Deno(x) Catalysis: From Molecular Modelling to Chemical Engineering = Stud. Surf. Sci. Catal. Past and Present Variability of The Solar-terrestrial System: Measurement, Data Analysis and Theoretical Models = P Int Sch Phys Past and Present Variability of The Solar-terrestrial System: Measurement, Data Analysis and Theoretical Models = P. Int. Sch. Phys. Past and Present Water Column Anoxia = Nato Sci S Ss Iv Ear Past and Present Water Column Anoxia = Nato. Sci. S. Ss. Iv. Ear. Past Climate Variability in South America and Surrounding Regions: From The Last Glacial Maximum to The Holocene = Dev Paleoenviron Res Past Climate Variability in South America and Surrounding Regions: From The Last Glacial Maximum to The Holocene = Dev. Paleoenviron. Res. Past Climate Variability Through Europe and Africa = Dev Paleoenviron Res Past Climate Variability Through Europe and Africa = Dev. Paleoenviron. Res. Past Convictions: The Penance of Louis The Pious and The Decline of The Carolingians = Middle Ages Ser Past Convictions: The Penance of Louis The Pious and The Decline of The Carolingians = Middle. Ages. Ser. Pasteurellosis in Production Animals = Aciar Proc Pasteurellosis in Production Animals = Aciar. Proc. Past Human Migrations in East Asia: Matching Archaeology, Linguistics and Genetics = Routledge Stud Early Past Human Migrations in East Asia: Matching Archaeology, Linguistics and Genetics = Routledge. Stud. Early. Past in Pieces: Belonging in The New Cyprus = Contemp Ethnogr Past in Pieces: Belonging in The New Cyprus = Contemp. Ethnogr. Pastora Goldner Series in Post-holocaust Studies = Pastora Goldner Ser Pastora Goldner Series in Post-holocaust Studies = Pastora Goldner Ser. Pastoral Drama in Early Modern Italy: The Making of A New Genre = Ital Perspect Pastoral Drama in Early Modern Italy: The Making of A New Genre = Ital. Perspect. Pastoral Leadership for Manhood and Womanhood = Fdn Family Pastoral Leadership for Manhood and Womanhood = Fdn. Family. Pastoral psychology = Pastoral Psychol Pastoral Psychology = Pastoral Psychol Pastoral Psychology = Pastoral Psychol. Past, Present, Future = Old Test St Past, Present, Future = Old. Test. St. Past & present = Past Present Past & Present = Past Present Past Without Shadow: Constructing The Past in German Books for Children = Child Lit Cult Past Without Shadow: Constructing The Past in German Books for Children = Child. Lit. Cult. Patagonian Ice Fields: A Unique Natural Laboratory for Environmental and Climate Change Studies = Ser Cent Es Patagonian Ice Fields: A Unique Natural Laboratory for Environmental and Climate Change Studies = Ser. Cent. Es. Patentierung Von Geschaftsprozessen: Monitoring - Strategien - Schutz = Vdi-buch Patentierung Von Geschaftsprozessen: Monitoring - Strategien - Schutz = Vdi-buch. Patents and Technological Progress in A Globalized World: Liber Amicorum Joseph Straus = Mpi Stud Intell Prop Patents and Technological Progress in A Globalized World: Liber Amicorum Joseph Straus = Mpi. Stud. Intell. Prop. Path Dependency and Macroeconomics = Int Pap Polit Econ Path Dependency and Macroeconomics = Int. Pap. Polit. Econ. Path Integral Quantizaton and Stochastic Quantization = Springer Tr Mod Phys Path Integral Quantizaton and Stochastic Quantization = Springer. Tr. Mod. Phys. Pathobiology Annual = Pathobiol Ann Pathobiology Annual = Pathobiol. Ann. Pathobiology annual = Pathobiol Annu Pathobiology Annual = Pathobiol. Annu. Pathobiology : journal of immunopathology, molecular and cellular biology = Pathobiology Pathobiology of Marine and Estuarine Organisms = Adv Fish Sc Pathobiology of Marine and Estuarine Organisms = Adv. Fish. Sc. Pathobiology=Pathobiology;; Pathobiology = Pathobiology Path of Speech Technologies in Computer Assisted Language Learning: From Research Toward Practice = Rout Stud Comp Assis Path of Speech Technologies in Computer Assisted Language Learning: From Research Toward Practice = Rout. Stud. Comp. Assis. Pathogen and Microbial Contamination Management in Micropropagation = Dev Plant Pathol Pathogen and Microbial Contamination Management in Micropropagation = Dev. Plant. Pathol. Pathogen-derived Immunomodulatory Molecules = Adv Exp Med Biol Pathogen-derived Immunomodulatory Molecules = Adv. Exp. Med. Biol. Pathogen Detection and Remediation for Safe Eating = P Soc Photo-opt Ins Pathogen Detection and Remediation for Safe Eating = P. Soc. Photo-opt. Ins. Pathogenesis and Clinical Practice in Gastroenterology = Falk Symp Pathogenesis and Clinical Practice in Gastroenterology = Falk. Symp. Pathogenesis and Control of Viral Infections = Serono Sym Pathogenesis and Control of Viral Infections = Serono. Sym. Pathogenesis and Management of Atopic Dermatitis = Curr Probl Dermatol Pathogenesis and Management of Atopic Dermatitis = Curr. Probl. Dermatol. Pathogenesis and Therapy of Amyotrophic Lateral Sclerosis = Adv Neurol Pathogenesis and Therapy of Amyotrophic Lateral Sclerosis = Adv. Neurol. Pathogenesis and Treatment of Niddm and Its Related Problems = Int Congr Ser Pathogenesis and Treatment of Niddm and Its Related Problems = Int. Congr. Ser. Pathogenesis Mechanism and Cardiovascular Risk Factors for Arteriosclerosis in Rheumatoid Arthritis: The Importance and Implications of Early Diagnosis = Immunol Immune Syst Pathogenesis Mechanism and Cardiovascular Risk Factors for Arteriosclerosis in Rheumatoid Arthritis: The Importance and Implications of Early Diagnosis = Immunol. Immune. Syst. Pathogenic and Diagnostic Relevance of Autoantibodies = Updat Clin Immunol Pathogenic and Diagnostic Relevance of Autoantibodies = Updat. Clin. Immunol. Pathogenicity Islands and The Evolution of Pathogenic Microbes, Vol 1 = Curr Top Microbiol Pathogenicity Islands and The Evolution of Pathogenic Microbes, Vol 1 = Curr. Top. Microbiol. Pathogenicity Islands and The Evolution of Pathogenic Microbes, Vol 2 = Curr Top Microbiol Pathogenicity Islands and The Evolution of Pathogenic Microbes, Vol 2 = Curr. Top. Microbiol. Pathologe=Pathologe;; Pathologe = Pathologe Pathologia Et Microbiologia = Pathol Microbiol Pathologia Et Microbiologia = Pathol. Microbiol. Pathologia et microbiologia = Pathol Microbiol (Basel) Pathologia et Microbiologia = Pathol. Microbiol. (Basel) Pathologia Europaea = Pathol Eur Pathologia Europaea = Pathol. Eur. Pathologia veterinaria = Pathol Vet Pathologia Veterinaria = Pathol Vet Pathologia Veterinaria = Pathol. Vet. Pathologica=Pathologica;; Pathologica = Pathologica Pathologie Biologie = Pathol Biol Pathologie Biologie = Pathol. Biol. Pathologie-biologie = Pathol Biol (Paris) Pathologie Biologie=Pathol Biol (Paris);; Pathologie-Biologie = Pathol. Biol. (Paris) Pathologie Der Invasion Und Metastasierung: Pathologie Der Lungenerkrankungen = Verh Deut G Pathologie Der Invasion Und Metastasierung: Pathologie Der Lungenerkrankungen = Verh. Deut. G. Pathologie et biologie = Pathol Biol Pathologie et Biologie = Pathol. Biol. Pathologies of Body, Self and Space = Cogn Neuropsychiatry Pathologies of Body, Self and Space = Cogn. Neuropsychiatry. Pathologies of Travel = Clio Medica Pathologies of Travel = Clio. Medica. Pathologist = Pathologist Pathology and immunopathology research = Pathol Immunopathol Res Pathology and Immunopathology Research = Pathol. Immunopathol. Res. Pathology and Immunopathology Research = Pathol Immunopath R Pathology and Immunopathology Research = Pathol. Immunopath. R. Pathology Annual 1993, Vol 28, Pt 1 = Pathol Annu Pathology Annual 1993, Vol 28, Pt 1 = Pathol. Annu. Pathology Annual 1993, Vol 28, Pt 2 = Pathol Annu Pathology Annual 1993, Vol 28, Pt 2 = Pathol. Annu. Pathology Annual 1994, Vol 29, Pt 1 = Pathol Annu Pathology Annual 1994, Vol 29, Pt 1 = Pathol. Annu. Pathology Annual 1994, Vol 29, Pt 2 = Pathol Annu Pathology Annual 1994, Vol 29, Pt 2 = Pathol. Annu. Pathology Annual, 1995 Vol 30, Pt 2 = Pathol Annu Pathology Annual, 1995 Vol 30, Pt 2 = Pathol. Annu. Pathology annual = Pathol Annu Pathology Annual = Pathol Annu Pathology Annual = Pathol. Annu. Pathology international = Pathol Int Pathology International=Pathol Int;; Pathology International = Pathol Int Pathology International = Pathol. Int. Pathology of Invasion and Metastasis: Pathology of Pulmonary Diseases = Verh Deut G Pathology of Invasion and Metastasis: Pathology of Pulmonary Diseases = Verh. Deut. G. Pathology of Reproductive Failure = Int Aca Pat Pathology of Reproductive Failure = Int. Aca. Pat. Pathology of Septic Shock = Curr Top Microbiol Pathology of Septic Shock = Curr. Top. Microbiol. Pathology of The Hematopoietic Stem Cell : Quantative Pathology, Molecular Pathology = Verh Deut G Pathology of The Hematopoietic Stem Cell : Quantative Pathology, Molecular Pathology = Verh. Deut. G. Pathology of The Kidneys and Urinary Passages - Molecular Vascular Pathology and Angiogenesis = Verh Deut G Pathology of The Kidneys and Urinary Passages - Molecular Vascular Pathology and Angiogenesis = Verh. Deut. G. Pathology of The Lung = Eur Respir Monogr Pathology of The Lung = Eur. Respir. Monogr. Pathology & Oncology Research = Pathol Oncol Res Pathology & Oncology Research = Pathol. Oncol. Res. Pathology Oncology Research = Pathol. Oncol. Res. Pathology oncology research : POR = Pathol Oncol Res Pathology=Pathology;; Pathology = Pathology Pathology=Pathology (Phila);; Pathology = Pathology (Phila.) Pathology (Philadelphia, Pa.) = Pathology (Phila) Pathology, research and practice = Pathol Res Pract Pathology Research and Practice = Pathol Res Pract Pathology Research and Practice = Pathol. Res. Pract. Pathology, Research and Practice=Pathol Res Pract;; Pathology, Research and Practice = Pathol. Res. Pract. Pathology Update: An Educational Series of The European Society of Pathology = Pathol Update Pathology Update: An Educational Series of The European Society of Pathology = Pathol. Update. Pathology Update: An Educational Series of The European Society of Pathology, Vol 1 = Pathol Update Pathology Update: An Educational Series of The European Society of Pathology, Vol 1 = Pathol. Update. Pathophysiology, Evaluation and Management of Valvular Heart Diseases = Adv Cardiol Pathophysiology, Evaluation and Management of Valvular Heart Diseases = Adv. Cardiol. Pathophysiology, Evaluation and Management of Valvular Heart Diseases, Vol 2 = Adv Cardiol Pathophysiology, Evaluation and Management of Valvular Heart Diseases, Vol 2 = Adv. Cardiol. Pathophysiology of Cardiovascular Disease = Prog Exp Cardiol Pathophysiology of Cardiovascular Disease = Prog. Exp. Cardiol. Pathophysiology of haemostasis and thrombosis = Pathophysiol Haemost Thromb Pathophysiology of Haemostasis and Thrombosis = Pathophysiol. Haemost. Thromb. Pathophysiology of Haemostasis and Thrombosis = Pathophysiol Haemo T Pathophysiology of Haemostasis and Thrombosis = Pathophysiol. Haemo. T. Pathophysiology of Head and Neck Musculoskeletal Disorders = Front Oral Pathophysiology of Head and Neck Musculoskeletal Disorders = Front. Oral. Pathophysiology of The Blood-brain Barrier = Ferns Found Series Pathophysiology of The Blood-brain Barrier = Ferns. Found. Series. Pathophysiology of The Liver = Int Congr Ser Pathophysiology of The Liver = Int. Congr. Ser. Pathophysiology : the official journal of the International Society for Pathophysiology / ISP = Pathophysiology Path Player Games: Analysis and Applications = Springer Ser Optim A Path Player Games: Analysis and Applications = Springer. Ser. Optim. A. Paths of Enterprise = Soc Anal Se Paths of Enterprise = Soc. Anal. Se. Path Toward Improved Ionosphere Specification and Forecast Models = Adv Space Res Path Toward Improved Ionosphere Specification and Forecast Models = Adv. Space. Res. Pathways (Chestnut Hill, Mass.) = Pathways Pathways in Geography Series: Resource Publication = Pathw Geog Ser Pathways in Geography Series: Resource Publication = Pathw. Geog. Ser. Pathways Through Adolescence = Penn St Ch Pathways Through Adolescence = Penn. St. Ch. Pathways Through An Eclectic Universe = Astr Soc P Pathways Through An Eclectic Universe = Astr. Soc. P. Pathways to Institutional Improvement With Information Technology in Educational Management = Int Fed Info Proc Pathways to Institutional Improvement With Information Technology in Educational Management = Int. Fed. Info. Proc. Pathways to Power: New Perspectives On The Emergence of Social Inequality = Fund Issue Archaeol Pathways to Power: New Perspectives On The Emergence of Social Inequality = Fund. Issue. Archaeol. Pathways Towards Habitable Planets = Astr Soc P Pathways Towards Habitable Planets = Astr. Soc. P. Patient accounts = Patient Acc Patient Accounts = Patient Acc. Patient care management = Patient Care Manag Patient care = Patient Care Patient Care = Patient Care Patient Counselling and Health Education = Patient Couns Health Patient Counselling and Health Education = Patient Couns. Health Patient counselling and health education = Patient Couns Health Educ Patient Counselling and Health Education = Patient Couns. Health Educ. Patient education and counseling = Patient Educ Couns Patient Education and Counseling = Patient Educ Couns Patient Education and Counseling = Patient Educ. Couns. Patient education newsletter = Patient Educ Newsl Patient Education Newsletter = Patient Educ. Newsl. Patient-focused care and satisfaction / American Health Consultants = Patient Focus Care Satisf Patient-Focused Care and Satisfaction = Patient. Focus. Care Satisf. Patient-Focused Care = Patient. Focus. Care Patient-focused care : the health care executive's guide to organizational restructuring = Patient Focus Care Patient Package Insert As A Source of Drug Information = Int Congr Ser Patient Package Insert As A Source of Drug Information = Int. Congr. Ser. Patient-patient Centered Outcomes Research = Patient Patient-patient Centered Outcomes Research = Patient. Patient Safety and Adverse Events in Contrast Medium Examinations = Int Congr Ser Patient Safety and Adverse Events in Contrast Medium Examinations = Int. Congr. Ser. Patient Safety and Health Care Management = Adv Health Care Mana Patient Safety and Health Care Management = Adv. Health Care Mana. Patients, Consumers and Civil Society = Adv Med Sociol Patients, Consumers and Civil Society = Adv. Med. Sociol. Patma-banasirakan handes: revue historico-philologique = PBH Patologia e clinica ostetrica e ginecologica = Patol Clin Ostet Ginecol Patologia e Clinica Ostetrica e Ginecologica = Patol. Clin. Ostet. Ginecol. Patologia-madrid = Patologia-madrid Patologia-mexico City = Patologia-mexico Patologia = Patologia Patologia = Patologia (Mex) Patologia polska = Patol Pol Patologia Polska = Patol. Pol. Patologicheskaia fiziologiia i eksperimental'naia terapiia = Patol Fiziol Eksp Ter Patologicheskaia Fiziologiia i Eksperimentalnaia Terapiia = Patol. Fiziol. Eksp. Ter. Patologicheskaia Fiziologiia I Eksperimentalnaia Terapiia=Patol Fiziol Eksp Ter;; Patriotism, Cosmopolitanism, and National Culture: Public Culture in Hamburg 1700-1933 = Int For Lit Patriotism, Cosmopolitanism, and National Culture: Public Culture in Hamburg 1700-1933 = Int. For. Lit. Patristische Texte Und Studien = Patrist Texte Stud Patristische Texte Und Studien = Patrist. Texte Stud. Pattern Analysis and Applications = Pattern Anal Appl Pattern Analysis and Applications = Pattern Anal. Appl. Pattern-based Compression of Multi-band Image Data for Landscape Analysis = Environ Ecol Stat Se Pattern-based Compression of Multi-band Image Data for Landscape Analysis = Environ. Ecol. Stat. Se. Pattern Formation in Granular Materials = Springer Tr Mod Phys Pattern Formation in Granular Materials = Springer. Tr. Mod. Phys. Pattern: Ornament, Structure, and Behavior = Context Archit Pattern: Ornament, Structure, and Behavior = Context. Archit. Pattern Recognition and Data Mining, Pt 1, Proceedings = Lect Notes Comput Sc Pattern Recognition and Data Mining, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition and Image Analysis = Pattern Recognit Image Anal. Pattern Recognition and Image Analysis, Proceedings = Lect Notes Comput Sc Pattern Recognition and Image Analysis, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition and Image Analysis, Pt 1, Proceedings = Lect Notes Comput Sc Pattern Recognition and Image Analysis, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition and Image Analysis, Pt 2, Proceedings = Lect Notes Comput Sc Pattern Recognition and Image Analysis, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition and Image Analysis = S Mach Perc Pattern Recognition and Image Analysis = S. Mach. Perc. Pattern Recognition and Machine Intelligence, Proceedings = Lect Notes Comput Sc Pattern Recognition and Machine Intelligence, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition, Chemometrics, and Imaging for Optical Environmental Monitoring = Proc Spie Pattern Recognition, Chemometrics, and Imaging for Optical Environmental Monitoring = Proc. Spie. Pattern Recognition, Chemometrics, and Imaging for Optical Environmental Monitoring = P Soc Photo-opt Ins Pattern Recognition, Chemometrics, and Imaging for Optical Environmental Monitoring = P. Soc. Photo-opt. Ins. Pattern Recognition in Bioinformatics = Lect N Bioinformat Pattern Recognition in Bioinformatics = Lect. N. Bioinformat. Pattern Recognition in Bioinformatics, Proceedings = Lect N Bioinformat Pattern Recognition in Bioinformatics, Proceedings = Lect. N. Bioinformat. Pattern Recognition in Bioinformatics, Proceedings = Lect Notes Comput Sc Pattern Recognition in Bioinformatics, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition in Practice Iv: Multiple Paradigms, Comparative Studies and Hybrid Systems = Mach Intell Patt Rec Pattern Recognition in Practice Iv: Multiple Paradigms, Comparative Studies and Hybrid Systems = Mach. Intell. Patt. Rec. Pattern Recognition = Lect Notes Comput Sc Pattern Recognition = Lect. Notes. Comput. Sc. Pattern Recognition Letters = Pattern Recognit. Lett. Pattern Recognition Letters = Pattern Recogn Lett Pattern Recognition Letters = Pattern Recogn. Lett. Pattern Recognition = Pattern Recogn Pattern Recognition = Pattern Recogn. Pattern recognition = Pattern Recognit Pattern Recognition = Pattern Recognit. Pattern Recognition, Proceedings = Lect Notes Comput Sc Pattern Recognition, Proceedings = Lect. Notes. Comput. Sc. Pattern Recognition Using Neural and Functional Networks = Stud Comput Intell Pattern Recognition Using Neural and Functional Networks = Stud. Comput. Intell. Pattern Recogniton With Support Vector Machines, Proceedings = Lect Notes Comput Sc Pattern Recogniton With Support Vector Machines, Proceedings = Lect. Notes. Comput. Sc. Patterns and Factors of Biota Distribution in Remote European Mountain Lakes = Adv Limnol Patterns and Factors of Biota Distribution in Remote European Mountain Lakes = Adv. Limnol. Patterns and Processes in Early Vertebrate Evolution = Spec Pap Palaeontol Patterns and Processes in Early Vertebrate Evolution = Spec. Pap. Palaeontol. Patterns of Change = Sci Netw Hist Stud Patterns of Change = Sci. Netw. Hist. Stud. Patterns of Language Usage: Corpus Linguistics As Method of Analyzing Discourse and Culture = Sprache Wissen Patterns of Language Usage: Corpus Linguistics As Method of Analyzing Discourse and Culture = Sprache. Wissen. Patterns of prejudice = Patterns Prejudice Patterns of Prejudice = Patterns Prejudice Patterns of Symmetry Breaking = Nato Sci Ser Ii-math Patterns of Symmetry Breaking = Nato. Sci. Ser. Ii-math. Patterns of Symmetry Breaking = Nato Sci Ser Ii Math Patterns of Symmetry Breaking = Nato. Sci. Ser. Ii. Math. Patton: A Biography = Great Gen Patton: A Biography = Great. Gen. Paul and The Mosaic Law = W U Neu Test Paul and The Mosaic Law = W. U. Neu. Test. Paul Auster's Postmodernity = Stud Major Lit Autho Paul Auster's Postmodernity = Stud. Major. Lit. Autho. Paul Erdos and His Mathematics I = Bolyai Math Stud Paul Erdos and His Mathematics I = Bolyai. Math. Stud. Paul Erdos and His Mathematics I = Bolyai Soc Math Stud Paul Erdos and His Mathematics I = Bolyai. Soc. Math. Stud. Paul Erdos and His Mathematics Ii = Bolyai Math Stud Paul Erdos and His Mathematics Ii = Bolyai. Math. Stud. Paul Erdos and His Mathematics Ii = Bolyai Soc Math Stud Paul Erdos and His Mathematics Ii = Bolyai. Soc. Math. Stud. Paulo Freire: Teaching for Freedom and Transformation = Explor Educ Purp Paulo Freire: Teaching for Freedom and Transformation = Explor. Educ. Purp. Paul Tillich's Theological Legacy: Spirit and Community = Theol Bilb Paul Tillich's Theological Legacy: Spirit and Community = Theol. Bilb. Paul Virilio = Routl Crit Thinkers Paul Virilio = Routl. Crit. Thinkers. Paulys Realencyclopädie der classischen Altertumswissenschaft = RE Pave Management; Monitoring, Evaluation, and Data Storage; and Acceleratyed Testing 2006 = Transport Res Rec Pave Management; Monitoring, Evaluation, and Data Storage; and Acceleratyed Testing 2006 = Transport. Res. Rec. Pavement and Winter Maintenance = Transport Res Rec Pavement and Winter Maintenance = Transport. Res. Rec. Pavement Assessment and Testing = Transport Res Rec Pavement Assessment and Testing = Transport. Res. Rec. Pavement Assessment, Monitoring, and Evaluation 2003 = Transport Res Rec Pavement Assessment, Monitoring, and Evaluation 2003 = Transport. Res. Rec. Pavement Design and Accelerated Testing 2004 = Transport Res Rec Pavement Design and Accelerated Testing 2004 = Transport. Res. Rec. Pavement Management and Monitoring of Traffic and Pavements = Transport Res Rec Pavement Management and Monitoring of Traffic and Pavements = Transport. Res. Rec. Pavement Management and Monitoring = Transport Res Rec Pavement Management and Monitoring = Transport. Res. Rec. Pavement Management and Rigid and Flexible Pavement Design 2003 = Transport Res Rec Pavement Management and Rigid and Flexible Pavement Design 2003 = Transport. Res. Rec. Pavement Management Implementation = Am Soc Test Mater Pavement Management Implementation = Am. Soc. Test. Mater. Pavement Management, Monitoring, and Accelerated Testing 2002 = Transport Res Rec Pavement Management, Monitoring, and Accelerated Testing 2002 = Transport. Res. Rec. Pavement Management, Monitoring, and Accelerated Testing = Transport Res Rec Pavement Management, Monitoring, and Accelerated Testing = Transport. Res. Rec. Pavement Management, Monitoring, Evaluation, and Data Storage 2004 = Transport Res Rec Pavement Management, Monitoring, Evaluation, and Data Storage 2004 = Transport. Res. Rec. Pavement Management; Monitoring, Evaluation, and Data Storage; and Accelerated Testing 2005 = Transport Res Rec Pavement Management; Monitoring, Evaluation, and Data Storage; and Accelerated Testing 2005 = Transport. Res. Rec. Pavement Rehabilitation and Accelerated Testing 2003 = Transport Res Rec Pavement Rehabilitation and Accelerated Testing 2003 = Transport. Res. Rec. Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties 2004 = Transport Res Rec Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties 2004 = Transport. Res. Rec. Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties 2005 = Transport Res Rec Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties 2005 = Transport. Res. Rec. Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties-vehicle Interaction 2006 = Transport Res Rec Pavement Rehabilitation, Strength and Deformation Characteristics, and Surface Properties-vehicle Interaction 2006 = Transport. Res. Rec. Pavement Research Isses = Transport Res Rec Pavement Research Isses = Transport. Res. Rec. Pavement Surface Condition/performance Assessment: Reliability and Relevancy of Procedures and Technologies = Am Soc Test Mater Pavement Surface Condition/performance Assessment: Reliability and Relevancy of Procedures and Technologies = Am. Soc. Test. Mater. Paving The Way for Apollo 11 = S-p B Space Explor Paving The Way for Apollo 11 = S-p. B. Space. Explor. Pavlovian Journal of Biological Science = Pavlovian J Biol Sci Pavlovian Journal of Biological Science = Pavlovian J. Biol. Sci. Pavlovian Journal of Biological Science = Pavlov. J. Biol. Sci. Pavlov journal of higher nervous activity = Pavlov J High Nerv Act Pavlov Journal of Higher Nervous Activity Ussr = Pav J High Nerv Act Pavlov Journal of Higher Nervous Activity Ussr = Pav. J. High. Nerv. Act. Pawlow-Zeitschrift fur hohere Nerventatigkeit. Deutsche Ausg = Pawlow Z Hohere Nerventatigkeit Paying for Progress in China = Routl Contemp China Paying for Progress in China = Routl. Contemp. China Payment for Environmental Services in Agricultural Landscapes: Economic Policies and Poverty Reduction in Developing Countries = Nat Res Manag Policy Payment for Environmental Services in Agricultural Landscapes: Economic Policies and Poverty Reduction in Developing Countries = Nat. Res. Manag. Policy. Paysage&environnement = Paysage Environm Paysage&environnement = Paysage. Environm. PBMD-Bulletin = PBMD-Bull. Pc 2008: Proceedings of The 8th Wseas Internaitonal Conference On Power Systems and Power Technology = Rec Adv Electr Eng Pc 2008: Proceedings of The 8th Wseas Internaitonal Conference On Power Systems and Power Technology = Rec. Adv. Electr. Eng. Pci Journal = Pci J Pci Journal = Pci J. Pcim Reference Series in Power Electronics & Intelligent Motion = Pcim Ref S Pcim Reference Series in Power Electronics & Intelligent Motion = Pcim Ref. S. Pck and Teaching Innovations = Educ Compet Glob Wor Pck and Teaching Innovations = Educ. Compet. Glob. Wor. Pc Products = Pc Prod Pc Products = Pc Prod. Pcps-proceedings of The Cambridge Philological Society = Pcps-p Camb Philol S Pcps-proceedings of The Cambridge Philological Society = Pcps-p. Camb. Philol. S. Pcr-methods and Applications = Pcr Meth Appl Pcr-methods and Applications = Pcr. Meth. Appl. PCR methods and applications = PCR Methods Appl PCR Methods and Applications = PCR Methods Appl. Pcr Methods in Foods = Food Microbiol Food Pcr Methods in Foods = Food. Microbiol. Food. Pcr Mutation Detection Protocols, Second Edition = Methods Mol Biol Pcr Mutation Detection Protocols, Second Edition = Methods. Mol. Biol. Pcr Protocols, Third Edition = Methods Mol Biol Pcr Protocols, Third Edition = Methods. Mol. Biol. PCR Reporter = PCR Rep. P Cygni 2000 : 400 Years of Progress = Astr Soc P P Cygni 2000 : 400 Years of Progress = Astr. Soc. P Pda/emea European Virus Safety Forum = Dev Biologicals Pda/emea European Virus Safety Forum = Dev. Biologicals. Pda Journal of Pharmaceutical Science and Technology = Pda J Pharm Sci Tech Pda Journal of Pharmaceutical Science and Technology = Pda J. Pharm. Sci. Tech. PDA Journal of Pharmaceutical Science and Technology=PDA J Pharm Sci Technol;; PDA Journal of Pharmaceutical Science and Technology = PDA J. Pharm. Sci. Technol. PDA journal of pharmaceutical science and technology / PDA = PDA J Pharm Sci Technol Pdes and Continuum Models of Phase Transitions = Lect Notes Phys Pdes and Continuum Models of Phase Transitions = Lect. Notes. Phys. PDM: Physicians' drug manual = PDM PDM; Physicians Drug Manual = PDM. Peabody Essex Museum Collections = Peabody Essex Mus C Peabody Essex Museum Collections = Peabody Essex Mus. C. Peabody Journal of Education = Peabody J Educ Peabody Journal of Education = Peabody J. Educ. Peabody Museum Bulletin = Pea Mus Bull Peabody Museum Bulletin = Pea. Mus. Bull. Peace Accords in Northeast India: Journey Over Milestones = Pol Stud Peace Accords in Northeast India: Journey Over Milestones = Pol. Stud. Peace and Freedom: The Civil Rights and Antiwar Movements in The 1960s = Polit Cult Mod Am Peace and Freedom: The Civil Rights and Antiwar Movements in The 1960s = Polit. Cult. Mod. Am. Peace and Security in The Postmodern World: The Osce and Conflict Resolution = Routl Stud Peace Con Peace and Security in The Postmodern World: The Osce and Conflict Resolution = Routl. Stud. Peace Con. Peace and Wartime Applications and Technical Issues for Unattended Ground Sensors = P Soc Photo-opt Ins Peace and Wartime Applications and Technical Issues for Unattended Ground Sensors = P. Soc. Photo-opt. Ins. Peace As Governance: Power-sharing, Armed Groups and Contemporary Peace Negotiations = Rethink Peace Confl Peace As Governance: Power-sharing, Armed Groups and Contemporary Peace Negotiations = Rethink. Peace Confl. Peacebuilding: Women in International Perspective = Routl Adv Int Relat Peacebuilding: Women in International Perspective = Routl. Adv. Int. Relat. Peace Education Reports = Peac Educ Rep Peace Education Reports = Peac. Educ. Rep. Peace Education Series = Peace Educ Ser Peace Education Series = Peace Educ. Ser. Peaceful Jihad: Negotiating Identity and Modernity in Muslim Java = Contemp Anthr Relig Peaceful Jihad: Negotiating Identity and Modernity in Muslim Java = Contemp. Anthr. Relig. Peaceful Management of Transboundary Resources = Int Env Law Peaceful Management of Transboundary Resources = Int. Env. Law. Peace in International Relations = Routl Stud Peace Con Peace in International Relations = Routl. Stud. Peace Con. Peacekeeping Intelligence: New Players, Extended Boundaries = Stud Intell Ser Peacekeeping Intelligence: New Players, Extended Boundaries = Stud. Intell. Ser. Peacekeeping in The Middle East As An International Regime = Stud Int Relat Peacekeeping in The Middle East As An International Regime = Stud. Int. Relat. Peace Operations and International Criminal Justice: Building Peace After Mass Atrocities = Contemp Secur Stud Peace Operations and International Criminal Justice: Building Peace After Mass Atrocities = Contemp. Secur. Stud. Peace Psychology Book Series = Peace Psychol Book S Peace Psychology Book Series = Peace Psychol. Book S. Peace Psychology in Asia = Peace Psychol Book S Peace Psychology in Asia = Peace Psychol. Book. S. Peace Research Society International Papers=Peace Res. Society Int. Pap. Peace Science Society (International) Papers=Peace Sci. Society Peace Science: Theory and Cases = Contrib Confl Manag Peace Science: Theory and Cases = Contrib. Confl. Manag. Peak Performing Organization = Routl Res Organ Beh Peak Performing Organization = Routl. Res. Organ. Beh. Peanut Improvement : A Case Study in Indonesia = Aciar Proc Peanut Improvement : A Case Study in Indonesia = Aciar. Proc. Peanut Plant and Light: Spermidines From Peanut Flowers and Studies of Their Photoisomerization = Agr Issues Policies Peanut Plant and Light: Spermidines From Peanut Flowers and Studies of Their Photoisomerization = Agr. Issues. Policies. Peasants and Revolution in Rural China: Rural Political Change in The North China Plain and The Yangzi Delta, 1850-1949 = Routl Stud Chin Econ Peasants and Revolution in Rural China: Rural Political Change in The North China Plain and The Yangzi Delta, 1850-1949 = Routl. Stud. Chin. Econ. Peasant studies = Peasant Stud Peatland Ecology and Archaeology: Management of A Cultural Landscape = Landsc Archaeol Ecol Peatland Ecology and Archaeology: Management of A Cultural Landscape = Landsc. Archaeol. Ecol. Pecs 2001: Photon Echo and Coherent Spectroscopy = P Soc Photo-opt Ins Pecs 2001: Photon Echo and Coherent Spectroscopy = P. Soc. Photo-opt. Ins. Pectins and Pectinases = Progr Biotechnol Pectins and Pectinases = Progr. Biotechnol. Peculiar Versus Normal Phenomena in A-type and Related Stars = Astr Soc P Peculiar Versus Normal Phenomena in A-type and Related Stars = Astr. Soc. P. Pedagogically Founded Courseware Generation for Web-based Learning = Lect Notes Comput Sc Pedagogically Founded Courseware Generation for Web-based Learning = Lect. Notes. Comput. Sc. Pedagogical Seminary and Journal of Genetic Psychology = Pedagog Semin J Gen Pedagogical Seminary and Journal of Genetic Psychology = Pedagog. Semin. J. Gen. Pedagogical Seminary = Pedagog Semin Pedagogical Seminary = Pedagog. Semin. Pedagogische Studien = Pedagog Stud Pedagogische Studien = Pedagog. Stud. Pedagogy and Human Movement = Int Stud Phys Educ Y Pedagogy and Human Movement = Int. Stud. Phys. Educ. Y. Pedagogy and Ict Use in Schools Around The World: Findings From The Iea Sites 2006 Study = Cerc Stud Comp Educ Pedagogy and Ict Use in Schools Around The World: Findings From The Iea Sites 2006 Study = Cerc. Stud. Comp. Educ. Pedagogy in (e)motion: Rethinking Spaces and Relations = Explor Educ Purp Pedagogy in (e)motion: Rethinking Spaces and Relations = Explor. Educ. Purp. Pedagogy = Theo Cont C Pedagogy = Theo. Cont. C. Pedestrian and Bicycle Transportation Research 2000 = Transport Res Rec Pedestrian and Bicycle Transportation Research 2000 = Transport. Res. Rec. Pedestrian and Cyclist Impact: A Biomechanical Perspective = Solid Mech Appl Pedestrian and Cyclist Impact: A Biomechanical Perspective = Solid. Mech. Appl. Pedestrian Dynamics: Feedback Control of Crowd Evacuation = Underst Complex Syst Pedestrian Dynamics: Feedback Control of Crowd Evacuation = Underst. Complex. Syst. Pedestrians and Bicycles 2003 = Transport Res Rec Pedestrians and Bicycles 2003 = Transport. Res. Rec. Pedestrians and Bicycles; Developing Countries = Transport Res Rec Pedestrians and Bicycles; Developing Countries = Transport. Res. Rec. Pedestrians and Bicycles = Transport Res Rec Pedestrians and Bicycles = Transport. Res. Rec. Pediatre = Pediatre Pediatria de las Americas = Pediatr Am Pediatria Medica e Chirurgica = Pediatr. Med. Chir. Pediatria Medica E Chirurgica=Pediatr Med Chir;; Pediatria panamericana = Pediatr Panam Pediatria Panamericana = Pediatr. Panam. Pediatria = Pediatria (Santiago) Pediatria polska = Pediatr Pol Pediatria Polska = Pediatr. Pol. Pediatria pratica = Pediatr Prat Pediatria Pratica = Pediatr. Prat. Pediatric Adrenal Diseases = Endocr Dev Pediatric Adrenal Diseases = Endocr. Dev. Pediatric Aids and Hiv Infection-fetus to Adolescent = Pediatr Aids Hiv Inf Pediatric Aids and Hiv Infection-fetus to Adolescent = Pediatr. Aids Hiv Inf. Pediatric AIDS and HIV infection = Pediatr AIDS HIV Infect Pediatric Aids: Clinical, Pathologic, and Basic Science Perspectives = Ann Ny Acad Sci Pediatric Aids: Clinical, Pathologic, and Basic Science Perspectives = Ann. Ny. Acad. Sci. Pediatric Aids / = Ross Rt Ped Pediatric Aids / = Ross. Rt. Ped. Pediatric alert = Pediatr Alert Pediatric allergy and immunology : official publication of the European Society of Pediatric Allergy and Immunology = Pediatr Allergy Immunol Pediatric Allergy and Immunology = Pediat Allerg Imm-uk Pediatric Allergy and Immunology = Pediat. Allerg. Imm-uk. Pediatric Allergy and Immunology = Pediatr Allergy Immu Pediatric Allergy and Immunology = Pediatr. Allergy Immu. Pediatric Allergy and Immunology=Pediatr Allergy Immunol;; Pediatric Allergy and Immunology = Pediatr. Allergy Immunol. Pediatric Allergy Immunology and Pulmonology = Pediat Aller Imm Pul Pediatric Allergy Immunology and Pulmonology = Pediat. Aller. Imm. Pul. Pediatric and Adolescent Endocrinology = Pediat Ad E Pediatric and Adolescent Endocrinology = Pediat. Ad. E. Pediatric and adolescent gynecology : official journal of the International Federation of Infantile and Juvenile Gynecology = Pediatr Adolesc Gynecol Pediatric and Adolescent Medicine = Pediat Adol Pediatric and Adolescent Medicine = Pediat. Adol. Pediatric and Adolescent Medicine = Pediatr Adolesc Med Pediatric and Adolescent Medicine = Pediatr. Adolesc. Med. Pediatric and Adolescent Osteosarcoma = Canc Treat Pediatric and Adolescent Osteosarcoma = Canc. Treat. Pediatric and Adolescent Sexuality and Gynecology = Health Hum Dev Pediatric and Adolescent Sexuality and Gynecology = Health. Hum. Dev. Pediatric and Developmental Pathology = Pediatr Devel Pathol Pediatric and Developmental Pathology = Pediatr. Devel. Pathol. Pediatric and Developmental Pathology = Pediatr. Dev. Pathol. Pediatric and developmental pathology : the official journal of the Society for Pediatric Pathology and the Paediatric Pathology Society = Pediatr Dev Pathol Pediatric and Inflammatory Bowel Disease: Perspective and Consequences = Pediatr Adolesc Med Pediatric and Inflammatory Bowel Disease: Perspective and Consequences = Pediatr. Adolesc. Med. Pediatric and Obstetrical Anesthesia = Dev C C Med Pediatric and Obstetrical Anesthesia = Dev. C. C. Med. Pediatric Anesthesia = Pediatr Anesth Pediatric Anesthesia = Pediatr. Anesth. Pediatric annals = Pediatr Ann Pediatric Annals=Pediatr Ann;; Pediatric Annals = Pediatr Ann Pediatric Annals = Pediatr. Ann. Pediatric Asthma Allergy & Immunology = Pediatr Asthma Aller Pediatric Asthma Allergy & Immunology = Pediatr. Asthma Aller. Pediatric Blood and Cancer = Pediatr. Blood Cancer Pediatric blood & cancer = Pediatr Blood Cancer Pediatric Blood & Cancer = Pediatr Blood Cancer Pediatric Blood & Cancer = Pediatr. Blood Cancer Pediatric Cardiology / = Int Congr Ser Pediatric Cardiology / = Int. Congr. Ser. Pediatric cardiology = Pediatr Cardiol Pediatric Cardiology=Pediatr Cardiol;; Pediatric Cardiology = Pediatr Cardiol Pediatric Cardiology = Pediatr. Cardiol. Pediatric Case Reviews = Pediatr. Case Rev. Pediatric case reviews (Print) = Pediatr Case Rev Pediatric Chest Imaging, 2nd Edition = Med Radiol Diagn Ima Pediatric Chest Imaging, 2nd Edition = Med. Radiol. Diagn. Ima. Pediatric clinics of India = Pediatr Clin India Pediatric Clinics of North America = Pediatr Clin N Am Pediatric Clinics of North America = Pediatr. Clin. N. Am. Pediatric clinics of North America = Pediatr Clin North Am Pediatric Clinics of North America=Pediatr Clin North Am;; Pediatric Clinics of North America = Pediatr. Clin. North Am. Pediatric Cns Tumors, Second Edition = Pediatr Oncol-berlin Pediatric Cns Tumors, Second Edition = Pediatr. Oncol-berlin. Pediatric critical care medicine : a journal of the Society of Critical Care Medicine and the World Federation of Pediatric Intensive and Critical Care Societies = Pediatr Crit Care Med Pediatric Critical Care Medicine = Pediatr Crit Care Me Pediatric Critical Care Medicine = Pediatr. Crit. Care Me. Pediatric dentistry = Pediatr Dent Pediatric Dentistry=Pediatr Dent;; Pediatric Dentistry = Pediatr Dent Pediatric Dentistry = Pediatr. Dent. Pediatric Dermatology = Int Congr Ser Pediatric Dermatology = Int. Congr. Ser. Pediatric dermatology = Pediatr Dermatol Pediatric Dermatology=Pediatr Dermatol;; Pediatric Dermatology = Pediatr Dermatol Pediatric Dermatology = Pediatr. Dermatol. Pediatric diabetes = Pediatr Diabetes Pediatric Diabetes = Pediatr Diabetes Pediatric Diabetes = Pediatr. Diabetes Pediatric Drugs = Pediatr Drugs Pediatric Drugs = Pediatr. Drugs Pediatric emergency care = Pediatr Emerg Care Pediatric Emergency Care=Pediatr Emerg Care;; Pediatric Emergency Care = Pediatr Emerg Care Pediatric Emergency Care = Pediatr. Emerg. Care Pediatric Endocrinology Reviews = Pediatr. Endocrinol. Rev. Pediatric endocrinology reviews : PER = Pediatr Endocrinol Rev Pediatric exercise science = Pediatr Exerc Sci Pediatric Exercise Science = Pediatr Exerc Sci Pediatric Exercise Science = Pediatr. Exerc. Sci. Pediatric Gender Assignment: A Critical Reappraisal = Adv Exp Med Biol Pediatric Gender Assignment: A Critical Reappraisal = Adv. Exp. Med. Biol. Pediatric hematology and oncology = Pediatr Hematol Oncol Pediatric Hematology and Oncology=Pediatr Hematol Oncol;; Pediatric Hematology and Oncology = Pediatr. Hematol. Oncol. Pediatric Hematology and Oncology = Pediatr Hemat Oncol Pediatric Hematology and Oncology = Pediatr. Hemat. Oncol. Pediatric Hypertension, Second Edition = Clin Hypertens Vasc Pediatric Hypertension, Second Edition = Clin. Hypertens. Vasc. Pediatrician = Pediatrician Pediatric Infectious Disease Journal=Pediatr Infect Dis J;; Pediatric Infectious Disease Journal = Pediatr Infect Dis J Pediatric Infectious Disease Journal = Pediatr. Infect. Dis. J. Pediatric infectious disease = Pediatr Infect Dis Pediatric Infectious Disease = Pediatr. Infect. Dis. Pediatric Informatics: Computer Applications in Child Health = Health Inform Ser Pediatric Informatics: Computer Applications in Child Health = Health Inform. Ser. Pediatric Interviewing: A Practical, Relationship-based Approach = Curr Clin Pract Pediatric Interviewing: A Practical, Relationship-based Approach = Curr. Clin. Pract. Pediatricke listy = Pediatr Listy Pediatric Liver Tumors = Pediatr Oncol-berlin Pediatric Liver Tumors = Pediatr. Oncol-berlin. Pediatric nephrology (Berlin, Germany) = Pediatr Nephrol Pediatric Nephrology=Pediatr Nephrol;; Pediatric Nephrology = Pediatr Nephrol Pediatric Nephrology = Pediatr. Nephrol. Pediatric Neuroendocrinology = Endocrin Dev Pediatric Neuroendocrinology = Endocrin. Dev. Pediatric neurology = Pediatr Neurol Pediatric Neurology=Pediatr Neurol;; Pediatric Neurology = Pediatr Neurol Pediatric Neurology = Pediatr. Neurol. Pediatric neuroscience = Pediatr Neurosci Pediatric Neuroscience = Pediatr Neurosci Pediatric Neuroscience = Pediatr. Neurosci. Pediatric neurosurgery = Pediatr Neurosurg Pediatric Neurosurgery=Pediatr Neurosurg;; Pediatric Neurosurgery = Pediatr Neurosurg Pediatric Neurosurgery = Pediatr. Neurosurg. Pediatric news = Pediatr News Pediatric nursing = Pediatr Nurs Pediatric Nursing = Pediatr. Nurs. Pediatric Obesity: Etiology, Pathogenesis, and Treatment = Contemp Endocrinol S Pediatric Obesity: Etiology, Pathogenesis, and Treatment = Contemp. Endocrinol. S. Pediatric Oncology = Pediatr Oncol-berlin Pediatric Oncology = Pediatr. Oncol-berlin. Pediatric Ophthalmology, Neuro-ophthalmology, Genetics = Essent Ophthalmol Pediatric Ophthalmology, Neuro-ophthalmology, Genetics = Essent. Ophthalmol. Pediatric Ophthalmology, Neuro-ophthalmology, Genetics: Strabismus - New Concepts in Pathophysiology, Diagnosis, and Treatment = Essent Ophthalmol Pediatric Ophthalmology, Neuro-ophthalmology, Genetics: Strabismus - New Concepts in Pathophysiology, Diagnosis, and Treatment = Essent. Ophthalmol. Pediatric Pain = Adv Pain Res Ther Pediatric Pain = Adv. Pain Res. Ther. Pediatric Pain: Biological and Social Context = Prog Pain Res Manag Pediatric Pain: Biological and Social Context = Prog. Pain. Res. Manag. Pediatric pathology / affiliated with the International Paediatric Pathology Association = Pediatr Pathol Pediatric Pathology and Laboratory Medicine=Pediatr Pathol Lab Med;; Pediatric Pathology and Laboratory Medicine = Pediatr. Pathol. Lab. Med. Pediatric Pathology and Molecular Medicine = Pediatr. Pathol. Mol. Med. Pediatric pathology & laboratory medicine : journal of the Society for Pediatric Pathology, affiliated with the International Paediatric Pathology Association = Pediatr Pathol Lab Med Pediatric Pathology & Laboratory Medicine = Pediatr Pathol Lab M Pediatric Pathology & Laboratory Medicine = Pediatr. Pathol. Lab. M. Pediatric Pathology & Molecular Medicine = Pediatr Pathol Mol M Pediatric Pathology & Molecular Medicine = Pediatr. Pathol. Mol. M. Pediatric pathology & molecular medicine = Pediatr Pathol Mol Med Pediatric Pathology = Pediatr Pathol Pediatric Pathology = Pediatr. Pathol. Pediatric pharmacology (New York, N.Y.) = Pediatr Pharmacol (New York) Pediatric Pharmacology = Pediatr Pharmacol Pediatric Pharmacology = Pediatr. Pharmacol. Pediatric Pharmacology = Pediatr. Pharmacol. (New York) Pediatric physical therapy : the official publication of the Section on Pediatrics of the American Physical Therapy Association = Pediatr Phys Ther Pediatric Pulmonology = Pediatr Pulm Pediatric Pulmonology = Pediatr. Pulm. Pediatric pulmonology = Pediatr Pulmonol Pediatric Pulmonology=Pediatr Pulmonol;; Pediatric Pulmonology = Pediatr. Pulmonol. Pediatric pulmonology. Supplement = Pediatr Pulmonol Suppl Pediatric Pulmonology. Supplement=Pediatr Pulmonol Suppl;; Pediatric Pulmonology. Supplement = Pediatr. Pulmonol. Suppl. Pediatric radiology = Pediatr Radiol Pediatric Radiology=Pediatr Radiol;; Pediatric Radiology = Pediatr Radiol Pediatric Radiology = Pediatr. Radiol. Pediatric rehabilitation = Pediatr Rehabil Pediatric Rehabilitation = Pediatr. Rehabil. Pediatric research = Pediatr Res Pediatric Research=Pediatr Res;; Pediatric Research = Pediatr Res Pediatric Research = Pediatr. Res. Pediatric rheumatology online journal = Pediatr Rheumatol Online J Pediatric Rheumatology = Pediatr Rheumatol Pediatric Rheumatology = Pediatr. Rheumatol. Pediatric Robotic Urology = Curr Clin Urol Pediatric Robotic Urology = Curr. Clin. Urol. Pediatrics and Neonatology = Pediatr Neonatol Pediatrics and Neonatology = Pediatr. Neonatol. Pediatrics in review / American Academy of Pediatrics = Pediatr Rev Pediatrics in Review = Pediatr Rev Pediatrics in Review = Pediatr. Rev. Pediatrics In Review=Pediatr Rev;; Pediatrics international : official journal of the Japan Pediatric Society = Pediatr Int Pediatrics International = Pediatr Int Pediatrics International = Pediatr. Int. Pediatrics=Pediatrics;; Pediatrics = Pediatrics Pediatric surgery international = Pediatr Surg Int Pediatric Surgery International=Pediatr Surg Int;; Pediatric Surgery International = Pediatr Surg Int Pediatric Surgery International = Pediatr. Surg. Int. Pediatric transplantation = Pediatr Transplant Pediatric Transplantation = Pediatr Transplant Pediatric Transplantation = Pediatr. Transplant. Pediatric Urology: A General Urologist's Guide = Curr Clin Urol Pediatric Urology: A General Urologist's Guide = Curr. Clin. Urol. Pediatric Uroradiology, 2nd Edition = Med Radiol Diagn Ima Pediatric Uroradiology, 2nd Edition = Med. Radiol. Diagn. Ima. Pediatrie (Bucharest, Romania) = Pediatrie (Bucur) Pediatrie = Pediatrie Pediatriia akusherstvo i ginekologiia = Pediatr Akus Ginekol Pediatriia, Akusherstvo i Ginekologiia = Pediatr. Akush. Ginekol. Pediatriia = Pediatriia Pediatrika = Pediatrika Pediatrik Cerrahi Dergisi = Pediatr Cerrahi Derg Pedobiologia = Pedobiologia Pedodontie Francaise = Pedod Fr Pedodontie Francaise = Pedod. Fr. Pedological Perspectives in Archaeological Research = Sssa Spec Publ Pedological Perspectives in Archaeological Research = Sssa. Spec. Publ. Pedosphere = Pedosphere Peds 2003 : Fifth International Conference On Power Electronics and Drive Systems, Vols 1 and 2, Proceedings = Int C Power Elect Dr Peds 2003 : Fifth International Conference On Power Electronics and Drive Systems, Vols 1 and 2, Proceedings = Int. C. Power Elect. Dr. Peer-led Team Learning-evaluation, Dissemination, and Institutionalization of A College Level = Innov Sci Educ Techn Peer-led Team Learning-evaluation, Dissemination, and Institutionalization of A College Level = Innov. Sci. Educ. Techn. Peer-to-peer, Grid, and Service -orientation in Digital Library Architectures = Lect Notes Comput Sc Peer-to-peer, Grid, and Service -orientation in Digital Library Architectures = Lect. Notes. Comput. Sc. Peer-to Peer, Grid, and Service -orientation in Digital Library Architectures = Lect Notes Comput Sc Peer-to Peer, Grid, and Service -orientation in Digital Library Architectures = Lect. Notes. Comput. Sc. Peer-to-peer Networking and Applications = Peer Peer Netw Appl Peer-to-peer Networking and Applications = Peer. Peer. Netw. Appl. Peer-to-peer Storage: Security and Protocols = Comput Sci Tech Appl Peer-to-peer Storage: Security and Protocols = Comput. Sci. Tech. Appl. Peer-to-peer Systems and Applications = Lect Notes Comput Sc Peer-to-peer Systems and Applications = Lect. Notes. Comput. Sc. Peer-to-peer Systems Iii = Lect Notes Comput Sc Peer-to-peer Systems Iii = Lect. Notes. Comput. Sc. Peer-to-peer Systems Ii = Lect Notes Comput Sc Peer-to-peer Systems Ii = Lect. Notes. Comput. Sc. Peer-to-peer Systems Iv = Lect Notes Comput Sc Peer-to-peer Systems Iv = Lect. Notes. Comput. Sc. Peer-to-peer Systems = Lect Notes Comput Sc Peer-to-peer Systems = Lect. Notes. Comput. Sc. Peformability Has Its Price = Lect Notes Comput Sc Peformability Has Its Price = Lect. Notes. Comput. Sc. Pegasus. Berliner Beiträge zum Nachleben der Antike = Pegasus Pegylated Protein Drugs: Basic Science and Clinical Applications = Milestones Drug Ther Pegylated Protein Drugs: Basic Science and Clinical Applications = Milestones. Drug. Ther. Peirce Seminar Papers: An Annual of Semiotic Analysis = Peirce Semin Pap Peirce Seminar Papers: An Annual of Semiotic Analysis = Peirce Semin. Pap. Pelican news = Pelican News Pelican News = Pelican News Pelvi-perineologie = Pelvi-perineologie Pembroke Persian Papers = Pemb Pers Pap Pembroke Persian Papers = Pemb. Pers. Pap. Penal code, annotated, of the State of California : adopted February 14, 1872, with amendments ... / annotated and indexed by the publisher's editorial staff. California = Penal Code Annot State Calif Calif Penalising Brownian Paths = Lect Notes Math Penalising Brownian Paths = Lect. Notes. Math. Penal Populism = Key Ideas Criminol Penal Populism = Key. Ideas. Criminol. Pendulum Impact Machines: Procedures and Specimens = Am Soc Test Mater Pendulum Impact Machines: Procedures and Specimens = Am. Soc. Test. Mater. Pendulum Impact Machines: Procedures and Specimens for Verification = Am Soc Test Mater Pendulum Impact Machines: Procedures and Specimens for Verification = Am. Soc. Test. Mater. Pendulum Impact Testing: A Century of Progress = Am Soc Test Mater Pendulum Impact Testing: A Century of Progress = Am. Soc. Test. Mater. Penelope (Paris, France) = Penelope Penetrating Bars Through Masks of Cosmic Dust = Astrophys Space Sc L Penetrating Bars Through Masks of Cosmic Dust = Astrophys. Space. Sc. L. Penetrating Radiation Systems and Applications Iii = Proc Spie Penetrating Radiation Systems and Applications Iii = Proc. Spie. Penetrating Radiation Systems and Applications Iii = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Iii = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Ii = Proc Spie Penetrating Radiation Systems and Applications Ii = Proc. Spie. Penetrating Radiation Systems and Applications Ii = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Ii = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Iv = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Iv = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Ix = Proc Spie Penetrating Radiation Systems and Applications Ix = Proc. Spie. Penetrating Radiation Systems and Applications Ix = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Ix = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications = Proc Spie Penetrating Radiation Systems and Applications = Proc. Spie. Penetrating Radiation Systems and Applications = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Viii = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Viii = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Vi = Proc Spie Penetrating Radiation Systems and Applications Vi = Proc. Spie. Penetrating Radiation Systems and Applications Vi = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Vi = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications V = Proc Spie Penetrating Radiation Systems and Applications V = Proc. Spie. Penetrating Radiation Systems and Applications V = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications V = P. Soc. Photo-opt. Ins. Penetrating Radiation Systems and Applications Xi = P Soc Photo-opt Ins Penetrating Radiation Systems and Applications Xi = P. Soc. Photo-opt. Ins. Penn bioethics journal = Penn Bioeth J Penn Dental Journal = Penn Dent. J. (Phila.) Pennington Center Nutrition Series = Penn Ctr N Pennington Center Nutrition Series = Penn. Ctr. N. Pennington Center Nutrition Series, Vol 1 = Penn Ctr N Pennington Center Nutrition Series, Vol 1 = Penn. Ctr. N. Pennington Center Nutrition Series, Vol 3 = Penn Ctr N Pennington Center Nutrition Series, Vol 3 = Penn. Ctr. N. Pennington Center Nutrition Series, Vol 4 = Penn Ctr N Pennington Center Nutrition Series, Vol 4 = Penn. Ctr. N. Penn medicine / University of Pennsylvania Medical Center = Penn Med Penn Museum International Research Conferences = Penn Museum Int Res Penn Museum International Research Conferences = Penn Museum Int. Res. Penn State Series On Child & Adolescent Development = Penn St Ch Penn State Series On Child & Adolescent Development = Penn St. Ch. Penn State University Family Issues Symposia Series = Penn State Univ Fam Penn State University Family Issues Symposia Series = Penn State Univ. Fam. Penn Studies in Landscape Architecture = Penn St Land Arch Penn Studies in Landscape Architecture = Penn St. Land. Arch. Penn Studies in Landscape Architecture = Penn Stud Landsc Arc Penn Studies in Landscape Architecture = Penn Stud. Landsc. Arc. Pennsylvania Agricultural Experiment Station Bulletin = Penn Aes Bull Pennsylvania Agricultural Experiment Station Bulletin = Penn. Aes. Bull. Pennsylvania Agricultural Experiment Station Progress Report = Penn Aes Progr Rep Pennsylvania Agricultural Experiment Station Progress Report = Penn. Aes. Progr. Rep. Pennsylvania archaeologist = Pa Archaeol Pennsylvania Bar Association quarterly. Pennsylvania Bar Association = PA Bar Assoc Q Pennsylvania dental journal = Pa Dent J (Harrisb) Pennsylvania Dental Journal = Pa. Dent. J. (Harrisb.) Pennsylvania district and county reports = Pa Dist Cty Rep Pennsylvania folklife = Pa Folklife Pennsylvania Health and You = Pa. Health You Pennsylvania health & you = Pa Health You Pennsylvania heritage (1974) = Pa Herit Pennsylvania history = Pa Hist Pennsylvania Magazine of History and Biography = Penn Mag Hist Biog Pennsylvania Magazine of History and Biography = Penn. Mag. Hist. Biog. Pennsylvania medical journal (1928) = Pa Med J Pennsylvania Medical Journal = Pa. Med. J. Pennsylvania Medical Journal = Penn Med J Pennsylvania Medical Journal = Penn. Med. J. Pennsylvania medicine = Pa Med Pennsylvania Medicine=Pa Med;; Pennsylvania Medicine = Pa. Med. Pennsylvania Medicine = Penn Med Pennsylvania Medicine = Penn. Med. Pennsylvania Mennonite heritage = Pa Mennon Herit Pennsylvanian-early Permian Bird Spring Carbonate Shelf, Southeastern California: Fusulinid Biostratigraphy, Paleogeographic Evolution, and Tectonic Implications = Geol Soc Am Spec Pap Pennsylvanian-early Permian Bird Spring Carbonate Shelf, Southeastern California: Fusulinid Biostratigraphy, Paleogeographic Evolution, and Tectonic Implications = Geol. Soc. Am. Spec. Pap. Pennsylvania Nurse = Pa. Nurse Pennsylvania Psychiatric Quarterly = Penn Psychiat Quart Pennsylvania Psychiatric Quarterly = Penn. Psychiat. Quart. Pennsylvania State University Extension Service Circular = Penn St Ues Circ Pennsylvania State University Extension Service Circular = Penn. St. Ues. Circ. Pennsylvania State University Extension Service Special Circular = Penn St Ues Spec Cir Pennsylvania State University Extension Service Special Circular = Penn. St. Ues. Spec. Cir. Pennsylvania Studies in Human Rights = Pa Stud Hum Rights Pennsylvania Studies in Human Rights = Pa. Stud. Hum. Rights Pensamiento Iberoamericano: Revista de Economía Política=Pensa. Iberamer.: Revista Econ. Política Pensamiento = Pensamiento Pens and Needles: Women's Textualities in Early Modern England = Mater Texts Pens and Needles: Women's Textualities in Early Modern England = Mater. Texts. Pensee = Pensee Pension Fund Risk Management: Financial and Actuarial Modeling = Ch Crc Financ Ser Pension Fund Risk Management: Financial and Actuarial Modeling = Ch. Crc. Financ. Ser. Pensionomics-on The Role of Paygo in Pension Portfolios = Lect Notes Econ Math Pensionomics-on The Role of Paygo in Pension Portfolios = Lect. Notes. Econ. Math. Pension Reform in Europe = Routl Eui Stud Polit Pension Reform in Europe = Routl. Eui. Stud. Polit. Pension Systems: Sustainability and Distributional Effects in Germany and The United Kingdom = Contrib Econ Pension Systems: Sustainability and Distributional Effects in Germany and The United Kingdom = Contrib. Econ. Pensoft Series Faunistica = Pensoft Ser Faunist Pensoft Series Faunistica = Pensoft Ser. Faunist. Pentacyclic Triterpenes As Promising Agents in Cancer = Cancer Etiol Diagn T Pentacyclic Triterpenes As Promising Agents in Cancer = Cancer Etiol. Diagn. T. People and Computers Xiv - Usability Or Else! = Bcs Conference S People and Computers Xiv - Usability Or Else! = Bcs. Conference. S. People and Computers Xix - The Bigger Picture = Bcs Conf Series People and Computers Xix - The Bigger Picture = Bcs. Conf. Series. People and Computers Xviii - Design for Life = Bcs Conf Series People and Computers Xviii - Design for Life = Bcs. Conf. Series. People and Computers Xvi- Memorable Yet Invisible, Proceedings = Bcs Conf Series People and Computers Xvi- Memorable Yet Invisible, Proceedings = Bcs. Conf. Series. People and Computers Xv - Interaction Without Frontiers = Bcs Conf Series People and Computers Xv - Interaction Without Frontiers = Bcs. Conf. Series. People and Nature Conservation = Trzs Nsw People and Nature Conservation = Trzs. Nsw. People and place = People Place People and Processes = Vdi Bericht People and Processes = Vdi. Bericht. People and Space: New Forms of Interaction in The City Project = Urban Land Perspect People and Space: New Forms of Interaction in The City Project = Urban. Land. Perspect. People and Work: Research Reports = People Work Res Rep People and Work: Research Reports = People Work. Res. Rep. People Count = People Count People in Control = Iee Conf Publ People in Control = Iee. Conf. Publ. People in Corporations = Iss Bus Eth People in Corporations = Iss. Bus. Eth. People, Passions, and Power = People Pas Pow People, Passions, and Power = People. Pas. Pow. People = People People, Places and Landscapes: Social Change in High Amenity Rural Areas = Landsc Ser People, Places and Landscapes: Social Change in High Amenity Rural Areas = Landsc. Ser. Peoples and Cultures of Adamaoua (cameroon) = Colloq Semi Peoples and Cultures of Adamaoua (cameroon) = Colloq. Semi. People's Congresses and Governance in China: Toward A Network Mode of Governance = Libr Legis Stud People's Congresses and Governance in China: Toward A Network Mode of Governance = Libr. Legis. Stud. Peoples of Lapland: Boundary Demarcations and Interaction in The North Calotte From 1808 to 1889 = Suom Tiedeakat Toim Peoples of Lapland: Boundary Demarcations and Interaction in The North Calotte From 1808 to 1889 = Suom. Tiedeakat. Toim. Peoples of The Ancient World = Peoples Anc World Peoples of The Ancient World = Peoples Anc. World Peoples of The River Valleys: The Odyssey of The Delaware Indians = Early Am Stud Ser Peoples of The River Valleys: The Odyssey of The Delaware Indians = Early. Am. Stud. Ser. Peoples Reactions to Technology = Clar Symp Peoples Reactions to Technology = Clar. Symp. People & the planet / IPPF, UNFPA, IUCN = People Planet People weekly = People (Chicago) Peopling The Russian Periphery = Basees-rout Ser Russ Peopling The Russian Periphery = Basees-rout. Ser. Russ. Peopling The Russian Periphery = Rout Ser Rus Eas Eur Peopling The Russian Periphery = Rout. Ser. Rus. Eas. Eur. Pepperdine law review = Pepperdine Law Rev Peptide and protein reviews = Peptide Protein Rev Peptide Chemistry 1993 = Peptide Ch Peptide Chemistry 1993 = Peptide Ch. Peptide Chemistry 1994 = Peptide Ch Peptide Chemistry 1994 = Peptide Ch. Peptide Chemistry = Pept. Chem. Peptide Chemistry = Peptide Ch Peptide Chemistry = Peptide Ch. Peptide Hybrid Polymers = Adv Polym Sci Peptide Hybrid Polymers = Adv. Polym. Sci. Peptide-lipid Interactions = Curr Top Membr Peptide-lipid Interactions = Curr. Top. Membr. Peptide Microarrays: Methods and Protocols = Methods Mol Biol Peptide Microarrays: Methods and Protocols = Methods Mol. Biol. Peptide Research = Peptide Res Peptide Research = Peptide Res. Peptide research = Pept Res Peptide Research = Pept. Res. Peptidergic G Protein-coupled Receptors = Nato Adv Sci I A-lif Peptidergic G Protein-coupled Receptors = Nato. Adv. Sci. I. A-lif. Peptidergic Neuron = Prog Brain Res Peptidergic Neuron = Prog. Brain. Res. Peptides (Amsterdam, Netherlands) = Peptides (Amsterdam, Neth.) Peptide Science = Pept. Sci. Peptides for Youth = Adv Exp Med Biol Peptides for Youth = Adv. Exp. Med. Biol. Peptides in Energy Balance and Obesity = Front Nutr Sci Peptides in Energy Balance and Obesity = Front. Nutr. Sci. Peptides in Mammalian Protein Metabolism = Portl Pr P Peptides in Mammalian Protein Metabolism = Portl. Pr. P. Peptides (New York, NY, United States) = Peptides (N. Y., NY, U. S.) Peptide Solvation and H-bonds = Adv Protein Chem Peptide Solvation and H-bonds = Adv. Protein. Chem. Peptides=Peptides;; Peptides = Peptides Peptides, Peptoids, and Proteins = Pharmacokin Peptides, Peptoids, and Proteins = Pharmacokin. Peptidomics: Methods and Protocols = Methods Mol Biol Peptidomics: Methods and Protocols = Methods Mol. Biol. Per Carmina Laudes: Studies On Late Antique Verse Panegyric From Claudian to Corippus = Beitr Altertumskunde Per Carmina Laudes: Studies On Late Antique Verse Panegyric From Claudian to Corippus = Beitr. Altertumskunde. Perceiving Gender Locally, Globally, and Intersectionally = Adv Gend Res Perceiving Gender Locally, Globally, and Intersectionally = Adv. Gend. Res. Perceiving, Measuring, and Using Color = P Soc Photo-opt Ins Perceiving, Measuring, and Using Color = P. Soc. Photo-opt. Ins. Perception-action Cycle: Models, Architectures, and Hardware = Springer Ser Cog Neu Perception-action Cycle: Models, Architectures, and Hardware = Springer. Ser. Cog. Neu. Perception and Cognition = Stud Vis Inform Proc Perception and Cognition = Stud. Vis. Inform. Proc. Perception and Interactive Technologies, Proceedings = Lect Notes Artif Int Perception and Interactive Technologies, Proceedings = Lect. Notes. Artif. Int. Perception and Psychophysics = Percept. Psychophys. Perception-based Data Mining and Decision Making in Economics and Finance = Stud Comput Intell Perception-based Data Mining and Decision Making in Economics and Finance = Stud. Comput. Intell. Perception in Multimodal Dialogue Systems, Proceedings = Lect Notes Artif Int Perception in Multimodal Dialogue Systems, Proceedings = Lect. Notes. Artif. Int. Perception=Perception;; Perception = Perception Perception & psychophysics = Percept Psychophys Perception & Psychophysics = Percept Psychophys Perception & Psychophysics = Percept. Psychophys. Perceptual and Motor Skills = Percept Motor Skill Perceptual and Motor Skills = Percept. Motor Skill. Perceptual and motor skills = Percept Mot Skills Perceptual and Motor Skills=Percept Mot Skills;; Perceptual and Motor Skills = Percept. Mot. Skills Perchance to Dream: The Frontiers of Dream Psychology = Psychol Res Prog Perchance to Dream: The Frontiers of Dream Psychology = Psychol. Res. Prog. Percolation Theory for Flow in Porous Media, Second Edition = Lect Notes Phys Percolation Theory for Flow in Porous Media, Second Edition = Lect. Notes. Phys. Percutaneous Tumor Ablation in Medical Radiology = Med Radiol Diagn Ima Percutaneous Tumor Ablation in Medical Radiology = Med. Radiol. Diagn. Ima. Perestroika and East-west Economic Relations = Geon Inst I Perestroika and East-west Economic Relations = Geon. Inst. I. Perfect Learners' Dictionary (?) = Lexicograph Perfect Learners' Dictionary (?) = Lexicograph. Perfect Learners' Dictionary (?) = Lexicogr Ser Maior Perfect Learners' Dictionary (?) = Lexicogr. Ser. Maior. Perfect Norm: How to Teach Differentially, Assess Effectively, and Manage A Classroom Ethically in Ways That Are Brain-friendly and Culturally Responsive = Lit Lang Learn Perfect Norm: How to Teach Differentially, Assess Effectively, and Manage A Classroom Ethically in Ways That Are Brain-friendly and Culturally Responsive = Lit. Lang. Learn. Perfect Online Course: Best Practices for Designing and Teaching = Perspect Instr Techn Perfect Online Course: Best Practices for Designing and Teaching = Perspect. Instr. Techn. Perfiles Latinoamericanos = Perfiles Latinoam Perfiles Latinoamericanos = Perfiles Latinoam. Perfiles latinoamericanos : revista de la Sede Academica de Mexico de la Facultad Latinoamericana de Ciencias Sociales = Perf Latinoam Performance Analysis and Optimization of Inbound Call Centers = Lect Notes Econ Math Performance Analysis and Optimization of Inbound Call Centers = Lect. Notes. Econ. Math. Performance Analysis of Flow Lines With Non-linear Flow of Material = Lect Notes Econ Math Performance Analysis of Flow Lines With Non-linear Flow of Material = Lect. Notes. Econ. Math. Performance Analysis of Queuing and Computer Networks = Ch Crc Comp Info Sci Performance Analysis of Queuing and Computer Networks = Ch. Crc. Comp. Info. Sci. Performance and Cognition: Theatre Studies and The Cognitive Turn = Routl Adv Theatr Per Performance and Cognition: Theatre Studies and The Cognitive Turn = Routl. Adv. Theatr. Per. Performance and Control of Network Systems Iii = Proc Spie Performance and Control of Network Systems Iii = Proc. Spie. Performance and Control of Network Systems Iii = P Soc Photo-opt Ins Performance and Control of Network Systems Iii = P. Soc. Photo-opt. Ins. Performance and Control of Network Systems Ii = P Soc Photo-opt Ins Performance and Control of Network Systems Ii = P. Soc. Photo-opt. Ins. Performance and Control of Network Systems = P Soc Photo-opt Ins Performance and Control of Network Systems = P. Soc. Photo-opt. Ins. Performance and Control of Next Generation Communication Networks = Proc Spie Performance and Control of Next Generation Communication Networks = Proc. Spie. Performance and Control of Next Generation Communication Networks = P Soc Photo-opt Ins Performance and Control of Next Generation Communication Networks = P. Soc. Photo-opt. Ins. Performance and Durability of The Window-wall Interface = Am Soc Test Mater Performance and Durability of The Window-wall Interface = Am. Soc. Test. Mater. Performance and Femininity in Eighteenth-century German Women's Writing = Palg Stud Theat Perf Performance and Femininity in Eighteenth-century German Women's Writing = Palg. Stud. Theat. Perf. Performance and Place = Perform Interv Performance and Place = Perform. Interv. Performance and Reliability of Semiconductor Devices = Mater Res Soc Symp P Performance and Reliability of Semiconductor Devices = Mater. Res. Soc. Symp. P. Performance-based Management Systems = Public Adm Public Po Performance-based Management Systems = Public. Adm. Public. Po. Performance Challenges for Efficient Next Generation Networks, Vols 6a-6c = Teletraf Sci Eng Performance Challenges for Efficient Next Generation Networks, Vols 6a-6c = Teletraf. Sci. Eng. Performance, Ethics and Spectatorship in A Global Age = Stud Int Perform Performance, Ethics and Spectatorship in A Global Age = Stud. Int. Perform. Performance Evaluation and Benchmarking = Lect Notes Comput Sc Performance Evaluation and Benchmarking = Lect. Notes. Comput. Sc. Performance Evaluation, Measurement and Characterization of Complex Systems = Lect Notes Comput Sc Performance Evaluation, Measurement and Characterization of Complex Systems = Lect. Notes. Comput. Sc. Performance Evaluation: Metrics, Models and Benchmarks, Proceedings = Lect Notes Comput Sc Performance Evaluation: Metrics, Models and Benchmarks, Proceedings = Lect. Notes. Comput. Sc. Performance Evaluation of Complex Systems: Techniques and Tools = Lect Notes Comput Sc Performance Evaluation of Complex Systems: Techniques and Tools = Lect. Notes. Comput. Sc. Performance Evaluation: Origins and Directions = Lect Notes Comput Sc Performance Evaluation: Origins and Directions = Lect. Notes. Comput. Sc. Performance Evaluation = Perform Evaluation Performance Evaluation = Perform. Evaluation Performance Evaluation Revaluation Review, Vol 27 No 4 - March 2000 = Perf E R Si Performance Evaluation Revaluation Review, Vol 27 No 4 - March 2000 = Perf. E. R. Si. Performance Evaluation Review, Special Issue, Vol 28 No 1, June 2000 = Perf E R Si Performance Evaluation Review, Special Issue, Vol 28 No 1, June 2000 = Perf. E. R. Si. Performance, Exile and America = Stud Int Perform Performance, Exile and America = Stud. Int. Perform. Performance improvement advisor = Perform Improv Advis Performance Interventions = Perform Interv Performance Interventions = Perform. Interv. Performance in The Borderlands = Perform Interv Performance in The Borderlands = Perform. Interv. Performance Management for Different Employee Groups: A Contribution to Employment Systems Theory = Contrib Manag Sci Performance Management for Different Employee Groups: A Contribution to Employment Systems Theory = Contrib. Manag. Sci. Performance Management Systems: A Global Perspective = Rout Glob Hum Resour Performance Management Systems: A Global Perspective = Rout. Glob. Hum. Resour. Performance Measurement and Management Control: A Compendium of Research = Stud Manag Financ Ac Performance Measurement and Management Control: A Compendium of Research = Stud. Manag. Financ. Ac. Performance Measurement and Management Control: Measuring and Rewarding Performance = Stud Manag Financ Ac Performance Measurement and Management Control: Measuring and Rewarding Performance = Stud. Manag. Financ. Ac. Performance Measurement and Management Control: Superior Organizational Performance = Stud Manag Financ Ac Performance Measurement and Management Control: Superior Organizational Performance = Stud. Manag. Financ. Ac. Performance Measurement and Visualization of Parallel Systems = Adv Par Com Performance Measurement and Visualization of Parallel Systems = Adv. Par. Com. Performance Measurement in Corporate Governance = Contrib Manag Sci Performance Measurement in Corporate Governance = Contrib. Manag. Sci. Performance Measurement in The Dutch Social Rented Sector = Sustain Urban Areas Performance Measurement in The Dutch Social Rented Sector = Sustain. Urban. Areas. Performance Measurement, Reporting, Obstacles and Accountability: Recent Trends and Future Directions = Anzsog Monogr Performance Measurement, Reporting, Obstacles and Accountability: Recent Trends and Future Directions = Anzsog. Monogr. Performance Models and Risk Management in Communications Systems = Springer Ser Optim A Performance Models and Risk Management in Communications Systems = Springer. Ser. Optim. A. Performance of Buildings and Serviceability of Facilities = Am Soc Test Mater Performance of Buildings and Serviceability of Facilities = Am. Soc. Test. Mater. Performance of Deep Foundations Under Seismic Loading = Geotech Sp Performance of Deep Foundations Under Seismic Loading = Geotech. Sp. Performance of Distributed Systems and Integrated Communication Networks = Ifip Trans C Performance of Distributed Systems and Integrated Communication Networks = Ifip. Trans. C. Performance of Exterior Building Walls = Am Soc Test Mater Performance of Exterior Building Walls = Am. Soc. Test. Mater. Performance of Human Rights in Morocco = Pa Stud Hum Rights Performance of Human Rights in Morocco = Pa. Stud. Hum. Rights Performance of Protective Clothing, 6th Volume = Am Soc Test Mater Performance of Protective Clothing, 6th Volume = Am. Soc. Test. Mater. Performance of Protective Clothing : Fourth Volume = Am Soc Test Mater Performance of Protective Clothing : Fourth Volume = Am. Soc. Test. Mater. Performance of The Chinese Insurance Industry Under Economic Reforms = Adv Chin Econ Stud Performance of The Chinese Insurance Industry Under Economic Reforms = Adv. Chin. Econ. Stud. Performance, Quality of Service, and Control of Next-generation Communication Networks Ii = P Soc Photo-opt Ins Performance, Quality of Service, and Control of Next-generation Communication Networks Ii = P. Soc. Photo-opt. Ins. Performance Recording of Animals = Eaap Public Performance Recording of Animals = Eaap. Public. Performance Recording of Animals : State of The Art, 1990 = Eaap Public Performance Recording of Animals : State of The Art, 1990 = Eaap. Public. Performance Recording of Animals : State of The Art, 1992 = Eaap Public Performance Recording of Animals : State of The Art, 1992 = Eaap. Public. Performance Recording of Animals: State of The Art, 2002 = Eaap Public Performance Recording of Animals: State of The Art, 2002 = Eaap. Public. Performance Recording of Animals: State of The Art, 2004 = Eaap Public Performance Recording of Animals: State of The Art, 2004 = Eaap. Public. Performance Research = Perform Res Performance Research = Perform. Res. Performances of Asia-pacific Countries: A New Approach = Glob Econ Stud Performances of Asia-pacific Countries: A New Approach = Glob. Econ. Stud. Performances of Mourning in Shakespearean Theatre and Early Modern Culture = Early Mod Lit Hist Performances of Mourning in Shakespearean Theatre and Early Modern Culture = Early Mod. Lit. Hist. Performance Tests for Hot Mix Asphalt (hma) Including Fundamental and Empirical Procedures = Am Soc Test Mater Performance Tests for Hot Mix Asphalt (hma) Including Fundamental and Empirical Procedures = Am. Soc. Test. Mater. Performance Tools and Applications to Networked Systems = Lect Notes Comput Sc Performance Tools and Applications to Networked Systems = Lect. Notes. Comput. Sc. Performative Body Spaces: Corporeal Topographies in Literature, Theatre, Dance, and The Visual Arts = Crit Stud Performative Body Spaces: Corporeal Topographies in Literature, Theatre, Dance, and The Visual Arts = Crit. Stud. Performativity = New Crit Idiom Performativity = New. Crit. Idiom. Performing American Identity in Anti-mormon Melodrama = Stud Am Popul Hist C Performing American Identity in Anti-mormon Melodrama = Stud. Am. Popul. Hist. C. Performing Arts & Entertainment in Canada = Perform Art Ent Can Performing Arts & Entertainment in Canada = Perform. Art. Ent. Can. Performing Arts Journal = Perform Art J Performing Arts Journal = Perform. Art. J. Performing Arts Review = Perform Art Rev Performing Arts Review = Perform. Art. Rev. Performing Century: Nineteenth-century Theatres History = Redefin Brit Theatre Performing Century: Nineteenth-century Theatres History = Redefin. Brit. Theatre. Performing Childhood in The Early Modern Theatre: The Childrens Playing Companies (1599-1613) = Early Mod Lit Hist Performing Childhood in The Early Modern Theatre: The Childrens Playing Companies (1599-1613) = Early Mod. Lit. Hist. Performing Magic On The Western Stage: From The Eighteenth Century to The Present = Palg Stud Theat Perf Performing Magic On The Western Stage: From The Eighteenth Century to The Present = Palg. Stud. Theat. Perf. Performing National Identity: Anglo-italian Cultural Transactions = Int Forsch Allg Vgl Performing National Identity: Anglo-italian Cultural Transactions = Int. Forsch. Allg. Vgl. Performing Patriotism: National Identity in The Colonial and Revolutionary American Theater = Early Am Stud Ser Performing Patriotism: National Identity in The Colonial and Revolutionary American Theater = Early. Am. Stud. Ser. Perfusion=Perfusion;; Perfusion = Perfusion Perfusion = Perfusion-germany Perfusion = Perfusion-germany. Perfusion-uk = Perfusion-uk Pergamenische Forschungen = PF Pergamon Studies in Neuroscience = Perg S Neur Pergamon Studies in Neuroscience = Perg. S. Neur. Pericope = Pericope Periglacial and Paraglacial Processes and Environments = Geol Soc Spec Publ Periglacial and Paraglacial Processes and Environments = Geol. Soc. Spec. Publ. Perimenopause = Serono Symp Perimenopause = Serono. Symp. Perinatal and Multigeneration Carcinogenesis = Iarc Sci Publ Perinatal and Multigeneration Carcinogenesis = Iarc. Sci. Publ. Perinatal care = Perinat Care Perinatologia y reproduccion humana / INPer = Perinatol Reprod Hum Perinatology / = Int Congr Ser Perinatology / = Int. Congr. Ser. Perinatology = Nestle Nutr Works Se Perinatology = Nestle. Nutr. Works. Se. Perinola-revista De Investigacion Quevediana = Perinola Perinola-revista De Investigacion Quevediana = Perinola. Periodical (Council on America's Military Past) = Period Counc Am Mil Past Periodica Mathematica Hungarica = Period Math Hung Periodica Mathematica Hungarica = Period. Math. Hung. Periodica Mathematica Hungarica = Period. Math. Hungar. Periodica Polytechnica, Chemical Engineering = Periodica Polytech., Chem. Eng. Periodica Polytechnica-chemical Engineering = Period Polytech-chem Periodica Polytechnica-chemical Engineering = Period. Polytech-chem. Periodica Polytechnica-chemical Engineering = Period Polytech Chem Periodica Polytechnica-chemical Engineering = Period. Polytech. Chem. Periodica Polytechnica-civil Engineering = Period Polytech-civ Periodica Polytechnica-civil Engineering = Period. Polytech-civ. Periodica Polytechnica-electrical Engineering = Period Polytech Elec Periodica Polytechnica-electrical Engineering = Period. Polytech. Elec. Periodica Polytechnica-engineering = Period Polytech Eng Periodica Polytechnica-engineering = Period. Polytech. Eng. Periodica Polytechnica-mechanical Engineering = Period Polytech Mech Periodica Polytechnica-mechanical Engineering = Period. Polytech. Mech. Periodica Polytechnica = Period. Polytech. Mech. Engrg. Periodic Control Systems 2001 = Ifac Work S Periodic Control Systems 2001 = Ifac. Work. S. Periodic Nanostructures = Dev Fullerene Sci Periodic Nanostructures = Dev. Fullerene. Sci. Periodico Di Mineralogia = Period Mineral Periodico Di Mineralogia = Period. Mineral. Periodic Solutions of The N-body Problem = Lect Notes Math Periodic Solutions of The N-body Problem = Lect. Notes. Math. Periodic Systems: Filtering and Control = Commun Control Eng Periodic Systems: Filtering and Control = Commun. Control Eng. Periodicum biologorum = Period Biol Periodicum Biologorum = Period Biol Periodicum Biologorum = Period. Biol. Periodization and Sovereignty: How Ideas of Feudalism and Secularization Govern The Politics of Time = Middle Ages Ser Periodization and Sovereignty: How Ideas of Feudalism and Secularization Govern The Politics of Time = Middle. Ages. Ser. Periodontal Abstracts / Journal of the Western Society of Periodontology = Periodontal Abstr. Periodontal abstracts = Periodontal Abstr Periodontal case reports : a publication of the Northeastern Society of Periodontists = Periodontal Case Rep Periodontal Case Reports = Periodontal Case Rep. Periodontal clinical investigations : official publication of the Northeastern Society of Periodontists = Periodontal Clin Investig Periodontal Clinical Investigations = Periodontal Clin. Investig. Periodontics = Periodontics Periodontitis: Symptoms, Treatment and Prevention = Public Health 21st C Periodontitis: Symptoms, Treatment and Prevention = Public. Health. 21st. C. Periodontology 2000 = Periodontol 2000 Periodontology 2000 = Periodontol. 2000 Period Spaces for P-divisible Groups = Ann Math Stud Period Spaces for P-divisible Groups = Ann. Math. Stud. Perioperative Critical Care Cardiology = Top Anaesth Crit Car Perioperative Critical Care Cardiology = Top. Anaesth. Crit. Car. Perioperative nursing quarterly = Perioper Nurs Q Perioperative Nursing Quarterly = Perioper. Nurs. Q. Peripatoi: Philologisch-historische Studien Zum Aristotelismus = Peripatoi-philol-his Peripatoi: Philologisch-historische Studien Zum Aristotelismus = Peripatoi-philol-his. Peripheral and Spinal Mechanisms in The Neural Control of Movement = Prog Brain Res Peripheral and Spinal Mechanisms in The Neural Control of Movement = Prog. Brain. Res. Peripheral Nerve Development and Regeneration = Fidia Res Series Peripheral Nerve Development and Regeneration = Fidia. Res. Series. Peripheral Neuropathies 1988 = Fidia Res Series Peripheral Neuropathies 1988 = Fidia. Res. Series. Peripheral Signaling of The Brain = Neur Cont B Peripheral Signaling of The Brain = Neur. Cont. B. Perishable Inventory Systems = Int Ser Oper Res Man Perishable Inventory Systems = Int. Ser. Oper. Res. Man. Peristil. Zbornik radova za povijest umjetnosti = Peristil Peri-tethys Memoir 5: New Data On Peri-tethyan Sedimentary Basins = Mem Mus Nat Hist Nat Peri-tethys Memoir 5: New Data On Peri-tethyan Sedimentary Basins = Mem. Mus. Nat. Hist. Nat. Peri-tethys Memoir 5: New Data On Peri-tethyan Sedimentary Basins = Memoir Mus Natl Hist Peri-tethys Memoir 5: New Data On Peri-tethyan Sedimentary Basins = Memoir Mus. Natl. Hist. Peri-tethys Memoir 6: Peri-tethyan Rift/wrench Basins and Passive Margins = Mem Mus Nat Hist Nat Peri-tethys Memoir 6: Peri-tethyan Rift/wrench Basins and Passive Margins = Mem. Mus. Nat. Hist. Nat. Peri-tethys Memoir 6: Peri-tethyan Rift/wrench Basins and Passive Margins = Memoir Mus Natl Hist Peri-tethys Memoir 6: Peri-tethyan Rift/wrench Basins and Passive Margins = Memoir Mus. Natl. Hist. Peritoneal Dialysis: A Clinical Update = Contrib Nephrol Peritoneal Dialysis: A Clinical Update = Contrib. Nephrol. Peritoneal Dialysis Bulletin = Periton Dialysis B Peritoneal Dialysis Bulletin = Periton. Dialysis B. Peritoneal Dialysis Bulletin = Periton Dialysis Int Peritoneal Dialysis Bulletin = Periton. Dialysis Int. Peritoneal Dialysis - From Basic Concepts to Clinical Excellence = Contrib Nephrol Peritoneal Dialysis - From Basic Concepts to Clinical Excellence = Contrib. Nephrol. Peritoneal Dialysis International (Downsview, Ontario=Perit Dial Int;; Peritoneal dialysis international : journal of the International Society for Peritoneal Dialysis = Perit Dial Int Peritoneal Dialysis International = Perit. Dial. Int. Peritoneal Dialysis International = Periton Dialysis Int Peritoneal Dialysis International = Periton. Dialysis Int. Peritoneal Dialysis Today = Contrib Nephrol Peritoneal Dialysis Today = Contrib. Nephrol. Peri-urban Agriculture in Sub-saharan African = Cirad Colloques Peri-urban Agriculture in Sub-saharan African = Cirad. Colloques. Perkins journal = Perkins J Permafrost and Actions of Natural Or Artificial Cooling = Refr Sci T Permafrost and Actions of Natural Or Artificial Cooling = Refr. Sci. T. Permafrost and Periglacial Processes = Permafrost Periglac Permafrost and Periglacial Processes = Permafrost Periglac. Permafrost and Periglacial Processes = Permafrost Periglacial Process. Permafrost Ecosystems: Siberian Larch Forests = Ecol Stud-anal Synth Permafrost Ecosystems: Siberian Larch Forests = Ecol. Stud-anal. Synth. Permanent Court of Arbitration/ Peace Palace Paper = Pca Peace Palace Pap Permanent Court of Arbitration/ Peace Palace Paper = Pca. Peace Palace Pap. Permanente Foundation medical bulletin = Perm Found Med Bull Permanent Under-secretary for Foreign Affairs, 1854-1946 = Brit Polit Soc Permanent Under-secretary for Foreign Affairs, 1854-1946 = Brit. Polit. Soc. Permeability of Boundaries? = Brit Archaeol Rep In Permeability of Boundaries? = Brit. Archaeol. Rep. In. Permeable Reactive Barriers = Iahs-aish P Permeable Reactive Barriers = Iahs-aish. P. Permeable Walls: Historical Perspectives On Hospital and Asylum Visiting = Clio Med Permeable Walls: Historical Perspectives On Hospital and Asylum Visiting = Clio. Med. Permian Extinction and The Tethys: An Exercise in Global Geology = Geol Soc Am Spec Pap Permian Extinction and The Tethys: An Exercise in Global Geology = Geol. Soc. Am. Spec. Pap. Permian historical annual = Permian Hist Annu Permissive Residents: West Papuan Refugees Living in Papua New Guinea = Monogr Anthropol Permissive Residents: West Papuan Refugees Living in Papua New Guinea = Monogr. Anthropol. Permutation Complexity in Dynamical Systems: Ordinal Patterns, Permutation Entropy and All That = Springer Ser Synerg Permutation Complexity in Dynamical Systems: Ordinal Patterns, Permutation Entropy and All That = Springer. Ser. Synerg. Permutation Methods: A Distance Function Approach, Second Edition = Springer Ser Stat Permutation Methods: A Distance Function Approach, Second Edition = Springer. Ser. Stat. Permutation Testing for Isotonic Inference On Association Studies in Genetics = Springerbrief Stat Permutation Testing for Isotonic Inference On Association Studies in Genetics = Springerbrief. Stat. Perovskite Materials = Mater Res Soc Symp P Perovskite Materials = Mater. Res. Soc. Symp. P. Perovskite Oxide for Solid Oxide Fuel Cells = Fuel Cell Hydro Ener Perovskite Oxide for Solid Oxide Fuel Cells = Fuel Cell. Hydro. Ener. Perovskite Oxides for Electronic, Energy Conversion, and Energy Efficiency Applications = Ceram Trans Perovskite Oxides for Electronic, Energy Conversion, and Energy Efficiency Applications = Ceram. Trans. Peroxisomal Disorders and Regulation of Genes = Adv Exp Med Biol Peroxisomal Disorders and Regulation of Genes = Adv. Exp. Med. Biol. Peroxisomes: Biology and Role in Toxicology and Disease = Ann Ny Acad Sci Peroxisomes: Biology and Role in Toxicology and Disease = Ann. Ny. Acad. Sci. Perpetual Peace = St Cont Ger Perpetual Peace = St. Cont. Ger. Perseus = Gods Heroes Anc Worl Perseus = Gods. Heroes. Anc. Worl. Persians: An Introduction = Peoples Anc World Persians: An Introduction = Peoples. Anc. World. Persica. Jaarboek van het Genootschap Nederland-Iran, Stichting voor culturele betrekkingen = Persica Persistence Pays: U.s. Agricultural Productivity Growth and The Benefits From Public R&d Spending = Nat Res Manag Policy Persistence Pays: U.s. Agricultural Productivity Growth and The Benefits From Public R&d Spending = Nat. Res. Manag. Policy. Personal and The Political = Polit Evol Inst Chan Personal and The Political = Polit. Evol. Inst. Chan. Personal and Ubiquitous Computing = Pers Ubiquit Comput Personal and Ubiquitous Computing = Pers. Ubiquit. Comput. Personal Computers and Intelligent Systems : Information Processing 92, Vol 3 = Ifip Trans A Personal Computers and Intelligent Systems : Information Processing 92, Vol 3 = Ifip. Trans. A. Personal Computing = Pers Comput Personal Computing = Pers. Comput. Personal Effects: Reading The Journal of Marie Bashkirtseff = Res Monogr Fr Stud Personal Effects: Reading The Journal of Marie Bashkirtseff = Res. Monogr. Fr. Stud. Personal Income Tax = Contrib To Econ Anal Personal Income Tax = Contrib. To. Econ. Anal. Personal Injury and Wrongful Death Damages Calculations: Transatlantic Dialogue = Contemp Stud Econ Fi Personal Injury and Wrongful Death Damages Calculations: Transatlantic Dialogue = Contemp. Stud. Econ. Fi. Personalist = Personalist Personality and Individual Differences = Pers Indiv Differ Personality and Individual Differences = Pers. Indiv. Differ. Personality and individual differences = Pers Individ Dif Personality and Individual Differences = Pers. Individ. Differ. Personality and Mental Health = Personal Ment Health Personality and Mental Health = Personal. Ment. Health Personality and Motivational Systems in Mental Retardation = Int Rev Res Ment Ret Personality and Motivational Systems in Mental Retardation = Int. Rev. Res. Ment. Ret. Personality and Social Behavior = Front Soc Psychol Personality and Social Behavior = Front. Soc. Psychol. Personality and Social Psychology Bulletin = Pers Soc Psychol B Personality and Social Psychology Bulletin = Pers. Soc. Psychol. B. Personality and social psychology bulletin = Pers Soc Psychol Bull Personality and social psychology review : an official journal of the Society for Personality and Social Psychology, Inc = Pers Soc Psychol Rev Personality and Social Psychology Review = Pers Soc Psychol Rev Personality and Social Psychology Review = Pers. Soc. Psychol. Rev. Personality and Temperament in Nonhuman Primates = Dev Primatol-prog Pr Personality and Temperament in Nonhuman Primates = Dev. Primatol-prog. Pr. Personalized Digital Television: Targeting Programs to Individual Viewers = Hum Com Int Personalized Digital Television: Targeting Programs to Individual Viewers = Hum. Com. Int. Personalized Digital Television: Targeting Programs to Individual Viewers = Hum-comput Int-sprin Personalized Digital Television: Targeting Programs to Individual Viewers = Hum-comput. Int-sprin. Personalized Medicine = Pers Med Personalized Medicine = Pers. Med. Personalized Nutrition for The Diverse Needs of Infants and Children = Nestle Nutr Works Se Personalized Nutrition for The Diverse Needs of Infants and Children = Nestle. Nutr. Works. Se. Personalized Nutrition: Translating Nutrigenetic/nutrigenomic Research Into Dietary Guidelines = World Rev Nutr Diet Personalized Nutrition: Translating Nutrigenetic/nutrigenomic Research Into Dietary Guidelines = World. Rev. Nutr. Diet. Personal, Passionate, Participatory Inquiry Into Social Justice in Education = Res Soc Justice Pers Personal, Passionate, Participatory Inquiry Into Social Justice in Education = Res. Soc. Justice Pers. Personal Relationships = Pers Relationship Personal Relationships = Pers. Relationship. Personal Relationships = Pers Relatsh Personal, Societal, and Ecological Values of Wilderness: Sixth World Wilderness Congress Proceedings On Research, Management, and Allocation, Vol Ii = Us For Serv Rmrs-p Personal, Societal, and Ecological Values of Wilderness: Sixth World Wilderness Congress Proceedings On Research, Management, and Allocation, Vol Ii = Us. For. Serv. Rmrs-p. Personal Takes = Pers Takes Personal Takes = Pers. Takes Personal Wireless Communications = Int Fed Info Proc Personal Wireless Communications = Int. Fed. Info. Proc. Personal Wireless Communications, Proceedings = Lect Notes Comput Sc Personal Wireless Communications, Proceedings = Lect. Notes. Comput. Sc. Persona y derecho = Pers Derecho Personhood and Health Care = Int Lib Ethics Law Personhood and Health Care = Int. Lib. Ethics. Law. Personlichkeitsrecht Im Privatrecht Der Vr China: Eine Studie Unter Besonderer Berucksichtigung Der Juristischen Personen = Schrift Chin Recht Personlichkeitsrecht Im Privatrecht Der Vr China: Eine Studie Unter Besonderer Berucksichtigung Der Juristischen Personen = Schrift. Chin. Recht. Personnel Administration & Public Personnel Review = Pers Adm Pub Pers R Personnel Administration & Public Personnel Review = Pers. Adm. Pub. Pers. R. Personnel Administrator = Pers. Adm. Personnel and Guidance Journal = Pers Guid J Personnel and Guidance Journal = Pers. Guid. J. Personnel Journal = Pers J Personnel Journal = Pers. J. Personnel = Personnel Personnel Preparation = Adv Learn Behav Disa Personnel Preparation = Adv. Learn. Behav. Disa. Personnel Psychology = Pers Psychol Personnel Psychology = Pers. Psychol. Personnel Review = Pers Rev Personnel Review = Pers. Rev. Persons in Context: The Challenge of Individuality in Theory and Practice = Psychoanal Inq Book Persons in Context: The Challenge of Individuality in Theory and Practice = Psychoanal. Inq. Book. Person, Soul, and Immortality, Proceedings = P Am Cath Philos Ass Person, Soul, and Immortality, Proceedings = P. Am. Cath. Philos. Ass. Persoonia = Persoonia Perspecta-the Yale Architectural Journal = Perspecta Perspecta-the Yale Architectural Journal = Perspecta. Perspectivas Em Ciencia Da Informacao = Perspect Cienc Inf Perspectivas Em Ciencia Da Informacao = Perspect. Cienc. Inf. Perspectivas internacionales en planificacion familiar = Perspect Int Planif Fam Perspectivas = Perspectivas Perspective infirmiere : revue officielle de l'Ordre des infirmieres et infirmiers du Quebec = Perspect Infirm Perspective in Instructional Technology and Distance Learning = Per Inst Technol Dis Perspective in Instructional Technology and Distance Learning = Per. Inst. Technol. Dis. Perspective-la Revue De L Inha = Perspect-rev Inha Perspective-la Revue De L Inha = Perspect-rev. Inha Perspective Look At Nonlinear Media = Lect Notes Phys Perspective Look At Nonlinear Media = Lect. Notes. Phys. Perspective On Stereophonic Acoustic Echo Cancellation = Springer Top Sign Pr Perspective On Stereophonic Acoustic Echo Cancellation = Springer. Top. Sign. Pr. Perspectives From Social Economics = Persp Soc Econ Perspectives From Social Economics = Persp. Soc. Econ. Perspectives (Gerontological Nursing Association (Canada)) = Perspectives Perspectives in Ageing Research = Curr T Life Perspectives in Ageing Research = Curr. T. Life. Perspectives in American history = Perspect Am Hist Perspectives in American History = Perspect Am Hist Perspectives in American History = Perspect. Am. Hist. Perspectives in Analysis = Math Phys S Perspectives in Analysis = Math. Phys. S. Perspectives in Analytical Philosophy = Perspekt Analyt Phil Perspectives in Analytical Philosophy = Perspekt. Analyt. Phil. Perspectives in Analytical Philosophy = Prog Brain Res Perspectives in Analytical Philosophy = Prog. Brain. Res. Perspectives in Analytical Philosophy = Stud Surf Sci Catal Perspectives in Analytical Philosophy = Stud. Surf. Sci. Catal. Perspectives in Behavioral Medicine = Persp Beh M Perspectives in Behavioral Medicine = Persp. Beh. M. Perspectives in Biochemical and Genetic Regulation of Photosynthesis = Plant Biol Perspectives in Biochemical and Genetic Regulation of Photosynthesis = Plant. Biol. Perspectives in biology and medicine = Perspect Biol Med Perspectives in Biology and Medicine = Perspect Biol Med Perspectives in Biology and Medicine = Perspect. Biol. Med. Perspectives In Biology and Medicine=Perspect Biol Med;; Perspectives in Bioremediation = Nato Asi 3 High Tech Perspectives in Bioremediation = Nato. Asi. 3. High. Tech. Perspectives in Brass Scholarship = Bucina Hist Bras Soc Perspectives in Brass Scholarship = Bucina. Hist. Bras. Soc. Perspectives in Business Informatics Research = Lect Notes Bus Inf Perspectives in Business Informatics Research = Lect. Notes. Bus. Inf. Perspectives in Business Informatics Research = Lect Notes Bus Inf P Perspectives in Business Informatics Research = Lect. Notes. Bus. Inf. P. Perspectives in Carbonate Geology: A Tribute to The Career of Robert Nathan Ginsburg = Spec Publ Int Perspectives in Carbonate Geology: A Tribute to The Career of Robert Nathan Ginsburg = Spec. Publ. Int. Perspectives in Comparative Politics = Perspect Comp Polit Perspectives in Comparative Politics = Perspect. Comp. Polit. Perspectives in Computing = Perspect Comput Perspectives in Computing = Perspect. Comput. Perspectives in Conceptual Modeling = Lect Notes Comput Sc Perspectives in Conceptual Modeling = Lect. Notes. Comput. Sc. Perspectives in Continental Philosophy = Pers Contin Philos Perspectives in Continental Philosophy = Pers. Contin. Philos. Perspectives in Digestive Disease = Persp Dig D Perspectives in Digestive Disease = Persp. Dig. D. Perspectives in Drug Discovery and Design = Perspect Drug Discov Perspectives in Drug Discovery and Design = Perspect. Drug Discov. Perspectives in Drug Discovery and Design = Perspect. Drug Discovery Des. Perspectives in Education = Perspect Educ Perspectives in Education = Perspect. Educ. Perspectives in Entrepreneurship = Perspect Entrep Perspectives in Entrepreneurship = Perspect. Entrep. Perspectives in Ethology = Persp Ethol Perspectives in Ethology = Persp. Ethol. Perspectives in Ethology, Vol 13 = Persp Ethol Perspectives in Ethology, Vol 13 = Persp. Ethol. Perspectives in French Studies At The Turn of The Millennium = St 20 C Lit Perspectives in French Studies At The Turn of The Millennium = St. 20. C. Lit. Perspectives in healthcare risk management / American Society for Healthcare Risk Management of the American Hospital Association = Perspect Healthc Risk Manage Perspectives in Healthcare Risk Management = Perspect. Healthc. Risk Manage. Perspectives in health : the magazine of the Pan American Health Organization = Perspect Health Perspectives in Heavy Ion Physics = Ital Phy So Perspectives in Heavy Ion Physics = Ital. Phy. So. Perspectives in Industrial Organization = Stud Ind Or Perspectives in Industrial Organization = Stud. Ind. Or. Perspectives in Instructional Technology and Distance Education = Perspect Instr Techn Perspectives in Instructional Technology and Distance Education = Perspect. Instr. Techn. Perspectives in Law & Psychology = Perspect Law Psychol Perspectives in Law & Psychology = Perspect. Law Psychol. Perspectives in Many-particle Physics = P Int Sch Phys Perspectives in Many-particle Physics = P. Int. Sch. Phys. Perspectives in Materials Characterization = Ser Metall Mater Sci Perspectives in Materials Characterization = Ser. Metall. Mater. Sci. Perspectives in Mathematical Logic = Perspect. Math. Logic Perspectives in Mathematical Sciences Ii: Pure Mathematics = Stat Sci Interdisc R Perspectives in Mathematical Sciences Ii: Pure Mathematics = Stat. Sci. Interdisc. R. Perspectives in Mathematical Sciences Ii: Pure Mathematics = Stat Sci Int Res Perspectives in Mathematical Sciences Ii: Pure Mathematics = Stat. Sci. Int. Res. Perspectives in Mathematical Sciences I: Probability and Statistics = Stat Sci Int Res Perspectives in Mathematical Sciences I: Probability and Statistics = Stat. Sci. Int. Res. Perspectives in Mathematical System Theory, Control, and Signal Processing = Lect Notes Contr Inf Perspectives in Mathematical System Theory, Control, and Signal Processing = Lect. Notes. Contr. Inf. Perspectives in Mathematics = Perspect. Math. Perspectives in Mexican American studies = Perspect Mex Am Stud Perspectives in Modern Project Scheduling = Int Ser Oper Res Man Perspectives in Modern Project Scheduling = Int. Ser. Oper. Res. Man. Perspectives in Nanotechnology = Perspect Nanotechnol Perspectives in Nanotechnology = Perspect. Nanotechnol. Perspectives in nephrology and hypertension = Perspect Nephrol Hypertens Perspectives in Nephrology and Hypertension = Perspect. Nephrol. Hypertens. Perspectives in Neural Computing = Perspect. Neural Comput. Perspectives in Neural Computing = Persp Neural Comp Perspectives in Neural Computing = Persp. Neural Comp. Perspectives in Neurological Surgery = Perspect Neurol Surg Perspectives in Neurological Surgery = Perspect. Neurol. Surg. Perspectives in Neutrinos Atomic Physics and Gravitation = Moriond Wor Perspectives in Neutrinos Atomic Physics and Gravitation = Moriond. Wor. Perspectives in Nonlinear Partial Differential Equations: in Honor of Haim Brezis = Contemp Math Perspectives in Nonlinear Partial Differential Equations: in Honor of Haim Brezis = Contemp. Math. Perspectives in Nonviolence = Rec Res Psy Perspectives in Nonviolence = Rec. Res. Psy. Perspectives in Nuclear Physics = Aip Conf Proc Perspectives in Nuclear Physics = Aip. Conf. Proc. Perspectives in Operator Theory = Banach Cent Perspectives in Operator Theory = Banach. Cent. Perspectives in Organometallic Chemistry = Roy Soc Ch Perspectives in Organometallic Chemistry = Roy. Soc. Ch. Perspectives in Pediatric Cardiology = Pers Ped C Perspectives in Pediatric Cardiology = Pers. Ped. C. Perspectives in Pediatric Cardiology, Vol 2, Pt 2 = Pers Ped C Perspectives in Pediatric Cardiology, Vol 2, Pt 2 = Pers. Ped. C. Perspectives in Pediatric Cardiology, Vol 2, Pt 3 = Pers Ped C Perspectives in Pediatric Cardiology, Vol 2, Pt 3 = Pers. Ped. C. Perspectives in Pediatric Pathology = Perspect Pediat Path Perspectives in Pediatric Pathology = Perspect. Pediat. Path. Perspectives in pediatric pathology = Perspect Pediatr Pathol Perspectives in Pediatric Pathology = Perspect. Pediatr. Pathol. Perspectives in Photosynthesis = Jerus Sym Q Perspectives in Photosynthesis = Jerus. Sym. Q. Perspectives in Plant Cell Recognition = Soc Exp Biol Semin S Perspectives in Plant Cell Recognition = Soc. Exp. Biol. Semin. S. Perspectives in Plant Ecology Evolution and Systematics = Perspect Plant Ecol Perspectives in Plant Ecology Evolution and Systematics = Perspect. Plant Ecol. Perspectives in Plant Ecology, Evolution and Systematics = Perspect. Plant Ecol. Evol. Syst. Perspectives in Psychiatric Care = Perspect Psychiatr C Perspectives in Psychiatric Care = Perspect. Psychiatr. C. Perspectives in psychiatric care = Perspect Psychiatr Care Perspectives in Psychiatric Care = Perspect. Psychiatr. Care Perspectives in Public Health = Perspect Public Heal Perspectives in Public Health = Perspect. Public Heal. Perspectives in Radiative Transfer and Interferometry = Eas Publications Perspectives in Radiative Transfer and Interferometry = Eas. Publications. Perspectives in respiratory nursing : a publication of the Respiratory Nursing Society = Perspect Respir Nurs Perspectives in Respiratory Nursing = Perspect. Respir. Nurs. Perspectives in Riemannian Geometry = Crm Proc & Lect Note Perspectives in Riemannian Geometry = Crm. Proc. &. Lect. Note. Perspectives in Ring Theory = Nato Adv Sci I C-mat Perspectives in Ring Theory = Nato. Adv. Sci. I. C-mat. Perspectives in Robust Control = Lect Notes Contr Inf Perspectives in Robust Control = Lect. Notes. Contr. Inf. Perspectives in social work = Perspect Soc Work Perspectives internationales du planning familial = Perspect Internation Plan Fam Perspectives in The Structure of Hadronic Systems = Nato Adv Sci Inst Se Perspectives in The Structure of Hadronic Systems = Nato. Adv. Sci. Inst. Se. Perspectives in vascular surgery and endovascular therapy = Perspect Vasc Surg Endovasc Ther Perspectives in Vertebrate Science = Persp Vert Perspectives in Vertebrate Science = Persp. Vert. Perspectives in Vibrational Spectroscopy = Aip Conf Proc Perspectives in Vibrational Spectroscopy = Aip. Conf. Proc. Perspectives in Vision Research = Persp Vis R Perspectives in Vision Research = Persp. Vis. R. Perspectives of Event-related Potentials Research = Eeg Cl N Su Perspectives of Event-related Potentials Research = Eeg. Cl. N. Su. Perspectives of Nanoscience and Nanotechnology = Solid State Phenomen Perspectives of Nanoscience and Nanotechnology = Solid. State. Phenomen. Perspectives of Nanoscience and Nanotechnology = Sol St Phen Perspectives of Nanoscience and Nanotechnology = Sol. St. Phen. Perspectives of Neural-symbolic Integration = Stud Comput Intell Perspectives of Neural-symbolic Integration = Stud. Comput. Intell. Perspectives of New Music = Perspect New Music Perspectives of New Music = Perspect. New Music Perspectives of System Informatics = Lect Notes Comput Sc Perspectives of System Informatics = Lect. Notes. Comput. Sc. Perspectives of Systems Informatics = Lect Notes Comput Sc Perspectives of Systems Informatics = Lect. Notes. Comput. Sc. Perspectives on accreditation = Perspect Accredit Perspectives on Accreditation = Perspect. Accredit. Perspectives on addictions nursing : a publication of the National Nurses Society on Addictions = Perspect Addict Nurs Perspectives on Addictions Nursing = Perspect. Addict. Nurs. Perspectives On Arabic Linguistics Xi = Amst Stud Theory His Perspectives On Arabic Linguistics Xi = Amst. Stud. Theory. His. Perspectives On Arabic Linguistics Xii = Amst Stud Theory His Perspectives On Arabic Linguistics Xii = Amst. Stud. Theory. His. Perspectives On Arabic Linguistics Xvi = Amst Stud Theory His Perspectives On Arabic Linguistics Xvi = Amst. Stud. Theory. His. Perspectives On Arabic Linguistics Xvii-xviii = Amst Stud Theory His Perspectives On Arabic Linguistics Xvii-xviii = Amst. Stud. Theory. His. Perspectives On Assisted Reproduction = Front Endocrinol Perspectives On Assisted Reproduction = Front. Endocrinol. Perspectives On Behavioral Inhibition = Mac Fdn Men Perspectives On Behavioral Inhibition = Mac. Fdn. Men. Perspectives On Corporate Social Responsibility = Corp Glob Law Perspectives On Corporate Social Responsibility = Corp. Glob. Law. Perspectives On Cross-cultural, Ethnographic, Brand Image, Storytelling, Unconscious Needs, and Hospitality Guest Research = Adv Cult Tour Hosp R Perspectives On Cross-cultural, Ethnographic, Brand Image, Storytelling, Unconscious Needs, and Hospitality Guest Research = Adv. Cult. Tour. Hosp. R. Perspectives On Developmental Neurobiology = Perspect Dev Neurobi Perspectives On Developmental Neurobiology = Perspect. Dev. Neurobi. Perspectives on developmental neurobiology = Perspect Dev Neurobiol Perspectives on Developmental Neurobiology=Perspect Dev Neurobiol;; Perspectives on Developmental Neurobiology = Perspect. Dev. Neurobiol. Perspectives On Educational Quality: Illustrative Outcomes On Primary and Secondary Schooling in The Netherlands = Springerbriefs Educ Perspectives On Educational Quality: Illustrative Outcomes On Primary and Secondary Schooling in The Netherlands = Springerbriefs. Educ. Perspectives On Gender = Perspect Gend Perspectives On Gender = Perspect. Gend. Perspectives On Gramsci: Politics, Culture and Social Theory = Routl Stud Soc Polit Perspectives On Gramsci: Politics, Culture and Social Theory = Routl. Stud. Soc. Polit. Perspectives On Gramsci: Politics, Culture and Social Theory = Rout Stud Soc Polit Perspectives On Gramsci: Politics, Culture and Social Theory = Rout. Stud. Soc. Polit. Perspectives On Individual Differences = Persp Indiv Perspectives On Individual Differences = Persp. Indiv. Perspectives On Inorganic, Organic, and Biological Crystal Growth: From Fundamentals to Applications = Aip Conf Proc Perspectives On Inorganic, Organic, and Biological Crystal Growth: From Fundamentals to Applications = Aip. Conf. Proc. Perspectives On International Corporate Responsibility = Int Corp Respons Ser Perspectives On International Corporate Responsibility = Int. Corp. Respons. Ser. Perspectives On Karst Geomorphology, Hydrology, and Geochemistry = Geol S Am S Perspectives On Karst Geomorphology, Hydrology, and Geochemistry = Geol. S. Am. S. Perspectives on Labour and Income=Perspect. Lab. Income Perspectives On Lipase Enzyme Technology = Biotech Agr Ind Med Perspectives On Lipase Enzyme Technology = Biotech. Agr. Ind. Med. Perspectives On Mathematical Practices = Logic Epistemol Unit Perspectives On Mathematical Practices = Logic. Epistemol. Unit. Perspectives on Medicaid and Medicare management = Perspect Medicaid Medicare Manage Perspectives on Medicaid and Medicare Management = Perspect. Medicaid Medicare Manage. Perspectives on medicaid management = Perspect Medicaid Manage Perspectives on Medicaid Management = Perspect. Medicaid Manage. Perspectives On Politics = Perspect Polit Perspectives On Politics = Perspect. Polit. Perspectives On Prepositions = Ling Arb Perspectives On Prepositions = Ling. Arb. Perspectives On Prepositions = Linguist Arb Perspectives On Prepositions = Linguist. Arb. Perspectives On Properties of The Human Genome Project = Adv Genet Perspectives On Properties of The Human Genome Project = Adv. Genet. Perspectives On Psychological Science = Perspect Psychol Sci Perspectives On Psychological Science = Perspect. Psychol. Sci. Perspectives On Quantum Reality = U W Ont Phi Perspectives On Quantum Reality = U. W. Ont. Phi. Perspectives on science and Christian faith : journal of the American Scientific Affiliation = Perspect Sci Christ Faith Perspectives on Science = Perspect. Sci. Perspectives on sexual and reproductive health = Perspect Sex Reprod Health Perspectives on Sexual and Reproductive Health = Perspect. Sex. Reprod. Health Perspectives On Sexual and Reproductive Health = Perspect Sex Repro H Perspectives On Sexual and Reproductive Health = Perspect. Sex. Repro. H. Perspectives On Sino-american Strategic Nuclear Issues = Initiat Strateg Stud Perspectives On Sino-american Strategic Nuclear Issues = Initiat. Strateg. Stud. Perspectives On Solid State Nmr in Biology = Focus Struct Biology Perspectives On Solid State Nmr in Biology = Focus. Struct. Biology Perspectives On Spatial Data Analysis = Adv Spat Sci Perspectives On Spatial Data Analysis = Adv. Spat. Sci. Perspectives On The American Revolution = Per Amer Revolut Perspectives On The American Revolution = Per. Amer. Revolut. Perspectives On The Economics of Aging = Nber Conf R Perspectives On The Economics of Aging = Nber. Conf. R. Perspectives On The Environment 2 = Aveb St Gr Perspectives On The Environment 2 = Aveb. St. Gr. Perspectives On The Family = S Soc Polit Perspectives On The Family = S. Soc. Polit. Perspectives On The Future of Criminology in The Federal Republic of Germany = Int B Krim Perspectives On The Future of Criminology in The Federal Republic of Germany = Int. B. Krim. Perspectives On The History of Economic Thought = Pers His Ec Perspectives On The History of Economic Thought = Pers. His. Ec. Perspectives On The History of Economic Thought, Vol 7 = Pers His Ec Perspectives On The History of Economic Thought, Vol 7 = Pers. His. Ec. Perspectives On The History of Economic Thought, Vol 8 = Pers His Ec Perspectives On The History of Economic Thought, Vol 8 = Pers. His. Ec. Perspectives on the professions = Perspectives Prof Perspectives On The Social Gospel = Texts Stud Social Go Perspectives On The Social Gospel = Texts. Stud. Social Go. Perspectives On The Unity and Integration of Knowledge = Counterpoints Perspectives On The Unity and Integration of Knowledge = Counterpoints. Perspectives On Tsunami Hazard Reduction = Adv Nat Technol Haz Perspectives On Tsunami Hazard Reduction = Adv. Nat. Technol. Haz. Perspectives On War: Essays On Security, Society & The State = Perspect War Perspectives On War: Essays On Security, Society & The State = Perspect. War. Perspectives On War = Perspect War Perspectives On War = Perspect. War Perspectives = Perspectives (Montclair) Perspectives, Science and Technologies for Novel Silicon On Insulator Devices = Nato Asi 3 High Tech Perspectives, Science and Technologies for Novel Silicon On Insulator Devices = Nato. Asi. 3. High. Tech. Perspectives Series = Perspect Ser Perspectives Series = Perspect. Ser. Perspectives-studies in Translatology = Perspect Stud Transl Perspectives-studies in Translatology = Perspect. Stud. Transl. Perspektiven der Philosophie: neues Jahrbuch = PPH Persuasion and Dissuasion in Early Christianity, Ancient Judaism, and Hellenism = Contr Bib Exeg Theol Persuasion and Dissuasion in Early Christianity, Ancient Judaism, and Hellenism = Contr. Bib. Exeg. Theol. Persuasion On-line and Communicability: The Destruction of Credibility in The Virtual Community and Cognitive Models = Comput Sci Tech Appl Persuasion On-line and Communicability: The Destruction of Credibility in The Virtual Community and Cognitive Models = Comput. Sci. Tech. Appl. Persuasive Communication and Drug Abuse Prevention = Communic Persuasive Communication and Drug Abuse Prevention = Communic. Persuasive Technology = Lect Notes Comput Sc Persuasive Technology = Lect. Notes. Comput. Sc. Persuasive Technology, Proceedings = Lect Notes Comput Sc Persuasive Technology, Proceedings = Lect. Notes. Comput. Sc. Perturbation Bounds for Matrix Eigenvalues = Class Appl Math Perturbation Bounds for Matrix Eigenvalues = Class. Appl. Math. Perturbation Compensator Based Robust Tracking Control and State Estimation of Mechanical Systems = Lect Notes Contr Inf Perturbation Compensator Based Robust Tracking Control and State Estimation of Mechanical Systems = Lect. Notes. Contr. Inf. Perturbation Theory for The Schrodinger Operator With A Periodic Potential = Lect Notes Math Perturbation Theory for The Schrodinger Operator With A Periodic Potential = Lect. Notes. Math. Pertussis Vaccine Trials = Dev Biol Stand Pertussis Vaccine Trials = Dev. Biol. Stand. Pervasive and Mobile Computing = Pervasive Mob. Comput. Pervasive Collaborative Networks = Int Fed Info Proc Pervasive Collaborative Networks = Int. Fed. Info. Proc. Pervasive Computing for Quality of Life Enhancement, Proceedings = Lect Notes Comput Sc Pervasive Computing for Quality of Life Enhancement, Proceedings = Lect. Notes. Comput. Sc. Pervasive Computing: Innovations in Intelligent Multimedia and Applications = Comput Commun Netw S Pervasive Computing: Innovations in Intelligent Multimedia and Applications = Comput. Commun. Netw. S. Pervasive Computing = Lect Notes Comput Sc Pervasive Computing = Lect. Notes. Comput. Sc. Pervasive Computing = Pervasive Comput. Pervasive Computing, Proceedings = Lect Notes Comput Sc Pervasive Computing, Proceedings = Lect. Notes. Comput. Sc. Pervasive Information Systems = Adv Manag Inform Sys Pervasive Information Systems = Adv. Manag. Inform. Sys. Perzeption Und Kognitive Verarbeitung Der Sprechmelodie: Theoretische Grundlagen Und Empirische Untersuchungen = Lang Context Cogn Perzeption Und Kognitive Verarbeitung Der Sprechmelodie: Theoretische Grundlagen Und Empirische Untersuchungen = Lang. Context. Cogn. Pesc'02: 2002 Ieee 33rd Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee Power Electron Pesc'02: 2002 Ieee 33rd Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee Power Electron. Pesc'03: 2003 Ieee 34th Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee Power Electron Pesc'03: 2003 Ieee 34th Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee Power Electron. Pesc 04: 2004 Ieee 35th Annual Power Electronics Specialists Conference, Vols 1-6, Conference Proceedings = Ieee Power Electron Pesc 04: 2004 Ieee 35th Annual Power Electronics Specialists Conference, Vols 1-6, Conference Proceedings = Ieee Power Electron. Pesc 2000: 31st Annual Ieee Power Electronics Specialists Conference, Vols 1-3 = Ieee Power Electron Pesc 2000: 31st Annual Ieee Power Electronics Specialists Conference, Vols 1-3 = Ieee Power Electron. Pesc 2001: 32nd Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee Power Electron Pesc 2001: 32nd Annual Power Electronics Specialists Conference, Vols 1-4, Conference Proceedings = Ieee. Power Electron. Pesc 90 Record - 21st Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron Pesc 90 Record - 21st Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron. Pesc 92, Record - 23rd Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron Pesc 92, Record - 23rd Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron. Pesc 93 Record - 24th Annual Ieee Power Electronics Specialists Conference = Ieee Power Electron Pesc 93 Record - 24th Annual Ieee Power Electronics Specialists Conference = Ieee Power Electron. Pesc 94 Record - 25th Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron Pesc 94 Record - 25th Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron. Pesc 95 Record - 26th Annual Ieee Power Electronics Specialists Conference, Vols I and Ii = Ieee Power Electron Pesc 95 Record - 26th Annual Ieee Power Electronics Specialists Conference, Vols I and Ii = Ieee Power Electron. Pesc 96 Record - 27th Annual Ieee Power Electronics Specialists Conference, Vols I and Ii = Ieee Power Electron Pesc 96 Record - 27th Annual Ieee Power Electronics Specialists Conference, Vols I and Ii = Ieee Power Electron. Pesc'97: 28th Annual Ieee Power Electronics Specialists Conference - Record, Vols I and Ii = Ieee Power Electron Pesc'97: 28th Annual Ieee Power Electronics Specialists Conference - Record, Vols I and Ii = Ieee Power Electron. Pesc 98 Record - 29th Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron Pesc 98 Record - 29th Annual Ieee Power Electronics Specialists Conference, Vols 1 and 2 = Ieee Power Electron. Peshitta As A Translation = Mg Pesh Inst Leiden Peshitta As A Translation = Mg. Pesh. Inst. Leiden. Pesquisa Agropecuaria Brasileira = Pesqui Agropecu Bras Pesquisa Agropecuaria Brasileira = Pesqui. Agropecu. Bras. Pesquisa Agropecuária Brasileira = Pesqui. Agropecu. Bras. Pesquisa e planejamento economico = Pesqui Planej Econ Pesquisa e Planejamento Econômico=Pesquisa Planejamento Econ. Pesquisa Odontologica Brasileira = Pesqui. Odontol. Bras. Pesquisa Veterinaria Brasileira = Pesquisa Vet Brasil Pesquisa Veterinaria Brasileira = Pesquisa Vet. Brasil. Pest Control = Pest Control Pest Control With Enhanced Environmental Safety = Acs Sym Ser Pest Control With Enhanced Environmental Safety = Acs. Sym. Ser. Pesticide Behaviour in Soils and Water = Bcpc Symp Ser Pesticide Behaviour in Soils and Water = Bcpc. Symp. Ser. Pesticide Biochemistry and Physiology = Pestic Biochem Phys Pesticide Biochemistry and Physiology = Pestic. Biochem. Phys. Pesticide Biochemistry and Physiology = Pestic. Biochem. Physiol. Pesticide Chemistry and Bioscience: The Food-environment Challenge = Roy Soc Ch Pesticide Chemistry and Bioscience: The Food-environment Challenge = Roy. Soc. Ch. Pesticide Decontamination and Detoxification = Acs Sym Ser Pesticide Decontamination and Detoxification = Acs. Sym. Ser. Pesticide Formulations and Applications Systems: 16th Vol. = Am Soc Test Mater Pesticide Formulations and Applications Systems: 16th Vol. = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems : 11th Volume = Am Soc Test Mater Pesticide Formulations and Application Systems : 11th Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems : 12th Volume = Am Soc Test Mater Pesticide Formulations and Application Systems : 12th Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: 13th Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: 13th Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: 15th Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: 15th Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: 17th Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: 17th Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: 23rd Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: 23rd Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: A New Century for Agricultural Formulations, Twenty First Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: A New Century for Agricultural Formulations, Twenty First Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: Eighteenth Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: Eighteenth Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: Fourteenth Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: Fourteenth Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems: Twentieth Volume = Am Soc Test Mater Pesticide Formulations and Application Systems: Twentieth Volume = Am. Soc. Test. Mater. Pesticide Formulations and Application Systems, Vol 10 = Am Soc Test Mater Pesticide Formulations and Application Systems, Vol 10 = Am. Soc. Test. Mater. Pesticide Formulations and Delivery Systems, 25th Volume: Advances in Crop Protection Technologies = Am Soc Test Mater Pesticide Formulations and Delivery Systems, 25th Volume: Advances in Crop Protection Technologies = Am. Soc. Test. Mater. Pesticide Formulations and Delivery Systems, 27th Volume: Traditional and Non-traditional Developments = Am Soc Test Mater Pesticide Formulations and Delivery Systems, 27th Volume: Traditional and Non-traditional Developments = Am. Soc. Test. Mater. Pesticide Formulations and Delivery Systems, 28th Volume: Global Trends and Regulatory Drivers in The Crop Protection Industry = Am Soc Test Mater Pesticide Formulations and Delivery Systems, 28th Volume: Global Trends and Regulatory Drivers in The Crop Protection Industry = Am. Soc. Test. Mater. Pesticide Formulations and Delivery Systems: Meeting The Challenges of The Current Crop Protection Industry = Am Soc Test Mater Pesticide Formulations and Delivery Systems: Meeting The Challenges of The Current Crop Protection Industry = Am. Soc. Test. Mater. Pesticide Formulations and Delivery Systems: The Continued Evolution of Agrochemicals, 24th Volume = Am Soc Test Mater Pesticide Formulations and Delivery Systems: The Continued Evolution of Agrochemicals, 24th Volume = Am. Soc. Test. Mater. Pesticide Formulations & Delivery Systems, 26 Vol: Reassessing Pesticide Technologies = Am Soc Test Mater Pesticide Formulations & Delivery Systems, 26 Vol: Reassessing Pesticide Technologies = Am. Soc. Test. Mater. Pesticide Movement to Water = Br Crop Pr Pesticide Movement to Water = Br. Crop. Pr. Pesticide Outlook = Pestic. Outlook Pesticide Residues and Food Safety = Acs Sym Ser Pesticide Residues and Food Safety = Acs. Sym. Ser. Pesticide Resistance, Population Dynamics and Invasive Species Management = Agr Issues Policies Pesticide Resistance, Population Dynamics and Invasive Species Management = Agr. Issues. Policies. Pesticides and The Future : Toxicological Studies of Risks and Benefits = Rev Pest T Pesticides and The Future : Toxicological Studies of Risks and Benefits = Rev. Pest. T. Pesticide Science = Pestic Sci Pesticide Science = Pestic. Sci. Pesticides in Household, Structural and Residential Pest Management = Acs Sym Ser Pesticides in Household, Structural and Residential Pest Management = Acs. Sym. Ser. Pesticides in Soils and Water : Current Perspectives = Br Crop Pr Pesticides in Soils and Water : Current Perspectives = Br. Crop. Pr. Pesticides in Urban Environments = Acs Sym Ser Pesticides in Urban Environments = Acs. Sym. Ser. Pesticides monitoring journal = Pestic Monit J Pesticides Monitoring Journal = Pestic Monit J Pesticides Monitoring Journal = Pestic. Monit. J. Pesticides = Pesticides Pesticide Transformation Products = Acs Sym Ser Pesticide Transformation Products = Acs. Sym. Ser. Pest Management Science = Pest Manage. Sci. Pest management science = Pest Manag Sci Pest Management Science = Pest Manag Sci Pest Management Science = Pest Manag. Sci. Pests and Pathogens = Env Plant B Pests and Pathogens = Env. Plant. B. Pet and Molecular Imaging: State of The Art and Future Perspectives = Int Congr Ser Pet and Molecular Imaging: State of The Art and Future Perspectives = Int. Congr. Ser. Petascale Computing: Algorithms and Applications = Ch Crc Comp Sci Ser Petascale Computing: Algorithms and Applications = Ch. Crc. Comp. Sci. Ser. Pet Chemistry = E Schering Res Fdn W Pet Chemistry = E. Schering. Res. Fdn. W. Peter Collinson and The Eighteenth-century Natural History Exchange = Mem Am Philos Soc Peter Collinson and The Eighteenth-century Natural History Exchange = Mem. Am. Philos. Soc. Petermanns Geographische Mitteilungen = Petermann Geogr Mitt Petermanns Geographische Mitteilungen = Petermann. Geogr. Mitt. Petermanns geographische Mitteilungen = Petermanns Geogr Mitt Petermanns Mitteilungen = Petermanns Mitt Petermanns Mitteilungen = Petermanns Mitt. Peter Martyr Vermigli and The European Reformations: Semper Reformanda = Stud Hist Christ Tra Peter Martyr Vermigli and The European Reformations: Semper Reformanda = Stud. Hist. Christ. Tra. Peter Yodzis Fundamental Ecology Series = Peter Yodzis Fund Ec Peter Yodzis Fundamental Ecology Series = Peter Yodzis Fund. Ec. Petri Nets and Other Models of Concurrency - Icatpn 2006 = Lect Notes Comput Sc Petri Nets and Other Models of Concurrency - Icatpn 2006 = Lect. Notes. Comput. Sc. Petri Nets and Other Models of Concurrency - Icatpn 2007 = Lect Notes Comput Sc Petri Nets and Other Models of Concurrency - Icatpn 2007 = Lect. Notes. Comput. Sc. Petri Net Technology for Communication-based Systems = Lect Notes Comput Sc Petri Net Technology for Communication-based Systems = Lect. Notes. Comput. Sc. Petrography of Cementitious Materials = Am Soc Test Mater Petrography of Cementitious Materials = Am. Soc. Test. Mater. Petroleum and Chemical Industry Technical Conference = Record Conf Pap Petr Petroleum and Chemical Industry Technical Conference = Record. Conf. Pap. Petr. Petroleum and Coal = Pet. Coal Petroleum and Tectonics in Mobile Belts = Coll Col Se Petroleum and Tectonics in Mobile Belts = Coll. Col. Se. Petroleum Biotechnology: Developments and Perspectives = Stud Surf Sci Catal Petroleum Biotechnology: Developments and Perspectives = Stud. Surf. Sci. Catal. Petroleum Chemistry = Pet. Chem. Petroleum Chemistry = Petrol Chem+ Petroleum Chemistry = Petrol. Chem+.+ Petroleum Engineer International = Petrol Eng Int Petroleum Engineer International = Petrol. Eng. Int. Petroleum Exploration and Development = Pet. Explor. Dev. Petroleum Geochemistry and Exploration in The Afro-asian Region = Proc Monogr Eng Wate Petroleum Geochemistry and Exploration in The Afro-asian Region = Proc. Monogr. Eng. Wate. Petroleum Geology of The Irish Sea and Adjacent Areas = Geol Soc Spec Publ Petroleum Geology of The Irish Sea and Adjacent Areas = Geol. Soc. Spec. Publ. Petroleum Geoscience = Pet. Geosci. Petroleum Geoscience = Petrol Geosci Petroleum Geoscience = Petrol. Geosci. Petroleum Provinces of The Twenty-first Century = Aapg Memoir Petroleum Provinces of The Twenty-first Century = Aapg. Memoir. Petroleum Science and Technology = Petrol Sci Technol Petroleum Science and Technology = Petrol. Sci. Technol. Petroleum Science and Technology = Pet Sci Technol Petroleum Science and Technology = Pet. Sci. Technol. Petroleum Science and Technology Series = Petrol Sci Tech Ser Petroleum Science and Technology Series = Petrol. Sci. Tech. Ser. Petroleum Science = Petrol Sci Petroleum Science = Petrol. Sci. Petroleum Science = Pet Sci Petroleum Science = Pet. Sci. Petroleum Taxation: Sharing The Oil Wealth: A Study of Petroleum Taxation Yesterday, Today and Tomorrow = Routl Stud Int Bus W Petroleum Taxation: Sharing The Oil Wealth: A Study of Petroleum Taxation Yesterday, Today and Tomorrow = Routl. Stud. Int. Bus. W. Petrologia, Geoquimica E Termocronologia Das Rochas Granuliticas Do Sector Sao Fidelis - Santo Antonio De Padua, (zona Central Da Faixa Ribeira, Rio De Janeiro, Se Do Brasil) = Ser Nova Terra Petrologia, Geoquimica E Termocronologia Das Rochas Granuliticas Do Sector Sao Fidelis - Santo Antonio De Padua, (zona Central Da Faixa Ribeira, Rio De Janeiro, Se Do Brasil) = Ser. Nova. Terra. Petrological Evolution of The European Lithospheric Mantle = Geol Soc Spec Publ Petrological Evolution of The European Lithospheric Mantle = Geol. Soc. Spec. Publ. Petrology and Structural Geology = Petr Stru G Petrology and Structural Geology = Petr. Stru. G. Petrology = Petrology Petrology = Petrology+ Petrology = Petrology+.+ Petronian Society Newsletter = PSN Petronius: Satyrica 1-15 - Text, Ubersetzung, Kommentar = Texte Komment Petronius: Satyrica 1-15 - Text, Ubersetzung, Kommentar = Texte. Komment. Petrophysical Properties of Crystalline Rocks = Geol Soc Spec Publ Petrophysical Properties of Crystalline Rocks = Geol. Soc. Spec. Publ. Petrophysics = Petrophysics Petrus in Rom-die Literarischen Zeugnisse = Unters Antiken Lit G Petrus in Rom-die Literarischen Zeugnisse = Unters. Antiken. Lit. G. Pet Studies On Amino Acid Metabolism and Protein Synthesis = Dev Nuc Med Pet Studies On Amino Acid Metabolism and Protein Synthesis = Dev. Nuc. Med. Peuce. Studii şi comunicări de istorie veche, arheologie şi numismatică = Peuce Peuples mediterraneens. Mediterranean peoples = Mediterr Peoples Peyronie's Disease: A Guide to Clinical Management = Curr Clin Urol Peyronie's Disease: A Guide to Clinical Management = Curr. Clin. Urol. Pezcoller Foundation Symposia = Pez Fdn Sym Pezcoller Foundation Symposia = Pez. Fdn. Sym. PFCA review = PFCA Rev PFCA Review = PFCA Rev. Pferdeheilkunde = Pferdeheilkunde Pflanzenschutz-Nachrichten Bayer = Pflanzenschutz-Nachr. Bayer Pflege aktuell / DBfK, Deutscher Berufsverband fur Pflegeberufe = Pflege Aktuell Pflege Aktuell = Pflege Aktuell Pflege = Pflege Pflege Zeitschrift = Pflege Z Pflege Zeitschrift = Pflege Z. Pfluegers Archiv = Pfluegers Arch. Pflugers Archiv-european Journal of Physiology = Pflug Arch Eur J Phy Pflugers Archiv-european Journal of Physiology = Pflug. Arch. Eur. J. Phy. Pflugers Archiv : European journal of physiology = Pflugers Arch Pflugers Archiv (European Journal of Physiology) = Pflugers Arch. Pflugers Archiv. European Journal of Physiology=Pflugers Arch;; Pflugers Archiv Fur Die Gesamte Physiologie Des Menschen Und Der Tiere = Pflug Arch Ges Phys Pflugers Archiv Fur Die Gesamte Physiologie Des Menschen Und Der Tiere = Pflug. Arch. Ges. Phys. Pflugers Archiv fur die gesamte Physiologie des Menschen und der Tiere = Pflugers Arch Gesamte Physiol Menschen Tiere Pflugers Archiv fur die Gesamte Physiologie des Menschen und der Tiere = Pflugers Arch. Gesamte Physiol. Menschen Tiere Phaedrus = Phaedrus Phaenomenologica = Phaenomenol Phaenomenologica = Phaenomenol. Phaenomenologica = Phaenomenologica Phage Display As A Tool for Synthetic Biology = Nanotechnol Sci Tech Phage Display As A Tool for Synthetic Biology = Nanotechnol. Sci. Tech. Phage Nanobiotechnology = Rsc Nanosci Nanotech Phage Nanobiotechnology = Rsc. Nanosci. Nanotech. Phagocytes = Ann Ny Acad Sci Phagocytes = Ann. Ny. Acad. Sci. Phanerozoic Ironstones = Geol Soc Spec Publ Phanerozoic Ironstones = Geol. Soc. Spec. Publ. Phanomenologie Der Schwachen Phantasie = Phaenomenologica Phanomenologie Der Schwachen Phantasie = Phaenomenologica. Phantoms of War in Contemporary German Literature, Films and Discourse: The Politics of Memory = New Perspect Ger Stu Phantoms of War in Contemporary German Literature, Films and Discourse: The Politics of Memory = New. Perspect. Ger. Stu. Pharmaceutica acta Helvetiae = Pharm Acta Helv Pharmaceutica Acta Helvetiae=Pharm Acta Helv;; Pharmaceutica Acta Helvetiae = Pharm Acta Helv Pharmaceutica Acta Helvetiae = Pharm. Acta Helv. Pharmaceutical and Pharmacological Letters = Pharm. Pharmacol. Lett. Pharmaceutical Applications of Cell and Tissue Culture to Drug Transport = Nato Adv Sci I A-lif Pharmaceutical Applications of Cell and Tissue Culture to Drug Transport = Nato. Adv. Sci. I. A-lif. Pharmaceutical Biology = Pharm Biol Pharmaceutical Biology = Pharm. Biol. Pharmaceutical Biotechnology = Adv Exp Med Biol Pharmaceutical Biotechnology = Adv. Exp. Med. Biol. Pharmaceutical biotechnology = Pharm Biotechnol Pharmaceutical Biotechnology=Pharm Biotechnol;; Pharmaceutical Biotechnology = Pharm. Biotechnol. Pharmaceutical bulletin = Pharm Bull Pharmaceutical Chemistry Journal = Pharm Chem J Pharmaceutical Chemistry Journal = Pharm Chem J+ Pharmaceutical Chemistry Journal = Pharm. Chem. J. Pharmaceutical Chemistry Journal = Pharm. Chem. J+.+ Pharmaceutical Chemistry Journal-ussr = Pharm Chem J-ussr Pharmaceutical Chemistry Journal-ussr = Pharm. Chem. J-ussr. Pharmaceutical development and technology = Pharm Dev Technol Pharmaceutical Development and Technology = Pharm Dev Technol Pharmaceutical Development and Technology = Pharm. Dev. Technol. Pharmaceutical historian = Pharm Hist (Lond) Pharmaceutical Journal = Pharm J Pharmaceutical Journal = Pharm. J. Pharmaceutical Profiling in Drug Discovery for Lead Selection = Biotech Pharm Aspect Pharmaceutical Profiling in Drug Discovery for Lead Selection = Biotech. Pharm. Aspect. Pharmaceutical Research = Pharmaceut Res Pharmaceutical Research = Pharmaceut. Res. Pharmaceutical research = Pharm Res Pharmaceutical Research=Pharm Res;; Pharmaceutical Research = Pharm Res Pharmaceutical Research = Pharm. Res. Pharmaceutical Research = Pharm Res-dord Pharmaceutical Research = Pharm. Res-dord. Pharmaceutical Research = Pharm Res-dordr Pharmaceutical Research = Pharm. Res-dordr. Pharmaceuticals: A European Ambition = Congr Colloq Pharmaceuticals: A European Ambition = Congr. Colloq. Pharmaceutical science & technology today = Pharm Sci Technolo Today Pharmaceutical Science & Technology Today = Pharm Sci Technol To Pharmaceutical Science & Technology Today = Pharm. Sci. Technol. To. Pharmaceutical Science & Technology Today = Pharm. Sci. Technol. Today Pharmaceutical Stability Testing to Support Global Markets = Biotechnol Pharm Asp Pharmaceutical Stability Testing to Support Global Markets = Biotechnol. Pharm. Asp. Pharmaceutical Stability Testing to Support Global Markets = Biotech Pharm Aspect Pharmaceutical Stability Testing to Support Global Markets = Biotech. Pharm. Aspect. Pharmaceutical statistics = Pharm Stat Pharmaceutical Statistics = Pharm Stat Pharmaceutical Statistics = Pharm. Stat. Pharmaceutical Technology = Pharm. Technol. Pharmaceutisch weekblad = Pharm Weekbl Pharmaceutisch Weekblad = Pharm. Weekbl. Pharmaceutisch Weekblad-scientific Edition = Pharm Weekblad Pharmaceutisch Weekblad-scientific Edition = Pharm. Weekblad. Pharmaceutisch weekblad. Scientific edition = Pharm Weekbl Sci Pharmaceutisch Weekblad. Scientific Edition = Pharm. Weekbl. Sci. Pharmacien de France = Pharm Fr Pharmacochemistry Library = Pharmacochem. Libr. Pharmacochemistry Library = Pharm Libr Pharmacochemistry Library = Pharm. Libr. Pharmaco-complexity: Non-linear Phenomena and Drug Product Development = Outl Pharm Sci Pharmaco-complexity: Non-linear Phenomena and Drug Product Development = Outl. Pharm. Sci. PharmacoEconomics=PharmacoEcon. Pharmacoeconomics = Pharmacoeconomics PharmacoEconomics = Pharmacoeconomics Pharmacoepidemiology and Drug Safety = Pharmacoepidem Dr S Pharmacoepidemiology and Drug Safety = Pharmacoepidem. Dr. S. Pharmacoepidemiology and drug safety = Pharmacoepidemiol Drug Saf Pharmacogenetics and Genomics = Pharmacogenet Genom Pharmacogenetics and Genomics = Pharmacogenet. Genom. Pharmacogenetics and genomics = Pharmacogenet Genomics Pharmacogenetics and Genomics = Pharmacogenet. Genomics Pharmacogenetics=Pharmacogenetics;; Pharmacogenetics = Pharmacogenetics Pharmacogenetics - Tailor-made Pharmacotherapy = Int Congr Ser Pharmacogenetics - Tailor-made Pharmacotherapy = Int. Congr. Ser. Pharmacogenomics in Psychiatry = Adv Biol Psych-karg Pharmacogenomics in Psychiatry = Adv. Biol. Psych-karg. Pharmacogenomics Journal = Pharmacogenomics J Pharmacogenomics Journal = Pharmacogenomics J. Pharmacogenomics = Pharmacogenomics Pharmacogenomic Testing in Current Clinical Practice: Implementation in The Clinical Laboratory = Mol Transl Med Pharmacogenomic Testing in Current Clinical Practice: Implementation in The Clinical Laboratory = Mol. Transl. Med. Pharmacognosy Magazine = Pharmacogn Mag Pharmacognosy Magazine = Pharmacogn. Mag. Pharmacognosy Reviews = Pharmacogn. Rev. Pharmacokinetic Challenges in Drug Discovery = E Schering Res Fdn W Pharmacokinetic Challenges in Drug Discovery = E. Schering. Res. Fdn. W. Pharmacokinetics and Pharmacodynamics = Pharmacokin Pharmacokinetics and Pharmacodynamics = Pharmacokin. Pharmacokinetics : From Research to Clinical Practice = J Pharm Clin-series Pharmacokinetics : From Research to Clinical Practice = J. Pharm. Clin-series. Pharmacokinetics of Selected Antibacterial Agents = Antibiot Chemother Pharmacokinetics of Selected Antibacterial Agents = Antibiot. Chemother. Pharmacological Approaches to The Treatment of Chronic Pain: New Concepts & Critical Issues = Prog Pain Res Manag Pharmacological Approaches to The Treatment of Chronic Pain: New Concepts & Critical Issues = Prog. Pain. Res. Manag. Pharmacological Intervention in Aging and Age-associated Disorders = Ann Ny Acad Sci Pharmacological Intervention in Aging and Age-associated Disorders = Ann. Ny. Acad. Sci. Pharmacological Intervention in Management of Neck Pain Disorders: A Review = Pain Orig Diagn Trea Pharmacological Intervention in Management of Neck Pain Disorders: A Review = Pain Orig. Diagn. Trea. Pharmacological Interventions On Central Cholinergic Mechanisms in Senile Dementia ( Alzheimers Disease ) = Klin Pharm Pharmacological Interventions On Central Cholinergic Mechanisms in Senile Dementia ( Alzheimers Disease ) = Klin. Pharm. Pharmacological Reports = Pharmacol Rep Pharmacological Reports = Pharmacol. Rep. Pharmacological reports : PR = Pharmacol Rep Pharmacological Research Communications = Pharmacol Res Pharmacological Research Communications = Pharmacol. Res. Pharmacological research communications = Pharmacol Res Commun Pharmacological Research Communications = Pharmacol Res Commun Pharmacological Research Communications = Pharmacol. Res. Commun. Pharmacological Research=Pharmacol Res;; Pharmacological Research = Pharmacol Res Pharmacological Research = Pharmacol. Res. Pharmacological research : the official journal of the Italian Pharmacological Society = Pharmacol Res Pharmacological reviews = Pharmacol Rev Pharmacological Reviews=Pharmacol Rev;; Pharmacological Reviews = Pharmacol Rev Pharmacological Reviews = Pharmacol. Rev. Pharmacologist = Pharmacologist Pharmacology and Pharmacokinetics: A Basic Reader = Compet-base Crit Car Pharmacology and Pharmacokinetics: A Basic Reader = Compet-base. Crit. Car. Pharmacology and therapeutics in dentistry = Pharmacol Ther Dent Pharmacology and Therapeutics in Dentistry = Pharmacol. Ther. Dent. Pharmacology and Therapeutics. Part B, General and Systematic Pharmacology = Pharmacol. Ther. [B] Pharmacology and Therapeutics=Pharmacol Ther;; Pharmacology and Therapeutics = Pharmacol. Ther. Pharmacology and The Skin = Pharm Skin Pharmacology and The Skin = Pharm. Skin Pharmacology and Toxicology of Amphetamine and Related Designer Drugs = Nida Res Mg Pharmacology and Toxicology of Amphetamine and Related Designer Drugs = Nida. Res. Mg. Pharmacology and Toxicology=Pharmacol Toxicol;; Pharmacology and Toxicology = Pharmacol. Toxicol. Pharmacology and Vitreoretinal Surgery = Dev Ophthalmol Pharmacology and Vitreoretinal Surgery = Dev. Ophthalmol. Pharmacology Biochemistry and Behavior = Pharmacol Biochem Be Pharmacology Biochemistry and Behavior = Pharmacol. Biochem. Be. Pharmacology, biochemistry, and behavior = Pharmacol Biochem Behav Pharmacology Biochemistry and Behavior = Pharmacol. Biochem. Behav. Pharmacology, Biochemistry and Behavior=Pharmacol Biochem Behav;; Pharmacology, Biochemistry and Behavior = Pharmacol. Biochem. Behav. Pharmacology, Biochemistry and Behavior = Pharmacol., Biochem. Behav. Pharmacology for physicians = Pharmacol Physicians Pharmacology for Physicians = Pharmacol. Physicians Pharmacology of 5-ht6 Receptors, Pt 1 = Int Rev Neurobiol Pharmacology of 5-ht6 Receptors, Pt 1 = Int. Rev. Neurobiol. Pharmacology of 5-ht6 Receptors, Pt Ii = Int Rev Neurobiol Pharmacology of 5-ht6 Receptors, Pt Ii = Int. Rev. Neurobiol. Pharmacology of Aging Processes: Methods of Assessment and Potential Interventions = Ann Ny Acad Sci Pharmacology of Aging Processes: Methods of Assessment and Potential Interventions = Ann. Ny. Acad. Sci. Pharmacology of Cell Differentiation = Int Congr Ser Pharmacology of Cell Differentiation = Int. Congr. Ser. Pharmacology of Neurogenesis and Neuroenhancement = Int Rev Neurobiol Pharmacology of Neurogenesis and Neuroenhancement = Int. Rev. Neurobiol. Pharmacology of Sexual Function and Dysfunction = Int Congr Ser Pharmacology of Sexual Function and Dysfunction = Int. Congr. Ser. Pharmacology=Pharmacology;; Pharmacology = Pharmacology Pharmacology Research Safety Testing and Regulation = Pharm Res Saf Test Pharmacology Research Safety Testing and Regulation = Pharm. Res. Saf. Test. Pharmacology & Therapeutics Part A: Chemotherapy, Toxicology and Metabolic Inhibitors = Pharmacol. Ther. Part A Pharmacology & Therapeutics Part A-chemotherapy Toxicology and Metabolic Inhibitors = Pharmacol Ther Pt A Pharmacology & Therapeutics Part A-chemotherapy Toxicology and Metabolic Inhibitors = Pharmacol. Ther. Pt. A. Pharmacology & Therapeutics Part B: General and Systemic Pharmacology = Pharmacol. Ther. Part B Pharmacology & therapeutics. Part B: General & systematic pharmacology = Pharmacol Ther [B] Pharmacology & Therapeutics Part B-general & Systematic Pharmacology = Pharmacol Ther Pt B Pharmacology & Therapeutics Part B-general & Systematic Pharmacology = Pharmacol. Ther. Pt. B. Pharmacology & Therapeutics Part C: Clinical Pharmacology and Therapeutics = Pharmacol. Ther. Part C Pharmacology & Therapeutics Part C-clinical Pharmacology and Therapeutics = Pharmacol Ther Pt C Pharmacology & Therapeutics Part C-clinical Pharmacology and Therapeutics = Pharmacol. Ther. Pt. C. Pharmacology & therapeutics = Pharmacol Ther Pharmacology & Therapeutics = Pharmacol. Ther. Pharmacology & Therapeutics = Pharmacol Therapeut Pharmacology & Therapeutics = Pharmacol. Therapeut. Pharmacology & Toxicology (Copenhagen) = Pharmacol. Toxicol. (Copenhagen) Pharmacology & toxicology = Pharmacol Toxicol Pharmacology & Toxicology = Pharmacol Toxicol Pharmacology & Toxicology = Pharmacol. Toxicol. Pharmacopeial Forum = Pharmacopeial Forum Pharmacopsychiatria = Pharmacopsychiatria Pharmacopsychiatry=Pharmacopsychiatry;; Pharmacopsychiatry = Pharmacopsychiatry Pharmacotherapy=Pharmacotherapy;; Pharmacotherapy = Pharmacotherapy Pharmacy and Pharmacology Communications = Pharm. Pharmacol. Commun. Pharmacy history Australia : the newsletter of the Australian Academy of the History of Pharmacy = Pharm Hist Aust Pharmacy in history = Pharm Hist Pharmacy in history = PhH Pharmacy International = Pharm Int Pharmacy International = Pharm. Int. Pharmacy Management Combined with the American Journal of Pharmacy = Pharm. Manage. Comb. Am. J. Pharm. Pharmacy management combined with the American journal of pharmacy : PM = Pharm Manage Comb Am J Pharm Pharmacy Management = Pharm Manage Pharmacy Management = Pharm. Manage. Pharmacy practice management quarterly = Pharm Pract Manag Q Pharmacy Practice Management Quarterly = Pharm. Pract. Manag. Q. Pharmacy times = Pharm Times Pharmacy Times = Pharm. Times Pharmacy update = Pharm Update Pharmacy World and Science=Pharm World Sci;; Pharmacy World and Science = Pharm. World Sci. Pharmacy World & Science = Pharm World Sci Pharmacy World & Science = Pharm. World Sci. Pharmacy world & science : PWS = Pharm World Sci Pharmakopsychiatrie Neuro-Psychopharmakologie = Pharmakopsychiatr. Neuropsychopharmakol. Pharmakopsychiatrie, Neuro-Psychopharmakologie = Pharmakopsychiatr Neuropsychopharmakol Pharmakopsychiatrie Neuro-psychopharmakologie = Pharmakopsych Neuro Pharmakopsychiatrie Neuro-psychopharmakologie = Pharmakopsych. Neuro. Pharmakotherapia = Pharmakotherapia Pharmatherapeutica = Pharmatherapeutica Pharmazeutische Industrie = Pharm Ind Pharmazeutische Industrie = Pharm. Ind. Pharmazeutische Praxis-beitrage Zur Zeitschrift Die Pharmazie = Pharm Prax-beitr Z P Pharmazeutische Praxis-beitrage Zur Zeitschrift Die Pharmazie = Pharm. Prax-beitr. Z. P. Pharmazeutische Praxis = Pharm Prax Pharmazeutische Praxis = Pharm. Prax. Pharmazeutische Rundschau = Pharm Rundsch Pharmazeutische Zentralhalle fur Deutschland = Pharm Zentralhalle Dtschl Pharmazeutische Zentralhalle fur Deutschland = Pharm. Zentralhalle Dtschl. Pharmaziehistorische Bibliographie : PhB = Pharmaziehist Bibliogr Pharmaziehistorische Forschungen = Pharmaziehist Forsch Pharmazie in unserer Zeit = Pharm Unserer Zeit Pharmazie in unserer Zeit = Pharm. Unserer Zeit Pharmazie in Unserer Zeit = Pharm. Unserer Zeit Pharmazie In Unserer Zeit=Pharm Unserer Zeit;; Pharmazie=Pharmazie;; Pharmazie = Pharmazie Pharmeuropa Bio = Pharmeuropa Bio Pharmeuropa bio / the Biological Standardisation Programme, EDQM = Pharmeuropa Bio Pharmeuropa scientific notes = Pharmeur Sci Notes Pharmeuropa. Special issue biologicals = Pharmeuropa Spec Issue Biol Pharmindex = Pharmindex P-harmonic Equation and Recent Advances in Analysis = Contemp Math P-harmonic Equation and Recent Advances in Analysis = Contemp. Math. Pharos. Journal of the Netherlands Institute at Athens = Pharos Pharos of Alpha Omega Alpha Honor Medical Society=Pharos;; Pharos of Alpha Omega Alpha Honor Medical Society = Pharos Phase Behavior of Polymer Blends = Adv Polym Sci Phase Behavior of Polymer Blends = Adv. Polym. Sci. Phase Change With Convection: Modelling and Validation = Cism Cour L Phase Change With Convection: Modelling and Validation = Cism. Cour. L. Phase Change With Convection: Modelling and Validation = Cism Courses Lect Phase Change With Convection: Modelling and Validation = Cism. Courses. Lect. Phase Contrast and Differential Interference Contrast Imaging Techniques and Applications = P Soc Photo-opt Ins Phase Contrast and Differential Interference Contrast Imaging Techniques and Applications = P. Soc. Photo-opt. Ins. Phased Array Antennas With Optimized Element Patterns = Artech Hse Antenn Pr Phased Array Antennas With Optimized Element Patterns = Artech. Hse. Antenn. Pr. Phase Formation and Modification By Beam-solid Interactions = Mater Res Soc Symp P Phase Formation and Modification By Beam-solid Interactions = Mater. Res. Soc. Symp. P. Phase Ii Conjugation Enzymes and Transport Systems = Method Enzymol Phase Ii Conjugation Enzymes and Transport Systems = Method. Enzymol. Phase-interface Phenomena in Multiphase Flow = P Int C Hea Phase-interface Phenomena in Multiphase Flow = P. Int. C. Hea. Phase Mixture Models for The Properties of Nanoceramics = Nanotechnol Sci Tech Phase Mixture Models for The Properties of Nanoceramics = Nanotechnol. Sci. Tech. Phase-separated Interpenetrating Polymer Networks = Adv Polym Sci Phase-separated Interpenetrating Polymer Networks = Adv. Polym. Sci. Phase/state Transitions in Foods = Ift Bas Sym Phase/state Transitions in Foods = Ift. Bas. Sym. Phase Transformation Kinetics in Thin Films = Mater Res Soc Symp P Phase Transformation Kinetics in Thin Films = Mater. Res. Soc. Symp. P. Phase Transformations and Systems Driven Far From Equilibrium = Mater Res Soc Symp P Phase Transformations and Systems Driven Far From Equilibrium = Mater. Res. Soc. Symp. P. Phase Transformations in Thin Films - Thermodynamics and Kinetics = Mater Res Soc Symp P Phase Transformations in Thin Films - Thermodynamics and Kinetics = Mater. Res. Soc. Symp. P. Phase Transitions and Relaxation in Systems With Competing Energy Scales = Nato Adv Sci Inst Se Phase Transitions and Relaxation in Systems With Competing Energy Scales = Nato. Adv. Sci. Inst. Se. Phase Transitions and Self-organization in Electronic and Molecular Networks = Fundmat Res Phase Transitions and Self-organization in Electronic and Molecular Networks = Fundmat. Res. Phase Transitions in Liquid Crystals = Nato Adv Sci I B-phy Phase Transitions in Liquid Crystals = Nato. Adv. Sci. I. B-phy. Phase Transitions in Soft Condensed Matter = Nato Adv Sci I B-phy Phase Transitions in Soft Condensed Matter = Nato. Adv. Sci. I. B-phy. Phase Transitions in Surface Films 2 = Nato Adv Sci I B-phy Phase Transitions in Surface Films 2 = Nato. Adv. Sci. I. B-phy. Phase Transitions = Phase Transit Phase Transitions = Phase Transit. Phase Transitions = Phase Transitions Phasic Events and Dynamic Organization of Sleep = Lers Monogr Phasic Events and Dynamic Organization of Sleep = Lers. Monogr. PHC4 FYI / Pennsylvania Health Care Cost Containment Council = PHC4 FYI Phenolic Compounds in Food and Their Effects On Health I = Acs Sym Ser Phenolic Compounds in Food and Their Effects On Health I = Acs. Sym. Ser. Phenolic Compounds in Food and Their Effects On Health Ii = Acs Sym Ser Phenolic Compounds in Food and Their Effects On Health Ii = Acs. Sym. Ser. Phenolic Metabolism in Plants = Recent Adv Phytochem Phenolic Metabolism in Plants = Recent. Adv. Phytochem. Phenomena in Ionized Gases = Aip Conf Proc Phenomena in Ionized Gases = Aip. Conf. Proc. Phenomenologie De La Religion Et Hermeneutique Theologique Dans La Pensee Du Jeune Heidegger = Phaenomenologica Phenomenologie De La Religion Et Hermeneutique Theologique Dans La Pensee Du Jeune Heidegger = Phaenomenologica. Phenomenology and Existentialism in The Twentieth Century, Book Three = Anal Hus Phenomenology and Existentialism in The Twentieth Century, Book Three = Anal. Hus. Phenomenology and Existentialism in The Twentieth Century, Book Two = Anal Hus Phenomenology and Existentialism in The Twentieth Century, Book Two = Anal. Hus. Phenomenology and Existentialism in The Twentieth Century: New Waves Philosophical Inspirations, Book One = Anal Hus Phenomenology and Existentialism in The Twentieth Century: New Waves Philosophical Inspirations, Book One = Anal. Hus. Phenomenology and Mathematics = Phaenomenol Phenomenology and Mathematics = Phaenomenol. Phenomenology and Mathematics = Phaenomenologica Phenomenology and Mathematics = Phaenomenologica. Phenomenology and Psychological Science : Historical and Philosophical Perspectives = Hist Philos Psychol Phenomenology and Psychological Science : Historical and Philosophical Perspectives = Hist. Philos. Psychol. Phenomenology and The Cognitive Sciences = Phenomenol Cogn Sci Phenomenology and The Cognitive Sciences = Phenomenol. Cogn. Sci. Phenomenology and The Non-human Animal: At The Limits of Experience = Contrib Phenomenol Phenomenology and The Non-human Animal: At The Limits of Experience = Contrib. Phenomenol. Phenomenology of Life From The Animal Soul to The Human Mind, Book I: in Search of Experience = Anal Hus Yb Phenomenology of Life From The Animal Soul to The Human Mind, Book I: in Search of Experience = Anal. Hus. Yb. Phenomenology of Life From The Animal Soul to The Human Mind, Book Ii: The Human Soul in The Creative Transformation of The Mind = Anal Hus Yb Phenomenology of Life From The Animal Soul to The Human Mind, Book Ii: The Human Soul in The Creative Transformation of The Mind = Anal. Hus. Yb. Phenomenology of Life. Meeting The Challenges of The Present-day World = Anal Hus Yb Phenomenology of Life. Meeting The Challenges of The Present-day World = Anal. Hus. Yb. Phenomenology of Values and Valuing = Contr Phenomenol Phenomenology of Values and Valuing = Contr. Phenomenol. Pheochromocytoma = Ann Ny Acad Sci Pheochromocytoma = Ann. Ny. Acad. Sci. Pheochromocytoma = Front Horm Res Pheochromocytoma = Front. Horm. Res. Pheromones: Theories, Types and Uses = Biochem Res Trends Pheromones: Theories, Types and Uses = Biochem. Res. Trends. Phi Delta Kappan = Phi Delta Kappan Phi-features and The Modular Architecture of Language = Stud Nat Lang Lingui Phi-features and The Modular Architecture of Language = Stud. Nat. Lang. Lingui. Phi in The Sky: The Quest for Cosmological Scalar Fields = Aip Conf Proc Phi in The Sky: The Quest for Cosmological Scalar Fields = Aip. Conf. Proc. Phi Kappa Phi journal = Phi Kappa Phi J Philadelphia medicine = Phila Med Philadelphia's Black Mafia: A Social and Political History = Stud Organize Crime Philadelphia's Black Mafia: A Social and Political History = Stud. Organize. Crime. Philanthropic and Nonprofit Studies = Philan Nonprofit S Philanthropic and Nonprofit Studies = Philan. Nonprofit S. Philanthropy, Patronage, and Civil Society: Experiences From Germany, Great Britain, and North America = Philan Nonprofit S Philanthropy, Patronage, and Civil Society: Experiences From Germany, Great Britain, and North America = Philan. Nonprofit. S. Philip K. Dick: Canonical Writer of The Digital Age = Stud Major Lit Autho Philip K. Dick: Canonical Writer of The Digital Age = Stud. Major. Lit. Autho. Philippine Agricultural Scientist = Philipp Agric Sci Philippine Agricultural Scientist = Philipp. Agric. Sci. Philippine development = Philipp Dev Philippine Economic Journal=Philippine Econ. J. Philippine geographical journal = Philipp Geogr J Philippine Journal of Business and Economics=Philippine J. Bus. Econ. Philippine Journal of Business and Finance=Philippine J. Bus. Finance Philippine journal of cancer = Philipp J Cancer Philippine journal of cardiology = Philipp J Cardiol Philippine Journal of Crop Science = Philipp J Crop Sci Philippine Journal of Crop Science = Philipp. J. Crop Sci. Philippine journal of internal medicine = Philipp J Intern Med Philippine Journal of Internal Medicine = Philipp J Intern Med Philippine Journal of Internal Medicine = Philipp. J. Intern. Med. Philippine journal of mental health = Philipp J Ment Health Philippine Journal of Nursing = Philipp. J. Nurs. Philippine journal of nutrition = Philipp J Nutr Philippine journal of obstetrics & gynecology : official publication, Philippine Obstetrical and Gynecological Society = Philipp J Obstet Gynecol Philippine journal of ophthalmology and otolaryngology = Philipp J Ophthalmol Otolaryngol Philippine journal of ophthalmology = Philipp J Ophthalmol Philippine journal of public administration = Philipp J Public Adm Philippine journal of surgery and surgical specialties = Philipp J Surg Surg Spec Philippine Journal of Surgery and Surgical Specialties = Philipp. J. Surg. Surg. Spec. Philippine journal of surgery = Philipp J Surg Philippine journal of surgical specialties = Philipp J Surg Spec Philippine Journal of Veterinary Medicine = Philipp J Vet Med Philippine Journal of Veterinary Medicine = Philipp. J. Vet. Med. Philippine law journal = Philipp Law J Philippine Political Science Journal = Philipp Polit Sci J Philippine Political Science Journal = Philipp. Polit. Sci. J. Philippine population journal = Philipp Popul J Philippine Population Newsletter = Philipp Popul Newsl Philippine quarterly of culture and society = Philipp Q Cult Soc Philippine Review of Economics and Business=Philippine Rev. Econ. Bus. Philippine Review of Economics=Philippine Rev. Econ. Philippines: Mobilities, Identities, Globalization = Glob Realities Philippines: Mobilities, Identities, Globalization = Glob. Realities. Philippine social sciences and humanities review = Philipp Soc Sci Humanit Rev Philippine sociological review = Philipp Sociol Rev Philippine Sociological Review = Philipp Sociol Rev Philippine Sociological Review = Philipp. Sociol. Rev. Philippine studies = Philipp Stud Philips Journal of Research = Philips J. Res. Philips Journal of Research = Philips J Res Philips Journal of Research = Philips J. Res. Philips Research Book Series = Philips Res Book Ser Philips Research Book Series = Philips Res. Book Ser. Philips Research Reports = Philips Res Rep Philips Research Reports = Philips Res. Rep. Philips Technical Review = Philips Tech Rev Philips Technical Review = Philips Tech. Rev. Philips Telecommunication Review = Philips Telecomm Rev Philips Telecommunication Review = Philips Telecomm. Rev. Phillip Journal fur restaurative Zahnmedizin = Phillip J Restaur Zahnmed Phillip Journal fur Restaurative Zahnmedizin = Phillip J. Restaur. Zahnmed. Phillip Journal = Phillip J Phillip Journal = Phillip J. Philobiblon = Philobiblon Philologia classica: recueil interuniversitaire périodique = PhilClass Philological Papers, Vol 38 = W Va U Phil Philological Papers, Vol 38 = W. Va. U. Phil. Philological Papers, Vol 39 = W Va U Phil Philological Papers, Vol 39 = W. Va. U. Phil. Philological Papers, Vol 40 = W Va U Phil Philological Papers, Vol 40 = W. Va. U. Phil. Philological Quarterly = Philological Quart Philological Quarterly = Philological Quart. Philological Quarterly = PhQ Philologie Und Philosophie = Beih Editio Philologie Und Philosophie = Beih. Editio. Philologus = Philologus Philologus: Zeitschrift für antike Literatur und ihre Rezeption = Philologus Philologus. Zeitschrift für das klassische Altertum = Philologus Philology and Philosophy = Beih Editio Philology and Philosophy = Beih. Editio. Philomela: Metamorphosen Eines Mythos in Der Deutschen Und Franzosischen Literatur Des Mittelalters = Trends Mediev Philol Philomela: Metamorphosen Eines Mythos in Der Deutschen Und Franzosischen Literatur Des Mittelalters = Trends. Mediev. Philol. Philosophers in Depth = Philos Depth Philosophers in Depth = Philos. Depth Philosophers On Film = Philos Film Philosophers On Film = Philos. Film Philosophia Africana = Philos Afr Philosophia Africana = Philos. Afr. Philosophia Antiqua = Philos. Antiq. Philosophia Antiqua = Philos Antiq Philosophia Antiqua = Philos. Antiq. Philosophia-international Journal of Philosophy = Philos-int J Philos Philosophia-international Journal of Philosophy = Philos-int. J. Philos. Philosophia Mathematica = Philos Math Philosophia Mathematica = Philos. Math. Philosophia Mathematica = Philos. Math. (3) Philosophia naturalis = Philos Nat Philosophia Naturalis = Philos. Natur. Philosophia naturalis = PhN Philosophia = Philosophia Philosophia = Philosophia (Mendoza) Philosophical Basics of Ecology and Economy = Routl Stud Ecol Econ Philosophical Basics of Ecology and Economy = Routl. Stud. Ecol. Econ. Philosophical Books = Philos Book Philosophical Books = Philos. Book. Philosophical Consequences of Quantum Theory = St Sci Hum Philosophical Consequences of Quantum Theory = St. Sci. Hum. Philosophical Dimensions in Mathematics Education = Math Educ Lib Philosophical Dimensions in Mathematics Education = Math. Educ. Lib. Philosophical Dimensions of Logic and Science = Synth Libr Philosophical Dimensions of Logic and Science = Synth. Libr. Philosophical Explorations = Philos Explor Philosophical Explorations = Philos. Explor. Philosophical Forum = Philos Forum Philosophical Forum = Philos. Forum Philosophical History of German Sociology = Routl Stud Crit Real Philosophical History of German Sociology = Routl. Stud. Crit. Real. Philosophical Insights About Modern Science = Sci Revolut Philosophical Insights About Modern Science = Sci. Revolut. Philosophical Investigation of Rape = Routl Res Gend Soc Philosophical Investigation of Rape = Routl. Res. Gend. Soc. Philosophical Investigations = Philos Invest Philosophical Investigations = Philos. Invest. Philosophical Journal = Philos J Philosophical Journal = Philos. J. Philosophical Knowledge: Its Possibility and Scope = Grazer Philos Stud Philosophical Knowledge: Its Possibility and Scope = Grazer. Philos. Stud. Philosophical Knowledge: Its Possibility and Scope = Graz Phil S Philosophical Knowledge: Its Possibility and Scope = Graz. Phil. S. Philosophical Lectures On Probability: Collected, Edited and Annotated = Synth Libr Philosophical Lectures On Probability: Collected, Edited and Annotated = Synth. Libr. Philosophical Magazine A = Philos. Mag. A Philosophical Magazine A: Physics of Condensed Matter: Defects and Mechanical Properties = Philos. Mag. A Philosophical Magazine A-physics of Condensed Matter Structure Defects and Mechanical Properties = Philos Mag A Philosophical Magazine A-physics of Condensed Matter Structure Defects and Mechanical Properties = Philos. Mag. A. Philosophical Magazine B = Philos. Mag. B Philosophical Magazine B-physics of Condensed Matter Statistical Mechanics Electronic Optical and Magnetic Properties = Philos Mag B Philosophical Magazine B-physics of Condensed Matter Statistical Mechanics Electronic Optical and Magnetic Properties = Philos. Mag. B. Philosophical Magazine B: Physics of Condensed Matter: Statistical Mechanics, Electronic, Optical and Magnetic Properties = Philos. Mag. B Philosophical Magazine B: Physics of Condensed Matter: Structural, Electronic, Optical and Magnetic Properties = Philos. Mag. B Philosophical Magazine Letters = Phil Mag Lett Philosophical Magazine Letters = Phil. Mag. Lett. Philosophical Magazine Letters = Philos. Mag. Lett. Philosophical Magazine = Philos Mag Philosophical Magazine = Philos. Mag. Philosophical Myths of The Fall = Princ Monogr Philos Philosophical Myths of The Fall = Princ. Monogr. Philos. Philosophical Papers = Philos Pap Philosophical Papers = Philos. Pap. Philosophical Perspectives On Lifelong Learning = Lifelong Learn Book Philosophical Perspectives On Lifelong Learning = Lifelong Learn. Book. Philosophical Perspectives = Philos. Perspect. Philosophical Perspectives = Philos Perspect Philosophical Perspectives = Philos. Perspect. Philosophical Problems of The Internal and External Worlds = Pitt Konst S Philos Philosophical Problems of The Internal and External Worlds = Pitt. Konst. S. Philos. Philosophical Problems Today = Philos Probl Today Philosophical Problems Today = Philos. Probl. Today Philosophical Problems Today: World and Worldhood = Philos Probl Today Philosophical Problems Today: World and Worldhood = Philos. Probl. Today. Philosophical Psychology = Philos Psychol Philosophical Psychology = Philos. Psychol. Philosophical Psychopathology-disorders in Mind = Philos Psychopathol Philosophical Psychopathology-disorders in Mind = Philos. Psychopathol. Philosophical Publications = Beih Editio Philosophical Publications = Beih. Editio. Philosophical Quarterly = Philos Quart Philosophical Quarterly = Philos. Quart. Philosophical Reflections On Disability = Philos Med Philosophical Reflections On Disability = Philos. Med. Philosophical Review = Philos Rev Philosophical Review = Philos. Rev. Philosophical Review = PhR Philosophical Studies in Contemporary Culture = Philos Stud Contemp Philosophical Studies in Contemporary Culture = Philos. Stud. Contemp. Philosophical studies = Philos Stud Philosophical Studies = Philos. Stud. Philosophical Studies = Philos Stud Philosophical Studies = Philos. Stud. Philosophical Studies = PhStud Philosophical Studies Series in Philosophy = Phil Stud S Philosophical Studies Series in Philosophy = Phil. Stud. S. Philosophical Studies Series = Philos Stud Ser Philosophical Studies Series = Philos. Stud. Ser. Philosophical Theology: Reason and Theological Doctrine = Amer Cath Phil Assoc Philosophical Theology: Reason and Theological Doctrine = Amer. Cath. Phil. Assoc. Philosophical Topics = Philos Topics Philosophical Topics = Philos. Topics Philosophical Transactions of The Royal Society A-mathematical Physical and Engineering Sciences = Philos T Roy Soc A Philosophical Transactions of The Royal Society A-mathematical Physical and Engineering Sciences = Philos. T. Roy. Soc. A. Philosophical Transactions of The Royal Society A-mathematical Physical and Engineering Sciences = Philos T R Soc A Philosophical Transactions of The Royal Society A-mathematical Physical and Engineering Sciences = Philos. T. R. Soc. A. Philosophical Transactions of The Royal Society B-biological Sciences = Philos T Roy Soc B Philosophical Transactions of The Royal Society B-biological Sciences = Philos. T. Roy. Soc. B. Philosophical Transactions of The Royal Society B-biological Sciences = Philos T R Soc B Philosophical Transactions of The Royal Society B-biological Sciences = Philos. T. R. Soc. B. Philosophical Transactions of the Royal Society of London = Philos. Trans. Roy. Soc. London Philosophical Transactions of the Royal Society of London = Philos. Trans. Roy. Soc. London Ser. A Philosophical Transactions of the Royal Society of London = Philos. Trans. R. Soc. Lond. Philosophical Transactions of The Royal Society of London Series A-containing Papers of A Mathematical Or Physical Character = Philos T R Soc Lond Philosophical Transactions of The Royal Society of London Series A-containing Papers of A Mathematical Or Physical Character = Philos. T. R. Soc. Lond. Philosophical transactions of the Royal Society of London. Series A: Mathematical and physical sciences = Philos Trans R Soc Lond A Philosophical Transactions of The Royal Society of London Series A-mathematical and Physical Sciences = Philos Tr R Soc S-a Philosophical Transactions of The Royal Society of London Series A-mathematical and Physical Sciences = Philos. Tr. R. Soc. S-a. Philosophical Transactions of The Royal Society of London Series A-mathematical and Physical Sciences = Philos T R Soc S-a Philosophical Transactions of The Royal Society of London Series A-mathematical and Physical Sciences = Philos. T. R. Soc. S-a. Philosophical Transactions of the Royal Society of London, Series A: Mathematical, Physical and Engineering Sciences = Philos. Trans. R. Soc. London, Ser. A Philosophical Transactions of The Royal Society of London Series A-mathematical Physical and Engineering Sciences = Philos T Roy Soc A Philosophical Transactions of The Royal Society of London Series A-mathematical Physical and Engineering Sciences = Philos. T. Roy. Soc. A. Philosophical Transactions of the Royal Society of London, Series A = Philos. Trans. R. Soc. London, Ser. A Philosophical transactions of the Royal Society of London. Series B, Biological sciences = Philos Trans R Soc Lond B Biol Sci Philosophical Transactions of the Royal Society of London. Series B, Biological Sciences = Philos. Trans. R. Soc. Lond. B. Biol. Sci. Philosophical Transactions of The Royal Society Of London. Series B: Biological Sciences=Philos Trans R Soc Lond B Biol Sci;; Philosophical Transactions of the Royal Society of London, Series B: Biological Sciences = Philos. Trans. R. Soc. London, Ser. B Philosophical Transactions of The Royal Society of London Series B-biological Sciences = Philos T Roy Soc B Philosophical Transactions of The Royal Society of London Series B-biological Sciences = Philos. T. Roy. Soc. B. Philosophical Transactions of The Royal Society of London Series B-containing Papers of A Biological Character = Philos T R Soc Lon B Philosophical Transactions of The Royal Society of London Series B-containing Papers of A Biological Character = Philos. T. R. Soc. Lon. B. Philosophical Transactions of the Royal Society of London, Series B = Philos. Trans. R. Soc. London, Ser. B Philosophical transactions. Physical sciences and engineering = Philos Trans Phys Sci Eng Philosophical transactions. Series A, Mathematical, physical, and engineering sciences = Philos Transact A Math Phys Eng Sci Philosophica = Philosophic Philosophica = Philosophic. Philosophica = Philosophica Philosophica-toulouse = Philos Toulouse Philosophica-toulouse = Philos. Toulouse. Philosophic exchange = Philos Exch Philosophic research and analysis = Philos Res Analysis Philosophie Der Epochenschwelle: Augustin Zwischen Antike Und Mittelalter = Quellen Stud Philos Philosophie Der Epochenschwelle: Augustin Zwischen Antike Und Mittelalter = Quellen. Stud. Philos. Philosophie Der Schrift = Reihe Ger Linguist Philosophie Der Schrift = Reihe. Ger. Linguist. Philosophiegeschichte = Grundthemen Philos Philosophiegeschichte = Grundthemen. Philos. Philosophies = Philosophies Philosophische Abhandlungen = Philos. Abhandlungen Philosophische Bibliothek = Philos. Bibliothek Philosophischer Literaturanzeiger = PhLA Philosophische Rundschau: eine Zeitschrift für philosophische Kritik = PhRdschau Philosophische Rundschau = Philos Rundsch Philosophische Rundschau = Philos. Rundsch. Philosophisches Jahrbuch = Philos Jahrb Philosophisches Jahrbuch = Philos. Jahrb. Philosophisches Jahrbuch = PhJ Philosophy Against Empire = Radic Philos Today Philosophy Against Empire = Radic. Philos. Today. Philosophy and Art in The Islamic World = Orient Lovan Anal Philosophy and Art in The Islamic World = Orient. Lovan. Anal. Philosophy and Democracy in Intercultural Perspective = Stud Intercult Phil Philosophy and Democracy in Intercultural Perspective = Stud. Intercult. Phil. Philosophy and Education = Philos Educ-neth Philosophy and Education = Philos. Educ-neth. Philosophy and Engineering: An Emerging Agenda = Philos Eng Technol Philosophy and Engineering: An Emerging Agenda = Philos. Eng. Technol. Philosophy and History-german Studies Section 1 = Philos Hist Philosophy and History-german Studies Section 1 = Philos. Hist. Philosophy and History = Philos Hist Philosophy and History = Philos. Hist. Philosophy and Intercultural Understanding = P Am Cath Philos Ass Philosophy and Intercultural Understanding = P. Am. Cath. Philos. Ass. Philosophy and Literature = Philos Literature Philosophy and Literature = Philos. Literature Philosophy and Literature = Ph&Lit Philosophy and Medicine = Philos Med Philosophy and Medicine = Philos. Med. Philosophy and phenomenological research = Philos Phenomenol Res Philosophy and Phenomenological Research = Philos Phenomen Res Philosophy and Phenomenological Research = Philos. Phenomen. Res. Philosophy and Phenomenological Research = Ph&PhenR Philosophy and Pluralism = Roy I Ph S Philosophy and Pluralism = Roy. I. Ph. S. Philosophy and Poetry = Midwest Stud Philos Philosophy and Poetry = Midwest. Stud. Philos. Philosophy and Public Affairs = Roy I Ph S Philosophy and Public Affairs = Roy. I. Ph. S. Philosophy and Religion : A Comparative Yearbook = Philos Rel Philosophy and Religion : A Comparative Yearbook = Philos. Rel. Philosophy and Religion in German Idealism = Stud Ger Ideal Philosophy and Religion in German Idealism = Stud. Ger. Ideal. Philosophy and Revolutions in Genetics-deep Science and Deep Technology = Renew Philos Philosophy and Revolutions in Genetics-deep Science and Deep Technology = Renew. Philos. Philosophy and Rhetoric = Philos Rhetoric Philosophy and Rhetoric = Philos. Rhetoric Philosophy and Rhetoric = Ph&Rh Philosophy and Technology = Philos Tech Philosophy and Technology = Philos. Tech. Philosophy and Technology = Roy I Ph S Philosophy and Technology = Roy. I. Ph. S. Philosophy and The Empirical = Midwest Stud Philos Philosophy and The Empirical = Midwest. Stud. Philos. Philosophy and The Grammar of Religious Belief = Claremon Stud Philos Philosophy and The Grammar of Religious Belief = Claremon. Stud. Philos. Philosophy and The Vision of Language = Rout Stud Tw Cen Phi Philosophy and The Vision of Language = Rout. Stud. Tw. Cen. Phi. Philosophy As Therapeia = Roy I Philos Suppl Philosophy As Therapeia = Roy. I. Philos. Suppl. Philosophy At The Boundary of Reason = P Am Cath Philos Ass Philosophy At The Boundary of Reason = P. Am. Cath. Philos. Ass. Philosophy Communication = Philos Commun Philosophy Communication = Philos. Commun. Philosophy East & West = Philos East West Philosophy East & West = Philos. East West Philosophy, ethics, and humanities in medicine : PEHM = Philos Ethics Humanit Med Philosophy Forum = Philosophy Forum Philosophy in context = Philos Context Philosophy, Literature, and Culture = Phi Lit Cul Philosophy, Literature, and Culture = Phi. Lit. Cul. Philosophy (London, England) = Philosophy Philosophy of Biology: A Contemporary Introduction = Routl Contemp Intro Philosophy of Biology: A Contemporary Introduction = Routl. Contemp. Intro. Philosophy of Education 2003 = Phil Educ Philosophy of Education 2003 = Phil. Educ. Philosophy of Education 2004 = Phil Educ Philosophy of Education 2004 = Phil. Educ. Philosophy of Education 2005 = Phil Educ Philosophy of Education 2005 = Phil. Educ. Philosophy of Education in The Era of Globalization = Rout Int Stud Philos Philosophy of Education in The Era of Globalization = Rout. Int. Stud. Philos. Philosophy of Education(proceedings) = Phil Educ Philosophy of Education(proceedings) = Phil. Educ. Philosophy of Engineering and Technology = Philos Eng Technol Philosophy of Engineering and Technology = Philos. Eng. Technol. Philosophy of Language: A Contemporary Introduction, Second Edition = Routl Contemp Intro Philosophy of Language: A Contemporary Introduction, Second Edition = Routl. Contemp. Intro. Philosophy of Language = Princ Found Cont Ph Philosophy of Language = Princ. Found. Cont. Ph. Philosophy of Mathematics: A Contemporary Introduction to The World of Proofs and Pictures, Second Edition = Routl Contemp Intro Philosophy of Mathematics: A Contemporary Introduction to The World of Proofs and Pictures, Second Edition = Routl. Contemp. Intro. Philosophy of Michael Dummett = Synth Libr Philosophy of Michael Dummett = Synth. Libr. Philosophy of Personal Identity and Multiple Personality = Rout Stud Contemp Ph Philosophy of Personal Identity and Multiple Personality = Rout. Stud. Contemp. Ph. Philosophy of Psychology: Contemporary Readings = Routl Contemp Read P Philosophy of Psychology: Contemporary Readings = Routl. Contemp. Read. P. Philosophy of Religion = Contemp Philos New S Philosophy of Religion = Contemp. Philos. New. S. Philosophy of Science in A European Perspective = Philo Sci Eur Persp Philosophy of Science in A European Perspective = Philo. Sci. Eur. Persp. Philosophy of science = Philos Sci Philosophy of Science = Philos. Sci. Philosophy of Science = Philos Sci Philosophy of Science = Philos. Sci. Philosophy of Science = Roy I Philos Suppl Philosophy of Science = Roy. I. Philos. Suppl. Philosophy of Science = Roy I Ph S Philosophy of Science = Roy. I. Ph. S. Philosophy of Syntax: Foundational Topics = Trends Log Stud Log Philosophy of Syntax: Foundational Topics = Trends. Log. Stud. Log. Philosophy of the social sciences = Philos Soc Sci Philosophy of The Social Sciences = Philos Soc Sci Philosophy of The Social Sciences = Philos. Soc. Sci. Philosophy = Philosophy Philosophy & public affairs = Philos Public Aff Philosophy & Public Affairs = Philos Public Aff Philosophy & Public Affairs = Philos. Public Aff. Philosophy & public policy quarterly / the Institute for Philosophy and Public Policy, School of Public Affairs, University of Maryland = Philos Public Policy Q Philosophy, Religion and The Spiritual Life = Roy Inst Ph Philosophy, Religion and The Spiritual Life = Roy. Inst. Ph. Philosophy research archives (Bowling Green, Ohio : 1982) = Philos Res Arch Philosophy, Science, Education and Culture = Sci Technol Educ Lib Philosophy, Science, Education and Culture = Sci. Technol. Educ. Lib. Philosophy & Social Criticism = Philos Soc Crit Philosophy & Social Criticism = Philos. Soc. Crit. Philosophy, theology = Philos Theol Philosophy Today = Philos Today Philosophy Today = Philos. Today Phlebologie-annales Vasculaires = Phlebol-ann Vasc Phlebologie-annales Vasculaires = Phlebol-ann. Vasc. Phlebologie = Phlebologie Phlebology = Phlebology Phlebolymphology = Phlebolymphology Phoenix. Bulletin uitgegeven door het Vooraziatisch-Egyptisch Genootschap »Ex Oriente Lux« = PhoenixExOrLux Phoenix: journal of the Classical Association of Canada = Phoenix Phoenix. The Journal of the Classical Association of Canada = Phoenix Phoenix-the Journal of The Classical Association of Canada = Phoenix-j Class Assn Phoenix-the Journal of The Classical Association of Canada = Phoenix-j. Class. Assn. Phoenix-usa = Phoenix Phoenix-usa = Phoenix. Phoibos. Bulletin du Cercle de philologie classique et orientale de l’Université libre de Bruxelles = Phoibos Phonetica=Phonetica;; Phonetica = Phonetica Phonological Domains: Universals and Deviations = Inter Explor Phonological Domains: Universals and Deviations = Inter. Explor. Phonology and Phonetics = Phonol Phon Phonology and Phonetics = Phonol. Phon. Phonology and Phonetics = Phonol Phonet Phonology and Phonetics = Phonol. Phonet. Phonology of The Worlds Languages = Phonol World Lang Phonology of The Worlds Languages = Phonol. World. Lang. Phonology = Phonology Phonon Raman Scattering in Semiconductors, Quantum Wells and Superlattices = Springer Tr Mod Phys Phonon Raman Scattering in Semiconductors, Quantum Wells and Superlattices = Springer. Tr. Mod. Phys. Phonon Scattering in Condensed Matter Vii = Springer Series Soli Phonon Scattering in Condensed Matter Vii = Springer. Series. Soli. Phonon Scattering in Condensed Matter Vii = Springer Ser Solid-s Phonon Scattering in Condensed Matter Vii = Springer. Ser. Solid-s. Phonons in Semiconductor Nanostructures = Nato Adv Sci Inst Se Phonons in Semiconductor Nanostructures = Nato. Adv. Sci. Inst. Se. Phosphate Fertilizers and The Environment : Proceedings of An International Workshop = Ifdc Sp Pub Phosphate Fertilizers and The Environment : Proceedings of An International Workshop = Ifdc. Sp. Pub. Phosphates: Geochemical, Geobiological, and Materials Importance = Rev Mineral Geochem Phosphates: Geochemical, Geobiological, and Materials Importance = Rev. Mineral. Geochem. Phosphate Solubilizing Microbes for Crop Improvement = Agr Issues Policies Phosphate Solubilizing Microbes for Crop Improvement = Agr. Issues. Policies. Phosphoinositide 3-kinase in Health and Disease, Vol 1 = Curr Top Microbiol Phosphoinositide 3-kinase in Health and Disease, Vol 1 = Curr. Top. Microbiol. Phosphoinositide 3-kinase in Health and Disease, Vol 2 = Curr Top Microbiol Phosphoinositide 3-kinase in Health and Disease, Vol 2 = Curr. Top. Microbiol. Phosphoinositides in Subcellular Targeting and Enzyme Activation = Curr Top Microbiol Phosphoinositides in Subcellular Targeting and Enzyme Activation = Curr. Top. Microbiol. Phospholipase A2 = Prog Surg Phospholipase A2 = Prog. Surg. Phosphorite Research and Development = Geol Soc Spec Publ Phosphorite Research and Development = Geol. Soc. Spec. Publ. Phosphorous Heterocycles I = Top Heterocycl Chem Phosphorous Heterocycles I = Top. Heterocycl. Chem. Phosphorus Chemistry = Acs Sym Ser Phosphorus Chemistry = Acs. Sym. Ser. Phosphorus Compounds: Advanced Tools in Catalysis and Material Sciences = Catal Met Complexes Phosphorus Compounds: Advanced Tools in Catalysis and Material Sciences = Catal. Met. Complexes. Phosphorus Forms in Animal Manure and The Impact On Soil P Status = Anim Sci Issues Prof Phosphorus Forms in Animal Manure and The Impact On Soil P Status = Anim. Sci. Issues. Prof. Phosphorus Heterocycles Ii = Top Heterocycl Chem Phosphorus Heterocycles Ii = Top. Heterocycl. Chem. Phosphorus in Action: Biological Processes in Soil Phosphorus Cycling = Soil Biol Phosphorus in Action: Biological Processes in Soil Phosphorus Cycling = Soil Biol. Phosphorus in Plant Biology: Regulatory Roles in Molecular, Cellular, Organismic, and Ecosystem Processes = Cur Top Pl Phosphorus in Plant Biology: Regulatory Roles in Molecular, Cellular, Organismic, and Ecosystem Processes = Cur. Top. Pl. Phosphorus Sulfur and Related Elements = Phosphorus Sulfur Rel. Elem. Phosphorus Sulfur and Silicon and The Related Elements = Phosphorus Sulfur Phosphorus, sulfur, and silicon and the related elements = Phosphorus Sulfur Silicon Relat Elem Phosphorus, Sulfur and Silicon and the Related Elements = Phosphorus, Sulfur Silicon Relat. Elem. Phosphorus Sulfur Silicon and the Related Elements = Phosphorus, Sulfur Silicon Relat. Elem. Photoaccoustic Imaging and Spectroscopy = Opt Sci Eng-crc Photoaccoustic Imaging and Spectroscopy = Opt. Sci. Eng-crc. Photoacoustic and Photothermal Phenomena = Aip Conf Proc Photoacoustic and Photothermal Phenomena = Aip. Conf. Proc. Photoacoustic and Photothermal Phenomena Ii = Springer Series Opti Photoacoustic and Photothermal Phenomena Ii = Springer. Series. Opti. Photoactive Organic Materials = Nato Asi 3 High Tech Photoactive Organic Materials = Nato. Asi. 3. High. Tech. Photobiochemistry and Photobiophysics = Photobioch Photobiop Photobiochemistry and Photobiophysics = Photobioch. Photobiop. Photobiological Techniques = Nato Adv Sci I A-lif Photobiological Techniques = Nato. Adv. Sci. I. A-lif. Photobiology in Medicine = Nato Adv Sci Inst Se Photobiology in Medicine = Nato. Adv. Sci. Inst. Se. Photobiology of Infant Skin = Dermatol Lab Clin Re Photobiology of Infant Skin = Dermatol. Lab. Clin. Re. Photocatalytic Purification and Treatment of Water and Air = Tr Met Env Photocatalytic Purification and Treatment of Water and Air = Tr. Met. Env. Photochemical and Photobiological Sciences = Photochem. Photobiol. Sci. Photo Chemical Machining-photo Chemical Etching = Phot Chem Mach Photo Photo Chemical Machining-photo Chemical Etching = Phot. Chem. Mach. Photo Photochemical & photobiological sciences : Official journal of the European Photochemistry Association and the European Society for Photobiology = Photochem Photobiol Sci Photochemical & Photobiological Sciences = Photochem. Photobiol. Sci. Photochemical & Photobiological Sciences = Photoch Photobio Sci Photochemical & Photobiological Sciences = Photoch. Photobio. Sci. Photochemical Probes in Biochemistry = Nato Adv Sci I C-mat Photochemical Probes in Biochemistry = Nato. Adv. Sci. I. C-mat. Photochemical Processes in Organized Molecular Systems = N-holland D Photochemical Processes in Organized Molecular Systems = N-holland. D. Photochemistry and photobiology = Photochem Photobiol Photochemistry and Photobiology=Photochem Photobiol;; Photochemistry and Photobiology = Photochem Photobiol Photochemistry and Photobiology = Photochem. Photobiol. Photochemistry and Photoelectrochemistry of Organic and Inorganic Molecular Thin Films = P Soc Photo-opt Ins Photochemistry and Photoelectrochemistry of Organic and Inorganic Molecular Thin Films = P. Soc. Photo-opt. Ins. Photochemistry and Photophysics of Coordination Compounds Ii = Top Curr Chem Photochemistry and Photophysics of Coordination Compounds Ii = Top. Curr. Chem. Photochemistry and Photophysics of Coordination Compounds I = Top Curr Chem Photochemistry and Photophysics of Coordination Compounds I = Top. Curr. Chem. Photochemistry and Polymeric Systems = Roy Soc Ch Photochemistry and Polymeric Systems = Roy. Soc. Ch. Photochemistry-a Specialist Periodical Report = Photochem-spec Perio Photochemistry-a Specialist Periodical Report = Photochem-spec. Perio. Photochemistry in Thin Films = P Soc Photo-opt Ins Photochemistry in Thin Films = P. Soc. Photo-opt. Ins. Photochemistry of Lignocellulosic Materials = Acs Sym Ser Photochemistry of Lignocellulosic Materials = Acs. Sym. Ser. Photochemistry & Photobiological Sciences = Photochem. Photobiol. Sci. Photochemistry, Vol 35 = Photochem-spec Perio Photochemistry, Vol 35 = Photochem-spec. Perio. Photochemistry, Vol 36 = Photochem-spec Perio Photochemistry, Vol 36 = Photochem-spec. Perio. Photochemistry, Vol 37 = Photochem-spec Perio Photochemistry, Vol 37 = Photochem-spec. Perio. Photochemistry, Vol 38 = Photochem-spec Perio Photochemistry, Vol 38 = Photochem-spec. Perio. Photochemotherapy: Photodynamic Therapy and Other Modalities Iii, Proceedings Of = P Soc Photo-opt Ins Photochemotherapy: Photodynamic Therapy and Other Modalities Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Photochemotherapy: Photodynamic Therapy and Other Modalities Ii, Proceedings Of = P Soc Photo-opt Ins Photochemotherapy: Photodynamic Therapy and Other Modalities Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Photochemotherapy: Photodynamic Therapy and Other Modalities, Proceedings Of = P Soc Photo-opt Ins Photochemotherapy: Photodynamic Therapy and Other Modalities, Proceedings Of = P. Soc. Photo-opt. Ins. Photoconduction Polymers/metal-containing Polymers = Adv Polym Sci Photoconduction Polymers/metal-containing Polymers = Adv. Polym. Sci. Photoconversion Processes for Energy and Chemicals = Ener Biomas Photoconversion Processes for Energy and Chemicals = Ener. Biomas. Photoconversion: Science and Technologies = P Soc Photo-opt Ins Photoconversion: Science and Technologies = P. Soc. Photo-opt. Ins. Photo-dermatology = Photodermatol Photo-Dermatology = Photodermatol. Photodermatology = Photodermatology Photodermatology, Photoimmunology and Photomedicine=Photodermatol Photoimmunol Photomed;; Photodermatology, Photoimmunology and Photomedicine = Photodermatol. Photoimmunol. Photomed. Photodermatology Photoimmunology & Photomedicine = Photodermatol Photo Photodermatology Photoimmunology & Photomedicine = Photodermatol. Photo. Photodermatology, photoimmunology & photomedicine = Photodermatol Photoimmunol Photomed Photodetector Materials and Devices Vii = P Soc Photo-opt Ins Photodetector Materials and Devices Vii = P. Soc. Photo-opt. Ins. Photodetectors and Power Meters Ii = P Soc Photo-opt Ins Photodetectors and Power Meters Ii = P. Soc. Photo-opt. Ins. Photodetectors and Power Meters = P Soc Photo-opt Ins Photodetectors and Power Meters = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices Iii = P Soc Photo-opt Ins Photodetectors: Materials and Devices Iii = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices Ii = Proc Spie Photodetectors: Materials and Devices Ii = Proc. Spie. Photodetectors: Materials and Devices Ii = P Soc Photo-opt Ins Photodetectors: Materials and Devices Ii = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices Iv = Proc Spie Photodetectors: Materials and Devices Iv = Proc. Spie. Photodetectors: Materials and Devices Iv = P Soc Photo-opt Ins Photodetectors: Materials and Devices Iv = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices = P Soc Photo-opt Ins Photodetectors: Materials and Devices = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices Vi = Proc Spie Photodetectors: Materials and Devices Vi = Proc. Spie. Photodetectors: Materials and Devices Vi = P Soc Photo-opt Ins Photodetectors: Materials and Devices Vi = P. Soc. Photo-opt. Ins. Photodetectors: Materials and Devices V = Proc Spie Photodetectors: Materials and Devices V = Proc. Spie. Photodetectors: Materials and Devices V = P Soc Photo-opt Ins Photodetectors: Materials and Devices V = P. Soc. Photo-opt. Ins. Photodiagnosis and Photodynamic Therapy = Photodiagn Photodyn Photodiagnosis and Photodynamic Therapy = Photodiagn. Photodyn. Photodiagnosis and Photodynamic Therapy = Photodiagn. Photodyn. Ther. Photodynamic Inactivation of Microbial Pathogens: Medical and Environmental Applications = Compr Ser Photoch Photodynamic Inactivation of Microbial Pathogens: Medical and Environmental Applications = Compr. Ser. Photoch. Photodynamic Therapy and Biomedical Lasers = Int Congr Ser Photodynamic Therapy and Biomedical Lasers = Int. Congr. Ser. Photodynamic Therapy: Methods and Protocols = Methods Mol Biol Photodynamic Therapy: Methods and Protocols = Methods Mol. Biol. Photodynamic Therapy of Cancer Ii, Proceedings Of = P Soc Photo-opt Ins Photodynamic Therapy of Cancer Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Photodynamic Therapy With Ala: A Clinical Handbook = Compr Ser Photochem Photodynamic Therapy With Ala: A Clinical Handbook = Compr. Ser. Photochem. Photoelectric Properties and Applications of Low-mobility Semiconductors = Springer Tr Mod Phys Photoelectric Properties and Applications of Low-mobility Semiconductors = Springer. Tr. Mod. Phys. Photoelectronic Detectors, Cameras, and Systems = P Soc Photo-opt Ins Photoelectronic Detectors, Cameras, and Systems = P. Soc. Photo-opt. Ins. Photoelectronic Image Devices 1991 = Inst Phys Conf Ser Photoelectronic Image Devices 1991 = Inst. Phys. Conf. Ser. Photoemission and Absorption Spectroscopy of Solids and Interfaces With Synchrotron Radiation = P Int Sch Phys Photoemission and Absorption Spectroscopy of Solids and Interfaces With Synchrotron Radiation = P. Int. Sch. Phys. Photoemission From Optoelectronic Materials and Their Nanostructures = Nanostruct Sci Techn Photoemission From Optoelectronic Materials and Their Nanostructures = Nanostruct. Sci. Techn. Photofunctional Transition Metals Complexes = Struct Bond Photofunctional Transition Metals Complexes = Struct. Bond. Photogrammetria = Photogrammetria Photogrammetric Engineering and Remote Sensing = Photogramm. Eng. Remote Sens. Photogrammetric Engineering and Remote Sensing = Photogramm Eng Rem S Photogrammetric Engineering and Remote Sensing = Photogramm. Eng. Rem. S. Photogrammetric Engineering = Photogramm Eng Photogrammetric Engineering = Photogramm. Eng. Photogrammetric Record = Photogramm Rec Photogrammetric Record = Photogramm. Rec. Photogrammetric Record, The = Photogramm. Rec. Photogrammetrie Fernerkundung Geoinformation = Photogramm Fernerkun Photogrammetrie Fernerkundung Geoinformation = Photogramm. Fernerkun. Photographic Engineering = Photogr Eng Photographic Engineering = Photogr. Eng. Photographic Science and Engineering = Photogr Sci Eng Photographic Science and Engineering = Photogr. Sci. Eng. Photohemotherapy of Cancer and Other Diseases, Proceedings = P Soc Photo-opt Ins Photohemotherapy of Cancer and Other Diseases, Proceedings = P. Soc. Photo-opt. Ins. Photoinduced Electron Transfer V = Top Curr Chem Photoinduced Electron Transfer V = Top. Curr. Chem. Photo-induced Space Charge Effects in Semiconductors : Electro-optics, Photoconductivity and The Photorefractive Effect = Mater Res Soc Symp P Photo-induced Space Charge Effects in Semiconductors : Electro-optics, Photoconductivity and The Photorefractive Effect = Mater. Res. Soc. Symp. P. Photoinitiated Polymerization = Acs Sym Ser Photoinitiated Polymerization = Acs. Sym. Ser. Photoionization of Polyvalent Ions = Mater Sci Technol Photoionization of Polyvalent Ions = Mater. Sci. Technol. Photomask and Next-generation Lithography Mask Technology Ix = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Ix = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Viii = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Viii = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Vii = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Vii = P. Soc. Photo-opt. Ins. Photomask and Next Generation Lithography Mask Technology Xiii, Pts 1 and 2 = Proc Spie Photomask and Next Generation Lithography Mask Technology Xiii, Pts 1 and 2 = Proc. Spie. Photomask and Next Generation Lithography Mask Technology Xiii, Pts 1 and 2 = P Soc Photo-opt Ins Photomask and Next Generation Lithography Mask Technology Xiii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Xii, Pts 1 and 2 = Proc Spie Photomask and Next-generation Lithography Mask Technology Xii, Pts 1 and 2 = Proc. Spie. Photomask and Next-generation Lithography Mask Technology Xii, Pts 1 and 2 = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Xii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photomask and Next Generation Lithography Mask Technology Xi = P Soc Photo-opt Ins Photomask and Next Generation Lithography Mask Technology Xi = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Xiv, Pts 1 and 2 = Proc Spie Photomask and Next-generation Lithography Mask Technology Xiv, Pts 1 and 2 = Proc. Spie. Photomask and Next-generation Lithography Mask Technology Xiv, Pts 1 and 2 = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Xiv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology X = Proc Spie Photomask and Next-generation Lithography Mask Technology X = Proc. Spie. Photomask and Next-generation Lithography Mask Technology X = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology X = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Xviii = Proc Spie Photomask and Next-generation Lithography Mask Technology Xviii = Proc. Spie. Photomask and Next-generation Lithography Mask Technology Xvii = Proc Spie Photomask and Next-generation Lithography Mask Technology Xvii = Proc. Spie. Photomask and Next-generation Lithography Mask Technology Xvii = P Soc Photo-opt Ins Photomask and Next-generation Lithography Mask Technology Xvii = P. Soc. Photo-opt. Ins. Photomask and Next-generation Lithography Mask Technology Xv, Pts 1 and 2 = Proc Spie Photomask and Next-generation Lithography Mask Technology Xv, Pts 1 and 2 = Proc. Spie. Photomask and X-ray Mask Technology Iii = P Soc Photo-opt Ins Photomask and X-ray Mask Technology Iii = P. Soc. Photo-opt. Ins. Photomask and X-ray Mask Technology Ii = P Soc Photo-opt Ins Photomask and X-ray Mask Technology Ii = P. Soc. Photo-opt. Ins. Photomask and X-ray Mask Technology Iv = P Soc Photo-opt Ins Photomask and X-ray Mask Technology Iv = P. Soc. Photo-opt. Ins. Photomask and X-ray Mask Technology = P Soc Photo-opt Ins Photomask and X-ray Mask Technology = P. Soc. Photo-opt. Ins. Photomask and X-ray Mask Technology Vi = P Soc Photo-opt Ins Photomask and X-ray Mask Technology Vi = P. Soc. Photo-opt. Ins. Photomask and X-ray Mask Technology V = P Soc Photo-opt Ins Photomask and X-ray Mask Technology V = P. Soc. Photo-opt. Ins. Photomask Technology 2006, Pts 1 and 2 = Proc Spie Photomask Technology 2006, Pts 1 and 2 = Proc. Spie. Photomask Technology 2006, Pts 1 and 2 = P Soc Photo-opt Ins Photomask Technology 2006, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photomask Technology 2007, Pts 1-3 = Proc Spie Photomask Technology 2007, Pts 1-3 = Proc. Spie. Photomask Technology 2007, Pts 1-3 = P Soc Photo-opt Ins Photomask Technology 2007, Pts 1-3 = P. Soc. Photo-opt. Ins. Photomask Technology 2010 = Proc Spie Photomask Technology 2010 = Proc. Spie. Photomask Technology 2010 = P Soc Photo-opt Ins Photomask Technology 2010 = P. Soc. Photo-opt. Ins. Photomechanics '95 = P Soc Photo-opt Ins Photomechanics '95 = P. Soc. Photo-opt. Ins. Photomechanics - Interferometry '94 = P Soc Photo-opt Ins Photomechanics - Interferometry '94 = P. Soc. Photo-opt. Ins. Photo-mechanics = Top Appl Phys Photo-mechanics = Top. Appl. Phys. Photomedicine and laser surgery = Photomed Laser Surg Photomedicine and Laser Surgery = Photomed Laser Surg Photomedicine and Laser Surgery = Photomed. Laser Surg. Photometric Engineering of Sources and Systems = P Soc Photo-opt Ins Photometric Engineering of Sources and Systems = P. Soc. Photo-opt. Ins. Photometric Redshifts and High Redshift Galaxies = Astr Soc P Photometric Redshifts and High Redshift Galaxies = Astr. Soc. P. Photometry = P Soc Photo-opt Ins Photometry = P. Soc. Photo-opt. Ins. Photon 2000 = Aip Conf Proc Photon 2000 = Aip. Conf. Proc. Photon and Electron Collisions With Atoms and Molecules = Phys Atoms Photon and Electron Collisions With Atoms and Molecules = Phys. Atoms Photon-based Nanoscience and Nanobiotechnology = Nato Sci Ser Ii Math Photon-based Nanoscience and Nanobiotechnology = Nato. Sci. Ser. Ii. Math. Photon Correlation and Scattering, Technical Digest = Osa Trends Opt Photo Photon Correlation and Scattering, Technical Digest = Osa. Trends. Opt. Photo. Photon Correlation Spectroscopy : Multicomponent Systems = P Soc Photo-opt Ins Photon Correlation Spectroscopy : Multicomponent Systems = P. Soc. Photo-opt. Ins. Photon Counting Applications, Quantum Optics, and Quantum Cryptography = P Soc Photo-opt Ins Photon Counting Applications, Quantum Optics, and Quantum Cryptography = P. Soc. Photo-opt. Ins. Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Iii = Proc Spie Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Iii = Proc. Spie. Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Iii = P Soc Photo-opt Ins Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Iii = P. Soc. Photo-opt. Ins. Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Ii = Proc Spie Photon Counting Applications, Quantum Optics, and Quantum Information Transfer and Processing Ii = Proc. Spie. Photon Echo and Coherent Spectroscopy 2005 = Proc Spie Photon Echo and Coherent Spectroscopy 2005 = Proc. Spie. Photon Echo and Coherent Spectroscopy 2005 = P Soc Photo-opt Ins Photon Echo and Coherent Spectroscopy 2005 = P. Soc. Photo-opt. Ins. Photon Echo and Coherent Spectroscopy '97 = P Soc Photo-opt Ins Photon Echo and Coherent Spectroscopy '97 = P. Soc. Photo-opt. Ins. Photonic and Optoelectronic Polymers = Acs Sym Ser Photonic and Optoelectronic Polymers = Acs. Sym. Ser. Photonic and Phononic Crystal Materials and Devices Ix = Proc Spie Photonic and Phononic Crystal Materials and Devices Ix = Proc. Spie. Photonic and Phononic Crystal Materials and Devices Ix = P Soc Photo-opt Ins Photonic and Phononic Crystal Materials and Devices Ix = P. Soc. Photo-opt. Ins. Photonic and Phononic Crystal Materials and Devices X = Proc Spie Photonic and Phononic Crystal Materials and Devices X = Proc. Spie. Photonic and Quantum Technologies for Aerospace Applications Iii = Proc Spie Photonic and Quantum Technologies for Aerospace Applications Iii = Proc. Spie. Photonic and Quantum Technologies for Aerospace Applications Iii = P Soc Photo-opt Ins Photonic and Quantum Technologies for Aerospace Applications Iii = P. Soc. Photo-opt. Ins. Photonic and Quantum Technologies for Aerospace Applications Iv = P Soc Photo-opt Ins Photonic and Quantum Technologies for Aerospace Applications Iv = P. Soc. Photo-opt. Ins. Photonic Applications for Aerospace, Transportation, and Harsh Environment Ii = Proc Spie Photonic Applications for Aerospace, Transportation, and Harsh Environment Ii = Proc. Spie. Photonic Applications for Aerospace, Transportation, and Harsh Environments = P Soc Photo-opt Ins Photonic Applications for Aerospace, Transportation, and Harsh Environments = P. Soc. Photo-opt. Ins. Photonic Bandgap Materials and Devices = Proc Spie Photonic Bandgap Materials and Devices = Proc. Spie. Photonic Bandgap Materials and Devices = P Soc Photo-opt Ins Photonic Bandgap Materials and Devices = P. Soc. Photo-opt. Ins. Photonic Band Gap Materials = Nato Adv Sci Inst Se Photonic Band Gap Materials = Nato. Adv. Sci. Inst. Se. Photonic Band Gaps and Location = Nato Adv Sci Inst Se Photonic Band Gaps and Location = Nato. Adv. Sci. Inst. Se. Photonic Component Engineering and Applications = P Soc Photo-opt Ins Photonic Component Engineering and Applications = P. Soc. Photo-opt. Ins. Photonic Crystal Fibers Ii = P Soc Photo-opt Ins Photonic Crystal Fibers Ii = P. Soc. Photo-opt. Ins. Photonic Crystal Fibers Iv = Proc Spie Photonic Crystal Fibers Iv = Proc. Spie. Photonic Crystal Fibers Iv = P Soc Photo-opt Ins Photonic Crystal Fibers Iv = P. Soc. Photo-opt. Ins. Photonic Crystal Fibers = Proc Spie Photonic Crystal Fibers = Proc. Spie. Photonic Crystal Fibers: Properties and Applications = Springer Ser Mater S Photonic Crystal Fibers: Properties and Applications = Springer. Ser. Mater. S. Photonic Crystal Fibers = P Soc Photo-opt Ins Photonic Crystal Fibers = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Iii (i.e. V) = Proc Spie Photonic Crystal Materials and Devices Iii (i.e. V) = Proc. Spie. Photonic Crystal Materials and Devices Iii (i.e. V) = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Iii (i.e. V) = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Iii = Proc Spie Photonic Crystal Materials and Devices Iii = Proc. Spie. Photonic Crystal Materials and Devices Iii = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Iii = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Ii = Proc Spie Photonic Crystal Materials and Devices Ii = Proc. Spie. Photonic Crystal Materials and Devices Ii = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Ii = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Iv = Proc Spie Photonic Crystal Materials and Devices Iv = Proc. Spie. Photonic Crystal Materials and Devices Iv = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Iv = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Ix = Proc Spie Photonic Crystal Materials and Devices Ix = Proc. Spie. Photonic Crystal Materials and Devices Ix = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Ix = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices = Proc Spie Photonic Crystal Materials and Devices = Proc. Spie. Photonic Crystal Materials and Devices = P Soc Photo-opt Ins Photonic Crystal Materials and Devices = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Viii = Proc Spie Photonic Crystal Materials and Devices Viii = Proc. Spie. Photonic Crystal Materials and Devices Viii = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Viii = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Vii = Proc Spie Photonic Crystal Materials and Devices Vii = Proc. Spie. Photonic Crystal Materials and Devices Vii = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Vii = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Devices Vi = P Soc Photo-opt Ins Photonic Crystal Materials and Devices Vi = P. Soc. Photo-opt. Ins. Photonic Crystal Materials and Nanostructures = Proc Spie Photonic Crystal Materials and Nanostructures = Proc. Spie. Photonic Crystal Materials and Nanostructures = P Soc Photo-opt Ins Photonic Crystal Materials and Nanostructures = P. Soc. Photo-opt. Ins. Photonic Crystals and Light Localization in The 21st Century = Nato Sci Ser Ii-math Photonic Crystals and Light Localization in The 21st Century = Nato. Sci. Ser. Ii-math. Photonic Crystals and Light Localization in The 21st Century = Nato Sci Ser Ii Math Photonic Crystals and Light Localization in The 21st Century = Nato. Sci. Ser. Ii. Math. Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Iii = P Soc Photo-opt Ins Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Iii = P. Soc. Photo-opt. Ins. Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Ii = Proc Spie Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Ii = Proc. Spie. Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Ii = P Soc Photo-opt Ins Photonic Crystals and Photonic Crystal Fibers for Sensing Applications Ii = P. Soc. Photo-opt. Ins. Photonic Crystals: Physics and Practical Modeling = Springer Ser Opt Sci Photonic Crystals: Physics and Practical Modeling = Springer. Ser. Opt. Sci. Photonic Detection and Intervention Technologies for Safe Food = P Soc Photo-opt Ins Photonic Detection and Intervention Technologies for Safe Food = P. Soc. Photo-opt. Ins. Photonic Device Engineering for Dual-use Applications = P Soc Photo-opt Ins Photonic Device Engineering for Dual-use Applications = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing Iii = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing Iii = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing Ii = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing Ii = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing Iv = Proc Spie Photonic Devices and Algorithms for Computing Iv = Proc. Spie. Photonic Devices and Algorithms for Computing Iv = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing Iv = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing = Proc Spie Photonic Devices and Algorithms for Computing = Proc. Spie. Photonic Devices and Algorithms for Computing = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing Viii = Proc Spie Photonic Devices and Algorithms for Computing Viii = Proc. Spie. Photonic Devices and Algorithms for Computing Viii = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing Viii = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing Vi = Proc Spie Photonic Devices and Algorithms for Computing Vi = Proc. Spie. Photonic Devices and Algorithms for Computing Vi = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing Vi = P. Soc. Photo-opt. Ins. Photonic Devices and Algorithms for Computing V = P Soc Photo-opt Ins Photonic Devices and Algorithms for Computing V = P. Soc. Photo-opt. Ins. Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications Ii = P Soc Photo-opt Ins Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications Ii = P. Soc. Photo-opt. Ins. Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications Iv = P Soc Photo-opt Ins Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications Iv = P. Soc. Photo-opt. Ins. Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications = Proc Spie Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications = Proc. Spie. Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications = P Soc Photo-opt Ins Photonic Fiber and Crystal Devices: Advances in Materials and Innovations in Device Applications = P. Soc. Photo-opt. Ins. Photonic Integrated Systems = P Soc Photo-opt Ins Photonic Integrated Systems = P. Soc. Photo-opt. Ins. Photonic Materials, Devices, and Applications Ii = Proc Spie Photonic Materials, Devices, and Applications Ii = Proc. Spie. Photonic Materials, Devices, and Applications Ii = P Soc Photo-opt Ins Photonic Materials, Devices, and Applications Ii = P. Soc. Photo-opt. Ins. Photonic Materials, Devices, and Applications, Pts 1 and 2 = Proc Spie Photonic Materials, Devices, and Applications, Pts 1 and 2 = Proc. Spie. Photonic Materials, Devices, and Applications, Pts 1 and 2 = P Soc Photo-opt Ins Photonic Materials, Devices, and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonic Mems Devices: Design, Fabrication and Control = Opt Sci Eng-crc Photonic Mems Devices: Design, Fabrication and Control = Opt. Sci. Eng-crc. Photonic Metamaterials = Proc Spie Photonic Metamaterials = Proc. Spie. Photonic Metamaterials = P Soc Photo-opt Ins Photonic Metamaterials = P. Soc. Photo-opt. Ins. Photonic Microdevices/microstructures for Sensing Iii = Proc Spie Photonic Microdevices/microstructures for Sensing Iii = Proc. Spie. Photonic Microdevices/microstructures for Sensing Ii = Proc Spie Photonic Microdevices/microstructures for Sensing Ii = Proc. Spie. Photonic Microdevices/microstructures for Sensing Ii = P Soc Photo-opt Ins Photonic Microdevices/microstructures for Sensing Ii = P. Soc. Photo-opt. Ins. Photonic Microresonator Research and Applications = Springer Ser Opt Sci Photonic Microresonator Research and Applications = Springer. Ser. Opt. Sci. Photonic Microsystems: Micro and Nanotechnology Applied to Optical Devices and Systems = Mems Ref Shelf Photonic Microsystems: Micro and Nanotechnology Applied to Optical Devices and Systems = Mems. Ref. Shelf. Photonic Network Communications = Photonic Netw Commun Photonic Network Communications = Photonic Netw. Commun. Photonic Processing Technology and Applications Ii = P Soc Photo-opt Ins Photonic Processing Technology and Applications Ii = P. Soc. Photo-opt. Ins. Photonic Processing Technology and Applications = P Soc Photo-opt Ins Photonic Processing Technology and Applications = P. Soc. Photo-opt. Ins. Photonic Quantum Computing Ii = P Soc Photo-opt Ins Photonic Quantum Computing Ii = P. Soc. Photo-opt. Ins. Photonic Quantum Computing = P Soc Photo-opt Ins Photonic Quantum Computing = P. Soc. Photo-opt. Ins. Photonics 2000: International Conference On Fiber Optics and Photonics = Proc Spie Photonics 2000: International Conference On Fiber Optics and Photonics = Proc. Spie. Photonics 2000: International Conference On Fiber Optics and Photonics = P Soc Photo-opt Ins Photonics 2000: International Conference On Fiber Optics and Photonics = P. Soc. Photo-opt. Ins. Photonics 2010: Tenth International Conference On Fiber Optics and Photonics = Proc Spie Photonics 2010: Tenth International Conference On Fiber Optics and Photonics = Proc. Spie. Photonics and Imaging in Biology and Medicine = Proc Spie Photonics and Imaging in Biology and Medicine = Proc. Spie. Photonics and Imaging in Biology and Medicine = P Soc Photo-opt Ins Photonics and Imaging in Biology and Medicine = P. Soc. Photo-opt. Ins. Photonics and Nanostructures-fundamentals and Applications = Photonic Nanostruct Photonics and Nanostructures-fundamentals and Applications = Photonic. Nanostruct. Photonics and Nanostructures-fundamentals and Applications = Photonics Nanostruct Photonics and Nanostructures-fundamentals and Applications = Photonics Nanostruct. Photonics and Nanostructures - Fundamentals and Applications = Photonics Nanostruct. Fundam. Appl. Photonics and Radio Frequency Ii = P Soc Photo-opt Ins Photonics and Radio Frequency Ii = P. Soc. Photo-opt. Ins. Photonics and Radio Frequency = P Soc Photo-opt Ins Photonics and Radio Frequency = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2006, Pts 1 and 2 = Proc Spie Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2006, Pts 1 and 2 = Proc. Spie. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2006, Pts 1 and 2 = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2006, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2007, Pts 1 and 2 = Proc Spie Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2007, Pts 1 and 2 = Proc. Spie. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2007, Pts 1 and 2 = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2007, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2010 = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments 2010 = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iii = Proc Spie Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iii = Proc. Spie. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iii = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iii = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Ii = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Ii = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iv = Proc Spie Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iv = Proc. Spie. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iv = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments Iv = P. Soc. Photo-opt. Ins. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments = Proc Spie Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments = Proc. Spie. Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments = P Soc Photo-opt Ins Photonics Applications in Astronomy, Communications, Industry, and High-energy Physics Experiments = P. Soc. Photo-opt. Ins. Photonics At The Air Force Photonics Center = P Soc Photo-opt Ins Photonics At The Air Force Photonics Center = P. Soc. Photo-opt. Ins. Photonics: Design, Technology, and Packaging Iii = Proc Spie Photonics: Design, Technology, and Packaging Iii = Proc. Spie. Photonics: Design, Technology, and Packaging Iii = P Soc Photo-opt Ins Photonics: Design, Technology, and Packaging Iii = P. Soc. Photo-opt. Ins. Photonics: Design, Technology, and Packaging Ii = Proc Spie Photonics: Design, Technology, and Packaging Ii = Proc. Spie. Photonics: Design, Technology, and Packaging Ii = P Soc Photo-opt Ins Photonics: Design, Technology, and Packaging Ii = P. Soc. Photo-opt. Ins. Photonics: Design, Technology, and Packaging = Proc Spie Photonics: Design, Technology, and Packaging = Proc. Spie. Photonics: Design, Technology, and Packaging = P Soc Photo-opt Ins Photonics: Design, Technology, and Packaging = P. Soc. Photo-opt. Ins. Photonics, Devices, and Systems Iii = Proc Spie Photonics, Devices, and Systems Iii = Proc. Spie. Photonics, Devices, and Systems Iii = P Soc Photo-opt Ins Photonics, Devices, and Systems Iii = P. Soc. Photo-opt. Ins. Photonics, Devices, and Systems Ii = Proc Spie Photonics, Devices, and Systems Ii = Proc. Spie. Photonics, Devices, and Systems Ii = P Soc Photo-opt Ins Photonics, Devices, and Systems Ii = P. Soc. Photo-opt. Ins. Photonics, Devices, and Systems Iv = Proc Spie Photonics, Devices, and Systems Iv = Proc. Spie. Photonics, Devices, and Systems Iv = P Soc Photo-opt Ins Photonics, Devices, and Systems Iv = P. Soc. Photo-opt. Ins. Photonics, Devices,and Systems = Proc Spie Photonics, Devices,and Systems = Proc. Spie. Photonics, Devices,and Systems = P Soc Photo-opt Ins Photonics, Devices,and Systems = P. Soc. Photo-opt. Ins. Photonic Sensing Technologies = Proc Spie Photonic Sensing Technologies = Proc. Spie. Photonic Sensing Technologies = P Soc Photo-opt Ins Photonic Sensing Technologies = P. Soc. Photo-opt. Ins. Photonics for Computers, Neural Networks, and Memories = P Soc Photo-opt Ins Photonics for Computers, Neural Networks, and Memories = P. Soc. Photo-opt. Ins. Photonics for Port and Harbor Security Ii = Proc Spie Photonics for Port and Harbor Security Ii = Proc. Spie. Photonics for Port and Harbor Security Ii = P Soc Photo-opt Ins Photonics for Port and Harbor Security Ii = P. Soc. Photo-opt. Ins. Photonics for Port and Harbor Security = P Soc Photo-opt Ins Photonics for Port and Harbor Security = P. Soc. Photo-opt. Ins. Photonics for Processors, Neural Networks, and Memories Ii = P Soc Photo-opt Ins Photonics for Processors, Neural Networks, and Memories Ii = P. Soc. Photo-opt. Ins. Photonics for Processors, Neural Networks, and Memories = P Soc Photo-opt Ins Photonics for Processors, Neural Networks, and Memories = P. Soc. Photo-opt. Ins. Photonics for Solar Energy Systems Iii = Proc Spie Photonics for Solar Energy Systems Iii = Proc. Spie. Photonics for Solar Energy Systems Iii = P Soc Photo-opt Ins Photonics for Solar Energy Systems Iii = P. Soc. Photo-opt. Ins. Photonics for Solar Energy Systems Ii = Proc Spie Photonics for Solar Energy Systems Ii = Proc. Spie. Photonics for Solar Energy Systems = Proc Spie Photonics for Solar Energy Systems = Proc. Spie. Photonics for Solar Energy Systems = P Soc Photo-opt Ins Photonics for Solar Energy Systems = P. Soc. Photo-opt. Ins. Photonics for Space and Radiation Environments Ii = Proc Spie Photonics for Space and Radiation Environments Ii = Proc. Spie. Photonics for Space and Radiation Environments Ii = P Soc Photo-opt Ins Photonics for Space and Radiation Environments Ii = P. Soc. Photo-opt. Ins. Photonics for Space and Radiation Environments = P Soc Photo-opt Ins Photonics for Space and Radiation Environments = P. Soc. Photo-opt. Ins. Photonics for Space Environments Iii = P Soc Photo-opt Ins Photonics for Space Environments Iii = P. Soc. Photo-opt. Ins. Photonics for Space Environments Ii = P Soc Photo-opt Ins Photonics for Space Environments Ii = P. Soc. Photo-opt. Ins. Photonics for Space Environments Iv = P Soc Photo-opt Ins Photonics for Space Environments Iv = P. Soc. Photo-opt. Ins. Photonics for Space Environments Ix = P Soc Photo-opt Ins Photonics for Space Environments Ix = P. Soc. Photo-opt. Ins. Photonics for Space Environments = P Soc Photo-opt Ins Photonics for Space Environments = P. Soc. Photo-opt. Ins. Photonics for Space Environments Viii = P Soc Photo-opt Ins Photonics for Space Environments Viii = P. Soc. Photo-opt. Ins. Photonics for Space Environments Vii = P Soc Photo-opt Ins Photonics for Space Environments Vii = P. Soc. Photo-opt. Ins. Photonics for Space Environments Vi = P Soc Photo-opt Ins Photonics for Space Environments Vi = P. Soc. Photo-opt. Ins. Photonics for Space Environments V = P Soc Photo-opt Ins Photonics for Space Environments V = P. Soc. Photo-opt. Ins. Photonics for Space Environments Xi = Proc Spie Photonics for Space Environments Xi = Proc. Spie. Photonics for Space Environments Xi = P Soc Photo-opt Ins Photonics for Space Environments Xi = P. Soc. Photo-opt. Ins. Photonics for Transportation = P Soc Photo-opt Ins Photonics for Transportation = P. Soc. Photo-opt. Ins. Photonics in Measurement = Vdi Bericht Photonics in Measurement = Vdi. Bericht. Photonics in Multimedia Ii = Proc Spie Photonics in Multimedia Ii = Proc. Spie. Photonics in Multimedia Ii = P Soc Photo-opt Ins Photonics in Multimedia Ii = P. Soc. Photo-opt. Ins. Photonics in Multimedia = Proc Spie Photonics in Multimedia = Proc. Spie. Photonics in Multimedia = P Soc Photo-opt Ins Photonics in Multimedia = P. Soc. Photo-opt. Ins. Photonics in Switching, Proceedings = Osa Trends Opt Photo Photonics in Switching, Proceedings = Osa. Trends. Opt. Photo. Photonics in The Automobile Ii = Proc Spie Photonics in The Automobile Ii = Proc. Spie. Photonics in The Automobile Ii = P Soc Photo-opt Ins Photonics in The Automobile Ii = P. Soc. Photo-opt. Ins. Photonics in The Automobile = P Soc Photo-opt Ins Photonics in The Automobile = P. Soc. Photo-opt. Ins. Photonics in The Transportation Industry: Auto to Aerospace Iii = P Soc Photo-opt Ins Photonics in The Transportation Industry: Auto to Aerospace Iii = P. Soc. Photo-opt. Ins. Photonics in The Transportation Industry: Auto to Aerospace = Proc Spie Photonics in The Transportation Industry: Auto to Aerospace = Proc. Spie. Photonics in The Transportation Industry: Auto to Aerospace = P Soc Photo-opt Ins Photonics in The Transportation Industry: Auto to Aerospace = P. Soc. Photo-opt. Ins. Photonics North 2006, Pts 1 and 2 = Proc Spie Photonics North 2006, Pts 1 and 2 = Proc. Spie. Photonics North 2006, Pts 1 and 2 = P Soc Photo-opt Ins Photonics North 2006, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics North 2007, Pts 1 and 2 = Proc Spie Photonics North 2007, Pts 1 and 2 = Proc. Spie. Photonics North 2007, Pts 1 and 2 = P Soc Photo-opt Ins Photonics North 2007, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics North 2008 = Proc Spie Photonics North 2008 = Proc. Spie. Photonics North 2008 = P Soc Photo-opt Ins Photonics North 2008 = P. Soc. Photo-opt. Ins. Photonics North 2010 = Proc Spie Photonics North 2010 = Proc. Spie. Photonics North 2010 = P Soc Photo-opt Ins Photonics North 2010 = P. Soc. Photo-opt. Ins. Photonics North: Applications of Photonic Technology 7b, Pts 1 and 2 = P Soc Photo-opt Ins Photonics North: Applications of Photonic Technology 7b, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics North: Applications of Photonic Technology, Pts 1 and 2 = P Soc Photo-opt Ins Photonics North: Applications of Photonic Technology, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Photonics Packaging and Integration Iii = P Soc Photo-opt Ins Photonics Packaging and Integration Iii = P. Soc. Photo-opt. Ins. Photonics Packaging and Integration Iv = P Soc Photo-opt Ins Photonics Packaging and Integration Iv = P. Soc. Photo-opt. Ins. Photonics Packaging and Integration Vi = P Soc Photo-opt Ins Photonics Packaging and Integration Vi = P. Soc. Photo-opt. Ins. Photonics Packaging and Integration V = P Soc Photo-opt Ins Photonics Packaging and Integration V = P. Soc. Photo-opt. Ins. Photonics Packaging, Integration, and Interconnects Ix = P Soc Photo-opt Ins Photonics Packaging, Integration, and Interconnects Ix = P. Soc. Photo-opt. Ins. Photonics Packaging, Integration, and Interconnects Viii = P Soc Photo-opt Ins Photonics Packaging, Integration, and Interconnects Viii = P. Soc. Photo-opt. Ins. Photonics Packaging, Integration, and Interconnects Vii = Proc Spie Photonics Packaging, Integration, and Interconnects Vii = Proc. Spie. Photonics Packaging, Integration, and Interconnects Vii = P Soc Photo-opt Ins Photonics Packaging, Integration, and Interconnects Vii = P. Soc. Photo-opt. Ins. Photonics Spectra = Photonic Spectra Photonics Spectra = Photonic. Spectra Photonics spectra = Photonics Spectra Photonics Spectra = Photon Spectra Photonics Spectra = Photon. Spectra Photonics Technology in The 21st Century = P Soc Photo-opt Ins Photonics Technology in The 21st Century = P. Soc. Photo-opt. Ins. Photonics Technology Into The 21st Century: Semiconductors, Microstructures, and Nanostructures = Proc Spie Photonics Technology Into The 21st Century: Semiconductors, Microstructures, and Nanostructures = Proc. Spie. Photonics Technology Into The 21st Century: Semiconductors, Microstructures, and Nanostructures = P Soc Photo-opt Ins Photonics Technology Into The 21st Century: Semiconductors, Microstructures, and Nanostructures = P. Soc. Photo-opt. Ins. Photonic Structures Inspired By Nature = Springer Theses-reco Photonic Structures Inspired By Nature = Springer. Theses-reco. Photonic Switching Ii = Sprin S Ele Photonic Switching Ii = Sprin. S. Ele. Photonic Systems and Applications in Defense and Manufacturing = P Soc Photo-opt Ins Photonic Systems and Applications in Defense and Manufacturing = P. Soc. Photo-opt. Ins. Photonic Systems and Applications = P Soc Photo-opt Ins Photonic Systems and Applications = P. Soc. Photo-opt. Ins. Photonic Therapeutics and Diagnostics Iii = Proc Spie Photonic Therapeutics and Diagnostics Iii = Proc. Spie. Photonic Therapeutics and Diagnostics Iii = P Soc Photo-opt Ins Photonic Therapeutics and Diagnostics Iii = P. Soc. Photo-opt. Ins. Photonic Therapeutics and Diagnostics Ii = Proc Spie Photonic Therapeutics and Diagnostics Ii = Proc. Spie. Photonic Therapeutics and Diagnostics Ii = P Soc Photo-opt Ins Photonic Therapeutics and Diagnostics Ii = P. Soc. Photo-opt. Ins. Photonic Therapeutics and Diagnostics Iv = P Soc Photo-opt Ins Photonic Therapeutics and Diagnostics Iv = P. Soc. Photo-opt. Ins. Photonic Therapeutics and Diagnostics = Proc Spie Photonic Therapeutics and Diagnostics = Proc. Spie. Photonic Therapeutics and Diagnostics = P Soc Photo-opt Ins Photonic Therapeutics and Diagnostics = P. Soc. Photo-opt. Ins. Photonic Therapeutics and Diagnostics Vii = Proc Spie Photonic Therapeutics and Diagnostics Vii = Proc. Spie. Photonic Therapeutics and Diagnostics Vi = Proc Spie Photonic Therapeutics and Diagnostics Vi = Proc. Spie. Photonic Therapeutics and Diagnostics V = Proc Spie Photonic Therapeutics and Diagnostics V = Proc. Spie. Photonic Therapeutics and Diagnostics V = P Soc Photo-opt Ins Photonic Therapeutics and Diagnostics V = P. Soc. Photo-opt. Ins. Photonirvachak-journal of The Indian Society of Remote Sensing = Photonirvachak-j Ind Photonirvachak-journal of The Indian Society of Remote Sensing = Photonirvachak-j. Ind. Photon Management Iii = Proc Spie Photon Management Iii = Proc. Spie. Photon Management Iii = P Soc Photo-opt Ins Photon Management Iii = P. Soc. Photo-opt. Ins. Photon Management Ii = Proc Spie Photon Management Ii = Proc. Spie. Photon Management Ii = P Soc Photo-opt Ins Photon Management Ii = P. Soc. Photo-opt. Ins. Photon Management = Proc Spie Photon Management = Proc. Spie. Photon Management = P Soc Photo-opt Ins Photon Management = P. Soc. Photo-opt. Ins. Photon Migration and Diffuse-light Imaging = Proc Spie Photon Migration and Diffuse-light Imaging = Proc. Spie. Photon Migration and Diffuse-light Imaging = P Soc Photo-opt Ins Photon Migration and Diffuse-light Imaging = P. Soc. Photo-opt. Ins. Photon Migration, Diffuse Spectroscopy and Optical Coherence Tomography: Imaging and Functional Assessment = Proc Spie Photon Migration, Diffuse Spectroscopy and Optical Coherence Tomography: Imaging and Functional Assessment = Proc. Spie. Photon Migration, Diffuse Spectroscopy and Optical Coherence Tomography: Imaging and Functional Assessment = P Soc Photo-opt Ins Photon Migration, Diffuse Spectroscopy and Optical Coherence Tomography: Imaging and Functional Assessment = P. Soc. Photo-opt. Ins. Photon Migration, Optical Coherence Tomography, and Microscopy = Proc Spie Photon Migration, Optical Coherence Tomography, and Microscopy = Proc. Spie. Photon Migration, Optical Coherence Tomography, and Microscopy = P Soc Photo-opt Ins Photon Migration, Optical Coherence Tomography, and Microscopy = P. Soc. Photo-opt. Ins. Photonovel = False Title Photonovel = False. Title. Photon Processing in Microelectronic and Photonics V = Proc Spie Photon Processing in Microelectronic and Photonics V = Proc. Spie. Photon Processing in Microelectronic and Photonics V = P Soc Photo-opt Ins Photon Processing in Microelectronic and Photonics V = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics Iii = Proc Spie Photon Processing in Microelectronics and Photonics Iii = Proc. Spie. Photon Processing in Microelectronics and Photonics Iii = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics Iii = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics Ii = Proc Spie Photon Processing in Microelectronics and Photonics Ii = Proc. Spie. Photon Processing in Microelectronics and Photonics Ii = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics Ii = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics Iv = Proc Spie Photon Processing in Microelectronics and Photonics Iv = Proc. Spie. Photon Processing in Microelectronics and Photonics Iv = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics Iv = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics = Proc Spie Photon Processing in Microelectronics and Photonics = Proc. Spie. Photon Processing in Microelectronics and Photonics = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics Vii = Proc Spie Photon Processing in Microelectronics and Photonics Vii = Proc. Spie. Photon Processing in Microelectronics and Photonics Vii = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics Vii = P. Soc. Photo-opt. Ins. Photon Processing in Microelectronics and Photonics Vi = P Soc Photo-opt Ins Photon Processing in Microelectronics and Photonics Vi = P. Soc. Photo-opt. Ins. Photon Propagation in Tissues Iii, Proceedings Of = P Soc Photo-opt Ins Photon Propagation in Tissues Iii, Proceedings Of = P. Soc. Photo-opt. Ins. Photon Propagation in Tissues Ii, Proceedings Of = P Soc Photo-opt Ins Photon Propagation in Tissues Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Photon Propagation in Tissues Iv, Proceedings = P Soc Photo-opt Ins Photon Propagation in Tissues Iv, Proceedings = P. Soc. Photo-opt. Ins. Photon Propagation in Tissues, Proceedings Of = P Soc Photo-opt Ins Photon Propagation in Tissues, Proceedings Of = P. Soc. Photo-opt. Ins. Photons and Local Probes = Nato Adv Sci Inst Se Photons and Local Probes = Nato. Adv. Sci. Inst. Se. Photons and Low Energy Particles in Surface Processing = Mater Res Soc Symp P Photons and Low Energy Particles in Surface Processing = Mater. Res. Soc. Symp. P. Photons and Neurons = P Soc Photo-opt Ins Photons and Neurons = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing 2005 = Pro Biomed Opt Imag Photons Plus Ultrasound: Imaging and Sensing 2005 = Pro. Biomed. Opt. Imag. Photons Plus Ultrasound: Imaging and Sensing 2006 = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing 2006 = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing 2007 = Proc Spie Photons Plus Ultrasound: Imaging and Sensing 2007 = Proc. Spie. Photons Plus Ultrasound: Imaging and Sensing 2007 = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing 2007 = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing 2008: The Ninth Conference On Biomedical Thermoacoustics, Optoacoustics, and Acoustic-optics = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing 2008: The Ninth Conference On Biomedical Thermoacoustics, Optoacoustics, and Acoustic-optics = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing 2009 = Proc Spie Photons Plus Ultrasound: Imaging and Sensing 2009 = Proc. Spie. Photons Plus Ultrasound: Imaging and Sensing 2009 = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing 2009 = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing 2010 = Proc Spie Photons Plus Ultrasound: Imaging and Sensing 2010 = Proc. Spie. Photons Plus Ultrasound: Imaging and Sensing 2010 = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing 2010 = P. Soc. Photo-opt. Ins. Photons Plus Ultrasound: Imaging and Sensing = Proc Spie Photons Plus Ultrasound: Imaging and Sensing = Proc. Spie. Photons Plus Ultrasound: Imaging and Sensing = P Soc Photo-opt Ins Photons Plus Ultrasound: Imaging and Sensing = P. Soc. Photo-opt. Ins. Photon Transport in Highly Scattering Tissue, Proceedings Of = P Soc Photo-opt Ins Photon Transport in Highly Scattering Tissue, Proceedings Of = P. Soc. Photo-opt. Ins. Photophysics of Organometallics = Top Organometal Chem Photophysics of Organometallics = Top. Organometal. Chem. Photophysiology = Photophysiology Photopolarimetry in Remote Sensing = Nato Sci Ser Ii-math Photopolarimetry in Remote Sensing = Nato. Sci. Ser. Ii-math. Photopolarimetry in Remote Sensing = Nato Sci Ser Ii Math Photopolarimetry in Remote Sensing = Nato. Sci. Ser. Ii. Math. Photopolymer Device Physics, Chemistry, and Applications Iii = P Soc Photo-opt Ins Photopolymer Device Physics, Chemistry, and Applications Iii = P. Soc. Photo-opt. Ins. Photopolymer Device Physics, Chemistry and Applications Ii = P Soc Photo-opt Ins Photopolymer Device Physics, Chemistry and Applications Ii = P. Soc. Photo-opt. Ins. Photopolymer Device Physics, Chemistry, and Applications Iv = P Soc Photo-opt Ins Photopolymer Device Physics, Chemistry, and Applications Iv = P. Soc. Photo-opt. Ins. Photopolymer Device Physics, Chemistry, and Applications = P Soc Photo-opt Ins Photopolymer Device Physics, Chemistry, and Applications = P. Soc. Photo-opt. Ins. Photopolymerization = Acs Sym Ser Photopolymerization = Acs. Sym. Ser. Photopolymers and Applications in Holography, Optical Data Storage, Optical Sensors, and Interconnects = P Soc Photo-opt Ins Photopolymers and Applications in Holography, Optical Data Storage, Optical Sensors, and Interconnects = P. Soc. Photo-opt. Ins. Photoprocesses in Transition Metal Complexes, Biosystems and Other Molecules : Experiment and Theory = Nato Adv Sci I C-mat Photoprocesses in Transition Metal Complexes, Biosystems and Other Molecules : Experiment and Theory = Nato. Adv. Sci. I. C-mat. Photoprotection in Plants: Optical Screening-based Mechanisms = Springer Ser Biophys Photoprotection in Plants: Optical Screening-based Mechanisms = Springer. Ser. Biophys. Photoreceptors and Calcium = Adv Exp Med Biol Photoreceptors and Calcium = Adv. Exp. Med. Biol. Photorefractive Effects, Materials and Devices, Proceedings = Osa Trends Opt Photo Photorefractive Effects, Materials and Devices, Proceedings = Osa. Trends. Opt. Photo. Photorefractive Effects, Materials, and Devices, Proceedings Volume = Osa Trends Opt Photo Photorefractive Effects, Materials, and Devices, Proceedings Volume = Osa. Trends. Opt. Photo. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Iii = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Iii = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ii = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ii = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Iv = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Iv = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ix = Proc Spie Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ix = Proc. Spie. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ix = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Ix = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Vii, and Optical Data Storage = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Vii, and Optical Data Storage = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Viii = Proc Spie Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Viii = Proc. Spie. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Viii = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Viii = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Vi = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Vi = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications V = Proc Spie Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications V = Proc. Spie. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications V = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications V = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Xii = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications Xii = P. Soc. Photo-opt. Ins. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications X = Proc Spie Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications X = Proc. Spie. Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications X = P Soc Photo-opt Ins Photorefractive Fiber and Crystal Devices: Materials, Optical Properties, and Applications X = P. Soc. Photo-opt. Ins. Photorefractive Materials: Phenomena and Related Applications Ii = P Soc Photo-opt Ins Photorefractive Materials: Phenomena and Related Applications Ii = P. Soc. Photo-opt. Ins. Photorefractive Materials = P Soc Photo-opt Ins Photorefractive Materials = P. Soc. Photo-opt. Ins. Photoresponsive Polymers I = Adv Polym Sci Photoresponsive Polymers I = Adv. Polym. Sci. Photoresponsive Polymers Ii = Adv Polym Sci Photoresponsive Polymers Ii = Adv. Polym. Sci. Photosensitive Metal-organic Systems = Adv Chem Ser Photosensitive Metal-organic Systems = Adv. Chem. Ser. Photosensitive Molecules for Controlling Biological Function = Neuromethods Photosensitive Molecules for Controlling Biological Function = Neuromethods. Photosensitive Optical Materials and Devices Ii = P Soc Photo-opt Ins Photosensitive Optical Materials and Devices Ii = P. Soc. Photo-opt. Ins. Photosensitive Optical Materials and Devices = P Soc Photo-opt Ins Photosensitive Optical Materials and Devices = P. Soc. Photo-opt. Ins. Photosensitivity and Self-organization in Optical Fibers and Waveguides = P Soc Photo-opt Ins Photosensitivity and Self-organization in Optical Fibers and Waveguides = P. Soc. Photo-opt. Ins. Photosensitizing Compounds : Their Chemistry, Biology and Clinical Use = Ciba F Symp Photosensitizing Compounds : Their Chemistry, Biology and Clinical Use = Ciba. F. Symp. Photosynthesis in Silico: Understanding Complexity From Molecules to Ecosystems = Adv Photosynth Resp Photosynthesis in Silico: Understanding Complexity From Molecules to Ecosystems = Adv. Photosynth. Resp. Photosynthesis: Molecular Biology of Energy Capture = Method Enzymol Photosynthesis: Molecular Biology of Energy Capture = Method. Enzymol. Photosynthesis: Molecular Biology of Energy Capture = Methods Enzymol Photosynthesis: Molecular Biology of Energy Capture = Methods. Enzymol. Photosynthesis research = Photosynth Res Photosynthesis Research = Photosynth Res Photosynthesis Research = Photosynth. Res. Photosynthesis Research Protocols, Second Edition = Methods Mol Biol Photosynthesis Research Protocols, Second Edition = Methods. Mol. Biol. Photosynthetica = Photosynthetica Photosynthetic Bacterial Reaction Center Ii = Nato Adv Sci Inst Se Photosynthetic Bacterial Reaction Center Ii = Nato. Adv. Sci. Inst. Se. Photothermal Therapies in Medicine, Proceedings Of = P Soc Photo-opt Ins Photothermal Therapies in Medicine, Proceedings Of = P. Soc. Photo-opt. Ins. Photovoltaic Advanced Research & Development Project = Aip Conf Proc Photovoltaic Advanced Research & Development Project = Aip. Conf. Proc. Photovoltaic and Photoactive Materials - Properties, Technology and Applications = Nato Sci Ser Ii-math Photovoltaic and Photoactive Materials - Properties, Technology and Applications = Nato. Sci. Ser. Ii-math. Photovoltaic and Photoactive Materials - Properties, Technology and Applications = Nato Sci Ser Ii Math Photovoltaic and Photoactive Materials - Properties, Technology and Applications = Nato. Sci. Ser. Ii. Math. Photovoltaic Cell and Module Technologies Ii = Proc Spie Photovoltaic Cell and Module Technologies Ii = Proc. Spie. Photovoltaic Cell and Module Technologies = P Soc Photo-opt Ins Photovoltaic Cell and Module Technologies = P. Soc. Photo-opt. Ins. Photovoltaic Industrial Systems: An Environmental Approach = Green Energy Technol Photovoltaic Industrial Systems: An Environmental Approach = Green. Energy. Technol. Photovoltaic Materials and Manufacturing Issues = Mater Res Soc Symp P Photovoltaic Materials and Manufacturing Issues = Mater. Res. Soc. Symp. P. Photovoltaics Bulletin = Photovoltaics Bull. Photovoltaics: Developments, Applications and Impact = Energ Sci Eng Tech Photovoltaics: Developments, Applications and Impact = Energ. Sci. Eng. Tech. Photovoltaics for The 21st Century = Elec Soc S Photovoltaics for The 21st Century = Elec. Soc. S. Photovoltaik Engineering: Handbuch Fur Planung, Entwicklung Und Anwendung = Vdi-buch Photovoltaik Engineering: Handbuch Fur Planung, Entwicklung Und Anwendung = Vdi-buch. Phraseologie: Ein Internationales Handbuch Der Zeitgenossischen Forschung = Handb Sprach Kommun Phraseologie: Ein Internationales Handbuch Der Zeitgenossischen Forschung = Handb. Sprach. Kommun. Phraseologie/phraseology: Ein Internationales Handbuch Der Zeitgenossischen Forschung/an International Handbook of Contemporary Research, Volume 1, Part 1 = Handb Sprach Kommun Phraseologie/phraseology: Ein Internationales Handbuch Der Zeitgenossischen Forschung/an International Handbook of Contemporary Research, Volume 1, Part 1 = Handb. Sprach. Kommun. Phraseology and Culture in English = Top Engl Linguist Phraseology and Culture in English = Top. Engl. Linguist. Phronesis-a Journal for Ancient Philosophy = Phronesis Phronesis-a Journal for Ancient Philosophy = Phronesis. Phronesis. A Journal for Ancient Philosophy = Phronesis Phronesis (Barcelona, Spain) = Phronesis Phycologia = Phycologia Phycological Research = Phycol Res Phycological Research = Phycol. Res. Phylogenetic Aspects of Neuropeptides: From Invertebrates to Humans = Ann Ny Acad Sci Phylogenetic Aspects of Neuropeptides: From Invertebrates to Humans = Ann. Ny. Acad. Sci. Phylogenetic Models in Functional Coupling of The Cns and The Cardiovascular System = Comp Physiol Phylogenetic Models in Functional Coupling of The Cns and The Cardiovascular System = Comp. Physiol. Phylogenetic Perspectives On The Vertebrate Immune System = Adv Exp Med Biol Phylogenetic Perspectives On The Vertebrate Immune System = Adv. Exp. Med. Biol. Phylogeny and Conservation = Conserv Biol Ser Phylogeny and Conservation = Conserv. Biol. Ser. Phylogeny and The Classification of Fossil and Recent Organisms = Abh Nat Ver Phylogeny and The Classification of Fossil and Recent Organisms = Abh. Nat. Ver. Phylon (1960) = Phylon Phylon = Phylon Physchemcomm = Physchemcomm Physica A = Phys. A Physica A = Physica A Physica A: Statistical Mechanics and Its Applications (Amsterdam, Netherlands) = Physica A (Amsterdam, Neth.) Physica A-statistical Mechanics and Its Applications = Physica A Physica A-statistical Mechanics and Its Applications = Physica A. Physica A: Statistical Mechanics and its Applications = Physica A Physica B: Condensed Matter (Amsterdam, Netherlands) = Physica B (Amsterdam, Neth.) Physica B-condensed Matter = Physica B Physica B-condensed Matter = Physica B. Physica B: Condensed Matter = Physica B Physica B & C = Physica B & C Physica B = Physica B Physica C = Physica C Physica C: Superconductivity and Its Applications (Amsterdam, Netherlands) = Physica C (Amsterdam, Neth.) Physica C-superconductivity and Its Applications = Physica C Physica C-superconductivity and Its Applications = Physica C. Physica C: Superconductivity = Physica C Physica D: Nonlinear Phenomena (Amsterdam, Netherlands) = Physica D (Amsterdam, Neth.) Physica D-nonlinear Phenomena = Physica D Physica D-nonlinear Phenomena = Physica D. Physica D. Nonlinear phenomena = Physica D Physica D: Nonlinear Phenomena = Physica D Physica D = Phys. D Physica D = Physica D Physica E: Low-dimensional Systems and Nanostructures (Amsterdam, Netherlands) = Physica E (Amsterdam, Neth.) Physica E: Low-dimensional Systems and Nanostructures = Physica E Physica E-low-dimensional Systems & Nanostructures = Physica E Physica E-low-dimensional Systems & Nanostructures = Physica E. Physica E = Physica E Physical Acoustics = Phys Acoustics Physical Acoustics = Phys. Acoustics Physical Activity and Cancer = Recent Results Canc Physical Activity and Cancer = Recent. Results. Canc. Physical Activity, Dietary Calorie Restriction, and Cancer = Energ Balance Cancer Physical Activity, Dietary Calorie Restriction, and Cancer = Energ. Balance. Cancer Physical Activity in Rehabilitation and Recovery = Public Health 21st C Physical Activity in Rehabilitation and Recovery = Public. Health. 21st. C. Physical Aging of Glasses: The Vft Approach = Mater Sci Technol Physical Aging of Glasses: The Vft Approach = Mater. Sci. Technol. Physical and Chemical Mechanisms in Molecular Radiation Biology = Basic Life Sci Physical and Chemical Mechanisms in Molecular Radiation Biology = Basic. Life. Sci. Physical and Chemical Processes of Water and Solute Transport/retention to Soils, Proceedings = Sssa Spec Publ Physical and Chemical Processes of Water and Solute Transport/retention to Soils, Proceedings = Sssa. Spec. Publ. Physical and Motor Development in Mental Retardation = Med Sport Sci Physical and Motor Development in Mental Retardation = Med. Sport. Sci. Physical and Nonstandard Gauges = Lect Notes Phys Physical and Nonstandard Gauges = Lect. Notes. Phys. Physical and Numerical Models in Knot Theory = Ser Knots Physical and Numerical Models in Knot Theory = Ser. Knots. Physical and Numerical Simulation of Materials Processing, Pts 1 and 2 = Mater Sci Forum Physical and Numerical Simulation of Materials Processing, Pts 1 and 2 = Mater. Sci. Forum. Physical Aspects of Fracture = Nato Sci Ser Ii-math Physical Aspects of Fracture = Nato. Sci. Ser. Ii-math. Physical Aspects of Fracture = Nato Sci Ser Ii Math Physical Aspects of Fracture = Nato. Sci. Ser. Ii. Math. Physical biology = Phys Biol Physical Biology = Phys Biol Physical Biology = Phys. Biol. Physical, Chemical, and Earth Sciences Research Reports = Phys Ch Ear Physical, Chemical, and Earth Sciences Research Reports = Phys. Ch. Ear. Physical, Chemical, Biochemical and Biological Techniques and Processes = Adv Space Res Physical, Chemical, Biochemical and Biological Techniques and Processes = Adv. Space. Res. Physical, Chemical, Biochemical and Biological Techniques and Processes = Adv Space Res-series Physical, Chemical, Biochemical and Biological Techniques and Processes = Adv. Space. Res-series. Physical chemistry chemical physics : PCCP = Phys Chem Chem Phys Physical Chemistry Chemical Physics = Phys Chem Chem Phys Physical Chemistry Chemical Physics = Phys. Chem. Chem. Phys. Physical Chemistry of Colloids and Interfaces in Oil Production = Coll Col Se Physical Chemistry of Colloids and Interfaces in Oil Production = Coll. Col. Se. Physical Chemistry of Foods = Ift Bas Sym Physical Chemistry of Foods = Ift. Bas. Sym. Physical Chemistry of Interfaces and Nanomaterials Iii = Proc Spie Physical Chemistry of Interfaces and Nanomaterials Iii = Proc. Spie. Physical Chemistry of Interfaces and Nanomaterials Iii = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials Iii = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials Ii = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials Ii = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials Ix = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials Ix = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials Vii = Proc Spie Physical Chemistry of Interfaces and Nanomaterials Vii = Proc. Spie. Physical Chemistry of Interfaces and Nanomaterials Vii = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials Vii = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials Vi = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials Vi = P. Soc. Photo-opt. Ins. Physical Chemistry of Interfaces and Nanomaterials V = Proc Spie Physical Chemistry of Interfaces and Nanomaterials V = Proc. Spie. Physical Chemistry of Interfaces and Nanomaterials V = P Soc Photo-opt Ins Physical Chemistry of Interfaces and Nanomaterials V = P. Soc. Photo-opt. Ins. Physical Chemistry of Solid State Materials (remces Vi) = Adv Mat Res Physical Chemistry of Solid State Materials (remces Vi) = Adv. Mat. Res. Physical Combinatorics = Prog Math Physical Combinatorics = Prog. Math. Physical Concepts and Materials for Novel Optoelectronic Device Applications Ii: International Symposium = P Soc Photo-opt Ins Physical Concepts and Materials for Novel Optoelectronic Device Applications Ii: International Symposium = P. Soc. Photo-opt. Ins. Physical Concepts of Materials for Novel Optoelectronic Device Applications Ii : Device Physics and Applications, Parts 1 and 2 = P Soc Photo-opt Ins Physical Concepts of Materials for Novel Optoelectronic Device Applications Ii : Device Physics and Applications, Parts 1 and 2 = P. Soc. Photo-opt. Ins. Physical Concepts of Materials for Novel Optoelectronic Device Applications I : Materials Growth and Characterization, Pts 1 and 2 = P Soc Photo-opt Ins Physical Concepts of Materials for Novel Optoelectronic Device Applications I : Materials Growth and Characterization, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Physical Culture, Power, and The Body = Routl Crit Stud Spor Physical Culture, Power, and The Body = Routl. Crit. Stud. Spor. Physical Fitness and Health Promotion in Active Aging = Prog Biomet Physical Fitness and Health Promotion in Active Aging = Prog. Biomet. Physical Geography = Phys Geogr Physical Geography = Phys. Geogr. Physical Geography: The Key Concepts = Routl Key Guides Physical Geography: The Key Concepts = Routl. Key Guides. Physical Geology of High-level Magmatic Systems = Geol Soc Spec Publ Physical Geology of High-level Magmatic Systems = Geol. Soc. Spec. Publ. Physicalism in Mathematics = U W Ont Phi Physicalism in Mathematics = U. W. Ont. Phi. Physicalism, Or Something Near Enough = Princ Monogr Philos Physicalism, Or Something Near Enough = Princ. Monogr. Philos. Physical Measurements and Signatures in Remote Sensing, Vols 1 and 2 = Esa Sp Publ Physical Measurements and Signatures in Remote Sensing, Vols 1 and 2 = Esa. Sp. Publ. Physical Medicine and Rehabilitation Clinics of North America = Phys Med Rehabil Cli Physical Medicine and Rehabilitation Clinics of North America = Phys. Med. Rehabil. Cli. Physical medicine and rehabilitation clinics of North America = Phys Med Rehabil Clin N Am Physical Medicine and Rehabilitation Clinics of North America=Phys Med Rehabil Clin N Am;; Physical Medicine and Rehabilitation Clinics of North America = Phys. Med. Rehabil. Clin. N. Am. Physical Medicine and Rehabilitation Clinics of North America = Phys Med Reh Clin N Physical Medicine and Rehabilitation Clinics of North America = Phys. Med. Reh. Clin. N. Physical Mesomechanics = Phys Mesomech Physical Mesomechanics = Phys. Mesomech. Physical Metallurgy of Direct Chill Casting of Aluminum Alloys = Adv Met Alloy Physical Metallurgy of Direct Chill Casting of Aluminum Alloys = Adv. Met. Alloy. Physical Methods of Organic Chemistry = Phys Meth Org Chem Physical Methods of Organic Chemistry = Phys. Meth. Org. Chem. Physical & occupational therapy in geriatrics = Phys Occup Ther Geriatr Physical & Occupational Therapy in Pediatrics = Phys Occup Ther Pedi Physical & Occupational Therapy in Pediatrics = Phys. Occup. Ther. Pedi. Physical & occupational therapy in pediatrics = Phys Occup Ther Pediatr Physical Oceanography of Sea Straits = Nato Adv Sci I C-mat Physical Oceanography of Sea Straits = Nato. Adv. Sci. I. C-mat. Physical Oceanography of The Baltic Sea = Springer-prax Books Physical Oceanography of The Baltic Sea = Springer-prax. Books. Physical Oceanography = Phys. Oceanogr. Physical Organic Chemistry: New Developments = Chem Res Appl-nova Physical Organic Chemistry: New Developments = Chem. Res. Appl-nova. Physical Origin of Homochirality in Life = Aip Conf Proc Physical Origin of Homochirality in Life = Aip. Conf. Proc. Physical Phenomena in Granular Materials = Mater Res Soc Symp P Physical Phenomena in Granular Materials = Mater. Res. Soc. Symp. P. Physical Processes in Fragmentation and Star Formation = Astrophys Space Sc L Physical Processes in Fragmentation and Star Formation = Astrophys. Space. Sc. L. Physical Processes in Hot Cosmic Plasmas = Nato Adv Sci I C-mat Physical Processes in Hot Cosmic Plasmas = Nato. Adv. Sci. I. C-mat. Physical Processes in Lakes in Oceans = Coast Estuar Stud Physical Processes in Lakes in Oceans = Coast. Estuar. Stud. Physical Processes in The Coastal Zone = Sussp Proc Physical Processes in The Coastal Zone = Sussp. Proc. Physical Properties of Asphalt Cement Binders = Am Soc Test Mater Physical Properties of Asphalt Cement Binders = Am. Soc. Test. Mater. Physical Properties of Magnetic Materials = Molecul Phys Rep Physical Properties of Magnetic Materials = Molecul. Phys. Rep. Physical Properties of Nanosystems = Nato Sec Sci B Phys Physical Properties of Nanosystems = Nato. Sec. Sci. B. Phys. Physical Properties of Polymers = Adv Polym Sci Physical Properties of Polymers = Adv. Polym. Sci. Physical Properties of Textile Fibres, Fourth Edition = Woodhead Publ Mater Physical Properties of Textile Fibres, Fourth Edition = Woodhead. Publ. Mater. Physical Properties of The Low-dimensional A3b6 and A3b3c62 Compounds = Condens Matter Res T Physical Properties of The Low-dimensional A3b6 and A3b3c62 Compounds = Condens. Matter. Res. T. Physical Protection of Nuclear Materials: Experience in Regulation, Implementation and Operations = P S Iaea Physical Protection of Nuclear Materials: Experience in Regulation, Implementation and Operations = P. S. Iaea. Physical Rehabilitation of Paralysed Facial Muscles: Functional and Morphological Correlates = Adv Anat Embryol Cel Physical Rehabilitation of Paralysed Facial Muscles: Functional and Morphological Correlates = Adv. Anat. Embryol. Cel. Physical Research = Phys Res Physical Research = Phys. Res. Physical Review A: Atomic, Molecular, and Optical Physics = Phys. Rev. A: At. Mol. Opt. Phys. Physical Review A: Atomic, Molecular, and Optical Physics = Phys. Rev. A: At., Mol., Opt. Phys. Physical review A: General physics = Phys Rev A Gen Phys Physical Review A-general Physics = Phys Rev A-gen Phys Physical Review A-general Physics = Phys. Rev. A-gen. Phys. Physical review. A = Phys Rev A Physical Review A = Phys Rev A Physical Review A = Phys. Rev. A Physical Review B: Condensed Matter and Materials Physics = Phys. Rev. B: Condens. Matter Mater. Phys. Physical review. B, Condensed matter = Phys Rev B Condens Matter Physical Review B: Condensed Matter = Phys. Rev. B: Condens. Matter Physical Review B = Phys Rev B Physical Review B = Phys. Rev. B Physical Review B-solid State = Phys Rev B-solid St Physical Review B-solid State = Phys. Rev. B-solid St. Physical review C: Nuclear physics = Phys Rev C Nucl Phys Physical Review C: Nuclear Physics = Phys. Rev. C: Nucl. Phys. Physical Review C = Phys Rev C Physical Review C = Phys. Rev. C Physical review D: Particles and fields = Phys Rev D Part Fields Physical Review D: Particles and Fields = Phys. Rev. D: Part. Fields Physical Review D: Particles, Fields, Gravitation, and Cosmology = Phys. Rev. D: Part., Fields, Gravitation, Cosmol. Physical Review D = Phys Rev D Physical Review D = Phys. Rev. D Physical Review E = Phys Rev E Physical Review E = Phys. Rev. E Physical Review E = Phys. Rev. E (3) Physical Review E: Statistical, Nonlinear, and Soft Matter Physics = Phys. Rev. E: Stat. Nonlinear Soft Matter Phys. Physical Review E: Statistical, Nonlinear, and Soft Matter Physics = Phys. Rev. E: Stat., Nonlinear, Soft Matter Phys. Physical review. E, Statistical, nonlinear, and soft matter physics = Phys Rev E Stat Nonlin Soft Matter Phys Physical Review. E, Statistical, Nonlinear, and Soft Matter Physics = Phys. Rev. E Stat. Nonlin. Soft Matter Phys. Physical Review E: Statistical Physics, Plasmas, Fluids, and Related Interdisciplinary Topics = Phys. Rev. E: Stat. Phys. Plasmas Fluids Relat. Interdisciplin. Top. Physical review. E, Statistical physics, plasmas, fluids, and related interdisciplinary topics = Phys Rev E Stat Phys Plasmas Fluids Relat Interdiscip Topics Physical review letters = Phys Rev Lett Physical Review Letters = Phys. Rev. Lett. Physical Review Letters = Phys Rev Lett Physical Review Letters = Phys. Rev. Lett. Physical Review = Phys Rev Physical Review = Phys. Rev. Physical Review = Phys. Rev. A (3) Physical Review = Phys. Rev. D (3) Physical Review Special Topics-accelerators and Beams = Phys Rev Spec Top-ac Physical Review Special Topics-accelerators and Beams = Phys. Rev. Spec. Top-ac. Physical Review Special Topics - Accelerators and Beams = Phys. Rev. Spec. Top. Accel Beams Physical Review Special Topics-physics Education Research = Phys Rev Spec Top-ph Physical Review Special Topics-physics Education Research = Phys. Rev. Spec. Top-ph. Physical Review Special Topics - Physics Education Research = Phys. Rev. Spec. Top. Phys. Educ. Res. Physical Sciences Series of The Commission of European Communities = Phy Sci Cec Physical Sciences Series of The Commission of European Communities = Phy. Sci. Cec. Physical Separaion in Science and Engineering = Phys. Sep. Sci. Eng. Physical Signatures of Magnetospheric Boundary Layer Processes = Nato Adv Sci Inst Se Physical Signatures of Magnetospheric Boundary Layer Processes = Nato. Adv. Sci. Inst. Se. Physical Soil Mechanics = Adv Geophys Env Mech Physical Soil Mechanics = Adv. Geophys. Env. Mech. Physical Status: The Use and Interpretation of Anthropometry = Who Tech Rep Ser Physical Status: The Use and Interpretation of Anthropometry = Who. Tech. Rep. Ser. Physical Supramolecular Chemistry = Nato Adv Sci Inst Se Physical Supramolecular Chemistry = Nato. Adv. Sci. Inst. Se. Physical Theory and Its Interpretation: Essays in Honor of Jeffrey Bub = W Ont Ser Philos Sci Physical Theory and Its Interpretation: Essays in Honor of Jeffrey Bub = W. Ont. Ser. Philos. Sci. Physical Therapy in Sport = Phys Ther Sport Physical Therapy in Sport = Phys. Ther. Sport Physical therapy = Phys Ther Physical Therapy=Phys Ther;; Physical Therapy = Phys Ther Physical Therapy = Phys. Ther. Physica Medica-european Journal of Medical Physics = Phys Medica Physica Medica-european Journal of Medical Physics = Phys. Medica. Physica Medica = Physica Med. Physica Medica = Phys Medica Physica Medica = Phys. Medica Physica medica : PM : an international journal devoted to the applications of physics to medicine and biology : official journal of the Italian Association of Biomedical Physics (AIFB) = Phys Med Physica Norvegica = Phys Norv Physica Norvegica = Phys. Norv. Physica = Physica Physica Scripta = Phys. Scr. Physica Scripta = Phys. Scripta Physica Scripta = Phys Scripta Physica Scripta = Phys. Scripta Physica Scripta, T = Phys. Scr., T Physica Scripta, T. = Phys. Scr. T. Physica Status Solidi A Applications and Material Science = Phys. Status Solidi A Physica Status Solidi A-applications and Materials Science = Phys Status Solidi A Physica Status Solidi A-applications and Materials Science = Phys. Status Solidi A. Physica Status Solidi A: Applications and Materials Science = Phys. Status Solidi A Physica Status Solidi A-applied Research = Phys Status Solidi A Physica Status Solidi A-applied Research = Phys. Status Solidi A. Physica Status Solidi B-basic Research = Phys Status Solidi B Physica Status Solidi B-basic Research = Phys. Status Solidi B. Physica Status Solidi B-basic Solid State Physics = Phys Status Solidi B Physica Status Solidi B-basic Solid State Physics = Phys. Status Solidi B. Physica Status Solidi B Basic Solid State Physics = Phys. Status Solidi B Physica Status Solidi B: Basic Solid State Physics = Phys. Status Solidi B Physica Status Solidi C - Conference and Critical Reviews, Vol 2, No 10 = Phys Status Solidi C Physica Status Solidi C - Conference and Critical Reviews, Vol 2, No 10 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 1, No 1 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 1, No 1 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol. 2 , No 11 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol. 2 , No 11 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2 , No 12 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2 , No 12 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 4 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 4 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 5 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 5 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 6 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 6 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 7 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 7 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 8 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 8 = Phys. Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 9 = Phys Status Solidi C Physica Status Solidi C - Conferences and Critical Reviews, Vol 2, No 9 = Phys. Status Solidi C Physica Status Solidi C-current Topics in Solid State Physics = Phys Status Solidi C Physica Status Solidi C-current Topics in Solid State Physics = Phys. Status Solidi C. Physica Status Solidi C Current Topics in Solid State Physics = Phys Status Solidi C Physica Status Solidi C Current Topics in Solid State Physics = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 0, No 8 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 0, No 8 = Phys. Status Solidi C. Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 10 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 10 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 11 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 11 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 12 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 12 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No1 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No1 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 2 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 2 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3 No 3 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3 No 3 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 4 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 4 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 5 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 5 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 6 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 6 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 7 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 7 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 8 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 8 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 9 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 3, No 9 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 10 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 10 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 11 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 11 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 12 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 12 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 1 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 1 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 2 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 2 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 3 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 3 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics Vol 4, No 4 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics Vol 4, No 4 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 5 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 5 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4 No 6 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4 No 6 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4 No 7 2007 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4 No 7 2007 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 8 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 4, No 8 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 10 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 10 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 11 2008 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 11 2008 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 12 2008 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 12 2008 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 1 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 1 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 2 2008 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 2 2008 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 3 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 3 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 4 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 4 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 5 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 5 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 6 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 6 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 7 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 7 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 9 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 5, No 9 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 10 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 10 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 11 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 11 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 12 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 12 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 1 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 1 = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, No 2 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, No 2 = Phys. Status Solidi C. Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 3 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 3 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 4 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 4 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 5 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 5 = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, No 6 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, No 6 = Phys. Status Solidi C. Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 7 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 7 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 8 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 8 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 9 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 6, No 9 = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, Suppl 1 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, Suppl 1 = Phys. Status Solidi C. Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, Suppl 2 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 6, Suppl 2 = Phys. Status Solidi C. Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7, No 1 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7, No 1 = Phys. Status Solidi C. Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7, No 2 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7, No 2 = Phys. Status Solidi C. Physica Status Solidi C - Current Topics in Solid State Physics, Vol 7 No 3-4 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 7 No 3-4 = Phys. Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 7 No 5 = Phys Status Solidi C Physica Status Solidi C - Current Topics in Solid State Physics, Vol 7 No 5 = Phys. Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7 No 6 = Phys Status Solidi C Physica Status Solidi C: Current Topics in Solid State Physics, Vol 7 No 6 = Phys. Status Solidi C. Physica Status Solidi C: Magnetic and Superconducting Materials, Proceedings = Phys Status Solidi C Physica Status Solidi C: Magnetic and Superconducting Materials, Proceedings = Phys. Status Solidi C. Physica Status Solidi = Phys Status Solidi Physica Status Solidi = Phys. Status Solidi Physica Status Solidi-rapid Research Letters = Phys Status Solidi-r Physica Status Solidi-rapid Research Letters = Phys. Status Solidi-r. Physica Status Solidi Rapid Research Letters = Phys. Status Solidi RRL Physica Status Solidi RRL: Rapid Research Letters = Phys. Status Solidi RRL Physician and Sportsmedicine = Physician Sportsmed Physician and Sportsmedicine = Physician Sportsmed. Physician assistant (American Academy of Physician Assistants) = Physician Assist Physician assistant. Health practitioner = Physician Assist Health Pract Physician Assistant. Health Practitioner = Physician Assist. Health Pract. Physician assistant = Physician Assist Physician Assistant = Physician Assist. Physician-assisted Suicide: What Are The Issues? = Philos Med Physician-assisted Suicide: What Are The Issues? = Philos. Med. Physician east = Phys East Physician executive = Physician Exec Physician Executive = Physician Exec Physician Executive = Physician Exec. Physician performance & payment report = Physician Perform Paym Rep Physician relations update / American Health Consultants = Physician Relat Update Physician Relations Update = Physician Relat. Update Physicians At War = Int Libr Eth Law New Physicians At War = Int. Libr. Eth. Law. New. Physician's management = Physicians Manage Physicians Management = Physicians Manage. Physician's world = Physicians World Physicists Outlook On New Materials = Key Eng Mat Physicists Outlook On New Materials = Key. Eng. Mat. Physico-chemical Aspects of Soil and Related Materials = Am Soc Test Mater Physico-chemical Aspects of Soil and Related Materials = Am. Soc. Test. Mater. Physico-chemical Behaviour of Atmospheric Pollutants = Air Poll R Physico-chemical Behaviour of Atmospheric Pollutants = Air. Poll. R. Physicochemical Hydrodynamics = Physicochem Hydrodyn Physicochemical Hydrodynamics = Physicochem. Hydrodyn. Physicochemical Problems of Mineral Processing = Physicochem Probl Mi Physicochemical Problems of Mineral Processing = Physicochem. Probl. Mi. Physics-a Journal of General and Applied Physics = Physics-j Gen Appl P Physics-a Journal of General and Applied Physics = Physics-j. Gen. Appl. P. Physics and Applications of Defects in Advanced Semiconductors = Mater Res Soc Symp P Physics and Applications of Defects in Advanced Semiconductors = Mater. Res. Soc. Symp. P. Physics and Applications of Non-crystalline Semiconductors in Optoelectronics = Nato Asi 3 High Tech Physics and Applications of Non-crystalline Semiconductors in Optoelectronics = Nato. Asi. 3. High. Tech. Physics and Applications of Optical Solitons in Fibres '95 = Sol Sci Technol Lib Physics and Applications of Optical Solitons in Fibres '95 = Sol. Sci. Technol. Lib. Physics and Applications of Optoelectronic Devices = P Soc Photo-opt Ins Physics and Applications of Optoelectronic Devices = P. Soc. Photo-opt. Ins. Physics and Applications of Pseudosparks = Nato Adv Sci I B-phy Physics and Applications of Pseudosparks = Nato. Adv. Sci. I. B-phy. Physics and Astrophysics From A Lunar Base = Aip Conf Proc Physics and Astrophysics From A Lunar Base = Aip. Conf. Proc. Physics and Astrophysics in The Space Station Era = Ital Phy So Physics and Astrophysics in The Space Station Era = Ital. Phy. So. Physics and Astrophysics of Planetary Systems = Eas Publications Physics and Astrophysics of Planetary Systems = Eas. Publications. Physics and Astrophysics of Ultra-high-energy Cosmic Rays = Lect Notes Phys Physics and Astrophysics of Ultra-high-energy Cosmic Rays = Lect. Notes. Phys. Physics and Chemistry Basis of Biotechnology, Vol 7 = Focus Biotechnol Physics and Chemistry Basis of Biotechnology, Vol 7 = Focus. Biotechnol. Physics and Chemistry of Alkali Metal Adsorption = Mater Sci Monog Physics and Chemistry of Alkali Metal Adsorption = Mater. Sci. Monog. Physics and Chemistry of Carbides, Nitrides and Borides = Nato Adv Sci I E-app Physics and Chemistry of Carbides, Nitrides and Borides = Nato. Adv. Sci. I. E-app. Physics and Chemistry of Clusters = Nobel Symp Physics and Chemistry of Clusters = Nobel. Symp. Physics and Chemistry of Finite Systems : From Clusters to Crystals, Vols 1 and 2 = Nato Adv Sci I C-mat Physics and Chemistry of Finite Systems : From Clusters to Crystals, Vols 1 and 2 = Nato. Adv. Sci. I. C-mat. Physics and Chemistry of Glasses-european Journal of Glass Science and Technology Part B = Phys Chem Glasses-b Physics and Chemistry of Glasses-european Journal of Glass Science and Technology Part B = Phys. Chem. Glasses-b. Physics and Chemistry of Glasses: European Journal of Glass Science and Technology, Part B = Phys. Chem. Glasses: Eur. J. Glass Sci. Technol., Part B Physics and Chemistry of Glasses = Phys Chem Glasses Physics and Chemistry of Glasses = Phys. Chem. Glasses Physics and Chemistry of Liquids = Phys Chem Liq Physics and Chemistry of Liquids = Phys. Chem. Liq. Physics and Chemistry of Low-dimensional Inorganic Conductors = Nato Adv Sci Inst Se Physics and Chemistry of Low-dimensional Inorganic Conductors = Nato. Adv. Sci. Inst. Se. Physics and Chemistry of Luminescent Materials = Elec Soc S Physics and Chemistry of Luminescent Materials = Elec. Soc. S. Physics and Chemistry of Minerals = Phys Chem Miner Physics and Chemistry of Minerals = Phys. Chem. Miner. Physics and Chemistry of Sio(2) and The Si-sio(2) Interface-3, 1996 = Elec Soc S Physics and Chemistry of Sio(2) and The Si-sio(2) Interface-3, 1996 = Elec. Soc. S. Physics and Chemistry of Sio2 and The Si-sio2 Interface - 4 = Elec Soc S Physics and Chemistry of Sio2 and The Si-sio2 Interface - 4 = Elec. Soc. S. Physics and Chemistry of the Earth B = Phys. Chem Earth B Physics and Chemistry of The Earth/delta = Phys Chem Earth/delt Physics and Chemistry of The Earth/delta = Phys. Chem. Earth/delt. Physics and Chemistry of the Earth, Part A: Solid Earth and Geodesy = Phys. Chem. Earth Part A. Physics and Chemistry of The Earth Part A-solid Earth and Geodesy = Phys Chem Earth Pt A Physics and Chemistry of The Earth Part A-solid Earth and Geodesy = Phys. Chem. Earth Pt. A. Physics and Chemistry of the Earth, Part B: Hydrology, Oceans and Atmosphere = Phys. Chem. Earth Part B Physics and Chemistry of The Earth Part B-hydrology Oceans and Atmosphere = Phys Chem Earth Pt B Physics and Chemistry of The Earth Part B-hydrology Oceans and Atmosphere = Phys. Chem. Earth Pt. B. Physics and Chemistry of The Earth Part C-solar-terrestial and Planetary Science = Phys Chem Earth Pt C Physics and Chemistry of The Earth Part C-solar-terrestial and Planetary Science = Phys. Chem. Earth Pt. C. Physics and Chemistry of the Earth, Part C: Solar, Terrestrial & Planetary Science = Phys. Chem. Earth Part C Physics and Chemistry of the Earth = Phys. Chem. Earth. Physics and Chemistry of The Earth = Phys Chem Earth Physics and Chemistry of The Earth = Phys. Chem. Earth Physics and Chemistry of The Earth, Vol 20, No 1 = Phys Chem Earth Physics and Chemistry of The Earth, Vol 20, No 1 = Phys. Chem. Earth. Physics and Chemistry of The Earth, Vol 20, No 2 = Phys Chem Earth Physics and Chemistry of The Earth, Vol 20, No 2 = Phys. Chem. Earth. Physics and Chemistry of The Earth, Vol 20, No 3/4 = Phys Chem Earth Physics and Chemistry of The Earth, Vol 20, No 3/4 = Phys. Chem. Earth. Physics and Chemistry of The Earth, Vol 21, No 3, May 1996 = Phys Chem Earth/delt Physics and Chemistry of The Earth, Vol 21, No 3, May 1996 = Phys. Chem. Earth/delt. Physics and Chemistry of The Fullerenes = Nato Adv Sci Inst Se Physics and Chemistry of The Fullerenes = Nato. Adv. Sci. Inst. Se. Physics and Engineering of New Materials = Springer Proc Phys Physics and Engineering of New Materials = Springer. Proc. Phys. Physics and Experiments With Future Linear E(plus) E(minus) Colliders = Aip Conf Proc Physics and Experiments With Future Linear E(plus) E(minus) Colliders = Aip. Conf. Proc. Physics and Materials Science of High Temperature Superconductors, Ii = Nato Adv Sci I E-app Physics and Materials Science of High Temperature Superconductors, Ii = Nato. Adv. Sci. I. E-app. Physics and Materials Science of High Temperature Superconductors, Iv = Nato Asi 3 High Tech Physics and Materials Science of High Temperature Superconductors, Iv = Nato. Asi. 3. High Tech. Physics and Materials Science of High Temperature Superconductors = Nato Adv Sci I E-app Physics and Materials Science of High Temperature Superconductors = Nato. Adv. Sci. I. E-app. Physics and Materials Science of Vortex States, Flux Pinning and Dynamics = Nato Adv Sci I E-app Physics and Materials Science of Vortex States, Flux Pinning and Dynamics = Nato. Adv. Sci. I. E-app. Physics and Mathematics of Gravitation = Aip Conf Proc Physics and Mathematics of Gravitation = Aip. Conf. Proc. Physics and Modelling of Wind Erosion = Atmos Ocean Sci Lib Physics and Modelling of Wind Erosion = Atmos. Ocean. Sci. Lib. Physics and Number Theory = Irma Lect Math Theor Physics and Number Theory = Irma. Lect. Math. Theor. Physics and Parameterization of Moist Atmospheric Convection = Nato Adv Sci I C-mat Physics and Parameterization of Moist Atmospheric Convection = Nato. Adv. Sci. I. C-mat. Physics and Properties of Narrow Gap Semiconductors = Microdevice Phys Fab Physics and Properties of Narrow Gap Semiconductors = Microdevice. Phys. Fab. Physics and Simulation of Optoelectronic Devices Iii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Iii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Ii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Ii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Iv = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Iv = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Ix = Proc Spie Physics and Simulation of Optoelectronic Devices Ix = Proc. Spie. Physics and Simulation of Optoelectronic Devices Ix = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Ix = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Viii, Pts 1 and 2 = Proc Spie Physics and Simulation of Optoelectronic Devices Viii, Pts 1 and 2 = Proc. Spie. Physics and Simulation of Optoelectronic Devices Viii, Pts 1 and 2 = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Viii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Vii = Proc Spie Physics and Simulation of Optoelectronic Devices Vii = Proc. Spie. Physics and Simulation of Optoelectronic Devices Vii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Vii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Vi, Pts 1 and 2 = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Vi, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices V = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices V = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xiii = Proc Spie Physics and Simulation of Optoelectronic Devices Xiii = Proc. Spie. Physics and Simulation of Optoelectronic Devices Xiii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xiii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xi = Proc Spie Physics and Simulation of Optoelectronic Devices Xi = Proc. Spie. Physics and Simulation of Optoelectronic Devices Xi = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xi = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xiv = Proc Spie Physics and Simulation of Optoelectronic Devices Xiv = Proc. Spie. Physics and Simulation of Optoelectronic Devices Xiv = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xiv = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xix = Proc Spie Physics and Simulation of Optoelectronic Devices Xix = Proc. Spie. Physics and Simulation of Optoelectronic Devices X = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices X = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xviii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xviii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xvii = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xvii = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xvi = Proc Spie Physics and Simulation of Optoelectronic Devices Xvi = Proc. Spie. Physics and Simulation of Optoelectronic Devices Xvi = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xvi = P. Soc. Photo-opt. Ins. Physics and Simulation of Optoelectronic Devices Xv = Proc Spie Physics and Simulation of Optoelectronic Devices Xv = Proc. Spie. Physics and Simulation of Optoelectronic Devices Xv = P Soc Photo-opt Ins Physics and Simulation of Optoelectronic Devices Xv = P. Soc. Photo-opt. Ins. Physics and Technology of High-k Gate Dielectrics 6 = Ecs Transactions Physics and Technology of High-k Gate Dielectrics 6 = Ecs. Transactions. Physics and Technology of High-k Gate Dielectrics I = Elec Soc S Physics and Technology of High-k Gate Dielectrics I = Elec. Soc. S. Physics and Technology of High-k Gate Dielectrics Ii = Elec Soc S Physics and Technology of High-k Gate Dielectrics Ii = Elec. Soc. S. Physics and Technology of Organic Semiconductor Devices = Mater Res Soc Symp P Physics and Technology of Organic Semiconductor Devices = Mater. Res. Soc. Symp. P. Physics At 18-plus = Iop Short Meet Serie Physics At 18-plus = Iop. Short. Meet. Serie. Physics At Electron Beam Ion Traps and Advanced Research Light Sources 2005 = J Phys Conf Ser Physics At Electron Beam Ion Traps and Advanced Research Light Sources 2005 = J. Phys. Conf. Ser. Physics At Lep2, Vol. 1 = Cern Report Physics At Lep2, Vol. 1 = Cern. Report. Physics At Lep2, Vol. 2 = Cern Report Physics At Lep2, Vol. 2 = Cern. Report. Physics At Superlear = Inst Phys Conf Ser Physics At Superlear = Inst. Phys. Conf. Ser. Physics At The Highest Energy and Luminosity = Subnucl Ser Physics At The Highest Energy and Luminosity = Subnucl. Ser. Physics-based Mathematical Models for Low-dimensional Semiconductor Nanostructures: Analysis and Computation = J Phys Conf Ser Physics-based Mathematical Models for Low-dimensional Semiconductor Nanostructures: Analysis and Computation = J. Phys. Conf. Ser. Physics-based Technologies for The Detection of Contraband = P Soc Photo-opt Ins Physics-based Technologies for The Detection of Contraband = P. Soc. Photo-opt. Ins. Physics, Chemistry, and Dynamics of Interplanetary Dust = Astr Soc P Physics, Chemistry, and Dynamics of Interplanetary Dust = Astr. Soc. P. Physics Education = Phys. Educ. Physics Education Research = Phys. Educ. Res. Physics Essays = Phys. Essays Physics Essays = Phys Essays Physics Essays = Phys. Essays Physics, Formation and Evolution of Rotating Stars = Astron Astrophys Lib Physics, Formation and Evolution of Rotating Stars = Astron. Astrophys. Lib. Physics for Medical Imaging Applications = Nato Sci Ser Ii Math Physics for Medical Imaging Applications = Nato. Sci. Ser. Ii. Math. Physics, Geometry, and Topology = Nato Adv Sci I B-phy Physics, Geometry, and Topology = Nato. Adv. Sci. I. B-phy. Physics in Collision 10 = Phys Collis Physics in Collision 10 = Phys. Collis. Physics in Collision Conference Series = Phys Collis Physics in Collision Conference Series = Phys. Collis. Physics in Local Lattice Distortions: Fundamentals and Novel Concepts Lld2k = Aip Conf Proc Physics in Local Lattice Distortions: Fundamentals and Novel Concepts Lld2k = Aip. Conf. Proc. Physics in medicine and biology = Phys Med Biol Physics in Medicine and Biology = Phys Med Biol Physics in Medicine and Biology = Phys. Med. Biol. Physics In Medicine and Biology=Phys Med Biol;; Physics in Medicine & Biology = Phys. Med. Biol. Physics in Perspective = Phys Perspect Physics in Perspective = Phys. Perspect. Physics in Technology = Phys Technol Physics in Technology = Phys. Technol. Physics letters. A = Phys Lett A Physics Letters A = Phys Lett A Physics Letters A = Phys. Lett. A Physics Letters B = Phys Lett B Physics Letters B = Phys. Lett. B Physics letters. [Part B] = Phys Lett B Physics Letters = Phys Lett Physics Letters = Phys. Lett. Physics Letters = Phys. Lett. A Physics Letters = Phys. Lett. B Physics Methods in Archaeometry = P Int Sch Phys Physics Methods in Archaeometry = P. Int. Sch. Phys. Physics-new York = Physics-new York Physics Notes = Phys. Notes Physics of Active Galactic Nuclei At All Scales = Lect Notes Phys Physics of Active Galactic Nuclei At All Scales = Lect. Notes. Phys. Physics of Alternative Magnetic Confinement Schemes = Int Sch Pl Physics of Alternative Magnetic Confinement Schemes = Int. Sch. Pl. Physics Of, and Science With, The X-ray Free-electron Laser = Aip Conf Proc Physics Of, and Science With, The X-ray Free-electron Laser = Aip. Conf. Proc. Physics of Atomic Nuclei = Phys. At. Nucl. Physics of Atomic Nuclei = Phys. Atomic Nuclei Physics of Atomic Nuclei = Phys Atom Nucl+ Physics of Atomic Nuclei = Phys. Atom. Nucl+.+ Physics of Atoms and Molecules = Phys Atoms Physics of Atoms and Molecules = Phys. Atoms Physics of Atoms and Molecules = Phys. Atoms and Molecules Physics of Beams = Aip Conf Proc Physics of Beams = Aip. Conf. Proc. Physics of Black Holes: A Guided Tour = Lect Notes Phys Physics of Black Holes: A Guided Tour = Lect. Notes. Phys. Physics of Charged Bodies in Space Plasmas = Int Sch Pl Physics of Charged Bodies in Space Plasmas = Int. Sch. Pl. Physics of Chromospheric Plasmas = Astr Soc P Physics of Chromospheric Plasmas = Astr. Soc. P. Physics of Collisionless Shocks = Adv Space Res Physics of Collisionless Shocks = Adv. Space. Res. Physics of Collisionless Shocks = Adv Space Res-series Physics of Collisionless Shocks = Adv. Space. Res-series. Physics of Collisionless Shocks = Aip Conf Proc Physics of Collisionless Shocks = Aip. Conf. Proc. Physics of Complex Systems (new Advances and Perspectives) = P Int Sch Phys Physics of Complex Systems (new Advances and Perspectives) = P. Int. Sch. Phys. Physics of Complex Systems = P Int Sch Phys Physics of Complex Systems = P. Int. Sch. Phys. Physics of Condensed Matter = Phys Condens Matter Physics of Condensed Matter = Phys. Condens. Matter Physics of Diamond = P Int Sch Phys Physics of Diamond = P. Int. Sch. Phys. Physics of Dry Granular Media = Nato Adv Sci I E-app Physics of Dry Granular Media = Nato. Adv. Sci. I. E-app. Physics of Dusty Plasmas = Aip Conf Proc Physics of Dusty Plasmas = Aip. Conf. Proc. Physics of Earth and Space Environments = Phys Earth Space Env Physics of Earth and Space Environments = Phys. Earth Space Env. Physics of Electronic and Atomic Collisions = Aip Conf Proc Physics of Electronic and Atomic Collisions = Aip. Conf. Proc. Physics of Ferroelectrics: A Modern Perspective = Top Appl Phys Physics of Ferroelectrics: A Modern Perspective = Top. Appl. Phys. Physics of Fluids A: Fluid Dynamics = Phys. Fluids A Physics of Fluids A-fluid Dynamics = Phys Fluids A-fluid Physics of Fluids A-fluid Dynamics = Phys. Fluids A-fluid Physics of Fluids A = Phys. Fluids A Physics of Fluids B = Phys. Fluids B Physics of Fluids B: Plasma Physics = Phys. Fluids B Physics of Fluids B-plasma Physics = Phys Fluids B-plasma Physics of Fluids B-plasma Physics = Phys. Fluids B-plasma Physics of Fluids = Phys. Fluids Physics of Fluids = Phys Fluids Physics of Fluids = Phys. Fluids Physics of Galaxy Formation, Proceedings = Astr Soc P Physics of Galaxy Formation, Proceedings = Astr. Soc. P. Physics of Glasses = Aip Conf Proc Physics of Glasses = Aip. Conf. Proc. Physics of Granula Media = Les Houches Physics of Granula Media = Les. Houches. Physics of High Energy Particles in Toroidal Systems = Aip Conf Proc Physics of High Energy Particles in Toroidal Systems = Aip. Conf. Proc. Physics of Highly-ionized Atoms = Nato Adv Sci I B-phy Physics of Highly-ionized Atoms = Nato. Adv. Sci. I. B-phy. Physics of High-temperature Superconductors = Springer Series Soli Physics of High-temperature Superconductors = Springer. Series. Soli. Physics of Ionized Gases = Aip Conf Proc Physics of Ionized Gases = Aip. Conf. Proc. Physics of Irradiation Effects in Metals = Mater Sci Forum Physics of Irradiation Effects in Metals = Mater. Sci. Forum. Physics of Lakes: Lakes As Oscillators, Vol 2 = Adv Geophys Env Mech Physics of Lakes: Lakes As Oscillators, Vol 2 = Adv. Geophys. Env. Mech. Physics of Lakes, Vol 1: Foundation of The Mathematical and Physical Background = Adv Geophys Env Mech Physics of Lakes, Vol 1: Foundation of The Mathematical and Physical Background = Adv. Geophys. Env. Mech. Physics of Laser Crystals = Nato Sci Ser Ii Math Physics of Laser Crystals = Nato. Sci. Ser. Ii. Math. Physics of Life Reviews = Phys Life Rev Physics of Life Reviews = Phys. Life Rev. Physics of Liners in View of Recent Observations = Astr Soc P Physics of Liners in View of Recent Observations = Astr. Soc. P. Physics of Low-dimensional Structures = Phys Low-dimens Str Physics of Low-dimensional Structures = Phys. Low-dimens. Str. Physics of Magnetic Flux Ropes = Geoph Monog Series Physics of Magnetic Flux Ropes = Geoph. Monog. Series. Physics of Medical Imaging - Medical Imaging 1997 = P Soc Photo-opt Ins Physics of Medical Imaging - Medical Imaging 1997 = P. Soc. Photo-opt. Ins. Physics of Medical Imaging = P Soc Photo-opt Ins Physics of Medical Imaging = P. Soc. Photo-opt. Ins. Physics of Metals and Metallography = Phys. Met. Metall. Physics of Metals and Metallography = Phys Met Metallogr Physics of Metals and Metallography = Phys Met Metallogr+ Physics of Metals and Metallography = Phys. Met. Metallogr. Physics of Metals and Metallography = Phys. Met. Metallogr+.+ Physics of Metals and Metallography-ussr = Phys Metals Metallog Physics of Metals and Metallography-ussr = Phys. Metals Metallog. Physics of Metals = Phys Met+ Physics of Metals = Phys. Met. Physics of Metals = Phys. Met+.+ Physics of Modern Brachytherapy for Oncology = Ser Med Phys Biomed Physics of Modern Brachytherapy for Oncology = Ser. Med. Phys. Biomed. Physics of Nanostructured Solar Cells = Renew Energy Res Dev Physics of Nanostructured Solar Cells = Renew. Energy. Res. Dev. Physics of Nanostructures = Sussp Proc Physics of Nanostructures = Sussp. Proc. Physics of Nearby Galaxies = Moriond Ast Physics of Nearby Galaxies = Moriond. Ast. Physics of Negative Refraction and Negative Index Materials = Springer Ser Mater S Physics of Negative Refraction and Negative Index Materials = Springer. Ser. Mater. S. Physics of Organic Superconductors and Conductors = Springer Ser Mater S Physics of Organic Superconductors and Conductors = Springer. Ser. Mater. S. Physics of Particle Accelerators, Vols 1 and 2 = Aip Conf Proc Physics of Particle Accelerators, Vols 1 and 2 = Aip. Conf. Proc. Physics of Particles and Nuclei Letters = Phys. Part. Nucl. Lett. Physics of Particles and Nuclei = Phys. Particles Nuclei Physics of Particles and Nuclei = Phys. Part. Nucl. Physics of Particles and Nuclei = Phys Part Nuclei Physics of Particles and Nuclei = Phys Part Nuclei+ Physics of Particles and Nuclei = Phys. Part. Nuclei Physics of Particles and Nuclei = Phys. Part. Nuclei+.+ Physics of Plasmas = Phys. Plasmas Physics of Plasmas = Phys Plasmas Physics of Plasmas = Phys. Plasmas Physics of Polymer Networks = Prog Coll Pol Sci S Physics of Polymer Networks = Prog. Coll. Pol. Sci. S. Physics of Proteins: An Introduction to Biological Physics and Molecular Biophysics = Biol Med Phys Biomed Physics of Proteins: An Introduction to Biological Physics and Molecular Biophysics = Biol. Med. Phys. Biomed. Physics of Relativistic Objects in Compact Binaries: From Birth to Coalescence = Astrophys Space Sc L Physics of Relativistic Objects in Compact Binaries: From Birth to Coalescence = Astrophys. Space. Sc. L. Physics of Rotating Fluids = Lect Notes Phys Physics of Rotating Fluids = Lect. Notes. Phys. Physics of Semiconductor Devices, Vols 1 and 2 = P Soc Photo-opt Ins Physics of Semiconductor Devices, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Physics of Semiconductors 2002, Proceedings = Inst Phys Conf Ser Physics of Semiconductors 2002, Proceedings = Inst. Phys. Conf. Ser. Physics of Semiconductors = Aip Conf Proc Physics of Semiconductors = Aip. Conf. Proc. Physics of Semiconductors: An Introduction Including Nanophysics and Applications, Second Edition = Grad Texts Phys Physics of Semiconductors: An Introduction Including Nanophysics and Applications, Second Edition = Grad. Texts. Phys. Physics of Semiconductors, Pts A and B = Aip Conf Proc Physics of Semiconductors, Pts A and B = Aip. Conf. Proc. Physics of Sliding Friction = Nato Adv Sci I E-app Physics of Sliding Friction = Nato. Adv. Sci. I. E-app. Physics of Solar and Stellar Coronae: G.s Vaiana Memorial Symposium = Astrophys Space Sc L Physics of Solar and Stellar Coronae: G.s Vaiana Memorial Symposium = Astrophys. Space. Sc. L. Physics of Star Formation and Early Stellar Evolution = Nato Adv Sci I C-mat Physics of Star Formation and Early Stellar Evolution = Nato. Adv. Sci. I. C-mat. Physics of Sustainable Energy = Aip Conf Proc Physics of Sustainable Energy = Aip. Conf. Proc. Physics of The Early Universe = Lect Notes Phys Physics of The Early Universe = Lect. Notes. Phys. Physics of The Early Universe = Sussp Proc Physics of The Early Universe = Sussp. Proc. Physics of the Earth and Planetary Interiors = Phys. Earth Planet. In. Physics of The Earth and Planetary Interiors = Phys Earth Planet In Physics of The Earth and Planetary Interiors = Phys. Earth Planet. In. Physics of the Earth and Planetary Interiors = Phys. Earth Planet. Inter. Physics of The Gaseous and Stellar Disks of The Galaxy = Astr Soc P Physics of The Gaseous and Stellar Disks of The Galaxy = Astr. Soc. P. Physics of The Inner Heliosheath: Voyager Observations, Theory, and Future Prospects = Aip Conf Proc Physics of The Inner Heliosheath: Voyager Observations, Theory, and Future Prospects = Aip. Conf. Proc. Physics of The Interstellar and Intergalactic Medium = Pr S Astrop Physics of The Interstellar and Intergalactic Medium = Pr. S. Astrop. Physics of The Interstellar Medium and Intergalactic Medium = Astr Soc P Physics of The Interstellar Medium and Intergalactic Medium = Astr. Soc. P. Physics of The Outer Heliosphere = Aip Conf Proc Physics of The Outer Heliosphere = Aip. Conf. Proc. Physics of The Outer Heliosphere = Cospar Coll Physics of The Outer Heliosphere = Cospar. Coll. Physics of The Quark-gluon Plasma: Introductory Lectures = Lect Notes Phys Physics of The Quark-gluon Plasma: Introductory Lectures = Lect. Notes. Phys. Physics of the Solid State = Phys. Solid State Physics of The Solid State = Phys Solid State+ Physics of The Solid State = Phys. Solid State+.+ Physics of Wave Phenomena = Phys Wave Phenom Physics of Wave Phenomena = Phys. Wave Phenom. Physics of Wave Phenomenon = Phys. Wave Phenom. Physics On Manifolds = Math Phys S Physics On Manifolds = Math. Phys. S. Physics = Phys. Dokl. Physics Potential and Development of Mu+mu- Colliders = Aip Conf Proc Physics Potential and Development of Mu+mu- Colliders = Aip. Conf. Proc. Physics Potential and Development of Muon Colliders and Neutrino Factories = Aip Conf Proc Physics Potential and Development of Muon Colliders and Neutrino Factories = Aip. Conf. Proc. Physics Potential and Development of Of Mu(plus)mu(-) Colliders, Second Workshop = Aip Conf Proc Physics Potential and Development of Of Mu(plus)mu(-) Colliders, Second Workshop = Aip. Conf. Proc. Physics Procedia = Physcs Proc Physics Procedia = Physcs. Proc. Physics Procedia = Physics Procedia Physics Reports of Kumamoto University = Phys. Rep. Kumamoto Univ. Physics reports = Phys Rep Physics Reports = Phys. Rep. Physics Reports = Phys. Rep. Physics Reports-review Section of Physics Letters = Phys Rep Physics Reports-review Section of Physics Letters = Phys. Rep. Physics Research and Technology = Phys Res Technol Physics Research and Technology = Phys. Res. Technol. Physics Teacher = Phys Teach Physics Teacher = Phys. Teach. Physics, Theory, and Applications of Periodic Structures in Optics Ii = Proc Spie Physics, Theory, and Applications of Periodic Structures in Optics Ii = Proc. Spie. Physics, Theory, and Applications of Periodic Structures in Optics Ii = P Soc Photo-opt Ins Physics, Theory, and Applications of Periodic Structures in Optics Ii = P. Soc. Photo-opt. Ins. Physics, Theory, and Applications of Periodic Structures in Optics = Proc Spie Physics, Theory, and Applications of Periodic Structures in Optics = Proc. Spie. Physics, Theory, and Applications of Periodic Structures in Optics = P Soc Photo-opt Ins Physics, Theory, and Applications of Periodic Structures in Optics = P. Soc. Photo-opt. Ins. Physics today = Phys Today Physics Today = Phys Today Physics Today = Phys. Today Physics Up to 200 Tev = Subnucl Ser Physics Up to 200 Tev = Subnucl. Ser. Physics-uspekhi = Phys-usp+ Physics-uspekhi = Phys-usp+.+ Physics-Uspekhi = Phys. Usp. Physics With An Electron Polarized Light-ion Collider = Aip Conf Proc Physics With An Electron Polarized Light-ion Collider = Aip. Conf. Proc. Physics With Multiply Charged Ions = Nato Adv Sci Inst Se Physics With Multiply Charged Ions = Nato. Adv. Sci. Inst. Se. Physics With Tau Leptons = Springer Tr Mod Phys Physics With Tau Leptons = Springer. Tr. Mod. Phys. Physics With Ultra Slow Antiproton Beams = Aip Conf Proc Physics With Ultra Slow Antiproton Beams = Aip. Conf. Proc. Physics World = Phys World Physics World = Phys. World Physikalisch-chemische Trenn- Und Messmethoden = Phys Chem T Physikalisch-chemische Trenn- Und Messmethoden = Phys. Chem. T. Physikalische Blätter = Phys. Bl. Physikalische Medizin Rehabilitationsmedizin Kurortmedizin = Phys Med Rehab Kuror Physikalische Medizin Rehabilitationsmedizin Kurortmedizin = Phys. Med. Rehab. Kuror. Physikalische Zeitschrift = Phys Z Physikalische Zeitschrift = Phys. Z. Physikalishce Zeitschrift = Phys. Z. Physik Der Kondensiterten Materie = Phys Kondens Mater Physik Der Kondensiterten Materie = Phys. Kondens. Mater. Physik in Unserer Zeit = Phys. Unserer Zeit Physik Journal = Phys. J. Physiologia Bohemoslovaca = Physiol Bohemoslov Physiologia Bohemoslovaca = Physiol. Bohemoslov. Physiologia bohemoslovenica = Physiol Bohemoslov Physiologia Bohemoslovenica = Physiol. Bohemoslov. Physiologia comparata et oecologia; an international journal of comparative physiology and ecology = Physiol Comp Ocol Int J Comp Physiol Ecol Physiologia Comparata Et Oecologia = Phys Comp Oecol Physiologia Comparata Et Oecologia = Phys. Comp. Oecol. Physiologia plantarum = Physiol Plant Physiologia Plantarum = Physiol. Plant. Physiologia Plantarum = Physiol Plantarum Physiologia Plantarum = Physiol. Plantarum Physiological and biochemical zoology : PBZ = Physiol Biochem Zool Physiological and Biochemical Zoology = Physiol Biochem Zool Physiological and Biochemical Zoology = Physiol. Biochem. Zool. Physiological and Molecular Plant Pathology = Physiol Mol Plant P Physiological and Molecular Plant Pathology = Physiol. Mol. Plant P. Physiological and Molecular Plant Pathology = Physiol. Mol. Plant Pathol. Physiological and Pathological Effects of Cytokines = Prog Leuc B Physiological and Pathological Effects of Cytokines = Prog. Leuc. B. Physiological Chemistry and Physics and Medical Nmr = Physiol Chem Phys Physiological Chemistry and Physics and Medical Nmr = Physiol. Chem. Phys. Physiological Chemistry and Physics and Medical Nmr = Physiol Chem Phys M Physiological Chemistry and Physics and Medical Nmr = Physiol. Chem. Phys. M. Physiological Chemistry and Physics and Medical Nmr = Physiol Chem Phys Me Physiological Chemistry and Physics and Medical Nmr = Physiol. Chem. Phys. Me. Physiological chemistry and physics and medical NMR = Physiol Chem Phys Med NMR Physiological Chemistry and Physics and Medical NMR = Physiol. Chem. Phys. Med. NMR Physiological Chemistry and Physics And Medical NMR=Physiol Chem Phys Med NMR;; Physiological chemistry and physics = Physiol Chem Phys Physiological Chemistry and Physics = Physiol. Chem. Phys. Physiological Chemistry and Physics = Physiol Chem Phys M Physiological Chemistry and Physics = Physiol. Chem. Phys. M. Physiological entomology = Physiol Entomol Physiological Entomology = Physiol Entomol Physiological Entomology = Physiol. Entomol. Physiological Genomics of The Critically Ill Mouse = Bas Sci Cardiologist Physiological Genomics of The Critically Ill Mouse = Bas. Sci. Cardiologist. Physiological genomics = Physiol Genomics Physiological Genomics = Physiol Genomics Physiological Genomics = Physiol. Genomics Physiological measurement = Physiol Meas Physiological Measurement=Physiol Meas;; Physiological Measurement = Physiol Meas Physiological Measurement = Physiol. Meas. Physiological Monitoring and Early Detection Diagnostic Methods = P Soc Photo-opt Ins Physiological Monitoring and Early Detection Diagnostic Methods = P. Soc. Photo-opt. Ins. Physiological Plant Pathology = Physiol Plant Pathol Physiological Plant Pathology = Physiol. Plant Pathol. Physiological Psychology = Physiol Psychol Physiological Psychology = Physiol. Psychol. Physiological research / Academia Scientiarum Bohemoslovaca = Physiol Res Physiological Research=Physiol Res;; Physiological Research = Physiol Res Physiological Research = Physiol. Res. Physiological reviews = Physiol Rev Physiological Reviews=Physiol Rev;; Physiological Reviews = Physiol Rev Physiological Reviews = Physiol. Rev. Physiological reviews. Supplement = Physiol Rev Suppl Physiological Senescence and Its Postponement : Theoretical Approaches and Rational Interventions = Ann Ny Acad Sci Physiological Senescence and Its Postponement : Theoretical Approaches and Rational Interventions = Ann. Ny. Acad. Sci. Physiological zoology = Physiol Zool Physiological Zoology=Physiol Zool;; Physiological Zoology = Physiol Zool Physiological Zoology = Physiol. Zool. Physiologie = Physiologie Physiologie vegetale = Physiol Veg Physiologie Vegetale = Physiol Veg Physiologie Vegetale = Physiol. Veg. Physiologist=Physiologist;; Physiologist = Physiologist Physiology and Behavior=Physiol Behav;; Physiology and Behavior = Physiol. Behav. Physiology and Biochemistry of Cultivated Plants = Fiziol Biokhim Kult+ Physiology and Biochemistry of Cultivated Plants = Fiziol. Biokhim. Kult+.+ Physiology and Function From Multidimensional Images - Medical Imaging 1995 = P Soc Photo-opt Ins Physiology and Function From Multidimensional Images - Medical Imaging 1995 = P. Soc. Photo-opt. Ins. Physiology and Function From Multidimensional Images - Medical Imaging 1997 = P Soc Photo-opt Ins Physiology and Function From Multidimensional Images - Medical Imaging 1997 = P. Soc. Photo-opt. Ins. Physiology and Function From Multidimensional Images - Medical Imaging 1998 = P Soc Photo-opt Ins Physiology and Function From Multidimensional Images - Medical Imaging 1998 = P. Soc. Photo-opt. Ins. Physiology and Function From Multidimensional Images = P Soc Photo-opt Ins Physiology and Function From Multidimensional Images = P. Soc. Photo-opt. Ins. Physiology and Genetics of Tree-phytophage Interactions - International Symposium = Colloq Inra Physiology and Genetics of Tree-phytophage Interactions - International Symposium = Colloq. Inra. Physiology and Modeling Kernel Set in Maize = Cssa Spec Publ Physiology and Modeling Kernel Set in Maize = Cssa. Spec. Publ. Physiology and Pathophysiology of The Islets of Langerhans = Adv Exp Med Biol Physiology and Pathophysiology of The Islets of Langerhans = Adv. Exp. Med. Biol. Physiology and Pharmacology for Physicians = Physiol. Pharmacol. Physicians Physiology and Pharmacology of Transmembrane Signalling = Int Congr Ser Physiology and Pharmacology of Transmembrane Signalling = Int. Congr. Ser. Physiology & behavior = Physiol Behav Physiology & Behavior = Physiol Behav Physiology & Behavior = Physiol. Behav. Physiology (Bethesda, Md.) = Physiology (Bethesda) Physiology, Biochemistry, and Genetics of Nongreen Plastids = Cur Top Pl Physiology, Biochemistry, and Genetics of Nongreen Plastids = Cur. Top. Pl. Physiology - Breeding of Winter Cereals for Stressed Mediterranean Environments = Colloq Inra Physiology - Breeding of Winter Cereals for Stressed Mediterranean Environments = Colloq. Inra. Physiology Laboratory and Clinical Research = Physiol Lab Clin Res Physiology Laboratory and Clinical Research = Physiol. Lab. Clin. Res. Physiology & pharmacology for physicians = Physiol Pharmacol Physicians Physiology = Physiology Physiology Teacher = Physiol. Teach. Physiopathological Processes of Aging = Ann Ny Acad Sci Physiopathological Processes of Aging = Ann. Ny. Acad. Sci. Physiopathology of Illicit Drugs : Cannabis, Cocaine, Opiates = Adv Biosci Physiopathology of Illicit Drugs : Cannabis, Cocaine, Opiates = Adv. Biosci. Physiotherapy Canada = Physioth Can Physiotherapy Canada = Physioth. Can. Physiotherapy Canada. Physiotherapie Canada = Physiother Can Physiotherapy Canada = Physiother Can Physiotherapy Canada = Physiother. Can. Physiotherapy = Physiotherapy Physiotherapy Research International=Physiother Res Int;; Physiotherapy Research International = Physiother. Res. Int. Physiotherapy research international : the journal for researchers and clinicians in physical therapy = Physiother Res Int Physiotherapy theory and practice = Physiother Theory Pract Physische Geographie = Phys. Geogr. Physis (Rio de Janeiro, Brazil) = Physis Physis---Rivista Internazionale di Storia della Scienza = Physis Riv. Internaz. Storia Sci. (N.S.) Physis; rivista internazionale di storia della scienza = Physis Riv Int Stor Sci Phytochemical analysis : PCA = Phytochem Anal Phytochemical Analysis = Phytochem. Anal. Phytochemical Analysis = Phytochem Analysis Phytochemical Analysis = Phytochem. Analysis Phytochemical Diversity and Redundancy in Ecological Interactions = Recent Adv Phytochem Phytochemical Diversity and Redundancy in Ecological Interactions = Recent. Adv. Phytochem. Phytochemical Ecology : Allelochemicals, Mycotoxins, and Insect Pheromones and Allomones = Inst Bot Ac Phytochemical Ecology : Allelochemicals, Mycotoxins, and Insect Pheromones and Allomones = Inst. Bot. Ac. Phytochemical Potential of Tropical Plants = Recent Adv Phytochem Phytochemical Potential of Tropical Plants = Recent. Adv. Phytochem. Phytochemicals and Health = Cur Top Pl Phytochemicals and Health = Cur. Top. Pl. Phytochemicals for Pest Control = Acs Sym Ser Phytochemicals for Pest Control = Acs. Sym. Ser. Phytochemical Signals and Plant-microbe Interactions = Recent Adv Phytochem Phytochemical Signals and Plant-microbe Interactions = Recent. Adv. Phytochem. Phytochemistry and Pharmacology Iii = Recent Prog Med Plan Phytochemistry and Pharmacology Iii = Recent. Prog. Med. Plan. Phytochemistry (Elsevier) = Phytochemistry (Elsevier) Phytochemistry in The Genomics and Post-genomics Eras = Recent Adv Phytochem Phytochemistry in The Genomics and Post-genomics Eras = Recent. Adv. Phytochem. Phytochemistry Letters = Phytochem Lett Phytochemistry Letters = Phytochem. Lett. Phytochemistry of Medicinal Plants = Recent Adv Phytochem Phytochemistry of Medicinal Plants = Recent. Adv. Phytochem. Phytochemistry of Plants Used in Traditional Medicine = Pr Phyt Soc Phytochemistry of Plants Used in Traditional Medicine = Pr. Phyt. Soc. Phytochemistry = Phytochemistry Phytochemistry Reviews = Phytochem Rev Phytochemistry Reviews = Phytochem. Rev. Phytocoenologia = Phytocoenologia Phytoma = Phytoma Phytomedicine : international journal of phytotherapy and phytopharmacology = Phytomedicine Phytomedicine = Phytomedicine Phytomedicines = Recent Prog Med Plan Phytomedicines = Recent. Prog. Med. Plan. Phytomorphology = Phytomorphology Phyton; annales rei botanicae = Phyton Phyton-annales Rei Botanicae = Phyton-ann Rei Bot A Phyton-annales Rei Botanicae = Phyton-ann. Rei Bot. A. Phyton-international Journal of Experimental Botany = Phyton-int J Exp Bot Phyton-international Journal of Experimental Botany = Phyton-int. J. Exp. Bot. Phyton = Phyton Phyton = Phyton (Buenos Aires) Phytoparasitica = Phytoparasitica Phytopathologia Mediterranea = Phytopathol Mediterr Phytopathologia Mediterranea = Phytopathol. Mediterr. Phytopathological Papers of The Commonwealth Mycological Institute = Phytopathol Pap Phytopathological Papers of The Commonwealth Mycological Institute = Phytopathol. Pap. Phytopathologische Zeitschrift-journal of Phytopathology = Phytopathol Z Phytopathologische Zeitschrift-journal of Phytopathology = Phytopathol. Z. Phytopathologische Zeitschrift = Phytopathol. Z. Phytopathology = Phytopathology Phytopharmacology and Therapeutic Values Ii = Recent Prog Med Plan Phytopharmacology and Therapeutic Values Ii = Recent. Prog. Med. Plan. Phytopharmacology and Therapeutic Values I = Recent Prog Med Plan Phytopharmacology and Therapeutic Values I = Recent. Prog. Med. Plan. Phytopharmacology and Therapeutic Values Iv = Recent Prog Med Plan Phytopharmacology and Therapeutic Values Iv = Recent. Prog. Med. Plan. Phytopharmacology and Therapeutic Values V = Recent Prog Med Plan Phytopharmacology and Therapeutic Values V = Recent. Prog. Med. Plan. Phytoplankton of Andean Lakes in Northern Southamerica (colombia): Composition and Environment Distribution Factors = Diatom Monogr Phytoplankton of Andean Lakes in Northern Southamerica (colombia): Composition and Environment Distribution Factors = Diatom. Monogr. Phytoprotection = Phytoprotection Phytoremediation and Stress: Evaluation of Heavy Metal-induced Stress in Plants = Bot Res Pract Phytoremediation and Stress: Evaluation of Heavy Metal-induced Stress in Plants = Bot. Res. Pract. Phytoremediation of Metal-contaminated Soils = Nato Sci S Ss Iv Ear Phytoremediation of Metal-contaminated Soils = Nato. Sci. S. Ss. Iv. Ear. Phytoremediation of Soil and Water Contaminants = Acs Sym Ser Phytoremediation of Soil and Water Contaminants = Acs. Sym. Ser. Phytoremediation, Wetlands, and Sediments = Bioremed Ser Phytoremediation, Wetlands, and Sediments = Bioremed. Ser. Phytosfere '99: Highlights in European Plant Biotechnology Research and Technology Transfer = Dev Pl Gen Phytosfere '99: Highlights in European Plant Biotechnology Research and Technology Transfer = Dev. Pl. Gen. Phytotaxa = Phytotaxa Phytotherapy Research = Phytother Res Phytotherapy Research = Phytother. Res. Phytotherapy research : PTR = Phytother Res PIACT papers / Program for the Introduction and Adaptation of Contraceptive Technology = PIACT Pap PIACT product news. Program for the Introduction and Adaptation of Contraceptive Technology (U.S.) = PIACT Prod News Piageng 2009: Image Processing and Photonics for Agricultural Engineering = P Soc Photo-opt Ins Piageng 2009: Image Processing and Photonics for Agricultural Engineering = P. Soc. Photo-opt. Ins. Piageng 2010: Photonics and Imaging for Agricultural Engineering = P Soc Photo-opt Ins Piageng 2010: Photonics and Imaging for Agricultural Engineering = P. Soc. Photo-opt. Ins. Piaget, Evolution, and Development = J Piaget Sy Piaget, Evolution, and Development = J. Piaget. Sy. Piagets Theory = J Piaget Sy Piagets Theory = J. Piaget. Sy. Piano & Keyboard = Piano Keyboard Piano Quarterly = Piano Quart Piano Quarterly = Piano Quart. Pickup Ions Throughout The Heliosphere and Beyond = Aip Conf Proc Pickup Ions Throughout The Heliosphere and Beyond = Aip. Conf. Proc. Picosecond and Femtosecond Spectroscopy From Laboratory to Real World = P Soc Photo-opt Ins Picosecond and Femtosecond Spectroscopy From Laboratory to Real World = P. Soc. Photo-opt. Ins. Picturescope = Picturescope Picus. Studi e ricerche sulle Marche nell’antichità = Picus Pid Control for Multivariable Processes = Lect Notes Contr Inf Pid Control for Multivariable Processes = Lect. Notes. Contr. Inf. PIDSA abstracts = PIDSA Abstr Pid Trajectory Tracking Control for Mechanical Systems = Lect Notes Contr Inf Pid Trajectory Tracking Control for Mechanical Systems = Lect. Notes. Contr. Inf. Piecewise Linear Control Systems: A Computational Approach = Lect Notes Contr Inf Piecewise Linear Control Systems: A Computational Approach = Lect. Notes. Contr. Inf. Piecewise-smooth Dynamical Systems: Theory and Applications = Appl Math Sci Piecewise-smooth Dynamical Systems: Theory and Applications = Appl. Math. Sci. Pielegniarka i polozna = Pieleg Polozna Pielegniarka i Polozna = Pieleg. Polozna Piero Gobetti and The Politics of Liberal Revolution = Ital Ital Am Stud Piero Gobetti and The Politics of Liberal Revolution = Ital. Ital. Am. Stud. Pierre Bayle's Cartesian Metaphysics = Routledge Stud Seven Pierre Bayle's Cartesian Metaphysics = Routledge. Stud. Seven. Pierre Fabre Monograph Series = P Fabre Mon Pierre Fabre Monograph Series = P. Fabre Mon. Piers 2008 Cambridge, Proceedings = Pr Electromagn Res S Piers 2008 Cambridge, Proceedings = Pr. Electromagn. Res. S. Piers 2008 Hangzhou: Progress in Electromagnetics Research Symposium, Vols I and Ii, Proceedings = Pr Electromagn Res S Piers 2008 Hangzhou: Progress in Electromagnetics Research Symposium, Vols I and Ii, Proceedings = Pr. Electromagn. Res. S. Piers 2009 Beijing: Progess in Electromagnetics Research Symposium, Proceedings I and Ii = Pr Electromagn Res S Piers 2009 Beijing: Progess in Electromagnetics Research Symposium, Proceedings I and Ii = Pr. Electromagn. Res. S. Pieter Van Foreest = S St Hist M Pieter Van Foreest = S. St. Hist. M. Pietist and Wesleyan Studies = Pie Ews Studies Pietist and Wesleyan Studies = Pie. Ews. Studies Piezoelectric Ceramic Materials: Processing, Properties, Charcterization, and Applications = Mater Sci Technol Piezoelectric Ceramic Materials: Processing, Properties, Charcterization, and Applications = Mater. Sci. Technol. Piezoelectricity: Evolution and Future of A Technology = Springer Ser Mater S Piezoelectricity: Evolution and Future of A Technology = Springer. Ser. Mater. S. Piezoelectric Materials: Advances in Science, Technology and Applications = Nato Asi 3 High Tech Piezoelectric Materials: Advances in Science, Technology and Applications = Nato. Asi. 3. High. Tech. Piezoelectric Materials: Structure, Properties and Applications = Mater Sci Technol Piezoelectric Materials: Structure, Properties and Applications = Mater. Sci. Technol. Piezoelectric Multilayer Beam Bending Actuators = Microtechnol Mems Piezoelectric Multilayer Beam Bending Actuators = Microtechnol. Mems. Piezoelectric Sensors = Springer Ser Chem Se Piezoelectric Sensors = Springer. Ser. Chem. Se. Pigment Cell & Melanoma Research = Pigm Cell Melanoma R Pigment Cell & Melanoma Research = Pigm. Cell Melanoma R. Pigment Cell Research = Pigm Cell Res Pigment Cell Research = Pigm. Cell Res. Pigment Cell Research=Pigment Cell Res;; Pigment Cell Research = Pigment Cell Res. Pigment cell research / sponsored by the European Society for Pigment Cell Research and the International Pigment Cell Society = Pigment Cell Res Pigment & Resin Technology = Pigm Resin Technol Pigment & Resin Technology = Pigm. Resin Technol. Pilgrimages and Spiritual Quests in Japan = Jpn Anthropol Worksh Pilgrimages and Spiritual Quests in Japan = Jpn. Anthropol. Worksh. Pilgrim and The Bee: Reading Rituals and Book Culture in Early New England = Mater Texts Pilgrim and The Bee: Reading Rituals and Book Culture in Early New England = Mater. Texts. Pilgrims and Sacred Sites in China = Stud China Pilgrims and Sacred Sites in China = Stud. China Pillars of Computer Science = Lect Notes Comput Sc Pillars of Computer Science = Lect. Notes. Comput. Sc. Pima Magazine = Pima Mag Pima Magazine = Pima Mag. Pina Bausch = Routl Perform Pract Pina Bausch = Routl. Perform. Pract. Pineal Gland and Its Hormones = Nato Adv Sci Inst Se Pineal Gland and Its Hormones = Nato. Adv. Sci. Inst. Se. Pineal Region Tumor: Diagnosis and Treatment Options = Prog Neurol Surg Pineal Region Tumor: Diagnosis and Treatment Options = Prog. Neurol. Surg. Pinewood Nematode, Bursaphelenchus Xylophilus = Nematol Monogr Persp Pinewood Nematode, Bursaphelenchus Xylophilus = Nematol. Monogr. Persp. Pinheiros terapeutico = Pinheiros Ter Pinochet Effect: Transnational Justice in The Age of Human Rights = Pa Stud Hum Rights Pinochet Effect: Transnational Justice in The Age of Human Rights = Pa. Stud. Hum. Rights Pioneer America Society transactions : P.A.S.T. Pioneer America Society = Pioneer Am Soc Trans Pioneers in Entrepreneurship and Small Business Research = Int Stud Entrep Pioneers in Entrepreneurship and Small Business Research = Int. Stud. Entrep. Pioneers in In Vitro Fertilization = Stud Proferlit Pioneers in In Vitro Fertilization = Stud. Proferlit. Pipelined Adc Design and Enhancement Techniques = Analog Circ Sig Proc Pipelined Adc Design and Enhancement Techniques = Analog. Circ. Sig. Proc. Pipeline & Gas Journal = Pipeline Gas J Pipeline & Gas Journal = Pipeline Gas J. Pipe Line Industry = Pipe Line Ind Pipe Line Industry = Pipe Line Ind. Pipeline Protection = Bhr Gr Conf Ser Publ Pipeline Protection = Bhr. Gr. Conf. Ser. Publ. Pipeline Systems = Fluid Mec A Pipeline Systems = Fluid. Mec. A. Pipe Material Selection in Drinking Water Systems = Wa Sci Technol Pipe Material Selection in Drinking Water Systems = Wa. Sci. Technol. PI perspective = PI Perspect Pirate Modernity: Delhi's Media Urbanism = Asias Transform Pirate Modernity: Delhi's Media Urbanism = Asias. Transform. Pirates:the Politics of Plunder, 1550-1650 = Early Mod Lit Hist Pirates:the Politics of Plunder, 1550-1650 = Early. Mod. Lit. Hist. Pis\cprime ma v Zhurnal Èksperimental\cprime noy i Teoreticheskoy Fiziki = Pis\cprime ma Zh. Èksper. Teoret. Fiz. Pishchevaya Promyshlennost (Moscow) = Pishch. Prom-st. (Moscow) Pis'ma v Astronomicheskii Zhurnal = Pis'ma Astron. Zh. Pis'ma v Zhurnal Eksperimental'noi i Teoreticheskoi Fiziki = Pis'ma Zh. Eksp. Teor. Fiz. Pis'ma v Zhurnal Tekhnicheskoi Fiziki = Pis'ma Zh. Tekh. Fiz. Pisma V Zhurnal Tekhnicheskoi Fiziki = Pisma Zh Tekh Fiz+ Pisma V Zhurnal Tekhnicheskoi Fiziki = Pisma Zh. Tekh. Fiz+.+ Pitannâ klasicnoï filologìï (Questions de philologie classique) = PKFil Pitman Monographs and Surveys in Pure and Applied Mathematics = Pitman Monogr. Surveys Pure Appl. Math. Pitman Research Notes in Mathematics Series = Pitman Res Pitman Research Notes in Mathematics Series = Pitman Res. Pitman Research Notes in Mathematics Series = Pitman Res. Notes Math. Ser. Pittsburgh-konstanz Series in The Philosophy and History of Science = Pitt Konst S Philos Pittsburgh-konstanz Series in The Philosophy and History of Science = Pitt. Konst. S. Philos. Pitt Series in Policy and Institutional Studies = Pitt S Pol Pitt Series in Policy and Institutional Studies = Pitt S. Pol. Pitt Series in Russian and East European Studies = Pit Rus Eas Pitt Series in Russian and East European Studies = Pit. Rus. Eas. Pituitary Adenomas : New Trends in Basic and Clinical Research = Int Congr Ser Pituitary Adenomas : New Trends in Basic and Clinical Research = Int. Congr. Ser. Pituitary = Pituitary Pituitary Surgery - A Modern Approach = Front Horm Res Pituitary Surgery - A Modern Approach = Front. Horm. Res. Pituitary Today Ii: New Molecular, Physiological and Clinical Aspects = Front Horm Res Pituitary Today Ii: New Molecular, Physiological and Clinical Aspects = Front. Horm. Res. Pituitary Today: Molecular, Physiological and Clinical Aspects = Front Horm Res Pituitary Today: Molecular, Physiological and Clinical Aspects = Front. Horm. Res. Pixelization Paradigm = Lect Notes Comput Sc Pixelization Paradigm = Lect. Notes. Comput. Sc. Piyyut Commentary in Medieval Ashkenaz = Stud Judaica Piyyut Commentary in Medieval Ashkenaz = Stud. Judaica. Pizhuhish va sazandidi = Research & reconstruction|Pizhuhish Va Sazandidi Place and Memory in The Singing Crane Garden = Penn Stud Landsc Arc Place and Memory in The Singing Crane Garden = Penn. Stud. Landsc. Arc. Placenta and Neurodisability = Clin Dev Med Placenta and Neurodisability = Clin. Dev. Med. Placental Communications : Biochemical, Morphological and Cellular Aspects = Colloq Inse Placental Communications : Biochemical, Morphological and Cellular Aspects = Colloq. Inse. Placental Protein Hormones = Int Congr Ser Placental Protein Hormones = Int. Congr. Ser. Placenta=Placenta;; Placenta = Placenta Placenta. Supplement = Placenta Suppl Placenta. Supplement = Placenta. Suppl. Place of Plastics in Fire Prevention = Vdi Bericht Place of Plastics in Fire Prevention = Vdi. Bericht. Place of Probability in Science = Bost Stud Philos Sci Place of Probability in Science = Bost. Stud. Philos. Sci. Place of Thought: The Complexity of One in Late Medieval French Didactic Poetry = Middle Ages Ser Place of Thought: The Complexity of One in Late Medieval French Didactic Poetry = Middle. Ages. Ser. Places-a Forum of Environmental Design = Places-forum Environ Places-a Forum of Environmental Design = Places-forum. Environ. Places-a Quarterly Journal of Environmental Design = Places-q J Environ D Places-a Quarterly Journal of Environmental Design = Places-q. J. Environ. D. Places of Pain and Shame: Dealing With Difficult Heritage = Key Issues Cult Heri Places of Pain and Shame: Dealing With Difficult Heritage = Key. Issues. Cult. Heri. Plagiarism and Literary Property in The Romantic Period = Mater Texts Plagiarism and Literary Property in The Romantic Period = Mater. Texts. Plagiarism Education and Prevention: A Subject-driven Case-based Approach = Chandos Inf Prof Ser Plagiarism Education and Prevention: A Subject-driven Case-based Approach = Chandos. Inf. Prof. Ser. Plains anthropologist = Plains Anthropol Plains Anthropologist = Plains Anthropol Plains Anthropologist = Plains Anthropol. Plainsong & Medieval Music = Plainsong Mediev Mus Plainsong & Medieval Music = Plainsong Mediev. Mus. Plan-based Control of Robotic Agents = Lect Notes Artif Int Plan-based Control of Robotic Agents = Lect. Notes. Artif. Int. Planck Scale = Aip Conf Proc Planck Scale = Aip. Conf. Proc. Planck Scale Effects in Astrophysics and Cosmology = Lect Notes Phys Planck Scale Effects in Astrophysics and Cosmology = Lect. Notes. Phys. Plane and Solid Geometry = Universitext Plane and Solid Geometry = Universitext. Plane Answers to Complex Questions: The Theory of Linear Models, Fourth Edition = Springer Texts Stat Plane Answers to Complex Questions: The Theory of Linear Models, Fourth Edition = Springer. Texts. Stat. Planejamento Agora = Planej Agora Planetary and space science = Planet Space Sci Planetary and Space Science = Planet Space Sci Planetary and Space Science = Planet. Space Sci. Planetary Atmospheres = Adv Space Res Planetary Atmospheres = Adv. Space. Res. Planetary Atmospheres = Adv Space Res-series Planetary Atmospheres = Adv. Space. Res-series. Planetary Atmospheres and Ionospheres and Reference Atmospheres = Adv Space Res Planetary Atmospheres and Ionospheres and Reference Atmospheres = Adv. Space. Res. Planetary Atmospheres, Ionospheres, and Magnetospheres = Adv Space Res Planetary Atmospheres, Ionospheres, and Magnetospheres = Adv. Space. Res. Planetary Atmospheres, Ionospheres, and Magnetospheres = Adv Space Res-series Planetary Atmospheres, Ionospheres, and Magnetospheres = Adv. Space. Res-series. Planetary Atmospheres, Ionospheres and Plasma Interactions = Adv Space Res Planetary Atmospheres, Ionospheres and Plasma Interactions = Adv. Space. Res. Planetary Atmospheres, Ionospheres and Plasma Interactions = Adv Space Res-series Planetary Atmospheres, Ionospheres and Plasma Interactions = Adv. Space. Res-series. Planetary Ionospheres = Adv Space Res Planetary Ionospheres = Adv. Space. Res. Planetary Ionospheres and Atmospheres Including Cira = Adv Space Res Planetary Ionospheres and Atmospheres Including Cira = Adv. Space. Res. Planetary Ionospheres and Atmospheres Including Cira = Adv Space Res-series Planetary Ionospheres and Atmospheres Including Cira = Adv. Space. Res-series. Planetary Ionospheres and Magnetospheres = Adv Space Res Planetary Ionospheres and Magnetospheres = Adv. Space. Res. Planetary Ionospheres and Magnetospheres = Adv Space Res-series Planetary Ionospheres and Magnetospheres = Adv. Space. Res-series. Planetary Magnetospheres = Adv Space Res Planetary Magnetospheres = Adv. Space. Res. Planetary Magnetospheres = Adv Space Res-series Planetary Magnetospheres = Adv. Space. Res-series. Planetary Magnetospheric Physics I = Adv Space Res-series Planetary Magnetospheric Physics I = Adv. Space. Res-series. Planetary Magnetospheric Physics Ii = Adv Space Res-series Planetary Magnetospheric Physics Ii = Adv. Space. Res-series. Planetary Materials = Rev Mineral Planetary Materials = Rev. Mineral. Planetary Nebulae As Astronomical Tools = Aip Conf Proc Planetary Nebulae As Astronomical Tools = Aip. Conf. Proc. Planetary Nebulae Beyond The Milky Way = Eso Astrophy Symp Planetary Nebulae Beyond The Milky Way = Eso. Astrophy. Symp. Planetary Nebulae = Iau Symp Planetary Nebulae = Iau. Symp. Planetary Nebulae: Their Evolution and Role in The Universe = Iau Symp Planetary Nebulae: Their Evolution and Role in The Universe = Iau. Symp. Planetary Probe Atmospheric Entry and Descent Trajectory Analysis and Science = Esa Sp Publ Planetary Probe Atmospheric Entry and Descent Trajectory Analysis and Science = Esa. Sp. Publ. Planetary Studies = Adv Space Res-series Planetary Studies = Adv. Space. Res-series. Planetary Systems Beyond The Main Sequence = Aip Conf Proc Planetary Systems Beyond The Main Sequence = Aip. Conf. Proc. Planetary Systems: Detection, Formation, and Habitability of Extrasolar Planets = Astron Astrophys Lib Planetary Systems: Detection, Formation, and Habitability of Extrasolar Planets = Astron. Astrophys. Lib. Planetary Systems in The Universe Observation, Formation and Evolution = Iau Symp Planetary Systems in The Universe Observation, Formation and Evolution = Iau. Symp. Planets Around Pulsars = Astr Soc P Planets Around Pulsars = Astr. Soc. P. Planets Beyond The Solar System and The Next Generation of Space Missions = Astr Soc P Planets Beyond The Solar System and The Next Generation of Space Missions = Astr. Soc. P. Planets in Binary Star Systems = Astrophys Space Sc L Planets in Binary Star Systems = Astrophys. Space. Sc. L. Planned parenthood challenges / International Planned Parenthood Federation = Plan Parent Chall Planned parenthood = Planned Parent (India) Planned parenthood review = Plan Parent Rev Planned Parenthood-World Population Washington memo = Plan Parent World Popul Wash Memo Planning and Administration = Plann Admin Planning and Administration = Plann. Admin. Planning and Analysis 2005 = Transport Res Rec Planning and Analysis 2005 = Transport. Res. Rec. Planning and Analysis 2006 = Transport Res Rec Planning and Analysis 2006 = Transport. Res. Rec. Planning and Development in The Netherlands = Plann Develop Neth Planning and Development in The Netherlands = Plann. Develop. Neth. Planning and Socioeconomic Applications = Geotech Environ Planning and Socioeconomic Applications = Geotech. Environ. Planning and Strategies for Development in European Capitals = Amenag Terr Env Planning and Strategies for Development in European Capitals = Amenag. Terr. Env. Planning and Transformation: Learning From The Post-apartheid Experience = Rtpi Lib Ser Planning and Transformation: Learning From The Post-apartheid Experience = Rtpi. Lib. Ser. Planning and Use of Lowlands in Mali = Cirad Colloques Planning and Use of Lowlands in Mali = Cirad. Colloques. Planning Based On Decision Theory = Cism Cour L Planning Based On Decision Theory = Cism. Cour. L. Planning Based On Decision Theory = Cism Courses Lect Planning Based On Decision Theory = Cism. Courses. Lect. Planning Chinese Characters: Reaction, Evolution Or Revolution = Lang Policy Ser Planning Chinese Characters: Reaction, Evolution Or Revolution = Lang. Policy. Ser. Planning Efficient Arbitration Proceedings = Icca Cong Ser Planning Efficient Arbitration Proceedings = Icca. Cong. Ser. Planning for Information Systems = Adv Manag Inform Sys Planning for Information Systems = Adv. Manag. Inform. Sys. Planning History and Environment Series = Plan Hist Environ Se Planning History and Environment Series = Plan. Hist. Environ. Se. Planning, Law and Economics: An Investigation of The Rules We Make for Using Land = Rtpi Lib Ser Planning, Law and Economics: An Investigation of The Rules We Make for Using Land = Rtpi. Lib. Ser. Planning Production and Inventories in The Extended Enterprise: A State of The Art Handbook, Vol 1 = Int Ser Oper Res Man Planning Production and Inventories in The Extended Enterprise: A State of The Art Handbook, Vol 1 = Int. Ser. Oper. Res. Man. Planning Production and Inventories in The Extended Enterprise: A State of The Art Handbook, Vol 2 = Int Ser Oper Res Man Planning Production and Inventories in The Extended Enterprise: A State of The Art Handbook, Vol 2 = Int. Ser. Oper. Res. Man. Planning Regional Development in Brazil = Cirad Colloques Planning Regional Development in Brazil = Cirad. Colloques. Planning, Scheduling and Constraint Satisfaction: From Theory to Practice = Fr Art Int Planning, Scheduling and Constraint Satisfaction: From Theory to Practice = Fr. Art. Int. Planning Stability in Material Requirements Planning Systems = Lect Notes Econ Math Planning Stability in Material Requirements Planning Systems = Lect. Notes. Econ. Math. Planning Support Systems Best Practice and New Methods = Geojournal Lib Planning Support Systems Best Practice and New Methods = Geojournal. Lib. Planning Sustainability = Environm Polit Ser Planning Sustainability = Environm. Polit. Ser. Planning The Megacity: Jakarta in The Twentieth Century = Plan Hist Environ Se Planning The Megacity: Jakarta in The Twentieth Century = Plan. Hist. Environ. Se. Planning Theory = Plan Theor Planning Theory = Plan. Theor. Plan og arbeid = Plan Arb Plan = Plan Plans D'experience: Constructions Et Analyses Statistiques = Math Appl-berlin Plans D'experience: Constructions Et Analyses Statistiques = Math. Appl-berlin. Planseeberichte Fur Pulvermetallurgie = Planseeber Pulvermet Planseeberichte Fur Pulvermetallurgie = Planseeber. Pulvermet. Planta Daninha = Planta Daninha Plant Aging = Nato Adv Sci I A-lif Plant Aging = Nato. Adv. Sci. I. A-lif. Planta medica = Planta Med Planta Medica=Planta Med;; Planta Medica = Planta Med Planta Medica = Planta Med. Plant and Cell Physiology=Plant Cell Physiol;; Plant and Cell Physiology = Plant Cell Physiol Plant and Cell Physiology = Plant Cell Physiol. Plant and soil = Plant Soil Plant and Soil = Plant Soil Plant and Vegetation = Plant Veg Plant and Vegetation = Plant Veg. Plant-animal Interactions in The Marine Benthos = Syst Assoc Spec Vol Plant-animal Interactions in The Marine Benthos = Syst. Assoc. Spec. Vol. Planta = Planta Plant Archives = Plant Arch Plant Archives = Plant Arch. Plant Biochemistry = Plant Biochem Plant Biochemistry = Plant Biochem. Plant Biology = Plant Biol Plant Biology = Plant Biol. Plant Biology = Plant Biology Plant biology (Stuttgart, Germany) = Plant Biol (Stuttg) Plant Bioregulators in Horticulture - 1994 = Acta Hortic Plant Bioregulators in Horticulture - 1994 = Acta. Hortic. Plant biosystems = Plant Biosyst Plant Biosystems = Plant Biosyst Plant Biosystems = Plant Biosyst. Plant Biotechnology and in Vitro Biology in The 21st Century = Curr Plant Sci Biot Plant Biotechnology and in Vitro Biology in The 21st Century = Curr. Plant Sci. Biot. Plant Biotechnology-bk = Curr Top Microbiol Plant Biotechnology-bk = Curr. Top. Microbiol. Plant Biotechnology for Sustainable Production of Energy and Co-products = Biotech Agr Forest Plant Biotechnology for Sustainable Production of Energy and Co-products = Biotech. Agr. Forest. Plant biotechnology journal = Plant Biotechnol J Plant Biotechnology Journal = Plant Biotechnol J Plant Biotechnology Journal = Plant Biotechnol. J. Plant Biotechnology = Plant Biotechnol Plant Biotechnology = Plant Biotechnol. Plant Biotechnology = Plant Biotechnol-nar Plant Biotechnology = Plant Biotechnol-nar. Plant Biotechnology Reports = Plant Biotechnol Rep Plant Biotechnology Reports = Plant Biotechnol. Rep. Plant Breeding and Sustainable Agriculture : Considerations for Objectives and Methods = Cssa Spec Publ Plant Breeding and Sustainable Agriculture : Considerations for Objectives and Methods = Cssa. Spec. Publ. Plant Breeding = Plant Breeding Plant breeding reviews = Plant Breed Rev Plant breeding = Zeitschrift fur Pflanzenzuchtung|Plant Breed. Plant Cell and Environment = Plant Cell Environ Plant Cell and Environment = Plant Cell Environ. Plant, Cell and Environment = Plant Cell Environ. Plant, Cell and Environment = Plant, Cell Environ. Plant Cell and Tissue Culture-a Tool in Biotechnology: Basics and Application = Princ Pract Plant Cell and Tissue Culture-a Tool in Biotechnology: Basics and Application = Princ. Pract. Plant, cell & environment = Plant Cell Environ Plant Cell Monographs = Plant Cell Monogr Plant Cell Monographs = Plant Cell Monogr. Plant & cell physiology = Plant Cell Physiol Plant Cell=Plant Cell;; Plant Cell = Plant Cell Plant cell reports = Plant Cell Rep Plant Cell Reports = Plant Cell Rep Plant Cell Reports = Plant Cell Rep. Plant Cell Tissue and Organ Culture = Plant Cell Tiss Org Plant Cell Tissue and Organ Culture = Plant Cell Tiss. Org. Plant cell, tissue and organ culture = Plant Cell Tissue Organ Cult Plant Cell, Tissue and Organ Culture = Plant Cell, Tissue Organ Cult. Plant Cell Wall: Methods and Protocols = Methods Mol Biol Plant Cell Wall: Methods and Protocols = Methods Mol. Biol. Plant Cell Wall Polymers = Acs Sym Ser Plant Cell Wall Polymers = Acs. Sym. Ser. Plant Chromosome Engineering = Methods Mol Biol Plant Chromosome Engineering = Methods. Mol. Biol. Plant Clonality: Biology and Diversity = Spec Feat Veget Sci Plant Clonality: Biology and Diversity = Spec. Feat. Veget. Sci. Plant Communication From An Ecological Perspective = Signal Commun Plants Plant Communication From An Ecological Perspective = Signal. Commun. Plants. Plant Cytoskeleton = Advan Pl Bio Plant Cytoskeleton = Advan. Pl. Bio. Plant Cytoskeleton: A Key Tool for Agro-biotechnology = Nato Sci Peace Secur Plant Cytoskeleton: A Key Tool for Agro-biotechnology = Nato. Sci. Peace. Secur. Plant Desiccation Tolerance = Ecol Stud-anal Synth Plant Desiccation Tolerance = Ecol. Stud-anal. Synth. Plant Developmental Biology: Methods and Protocols = Methods Mol Biol Plant Developmental Biology: Methods and Protocols = Methods Mol. Biol. Plant Development = Curr Top Dev Biol Plant Development = Curr. Top. Dev. Biol. Plant Disease = Plant Dis Plant Disease = Plant Dis. Plant Disease Reporter = Plant Dis Rep Plant Disease Reporter = Plant Dis. Rep. Plant Ecology and Diversity = Plant Ecolog. Divers. Plant Ecology and Evolution = Plant Ecol Evol Plant Ecology and Evolution = Plant Ecol. Evol. Plant Ecology & Diversity = Plant Ecol Divers Plant Ecology & Diversity = Plant Ecol. Divers. Plant Ecology = Plant Ecol Plant Ecology = Plant Ecol. Plant Ecophysiology = Plant Ecophysiol Plant Ecophysiology = Plant Ecophysiol. Plant Embryo Culture: Methods and Protocols = Methods Mol Biol Plant Embryo Culture: Methods and Protocols = Methods Mol. Biol. Plant Engineering = Plant Eng Plant Engineering = Plant Eng. Plant-environment Interactions: From Sensory Plant Biology to Active Plant Behavior = Signal Commun Plants Plant-environment Interactions: From Sensory Plant Biology to Active Plant Behavior = Signal. Commun. Plants. Plant Epigenetics: Methods and Protocols = Methods Mol Biol Plant Epigenetics: Methods and Protocols = Methods Mol. Biol. Planters Studies Series = Planters St Planters Studies Series = Planters St. Plant foods for human nutrition (Dordrecht, Netherlands) = Plant Foods Hum Nutr Plant Foods for Human Nutrition = Plant Food Hum Nutr Plant Foods for Human Nutrition = Plant Food. Hum. Nutr. Plant Foods for Human Nutrition = Plant Foods Hum. Nutr. Plant Foods For Human Nutrition=Plant Foods Hum Nutr;; Plant Foods for Man = Plant Foods Man Plant Genetic Engineering: Towards The Third Millennium = Dev Pl Gen Plant Genetic Engineering: Towards The Third Millennium = Dev. Pl. Gen. Plant Genetic Resources-characterization and Utilization = Plant Genet Resour-c Plant Genetic Resources-characterization and Utilization = Plant Genet. Resour-c. Plant genetic resources newsletter (Rome, Italy : 1979) = Plant Genet Resour Newsl Plant Genetic Resources: The Fabric of Horticulture's Future = Acta Hortic Plant Genetic Resources: The Fabric of Horticulture's Future = Acta. Hortic. Plant Genetics and Genomics Crops and Models = Plant Genet Genomics Plant Genetics and Genomics Crops and Models = Plant Genet. Genomics Plant Gene Transfer = Ucla Sym Bi Plant Gene Transfer = Ucla. Sym. Bi. Plant Genome Analysis = Cur T Pl M Plant Genome Analysis = Cur. T. Pl. M. Plant Geography of Chile = Plant Veg Plant Geography of Chile = Plant Veg. Plant Growth and Health Promoting Bacteria = Microbiol Monogr Plant Growth and Health Promoting Bacteria = Microbiol. Monogr. Plant growth regulation = Plant Growth Regul Plant Growth Regulation = Plant Growth Regul Plant Growth Regulation = Plant Growth Regul. Plant Health and The European Single Market = Br Crop Pr Plant Health and The European Single Market = Br. Crop. Pr. Plant Hormones = Vitam Horm Plant Hormones = Vitam. Horm. Plant Immunity: Methods and Protocols = Methods Mol Biol Plant Immunity: Methods and Protocols = Methods Mol. Biol. Plant Innate Immunity = Adv Bot Res Plant Innate Immunity = Adv. Bot. Res. Plant Interactions, Dispersal and Community Structure = Spec Feat Veget Sci Plant Interactions, Dispersal and Community Structure = Spec. Feat. Veget. Sci. Plant Journal=Plant J;; Plant Journal = Plant J Plant Journal = Plant J. Plant Life Management: Midterm Status of A R&d Project = Vtt Symp Plant Life Management: Midterm Status of A R&d Project = Vtt. Symp. Plant Life Management: Progress for Structural Integrity = Vtt Symp Plant Life Management: Progress for Structural Integrity = Vtt. Symp. Plant Metabolomics = Biotech Agr Forest Plant Metabolomics = Biotech. Agr. Forest. Plant methods = Plant Methods Plant Methods = Plant Methods Plant Micrornas: Methods and Protocols = Methods Mol Biol Plant Micrornas: Methods and Protocols = Methods Mol. Biol. Plant Mitochondria = Advan Pl Bio Plant Mitochondria = Advan. Pl. Bio. Plant Molecular Biology 2 = Nato Adv Sci I A-lif Plant Molecular Biology 2 = Nato. Adv. Sci. I. A-lif. Plant molecular biology = Plant Mol Biol Plant Molecular Biology=Plant Mol Biol;; Plant Molecular Biology = Plant Mol Biol Plant Molecular Biology = Plant Mol. Biol. Plant molecular biology reporter / ISPMB = Plant Mol Biol Rep Plant Molecular Biology Reporter = Plant Mol Biol Rep Plant Molecular Biology Reporter = Plant Mol. Biol. Rep. Plant Molecular Biology Reporter = Plant Mol. Biol. Report. Plant Nutrition - From Genetic Engineering to Field Practice = Dev Plant Soil Sci Plant Nutrition - From Genetic Engineering to Field Practice = Dev. Plant Soil. Sci. Plant Nutrition - Physiology and Applications = Dev Plant Soil Sci Plant Nutrition - Physiology and Applications = Dev. Plant Soil. Sci. Plant Omics = Plant Omics Plant Pathogenic Bacteria = Colloq Inra Plant Pathogenic Bacteria = Colloq. Inra. Plant Pathology in The 21st Century = Plant Path 21st Plant Pathology in The 21st Century = Plant Path. 21st Plant Pathology Journal = Plant Pathology J Plant Pathology Journal = Plant Pathology J. Plant Pathology = Plant Pathol Plant Pathology = Plant Pathol. Plant Physiology and Biochemistry (Amsterdam, Netherlands) = Plant Physiol. Biochem. (Amsterdam, Neth.) Plant Physiology and Biochemistry (Issy les Moulineaux, France) = Plant Physiol. Biochem. (Issy les Moulineaux, Fr.) Plant Physiology and Biochemistry = Plant Physiol Bioch Plant Physiology and Biochemistry = Plant Physiol. Bioch. Plant Physiology and Biochemistry = Plant Physiol. Biochem. Plant physiology and biochemistry : PPB / Societe francaise de physiologie vegetale = Plant Physiol Biochem Plant physiology = Plant Physiol Plant Physiology=Plant Physiol;; Plant Physiology = Plant Physiol Plant Physiology = Plant Physiol. Plant Plasma Membrane = Plant Cell Monogr Plant Plasma Membrane = Plant Cell. Monogr. Plant Polyphenols 2: Chemistry, Biology, Pharmacology, Ecology = Basic Life Sci Plant Polyphenols 2: Chemistry, Biology, Pharmacology, Ecology = Basic. Life. Sci. Plant Polyphenols : Synthesis, Properties, Significance = Basic Life Sci Plant Polyphenols : Synthesis, Properties, Significance = Basic. Life. Sci. Plant-produced Microbial Vaccines = Curr Top Microbiol Plant-produced Microbial Vaccines = Curr. Top. Microbiol. Plant Production On The Threshold of A New Century = Dev Plant Soil Sci Plant Production On The Threshold of A New Century = Dev. Plant Soil. Sci. Plant production science = Plant Prod Sci Plant Production Science = Plant Prod Sci Plant Production Science = Plant Prod. Sci. Plant Protection Bulletin = Plant Prot Bull Plant Protection Bulletin = Plant Prot. Bull. Plant protection science = Ochrana rostlin / Czech Academy of Agricultural Sciences|Plant Prot. Sci. Plant Reproduction : From Floral Induction to Pollination = Cur Top Pl Plant Reproduction : From Floral Induction to Pollination = Cur. Top. Pl. Plant Responses to Cellular Dehydration During Environmental Stress = Cur Top Pl Plant Responses to Cellular Dehydration During Environmental Stress = Cur. Top. Pl. Plant Responses to Drought and Salinity Stress: Developments in A Post-genomic Era = Adv Bot Res Plant Responses to Drought and Salinity Stress: Developments in A Post-genomic Era = Adv. Bot. Res. Plant Reverse Genetics: Methods and Protocols = Methods Mol Biol Plant Reverse Genetics: Methods and Protocols = Methods Mol. Biol. Plants and Temperature = Sym Soc Exp Biol Plants and Temperature = Sym. Soc. Exp. Biol. Plant Science (Amsterdam, Netherlands) = Plant Sci. (Amsterdam, Neth.) Plant Science Letters = Plant Sci Lett Plant Science Letters = Plant Sci. Lett. Plant Science (Limerick, Ireland) = Plant Sci. (Limerick, Irel.) Plant Science = Plant Sci Plant Science = Plant Sci. Plant science (Shannon, Ireland) = Plant Sci Plant Sciences Today = Colloq Inra Plant Sciences Today = Colloq. Inra. Plant Secondary Metabolism Engineering: Methods and Applications = Methods Mol Biol Plant Secondary Metabolism Engineering: Methods and Applications = Methods Mol. Biol. Plants for Toxicity Assessment = Am Soc Test Mater Plants for Toxicity Assessment = Am. Soc. Test. Mater. Plants for Toxicity Assessment : Second Volume = Am Soc Test Mater Plants for Toxicity Assessment : Second Volume = Am. Soc. Test. Mater. Plant Signals in Interactions With Other Organisms = Cur Top Pl Plant Signals in Interactions With Other Organisms = Cur. Top. Pl. Plants in The City = Colloq Inra Plants in The City = Colloq. Inra. Plant Soil and Environment = Plant Soil Environ Plant Soil and Environment = Plant Soil Environ. Plant-soil Interactions At Low Ph = Dev Plant Soil Sci Plant-soil Interactions At Low Ph = Dev. Plant. Soil. Sci. Plant Species Biology = Plant Spec Biol Plant Species Biology = Plant Spec. Biol. Plant Species-level Systematics: New Perspectives On Pattern & Process = Regnum Veg Plant Species-level Systematics: New Perspectives On Pattern & Process = Regnum. Veg. Plant Stress Tolerance: Methods and Protocols = Methods Mol Biol Plant Stress Tolerance: Methods and Protocols = Methods Mol. Biol. Plants Under Stress = Soc Exp Biol Sem Ser Plants Under Stress = Soc. Exp. Biol. Sem. Ser. Plant systematics and evolution = Entwicklungsgeschichte und Systematik der Pflanzen|Plant Syst. Evol. Plant Systematics and Evolution = Plant Syst Evol Plant Systematics and Evolution = Plant Syst. Evol. Plant systematics and evolution. Supplementum = Entwicklungsgeschichte und Systematik der Pflanzen. Supplementum|Plant Sys. Evol., Suppl. Plant Systematics for The 21st Century = Wenn Gr Int Plant Systematics for The 21st Century = Wenn. Gr. Int. Plant Systems Biology = Methods Mol Biol Plant Systems Biology = Methods. Mol. Biol. Plant Transcription Factors: Methods and Protocols = Methods Mol Biol Plant Transcription Factors: Methods and Protocols = Methods Mol. Biol. Plant Varieties and Seeds = Plant Var Seeds Plant Varieties and Seeds = Plant Var. Seeds Plant Virus Epidemiology = Adv Virus Res Plant Virus Epidemiology = Adv. Virus Res. Planung, Anlage Und Betrieb Von Flugplatzen = Vdi-buch Planung, Anlage Und Betrieb Von Flugplatzen = Vdi-buch. Plasma 2005 = Aip Conf Proc Plasma 2005 = Aip. Conf. Proc. Plasma 2007 = Aip Conf Proc Plasma 2007 = Aip. Conf. Proc. Plasma and Fusion Science = Aip Conf Proc Plasma and Fusion Science = Aip. Conf. Proc. Plasma Antennas = Artech Hse Antenn Pr Plasma Antennas = Artech. Hse. Antenn. Pr. Plasma Assisted Decontamination of Biological and Chemical Agents = Nato Scie Peace Secu Plasma Assisted Decontamination of Biological and Chemical Agents = Nato. Scie. Peace. Secu. Plasma Assisted Decontamination of Biological and Chemical Agents = Nato Sci Peace Sec A Plasma Assisted Decontamination of Biological and Chemical Agents = Nato. Sci. Peace. Sec. A. Plasma Astrophysics = Esa Sp Publ Plasma Astrophysics = Esa. Sp. Publ. Plasma Astrophysics: Reconnection and Flares, Pt Ii = Astrophys Space Sc L Plasma Astrophysics: Reconnection and Flares, Pt Ii = Astrophys. Space. Sc. L. Plasma Chemistry and Plasma Processing = Plasma Chem Plasma P Plasma Chemistry and Plasma Processing = Plasma Chem. Plasma P. Plasma Chemistry and Plasma Processing = Plasma Chem. Plasma Process. Plasma Deposition and Treatment of Polymers = Mater Res Soc Symp P Plasma Deposition and Treatment of Polymers = Mater. Res. Soc. Symp. P. Plasma Deposition of Polymeric Thin Films = Appl Polym Symp Ser Plasma Deposition of Polymeric Thin Films = Appl. Polym. Symp. Ser. Plasma Devices and Operations = Plasma Devices Oper Plasma Devices and Operations = Plasma Devices Oper. Plasma Environments of Non-magnetic Planets = Cospar Coll Plasma Environments of Non-magnetic Planets = Cospar. Coll. Plasma Etching Processes for Sub-quarter Micron Devices, Proceedings = Elec Soc S Plasma Etching Processes for Sub-quarter Micron Devices, Proceedings = Elec. Soc. S. Plasma Interaction in Controlled Fusion Devices = Aip Conf Proc Plasma Interaction in Controlled Fusion Devices = Aip. Conf. Proc. Plasma Kinetic Theory = Ser Plasma Phys Plasma Kinetic Theory = Ser. Plasma Phys. Plasma Lipoproteins, Pt C = Method Enzymol Plasma Lipoproteins, Pt C = Method. Enzymol. Plasma Material Interaction in Controlled Fusion = Springer Ser Atom Op Plasma Material Interaction in Controlled Fusion = Springer. Ser. Atom. Op. Plasma Physics = Aip Conf Proc Plasma Physics = Aip. Conf. Proc. Plasma Physics and Controlled Fusion = Plasma Phys Contr F Plasma Physics and Controlled Fusion = Plasma Phys. Contr. F. Plasma Physics and Controlled Fusion = Plasma Phys. Controlled Fusion Plasma Physics and Controlled Nuclear Fusion Research 1992, Vol 1 = P S Iaea Plasma Physics and Controlled Nuclear Fusion Research 1992, Vol 1 = P. S. Iaea. Plasma Physics and Controlled Nuclear Fusion Research 1992, Vol 3 = Int Aeaps 3 Plasma Physics and Controlled Nuclear Fusion Research 1992, Vol 3 = Int. Aeaps. 3 Plasma Physics and Controlled Nuclear Fusion Research = Plasma Phys. Controlled Nucl. Fusion Res. Plasma Physics = Plasma Phys. Plasma Physics = Plasma Physics Plasma Physics Reports = Plasma Phys Rep Plasma Physics Reports = Plasma Phys Rep+ Plasma Physics Reports = Plasma Phys. Rep. Plasma Physics Reports = Plasma Phys. Rep+.+ Plasma Polarization Spectroscopy = Springer Ser Atom Op Plasma Polarization Spectroscopy = Springer. Ser. Atom. Op. Plasma Polymerization and Plasma Interactions With Polymeric Materials = Appl Polym Symp Ser Plasma Polymerization and Plasma Interactions With Polymeric Materials = Appl. Polym. Symp. Ser. Plasma Processes and Polymers = Plasma Processes Polym. Plasma Processes and Polymers = Plasma Process Polym Plasma Processes and Polymers = Plasma Process. Polym. Plasma processes and polymers (Print) = Plasma Process Polym Plasma Processes in The Near-earth Space: Interball and Beyond = Adv Space Res Plasma Processes in The Near-earth Space: Interball and Beyond = Adv. Space. Res. Plasma Processes in The Near-earth Space: Interball and Beyond = Adv Space Res-series Plasma Processes in The Near-earth Space: Interball and Beyond = Adv. Space. Res-series. Plasma Processing and Dusty Particles = Mater Sci Forum Plasma Processing and Dusty Particles = Mater. Sci. Forum. Plasma Processing and Synthesis of Materials Iii = Mater Res Soc Symp P Plasma Processing and Synthesis of Materials Iii = Mater. Res. Soc. Symp. P. Plasma Processing of Polymers = Nato Adv Sci I E-app Plasma Processing of Polymers = Nato. Adv. Sci. I. E-app. Plasma Processing of Semiconductors = Nato Adv Sci I E-app Plasma Processing of Semiconductors = Nato. Adv. Sci. I. E-app. Plasma Processing Xii = Elec Soc S Plasma Processing Xii = Elec. Soc. S. Plasma Processing Xiv = Elec Soc S Plasma Processing Xiv = Elec. Soc. S. Plasmas and Polymers = Plasmas Polym Plasmas and Polymers = Plasmas Polym. Plasma Science and Technology = Plasma Sci. Technol Plasma Science & Technology = Plasma Sci Technol Plasma Science & Technology = Plasma Sci. Technol. Plasmas in The Laboratory and in The Universe: Interactions, Patterns, and Turbulence = Aip Conf Proc Plasmas in The Laboratory and in The Universe: Interactions, Patterns, and Turbulence = Aip. Conf. Proc. Plasmas in The Laboratory and in The Universe: New Insights and New Challenges = Aip Conf Proc Plasmas in The Laboratory and in The Universe: New Insights and New Challenges = Aip. Conf. Proc. Plasma Source Mass Spectrometry: Current Trends and Future Developments = Roy Soc Ch Plasma Source Mass Spectrometry: Current Trends and Future Developments = Roy. Soc. Ch. Plasma Source Mass Spectrometry = Roy Soc Ch Plasma Source Mass Spectrometry = Roy. Soc. Ch. Plasma Sources Science and Technology = Plasma Sources Sci. Technol. Plasma Sources Science & Technology = Plasma Sources Sci T Plasma Sources Science & Technology = Plasma Sources Sci. T. Plasma-surface Interactions and Processing of Materials = Nato Adv Sci I E-app Plasma-surface Interactions and Processing of Materials = Nato. Adv. Sci. I. E-app. Plasma Technologies for Hazardous Waste Destruction = Ital Phy So Plasma Technologies for Hazardous Waste Destruction = Ital. Phy. So. Plasma Technologies for Textiles = Woodhead Publ Ser Te Plasma Technologies for Textiles = Woodhead. Publ. Ser. Te. Plasma Therapy & Transfusion Technology = Plasma Ther Transfus Plasma Therapy & Transfusion Technology = Plasma Ther. Transfus. Plasmid=Plasmid;; Plasmid = Plasmid Plasminogen Activation in Fibrinolysis, in Tissue Remodeling, and in Development = Ann Ny Acad Sci Plasminogen Activation in Fibrinolysis, in Tissue Remodeling, and in Development = Ann. Ny. Acad. Sci. Plasminogen Activators : From Cloning to Therapy = Serono Sym Plasminogen Activators : From Cloning to Therapy = Serono. Sym. Plasminogen-related Growth Factors = Ciba F Symp Plasminogen-related Growth Factors = Ciba. F. Symp. Plasmonics in Biology and Medicine Iii = P Soc Photo-opt Ins Plasmonics in Biology and Medicine Iii = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine Ii = P Soc Photo-opt Ins Plasmonics in Biology and Medicine Ii = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine Iv = P Soc Photo-opt Ins Plasmonics in Biology and Medicine Iv = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine = P Soc Photo-opt Ins Plasmonics in Biology and Medicine = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine Vii = Proc Spie Plasmonics in Biology and Medicine Vii = Proc. Spie. Plasmonics in Biology and Medicine Vii = P Soc Photo-opt Ins Plasmonics in Biology and Medicine Vii = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine Vi = Proc Spie Plasmonics in Biology and Medicine Vi = Proc. Spie. Plasmonics in Biology and Medicine Vi = P Soc Photo-opt Ins Plasmonics in Biology and Medicine Vi = P. Soc. Photo-opt. Ins. Plasmonics in Biology and Medicine V = Proc Spie Plasmonics in Biology and Medicine V = Proc. Spie. Plasmonics in Biology and Medicine V = P Soc Photo-opt Ins Plasmonics in Biology and Medicine V = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties Ii = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties Ii = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties Iv = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties Iv = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties = Proc Spie Plasmonics: Metallic Nanostructures and Their Optical Properties = Proc. Spie. Plasmonics: Metallic Nanostructures and Their Optical Properties = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties Viii = Proc Spie Plasmonics: Metallic Nanostructures and Their Optical Properties Viii = Proc. Spie. Plasmonics: Metallic Nanostructures and Their Optical Properties Viii = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties Viii = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties Vi = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties Vi = P. Soc. Photo-opt. Ins. Plasmonics: Metallic Nanostructures and Their Optical Properties V = P Soc Photo-opt Ins Plasmonics: Metallic Nanostructures and Their Optical Properties V = P. Soc. Photo-opt. Ins. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iii = Proc Spie Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iii = Proc. Spie. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iii = P Soc Photo-opt Ins Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iii = P. Soc. Photo-opt. Ins. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Ii = P Soc Photo-opt Ins Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Ii = P. Soc. Photo-opt. Ins. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iv = Proc Spie Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iv = Proc. Spie. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iv = P Soc Photo-opt Ins Plasmonics: Nanoimaging, Nanofabrication, and Their Applications Iv = P. Soc. Photo-opt. Ins. Plasmonics: Nanoimaging, Nanofabrication, and Their Applications V = P Soc Photo-opt Ins Plasmonics: Nanoimaging, Nanofabrication, and Their Applications V = P. Soc. Photo-opt. Ins. Plasmonics = Plasmonics Plaste und Kautschuk = Plaste Kautsch. Plaste Und Kautschuk = Plaste Kautsch Plaste Und Kautschuk = Plaste Kautsch. Plastic and reconstructive surgery (1946) = Plast reconstr surg (1946) Plastic and reconstructive surgery and the transplantation bulletin = Plast Reconstr Surg Transplant Bull Plastic and reconstructive surgery = Plast Reconstr Surg Plastic and Reconstructive Surgery=Plast Reconstr Surg;; Plastic and Reconstructive Surgery = Plast Reconstr Surg Plastic and Reconstructive Surgery = Plast. Reconstr. Surg. Plastic and Reconstructive Surgery = Springer Spec Surg S Plastic and Reconstructive Surgery = Springer. Spec. Surg. S. Plastica = Plastica Plastic Deformation of Minerals and Rocks = Rev Mineral Geochem Plastic Deformation of Minerals and Rocks = Rev. Mineral. Geochem. Plasticheskie Massy = Plast. Massy Plasticity and Regeneration of Nervous System = Adv Exp Med Biol Plasticity and Regeneration of Nervous System = Adv. Exp. Med. Biol. Plasticity in The Adult Brain: From Genes to Neurotherapy = Prog Brain Res Plasticity in The Adult Brain: From Genes to Neurotherapy = Prog. Brain. Res. Plasticity of Metals and Alloys - Ispma 6 = Key Eng Mat Plasticity of Metals and Alloys - Ispma 6 = Key. Eng. Mat. Plasticity of Metals and Alloys - Ispma 6 = Key Eng Mater Plasticity of Metals and Alloys - Ispma 6 = Key. Eng. Mater. Plasticity of Motoneuronal Connections = Res Neurol Plasticity of Motoneuronal Connections = Res. Neurol. Plastic Optical Fibers = P Soc Photo-opt Ins Plastic Optical Fibers = P. Soc. Photo-opt. Ins. Plastics and Rubber = Plast Rubber Int Plastics and Rubber = Plast. Rubber Int. Plastics and Rubber Processing and Applications = Plast Rub Proc Appl Plastics and Rubber Processing and Applications = Plast. Rub. Proc. Appl. Plastics Design & Processing = Plast Design Process Plastics Design & Processing = Plast. Design Process. Plastics Engineering-crc = Plast Eng-crc Plastics Engineering-crc = Plast. Eng-crc. Plastics Engineering = Plast Eng Plastics Engineering = Plast. Eng. Plastics Fabrication and Recycling = Plast Eng-crc Plastics Fabrication and Recycling = Plast. Eng-crc. Plastics From Bacteria: Natural Functions and Applications = Microbiol Monogr Plastics From Bacteria: Natural Functions and Applications = Microbiol. Monogr. Plastics & Polymers = Plast Polym Plastics & Polymers = Plast. Polym. Plastics Rubber and Composites = Plast Rubber Compos Plastics Rubber and Composites = Plast. Rubber Compos. Plastics, Rubber and Composites = Plast., Rubber Compos. Plastics Rubber and Composites Processing and Applications = Plast. Rubber Compos. Process. Appl. Plastics Rubber and Composites Processing and Applications = Plast Rub Compos Pro Plastics Rubber and Composites Processing and Applications = Plast. Rub. Compos. Pro. Plastics, Rubber, and Paper Recycling = Acs Sym Ser Plastics, Rubber, and Paper Recycling = Acs. Sym. Ser. Plastics & Rubber International = Plast Rubber Int Plastics & Rubber International = Plast. Rubber Int. Plastics Technology = Plast Technol Plastics Technology = Plast. Technol. Plastic Surgery 1992, Vol 1 : Lectures and Panels = Int Congr Ser Plastic Surgery 1992, Vol 1 : Lectures and Panels = Int. Congr. Ser. Plastic Surgery 1992, Vol 2 : Free Papers = Int Congr Ser Plastic Surgery 1992, Vol 2 : Free Papers = Int. Congr. Ser. Plastic surgical nursing : official journal of the American Society of Plastic and Reconstructive Surgical Nurses = Plast Surg Nurs Plastic Surgical Nursing = Plast. Surg. Nurs. Plastics World = Plast World Plastics World = Plast. World Plate Heat Exchangers: Design, Applications and Performance = Int Ser Dev Heat Tra Plate Heat Exchangers: Design, Applications and Performance = Int. Ser. Dev. Heat Tra. Platelet-activating Factor and Related Lipid Mediators 2 = Adv Exp Med Biol Platelet-activating Factor and Related Lipid Mediators 2 = Adv. Exp. Med. Biol. Platelet-dependent Vascular Occlusion = Ann Ny Acad Sci Platelet-dependent Vascular Occlusion = Ann. Ny. Acad. Sci. Platelet Immunology : Fundamental and Clinical Aspects = Colloq Inse Platelet Immunology : Fundamental and Clinical Aspects = Colloq. Inse. Platelets = Platelets Plates and Fem: Surprises and Pitfalls = Solid Mech Appl Plates and Fem: Surprises and Pitfalls = Solid. Mech. Appl. Plates, Plumes and Paradigms = Geol Soc Am Spec Pap Plates, Plumes and Paradigms = Geol. Soc. Am. Spec. Pap. Plates, Plumes and Planetary Processes = Geol Soc Am Spec Pap Plates, Plumes and Planetary Processes = Geol. Soc. Am. Spec. Pap. Plate Structures = Solid Mech Appl Plate Structures = Solid. Mech. Appl. Platform Concepts Even for Short Production Runs and Plants = Vdi Bericht Platform Concepts Even for Short Production Runs and Plants = Vdi. Bericht. Platforms and Systems = P Soc Photo-opt Ins Platforms and Systems = P. Soc. Photo-opt. Ins. Platform Studies = Platf Stud Platform Studies = Platf. Stud. Plating and Surface Finishing = Plat Surf Finish Plating and Surface Finishing = Plat. Surf. Finish. Platinum and Other Heavy Metal Compounds in Cancer Chemotherapy = Canc Drug Disc Dev Platinum and Other Heavy Metal Compounds in Cancer Chemotherapy = Canc. Drug. Disc. Dev. Platinum Metals Review = Platin Met Rev Platinum Metals Review = Platin. Met. Rev. Platinum Metals Review = Platinum Met. Rev. Platonic Coleridge = Stud Comp Lit Ser Platonic Coleridge = Stud. Comp. Lit. Ser. Platonic Love: Interpretations of Eros in Plato, Plotinus and Ficino = Beitr Altertumskunde Platonic Love: Interpretations of Eros in Plato, Plotinus and Ficino = Beitr. Altertumskunde. Platonism At The Origins of Modernity = Arch Int Hist Idees Platonism At The Origins of Modernity = Arch. Int. Hist. Idees. Platon = Platon (Athens) Platypus, 4th Edition = Austral Nat Hist Ser Platypus, 4th Edition = Austral. Nat. Hist. Ser. Playback and Studies of Animals Communication = Nato Adv Sci I A-lif Playback and Studies of Animals Communication = Nato. Adv. Sci. I. A-lif. Play & Culture = Play Culture Playing and Learning Outdoors: Making Provision for High-quality Experiences in The Outdoor Environment = Nurs World Routledge Playing and Learning Outdoors: Making Provision for High-quality Experiences in The Outdoor Environment = Nurs. World. Routledge. Playing On The Periphery: Sport, Identity and Memory = Sport Glob Soc Playing On The Periphery: Sport, Identity and Memory = Sport. Glob. Soc. Playing With The Past = Hum-comput Int-sprin Playing With The Past = Hum-comput. Int-sprin. Plays in American Periodicals, 1890-1918 = Palg Stud Theat Perf Plays in American Periodicals, 1890-1918 = Palg. Stud. Theat. Perf. Pleasures and Perils of Genius: Mostly Mozart = Ment Heal Lib Monogr Pleasures and Perils of Genius: Mostly Mozart = Ment. Heal. Lib. Monogr. Plenitude Et L'exil: La Nouvelle Selon Claude Pujade-renaud = Cribles Plenitude Et L'exil: La Nouvelle Selon Claude Pujade-renaud = Cribles. Plenum Series in Behavioral Psychophysiology and Medicine = Pl S Behav Plenum Series in Behavioral Psychophysiology and Medicine = Pl. S. Behav. Plenum Series in Underwater Archaeology = Pl S Underwater Plenum Series in Underwater Archaeology = Pl. S. Underwater Plenum Series On Stress and Coping = Pl S Stress Plenum Series On Stress and Coping = Pl. S. Stress Pleurocarpous Mosses: Systematics and Evolution = Syst Assoc Spec Vol Pleurocarpous Mosses: Systematics and Evolution = Syst. Assoc. Spec. Vol. Plos Biology = Plos Biol Plos Biology = Plos Biol. PLoS biology = PLoS Biol PLoS Biology = PLoS Biol. Plos Clinical Trials = Plos Clin Trials Plos Clinical Trials = Plos Clin. Trials PLoS clinical trials = PLoS Clin Trials PLoS Clinical Trials = PLoS Clin. Trials Plos Computational Biology = Plos Comput Biol Plos Computational Biology = Plos Comput. Biol. PLoS computational biology = PLoS Comput Biol PLoS Computational Biology = PLoS Comput. Biol. Plos Genetics = Plos Genet Plos Genetics = Plos Genet. PLoS genetics = PLoS Genet PLoS Genetics = PLoS Genet. Plos Medicine = Plos Med Plos Medicine = Plos Med. PLoS medicine = PLoS Med PLoS Medicine = PLoS Med. Plos Neglected Tropical Diseases = Plos Neglect Trop D Plos Neglected Tropical Diseases = Plos Neglect. Trop. D. PLoS neglected tropical diseases = PLoS Negl Trop Dis PLoS Neglected Tropical Diseases = PLoS Negl.Trop. Dis. Plos One = Plos One PLoS One = PLoS One PLoS ONE = PLoS ONE Plos Pathogens = Plos Pathog Plos Pathogens = Plos Pathog. PLoS pathogens = PLoS Pathog PLoS Pathogens = PLoS Pathog. Plots of Epiphany: Prison-escape in Acts of The Apostles = Beih Z Neutest Wiss Plots of Epiphany: Prison-escape in Acts of The Apostles = Beih. Z. Neutest. Wiss. Ploughshares = Ploughshares Plovdivski Universitet "Paisiy Khilendarski" = Plovdiv. Univ. "Paisiy Khilendarski" Nauchn. Trud. Mat. Plows, Plagues, and Petroleum: How Humans Took Control of Climate = Princ Sci Libr Plows, Plagues, and Petroleum: How Humans Took Control of Climate = Princ. Sci. Libr. Plucne bolesti i tuberkuloza = Plucne Bolesti Tuberk Plucne Bolesti i Tuberkuloza = Plucne Bolesti Tuberk. Plucne Bolesti = Plucne Bolesti Plug and Play Software for Agile Manufacturing = P Soc Photo-opt Ins Plug and Play Software for Agile Manufacturing = P. Soc. Photo-opt. Ins. Plugger; Iowa Dental Assistants Journal = Plugger. Plugger (Waterloo, Ia.) = Plugger Plural Action-essays in Philosophy and Social Science = Contrib Phenomenol Plural Action-essays in Philosophy and Social Science = Contrib. Phenomenol. Plural Action: Essays in Philosophy and Social Science = Contrib Phenomenol Plural Action: Essays in Philosophy and Social Science = Contrib. Phenomenol. Pluralistic Casuistry: Moral Arguments, Economic Realities, and Political Theory = Philos Med Pluralistic Casuistry: Moral Arguments, Economic Realities, and Political Theory = Philos. Med. Pluralist = Pluralist Plural societies = Plural Soc Plural Society in Peril: Migration, Economic Change, and The Papua Conflict = Pol Stud Plural Society in Peril: Migration, Economic Change, and The Papua Conflict = Pol. Stud. Pluripotent Stem Cells = Stem Cells Lab Clin Pluripotent Stem Cells = Stem Cells Lab. Clin. Plus de Lumière = Plus Lumière Plutarchs Vita Des Artaxerxes: Ein Historischer Kommentar = Gott Forum Altertums Plutarchs Vita Des Artaxerxes: Ein Historischer Kommentar = Gott. Forum. Altertums. Plutonium Futures-the Science = Aip Conf Proc Plutonium Futures-the Science = Aip. Conf. Proc. Plutonium Futures - The Science = Aip Conf Proc Plutonium Futures - The Science = Aip. Conf. Proc. Plutonium in The Environment = Radioactiv Environm Plutonium in The Environment = Radioactiv. Environm. Plzensky lekarsky sbornik = Plzen Lek Sb Pma Technical Symposium Proceedings = Pma Tech Symp Proc Pma Technical Symposium Proceedings = Pma Tech. Symp. Proc. PMC Physics A = PMC Phys. A PMC Physics B = PMC Phys. B Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 1, = Pme Conference Proce Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 1, = Pme Conference Proce. Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce. Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce. Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce. Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 5 = Pme Conference Proce Pme 30: Proceedings of The 30th Conference of The International Group for The Psychology of Mathematics Education, Vol 5 = Pme Conference Proce. Pme31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme Conference Proce Pme31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme. Conference Proce. Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce. Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce. Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce Pme 31: Proceedings of The 31st Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce. Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme Conference Proce Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme Conference Proce. Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce. Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce. Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce. Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 5 = Pme Conference Proce Pme 33: Proceedings of The 33rd Conference of The International Group for The Psychology of Mathematics Education, Vol 5 = Pme Conference Proce. Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme Conference Proce Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 1 = Pme Conference Proce. Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 2 = Pme Conference Proce. Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 3 = Pme Conference Proce. Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce Pme 34 Brazil: Proceedings of The 34th Conference of The International Group for The Psychology of Mathematics Education, Vol 4 = Pme Conference Proce. Pme Conference Proceedings = Pme Conference Proce Pme Conference Proceedings = Pme Conference Proce. Pmla-publications of The Modern Language Association of America = Pmla Pmla-publications of The Modern Language Association of America = Pmla. Pmm Journal of Applied Mathematics and Mechanics = Pmm-j Appl Math Mec+ Pmm Journal of Applied Mathematics and Mechanics = Pmm-j. Appl. Math. Mec+.+ PMSE Preprints = PMSE Prepr. Pneumatic Conveying of Solids: A Theoretical and Practical Approach, Third Edition = Part Technol Ser Pneumatic Conveying of Solids: A Theoretical and Practical Approach, Third Edition = Part. Technol. Ser. Pneumoftiziologia=Pneumoftiziologia;; Pneumoftiziologia = Pneumoftiziologia Pneumoftiziologia : revista Societatii Romane de Pneumoftiziologie / [Societatea Romana de Pneumoftiziologie] = Pneumoftiziologia Pneumologia (Bucharest, Romania) = Pneumologia Pneumologie=Pneumologie;; Pneumologie = Pneumologie Pneumologie (Stuttgart, Germany) = Pneumologie Pneumologisches Kolloquium = Pneumol Kol Pneumologisches Kolloquium = Pneumol. Kol. Pneumonologia i alergologia polska : organ Polskiego Towarzystwa Ftyzjopneumonologicznego, Polskiego Towarzystwa Alergologicznego, i Instytutu Gruzlicy i Chorob Pluc = Pneumonol Alergol Pol Pneumonologia i Alergologia Polska = Pneumonol. Alergol. Pol. Pneumonologia I Alergologia Polska=Pneumonol Alergol Pol;; Pneumonologia polska = Pneumonol Pol Pneumonologia Polska = Pneumonol. Pol. Pneumonologie = Pneumonologie Pneumonologie-pneumonology = Pneumonologie Pneumonologie-pneumonology = Pneumonologie. Pneumonologie. Pneumonology = Pneumonologie Pneumonologike kai phymatiologike epitheoresis = Pneumonol Phymatiologike Epitheor Png Geology, Exploration and Mining Conference, 1994 Proceedings = Australas I Min Met Png Geology, Exploration and Mining Conference, 1994 Proceedings = Australas. I. Min. Met. Poblacion (Consejo Nacional de Poblacion (Peru) : 1995) = Poblacion Poblacion y desarrollo (1991) = Poblac Desarro Pochvovedenie = Pochvovedenie Pocos De Caldas Hot Spot: A Big Blast for Nuclear Energy in Brazil = Energ Sci Eng Tech Pocos De Caldas Hot Spot: A Big Blast for Nuclear Energy in Brazil = Energ. Sci. Eng. Tech. Podiplomski Seminar iz Matematike = Podiplomski Sem. Mat. Podstawowe Nauki Techniczne = Podstaw. Nauki Tech. Monogr. Poems in Context: Greek Poetry in The Egyptian Thebaid 200-600 Ad = Sozomena-stud Recov Poems in Context: Greek Poetry in The Egyptian Thebaid 200-600 Ad = Sozomena-stud. Recov. Poems of Oswald Von Wolkenstein: An English Translation of The Complete Works (1376/77-1445) = New Middle Ages Poems of Oswald Von Wolkenstein: An English Translation of The Complete Works (1376/77-1445) = New. Middle. Ages. Poesia Del Siglo Xvi = Criticon Poesia Del Siglo Xvi = Criticon. Poesie Und Philologie in Der Goethe-zeit: Studien Zum Verhaltnis Der Literatur Mit Ihrer Wissenschaft = Stud Deut Lit Poesie Und Philologie in Der Goethe-zeit: Studien Zum Verhaltnis Der Literatur Mit Ihrer Wissenschaft = Stud. Deut. Lit. Poe Studies-dark Romanticism = Poe Stud-dark Roman Poe Studies-dark Romanticism = Poe Stud-dark. Roman. Poet & Critic = Poet Crit Poet & Critic = Poet Crit. Poet & Critic = Poet Critic Poetica-zeitschrift Fur Sprach-und Literaturwissenschaft = Poetica Poetica-zeitschrift Fur Sprach-und Literaturwissenschaft = Poetica. Poetic Interplay: Catullus and Horace = Martin Class Lect Poetic Interplay: Catullus and Horace = Martin. Class. Lect. Poetic Power of Place: Comparative Perspectives On Austronesian Ideas of Locality = Comp Austro Ser Poetic Power of Place: Comparative Perspectives On Austronesian Ideas of Locality = Comp. Austro. Ser. Poetics En Passant: Redefining The Relationship Between Victorian and Modern Poetry = Ninet-century Major Poetics En Passant: Redefining The Relationship Between Victorian and Modern Poetry = Ninet-century. Major. Poetics = Poetics Poetics Today = Poetics Today Poetique = Poetique Poetische Argumentation: Die Funktion Der Gnomik in Den Epinikien Des Bakchylides = Unters Antiken Lit G Poetische Argumentation: Die Funktion Der Gnomik in Den Epinikien Des Bakchylides = Unters. Antiken. Lit. G. Poet Lore = Poet Lore Poetry Australia = Poetry Aust Poetry Australia = Poetry Aust. Poetry & Poetics = Fr Lit Ser Poetry & Poetics = Fr. Lit. Ser. Poetry = Poetry Poetry Review = Poetry Rev Poetry Review = Poetry Rev. Poetry Wales = Poetry Wales Pogon sahoe yon'gu = Pogon Sahoe Yongu Poietischer Realismus: Zur Novelle Der Jahre 1848-1888 - Stifter, Keller, Meyer, Storm = Stud Deut Lit Poietischer Realismus: Zur Novelle Der Jahre 1848-1888 - Stifter, Keller, Meyer, Storm = Stud. Deut. Lit. Poincare Seminar 2002: Vacuum Energy - Renormalization = Prog Math P Poincare Seminar 2002: Vacuum Energy - Renormalization = Prog. Math. P. Poincare Seminar 2002: Vacuum Energy - Renormalization = Prog Math Phys Poincare Seminar 2002: Vacuum Energy - Renormalization = Prog. Math. Phys. Poincare Seminar 2003 = Prog Math P Poincare Seminar 2003 = Prog. Math. P. Point and Extended Defects in Semiconductors = Nato Adv Sci I B-phy Point and Extended Defects in Semiconductors = Nato. Adv. Sci. I. B-phy. Point Defects and Related Properties of Ceramics = Ceram Trans Point Defects and Related Properties of Ceramics = Ceram. Trans. Point Estimation of Root Finding Methods = Lect Notes Math Point Estimation of Root Finding Methods = Lect. Notes. Math. Point of View, Perspective, and Focalization: Modeling Mediation in Narrative = Narratolog Point of View, Perspective, and Focalization: Modeling Mediation in Narrative = Narratolog. Point of View, Perspective, and Focalization: Modeling Mediation in Narrative = Narratologia Point of View, Perspective, and Focalization: Modeling Mediation in Narrative = Narratologia. Points and Lines: Characterizing The Classical Geometries = Universitext Points and Lines: Characterizing The Classical Geometries = Universitext. Point to Point Communications = Point Point Commun Point to Point Communications = Point Point Commun. Point to Point Telecommunications = Point Point Telecomm Point to Point Telecommunications = Point Point Telecomm. Point Veterinaire = Point Vet Point Veterinaire = Point Vet. Poisoned Words: Slander and Satire in Early Modern France = Res Monogr Fr Stud Poisoned Words: Slander and Satire in Early Modern France = Res. Monogr. Fr. Stud. Poisons: Physiologically Active Substances = Pharm Res Saf Test Poisons: Physiologically Active Substances = Pharm. Res. Saf. Test. Poisson-dirichlet Distribution and Related Topics: Models and Asymptotic Behaviors = Probab Appl Ser Poisson-dirichlet Distribution and Related Topics: Models and Asymptotic Behaviors = Probab. Appl. Ser. Poisson Geometry, Deformation Quantisation and Group Representations = Lond Math S Poisson Geometry, Deformation Quantisation and Group Representations = Lond. Math. S. Poisson Geometry in Mathematics and Physics = Contemp Math Poisson Geometry in Mathematics and Physics = Contemp. Math. Polar biology = Polar Biol Polar Biology = Polar Biol Polar Biology = Polar Biol. Polar Cap Boundary Phenomena = Nato Adv Sci I C-mat Polar Cap Boundary Phenomena = Nato. Adv. Sci. I. C-mat. Polar Cap Thermosphere/ionosphere and Its Role in Solar-terrestrial Physics = Adv Space Res Polar Cap Thermosphere/ionosphere and Its Role in Solar-terrestrial Physics = Adv. Space. Res. Polarforschung = Polarforschung Polar Hayes: The Life and Contributions of Isaac Israel Hayes, M.d. = Mem Am Philos Soc Polar Hayes: The Life and Contributions of Isaac Israel Hayes, M.d. = Mem. Am. Philos. Soc. Polarimetric Detection, Characterization, and Remote Sensing = Nato Sci Peace Secur Polarimetric Detection, Characterization, and Remote Sensing = Nato. Sci. Peace. Secur. Polarimetric Radar Imaging: From Basics to Applications = Opt Sci Eng-crc Polarimetric Radar Imaging: From Basics to Applications = Opt. Sci. Eng-crc. Polarimetry and Ellipsometry = P Soc Photo-opt Ins Polarimetry and Ellipsometry = P. Soc. Photo-opt. Ins. Polarimetry in Astronomy = Proc Spie Polarimetry in Astronomy = Proc. Spie. Polarimetry in Astronomy = P Soc Photo-opt Ins Polarimetry in Astronomy = P. Soc. Photo-opt. Ins. Polarimetry of The Interstellar Medium = Astr Soc P Polarimetry of The Interstellar Medium = Astr. Soc. P. Polarimetry : Radar, Infrared, Visible, Ultraviolet, and X-ray = P Soc Photo-opt Ins Polarimetry : Radar, Infrared, Visible, Ultraviolet, and X-ray = P. Soc. Photo-opt. Ins. Polarization Analysis and Measurement Ii = P Soc Photo-opt Ins Polarization Analysis and Measurement Ii = P. Soc. Photo-opt. Ins. Polarization Analysis and Measurement = P Soc Photo-opt Ins Polarization Analysis and Measurement = P. Soc. Photo-opt. Ins. Polarization Analysis, Measurement, and Remote Sensing Iii = Proc Spie Polarization Analysis, Measurement, and Remote Sensing Iii = Proc. Spie. Polarization Analysis, Measurement, and Remote Sensing Iii = P Soc Photo-opt Ins Polarization Analysis, Measurement, and Remote Sensing Iii = P. Soc. Photo-opt. Ins. Polarization Analysis, Measurement, and Remote Sensing Iv = Proc Spie Polarization Analysis, Measurement, and Remote Sensing Iv = Proc. Spie. Polarization Analysis, Measurement, and Remote Sensing Iv = P Soc Photo-opt Ins Polarization Analysis, Measurement, and Remote Sensing Iv = P. Soc. Photo-opt. Ins. Polarization and Color Techniques in Industrial Inspection = Proc Spie Polarization and Color Techniques in Industrial Inspection = Proc. Spie. Polarization and Color Techniques in Industrial Inspection = P Soc Photo-opt Ins Polarization and Color Techniques in Industrial Inspection = P. Soc. Photo-opt. Ins. Polarization and Remote Sensing = P Soc Photo-opt Ins Polarization and Remote Sensing = P. Soc. Photo-opt. Ins. Polarization Considerations for Optical Systems Ii = P Soc Photo-opt Ins Polarization Considerations for Optical Systems Ii = P. Soc. Photo-opt. Ins. Polarization Measurement, Analysis, and Applications V = P Soc Photo-opt Ins Polarization Measurement, Analysis, and Applications V = P. Soc. Photo-opt. Ins. Polarization: Measurement, Analysis, and Remote Sensing Ii = Proc Spie Polarization: Measurement, Analysis, and Remote Sensing Ii = Proc. Spie. Polarization: Measurement, Analysis, and Remote Sensing Ii = P Soc Photo-opt Ins Polarization: Measurement, Analysis, and Remote Sensing Ii = P. Soc. Photo-opt. Ins. Polarization: Measurement, Analysis, and Remote Sensing Ix = P Soc Photo-opt Ins Polarization: Measurement, Analysis, and Remote Sensing Ix = P. Soc. Photo-opt. Ins. Polarization: Measurement, Analysis, and Remote Sensing = P Soc Photo-opt Ins Polarization: Measurement, Analysis, and Remote Sensing = P. Soc. Photo-opt. Ins. Polarization: Measurement, Analysis, and Remote Sensing Viii = Proc Spie Polarization: Measurement, Analysis, and Remote Sensing Viii = Proc. Spie. Polarization: Measurement, Analysis, and Remote Sensing Vii = P Soc Photo-opt Ins Polarization: Measurement, Analysis, and Remote Sensing Vii = P. Soc. Photo-opt. Ins. Polarization: Measurement, Analysis, and Remote Sensing Vi = P Soc Photo-opt Ins Polarization: Measurement, Analysis, and Remote Sensing Vi = P. Soc. Photo-opt. Ins. Polarization Mode Dispersion = Opt Fiber Comm Rep Polarization Mode Dispersion = Opt. Fiber. Comm. Rep. Polarization Mode Dispersion = Opt Fiber Commun Rep Polarization Mode Dispersion = Opt. Fiber. Commun. Rep. Polarization Phenomena in Nuclear Physics = Aip Conf Proc Polarization Phenomena in Nuclear Physics = Aip. Conf. Proc. Polarization Science and Remote Sensing Iii = Proc Spie Polarization Science and Remote Sensing Iii = Proc. Spie. Polarization Science and Remote Sensing Iii = P Soc Photo-opt Ins Polarization Science and Remote Sensing Iii = P. Soc. Photo-opt. Ins. Polarization Science and Remote Sensing = P Soc Photo-opt Ins Polarization Science and Remote Sensing = P. Soc. Photo-opt. Ins. Polarized Antiproton Beams-how? = Aip Conf Proc Polarized Antiproton Beams-how? = Aip. Conf. Proc. Polarized Collider Workshop = Aip Conf Proc Polarized Collider Workshop = Aip. Conf. Proc. Polarized Electron/polarized Photon Physics = Phys Atoms Polarized Electron/polarized Photon Physics = Phys. Atoms. Polarized Gas Targets and Polarized Beams - Seventh International Workshop = Aip Conf Proc Polarized Gas Targets and Polarized Beams - Seventh International Workshop = Aip. Conf. Proc. Polarized Ion Sources and Polarized Gas Targets = Aip Conf Proc Polarized Ion Sources and Polarized Gas Targets = Aip. Conf. Proc. Polarized Neutrons and Synchrotron X-rays for Magnetism Conference 2009 = J Phys Conf Ser Polarized Neutrons and Synchrotron X-rays for Magnetism Conference 2009 = J. Phys. Conf. Ser. Polar Motion: Historical and Scientific Problems = Astr Soc P Polar Motion: Historical and Scientific Problems = Astr. Soc. P. Polar Oceans From Space = Atmos Ocean Sci Lib Polar Oceans From Space = Atmos. Ocean. Sci. Lib. Polarons and Applications = Proc Nonlin Polarons and Applications = Proc. Nonlin. Polarons in Advanced Materials = Springer Ser Mater S Polarons in Advanced Materials = Springer. Ser. Mater. S. Polar Record = Polar Rec Polar Record = Polar Rec. Polar research = Polar Res Polar Research = Polar Res Polar Research = Polar Res. Polar Research Series = Polar Res S Polar Research Series = Polar Res. S. Polar Science = Polar Sci. Polevye archeologičeskie issledovanija = PAI Police and The Community in The 1990s = Aic Conf P Police and The Community in The 1990s = Aic. Conf. P. Police Chief = Police Chief Police Corruption: Preventing Misconduct and Maintaining Integrity = Adv Polic Theor Prac Police Corruption: Preventing Misconduct and Maintaining Integrity = Adv. Polic. Theor. Prac. Police Forces: A Cultural History of An Institution = Stud Eur Cult Hist Police Forces: A Cultural History of An Institution = Stud. Eur. Cult. Hist. Police Law Quarterly = Police Law Quart Police Law Quarterly = Police Law Quart. Police Management: Professional Integrity in Policing = Crim Justice Law Enf Police Management: Professional Integrity in Policing = Crim. Justice. Law. Enf. Police Quarterly = Police Q Police Quarterly = Police Q. Police Technology: Asia Pacific Police Technology Conference = Aic Conf P Police Technology: Asia Pacific Police Technology Conference = Aic. Conf. P. Policies and Research in Identity Management = Int Fed Info Proc Policies and Research in Identity Management = Int. Fed. Info. Proc. Policies for Competitiveness = Fuj Busin Hist Ser Policies for Competitiveness = Fuj. Busin. Hist. Ser. Policies for Distributed Systems and Networks, Proceedings = Lect Notes Comput Sc Policies for Distributed Systems and Networks, Proceedings = Lect. Notes. Comput. Sc. Policies for Long-run Economic Growth = Fed Bank Ks Policies for Long-run Economic Growth = Fed. Bank. Ks. Policies for Managing Urban Growth and Landscape Change: A Key to Conservation in The 21st Century = Us For Serv T R Nc Policies for Managing Urban Growth and Landscape Change: A Key to Conservation in The 21st Century = Us. For. Serv. T. R. Nc. Policies, Regulatory Regimes and Management Practices for Investment Promotion and Sustainable Development of The Mineral Resources Sector in Economies in Transition and Developing Countries of East and South-east Asia = Min Res Ass Dev Man Policies, Regulatory Regimes and Management Practices for Investment Promotion and Sustainable Development of The Mineral Resources Sector in Economies in Transition and Developing Countries of East and South-east Asia = Min. Res. Ass. Dev. Man. Policies to Promote Competitiveness in Manufacturing in Sub-saharan Africa = Oecd Devel Policies to Promote Competitiveness in Manufacturing in Sub-saharan Africa = Oecd. Devel. Policing-an International Journal of Police Strategies & Management = Policing Policing-an International Journal of Police Strategies & Management = Policing. Policing & Society = Polic Soc Policing & Society = Polic. Soc. Policlinico. Sezione Chirurgica = Policlinico. [Chir.] Policlinico. Sezione Medica = Policlinico. [Med.] Policlinico; sezione practica = Policlinico [Prat] Policlinico. Sezione Pratica = Policlinico. [Prat.] Policy analysis brief. H series / Project Hope, Center for Health Affairs = Policy Anal Brief H Ser Policy analysis brief. W series / Project Hope, Walsh Center for Rural Health Analysis = Policy Anal Brief W Ser Policy Analysis=Pol. Anal. Policy analysis = Policy Anal Policy Analysis = Policy Anal Policy Analysis = Policy Anal. Policy and politics = Policy Polit Policy and Politics = Policy Polit Policy and Politics = Policy Polit. Policy and Practice = Adv Learn Behav Disa Policy and Practice = Adv. Learn. Behav. Disa. Policy brief (Center for Home Care Policy and Research (U.S.)) = Policy Brief (Cent Home Care Policy Res) Policy brief (Commonwealth Fund) = Policy Brief Commonw Fund Policy brief (George Washington University. Center for Health Services Research and Policy) = Policy Brief George Wash Univ Cent Health Serv Res Policy Policy brief (UCLA Center for Health Policy Research) = Policy Brief UCLA Cent Health Policy Res Policy, Experience and Change-cross-cultural Reflections On Inclusive Education = Incl Educ Cross Cult Policy, Experience and Change-cross-cultural Reflections On Inclusive Education = Incl. Educ. Cross. Cult. Policy Forum Series = Policy Forum Series Policy Initiatives Towards The Third Sector in International Perspective = Nonprofit Civ Soc St Policy Initiatives Towards The Third Sector in International Perspective = Nonprofit. Civ. Soc. St. Policy Making and Implementation: Studies From Papua New Guinea = Stud St Soc Pac Policy Making and Implementation: Studies From Papua New Guinea = Stud. St. Soc. Pac. Policy-making Processes and The European Constitution: A Comparative Study of Member States and Accession Countries = Routl Ecpr Stud Eur Policy-making Processes and The European Constitution: A Comparative Study of Member States and Accession Countries = Routl. Ecpr. Stud. Eur. Policy Options for Reform of Chinese State-owned Enterprises = World B Dis Policy Options for Reform of Chinese State-owned Enterprises = World. B. Dis. Policy=Policy Policy, politics & nursing practice = Policy Polit Nurs Pract Policy Reform for Sustainable Development in The Caribbean = Int Inst Adm Sci Mg Policy Reform for Sustainable Development in The Caribbean = Int. Inst. Adm. Sci. Mg. Policy Reforms and Agriculture Development in Central Asia = Nat Res Manag Policy Policy Reforms and Agriculture Development in Central Asia = Nat. Res. Manag. Policy Policy review = Policy Rev Policy Review = Policy Rev Policy Review = Policy Rev. Policy Review=Pol. Rev. Policy sciences = Policy Sci Policy Sciences = Policy Sci Policy Sciences = Policy Sci. Policy Sciences=Pol. Sci. Policy Statement, Royal College of General Practitioners = Policy Statement R. Coll. Gen. Pract. Policy statement / Royal College of General Practitioners. Royal College of General Practitioners = Policy Statement R Coll Gen Pract Policy Studies Journal = Policy Stud J Policy Studies Journal = Policy Stud. J. Policy studies journal: the journal of the Policy Studies Organization = Policy Stud J Policy Studies = Policy Stud-uk Policy Studies = Policy Stud-uk. Policy Studies=Pol. Stud. Policy Studies = Pol Stud Policy Studies = Pol. Stud. Policy studies review = Policy Stud Rev Policy Transfer in European Union Governance: Regulating The Utilities = Routl Adv Eur Polit Policy Transfer in European Union Governance: Regulating The Utilities = Routl. Adv. Eur. Polit. Polimeros-ciencia E Tecnologia = Polimeros Polimeros-ciencia E Tecnologia = Polimeros. Polimery = Polimery-w Polimery = Polimery-w. Polimery (Warsaw) = Polimery (Warsaw) Polimery w medycynie = Polim Med Polimery w Medycynie = Polim. Med. Polimery W Medycynie=Polim Med;; Polio news = Polio news Polis (Bologna, Italy) = Polis Polish Academy of Sciences = Acta Phys. Polon. A Polish Academy of Sciences = Arch. Control Sci. Polish Academy of Sciences = Arch. Mech. (Arch. Mech. Stos.) Polish Academy of Sciences = Bull. Polish Acad. Sci. Math. Polish Academy of Sciences = Engrg. Trans. Polish Academy of Sciences = J. Tech. Phys. Polish American studies = Pol Am Stud Polish Archaeology in the Mediterranean = PolAMed Polish ecological studies = Pol Ecol Stud Polish Entomological Monographs = Pol Entomol Monogr Polish Entomological Monographs = Pol. Entomol. Monogr. Polish Experience of Transition: Accomplishments and Problems, Proceedings = Trade Invest Polish Experience of Transition: Accomplishments and Problems, Proceedings = Trade. Invest. Polish Journal of Chemical Technology = Pol J Chem Technol Polish Journal of Chemical Technology = Pol. J. Chem. Technol. Polish journal of chemistry = Pol J Chem Polish Journal of chemistry = Pol. J. Chem. Polish Journal of Chemistry = Pol J Chem Polish Journal of Chemistry = Pol. J. Chem. Polish Journal of Ecology = Pol J Ecol Polish Journal of Ecology = Pol. J. Ecol. Polish Journal of Environmental Studies = Pol J Environ Stud Polish Journal of Environmental Studies = Pol. J. Environ. Stud. Polish Journal of Microbiology = Pol J Microbiol Polish Journal of Microbiology = Pol. J. Microbiol. Polish journal of occupational medicine and environmental health = Pol J Occup Med Environ Health Polish Journal of Occupational Medicine and Environmental Health = Pol. J. Occup. Med. Environ. Health Polish journal of occupational medicine = Pol J Occup Med Polish Journal of Occupational Medicine = Pol. J. Occup. Med. Polish journal of pathology : official journal of the Polish Society of Pathologists = Pol J Pathol Polish Journal of Pathology=Pol J Pathol;; Polish Journal of Pathology = Pol J Pathol Polish Journal of Pathology = Pol. J. Pathol. Polish Journal of Pharmacology and Pharmacy = Pol J Pharmacol Phar Polish Journal of Pharmacology and Pharmacy = Pol. J. Pharmacol. Phar. Polish journal of pharmacology and pharmacy = Pol J Pharmacol Pharm Polish Journal of Pharmacology and Pharmacy = Pol. J. Pharmacol. Pharm. Polish journal of pharmacology = Pol J Pharmacol Polish Journal of Pharmacology=Pol J Pharmacol;; Polish Journal of Pharmacology = Pol J Pharmacol Polish Journal of Pharmacology = Pol. J. Pharmacol. Polish journal of veterinary sciences = Pol J Vet Sci Polish Journal of Veterinary Sciences = Pol J Vet Sci Polish Journal of Veterinary Sciences = Pol. J. Vet. Sci. Polish Library of Psychiatry = Bibl Psychiat Pol Polish Library of Psychiatry = Bibl. Psychiat. Pol. Polish Maritime Research = Pol Marit Res Polish Maritime Research = Pol. Marit. Res. Polish medical journal = Pol Med J Polish Medical Journal = Pol. Med. J. Polish medical science and history bulletin = Pol Med Sci Hist Bull Polish medical sciences and history bulletin = Pol Med Sci Hist Bull Polish Medical Sciences and History Bulletin = Pol. Med. Sci. Hist. Bull. Polish perspectives = Pol Perspect Polish Polar Research = Pol Polar Res Polish Polar Research = Pol. Polar Res. Polish population review / Polish Demographic Society [and] Central Statistical Office = Pol Popul Rev Polish Psychological Bulletin = Pol Psychol Bull Polish Psychological Bulletin = Pol. Psychol. Bull. Polish Review of Radiology and Nuclear Medicine = Pol Rev Radiol Nucl Polish Review of Radiology and Nuclear Medicine = Pol. Rev. Radiol. Nucl. Polish Sociological Bulletin = Pol Sociol Bull Polish Sociological Bulletin = Pol. Sociol. Bull. Polish Sociological Review = Pol Sociol Rev Polish Sociological Review = Pol. Sociol. Rev. Polish Studies in English Language and Literature = Polish Stud Polish Studies in English Language and Literature = Polish Stud. Polish Western affairs = Pol West Aff Polis = Polis-j Soc Greek Po Polis = Polis-j. Soc. Greek. Po. Polis. Revista de ideas y formas políticas de la antigüedad clásica = Polis Polit-a Journal for Literature and Politics = Polit-j Lit Polit Polit-a Journal for Literature and Politics = Polit-j. Lit. Polit. Politechnika Poznańska = Rozprawy Politech. Poznań Politechnika Wrocławska = Prace Nauk. Inst. Cybernet. Tech. Politech. Wrocław. Ser. Monograf. "Politehnica" University of Bucharest = Politehn. Univ. Bucharest Sci. Bull. Ser. A Appl. Math. Phys. "Politehnica" University of Bucharest = Politehn. Univ. Bucharest Sci. Bull. Ser. D Mech. Engrg. "Politehnica" University of Bucharest = Politeh. Univ. Buchar. Sci. Bull. Ser. B Chem. Mater. Sci. "Politehnica" University of Bucharest = Politeh. Univ. Buchar. Sci. Bull. Ser. C Electr. Eng. Politeness in Language: Studies in Its History, Theory and Practice, 2nd Rev. and Exp. Ed = Mouton Txb Politeness in Language: Studies in Its History, Theory and Practice, 2nd Rev. and Exp. Ed = Mouton. Txb. Politica Economica=Politica Econ. Politica internazionale = Polit Int Political affairs = Polit Aff Political Agendas for Education: From The Christian Coalition to The Green Party, Third Edition = Sociocult Polit Hist Political Agendas for Education: From The Christian Coalition to The Green Party, Third Edition = Sociocult. Polit. Hist. Political Agendas for Education = Sociocult Polit Hist Political Agendas for Education = Sociocult. Polit. Hist. Political Analysis = Polit Anal Political Analysis = Polit. Anal. Political and Social Thought in Post-communist Russia = Basees-rout Ser Russ Political and Social Thought in Post-communist Russia = Basees-rout. Ser. Russ. Political Approaches to Educational Administration and Leadership = Routl Res Educ Political Approaches to Educational Administration and Leadership = Routl. Res. Educ. Political Behavior = Polit Behav Political Behavior = Polit. Behav. Political Booms: Local Money and Power in Taiwan, East China, Thailand, and The Philippines = Ser Contemp China Political Booms: Local Money and Power in Taiwan, East China, Thailand, and The Philippines = Ser. Contemp. China. Political Civilization and Modernization in China: The Political Context of China's Transformation = Ser Contemp China Political Civilization and Modernization in China: The Political Context of China's Transformation = Ser. Contemp. China. Political Communication in Asia = Commun Ser Political Communication in Asia = Commun. Ser. Political Communication = Polit Commun Political Communication = Polit. Commun. Political Communications (series) = Polit Commun Ser Political Communications (series) = Polit. Commun. Ser. Political Competition and Economic Regulation = Routl Explor Econ Hi Political Competition and Economic Regulation = Routl. Explor. Econ. Hi. Political Constructivism = Routl Innov Polit Th Political Constructivism = Routl. Innov. Polit. Th. Political Culture and Civil Society in Russia and The New States of Eurasia = Int Pol Eur Political Culture and Civil Society in Russia and The New States of Eurasia = Int. Pol. Eur. Political Culture and Post-communism = St Antony Ser Political Culture and Post-communism = St. Antony. Ser. Political Cultures in Asia and Europe: Citizens, States and Societal Values = Polit Asia Political Cultures in Asia and Europe: Citizens, States and Societal Values = Polit. Asia Political Culture Under Institutional Pressure: How Institutional Change Transforms Early Socialization = Polit Evol Inst Chan Political Culture Under Institutional Pressure: How Institutional Change Transforms Early Socialization = Polit. Evol. Inst. Chan. Political Diaries of The Fourth Earl of Carnarvon, 1857-1890 = Camden Fifth Ser Political Diaries of The Fourth Earl of Carnarvon, 1857-1890 = Camden. Fifth. Ser. Political Dimension of Economic Growth = Iea Conf Vol Political Dimension of Economic Growth = Iea. Conf. Vol. Political Ecology of Tropical Forests in Southeast Asia: Historical Perspectives = Kyoto Area Studies Political Ecology of Tropical Forests in Southeast Asia: Historical Perspectives = Kyoto. Area. Studies. Political Economy and Christian Theology Since The Enlightenment: Essays in Intellectual History = Stud Mod Hist Political Economy and Christian Theology Since The Enlightenment: Essays in Intellectual History = Stud. Mod. Hist. Political Economy and Globalization = Routl Front Polit Ec Political Economy and Globalization = Routl. Front. Polit. Ec. Political Economy and Grand Strategy = Rout Glob Secur Stud Political Economy and Grand Strategy = Rout. Glob. Secur. Stud. Political Economy and Public Policy = Polit Ec P Political Economy and Public Policy = Polit. Ec. P. Political Economy Forum = Polit Econ Forum Political Economy Forum = Polit. Econ. Forum Political Economy, Linguistics and Culture = Eur Herit Econ Soc S Political Economy, Linguistics and Culture = Eur. Herit. Econ. Soc. S. Political Economy of Consumer Behavior : Contesting Consumption = Routl Adv Soc Econ Political Economy of Consumer Behavior : Contesting Consumption = Routl. Adv. Soc. Econ. Political Economy of Educational Reforms and Capacity Development in Southeast Asia: Cases of Cambodia, Laos and Vietnam = Educ Asia Pac Reg-is Political Economy of Educational Reforms and Capacity Development in Southeast Asia: Cases of Cambodia, Laos and Vietnam = Educ. Asia. Pac. Reg-is. Political Economy of Emerging Markets = Ceri Ser Int Relat P Political Economy of Emerging Markets = Ceri. Ser. Int. Relat. P. Political Economy of European Union Competition Policy = New Polit Econ Ser Political Economy of European Union Competition Policy = New. Polit. Econ. Ser. Political Economy of Financing Scottish Government: Considering A New Constitutional Settlement for Scotland = Stud Fiscal Fed Stat Political Economy of Financing Scottish Government: Considering A New Constitutional Settlement for Scotland = Stud. Fiscal. Fed. Stat. Political Economy of Fiscal Policy: Public Deficits, Volatility, and Growth = Lect Notes Econ Math Political Economy of Fiscal Policy: Public Deficits, Volatility, and Growth = Lect. Notes. Econ. Math. Political Economy of Global Interdependence = Pol Econ Gl Political Economy of Global Interdependence = Pol. Econ. Gl. Political Economy of Global Security: War, Future Crises and Changes in Global Governance = Rethink Glob Political Economy of Global Security: War, Future Crises and Changes in Global Governance = Rethink. Glob. Political Economy of Government Auditing = Law Dev Glob Political Economy of Government Auditing = Law. Dev. Glob. Political Economy of Government Debt = Contrib To Econ Anal Political Economy of Government Debt = Contrib. To. Econ. Anal. Political Economy of Human Rights Enforcement = Glob Ethics Political Economy of Human Rights Enforcement = Glob. Ethics. Political Economy of International Capital Mobility = Int Polit Econ Ser Political Economy of International Capital Mobility = Int. Polit. Econ. Ser. Political Economy of International Organizations = Pol Econ Gl Political Economy of International Organizations = Pol. Econ. Gl. Political Economy of International Tax Governance = Transform State Political Economy of International Tax Governance = Transform. State. Political Economy of Inter-regional Fiscal Flows: Measurement, Determinants and Eff Ects On Country Stability = Stud Fiscal Fed Stat Political Economy of Inter-regional Fiscal Flows: Measurement, Determinants and Eff Ects On Country Stability = Stud. Fiscal Fed. Stat. Political Economy of Manitoba = Can Plain S Political Economy of Manitoba = Can. Plain. S. Political Economy of Oil and Gas in Africa = Routl Stud Int Bus W Political Economy of Oil and Gas in Africa = Routl. Stud. Int. Bus. W. Political Economy of Peacebuilding in Post-dayton Bosnia = Contemp Secur Stud Political Economy of Peacebuilding in Post-dayton Bosnia = Contemp. Secur. Stud. Political Economy of Policy Reform = Contrib Econ Anal Political Economy of Policy Reform = Contrib. Econ. Anal. Political Economy of Policy Reform = Contrib To Econ Anal Political Economy of Policy Reform = Contrib. To. Econ. Anal. Political Economy of Reform in Central Asia: Uzbekistan Under Authoritarianism = Cent Asia Res Forum Political Economy of Reform in Central Asia: Uzbekistan Under Authoritarianism = Cent. Asia. Res. Forum. Political Economy of Rural Livelihoods in Transition Economies = Routl Iss St Rur Liv Political Economy of Rural Livelihoods in Transition Economies = Routl. Iss. St. Rur. Liv. Political Economy of Socialism = Pol Econ S Political Economy of Socialism = Pol. Econ. S. Political Economy of Sport = Int Polit Econ Ser Political Economy of Sport = Int. Polit. Econ. Ser. Political Economy of State-business Relations in Europe = Routl Uaces Contemp Political Economy of State-business Relations in Europe = Routl. Uaces. Contemp. Political Economy of Tax Reform = Nber E A Ec Political Economy of Tax Reform = Nber. E. A. Ec. Political Economy of The Asia Pacific = Polit Econ Asia Pac Political Economy of The Asia Pacific = Polit. Econ. Asia Pac. Political Economy of The Minimal State = Shaftesb Paper Political Economy of The Minimal State = Shaftesb. Paper. Political Economy of The Sars Epidemic: The Impact On Human Resources in East Asia = Routledge Stud Growt Political Economy of The Sars Epidemic: The Impact On Human Resources in East Asia = Routledge. Stud. Growt. Political Economy of Transition and Development: Institutions, Politics, and Policies = Zei Stud Eu Econ Law Political Economy of Transition and Development: Institutions, Politics, and Policies = Zei. Stud. Eu. Econ. Law. Political Economy of Water and Sanitation = Routl Stud Dev Soc Political Economy of Water and Sanitation = Routl. Stud. Dev. Soc. Political Economy of Work = Routl Front Polit Ec Political Economy of Work = Routl. Front. Polit. Ec. Political Ethics and The United Nations: Dag Hammarskjld As Secretary-general = Cass Ser Peacekeepin Political Ethics and The United Nations: Dag Hammarskjld As Secretary-general = Cass. Ser. Peacekeepin. Political Evolution and Institutional Change = Polit Evol Inst Chan Political Evolution and Institutional Change = Polit. Evol. Inst. Chan. Political Failure By Agreement: Learning Liberalism and The Welfare State = New Think Polit Econ Political Failure By Agreement: Learning Liberalism and The Welfare State = New. Think. Polit. Econ. Political Foundations of Judicial Supremacy: The Presidency, The Supreme Court, and Constitutional Leadership in U S History = Princ Stud Am Polit Political Foundations of Judicial Supremacy: The Presidency, The Supreme Court, and Constitutional Leadership in U S History = Princ. Stud. Am. Polit. Political Future of Hong Kong = Routl Stud Chin Econ Political Future of Hong Kong = Routl. Stud. Chin. Econ. Political geography = Polit Geogr Political Geography = Polit Geogr Political Geography = Polit. Geogr. Political Geography Quarterly = Polit Geogr Quart Political Geography Quarterly = Polit. Geogr. Quart. Political Globalization: State, Power and Social Forces = Int Polit Econ Ser Political Globalization: State, Power and Social Forces = Int. Polit. Econ. Ser. Political Institutions and Lesbian and Gay Rights in The United States and Canada = Rout Stud N Am Polit Political Institutions and Lesbian and Gay Rights in The United States and Canada = Rout. Stud. N. Am. Polit. Political Islam and Violence in Indonesia = Asian Secur Stud Political Islam and Violence in Indonesia = Asian. Secur. Stud. Political Justice and Religious Values = Contemp Sociol Persp Political Justice and Religious Values = Contemp. Sociol. Persp. Political Language and Metaphor: Interpreting and Changing The World = Routl Innov Polit Th Political Language and Metaphor: Interpreting and Changing The World = Routl. Innov. Polit. Th. Political Leadership and The Northern Ireland Peace Process: Role, Capacity and Effect = St Antonys Ser Political Leadership and The Northern Ireland Peace Process: Role, Capacity and Effect = St. Antonys. Ser. Political Legitimacy of Markets and Governments = Polit Ec P Political Legitimacy of Markets and Governments = Polit. Ec. P. Political Mobilisation and Democracy in India = Routl Adv S Asian St Political Mobilisation and Democracy in India = Routl. Adv. S. Asian. St. Political Obligation: A Critical Introduction = Routl Contemp Polit Political Obligation: A Critical Introduction = Routl. Contemp. Polit. Political Parties and Terrorist Groups, Second Edition = Rout Stud Extrem Dem Political Parties and Terrorist Groups, Second Edition = Rout. Stud. Extrem. Dem. Political Philosophy of Michel Foucault = Routl Stud Soc Polit Political Philosophy of Michel Foucault = Routl. Stud. Soc. Polit. Political Philosophy = Roy I Ph S Political Philosophy = Roy. I. Ph. S. Political Pluralism and The State = Routl Innov Polit Th Political Pluralism and The State = Routl. Innov. Polit. Th. Political Power and Social Theory = Polit Power Soc Theo Political Power and Social Theory = Polit. Power Soc. Theo. Political Power and Social Theory, Vol 16 = Polit Power Soc Theo Political Power and Social Theory, Vol 16 = Polit. Power Soc. Theo. Political Power and Social Theory, Vol 17 = Polit Power Soc Theo Political Power and Social Theory, Vol 17 = Polit. Power Soc. Theo. Political Power and Social Theory, Vol 18 = Polit Power Soc Theo Political Power and Social Theory, Vol 18 = Polit. Power Soc. Theo. Political Power and Social Theory, Vol 19 = Polit Power Soc Theo Political Power and Social Theory, Vol 19 = Polit. Power Soc. Theo. Political Power and Social Theory, Volume 20 = Polit Power Soc Theo Political Power and Social Theory, Volume 20 = Polit. Power Soc. Theo. Political Power of Business = Routl Res Comp Polit Political Power of Business = Routl. Res. Comp. Polit. Political Psychology = Polit Psychol Political Psychology = Polit. Psychol. Political Public Relations: Principles and Applications = Routl Commun Ser Political Public Relations: Principles and Applications = Routl. Commun. Ser. Political Quarterly = Polit Quart Political Quarterly = Polit. Quart. Political Quarterly Special Issues Series = Polit Q Sp Iss Ser Political Quarterly Special Issues Series = Polit. Q. Sp. Iss. Ser. Political Quarterly Supplement = Polit Q Sup Political Quarterly Supplement = Polit. Q. Sup. Political Reform in Japan: Leadership Looming Large = Routl Contemp Jpn Se Political Reform in Japan: Leadership Looming Large = Routl. Contemp. Jpn. Se. Political Regimes and The Media in Asia = Routl Media Cult Soc Political Regimes and The Media in Asia = Routl. Media Cult. Soc. Political Regimes and The Media in Asia = Rout Med Cult Soc Political Regimes and The Media in Asia = Rout. Med. Cult. Soc. Political research quarterly = Polit Res Q Political Research Quarterly = Polit Res Quart Political Research Quarterly = Polit. Res. Quart. Political Road to War With Iraq: Bush, 9/11 and The Drive to Overthrow Saddam = Contemp Secur Stud Political Road to War With Iraq: Bush, 9/11 and The Drive to Overthrow Saddam = Contemp. Secur. Stud. Political Science = Polit Sci Political Science = Polit. Sci. Political science quarterly = Polit Sci Q Political Science Quarterly=Polit. Sci. Quart. Political Science Quarterly = Polit Sci Quart Political Science Quarterly = Polit. Sci. Quart. Political Science Research Centre Forum = Poli Sci Res Cent Fo Political Science Research Centre Forum = Poli. Sci. Res. Cent. Fo. Political science (Wellington, N.Z.) = Polit Sci Political Sociology for The 21st Century = Res Polit Sociol Political Sociology for The 21st Century = Res. Polit. Sociol. Political studies = Polit Stud Political Studies = Polit Stud-london Political Studies = Polit. Stud-london. Political Studies Review = Polit Stud Rev Political Studies Review = Polit. Stud. Rev. Political Theatre in Post-thatcher Britain: New Writing - 1995-2005 = Perform Interv Political Theatre in Post-thatcher Britain: New Writing - 1995-2005 = Perform. Interv. Political Theologies in The Holy Land: Israeli Messianism and Its Critics = Routl Jew Stud Ser Political Theologies in The Holy Land: Israeli Messianism and Its Critics = Routl. Jew. Stud. Ser. Political Theory and Community Building in Post-soviet Russia = Basees-rout Ser Russ Political Theory and Community Building in Post-soviet Russia = Basees-rout. Ser. Russ. Political Theory of Tyranny in Singapore and Burma: Aristotle and The Rhetoric of Benevolent Despotism = Routl Cont Se Asia S Political Theory of Tyranny in Singapore and Burma: Aristotle and The Rhetoric of Benevolent Despotism = Routl. Cont. Se. Asia. S. Political theory = Polit Theory Political Theory = Polit Theory Political Theory = Polit. Theory Political Thought of Sayyid Qutb: The Theory of Jahiliyyah = Routl Stud Pol Islam Political Thought of Sayyid Qutb: The Theory of Jahiliyyah = Routl. Stud. Pol. Islam. Political Transformation, Structural Adjustment and Industrial Relations in Africa: English-speaking Countries = Lab Man Rel Political Transformation, Structural Adjustment and Industrial Relations in Africa: English-speaking Countries = Lab. Man. Rel. Political Vierteljahresschrift Special Editions = Polit Vierteljahress Political Vierteljahresschrift Special Editions = Polit. Vierteljahress. Political Violence and Trauma in Argentina = Ethnogr Polit Violen Political Violence and Trauma in Argentina = Ethnogr. Polit. Violen. Political Warfare Against The Kremlin: Us and British Propaganda Policy At The Beginning of The Cold War = Glob Confl Secur Political Warfare Against The Kremlin: Us and British Propaganda Policy At The Beginning of The Cold War = Glob. Confl. Secur. Politica Y Gobierno = Polit Gob Politica Y Gobierno = Polit. Gob. Politica y sociedad (Madrid, Spain) = Polit Soc (Madrid) Politicians, Bureaucrats and Leadership in Organizations: Lessons From Regional Planning in France = Fr Polit Soc Cult Politicians, Bureaucrats and Leadership in Organizations: Lessons From Regional Planning in France = Fr. Polit. Soc. Cult. Politicizing Asian American Literature: Towards A Critical Multiculturalism = Stud Asian Am Politicizing Asian American Literature: Towards A Critical Multiculturalism = Stud. Asian Am. Politicka ekonomie = Polit Ekon Politicka Ekonomie = Polit Ekon Politicka Ekonomie = Polit. Ekon. Politická Ekonomie=Politická Ekon. Politico (Pavia, Italy) = Politico (Pavia) Politics, Administration and Society in The Hellenistic and Roman World = Stud Hellenist Politics, Administration and Society in The Hellenistic and Roman World = Stud. Hellenist. Politics and Aesthetics in The Diary of Virginia Woolf = Stud Major Lit Autho Politics and Aesthetics in The Diary of Virginia Woolf = Stud. Major. Lit. Autho. Politics and Change in Singapore and Hong Kong = Routl Contemp Asia Politics and Change in Singapore and Hong Kong = Routl. Contemp. Asia. Politics and Culture in Modern America = Polit Cult Mod Am Politics and Culture in Modern America = Polit. Cult. Mod. Am. Politics and Economics of Latin America Series = Polit Econ Lat Am Politics and Economics of Latin America Series = Polit. Econ. Lat. Am. Politics and Ethnicity: A Comparative Study = Perspect Comp Polit Politics and Ethnicity: A Comparative Study = Perspect. Comp. Polit. Politics and Globalization = Res Polit Sociol Politics and Globalization = Res. Polit. Sociol. Politics and Government in Hong Kong: Crisis Under Chinese Sovereignty = Routl Contemp China Politics and Government in Hong Kong: Crisis Under Chinese Sovereignty = Routl. Contemp. China. Politics and Neoliberalism: Structure, Process and Outcome = Res Polit Sociol Politics and Neoliberalism: Structure, Process and Outcome = Res. Polit. Sociol. Politics and Public Policy = Res Polit Sociol Politics and Public Policy = Res. Polit. Sociol. Politics and Religion = Polit Relig Politics and Religion = Polit. Relig. Politics and Society in Twentieth-century America = Polit Soc Twentieth Politics and Society in Twentieth-century America = Polit. Soc. Twentieth. Politics and Society Under The Bolsheviks = Int Congr Cent E Eur Politics and Society Under The Bolsheviks = Int. Congr. Cent. E. Eur. Politics and Strategy of Clandestine War: Special Operations Executive, 1940-1946 = Stud Intell Politics and Strategy of Clandestine War: Special Operations Executive, 1940-1946 = Stud. Intell. Politics and The Corporation = Res Polit Sociol Politics and The Corporation = Res. Polit. Sociol. Politics and The Individual = Polit Individ Politics and The Individual = Polit. Individ. Politics and The Life Sciences = Polit Life Sci Politics and The Life Sciences = Polit. Life Sci. Politics and the life sciences : the journal of the Association for Politics and the Life Sciences = Politics Life Sci Politics and The Media in Twenty-first Century Indonesia: Decade of Democracy = Media Cult Soc Chang Politics and The Media in Twenty-first Century Indonesia: Decade of Democracy = Media Cult. Soc. Chang. Politics and The Ruling Group in Putins Russia = Stud Cent E Eur Politics and The Ruling Group in Putins Russia = Stud. Cent. E. Eur. Politics and Violence in Israel/palestine: Democracy Versus Military Rule = Routl Stud Mid E Pol Politics and Violence in Israel/palestine: Democracy Versus Military Rule = Routl. Stud. Mid. E. Pol. Politics As Text and Talk: Analytic Approaches to Politcla Discourse = Dis Appl Pol Soc Cul Politics As Text and Talk: Analytic Approaches to Politcla Discourse = Dis. Appl. Pol. Soc. Cul. Politics & Gender = Polit Gender Politics & Gender = Polit. Gender Politics in Asia = Polit Asia Politics in Asia = Polit. Asia Politics in China Since 1949: Legitimizing Authoritarian Rule = Routl Contemp China Politics in China Since 1949: Legitimizing Authoritarian Rule = Routl. Contemp. China Politics in The Russian Regions = Stud Cent E Eur Politics in The Russian Regions = Stud. Cent. E. Eur. Politics (Kensington, N.S.W.) = Politics (Syd) Politics of Aid Selectivity = Routl Stud Dev Econ Politics of Aid Selectivity = Routl. Stud. Dev. Econ. Politics of American Actor Training = Routl Adv Theatr Per Politics of American Actor Training = Routl. Adv. Theatr. Per. Politics of American Education = Sociocult Polit Hist Politics of American Education = Sociocult. Polit. Hist. Politics of Antisocial Behaviour: Amoral Panics = Routl Adv Criminol Politics of Antisocial Behaviour: Amoral Panics = Routl. Adv. Criminol. Politics of Becoming European: A Study of Polish and Baltic Post-cold War Security Imaginaries = New Int Relat Politics of Becoming European: A Study of Polish and Baltic Post-cold War Security Imaginaries = New. Int. Relat. Politics of Belonging in India: Becoming Adivasi = Routl Cont S Asia Se Politics of Belonging in India: Becoming Adivasi = Routl. Cont. S. Asia. Se. Politics of Change: Sexuality, Gender and Aging = Res Polit Sociol Politics of Change: Sexuality, Gender and Aging = Res. Polit. Sociol. Politics of Chinas Environmental Protection: Problems and Progress = Ser Contemp China Politics of Chinas Environmental Protection: Problems and Progress = Ser. Contemp. China. Politics of Coalition in Korea: Between Institutions and Culture = Routl Adv Korean Stu Politics of Coalition in Korea: Between Institutions and Culture = Routl. Adv. Korean. Stu. Politics of Culture in Liberal Italy = Routl Stud Mod Eur H Politics of Culture in Liberal Italy = Routl. Stud. Mod. Eur. H. Politics of Cyberconflict = Rout Res Inf Technol Politics of Cyberconflict = Rout. Res. Inf. Technol. Politics of Developmentalism in Mexico, Taiwan and South Korea = Int Polit Econ Ser Politics of Developmentalism in Mexico, Taiwan and South Korea = Int. Polit. Econ. Ser. Politics of Education Book Series = Polit Educ Book Ser Politics of Education Book Series = Polit. Educ. Book Ser. Politics of Education Reforms = Glob Comp Educ Polic Politics of Education Reforms = Glob. Comp. Educ. Polic. Politics of Exchange Rates in Developing Countries: Political Cycles and Domestic Institutions = Contrib Econ Politics of Exchange Rates in Developing Countries: Political Cycles and Domestic Institutions = Contrib. Econ. Politics of Expertise in Latin America = Lat Amer St Politics of Expertise in Latin America = Lat. Amer. St. Politics of Foundations: A Comparative Analysis = Routl Res Comp Polit Politics of Foundations: A Comparative Analysis = Routl. Res. Comp. Polit. Politics of Heritage: The Legacies of Race = Comedia Politics of Heritage: The Legacies of Race = Comedia. Politics of Heritage Tourism in China: A View From Lijiang = Routl Contemp China Politics of Heritage Tourism in China: A View From Lijiang = Routl. Contemp. China. Politics of Housing Booms and Busts = Int Polit Econ Ser Politics of Housing Booms and Busts = Int. Polit. Econ. Ser. Politics of Identity in Irish Drama = Lit Crit Cult Theory Politics of Identity in Irish Drama = Lit. Crit. Cult. Theory. Politics of Immigration in France, Britain, and The United States: A Comparative Study = Perspect Comp Polit Politics of Immigration in France, Britain, and The United States: A Comparative Study = Perspect. Comp. Polit. Politics of Intelligence and American Wars With Iraq = Middle E Focus Politics of Intelligence and American Wars With Iraq = Middle. E. Focus. Politics of Knowledge in Central Asia: Science Between Marx and The Market = Cent Asia Res Forum Politics of Knowledge in Central Asia: Science Between Marx and The Market = Cent. Asia. Res. Forum. Politics of Libraries and Librarianship: Challenges and Realities = Chandos Inf Prof Ser Politics of Libraries and Librarianship: Challenges and Realities = Chandos. Inf. Prof. Ser. Politics of Madness: The State, Insanity and Society in England, 1845-1914 = Routl Stud Soc Hist Politics of Madness: The State, Insanity and Society in England, 1845-1914 = Routl. Stud. Soc. Hist. Politics of Military Reform in Post-suharto Indonesia: Elite Conflict, Nationalism, and Institutional Resistance = Pol Stud Politics of Military Reform in Post-suharto Indonesia: Elite Conflict, Nationalism, and Institutional Resistance = Pol. Stud. Politics of Pact-making: Hungary's Negotiated Transition to Democracy in Comparative Perspective = Polit Evol Inst Chan Politics of Pact-making: Hungary's Negotiated Transition to Democracy in Comparative Perspective = Polit. Evol. Inst. Chan. Politics of Post-industrial Welfare States: Adapting Post-war Social Policies to New Social Risks = Routl Eui Stud Polit Politics of Post-industrial Welfare States: Adapting Post-war Social Policies to New Social Risks = Routl. Eui. Stud. Polit. Politics of Regional Integration in Latin America: Theoretical and Comparative Explorations = Ceri Ser Int Relat P Politics of Regional Integration in Latin America: Theoretical and Comparative Explorations = Ceri. Ser. Int. Relat. P. Politics of Regulation: Institutions and Regulatory Reforms for The Age of Governance = Crc Ser Compet Regul Politics of Regulation: Institutions and Regulatory Reforms for The Age of Governance = Crc. Ser. Compet. Regul. Politics of Religion in South and Southeast Asia = Routl Contemp Asia Politics of Religion in South and Southeast Asia = Routl. Contemp. Asia Politics of Romantic Theatricality, 1787-1832: The Road to The Stage = Palgrave Stud Enligh Politics of Romantic Theatricality, 1787-1832: The Road to The Stage = Palgrave. Stud. Enligh. Politics of Secularism in International Relations = Princ Stud Int Hist Politics of Secularism in International Relations = Princ. Stud. Int. Hist. Politics of Self-expression = Roy Asiat Soc Books Politics of Self-expression = Roy. Asiat. Soc. Books. Politics of Selfhood: Bodies and Identities in Global Capitalism = Public Worlds Politics of Selfhood: Bodies and Identities in Global Capitalism = Public. Worlds. Politics of Sexuality = Routledge/ecpr Stud Politics of Sexuality = Routledge/ecpr. Stud. Politics of Structural Education Reform = Routl Res Educ Politics of Structural Education Reform = Routl. Res. Educ. Politics of The Veil = Pub Square Politics of The Veil = Pub. Square. Politics of Transition in Central Asia and The Caucasus: Enduring Legacies and Emerging Challenges = Cent Asian Stud Politics of Transition in Central Asia and The Caucasus: Enduring Legacies and Emerging Challenges = Cent. Asian. Stud. Politics of Transition in Central Asia and The Caucasus: Enduring Legacies and Emerging Challenges = Cent Asian Stud Ser Politics of Transition in Central Asia and The Caucasus: Enduring Legacies and Emerging Challenges = Cent. Asian. Stud. Ser. Politics of Violence: Gender, Conflict and Community in El Salvador = B Lat Am Res Book Se Politics of Violence: Gender, Conflict and Community in El Salvador = B. Lat. Am. Res. Book. Se. Politics of Women's Interests: New Comparative Perspectives = Routl Res Comp Polit Politics of Women's Interests: New Comparative Perspectives = Routl. Res. Comp. Polit. Politics Philosophy & Economics = Polit Philos Econ Politics Philosophy & Economics = Polit. Philos. Econ. Politics = Politics Politics Science and The Environment = Polit Sci Environ Politics Science and The Environment = Polit. Sci. Environ. Politics & society = Polit Soc Politics & Society = Polit Soc Politics & Society = Polit. Soc. Politics today = Polit Today Politika A Nabozenstvi = Polit Nabozenstvi Politika A Nabozenstvi = Polit. Nabozenstvi Politikon = Politikon Politikon = Politikon-uk Politikon = Politikon-uk. Politique africaine (Paris, France : 1981) = Polit Afr Politique etrangere = Polit Etrang Politiques de population = Politiq Popul Politische Ökologie = Polit. Ökol. Politische Studien = Polit Stud Politische Studien = Polit Stud-munich Politische Studien = Polit. Stud-munich. Politische Vierteljahresschrift = Polit Vierteljahr Politische Vierteljahresschrift = Polit. Vierteljahr. Politische Vierteljahresschrift = Polit Vierteljahresschr Politix = Politix Polity = Polity Pollen et Spores = Pollen Spores Pollen-pistil Interactions and Pollen Tube Growth = Cur Top Pl Pollen-pistil Interactions and Pollen Tube Growth = Cur. Top. Pl. Pollen: Structure, Types and Effects = Environ Sci Eng Tech Pollen: Structure, Types and Effects = Environ. Sci. Eng. Tech. Pollutants From Combustion - Formation and Impact On Atmospheric Chemistry = Nato Adv Sci I C-mat Pollutants From Combustion - Formation and Impact On Atmospheric Chemistry = Nato. Adv. Sci. I. C-mat. Pollution Assessment and Control = Stat Environ Pollution Assessment and Control = Stat. Environ. Pollution Atmospherique = Pollut. Atmos. Pollution Engineering = Pollut Eng Pollution Engineering = Pollut. Eng. Pollution Prevention in Industrial Processes = Acs Sym Ser Pollution Prevention in Industrial Processes = Acs. Sym. Ser. Pollution Science Technology and Abatement = Pollut Sci Technol A Pollution Science Technology and Abatement = Pollut. Sci. Technol. A. Poll With A Human Face = Lea Commun Ser Poll With A Human Face = Lea. Commun. Ser. Polskie archiwum medycyny wewnetrznej = Pol Arch Med Wewn Polskie Archiwum Medycyny Wewnetrznej=Pol Arch Med Wewn;; Polskie Archiwum Medycyny Wewnetrznej = Pol. Arch. Med. Wewn. Polskie Archiwum Medycyny Wewnetrznej-polish Archives of Internal Medicine = Pol Arch Med Wewn Polskie Archiwum Medycyny Wewnetrznej-polish Archives of Internal Medicine = Pol. Arch. Med. Wewn. Polskie archiwum weterynaryjne = Pol Arch Weter Polskie Archiwum Weterynaryjne = Pol. Arch. Weter. Polskiego Towarzystwa Matematycznego = Comment. Math. Prace Mat. Polskie Towarzystwo Cybernetyczne = Post\polhk epy Cybernet. Polski merkuriusz lekarski : organ Polskiego Towarzystwa Lekarskiego = Pol Merkur Lekarski Polski Merkuriusz Lekarski=Pol Merkuriusz Lek;; Polski Merkuriusz Lekarski = Pol. Merkuriusz Lek. Polski przeglad chirurgiczny = Pol Przegl Chir Polski Przeglad Chirurgiczny = Pol. Przegl. Chir. Polski przeglad radiologii i medycyny nuklearnej = Pol Przegl Radiol Med Nukl Polski Przeglad Radiologii i Medycyny Nuklearnej = Pol. Przegl. Radiol. Med. Nukl. Polski Przeglad Radiologii = Pol. Przegl. Radiol. Polski przeglad radiologii / Polskie Lekarskie Towarzystwo Radiologiczne = Pol Przegl Radiol Polski Tygodnik Lekarski = Pol. Tyg. Lek. Polski tygodnik lekarski = Pol Tyg Lek (Wars) Polski tygodnik lekarski (Warsaw, Poland : 1960) = Pol Tyg Lek Polyamines in The Gastrointestinal Tract = Falk Symp Polyamines in The Gastrointestinal Tract = Falk. Symp. Polyamines: Methods and Protocols = Methods Mol Biol Polyamines: Methods and Protocols = Methods Mol. Biol. Poly(arylene Etynylene)s: From Synthesis to Application = Adv Polym Sci Poly(arylene Etynylene)s: From Synthesis to Application = Adv. Polym. Sci. Polya Urn Models = Ch Crc Text Stat Sci Polya Urn Models = Ch. Crc. Text. Stat. Sci. Polycentric Games and Institutions = Inst Analysis Polycentric Games and Institutions = Inst. Analysis. Polychar-18 World Forum On Advanced Materials = Macromol Sy Polychar-18 World Forum On Advanced Materials = Macromol. Sy. Polycrystalline Metal and Magnetic Thin Films = Mater Res Soc Symp P Polycrystalline Metal and Magnetic Thin Films = Mater. Res. Soc. Symp. P. Polycrystalline Semiconductors Iv Materials, Technologies and Large Area Electronics = Solid State Phenomen Polycrystalline Semiconductors Iv Materials, Technologies and Large Area Electronics = Solid. State. Phenomen. Polycrystalline Semiconductors Iv Materials, Technologies and Large Area Electronics = Sol St Phen Polycrystalline Semiconductors Iv Materials, Technologies and Large Area Electronics = Sol. St. Phen. Polycrystalline Semiconductors Iv - Physics, Chemistry and Technology = Diffus De B Polycrystalline Semiconductors Iv - Physics, Chemistry and Technology = Diffus. De. B. Polycrystalline Semiconductors Vii, Proceedings = Solid State Phenomen Polycrystalline Semiconductors Vii, Proceedings = Solid. State. Phenomen. Polycrystalline Semiconductors Vii, Proceedings = Sol St Phen Polycrystalline Semiconductors Vii, Proceedings = Sol. St. Phen. Polycrystalline Thin Films - Structure, Texture, Properties and Applications Iii = Mater Res Soc Symp P Polycrystalline Thin Films - Structure, Texture, Properties and Applications Iii = Mater. Res. Soc. Symp. P. Polycrystalline Thin Films: Structure, Texture, Properties, and Applications Ii = Mater Res Soc Symp P Polycrystalline Thin Films: Structure, Texture, Properties, and Applications Ii = Mater. Res. Soc. Symp. P. Polycrystalline Thin Films: Structure, Texture, Properties and Applications = Mater Res Soc Symp P Polycrystalline Thin Films: Structure, Texture, Properties and Applications = Mater. Res. Soc. Symp. P. Polycyclic Aromatic Compounds = Polycycl Aromat Comp Polycyclic Aromatic Compounds = Polycycl. Aromat. Comp. Polycyclic Aromatic Compounds = Polycyclic Aromat. Compd. Polycyclic Aromatic Hydrocarbons: Pollution, Health Effects and Chemistry = Polym Sci Technol Se Polycyclic Aromatic Hydrocarbons: Pollution, Health Effects and Chemistry = Polym. Sci. Technol. Se. Polycystic Kidney Disease = Contrib Nephrol Polycystic Kidney Disease = Contrib. Nephrol. Polycystic Ovaries = Adv Rep End Polycystic Ovaries = Adv. Rep. End. Polycystic Ovary Syndrome: Current Controversies, From The Ovary to The Pancreas = Contemp Endocrinol S Polycystic Ovary Syndrome: Current Controversies, From The Ovary to The Pancreas = Contemp. Endocrinol. S. Polycystic Ovary Syndrome: Current Controversies, From The Ovary to The Pancreas = Cont Endocrinol Polycystic Ovary Syndrome: Current Controversies, From The Ovary to The Pancreas = Cont. Endocrinol. Polyelectrolyte Gels = Acs Sym Ser Polyelectrolyte Gels = Acs. Sym. Ser. Polyelectrolytes and Nanoparticles = Springer Lab Man Pol Polyelectrolytes and Nanoparticles = Springer. Lab. Man. Pol. Polyelectrolytes and Polyzwitterions: Synthesis, Properties, and Applications = Acs Sym Ser Polyelectrolytes and Polyzwitterions: Synthesis, Properties, and Applications = Acs. Sym. Ser. Polyelectrolytes With Defined Molecular Architecture I = Adv Polym Sci Polyelectrolytes With Defined Molecular Architecture I = Adv. Polym. Sci. Polyelectrolytes With Defined Molecular Architecture Ii = Adv Polym Sci Polyelectrolytes With Defined Molecular Architecture Ii = Adv. Polym. Sci. Polyesters and Polyamides = Woodhead Publ Text Polyesters and Polyamides = Woodhead. Publ. Text. Polyethersulfone: Membranes for Multiple Clinical Applications = Contrib Nephrol Polyethersulfone: Membranes for Multiple Clinical Applications = Contrib. Nephrol. Poly(ethylene Glycol) = Acs Sym Ser Poly(ethylene Glycol) = Acs. Sym. Ser. Polyfluorenes = Adv Polym Sci Polyfluorenes = Adv. Polym. Sci. Polyfunctional Cytokines : Il-6 and Lif = Ciba F Symp Polyfunctional Cytokines : Il-6 and Lif = Ciba. F. Symp. Polygons: Cultural Diversities and Intersections = Polygons Polygons: Cultural Diversities and Intersections = Polygons. Polygons, Polyominoes and Polycubes = Lect Notes Phys Polygons, Polyominoes and Polycubes = Lect. Notes. Phys. Polyharmonic Boundary Value Problems = Lect Notes Math Polyharmonic Boundary Value Problems = Lect. Notes. Math. Polyhedral Computation = Crm Proc & Lect Note Polyhedral Computation = Crm. Proc. &. Lect. Note. Polyhedron = Polyhedron Polyketides: Biosynthesis, Biological Activity, and Genetic Engineering = Acs Sym Ser Polyketides: Biosynthesis, Biological Activity, and Genetic Engineering = Acs. Sym. Ser. Polymer Aging, Stabilizers and Amphiphilic Block Copolymers = Polym Sci Technol Se Polymer Aging, Stabilizers and Amphiphilic Block Copolymers = Polym. Sci. Technol. Se. Polymer Analysis and Characterization = Adv Polym Sci Polymer Analysis and Characterization = Adv. Polym. Sci. Polymer Analysis and Characterization Iv = Appl Polym Symp Ser Polymer Analysis and Characterization Iv = Appl. Polym. Symp. Ser. Polymer Analysis and Characterization, V = Appl Polym Symp Ser Polymer Analysis and Characterization, V = Appl. Polym. Symp. Ser. Polymer Analysis - Polymer Physics = Adv Polym Sci Polymer Analysis - Polymer Physics = Adv. Polym. Sci. Polymer Analysis, Polymer Theory = Adv Polym Sci Polymer Analysis, Polymer Theory = Adv. Polym. Sci. Polymer and Cell Dynamics = Math Biosci Interac Polymer and Cell Dynamics = Math. Biosci. Interac. Polymer and Cell Dynamics = Math Biosci Interact Polymer and Cell Dynamics = Math. Biosci. Interact. Polymer Based Molecular Composites = Mater Res Soc Symp P Polymer Based Molecular Composites = Mater. Res. Soc. Symp. P. Polymer-based Nanostructures: Medical Applications = Rsc Nanosci Nanotech Polymer-based Nanostructures: Medical Applications = Rsc. Nanosci. Nanotech. Polymer-based Smart Materials - Processes, Properties and Application = Mater Res Soc Symp P Polymer-based Smart Materials - Processes, Properties and Application = Mater. Res. Soc. Symp. P. Polymer Based Systems On Tissue Engineering, Replacement and Regeneration = Nato Sci Ser Ii-math Polymer Based Systems On Tissue Engineering, Replacement and Regeneration = Nato. Sci. Ser. Ii-math. Polymer Based Systems On Tissue Engineering, Replacement and Regeneration = Nato Sci Ser Ii Math Polymer Based Systems On Tissue Engineering, Replacement and Regeneration = Nato. Sci. Ser. Ii. Math. Polymer Biocatalysis and Biomaterials = Acs Sym Ser Polymer Biocatalysis and Biomaterials = Acs. Sym. Ser. Polymer Biocatalysis and Biomaterials Ii = Acs Sym Ser Polymer Biocatalysis and Biomaterials Ii = Acs. Sym. Ser. Polymer Blends and Polymer Composites = Key Eng Mat Polymer Blends and Polymer Composites = Key. Eng. Mat. Polymer Bulletin (Berlin) = Polym. Bull. (Berlin) Polymer Bulletin (Heidelberg, Germany) = Polym. Bull. (Heidelberg, Ger.) Polymer Bulletin = Polym Bull Polymer Bulletin = Polym. Bull. Polymer-carbon Nanotube Composites: Preparation, Properties and Applications = Woodhead Publ Mater Polymer-carbon Nanotube Composites: Preparation, Properties and Applications = Woodhead. Publ. Mater. Polymer Characterization = Adv Chem Ser Polymer Characterization = Adv. Chem. Ser. Polymer Characterization: Rheology, Laser Interferometry, Electrooptics = Adv Polym Sci Polymer Characterization: Rheology, Laser Interferometry, Electrooptics = Adv. Polym. Sci. Polymer Chemistry and Technology-kaunas University of Technology = Polym Ch Tech Kaunas Polymer Chemistry and Technology-kaunas University of Technology = Polym. Ch. Tech. Kaunas. Polymer Chemistry and Technology = Polym Ch Tech Kaunas Polymer Chemistry and Technology = Polym. Ch. Tech. Kaunas. Polymer Chemistry = Polym. Chem. Polymer Chemistry = Polym Chem-uk Polymer Chemistry = Polym. Chem-uk. Polymer Communications = Polym Commun Polymer Communications = Polym. Commun. Polymer Composites = Polym. Compos. Polymer Composites = Polym Composite Polymer Composites = Polym. Composite. Polymer Degradation and Performance = Acs Sym Ser Polymer Degradation and Performance = Acs. Sym. Ser. Polymer Degradation and Stability = Polym. Degrad. Stab. Polymer Degradation and Stability = Polym Degrad Stabil Polymer Degradation and Stability = Polym. Degrad. Stabil. Polymer Drugs in The Clinical Stage: Advantages and Prospects = Adv Exp Med Biol Polymer Drugs in The Clinical Stage: Advantages and Prospects = Adv. Exp. Med. Biol. Polymer Durability = Adv Chem Ser Polymer Durability = Adv. Chem. Ser. Polymer Durability and Radiation Effects = Acs Sym Ser Polymer Durability and Radiation Effects = Acs. Sym. Ser. Polymer Electrolytes: Fundamentals and Applications = Woodhead Publ Mater Polymer Electrolytes: Fundamentals and Applications = Woodhead. Publ. Mater. Polymer Engineering and Science = Polym Eng Sci Polymer Engineering and Science = Polym. Eng. Sci. Polymer Engineering = Vdi-buch Polymer Engineering = Vdi-buch. Polymer Fiber Optics: Materials, Physics, and Applications = Opt Sci Eng-crc Polymer Fiber Optics: Materials, Physics, and Applications = Opt. Sci. Eng-crc. Polymer Gels and Networks = Polym Gels Netw Polymer Gels and Networks = Polym. Gels Netw. Polymer Gels and Networks = Polym. Gels Networks Polymer Gels: Fundamentals and Applications = Acs Sym Ser Polymer Gels: Fundamentals and Applications = Acs. Sym. Ser. Polymeric and Inorganic Fibers = Adv Polym Sci Polymeric and Inorganic Fibers = Adv. Polym. Sci. Polymeric Delivery Systems = Acs Sym Ser Polymeric Delivery Systems = Acs. Sym. Ser. Polymeric Dispersions: Principles and Applications = Nato Adv Sci I E-app Polymeric Dispersions: Principles and Applications = Nato. Adv. Sci. I. E-app. Polymeric Drug Delivery Ii: Polymeric Matrices and Drug Particle Engineering = Acs Sym Ser Polymeric Drug Delivery Ii: Polymeric Matrices and Drug Particle Engineering = Acs. Sym. Ser. Polymeric Drug Delivery I: Particulate Drug Carriers = Acs Sym Ser Polymeric Drug Delivery I: Particulate Drug Carriers = Acs. Sym. Ser. Polymeric Drugs and Drug Administration = Acs Sym Ser Polymeric Drugs and Drug Administration = Acs. Sym. Ser. Polymeric Drugs and Drug Delivery Systems = Acs Sym Ser Polymeric Drugs and Drug Delivery Systems = Acs. Sym. Ser. Polymeric Foams = Acs Sym Ser Polymeric Foams = Acs. Sym. Ser. Polymeric Foams-crc = Polym Foam-crc Polymeric Foams-crc = Polym. Foam-crc. Polymeric Foams: Science and Technology = Polym Foam-crc Polymeric Foams: Science and Technology = Polym. Foam-crc. Polymeric Foams: Technology and Developments in Regulation, Process, and Products = Polym Foam-crc Polymeric Foams: Technology and Developments in Regulation, Process, and Products = Polym. Foam-crc. Polymeric Layers = Prog Coll Pol Sci S Polymeric Layers = Prog. Coll. Pol. Sci. S. Polymeric Materials for Microelectronic Applications = Acs Sym Ser Polymeric Materials for Microelectronic Applications = Acs. Sym. Ser. Polymeric Materials in Dentistry = Dent Sci Mater Tech Polymeric Materials in Dentistry = Dent. Sci. Mater. Tech. Polymeric Materials Science and Engineering = Polym. Mater. Sci. Eng. Polymeric Nanofibers = Acs Sym Ser Polymeric Nanofibers = Acs. Sym. Ser. Polymeric Preprints (American Chemical Society, Division of Polymer Chemistry) = Polym. Prepr. (Am. Chem. Soc., Div. Polym. Chem.) Polymer/inorganic Interfaces Ii = Mater Res Soc Symp P Polymer/inorganic Interfaces Ii = Mater. Res. Soc. Symp. P. Polymer/inorganic Interfaces = Mater Res Soc Symp P Polymer/inorganic Interfaces = Mater. Res. Soc. Symp. P. Polymer Interfaces and Thin Films = Mater Res Soc Symp P Polymer Interfaces and Thin Films = Mater. Res. Soc. Symp. P. Polymer International = Polym Int Polymer International = Polym. Int. Polymer Journal = Polym J Polymer Journal = Polym. J. Polymer Journal (Tokyo, Japan) = Polym. J. (Tokyo, Jpn.) Polymer (Korea) = Polymer (Korea) Polymer-korea = Polym-korea Polymer-korea = Polym-korea. Polymer Latexes = Acs Sym Ser Polymer Latexes = Acs. Sym. Ser. Polymer Latexes - Epoxide Resins - Polyampholytes = Adv Polym Sci Polymer Latexes - Epoxide Resins - Polyampholytes = Adv. Polym. Sci. Polymer Libraries = Adv Polym Sci Polymer Libraries = Adv. Polym. Sci. Polymer Materials: Block-copolymers, Nanocomposites, Organic/inorganic Hybrids, Polymethylenes = Adv Polym Sci Polymer Materials: Block-copolymers, Nanocomposites, Organic/inorganic Hybrids, Polymethylenes = Adv. Polym. Sci. Polymer Membranes/biomembranes = Adv Polym Sci Polymer Membranes/biomembranes = Adv. Polym. Sci. Polymer/metal Interfaces and Defect Mediated Phenomena in Ordered Polymers = Mater Res Soc Symp P Polymer/metal Interfaces and Defect Mediated Phenomena in Ordered Polymers = Mater. Res. Soc. Symp. P. Polymer-modified Hydraulic-cement Mixtures = Am Soc Test Mater Polymer-modified Hydraulic-cement Mixtures = Am. Soc. Test. Mater. Polymer Nanocomposites By Emulsion and Suspension Polymerization = Rsc Nanosci Nanotech Polymer Nanocomposites By Emulsion and Suspension Polymerization = Rsc. Nanosci. Nanotech. Polymer Networks and Blends = Polym. Networks Blends Polymer Networks & Blends = Polym Network Blend Polymer Networks & Blends = Polym. Network. Blend. Polymer Networks: Synthesis, Properties, Theory and Applications = Macromol Sy Polymer Networks: Synthesis, Properties, Theory and Applications = Macromol. Sy. Polymer Optics Design, Fabrication, and Materials = P Soc Photo-opt Ins Polymer Optics Design, Fabrication, and Materials = P. Soc. Photo-opt. Ins. Polymer Particles = Adv Polym Sci Polymer Particles = Adv. Polym. Sci. Polymer Photochemistry = Polym Photochem Polymer Photochemistry = Polym. Photochem. Polymer Photonic Devices = Proc Spie Polymer Photonic Devices = Proc. Spie. Polymer Photonic Devices = P Soc Photo-opt Ins Polymer Photonic Devices = P. Soc. Photo-opt. Ins. Polymer Physics and Engineering = Adv Polym Sci Polymer Physics and Engineering = Adv. Polym. Sci. Polymer-plastics Technology and Engineering = Polym-plast Technol Polymer-plastics Technology and Engineering = Polym-plast. Technol. Polymer - Plastics Technology and Engineering = Polym. Plast. Technol. Eng. Polymer-Plastics Technology and Engineering = Polym.-Plast. Technol. Eng. Polymer = Polymer Polymer = Polymer (Guildf) Polymer Preprints (American Chemical Society, Division of Polymer Chemistry) = Polym. Prepr. (Am. Chem. Soc., Div. Polym. Chem.) Polymer Reaction Engineering = Polym React Eng Polymer Reaction Engineering = Polym. React. Eng. Polymer Recycling = Polym. Recycl. Polymer Reviews (Philadelphia, PA, United States) = Polym. Rev. (Philadelphia, PA, U. S.) Polymer Reviews = Polym Rev Polymer Reviews = Polym. Rev. Polymers and Light = Adv Polym Sci Polymers and Light = Adv. Polym. Sci. Polymers and Liquid Crystals = Proc Spie Polymers and Liquid Crystals = Proc. Spie. Polymers and Liquid Crystals = P Soc Photo-opt Ins Polymers and Liquid Crystals = P. Soc. Photo-opt. Ins. Polymers and Organic Chemistry = Macromol Sy Polymers and Organic Chemistry = Macromol. Sy. Polymers and Polymer Composites = Polym. Polym. Compos. Polymers As Rheology Modifiers = Acs Sym Ser Polymers As Rheology Modifiers = Acs. Sym. Ser. Polymer Science and Technology Series = Polym Sci Technol Se Polymer Science and Technology Series = Polym. Sci. Technol. Se. Polymer Science Series A - Polymer Physics = Polym. Sci. Ser. A Polym. Phys. Polymer Science Series A = Polym Sci Ser A+ Polymer Science Series A = Polym. Sci. Ser. A+.+ Polymer Science Series B - Polymer Chemistry = Polym. Sci. Ser. B Polym. Chem. Polymer Science Series B = Polym Sci Ser B+ Polymer Science Series B = Polym. Sci. Ser. B+.+ Polymer Science Series C = Polym Sci Ser C+ Polymer Science Series C = Polym. Sci. Ser. C+.+ Polymer Science Series C - Selected Topics = Polym. Sci. Ser. C Sel. Top. Polymer Science Series D - Glues and Sealing Materials = Polym. Sci. Ser. D Glues Sealing Mater. Polymers for Advanced Technologies = Polym Advan Technol Polymers for Advanced Technologies = Polym. Advan. Technol. Polymers for Advanced Technologies = Polym. Adv. Technol. Polymers for Biomedical Applications = Acs Sym Ser Polymers for Biomedical Applications = Acs. Sym. Ser. Polymers for Microelectronics = Acs Sym Ser Polymers for Microelectronics = Acs. Sym. Ser. Polymers for Microelectronics and Nanoelectronics = Acs Sym Ser Polymers for Microelectronics and Nanoelectronics = Acs. Sym. Ser. Polymers for Photonics Applications I = Adv Polym Sci Polymers for Photonics Applications I = Adv. Polym. Sci. Polymers for Photonics Applications Ii = Adv Polym Sci Polymers for Photonics Applications Ii = Adv. Polym. Sci. Polymers for Regenerative Medicine = Adv Polym Sci Polymers for Regenerative Medicine = Adv. Polym. Sci. Polymers for Second-order Nonlinear Optics = Acs Sym Ser Polymers for Second-order Nonlinear Optics = Acs. Sym. Ser. Polymers From Agricultural Coproducts = Acs Sym Ser Polymers From Agricultural Coproducts = Acs. Sym. Ser. Polymers in Concrete : Advances and Applications = Amer Conc I Polymers in Concrete : Advances and Applications = Amer. Conc. I. Polymers in Concrete = Key Eng Mater Polymers in Concrete = Key. Eng. Mater. Polymers in Concrete: The First Thirty Years = Amer Conc I Polymers in Concrete: The First Thirty Years = Amer. Conc. I. Polymers in Confined Environments = Adv Polym Sci Polymers in Confined Environments = Adv. Polym. Sci. Polymers in Medicine and Pharmacy = Mater Res Soc Symp P Polymers in Medicine and Pharmacy = Mater. Res. Soc. Symp. P. Polymers in Microlithography = Acs Sym Ser Polymers in Microlithography = Acs. Sym. Ser. Polymers in Sensors = Acs Sym Ser Polymers in Sensors = Acs. Sym. Ser. Polymers of Biological and Biomedical Significance = Acs Sym Ser Polymers of Biological and Biomedical Significance = Acs. Sym. Ser. Polymer Solutions, Blends, and Interfaces = Stud Polym Sci Polymer Solutions, Blends, and Interfaces = Stud. Polym. Sci. Polymer-solvent Complexes and Intercalates V = Macromol Sy Polymer-solvent Complexes and Intercalates V = Macromol. Sy. Polymers - Opportunities and Risks Ii: Sustainability, Product Design and Processing = Handb Environ Chem Polymers - Opportunities and Risks Ii: Sustainability, Product Design and Processing = Handb. Environ. Chem. Polymers & Polymer Composites = Polym Polym Compos Polymers & Polymer Composites = Polym. Polym. Compos. Polymers : Their Properties and Blood Compatibility = Dev Hematol Polymers : Their Properties and Blood Compatibility = Dev. Hematol. Polymer Synthesis = Adv Polym Sci Polymer Synthesis = Adv. Polym. Sci. Polymer Synthesis / Polymer Catalysis = Adv Polym Sci Polymer Synthesis / Polymer Catalysis = Adv. Polym. Sci. Polymer Synthesis/polymer Engineering = Adv Polym Sci Polymer Synthesis/polymer Engineering = Adv. Polym. Sci. Polymer Synthesis Polymer-polymer Complexation = Adv Polym Sci Polymer Synthesis Polymer-polymer Complexation = Adv. Polym. Sci. Polymer Testing = Polym Test Polymer Testing = Polym. Test. Polymer Therapeutics Ii: Polymers As Drugs, Conjugates and Gene Delivery Systems = Adv Polym Sci Polymer Therapeutics Ii: Polymers As Drugs, Conjugates and Gene Delivery Systems = Adv. Polym. Sci. Polymer Therapeutics I: Polymers As Drugs, Conjugates and Gene Delivery Systems = Adv Polym Sci Polymer Therapeutics I: Polymers As Drugs, Conjugates and Gene Delivery Systems = Adv. Polym. Sci. Polymer Yearbook = Polym Yearb Polymer Yearbook = Polym. Yearb. Polymethylmethacrylate A Flexible Membrane for A Tailored Dialysis = Contrib Nephrol Polymethylmethacrylate A Flexible Membrane for A Tailored Dialysis = Contrib. Nephrol. Polymodal Receptor - A Gateway to Pathological Pain = Prog Brain Res Polymodal Receptor - A Gateway to Pathological Pain = Prog. Brain. Res. Polynomial and Rational Matrices = Commun Control Eng Polynomial and Rational Matrices = Commun. Control. Eng. Polynomial Identity Rings = Ad Co Math Polynomial Identity Rings = Ad. Co. Math. Polynomial Identity Rings = Adv Courses Math Crm Polynomial Identity Rings = Adv. Courses. Math. Crm. Polynomial Representations of Gln, Second Edition = Lect Notes Math Polynomial Representations of Gln, Second Edition = Lect. Notes. Math. Polyolefin Fibres: Industrial and Medical Applications = Woodhead Publ Text Polyolefin Fibres: Industrial and Medical Applications = Woodhead. Publ. Text. Polyomaviruses and Human Diseases = Adv Exp Med Biol Polyomaviruses and Human Diseases = Adv. Exp. Med. Biol. Polyoxometalated Molecular Science = Nato Sci Ser Ii-math Polyoxometalated Molecular Science = Nato. Sci. Ser. Ii-math. Polyoxometalated Molecular Science = Nato Sci Ser Ii Math Polyoxometalated Molecular Science = Nato. Sci. Ser. Ii. Math. Polyphenols 94 = Colloq Inra Polyphenols 94 = Colloq. Inra. Polyphenols 96 = Colloq Inra Polyphenols 96 = Colloq. Inra. Polyphenols, Wine and Health = Pr Phyt Soc Polyphenols, Wine and Health = Pr. Phyt. Soc. Polyploidization and Cancer = Adv Exp Med Biol Polyploidization and Cancer = Adv. Exp. Med. Biol. Poly-, Quasi- and Rank-one Convexity in Applied Mechanics = Cism Cour L Poly-, Quasi- and Rank-one Convexity in Applied Mechanics = Cism. Cour. L. Polysaccharide Materials: Performance By Design = Acs Sym Ser Polysaccharide Materials: Performance By Design = Acs. Sym. Ser. Polysaccharides 1: Structure, Characterization and Use = Adv Polym Sci Polysaccharides 1: Structure, Characterization and Use = Adv. Polym. Sci. Polysaccharides: Development, Properties and Applications = Polym Sci Technol Se Polysaccharides: Development, Properties and Applications = Polym. Sci. Technol. Se. Polysaccharides for Drug Delivery and Pharmaceutical Applications = Acs Sym Ser Polysaccharides for Drug Delivery and Pharmaceutical Applications = Acs. Sym. Ser. Polysaccharides Ii = Adv Polym Sci Polysaccharides Ii = Adv. Polym. Sci. Poly-silicon Thin Film Transistor Technology and Applications in Displays and Other Novel Technology Areas = P Soc Photo-opt Ins Poly-silicon Thin Film Transistor Technology and Applications in Displays and Other Novel Technology Areas = P. Soc. Photo-opt. Ins. Polysoaps/stabilizers/nitrogen-15 Nmr = Adv Polym Sci Polysoaps/stabilizers/nitrogen-15 Nmr = Adv. Polym. Sci. Polystochastic Models for Complexity = Underst Complex Syst Polystochastic Models for Complexity = Underst. Complex. Syst. Polytechnica Posnaniensis = Fasc. Math. Polythiophenes - Electrically Conductive Polymers = Adv Polym Sci Polythiophenes - Electrically Conductive Polymers = Adv. Polym. Sci. Polytopes: Abstract, Convex and Computational = Nato Adv Sci Inst Se Polytopes: Abstract, Convex and Computational = Nato. Adv. Sci. Inst. Se. Polytopes - Combinatorics and Computation = Dmv Seminar Polytopes - Combinatorics and Computation = Dmv. Seminar. Polytopes, Rings, and K-theory = Springer Monogr Math Polytopes, Rings, and K-theory = Springer. Monogr. Math. Polyunsaturated Fatty Acids in Human Nutrition = Nestle Nutr Works Se Polyunsaturated Fatty Acids in Human Nutrition = Nestle. Nutr. Works. Se. Pomegranate = Pomegranate Pommern = Pommern Pompeii, Herculaneum, Stabiae. Bolletino. Associazione internazionale Amici di Pompei = PompHercStab Pompei: Pitture e mosaici. Enciclopedia dell’arte antica classica e orientale = PPM Poncelet Porisms and Beyond: Integrable Billiards, Hyperelliptic Jacobians and Pencils of Quadrics = Front Math Poncelet Porisms and Beyond: Integrable Billiards, Hyperelliptic Jacobians and Pencils of Quadrics = Front. Math. Ponderosa Pine Ecosystems Restoration and Conservation: Steps Toward Stewardship, Conference Proceedings = Us For Serv Rmrs-p Ponderosa Pine Ecosystems Restoration and Conservation: Steps Toward Stewardship, Conference Proceedings = Us. For. Serv. Rmrs-p. Ponte = Ponte Ponte-rivista Mensile Di Politica E Letteratura = Ponte-riv Mens Pol L Ponte-rivista Mensile Di Politica E Letteratura = Ponte-riv. Mens. Pol. L. Pontica. Studii şi materiale de istorie, arheologie şi muzeografie, Constanţa = Pontica Pontificae Academiae Scientiarum Scripta Varia = Pontif. Acad. Sci. Scr. Varia Poor Are Not Us = E Afr Stud Ser Poor Are Not Us = E. Afr. Stud. Ser. Poor Indians: British Missionaries, Native Americans, and Colonial Sensibility = Early Am Stud Ser Poor Indians: British Missionaries, Native Americans, and Colonial Sensibility = Early. Am. Stud. Ser. POPCEN news letter. Population Centre (Lucknow, India) = POPCEN Newsl POPIN bulletin / International Population Information Network = POPIN Bull Pop-konzert Als Para-theatrale Form: Seine Varianten Und Seine Bedingungen Im Kulturell-offentlichen Raum = Theatron Pop-konzert Als Para-theatrale Form: Seine Varianten Und Seine Bedingungen Im Kulturell-offentlichen Raum = Theatron. Popline = Popline Popnet = Popnet Popper and Economic Methodology: Contemporary Challenges = Routl Inem Adv Econ Popper and Economic Methodology: Contemporary Challenges = Routl. Inem. Adv. Econ. Popper, Hayek and The Open Society = Routl Front Polit Ec Popper, Hayek and The Open Society = Routl. Front. Polit. Ec. Pop Sahel : bulletin d'information sur la population et le developpement = Pop Sahel Poptronics = Poptronics Populacao & desenvolvimento = Popul Desenvolv Populacni zpravy = Popul Zpr Popular Computing = Pop Comput Popular Computing = Pop. Comput. Popular Culture and Representations of Literacy = Routl Stud Literacy Popular Culture and Representations of Literacy = Routl. Stud. Literacy Popular Culture, Globalization and Japan = Asias Transform Popular Culture, Globalization and Japan = Asias. Transform. Popular Culture of Shakespeare, Spenser and Jonson = Rout Stud Renais Lit Popular Culture of Shakespeare, Spenser and Jonson = Rout. Stud. Renais. Lit. Populares Judentum: Medien, Debatten, Lesestoffe = Conditio Jud Populares Judentum: Medien, Debatten, Lesestoffe = Conditio. Jud. Popular government = Pop Gov Popular Movements and Democratization in The Islamic World = New Horiz Islam Stud Popular Movements and Democratization in The Islamic World = New. Horiz. Islam. Stud. Popular Music and Society = Pop Music Soc Popular Music and Society = Pop. Music Soc. Popular Music of Vietnam = Routl Stud Ethnomus Popular Music of Vietnam = Routl. Stud. Ethnomus. Popular Music = Pop Music Popular Music = Pop. Music Popular Newspapers, The Labour Party and British Politics = Brit Polit Soc Popular Newspapers, The Labour Party and British Politics = Brit. Polit. Soc. Popular Religion in Russia: Double Belief and The Making of An Academic Myth = Routl Stud Hist Russ Popular Religion in Russia: Double Belief and The Making of An Academic Myth = Routl. Stud. Hist. Russ. Popular Sufism in Eastern Europe = Routledge Sufi Ser Popular Sufism in Eastern Europe = Routledge. Sufi. Ser. Populasi = Populasi Population Ageing and Economic Growth = Contrib Econ Population Ageing and Economic Growth = Contrib. Econ. Population Ageing - A Threat to The Welfare State? The Case of Sweden = Demogr Res Monogr Population Ageing - A Threat to The Welfare State? The Case of Sweden = Demogr. Res. Monogr. Population and Development Review=Population Devel. Rev. Population and development review = Popul Dev Rev Population and Development Review = Popul Dev Rev Population and Development Review = Popul. Dev. Rev. Population And Development Review = Popul. Dev. Rev. Population and Development = Routl Perspect Dev Population and Development = Routl. Perspect. Dev. Population And Environmental Psychology Newsletter = Popul Environ Psychol Newsl Population and Environment in Arid Regions = Man Biosph Population and Environment in Arid Regions = Man. Biosph. Population and environment = Popul Environ Population and Environment = Popul Environ Population and Environment = Popul. Environ. Population briefs : reports on Population Council research, = Popul Briefs Population bulletin of ECWA = Popul Bull ECWA Population bulletin of ESCWA = Popul Bull ESCWA Population bulletin of the United Nations Economic Commission for Western Asia = Popul Bull U N Econ Comm West Asia Population bulletin of the United Nations = Popul Bull UN Population Bulletin=Population Bull. Population bulletin = Popul Bull Population Bulletin = Popul Bull Population Bulletin = Popul. Bull. Population Change and Economic Development in East Asia: Challenges Met, Opportunities Seized = Contemp Iss Asia Population Change and Economic Development in East Asia: Challenges Met, Opportunities Seized = Contemp. Iss. Asia. Population chronicle = Popul Chron Population communication: technical documentation = Popul Commun Tech Doc Population Concern news = Popul Concern News Population Data Information Service = Popul Data Inf Serv Population Decline and Ageing in Japan: The Social Consequences = Routl Contemp Jpn Se Population Decline and Ageing in Japan: The Social Consequences = Routl. Contemp. Jpn. Se. Population Dynamics and Projection Methods: Understanding Population Trends and Processes, Vol 4 = Underst Popul Trends Population Dynamics and Projection Methods: Understanding Population Trends and Processes, Vol 4 = Underst. Popul. Trends Population dynamics quarterly = Popul Dyn Q Population Ecology = Popul Ecol Population Ecology = Popul. Ecol. Population Economics = Popul Econ Population Economics = Popul. Econ. Population education in Asia and Oceania newsletter = Popul Educ Asia Ocean Newsl Population education in Asia and the Pacific newsletter = Popul Educ Asia Pac Newsl Forum Population education interchange = Popul Educ Interchange Population. English selection = Popul Population, Environment, and Development = Nidi Cbgs P Population, Environment, and Development = Nidi. Cbgs. P. Population et avenir = Popul Avenir Population et famille = Popul Famille Population et societes; bulletin mensuel d'informations demographiques, economiques, sociales = Popul Soc (Paris) Population Explosion: The Nature and Evolution of X-ray Binaries in Diverse Environments = Aip Conf Proc Population Explosion: The Nature and Evolution of X-ray Binaries in Diverse Environments = Aip. Conf. Proc. Population forum : monthly newsletter of the Commission on Population = Popul Forum Population Genetics of Bacteria = Symp Soc Gen Microbi Population Genetics of Bacteria = Symp. Soc. Gen. Microbi. Population Genetics of Forest Trees = For Sci Population Genetics of Forest Trees = For. Sci. Population geography : a journal of the Association of Population Geographers of India = Popul Geogr Population Growth and Agricultural Change in Africa = Carter Lecture Ser Population Growth and Agricultural Change in Africa = Carter. Lecture. Ser. Population headliners = Popul Headl Population Health and Aging = Ann Ny Acad Sci Population Health and Aging = Ann. Ny. Acad. Sci. Population Health Management = Popul Health Manag Population Health Management = Popul. Health Manag. Population health metrics = Popul Health Metr Population index = Popul Index Population Index = Popul Index Population Index = Popul. Index Population in Europe and North America On The Eve of The Millennium: Dynamics and Policy Responses = Econom Stud Population in Europe and North America On The Eve of The Millennium: Dynamics and Policy Responses = Econom. Stud. Population manager : ICOMP review / ICOMP, = Popul Manag Population Mental Health: Evidence, Policy, and Public Health Practice = Rout Stud Pub Hlth Population Mental Health: Evidence, Policy, and Public Health Practice = Rout. Stud. Pub. Hlth. Population Migration and Asia: Theories and Practice = Asian Polit Econ Sec Population Migration and Asia: Theories and Practice = Asian. Polit. Econ. Sec. Population newsletter / issued by the Population Division of the Department of Economic and Social Affairs, United Nations = Popul Newsl Population (New York, N.Y.) = Population (NY) Population of The Caucasus = Caucas Reg Polit Ec Population of The Caucasus = Caucas. Reg. Polit. Ec. Population policy compendium = Popul Policy Compend Population=Population Population = Population Population = Population (Paris) Population report = Popul Rep Population reports. Series A: Oral contraceptives = Popul Rep A Population Reports. Series A, Oral Contraceptives = Popul. Rep. A Population Reports. Series A; Oral Contraceptives=Popul Rep A;; Population reports. Series B: Intrauterine devices = Popul Rep B Population Reports. Series B, Intrauterine Devices = Popul. Rep. B Population Reports. Series B; Intrauterine Devices=Popul Rep B;; Population Reports. Series C, Female Sterilization=Popul Rep C;; Population Reports. Series C, Female Sterilization = Popul. Rep. C Population reports. Series C: Sterilization [Female] = Popul Rep C Population Reports. Series C, Sterilization Female = Popul. Rep. C Population Reports. Series D, Male Sterilization=Popul Rep D;; Population Reports. Series D, Male Sterilization = Popul. Rep. D Population Reports. Series D, Sterilization Male = Popul. Rep. D Population reports. Series E, Law and policy = Popul Rep E Population Reports. Series E, Law and Policy = Popul. Rep. E Population Reports. Series E; Law and Policy=Popul Rep E;; Population reports. Series F: Pregnancy termination = Popul Rep F Population Reports. Series F, Pregnancy Termination = Popul. Rep. F Population reports. Series G, Prostaglandins = Popul Rep G Population Reports. Series G, Prostaglandins = Popul. Rep. G Population reports. Series H: Barrier methods = Popul Rep H Population Reports. Series H, Barrier Methods = Popul. Rep. H Population Reports. Series H; Barrier Methods=Popul Rep H;; Population reports. Series I: Periodic abstinence = Popul Rep I Population Reports. Series I, Periodic Abstinence = Popul. Rep. I Population reports. Series J: Family planning programs = Popul Rep J Population Reports. Series J, Family Planning Programs = Popul. Rep. J Population Reports. Series J: Family Planning Programs=Popul Rep J;; Population reports. Series K: Injectables and implants = Popul Rep K Population Reports. Series K, Injectables and Implants = Popul. Rep. K Population reports. Series L, Issues in world health = Popul Rep L Population Reports. Series L, Issues in World Health = Popul. Rep. L Population Reports. Series L: Issues In World Health=Popul Rep L;; Population Reports. Series M, Special Topic Monographs = Popul. Rep. M Population reports. Series M. Special topics = Popul Rep M Population Reports. Series M, Special Topics=Popul Rep M;; Population Reports. Series M, Special Topics = Popul. Rep. M Population reports. Special topic monographs = Popul Rep Spec Top Monogr Population Reports. Special Topic Monographs = Popul. Rep. Spec. Top. Monogr. Population reports (Washington, D.C.). Series C,, Female sterilization = Popul Rep C Population reports (Washington, D.C.). Series D, Male sterilization = Popul Rep D Population reports (Washington, D.C.). Series D, Sterilization. = Popul Rep D Population research abstract : a contribution to research on India's population = Popul Res Abstr Population Research and Policy Review=Population Res. Pol. Rev. Population research and policy review = Popul Res Policy Rev Population Research and Policy Review = Popul Res Policy Rev Population Research and Policy Review = Popul. Res. Policy Rev. Population research bulletin. Pakistan Institute of Development Economics = Popul Res Bull Population research leads = Popul Res Leads Population research (Peking, China) = Popul Res Population, Resources and Development = Intl Studies Populat Population, Resources and Development = Intl. Studies. Populat. Population Review=Population Rev. Population review = Popul Rev Population sciences (Cairo, Egypt) = Popul Sci Population Space and Place = Popul Space Place Population Space and Place = Popul. Space Place Population Studies-a Journal of Demography = Pop Stud-j Demog Population Studies-a Journal of Demography = Pop. Stud-j. Demog. Population Studies-new York = Popul Stud-new York Population Studies-new York = Popul. Stud-new. York Population Studies=Population Stud. Population studies = Popul Stud (NY) Population today = Popul Today Population trends and public policy = Popul Trends Public Policy Population trends = Popul Trends Population Trends=Popul Trends;; Population Trends = Popul. Trends Porceedings of The 2005 Northeastern Recreation Research Symposium = Usda Fs Ne Res St Gt Porceedings of The 2005 Northeastern Recreation Research Symposium = Usda. Fs. Ne. Res. St. Gt. Porc = Porc Pore-forming Toxins = Curr Top Microbiol Pore-forming Toxins = Curr. Top. Microbiol. Pore Structure and Permeability of Cementitious Materials = Mater Res Soc Symp P Pore Structure and Permeability of Cementitious Materials = Mater. Res. Soc. Symp. P. Poroshkovaya Metallurgiya (Kiev) = Poroshk. Metall. (Kiev) Porous and Cellular Materials for Structure Applications = Mater Res Soc Symp P Porous and Cellular Materials for Structure Applications = Mater. Res. Soc. Symp. P. Porous Ceramic Materials = Key Eng Mat Porous Ceramic Materials = Key. Eng. Mat. Porous Ceramic Materials = Key Eng Mater Porous Ceramic Materials = Key. Eng. Mater. Porous Materials = Ceram Trans Porous Materials = Ceram. Trans. Porous Materials for Tissue Engineering = Mater Sci Forum Porous Materials for Tissue Engineering = Mater. Sci. Forum. Porous Materials in Environmentally Friendly Processes = Stud Surf Sci Catal Porous Materials in Environmentally Friendly Processes = Stud. Surf. Sci. Catal. Porous Media and Its Applications in Science, Engineering and Industry = Aip Conf Proc Porous Media and Its Applications in Science, Engineering and Industry = Aip. Conf. Proc. Porous Polymeric Bioresorbable Scaffolds for Tissue Engineering = Springer Theses-reco Porous Polymeric Bioresorbable Scaffolds for Tissue Engineering = Springer. Theses-reco. Porous Semiconductors: Optical Properties and Applications = Eng Mater Process Porous Semiconductors: Optical Properties and Applications = Eng. Mater. Process. Porphyric Pesticides = Acs Sym Ser Porphyric Pesticides = Acs. Sym. Ser. Portable Island: Cubans At Home in The World = New Concepts Lat Am Portable Island: Cubans At Home in The World = New. Concepts. Lat. Am. Portable Synchrotron Light Sources and Advanced Applications = Aip Conf Proc Portable Synchrotron Light Sources and Advanced Applications = Aip. Conf. Proc. Porta Linguarum = Porta Linguarum Portal-libraries and The Academy = Portal-libr Acad Portal-libraries and The Academy = Portal-libr. Acad. Portal to Lean Production: Principles and Practices for Doing More With Less = Resource Manag-crc Portal to Lean Production: Principles and Practices for Doing More With Less = Resource. Manag-crc. Porter Lectures = Porter Lect Porter Lectures = Porter Lect. Portfolio Analysis = Stud Fuzz Soft Comp Portfolio Analysis = Stud. Fuzz. Soft. Comp. Portfolio Choice Problems: An Introductory Survey of Single and Multiperiod Models = Sprbrief Elect Portfolio Choice Problems: An Introductory Survey of Single and Multiperiod Models = Sprbrief. Elect. Portfolio Management With Heuristic Optimization = Adv Comput Manag Sci Portfolio Management With Heuristic Optimization = Adv. Comput. Manag. Sci. Portfolio Selection and Asset Pricing = Lect Notes Econ Math Portfolio Selection and Asset Pricing = Lect. Notes. Econ. Math. Portfolios of Real Options = Lect Notes Econ Math Portfolios of Real Options = Lect. Notes. Econ. Math. Portfolio-the Magazine of The Fine Arts = Portfolio Portfolio-the Magazine of The Fine Arts = Portfolio. Portland Press Proceedings = Portl Pr P Portland Press Proceedings = Portl. Pr. P. Portland Press Research Monograph = Port Pr R M Portland Press Research Monograph = Port. Pr. R. M. Portraits of Influential Chinese Educators = Cerc Stud Comp Educ Portraits of Influential Chinese Educators = Cerc. Stud. Comp. Educ. Ports/waterways Marine Transportation = Transport Res Rec Ports/waterways Marine Transportation = Transport. Res. Rec. Portugaliae Mathematica = Portugal. Math. Portugália. Revista do Instituto de arqueologia da Faculdade de letras da Universidade do Porto = Portugalia Portugal medico = Port Med Portuguese Economic Journal = Port Econ J Portuguese Economic Journal = Port. Econ. J. Portuguese Modernisms: Multiple Perspectives On Literature and The Visual Arts = Legenda Ser Portuguese Modernisms: Multiple Perspectives On Literature and The Visual Arts = Legenda. Ser. Portuguese Studies = Portuguese Stud Portuguese Studies = Portuguese Stud. Posebna Izdanja = Posebna Izdan. Positif = Positif Positioning The History of Science = Bost Stud Philos Sci Positioning The History of Science = Bost. Stud. Philos. Sci. Positions-east Asia Cultures Critique = Positions-e Asia Cul Positions-east Asia Cultures Critique = Positions-e. Asia Cul. Positions-education Politics and Culture = Positions-educ Polit Positions-education Politics and Culture = Positions-educ. Polit. Positive Definite Matrices = Princ Ser Appl Math Positive Definite Matrices = Princ. Ser. Appl. Math. Positive Directions news : a support and information network of people with HIV/AIDS, their families, friends and providers = Posit Dir News Positive health news = Posit Health News Positive living (Los Angeles, Calif.) = Posit Living Positively aware : the monthly journal of the Test Positive Aware Network = Posit Aware Positive outlook : the newsletter of the AIDS Alternative Health Project = Posit Outlook Positive Polynomials in Control = Lect Notes Contr Inf Positive Polynomials in Control = Lect. Notes. Contr. Inf. Positive Systems, Proceedings = Lect Notes Contr Inf Positive Systems, Proceedings = Lect. Notes. Contr. Inf. Positive Youth Development: Evaluation and Future Directions in A Chinese Context = Health Hum Dev Positive Youth Development: Evaluation and Future Directions in A Chinese Context = Health. Hum. Dev. Positive Youth Development: Implementation of A Youth Program in A Chinese Context = Health Hum Dev Positive Youth Development: Implementation of A Youth Program in A Chinese Context = Health. Hum. Dev. Positive Youth Development Through Sport = Int Stud Phys Educ Y Positive Youth Development Through Sport = Int. Stud. Phys. Educ. Y. Positivity = Positivity Positivity = Trends Math Positivity = Trends. Math. Positron and Positronium Chemistry = Mater Sci Forum Positron and Positronium Chemistry = Mater. Sci. Forum. Positron Annihilation Icpa-10, Pts 1 and 2 = Mater Sci Forum Positron Annihilation Icpa-10, Pts 1 and 2 = Mater. Sci. Forum. Positron Annihilation - Icpa-12 = Mater Sci Forum Positron Annihilation - Icpa-12 = Mater. Sci. Forum. Positron Annihilation, Icpa-13, Proceedings = Mater Sci Forum Positron Annihilation, Icpa-13, Proceedings = Mater. Sci. Forum. Positron Annihilation = Mater Sci Forum Positron Annihilation = Mater. Sci. Forum. Positron Beams for Solids and Surfaces = Aip Conf Proc Positron Beams for Solids and Surfaces = Aip. Conf. Proc. Positron Emission Tomography: Critical Assessment of Recent Trends = Nato Asi 3 High Tech Positron Emission Tomography: Critical Assessment of Recent Trends = Nato. Asi. 3. High. Tech. Positron Emission Tomography in Clinical Research and Clinical Diagnosis = Dev Nuc Med Positron Emission Tomography in Clinical Research and Clinical Diagnosis = Dev. Nuc. Med. Positron Emission Tomography in The Millennium = Int Congr Ser Positron Emission Tomography in The Millennium = Int. Congr. Ser. Positron Emission Tomography = Methods Mol Biol Positron Emission Tomography = Methods. Mol. Biol. Positron Spectroscopy of Solids = P Int Sch Phys Positron Spectroscopy of Solids = P. Int. Sch. Phys. Posn(r) and Eisenstein Series = Lect Notes Math Posn(r) and Eisenstein Series = Lect. Notes. Math. Possibility, Agency, and Individuality in Leibniz's Metaphysics = New Synth Hist Lib Possibility, Agency, and Individuality in Leibniz's Metaphysics = New. Synth. Hist. Lib. Possible Worlds in Humanities, Arts and Sciences = Res Text Th Possible Worlds in Humanities, Arts and Sciences = Res. Text. Th. Post-agb Objects As A Phase of Stellar Evolution = Astrophys Space Sc L Post-agb Objects As A Phase of Stellar Evolution = Astrophys. Space. Sc. L. Postal history journal = Post Hist Postcollisional Tectonics and Magmatism in The Mediterranean Region and Asia = Geol S Am S Postcollisional Tectonics and Magmatism in The Mediterranean Region and Asia = Geol. S. Am. S. Postcollisional Tectonics and Magmatism in The Mediterranean Region and Asia = Geol Soc Am Spec Pap Postcollisional Tectonics and Magmatism in The Mediterranean Region and Asia = Geol. Soc. Am. Spec. Pap. Postcolonialism and Development = Routl Perspect Dev Postcolonialism and Development = Routl. Perspect. Dev. Postcolonialism, Psychoanalysis and Burton = Rout Res Postcol Lit Postcolonialism, Psychoanalysis and Burton = Rout. Res. Postcol. Lit. Postcolonial Life-writing: Culture, Politics, and Self-representation = Rout Res Postcol Lit Postcolonial Life-writing: Culture, Politics, and Self-representation = Rout. Res. Postcol. Lit. Postcolonial Politics of Development = Postcolonial Polit Postcolonial Politics of Development = Postcolonial Polit. Postcolonial Politics = Postcolonial Polit Postcolonial Politics = Postcolonial Polit. Postcolonial Postmortems: Crime Fiction From A Transcultural Perspective = Int For Lit Postcolonial Postmortems: Crime Fiction From A Transcultural Perspective = Int. For. Lit. Postcolonial Theory and Autobiography = Rout Res Postcol Lit Postcolonial Theory and Autobiography = Rout. Res. Postcol. Lit. Post-communist Economies and Western Trade Discrimination: Are Nmes Our Enemies = Polit Evol Inst Chan Post-communist Economies and Western Trade Discrimination: Are Nmes Our Enemies = Polit. Evol. Inst. Chan. Post-communist Economies = Post-communist Econ Post-communist Economies = Post-communist Econ. Post-Communist Economies=Post-Communist Economies Post-communist Regime Change: A Comparative Study = Routl Res Comp Polit Post-communist Regime Change: A Comparative Study = Routl. Res. Comp. Polit. Post-communist States in The World Community = Int Congr Cent E Eur Post-communist States in The World Community = Int. Congr. Cent. E. Eur. Post-conflict Heritage, Postcolonial Tourism = Asias Transform Post-conflict Heritage, Postcolonial Tourism = Asias. Transform. Post-conflict Reconstruction in Japan, Republic of Korea, Vietnam, Cambodia, East Timor and Afghanistan, Proceedings = Unitar Hiroshima Ser Post-conflict Reconstruction in Japan, Republic of Korea, Vietnam, Cambodia, East Timor and Afghanistan, Proceedings = Unitar. Hiroshima. Ser. Post-conflict Tajikistan: The Politics of Peacebuilding and The Emergence of Legitimate Order = Cent Asian Stud Ser Post-conflict Tajikistan: The Politics of Peacebuilding and The Emergence of Legitimate Order = Cent. Asian. Stud. Ser. Posted Price Offers in Internet Auction Markets = Lect Notes Econ Math Posted Price Offers in Internet Auction Markets = Lect. Notes. Econ. Math. Postepy biochemii = Postepy Biochem Postepy Biochemii=Postepy Biochem;; Postepy Biochemii = Postepy Biochem Postepy Biochemii = Postepy Biochem. Postepy Biologii Komorki = Postepy Biol Komorki Postepy Biologii Komorki = Postepy Biol. Komorki Postepy chirurgii = Postep Chir Postepy Dermatologii I Alergologii = Postep Derm Alergol Postepy Dermatologii I Alergologii = Postep. Derm. Alergol. Postepy higieny i medycyny doswiadczalnej (Online) = Postepy Hig Med Dosw (Online) Postepy Higieny I Medycyny Doswiadczalnej = Postep Hig Med Dosw Postepy Higieny I Medycyny Doswiadczalnej = Postep. Hig. Med. Dosw. Postepy higieny i medycyny doswiadczalnej = Postepy Hig Med Dosw Postepy Higieny i Medycyny Doswiadczalnej = Postepy Hig. Med. Dosw. Postepy Higieny I Medycyny Doswiadczalnej=Postepy Hig Med Dosw;; Postepy Mikrobiologii = Postep Mikrobiol Postepy Mikrobiologii = Postep. Mikrobiol. Postepy neurologii, neurochirurgii, i psychiatrii = Postep Neurol Neurochir Psychiatr Postepy reumatologii = Postep Reumatol Postepy wiedzy medycznej = Postep Wiedzy Med Postepy W Kardiologii Interwencyjnej = Postep Kardiol Inter Postepy W Kardiologii Interwencyjnej = Postep. Kardiol. Inter. Posteriori Error Analysis Via Duality Theory: With Applications in Modeling and Numerical Approximations = Adv Mech Math Posteriori Error Analysis Via Duality Theory: With Applications in Modeling and Numerical Approximations = Adv. Mech. Math. Postfrontier Blues: Toward A New Policy Framework for Northeast India = Pol Stud Postfrontier Blues: Toward A New Policy Framework for Northeast India = Pol. Stud. Post-genomic Perspectives in Modeling and Control of Breathing = Adv Exp Med Biol Post-genomic Perspectives in Modeling and Control of Breathing = Adv. Exp. Med. Biol. Postgraduate dentistry / Dental Learning Systems = Postgrad Dent Postgraduate medical journal = Postgrad Med J Postgraduate Medical Journal=Postgrad Med J;; Postgraduate Medical Journal = Postgrad Med J Postgraduate Medical Journal = Postgrad. Med. J. Postgraduate medicine = Postgrad Med Postgraduate Medicine=Postgrad Med;; Postgraduate Medicine = Postgrad Med Postgraduate Medicine = Postgrad. Med. Postgraduate seminar. American Urological Association. North Central Section = Postgrad Semin Am Urol Assoc North Cent Postharvest '96 - Proceedings of The International Postharvest Science Conference = Acta Hortic Postharvest '96 - Proceedings of The International Postharvest Science Conference = Acta. Hortic. Postharvest Biology and Technology = Postharvest Biol Tec Postharvest Biology and Technology = Postharvest Biol. Tec. Postharvest biology and technology = Postharvest Biol Technol Postharvest Biology and Technology = Postharvest Biol. Technol. Postharvest Handling of Tropical Fruits = Aciar Proc Postharvest Handling of Tropical Fruits = Aciar. Proc. Postharvest Pathology = Plant Path 21st Postharvest Pathology = Plant. Path. 21st. Post-harvest Physiology and Preservation of Forages = Cssa Spec Publ Post-harvest Physiology and Preservation of Forages = Cssa. Spec. Publ. Postharvest Physiology of Fruits = Acta Hortic Postharvest Physiology of Fruits = Acta. Hortic. Post-historical Middle Ages = New Middle Ages Post-historical Middle Ages = New. Middle Ages Posthumanities = Posthumanities Postimplantation Development in The Mouse = Ciba F Symp Postimplantation Development in The Mouse = Ciba. F. Symp. Post-keynesian Macroeconomics: Essays in Honour of Ingrid Rima = Routl Front Polit Ec Post-keynesian Macroeconomics: Essays in Honour of Ingrid Rima = Routl. Front. Polit. Ec. Post-medieval Archaeology = Post-mediev Archaeol Post-medieval Archaeology = Post-mediev. Archaeol. Postmemories of Terror: A New Generation Copes With The Legacy of The Dirty War = Palgr Stud Oral Hist Postmemories of Terror: A New Generation Copes With The Legacy of The Dirty War = Palgr. Stud. Oral. Hist. Postmodern Climate Change = Rout Res Environ Pol Postmodern Climate Change = Rout. Res. Environ. Pol. Postmodern Culture = Postmod Cult Postmodern Culture = Postmod. Cult. Postmodern Philosophy and Christian Thought = In Phil Rel Postmodern Philosophy and Christian Thought = In. Phil. Rel. Postmodern Picturebooks: Play, Parody, and Self-referentiality = Routl Res Educ Postmodern Picturebooks: Play, Parody, and Self-referentiality = Routl. Res. Educ. Post-nafta North America: Reshaping The Economic and Political Governance of A Changing Region = Int Polit Econ Ser Post-nafta North America: Reshaping The Economic and Political Governance of A Changing Region = Int. Polit. Econ. Ser. Postnatal Development of The Human Hippocampal Formation = Adv Anat Embryol Cel Postnatal Development of The Human Hippocampal Formation = Adv. Anat. Embryol. Cel. Post-neoliberalism in The Americas = Int Polit Econ Ser Post-neoliberalism in The Americas = Int. Polit. Econ. Ser. Post Office Electrical Engineers Journal = Post Office Elec Eng Post Office Electrical Engineers Journal = Post Office Elec. Eng. Post-perovskite: The Last Mantle Phase Transition = Geophys Monogr Ser Post-perovskite: The Last Mantle Phase Transition = Geophys. Monogr. Ser. Post-polio Syndrome: Advances in The Pathogenesis and Treatment = Ann Ny Acad Sci Post-polio Syndrome: Advances in The Pathogenesis and Treatment = Ann. Ny. Acad. Sci. Postponement Strategies in Supply Chain Management = Int Ser Oper Res Man Postponement Strategies in Supply Chain Management = Int. Ser. Oper. Res. Man. Post-quantum Cryptography, Proceedings = Lect Notes Comput Sc Post-quantum Cryptography, Proceedings = Lect. Notes. Comput. Sc. Post-revolutionary Chicana Literature = Lat Communities Post-revolutionary Chicana Literature = Lat. Communities. Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 1 = Millennium Studien Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 1 = Millennium. Studien. Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 1 = Millenn Stud Kult Ge Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 1 = Millenn. Stud. Kult. Ge. Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 2 = Millenn Stud Kult Ge Post-roman Towns, Trade and Settlement in Europe and Byzantium, Vol 2 = Millenn. Stud. Kult. Ge. Post-socialist City: Urban Form and Space Transformations in Central and Eastern Europe After Socialism = Geojournal Lib Post-socialist City: Urban Form and Space Transformations in Central and Eastern Europe After Socialism = Geojournal. Lib. Post-soviet Affairs = Post-sov Aff Post-soviet Affairs = Post-sov. Aff. Post-Soviet Affairs=Post-Soviet Aff. Post-soviet Civil Society = Basees-rout Ser Russ Post-soviet Civil Society = Basees-rout. Ser. Russ. Post-soviet Geography and Economics = Post-sov Geogr Econ Post-soviet Geography and Economics = Post-sov. Geogr. Econ. Post-Soviet geography and economics = Post Sov Geogr Econ Post-Soviet Geography and Economics=Post-Soviet Geogr. Econ. Post-soviet Geography = Post-sov Geogr Post-soviet Geography = Post-sov. Geogr. Post-Soviet geography = Post Sov Geogr Post-soviet Russian Media: Conflicting Signals = Basees-rout Ser Russ Post-soviet Russian Media: Conflicting Signals = Basees-rout. Ser. Russ. Poststructuralism, Philosophy, Pedagogy = Philos Educ-neth Poststructuralism, Philosophy, Pedagogy = Philos. Educ-neth. Post-transcriptional Regulation By Star Proteins: Control of Rna Metabolism in Development and Disease = Adv Exp Med Biol Post-transcriptional Regulation By Star Proteins: Control of Rna Metabolism in Development and Disease = Adv. Exp. Med. Biol. Post-translational Modifications in Health and Disease = Protein Rev Post-translational Modifications in Health and Disease = Protein. Rev. Post-translational Modifications in Plants = Soc Exp Biol Semin S Post-translational Modifications in Plants = Soc. Exp. Biol. Semin. S. Posture and Gait : Development, Adaptation and Modulation = Int Congr Ser Posture and Gait : Development, Adaptation and Modulation = Int. Congr. Ser. Post-war Bosnia: Ethnicity, Inequality and Public Sector Governance = Ethn Inequal Public Post-war Bosnia: Ethnicity, Inequality and Public Sector Governance = Ethn. Inequal. Public Postwar Challenge: Cultural, Social and Political Change in Western Europe, 1945-58 = Stud Ger Hist Inst Postwar Challenge: Cultural, Social and Political Change in Western Europe, 1945-58 = Stud. Ger. Hist. Inst. Post-war Italian Cinema: American Intervention, Vatican Interests = Routl Adv Film Stud Post-war Italian Cinema: American Intervention, Vatican Interests = Routl. Adv. Film. Stud. Potassium Channels = Prog Clin Biol Res Potassium Channels = Prog. Clin. Biol. Res. Potassium Ion Channels = Curr Top Membr Potassium Ion Channels = Curr. Top. Membr. Potato Ecology and Modelling of Crops Under Conditions Limiting Growth = Curr Iss Prod Ecol Potato Ecology and Modelling of Crops Under Conditions Limiting Growth = Curr. Iss. Prod. Ecol. Potatoes - Healthy Food for Humanity: International Developments in Breeding, Production, Protection and Utilization = Acta Hortic Potatoes - Healthy Food for Humanity: International Developments in Breeding, Production, Protection and Utilization = Acta. Hortic. Potato Research = Potato Res Potato Research = Potato Res. Potential Analysis of Stable Processes and Its Extensions = Lect Notes Math Potential Analysis of Stable Processes and Its Extensions = Lect. Notes. Math. Potential Analysis = Potential Anal. Potential Analysis = Potential Anal Potential Analysis = Potential Anal. Potential Energy Surfaces = Lect N Chem Potential Energy Surfaces = Lect. N. Chem. Potential for Carbon Capture and Storage (ccs) in The Nordic Region = Vtt Res Notes Potential for Carbon Capture and Storage (ccs) in The Nordic Region = Vtt. Res. Notes. Potential Health Benefits of Citrus = Acs Sym Ser Potential Health Benefits of Citrus = Acs. Sym. Ser. Potential of Deep Seismic Profiling for Hydrocarbon Exploration = Coll Col Se Potential of Deep Seismic Profiling for Hydrocarbon Exploration = Coll. Col. Se. Potential Theory = Universitext Potential Theory = Universitext. Poultry and Avian Biology Reviews = Poult Avian Biol Rev Poultry and Avian Biology Reviews = Poult. Avian Biol. Rev. Poultry Feedstuffs: Supply, Composition and Nutritive Value = Poult Sci S Poultry Feedstuffs: Supply, Composition and Nutritive Value = Poult. Sci. S. Poultry Science = Poultry Sci Poultry Science = Poultry Sci. Poultry science = Poult Sci Poultry Science=Poult Sci;; Poultry Science = Poult. Sci. Poultry Science Symposium Series = Poult Sci S Poultry Science Symposium Series = Poult. Sci. S. Poumon et le Coeur = Poumon Coeur Pour L Ingenieur = Pour Ing Pour L Ingenieur = Pour Ing. Poverkhnost = Poverkhnost Poverty and Charity in Middle Eastern Contexts = Suny S Soci Econ His Poverty and Charity in Middle Eastern Contexts = Suny. S. Soci. Econ. His. Poverty and Equity: Measurement, Policy and Estimation With Dad = Econ Stud Inequal So Poverty and Equity: Measurement, Policy and Estimation With Dad = Econ. Stud. Inequal. So. Poverty and Inequality in Latin America = Helen Kellogg Inst Poverty and Inequality in Latin America = Helen. Kellogg. Inst. Poverty and Inequality in The Era of Structural Reforms: The Case of Bolivia = Kiel Stud Poverty and Inequality in The Era of Structural Reforms: The Case of Bolivia = Kiel. Stud. Poverty and Social Exclusion in North and South = Priorities Devel Eco Poverty and Social Exclusion in North and South = Priorities. Devel. Eco. Poverty in Africa = Afr Polit Econ Secur Poverty in Africa = Afr. Polit. Econ. Secur. Poverty, Inequality and Development: Essays in Honor of Erik Thorbecke = Ec Stud Inequal Soc Poverty, Inequality and Development: Essays in Honor of Erik Thorbecke = Ec. Stud. Inequal. Soc. Poverty, Inequality, and Policy in Latin America = Cesifo Seminar Ser Poverty, Inequality, and Policy in Latin America = Cesifo. Seminar. Ser. Poverty, International Migration and Asylum = Stud Dev Econ Policy Poverty, International Migration and Asylum = Stud. Dev. Econ. Policy. Poverty in World History = Themes World Hist Poverty in World History = Themes. World Hist. Poverty Orientated Agricultural and Rural Development = Routl Stud Dev Soc Poverty Orientated Agricultural and Rural Development = Routl. Stud. Dev. Soc. Poverty Reduction and Beyond: Development Strategies for Low-income Countries = Ide-jetro Ser Poverty Reduction and Beyond: Development Strategies for Low-income Countries = Ide-jetro. Ser. Powder Diffraction = Powder Diffr Powder Diffraction = Powder Diffr. Powder Metallurgy and Metal Ceramics = Powder Metall Met C+ Powder Metallurgy and Metal Ceramics = Powder Metall. Met. C+.+ Powder Metallurgy and Metal Ceramics = Powder Metall. Met. Ceram. Powder Metallurgy International = Powder Metall Int Powder Metallurgy International = Powder Metall. Int. Powder Metallurgy = Powder Metall Powder Metallurgy = Powder Metall. Powders and Fibers: Interfacial Science and Applications = Surfactant Sci Ser Powders and Fibers: Interfacial Science and Applications = Surfactant. Sci. Ser. Powders and Grains 2009 = Aip Conf Proc Powders and Grains 2009 = Aip. Conf. Proc. Powders and Solids: Developments in Handling and Processing Technologies = Roy Soc Ch Powders and Solids: Developments in Handling and Processing Technologies = Roy. Soc. Ch. Powder Technology and Application = Adv Mat Res Powder Technology and Application = Adv. Mat. Res. Powder Technology and Application Ii = Adv Mat Res Powder Technology and Application Ii = Adv. Mat. Res. Powder Technology and Application Iii = Adv Mater Res-switz Powder Technology and Application Iii = Adv. Mater. Res-switz. Powder Technology = Powder Technol Powder Technology = Powder Technol. Power '09: Proceedings of The 9th Wseas/iasme International Conference On Electric Power Systems, High Voltages, Electric Machines = Rec Adv Electr Eng Power '09: Proceedings of The 9th Wseas/iasme International Conference On Electric Power Systems, High Voltages, Electric Machines = Rec. Adv. Electr. Eng. Power and Architecture = Orient Lovan Anal Power and Architecture = Orient. Lovan. Anal. Power and German Foreign Policy: Embedded Hegemony in Europe = New Perspect Ger Stu Power and German Foreign Policy: Embedded Hegemony in Europe = New. Perspect. Ger. Stu. Power and Politeness in Action: Disagreements in Oral Communication = Lang Power Soc Proce Power and Politeness in Action: Disagreements in Oral Communication = Lang. Power Soc. Proce. Power and Politics After Financial Crises: Rethinking Foreign Opportunism in Emerging Markets = Int Polit Econ Ser Power and Politics After Financial Crises: Rethinking Foreign Opportunism in Emerging Markets = Int. Polit. Econ. Ser. Power and Status = Adv Group Process Power and Status = Adv. Group. Process. Power and Sustainability of The Chinese State = China Policy Ser Power and Sustainability of The Chinese State = China. Policy. Ser. Power At Work = Routl Res Employ Rel Power At Work = Routl. Res. Employ. Rel. Power-aware Computer Systems = Lect Notes Comput Sc Power-aware Computer Systems = Lect. Notes. Comput. Sc. Power- Aware Computer Systems = Lect Notes Comput Sc Power- Aware Computer Systems = Lect. Notes. Comput. Sc. Power Control and Optimization = Aip Conf Proc Power Control and Optimization = Aip. Conf. Proc. Power Control and Optimization, Proceedings = Aip Conf Proc Power Control and Optimization, Proceedings = Aip. Conf. Proc. Power Electronics and Applications Series = Pow Electr Appl Power Electronics and Applications Series = Pow. Electr. Appl. Power Electronics and Instrumentation Engineering = Comm Com Inf Sc Power Electronics and Instrumentation Engineering = Comm. Com. Inf. Sc. Power Electronics and Power Systems = Power Electronics P Power Electronics and Power Systems = Power Electronics P. Power Electronics and Power Systems = Power Electron Power Power Electronics and Power Systems = Power Electron. Power Power Electronics in Smart Electrical Energy Networks = Power Syst Power Electronics in Smart Electrical Energy Networks = Power Syst. Power Engineering Journal = Power Eng J Power Engineering Journal = Power Eng. J. Power Engineering = Power Eng Power Engineering = Power Eng. Power Engineering = Power Eng-us Power Engineering = Power Eng-us. Power Engineering-willis = Power Eng-willis Power Engineering-willis = Power Eng-willis. Power Engineer = Power Engineer Powerful Pedagogy: Self-study of A Teacher Educator's Practice = Self Study Teach Tea Powerful Pedagogy: Self-study of A Teacher Educator's Practice = Self. Study. Teach. Tea. Power Generation and The Environment = Proc Inst Mech Eng S Power Generation and The Environment = Proc. Inst. Mech. Eng. S. Power Generation By Renewables = Imeche Sem Power Generation By Renewables = Imeche. Sem. Power Generation From Solid Fuels = Power Syst Power Generation From Solid Fuels = Power Syst. Power Laws in The Information Production Process: Lotkaian Informetrics = Libr Inform Sci Ser Power Laws in The Information Production Process: Lotkaian Informetrics = Libr. Inform. Sci. Ser. Power-limiting Materials and Devices = P Soc Photo-opt Ins Power-limiting Materials and Devices = P. Soc. Photo-opt. Ins. Power Line Communications in Practice = Artech Hse Telecom S Power Line Communications in Practice = Artech. Hse. Telecom. S. Power Management of Digital Circuits in Deep Sub-micron Cmos Technologies = Spr Ser Adv Microele Power Management of Digital Circuits in Deep Sub-micron Cmos Technologies = Spr. Ser. Adv. Microele. Power of Analogy: An Essay On Historical Linguistics = Trends Linguist-stud Power of Analogy: An Essay On Historical Linguistics = Trends. Linguist-stud. Power of A Woman's Voice in Medieval and Early Modern Literatures = Fund Mediev Early Mo Power of A Woman's Voice in Medieval and Early Modern Literatures = Fund. Mediev. Early Mo. Power of Click Chemistry for Molecular Machines and Surface Patterning = Springer Theses-reco Power of Click Chemistry for Molecular Machines and Surface Patterning = Springer. Theses-reco. Power of Convening = Environ St Power of Convening = Environ. St. Power of Denial: Buddhism, Purity, and Gender = Buddhisms Power of Denial: Buddhism, Purity, and Gender = Buddhisms. Power of Learning From Inquiry = Adult Educ Spec Top Power of Learning From Inquiry = Adult. Educ. Spec. Top. Power of Optical/ir Interferometry: Recent Scientific Results and 2nd Generation Instrumentation = Eso Astrophy Symp Power of Optical/ir Interferometry: Recent Scientific Results and 2nd Generation Instrumentation = Eso. Astrophy. Symp. Power of Performance: Linking Past and Present in Hananwa and Lobedu Oral Literature = Trends Linguist-stud Power of Performance: Linking Past and Present in Hananwa and Lobedu Oral Literature = Trends. Linguist-stud. Power of Sovereignty: The Political and Ideological Philosophy of Sayyid Qutb = Routl Stud Pol Islam Power of Sovereignty: The Political and Ideological Philosophy of Sayyid Qutb = Routl. Stud. Pol. Islam. Power of Words in International Relations: Birth of An Anti-whaling Discourse = Polit Sci Environ Power of Words in International Relations: Birth of An Anti-whaling Discourse = Polit. Sci. Environ. Power Plant Surveillance and Diagnostics = Power Syst Power Plant Surveillance and Diagnostics = Power Syst. Power Play: The Literature and Politics of Chess in The Later Middle Ages = Middle Ages Ser Power Play: The Literature and Politics of Chess in The Later Middle Ages = Middle Ages Ser. Power, Politics, and The Reinvention of Tradition: Tibet in The Seventeenth and Eighteenth Centuries = Brills Tibet Stu Lib Power, Politics, and The Reinvention of Tradition: Tibet in The Seventeenth and Eighteenth Centuries = Brills. Tibet Stu. Lib. Power = Power Power Production From Biomass Ii With Special Emphasis On Gasification and Pyrolysis R&dd = Vtt Symp Power Production From Biomass Ii With Special Emphasis On Gasification and Pyrolysis R&dd = Vtt. Symp. Power Production From Waste and Biomass Iv: Advanced Concepts and Technologies = Vtt Symp Power Production From Waste and Biomass Iv: Advanced Concepts and Technologies = Vtt. Symp. Power Quality: Mitigation Technologies in A Distributed Environment = Power Syst Power Quality: Mitigation Technologies in A Distributed Environment = Power Syst. Power Reactor Technology = Power React Technol Power Reactor Technology = Power React. Technol. Power, Resistance and Conflict in The Contemporary World = Routl Adv Int Relat Power, Resistance and Conflict in The Contemporary World = Routl. Adv. Int. Relat. Power Semiconductor Devices and Circuits = Asea Br B S Power Semiconductor Devices and Circuits = Asea. Br. B. S. Power Semiconductor Materials and Devices = Mater Res Soc Symp P Power Semiconductor Materials and Devices = Mater. Res. Soc. Symp. P. Power Shifts, Strategy and War: Declining States and International Conflict = Rout Glob Secur Stud Power Shifts, Strategy and War: Declining States and International Conflict = Rout. Glob. Secur. Stud. Powers of Personification = Beih Z Neutest Wiss Powers of Personification = Beih. Z. Neutest. Wiss. Power Sources 13 = Res Dev N M Power Sources 13 = Res. Dev. N. M. Power Sources 14 = Res Dev N M Power Sources 14 = Res. Dev. N. M. Power Sources 15 = Res Dev N M Power Sources 15 = Res. Dev. N. M. Power Sources 16 = Power Sour Power Sources 16 = Power Sour. Power Sources for The New Millennium, Proceedings = Elec Soc S Power Sources for The New Millennium, Proceedings = Elec. Soc. S. Power Sources = Power Sour Power Sources = Power Sour. Power System Modelling and Scripting = Power Syst Power System Modelling and Scripting = Power Syst. Power Systems Applications of Graph Theory = Energ Sci Eng Tech Power Systems Applications of Graph Theory = Energ. Sci. Eng. Tech. Power Systems = Power Syst Power Systems = Power Syst. Power, Voice and Subjectivity in Literature for Young Readers = Child Lit Cult Power, Voice and Subjectivity in Literature for Young Readers = Child. Lit. Cult. Power, Voice and The Public Good: Schooling and Education in Global Societies = Adv Educ Divers Comm Power, Voice and The Public Good: Schooling and Education in Global Societies = Adv. Educ. Divers. Comm. Power, Wealth and Women in Indian Mahayana Buddhism: The Gandavyuha-sutra = Routl Crit Stud Budd Power, Wealth and Women in Indian Mahayana Buddhism: The Gandavyuha-sutra = Routl. Crit. Stud. Budd. Powys Review = Powys Rev Powys Review = Powys Rev. Poznan Linguistics Meetings, Vol Ii = Ptpn Filol Jez Poznan Linguistics Meetings, Vol Ii = Ptpn. Filol. Jez. Poznańskie Towarzystwo Przyjaciół Nauk = Studia Automat. Inform. Poznanskie Towarzystwo Przyjaciol Nauk, Wydzial Filologiczno-filozoficzny, Prace Komisji Jezykoznawczej = Ptpn Filol Jez Poznanskie Towarzystwo Przyjaciol Nauk, Wydzial Filologiczno-filozoficzny, Prace Komisji Jezykoznawczej = Ptpn. Filol. Jez. Poznan Society for The Humanities, Section Philology & Philosophy, Publications of The Philological Committee = Ptpn Filol Piloz Poznan Society for The Humanities, Section Philology & Philosophy, Publications of The Philological Committee = Ptpn. Filol. Piloz. Poznan Studies in Contemporary Linguistics = Poznan Stud Contemp Poznan Studies in Contemporary Linguistics = Poznan Stud. Contemp. Poznan Studies in Contemporary Linguistics = Poz Stud Contemp Lin Poznan Studies in Contemporary Linguistics = Poz. Stud. Contemp. Lin. Poznan Studies in The Philosophy of The Sciences and The Humanities = Poznan Stud Poznan Studies in The Philosophy of The Sciences and The Humanities = Poznan Stud. Poznan Studies in The Philosophy of The Sciences and The Humanities = Poznan Stud Philos S Poznan Studies in The Philosophy of The Sciences and The Humanities = Poznan Stud. Philos. S. Poznań Studies in the Philosophy of the Sciences and the Humanities = Poznań Stud. Philos. Sci. Humanities Poznań University of Technology = Found. Comput. Decision Sci. Ppar Research = Ppar Res Ppar Research = Ppar Res. PPAR research = PPAR Res PP news = PP News Pps Management = Pps Manag Pps Management = Pps Manag. Prace archeologiczne = PraceA Prace i materialy Muzeum archeologicznego i etnograficznego w Łodzi = PraceMatLodz Prace I Materialy Zootechniczne = Prace Mater Zootech Prace I Materialy Zootechniczne = Prace Mater. Zootech. Prace Instytutu Badawczego Lesnictwa Rozprawy I Monografie = Prace I Bad Lesn Roz Prace Instytutu Badawczego Lesnictwa Rozprawy I Monografie = Prace I Bad. Lesn. Roz. Prace i studia geograficzne / Uniwersytet Warszawski, Wydzial Geografii i Studiow Regionalnych = Prac Studi Geograf Prace Komisji Medycyny Doswiadczalnej / Poznanskie Towarzystwo Przyjaciol Nauk, Wydzial Lekarski = Pr Kom Med Dosw Prace, Lodzkie Towarzystwo Naukowe, Wydzial IV, Nauk Lekarskich = Pr. Lodz. Tow. Nauk. [IV] Prace. Lodzkie Towarzystwo Naukowe. Wydzial IV, Nauk Lekarskich = Pr Lodz Tow Nauk [IV] Prace Naukowe Instytutu Cybernetyki Technicznej Politechniki Wrocławskiej = Prace Nauk. Inst. Cybernet. Tech. Politech. Wrocław. Prace Naukowe Instytutu Technologii Nieorganicznej i Nawozow Mineralnych Politechniki Wroclawskiej = Pr. Nauk Inst. Technol. Nieorg. Nawozow Miner. Politech. Wroclaw. Prace Naukowe Uniwersytetu Śląskiego w Katowicach = Pr. Nauk. Uniw. Śl. Katow. Prace Vulhm-reports of The Forestry and Game Management Research Institute = Prace Vulhm Prace Vulhm-reports of The Forestry and Game Management Research Institute = Prace Vulhm. Prace z dejin prirodnich ved = Pr Dejin Prir Ved Pracovni lekarstvi = Prac Lek Pracovni Lekarstvi = Prac. Lek. Practica farmaceutica / Ministerul Sanatatii, Directia farmaceutica si a Aparaturii Medicale = Pract Farm Practical Applications of Asymptotic Techniques in Electromagnetics = Artech Hse Elec Anal Practical Applications of Asymptotic Techniques in Electromagnetics = Artech. Hse. Elec. Anal. Practical Applications of Microresonators in Optics and Photonics = Opt Sci Eng-crc Practical Applications of Microresonators in Optics and Photonics = Opt. Sci. Eng-crc. Practical Applications of Quantitative Structure-activity Relationships ( Qsar ) in Environmental Chemistry and Toxicology = Euro Ch Env Practical Applications of Quantitative Structure-activity Relationships ( Qsar ) in Environmental Chemistry and Toxicology = Euro. Ch. Env. Practical Approach to Medical Image Processing = Ser Med Phys Biomed Practical Approach to Medical Image Processing = Ser. Med. Phys. Biomed. Practical Aspects of Declarative Languages = Lect Notes Comput Sc Practical Aspects of Declarative Languages = Lect. Notes. Comput. Sc. Practical Aspects of Declarative Languages, Proceedings = Lect Notes Comput Sc Practical Aspects of Declarative Languages, Proceedings = Lect. Notes. Comput. Sc. Practical Aspects of Knowledge Management = Lect Notes Artif Int Practical Aspects of Knowledge Management = Lect. Notes. Artif. Int. Practical Aspects of Knowledge Management, Proceedings = Lect Notes Artif Int Practical Aspects of Knowledge Management, Proceedings = Lect. Notes. Artif. Int. Practical Autonomy and Bioethics = Routl Ann Bioethics Practical Autonomy and Bioethics = Routl. Ann. Bioethics Practical Clinical Guidebooks = Pract Clin Guidebk Practical Clinical Guidebooks = Pract. Clin. Guidebk. Practical dental monographs = Pract Dent Monogr Practical Dental Monographs = Pract. Dent. Monogr. Practical Design of Ships and Mobile Units = Dev Mar Tec Practical Design of Ships and Mobile Units = Dev. Mar. Tec. Practical Digital Imaging and Pacs = Med Phys Mg Practical Digital Imaging and Pacs = Med. Phys. Mg. Practical gastroenterology = Pract Gastroenterol Practical Gastroenterology = Pract Gastroenterol Practical Gastroenterology = Pract. Gastroenterol. Practical Goal Programming = Int Ser Oper Res Man Practical Goal Programming = Int. Ser. Oper. Res. Man. Practical Guide to Cyclosporin A in The Treatment of Psoriasis = Roy Soc Med Int Cong Practical Guide to Cyclosporin A in The Treatment of Psoriasis = Roy. Soc. Med. Int. Cong. Practical Guide to Icp-ms: A Tutorial for Beginners, Second Edition = Pract Spectrosc Practical Guide to Icp-ms: A Tutorial for Beginners, Second Edition = Pract. Spectrosc. Practical Guide to Project Planning = Esi Int Proj Manag S Practical Guide to Project Planning = Esi. Int. Proj. Manag. S. Practical Holography Iv = P Soc Photo-opt Ins Practical Holography Iv = P. Soc. Photo-opt. Ins. Practical Holography Ix = P Soc Photo-opt Ins Practical Holography Ix = P. Soc. Photo-opt. Ins. Practical Holography Vii : Imaging and Materials = P Soc Photo-opt Ins Practical Holography Vii : Imaging and Materials = P. Soc. Photo-opt. Ins. Practical Holography Viii = P Soc Photo-opt Ins Practical Holography Viii = P. Soc. Photo-opt. Ins. Practical Holography Vi = P Soc Photo-opt Ins Practical Holography Vi = P. Soc. Photo-opt. Ins. Practical Holography V = P Soc Photo-opt Ins Practical Holography V = P. Soc. Photo-opt. Ins. Practical Holography Xi and Holographic Materials Iii = P Soc Photo-opt Ins Practical Holography Xi and Holographic Materials Iii = P. Soc. Photo-opt. Ins. Practical Holography Xiii = P Soc Photo-opt Ins Practical Holography Xiii = P. Soc. Photo-opt. Ins. Practical Holography Xii = P Soc Photo-opt Ins Practical Holography Xii = P. Soc. Photo-opt. Ins. Practical Holography Xiv and Holographic Materials Vi = P Soc Photo-opt Ins Practical Holography Xiv and Holographic Materials Vi = P. Soc. Photo-opt. Ins. Practical Holography Xix: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xix: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Holography X = P Soc Photo-opt Ins Practical Holography X = P. Soc. Photo-opt. Ins. Practical Holography Xv and Holographic Materials Vii = Proc Spie Practical Holography Xv and Holographic Materials Vii = Proc. Spie. Practical Holography Xv and Holographic Materials Vii = P Soc Photo-opt Ins Practical Holography Xv and Holographic Materials Vii = P. Soc. Photo-opt. Ins. Practical Holography Xvi and Holographic Materials Viii = P Soc Photo-opt Ins Practical Holography Xvi and Holographic Materials Viii = P. Soc. Photo-opt. Ins. Practical Holography Xvii and Holographic Materials Ix = P Soc Photo-opt Ins Practical Holography Xvii and Holographic Materials Ix = P. Soc. Photo-opt. Ins. Practical Holography Xviii: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xviii: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Holography Xxiii: Materials and Applications = Proc Spie Practical Holography Xxiii: Materials and Applications = Proc. Spie. Practical Holography Xxiii: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xxiii: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Holography Xxii: Materials and Applications = Proc Spie Practical Holography Xxii: Materials and Applications = Proc. Spie. Practical Holography Xxii: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xxii: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Holography Xxi: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xxi: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Holography Xxiv: Materials and Applications = Proc Spie Practical Holography Xxiv: Materials and Applications = Proc. Spie. Practical Holography Xx: Materials and Applications = Proc Spie Practical Holography Xx: Materials and Applications = Proc. Spie. Practical Holography Xx: Materials and Applications = P Soc Photo-opt Ins Practical Holography Xx: Materials and Applications = P. Soc. Photo-opt. Ins. Practical Hydroinformatics: Computational Intelligence and Technological Developments in Water Applications = Water Sci Technol Li Practical Hydroinformatics: Computational Intelligence and Technological Developments in Water Applications = Water Sci. Technol. Li. Practical Hydroinformatics: Computational Intelligence and Technological Developments in Water Applications = Wtr Sci Tec Libr Practical Hydroinformatics: Computational Intelligence and Technological Developments in Water Applications = Wtr. Sci. Tec. Libr. Practical Identity and Narrative Agency = Rout Stud Contemp Ph Practical Identity and Narrative Agency = Rout. Stud. Contemp. Ph. Practical Introduction to Computer Architecture = Texts Comput Sci Practical Introduction to Computer Architecture = Texts. Comput. Sci. Practical Introduction to Psl = Integr Circuit Syst Practical Introduction to Psl = Integr. Circuit. Syst. Practical Mathematical Optimization = Appl Optim Practical Mathematical Optimization = Appl. Optim. Practical Methods for Optimal Control and Estimation Using Nonlinear Programming, Second Edition = Adv Des Control Practical Methods for Optimal Control and Estimation Using Nonlinear Programming, Second Edition = Adv. Des. Control Practical Modalities of An Efficient Screening for The European Community = Int Congr Ser Practical Modalities of An Efficient Screening for The European Community = Int. Congr. Ser. Practical neurology = Pract Neurol Practical Open Source Software for Libraries = Chandos Inf Prof Ser Practical Open Source Software for Libraries = Chandos. Inf. Prof. Ser. Practical Orthopedics = Prak Orthop Practical Orthopedics = Prak. Orthop. Practical Peacemaking in The Middle East = Prac Peac Middl East Practical Peacemaking in The Middle East = Prac. Peac. Middl. East Practical Peacemaking in The Middle East, Vol 1 = Prac Peac Middl East Practical Peacemaking in The Middle East, Vol 1 = Prac. Peac. Middl. East. Practical Peacemaking in The Middle East, Vol Ii = Prac Peac Middl East Practical Peacemaking in The Middle East, Vol Ii = Prac. Peac. Middl. East. Practical Periodical on Structural Design and Construction = Pract. Period. Struct. Des. Constr. Practical periodontics and aesthetic dentistry : PPAD = Pract Periodontics Aesthet Dent Practical Periodontics and Aesthetic Dentistry = Pract. Periodontics Aesthet. Dent. Practical Pid Control = Adv Ind Control Practical Pid Control = Adv. Ind. Control Practical Plant Failure Analysis: A Guide to Understanding Machinery Deterioration and Improving Equipment Reliability = Mech Eng Ser Txb Ref Practical Plant Failure Analysis: A Guide to Understanding Machinery Deterioration and Improving Equipment Reliability = Mech. Eng. Ser. Txb. Ref. Practical Problems in Clinical Psychiatry = Ox Med Publ Practical Problems in Clinical Psychiatry = Ox. Med. Publ. Practical procedures & aesthetic dentistry : PPAD = Pract Proced Aesthet Dent Practical Programming Model for The Multi-core Era, Proceedings = Lect Notes Comput Sc Practical Programming Model for The Multi-core Era, Proceedings = Lect. Notes. Comput. Sc. Practical Proteomics = Pract. Proteomics Practical psychology for physicians = Pract Psychol Physicians Practical Signcryption = Inform Sec Crypt Tex Practical Signcryption = Inform. Sec. Crypt. Tex. Practical Spectroscopy = Pract Spectrosc Practical Spectroscopy = Pract. Spectrosc. Practical Transformations and Transformational Practices = Adv Early Educ Day C Practical Transformations and Transformational Practices = Adv. Early. Educ. Day. C. Practical Urology: Essential Principles and Practice = Springer Spec Surg S Practical Urology: Essential Principles and Practice = Springer. Spec. Surg. S. Practica odontologica = Pract Odontol Practica Odontologica = Pract. Odontol. Practica Oto-rhino-laryngologica = Pract-oto-rhino-lary Practica Oto-rhino-laryngologica = Pract-oto-rhino-lary. Practica oto-rhino-laryngologica = Pract Otorhinolaryngol (Basel) Practica Oto-Rhino-Laryngologica = Pract. Otorhinolaryngol. (Basel) Practice and Research in Literacy = Res Appl Linguist Practice and Research in Literacy = Res. Appl. Linguist. Practice and Research Notes in Relational Database Applications = Comput Sci Tech Appl Practice and Research Notes in Relational Database Applications = Comput. Sci. Tech. Appl. Practice and Theory of Automated Timetabling Iii = Lect Notes Comput Sc Practice and Theory of Automated Timetabling Iii = Lect. Notes. Comput. Sc. Practice and Theory of Automated Timetabling Ii = Lect Notes Comput Sc Practice and Theory of Automated Timetabling Ii = Lect. Notes. Comput. Sc. Practice and Theory of Automated Timetabling Iv = Lect Notes Comput Sc Practice and Theory of Automated Timetabling Iv = Lect. Notes. Comput. Sc. Practice and Theory of Automated Timetabling Vi = Lect Notes Comput Sc Practice and Theory of Automated Timetabling Vi = Lect. Notes. Comput. Sc. Practice and Theory of Automated Timetabling V = Lect Notes Comput Sc Practice and Theory of Automated Timetabling V = Lect. Notes. Comput. Sc. Practice digest = Pract Dig Practice Digest = Pract. Dig. Practice-driven Research On Enterprise Transformation = Lect Notes Bus Inf Practice-driven Research On Enterprise Transformation = Lect. Notes. Bus. Inf. Practice of Econometric Theory: An Examination of The Characteristics of Econometric Computation = Adv Stud Theor Appl Practice of Econometric Theory: An Examination of The Characteristics of Econometric Computation = Adv. Stud. Theor. Appl. Practice of Enterprise Modeling = Lect Notes Bus Inf Practice of Enterprise Modeling = Lect. Notes. Bus. Inf. Practice of Enterprise Modeling = Lect Notes Bus Inf P Practice of Enterprise Modeling = Lect. Notes. Bus. Inf. P. Practice of Enterprise Modeling, Proceedings = Lect Notes Bus Inf Practice of Enterprise Modeling, Proceedings = Lect. Notes. Bus. Inf. Practice of Public Art = Routl Res Cult Media Practice of Public Art = Routl. Res. Cult. Media. Practice Periodical of Hazardous, Toxic, Waste Management = Pract. Period. Hazard. Toxic Radioact. Waste Manage. Practicing Anthropology in The South = South Anthr Practicing Anthropology in The South = South Anthr. Practicing Culture = Taking Cult Serious Practicing Culture = Taking. Cult. Serious. Practicing Midwife = Pract. Midwife Practicing Neurology: What You Need to Know, What You Need to Do, Second Edition = Curr Clin Neurol Practicing Neurology: What You Need to Know, What You Need to Do, Second Edition = Curr. Clin. Neurol. Practicing Veterinarian = Pract Vet Practicing Veterinarian = Pract. Vet. Practitioner=Practitioner;; Practitioner = Practitioner Practitioners Guides to Disease = Pract Guides Dis Practitioners Guides to Disease = Pract. Guides Dis. Practitioner's Guide to Common Ano-rectal Diseases = Pract Guides Dis Practitioner's Guide to Common Ano-rectal Diseases = Pract. Guides. Dis. Practitioners Guide to Empirically Based Measures of Social Skills = Abct Clin Assess Ser Practitioners Guide to Empirically Based Measures of Social Skills = Abct. Clin. Assess. Ser. Praeger Series in Applied Psychology = Praeg S Appl Psychol Praeger Series in Applied Psychology = Praeg. S. Appl. Psychol. Praehistorische Zeitschrift = Praehist Z Praehistorische Zeitschrift = Praehist. Z. Pragmatic Bioethics, 2nd Edition = Basic Bioeth Pragmatic Bioethics, 2nd Edition = Basic. Bioeth. Pragmatic Competence = Mouton Ser Pragmat Pragmatic Competence = Mouton. Ser. Pragmat. Pragmatic Markers and Propositional Attitude = Prag Beyond New Ser Pragmatic Markers and Propositional Attitude = Prag. Beyond. New. Ser. Pragmatic Markers in Contrast = Stud Pragmat Pragmatic Markers in Contrast = Stud. Pragmat. Pragmatics and Corpus Linguistics: A Mutualistic Entente = Mouton Ser Pragmat Pragmatics and Corpus Linguistics: A Mutualistic Entente = Mouton. Ser. Pragmat. Pragmatics & Beyond: New Series = Prag Beyond New Ser Pragmatics & Beyond: New Series = Prag. Beyond. New Ser. Pragmatics & Cognition = Pragmat Cogn Pragmatics & Cognition = Pragmat. Cogn. Pragmatics of Perception and Cognition in Mt Jeremiah 1:1-6:30 = Beih Z Alttest Wiss Pragmatics of Perception and Cognition in Mt Jeremiah 1:1-6:30 = Beih. Z. Alttest. Wiss. Pragmatics = Pragmatics Pragmatism in International Relations = New Int Relat Pragmatism in International Relations = New. Int. Relat. Pragmatism, Neo-pragmatism, and Religion = Amer Lib Rel Thought Pragmatism, Neo-pragmatism, and Religion = Amer. Lib. Rel. Thought. Prague and Bohemia: Medieval Art Architecture and Cultural Exchange in Central Europe = Brit Archaeol Assoc Prague and Bohemia: Medieval Art Architecture and Cultural Exchange in Central Europe = Brit. Archaeol. Assoc. Prague Economic Papers=Prague Econ. Pap. Prague Economic Papers = Prague Econ Pap Prague Economic Papers = Prague Econ. Pap. Prague medical report = Prague Med Rep Prague Medical Report = Prague Med. Rep. Prähistorische Archäologie in Südosteuropa = PAS Prähistorische Bronzefunde = PBF Prähistorische Zeitschrift = PZ Prairie Rose = Prairie Rose Prairie Schooner = Prairie Schooner Praising The Goddess = Arch Papyrus Verwand Praising The Goddess = Arch. Papyrus. Verwand. Prakticke zubni lekarstvi = Prakt Zubn Lek Prakticke Zubni Lekarstvi = Prakt. Zubn. Lek. Prakticky lekar = Prakt Lek Praktika tes Akademias Athenon = PAA Praktika tes en Athenais Archaiologikes Etaireias = PAAH Praktische Anaesthesie, Wiederbelebung und Intensivtherapie = Prakt. Anaesth. Praktische Anasthesie, Wiederbelebung und Intensivtherapie = Prakt Anaesth Praktische Anasthesie Wiederbelebung Und Intensivtherapie = Prakt Anasth Wied In Praktische Anasthesie Wiederbelebung Und Intensivtherapie = Prakt. Anasth. Wied. In. praktische Forstwirt für die Schweiz, Der = Prakt. Forstwirt Schweiz Praktische Kieferorthopadie = Prakt Kieferorthop Praktische Kieferorthopadie = Prakt. Kieferorthop. Praktische Maschinenakustik = Vdi-buch Praktische Maschinenakustik = Vdi-buch. Praktische Metallographie-practical Metallography = Prakt Metallogr-pr M Praktische Metallographie-practical Metallography = Prakt. Metallogr-pr. M. Praktische Metallographie = Prakt. Metallogr. Praktische Regeltechnik, 2008 = Vdi-buch Praktische Regeltechnik, 2008 = Vdi-buch. Praktische Regeltechnik, 2009 = Vdi-buch Praktische Regeltechnik, 2009 = Vdi-buch. Praktische Regeltechnik = Vdi-buch Praktische Regeltechnik = Vdi-buch. Praktische Theologie Des Alterns = Prakt Theol Wiss Praktische Theologie Des Alterns = Prakt. Theol. Wiss. Praktische Theologie Im Wissenschaftsdiskurs = Prakt Theol Wiss Praktische Theologie Im Wissenschaftsdiskurs = Prakt. Theol. Wiss. Praktische Tierarzt = Prakt Tierarzt Praktische Tierarzt = Prakt. Tierarzt Pramana-journal of Physics = Pramana-j Phys Pramana-journal of Physics = Pramana-j. Phys. Pramana = Pramana Prandtl-essentials of Fluid Mechanics = Appl Math Sci Prandtl-essentials of Fluid Mechanics = Appl. Math. Sci. Prapositionen Und Prapositionalphrasen Im Mittelhochdeutschen = Stud Mittelhochdeut Prapositionen Und Prapositionalphrasen Im Mittelhochdeutschen = Stud. Mittelhochdeut. Pratique Medicale Et Chirurgicale De L Animal De Compagnie = Prat Med Chir Anim Pratique Medicale Et Chirurgicale De L Animal De Compagnie = Prat. Med. Chir. Anim. Pratiques Psychologiques = Prat Psychol Pratiques Psychologiques = Prat. Psychol. Pravnik = Pravnik Praxisbuch Energiewirtschaft, 2nd Edition = Vdi-buch Praxisbuch Energiewirtschaft, 2nd Edition = Vdi-buch. Praxis der Kinderpsychologie und Kinderpsychiatrie. Beiheft = Prax Kinderpsychol Kinderpsychiatr Beih Praxis der Kinderpsychologie und Kinderpsychiatrie. Beiheft = Prax. Kinderpsychol. Kinderpsychiatr. Beih. Praxis Der Kinderpsychologie Und Kinderpsychiatrie. Beiheft=Prax Kinderpsychol Kinderpsychiatr Beih;; Praxis Der Kinderpsychologie Und Kinderpsychiatrie = Prax Kinderpsychol K Praxis Der Kinderpsychologie Und Kinderpsychiatrie = Prax. Kinderpsychol. K. Praxis der Kinderpsychologie und Kinderpsychiatrie = Prax Kinderpsychol Kinderpsychiatr Praxis der Kinderpsychologie und Kinderpsychiatrie = Prax. Kinderpsychol. Kinderpsychiatr. Praxis Der Kinderpsychologie Und Kinderpsychiatrie=Prax Kinderpsychol Kinderpsychiatr;; Praxis der Naturwissenschaften, Biologie in der Schule = Prax. Naturwiss. Biol. Sch. Praxis der Naturwissenschaften, Chemie in der Schule = Prax. Naturwiss. Chem. Sch. Praxis der Naturwissenschaften, Chemie = Prax. Naturwiss. Chem. Praxis der Naturwissenschaften, Physik = Prax. Naturwiss. Phys. Praxis der Pneumologie = Prax. Pneumol. Praxis Der Pneumologie = Prax Pneumol Praxis Der Pneumologie = Prax. Pneumol. Praxis der Pneumologie vereinigt mit Der Tuberkulosearzt = Prax Pneumol Praxis der Psychotherapie = Prax Psychother Praxis Der Psychotherapie = Prax Psychother Psyc Praxis Der Psychotherapie = Prax. Psychother. Psyc. Praxis Der Psychotherapie Und Psychosomatik = Prax Psychother Psyc Praxis Der Psychotherapie Und Psychosomatik = Prax. Psychother. Psyc. Praxis der Psychotherapie und Psychosomatik = Prax Psychother Psychosom Praxishandbuch Fur Nachlassinsolvenzverfahren = Degruyter Handb Praxishandbuch Fur Nachlassinsolvenzverfahren = Degruyter. Handb. Praxis-Kurier = Prax Kur Praxis = Praxis Praxis = Praxis-j Rad Per Art Praxis = Praxis-j. Rad. Per. Art. Praxis und Klinik der Pneumologie = Prax Klin Pneumol Praxis und Klinik der Pneumologie = Prax. Klin. Pneumol. Praxis Und Klinik Der Pneumologie = Prax Klin Pneumol Praxis Und Klinik Der Pneumologie = Prax. Klin. Pneumol. Prazisions- Und Tiefbohren Aktuell: Technik - Tools - Trends = Vdi Bericht Prazisions- Und Tiefbohren Aktuell: Technik - Tools - Trends = Vdi. Bericht. PRB report = PRB Rep Preaching in Judaism and Christianity: Encounter and Developments From Biblical Times to Modernity = Stud Juda Preaching in Judaism and Christianity: Encounter and Developments From Biblical Times to Modernity = Stud. Juda. Preaching in Judaism and Christianity: Encounter and Developments From Biblical Times to Modernity = Stud Judaica Preaching in Judaism and Christianity: Encounter and Developments From Biblical Times to Modernity = Stud. Judaica. Prebiotic Chemistry: From Simple Amphiphiles to Protocell Models = Top Curr Chem Prebiotic Chemistry: From Simple Amphiphiles to Protocell Models = Top. Curr. Chem. Prebiotic Chemistry in Space = Adv Space Res Prebiotic Chemistry in Space = Adv. Space Res. Precambrian Crustal Evolution in The North Atlantic Region = Geol Soc Sp Precambrian Crustal Evolution in The North Atlantic Region = Geol. Soc. Sp. Precambrian research = Precambrian Res Precambrian Research = Precambrian Res Precambrian Research = Precambrian Res. Precancerous Lesions: A Multidisciplinary Approach = Chall Mod Med Precancerous Lesions: A Multidisciplinary Approach = Chall. Mod. Med. Precedence: Social Differentiation in The Austronesian World = Comp Austro Ser Precedence: Social Differentiation in The Austronesian World = Comp. Austro. Ser. Precious Metals 1993 = Prec Met Precious Metals 1993 = Prec. Met. Precious Metals 1995 = Prec Met Precious Metals 1995 = Prec. Met. Precious Metals 1996 = Prec Met Precious Metals 1996 = Prec. Met. Precious Metals = Prec Met Precious Metals = Prec. Met. Precis analytique des travaux. Academie des sciences, belles-lettres et arts de Rouen = Precis Anal Trav Precisely Predictable Dirac Observables = Fund Theor Phys Precisely Predictable Dirac Observables = Fund. Theor. Phys. Precise Stellar Radial Velocities = Astr Soc P Precise Stellar Radial Velocities = Astr. Soc. P. Precision Agriculture and Biological Quality = Proc Spie Precision Agriculture and Biological Quality = Proc. Spie. Precision Agriculture and Biological Quality = P Soc Photo-opt Ins Precision Agriculture and Biological Quality = P. Soc. Photo-opt. Ins. Precision Agriculture = Precis Agric Precision Agriculture = Precis. Agric. Precision Assembly Technologies for Mini and Micro Products = Int Fed Info Proc Precision Assembly Technologies for Mini and Micro Products = Int. Fed. Info. Proc. Precision Die Design By The Die Expansion Method = Mater Sci Found Precision Die Design By The Die Expansion Method = Mater. Sci. Found. Precision Electroweak Physics At Electron-positron Colliders = Springer Tr Mod Phys Precision Electroweak Physics At Electron-positron Colliders = Springer. Tr. Mod. Phys. Precision Engineering and Optomechanics = P Soc Photo-opt Ins Precision Engineering and Optomechanics = P. Soc. Photo-opt. Ins. Precision Engineering-journal of The American Society for Precision Engineering = Precis Eng Precision Engineering-journal of The American Society for Precision Engineering = Precis. Eng. Precision Engineering-journal of The International Societies for Precision Engineering and Nanotechnology = Precis Eng Precision Engineering-journal of The International Societies for Precision Engineering and Nanotechnology = Precis. Eng. Precision Engineering = Precis. Eng. Precision Machining of Advanced Materials = Key Eng Mat Precision Machining of Advanced Materials = Key. Eng. Mat. Precision Metal = Precis. Met. Precision Motion Control: Design and Implementation, Second Edition = Adv Ind Control Precision Motion Control: Design and Implementation, Second Edition = Adv. Ind. Control. Precision Nanometrology: Sensors and Measuring Systems for Nanomanufacturing = Springer Ser Adv Man Precision Nanometrology: Sensors and Measuring Systems for Nanomanufacturing = Springer. Ser. Adv. Man. Precision Physics of Simple Atomic Systems = Lect Notes Phys Precision Physics of Simple Atomic Systems = Lect. Notes. Phys. Precision Physics of Simple Atoms and Molecules = Lect Notes Phys Precision Physics of Simple Atoms and Molecules = Lect. Notes. Phys. Precision Plastic Optics for Optical Storage, Displays, Imaging, and Communications = P Soc Photo-opt Ins Precision Plastic Optics for Optical Storage, Displays, Imaging, and Communications = P. Soc. Photo-opt. Ins. Precision Spectroscopy in Astrophysics = Eso Astrophy Symp Precision Spectroscopy in Astrophysics = Eso. Astrophy. Symp. Precision Surface Finishing and Deburring Technology = Adv Mat Res Precision Surface Finishing and Deburring Technology = Adv. Mat. Res. Precision Temperature Sensors in Cmos Technology = Analog Circ Sig Proc Precision Temperature Sensors in Cmos Technology = Analog. Circ. Sig. Proc. Preclinical and Clinical Strategies for The Treatment of Neurodegenerative, Cerebrovascular and Mental Disorders = Int Acad B Preclinical and Clinical Strategies for The Treatment of Neurodegenerative, Cerebrovascular and Mental Disorders = Int. Acad. B. Preconditioned Conjugate Gradient Methods = Lect Notes Math Preconditioned Conjugate Gradient Methods = Lect. Notes. Math. [Preconference papers]. National Dental Health Conference = Preconf Papers Natl Dent Health Conf (U S) Predator's Game-changing Designs: Research-based Tools = Lmx Leadersh Ser Predator's Game-changing Designs: Research-based Tools = Lmx. Leadersh. Ser. Prediabetes - Are We Ready to Intervene ? = Pediat Ad E Prediabetes - Are We Ready to Intervene ? = Pediat. Ad. E. Predicative Forms in Natural Language and in Lexical Knowledge Bases = Text Speech Lang Tec Predicative Forms in Natural Language and in Lexical Knowledge Bases = Text. Speech. Lang. Tec. Predictability, Stability, and Chaos in N-body Dynamical Systems = Nato Adv Sci I B-phy Predictability, Stability, and Chaos in N-body Dynamical Systems = Nato. Adv. Sci. I. B-phy. Predicting Field Performance in Crop Protection = Bcpc Symp Ser Predicting Field Performance in Crop Protection = Bcpc. Symp. Ser. Prediction and Discovery = Contemp Math Prediction and Discovery = Contemp. Math. Predictions in Ungauged Basins: International Perspectives On The State of The Art and Pathways Forward = Iahs-aish P Predictions in Ungauged Basins: International Perspectives On The State of The Art and Pathways Forward = Iahs-aish. P. Predictions in Ungauged Basins: Promise and Progress = Iahs-aish P Predictions in Ungauged Basins: Promise and Progress = Iahs-aish. P. Predictive Functional Control: Principles and Industrial Applications = Adv Ind Control Predictive Functional Control: Principles and Industrial Applications = Adv. Ind. Control. Predictive Material Modeling: Combining Fundamental Physics Understanding, Computational Methods and Empirically Observed Behavior = Am Soc Test Mater Predictive Material Modeling: Combining Fundamental Physics Understanding, Computational Methods and Empirically Observed Behavior = Am. Soc. Test. Mater. Predictive Technology Model for Robust Nanoelectronic Design = Integr Circuit Syst Predictive Technology Model for Robust Nanoelectronic Design = Integr. Circuit. Syst. Preference Change: Approaches From Philosophy, Economics and Psychology = Theory Decis Lib A Preference Change: Approaches From Philosophy, Economics and Psychology = Theory. Decis. Lib. A. Preferences and Decisions: Models and Applications = Stud Fuzz Soft Comp Preferences and Decisions: Models and Applications = Stud. Fuzz. Soft. Comp. Preferences and Democracy = Int St Econ Preferences and Democracy = Int. St. Econ. Preferences and Similarities = Cism Cour L Preferences and Similarities = Cism. Cour. L. Preferences and Well-being = Roy I Ph S Preferences and Well-being = Roy. I. Ph. S. Preferences in Negotiations: The Attachment Effect = Lect Notes Econ Math Preferences in Negotiations: The Attachment Effect = Lect. Notes. Econ. Math. Preferences = Perspekt Analyt Phil Preferences = Perspekt. Analyt. Phil. Prefrontal Cortex = Prog Brain Res Prefrontal Cortex = Prog. Brain. Res. Pregnancy and Infants-medical Psychological and Social Issues = Preg Infants-med Psy Pregnancy and Infants-medical Psychological and Social Issues = Preg. Infants-med. Psy. Pregnancy, Risk and Biopolitics: On The Threshold of The Living Subject = Transform Think Fem Pregnancy, Risk and Biopolitics: On The Threshold of The Living Subject = Transform. Think. Fem. Pregnancy Termination and Labour = C St Gyn Ob Pregnancy Termination and Labour = C. St. Gyn. Ob. Pregon (Madrid, Spain) = Pregon Prehistoric Documents = Docum Prehist Prehistoric Documents = Docum. Prehist. Prehistoric Graves As A Source of Information = Kungl Vit H Prehistoric Graves As A Source of Information = Kungl. Vit. H. Prehistory & History of Glassmaking Technology = Ceram Civil Prehistory & History of Glassmaking Technology = Ceram. Civil. Prehistory of The Silk Road = Encounters Asia Prehistory of The Silk Road = Encounters. Asia. Prehospital and Disaster Medicine = Prehospital Disaster Med. Prehospital and disaster medicine : the official journal of the National Association of EMS Physicians and the World Association for Emergency and Disaster Medicine in association with the Acute Care Foundation = Prehosp Disaster Med Prehospital emergency care : official journal of the National Association of EMS Physicians and the National Association of State EMS Directors = Prehosp Emerg Care Prehospital Emergency Care = Prehosp Emerg Care Prehospital Emergency Care = Prehosp. Emerg. Care Prehrambeno-tehnoloska I Biotehnoloska Revija = Prehram Tehnol Biot Prehrambeno-tehnoloska I Biotehnoloska Revija = Prehram. Tehnol. Biot. Preimplantation Embryo Development = Serono Symp Preimplantation Embryo Development = Serono. Symp. Preistoria alpina. Museo tridentino di scienze naturali = PreistAlp Prekare Beschaftigungsverhaltnisse: Systematische Darstellung Samtlicher Beschaftigungsformen = Degruyter Handb Prekare Beschaftigungsverhaltnisse: Systematische Darstellung Samtlicher Beschaftigungsformen = Degruyter. Handb. Premo: A Framework for Multimedia Middleware = Lect Notes Comput Sc Premo: A Framework for Multimedia Middleware = Lect. Notes. Comput. Sc. Pre-modern Encyclopaedic Texts : Proceedings of The Second Comers Congress, Groningen, 1-4 July 1996 = Brill S In Pre-modern Encyclopaedic Texts : Proceedings of The Second Comers Congress, Groningen, 1-4 July 1996 = Brill. S. In. Premodern Trade in World History = Themes World Hist Premodern Trade in World History = Themes. World Hist. Premodern Travel in World History = Themes World Hist Premodern Travel in World History = Themes. World Hist. Prenatal and Neonatal Medicine = Prenat Neonat Med Prenatal and Neonatal Medicine = Prenat. Neonat. Med. Prenatal and neonatal medicine : the international journal of basic and clinical research and practice = Prenat Neonatal Med Prenatal Diagnosis = Prenatal Diag Prenatal Diagnosis = Prenatal Diag. Prenatal diagnosis = Prenat Diagn Prenatal Diagnosis=Prenat Diagn;; Prenatal Diagnosis = Prenat. Diagn. Prensa medica argentina = Prensa Med Argent Prensa Medica Argentina = Prensa Med Argent Prensa Medica Argentina = Prensa Med. Argent. Prensa Medica Mexicana = Prensa Med. Mex. Prensa pediatrica; revista americana de puericultura y pediatria = Prensa Pediatr Rev Am Puericu Pediatr Prentice Hall Advanced Reference Series : Engineering = Pr H Adv Re Prentice Hall Advanced Reference Series : Engineering = Pr. H. Adv. Re. Prentice Hall Imsc Press Multimedia Series = Pren Hal Imsc P Mult Prentice Hall Imsc Press Multimedia Series = Pren. Hal. Imsc P. Mult. Prentice Hall Information and System Sciences Series = Prentice Hall Inform. System Sci. Ser. Prentice Hall International Series in Computer Science = Prentice Hall Internat. Ser. Comput. Sci. Prentice Hall International Series in Industrial and Systems Engineering = Prentice Hall Internat. Ser. Indust. Systems Engrg. Prentice Hall Series on Environmental and Intelligent Manufacturing Systems = Prentice Hall Ser. Environ. Intell. Manuf. Syst. Preparation and Use of Food-based Dietary Guidelines = Who Tech Rep Ser Preparation and Use of Food-based Dietary Guidelines = Who. Tech. Rep. Ser. Preparation of Catalysts Vii = Stud Surf Sci Catal Preparation of Catalysts Vii = Stud. Surf. Sci. Catal. Preparation of Catalysts Vi = Stud Surf Sci Catal Preparation of Catalysts Vi = Stud. Surf. Sci. Catal. Preparation of Catalysts V = Stud Surf Sci Catal Preparation of Catalysts V = Stud. Surf. Sci. Catal. Preparation of Thin Film Pd Membranes for H2 Separation From Synthesis Gas and Detailed Design of A Permeability Testing Unit = Chem Eng Method Tech Preparation of Thin Film Pd Membranes for H2 Separation From Synthesis Gas and Detailed Design of A Permeability Testing Unit = Chem. Eng. Method. Tech. Preparative Biochemistry and Biotechnology=Prep Biochem Biotechnol;; Preparative Biochemistry and Biotechnology = Prep. Biochem. Biotechnol. Preparative Biochemistry & Biotechnology = Prep Biochem Biotech Preparative Biochemistry & Biotechnology = Prep. Biochem. Biotech. Preparative biochemistry & biotechnology = Prep Biochem Biotechnol Preparative Biochemistry & Biotechnology = Prep. Biochem. Biotechnol. Preparative biochemistry = Prep Biochem Preparative Biochemistry = Prep Biochem Preparative Biochemistry = Prep. Biochem. Preparative Layer Chromatography = Chromatogr Sci Ser Preparative Layer Chromatography = Chromatogr. Sci. Ser. Preparing for Blended E-learning = Connect E Learn Preparing for Blended E-learning = Connect. E. Learn. Preparing for Global Change: A Midwestern Perspective = Prog Biomet Preparing for Global Change: A Midwestern Perspective = Prog. Biomet. Preparing for The 2009 International Year of Astronomy: A Hands-on Symposium = Astr Soc P Preparing for The 2009 International Year of Astronomy: A Hands-on Symposium = Astr. Soc. P. Preparing for The Urban Future = W Wilson Sp Preparing for The Urban Future = W. Wilson. Sp. Preparing to Manage Wilderness in The 21st Century : Proceedings of The Conference = Usda Southe Preparing to Manage Wilderness in The 21st Century : Proceedings of The Conference = Usda. Southe. Preprint Papers - American Chemical Society, Division of Fuel Chemistry = Prepr. Pap. - Am. Chem. Soc., Div. Fuel Chem. Preprint = Preprint Preprints - American Chemical Society, Division of Petroleum Chemistry = Prepr. - Am. Chem. Soc., Div. Pet. Chem. Preprints of Extended Abstracts presented at the ACS National Meeting, American Chemical Society, Division of Environmental Chemistry = Prepr. Ext. Abstr. ACS Natl. Meet., Am. Chem. Soc., Div. Environ. Chem. Preprints of Papers - American Chemical Society, Division of Fuel Chemistry = Prepr. Pap. - Am. Chem. Soc., Div. Fuel Chem. Preprints of Symposia - American Chemical Society, Division of Fuel Chemistry = Prepr. Symp. - Am. Chem. Soc., Div. Fuel Chem. Preprosthetic and Maxillofacial Surgery: Biomaterials, Bone Grafting and Tissue Engineering = Woodhead Publ Mater Preprosthetic and Maxillofacial Surgery: Biomaterials, Bone Grafting and Tissue Engineering = Woodhead. Publ. Mater. Prépublications de l'Institut de Recherche Mathématique Avancée = Prépubl. Inst. Rech. Math. Av. Pre-raphaelite Review = Pre-raphaelite Rev Pre-raphaelite Review = Pre-raphaelite Rev. Pres'09: 12th International Conference On Process Integration, Modelling and Optimisation for Energy Saving and Pollution Reduction, Pts 1 and 2 = Chem Engineer Trans Pres'09: 12th International Conference On Process Integration, Modelling and Optimisation for Energy Saving and Pollution Reduction, Pts 1 and 2 = Chem. Engineer. Trans. Pres 2010: 13th International Conference On Process Integration, Modelling and Optimisation for Energy Saving and Pollution Reduction = Chem Engineer Trans Pres 2010: 13th International Conference On Process Integration, Modelling and Optimisation for Energy Saving and Pollution Reduction = Chem. Engineer. Trans. Presbyopia Research = Persp Vis R Presbyopia Research = Persp. Vis. R. Presbyterian-St. Luke's Hospital medical bulletin = Presbyt St Lukes Hosp Med Bull Preschool Children: Physical Activity, Behavioral Assessment and Developmental Challenges = Child Iss Laws Progr Preschool Children: Physical Activity, Behavioral Assessment and Developmental Challenges = Child. Iss. Laws. Progr. Prescribers' journal = Prescr J Prescription Drug Market = Adv Ser Manage Prescription Drug Market = Adv. Ser. Manage. Prescrire international = Prescrire Int Prescrire International = Prescrire Int Prescrire International = Prescrire Int. Presence africaine (Paris, France : 1967) = Presence Afr Presence (Cambridge, Mass.) = Presence (Camb) Presence normande = Presence Normande Presence-teleoperators and Virtual Environments = Presence-teleop Virt Presence-teleoperators and Virtual Environments = Presence-teleop. Virt. Present and Future of Collider Physics = Ital Phy So Present and Future of Collider Physics = Ital. Phy. So. Present and Future of Indoor Air Quality = Int Congr Ser Present and Future of Indoor Air Quality = Int. Congr. Ser. Present and Future Role of Monoclonal Antibodies in The Management of Cancer = Front Radiat Ther On Present and Future Role of Monoclonal Antibodies in The Management of Cancer = Front. Radiat. Ther. On. Present Situation in The Philosophy of Science = Philo Sci Eur Persp Present Situation in The Philosophy of Science = Philo. Sci. Eur. Persp. Present Status of The Quantum Theory of Light = Fund Theor Present Status of The Quantum Theory of Light = Fund. Theor. Present tense (New York, N.Y.) = Present Tense Preservation and Transmission of Anglo-saxon Culture = St Mediev C Preservation and Transmission of Anglo-saxon Culture = St. Mediev. C. Preservation of Library Materials, Vol 1 = Ifla Publ Preservation of Library Materials, Vol 1 = Ifla. Publ. Preservation of Library Materials, Vol 2 = Ifla Publ Preservation of Library Materials, Vol 2 = Ifla. Publ. Preservation of Natural Stone and Rock Weathering = Proc Monogr Eng Wate Preservation of Natural Stone and Rock Weathering = Proc. Monogr. Eng. Wate. Preservation of Random Megascale Events On Mars and Earth: Influence On Geologic History = Geol Soc Am Spec Pap Preservation of Random Megascale Events On Mars and Earth: Influence On Geologic History = Geol. Soc. Am. Spec. Pap. Preservation of Roadway Structures and Pavements = Transport Res Rec Preservation of Roadway Structures and Pavements = Transport. Res. Rec. Preservation = Preservation Preserving Astronomy's Photographic Legacy: Current State and The Future of North American Astronomical Plates = Astr Soc P Preserving Astronomy's Photographic Legacy: Current State and The Future of North American Astronomical Plates = Astr. Soc. P. Preserving Privacy in Data Outsourcing = Adv Inform Secur Preserving Privacy in Data Outsourcing = Adv. Inform. Secur. Preserving Privacy in On-line Analytical Processing (olap) = Adv Inform Secur Preserving Privacy in On-line Analytical Processing (olap) = Adv. Inform. Secur. Preserving The Astronomical Sky = Iau Symp Preserving The Astronomical Sky = Iau. Symp. Preserving The Astronomical Windows = Astr Soc P Preserving The Astronomical Windows = Astr. Soc. P. Preserving The Past, Looking to The Future = Iamslic C S Preserving The Past, Looking to The Future = Iamslic. C. S. Presidency and Rhetorical Leadership = Pres Rhetor Ser Presidency and Rhetorical Leadership = Pres. Rhetor. Ser. Presidency of Grover Cleveland = First Men Am Pres Ne Presidency of Grover Cleveland = First. Men. Am. Pres. Ne. President George W. Bushs Influence Over Bureaucracy and Policy: Extraordinary Times, Extraordinary Powers = Evol Am Presid President George W. Bushs Influence Over Bureaucracy and Policy: Extraordinary Times, Extraordinary Powers = Evol. Am. Presid. Presidential Rhetoric Series = Pres Rhetor Ser Presidential Rhetoric Series = Pres. Rhetor. Ser. Presidential studies quarterly = Pres Stud Q Preslia = Preslia Presse medicale (Paris, France : 1983) = Presse Med Presse Medicale=Presse Med;; Presse Medicale = Presse Med Presse Medicale = Presse Med. Presse Thermale et Climatique = Presse Therm. Clim. Press Freedom and Pluralism in Europe: Concepts and Conditions = Eur Commun Res Educ Press Freedom and Pluralism in Europe: Concepts and Conditions = Eur. Commun. Res. Educ. Pressure Equipment Directive = Imeche Conf Trans Pressure Equipment Directive = Imeche. Conf. Trans. Pressure Vessel and Piping Division of The American Society of Mechanical Engineers = Pres Ves P Pressure Vessel and Piping Division of The American Society of Mechanical Engineers = Pres. Ves. P. Presupposition and Implicature in Compositional Semantics = Palg Stud Pragm Lang Presupposition and Implicature in Compositional Semantics = Palg. Stud. Pragm. Lang. Presynaptic Receptors and Neuronal Transporters = Adv Biosci Presynaptic Receptors and Neuronal Transporters = Adv. Biosci. Presynaptic Receptors and The Question of Autoregulation of Neurotransmitter Release = Ann Ny Acad Sci Presynaptic Receptors and The Question of Autoregulation of Neurotransmitter Release = Ann. Ny. Acad. Sci. Pretreatment and Reclamation of Dusts, Sludges and Scales in Steel Plants = Mcmaster S Pretreatment and Reclamation of Dusts, Sludges and Scales in Steel Plants = Mcmaster. S. Preventing Bank Crises: Lessons From Recent Global Bank Failures = Edi Dev Stud Preventing Bank Crises: Lessons From Recent Global Bank Failures = Edi. Dev. Stud. Preventing chronic disease = Prev Chronic Dis Preventing Chronic Disease = Prev. Chronic. Dis. Preventing Currency Crises in Emerging Markets = Nber Conf R Preventing Currency Crises in Emerging Markets = Nber. Conf. R. Preventing Heterosexism and Homophobia = Prim Prev P Preventing Heterosexism and Homophobia = Prim. Prev. P. Preventing Hiv/ Aids in Young People: A Systematic Review of The Evidence From Developing Countries = Who Tech Rep Ser Preventing Hiv/ Aids in Young People: A Systematic Review of The Evidence From Developing Countries = Who. Tech. Rep. Ser. Preventing Juvenile Crime = Aic Conf P Preventing Juvenile Crime = Aic. Conf. P. Preventing Lethal School Violence = Adv Respons Adol Dev Preventing Lethal School Violence = Adv. Respons. Adol. Dev. Preventing Youth Suicide = Aic Conf P Preventing Youth Suicide = Aic. Conf. P. Prevention and Intervention in Childhood and Adolescence = Prev Int Ch Prevention and Intervention in Childhood and Adolescence = Prev. Int. Ch. Prevention and Management of Osteoporosis = Who Tech Rep Ser Prevention and Management of Osteoporosis = Who. Tech. Rep. Ser. Prevention and Noninvasive Therapy of Atherosclerosis = Ather Rev Prevention and Noninvasive Therapy of Atherosclerosis = Ather. Rev. Prevention and Treatment of Childhood Obesity = Ann Ny Acad Sci Prevention and Treatment of Childhood Obesity = Ann. Ny. Acad. Sci. Prevention and Treatment of Hiv Infection in Infants and Children = Ann Ny Acad Sci Prevention and Treatment of Hiv Infection in Infants and Children = Ann. Ny. Acad. Sci. Prevention, Detection and Response to Nuclear and Radiological Threats = Nato Science Peace S Prevention, Detection and Response to Nuclear and Radiological Threats = Nato. Science. Peace. S. Prevention, Detection and Response to Nuclear and Radiological Threats = Nato Sci Peace Sec B Prevention, Detection and Response to Nuclear and Radiological Threats = Nato. Sci. Peace. Sec. B. Prevention in human services = Prev Hum Serv Prevention in Human Services = Prev. Hum. Serv. Prevention of Allergy and Allergic Asthma: World Allergy Organization Project Report and Guidelines = Chem Immunol Prevention of Allergy and Allergic Asthma: World Allergy Organization Project Report and Guidelines = Chem. Immunol. Prevention of Brucellosis in The Mediterranean Countries = Ciheam Publ Prevention of Brucellosis in The Mediterranean Countries = Ciheam. Publ. Prevention of Contact Dermatitis = Curr Probl Dermatol Prevention of Contact Dermatitis = Curr. Probl. Dermatol. Prevention of Diabetes Mellitus = Who Tech Rep Ser Prevention of Diabetes Mellitus = Who. Tech. Rep. Ser. Prevention of Functional Dependency = Colloq Inst Servier Prevention of Functional Dependency = Colloq. Inst. Servier. Prevention of Hazardous Fires and Explosions = Nato Sci S 1 Disarm Prevention of Hazardous Fires and Explosions = Nato. Sci. S. 1. Disarm. Prevention of Human Rights Violations = Int Stud H Prevention of Human Rights Violations = Int. Stud. H. Prevention of Infections and The Role of Immunoglobulins in The Neonatal Period = Roy Soc Med Int Cong Prevention of Infections and The Role of Immunoglobulins in The Neonatal Period = Roy. Soc. Med. Int. Cong. Prevention of Second Primary Cancers: A Resource for Clinicians and Health Managers = Prog Exp Tumor Res Prevention of Second Primary Cancers: A Resource for Clinicians and Health Managers = Prog. Exp. Tumor. Res. Prevention of Water Pollution By Agriculture and Related Activities = Fao Water Rep Prevention of Water Pollution By Agriculture and Related Activities = Fao. Water Rep. Prevention Science = Prev Sci Prevention Science = Prev. Sci. Prevention science : the official journal of the Society for Prevention Research = Prev Sci Preventive Action Reports = Prevent Action Rep Preventive Action Reports = Prevent. Action Rep. Preventive cardiology = Prev Cardiol Preventive Cardiology = Prev. Cardiol. Preventive Cardiology, Second Edition = Contemp Cardiol Preventive Cardiology, Second Edition = Contemp. Cardiol. Preventive medicine = Prev Med Preventive Medicine=Prev Med;; Preventive Medicine = Prev Med Preventive Medicine = Prev. Med. Preventive Nutrition: The Comprehensive Guide for Health Professionals, Fourth Edition = Nutr Health Ser Preventive Nutrition: The Comprehensive Guide for Health Professionals, Fourth Edition = Nutr. Health Ser. Preventive Strategies for Living in A Chemical World = Ann Ny Acad Sci Preventive Strategies for Living in A Chemical World = Ann. Ny. Acad. Sci. Preventive veterinary medicine = Prev Vet Med Preventive Veterinary Medicine=Prev Vet Med;; Preventive Veterinary Medicine = Prev Vet Med Preventive Veterinary Medicine = Prev. Vet. Med. Prevent = Prevent Prevenzione & assistenza dentale = Prev Assist Dent Prevenzione e Assistenza Dentale = Prev. Assist. Dent. Prevenzione stomatologica = Prev Stomatol Prevenzione Stomatologica = Prev. Stomatol. Previdenza sociale = Previdenza Soc Pribes 2000: Proyecto Iberoamericano De Bioegografia Y Entomologia Sistematica = Mongr Terc Milenio Pribes 2000: Proyecto Iberoamericano De Bioegografia Y Entomologia Sistematica = Mongr. Terc. Milenio. Pribory i Tekhnika Eksperimenta = Prib. Tekh. Eksp. Pribory I Tekhnika Eksperimenta = Prib Tekh Eksp Pribory I Tekhnika Eksperimenta = Prib. Tekh. Eksp. Pricai 2004: Trends in Artificial Intelligence, Proceedings = Lect Notes Artif Int Pricai 2004: Trends in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Pricai 2006: Trends in Artificial Intelligence, Proceedings = Lect Notes Artif Int Pricai 2006: Trends in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Pricai 2008: Trends in Artificial Intelligence = Lect Notes Artif Int Pricai 2008: Trends in Artificial Intelligence = Lect. Notes. Artif. Int. Pricai 2010: Trends in Artificial Intelligence = Lect Notes Artif Int Pricai 2010: Trends in Artificial Intelligence = Lect. Notes. Artif. Int. Pricai'98: Topics in Artificial Intelligence = Lect Notes Artif Int Pricai'98: Topics in Artificial Intelligence = Lect. Notes. Artif. Int. Price Indexes in Time and Space: Methods and Practice = Contrib Stat Price Indexes in Time and Space: Methods and Practice = Contrib. Stat. Price Measurements and Their Uses = Stud Income Price Measurements and Their Uses = Stud. Income. Price of Precaution and The Ethics of Risk = Int Libr Eth Law Tec Price of Precaution and The Ethics of Risk = Int. Libr. Eth. Law. Tec. Pricing and Revenue Management of Services: A Strategic Approach = Routl Adv Manag Bus Pricing and Revenue Management of Services: A Strategic Approach = Routl. Adv. Manag. Bus. Pricing Theory, Financing of International Organisations and Monetary History = Routl Explor Econ Hi Pricing Theory, Financing of International Organisations and Monetary History = Routl. Explor. Econ. Hi. Pricm 5: The Fifth Pacific Rim International Conference On Advanced Materials and Processing, Pts 1-5 = Mater Sci Forum Pricm 5: The Fifth Pacific Rim International Conference On Advanced Materials and Processing, Pts 1-5 = Mater. Sci. Forum. Pricm 6: Sixth Pacific Rim International Conference On Advanced Materials and Processing, Pts 1-3 = Mater Sci Forum Pricm 6: Sixth Pacific Rim International Conference On Advanced Materials and Processing, Pts 1-3 = Mater. Sci. Forum. Pricm 7, Pts 1-3 = Mater Sci Forum Pricm 7, Pts 1-3 = Mater. Sci. Forum. Pride Institute journal of long term home health care = Pride Inst J Long Term Home Health Care Pride Institute Journal of Long Term Home Health Care = Pride Inst. J. Long Term Home Health Care Prikladnaia biokhimiia i mikrobiologiia = Prikl Biokhim Mikrobiol Prikladnaia Biokhimiia i Mikrobiologiia = Prikl. Biokhim. Mikrobiol. Prikladnaia Biokhimiia I Mikrobiologiia=Prikl Biokhim Mikrobiol;; Prikladnaya Biokhimiya i Mikrobiologiya = Prikl. Biokhim. Mikrobiol. Prikladnaya Matematika I Mekhanika = Prikl Mat Mekh Prikladnaya Matematika I Mekhanika = Prikl. Mat. Mekh. Prilozi Instituta za arheologiju u Zagrebu = PriloziZagreb Primality Testing and Integer Factorization in Public-key Cryptography, Second Edition = Adv Inform Secur Primality Testing and Integer Factorization in Public-key Cryptography, Second Edition = Adv. Inform. Secur. Primality Testing in Polynomial Time: From Randomized Algorithms to "primes Is in P" = Lect Notes Comput Sc Primality Testing in Polynomial Time: From Randomized Algorithms to "primes Is in P" = Lect. Notes. Comput. Sc. Primary and Secondary Eating Disorders: A Psychoneuroendocrine and Metabolic Approach = Adv Biosci Primary and Secondary Eating Disorders: A Psychoneuroendocrine and Metabolic Approach = Adv. Biosci. Primary and Secondary Education in Serbia After The Country's Independence and Before World War I = Serb Acd Sc Primary and Secondary Education in Serbia After The Country's Independence and Before World War I = Serb. Acd. Sc. Primary Angioplasty in Acute Myocardial Infarction, Second Edition = Contemp Cardiol Primary Angioplasty in Acute Myocardial Infarction, Second Edition = Contemp. Cardiol. Primary cardiology = Primary Cardiol Primary Care; Clinics In Office Practice=Prim Care;; Primary Care & Community Psychiatry = Primary Care Commun Primary Care & Community Psychiatry = Primary Care Commun. Primary care companion to the Journal of clinical psychiatry = Prim Care Companion J Clin Psychiatry Primary Care = Primary Care Primary care = Prim Care Primary Care = Prim. Care Primary Care Psychiatry = Primary Care Psychia Primary Care Psychiatry = Primary Care Psychia. Primary care respiratory journal : journal of the General Practice Airways Group = Prim Care Respir J Primary Care Sleep Medicine = Curr Clin Pract Primary Care Sleep Medicine = Curr. Clin. Pract. Primary care update for Ob/Gyns = Prim Care Update Ob Gyns Primary Central Nervous System Tumors: Pathogenesis and Therapy = Curr Clin Oncol Primary Central Nervous System Tumors: Pathogenesis and Therapy = Curr. Clin. Oncol. Primary dental care : journal of the Faculty of General Dental Practitioners (UK) = Prim Dent Care Primary Dental Care = Prim. Dent. Care Primary Health Care Publications = Prim Hlth C Primary Health Care Publications = Prim. Hlth. C. Primary Medical Therapy for Breast Cancer: Clinical and Biologic Al Aspects = Eso Sci Updates Primary Medical Therapy for Breast Cancer: Clinical and Biologic Al Aspects = Eso. Sci. Updates. Primary Optic Nerve Sheath Meningioma = Med Radiol Radiat On Primary Optic Nerve Sheath Meningioma = Med. Radiol. Radiat. On. Primary Prevention By Nutrition Intervention in Infancy and Childhood = Nestle Nutr Works Se Primary Prevention By Nutrition Intervention in Infancy and Childhood = Nestle. Nutr. Works. Se. Primary Prevention of Aids = Prim Prev P Primary Prevention of Aids = Prim. Prev. P. Primary Prevention of Psychopathology = Prim Prev P Primary Prevention of Psychopathology = Prim. Prev. P. Primary Processes of Photosynthesis, Pt 1: Principles and Apparatus = Compr Ser Photochem Primary Processes of Photosynthesis, Pt 1: Principles and Apparatus = Compr. Ser. Photochem. Primary Processes of Photosynthesis, Pt 2: Principles and Apparatus = Compr Ser Photochem Primary Processes of Photosynthesis, Pt 2: Principles and Apparatus = Compr. Ser. Photochem. Primary Productivity and Biogeochemical Cycles in The Sea = Envir Sci R Primary Productivity and Biogeochemical Cycles in The Sea = Envir. Sci. R. Primary psychiatry = Prim psychiatry Primary School in Japan: Self, Individuality and Learning in Elementary Education = Jpn Anthropol Worksh Primary School in Japan: Self, Individuality and Learning in Elementary Education = Jpn. Anthropol. Worksh. Primary sensory neuron : the international interdisciplinary journal reporting basic and clinical research on sensory receptors and primary afferent neurons = Prim Sens Neuron Primate Anti-predator Strategies = Dev Primatol-prog Pr Primate Anti-predator Strategies = Dev. Primatol-prog. Pr. Primate Endometrium = Ann Ny Acad Sci Primate Endometrium = Ann. Ny. Acad. Sci. Primate Life History and Evolution = Mg Primatol Primate Life History and Evolution = Mg. Primatol. Primate Locomotion: Linking Field and Laboratory Research = Dev Primatol-prog Pr Primate Locomotion: Linking Field and Laboratory Research = Dev. Primatol-prog. Pr. Primate Reproductive Aging: Cross-taxon Perspectives = Interdisc Topics Ger Primate Reproductive Aging: Cross-taxon Perspectives = Interdisc. Topics. Ger. Primate Reproductive Aging: Cross-taxon Perspectives = Interd Top Gerontol Primate Reproductive Aging: Cross-taxon Perspectives = Interd. Top. Gerontol. Primates in medicine = Primates Med Primates in Medicine = Primates Med. Primates; journal of primatology = Primates Primates of Gashaka: Socioecology and Conservation in Nigeria's Biodiversity Hotspot = Dev Primatol-prog Pr Primates of Gashaka: Socioecology and Conservation in Nigeria's Biodiversity Hotspot = Dev. Primatol-prog. Pr. Primates = Primates Primatologia = Primatologia Primatology Monographs = Primatol Monogr Primatology Monographs = Primatol. Monogr. Primatology: Theories, Methods and Research = Anim Sci Issues Prof Primatology: Theories, Methods and Research = Anim. Sci. Issues. Prof. Primer in Density Functional Theory = Lect Notes Phys Primer in Density Functional Theory = Lect. Notes. Phys. Primerjalna Knjizevnost = Prim Knjizev Primerjalna Knjizevnost = Prim. Knjizev. Primer of Ecology With R = Use R Primer of Ecology With R = Use. R Primer of Humor Research = Humor Res Primer of Humor Research = Humor Res. Primer On Linear Models = Ch Crc Text Stat Sci Primer On Linear Models = Ch. Crc. Text. Stat. Sci. Primer On Optimal Control Theory = Adv Des Control Primer On Optimal Control Theory = Adv. Des. Control Primes and Knots = Contemp Math Primes and Knots = Contemp. Math. Prime Series On Research and Innovation Policy in Europe = Prime Ser Res Innov Prime Series On Research and Innovation Policy in Europe = Prime Ser. Res. Innov. Primo Levi and Humanism After Auschwitz: Posthumanist Reflections = Ital Ital Am Stud Primo Levi and Humanism After Auschwitz: Posthumanist Reflections = Ital. Ital. Am. Stud. Primordial Immunity: Foundations for The Vertebrate Immune System = Ann Ny Acad Sci Primordial Immunity: Foundations for The Vertebrate Immune System = Ann. Ny. Acad. Sci. Primordial Nucleosynthesis and Evolution of Early Universe = Astrophys Space Sc L Primordial Nucleosynthesis and Evolution of Early Universe = Astrophys. Space. Sc. L. Primordial Space: The Metric Case = Space Sci Explor Pol Primordial Space: The Metric Case = Space. Sci. Explor. Pol. Primordial Universe = Les Houch S Primordial Universe = Les. Houch. S. Primum Non Nocere Today = Int Congr Ser Primum Non Nocere Today = Int. Congr. Ser. Princess Grace Irish Library = Princ Grace Princess Grace Irish Library = Princ. Grace Princess Takamatsu Symposia = Princess Takamatsu S Princess Takamatsu Symposia = Princess Takamatsu S. Princess Takamatsu symposia = Princess Takamatsu Symp Princess Takamatsu Symposia = Princess Takamatsu Symp. Princeton Economic History of The Western World = Princ Econ Hist W Wo Princeton Economic History of The Western World = Princ. Econ. Hist. W. Wo. Princeton Foundations of Contemporary Philosophy = Princ Found Cont Ph Princeton Foundations of Contemporary Philosophy = Princ. Found. Cont. Ph. Princeton Frontiers in Physics = Princ Front Phys Princeton Frontiers in Physics = Princ. Front. Phys. Princeton history = Princet Hist Princeton journal of bioethics = Princet J Bioeth Princeton Landmarks in Mathematics = Princeton Landmarks Math. Princeton Landmarks in Physics = Princeton Landmarks Phys. Princeton Mathematical Series = Princeton Math. Ser. Princeton Mathematical Series = Princ Math Ser Princeton Mathematical Series = Princ. Math. Ser. Princeton Monographs in Philosophy = Princ Monogr Philos Princeton Monographs in Philosophy = Princ. Monogr. Philos. Princeton Paperbacks = Princeton Paperbacks Princeton Papers On Architecture = Prin P Arch Princeton Papers On Architecture = Prin. P. Arch. Princeton Primers in Climate = Princ Primer Clim Princeton Primers in Climate = Princ. Primer. Clim. Princeton Readings in Religions = Princ Read Relig Princeton Readings in Religions = Princ. Read. Relig. Princeton Science Library = Princeton Sci. Lib. Princeton Science Library = Princ Sci Libr Princeton Science Library = Princ. Sci. Libr. Princeton Series in Applied Mathematics = Princet Ser Appl Mat Princeton Series in Applied Mathematics = Princet. Ser. Appl. Mat. Princeton Series in Applied Mathematics = Princ Ser Appl Math Princeton Series in Applied Mathematics = Princ. Ser. Appl. Math. Princeton Series in Astrophysics = Princeton Ser. Astrophys. Princeton Series in Astrophysics = Pr S Astrop Princeton Series in Astrophysics = Pr. S. Astrop. Princeton Series in Computer Science = Princeton Ser. Comput. Sci. Princeton Series in Finance = Princ Ser Financ Princeton Series in Finance = Princ. Ser. Financ. Princeton Series in Financial Engineering = Princ Ser Financ Eng Princeton Series in Financial Engineering = Princ. Ser. Financ. Eng. Princeton Series in Physics = Princeton Ser. Phys. Princeton Series in Physics = Pr S Phys Princeton Series in Physics = Pr. S. Phys. Princeton Series in Theoretical and Computational Biology = Princ Ser Theor Comp Princeton Series in Theoretical and Computational Biology = Princ. Ser. Theor. Comp. Princeton Studies in American Politics-historical International and Comparative = Princ Stud Am Polit Princeton Studies in American Politics-historical International and Comparative = Princ. Stud. Am. Polit. Princeton Studies in Complexity = Princ Stud Complex Princeton Studies in Complexity = Princ. Stud. Complex. Princeton Studies in Cultural Sociology = Princ Stud Cult Princeton Studies in Cultural Sociology = Princ. Stud. Cult. Princeton Studies in Culture/power/history = Prin St Cult Pow His Princeton Studies in Culture/power/history = Prin. St. Cult. Pow. His. Princeton Studies in International History and Politics = Princ Stud Int Hist Princeton Studies in International History and Politics = Princ. Stud. Int. Hist. Princeton Studies in Muslim Politics = Princ Stud Muslim Po Princeton Studies in Muslim Politics = Princ. Stud. Muslim Po. Princeton Studies in Opera = Prin Stud Opera Princeton Studies in Opera = Prin. Stud. Opera Principe de Viana / Diputacion Foral, Institucion Principe de Viana, Consejo de Cultura de Navarra = Princ Viana Principe di Viana = PrincViana Principle of Least Action in Geometry and Dynamics = Lect Notes Math Principle of Least Action in Geometry and Dynamics = Lect. Notes. Math. Principle of Respect for Human Dignity = Co Sci Tech Democ Principle of Respect for Human Dignity = Co. Sci. Tech. Democ. Principles and Applications of Density Functional Theory in Inorganic Chemistry I = Struct Bond Principles and Applications of Density Functional Theory in Inorganic Chemistry I = Struct. Bond. Principles and Applications of Density in Inorganic Chemistry Ii = Struct Bond Principles and Applications of Density in Inorganic Chemistry Ii = Struct. Bond. Principles and Methods for Accelerated Catalyst Design and Testing = Nato Sci Ser Ii-math Principles and Methods for Accelerated Catalyst Design and Testing = Nato. Sci. Ser. Ii-math. Principles and Methods for Accelerated Catalyst Design and Testing = Nato Sci Ser Ii Math Principles and Methods for Accelerated Catalyst Design and Testing = Nato. Sci. Ser. Ii. Math. Principles and Methods for The Risk Assessment of Chemicals in Food = Environ Health Crite Principles and Methods for The Risk Assessment of Chemicals in Food = Environ. Health. Crite. Principles and Perspectives in Cosmochemistry = Astrophysics Space Principles and Perspectives in Cosmochemistry = Astrophysics. Space. Principles and Political Order: The Challenge of Diversity = Routl Innov Polit Th Principles and Political Order: The Challenge of Diversity = Routl. Innov. Polit. Th. Principles and Practice of Cancer Infectious Diseases = Curr Clin Oncol Principles and Practice of Cancer Infectious Diseases = Curr. Clin. Oncol. Principles and Practice of Constraint Programming - Cp 2003, Proceedings = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 2003, Proceedings = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp 2004, Proceedings = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 2004, Proceedings = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp 2005, Proceedings = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 2005, Proceedings = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp 2006 = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 2006 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp 2007 = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 2007 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming-cp 2010 = Lect Notes Comput Sc Principles and Practice of Constraint Programming-cp 2010 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp 97 = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp 97 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming - Cp98 = Lect Notes Comput Sc Principles and Practice of Constraint Programming - Cp98 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming-cp'99 = Lect Notes Comput Sc Principles and Practice of Constraint Programming-cp'99 = Lect. Notes. Comput. Sc. Principles and Practice of Constraint Programming = Lect Notes Comput Sc Principles and Practice of Constraint Programming = Lect. Notes. Comput. Sc. Principles and Practice of Declarative Programming, Proceedings = Lect Notes Comput Sc Principles and Practice of Declarative Programming, Proceedings = Lect. Notes. Comput. Sc. Principles and Practice of Method Validation = Roy Soc Ch Principles and Practice of Method Validation = Roy. Soc. Ch. Principles and Practice of Semantic Web Reasoning = Lect Notes Comput Sc Principles and Practice of Semantic Web Reasoning = Lect. Notes. Comput. Sc. Principles and Practice of Semantic Web Reasoning, Proceedings = Lect Notes Comput Sc Principles and Practice of Semantic Web Reasoning, Proceedings = Lect. Notes. Comput. Sc. Principles and Practice of Testing in Construction = Test Constr Principles and Practice of Testing in Construction = Test. Constr. Principles and Practice = Princ Pract Principles and Practice = Princ. Pract. Principles and Practice = Prin Pract Principles and Practice = Prin. Pract. Principles and Processes for Evaluating Endocrine Disruption in Sildlife = Setac Tech Publicat Principles and Processes for Evaluating Endocrine Disruption in Sildlife = Setac. Tech. Publicat. Principles and Theory for Data Mining and Machine Learning = Springer Ser Stat Principles and Theory for Data Mining and Machine Learning = Springer. Ser. Stat. Principles for Modelling Dose-response for The Risk Assessment of Chemicals = Environ Health Crite Principles for Modelling Dose-response for The Risk Assessment of Chemicals = Environ. Health. Crite. Principles of Anticancer Drug Development = Cancer Drug Discov D Principles of Anticancer Drug Development = Cancer. Drug Discov. D. Principles of Astronomical Telescope Design = Astrophys Space Sc L Principles of Astronomical Telescope Design = Astrophys. Space. Sc. L. Principles of Biomechanics = Mech Eng Ser Txb Ref Principles of Biomechanics = Mech. Eng. Ser. Txb. Ref. Principles of Biomedical Engineering = Eng Med Biol Principles of Biomedical Engineering = Eng. Med. Biol. Principles of Chemoprevention = Iarc Sci Publ Principles of Chemoprevention = Iarc. Sci. Publ. Principles of Data Mining and Knowledge Discovery = Lect Notes Artif Int Principles of Data Mining and Knowledge Discovery = Lect. Notes. Artif. Int. Principles of Distributed Systems, 12th International Conference, Opodis 2008 = Lect Notes Comput Sc Principles of Distributed Systems, 12th International Conference, Opodis 2008 = Lect. Notes. Comput. Sc. Principles of Distributed Systems = Lect Notes Comput Sc Principles of Distributed Systems = Lect. Notes. Comput. Sc. Principles of Distributed Systems, Proceedings = Lect Notes Comput Sc Principles of Distributed Systems, Proceedings = Lect. Notes. Comput. Sc. Principles of Document Processing = Lect Notes Comput Sc Principles of Document Processing = Lect. Notes. Comput. Sc. Principles of Electronic Prescribing = Health Inform Ser Principles of Electronic Prescribing = Health. Inform. Ser. Principles of Evolution: From The Planck Epoch to Complex Multicellular Life = Front Collect Principles of Evolution: From The Planck Epoch to Complex Multicellular Life = Front. Collect. Principles of Food Sanitation, Fifth Edition = Food Sci Text Ser Principles of Food Sanitation, Fifth Edition = Food Sci. Text. Ser. Principles of Gnss, Inertial, and Multisensor Integrated Navigation Systems = Artech Hse Gnss Tech Principles of Gnss, Inertial, and Multisensor Integrated Navigation Systems = Artech. Hse. Gnss. Tech. Principles of Harmonic Analysis = Universitext Principles of Harmonic Analysis = Universitext. Principles of Health Interoperability Hl7 and Snomed = Health Inform Ser Principles of Health Interoperability Hl7 and Snomed = Health Inform. Ser. Principles of Inventory Management: When You Are Down to Four, Order More = Springer Ser Oper Re Principles of Inventory Management: When You Are Down to Four, Order More = Springer. Ser. Oper. Re. Principles of Knowledge Representation and Reasoning: Proceedings of The Fifth International Conference (kr '96) = Mor Kauf R Principles of Knowledge Representation and Reasoning: Proceedings of The Fifth International Conference (kr '96) = Mor. Kauf. R. Principles of Knowledge Representation and Reasoning: Proceedings of The Fourth International Conference (kr '94) = Mor Kauf R Principles of Knowledge Representation and Reasoning: Proceedings of The Fourth International Conference (kr '94) = Mor. Kauf. R. Principles of Mathematics in Operations Research = Int Ser Oper Res Man Principles of Mathematics in Operations Research = Int. Ser. Oper. Res. Man. Principles of Microbiological Troubleshooting in The Industrial Food Processing Environment = Food Microbiol Food Principles of Microbiological Troubleshooting in The Industrial Food Processing Environment = Food Microbiol. Food Principles of Nanomagnetism = Nanosci Technol Principles of Nanomagnetism = Nanosci. Technol. Principles of Nanophotonics = Ser Opt Optoelectron Principles of Nanophotonics = Ser. Opt. Optoelectron. Principles of Network Economics = Lect Notes Econ Math Principles of Network Economics = Lect. Notes. Econ. Math. Principles of Neuropsychological Assessment With Hispanics: Theoretical Foundations and Clinical Practice = Issues Divers Clin N Principles of Neuropsychological Assessment With Hispanics: Theoretical Foundations and Clinical Practice = Issues. Divers. Clin. N. Principles of Nonparametric Learning = Cism Cour L Principles of Nonparametric Learning = Cism. Cour. L. Principles of Nonparametric Learning = Cism Courses Lect Principles of Nonparametric Learning = Cism. Courses. Lect. Principles of Practice in Multi-agent Systems = Lect Notes Artif Int Principles of Practice in Multi-agent Systems = Lect. Notes. Artif. Int. Principles of Sonar Performance Modeling = Springer-prax Books Principles of Sonar Performance Modeling = Springer-prax. Books. Principles of Stellar Interferometry = Astron Astrophys Lib Principles of Stellar Interferometry = Astron. Astrophys. Lib. Principles, Systems and Applications of Ip Telecommunications = Lect Notes Comput Sc Principles, Systems and Applications of Ip Telecommunications = Lect. Notes. Comput. Sc. Printed Biomaterials: Novel Processing and Modeling Techniques for Medicine and Surgery = Biol Med Phys Biomed Printed Biomaterials: Novel Processing and Modeling Techniques for Medicine and Surgery = Biol. Med. Phys. Biomed. Printed Circuit Board 90, Vols 1 and 2 = Vdi Bericht Printed Circuit Board 90, Vols 1 and 2 = Vdi. Bericht. Printing and Packaging Study = Adv Mater Res-switz Printing and Packaging Study = Adv. Mater. Res-switz. Printing Technologies for Images, Gray Scale, and Color = P Soc Photo-opt Ins Printing Technologies for Images, Gray Scale, and Color = P. Soc. Photo-opt. Ins. Printing The Middle Ages = Mater Texts Printing The Middle Ages = Mater. Texts. Print quarterly = Print Q Print Quarterly = Print Q Print Quarterly = Print Q. Print Review = Print Rev Print Review = Print Rev. Prinz-albert-forschungen = Prinz-albert-forsch Prinz-albert-forschungen = Prinz-albert-forsch. Prinz Albert Studien = Prinz Albert Stud Prinz Albert Studien = Prinz Albert Stud. Prio Monographs = Prio Monog Prio Monographs = Prio Monog. Prion Diseases of Humans and Animals = E H S Neuro Prion Diseases of Humans and Animals = E. H. S. Neuro. Prio New Security Studies = Prio New Secur Stud Prio New Security Studies = Prio New Secur. Stud. Prion = Prion Prions and Brain Diseases in Animals and Humans = Nato Adv Sci I A-lif Prions and Brain Diseases in Animals and Humans = Nato. Adv. Sci. I. A-lif. Prions Prions Prions = Curr Top Microbiol Prions Prions Prions = Curr. Top. Microbiol. Priorities in Development Economics = Priorities Devel Eco Priorities in Development Economics = Priorities Devel. Eco. Priroda, clovek in zdravje = Prir Clovek Zdravje Priroda (Moscow) = Priroda (Moscow) Priroda = Priroda Prirodno-Matematichki Fakultet na Univerzitetot "Sv = Prirod.-Mat. Fak. Univ. Kiril Metodij Skopje Godishen Zb. Prism International = Prism Int Prism International = Prism Int. Prism = Prism Prison Journal = Prison J Prison Journal = Prison J. Prison Labor in The United States: An Economic Analysis = New Polit Econ Ser Prison Labor in The United States: An Economic Analysis = New. Polit. Econ. Ser. Privacy and Anonymity in Information Management Systems = Adv Inform Knowl Pro Privacy and Anonymity in Information Management Systems = Adv. Inform. Knowl. Pro. Privacy and Identity Protection = Priv Identity Prot Privacy and Identity Protection = Priv. Identity Prot. Privacy Enhancing Technologies = Lect Notes Comput Sc Privacy Enhancing Technologies = Lect. Notes. Comput. Sc. Privacy Enhancing Technologies, Proceedings = Lect Notes Comput Sc Privacy Enhancing Technologies, Proceedings = Lect. Notes. Comput. Sc. Privacy in Location-based Applications = Lect Notes Comput Sc Privacy in Location-based Applications = Lect. Notes. Comput. Sc. Privacy in Statistical Databases = Lect Notes Comput Sc Privacy in Statistical Databases = Lect. Notes. Comput. Sc. Privacy in Statistical Databases, Proceedings = Ann Ny Acad Sci Privacy in Statistical Databases, Proceedings = Ann. Ny. Acad. Sci. Privacy in Statistical Databases, Proceedings = Lect Notes Comput Sc Privacy in Statistical Databases, Proceedings = Lect. Notes. Comput. Sc. Privacy-preserving Data Mining: Models and Algorithms = Adv Database Syst Privacy-preserving Data Mining: Models and Algorithms = Adv. Database. Syst. Privacy, Security, and Trust in Kdd = Lect Notes Comput Sc Privacy, Security, and Trust in Kdd = Lect. Notes. Comput. Sc. Privacy, Security and Trust Within The Context of Pervasive Computing = Kluwer Int Ser Eng C Privacy, Security and Trust Within The Context of Pervasive Computing = Kluwer. Int. Ser. Eng. C. Private and Public Voices in Victorian Poetry = Stud Eng & Compa Lit Private and Public Voices in Victorian Poetry = Stud. Eng. &. Compa. Lit. Private Contractors and The Reconstruction of Iraq: Transforming Military Logistics = Contemp Secur Stud Private Contractors and The Reconstruction of Iraq: Transforming Military Logistics = Contemp. Secur. Stud. Private Enterprises and Chinas Economic Development = Routledge Stud Growt Private Enterprises and Chinas Economic Development = Routledge. Stud. Growt. Private Military and Security Companies: Ethics, Policies and Civil-military Relations = Cass Military Studie Private Military and Security Companies: Ethics, Policies and Civil-military Relations = Cass. Military Studie. Private Military and Security Companies: Ethics, Policies and Civil-military Relations = Cass Mil Stud Private Military and Security Companies: Ethics, Policies and Civil-military Relations = Cass. Mil. Stud. Private Pensions Series = Priv Pens S Private Pensions Series = Priv. Pens. S. Private practice = Priv Pact Private Sector and Community Involvement in The Criminal Justice System = Aic Conf P Private Sector and Community Involvement in The Criminal Justice System = Aic. Conf. P. Private Sphere: An Emotional Territory and Its Agent = Philos Stud Contemp Private Sphere: An Emotional Territory and Its Agent = Philos. Stud. Contemp. Privatisation and Financial Collapse in The Nuclear Industry = Routl Stud Bus Organ Privatisation and Financial Collapse in The Nuclear Industry = Routl. Stud. Bus. Organ. Privatisation, Competition and Regulation = Oecd Proc Privatisation, Competition and Regulation = Oecd. Proc. Privatization and Deregulation of Transport = Studies Regulat Privatization and Deregulation of Transport = Studies. Regulat. Privatization and Market Development: Global Movements in Public Policy Ideas = Monash Stud Glob Mov Privatization and Market Development: Global Movements in Public Policy Ideas = Monash. Stud. Glob. Mov. Privatization and State-owned Enterprises = Roch Stud E Privatization and State-owned Enterprises = Roch. Stud. E. Privatization At The End of The Century = Pub Egon Sohmen Fdn Privatization At The End of The Century = Pub. Egon. Sohmen. Fdn. Privatization in Malaysia: Regulation, Rent-seeking and Policy Failure = Rout Malays Stud Ser Privatization in Malaysia: Regulation, Rent-seeking and Policy Failure = Rout. Malays. Stud. Ser. Privatization in Transition Economies: The Ongoing Story = Contemp Stud Econ Fi Privatization in Transition Economies: The Ongoing Story = Contemp. Stud. Econ. Fi. PRN forum = PRN Forum PRN Forum = PRN Forum Pro Austria Romana = AustrRom Probabilistic and Statistical Aspects of Quantum Theory = Quad Sc Norm Super Probabilistic and Statistical Aspects of Quantum Theory = Quad. Sc. Norm. Super. Probabilistic and Statistical Methodes in Cryptology: Introduction By Selected Topics = Lect Notes Comput Sc Probabilistic and Statistical Methodes in Cryptology: Introduction By Selected Topics = Lect. Notes. Comput. Sc. Probabilistic and Stochastic Methods in Analysis, With Applications = Nato Adv Sci I C-mat Probabilistic and Stochastic Methods in Analysis, With Applications = Nato. Adv. Sci. I. C-mat. Probabilistic Approach to Geometry = Adv Stu P M Probabilistic Approach to Geometry = Adv. Stu. P. M. Probabilistic Aspects of Life Prediction = Am Soc Test Mater Probabilistic Aspects of Life Prediction = Am. Soc. Test. Mater. Probabilistic Engineering Mechanics = Probab. Eng. Mech. Probabilistic Engineering Mechanics = Probabilist Eng Mech Probabilistic Engineering Mechanics = Probabilist. Eng. Mech. Probabilistic Methods in Discrete Mathematics = Prog Pur Ap Discr M Probabilistic Methods in Discrete Mathematics = Prog. Pur. Ap. Discr. M. Probabilistic Methods in Fatigue and Fracture = Key Eng Mat Probabilistic Methods in Fatigue and Fracture = Key. Eng. Mat. Probabilistic Methods in Geotechnical Engineering = Cism Courses Lect Probabilistic Methods in Geotechnical Engineering = Cism. Courses. Lect. Probabilistic Methods in Quantum Field Theory and Quantum Gravity = Nato Adv Sci I B-phy Probabilistic Methods in Quantum Field Theory and Quantum Gravity = Nato. Adv. Sci. I. B-phy. Probabilistic Models of The Brain: Perception and Neural Function = Neu Inf Pro Probabilistic Models of The Brain: Perception and Neural Function = Neu. Inf. Pro. Probabilistic Models of The Brain: Perception and Neural Function = Neural Inf Process S Probabilistic Models of The Brain: Perception and Neural Function = Neural Inf. Process. S. Probabilistic Reasoning and Decision Making in Sensory-motor Systems = Springer Trac Adv Ro Probabilistic Reasoning and Decision Making in Sensory-motor Systems = Springer. Trac. Adv. Ro. Probabilities and Materials = Nato Adv Sci I E-app Probabilities and Materials = Nato. Adv. Sci. I. E-app. Probabilities and Materials = Nato Adv Sci Inst Se Probabilities and Materials = Nato. Adv. Sci. Inst. Se. Probability and its Applications = Probab. Appl. Probability and Its Applications Series = Probab Appl Ser Probability and Its Applications Series = Probab. Appl. Ser. Probability and Mathematical Physics: A Volume in Honor of Stanislav Molchanov = Crm Proc & Lect Note Probability and Mathematical Physics: A Volume in Honor of Stanislav Molchanov = Crm. Proc. &. Lect. Note. Probability and Mathematical Statistics = Probab. Math. Statist. Probability and Partial Differential Equations in Modern Applied Mathematics = Ima V Math Probability and Partial Differential Equations in Modern Applied Mathematics = Ima. V. Math. Probability and Phase Transition = Nato Adv Sci Inst Se Probability and Phase Transition = Nato. Adv. Sci. Inst. Se. Probability and Stochastics = Grad Texts Math Probability and Stochastics = Grad. Texts. Math. Probability and Stochastics Series = Probab. Stochastics Ser. Probability and Stochastics Series = Prob Stoch Ser Probability and Stochastics Series = Prob. Stoch. Ser. Probability for Statistics and Machine Learning: Fundamentals and Advanced Topics = Springer Texts Stat Probability for Statistics and Machine Learning: Fundamentals and Advanced Topics = Springer. Texts. Stat. Probability in Banach Spaces, 8 : Proceedings of The Eighth International Conference = Prog Probab Probability in Banach Spaces, 8 : Proceedings of The Eighth International Conference = Prog. Probab. Probability in Banach Spaces, 9 = Prog Probab Probability in Banach Spaces, 9 = Prog. Probab. Probability in The Engineering and Informational Sciences = Probab Eng Inform Sc Probability in The Engineering and Informational Sciences = Probab. Eng. Inform. Sc. Probability in the Engineering and Informational Sciences = Probab. Eng. Inf. Sci. Probability in the Engineering and Informational Sciences = Probab. Engrg. Inform. Sci. Probability Models for Dna Sequence Evolution, Second Edition = Probab Appl Ser Probability Models for Dna Sequence Evolution, Second Edition = Probab. Appl. Ser. Probability Models in Operations Research = Oper Res Ser Probability Models in Operations Research = Oper. Res. Ser. Probability : Pure and Applied = Prob Pur Ap Probability : Pure and Applied = Prob. Pur. Ap. Probability Theory and Related Fields = Probab Theory Rel Probability Theory and Related Fields = Probab. Theory Rel. Probability Theory and Related Fields = Probab. Theory Related Fields Probamat-21st Century: Probabilities and Materials = Nato Asi 3 High Tech Probamat-21st Century: Probabilities and Materials = Nato. Asi. 3. High. Tech. Probastat '06 = Tatra Mt Math Publ Probastat '06 = Tatra. Mt. Math. Publ. Probate and property (Chicago, Ill. : 1987) = Probate Prop Probate law journal / National College of Probate Judges and Boston University School of Law = Probate Law J Probe (Ottawa, Ont.) = Probe Probe = Probe Probe = Probe (Adelaide) Probility and Real Trees = Lect Notes Math Probility and Real Trees = Lect. Notes. Math. Probing Bioactive Mechanisms = Acs Sym Ser Probing Bioactive Mechanisms = Acs. Sym. Ser. Probing Experience = Philips Res Book Ser Probing Experience = Philips. Res. Book. Ser. Probing Mechanics At Nanoscale Dimensions = Mater Res Soc Symp P Probing Mechanics At Nanoscale Dimensions = Mater. Res. Soc. Symp. P. Probing of Proteins By Metal Ions and Their Low-molecular-weight Complexes = Met Ions Biol Syst Probing of Proteins By Metal Ions and Their Low-molecular-weight Complexes = Met. Ions Biol. Syst. Probing Stellar Populations Out to The Distant Universe = Aip Conf Proc Probing Stellar Populations Out to The Distant Universe = Aip. Conf. Proc. Probing The Physics of Active Galactic Nuclei By Multiwavelength Monitoring, Proceedings = Astr Soc P Probing The Physics of Active Galactic Nuclei By Multiwavelength Monitoring, Proceedings = Astr. Soc. P. Probing The Quantum Vacuum = Springer Tr Mod Phys Probing The Quantum Vacuum = Springer. Tr. Mod. Phys. Probing The Standard Model of Particle Interactions, Parts I and Ii = Les Houch S Probing The Standard Model of Particle Interactions, Parts I and Ii = Les. Houch. S. Probiotics: From Bench to Market = Ann Ny Acad Sci Probiotics: From Bench to Market = Ann. Ny. Acad. Sci. Problemas del Desarrollo=Prob. Desarrollo Problemas del desarrollo = Probl Desarro Problemas Del Desarrollo = Probl Desarrollo Problemas Del Desarrollo = Probl. Desarrollo Problem Books in Mathematics = Probl Books Math Problem Books in Mathematics = Probl. Books Math. Problem Books in Mathematics = Problem Books in Math. Probleme de cardiologie = Probl Cardiol Probleme de terapeutica = Probl Ter Probleme de tuberculoza = Probl Tuberculoza Problemes actuels d'endocrinologie et de nutrition = Probl Actuels Endocrinol Nutr Problemes Actuels d'Endocrinologie et de Nutrition = Probl. Actuels Endocrinol. Nutr. Problemes actuels d'oto-rhino-laryngologie = Probl Actuels Otorhinolaryngol Problemes Actuels d Oto-Rhino-Laryngologie = Probl. Actuels Otorhinolaryngol. Problemes d'Amerique latine = Probl Am Lat Problèmes de Mathématiques = Probl. Math. Écrit CAPES 1991--1996 Problemes D'histoire Des Religions = Prob Hist R Problemes D'histoire Des Religions = Prob. Hist. R. Problemes economiques = Probl Econ Probleme. Symposien aktueller therapeutischer = Probl Symp Aktuell Ther Problemi na geografiiata = Probl Geogr Problemi na izkustvoto. Trimesecno spisanie za estetika, teorija, istorija i kritika na izkustvoto = ProblIsk Problemi na khigienata = Probl Khig Problemi na Khigienata = Probl. Khig. Problemi Na Khigienata=Probl Khig;; Problemi na onkologiiata = Probl Onkol Problemi na Tekhnicheskata Kibernetika i Robotikata = Problemi Tekhn. Kibernet. Robot. Problem of Assessment in Art and Design = Read Art Des Edu Problem of Assessment in Art and Design = Read. Art Des. Edu. Problem of Evil in Ealry Modern Philosophy = Toronto St Philos Problem of Evil in Ealry Modern Philosophy = Toronto. St. Philos. Problem of Forming Social Capital: Why Trust = Polit Evol Inst Chan Problem of Forming Social Capital: Why Trust = Polit. Evol. Inst. Chan. Problem of Reductionism in Science = Episteme Problem of Reductionism in Science = Episteme. Problem of Refugees in The Light of Contemporary International Law Issues = Nijhoff Law Spec Problem of Refugees in The Light of Contemporary International Law Issues = Nijhoff. Law Spec. Problem of Ritual = Sc Inst Don Problem of Ritual = Sc. Inst. Don. Problemos = Problemos Problems and Interventions in Literacy Development = Neurops Cog Problems and Interventions in Literacy Development = Neurops. Cog. Problems and Methods in Mathematical Physics = Oper Theor Problems and Methods in Mathematical Physics = Oper. Theor. Problems and Methods in Mathematical Physics = Oper Theory Adv Appl Problems and Methods in Mathematical Physics = Oper. Theory. Adv. Appl. Problems and Methods of Historical Analysis of Notarial Activity ( 15th-19th Centuries ) = Hist Notar Problems and Methods of Historical Analysis of Notarial Activity ( 15th-19th Centuries ) = Hist. Notar. Problems and Methods of The Lexicography of Quebec French = Ciral Publ Problems and Methods of The Lexicography of Quebec French = Ciral. Publ. Problems and Theorems in Classical Set Theory = Probl Books Math Problems and Theorems in Classical Set Theory = Probl. Books. Math. Problems in Editing = Beih Editio Problems in Editing = Beih. Editio. Problems in General Surgery = Probl Gen Surg Problems in General Surgery = Probl. Gen. Surg. Problems in Method and Theory in Social History : The Pittsburg Center Series = Probl Meth Problems in Method and Theory in Social History : The Pittsburg Center Series = Probl. Meth. Problems in Structural Identification and Diagnostics: General Aspects and Applications = Cism Cour L Problems in Structural Identification and Diagnostics: General Aspects and Applications = Cism. Cour. L. Problems in Structural Identification and Diagnostics: General Aspects and Applications = Cism Courses Lect Problems in Structural Identification and Diagnostics: General Aspects and Applications = Cism. Courses. Lect. Problems in veterinary medicine = Probl Vet Med Problems in Veterinary Medicine = Probl. Vet. Med. Problems Involving Change of Type = Lect Notes Phys Problems Involving Change of Type = Lect. Notes. Phys. Problems of Atomic Science and Technology = Probl Atom Sci Tech Problems of Atomic Science and Technology = Probl. Atom. Sci. Tech. Problems of Atomic Science and Technology = Probl At Sci Tech Problems of Atomic Science and Technology = Probl. At. Sci. Tech. Problems of Communism = Probl Communism Problems of Communism = Probl. Communism Problems of Control and Information Theory-problemy Upravleniya I Teorii Informatsii = Probl Control Inform Problems of Control and Information Theory-problemy Upravleniya I Teorii Informatsii = Probl. Control Inform. Problems of Drug Dependence 1989 = Nida Res Mg Problems of Drug Dependence 1989 = Nida. Res. Mg. Problems of Economics=Prob. Econ. Problems of economics = Probl Econ Problems of Economics = Probl Econ Problems of Economics = Probl. Econ. Problems of Economic Transition=Prob. Econ. Transition Problems of economic transition = Probl Econ Transit Problems of Economic Transition = Probl Econ Transit Problems of Economic Transition = Probl. Econ. Transit. Problems of hematology and blood transfusion. Problemy gematologii i perelivaniia krovi = Probl Hematol Blood Transfus Problems of High Altitude Medicine and Biology = Nato Sci Peace Sec A Problems of High Altitude Medicine and Biology = Nato. Sci. Peace. Sec. A. Problems of Industrial Psychiatric Medicine = Probl Ind P Problems of Industrial Psychiatric Medicine = Probl. Ind. P. Problems of Information Transmission = Problems Inform. Transmission Problems of Information Transmission = Probl Inform Transm+ Problems of Information Transmission = Probl. Inform. Transm+.+ Problems of Information Transmission = Probl Inf Transm Problems of Information Transmission = Probl. Inf. Transm. Problems of oncology. Voprosy onkologii = Probl Oncol Problems of Post-communism = Probl Post-communism Problems of Post-communism = Probl. Post-communism Problems of Space Science Education and The Role of Teachers = Adv Space Res Problems of Space Science Education and The Role of Teachers = Adv. Space Res. Problems of Space Science Education and The Role of Teachers = Adv Space Res-series Problems of Space Science Education and The Role of Teachers = Adv. Space Res-series. Problems of The Mixed Economy = Contrib To Econ Anal Problems of The Mixed Economy = Contrib. To. Econ. Anal. Problems of virology = Probl Virol Problems of Virology Ussr = Probl Virol Ussr Problems of Virology Ussr = Probl. Virol. Ussr Problem Solving for Wireless Sensor Networks = Comput Commun Netw S Problem Solving for Wireless Sensor Networks = Comput. Commun. Netw. S. Problem Solving in Computational Molecular Science = Nato Adv Sci I C-mat Problem Solving in Computational Molecular Science = Nato. Adv. Sci. I. C-mat. Problem-solving Methods: Understanding, Description, Development, and Reuse = Lect Notes Artif Int Problem-solving Methods: Understanding, Description, Development, and Reuse = Lect. Notes. Artif. Int. Problemy Ekorozwoju = Probl Ekorozw Problemy Ekorozwoju = Probl. Ekorozw. Problemy endokrinologii i gormonoterapii = Probl Endokrinol Gormonoter Problemy Endokrinologii i Gormonoterapii = Probl. Endokrinol. Gormonoter. Problemy endokrinologii = Probl Endokrinol (Mosk) Problemy Endokrinologii = Probl. Endokrinol. (Mosk.) Problemy gematologii i perelivaniia krovi = Probl Gematol Pereliv Krovi Problemy Gematologii i Perelivaniia Krovi = Probl. Gematol. Pereliv. Krovi Problemy istoricheskoi demografii SSSR = Probl Istor Demogr SSSR Problemy kosmicheskoi biologii = Probl Kosm Biol Problemy Kosmicheskoi Biologii=Probl Kosm Biol;; Problemy Kosmicheskoi Biologii = Probl. Kosm. Biol. Problemy medycyny wieku rozwojowego = Probl Med Wieku Rozwoj Problemy Medycyny Wieku Rozwojowego=Probl Med Wieku Rozwoj;; Problemy Medycyny Wieku Rozwojowego = Probl. Med. Wieku Rozwoj. Problemy Prochnosti = Probl. Prochn. Problemy rodziny = Probl Rodziny Problemy Severa = Probl Sev Problemy Severa = Probl. Sev. Problemy sotsial'noi gigieny i istoriia meditsiny / NII sotsial'noi gigieny, ekonomiki i upravleniia zdravookhraneniem im. N.A. Semashko RAMN ; AO "Assotsiatsiia 'Meditsinskaia literatura'." = Probl Sotsialnoi Gig Istor Med Problemy Sotsialnoi Gigieny i Istoriia Meditsiny = Probl. Sotsialnoi Gig. Istor. Med. Problemy Sotsialnoi Gigieny I Istoriia Meditsiny=Probl Sotsialnoi Gig Istor Med;; Problemy sotsial'noi gigieny, zdravookhraneniia i istorii meditsiny / NII sotsial'noi gigieny, ekonomiki i upravleniia zdravookhraneniem im. N.A. Semashko RAMN ; AO "Assotsiatsiia 'Meditsinskaia literatura'." = Probl Sotsialnoi Gig Zdravookhranenniiai Istor Med Problemy Teorii Gravitatsii i Èlementarnykh Chastits = Problemy Teor. Gravitatsii i Element. Chastits Problemy tuberkuleza i boleznei legkikh = Probl Tuberk Bolezn Legk Problemy tuberkuleza = Probl Tuberk Problemy Tuberkuleza=Probl Tuberk;; Problemy Tuberkuleza = Probl. Tuberk. Problemy Yadernoy Fiziki i Kosmicheskikh Luchey = Problemy Yadern. Fiz. i Kosm. Luchey Probus = Probus Procedia Chemistry = Procedia Chem Procedia Chemistry = Procedia Chem. Procedia Computer Science = Procedia Comput Sci Procedia Computer Science = Procedia Comput. Sci. Procedia Earth and Plantetary Science = Proced Earth Plan Sc Procedia Earth and Plantetary Science = Proced. Earth Plan. Sc. Procedia Engineering = Procedia Engineer Procedia Engineering = Procedia Engineer. Procedia in Vaccinology = Procedia Vaccinol Procedia in Vaccinology = Procedia Vaccinol. Procedia Social and Behavioral Sciences = Procd Soc Behv Procedia Social and Behavioral Sciences = Procd. Soc. Behv. Procedural Semantics for Hyperintensional Logic = Logic Epistemol Unit Procedural Semantics for Hyperintensional Logic = Logic Epistemol. Unit. Proceeding of The 11th Wseas International Conference On Computers: Computer Science and Technology, Vol 4 = Ele Com Eng Proceeding of The 11th Wseas International Conference On Computers: Computer Science and Technology, Vol 4 = Ele. Com. Eng. Proceeding of The 2002 Ieee International Workshop On Memory Technology, Design and Testing = Rec Ieee Int Wkshp M Proceeding of The 2002 Ieee International Workshop On Memory Technology, Design and Testing = Rec. Ieee Int. Wkshp. M. Proceeding of The 2002 International Joint Conference On Neural Networks, Vols 1-3 = Ieee Ijcnn Proceeding of The 2002 International Joint Conference On Neural Networks, Vols 1-3 = Ieee. Ijcnn. Proceeding of The 2004 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceeding of The 2004 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceeding of The 9th International Conference On Environmental Science and Technology Vol B - Poster Presentations = Proc Int Conf Env Sc Proceeding of The 9th International Conference On Environmental Science and Technology Vol B - Poster Presentations = Proc. Int. Conf. Env. Sc. Proceeding of The Forty-sixth Annual Meeting of The Western Pharmacology Society = P W Pharmacol Soc Proceeding of The Forty-sixth Annual Meeting of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceeding of The Fourth International Congress of Nematology = Nematol Monogr Persp Proceeding of The Fourth International Congress of Nematology = Nematol. Monogr. Persp. Proceeding of The Seventh International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceeding of The Seventh International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceeding of The Tenth International Workshop On The Physics of Semiconductor Devices, Vols I and Ii = Proc Spie Proceeding of The Tenth International Workshop On The Physics of Semiconductor Devices, Vols I and Ii = Proc. Spie. Proceeding of The Tenth International Workshop On The Physics of Semiconductor Devices, Vols I and Ii = P Soc Photo-opt Ins Proceeding of The Tenth International Workshop On The Physics of Semiconductor Devices, Vols I and Ii = P. Soc. Photo-opt. Ins. Proceeding of The Third International Workshop On Models for Plant Growth and Control of The Shoot and Root Environments in Greenhouses = Acta Hortic Proceeding of The Third International Workshop On Models for Plant Growth and Control of The Shoot and Root Environments in Greenhouses = Acta. Hortic. Proceedings : 11th Annual Conference, Canadian Nuclear Society = P Can Nuc S Proceedings : 11th Annual Conference, Canadian Nuclear Society = P. Can. Nuc. S. Proceedings : 15th International Conference On Software Engineering = Proc Int Conf Softw Proceedings : 15th International Conference On Software Engineering = Proc. Int. Conf. Softw. Proceedings - 16th International Conference On Computer Communications and Networks, Vols 1-3 = Ieee Ic Comp Com Net Proceedings - 16th International Conference On Computer Communications and Networks, Vols 1-3 = Ieee. Ic. Comp. Com. Net. Proceedings : 1990 Carnahan Conference On Security Technology = Car C Secur Proceedings : 1990 Carnahan Conference On Security Technology = Car. C. Secur. Proceedings - 1991 Pulping Conference, Books 1 and 2 = P Tech As P Proceedings - 1991 Pulping Conference, Books 1 and 2 = P. Tech. As. P. Proceedings 2006 International Conference On Computer Design = Pr Ieee Comp Design Proceedings 2006 International Conference On Computer Design = Pr. Ieee. Comp. Design Proceedings : 2nd Grazing Livestock Nutrition Conference = Ok Ag Ex Mp Proceedings : 2nd Grazing Livestock Nutrition Conference = Ok. Ag. Ex. Mp. Proceedings : 30th Annual Conference, Canadian Nuclear Association = Can Nucl As Proceedings : 30th Annual Conference, Canadian Nuclear Association = Can. Nucl. As. Proceedings - 33rd Annual Conference of The Association for The Advancement of Automotive Medicine = P Ann C Ass Proceedings - 33rd Annual Conference of The Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. Proceedings - 34th Annual Conference of The American Association of Automotive Medicine = P Ann C Ass Proceedings - 34th Annual Conference of The American Association of Automotive Medicine = P. Ann. C. Ass. Proceedings - 36th Annual Conference of The Association for The Advancement of Automotive Medicine = P Ann C Ass Proceedings - 36th Annual Conference of The Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. Proceedings : 38th Annual Conference of The American Council On Consumer Interests = P Am C Cons Proceedings : 38th Annual Conference of The American Council On Consumer Interests = P. Am. C. Cons. Proceedings : a conference of the American Medical Informatics Association / ... AMIA Annual Fall Symposium. AMIA Fall Symposium = Proc AMIA Annu Fall Symp Proceedings-american Society for Testing and Materials = P Am Soc Test Mater Proceedings-american Society for Testing and Materials = P. Am. Soc. Test. Mater. Proceedings - American Society of Animal Science, Western Section, Vol 39 = Asas Ws P Proceedings - American Society of Animal Science, Western Section, Vol 39 = Asas. Ws. P. Proceedings, AMIA Annual Fall Symposium = Proc. AMIA Annu. Fall Symp. Proceedings / AMIA ... Annual Symposium. AMIA Symposium = Proc AMIA Symp Proceedings, AMIA Annual Symposium = Proc. AMIA Symp. Proceedings, AMIA Symposium = Proc. AMIA Symp. Proceedings and Addresses of The Annual Session-american Association for The Study of The Feeble-minded = P Addr Annu Sess-fee Proceedings and Addresses of The Annual Session-american Association for The Study of The Feeble-minded = P. Addr. Annu. Sess-fee. Proceedings and Addresses of The Annual Session-american Association On Mental Deficiency = P Addr Annu Sess-am Proceedings and Addresses of The Annual Session-american Association On Mental Deficiency = P. Addr. Annu. Sess-am. Proceedings and Monographs in Engineering Water and Earth Sciences = Proc Monogr Eng Wate Proceedings and Monographs in Engineering Water and Earth Sciences = Proc. Monogr. Eng. Wate. Proceedings and Monographs in Engineering, Water and Earth Sciences = Proc Monogr Eng Wate Proceedings and Monographs in Engineering, Water and Earth Sciences = Proc. Monogr. Eng. Wate. Proceedings and papers of the annual conference of the California Mosquito Control Association, inc = Proc Pap Annu Conf Calif Mosq Control Assoc Proceedings and Papers of the Annual Conference of the California Mosquito Control Association = Proc. Pap. Annu. Conf. Calif. Mosq. Control Assoc. Proceedings. Animal Care Panel (U.S.) = Proc Anim Care Panel Proceedings, Annual Conference - National Center for The Study of Collective Bargaining in Higher Education and The Professions (u.s.) Conference = P A Con Nat Proceedings, Annual Conference - National Center for The Study of Collective Bargaining in Higher Education and The Professions (u.s.) Conference = P. A. Con. Nat. Proceedings : Annual Conference of The American Council On Consumer Interests = P Am C Cons Proceedings : Annual Conference of The American Council On Consumer Interests = P. Am. C. Cons. Proceedings - Annual Conference of The Association for The Advancement of Automotive Medicine = P Ann C Ass Proceedings - Annual Conference of The Association for The Advancement of Automotive Medicine = P. Ann. C. Ass. Proceedings - Annual Ieee International Asic Conference and Exhibit = P Ieee Int Asic C&e Proceedings - Annual Ieee International Asic Conference and Exhibit = P. Ieee Int. Asic C&e. Proceedings, Annual Management Conference - American Dental Association = Proc Annu Manage Conf Am Dent Assoc Proceedings, Annual Management Conference, American Dental Association = Proc. Annu. Manage. Conf. Am. Dent. Assoc. Proceedings / Annual Meeting of the American Association for Cancer Research [and] Annual Meeting of the American Society of Clinical Oncology. American Association for Cancer Research. Meeting = Proc Annu Meet Am Assoc Cancer Res Proceedings, Annual Meeting of the Medical Section of the American Council of Life Insurance = Proc. Annu. Meet. Med. Sect. Am. Counc. Life Insur. Proceedings, annual meeting of the Medical Section of the American Life Convention = Proc Annu Meet Med Sect Am Life Conv Proceedings, Annual Meeting of the Medical Section of the American Life Convention = Proc. Annu. Meet. Med. Sect. Am. Life Conv. Proceedings, Annual Meeting of the Medical Section of the American Life Insurance Association = Proc. Annu. Meet. Med. Sect. Am. Life Insur. Assoc. Proceedings - Annual Meeting of The Microscopy Society of America = Proc Ann Meet Msa Proceedings - Annual Meeting of The Microscopy Society of America = Proc. Ann. Meet. Msa. Proceedings - Annual Meeting of The National Association of Schools of Music = P Am Natl Assoc Sch Proceedings - Annual Meeting of The National Association of Schools of Music = P. Am. Natl. Assoc. Sch. Proceedings, annual meeting of the United States Animal Health Association = Proc Annu Meet U S Anim Health Assoc Proceedings, Annual Meeting of the United States Animal Health Association = Proc. Annu. Meet. U. S. Anim. Health Assoc. Proceedings Annual Reliability and Maintainability Symposium = P Annu Rel Maint Sym Proceedings Annual Reliability and Maintainability Symposium = P. Annu. Rel. Maint. Sym. Proceedings : Annual Reliability and Maintainability Symposium = P A Rel Mai Proceedings : Annual Reliability and Maintainability Symposium = P. A. Rel. Mai. Proceedings : Annual Reliability and Maintainability Symposium = P Rel Maint S Proceedings : Annual Reliability and Maintainability Symposium = P. Rel. Maint. S. Proceedings - Annual Symposium of The Society of Flight Test Engineers = Proc Ann Symp Sfte Proceedings - Annual Symposium of The Society of Flight Test Engineers = Proc. Ann. Symp. Sfte. Proceedings, Annual Symposium on Computer Applications in Medical Care = Proc. Annu. Symp. Comput. Appl. Med. Care Proceedings Astronomical Society of Australia = P Astron Soc Aust Proceedings Astronomical Society of Australia = P. Astron. Soc. Aust. Proceedings: Australia Pacific Extension Conference = Proc Austr Pacif Ext Proceedings: Australia Pacific Extension Conference = Proc. Austr. Pacif. Ext. Proceedings (Baylor University. Medical Center) = Proc (Bayl Univ Med Cent) Proceedings. Biological sciences / The Royal Society = Proc Biol Sci Proceedings. Biological Society of Washington = Proc Biol Soc Wash Proceedings - Brighton Crop Protection Conference = Proc Brighton Crop Proceedings - Brighton Crop Protection Conference = Proc. Brighton Crop Proceedings. Canadian Cancer Conference = Proc Can Cancer Conf Proceedings - Canadian Image Processing and Pattern Recognition Society = Proc Canad Imag Proc Proceedings - Canadian Image Processing and Pattern Recognition Society = Proc. Canad. Imag. Proc. Proceedings - Canadian Information Processing Society = Graph Inter Proceedings - Canadian Information Processing Society = Graph. Inter. Proceedings. Chemical Society (Great Britain) = Proc Chem Soc Proceedings. Clinical Spinal Cord Injury Conference = Proc Annu Clin Spinal Cord Inj Conf Proceedings - Cone and Seed Pest Workshop = For Can New Proceedings - Cone and Seed Pest Workshop = For. Can. New. Proceedings: Conference On Artificial Intelligence for Applications = Pr Conf Art Int Appl Proceedings: Conference On Artificial Intelligence for Applications = Pr. Conf. Art. Int. Appl. Proceedings - Conference On Local Computer Networks = Conf Local Comput Ne Proceedings - Conference On Local Computer Networks = Conf. Local Comput. Ne. Proceedings. Consortium on Revolutionary Europe, 1750-1850 = Proc Consort Revolut Eur Proceedings - Corporate Aviation Safety Seminar = P Corp Aviat Saf Sem Proceedings - Corporate Aviation Safety Seminar = P. Corp. Aviat. Saf. Sem. Proceedings / Cvpr, Ieee Computer Society Conference On Computer Vision and Pattern Recognition = Proc Cvpr Ieee Proceedings / Cvpr, Ieee Computer Society Conference On Computer Vision and Pattern Recognition = Proc. Cvpr. Ieee Proceedings - Ecology and Management of Annual Rangelands = Usda Interm Proceedings - Ecology and Management of Annual Rangelands = Usda. Interm. Proceedings - Electrochemical Society = Proc. - Electrochem. Soc. Proceedings - Electronic Components and Technology Conference = P Electr C Proceedings - Electronic Components and Technology Conference = P. Electr. C. Proceedings Electronic Components Conference = Proc Electron Compon Proceedings Electronic Components Conference = Proc. Electron. Compon. Proceedings - Electronic Components & Technology Conference = Proc. - Electron. Compon. Conf. Proceedings Elmar-2008, Vols 1 and 2 = Monogr Cotsen Inst A Proceedings Elmar-2008, Vols 1 and 2 = Monogr. Cotsen. Inst. A. Proceeding Series of The International Atomic Energy Agency = P S Iaea Proceeding Series of The International Atomic Energy Agency = P. S. Iaea. Proceedings: Forest Vegetation Simulator Conference = Usda Interm Proceedings: Forest Vegetation Simulator Conference = Usda. Interm. Proceedings - Forty-seventh Annual Symposium On Instrumentation for The Process Industries = Ann Symp In Proceedings - Forty-seventh Annual Symposium On Instrumentation for The Process Industries = Ann. Symp. In. Proceedings, Foundation for Orthodontic Research = Proc. Found. Orthod. Res. Proceedings From The 36th Annual Meeting of The Rocky Mountain Council On Latin American Studies = Rmclas Proc Proceedings From The 36th Annual Meeting of The Rocky Mountain Council On Latin American Studies = Rmclas. Proc. Proceedings From The 37th Annual Meeting of The Rocky Mountain Council On Latin American Studies = Rmclas Proc Proceedings From The 37th Annual Meeting of The Rocky Mountain Council On Latin American Studies = Rmclas. Proc. Proceedings From The Institute for Nuclear Theory = Proc Inst Nucl Theor Proceedings From The Institute for Nuclear Theory = Proc. Inst. Nucl. Theor. Proceedings From The Research Centre for Environmental and Health Education = P Res Ctr E Proceedings From The Research Centre for Environmental and Health Education = P. Res. Ctr. E. Proceedings From The Third Workshop On Genetics of Bark Beetles and Associated Microorganisms = Us For Serv Rmrs-p Proceedings From The Third Workshop On Genetics of Bark Beetles and Associated Microorganisms = Us. For. Serv. Rmrs-p. Proceedings-frontiers in Education Conference = Proc Front Educ Conf Proceedings-frontiers in Education Conference = Proc. Front. Educ. Conf. Proceedings - Graphics Interface = Proc Graph Interf Proceedings - Graphics Interface = Proc. Graph. Interf. Proceedings - Great Lakes Symposium On Vlsi = Pr Gr Lak Symp Vlsi Proceedings - Great Lakes Symposium On Vlsi = Pr. Gr. Lak. Symp. Vlsi Proceedings - Heterogeneous Computing Workshop = Proc Heter Comp Work Proceedings - Heterogeneous Computing Workshop = Proc. Heter. Comp. Work. Proceedings Ict 07: Twenty-sixth International Conference On Thermoelectrics = Int Conf Thermoelect Proceedings Ict 07: Twenty-sixth International Conference On Thermoelectrics = Int. Conf. Thermoelect. Proceedings / IEEE Computational Systems Bioinformatics Conference, CSB. IEEE Computational Systems Bioinformatics Conference = Proc IEEE Comput Syst Bioinform Conf Proceedings - Ieee Computer Security Foundations Workshop = P Ieee Csfw Proceedings - Ieee Computer Security Foundations Workshop = P. Ieee Csfw. Proceedings / IEEE Computer Society Bioinformatics Conference. IEEE Computer Society Bioinformatics Conference = Proc IEEE Comput Soc Bioinform Conf Proceedings - Ieee Computer Society Conference On Computer Vision and Pattern Recognition = Proc Cvpr Ieee Proceedings - Ieee Computer Society Conference On Computer Vision and Pattern Recognition = Proc. Cvpr. Ieee Proceedings - Ieee International Conference On Computer Design = Pr Ieee Comp Design Proceedings - Ieee International Conference On Computer Design = Pr. Ieee Comp. Design Proceedings Ieee International Conference On Computer Design = Pr Ieee Comp Design Proceedings Ieee International Conference On Computer Design = Pr. Ieee Comp. Design Proceedings - Ieee International Conference On Software Maintenance = Proc Ieee Int Conf S Proceedings - Ieee International Conference On Software Maintenance = Proc. Ieee Int. Conf. S. Proceedings - Ieee International Forum On Research and Technology Advances in Digital Libraries = P Ieee Int Forum Res Proceedings - Ieee International Forum On Research and Technology Advances in Digital Libraries = P. Ieee Int. Forum Res. Proceedings - Ieee International Workshop On Rapid System Prototyping = P Ieee Rap Syst Prot Proceedings - Ieee International Workshop On Rapid System Prototyping = P. Ieee Rap. Syst. Prot. Proceedings: Ieee Micro Electro Mechanical Systems = Proc Ieee Micr Elect Proceedings: Ieee Micro Electro Mechanical Systems = Proc. Ieee Micr. Elect. Proceedings: Ieee Micro Electro Mechanical Systems Workshop = Proc Ieee Micr Elect Proceedings: Ieee Micro Electro Mechanical Systems Workshop = Proc. Ieee Micr. Elect. Proceedings Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Proceedings Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Proceedings, Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Proceedings, Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Proceedings - Ieee Software Engineering Standards = Proc Ieee Softw Engn Proceedings - Ieee Software Engineering Standards = Proc. Ieee Softw. Engn. Proceedings Ieee Southeastcon '98 = Ieee South Record Proceedings Ieee Southeastcon '98 = Ieee South. Record. Proceedings: Ieee Symposium On Security and Privacy = P Ieee S Secur Priv Proceedings: Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. Proceedings in Applied Mathematics and Mechanics = Proc. Appl. Math. Mech. Proceedings in Applied Mathematics = Proc Appl Math Proceedings in Applied Mathematics = Proc. Appl. Math. Proceedings - Indian Academy of Sciences, Chemical Sciences = Proc. - Indian Acad. Sci., Chem. Sci. Proceedings in Information and Communications Technology = Proc Info Commun Proceedings in Information and Communications Technology = Proc. Info. Commun. Proceedings in Marine Science = Proceed Marine Sci Proceedings in Marine Science = Proceed. Marine Sci. Proceedings in Nonlinear Science = Proc Nonlin Proceedings in Nonlinear Science = Proc. Nonlin. Proceedings : Institute of Acoustics, Vol 10, Part 5 = Proc Ins Ac Proceedings : Institute of Acoustics, Vol 10, Part 5 = Proc. Ins. Ac. Proceedings : Institute of Acoustics, Vol 11, Part 5 = Proc Ins Ac Proceedings : Institute of Acoustics, Vol 11, Part 5 = Proc. Ins. Ac. Proceedings : Institute of Acoustics, Vol 11, Pt 2 = Proc Ins Ac Proceedings : Institute of Acoustics, Vol 11, Pt 2 = Proc. Ins. Ac. Proceedings - Institute of Acoustics, Vol 17, Pt 1, 1995 = Proc Ins Ac Proceedings - Institute of Acoustics, Vol 17, Pt 1, 1995 = Proc. Ins. Ac. Proceedings : Institute of Acoustics, Vol 8, Part 7 = Proc Ins Ac Proceedings : Institute of Acoustics, Vol 8, Part 7 = Proc. Ins. Ac. Proceedings : Institute of Acoustics, Vol 9, Part 1 = Proc Ins Ac Proceedings : Institute of Acoustics, Vol 9, Part 1 = Proc. Ins. Ac. Proceedings, Intermountain Forest Nursery Association = Usda Rocky Proceedings, Intermountain Forest Nursery Association = Usda. Rocky. Proceedings, Intermountain Forest Nursery Association / = Usda Rocky Proceedings, Intermountain Forest Nursery Association / = Usda. Rocky. Proceedings - International Computer Software & Applications Conference = P Int Comp Softw App Proceedings - International Computer Software & Applications Conference = P. Int. Comp. Softw. App. Proceedings International Computer Software & Applications Conference = P Int Comp Softw App Proceedings International Computer Software & Applications Conference = P. Int. Comp. Softw. App. Proceedings - International Conference On High Performance Computing = P Int C High Perform Proceedings - International Conference On High Performance Computing = P. Int. C. High Perform. Proceedings / ... International Conference on Intelligent Systems for Molecular Biology ; ISMB. International Conference on Intelligent Systems for Molecular Biology = Proc Int Conf Intell Syst Mol Biol Proceedings, International Conference on Intelligent Systems for Molecular Biology = Proc. Int. Conf. Intell. Syst. Mol. Biol. Proceedings-international Conference On Tools With Artificial Intelligence = Proc Int C Tools Art Proceedings-international Conference On Tools With Artificial Intelligence = Proc. Int. C. Tools Art. Proceedings - International Conference On Tools With Artificial Intelligence = Proc Int C Tools Art Proceedings - International Conference On Tools With Artificial Intelligence = Proc. Int. C. Tools Art. Proceedings: International Galvanizing Conference = Proc Int Galvan Conf Proceedings: International Galvanizing Conference = Proc. Int. Galvan. Conf. Proceedings - International Symposium On Advanced Research in Asynchronous Circuits and Systems = Pr Int Symp Adv Res Proceedings - International Symposium On Advanced Research in Asynchronous Circuits and Systems = Pr. Int. Symp. Adv. Res. Proceedings International Symposium On Advanced Research in Asynchronous Circuits and Systems = Pr Int Symp Adv Res Proceedings International Symposium On Advanced Research in Asynchronous Circuits and Systems = Pr. Int. Symp. Adv. Res. Proceedings - International Symposium On Discharges and Electrical Insulation in Vacuum = P Int Symp Disch El Proceedings - International Symposium On Discharges and Electrical Insulation in Vacuum = P. Int. Symp. Disch. El. Proceedings : International Symposium On Multiple-valued Logic = Int Sym Mvl Proceedings : International Symposium On Multiple-valued Logic = Int. Sym. Mvl. Proceedings - International Symposium On System Synthesis = Proc Int Symp Syst Proceedings - International Symposium On System Synthesis = Proc. Int. Symp. Syst. Proceedings-international Workshop On Microprocessor Test and Verification = Int Workshop Micropr Proceedings-international Workshop On Microprocessor Test and Verification = Int. Workshop Micropr. Proceedings International Workshop On Microprocessor Test and Verification = Int Workshop Micropr Proceedings International Workshop On Microprocessor Test and Verification = Int. Workshop Micropr. Proceedings - International Workshop On Subalpine Stone Pints and Their Environment: The Status of Our Knowledge = Usda Interm Proceedings - International Workshop On Subalpine Stone Pints and Their Environment: The Status of Our Knowledge = Usda. Interm. Proceedings - Management and Productivity of Western-montane Forest Soils = Usda Interm Proceedings - Management and Productivity of Western-montane Forest Soils = Usda. Interm. Proceedings. National Cancer Conference = Proc Natl Cancer Conf Proceedings, National Conference on Methadone Treatment = Proc. Natl. Conf. Methadone Treat. Proceedings. National Conference on Methadone Treatment = Proc Natl Conf Methadone Treat Proceedings: National Silvicultural Workshop = Us For Serv Rmrs-p Proceedings: National Silvicultural Workshop = Us. For. Serv. Rmrs-p. Proceedings: Northeastern and Intermountain Forest and Conservation Nursery Associations = Usda Rocky Proceedings: Northeastern and Intermountain Forest and Conservation Nursery Associations = Usda. Rocky. Proceedings, Nursing Theory Conference = Proc. Nurs. Theory Conf. Proceedings. Nursing Theory Conference (University of Kansas) = Proc Nurs Theory Conf Proceedings of 1995 Ieee International Conference On Robotics and Automation, Vols 1-3 = Ieee Int Conf Robot Proceedings of 1995 Ieee International Conference On Robotics and Automation, Vols 1-3 = Ieee Int. Conf. Robot. Proceedings of 2007 10th Ieee International Conference On Computer Aided Design and Computer Graphics = Int C Comp Aid Des C Proceedings of 2007 10th Ieee International Conference On Computer Aided Design and Computer Graphics = Int. C. Comp. Aid. Des. C. Proceedings of 2007 International Conference On Management Science and Engineering Management = Manag Sci Eng Manag Proceedings of 2007 International Conference On Management Science and Engineering Management = Manag. Sci. Eng. Manag. Proceedings of 2008 Ieee International Conference On Networking, Sensing and Control, Vols 1 and 2 = Ieee Int C Netw Sens Proceedings of 2008 Ieee International Conference On Networking, Sensing and Control, Vols 1 and 2 = Ieee Int. C. Netw. Sens. Proceedings of 2008 Ieee International Symposium On Circuits and Systems, Vols 1-10 = Ieee Int Symp Circ S Proceedings of 2008 Ieee International Symposium On Circuits and Systems, Vols 1-10 = Ieee Int. Symp. Circ. S. Proceedings of 2008 International Conference On Wavelet Analysis and Pattern Recognition, Vols 1 and 2 = Int C Wavel Anal Pat Proceedings of 2008 International Conference On Wavelet Analysis and Pattern Recognition, Vols 1 and 2 = Int. C. Wavel. Anal. Pat. Proceedings of 2009 International Conference On Wavelet Analysis and Pattern Recognition = Int C Wavel Anal Pat Proceedings of 2009 International Conference On Wavelet Analysis and Pattern Recognition = Int. C. Wavel. Anal. Pat. Proceedings of 3rd Electronics Packaging Technology Conference = El Packag Tech Conf Proceedings of 3rd Electronics Packaging Technology Conference = El. Packag. Tech. Conf. Proceedings of 5th Electronics Packaging Technology Conference = El Packag Tech Conf Proceedings of 5th Electronics Packaging Technology Conference = El. Packag. Tech. Conf. Proceedings of '95 International Conference On Management Science & Engineering = Heilongj News Regist Proceedings of '95 International Conference On Management Science & Engineering = Heilongj. News. Regist. Proceedings of Aca Annual Conferences = Proc Aca Annu Conf Proceedings of Aca Annual Conferences = Proc. Aca Annu. Conf. Proceedings of Advances in Dna Sequencing Technology = P Soc Photo-opt Ins Proceedings of Advances in Dna Sequencing Technology = P. Soc. Photo-opt. Ins. Proceedings of Advances in Fluorescence Sensing Technology = P Soc Photo-opt Ins Proceedings of Advances in Fluorescence Sensing Technology = P. Soc. Photo-opt. Ins. Proceedings of An International Expert Meeting On Asbestos, Asbestosis and Cancer = People Work Res Rep Proceedings of An International Expert Meeting On Asbestos, Asbestosis and Cancer = People. Work. Res. Rep. Proceedings of An International Meeting On Solar Jets and Coronal Plumes = Esa Sp Publ Proceedings of An International Meeting On Solar Jets and Coronal Plumes = Esa. Sp. Publ. Proceedings of An International Symposium On Calcified Tissues Dental and Surgical Materials and Tissue Material Interactions = P Int Sym Cal Tiss D Proceedings of An International Symposium On Calcified Tissues Dental and Surgical Materials and Tissue Material Interactions = P. Int. Sym. Cal. Tiss. D. Proceedings of Annual International Conference of The Ieee Engineering in Medicine and Biology Society = P Ann Int Ieee Embs Proceedings of Annual International Conference of The Ieee Engineering in Medicine and Biology Society = P. Ann. Int. Ieee Embs. Proceedings of A Symposium On White Pine Provenances and Breeding = Usda Ne Exp Proceedings of A Symposium On White Pine Provenances and Breeding = Usda. Ne. Exp. Proceedings of A Workshop On Advances in Control and Its Applications = Lect Notes Contr Inf Proceedings of A Workshop On Advances in Control and Its Applications = Lect. Notes. Contr. Inf. Proceedings of A Workshop On Bark Beetle Genetics : Current Status of Research = Usda Pac Sw Proceedings of A Workshop On Bark Beetle Genetics : Current Status of Research = Usda. Pac. Sw. Proceedings of A Workshop On Bark Beetle Genetics: Current Status of Research = Us For Serv T R Pnw Proceedings of A Workshop On Bark Beetle Genetics: Current Status of Research = Us. For. Serv. T. R. Pnw. Proceedings of Biochemical and Medical Sensors = P Soc Photo-opt Ins Proceedings of Biochemical and Medical Sensors = P. Soc. Photo-opt. Ins. Proceedings of Biomedical Optoelectronic Devices and Systems = P Soc Photo-opt Ins Proceedings of Biomedical Optoelectronic Devices and Systems = P. Soc. Photo-opt. Ins. Proceedings of Biomolecular Spectroscopy Iii = P Soc Photo-opt Ins Proceedings of Biomolecular Spectroscopy Iii = P. Soc. Photo-opt. Ins. Proceedings of Clinical Applications of Modern Imaging Technology = P Soc Photo-opt Ins Proceedings of Clinical Applications of Modern Imaging Technology = P. Soc. Photo-opt. Ins. Proceedings of Colloquium in Honor of Jean-marie Souriau = Prog Math Proceedings of Colloquium in Honor of Jean-marie Souriau = Prog. Math. Proceedings of Conference 28 - International Erosion Control Association = Ieca P Conf Proceedings of Conference 28 - International Erosion Control Association = Ieca. P. Conf. Proceedings of Conference 29 - International Erosion Control Association = Ieca P Conf Proceedings of Conference 29 - International Erosion Control Association = Ieca. P. Conf. Proceedings of Conference 31 - International Erosion Control Association = Ieca P Conf Proceedings of Conference 31 - International Erosion Control Association = Ieca. P. Conf. Proceedings of Cucurbitaceae 2000 = Acta Hortic Proceedings of Cucurbitaceae 2000 = Acta. Hortic. Proceedings of Dental Applications of Lasers = P Soc Photo-opt Ins Proceedings of Dental Applications of Lasers = P. Soc. Photo-opt. Ins. Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions Iii = P Soc Photo-opt Ins Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions Iii = P. Soc. Photo-opt. Ins. Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions Ii = P Soc Photo-opt Ins Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions Ii = P. Soc. Photo-opt. Ins. Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions = P Soc Photo-opt Ins Proceedings of Diagnostic and Therapeutic Cardiovascular Interventions = P. Soc. Photo-opt. Ins. Proceedings of Ecopole 2007, Vol. 1 = Proceedings Ecopole Proceedings of Ecopole 2008, Vol 2 No 1 = Proceedings Ecopole Proceedings of Ecopole 2008, Vol 2 = Proceedings Ecopole Proceedings of Ecopole, 2009 = Proceedings Ecopole Proceedings of Ecopole, 2009 = Proceedings Ecopole. Proceedings of Ecopole 2009, Vol 3 No 2 = Proceedings Ecopole Proceedings of Ecopole = Proceedings Ecopole Proceedings of Ecopole, Vol 4, No 1 = Proceedings Ecopole Proceedings of Ecopole, Vol 4, No 1 = Proceedings Ecopole. Proceedings of Ecopole, Vol 4, No 2 = Proceedings Ecopole Proceedings of Ecopole, Vol 4, No 2 = Proceedings Ecopole. Proceedings of Electromagnetic Workshop and Meeting On The Industrial Applications of The Eddy Current Codes = Phy Sci Cec Proceedings of Electromagnetic Workshop and Meeting On The Industrial Applications of The Eddy Current Codes = Phy. Sci. Cec. Proceedings of Empd '98 - 1998 International Conference On Energy Management and Power Delivery, Vols 1 and 2 and Supplement = Ieee Conf R Proceedings of Empd '98 - 1998 International Conference On Energy Management and Power Delivery, Vols 1 and 2 and Supplement = Ieee. Conf. R. Proceedings of Essderc 2005: 35th European Solid-state Device Research Conference = Proc Eur S-state Dev Proceedings of Essderc 2005: 35th European Solid-state Device Research Conference = Proc. Eur. S-state. Dev. Proceedings of Fiber Optics Sensors in Medical Diagnostics = P Soc Photo-opt Ins Proceedings of Fiber Optics Sensors in Medical Diagnostics = P. Soc. Photo-opt. Ins. Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine Iii = P Soc Photo-opt Ins Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine Iii = P. Soc. Photo-opt. Ins. Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine Ii = P Soc Photo-opt Ins Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine Ii = P. Soc. Photo-opt. Ins. Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine = P Soc Photo-opt Ins Proceedings of Holography, Interferometry, and Optical Pattern Recognition in Biomedicine = P. Soc. Photo-opt. Ins. Proceedings of Imac-xix: A Conference On Structural Dynamics, Vols 1 and 2 = Proc Spie Proceedings of Imac-xix: A Conference On Structural Dynamics, Vols 1 and 2 = Proc. Spie. Proceedings of Imac-xix: A Conference On Structural Dynamics, Vols 1 and 2 = P Soc Photo-opt Ins Proceedings of Imac-xix: A Conference On Structural Dynamics, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Proceedings of Imac-xx: Structural Dynamics Vols I and Ii = Proc Spie Proceedings of Imac-xx: Structural Dynamics Vols I and Ii = Proc. Spie. Proceedings of Imac-xx: Structural Dynamics Vols I and Ii = P Soc Photo-opt Ins Proceedings of Imac-xx: Structural Dynamics Vols I and Ii = P. Soc. Photo-opt. Ins. Proceedings of Inds '09: Second International Workshop On Nonlinear Dynamics and Synchronization 2009 = Smrt Sys Tech Proceedings of Inds '09: Second International Workshop On Nonlinear Dynamics and Synchronization 2009 = Smrt. Sys. Tech. Proceedings of Inorganic and Nanostructured Photovoltaics = Enrgy Proced Proceedings of Inorganic and Nanostructured Photovoltaics = Enrgy. Proced. Proceedings of International Conference On Scientific Computation = Ser Appl M Proceedings of International Conference On Scientific Computation = Ser. Appl. M. Proceedings of International Meeting On Information Display = Proc Int Meet Inf Di Proceedings of International Meeting On Information Display = Proc. Int. Meet. Inf. Di. Proceedings of Issi 2009 - 12th International Conference of The International Society for Scientometrics and Informetrics, Vol 1 = Pro Int Conf Sci Inf Proceedings of Issi 2009 - 12th International Conference of The International Society for Scientometrics and Informetrics, Vol 1 = Pro. Int. Conf. Sci. Inf. Proceedings of Issi 2009 - 12th International Conference of The International Society for Scientometrics and Informetrics, Vol 2 = Pro Int Conf Sci Inf Proceedings of Issi 2009 - 12th International Conference of The International Society for Scientometrics and Informetrics, Vol 2 = Pro. Int. Conf. Sci. Inf. Proceedings of Laser Applications in Ophthalmology = P Soc Photo-opt Ins Proceedings of Laser Applications in Ophthalmology = P. Soc. Photo-opt. Ins. Proceedings of Laser Interaction With Hard and Soft Tissue = P Soc Photo-opt Ins Proceedings of Laser Interaction With Hard and Soft Tissue = P. Soc. Photo-opt. Ins. Proceedings of Lasers in Dermatology and Tissue Welding = P Soc Photo-opt Ins Proceedings of Lasers in Dermatology and Tissue Welding = P. Soc. Photo-opt. Ins. Proceedings of Lasers in Orthopedic, Dental, and Veterinary Medicine Ii = P Soc Photo-opt Ins Proceedings of Lasers in Orthopedic, Dental, and Veterinary Medicine Ii = P. Soc. Photo-opt. Ins. Proceedings of Lasers in Otolaryngology, Dermatology, and Tissue Welding = P Soc Photo-opt Ins Proceedings of Lasers in Otolaryngology, Dermatology, and Tissue Welding = P. Soc. Photo-opt. Ins. Proceedings of Lasers in Urology, Gynecology, and General Surgery = P Soc Photo-opt Ins Proceedings of Lasers in Urology, Gynecology, and General Surgery = P. Soc. Photo-opt. Ins. Proceedings of Lasers in Urology, Laparoscopy and General Surgery = P Soc Photo-opt Ins Proceedings of Lasers in Urology, Laparoscopy and General Surgery = P. Soc. Photo-opt. Ins. Proceedings of Lasers Orthopedic, Dental, and Veterinary Medicine = P Soc Photo-opt Ins Proceedings of Lasers Orthopedic, Dental, and Veterinary Medicine = P. Soc. Photo-opt. Ins. Proceedings of Laser Surgery : Advanced Characterization, Therapeutics, and Systems Iii = P Soc Photo-opt Ins Proceedings of Laser Surgery : Advanced Characterization, Therapeutics, and Systems Iii = P. Soc. Photo-opt. Ins. Proceedings of Laser Surgery : Advanced Characterization Therapeutics, and Systems Ii = P Soc Photo-opt Ins Proceedings of Laser Surgery : Advanced Characterization Therapeutics, and Systems Ii = P. Soc. Photo-opt. Ins. Proceedings of Laser-tissue Interaction Iii = P Soc Photo-opt Ins Proceedings of Laser-tissue Interaction Iii = P. Soc. Photo-opt. Ins. Proceedings of Laser-tissue Interaction Ii = P Soc Photo-opt Ins Proceedings of Laser-tissue Interaction Ii = P. Soc. Photo-opt. Ins. Proceedings of Laser-tissue Interaction Iv = P Soc Photo-opt Ins Proceedings of Laser-tissue Interaction Iv = P. Soc. Photo-opt. Ins. Proceedings of Laser-tissue Interaction = P Soc Photo-opt Ins Proceedings of Laser-tissue Interaction = P. Soc. Photo-opt. Ins. Proceedings of Light-activated Tissue Regeneration and Therapy Conference = Lect Not El Engr Proceedings of Light-activated Tissue Regeneration and Therapy Conference = Lect. Not. El. Engr. Proceedings of Low-energy Laser Effects On Biological Systems = P Soc Photo-opt Ins Proceedings of Low-energy Laser Effects On Biological Systems = P. Soc. Photo-opt. Ins. Proceedings of Lunar and Planetary Science = P Lunar Planet Sci Proceedings of Lunar and Planetary Science = P. Lunar Planet. Sci. Proceedings of Lunar and Planetary Science, Vol 21 = P Lunar Planet Sci Proceedings of Lunar and Planetary Science, Vol 21 = P. Lunar Planet. Sci. Proceedings of Lunar and Planetary Science, Vol 22 = P Lunar Planet Sci Proceedings of Lunar and Planetary Science, Vol 22 = P. Lunar Planet. Sci. Proceedings of Mascots '07: 15th International Symposium On Modeling, Analysis, and Simulation of Computer and Telecommunication Systems = I S Mod Anal Sim Com Proceedings of Mascots '07: 15th International Symposium On Modeling, Analysis, and Simulation of Computer and Telecommunication Systems = I. S. Mod. Anal. Sim. Com. Proceedings of Medical Lasers and Systems Ii = P Soc Photo-opt Ins Proceedings of Medical Lasers and Systems Ii = P. Soc. Photo-opt. Ins. Proceedings of Medical Lasers and Systems = P Soc Photo-opt Ins Proceedings of Medical Lasers and Systems = P. Soc. Photo-opt. Ins. Proceedings of Microscopy, Holography, and Interferometry in Biomedicine = P Soc Photo-opt Ins Proceedings of Microscopy, Holography, and Interferometry in Biomedicine = P. Soc. Photo-opt. Ins. Proceedings of Noise-con 96 - The 1996 National Conference On Noise Control Engineering, Vols 1 and 2 = Noise Con P Proceedings of Noise-con 96 - The 1996 National Conference On Noise Control Engineering, Vols 1 and 2 = Noise Con. P. Proceedings of Ophthalmic Technologies Iii = P Soc Photo-opt Ins Proceedings of Ophthalmic Technologies Iii = P. Soc. Photo-opt. Ins. Proceedings of Ophthalmic Technologies Ii = P Soc Photo-opt Ins Proceedings of Ophthalmic Technologies Ii = P. Soc. Photo-opt. Ins. Proceedings of Ophthalmic Technologies = P Soc Photo-opt Ins Proceedings of Ophthalmic Technologies = P. Soc. Photo-opt. Ins. Proceedings of Optical Biopsy = P Soc Photo-opt Ins Proceedings of Optical Biopsy = P. Soc. Photo-opt. Ins. Proceedings of Optical Fibers in Medicine Viii = P Soc Photo-opt Ins Proceedings of Optical Fibers in Medicine Viii = P. Soc. Photo-opt. Ins. Proceedings of Optical Fibers in Medicine Vii = P Soc Photo-opt Ins Proceedings of Optical Fibers in Medicine Vii = P. Soc. Photo-opt. Ins. Proceedings of Optical Fibers in Medicine Vi = P Soc Photo-opt Ins Proceedings of Optical Fibers in Medicine Vi = P. Soc. Photo-opt. Ins. Proceedings of Optical Fibers in Medicine V = P Soc Photo-opt Ins Proceedings of Optical Fibers in Medicine V = P. Soc. Photo-opt. Ins. Proceedings of Optical Methods for Tumor Treatment and Detection : Mechanisms and Techniques in Photodynamic Therapy Ii = P Soc Photo-opt Ins Proceedings of Optical Methods for Tumor Treatment and Detection : Mechanisms and Techniques in Photodynamic Therapy Ii = P. Soc. Photo-opt. Ins. Proceedings of Optical Methods for Tumor Treatment and Early Diagnosis : Mechanisms and Techniques = P Soc Photo-opt Ins Proceedings of Optical Methods for Tumor Treatment and Early Diagnosis : Mechanisms and Techniques = P. Soc. Photo-opt. Ins. Proceedings of Pakistan Congress of Zoology -book = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology -book = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology = P Pak Con Z Proceedings of Pakistan Congress of Zoology = P. Pak. Con. Z. Proceedings of Pakistan Congress of Zoology = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology Series = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology Series = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 10, 1990 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 10, 1990 = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 11, 1991 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 11, 1991 = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 12, 1992 = P Pak Con Z Proceedings of Pakistan Congress of Zoology, Vol 12, 1992 = P. Pak. Con. Z. Proceedings of Pakistan Congress of Zoology, Vol 13, 1993 = P Pak Con Z Proceedings of Pakistan Congress of Zoology, Vol 13, 1993 = P. Pak. Con. Z. Proceedings of Pakistan Congress of Zoology, Vol 14, 1994 = P Pak Con Z Proceedings of Pakistan Congress of Zoology, Vol 14, 1994 = P. Pak. Con. Z. Proceedings of Pakistan Congress of Zoology, Vol 15, 1995 = P Pak Con Z Proceedings of Pakistan Congress of Zoology, Vol 15, 1995 = P. Pak. Con. Z. Proceedings of Pakistan Congress of Zoology, Vol 16, 1996 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 16, 1996 = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 19, 1999 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 19, 1999 = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 21, 2001 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 21, 2001 = Proc. Pak. Cong. Zool. Proceedings of Pakistan Congress of Zoology, Vol 23, 2003 = Proc Pak Cong Zool Proceedings of Pakistan Congress of Zoology, Vol 23, 2003 = Proc. Pak. Cong. Zool. Proceedings of Photodynamic Therapy : Mechanisms Ii = P Soc Photo-opt Ins Proceedings of Photodynamic Therapy : Mechanisms Ii = P. Soc. Photo-opt. Ins. Proceedings of Photodynamic Therapy of Cancer = P Soc Photo-opt Ins Proceedings of Photodynamic Therapy of Cancer = P. Soc. Photo-opt. Ins. Proceedings of Photon Migration and Imaging in Random Media and Tissues = P Soc Photo-opt Ins Proceedings of Photon Migration and Imaging in Random Media and Tissues = P. Soc. Photo-opt. Ins. Proceedings of Physiological Imaging, Spectroscopy, and Early-detection Diagnostic Methods = P Soc Photo-opt Ins Proceedings of Physiological Imaging, Spectroscopy, and Early-detection Diagnostic Methods = P. Soc. Photo-opt. Ins. Proceedings of Quantification and Localization Using Diffuse Photons in A Highly Scattering Medium = P Soc Photo-opt Ins Proceedings of Quantification and Localization Using Diffuse Photons in A Highly Scattering Medium = P. Soc. Photo-opt. Ins. Proceedings of Rijeka School of Economics: Journal of Economics and Business=Proceed. Rijeka Sch. Econ.: J. Econ. Bus. Proceedings of Roundtable On Sentencing and Indigenous Peoples = Res Pub Pol Series Proceedings of Roundtable On Sentencing and Indigenous Peoples = Res. Pub. Pol. Series. Proceedings of Second International Conference On Sports Science and Sports Engineering = Sport Sci Sport Eng Proceedings of Second International Conference On Sports Science and Sports Engineering = Sport. Sci. Sport. Eng. Proceedings of Seminars On Linguistics 1988 : Conference On Student Research = Cirb Pub Proceedings of Seminars On Linguistics 1988 : Conference On Student Research = Cirb. Pub. Proceedings of Seventh Annual Structure in Complexity Theory Conference = Struct Compl Th Conf Proceedings of Seventh Annual Structure in Complexity Theory Conference = Struct. Compl. Th. Conf. Proceedings of Soho 12/gong (plus) 2002 On Local and Global Helioseismology: The Present and Future = Esa Spec Publ Proceedings of Soho 12/gong (plus) 2002 On Local and Global Helioseismology: The Present and Future = Esa. Spec. Publ. Proceedings of Soho 12/gong (plus) 2002 On Local and Global Helioseismology: The Present and Future = Esa Sp Publ Proceedings of Soho 12/gong (plus) 2002 On Local and Global Helioseismology: The Present and Future = Esa. Sp. Publ. Proceedings of Spie = Proc Spie Proceedings of Spie = Proc. Spie Proceedings of SPIE - The International Society for Optical Engineering = Proc. SPIE-Int. Soc. Opt. Eng. Proceedings of SPIE The International Society for Optical Engineering = Proc. SPIE Int. Soc. Opt. Eng. Proceedings of Spie-the International Society for Optical Engineering = P Soc Photo-opt Ins Proceedings of Spie-the International Society for Optical Engineering = P. Soc. Photo-opt. Ins. Proceedings of Static and Dynamic Light Scattering in Medicine and Biology = P Soc Photo-opt Ins Proceedings of Static and Dynamic Light Scattering in Medicine and Biology = P. Soc. Photo-opt. Ins. Proceedings of Symposia in Applied Mathematics = Proc Sym Ap Proceedings of Symposia in Applied Mathematics = Proc. Sym. Ap. Proceedings of Symposia in Applied Mathematics = Proc. Sympos. Appl. Math. Proceedings of Symposia in Pure Mathematics: Algebraic Geometry Seattle 2005, Vol 80, Pts 1 and 2 = P Symp Pure Math Proceedings of Symposia in Pure Mathematics: Algebraic Geometry Seattle 2005, Vol 80, Pts 1 and 2 = P. Symp. Pure Math. Proceedings of Symposia in Pure Mathematics = Proc. Sympos. Pure Math. Proceedings of Symposia in Pure Mathematics = P Symp Pure Math Proceedings of Symposia in Pure Mathematics = P. Symp. Pure Math. Proceedings of Symposium On Fire Economics, Planning and Policy: Bottom Lines = Us For Serv T R Psw Proceedings of Symposium On Fire Economics, Planning and Policy: Bottom Lines = Us. For. Serv. T. R. Psw. Proceedings of The 102nd Annual Meeting of The Florida State Horticultural Society = Proc Fl State Hortic Proceedings of The 102nd Annual Meeting of The Florida State Horticultural Society = Proc. Fl. State Hortic. Proceedings of The 104th Annual Meeting of The Florida State Horticultural Society = Proc Fl State Hortic Proceedings of The 104th Annual Meeting of The Florida State Horticultural Society = Proc. Fl. State Hortic. Proceedings of The 105th Annual Meeting of The Florida State Horticultural Society = P Fl St Hortic Soc Proceedings of The 105th Annual Meeting of The Florida State Horticultural Society = P. Fl. St. Hortic. Soc. Proceedings of The 106th Annual Meeting of The Florida State Horticultural Society = P Fl St Hortic Soc Proceedings of The 106th Annual Meeting of The Florida State Horticultural Society = P. Fl. St. Hortic. Soc. Proceedings of The 107th Annual Meeting of The Florida State Horticultural Society = P Fl St Hortic Soc Proceedings of The 107th Annual Meeting of The Florida State Horticultural Society = P. Fl. St. Hortic. Soc. Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Iii = Int Offshore Polar E Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Iii = Int. Offshore Polar E. Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Ii = Int Offshore Polar E Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Ii = Int. Offshore Polar E. Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol I = Int Offshore Polar E Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol I = Int. Offshore Polar E. Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Iv = Int Offshore Polar E Proceedings of The 10th (2000) International Offshore and Polar Engineering Conference, Vol Iv = Int. Offshore Polar E. Proceedings of The 10th Iasted International Conference On Internet and Multimedia Systems and Applications = Iasted Int Conf Inte Proceedings of The 10th Iasted International Conference On Internet and Multimedia Systems and Applications = Iasted Int. Conf. Inte. Proceedings of The 10th International Conference On Narrow Gap Semiconductors and Related Small Energy Phenomena, Physics and Applications = Ipap Conference Ser Proceedings of The 10th International Conference On Narrow Gap Semiconductors and Related Small Energy Phenomena, Physics and Applications = Ipap. Conference Ser. Proceedings of The 10th International Conference On Textures of Materials, Pts 1 and 2 - Icotom-10 = Mater Sci Forum Proceedings of The 10th International Conference On Textures of Materials, Pts 1 and 2 - Icotom-10 = Mater. Sci. Forum. Proceedings of The 10th World Congress On Pain = Prog Pain Res Manag Proceedings of The 10th World Congress On Pain = Prog. Pain Res. Manag. Proceedings of The 118th Annual Meeting of The Florida State Horticultural Society = Proc Fl State Hortic Proceedings of The 118th Annual Meeting of The Florida State Horticultural Society = Proc. Fl. State Hortic. Proceedings of The 119th Annual Meeting of The Florida State Horticultural Society = Proc Fl State Hortic Proceedings of The 119th Annual Meeting of The Florida State Horticultural Society = Proc. Fl. State Hortic. Proceedings of The 11th European Workshop of The European-microbeam-analysis-society (emas) On Modern Developments and Applications in Microbeam Analysis = Iop Conf Ser-mat Sci Proceedings of The 11th European Workshop of The European-microbeam-analysis-society (emas) On Modern Developments and Applications in Microbeam Analysis = Iop. Conf. Ser-mat. Sci. Proceedings of The 11th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2 = In C Ind Eng Eng Man Proceedings of The 11th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2 = In. C. Ind. Eng. Eng. Man. Proceedings of The 11th International Congress On Archives = Arch Int Re Proceedings of The 11th International Congress On Archives = Arch. Int. Re. Proceedings of The 11th International Modal Analysis Conference, Vols 1 and 2 = P Soc Photo-opt Ins Proceedings of The 11th International Modal Analysis Conference, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Proceedings of The 11th International Symposium On Boron, Borides and Related Compounds = Jjap Series Proceedings of The 11th International Symposium On Boron, Borides and Related Compounds = Jjap. Series. Proceedings of The 11th Wseas International Conference On Automatic Control, Modelling and Simulation = Ele Com Eng Proceedings of The 11th Wseas International Conference On Automatic Control, Modelling and Simulation = Ele. Com. Eng. Proceedings of The 11th Wseas International Conference On Circuits, Vol 1 = Ele Com Eng Proceedings of The 11th Wseas International Conference On Circuits, Vol 1 = Ele. Com. Eng. Proceedings of The 11th Wseas International Conference On Communications, Vol 3 = Ele Com Eng Proceedings of The 11th Wseas International Conference On Communications, Vol 3 = Ele. Com. Eng. Proceedings of The 11th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '09) = Ma Comput Sci Eng Proceedings of The 11th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '09) = Ma. Comput. Sci. Eng. Proceedings of The 11th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '09) = Math Comput Sci Eng Proceedings of The 11th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '09) = Math. Comput. Sci. Eng. Proceedings of The 11th Wseas International Conference On Systems, Vol 2 = Ele Com Eng Proceedings of The 11th Wseas International Conference On Systems, Vol 2 = Ele. Com. Eng. Proceedings of The 127th Colloquium of The International Astronomical Union = Iau Colloq Proceedings of The 127th Colloquium of The International Astronomical Union = Iau. Colloq. Proceedings of The 12th Australasian Database Conference, Adc 2001 = Aust Comp S Proceedings of The 12th Australasian Database Conference, Adc 2001 = Aust. Comp. S. Proceedings of The 12th Baltic Marine Biologists Symposium = Olsen Int S Proceedings of The 12th Baltic Marine Biologists Symposium = Olsen. Int. S. Proceedings of The 12th Iapr International Conference On Pattern Recognition - Conference A: Computer Vision & Image Processing = Int C Patt Recog Proceedings of The 12th Iapr International Conference On Pattern Recognition - Conference A: Computer Vision & Image Processing = Int. C. Patt. Recog. Proceedings of The 12th Iapr International Conference On Pattern Recognition, Vol Ii - Conference B: Pattern Recognition and Neural Networks = Int C Patt Recog Proceedings of The 12th Iapr International Conference On Pattern Recognition, Vol Ii - Conference B: Pattern Recognition and Neural Networks = Int. C. Patt. Recog. Proceedings of The 12th Iapr International Conference On Pattern Recognition, Vol Iii - Conference C: Signal Processing, Conference D: Parallel Computing = Int C Patt Recog Proceedings of The 12th Iapr International Conference On Pattern Recognition, Vol Iii - Conference C: Signal Processing, Conference D: Parallel Computing = Int. C. Patt. Recog. Proceedings of The 12th Iasted International Conference On Robotics and Applications = Iasted Int Conf Robo Proceedings of The 12th Iasted International Conference On Robotics and Applications = Iasted Int. Conf. Robo. Proceedings of The 12th Ieee Computer Security Foundations Workshop = P Ieee Csfw Proceedings of The 12th Ieee Computer Security Foundations Workshop = P. Ieee Csfw. Proceedings of The 12th Ieee International Conference On Fuzzy Systems, Vols 1 and 2 = Ieee Int Conf Fuzzy Proceedings of The 12th Ieee International Conference On Fuzzy Systems, Vols 1 and 2 = Ieee Int. Conf. Fuzzy Proceedings of The 12th International Conference On Distributed Computing Systems = Int Con Distr Comp S Proceedings of The 12th International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Proceedings of The 12th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2 = In C Ind Eng Eng Man Proceedings of The 12th International Conference On Industrial Engineering and Engineering Management, Vols 1 and 2 = In. C. Ind. Eng. Eng. Man. Proceedings of The 12th International Information Visualisation = Ieee Int Con Inf Vis Proceedings of The 12th International Information Visualisation = Ieee. Int. Con. Inf. Vis. Proceedings of The 12th International Modal Analysis Conference, Vols 1 and 2 = P Soc Photo-opt Ins Proceedings of The 12th International Modal Analysis Conference, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Proceedings of The 12th Wseas International Conference On Circuits = Rec Adv Electr Eng Proceedings of The 12th Wseas International Conference On Circuits = Rec. Adv. Electr. Eng. Proceedings of The 12th Wseas International Conference On Communications = Rec Adv Electr Eng Proceedings of The 12th Wseas International Conference On Communications = Rec. Adv. Electr. Eng. Proceedings of The 12th Wseas International Conference On Computers , Pts 1-3 = Rec Adv Comput Eng Proceedings of The 12th Wseas International Conference On Computers , Pts 1-3 = Rec. Adv. Comput. Eng. Proceedings of The 13th Cambridge Workshop On Cool Stars, Stellar Systems and The Sun - Proceedings, Vols 1 and 2 = Esa Spec Publ Proceedings of The 13th Cambridge Workshop On Cool Stars, Stellar Systems and The Sun - Proceedings, Vols 1 and 2 = Esa. Spec. Publ. Proceedings of The 13th Cambridge Workshop On Cool Stars, Stellar Systems and The Sun - Proceedings, Vols 1 and 2 = Esa Sp Publ Proceedings of The 13th Cambridge Workshop On Cool Stars, Stellar Systems and The Sun - Proceedings, Vols 1 and 2 = Esa. Sp. Publ. Proceedings of The 13th Iasted International Conference On Robotics and Applications/proceedings of The Iasted International Conference On Telematics = Iasted Int Conf Robo Proceedings of The 13th Iasted International Conference On Robotics and Applications/proceedings of The Iasted International Conference On Telematics = Iasted Int. Conf. Robo. Proceedings of The 13th International Conference Modern Technologies, Quality and Innovation: Modtech 2009 - New Face of Tmcr = Pr Int Conf Modtech Proceedings of The 13th International Conference Modern Technologies, Quality and Innovation: Modtech 2009 - New Face of Tmcr = Pr. Int. Conf. Modtech Proceedings of The 13th International Conference On Defects in Insulating Materials - Icdim 96 = Mater Sci Forum Proceedings of The 13th International Conference On Defects in Insulating Materials - Icdim 96 = Mater. Sci. Forum. Proceedings of The 13th International Conference On Industrial Engineering and Engineering Management, Vols 1-5 = In C Ind Eng Eng Man Proceedings of The 13th International Conference On Industrial Engineering and Engineering Management, Vols 1-5 = In. C. Ind. Eng. Eng. Man. Proceedings of The 13th International Modal Analysis Conference, Vols 1 and 2 = P Soc Photo-opt Ins Proceedings of The 13th International Modal Analysis Conference, Vols 1 and 2 = P. Soc. Photo-opt. Ins. Proceedings of The 13th International Symposium On Trichoptera = Zoosymposia Proceedings of The 13th International Symposium On Trichoptera = Zoosymposia. Proceedings of The 13th Paul D. Converse Symposium = Amer Mar As Proceedings of The 13th Paul D. Converse Symposium = Amer. Mar. As. Proceedings of The 13th Wseas International Conference On Communications = Rec Adv Electr Eng Proceedings of The 13th Wseas International Conference On Communications = Rec. Adv. Electr. Eng. Proceedings of The 13th Wseas International Conference On Computers = Rec Adv Comput Eng Proceedings of The 13th Wseas International Conference On Computers = Rec. Adv. Comput. Eng. Proceedings of The 13th Wseas International Conference On Systems = Math Comput Sci Eng Proceedings of The 13th Wseas International Conference On Systems = Math. Comput. Sci. Eng. Proceedings of The 14th International Conference On Distributed Computing Systems = Int Con Distr Comp S Proceedings of The 14th International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Proceedings of The 14th International Conference On Narrow Gap Semiconductors and Systems = Physcs Proc Proceedings of The 14th International Conference On Narrow Gap Semiconductors and Systems = Physcs. Proc. Proceedings of The 14th International Modal Analysis Conference, Vols I & Ii = P Soc Photo-opt Ins Proceedings of The 14th International Modal Analysis Conference, Vols I & Ii = P. Soc. Photo-opt. Ins. Proceedings of The 14th National Conference of Astronomers of Serbia and Montenegro = Pub Astro Obs Belgr Proceedings of The 14th National Conference of Astronomers of Serbia and Montenegro = Pub. Astro. Obs. Belgr. Proceedings of The 15th American Conference On Applied Mathematics and Proceedings of The International Conference On Computational and Information Sciences 2009, Vols I and Ii = Ma Comput Sci Eng Proceedings of The 15th American Conference On Applied Mathematics and Proceedings of The International Conference On Computational and Information Sciences 2009, Vols I and Ii = Ma. Comput. Sci. Eng. Proceedings of The 15th American Conference On Applied Mathematics and Proceedings of The International Conference On Computational and Information Sciences 2009, Vols I and Ii = Math Comput Sci Eng Proceedings of The 15th American Conference On Applied Mathematics and Proceedings of The International Conference On Computational and Information Sciences 2009, Vols I and Ii = Math. Comput. Sci. Eng. Proceedings of The 15th Asian Test Symposium = Asian Test Symposium Proceedings of The 15th Ieee Symposium On Computer-based Medical Systems = Comp Med Sy Proceedings of The 15th Ieee Symposium On Computer-based Medical Systems = Comp. Med. Sy. Proceedings of The 15th International Conference On Distributed Computing Systems = Int Con Distr Comp S Proceedings of The 15th International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Proceedings of The 15th International Modal Analysis Conference - Imac, Vols I and Ii = P Soc Photo-opt Ins Proceedings of The 15th International Modal Analysis Conference - Imac, Vols I and Ii = P. Soc. Photo-opt. Ins. Proceedings of The 16th Asian Test Symposium = Asian Test Symposium Proceedings of The 16th Euromicro Conference On Parallel, Distributed and Network-based Processing = Euromicro Workshop P Proceedings of The 16th Euromicro Conference On Parallel, Distributed and Network-based Processing = Euromicro Workshop. P. Proceedings of The 16th Iasted International Conference On Applied Simulation and Modelling = Iasted Model Simul Proceedings of The 16th Iasted International Conference On Applied Simulation and Modelling = Iasted Model. Simul. Proceedings of The 16th Ieee International Conference On Program Comprehension = Int C Program Compre Proceedings of The 16th Ieee International Conference On Program Comprehension = Int. C. Program Compre. Proceedings of The 16th Ieee International Requirements Engineering Conference = Int Requir Eng Conf Proceedings of The 16th Ieee International Requirements Engineering Conference = Int. Requir. Eng. Conf. Proceedings of The 16th International Conference On Defects in Semiconductors, Pts 1-3 = Mater Sci Forum Proceedings of The 16th International Conference On Defects in Semiconductors, Pts 1-3 = Mater. Sci. Forum. Proceedings of The 16th International Conference On Distributed Computing Systems = Int Con Distr Comp S Proceedings of The 16th International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Proceedings of The 16th Northeast Pacific Pink and Chum Salmon Workshop = Alaska Sea Proceedings of The 16th Northeast Pacific Pink and Chum Salmon Workshop = Alaska. Sea. Proceedings of The 17th Asian Test Symposium = Asian Test Symposium Proceedings of The 17th International Conference On Defects in Semiconductors, Pts 1-3 = Mater Sci Forum Proceedings of The 17th International Conference On Defects in Semiconductors, Pts 1-3 = Mater. Sci. Forum. Proceedings of The 17th International Conference On Distributed Computing Systems = Int Con Distr Comp S Proceedings of The 17th International Conference On Distributed Computing Systems = Int. Con. Distr. Comp. S. Proceedings of The 17th International Conference On Pattern Recognition, Vol 1 = Int C Patt Recog Proceedings of The 17th International Conference On Pattern Recognition, Vol 1 = Int. C. Patt. Recog. Proceedings of The 17th International Conference On Pattern Recognition, Vol 2 = Int C Patt Recog Proceedings of The 17th International Conference On Pattern Recognition, Vol 2 = Int. C. Patt. Recog. Proceedings of The 17th International Conference On Pattern Recognition, Vol 3 = Int C Patt Recog Proceedings of The 17th International Conference On Pattern Recognition, Vol 3 = Int. C. Patt. Recog. Proceedings of The 17th International Conference On Pattern Recognition, Vol 4 = Int C Patt Recog Proceedings of The 17th International Conference On Pattern Recognition, Vol 4 = Int. C. Patt. Recog. Proceedings of The 17th International Congress of Life Assurance Medicine = Roy Soc Med Int Cong Proceedings of The 17th International Congress of Life Assurance Medicine = Roy. Soc. Med. Int. Cong. Proceedings of The 17th International Spin Physics Symposium = Aip Conf Proc Proceedings of The 17th International Spin Physics Symposium = Aip. Conf. Proc. Proceedings of The 17th International Symposium On Power Semiconductor Devices & Ics = Int Sym Pow Semicond Proceedings of The 17th International Symposium On Power Semiconductor Devices & Ics = Int. Sym. Pow. Semicond. Proceedings of The 17th International Vacuum Congress/13th International Conference On Surface Science/international Conference On Nanoscience and Technology = J Phys Conf Ser Proceedings of The 17th International Vacuum Congress/13th International Conference On Surface Science/international Conference On Nanoscience and Technology = J. Phys. Conf. Ser. Proceedings of The 17th National Passive Solar Conference = P Natl Sol Proceedings of The 17th National Passive Solar Conference = P. Natl. Sol. Proceedings of The 18th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 18, Pts 1-5 = P Ieee Embs Proceedings of The 18th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 18, Pts 1-5 = P. Ieee Embs. Proceedings of The 18th Annual Ucla Indo-european Conference = J Indo-eur Stud Mono Proceedings of The 18th Annual Ucla Indo-european Conference = J. Indo-eur. Stud. Mono. Proceedings of The 18th Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The 18th Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The 18th International Conference On Software Engineering = Proc Int Conf Softw Proceedings of The 18th International Conference On Software Engineering = Proc. Int. Conf. Softw. Proceedings of The 18th International Symposium On Power Semiconductor Devices & Ics = Int Sym Pow Semicond Proceedings of The 18th International Symposium On Power Semiconductor Devices & Ics = Int. Sym. Pow. Semicond. Proceedings of The 18th International Symposium On Space Flight Dynamics = Esa Sp Publ Proceedings of The 18th International Symposium On Space Flight Dynamics = Esa. Sp. Publ. Proceedings of The 18th International Symposium On Virus & Virus-like Diseases of Temperate Fruit Crops - Top Fruit Diseases, Vols 1 and 2 = Acta Hortic Proceedings of The 18th International Symposium On Virus & Virus-like Diseases of Temperate Fruit Crops - Top Fruit Diseases, Vols 1 and 2 = Acta. Hortic. Proceedings of The 1989 Acm Sigmod International Conference On The Management of Data = Sigmod Rec Proceedings of The 1989 Acm Sigmod International Conference On The Management of Data = Sigmod Rec. Proceedings of The 1989 American Control Conference, Vols 1-3 = Amer Contr Conf Conf Proceedings of The 1989 American Control Conference, Vols 1-3 = Amer. Contr. Conf. Conf. Proceedings of The 1989 Arkansas Fescue Toxicosis Conference = Arkansas Aes Spec Re Proceedings of The 1989 Arkansas Fescue Toxicosis Conference = Arkansas Aes. Spec. Re. Proceedings of The 1989 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1989 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1990 Acm Sigmod International Conference On Management Data = Sigmod Rec Proceedings of The 1990 Acm Sigmod International Conference On Management Data = Sigmod Rec. Proceedings of The 1990 Ama Microcomputers in Marketing Education Conference = Amer Mar As Proceedings of The 1990 Ama Microcomputers in Marketing Education Conference = Amer. Mar. As. Proceedings of The 1990 Cotton Research Meeting = Arkansas Aes Spec Re Proceedings of The 1990 Cotton Research Meeting = Arkansas. Aes. Spec. Re. Proceedings of The 1990 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1990 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1990 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1990 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1991 Cotton Research Meeting = Arkansas Aes Spec Re Proceedings of The 1991 Cotton Research Meeting = Arkansas. Aes. Spec. Re. Proceedings of The 1991 International Conference On Parallel Processing, Vol 1 = Proc Int Conf Paral Proceedings of The 1991 International Conference On Parallel Processing, Vol 1 = Proc. Int. Conf. Paral. Proceedings of The 1991 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1991 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1991 Petroleum Hydrocarbons and Organic Chemical in Ground Water : Prevention, Detection, and Restoration = Gr Wat Man Proceedings of The 1991 Petroleum Hydrocarbons and Organic Chemical in Ground Water : Prevention, Detection, and Restoration = Gr. Wat. Man. Proceedings of The 1991 Southern Conservation Tillage Conference = Arkansas Aes Spec Re Proceedings of The 1991 Southern Conservation Tillage Conference = Arkansas. Aes. Spec. Re. Proceedings of The 1991 Symposium On Systems Analysis in Forest Resources = Usda Southe Proceedings of The 1991 Symposium On Systems Analysis in Forest Resources = Usda. Southe. Proceedings of The 1992 Cotton Research Meeting = Arkansas Aes Spec Re Proceedings of The 1992 Cotton Research Meeting = Arkansas. Aes. Spec. Re. Proceedings of The 1992 International Conference On Parallel Processing, Vol I - Architecture = Proc Int Conf Paral Proceedings of The 1992 International Conference On Parallel Processing, Vol I - Architecture = Proc. Int. Conf. Paral. Proceedings of The 1992 International Conference On Parallel Processing, Vol Iii - Algorithms & Applications = Proc Int Conf Paral Proceedings of The 1992 International Conference On Parallel Processing, Vol Iii - Algorithms & Applications = Proc. Int. Conf. Paral. Proceedings of The 1992 International Conference On Parallel Processing, Vol Ii - Software = Proc Int Conf Paral Proceedings of The 1992 International Conference On Parallel Processing, Vol Ii - Software = Proc. Int. Conf. Paral. Proceedings of The 1992 People to People Conference, Selected Papers = Rmsc Res Rec Proceedings of The 1992 People to People Conference, Selected Papers = Rmsc. Res. Rec. Proceedings of The 1992 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1992 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1993 Cotton Research Meeting and 1993 Summaries of Cotton Research in Progress = Arkansas Aes Spec Re Proceedings of The 1993 Cotton Research Meeting and 1993 Summaries of Cotton Research in Progress = Arkansas. Aes. Spec. Re. Proceedings of The 1993 International Conference On Parallel Processing, Vol Iii = Proc Int Conf Paral Proceedings of The 1993 International Conference On Parallel Processing, Vol Iii = Proc. Int. Conf. Paral. Proceedings of The 1993 International Conference On Parallel Processing, Vol Ii = Proc Int Conf Paral Proceedings of The 1993 International Conference On Parallel Processing, Vol Ii = Proc. Int. Conf. Paral. Proceedings of The 1993 International Conference On Parallel Processing, Vol I = Proc Int Conf Paral Proceedings of The 1993 International Conference On Parallel Processing, Vol I = Proc. Int. Conf. Paral. Proceedings of The 1993 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1993 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1994 Ieee International Frequency Control Symposium (the 48th Annual Symposium) = P Ieee Int Freq Cont Proceedings of The 1994 Ieee International Frequency Control Symposium (the 48th Annual Symposium) = P. Ieee Int. Freq. Cont. Proceedings of The 1994 Sem Spring Conference On Experimental Mechanics = P Int Cong Experit M Proceedings of The 1994 Sem Spring Conference On Experimental Mechanics = P. Int. Cong. Experit. M. Proceedings of The 1994 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1994 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1995 Cotton Research Meeting and 1995 Summaries of Cotton Research in Progress = Arkansas Aes Spec Re Proceedings of The 1995 Cotton Research Meeting and 1995 Summaries of Cotton Research in Progress = Arkansas. Aes. Spec. Re. Proceedings of The 1995 Icpp Workshop On Challenges for Parallel Processing = Proc Int Conf Paral Proceedings of The 1995 Icpp Workshop On Challenges for Parallel Processing = Proc. Int. Conf. Paral. Proceedings of The 1995 Ieee Iecon - 21st International Conference On Industrial Electronics, Control, and Instrumentation, Vols 1 and 2 = Ieee Ind Elec Proceedings of The 1995 Ieee Iecon - 21st International Conference On Industrial Electronics, Control, and Instrumentation, Vols 1 and 2 = Ieee Ind. Elec. Proceedings of The 1995 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1995 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1995 Sem Spring Conference On Experimental Mechanics = P Int Cong Experit M Proceedings of The 1995 Sem Spring Conference On Experimental Mechanics = P. Int. Cong. Experit. M. Proceedings of The 1996 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 1996 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 1996 Ieee Iecon - 22nd International Conference On Industrial Electronics, Control, and Instrumentation, Vols 1-3 = Ieee Ind Elec Proceedings of The 1996 Ieee Iecon - 22nd International Conference On Industrial Electronics, Control, and Instrumentation, Vols 1-3 = Ieee Ind. Elec. Proceedings of The 1996 Ieee National Radar Conference = Ieee Ijcnn Proceedings of The 1996 Ieee National Radar Conference = Ieee Ijcnn. Proceedings of The 1996 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1996 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1996 Topical Meeting Radiation Protection & Shielding, Vols 1 and 2 = Adv Appl Rad Protect Proceedings of The 1996 Topical Meeting Radiation Protection & Shielding, Vols 1 and 2 = Adv. Appl. Rad. Protect. Proceedings of The 1997 16th Southern Biomedical Engineering Conference = So Biomm Engn Conf P Proceedings of The 1997 16th Southern Biomedical Engineering Conference = So. Biomm. Engn. Conf. P. Proceedings of The 1997 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 1997 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 1997 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 1997 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 1997 Ieee National Radar Conference = Radar Conf Proceedings of The 1997 Ieee National Radar Conference = Radar Conf. Proceedings of The 1997 International Conference On Parallel Processing = Proc Int Conf Paral Proceedings of The 1997 International Conference On Parallel Processing = Proc. Int. Conf. Paral. Proceedings of The 1997 International Conference On Software Engineering = Proc Int Conf Softw Proceedings of The 1997 International Conference On Software Engineering = Proc. Int. Conf. Softw. Proceedings of The 1997 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1997 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1998 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 1998 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 1998 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 1998 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 1998 Conference On The History and Heritage of Science Information Systems = Asis Monogr Proceedings of The 1998 Conference On The History and Heritage of Science Information Systems = Asis. Monogr. Proceedings of The 1998 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-6 = Int Conf Acoust Spee Proceedings of The 1998 Ieee International Conference On Acoustics, Speech and Signal Processing, Vols 1-6 = Int. Conf. Acoust. Spee. Proceedings of The 1998 Ieee International Frequency Control Symposium = P Ieee Int Freq Cont Proceedings of The 1998 Ieee International Frequency Control Symposium = P. Ieee Int. Freq. Cont. Proceedings of The 1998 Ieee International Symposium On Electronics and The Environment = Ieee Int Symp Electr Proceedings of The 1998 Ieee International Symposium On Electronics and The Environment = Ieee Int. Symp. Electr. Proceedings of The 1998 Ieee Radar Conference: Radarcon 98 = Radar Conf Proceedings of The 1998 Ieee Radar Conference: Radarcon 98 = Radar Conf. Proceedings of The 1998 International Conference On Software Engineering = Proc Int Conf Softw Proceedings of The 1998 International Conference On Software Engineering = Proc. Int. Conf. Softw. Proceedings of The 1998 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 1998 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 1998 Summer Computer Simulation Conference = P Summ Comp Proceedings of The 1998 Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The 1999 Asme/ieee Joint Railroad Conference = Asme Rtd Proceedings of The 1999 Asme/ieee Joint Railroad Conference = Asme. Rtd. Proceedings of The 1999 Ieee International Symposium On Electronics and The Environment, Isee - 1999 = Ieee Int Symp Electr Proceedings of The 1999 Ieee International Symposium On Electronics and The Environment, Isee - 1999 = Ieee Int. Symp. Electr. Proceedings of The 1999 Ieee Radar Conference = Ieee Rad Conf Proceedings of The 1999 Ieee Radar Conference = Ieee Rad. Conf. Proceedings of The 1999 Ieee Radar Conference = Radar Conf Proceedings of The 1999 Ieee Radar Conference = Radar Conf. Proceedings of The 1999 Ieee Symposium On Security and Privacy = P Ieee S Secur Priv Proceedings of The 1999 Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. Proceedings of The 1999 International Conference On Bond Graph Modeling and Simulation (icbgm'99) = Simul Series Proceedings of The 1999 International Conference On Bond Graph Modeling and Simulation (icbgm'99) = Simul. Series. Proceedings of The 1999 International Conference On Web-based Modeling and Simulation = Simul Series Proceedings of The 1999 International Conference On Web-based Modeling and Simulation = Simul. Series. Proceedings of The 19th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 19th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 19th Annual Conference of The Western Australian Science Education Association = P A Wesea Conf Proceedings of The 19th Annual Conference of The Western Australian Science Education Association = P. A. Wesea. Conf. Proceedings of The 19th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 19, Pts 1-6 = P Ann Int Ieee Embs Proceedings of The 19th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 19, Pts 1-6 = P. Ann. Int. Ieee Embs. Proceedings of The 19th Annual Ucla Indo-european Conference = J Indo-eur Stud Mono Proceedings of The 19th Annual Ucla Indo-european Conference = J. Indo-eur. Stud. Mono. Proceedings of The 19th Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The 19th Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The 19th International Symposium On Power Semiconductor Devices and Ics = Int Sym Pow Semicond Proceedings of The 19th International Symposium On Power Semiconductor Devices and Ics = Int. Sym. Pow. Semicond. Proceedings of The 1st International Conference On Indigenous Vegetables and Legumes Prospectus for Fighting Poverty, Hunger and Malnutrition = Acta Hortic Proceedings of The 1st International Conference On Indigenous Vegetables and Legumes Prospectus for Fighting Poverty, Hunger and Malnutrition = Acta. Hortic. Proceedings of The 1st International Conference On Risk Analysis and Crisis Response = Adv Intel Sys Res Proceedings of The 1st International Conference On Risk Analysis and Crisis Response = Adv. Intel. Sys. Res. Proceedings of The 1st International Conference On Turfgrass Management and Science Sports Fields = Acta Hortic Proceedings of The 1st International Conference On Turfgrass Management and Science Sports Fields = Acta. Hortic. Proceedings of The 1st International Conference On Virtual Learning = Proc Int C Virtual L Proceedings of The 1st International Conference On Virtual Learning = Proc. Int. C. Virtual L. Proceedings of The 1st International Guava Symposium = Acta Hortic Proceedings of The 1st International Guava Symposium = Acta. Hortic. Proceedings of The 1st International Humulus Symposium = Acta Hortic Proceedings of The 1st International Humulus Symposium = Acta. Hortic. Proceedings of The 1st International Rose Hip Conference = Acta Hortic Proceedings of The 1st International Rose Hip Conference = Acta. Hortic. Proceedings of The 1st International Symposium On Breadfruit Research and Development = Acta Hortic Proceedings of The 1st International Symposium On Breadfruit Research and Development = Acta. Hortic. Proceedings of The 1st International Symposium On Fresh Food Quality Standards: Better Food By Quality and Assurance = Acta Hortic Proceedings of The 1st International Symposium On Fresh Food Quality Standards: Better Food By Quality and Assurance = Acta. Hortic. Proceedings of The 1st International Symposium On Grapevine Growing, Commerce and Research = Acta Hortic Proceedings of The 1st International Symposium On Grapevine Growing, Commerce and Research = Acta. Hortic. Proceedings of The 1st International Symposium On Human Health Effects of Fruits and Vegetables = Acta Hortic Proceedings of The 1st International Symposium On Human Health Effects of Fruits and Vegetables = Acta. Hortic. Proceedings of The 1st International Symposium On Improving The Performance of Supply Chains in The Transitional Economies = Acta Hortic Proceedings of The 1st International Symposium On Improving The Performance of Supply Chains in The Transitional Economies = Acta. Hortic. Proceedings of The 1st International Symposium On Papaya = Acta Hortic Proceedings of The 1st International Symposium On Papaya = Acta. Hortic. Proceedings of The 1st International Symposium On Rootstocks for Deciduous Fruit Tree Species, Vols 1 and 2 = Acta Hortic Proceedings of The 1st International Symposium On Rootstocks for Deciduous Fruit Tree Species, Vols 1 and 2 = Acta. Hortic. Proceedings of The 1st International Symposium On Saffron Biology and Biotechnolgy = Acta Hortic Proceedings of The 1st International Symposium On Saffron Biology and Biotechnolgy = Acta. Hortic. Proceedings of The 1st International Symposium On The Labiatae: Advances in Production, Biotechnology and Utilisation = Acta Hortic Proceedings of The 1st International Symposium On The Labiatae: Advances in Production, Biotechnology and Utilisation = Acta. Hortic. Proceedings of The 1st International Symposium On Tomato Diseases = Acta Hortic Proceedings of The 1st International Symposium On Tomato Diseases = Acta. Hortic. Proceedings of The 1st International Symposium On Work Ability = People Work Res Rep Proceedings of The 1st International Symposium On Work Ability = People. Work Res. Rep. Proceedings of The 1st National Congress Valorisation and Recycling of Industrial Wastes = Ser Mono Mat Sci Eng Proceedings of The 1st National Congress Valorisation and Recycling of Industrial Wastes = Ser. Mono. Mat. Sci. Eng. Proceedings of The 1st Solar and Space Weather Euroconference On The Solar Cycle and Terrestrial Climate = Esa Spec Publ Proceedings of The 1st Solar and Space Weather Euroconference On The Solar Cycle and Terrestrial Climate = Esa. Spec. Publ. Proceedings of The 1st Solar and Space Weather Euroconference On The Solar Cycle and Terrestrial Climate = Esa Sp Publ Proceedings of The 1st Solar and Space Weather Euroconference On The Solar Cycle and Terrestrial Climate = Esa. Sp. Publ. Proceedings of The 1st Workshop On Recommender Systems for Technology Enhanced Learning (recsystel 2010) = Procedia Comput Sci Proceedings of The 1st Workshop On Recommender Systems for Technology Enhanced Learning (recsystel 2010) = Procedia. Comput. Sci. Proceedings of The 1st Wseas International Conference On Biomedical Electronics and Biomedical Informatics = Rec Adv Biol Biomed Proceedings of The 1st Wseas International Conference On Biomedical Electronics and Biomedical Informatics = Rec. Adv. Biol. Biomed. Proceedings of The 1st Wseas International Conference On Environmental and Geological Science and Engineering (eg'08) = Energy Environ Eng S Proceedings of The 1st Wseas International Conference On Environmental and Geological Science and Engineering (eg'08) = Energy. Environ. Eng. S. Proceedings of The 1st Wseas International Conference On Landscape Architecture (la '08) = Energy Environ Eng S Proceedings of The 1st Wseas International Conference On Landscape Architecture (la '08) = Energy. Environ. Eng. S. Proceedings of The 1st Wseas International Conference On Materials Science (materials'08) = Ma Comput Sci Eng Proceedings of The 1st Wseas International Conference On Materials Science (materials'08) = Ma. Comput. Sci. Eng. Proceedings of The 1st Wseas International Conference On Materials Science (materials'08) = Math Comput Sci Eng Proceedings of The 1st Wseas International Conference On Materials Science (materials'08) = Math. Comput. Sci. Eng. Proceedings of The 1st Wseas International Conference On Recent Advances in Nanotechnology = Ele Com Eng Proceedings of The 1st Wseas International Conference On Recent Advances in Nanotechnology = Ele. Com. Eng. Proceedings of The 1st Wseas International Conference On Visualization, Imaging and Simulation (vis'08) = Ma Comput Sci Eng Proceedings of The 1st Wseas International Conference On Visualization, Imaging and Simulation (vis'08) = Ma. Comput. Sci. Eng. Proceedings of The 1st Wseas International Conference On Visualization, Imaging and Simulation (vis'08) = Math Comput Sci Eng Proceedings of The 1st Wseas International Conference On Visualization, Imaging and Simulation (vis'08) = Math. Comput. Sci. Eng. Proceedings of The 2000 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 2000 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 2000 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2000 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2000 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee C Evol Computat Proceedings of The 2000 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee. C. Evol. Computat. Proceedings of The 2000 Cotton Research Meeting and Summaries of Cotton Research in Progress = Arkansas Aes Spec Re Proceedings of The 2000 Cotton Research Meeting and Summaries of Cotton Research in Progress = Arkansas. Aes. Spec. Re. Proceedings of The 2000 Ieee/eia International Frequency Control Symposium & Exhibition = P Ieee Int Freq Cont Proceedings of The 2000 Ieee/eia International Frequency Control Symposium & Exhibition = P. Ieee. Int. Freq. Cont. Proceedings of The 2000 Ieee International Symposium On Electronics and The Environment = Ieee Int Symp Electr Proceedings of The 2000 Ieee International Symposium On Electronics and The Environment = Ieee Int. Symp. Electr. Proceedings of The 2000 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 2000 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 2001 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 2001 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 2001 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2001 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2001 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee C Evol Computat Proceedings of The 2001 Congress On Evolutionary Computation, Vols 1 and 2 = Ieee. C. Evol. Computat. Proceedings of The 2001 Cotton Research Meeting and Summaries of Cotton Research in Progress = Arkansas Aes Spec Re Proceedings of The 2001 Cotton Research Meeting and Summaries of Cotton Research in Progress = Arkansas. Aes. Spec. Re. Proceedings of The 2001 Ieee International Frequency Control Symposium & Pda Exhibition = P Ieee Int Freq Cont Proceedings of The 2001 Ieee International Frequency Control Symposium & Pda Exhibition = P. Ieee Int. Freq. Cont. Proceedings of The 2001 Ieee International Symposium On Electronics and The Environment, Conference Record = Ieee Int Symp Electr Proceedings of The 2001 Ieee International Symposium On Electronics and The Environment, Conference Record = Ieee Int. Symp. Electr. Proceedings of The 2001 Ieee Radar Conference = Ieee Rad Conf Proceedings of The 2001 Ieee Radar Conference = Ieee Rad. Conf. Proceedings of The 2001 Ieee Radar Conference = Radar Conf Proceedings of The 2001 Ieee Radar Conference = Radar Conf. Proceedings of The 2001 International Conference On Parallel Processing = Proc Int Conf Paral Proceedings of The 2001 International Conference On Parallel Processing = Proc. Int. Conf. Paral. Proceedings of The 2002 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 2002 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 2002 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2002 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2002 Ieee 14th International Conference On Dielectric Liquids = I C Dielect Liquids Proceedings of The 2002 Ieee 14th International Conference On Dielectric Liquids = I. C. Dielect. Liquids Proceedings of The 2002 Ieee International Frequency Control Symposium & Pda Exhibition = P Ieee Int Freq Cont Proceedings of The 2002 Ieee International Frequency Control Symposium & Pda Exhibition = P. Ieee Int. Freq. Cont. Proceedings of The 2002 Ieee Radar Conference = Ieee Rad Conf Proceedings of The 2002 Ieee Radar Conference = Ieee Rad. Conf. Proceedings of The 2002 Ieee Radar Conference = Radar Conf Proceedings of The 2002 Ieee Radar Conference = Radar Conf. Proceedings of The 2003 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 2003 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 2003 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2003 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2003 Ieee International Frequency Control Symposium & Pda Exhibition Jointly With 17th European Frequency and Time Forum = P Ieee Int Freq Cont Proceedings of The 2003 Ieee International Frequency Control Symposium & Pda Exhibition Jointly With 17th European Frequency and Time Forum = P. Ieee Int. Freq. Cont. Proceedings of The 2003 Ieee Radar Conference = Ieee Rad Conf Proceedings of The 2003 Ieee Radar Conference = Ieee Rad. Conf. Proceedings of The 2003 Ieee Radar Conference = Radar Conf Proceedings of The 2003 Ieee Radar Conference = Radar Conf. Proceedings of The 2003 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 2003 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 2004 2nd Workshop On Embedded Systems for Real-time Multimedia = Emb Syst Real Time M Proceedings of The 2004 2nd Workshop On Embedded Systems for Real-time Multimedia = Emb. Syst. Real. Time. M. Proceedings of The 2004 American Control Conference, Vols 1-6 = P Amer Contr Conf Proceedings of The 2004 American Control Conference, Vols 1-6 = P. Amer. Contr. Conf. Proceedings of The 2004 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1 = Proc Cvpr Ieee Proceedings of The 2004 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 1 = Proc. Cvpr. Ieee Proceedings of The 2004 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2 = Proc Cvpr Ieee Proceedings of The 2004 Ieee Computer Society Conference On Computer Vision and Pattern Recognition, Vol 2 = Proc. Cvpr. Ieee Proceedings of The 2004 Ieee International Frequency Control Symposium and Exposition = P Ieee Int Freq Cont Proceedings of The 2004 Ieee International Frequency Control Symposium and Exposition = P. Ieee Int. Freq. Cont. Proceedings of The 2004 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr Proceedings of The 2004 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. Proceedings of The 2004 Ieee Workshop On Computers in Power Electronics = Ann Worksh Comp Pow Proceedings of The 2004 Ieee Workshop On Computers in Power Electronics = Ann. Worksh. Comp. Pow. Proceedings of The 2004 Northeastern Recreation Research Symposium = Usda Ne Exp Proceedings of The 2004 Northeastern Recreation Research Symposium = Usda. Ne. Exp. Proceedings of The 2005 3rd Workshop On Embedded Systems for Real-time Multimedia = Emb Syst Real Time M Proceedings of The 2005 3rd Workshop On Embedded Systems for Real-time Multimedia = Emb. Syst. Real. Time. M. Proceedings of The 2005 Asme/ieee Joint Rail Conference = Asme Rtd Proceedings of The 2005 Asme/ieee Joint Rail Conference = Asme. Rtd. Proceedings of The 2005 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2005 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2006 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2006 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2006 Ieee/acm/ifip Workshop On Embedded Systems for Real Time Multimedia = Emb Syst Real Time M Proceedings of The 2006 Ieee/acm/ifip Workshop On Embedded Systems for Real Time Multimedia = Emb. Syst. Real Time M. Proceedings of The 2006 Ieee International Conference On Control Applications, Vols 1-4 = Ieee Intl Conf Contr Proceedings of The 2006 Ieee International Conference On Control Applications, Vols 1-4 = Ieee Intl. Conf. Contr. Proceedings of The 2006 Ieee International Conference On Networking, Sensing and Control = Ieee Int C Netw Sens Proceedings of The 2006 Ieee International Conference On Networking, Sensing and Control = Ieee Int. C. Netw. Sens. Proceedings of The 2006 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr Proceedings of The 2006 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. Proceedings of The 2006 Ieee Workshop On Computers in Power Electronics = Ann Worksh Comp Pow Proceedings of The 2006 Ieee Workshop On Computers in Power Electronics = Ann. Worksh. Comp. Pow. Proceedings of The 2006 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems = Des Diag Elec Circ S Proceedings of The 2006 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems = Des. Diag. Elec. Circ. S. Proceedings of The 2006 Joint Rail Conference On Restoring and Upgrading Rail Infrastructure, Rolling Stock and Systems = Asme Rtd Proceedings of The 2006 Joint Rail Conference On Restoring and Upgrading Rail Infrastructure, Rolling Stock and Systems = Asme. Rtd. Proceedings of The 2006 Northeastern Recreation Research Symposium = Usda For Serv N Res Proceedings of The 2006 Northeastern Recreation Research Symposium = Usda. For. Serv. N. Res. Proceedings of The 2006 Northeastern Recreation Research Symposium = Usda For Serv Nrs Gt Proceedings of The 2006 Northeastern Recreation Research Symposium = Usda. For. Serv. Nrs. Gt. Proceedings of The 2007 11th International Conference On Computer Supported Cooperative Work in Design, Vols 1 and 2 = Int C Comp Supp Coop Proceedings of The 2007 11th International Conference On Computer Supported Cooperative Work in Design, Vols 1 and 2 = Int. C. Comp. Supp. Coop. Proceedings of The 2007 Ieee Bipolar/bicmos Circuits and Technology Meeting (bctm) = Bctm Proc Proceedings of The 2007 Ieee Bipolar/bicmos Circuits and Technology Meeting (bctm) = Bctm. Proc. Proceedings of The 2007 Ieee Conference On Control Applications, Vols 1-3 = Ieee Intl Conf Contr Proceedings of The 2007 Ieee Conference On Control Applications, Vols 1-3 = Ieee Intl. Conf. Contr. Proceedings of The 2007 Ieee International Conference On Robotics and Automation, Vols 1-10 = Ieee Int Conf Robot Proceedings of The 2007 Ieee International Conference On Robotics and Automation, Vols 1-10 = Ieee Int. Conf. Robot. Proceedings of The 2007 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int Symp Electr Proceedings of The 2007 Ieee International Symposium On Electronics & The Environment, Conference Record = Ieee Int. Symp. Electr. Proceedings of The 2007 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems = Des Diag Elec Circ S Proceedings of The 2007 Ieee Workshop On Design and Diagnostics of Electronic Circuits and Systems = Des. Diag. Elec. Circ. S. Proceedings of The 2008 12th International Conference On Computer Supported Cooperative Work in Design, Vols I and Ii = Int C Comp Supp Coop Proceedings of The 2008 12th International Conference On Computer Supported Cooperative Work in Design, Vols I and Ii = Int. C. Comp. Supp. Coop. Proceedings of The 2008 16th Ieee Workshop On Local and Metropolitan Area Networks = Wrks Loc Metro Area Proceedings of The 2008 16th Ieee Workshop On Local and Metropolitan Area Networks = Wrks. Loc. Metro. Area Proceedings of The 2008 16th International Conference On Networks = Ieee Int Conf Networ Proceedings of The 2008 16th International Conference On Networks = Ieee. Int. Conf. Networ. Proceedings of The 2008 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2008 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2008 Ieee/acm/ifip Workshop On Embedded Systems for Real-time Multimedia = Emb Syst Real Time M Proceedings of The 2008 Ieee/acm/ifip Workshop On Embedded Systems for Real-time Multimedia = Emb. Syst. Real. Time. M. Proceedings of The 2008 Ieee Symposium On Security and Privacy = P Ieee S Secur Priv Proceedings of The 2008 Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. Proceedings of The 2008 International Conference On E-risk Management (icerm 2008) = Adv Intel Sys Res Proceedings of The 2008 International Conference On E-risk Management (icerm 2008) = Adv. Intel. Sys. Res. Proceedings of The 2008 International Symposium On Collaborative Technologies and Systems: Cts 2008 = Int S Collab Technol Proceedings of The 2008 International Symposium On Collaborative Technologies and Systems: Cts 2008 = Int. S. Collab. Technol. Proceedings of The 2009 17th Ieee Symposium On Field Programmable Custom Computing Machines = Ann Ieee Sym Field P Proceedings of The 2009 17th Ieee Symposium On Field Programmable Custom Computing Machines = Ann. Ieee Sym. Field P. Proceedings of The 2009 30th Ieee Symposium On Security and Privacy = P Ieee S Secur Priv Proceedings of The 2009 30th Ieee Symposium On Security and Privacy = P. Ieee S. Secur. Priv. Proceedings of The 2009 Bipolar/bicmos Circuits and Technology Meeting = Bctm Proc Proceedings of The 2009 Bipolar/bicmos Circuits and Technology Meeting = Bctm. Proc. Proceedings of The 2009 Ieee International Symposium On Workload Characterization = I S Workl Char Proc Proceedings of The 2009 Ieee International Symposium On Workload Characterization = I. S. Workl. Char. Proc. Proceedings of The 2009 Ieee Symposium On Design and Diagnostics of Electronic Circuits and Systems = Des Diag Elec Circ S Proceedings of The 2009 Ieee Symposium On Design and Diagnostics of Electronic Circuits and Systems = Des. Diag. Elec. Circ. S. Proceedings of The 2009 Sixth International Conference On Computer Graphics, Imaging and Visualization = I C Comp Graph Im Vi Proceedings of The 2009 Sixth International Conference On Computer Graphics, Imaging and Visualization = I. C. Comp. Graph. Im. Vi. Proceedings of The 2009 Snowbird Particle Astrophysics and Cosmology Workshop (snowpac 2009) = Astr Soc P Proceedings of The 2009 Snowbird Particle Astrophysics and Cosmology Workshop (snowpac 2009) = Astr. Soc. P. Proceedings of The 2009 Viral Clearance Symposium = Dev Biologicals Proceedings of The 2009 Viral Clearance Symposium = Dev. Biologicals. Proceedings of The 2009 Winter Simulation Conference (wsc 2009 ), Vol 1-4 = Wint Simul C Proc Proceedings of The 2009 Winter Simulation Conference (wsc 2009 ), Vol 1-4 = Wint. Simul. C. Proc. Proceedings of The 2010 Ieee-ifip Network Operations and Management Symposium = Ieee Ifip Netw Oper Proceedings of The 2010 Ieee-ifip Network Operations and Management Symposium = Ieee. Ifip. Netw. Oper. Proceedings of The 2010 Ieee International Conference On Solid Dielectrics (icsd 2010) = Ieee Int C Sol Diel Proceedings of The 2010 Ieee International Conference On Solid Dielectrics (icsd 2010) = Ieee Int. C. Sol. Diel. Proceedings of The 2010 Ieee International Symposium On Technology and Society: Social Implications of Emerging Technologies = Int Symp Technol Soc Proceedings of The 2010 Ieee International Symposium On Technology and Society: Social Implications of Emerging Technologies = Int. Symp. Technol. Soc. Proceedings of The 2010 International Conference On Wavelet Analysis and Pattern Recognition = Int C Wavel Anal Pat Proceedings of The 2010 International Conference On Wavelet Analysis and Pattern Recognition = Int. C. Wavel. Anal. Pat. Proceedings of The 2010 Winter Simulation Conference = Wint Simul C Proc Proceedings of The 2010 Winter Simulation Conference = Wint. Simul. C. Proc. Proceedings of The 20th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 20th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 20th Annual Conference of The Western Australian Science Education Association = P A Wesea Conf Proceedings of The 20th Annual Conference of The Western Australian Science Education Association = P. A. Wesea. Conf. Proceedings of The 20th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 20, Pts 1-6 = P Ann Int Ieee Embs Proceedings of The 20th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 20, Pts 1-6 = P. Ann. Int. Ieee Embs. Proceedings of The 20th National Passive Solar Conference = P Natl Sol Proceedings of The 20th National Passive Solar Conference = P. Natl. Sol. Proceedings of The 21st Annual Conference of The Western Australian Science Education Association = P A Wesea Conf Proceedings of The 21st Annual Conference of The Western Australian Science Education Association = P. A. Wesea. Conf. Proceedings of The 21st Annual Southern Conservation Tillage Conference for Sustainable Agriculture = Arkansas Aes Spec Re Proceedings of The 21st Annual Southern Conservation Tillage Conference for Sustainable Agriculture = Arkansas. Aes. Spec. Re. Proceedings of The 21st Australasian Computer Science Conference, Acsc'98 = Aust Comp S Proceedings of The 21st Australasian Computer Science Conference, Acsc'98 = Aust. Comp. S. Proceedings of The 21st Euromicro Conference On Real-time Systems = Euromicro Proceedings of The 21st Ieee International Symposium On Computer-based Medical Systems = Comp Med Sy Proceedings of The 21st Ieee International Symposium On Computer-based Medical Systems = Comp. Med. Sy. Proceedings of The 21st International Symposium On Classical Versus Molecular Breeding of Ornamentals, Pt 2 = Acta Hortic Proceedings of The 21st International Symposium On Classical Versus Molecular Breeding of Ornamentals, Pt 2 = Acta. Hortic. Proceedings of The 21st International Symposium On Computer Architecture and High Performance Computing = Int Sym Comp Archit Proceedings of The 21st International Symposium On Computer Architecture and High Performance Computing = Int. Sym. Comp. Archit. Proceedings of The 22nd Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P Ann Int Ieee Embs Proceedings of The 22nd Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P. Ann. Int. Ieee Embs. Proceedings of The 22nd International Eucarpia Symposium Section Ornamentals: Breeding for Beauty = Acta Hortic Proceedings of The 22nd International Eucarpia Symposium Section Ornamentals: Breeding for Beauty = Acta. Hortic. Proceedings of The 22nd International Eucarpia Symposium Section Ornamentals: Breeding for Beauty, Pt Ii = Acta Hortic Proceedings of The 22nd International Eucarpia Symposium Section Ornamentals: Breeding for Beauty, Pt Ii = Acta. Hortic. Proceedings of The 22nd National Passive Solar Conference = P Natl Sol Proceedings of The 22nd National Passive Solar Conference = P. Natl. Sol. Proceedings of The 22th Workshop On Computer Simulation Studies in Condensed Matter Physics (csp 2009) = Physcs Proc Proceedings of The 22th Workshop On Computer Simulation Studies in Condensed Matter Physics (csp 2009) = Physcs. Proc. Proceedings of The 23rd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 23rd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 23rd Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P Ann Int Ieee Embs Proceedings of The 23rd Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P. Ann. Int. Ieee Embs. Proceedings of The 23rd Eslab Symposium On Two Topics in X-ray Astronomy, Vols 1 and 2 = Esa Sp Publ Proceedings of The 23rd Eslab Symposium On Two Topics in X-ray Astronomy, Vols 1 and 2 = Esa. Sp. Publ. Proceedings of The 23rd International Conference On Software Engineering = Proc Int Conf Softw Proceedings of The 23rd International Conference On Software Engineering = Proc. Int. Conf. Softw. Proceedings of The 23rd National Passive Solar Conference = P Natl Sol Proceedings of The 23rd National Passive Solar Conference = P. Natl. Sol. Proceedings of The 24th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 24th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 24th Annual Ieee Conference On Computational Complexity = Ann Ieee Conf Comput Proceedings of The 24th Annual Ieee Conference On Computational Complexity = Ann. Ieee Conf. Comput. Proceedings of The 24th Australasian Computer Science Conference, Acsc 2001 = Aust Comp S Proceedings of The 24th Australasian Computer Science Conference, Acsc 2001 = Aust. Comp. S. Proceedings of The 25th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 25th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 25th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P Ann Int Ieee Embs Proceedings of The 25th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-4 = P. Ann. Int. Ieee Embs. Proceedings of The 25th International Conference On The Physics of Semiconductors, Pts I and Ii = Springer Proc Phys Proceedings of The 25th International Conference On The Physics of Semiconductors, Pts I and Ii = Springer. Proc. Phys. Proceedings of The 26th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 26th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 26th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-7 = P Ann Int Ieee Embs Proceedings of The 26th Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vols 1-7 = P. Ann. Int. Ieee Embs. Proceedings of The 26th Euromicro Conference, Vols I and Ii = Euromicro Conf Proc Proceedings of The 26th Euromicro Conference, Vols I and Ii = Euromicro Conf. Proc. Proceedings of The 26th International Symposium On Computer Architecture = Conf Proc Int Symp C Proceedings of The 26th International Symposium On Computer Architecture = Conf. Proc. Int. Symp. C. Proceedings of The 26th Meeting and Workshop of The European Working Group On Cp Stars = Contr Ast O Proceedings of The 26th Meeting and Workshop of The European Working Group On Cp Stars = Contr. Ast. O. Proceedings of The 27th Euromicro Conference - 2001: A Net Odyssey = Euromicro Conf Proc Proceedings of The 27th Euromicro Conference - 2001: A Net Odyssey = Euromicro Conf. Proc. Proceedings of The 27th International Cosmic Ray Conference = Fzka Tech Umw Wis B Proceedings of The 27th International Cosmic Ray Conference = Fzka. Tech. Umw. Wis. B. Proceedings of The 28th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 28th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 28th Annual International Computer Software and Application Conference, Workshop and Fast Abstracts = P Int Comp Softw App Proceedings of The 28th Annual International Computer Software and Application Conference, Workshop and Fast Abstracts = P. Int. Comp. Softw. App. Proceedings of The 28th Euromicro Conference = Euromicro Conf Proc Proceedings of The 28th Euromicro Conference = Euromicro Conf. Proc. Proceedings of The 29th Annual Boston University Conferece On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 29th Annual Boston University Conferece On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 29th Annual Conference Avian Medicine and Surgery = Ann Con Avi Med Sur Proceedings of The 29th Annual Conference Avian Medicine and Surgery = Ann. Con. Avi. Med. Sur. Proceedings of The 29th Annual International Computer Software and Applications Conference = P Int Comp Softw App Proceedings of The 29th Annual International Computer Software and Applications Conference = P. Int. Comp. Softw. App. Proceedings of The 29th Annual International Computer Software and Applications Conference, Workshops and Fast Abstracts = P Int Comp Softw App Proceedings of The 29th Annual International Computer Software and Applications Conference, Workshops and Fast Abstracts = P. Int. Comp. Softw. App. Proceedings of The 29th Annual Simulation Symposium = Proc Annu Simul Symp Proceedings of The 29th Annual Simulation Symposium = Proc. Annu. Simul. Symp. Proceedings of The 29th Euromicro Conference = Euromicro Conf Proc Proceedings of The 29th Euromicro Conference = Euromicro Conf. Proc. Proceedings of The 2nd Australasian User Interface Conference, Auic 2001 = Aust Comp S Proceedings of The 2nd Australasian User Interface Conference, Auic 2001 = Aust. Comp. S. Proceedings of The 2nd Csni Specialist Meeting On Simulators and Plant Analysers = Vtt Symp Proceedings of The 2nd Csni Specialist Meeting On Simulators and Plant Analysers = Vtt. Symp. Proceedings of The 2nd European Computing Conference = Rec Adv Comput Eng Proceedings of The 2nd European Computing Conference = Rec. Adv. Comput. Eng. Proceedings of The 2nd Gauss Symposium - Conference A: Mathematics and Theoretical Physics = Sym Gaussiana Proceedings of The 2nd Gauss Symposium - Conference A: Mathematics and Theoretical Physics = Sym. Gaussiana. Proceedings of The 2nd Iasme/wseas International Conference On Geology and Seismology (ges '08) = Ma Comput Sci Eng Proceedings of The 2nd Iasme/wseas International Conference On Geology and Seismology (ges '08) = Ma. Comput. Sci. Eng. Proceedings of The 2nd Iasme/wseas International Conference On Geology and Seismology (ges '08) = Math Comput Sci Eng Proceedings of The 2nd Iasme/wseas International Conference On Geology and Seismology (ges '08) = Math. Comput. Sci. Eng. Proceedings of The 2nd International Conference On Environmental and Geological Science and Engineering = Ma Comput Sci Eng Proceedings of The 2nd International Conference On Environmental and Geological Science and Engineering = Ma. Comput. Sci. Eng. Proceedings of The 2nd International Conference On Virtual Learning = Proc Int C Virtual L Proceedings of The 2nd International Conference On Virtual Learning = Proc. Int. C. Virtual L. Proceedings of The 2nd International Excursion of The Swiss Phytosociological Society = Ver Geobot Proceedings of The 2nd International Excursion of The Swiss Phytosociological Society = Ver. Geobot. Proceedings of The 2nd International Persimmon Symposium = Acta Hortic Proceedings of The 2nd International Persimmon Symposium = Acta. Hortic. Proceedings of The 2nd International Symposium On Fig = Acta Hortic Proceedings of The 2nd International Symposium On Fig = Acta. Hortic. Proceedings of The 2nd International Symposium On Lychee, Longan, Rambutan and Other Sapindaceae Plants = Acta Hortic Proceedings of The 2nd International Symposium On Lychee, Longan, Rambutan and Other Sapindaceae Plants = Acta. Hortic. Proceedings of The 2nd International Workshop On Software Configuration Management = Acm Sigsoft Proceedings of The 2nd International Workshop On Software Configuration Management = Acm. Sigsoft. Proceedings of The 2nd Symposium On Marine Geology: Geology of The North Sea and Skagerrak = Danm Geol Undersog C Proceedings of The 2nd Symposium On Marine Geology: Geology of The North Sea and Skagerrak = Danm. Geol. Undersog. C. Proceedings of The 2nd World Congress On Medicinal and Aromatic Plants (wocmap-2) = Acta Hortic Proceedings of The 2nd World Congress On Medicinal and Aromatic Plants (wocmap-2) = Acta. Hortic. Proceedings of The 2nd Wseas/iasme International Conference On Energy Planning, Energy Saving, Environmental Education = Energy Environ Eng S Proceedings of The 2nd Wseas/iasme International Conference On Energy Planning, Energy Saving, Environmental Education = Energy Environ. Eng. S. Proceedings of The 2nd Wseas International Conference On Biomedical Electronics and Biomedical Informatics = Rec Adv Biol Biomed Proceedings of The 2nd Wseas International Conference On Biomedical Electronics and Biomedical Informatics = Rec. Adv. Biol. Biomed. Proceedings of The 2nd Wseas International Conference On Circuits, Systems, Signals and Telecommunications (cisst '08) = Ele Com Eng Proceedings of The 2nd Wseas International Conference On Circuits, Systems, Signals and Telecommunications (cisst '08) = Ele. Com. Eng. Proceedings of The 2nd Wseas International Conference On Computer Engineering and Applications = Ele Com Eng Proceedings of The 2nd Wseas International Conference On Computer Engineering and Applications = Ele. Com. Eng. Proceedings of The 2nd Wseas International Conference On Engineering Mechanics, Structures and Engineering Geology (emeseg '09) = Ma Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Engineering Mechanics, Structures and Engineering Geology (emeseg '09) = Ma. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Engineering Mechanics, Structures and Engineering Geology (emeseg '09) = Math Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Engineering Mechanics, Structures and Engineering Geology (emeseg '09) = Math. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Management, Marketing and Finances = Ma Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Management, Marketing and Finances = Ma. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Management, Marketing and Finances = Math Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Management, Marketing and Finances = Math. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Multivariate Analysis and Its Application in Science and Engineering = Math Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Multivariate Analysis and Its Application in Science and Engineering = Math. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Urban Planning and Transportation = Ma Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Urban Planning and Transportation = Ma. Comput. Sci. Eng. Proceedings of The 2nd Wseas International Conference On Urban Planning and Transportation = Math Comput Sci Eng Proceedings of The 2nd Wseas International Conference On Urban Planning and Transportation = Math. Comput. Sci. Eng. Proceedings of The 30th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 30th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 30th Euromicro Conference = Euromicro Conf Proc Proceedings of The 30th Euromicro Conference = Euromicro Conf. Proc. Proceedings of The 32nd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 32nd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 33rd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 33rd Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 33rd Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis Contr P Proceedings of The 33rd Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis. Contr. P. Proceedings of The 33rd Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The 33rd Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The 33rd Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The 33rd Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The 33rd Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The 33rd Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The 34th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 34th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 35th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc Ann Bucld Proceedings of The 35th Annual Boston University Conference On Language Development, Vols 1 and 2 = Proc. Ann. Bucld. Proceedings of The 35th Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis Contr P Proceedings of The 35th Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis. Contr. P. Proceedings of The 35th Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The 35th Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The 35th Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The 35th Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The 36th Eslab Symposium On Earth-like Planets and Moons = Esa Spec Publ Proceedings of The 36th Eslab Symposium On Earth-like Planets and Moons = Esa. Spec. Publ. Proceedings of The 36th Eslab Symposium On Earth-like Planets and Moons = Esa Sp Publ Proceedings of The 36th Eslab Symposium On Earth-like Planets and Moons = Esa. Sp. Publ. Proceedings of The 36th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis Contr P Proceedings of The 36th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis. Contr. P. Proceedings of The 36th International Instrumentation Symposium = Instr Aeros Proceedings of The 36th International Instrumentation Symposium = Instr. Aeros. Proceedings of The 37th Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis Contr P Proceedings of The 37th Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis. Contr. P. Proceedings of The 37th International Instrumentation Symposium = Instr Aeros Proceedings of The 37th International Instrumentation Symposium = Instr. Aeros. Proceedings of The 38th International Instrumentation Symposium = Final Contr Proceedings of The 38th International Instrumentation Symposium = Final. Contr. Proceedings of The 39th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis Contr P Proceedings of The 39th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis. Contr. P. Proceedings of The 3rd Australasian Computer Architecture Conference, Acac'98 = Aust Comp S Proceedings of The 3rd Australasian Computer Architecture Conference, Acac'98 = Aust. Comp. S. Proceedings of The 3rd Franco-finnish Colloquium On Contrastive Linguistics = Pub D Lan R Proceedings of The 3rd Franco-finnish Colloquium On Contrastive Linguistics = Pub. D. Lan. R. Proceedings of The 3rd International Conference On Communications and Information Technology = Rec Adv Comput Eng Proceedings of The 3rd International Conference On Communications and Information Technology = Rec. Adv. Comput. Eng. Proceedings of The 3rd International Conference On Management, Marketing and Finances = Ma Comput Sci Eng Proceedings of The 3rd International Conference On Management, Marketing and Finances = Ma. Comput. Sci. Eng. Proceedings of The 3rd International Conference On Management, Marketing and Finances = Math Comput Sci Eng Proceedings of The 3rd International Conference On Management, Marketing and Finances = Math. Comput. Sci. Eng. Proceedings of The 3rd International Conference On Virtual Learning = Proc Int C Virtual L Proceedings of The 3rd International Conference On Virtual Learning = Proc. Int. C. Virtual L. Proceedings of The 3rd International Symposium On Applications of Modelling As An Innovative Technology in The Agri-food Chain = Acta Hortic Proceedings of The 3rd International Symposium On Applications of Modelling As An Innovative Technology in The Agri-food Chain = Acta. Hortic. Proceedings of The 3rd International Symposium On Pistachios and Almonds = Acta Hortic Proceedings of The 3rd International Symposium On Pistachios and Almonds = Acta. Hortic. Proceedings of The 3rd Msg Rao Workshop = Esa Spec Publ Proceedings of The 3rd Msg Rao Workshop = Esa. Spec. Publ. Proceedings of The 3rd Msg Rao Workshop = Esa Sp Publ Proceedings of The 3rd Msg Rao Workshop = Esa. Sp. Publ. Proceedings of The 40th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis Contr P Proceedings of The 40th Ieee Conference On Decision and Control, Vols 1-5 = Ieee Decis. Contr. P. Proceedings of The 41st Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis Contr P Proceedings of The 41st Ieee Conference On Decision and Control, Vols 1-4 = Ieee Decis. Contr. P. Proceedings of The 45th Ieee Conference On Decision and Control, Vols 1-14 = Ieee Decis Contr P Proceedings of The 45th Ieee Conference On Decision and Control, Vols 1-14 = Ieee Decis. Contr. P. Proceedings of The 46th Annual Isa Analysis Division Symposium, Vol 34 = Tech Papers Isa Proceedings of The 46th Annual Isa Analysis Division Symposium, Vol 34 = Tech. Papers. Isa Proceedings of The 46th Ieee Conference On Decision and Control, Vols 1-14 = Ieee Decis Contr P Proceedings of The 46th Ieee Conference On Decision and Control, Vols 1-14 = Ieee Decis. Contr. P. Proceedings of The 46th Industrial Waste Conference, May 14, 15, 16, 1991, Purdue University = Proc Ind Waste Conf Proceedings of The 46th Industrial Waste Conference, May 14, 15, 16, 1991, Purdue University = Proc. Ind. Waste Conf. Proceedings of The 47th Industrial Waste Conference = Proc Ind Waste Conf Proceedings of The 47th Industrial Waste Conference = Proc. Ind. Waste Conf. Proceedings of The 49th Annual Ieee Symposium On Foundations of Computer Science = Ann Ieee Symp Found Proceedings of The 49th Annual Ieee Symposium On Foundations of Computer Science = Ann. Ieee Symp. Found. Proceedings of The 4th Asia-pacific Bioinformatics Conference = Ser Adv Bioinform Proceedings of The 4th Asia-pacific Bioinformatics Conference = Ser. Adv. Bioinform. Proceedings of The 4th Australasian Theory Symposium, Cats'98 = Aust Comp S Proceedings of The 4th Australasian Theory Symposium, Cats'98 = Aust. Comp. S. Proceedings of The 4th Electronics Packaging Technology Conference (eptc 2002) = El Packag Tech Conf Proceedings of The 4th Electronics Packaging Technology Conference (eptc 2002) = El. Packag. Tech. Conf. Proceedings of The 4th European Conference On Space Debris = Esa Spec Publ Proceedings of The 4th European Conference On Space Debris = Esa. Spec. Publ. Proceedings of The 4th European Conference On Space Debris = Esa Sp Publ Proceedings of The 4th European Conference On Space Debris = Esa. Sp. Publ. Proceedings of The 4th Iasme/wseas International Conference On Continuum Mechanics = Ma Comput Sci Eng Proceedings of The 4th Iasme/wseas International Conference On Continuum Mechanics = Ma. Comput. Sci. Eng. Proceedings of The 4th Iasme/wseas International Conference On Water Resources, Hydraulics and Hydrology = Ma Comput Sci Eng Proceedings of The 4th Iasme/wseas International Conference On Water Resources, Hydraulics and Hydrology = Ma. Comput. Sci. Eng. Proceedings of The 4th Iea International Workshop On Beryllium Technology for Fusion = Fzka Tech Umw Wis B Proceedings of The 4th Iea International Workshop On Beryllium Technology for Fusion = Fzka. Tech. Umw. Wis. B. Proceedings of The 4th International Colloquium On Process Simulation = Int Colloq Proc Sim Proceedings of The 4th International Colloquium On Process Simulation = Int. Colloq. Proc. Sim. Proceedings of The 4th International Conference On Postharvest Science, Vols 1 and 2 = Acta Hortic Proceedings of The 4th International Conference On Postharvest Science, Vols 1 and 2 = Acta. Hortic. Proceedings of The 4th International Conference On Solar Power From Space - Sps '04, Together With The 5th International Conference On Wireless Power Transmission - Wpt 5 = Esa Spec Publ Proceedings of The 4th International Conference On Solar Power From Space - Sps '04, Together With The 5th International Conference On Wireless Power Transmission - Wpt 5 = Esa. Spec. Publ. Proceedings of The 4th International Conference On Solar Power From Space - Sps '04, Together With The 5th International Conference On Wireless Power Transmission - Wpt 5 = Esa Sp Publ Proceedings of The 4th International Conference On Solar Power From Space - Sps '04, Together With The 5th International Conference On Wireless Power Transmission - Wpt 5 = Esa. Sp. Publ. Proceedings of The 4th International Conference On Ubiquitous Information Technologies & Applications (icut 2009) = P Int C Ubiq Inform Proceedings of The 4th International Conference On Ubiquitous Information Technologies & Applications (icut 2009) = P. Int. C. Ubiq. Inform. Proceedings of The 4th International Symposium On in Vitro Culture and Horticultural Breeding = Acta Hortic Proceedings of The 4th International Symposium On in Vitro Culture and Horticultural Breeding = Acta. Hortic. Proceedings of The 4th International Symposium On Models for Plant Growth and Control in Greenhouses: Modeling for The 21st Century - Agronomic and Greenhouse Crop Models = Acta Hortic Proceedings of The 4th International Symposium On Models for Plant Growth and Control in Greenhouses: Modeling for The 21st Century - Agronomic and Greenhouse Crop Models = Acta. Hortic. Proceedings of The 4th Meeting of Iufro Working Party 7.03.04 - Disease and Insects in Forest Nurseries = Metsan Tied Proceedings of The 4th Meeting of Iufro Working Party 7.03.04 - Disease and Insects in Forest Nurseries = Metsan. Tied. Proceedings of The 4th Megapie Technical Review Meeting = Fzka Tech Umw Wis B Proceedings of The 4th Megapie Technical Review Meeting = Fzka. Tech. Umw. Wis. B. Proceedings of The 4th Wseas/iasme International Conference On Dynamical Systems and Controls = Ma Comput Sci Eng Proceedings of The 4th Wseas/iasme International Conference On Dynamical Systems and Controls = Ma. Comput. Sci. Eng. Proceedings of The 4th Wseas/iasme International Conference On Educational Technologies (edute'08) = Rec Adv Comput Eng Proceedings of The 4th Wseas/iasme International Conference On Educational Technologies (edute'08) = Rec. Adv. Comput. Eng. Proceedings of The 4th Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering/proceedings of The 2nd Wseas International Conference On Computational Chemistry = Rec Adv Biol Biomed Proceedings of The 4th Wseas International Conference On Cellular and Molecular Biology, Biophysics and Bioengineering/proceedings of The 2nd Wseas International Conference On Computational Chemistry = Rec. Adv. Biol. Biomed. Proceedings of The 4th Wseas International Conference On Remote Sensing (remote'08) = Ma Comput Sci Eng Proceedings of The 4th Wseas International Conference On Remote Sensing (remote'08) = Ma. Comput. Sci. Eng. Proceedings of The 51st Industrial Waste Conference = Proc Ind Waste Conf Proceedings of The 51st Industrial Waste Conference = Proc. Ind. Waste Conf. Proceedings of The 5th Asia- Pacific Bioinfomatics Conference 2007 = Ser Adv Bioinform Proceedings of The 5th Asia- Pacific Bioinfomatics Conference 2007 = Ser. Adv. Bioinform. Proceedings of The 5th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems = Esa Spec Publ Proceedings of The 5th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems = Esa Spec. Publ. Proceedings of The 5th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems = Esa Sp Publ Proceedings of The 5th Esa International Conference On Spacecraft Guidance, Navigation and Control Systems = Esa Sp. Publ. Proceedings of The 5th Iasme/wseas Int Conf On Water Resources, Hydraulics & Hydrology/proceedings of The 4th Iasme/wseas Int Conf On Geology and Seismology = Energy Environ Eng S Proceedings of The 5th Iasme/wseas Int Conf On Water Resources, Hydraulics & Hydrology/proceedings of The 4th Iasme/wseas Int Conf On Geology and Seismology = Energy. Environ. Eng. S. Proceedings of The 5th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics (fma '07) = Ma Comput Sci Eng Proceedings of The 5th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics (fma '07) = Ma. Comput. Sci. Eng. Proceedings of The 5th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics (fma '07) = Math Comput Sci Eng Proceedings of The 5th Iasme/wseas International Conference On Fluid Mechanics and Aerodynamics (fma '07) = Math. Comput. Sci. Eng. Proceedings of The 5th Integral Workshop On The Integral Universe = Esa Spec Publ Proceedings of The 5th Integral Workshop On The Integral Universe = Esa. Spec. Publ. Proceedings of The 5th Integral Workshop On The Integral Universe = Esa Sp Publ Proceedings of The 5th Integral Workshop On The Integral Universe = Esa. Sp. Publ. Proceedings of The 5th International Conference On Space Optics (icso 2004) = Esa Spec Publ Proceedings of The 5th International Conference On Space Optics (icso 2004) = Esa. Spec. Publ. Proceedings of The 5th International Conference On Space Optics (icso 2004) = Esa Sp Publ Proceedings of The 5th International Conference On Space Optics (icso 2004) = Esa. Sp. Publ. Proceedings of The 5th International Peach Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The 5th International Peach Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The 5th International Postharvest Symposium, Vols 1-3 = Acta Hortic Proceedings of The 5th International Postharvest Symposium, Vols 1-3 = Acta. Hortic. Proceedings of The 5th Wseas International Conference On Applied and Theoretical Mechanics (mechanics '09) = Ma Comput Sci Eng Proceedings of The 5th Wseas International Conference On Applied and Theoretical Mechanics (mechanics '09) = Ma. Comput. Sci. Eng. Proceedings of The 5th Wseas International Conference On Applied and Theoretical Mechanics (mechanics '09) = Math Comput Sci Eng Proceedings of The 5th Wseas International Conference On Applied and Theoretical Mechanics (mechanics '09) = Math. Comput. Sci. Eng. Proceedings of The 5th Wseas International Conference On Heat and Mass Transfer (hmt '08) = Ma Comput Sci Eng Proceedings of The 5th Wseas International Conference On Heat and Mass Transfer (hmt '08) = Ma. Comput. Sci. Eng. Proceedings of The 6th Australasian Computer Systems Architecture Conference, Acsac 2001 = Aust Comp S Proceedings of The 6th Australasian Computer Systems Architecture Conference, Acsac 2001 = Aust. Comp. S. Proceedings of The 6th Cirp-sponsored International Conference On Digital Enterprise Technology = Adv Intell Soft Comp Proceedings of The 6th Cirp-sponsored International Conference On Digital Enterprise Technology = Adv. Intell. Soft. Comp. Proceedings of The 6th Cirp-sponsored International Conference On Digital Enterprise Technology = Adv Intel Soft Compu Proceedings of The 6th Cirp-sponsored International Conference On Digital Enterprise Technology = Adv. Intel. Soft. Compu. Proceedings of The 6th Iasme/wseas International Conference On Heat Transfer, Thermal Engineering and Environment (hte'08), Pts I and Ii = Wseas Mech Eng Ser Proceedings of The 6th Iasme/wseas International Conference On Heat Transfer, Thermal Engineering and Environment (hte'08), Pts I and Ii = Wseas. Mech. Eng. Ser. Proceedings of The 6th International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta Hortic Proceedings of The 6th International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta. Hortic. Proceedings of The 6th International Symposium On Kiwifruit, Vols 1 and 2 = Acta Hortic Proceedings of The 6th International Symposium On Kiwifruit, Vols 1 and 2 = Acta. Hortic. Proceedings of The 6th Us Mine Ventilation Symposium = Us Mine Ven Proceedings of The 6th Us Mine Ventilation Symposium = Us Mine Ven. Proceedings of The 6th Wseas International Conference On Applied Computer Science = Ele Com Eng Proceedings of The 6th Wseas International Conference On Applied Computer Science = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On Applied Electromagnetics, Wireless and Optical Communications (elecrtroscience '08) = Rec Adv Electr Eng Proceedings of The 6th Wseas International Conference On Applied Electromagnetics, Wireless and Optical Communications (elecrtroscience '08) = Rec. Adv. Electr. Eng. Proceedings of The 6th Wseas International Conference On E-activities = Ele Com Eng Proceedings of The 6th Wseas International Conference On E-activities = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On Education and Educational Technology (edu'07) = Ele Com Eng Proceedings of The 6th Wseas International Conference On Education and Educational Technology (edu'07) = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On Engineering Education = Ma Comput Sci Eng Proceedings of The 6th Wseas International Conference On Engineering Education = Ma. Comput. Sci. Eng. Proceedings of The 6th Wseas International Conference On Engineering Education = Math Comput Sci Eng Proceedings of The 6th Wseas International Conference On Engineering Education = Math. Comput. Sci. Eng. Proceedings of The 6th Wseas International Conference On Information Security and Privacy (isp '07) = Ele Com Eng Proceedings of The 6th Wseas International Conference On Information Security and Privacy (isp '07) = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On Microelectronics, Nanoelectronics and Optoelectronics = Ele Com Eng Proceedings of The 6th Wseas International Conference On Microelectronics, Nanoelectronics and Optoelectronics = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On System Science and Simulation in Engineering (icossse '07) = Ele Com Eng Proceedings of The 6th Wseas International Conference On System Science and Simulation in Engineering (icossse '07) = Ele. Com. Eng. Proceedings of The 6th Wseas International Conference On Telecommunications and Informatics (tele-info '07)/ 6th Wseas International Conference On Signal Processing (sip '07) = Ele Com Eng Proceedings of The 6th Wseas International Conference On Telecommunications and Informatics (tele-info '07)/ 6th Wseas International Conference On Signal Processing (sip '07) = Ele. Com. Eng. Proceedings of The 75th Annual Meeting of The National Association of Schools of Music = P Am Natl Assoc Sch Proceedings of The 75th Annual Meeting of The National Association of Schools of Music = P. Am. Natl. Assoc. Sch. Proceedings of The 76th Annual Road School = Engn B P-en Proceedings of The 76th Annual Road School = Engn. B. P-en. Proceedings of The 77th Conference of The Deutsche Gesellschaft Fur Pathologie = Verh Deut G Proceedings of The 77th Conference of The Deutsche Gesellschaft Fur Pathologie = Verh. Deut. G. Proceedings of The 7th Electronics Packaging Technology Conference, Vols. 1 and 2 = El Packag Tech Conf Proceedings of The 7th Electronics Packaging Technology Conference, Vols. 1 and 2 = El. Packag. Tech. Conf. Proceedings of The 7th European Conference On Radiation and Its Effects On Components and Systems = Esa Spec Publ Proceedings of The 7th European Conference On Radiation and Its Effects On Components and Systems = Esa. Spec. Publ. Proceedings of The 7th European Conference On Radiation and Its Effects On Components and Systems = Esa Sp Publ Proceedings of The 7th European Conference On Radiation and Its Effects On Components and Systems = Esa. Sp. Publ. Proceedings of The 7th International Conference Vibroengineering 2008 = Vibroengineering Kau Proceedings of The 7th International Conference Vibroengineering 2008 = Vibroengineering Kau. Proceedings of The 7th International Symposium On Plum and Prune Genetics Breeding and Pomology = Acta Hortic Proceedings of The 7th International Symposium On Plum and Prune Genetics Breeding and Pomology = Acta. Hortic. Proceedings of The 7th International Wadden Sea Symposium, Ameland 1990 = Neth Inst S Proceedings of The 7th International Wadden Sea Symposium, Ameland 1990 = Neth. Inst. S. Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Iii = Oaw Denkschriften Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Iii = Oaw. Denkschriften. Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Iv = Oaw Denkschriften Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Iv = Oaw. Denkschriften. Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Vii = Oaw Denkschriften Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Vii = Oaw. Denkschriften. Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Vi = Oaw Denkschriften Proceedings of The 7th Seminar of The International Association for Tibetan Studies, Graz 1995, Vol Vi = Oaw. Denkschriften. Proceedings of The 7th Spacecraft Charging Technology Conference = Esa Spec Publ Proceedings of The 7th Spacecraft Charging Technology Conference = Esa. Spec. Publ. Proceedings of The 7th Spacecraft Charging Technology Conference = Esa Sp Publ Proceedings of The 7th Spacecraft Charging Technology Conference = Esa. Sp. Publ. Proceedings of The 7th World Congress On Pain = Prog Pain Res Manag Proceedings of The 7th World Congress On Pain = Prog. Pain Res. Manag. Proceedings of The 7th Wseas International Conference On Applied Computer Science = Ele Com Eng Proceedings of The 7th Wseas International Conference On Applied Computer Science = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Applied Informatics and Communications = Ele Com Eng Proceedings of The 7th Wseas International Conference On Applied Informatics and Communications = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Circuits, Systems, Electronics, Control and Signal Processing (csecs'08) = Ele Com Eng Proceedings of The 7th Wseas International Conference On Circuits, Systems, Electronics, Control and Signal Processing (csecs'08) = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Computational Intelligence, Man-machine Systems and Cybernetics (cimmacs '08) = Ele Com Eng Proceedings of The 7th Wseas International Conference On Computational Intelligence, Man-machine Systems and Cybernetics (cimmacs '08) = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Data Networks, Communications, Computers (dncoco '08) = Rec Adv Comput Eng Proceedings of The 7th Wseas International Conference On Data Networks, Communications, Computers (dncoco '08) = Rec. Adv. Comput. Eng. Proceedings of The 7th Wseas International Conference On E-activities = Ele Com Eng Proceedings of The 7th Wseas International Conference On E-activities = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Multimedia Systems & Signal Processing = Ele Com Eng Proceedings of The 7th Wseas International Conference On Multimedia Systems & Signal Processing = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision (iscgav'-07) = Ele Com Eng Proceedings of The 7th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision (iscgav'-07) = Ele. Com. Eng. Proceedings of The 7th Wseas International Conference On System Science and Simulation in Engineering (icossse '08) = Ma Comput Sci Eng Proceedings of The 7th Wseas International Conference On System Science and Simulation in Engineering (icossse '08) = Ma. Comput. Sci. Eng. Proceedings of The 7th Wseas International Conference On System Science and Simulation in Engineering (icossse '08) = Math Comput Sci Eng Proceedings of The 7th Wseas International Conference On System Science and Simulation in Engineering (icossse '08) = Math. Comput. Sci. Eng. Proceedings of The 7th Wseas International Conference On Systems Theory and Scientific Computation (istacs'07) = Ele Com Eng Proceedings of The 7th Wseas International Conference On Systems Theory and Scientific Computation (istacs'07) = Ele. Com. Eng. Proceedings of The 7th Wses International Conference On Power Systems = Ele Com Eng Proceedings of The 7th Wses International Conference On Power Systems = Ele. Com. Eng. Proceedings of The 83rd Meeting of The German Zoological Society = Verh Deut Z Proceedings of The 83rd Meeting of The German Zoological Society = Verh. Deut. Z. Proceedings of The 85th Annual Meeting of The American Society of International Law = P Am S In L Proceedings of The 85th Annual Meeting of The American Society of International Law = P. Am. S. In. L. Proceedings of The 86th Annual Meeting of The American Society of International Law = P Am S In L Proceedings of The 86th Annual Meeting of The American Society of International Law = P. Am. S. In. L. Proceedings of The 87th Annual Meeting - The American Society of International Law = P Am S In L Proceedings of The 87th Annual Meeting - The American Society of International Law = P. Am. S. In. L. Proceedings of The 8th Aschersleben Symposium On New Aspects of Resistance Research On Cultivated Plants = Beitrage Zf Proceedings of The 8th Aschersleben Symposium On New Aspects of Resistance Research On Cultivated Plants = Beitrage. Zf. Proceedings of The 8th European Space Mechanisms and Tribology Symposium = Esa Sp Publ Proceedings of The 8th European Space Mechanisms and Tribology Symposium = Esa. Sp. Publ. Proceedings of The 8th Great Lakes Symposium On Vlsi = Pr Gr Lak Symp Vlsi Proceedings of The 8th Great Lakes Symposium On Vlsi = Pr. Gr. Lak. Symp. Vlsi Proceedings of The 8th International Conference On Applications of Electrical Engineering/8th International Conference On Applied Electromagnetics, Wireless and Optical Communications = Ele Com Eng Proceedings of The 8th International Conference On Applications of Electrical Engineering/8th International Conference On Applied Electromagnetics, Wireless and Optical Communications = Ele. Com. Eng. Proceedings of The 8th International Conference On Computer Supported Cooperative Work in Design, Vol 1 = Int C Comp Supp Coop Proceedings of The 8th International Conference On Computer Supported Cooperative Work in Design, Vol 1 = Int. C. Comp. Supp. Coop. Proceedings of The 8th International Conference On Computer Supported Cooperative Work in Design, Vol 2 = Int C Comp Supp Coop Proceedings of The 8th International Conference On Computer Supported Cooperative Work in Design, Vol 2 = Int. C. Comp. Supp. Coop. Proceedings of The 8th International Conference On Environmental Science and Technology, Vol A, Oral Presentations = Proc Int Conf Env Sc Proceedings of The 8th International Conference On Environmental Science and Technology, Vol A, Oral Presentations = Proc. Int. Conf. Env. Sc. Proceedings of The 8th International Conference On Environmental Science and Technology, Vol B, Poster Presentations = Proc Int Conf Env Sc Proceedings of The 8th International Conference On Environmental Science and Technology, Vol B, Poster Presentations = Proc. Int. Conf. Env. Sc. Proceedings of The 8th International Conference On Grape Genetics and Breeding, Vols 1 and 2 = Acta Hortic Proceedings of The 8th International Conference On Grape Genetics and Breeding, Vols 1 and 2 = Acta. Hortic. Proceedings of The 8th International Controlled Atmosphere Research Conference, Vols I and Ii = Acta Hortic Proceedings of The 8th International Controlled Atmosphere Research Conference, Vols I and Ii = Acta. Hortic. Proceedings of The 8th International Nannoplankton Association Conference = Cour For Sekenbg Proceedings of The 8th International Nannoplankton Association Conference = Cour. For. Sekenbg. Proceedings of The 8th International Symposium On Vaccinium Culture = Acta Hortic Proceedings of The 8th International Symposium On Vaccinium Culture = Acta. Hortic. Proceedings of The 8th World Congress On Pain = Prog Pain Res Manag Proceedings of The 8th World Congress On Pain = Prog. Pain Res. Manag. Proceedings of The 8th Wseas International Conference On Applied Computer and Applied Computational Science = Ele Com Eng Proceedings of The 8th Wseas International Conference On Applied Computer and Applied Computational Science = Ele. Com. Eng. Proceedings of The 8th Wseas International Conference On Applied Computer Science (acs'08) = Rec Adv Comput Eng Proceedings of The 8th Wseas International Conference On Applied Computer Science (acs'08) = Rec. Adv. Comput. Eng. Proceedings of The 8th Wseas International Conference On Applied Electromagnetics, Wireless and Optical Communications = Rec Adv Electr Eng Proceedings of The 8th Wseas International Conference On Applied Electromagnetics, Wireless and Optical Communications = Rec. Adv. Electr. Eng. Proceedings of The 8th Wseas International Conference On Applied Informatics and Communications, Pts I and Ii = Rec Adv Comput Eng Proceedings of The 8th Wseas International Conference On Applied Informatics and Communications, Pts I and Ii = Rec. Adv. Comput. Eng. Proceedings of The 8th Wseas International Conference On Artificial Intelligence, Knowledge Engineering and Data Bases = Artif Int Ser Wseas Proceedings of The 8th Wseas International Conference On Artificial Intelligence, Knowledge Engineering and Data Bases = Artif. Int. Ser. Wseas Proceedings of The 8th Wseas International Conference On Circuits, Systems, Electronics, Control & Signal Processing (csecs'09) = Ele Com Eng Proceedings of The 8th Wseas International Conference On Circuits, Systems, Electronics, Control & Signal Processing (csecs'09) = Ele. Com. Eng. Proceedings of The 8th Wseas International Conference On Data Networks, Communications, Computers (dncoco '09) = Rec Adv Comput Eng Proceedings of The 8th Wseas International Conference On Data Networks, Communications, Computers (dncoco '09) = Rec. Adv. Comput. Eng. Proceedings of The 8th Wseas International Conference On Electric Power Systems, High Voltages, Electric Machines = Rec Adv Electr Eng Proceedings of The 8th Wseas International Conference On Electric Power Systems, High Voltages, Electric Machines = Rec. Adv. Electr. Eng. Proceedings of The 8th Wseas International Conference On Instrumentation, Measurement, Circuits and Systems = Ele Com Eng Proceedings of The 8th Wseas International Conference On Instrumentation, Measurement, Circuits and Systems = Ele. Com. Eng. Proceedings of The 8th Wseas International Conference On Recent Advances in Signal Processing, Robotics and Automation = Ma Comput Sci Eng Proceedings of The 8th Wseas International Conference On Recent Advances in Signal Processing, Robotics and Automation = Ma. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On Recent Advances in Signal Processing, Robotics and Automation = Math Comput Sci Eng Proceedings of The 8th Wseas International Conference On Recent Advances in Signal Processing, Robotics and Automation = Math. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On Signal, Speech and Image Processing (ssip '08) = Rec Adv Comput Eng Proceedings of The 8th Wseas International Conference On Signal, Speech and Image Processing (ssip '08) = Rec. Adv. Comput. Eng. Proceedings of The 8th Wseas International Conference On System Science and Simulation in Engineering (icossse '09) = Ma Comput Sci Eng Proceedings of The 8th Wseas International Conference On System Science and Simulation in Engineering (icossse '09) = Ma. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On System Science and Simulation in Engineering (icossse '09) = Math Comput Sci Eng Proceedings of The 8th Wseas International Conference On System Science and Simulation in Engineering (icossse '09) = Math. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On Systems Theory and Scientific Computation (istac'08) = Ma Comput Sci Eng Proceedings of The 8th Wseas International Conference On Systems Theory and Scientific Computation (istac'08) = Ma. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On Systems Theory and Scientific Computation (istac'08) = Math Comput Sci Eng Proceedings of The 8th Wseas International Conference On Systems Theory and Scientific Computation (istac'08) = Math. Comput. Sci. Eng. Proceedings of The 8th Wseas International Conference On Telecommunications and Informatics = Ele Com Eng Proceedings of The 8th Wseas International Conference On Telecommunications and Informatics = Ele. Com. Eng. Proceedings of The 9th Annual Conference On Hazardous Waste Remediation = P Haz Wast Remed Proceedings of The 9th Annual Conference On Hazardous Waste Remediation = P. Haz. Wast. Remed. Proceedings of The 9th Annual Linguistics Conference (1995) = Ciral Pub B Proceedings of The 9th Annual Linguistics Conference (1995) = Ciral. Pub. B. Proceedings of The 9th Australasian Database Conference, Adc'98 = Aust Comp S Proceedings of The 9th Australasian Database Conference, Adc'98 = Aust. Comp. S. Proceedings of The 9th Gifco Conference What Are The Prospects for Cosmic Physics in Italy? = Soc Ital Fi Proceedings of The 9th Gifco Conference What Are The Prospects for Cosmic Physics in Italy? = Soc. Ital. Fi. Proceedings of The 9th International Conference On Environmental Science and Technology, Vol A - Oral Presentations, Pts A and B = Proc Int Conf Env Sc Proceedings of The 9th International Conference On Environmental Science and Technology, Vol A - Oral Presentations, Pts A and B = Proc. Int. Conf. Env. Sc. Proceedings of The 9th International Pear Symposium = Acta Hortic Proceedings of The 9th International Pear Symposium = Acta. Hortic. Proceedings of The 9th International Polychaete Conference = Zoosymposia Proceedings of The 9th International Polychaete Conference = Zoosymposia. Proceedings of The 9th International Symposium On Materials in A Space Environment = Esa Spec Publ Proceedings of The 9th International Symposium On Materials in A Space Environment = Esa. Spec. Publ. Proceedings of The 9th International Symposium On Materials in A Space Environment = Esa Sp Publ Proceedings of The 9th International Symposium On Materials in A Space Environment = Esa. Sp. Publ. Proceedings of The 9th International Symposium On Small Fruit Virus Diseases = Acta Hortic Proceedings of The 9th International Symposium On Small Fruit Virus Diseases = Acta. Hortic. Proceedings of The 9th International Symposium On Timing of Field Production in Vegetable Crops = Acta Hortic Proceedings of The 9th International Symposium On Timing of Field Production in Vegetable Crops = Acta. Hortic. Proceedings of The 9th World Congress On Pain = Prog Pain Res Manag Proceedings of The 9th World Congress On Pain = Prog. Pain Res. Manag. Proceedings of The 9th Wseas International Conference On Artificial Intelligence, Knowledge Engineering and Data Bases = Artif Int Ser Wseas Proceedings of The 9th Wseas International Conference On Artificial Intelligence, Knowledge Engineering and Data Bases = Artif. Int. Ser. Wseas Proceedings of The 9th Wseas International Conference On Automatic Control, Modeling & Simulation = Ele Com Eng Proceedings of The 9th Wseas International Conference On Automatic Control, Modeling & Simulation = Ele. Com. Eng. Proceedings of The 9th Wseas International Conference On Automation and Information = Rec Adv Electr Eng Proceedings of The 9th Wseas International Conference On Automation and Information = Rec. Adv. Electr. Eng. Proceedings of The 9th Wseas International Conference On Fuzzy Systems = Artif Int Ser Wseas Proceedings of The 9th Wseas International Conference On Fuzzy Systems = Artif. Int. Ser. Wseas Proceedings of The 9th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '07)/ Dncoco '07 = Ele Com Eng Proceedings of The 9th Wseas International Conference On Mathematical and Computational Methods in Science and Engineering (macmese '07)/ Dncoco '07 = Ele. Com. Eng. Proceedings of The 9th Wseas International Conference On Mathematics & Computers in Business and Economics (mcbe '08) = Rec Adv Comput Eng Proceedings of The 9th Wseas International Conference On Mathematics & Computers in Business and Economics (mcbe '08) = Rec. Adv. Comput. Eng. Proceedings of The 9th Wseas International Conference On Neural Networks (nn' 08) = Artif Int Ser Wseas Proceedings of The 9th Wseas International Conference On Neural Networks (nn' 08) = Artif. Int. Ser. Wseas Proceedings of The 9th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision (iscgav'09) = Rec Adv Comput Eng Proceedings of The 9th Wseas International Conference On Signal Processing, Computational Geometry and Artificial Vision (iscgav'09) = Rec. Adv. Comput. Eng. Proceedings of The 9th Wseas International Conference On Signals, Speech and Image Processing/9th Wseas International Conference On Multimedia, Internet & Video Technologies = Rec Adv Comput Eng Proceedings of The 9th Wseas International Conference On Signals, Speech and Image Processing/9th Wseas International Conference On Multimedia, Internet & Video Technologies = Rec. Adv. Comput. Eng. Proceedings of The 9th Wseas International Conference On Simulation, Modelling and Optimization = Ma Comput Sci Eng Proceedings of The 9th Wseas International Conference On Simulation, Modelling and Optimization = Ma. Comput. Sci. Eng. Proceedings of The 9th Wseas International Conference On Simulation, Modelling and Optimization = Math Comput Sci Eng Proceedings of The 9th Wseas International Conference On Simulation, Modelling and Optimization = Math. Comput. Sci. Eng. Proceedings of The Academy of Marketing Science's Fourth Quality-of-life/marketing Conference = Dev Qual Lif Stud Proceedings of The Academy of Marketing Science's Fourth Quality-of-life/marketing Conference = Dev. Qual. Lif. Stud. Proceedings of The Academy of Natural Sciences of Philadelphia = P Acad Nat Sci Phila Proceedings of The Academy of Natural Sciences of Philadelphia = P. Acad. Nat. Sci. Phila. Proceedings of The Academy of Political Science = P Acad Polit Sci Proceedings of The Academy of Political Science = P. Acad. Polit. Sci. Proceedings of the Academy of Political Science = Proc Acad Polit Sci Proceedings of The Academy of Political Science Series = Proc Acad P Proceedings of The Academy of Political Science Series = Proc. Acad. P. Proceedings of The Acm International Workshop On Mobility Management and Wireless Access-mobiwac = I W Mob Man Wirel Ac Proceedings of The Acm International Workshop On Mobility Management and Wireless Access-mobiwac = I. W. Mob. Man. Wirel. Ac. Proceedings of The Acm International Workshop On Mobility Management and Wireless Access Mobiwac = I W Mob Man Wirel Ac Proceedings of The Acm International Workshop On Mobility Management and Wireless Access Mobiwac = I. W. Mob. Man. Wirel. Ac. Proceedings of The Acm Sigsoft 89 = Acm Sigsoft Proceedings of the AESF Annual Technical Conference = Proc. - AESF Annu. Tech. Conf. Proceedings of The Agronomy Society of New Zealand = P Ag Soc Nz Proceedings of The Agronomy Society of New Zealand = P. Ag. Soc. Nz. Proceedings of The All-polish Seminar On Mossbauer Spectroscopy = Molecul Phys Rep Proceedings of The All-polish Seminar On Mossbauer Spectroscopy = Molecul. Phys. Rep. Proceedings of The American Academy and Institute of Arts and Letters = P Am Acad I Art Lett Proceedings of The American Academy and Institute of Arts and Letters = P. Am. Acad. I. Art. Lett. Proceedings of The American Academy for Jewish Research = P Am Ac Jew Proceedings of The American Academy for Jewish Research = P. Am. Ac. Jew. Proceedings of The American Academy for Jewish Research, Vol 55 = P Am Ac Jew Proceedings of The American Academy for Jewish Research, Vol 55 = P. Am. Ac. Jew. Proceedings of The American Academy of Arts and Letters and The National Institute of Arts and Letters = P Am Acad Arts Lett Proceedings of The American Academy of Arts and Letters and The National Institute of Arts and Letters = P. Am. Acad. Arts Lett. Proceedings of The American Academy of Arts and Sciences = P Am Acad Arts Sci Proceedings of The American Academy of Arts and Sciences = P. Am. Acad. Arts Sci. Proceedings of The American Academy of Cardiovascular Perfusion = P Am Ac Car Proceedings of The American Academy of Cardiovascular Perfusion = P. Am. Ac. Car. Proceedings of The American Academy of Cardiovascular Perfusion, Vol 12 = P Am Ac Car Proceedings of The American Academy of Cardiovascular Perfusion, Vol 12 = P. Am. Ac. Car. Proceedings of The American Academy of Cardiovascular Perfusion, Vol 13 = P Am Ac Car Proceedings of The American Academy of Cardiovascular Perfusion, Vol 13 = P. Am. Ac. Car. Proceedings of The American Academy of Cardiovascular Perfusion, Vol 14 Jan, 1993 = P Am Ac Car Proceedings of The American Academy of Cardiovascular Perfusion, Vol 14 Jan, 1993 = P. Am. Ac. Car. Proceedings of The American Academy of Cardiovascular Perfusion, Vol 9 = P Am Ac Car Proceedings of The American Academy of Cardiovascular Perfusion, Vol 9 = P. Am. Ac. Car. Proceedings of the American Antiquarian Society. American Antiquarian Society = Proc Am Antiq Soc Proceedings of The American Antiquarian Society = P Am Antiquarian Soc Proceedings of The American Antiquarian Society = P. Am. Antiquarian Soc. Proceedings of The American Association for Cancer Research = P Am Assoc Canc Res Proceedings of The American Association for Cancer Research = P. Am. Assoc. Canc. Res. Proceedings of the American Association for Cancer Research = Proc Am Assoc Cancer Res Proceedings of The American Catholic Philosophical Association: Forgiveness, Vol 82 = P Am Cath Philos Ass Proceedings of The American Catholic Philosophical Association: Forgiveness, Vol 82 = P. Am. Cath. Philos. Ass. Proceedings of the American Catholic Philosophical Association / Office of the National Secretary of the Association, Catholic University of America = Proc Am Cathol Philos Assoc Proceedings of the American Catholic Philosophical Association = PACPhA Proceedings of The American Catholic Philosophical Association = P Am Cath Philos Ass Proceedings of The American Catholic Philosophical Association = P. Am. Cath. Philos. Ass. Proceedings of The American Catholic Philosophical Association, Vol 62 = P Am Cath Philos Ass Proceedings of The American Catholic Philosophical Association, Vol 62 = P. Am. Cath. Philos. Ass. Proceedings of The American Catholic Philosophical Association, Vol 65 = P Am Cath Philos Ass Proceedings of The American Catholic Philosophical Association, Vol 65 = P. Am. Cath. Philos. Ass. Proceedings of The American Conference On Applied Mathematics = Ma Comput Sci Eng Proceedings of The American Conference On Applied Mathematics = Ma. Comput. Sci. Eng. Proceedings of The American Conference On Applied Mathematics = Math Comput Sci Eng Proceedings of The American Conference On Applied Mathematics = Math. Comput. Sci. Eng. Proceedings of The American Control Conference = P Amer Contr Conf Proceedings of The American Control Conference = P. Amer. Contr. Conf. Proceedings of The American Mathematical Society = P Am Math Soc Proceedings of The American Mathematical Society = P. Am. Math. Soc. Proceedings of the American Mathematical Society = Proc. Amer. Math. Soc. Proceedings of The American Philosophical Society = P Am Philos Soc Proceedings of The American Philosophical Society = P. Am. Philos. Soc. Proceedings of the American Philosophical Society = PAPHS Proceedings of the American Philosophical Society = Proc Am Philos Soc Proceedings of The American Power Conference = Proc Amer Power Conf Proceedings of The American Power Conference = Proc. Amer. Power Conf. Proceedings of the American Power Conference = Proc. Am. Power Conf. Proceedings of The American Power Conference: Putting Technology to Work, Vol 56, I and Ii = Proc Amer Power Conf Proceedings of The American Power Conference: Putting Technology to Work, Vol 56, I and Ii = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 54, Pt 1 and 2 = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 54, Pt 1 and 2 = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 55, Pts I & Ii = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 55, Pts I & Ii = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 57, Pts 1-3 = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 57, Pts 1-3 = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 58, Pts I and Ii = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 58, Pts I and Ii = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 59, I and Ii = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 59, I and Ii = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 59 - Pts I and Ii = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 59 - Pts I and Ii = Proc. Amer. Power Conf. Proceedings of The American Power Conference, Vol 61 - I and Ii = Proc Amer Power Conf Proceedings of The American Power Conference, Vol 61 - I and Ii = Proc. Amer. Power Conf. Proceedings of The American Society for Horticultural Science = P Am Soc Hortic Sci Proceedings of The American Society for Horticultural Science = P. Am. Soc. Hortic. Sci. Proceedings of The American Society for Information Science = P Am Soc Inform Sci Proceedings of The American Society for Information Science = P. Am. Soc. Inform. Sci. Proceedings of the American Society of Brewing Chemists = Proc. Am. Soc. Brew. Chem. Proceedings of The American Society of International Law = P Am Soc Int Law Proceedings of The American Society of International Law = P. Am. Soc. Int. Law Proceedings of the American Thoracic Society = Proc Am Thorac Soc Proceedings of the American Thoracic Society = Proc. Am. Thorac. Soc. Proceedings of the Analytical Division of the Chemical Society = Proc. Anal. Div. Chem. Soc. Proceedings of The Annual Boston University Conference On Language Development = Proc Ann Bucld Proceedings of The Annual Boston University Conference On Language Development = Proc. Ann. Bucld. Proceedings of the Annual Clinical Spinal Cord Injury Conference = Proc. Annu. Clin. Spinal Cord Inj. Conf. Proceedings of The Annual Conference and Exposition National Micrographics Association = P Annu Conf Nat Micr Proceedings of The Annual Conference and Exposition National Micrographics Association = P. Annu. Conf. Nat. Micr. Proceedings of The Annual Conference of The Canadian Nuclear Society = P Can Nuc S Proceedings of The Annual Conference of The Canadian Nuclear Society = P. Can. Nuc. S. Proceedings of The Annual Conference On Hazardous Waste Remediation = P Haz Wast Remed Proceedings of The Annual Conference On Hazardous Waste Remediation = P. Haz. Wast. Remed. Proceedings of the ... annual Conference on Research in Medical Education. Conference on Research in Medical Education = Proc Annu Conf Res Med Educ Proceedings of the Annual Conference on Research in Medical Education = Proc. Annu. Conf. Res. Med. Educ. Proceedings of The Annual Conference On Taxation = P A Con Tax Proceedings of The Annual Conference On Taxation = P. A. Con. Tax. Proceedings of The Annual Congress of The South African Sugar Technologists Association = P S Afr Sug Proceedings of The Annual Congress of The South African Sugar Technologists Association = P. S. Afr. Sug. Proceedings of The Annual Convention of The American Association of Equine Practitioners = P Annu Conv Am Equin Proceedings of The Annual Convention of The American Association of Equine Practitioners = P. Annu. Conv. Am. Equin. Proceedings of The Annual Eastern Snow Conference = Proc Ann E Snow Conf Proceedings of The Annual Eastern Snow Conference = Proc. Ann. E. Snow Conf. Proceedings of The Annual Hawaii International Conference On System Sciences = P Ann Hicss Proceedings of The Annual Hawaii International Conference On System Sciences = P. Ann. Hicss. Proceedings of The Annual International Conference of The Ieee Engineering in Medicine and Biology Society = P Ieee Embs Proceedings of The Annual International Conference of The Ieee Engineering in Medicine and Biology Society = P. Ieee Embs. Proceedings of The Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 14, Pts 1-7 = P Ieee Embs Proceedings of The Annual International Conference of The Ieee Engineering in Medicine and Biology Society, Vol 14, Pts 1-7 = P. Ieee Embs. Proceedings of The Annual Meeting - American Society of International Law = P Am S In L Proceedings of The Annual Meeting - American Society of International Law = P. Am. S. In. L. Proceedings of the annual meeting of the American Psychopathological Association = Proc Annu Meet Am Psychopathol Assoc Proceedings of the Annual Meeting of the American Psychopathological Association = Proc. Annu. Meet. Am. Psychopathol. Assoc. Proceedings of The Annual Meeting of The Association for Continuing Higher Education = P Assn Cont Proceedings of The Annual Meeting of The Association for Continuing Higher Education = P. Assn. Cont. Proceedings of The Annual Meeting of The National Academy of Arbitrators = P Ann Meet Proceedings of The Annual Meeting of The National Academy of Arbitrators = P. Ann. Meet. Proceedings of the ... annual Meeting of the Western Society for French History. Western Society for French History. Meeting = Proc Annu Meet West Soc Fr Hist Proceedings of The Annual Simulation Symposia = Proc Annu Simul Symp Proceedings of The Annual Simulation Symposia = Proc. Annu. Simul. Symp. Proceedings of the annual symposium of the Eugenics Society = Proc Annu Symp Eugen Soc Proceedings of the Annual Symposium of the Eugenics Society = Proc. Annu. Symp. Eugen. Soc. Proceedings of The Annual Western Australian Science Education Association Conference = P A Wesea Conf Proceedings of The Annual Western Australian Science Education Association Conference = P. A. Wesea. Conf. Proceedings of The Apl98 Conference = Apl Quote Quad Proceedings of The Apl98 Conference = Apl. Quote. Quad. Proceedings of The Apl99 Conference - Apl99: On Track to The 21st Century = Apl Quote Quad Proceedings of The Apl99 Conference - Apl99: On Track to The 21st Century = Apl. Quote. Quad. Proceedings of The Applied Telecommunications Symposium (ats'99) = Simul Series Proceedings of The Applied Telecommunications Symposium (ats'99) = Simul. Series. Proceedings of The Applying Lasers in Education Symposium - Icaleo '93 = P Laser Ins Proceedings of The Applying Lasers in Education Symposium - Icaleo '93 = P. Laser. Ins. Proceedings of The Arab School On Science and Technology = P Arab Sch Proceedings of The Arab School On Science and Technology = P. Arab Sch. Proceedings of The Arctic Opportunities Conference = U Lap A C R Proceedings of The Arctic Opportunities Conference = U. Lap. A. C. R. Proceedings of The Aristotelian Society, New Series, Vol 91 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 91 = P. Aristotelian Soc. Proceedings of The Aristotelian Society : New Series, Vol 92 = P Aristotelian Soc Proceedings of The Aristotelian Society : New Series, Vol 92 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol 93 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 93 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol 94 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 94 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol 94, Pt 3 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 94, Pt 3 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol 95 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 95 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol 95, Pt 1 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol 95, Pt 1 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol Xcvii, Pt 1 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol Xcvii, Pt 1 = P. Aristotelian Soc. Proceedings of The Aristotelian Society, New Series, Vol Xcvii Pt 2 = P Aristotelian Soc Proceedings of The Aristotelian Society, New Series, Vol Xcvii Pt 2 = P. Aristotelian Soc. Proceedings of The Aristotelian Society = P Aristotelian Soc Proceedings of The Aristotelian Society = P. Aristotelian Soc. Proceedings of the Aristotelian Society = PAS Proceedings of the Aristotelian Society. Supplementary volume. = PAS(suppl) Proceedings of The Arkansas Water Resources Research Center Research Conference = Arkansas Aes Spec Re Proceedings of The Arkansas Water Resources Research Center Research Conference = Arkansas Aes. Spec. Re. Proceedings of The Asbestos Symposium for The Countries of Central and Eastern Europe = People Work Res Rep Proceedings of The Asbestos Symposium for The Countries of Central and Eastern Europe = People. Work. Res. Rep. Proceedings of The Asis Annual Meeting = P Asis Annu Meet Proceedings of The Asis Annual Meeting = P. Asis Annu. Meet. Proceedings of The Asis Annual Meetings = P Asis Ann Proceedings of The Asis Annual Meetings = P. Asis Ann. Proceedings of The Asist Annual Meeting = P Asist Annu Proceedings of The Asist Annual Meeting = P. Asist Annu. Proceedings of The Asme Advanced Energy Systems Division = Adv Energy Syst Div Proceedings of The Asme Advanced Energy Systems Division = Adv. Energy Syst. Div. Proceedings of The Asme Applied Mechanics Division = Appl Mech Div Asme Proceedings of The Asme Applied Mechanics Division = Appl. Mech. Div. Asme Proceedings of The Asme Fluid Power Systems and Technology Division - 2005 = Fluid Power Syst Tec Proceedings of The Asme Fluid Power Systems and Technology Division - 2005 = Fluid Power Syst. Tec. Proceedings of The Asme Fluids Engineering Division = Fluid Eng D Proceedings of The Asme Fluids Engineering Division = Fluid. Eng. D. Proceedings of The Asme Fluids Engineering Division Summer Conference, Vol 2 = Fluid Eng D Proceedings of The Asme Fluids Engineering Division Summer Conference, Vol 2 = Fluid. Eng. D. Proceedings of The Asme Heat Transfer Division 2005, Vol 1 = Heat Transf Div Asme Proceedings of The Asme Heat Transfer Division 2005, Vol 1 = Heat Transf. Div. Asme Proceedings of The Asme Heat Transfer Division 2005, Vol 2 = Heat Transf Div Asme Proceedings of The Asme Heat Transfer Division 2005, Vol 2 = Heat Transf. Div. Asme Proceedings of The Asme Materials Division = Mater Div Asme Proceedings of The Asme Materials Division = Mater. Div. Asme Proceedings of The Asme Nondestructive Evaluation Engineering Division = Nondestruct Eval Eng Proceedings of The Asme Nondestructive Evaluation Engineering Division = Nondestruct. Eval. Eng. Proceedings of The Asme Pressure Vessels and Piping Conference - 2005, Vol 1 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference - 2005, Vol 1 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 2 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 2 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 3 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 3 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 4 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 4 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 5 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 5 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 6 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 6 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 7 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 7 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 8 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2005, Vol 8 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 1 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 1 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 2 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 2 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 3 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 3 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 4 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 4 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 6 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 6 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 7 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2007, Vol 7 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 2: Computer Technology and Bolted Joints = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 2: Computer Technology and Bolted Joints = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 3 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 3 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 4 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 4 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 5 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 5 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 6, Pts A and B = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 6, Pts A and B = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 7 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 7 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 8 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 8 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 9 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference 2010, Vol 9 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 1 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 1 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 3 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 3 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 4 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 4 = Pres. Ves. P. Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 5 = Pres Ves P Proceedings of The Asme Pressure Vessels and Piping Conference, Vol 5 = Pres. Ves. P. Proceedings of The Asme Process Industries Division 2005 = Proc Ind Div Asme Proceedings of The Asme Process Industries Division 2005 = Proc. Ind. Div. Asme Proceedings of The Asp-dac 2007 = Asia S Pacif Des Aut Proceedings of The Asp-dac 2007 = Asia. S. Pacif. Des. Aut. Proceedings of The Asp-dac 2009: Asia and South Pacific Design Automation Conference 2009 = Asia S Pacif Des Aut Proceedings of The Asp-dac 2009: Asia and South Pacific Design Automation Conference 2009 = Asia S. Pacif. Des. Aut. Proceedings of The Association of American Physicians = P Assoc Am Physician Proceedings of The Association of American Physicians = P. Assoc. Am. Physician. Proceedings of the Association of American Physicians = Proc Assoc Am Physicians Proceedings of the Association of American Physicians = Proc. Assoc. Am. Physicians Proceedings of The Association Of American Physicians=Proc Assoc Am Physicians;; Proceedings of the Australian Association of Neurologists = Proc Aust Assoc Neurol Proceedings of the Australian Association of Neurologists = Proc. Aust. Assoc. Neurol. Proceedings of The Australian Biochemical Society = P Aust Biochem Soc Proceedings of The Australian Biochemical Society = P. Aust. Biochem. Soc. Proceedings of The Australian Physiological and Pharmacological Society = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol 20, No 2 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol 20, No 2 = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol 21, No 1 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol 21, No 1 = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol 21, No 2 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol 21, No 2 = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol 22, No 1 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol 22, No 1 = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol. 27(2) December 1996 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol. 27(2) December 1996 = P. Aus. Physl. Proceedings of The Australian Physiological and Pharmacological Society, Vol 27, No 1, April, 1996 = P Aus Physl Proceedings of The Australian Physiological and Pharmacological Society, Vol 27, No 1, April, 1996 = P. Aus. Physl. Proceedings of The Australian Society of Animal Production = P Aus S Ani Proceedings of The Australian Society of Animal Production = P. Aus. S. Ani. Proceedings of The Biennial Baltic Electronics Conference = Pro Bienn Balt El C Proceedings of The Biennial Baltic Electronics Conference = Pro. Bienn. Balt. El. C. Proceedings of The Biological Society of Washington = P Biol Soc Wash Proceedings of The Biological Society of Washington = P. Biol. Soc. Wash. Proceedings of The Boston Area Colloquium in Ancient Philosophy = P Boston A Proceedings of The Boston Area Colloquium in Ancient Philosophy = P. Boston A. Proceedings of The Boston Area Colloquium in Ancient Philosophy, Vol Xiii, 1997 = P Boston A Proceedings of The Boston Area Colloquium in Ancient Philosophy, Vol Xiii, 1997 = P. Boston A. Proceedings of the Botanical Society of the British Isles. Botanical Society of the British Isles = Proc Bot Soc Br Isles Proceedings of the British Academy = PBA Proceedings of The British Academy = P Brit Acad Proceedings of The British Academy = P. Brit. Acad. Proceedings of The British Ceramic Society = P Brit Ceramic Soc Proceedings of The British Ceramic Society = P. Brit. Ceramic Soc. Proceedings of the British Paedodontic Society = Proc Br Paedod Soc Proceedings of the British Paedodontic Society = Proc. Br. Paedod. Soc. Proceedings of The British Society of Animal Production = P Brit Soc Anim Prod Proceedings of The British Society of Animal Production = P. Brit. Soc. Anim. Prod. Proceedings of the British Society of Dental and Maxillofacial Radiology = Proc Br Soc Dent Maxillofac Radiol Proceedings of the British Society of Dental and Maxillofacial Radiology = Proc. Br. Soc. Dent. Maxillofac. Radiol. Proceedings of The California Riparian Systems Conference = Us For Serv T R Psw Proceedings of The California Riparian Systems Conference = Us. For. Serv. T. R. Psw. Proceedings of The Cambridge Philological Society = P Camb Philol Soc Proceedings of The Cambridge Philological Society = P. Camb. Philol. Soc. Proceedings of the Cambridge Philological Society = PCPhS Proceedings of The Cambridge Philological Society = Pcps-p Camb Philol S Proceedings of The Cambridge Philological Society = Pcps-p. Camb. Philol. S. Proceedings of the Cambridge Philological Society = ProcCambrPhilSoc Proceedings of The Cambridge Philosophical Society-biological Sciences = P Camb Philos Soc-b Proceedings of The Cambridge Philosophical Society-biological Sciences = P. Camb. Philos. Soc-b. Proceedings of The Cambridge Philosophical Society-mathematical and Physical Sciences = Proc Camb Philos S-m Proceedings of The Cambridge Philosophical Society-mathematical and Physical Sciences = Proc. Camb. Philos. S-m. Proceedings of The Cambridge Philosophical Society = P Camb Philos Soc Proceedings of The Cambridge Philosophical Society = P. Camb. Philos. Soc. Proceedings Of The Cambridge Philosophical Society = Proc Camb Philol Soc Proceedings of the Cambridge Philosophical Society = Proc. Cambridge Philos. Soc. Proceedings of the Cardiff Medical Society = Proc. Cardiff Med. Soc. Proceedings of The Catholic Theological Society of America = Proc Cath Proceedings of The Catholic Theological Society of America = Proc. Cath. Proceedings of The Cause Annual Conference = P Cause Ann Proceedings of The Cause Annual Conference = P. Cause Ann. Proceedings of The Center for The Study of The Korean War = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War, Vol 1, No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War, Vol 1, No 1 = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War, Vol 2, No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War, Vol 2, No 1 = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War, Vol 3, No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War, Vol 3, No 1 = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War , Vol 4 , No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War , Vol 4 , No 1 = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War, Vol 5, No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War, Vol 5, No 1 = Proc. Ctr. Stud. Korean Proceedings of The Center for The Study of The Korean War, Vol 7, No 1 = Proc Ctr Stud Korean Proceedings of The Center for The Study of The Korean War, Vol 7, No 1 = Proc. Ctr. Stud. Korean Proceedings of the Centre for Mathematics and its Applications, Australian National University = Proc. Centre Math. Appl. Austral. Nat. Univ. Proceedings of The Centre for Resources Studies = P Centr Res Proceedings of The Centre for Resources Studies = P. Centr. Res. Proceedings of The Chemical Society of London = P Chem Soc London Proceedings of The Chemical Society of London = P. Chem. Soc. London Proceedings of the Chemical Society = Proc. Chem. Soc. Proceedings of the Chinese Academy of Medical Sciences and the Peking Union Medical College = Proc. Chin. Acad. Med. Sci. Peking Union Med. Coll. Proceedings of the Classical Association = PCA Proceedings of the Clinical Dialysis and Transplant Forum = Proc Clin Dial Transplant Forum Proceedings of the Clinical Dialysis and Transplant Forum = Proc. Clin. Dial. Transplant Forum Proceedings of The Coinage of The Americas Conference = Coin Amer P Proceedings of The Coinage of The Americas Conference = Coin. Amer. P. Proceedings of The Colloquium On Manned Space Stations - Legal Issues = Esa Sp Publ Proceedings of The Colloquium On Manned Space Stations - Legal Issues = Esa. Sp. Publ. Proceedings of The Combustion Institute = P Combust Inst Proceedings of The Combustion Institute = P. Combust. Inst. Proceedings of the Combustion Institute = Proc. Combust. Inst. Proceedings of The Conference : Municipal Wastewater Treatment 1991 = Wastes Proceedings of The Conference : Municipal Wastewater Treatment 1991 = Wastes. Proceedings of The Conference of The German Association of University Professors of English = P Conf Ger Proceedings of The Conference of The German Association of University Professors of English = P. Conf. Ger. Proceedings of The Conference On Cognition and Representation = Ccs Tec Rep Proceedings of The Conference On Cognition and Representation = Ccs. Tec. Rep. Proceedings of The Conference On Complex Analysis = C Pr Lect Note Appl Proceedings of The Conference On Complex Analysis = C. Pr. Lect. Note. Appl. Proceedings of The Conference On Diameter-limit Cutting in Northeastern Forests = Usda Fs Ne Res St Gt Proceedings of The Conference On Diameter-limit Cutting in Northeastern Forests = Usda. Fs. Ne. Res. St. Gt. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1992 = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1992 = P. C. Elect. B. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1993 = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1993 = P. C. Elect. B. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1994 = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1994 = P. C. Elect. B. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1998 = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 1998 = P. C. Elect. B. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 2000 Millennium Conference = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art 2000 Millennium Conference = P. C. Elect. B. Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art = P C Elect B Proceedings of The Conference On Electron Beam Melting and Refining - State of The Art = P. C. Elect. B. Proceedings of The Conference On Electron Bean Melting and Refining - State of The Art 1991 = P C Elect B Proceedings of The Conference On Electron Bean Melting and Refining - State of The Art 1991 = P. C. Elect. B. Proceedings of The Conference On Linguistics 1990 = Ciral Pub B Proceedings of The Conference On Linguistics 1990 = Ciral. Pub. B. Proceedings of The Conference On Linguistics 1990 = Cirb Pub Proceedings of The Conference On Linguistics 1990 = Cirb. Pub. Proceedings of The Conference On Livestock Development in Cotton Growing Regions = Et S Iemvt Proceedings of The Conference On Livestock Development in Cotton Growing Regions = Et. S. Iemvt. Proceedings of the ... Conference on Oral Cancer. Conference on Oral Cancer = Proc Conf Oral Cancer Proceedings of The Conference On The Calibration Legacy of The Iso Mission = Esa Spec Publ Proceedings of The Conference On The Calibration Legacy of The Iso Mission = Esa. Spec. Publ. Proceedings of The Conference On The Calibration Legacy of The Iso Mission = Esa Sp Publ Proceedings of The Conference On The Calibration Legacy of The Iso Mission = Esa. Sp. Publ. Proceedings of The Conference Solar Wind 11 - Soho 16 = Esa Spec Publ Proceedings of The Conference Solar Wind 11 - Soho 16 = Esa. Spec. Publ. Proceedings of The Conference Solar Wind 11 - Soho 16 = Esa Sp Publ Proceedings of The Conference Solar Wind 11 - Soho 16 = Esa. Sp. Publ. Proceedings of The Cornelius Lanczos International Centenary Conference = Siam Proc S Proceedings of The Cornelius Lanczos International Centenary Conference = Siam. Proc. S. Proceedings of the Danish Institute at Athens = ProcDanInstAth Proceedings of The Deutsche Gesellschaft Fur Pathologie - 73rd Conference = Verh Deut G Proceedings of The Deutsche Gesellschaft Fur Pathologie - 73rd Conference = Verh. Deut. G. Proceedings of the Dorset Natural History and Archaeological Society. Dorset Natural History and Archaeological Society = Proc Dorset Nat Hist Archeol Soc Proceedings of The Dusty and Molecular Universe: A Prelude to Herschel and Alma = Esa Spec Publ Proceedings of The Dusty and Molecular Universe: A Prelude to Herschel and Alma = Esa. Spec. Publ. Proceedings of The Dusty and Molecular Universe: A Prelude to Herschel and Alma = Esa Sp Publ Proceedings of The Dusty and Molecular Universe: A Prelude to Herschel and Alma = Esa. Sp. Publ. Proceedings of The ... Earsel Symposium = P Earsel Sy Proceedings of The ... Earsel Symposium = P. Earsel Sy. Proceedings of The Eastern Asia Society for Transportation Studies = Proc E Asia Soc Tran Proceedings of The Eastern Asia Society for Transportation Studies = Proc. E. Asia Soc. Tran. Proceedings of The Eastern Asia Society for Transportation Studies, Vol 4, Nos 1 and 2 = Proc E Asia Soc Tran Proceedings of The Eastern Asia Society for Transportation Studies, Vol 4, Nos 1 and 2 = Proc. E. Asia Soc. Tran. Proceedings of The Eastern Asia Society for Transportation Studies, Vol 5 = Proc E Asia Soc Tran Proceedings of The Eastern Asia Society for Transportation Studies, Vol 5 = Proc. E. Asia Soc. Tran. Proceedings of The Edinburgh Mathematical Society = P Edinburgh Math Soc Proceedings of The Edinburgh Mathematical Society = P. Edinburgh Math. Soc. Proceedings of the Edinburgh Mathematical Society = Proc. Edinburgh Math. Soc. (2) Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Eighteenth (2008) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Eighth Conference On Linguistics 1994 = Ciral Pub B Proceedings of The Eighth Conference On Linguistics 1994 = Ciral. Pub. B. Proceedings of The Eighth Dr Scholl Conference On The Nutrition of Captive Wild Animals = D S Nutr C Proceedings of The Eighth Dr Scholl Conference On The Nutrition of Captive Wild Animals = D. S. Nutr. C. Proceedings of The Eighth Iasted International Conference On Signal and Image Processing = Iasted Int Conf Sign Proceedings of The Eighth Iasted International Conference On Signal and Image Processing = Iasted Int. Conf. Sign. Proceedings of The Eighth Ieee International Symposium On Web Site Evolution = Ieee Intl Sympos Web Proceedings of The Eighth Ieee International Symposium On Web Site Evolution = Ieee Intl. Sympos. Web Proceedings of The Eighth International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Eighth International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Eighth International Ishs Symposium On The Processing Tomato = Acta Hortic Proceedings of The Eighth International Ishs Symposium On The Processing Tomato = Acta. Hortic. Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Eighth International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Eighth International Offshore and Polar Engineering, Vol 2 = Int Offshore Polar E Proceedings of The Eighth International Offshore and Polar Engineering, Vol 2 = Int. Offshore Polar E. Proceedings of The Eighth International People-plant Symposium On Exploring Therapeutic Powers of Flowers, Greenery and Nature = Acta Hortic Proceedings of The Eighth International People-plant Symposium On Exploring Therapeutic Powers of Flowers, Greenery and Nature = Acta. Hortic. Proceedings of The Eighth International Rubus and Ribes Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The Eighth International Rubus and Ribes Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The Eighth International Symposium On Canopy, Rootstocks and Environmental Physiology in Orchard Systems = Acta Hortic Proceedings of The Eighth International Symposium On Canopy, Rootstocks and Environmental Physiology in Orchard Systems = Acta. Hortic. Proceedings of The Eighth International Symposium On Flowerbulbs = Acta Hortic Proceedings of The Eighth International Symposium On Flowerbulbs = Acta. Hortic. Proceedings of The Eighth International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta Hortic Proceedings of The Eighth International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta. Hortic. Proceedings of The Eighth International Symposium On Silicon-on-insulator Technology and Devices = Elec Soc S Proceedings of The Eighth International Symposium On Silicon-on-insulator Technology and Devices = Elec. Soc. S. Proceedings of The Eighth International Workshop On Fire Blight = Acta Hortic Proceedings of The Eighth International Workshop On Fire Blight = Acta. Hortic. Proceedings of The Eighth Symposium On Space Nuclear Power Systems, Pts 1-3 = Aip Conf Proc Proceedings of The Eighth Symposium On Space Nuclear Power Systems, Pts 1-3 = Aip. Conf. Proc. Proceedings of The Eighth Workshop On Algorithm Engineering and Experiments and The Third Workshop On Analytic Algorithmics and Combinatorics = Siam Proc S Proceedings of The Eighth Workshop On Algorithm Engineering and Experiments and The Third Workshop On Analytic Algorithmics and Combinatorics = Siam. Proc. S. Proceedings of The Eighth Workshop On Electronics for Lhc Experiments = Cern Report Proceedings of The Eighth Workshop On Electronics for Lhc Experiments = Cern. Report. Proceedings of The Eight International Pollination Symposium Pollination: Integrator of Crops and Native Plant Systems = Acta Hortic Proceedings of The Eight International Pollination Symposium Pollination: Integrator of Crops and Native Plant Systems = Acta. Hortic. Proceedings of The Electrochemical Society Symposium On Diagnostic Techniques for Semiconductor Materials and Devices = Elec Soc S Proceedings of The Electrochemical Society Symposium On Diagnostic Techniques for Semiconductor Materials and Devices = Elec. Soc. S. Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Iii = Int Offshore Polar E Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Iii = Int. Offshore Polar E. Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Ii = Int Offshore Polar E Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Ii = Int. Offshore Polar E. Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol I = Int Offshore Polar E Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol I = Int. Offshore Polar E. Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Iv = Int Offshore Polar E Proceedings of The Eleventh (2001) International Offshore and Polar Engineering Conference, Vol Iv = Int. Offshore Polar E. Proceedings of The Eleventh International Conference On Data Engineering = Proc Int Conf Data Proceedings of The Eleventh International Conference On Data Engineering = Proc. Int. Conf. Data Proceedings of The Eleventh International Symposium On Molten Salts Xi = Elec Soc S Proceedings of The Eleventh International Symposium On Molten Salts Xi = Elec. Soc. S. Proceedings of The Eleventh International Symposium On Plasma Processing = Elec Soc S Proceedings of The Eleventh International Symposium On Plasma Processing = Elec. Soc. S. Proceedings of The Eleventh International Symposium On Small Fruit Virus Diseases = Acta Hortic Proceedings of The Eleventh International Symposium On Small Fruit Virus Diseases = Acta. Hortic. Proceedings of The Eleventh International Workshop On Fire Blight = Acta Hortic Proceedings of The Eleventh International Workshop On Fire Blight = Acta. Hortic. Proceedings of The Eleventh International Workshop On The Physics of Semiconductor Devices, Vol 1 & 2 = Proc Spie Proceedings of The Eleventh International Workshop On The Physics of Semiconductor Devices, Vol 1 & 2 = Proc. Spie. Proceedings of The Eleventh International Workshop On The Physics of Semiconductor Devices, Vol 1 & 2 = P Soc Photo-opt Ins Proceedings of The Eleventh International Workshop On The Physics of Semiconductor Devices, Vol 1 & 2 = P. Soc. Photo-opt. Ins. Proceedings of The Eleventh Journees De Linguistique (1997) = Ciral Publ Proceedings of The Eleventh Journees De Linguistique (1997) = Ciral. Publ. Proceedings of The Eleventh Thematic Conference - Geologic Remote Sensing: Practical Solutions for Real World Problems, Vol Ii = Pr Themat Conf Geol Proceedings of The Eleventh Thematic Conference - Geologic Remote Sensing: Practical Solutions for Real World Problems, Vol Ii = Pr. Themat. Conf. Geol. Proceedings of The Eleventh Thematic Conference: Geologic Remote Sensing - Practical Solutions for Real World Problems, Vol I = Pr Themat Conf Geol Proceedings of The Eleventh Thematic Conference: Geologic Remote Sensing - Practical Solutions for Real World Problems, Vol I = Pr. Themat. Conf. Geol. Proceedings of The Enea Workshops On Nonlinear Dynamics = P Enea Work Proceedings of The Enea Workshops On Nonlinear Dynamics = P. Enea Work. Proceedings of The Entomological Society of Ontario = P Entomol Soc Ont Proceedings of The Entomological Society of Ontario = P. Entomol. Soc. Ont. Proceedings of The Entomological Society of Washington = P Entomol Soc Wash Proceedings of The Entomological Society of Washington = P. Entomol. Soc. Wash. Proceedings of the Entomological Society of Washington = Proc Entomol Soc Wash Proceedings of the Estonian Academy of Sciences. Biology, ecology = Eesti Teaduste Akadeemia toimetised. Bioloogia, okoloogia|Proc. Estonian Acad. Sci. Biol. Ecol. Proceedings of the Estonian Academy of Sciences, Chemistry = Proc. Est. Acad. Sci., Chem. Proceedings of The Estonian Academy of Sciences = P Est Acad Sci Proceedings of The Estonian Academy of Sciences = P. Est. Acad. Sci. Proceedings of The Estonian Academy of Sciences-physics Mathematics = Proc Est Acad Sci-ph Proceedings of The Estonian Academy of Sciences-physics Mathematics = Proc. Est. Acad. Sci-ph. Proceedings of the Estonian Academy of Sciences = Proc. Est. Acad. Sci. Proceedings of the Estonian Academy of Sciences = Proc. Est. Acad. Sci. Eng. Proceedings of The Ethylene Producers Conference = Proc Ethyl Produc C Proceedings of The Ethylene Producers Conference = Proc. Ethyl. Produc. C. Proceedings of The Eucarpia Symposium On Fruit Breeding and Genetics, Vols 1 and 2 = Acta Hortic Proceedings of The Eucarpia Symposium On Fruit Breeding and Genetics, Vols 1 and 2 = Acta. Hortic. Proceedings of The Euro Berry Symposium - Cost 836 Final Worskhop = Acta Hortic Proceedings of The Euro Berry Symposium - Cost 836 Final Worskhop = Acta. Hortic. Proceedings of The European Conference On Promotion of Mental Health and Social Inclusion = Rep Min Social Aff Proceedings of The European Conference On Promotion of Mental Health and Social Inclusion = Rep. Min. Social Aff. Proceedings of The European Conference On Safety in The Modern Society = People Work Res Rep Proceedings of The European Conference On Safety in The Modern Society = People. Work. Res. Rep. Proceedings of the European Dialysis and Transplant Association. European Dialysis and Transplant Association = Proc Eur Dial Transplant Assoc Proceedings of the European Dialysis and Transplant Association - European Renal Association. European Dialysis and Transplant Association - European Renal Association. Congress = Proc Eur Dial Transplant Assoc Eur Ren Assoc Proceedings of the European Dialysis and Transplant Association - European Renal Association = Proc. Eur. Dial. Transplant Assoc. Eur. Ren. Assoc. Proceedings of The European Dialysis and Transplant Association = P Eur Dial Trans Proceedings of The European Dialysis and Transplant Association = P. Eur. Dial. Trans. Proceedings of the European Dialysis and Transplant Association = Proc. Eur. Dial. Transplant Assoc. Proceedings of the European Prosthodontic Association = Proc. Eur. Prosthodontic Assoc. Proceedings of The European Solid-state Circuits Conference = Proc Eur Solid-state Proceedings of The European Solid-state Circuits Conference = Proc. Eur. Solid-state Proceedings of The European Solid-state Device Research Conference = Proc Eur S-state Dev Proceedings of The European Solid-state Device Research Conference = Proc. Eur. S-state. Dev. Proceedings of The European Space Components Conference - Esccon 2002 = Esa Spec Publ Proceedings of The European Space Components Conference - Esccon 2002 = Esa. Spec. Publ. Proceedings of The European Space Components Conference - Esccon 2002 = Esa Sp Publ Proceedings of The European Space Components Conference - Esccon 2002 = Esa. Sp. Publ. Proceedings of The European Symposium On Life in Space for Life On Earth = Esa Spec Publ Proceedings of The European Symposium On Life in Space for Life On Earth = Esa. Spec. Publ. Proceedings of The European Symposium On Life in Space for Life On Earth = Esa Sp Publ Proceedings of The European Symposium On Life in Space for Life On Earth = Esa. Sp. Publ. Proceedings of The Eurosensors Xxiii Conference = Procedia Chem Proceedings of The Eurosensors Xxiii Conference = Procedia. Chem. Proceedings of The Exxon Valdez Oil Spill Symposium = Am Fish S S Proceedings of The Exxon Valdez Oil Spill Symposium = Am. Fish. S. S. Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Fifteenth (2005) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Fifteenth Annual Ucla Indo-european Conference = J Indo-eur Stud Mono Proceedings of The Fifteenth Annual Ucla Indo-european Conference = J. Indo-eur. Stud. Mono. Proceedings of The Fifteenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Fifteenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Fifteenth Meeting of The Eucarpia Tomato Working Group = Acta Hortic Proceedings of The Fifteenth Meeting of The Eucarpia Tomato Working Group = Acta. Hortic. Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Iii = Int Offshore Polar E Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Iii = Int. Offshore Polar E. Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Ii = Int Offshore Polar E Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Ii = Int. Offshore Polar E. Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol I = Int Offshore Polar E Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol I = Int. Offshore Polar E. Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Iv = Int Offshore Polar E Proceedings of The Fifth (1995) International Offshore and Polar Engineering Conference, Vol Iv = Int. Offshore Polar E. Proceedings of The Fifth Bi-annual International Conference of The Academy of Marketing Science = World Market Congr Proceedings of The Fifth Bi-annual International Conference of The Academy of Marketing Science = World. Market. Congr. Proceedings of The Fifth Canadian Conference On Health Economics = Can Plain P Proceedings of The Fifth Canadian Conference On Health Economics = Can. Plain. P. Proceedings of The Fifth European Conference On Mathematics in Industry = Eur Con Mat Proceedings of The Fifth European Conference On Mathematics in Industry = Eur. Con. Mat. Proceedings of The Fifth European Space Power Conference (espc), Vols 1 and 2 = Esa Sp Publ Proceedings of The Fifth European Space Power Conference (espc), Vols 1 and 2 = Esa. Sp. Publ. Proceedings of The Fifth European Symposium On Aerothermodynamics for Space Vehicles = Esa Spec Publ Proceedings of The Fifth European Symposium On Aerothermodynamics for Space Vehicles = Esa. Spec. Publ. Proceedings of The Fifth European Symposium On Aerothermodynamics for Space Vehicles = Esa Sp Publ Proceedings of The Fifth European Symposium On Aerothermodynamics for Space Vehicles = Esa. Sp. Publ. Proceedings of The Fifth Iaa International Conference On Low-cost Planetary Missions = Esa Sp Publ Proceedings of The Fifth Iaa International Conference On Low-cost Planetary Missions = Esa. Sp. Publ. Proceedings of The Fifth International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Fifth International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Fifth International Conference On Substorms = Esa Spec Publ Proceedings of The Fifth International Conference On Substorms = Esa. Spec. Publ. Proceedings of The Fifth International Conference On Substorms = Esa Sp Publ Proceedings of The Fifth International Conference On Substorms = Esa. Sp. Publ. Proceedings of The Fifth International Conference On The Study of Shamanism and Alternate Modes of Healing = Univer Dial Proceedings of The Fifth International Conference On The Study of Shamanism and Alternate Modes of Healing = Univer. Dial. Proceedings of The Fifth International Congress On Hazelnut = Acta Hortic Proceedings of The Fifth International Congress On Hazelnut = Acta. Hortic. Proceedings of The Fifth International Protea Research Symposium = Acta Hortic Proceedings of The Fifth International Protea Research Symposium = Acta. Hortic. Proceedings of The Fifth International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta Hortic Proceedings of The Fifth International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta. Hortic. Proceedings of The Fifth International Symposium On Diamond Materials = Elec Soc S Proceedings of The Fifth International Symposium On Diamond Materials = Elec. Soc. S. Proceedings of The Fifth International Symposium On Grapevine Physiology = Acta Hortic Proceedings of The Fifth International Symposium On Grapevine Physiology = Acta. Hortic. Proceedings of The Fifth International Symposium On Irrigation of Horticultural Crops = Acta Hortic Proceedings of The Fifth International Symposium On Irrigation of Horticultural Crops = Acta. Hortic. Proceedings of The Fifth International Symposium On Kiwifruit = Acta Hortic Proceedings of The Fifth International Symposium On Kiwifruit = Acta. Hortic. Proceedings of The Fifth International Symposium On Magnetic Materials, Processes, and Devices = Elec Soc S Proceedings of The Fifth International Symposium On Magnetic Materials, Processes, and Devices = Elec. Soc. S. Proceedings of The Fifth International Symposium On Olive Growing, Vols 1 and 2 = Acta Hortic Proceedings of The Fifth International Symposium On Olive Growing, Vols 1 and 2 = Acta. Hortic. Proceedings of The Fifth International Symposium On Process Physics and Modeling in Semiconductor Technology = Elec Soc S Proceedings of The Fifth International Symposium On Process Physics and Modeling in Semiconductor Technology = Elec. Soc. S. Proceedings of The Fifth International Symposium On Protected Cultivation in Mild Winter Climates: Current Trends for Sustainable Technologies, Vols I and Ii = Acta Hortic Proceedings of The Fifth International Symposium On Protected Cultivation in Mild Winter Climates: Current Trends for Sustainable Technologies, Vols I and Ii = Acta. Hortic. Proceedings of The Fifth International Symposium On Quantum Confinement: Nanostructures = Elec Soc S Proceedings of The Fifth International Symposium On Quantum Confinement: Nanostructures = Elec. Soc. S. Proceedings of The Fifth International Symposium On Solid Oxide Fuel Cells (sofc-v) = Elec Soc S Proceedings of The Fifth International Symposium On Solid Oxide Fuel Cells (sofc-v) = Elec. Soc. S. Proceedings of The Fifth International Symposium On The Taxonomy of Cultivated Plants = Acta Hortic Proceedings of The Fifth International Symposium On The Taxonomy of Cultivated Plants = Acta. Hortic. Proceedings of The Fifth International Walnut Symposium = Acta Hortic Proceedings of The Fifth International Walnut Symposium = Acta. Hortic. Proceedings of The Fifth International Workshop On Hardware/software Codesign (codes/cashe '97) = Hardw Softw Codes Proceedings of The Fifth International Workshop On Hardware/software Codesign (codes/cashe '97) = Hardw. Softw. Codes. Proceedings of The Fifth Siam Conference On Applied Linear Algebra = Siam Proc S Proceedings of The Fifth Siam Conference On Applied Linear Algebra = Siam Proc. S. Proceedings of The Fifth Siam International Conference On Data Mining = Siam Proc S Proceedings of The Fifth Siam International Conference On Data Mining = Siam Proc. S. Proceedings of The Fifth Workshop On Algorithm Engineering and Experiment = Siam Proc S Proceedings of The Fifth Workshop On Algorithm Engineering and Experiment = Siam. Proc. S. Proceedings of The Fifth Workshop On Neural Networks: Academic/industrial/nasa/defense = P Soc Photo-opt Ins Proceedings of The Fifth Workshop On Neural Networks: Academic/industrial/nasa/defense = P. Soc. Photo-opt. Ins. Proceedings of The Fifty-fifth Annual Eastern Snow Conference = Proc Ann E Snow Conf Proceedings of The Fifty-fifth Annual Eastern Snow Conference = Proc. Ann. E. Snow Conf. Proceedings of The Fifty-fifth Ieee Holm Conference On Electrical Contacts = Electr Contact Proceedings of The Fifty-fifth Ieee Holm Conference On Electrical Contacts = Electr. Contact. Proceedings of The Fifty-first Annual Eastern Snow Conference = Proc Ann E Snow Conf Proceedings of The Fifty-first Annual Eastern Snow Conference = Proc. Ann. E. Snow Conf. Proceedings of The Fifty-second Annual Eastern Snow Conference = Proc Ann E Snow Conf Proceedings of The Fifty-second Annual Eastern Snow Conference = Proc. Ann. E. Snow Conf. Proceedings of The Final Results Workshop On Daisex (digital Airborne Spectrometer Experiment) = Esa Spec Publ Proceedings of The Final Results Workshop On Daisex (digital Airborne Spectrometer Experiment) = Esa. Spec. Publ. Proceedings of The Final Results Workshop On Daisex (digital Airborne Spectrometer Experiment) = Esa Sp Publ Proceedings of The Final Results Workshop On Daisex (digital Airborne Spectrometer Experiment) = Esa. Sp. Publ. Proceedings of The Final Results Workshop On Index (indonesian Radar Experiment) = Esa Sp Publ Proceedings of The Final Results Workshop On Index (indonesian Radar Experiment) = Esa. Sp. Publ. Proceedings of the Finnish Dental Society = Proc. Finn. Dent. Soc. Proceedings of the Finnish Dental Society. Suomen Hammaslaakariseuran toimituksia = Proc Finn Dent Soc Proceedings of The Finnish Institute of Occupational Health = P Finn Inst Proceedings of The Finnish Institute of Occupational Health = P. Finn. Inst. Proceedings of The First Asm Heat Treatment and Surface Engineering Conference in Europe, Pts 1 and 2 = Mater Sci Forum Proceedings of The First Asm Heat Treatment and Surface Engineering Conference in Europe, Pts 1 and 2 = Mater. Sci. Forum. Proceedings of The First Conference On Principles of Knowledge Representation and Reasoning = S Repr Reas Proceedings of The First Conference On Principles of Knowledge Representation and Reasoning = S. Repr. Reas. Proceedings of The First Iaass Conference On Space Safety, A New Beginning = Esa Spec Publ Proceedings of The First Iaass Conference On Space Safety, A New Beginning = Esa. Spec. Publ. Proceedings of The First Iaass Conference On Space Safety, A New Beginning = Esa Sp Publ Proceedings of The First Iaass Conference On Space Safety, A New Beginning = Esa. Sp. Publ. Proceedings of The First International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The First International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The First International Conference On Parallel, Distributed and Grid Computing for Engineering = Civil Comp Proceed Proceedings of The First International Conference On Parallel, Distributed and Grid Computing for Engineering = Civil. Comp. Proceed. Proceedings of The First International Conference On Sweetpotato: Food and Health for The Future = Acta Hortic Proceedings of The First International Conference On Sweetpotato: Food and Health for The Future = Acta. Hortic. Proceedings of The First International Symposium On Acclimatization and Establishment of Micropropagated Plants = Acta Hortic Proceedings of The First International Symposium On Acclimatization and Establishment of Micropropagated Plants = Acta. Hortic. Proceedings of The First International Symposium On Ceramic Membranes = Elec Soc S Proceedings of The First International Symposium On Ceramic Membranes = Elec. Soc. S. Proceedings of The First International Symposium On Chamomile Research, Development and Production = Acta Hortic Proceedings of The First International Symposium On Chamomile Research, Development and Production = Acta. Hortic. Proceedings of The First International Symposium On Citrus Biotechnology = Acta Hortic Proceedings of The First International Symposium On Citrus Biotechnology = Acta. Hortic. Proceedings of The First International Symposium On Litchi and Longan = Acta Hortic Proceedings of The First International Symposium On Litchi and Longan = Acta. Hortic. Proceedings of The First International Symposium On Natural Preservatives in Food Systems = Acta Hortic Proceedings of The First International Symposium On Natural Preservatives in Food Systems = Acta. Hortic. Proceedings of The First International Symposium On Root and Tuber Crops: Food Down Under = Acta Hortic Proceedings of The First International Symposium On Root and Tuber Crops: Food Down Under = Acta. Hortic. Proceedings of The First International Workshop On Estring = Roy Soc Med Int Cong Proceedings of The First International Workshop On Estring = Roy. Soc. Med. Int. Cong. Proceedings of The First International Workshop On Photonic Networks, Components and Applications = S Opt Phot Proceedings of The First International Workshop On Photonic Networks, Components and Applications = S. Opt. Phot. Proceedings of The First Ishs Symposium On in Vitro Culture and Horticultural Breeding = Acta Hortic Proceedings of The First Ishs Symposium On in Vitro Culture and Horticultural Breeding = Acta. Hortic. Proceedings of The First Latin-american Symposium On The Production of Medicinal, Aromatic and Condiments Plants = Acta Hortic Proceedings of The First Latin-american Symposium On The Production of Medicinal, Aromatic and Condiments Plants = Acta. Hortic. Proceedings of The First Meeting of Iufro Working Party S2.07-09 ( Diseases and Insects in Forest Nurseries ) = Pacif For C Proceedings of The First Meeting of Iufro Working Party S2.07-09 ( Diseases and Insects in Forest Nurseries ) = Pacif. For. C. Proceedings of The First Results Workshop On Eurostarrs, Wise, Losac Campaigns = Esa Sp Publ Proceedings of The First Results Workshop On Eurostarrs, Wise, Losac Campaigns = Esa. Sp. Publ. Proceedings of The First Symposium of German-speaking Celtologists = Buch Z Celt Philol Proceedings of The First Symposium of German-speaking Celtologists = Buch. Z. Celt. Philol. Proceedings of The First Symposium On Iii-v Nitride Materials and Processes = Elec Soc S Proceedings of The First Symposium On Iii-v Nitride Materials and Processes = Elec. Soc. S. Proceedings of The Florida State Horticultural Society = P Fl St Hortic Soc Proceedings of The Florida State Horticultural Society = P. Fl. St. Hortic. Soc. Proceedings of The Florida State Horticultural Society = Proc Fl State Hortic Proceedings of The Florida State Horticultural Society = Proc. Fl. State Hortic. Proceedings of The Forage and Grassland Conference = P Forag Gr Proceedings of The Forage and Grassland Conference = P. Forag. Gr. Proceedings of The Forty Eighth New Zealand Plant Protection Conference = P Nz Plan P Proceedings of The Forty Eighth New Zealand Plant Protection Conference = P. Nz. Plan. P. Proceedings of The Forty-fifth Annual Meeting of The Western Pharmacology Society = P W Pharmacol Soc Proceedings of The Forty-fifth Annual Meeting of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceedings of The Forty-fifth New Zealand Plant Protection Conference = P Nz Plan P Proceedings of The Forty-fifth New Zealand Plant Protection Conference = P. Nz. Plan. P. Proceedings of The Forty-first Annual Meeting of The Western Pharmacology Society = P W Pharmacol Soc Proceedings of The Forty-first Annual Meeting of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceedings of The Forty-fourth Annual Convention of The Catholic Theological Society of America = Proc Cath Proceedings of The Forty-fourth Annual Convention of The Catholic Theological Society of America = Proc. Cath. Proceedings of The Forty-fourth New Zealand Weed and Pest Control Conference = P Nz Weed P Proceedings of The Forty-fourth New Zealand Weed and Pest Control Conference = P. Nz. Weed P. Proceedings of The Forty-second Annual Meeting of The Western Pharmacology Society = P W Pharmacol Soc Proceedings of The Forty-second Annual Meeting of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceedings of The Forty-second New Zealand Weed and Pest Control Conference, 1989 = P Nz Weed P Proceedings of The Forty-second New Zealand Weed and Pest Control Conference, 1989 = P. Nz. Weed P. Proceedings of The Forty Seventh New Zealand Plant Protection Conference = P Nz Plan P Proceedings of The Forty Seventh New Zealand Plant Protection Conference = P. Nz. Plan. P. Proceedings of The Forty-sixth Annual Convention of The Catholic Theological Society of America = Proc Cath Proceedings of The Forty-sixth Annual Convention of The Catholic Theological Society of America = Proc. Cath. Proceedings of The Forty Sixth New Zealand Plant Protection Conference = P Nz Plan P Proceedings of The Forty Sixth New Zealand Plant Protection Conference = P. Nz. Plan. P. Proceedings of The Forty-third Annual Meeting of The Western Pharmacology Society = P W Pharmacol Soc Proceedings of The Forty-third Annual Meeting of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceedings of The Forty-third New Zealand Weed and Pest Control Conference = P Nz Weed P Proceedings of The Forty-third New Zealand Weed and Pest Control Conference = P. Nz. Weed P. Proceedings of the Foundation for Orthodontic Research = Proc Found Orthod Res Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Fourteenth (2004) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Fourteenth Annual Acm-siam Symposium On Discrete Algorithms = Siam Proc S Proceedings of The Fourteenth Annual Acm-siam Symposium On Discrete Algorithms = Siam. Proc. S. Proceedings of The Fourteenth Annual Ucla Indo-european Conference = J Indo-eur Stud Mono Proceedings of The Fourteenth Annual Ucla Indo-european Conference = J. Indo-eur. Stud. Mono. Proceedings of The Fourteenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Fourteenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Fourteenth Ieee Symposium On Mass Storage Systems = Ieee S Mass Stor Sys Proceedings of The Fourteenth Ieee Symposium On Mass Storage Systems = Ieee S. Mass Stor. Sys. Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol I, 1994 = Int Offshore Polar E Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol I, 1994 = Int. Offshore Polar E. Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Ii, 1994 = Int Offshore Polar E Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Ii, 1994 = Int. Offshore Polar E. Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Iii, 1994 = Int Offshore Polar E Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Iii, 1994 = Int. Offshore Polar E. Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Iv, 1994 = Int Offshore Polar E Proceedings of The Fourth (1994) International Offshore and Polar Engineering Conference, Vol Iv, 1994 = Int. Offshore Polar E. Proceedings of The Fourth Annual Forest Inventory and Analysis Symposium = Us For Serv T R Nc Proceedings of The Fourth Annual Forest Inventory and Analysis Symposium = Us. For. Serv. T. R. Nc. Proceedings of The Fourth Compton Symposium, Pts 1 and 2 = Aip Conf Proc Proceedings of The Fourth Compton Symposium, Pts 1 and 2 = Aip. Conf. Proc. Proceedings of The Fourth Copper Mountain Conference On Multigrid Methods = Siam Proc S Proceedings of The Fourth Copper Mountain Conference On Multigrid Methods = Siam. Proc. S. Proceedings of The Fourth European Symposium On Life Sciences Research in Space = Esa Sp Publ Proceedings of The Fourth European Symposium On Life Sciences Research in Space = Esa. Sp. Publ. Proceedings of The Fourth Global Conference On Power Control and Optimization = Aip Conf Proc Proceedings of The Fourth Global Conference On Power Control and Optimization = Aip. Conf. Proc. Proceedings of The Fourth International Conference On Exploration and Utilisation of The Moon = Esa Spec Publ Proceedings of The Fourth International Conference On Exploration and Utilisation of The Moon = Esa. Spec. Publ. Proceedings of The Fourth International Conference On Exploration and Utilisation of The Moon = Esa Sp Publ Proceedings of The Fourth International Conference On Exploration and Utilisation of The Moon = Esa. Sp. Publ. Proceedings of The Fourth International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Fourth International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Fourth International Conference On Management Science and Engineering Management = Manag Sci Eng Manag Proceedings of The Fourth International Conference On Management Science and Engineering Management = Manag. Sci. Eng. Manag. Proceedings of The Fourth International Conference On Operations and Supply Chain Management (icoscm 2010) = Ser Oper Supp Ch Man Proceedings of The Fourth International Conference On Operations and Supply Chain Management (icoscm 2010) = Ser. Oper. Supp. Ch. Man. Proceedings of The Fourth International Conference On Quality and Safety Issues Related to Botanicals = Acta Hortic Proceedings of The Fourth International Conference On Quality and Safety Issues Related to Botanicals = Acta. Hortic. Proceedings of The Fourth International Congress On Artichoke = Acta Hortic Proceedings of The Fourth International Congress On Artichoke = Acta. Hortic. Proceedings of The Fourth International Congress On Cactus Pear and Cochineal = Acta Hortic Proceedings of The Fourth International Congress On Cactus Pear and Cochineal = Acta. Hortic. Proceedings of The Fourth International Conifer Conference = Acta Hortic Proceedings of The Fourth International Conifer Conference = Acta. Hortic. Proceedings of The Fourth International Ishs Symposium On Artificial Lighting = Acta Hortic Proceedings of The Fourth International Ishs Symposium On Artificial Lighting = Acta. Hortic. Proceedings of The Fourth International Strawberry Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The Fourth International Strawberry Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The Fourth International Symposium On Carbonate Fuel Cell Technology = Elec Soc S Proceedings of The Fourth International Symposium On Carbonate Fuel Cell Technology = Elec. Soc. S. Proceedings of The Fourth International Symposium On Electrochemistry in Mineral and Metal Processing = Elec Soc S Proceedings of The Fourth International Symposium On Electrochemistry in Mineral and Metal Processing = Elec. Soc. S. Proceedings of The Fourth International Symposium On High Purity Silicon = Elec Soc S Proceedings of The Fourth International Symposium On High Purity Silicon = Elec. Soc. S. Proceedings of The Fourth International Symposium On Mineral Nutrition of Deciduous Fruit Crops = Acta Hortic Proceedings of The Fourth International Symposium On Mineral Nutrition of Deciduous Fruit Crops = Acta. Hortic. Proceedings of The Fourth International Symposium On New Floricultural Crops = Acta Hortic Proceedings of The Fourth International Symposium On New Floricultural Crops = Acta. Hortic. Proceedings of The Fourth International Symposium On Olive Growing, Vols 1 and 2 = Acta Hortic Proceedings of The Fourth International Symposium On Olive Growing, Vols 1 and 2 = Acta. Hortic. Proceedings of The Fourth International Symposium On Process Physics and Modeling in Semiconductor Technology = Elec Soc S Proceedings of The Fourth International Symposium On Process Physics and Modeling in Semiconductor Technology = Elec. Soc. S. Proceedings of The Fourth International Symposium On Quantum Confinement: Nanoscale Materials, Devices, and Systems = Elec Soc S Proceedings of The Fourth International Symposium On Quantum Confinement: Nanoscale Materials, Devices, and Systems = Elec. Soc. S. Proceedings of The Fourth International Walnut Symposium = Acta Hortic Proceedings of The Fourth International Walnut Symposium = Acta. Hortic. Proceedings of The Fourth International Workshop On The Measurement of Microbial Activities in The Carbon Cycle in Aquatic Ecosystems = Ergeb Limnol Proceedings of The Fourth International Workshop On The Measurement of Microbial Activities in The Carbon Cycle in Aquatic Ecosystems = Ergeb. Limnol. Proceedings of The Fourth Siam International Conference On Data Mining = Siam Proc S Proceedings of The Fourth Siam International Conference On Data Mining = Siam Proc. S. Proceedings of The Fourth Specialists Meeting On Shielding Aspects of Accelerators, Targets and Irradiation Facilities = Oecd Proc Proceedings of The Fourth Specialists Meeting On Shielding Aspects of Accelerators, Targets and Irradiation Facilities = Oecd. Proc. Proceedings of The Fourth Symposium On Low Temperature Electronics and High Temperature Superconductivity = Elec Soc S Proceedings of The Fourth Symposium On Low Temperature Electronics and High Temperature Superconductivity = Elec. Soc. S. Proceedings of The Fourth Symposium On Thin Film Transistor Technologies = Elec Soc S Proceedings of The Fourth Symposium On Thin Film Transistor Technologies = Elec. Soc. S. Proceedings of The Geological Association of Canada = P Geol Assoc Can Proceedings of The Geological Association of Canada = P. Geol. Assoc. Can. Proceedings of the Geologists' Association. Geologists' Association = Proc Geol Assoc Proceedings of The Geologists Association = P Geologist Assoc Proceedings of The Geologists Association = P. Geologist. Assoc. Proceedings of the Geologists' Association = Proc. Geol. Assoc. Proceedings of The Geoscience Information Society = P Geos Inf Proceedings of The Geoscience Information Society = P. Geos. Inf. Proceedings of The German Society for Pathology, 78th Meeting = Verh Deut G Proceedings of The German Society for Pathology, 78th Meeting = Verh. Deut. G. Proceedings of The German Society for Pathology, 85th Meeting = Verh Deut G Proceedings of The German Society for Pathology, 85th Meeting = Verh. Deut. G. Proceedings of The German Society for Pathology, 88 Meeting = Verh Deut G Proceedings of The German Society for Pathology, 88 Meeting = Verh. Deut. G. Proceedings of The Glasgow Mathematical Association = Proc Glasg Math Assn Proceedings of The Glasgow Mathematical Association = Proc. Glasg. Math. Assn. Proceedings of The Great Lakes Silviculture Summit = Us For Serv T R Nc Proceedings of The Great Lakes Silviculture Summit = Us. For. Serv. T. R. Nc. Proceedings of The Hawaiian Entomological Society = P Hawaii Entomol Soc Proceedings of The Hawaiian Entomological Society = P. Hawaii. Entomol. Soc. Proceedings of the Health Policy Forum. Health Policy Forum = Proc Health Policy Forum Proceedings of the Health Policy Forum = Proc. Health Policy Forum Proceedings of The Helminthological Society of Washington = P Helm Soc Wash Proceedings of The Helminthological Society of Washington = P. Helm. Soc. Wash. Proceedings of the Huguenot Society of London. Huguenot Society of London = Proc Huguenot Soc Lond Proceedings of The Human Factors and Ergonomics Society 38th Annual Meeting, Vols 1 and 2 = Hum Fac Erg Soc P Proceedings of The Human Factors and Ergonomics Society 38th Annual Meeting, Vols 1 and 2 = Hum. Fac. Erg. Soc. P. Proceedings of The Human Factors and Ergonomics Society 39th Annual Meeting, Vols 1 and 2 = Hum Fac Erg Soc P Proceedings of The Human Factors and Ergonomics Society 39th Annual Meeting, Vols 1 and 2 = Hum. Fac. Erg. Soc. P. Proceedings of The Human Factors and Ergonomics Society 42nd Annual Meeting, Vols 1 and 2 = Hum Fac Erg Soc P Proceedings of The Human Factors and Ergonomics Society 42nd Annual Meeting, Vols 1 and 2 = Hum. Fac. Erg. Soc. P. Proceedings of The Human Factors and Ergonomics Society 43rd Annual Meeting, Vols 1 and 2 = Hum Fac Erg Soc P Proceedings of The Human Factors and Ergonomics Society 43rd Annual Meeting, Vols 1 and 2 = Hum. Fac. Erg. Soc. P. Proceedings of The Human Factors Society 33rd Annual Meeting, Vol 1 = Proc Hum Fact Soc An Proceedings of The Human Factors Society 33rd Annual Meeting, Vol 1 = Proc. Hum. Fact. Soc. An. Proceedings of The Human Factors Society 33rd Annual Meeting, Vol 2 = Proc Hum Fact Soc An Proceedings of The Human Factors Society 33rd Annual Meeting, Vol 2 = Proc. Hum. Fact. Soc. An. Proceedings of The Hydro-ecology Workshop On The Arctic Environmental Strategy Action On Water = Nhri Symp Proceedings of The Hydro-ecology Workshop On The Arctic Environmental Strategy Action On Water = Nhri. Symp. Proceedings of The Iasted European Conference On Internet and Multimedia Systems and Applications = Iasted Int Conf Inte Proceedings of The Iasted European Conference On Internet and Multimedia Systems and Applications = Iasted Int. Conf. Inte. Proceedings of The Iau 8th Asian-pacific Regional Meeting, Vol I = Astr Soc P Proceedings of The Iau 8th Asian-pacific Regional Meeting, Vol I = Astr. Soc. P. Proceedings of The Icebe 2008: Ieee International Conference On E-business Engineering = Int Conf E Bus Eng Proceedings of The Icebe 2008: Ieee International Conference On E-business Engineering = Int. Conf. E. Bus. Eng. Proceedings of The Ictps 90 International Conference On Transport Properties of Superconductors = Progr High Temp Supe Proceedings of The Ictps 90 International Conference On Transport Properties of Superconductors = Progr. High. Temp. Supe. Proceedings of The Iea-workshop On Intense Neutron Sources = K F K Reports Proceedings of The Iea-workshop On Intense Neutron Sources = K. F. K. Reports. Proceedings of The Ieee 1990 National Aerospace and Electronics Conference, Naecon 1990, Vols 1-3 = Proc Naecon Ieee Nat Proceedings of The Ieee 1990 National Aerospace and Electronics Conference, Naecon 1990, Vols 1-3 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1991 National Aerospace and Electronics Conference, Naecon 1991, Vols 1-3 = Proc Naecon Ieee Nat Proceedings of The Ieee 1991 National Aerospace and Electronics Conference, Naecon 1991, Vols 1-3 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1992 National Aerospace and Electronics Conference - Naecon 1992 : Vols 1-3 = Proc Naecon Ieee Nat Proceedings of The Ieee 1992 National Aerospace and Electronics Conference - Naecon 1992 : Vols 1-3 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1993 National Aerospace and Electronics Conference, Naecon 1993, Vols 1 and 2 = Proc Naecon Ieee Nat Proceedings of The Ieee 1993 National Aerospace and Electronics Conference, Naecon 1993, Vols 1 and 2 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1994 National Aerospace and Electronics Conference, Naecon 1994, Vols 1 and 2 = Proc Naecon Ieee Nat Proceedings of The Ieee 1994 National Aerospace and Electronics Conference, Naecon 1994, Vols 1 and 2 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1995 National Aerospace and Electronics Conference - Naecon 1995, Vols 1 and 2 = Proc Naecon Ieee Nat Proceedings of The Ieee 1995 National Aerospace and Electronics Conference - Naecon 1995, Vols 1 and 2 = Proc. Naecon Ieee Nat. Proceedings of The Ieee 1996 Virtual Reality Annual International Symposium = P Ieee Virt Real Ann Proceedings of The Ieee 1996 Virtual Reality Annual International Symposium = P. Ieee Virt. Real. Ann. Proceedings of The Ieee 1998 National Aerospace and Electronics Conference = Proc Naecon Ieee Nat Proceedings of The Ieee 1998 National Aerospace and Electronics Conference = Proc. Naecon. Ieee Nat. Proceedings of The Ieee 2004 Radar Conference = Ieee Rad Conf Proceedings of The Ieee 2004 Radar Conference = Ieee Rad. Conf. Proceedings of The Ieee 2004 Radar Conference = Radar Conf Proceedings of The Ieee 2004 Radar Conference = Radar Conf. Proceedings of The Ieee 2006 Custom Integrated Circuits Conference = Ieee Cust Integr Cir Proceedings of The Ieee 2006 Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Proceedings of The Ieee 2007 Custom Integrated Circuits Conference = Ieee Cust Integr Cir Proceedings of The Ieee 2007 Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Proceedings of The Ieee 2008 Custom Integrated Circuits Conference = Ieee Cust Integr Cir Proceedings of The Ieee 2008 Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Proceedings of The Ieee 2009 Custom Integrated Circuits Conference = Ieee Cust Integr Cir Proceedings of The Ieee 2009 Custom Integrated Circuits Conference = Ieee Cust. Integr. Cir. Proceedings of The Ieee 2010 National Aerospace and Electronics Conference (naecon) = Proc Naecon Ieee Nat Proceedings of The Ieee 2010 National Aerospace and Electronics Conference (naecon) = Proc. Naecon. Ieee Nat. Proceedings of The Ieee International Frequency Control Symposium = P Ieee Int Freq Cont Proceedings of The Ieee International Frequency Control Symposium = P. Ieee Int. Freq. Cont. Proceedings of The Ieee International Symposium On Workload Characterization = I S Workl Char Proc Proceedings of The Ieee International Symposium On Workload Characterization = I. S. Workl. Char. Proc. Proceedings of The Ieee/oes/cmtc Ninth Working Conference On Current Measurement Technology = Work C Curr Measurem Proceedings of The Ieee/oes/cmtc Ninth Working Conference On Current Measurement Technology = Work. C. Curr. Measurem. Proceedings of The Ieee/oes Eighth Working Conference On Current Measurement Technology - Proceedings = Work C Curr Measurem Proceedings of The Ieee/oes Eighth Working Conference On Current Measurement Technology - Proceedings = Work. C. Curr. Measurem. Proceedings of The Ieee = P Ieee Proceedings of The Ieee = P. Ieee Proceedings of the {IEEE} = Proc. {IEEE} Proceedings of the IEEE = Proc. IEEE Proceedings of The Ieee Sensors 2003, Vols 1 and 2 = Ieee Sensor Proceedings of The Ieee Sensors 2003, Vols 1 and 2 = Ieee Sensor. Proceedings of The Ieee Sensors 2004, Vols 1-3 = Ieee Sensor Proceedings of The Ieee Sensors 2004, Vols 1-3 = Ieee Sensor. Proceedings of The Ieee Twentieth Annual International Conference On Micro Electro Mechanical Systems, Vols 1 and 2 = Proc Ieee Micr Elect Proceedings of The Ieee Twentieth Annual International Conference On Micro Electro Mechanical Systems, Vols 1 and 2 = Proc. Ieee Micr. Elect. Proceedings of The Ieee Virtual Reality Annual International Symposium = P Ieee Virt Real Ann Proceedings of The Ieee Virtual Reality Annual International Symposium = P. Ieee Virt. Real. Ann. Proceedings of The Ii European Meeting of The International Network for Urban Ecology = Mem Zoologi Proceedings of The Ii European Meeting of The International Network for Urban Ecology = Mem. Zoologi. Proceedings of The Iii European Workshop On Exo-astrobiology = Esa Spec Publ Proceedings of The Iii European Workshop On Exo-astrobiology = Esa. Spec. Publ. Proceedings of The Iii European Workshop On Exo-astrobiology = Esa Sp Publ Proceedings of The Iii European Workshop On Exo-astrobiology = Esa. Sp. Publ. Proceedings of The Iiird Balkan Symposium On Vegetable and Potatoes = Acta Hortic Proceedings of The Iiird Balkan Symposium On Vegetable and Potatoes = Acta. Hortic. Proceedings of The Iiird International Date Palm Conference = Acta Hortic Proceedings of The Iiird International Date Palm Conference = Acta. Hortic. Proceedings of The Iiird International Symposium On Cucurbits = Acta Hortic Proceedings of The Iiird International Symposium On Cucurbits = Acta. Hortic. Proceedings of The Iiird International Symposium On Models for Plant Growth, Environmental Control and Farm Management in Protected Cultivation = Acta Hortic Proceedings of The Iiird International Symposium On Models for Plant Growth, Environmental Control and Farm Management in Protected Cultivation = Acta. Hortic. Proceedings of The Iind International Conference On Turfgrass Science and Management for Sports Fields = Acta Hortic Proceedings of The Iind International Conference On Turfgrass Science and Management for Sports Fields = Acta. Hortic. Proceedings of The Iind International Symposium On Cucurbits = Acta Hortic Proceedings of The Iind International Symposium On Cucurbits = Acta. Hortic. Proceedings of The Iind International Symposium On Saffron Biology and Technology = Acta Hortic Proceedings of The Iind International Symposium On Saffron Biology and Technology = Acta. Hortic. Proceedings of The Iind International Symposium On Sweetpotato and Cassava: Innovative Technologies for Commercialization = Acta Hortic Proceedings of The Iind International Symposium On Sweetpotato and Cassava: Innovative Technologies for Commercialization = Acta. Hortic. Proceedings of The I International Symposium On Olive Growing = Acta Hortic Proceedings of The I International Symposium On Olive Growing = Acta. Hortic. Proceedings of the Indiana Academy of Science = Proc Indiana Acad Sci Proceedings of The Indian Academy of Sciences-animal Sciences = P Indian As-anim Sci Proceedings of The Indian Academy of Sciences-animal Sciences = P. Indian As-anim. Sci. Proceedings of The Indian Academy of Sciences-chemical Sciences = P Indian As-chem Sci Proceedings of The Indian Academy of Sciences-chemical Sciences = P. Indian As-chem. Sci. Proceedings of The Indian Academy of Sciences-earth and Planetary Sciences = P Indian As-earth Proceedings of The Indian Academy of Sciences-earth and Planetary Sciences = P. Indian As-earth. Proceedings of The Indian Academy of Sciences-engineering Sciences = P Indian As-eng Sci Proceedings of The Indian Academy of Sciences-engineering Sciences = P. Indian As-eng. Sci. Proceedings of The Indian Academy of Sciences-mathematical Sciences = P Indian As-math Sci Proceedings of The Indian Academy of Sciences-mathematical Sciences = P. Indian As-math. Sci. Proceedings of The Indian Academy of Sciences-plant Sciences = P Indian As-plant Sc Proceedings of The Indian Academy of Sciences-plant Sciences = P. Indian As-plant. Sc. Proceedings of The Indian Academy of Sciences Section A = P Indian Acad Sci A Proceedings of The Indian Academy of Sciences Section A = P. Indian Acad. Sci. A Proceedings of The Indian Academy of Sciences Section B = P Indian Acad Sci B Proceedings of The Indian Academy of Sciences Section B = P. Indian Acad. Sci. B Proceedings of the Indian National Science Academy = Proc. Indian Nat. Sci. Acad. Part A Proceedings of the Industrial Waste Conference = Proc. Ind. Waste Conf. Proceedings of The Industrial Waste Conference = Proc Ind Waste Conf Proceedings of The Industrial Waste Conference = Proc. Ind. Waste Conf. Proceedings of The Institute of Acoustics = Proc Ins Ac Proceedings of The Institute of Acoustics = Proc. Ins. Ac. Proceedings of The Institute of Electrical and Electronics Engineers = Pr Inst Electr Elect Proceedings of The Institute of Electrical and Electronics Engineers = Pr. Inst. Electr. Elect. Proceedings of the Institute of Medicine of Chicago = Proc. Inst. Med. Chic. Proceedings of The Institute of Radio Engineers = P Ire Proceedings of The Institute of Radio Engineers = P. Ire. Proceedings of The Institution of Civil Engineers-civil Engineering = P I Civil Eng-civ En Proceedings of The Institution of Civil Engineers-civil Engineering = P. I. Civil Eng-civ. En. Proceedings of the Institution of Civil Engineers: Civil Engineering = Proc. Inst. Civ. Eng. Civ. Eng. Proceedings of the Institution of Civil Engineers: Construction Materials = Proc. Inst. Civ. Eng. Constr. Mater Proceedings of the Institution of Civil Engineers: Energy = Proc. Inst. Civ. Eng. Energy Proceedings of The Institution of Civil Engineers-engineering Sustainability = P I Civil Eng-eng Su Proceedings of The Institution of Civil Engineers-engineering Sustainability = P. I. Civil Eng-eng. Su. Proceedings of The Institution of Civil Engineers-geotechnical Engineering = P I Civil Eng-geotec Proceedings of The Institution of Civil Engineers-geotechnical Engineering = P. I. Civil Eng-geotec. Proceedings of the Institution of Civil Engineers: Geotechnical Engineering = Proc. Inst. Civ. Eng. Geotech. Eng. Proceedings of the Institution of Civil Engineers: Ground Improvement = Proc. Inst. Civ. Eng. Ground Improv. Proceedings of The Institution of Civil Engineers-maritime Engineering = P I Civil Eng-mar En Proceedings of The Institution of Civil Engineers-maritime Engineering = P. I. Civil Eng-mar. En. Proceedings of the Institution of Civil Engineers: Maritime Engineering = Proc. Inst. Civ. Eng. Marit. Eng. Proceedings of The Institution of Civil Engineers-municipal Engineer = P I Civil Eng-munic Proceedings of The Institution of Civil Engineers-municipal Engineer = P. I. Civil Eng-munic. Proceedings of the Institution of Civil Engineers: Municipal Engineer = Proc. Inst. Civ. Eng. Munic. Eng. Proceedings of The Institution of Civil Engineers Part 1-design and Construction = P I Civil Eng Pt 1 Proceedings of The Institution of Civil Engineers Part 1-design and Construction = P. I. Civil Eng. Pt. 1. Proceedings of The Institution of Civil Engineers Part 2-research and Theory = P I Civil Eng Pt 2 Proceedings of The Institution of Civil Engineers Part 2-research and Theory = P. I. Civil Eng. Pt. 2. Proceedings of The Institution of Civil Engineers = P I Civil Eng Proceedings of The Institution of Civil Engineers = P. I. Civil Eng. Proceedings of the Institution of Civil Engineers = Proc. Inst. Civ. Eng. Proceedings of The Institution of Civil Engineers-structures and Buildings = P I Civil Eng-str B Proceedings of The Institution of Civil Engineers-structures and Buildings = P. I. Civil Eng-str. B. Proceedings of the Institution of Civil Engineers: Structures and Buildings = Proc. Inst. Civ. Eng. Struct. Build. Proceedings of The Institution of Civil Engineers-transport = P I Civil Eng-transp Proceedings of The Institution of Civil Engineers-transport = P. I. Civil Eng-transp. Proceedings of the Institution of Civil Engineers: Transport = Proc. Inst. Civ. Eng. Transp. Proceedings of the Institution of Civil Engineers: Waste Resource Management = Proc. Inst. Civ. Eng. Waste Resour. Manag. Proceedings of The Institution of Civil Engineers-water and Maritime Engineering = P I Civil Eng-water Proceedings of The Institution of Civil Engineers-water and Maritime Engineering = P. I. Civil Eng-water. Proceedings of The Institution of Civil Engineers-water Management = P I Civil Eng-wat M Proceedings of The Institution of Civil Engineers-water Management = P. I. Civil Eng-wat. M. Proceedings of the Institution of Civil Engineers: Water Management = Proc. Inst. Civ. Eng. Water Manage. Proceedings of The Institution of Civil Engineers-water Maritime and Energy = P I Civil Eng-water Proceedings of The Institution of Civil Engineers-water Maritime and Energy = P. I. Civil Eng-water. Proceedings of The Institution of Electrical Engineers-london = P I Electr Eng Proceedings of The Institution of Electrical Engineers-london = P. I. Electr. Eng. Proceedings of the Institution of Mechanical Engineers, IMechE Conference = Proc. Inst. Mech. Eng., IMechE Conf. Proceedings of The Institution of Mechanical Engineers Part A-journal of Power and Energy = P I Mech Eng A-j Pow Proceedings of The Institution of Mechanical Engineers Part A-journal of Power and Energy = P. I. Mech. Eng. A-j. Pow. Proceedings of the Institution of Mechanical Engineers, Part A: Journal of Power and Energy = Proc. Inst. Mech. Eng. Part A J. Power Energy Proceedings of The Institution of Mechanical Engineers Part B-journal of Engineering Manufacture = P I Mech Eng B-j Eng Proceedings of The Institution of Mechanical Engineers Part B-journal of Engineering Manufacture = P. I. Mech. Eng. B-j. Eng. Proceedings of the Institution of Mechanical Engineers, Part B: Journal of Engineering Manufacture = Proc. Inst. Mech. Eng. Part B J. Eng. Manuf. Proceedings of The Institution of Mechanical Engineers Part C-journal of Mechanical Engineering Science = P I Mech Eng C-j Mec Proceedings of The Institution of Mechanical Engineers Part C-journal of Mechanical Engineering Science = P. I. Mech. Eng. C-j. Mec. Proceedings of the Institution of Mechanical Engineers, Part C: Journal of Mechanical Engineering Science = Proc. Inst. Mech. Eng. Part C J. Mech. Eng. Sci. Proceedings of The Institution of Mechanical Engineers Part D-journal of Automobile Engineering = P I Mech Eng D-j Aut Proceedings of The Institution of Mechanical Engineers Part D-journal of Automobile Engineering = P. I. Mech. Eng. D-j. Aut. Proceedings of the Institution of Mechanical Engineers, Part D: Journal of Automobile Engineering = Proc. Inst. Mech. Eng. Part D J. Automob. Eng. Proceedings of The Institution of Mechanical Engineers Part E-journal of Process Mechanical Engineering = P I Mech Eng E-j Pro Proceedings of The Institution of Mechanical Engineers Part E-journal of Process Mechanical Engineering = P. I. Mech. Eng. E-j. Pro. Proceedings of the Institution of Mechanical Engineers, Part E: Journal of Process Mechanical Engineering = Proc. Inst. Mech. Eng. Part E J. Process Mech. Eng. Proceedings of The Institution of Mechanical Engineers Part F-journal of Rail and Rapid Transit = P I Mech Eng F-j Rai Proceedings of The Institution of Mechanical Engineers Part F-journal of Rail and Rapid Transit = P. I. Mech. Eng. F-j. Rai. Proceedings of the Institution of Mechanical Engineers, Part F: Journal of Rail and Rapid Transit = Proc. Inst. Mech. Eng. Part F J. Rail Rapid Transit Proceedings of The Institution of Mechanical Engineers Part G-journal of Aerospace Engineering = P I Mech Eng G-j Aer Proceedings of The Institution of Mechanical Engineers Part G-journal of Aerospace Engineering = P. I. Mech. Eng. G-j. Aer. Proceedings of the Institution of Mechanical Engineers. Part G, Journal of aerospace engineering = Proc Inst Mech Eng G J Aerosp Eng Proceedings of the Institution of Mechanical Engineers, Part G: Journal of Aerospace Engineering = Proc. Inst. Mech. Eng. Part G J. Aerosp. Eng. Proceedings of The Institution of Mechanical Engineers Part H-journal of Engineering in Medicine = P I Mech Eng H Proceedings of The Institution of Mechanical Engineers Part H-journal of Engineering in Medicine = P. I. Mech. Eng. H. Proceedings of the Institution of Mechanical Engineers. Part H, Journal of engineering in medicine = Proc Inst Mech Eng [H] Proceedings of the Institution of Mechanical Engineers. Part H, Journal of Engineering in Medicine = Proc. Inst. Mech. Eng. [H] Proceedings of The Institution Of Mechanical Engineers. Part H, Journal Of Engineering In Medicine=Proc Inst Mech Eng [H];; Proceedings of the Institution of Mechanical Engineers, Part H: Journal of Engineering in Medicine = Proc. Inst. Mech. Eng. Part H J. Eng. Med. Proceedings of The Institution of Mechanical Engineers Part I-journal of Systems and Control Engineering = P I Mech Eng I-j Sys Proceedings of The Institution of Mechanical Engineers Part I-journal of Systems and Control Engineering = P. I. Mech. Eng. I-j. Sys. Proceedings of the Institution of Mechanical Engineers. Part I: Journal of Systems and Control Engineering = Proc. Inst. Mech. Eng. Part I J. Syst. Control Eng. Proceedings of The Institution of Mechanical Engineers Part J-journal of Engineering Tribology = P I Mech Eng J-j-eng Proceedings of The Institution of Mechanical Engineers Part J-journal of Engineering Tribology = P. I. Mech. Eng. J-j-eng. Proceedings of The Institution of Mechanical Engineers Part J-journal of Engineering Tribology = P I Mech Eng J-j Eng Proceedings of The Institution of Mechanical Engineers Part J-journal of Engineering Tribology = P. I. Mech. Eng. J-j. Eng. Proceedings of the Institution of Mechanical Engineers, Part J: Journal of Engineering Tribology = Proc. Inst. Mech. Eng. Part J J. Eng. Tribol. Proceedings of The Institution of Mechanical Engineers Part K-journal of Multi-body Dynamics = P I Mech Eng K-j Mul Proceedings of The Institution of Mechanical Engineers Part K-journal of Multi-body Dynamics = P. I. Mech. Eng. K-j. Mul. Proceedings of the Institution of Mechanical Engineers, Part K: Journal of Multi-body Dynamics = Proc. Inst. Mech. Eng. Part K J. Multi-body Dyn. Proceedings of The Institution of Mechanical Engineers Part L-journal of Materials-design and Applications = P I Mech Eng L-j Mat Proceedings of The Institution of Mechanical Engineers Part L-journal of Materials-design and Applications = P. I. Mech. Eng. L-j. Mat. Proceedings of the Institution of Mechanical Engineers, Part L: Journal of Materials: Design and Applications = Proc. Inst. Mech. Eng. Part L J. Mater. Des. Appl. Proceedings of The Institution of Mechanical Engineers Part M-journal of Engineering for The Maritime Environment = P I Mech Eng M-j Eng Proceedings of The Institution of Mechanical Engineers Part M-journal of Engineering for The Maritime Environment = P. I. Mech. Eng. M-j. Eng. Proceedings of the Institution of Mechanical Engineers, Part M: Journal of Engineering for the Maritime Environment = Proc. Inst. Mech. Eng. Part M J. Eng. Marit. Environ. Proceedings of The Institution of Mechanical Engineers Part O-journal of Risk and Reliability = P I Mech Eng O-j Ris Proceedings of The Institution of Mechanical Engineers Part O-journal of Risk and Reliability = P. I. Mech. Eng. O-j. Ris. Proceedings of The Institution of Mechanical Engineers Part P-journal of Sports Engineering and Technology = P I Mech Eng P-j Spo Proceedings of The Institution of Mechanical Engineers Part P-journal of Sports Engineering and Technology = P. I. Mech. Eng. P-j. Spo. Proceedings of The Institution of Mechanical Engineers = P I Mech Eng Proceedings of The Institution of Mechanical Engineers = P. I. Mech. Eng. Proceedings of The Institution of Mechanical Engineers Series = Proc Inst Mech Eng S Proceedings of The Institution of Mechanical Engineers Series = Proc. Inst. Mech. Eng. S. Proceedings of the International Academy of Oral Pathology = Proc. Int. Acad. Oral Pathol. Proceedings Of The International Academy Of Oral Pathology = Proc Int Acad Oral Pathol Proceedings of the International Astronomical Congress = Proc. Int. Astron. Congr. Proceedings of the International Astronomical Union = Proc. Int. Astron. Union Proceedings of The International Centre for Heat and Mass Transfer = P Int C Hea Proceedings of The International Centre for Heat and Mass Transfer = P. Int. C. Hea. Proceedings of The International Conference and British-israeli Workshop On Greenhouse Techniques Towards The 3rd Millennium = Acta Hortic Proceedings of The International Conference and British-israeli Workshop On Greenhouse Techniques Towards The 3rd Millennium = Acta. Hortic. Proceedings of The International Conference and Exhibition On Biometrics Technology = Procedia Comput Sci Proceedings of The International Conference and Exhibition On Biometrics Technology = Procedia. Comput. Sci. Proceedings of The International Conference & Exhibition On Soilless Culture = Acta Hortic Proceedings of The International Conference & Exhibition On Soilless Culture = Acta. Hortic. Proceedings of The International Conference Modtech = Pr Int Conf Modtech Proceedings of The International Conference Modtech = Pr. Int. Conf. Modtech Proceedings of The International Conference of The Chilean Computer Science Society = P Int C Chil Comput Proceedings of The International Conference of The Chilean Computer Science Society = P. Int. C. Chil. Comput. Proceedings of The International Conference On Computing in High Energy Physics 92 = Cern Report Proceedings of The International Conference On Computing in High Energy Physics 92 = Cern. Report. Proceedings of The International Conference On Data Engineering (series) = Proc Int Conf Data Proceedings of The International Conference On Data Engineering (series) = Proc. Int. Conf. Data Proceedings of The International Conference On Environmental Problems Associated With Nitrogen Fertilisation of Field Grown Vegetable Crops = Acta Hortic Proceedings of The International Conference On Environmental Problems Associated With Nitrogen Fertilisation of Field Grown Vegetable Crops = Acta. Hortic. Proceedings of The International Conference On Environmental Science and Technology = Proc Int Conf Env Sc Proceedings of The International Conference On Environmental Science and Technology = Proc. Int. Conf. Env. Sc. Proceedings of The International Conference On High Temperature Superconductivity and Localization Phenomena = Progr High Temp Supe Proceedings of The International Conference On High Temperature Superconductivity and Localization Phenomena = Progr. High Temp. Supe. Proceedings of The International Conference On Integrated Fruit Production = Acta Hortic Proceedings of The International Conference On Integrated Fruit Production = Acta. Hortic. Proceedings of The International Conference On Intelligent Systems and Knowledge Engineering (iske 2007) = Adv Intel Sys Res Proceedings of The International Conference On Intelligent Systems and Knowledge Engineering (iske 2007) = Adv. Intel. Sys. Res. Proceedings of the International Conference on Lasers = Proc. Int. Conf. Lasers Proceedings of The International Conference On Linear Statistical Inference Linstat '93 = Math Appl Proceedings of The International Conference On Linear Statistical Inference Linstat '93 = Math. Appl. Proceedings of The International Conference On Medicinal and Aromatic Plants Possibilities and Limitations of Medicinal and Aromatic Plant Production in The 21st Century = Acta Hortic Proceedings of The International Conference On Medicinal and Aromatic Plants Possibilities and Limitations of Medicinal and Aromatic Plant Production in The 21st Century = Acta. Hortic. Proceedings of The International Conference On Medicinal and Aromatic Plants, Pt Ii = Acta Hortic Proceedings of The International Conference On Medicinal and Aromatic Plants, Pt Ii = Acta. Hortic. Proceedings of The International Conference On Microalloying in Steels = Mater Sci Forum Proceedings of The International Conference On Microalloying in Steels = Mater. Sci. Forum. Proceedings of The International Conference On Mining Science & Technology (icmst2009) = Proced Earth Plan Sc Proceedings of The International Conference On Mining Science & Technology (icmst2009) = Proced. Earth. Plan. Sc. Proceedings of The International Conference On Nanoscience and Technology = J Phys Conf Ser Proceedings of The International Conference On Nanoscience and Technology = J. Phys. Conf. Ser. Proceedings of The International Conference On Optimization of Electrical and Electronic Equipment = P Int Conf Optim El Proceedings of The International Conference On Optimization of Electrical and Electronic Equipment = P. Int. Conf. Optim. El. Proceedings of The International Conference On Parallel Processing = Proc Int Conf Paral Proceedings of The International Conference On Parallel Processing = Proc. Int. Conf. Paral. Proceedings of The International Conference On Parallel Processing, Vol 2 = Proc Int Conf Paral Proceedings of The International Conference On Parallel Processing, Vol 2 = Proc. Int. Conf. Paral. Proceedings of The International Conference On Parallel Processing, Vol 3 = Proc Int Conf Paral Proceedings of The International Conference On Parallel Processing, Vol 3 = Proc. Int. Conf. Paral. Proceedings of The International Conference On Quality in Chains, Vols 1 and 2 = Acta Hortic Proceedings of The International Conference On Quality in Chains, Vols 1 and 2 = Acta. Hortic. Proceedings of The International Conference On Quality Management in Supply Chains of Ornamentals = Acta Hortic Proceedings of The International Conference On Quality Management in Supply Chains of Ornamentals = Acta. Hortic. Proceedings of The International Conference On Quality Management of Fresh Cut Produce = Acta Hortic Proceedings of The International Conference On Quality Management of Fresh Cut Produce = Acta. Hortic. Proceedings of The International Conference On Ripening Regulation and Postharvest Fruit Quality = Acta Hortic Proceedings of The International Conference On Ripening Regulation and Postharvest Fruit Quality = Acta. Hortic. Proceedings of The International Conference On Scientometrics and Informetrics = Pro Int Conf Sci Inf Proceedings of The International Conference On Scientometrics and Informetrics = Pro. Int. Conf. Sci. Inf. Proceedings of The International Conference On Sustainable Greenhouse Systems, Vols 1 and 2 = Acta Hortic Proceedings of The International Conference On Sustainable Greenhouse Systems, Vols 1 and 2 = Acta. Hortic. Proceedings of The International Conference On Ubiquitous Information Technologies & Applications = P Int C Ubiq Inform Proceedings of The International Conference On Ubiquitous Information Technologies & Applications = P. Int. C. Ubiq. Inform. Proceedings of The International Conference On Urban Horticulture = Acta Hortic Proceedings of The International Conference On Urban Horticulture = Acta. Hortic. Proceedings of The International Conference On Very Large Data Bases = Proc Int Conf Very L Proceedings of The International Conference On Very Large Data Bases = Proc. Int. Conf. Very L. Proceedings of The International Conference On Virtual Learning = Proc Int C Virtual L Proceedings of The International Conference On Virtual Learning = Proc. Int. C. Virtual L. Proceedings of The International Conference Postharvest Unlimited = Acta Hortic Proceedings of The International Conference Postharvest Unlimited = Acta. Hortic. Proceedings of The International Conference Postharvest Unlimited Downunder 2004 = Acta Hortic Proceedings of The International Conference Postharvest Unlimited Downunder 2004 = Acta. Hortic. Proceedings of The International Conferences On Basement Tectonics = P Int C Bas Proceedings of The International Conferences On Basement Tectonics = P. Int. C. Bas. Proceedings of the International Congress of Ecology = Proc. Int. Congr. Ecol. Proceedings of the ... International Congress of Endocrinology. International Congress of Endocrinology = Proc Int Congr Endocrinol Proceedings of The International Congress On Experimental Mechanics = P Int Cong Experit M Proceedings of The International Congress On Experimental Mechanics = P. Int. Cong. Experit. M. Proceedings of The International Congress On Greenhouse Vegetables: The Product Chain of Fresh Tomatoes, Peppers, Cucumbers = Acta Hortic Proceedings of The International Congress On Greenhouse Vegetables: The Product Chain of Fresh Tomatoes, Peppers, Cucumbers = Acta. Hortic. Proceedings of The International Herring Symposium = Low Wake Fi Proceedings of The International Herring Symposium = Low. Wake. Fi. Proceedings of The International Joint Conference On Neural Networks 2003, Vols 1-4 = Ieee Ijcnn Proceedings of The International Joint Conference On Neural Networks 2003, Vols 1-4 = Ieee. Ijcnn. Proceedings of The International Joint Conference On Neural Networks (ijcnn), Vols 1-5 = Ieee Ijcnn Proceedings of The International Joint Conference On Neural Networks (ijcnn), Vols 1-5 = Ieee. Ijcnn. Proceedings of The International Lunar Conference 2003/ International Lunar Exploration Working Group 5 - Ilc2003/ilewg 5 = Sci Tech Proceedings of The International Lunar Conference 2003/ International Lunar Exploration Working Group 5 - Ilc2003/ilewg 5 = Sci. Tech. Proceedings of The International Mining Geology Conference = Australas I Min Met Proceedings of The International Mining Geology Conference = Australas. I. Min. Met. Proceedings of the International Power Sources Symposium = Proc. Int. Power Sources Symp. Proceedings of the International Pyrotechnics Seminar = Proc. Int. Pyrotech. Semin. Proceedings of The International School and Symposium On Small Angle Scattering = Kfki Prep R Proceedings of The International School and Symposium On Small Angle Scattering = Kfki. Prep. R. Proceedings of The International School of Physics Enrico Fermi = P Int Sch Phys Proceedings of The International School of Physics Enrico Fermi = P. Int. Sch. Phys. Proceedings of the International School of Physics "Enrico Fermi" = Proc. Internat. School Phys. Enrico Fermi Proceedings of the International Society for Magnetic Resonance in Medicine ... Scientific Meeting and Exhibition. International Society for Magnetic Resonance in Medicine. Scientific Meeting and Exhibition = Proc Int Soc Magn Reson Med Sci Meet Exhib Int Soc Magn Reson Med Sci Meet Exhib Proceedings of The International Symposia On Transport Phenomena, Dynamics, and Design of Rotating Machinery = P Int Tr Ph Proceedings of The International Symposia On Transport Phenomena, Dynamics, and Design of Rotating Machinery = P. Int. Tr. Ph. Proceedings of The International Symposium - Geomark 2000 = Esa Sp Publ Proceedings of The International Symposium - Geomark 2000 = Esa. Sp. Publ. Proceedings of The International Symposium On Advances in Environmental Control, Automation and Cultivation Systems for Sustainable, High-quality Crop Production Under Protected Cultivation = Acta Hortic Proceedings of The International Symposium On Advances in Environmental Control, Automation and Cultivation Systems for Sustainable, High-quality Crop Production Under Protected Cultivation = Acta. Hortic. Proceedings of The International Symposium On Apple Breeding for Scab Resistance = Acta Hortic Proceedings of The International Symposium On Apple Breeding for Scab Resistance = Acta. Hortic. Proceedings of The International Symposium On Asian Pears Commemorating The 100th Anniversary of Nijisseiki Pear, Vols I and Ii = Acta Hortic Proceedings of The International Symposium On Asian Pears Commemorating The 100th Anniversary of Nijisseiki Pear, Vols I and Ii = Acta. Hortic. Proceedings of The International Symposium On Asian Plants With Unique Horticultural Potential = Acta Hortic Proceedings of The International Symposium On Asian Plants With Unique Horticultural Potential = Acta. Hortic. Proceedings of The International Symposium On Biotechnology of Temperate Fruit Crops and Tropical Species = Acta Hortic Proceedings of The International Symposium On Biotechnology of Temperate Fruit Crops and Tropical Species = Acta. Hortic. Proceedings of the International Symposium on Boreal Forest = Proc. Int. Symp. Boreal For. Proceedings of The International Symposium On Chemical and Non-chemical Soil and Substrate Disinfestation = Acta Hortic Proceedings of The International Symposium On Chemical and Non-chemical Soil and Substrate Disinfestation = Acta. Hortic. Proceedings of The International Symposium On Citrus and Other Tropical and Subtropical Fruit Crops = Acta Hortic Proceedings of The International Symposium On Citrus and Other Tropical and Subtropical Fruit Crops = Acta. Hortic. Proceedings of The International Symposium On Classical Versus Molecular Breeding of Ornamentals = Acta Hortic Proceedings of The International Symposium On Classical Versus Molecular Breeding of Ornamentals = Acta. Hortic. Proceedings of The International Symposium On Cluster Assembled Materials = Ipap Conference Ser Proceedings of The International Symposium On Cluster Assembled Materials = Ipap. Conference. Ser. Proceedings of The International Symposium On Composting of Organic Matter = Acta Hortic Proceedings of The International Symposium On Composting of Organic Matter = Acta. Hortic. Proceedings of The International Symposium On Cultivation and Utilization of Asian, Sub-tropical, and Underutilized Horticultural Crops = Acta Hortic Proceedings of The International Symposium On Cultivation and Utilization of Asian, Sub-tropical, and Underutilized Horticultural Crops = Acta. Hortic. Proceedings of The International Symposium On Design and Environmental Control of Tropical and Subtropical Greenhouses = Acta Hortic Proceedings of The International Symposium On Design and Environmental Control of Tropical and Subtropical Greenhouses = Acta. Hortic. Proceedings of The International Symposium On Endogenous and Exogenous Plant Bioregulators = Acta Hortic Proceedings of The International Symposium On Endogenous and Exogenous Plant Bioregulators = Acta. Hortic. Proceedings of The International Symposium On Enhancing Economic and Environmental Sustainability of Fruit Production in A Global Economy = Acta Hortic Proceedings of The International Symposium On Enhancing Economic and Environmental Sustainability of Fruit Production in A Global Economy = Acta. Hortic. Proceedings of The International Symposium On Foliar Nutrition of Perennial Fruit Plants = Acta Hortic Proceedings of The International Symposium On Foliar Nutrition of Perennial Fruit Plants = Acta. Hortic. Proceedings of The International Symposium On Grape Production and Processing = Acta Hortic Proceedings of The International Symposium On Grape Production and Processing = Acta. Hortic. Proceedings of The International Symposium On Greenhouse Cooling = Acta Hortic Proceedings of The International Symposium On Greenhouse Cooling = Acta. Hortic. Proceedings of The International Symposium On Greenhouses, Environmental Controls and In-house Mechanization for Crop Production in The Tropics and Sub-tropics = Acta Hortic Proceedings of The International Symposium On Greenhouses, Environmental Controls and In-house Mechanization for Crop Production in The Tropics and Sub-tropics = Acta. Hortic. Proceedings of The International Symposium On Growing Media = Acta Hortic Proceedings of The International Symposium On Growing Media = Acta. Hortic. Proceedings of The International Symposium On Growing Media and Hydroponics = Acta Hortic Proceedings of The International Symposium On Growing Media and Hydroponics = Acta. Hortic. Proceedings of The International Symposium On Growing Media & Hydroponics = Acta Hortic Proceedings of The International Symposium On Growing Media & Hydroponics = Acta. Hortic. Proceedings of The International Symposium On Growth and Development of Fruit Crops = Acta Hortic Proceedings of The International Symposium On Growth and Development of Fruit Crops = Acta. Hortic. Proceedings of The International Symposium On Harnessing The Potential of Horticulture in The Asian-pacific Region = Acta Hortic Proceedings of The International Symposium On Harnessing The Potential of Horticulture in The Asian-pacific Region = Acta. Hortic. Proceedings of The International Symposium On High Technology for Greenhouse System Management, Vols 1 and 2 = Acta Hortic Proceedings of The International Symposium On High Technology for Greenhouse System Management, Vols 1 and 2 = Acta. Hortic. Proceedings of The International Symposium On Horticultural Plants in Urban and Peri-urban Life = Acta Hortic Proceedings of The International Symposium On Horticultural Plants in Urban and Peri-urban Life = Acta. Hortic. Proceedings of The International Symposium On Horticultural Practices and Therapy for Human Well-being = Acta Hortic Proceedings of The International Symposium On Horticultural Practices and Therapy for Human Well-being = Acta. Hortic. Proceedings of The International Symposium On Irrigation and Water Relations in Grapevine and Fruit Trees = Acta Hortic Proceedings of The International Symposium On Irrigation and Water Relations in Grapevine and Fruit Trees = Acta. Hortic. Proceedings of The International Symposium On King and Tanner Crabs = Low Wake Fi Proceedings of The International Symposium On King and Tanner Crabs = Low. Wake. Fi. Proceedings of The International Symposium On Managing Greenhouse Crops in Saline Environment = Acta Hortic Proceedings of The International Symposium On Managing Greenhouse Crops in Saline Environment = Acta. Hortic. Proceedings of The International Symposium On Medicinal and Nutraceutical Plants = Acta Hortic Proceedings of The International Symposium On Medicinal and Nutraceutical Plants = Acta. Hortic. Proceedings of The International Symposium On Mediterranean Horticulture: Issues and Prospects = Acta Hortic Proceedings of The International Symposium On Mediterranean Horticulture: Issues and Prospects = Acta. Hortic. Proceedings of The International Symposium On Methods and Markers for Quality Assurance in Micropropagation = Acta Hortic Proceedings of The International Symposium On Methods and Markers for Quality Assurance in Micropropagation = Acta. Hortic. Proceedings of The International Symposium On Molecular Markers for Characterizing Genotypes and Identifying Cultivars in Horticulture = Acta Hortic Proceedings of The International Symposium On Molecular Markers for Characterizing Genotypes and Identifying Cultivars in Horticulture = Acta. Hortic. Proceedings of The International Symposium On New Directions in Electroanalytical Chemistry = Elec Soc S Proceedings of The International Symposium On New Directions in Electroanalytical Chemistry = Elec. Soc. S. Proceedings of The International Symposium On North Pacific Flatfish = Low Wake Fi Proceedings of The International Symposium On North Pacific Flatfish = Low. Wake. Fi. Proceedings of The International Symposium On Ornamentals, Now! = Acta Hortic Proceedings of The International Symposium On Ornamentals, Now! = Acta. Hortic. Proceedings of The International Symposium On Performance Evaluation of Computer and Telecommunication Systems = Simul Series Proceedings of The International Symposium On Performance Evaluation of Computer and Telecommunication Systems = Simul. Series. Proceedings of The International Symposium On Pits and Pores: Formation, Properties, and Significance for Advanced Luminescent Materials = Elec Soc S Proceedings of The International Symposium On Pits and Pores: Formation, Properties, and Significance for Advanced Luminescent Materials = Elec. Soc. S. Proceedings of The International Symposium On Plant Biotechnology: From Bench to Commercialization = Acta Hortic Proceedings of The International Symposium On Plant Biotechnology: From Bench to Commercialization = Acta. Hortic. Proceedings of The International Symposium On Plants As Food and Medicine: The Utilization and Development of Horticultural Plants for Human Health = Acta Hortic Proceedings of The International Symposium On Plants As Food and Medicine: The Utilization and Development of Horticultural Plants for Human Health = Acta. Hortic. Proceedings of The International Symposium On Power Semiconductor Devices & Ics (1998) = Proc Int Symp Power Proceedings of The International Symposium On Power Semiconductor Devices & Ics (1998) = Proc. Int. Symp. Power Proceedings of The International Symposium On Power Semiconductor Devices & Ics = Proc Int Symp Power Proceedings of The International Symposium On Power Semiconductor Devices & Ics = Proc. Int. Symp. Power Proceedings of The International Symposium On Progress in Clinical Pacing = Curr Clin P Proceedings of The International Symposium On Progress in Clinical Pacing = Curr. Clin. P. Proceedings of The International Symposium On Seed Enhancement and Seedling Production Technology = Acta Hortic Proceedings of The International Symposium On Seed Enhancement and Seedling Production Technology = Acta. Hortic. Proceedings of The International Symposium On Soilless Culture and Hydroponics = Acta Hortic Proceedings of The International Symposium On Soilless Culture and Hydroponics = Acta. Hortic. Proceedings of The International Symposium On Structural and Functional Genomics of Horticultural Plants = Acta Hortic Proceedings of The International Symposium On Structural and Functional Genomics of Horticultural Plants = Acta. Hortic. Proceedings of The International Symposium On Sustainability Through Integrated and Organic Horticulture = Acta Hortic Proceedings of The International Symposium On Sustainability Through Integrated and Organic Horticulture = Acta. Hortic. Proceedings of The International Symposium On Sustainable Use of Plant Biodiversity to Promote New Opportunities for Horticultural Production Development = Acta Hortic Proceedings of The International Symposium On Sustainable Use of Plant Biodiversity to Promote New Opportunities for Horticultural Production Development = Acta. Hortic. Proceedings of The International Symposium On Techniques to Control Salination for Horticultural Productivity = Acta Hortic Proceedings of The International Symposium On Techniques to Control Salination for Horticultural Productivity = Acta. Hortic. Proceedings of The International Symposium On The Horizons of Using Organic Matter Substrates in Horticulture = Acta Hortic Proceedings of The International Symposium On The Horizons of Using Organic Matter Substrates in Horticulture = Acta. Hortic. Proceedings of The International Symposium On The Role of Postharvest Technology in The Globalisation of Horticulture = Acta Hortic Proceedings of The International Symposium On The Role of Postharvest Technology in The Globalisation of Horticulture = Acta. Hortic. Proceedings of The International Symposium On Thin Film Materials, Processes, Reliability, and Applications: Thin Film Processes = Elec Soc S Proceedings of The International Symposium On Thin Film Materials, Processes, Reliability, and Applications: Thin Film Processes = Elec. Soc. S. Proceedings of The International Symposium On Tropical and Subtropical Fruits, Vols 1 and 2 = Acta Hortic Proceedings of The International Symposium On Tropical and Subtropical Fruits, Vols 1 and 2 = Acta. Hortic. Proceedings of The International Symposium Psychological Stress At Work = People Work Res Rep Proceedings of The International Symposium Psychological Stress At Work = People. Work Res. Rep. Proceedings of The International Symposium Towards Ecologically Sound Fertilisation Strategies for Field Vegetable Production = Acta Hortic Proceedings of The International Symposium Towards Ecologically Sound Fertilisation Strategies for Field Vegetable Production = Acta. Hortic. Proceedings of The International Workshop Fingerprinting Methods for The Identification of Timber Origins = Landbauforsch Vti Ag Proceedings of The International Workshop Fingerprinting Methods for The Identification of Timber Origins = Landbauforsch. Vti. Ag. Proceedings of The International Workshop Mir Deorbit = Esa Sp Publ Proceedings of The International Workshop Mir Deorbit = Esa. Sp. Publ. Proceedings of The International Workshop On Advances in Grapevine and Wine Research = Acta Hortic Proceedings of The International Workshop On Advances in Grapevine and Wine Research = Acta. Hortic. Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications 3 = Int Neur Netw Soc S Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications 3 = Int. Neur. Netw. Soc. S. Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications = Int Neur Netw Soc S Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications = Int. Neur. Netw. Soc. S. Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications = Neural Netw Inns Proceedings of The International Workshop On Applications of Neural Networks to Telecommunications = Neural Netw. Inns. Proceedings of The International Workshop On Characterization of Genetic Resources of Tzfts = Acta Hortic Proceedings of The International Workshop On Characterization of Genetic Resources of Tzfts = Acta. Hortic. Proceedings of The International Workshop On Computational Intelligence in Security for Information Systems Cisis 2008 = Adv Soft Comp Proceedings of The International Workshop On Computational Intelligence in Security for Information Systems Cisis 2008 = Adv. Soft. Comp. Proceedings of The International Workshop On Critical Current Limitations in High Temperature Superconductors = Progr High Temp Supe Proceedings of The International Workshop On Critical Current Limitations in High Temperature Superconductors = Progr. High Temp. Supe. Proceedings of The International Workshop On Ecological Aspects of Vegetable Fertilisation in Integrated Crop Production in The Field = Acta Hortic Proceedings of The International Workshop On Ecological Aspects of Vegetable Fertilisation in Integrated Crop Production in The Field = Acta. Hortic. Proceedings of The International Workshop On Greenhouse Environmental Control and Crop Production in Semi-arid Regions = Acta Hortic Proceedings of The International Workshop On Greenhouse Environmental Control and Crop Production in Semi-arid Regions = Acta. Hortic. Proceedings of The International Workshop On Medicinal and Aromatic Plants = Acta Hortic Proceedings of The International Workshop On Medicinal and Aromatic Plants = Acta. Hortic. Proceedings of The International Workshop On Models for Plant Growth and Control of Product Quality in Horticultural Production = Acta Hortic Proceedings of The International Workshop On Models for Plant Growth and Control of Product Quality in Horticultural Production = Acta. Hortic. Proceedings of The International Workshop On Nitride Semiconductors = Ipap Conference Ser Proceedings of The International Workshop On Nitride Semiconductors = Ipap. Conference. Ser. Proceedings of The International Workshop On Ornamental Plants = Acta Hortic Proceedings of The International Workshop On Ornamental Plants = Acta. Hortic. Proceedings of The International Workshop On Photoionization 1992 = St Vac Ultrav Xray P Proceedings of The International Workshop On Photoionization 1992 = St. Vac. Ultrav. Xray. P. Proceedings of The International Workshop On Quality of Life Cycle Inventory (lci) Data = Fzka Tech Umw Wis B Proceedings of The International Workshop On Quality of Life Cycle Inventory (lci) Data = Fzka. Tech. Umw. Wis. B. Proceedings of The International Workshop On Tropical and Subtropical Fruits = Acta Hortic Proceedings of The International Workshop On Tropical and Subtropical Fruits = Acta. Hortic. Proceedings of the Intersociety Energy Conversion Engineering Conference = Proc. Intersoc. Energy Convers. Eng. Conf. Proceedings of The Intersociety Energy Conversion Engineering Conference (series) = Proc Iecec Proceedings of The Intersociety Energy Conversion Engineering Conference (series) = Proc. Iecec. Proceedings of the IRE = Proc. IRE Proceedings of The Ishs Workshop Towards An Ecologically Sound Fertilisation in Field Vegetable Production = Acta Hortic Proceedings of The Ishs Workshop Towards An Ecologically Sound Fertilisation in Field Vegetable Production = Acta. Hortic. Proceedings of The Ist International Symposium On Organic Apple and Pear = Acta Hortic Proceedings of The Ist International Symposium On Organic Apple and Pear = Acta. Hortic. Proceedings of The Iti 2007 29th International Conference On Information Technology Interfaces = Iti Proceedings of The Iti 2008 30th International Conference On Information Technology Interfaces = Iti Proceedings of The Iti 2009 31st International Conference On Information Technology Interfaces = Iti Proceedings of The Iufro Technical Session On Geomorphic Hazards in Managed Forests = Us For Serv T R Psw Proceedings of The Iufro Technical Session On Geomorphic Hazards in Managed Forests = Us. For. Serv. T. R. Psw. Proceedings of The Ivth International Cherry Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The Ivth International Cherry Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The Ivth International Conference On Managing Quality in Chains, Vols 1 and 2 = Acta Hortic Proceedings of The Ivth International Conference On Managing Quality in Chains, Vols 1 and 2 = Acta. Hortic. Proceedings of The Ivth International Pineapple Symposium = Acta Hortic Proceedings of The Ivth International Pineapple Symposium = Acta. Hortic. Proceedings of The Ivth International Symposium On Edible Alliaceae = Acta Hortic Proceedings of The Ivth International Symposium On Edible Alliaceae = Acta. Hortic. Proceedings of The Ivth International Symposium On Irrigation of Horticultural Crops = Acta Hortic Proceedings of The Ivth International Symposium On Irrigation of Horticultural Crops = Acta. Hortic. Proceedings of The Ivth International Symposium On Pistachios and Almonds = Acta Hortic Proceedings of The Ivth International Symposium On Pistachios and Almonds = Acta. Hortic. Proceedings of The Ivth International Symposium On Rose Research and Cultivation = Acta Hortic Proceedings of The Ivth International Symposium On Rose Research and Cultivation = Acta. Hortic. Proceedings of The Ivth International Symposium On Seed, Transplant and Stand Establishment of Horticultural Crops = Acta Hortic Proceedings of The Ivth International Symposium On Seed, Transplant and Stand Establishment of Horticultural Crops = Acta. Hortic. Proceedings of The Ixth International Rubus and Ribes Symposium = Acta Hortic Proceedings of The Ixth International Rubus and Ribes Symposium = Acta. Hortic. Proceedings of The Ixth International Symposium On The Processing Tomato = Acta Hortic Proceedings of The Ixth International Symposium On The Processing Tomato = Acta. Hortic. Proceedings of The Ixth International Workshop On Fire Blight = Acta Hortic Proceedings of The Ixth International Workshop On Fire Blight = Acta. Hortic. Proceedings of The Japan Academy = P Jpn Acad Proceedings of The Japan Academy = P. Jpn. Acad. Proceedings of the Japan Academy = Proc Jpn Acad Proceedings of The Japan Academy Series A-mathematical Sciences = P Jpn Acad A-math Proceedings of The Japan Academy Series A-mathematical Sciences = P. Jpn. Acad. A-math. Proceedings of The Japan Academy Series B-physical and Biological Sciences = P Jpn Acad B-phys Proceedings of The Japan Academy Series B-physical and Biological Sciences = P. Jpn. Acad. B-phys. Proceedings of The Jmsm 2008 Conference = Physcs Proc Proceedings of The Jmsm 2008 Conference = Physcs. Proc. Proceedings of The Joint Esa-nasa Space-flight Safety Conference = Esa Spec Publ Proceedings of The Joint Esa-nasa Space-flight Safety Conference = Esa. Spec. Publ. Proceedings of The Joint Esa-nasa Space-flight Safety Conference = Esa Sp Publ Proceedings of The Joint Esa-nasa Space-flight Safety Conference = Esa. Sp. Publ. Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 2 = Pme Conference Proce Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 2 = Pme Conference. Proce. Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 3 = Pme Conference Proce Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 3 = Pme Conference. Proce. Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 4 = Pme Conference Proce Proceedings of The Joint Meeting of Pme 32 and Pme-na Xxx, Vol 4 = Pme Conference. Proce. Proceedings of The Joint Meeting of The Fourteenth Crucifer Genetics Workshop and Fourth Ishs Symposium On Brassicas = Acta Hortic Proceedings of The Joint Meeting of The Fourteenth Crucifer Genetics Workshop and Fourth Ishs Symposium On Brassicas = Acta. Hortic. Proceedings of The Koninklijke Akademie Van Wetenschappen Te Amsterdam = P K Akad Wet-amsterd Proceedings of The Koninklijke Akademie Van Wetenschappen Te Amsterdam = P. K. Akad. Wet-amsterd. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen-biological Chemical Geological Physical and Medical Sciences = P K Ned Akad Wetensc Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen-biological Chemical Geological Physical and Medical Sciences = P. K. Ned. Akad. Wetensc. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen = P K Ned Akad Wetensc Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen = P. K. Ned. Akad. Wetensc. Proceedings of the Koninklijke Nederlandse Akademie van Wetenschappen = Proc. K. Ned. Akad. Wet. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series A-mathematical Sciences = P K Ned Akad A Math Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series A-mathematical Sciences = P. K. Ned. Akad. A. Math. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series B-palaeontology Geology Physics Chemistry Anthropology = P K Ned Akad B Phys Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series B-palaeontology Geology Physics Chemistry Anthropology = P. K. Ned. Akad. B. Phys. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series B-physical Sciences = Proc K Ned Akad B-ph Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series B-physical Sciences = Proc. K. Ned. Akad. B-ph. Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series C-biological and Medical Sciences = P K Ned Akad C Biol Proceedings of The Koninklijke Nederlandse Akademie Van Wetenschappen Series C-biological and Medical Sciences = P. K. Ned. Akad. C. Biol. Proceedings of the Koninklijke Nederlandse Akademie van Wetenschappen. Series C. Biological and medical sciences = Proc K Ned Akad Wet C Proceedings of the Koninklijke Nederlandse Akademie Van Wetenschappen. Series C: Biological and Medical Sciences = Proc. K. Ned. Akad. Wet. C Proceedings of The Laser Institute of America = P Laser Ins Proceedings of The Laser Institute of America = P. Laser Ins. Proceedings of the Latvian Academy of Sciences, Section B: Natural, Exact and Applied Sciences = Proc. Latv. Acad. Sci. Sect. B Proceedings of The Laurence Reid Gas Conditioning Conference = L Reid Gas Proceedings of The Laurence Reid Gas Conditioning Conference = L. Reid Gas Proceedings of The Law of The Sea Institute = P Law Sea I Proceedings of The Law of The Sea Institute = P. Law Sea I. Proceedings of The Lebedev Institute of The Academy of Sciences of Russia = P Trudy P N Proceedings of The Lebedev Institute of The Academy of Sciences of Russia = P. Trudy. P. N. Proceedings of The Linnean Society of New South Wales = P Linn Soc N S W Proceedings of The Linnean Society of New South Wales = P. Linn. Soc. N. S. W. Proceedings of the Linnean Society of New South Wales = Proc. Linn. Soc. N. S. W. Proceedings of The London Mathematical Society = P Lond Math Soc Proceedings of The London Mathematical Society = P. Lond. Math. Soc. Proceedings of the London Mathematical Society = Proc. London Math. Soc. (3) Proceedings of The Lunar and Planetary Science Conference = P Lunar Planet Sci C Proceedings of The Lunar and Planetary Science Conference = P. Lunar Planet. Sci. C. Proceedings of the Massachusetts Historical Society. Massachusetts Historical Society = Mass Hist Soc Proc Proceedings of The Massachusetts Historical Society = P Mass Hist Soc Proceedings of The Massachusetts Historical Society = P. Mass. Hist. Soc. Proceedings of The Massachusetts Historical Society Series = P Ma Hist S Proceedings of The Massachusetts Historical Society Series = P. Ma. Hist. S. Proceedings of The Massachusetts Historical Society, Vol C, 1988 = P Ma Hist S Proceedings of The Massachusetts Historical Society, Vol C, 1988 = P. Ma. Hist. S. Proceedings of The Massachusetts Historical Society, Vol Cv 1993 = P Ma Hist S Proceedings of The Massachusetts Historical Society, Vol Cv 1993 = P. Ma. Hist. S. Proceedings of the Mathematical and Physical Society of Egypt = Proc. Math. Phys. Soc. Egypt Proceedings of the Mathematical Society = Proc. Math. Soc. Proceedings of The Meat Industry Research Conference = P Meat Ind Res Conf Proceedings of The Meat Industry Research Conference = P. Meat Ind. Res. Conf. Proceedings of The Meeting of The Physiology Section of The European Association for Potato Research = Acta Hortic Proceedings of The Meeting of The Physiology Section of The European Association for Potato Research = Acta. Hortic. Proceedings of The Meeting On Planning and Implementing Forest Operations to Achieve Sustainable Forests = Usda N Cent Proceedings of The Meeting On Planning and Implementing Forest Operations to Achieve Sustainable Forests = Usda. N. Cent. Proceedings of The Meetings - Association of Research Libraries = P Assoc Res Lib Proceedings of The Meetings - Association of Research Libraries = P. Assoc. Res. Lib. Proceedings of The Meeting Studying Nature Through Centuries - 120th Anniversary of Belgrade Observatory = Pub Astro Obs Belgr Proceedings of The Meeting Studying Nature Through Centuries - 120th Anniversary of Belgrade Observatory = Pub. Astro. Obs. Belgr. Proceedings of The Meteoroids 2001 Conference = Esa Spec Publ Proceedings of The Meteoroids 2001 Conference = Esa. Spec. Publ. Proceedings of The Meteoroids 2001 Conference = Esa Sp Publ Proceedings of The Meteoroids 2001 Conference = Esa. Sp. Publ. Proceedings of The Midwest Raptor Management Symposium and Workshop = Nat Wil F S Proceedings of The Midwest Raptor Management Symposium and Workshop = Nat. Wil. F. S. Proceedings of the Mine Medical Officers Association of SA = Proc. Mine Med. Off. Assoc. SA Proceedings of the Mine Medical Officers' Association of S. A = Proc Mine Med Off Assoc SA Proceedings of the Mine Medical Officers Association = Proc. Mine Med. Off. Assoc. Proceedings of the Mine Medical Officers' Association = Proc Mine Med Off Assoc Proceedings of The Missouri Ozark Forest Ecosystem Project: An Experimental Approach to Landscape Research = Us For Serv T R Nc Proceedings of The Missouri Ozark Forest Ecosystem Project: An Experimental Approach to Landscape Research = Us. For. Serv. T. R. Nc. Proceedings of the National Academy of Science of the United States of America = Proc. Natl. Acad. Sci. U.S.A. Proceedings of the National Academy of Sciences, India = Proc. Nat. Acad. Sci. India Sect. A Proceedings of The National Academy of Sciences India Section A-physical Sciences = P Natl A Sci India A Proceedings of The National Academy of Sciences India Section A-physical Sciences = P. Natl. A. Sci. India A. Proceedings of the National Academy of Sciences, India, Section A: Physical Sciences = Proc. Natl. Acad. Sci., India, Sect. A Proceedings of The National Academy of Sciences India Section B-biological Sciences = P Natl A Sci India B Proceedings of The National Academy of Sciences India Section B-biological Sciences = P. Natl. A. Sci. India B. Proceedings of The National Academy of Sciences of The United States of America-biological Sciences = P Natl Acad Sci-biol Proceedings of The National Academy of Sciences of The United States of America-biological Sciences = P. Natl. Acad. Sci-biol. Proceedings of the National Academy of Sciences of the United States of America, Early Edition = Proc. Natl. Acad. Sci. U.S.A., Early Ed. Proceedings of The National Academy of Sciences of The United States of America-physical Sciences = P Natl Acad Sci Usa Proceedings of The National Academy of Sciences of The United States of America-physical Sciences = P. Natl. Acad. Sci. Usa. Proceedings of the National Academy of Sciences of the United States of America = PNAS Proceedings of The National Academy of Sciences of The United States of America = P Natl Acad Sci Usa Proceedings of The National Academy of Sciences of The United States of America = P. Natl. Acad. Sci. Usa. Proceedings of the National academy of Sciences of the United States of America = Proc. Nat. Acad. Sci. U.S.A. Proceedings of the National Academy of Sciences of the United States of America = Proc. Nat. Acad. Sci. U.S.A. Proceedings of the National Academy of Sciences of the United States of America = Proc. Natl. Acad. Sci. USA Proceedings of the National Academy of Sciences of the United States of America = Proc Natl Acad Sci U S A Proceedings of the National Academy of Sciences of the United States of America = Proc. Natl. Acad. Sci. U. S. A. Proceedings of the National Academy of Sciences of the United States of America = Proc. Natl. Acad. Sci. U.S.A. Proceedings of The National Academy Of Sciences Of The United States Of America=Proc Natl Acad Sci U S A;; Proceedings of the National Cancer Conference = Proc. Natl. Cancer Conf. Proceedings of The National Conference On Municipal Sewage Treatment Plant Sludge Management = Sludg Man S Proceedings of The National Conference On Municipal Sewage Treatment Plant Sludge Management = Sludg. Man. S. Proceedings of The National Council On Radiation Protection and Measurements = P Nat C Rad Proceedings of The National Council On Radiation Protection and Measurements = P. Nat. C. Rad. Proceedings of The National Passive Solar Conference = P Natl Sol Proceedings of The National Passive Solar Conference = P. Natl. Sol. Proceedings of the National Science Council, Republic of China. Part B, Life sciences = Proc Natl Sci Counc Repub China B Proceedings of the National Science Council, Republic of China. Part B, Life Sciences = Proc. Natl. Sci. Counc. Repub. China B Proceedings of The National Science Council, Republic Of China. Part B, Life Sciences=Proc Natl Sci Counc Repub China B;; Proceedings of The National Society of Black Physicists = Aip Conf Proc Proceedings of The National Society of Black Physicists = Aip. Conf. Proc. Proceedings of The New Zealand Plant Protection Conference = P Nz Plan P Proceedings of The New Zealand Plant Protection Conference = P. Nz. Plan. P. Proceedings of The New Zealand Society of Animal Production = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production-series = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production-series = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production, Vol 50 1990 = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production, Vol 50 1990 = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production, Vol 51 1991 = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production, Vol 51 1991 = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production, Vol 52 1992 = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production, Vol 52 1992 = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production, Vol 53 1993 = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production, Vol 53 1993 = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Society of Animal Production, Vol 55 1995 = Proc New Zeal Soc An Proceedings of The New Zealand Society of Animal Production, Vol 55 1995 = Proc. New Zeal. Soc. An. Proceedings of The New Zealand Weed and Pest Control Conference = P Nz Weed P Proceedings of The New Zealand Weed and Pest Control Conference = P. Nz. Weed P. Proceedings of The Nineteenth International Symposium On Improvement of Ornamental Plants = Acta Hortic Proceedings of The Nineteenth International Symposium On Improvement of Ornamental Plants = Acta. Hortic. Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol 1, 1999 = Int Offshore Polar E Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol 1, 1999 = Int. Offshore Polar E. Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Ii, 1999 = Int Offshore Polar E Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Ii, 1999 = Int. Offshore Polar E. Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Iii, 1999 = Int Offshore Polar E Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Iii, 1999 = Int. Offshore Polar E. Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Iv, 1999 = Int Offshore Polar E Proceedings of The Ninth (1999) International Offshore and Polar Engineering Conference, Vol Iv, 1999 = Int. Offshore Polar E. Proceedings of The Ninth Annual Structure in Complexity Theory Conference = Struct Compl Th Conf Proceedings of The Ninth Annual Structure in Complexity Theory Conference = Struct. Compl. Th. Conf. Proceedings of The Ninth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Ninth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Ninth Iasted International Conference On Signal and Image Processing = Iasted Int Conf Sign Proceedings of The Ninth Iasted International Conference On Signal and Image Processing = Iasted Int. Conf. Sign. Proceedings of The Ninth International Conference On Computer Supported Cooperative Work in Design, Vols 1 and 2 = Int C Comp Supp Coop Proceedings of The Ninth International Conference On Computer Supported Cooperative Work in Design, Vols 1 and 2 = Int. C. Comp. Supp. Coop. Proceedings of The Ninth International Conference On High Temperature Materials Chemistry = Elec Soc S Proceedings of The Ninth International Conference On High Temperature Materials Chemistry = Elec. Soc. S. Proceedings of The Ninth International Conference On The Study of Shamanism and Alternate Modes of Healing = Univer Dial Proceedings of The Ninth International Conference On The Study of Shamanism and Alternate Modes of Healing = Univer. Dial. Proceedings of The Ninth International Congress of Egyptologists, Vols I and Ii = Orient Lovan Anal Proceedings of The Ninth International Congress of Egyptologists, Vols I and Ii = Orient. Lovan. Anal. Proceedings of The Ninth International Symposium On Consumer Electronics 2005 = I Symp Consum Electr Proceedings of The Ninth International Symposium On Consumer Electronics 2005 = I. Symp. Consum. Electr. Proceedings of The Ninth International Symposium On Flower Bulbs, Vols 1 and 2 = Acta Hortic Proceedings of The Ninth International Symposium On Flower Bulbs, Vols 1 and 2 = Acta. Hortic. Proceedings of The Ninth International Symposium On Plant Bioregulators in Fruit Production = Acta Hortic Proceedings of The Ninth International Symposium On Plant Bioregulators in Fruit Production = Acta. Hortic. Proceedings of The Ninth International Symposium On Silicon-on-insulator Technology and Devices = Elec Soc S Proceedings of The Ninth International Symposium On Silicon-on-insulator Technology and Devices = Elec. Soc. S. Proceedings of The Ninth Symposium On Space Nuclear Power Systems = Aip Conf Proc Proceedings of The Ninth Symposium On Space Nuclear Power Systems = Aip. Conf. Proc. Proceedings of The Ninth West Coast Conference On Formal Linguistics = P W Coast C Proceedings of The Ninth West Coast Conference On Formal Linguistics = P. W. Coast C. Proceedings of The Ninth Workshop On Algorithm Engineering and Experiments and The Fourth Workshop On Analytic Algorithmics and Combinatorics = Siam Proc S Proceedings of The Ninth Workshop On Algorithm Engineering and Experiments and The Fourth Workshop On Analytic Algorithmics and Combinatorics = Siam. Proc. S. Proceedings of the NIPR Symposium on Antarctic Meteorites. NIPR Symposium on Antarctic Meteorites = Proc NIPR Symp Antarct Meteorites Proceedings of The Nutrition Society of Australia = Proc Nutr Soc Aust Proceedings of The Nutrition Society of Australia = Proc. Nutr. Soc. Aust. Proceedings of The Nutrition Society of Australia, Vol 16 = Proc Nutr Soc Aust Proceedings of The Nutrition Society of Australia, Vol 16 = Proc. Nutr. Soc. Aust. Proceedings of The Nutrition Society of Australia, Vol 18 = Proc Nutr Soc Aust Proceedings of The Nutrition Society of Australia, Vol 18 = Proc. Nutr. Soc. Aust. Proceedings of The Nutrition Society of Australia, Vol 20 = Proc Nutr Soc Aust Proceedings of The Nutrition Society of Australia, Vol 20 = Proc. Nutr. Soc. Aust. Proceedings of the Nutrition Society of India = Proc Nutr Soc India Proceedings of The Nutrition Society of New Zealand = P Nut Soc N Proceedings of The Nutrition Society of New Zealand = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 14 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 14 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 15 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 15 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 17 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 17 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 18 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 18 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 19 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 19 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 20 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 20 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 21 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 21 = P. Nut. Soc. N. Proceedings of The Nutrition Society of New Zealand, Vol 25 = P Nut Soc N Proceedings of The Nutrition Society of New Zealand, Vol 25 = P. Nut. Soc. N. Proceedings of The Nutrition Society = P Nutr Soc Proceedings of The Nutrition Society = P. Nutr. Soc. Proceedings of the Nutrition Society = Proc. Nutr. Soc. Proceedings of The Nutrition Society=Proc Nutr Soc;; Proceedings of the Ocean Drilling Program, Part B: Scientific Results = Proc. Ocean Drill. Program Part B Sci. Results. Proceedings of The Oecd Workshop On Ex-vessel Debris Coolability = Fzka Tech Umw Wis B Proceedings of The Oecd Workshop On Ex-vessel Debris Coolability = Fzka. Tech. Umw. Wis. B. Proceedings of the Pakistan Academy of Sciences = Proc. Pakistan Acad. Sci. Proceedings of The Pakistan Congress of Zoology, Vol 22, 2002 = Proc Pak Cong Zool Proceedings of The Pakistan Congress of Zoology, Vol 22, 2002 = Proc. Pak. Cong. Zool. Proceedings of The Parallel, Distributed and Network-based Processing = Euromicro Workshop P Proceedings of The Parallel, Distributed and Network-based Processing = Euromicro. Workshop. P. Proceedings of The Physical Society of London = P Phys Soc Lond Proceedings of The Physical Society of London = P. Phys. Soc. Lond. Proceedings of the Physical Society of London = Proc. Phys. Soc. London Proceedings of The Physical Society of London Section A = P Phys Soc Lond A Proceedings of The Physical Society of London Section A = P. Phys. Soc. Lond. A Proceedings of The Physical Society of London Section B = P Phys Soc Lond B Proceedings of The Physical Society of London Section B = P. Phys. Soc. Lond. B Proceedings of The Physical Society = P Phys Soc Proceedings of The Physical Society = P. Phys. Soc. Proceedings of the Physical Society. Section A = Proc. Phys. Soc. London, Sect. A Proceedings of the Physical Society. Section B = Proc. Phys. Soc. London, Sect. B Proceedings of The Physics Conference Tim-08 = Aip Conf Proc Proceedings of The Physics Conference Tim-08 = Aip. Conf. Proc. Proceedings of the Physiological Society = Proc. Physiol. Soc. Proceedings of The Phytochemical Society of Europe = Pr Phyt Soc Proceedings of The Phytochemical Society of Europe = Pr. Phyt. Soc. Proceedings of The Pmr Conference = P Pmr Conf Proceedings of The Pmr Conference = P. Pmr Conf. Proceedings of The Pmr Conference, Vol 14, 1989 = P Pmr Conf Proceedings of The Pmr Conference, Vol 14, 1989 = P. Pmr Conf. Proceedings of The Prehistoric Society = P Prehist Soc Proceedings of The Prehistoric Society = P. Prehist. Soc. Proceedings of the Prehistoric Society = ProcPrehistSoc Proceedings of The Retina Research Foundation Symposia = P Ret Res F Proceedings of The Retina Research Foundation Symposia = P. Ret. Res. F. Proceedings of The Robert A Welch Foundation Conferences On Chemical Research = P R A Welch Proceedings of The Robert A Welch Foundation Conferences On Chemical Research = P. R. A Welch Proceedings of The Romanian Academy Series A-mathematics Physics Technical Sciences Information Science = Proc Rom Acad Ser A Proceedings of The Romanian Academy Series A-mathematics Physics Technical Sciences Information Science = Proc. Rom. Acad. Ser. A. Proceedings of The Romanian Academy Series A-mathematics Physics Technical Sciences Information Science = P Romanian Acad A Proceedings of The Romanian Academy Series A-mathematics Physics Technical Sciences Information Science = P. Romanian Acad. A. Proceedings of the Royal College of Physicians of Edinburgh = Proc R Coll Physicians Edinb Proceedings of The Royal Entomological Society of London Series A-general Entomology = Proc R Entomol Soc A Proceedings of The Royal Entomological Society of London Series A-general Entomology = Proc. R. Entomol. Soc. A. Proceedings of The Royal Entomological Society of London Series B Taxomony = P Roy Entomol Soc B Proceedings of The Royal Entomological Society of London Series B Taxomony = P. Roy. Entomol. Soc. B Proceedings of The Royal Institution of Great Britain = P R Inst Gb Proceedings of The Royal Institution of Great Britain = P. R. Inst. Gb. Proceedings of the Royal Institution of Great Britain = Proc R Inst G B Proceedings of The Royal Institution of Great Britain, Vol 70 = P R Inst Gb Proceedings of The Royal Institution of Great Britain, Vol 70 = P. R. Inst. Gb. Proceedings of the Royal Irish Academy = PRIA Proceedings of the Royal Irish Academy = Proc. R. Ir. Acad. Proceedings of the Royal Irish Academy = Proc. Roy. Irish Acad. Sect. A Proceedings of The Royal Irish Academy Section A-mathematical and Physical Sciences = P Roy Irish Acad A Proceedings of The Royal Irish Academy Section A-mathematical and Physical Sciences = P. Roy. Irish Acad. A. Proceedings of The Royal Irish Academy Section A-mathematical Astronomical and Physical Sciences = Proc R Ir Acad S A-m Proceedings of The Royal Irish Academy Section A-mathematical Astronomical and Physical Sciences = Proc. R. Ir. Acad. S. A-m. Proceedings of the Royal Irish Academy. Section B: Biological, geological, and chemical science = Proc R Ir Acad [B] Proceedings of the Royal Irish Academy. Section B: Biological, Geological and Chemical Science = Proc. R. Ir. Acad. [B] Proceedings of The Royal Irish Academy Section B-biological Geological and Chemical Science = P Roy Irish Acad B Proceedings of The Royal Irish Academy Section B-biological Geological and Chemical Science = P. Roy. Irish Acad. B. Proceedings of the Royal Irish Academy. Section C. Archaeology, Celtic studies, history, linguistics and literature. Royal Irish Academy = Proc R Ir Acad C Archaeol Celt Stud Hist Linguist Lit Proceedings of The Royal Irish Academy Section C-archaeology Celtic Studies History Linguistics Literature = P Roy Irish Acad C Proceedings of The Royal Irish Academy Section C-archaeology Celtic Studies History Linguistics Literature = P. Roy. Irish Acad. C. Proceedings of The Royal Musical Association = P Roy Music Assoc Proceedings of The Royal Musical Association = P. Roy. Music. Assoc. Proceedings of The Royal Society A-mathematical Physical and Engineering Sciences = P Roy Soc A-math Phy Proceedings of The Royal Society A-mathematical Physical and Engineering Sciences = P. Roy. Soc. A-math. Phy. Proceedings of The Royal Society A-mathematical Physical and Engineering Sciences = P R Soc A Proceedings of The Royal Society A-mathematical Physical and Engineering Sciences = P. R. Soc. A. Proceedings of The Royal Society B-biological Sciences = P Roy Soc B-biol Sci Proceedings of The Royal Society B-biological Sciences = P. Roy. Soc. B-biol. Sci. Proceedings of The Royal Society B-biological Sciences = P R Soc B Proceedings of The Royal Society B-biological Sciences = P. R. Soc. B. Proceedings of the Royal Society of Edinburgh = Proc. Roy. Soc. Edinburgh Sect. A Proceedings of The Royal Society of Edinburgh Section A-mathematics = P Roy Soc Edinb A Proceedings of The Royal Society of Edinburgh Section A-mathematics = P. Roy. Soc. Edinb. A. Proceedings of The Royal Society of Edinburgh Section B-biological Sciences = P Roy Soc Edinb B Proceedings of The Royal Society of Edinburgh Section B-biological Sciences = P. Roy. Soc. Edinb. B. Proceedings of The Royal Society of Edinburgh Section B-biology = Proc R Soc Edin B-bi Proceedings of The Royal Society of Edinburgh Section B-biology = Proc. R. Soc. Edin. B-bi. Proceedings of the Royal Society of Edinburgh. Section B: Biology = Proc R Soc Edinb [Biol] Proceedings of The Royal Society of Edinburg Section A-mathematical and Physical Sciences = Proc R Soc Edin A-ma Proceedings of The Royal Society of Edinburg Section A-mathematical and Physical Sciences = Proc. R. Soc. Edin. A-ma. Proceedings of the Royal Society of London = Proc. Roy. Soc. London Proceedings of The Royal Society of London = P R Soc London Proceedings of The Royal Society of London = P. R. Soc. London Proceedings of The Royal Society of London Series A-containing Papers of A Mathematical and Physical Character = P R Soc Lond A-conta Proceedings of The Royal Society of London Series A-containing Papers of A Mathematical and Physical Character = P. R. Soc. Lond. A-conta. Proceedings of the Royal Society of London, Series A: Mathematical and Physical Sciences = Proc. R. Soc. London, Ser. A Proceedings of The Royal Society of London Series A-mathematical and Physical Sciences = Proc R Soc Lon Ser-a Proceedings of The Royal Society of London Series A-mathematical and Physical Sciences = Proc. R. Soc. Lon. Ser-a. Proceedings of The Royal Society of London Series A-mathematical and Physical Sciences = P Roy Soc Lond A Mat Proceedings of The Royal Society of London Series A-mathematical and Physical Sciences = P. Roy. Soc. Lond. A. Mat. Proceedings of The Royal Society of London Series A-mathematical Physical and Engineering Sciences = P Roy Soc Lond A Mat Proceedings of The Royal Society of London Series A-mathematical Physical and Engineering Sciences = P. Roy. Soc. Lond. A. Mat. Proceedings of the Royal Society of London Series A = Proc. R. Soc. London, Ser. A Proceedings of the Royal Society of London, Series A = Proc. R. Soc. London, Ser. A Proceedings of the Royal Society of London. Series B: Biological Sciences = Proc. R. Soc. Lond. B Biol. Sci. Proceedings of The Royal Society Of London. Series B: Biological Sciences=Proc R Soc Lond B Biol Sci;; Proceedings of the Royal Society of London, Series B: Biological Sciences = Proc. R. Soc. London, Ser. B Proceedings of The Royal Society of London Series B-biological Sciences = P Roy Soc Lond B Bio Proceedings of The Royal Society of London Series B-biological Sciences = P. Roy. Soc. Lond. B. Bio. Proceedings of The Royal Society of London Series B-containing Papers of A Biological Character = P R Soc Lond B-conta Proceedings of The Royal Society of London Series B-containing Papers of A Biological Character = P. R. Soc. Lond. B-conta. Proceedings of the Royal Society of London. Series B, Containing papers of a Biological character. Royal Society (Great Britain) = Proc R Soc Lond B Biol Sci Proceedings of the Royal Society of London Series B = Proc. R. Soc. London, Ser. B Proceedings of the Royal Society of London, Series B = Proc. R. Soc. London, Ser. B Proceedings of The Royal Society of Medicine-london = P Roy Soc Med Proceedings of The Royal Society of Medicine-london = P. Roy. Soc. Med. Proceedings of the Royal Society of Medicine = Proc R Soc Med Proceedings of the Royal Society of Medicine = Proc. R. Soc. Med. Proceedings of the Royal Society = Proc. Roy. Soc. London Ser. A Proceedings of The Royal Society Series B-biological Sciences = Proc R Soc Ser B-bio Proceedings of The Royal Society Series B-biological Sciences = Proc. R. Soc. Ser. B-bio. Proceedings of the Rudolf Virchow Medical Society in the City of New York = Proc Rudolf Virchow Med Soc City N Y Proceedings of the Rudolf Virchow Medical Society in the City of New York = Proc. Rudolf Virchow Med. Soc. City N. Y. Proceedings of The Rudolf Virchow Medical Society in The City of New York = Proc R Virch Med Soc Proceedings of The Rudolf Virchow Medical Society in The City of New York = Proc. R. Virch. Med. Soc. Proceedings of The Rudolf Virchow Medical Society = P Rudolf Virch Med S Proceedings of The Rudolf Virchow Medical Society = P. Rudolf Virch. Med. S. Proceedings of the School of Science of Tokai University = Proc. School Sci. Tokai Univ. Proceedings of the School of Science of Tokai University = Proc. Sch. Sci. Tokai Univ. Proceedings of The Second Asm Heat Treatment and Surface Engineering Conference in Europe, Pts 1 and 2 = Mater Sci Forum Proceedings of The Second Asm Heat Treatment and Surface Engineering Conference in Europe, Pts 1 and 2 = Mater. Sci. Forum. Proceedings of The Second Autumn School On Reactor Physics - Erofi Ii = Kfki Prep R Proceedings of The Second Autumn School On Reactor Physics - Erofi Ii = Kfki. Prep. R. Proceedings of The Second Balkan Symposium On Vegetables and Potatoes = Acta Hortic Proceedings of The Second Balkan Symposium On Vegetables and Potatoes = Acta. Hortic. Proceedings of The Second European Workshop On Exo-astrobiology = Esa Spec Publ Proceedings of The Second European Workshop On Exo-astrobiology = Esa. Spec. Publ. Proceedings of The Second European Workshop On Exo-astrobiology = Esa Sp Publ Proceedings of The Second European Workshop On Exo-astrobiology = Esa. Sp. Publ. Proceedings of The Second Helas International Conference: Helioseismology, Asteroseismology and Mhd Connections = J Phys Conf Ser Proceedings of The Second Helas International Conference: Helioseismology, Asteroseismology and Mhd Connections = J. Phys. Conf. Ser. Proceedings of The Second Iberian Congress On Chestnut = Acta Hortic Proceedings of The Second Iberian Congress On Chestnut = Acta. Hortic. Proceedings of The Second International Conference On Electronic Materials ( Icem 90 ) = Mat Res S C Proceedings of The Second International Conference On Electronic Materials ( Icem 90 ) = Mat. Res. S. C. Proceedings of The Second International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Second International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Second International Conference On Management Science and Engineering Management = Manag Sci Eng Manag Proceedings of The Second International Conference On Management Science and Engineering Management = Manag. Sci. Eng. Manag. Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 1 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 2 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 3 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 4 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 6 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 7 = Modelling Simulation Proceedings of The Second International Conference On Modelling and Simulation (icms2009), Vol 8 = Modelling Simulation Proceedings of The Second International Congress On Cancer Pain = Adv Pain Res Ther Proceedings of The Second International Congress On Cancer Pain = Adv. Pain Res. Ther. Proceedings of The Second International Humulus Symposium = Acta Hortic Proceedings of The Second International Humulus Symposium = Acta. Hortic. Proceedings of The Second International Symposium On Acclimatization and Establishment of Micropropagated Plants = Acta Hortic Proceedings of The Second International Symposium On Acclimatization and Establishment of Micropropagated Plants = Acta. Hortic. Proceedings of The Second International Symposium On Biotechnology of Tropical and Subtropical Species = Acta Hortic Proceedings of The Second International Symposium On Biotechnology of Tropical and Subtropical Species = Acta. Hortic. Proceedings of The Second International Symposium On Edible Alliaceae = Acta Hortic Proceedings of The Second International Symposium On Edible Alliaceae = Acta. Hortic. Proceedings of The Second International Symposium On Improving The Performance of Supply Chains in The Transitional Economies = Acta Hortic Proceedings of The Second International Symposium On Improving The Performance of Supply Chains in The Transitional Economies = Acta. Hortic. Proceedings of The Second International Symposium On Loquat = Acta Hortic Proceedings of The Second International Symposium On Loquat = Acta. Hortic. Proceedings of The Second International Symposium On Low and High Dielectric Constant Materials - Materials Science, Processing, and Reliability Issues = Elec Soc S Proceedings of The Second International Symposium On Low and High Dielectric Constant Materials - Materials Science, Processing, and Reliability Issues = Elec. Soc. S. Proceedings of The Second International Symposium On Natural Preservatives in Food, Feed, and Cosmetics = Acta Hortic Proceedings of The Second International Symposium On Natural Preservatives in Food, Feed, and Cosmetics = Acta. Hortic. Proceedings of The Second International Symposium On Plant Genetic Resources of Horticultural Crops, Vols 1 and 2 = Acta Hortic Proceedings of The Second International Symposium On Plant Genetic Resources of Horticultural Crops, Vols 1 and 2 = Acta. Hortic. Proceedings of The Second International Symposium On Process Control, Diagnostics, and Modeling in Semiconductor Manufacturing = Elec Soc S Proceedings of The Second International Symposium On Process Control, Diagnostics, and Modeling in Semiconductor Manufacturing = Elec. Soc. S. Proceedings of The Second International Symposium On Proton Conducting Membrane Fuel Cell Ii = Elec Soc S Proceedings of The Second International Symposium On Proton Conducting Membrane Fuel Cell Ii = Elec. Soc. S. Proceedings of The Second International Symposium On The Taxonomy of Cultivated Plants = Acta Hortic Proceedings of The Second International Symposium On The Taxonomy of Cultivated Plants = Acta. Hortic. Proceedings of The Second Isaac Congress, Vols 1 and 2 = Int Soc Anal App Com Proceedings of The Second Isaac Congress, Vols 1 and 2 = Int. Soc. Anal. App. Com. Proceedings of The Second Missouri Ozark Forest Ecosystem Project Symposium: Post-treatment Results of The Landscape Experiment = Us For Serv T R Nc Proceedings of The Second Missouri Ozark Forest Ecosystem Project Symposium: Post-treatment Results of The Landscape Experiment = Us. For. Serv. T. R. Nc. Proceedings of The Second Msg Rao Workshop = Esa Sp Publ Proceedings of The Second Msg Rao Workshop = Esa. Sp. Publ. Proceedings of The Second Oecd ( Nea ) Csni Specialist Meeting On Molten Core Debris-concrete Interactions = K F K Reports Proceedings of The Second Oecd ( Nea ) Csni Specialist Meeting On Molten Core Debris-concrete Interactions = K. F. K. Reports. Proceedings of The Second Seattle Symposium in Biostatistics = Lect Notes Stat Proceedings of The Second Seattle Symposium in Biostatistics = Lect. Notes. Stat. Proceedings of The Second Siam International Conference On Data Mining = Siam Proc S Proceedings of The Second Siam International Conference On Data Mining = Siam Proc. S. Proceedings of The Second Symposium On Iii-v Nitride Materials and Processes = Elec Soc S Proceedings of The Second Symposium On Iii-v Nitride Materials and Processes = Elec. Soc. S. Proceedings of The Second Symposium On Social Aspects and Recreation Research = Usda Pac Sw Proceedings of The Second Symposium On Social Aspects and Recreation Research = Usda. Pac. Sw. Proceedings of The Second Thematic Conference On Remote Sensing for Marine and Coastal Environments - Needs, Solutions, and Applications, Vol Ii = Them Conf R Proceedings of The Second Thematic Conference On Remote Sensing for Marine and Coastal Environments - Needs, Solutions, and Applications, Vol Ii = Them. Conf. R. Proceedings of The Second Thematic Conference On Remote Sensing for Marine and Coastal Environments - Needs, Solutions, and Applications, Vol I = Them Conf R Proceedings of The Second Thematic Conference On Remote Sensing for Marine and Coastal Environments - Needs, Solutions, and Applications, Vol I = Them. Conf. R. Proceedings of The Second Workshop On Environments and Tools for Parallel Scientific Computing = Siam Proc S Proceedings of The Second Workshop On Environments and Tools for Parallel Scientific Computing = Siam. Proc. S. Proceedings of The Second Workshop On Pome Fruit Quality = Acta Hortic Proceedings of The Second Workshop On Pome Fruit Quality = Acta. Hortic. Proceedings of The Seminar for Arabian Studies = Proc Sem Arab Stud Proceedings of The Seminar for Arabian Studies = Proc. Sem. Arab. Stud. Proceedings of The Seminar for Arabian Studies, Vol 27 1997 = Proc Sem Arab Stud Proceedings of The Seminar for Arabian Studies, Vol 27 1997 = Proc. Sem. Arab. Stud. Proceedings of The Sem Ix International Congress On Experimental Mechanics = P Int Cong Experit M Proceedings of The Sem Ix International Congress On Experimental Mechanics = P. Int. Cong. Experit. M. Proceedings of The Session On Tropical Forestry for People of The Pacific, Xvii Pacific Science Congress = Usda Pac Sw Proceedings of The Session On Tropical Forestry for People of The Pacific, Xvii Pacific Science Congress = Usda. Pac. Sw. Proceedings of The Seventeenth (2007) International Offshore and Polar Engineering Conference, Vol 1- 4, Proceedings = Int Offshore Polar E Proceedings of The Seventeenth (2007) International Offshore and Polar Engineering Conference, Vol 1- 4, Proceedings = Int. Offshore Polar E. Proceedings of The Seventeenth Annual Ucla Indo-european Conference = J Indo-eur Stud Mono Proceedings of The Seventeenth Annual Ucla Indo-european Conference = J. Indo-eur. Stud. Mono. Proceedings of The Seventeenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Seventeenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol I, 1997 = Int Offshore Polar E Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol I, 1997 = Int. Offshore Polar E. Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Ii, 1997 = Int Offshore Polar E Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Ii, 1997 = Int. Offshore Polar E. Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Iii, 1997 = Int Offshore Polar E Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Iii, 1997 = Int. Offshore Polar E. Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Iv, 1997 = Int Offshore Polar E Proceedings of The Seventh (1997) International Offshore and Polar Engineering Conference, Vol Iv, 1997 = Int. Offshore Polar E. Proceedings of The Seventh Biennial Southern Silvicultural Research Conference = Usda So For Proceedings of The Seventh Biennial Southern Silvicultural Research Conference = Usda. So. For. Proceedings of The Seventh British National Conference On Databases ( Bncod 7 ) = Brit Comp S Proceedings of The Seventh British National Conference On Databases ( Bncod 7 ) = Brit. Comp. S. Proceedings of The Seventh European Conference On Mathematics in Industry = Eur Con Mat Proceedings of The Seventh European Conference On Mathematics in Industry = Eur. Con. Mat. Proceedings of The Seventh International Conference On Charged Particle Optics (cpo-7) = Physcs Proc Proceedings of The Seventh International Conference On Charged Particle Optics (cpo-7) = Physcs. Proc. Proceedings of The Seventh International Conference On The Study of Shamanism and Alternative Modes of Healing = Univer Dial Proceedings of The Seventh International Conference On The Study of Shamanism and Alternative Modes of Healing = Univer. Dial. Proceedings of The Seventh International Congress of Egyptologists = Orient Lovan Anal Proceedings of The Seventh International Congress of Egyptologists = Orient. Lovan. Anal. Proceedings of The Seventh International Mango Symposium = Acta Hortic Proceedings of The Seventh International Mango Symposium = Acta. Hortic. Proceedings of The Seventh International Robus-ribes Symposium = Acta Hortic Proceedings of The Seventh International Robus-ribes Symposium = Acta. Hortic. Proceedings of The Seventh International Symposium On Grapevine Physiology and Biotechnology = Acta Hortic Proceedings of The Seventh International Symposium On Grapevine Physiology and Biotechnology = Acta. Hortic. Proceedings of The Seventh International Symposium On Orchard and Plantation Systems = Acta Hortic Proceedings of The Seventh International Symposium On Orchard and Plantation Systems = Acta. Hortic. Proceedings of The Seventh International Symposium On Physics and Chemistry of Luminescent Materials = Elec Soc S Proceedings of The Seventh International Symposium On Physics and Chemistry of Luminescent Materials = Elec. Soc. S. Proceedings of The Seventh International Symposium On Postharvest Physiology of Ornamental Plants = Acta Hortic Proceedings of The Seventh International Symposium On Postharvest Physiology of Ornamental Plants = Acta. Hortic. Proceedings of The Seventh International Symposium On Silicon-on-insulator Technology and Devices = Elec Soc S Proceedings of The Seventh International Symposium On Silicon-on-insulator Technology and Devices = Elec. Soc. S. Proceedings of The Seventh International Symposium On The Processing Tomato = Acta Hortic Proceedings of The Seventh International Symposium On The Processing Tomato = Acta. Hortic. Proceedings of The Seventh International Symposium On Vaccinium Culture = Acta Hortic Proceedings of The Seventh International Symposium On Vaccinium Culture = Acta. Hortic. Proceedings of The Seventh International Workshop On Agglutinated Foraminifera = Grzyb Found Spec Pub Proceedings of The Seventh International Workshop On Agglutinated Foraminifera = Grzyb. Found. Spec. Pub. Proceedings of The Seventh International Workshop On Hardware/software Codesign (codes'99) = Hardw Softw Codes Proceedings of The Seventh International Workshop On Hardware/software Codesign (codes'99) = Hardw. Softw. Codes. Proceedings of The Seventh International Workshop On Petri Nets and Performance Models = Int Worksh Petri Net Proceedings of The Seventh International Workshop On Petri Nets and Performance Models = Int. Worksh. Petri Net. Proceedings of The Seventh Siam Conference On Parallel Processing for Scientific Computing = Siam Proc S Proceedings of The Seventh Siam Conference On Parallel Processing for Scientific Computing = Siam Proc. S. Proceedings of The Seventh Tihany Symposium On Radiation Chemistry = P Tihany Sy Proceedings of The Seventh Tihany Symposium On Radiation Chemistry = P. Tihany Sy. Proceedings of The Seventh Workshop On Electronics for Lhc Experiments = Cern Report Proceedings of The Seventh Workshop On Electronics for Lhc Experiments = Cern. Report. Proceedings of The Shortleaf Pine Regeneration Workshop = Usda So For Proceedings of The Shortleaf Pine Regeneration Workshop = Usda. So. For. Proceedings of The Sid = P Sid Proceedings of The Sid = P. Sid Proceedings of The Simulators International Xv = Simul Series Proceedings of The Simulators International Xv = Simul. Series. Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Sixteenth (2006) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Sixteenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Sixteenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Sixteenth Ieee Symposium On Field-programmable Custom Computing Machines = Ann Ieee Sym Field P Proceedings of The Sixteenth Ieee Symposium On Field-programmable Custom Computing Machines = Ann. Ieee Sym. Field. P. Proceedings of The Sixth (1996) International Offshore and Polar Engineering Conference, Vol I, 1996 = Int Offshore Polar E Proceedings of The Sixth (1996) International Offshore and Polar Engineering Conference, Vol I, 1996 = Int. Offshore Polar E. Proceedings of The Sixth (1996) International Offshore and Polar Engineering Conference, Vol Iii, 1996 = Int Offshore Polar E Proceedings of The Sixth (1996) International Offshore and Polar Engineering Conference, Vol Iii, 1996 = Int. Offshore Polar E. Proceedings of The Sixth Annual Structure in Complexity Theory Conference = Struct Compl Th Conf Proceedings of The Sixth Annual Structure in Complexity Theory Conference = Struct. Compl. Th. Conf. Proceedings of The Sixth Bi-annual International Conference of The Academy of Marketing Science = World Market Congr Proceedings of The Sixth Bi-annual International Conference of The Academy of Marketing Science = World. Market. Congr. Proceedings of The Sixth Biennial Southern Silvicultural Research Conference, Vols 1 and 2 = Usda Southe Proceedings of The Sixth Biennial Southern Silvicultural Research Conference, Vols 1 and 2 = Usda. Southe. Proceedings of The Sixth European Conference On Mathematics in Industry = Eur Con Mat Proceedings of The Sixth European Conference On Mathematics in Industry = Eur. Con. Mat. Proceedings of The Sixth European Space Power Conference (espc) = Esa Spec Publ Proceedings of The Sixth European Space Power Conference (espc) = Esa. Spec. Publ. Proceedings of The Sixth European Space Power Conference (espc) = Esa Sp Publ Proceedings of The Sixth European Space Power Conference (espc) = Esa. Sp. Publ. Proceedings of The Sixth Ieee Symposium On Computers and Communications = Ieee Symp Comp Commu Proceedings of The Sixth Ieee Symposium On Computers and Communications = Ieee Symp. Comp. Commu. Proceedings of The Sixth International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Sixth International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Sixth International Protea Research Symposium = Acta Hortic Proceedings of The Sixth International Protea Research Symposium = Acta. Hortic. Proceedings of The Sixth International Symposium On Electrode Processes = Elec Soc S Proceedings of The Sixth International Symposium On Electrode Processes = Elec. Soc. S. Proceedings of The Sixth International Symposium On Long Wavelength Infrared Detectors and Arrays: Physics and Applications = Elec Soc S Proceedings of The Sixth International Symposium On Long Wavelength Infrared Detectors and Arrays: Physics and Applications = Elec. Soc. S. Proceedings of The Sixth International Symposium On Mango, Vols 1 and 2 = Acta Hortic Proceedings of The Sixth International Symposium On Mango, Vols 1 and 2 = Acta. Hortic. Proceedings of The Sixth International Symposium On Protected Cultivation in Mild Winter Climate: Product and Process Innovation, Vols 1 and 2 = Acta Hortic Proceedings of The Sixth International Symposium On Protected Cultivation in Mild Winter Climate: Product and Process Innovation, Vols 1 and 2 = Acta. Hortic. Proceedings of The Sixth International Symposium On Temperate Fruit Growing in The Tropics and Subtropics = Acta Hortic Proceedings of The Sixth International Symposium On Temperate Fruit Growing in The Tropics and Subtropics = Acta. Hortic. Proceedings of The Sixth Siam International Conference On Data Mining = Siam Proc S Proceedings of The Sixth Siam International Conference On Data Mining = Siam Proc. S. Proceedings of The Sixth Symposium On Stand Establishment and Ishs Seed Sympoisum = Acta Hortic Proceedings of The Sixth Symposium On Stand Establishment and Ishs Seed Sympoisum = Acta. Hortic. Proceedings of The Sixth Workshop On Electronics for Lhc Experiments = Cern Report Proceedings of The Sixth Workshop On Electronics for Lhc Experiments = Cern. Report. Proceedings of The Sixty-third Annual Congress of The South African Sugar Technologists Association = P S Afr Sug Proceedings of The Sixty-third Annual Congress of The South African Sugar Technologists Association = P. S. Afr. Sug. Proceedings of the Society for Analytical Chemistry = Proc. Soc. Anal. Chem. Proceedings of the Society for Experimental Biology and Medicine = Proc. Soc. Exp. Biol. Med. Proceedings of The Society For Experimental Biology and Medicine=Proc Soc Exp Biol Med;; Proceedings of The Society for Experimental Biology and Medicine = P Soc Exp Biol Med Proceedings of The Society for Experimental Biology and Medicine = P. Soc. Exp. Biol. Med. Proceedings of the Society for Experimental Biology and Medicine. Society for Experimental Biology and Medicine (New York, N.Y.) = Proc Soc Exp Biol Med Proceedings of The Society of Photo-optical Instrumentation Engineers = P Soc Photo-opt Inst Proceedings of The Society of Photo-optical Instrumentation Engineers = P. Soc. Photo-opt. Inst. Proceedings of The Society of Photo-optical Instrumentation Engineers (spie) = P Soc Photo-opt Ins Proceedings of The Society of Photo-optical Instrumentation Engineers (spie) = P. Soc. Photo-opt. Ins. Proceedings of The Soho 10/gong 2000 Workshop On Helio- and Asteroseismology At The Dawn of The Millennium = Esa Spec Publ Proceedings of The Soho 10/gong 2000 Workshop On Helio- and Asteroseismology At The Dawn of The Millennium = Esa. Spec. Publ. Proceedings of The Soho 10/gong 2000 Workshop On Helio- and Asteroseismology At The Dawn of The Millennium = Esa Sp Publ Proceedings of The Soho 10/gong 2000 Workshop On Helio- and Asteroseismology At The Dawn of The Millennium = Esa. Sp. Publ. Proceedings of The Soho 11 Symposium On From Solar Min to Max: Half A Solar Cycle With Soho = Esa Spec Publ Proceedings of The Soho 11 Symposium On From Solar Min to Max: Half A Solar Cycle With Soho = Esa. Spec. Publ. Proceedings of The Soho 11 Symposium On From Solar Min to Max: Half A Solar Cycle With Soho = Esa Sp Publ Proceedings of The Soho 11 Symposium On From Solar Min to Max: Half A Solar Cycle With Soho = Esa. Sp. Publ. Proceedings of the Soil Science Society of America = Proc. Soil Sci. Soc. Am. Proceedings of The South Dakota Academy of Science = Proc S D Acad Sci Proceedings of The South Dakota Academy of Science = Proc. S. D. Acad. Sci. Proceedings of The South Dakota Academy of Science, Vol 69 = Proc S D Acad Sci Proceedings of The South Dakota Academy of Science, Vol 69 = Proc. S. D. Acad. Sci. Proceedings of The South Dakota Academy of Science, Vol 70 = Proc S D Acad Sci Proceedings of The South Dakota Academy of Science, Vol 70 = Proc. S. D. Acad. Sci. Proceedings of The Southern California Climate Symposium Trends and Extremes of The Past 2000 Years = Nat Hist Mus Los Ang Proceedings of The Southern California Climate Symposium Trends and Extremes of The Past 2000 Years = Nat. Hist. Mus. Los. Ang. Proceedings of The Southern Conference On Corrections = P S Conf Correct Proceedings of The Southern Conference On Corrections = P. S. Conf. Correct. Proceedings of The Southern Regional Information Exchange Group Biennial Symposium On Forest Genetics = Usda So For Proceedings of The Southern Regional Information Exchange Group Biennial Symposium On Forest Genetics = Usda. So. For. Proceedings of The South Pacific Soilless Culture Conference (spscc) = Acta Hortic Proceedings of The South Pacific Soilless Culture Conference (spscc) = Acta. Hortic. Proceedings of the SPI Annual Technical/Marketing Conference = Proc. SPI Annu. Tech./Mark. Conf. Proceedings of the staff meetings. Honolulu. Clinic = Proc Staff Meet Honol Clin Proceedings of the staff meetings. Mayo Clinic = Proc Staff Meet Mayo Clin Proceedings of The Staff Meetings of The Mayo Clinic = P Staff M Mayo Clin Proceedings of The Staff Meetings of The Mayo Clinic = P. Staff M. Mayo Clin. Proceedings of the staff meetings. Pethah-Tiqva, Israel. Beilinson Hospital = Proc Staff Meet Pethah Tiqva Isr Beilinson Hosp Proceedings of The State-of-the-art Program On Compound Semiconductors (sotapocs Xxx) = Elec Soc S Proceedings of The State-of-the-art Program On Compound Semiconductors (sotapocs Xxx) = Elec. Soc. S. Proceedings of the Steklov Institute of Mathematics = Proc. Steklov Inst. Math. Proceedings of The Steklov Institute of Mathematics = P Steklov I Math+ Proceedings of The Steklov Institute of Mathematics = P. Steklov I. Math+.+ Proceedings of The Steklov Institute of Mathematics = P Steklov Inst Math Proceedings of The Steklov Institute of Mathematics = P. Steklov Inst. Math. Proceedings of The Summer Computer Simulation Conference = P Summ Comp Proceedings of The Summer Computer Simulation Conference = P. Summ. Comp. Proceedings of The Swedish Weed Conference = P Swed W C Proceedings of The Swedish Weed Conference = P. Swed. W. C. Proceedings of The Symposia On Electrochemical Processing in Ulsi Fabrication I and Interconnect and Contact Metallization: Materials, Processes, and Reliability = Elec Soc S Proceedings of The Symposia On Electrochemical Processing in Ulsi Fabrication I and Interconnect and Contact Metallization: Materials, Processes, and Reliability = Elec. Soc. S. Proceedings of The Symposium On Advances in Mathematical Modeling and Simulation of Electrochemical Processes and Oxygen Depolarized Cathodes and Activated Cathodes for Chlor-alkali and Chlorated Processes = Elec Soc S Proceedings of The Symposium On Advances in Mathematical Modeling and Simulation of Electrochemical Processes and Oxygen Depolarized Cathodes and Activated Cathodes for Chlor-alkali and Chlorated Processes = Elec. Soc. S. Proceedings of The Symposium On Aqueous Batteries = Elec Soc S Proceedings of The Symposium On Aqueous Batteries = Elec. Soc. S. Proceedings of The Symposium On Batteries for Portable Applications and Electric Vehicles = Elec Soc S Proceedings of The Symposium On Batteries for Portable Applications and Electric Vehicles = Elec. Soc. S. Proceedings of The Symposium On Chemical and Biological Sensors and Analytical Electrochemical Methods = Elec Soc S Proceedings of The Symposium On Chemical and Biological Sensors and Analytical Electrochemical Methods = Elec. Soc. S. Proceedings of The Symposium On Critical Factors in Localized Corrosion Iii = Elec Soc S Proceedings of The Symposium On Critical Factors in Localized Corrosion Iii = Elec. Soc. S. Proceedings of The Symposium On Crystalline Defects and Contamination: Their Impact and Control in Device Manufacturing Ii = Elec Soc S Proceedings of The Symposium On Crystalline Defects and Contamination: Their Impact and Control in Device Manufacturing Ii = Elec. Soc. S. Proceedings of The Symposium On Current Research On Wood-destroying Organisms and Future Prospects for Protecting Wood in Use = Us For Serv T R Psw Proceedings of The Symposium On Current Research On Wood-destroying Organisms and Future Prospects for Protecting Wood in Use = Us. For. Serv. T. R. Psw. Proceedings of The Symposium On Ecosystem Management Research in The Ouachita Mountains: Pretreatment Conditions and Preliminary Findings = Usda So For Proceedings of The Symposium On Ecosystem Management Research in The Ouachita Mountains: Pretreatment Conditions and Preliminary Findings = Usda. So. For. Proceedings of The Symposium On Electrochemical Capacitors Ii = Elec Soc S Proceedings of The Symposium On Electrochemical Capacitors Ii = Elec. Soc. S. Proceedings of The Symposium On Electrochemical Surface Science of Hydrogen Adsorption and Absorption = Elec Soc S Proceedings of The Symposium On Electrochemical Surface Science of Hydrogen Adsorption and Absorption = Elec. Soc. S. Proceedings of The Symposium On Electrochemistry in The Preparation of Fluorine and Its Compounds = Elec Soc S Proceedings of The Symposium On Electrochemistry in The Preparation of Fluorine and Its Compounds = Elec. Soc. S. Proceedings of The Symposium On Electrode Materials and Processes for Energy Conversion and Storage Iv = Elec Soc S Proceedings of The Symposium On Electrode Materials and Processes for Energy Conversion and Storage Iv = Elec. Soc. S. Proceedings of The Symposium On Electron Crystallography = T Am Cryst Proceedings of The Symposium On Electron Crystallography = T. Am. Cryst. Proceedings of The Symposium On Environmental Aspects of Electrochemical Technology: Applications in Electronics = Elec Soc S Proceedings of The Symposium On Environmental Aspects of Electrochemical Technology: Applications in Electronics = Elec. Soc. S. Proceedings of The Symposium On Exploiting The Iso Data Archive: Infrared Astronomy in The Internet Age = Esa Spec Publ Proceedings of The Symposium On Exploiting The Iso Data Archive: Infrared Astronomy in The Internet Age = Esa. Spec. Publ. Proceedings of The Symposium On Exploiting The Iso Data Archive: Infrared Astronomy in The Internet Age = Esa Sp Publ Proceedings of The Symposium On Exploiting The Iso Data Archive: Infrared Astronomy in The Internet Age = Esa. Sp. Publ. Proceedings of The Symposium On Fundamental Aspects of Electrochemical Deposition and Dissolution Including Modeling = Elec Soc S Proceedings of The Symposium On Fundamental Aspects of Electrochemical Deposition and Dissolution Including Modeling = Elec. Soc. S. Proceedings of The Symposium On Fundamentals and Potential Applications of Electrochemical Synthesis = Elec Soc S Proceedings of The Symposium On Fundamentals and Potential Applications of Electrochemical Synthesis = Elec. Soc. S. Proceedings of The Symposium On Giant Sequoias: Their Place in The Ecosystem and Society = Usda Pac Sw Proceedings of The Symposium On Giant Sequoias: Their Place in The Ecosystem and Society = Usda. Pac. Sw. Proceedings of The Symposium On Light Emitting Devices for Optoelectronic Applications and The Twenty-eighth State-of-the-art Program On Compound Semiconductors = Elec Soc S Proceedings of The Symposium On Light Emitting Devices for Optoelectronic Applications and The Twenty-eighth State-of-the-art Program On Compound Semiconductors = Elec. Soc. S. Proceedings of The Symposium On Lithium Polymer Batteries = Elec Soc S Proceedings of The Symposium On Lithium Polymer Batteries = Elec. Soc. S. Proceedings of The Symposium On Management of Western Bark Beetles With Pheromones: Research and Development = Usda Pac Sw Proceedings of The Symposium On Management of Western Bark Beetles With Pheromones: Research and Development = Usda. Pac. Sw. Proceedings of The Symposium On Molecular Functions of Electroactive Thin Films = Elec Soc S Proceedings of The Symposium On Molecular Functions of Electroactive Thin Films = Elec. Soc. S. Proceedings of The Symposium On New Directions in Electroanalytical Chemistry Ii = Elec Soc S Proceedings of The Symposium On New Directions in Electroanalytical Chemistry Ii = Elec. Soc. S. Proceedings of The Symposium On Nonpoint Pollution : 1988 - Policy, Economy, Management, and Appropriate Technology = Am Wat Res Proceedings of The Symposium On Nonpoint Pollution : 1988 - Policy, Economy, Management, and Appropriate Technology = Am. Wat. Res. Proceedings of The Symposium On Oak Woodlands and Hardwood Rangeland Management = Us For Serv T R Psw Proceedings of The Symposium On Oak Woodlands and Hardwood Rangeland Management = Us. For. Serv. T. R. Psw. Proceedings of The Symposium On Passivity and Its Breakdown = Elec Soc S Proceedings of The Symposium On Passivity and Its Breakdown = Elec. Soc. S. Proceedings of The Symposium On Photoelectrochemistry = Elec Soc S Proceedings of The Symposium On Photoelectrochemistry = Elec. Soc. S. Proceedings of The Symposium On Post-harvest Fish Technology = Cifa Tech Proceedings of The Symposium On Post-harvest Fish Technology = Cifa. Tech. Proceedings of The Symposium On Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 3 = Elec Soc S Proceedings of The Symposium On Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 3 = Elec. Soc. S. Proceedings of The Symposium On Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 4 = Elec Soc S Proceedings of The Symposium On Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 4 = Elec. Soc. S. Proceedings of The Symposium On Reliable Distributed Systems = Sym Rel Dist Syst Proceedings of The Symposium On Reliable Distributed Systems = Sym. Rel. Dist. Syst. Proceedings of The Symposium On Research and Management of Annosus Root Disease ( Heterobasidion Annosum ) in Western North America = Us For Serv T R Psw Proceedings of The Symposium On Research and Management of Annosus Root Disease ( Heterobasidion Annosum ) in Western North America = Us. For. Serv. T. R. Psw. Proceedings of The Symposium On Silicon Nitride and Silicon Dioxide Thin Insulating Films = Elec Soc S Proceedings of The Symposium On Silicon Nitride and Silicon Dioxide Thin Insulating Films = Elec. Soc. S. Proceedings of The Symposium On Some Problems On The Theory of Dynamical Systems in Applied Sciences = Adv S Dy Sy Proceedings of The Symposium On Some Problems On The Theory of Dynamical Systems in Applied Sciences = Adv. S. Dy. Sy. Proceedings of The Symposium On Surface Oxide Films = Elec Soc S Proceedings of The Symposium On Surface Oxide Films = Elec. Soc. S. Proceedings of The Symposium On The Electrochemical Double Layer = Elec Soc S Proceedings of The Symposium On The Electrochemical Double Layer = Elec. Soc. S. Proceedings of The Symposium On The Management of Longleaf Pine = Usda So For Proceedings of The Symposium On The Management of Longleaf Pine = Usda. So. For. Proceedings of The Symposium On The Structural Chemistry of Silicates = T Am Cryst Proceedings of The Symposium On The Structural Chemistry of Silicates = T. Am. Cryst. Proceedings of The Symposium On Time-of-flight Diffraction At Pulsed Neutron Sources = T Am Cryst Proceedings of The Symposium On Time-of-flight Diffraction At Pulsed Neutron Sources = T. Am. Cryst. Proceedings of The Symposium On Wetlands : Concerns and Successes = Am Wat Res Proceedings of The Symposium On Wetlands : Concerns and Successes = Am. Wat. Res. Proceedings of The Symposium The Three-dimensional Universe With Gaia = Esa Spec Publ Proceedings of The Symposium The Three-dimensional Universe With Gaia = Esa. Spec. Publ. Proceedings of The Symposium The Three-dimensional Universe With Gaia = Esa Sp Publ Proceedings of The Symposium The Three-dimensional Universe With Gaia = Esa. Sp. Publ. Proceedings of The Tenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Tenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Tenth International Asparagus Symposium = Acta Hortic Proceedings of The Tenth International Asparagus Symposium = Acta. Hortic. Proceedings of The Tenth International Meeting On Hole Burning, Single Molecule and Related Spectroscopies = Physcs Proc Proceedings of The Tenth International Meeting On Hole Burning, Single Molecule and Related Spectroscopies = Physcs. Proc. Proceedings of The Tenth International Symposium On Small Fruit Virus Diseases = Acta Hortic Proceedings of The Tenth International Symposium On Small Fruit Virus Diseases = Acta. Hortic. Proceedings of The Tenth International Symposium On Virus Diseases of Ornamental Plants = Acta Hortic Proceedings of The Tenth International Symposium On Virus Diseases of Ornamental Plants = Acta. Hortic. Proceedings of The Tenth Journees De Linguistique (1996) = Ciral Publ Proceedings of The Tenth Journees De Linguistique (1996) = Ciral. Publ. Proceedings of The Tenth Thematic Conference On Geologic Remote Sensing - Exploration, Environment, and Engineering, Vol Ii = Pr Themat Conf Geol Proceedings of The Tenth Thematic Conference On Geologic Remote Sensing - Exploration, Environment, and Engineering, Vol Ii = Pr. Themat. Conf. Geol. Proceedings of The Tenth Thematic Conference On Geologic Remote Sensing - Exploration, Environment, and Engineering, Vol I = Pr Themat Conf Geol Proceedings of The Tenth Thematic Conference On Geologic Remote Sensing - Exploration, Environment, and Engineering, Vol I = Pr. Themat. Conf. Geol. Proceedings of The Tenth West Coast Conference On Formal Linguistics, Vol 10 = P W Coast C Proceedings of The Tenth West Coast Conference On Formal Linguistics, Vol 10 = P. W. Coast C. Proceedings of The Tenth Workshop On Algorithm Engineering and Experiments and The Fifth Workshop On Analytic Algorithmics and Combinatorics = Siam Proc S Proceedings of The Tenth Workshop On Algorithm Engineering and Experiments and The Fifth Workshop On Analytic Algorithmics and Combinatorics = Siam. Proc. S. Proceedings of The Tev Particle Astrophysics Ii Workshop = J Phys Conf Ser Proceedings of The Tev Particle Astrophysics Ii Workshop = J. Phys. Conf. Ser. Proceedings of The The First International Symposium On Impact and Friction of Solids, Structures and Intelligent Machines = Ser Sta Vib Co Sy :b Proceedings of The The First International Symposium On Impact and Friction of Solids, Structures and Intelligent Machines = Ser. Sta. Vib. Co. Sy. :b. Proceedings of The Thematic Conference On Geologic Remote Sensing = Pr Themat Conf Geol Proceedings of The Thematic Conference On Geologic Remote Sensing = Pr. Themat. Conf. Geol. Proceedings of The Third Annual Forest Inventory and Analysis Symposium = Us For Serv T R Nc Proceedings of The Third Annual Forest Inventory and Analysis Symposium = Us. For. Serv. T. R. Nc. Proceedings of The Third Conference On Hydrogeology, Ecology, Monitoring, and Management of Ground Water in Karst Terranes = Gr Wat Man Proceedings of The Third Conference On Hydrogeology, Ecology, Monitoring, and Management of Ground Water in Karst Terranes = Gr. Wat. Man. Proceedings of The Third Contractors Meeting = Ener Biomas Proceedings of The Third Contractors Meeting = Ener. Biomas. Proceedings of The Third European Conference On Mathematics in Industry = Eur Con Mat Proceedings of The Third European Conference On Mathematics in Industry = Eur. Con. Mat. Proceedings of The Third European Conference On Space Debris, Vols 1 and 2 = Esa Spec Publ Proceedings of The Third European Conference On Space Debris, Vols 1 and 2 = Esa. Spec. Publ. Proceedings of The Third European Conference On Space Debris, Vols 1 and 2 = Esa Sp Publ Proceedings of The Third European Conference On Space Debris, Vols 1 and 2 = Esa. Sp. Publ. Proceedings of The Third European Symposium On Aerothermodynamics for Space Vehicles = Esa Spec Publ Proceedings of The Third European Symposium On Aerothermodynamics for Space Vehicles = Esa. Spec. Publ. Proceedings of The Third European Symposium On Aerothermodynamics for Space Vehicles = Esa Sp Publ Proceedings of The Third European Symposium On Aerothermodynamics for Space Vehicles = Esa. Sp. Publ. Proceedings of The Third International Chestnut Congress = Acta Hortic Proceedings of The Third International Chestnut Congress = Acta. Hortic. Proceedings of The Third International Conference On Excitonic Processes in Condensed Matter - Excon '98 = Elec Soc S Proceedings of The Third International Conference On Excitonic Processes in Condensed Matter - Excon '98 = Elec. Soc. S. Proceedings of The Third International Conference On Information and Management Sciences = Ser Inf Manage Sci Proceedings of The Third International Conference On Information and Management Sciences = Ser. Inf. Manage. Sci. Proceedings of The Third International Grapevine Phylloxera Symposium = Acta Hortic Proceedings of The Third International Grapevine Phylloxera Symposium = Acta. Hortic. Proceedings of The Third International Lake Ladoga Symposium 1999 = Publ Kare Inst Proceedings of The Third International Lake Ladoga Symposium 1999 = Publ. Kare. Inst. Proceedings of The Third International Pineapple Symposium = Acta Hortic Proceedings of The Third International Pineapple Symposium = Acta. Hortic. Proceedings of The Third International Symposium On Brassicas and Twelfth Crucifer Genetics Workshop = Acta Hortic Proceedings of The Third International Symposium On Brassicas and Twelfth Crucifer Genetics Workshop = Acta. Hortic. Proceedings of The Third International Symposium On Ceramic Sensors = Elec Soc S Proceedings of The Third International Symposium On Ceramic Sensors = Elec. Soc. S. Proceedings of The Third International Symposium On Defects in Silicon = Elec Soc S Proceedings of The Third International Symposium On Defects in Silicon = Elec. Soc. S. Proceedings of The Third International Symposium On Fig = Acta Hortic Proceedings of The Third International Symposium On Fig = Acta. Hortic. Proceedings of The Third International Symposium On Irrigation of Horticultural Crops, Vols 1 and 2 = Acta Hortic Proceedings of The Third International Symposium On Irrigation of Horticultural Crops, Vols 1 and 2 = Acta. Hortic. Proceedings of The Third International Symposium On Microstructures and Microfabricated Systems = Elec Soc S Proceedings of The Third International Symposium On Microstructures and Microfabricated Systems = Elec. Soc. S. Proceedings of The Third International Symposium On Persimmon = Acta Hortic Proceedings of The Third International Symposium On Persimmon = Acta. Hortic. Proceedings of The Third International Symposium On Retrieval of Bio- and Geophysical Parameters From Sar Data for Land Applications = Esa Spec Publ Proceedings of The Third International Symposium On Retrieval of Bio- and Geophysical Parameters From Sar Data for Land Applications = Esa. Spec. Publ. Proceedings of The Third International Symposium On Retrieval of Bio- and Geophysical Parameters From Sar Data for Land Applications = Esa Sp Publ Proceedings of The Third International Symposium On Retrieval of Bio- and Geophysical Parameters From Sar Data for Land Applications = Esa. Sp. Publ. Proceedings of The Third International Symposium On Rose Research and Cultivation = Acta Hortic Proceedings of The Third International Symposium On Rose Research and Cultivation = Acta. Hortic. Proceedings of The Third Siam International Conference On Data Mining = Siam Proc S Proceedings of The Third Siam International Conference On Data Mining = Siam Proc. S. Proceedings of The Third Symposium On Electrochemically Deposited Thin Films = Elec Soc S Proceedings of The Third Symposium On Electrochemically Deposited Thin Films = Elec. Soc. S. Proceedings of The Third Symposium On Electrochromic Materials = Elec Soc S Proceedings of The Third Symposium On Electrochromic Materials = Elec. Soc. S. Proceedings of The Third Symposium On Thin Film Transistor Technologies = Elec Soc S Proceedings of The Third Symposium On Thin Film Transistor Technologies = Elec. Soc. S. Proceedings of The Third Turkish National Congress of Biological Control = Entomol D Y Proceedings of The Third Turkish National Congress of Biological Control = Entomol. D. Y. Proceedings of The Third World Fisheries Congress = Am Fish S S Proceedings of The Third World Fisheries Congress = Am. Fish. S. S. Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Thirteenth (2003) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Thirteenth Annual Acm-siam Symposium On Discrete Algorithms = Siam Proc S Proceedings of The Thirteenth Annual Acm-siam Symposium On Discrete Algorithms = Siam. Proc. S. Proceedings of The Thirteenth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Thirteenth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Thirteenth International Conference On Chemical Vapor Deposition = Elec Soc S Proceedings of The Thirteenth International Conference On Chemical Vapor Deposition = Elec. Soc. S. Proceedings of The Thirtieth Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Thirtieth Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Thirty-eighth Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The Thirty-eighth Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The Thirty-eighth Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Thirty-eighth Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Thirty-fifth Annual Conference of Canadian Technical Asphalt Association = Can Tec Asp Proceedings of The Thirty-fifth Annual Conference of Canadian Technical Asphalt Association = Can. Tec. Asp. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Iii = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Iii = P. Ann. Hicss. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol I = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol I = P. Ann. Hicss. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Iv = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Iv = P. Ann. Hicss. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Vii = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Vii = P. Ann. Hicss. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Vi = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol Vi = P. Ann. Hicss. Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol V = P Ann Hicss Proceedings of The Thirty-first Hawaii International Conference On System Sciences, Vol V = P. Ann. Hicss. Proceedings of The Thirty-first Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Thirty-first Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Thirty-fourth Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The Thirty-fourth Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The Thirty-fourth Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Thirty-fourth Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Thirty-ninth Annual Conference of Canadian Technical Asphalt Association = Can Tec Asp Proceedings of The Thirty-ninth Annual Conference of Canadian Technical Asphalt Association = Can. Tec. Asp. Proceedings of The Thirty-ninth Annual Meeting of The Canadian Pest Management Society = Can Pest M Proceedings of The Thirty-ninth Annual Meeting of The Canadian Pest Management Society = Can. Pest M. Proceedings of The Thirty-ninth Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The Thirty-ninth Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The Thirty-ninth Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Thirty-ninth Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Thirty-second Sigcse Technical Symposium On Computer Science Education = Sigcse Bull Proceedings of The Thirty-second Sigcse Technical Symposium On Computer Science Education = Sigcse Bull. Proceedings of The Thirty-seventh Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The Thirty-seventh Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The Thirty-seventh Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Thirty-seventh Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Thirty-sixth Southeastern Symposium On System Theory = Se Sym Sys Thry Proceedings of The Thirty-sixth Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Proceedings of The Thirty-sixth Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Thirty-sixth Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Tihany Symposium On Radiation Chemistry = P Tihany Sy Proceedings of The Tihany Symposium On Radiation Chemistry = P. Tihany Sy. Proceedings of The Transgenic Animal Research Workshop = Stud Tech S Proceedings of The Transgenic Animal Research Workshop = Stud. Tech. S. Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 1 = Int Offshore Polar E Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 1 = Int. Offshore Polar E. Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 2 = Int Offshore Polar E Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 2 = Int. Offshore Polar E. Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 3 = Int Offshore Polar E Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 3 = Int. Offshore Polar E. Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 4 = Int Offshore Polar E Proceedings of The Twelfth (2002) International Offshore and Polar Engineering Conference, Vol 4 = Int. Offshore Polar E. Proceedings of The Twelfth Annual Acm-siam Symposium On Discrete Algorithms = Siam Proc S Proceedings of The Twelfth Annual Acm-siam Symposium On Discrete Algorithms = Siam. Proc. S. Proceedings of The Twelfth Annual International Acm Sigir Conference On Research and Development in Information Retrieval = Sigir Forum Proceedings of The Twelfth Annual International Acm Sigir Conference On Research and Development in Information Retrieval = Sigir Forum. Proceedings of The Twelfth Annual Ucla Indo-european Conference = J Indo Eur Stud Mono Proceedings of The Twelfth Annual Ucla Indo-european Conference = J. Indo. Eur. Stud. Mono. Proceedings of The Twelfth Biennial University/government/industry Microelectronics Symposium = P Univ Govt Ind Micr Proceedings of The Twelfth Biennial University/government/industry Microelectronics Symposium = P. Univ. Govt. Ind. Micr. Proceedings of The Twelfth British Conference On Judeo-spanish Studies, 24-26 June, 2001 = Ijs Stud Jud Proceedings of The Twelfth British Conference On Judeo-spanish Studies, 24-26 June, 2001 = Ijs. Stud. Jud. Proceedings of The Twelfth International Conference On Data Engineering = Proc Int Conf Data Proceedings of The Twelfth International Conference On Data Engineering = Proc. Int. Conf. Data Proceedings of The Twelfth International Congress of The International Organization for Masoretic Studies = Sbl Masoret Stud Proceedings of The Twelfth International Congress of The International Organization for Masoretic Studies = Sbl. Masoret. Stud. Proceedings of The Twentieth International Eucarpia Symposium - Section Ornamentals = Acta Hortic Proceedings of The Twentieth International Eucarpia Symposium - Section Ornamentals = Acta. Hortic. Proceedings of The Twentieth International Eucarpia Symposium, Section Ornamentals: Strategies for New Ornamentals = Acta Hortic Proceedings of The Twentieth International Eucarpia Symposium, Section Ornamentals: Strategies for New Ornamentals = Acta. Hortic. Proceedings of The Twentieth International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops - Fruit Tree Diseases = Acta Hortic Proceedings of The Twentieth International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops - Fruit Tree Diseases = Acta. Hortic. Proceedings of The Twentieth Lunar and Planetary Science Conference = P Lunar Planet Sci Proceedings of The Twentieth Lunar and Planetary Science Conference = P. Lunar Planet. Sci. Proceedings of The Twenty-fifth Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Twenty-fifth Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Twenty-first Annual Acm-siam Symposium On Discrete Algorithms = Proc Appl Math Proceedings of The Twenty-first Annual Acm-siam Symposium On Discrete Algorithms = Proc. Appl. Math. Proceedings of The Twenty-fourth Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Twenty-fourth Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Twenty-fourth State-of-the-art-program On Compound Semiconductors = Elec Soc S Proceedings of The Twenty-fourth State-of-the-art-program On Compound Semiconductors = Elec. Soc. S. Proceedings of The Twenty-ninth Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Twenty-ninth Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Twenty-ninth Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings of The Twenty-ninth Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings of The Twenty-seventh Annual Conference of The Agronomy Society of New Zealand = P Ag Soc Nz Proceedings of The Twenty-seventh Annual Conference of The Agronomy Society of New Zealand = P. Ag. Soc. Nz. Proceedings of The Twenty-seventh State-of-the-art Program On Compound Semiconductors (sotapocs Xxvii) = Elec Soc S Proceedings of The Twenty-seventh State-of-the-art Program On Compound Semiconductors (sotapocs Xxvii) = Elec. Soc. S. Proceedings of The Twenty-sixth International Symposium On Fault-tolerant Computing = Dig Pap Int Symp Fau Proceedings of The Twenty-sixth International Symposium On Fault-tolerant Computing = Dig. Pap. Int. Symp. Fau. Proceedings of The Twenty-sixth Meeting of The Geoscience Information Society = P Geos Inf Proceedings of The Twenty-sixth Meeting of The Geoscience Information Society = P. Geos. Inf. Proceedings of The Twenty-sixth State-of-the-art Program On Compound Semiconductors (sotapocs Xxvi) = Elec Soc S Proceedings of The Twenty-sixth State-of-the-art Program On Compound Semiconductors (sotapocs Xxvi) = Elec. Soc. S. Proceedings of the University of Otago Medical School = Proc Univ Otago Med Sch Proceedings of The University of Otago Medical School = P U Otago Med Sch Proceedings of The University of Otago Medical School = P. U. Otago Med. Sch. Proceedings of The Ussher Society = Proc Ussher Proceedings of The Ussher Society = Proc. Ussher Proceedings of The Ussher Society, Vol 7, Pt 1 = Proc Ussher Proceedings of The Ussher Society, Vol 7, Pt 1 = Proc. Ussher Proceedings of The Ussher Society, Vol 7, Pt 3, 1990 = Proc Ussher Proceedings of The Ussher Society, Vol 7, Pt 3, 1990 = Proc. Ussher Proceedings of The Ussher Society, Vol 7, Pt 4, 1991 = Proc Ussher Proceedings of The Ussher Society, Vol 7, Pt 4, 1991 = Proc. Ussher Proceedings of The Ussher Society, Vol 8, Pt 1, 1992 = Proc Ussher Proceedings of The Ussher Society, Vol 8, Pt 1, 1992 = Proc. Ussher Proceedings of The Ussher Society, Vol 8, Pt 4 1995 = Proc Ussher Proceedings of The Ussher Society, Vol 8, Pt 4 1995 = Proc. Ussher Proceedings of The Ussher Society, Vol 9, Pt 2 - 1997 = Proc Ussher Proceedings of The Ussher Society, Vol 9, Pt 2 - 1997 = Proc. Ussher Proceedings of The Ussher Society, Vol 9, Pt 3, 1998 = Proc Ussher Proceedings of The Ussher Society, Vol 9, Pt 3, 1998 = Proc. Ussher Proceedings of the Veterans Administration Spinal Cord Injury Conference = Proc. Veterans Adm. Spinal Cord Inj. Conf. Proceedings of The Vii Italian-swiss Workshop Advances in Computational Materials Science Ii = Soc Ital Fi Proceedings of The Vii Italian-swiss Workshop Advances in Computational Materials Science Ii = Soc. Ital. Fi. Proceedings of The Viiith International Symposium On Postharvest Physiology of Ornamental Plants = Acta Hortic Proceedings of The Viiith International Symposium On Postharvest Physiology of Ornamental Plants = Acta. Hortic. Proceedings of The Viiith International Symposium On Protected Cultivation in Mild Winter Climates: Advances in Soil and Soilless Cultivation Under Protected Environment = Acta Hortic Proceedings of The Viiith International Symposium On Protected Cultivation in Mild Winter Climates: Advances in Soil and Soilless Cultivation Under Protected Environment = Acta. Hortic. Proceedings of The Vii Nordic Conference On The Application of Scientific Methods in Archaeology = Iskos Proceedings of The Vii Nordic Conference On The Application of Scientific Methods in Archaeology = Iskos. Proceedings of The Vi International Symposium On Artichoke, Cardoon and Their Wild Relatives = Acta Hortic Proceedings of The Vi International Symposium On Artichoke, Cardoon and Their Wild Relatives = Acta. Hortic. Proceedings of The Viith European Symposium On Materials and Fluid Sciences in Microgravity = Esa Sp Publ Proceedings of The Viith European Symposium On Materials and Fluid Sciences in Microgravity = Esa. Sp. Publ. Proceedings of The Viith International Protea Research Symposium = Acta Hortic Proceedings of The Viith International Protea Research Symposium = Acta. Hortic. Proceedings of The Viith International Symposium On Modelling in Fruit Research and Orchard Management = Acta Hortic Proceedings of The Viith International Symposium On Modelling in Fruit Research and Orchard Management = Acta. Hortic. Proceedings of The Viith International Symposium On Protected Cultivation in Mild Winter Climates: Production, Pest Management and Global Competition, Vols 1 and 2 = Acta Hortic Proceedings of The Viith International Symposium On Protected Cultivation in Mild Winter Climates: Production, Pest Management and Global Competition, Vols 1 and 2 = Acta. Hortic. Proceedings of The Viith International Symposium On Temperate Zone Fruits in The Tropics and Subtropics = Acta Hortic Proceedings of The Viith International Symposium On Temperate Zone Fruits in The Tropics and Subtropics = Acta. Hortic. Proceedings of The Viith International Symposium On Temperate Zone Fruits in The Tropics and Subtropics, Pt 2 = Acta Hortic Proceedings of The Viith International Symposium On Temperate Zone Fruits in The Tropics and Subtropics, Pt 2 = Acta. Hortic. Proceedings of the Virchow-Pirquet Medical Society = Proc Virchow Pirquet Med Soc Proceedings of the Virchow-Pirquet Medical Society = Proc. Virchow. Pirquet Med. Soc. Proceedings of the Virgil Society = PVS Proceedings of The Virtual Worlds and Simulation Conference (vwsim'98) = Simul Series Proceedings of The Virtual Worlds and Simulation Conference (vwsim'98) = Simul. Series. Proceedings of The Vith International Congress On Hazelnut = Acta Hortic Proceedings of The Vith International Congress On Hazelnut = Acta. Hortic. Proceedings of The Vith International Peach Symposium = Acta Hortic Proceedings of The Vith International Peach Symposium = Acta. Hortic. Proceedings of The Vith International Solanaceae Conference, Solanaceae Vi: Genomics Meets Biodiversity = Acta Hortic Proceedings of The Vith International Solanaceae Conference, Solanaceae Vi: Genomics Meets Biodiversity = Acta. Hortic. Proceedings of The Vith International Symposium On Chemical and Non-chemical Soil and Substrate Disinfestation = Acta Hortic Proceedings of The Vith International Symposium On Chemical and Non-chemical Soil and Substrate Disinfestation = Acta. Hortic. Proceedings of The Vith World Congress On Pain = Pain Res Cl Proceedings of The Vith World Congress On Pain = Pain Res. Cl. Proceedings of The Vth International Cherry Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The Vth International Cherry Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The Vth International Congress On Artichoke = Acta Hortic Proceedings of The Vth International Congress On Artichoke = Acta. Hortic. Proceedings of The Vth International Congress On Cactus Pear and Cochineal = Acta Hortic Proceedings of The Vth International Congress On Cactus Pear and Cochineal = Acta. Hortic. Proceedings of The Vth International Pineapple Symposium = Acta Hortic Proceedings of The Vth International Pineapple Symposium = Acta. Hortic. Proceedings of The Vth International Strawberry Symposium = Acta Hortic Proceedings of The Vth International Strawberry Symposium = Acta. Hortic. Proceedings of The Vth International Symposium On Artificial Lighting in Horticulture = Acta Hortic Proceedings of The Vth International Symposium On Artificial Lighting in Horticulture = Acta. Hortic. Proceedings of The Vth International Symposium On in Vitro Culture and Horticulture Breeding, Vols 1 and 2 = Acta Hortic Proceedings of The Vth International Symposium On in Vitro Culture and Horticulture Breeding, Vols 1 and 2 = Acta. Hortic. Proceedings of The Vth International Symposium On Mineral Nutrition of Fruit Plants = Acta Hortic Proceedings of The Vth International Symposium On Mineral Nutrition of Fruit Plants = Acta. Hortic. Proceedings of The Vth International Symposium On New Floricultural Crops = Acta Hortic Proceedings of The Vth International Symposium On New Floricultural Crops = Acta. Hortic. Proceedings of the Weekly Seminar in Neurology = Proc Wkly Semin Neurol Proceedings of the Weekly Seminar in Neurology = Proc. Wkly. Semin. Neurol. Proceedings of the Wesley Historical Society. Wesley Historical Society = Proc Wesley Hist Soc Proceedings of The West Coast Conference On Formal Linguistics = P W Coast C Proceedings of The West Coast Conference On Formal Linguistics = P. W. Coast C. Proceedings of the Western Pharmacology Society = Proc West Pharmacol Soc Proceedings of the Western Pharmacology Society = Proc. West. Pharmacol. Soc. Proceedings of The Western Pharmacology Society=Proc West Pharmacol Soc;; Proceedings of The Western Pharmacology Society = P W Pharmacol Soc Proceedings of The Western Pharmacology Society = P. W. Pharmacol. Soc. Proceedings of The Western Pharmacology Society, Vol 37, 1994 = P W Pharmacol Soc Proceedings of The Western Pharmacology Society, Vol 37, 1994 = P. W. Pharmacol. Soc. Proceedings of The Western Pharmacology Society, Vol 48 = P W Pharmacol Soc Proceedings of The Western Pharmacology Society, Vol 48 = P. W. Pharmacol. Soc. Proceedings of The Western Snow Conference, 1995 = P West Snow Conf Proceedings of The Western Snow Conference, 1995 = P. West. Snow Conf. Proceedings of The Western Snow Conference, 69th Annual Meeting = P West Snow Conf Proceedings of The Western Snow Conference, 69th Annual Meeting = P. West. Snow Conf. Proceedings of The Western Snow Conference (series) = P West Snow Conf Proceedings of The Western Snow Conference (series) = P. West. Snow Conf. Proceedings of The Wethersfields Institute = P Wethers I Proceedings of The Wethersfields Institute = P. Wethers. I. Proceedings of The Workshop Ani 98 = Fzka Tech Umw Wis B Proceedings of The Workshop Ani 98 = Fzka. Tech. Umw. Wis. B. Proceedings of The Workshop Ani 99: Current Topics of Cosmic Ray Research With Eas Observations = Fzka Tech Umw Wis B Proceedings of The Workshop Ani 99: Current Topics of Cosmic Ray Research With Eas Observations = Fzka. Tech. Umw. Wis. B. Proceedings of The Workshop - Is It Possible to Improve The Reproductive Performance of The Camel ? = Et S Iemvt Proceedings of The Workshop - Is It Possible to Improve The Reproductive Performance of The Camel ? = Et. S. Iemvt. Proceedings of The Workshop "monte Carlo Methods and Models for Applications in Energy and Technology" = Fzka Tech Umw Wis B Proceedings of The Workshop "monte Carlo Methods and Models for Applications in Energy and Technology" = Fzka. Tech. Umw. Wis. B. Proceedings of The Workshop On Core Monitoring for Commercial Reactors: Improvements in Systems and Methods = Oecd Proc Proceedings of The Workshop On Core Monitoring for Commercial Reactors: Improvements in Systems and Methods = Oecd. Proc. Proceedings of The Workshop On Discretely-coupled Dynamical Systems = Wss Nonlin Sci Ser B Proceedings of The Workshop On Discretely-coupled Dynamical Systems = Wss. Nonlin. Sci. Ser. B. Proceedings of The Workshop On Information Technology for Virtual Enterprises, Itve 2001 = Aust Comp S Proceedings of The Workshop On Information Technology for Virtual Enterprises, Itve 2001 = Aust. Comp. S. Proceedings of The Workshop On Ion and Slow Positron Beam Utilisation = Oecd Proc Proceedings of The Workshop On Ion and Slow Positron Beam Utilisation = Oecd. Proc. Proceedings of The Workshop On Long-lived Radionuclide Chemistry in Nuclear Waste Treatment = Oecd Proc Proceedings of The Workshop On Long-lived Radionuclide Chemistry in Nuclear Waste Treatment = Oecd. Proc. Proceedings of The Workshop On P32 Oversampled Mapping - Isophot = Esa Spec Publ Proceedings of The Workshop On P32 Oversampled Mapping - Isophot = Esa. Spec. Publ. Proceedings of The Workshop On P32 Oversampled Mapping - Isophot = Esa Sp Publ Proceedings of The Workshop On P32 Oversampled Mapping - Isophot = Esa. Sp. Publ. Proceedings of The Workshop On Relativistic Heavy Ion Physics At Present and Future = Kfki Prep R Proceedings of The Workshop On Relativistic Heavy Ion Physics At Present and Future = Kfki. Prep. R. Proceedings of The Workshop On Research Methodologies and Applications for Pacific Island Agroforestry = Usda Pac Sw Proceedings of The Workshop On Research Methodologies and Applications for Pacific Island Agroforestry = Usda. Pac. Sw. Proceedings of The Workshop On Rootstocks' Performance in Phylloxera Infested Vineyards = Acta Hortic Proceedings of The Workshop On Rootstocks' Performance in Phylloxera Infested Vineyards = Acta. Hortic. Proceedings of The Workshop On The Physics and Fuel Performance of Reactor-based Plutonium Disposition = Oecd Proc Proceedings of The Workshop On The Physics and Fuel Performance of Reactor-based Plutonium Disposition = Oecd. Proc. Proceedings of The Workshop On Utilisation and Reliability of High Power Proton Accelerators = Oecd Proc Proceedings of The Workshop On Utilisation and Reliability of High Power Proton Accelerators = Oecd. Proc. Proceedings of the Workshop on Vitamin D = Proc. Workshop Vitam. D Proceedings of The Workshop Palaeoclimatic Reconstructions Form Marine Sediments of The Ross Sea (antarctica and Southern Ocean = Terra Antarct Rep Proceedings of The Workshop Palaeoclimatic Reconstructions Form Marine Sediments of The Ross Sea (antarctica and Southern Ocean = Terra. Antarct. Rep. Proceedings of The Workshop Palaeoclimatic Reconstructions Form Marine Sediments of The Ross Sea (antarctica and Southern Ocean = Terra Ant Reports Proceedings of The Workshop Palaeoclimatic Reconstructions Form Marine Sediments of The Ross Sea (antarctica and Southern Ocean = Terra. Ant. Reports. Proceedings of The World Bank Annual Conference On Development Economics, 1994 = Proc Wb Ann Conf Dev Proceedings of The World Bank Annual Conference On Development Economics, 1994 = Proc. Wb. Ann. Conf. Dev. Proceedings of The World Bank Annual Conference On Development Economics = Proc Wb Ann Conf Dev Proceedings of The World Bank Annual Conference On Development Economics = Proc. Wb. Ann. Conf. Dev. Proceedings of The World Congress On Soilless Culture: Agriculture in The Coming Millenium = Acta Hortic Proceedings of The World Congress On Soilless Culture: Agriculture in The Coming Millenium = Acta. Hortic. Proceedings of The Wseas International Conference On Circuits, Systems, Electronics, Control & Signal Processing = Ele Com Eng Proceedings of The Wseas International Conference On Circuits, Systems, Electronics, Control & Signal Processing = Ele. Com. Eng. Proceedings of The Wseas International Conference On Cultural Heritage and Tourism (cuht'08) = Ma Comput Sci Eng Proceedings of The Wseas International Conference On Cultural Heritage and Tourism (cuht'08) = Ma. Comput. Sci. Eng. Proceedings of The Wseas International Conference On Cultural Heritage and Tourism (cuht'08) = Math Comput Sci Eng Proceedings of The Wseas International Conference On Cultural Heritage and Tourism (cuht'08) = Math. Comput. Sci. Eng. Proceedings of The Wseas International Conference On Finite Differences, Finite Elements, Finite Volumes, Boundary Elements = Ma Comput Sci Eng Proceedings of The Wseas International Conference On Finite Differences, Finite Elements, Finite Volumes, Boundary Elements = Ma. Comput. Sci. Eng. Proceedings of The Xiii National Conference of Yugoslav Astronomers = Pub Astro Obs Belgr Proceedings of The Xiii National Conference of Yugoslav Astronomers = Pub. Astro. Obs. Belgr. Proceedings of The Xiiith International Symposium On Apricot Breeding and Culture = Acta Hortic Proceedings of The Xiiith International Symposium On Apricot Breeding and Culture = Acta. Hortic. Proceedings of The Xiith Ishs Symposium On Apricot Culture and Decline, Vols 1 and 2 = Acta Hortic Proceedings of The Xiith Ishs Symposium On Apricot Culture and Decline, Vols 1 and 2 = Acta. Hortic. Proceedings of The Xith Eucarpia Symposium On Fruit Breeding and Genetics, Vols 1 and 2 = Acta Hortic Proceedings of The Xith Eucarpia Symposium On Fruit Breeding and Genetics, Vols 1 and 2 = Acta. Hortic. Proceedings of The Xith International Asparagus Symposium = Acta Hortic Proceedings of The Xith International Asparagus Symposium = Acta. Hortic. Proceedings of The Xith International Symposium On Virus Diseases of Ornamental Plants = Acta Hortic Proceedings of The Xith International Symposium On Virus Diseases of Ornamental Plants = Acta. Hortic. Proceedings of The Xivth International Symposium On Horticultural Economics = Acta Hortic Proceedings of The Xivth International Symposium On Horticultural Economics = Acta. Hortic. Proceedings of The Xixth International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops: Fruit Tree Diseases = Acta Hortic Proceedings of The Xixth International Symposium On Virus and Virus-like Diseases of Temperate Fruit Crops: Fruit Tree Diseases = Acta. Hortic. Proceedings of The X-ray Universe 2005, Vols 1 and 2 = Esa Spec Publ Proceedings of The X-ray Universe 2005, Vols 1 and 2 = Esa. Spec. Publ. Proceedings of The X-ray Universe 2005, Vols 1 and 2 = Esa Sp Publ Proceedings of The X-ray Universe 2005, Vols 1 and 2 = Esa. Sp. Publ. Proceedings of The Xth International Pear Symposium, Vols 1 and 2 = Acta Hortic Proceedings of The Xth International Pear Symposium, Vols 1 and 2 = Acta. Hortic. Proceedings of The Xth International Symposium On Plant Bioregulators in Fruit Production = Acta Hortic Proceedings of The Xth International Symposium On Plant Bioregulators in Fruit Production = Acta. Hortic. Proceedings of The Xth International Symposium On The Processing Tomato = Acta Hortic Proceedings of The Xth International Symposium On The Processing Tomato = Acta. Hortic. Proceedings of The Xth International Workshop On Fire Blight = Acta Hortic Proceedings of The Xth International Workshop On Fire Blight = Acta. Hortic. Proceedings of The Xvii International Conference On Electromagnetic Disturbances, Emd 2007 = Int Conf Electromag Proceedings of The Xvii International Conference On Electromagnetic Disturbances, Emd 2007 = Int. Conf. Electromag. Proceedings of The Xv National Conference of Astronomers of Serbia = Pub Astro Obs Belgr Proceedings of The Xv National Conference of Astronomers of Serbia = Pub. Astro. Obs. Belgr. Proceedings of The Xvth International Symposium On Horticultural Economics and Management = Acta Hortic Proceedings of The Xvth International Symposium On Horticultural Economics and Management = Acta. Hortic. Proceedings of The Xx Brazilian Symposium On Computer Graphics and Image Processing = Sibgrapi Proceedings of The Xx Brazilian Symposium On Computer Graphics and Image Processing = Sibgrapi. Proceedings of The Xxiith International Conference On Differential Geometric Methods in Theoretical Physics = Adv Appl Cliff Algeb Proceedings of The Xxiith International Conference On Differential Geometric Methods in Theoretical Physics = Adv. Appl. Cliff. Algeb. Proceedings of The Xxiv International Congress of Psychology, Vol 6 = Iupsys Sr P Proceedings of The Xxiv International Congress of Psychology, Vol 6 = Iupsys. Sr. P. Proceedings of The Xxiv International Congress of Psychology, Vol 9 = Iupsys Sr P Proceedings of The Xxiv International Congress of Psychology, Vol 9 = Iupsys. Sr. P. Proceedings of The Xxv International Horticultural Congress, Pt 10 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 10 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 11 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 11 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 12 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 12 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 14 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 14 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 1 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 1 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 2 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 2 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 4 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 4 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 7 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 7 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 8 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 8 = Acta. Hortic. Proceedings of The Xxv International Horticultural Congress, Pt 9 = Acta Hortic Proceedings of The Xxv International Horticultural Congress, Pt 9 = Acta. Hortic. Proceedings of The Xxvith International Conference On High Energy Physics, Vols 1 and 2 = Aip Conf Proc Proceedings of The Xxvith International Conference On High Energy Physics, Vols 1 and 2 = Aip. Conf. Proc. Proceedings of The Xxvth International Horticultural Congress, Pt 3 = Acta Hortic Proceedings of The Xxvth International Horticultural Congress, Pt 3 = Acta. Hortic. Proceedings of The Yorkshire Geological Society = P Yorks Geol Soc Proceedings of The Yorkshire Geological Society = P. Yorks. Geol. Soc. Proceedings of the Zoological Society of London = Proc. Zool. Soc. Lond. Proceedings of The Zoological Society of London = P Zool Soc Lond Proceedings of The Zoological Society of London = P. Zool. Soc. Lond. Proceedings of The Zoological Society of London Series A-general and Experimental = P Zool Soc Lond A-ge Proceedings of The Zoological Society of London Series A-general and Experimental = P. Zool. Soc. Lond. A-ge. Proceedings of The Zoological Society of London Series B-systematic and Morphological = P Zool Soc Lond B-sy Proceedings of The Zoological Society of London Series B-systematic and Morphological = P. Zool. Soc. Lond. B-sy. Proceedings of the Zoological Society = Proc. Zool. Soc. Proceedings of Three-dimensional Bioimaging Systems and Lasers in The Neurosciences = P Soc Photo-opt Ins Proceedings of Three-dimensional Bioimaging Systems and Lasers in The Neurosciences = P. Soc. Photo-opt. Ins. Proceedings of Time-resolved Spectroscopy and Imaging of Tissues = P Soc Photo-opt Ins Proceedings of Time-resolved Spectroscopy and Imaging of Tissues = P. Soc. Photo-opt. Ins. Proceedings of Ultrasensitive Laboratory Diagnostics = P Soc Photo-opt Ins Proceedings of Ultrasensitive Laboratory Diagnostics = P. Soc. Photo-opt. Ins. Proceedings of Watershed 89 = Usda Alaska Proceedings of Watershed 89 = Usda. Alaska. Proceedings of Watershed 91 = Usda Alaska Proceedings of Watershed 91 = Usda. Alaska. Proceedings of World Academy of Science Engineering and Technology = Proc Wrld Acad Sci E Proceedings of World Academy of Science Engineering and Technology = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 10 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 10 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 11 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 11 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 12 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 12 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 13 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 13 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 14 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 14 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 15 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 15 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 16 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 16 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 17 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 17 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 18 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 18 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 19 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 19 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 1 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 1 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 20 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 20 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 21 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 21 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 22 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 22 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 23 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 23 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 24 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 24 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 25 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 25 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 26, Parts 1 and 2, December 2007 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 26, Parts 1 and 2, December 2007 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 27 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 27 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 28 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 28 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 29 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 29 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 2 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 2 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 3 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 3 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 4 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 4 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 5 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 5 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 7 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 7 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 8 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 8 = Proc. Wrld. Acad. Sci. E. Proceedings of World Academy of Science, Engineering and Technology, Vol 9 = Proc Wrld Acad Sci E Proceedings of World Academy of Science, Engineering and Technology, Vol 9 = Proc. Wrld. Acad. Sci. E. Proceedings: Pacific Northwest Forest and Rangeland Soil Organism Symposium = Us For Serv T R Pnw Proceedings: Pacific Northwest Forest and Rangeland Soil Organism Symposium = Us. For. Serv. T. R. Pnw. Proceedings = Proc. SPIE Proceedings, Royal Society of Edinburgh. Section B: Biology = Proc. R. Soc. Edinb. [Biol.] Proceedings - Royal Society of Edinburgh. Section B: Natural environment = Proc R Soc Edinb [Nat Environ] Proceedings, Royal Society of Edinburgh. Section B: Natural Environment = Proc. R. Soc. Edinb. [Nat. Environ.] Proceedings : Seas Anniversary Meeting 1989, Vols 1 and 2 = Seas Proc Proceedings : Seas Anniversary Meeting 1989, Vols 1 and 2 = Seas Proc. Proceedings : Share Europe Anniversary Meeting 1991, Vols 1 and 2 = Seas Proc Proceedings : Share Europe Anniversary Meeting 1991, Vols 1 and 2 = Seas. Proc. Proceedings - Share Europe Anniversary Meeting 1992 : Information Technology for Business Advantage = Share Eur P Proceedings - Share Europe Anniversary Meeting 1992 : Information Technology for Business Advantage = Share Eur. P. Proceedings: Share Europe Anniversary Meeting, 1993 = Share Eur P Proceedings: Share Europe Anniversary Meeting, 1993 = Share Eur. P. Proceedings : Share Europe Spring Meeting : Case and Applications Development in Practice = Share Eur P Proceedings : Share Europe Spring Meeting : Case and Applications Development in Practice = Share Eur. P. Proceedings : Share Europe Spring Meeting = Share Eur P Proceedings : Share Europe Spring Meeting = Share Eur. P. Proceedings: Shrubland Dynamics-fire and Water = Us For Serv Rmrs-p Proceedings: Shrubland Dynamics-fire and Water = Us. For. Serv. Rmrs-p. Proceedings: Shrubland Ecosystem Dynamics in A Changing Environment = Usda Interm Proceedings: Shrubland Ecosystem Dynamics in A Changing Environment = Usda. Interm. Proceedings : Shrubland Ecotones = Us For Serv Rmrs-p Proceedings : Shrubland Ecotones = Us. For. Serv. Rmrs-p. Proceedings. Society for the Study of Fertility = Proc Soc Study Fertil Proceedings - Society of Photo-Optical Instrumentation Engineers = Proc Soc Photo Opt Instrum Eng Proceedings - Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings - Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings / State Secretaries Management Conference, American Dental Association = Proc State Secr Manage Conf Am Dent Assoc Proceedings, State Secretaries Management Conference, American Dental Association = Proc. State Secr. Manage. Conf. Am. Dent. Assoc. Proceedings - Symposia and Exhibitions On The Art of Glassblowing = P Sym Exhib Proceedings - Symposia and Exhibitions On The Art of Glassblowing = P. Sym. Exhib. Proceedings - Symposium On Cheatgrass Invasion, Shrub Die-off, and Other Aspects of Shrub Biology and Management = Usda Interm Proceedings - Symposium On Cheatgrass Invasion, Shrub Die-off, and Other Aspects of Shrub Biology and Management = Usda. Interm. Proceedings/symposium On Computer Arithmetic = P S Comp Arithm Proceedings/symposium On Computer Arithmetic = P. S. Comp. Arithm. Proceedings - Symposium On Computer Arithmetic = P S Comp Arithm Proceedings - Symposium On Computer Arithmetic = P. S. Comp. Arithm. Proceedings Symposium On Computer Arithmetic = P S Comp Arithm Proceedings Symposium On Computer Arithmetic = P. S. Comp. Arithm. Proceedings - Symposium On Ecology and Management of Riparian Shrub Communities = Usda Interm Proceedings - Symposium On Ecology and Management of Riparian Shrub Communities = Usda. Interm. Proceedings: Symposium On Fire in Wilderness and Park Management = Usda Interm Proceedings: Symposium On Fire in Wilderness and Park Management = Usda. Interm. Proceedings/symposium On Logic in Computer Science = Ieee S Log Proceedings/symposium On Logic in Computer Science = Ieee. S. Log. Proceedings - Symposium On Whitebark Pine Ecosystems : Ecology and Management of A High-mountain Resource = Usda Interm Proceedings - Symposium On Whitebark Pine Ecosystems : Ecology and Management of A High-mountain Resource = Usda. Interm. Proceedings, the annual meeting of the Medical Section of the American Council of Life Insurance = Proc Annu Meet Med Sect Am Counc Life Insur Proceedings, the annual meeting of the Medical Section of the American Life Insurance Association = Proc Annu Meet Med Sect Am Life Insur Assoc Proceedings / the ... Annual Symposium on Computer Application [sic] in Medical Care. Symposium on Computer Applications in Medical Care = Proc Annu Symp Comput Appl Med Care Proceedings - The Thirty-fourth Symposium and Exhibition On The Art of Glassblowing = P Sym Exhib Proceedings - The Thirty-fourth Symposium and Exhibition On The Art of Glassblowing = P. Sym. Exhib. Proceedings - The Thirty-third Symposium and Exhibition On The Art of Glassblowing = P Sym Exhib Proceedings - The Thirty-third Symposium and Exhibition On The Art of Glassblowing = P. Sym. Exhib. Proceedings : The Twenty-first Southeastern Symposium On System Theory = Southeast Symp Syste Proceedings : The Twenty-first Southeastern Symposium On System Theory = Southeast. Symp. Syste. Proceedings - The Twenty-second International Symposium On Multiple-valued Logic = Int Sym Mvl Proceedings - The Twenty-second International Symposium On Multiple-valued Logic = Int. Sym. Mvl. Proceedings - Tron Project Symposium = P Tron Proj Symp Proceedings - Tron Project Symposium = P. Tron Proj. Symp. Proceedings - United States Naval Institute = Proc. U.S. Nav. Inst. Proceedings - United States Naval Institute. United States Naval Institute = Proc U S Nav Inst Proceedings - University/government/industry Microelectronics Symposium = P Univ Govt Ind Micr Proceedings - University/government/industry Microelectronics Symposium = P. Univ. Govt. Ind. Micr. Proceedings : Us Department of Agriculture, Interagency Gypsy Moth Research Review 1990 = Usda Ne Exp Proceedings : Us Department of Agriculture, Interagency Gypsy Moth Research Review 1990 = Usda. Ne. Exp. Proceedings - Using Seeds of Native Species On Rangelands = Usda Interm Proceedings - Using Seeds of Native Species On Rangelands = Usda. Interm. Proceedings - Vertebrate Pest Conference = Proc Vertebr Pest C Proceedings - Vertebrate Pest Conference = Proc. Vertebr. Pest C. Proceedings. Veterans Administration Spinal Cord Injury Conference = Proc Veterans Adm Spinal Cord Inj Conf Proceedings: View From The Ridge-considerations for Planning At The Landscape Scale = Us For Serv T R Pnw Proceedings: View From The Ridge-considerations for Planning At The Landscape Scale = Us. For. Serv. T. R. Pnw. Proceedings, Western Forest Nursery Association, September 14-18, 1992, Fallen Leaf Lake, Ca = Usda Rocky Proceedings, Western Forest Nursery Association, September 14-18, 1992, Fallen Leaf Lake, Ca = Usda. Rocky. Proceedings - Western Section, American Society of Animal Science and Western Branch, Canadian Society of Animal Science, Vol 40 = Asas Ws P Proceedings - Western Section, American Society of Animal Science and Western Branch, Canadian Society of Animal Science, Vol 40 = Asas. Ws. P. Proceedings: Wildland Shrub and Arid Land Restoration Symposium = Usda Interm Proceedings: Wildland Shrub and Arid Land Restoration Symposium = Usda. Interm. Proceedings: Workshop On Fire, People, and The Central Hardwood Landscape = Usda Ne Exp Proceedings: Workshop On Fire, People, and The Central Hardwood Landscape = Usda. Ne. Exp. Proceedings Xvth Cmmi Congress, Vol 1 = S African Inst Min M Proceedings Xvth Cmmi Congress, Vol 1 = S. African. Inst. Min. M. Proceedings Xvth Cmmi Congress, Vol 2 = S African Inst Min M Proceedings Xvth Cmmi Congress, Vol 2 = S. African. Inst. Min. M. Proceedings Xvth Cmmi Congress, Vol 3 = S African Inst Min M Proceedings Xvth Cmmi Congress, Vol 3 = S. African. Inst. Min. M. Proceeedings of The International Symposium On Youth and Work = People Work Res Rep Proceeedings of The International Symposium On Youth and Work = People. Work Res. Rep. Proceeedings of The Xviii International Linear Accelerator Conference, Vols 1 and 2 = Cern Report Proceeedings of The Xviii International Linear Accelerator Conference, Vols 1 and 2 = Cern. Report. Process Algebra for Parallel and Distributed Processing = Ch Crc Comp Sci Ser Process Algebra for Parallel and Distributed Processing = Ch. Crc. Comp. Sci. Ser. Process and Equipment Control in Microelectronic Manufacturing Ii = Proc Spie Process and Equipment Control in Microelectronic Manufacturing Ii = Proc. Spie. Process and Equipment Control in Microelectronic Manufacturing Ii = P Soc Photo-opt Ins Process and Equipment Control in Microelectronic Manufacturing Ii = P. Soc. Photo-opt. Ins. Process and Equipment Control in Microelectronic Manufacturing = P Soc Photo-opt Ins Process and Equipment Control in Microelectronic Manufacturing = P. Soc. Photo-opt. Ins. Process and Materials Characterization and Diagnostics in Ic Manufacturing = P Soc Photo-opt Ins Process and Materials Characterization and Diagnostics in Ic Manufacturing = P. Soc. Photo-opt. Ins. Process Biochemistry (Amsterdam, Netherlands) = Process Biochem. (Amsterdam, Neth.) Process biochemistry (Barking, London, England) = Process Biochem Process Biochemistry (Oxford, United Kingdom) = Process Biochem. (Oxford, U. K.) Process Biochemistry = Process Biochem Process Biochemistry = Process Biochem. Process Chemistry of Lubricant Base Stocks = Chem Ind-ser Process Chemistry of Lubricant Base Stocks = Chem. Ind-ser. Process Chemistry of Petroleum Macromolecules = Chem Ind-ser Process Chemistry of Petroleum Macromolecules = Chem. Ind-ser. Process Control and Automation = Process Control Aut Process Control and Automation = Process Control Aut. Process Control and Diagnostics = P Soc Photo-opt Ins Process Control and Diagnostics = P. Soc. Photo-opt. Ins. Process Control and Inspection for Industry = P Soc Photo-opt Ins Process Control and Inspection for Industry = P. Soc. Photo-opt. Ins. Process Control and Quality = Process Control Qual. Process Control and Quality = Process Contr Qual Process Control and Quality = Process Contr. Qual. Process Control and Sensors for Manufacturing Ii = P Soc Photo-opt Ins Process Control and Sensors for Manufacturing Ii = P. Soc. Photo-opt. Ins. Process Control and Sensors for Manufacturing = Spie Proc Ser Process Control and Sensors for Manufacturing = Spie. Proc. Ser. Process Control Performance Assessment = Adv Ind Control Process Control Performance Assessment = Adv. Ind. Control Process Control: The Passive Systems Approach = Adv Ind Control Process Control: The Passive Systems Approach = Adv. Ind. Control. Process Engineering in Plant-based Products = Environ Sci Eng Tech Process Engineering in Plant-based Products = Environ. Sci. Eng. Tech. Process Engineering = Process Eng Process Engineering = Process Eng. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Iii = P Soc Photo-opt Ins Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Iii = P. Soc. Photo-opt. Ins. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Ii = P Soc Photo-opt Ins Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Ii = P. Soc. Photo-opt. Ins. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Iv = P Soc Photo-opt Ins Process, Equipment, and Materials Control in Integrated Circuit Manufacturing Iv = P. Soc. Photo-opt. Ins. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing = P Soc Photo-opt Ins Process, Equipment, and Materials Control in Integrated Circuit Manufacturing = P. Soc. Photo-opt. Ins. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing V = Proc Spie Process, Equipment, and Materials Control in Integrated Circuit Manufacturing V = Proc. Spie. Process, Equipment, and Materials Control in Integrated Circuit Manufacturing V = P Soc Photo-opt Ins Process, Equipment, and Materials Control in Integrated Circuit Manufacturing V = P. Soc. Photo-opt. Ins. Processes and Foundations for Virtual Organizations = Int Fed Info Proc Processes and Foundations for Virtual Organizations = Int. Fed. Info. Proc. Processes of Change in Brain and Cognitive Development: Attention and Performance Xxi = Attention Perform Processes of Change in Brain and Cognitive Development: Attention and Performance Xxi = Attention Perform. Processes of Community Change and Social Action = Clar Symp Processes of Community Change and Social Action = Clar. Symp. Processes of Transposition: German Literature and Film = Amst Beitr Neuer Ger Processes of Transposition: German Literature and Film = Amst. Beitr. Neuer. Ger. Processes On The Early Earth = Geol S Am S Processes On The Early Earth = Geol. S. Am. S. Processes On The Early Earth = Geol Soc Am Spec Pap Processes On The Early Earth = Geol. Soc. Am. Spec. Pap. Processes, Terms and Cycles: Steps On The Road to Infinity = Lect Notes Comput Sc Processes, Terms and Cycles: Steps On The Road to Infinity = Lect. Notes. Comput. Sc. Processes With Long-range Correlations: Theory and Applications = Lect Notes Phys Processes With Long-range Correlations: Theory and Applications = Lect. Notes. Phys. Process Imaging for Automatic Control = P Soc Photo-opt Ins Process Imaging for Automatic Control = P. Soc. Photo-opt. Ins. Process-induced Chemical Changes in Food = Adv Exp Med Biol Process-induced Chemical Changes in Food = Adv. Exp. Med. Biol. Process Industries Division of The American Society of Mechanical Engineers = Proc Ind Div Asme Process Industries Division of The American Society of Mechanical Engineers = Proc. Ind. Div. Asme. Processing and Inhibition of Nociceptive Information = Int Congr Ser Processing and Inhibition of Nociceptive Information = Int. Congr. Ser. Processing and Packaging of Semiconductor Lasers and Optoelectronic Devices = P Soc Photo-opt Ins Processing and Packaging of Semiconductor Lasers and Optoelectronic Devices = P. Soc. Photo-opt. Ins. Processing and Properties of Advanced Ceramics and Composites = Ceram Trans Processing and Properties of Advanced Ceramics and Composites = Ceram. Trans. Processing and Properties of Advanced Ceramics and Composites Ii = Ceram Trans Processing and Properties of Advanced Ceramics and Composites Ii = Ceram. Trans. Processing and Properties of Compound Semiconductors = Semiconduct Semimet Processing and Properties of Compound Semiconductors = Semiconduct. Semimet. Processing and Utilization of High-sulfur Coals Iii = Coal Sci Technol Processing and Utilization of High-sulfur Coals Iii = Coal. Sci. Technol. Processing and Utilization of High-sulfur Coals V = Coal Sci Technol Processing and Utilization of High-sulfur Coals V = Coal. Sci. Technol. Processing and Utilization of High-sulphur Coals Iv = Coal Sci Technol Processing and Utilization of High-sulphur Coals Iv = Coal. Sci. Technol. Processing Declarative Knowledge = Lect Notes Artif Int Processing Declarative Knowledge = Lect. Notes. Artif. Int. Processing, Microstructure and Performance of Materials = Iop Conf Ser-mat Sci Processing, Microstructure and Performance of Materials = Iop. Conf. Ser-mat. Sci. Processing of Films for High Tc Superconducting Electronics = P Soc Photo-opt Ins Processing of Films for High Tc Superconducting Electronics = P. Soc. Photo-opt. Ins. Processing of High-temperature Superconductors = Ceram Trans Processing of High-temperature Superconductors = Ceram. Trans. Processing of Nanoparticle Materials and Nanostructured Films = Ceram Trans Processing of Nanoparticle Materials and Nanostructured Films = Ceram. Trans. Processing of Nanoparticle Structures and Composites = Ceram Trans Processing of Nanoparticle Structures and Composites = Ceram. Trans. Processing of Sensory Information in The Superficial Dorsal Horn of The Spinal Cord = Nato Adv Sci I A-lif Processing of Sensory Information in The Superficial Dorsal Horn of The Spinal Cord = Nato. Adv. Sci. I. A-lif. Processing = Processing Processing Science of Advanced Ceramics = Mater Res Soc Symp P Processing Science of Advanced Ceramics = Mater. Res. Soc. Symp. P. Process Intensification for The Chemical Industry = Bhr Gr Conf Ser Publ Process Intensification for The Chemical Industry = Bhr. Gr. Conf. Ser. Publ. Process Metallurgy = Process Met Process Metallurgy = Process Met. Process Module Metrology, Control and Clustering = P Soc Photo-opt Ins Process Module Metrology, Control and Clustering = P. Soc. Photo-opt. Ins. Process Monitoring With Optical Fibers and Harsh Environment Sensors = P Soc Photo-opt Ins Process Monitoring With Optical Fibers and Harsh Environment Sensors = P. Soc. Photo-opt. Ins. Process Neural Networks: Theory and Applications = Adv Top Sci Tech Chi Process Neural Networks: Theory and Applications = Adv. Top. Sci. Tech. Chi. Process of Change in Education: Moving From Descriptive to Prescriptive Research = Educ Compet Glob Wor Process of Change in Education: Moving From Descriptive to Prescriptive Research = Educ. Compet. Glob. Wor. Process Optimization: A Statistical Approach = Int Ser Oper Res Man Process Optimization: A Statistical Approach = Int. Ser. Oper. Res. Man. Process Planning and Scheduling for Distributed Manufacturing = Springer Ser Adv Man Process Planning and Scheduling for Distributed Manufacturing = Springer. Ser. Adv. Man. Process Safety and Environmental Protection = Process Saf Environ Process Safety and Environmental Protection = Process Saf. Environ. Process Safety and Environmental Protection = Process Saf. Environ. Prot. Process Safety and Environment Protection = Process Saf. Environ. Prot. Process Safety Progress = Process Saf Prog Process Safety Progress = Process Saf. Prog. Process Studies = Process Stud Process Studies = Process Stud. Process Systems Engineering 2003, Pts A and B = Comp Aid Ch Process Systems Engineering 2003, Pts A and B = Comp. Aid. Ch. Process Systems Engineering 2003, Pts A and B = Comput-aided Chem En Process Systems Engineering 2003, Pts A and B = Comput-aided. Chem. En. Process Technology Conference Proceedings = Proc Tech C Process Technology Conference Proceedings = Proc. Tech. C. Process Technology Proceedings = Process Technol Proc Process Technology Proceedings = Process Technol. Proc. Process Technology = Process Technol Int Process Technology = Process Technol. Int. Prodrugs: Challenges and Rewards, Part 1 = Biotechnol Pharm Asp Prodrugs: Challenges and Rewards, Part 1 = Biotechnol. Pharm. Asp. Prodrugs: Challenges and Rewards, Part 2 = Biotechnol Pharm Asp Prodrugs: Challenges and Rewards, Part 2 = Biotechnol. Pharm. Asp. Produced Water 2 = Envir Sci R Produced Water 2 = Envir. Sci. R. Produced Water = Envir Sci R Produced Water = Envir. Sci. R. Producer Dynamics: New Evidence From Micro Data = Stud Income Producer Dynamics: New Evidence From Micro Data = Stud. Income. Producibility of Ii-vi Materials and Devices = P Soc Photo-opt Ins Producibility of Ii-vi Materials and Devices = P. Soc. Photo-opt. Ins. Producing Fashion: Commerce, Culture, and Consumers = Hagley Perspect Bus Producing Fashion: Commerce, Culture, and Consumers = Hagley. Perspect. Bus. Product Development and Production Engineering in Manufacturing Industries = P Arab Sch Product Development and Production Engineering in Manufacturing Industries = P. Arab. Sch. Product Engineering = Prod Eng Product Engineering = Prod. Eng. Product-focused Software Process Improvement = Lect Notes Comput Sc Product-focused Software Process Improvement = Lect. Notes. Comput. Sc. Product Focused Software Process Improvement = Lect Notes Comput Sc Product Focused Software Process Improvement = Lect. Notes. Comput. Sc. Product-focused Software Process Improvement, Proceedings = Lect Notes Bus Inf Product-focused Software Process Improvement, Proceedings = Lect. Notes. Bus. Inf. Product-focused Software Process Improvement, Proceedings = Lect Notes Bus Inf P Product-focused Software Process Improvement, Proceedings = Lect. Notes. Bus. Inf. P. Product-focused Software Process Improvement, Proceedings = Lect Notes Comput Sc Product-focused Software Process Improvement, Proceedings = Lect. Notes. Comput. Sc. Product Focused Software Process Improvement, Proceedings = Lect Notes Comput Sc Product Focused Software Process Improvement, Proceedings = Lect. Notes. Comput. Sc. Production and Analysis of Polarized X Rays = P Soc Photo-opt Ins Production and Analysis of Polarized X Rays = P. Soc. Photo-opt. Ins. Production and Neutralization of Negative Ions and Beams = Aip Conf Proc Production and Neutralization of Negative Ions and Beams = Aip. Conf. Proc. Production and Neutralization of Negative Ions and Beams / Production and Application of Light Negative Ions = Aip Conf Proc Production and Neutralization of Negative Ions and Beams / Production and Application of Light Negative Ions = Aip. Conf. Proc. Production and Operations Management = Prod Oper Manag Production and Operations Management = Prod. Oper. Manag. Production and Utilization of Ewe and Goat Milk = Int Dairy F Production and Utilization of Ewe and Goat Milk = Int. Dairy. F. Production Engineering and Management Under Fuzziness = Stud Fuzz Soft Comp Production Engineering and Management Under Fuzziness = Stud. Fuzz. Soft. Comp. Production Engineering = Prod. Eng. Production Engineering = Prod Engineer Production Engineering = Prod. Engineer. Production Logistics : Concepts, Examples, Experiences = Vdi Bericht Production Logistics : Concepts, Examples, Experiences = Vdi. Bericht. Production Logistics = Vdi Bericht Production Logistics = Vdi. Bericht. Production Management Methods = Ifip Trans B Production Management Methods = Ifip. Trans. B. Production of Freshwater Fish With Unconventional Ingredients in Egypt = Fish Fish Fish Production of Hides, Skins, Wool and Hair = Eaap Public Production of Hides, Skins, Wool and Hair = Eaap. Public. Production Organizations in Japanese Economic Development = Routl Stud Mod World Production Organizations in Japanese Economic Development = Routl. Stud. Mod. World. Production Planning & Control = Prod Plan Control Production Planning & Control = Prod. Plan. Control Productions Animales = Prod Anim Productions Animales = Prod. Anim. Productive Use of Saline Land = Aciar Proc Productive Use of Saline Land = Aciar. Proc. Productivity for Librarians: How to Get More Done in Less Time = Chandos Inf Prof Ser Productivity for Librarians: How to Get More Done in Less Time = Chandos. Inf. Prof. Ser. Productivity, Growth and Canada's International Competitiveness = Bell Canada Pap Econ Productivity, Growth and Canada's International Competitiveness = Bell. Canada. Pap. Econ. Productivity Growth and The Competitiveness of The American Economy = Stud Prod A Productivity Growth and The Competitiveness of The American Economy = Stud. Prod. A. Productivity of The Ocean : Present and Past = Life Sci R Productivity of The Ocean : Present and Past = Life. Sci. R. Product Liability, Insurance and The Pharmaceutical Industry : and Anglo-american Comparison = Fulbright P Product Liability, Insurance and The Pharmaceutical Industry : and Anglo-american Comparison = Fulbright. P. Product Lifecycle Management: 21st Century Paradigm for Product Realisation = Decis Eng Product Lifecycle Management: 21st Century Paradigm for Product Realisation = Decis. Eng. Product Models in Design and Production Planning = Vtt Symp Product Models in Design and Production Planning = Vtt. Symp. Product Reliability: Specification and Performance = Springer Ser Reliab Product Reliability: Specification and Performance = Springer. Ser. Reliab. Products Et Problems Pharmaceutiques = Prod Probl Pharm Products Et Problems Pharmaceutiques = Prod. Probl. Pharm. Product Testing With Consumers for Research Guidance : Special Consumer Groups, 2nd Vol = Am Soc Test Mater Product Testing With Consumers for Research Guidance : Special Consumer Groups, 2nd Vol = Am. Soc. Test. Mater. Produits et Problemes Pharmaceutiques = Prod. Probl. Pharm. Produits pharmaceutiques = Prod Pharm Produits & problemes pharmaceutiques = Prod Probl Pharm Produktdesign in Der Chemischen Industrie = Vdi-buch Produktdesign in Der Chemischen Industrie = Vdi-buch. Produktionsleitsysteme in Der Automobilfertigung = Vdi-buch Produktionsleitsysteme in Der Automobilfertigung = Vdi-buch. Produktionsplanung Und -steuerung: Grundlagen, Gestaltung Und Konzepte, 3., Vollig Neu Bearbeitete Auflage = Vdi-buch Produktionsplanung Und -steuerung: Grundlagen, Gestaltung Und Konzepte, 3., Vollig Neu Bearbeitete Auflage = Vdi-buch. Produktion von Leiterplatten und Systemen = Prod. Leiterplatten Sys. Pro Familia Informationen = Pro Fam Inf Profamilia : planificacion, poblacion y desarollo = Profamilia Profane Challenge and Orthodox Response in Dostoevsky's Crime and Punishment = Stud Slav Lit Poet Profane Challenge and Orthodox Response in Dostoevsky's Crime and Punishment = Stud. Slav. Lit. Poet. Profesional De La Informacion = Prof Inform Profesional De La Informacion = Prof. Inform. Professional and Practice-based Learning = Prof Pract-based Lea Professional and Practice-based Learning = Prof. Pract-based. Lea. Professional Burnout : Recent Developments in Theory and Research = S Ap Psyc S Professional Burnout : Recent Developments in Theory and Research = S. Ap. Psyc. S. Professional care of mother and child = Prof Care Mother Child Professional Care of Mother and Child = Prof. Care Mother Child Professional case management = Prof Case Manag Professional Congress On Energy = Vdi Bericht Professional Congress On Energy = Vdi. Bericht. Professional Congress On Environment, Climate, Health = Vdi Bericht Professional Congress On Environment, Climate, Health = Vdi. Bericht. Professional Congress On Information and Communication = Vdi Bericht Professional Congress On Information and Communication = Vdi. Bericht. Professional Congress On Mobility = Vdi Bericht Professional Congress On Mobility = Vdi. Bericht. Professional Congress On The Future of Work = Vdi Bericht Professional Congress On The Future of Work = Vdi. Bericht. Professional Development and Practice Series = Profess Dev Pract S Professional Development and Practice Series = Profess. Dev. Pract. S. Professional Development of Information Technology Professionals = Ifip Trans A Professional Development of Information Technology Professionals = Ifip. Trans. A. Professional development series (Chicago, Ill.) = Prof Dev Ser (Chic Ill) Professional Education and Development of Teachers of Mathematics: The 15th Icmi Study = New Icmi Stud Ser Professional Education and Development of Teachers of Mathematics: The 15th Icmi Study = New. Icmi Stud. Ser. Professional Encounters in Tesol: Discourses of Teachers in Teaching = Palg Stud Prof Organ Professional Encounters in Tesol: Discourses of Teachers in Teaching = Palg. Stud. Prof. Organ. Professional Engineering = Prof Eng Professional Engineering = Prof. Eng. Professional ethics (Gainesville, Fla.) = Prof Ethics Professional ethics report : newsletter of the American Association for the Advancement of Science, Committee on Scientific Freedom & Responsibility, Professional Society Ethics Group = Prof Ethics Rep Professional flashes = Prof Flashes Professional Flashes = Prof. Flashes Professional Geographer = Prof Geogr Professional Geographer = Prof. Geogr. Professional Knowledge Management = Lect Notes Artif Int Professional Knowledge Management = Lect. Notes. Artif. Int. Professional Learning and Development in Schools and Higher Education = Prof Learn Dev Sch H Professional Learning and Development in Schools and Higher Education = Prof. Learn. Dev. Sch. H. Professional Librarian Series = Prof Lib S Professional Librarian Series = Prof. Lib. S. Professional-managerial Class = Stirl Manag Ser Professional-managerial Class = Stirl. Manag. Ser. Professional nurse (London, England) = Prof Nurse Professional Nurse = Prof. Nurse Professional nursing home = Prof Nurs Home Professional Nursing Home = Prof. Nurs. Home Professional Practice in Artificial Intelligence = Int Fed Info Proc Professional Practice in Artificial Intelligence = Int. Fed. Info. Proc. Professional psychology = Prof Psychol Professional Psychology = Prof Psychol Professional Psychology = Prof. Psychol. Professional psychology, research and practice = Prof Psychol Res Pr Professional Psychology-research and Practice = Prof Psychol-res Pr Professional Psychology-research and Practice = Prof. Psychol-res. Pr. Professional safety = Prof Saf Professional Safety = Prof Saf Professional Safety = Prof. Saf. Professional sanitation management = Prof Sanit Manage Professional Sanitation Management = Prof. Sanit. Manage. Professional Service Firms = Res Sociol Organ-res Professional Service Firms = Res. Sociol. Organ-res. Professional Supply Management = Prof Supply Manage Professional Supply Management = Prof. Supply Manage. Professioni infermieristiche = Prof Inferm Professioni Infermieristiche = Prof. Inferm. Professoriate: Profile of A Profession = High Educ Dynam Professoriate: Profile of A Profession = High. Educ. Dynam. Professor's Guide to Taming Technology: Leveraging Digital Media, Web 2.0, and More for Learning = Innov Persp High Edu Professor's Guide to Taming Technology: Leveraging Digital Media, Web 2.0, and More for Learning = Innov. Persp. High. Edu. Profile of medical practice / Center for Health Services Research and Development, American Medical Association = Profile Med Pract Profile of Medical Practice = Profile Med. Pract. Profiles in healthcare communications = Profiles Healthc Commun Profiles in healthcare marketing = Profiles Healthc Mark Profiles in Healthcare Marketing = Profiles Healthc. Mark. Profiles in hospital marketing = Profiles Hosp Mark Profiles in Hospital Marketing = Profiles Hosp. Mark. Profiles in Inorganic Chemistry = Profiles Inorg Chem Profiles in Inorganic Chemistry = Profiles Inorg. Chem. Profitability, Accounting Theory and Methodology: The Selected Essays of Geoffrey Whittington = Routl Hist Persp Acc Profitability, Accounting Theory and Methodology: The Selected Essays of Geoffrey Whittington = Routl. Hist. Persp. Acc. Pro-fono : revista de atualizacao cientifica = Pro Fono Profound Gastric Acid Suppression : A Long-term Safety Risk = Res Clin Forums Profound Gastric Acid Suppression : A Long-term Safety Risk = Res. Clin. Forums. Progenitor Cell Therapy for Neurological Injury = Stem Cells Biol Reg Progenitor Cell Therapy for Neurological Injury = Stem. Cells. Biol. Reg. Progestins and The Mammary Gland: From Basic Science to Clinical Applications = Ernst Schering Found Progestins and The Mammary Gland: From Basic Science to Clinical Applications = Ernst. Schering. Found. Progimnasmi Di Severo Di Alessandria (severo Di Antiochia) = Samml Wiss Comment Progimnasmi Di Severo Di Alessandria (severo Di Antiochia) = Samml. Wiss. Comment. Prognozowanie I Ograniczanie Wystepowania Brudnicy Mniszki Lymantria Monacha L. (lepidoptera, Lymantriidae) = Prace I Bad Lesn Roz Prognozowanie I Ograniczanie Wystepowania Brudnicy Mniszki Lymantria Monacha L. (lepidoptera, Lymantriidae) = Prace. I Bad. Lesn. Roz. Program Analysis and Compilation, Theory and Practice = Lect Notes Comput Sc Program Analysis and Compilation, Theory and Practice = Lect. Notes. Comput. Sc. Program-automated Library and Information Systems = Program-autom Libr Program-automated Library and Information Systems = Program-autom. Libr. Program Development in Computational Logic = Lect Notes Comput Sc Program Development in Computational Logic = Lect. Notes. Comput. Sc. Program-electronic Library and Information Systems = Program-electron Lib Program-electronic Library and Information Systems = Program-electron. Lib. Program Evaluation in Language Education = Res Pract Appl Lingu Program Evaluation in Language Education = Res. Pract. Appl. Lingu. Programmable Devices and Systems 2001 = Ifac Work S Programmable Devices and Systems 2001 = Ifac. Work. S. Programmable Devices and Systems = Ifac Work S Programmable Devices and Systems = Ifac. Work. S. Programmed Cell Death = Essays Biochem Programmed Cell Death = Essays. Biochem. Programmed Cell Death, General Principles for Studying Cell Death, Pt A = Method Enzymol Programmed Cell Death, General Principles for Studying Cell Death, Pt A = Method. Enzymol. Programmed Cell Death in Cancer Progression and Therapy = Adv Exp Med Biol Programmed Cell Death in Cancer Progression and Therapy = Adv. Exp. Med. Biol. Programmed Cell Death, The Biology and Therapeutic Implications of Cell Death, Part B = Method Enzymol Programmed Cell Death, The Biology and Therapeutic Implications of Cell Death, Part B = Method. Enzymol. Programmed Learning & Educational Technology = Program Learn Educ T Programmed Learning & Educational Technology = Program. Learn. Educ. T. Programme Evaluation and Treatment Choice = Lect Notes Econ Math Programme Evaluation and Treatment Choice = Lect. Notes. Econ. Math. Programme Making for Radio = Media Skills Programme Making for Radio = Media. Skills. Programme On International Rights of The Child = Prog Int Rights Chil Programme On International Rights of The Child = Prog. Int. Rights Chil. Programming and Computer Software = Program Comput Soft+ Programming and Computer Software = Program. Comput. Soft+.+ Programming Concepts, Methods and Calculi = Ifip Trans A Programming Concepts, Methods and Calculi = Ifip. Trans. A. Programming Constraint Services = Lect Notes Artif Int Programming Constraint Services = Lect. Notes. Artif. Int. Programming Environments for High-level Scientific Problem Solving = Ifip Trans A Programming Environments for High-level Scientific Problem Solving = Ifip. Trans. A. Programming for Adolescent Health and Development = Who Tech Rep Ser Programming for Adolescent Health and Development = Who. Tech. Rep. Ser. Programming Language Implementation and Logic Programming = Lect Notes Comput Sc Programming Language Implementation and Logic Programming = Lect. Notes. Comput. Sc. Programming Language Implementation and Logic Programming / = Lect Notes Comput Sc Programming Language Implementation and Logic Programming / = Lect. Notes. Comput. Sc. Programming Language Implementation and Logic Programming // = Lect Notes Comput Sc Programming Language Implementation and Logic Programming // = Lect. Notes. Comput. Sc. Programming Languages and Systems = Lect Notes Comput Sc Programming Languages and Systems = Lect. Notes. Comput. Sc. Programming Languages and Systems, Proceedings = Lect Notes Comput Sc Programming Languages and Systems, Proceedings = Lect. Notes. Comput. Sc. Programming Languages: Implementations, Logics and Programs = Lect Notes Comput Sc Programming Languages: Implementations, Logics and Programs = Lect. Notes. Comput. Sc. Programming Multi-agent Systems = Lect Notes Artif Int Programming Multi-agent Systems = Lect. Notes. Artif. Int. Programming Multi-agent Systems = Lect Notes Comput Sc Programming Multi-agent Systems = Lect. Notes. Comput. Sc. Programming Reality: Perspectives On English-canadian Television = Film Media Stud Ser Programming Reality: Perspectives On English-canadian Television = Film. Media. Stud. Ser. Program-news of Computers in Libraries = Program-news Comput Program-news of Computers in Libraries = Program-news Comput. Program Notes, Association of University Programs in Health Administration = Program Notes Assoc. Univ. Programs Health Adm. Program notes (Association of University Programs.) = Program Notes Assoc Univ Programs Health Adm Program quarterly - The Asia Foundation. The Asia Foundation = Program Q Asia Found Programs As Data Objects, Proceedings = Lect Notes Comput Sc Programs As Data Objects, Proceedings = Lect. Notes. Comput. Sc. Programs, Proofs, Processes = Lect Notes Comput Sc Programs, Proofs, Processes = Lect. Notes. Comput. Sc. Progres en urologie : journal de l'Association francaise d'urologie et de la Societe francaise d'urologie = Prog Urol Progres en Urologie = Prog. Urol. Progres En Urologie=Prog Urol;; Progres En Urologie = Prog Urol Progres En Urologie = Prog. Urol. Progres Medical = Progr. Med. (Paris.) Progres Odonto-Stomatologique = Prog. Odontostomatol. Progresos de pediatria y puericultura = Progr Pediatr Puericult Progresos de terapeutica clinica = Progr Ter Clin Progresos de Terapeutica Clinica = Progr. Ter. Clin. Progress and Continuing Education in Medicine, Vol 13 = For For Med Progress and Continuing Education in Medicine, Vol 13 = For. For. Med. Progress and Perspectives in Chemoprevention of Cancer = Serono Sym Progress and Perspectives in Chemoprevention of Cancer = Serono. Sym. Progress and Prospects in Insect Control = Br Crop Pr Progress and Prospects in Insect Control = Br. Crop. Pr. Progresses in Fracture and Strength of Materials and Structures, 1-4 = Key Eng Mat Progresses in Fracture and Strength of Materials and Structures, 1-4 = Key. Eng. Mat. Progresses in Fracture and Strength of Materials and Structures, 1-4 = Key Eng Mater Progresses in Fracture and Strength of Materials and Structures, 1-4 = Key. Eng. Mater. Progress in Abrasive and Grinding Technology = Key Eng Mater Progress in Abrasive and Grinding Technology = Key. Eng. Mater. Progress in Advanced Materials and Processes = Mater Sci Forum Progress in Advanced Materials and Processes = Mater. Sci. Forum. Progress in Aerospace Sciences = Prog Aerosp Sci Progress in Aerospace Sciences = Prog. Aerosp. Sci. Progress in AIDS pathology = Prog AIDS Pathol Progress in AIDS Pathology = Prog. AIDS Pathol. Progress In AIDS Pathology=Prog AIDS Pathol;; Progress in Aids Research in The Federal Republic of Germany = Bga Schrift Progress in Aids Research in The Federal Republic of Germany = Bga. Schrift. Progress in Allergy and Clinical Immunology Series = Prog Aller Clin Imm Progress in Allergy and Clinical Immunology Series = Prog. Aller. Clin. Imm. Progress in Allergy and Clinical Immunology Volume 3, Stockholm = Prog Aller Clin Imm Progress in Allergy and Clinical Immunology Volume 3, Stockholm = Prog. Aller. Clin. Imm. Progress in allergy = Prog Allergy Progress in Allergy = Prog Allergy Progress in Allergy = Prog. Allergy Progress in Alzheimer's and Parkinson's Diseases = Adv Behav Biol Progress in Alzheimer's and Parkinson's Diseases = Adv. Behav. Biol. Progress in Analytical Atomic Spectroscopy = Prog Anal Atom Spect Progress in Analytical Atomic Spectroscopy = Prog. Anal. Atom. Spect. Progress in Analytical Spectroscopy = Prog Anal Spectrosc Progress in Analytical Spectroscopy = Prog. Anal. Spectrosc. Progress in Analytical Ultracentrifugation = Prog Coll Pol Sci S Progress in Analytical Ultracentrifugation = Prog. Coll. Pol. Sci. S. Progress in Applied Microcirculation-mikrozirkulation in Forschung Und Klinik = Prog Appl Microcir Progress in Applied Microcirculation-mikrozirkulation in Forschung Und Klinik = Prog. Appl. Microcir. Progress in Applied Microcirculation-mikrozirkulation in Forschung Und Klinik = Progr Appl Micr Progress in Applied Microcirculation-mikrozirkulation in Forschung Und Klinik = Progr. Appl. Micr. Progress in Applied Microcirculation / Mikrozirkulation in Forschung Und Klinik = Progr Appl Micr Progress in Applied Microcirculation / Mikrozirkulation in Forschung Und Klinik = Progr. Appl. Micr. Progress in Approximation Theory : An International Perspective = Spr S Comp Progress in Approximation Theory : An International Perspective = Spr. S. Comp. Progress in Artificial Intelligence-iberamia 98 = Lect Notes Artif Int Progress in Artificial Intelligence-iberamia 98 = Lect. Notes. Artif. Int. Progress in Artificial Intelligence = Lect Notes Artif Int Progress in Artificial Intelligence = Lect. Notes. Artif. Int. Progress in Artificial Intelligence, Proceedings = Lect Notes Artif Int Progress in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Progress in Artificial Life, Proceedings = Lect Notes Artif Int Progress in Artificial Life, Proceedings = Lect. Notes. Artif. Int. Progress in Asthma and Copd = Int Congr Ser Progress in Asthma and Copd = Int. Congr. Ser. Progress in Astronautics and Aeronautics = Prog Astronaut Aeron Progress in Astronautics and Aeronautics = Prog. Astronaut. Aeron. Progress in Astronautics and Aeronautics = Prog. Astronaut. Aeronaut. Progress in Astronautics and Aeronautics = Progr Astronaut Aero Progress in Astronautics and Aeronautics = Progr. Astronaut. Aero. Progress in atomic medicine = Prog At Med Progress in Atomic Medicine = Prog. At. Med. Progress in Atomic Physics Neutrinos and Gravitation = Moriond Wor Progress in Atomic Physics Neutrinos and Gravitation = Moriond. Wor. Progress in Basic and Clinical Immunology = Adv Exp Med Biol Progress in Basic and Clinical Immunology = Adv. Exp. Med. Biol. Progress in behavior modification = Prog Behav Modif Progress in Behavior Modification = Prog. Behav. Modif. Progress In Behavior Modification=Prog Behav Modif;; Progress in Behavior Modification = Prog Behav Modific Progress in Behavior Modification = Prog. Behav. Modific. Progress in Bioceramics = Key Eng Mater Progress in Bioceramics = Key. Eng. Mater. Progress in Biochemical Pharmacology = Prog Biochem Pharm Progress in Biochemical Pharmacology = Prog. Biochem. Pharm. Progress in biochemical pharmacology = Prog Biochem Pharmacol Progress in Biochemical Pharmacology = Prog. Biochem. Pharmacol. Progress In Biochemical Pharmacology=Prog Biochem Pharmacol;; Progress in Biochemistry and Biophysics = Prog Biochem Biophys Progress in Biochemistry and Biophysics = Prog. Biochem. Biophys. Progress in biocybernetics = Prog Biocybern Progress in Biocybernetics = Prog. Biocybern. Progress in Biological Control = Prog Biol Control Progress in Biological Control = Prog. Biol. Control Progress in Biomedical Optics and Imaging = Pro Biomed Opt Imag Progress in Biomedical Optics and Imaging = Pro. Biomed. Opt. Imag. Progress in Biomedical Optics = Prog Biom O Progress in Biomedical Optics = Prog. Biom. O. Progress in biometeorology. Division A: Progress in human biometeorology = Prog Biometeorol Progress in Biometeorology, Division A: Progress in Human Biometeorology = Prog. Biometeorol. Progress in Biometeorology = Prog Biomet Progress in Biometeorology = Prog. Biomet. Progress in Biometeorology = Prog. Biometeorol. Progress in Biophysics and Biophysical Chemistry = Prog Biophys Biop Ch Progress in Biophysics and Biophysical Chemistry = Prog. Biophys. Biop. Ch. Progress in biophysics and biophysical chemistry = Prog Biophys Biophys Chem Progress in biophysics and molecular biology = Prog Biophys Mol Biol Progress in Biophysics and Molecular biology = Prog. Biophys. Mol. Biol. Progress in Biophysics and Molecular Biology = Prog. Biophys. Mol. Biol. Progress In Biophysics and Molecular Biology=Prog Biophys Mol Biol;; Progress in Biophysics & Molecular Biology = Prog Biophys Mol Bio Progress in Biophysics & Molecular Biology = Prog. Biophys. Mol. Bio. Progress in Biotechnology = Prog. Biotechnol. Progress in Biotechnology = Progr Biotechnol Progress in Biotechnology = Progr. Biotechnol. Progress in Botany 71 = Prog Bot Progress in Botany 71 = Prog. Bot. Progress in Botany 72 = Prog Bot Progress in Botany 72 = Prog. Bot. Progress in Botany = Prog Bot Progress in Botany = Prog. Bot. Progress in Brain Research <d> = Prog Brain Res <d> Progress in Brain Research <d> = Prog. Brain Res. <d> Progress in brain research = Prog Brain Res Progress in Brain Research = Prog Brain Res Progress in Brain Research = Prog. Brain Res. Progress In Brain Research=Prog Brain Res;; Progress in cardiovascular diseases = Prog Cardiovasc Dis Progress in Cardiovascular Diseases = Prog Cardiovasc Dis Progress in Cardiovascular Diseases = Prog. Cardiovasc. Dis. Progress In Cardiovascular Diseases=Prog Cardiovasc Dis;; Progress in cardiovascular nursing = Prog Cardiovasc Nurs Progress in Cardiovascular Nursing = Prog. Cardiovasc. Nurs. Progress In Cardiovascular Nursing=Prog Cardiovasc Nurs;; Progress in Catalysis = Stud Surf Sci Catal Progress in Catalysis = Stud. Surf. Sci. Catal. Progress in cell cycle research = Prog Cell Cycle Res Progress in Cell Cycle Research = Prog. Cell Cycle Res. Progress in Cell Research = Prog Cell R Progress in Cell Research = Prog. Cell R. Progress in chemical toxicology = Prog Chem Toxicol Progress in Chemical Toxicology = Prog. Chem. Toxicol. Progress in Chemistry = Prog Chem Progress in Chemistry = Prog. Chem. Progress in clinical and biological research = Prog Clin Biol Res Progress in Clinical and Biological Research = Prog Clin Biol Res Progress in Clinical and Biological Research = Prog. Clin. Biol. Res. Progress In Clinical and Biological Research=Prog Clin Biol Res;; Progress in Clinical Biochemistry = Int Congr Ser Progress in Clinical Biochemistry = Int. Congr. Ser. Progress in clinical cancer = Prog Clin Cancer Progress in Clinical Cancer = Prog. Clin. Cancer Progress in clinical immunology = Prog Clin Immunol Progress in Clinical Immunology = Prog. Clin. Immunol. Progress in Clinical Neurophysiology = Prog Clin Neurophys Progress in Clinical Neurophysiology = Prog. Clin. Neurophys. Progress in clinical parasitology = Prog Clin Parasitol Progress in Clinical Parasitology = Prog. Clin. Parasitol. Progress In Clinical Parasitology=Prog Clin Parasitol;; Progress in clinical pathology = Prog Clin Pathol Progress in Clinical Pathology = Prog. Clin. Pathol. Progress in Colloid and Polymer Science = Prog. Colloid Polym. Sci. Progress in Colloid and Polymer Science = Prog Coll Pol Sci S Progress in Colloid and Polymer Science = Prog. Coll. Pol. Sci. S. Progress in colloid & polymer science = Prog Colloid Polym Sci Progress in Comparative Endocrinology = Prog Clin Biol Res Progress in Comparative Endocrinology = Prog. Clin. Biol. Res. Progress in Compound Semiconductor Materials Iii - Electronic and Optoelectronic Applications = Mater Res Soc Symp P Progress in Compound Semiconductor Materials Iii - Electronic and Optoelectronic Applications = Mater. Res. Soc. Symp. P. Progress in Compound Semiconductor Materials Iv-electronic and Optoelectronic Applications = Mater Res Soc Symp P Progress in Compound Semiconductor Materials Iv-electronic and Optoelectronic Applications = Mater. Res. Soc. Symp. P. Progress in Computational Fluid Dynamics = Prog Comput Fluid Dy Progress in Computational Fluid Dynamics = Prog. Comput. Fluid Dy. Progress in Computer Science and Applied Logic = Prog Comput Sci Appl Progress in Computer Science and Applied Logic = Prog. Comput. Sci. Appl. Progress in Computer Science and Applied Logic = Prog Com Sc Progress in Computer Science and Applied Logic = Prog. Com. Sc. Progress in Computer Science and Applied Logic = Progr. Comput. Sci. Appl. Logic Progress in Convergence: Technologies for Human Wellbeing = Ann Ny Acad Sci Progress in Convergence: Technologies for Human Wellbeing = Ann. Ny. Acad. Sci. Progress in Cryptology - Africacrypt 2008 = Lect Notes Comput Sc Progress in Cryptology - Africacrypt 2008 = Lect. Notes. Comput. Sc. Progress in Cryptology - Africacrypt 2009 = Lect Notes Comput Sc Progress in Cryptology - Africacrypt 2009 = Lect. Notes. Comput. Sc. Progress in Cryptology - Africacrypt 2010 = Lect Notes Comput Sc Progress in Cryptology - Africacrypt 2010 = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2002, Proceedings = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2002, Proceedings = Lect. Notes. Comput. Sc. Progress in Cryptology -indocrypt 2003 = Lect Notes Comput Sc Progress in Cryptology -indocrypt 2003 = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2004, Proceedings = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2004, Proceedings = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2005, Proceedings = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2005, Proceedings = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2006, Proceedings = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2006, Proceedings = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2007 = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2007 = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2008 = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2008 = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2009, Proceedings = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2009, Proceedings = Lect. Notes. Comput. Sc. Progress in Cryptology - Indocrypt 2010 = Lect Notes Comput Sc Progress in Cryptology - Indocrypt 2010 = Lect. Notes. Comput. Sc. Progress in Cryptology - Latincrypt 2010 = Lect Notes Comput Sc Progress in Cryptology - Latincrypt 2010 = Lect. Notes. Comput. Sc. Progress in Cryptology - Mycrypt 2005 = Lect Notes Comput Sc Progress in Cryptology - Mycrypt 2005 = Lect. Notes. Comput. Sc. Progress in Cryptology - Vietcrypt 2006 = Lect Notes Comput Sc Progress in Cryptology - Vietcrypt 2006 = Lect. Notes. Comput. Sc. Progress in Crystal Growth and Characterization of Materials = Prog Cryst Growth Ch Progress in Crystal Growth and Characterization of Materials = Prog. Cryst. Growth Ch. Progress in Crystal Growth and Characterization of Materials = Prog. Cryst. Growth Charact. Mater. Progress in Cytomegalovirus Research = Int Congr Ser Progress in Cytomegalovirus Research = Int. Congr. Ser. Progress in Development Studies = Prog Dev Stud Progress in Development Studies = Prog. Dev. Stud. Progress in Distributed Operating Systems and Distributed Systems Management = Lect Notes Comput Sc Progress in Distributed Operating Systems and Distributed Systems Management = Lect. Notes. Comput. Sc. Progress in Domiciliary Respiratory Care = Int Congr Ser Progress in Domiciliary Respiratory Care = Int. Congr. Ser. Progress in Drug Metabolism = Prog Drug Metab Progress in Drug Metabolism = Prog. Drug Metab. Progress in drug research. Fortschritte der Arzneimittelforschung. Progres des recherches pharmaceutiques = Prog Drug Res Progress in Drug Research = Prog Drug Res Progress in Drug Research = Prog. Drug Res. Progress In Drug Research=Prog Drug Res;; Progress in Economics Research Series = Prog Econ Res Ser Progress in Economics Research Series = Prog. Econ. Res. Ser. Progress in Economics Research, Vol 15 = Prog Econ Res Ser Progress in Economics Research, Vol 15 = Prog. Econ. Res. Ser. Progress in Economics Research, Vol 16 = Prog Econ Res Ser Progress in Economics Research, Vol 16 = Prog. Econ. Res. Ser. Progress in Education = Prog Educ Progress in Education = Prog. Educ. Progress in Education, Vol 18 = Prog Educ Progress in Education, Vol 18 = Prog. Educ. Progress in Electrodermal Research = Nato Adv Sci Inst Se Progress in Electrodermal Research = Nato. Adv. Sci. Inst. Se. Progress in Electromagnetics Research-pier = Prog Electromagn Res Progress in Electromagnetics Research-pier = Prog. Electromagn. Res. Progress in Electromagnetics Research Symposium = Pr Electromagn Res S Progress in Electromagnetics Research Symposium = Pr. Electromagn. Res. S. Progress in Endocrine Research and Therapy = Prog Endoc Progress in Endocrine Research and Therapy = Prog. Endoc. Progress in Endocrinology 1988, Vol 1 and 2 = Int Congr Ser Progress in Endocrinology 1988, Vol 1 and 2 = Int. Congr. Ser. Progress in Endocrinology = I C S S Progress in Endocrinology = I. C. S. S. Progress in Energy and Combustion Science = Prog Energ Combust Progress in Energy and Combustion Science = Prog. Energ. Combust. Progress in Energy and Combustion Science = Prog. Energy Combust. Sci. Progress in Epileptic Disorders = Prog Epileptic Disor Progress in Epileptic Disorders = Prog. Epileptic Disor. Progress in Experimental and Computational Mechanics in Engineering = Key Eng Mat Progress in Experimental and Computational Mechanics in Engineering = Key. Eng. Mat. Progress in Experimental and Computational Mechanics in Engineering = Key Eng Mater Progress in Experimental and Computational Mechanics in Engineering = Key. Eng. Mater. Progress in Experimental Cardiology = Prog Exp Cardiol Progress in Experimental Cardiology = Prog. Exp. Cardiol. Progress in Experimental Personality and Psychopathology Research = Prog. Exp. Pers. Psychopathol. Res. Progress in experimental personality & psychopathology research = Prog Exp Pers Psychopathol Res Progress in experimental personality research = Prog Exp Pers Res Progress in Experimental Personality Research = Prog. Exp. Pers. Res. Progress in experimental tumor research. Fortschritte der experimentellen Tumorforschung. Progres de la recherche experimentale des tumeurs = Prog Exp Tumor Res Progress in Experimental Tumor Research = Prog Exp Tumor Res Progress in Experimental Tumor Research = Prog. Exp. Tumor Res. Progress In Experimental Tumor Research=Prog Exp Tumor Res;; Progress in Fish Vaccinology = Dev Biologicals Progress in Fish Vaccinology = Dev. Biologicals. Progress Inflammation Research and Therapy = Agent Action Suppl Progress Inflammation Research and Therapy = Agent. Action. Suppl. Progress in Fluid Flow Research: Turbulence and Applied Mhd = Prog Astronaut Aeron Progress in Fluid Flow Research: Turbulence and Applied Mhd = Prog. Astronaut. Aeron. Progress in Fluid Flow Research: Turbulence and Applied Mhd = Progr Astronaut Aero Progress in Fluid Flow Research: Turbulence and Applied Mhd = Progr. Astronaut. Aero. Progress in Food and Nutrition Science = Prog Food Nutr Sci Progress in Food and Nutrition Science = Prog. Food Nutr. Sci. Progress in food & nutrition science = Prog Food Nutr Sci Progress in Forensic Genetics 10 = Int Congr Ser Progress in Forensic Genetics 10 = Int. Congr. Ser. Progress in Forensic Genetics 7 = Int Congr Ser Progress in Forensic Genetics 7 = Int. Congr. Ser. Progress in Forensic Genetics 8 = Int Congr Ser Progress in Forensic Genetics 8 = Int. Congr. Ser. Progress in Forensic Genetics 9 = Int Congr Ser Progress in Forensic Genetics 9 = Int. Congr. Ser. Progress in Fracture and Damage Mechanics = Key Eng Mater Progress in Fracture and Damage Mechanics = Key. Eng. Mater. Progress in Functional Analysis = N-holland M Progress in Functional Analysis = N-holland. M. Progress in Functional Manufacturing Technologies I = Key Eng Mater Progress in Functional Manufacturing Technologies I = Key. Eng. Mater. Progress in Galois Theory = Dev Math Progress in Galois Theory = Dev. Math. Progress in growth factor research = Prog Growth Factor Res Progress in Growth Factor Research = Prog. Growth Factor Res. Progressing Science Education = Sci Technol Educ Lib Progressing Science Education = Sci. Technol. Educ. Lib. Progress in gynecology = Prog Gynecol Progress in hematology = Prog Hematol Progress in Hematology = Prog Hematol Progress in Hematology = Prog. Hematol. Progress in hemostasis and thrombosis = Prog Hemost Thromb Progress in Hemostasis and Thrombosis = Prog Hemost Thromb Progress in Hemostasis and Thrombosis = Prog. Hemost. Thromb. Progress in Hepatitis B Immunization = Colloq Inse Progress in Hepatitis B Immunization = Colloq. Inse. Progress in Hepatology, Vol 1 = Int Congr Ser Progress in Hepatology, Vol 1 = Int. Congr. Ser. Progress in Hepatology, Vol 2 = Int Congr Ser Progress in Hepatology, Vol 2 = Int. Congr. Ser. Progress in Hepatology, Vol 3 = Int Congr Ser Progress in Hepatology, Vol 3 = Int. Congr. Ser. Progress in Hepatology, Vol 4 = Int Congr Ser Progress in Hepatology, Vol 4 = Int. Congr. Ser. Progress in Hepatology, Vol 5 = Int Congr Ser Progress in Hepatology, Vol 5 = Int. Congr. Ser. Progress in Hepato-pharmacology = Prog Hepat Pharm Progress in Hepato-pharmacology = Prog. Hepat. Pharm. Progress in Heterocyclic Chemistry = Prog. Heterocycl. Chem. Progress in High-energy Physics and Nuclear Safety = Nato Science Peace S Progress in High-energy Physics and Nuclear Safety = Nato. Science. Peace. S. Progress in High Temperature Ceramics = Key Eng Mater Progress in High Temperature Ceramics = Key. Eng. Mater. Progress in High-temperature Superconducting Transistors and Other Devices Ii = P Soc Photo-opt Ins Progress in High-temperature Superconducting Transistors and Other Devices Ii = P. Soc. Photo-opt. Ins. Progress in High-temperature Superconducting Transistors and Other Devices = P Soc Photo-opt Ins Progress in High-temperature Superconducting Transistors and Other Devices = P. Soc. Photo-opt. Ins. Progress in High Temperature Superconductivity = Progr High Temp Supe Progress in High Temperature Superconductivity = Progr. High Temp. Supe. Progress in Histochemistry and Cytochemistry/bk Series = Prog Histochem Cytoc Progress in Histochemistry and Cytochemistry/bk Series = Prog. Histochem. Cytoc. Progress in Histochemistry and Cytochemistry = Prog Histochem Cyto Progress in Histochemistry and Cytochemistry = Prog. Histochem. Cyto. Progress in Histochemistry and Cytochemistry = Prog Histochem Cytoc Progress in Histochemistry and Cytochemistry = Prog. Histochem. Cytoc. Progress in histochemistry and cytochemistry = Prog Histochem Cytochem Progress in Histochemistry and Cytochemistry = Prog. Histochem. Cytochem. Progress In Histochemistry and Cytochemistry=Prog Histochem Cytochem;; Progress in Human Geography = Prog Hum Geog Progress in Human Geography = Prog. Hum. Geog. Progress in human geography = Prog Hum Geogr Progress in human reproduction research = Prog Hum Reprod Res Progress in Hybrid Rans-les Modelling = Notes Numer Fluid Me Progress in Hybrid Rans-les Modelling = Notes. Numer. Fluid. Me. Progress in Immune Deficiency Iii = Roy Soc Med Int Cong Progress in Immune Deficiency Iii = Roy. Soc. Med. Int. Cong. Progress in immunobiological standardization = Prog Immunobiol Stand Progress in Immunobiological Standardization = Prog. Immunobiol. Stand. Progress in Immunodeficiency Vi = Int Congr Ser Progress in Immunodeficiency Vi = Int. Congr. Ser. Progress in Industrial Mathematics At Ecmi 2002 = Math Indust Progress in Industrial Mathematics At Ecmi 2002 = Math. Indust. Progress in Industrial Mathematics At Ecmi 2004 = Math Indust Progress in Industrial Mathematics At Ecmi 2004 = Math. Indust. Progress in Industrial Mathematics At Ecmi 2006 = Math Indust Progress in Industrial Mathematics At Ecmi 2006 = Math. Indust. Progress in Industrial Mathematics At Ecmi 2008 = Math Indust Progress in Industrial Mathematics At Ecmi 2008 = Math. Indust. Progress in Industrial Microbiology = Prog Ind M Progress in Industrial Microbiology = Prog. Ind. M. Progress in industrial microbiology = Prog Ind Microbiol Progress in Industrial Microbiology = Prog. Ind. Microbiol. Progress in Inflammation Research = Prog Inflam Res Progress in Inflammation Research = Prog. Inflam. Res. Progress in Inflammation Research Series = Prog Inflamm Res Ser Progress in Inflammation Research Series = Prog. Inflamm. Res. Ser. Progress in Inorganic Chemistry = Prog Inorg Chem Progress in Inorganic Chemistry = Prog. Inorg. Chem. Progress in Inorganic Chemistry: Synthesis, Properties, and Applications = Prog Inorg Chem Progress in Inorganic Chemistry: Synthesis, Properties, and Applications = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 41 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 41 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 42 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 42 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 43 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 43 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 45 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 45 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 46 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 46 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 47 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 47 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 48 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 48 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 49 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 49 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol. 50 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol. 50 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 51 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 51 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 53 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 53 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 54 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 54 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 55 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 55 = Prog. Inorg. Chem. Progress in Inorganic Chemistry, Vol 56 = Prog Inorg Chem Progress in Inorganic Chemistry, Vol 56 = Prog. Inorg. Chem. Progress in International Relations Theory: Appraising The Field = Bcsia Stud Int Progress in International Relations Theory: Appraising The Field = Bcsia. Stud. Int. Progress in Iron Research = Adv Exp Med Biol Progress in Iron Research = Adv. Exp. Med. Biol. Progress in Learning Disabilities = Progr Learn Progress in Learning Disabilities = Progr. Learn. Progress in Leukocyte Biology = Prog Leuc B Progress in Leukocyte Biology = Prog. Leuc. B. Progress in Leukocyte Biology = Prog. Leukocyte Biol. Progress in lipid research = Prog Lipid Res Progress in Lipid Research = Prog Lipid Res Progress in Lipid Research = Prog. Lipid Res. Progress In Lipid Research=Prog Lipid Res;; Progress in Littorinid and Muricid Biology = Dev Hydrob Progress in Littorinid and Muricid Biology = Dev. Hydrob. Progress in liver diseases = Prog Liver Dis Progress in Liver Diseases = Prog Liver Dis Progress in Liver Diseases = Prog. Liver Dis. Progress In Liver Diseases=Prog Liver Dis;; Progress in Lymphology-xiii = Int Congr Ser Progress in Lymphology-xiii = Int. Congr. Ser. Progress in Lymphology - Xii = Int Congr Ser Progress in Lymphology - Xii = Int. Congr. Ser. Progress in Management Engineering = Bus Iss Compet Entre Progress in Management Engineering = Bus. Iss. Compet. Entre. Progress in Materials Science = Prog Mater Sci Progress in Materials Science = Prog. Mater Sci. Progress in Materials Science = Prog. Mater. Sci. Progress in Mathematical Physics = Prog Math P Progress in Mathematical Physics = Prog. Math. P. Progress in Mathematical Physics = Prog Math Phys Progress in Mathematical Physics = Prog. Math. Phys. Progress in Mathematics = Prog Math Progress in Mathematics = Prog. Math. Progress in Mathematics = Progr. Math. Progress in Measurement and Testing, Pts 1 and 2 = Adv Mater Res-switz Progress in Measurement and Testing, Pts 1 and 2 = Adv. Mater. Res-switz. Progress in Measurement and Testing, Pts 1 and 2 = Adv Mat Res Progress in Measurement and Testing, Pts 1 and 2 = Adv. Mat. Res. Progress in medical genetics = Prog Med Genet Progress in Medical Genetics = Prog Med Genet Progress in Medical Genetics = Prog. Med. Genet. Progress in medical virology. Fortschritte der medizinischen Virusforschung. Progres en virologie medicale = Prog Med Virol Progress in Medical Virology = Prog Med Virol Progress in Medical Virology = Prog. Med. Virol. Progress In Medical Virology=Prog Med Virol;; Progress in medicinal chemistry = Prog Med Chem Progress in Medicinal Chemistry = Prog. Med. Chem. Progress In Medicinal Chemistry=Prog Med Chem;; Progress in Medicinal Chemistry = Progr Med Chem Progress in Medicinal Chemistry = Progr. Med. Chem. Progress in medicine = Progr Med Progress in Metal Physics = Prog Met Phys Progress in Metal Physics = Prog. Met. Phys. Progress in Micromechanical Research of Fracture of Composite Materials = Key Eng Mater Progress in Micromechanical Research of Fracture of Composite Materials = Key. Eng. Mater. Progress in Molecular and Subcellular Biology = Prog Mol Subcell Bio Progress in Molecular and Subcellular Biology = Prog. Mol. Subcell. Bio. Progress in molecular and subcellular biology = Prog Mol Subcell Biol Progress in Molecular and Subcellular Biology = Prog. Mol. Subcell. Biol. Progress In Molecular and Subcellular Biology=Prog Mol Subcell Biol;; Progress in Molecular Biology and Translational Science: Animal Models of Human Disease, Vol 100 = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science: Animal Models of Human Disease, Vol 100 = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science: Development, Differentiation, and Disease of The Luminal Gastrointestinal Tract = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science: Development, Differentiation, and Disease of The Luminal Gastrointestinal Tract = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science: Membrane Proteins As Drug Targets = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science: Membrane Proteins As Drug Targets = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science = Prog. Mol. Biol. Transl. Sci. Progress in Molecular Biology and Translational Science: Proteases in Health and Disease, Vol 99 = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science: Proteases in Health and Disease, Vol 99 = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science, Vol 93: Glycosaminoglycans in Development, Health and Disease = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science, Vol 93: Glycosaminoglycans in Development, Health and Disease = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science, Vol 94: Genes and Obesity = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science, Vol 94: Genes and Obesity = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science, Vol 95 = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science, Vol 95 = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Science, Vol 98 = Prog Mol Biol Transl Progress in Molecular Biology and Translational Science, Vol 98 = Prog. Mol. Biol. Transl. Progress in Molecular Biology and Translational Sciene, Vol 97 = Prog Mol Biol Transl Progress in Molecular Biology and Translational Sciene, Vol 97 = Prog. Mol. Biol. Transl. Progress in Motor Control: A Multidisciplinary Perspective = Adv Exp Med Biol Progress in Motor Control: A Multidisciplinary Perspective = Adv. Exp. Med. Biol. Progress in Nano-electro-optics Vii: Chemical, Biological and Nanophotonic Technologies for Nano-optical Devices and Systems = Springer Ser Opt Sci Progress in Nano-electro-optics Vii: Chemical, Biological and Nanophotonic Technologies for Nano-optical Devices and Systems = Springer. Ser. Opt. Sci. Progress in Nano-electro-optics Vi = Springer Ser Opt Sci Progress in Nano-electro-optics Vi = Springer. Ser. Opt. Sci. Progress in Nanophotonics 1 = Nanopt Nanophoto Progress in Nanophotonics 1 = Nanopt. Nanophoto. Progress in Natural Science-materials International = Prog Nat Sci Progress in Natural Science-materials International = Prog. Nat. Sci. Progress in Natural Science = Prog Nat Sci Progress in Natural Science = Prog. Nat. Sci. Progress in Natural Science = Progr. Natur. Sci. (English Ed.) Progress in Neural Processing = Prog Neural Process Progress in Neural Processing = Prog. Neural Process. Progress in neurobiology = Prog Neurobiol Progress in Neurobiology = Prog Neurobiol Progress in Neurobiology = Prog. Neurobiol. Progress In Neurobiology=Prog Neurobiol;; Progress in Neurodegeneration: The Role of Metals = Neurodegener Dis Lab Progress in Neurodegeneration: The Role of Metals = Neurodegener. Dis. Lab. Progress in Neuroendocrinimmunology = Prog Neuroendocrinim Progress in Neuroendocrinimmunology = Prog. Neuroendocrinim. Progress in Neurological Surgery = Prog Neurol Progress in Neurological Surgery = Prog. Neurol. Progress in neurological surgery = Prog Neurol Surg Progress in Neurological Surgery = Prog Neurol Surg Progress in Neurological Surgery = Prog. Neurol. Surg. Progress in neurology and psychiatry = Prog Neurol Psychiatry Progress in Neurology and Psychiatry = Prog. Neurol. Psychiatry Progress in Neuropathology = Prog Neuropath Progress in Neuropathology = Prog. Neuropath. Progress in Neuropharmacology and Neurotoxicology of Pesticides and Drugs = Roy Soc Ch Progress in Neuropharmacology and Neurotoxicology of Pesticides and Drugs = Roy. Soc. Ch. Progress in Neuro-Psychopharmacology and Biological Psychiatry = Prog. Neuropsychopharmacol. Biol. Psychiatry Progress In Neuro-Psychopharmacology and Biological Psychiatry=Prog Neuropsychopharmacol Biol Psychiatry;; Progress in Neuro-psychopharmacology & Biological Psychiatry = Prog Neuro-psychoph Progress in Neuro-psychopharmacology & Biological Psychiatry = Prog. Neuro-psychoph. Progress in neuro-psychopharmacology & biological psychiatry = Prog Neuropsychopharmacol Biol Psychiatry Progress in Neuro-psychopharmacology = Prog Neuro-psychopha Progress in Neuro-psychopharmacology = Prog. Neuro-psychopha. Progress in neuro-psychopharmacology = Prog Neuropsychopharmacol Progress in Neuro-Psychopharmacology = Prog. Neuropsychopharmacol. Progress in Nonequilibrium Green's Functions Iii = J Phys Conf Ser Progress in Nonequilibrium Green's Functions Iii = J. Phys. Conf. Ser. Progress in Nonlinear Differential Equations and Their Applications = Prog Nonlin Progress in Nonlinear Differential Equations and Their Applications = Prog. Nonlin. Progress in Nonlinear Differential Equations and Their Applications = Prog Nonlinear Diffe Progress in Nonlinear Differential Equations and Their Applications = Prog. Nonlinear Diffe. Progress in Nonlinear Differential Equations and their Applications = Progr. Nonlinear Differential Equations Appl. Progress in Nonlinear Speech Processing = Lect Notes Comput Sc Progress in Nonlinear Speech Processing = Lect. Notes. Comput. Sc. Progress in Nuclear Energy = Prog Nucl Energ Progress in Nuclear Energy = Prog. Nucl. Energ. Progress in Nuclear Energy = Prog. Nucl. Energy Progress in Nuclear Magnetic Resonance Spectroscopy = Prog. Nucl. Magn. Reson. Spectrosc. Progress in Nuclear Magnetic Resonance Spectroscopy = Prog Nucl Mag Res Sp Progress in Nuclear Magnetic Resonance Spectroscopy = Prog. Nucl. Mag. Res. Sp. Progress in nuclear medicine = Prog Nucl Med Progress in Nuclear Medicine = Prog. Nucl. Med. Progress in Nucleic Acid Research and Molecular Biology = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology = Prog. Nucleic Acid Re. Progress in nucleic acid research and molecular biology = Prog Nucleic Acid Res Mol Biol Progress in Nucleic Acid Research and Molecular Biology = Prog. Nucleic Acid Res. Mol. Biol. Progress In Nucleic Acid Research and Molecular Biology=Prog Nucleic Acid Res Mol Biol;; Progress in Nucleic Acid Research and Molecular Biology, Vol 44 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 44 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 45 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 45 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 46 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 46 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 47 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 47 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 48 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 48 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 49 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 49 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 50 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 50 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 51 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 51 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 52 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 52 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 53 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 53 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 54 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 54 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 55 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 55 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol. 56 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol. 56 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 57 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 57 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 58 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 58 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 59 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 59 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 61 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 61 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 62 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 62 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 63 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 63 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 64 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 64 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 65 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 65 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 66 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 66 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 67 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 67 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 68 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 68 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 69 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 69 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 70 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 70 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 71 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 71 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 72 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 72 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 73 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 73 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 74 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 74 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 75 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 75 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 77 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 77 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 78 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 78 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 79 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 79 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 80 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 80 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 81 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 81 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Vol 82 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Vol 82 = Prog. Nucleic Acid Re. Progress in Nucleic Acid Research and Molecular Biology, Volume 60 = Prog Nucleic Acid Re Progress in Nucleic Acid Research and Molecular Biology, Volume 60 = Prog. Nucleic Acid Re. Progress in Nutrition = Prog Nutr Progress in Nutrition = Prog. Nutr. Progress in Obesity Research 1990 = Prog Obes R Progress in Obesity Research 1990 = Prog. Obes. R. Progress in Obesity Research: 8 = Prog Obes R Progress in Obesity Research: 8 = Prog. Obes. R. Progress in Obesity Research = Prog Obes R Progress in Obesity Research = Prog. Obes. R. Progress in Occupational Epidemiology = Int Congr Ser Progress in Occupational Epidemiology = Int. Congr. Ser. Progress in Oceanography = Prog Oceanogr Progress in Oceanography = Prog. Oceanogr. Progress in Olefin Polymerization Catalysts and Polyolefin Materials, Proceedings of The First Asian Polyolefin Workshop = Stud Surf Sci Catal Progress in Olefin Polymerization Catalysts and Polyolefin Materials, Proceedings of The First Asian Polyolefin Workshop = Stud. Surf. Sci. Catal. Progress in Optics = Prog Opt Progress in Optics = Prog. Opt. Progress in Optics = Prog Optics Progress in Optics = Prog. Optics Progress in Optics, Vol 33 = Prog Optics Progress in Optics, Vol 33 = Prog. Optics. Progress in Optics, Vol 35 = Prog Optics Progress in Optics, Vol 35 = Prog. Optics. Progress in Optics, Vol. 37 = Prog Optics Progress in Optics, Vol. 37 = Prog. Optics. Progress in Optics, Vol 38 = Prog Opt Progress in Optics, Vol 38 = Prog. Opt. Progress in Optics, Vol 38 = Prog Optics Progress in Optics, Vol 38 = Prog. Optics. Progress in Optics, Vol 41 = Prog Opt Progress in Optics, Vol 41 = Prog. Opt. Progress in Optics, Vol 41 = Prog Optics Progress in Optics, Vol 41 = Prog. Optics. Progress in Optics, Vol 42 = Prog Optics Progress in Optics, Vol 42 = Prog. Optics. Progress in Optics, Vol 45 = Prog Optics Progress in Optics, Vol 45 = Prog. Optics. Progress in Optics, Vol 46 = Prog Optics Progress in Optics, Vol 46 = Prog. Optics. Progress in Optics, Vol 47 = Prog Optics Progress in Optics, Vol 47 = Prog. Optics. Progress in Optics, Vol 48 = Prog Optics Progress in Optics, Vol 48 = Prog. Optics. Progress in Optics, Vol 49 = Prog Optics Progress in Optics, Vol 49 = Prog. Optics. Progress in Optics, Vol 50 = Prog Optics Progress in Optics, Vol 50 = Prog. Optics. Progress in Optics, Vol 51 = Prog Optics Progress in Optics, Vol 51 = Prog. Optics. Progress in Optics, Vol 52 = Prog Optics Progress in Optics, Vol 52 = Prog. Optics. Progress in Optics, Vol 53 = Prog Optics Progress in Optics, Vol 53 = Prog. Optics. Progress in Optics, Vol 54 = Prog Optics Progress in Optics, Vol 54 = Prog. Optics. Progress in Optics, Volume 43 = Prog Optics Progress in Optics, Volume 43 = Prog. Optics. Progress in Optics, Vol Xl = Prog Optics Progress in Optics, Vol Xl = Prog. Optics. Progress in Optics, Vol Xxxiii = Prog Optics Progress in Optics, Vol Xxxiii = Prog. Optics. Progress in Optics, Vol Xxxii = Prog Optics Progress in Optics, Vol Xxxii = Prog. Optics. Progress in Optics, Vol Xxxix = Prog Optics Progress in Optics, Vol Xxxix = Prog. Optics. Progress in Optics, Vol Xxxvi = Prog Optics Progress in Optics, Vol Xxxvi = Prog. Optics. Progress in Optics, Vol Xxxv = Prog Opt Progress in Optics, Vol Xxxv = Prog. Opt. Progress in Optimization: Contributions From Australasia = Appl Optim Progress in Optimization: Contributions From Australasia = Appl. Optim. Progress in Optimization: Contributions From Australasia = Appl Optimizat Progress in Optimization: Contributions From Australasia = Appl. Optimizat. Progress in Organic Coatings = Prog Org Coat Progress in Organic Coatings = Prog. Org. Coat. Progress in orthodontics = Prog Orthod Progress in Pain Research and Management = Prog Pain Res Manag Progress in Pain Research and Management = Prog. Pain Res. Manag. Progress in Paper Recycling = Prog. Pap. Recycl. Progress in Particle and Nuclear Physics -book = Prog Part Nucl Phys Progress in Particle and Nuclear Physics -book = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics = Prog Part Nucl Phys Progress in Particle and Nuclear Physics = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics Series = Prog Part Nucl Phys Progress in Particle and Nuclear Physics Series = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 24 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 24 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 28 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 28 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 30 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 30 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 32 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 32 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 34 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 34 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 35 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 35 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 36 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 36 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 37 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 37 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 38 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 38 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 40 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 40 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 41 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 41 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 42 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 42 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 43 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 43 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 44 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 44 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 45, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 45, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 45 Suppl 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 45 Suppl 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 45, Supplement 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 45, Supplement 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 46, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 46, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 46 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 46 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 47, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 47, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 47 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 47 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 48 No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 48 No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 48 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 48 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 49, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 49, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 49 No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 49 No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 50, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 50, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 50, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 50, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 51, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 51, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 52, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 52, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol. 52, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol. 52, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 53, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 53, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 53, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 53, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 54, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 54, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol. 54, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol. 54, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 56, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 56, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol. 56, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol. 56, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 57, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 57, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 58, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 58, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 58, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 58, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics Vol 59, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics Vol 59, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 59, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 59, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 60, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 60, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 60, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 60, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 61, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 61, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 61, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 61, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 62, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 62, No 1 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 62, No 2 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 62, No 2 = Prog. Part. Nucl. Phys. Progress in Particle and Nuclear Physics, Vol 63, No 1 = Prog Part Nucl Phys Progress in Particle and Nuclear Physics, Vol 63, No 1 = Prog. Part. Nucl. Phys. Progress in Pattern Recognition = Adv Pattern Recognit Progress in Pattern Recognition = Adv. Pattern Recognit. Progress in Pattern Recognition = Adv Ptrn Recognit Progress in Pattern Recognition = Adv. Ptrn. Recognit. Progress in Pattern Recognition, Image Analysis and Applications = Lect Notes Comput Sc Progress in Pattern Recognition, Image Analysis and Applications = Lect. Notes. Comput. Sc. Progress in Pattern Recognition, Image Analysis and Applications, Proceedings = Lect Notes Comput Sc Progress in Pattern Recognition, Image Analysis and Applications, Proceedings = Lect. Notes. Comput. Sc. Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications = Lect Notes Comput Sc Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications = Lect. Notes. Comput. Sc. Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications, Proceedings = Lect Notes Comput Sc Progress in Pattern Recognition, Image Analysis, Computer Vision, and Applications, Proceedings = Lect. Notes. Comput. Sc. Progress in Pattern Recognition, Speech and Image Analysis = Lect Notes Comput Sc Progress in Pattern Recognition, Speech and Image Analysis = Lect. Notes. Comput. Sc. Progress in Pattern Recogniton, Image Analysis and Applications, Proceedings = Lect Notes Comput Sc Progress in Pattern Recogniton, Image Analysis and Applications, Proceedings = Lect. Notes. Comput. Sc. Progress in pediatric cardiology = Prog Pediatr Cardiol Progress in Pediatric Cardiology = Prog Pediatr Cardiol Progress in Pediatric Cardiology = Prog. Pediatr. Cardiol. Progress in pediatric surgery = Prog Pediatr Surg Progress in Pediatric Surgery = Prog. Pediatr. Surg. Progress in Perinatal Medicine = E M I Lif S Progress in Perinatal Medicine = E. M. I. Lif. S. Progress in Pharmaceutical and Biomedical Analysis = Prog Ph Bio Anal Progress in Pharmaceutical and Biomedical Analysis = Prog. Ph. Bio. Anal. Progress in Pharmacology and Clinical Pharmacology = Pr Pharm Cl Progress in Pharmacology and Clinical Pharmacology = Pr. Pharm. Cl. Progress in Photovoltaics = Prog Photovoltaics Progress in Photovoltaics = Prog. Photovoltaics Progress in Photovoltaics: Research and Applications = Prog. Photovoltaics Res. Appl. Progress in Physical Geography = Prog Phys Geog Progress in Physical Geography = Prog. Phys. Geog. Progress in Physical Geography = Prog. Phys. Geogr. Progress in Physical Organic Chemistry = Prog Phys Org Chem Progress in Physical Organic Chemistry = Prog. Phys. Org. Chem. Progress in physical therapy = Prog Phys Ther Progress in Physical Therapy = Prog. Phys. Ther. Progress in Physics = Progr. Phys. Progress in planning = Prog Plann Progress in Planning = Prog Plann Progress in Planning = Prog. Plann. Progress in Plant Cellular and Molecular Biology = Curr Plant Sci Biot Progress in Plant Cellular and Molecular Biology = Curr. Plant Sci. Biot. Progress in Plant Growth Regulation = Curr Plant Sci Biot Progress in Plant Growth Regulation = Curr. Plant Sci. Biot. Progress in Polyimide Chemistry I = Adv Polym Sci Progress in Polyimide Chemistry I = Adv. Polym. Sci. Progress in Polyimide Chemistry Ii = Adv Polym Sci Progress in Polyimide Chemistry Ii = Adv. Polym. Sci. Progress in Polymer Science = Prog Polym Sci Progress in Polymer Science = Prog. Polym. Sci. Progress in Powder Metallurgy, Pts 1 and 2 = Mater Sci Forum Progress in Powder Metallurgy, Pts 1 and 2 = Mater. Sci. Forum. Progress in Probability = Prog Probab Progress in Probability = Prog. Probab. Progress in Probability = Progr. Probab. Progress in Psychiatry Series = Prog Psych Progress in Psychiatry Series = Prog. Psych. Progress in psychobiology and physiological psychology = Prog Psychobiol Physiol Psychol Progress in Psychobiology and Physiological Psychology = Prog Psychob Physiol Progress in Psychobiology and Physiological Psychology = Prog. Psychob. Physiol. Progress in Psychobiology and Physiological Psychology, Vol 17 = Prog Psychob Physiol Progress in Psychobiology and Physiological Psychology, Vol 17 = Prog. Psychob. Physiol. Progress in Psychobiology and Physiological Psychology, Vol 18 = Prog Psychob Physiol Progress in Psychobiology and Physiological Psychology, Vol 18 = Prog. Psychob. Physiol. Progress in psychotherapy = Prog Psychother Progress in Pure and Applied Discrete Mathematics = Prog Pur Ap Discr M Progress in Pure and Applied Discrete Mathematics = Prog. Pur. Ap. Discr. M. Progress in Pure and Applied Discrete Mathematics = Progr. Pure Appl. Discrete Math. Progress in Quantum Electronics = Prog Quant Electron Progress in Quantum Electronics = Prog. Quant. Electron. Progress in Quantum Electronics = Prog. Quantum Electron. Progress in Radiation Protection = Prog Radiat Protect Progress in Radiation Protection = Prog. Radiat. Protect. Progress in radiation therapy = Prog Radiat Ther Progress in Radiopharmacy = Dev Nuc Med Progress in Radiopharmacy = Dev. Nuc. Med. Progress in Reaction Kinetics and Mechanism = Prog React Kinet Mec Progress in Reaction Kinetics and Mechanism = Prog. React. Kinet. Mec. Progress in Reaction Kinetics and Mechanism = Prog. React. Kinet. Mech. Progress in Reaction Kinetics = Prog React Kinet Progress in Reaction Kinetics = Prog. React. Kinet. Progress in Research On Energy and Protein Metabolism = Eaap Public Progress in Research On Energy and Protein Metabolism = Eaap. Public. Progress in Respiration Research = Prog R Res Progress in Respiration Research = Prog. R. Res. Progress in Respiratory Research = Prog Respir Res Progress in Respiratory Research = Prog. Respir. Res. Progress in Respiratory Research = Prog R Res Progress in Respiratory Research = Prog. R. Res. Progress in retinal and eye research = Prog Retin Eye Res Progress in Retinal and Eye Research = Prog Retin Eye Res Progress in Retinal and Eye Research = Prog. Retin. Eye Res. Progress in Retinal Research = Prog Retin Res Progress in Retinal Research = Prog. Retin. Res. Progress in Robotics, Proceedings = Comm Com Inf Sc Progress in Robotics, Proceedings = Comm. Com. Inf. Sc. Progress in Rubber Plastics and Recycling Technology = Prog Rubber Plast Re Progress in Rubber Plastics and Recycling Technology = Prog. Rubber Plast. Re. Progress in Safety Science and Technology Series = Prog Safety Sci Tech Progress in Safety Science and Technology Series = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol 4, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol 4, Pts A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol 6, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol 6, Pts A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol Iii, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol Iii, Pts A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol Ii, Pt A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol Ii, Pt A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol. Viii, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol. Viii, Pts A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol Vii, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol Vii, Pts A and B = Prog. Safety Sci. Tech. Progress in Safety Science and Technology, Vol V, Pts A and B = Prog Safety Sci Tech Progress in Safety Science and Technology, Vol V, Pts A and B = Prog. Safety Sci. Tech. Progress in Self-propagating High-temperature Synthesis = Key Eng Mat Progress in Self-propagating High-temperature Synthesis = Key. Eng. Mat. Progress in Self-propagating High-temperature Synthesis = Key Eng Mater Progress in Self-propagating High-temperature Synthesis = Key. Eng. Mater. Progress in Semiconductor Materials for Optoelectronic Applications = Mater Res Soc Symp P Progress in Semiconductor Materials for Optoelectronic Applications = Mater. Res. Soc. Symp. P. Progress in Semiconductor Materials V-novel Materials and Electronic and Optoelectronic Applications = Mater Res Soc Symp P Progress in Semiconductor Materials V-novel Materials and Electronic and Optoelectronic Applications = Mater. Res. Soc. Symp. P. Progress in Semiconductors Ii- Electronic and Optoelectronic Applications = Mater Res Soc Symp P Progress in Semiconductors Ii- Electronic and Optoelectronic Applications = Mater. Res. Soc. Symp. P. Progress in Soil Science = Progr Soil Sci Progress in Soil Science = Progr. Soil Sci. Progress in Soi Structures and Devices Operating At Extreme Conditions = Nato Sci Ser Ii-math Progress in Soi Structures and Devices Operating At Extreme Conditions = Nato. Sci. Ser. Ii-math. Progress in Soi Structures and Devices Operating At Extreme Conditions = Nato Sci Ser Ii Math Progress in Soi Structures and Devices Operating At Extreme Conditions = Nato. Sci. Ser. Ii. Math. Progress in Sol-gel Production = Key Eng Mater Progress in Sol-gel Production = Key. Eng. Mater. Progress in Solid State Chemistry = Prog Solid State Ch Progress in Solid State Chemistry = Prog. Solid State Ch. Progress in Solid State Chemistry = Prog. Solid State Chem. Progress in South American Camelids Research = Eaap Public Progress in South American Camelids Research = Eaap. Public. Progress in Spatial Analysis = Adv Spat Sci Progress in Spatial Analysis = Adv. Spat. Sci. Progress in Standardization of Aquatic Toxicity Tests = Setac Sp P Progress in Standardization of Aquatic Toxicity Tests = Setac. Sp. P. Progress in stereochemistry = Prog Stereochem Progress in String, Field and Particle Theory = Nato Sci Ser Ii Math Progress in String, Field and Particle Theory = Nato. Sci. Ser. Ii. Math. Progress in String Theory and M-theory = Nato Sci Ser Ii Math Progress in String Theory and M-theory = Nato. Sci. Ser. Ii. Math. Progress in Structural Engineering and Materials = Prog Struct Eng Mat Progress in Structural Engineering and Materials = Prog. Struct. Eng. Mat. Progress in Structural Engineering and Materials = Prog. Struct. Mater. Eng. Progress in Structural Engineering = Solid Mech Appl Progress in Structural Engineering = Solid. Mech. Appl. Progress in surface science = Prog Surf Sci Progress in Surface Science = Prog Surf Sci Progress in Surface Science = Prog. Surf. Sci. Progress in Surface Treatment = Key Eng Mater Progress in Surface Treatment = Key. Eng. Mater. Progress in surgery = Prog Surg Progress in Surgery = Prog Surg Progress in Surgery = Prog. Surg. Progress in Systems and Control Theory = Progr. Systems Control Theory Progress in Systems and Control Theory = Prog Syst C Progress in Systems and Control Theory = Prog. Syst. C. Progress in the Chemistry of Fats and Other Lipids = Prog. Chem. Fats Other Lipds Progress in the chemistry of fats and other lipids = Prog Chem Fats Other Lipids Progress in the Chemistry of Fats and Other Lipids = Prog. Chem. Fats Other Lipids Progress in The Chemistry of Organic Natural Products = Prog Chem Org Nat Pr Progress in The Chemistry of Organic Natural Products = Prog. Chem. Org. Nat. Pr. Progress in the Chemistry of Organic Natural Products = Prog. Chem. Org. Nat. Prod. Progress in The Chemistry of Organic Natural Products = Prog Ch Org Nat Prod Progress in The Chemistry of Organic Natural Products = Prog. Ch. Org. Nat. Prod. Progress in The Chemistry of Organic Natural Products, Vol 92 = Prog Chem Org Nat Pr Progress in The Chemistry of Organic Natural Products, Vol 92 = Prog. Chem. Org. Nat. Pr. Progress in The Chemistry of Organic Natural Products, Vol 93 = Prog Chem Org Nat Pr Progress in The Chemistry of Organic Natural Products, Vol 93 = Prog. Chem. Org. Nat. Pr. Progress in The Diagnosis and Treatment of Prostate Cancer = Onkol Koll Progress in The Diagnosis and Treatment of Prostate Cancer = Onkol. Koll. Progress in The Management of Endometriosis = I C S S Progress in The Management of Endometriosis = I. C. S. S. Progress in Theoretical Biology = Prog Theor Biol Progress in Theoretical Biology = Prog. Theor. Biol. Progress in Theoretical Chemistry and Physics = Prog T Chem Progress in Theoretical Chemistry and Physics = Prog. T. Chem. Progress in Theoretical Chemistry and Physics = Prog Theor Chem Phys Progress in Theoretical Chemistry and Physics = Prog. Theor. Chem. Phys. Progress in Theoretical Computer Science = Progr. Theoret. Comput. Sci. Progress in The Reduction, Refinement and Replacement of Animal Experimentation = Dev An Vet Progress in The Reduction, Refinement and Replacement of Animal Experimentation = Dev. An. Vet. Progress in The Search for Extraterrestrial Life = Astr Soc P Progress in The Search for Extraterrestrial Life = Astr. Soc. P. Progress in transplantation (Aliso Viejo, Calif.) = Prog Transplant Progress in Transplantation = Prog Transplant Progress in Transplantation = Prog. Transplant. Progress in Transportation Data 1998 = Transport Res Rec Progress in Transportation Data 1998 = Transport. Res. Rec. Progress in Transputer and Occam Research = Transput Occam Eng S Progress in Transputer and Occam Research = Transput. Occam Eng. S. Progress in Turbulence Iii = Springer Proc Phys Progress in Turbulence Iii = Springer. Proc. Phys. Progress in Turbulence Ii = Springer Proc Phys Progress in Turbulence Ii = Springer. Proc. Phys. Progress in Turbulence = Springer Proc Phys Progress in Turbulence = Springer. Proc. Phys. Progress in Ultrafast Intense Laser Science Vi = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science Vi = Springer. Ser. Chem. Ph. Progress in Ultrafast Intense Laser Science, Vol I = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science, Vol I = Springer. Ser. Chem. Ph. Progress in Ultrafast Intense Laser Science, Vol Iv = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science, Vol Iv = Springer. Ser. Chem. Ph. Progress in Ultrafast Intense Laser Science, Volume Iii = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science, Volume Iii = Springer. Ser. Chem. Ph. Progress in Ultrafast Intense Laser Science, Vol Vii = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science, Vol Vii = Springer. Ser. Chem. Ph. Progress in Ultrafast Intense Laser Science, Vol V = Springer Ser Chem Ph Progress in Ultrafast Intense Laser Science, Vol V = Springer. Ser. Chem. Ph. Progress in Variational Methods in Hamiltonian Systems and Elliptic Equations = Pitman Res Progress in Variational Methods in Hamiltonian Systems and Elliptic Equations = Pitman. Res. Progress in Vascular Biology, Hemostasis, and Thrombosis = Ann Ny Acad Sci Progress in Vascular Biology, Hemostasis, and Thrombosis = Ann. Ny. Acad. Sci. Progress in veterinary microbiology and immunology = Prog Vet Microbiol Immunol Progress in Veterinary Microbiology and Immunology = Prog. Vet. Microbiol. Immunol. Progress in Veterinary Neurology = Prog Vet Neurol Progress in Veterinary Neurology = Prog. Vet. Neurol. Progress in Water Resources = Progr Wat Resour Progress in Water Resources = Progr. Wat. Resour. Progress in Water Technology = Prog Water Technol Progress in Water Technology = Prog. Water Technol. Progress in Www Research and Development, Proceedings = Lect Notes Comput Sc Progress in Www Research and Development, Proceedings = Lect. Notes. Comput. Sc. Progress in Zeolite and Microporous Materials, Pts A-c = Stud Surf Sci Catal Progress in Zeolite and Microporous Materials, Pts A-c = Stud. Surf. Sci. Catal. Progression of Chronic Renal Diseases = Contrib Nephrol Progression of Chronic Renal Diseases = Contrib. Nephrol. Progressive Agriculture in Arizona = Prog Agr Ariz Progressive Agriculture in Arizona = Prog. Agr. Ariz. Progressive architecture = Prog Arch Progressive Architecture = Prog Archit Progressive Architecture = Prog. Archit. Progressive Development: to Mitigate The Negative Impact of Global Warming On The Semi-arid Regions = Environ Sci Eng Progressive Development: to Mitigate The Negative Impact of Global Warming On The Semi-arid Regions = Environ. Sci. Eng. Progressive Fish-culturist = Prog Fish Cult Progressive Fish-culturist = Prog. Fish. Cult. Progressive in Modern English: A Corpus-based Study of Grammaticalization and Related Changes = Lang Comput Progressive in Modern English: A Corpus-based Study of Grammaticalization and Related Changes = Lang. Comput. Progressive Nature of Renal Disease : Myths and Facts = Contrib Nephrol Progressive Nature of Renal Disease : Myths and Facts = Contrib. Nephrol. Progressive Nurse = Progress. Nurse Progress of Machining Technology = Key Eng Mat Progress of Machining Technology = Key. Eng. Mat. Progress of Machining Technology = Key Eng Mater Progress of Machining Technology = Key. Eng. Mater. Progress of Mathematics = Progr. Math. (Varanasi) Progress of Physics Research in Malaysia, Perfik2009 = Aip Conf Proc Progress of Physics Research in Malaysia, Perfik2009 = Aip. Conf. Proc. Progress of Precision Engineering and Nano Technology = Key Eng Mat Progress of Precision Engineering and Nano Technology = Key. Eng. Mat. Progress of Precision Engineering and Nano Technology = Key Eng Mater Progress of Precision Engineering and Nano Technology = Key. Eng. Mater. Progress of Superpave (superior Performing Asphalt Pavement): Evaluation and Implementation = Am Soc Test Mater Progress of Superpave (superior Performing Asphalt Pavement): Evaluation and Implementation = Am. Soc. Test. Mater. Progress of Theoretical Physics = Progr. Theoret. Phys. Progress of Theoretical Physics = Progr. Theoret. Phys. Suppl. Progress of Theoretical Physics = Prog Theor Phys Progress of Theoretical Physics = Prog. Theor. Phys. Progress of Theoretical Physics Supplement = Prog Theor Phys Supp Progress of Theoretical Physics Supplement = Prog. Theor. Phys. Supp. Progresso Medico = Progr. Med. (Napoli) Progress On Advanced Manufacture for Micro/nano Technology 2005, Pt 1 and 2 = Mater Sci Forum Progress On Advanced Manufacture for Micro/nano Technology 2005, Pt 1 and 2 = Mater. Sci. Forum. Progress On Meshless Methods = Comp Meth Appl Sci Progress On Meshless Methods = Comp. Meth. Appl. Sci. Progresso odontoiatrico = Prog Odontoiatr Progresso Odontoiatrico = Prog. Odontoiatr. Progressos da medicina = Prog Med Progress reports on health & development in Southern Africa = Prog Rep Health Dev South Afr Progressus Rei Botanicae = Progress. Rei Bot. Pro Infirmis = Pro Infirm Project and Program Management: A Competency-based Approach = Ichor Bus Books Project and Program Management: A Competency-based Approach = Ichor. Bus. Books. Project Evaluation Conference 2007 = Australas I Min Met Project Evaluation Conference 2007 = Australas. I. Min. Met. Project Governance: Implementing Corporate Governance and Business Ethics in Nonprofit Organizations = Contrib Econ Project Governance: Implementing Corporate Governance and Business Ethics in Nonprofit Organizations = Contrib. Econ. Projectile Technology = Interd Cont Projectile Technology = Interd. Cont. Project Inform perspective = Proj Inf Perspect Projecting Potential Output: Methods and Problems = Zew Econ Stud Projecting Potential Output: Methods and Problems = Zew. Econ. Stud. Projection Displays 2000: Sixth in A Series = Proc Spie Projection Displays 2000: Sixth in A Series = Proc. Spie. Projection Displays 2000: Sixth in A Series = P Soc Photo-opt Ins Projection Displays 2000: Sixth in A Series = P. Soc. Photo-opt. Ins. Projection Displays Iii = P Soc Photo-opt Ins Projection Displays Iii = P. Soc. Photo-opt. Ins. Projection Displays Ii = P Soc Photo-opt Ins Projection Displays Ii = P. Soc. Photo-opt. Ins. Projection Displays Iv = P Soc Photo-opt Ins Projection Displays Iv = P. Soc. Photo-opt. Ins. Projection Displays Ix = P Soc Photo-opt Ins Projection Displays Ix = P. Soc. Photo-opt. Ins. Projection Displays = P Soc Photo-opt Ins Projection Displays = P. Soc. Photo-opt. Ins. Projection Displays Viii = P Soc Photo-opt Ins Projection Displays Viii = P. Soc. Photo-opt. Ins. Projection Displays Vii = P Soc Photo-opt Ins Projection Displays Vii = P. Soc. Photo-opt. Ins. Projection Displays V = P Soc Photo-opt Ins Projection Displays V = P. Soc. Photo-opt. Ins. Projection Displays Xii = P Soc Photo-opt Ins Projection Displays Xii = P. Soc. Photo-opt. Ins. Projection Displays Xi = P Soc Photo-opt Ins Projection Displays Xi = P. Soc. Photo-opt. Ins. Project Management for Healthcare Informatics = Health Inform Ser Project Management for Healthcare Informatics = Health. Inform. Ser. Project Management in Libraries, Archives and Museums: Working With Government and Other External Partners = Chandos Inf Prof Ser Project Management in Libraries, Archives and Museums: Working With Government and Other External Partners = Chandos. Inf. Prof. Ser. Project Management Journal = Proj Manag J Project Management Journal = Proj. Manag. J. Project Scheduling With Time Windows and Scarce Resources = Lect Notes Econ Math Project Scheduling With Time Windows and Scarce Resources = Lect. Notes. Econ. Math. Projet = Projet Prokaryotic and Eukaryotic Heat Shock Proteins in Infectious Disease = Heat Shock Proteins Prokaryotic Symbionts in Plants = Microbiol Monogr Prokaryotic Symbionts in Plants = Microbiol. Monogr. Prolactin Gene Family and Its Receptors = Int Congr Ser Prolactin Gene Family and Its Receptors = Int. Congr. Ser. Prolactinomas, Prolactin and Weight Gain = Cancer Etiol Diagn T Prolactinomas, Prolactin and Weight Gain = Cancer. Etiol. Diagn. T. Prolegomena = Prolegomena Prolepsis and Ennoia in The Early Stoa = Sozomena-stud Recov Prolepsis and Ennoia in The Early Stoa = Sozomena-stud. Recov. Proliferation Control Regimes = Weapons Mass Destr S Proliferation Control Regimes = Weapons. Mass. Destr. S. Proliferation of International Organizations: Legal Issues = Leg A Int O Proliferation of International Organizations: Legal Issues = Leg. A. Int. O. Prologue-quarterly of The National Archives and Records Administration = Prologue Prologue-quarterly of The National Archives and Records Administration = Prologue. Prologue-quarterly of The National Archives = Prologue Prologue-quarterly of The National Archives = Prologue. Prologue (Washington, D.C.) = Prologue J Natl Arch Prometeo (Milan, Italy : 1983) = Prometeo (Milan) Prometheus. Rivista quadrimestrale di studi classici = Prometheus Promet-traffic & Transportation = Promet Promet-traffic & Transportation = Promet. Promet-traffic & Transportation = Promet-zagreb Promet-traffic & Transportation = Promet-zagreb. Promise of The Herschel Space Observatory, Proceedings = Esa Spec Publ Promise of The Herschel Space Observatory, Proceedings = Esa. Spec. Publ. Promise of The Herschel Space Observatory, Proceedings = Esa Sp Publ Promise of The Herschel Space Observatory, Proceedings = Esa. Sp. Publ. Promises and Challenges of Regenerative Medicine = E Schering Res Fdn W Promises and Challenges of Regenerative Medicine = E. Schering. Res. Fdn. W. Promising Practices for Family and Community Involvement During High School = Fam Sch Commun Part Promising Practices for Family and Community Involvement During High School = Fam. Sch. Commun. Part. Promising Practices for Partnering With Families in The Early Years = Fam Sch Commun Part Promising Practices for Partnering With Families in The Early Years = Fam. Sch. Commun. Part. Promising Practices to Support Family Involvement in Schools = Fam Sch Commun Part Promising Practices to Support Family Involvement in Schools = Fam. Sch. Commun. Part. Promoting Active Learning in The Life Science Classroom = Ann Ny Acad Sci Promoting Active Learning in The Life Science Classroom = Ann. Ny. Acad. Sci. Promoting Creativity Across The Life Span = Iss Childr Fam Lives Promoting Creativity Across The Life Span = Iss. Childr. Fam. Lives. Promoting Creativity Across The Life Span = Issues Child Fam Liv Promoting Creativity Across The Life Span = Issues. Child. Fam. Liv. Promoting Democracy and Human Rights in Russia = Basees-rout Ser Russ Promoting Democracy and Human Rights in Russia = Basees-rout. Ser. Russ. Promoting Democracy and The Rule of Law: American and European Strategies = Gov Limit State Promoting Democracy and The Rule of Law: American and European Strategies = Gov. Limit. State. Promoting health = Promot Health Promoting Health = Promot. Health Promoting Health Through Schools = Who Tech Rep Ser Promoting Health Through Schools = Who. Tech. Rep. Ser. Promoting Independence for Older Persons With Disabilities = Assist Techn Res Ser Promoting Independence for Older Persons With Disabilities = Assist. Techn. Res. Ser. Promoting Positive Development in Early Childhood: Building Blocks for A Successful Start = Search I Ser Dev Att Promoting Positive Development in Early Childhood: Building Blocks for A Successful Start = Search. I. Ser. Dev. Att. Promoting Successful and Productive Aging = Prim Prev P Promoting Successful and Productive Aging = Prim. Prev. P. Promoting Young People's Sexual Health: International Perspectives = Sex Cult Health Promoting Young People's Sexual Health: International Perspectives = Sex. Cult. Health. Promotion Dentaire = Promot. Dent. Promotion & education = Promot Educ Promotion et Education = Promot. Educ. Promotion of Cooperation Among Research and Development Organizations in The Field of Vocational Training : 1989 = Cedefop Doc Promotion of Cooperation Among Research and Development Organizations in The Field of Vocational Training : 1989 = Cedefop. Doc. Promotion of Cooperation Amongst Research and Development Organizations in The Field of Vocational Training : 1988 = Cedefop Doc Promotion of Cooperation Amongst Research and Development Organizations in The Field of Vocational Training : 1988 = Cedefop. Doc. Prompt Corrective Action in Banking: 10 Years Later = Res Fin Serv Prompt Corrective Action in Banking: 10 Years Later = Res. Fin. Serv. Proof and Other Dilemmas: Mathematics and Philosophy = Spectr Ser Proof and Other Dilemmas: Mathematics and Philosophy = Spectr. Ser. Proof and System-reliability = Nato Sci Ser Ii-math Proof and System-reliability = Nato. Sci. Ser. Ii-math. Proof and System-reliability = Nato Sci Ser Ii Math Proof and System-reliability = Nato. Sci. Ser. Ii. Math. Prooftexts-a Journal of Jewish Literary History = Prooftexts Prooftexts-a Journal of Jewish Literary History = Prooftexts. Proof Theory for Fuzzy Logics = Appl Log Ser Proof Theory for Fuzzy Logics = Appl. Log. Ser. Proof Theory of Modal Logic = Appl Log Ser Proof Theory of Modal Logic = Appl. Log. Ser. Proof Theory: The First Step Into Impredicativity = Universitext Proof Theory: The First Step Into Impredicativity = Universitext. Propaganda and Information Warfare in The Twenty-first Century: Altered Images and Deception Operations = Contemp Secur Stud Propaganda and Information Warfare in The Twenty-first Century: Altered Images and Deception Operations = Contemp. Secur. Stud. Propaganda, The Press and Conflict: The Gulf War and Kosovo = Contemp Secur Stud Propaganda, The Press and Conflict: The Gulf War and Kosovo = Contemp. Secur. Stud. Propagated Fish in Resource Management = Am Fish S S Propagated Fish in Resource Management = Am. Fish S. S. Propagation and Imaging Through The Atmosphere Iii = Proc Spie Propagation and Imaging Through The Atmosphere Iii = Proc. Spie. Propagation and Imaging Through The Atmosphere Iii = P Soc Photo-opt Ins Propagation and Imaging Through The Atmosphere Iii = P. Soc. Photo-opt. Ins. Propagation and Imaging Through The Atmosphere Ii = P Soc Photo-opt Ins Propagation and Imaging Through The Atmosphere Ii = P. Soc. Photo-opt. Ins. Propagation and Imaging Through The Atmosphere Iv = P Soc Photo-opt Ins Propagation and Imaging Through The Atmosphere Iv = P. Soc. Photo-opt. Ins. Propagation and Imaging Through The Atmosphere = P Soc Photo-opt Ins Propagation and Imaging Through The Atmosphere = P. Soc. Photo-opt. Ins. Propagation Effects of Very Low Frequency Radio Waves = Aip Conf Proc Propagation Effects of Very Low Frequency Radio Waves = Aip. Conf. Proc. Propagation Engineering : Fourth in A Series = P Soc Photo-opt Ins Propagation Engineering : Fourth in A Series = P. Soc. Photo-opt. Ins. Propagation Engineering : Third in A Series = P Soc Photo-opt Ins Propagation Engineering : Third in A Series = P. Soc. Photo-opt. Ins. Propagation of High-energy Laser Beams Through The Earths Atmosphere Ii = P Soc Photo-opt Ins Propagation of High-energy Laser Beams Through The Earths Atmosphere Ii = P. Soc. Photo-opt. Ins. Propagation of High-energy Laser Beams Through The Earths Atmosphere = P Soc Photo-opt Ins Propagation of High-energy Laser Beams Through The Earths Atmosphere = P. Soc. Photo-opt. Ins. Propagation of Ornamental Plants = Propag Ornam Plants Propagation of Ornamental Plants = Propag. Ornam. Plants Propellants and Explosives = Propellants Explos Propellants and Explosives = Propellants Explos. Propellants, Explosives, Pyrotechnics = Propellants Explos. Pyrotech. Propellants, Explosives, Pyrotechnics = Propellants, Explos., Pyrotech. Propellants Explosives Pyrotechnics = Propell Explos Pyrot Propellants Explosives Pyrotechnics = Propell. Explos. Pyrot. Proper Motions and Galactic Astronomy = Astr Soc P Proper Motions and Galactic Astronomy = Astr. Soc. P. Properties and Applications of Nanocrystalline Alloys From Amorphous Precursors = Nato Sci Ser Ii-math Properties and Applications of Nanocrystalline Alloys From Amorphous Precursors = Nato. Sci. Ser. Ii-math. Properties and Applications of Nanocrystalline Alloys From Amorphous Precursors = Nato Sci Ser Ii Math Properties and Applications of Nanocrystalline Alloys From Amorphous Precursors = Nato. Sci. Ser. Ii. Math. Properties and Applications of Thermoelectric Materials = Nato Science Peace S Properties and Applications of Thermoelectric Materials = Nato. Science. Peace. S. Properties and Applications of Thermoelectric Materials = Nato Sci Peace Sec B Properties and Applications of Thermoelectric Materials = Nato. Sci. Peace. Sec. B. Properties and Characteristics of Optical Glass Iii = P Soc Photo-opt Ins Properties and Characteristics of Optical Glass Iii = P. Soc. Photo-opt. Ins. Properties and Characteristics of Optical Glass Ii = P Soc Photo-opt Ins Properties and Characteristics of Optical Glass Ii = P. Soc. Photo-opt. Ins. Properties and Chemistry of Biomolecular Systems = T Molec Org Properties and Chemistry of Biomolecular Systems = T. Molec. Org. Properties and Performance of Natural-fibre Composites = Woodhead Publ Mater Properties and Performance of Natural-fibre Composites = Woodhead. Publ. Mater. Properties and Processing of Vapor-deposited Coatings = Mater Res Soc Symp P Properties and Processing of Vapor-deposited Coatings = Mater. Res. Soc. Symp. P. Properties of Earth and Planetary Materials At High Pressure and Temperature = Geoph Monog Series Properties of Earth and Planetary Materials At High Pressure and Temperature = Geoph. Monog. Series. Properties of Fresh Concrete = Rilem Proc Properties of Fresh Concrete = Rilem. Proc. Properties of Ii-vi Semiconductors : Bulk Crystals, Epitaxial Films, Quantum Well Structures, and Dilute Magnetic Systems = Mater Res Soc Symp P Properties of Ii-vi Semiconductors : Bulk Crystals, Epitaxial Films, Quantum Well Structures, and Dilute Magnetic Systems = Mater. Res. Soc. Symp. P. Properties of Metal Nanostructures = P Soc Photo-opt Ins Properties of Metal Nanostructures = P. Soc. Photo-opt. Ins. Properties of Structural Materials in Liquid Metal Environment = K F K Reports Properties of Structural Materials in Liquid Metal Environment = K. F. K. Reports. Property in Question: Value Transformation in The Global Economy = Wenner-gr C Property in Question: Value Transformation in The Global Economy = Wenner-gr. C. Property: Meanings, Histories, Theories = Crit Approach Law Property: Meanings, Histories, Theories = Crit. Approach. Law. Property Problems: From Genes to Pension Funds = Wg Hart Leg Worksh S Property Problems: From Genes to Pension Funds = Wg. Hart. Leg. Worksh. S. Property Relations, Incentives and Welfare = Iea Conf Vol Property Relations, Incentives and Welfare = Iea. Conf. Vol. Property Testing: Current Reseach and Surveys = Lect Notes Comput Sc Property Testing: Current Reseach and Surveys = Lect. Notes. Comput. Sc. Prophecy in The Ancient Near Eastern Context = Sbl Symp Ser Prophecy in The Ancient Near Eastern Context = Sbl. Symp. Ser. Prophecy in The Book of Jeremiah = Beih Z Alttest Wiss Prophecy in The Book of Jeremiah = Beih. Z. Alttest. Wiss. Prophylaxie Sanitaire et Morale = Prophyl. Sanit. Morale Pro-poor Macroeconomics: Potential and Limitations = Soc Policy Dev Conte Pro-poor Macroeconomics: Potential and Limitations = Soc. Policy. Dev. Conte. Proportional Hazards Regression = Stat Biol Health Proportional Hazards Regression = Stat. Biol. Health. Proportional Optimization and Fairness = Int Ser Oper Res Man Proportional Optimization and Fairness = Int. Ser. Oper. Res. Man. Proprotein Convertases = Methods Mol Biol Proprotein Convertases = Methods. Mol. Biol. Propyläen Kunstgeschichte = PKG Pro re nata PRN : the official publication of the Utah Nurses' Association = Pro Re Nata Pro Re Nata = Pro Re Nata Prose studies = Prose Stud Prosodic Categories: Production, Perception and Comprehension = Stud Nat Lang Lingui Prosodic Categories: Production, Perception and Comprehension = Stud. Nat. Lang. Lingui. Prosodic Phonology = Stud Generat Gramm Prosodic Phonology = Stud. Generat. Gramm. Prosodies: With Special Reference to Iberian Languages = Phonol Phonet Prosodies: With Special Reference to Iberian Languages = Phonol. Phonet. Prosopographia Imperii Romani = LPIR Prospects for Amino Acid Biosynthesis Inhibitors in Crop Protection and Pharmaceutical Chemistry = Br Crop Pr Prospects for Amino Acid Biosynthesis Inhibitors in Crop Protection and Pharmaceutical Chemistry = Br. Crop Pr. Prospects for Artificial Intelligence = Fr Art Int Prospects for Artificial Intelligence = Fr. Art. Int. Prospects for A Sustainable Dairy Sector in The Mediterranean = Eaap Public Prospects for A Sustainable Dairy Sector in The Mediterranean = Eaap. Public. Prospects for Automatic Milking = Eaap Public Prospects for Automatic Milking = Eaap. Public. Prospects for Hardware Foundations = Lect Notes Comput Sc Prospects for Hardware Foundations = Lect. Notes. Comput. Sc. Prospects for Saline Agriculture = Tasks Veg Sci Prospects for Saline Agriculture = Tasks. Veg. Sci. Prospects for Saline Agriculture = Task Veg Sc Prospects for Saline Agriculture = Task. Veg. Sc. Prospects in Diagnosis and Treatment of Breast Cancer = Int Congr Ser Prospects in Diagnosis and Treatment of Breast Cancer = Int. Congr. Ser. Prospects in Mathematical Physics = Contemp Math Prospects in Mathematical Physics = Contemp. Math. Prospects in Topology = Ann Math Stud Prospects in Topology = Ann. Math. Stud. Prospects of Buffalo Production in The Mediterranean and The Middle East = Eaap Public Prospects of Buffalo Production in The Mediterranean and The Middle East = Eaap. Public. Prospects = Prospects Prospektrichtlinie Und Prospektverordnung: Eine Dogmatische, Okonomische Und Rechtsvergleichende Analyse = Schr Eur Int Priv B Prospektrichtlinie Und Prospektverordnung: Eine Dogmatische, Okonomische Und Rechtsvergleichende Analyse = Schr. Eur. Int. Priv. B. Prospettiva-rivista Di Storia Dell Arte Antica E Moderna = Prospettiva Prospettiva-rivista Di Storia Dell Arte Antica E Moderna = Prospettiva. Prospettiva. Rivista di storia dell’arte antica e moderna = Prospettiva Prospezioni archeologiche. Quaderni = ProspAQuad Prospezioni. Bollettino di informazioni scientifiche = Prospezioni Prostacyclin : New Perspectives for Basic Research and Novel Therapeutic Indications = Int Congr Ser Prostacyclin : New Perspectives for Basic Research and Novel Therapeutic Indications = Int. Congr. Ser. Prostaglandin E1 in Vascular Disease = J Vasc Dis Prostaglandin E1 in Vascular Disease = J. Vasc. Dis. Prostaglandins and Control of Vascular Smooth Muscle Cell Proliferation = Agent Action Suppl Prostaglandins and Control of Vascular Smooth Muscle Cell Proliferation = Agent. Action. Suppl. Prostaglandins and medicine = Prostaglandins Med Prostaglandins and Medicine = Prostaglandins Med. Prostaglandins and Medicine = Prostag Leukotr Ess Prostaglandins and Medicine = Prostag. Leukotr. Ess. Prostaglandins and Other Lipid Mediators = Prostaglandins Other Lipid Mediat. Prostaglandins and Related Compounds = Adv Prostag Thromb L Prostaglandins and Related Compounds = Adv. Prostag. Thromb. L. Prostaglandins and Related Compounds, Vols A and B = Adv Prostag Thromb L Prostaglandins and Related Compounds, Vols A and B = Adv. Prostag. Thromb. L. Prostaglandins: Biochemistry, Functions, Types and Roles = Cell Bio Res Prog Prostaglandins: Biochemistry, Functions, Types and Roles = Cell. Bio. Res. Prog. Prostaglandins, leukotrienes, and essential fatty acids = Prostaglandins Leukot Essent Fatty Acids Prostaglandins Leukotrienes and Essential Fatty Acids=Prostaglandins Leukot Essent Fatty Acids;; Prostaglandins Leukotrienes and Essential Fatty Acids = Prostaglandins Leukot. Essent. Fatty Acids Prostaglandins, Leukotrienes and Essential Fatty Acids = Prostaglandins, Leukotrienes Essent. Fatty Acids Prostaglandins Leukotrienes and Essential Fatty Acids = Prostag Leukotr Ess Prostaglandins Leukotrienes and Essential Fatty Acids = Prostag. Leukotr. Ess. Prostaglandins, leukotrienes, and medicine = Prostaglandins Leukot Med Prostaglandins, Leukotrienes and Medicine = Prostaglandins. Leukot. Med. Prostaglandins Leukotrienes and Medicine = Prostag Leukotr Ess Prostaglandins Leukotrienes and Medicine = Prostag. Leukotr. Ess. Prostaglandins Leukotrienes and Medicine = Prosta Leukotr Med Prostaglandins Leukotrienes and Medicine = Prosta. Leukotr. Med. Prostaglandins & other lipid mediators = Prostaglandins Other Lipid Mediat Prostaglandins & Other Lipid Mediators = Prostaglandins Other Lipid Mediators Prostaglandins & Other Lipid Mediators = Prostag Oth Lipid M Prostaglandins & Other Lipid Mediators = Prostag. Oth. Lipid M. Prostaglandins = Prostagl Prostaglandins = Prostagl. Prostaglandins=Prostaglandins;; Prostaglandins = Prostaglandins Prostanoids and Drugs = Nato Adv Sci I A-lif Prostanoids and Drugs = Nato. Adv. Sci. I. A-lif. Prostate Biopsy: Indications, Techniques, and Complications = Curr Clin Urol Prostate Biopsy: Indications, Techniques, and Complications = Curr. Clin. Urol. Prostate Cancer and Bone Metastasis = Adv Exp Med Biol Prostate Cancer and Bone Metastasis = Adv. Exp. Med. Biol. Prostate Cancer and Prostatic Diseases = Prostate Cancer P D Prostate Cancer and Prostatic Diseases = Prostate Cancer P. D. Prostate cancer and prostatic diseases = Prostate Cancer Prostatic Dis Prostate Cancer Imaging: Computer-aided Diagnosis, Prognosis, and Intervention = Lect Notes Comput Sc Prostate Cancer Imaging: Computer-aided Diagnosis, Prognosis, and Intervention = Lect. Notes. Comput. Sc. Prostate Cancer = Radiat Med Rounds Prostate Cancer = Radiat. Med. Rounds. Prostate Cancer: Signaling Networks, Genetics, and New Treatment Stategies = Curr Clin Oncol Prostate Cancer: Signaling Networks, Genetics, and New Treatment Stategies = Curr. Clin. Oncol. Prostate=Prostate;; Prostate = Prostate Prostate. Supplement=Prostate Suppl;; Prostate. Supplement = Prostate. Suppl. Prosthetics and orthotics international = Prosthet Orthot Int Prosthetics and Orthotics International=Prosthet Orthot Int;; Prosthetics and Orthotics International = Prosthet Orthot Int Prosthetics and Orthotics International = Prosthet. Orthot. Int. Prostituidas Por El Texto: Discurso Prostibulario En La Picaresca Femenina = Purdue Stud Roman Li Prostituidas Por El Texto: Discurso Prostibulario En La Picaresca Femenina = Purdue. Stud. Roman. Li. Prostor = Prostor Prostrate Cancer and Testicular Cancer = Prog Clin Biol Res Prostrate Cancer and Testicular Cancer = Prog. Clin. Biol. Res. Protcols for Neural Cell Culture, Fourth Edition = Springer Protoc Hand Protcols for Neural Cell Culture, Fourth Edition = Springer. Protoc. Hand. Protease Inhibitors = Int Congr Ser Protease Inhibitors = Int. Congr. Ser. Proteases and Protease Inhibitors in Alzheimers Disease Pathogenesis = Ann Ny Acad Sci Proteases and Protease Inhibitors in Alzheimers Disease Pathogenesis = Ann. Ny. Acad. Sci. Proteases and The Regulation of Biological Processes = Biochem Soc Symp Proteases and The Regulation of Biological Processes = Biochem. Soc. Symp. Proteases in Biology and Disease = Proteases Biol Dis Proteases in Biology and Disease = Proteases Biol. Dis. Proteases in Biology and Medicine = Essays Biochem Proteases in Biology and Medicine = Essays. Biochem. Proteasome-ubiquitin Protein Degradation Pathway = Curr Top Microbiol Proteasome-ubiquitin Protein Degradation Pathway = Curr. Top. Microbiol. Protected Areas and The Regional Planning Imperative in North America = Pk Herit Ser Protected Areas and The Regional Planning Imperative in North America = Pk. Herit. Ser. Protected Cultivation 2002: in Search of Structures, Systems and Plant Materials for Sustainable Greenhouse Production = Acta Hortic Protected Cultivation 2002: in Search of Structures, Systems and Plant Materials for Sustainable Greenhouse Production = Acta. Hortic. Protected Land: Disturbance, Stress, and American Ecosystem Management = Springer Ser Env Man Protected Land: Disturbance, Stress, and American Ecosystem Management = Springer. Ser. Env. Man. Protecting Danube River Basin Resources = Nato Asi 2 Protecting Danube River Basin Resources = Nato. Asi. 2. Protecting human subjects = Prot Hum Subj Protecting Infants Through Human Milk = Adv Exp Med Biol Protecting Infants Through Human Milk = Adv. Exp. Med. Biol. Protecting Persons While Protecting The People = Lect Notes Comput Sc Protecting Persons While Protecting The People = Lect. Notes. Comput. Sc. Protection de la nature = Prot. nat. Protection Ecology = Prot Ecol Protection Ecology = Prot. Ecol. Protection of Civilian Infrastructure From Acts of Terrorism = Nato Sci Peace Secur Protection of Civilian Infrastructure From Acts of Terrorism = Nato. Sci. Peace. Secur. Protection of Materials and Structures From Space Environment = Aip Conf Proc Protection of Materials and Structures From Space Environment = Aip. Conf. Proc. Protection of Materials and Structures From Space Environment = Space Technol Proc Protection of Materials and Structures From Space Environment = Space Technol. Proc. Protection of Materials and Structures From The Space Environment = Space Technol Proc Protection of Materials and Structures From The Space Environment = Space Technol. Proc. Protection of Metals and Physial Chemistry of Surfaces = Prot. Met. Phys. Chem. Surf. Protection of Metals and Physical Chemistry of Surfaces = Prot Met Phys Chem+ Protection of Metals and Physical Chemistry of Surfaces = Prot. Met. Phys. Chem+.+ Protection of Metals = Prot Met+ Protection of Metals = Prot. Met. Protection of Metals = Prot. Met+.+ Protection of Minorities in The Wider Europe = Palgrave Stud Eur Un Protection of Minorities in The Wider Europe = Palgrave. Stud. Eur. Un. Protection of Space Materials From The Space Environment = Space Technol Proc Protection of Space Materials From The Space Environment = Space Technol. Proc. Protection of The Environment From Ionising Radiation = Iaea Conf Symp Pap Protection of The Environment From Ionising Radiation = Iaea. Conf. Symp. Pap. Protection of Well-known Marks in Asia = Max Planck Series Protection of Well-known Marks in Asia = Max. Planck. Series. Protective and Pathological Immune Responses in The Cns = Curr Top Microbiol Protective and Pathological Immune Responses in The Cns = Curr. Top. Microbiol. Protective Cultures, Antimicrobial Metabolites and Bacteriophages for Food and Beverage Biopreservation = Woodhead Publ Food S Protective Cultures, Antimicrobial Metabolites and Bacteriophages for Food and Beverage Biopreservation = Woodhead. Publ. Food S. Protective Devices: Types, Uses and Safety = Saf Risk Soc Protective Devices: Types, Uses and Safety = Saf. Risk. Soc. Protective Relaying of Power Systems Using Mathematical Morphology = Power Syst Protective Relaying of Power Systems Using Mathematical Morphology = Power Syst. Protective Strategies for Neurodegenerative Diseases = Ann Ny Acad Sci Protective Strategies for Neurodegenerative Diseases = Ann. Ny. Acad. Sci. Protein and Amino Acid Requirements in Human Nutrition: Report of A Joint Who/fao/unu Expert Consultation = Who Tech Rep Ser Protein and Amino Acid Requirements in Human Nutrition: Report of A Joint Who/fao/unu Expert Consultation = Who. Tech. Rep. Ser. Protein and Energy Requirements in Infancy and Childhood = Nestle Nutr Works Se Protein and Energy Requirements in Infancy and Childhood = Nestle. Nutr. Works. Se. Protein and Peptide Letters = Protein Peptide Lett Protein and Peptide Letters = Protein Peptide Lett. Protein and peptide letters = Protein Pept Lett Protein and Pharmaceutical Engineering = Ucla Sym Bi Protein and Pharmaceutical Engineering = Ucla. Sym. Bi. Protein Biochemistry Synthesis Structure and Cellular Functions = Protein Biochem Synt Protein Biochemistry Synthesis Structure and Cellular Functions = Protein Biochem. Synt. Protein Blotting and Detection: Methods and Protocols = Methods Mol Biol Protein Blotting and Detection: Methods and Protocols = Methods Mol. Biol. Protein C and Related Anticoagulants = Adv Ap Biot Protein C and Related Anticoagulants = Adv. Ap. Biot. Protein Chromatography: Methods and Protocols = Methods Mol Biol Protein Chromatography: Methods and Protocols = Methods Mol. Biol. Protein Complexes That Modify Chromatin = Curr Top Microbiol Protein Complexes That Modify Chromatin = Curr. Top. Microbiol. Protein Conformation = Ciba F Symp Protein Conformation = Ciba. F. Symp. Protein Design and The Development of New Therapeutics and Vaccines = N Horiz Th Protein Design and The Development of New Therapeutics and Vaccines = N. Horiz. Th. Protein Discovery Technologies = Drug Discov Ser Protein Discovery Technologies = Drug. Discov. Ser. Protein Dynamics, Function, and Design = Nato Adv Sci I A-lif Protein Dynamics, Function, and Design = Nato. Adv. Sci. I. A-lif. Protein Engineering, Design and Selection = Protein Eng. Des. Sel. Protein Engineering: Design, Selection and Applications = Protein Biochem Synt Protein Engineering: Design, Selection and Applications = Protein Biochem. Synt. Protein engineering, design & selection : PEDS = Protein Eng Des Sel Protein Engineering Design & Selection = Protein Eng Des Sel Protein Engineering Design & Selection = Protein Eng. Des. Sel. Protein Engineering, Design & Selection = Protein Eng. Des. Sel. Protein Engineering, Design & Selection = Protein Eng., Des. Sel. Protein Engineering = Method Enzymol Protein Engineering = Method. Enzymol. Protein engineering = Protein Eng Protein Engineering=Protein Eng;; Protein Engineering = Protein Eng Protein Engineering = Protein Eng. Protein Expression and Purification = Protein Expres Purif Protein Expression and Purification = Protein Expres. Purif. Protein Expression and Purification = Protein Expression Purif. Protein expression and purification = Protein Expr Purif Protein Expression and Purification=Protein Expr Purif;; Protein Expression and Purification = Protein Expr. Purif. Protein & Fat Globule Modifications By Heat Treatment, Homogenization & Other Technological Means for High Quality Dairy Products = Int Dairy F Protein & Fat Globule Modifications By Heat Treatment, Homogenization & Other Technological Means for High Quality Dairy Products = Int. Dairy F. Protein Feed for Animal Production = Eaap Tech Protein Feed for Animal Production = Eaap. Tech. Protein Folding = Acs Sym Ser Protein Folding = Acs. Sym. Ser. Protein Folding, Evolution and Design = Nato Sci Ser I Life Protein Folding, Evolution and Design = Nato. Sci. Ser. I. Life. Protein Folding in The Cell = Adv Protein Chem Protein Folding in The Cell = Adv. Protein Chem. Protein Folding, Misfolding, and Disease: Methods and Protocols = Methods Mol Biol Protein Folding, Misfolding, and Disease: Methods and Protocols = Methods Mol. Biol. Protein Functionality in Food Systems = Ift Bas Sym Protein Functionality in Food Systems = Ift. Bas. Sym. Protein Glycosylation : Cellular, Biotechnological and Analytical Aspects = Gbf Monog Series Protein Glycosylation : Cellular, Biotechnological and Analytical Aspects = Gbf. Monog. Series. Protein in Food and Human Nutrition = Wiss Sch Er Protein in Food and Human Nutrition = Wiss. Sch. Er. Protein Journal = Protein J Protein Journal = Protein J. Protein Kinase A and Human Disease = Ann Ny Acad Sci Protein Kinase A and Human Disease = Ann. Ny. Acad. Sci. Protein Kinase C and Its Brain Substrates : Role in Neuronal Growth and Plasticity = Prog Brain Res Protein Kinase C and Its Brain Substrates : Role in Neuronal Growth and Plasticity = Prog. Brain Res. Protein Metabolism and Homeostasis in Aging = Adv Exp Med Biol Protein Metabolism and Homeostasis in Aging = Adv. Exp. Med. Biol. Protein Metabolism and Nutrition = Eaap Public Protein Metabolism and Nutrition = Eaap. Public. Protein Metabolism During Infancy = Nestle Nutr Works Se Protein Metabolism During Infancy = Nestle. Nutr. Works. Se. Protein Microarray for Disease Analysis: Methods and Protocols = Methods Mol Biol Protein Microarray for Disease Analysis: Methods and Protocols = Methods Mol. Biol. Protein Microarrays: Methods and Protocols = Methods Mol Biol Protein Microarrays: Methods and Protocols = Methods Mol. Biol. Protein Misfolding and Cellular Stress in Disease and Aging: Concepts and Protocols = Methods Mol Biol Protein Misfolding and Cellular Stress in Disease and Aging: Concepts and Protocols = Methods. Mol. Biol. Protein Modules and Protein-protein Interactions = Adv Protein Chem Protein Modules and Protein-protein Interactions = Adv. Protein Chem. Protein Modules in Cellular Signalling = Nato Sci S A Lif Sci Protein Modules in Cellular Signalling = Nato. Sci. S. A. Lif. Sci. Protein Modules in Signal Transduction = Curr Top Microbiol Protein Modules in Signal Transduction = Curr. Top. Microbiol. Protein Networks and Pathway Analysis = Methods Mol Biol Protein Networks and Pathway Analysis = Methods. Mol. Biol. Protein & Peptide Letters = Protein Pept. Lett. Protein Phosphatases = Method Enzymol Protein Phosphatases = Method. Enzymol. Protein profile = Protein Profile Protein Profile = Protein Profile Protein - Protein Interaction = Adv Biochem Eng Biot Protein - Protein Interaction = Adv. Biochem. Eng. Biot. Protein-protein Interactions = Biochem Res Trends Protein-protein Interactions = Biochem. Res. Trends. Protein Protocols Handbook, Third Edition = Springer Protoc Hand Protein Protocols Handbook, Third Edition = Springer. Protoc. Hand. Protein Purification // = Acs Sym Ser Protein Purification // = Acs. Sym. Ser. Protein Refolding = Acs Sym Ser Protein Refolding = Acs. Sym. Ser. Protein Reviews on the Web = Protein Rev. Web Protein Reviews = Protein Rev Protein Reviews = Protein Rev. Proteins and Cell Regulation = Proteins Cell Reg Proteins and Cell Regulation = Proteins Cell Reg. Proteins and Cell Regulation = Proteins Cell Regul Proteins and Cell Regulation = Proteins Cell Regul. Proteins At Interfaces Ii = Acs Sym Ser Proteins At Interfaces Ii = Acs. Sym. Ser. Protein Science and Engineering = Protein Sci Eng Protein Science and Engineering = Protein Sci. Eng. Protein science : a publication of the Protein Society = Protein Sci Protein Science-crc = Protein Sci-crc Protein Science-crc = Protein Sci-crc. Protein Science=Protein Sci;; Protein Science = Protein Sci Protein Science = Protein Sci. Protein Secretion: Methods and Protocols = Methods Mol Biol Protein Secretion: Methods and Protocols = Methods Mol. Biol. Protein Sensors and Reactive Oxygen Species, Pt A, Selenoproteins and Thioredoxin = Method Enzymol Protein Sensors and Reactive Oxygen Species, Pt A, Selenoproteins and Thioredoxin = Method. Enzymol. Protein Sensors and Reactive Oxygen Species, Pt A, Selenoproteins and Thioredoxin = Methods Enzymol Protein Sensors and Reactive Oxygen Species, Pt A, Selenoproteins and Thioredoxin = Methods. Enzymol. Protein Sensors and Reactive Oxygen Species, Pt B, Thiol Enzymes and Proteins = Method Enzymol Protein Sensors and Reactive Oxygen Species, Pt B, Thiol Enzymes and Proteins = Method. Enzymol. Protein Sensors and Reactive Oxygen Species, Pt B, Thiol Enzymes and Proteins = Methods Enzymol Protein Sensors and Reactive Oxygen Species, Pt B, Thiol Enzymes and Proteins = Methods. Enzymol. Protein Sequences and Data Analysis = Protein Seq. Data Anal. Protein sequences & data analysis = Protein Seq Data Anal Protein Simulations = Adv Protein Chem Protein Simulations = Adv. Protein Chem. Proteins in Eukaryotic Transcription = Adv Protein Chem Proteins in Eukaryotic Transcription = Adv. Protein. Chem. Proteins: Membrane Binding and Pore Formation = Adv Exp Med Biol Proteins: Membrane Binding and Pore Formation = Adv. Exp. Med. Biol. Proteins=Proteins;; Proteins = Proteins Proteins-structure Function and Bioinformatics = Proteins Proteins-structure Function and Bioinformatics = Proteins. Proteins: Structure, Function, and Bioinformatics = Proteins: Struct., Funct., Bioinf. Proteins: Structure, FUnction, and Bioinformatics = Proteins Struct. Funct. Bioinf. Proteins-structure Function and Genetics = Proteins Proteins-structure Function and Genetics = Proteins. Proteins: Structure, Function, and Genetics = Proteins: Struct., Funct., Genet. Protein Structure Analysis = Spring Lab Man Protein Structure Analysis = Spring. Lab. Man. Protein Structure and Engineering = Nato Adv Sci I A-lif Protein Structure and Engineering = Nato. Adv. Sci. I. A-lif. Protein Structure, Prediction and Design = Biochem Soc Symp Protein Structure, Prediction and Design = Biochem. Soc. Symp. Proteolysis and Protein Turnover = Portl Pr P Proteolysis and Protein Turnover = Portl. Pr. P. Proteolysis in Cell Functions = Biom Hlth R Proteolysis in Cell Functions = Biom. Hlth. R. Proteolytic Enzymes: Aspartic and Metallo Peptidases = Method Enzymol Proteolytic Enzymes: Aspartic and Metallo Peptidases = Method. Enzymol. Proteolytic Enzymes in Coagulation, Fibrinolysis, and Complement Activation, Part A = Method Enzymol Proteolytic Enzymes in Coagulation, Fibrinolysis, and Complement Activation, Part A = Method. Enzymol. Proteolytic Enzymes in Coagulation, Fibrinolysis, and Complement Activation, Part B = Method Enzymol Proteolytic Enzymes in Coagulation, Fibrinolysis, and Complement Activation, Part B = Method. Enzymol. Proteolytic Enzymes: Serine and Cysteine Peptidases = Method Enzymol Proteolytic Enzymes: Serine and Cysteine Peptidases = Method. Enzymol. Proteome Bioinformatics = Methods Mol Biol Proteome Bioinformatics = Methods. Mol. Biol. Proteome Characterization and Proteomics = Adv Protein Chem Proteome Characterization and Proteomics = Adv. Protein. Chem. Proteome science = Proteome Sci Proteome Science = Proteome Sci Proteome Science = Proteome Sci. Proteomics Clinical Applications = Proteom Clin Appl Proteomics Clinical Applications = Proteom. Clin. Appl. Proteomics: Clinical Applications = Proteomics: Clin. Appl. Proteomics in Nephrology = Contrib Nephrol Proteomics in Nephrology = Contrib. Nephrol. Proteomics in Nephrology - Towards Clinical Applications = Contrib Nephrol Proteomics in Nephrology - Towards Clinical Applications = Contrib. Nephrol. Proteomics = Proteomics Proterozoic Tectonic Evolution of The Grenville Orogen in North America = Geol Soc Am Mem Proterozoic Tectonic Evolution of The Grenville Orogen in North America = Geol. Soc. Am. Mem. Protesista Dental = Protes. Dent. Protest and Issues Around The Air Force Refueling Tanker = Def Secur Strateg Protest and Issues Around The Air Force Refueling Tanker = Def. Secur. Strateg. Protestant Missionaries, Asian Immigrants, and Ideologies of Race in America, 1850-1924 = Stud Asian Am Protestant Missionaries, Asian Immigrants, and Ideologies of Race in America, 1850-1924 = Stud. Asian Am. Protest, Repression and Political Regimes: An Empirical Analysis of Latin America and Sub-saharan Africa = Secur Gov Protest, Repression and Political Regimes: An Empirical Analysis of Latin America and Sub-saharan Africa = Secur. Gov. Protetyka stomatologiczna = Protet Stomatol Protetyka Stomatologiczna = Protet. Stomatol. Proteus = Proteus Proteus (Shippensburg, Pa.) = Proteus Protides of The Biological Fluids = Protides B Protides of The Biological Fluids = Protides B. Protides of the Biological Fluids = Protides Biol. Fluids Protides of The Biological Fluids, Vol 36 = Protides B Protides of The Biological Fluids, Vol 36 = Protides B. Protistologica = Protistologica Protist = Protist Protocol Politics: The Globalization of Internet Governance = Inform Revol Glob Po Protocol Politics: The Globalization of Internet Governance = Inform. Revol. Glob. Po. Protocols and Systems for Interactive Distributed Multimedia, Proceedings = Lect Notes Comput Sc Protocols and Systems for Interactive Distributed Multimedia, Proceedings = Lect. Notes. Comput. Sc. Protocols for Adult Stem Cells = Methods Mol Biol Protocols for Adult Stem Cells = Methods. Mol. Biol. Protocols for High Speed Networks, Proceedings = Lect Notes Comput Sc Protocols for High Speed Networks, Proceedings = Lect. Notes. Comput. Sc. Protocols for in Vitro Cultures and Secondary Metabolite Analysis of Aromatic and Medicinal Plants = Methods Mol Biol Protocols for in Vitro Cultures and Secondary Metabolite Analysis of Aromatic and Medicinal Plants = Methods. Mol. Biol. Protocols for in Vitro Propagation of Ornamentals Plants = Methods Mol Biol Protocols for in Vitro Propagation of Ornamentals Plants = Methods. Mol. Biol. Protocol Specification, Testing and Verification, Xii = Ifip Trans C Protocol Specification, Testing and Verification, Xii = Ifip. Trans. C. Protocol Specification, Testing and Verification, Xiii = Ifip Trans C Protocol Specification, Testing and Verification, Xiii = Ifip. Trans. C. Protocol Test Systems, Iv = Ifip Trans C Protocol Test Systems, Iv = Ifip. Trans. C. Protocol Test Systems, V = Ifip Trans C Protocol Test Systems, V = Ifip. Trans. C. Protocol Test Systems, Vi = Ifip Trans C Protocol Test Systems, Vi = Ifip. Trans. C. Proton Conducting Membrane Fuel Cells Iii, Proceedings = Elec Soc S Proton Conducting Membrane Fuel Cells Iii, Proceedings = Elec. Soc. S. Proton-emitting Nuclei = Aip Conf Proc Proton-emitting Nuclei = Aip. Conf. Proc. Proton Emitting Nuclei and Related Topics = Aip Conf Proc Proton Emitting Nuclei and Related Topics = Aip. Conf. Proc. Proton-emitting Nuclei, Procon '99 = Aip Conf Proc Proton-emitting Nuclei, Procon '99 = Aip. Conf. Proc. Proton Exchange Membrane Fuel Cells 8, Pts 1 and 2 = Ecs Transactions Proton Exchange Membrane Fuel Cells 8, Pts 1 and 2 = Ecs. Transactions. Proton Exchange Membrane Fuel Cells: Contamination and Mitigation Strategies = Green Chem Chem Eng Proton Exchange Membrane Fuel Cells: Contamination and Mitigation Strategies = Green. Chem. Chem. Eng. Proton Therapy = Radiat Med Rounds Proton Therapy = Radiat. Med. Rounds. Proton Transfer in Hydrogen-bonded Systems = Nato Adv Sci I B-phy Proton Transfer in Hydrogen-bonded Systems = Nato. Adv. Sci. I. B-phy. Proto-oncogenes in Cell Development = Ciba F Symp Proto-oncogenes in Cell Development = Ciba. F. Symp. Protoplasma = Protoplasma Provable Security = Lect Notes Comput Sc Provable Security = Lect. Notes. Comput. Sc. Provable Security, Proceedings = Lect Notes Comput Sc Provable Security, Proceedings = Lect. Notes. Comput. Sc. Provenance and Annotation of Data and Processes = Lect Notes Comput Sc Provenance and Annotation of Data and Processes = Lect. Notes. Comput. Sc. Provenance and Annotation of Data = Lect Notes Comput Sc Provenance and Annotation of Data = Lect. Notes. Comput. Sc. Provence historique = ProvHist Provence historique; revue trimestrielle = Provence Hist Provider = Provider Provider (Washington, D.C.) = Provider Providing Quality and Increasing Value to Assure The Future = Vdi Bericht Providing Quality and Increasing Value to Assure The Future = Vdi. Bericht. Providing Quality of Service in Heterogeneous Environments, Vols 5a and 5b = Teletraf Sci Eng Providing Quality of Service in Heterogeneous Environments, Vols 5a and 5b = Teletraf. Sci. Eng. Provincial Life and The Military in Imperial Japan: The Phantom Samurai = Routl Stud Mod Hist Provincial Life and The Military in Imperial Japan: The Phantom Samurai = Routl. Stud. Mod. Hist. Provocation and Punishment = Beih Z Alttest Wiss Provocation and Punishment = Beih. Z. Alttest. Wiss. Proximal Soil Sensing = Progr Soil Sci Proximal Soil Sensing = Progr. Soil Sci. Proyecciones = Proyecciones Przeglad dermatologiczny = Przegl Dermatol Przeglad Dermatologiczny = Przegl. Dermatol. Przeglad Elektrotechniczny = Prz Elektrotechniczn Przeglad Elektrotechniczny = Prz. Elektrotechniczn. Przeglad epidemiologiczny = Przegl Epidemiol Przeglad Epidemiologiczny=Przegl Epidemiol;; Przeglad Epidemiologiczny = Przegl. Epidemiol. Przeglad Gastroenterologiczny = Prz Gastroenterol Przeglad Gastroenterologiczny = Prz. Gastroenterol. Przeglad geograficzny. Polskii geograficheskii obzor. Polish geographical review. Revue polonaise de geographie = Prz Geogr Przeglad Historyczny = PHist Przeglad historyczny = Przegl Hist Przeglad lekarski = Przegl Lek Przeglad Lekarski=Przegl Lek;; Przeglad Lekarski = Przegl. Lek. Przeglad Menopauzalny = Prz Menopauzalny Przeglad Menopauzalny = Prz. Menopauzalny Przeglad orientalistyczny = Prz Orient Przeglad polonijny = Przegl Pol Przeglad zachodni = Prz Zach Przemysl Chemiczny = Przem Chem Przemysl Chemiczny = Przem. Chem. Przeszlosc demograficzna Polski = Przeszlosc Demograf Pol Ps '09: Proceedings of The 9th Wseas International Conference On Power Systems = Rec Adv Electr Eng Ps '09: Proceedings of The 9th Wseas International Conference On Power Systems = Rec. Adv. Electr. Eng. Psa 1990, Vol 1 = Psa P Ser Psa 1990, Vol 1 = Psa P. Ser. Psa 1990, Vol 2 = Psa P Ser Psa 1990, Vol 2 = Psa P. Ser. Psa 1992, Vol 1 = Psa P Ser Psa 1992, Vol 1 = Psa P. Ser. Psa 1994 - Proceedings of The 1994 Biennial Meeting of The Philosophy of Science Association, Vol 1 = Psa P Ser Psa 1994 - Proceedings of The 1994 Biennial Meeting of The Philosophy of Science Association, Vol 1 = Psa P. Ser. Psa 1994 - Proceedings of The 1994 Biennial Meeting of The Philosophy of Science Association, Vol 2 = Psa P Ser Psa 1994 - Proceedings of The 1994 Biennial Meeting of The Philosophy of Science Association, Vol 2 = Psa P. Ser. Psa and Prostate Cancer Research = Cancer Etiol Diagn T Psa and Prostate Cancer Research = Cancer Etiol. Diagn. T. Psalms in Community = Sbl Symp Ser Psalms in Community = Sbl. Symp. Ser. Psam 5: Probabilistic Safety Assessment and Management, Vols 1-4 = Front Sci Series Psam 5: Probabilistic Safety Assessment and Management, Vols 1-4 = Front. Sci. Series. Psa - Philosophy of Science Association Proceedings Series = Psa P Ser Psa - Philosophy of Science Association Proceedings Series = Psa P. Ser. PSD communication newsletter = PSD Commun Newsl Pseudo-differential Operators and Related Topics = Oper Theor Pseudo-differential Operators and Related Topics = Oper. Theor. Pseudo-differential Operators and Related Topics = Oper Theory Adv Appl Pseudo-differential Operators and Related Topics = Oper. Theory. Adv. Appl. Pseudo-differential Operators: Complex Analysis and Partial Differential Equations = Oper Theor Pseudo-differential Operators: Complex Analysis and Partial Differential Equations = Oper. Theor. Pseudo-differential Operators: Complex Analysis and Partial Differential Equations = Oper Theory Adv Appl Pseudo-differential Operators: Complex Analysis and Partial Differential Equations = Oper. Theory. Adv. Appl. Pseudo-differential Operators: Partial Differential Equations and Time-frequency Analysis = Fields I Commun Pseudo-differential Operators: Partial Differential Equations and Time-frequency Analysis = Fields. I. Commun. Pseudo-differential Operators: Partial Differential Equations and Time-frequency Analysis = Fields Inst Commun Pseudo-differential Operators: Partial Differential Equations and Time-frequency Analysis = Fields. Inst. Commun. Pseudo Differential Operators = Pseudo Differ Oper Pseudo Differential Operators = Pseudo Differ. Oper. Pseudo-differential Operators: Quantization and Signals = Lect Notes Math Pseudo-differential Operators: Quantization and Signals = Lect. Notes. Math. Pseudomonas-aeruginosa in Human Diseases = Antibiot Chemother Pseudomonas-aeruginosa in Human Diseases = Antibiot. Chemother. Psicologia Conductual = Psicol Conduct Psicologia Conductual = Psicol. Conduct. Psicologia-reflexao E Critica = Psicol-reflex Crit Psicologia-reflexao E Critica = Psicol-reflex. Crit. Psicologica = Psicologica Psicothema = Psicothema Psihologija = Psihologija Psihoterapija = Psihoterapija Psikhologicheskii zhurnal = Psikholog Zh Psikhologicheskii Zhurnal = Psikhol Zh Psikhologicheskii Zhurnal = Psikhol. Zh. Psiquiatria Y Ciencias Afines Actas Luso Esp Neurol Psiquiatr Cien=Afines;; Psiquis = Psiquis Psn-psychiatrie Sciences Humaines Neurosciences = Psn-psychiatr Sci Hu Psn-psychiatrie Sciences Humaines Neurosciences = Psn-psychiatr. Sci. Hu. Psn-psychiatrie Sciences Humaines Neurosciences = Psn-psychiat Sci Hum Psn-psychiatrie Sciences Humaines Neurosciences = Psn-psychiat. Sci. Hum. Ps-political Science & Politics = Ps Ps-political Science & Politics = Ps. Ps-political Science & Politics = Ps-polit Sci Polit Ps-political Science & Politics = Ps-polit. Sci. Polit. P S = Ps P S = Ps. P S = P S PS = PS (Wash DC) P & S quarterly = P S Q P-sterogenic Ligands in Enantioselective Catalysis = Rsc Catal Ser P-sterogenic Ligands in Enantioselective Catalysis = Rsc. Catal. Ser. Pstp 2007 = Aip Conf Proc Pstp 2007 = Aip. Conf. Proc. Psychanalyse Et = Psychanalyse Et Psychanalyse = Psychanalyse Psyche = Psyche (Stuttg.) Psyche = Psyche (Stuttg) Psyche; revue internationale des sciences de l'homme et de psychanalyse = Psyche Rev Int Sci Homme Psychanal Psyche-zeitschrift Fur Psychoanalyse Und Ihre Anwendungen = Psyche-z Psychoanal Psyche-zeitschrift Fur Psychoanalyse Und Ihre Anwendungen = Psyche-z. Psychoanal. Psychiatria Clinica = Psychiat Clin Psychiatria Clinica = Psychiat. Clin. Psychiatria clinica = Psychiatr Clin (Basel) Psychiatria Clinica = Psychiatr. Clin. (Basel) Psychiatria Danubina = Psychiat Danub Psychiatria Danubina = Psychiat. Danub. Psychiatria Danubina = Psychiatr Danub Psychiatria Et Neurologia = Psychiat Neurol Psychiatria Et Neurologia = Psychiat. Neurol. Psychiatria et neurologia = Psychiatr Neurol (Basel) Psychiatria et Neurologia = Psychiatr. Neurol. (Basel) Psychiatria Fennica Supplementum = Psych Fen S Psychiatria Fennica Supplementum = Psych. Fen. S. Psychiatria Hungarica : A Magyar Pszichiatriai Tarsasag tudomanyos folyoirata = Psychiatr Hung Psychiatria Neurologia Neurochirurgia = Psychiat Neurol Neur Psychiatria Neurologia Neurochirurgia = Psychiat. Neurol. Neur. Psychiatria, neurologia, neurochirurgia = Psychiatr Neurol Neurochir Psychiatria, Neurologia, Neurochirurgia = Psychiatr. Neurol. Neurochir. Psychiatria polska = Psychiatr Pol Psychiatria Polska=Psychiatr Pol;; Psychiatria Polska = Psychiatr Pol Psychiatria Polska = Psychiatr. Pol. Psychiatric and Neurologic Aspects of War = Ann Ny Acad Sci Psychiatric and Neurologic Aspects of War = Ann. Ny. Acad. Sci. Psychiatric Annals = Psychiat Ann Psychiatric Annals = Psychiat. Ann. Psychiatric annals = Psychiatr Ann Psychiatric bulletin (London, England) = Psychiatr Bull R Coll Psychiatr Psychiatric Clinics of North America = Psychiat Clin N Am Psychiatric Clinics of North America = Psychiat. Clin. N. Am. Psychiatric Clinics of North America=Psychiatr Clin North Am;; Psychiatric Clinics of North America = Psychiatr. Clin. North Am. Psychiatric communications = Psychiatr Commun Psychiatric Communications = Psychiatr. Commun. Psychiatric Developments = Psychiat Dev Psychiatric Developments = Psychiat. Dev. Psychiatric developments = Psychiatr Dev Psychiatric Developments = Psychiatr. Dev. Psychiatric Forum = Psychiat Forum Psychiatric Forum = Psychiat. Forum Psychiatric forum = Psychiatr Forum Psychiatric Genetics = Psychiat Genet Psychiatric Genetics = Psychiat. Genet. Psychiatric genetics = Psychiatr Genet Psychiatric Genetics=Psychiatr Genet;; Psychiatric Genetics = Psychiatr Genet Psychiatric Genetics = Psychiatr. Genet. Psychiatric Hospital = Psychiatr. Hosp. Psychiatric Journal of the University of Ottawa = Psychiatr. J. Univ. Ott. Psychiatric Journal of The University of Ottawa-revue De Psychiatrie De L Universite D Ottawa = Psychiat J U Ottawa Psychiatric Journal of The University of Ottawa-revue De Psychiatrie De L Universite D Ottawa = Psychiat. J. U. Ottawa Psychiatric journal of the University of Ottawa : Revue de psychiatrie de l'Universite d'Ottawa = Psychiatr J Univ Ott Psychiatric medicine = Psychiatr Med Psychiatric Medicine = Psychiatr. Med. Psychiatric medicine update: Massachusetts General Hospital reviews for physicians = Psychiatr Med Update Mass Gen Hosp Rev Physicians Psychiatric Neuroimaging = Nato Sci Ser I Life Psychiatric Neuroimaging = Nato. Sci. Ser. I. Life. Psychiatric news = Psychiatr News Psychiatric News = Psychiatr. News Psychiatric Nurses Perceptions of The Constituents of The Therapeutic Relationship = Nurs Iss Probl Chall Psychiatric Nurses Perceptions of The Constituents of The Therapeutic Relationship = Nurs. Iss. Probl. Chall. Psychiatric opinion = Psychiatr Opin Psychiatric Quarterly = Psychiat Quart Psychiatric Quarterly = Psychiat. Quart. Psychiatric Quarterly=Psychiatr Q;; Psychiatric Quarterly = Psychiatr. Q. Psychiatric Quarterly. Supplement = Psychiatr. Q. Suppl. Psychiatric rehabilitation journal = Psychiatr Rehabil J Psychiatric Rehabilitation Journal = Psychiatr Rehabil J Psychiatric Rehabilitation Journal = Psychiatr. Rehabil. J. Psychiatric research reports = Psychiatr Res Rep Am Psychiatr Assoc Psychiatric Research Reports = Psychiatr. Res. Rep. Am. Psychiatr. Assoc. Psychiatric Research Trends: Dreams and Geriatric Psychiatry = Psychiat Theor Appl Psychiatric Research Trends: Dreams and Geriatric Psychiatry = Psychiat. Theor. Appl. Psychiatric Services=Psychiatr Serv;; Psychiatric Services = Psychiatr Serv Psychiatric Services = Psychiatr. Serv. Psychiatric Services = Psychiat Serv Psychiatric Services = Psychiat. Serv. Psychiatric services (Washington, D.C.) = Psychiatr Serv Psychiatrie De L Enfant = Psychiat Enfant Psychiatrie De L Enfant = Psychiat. Enfant Psychiatrie de l'Enfant = Psychiatr. Enfant Psychiatrie, Neurologie und medizinische Psychologie. Beihefte = Psychiatr Neurol Med Psychol Beih Psychiatrie, Neurologie und Medizinische Psychologie. Beihefte = Psychiatr. Neurol. Med. Psychol. Beih. Psychiatrie, Neurologie, und medizinische Psychologie = Psychiatr Neurol Med Psychol (Leipz) Psychiatrie, Neurologie und Medizinische Psychologie = Psychiatr. Neurol. Med. Psychol. (Leipz.) Psychiatrische Praxis = Psychiat Prax Psychiatrische Praxis = Psychiat. Prax. Psychiatrische Praxis=Psychiatr Prax;; Psychiatrische Praxis = Psychiatr Prax Psychiatrische Praxis = Psychiatr. Prax. Psychiatry and Clinical Neurosciences = Psychiat Clin Neuros Psychiatry and Clinical Neurosciences = Psychiat. Clin. Neuros. Psychiatry and clinical neurosciences = Psychiatry Clin Neurosci Psychiatry and Clinical Neurosciences=Psychiatry Clin Neurosci;; Psychiatry and Clinical Neurosciences = Psychiatry Clin. Neurosci. Psychiatry and Empire = Camb Imp Post-col St Psychiatry and Empire = Camb. Imp. Post-col. St. Psychiatry and Ethics = Bibl Psychiat Pol Psychiatry and Ethics = Bibl. Psychiat. Pol. Psychiatry : A World Perspective, Vol 1 = Int Congr Ser Psychiatry : A World Perspective, Vol 1 = Int. Congr. Ser. Psychiatry : A World Perspective, Vol 2 = Int Congr Ser Psychiatry : A World Perspective, Vol 2 = Int. Congr. Ser. Psychiatry : A World Perspective, Vol 3 = Int Congr Ser Psychiatry : A World Perspective, Vol 3 = Int. Congr. Ser. Psychiatry : A World Perspective, Vol 4 = Int Congr Ser Psychiatry : A World Perspective, Vol 4 = Int. Congr. Ser. Psychiatry Digest = Psychiat Dig Psychiatry Digest = Psychiat. Dig. Psychiatry digest = Psychiatry Dig Psychiatry Digest = Psychiatry Dig. Psychiatry in Medicine = Psychiat Med Psychiatry in Medicine = Psychiat. Med. Psychiatry in medicine = Psychiatry Med Psychiatry in Medicine = Psychiatry Med. Psychiatry in Progress Series = Psychiat Progr Ser Psychiatry in Progress Series = Psychiat. Progr. Ser. Psychiatry-interpersonal and Biological Processes = Psychiatry Psychiatry-interpersonal and Biological Processes = Psychiatry. Psychiatry Investigation = Psychiat Invest Psychiatry Investigation = Psychiat. Invest. Psychiatry = Psychiatr Psychiatry = Psychiatr. Psychiatry=Psychiatry;; Psychiatry = Psychiatry Psychiatry, Psychoimmunology, and Viruses = Key Top Brain Res Psychiatry, Psychoimmunology, and Viruses = Key. Top. Brain. Res. Psychiatry Psychology and Law = Psychiat Psychol Law Psychiatry Psychology and Law = Psychiat. Psychol. Law Psychiatry Research-neuroimaging = Psychiat Res-neuroim Psychiatry Research-neuroimaging = Psychiat. Res-neuroim. Psychiatry Research = Psychiat Res Psychiatry Research = Psychiat. Res. Psychiatry research = Psychiatry Res Psychiatry Research=Psychiatry Res;; Psychiatry Research = Psychiatry Res. Psychiatry Theory Applications and Treatment = Psychiat Theor Appl Psychiatry Theory Applications and Treatment = Psychiat. Theor. Appl. Psychoanalyses/feminisms = Suny S Fem Crit Psychoanalyses/feminisms = Suny. S. Fem. Crit. Psychoanalysis and the psychoanalytic review = Psychoanal Psychoanal Rev Psychoanalysis and the social sciences = Psychoanal Soc Sci Psychoanalysis Education and Social Transformation = Psychoanal Educ Soc Psychoanalysis Education and Social Transformation = Psychoanal. Educ. Soc. Psychoanalysis in A New Key = Psychoanal New Key Psychoanalysis in A New Key = Psychoanal. New Key Psychoanalytic Dialogues = Psychoanal Dialogues Psychoanalytic Dialogues = Psychoanal. Dialogues Psychoanalytic Inquiry Book Series = Psychoanal Inq Book Psychoanalytic Inquiry Book Series = Psychoanal. Inq. Book Psychoanalytic Inquiry = Psychoanal Inq Psychoanalytic Inquiry = Psychoanal. Inq. Psychoanalytic Psychology = Psychoanal Psychol Psychoanalytic Psychology = Psychoanal. Psychol. Psychoanalytic Quarterly=Psychoanal Q;; Psychoanalytic Quarterly = Psychoanal. Q. Psychoanalytic Quarterly = Psychoanal Quart Psychoanalytic Quarterly = Psychoanal. Quart. Psychoanalytic review = Psychoanal Rev Psychoanalytic Review=Psychoanal Rev;; Psychoanalytic Review = Psychoanal Rev Psychoanalytic Review = Psychoanal. Rev. Psychoanalytic Study of The Child = Psychoanal Stud Chil Psychoanalytic Study of The Child = Psychoanal. Stud. Chil. Psychoanalytic Study of the Child = Psychoanal. Study Child Psychoanalytic Study of The Child=Psychoanal Study Child;; Psychoanalytic Study of The Child, Vol 53 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 53 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 55 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 55 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 56 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 56 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 57 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 57 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 58 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 58 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 59 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 59 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 60 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 60 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 61 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 61 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 62 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 62 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 63 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 63 = Psychoanal. Stud. Chil. Psychoanalytic Study of The Child, Vol 64 = Psychoanal Stud Chil Psychoanalytic Study of The Child, Vol 64 = Psychoanal. Stud. Chil. Psychobiology (Austin, Tex.) = Psychobiology (Austin, Tex) Psychobiology of Human Eating Disorders = Ann Ny Acad Sci Psychobiology of Human Eating Disorders = Ann. Ny. Acad. Sci. Psychobiology of Posttraumatic Stress Disorder: A Decade of Progress = Ann Ny Acad Sci Psychobiology of Posttraumatic Stress Disorder: A Decade of Progress = Ann. Ny. Acad. Sci. Psychobiology of Posttraumatic Stress Disorder = Ann Ny Acad Sci Psychobiology of Posttraumatic Stress Disorder = Ann. Ny. Acad. Sci. Psychobiology of Stress = Nato Adv Sci I D-beh Psychobiology of Stress = Nato. Adv. Sci. I. D-beh. Psychobiology = Psychobiology Psychobiology Treatment of Anorexia Nervosa and Bulimia Nervosa = Am Psychop Psychobiology Treatment of Anorexia Nervosa and Bulimia Nervosa = Am. Psychop. Psychocultural Review = Psychocult Rev Psychocultural Review = Psychocult. Rev. Psychodynamic counselling = Psychodyn Couns Psychogenic Denture Intolerance: Theoretical Background, Prevention, and Treatment Possibilities = Dent Sci Mater Tech Psychogenic Denture Intolerance: Theoretical Background, Prevention, and Treatment Possibilities = Dent. Sci. Mater. Tech. Psychogenic Movement Disorders: Neurology and Neuropsychiatry = Neurol Ref Ser Psychogenic Movement Disorders: Neurology and Neuropsychiatry = Neurol. Ref. Ser. Psychogeriatrics = Psychogeriatrics Psycholinguistik/psycholinguistics: Ein Internationales Handbuch/an International Handbook = Handb Sprach Kommun Psycholinguistik/psycholinguistics: Ein Internationales Handbuch/an International Handbook = Handb. Sprach. Kommun. Psychologia Africana = Psychol Afr Psychologia Africana = Psychol. Afr. Psychologia = Psychologia Psychologica Belgica = Psychol Belg Psychologica Belgica = Psychol. Belg. Psychological abstracts = Psychol Abstr Psychological Agency: Theory, Practice, and Culture = Bradford Books Psychological Agency: Theory, Practice, and Culture = Bradford. Books. Psychological and Physiological Aspects of Chronic Renal Failure = Contrib Nephrol Psychological and Physiological Aspects of Chronic Renal Failure = Contrib. Nephrol. Psychological Approaches to Chronic Disease Management = Hlthc Util Psychological Approaches to Chronic Disease Management = Hlthc. Util. Psychological Approaches to Generalized Anxiety Disorder: A Clinician's Guide to Assessment and Treatment = Ser Anxiety Relat Di Psychological Approaches to Generalized Anxiety Disorder: A Clinician's Guide to Assessment and Treatment = Ser. Anxiety Relat. Di. Psychological Approaches to Sustainability = Environ Sci Eng Tech Psychological Approaches to Sustainability = Environ. Sci. Eng. Tech. Psychological Aspects of Social Axioms: Understanding Global Belief Systems = Int Cult Psychol Psychological Aspects of Social Axioms: Understanding Global Belief Systems = Int. Cult. Psychol. Psychological assessment = Psychol Assess Psychological Assessment = Psychol Assessment Psychological Assessment = Psychol. Assessment Psychological bulletin = Psychol Bull Psychological Bulletin=Psychol Bull;; Psychological Bulletin = Psychol Bull Psychological Bulletin = Psychol. Bull. Psychological Factors Affecting Medical Conditions: A New Classification for Dsm-v = Adv Psychosom Med Psychological Factors Affecting Medical Conditions: A New Classification for Dsm-v = Adv. Psychosom. Med. Psychological Impact of Living Under Violence and Poverty in Brazil = Psychol Res Prog Psychological Impact of Living Under Violence and Poverty in Brazil = Psychol. Res. Prog. Psychological inquiry = Psychol Inq Psychological Inquiry = Psychol Inq Psychological Inquiry = Psychol. Inq. Psychological issues = Psychol Issues Psychological Issues=Psychol Issues;; Psychological Issues = Psychol Issues Psychological Issues = Psychol. Issues Psychological medicine. Monograph supplement = Psychol Med Monogr Suppl Psychological Medicine. Monograph Supplement = Psychol. Med. Monogr. Suppl. Psychological medicine = Psychol Med Psychological Medicine=Psychol Med;; Psychological Medicine = Psychol Med Psychological Medicine = Psychol. Med. Psychological methods = Psychol Methods Psychological Methods = Psychol Methods Psychological Methods = Psychol. Methods Psychological Monographs-general and Applied = Psychol Monogr-gen A Psychological Monographs-general and Applied = Psychol. Monogr-gen. A. Psychological monographs = Psychol Monogr Psychological Monographs = Psychol Monogr Psychological Monographs = Psychol. Monogr. Psychological Perspectives On Early Childhood Education: Reframing Dilemmas in Research and Practice = Rutg Inv Symp Educ S Psychological Perspectives On Early Childhood Education: Reframing Dilemmas in Research and Practice = Rutg. Inv. Symp. Educ. S. Psychological Perspectives On Human Diversity in America = Mast Lect P Psychological Perspectives On Human Diversity in America = Mast. Lect. P. Psychological Record = Psychol Rec Psychological Record = Psychol. Rec. Psychological reports = Psychol Rep Psychological Reports=Psychol Rep;; Psychological Reports = Psychol Rep Psychological Reports = Psychol. Rep. Psychological Research-psychologische Forschung = Psychol Res-psych Fo Psychological Research-psychologische Forschung = Psychol. Res-psych. Fo. Psychological research = Psychol Res Psychological Research=Psychol Res;; Psychological Research = Psychol. Res. Psychological Review-monograph Supplements = Psychol Rev-monogr S Psychological Review-monograph Supplements = Psychol. Rev-monogr. S. Psychological review = Psychol Rev Psychological Review=Psychol Rev;; Psychological Review = Psychol Rev Psychological Review = Psychol. Rev. Psychological science : a journal of the American Psychological Society / APS = Psychol Sci Psychological Science = Psychol Sci Psychological Science = Psychol. Sci. Psychological Scientific Perspectives On Out-of-body and Near-death Experiences = Psychol Res Prog Psychological Scientific Perspectives On Out-of-body and Near-death Experiences = Psychol. Res. Prog. Psychological Selection and Optimal Experience Across Cultures: Social Empowerment Through Personal Growth = Cross Cult Adv Posit Psychological Selection and Optimal Experience Across Cultures: Social Empowerment Through Personal Growth = Cross. Cult. Adv. Posit. Psychological services = Psychol Serv Psychological Services = Psychol Serv Psychological Services = Psychol. Serv. Psychological studies in population/family planning = Psychol Stud Popul Fam Plan Psychological Studies = Psychol Stud Psychological Studies = Psychol. Stud. Psychological studies = Psychol Stud (Mysore) Psychological Trauma-theory Research Practice and Policy = Psychol Trauma-us Psychological Trauma-theory Research Practice and Policy = Psychol. Trauma-us. Psychological Well-being = Psychol Emot Motiv A Psychological Well-being = Psychol. Emot. Motiv. A. Psychologie Du Travail Et Des Organisations = Psychol Trav Organ Psychologie Du Travail Et Des Organisations = Psychol. Trav. Organ. Psychologie et Neuropsychiatrie du Vieillissement = Psychol. Neuropsychiatr. Vieil. Psychologie Francaise = Psychol Fr Psychologie Francaise = Psychol. Fr. Psychologie & Gezondheid = Psychol Gezondh Psychologie & Gezondheid = Psychol. Gezondh. Psychologie in Erziehung Und Unterricht = Psychol Erz Unterr Psychologie in Erziehung Und Unterricht = Psychol. Erz. Unterr. Psychologie medicale = Psychol Med (Paris) Psychologie & Neuropsychiatrie Du Vieillissement = Psychol Neuropsychia Psychologie & Neuropsychiatrie Du Vieillissement = Psychol. Neuropsychia. Psychologie & neuropsychiatrie du vieillissement = Psychol Neuropsychiatr Vieil Psychologie = Psycholog Psychologie = Psycholog. Psychologie-schweizerische Zeitschrift Fur Psychologie Und Ihre Andwendungen = Psychologie Psychologie V Ekonomicke Praxi = Psychol Ekon Prax Psychologie V Ekonomicke Praxi = Psychol. Ekon. Prax. Psychologische Beitrage = Psychol Beitr Psychologische Beitrage = Psychol. Beitr. Psychologische Forschung = Psychol Forsch Psychologische Forschung = Psychol. Forsch. Psychologische Praxis = Psychol. Prax. Psychologische Praxis = Psychol Prax-basel Psychologische Praxis = Psychol. Prax-basel. Psychologische Praxis; Schriftenreihe fur Erziehung und Jugendpflege = Psychol Prax Psychologische Rundschau = Psychol Rundsch Psychologische Rundschau = Psychol. Rundsch. Psychologische Rundschau; Ueberblick uber die Fortschritte der Psychologie in Deutschland, Oesterreich, und der Schweiz = Psychol Rundsch Psychologist = Psychologist Psychology and aging = Psychol Aging Psychology and Aging=Psychol Aging;; Psychology and Aging = Psychol Aging Psychology and Aging = Psychol. Aging Psychology and Criminal Justice = Pub Eur Assoc Psych Psychology and Criminal Justice = Pub. Eur. Assoc. Psych. Psychology and developing societies = Psychol Dev Soc J Psychology and Philosophy: Inquiries Into The Soul From Late Scholasticism to Contemporary Thought = Stud Hist Philos Min Psychology and Philosophy: Inquiries Into The Soul From Late Scholasticism to Contemporary Thought = Stud. Hist. Philos. Min. Psychology and psychotherapy = Psychol Psychother Psychology and Psychotherapy = Psychol. Psychother. Psychology and Psychotherapy-theory Research and Practice = Psychol Psychother-t Psychology and Psychotherapy-theory Research and Practice = Psychol. Psychother-t. Psychology Crime & Law = Psychol Crime Law Psychology Crime & Law = Psychol. Crime Law Psychology, health & medicine = Psychol Health Med Psychology Health & Medicine = Psychol Health Med Psychology Health & Medicine = Psychol. Health Med. Psychology & health = Psychol Health Psychology & Health = Psychol Health Psychology & Health = Psychol. Health Psychology in the schools = Psychol Sch Psychology in The Schools = Psychol Schools Psychology in The Schools = Psychol. Schools Psychology & Marketing = Psychol Market Psychology & Marketing = Psychol. Market. Psychology of addictive behaviors : journal of the Society of Psychologists in Addictive Behaviors = Psychol Addict Behav Psychology of Addictive Behaviors = Psychol Addict Behav Psychology of Addictive Behaviors = Psychol. Addict. Behav. Psychology of Aesthetics Creativity and The Arts = Psychol Aesthet Crea Psychology of Aesthetics Creativity and The Arts = Psychol. Aesthet. Crea. Psychology of Burnout: Predictors and Coping Mechanisms = Psychol Res Prog Psychology of Burnout: Predictors and Coping Mechanisms = Psychol. Res. Prog. Psychology of Denial = Psychol Emot Motiv A Psychology of Denial = Psychol. Emot. Motiv. A. Psychology of Emotions Motivations and Actions = Psychol Emot Motiv A Psychology of Emotions Motivations and Actions = Psychol. Emot. Motiv. A. Psychology of Entertainment Media: Blurring The Lines Between Entertainment and Persuasion = Advert Cons Psychology of Entertainment Media: Blurring The Lines Between Entertainment and Persuasion = Advert. Cons. Psychology of Expectations = Psychol Emot Motiv A Psychology of Expectations = Psychol. Emot. Motiv. A. Psychology of Global Mobility = Int Cult Psychol Psychology of Global Mobility = Int. Cult. Psychol. Psychology of Intuition = Psychol Emot Motiv A Psychology of Intuition = Psychol. Emot. Motiv. A. Psychology of Leadership: New Perspectives and Research = Leas Org Man Series Psychology of Leadership: New Perspectives and Research = Leas. Org. Man. Series. Psychology of Learning and Motivation: Advances in Research and Theory: Cognitve Vision, Vol 42 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory: Cognitve Vision, Vol 42 = Psychol. Learn. Motiv. Psychology of Learning and Motivation-advances in Research and Theory = Psychol Learn Motiv Psychology of Learning and Motivation-advances in Research and Theory = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 30 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 30 = Psychol. Learn. Motiv. Psychology of Learning and Motivation - Advances in Research and Theory, Vol 31 = Psychol Learn Motiv Psychology of Learning and Motivation - Advances in Research and Theory, Vol 31 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 39 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 39 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 40 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 40 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 43 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 43 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 44 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 44 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 45 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 45 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 46 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 46 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 49 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 49 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 51 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 51 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 52 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 52 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 53 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 53 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Advances in Research and Theory, Vol 54 = Psychol Learn Motiv Psychology of Learning and Motivation: Advances in Research and Theory, Vol 54 = Psychol. Learn. Motiv. Psychology of Learning and Motivation: Cognition in Education = Psychol Learn Motiv Psychology of Learning and Motivation: Cognition in Education = Psychol. Learn. Motiv. Psychology of Learning and Motivation = Psychol Learn Motiv Psychology of Learning and Motivation = Psychol. Learn. Motiv. Psychology of Learning and Motivation, Vol 35 = Psychol Learn Motiv Psychology of Learning and Motivation, Vol 35 = Psychol. Learn. Motiv. Psychology of Liberation: Theory and Applications = Peace Psychol Book S Psychology of Liberation: Theory and Applications = Peace. Psychol. Book. S. Psychology of Men & Masculinity = Psychol Men Masculin Psychology of Men & Masculinity = Psychol. Men Masculin. Psychology of Music = Psychol Music Psychology of Music = Psychol. Music Psychology of Neuroticism and Shame = Psychol Emot Motiv A Psychology of Neuroticism and Shame = Psychol. Emot. Motiv. A. Psychology of Optimism = Psychol Emot Motiv A Psychology of Optimism = Psychol. Emot. Motiv. A. Psychology of Persuasion = Psychol Emot Motiv A Psychology of Persuasion = Psychol. Emot. Motiv. A. Psychology of Pessimism = Psychol Emot Motiv A Psychology of Pessimism = Psychol. Emot. Motiv. A. Psychology of Prejudice : The Ontario Symposium, Vol 7 = Ont Symp P Psychology of Prejudice : The Ontario Symposium, Vol 7 = Ont. Symp. P. Psychology of Reading and Reading Instruction = Psychol Read Psychology of Reading and Reading Instruction = Psychol. Read. Psychology of Religion and Spirituality = Psychol Relig Spirit Psychology of Religion and Spirituality = Psychol. Relig. Spirit. Psychology of Sport and Exercise = Psychol Sport Exerc Psychology of Sport and Exercise = Psychol. Sport Exerc. Psychology of Strategic Terrorism: Public and Government Responses to Attack = Contemp Terror Stud Psychology of Strategic Terrorism: Public and Government Responses to Attack = Contemp. Terror. Stud. Psychology of Terrorism = Cass Ser Polit Viole Psychology of Terrorism = Cass. Ser. Polit. Viole. Psychology of Thinking = Psychol Emot Motiv A Psychology of Thinking = Psychol. Emot. Motiv. A. Psychology of Values: The Ontario Symposium, Vol 8 = Ont Symp P Psychology of Values: The Ontario Symposium, Vol 8 = Ont. Symp. P. Psychology of women quarterly = Psychol Women Q Psychology of Women Quarterly = Psychol Women Quart Psychology of Women Quarterly = Psychol. Women Quart. Psychology = Psychology Psychology, public policy, and law : an official law review of the University of Arizona College of Law and the University of Miami School of Law = Psychol Public Policy Law Psychology Public Policy and Law = Psychol Public Pol L Psychology Public Policy and Law = Psychol. Public Pol. L. Psychology: Pythagoras to Present = Bradford Books Psychology: Pythagoras to Present = Bradford. Books. Psychology, Religion, and The Nature of The Soul: A Historical Entanglement = Libr Hist Psychol Th Psychology, Religion, and The Nature of The Soul: A Historical Entanglement = Libr. Hist. Psychol. Th. Psychology Research Progress = Psychol Res Prog Psychology Research Progress = Psychol. Res. Prog. Psychology (Savannah, Ga.) = Psychology Psychology, Spelling and Education = Multiling Psychology, Spelling and Education = Multiling. Psychology today = Psychol Today Psychology Today = Psychol Today Psychology Today = Psychol. Today Psychometrika = Psychometrika Psychometrika = Psychometrika Psycho-neuro-endocrino-immunology (pnei) = Int Congr Ser Psycho-neuro-endocrino-immunology (pnei) = Int. Congr. Ser. Psychoneuroendocrinology = Psychoneuroendocrino Psychoneuroendocrinology = Psychoneuroendocrino. Psychoneuroendocrinology=Psychoneuroendocrinology;; Psychoneuroendocrinology = Psychoneuroendocrinology Psychonomic Bulletin & Review = Psychon B Rev Psychonomic Bulletin & Review = Psychon. B. Rev. Psychonomic bulletin & review = Psychon Bull Rev Psychonomic science = Psychon Sci Psychonomic Science = Psychon Sci Psychonomic Science = Psychon. Sci. Psycho-oncologie = Psycho-oncologie Psycho-oncology = Psycho-oncol Psycho-oncology = Psycho-oncol. Psycho-oncology = Psychooncology Psycho-oncology = Psycho-oncology Psycho-Oncology=Psychooncology;; Psycho-Oncology = Psychooncology. Psychopathologie Africaine = Psychopathol Afr Psychopathologie Africaine = Psychopathol. Afr. Psychopathology and The Brain = Am Psychop Psychopathology and The Brain = Am. Psychop. Psychopathology=Psychopathology;; Psychopathology = Psychopathology Psychopathy: Theory, Research and Implications for Society = Nato Adv Sci I D-beh Psychopathy: Theory, Research and Implications for Society = Nato. Adv. Sci. I. D-beh. Psychopedagogy: Freud, Lacan, and The Psychoanalytic Theory of Education = Psychoanal Educ Soc Psychopedagogy: Freud, Lacan, and The Psychoanalytic Theory of Education = Psychoanal. Educ. Soc. Psychopharmacologia = Psychopharmacologia Psychopharmacologie = Psychopharmacologie Psychopharmacology (Berlin, Germany) = Psychopharmacology (Berlin, Ger.) Psychopharmacology bulletin = Psychopharmacol Bull Psychopharmacology Bulletin=Psychopharmacol Bull;; Psychopharmacology Bulletin = Psychopharmacol Bull Psychopharmacology Bulletin = Psychopharmacol. Bull. Psychopharmacology Communications = Psychopharmacol Comm Psychopharmacology Communications = Psychopharmacol. Comm. Psychopharmacology communications = Psychopharmacol Commun Psychopharmacology Communications = Psychopharmacol. Commun. Psychopharmacology = Psychopharmacology Psychopharmacology=Psychopharmacology (Berl);; Psychopharmacology = Psychopharmacology (Berl.) Psychopharmacology = Psychopharmacology (Berl) Psychopharmacology Series-berlin = Psychoph S Psychopharmacology Series-berlin = Psychoph. S. Psychopharmacology series = Psychopharmacol Ser Psychopharmacology Series=Psychopharmacol Ser;; Psychopharmacology Series = Psychopharmacol. Ser. Psychopharmacology Service Center bulletin = Psychopharmacol Serv Cent Bull Psychopharmacology. Supplementum = Psychopharmacology Suppl Psychopharmacology. Supplementum = Psychopharmacology. Suppl. Psychopharmakotherapie = Psychopharmakotherap Psychopharmakotherapie = Psychopharmakotherap. Psychophysiological States: The Ultradian Dynamics of Mind Body Interactions = Int Rev Neurobiol Psychophysiological States: The Ultradian Dynamics of Mind Body Interactions = Int. Rev. Neurobiol. Psychophysiology=Psychophysiology;; Psychophysiology = Psychophysiology Psychosocial Rehabilitation Journal = Psychosoc Rehabil J Psychosocial Rehabilitation Journal = Psychosoc. Rehabil. J. Psychosocial Stress Series = Psychosoc Stres Psychosocial Stress Series = Psychosoc. Stres. Psychosomatic medicine = Psychosom Med Psychosomatic Medicine=Psychosom Med;; Psychosomatic Medicine = Psychosom Med Psychosomatic Medicine = Psychosom. Med. Psychosomatics=Psychosomatics;; Psychosomatics = Psychosomatics Psychosomatik: Literarische, Philosophische Und Medizinische Geschichten Zur Entstehung Eines Diskurses (1778-1936) = Hermaea Ger Forsch Psychosomatik: Literarische, Philosophische Und Medizinische Geschichten Zur Entstehung Eines Diskurses (1778-1936) = Hermaea. Ger. Forsch. Psychotherapeut = Psychotherapeut Psychotherapie Medizinische Psychologie = Psychother Med Psych Psychotherapie Medizinische Psychologie = Psychother. Med. Psych. Psychotherapie, medizinische Psychologie = Psychother Med Psychol (Stuttg) Psychotherapie, Medizinische Psychologie = Psychother. Med. Psychol. (Stuttg.) Psychotherapie Psychosomatik Medizinische Psychologie = Psychother Psych Med Psychotherapie Psychosomatik Medizinische Psychologie = Psychother. Psych. Med. Psychotherapie, Psychosomatik, medizinische Psychologie = Psychother Psychosom Med Psychol Psychotherapie, Psychosomatik, Medizinische Psychologie=Psychother Psychosom Med Psychol;; Psychotherapie, Psychosomatik, Medizinische Psychologie = Psychother. Psychosom. Med. Psychol. Psychotherapie und medizinische Psychologie = Psychother Med Psychol (Stuttg) Psychotherapie und Medizinische Psychologie = Psychother. Med. Psychol. (Stuttg.) Psychotherapy, American Culture, and Social Policy: Immoral Individualism = Cult Mind Soc Psychotherapy, American Culture, and Social Policy: Immoral Individualism = Cult. Mind. Soc. Psychotherapy and psychosomatics = Psychother Psychosom Psychotherapy and Psychosomatics=Psychother Psychosom;; Psychotherapy and Psychosomatics = Psychother Psychosom Psychotherapy and Psychosomatics = Psychother. Psychosom. Psychotherapy and Religion in Japan = Jpn Anthropol Worksh Psychotherapy and Religion in Japan = Jpn. Anthropol. Worksh. Psychotherapy (Chicago, Ill.) = Psychotherapy Psychotherapy Indications and Outcomes = Am Psychop Psychotherapy Indications and Outcomes = Am. Psychop. Psychotherapy = Psychother Psychotherapy = Psychother. Psychotherapy = Psychotherapy Psychotherapy research : journal of the Society for Psychotherapy Research = Psychother Res Psychotherapy Research = Psychother Res Psychotherapy Research = Psychother. Res. Psychotherapy-theory Research and Practice = Psychother-theor Res Psychotherapy-theory Research and Practice = Psychother-theor. Res. Psychotherapy With Older Men = Rout Ser Counsel Psychotherapy With Older Men = Rout. Ser. Counsel. Psycoloquy = Psycoloquy Pszichologiai tanulmanyok = Pszichol Tanulman Ptb-mitteilungen = Ptb-mitt Ptb-mitteilungen = Ptb-mitt. Ptb-texte = Ptb Text Ptb-texte = Ptb. Text. Pteridines = Pteridines Ptl-a Journal for Descriptive Poetics and Theory of Literature = Ptl-j Descript Poet Ptl-a Journal for Descriptive Poetics and Theory of Literature = Ptl-j. Descript. Poet. Ptolemy in Perspective = Archimedes Ptolemy in Perspective = Archimedes. Pubblicazioni del Centro di sperimentazione agricola e forestale = Pubbl. Cent. sper. agric. for. Pubblicazioni Del Dipartimento Di Studi Sulla Storia Del Pensiero Europeo "m F Sciacca", Universita Di Genova, Sezione Atti = Pubb Sciacca Sez Att Pubblicazioni Del Dipartimento Di Studi Sulla Storia Del Pensiero Europeo "m F Sciacca", Universita Di Genova, Sezione Atti = Pubb. Sciacca. Sez. Att. Pubblicazioni della Stazione Zoologica di Napoli. Section II: History and Philosophy of the Life Sciences = Pubbl. Stn. Zool. Napoli II Pubblicazioni Della Stazione Zoologica di Napoli. Section Ii: History and Philosophy of The Life Sciences=Pubbl Stn Zool Napoli II;; Pubblicazioni dell'Università di Ferrara = Pubbl. Univ. Ferrara Pubblicazioni Varie Del Museo Friulano Di Storia Naturale = Pubbl Varie Mus Friu Pubblicazioni Varie Del Museo Friulano Di Storia Naturale = Pubbl. Varie Mus. Friu. Puberty: Basic and Clinical Aspects = Front Endocrinol Puberty: Basic and Clinical Aspects = Front. Endocrinol. Publicaciones. Buenos Aires. Centro de Investigaciones Tisiologicas = Publ B Aires Cent Investig Publicaciones de la Institución »Tello Téllez de Meneses« = PublInstTTMeneses Publicaciones del Departamento de Matemáticas, Universidad de Extremadura = Publ. Dep. Mat. Univ. Extremadura Publicaciones del Instituto Antituberculoso "Francisco Moragas" de la Caja de Pensiones para la Vejez y de Ahorros = Publ Inst Antitubers Francisco Moragas Publicaciones del Museo de la Farmacia = Publ Mus Farm Publicaciones Matemáticas del Uruguay = Publ. Mat. Urug. Publicacions Matematiques = Publ Mat Publicacions Matematiques = Publ. Mat. Publicacions Matemàtiques = Publ. Mat. Public administration and development : a journal of the Royal Institute of Public Administration = Public Adm Dev Public Administration and Development = Int Inst Adm Sci Mg Public Administration and Development = Int. Inst. Adm. Sci. Mg. Public Administration and Development = Public Admin Develop Public Administration and Development = Public Admin. Develop. Public Administration and Public Policy = Public Adm Public Po Public Administration and Public Policy = Public Adm. Public Po. Public Administration Governance and Globalization = Public Adm Gov Glob Public Administration Governance and Globalization = Public Adm. Gov. Glob. Public Administration, Ngo's and Public Debt: Issues and Perspectives = Am 21 Century Polit Public Administration, Ngo's and Public Debt: Issues and Perspectives = Am. 21. Century. Polit. Public administration = Public Adm Public Administration = Public Admin Public Administration = Public Admin. Public Administration Review=Public Admin. Rev. Public Administration Review = Public Admin Rev Public Administration Review = Public Admin. Rev. Public administration review = Public Adm Rev Public Administration Review = Public Adm. Rev. Public Administration-sydney = Public Admin-sydney Public Administration-sydney = Public Admin-sydney. Public affairs quarterly = Public Aff Q Public affairs report : bulletin of the Bureau of Public Administration = Public Aff Rep Public Affairs Report = Public Aff. Rep. Public and Nonmotorized Transportation in Other Nations; Women's Issues in Transportation = Transport Res Rec Public and Nonmotorized Transportation in Other Nations; Women's Issues in Transportation = Transport. Res. Rec. Publication - American Institute of the History of Pharmacy = Publ Am Inst Hist Pharm Publication. Cayenne, French Guiana. Institut Pasteur de la Guyane francaise et de l'Inini = Publ Inst Pasteur Guyane Fr Inini Publication de l'Institut de Recherche Mathématique Avancée = Publ. Inst. Rech. Math. Av. Publicationes Mathematicae-debrecen = Publ Math-debrecen Publicationes Mathematicae-debrecen = Publ. Math-debrecen. Publication - Group for the Advancement of Psychiatry = Publ Group Adv Psychiatry Publication, Group for the Advancement of Psychiatry = Publ. Group Adv. Psychiatry Publication of The Harvard Information Infrastructure Project = Publ Harv Infor Infr Publication of The Harvard Information Infrastructure Project = Publ. Harv. Infor. Infr. Publication of the Society for Literature and Science: PSLS = Publ Soc Lit Sci Publication of The State Archives of The Free and Hanseatic City of Hamburg = Publ State Arch Free Publication of The State Archives of The Free and Hanseatic City of Hamburg = Publ. State Arch. Free Publication = Publication Publications and Research of Husserl = Phaenomenol Publications and Research of Husserl = Phaenomenol. Publications Astronomical Society of Australia = Publ Astron Soc Aust Publications Astronomical Society of Australia = Publ. Astron. Soc. Aust. Publications de la Societe historique et archeologique dans le Limbourg. Limburgs Geschied- en Oudheidkundig Genootschap = Publ Soc Hist Archeol Limbg Publications de la Societe savante d'Alsace et des regions de l'Est. Collection "Recherches et documents." = Publ Soc Savante Alsace Reg Est Publications de l'Institut de Recherche Mathématique de Rennes = Publ. Inst. Rech. Math. Rennes Publications du Centre de Recherches en Mathématiques Pures, Série II = Publ. Centre Rech. Math. Pures Sér. II Publications du Centre de Recherches en Mathématiques Pures, Séries I = Publ. Cent. Rech. Math. Pures Sér. I Publication Series - European Institute for Crime Prevention and Control, Affiliated With The United Nations = Ps Eur Inst Publication Series - European Institute for Crime Prevention and Control, Affiliated With The United Nations = Ps. Eur. Inst. Publications From The National Museum in Archaeology & History = Publ Natl Mus Stud Publications From The National Museum in Archaeology & History = Publ. Natl. Mus. Stud. Publications in child development. University of California, Berkeley = Publ Child Dev Univ Calif Publications in Ethnology-national Museum of Canada = Publ Ethnol Publications in Ethnology-national Museum of Canada = Publ. Ethnol. Publications in psychology. University of California (1868-1952) = Publ Psychol Publications in public health. University of California (1868-1952) = Publ Public Health Univ Calif Publications Mathématiques de la Faculté des Sciences de Besançon = Publ. Math. Fac. Sci. Besançon Publications Mathematiques De L'hes, No 102 = Publ Math-paris Publications Mathematiques De L'hes, No 102 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 100 = Publ Math-paris Publications Mathematiques De L'ihes, No 100 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 101 = Publ Math-paris Publications Mathematiques De L'ihes, No 101 = Publ. Math-paris. Publications Mathematiques De L'ihes No 103 = Publ Math-paris Publications Mathematiques De L'ihes No 103 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 104 = Publ Math-paris Publications Mathematiques De L'ihes, No 104 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 105 = Publ Math-paris Publications Mathematiques De L'ihes, No 105 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 106 = Publ Math-paris Publications Mathematiques De L'ihes, No 106 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 108 = Publ Math-paris Publications Mathematiques De L'ihes, No 108 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 109 = Publ Math-paris Publications Mathematiques De L'ihes, No 109 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 110 = Publ Math Ihes Publications Mathematiques De L'ihes, No 110 = Publ. Math. Ihes. Publications Mathematiques De L'ihes, No 111 = Publ Math Ihes Publications Mathematiques De L'ihes, No 111 = Publ. Math. Ihes. Publications Mathematiques De L'ihes, No 97 = Publ Math Publications Mathematiques De L'ihes, No 97 = Publ. Math. Publications Mathematiques De L'ihes, No 98 = Publ Math Publications Mathematiques De L'ihes, No 98 = Publ. Math. Publications Mathematiques De L'ihes, No 98 = Publ Math Ihes Publications Mathematiques De L'ihes, No 98 = Publ. Math. Ihes. Publications Mathematiques De L'ihes, No 98 = Publ Math-paris Publications Mathematiques De L'ihes, No 98 = Publ. Math-paris. Publications Mathematiques De L'ihes, No 99 = Publ Math-paris Publications Mathematiques De L'ihes, No 99 = Publ. Math-paris. Publications Mathematiques De L Ihes = Publ Math Publications Mathematiques De L Ihes = Publ. Math. Publications Mathematiques De L Ihes = Publ Math Ihes Publications Mathematiques De L Ihes = Publ. Math. Ihes Publications Mathematiques De L Ihes = Publ Math-paris Publications Mathematiques De L Ihes = Publ. Math-paris. Publications Mathématiques de l'Université Paris 7---Denis Diderot = Publ. Math. Univ. Paris 7---Denis Diderot Publications Mathématiques de l'Université Pierre et Marie Curie = Publ. Math. Univ. Pierre et Marie Curie Publications Mathématiques d'Orsay = Publ. Math. Orsay Publications Mathematiques, No 107 = Publ Math-paris Publications Mathematiques, No 107 = Publ. Math-paris. Publications Mathematiques, No 94 = Publ Math Publications Mathematiques, No 94 = Publ. Math. Publications Mathematiques, No 94 = Publ Math Ihes Publications Mathematiques, No 94 = Publ. Math. Ihes. Publications Mathematiques, No 95 = Publ Math Publications Mathematiques, No 95 = Publ. Math. Publications Mathematiques, No 95 = Publ Math-paris Publications Mathematiques, No 95 = Publ. Math-paris. Publications Mathematiques, No 96 = Publ Math Publications Mathematiques, No 96 = Publ. Math. Publications Mathematiques = Publ Math Publications Mathematiques = Publ. Math. Publications Mathematiques = Publ Math-paris Publications Mathematiques = Publ. Math-paris. Publications of Karelian Institute = Publ Kare Inst Publications of Karelian Institute = Publ. Kare. Inst. Publications of The American Association of Netherlandic Studies = Publ Aans Publications of The American Association of Netherlandic Studies = Publ. Aans. Publications of The American Statistical Association = Publ Am Stat Assoc Publications of The American Statistical Association = Publ. Am. Stat. Assoc. Publications of The Astronomical Observatory of Belgrade--series = Pub Astro Obs Belgr Publications of The Astronomical Observatory of Belgrade--series = Pub. Astro. Obs. Belgr. Publications of The Astronomical Observatory of Belgrade Series = Pub Astro Obs Belgr Publications of The Astronomical Observatory of Belgrade Series = Pub. Astro. Obs. Belgr. Publications of The Astronomical Society of Australia = Publ Astron Soc Aust Publications of The Astronomical Society of Australia = Publ. Astron. Soc. Aust. Publications of The Astronomical Society of Japan = Publ Astron Soc Jpn Publications of The Astronomical Society of Japan = Publ. Astron. Soc. Jpn. Publications of the Astronomical Society of the Pacific = PASP Publications of the Astronomical Society of the Pacific = Publ. Astron. Soc. Pac. Publications of The Astronomical Society of The Pacific = Publ Astron Soc Pac Publications of The Astronomical Society of The Pacific = Publ. Astron. Soc. Pac. Publications of the Australasian Institute of Mining and Metallurgy = Publ. Australas. Inst. Min. Metall. Publications of The Dominion Astrophysical Observatory = Publ Dom Astrophys O Publications of The Dominion Astrophysical Observatory = Publ. Dom. Astrophys. O. Publications of The Egon-sohmen-foundation = Pub Egon Sohmen Fdn Publications of The Egon-sohmen-foundation = Pub. Egon. Sohmen. Fdn. Publications of The Eisenhower Center = Publ Eisenh Publications of The Eisenhower Center = Publ. Eisenh. Publications of The English Goethe Society = Publ Engl Goethe Soc Publications of The English Goethe Society = Publ. Engl. Goethe Soc. Publications of The Eric Samson Chair in Jewish Civilization = Pub Eric S Publications of The Eric Samson Chair in Jewish Civilization = Pub. Eric S. Publications of The European Association of Psychology and Law = Pub Eur Assoc Psych Publications of The European Association of Psychology and Law = Pub. Eur. Assoc. Psych. Publications of the Faculty of Electrical Engineering = Publ. Fac. Electr. Engrg. Ser. Automat. Control Publications of The Forestry and Agricultural Sciences Committee (poznan Society for The Advancement of Arts and Sciences Ptpn) = Ptpn Roln Lesn Publications of The Forestry and Agricultural Sciences Committee (poznan Society for The Advancement of Arts and Sciences Ptpn) = Ptpn. Roln. Lesn. Publications of The German Historical Institute = Publ Ger Hist Inst Publications of The German Historical Institute = Publ. Ger. Hist. Inst. Publications of The Helen Dowling Institute for Biopsychosocial Medicine = Publ Hdi Publications of The Helen Dowling Institute for Biopsychosocial Medicine = Publ. Hdi. Publications of the HoChiMinh City Mathematical Society = Publ. HoChiMinh City Math. Soc. Publications of The Institute of Germanic Studies = Publ I Ger Stud Publications of The Institute of Germanic Studies = Publ. I. Ger. Stud. Publications of The International Center for Research On Bilingualism, A : Studies = Publ Icrb A Publications of The International Center for Research On Bilingualism, A : Studies = Publ. Icrb. A Publications of the International Research Center, Salzburg, Austria = Publ. Int. Res. Cent. Salzbg. Austria Publications of The Jaffee Center for Strategic Studies = Publ Jc Str Publications of The Jaffee Center for Strategic Studies = Publ. Jc. Str. Publications of The Modern Humanities Research Association = Publ Mod Hum Res Ass Publications of The Modern Humanities Research Association = Publ. Mod. Hum. Res. Ass. Publications of the Newton Institute = Publ. Newton Inst. Publications of The Newton Institute = Publ Newton Inst Publications of The Newton Institute = Publ. Newton Inst. Publications of The Research Institute for Mathematical Sciences = Publ Res I Math Sci Publications of The Research Institute for Mathematical Sciences = Publ. Res. I. Math. Sci. Publications of The Seto Marine Biological Laboratory Special Publication Series = P Seto Mar Biol Lab Publications of The Seto Marine Biological Laboratory Special Publication Series = P. Seto Mar. Biol. Lab. Publications of The Sir Thomas Browne Institute Leiden, New Series = Publ Thom B Publications of The Sir Thomas Browne Institute Leiden, New Series = Publ. Thom. B. Publications of The Thomas Instituut Te Utrecht = Pub Thomas Inst Publications of The Thomas Instituut Te Utrecht = Pub. Thomas Inst. Publications of The University of Kuopio : Medicine, Statistiics and Reviews = Publ K Med Publications of The University of Kuopio : Medicine, Statistiics and Reviews = Publ. K. Med. Publications of The Water and Environment Administration - Series A = Publ Wat Environ Adm Publications of The Water and Environment Administration - Series A = Publ. Wat. Environ. Adm. Publications On Information Science = Schr Inform Publications On Information Science = Schr. Inform. Public Budgeting and Finance=Public Budg. Finance Public choice = Public Choice Public Choice=Public Choice Public Choice = Public Choice Public citizen (Washington, D.C.) = Public Citiz Public Concept of Land Ownership = Compar Int Law St Public Concept of Land Ownership = Compar. Int. Law. St. Public Culture = Public Culture Public Debt and Economic Growth = Dynam Mod Econ Econ Public Debt and Economic Growth = Dynam. Mod. Econ. Econ. Public Education On Diet and Cancer = Dev Oncol Public Education On Diet and Cancer = Dev. Oncol. Public Ethics and Governance: Standards and Practices in Comparative Perspective = Res Public Policy An Public Ethics and Governance: Standards and Practices in Comparative Perspective = Res. Public Policy. An. Public Finance and Public Policy in The New Century = Cesifo Seminar Ser Public Finance and Public Policy in The New Century = Cesifo. Seminar. Ser. Public Finance-finances Publiques = Public Financ Public Finance-finances Publiques = Public Financ. Public Finance in Developing and Transitional Countries = Stud Fiscal Fed Stat Public Finance in Developing and Transitional Countries = Stud. Fiscal. Fed. Stat. Public Finance in Developing and Transitional Countries = Stud Fisc Fed Sl Fin Public Finance in Developing and Transitional Countries = Stud. Fisc. Fed. Sl. Fin. Public Finance=Public Finance Public Finance = Public Finance Public Finance Quarterly=Public Finance Quart. Public Finance Quarterly = Public Financ Quart Public Finance Quarterly = Public Financ. Quart. Public finance quarterly = Public Finan Q Public Finance Review=Public Finance Rev. Public Finance Review = Public Financ Rev Public Finance Review = Public Financ. Rev. Public Health and Protection of The Population = Int Congr Ser Public Health and Protection of The Population = Int. Congr. Ser. Public Health Genomics = Public Health Genom Public Health Genomics = Public Health Genom. Public Health Genomics = Public Health Genomi Public Health Genomics = Public Health Genomi. Public Health in Asia and The Pacific: Historical and Comparative Perspectives = Routl Adv Asia-pac Public Health in Asia and The Pacific: Historical and Comparative Perspectives = Routl. Adv. Asia-pac. Public Health in The 21st Century = Pub Health Cent Public Health in The 21st Century = Pub. Health Cent. Public Health in The 21st Century = Public Health 21st C Public Health in The 21st Century = Public Health 21st C. Public health monograph = Public Health Monogr Public Health Monograph = Public Health Monogr. Public health nursing (Boston, Mass.) = Public Health Nurs Public health nursing = Public Health Nurs Public Health Nursing=Public Health Nurs;; Public Health Nursing = Public Health Nurs Public Health Nursing = Public Health Nurs. Public health nutrition = Public Health Nutr Public Health Nutrition = Public Health Nutr Public Health Nutrition = Public Health Nutr. Public health papers = Public Health Pap Public Health Papers = Public Health Pap. Public Health Policy and Ethics = Int Libr Eth Law New Public Health Policy and Ethics = Int. Libr. Eth. Law. New. Public health = Public Health Public Health=Public Health;; Public Health = Public Health Public health reports = Public Health Rep Public Health Reports=Public Health Rep;; Public Health Reports = Public Health Rep Public Health Reports = Public Health Rep. Public health reports (Washington, D.C. : 1974) = Public Health Rep Public health reviews = Public Health Rev Public Health Reviews=Public Health Rev;; Public Health Reviews = Public Health Rev Public Health Reviews = Public Health Rev. Public health technical monograph. United States. Public Health Service = Public health tech monogr US Public Health-the Journal of The Society of Medical Officers of Health = Public H-j Soc Med O Public Health-the Journal of The Society of Medical Officers of Health = Public H-j. Soc. Med. O. Public Historian = Publ Historian Public Historian = Publ. Historian Public Interest = Public Interest Public Key Cryptography = Lect Notes Comput Sc Public Key Cryptography = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2003, Proceedings = Lect Notes Comput Sc Public Key Cryptography - Pkc 2003, Proceedings = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2004, Proceedings = Lect Notes Comput Sc Public Key Cryptography - Pkc 2004, Proceedings = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2005 = Lect Notes Comput Sc Public Key Cryptography - Pkc 2005 = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2006, Proceedings = Lect Notes Comput Sc Public Key Cryptography - Pkc 2006, Proceedings = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2007 = Lect Notes Comput Sc Public Key Cryptography - Pkc 2007 = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2008 = Lect Notes Comput Sc Public Key Cryptography - Pkc 2008 = Lect. Notes. Comput. Sc. Public Key Cryptography-pkc 2009, Proceedings = Lect Notes Comput Sc Public Key Cryptography-pkc 2009, Proceedings = Lect. Notes. Comput. Sc. Public Key Cryptography - Pkc 2010, Proceedings = Lect Notes Comput Sc Public Key Cryptography - Pkc 2010, Proceedings = Lect. Notes. Comput. Sc. Public Key Cryptography, Proceedings = Lect Notes Comput Sc Public Key Cryptography, Proceedings = Lect. Notes. Comput. Sc. Public-key Cryptography = Proc Sym Ap Public-key Cryptography = Proc. Sym. Ap. Public Key Crytography = Lect Notes Comput Sc Public Key Crytography = Lect. Notes. Comput. Sc. Public Key Infrastructure = Lect Notes Comput Sc Public Key Infrastructure = Lect. Notes. Comput. Sc. Public Key Infrastructure, Proceedings = Lect Notes Comput Sc Public Key Infrastructure, Proceedings = Lect. Notes. Comput. Sc. Public Key Infrastructures, Services and Applications = Lect Notes Comput Sc Public Key Infrastructures, Services and Applications = Lect. Notes. Comput. Sc. Public law forum = Public Law Forum Public Law in East and Southeast Asia = Pub Law E Se Asia Public Law in East and Southeast Asia = Pub. Law E. Se. Asia Public law = Public Law Public Leadership: Perspectives and Practices = Anzsog Monogr Public Leadership: Perspectives and Practices = Anzsog. Monogr. Public Management and The Metagovernance of Hierarchies, Networks and Markets = Contrib Econ Public Management and The Metagovernance of Hierarchies, Networks and Markets = Contrib. Econ. Public Management Review = Public Manag Rev Public Management Review = Public Manag. Rev. Public Management Sources=Public Management Sources Public Money & Management = Public Money Manage Public Money & Management = Public Money Manage. Public opinion quarterly = Public Opin Q Public Opinion Quarterly = Public Opin. Q. Public Opinion Quarterly = Public Opin Quart Public Opinion Quarterly = Public Opin. Quart. Public Performance & Management Review = Public Perform Manag Public Performance & Management Review = Public Perform. Manag. Public personnel management = Public Pers Manage Public Personnel Management = Public Pers Manage Public Personnel Management = Public Pers. Manage. Public Personnel Review = Public Pers Rev Public Personnel Review = Public Pers. Rev. Public Policies for Fostering Entrepreneurship: A European Perspective = Int Stud Entrep Public Policies for Fostering Entrepreneurship: A European Perspective = Int. Stud. Entrep. Public Policy and The New European Agendas = New Horiz Public Pol Public Policy and The New European Agendas = New Horiz. Public Pol. Public Policy for Academic Quality: Analyses of Innovative Policy Instruments = High Educ Dynam Public Policy for Academic Quality: Analyses of Innovative Policy Instruments = High. Educ. Dynam. Public Policy for Regional Development = Routl Stud Glob Comp Public Policy for Regional Development = Routl. Stud. Glob. Comp. Public Policy in An Entrepreneurial Economy: Creating The Conditions for Business Growth = Int Stud Entrep Public Policy in An Entrepreneurial Economy: Creating The Conditions for Business Growth = Int. Stud. Entrep. Public Policy=Public Pol. Public policy = Public Policy Public Policy = Public Policy Public Policy Series = Public Policy Ser Public Policy Series = Public Policy Ser. Public Policy: Why Ethics Matters = Anzsog Monogr Public Policy: Why Ethics Matters = Anzsog. Monogr. Public Procurement: The Continuing Revolution = Int Econ Dev Law Ser Public Procurement: The Continuing Revolution = Int. Econ. Dev. Law. Ser. Public Purpose of Education and Schooling = Jos-bas Edc Public Purpose of Education and Schooling = Jos-bas. Edc. Public Relations in Global Cultural Contexts: Multi-paradigmatic Perspectives = Commun Ser Public Relations in Global Cultural Contexts: Multi-paradigmatic Perspectives = Commun. Ser. Public Relations Journal = Public Relat. J. Public Relations Metrics: Research and Evaluation = Lea Commun Ser Public Relations Metrics: Research and Evaluation = Lea. Commun. Ser. Public Relations Review = Public Relat Rev Public Relations Review = Public Relat. Rev. Public Relations Theory = Communic Public Relations Theory = Communic. Public Roads = Public Roads Public Safety/law Enforcement Technology = P Soc Photo-opt Ins Public Safety/law Enforcement Technology = P. Soc. Photo-opt. Ins. Public Sector Contracting Report = Public Sect. Contract. Rep. Public sector contracting report : the monthly guide to Medicare and Medicaid managed care = Public Sect Contract Rep Public sector, health care risk management = Public Sector Health Care Risk Manage Public Sector, Health Care Risk Management = Public Sector. Health Care Risk Manage. Public Service Interpreting:the First Steps = Palg Txb Transl Inte Public Service Interpreting:the First Steps = Palg. Txb. Transl. Inte. Public Services Under Reconstruction = Routl Stud Manag Org Public Services Under Reconstruction = Routl. Stud. Manag. Org. Public Sphere: Liberal Modernity, Catholicism, Islam = Cult Relig Int Relat Public Sphere: Liberal Modernity, Catholicism, Islam = Cult. Relig. Int. Relat. Public Square = Pub Square Public Square = Pub. Square Public Transport: Its Planning, Management and Operation, Fifth Edition = Nat Built Environ Se Public Transport: Its Planning, Management and Operation, Fifth Edition = Nat. Built. Environ. Se. Public Understanding of Science: A History of Communicating Scientific Ideas = Routl St Hist Sci Te Public Understanding of Science: A History of Communicating Scientific Ideas = Routl. St. Hist. Sci. Te. Public understanding of science (Bristol, England) = Public Underst Sci Public Understanding of Science = Public Underst Sci Public Understanding of Science = Public Underst. Sci. Public welfare = Public Welf Public Welfare = Public Welf. Public Welfare = Public Welfare Public Works = Public Works Public Worlds = Public Worlds Publikationen Der Jung-stiftung Fur Wissenschaft Und Forschung = Pub Jung St Publikationen Der Jung-stiftung Fur Wissenschaft Und Forschung = Pub. Jung. St. Publikationen des Henri-Poincaré-Archivs = Publ. Henri-Poincaré-Arch. Publishing and Development in The Third World = Hz St Publ Publishing and Development in The Third World = Hz. St. Publ. Publishing History = Publ Hist Publishing History = Publ. Hist. Publishing Research Quarterly = Publish Res Q Publishing Research Quarterly = Publish. Res. Q. Publius = Publius Publius-the Journal of Federalism = Publius J Federalism Publius-the Journal of Federalism = Publius. J. Federalism Puerto Rican Women and Children = T Soc Psych Puerto Rican Women and Children = T. Soc. Psych. Puerto Rico Agricultural Experiment Station Bulletin = Puerto Rico Aes Bull Puerto Rico Agricultural Experiment Station Bulletin = Puerto Rico Aes. Bull. Puerto Rico health sciences journal = P R Health Sci J Puerto Rico Health Sciences Journal=P R Health Sci J;; Puerto Rico Health Sciences Journal = P R Health Sci J Puerto Rico Health Sciences Journal = P. R. Health Sci. J. Puerto Rico y su enfermera = P R Enferm Puerto Rico y Su Enfermera = P. R. Enferm. Pugwash Monograph = Pugwash Mon Pugwash Monograph = Pugwash Mon. Pula = Pula Pulaski County historical review = Pulaski Cty Hist Rev Pulmonary Blood Vessels in Lung Disease = Prog R Res Pulmonary Blood Vessels in Lung Disease = Prog. R. Res. Pulmonary Cytopathology = Essent Cytopathol Pulmonary Cytopathology = Essent. Cytopathol. Pulmonary Emphysema = Ann Ny Acad Sci Pulmonary Emphysema = Ann. Ny. Acad. Sci. Pulmonary Manifestations of Systemic Diseases = Eur Respir Monogr Pulmonary Manifestations of Systemic Diseases = Eur. Respir. Monogr. Pulmonary Pharmacology and Therapeutics=Pulm Pharmacol Ther;; Pulmonary Pharmacology and Therapeutics = Pulm. Pharmacol. Ther. Pulmonary pharmacology = Pulm Pharmacol Pulmonary Pharmacology = Pulm Pharmacol Pulmonary Pharmacology = Pulm. Pharmacol. Pulmonary pharmacology & therapeutics = Pulm Pharmacol Ther Pulmonary Pharmacology & Therapeutics = Pulm Pharmacol Ther Pulmonary Pharmacology & Therapeutics = Pulm. Pharmacol. Ther. Pulmonary Problems in Pregnancy = Respir Med Ser Pulmonary Problems in Pregnancy = Respir. Med. Ser. Pulp and Paper Industry Technical Conference = Pulp Pap Ind Tech Co Pulp and Paper Industry Technical Conference = Pulp Pap. Ind. Tech. Co. Pulp and Paper Magazine of Canada = Pulp Paper Mag Can Pulp and Paper Magazine of Canada = Pulp Paper Mag. Can. Pulp & Paper-canada = Pulp Pap-canada Pulp & Paper-canada = Pulp Pap-canada. Pulpudeva. Semaines philippopolitaines de l’histoire et de la culture thrace = Pulpudeva Pulsar Astronomy - 2000 and Beyond: Iau Colloquium 177 = Astr Soc P Pulsar Astronomy - 2000 and Beyond: Iau Colloquium 177 = Astr. Soc. P. Pulsars: Problems and Progress = Astr Soc P Pulsars: Problems and Progress = Astr. Soc. P. Pulsation, Rotation and Mass Loss in Early-type Stars = Iau Symp Pulsation, Rotation and Mass Loss in Early-type Stars = Iau. Symp. Pulsed Electric Fields Technology for The Food Industry: Fundamentals and Applications = Food Eng Ser Pulsed Electric Fields Technology for The Food Industry: Fundamentals and Applications = Food Eng. Ser. Pulsed Metal Vapour Lasers = Nato Sci S 1 Disarm Pulsed Metal Vapour Lasers = Nato. Sci. S. 1. Disarm. Pulsed Rf Sources for Linear Colliders = Aip Conf Proc Pulsed Rf Sources for Linear Colliders = Aip. Conf. Proc. Pulse of the Montana State Nurses Association = Pulse Pulse Power for Lasers Iii = P Soc Photo-opt Ins Pulse Power for Lasers Iii = P. Soc. Photo-opt. Ins. Pumping Sludge and Slurry = Imeche Sem Pumping Sludge and Slurry = Imeche. Sem. Pumps and Their Applications = Pumps Appl Pumps and Their Applications = Pumps Appl. Pumps-pompes-pumpen = Pumps-pompes-pumpen Pumps, Transporters, and Ion Channels: Studies On Their Structure, Function, and Cell Biology = Ser Cent Es Pumps, Transporters, and Ion Channels: Studies On Their Structure, Function, and Cell Biology = Ser. Cent. Es. Punctured Torus Groups and 2-bridge Knot Groups (i) = Lect Notes Math Punctured Torus Groups and 2-bridge Knot Groups (i) = Lect. Notes. Math. Punishment and Freedom: The Rabbinic Construction of Criminal Law = Divin Reread Late An Punishment and Freedom: The Rabbinic Construction of Criminal Law = Divin. Reread. Late. An. Punishment, Justice and International Relations: Ethics and Order After The Cold War = Contemp Secur Stud Punishment, Justice and International Relations: Ethics and Order After The Cold War = Contemp. Secur. Stud. Punishment, Politics and Culture = Stud Law Politics So Punishment, Politics and Culture = Stud. Law. Politics So. Punishment & Society-international Journal of Penology = Punishm Soc Punishment & Society-international Journal of Penology = Punishm. Soc. Punitive Damages: Common Law and Civil Law Perspectives = Tort Insur Law Punitive Damages: Common Law and Civil Law Perspectives = Tort. Insur. Law Punjab University Economist=Punjab Univ. Econ. Pupil Assessment and The Role of Final Examinations in Secondary Education = Eur Educ R Pupil Assessment and The Role of Final Examinations in Secondary Education = Eur. Educ. R. Puppet and The Dwarf: The Perverse Core of Christianity = Short Circuits Puppet and The Dwarf: The Perverse Core of Christianity = Short. Circuits. Puppetry Journal = Puppetry J Puppetry Journal = Puppetry J. Purchasing administration = Purch Adm Purchasing Administration = Purch. Adm. Purdon's Pennsylvania statutes, annotated. Pennsylvania = Purdons Pa Statut Annot Pa Purdue Studies in Romance Literatures = Purdue Stud Roman Li Purdue Studies in Romance Literatures = Purdue Stud. Roman. Li. Pure and applied chemistry. Chimie pure et appliquee = Pure Appl Chem Pure and Applied Chemistry = Pure Appl Chem Pure and Applied Chemistry = Pure Appl. Chem. Pure and Applied Geophysics = Pure Appl Geophys Pure and Applied Geophysics = Pure Appl. Geophys. Pure and Applied Mathematical Quarterly = Pure Appl. Math. Q. Pure and Applied Mathematics : A Program of Monographs, Textbooks, and Lecture Notes = Pure A Math Pure and Applied Mathematics : A Program of Monographs, Textbooks, and Lecture Notes = Pure A Math. Pure and Applied Mathematics = Pure Appl. Math. Pure and Applied Mathematics = Pure Appl. Math. Pure and Applied Mathematics Quarterly = Pure Appl Math Q Pure and Applied Mathematics Quarterly = Pure Appl. Math. Q. Pure and Applied Mathematika Sciences = Pure Appl. Math. Sci. Pure and Applied Optics = Pure Appl Opt Pure and Applied Optics = Pure Appl. Opt. Pure and Applied Physics = Pure Appl. Phys. Purely Objective Reality = Semiot Commun Cognit Purely Objective Reality = Semiot. Commun. Cognit. Pure Mathematics and Applications = Pure Math. Appl. Pure Mathematics Manuscript = Pure Math. Manuscript Purine and Pyrimidine Metabolism in Man Ix = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Ix = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man Viii = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Viii = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man Vii, Pt A = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Vii, Pt A = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man Vii, Pt B = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Vii, Pt B = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man Vi, Pt A = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Vi, Pt A = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man Vi, Pt B = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man Vi, Pt B = Adv. Exp. Med. Biol. Purine and Pyrimidine Metabolism in Man X = Adv Exp Med Biol Purine and Pyrimidine Metabolism in Man X = Adv. Exp. Med. Biol. Purinergic Regulation of Respiratory Diseases = Subcell Biochem Purinergic Regulation of Respiratory Diseases = Subcell. Biochem. Purinergic signalling = Purinergic Signal Purinergic Signalling = Purinergic Signalling Purinergic Signalling = Purinerg Signal Purinergic Signalling = Purinerg. Signal. Pushing At Boundaries = Germ Monit Pushing At Boundaries = Germ. Monit. Pushing At Boundaries = Ger Monitor Pushing At Boundaries = Ger. Monitor. Pushing The Boundaries: New Frontiers in Conflict Resolution and Collaboration = Res Soc Mov Pushing The Boundaries: New Frontiers in Conflict Resolution and Collaboration = Res. Soc. Mov. Pushing The Boundaries: New Frontiers in Conflict Resolution and Collaboration = Res Soc Mov Confl Ch Pushing The Boundaries: New Frontiers in Conflict Resolution and Collaboration = Res. Soc. Mov. Confl. Ch. Puteoli. Studi di storia antica = Puteoli Putkiremonttien Uudet Hankinta- Ja Palvelumallit = Vtt Res Notes Putkiremonttien Uudet Hankinta- Ja Palvelumallit = Vtt. Res. Notes. Putting Content Online: A Practical Guide for Libraries = Chandos Inf Prof Ser Putting Content Online: A Practical Guide for Libraries = Chandos. Inf. Prof. Ser. Putting Food On What Was The Soviet Table = Geonom Inst Putting Food On What Was The Soviet Table = Geonom. Inst. Putting Teeth in The Tiger: Improving The Effectiveness of Arms Embargoes = Contrib Confl Manag Putting Teeth in The Tiger: Improving The Effectiveness of Arms Embargoes = Contrib. Confl. Manag. Puzzles of Government Formation: Coalition Theory and Deviant Cases = Routl Ecpr Stud Eur Puzzles of Government Formation: Coalition Theory and Deviant Cases = Routl. Ecpr. Stud. Eur. Puzzles of Politics: Inquiries Into The Genesis and Transformation of International Relations = New Int Relat Puzzles of Politics: Inquiries Into The Genesis and Transformation of International Relations = New. Int. Relat. Pvsc: 2008 33rd Ieee Photovoltaic Specialists Conference, Vols 1-4 = Ieee Phot Spec Conf Pvsc: 2008 33rd Ieee Photovoltaic Specialists Conference, Vols 1-4 = Ieee Phot. Spec. Conf. Pynchon and The Political = Stud Major Lit Autho Pynchon and The Political = Stud. Major. Lit. Autho. Pyrenae. Crónica arqueológica = Pyrenae Pyrethrum Post = Pyrethrum Post Pyrodynamic = Pyrodynamic Pythagorean-hodograph Curves: Algebra and Geometry Inseparable = Geom Comput Pythagorean-hodograph Curves: Algebra and Geometry Inseparable = Geom. Comput. Python Scripting for Computational Science, Third Edition = Texts Comput Sci Eng Python Scripting for Computational Science, Third Edition = Texts. Comput. Sci. Eng. Q.A. brief = QA Brief Q-adverbs As Selective Binders = Interface Explor Q-adverbs As Selective Binders = Interface. Explor. QA Review = QA Rev. QA review : quality assurance news and views = QA Rev Qatar University Science Journal = Qatar Univ. Sci. J. Qcd and Numerical Analysis Iii = Lect Notes Comp Sci Qcd and Numerical Analysis Iii = Lect. Notes. Comp. Sci. Qcd At 200 Tev = E Maj Int S Qcd At 200 Tev = E. Maj. Int. S. Qcd At Hera = Springer Tr Mod Phys Qcd At Hera = Springer. Tr. Mod. Phys. Qcd At Work 2007 = Aip Conf Proc Qcd At Work 2007 = Aip. Conf. Proc. Qcd At Work 2010: International Workshop On Quantum Chromodynamics:theory and Experiment Beppe Nardulli Memorial Workshop = Aip Conf Proc Qcd At Work 2010: International Workshop On Quantum Chromodynamics:theory and Experiment Beppe Nardulli Memorial Workshop = Aip. Conf. Proc. Qcd (at) Work = Aip Conf Proc Qcd (at) Work = Aip. Conf. Proc. Qcd Hard Hadronic Processes = Nato Adv Sci I B-phy Qcd Hard Hadronic Processes = Nato. Adv. Sci. I. B-phy. Qcd@work 2005 = Aip Conf Proc Qcd@work 2005 = Aip. Conf. Proc. Qdt = Qdt Qdt: Quintessence of Dental Technology 2005 = Qdt Qdt: Quintessence of Dental Technology 2005 = Qdt. Qdt: Quintessence of Dental Technology 2006 = Qdt Qdt: Quintessence of Dental Technology 2006 = Qdt. Qdt: Quintessence of Dental Technology 2007 = Qdt Qdt: Quintessence of Dental Technology 2007 = Qdt. Qdt: Quintessence of Dental Technology 2008 = Qdt Qdt: Quintessence of Dental Technology 2008 = Qdt. Qdt: Quintessence of Dental Technology 2009 = Qdt Qdt: Quintessence of Dental Technology 2009 = Qdt. Qdt: Quintessence of Dental Technology 2010 = Qdt Qdt: Quintessence of Dental Technology 2010 = Qdt. Qdt: Quintessence of Dental Technology 2011 = Qdt Qdt: Quintessence of Dental Technology 2011 = Qdt. Qed Structure Functions = Aip Conf Proc Qed Structure Functions = Aip. Conf. Proc. Qest 2004: First International Conference On The Quantitative Evaluation of Systems, Proceedings = Int Conf Quant Eval Qest 2004: First International Conference On The Quantitative Evaluation of Systems, Proceedings = Int. Conf. Quant. Eval. Qest 2006: Third International Conference On The Quantitative Evaluation of Systems = Int Conf Quant Eval Qest 2006: Third International Conference On The Quantitative Evaluation of Systems = Int. Conf. Quant. Eval. Qirt Journal = Qirt J Qirt Journal = Qirt J. Qjm-an International Journal of Medicine = Qjm-int J Med Qjm-an International Journal of Medicine = Qjm-int. J. Med. QJM : monthly journal of the Association of Physicians = QJM Qjm-monthly Journal of The Association of Physicians = Qjm-mon J Assoc Phys Qjm-monthly Journal of The Association of Physicians = Qjm-mon. J. Assoc. Phys. QJM=QJM;; QJM = QJM Qme-quantitative Marketing and Economics = Qme-quant Mark Econ Qme-quantitative Marketing and Economics = Qme-quant. Mark. Econ. QMW Maths Notes = QMW Maths Notes Qohelet in The Context of Wisdom = Bib Eph The Qohelet in The Context of Wisdom = Bib. Eph. The Qp-pq Quantum Probability and White Noise Analysis = Qtm Prob Wht Noi Qp-pq Quantum Probability and White Noise Analysis = Qtm. Prob. Wht. Noi. Qp - Quaternary Proceedings = Quat Proc Qp - Quaternary Proceedings = Quat. Proc. QRB. Quality review bulletin = QRB Qual Rev Bull QRB; Quality Review Bulletin = QRB Qual. Rev. Bull. QRC advisor = QRC Advis QRC Advisor = QRC Advis. Qsar & Combinatorial Science = Qsar Comb Sci Qsar & Combinatorial Science = Qsar Comb. Sci. QSAR & Combinatorial Science = QSAR Comb. Sci. Qsar in Environmental and Health Sciences = Qsar Environ Health Qsar in Environmental and Health Sciences = Qsar Environ. Health Qsic 2006: Sixth International Conference On Quality Software, Proceedings = Int Conf Qual Softw Qsic 2006: Sixth International Conference On Quality Software, Proceedings = Int. Conf. Qual. Softw. Qsic 2008: Proceedings of The Eighth International Conference On Quality Software = Int Conf Qual Softw Qsic 2008: Proceedings of The Eighth International Conference On Quality Software = Int. Conf. Qual. Softw. Qso Absorption Lines = Eso Astrophy Symp Qso Absorption Lines = Eso. Astrophy. Symp. Qst = Qst Q-theory of Finite Semigroups = Springer Monogr Math Q-theory of Finite Semigroups = Springer. Monogr. Math. Qt Prolongation and Ventricular Arrhythmias = Ann Ny Acad Sci Qt Prolongation and Ventricular Arrhythmias = Ann. Ny. Acad. Sci. Quaderni aquileiesi = QuadAquil Quaderni catanesi di cultura classica e medievale = QCCCM Quaderni catanesi di studi classici e medievali = QC Quaderni catanesi di studi classici e medievali = QuadCat Quaderni. Centro studi lunensi = QuadStLun Quaderni d’archeologia reggiana = QuadAReggio Quaderni del Dipartimento delle arti, Università della Calabria = QuadACal Quaderni del Gruppo archeologico ostigliese = QuadAOst Quaderni dell' Accademia Pontaniana = Quad. Accad. Pontaniana Quaderni della nutrizione = Quad Nutr Quaderni Della Revista Di Economia Agraria = Quad Riv Ec Quaderni Della Revista Di Economia Agraria = Quad. Riv. Ec. Quaderni Della Rivista Italiana Di Musicologia = Quad Riv It Quaderni Della Rivista Italiana Di Musicologia = Quad. Riv. It. Quaderni della Soprintendenza archeologica del Piemonte = QuadAPiem Quaderni dell'Ingegnere Chimico Italiano = Quad. Ing. Chim. Ital. Quaderni Dell Ingegnere Chimico Italiano = Quad Ing Chim Ital Quaderni Dell Ingegnere Chimico Italiano = Quad. Ing. Chim. Ital. Quaderni dell'Ist. di Filosofia, Univ. degli Studi di Perugia, Fac. di Magistero = QIFP Quaderni dell'Istituto di Archeologia e Storia antica dell'Univ. G. d'Annunzio, Chieti = QIASA Quaderni dell’Istituto di archeologia e storia antica, Università di Chieti = QuadChieti Quaderni dell'Istituto di Filologia Greca di Cagliari = QIFG Quaderni dell’Istituto di filologia greca = QuadIstFilGr Quaderni dell'Istituto di Lingua e Letteratura latina. Università di Roma, Fac. di Magistero = QILL Quaderni dell’Istituto di lingua e letteratura latina, Università di Roma = QuadIstLat Quaderni del Museo archeologico F. Ribezzo di Brindisi = QMAB Quaderni del Museo archeologico regionale Antonino Salinas = QuadMusSalinas Quaderni del Raggruppamento tosco-umbro-emiliano di storia della medicina = Quad Raggruppamento Toscoumbroemiliano Stor Med Quaderni di antibiotica = Quad Antibiot Quaderni di archeologia della Libia = QAL Quaderni di archeologia della Libia = QuadALibya Quaderni di archeologia del Mantovano = QuadAMant Quaderni di archeologia del Veneto = QuadAVen Quaderni di archeologia, Università di Messina = QuadAMess Quaderni Di Azione Sociale = Quad Azione Soc Quaderni di clinica ostetrica e ginecologica = Quad Clin Ostet Ginecol Quaderni di Clinica Ostetrica e Ginecologica = Quad. Clin. Ostet. Ginecol. Quaderni di criminologia clinica = Quad Criminol Clin Quaderni di Criminologia Clinica = Quad. Criminol. Clin. Quaderni di Cultura e di Tradizione classica = QCTC Quaderni di Economia e Finanza=Quaderni Econ. Finanza Quaderni di filologia classica dell'Università di Trieste, Ist. di Filol. class. = QFC Quaderni di Gerico = QuadGerico Quaderni di Matematica = Quad. Mat. Quaderni di merceologia = Quad Merceol Quaderni di protostoria. Università di Perugia = QuadProtost Quaderni di radiologia = Quad Radiol Quaderni di Radiologia = Quad. Radiol. Quaderni di Ricerca in Didattica = Quad. Ric. Didatt. Quaderni Di Sociologia = Quad Sociol Quaderni Di Sociologia = Quad. Sociol. Quaderni di storia della medicina e della scienza / Cattedra di storia della medicina della Facolta di medicina e chirurgia dell'Universita degli studi di Roma "La Sapienza" = Quad Stor Med Sci Quaderni di storia = QS Quaderni di storia = QuadStor Quaderni D Italianistica = Quad Ital Quaderni D Italianistica = Quad. Ital. Quaderni erbesi. Civico museo archeologico di Erba = QuadErb Quaderni friulani di archeologia = QuadFriulA Quaderni internazionali di storia della medicina e della sanita = Quad Int Stor Med Sanita Quaderni. Istituto di lingue e letterature classiche, Facoltà di magistero, Università degli studi, Lecce = QuadLecce Quaderni linguistici e filologici: ricerche svolte presso l'Univ. degli Studi di Macerata = QLF Quaderni Medievali = Quad Medievali Quaderni Medievali = Quad. Medievali Quaderni per la storia dell'Universita di Padova = Quad Stor Univ Padova Quaderni = Quad. Accad. Sci. Torino Quaderni Sclavo di diagnostica clinica e di laboratorio = Quad Sclavo Diagn Quaderni Sclavo di Diagnostica Clinica e di Laboratorio = Quad. Sclavo Diagn. Quaderni Scuola Normale Superiore Pisa-monographs Scuola Normale Superiore Pisa = Quad Sc Norm Super Quaderni Scuola Normale Superiore Pisa-monographs Scuola Normale Superiore Pisa = Quad. Sc. Norm. Super. Quaderni. Soprintendenza archeologica per la provincie di Cagliari e Oristano = QuadACagl Quaderni Storici delle Marche=Quaderni Storici delle Marche Quaderni storici = Quad Stor Quaderni storici = QuadStorici Quaderni Storici = Quad Storici Quaderni Storici = Quad. Storici Quaderni urbinati di cultura classica = QuadUrbin Quaderni Urbinati Di Cultura Classica = Quad Urbinati Cult C Quaderni Urbinati Di Cultura Classica = Quad. Urbinati Cult. C. Quaderni Urbinati Di Cultura Classica = Quad Urbin Cult Clas Quaderni Urbinati Di Cultura Classica = Quad. Urbin. Cult. Clas. Quaderni urbinati di cultura classica = QUCC Quaderns d’arqueologia i història de la ciutat (Barcelona) = QuadABarcel Quaderns de prehistòria i arqueologia de Castelló = QuadCast Quadrangular Algebras = Math N Princ Quadrangular Algebras = Math. N. Princ. Quadratic Forms - Algebra, Arithmetic, and Geometry = Contemp Math Quadratic Forms - Algebra, Arithmetic, and Geometry = Contemp. Math. Quadrature Domains and Their Applications: The Harold S. Shapiro Anniversary Volume = Oper Theor Quadrature Domains and Their Applications: The Harold S. Shapiro Anniversary Volume = Oper. Theor. Quadrature Domains and Their Applications: The Harold S. Shapiro Anniversary Volume = Oper Theory Adv Appl Quadrature Domains and Their Applications: The Harold S. Shapiro Anniversary Volume = Oper. Theory. Adv. Appl. Quadruplex Nucleic Acids = Rsc Biomol Sci Quadruplex Nucleic Acids = Rsc. Biomol. Sci. Quaerendo = Quaerendo Quaestiones Mathematicae = Quaestiones Math. Quaestiones Mathematicae = Quaest Math Quaestiones Mathematicae = Quaest. Math. Quaker history = Quaker Hist Qualification of Inspection Procedures = Euro Mech M Qualification of Inspection Procedures = Euro. Mech. M. Qualitas Plantarum Et Materiae Vegetabiles = Qual Plant Mater Veg Qualitas Plantarum Et Materiae Vegetabiles = Qual. Plant. Mater. Veg. Qualitas Plantarum-plant Foods for Human Nutrition = Qual Plant Qualitas Plantarum-plant Foods for Human Nutrition = Qual. Plant. Qualitative and Quantitative Practical Reasoning = Lect Notes Artif Int Qualitative and Quantitative Practical Reasoning = Lect. Notes. Artif. Int. Qualitative health research = Qual Health Res Qualitative Health Research = Qual Health Res Qualitative Health Research = Qual. Health Res. Qualitative Housing Analysis: An International Perspective = Stud Qual Methodol Qualitative Housing Analysis: An International Perspective = Stud. Qual. Methodol. Qualitative Indicators of Labour Standards: Comparative Methods and Applications = Soc Indic Res Ser Qualitative Indicators of Labour Standards: Comparative Methods and Applications = Soc. Indic. Res. Ser. Qualitative Inquiry = Qual Inq Qualitative Inquiry = Qual. Inq. Qualitative Methods in Inverse Scattering Theory: An Introduction = Interact Mech Math Qualitative Methods in Inverse Scattering Theory: An Introduction = Interact. Mech. Math. Qualitative Research = Qual Res Qualitative Research = Qual. Res. Qualitative sociology = Qual Sociol Qualitative Sociology = Qual Sociol Qualitative Sociology = Qual. Sociol. Qualitative Spatial Abstraction in Reinforcement Learning = Cogn Technol Qualitative Spatial Abstraction in Reinforcement Learning = Cogn. Technol. Qualitative Spatial Reasoning With Topological Information = Lect Notes Artif Int Qualitative Spatial Reasoning With Topological Information = Lect. Notes. Artif. Int. Qualitative Theory of Differential Equations = Colloq Math Soc J B Qualitative Theory of Differential Equations = Colloq. Math. Soc. J. B. Qualitative Theory of Planar Differential Systems = Universitext Qualitative Theory of Planar Differential Systems = Universitext. Qualitative Urban Analysis: An International Perspective = Stud Qual Methodol Qualitative Urban Analysis: An International Perspective = Stud. Qual. Methodol. Qualities of Food = New Dynam Innov Comp Qualities of Food = New. Dynam. Innov. Comp. Quality and Reliability Engineering International = Qual Reliab Eng Int Quality and Reliability Engineering International = Qual. Reliab. Eng. Int. Quality and Reliability for Optical Systems = P Soc Photo-opt Ins Quality and Reliability for Optical Systems = P. Soc. Photo-opt. Ins. Quality and Reliability of Large-eddy Simulations = Ercoftac Ser Quality and Reliability of Large-eddy Simulations = Ercoftac. Ser. Quality and Statistics: Total Quality Management = Am Soc Test Mater Quality and Statistics: Total Quality Management = Am. Soc. Test. Mater. Quality Assurance and Quality Control in The Analytical Chemical Laboratory: A Practical Approach = Anal Chem Ser Quality Assurance and Quality Control in The Analytical Chemical Laboratory: A Practical Approach = Anal. Chem. Ser. Quality Assurance and Safety of Crops & Foods = Qual Assur Saf Crop Quality Assurance and Safety of Crops & Foods = Qual. Assur. Saf. Crop. Quality assurance and utilization review : official journal of the American College of Utilization Review Physicians = Qual Assur Util Rev Quality Assurance and Utilization Review = Qual. Assur. Util. Rev. Quality Assurance for Analytical Laboratories = Roy Soc Ch Quality Assurance for Analytical Laboratories = Roy. Soc. Ch. Quality Assurance in Health Care = Qual. Assur. Health Care Quality assurance in health care : the official journal of the International Society for Quality Assurance in Health Care / ISQA = Qual Assur Health Care Quality Assurance in The Fish Industry = Dev Food Sci Quality Assurance in The Fish Industry = Dev. Food. Sci. Quality Assurance=Qual Assur;; Quality Assurance = Qual. Assur. Quality Assurance & Safety of Crops and Food = Qual. Assur. Saf. Crops Food Quality assurance (San Diego, Calif.) = Qual Assur Quality Assurance Through Cooperation in Surgery = Langeng Arc Quality Assurance Through Cooperation in Surgery = Langeng. Arc. Quality connection (Brookline, Mass.) = Qual Connect Quality Connection = Qual. Connect. Quality Control of Concrete Structures = Rilem Proc Quality Control of Concrete Structures = Rilem. Proc. Quality Control of Veterinary Vaccines in Developing Countries = Fao Anim Pr Quality Control of Veterinary Vaccines in Developing Countries = Fao. Anim. Pr. Quality Decision Management - The Heart of Effective Futures-oriented Management = Top Saf Risk Reliab Quality Decision Management - The Heart of Effective Futures-oriented Management = Top. Saf. Risk. Reliab. Quality Education (at) A Distance = Int Fed Info Proc Quality Education (at) A Distance = Int. Fed. Info. Proc. Quality Engineering = Qual. Eng. Quality for All = Lect Notes Comput Sc Quality for All = Lect. Notes. Comput. Sc. Quality Improvement Through Statistical Methods = Stat Ind Technol Quality Improvement Through Statistical Methods = Stat. Ind. Technol. Quality in health care : QHC = Qual Health Care Quality in Health Care = Qual Health Care Quality in Health Care = Qual. Health Care Quality Issues in Clinical Genetic Services = Adv Mar Genomics Quality Issues in Clinical Genetic Services = Adv. Mar. Genomics. Quality Letter for Healthcare Leaders = Qual. Lett. Healthc. Lead. Quality management in health care = Qual Manag Health Care Quality Management in Health Care = Qual. Manag. Health Care Quality Matters: From Clinical Care to Customer Service = Quintessent Dent Pra Quality Matters: From Clinical Care to Customer Service = Quintessent. Dent. Pra. Quality of Context = Lect Notes Comput Sc Quality of Context = Lect. Notes. Comput. Sc. Quality of Democracy: Theory and Applications = Helen Kellogg Inst Quality of Democracy: Theory and Applications = Helen. Kellogg. Inst. Quality of Fresh and Processed Foods = Adv Exp Med Biol Quality of Fresh and Processed Foods = Adv. Exp. Med. Biol. Quality of Future Internet Services = Lect Notes Comput Sc Quality of Future Internet Services = Lect. Notes. Comput. Sc. Quality of Future Internet Services, Proceedings = Lect Notes Comput Sc Quality of Future Internet Services, Proceedings = Lect. Notes. Comput. Sc. Quality of life and cardiovascular care = Qual Life Cardiovasc Care Quality of Life and Quality of Care in Epilepsy = Roy S Med S Quality of Life and Quality of Care in Epilepsy = Roy. S. Med. S. Quality of Life and Quality of Care in Epilepsy: Update 1993 = Roy S Med S Quality of Life and Quality of Care in Epilepsy: Update 1993 = Roy. S. Med. S. Quality of Life in Ireland: Social Impact of Economic Boom = Soc Indic Res Ser Quality of Life in Ireland: Social Impact of Economic Boom = Soc. Indic. Res. Ser. Quality of Life of Chinese People in A Changing World = Soc Indic Res Ser Quality of Life of Chinese People in A Changing World = Soc. Indic. Res. Ser. Quality of life research : an international journal of quality of life aspects of treatment, care and rehabilitation = Qual Life Res Quality of Life Research=Qual Life Res;; Quality of Life Research = Qual Life Res Quality of Life Research = Qual. Life Res. Quality-of-llife Community Indicators for Parks, Recreation and Tourism Management = Soc Indic Res Ser Quality-of-llife Community Indicators for Parks, Recreation and Tourism Management = Soc. Indic. Res. Ser. Quality of Meat and Fat in Pigs As Affected By Genetics and Nutrition = Eaap Public Quality of Meat and Fat in Pigs As Affected By Genetics and Nutrition = Eaap. Public. Quality of Protection: Security Measurements and Metrics = Adv Inform Secur Quality of Protection: Security Measurements and Metrics = Adv. Inform. Secur. Quality of Protection: Security Measurements and Metrics = Adv Inf Sec Quality of Protection: Security Measurements and Metrics = Adv. Inf. Sec. Quality of Service in Multiservice Ip Networks, Proceedings = Lect Notes Comput Sc Quality of Service in Multiservice Ip Networks, Proceedings = Lect. Notes. Comput. Sc. Quality of Service in The Emerging Networking Panorama, Proceedings = Lect Notes Comput Sc Quality of Service in The Emerging Networking Panorama, Proceedings = Lect. Notes. Comput. Sc. Quality of Service - Iwqos 2003, Proceedings = Lect Notes Comput Sc Quality of Service - Iwqos 2003, Proceedings = Lect. Notes. Comput. Sc. Quality of Service - Iwqos 2005, Proceedings = Lect Notes Comput Sc Quality of Service - Iwqos 2005, Proceedings = Lect. Notes. Comput. Sc. Quality of Service Over Next-generation Data Networks = Proc Spie Quality of Service Over Next-generation Data Networks = Proc. Spie. Quality of Service Over Next-generation Data Networks = P Soc Photo-opt Ins Quality of Service Over Next-generation Data Networks = P. Soc. Photo-opt. Ins. Quality of Service Over Next-generation Internet = Proc Spie Quality of Service Over Next-generation Internet = Proc. Spie. Quality of Service Over Next-generation Internet = P Soc Photo-opt Ins Quality of Service Over Next-generation Internet = P. Soc. Photo-opt. Ins. Quality of Software Architectures and Software Quality, Proceedings = Lect Notes Comput Sc Quality of Software Architectures and Software Quality, Proceedings = Lect. Notes. Comput. Sc. Quality of Software Architectures = Lect Notes Comput Sc Quality of Software Architectures = Lect. Notes. Comput. Sc. Quality of Software Architectures, Proceedings = Lect Notes Comput Sc Quality of Software Architectures, Proceedings = Lect. Notes. Comput. Sc. Quality of The Body Cell Mass = Serono Symp Quality of The Body Cell Mass = Serono. Symp. Quality Progress = Qual Prog Quality Progress = Qual. Prog. Quality & quantity = Qual Quant Quality & Quantity = Qual Quant Quality & Quantity = Qual. Quant. Quality & safety in health care = Qual Saf Health Care Quality & Safety in Health Care = Qual Saf Health Care Quality & Safety in Health Care = Qual. Saf. Health Care Quality Technology and Quantitative Management = Qual Technol Quant M Quality Technology and Quantitative Management = Qual. Technol. Quant. M. Quality Through Engineering Design = Adv Ind Eng Quality Through Engineering Design = Adv. Ind. Eng. Quality Uncertainty and Perception: Information Asymmetry and Management of Quality Uncertainty and Quality Perception = Contrib Manag Sci Quality Uncertainty and Perception: Information Asymmetry and Management of Quality Uncertainty and Quality Perception = Contrib. Manag. Sci. Quantification of Brain Function = Int Congr Ser Quantification of Brain Function = Int. Congr. Ser. Quantified Societal Risk and Policy Making = Tech Risk S Quantified Societal Risk and Policy Making = Tech. Risk S. Quantifiers in Action: Generalized Quantification in Query, Logical and Natural Languages = Adv Database Syst Quantifiers in Action: Generalized Quantification in Query, Logical and Natural Languages = Adv. Database. Syst. Quantifying Consumer Preferences = Contrib Econ Anal Quantifying Consumer Preferences = Contrib. Econ. Anal. Quantifying The Agri-food Supply Chain = Wag Ur Fron Quantifying The Agri-food Supply Chain = Wag. Ur. Fron. Quantifying The Evolution of Early Life : Numerical Approaches to The Evaluation of Fossils and Ancient Ecosystems = Top Geobiol Quantifying The Evolution of Early Life : Numerical Approaches to The Evaluation of Fossils and Ancient Ecosystems = Top. Geobiol. Quantitation in Biomedical Imaging With Pet and Mri = Int Congr Ser Quantitation in Biomedical Imaging With Pet and Mri = Int. Congr. Ser. Quantitative Analyses of Behavior = Quant An B Quantitative Analyses of Behavior = Quant. An. B. Quantitative Analyses of Behavior, Vol 8 = Quant An B Quantitative Analyses of Behavior, Vol 8 = Quant. An. B. Quantitative Analyses of Behavior, Vol 9 = Quant An B Quantitative Analyses of Behavior, Vol 9 = Quant. An. B. Quantitative Analysis and The Planning of Social Protection = Stud Res Ss Quantitative Analysis and The Planning of Social Protection = Stud. Res. Ss. Quantitative Analysis of Cognitive Radio and Network Performance = Artech Hse Mob Comm Quantitative Analysis of Cognitive Radio and Network Performance = Artech. Hse. Mob. Comm. Quantitative Arithmetic of Projective Varieties = Prog Math Quantitative Arithmetic of Projective Varieties = Prog. Math. Quantitative Assessment in Epilepsy Care = Nato Adv Sci Inst Se Quantitative Assessment in Epilepsy Care = Nato. Adv. Sci. Inst. Se. Quantitative Coronary Arteriography = Dev Cardiovasc Med Quantitative Coronary Arteriography = Dev. Cardiovasc. Med. Quantitative Description of Ionospheric Storm Effects and Irregularities = Adv Space Res Quantitative Description of Ionospheric Storm Effects and Irregularities = Adv. Space. Res. Quantitative Diagenesis: Recent Developments and Applications to Reservoir Geology = Nato Adv Sci Inst Se Quantitative Diagenesis: Recent Developments and Applications to Reservoir Geology = Nato. Adv. Sci. Inst. Se. Quantitative Economic History: The Good of Counting = Routl Explor Econ Hi Quantitative Economic History: The Good of Counting = Routl. Explor. Econ. Hi. Quantitative Economic Policy: Essays in Honour of Andrew Hughes Hallett = Adv Comput Econ Quantitative Economic Policy: Essays in Honour of Andrew Hughes Hallett = Adv. Comput. Econ. Quantitative Evaluation of Systems: Qest 2008, Proceedings = Int Conf Quant Eval Quantitative Evaluation of Systems: Qest 2008, Proceedings = Int. Conf. Quant. Eval. Quantitative Finance = Quant Financ Quantitative Finance = Quant. Financ. Quantitative Finance=Quant. Finance Quantitative Fund Management = Ch Crc Financ Math Quantitative Fund Management = Ch. Crc. Financ. Math. Quantitative Genetics and Breeding Methods: The Way Ahead = Colloq Inra Quantitative Genetics and Breeding Methods: The Way Ahead = Colloq. Inra. Quantitative Genetics in Maize Breeding = Handb Plant Breed Quantitative Genetics in Maize Breeding = Handb. Plant. Breed. Quantitative Geology and Geostatistics = Quant Geo G Quantitative Geology and Geostatistics = Quant. Geo. G. Quantitative Health Risk Analysis Methods: Modeling The Human Health Impacts of Antibiotics Used in Food Animals = Int Ser Oper Res Man Quantitative Health Risk Analysis Methods: Modeling The Human Health Impacts of Antibiotics Used in Food Animals = Int. Ser. Oper. Res. Man. Quantitative Immunohistology: Problems and Solutions = Immunol Immune Syst Quantitative Immunohistology: Problems and Solutions = Immunol. Immune. Syst. Quantitative Information Fusion for Hydrological Sciences = Stud Comput Intell Quantitative Information Fusion for Hydrological Sciences = Stud. Comput. Intell. Quantitative Linguistics / Quantitative Linguistik = Handb Sprach Kommun Quantitative Linguistics / Quantitative Linguistik = Handb. Sprach. Kommun. Quantitative Linguistics = Quant Linguist Quantitative Linguistics = Quant. Linguist. Quantitative Logic and Soft Computing 2010, Vol 2 = Adv Intel Soft Compu Quantitative Logic and Soft Computing 2010, Vol 2 = Adv. Intel. Soft Compu. Quantitative Methods in Education and The Behavioral Sciences-issues Research and Teaching = Quant Meth Educ Beha Quantitative Methods in Education and The Behavioral Sciences-issues Research and Teaching = Quant. Meth. Educ. Beha. Quantitative Methods in Fractography = Am Soc Test Mater Quantitative Methods in Fractography = Am. Soc. Test. Mater. Quantitative Methods in Soil Mineralogy = Sssa Misc Publicat Quantitative Methods in Soil Mineralogy = Sssa. Misc. Publicat. Quantitative Microbiology = Quant. Microbiol. Quantitative Modeling of Soil Forming Processes = Sssa Spec Publ Quantitative Modeling of Soil Forming Processes = Sssa. Spec. Publ. Quantitative Models for Performance Evaluation and Benchmarking: Data Envelopment Analysis With Spreadsheets, Second Edition = Int Ser Oper Res Man Quantitative Models for Performance Evaluation and Benchmarking: Data Envelopment Analysis With Spreadsheets, Second Edition = Int. Ser. Oper. Res. Man. Quantitative Neuroscience: Models, Algorithms, Diagnostics, and Therapeutic Applications = Biocomp Ser Quantitative Neuroscience: Models, Algorithms, Diagnostics, and Therapeutic Applications = Biocomp. Ser. Quantitative Particle Physics = Nato Adv Sci Inst Se Quantitative Particle Physics = Nato. Adv. Sci. Inst. Se. Quantitative Risk Management: Concepts, Techniques and Tools = Princ Ser Financ Quantitative Risk Management: Concepts, Techniques and Tools = Princ. Ser. Financ. Quantitative Structure-activity Relationships in Environmental Sciences - Vii = Setac Sp P Quantitative Structure-activity Relationships in Environmental Sciences - Vii = Setac. Sp. P. Quantitative Structure-activity Relationships = Quant Struct-act Rel Quantitative Structure-activity Relationships = Quant. Struct-act. Rel. Quantitative Structure-Activity Relationships = Quant. Struct.-Act. Relat. Quantization of Singular Symplectic Quotients = Prog Math Quantization of Singular Symplectic Quotients = Prog. Math. Quantized Vortex Dynamics and Superfluid Turbulence = Lect Notes Phys Quantized Vortex Dynamics and Superfluid Turbulence = Lect. Notes. Phys. Quantum 1/f Noise and Other Low Frequency Fluctuations in Electronic Devices = Aip Conf Proc Quantum 1/f Noise and Other Low Frequency Fluctuations in Electronic Devices = Aip. Conf. Proc. Quantum 1/f Noise & Other Low Frequency Fluctuations in Electronic Devices = Aip Conf Proc Quantum 1/f Noise & Other Low Frequency Fluctuations in Electronic Devices = Aip. Conf. Proc. Quantum Affine Algebras, Extended Affine Lie Algebras, and Their Applications = Contemp Math Quantum Affine Algebras, Extended Affine Lie Algebras, and Their Applications = Contemp. Math. Quantum Analogues: From Phase Transitions to Black Holes and Cosmology = Lect Notes Phys Quantum Analogues: From Phase Transitions to Black Holes and Cosmology = Lect. Notes. Phys. Quantum and Nonlinear Optics = P Soc Photo-opt Ins Quantum and Nonlinear Optics = P. Soc. Photo-opt. Ins. Quantum and Semiclassical Optics = Quantum Semiclassical Opt. Quantum and Semiclassical Optics = Quantum Semiclass. Optics Quantum and Semiclassical Optics = Quantum Semicl Opt Quantum and Semiclassical Optics = Quantum Semicl. Opt. Quantum and Semi-classical Percolation and Breakdown in Disordered Solids = Lect Notes Phys Quantum and Semi-classical Percolation and Breakdown in Disordered Solids = Lect. Notes. Phys. Quantum Aspects of Gauge Theories, Supersymmetry and Unification = Lect Notes Phys Quantum Aspects of Gauge Theories, Supersymmetry and Unification = Lect. Notes. Phys. Quantum Atomic and Molecular Tunnelling in Solid = Molecul Phys Rep Quantum Atomic and Molecular Tunnelling in Solid = Molecul. Phys. Rep. Quantum Bio-informatics Ii: From Quantum Information to Bio-informatics = Qtm Prob Wht Noi Quantum Bio-informatics Ii: From Quantum Information to Bio-informatics = Qtm. Prob. Wht. Noi. Quantum Bio-informatics Iii: From Quantum Information to Bio-informatics = Qtm Prob Wht Noi Quantum Bio-informatics Iii: From Quantum Information to Bio-informatics = Qtm. Prob. Wht. Noi. Quantum Causality: Conceptual Issues in The Causal Theory of Quantum Mechanics = St Hist Phil Sci Ser Quantum Causality: Conceptual Issues in The Causal Theory of Quantum Mechanics = St. Hist. Phil. Sci. Ser. Quantum Chaos = P Int Sch Phys Quantum Chaos = P. Int. Sch. Phys. Quantum Chaos - Quantum Measurement = Nato Adv Sci I C-mat Quantum Chaos - Quantum Measurement = Nato. Adv. Sci. I. C-mat. Quantum Chemistry : Basic Aspects, Actual Trends = Stud Phys Theo Chem Quantum Chemistry : Basic Aspects, Actual Trends = Stud. Phys. Theo. Chem. Quantum Chromodynamics On The Lattice = Lect Notes Phys Quantum Chromodynamics On The Lattice = Lect. Notes. Phys. Quantum Coherence and Decoherence = N-holland D Quantum Coherence and Decoherence = N-holland. D. Quantum Coherence: From Quarks to Solids = Lect Notes Phys Quantum Coherence: From Quarks to Solids = Lect. Notes. Phys. Quantum Coherence in Mesoscopic System = Nato Adv Sci I B-phy Quantum Coherence in Mesoscopic System = Nato. Adv. Sci. I. B-phy. Quantum Communication and Information Technologies = Nato Sci Ser Ii-math Quantum Communication and Information Technologies = Nato. Sci. Ser. Ii-math. Quantum Communication and Information Technologies = Nato Sci Ser Ii Math Quantum Communication and Information Technologies = Nato. Sci. Ser. Ii. Math. Quantum Communication, Measurement and Computing = Aip Conf Proc Quantum Communication, Measurement and Computing = Aip. Conf. Proc. Quantum Communication, Measurement and Computing (qcmc) = Aip Conf Proc Quantum Communication, Measurement and Computing (qcmc) = Aip. Conf. Proc. Quantum Communications and Quantum Imaging Ii = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging Ii = P. Soc. Photo-opt. Ins. Quantum Communications and Quantum Imaging Iv = Proc Spie Quantum Communications and Quantum Imaging Iv = Proc. Spie. Quantum Communications and Quantum Imaging Iv = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging Iv = P. Soc. Photo-opt. Ins. Quantum Communications and Quantum Imaging = Proc Spie Quantum Communications and Quantum Imaging = Proc. Spie. Quantum Communications and Quantum Imaging = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging = P. Soc. Photo-opt. Ins. Quantum Communications and Quantum Imaging Viii = Proc Spie Quantum Communications and Quantum Imaging Viii = Proc. Spie. Quantum Communications and Quantum Imaging Viii = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging Viii = P. Soc. Photo-opt. Ins. Quantum Communications and Quantum Imaging Vi = Proc Spie Quantum Communications and Quantum Imaging Vi = Proc. Spie. Quantum Communications and Quantum Imaging Vi = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging Vi = P. Soc. Photo-opt. Ins. Quantum Communications and Quantum Imaging V = Proc Spie Quantum Communications and Quantum Imaging V = Proc. Spie. Quantum Communications and Quantum Imaging V = P Soc Photo-opt Ins Quantum Communications and Quantum Imaging V = P. Soc. Photo-opt. Ins. Quantum Communications Realized Ii = P Soc Photo-opt Ins Quantum Communications Realized Ii = P. Soc. Photo-opt. Ins. Quantum Communications Realized = Proc Spie Quantum Communications Realized = Proc. Spie. Quantum Communications Realized = P Soc Photo-opt Ins Quantum Communications Realized = P. Soc. Photo-opt. Ins. Quantum Computation and Information: From Theory to Experiment = Top Appl Phys Quantum Computation and Information: From Theory to Experiment = Top. Appl. Phys. Quantum Computing and Quantum Communications = Lect Notes Comput Sc Quantum Computing and Quantum Communications = Lect. Notes. Comput. Sc. Quantum Computing: Back Action 2006 = Aip Conf Proc Quantum Computing: Back Action 2006 = Aip. Conf. Proc. Quantum Computing Devices: Principles, Designs, and Analysis = Ch Crc Appl Math Non Quantum Computing Devices: Principles, Designs, and Analysis = Ch. Crc. Appl. Math. Non. Quantum Computing = P Soc Photo-opt Ins Quantum Computing = P. Soc. Photo-opt. Ins. Quantum Computing Without Magic: Devices = Sci Eng Comput Quantum Computing Without Magic: Devices = Sci. Eng. Comput. Quantum Confined Semiconductor Nanostructures = Mater Res Soc Symp P Quantum Confined Semiconductor Nanostructures = Mater. Res. Soc. Symp. P. Quantum Confinement Vi: Nanostructured Materials and Devices = Elec Soc S Quantum Confinement Vi: Nanostructured Materials and Devices = Elec. Soc. S. Quantum Control and Measurement = N-holland D Quantum Control and Measurement = N-holland. D. Quantum Cosmology - The Supersymmetric Perspective, Vol 1: Fundamentals = Lect Notes Phys Quantum Cosmology - The Supersymmetric Perspective, Vol 1: Fundamentals = Lect. Notes. Phys. Quantum Cosmology - The Supersymmetric Perspective - Vol 2 = Lect Notes Phys Quantum Cosmology - The Supersymmetric Perspective - Vol 2 = Lect. Notes. Phys. Quantum Decoherence: Poincare Seminar 2005 = Prog Math P Quantum Decoherence: Poincare Seminar 2005 = Prog. Math. P. Quantum Decoherence: Poincare Seminar 2005 = Prog Math Phys Quantum Decoherence: Poincare Seminar 2005 = Prog. Math. Phys. Quantum Dot Devices and Computing = P Soc Photo-opt Ins Quantum Dot Devices and Computing = P. Soc. Photo-opt. Ins. Quantum Dots 2010 = J Phys Conf Ser Quantum Dots 2010 = J. Phys. Conf. Ser. Quantum Dots: A Doorway to Nanoscale Physics = Lect Notes Phys Quantum Dots: A Doorway to Nanoscale Physics = Lect. Notes. Phys. Quantum Dots and Nanostructures: Synthesis, Characterization, and Modeling Viii = Proc Spie Quantum Dots and Nanostructures: Synthesis, Characterization, and Modeling Viii = Proc. Spie. Quantum Dots and Nanostructures: Synthesis, Characterization, and Modeling Vii = Proc Spie Quantum Dots and Nanostructures: Synthesis, Characterization, and Modeling Vii = Proc. Spie. Quantum Dots: Fundamentals, Applications, and Frontiers = Nato Sci Ser Ii-math Quantum Dots: Fundamentals, Applications, and Frontiers = Nato. Sci. Ser. Ii-math. Quantum Dots: Fundamentals, Applications, and Frontiers = Nato Sci Ser Ii Math Quantum Dots: Fundamentals, Applications, and Frontiers = Nato. Sci. Ser. Ii. Math. Quantum Dots, Nanoparticles, and Nanoclusters = P Soc Photo-opt Ins Quantum Dots, Nanoparticles, and Nanoclusters = P. Soc. Photo-opt. Ins. Quantum Dots, Nanoparticles and Nanowires = Mater Res Soc Symp P Quantum Dots, Nanoparticles and Nanowires = Mater. Res. Soc. Symp. P. Quantum Dots, Nanoparticles, and Nonoclusters Ii = P Soc Photo-opt Ins Quantum Dots, Nanoparticles, and Nonoclusters Ii = P. Soc. Photo-opt. Ins. Quantum Dots, Particles, and Nanoclusters Iii = P Soc Photo-opt Ins Quantum Dots, Particles, and Nanoclusters Iii = P. Soc. Photo-opt. Ins. Quantum Dots, Particles, and Nanoclusters Iv = P Soc Photo-opt Ins Quantum Dots, Particles, and Nanoclusters Iv = P. Soc. Photo-opt. Ins. Quantum Dots, Particles, and Nanoclusters Vi = P Soc Photo-opt Ins Quantum Dots, Particles, and Nanoclusters Vi = P. Soc. Photo-opt. Ins. Quantum Dots, Particles, and Nanoclusters V = P Soc Photo-opt Ins Quantum Dots, Particles, and Nanoclusters V = P. Soc. Photo-opt. Ins. Quantum Dynamics of Complex Molecular Systems = Springer Ser Chem Ph Quantum Dynamics of Complex Molecular Systems = Springer. Ser. Chem. Ph. Quantum Dynamics of Complex Molecular Systems = Springer Series Chem Quantum Dynamics of Complex Molecular Systems = Springer. Series. Chem. Quantum Dynamics of Submicron Structures = Nato Adv Sci Inst Se Quantum Dynamics of Submicron Structures = Nato. Adv. Sci. Inst. Se. Quantum Effect Physics, Electronics and Applications = Inst Phys Conf Ser Quantum Effect Physics, Electronics and Applications = Inst. Phys. Conf. Ser. Quantum Efficiency in Complex Systems, Pt I: Biomolecular Systems = Semiconduct Semimet Quantum Efficiency in Complex Systems, Pt I: Biomolecular Systems = Semiconduct. Semimet. Quantum Electrodynamics and Physics of The Vacuum = Aip Conf Proc Quantum Electrodynamics and Physics of The Vacuum = Aip. Conf. Proc. Quantum Electronics and Plasma Physics = Ital Phy So Quantum Electronics and Plasma Physics = Ital. Phy. So. Quantum Electronics and Plasma Physics / = Ital Phy So Quantum Electronics and Plasma Physics / = Ital. Phy. So. Quantum Electronics Metrology = Proc Spie Quantum Electronics Metrology = Proc. Spie. Quantum Electronics Metrology = P Soc Photo-opt Ins Quantum Electronics Metrology = P. Soc. Photo-opt. Ins. Quantum Electronics = Quantum Electron. Quantum Electronics = Quantum Electron+ Quantum Electronics = Quantum Electron+.+ Quantum Entanglement and Information Processing = Les Houch S Quantum Entanglement and Information Processing = Les. Houch. S. Quantum Few-body Systems = Aip Conf Proc Quantum Few-body Systems = Aip. Conf. Proc. Quantum Fields and Quantum Space Time = Nato Adv Sci I B-phy Quantum Fields and Quantum Space Time = Nato. Adv. Sci. I. B-phy. Quantum Field Theory and Noncommutative Geometry = Lect Notes Phys Quantum Field Theory and Noncommutative Geometry = Lect. Notes. Phys. Quantum Field Theory and String Theory = Nato Adv Sci Inst Se Quantum Field Theory and String Theory = Nato. Adv. Sci. Inst. Se. Quantum Field Theory On Curved Spacetimes: Concepts and Mathematical Foundations = Lect Notes Phys Quantum Field Theory On Curved Spacetimes: Concepts and Mathematical Foundations = Lect. Notes. Phys. Quantum Field Theory: Perspective and Prospective = Nato Adv Sci I C-mat Quantum Field Theory: Perspective and Prospective = Nato. Adv. Sci. I. C-mat. Quantum Fluctuations = Les Houch S Quantum Fluctuations = Les. Houch. S. Quantum Graphs and Their Applications = Contemp Math Quantum Graphs and Their Applications = Contemp. Math. Quantum Gravity: From Theory to Experimental Search = Lect Notes Phys Quantum Gravity: From Theory to Experimental Search = Lect. Notes. Phys. Quantum Groups and Related Topics = Math Phys S Quantum Groups and Related Topics = Math. Phys. S. Quantum Groups and Their Applications in Physics = P Int Sch Phys Quantum Groups and Their Applications in Physics = P. Int. Sch. Phys. Quantum Groups = Irma Lect Math Theor Quantum Groups = Irma. Lect. Math. Theor. Quantum Groups = Lect Notes Math Quantum Groups = Lect. Notes. Math. Quantum Groups, Quantum Foundations, and Quantum Information: A Festschrift for Tony Sudbery = J Phys Conf Ser Quantum Groups, Quantum Foundations, and Quantum Information: A Festschrift for Tony Sudbery = J. Phys. Conf. Ser. Quantum Hall Effect: Poincare Seminar 2004 = Prog Math P Quantum Hall Effect: Poincare Seminar 2004 = Prog. Math. P. Quantum Hall Effect: Poincare Seminar 2004 = Prog Math Phys Quantum Hall Effect: Poincare Seminar 2004 = Prog. Math. Phys. Quantum Independent Increment Processes I: From Classical Probability to Quantum Stochastic Calculus = Lect Notes Math Quantum Independent Increment Processes I: From Classical Probability to Quantum Stochastic Calculus = Lect. Notes. Math. Quantum Independent Increment Processes Ii: Structure of Quantum Levy Processes, Classical Probability, and Physics = Lect Notes Math Quantum Independent Increment Processes Ii: Structure of Quantum Levy Processes, Classical Probability, and Physics = Lect. Notes. Math. Quantum Informatics 2004 = P Soc Photo-opt Ins Quantum Informatics 2004 = P. Soc. Photo-opt. Ins. Quantum Informatics 2005 = Proc Spie Quantum Informatics 2005 = Proc. Spie. Quantum Informatics 2005 = P Soc Photo-opt Ins Quantum Informatics 2005 = P. Soc. Photo-opt. Ins. Quantum Informatics 2007 = P Soc Photo-opt Ins Quantum Informatics 2007 = P. Soc. Photo-opt. Ins. Quantum Information and Computation Iii = Proc Spie Quantum Information and Computation Iii = Proc. Spie. Quantum Information and Computation Iii = P Soc Photo-opt Ins Quantum Information and Computation Iii = P. Soc. Photo-opt. Ins. Quantum Information and Computation Ii = Proc Spie Quantum Information and Computation Ii = Proc. Spie. Quantum Information and Computation Ii = P Soc Photo-opt Ins Quantum Information and Computation Ii = P. Soc. Photo-opt. Ins. Quantum Information and Computation Iv = Proc Spie Quantum Information and Computation Iv = Proc. Spie. Quantum Information and Computation Iv = P Soc Photo-opt Ins Quantum Information and Computation Iv = P. Soc. Photo-opt. Ins. Quantum Information and Computation Ix = Proc Spie Quantum Information and Computation Ix = Proc. Spie. Quantum Information and Computation = Proc Spie Quantum Information and Computation = Proc. Spie. Quantum Information and Computation = P Soc Photo-opt Ins Quantum Information and Computation = P. Soc. Photo-opt. Ins. Quantum Information and Computation = Quantum Inf. Comput. Quantum Information and Computation Viii = P Soc Photo-opt Ins Quantum Information and Computation Viii = P. Soc. Photo-opt. Ins. Quantum Information and Computation Vi = P Soc Photo-opt Ins Quantum Information and Computation Vi = P. Soc. Photo-opt. Ins. Quantum Information and Computation V = Proc Spie Quantum Information and Computation V = Proc. Spie. Quantum Information and Computation V = P Soc Photo-opt Ins Quantum Information and Computation V = P. Soc. Photo-opt. Ins. Quantum Information and Cryptography: An Introduction Survey of Theory, Technology and Experiments = Lect Notes Phys Quantum Information and Cryptography: An Introduction Survey of Theory, Technology and Experiments = Lect. Notes. Phys. Quantum Information and Many Body Quantum Systems, Proceedings = Crm Ser Quantum Information and Many Body Quantum Systems, Proceedings = Crm. Ser. Quantum Information & Computation = Quantum Inf Comput Quantum Information & Computation = Quantum Inf. Comput. Quantum Information & Computation = Quantum Inform Compu Quantum Information & Computation = Quantum Inform. Compu. Quantum Information Processing = Quantum Inf Process Quantum Information Processing = Quantum Inf. Process. Quantum Information Science and Its Contributions to Mathematics = Proc Sym Ap Quantum Information Science and Its Contributions to Mathematics = Proc. Sym. Ap. Quantum Information = Springer Tr Mod Phys Quantum Information = Springer. Tr. Mod. Phys. Quantum Information Theory and Quantum Statistics = Theor Math Phys Ser Quantum Information Theory and Quantum Statistics = Theor. Math. Phys. Ser. Quantum Interaction, Proceedings = Lect Notes Artif Int Quantum Interaction, Proceedings = Lect. Notes. Artif. Int. Quantum Limits to The Second Law = Aip Conf Proc Quantum Limits to The Second Law = Aip. Conf. Proc. Quantum Magnetism = Nato Science Peace S Quantum Magnetism = Nato. Science. Peace. S. Quantum Magnetism = Nato Sci Peace Sec B Quantum Magnetism = Nato. Sci. Peace. Sec. B. Quantum Materials: Lateral Semiconductor Nanostructures, Hybrid Systems and Nanocrystals = Nanosci Technol Quantum Materials: Lateral Semiconductor Nanostructures, Hybrid Systems and Nanocrystals = Nanosci. Technol. Quantum Measurements in Optics = Nato Adv Sci I B-phy Quantum Measurements in Optics = Nato. Adv. Sci. I. B-phy. Quantum Mechanics = Aip Conf Proc Quantum Mechanics = Aip. Conf. Proc. Quantum Mechanics At The Crossroads = Front Collect Quantum Mechanics At The Crossroads = Front. Collect. Quantum Mechanics in Curved Space-time = Nato Adv Sci I B-phy Quantum Mechanics in Curved Space-time = Nato. Adv. Sci. I. B-phy. Quantum Mechanics in The Geometry of Space-time = Springerbrief Phys Quantum Mechanics in The Geometry of Space-time = Springerbrief. Phys. Quantum Mechanics of Fundamental Systems 2 = Ser Cent Es Quantum Mechanics of Fundamental Systems 2 = Ser. Cent. Es. Quantum Mechanics of Fundamental Systems 3 = Ser Cent Es Quantum Mechanics of Fundamental Systems 3 = Ser. Cent. Es. Quantum Monte Carlo Methods in Physics and Chemistry = Nato Adv Sci I C-mat Quantum Monte Carlo Methods in Physics and Chemistry = Nato. Adv. Sci. I. C-mat. Quantum Neural Computation = Intel Syst Contr Aut Quantum Neural Computation = Intel. Syst. Contr. Aut. Quantum Noise in Mesoscopic Physics = Nato Sci Ser Ii-math Quantum Noise in Mesoscopic Physics = Nato. Sci. Ser. Ii-math. Quantum Noise in Mesoscopic Physics = Nato Sci Ser Ii Math Quantum Noise in Mesoscopic Physics = Nato. Sci. Ser. Ii. Math. Quantum Optics and Applications in Computing and Communications Ii = Proc Spie Quantum Optics and Applications in Computing and Communications Ii = Proc. Spie. Quantum Optics and Applications in Computing and Communications Ii = P Soc Photo-opt Ins Quantum Optics and Applications in Computing and Communications Ii = P. Soc. Photo-opt. Ins. Quantum Optics Iii = J Phys Conf Ser Quantum Optics Iii = J. Phys. Conf. Ser. Quantum Optics in Computing and Communications = P Soc Photo-opt Ins Quantum Optics in Computing and Communications = P. Soc. Photo-opt. Ins. Quantum Optics of Small Structures = Knaw Verhan Quantum Optics of Small Structures = Knaw. Verhan. Quantum Optics, Optical Data Storage, and Advanced Microlithography = P Soc Photo-opt Ins Quantum Optics, Optical Data Storage, and Advanced Microlithography = P. Soc. Photo-opt. Ins. Quantum Optics = Proc Spie Quantum Optics = Proc. Spie. Quantum Optics = P Soc Photo-opt Ins Quantum Optics = P. Soc. Photo-opt. Ins. Quantum Optics = Quantum Opt Quantum Optics = Quantum Opt. Quantum Optics Vi = Springer Proc Phys Quantum Optics Vi = Springer. Proc. Phys. Quantum Phase Transitions in Cold Atoms and Low Temperature Solids = Springer Theses-reco Quantum Phase Transitions in Cold Atoms and Low Temperature Solids = Springer. Theses-reco. Quantum Phenomena in Mesoscopic Systems = P Int Sch Phys Quantum Phenomena in Mesoscopic Systems = P. Int. Sch. Phys. Quantum Plasmadynamics: Unmagnetized Plasmas = Lect Notes Phys Quantum Plasmadynamics: Unmagnetized Plasmas = Lect. Notes. Phys. Quantum Potential Theory = Lect Notes Math Quantum Potential Theory = Lect. Notes. Math. Quantum Probability and Applications V = Lect Notes Math Quantum Probability and Applications V = Lect. Notes. Math. Quantum Probability and Infinite Dimensional Analysis, Proceedings = Qtm Prob Wht Noi Quantum Probability and Infinite Dimensional Analysis, Proceedings = Qtm. Prob. Wht. Noi. Quantum Probability and Infinite Dimensional Analysis = Qtm Prob Wht Noi Quantum Probability and Infinite Dimensional Analysis = Qtm. Prob. Wht. Noi. Quantum Probability and Related Topics = Qtm Prob Wht Noi Quantum Probability and Related Topics = Qtm. Prob. Wht. Noi. Quantum = Quantum Quantum Quenching, Annealing and Computation = Lect Notes Phys Quantum Quenching, Annealing and Computation = Lect. Notes. Phys. Quantum Reality, Relativistic Causality, and Closing The Epistemic Circle = W Ont Ser Philos Sci Quantum Reality, Relativistic Causality, and Closing The Epistemic Circle = W. Ont. Ser. Philos. Sci. Quantum Sensing and Nanophotonic Devices Iii = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices Iii = P. Soc. Photo-opt. Ins. Quantum Sensing and Nanophotonic Devices Ii = Proc Spie Quantum Sensing and Nanophotonic Devices Ii = Proc. Spie. Quantum Sensing and Nanophotonic Devices Ii = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices Ii = P. Soc. Photo-opt. Ins. Quantum Sensing and Nanophotonic Devices Iv = Proc Spie Quantum Sensing and Nanophotonic Devices Iv = Proc. Spie. Quantum Sensing and Nanophotonic Devices Iv = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices Iv = P. Soc. Photo-opt. Ins. Quantum Sensing and Nanophotonic Devices = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices = P. Soc. Photo-opt. Ins. Quantum Sensing and Nanophotonic Devices Viii = Proc Spie Quantum Sensing and Nanophotonic Devices Viii = Proc. Spie. Quantum Sensing and Nanophotonic Devices Vii = Proc Spie Quantum Sensing and Nanophotonic Devices Vii = Proc. Spie. Quantum Sensing and Nanophotonic Devices Vi = Proc Spie Quantum Sensing and Nanophotonic Devices Vi = Proc. Spie. Quantum Sensing and Nanophotonic Devices Vi = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices Vi = P. Soc. Photo-opt. Ins. Quantum Sensing and Nanophotonic Devices V = Proc Spie Quantum Sensing and Nanophotonic Devices V = Proc. Spie. Quantum Sensing and Nanophotonic Devices V = P Soc Photo-opt Ins Quantum Sensing and Nanophotonic Devices V = P. Soc. Photo-opt. Ins. Quantum Sensing: Evolution and Revolution From Past to Future = Proc Spie Quantum Sensing: Evolution and Revolution From Past to Future = Proc. Spie. Quantum Sensing: Evolution and Revolution From Past to Future = P Soc Photo-opt Ins Quantum Sensing: Evolution and Revolution From Past to Future = P. Soc. Photo-opt. Ins. Quantum Signatures of Chaos, Third Edition = Springer Ser Synerg Quantum Signatures of Chaos, Third Edition = Springer. Ser. Synerg. Quantum Spaces: Poincare Seminar 2007 = Prog Math Quantum Spaces: Poincare Seminar 2007 = Prog. Math. Quantum Superposition: Counterintuitive Consequences of Coherence, Entanglement, and Interference = Front Collect Quantum Superposition: Counterintuitive Consequences of Coherence, Entanglement, and Interference = Front. Collect. Quantum Systems in Chemistry and Physics, Vol 1 = Prog T Chem Quantum Systems in Chemistry and Physics, Vol 1 = Prog. T. Chem. Quantum Systems in Chemistry and Physics, Vol 1 = Prog Theor Chem Phys Quantum Systems in Chemistry and Physics, Vol 1 = Prog. Theor. Chem. Phys. Quantum Systems in Chemistry and Physics, Vol 2 = Prog T Chem Quantum Systems in Chemistry and Physics, Vol 2 = Prog. T. Chem. Quantum Systems in Chemistry and Physics, Vol 2 = Prog Theor Chem Phys Quantum Systems in Chemistry and Physics, Vol 2 = Prog. Theor. Chem. Phys. Quantum Theory: Reconsideration of Foundations - 3 = Aip Conf Proc Quantum Theory: Reconsideration of Foundations - 3 = Aip. Conf. Proc. Quantum Theory: Reconsideration of Foundations - 4 = Aip Conf Proc Quantum Theory: Reconsideration of Foundations - 4 = Aip. Conf. Proc. Quantum Theory: Reconsideration of Foundations - 5 = Aip Conf Proc Quantum Theory: Reconsideration of Foundations - 5 = Aip. Conf. Proc. Quantum Thermodynamics: Emergence of Thermodynamic Behavior Within Composite Quantum Systems, Second Edition = Lect Notes Phys Quantum Thermodynamics: Emergence of Thermodynamic Behavior Within Composite Quantum Systems, Second Edition = Lect. Notes. Phys. Quantum Trajectories and Measurements in Continuous Time: The Diffusive Case = Lect Notes Phys Quantum Trajectories and Measurements in Continuous Time: The Diffusive Case = Lect. Notes. Phys. Quantum Transport in Semiconductor Submicron Structures = Nato Adv Sci I E-app Quantum Transport in Semiconductor Submicron Structures = Nato. Adv. Sci. I. E-app. Quantum Transport = Lect Notes Math Quantum Transport = Lect. Notes. Math. Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer Trac Mod Ph Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer. Trac. Mod. Ph. Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer Tracts Mod Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer. Tracts. Mod. Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer Tr Mod Phys Quantum Tunneling in Complex Systems: The Semiclassical Approach = Springer. Tr. Mod. Phys. Quantum Tunneling of Magnetization - Qtm '94 = Nato Adv Sci Inst Se Quantum Tunneling of Magnetization - Qtm '94 = Nato. Adv. Sci. Inst. Se. Quantum-well and Superlattice Physics Iii = P Soc Photo-opt Ins Quantum-well and Superlattice Physics Iii = P. Soc. Photo-opt. Ins. Quantum Well and Superlattice Physics Iv = P Soc Photo-opt Ins Quantum Well and Superlattice Physics Iv = P. Soc. Photo-opt. Ins. Quantum Well and Superlattice Physics Vi = P Soc Photo-opt Ins Quantum Well and Superlattice Physics Vi = P. Soc. Photo-opt. Ins. Quantum Well and Superlattice Physics V = P Soc Photo-opt Ins Quantum Well and Superlattice Physics V = P. Soc. Photo-opt. Ins. Quantum Well Infrared Photodetectors: Physics and Applications = Springer Ser Opt Sci Quantum Well Infrared Photodetectors: Physics and Applications = Springer. Ser. Opt. Sci. Quantum Well Intersubband Transition Physics and Devices = Nato Adv Sci Inst Se Quantum Well Intersubband Transition Physics and Devices = Nato. Adv. Sci. Inst. Se. Quark Confinement and The Hadron Spectrum Iii = Proc Inst Nucl Theor Quark Confinement and The Hadron Spectrum Iii = Proc. Inst. Nucl. Theor. Quark Confinement and The Hadron Spectrum Vi = Aip Conf Proc Quark Confinement and The Hadron Spectrum Vi = Aip. Conf. Proc. Quark Confinement and The Hadron Spectrum Vii = Aip Conf Proc Quark Confinement and The Hadron Spectrum Vii = Aip. Conf. Proc. Quark-gluon Plasma / = Res Rep Phy Quark-gluon Plasma / = Res. Rep. Phy. Quarterly bulletin. Northwestern University (Evanston, Ill.). Medical School = Q Bull Northwest Univ Med Sch Quarterly bulletin of Sea View Hospital. New York. Sea View Hospital, Staten Island. Clinical Society = Q Bull Sea View Hosp Quarterly Bulletin of The Association of Food & Drug Officials of The United States = Q B Ass Food Drug Of Quarterly Bulletin of The Association of Food & Drug Officials of The United States = Q. B. Ass. Food Drug Of. Quarterly Bulletin of the International Association of Agricultural Information Specialists = Q. Bull. Int. Assoc. Agric. Inf. Spec. Quarterly demographic bulletin = Q Demogr Bull Quarterly Dental Review = Q Dent Rev Quarterly Dental Review = Q. Dent. Rev. Quarterly journal. Library of Congress = Q J Libr Cong Quarterly Journal of Austrian Economics=Quart. J. Austrian Econ. Quarterly Journal of Business and Economics = Q J Bus Econ Quarterly Journal of Business and Economics = Q. J. Bus. Econ. Quarterly Journal of Business and Economics=Quart. J. Bus. Econ. Quarterly Journal of Economics = Q J Econ Quarterly Journal of Economics = Q. J. Econ. Quarterly Journal of Economics=Quart. J. Econ. Quarterly Journal of Engineering Geology and Hydrogeology = Q J Eng Geol Hydroge Quarterly Journal of Engineering Geology and Hydrogeology = Q. J. Eng. Geol. Hydroge. Quarterly Journal of Engineering Geology and Hydrogeology = Q. J. Eng. Geol. Hydrogeol. Quarterly Journal of Engineering Geology = Q J Eng Geol Quarterly Journal of Engineering Geology = Q. J. Eng. Geol. Quarterly Journal of Experimental Physiology and Cognate Medical Sciences = Q J Exp Physiol Cms Quarterly Journal of Experimental Physiology and Cognate Medical Sciences = Q. J. Exp. Physiol. Cms. Quarterly journal of experimental physiology and cognate medical sciences = Q J Exp Physiol Cogn Med Sci Quarterly Journal of Experimental Physiology and Cognate Medical Sciences = Q. J. Exp. Physiol. Cogn. Med. Sci. Quarterly journal of experimental physiology (Cambridge, England) = Q J Exp Physiol Quarterly Journal of Experimental Physiology = Q J Exp Physiol Quarterly Journal of Experimental Physiology = Q. J. Exp. Physiol. Quarterly journal of experimental psychology (2006) = Q J Exp Psychol (Colchester) Quarterly Journal of Experimental Psychology. A, Human Experimental Psychology=Q J Exp Psychol A;; Quarterly Journal of Experimental Psychology. A, Human Experimental Psychology = Q. J. Exp. Psychol. A Quarterly Journal of Experimental Psychology. B, Comparative and Physiological Psychology = Q. J. Exp. Psychol. B Quarterly Journal of Experimental Psychology. B, Comparative And Physiological Psychology=Q J Exp Psychol B;; Quarterly Journal of Experimental Psychology = Q J Exp Psychol Quarterly Journal of Experimental Psychology = Q. J. Exp. Psychol. Quarterly Journal of Experimental Psychology Section A-human Experimental Psychology = Q J Exp Psychol-a Quarterly Journal of Experimental Psychology Section A-human Experimental Psychology = Q. J. Exp. Psychol-a. Quarterly Journal of Experimental Psychology Section B-comparative and Physiological Psychology = Q J Exp Psychol-b Quarterly Journal of Experimental Psychology Section B-comparative and Physiological Psychology = Q. J. Exp. Psychol-b. Quarterly Journal of Forestry = Q. J. For. Quarterly Journal of Forestry = Q J Forest Quarterly Journal of Forestry = Q. J. Forest. Quarterly Journal of Indian Economic Studies in Social Science=Quart. J. Indian Econ. Stud. Soc. Sci. Quarterly Journal of Mathematics = Q J Math Quarterly Journal of Mathematics = Q. J. Math. Quarterly Journal of Mechanics and Applied Mathematics = Q J Mech Appl Math Quarterly Journal of Mechanics and Applied Mathematics = Q. J. Mech. Appl. Math. Quarterly Journal of Medicine = Q J Med Quarterly Journal of Medicine = Q. J. Med. Quarterly Journal of Microscopical Science = Q J Microsc Sci Quarterly Journal of Microscopical Science = Q. J. Microsc. Sci. Quarterly Journal of Nuclear Medicine and Molecular Imaging = Q J Nucl Med Mol Im Quarterly Journal of Nuclear Medicine and Molecular Imaging = Q. J. Nucl. Med. Mol. Im. Quarterly Journal of Nuclear Medicine and Molecular Imaging = Q. J. Nucl. Med. Mol. Imaging Quarterly Journal of Nuclear Medicine=Q J Nucl Med;; Quarterly Journal of Nuclear Medicine = Q J Nucl Med Quarterly Journal of Nuclear Medicine = Q. J. Nucl. Med. Quarterly Journal of Pharmacy and Pharmacology = Q J Pharm Pharmacol Quarterly Journal of Pharmacy and Pharmacology = Q. J. Pharm. Pharmacol. Quarterly Journal of Political Science = Q J Polit Sci Quarterly Journal of Political Science = Q. J. Polit. Sci. Quarterly Journal of Public Speaking = Q J Public Speak Quarterly Journal of Public Speaking = Q. J. Public Speak. Quarterly Journal of Science, Literature, and the Arts = Q. J. Sci. Lit. Arts Quarterly Journal of Social Affairs = Q J Soc Aff Quarterly Journal of Social Affairs = Q. J. Soc. Aff. Quarterly Journal of Speech Education = Q J Speech Educ Quarterly Journal of Speech Education = Q. J. Speech Educ. Quarterly Journal of Speech = QJS Quarterly Journal of Speech = Q J Speech Quarterly Journal of Speech = Q. J. Speech Quarterly Journal of Studies On Alcohol-part A = Q J Stud Alcohol Quarterly Journal of Studies On Alcohol-part A = Q. J. Stud. Alcohol. Quarterly journal of studies on alcohol = Q J Stud Alcohol Quarterly Journal of Studies on Alcohol = Q. J. Stud. Alcohol Quarterly Journal of Studies On Alcohol = Q J Stud Alcohol Quarterly Journal of Studies On Alcohol = Q. J. Stud. Alcohol Quarterly Journal of the Chemical Society = Q. J. Chem. Soc. Quarterly Journal of the Geological Society of London = Q. J. Geol. Soc. London Quarterly Journal of The Library of Congress = Q J Libr Congr Quarterly Journal of The Library of Congress = Q. J. Libr. Congr. Quarterly Journal of the Royal Astronomical Society = Q. J. R. Astron. Soc. Quarterly Journal of The Royal Astronomical Society = Q J Roy Astron Soc Quarterly Journal of The Royal Astronomical Society = Q. J. Roy. Astron. Soc. Quarterly Journal of the Royal Meteorological Society = Q. J. R. Meteorolog. Soc. Quarterly Journal of The Royal Meteorological Society = Q J Roy Meteor Soc Quarterly Journal of The Royal Meteorological Society = Q. J. Roy. Meteor. Soc. Quarterly Journal of the Royal Meteorological Society = Quart. J. Roy. Meteor. Soc. Quarterly medical review = Q Med Rev Quarterly Medical Review = Q. Med. Rev. Quarterly-nebraska Agricultural Experiment Station = Quarterly-nebr Aes Quarterly-nebraska Agricultural Experiment Station = Quarterly-nebr. Aes. Quarterly - Northeastern Nevada Historical Society. Northeastern Nevada Historical Society = Northeast Nev Hist Soc Q Quarterly of Applied Mathematics = Q Appl Math Quarterly of Applied Mathematics = Q. Appl. Math. Quarterly of Applied Mathematics = Quart. Appl. Math. Quarterly of Magnetic Resonance in Biology and Medicine = Q. Magn. Reson. Biol. Med. Quarterly of the National Dental Association = Q. Natl. Dent. Assoc. Quarterly (Plant Growth Regulator Society of America) = PGRSA Q Quarterly population bulletin. New Zealand. Dept. of Statistics = Q Popul Bull Quarterly progress report. United States. Air Force. Radiation Laboratory, University of Chicago = Q Prog Rep United States Air Force Radiat Lab Univ Chic Quarterly Publications of The American Statistical Association = Q Publ Am Stat Assoc Quarterly Publications of The American Statistical Association = Q. Publ. Am. Stat. Assoc. Quarterly review (London, England) = Q Rev Quarterly Review of Agricultural Economics=Quart. Rev. Agr. Econ. Quarterly review of allergy and applied immunology = Q Rev Allergy Appl Immunol Quarterly Review of Biology=Q Rev Biol;; Quarterly Review of Biology = Q Rev Biol Quarterly Review of Biology = Q. Rev. Biol. Quarterly Review of Economics and Business = Q Rev Econ Bus Quarterly Review of Economics and Business = Q. Rev. Econ. Bus. Quarterly Review of Economics and Business=Quart. Rev. Econ. Bus. Quarterly Review of Economics and Finance = Q Rev Econ Financ Quarterly Review of Economics and Finance = Q. Rev. Econ. Financ. Quarterly Review of Economics and Finance = Q. Rev. Econ. Finance Quarterly Review of Economics and Finance=Quart. Rev. Econ. Finance Quarterly Review of Film and Video = Q Rev Film Vid Quarterly Review of Film and Video = Q. Rev. Film Vid. Quarterly Review of Historical Studies = Q Rev Hist Stud Quarterly Review of Historical Studies = Q. Rev. Hist. Stud. Quarterly Review of Literature = Q Rev Literature Quarterly Review of Literature = Q. Rev. Literature Quarterly review of medicine = Q Rev Med Quarterly review of pediatrics = Q Rev Pediatr Quarterly review of surgery, obstetrics and gynecology = Q Rev Surg Obstet Gynecol Quarterly review of surgery = Q Rev Surg Quarterly Review of the Rural Economy=Quart. Rev. Rural Economy Quarterly Review = Q. Rev. DC. Nurses. Assoc. Quarterly Reviews, Chemical Society = Q. Rev. Chem. Soc. Quarterly Reviews of Biology = Q. Rev. Biol. Quarterly reviews of biophysics = Q Rev Biophys Quarterly Reviews of Biophysics=Q Rev Biophys;; Quarterly Reviews of Biophysics = Q Rev Biophys Quarterly Reviews of Biophysics = Q. Rev. Biophys. Quarterly reviews on drug metabolism and drug interactions = Q Rev Drug Metab Drug Interact Quarterly Reviews on Drug Metabolism and Drug Interactions = Q. Rev. Drug Metab. Drug Interact. Quarterly Reviews = Q Rev Chem Soc Quarterly Reviews = Q. Rev. Chem. Soc. Quarternary International = Quart. Int. Quasars, Agns and Related Research Across 2000 = Eso Astrophy Symp Quasars, Agns and Related Research Across 2000 = Eso. Astrophy. Symp. Quasars and Cosmology = Astr Soc P Quasars and Cosmology = Astr. Soc. P. Quasicrystals 2003-preparation, Properties and Applications = Mater Res Soc Symp P Quasicrystals 2003-preparation, Properties and Applications = Mater. Res. Soc. Symp. P. Quasicrystals and Imperfectly Ordered Crystals = Mater Sci Forum Quasicrystals and Imperfectly Ordered Crystals = Mater. Sci. Forum. Quasicrystals = Mater Res Soc Symp P Quasicrystals = Mater. Res. Soc. Symp. P. Quasi-gas Dynamic Equations = Comput Fluid Solid M Quasi-gas Dynamic Equations = Comput. Fluid. Solid. M. Quasigroups and Related Systems = Quasigroups Related Systems Quasilinear Hyperbolic Systems, Compressible Flows, and Waves = Ch Crc Monogr Surv P Quasilinear Hyperbolic Systems, Compressible Flows, and Waves = Ch. Crc. Monogr. Surv. P. Quasi-optical Control of Intense Microwave Transmission = Nato Sci Ser Ii-math Quasi-optical Control of Intense Microwave Transmission = Nato. Sci. Ser. Ii-math. Quasi-optical Control of Intense Microwave Transmission = Nato Sci Ser Ii Math Quasi-optical Control of Intense Microwave Transmission = Nato. Sci. Ser. Ii. Math. Quasi-periodic Motions in Families of Dynamical Systems = Lect Notes Math Quasi-periodic Motions in Families of Dynamical Systems = Lect. Notes. Math. Quasispecies: Concept and Implications for Virology = Curr Top Microbiol Quasispecies: Concept and Implications for Virology = Curr. Top. Microbiol. Quasi-stationary Phenomena in Nonlinearly Perturbed Stochastic Systems = Degruyter Expos Math Quasi-stationary Phenomena in Nonlinearly Perturbed Stochastic Systems = Degruyter. Expos. Math. Quaternaire = Quaternaire Quaternaria. Storia naturale e culturale del quaternario = Quaternaria Quaternary Carbonate and Evaporite Sedimentary Facies and Their Ancient Analogues: A Tribute to Douglas James Shearman = Spec Publ Int Ass Se Quaternary Carbonate and Evaporite Sedimentary Facies and Their Ancient Analogues: A Tribute to Douglas James Shearman = Spec. Publ. Int. Ass. Se. Quaternary Deltas in India = Geol Soc India Mem Quaternary Deltas in India = Geol. Soc. India Mem. Quaternary Engineering Geology = Geol Soc En Quaternary Engineering Geology = Geol. Soc. En. Quaternary Geochronology = Quat Geochronol Quaternary Geochronology = Quat. Geochronol. Quaternary International = Quatern Int Quaternary International = Quatern. Int. Quaternary International = Quat. Int. Quaternary of South America and Antarctic Peninsula = Quaternary South Am Quaternary of South America and Antarctic Peninsula = Quaternary South Am. Quaternary of South America and Antarctic Peninsula = Quat S Am A Quaternary of South America and Antarctic Peninsula = Quat. S. Am. A. Quaternary of South America and Antarctic Peninsula, Vol 6 (1988 ) = Quaternary South Am Quaternary of South America and Antarctic Peninsula, Vol 6 (1988 ) = Quaternary South Am. Quaternary of South America and Antarctic Peninsula, Vol 8 (1990) = Quat S Am A Quaternary of South America and Antarctic Peninsula, Vol 8 (1990) = Quat. S. Am. A. Quaternary Research = Quaternary Res Quaternary Research = Quaternary Res. Quaternary Research = Quat. Res. Quaternary Science Reviews = Quaternary Sci Rev Quaternary Science Reviews = Quaternary Sci. Rev. Quaternary Science Reviews = Quat. Sci. Rev. Queen Mary Studies in Intellectual Property = Queen Mary Stud Inte Queen Mary Studies in Intellectual Property = Queen Mary Stud. Inte. Queen's gazette = Queens Gazette Queenship and Power = Queenship Power Queensland Agricultural Journal = Queensland Agr J Queensland Agricultural Journal = Queensland Agr. J. Queensland Nurse = Qld. Nurse Queensland nurses journal = Qld Nurses J Queensland Nurses Journal = Qld. Nurses J. Queen's law journal = Queens Law J Queen's nursing journal = Queens Nurs J Queens Nursing Journal = Queens Nurs. J. Queen's Papers in Pure and Applied Mathematics = Queen's Papers in Pure and Appl. Math. Queens Policy Studies Series = Queens Policy Stud S Queens Policy Studies Series = Queens Policy Stud. S. Queen's quarterly = Queen's Q Queens Quarterly = Queens Quart Queens Quarterly = Queens Quart. Queens, Queen Mothers, Priestesses, and Power = Ann Ny Acad Sci Queens, Queen Mothers, Priestesses, and Power = Ann. Ny. Acad. Sci. Queer Inclusion in The United Methodist Church = New Approach Sociol Queer Inclusion in The United Methodist Church = New. Approach. Sociol. Queering Tourism: Paradoxical Performances At Gay Pride Parades = Routl Stud Hum Geogr Queering Tourism: Paradoxical Performances At Gay Pride Parades = Routl. Stud. Hum. Geogr. Queer Latino Testimonio, Keith Haring, and Juanito Xtravaganza: Hard Tails = New Concepts Lat Am Queer Latino Testimonio, Keith Haring, and Juanito Xtravaganza: Hard Tails = New. Concepts. Lat. Am. Queer Political Performance and Protest = Routl Adv Sociol Queer Political Performance and Protest = Routl. Adv. Sociol. Queer Sexualities in French and Francophone Literature and Film = Fr Lit Ser Queer Sexualities in French and Francophone Literature and Film = Fr. Lit. Ser. Quellen und Forschungen aus italienischen Archiven und Bibliotheken = Quellen Forsch Ital Arch Bibl Quellen Und Forschungen Zur Literatur Und Kulturgeschichte Der Germanischen Volker Neue Folge = Quell Fors Lit Kul G Quellen Und Forschungen Zur Literatur Und Kulturgeschichte Der Germanischen Volker Neue Folge = Quell. Fors. Lit. Kul. G. Quellen Und Forschungen Zur Literatur Und Kulturgeschichte = Quell Forsch Lit Kul Quellen Und Forschungen Zur Literatur Und Kulturgeschichte = Quell. Forsch. Lit. Kul. Quellen und Studien zur Geschichte der Pharmazie = Quellen Stud Gesch Pharm Quellen Und Studien Zur Philosophie = Quellen Stud Philos Quellen Und Studien Zur Philosophie = Quellen Stud. Philos. Quercy recherche = Quercy Rech Querying Databases Privately = Lect Notes Comput Sc Querying Databases Privately = Lect. Notes. Comput. Sc. Que Sais-Je? = Que Sais-Je? Quest for A General Theory of Leadership = New Horiz Leadersh S Quest for A General Theory of Leadership = New. Horiz. Leadersh. S. Quest for Epic in Contemporary American Fiction = Routl Transnat Persp Quest for Epic in Contemporary American Fiction = Routl. Transnat. Persp. Quest for Gentility in China: Negotiations Beyond Gender and Class = Routl Stud Mod Hist Quest for Gentility in China: Negotiations Beyond Gender and Class = Routl. Stud. Mod. Hist. Quest for Gentility in China: Negotiations Beyond Gender and Class = Rout St Mod Hist Asi Quest for Gentility in China: Negotiations Beyond Gender and Class = Rout. St. Mod. Hist. Asi. Quest for Moral Leaders: Essays On Leadership Ethics = New Hor Leadersh St Quest for Moral Leaders: Essays On Leadership Ethics = New. Hor. Leadersh. St. Quest for The Fundamental Constants in Cosmology = Moriond Ast Quest for The Fundamental Constants in Cosmology = Moriond. Ast. Quest (Grand Rapids, Mich.) = Quest Qüestiió = Qüestiió (2) Questioning Cities = Question Cities Questioning Cities = Question. Cities Questioning Cities = Questioning Cities Questioning Cosmopolitanism = Stud Global Justice Questioning Cosmopolitanism = Stud. Global. Justice. Questioning Cosmopolitanism = Stud Glob Justice Questioning Cosmopolitanism = Stud. Glob. Justice. Questioning Eu Enlargement: Europe in Search of Identity = Rout Stud Democr Eur Questioning Eu Enlargement: Europe in Search of Identity = Rout. Stud. Democr. Eur. Questioning God = In Phil Rel Questioning God = In. Phil. Rel. Question of Commitment: Childrens Rights in Canada = Stud Child Fam Can Question of Commitment: Childrens Rights in Canada = Stud. Child. Fam. Can. Questions and Answers in General Topology = Questions Answers Gen. Topology Questions and Answers : Strategies for Using The Electronic Reference Collection = Cl Lib Appl Questions and Answers : Strategies for Using The Electronic Reference Collection = Cl. Lib. Appl. Questions in Dynamic Semantics = Curr Res Semant Prag Questions in Dynamic Semantics = Curr. Res. Semant. Prag. Questions of Consciousness = Asa Monogr Questions of Consciousness = Asa. Monogr. Quest = Quest Queueing Networks: A Fundamental Approach = Int Ser Oper Res Man Queueing Networks: A Fundamental Approach = Int. Ser. Oper. Res. Man. Queueing, Performance and Control in Atm = North Holl Stud Tele Queueing, Performance and Control in Atm = North. Holl. Stud. Tele. Queueing Systems = Queueing Syst Queueing Systems = Queueing Syst. Queueing Systems = Queueing Systems Theory Appl. Queueing Systems : Theory and Applications = Queueing Sy Queueing Systems : Theory and Applications = Queueing Sy. Qufu Shifan Daxue Xuebao = Qufu Shifan Daxue Xuebao Ziran Kexue Ban Quick Finite Elements for Electromagnetic Waves, Second Edition = Artech Hse Elec Anal Quick Finite Elements for Electromagnetic Waves, Second Edition = Artech. Hse. Elec. Anal. Quick Frozen Foods = Quick Frozen Food Quick Frozen Foods = Quick Frozen Food. Quilts: Central Extensions, Braid Actions and Finite Groups = Lect Notes Math Quilts: Central Extensions, Braid Actions and Finite Groups = Lect. Notes. Math. Quimica Analitica = Quim Anal Quimica Analitica = Quim. Anal. Quimica Analitica = Quim. Anal. (Barcelona) Quimica no Brasil = Quim. Bras. Quimica nova = Quim Nova Quimica Nova = Quim Nova Quimica Nova = Quim. Nova Quinnipiac health law journal = Quinnipiac Health Law J Quinones and Quinone Enzymes, Pt A = Method Enzymol Quinones and Quinone Enzymes, Pt A = Method. Enzymol. Quinones and Quinone Enzymes, Pt B = Method Enzymol Quinones and Quinone Enzymes, Pt B = Method. Enzymol. Quinquereme-new Studies in Modern Languages = Quinquereme Quinquereme-new Studies in Modern Languages = Quinquereme. Quintessence international (Berlin, Germany : 1985) = Quintessence Int Quintessence international, dental digest = Quintessence Int Dent Dig Quintessence International. Edition Francaise = Quintessence Int [Fr] Quintessence International. Edition Francaise = Quintessence Int. [Fr.] Quintessence International = Quintessence Int Quintessence International = Quintessence Int. Quintessence international = Quintessence Int (Berl) Quintessence of dental technology = Quintessence Dent Technol Quintessence of Dental Technology = Quintessence Dent. Technol. Quintessencia de protese de laboratorio = Quintessencia Protese Lab Quintessencia de Protese de Laboratorio = Quintessencia Protese Lab. Quintessencia = Quintessencia Quintessentials of Dental Practice = Quintessent Dent Pra Quintessentials of Dental Practice = Quintessent. Dent. Pra. Quintessenza = Quintessenza Quintessenz der Zahntechnik = Quintessenz Zahntech. Quintessenz-Impulse : magazin fur Kommunikation & Praxismanagement = Quintessenz Impulse Quintessenz-Impulse = Quintessenz. Impulse Quintessenz Journal = Quintessenz J Quintessenz Journal = Quintessenz J. Quintessenz = Quintessenz Quinto centenario = Quinto Cent Quintus Smyrnaeus: Transforming Homer in Second Sophistic Epic = Millennium Studien Quintus Smyrnaeus: Transforming Homer in Second Sophistic Epic = Millennium. Studien. Quinzaine Litteraire = Quinzaine Litteraire Quipu = Quipu Qumran: The Site of The Dead Sea Scrolls: Archaeological Interpretations and Debates = Stud Text Des Judah Qumran: The Site of The Dead Sea Scrolls: Archaeological Interpretations and Debates = Stud. Text. Des. Judah. Quorum Sensing: Methods and Protocols = Methods Mol Biol Quorum Sensing: Methods and Protocols = Methods Mol. Biol. Quotative Indexes in African Languages: A Synchronic and Diachronic Survey = Empir Approach Lang Quotative Indexes in African Languages: A Synchronic and Diachronic Survey = Empir. Approach. Lang. Quoting Death in Early Modern England: The Poetics of Epitaphs Beyond The Tomb = Early Mod Lit Hist Quoting Death in Early Modern England: The Poetics of Epitaphs Beyond The Tomb = Early Mod. Lit. Hist. Quo Vadis Europe? = Inst Weltwirts Symp Quo Vadis Europe? = Inst. Weltwirts. Symp. Quo Vadis Medical Healing: Past Concepts and New Approaches = Int Lib Ethics Law Quo Vadis Medical Healing: Past Concepts and New Approaches = Int. Lib. Ethics. Law. Quo Vadis Quantum Mechanics? = Front Collect Quo Vadis Quantum Mechanics? = Front. Collect. Quo Vadis Quantum Mechanics? = Frontiers Coll Quo Vadis Quantum Mechanics? = Frontiers. Coll. Rabbinic Law in Its Roman and Near Eastern Context = Texte Stud Antik Jud Rabbinic Law in Its Roman and Near Eastern Context = Texte. Stud. Antik. Jud. Rabbinic Perspectives: Rabbinic Literature and The Dead Sea Scrolls = Stud Text Des Judah Rabbinic Perspectives: Rabbinic Literature and The Dead Sea Scrolls = Stud. Text. Des. Judah. Rabies: Symptoms, Treatment and Prevention = Virol Res Prog Rabies: Symptoms, Treatment and Prevention = Virol. Res. Prog. Racar-revue D Art Canadienne-canadian Art Review = Racar Racar-revue D Art Canadienne-canadian Art Review = Racar. Race and Early Childhood Education: An International Approach to Identity, Politics, and Pedagogy = Crit Cult Stud Child Race and Early Childhood Education: An International Approach to Identity, Politics, and Pedagogy = Crit. Cult. Stud. Child. Race and Economic Opportunity in The Twenty-first Century = Routl Front Polit Ec Race and Economic Opportunity in The Twenty-first Century = Routl. Front. Polit. Ec. Race and Ethnicity: Cultural Roles, Spiritual Practices and Social Challenges = Soc Iss Justice Stat Race and Ethnicity: Cultural Roles, Spiritual Practices and Social Challenges = Soc. Iss. Justice. Stat. Race and Ethnicity in New York City = Res Urban Sociol Race and Ethnicity in New York City = Res. Urban. Sociol. Race and Identity in Hemingways Fiction = Am Lit Read Twenty-f Race and Identity in Hemingways Fiction = Am. Lit. Read. Twenty-f. Race and Multiculturalism in Malaysia and Singapore = Rout Malays Stud Ser Race and Multiculturalism in Malaysia and Singapore = Rout. Malays. Stud. Ser. Race and Rhetoric in The Renaissance: Barbarian Errors = Early Mod Cult Stud Race and Rhetoric in The Renaissance: Barbarian Errors = Early. Mod. Cult. Stud. Race, Class, and Gender in Medieval Cinema = New Middle Ages Race, Class, and Gender in Medieval Cinema = New. Middle. Ages. Race & class = Race Cl Race & Class = Race Cl. Race & Class = Race Class Race Ethnicity and Education = Race Ethn Educ Race Ethnicity and Education = Race Ethn. Educ. Race Ethnicity and Education = Race Ethnic Educ-uk Race Ethnicity and Education = Race Ethnic. Educ-uk. Race, Ethnicity, and Multiculturalism = Mo S Res Educ Pol Race, Ethnicity, and Multiculturalism = Mo. S. Res. Educ. Pol. Race, Ethnicity, and Politics = Race Ethn Polit Race, Ethnicity, and Politics = Race. Ethn. Polit. Race, Gender, and Science = Race Gend. Sci. Race, Immigration, and American Identity in The Fiction of Salman Rushdie, Ralph Ellison, and William Faulkner = Lit Crit Cult Theory Race, Immigration, and American Identity in The Fiction of Salman Rushdie, Ralph Ellison, and William Faulkner = Lit. Crit. Cult. Theory. Race = Race Race, Rights, and Justice = Law Philos Libr Race, Rights, and Justice = Law. Philos. Libr. Race, Social Identity, and Human Dignity = Soc Philos Today Race, Social Identity, and Human Dignity = Soc. Philos. Today. Race, Whiteness, and Education = Crit Soc Thought Race, Whiteness, and Education = Crit. Soc. Thought. Racial Discourse and Cosmopolitanism in Twentieth-century African American Writing = Stud Afr Am Hist Cul Racial Discourse and Cosmopolitanism in Twentieth-century African American Writing = Stud. Afr. Am. Hist. Cul. Racial Discrimination: Institutional Patterns and Politics = Routl Res Race Ethn Racial Discrimination: Institutional Patterns and Politics = Routl. Res. Race. Ethn. Racialized Politics = Stud Commun Media Racialized Politics = Stud. Commun. Media. Racializing Justice, Disenfranchising Lives: The Racism, Criminal Justice, and Law Reader = Crit Black Stud Ser Racializing Justice, Disenfranchising Lives: The Racism, Criminal Justice, and Law Reader = Crit. Black. Stud. Ser. Racial Politics of Booker T. Washington = Res Race Ethn Relat Racial Politics of Booker T. Washington = Res. Race. Ethn. Relat. Racing The Beam: The Atari Video Computer System = Platf Stud Racing The Beam: The Atari Video Computer System = Platf. Stud. Racism, Xenophobia and Ethnic Conflict = St Disarm Confl Racism, Xenophobia and Ethnic Conflict = St. Disarm. Confl. Radar 2002 = Iee Conf Publ Radar 2002 = Iee. Conf. Publ. Radar 92 = Iee Conf Publ Radar 92 = Iee. Conf. Publ. Radar 97 = Iee Conf Publ Radar 97 = Iee. Conf. Publ. Radar and Sonar, Part 1 = Ima V Math Radar and Sonar, Part 1 = Ima. V. Math. Radar Conference = Radar Conf Radar Conference = Radar Conf. Radar/ladar Processing and Applications = P Soc Photo-opt Ins Radar/ladar Processing and Applications = P. Soc. Photo-opt. Ins. Radar Polarimetry = P Soc Photo-opt Ins Radar Polarimetry = P. Soc. Photo-opt. Ins. Radar Processing, Technology, and Applications Iii = P Soc Photo-opt Ins Radar Processing, Technology, and Applications Iii = P. Soc. Photo-opt. Ins. Radar Processing, Technology, and Applications Ii = P Soc Photo-opt Ins Radar Processing, Technology, and Applications Ii = P. Soc. Photo-opt. Ins. Radar Processing, Technology, and Applications Iv = P Soc Photo-opt Ins Radar Processing, Technology, and Applications Iv = P. Soc. Photo-opt. Ins. Radar Processing, Technology, and Applications = P Soc Photo-opt Ins Radar Processing, Technology, and Applications = P. Soc. Photo-opt. Ins. Radar Remote Sensing of Urban Areas = Remote Sens Digit Im Radar Remote Sensing of Urban Areas = Remote Sens. Digit. Im. Radar Sensor Technology 1x = Proc Spie Radar Sensor Technology 1x = Proc. Spie. Radar Sensor Technology 1x = P Soc Photo-opt Ins Radar Sensor Technology 1x = P. Soc. Photo-opt. Ins. Radar Sensor Technology and Data Visualization = Proc Spie Radar Sensor Technology and Data Visualization = Proc. Spie. Radar Sensor Technology and Data Visualization = P Soc Photo-opt Ins Radar Sensor Technology and Data Visualization = P. Soc. Photo-opt. Ins. Radar Sensor Technology Iii = P Soc Photo-opt Ins Radar Sensor Technology Iii = P. Soc. Photo-opt. Ins. Radar Sensor Technology Ii = P Soc Photo-opt Ins Radar Sensor Technology Ii = P. Soc. Photo-opt. Ins. Radar Sensor Technology Iv = Proc Spie Radar Sensor Technology Iv = Proc. Spie. Radar Sensor Technology Iv = P Soc Photo-opt Ins Radar Sensor Technology Iv = P. Soc. Photo-opt. Ins. Radar Sensor Technology = P Soc Photo-opt Ins Radar Sensor Technology = P. Soc. Photo-opt. Ins. Radar Sensor Technology Viii and Passive Millimeter-wave Imaging Technology Vii = Proc Spie Radar Sensor Technology Viii and Passive Millimeter-wave Imaging Technology Vii = Proc. Spie. Radar Sensor Technology Viii and Passive Millimeter-wave Imaging Technology Vii = P Soc Photo-opt Ins Radar Sensor Technology Viii and Passive Millimeter-wave Imaging Technology Vii = P. Soc. Photo-opt. Ins. Radar Sensor Technology Vi = Proc Spie Radar Sensor Technology Vi = Proc. Spie. Radar Sensor Technology Vi = P Soc Photo-opt Ins Radar Sensor Technology Vi = P. Soc. Photo-opt. Ins. Radar Sensor Technology V = Proc Spie Radar Sensor Technology V = Proc. Spie. Radar Sensor Technology V = P Soc Photo-opt Ins Radar Sensor Technology V = P. Soc. Photo-opt. Ins. Radar Sensor Technology Xi = Proc Spie Radar Sensor Technology Xi = Proc. Spie. Radar Sensor Technology Xi = P Soc Photo-opt Ins Radar Sensor Technology Xi = P. Soc. Photo-opt. Ins. Radar Sensor Technology Xiv = Proc Spie Radar Sensor Technology Xiv = Proc. Spie. Radar Sensor Technology Xiv = P Soc Photo-opt Ins Radar Sensor Technology Xiv = P. Soc. Photo-opt. Ins. Radar Sensor Technology X = P Soc Photo-opt Ins Radar Sensor Technology X = P. Soc. Photo-opt. Ins. Radar Sensor Technology Xv = Proc Spie Radar Sensor Technology Xv = Proc. Spie. Radclyffe Hall: A Life in The Writing = Haney Found Ser Radclyffe Hall: A Life in The Writing = Haney. Found. Ser. Rad Hrvatske Akademije Znanosti i Umjetnosti = Rad Hrvatske Akad. Znan. Umjet. Radiation and Environmental Biophysics = Radiat Environ Bioph Radiation and Environmental Biophysics = Radiat. Environ. Bioph. Radiation and environmental biophysics = Radiat Environ Biophys Radiation and Environmental Biophysics=Radiat Environ Biophys;; Radiation and Environmental Biophysics = Radiat. Environ. Biophys. Radiation and Environmental Safety in North-west Russia = Nato Sci Peace Secur Radiation and Environmental Safety in North-west Russia = Nato. Sci. Peace. Secur. Radiation and Homeostasis, Proceedings = Int Congr Ser Radiation and Homeostasis, Proceedings = Int. Congr. Ser. Radiation and Humankind = Int Congr Ser Radiation and Humankind = Int. Congr. Ser. Radiation and Public Perception = Adv Chem Ser Radiation and Public Perception = Adv. Chem. Ser. Radiation Biology and Radiation Protection = Prog Radiat Protect Radiation Biology and Radiation Protection = Prog. Radiat. Protect. Radiation Biology = Radiat. Biol. Radiation Botany = Radiat Bot Radiation Botany = Radiat. Bot. Radiation Curing of Polymeric Materials = Acs Sym Ser Radiation Curing of Polymeric Materials = Acs. Sym. Ser. Radiation Curing of Polymers Ii = Roy Soc Ch Radiation Curing of Polymers Ii = Roy. Soc. Ch. Radiation Damage in Biomolecular Systems = Aip Conf Proc Radiation Damage in Biomolecular Systems = Aip. Conf. Proc. Radiation Damage in Biomolecular Systems = J Phys Conf Ser Radiation Damage in Biomolecular Systems = J. Phys. Conf. Ser. Radiation Damage in Biomolecular Systems (radam07) = J Phys Conf Ser Radiation Damage in Biomolecular Systems (radam07) = J. Phys. Conf. Ser. Radiation data and reports = Radiat Data Rep Radiation Data and Reports = Radiat Data Rep Radiation Data and Reports = Radiat. Data Rep. Radiation Defects in Ion Implanted And/or High-energy Irradiated Mos Structures = Electr Eng Dev Radiation Defects in Ion Implanted And/or High-energy Irradiated Mos Structures = Electr. Eng. Dev. Radiation Detectors for Medical Applications = Nato Sec Sci B Phys Radiation Detectors for Medical Applications = Nato. Sec. Sci. B. Phys. Radiation Effects and Defects in Solids = Radiat Eff Defect S Radiation Effects and Defects in Solids = Radiat. Eff. Defect. S. Radiation Effects and Defects in Solids = Radiat. Eff. Defects Solids Radiation Effects and Ion-beam Processing of Materials = Mater Res Soc Symp P Radiation Effects and Ion-beam Processing of Materials = Mater. Res. Soc. Symp. P. Radiation Effects in Solids = Nato Sci Ser Ii-math Radiation Effects in Solids = Nato. Sci. Ser. Ii-math. Radiation Effects in Solids = Nato Sci Ser Ii Math Radiation Effects in Solids = Nato. Sci. Ser. Ii. Math. Radiation Effects Letters = Radiat Eff Lett Radiation Effects Letters = Radiat. Eff. Lett. Radiation Effects On Polymers = Acs Sym Ser Radiation Effects On Polymers = Acs. Sym. Ser. Radiation Effects On Polymers for Biological Use = Adv Polym Sci Radiation Effects On Polymers for Biological Use = Adv. Polym. Sci. Radiation effects = Radiat Eff Radiation From Black Holes, Future Missions to Primitive Bodies and Middle Atmospheric Fine Structures = Adv Space Res Radiation From Black Holes, Future Missions to Primitive Bodies and Middle Atmospheric Fine Structures = Adv. Space. Res. Radiation From Black Holes, Future Missions to Primitive Bodies and Middle Atmospheric Fine Structures = Adv Space Res-series Radiation From Black Holes, Future Missions to Primitive Bodies and Middle Atmospheric Fine Structures = Adv. Space. Res-series. Radiation Inactivation of Bioterrorism Agents = Nato Sci Ser I Life Radiation Inactivation of Bioterrorism Agents = Nato. Sci. Ser. I. Life. Radiation Induced F1 Sterility in Lepidoptera for Area-wide Control = Iaea Pan P Radiation Induced F1 Sterility in Lepidoptera for Area-wide Control = Iaea. Pan. P. Radiation Injury = Front Radiat Ther On Radiation Injury = Front. Radiat. Ther. On. Radiation Interaction Wtih Material and Its Use in Technologies = Rad Int Mat Tech Radiation Interaction Wtih Material and Its Use in Technologies = Rad. Int. Mat. Tech. Radiation measurements = Radiat Meas Radiation Measurements = Radiat Meas Radiation Measurements = Radiat. Meas. Radiation medicine = Radiat Med Radiation Medicine=Radiat Med;; Radiation Medicine = Radiat Med Radiation Medicine = Radiat. Med. Radiation Medicine Rounds = Radiat Med Rounds Radiation Medicine Rounds = Radiat. Med. Rounds Radiation Oncology: An Evidence-based Approach = Med Radiol Radiat On Radiation Oncology: An Evidence-based Approach = Med. Radiol. Radiat. On. Radiation Oncology: A Physicist's-eye View = Biol Med Phys Biomed Radiation Oncology: A Physicist's-eye View = Biol. Med. Phys. Biomed. Radiation Oncology Investigations = Radiat Oncol Invest Radiation Oncology Investigations = Radiat. Oncol. Invest. Radiation Oncology Investigations = Radiat Oncol Investi Radiation Oncology Investigations = Radiat. Oncol. Investi. Radiation oncology investigations = Radiat Oncol Investig Radiation Oncology Investigations=Radiat Oncol Investig;; Radiation Oncology Investigations = Radiat. Oncol. Investig. Radiation oncology (London, England) = Radiat Oncol Radiation Oncology = Radiat Oncol Radiation Oncology = Radiat. Oncol. Radiation Physics and Chemistry = Radiat Phys Chem Radiation Physics and Chemistry = Radiat. Phys. Chem. Radiation Physics for Medical Physicists, Second, Enlarged Edition = Biol Med Phys Biomed Radiation Physics for Medical Physicists, Second, Enlarged Edition = Biol. Med. Phys. Biomed. Radiation Protection Dosimetry = Radiat Prot Dosim Radiation Protection Dosimetry = Radiat. Prot. Dosim. Radiation protection dosimetry = Radiat Prot Dosimetry Radiation Protection in Medical Physics = Nato Sci Peace Sec B Radiation Protection in Medical Physics = Nato. Sci. Peace. Sec. B. Radiation Protection in Medicine: Contemporary Issues = P Nat C Rad Radiation Protection in Medicine: Contemporary Issues = P. Nat. C. Rad. Radiation Protection in Medicine = P Nat C Rad Radiation Protection in Medicine = P. Nat. C. Rad. Radiation Protection = Radiat Prot Radiation Protection = Radiat. Prot. Radiation Protection Today - The Ncrp At Sixty Years = P Nat C Rad Radiation Protection Today - The Ncrp At Sixty Years = P. Nat. C. Rad. Radiation Protection Training and Information for Workers = Radiat Prot Radiation Protection Training and Information for Workers = Radiat. Prot. Radiation research = Radiat Res Radiation Research=Radiat Res;; Radiation Research = Radiat Res Radiation Research = Radiat. Res. Radiation Research Reviews = Radiat Res Rev Radiation Research Reviews = Radiat. Res. Rev. Radiation research. Supplement = Radiat Res Suppl Radiation Research. Supplement = Radiat. Res. Suppl. Radiation Risk Estimates in Normal and Emergency Situations = Nato Sec Sci B Phys Radiation Risk Estimates in Normal and Emergency Situations = Nato. Sec. Sci. B. Phys. Radiation Safety Problems in The Caspian Region = Nato Sci S Ss Iv Ear Radiation Safety Problems in The Caspian Region = Nato. Sci. S. Ss. Iv. Ear. Radiation Science and Societal Decision Making = Ncrp Proc Radiation Science and Societal Decision Making = Ncrp. Proc. Radiation Sources and Radiation Interactions = Proc Spie Radiation Sources and Radiation Interactions = Proc. Spie. Radiation Sources and Radiation Interactions = P Soc Photo-opt Ins Radiation Sources and Radiation Interactions = P. Soc. Photo-opt. Ins. Radiation Therapy of Benign Diseases = Front Radiat Ther On Radiation Therapy of Benign Diseases = Front. Radiat. Ther. On. Radiation Tolerance of Normal Tissues = Front Radiat Ther On Radiation Tolerance of Normal Tissues = Front. Radiat. Ther. On. Radiative Corrections = Nato Adv Sci I B-phy Radiative Corrections = Nato. Adv. Sci. I. B-phy. Radiative Transfer and Applications to Very Large Telescopes = Eas Publications Radiative Transfer and Applications to Very Large Telescopes = Eas. Publications. Radiative Transfer and Hydrodynamics in Astrophysics = Eas Publications Radiative Transfer and Hydrodynamics in Astrophysics = Eas. Publications. Radiatsionnaia Biologiia, Radioecologiia=Radiats Biol Radioecol;; Radiatsionnaia Biologiia, Radioecologiia = Radiats. Biol. Radioecol. Radiatsionnaia biologiia, radioecologiia / Rossiiskaia akademiia nauk = Radiats Biol Radioecol Radiatsionnaya Bezopasnost i Zashchita AES = Radiats. Bezop. Zashch. AES Radical America = Radic Am Radical Biology: Advances and Perspectives On The Function of Plant Roots = Cur Top Pl Radical Biology: Advances and Perspectives On The Function of Plant Roots = Cur. Top. Pl. Radical Embodied Cognitive Science = Bradford Books Radical Embodied Cognitive Science = Bradford. Books. Radical History Review = Radical Hist Rev Radical History Review = Radical Hist. Rev. Radical history review = Radic Hist Rev Radical Innovations of Software and Systems Engineering in The Future = Lect Notes Comput Sc Radical Innovations of Software and Systems Engineering in The Future = Lect. Notes. Comput. Sc. Radical Pacifism in Modern America: Egalitarianism and Protest = Polit Cult Mod Am Radical Pacifism in Modern America: Egalitarianism and Protest = Polit. Cult. Mod. Am. Radical Pedagogy: Identity, Generativity, and Social Transformation = Psychoanal Educ Soc Radical Pedagogy: Identity, Generativity, and Social Transformation = Psychoanal. Educ. Soc. Radical Philosophy = Radical Philos Radical Philosophy = Radical Philos. Radical Philosophy Today = Radic Philos Today Radical Philosophy Today = Radic. Philos. Today Radical Polymerisation Polyeletrolytes = Adv Polym Sci Radical Polymerisation Polyeletrolytes = Adv. Polym. Sci. Radical Reactions in Aqueous Media = Rsc Green Chem Ser Radical Reactions in Aqueous Media = Rsc. Green. Chem. Ser. Radicals and Non-equilibrium Processes in Low-temperature Plasmas = J Phys Conf Ser Radicals and Non-equilibrium Processes in Low-temperature Plasmas = J. Phys. Conf. Ser. Radical Science = Radical Sci J Radical Science = Radical Sci. J. Radicals in Synthesis Ii: Complex Molecules = Top Curr Chem Radicals in Synthesis Ii: Complex Molecules = Top. Curr. Chem. Radicals in Synthesis I: Methods and Mechanisms = Top Curr Chem Radicals in Synthesis I: Methods and Mechanisms = Top. Curr. Chem. Radicals, Rhetoric, and The War = Palgr Stud Oral Hist Radicals, Rhetoric, and The War = Palgr. Stud. Oral. Hist. Radical Welfare State Retrenchment: A Comparative Analysis = Transform State Radical Welfare State Retrenchment: A Comparative Analysis = Transform. State Radioactive and Mixed Waste - Risk As A Basis for Waste Classification = Ncrp Symp Proc Radioactive and Mixed Waste - Risk As A Basis for Waste Classification = Ncrp. Symp. Proc. Radioactive Contamination Research Developments = Env Remed Tech Regul Radioactive Contamination Research Developments = Env. Remed. Tech. Regul. Radioactive Isotopes in Clinical Medicine and Research = Adv Phar Sc Radioactive Isotopes in Clinical Medicine and Research = Adv. Phar. Sc. Radioactive Particles in The Environment = Nato Sci Peace Secur Radioactive Particles in The Environment = Nato. Sci. Peace. Secur. Radioactive Waste Management 2000: Challenges, Solutions, and Opportunities = Imeche Conf Trans Radioactive Waste Management 2000: Challenges, Solutions, and Opportunities = Imeche. Conf. Trans. Radioactive Waste Management and Environmental Restoration = Radioact Waste Manag Radioactive Waste Management and Environmental Restoration = Radioact. Waste Manag. Radioactive Waste Management = Radioact W Radioactive Waste Management = Radioact. W. Radioactivity and Pollution in The Nordic Seas and Arctic Region: Observations, Modeling and Simulations = Springer-prax Books Radioactivity and Pollution in The Nordic Seas and Arctic Region: Observations, Modeling and Simulations = Springer-prax. Books. Radioactivity in Humans and The Environment = Prog Radiat Protect Radioactivity in Humans and The Environment = Prog. Radiat. Protect. Radioactivity in The Environment = Radioactiv Environm Radioactivity in The Environment = Radioactiv. Environm. Radioaktivitat in Mensch Und Umwelt, Bands 1 and 2 = Prog Radiat Protect Radioaktivitat in Mensch Und Umwelt, Bands 1 and 2 = Prog. Radiat. Protect. Radioanalytical Methods in Interdisciplinary Research = Acs Sym Ser Radioanalytical Methods in Interdisciplinary Research = Acs. Sym. Ser. Radio and Electronic Engineer = J I Electron Rad Eng Radio and Electronic Engineer = J. I. Electron. Rad. Eng. Radio Astronomy At The Fringe, Proceedings = Astr Soc P Radio Astronomy At The Fringe, Proceedings = Astr. Soc. P. Radio Astronomy From Karl Jansky to Microjansky = Eas Publications Radio Astronomy From Karl Jansky to Microjansky = Eas. Publications. Radiobiologia, radioterapia, e fisica medica = Radiobiol Radioter Fis Med Radiobiologia, Radioterapia e Fisica Medica = Radiobiol. Radioter. Fis. Med. Radiobiologia-radiotherapia = Radiobiol Radiother Radiobiologia-radiotherapia = Radiobiol. Radiother. Radiobiologia, Radiotherapia = Radiobiol. Radiother. Radiobiologia, radiotherapia = Radiobiol Radiother (Berl) Radiobiologia, Radiotherapia = Radiobiol. Radiother. (Berl.) Radiobiologica Radioterapia E Fisica Medica = Radiobiol Radioter Radiobiologica Radioterapia E Fisica Medica = Radiobiol. Radioter. Radiobiologiia = Radiobiologiia Radiobiologiya = Radiobiologiya Radiocarbon. An International Journal of Cosmogenic Isotope Research = Radiocarbon Radiocarbon = Radiocarbon Radiochemical and Radioanalytical Letters = Radiochem Radioa Let Radiochemical and Radioanalytical Letters = Radiochem. Radioa. Let. Radiochemistry (Moscow, Russian Federation)(Translation of Radiokhimiya) = Radiochemistry (Moscow, Russ. Fed.) Radiochemistry (New York, NY, United States) = Radiochemistry (N. Y., NY, U. S.) Radiochemistry = Radiochemistry+ Radiochemistry = Radiochemistry+.+ Radiochimica Acta = Radiochim Acta Radiochimica Acta = Radiochim. Acta Radio Detection of High Energy Particles = Aip Conf Proc Radio Detection of High Energy Particles = Aip. Conf. Proc. Radio-electronics = Radio-electron Radio-electronics = Radio-electron. Radio Emission From Galactic and Extragalactic Compact Sources = Astr Soc P Radio Emission From Galactic and Extragalactic Compact Sources = Astr. Soc. P. Radio Emission From The Stars and The Sun = Astr Soc P Radio Emission From The Stars and The Sun = Astr. Soc. P. Radio Engineering and Electronic Physics-ussr = Radio Eng Electron P Radio Engineering and Electronic Physics-ussr = Radio Eng. Electron. P. Radioengineering = Radioengineering Radio Eye: Cinema in The North Atlantic, 1958-1988 = Film Media Stud Ser Radio Eye: Cinema in The North Atlantic, 1958-1988 = Film. Media. Stud. Ser. Radio Frequency Identification: Security and Privacy Issues = Lect Notes Comput Sc Radio Frequency Identification: Security and Privacy Issues = Lect. Notes. Comput. Sc. Radio Frequency Integrated, Second Edition = Artech Hse Microw Li Radio Frequency Integrated, Second Edition = Artech. Hse. Microw. Li. Radio Frequency Photonic Devices and Systems = P Soc Photo-opt Ins Radio Frequency Photonic Devices and Systems = P. Soc. Photo-opt. Ins. Radio Frequency Power in Plasmas = Aip Conf Proc Radio Frequency Power in Plasmas = Aip. Conf. Proc. Radio Frequency Radiation Dosimetry and Its Relationship to The Biological Effects of Electromagnetic Fields = Nato Asi 3 High Tech Radio Frequency Radiation Dosimetry and Its Relationship to The Biological Effects of Electromagnetic Fields = Nato. Asi. 3. High. Tech. Radiofrequency Radiation Standards = Nato Adv Sci Inst Se Radiofrequency Radiation Standards = Nato. Adv. Sci. Inst. Se. Radio Galaxy Messier 87 = Lect Notes Phys Radio Galaxy Messier 87 = Lect. Notes. Phys. Radiographics : a review publication of the Radiological Society of North America, Inc = Radiographics Radiographics=Radiographics;; Radiographics = Radiographics Radiography = Radiography Radiography today = Radiogr Today Radiography Today = Radiogr. Today Radio Handbook = Media Pract Radio Handbook = Media. Pract. Radio Interferometry : Theory, Techniques, and Applications = Astr Soc P Radio Interferometry : Theory, Techniques, and Applications = Astr. Soc. P. Radioisotopes = Radioisotopes Radioisotope Thin-film Powered Microsystems = Mems Ref Shelf Radioisotope Thin-film Powered Microsystems = Mems. Ref. Shelf. Radiokhimiya = Radiokhimiya Radiolabeled Blood Elements: Recent Advances in Techniques and Applications = Nato Adv Sci Inst Se Radiolabeled Blood Elements: Recent Advances in Techniques and Applications = Nato. Adv. Sci. Inst. Se. Radiolabelled Cellular Blood Elements = Prog Clin Biol Res Radiolabelled Cellular Blood Elements = Prog. Clin. Biol. Res. Radiologe=Radiologe;; Radiologe = Radiologe Radiologia Austriaca = Radiol Austriaca Radiologia Austriaca = Radiol. Austriaca Radiologia Clinica Et Biologica = Radiol Clin Radiologia Clinica Et Biologica = Radiol. Clin. Radiologia clinica et biologica = Radiol Clin Biol Radiologia Clinica et Biologica = Radiol. Clin. Biol. Radiologia clinica = Radiol Clin Radiologia Clinica = Radiol Clin Radiologia Clinica = Radiol. Clin. Radiologia Clinica = Radiol. Clin. (Basel) Radiologia Diagnostica = Radiol Diagn Radiologia Diagnostica = Radiol. Diagn. Radiologia diagnostica = Radiol Diagn (Berl) Radiologia Diagnostica = Radiol. Diagn. (Berl.) Radiologia interamericana = Radiol Interam Radiologia Medica = Radiol Med Radiologia Medica = Radiol. Med. Radiologia Medica=Radiol Med (Torino);; Radiologia Medica = Radiol. Med. (Torino) Radiologia pratica = Radiol Prat Radiologia = Radiologia Radiologia = Radiologia-madrid Radiologia = Radiologia-madrid. Radiological Health Data and Reports = Radiol Health Data R Radiological Health Data and Reports = Radiol. Health Data R. Radiological health data and reports = Radiol Health Data Rep Radiological Health Data and Reports = Radiol. Health Data Rep. Radiological Imaging of The Digestive Tract in Infants and Children = Med Radiol Diagn Ima Radiological Imaging of The Digestive Tract in Infants and Children = Med. Radiol. Diagn. Ima. Radiological Imaging of The Neonatal Chest, 2nd Edition = Med Radiol Diagn Ima Radiological Imaging of The Neonatal Chest, 2nd Edition = Med. Radiol. Diagn. Ima. Radiologic Clinics of North America = Radiol Clin N Am Radiologic Clinics of North America = Radiol. Clin. N. Am. Radiologic clinics of North America = Radiol Clin North Am Radiologic Clinics of North America=Radiol Clin North Am;; Radiologic Clinics of North America = Radiol. Clin. North Am. Radiologic technology = Radiol Technol Radiologic Technology=Radiol Technol;; Radiologic Technology = Radiol. Technol. Radiology and Oncology = Radiol Oncol Radiology and Oncology = Radiol. Oncol. Radiology / = Int Congr Ser Radiology / = Int. Congr. Ser. Radiology management = Radiol Manage Radiology Management = Radiol. Manage. Radiology of Osteoporosis, 2nd Edition = Med Radiol Diagn Ima Radiology of Osteoporosis, 2nd Edition = Med. Radiol. Diagn. Ima. Radiology of The Stomach and Duodenum = Med Radiol Diagn Ima Radiology of The Stomach and Duodenum = Med. Radiol. Diagn. Ima. Radiology=Radiology;; Radiology = Radiology Radionuclides in Food Chain = Ilsi Monogr Radionuclides in Food Chain = Ilsi. Monogr. Radionuclides in Nephro-urology = Contrib Nephrol Radionuclides in Nephro-urology = Contrib. Nephrol. Radiophysics and Quantum Electronics = Radiophys. and Quantum Electronics Radiophysics and Quantum Electronics = Radiophys Quant El+ Radiophysics and Quantum Electronics = Radiophys. Quant. El+.+ Radiophysics and Quantum Electronics = Radiophys Quantum El Radiophysics and Quantum Electronics = Radiophys. Quantum El. Radiophysics and Quantum Electronics = Radiophys. Quantum Electron. Radioprotection = Radioprotection Radio Pulsars, Proceedings = Astr Soc P Radio Pulsars, Proceedings = Astr. Soc. P. Radio Recombination Lines : 25 Years of Investigation = Astrophys Space Sc L Radio Recombination Lines : 25 Years of Investigation = Astrophys. Space. Sc. L. Radio Science = Radio Sci Radio Science = Radio Sci. Radio Sensor Technology Xii = Proc Spie Radio Sensor Technology Xii = Proc. Spie. Radio Sensor Technology Xii = P Soc Photo-opt Ins Radio Sensor Technology Xii = P. Soc. Photo-opt. Ins. Radio Sounding and Plasma Physics = Aip Conf Proc Radio Sounding and Plasma Physics = Aip. Conf. Proc. Radiosurgery 1995 = Radiosurg Radiosurgery 1995 = Radiosurg. Radiosurgery 1997 = Radiosurg Radiosurgery 1997 = Radiosurg. Radiosurgery 1999 = Radiosurg Radiosurgery 1999 = Radiosurg. Radiosurgery = Radiosurg Radiosurgery = Radiosurg. Radiosurgery (series) = Radiosurg Radiosurgery (series) = Radiosurg. Radiosurgery, Vol 4 = Radiosurg Radiosurgery, Vol 4 = Radiosurg. Radiosurgery, Vol 6 = Radiosurg Radiosurgery, Vol 6 = Radiosurg. Radiosurgery, Vol 7 = Radiosurg Radiosurgery, Vol 7 = Radiosurg. Radiotekhnika i Elektronika (Moscow) = Radiotekh. Elektron. (Moscow) Radiotekhnika I Elektronika = Radiotekh Elektron+ Radiotekhnika I Elektronika = Radiotekh. Elektron+.+ Radiotekhnika = Radiotekhnika Radio Telescopes = P Soc Photo-opt Ins Radio Telescopes = P. Soc. Photo-opt. Ins. Radioterapia, radiobiologia e fisica medica = Radioter Radiobiol Fis Medica Radiotherapy and Brachytherapy = Nato Science Peace S Radiotherapy and Brachytherapy = Nato. Science. Peace. S. Radiotherapy and oncology : journal of the European Society for Therapeutic Radiology and Oncology = Radiother Oncol Radiotherapy and Oncology=Radiother Oncol;; Radiotherapy and Oncology = Radiother Oncol Radiotherapy and Oncology = Radiother. Oncol. Radiotherapy / Chemotherapy Interactions in Cancer Therapy = Front Radiat Ther On Radiotherapy / Chemotherapy Interactions in Cancer Therapy = Front. Radiat. Ther. On. Radiotherapy for Non-malignant Disorders = Med Radiol Radiat On Radiotherapy for Non-malignant Disorders = Med. Radiol. Radiat. On. Radiotherapy of Ocular Disease = Front Radiat Ther On Radiotherapy of Ocular Disease = Front. Radiat. Ther. On. Radio Wave Propagation Fundamentals = Artech Hse Radar Lib Radio Wave Propagation Fundamentals = Artech. Hse. Radar. Lib. Radon Series On Computational and Applied Mathematics = Radon Ser Comput App Radon Series On Computational and Applied Mathematics = Radon Ser. Comput. App. Radon Series On Computational and Applied Mathematics = Rad Ser Comp App Radon Series On Computational and Applied Mathematics = Rad. Ser. Comp. App. Radon Transform, Inverse Problems, and Tomography = Proc Sym Ap Radon Transform, Inverse Problems, and Tomography = Proc. Sym. Ap. Radon Transforms and The Rigidity of The Grassmannians = Ann Math Stud Radon Transforms and The Rigidity of The Grassmannians = Ann. Math. Stud. Radon Transforms, Geometry, and Wavelets = Contemp Math Radon Transforms, Geometry, and Wavelets = Contemp. Math. Radovi Matematički = Rad. Mat. Radovi Medicinskog faculteta u Zagrebu = Rad Med Fak Zagrebu Radovi Medicinskog Fakulteta u Zagrebu = Rad. Med. Fak. Zagrebu Radovi. Razdio povijesnih znanosti = RadSplit Radovi Zavoda Za Povijesne Znanosti Hazu U Zadru = Rad Zavoda Povij Zna Radovi Zavoda Za Povijesne Znanosti Hazu U Zadru = Rad. Zavoda Povij. Zna. Radovi Zavoda za povijesne znanosti, Hrvatska akademija znanosti i umjetnosti u Zadru = RadAkZadar Rae-revista De Administracao De Empresas = Rae-rev Admin Empres Rae-revista De Administracao De Empresas = Rae-rev. Admin. Empres. Raffles Bulletin of Zoology = Raffles B Zool Raffles Bulletin of Zoology = Raffles B. Zool. Raggi. Zeitschrift für Kunstgeschichte und Archäologie = Raggi Railroad-highway Grade Crossing Issues = Transport Res Rec Railroad-highway Grade Crossing Issues = Transport. Res. Rec. Railroad Research: Intercity Passenger Transportation, Track Design and Maintenance, and Hazardous Materials Transport = Transport Res Rec Railroad Research: Intercity Passenger Transportation, Track Design and Maintenance, and Hazardous Materials Transport = Transport Res. Rec. Railroads: High-speed Passenger Rail, Railway Bridges, and Track Design and Maintenance = Transport Res Rec Railroads: High-speed Passenger Rail, Railway Bridges, and Track Design and Maintenance = Transport. Res. Rec. Railroads: Intercity Rail Passenger; Track Design and Maintenance; and Other Topics = Transport Res Rec Railroads: Intercity Rail Passenger; Track Design and Maintenance; and Other Topics = Transport. Res. Rec. Railroads: Intercity Rail Passenger Transport; Track Design and Maintenance = Transport Res Rec Railroads: Intercity Rail Passenger Transport; Track Design and Maintenance = Transport. Res. Rec. Railroad Track Engineering and Maintenance; Passenger Rail Planning and Operations = Transport Res Rec Railroad Track Engineering and Maintenance; Passenger Rail Planning and Operations = Transport. Res. Rec. Rails and Environment = Vdi Bericht Rails and Environment = Vdi. Bericht. Rail Traction and Braking = Imeche Sem Rail Traction and Braking = Imeche. Sem. Railway Engineering, Systems, and Safety = Imeche Sem Railway Engineering, Systems, and Safety = Imeche. Sem. Railway Infrastructure = Imeche Conf Trans Railway Infrastructure = Imeche. Conf. Trans. Railway Rolling Stock = Imeche Conf Trans Railway Rolling Stock = Imeche. Conf. Trans. Railway Rolling Stock = Imeche Sem Railway Rolling Stock = Imeche. Sem. Railway Safety = Imeche Conf Trans Railway Safety = Imeche. Conf. Trans. Railways and The Russo-japanese War: Transporting War = Cass Mil Stud Railways and The Russo-japanese War: Transporting War = Cass. Mil. Stud. Railways = Transport Res Rec Railways = Transport. Res. Rec. Railway Transportation: Policies, Technology and Perspectives = Transp Issues Polici Railway Transportation: Policies, Technology and Perspectives = Transp. Issues. Polici. Rainbow of Computer Science = Lect Notes Comput Sc Rainbow of Computer Science = Lect. Notes. Comput. Sc. Rainfall: State of The Science = Geophys Monogr Ser Rainfall: State of The Science = Geophys. Monogr. Ser. Rainfed Agriculture: Unlocking The Potential = Compr Assess Wat Man Rainfed Agriculture: Unlocking The Potential = Compr. Assess. Wat. Man. Rairo-analyse Numerique-numerical Analysis = Rairo-anal Numer-num Rairo-analyse Numerique-numerical Analysis = Rairo-anal. Numer-num. Rairo-automatique-productique Informatique Industrielle-automatic Control Production Systems = Rairo-autom Prod Inf Rairo-automatique-productique Informatique Industrielle-automatic Control Production Systems = Rairo-autom. Prod. Inf. Rairo-automatique-systems Analysis and Control = Rairo-autom-syst Ana Rairo-automatique-systems Analysis and Control = Rairo-autom-syst. Ana. Rairo-informatique-computer Science = Rairo-inf-comput Sci Rairo-informatique-computer Science = Rairo-inf-comput. Sci. RAIRO Informatique Théorique et Applications = RAIRO Inform. Théor. Appl. Rairo-informatique Theorique Et Applications-theoretical Informatics and Applications = Rairo-inf Theor Appl Rairo-informatique Theorique Et Applications-theoretical Informatics and Applications = Rairo-inf. Theor. Appl. Rairo-informatique Theorique-theoretical Computer Science = Rairo-inf Theor-th C Rairo-informatique Theorique-theoretical Computer Science = Rairo-inf. Theor-th. C. Rairo-mathematical Modelling and Numerical Analysis-modelisation Mathematique Et Analyse Numerique = Rairo-math Model Num Rairo-mathematical Modelling and Numerical Analysis-modelisation Mathematique Et Analyse Numerique = Rairo-math. Model. Num. RAIRO Modélisation Mathématique et Analyse Numérique = RAIRO Modél. Math. Anal. Numér. Rairo-operations Research = Rairo-oper Res Rairo-operations Research = Rairo-oper. Res. Rairo-recherche Operationnelle-operations Research = Rairo-rech Oper Rairo-recherche Operationnelle-operations Research = Rairo-rech. Oper. RAIRO Recherche Opérationnelle = RAIRO Rech. Opér. Rairo-theoretical Informatics and Applications = Rairo-theor Inf Appl Rairo-theoretical Informatics and Applications = Rairo-theor. Inf. Appl. Rajasthan medical journal = Rajasthan Med J Raman and Luminescence Spectroscopies in Technology Ii = P Soc Photo-opt Ins Raman and Luminescence Spectroscopies in Technology Ii = P. Soc. Photo-opt. Ins. Raman Scattering = P Soc Photo-opt Ins Raman Scattering = P. Soc. Photo-opt. Ins. Raman Spectroscopy and Light Scattering Technologies in Materials Science = Proc Spie Raman Spectroscopy and Light Scattering Technologies in Materials Science = Proc. Spie. Raman Spectroscopy and Light Scattering Technologies in Materials Science = P Soc Photo-opt Ins Raman Spectroscopy and Light Scattering Technologies in Materials Science = P. Soc. Photo-opt. Ins. Raman Spectroscopy, Fullerenes and Nanotechnology = Rsc Nanosci Nanotech Raman Spectroscopy, Fullerenes and Nanotechnology = Rsc. Nanosci. Nanotech. Raman Spectroscopy in Archaeology and Art History = Rsc Ana S M Raman Spectroscopy in Archaeology and Art History = Rsc. Ana. S. M. Ramanujan Journal = Ramanujan J Ramanujan Journal = Ramanujan J. Ramparts = Ramparts Ramsey Theory: Yesterday, Today and Tomorrow = Prog Math Ramsey Theory: Yesterday, Today and Tomorrow = Prog. Math. Ramus-critical Studies in Greek and Roman Literature = Ramus Ramus-critical Studies in Greek and Roman Literature = Ramus. Rand Conference Proceedings = Rand Conf Proc Rand Conference Proceedings = Rand Conf. Proc. Rand/istituto Affari Internazionali Conference of The New Mediterranean Security Environment = Rand Conf Proc Rand/istituto Affari Internazionali Conference of The New Mediterranean Security Environment = Rand. Conf. Proc. Rand Journal of Economics = Rand J Econ Rand Journal of Economics = Rand J. Econ. RAND Journal of Economics=RAND J. Econ. Random & Computational Dynamics = Random Comput. Dynam. Random Effect and Latent Variable Model Selection = Lect Notes Stat Random Effect and Latent Variable Model Selection = Lect. Notes. Stat. Random Finite Sets for Robot Mapping and Slam: New Concepts in Autonomous Robotic Map Representations = Springer Trac Adv Ro Random Finite Sets for Robot Mapping and Slam: New Concepts in Autonomous Robotic Map Representations = Springer. Trac. Adv. Ro. Randomization and Approximation Techniques in Computer Science = Lect Notes Comput Sc Randomization and Approximation Techniques in Computer Science = Lect. Notes. Comput. Sc. Random Matrices, Random Processes and Integrable Systems = Crm Ser Math Phys Random Matrices, Random Processes and Integrable Systems = Crm. Ser. Math. Phys. Random Media and Composites = Siam Proc S Random Media and Composites = Siam. Proc. S. Random Operators and Stochastic Equations = Random Oper. Stochastic Equations Random Perturbation of Pdes and Fluid Dynamic Models = Lect Notes Math Random Perturbation of Pdes and Fluid Dynamic Models = Lect. Notes. Math. Random Polymers: Ecole D Ete De Probabilites De Saint-flour Xxxvii-2007 = Lect Notes Math Random Polymers: Ecole D Ete De Probabilites De Saint-flour Xxxvii-2007 = Lect. Notes. Math. Random Structures & Algorithms = Random Struct Algor Random Structures & Algorithms = Random Struct. Algor. Random Structures & Algorithms = Random Structures Algorithms Random Surfaces and Quantum Gravity = Nato Adv Sci I B-phy Random Surfaces and Quantum Gravity = Nato. Adv. Sci. I. B-phy. Random Times and Enlargements of Filtrations in A Brownian Setting = Lect Notes Math Random Times and Enlargements of Filtrations in A Brownian Setting = Lect. Notes. Math. Random Vibrations in Spacecraft Structures Design: Theory and Applications = Solid Mech Appl Random Vibrations in Spacecraft Structures Design: Theory and Applications = Solid. Mech. Appl. Random Walks and Diffusions On Graphs and Databases: An Introduction = Springer Ser Synerg Random Walks and Diffusions On Graphs and Databases: An Introduction = Springer. Ser. Synerg. Random Walks and Discrete Potential Theory = Sym Math Random Walks and Discrete Potential Theory = Sym. Math. Random Walks = Bolyai Math Stud Random Walks = Bolyai. Math. Stud. RANF review = RANF Rev RANF Review = RANF Rev. Rangeland Ecology & Management = Rangeland Ecol Manag Rangeland Ecology & Management = Rangeland Ecol. Manag. Rangeland Journal = Rangeland J Rangeland Journal = Rangeland J. Range Management and Agroforestry = Range Manag Agrofor Range Management and Agroforestry = Range Manag. Agrofor. Ranking and Prioritization for Multi-indicator Systems: Introduction to Partial Order Applications = Environ Ecol Stat Se Ranking and Prioritization for Multi-indicator Systems: Introduction to Partial Order Applications = Environ. Ecol. Stat. Se. Ranking Queries On Uncertain Data = Adv Database Syst Ranking Queries On Uncertain Data = Adv. Database. Syst. Ranliao Huaxue Xuebao = Ranliao Huaxue Xuebao Raoul Wallenberg Institute Human Rights Library = Rw Inst Hum R Lib Raoul Wallenberg Institute Human Rights Library = Rw. Inst. Hum. R. Lib. Rapid Communications in Mass Spectrometry = Rapid Commun Mass Sp Rapid Communications in Mass Spectrometry = Rapid Commun. Mass Sp. Rapid Communications in Mass Spectrometry = Rapid Commun. Mass Spectrom. Rapid Communications In Mass Spectrometry=Rapid Commun Mass Spectrom;; Rapid communications in mass spectrometry : RCM = Rapid Commun Mass Spectrom Rapid Detection Assays for Food and Water = Roy Soc Ch Rapid Detection Assays for Food and Water = Roy. Soc. Ch. Rapid Diagnosis of Mycoplasmas = Fems Symp Rapid Diagnosis of Mycoplasmas = Fems. Symp. Rapid Integration of Software Engineering Techniques = Lect Notes Comput Sc Rapid Integration of Software Engineering Techniques = Lect. Notes. Comput. Sc. Rapid Isothermal Processing = P Soc Photo-opt Ins Rapid Isothermal Processing = P. Soc. Photo-opt. Ins. Rapid Load Fracture Testing = Am Soc Test Mater Rapid Load Fracture Testing = Am. Soc. Test. Mater. Rapidly Assembled Structures = T Engineer Rapidly Assembled Structures = T. Engineer. Rapid Methods for Analysis of Biological Materials in The Environment = Nato Sci S 1 Disarm Rapid Methods for Analysis of Biological Materials in The Environment = Nato. Sci. S. 1. Disarm. Rapid Methods in Clinical Microbiology = Adv Exp Med Biol Rapid Methods in Clinical Microbiology = Adv. Exp. Med. Biol. Rapid Product Development Technologies = P Soc Photo-opt Ins Rapid Product Development Technologies = P. Soc. Photo-opt. Ins. Rapid Production of Micro- and Nano-particles Using Supercritical Water = Eng Mater Rapid Production of Micro- and Nano-particles Using Supercritical Water = Eng. Mater. Rapid Prototyping and Engineering Applications: A Toolbox for Prototype Development = Mech Eng Ser Txb Ref Rapid Prototyping and Engineering Applications: A Toolbox for Prototype Development = Mech. Eng. Ser. Txb. Ref. Rapid Prototyping and Flexible Manufacturing = P Soc Photo-opt Ins Rapid Prototyping and Flexible Manufacturing = P. Soc. Photo-opt. Ins. Rapid Prototyping Journal = Rapid Prototyping J Rapid Prototyping Journal = Rapid Prototyping J. Rapid Prototyping = P Soc Photo-opt Ins Rapid Prototyping = P. Soc. Photo-opt. Ins. Rapid Prototyping Technologies = Mater Res Soc Symp P Rapid Prototyping Technologies = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing Iii = Mater Res Soc Symp P Rapid Thermal and Integrated Processing Iii = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing Ii = Mater Res Soc Symp P Rapid Thermal and Integrated Processing Ii = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing Iv = Mater Res Soc Symp P Rapid Thermal and Integrated Processing Iv = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing = Mater Res Soc Symp P Rapid Thermal and Integrated Processing = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing / = P Soc Photo-opt Ins Rapid Thermal and Integrated Processing / = P. Soc. Photo-opt. Ins. Rapid Thermal and Integrated Processing Vii = Mater Res Soc Symp P Rapid Thermal and Integrated Processing Vii = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing Vi = Mater Res Soc Symp P Rapid Thermal and Integrated Processing Vi = Mater. Res. Soc. Symp. P. Rapid Thermal and Integrated Processing V = Mater Res Soc Symp P Rapid Thermal and Integrated Processing V = Mater. Res. Soc. Symp. P. Rapid Thermal and Laser Processing = P Soc Photo-opt Ins Rapid Thermal and Laser Processing = P. Soc. Photo-opt. Ins. Rapid Thermal and Other Short-time Processing Technologies Iii, Proceedings = Elec Soc S Rapid Thermal and Other Short-time Processing Technologies Iii, Proceedings = Elec. Soc. S. Rapid Thermal and Related Processing Techniques = P Soc Photo-opt Ins Rapid Thermal and Related Processing Techniques = P. Soc. Photo-opt. Ins. Rapid Thermal Annealing / Chemical Vapor Deposition and Integrated Processing = Mater Res Soc Symp P Rapid Thermal Annealing / Chemical Vapor Deposition and Integrated Processing = Mater. Res. Soc. Symp. P. Rapid Thermal Processing = Eur Mat Res Rapid Thermal Processing = Eur. Mat. Res. Rapid Tooling Guidelines for Sand Casting = Mech Eng Ser Rapid Tooling Guidelines for Sand Casting = Mech. Eng. Ser. Raporty wykopaliskowe = RapWyk Rapports Et Proces-verbaux Des Reunions - Conseil International Pour L'exploration De La Mer = Rap Proces Rapports Et Proces-verbaux Des Reunions - Conseil International Pour L'exploration De La Mer = Rap. Proces. RAPRA Review Reports = Rapra Rev. Rep. Rare and Exclusive B & K Decays and Novel Flavor Factories = Aip Conf Proc Rare and Exclusive B & K Decays and Novel Flavor Factories = Aip. Conf. Proc. Rare Diseases Epidemiology = Adv Exp Med Biol Rare Diseases Epidemiology = Adv. Exp. Med. Biol. Rare-earth-doped Devices Ii = P Soc Photo-opt Ins Rare-earth-doped Devices Ii = P. Soc. Photo-opt. Ins. Rare-earth-doped Devices = P Soc Photo-opt Ins Rare-earth-doped Devices = P. Soc. Photo-opt. Ins. Rare Earth Doped Iii-nitrides for Optoelectronic and Spintronic Applications = Top Appl Phys Rare Earth Doped Iii-nitrides for Optoelectronic and Spintronic Applications = Top. Appl. Phys. Rare-earth-doped Materials and Devices Iii = P Soc Photo-opt Ins Rare-earth-doped Materials and Devices Iii = P. Soc. Photo-opt. Ins. Rare-earth-doped Materials and Devices Iv = Proc Spie Rare-earth-doped Materials and Devices Iv = Proc. Spie. Rare-earth-doped Materials and Devices Iv = P Soc Photo-opt Ins Rare-earth-doped Materials and Devices Iv = P. Soc. Photo-opt. Ins. Rare-earth-doped Materials and Devices Vii = P Soc Photo-opt Ins Rare-earth-doped Materials and Devices Vii = P. Soc. Photo-opt. Ins. Rare-earth-doped Materials and Devices Vi = P Soc Photo-opt Ins Rare-earth-doped Materials and Devices Vi = P. Soc. Photo-opt. Ins. Rare-earth-doped Materials and Devices V = Proc Spie Rare-earth-doped Materials and Devices V = Proc. Spie. Rare-earth-doped Materials and Devices V = P Soc Photo-opt Ins Rare-earth-doped Materials and Devices V = P. Soc. Photo-opt. Ins. Rare Earth Doped Semiconductors Ii = Mater Res Soc Symp P Rare Earth Doped Semiconductors Ii = Mater. Res. Soc. Symp. P. Rare Earth Doped Semiconductors = Mater Res Soc Symp P Rare Earth Doped Semiconductors = Mater. Res. Soc. Symp. P. Rare-earth Doping for Optoelectronic Applications = Mater Res Soc Symp P Rare-earth Doping for Optoelectronic Applications = Mater. Res. Soc. Symp. P. Rare-earth Doping of Advanced Materials for Photonic Applications = Mater Res Soc Symp P Rare-earth Doping of Advanced Materials for Photonic Applications = Mater. Res. Soc. Symp. P. Rare Earth Elements in Groundwater Flow Systems = Water Sci Technol Li Rare Earth Elements in Groundwater Flow Systems = Water. Sci. Technol. Li. Rare Earth Elements in Groundwater Flow Systems = Water Trans Rare Earth Elements in Groundwater Flow Systems = Water. Trans. Rare-earth Implanted Mos Devices for Silicon Photonics: Microstructural, Electrical and Optoelectronic Properties = Springer Ser Mater S Rare-earth Implanted Mos Devices for Silicon Photonics: Microstructural, Electrical and Optoelectronic Properties = Springer. Ser. Mater. S. Rare Earth Minerals and Minerals for Electronic Uses = Mater Sci Forum Rare Earth Minerals and Minerals for Electronic Uses = Mater. Sci. Forum. Rare Earth Oxide Thin Films: Growth , Characterization , and Applications = Top Appl Phys Rare Earth Oxide Thin Films: Growth , Characterization , and Applications = Top. Appl. Phys. Rare Earth Oxide Thin Films: Growth, Characterization , and Applications = Top Appl Phys Rare Earth Oxide Thin Films: Growth, Characterization , and Applications = Top. Appl. Phys. Rare Earths '98 = Mater Sci Forum Rare Earths '98 = Mater. Sci. Forum. Rare Elements in Glasses = Key Eng Mat Rare Elements in Glasses = Key. Eng. Mat. Rarefied Gas Dynamics = Aip Conf Proc Rarefied Gas Dynamics = Aip. Conf. Proc. Rarefied Gas Dynamics: Experimental Techniques and Physical Systems = Progr Astronaut Aero Rarefied Gas Dynamics: Experimental Techniques and Physical Systems = Progr. Astronaut. Aero. Rarefied Gas Dynamics: Space Science and Engineering = Progr Astronaut Aero Rarefied Gas Dynamics: Space Science and Engineering = Progr. Astronaut. Aero. Rarefied Gas Dynamics: Theory and Simulations = Progr Astronaut Aero Rarefied Gas Dynamics: Theory and Simulations = Progr. Astronaut. Aero. Rare Isotopes and Fundamental Symmetries = Proc Inst Nucl Theor Rare Isotopes and Fundamental Symmetries = Proc. Inst. Nucl. Theor. Rare Kidney Diseases = Contrib Nephrol Rare Kidney Diseases = Contrib. Nephrol. Rare Metal Materials and Engineering = Rare Metal Mat Eng Rare Metal Materials and Engineering = Rare Metal Mat. Eng. Rare Metals (Beijing, China) = Rare Met. (Beijing, China) Rare Metals Materials And Engineering = Rare Met. Mater. Eng. Rare Metals = Rare Met. Rare Metals = Rare Metals Ra-revista De Arquitectura = Ra-rev Arquit Ra-revista De Arquitectura = Ra-rev. Arquit. Raritan-a Quarterly Review = Raritan Raritan-a Quarterly Review = Raritan. Rasayan Journal of Chemistry = Rasayan J. Chem. Ras Oncogenes = Nato Adv Sci I A-lif Ras Oncogenes = Nato. Adv. Sci. I. A-lif. Rasplavy = Rasplavy Rasprave i grada za povijest znanosti / Hrvatska akademija znanosti i umjetnosti = Raspr Grada Povij Znan Rassegna clinico-scientifica = Rass Clin Sci Rassegna Clinico-Scientifica = Rass. Clin. Sci. Rassegna degli archivi di Stato = Rass Arch Stato Rassegna Della Letteratura Italiana = Rass Lett Ital Rassegna Della Letteratura Italiana = Rass. Lett. Ital. Rassegna del Lazio = RassLazio Rassegna di archeologia. Associazione archeologica piombinese = RassAPiomb Rassegna di Clinica Terapia e Scienze Affini = Rass. Clin. Ter. Rassegna di dermatologia e di sifilografia = Rass Dermatol Sifilogr Rassegna di Dermatologia e Sifilografia = Rass. Dermatol. Sifilogr. Rassegna di fisiopatologia clinica e terapeutica = Rass Fisiopatol Clin Ter Rassegna di Fisiopatologia Clinica e Terapeutica = Rass. Fisiopatol. Clin. Ter. Rassegna di medicina industriale e di igiene del lavoro = Rass Med Ind Ig Lav Rassegna di medicina sperimentale = Rass Med Sper Rassegna di neurologia vegetativa = Rass Neurol Veg Rassegna di Neurologia Vegetativa = Rass. Neurol. Veg. Rassegna di neuropsichiatria e scienze affini = Rass Neuropsichiatr Rassegna di Neuropsichiatria e Scienze Affini = Rass. Neuropsichiatr. Rassegna di studi psichiatrici = Rass Studi Psichiatr Rassegna di Studi Psichiatrici = Rass. Studi Psichiatr. Rassegna Economica=Rassegna Econ. Rassegna giuliana di medicina = Rass Giuliana Med Rassegna internazionale di clinica e terapia = Rass Int Clin Ter Rassegna Internazionale di Clinica e Terapia = Rass. Int. Clin. Ter. Rassegna internazionale di stomatologia pratica = Rass Int Stomatol Prat Rassegna Internazionale di Stomatologia Pratica = Rass. Int. Stomatol. Prat. Rassegna italiana di chirurgia e medicina = Rass Ital Chir Med Rassegna italiana di gastro-enterologia = Rass Ital Gastroenterol Rassegna italiana di sociologia = Rass Ital Sociol Rassegna medica = Rass Medica Rassegna medica sarda = Rass Med Sarda Rassegna Medica Sarda = Rass. Med. Sarda Rassegna odontotecnica = Rass Odontotec Rassegna Odontotecnica = Rass. Odontotec. Rassegna penitenziaria e criminologica = Rass Penititenziaria Crim Rassegna Penitenziaria e Criminologica = Rass. Penititenziaria. Crim. Rassegna storica del Risorgimento : organo della Societa nazionale per la storia del Risorgimento italiano = Rass Stor Risorgim Rassegna Storica Del Risorgimento = Rass Stor Risorgimen Rassegna Storica Del Risorgimento = Rass. Stor. Risorgimen. Rassegna storica salernitana = RassStorSalern Rassegna storica salernitana = RSS Rassegna Storica Toscana = Rass Stor Toscana Rassegna Storica Toscana = Rass. Stor. Toscana Rassegna trimestrale di odontoiatria = Rass Trimest Odontoiatr Rassegna Trimestrale di Odontoiatria = Rass. Trimest. Odontoiatr. Rassegna volterrana = RassVolt Raster Imaging and Digital Typography = Cam Electr Raster Imaging and Digital Typography = Cam. Electr. Rasy i narody / Akademiia nauk SSSR, Institut etnografii im. N.N. Miklukho-Maklaia = Rasy Nar Sovrem Etn Ras Probl Rates of Soil Chemical Processes = Sssa Spec Publ Rates of Soil Chemical Processes = Sssa. Spec. Publ. Rat Genomics: Methods and Protocols = Methods Mol Biol Rat Genomics: Methods and Protocols = Methods Mol. Biol. Ratiariensia. Studi e materiali mesici e danubiani = Ratiariensia Ratio-england = Ratio-england Ratio juris = Ratio Juris Ratio = Less Intell Ratio = Less. Intell. Rational Algebraic Curves: A Computer Algebra Approach = Algorithm Comp Math Rational Algebraic Curves: A Computer Algebra Approach = Algorithm. Comp. Math. Rational and Sustainable Development of Water Resources, Vols I and Ii = Coll Envir U Montr Rational and Sustainable Development of Water Resources, Vols I and Ii = Coll. Envir. U. Montr. Rational Drug Design = Ima V Math Rational Drug Design = Ima. V. Math. Rational drug therapy = Ration Drug Ther Rational Drug Therapy = Ration. Drug Ther. Rational Environmental Management of Agrochemicals: Risk Assessment, Monitoring, and Remedial Action = Acs Sym Ser Rational Environmental Management of Agrochemicals: Risk Assessment, Monitoring, and Remedial Action = Acs. Sym. Ser. Rational Exuberance for Renewable Energy: An Economic Analysis = Green Energy Technol Rational Exuberance for Renewable Energy: An Economic Analysis = Green. Energy. Technol. Rationalisation Des Organisations Hospitalieres = Sci Soc-france Rationalisation Des Organisations Hospitalieres = Sci. Soc-france. Rationalists: Between Tradition and Innovation = New Synth Hist Lib Rationalists: Between Tradition and Innovation = New. Synth. Hist. Lib. Rationality and Moral Theory = Routl Stud Eth Moral Rationality and Moral Theory = Routl. Stud. Eth. Moral Rationality and Society = Ration Soc Rationality and Society = Ration. Soc. Rationality And Society = Ration. Soc. Rationality and The Literate Mind = Routl Adv Commun Lin Rationality and The Literate Mind = Routl. Adv. Commun. Lin. Rationality of Theism = Stud Phil R Rationality of Theism = Stud. Phil. R. Rationality, Rules, and Structure = Theor Dec A Rationality, Rules, and Structure = Theor. Dec. A. Rational Matrix Equations in Stochastic Control = Lect Notes Contr Inf Rational Matrix Equations in Stochastic Control = Lect. Notes. Contr. Inf. Rational Pharmacotherapy of The Inner Ear = Adv Oto-rhino-laryng Rational Pharmacotherapy of The Inner Ear = Adv. Oto-rhino-laryng. Rational, Robust, and Secure Negotiations in Multi-agent Systems = Stud Comput Intell Rational, Robust, and Secure Negotiations in Multi-agent Systems = Stud. Comput. Intell. Ratio-new Series = Ratio Ratio-new Series = Ratio. Ratio (New Series) = Ratio (N.S.) Rationing Americas Medical Care : The Oregon Plan and Beyond = Brookings D Rationing Americas Medical Care : The Oregon Plan and Beyond = Brookings. D. Rationing in Medicine = Wissensch Technikfol Rationing in Medicine = Wissensch. Technikfol. Rationing of Medical Care for The Critically Ill = Brookings D Rationing of Medical Care for The Critically Ill = Brookings. D. Ratio = Ratio Ratoon Cropping = Agr Issues Policies Ratoon Cropping = Agr. Issues. Policies. Raumforschung und Raumordnung = Raumforsch Raumordn Raumforschung und Raumordnung = Raumforsch. Raumordn. Raumkonstitution Durch Sprache = Buchr Anglia Raumkonstitution Durch Sprache = Buchr. Anglia. Raumplanung, Informationshefte = Raumplan., Inf.h. Raum Und Raumvorstellungen Im Mittelalter = Miscellan Mediaeval Raum Und Raumvorstellungen Im Mittelalter = Miscellan. Mediaeval. Raum-zeit = Grundthemen Philos Raum-zeit = Grundthemen. Philos. Ravenna studi e ricerche = RavStRic Ravintsara : collection medecine, sante publique = Ravintsara Rawls = Routl Philos Rawls = Routl. Philos. Raydan. Journal of the Ancient Yemeni Antiquities and Epigraphy = Raydan Rays=Rays;; Rays = Rays Rbc-cell Biology Reviews = Rbc-cell Biol Rev Rbc-cell Biology Reviews = Rbc-cell Biol. Rev. Rbgn-revista Brasileira De Gestao De Negocios = Rbgn-rev Bras Gest N Rbgn-revista Brasileira De Gestao De Negocios = Rbgn-rev. Bras. Gest. N. R. Borger, Handbuch der Keilschriftliteratur (Berlin 1967--1975) = HKL Rca Review = Rca Rev Rca Review = Rca Rev. RCM midwives journal : official journal of the Royal College of Midwives = RCM Midwives J RCM midwives : the official journal of the Royal College of Midwives = RCM Midwives RCN nursing standard = RCN Nurs Stand RCN Nursing Standard = RCN Nurs. Stand. RDH = RDH R&d in Fy 1988 : R&d Policies, Budgets, and Economic Competitiveness = Aaas R&d B R&d in Fy 1988 : R&d Policies, Budgets, and Economic Competitiveness = Aaas. R&d B. R&d in Fy 1989 : Looking Ahead in An Election Year = Aaas R&d B R&d in Fy 1989 : Looking Ahead in An Election Year = Aaas. R&d B. R&d in The New Administration = Aaas R&d B R&d in The New Administration = Aaas. R&d B. R&d Magazine = R&d Mag R&d Magazine = R&d Mag. R & D Management = R&d Manage R & D Management = R&d. Manage. Reachability Problems = Lect Notes Comput Sc Reachability Problems = Lect. Notes. Comput. Sc. Reachability Problems, Proceedings = Lect Notes Comput Sc Reachability Problems, Proceedings = Lect. Notes. Comput. Sc. Reaching out = Reach Out Reaction Diffusion and Solid State Chemical Kinetics = Mater Sci Found Reaction Diffusion and Solid State Chemical Kinetics = Mater. Sci. Found. Reaction Diffusion Systems = Lect Notes Pure Appl Reaction Diffusion Systems = Lect. Notes. Pure. Appl. Reaction Dynamics in Clusters and Condensed Phases = Jerus Sym Q Reaction Dynamics in Clusters and Condensed Phases = Jerus. Sym. Q. Reaction Kinetics and Catalysis Letters = React Kinet Catal L Reaction Kinetics and Catalysis Letters = React. Kinet. Catal. L. Reaction Kinetics and Catalysis Letters = React. Kinet. Catal. Lett. Reaction Kinetics and The Development of Catalytic Processes = Stud Surf Sci Catal Reaction Kinetics and The Development of Catalytic Processes = Stud. Surf. Sci. Catal. Reaction Kinetics Mechanisms and Catalysis = React Kinet Mech Cat Reaction Kinetics Mechanisms and Catalysis = React. Kinet. Mech. Cat. Reaction Mechanisms for Rare Isotope Beams = Aip Conf Proc Reaction Mechanisms for Rare Isotope Beams = Aip. Conf. Proc. Reactions of The Lung to Radiation = Strah Fors Reactions of The Lung to Radiation = Strah. Fors. Reaction-transport Systems: Mesoscopic Foundations, Fronts, and Spatial Instabilities = Springer Ser Synerg Reaction-transport Systems: Mesoscopic Foundations, Fronts, and Spatial Instabilities = Springer. Ser. Synerg. Reactive and Functional Polymers = React. Funct. Polym. Reactive & Functional Polymers = React Funct Polym Reactive & Functional Polymers = React. Funct. Polym. Reactive Intermediates in Organic and Biological Electrochemistry = Elec Soc S Reactive Intermediates in Organic and Biological Electrochemistry = Elec. Soc. S. Reactive Oxygen Species: From Radiation to Molecular Biology = Ann Ny Acad Sci Reactive Oxygen Species: From Radiation to Molecular Biology = Ann. Ny. Acad. Sci. Reactive Oxygen Species in Plant Signaling = Signal Commun Plants Reactive Oxygen Species in Plant Signaling = Signal. Commun. Plants. Reactive Phase Formation At Interfaces and Diffusion Processes = Mater Sci Forum Reactive Phase Formation At Interfaces and Diffusion Processes = Mater. Sci. Forum. Reactive Polymers = React Polym Reactive Polymers = React. Polym. Reactive Search and Intelligent Optimization = Oper Res Comput Sci Reactive Search and Intelligent Optimization = Oper. Res. Comput. Sci. Reactive Sputter Deposition = Springer Ser Mater S Reactive Sputter Deposition = Springer. Ser. Mater. S. Reactive Transport in Porous Media = Rev Mineral Reactive Transport in Porous Media = Rev. Mineral. Reactivity of Solids = React Solid Reactivity of Solids = React. Solid. Reactivity Tuning in Oligosaccharide Assembly = Top Curr Chem Reactivity Tuning in Oligosaccharide Assembly = Top. Curr. Chem. Reactor and Fuel-processing Technology = React Fuel-process T Reactor and Fuel-processing Technology = React. Fuel-process. T. Reactor Dosimetry: 12th International Symposium = Am Soc Test Mater Reactor Dosimetry: 12th International Symposium = Am. Soc. Test. Mater. Reactor Dosimetry = Am Soc Test Mater Reactor Dosimetry = Am. Soc. Test. Mater. Reactor Dosimetry: Radiation Metrology and Assessment = Am Soc Test Mater Reactor Dosimetry: Radiation Metrology and Assessment = Am. Soc. Test. Mater. Reactor Fuel Processing = React Fuel Proc Reactor Fuel Processing = React. Fuel Proc. Reactor Materials = React Mater Reactor Materials = React. Mater. Reactor Physics Calculations in The Nordic Countries = Vtt Symp Reactor Physics Calculations in The Nordic Countries = Vtt. Symp. Reactor Technology = React Technol Reactor Technology = React. Technol. Readers Digest = Read. Dig. Readers in Education = Read Educ Readers in Education = Read. Educ. Reading and Hearing The Book of The Twelve = Sbl Symp Ser Reading and Hearing The Book of The Twelve = Sbl. Symp. Ser. Reading and Learning = Lect Notes Comput Sc Reading and Learning = Lect. Notes. Comput. Sc. Reading and Wisdom = N D Conf M Reading and Wisdom = N. D. Conf. M. Reading and Writing = Read Writ Reading and Writing = Read. Writ. Reading: Assessment, Comprehension and Teaching = Educ Compet Glob Wor Reading: Assessment, Comprehension and Teaching = Educ. Compet. Glob. Wor. Reading Bohr: Physics and Philosophy = Fund Theor Phys Reading Bohr: Physics and Philosophy = Fund. Theor. Phys. Reading Chuck Palahniuk: American Monsters and Literary Mayhem = Rout Stud Contemp Li Reading Chuck Palahniuk: American Monsters and Literary Mayhem = Rout. Stud. Contemp. Li. Reading Disabilities : Diagnosis and Component Processes = Nato Adv Sci Inst Se Reading Disabilities : Diagnosis and Component Processes = Nato. Adv. Sci. Inst. Se. Reading First Impact Study = Child Iss Laws Progr Reading First Impact Study = Child. Iss. Laws. Progr. Reading in 2010: A Comprehensive Review of A Changing Field = Educ Compet Glob Wor Reading in 2010: A Comprehensive Review of A Changing Field = Educ. Compet. Glob. Wor. Reading Leviticus = J St Old Test Suppl Reading Leviticus = J. St. Old. Test. Suppl. Reading Popular Culture in Victorian Print: Belgravia and Sensationalism = Ninet-century Major Reading Popular Culture in Victorian Print: Belgravia and Sensationalism = Ninet-century. Major. Reading Primary Sources: The Interpretation of Texts From Nineteenth- and Twentieth-century History = Rout Guid Using Hist Reading Primary Sources: The Interpretation of Texts From Nineteenth- and Twentieth-century History = Rout. Guid. Using. Hist. Reading: Putting The Pieces Together = Yearb Amer Read For Reading: Putting The Pieces Together = Yearb. Amer. Read. For. Reading Research and Instruction = Read Res Instruct Reading Research and Instruction = Read. Res. Instruct. Reading Research Quarterly = Read Res Quart Reading Research Quarterly = Read. Res. Quart. Reading Sensations in Early Modern England = Early Mod Lit Hist Reading Sensations in Early Modern England = Early Mod. Lit. Hist. Readings in Art and Design Education Series = Read Art Des Edu Readings in Art and Design Education Series = Read. Art Des. Edu. Readings in Educational Thought = Read Educ Thought Readings in Educational Thought = Read. Educ. Thought Readings in Law and Popular Culture = Routl Stud Law Soc Readings in Law and Popular Culture = Routl. Stud. Law Soc. Readings in Machine Translation = Bradford Books Readings in Machine Translation = Bradford. Books. Readings in Mathematics = Read. Math. Readings in Philosophy = Read. Philos. Reading: Strategies, Practices, and Research for The 21st Century = Yearb Amer Read For Reading: Strategies, Practices, and Research for The 21st Century = Yearb. Amer. Read. For. Reading Teacher = Read Teach Reading Teacher = Read. Teach. Reading The Lyrics = Int Forsch Allg Vgl Reading The Lyrics = Int. Forsch. Allg. Vgl. Reading The Qur'an in Latin Christendom, 1140-1560 = Mater Texts Reading The Qur'an in Latin Christendom, 1140-1560 = Mater. Texts. Reading Women: Literacy, Authorship, and Culture in The Atlantic World, 1500-1800 = Mater Texts Reading Women: Literacy, Authorship, and Culture in The Atlantic World, 1500-1800 = Mater. Texts. Read The Cultural Other = Lang Power Soc Proce Read The Cultural Other = Lang. Power. Soc. Proce. Reaktorsicherheit in Osteuropa = Grs Bericht Reaktorsicherheit in Osteuropa = Grs. Bericht. Real Academia de Ciencias Exactas, Físicas y Naturales de Madrid = Rev. Real Acad. Cienc. Exact. Fís. Natur. Madrid Real Algebraic Geometry = Lect Notes Math Real Algebraic Geometry = Lect. Notes. Math. Real Analysis Exchange = Real Anal. Exchange Real Analytic and Algebraic Geometry = Lect Notes Math Real Analytic and Algebraic Geometry = Lect. Notes. Math. Real and Complex Dynamical Systems = Nato Adv Sci Inst Se Real and Complex Dynamical Systems = Nato. Adv. Sci. Inst. Se. Real and Complex Singularities = Ch Crc Res Notes Real and Complex Singularities = Ch. Crc. Res. Notes. Real and Complex Singularities = Ch Crc Res Notes Mat Real and Complex Singularities = Ch. Crc. Res. Notes. Mat. Real and Complex Singularities = Contemp Math Real and Complex Singularities = Contemp. Math. Real and Complex Singularities = Trends Math Real and Complex Singularities = Trends. Math. Real Enriques Surfaces = Lect Notes Math Real Enriques Surfaces = Lect. Notes. Math. Reales sitios = R Sitios Real Estate Economics=Real Estate Econ. Real Estate Economics = Real Estate Econ Real Estate Economics = Real Estate Econ. Real Estate Law Journal = Real Estate Law J Real Estate Law Journal = Real Estate Law J. Real Estate Review = Real Estate Rev Real Estate Review = Real Estate Rev. Real Estate Taxation = Real Estate Tax Real Estate Taxation = Real Estate Tax. Real Existence, Ideal Necessity: Kant's Compromise, and The Modalities Without The Compromise = Kantstudien Real Existence, Ideal Necessity: Kant's Compromise, and The Modalities Without The Compromise = Kantstudien. Real Fatou Conjecture = Ann Math Stud Real Fatou Conjecture = Ann. Math. Stud. Real Function 09: Measures, Integration, Harmonic Analysis, Topology and Mathematical Economics = Tatra Mt Math Publ Real Function 09: Measures, Integration, Harmonic Analysis, Topology and Mathematical Economics = Tatra. Mt. Math. Publ. Real Functions '07: Topology, Measures, Integration and Harmonic Analysis = Tatra Mt Math Publ Real Functions '07: Topology, Measures, Integration and Harmonic Analysis = Tatra. Mt. Math. Publ. Real Functions '08: Functional Equations, Measures, Integration and Harmonic Analysis = Tatra Mt Math Publ Real Functions '08: Functional Equations, Measures, Integration and Harmonic Analysis = Tatra. Mt. Math. Publ. Realia Byzantina = Byzant Arch Realia Byzantina = Byzant. Arch. Realigning Interests: Crisis and Credibility in European Monetary Integration = Eur Transit-nyu Eur Realigning Interests: Crisis and Credibility in European Monetary Integration = Eur. Transit-nyu. Eur. Realigning Research and Practice in Information Systems Development = Int Fed Info Proc Realigning Research and Practice in Information Systems Development = Int. Fed. Info. Proc. Realising Cims Industrial Potential = Adv Des Man Realising Cims Industrial Potential = Adv. Des. Man. Realising Systems Thinking: Knowledge and Action in Management Science = Contemp Syst Think Realising Systems Thinking: Knowledge and Action in Management Science = Contemp. Syst. Think. Realism and Interdependence in Singapore's Foreign Policy = Polit Asia Realism and Interdependence in Singapore's Foreign Policy = Polit. Asia. Realism and Representation = Sci And Lit Realism and Representation = Sci. And. Lit. Realism/anti-realism in 20th-century Literature = Int Forsch Allg Vgl Realism/anti-realism in 20th-century Literature = Int. Forsch. Allg. Vgl. Realist Strategies of Republican Peace: Niebuhr, Morgenthau and The Politics of Patriotic Dissent = Palgr Mac Ser Hist Realist Strategies of Republican Peace: Niebuhr, Morgenthau and The Politics of Patriotic Dissent = Palgr. Mac. Ser. Hist. Realitaten Des Glaubens = Prakt Theol Wiss Realitaten Des Glaubens = Prakt. Theol. Wiss. Realites Cliniques = Real. Clin. Realites cliniques : revue europeenne d'odontologie = Real Clin Realities of Change in Higher Education: Interventions to Promote Learning and Teaching = Staff Educ Dev Ser Realities of Change in Higher Education: Interventions to Promote Learning and Teaching = Staff. Educ. Dev. Ser. Realities of Witchcraft and Popular Magic in Early Modern Europe -culture, Cognition and Everyday Life = Palgr Hist Stud Witc Realities of Witchcraft and Popular Magic in Early Modern Europe -culture, Cognition and Everyday Life = Palgr. Hist. Stud. Witc. Reality of Linguistic Rules = Stud Lang C Reality of Linguistic Rules = Stud. Lang. C. Realization and Modelling in System Theory = Prog Syst C Realization and Modelling in System Theory = Prog. Syst. C. Realization Theory and Design of Digital Images = Lect Notes Contr Inf Realization Theory and Design of Digital Images = Lect. Notes. Contr. Inf. Realization Theory of Discrete-time Dynamical Systems = Lect Notes Contr Inf Realization Theory of Discrete-time Dynamical Systems = Lect. Notes. Contr. Inf. Realizing Community: Concepts, Social Relationships and Sentiments = Euro Assoc Social Realizing Community: Concepts, Social Relationships and Sentiments = Euro. Assoc. Social Real Learning Opportunities At Business School and Beyond = Adv Bus Educ Train Real Learning Opportunities At Business School and Beyond = Adv. Bus. Educ. Train. Reallexikon der Assyriologie und vorderasiatischen Archäologie = RlA Reallexikon Der Germanischen Altertumskunde: Ergansbande = Reallex German Alter Reallexikon Der Germanischen Altertumskunde: Ergansbande = Reallex. German. Alter. Reallexikon Der Germanischen Altertumskunde Erganzungsbande = Reallex German Alter Reallexikon Der Germanischen Altertumskunde Erganzungsbande = Reallex. German. Alter. Reallexikon Der Germanischen Altertumskunde Erganzungsbande = Reallexikon Ger Alte Reallexikon Der Germanischen Altertumskunde Erganzungsbande = Reallexikon Ger. Alte. Reallexikon für Antike und Christentum = RAC Reallexikon für Antike und Christentum = RLAC Reallexikon zur byzantinischen Kunst = LRBK Real Methods in Complex and Cr Geometry = Lect Notes Math Real Methods in Complex and Cr Geometry = Lect. Notes. Math. Real Mind: Life and Work of Axel Hagerstrom = Law Philos Libr Real Mind: Life and Work of Axel Hagerstrom = Law. Philos. Libr. Real Options and Intellectual Property = Lect Notes Econ Math Real Options and Intellectual Property = Lect. Notes. Econ. Math. Real Options Theory = Adv Strat M Real Options Theory = Adv. Strat. M. Real Options Valuation: The Importance of Interest Rate Modelling in Theory and Practice = Lect Notes Econ Math Real Options Valuation: The Importance of Interest Rate Modelling in Theory and Practice = Lect. Notes. Econ. Math. Real property, probate, and trust journal = Real Property Probate Trust J Real Property Probate and Trust Journal = Real Prop Prob Trust Real Property Probate and Trust Journal = Real Prop. Prob. Trust Real-time and Deliberative Decision Making: Application to Emerging Stressors = Nato Sci Peace Secur Real-time and Deliberative Decision Making: Application to Emerging Stressors = Nato. Sci. Peace. Secur. Real-time and Embedded Computing Systems and Applications = Lect Notes Comput Sc Real-time and Embedded Computing Systems and Applications = Lect. Notes. Comput. Sc. Real-time Image and Video Processing 2010 = Proc Spie Real-time Image and Video Processing 2010 = Proc. Spie. Real-time Image and Video Processing 2010 = P Soc Photo-opt Ins Real-time Image and Video Processing 2010 = P. Soc. Photo-opt. Ins. Real-time Image and Video Processing 2011 = Proc Spie Real-time Image and Video Processing 2011 = Proc. Spie. Real-time Image Processing 2006 = Proc Spie Real-time Image Processing 2006 = Proc. Spie. Real-time Image Processing 2006 = P Soc Photo-opt Ins Real-time Image Processing 2006 = P. Soc. Photo-opt. Ins. Real-time Image Processing 2007 = P Soc Photo-opt Ins Real-time Image Processing 2007 = P. Soc. Photo-opt. Ins. Real-time Image Processing 2008 = Proc Spie Real-time Image Processing 2008 = Proc. Spie. Real-time Image Processing Ii = P Soc Photo-opt Ins Real-time Image Processing Ii = P. Soc. Photo-opt. Ins. Real-time Imaging Iii = P Soc Photo-opt Ins Real-time Imaging Iii = P. Soc. Photo-opt. Ins. Real-time Imaging Ii = P Soc Photo-opt Ins Real-time Imaging Ii = P. Soc. Photo-opt. Ins. Real-time Imaging Iv = Proc Spie Real-time Imaging Iv = Proc. Spie. Real-time Imaging Iv = P Soc Photo-opt Ins Real-time Imaging Iv = P. Soc. Photo-opt. Ins. Real-time Imaging Ix = Proc Spie Real-time Imaging Ix = Proc. Spie. Real-time Imaging Ix = P Soc Photo-opt Ins Real-time Imaging Ix = P. Soc. Photo-opt. Ins. Real-time Imaging = P Soc Photo-opt Ins Real-time Imaging = P. Soc. Photo-opt. Ins. Real-time Imaging = Real-time Imaging Real-time Imaging Viii = Proc Spie Real-time Imaging Viii = Proc. Spie. Real-time Imaging Viii = P Soc Photo-opt Ins Real-time Imaging Viii = P. Soc. Photo-opt. Ins. Real-time Imaging Vii = P Soc Photo-opt Ins Real-time Imaging Vii = P. Soc. Photo-opt. Ins. Real-time Imaging Vi = P Soc Photo-opt Ins Real-time Imaging Vi = P. Soc. Photo-opt. Ins. Real-time Imaging V = Proc Spie Real-time Imaging V = Proc. Spie. Real-time Imaging V = P Soc Photo-opt Ins Real-time Imaging V = P. Soc. Photo-opt. Ins. Real-time Iterative Learning Control: Design and Applications = Adv Ind Control Real-time Iterative Learning Control: Design and Applications = Adv. Ind. Control. Real-time Management of Resource Allocations Systems = Int Ser Oper Res Man Real-time Management of Resource Allocations Systems = Int. Ser. Oper. Res. Man. Real-time Mobile Multimedia Services, Proceedings = Lect Notes Comput Sc Real-time Mobile Multimedia Services, Proceedings = Lect. Notes. Comput. Sc. Real-time Pde-constrained Optimization = Comput Sci Eng Ser Real-time Pde-constrained Optimization = Comput. Sci. Eng. Ser. Real Time Programming 1994 = Ann R Aut P Real Time Programming 1994 = Ann. R. Aut. P. Real Time Programming 1999 (wrtp'99) = Ifac Work S Real Time Programming 1999 (wrtp'99) = Ifac. Work. S. Real Time Programming = Ifac Work S Real Time Programming = Ifac. Work. S. Real-time Signal Processing Xii = P Soc Photo-opt Ins Real-time Signal Processing Xii = P. Soc. Photo-opt. Ins. Real-time Stability in Power Systems: Techniques for Early Detection of The Risk of Blackout = Power Electronics P Real-time Stability in Power Systems: Techniques for Early Detection of The Risk of Blackout = Power Electronics. P. Real-time Systems = Real-time Syst Real-time Systems = Real-time Syst. Real-time Systems Symposium-proceedings = Real Tim Syst Symp P Real-time Systems Symposium-proceedings = Real. Tim. Syst. Symp. P. Real-time Systems Symposium - Proceedings = Real Tim Syst Symp P Real-time Systems Symposium - Proceedings = Real. Tim. Syst. Symp. P. Real-time Systems With Transputers = Transput Occam Eng S Real-time Systems With Transputers = Transput. Occam. Eng. S. Real-time Weld Process Monitoring = Woodhead Publ Mater Real-time Weld Process Monitoring = Woodhead. Publ. Mater. Real World Applications of Computational Intelligence = Stud Fuzz Soft Comp Real World Applications of Computational Intelligence = Stud. Fuzz. Soft. Comp. Real-world Applications of Evolutionary Computing, Proceedings = Lect Notes Comput Sc Real-world Applications of Evolutionary Computing, Proceedings = Lect. Notes. Comput. Sc. Real World Justice: Grounds, Principles, Human Rights, and Social Institutions = Stud Global Justice Real World Justice: Grounds, Principles, Human Rights, and Social Institutions = Stud. Global. Justice. Real World Justice: Grounds, Principles, Human Rights, and Social Institutions = Stud Glob Justice Real World Justice: Grounds, Principles, Human Rights, and Social Institutions = Stud. Glob. Justice. Reanalysis of Structures: A Unified Approach for Linear, Nonlinear, Static and Dynamic Systems = Solid Mech Appl Reanalysis of Structures: A Unified Approach for Linear, Nonlinear, Static and Dynamic Systems = Solid. Mech. Appl. Reanimation et Organes Artificiels = Reanim. Organes Artif. Reanimation et organes artificiels. Wiederbelebung und kunstliche Organe. Reanimation and artificial organs = Reanim Organes Artif Reappraisal of The Ascending Systems in Man, With Emphasis On The Medial Lemniscus = Adv Anat Embryol Cel Reappraisal of The Ascending Systems in Man, With Emphasis On The Medial Lemniscus = Adv. Anat. Embryol. Cel. Reappraisals: Canadian Writers = Reappraisal Reappraisals: Canadian Writers = Reappraisal. Reapprendre A Voir Le Monde: Merleau-ponty Face Au Miroir Lacanien = Phaenomenologica Reapprendre A Voir Le Monde: Merleau-ponty Face Au Miroir Lacanien = Phaenomenologica. Rearrangement Relatif: Un Instrument D'estimations Dans Les Problemes Aux Limites = Math Appl-berlin Rearrangement Relatif: Un Instrument D'estimations Dans Les Problemes Aux Limites = Math. Appl-berlin. Reason, Culture, Religion: The Metaphysics of World Politics = Cult Relig Int Relat Reason, Culture, Religion: The Metaphysics of World Politics = Cult. Relig. Int. Relat. Reason in Context, Vol 83 = P Am Cath Philos Ass Reason in Context, Vol 83 = P. Am. Cath. Philos. Ass. Reasoning About Preference Dynamics = Synth Libr Reasoning About Preference Dynamics = Synth. Libr. Reasoning, Action and Interaction in Ai Theories and Systems = Lect Notes Comput Sc Reasoning, Action and Interaction in Ai Theories and Systems = Lect. Notes. Comput. Sc. Reasoning in Event-based Distributed Systems = Stud Comput Intell Reasoning in Event-based Distributed Systems = Stud. Comput. Intell. Reasoning Web = Lect Notes Comput Sc Reasoning Web = Lect. Notes. Comput. Sc. Reasoning Web: Semantic Technologies for Information Systems = Lect Notes Comput Sc Reasoning Web: Semantic Technologies for Information Systems = Lect. Notes. Comput. Sc. Reasoning Web: Semantic Technologies for Software Engineering = Lect Notes Comput Sc Reasoning Web: Semantic Technologies for Software Engineering = Lect. Notes. Comput. Sc. Reason in History = Amer Cath Phil Assoc Reason in History = Amer. Cath. Phil. Assoc. Reason, Life, Culture, Pt 1 = Anal Hus Yb Reason, Life, Culture, Pt 1 = Anal. Hus. Yb. Reason papers = Reason Pap Reason = Reason Reasons, Patterns, and Cooperation = Routl Stud Eth Moral Reasons, Patterns, and Cooperation = Routl. Stud. Eth. Moral. Reason, Spirit and The Sacral in The New Enlightenment: Islamic Metaphysics Revived and Recent Phenomenology of Life = Islam Ph Occident Reason, Spirit and The Sacral in The New Enlightenment: Islamic Metaphysics Revived and Recent Phenomenology of Life = Islam. Ph. Occident. Reassessing Language and Literacy = Engl Lang E Reassessing Language and Literacy = Engl. Lang. E. Rebellion and Reform in Indonesia: Jakarta's Security and Autonomy Polices in Aceh = Routl Cont Se Asia S Rebellion and Reform in Indonesia: Jakarta's Security and Autonomy Polices in Aceh = Routl. Cont. Se. Asia. S. Rebellion and Savagery: The Jacobite Rising of 1745 and The British Empire = Early Am Stud Ser Rebellion and Savagery: The Jacobite Rising of 1745 and The British Empire = Early. Am. Stud. Ser. Rebrape = Rebrape Rebuilding Identity = Beih Z Alttest Wiss Rebuilding Identity = Beih. Z. Alttest. Wiss. Rebuilding of Greater Russia: Putins Foreign Policy Towards The Cis Countries = Routl Contemp Russ E Rebuilding of Greater Russia: Putins Foreign Policy Towards The Cis Countries = Routl. Contemp. Russ. E. Rebuilding Urban Places After Disaster: Lessons From Hurricane Katrina = City 21st Century Rebuilding Urban Places After Disaster: Lessons From Hurricane Katrina = City. 21st. Century. Recall = Recall Recent Accomplishments in Applied Forest Economics Research = For Sci Recent Accomplishments in Applied Forest Economics Research = For. Sci. Recent Advances and Applications of Computer Engineering = Ele Com Eng Recent Advances and Applications of Computer Engineering = Ele. Com. Eng. Recent Advances and Current Research Issues in Lunar Stratigraphy = Geol Soc Am Spec Pap Recent Advances and Current Research Issues in Lunar Stratigraphy = Geol. Soc. Am. Spec. Pap. Recent Advances and New Horizons in Zeolite Science and Technology = Stud Surf Sci Catal Recent Advances and New Horizons in Zeolite Science and Technology = Stud. Surf. Sci. Catal. Recent Advances in Acoustics & Music = Wseas Mech Eng Ser Recent Advances in Acoustics & Music = Wseas. Mech. Eng. Ser. Recent Advances in Adaptive Computation, Proceedings = Contemp Math Recent Advances in Adaptive Computation, Proceedings = Contemp. Math. Recent Advances in Adsorption Processes for Environmental Protection and Security = Nato Sci Peace Secur Recent Advances in Adsorption Processes for Environmental Protection and Security = Nato. Sci. Peace. Secur. Recent Advances in Ai Planning = Lect Notes Artif Int Recent Advances in Ai Planning = Lect. Notes. Artif. Int. Recent Advances in Animal Nutrition - 1990 = Stud Agr F Recent Advances in Animal Nutrition - 1990 = Stud. Agr. F. Recent Advances in Animal Nutrition 1991 = Rec Adv An Recent Advances in Animal Nutrition 1991 = Rec. Adv. An. Recent Advances in Animal Nutrition 1993 = Rec Adv An Recent Advances in Animal Nutrition 1993 = Rec. Adv. An. Recent Advances in Animal Nutrition 1994 = Rec Adv An Recent Advances in Animal Nutrition 1994 = Rec. Adv. An. Recent Advances in Animal Nutrition - 1995 = Rec Adv An Recent Advances in Animal Nutrition - 1995 = Rec. Adv. An. Recent Advances in Animal Nutrition - 1997 = Rec Adv An Recent Advances in Animal Nutrition - 1997 = Rec. Adv. An. Recent Advances in Animal Nutrition - 2008 = Rec Adv Anim Nutr Recent Advances in Animal Nutrition - 2008 = Rec. Adv. Anim. Nutr. Recent Advances in Animal Nutrition - 2009 = Rec Adv Anim Nutr Recent Advances in Animal Nutrition - 2009 = Rec. Adv. Anim. Nutr. Recent Advances in Animal Nutrition = Rec Adv An Recent Advances in Animal Nutrition = Rec. Adv. An. Recent Advances in Animal Nutrition = Rec Adv Anim Nutr Recent Advances in Animal Nutrition = Rec. Adv. Anim. Nutr. Recent Advances in Applied Mathematics = Ma Comput Sci Eng Recent Advances in Applied Mathematics = Ma. Comput. Sci. Eng. Recent Advances in Applied Mathematics = Math Comput Sci Eng Recent Advances in Applied Mathematics = Math. Comput. Sci. Eng. Recent Advances in Artificial Intelligence Research and Development = Fr Art Int Recent Advances in Artificial Intelligence Research and Development = Fr. Art. Int. Recent Advances in Artificial Intelligence Research and Development = Front Artif Intel Ap Recent Advances in Artificial Intelligence Research and Development = Front. Artif. Intel. Ap. Recent Advances in Astronomy and Astrophysics = Aip Conf Proc Recent Advances in Astronomy and Astrophysics = Aip. Conf. Proc. Recent Advances in Automation & Information = Rec Adv Electr Eng Recent Advances in Automation & Information = Rec. Adv. Electr. Eng. Recent Advances in Basic and Applied Aspects of Industrial Catalysis = Stud Surf Sci Catal Recent Advances in Basic and Applied Aspects of Industrial Catalysis = Stud. Surf. Sci. Catal. Recent Advances in Basic and Clinical Neuroendocrinology = Int Congr Ser Recent Advances in Basic and Clinical Neuroendocrinology = Int. Congr. Ser. Recent advances in biological psychiatry = Recent Adv Biol Psychiatry Recent Advances in Biological Psychiatry = Recent Adv. Biol. Psychiatry Recent Advances in Biology and Biomedicine = Rec Adv Biol Biomed Recent Advances in Biology and Biomedicine = Rec. Adv. Biol. Biomed. Recent Advances in Biology, Biophysics, Bioengineering and Computational Chemistry = Rec Adv Biol Biomed Recent Advances in Biology, Biophysics, Bioengineering and Computational Chemistry = Rec. Adv. Biol. Biomed. Recent Advances in Biotechnology = Nato Adv Sci I E-app Recent Advances in Biotechnology = Nato. Adv. Sci. I. E-app. Recent Advances in Bis Guided Tci Anesthesia = Adv Biol Med Recent Advances in Bis Guided Tci Anesthesia = Adv. Biol. Med. Recent Advances in Bronchoesophagology = Int Congr Ser Recent Advances in Bronchoesophagology = Int. Congr. Ser. Recent Advances in Business Administration = Rec Adv Comput Eng Recent Advances in Business Administration = Rec. Adv. Comput. Eng. Recent Advances in Carbohydrate Bioengineering = Roy Soc Ch Recent Advances in Carbohydrate Bioengineering = Roy. Soc. Ch. Recent Advances in Catalytic Materials = Mater Res Soc Symp P Recent Advances in Catalytic Materials = Mater. Res. Soc. Symp. P. Recent Advances in Cellular and Molecular Aspects of Angiotensin Receptors = Adv Exp Med Biol Recent Advances in Cellular and Molecular Aspects of Angiotensin Receptors = Adv. Exp. Med. Biol. Recent Advances in Cervical Pathology and Colposcopy = Adv Gyn Obs Recent Advances in Cervical Pathology and Colposcopy = Adv. Gyn. Obs. Recent Advances in Chemical Information = Roy Soc Ch Recent Advances in Chemical Information = Roy. Soc. Ch. Recent Advances in Chiral Separations = Chrom S Sym Recent Advances in Chiral Separations = Chrom. S. Sym. Recent Advances in Circuits, Systems and Signals = Int Conf Circ Syst S Recent Advances in Circuits, Systems and Signals = Int. Conf. Circ. Syst. S. Recent Advances in Clinical Medicine = Rec Adv Biol Biomed Recent Advances in Clinical Medicine = Rec. Adv. Biol. Biomed. Recent advances in clinical nuclear medicine = Recent Adv Clin Nucl Med Recent Advances in Clinical Nuclear Medicine = Recent Adv. Clin. Nucl. Med. Recent Advances in Clinical Oncology = Ann Ny Acad Sci Recent Advances in Clinical Oncology = Ann. Ny. Acad. Sci. Recent Advances in Clinical Periodontology = Int Congr Ser Recent Advances in Clinical Periodontology = Int. Congr. Ser. Recent Advances in Combustion Modelling = S Adv Math Recent Advances in Combustion Modelling = S. Adv. Math. Recent Advances in Computer Engineering and Applications = Ele Com Eng Recent Advances in Computer Engineering and Applications = Ele. Com. Eng. Recent Advances in Computer Engineering = Rec Adv Comput Eng Recent Advances in Computer Engineering = Rec. Adv. Comput. Eng. Recent Advances in Constraints, 12th Annual Ercim International Workshop = Lect Notes Artif Int Recent Advances in Constraints, 12th Annual Ercim International Workshop = Lect. Notes. Artif. Int. Recent Advances in Constraints = Lect Notes Artif Int Recent Advances in Constraints = Lect. Notes. Artif. Int. Recent Advances in Constraints = Lect Notes Comput Sc Recent Advances in Constraints = Lect. Notes. Comput. Sc. Recent Advances in Control and Optimization of Manufacturing Systems = Lect Notes Contr Inf Recent Advances in Control and Optimization of Manufacturing Systems = Lect. Notes. Contr. Inf. Recent Advances in Decision Making = Stud Comput Intell Recent Advances in Decision Making = Stud. Comput. Intell. Recent Advances in Differential Equations and Mathematical Physics = Contemp Math Recent Advances in Differential Equations and Mathematical Physics = Contemp. Math. Recent Advances in E-activities, Information Security and Privacy = Ele Com Eng Recent Advances in E-activities, Information Security and Privacy = Ele. Com. Eng. Recent Advances in Elastomeric Nanocomposites = Adv Struct Mat Recent Advances in Elastomeric Nanocomposites = Adv. Struct. Mat. Recent Advances in Electrical Engineering = Rec Adv Electr Eng Recent Advances in Electrical Engineering = Rec. Adv. Electr. Eng. Recent Advances in Energy and Environment = Energy Environ Eng S Recent Advances in Energy and Environment = Energy Environ. Eng. S. Recent Advances in Engineering and Computer Science 2007 = Lect Notes Eng Comp Recent Advances in Engineering and Computer Science 2007 = Lect. Notes. Eng. Comp. Recent Advances in Engineering Education = Ma Comput Sci Eng Recent Advances in Engineering Education = Ma. Comput. Sci. Eng. Recent Advances in Environmental Economics = New Hor Env Eco Recent Advances in Environmental Economics = New. Hor. Env. Eco. Recent Advances in Environmental Economics = New Horiz Environ Ec Recent Advances in Environmental Economics = New. Horiz. Environ. Ec. Recent Advances in Environment, Ecosystems and Development = Energy Environ Eng S Recent Advances in Environment, Ecosystems and Development = Energy. Environ. Eng. S. Recent Advances in Epilepsy Research = Adv Exp Med Biol Recent Advances in Epilepsy Research = Adv. Exp. Med. Biol. Recent Advances in Event-related Brain Potential Research = Int Congr Ser Recent Advances in Event-related Brain Potential Research = Int. Congr. Ser. Recent Advances in Evolutionary Computation for Combinatorial Optimization = Stud Comp Intell Recent Advances in Evolutionary Computation for Combinatorial Optimization = Stud. Comp. Intell. Recent Advances in Fluid Mechanics = Wseas Mech Eng Ser Recent Advances in Fluid Mechanics = Wseas. Mech. Eng. Ser. Recent Advances in Fourier Analysis and Its Applications = Nato Adv Sci I C-mat Recent Advances in Fourier Analysis and Its Applications = Nato. Adv. Sci. I. C-mat. Recent Advances in General Relativity = Einstein St Recent Advances in General Relativity = Einstein. St. Recent Advances in Glucocorticoid Receptor Action = E Schering Res Fdn W Recent Advances in Glucocorticoid Receptor Action = E. Schering. Res. Fdn. W. Recent Advances in Harmony Search Algorithm = Stud Comput Intell Recent Advances in Harmony Search Algorithm = Stud. Comput. Intell. Recent Advances in Heat and Mass Transfer = Wseas Mech Eng Ser Recent Advances in Heat and Mass Transfer = Wseas. Mech. Eng. Ser. Recent Advances in Heat Transfer = Tran Pr Eng Recent Advances in Heat Transfer = Tran. Pr. Eng. Recent Advances in Hemophilia Care = Prog Clin Biol Res Recent Advances in Hemophilia Care = Prog. Clin. Biol. Res. Recent Advances in Human Neurophysiology = Int Congr Ser Recent Advances in Human Neurophysiology = Int. Congr. Ser. Recent Advances in Instrumentation, Data Acquistion and Testing in Soil Dynamics = Geotech Sp Recent Advances in Instrumentation, Data Acquistion and Testing in Soil Dynamics = Geotech. Sp. Recent Advances in Insulin Action and Its Disorders = Int Congr Ser Recent Advances in Insulin Action and Its Disorders = Int. Congr. Ser. Recent Advances in Insulin Therapy = Int Congr Ser Recent Advances in Insulin Therapy = Int. Congr. Ser. Recent Advances in Interventional Radiology and New Vascular Imaging = Int Congr Ser Recent Advances in Interventional Radiology and New Vascular Imaging = Int. Congr. Ser. Recent Advances in Intrusion Detection = Lect Notes Comput Sc Recent Advances in Intrusion Detection = Lect. Notes. Comput. Sc. Recent Advances in Intrusion Detection, Proceedings = Lect Notes Comput Sc Recent Advances in Intrusion Detection, Proceedings = Lect. Notes. Comput. Sc. Recent Advances in Intrusion Detection, Raid 2008 = Lect Notes Comput Sc Recent Advances in Intrusion Detection, Raid 2008 = Lect. Notes. Comput. Sc. Recent Advances in Learning and Control = Lect Notes Contr Inf Recent Advances in Learning and Control = Lect. Notes. Contr. Inf. Recent Advances in Lower Carboniferous Geology = Geol Soc Sp Recent Advances in Lower Carboniferous Geology = Geol. Soc. Sp. Recent Advances in Management, Marketing, Finances = Rec Adv Electr Eng Recent Advances in Management, Marketing, Finances = Rec. Adv. Electr. Eng. Recent Advances in Materials Characterization and Modeling of Pavement Systems = Geotech Sp Recent Advances in Materials Characterization and Modeling of Pavement Systems = Geotech. Sp. Recent Advances in Mathematics and Computers in Business, Economics, Biology & Chemistry = Math Comput Sci Eng Recent Advances in Mathematics and Computers in Business, Economics, Biology & Chemistry = Math. Comput. Sci. Eng. Recent Advances in Matrix and Operator Theory = Oper Theory Adv Appl Recent Advances in Matrix and Operator Theory = Oper. Theory Adv. Appl. Recent Advances in Metrology and Fundamental Constants = P Int Sch Phys Recent Advances in Metrology and Fundamental Constants = P. Int. Sch. Phys. Recent Advances in Metrology, Characterization, and Standards for Optical Digital Data Disks = P Soc Photo-opt Ins Recent Advances in Metrology, Characterization, and Standards for Optical Digital Data Disks = P. Soc. Photo-opt. Ins. Recent Advances in Models of Siliciclastic Shallow-marine Stratigraphy = Sepm Spec P Recent Advances in Models of Siliciclastic Shallow-marine Stratigraphy = Sepm. Spec. P. Recent Advances in Models of Siliciclastic Shallow-marine Stratigraphy = Soc Sediment Geol Sp Recent Advances in Models of Siliciclastic Shallow-marine Stratigraphy = Soc. Sediment. Geol. Sp. Recent Advances in Multimedia Signal Processing and Communications = Stud Comput Intell Recent Advances in Multimedia Signal Processing and Communications = Stud. Comput. Intell. Recent Advances in Multiple Sclerosis Therapy = Int Congr Ser Recent Advances in Multiple Sclerosis Therapy = Int. Congr. Ser. Recent Advances in Mycoplasmology = Zbl Bakt S Recent Advances in Mycoplasmology = Zbl. Bakt. S. Recent Advances in Natural Language Processing = Amst Stud Theory His Recent Advances in Natural Language Processing = Amst. Stud. Theory. His. Recent Advances in Natural Language Processing Iii = Amst Stud Theory His Recent Advances in Natural Language Processing Iii = Amst. Stud. Theory. His. Recent Advances in Networking, Vlsi and Signal Processing = Ma Comput Sci Eng Recent Advances in Networking, Vlsi and Signal Processing = Ma. Comput. Sci. Eng. Recent Advances in Neural Networks, Fuzzy Systems & Evolutionary Computing = Artif Int Ser Wseas Recent Advances in Neural Networks, Fuzzy Systems & Evolutionary Computing = Artif. Int. Ser. Wseas. Recent Advances in Neurosonology = Int Congr Ser Recent Advances in Neurosonology = Int. Congr. Ser. Recent Advances in Nonlinear Dynamics and Synchronization: Theory and Applications = Stud Comput Intell Recent Advances in Nonlinear Dynamics and Synchronization: Theory and Applications = Stud. Comput. Intell. Recent Advances in Nonlinear Partial Differential Equations and Applications = Proc Sym Ap Recent Advances in Nonlinear Partial Differential Equations and Applications = Proc. Sym. Ap. Recent advances in nursing = Recent Adv Nurs Recent Advances in Nursing = Recent Adv. Nurs. Recent Advances in Operator-related Function Theory = Contemp Math Recent Advances in Operator-related Function Theory = Contemp. Math. Recent Advances in Operator Theory and Applications = Oper Theor Recent Advances in Operator Theory and Applications = Oper. Theor. Recent Advances in Operator Theory and Its Applications: The Israel Gohberg Anniversary Volume = Oper Theor Recent Advances in Operator Theory and Its Applications: The Israel Gohberg Anniversary Volume = Oper. Theor. Recent Advances in Operator Theory and Related Topics = Oper Theor Recent Advances in Operator Theory and Related Topics = Oper. Theor. Recent Advances in Operator Theory and Related Topics = Oper Theory Adv Appl Recent Advances in Operator Theory and Related Topics = Oper. Theory Adv. Appl. Recent Advances in Operator Theory in Hilbert and Krein Spaces = Oper Theory Adv Appl Recent Advances in Operator Theory in Hilbert and Krein Spaces = Oper. Theory Adv. Appl. Recent Advances in Operator Theory, Opeator Algebras, and Their Applications = Oper Theor Recent Advances in Operator Theory, Opeator Algebras, and Their Applications = Oper. Theor. Recent Advances in Operator Theory = Oper Theor Recent Advances in Operator Theory = Oper. Theor. Recent Advances in Optimization = Lect Notes Econ Math Recent Advances in Optimization = Lect. Notes. Econ. Math. Recent Advances in Parallel Virtual Machine and Message Passing Interface = Lect Notes Comput Sc Recent Advances in Parallel Virtual Machine and Message Passing Interface = Lect. Notes. Comput. Sc. Recent Advances in Parallel Virtual Machine and Message Passing Interface, Proceedings = Lect Notes Comput Sc Recent Advances in Parallel Virtual Machine and Message Passing Interface, Proceedings = Lect. Notes. Comput. Sc. Recent Advances in Parallel Vitual Machine and Message Passing Interface, Proceedings = Lect Notes Comput Sc Recent Advances in Parallel Vitual Machine and Message Passing Interface, Proceedings = Lect. Notes. Comput. Sc. Recent Advances in Parkinsons Disease: Basic Research = Prog Brain Res Recent Advances in Parkinsons Disease: Basic Research = Prog. Brain. Res. Recent Advances in Parkinsons Disease: Translational and Clinical Research = Prog Brain Res Recent Advances in Parkinsons Disease: Translational and Clinical Research = Prog. Brain. Res. Recent Advances in Partial Differential Equations = Res Note Ap Recent Advances in Partial Differential Equations = Res. Note. Ap. Recent Advances in Perinatal Medicine = E M I Lif S Recent Advances in Perinatal Medicine = E. M. I. Lif. S. Recent Advances in Periodontology, Vol 2 = Int Congr Ser Recent Advances in Periodontology, Vol 2 = Int. Congr. Ser. Recent Advances in Pharmacology and Therapeutics = Int Congr Ser Recent Advances in Pharmacology and Therapeutics = Int. Congr. Ser. Recent Advances in Phototrophic Prokaryotes = Adv Exp Med Biol Recent Advances in Phototrophic Prokaryotes = Adv. Exp. Med. Biol. Recent Advances in Phytochemistry = Recent Adv Phytochem Recent Advances in Phytochemistry = Recent Adv. Phytochem. Recent Advances in Polyphenol Research = Rec Adv Polyphen Res Recent Advances in Polyphenol Research = Rec. Adv. Polyphen. Res. Recent Advances in Polyphenol Research, Vol 1 = Rec Adv Polyphen Res Recent Advances in Polyphenol Research, Vol 1 = Rec. Adv. Polyphen. Res. Recent Advances in Polyphenol Research, Vol 2 = Rec Adv Polyphen Res Recent Advances in Polyphenol Research, Vol 2 = Rec. Adv. Polyphen. Res. Recent Advances in Prostaglandin, Thromboxane, and Leukotriene Research = Adv Exp Med Biol Recent Advances in Prostaglandin, Thromboxane, and Leukotriene Research = Adv. Exp. Med. Biol. Recent Advances in Qsar Studies: Methods and Applications = Chall Adv Comput Che Recent Advances in Qsar Studies: Methods and Applications = Chall. Adv. Comput. Che. Recent Advances in Reinforcement Learning = Lect Notes Artif Int Recent Advances in Reinforcement Learning = Lect. Notes. Artif. Int. Recent Advances in Reliability and Quality in Design = Springer Ser Reliab Recent Advances in Reliability and Quality in Design = Springer. Ser. Reliab. Recent Advances in Reliability and Quality in Design = Spring Ser Reliab En Recent Advances in Reliability and Quality in Design = Spring. Ser. Reliab. En. Recent Advances in Remote Sensing and Hyperspectral Remote Sensing = P Soc Photo-opt Ins Recent Advances in Remote Sensing and Hyperspectral Remote Sensing = P. Soc. Photo-opt. Ins. Recent Advances in Retinal Degeneration = Adv Exp Med Biol Recent Advances in Retinal Degeneration = Adv. Exp. Med. Biol. Recent Advances in Schizophrenia = Int Per Ppn Recent Advances in Schizophrenia = Int. Per. Ppn. Recent Advances in Sensors, Radiometric Calibration, and Processing of Remotely Sensed Data = P Soc Photo-opt Ins Recent Advances in Sensors, Radiometric Calibration, and Processing of Remotely Sensed Data = P. Soc. Photo-opt. Ins. Recent Advances in Simulated Evolution and Learning = Adv Nat Comput Recent Advances in Simulated Evolution and Learning = Adv. Nat. Comput. Recent Advances in Simulated Evolution and Learning = Adv Nat Computation Recent Advances in Simulated Evolution and Learning = Adv. Nat. Computation. Recent Advances in Sociology, Psychology, Philosophy = Ma Comput Sci Eng Recent Advances in Sociology, Psychology, Philosophy = Ma. Comput. Sci. Eng. Recent Advances in Solids and Structures - 2005 = Pres Ves P Recent Advances in Solids and Structures - 2005 = Pres. Ves. P. Recent Advances in Spectroscopy: Theoretical, Astrophysical and Experimental Perspectives = Astrophysics Space Recent Advances in Spectroscopy: Theoretical, Astrophysical and Experimental Perspectives = Astrophysics. Space. Recent advances in studies on cardiac structure and metabolism = Recent Adv Stud Cardiac Struct Metab Recent Advances in Studies on Cardiac Structure and Metabolism = Recent Adv. Stud. Cardiac Struct. Metab. Recent Advances in Systems, Communications and Computers = Ele Com Eng Recent Advances in Systems, Communications and Computers = Ele. Com. Eng. Recent Advances in Systems Engineering and Applied Mathematics = Ma Comput Sci Eng Recent Advances in Systems Engineering and Applied Mathematics = Ma. Comput. Sci. Eng. Recent Advances in Systems Engineering and Applied Mathematics = Math Comput Sci Eng Recent Advances in Systems Engineering and Applied Mathematics = Math. Comput. Sci. Eng. Recent Advances in Temporal Databases = Work Comp Recent Advances in Temporal Databases = Work. Comp. Recent Advances in The Characterization of Transportation Geo-materials = Geotech Sp Recent Advances in The Characterization of Transportation Geo-materials = Geotech. Sp. Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 6 = Elec Soc S Recent Advances in The Chemistry and Physics of Fullerenes and Related Materials, Vol 6 = Elec. Soc. S. Recent Advances in The Chemistry and Physics of Fullerenes and Related Material, Vol 7 = Elec Soc S Recent Advances in The Chemistry and Physics of Fullerenes and Related Material, Vol 7 = Elec. Soc. S. Recent Advances in The Chemistry of Insect Control Ii = Roy Soc Ch Recent Advances in The Chemistry of Insect Control Ii = Roy. Soc. Ch. Recent Advances in The Development and Germination of Seeds = Nato Adv Sci I A-lif Recent Advances in The Development and Germination of Seeds = Nato. Adv. Sci. I. A-lif. Recent Advances in The Epidemiology and Prevention of Gallstone Disease = Dev Gastro Recent Advances in The Epidemiology and Prevention of Gallstone Disease = Dev. Gastro. Recent Advances in The Message Passing Interface = Lect Notes Comput Sc Recent Advances in The Message Passing Interface = Lect. Notes. Comput. Sc. Recent Advances in The Processing of Wood-plastic Composites = Eng Mater Recent Advances in The Processing of Wood-plastic Composites = Eng. Mater. Recent Advances in The Reduction of Tobacco-specific Nitrosamines in Leaf and Smoke = Rec Adv Tob Recent Advances in The Reduction of Tobacco-specific Nitrosamines in Leaf and Smoke = Rec. Adv. Tob. Recent Advances in The Science and Technology of Zeolites and Related Materials, Pts A - C = Stud Surf Sci Catal Recent Advances in The Science and Technology of Zeolites and Related Materials, Pts A - C = Stud. Surf. Sci. Catal. Recent Advances in The Theory and Applications of Mass Transport = Contemp Math Recent Advances in The Theory and Applications of Mass Transport = Contemp. Math. Recent Advances in The Theory of Chemical and Physical Systems = Prog T Chem Recent Advances in The Theory of Chemical and Physical Systems = Prog. T. Chem. Recent Advances in The Theory of Chemical and Physical Systems = Prog Theor Chem Phys Recent Advances in The Theory of Chemical and Physical Systems = Prog. Theor. Chem. Phys. Recent Advances in The Treatment of Neurodegenerative Disorders and Cognitive Dysfunction = Int Acad B Recent Advances in The Treatment of Neurodegenerative Disorders and Cognitive Dysfunction = Int. Acad. B. Recent Advances in The Uses of Light in Physics, Chemistry, Engineering, and Medicine = P Soc Photo-opt Ins Recent Advances in The Uses of Light in Physics, Chemistry, Engineering, and Medicine = P. Soc. Photo-opt. Ins. Recent Advances in Tobacco Science = Rec Adv Tob Recent Advances in Tobacco Science = Rec. Adv. Tob. Recent Advances in Total Least Squares Techniques and Errors-in-variables Modeling = Siam Proc S Recent Advances in Total Least Squares Techniques and Errors-in-variables Modeling = Siam. Proc. S. Recent Advances in Tropical Neurology = Devel Neur Recent Advances in Tropical Neurology = Devel. Neur. Recent Advances in Tryptophan Research = Adv Exp Med Biol Recent Advances in Tryptophan Research = Adv. Exp. Med. Biol. Recent Advances in Verocytotoxin-producing Escherichia Coli Infections = Int Congr Ser Recent Advances in Verocytotoxin-producing Escherichia Coli Infections = Int. Congr. Ser. Recent Advances in Welding Simulation = Imeche Sem Recent Advances in Welding Simulation = Imeche. Sem. Recent Advances in Zeolite Science = Stud Surf Sci Catal Recent Advances in Zeolite Science = Stud. Surf. Sci. Catal. Recent Advances of Research in Antinutritional Factors in Legume Seeds and Oilseeds = Eaap Public Recent Advances of Research in Antinutritional Factors in Legume Seeds and Oilseeds = Eaap. Public. Recent Advances of Research in Antinutritional Factors in Legume Seeds and Rapeseed = Eaap Public Recent Advances of Research in Antinutritional Factors in Legume Seeds and Rapeseed = Eaap. Public. Recent Advances of Research in Antinutritional Factors in Legume Seeds = Eaap Public Recent Advances of Research in Antinutritional Factors in Legume Seeds = Eaap. Public. Recent Advances On Applied Mathematics = Ma Comput Sci Eng Recent Advances On Applied Mathematics = Ma. Comput. Sci. Eng. Recent Advances On Applied Mathematics = Math Comput Sci Eng Recent Advances On Applied Mathematics = Math. Comput. Sci. Eng. Recent Advances On Growth and Growth Hormone Therapy = Serono Coll Eur Ser Recent Advances On Growth and Growth Hormone Therapy = Serono. Coll. Eur. Ser. Recent Advances On Hypoglycemia = Serono Sym Recent Advances On Hypoglycemia = Serono. Sym. Recent Advances On The Pathogenesis and Management of Diabetes Mellitus = Int Congr Ser Recent Advances On The Pathogenesis and Management of Diabetes Mellitus = Int. Congr. Ser. Recent Developments in Acacia Planting = Aciar Proc Recent Developments in Acacia Planting = Aciar. Proc. Recent Developments in Advanced Materials and Processes = Mater Sci Forum Recent Developments in Advanced Materials and Processes = Mater. Sci. Forum. Recent developments in alcoholism : an official publication of the American Medical Society on Alcoholism, the Research Society on Alcoholism, and the National Council on Alcoholism = Recent Dev Alcohol Recent Developments in Alcoholism = Recent Dev Alcohol Recent Developments in Alcoholism = Recent Dev. Alcohol. Recent Developments In Alcoholism=Recent Dev Alcohol;; Recent Developments in Algebraic Topology = Contemp Math Recent Developments in Algebraic Topology = Contemp. Math. Recent Developments in Applied Biostratigraphy = Micropaleaeontologic Recent Developments in Applied Biostratigraphy = Micropaleaeontologic. Recent Developments in Applied Biostratigraphy = Micropal Soc Spec Pu Recent Developments in Applied Biostratigraphy = Micropal. Soc. Spec. Pu. Recent Developments in Asymmetric Organocatalysis = Rsc Catal Ser Recent Developments in Asymmetric Organocatalysis = Rsc. Catal. Ser. Recent Developments in Benthology = Oceanis S D Recent Developments in Benthology = Oceanis. S. D. Recent Developments in Biocontrol of Plant Pathogens = Curr T Life Recent Developments in Biocontrol of Plant Pathogens = Curr. T. Life. Recent Developments in Carbocation and Onium Ion Chemistry = Acs Sym Ser Recent Developments in Carbocation and Onium Ion Chemistry = Acs. Sym. Ser. Recent Developments in Complex Analysis and Computer Algebra = Int Soc Anal App Com Recent Developments in Complex Analysis and Computer Algebra = Int. Soc. Anal. App. Com. Recent Developments in Computer Modeling of Powder Metallurgy Processes = Nato Sc S Ss Iii C S Recent Developments in Computer Modeling of Powder Metallurgy Processes = Nato. Sc. S. Ss. Iii. C. S. Recent Developments in Computer Simulation Studies in Condensed Matter Physics = Physcs Proc Recent Developments in Computer Simulation Studies in Condensed Matter Physics = Physcs. Proc. Recent Developments in Cooperative Control and Optimization = Cooperat Syst Recent Developments in Cooperative Control and Optimization = Cooperat. Syst. Recent Developments in Domain Decomposition Methods = Lect Notes Comp Sci Recent Developments in Domain Decomposition Methods = Lect. Notes. Comp. Sci. Recent Developments in Fish Otolith Research = Bel Bar Lib Recent Developments in Fish Otolith Research = Bel. Bar. Lib. Recent Developments in Fractals and Related Fields = Appl Numer Harmon An Recent Developments in Fractals and Related Fields = Appl. Numer. Harmon. An. Recent Developments in Geotextile Filters and Prefabricated Drainage Geocomposites = Am Soc Test Mater Recent Developments in Geotextile Filters and Prefabricated Drainage Geocomposites = Am. Soc. Test. Mater. Recent Developments in Gravitation and Becs Phenomenology = Aip Conf Proc Recent Developments in Gravitation and Becs Phenomenology = Aip. Conf. Proc. Recent Developments in Gravitation and Cosmology = Aip Conf Proc Recent Developments in Gravitation and Cosmology = Aip. Conf. Proc. Recent Developments in International Banking and Finance = Rec D Int B Recent Developments in International Banking and Finance = Rec. D. Int. B. Recent Developments in International Banking and Finance, Vols 4 and 5 = Rec D Int B Recent Developments in International Banking and Finance, Vols 4 and 5 = Rec. D. Int. B. Recent Developments in Management of Plant Diseases = Plant Path 21st Recent Developments in Management of Plant Diseases = Plant Path. 21st. Recent Developments in Measurement and Assessment of Air Pollution = Vdi Bericht Recent Developments in Measurement and Assessment of Air Pollution = Vdi. Bericht. Recent Developments in Mercury Science = Struct Bond Recent Developments in Mercury Science = Struct. Bond. Recent Developments in Nonlinear Partial Differential Equations = Contemp Math Recent Developments in Nonlinear Partial Differential Equations = Contemp. Math. Recent Developments in Optical Gauge Block Metrology = P Soc Photo-opt Ins Recent Developments in Optical Gauge Block Metrology = P. Soc. Photo-opt. Ins. Recent Developments in Optimization = Lect Notes Econ Math Recent Developments in Optimization = Lect. Notes. Econ. Math. Recent Developments in Oxide and Metal Epitaxy-theory and Experiment = Mater Res Soc Symp P Recent Developments in Oxide and Metal Epitaxy-theory and Experiment = Mater. Res. Soc. Symp. P. Recent Developments in Particle Physics and Cosmology = Nato Sci Ser Ii-math Recent Developments in Particle Physics and Cosmology = Nato. Sci. Ser. Ii-math. Recent Developments in Particle Physics and Cosmology = Nato Sci Ser Ii Math Recent Developments in Particle Physics and Cosmology = Nato. Sci. Ser. Ii. Math. Recent Developments in Physical Chemistry = Aip Conf Proc Recent Developments in Physical Chemistry = Aip. Conf. Proc. Recent Developments in Pseudo-riemannian Geometry = Esi Lect Math Phys Recent Developments in Pseudo-riemannian Geometry = Esi. Lect. Math. Phys. Recent Developments in Quantum Mechanics = Math Phys S Recent Developments in Quantum Mechanics = Math. Phys. S. Recent Developments in Real and Harmonic Analysis: in Honor of Carlos Segovia = Appl Numer Harmon An Recent Developments in Real and Harmonic Analysis: in Honor of Carlos Segovia = Appl. Numer. Harmon. An. Recent Developments in Refrigeration and Heat Pump Technologies = Imeche Sem Recent Developments in Refrigeration and Heat Pump Technologies = Imeche. Sem. Recent Developments in Silicone-based Materials = Mater Sci Technol Recent Developments in Silicone-based Materials = Mater. Sci. Technol. Recent Developments in Structured Continua, Vol 2 = Pitman Res Recent Developments in Structured Continua, Vol 2 = Pitman. Res. Recent Developments in The Management of Arrhythmias = Roy Soc Med Int Cong Recent Developments in The Management of Arrhythmias = Roy. Soc. Med. Int. Cong. Recent Developments in The Nutrition of Herbivores = Sci Update Recent Developments in The Nutrition of Herbivores = Sci. Update. Recent Developments in The Processing and Applications of Structural Metals and Alloys = Mater Sci Forum Recent Developments in The Processing and Applications of Structural Metals and Alloys = Mater. Sci. Forum. Recent Developments in Traceable Dimensional Measurements Ii = P Soc Photo-opt Ins Recent Developments in Traceable Dimensional Measurements Ii = P. Soc. Photo-opt. Ins. Recent Developments in Traceable Dimensional Measurements = P Soc Photo-opt Ins Recent Developments in Traceable Dimensional Measurements = P. Soc. Photo-opt. Ins. Recent Developments in Turbulence Management = Fluid Mec A Recent Developments in Turbulence Management = Fluid. Mec. A. Recent Developments On Money and Finance = Stud Econ Theory Recent Developments On Money and Finance = Stud. Econ. Theory. Recent Developments On Structural Equation Models: Theory and Applications = Math Modell Recent Developments On Structural Equation Models: Theory and Applications = Math. Modell. Recent Developments On Structural Equation Models: Theory and Applications = Math Model-theor App Recent Developments On Structural Equation Models: Theory and Applications = Math. Model-theor. App. Recent Directions in Astrophysical Quantitative Spectroscopy and Radiation Hydrodynamics = Aip Conf Proc Recent Directions in Astrophysical Quantitative Spectroscopy and Radiation Hydrodynamics = Aip. Conf. Proc. Recent Economic Thought Series = Rec Econ Th Recent Economic Thought Series = Rec. Econ. Th. Recent Evolution and Seismicity of The Mediterranean Region = Nato Adv Sci Inst Se Recent Evolution and Seismicity of The Mediterranean Region = Nato. Adv. Sci. Inst. Se. Recent Excavations in Israel : Studies in Iron Age Archaeology = Ann Amer Sc Recent Excavations in Israel : Studies in Iron Age Archaeology = Ann. Amer. Sc. Recent Experimental and Computational Advances in Molecular Spectroscopy = Nato Adv Sci Inst Se Recent Experimental and Computational Advances in Molecular Spectroscopy = Nato. Adv. Sci. Inst. Se. Recent Geodynamics, Georisk and Sustainable Development in The Black Sea to Caspian Sea Region, Proceedings = Aip Conf Proc Recent Geodynamics, Georisk and Sustainable Development in The Black Sea to Caspian Sea Region, Proceedings = Aip. Conf. Proc. Recent Innovations in Educational Technology That Facilitate Student Learning = Curr Persp Cong Lear Recent Innovations in Educational Technology That Facilitate Student Learning = Curr. Persp. Cong. Lear. Recent Insights Into The Physics of The Sun and Heliosphere: Highlights From Soho and Other Space Missions = Iau Symp Recent Insights Into The Physics of The Sun and Heliosphere: Highlights From Soho and Other Space Missions = Iau. Symp. Recenti progressi in medicina = Recenti Prog Med Recenti Progressi in Medicina = Recenti Prog. Med. Recenti Progressi In Medicina=Recenti Prog Med;; Recent Issues in Pattern Analysis and Recognition = Lect Notes Comput Sc Recent Issues in Pattern Analysis and Recognition = Lect. Notes. Comput. Sc. Recent Knowledge On Iron and Folate Deficiencies in The World = Colloq Inse Recent Knowledge On Iron and Folate Deficiencies in The World = Colloq. Inse. Recent Modelling Approaches in Applied Energy Economics = Int St Ec M Recent Modelling Approaches in Applied Energy Economics = Int. St. Ec. M. Recent Patents On Anti-cancer Drug Discovery = Recent Pat Anti-canc Recent Patents On Anti-cancer Drug Discovery = Recent Pat. Anti-canc. Recent Patents on Anti-Cancer Drug Discovery = Recent Pat. Anti-Cancer Drug Discovery Recent patents on anti-cancer drug discovery = Recent Patents Anticancer Drug Discov Recent Patents on Anti-Infective Drug Discovery = Recent Pat. Anti-Infect. Drug Discovery Recent Patents on Biotechnology = Recent Pat. Biotechnol. Recent Patents on Cardiovascular Drug Discovery = Recent Pat. Cardiovasc. Drug Discovery Recent patents on cardiovascular drug discovery = Recent Patents Cardiovasc Drug Discov Recent Patents on CNS Drug Discovery = Recent Pat. CNS Drug Discovery Recent Patents on DNA & Gene Sequences = Recent Pat. DNA Gene Sequences Recent Patents on Drug Delivery & Formulation = Recent Pat. Drug Delivery Formulation Recent Patents on Endocrine, Metabolic & Immune Drug Discovery = Recent Pat. Endocr., Metab. Immune Drug Discovery Recent Patents on Inflammation & Allergy Drug Discovery = Recent Pat. Inflammation Allergy Drug Discovery Recent Patents On Nanotechnology = Recent Pat Nanotech Recent Patents On Nanotechnology = Recent Pat. Nanotech. Recent Patents on Nanotechnology = Recent Pat. Nanotechnol. Recent Pavement Research Issues = Transport Res Rec Recent Pavement Research Issues = Transport. Res. Rec. Recent Perspectives in Random Matrix Theory and Number Theory = Lond Math S Recent Perspectives in Random Matrix Theory and Number Theory = Lond. Math. S. Recent Progress in Arithmetic and Algebraic Geometry = Contemp Math Recent Progress in Arithmetic and Algebraic Geometry = Contemp. Math. Recent Progress in Bladder and Kidney Cancer = Prog Clin Biol Res Recent Progress in Bladder and Kidney Cancer = Prog. Clin. Biol. Res. Recent Progress in Blood Coagulation and Fibrinolysis = Int Congr Ser Recent Progress in Blood Coagulation and Fibrinolysis = Int. Congr. Ser. Recent Progress in Colorectal Cancer : Biology and Management of High Risk Groups = Int Congr Ser Recent Progress in Colorectal Cancer : Biology and Management of High Risk Groups = Int. Congr. Ser. Recent Progress in Computational Sciences and Engineering, Vols 7a and 7b = Lect Ser Computer Co Recent Progress in Computational Sciences and Engineering, Vols 7a and 7b = Lect. Ser. Computer. Co. Recent Progress in Coupled Cluster Methods: Theory and Applications = Chall Adv Comput Che Recent Progress in Coupled Cluster Methods: Theory and Applications = Chall. Adv. Comput. Che. Recent Progress in Functional Analysis = N-holland M Recent Progress in Functional Analysis = N-holland. M. Recent Progress in Hormone Research, Proceedings of The 1996 Conference, Vol 52 = Recent Prog Horm Res Recent Progress in Hormone Research, Proceedings of The 1996 Conference, Vol 52 = Recent Prog. Horm. Res. Recent progress in hormone research = Recent Prog Horm Res Recent Progress in Hormone Research = Recent Prog Horm Res Recent Progress in Hormone Research = Recent Prog. Horm. Res. Recent Progress In Hormone Research=Recent Prog Horm Res;; Recent Progress in Hormone Research, Vol 45 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 45 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 47 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 47 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 48 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 48 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 49 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 49 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 50 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 50 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 51 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 51 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 53 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 53 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 54 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 54 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 55 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 55 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 56 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 56 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 57 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 57 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 58 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 58 = Recent Prog. Horm. Res. Recent Progress in Hormone Research, Vol 59 = Recent Prog Horm Res Recent Progress in Hormone Research, Vol 59 = Recent Prog. Horm. Res. Recent Progress in Intersection Theory = Trends Math Recent Progress in Intersection Theory = Trends. Math. Recent Progress in Many-body Theories, Proceedings = Ser Adv Quant Many B Recent Progress in Many-body Theories, Proceedings = Ser. Adv. Quant. Many. B. Recent Progress in Many-body Theories = Rec Prog M Recent Progress in Many-body Theories = Rec. Prog. M. Recent Progress in Many-body Theories, Vol 2 = Rec Prog M Recent Progress in Many-body Theories, Vol 2 = Rec. Prog. M. Recent Progress in Many-body Theories, Vol 3 = Rec Prog M Recent Progress in Many-body Theories, Vol 3 = Rec. Prog. M. Recent Progress in Many-body Theories, Vol 4 = Rec Prog M Recent Progress in Many-body Theories, Vol 4 = Rec. Prog. M. Recent Progress in Marine Chemistry and Ecotoxicology = Oceanis S D Recent Progress in Marine Chemistry and Ecotoxicology = Oceanis. S. D. Recent Progress in Marine Ecophysiology: Respiration and Osmoregulation = Oceanis S D Recent Progress in Marine Ecophysiology: Respiration and Osmoregulation = Oceanis. S. D. Recent Progress in Medicinal Plants = Recent Prog Med Plan Recent Progress in Medicinal Plants = Recent Prog. Med. Plan. Recent Progress in Mesostructured Materials, Proceedings of The 5th International Mesostructured Materials Symposium - Imms2006 = Stud Surf Sci Catal Recent Progress in Mesostructured Materials, Proceedings of The 5th International Mesostructured Materials Symposium - Imms2006 = Stud. Surf. Sci. Catal. Recent Progress in Multivariate Approximation = Int Ser Numer Math Recent Progress in Multivariate Approximation = Int. Ser. Numer. Math. Recent Progress in Multivariate Approximation = Int S Num M Recent Progress in Multivariate Approximation = Int. S. Num. M. Recent Progress in Posterior Pituitary Hormones 1988 = Int Congr Ser Recent Progress in Posterior Pituitary Hormones 1988 = Int. Congr. Ser. Recent Progress in Robotics: Viable Robotic Service to Human = Lect Notes Contr Inf Recent Progress in Robotics: Viable Robotic Service to Human = Lect. Notes. Contr. Inf. Recent Progress of Biochemical and Biomedical Engineering in Japan I = Adv Biochem Eng Biot Recent Progress of Biochemical and Biomedical Engineering in Japan I = Adv. Biochem. Eng. Biot. Recent Progress of Biochemical and Biomedical Engineering in Japan Ii = Adv Biochem Eng Biot Recent Progress of Biochemical and Biomedical Engineering in Japan Ii = Adv. Biochem. Eng. Biot. Recent Progress of Diabetes in East Asia = Int Congr Ser Recent Progress of Diabetes in East Asia = Int. Congr. Ser. Recent Progress On Earthquake Geology = Environ Sci Eng Tech Recent Progress On Earthquake Geology = Environ. Sci. Eng. Tech. Recent Progress On Kinins = Agent Action Suppl Recent Progress On Kinins = Agent. Action. Suppl. Recent Progress On Some Problems in Several Complex Variables and Partial Differential Equations = Contemp Math Recent Progress On Some Problems in Several Complex Variables and Partial Differential Equations = Contemp. Math. Recent Research Advances in The Fluid Mechanics of Turbulent Jets and Plumes = Nato Adv Sci Inst Se Recent Research Advances in The Fluid Mechanics of Turbulent Jets and Plumes = Nato. Adv. Sci. Inst. Se. Recent Researches in Ecology, Environment and Pollution = Res Ec En Recent Researches in Ecology, Environment and Pollution = Res. Ec. En. Recent Research in Psychology = Rec Res Psy Recent Research in Psychology = Rec. Res. Psy. Recent Results and Perspective Instrumental Developments in X- and Gamma-ray Astronomy = Adv Space Res-series Recent Results and Perspective Instrumental Developments in X- and Gamma-ray Astronomy = Adv. Space. Res-series. Recent results in cancer research. Fortschritte der Krebsforschung. Progres dans les recherches sur le cancer = Recent Results Cancer Res Recent Results in Cancer Research = Recent Res Cancer Recent Results in Cancer Research = Recent Res. Cancer Recent Results in Cancer Research = Recent Results Canc Recent Results in Cancer Research = Recent Results Canc. Recent Results in Cancer Research = Recent Results Cance Recent Results in Cancer Research = Recent Results Cance. Recent Results in Cancer Research = Recent Results Cancer Res. Recent Results In Cancer Research=Recent Results Cancer Res;; Recent Results in Laminar-turbulent Transition = Note N Fl Mech Mul D Recent Results in Laminar-turbulent Transition = Note. N. Fl. Mech. Mul. D. Recent Results On Mars and Venus = Adv Space Res-series Recent Results On Mars and Venus = Adv. Space. Res-series. Recents Progres En Chimie Et Ecotoxicologie Marines = Oceanis-ser Doc Recents Progres En Chimie Et Ecotoxicologie Marines = Oceanis-ser. Doc. Recents Progres En Ecophysiologie Marine: Respiration Et Osmoregulation = Oceanis S D Recents Progres En Ecophysiologie Marine: Respiration Et Osmoregulation = Oceanis. S. D. Recent Studies in The Final Palaeolithic of The European Plain = Jut Arch Soc Publ Recent Studies in The Final Palaeolithic of The European Plain = Jut. Arch. Soc. Publ. Recent Theoretical and Experimental Advances in Hydrogen Bonded Clusters = Nato Sci Ser Ii-math Recent Theoretical and Experimental Advances in Hydrogen Bonded Clusters = Nato. Sci. Ser. Ii-math. Recent Theoretical and Experimental Advances in Hydrogen Bonded Clusters = Nato Sci Ser Ii Math Recent Theoretical and Experimental Advances in Hydrogen Bonded Clusters = Nato. Sci. Ser. Ii. Math. Recent Topics in Nonlinear Pde Iv = N-holland M Recent Topics in Nonlinear Pde Iv = N-holland. M. Recent Trends and Developments in Social Software = Lect Notes Comput Sc Recent Trends and Developments in Social Software = Lect. Notes. Comput. Sc. Recent Trends in Algebraic Development Techniques = Lect Notes Comput Sc Recent Trends in Algebraic Development Techniques = Lect. Notes. Comput. Sc. Recent Trends in Biotechnology and Microbiology = Microbiol Res Adv Recent Trends in Biotechnology and Microbiology = Microbiol. Res. Adv. Recent Trends in Biotechnology = Recent Trends Biotec Recent Trends in Biotechnology = Recent Trends Biotec. Recent Trends in Biotechnology, Vol 1 = Recent Trends Biotec Recent Trends in Biotechnology, Vol 1 = Recent Trends Biotec. Recent Trends in Clinical Pharmacology / = Colloq Inse Recent Trends in Clinical Pharmacology / = Colloq. Inse. Recent Trends in Clinical Pharmacology // = Colloq Inse Recent Trends in Clinical Pharmacology // = Colloq. Inse. Recent Trends in Cryptography = Contemp Math Recent Trends in Cryptography = Contemp. Math. Recent Trends in Data Type Specification = Lect Notes Comput Sc Recent Trends in Data Type Specification = Lect. Notes. Comput. Sc. Recent Trends in Heap Leaching = Australas I Min Met Recent Trends in Heap Leaching = Australas. I. Min. Met. Recent Trends in Networks and Communications = Comm Com Inf Sc Recent Trends in Networks and Communications = Comm. Com. Inf. Sc. Recent Trends in Network Security and Applications = Comm Com Inf Sc Recent Trends in Network Security and Applications = Comm. Com. Inf. Sc. Recent Trends in Orthogonal Polynomials and Approximation Theory = Contemp Math Recent Trends in Orthogonal Polynomials and Approximation Theory = Contemp. Math. Recent Trends in Theoretical Psychology, Vol 2 = Rec Res Psy Recent Trends in Theoretical Psychology, Vol 2 = Rec. Res. Psy. Recent Trends in Theoretical Psychology, Vol Iii = Rec Res Psy Recent Trends in Theoretical Psychology, Vol Iii = Rec. Res. Psy. Recent Trends in Theory of Physical Phenomena in High Magnetic Fields = Nato Sci Ser Ii-math Recent Trends in Theory of Physical Phenomena in High Magnetic Fields = Nato. Sci. Ser. Ii-math. Recent Trends in Theory of Physical Phenomena in High Magnetic Fields = Nato Sci Ser Ii Math Recent Trends in Theory of Physical Phenomena in High Magnetic Fields = Nato. Sci. Ser. Ii. Math. Recent Trends in Thermoelectric Materials Research Iii = Semiconduct Semimet Recent Trends in Thermoelectric Materials Research Iii = Semiconduct. Semimet. Recent Trends in Thermoelectric Materials Research Ii = Semiconduct Semimet Recent Trends in Thermoelectric Materials Research Ii = Semiconduct. Semimet. Recent Trends in Thermoelectric Materials Research I = Semiconduct Semimet Recent Trends in Thermoelectric Materials Research I = Semiconduct. Semimet. Recent Trends in Toeplitz and Pseudodifferential Operators:the Nikolai Vasilevskii Anniversary Volume = Oper Theory Adv Appl Recent Trends in Toeplitz and Pseudodifferential Operators:the Nikolai Vasilevskii Anniversary Volume = Oper. Theory. Adv. Appl. Recent Trends in Wireless and Mobile Networks = Comm Com Inf Sc Recent Trends in Wireless and Mobile Networks = Comm. Com. Inf. Sc. Recent Trends of Diabetes Mellitus in East Asia = Int Congr Ser Recent Trends of Diabetes Mellitus in East Asia = Int. Congr. Ser. Recent Work On Intrinsic Value = Libr Ethics Appl Phi Recent Work On Intrinsic Value = Libr. Ethics. Appl. Phi. Receptor Activation By Antigens, Cytokines, Hormones, and Growth Factors = Ann Ny Acad Sci Receptor Activation By Antigens, Cytokines, Hormones, and Growth Factors = Ann. Ny. Acad. Sci. Receptor Classification = Ann Ny Acad Sci Receptor Classification = Ann. Ny. Acad. Sci. Receptor-mediated Biological Processes = Prog Clin Biol Res Receptor-mediated Biological Processes = Prog. Clin. Biol. Res. Receptor = Receptor Receptors and Channels = Recept. Channels Receptors and Channels=Receptors Channels;; Receptors and Channels = Receptors Channels Receptors and Recognition Series B = Receptor Recog Ser B Receptors and Recognition Series B = Receptor. Recog. Ser. B Receptors and Signal Transduction=Recept Signal Transduct;; Receptors and Signal Transduction = Recept. Signal Transduct. Receptors & Channels = Receptor Channel Receptors & Channels = Receptor. Channel. Receptors & channels = Receptors Channels Receptor Signal Transduction Protocols, Third Edition = Methods Mol Biol Receptor Signal Transduction Protocols, Third Edition = Methods. Mol. Biol. Receptors Series = Recept Ser Receptors Series = Recept. Ser. Receptors & Signal Transduction = Recept Signal Trans Receptors & Signal Transduction = Recept. Signal Trans. Receptors & signal transduction = Recept Signal Transduct Recerques del Museu d’Alcoi = RecMusAlcoi Recessive Oncogenes and Tumor Suppression = Cc Mol Biol Recessive Oncogenes and Tumor Suppression = Cc. Mol. Biol. Recherche Aerospatiale = Rech Aerospatiale Recherche Aerospatiale = Rech. Aerospatiale Recherche En Danse = Rech Danse Recherche En Danse = Rech. Danse Recherche en soins infirmiers = Rech Soins Infirm Recherche en Soins Infirmiers = Rech. Soins Infirm. Recherche, La = Recherche Recherche = Recherche Recherches albanologiques = RechAlb Recherches amerindiennes au Quebec = Rech Amerindien Que Recherches archéologiques. Institut d’archéologie de l’Université de Cracovie = RechACrac Recherches augustiniennes (Supplément à REAug) = RecAug Recherches de science religieuse = RecSR Recherches de théologie ancienne et médiévale = RecTh Recherches De Theologie Et Philosophie Medievales = Rech Theol Philos Me Recherches De Theologie Et Philosophie Medievales = Rech. Theol. Philos. Me. Recherches Economiques De Louvain-louvain Economic Review = Rech Econ Louvain Recherches Economiques De Louvain-louvain Economic Review = Rech. Econ. Louvain. Recherches economiques de Louvain = Rech Econ Louvain Recherches Economiques de Louvain=Rech. Econ. Louvain Recherches en Mathématiques Appliquées = Rech. Math. Appl. Recherches feministes = Rech fem Recherches geographiques a Strasbourg = Rech Geogr Strasbg Recherche sociale = Rech Soc Recherches = Recher Fed Groupes Etud Recher Inst Recherches sociographiques = Rech Sociogr Recherches sur la Philosophie et le Langage = Rech. Philos. Lang. Recht Des Zahlungsverkehrs Im Uberblick = Degruyter Handb Recht Des Zahlungsverkehrs Im Uberblick = Degruyter. Handb. Recht & Psychiatrie = Recht Psychiatr Recht & Psychiatrie = Recht Psychiatr. Rechtshistoriches Journal = RJ Rechtsmedizin = Rechtsmedizin Rechtsschutz Im Offentlichen Recht = Degruyter Lehrb Rechtsschutz Im Offentlichen Recht = Degruyter. Lehrb. Recht Und Landschaft = Reallexikon Ger Alte Recht Und Landschaft = Reallexikon. Ger. Alte. Reciprocals and Reflexives = Trends Linguist-stud Reciprocals and Reflexives = Trends. Linguist-stud. Reckoning With The Tradition = P Am Cath Philos Ass Reckoning With The Tradition = P. Am. Cath. Philos. Ass. Reclaiming Chinese Society: The New Social Activism = Asias Transform Reclaiming Chinese Society: The New Social Activism = Asias. Transform. Reclaiming Education for Democracy = Sociocult Polit Hist Reclaiming Education for Democracy = Sociocult. Polit. Hist. Reclaiming Reality: A Critical Introduction to Contemporary Philosophy = Class Texts Crit Rea Reclaiming Reality: A Critical Introduction to Contemporary Philosophy = Class. Texts. Crit. Rea. Reclaiming The Media: Communication Rights and Democratic Media Roles = Eur Commun Res Educ Reclaiming The Media: Communication Rights and Democratic Media Roles = Eur. Commun. Res. Educ. Reclaiming Theodicy: Reflections On Suffering, Compassion and Spiritual Transformation = Libr Philos Relig Reclaiming Theodicy: Reflections On Suffering, Compassion and Spiritual Transformation = Libr. Philos. Relig. Reclamation Era = Reclam Era Reclamation Era = Reclam. Era Reclamation & Revegetation Research = Reclam Reveg Res Reclamation & Revegetation Research = Reclam. Reveg. Res. Recoding: Expansion of Decoding Rules Enriches Gene Expression = Nucleic Acids Mol Bi Recoding: Expansion of Decoding Rules Enriches Gene Expression = Nucleic. Acids. Mol. Bi. Recoding The Museum: Digital Heritage and The Technologies of Change = Mus Mean Recoding The Museum: Digital Heritage and The Technologies of Change = Mus. Mean. Recognition of Anions = Struct Bond Recognition of Anions = Struct. Bond. Recognition of Carbohydrates in Biological Systems, Part B: Specific Applications = Method Enzymol Recognition of Carbohydrates in Biological Systems, Part B: Specific Applications = Method. Enzymol. Recognition of Carbohydrates in Biological Systems Pt A: General Procedures = Method Enzymol Recognition of Carbohydrates in Biological Systems Pt A: General Procedures = Method. Enzymol. Recognition of Whiteboard Notes: Online, Offline and Combination = Ser Mach Percept Art Recognition of Whiteboard Notes: Online, Offline and Combination = Ser. Mach. Percept. Art. Recognizing Patterns in Signals, Speech, Images, and Videos = Lect Notes Comput Sc Recognizing Patterns in Signals, Speech, Images, and Videos = Lect. Notes. Comput. Sc. Recollections of France = Contemp Fr Recollections of France = Contemp. Fr. Recollections of Trauma = Nato Adv Sci I A-lif Recollections of Trauma = Nato. Adv. Sci. I. A-lif. Recombinant Dna Biotechnology Iii: The Integration of Biological and Engineering Sciences = Ann Ny Acad Sci Recombinant Dna Biotechnology Iii: The Integration of Biological and Engineering Sciences = Ann. Ny. Acad. Sci. Recombinant DNA technical bulletin = Recomb DNA Tech Bull Recombinant DNA Technical Bulletin = Recomb. DNA Tech. Bull. Recombinant Dna Technology I = Ann Ny Acad Sci Recombinant Dna Technology I = Ann. Ny. Acad. Sci. Recombinant Dna Technology Ii = Ann Ny Acad Sci Recombinant Dna Technology Ii = Ann. Ny. Acad. Sci. Recombinant Vectors in Vaccine Development = Dev Biol Stand Recombinant Vectors in Vaccine Development = Dev. Biol. Stand. Recombination Lifetime Measurements in Silicon = Am Soc Test Mater Recombination Lifetime Measurements in Silicon = Am. Soc. Test. Mater. Recombination of Atomic Ions = Nato Adv Sci I B-phy Recombination of Atomic Ions = Nato. Adv. Sci. I. B-phy. Recombination of Milk and Milk Products = Int Dairy F Recombination of Milk and Milk Products = Int. Dairy. F. Recommender Systems for Information Providers: Designing Custom Centric Paths to Information = Contrib Manag Sci Recommender Systems for Information Providers: Designing Custom Centric Paths to Information = Contrib. Manag. Sci. Reconceptualising Conversion = Beih Z Neutest Wiss Reconceptualising Conversion = Beih. Z. Neutest. Wiss. Reconciliation in Divided Societies: Finding Common Ground = Pa Stud Hum Rights Reconciliation in Divided Societies: Finding Common Ground = Pa. Stud. Hum. Rights. Reconciling Fisheries With Conservation, Vols I and Ii = Am Fish S S Reconciling Fisheries With Conservation, Vols I and Ii = Am. Fish. S. S. Reconciling Indonesia: Grassroots Agency for Peace = Asias Transform Reconciling Indonesia: Grassroots Agency for Peace = Asias. Transform. Reconfigurable Computing: Architectures and Applications = Lect Notes Comput Sc Reconfigurable Computing: Architectures and Applications = Lect. Notes. Comput. Sc. Reconfigurable Computing: Architectures, Tools and Applications = Lect Notes Comput Sc Reconfigurable Computing: Architectures, Tools and Applications = Lect. Notes. Comput. Sc. Reconfigurable Control of Nonlinear Dynamical Systems: A Fault-hiding Approach = Lect Notes Contr Inf Reconfigurable Control of Nonlinear Dynamical Systems: A Fault-hiding Approach = Lect. Notes. Contr. Inf. Reconfigurable Rf Power Amplifiers On Silicon for Wireless Handsets = Analog Circ Sig Proc Reconfigurable Rf Power Amplifiers On Silicon for Wireless Handsets = Analog. Circ. Sig. Proc. Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iii = Proc Spie Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iii = Proc. Spie. Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iii = P Soc Photo-opt Ins Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iii = P. Soc. Photo-opt. Ins. Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iv = P Soc Photo-opt Ins Reconfigurable Technology: Fpgas and Reconfigurable Processors for Computing and Communications Iv = P. Soc. Photo-opt. Ins. Reconfigurable Technology: Fpgas for Computing and Applications Ii = Proc Spie Reconfigurable Technology: Fpgas for Computing and Applications Ii = Proc. Spie. Reconfigurable Technology: Fpgas for Computing and Applications Ii = P Soc Photo-opt Ins Reconfigurable Technology: Fpgas for Computing and Applications Ii = P. Soc. Photo-opt. Ins. Reconfigurable Technology: Fpgas for Computing and Applications = Proc Spie Reconfigurable Technology: Fpgas for Computing and Applications = Proc. Spie. Reconfigurable Technology: Fpgas for Computing and Applications = P Soc Photo-opt Ins Reconfigurable Technology: Fpgas for Computing and Applications = P. Soc. Photo-opt. Ins. Reconfiguring Institutions Across Time and Space: Syncretic Responses to Challenges of Political and Economic Transformation = Polit Evol Inst Chan Reconfiguring Institutions Across Time and Space: Syncretic Responses to Challenges of Political and Economic Transformation = Polit. Evol. Inst. Chan. Reconfiguring Public Relations: Equity, Ecology and Enterprise = Routl Adv Manag Bus Reconfiguring Public Relations: Equity, Ecology and Enterprise = Routl. Adv. Manag. Bus. Reconnection At Sun and in Magnetospheres = Adv Space Res Reconnection At Sun and in Magnetospheres = Adv. Space. Res. Reconnection At Sun and in Magnetospheres = Adv Space Res-series Reconnection At Sun and in Magnetospheres = Adv. Space. Res-series. Reconnection in The Solar Corona and Magnetospheric Substorms = Adv Space Res Reconnection in The Solar Corona and Magnetospheric Substorms = Adv. Space. Res. Reconnection in The Solar Corona and Magnetospheric Substorms = Adv Space Res-series Reconnection in The Solar Corona and Magnetospheric Substorms = Adv. Space. Res-series. Reconquest and Crusade in Medieval Spain = Middle Ages Ser Reconquest and Crusade in Medieval Spain = Middle. Ages. Ser. Reconsidering Open and Distance Learning in The Developing World: Meeting Students Learning Needs = Open Flex Learn Ser Reconsidering Open and Distance Learning in The Developing World: Meeting Students Learning Needs = Open Flex. Learn. Ser. Reconstructing Grammar: Comparative Linguistics and Grammaticalization = Typol St L Reconstructing Grammar: Comparative Linguistics and Grammaticalization = Typol. St. L. Reconstructing Patriarchy After The Great War: Women, Gender, and Postwar Reconciliation Between Nations = Palg Mac Ser Trans Reconstructing Patriarchy After The Great War: Women, Gender, and Postwar Reconciliation Between Nations = Palg. Mac. Ser. Trans. Reconstructing Patriarchy After The Great War: Women, Gender, and Postwar Reconciliation Between Nations = Palg Mac Transnat H Reconstructing Patriarchy After The Great War: Women, Gender, and Postwar Reconciliation Between Nations = Palg. Mac. Transnat. H. Re-constructing The Post-soviet Industrial Region - The Donbas in Transition = Basees-rout Ser Russ Re-constructing The Post-soviet Industrial Region - The Donbas in Transition = Basees-rout. Ser. Russ. Reconstructing The Tree of Life: Taxonomy and Systematics of Species Rich Taxa = Syst Assoc Spec Vol Reconstructing The Tree of Life: Taxonomy and Systematics of Species Rich Taxa = Syst. Assoc. Spec. Vol. Reconstruction Designs of Lost Ancient Chinese Machinery = Hist Mech Mach Sci Reconstruction Designs of Lost Ancient Chinese Machinery = Hist. Mech. Mach. Sci. Reconstructionist Confucianism: Rethinking Morality After The West = Philos Stud Contemp Reconstructionist Confucianism: Rethinking Morality After The West = Philos. Stud. Contemp. Reconstructionist = Reconstructionist Reconstruction of Disturbed Arid Lands = Aaas Select Reconstruction of Disturbed Arid Lands = Aaas. Select. Reconstruction of Macroscopic Maxwell Equations: A Single Susceptibility Theory = Springer Trac Mod Ph Reconstruction of Macroscopic Maxwell Equations: A Single Susceptibility Theory = Springer. Trac. Mod. Ph. Reconstruction of Pleistocene Ice-dammed Lake Outburst Floods in The Altai Mountains, Siberia = Geol Soc Am Spec Pap Reconstruction of Pleistocene Ice-dammed Lake Outburst Floods in The Altai Mountains, Siberia = Geol. Soc. Am. Spec. Pap. Reconstruction of Small Inhomogeneities From Boundary Measurements = Lect Notes Math Reconstruction of Small Inhomogeneities From Boundary Measurements = Lect. Notes. Math. Reconstruction Surgery and Traumatology = Recons Surg Reconstruction Surgery and Traumatology = Recons. Surg. Reconstruction surgery and traumatology = Reconstr Surg Traumatol Reconstruction Surgery and Traumatology=Reconstr Surg Traumatol;; Reconstruction Surgery and Traumatology = Reconstr. Surg. Traumatol. Reconstructive Neurosurgery = Acta Neurochir Suppl Reconstructive Neurosurgery = Acta. Neurochir. Suppl. Reconstructive Neurosurgery = Act Neur S Reconstructive Neurosurgery = Act. Neur. S. Record-at&t Bell Laboratories = Record-at&t Bell Lab Record-at&t Bell Laboratories = Record-at&t Bell Lab. Recording Systems = P Soc Photo-opt Ins Recording Systems = P. Soc. Photo-opt. Ins. Recordkeeping, Ethics and Law = Arch Lib Recordkeeping, Ethics and Law = Arch. Lib. Record of chemical progress = Rec Chem Prog Record of Chemical Progress = Rec Chem Prog Record of Chemical Progress = Rec. Chem. Prog. Record of Conference Papers - Petroleum and Chemical Industry Conference = Record Conf Pap Petr Record of Conference Papers - Petroleum and Chemical Industry Conference = Record Conf. Pap. Petr. Record of The Ieee 2000 International Radar Conference = Ieee Rad Conf Record of The Ieee 2000 International Radar Conference = Ieee Rad. Conf. Record of The Ieee 2000 International Radar Conference = Radar Conf Record of The Ieee 2000 International Radar Conference = Radar Conf. Record = Record (Washington) Record - Society of Actuaries = Record Soc Actuar Record - Society of Actuaries = Record Soc. Actuar. Record - Society of Actuaries, Vol 18, No 4a & 4b = Record Soc Actuar Record - Society of Actuaries, Vol 18, No 4a & 4b = Record Soc. Actuar. Record - Society of Actuaries, Vol 20, No 2, 1994 = Record Soc Actuar Record - Society of Actuaries, Vol 20, No 2, 1994 = Record Soc. Actuar. Record - Society of Actuaries, Vol 20, No 4a and 4b = Record Soc Actuar Record - Society of Actuaries, Vol 20, No 4a and 4b = Record Soc. Actuar. Record - Society of Actuaries, Vol 21, No 1 = Record Soc Actuar Record - Society of Actuaries, Vol 21, No 1 = Record Soc. Actuar. Record - Society of Actuaries, Vols 21, Nos 3a and 3b = Record Soc Actuar Record - Society of Actuaries, Vols 21, Nos 3a and 3b = Record Soc. Actuar. Records of Buckinghamshire, or, Papers and notes on the history, antiquities, and architecture of the county, together with the proceedings of the Architectural and Archaeological Society for the County of Buckingham = Rec Bucks Records of Natural Products = Rec Nat Prod Records of Natural Products = Rec. Nat. Prod. Records of The 2000 Ieee International Workshop On Memory Technology, Design and Testing = Rec Ieee Int Wkshp M Records of The 2000 Ieee International Workshop On Memory Technology, Design and Testing = Rec. Ieee Int. Wkshp. M. Records of The 2003 International Workshop On Memory Technology, Design and Testing = Rec Ieee Int Wkshp M Records of The 2003 International Workshop On Memory Technology, Design and Testing = Rec. Ieee. Int. Wkshp. M. Records of The 2004 Ieee International Workshop On Memory Technology, Design and Testing = Rec Ieee Int Wkshp M Records of The 2004 Ieee International Workshop On Memory Technology, Design and Testing = Rec. Ieee Int. Wkshp. M. Records of The Australian Museum = Rec Aust Mus Records of The Australian Museum = Rec. Aust. Mus. Records of the Columbia Historical Society, Washington, D.C = Rec Columb Hist Soc Records of The Ieee International Workshop On Memory Technology, Design and Testing = Rec Ieee Int Wkshp M Records of The Ieee International Workshop On Memory Technology, Design and Testing = Rec. Ieee Int. Wkshp. M. Recovered Memories of Abuse: True Or False? = Mg S Psychanal Unit Recovered Memories of Abuse: True Or False? = Mg. S. Psychanal. Unit. Recovering Beirut = Soc Econ P Recovering Beirut = Soc. Econ. P. Recovering Informal Learning: Wisdom, Judgement and Community = Lifelong Learn Book Recovering Informal Learning: Wisdom, Judgement and Community = Lifelong. Learn. Book. Recovering Intimacy in Love Relationships: A Clinicians Guide = Fam Ther Counsel Recovering Intimacy in Love Relationships: A Clinicians Guide = Fam. Ther. Counsel. Recovering The Role of Women = S Fl St His Recovering The Role of Women = S. Fl. St. His. Recovery From Brain Damage = Adv Exp Med Biol Recovery From Brain Damage = Adv. Exp. Med. Biol. Recruit and Retain = Recruit Retain Recruiting, Educating, and Training Cataloging Librarians = New Dir Inform Manag Recruiting, Educating, and Training Cataloging Librarians = New. Dir. Inform. Manag. Recruitment and Retention Report = Recruit. Retent. Rep. Recruitment Learning = Stud Comput Intell Recruitment Learning = Stud. Comput. Intell. Recruitment, Retention and Restructuring Report = Recruit. Retent. Restruct. Rep. Recruitment & retention report = Recruit Retent Rep Recruitment, retention & restructuring report = Recruit Retent Restruct Rep Recruit & retain : a monthly publication for professionals concerned with nurse recruitment and retention = Recruit Retain Recrystallization and Grain Growth Iii, Pts 1 and 2 = Mater Sci Forum Recrystallization and Grain Growth Iii, Pts 1 and 2 = Mater. Sci. Forum. Recrystallization and Grain Growth, Pts 1 and 2 = Mater Sci Forum Recrystallization and Grain Growth, Pts 1 and 2 = Mater. Sci. Forum. Rectal Cancer: International Perspectives On Multimodality Management = Curr Clin Oncol Rectal Cancer: International Perspectives On Multimodality Management = Curr. Clin. Oncol. Recueil De Medecine Veterinaire = Recl Med Vet Recueil De Medecine Veterinaire = Recl. Med. Vet. Recueil de medecine veterinaire = Rec Med Vet Ec Alfort Recueil des notices et memoires de la Société archéologique du département de Constantine = RecConstantine Recueil Des Travaux Chimiques Des Pays-bas Et De La Belgique = Recl Trav Ch Pays-ba Recueil Des Travaux Chimiques Des Pays-bas Et De La Belgique = Recl. Trav. Ch. Pays-ba. Recueil Des Travaux Chimiques Des Pays-bas-journal of The Royal Netherlands Chemical Society = Recl Trav Chim Pay B Recueil Des Travaux Chimiques Des Pays-bas-journal of The Royal Netherlands Chemical Society = Recl. Trav. Chim. Pay. B. Recueil des Travaux Chimiques des Pays-Bas Journal of the Royal Netherlands Chemical Society = Recl. Trav. Chim. Pays-Bas Recueil Des Travaux Chimiques Des Pays-bas = Recl Trav Chim Pay-b Recueil Des Travaux Chimiques Des Pays-bas = Recl. Trav. Chim. Pay-b. Recueil des Travaux Chimiques des Pays-Bas = Recl. Trav. Chim. Pays-Bas Recueil de travaux relatifs à philologie et l’archéologie égyptiennes et assyriennes = RecTrav Recurrent Magnetic Storms: Corotating Solar Wind Streams = Geoph Monog Series Recurrent Magnetic Storms: Corotating Solar Wind Streams = Geoph. Monog. Series. Recurrent Magnetic Storms: Corotating Solar Wind Streams = Geophys Monogr Ser Recurrent Magnetic Storms: Corotating Solar Wind Streams = Geophys. Monogr. Ser. Recursions for Convolutions and Compound Distributions With Insurance Applications = Eaa Lect Notes Recursions for Convolutions and Compound Distributions With Insurance Applications = Eaa. Lect. Notes. Recursion Theory and Complexity = De Gru Log Applicat Recursion Theory and Complexity = De. Gru. Log. Applicat. Recursion Theory and Complexity = Degruyter Ser Log Ap Recursion Theory and Complexity = Degruyter. Ser. Log. Ap. Recursion Theory Week = Lect Notes Math Recursion Theory Week = Lect. Notes. Math. Recursive Partitioning and Applications, Second Edition = Springer Ser Stat Recursive Partitioning and Applications, Second Edition = Springer. Ser. Stat. Recycled and Secondary Materials, Soil Remediation, and in Situ Testing = Transport Res Rec Recycled and Secondary Materials, Soil Remediation, and in Situ Testing = Transport. Res. Rec. Recycled Materials in Geotechnical Applications = Geotech Sp Recycled Materials in Geotechnical Applications = Geotech. Sp. Recycled Materials in Geotechnics = Geotech Sp Recycled Materials in Geotechnics = Geotech. Sp. Recycling Concrete and Other Materials for Sustainable Development = Amer Conc I Recycling Concrete and Other Materials for Sustainable Development = Amer. Conc. I. Recycling Intergalactic and Interstellar Matter = Iau Symp Recycling Intergalactic and Interstellar Matter = Iau. Symp. Recycling The Resource = Environm Res Forum Recycling The Resource = Environm. Res. Forum. Re dai yi xue za zhi = Journal of tropical medicine|Re Dai Yi Xue Za Zhi Red Algae in The Genomic Age = Cell Orig Life Extre Red Algae in The Genomic Age = Cell. Orig. Life. Extre. Red Blood Cell Aging = Adv Exp Med Biol Red Blood Cell Aging = Adv. Exp. Med. Biol. Red Book of Varieties and Schemes, 2nd Edition = Lect Notes Math Red Book of Varieties and Schemes, 2nd Edition = Lect. Notes. Math. Redbook : the magazine for young adults = Redbook Red Cell Development = Curr Top Dev Biol Red Cell Development = Curr. Top. Dev. Biol. Redefining British Theatre History = Redefin Brit Theatre Redefining British Theatre History = Redefin. Brit. Theatre Redefining British Theatre History = Redefin Br Theatre H Redefining British Theatre History = Redefin. Br. Theatre H. Redefining Regional French: Koineization and Dialect Levelling in Northern France = Stud Ling Redefining Regional French: Koineization and Dialect Levelling in Northern France = Stud. Ling. Redefining The Csce : Challenges and Opportunities in The New Europe = Inst Ew Sec Redefining The Csce : Challenges and Opportunities in The New Europe = Inst. Ew. Sec. Redesigning Achilles: Recycling The Epic Cycle in The Little Iliad (ovid, Metamorphoses 12.1-13.622) = Unters Antiken Lit G Redesigning Achilles: Recycling The Epic Cycle in The Little Iliad (ovid, Metamorphoses 12.1-13.622) = Unters. Antiken. Lit. G. Redesigning Rice Photosynthesis to Increase Yield = Stud Plan S Redesigning Rice Photosynthesis to Increase Yield = Stud. Plan. S. Redewiedergabe in Fruhneuzeitlichen Hexenprozessakten = Stud Linguist Ger Redewiedergabe in Fruhneuzeitlichen Hexenprozessakten = Stud. Linguist. Ger. Redia-giornale Di Zoologia = Redia Redia-giornale Di Zoologia = Redia. Redirection of Th1 and Th2 Responses = Curr Top Microbiol Redirection of Th1 and Th2 Responses = Curr. Top. Microbiol. Rediscovering Apprenticeship = Tech Vocat Ed Train Rediscovering Apprenticeship = Tech. Vocat. Ed. Train. Rediscovering Phenomenology = Phaenomenologica Rediscovering Phenomenology = Phaenomenologica. Rediscovery of Shamanic Heritage = Bibl Shaman Rediscovery of Shamanic Heritage = Bibl. Shaman. Redistricting and Representation: Why Competitive Elections Are Bad for America = Controv Elect Democr Redistricting and Representation: Why Competitive Elections Are Bad for America = Controv. Elect. Democr. Redo Vascular Surgery = Serono Sym Redo Vascular Surgery = Serono. Sym. Redox-active Amino Acids in Biology = Method Enzymol Redox-active Amino Acids in Biology = Method. Enzymol. Redox-active Metals in Neurological Disorders = Ann Ny Acad Sci Redox-active Metals in Neurological Disorders = Ann. Ny. Acad. Sci. Redox Cell Biology and Genetics, Part A = Method Enzymol Redox Cell Biology and Genetics, Part A = Method. Enzymol. Redox Cell Biology and Genetics, Part A = Methods Enzymol Redox Cell Biology and Genetics, Part A = Methods. Enzymol. Redox Cell Biology and Genetics, Pt B = Method Enzymol Redox Cell Biology and Genetics, Pt B = Method. Enzymol. Redox report : communications in free radical research = Redox Rep Redox Report = Redox Rep Redox Report = Redox Rep. Re-drawing Boundaries = Stud China Re-drawing Boundaries = Stud. China. Redrawing The Nation: National Identity in Latin/o American Comics = New Dir Lat Am Cult Redrawing The Nation: National Identity in Latin/o American Comics = New. Dir. Lat. Am. Cult. Red River Valley historical review = Red River Val Hist Rev Red Snapper Ecology and Fisheries in The U.s. Gulf of Mexico = Am Fish S S Red Snapper Ecology and Fisheries in The U.s. Gulf of Mexico = Am. Fish. S. S. Red Tides As A Natural Phenomenon = Cuad Area C Red Tides As A Natural Phenomenon = Cuad. Area. C. Reduced Activation Materials for Fusion Reactors = Am Soc Test Mater Reduced Activation Materials for Fusion Reactors = Am. Soc. Test. Mater. Reduced-density-matrix Mechanics - With Application to Many-electron Atoms and Molecules = Adv Chem Phys Reduced-density-matrix Mechanics - With Application to Many-electron Atoms and Molecules = Adv. Chem. Phys. Reduced-order Modelling for Flow Control = Cism Courses Lect Reduced-order Modelling for Flow Control = Cism. Courses. Lect. Reduced Order Systems = Lect Notes Contr Inf Reduced Order Systems = Lect. Notes. Contr. Inf. Reduced Thermal Processing for Ulsi = Nato Adv Sci I B-phy Reduced Thermal Processing for Ulsi = Nato. Adv. Sci. I. B-phy. Reduced-tillage Systems = Colloq Inra Reduced-tillage Systems = Colloq. Inra. Reducing Salt in Foods: Practical Strategies = Woodhead Publ Food S Reducing Salt in Foods: Practical Strategies = Woodhead. Publ. Food. S. Reducing The Cost of Spacecraft Ground Systems and Operations = Space Technol Proc Reducing The Cost of Spacecraft Ground Systems and Operations = Space. Technol. Proc. Reducing The Impact of Poverty On Health and Human Development: Scientific Approaches = Ann Ny Acad Sci Reducing The Impact of Poverty On Health and Human Development: Scientific Approaches = Ann. Ny. Acad. Sci. Reductionism and The Development of Knowledge = J Piaget Sy Reductionism and The Development of Knowledge = J. Piaget. Sy. Reduction of Nitrogen Oxide Emissions = Acs Sym Ser Reduction of Nitrogen Oxide Emissions = Acs. Sym. Ser. Reductions in Organic Synthesis = Acs Sym Ser Reductions in Organic Synthesis = Acs. Sym. Ser. Red Wine Color: Revealing The Mysteries = Acs Sym Ser Red Wine Color: Revealing The Mysteries = Acs. Sym. Ser. Reenactment History = Reenactment Hist Reenactment History = Reenactment Hist. Re-enchantment = Art Semin Re-enchantment = Art. Semin. Reenchantment of Nineteenth-century Fiction: Dickens, Thackeray, George Eliot and Serialization = Palgrave Stud Ninet- Reenchantment of Nineteenth-century Fiction: Dickens, Thackeray, George Eliot and Serialization = Palgrave. Stud. Ninet-. Re-engineering of The Damaged Brain and Spinal Cord: Evidence-based Neurorehabilitation = Acta Neurochir Suppl Re-engineering of The Damaged Brain and Spinal Cord: Evidence-based Neurorehabilitation = Acta. Neurochir. Suppl. Re-engineering of The Damaged Brain and Spinal Cord: Evidence-based Neurorehabilitation = Act Neur S Re-engineering of The Damaged Brain and Spinal Cord: Evidence-based Neurorehabilitation = Act. Neur. S. Refactoring Databases: Evolutionary Database Design = Add-wes Signat Ser Refactoring Databases: Evolutionary Database Design = Add-wes. Signat. Ser. REFA-Nachrichten = REFA-Nachr. Reference and Anaphoric Relations = Stud Linguist Philos Reference and Anaphoric Relations = Stud. Linguist. Philos. Reference Books On Family Issues = Ref Books Fam Iss Reference Books On Family Issues = Ref. Books Fam. Iss. Reference Data On Atomic Physics and Atomic Processes = Springer Ser Atom Op Reference Data On Atomic Physics and Atomic Processes = Springer. Ser. Atom. Op. References en gynecologie obstetrique = Ref Gynecol Obstet Reference & User Services Quarterly = Ref User Serv Q Reference & User Services Quarterly = Ref. User Serv. Q. Referendums and Representative Democracy - Responsiveness, Accountability and Deliberation = Routl Ecpr Stud Eur Referendums and Representative Democracy - Responsiveness, Accountability and Deliberation = Routl. Ecpr. Stud. Eur. Refinement Techniques in Software Engineering = Lect Notes Comput Sc Refinement Techniques in Software Engineering = Lect. Notes. Comput. Sc. Refining Familiar Constructs = Res Org Sci Refining Familiar Constructs = Res. Org. Sci. Reflection and Software Engineering = Lect Notes Comput Sc Reflection and Software Engineering = Lect. Notes. Comput. Sc. Reflection, Scattering, and Diffraction From Surfaces Ii = P Soc Photo-opt Ins Reflection, Scattering, and Diffraction From Surfaces Ii = P. Soc. Photo-opt. Ins. Reflection, Scattering, and Diffraction From Surfaces = P Soc Photo-opt Ins Reflection, Scattering, and Diffraction From Surfaces = P. Soc. Photo-opt. Ins. Reflections of Change = Contr St Wo Reflections of Change = Contr. St. Wo. Reflections On European Integration: 50 Years of The Treaty of Rome = Palgrave Stud Eur Un Reflections On European Integration: 50 Years of The Treaty of Rome = Palgrave. Stud. Eur. Un. Reflections On Mexico 68 = B Lat Am Res Bk Ser Reflections On Mexico 68 = B. Lat. Am. Res. Bk. Ser. Reflections on nursing leadership / Sigma Theta Tau International, Honor Society of Nursing = Reflect Nurs Leadersh Reflections On The Cliometrics Revolution: Conversations With Economic Historians = Routl Explor Econ Hi Reflections On The Cliometrics Revolution: Conversations With Economic Historians = Routl. Explor. Econ. Hi. Reflections On The Foundations of Mathematics = Lect Notes Logic Reflections On The Foundations of Mathematics = Lect. Notes. Logic. Reflections On The Problem of Consciousness = Stud Brain Mind Reflections On The Problem of Consciousness = Stud. Brain. Mind. Reflections = Reflections Reflections / Sigma Theta Tau = Reflections Reflective and Refractive Optical Materials for Earth and Space Applications = P Soc Photo-opt Ins Reflective and Refractive Optical Materials for Earth and Space Applications = P. Soc. Photo-opt. Ins. Reflective Cracking in Pavements = Rilem Proc Reflective Cracking in Pavements = Rilem. Proc. Reflective Practices in Arts Education = Landsc Art Aesthet E Reflective Practices in Arts Education = Landsc. Art. Aesthet. E. Reflexivity in Economics: An Experimental Examination On The Self-referentiality of Economic Theories = Contrib Econ Reflexivity in Economics: An Experimental Examination On The Self-referentiality of Economic Theories = Contrib. Econ. Reforesting Landscapes = Landsc Ser Reforesting Landscapes = Landsc. Ser. Reform and Growth in Africa = Oecd Devel Reform and Growth in Africa = Oecd. Devel. Reform and Perspectives On Social Insurance: Lessons From The East and West = Stud Emp Soc Policy Reform and Perspectives On Social Insurance: Lessons From The East and West = Stud. Emp. Soc. Policy. Reform and Restructuring of The Gas Industry in Economies in Transition = Un Eco Comm Reform and Restructuring of The Gas Industry in Economies in Transition = Un. Eco. Comm. Reformed Vitality: Continuity and Change in The Face of Modernity = Calvin Ctr Ser Reformed Vitality: Continuity and Change in The Face of Modernity = Calvin. Ctr. Ser. Reforming Boston Schools, 1930-2006: Overcoming Corruption and Racial Segregation = Palg Stud Urban Educ Reforming Boston Schools, 1930-2006: Overcoming Corruption and Racial Segregation = Palg. Stud. Urban. Educ. Reforming Chinas State-owned Enterprises and Banks = New Horiz Money Fina Reforming Chinas State-owned Enterprises and Banks = New. Horiz. Money. Fina. Reforming Europe: The Role of The Centre-right = Ck I Dem Ser Eur Int Reforming Europe: The Role of The Centre-right = Ck. I. Dem. Ser. Eur. Int. Reforming Fiscal Economic Management in Afghanistan = Dir Dev Reforming Fiscal Economic Management in Afghanistan = Dir. Dev. Reforming Health Care Systems = Baas F Econ Reforming Health Care Systems = Baas. F. Econ. Reforming Higher Education in Vietnam: Challenges and Priorities = High Educ Dynam Reforming Higher Education in Vietnam: Challenges and Priorities = High. Educ. Dynam. Reforming Learning: Concepts, Issues and Practice in The Asia-pacific Region = Educ Asia Pac Reg-is Reforming Learning: Concepts, Issues and Practice in The Asia-pacific Region = Educ. Asia. Pac. Reg-is. Reforming Mexico's Agrarian Reform = Columb U Sem Ser Reforming Mexico's Agrarian Reform = Columb. U. Sem. Ser. Reforming New Zealand Secondary Education: The Picot Report and The Road to Radical Reform = Second Educ Chang Wo Reforming New Zealand Secondary Education: The Picot Report and The Road to Radical Reform = Second. Educ. Chang. Wo. Reforming The Canadian Financial Sector: Canada in Global Perspective = Policy Forum Series Reforming The Canadian Financial Sector: Canada in Global Perspective = Policy. Forum. Series. Reforming The Common Agricultural Policy: History of A Paradigm Change = Palgrave Stud Eur Un Reforming The Common Agricultural Policy: History of A Paradigm Change = Palgrave. Stud. Eur. Un. Reforming The Financial Sector in Central European Countries = Stud Econ Transit Reforming The Financial Sector in Central European Countries = Stud. Econ. Transit. Reforming The Higher Education Curriculum = Am C Educ Oryz Reforming The Higher Education Curriculum = Am. C. Educ. Oryz. Reforming (transforming?) A Public Human Resource Management Agency: The Case of The Personnel Board of Jefferson County, Alabama = Cont Hum Res Manag Reforming (transforming?) A Public Human Resource Management Agency: The Case of The Personnel Board of Jefferson County, Alabama = Cont. Hum. Res. Manag. Reform of Latin American Banking Systems = Int Econ Dev Law Ser Reform of Latin American Banking Systems = Int. Econ. Dev. Law. Ser. Reform of Teacher Education in The Asia-pacific in The New Millennium = Educ Asia Pac Reg-is Reform of Teacher Education in The Asia-pacific in The New Millennium = Educ. Asia. Pac. Reg-is. Reform of The International Financial Architecture = Int Bank & Finance L Reform of The International Financial Architecture = Int. Bank. &. Finance. L. Reform Options for The Eu Own Resources System = Zew Econ Stud Reform Options for The Eu Own Resources System = Zew. Econ. Stud. Reformpoetik = Fruhe Neuzeit-stud D Reformpoetik = Fruhe. Neuzeit-stud. D. Reforms in Foreign Economic Relations of Eastern Europe and The Soviet Union = Econom Stud Reforms in Foreign Economic Relations of Eastern Europe and The Soviet Union = Econom. Stud. Reforms in Public Transport = Res Trans E Reforms in Public Transport = Res. Trans. E. Refractive and Corneal Surgery = Refract Corneal Surg Refractive and Corneal Surgery = Refract. Corneal Surg. Refractive & corneal surgery = Refract Corneal Surg Refractometry = P Soc Photo-opt Ins Refractometry = P. Soc. Photo-opt. Ins. Refractories and Industrial Ceramics = Refract Ind Ceram+ Refractories and Industrial Ceramics = Refract. Ind. Ceram Refractories and Industrial Ceramics = Refract. Ind. Ceram+.+ Refractories Journal = Refract J Refractories Journal = Refract. J. Refractories = Refractories-ussr+ Refractories = Refractories-ussr+.+ Reframing Humans in Information Systems Development = Comput Supp Coop Wor Reframing Humans in Information Systems Development = Comput. Supp. Coop. Wor. Refrigerated Transport, Storage & Retail Display = Refr Sci T Refrigerated Transport, Storage & Retail Display = Refr. Sci. T. Refrigeration and Air Conditioning = Refrig Air Condition Refrigeration and Air Conditioning = Refrig. Air Condition. Refrigeration and Aquaculture = Refr Sci T Refrigeration and Aquaculture = Refr. Sci. T. Refrigeration, Climate Control and Energy Conservation = Refr Sci T Refrigeration, Climate Control and Energy Conservation = Refr. Sci. T. Refrigeration Science and Technology = Refr Sci T Refrigeration Science and Technology = Refr. Sci. T. Refuah Veterinarith = Refuah Vet Refuah Veterinarith = Refuah Vet. Refu'ah veterinarit : riv'on Histadrut ha-rof'im ha-veterinariyim be-Erets-Yisra'el = Refu Vet Refu'at ha-peh veha-shinayim (1993) = Refuat Hapeh Vehashinayim Refu'at ha-peh veha-shinayim (Tel Aviv, Israel : 1969) = Refuat Hapeh Vehashinayim Refuat ha-Shinayim = Refu. Hashinayim Refu'at ha-shinayim (Tel Aviv, Israel : 1944) = Refuat Hashinayim Refu'at ha-shinayim (Tel Aviv, Israel : 1983) = Refuat Hashinayim Refuge and Reality: Feuchtwanger and The European Emigres in California = Germ Monit Refuge and Reality: Feuchtwanger and The European Emigres in California = Germ. Monit. Refugee and Dorced Migration Studies = Ref For Mig St Refugee and Dorced Migration Studies = Ref. For. Mig. St. Refugee reports = Refug Rep Refugees and Development in Africa = Sem P Scand Refugees and Development in Africa = Sem. P. Scand. Refugees, Recent Migrants and Employment = Routl Res Popul Migr Refugees, Recent Migrants and Employment = Routl. Res. Popul. Migr. Refugees, The State and The Politics of Asylum in Africa = St Antonys Ser Refugees, The State and The Politics of Asylum in Africa = St. Antonys. Ser. Regan Report on Nursing Law = Regan Rep. Nurs. Law Regarding The Soledades By Gongora = Anejos Criticon Regarding The Soledades By Gongora = Anejos. Criticon. Regards sur l'actualite = Regards Actual Regel Und Witz = Quellen Stud Philos Regel Und Witz = Quellen. Stud. Philos. Regenerating The Heart: Stem Cells and The Cardiovascular System = Stem Cells Biol Reg Regenerating The Heart: Stem Cells and The Cardiovascular System = Stem Cells Biol. Reg. Regeneratin: Stem Cells and Beyond = Curr Top Microbiol Regeneratin: Stem Cells and Beyond = Curr. Top. Microbiol. Regeneration of Vertebrate Sensory Receptor Cells = Ciba F Symp Regeneration of Vertebrate Sensory Receptor Cells = Ciba. F. Symp. Regenerative and Cell Therapy: Clinical Advances = E Schering Res Fdn W Regenerative and Cell Therapy: Clinical Advances = E. Schering. Res. Fdn. W. Regenerative Medicine Ii: Clinical and Preclinical Applications = Adv Biochem Eng Biot Regenerative Medicine Ii: Clinical and Preclinical Applications = Adv. Biochem. Eng. Biot. Regenerative Medicine I: Theories, Models and Methods = Adv Biochem Eng Biot Regenerative Medicine I: Theories, Models and Methods = Adv. Biochem. Eng. Biot. Regenerative medicine = Regen Med Regenerative Medicine = Regen Med Regenerative Medicine = Regen. Med. Regensburger Jahrbuch fur arztliche Fortbildung = Regensb Jahrb Arztl Fortbild Regensburger Mathematische Schriften = Regensburger Math. Schriften Regime and Society in The Twentieth Century Russia = Int Co Cent E Eur St Regime and Society in The Twentieth Century Russia = Int. Co. Cent. E. Eur. St. Regime Legitimacy in Contemporary China = Routl Contemp China Regime Legitimacy in Contemporary China = Routl. Contemp. China Regio Basiliensis = Reg. Basil. Regional Anaesthesie = Reg. Anaesth. Regional-Anaesthesie = Reg Anaesth Regional and Global Capital Flows = Nber E A Ec Regional and Global Capital Flows = Nber. E. A. Ec. Regional anesthesia and pain medicine = Reg Anesth Pain Med Regional Anesthesia and Pain Medicine = Reg. Anesth. Pain Med. Regional Anesthesia and Pain Medicine = Region Anesth Pain M Regional Anesthesia and Pain Medicine = Region. Anesth. Pain M. Regional anesthesia = Reg Anesth Regional Anesthesia=Reg Anesth;; Regional Anesthesia = Reg. Anesth. Regional Anesthesia = Region Anesth Regional Anesthesia = Region. Anesth. Regional Aspects of Climate-terrestrial-hydrologic Interactions in Non-boreal Eastern Europe = Nato Sci Peace Secur Regional Aspects of Climate-terrestrial-hydrologic Interactions in Non-boreal Eastern Europe = Nato. Sci. Peace. Secur. Regional Aspects of Monetary Policy in Europe = Zei Stud Eu Econ Law Regional Aspects of Monetary Policy in Europe = Zei. Stud. Eu. Econ. Law. Regional Aspects of Monetary Policy in Europe = Zei Stud Eur Econ La Regional Aspects of Monetary Policy in Europe = Zei. Stud. Eur. Econ. La. Regional Aspects of Multinationality and Performance = Res Glob Strateg Man Regional Aspects of Multinationality and Performance = Res. Glob. Strateg. Man. Regional Climate Studies = Reg Clim St Regional Climate Studies = Reg. Clim. St. Regional Climate Studies = Reg Clim Stud Regional Climate Studies = Reg. Clim. Stud. Regional Climate Variability and Its Impacts in The Mediterranean Area = Nato Sci S Ss Iv Ear Regional Climate Variability and Its Impacts in The Mediterranean Area = Nato. Sci. S. Ss. Iv. Ear. Regional Cohesion: Effectiveness of Network Structures = Contrib Econ Regional Cohesion: Effectiveness of Network Structures = Contrib. Econ. Regional Competition = Adv Spat Sci Regional Competition = Adv. Spat. Sci. Regional Cooperation in Southern Africa / = Sem P Scand Regional Cooperation in Southern Africa / = Sem. P. Scand. Regional Development and Conflict Management: A Case for Brazil = Contrib Confl Manag Regional Development and Conflict Management: A Case for Brazil = Contrib. Confl. Manag. Regional development dialogue = Reg Dev Dialogue Regional Development in The Knowledge Economy = Reg Cities Regional Development in The Knowledge Economy = Reg. Cities. Regional Disparities in Small Countries = Adv Spat Sci Regional Disparities in Small Countries = Adv. Spat. Sci. Regional Economic Integration = Res Glob Strateg Man Regional Economic Integration = Res. Glob. Strateg. Man. Regional Environmental Change = Reg Environ Change Regional Environmental Change = Reg. Environ. Change Regionale Prosodie Im Deutschen = Linguist-impulse Ten Regionale Prosodie Im Deutschen = Linguist-impulse. Ten. Regional Geophysical Lineaments = Geol Soc India Mem Regional Geophysical Lineaments = Geol. Soc. India. Mem. Regional Hydrological Impacts of Climatic Change - Hydroclimatic Variability = Iahs-aish P Regional Hydrological Impacts of Climatic Change - Hydroclimatic Variability = Iahs-aish. P. Regional Hydrological Impacts of Climatic Change - Impact Assessment and Decision Making = Iahs-aish P Regional Hydrological Impacts of Climatic Change - Impact Assessment and Decision Making = Iahs-aish. P. Regional immunology = Reg Immunol Regional Immunology = Reg. Immunol. Regional Integration in Africa = Oecd Devel Regional Integration in Africa = Oecd. Devel. Regional Integration in East Asia: From The Viewpoint of Spatial Economics = Ide Jetro Ser Regional Integration in East Asia: From The Viewpoint of Spatial Economics = Ide. Jetro. Ser. Regionalisation, Growth, and Economic Integration = Contrib Econ Regionalisation, Growth, and Economic Integration = Contrib. Econ. Regionalism and Rivalry = Nber Conf R Regionalism and Rivalry = Nber. Conf. R. Regionalism in China-vietnam Relations = Routl Contemp Asia Regionalism in China-vietnam Relations = Routl. Contemp. Asia. Regionalism in South Asia: Negotiating Cooperation, Institutional Structures = Routl Cont Se Asia S Regionalism in South Asia: Negotiating Cooperation, Institutional Structures = Routl. Cont. Se. Asia. S. Regionalism in Southeast Asia: to Foster The Political Will = Routl Stud Mod Hist Regionalism in Southeast Asia: to Foster The Political Will = Routl. Stud. Mod. Hist. Regionalism in Southeast Asia: to Foster The Political Will = Rout St Mod Hist Asi Regionalism in Southeast Asia: to Foster The Political Will = Rout. St. Mod. Hist. Asi. Regionalism in The North = U Lap A C R Regionalism in The North = U. Lap. A. C. R. Regionalism Versus Multilateral Trade Arrangements = Nber E A Ec Regionalism Versus Multilateral Trade Arrangements = Nber. E. A. Ec. Regionalization in Hydrology = Iahs-aish P Regionalization in Hydrology = Iahs-aish. P. Regionalization of Watersheds: An Approach Based On Cluster Analysis = Water Sci Technol Li Regionalization of Watersheds: An Approach Based On Cluster Analysis = Water. Sci. Technol. Li. Regional Knowledge Economies: Markets, Clusters and Innovation = New Horiz Reg Sci Regional Knowledge Economies: Markets, Clusters and Innovation = New. Horiz. Reg. Sci. Regional Management of Water Resources = Iahs-aish P Regional Management of Water Resources = Iahs-aish. P. Regional Minorities and Development in Asia = Routl Contemp Asia Regional Minorities and Development in Asia = Routl. Contemp. Asia Regional Outcome Measure in Hand Surgery = Surg-proced Complica Regional Outcome Measure in Hand Surgery = Surg-proced. Complica. Regional Planning and Information Systems = Cirad Colloques Regional Planning and Information Systems = Cirad. Colloques. Regional Planning = Nat Built Environ Se Regional Planning = Nat. Built. Environ. Se. Regional science and urban economics = Reg Sci Urban Econ Regional Science and Urban Economics=Reg. Sci. Urban Econ. Regional Science and Urban Economics = Reg Sci Urban Econ Regional Science and Urban Economics = Reg. Sci. Urban Econ. Regional Science Perspectives in Economic Analysis = Contrib Econ Anal Regional Science Perspectives in Economic Analysis = Contrib. Econ. Anal. Regional Science Perspectives in Economic Analysis = Contrib To Econ Anal Regional Science Perspectives in Economic Analysis = Contrib. To. Econ. Anal. Regional Science Perspectives=Reg. Sci. Persp. Regional science perspectives = Reg Sci Perspect Regional Security Regimes = Suny S Irs St Regional Security Regimes = Suny. S. Irs. St. Regionalspezifische Intonationsverlaufe Im Kolnischen = Linguist Arb Regionalspezifische Intonationsverlaufe Im Kolnischen = Linguist. Arb. Regional studies = Reg Stud Regional Studies=Reg. Stud. Regional Studies = Reg Stud Regional Studies = Reg. Stud. Regional Unemployment, Job Matching, and Migration = Eur Res R S Regional Unemployment, Job Matching, and Migration = Eur. Res. R. S. Région et Développement=Région Dével. Regions and Cities = Reg Cities Regions and Cities = Reg. Cities Registered Nurse = Regist. Nurse Registered nurse (Toronto, Ont.) = Regist Nurse Regnum Vegetabile = Regnum Veg Regnum Vegetabile = Regnum Veg. Regreening The Bare Hills: Tropical Forest Restoration in The Asia-pacific Region = World Forests Regreening The Bare Hills: Tropical Forest Restoration in The Asia-pacific Region = World. Forests. Regression Methods in Biostatistics = Stat Biol Health Regression Methods in Biostatistics = Stat. Biol. Health. Regression With Linear Predictors = Stat Biol Health Regression With Linear Predictors = Stat. Biol. Health. Regulae Benedicti Studia: annuarium internationale = RBS Regular & Chaotic Dynamics = Regul Chaotic Dyn Regular & Chaotic Dynamics = Regul. Chaotic Dyn. Regularity and Approximability of Electronic Wave Functions = Lect Notes Math Regularity and Approximability of Electronic Wave Functions = Lect. Notes. Math. Regularity and Substructures of Hom = Front Math Regularity and Substructures of Hom = Front. Math. Regularity of Minimal Surfaces, Second Edition = Grundlehr Math Wiss Regularity of Minimal Surfaces, Second Edition = Grundlehr. Math. Wiss. Regularized Fast Hartley Transform = Signals Commun Techn Regularized Fast Hartley Transform = Signals. Commun. Techn. Regular Variation and Differential Equations = Lect Notes Math Regular Variation and Differential Equations = Lect. Notes. Math. Regulated Agent-based Social Systems = Lect Notes Artif Int Regulated Agent-based Social Systems = Lect. Notes. Artif. Int. Regulated Rivers-research & Management = Regul River Regulated Rivers-research & Management = Regul. River. Regulated Systems for Multiphase Catalysis = Top Organometal Chem Regulated Systems for Multiphase Catalysis = Top. Organometal. Chem. Regulation & Governance = Regul Gov Regulation & Governance = Regul. Gov. Regulation in Asia: Pushing Back On Globalization = Routledge Law Asia Regulation in Asia: Pushing Back On Globalization = Routledge. Law. Asia. Regulation in Asia: Pushing Back On Globalization = Rtldg Law Asia Regulation in Asia: Pushing Back On Globalization = Rtldg. Law. Asia. Regulation of Body Weight = Life Sci R Regulation of Body Weight = Life. Sci. R. Regulation of Chloroplast Biogenesis = Nato Adv Sci I A-lif Regulation of Chloroplast Biogenesis = Nato. Adv. Sci. I. A-lif. Regulation of Enzymatic Systems Detoxifying Xenobiotics in Plants = Nato Asi 3 High Tech Regulation of Enzymatic Systems Detoxifying Xenobiotics in Plants = Nato. Asi. 3. High. Tech. Regulation of Gene Expression = Essays Biochem Regulation of Gene Expression = Essays. Biochem. Regulation of Gene Expression in Animal Viruses = Nato Adv Sci Inst Se Regulation of Gene Expression in Animal Viruses = Nato. Adv. Sci. Inst. Se. Regulation of Gene Expression in The Nervous System = Neurol Neur Regulation of Gene Expression in The Nervous System = Neurol. Neur. Regulation of Growth Hormone and Somatic Growth = Int Congr Ser Regulation of Growth Hormone and Somatic Growth = Int. Congr. Ser. Regulation of Hemoglobin Switching = Jh S Cont M Regulation of Hemoglobin Switching = Jh. S. Cont. M. Regulation of Isopentenoid Metabolism = Acs Sym Ser Regulation of Isopentenoid Metabolism = Acs. Sym. Ser. Regulation of Micrornas = Adv Exp Med Biol Regulation of Micrornas = Adv. Exp. Med. Biol. Regulation of Phytochemicals By Molecular Techniques = Recent Adv Phytochem Regulation of Phytochemicals By Molecular Techniques = Recent. Adv. Phytochem. Regulation of Plant Growth and Development By Light = Cur Top Pl Regulation of Plant Growth and Development By Light = Cur. Top. Pl. Regulation of Primary Metabolic Pathways in Plants = Pr Phyt Soc Regulation of Primary Metabolic Pathways in Plants = Pr. Phyt. Soc. Regulation of Seasonal Cycles in Invertebrate = Colloq Inra Regulation of Seasonal Cycles in Invertebrate = Colloq. Inra. Regulation of Sertoli Cell and Germ Cell Differentation = Adv Anat Embryol Cel Regulation of Sertoli Cell and Germ Cell Differentation = Adv. Anat. Embryol. Cel. Regulation of Smooth Muscle Contraction = Adv Exp Med Biol Regulation of Smooth Muscle Contraction = Adv. Exp. Med. Biol. Regulation of Testicular Function = Ann Ny Acad Sci Regulation of Testicular Function = Ann. Ny. Acad. Sci. Regulation of The Acute Phase and Immune Responses : Interleukin-6 = Ann Ny Acad Sci Regulation of The Acute Phase and Immune Responses : Interleukin-6 = Ann. Ny. Acad. Sci. Regulation of The Eukaryotic Cell Cycle = Ciba F Symp Regulation of The Eukaryotic Cell Cycle = Ciba. F. Symp. Regulation of The Voluntary Sector: Freedom and Security in An Era of Uncertainty = Crit Approach Law Regulation of The Voluntary Sector: Freedom and Security in An Era of Uncertainty = Crit. Approach. Law. Regulation of Working Time in The European Union: Gender Approach = Travail Soc Regulation of Working Time in The European Union: Gender Approach = Travail. Soc. Regulation=Regulation Regulation = Regulation Regulators and Effectors of Small Gtpases, Pt D = Method Enzymol Regulators and Effectors of Small Gtpases, Pt D = Method. Enzymol. Regulators and Effectors of Small Gtpases, Pt E = Method Enzymol Regulators and Effectors of Small Gtpases, Pt E = Method. Enzymol. Regulators and Effectors of Small Gtpases, Pt F, Ras Family I = Method Enzymol Regulators and Effectors of Small Gtpases, Pt F, Ras Family I = Method. Enzymol. Regulators and Effectors of Small Gtpases, Pt G = Method Enzymol Regulators and Effectors of Small Gtpases, Pt G = Method. Enzymol. Regulators and Effectors of Small Gtpases, Pt G = Methods Enzymol Regulators and Effectors of Small Gtpases, Pt G = Methods. Enzymol. Regulators and Effectors of Small Gtpases: Ras Family = Method Enzymol Regulators and Effectors of Small Gtpases: Ras Family = Method. Enzymol. Regulators in Analysis, Geometry and Number Theory = Prog Math Regulators in Analysis, Geometry and Number Theory = Prog. Math. Regulators of G-protein Signaling, Part A = Method Enzymol Regulators of G-protein Signaling, Part A = Method. Enzymol. Regulators of G-protein Signaling, Pt B = Method Enzymol Regulators of G-protein Signaling, Pt B = Method. Enzymol. Regulatory analyst. Medical waste = Regul Anal Med Waste Regulatory Analyst. Medical Waste = Regul. Anal. Med. Waste Regulatory and Protective Role of The Normal Microflora = Wenner-gr C Regulatory and Protective Role of The Normal Microflora = Wenner-gr. C. Regulatory Challenge of Biotechnology: Human Genetics, Food and Patents = Biotechnol Regul Ser Regulatory Challenge of Biotechnology: Human Genetics, Food and Patents = Biotechnol. Regul. Ser. Regulatory Control and Standardization of Allergenic Extracts = Arb Pei Gsh Regulatory Control and Standardization of Allergenic Extracts = Arb. Pei. Gsh. Regulatory Fit and Persuasion Through Advocacy Messages and Narratives = Psychol Res Prog Regulatory Fit and Persuasion Through Advocacy Messages and Narratives = Psychol. Res. Prog. Regulatory Genomics = Lect Notes Comput Sc Regulatory Genomics = Lect. Notes. Comput. Sc. Regulatory Governance in Developing Countries = Crc Ser Compet Regul Regulatory Governance in Developing Countries = Crc. Ser. Compet. Regul. Regulatory Gut Peptides in Paediatric Gastroenterology and Nutrition = Front Gastr Res Regulatory Gut Peptides in Paediatric Gastroenterology and Nutrition = Front. Gastr. Res. Regulatory Impact Assessment:towards Better Regulation? = Crc Ser Compet Regul Regulatory Impact Assessment:towards Better Regulation? = Crc. Ser. Compet. Regul. Regulatory Mechanisms of Striated Muscle Contraction = Adv Exp Med Biol Regulatory Mechanisms of Striated Muscle Contraction = Adv. Exp. Med. Biol. Regulatory peptides = Regul Pept Regulatory Peptides=Regul Pept;; Regulatory Peptides = Regul. Pept. Regulatory Peptides = Regul Peptides Regulatory Peptides = Regul. Peptides Regulatory peptides. Supplement = Regul Pept Suppl Regulatory Peptides. Supplement = Regul. Pept. Suppl. Regulatory Practices and Safety Standards for Nuclear Power Plants = Int Aeaps 2 Regulatory Practices and Safety Standards for Nuclear Power Plants = Int. Aeaps. 2. Regulatory Processes in Development = Wenn Gr Int Regulatory Processes in Development = Wenn. Gr. Int. Regulatory Roles of Neuropeptides = Int Congr Ser Regulatory Roles of Neuropeptides = Int. Congr. Ser. Regulatory T Cells: Methods and Protocols = Methods Mol Biol Regulatory T Cells: Methods and Protocols = Methods Mol. Biol. Regulatory Toxicology and Pharmacology = Regul Toxicol Pharm Regulatory Toxicology and Pharmacology = Regul. Toxicol. Pharm. Regulatory Toxicology and Pharmacology=Regul Toxicol Pharmacol;; Regulatory Toxicology and Pharmacology = Regul. Toxicol. Pharmacol. Regulatory toxicology and pharmacology : RTP = Regul Toxicol Pharmacol Regulierung Elektrischer Netze: Offene Fragen Und Losungsansatze = Ethics Sci Tech Ass Regulierung Elektrischer Netze: Offene Fragen Und Losungsansatze = Ethics. Sci. Tech. Ass. Regulyarnaya & Khaoticheskaya Dinamika = Regul. Khaoticheskaya Din. Rehabilitace a fyzikalni lekarstvi = Rehabil Fyz Lek Rehabilitation and Palliation of Cancer Patients: (patient Care) = Ser Eur Acad Rehabil Rehabilitation and Palliation of Cancer Patients: (patient Care) = Ser. Eur. Acad. Rehabil. Rehabilitation: Beyond The Risk Paradigm = Key Ideas Criminol Rehabilitation: Beyond The Risk Paradigm = Key. Ideas. Criminol. Rehabilitation counseling bulletin = Rehabil Couns Bull Rehabilitation Counseling Bulletin = Rehabil Couns Bull Rehabilitation Counseling Bulletin = Rehabil. Couns. Bull. Rehabilitation Facilities : Preparing for The 21st Century = Switzer Mon Rehabilitation Facilities : Preparing for The 21st Century = Switzer. Mon. Rehabilitation literature = Rehabil Lit Rehabilitation Literature = Rehabil Lit Rehabilitation Literature = Rehabil. Lit. Rehabilitation Medicine / = Int Congr Ser Rehabilitation Medicine / = Int. Congr. Ser. Rehabilitation Nursing = Rehabil Nurs Rehabilitation Nursing = Rehabil. Nurs. Rehabilitation nursing : the official journal of the Association of Rehabilitation Nurses = Rehabil Nurs Rehabilitation of Persons With Long-term Mental Illness in The 1990s = Switzer Mon Rehabilitation of Persons With Long-term Mental Illness in The 1990s = Switzer. Mon. Rehabilitation of The Shaken Soldier Syndrome = Neurosci Res Prog Se Rehabilitation of The Shaken Soldier Syndrome = Neurosci. Res. Prog. Se. Rehabilitation psychology = Rehabil Psychol Rehabilitation Psychology = Rehabil Psychol Rehabilitation Psychology = Rehabil. Psychol. Rehabilitation record = Rehabil Rec Rehabilitation Record = Rehabil. Rec. Rehabilitation = Rehabilitation Rehabilitation=Rehabilitation (Stuttg);; Rehabilitation = Rehabilitation (Stuttg.) Rehabilitation: Sozialmedizin, physikalische Medizin, Praventivmedizin; internationale Zeitschrift mit Zentralblatt = Rehabilitation (Bonn) Rehabilitation; Sozialmedizin, Physikalischemedizin, Praventivmedizin = Rehabilitation (Bonn) Rehabilitation Technology : Strategies for The European Union = St Heal T Rehabilitation Technology : Strategies for The European Union = St. Heal. T. Rehab management = Rehab Manag Rehab Management = Rehab Manag. Rehab, Protection and Safety Measures for Firefighters and Emergency Responders = Saf Risk Soc Rehab, Protection and Safety Measures for Firefighters and Emergency Responders = Saf. Risk. Soc. Rei Cretariae Romanae Fautores. Communicationes = ReiCretCommunic Rei Cretariae Romanae Fautorum acta = ReiCretActa Reidemeister Torsion of 3-manifolds = Degruyter Stud Math Reidemeister Torsion of 3-manifolds = Degruyter. Stud. Math. Reid On Ethics = Philos Depth Reid On Ethics = Philos. Depth. Reifen - Fahrwerk - Fahrbahn = Vdi Bericht Reifen - Fahrwerk - Fahrbahn = Vdi. Bericht. Reigniting The Labor Movement: Restoring Means to Ends in A Democratic Labor Movement = Routl Front Polit Ec Reigniting The Labor Movement: Restoring Means to Ends in A Democratic Labor Movement = Routl. Front. Polit. Ec. Reign of Truth and Faith: Epistemic Expressions in 16th and 17th Century English = Top Engl Linguist Reign of Truth and Faith: Epistemic Expressions in 16th and 17th Century English = Top. Engl. Linguist. Reihe Der Villa Vigoni = Reihe Villa Vigoni Reihe Germanistische Linguistik = Reihe Ger Linguist Reihe Germanistische Linguistik = Reihe Ger. Linguist. Reihe, Medizinische Forschung = Reihe Med Forsch Reimagining Women = Theory Culture Reimagining Women = Theory. Culture. Reindeer As A Keystone Species in The North - Biological, Cultural and Socio-economic Aspects = U Lap A C R Reindeer As A Keystone Species in The North - Biological, Cultural and Socio-economic Aspects = U. Lap. A C. R. Rein et foie, maladies de la nutrition; actualites = Rein Foie Rein et Foie = Rein Foie Reinforced Plastics and Composites World = Reinf. Plast. Compos. World Reinforced Plastics = Reinf. Plast. Reinforcement Learning and Dynamic Programming Using Function Approximators = Autom Control Eng Se Reinforcement Learning and Dynamic Programming Using Function Approximators = Autom. Control. Eng. Se. Reinhold Niebuhr (1892-1971) = Mcgill Stud Relig Reinhold Niebuhr (1892-1971) = Mcgill. Stud. Relig. Reinventing Accountability: Making Democracy Work for Human Development = Int Polit Econ Ser Reinventing Accountability: Making Democracy Work for Human Development = Int. Polit. Econ. Ser. Reinventing Modernity in Latin America: Intellectuals Imagine The Future, 1900-1930 = Stud Am Reinventing Modernity in Latin America: Intellectuals Imagine The Future, 1900-1930 = Stud. Am. Reinventing Poland: Economic and Political Transformation and Evolving National Identity = Basees-rout Ser Russ Reinventing Poland: Economic and Political Transformation and Evolving National Identity = Basees-rout. Ser. Russ. Re-inventing Realities = Adv Public Inter Acc Re-inventing Realities = Adv. Public. Inter. Acc. Re-irradiation: New Frontiers = Med Radiol Radiat On Re-irradiation: New Frontiers = Med. Radiol. Radiat. On. Reis = Rev Esp Invest Sociol Rejection and Tolerance = Transp Cl Immun Sfmm Rejection and Tolerance = Transp. Cl. Immun. Sfmm. Rejuvenation research = Rejuvenation Res Rejuvenation Research = Rejuvenation Res. Rejuvenation Research = Rejuv Res Rejuvenation Research = Rejuv. Res. Relaciones internacionales = Relac Int Relating Geophysical Structures and Processes = Geoph Monog Series Relating Geophysical Structures and Processes = Geoph. Monog. Series. Relating to Environments: A New Look At Umwelt = Adv Cult Psychol Con Relating to Environments: A New Look At Umwelt = Adv. Cult. Psychol. Con. Relational and Kleene-algebraic Methods in Computer Science = Lect Notes Comput Sc Relational and Kleene-algebraic Methods in Computer Science = Lect. Notes. Comput. Sc. Relational Contracting for Construction Excellence: Principles, Practices and Case Studies = Spon Res Relational Contracting for Construction Excellence: Principles, Practices and Case Studies = Spon. Res. Relational Databases and Open-source Software Developments = Comput Sci Tech Appl Relational Databases and Open-source Software Developments = Comput. Sci. Tech. Appl. Relational Methods for Computer Science Applications = Stud Fuzz Soft Comp Relational Methods for Computer Science Applications = Stud. Fuzz. Soft. Comp. Relational Methods in Computer Science, 2005 = Lect Notes Comput Sc Relational Methods in Computer Science, 2005 = Lect. Notes. Comput. Sc. Relational Methods in Computer Science = Lect Notes Comput Sc Relational Methods in Computer Science = Lect. Notes. Comput. Sc. Relational Perspectives Book Series = Relat Perspect Book Relational Perspectives Book Series = Relat. Perspect. Book Relation of Writing to Spoken Language = Ling Arb Relation of Writing to Spoken Language = Ling. Arb. Relations and Kleene Algebra in Computer Science = Lect Notes Comput Sc Relations and Kleene Algebra in Computer Science = Lect. Notes. Comput. Sc. Relations and Kleene Algebra in Computer Science, Proceedings = Lect Notes Comput Sc Relations and Kleene Algebra in Computer Science, Proceedings = Lect. Notes. Comput. Sc. Relationscapes: Movement, Art, Philosophy = Technol Lived Abstr Relationscapes: Movement, Art, Philosophy = Technol. Lived. Abstr. Relationship Between Automatic and Controlled Processes of Attention and Leading to Complex Thinking = Neurosci Res Prog Se Relationship Between Automatic and Controlled Processes of Attention and Leading to Complex Thinking = Neurosci. Res. Prog. Se. Relationship Between Damage and Localization = Geol Soc Spec Publ Relationship Between Damage and Localization = Geol. Soc. Spec. Publ. Relationship Between Exporters and Their Foreign Sales and Marketing Intermediaries = Adv Int Marketing Relationship Between Exporters and Their Foreign Sales and Marketing Intermediaries = Adv. Int. Marketing Relationships and Resources = Relatsh Resour Relationships and Resources = Relatsh. Resour. Relationships As Developmental Contexts = Minn Sym Child Psych Relationships As Developmental Contexts = Minn. Sym. Child. Psych. Relationships Between Active Galactic Nuclei and Starburst Galaxies = Astr Soc P Relationships Between Active Galactic Nuclei and Starburst Galaxies = Astr. Soc. P. Relations Industrielles-industrial Relations = Relat Ind-ind Relat Relations Industrielles-industrial Relations = Relat. Ind-ind. Relat. Relative Datierung Der Tragodien Senecas = Beitr Altertumskunde Relative Datierung Der Tragodien Senecas = Beitr. Altertumskunde. Relative Efficacy of Sodium Fluoride and Sodium Monofluorophosphate As Anti-caries Agents in Dentifrices = Roy Soc Med Int Cong Relative Efficacy of Sodium Fluoride and Sodium Monofluorophosphate As Anti-caries Agents in Dentifrices = Roy. Soc. Med. Int. Cong. Relatively and Philosophically Earnest: Festschrift in Honor of Paul Ernest's 65th Birthday = Mont Math Enthus Mon Relatively and Philosophically Earnest: Festschrift in Honor of Paul Ernest's 65th Birthday = Mont. Math. Enthus. Mon. Relative Tense and Aspectual Values in Tibetan Languages: A Comparative Study = Trends Linguist-stud Relative Tense and Aspectual Values in Tibetan Languages: A Comparative Study = Trends. Linguist-stud. Relativistic and Electron Correlation Effects in Molecules and Solids = Nato Adv Sci Inst Se Relativistic and Electron Correlation Effects in Molecules and Solids = Nato. Adv. Sci. Inst. Se. Relativistic Astrophysics = Aip Conf Proc Relativistic Astrophysics = Aip. Conf. Proc. Relativistic Astrophysics and Cosmology = Sci Cult Ser Astroph Relativistic Astrophysics and Cosmology = Sci. Cult. Ser. Astroph. Relativistic Collisions of Structured Atomic Particles = Springer Ser Atom Op Relativistic Collisions of Structured Atomic Particles = Springer. Ser. Atom. Op. Relativistic Flows in Astrophysics = Lect Notes Phys Relativistic Flows in Astrophysics = Lect. Notes. Phys. Relativistic Gravitation = Adv Space Res-series Relativistic Gravitation = Adv. Space. Res-series. Relativistic Gravitational Experiments in Space = Nasa Conf P Relativistic Gravitational Experiments in Space = Nasa. Conf. P. Relativistic Heavy-ion Collisions = Ccast Wl Sw Relativistic Heavy-ion Collisions = Ccast. Wl. Sw. Relativistic Jets: The Common Physics of Agn, Microquasars, and Gamma-ray Bursts = Aip Conf Proc Relativistic Jets: The Common Physics of Agn, Microquasars, and Gamma-ray Bursts = Aip. Conf. Proc. Relativistic Many-body Theory: A New Field-theoretical Approach = Springer Ser Atom Op Relativistic Many-body Theory: A New Field-theoretical Approach = Springer. Ser. Atom. Op. Relativistic Methods for Chemists = Chall Adv Comput Che Relativistic Methods for Chemists = Chall. Adv. Comput. Che. Relativistic Quantum Measurement and Decoherence = Lect Notes Phys Relativistic Quantum Measurement and Decoherence = Lect. Notes. Phys. Relativistic Quantum Mechanics = Theor Math Phys Ser Relativistic Quantum Mechanics = Theor. Math. Phys. Ser. Relativistic Quantum Theory of Atoms and Molecules: Theory and Computation = Springer Ser Atom Op Relativistic Quantum Theory of Atoms and Molecules: Theory and Computation = Springer. Ser. Atom. Op. Relativistic Transitions in The Hydrogenic Atoms: Elementary Theory = Springer Ser Atom Op Relativistic Transitions in The Hydrogenic Atoms: Elementary Theory = Springer. Ser. Atom. Op. Relativity and The Nature of Spacetime = Front Collect Relativity and The Nature of Spacetime = Front. Collect. Relativity, Gravitation, Cosmology: New Developments = Contemp Fund Phys Relativity, Gravitation, Cosmology: New Developments = Contemp. Fund. Phys. Relativity in Fundamental Astronomy: Dynamics, Reference Frames, and Data Analysis = Iau Symp P Series Relativity in Fundamental Astronomy: Dynamics, Reference Frames, and Data Analysis = Iau. Symp. P. Series. Relativ(satz)konstruktionen Im Gesprochenen Deutsch = Linguist-impulse Ten Relativ(satz)konstruktionen Im Gesprochenen Deutsch = Linguist-impulse. Ten. Relators and Linkers: The Syntax of Predication, Predicate Inversion, and Copulas = Linguist Inq Monogr Relators and Linkers: The Syntax of Predication, Predicate Inversion, and Copulas = Linguist. Inq. Monogr. Relaxation in Complex Systems and Related Topics = Nato Adv Sci I B-phy Relaxation in Complex Systems and Related Topics = Nato. Adv. Sci. I. B-phy. Relaxation in Polymers = Prog Coll Pol Sci S Relaxation in Polymers = Prog. Coll. Pol. Sci. S. Relaxation Phenomena in Condensed Matter = Adv Chem Phys Relaxation Phenomena in Condensed Matter = Adv. Chem. Phys. Relaxin and Related Peptides = Adv Exp Med Biol Relaxin and Related Peptides = Adv. Exp. Med. Biol. Relaxin and Related Peptides: Fifth International Conference = Ann Ny Acad Sci Relaxin and Related Peptides: Fifth International Conference = Ann. Ny. Acad. Sci. Relaxin and Related Peptides: Fourth International Conference = Ann Ny Acad Sci Relaxin and Related Peptides: Fourth International Conference = Ann. Ny. Acad. Sci. Release of Genetically Modified Microorganisms - Regem 2 = Fems Symp Release of Genetically Modified Microorganisms - Regem 2 = Fems. Symp. Relevance of Animal Studies to The Evaluation of Human Cancer Risk = Prog Clin Biol Res Relevance of Animal Studies to The Evaluation of Human Cancer Risk = Prog. Clin. Biol. Res. Relevance of Ethnic Factors in The Clinical Evaluation of Medicines = Cmr Worksh Relevance of Ethnic Factors in The Clinical Evaluation of Medicines = Cmr. Worksh. Relevance of The Philosophy of Sport = Spor Spiel Kamp Relevance of The Philosophy of Sport = Spor. Spiel. Kamp. Relevance to Human Cancer of N-nitroso Compounds, Tobacco and Mycotoxins = Iarc Sci Publ Relevance to Human Cancer of N-nitroso Compounds, Tobacco and Mycotoxins = Iarc. Sci. Publ. Reliability and Maintainability Symposium = P Rel Maint S Reliability and Maintainability Symposium = P. Rel. Maint. S. Reliability and Optimization of Structural Systems: Assessment, Design and Life-cycle Performance = Proc Monogr Eng Wate Reliability and Optimization of Structural Systems: Assessment, Design and Life-cycle Performance = Proc. Monogr. Eng. Wate. Reliability and Optimization of Structural Systems, V = Ifip Trans B Reliability and Optimization of Structural Systems, V = Ifip. Trans. B. Reliability and Risk Issues in Large Scale Safety-critical Digital Control Systems = Springer Ser Reliab Reliability and Risk Issues in Large Scale Safety-critical Digital Control Systems = Springer. Ser. Reliab. Reliability and Safety Engineering = Springer Ser Reliab Reliability and Safety Engineering = Springer. Ser. Reliab. Reliability and Safety of Complex Technical Systems and Processes: Modeling - Identification - Prediction - Optimization = Springer Ser Reliab Reliability and Safety of Complex Technical Systems and Processes: Modeling - Identification - Prediction - Optimization = Springer. Ser. Reliab. Reliability-based Design of Engineered Wood Structures = Nato Adv Sci I E-app Reliability-based Design of Engineered Wood Structures = Nato. Adv. Sci. I. E-app. Reliability Engineerign = Reliab. Eng. Reliability Engineering & System Safety = Reliab. Eng. Syst. Saf. Reliability Engineering & System Safety = Reliab Eng Syst Safe Reliability Engineering & System Safety = Reliab. Eng. Syst. Safe. Reliability of Optical Fiber Components, Devices, Systems, and Networks Iii = Proc Spie Reliability of Optical Fiber Components, Devices, Systems, and Networks Iii = Proc. Spie. Reliability of Optical Fiber Components, Devices, Systems, and Networks Iii = P Soc Photo-opt Ins Reliability of Optical Fiber Components, Devices, Systems, and Networks Iii = P. Soc. Photo-opt. Ins. Reliability of Optical Fiber Components, Devices, Systems, and Networks Ii = P Soc Photo-opt Ins Reliability of Optical Fiber Components, Devices, Systems, and Networks Ii = P. Soc. Photo-opt. Ins. Reliability of Optical Fiber Components, Devices, Systems and Networks = P Soc Photo-opt Ins Reliability of Optical Fiber Components, Devices, Systems and Networks = P. Soc. Photo-opt. Ins. Reliability of Photonics Materials and Structures = Mater Res Soc Symp P Reliability of Photonics Materials and Structures = Mater. Res. Soc. Symp. P. Reliability of Photovoltaic Cells, Modules, Components, and Systems Iii = P Soc Photo-opt Ins Reliability of Photovoltaic Cells, Modules, Components, and Systems Iii = P. Soc. Photo-opt. Ins. Reliability of Photovoltaic Cells, Modules, Components, and Systems = Proc Spie Reliability of Photovoltaic Cells, Modules, Components, and Systems = Proc. Spie. Reliability of Photovoltaic Cells, Modules, Components, and Systems = P Soc Photo-opt Ins Reliability of Photovoltaic Cells, Modules, Components, and Systems = P. Soc. Photo-opt. Ins. Reliability of Sealing Systems for Rotating Machinery = Imeche Sem Reliability of Sealing Systems for Rotating Machinery = Imeche. Sem. Reliability, Packaging, Testing, and Characterization of Mems/moems and Nanodevices Ix = Proc Spie Reliability, Packaging, Testing, and Characterization of Mems/moems and Nanodevices Ix = Proc. Spie. Reliability, Packaging, Testing, and Characterization of Mems/moems and Nanodevices Viii = P Soc Photo-opt Ins Reliability, Packaging, Testing, and Characterization of Mems/moems and Nanodevices Viii = P. Soc. Photo-opt. Ins. Reliability, Packaging, Testing, and Characterization of Mems/moems Iv = Proc Spie Reliability, Packaging, Testing, and Characterization of Mems/moems Iv = Proc. Spie. Reliability, Packaging, Testing, and Characterization of Mems/moems Iv = P Soc Photo-opt Ins Reliability, Packaging, Testing, and Characterization of Mems/moems Iv = P. Soc. Photo-opt. Ins. Reliability, Packaging, Testing, and Characterization of Mems/moems Vii = Proc Spie Reliability, Packaging, Testing, and Characterization of Mems/moems Vii = Proc. Spie. Reliability, Packaging, Testing, and Characterization of Mems/moems Vii = P Soc Photo-opt Ins Reliability, Packaging, Testing, and Characterization of Mems/moems Vii = P. Soc. Photo-opt. Ins. Reliability, Packaging, Testing, and Characterization of Mems/moems Vi = Proc Spie Reliability, Packaging, Testing, and Characterization of Mems/moems Vi = Proc. Spie. Reliability, Packaging, Testing, and Characterization of Mems/moems Vi = P Soc Photo-opt Ins Reliability, Packaging, Testing, and Characterization of Mems/moems Vi = P. Soc. Photo-opt. Ins. Reliability, Packaging, Testing, and Characterization of Mems/ Moems V = Proc Spie Reliability, Packaging, Testing, and Characterization of Mems/ Moems V = Proc. Spie. Reliability, Packaging, Testing, and Characterization of Mems/ Moems V = P Soc Photo-opt Ins Reliability, Packaging, Testing, and Characterization of Mems/ Moems V = P. Soc. Photo-opt. Ins. Reliability, Testing and Characterization of Mems/moems Iii = Proc Spie Reliability, Testing and Characterization of Mems/moems Iii = Proc. Spie. Reliability, Testing and Characterization of Mems/moems Iii = P Soc Photo-opt Ins Reliability, Testing and Characterization of Mems/moems Iii = P. Soc. Photo-opt. Ins. Reliability, Testing, and Characterization of Mems/moems Ii = Proc Spie Reliability, Testing, and Characterization of Mems/moems Ii = Proc. Spie. Reliability, Testing, and Characterization of Mems/moems Ii = P Soc Photo-opt Ins Reliability, Testing, and Characterization of Mems/moems Ii = P. Soc. Photo-opt. Ins. Reliability, Testing and Characterization of Mems/moems = Proc Spie Reliability, Testing and Characterization of Mems/moems = Proc. Spie. Reliability, Testing and Characterization of Mems/moems = P Soc Photo-opt Ins Reliability, Testing and Characterization of Mems/moems = P. Soc. Photo-opt. Ins. Reliable and Autonomous Computational Science = Auton Syst Reliable and Autonomous Computational Science = Auton. Syst. Reliable Computing = Reliab. Comput. Reliable Computing = Reliab Comput Reliable Computing = Reliab. Comput. Reliable Implementation of Real Number Algorithms: Theory and Practice = Lect Notes Comput Sc Reliable Implementation of Real Number Algorithms: Theory and Practice = Lect. Notes. Comput. Sc. Reliable Knowledge and Social Epistemology = Grazer Philos Stud Reliable Knowledge and Social Epistemology = Grazer. Philos. Stud. Reliable Software Technologies Ada-europe 2000 = Lect Notes Comput Sc Reliable Software Technologies Ada-europe 2000 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe 2002 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe 2002 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe 2003 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe 2003 = Lect. Notes. Comput. Sc. Reliable Software Technologies- Ada-europe 2004 = Lect Notes Comput Sc Reliable Software Technologies- Ada-europe 2004 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada - Europe 2006, Proceedings = Lect Notes Comput Sc Reliable Software Technologies - Ada - Europe 2006, Proceedings = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada- Europe 2007, Proceedings = Lect Notes Comput Sc Reliable Software Technologies - Ada- Europe 2007, Proceedings = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe 2008 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe 2008 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe 2009 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe 2009 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe 2010 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe 2010 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe '97 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe '97 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe' 99 = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe' 99 = Lect. Notes. Comput. Sc. Reliable Software Technologies - Ada-europe = Lect Notes Comput Sc Reliable Software Technologies - Ada-europe = Lect. Notes. Comput. Sc. Reliable Software Technology Ada-europe 2005, Proceedings = Lect Notes Comput Sc Reliable Software Technology Ada-europe 2005, Proceedings = Lect. Notes. Comput. Sc. Reliable Systems On Unreliable Networked Platforms = Lect Notes Comput Sc Reliable Systems On Unreliable Networked Platforms = Lect. Notes. Comput. Sc. Religion and American Culture-a Journal of Interpretation = Relig Am Cult Religion and American Culture-a Journal of Interpretation = Relig. Am. Cult. Religion and Conflict in South and Southeast Asia: Disrupting Violence = Asian Secur Stud Religion and Conflict in South and Southeast Asia: Disrupting Violence = Asian. Secur. Stud. Religion and Hume's Legacy = Claremon Stud Philos Religion and Hume's Legacy = Claremon. Stud. Philos. Religion and Political Violence = Contemp Terror Stud Religion and Political Violence = Contemp. Terror. Stud. Religion and Politics / = A R Cecil L Religion and Politics / = A. R. Cecil. L. Religion and Politics in Europe, The Middle East and North Africa = Routl Ecpr Stud Eur Religion and Politics in Europe, The Middle East and North Africa = Routl. Ecpr. Stud. Eur. Religion and Politics in Southern Africa = Sem P Scand Religion and Politics in Southern Africa = Sem. P. Scand. Religion and Profit: Moravians in Early America = Early Am Stud Ser Religion and Profit: Moravians in Early America = Early Am. Stud. Ser. Religion and Reason = Relig Reason Religion and Reason = Relig. Reason Religion and Religious Practice in The Seleucid Kingdom = St Hellen C Religion and Religious Practice in The Seleucid Kingdom = St. Hellen. C. Religion and Secular Culture in Tibet = Brills Tibet Stu Lib Religion and Secular Culture in Tibet = Brills. Tibet Stu. Lib. Religion and Sexual Taboo = Prob Hist R Religion and Sexual Taboo = Prob. Hist. R. Religion and Society = Relig Soc Religion and Society = Relig. Soc. Religion and Spirituality = Relig Spiritual Religion and Spirituality = Relig. Spiritual. Religion and The American Presidency = Evol Am Presid Religion and The American Presidency = Evol. Am. Presid. Religion and The Bush Presidency = Evol Am Presid Religion and The Bush Presidency = Evol. Am. Presid. Religion and The Conceptual Boundary in Central and Eastern Europe: Encounters of Faiths = St Cent East Europe Religion and The Conceptual Boundary in Central and Eastern Europe: Encounters of Faiths = St. Cent. East. Europe. Religion Culture Critique = Relig Cult Crit Religion Culture Critique = Relig. Cult. Crit. Religion, Gender, and Culture in The Pre-modern World = Relig Cult Crit Religion, Gender, and Culture in The Pre-modern World = Relig. Cult. Crit. Religion = Grundthemen Philos Religion = Grundthemen. Philos. Religion, Homosexuality and Literature = Gay Men I R Religion, Homosexuality and Literature = Gay. Men. I. R. Religion in Contemporary China: Revitalization and Innovation = Routl Contemp China Religion in Contemporary China: Revitalization and Innovation = Routl. Contemp. China. Religion in Everyday Life = Kungl Vit H Religion in Everyday Life = Kungl. Vit. H. Religion in International Relations: The Return From Exile = Cult Relig Int Relat Religion in International Relations: The Return From Exile = Cult. Relig. Int. Relat. Religion in life (New York, N.Y.) = Relig Life Religion in Life = Relig Life Religion in Life = Relig. Life Religion in The Age of Transformation = Rel Age Tran Religion in The Age of Transformation = Rel. Age Tran. Religion in The Making = St Hist Rel Religion in The Making = St. Hist. Rel. Religion in World History: The Persistence of Imperial Communion = Themes World Hist Religion in World History: The Persistence of Imperial Communion = Themes. World Hist. Religion, Language, and Power = Routl Stud Relig Religion, Language, and Power = Routl. Stud. Relig. Religion & Literature = Relig Lit Religion & Literature = Relig. Lit. Religion Marriage and Family = Relig Marriage Fam Religion Marriage and Family = Relig. Marriage Fam. Religion Media and Culture = Relig Media Cult Religion Media and Culture = Relig. Media Cult. Religion, Medicine and The Human Embryo in Tibet = Routl Crit Stud Budd Religion, Medicine and The Human Embryo in Tibet = Routl. Crit. Stud. Budd. Religion, Politics and Thomas Hobbes = Arch Int Hist Idees Religion, Politics and Thomas Hobbes = Arch. Int. Hist. Idees. Religion, Politics, and Turkeys Eu Accession = Palgr Stud Gov Secur Religion, Politics, and Turkeys Eu Accession = Palgr. Stud. Gov. Secur. Religion = Religion Religionsgeschichtliche Versuche Und Vorarbeiten = Relig Vers Vorarbeit Religionsgeschichtliche Versuche Und Vorarbeiten = Relig. Vers. Vorarbeit. Religions in Dialogue = Relig Dial Religions in Dialogue = Relig. Dial. Religions in The Graeco-roman World = Relig Graeco Roman W Religions in The Graeco-roman World = Relig. Graeco. Roman. W. Religion, Social Practice, and Contested Hegemonies: Reconstructing The Public Sphere in Muslim Majority Societies = Cult Relig Int Relat Religion, Social Practice, and Contested Hegemonies: Reconstructing The Public Sphere in Muslim Majority Societies = Cult. Relig. Int. Relat. Religions of The Book: Christian Perceptions, 1400-1660 = Early Mod Lit Hist Religions of The Book: Christian Perceptions, 1400-1660 = Early. Mod. Lit. Hist. Religions of The World = Religions World Religionsphilosophie = Degruyter Lehrb Religionsphilosophie = Degruyter. Lehrb. Religion-state Encounters in Hindu Domains: From The Straits Settlements to Singapore = Ari-springer Asia Se Religion-state Encounters in Hindu Domains: From The Straits Settlements to Singapore = Ari-springer. Asia. Se. Religionsunterricht Als Praxis Der Freiheit = Prakt Theol Wiss Religionsunterricht Als Praxis Der Freiheit = Prakt. Theol. Wiss. Religion, Theology, and The Holocaust = Relig Theol Holo Religion, Theology, and The Holocaust = Relig. Theol. Holo. Religion Und Disziplin = Arb Kirchengesch Religion Und Disziplin = Arb. Kirchengesch. Religion Und Stadtekonkurrenz = Millenn Stud Kult Ge Religion Und Stadtekonkurrenz = Millenn. Stud. Kult. Ge. Religiosity, Cultural Capital, and Parochial Schooling: Psychological Empirical Research = Res Relig Educ Religiosity, Cultural Capital, and Parochial Schooling: Psychological Empirical Research = Res. Relig. Educ. Religious Confessions and The Sciences in The Sixteeth Century = Stud Europ Judaism Religious Confessions and The Sciences in The Sixteeth Century = Stud. Europ. Judaism. Religious Contributions to Peacemaking = Relig Spiritual Religious Contributions to Peacemaking = Relig. Spiritual. Religious Dimensions of Advertising = Relig Cult Crit Religious Dimensions of Advertising = Relig. Cult. Crit. Religious Diversity and Childrens Literature: Strategies and Resources = Int Soc Stud Forum S Religious Diversity and Childrens Literature: Strategies and Resources = Int. Soc. Stud. Forum. S. Religious education (Chicago, Ill.) = Relig Educ Religious Education = Relig Educ Religious Education = Relig. Educ. Religious Harmony: Problems, Practice, and Education = Relig Reason Religious Harmony: Problems, Practice, and Education = Relig. Reason. Religious humanism = Relig Humanism Religious Humanism = Relig Humanism Religious Humanism = Relig. Humanism Religious Influences On Health and Well-being in The Elderly = Societ Impact Aging Religious Influences On Health and Well-being in The Elderly = Societ. Impact. Aging. Religious Liberalism = Prob Hist R Religious Liberalism = Prob. Hist. R. Religious Nationalism in Modern Europe = Routl Stud Nat Ethn Religious Nationalism in Modern Europe = Routl. Stud. Nat. Ethn. Religious Studies = Relig Stud Religious Studies = Relig. Stud. Religious Studies = RelStud Religious studies review = Relig Stud Rev Religious Studies Review = Relig Stud Rev Religious Studies Review = Relig. Stud. Rev. Religious Texts and Material Contexts = Stud Judais Religious Texts and Material Contexts = Stud. Judais. Religious Transformations and Socio-political Change = Relig Soc Religious Transformations and Socio-political Change = Relig. Soc. Remaining Issues in The Decommissioning of Nuclear Powered Vessels = Nato Sci S Ss Iv Ear Remaining Issues in The Decommissioning of Nuclear Powered Vessels = Nato. Sci. S. Ss. Iv. Ear. Remaking Chinese Urban Form: Modernity, Scarcity and Space, 1949-2005 = Plan Hist Environ Se Remaking Chinese Urban Form: Modernity, Scarcity and Space, 1949-2005 = Plan. Hist. Environ. Se. Remaking Media = Commun Soc-ser Remaking Media = Commun. Soc-ser. Remaking Muslim Politics: Pluralism, Contestation, Democratization = Princ Stud Muslim Po Remaking Muslim Politics: Pluralism, Contestation, Democratization = Princ. Stud. Muslim Po. Remaking Regional Economies: Power, Labor, and Firm Strategies in The Knowledge Economy = Routl Stud Econ Geog Remaking Regional Economies: Power, Labor, and Firm Strategies in The Knowledge Economy = Routl. Stud. Econ. Geog. Remanent Life Prediction = Imeche Sem Remanent Life Prediction = Imeche. Sem. Remapping Citizenship and The Nation in African-american Literature = Routl Transnat Persp Remapping Citizenship and The Nation in African-american Literature = Routl. Transnat. Persp. Remapping Ethiopia: Socialism & After = E Afr Stud Ser Remapping Ethiopia: Socialism & After = E. Afr. Stud. Ser. Remapping Gender in The New Global Order = Routl Front Polit Ec Remapping Gender in The New Global Order = Routl. Front. Polit. Ec. Remapping The Boundaries = Heuresis: Sez Sci L Remapping The Boundaries = Heuresis:. Sez. Sci. L. Remapping The Mediterranean World in Early Modern English Writings = Early Mod Cult Stud Remapping The Mediterranean World in Early Modern English Writings = Early Mod. Cult. Stud. Remedes-Actualites = Rem Actual Remedial and Special Education = Rem Spec Educ Remedial and Special Education = Rem. Spec. Educ. Remembering Cosmopolitan Egypt = Routl Stud Mid E Lit Remembering Cosmopolitan Egypt = Routl. Stud. Mid. E. Lit. Remembering Elites = Sociol Rev Monogr Remembering Elites = Sociol. Rev. Monogr. Remembering Hedley = Canber Pap Strategy Remembering Hedley = Canber. Pap. Strategy. Remembering: Oral History Performance = Palgr Stud Oral Hist Remembering: Oral History Performance = Palgr. Stud. Oral Hist. Remembering Self = Emory S Cog Remembering Self = Emory. S. Cog. Remembering The Early Modern Voyage: English Narratives in The Age of European Expansion = Early Mod Cult Stud Remembering The Early Modern Voyage: English Narratives in The Age of European Expansion = Early Mod. Cult. Stud. Remembering The Occupation in French Film: National Identity in Postwar Europe = Stud Eur Cult Hist Remembering The Occupation in French Film: National Identity in Postwar Europe = Stud. Eur. Cult. Hist. Remembrance and Recollection = Stud Shoah Remembrance and Recollection = Stud. Shoah. Remolding and Resistance Among Writers of The Chinese Prison Camp: Disciplined and Published = Asias Transform Remolding and Resistance Among Writers of The Chinese Prison Camp: Disciplined and Published = Asias. Transform. Remote'09: Proceedings of The 5th Wseas International Conference On Remote Sensing = Math Comput Sci Eng Remote'09: Proceedings of The 5th Wseas International Conference On Remote Sensing = Math. Comput. Sci. Eng. Remote Sensing and Applications: Earth, Atmosphere and Oceans = Adv Space Res Remote Sensing and Applications: Earth, Atmosphere and Oceans = Adv. Space. Res. Remote Sensing and Applications: Earth, Atmosphere and Oceans = Adv Space Res-series Remote Sensing and Applications: Earth, Atmosphere and Oceans = Adv. Space. Res-series. Remote Sensing and Climate Modeling: Synergies and Limitations = Adv Glob Change Res Remote Sensing and Climate Modeling: Synergies and Limitations = Adv. Glob. Change. Res. Remote Sensing and Digital Image Processing = Remote Sens Digit Im Remote Sensing and Digital Image Processing = Remote Sens. Digit. Im. Remote Sensing and Geographical Information Systems for Resource Management in Developing Countries = Euro Cours Rem Sens Remote Sensing and Geographical Information Systems for Resource Management in Developing Countries = Euro. Cours. Rem. Sens. Remote Sensing and Geographic Information Systems for Design and Operation of Water Resources Systems = Iahs-aish P Remote Sensing and Geographic Information Systems for Design and Operation of Water Resources Systems = Iahs-aish. P. Remote Sensing and Gis Data Processing and Applications; and Innovative Multispectral Technology and Applications, Pts 1 and 2 = Proc Spie Remote Sensing and Gis Data Processing and Applications; and Innovative Multispectral Technology and Applications, Pts 1 and 2 = Proc. Spie. Remote Sensing and Gis Data Processing and Applications; and Innovative Multispectral Technology and Applications, Pts 1 and 2 = P Soc Photo-opt Ins Remote Sensing and Gis Data Processing and Applications; and Innovative Multispectral Technology and Applications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Remote Sensing and Hydrology 2000 = Iahs-aish P Remote Sensing and Hydrology 2000 = Iahs-aish. P. Remote Sensing and Modeling of Ecosystems for Sustainability Iii = P Soc Photo-opt Ins Remote Sensing and Modeling of Ecosystems for Sustainability Iii = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of Ecosystems for Sustainability Iv = Proc Spie Remote Sensing and Modeling of Ecosystems for Sustainability Iv = Proc. Spie. Remote Sensing and Modeling of Ecosystems for Sustainability Iv = P Soc Photo-opt Ins Remote Sensing and Modeling of Ecosystems for Sustainability Iv = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of Ecosystems for Sustainability = Proc Spie Remote Sensing and Modeling of Ecosystems for Sustainability = Proc. Spie. Remote Sensing and Modeling of Ecosystems for Sustainability = P Soc Photo-opt Ins Remote Sensing and Modeling of Ecosystems for Sustainability = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of Ecosystems for Sustainability Vii = P Soc Photo-opt Ins Remote Sensing and Modeling of Ecosystems for Sustainability Vii = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of Ecosystems for Sustainability V = Proc Spie Remote Sensing and Modeling of Ecosystems for Sustainability V = Proc. Spie. Remote Sensing and Modeling of Ecosystems for Sustainability V = P Soc Photo-opt Ins Remote Sensing and Modeling of Ecosystems for Sustainability V = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of The Atmosphere, Oceans, and Interactions Iii = P Soc Photo-opt Ins Remote Sensing and Modeling of The Atmosphere, Oceans, and Interactions Iii = P. Soc. Photo-opt. Ins. Remote Sensing and Modeling of The Atmosphere, Oceans, and Interactions = P Soc Photo-opt Ins Remote Sensing and Modeling of The Atmosphere, Oceans, and Interactions = P. Soc. Photo-opt. Ins. Remote Sensing and Reconstruction for Three-dimensional Objects and Scenes = P Soc Photo-opt Ins Remote Sensing and Reconstruction for Three-dimensional Objects and Scenes = P. Soc. Photo-opt. Ins. Remote Sensing and Space Technology for Multidisciplinary Research and Applications = P Soc Photo-opt Ins Remote Sensing and Space Technology for Multidisciplinary Research and Applications = P. Soc. Photo-opt. Ins. Remote Sensing and Spectral Geology = Rev Econ Geol Remote Sensing and Spectral Geology = Rev. Econ. Geol. Remote Sensing and The Earths Environment = Esa Sp Publ Remote Sensing and The Earths Environment = Esa. Sp. Publ. Remote Sensing Applications for Aviation Weather Hazard Detection and Decision Support = P Soc Photo-opt Ins Remote Sensing Applications for Aviation Weather Hazard Detection and Decision Support = P. Soc. Photo-opt. Ins. Remote Sensing Applications of The Global Positioning System = P Soc Photo-opt Ins Remote Sensing Applications of The Global Positioning System = P. Soc. Photo-opt. Ins. Remote Sensing: Earth, Ocean and Atmosphere = Adv Space Res Remote Sensing: Earth, Ocean and Atmosphere = Adv. Space. Res. Remote Sensing: Earth, Ocean and Atmosphere = Adv Space Res-series Remote Sensing: Earth, Ocean and Atmosphere = Adv. Space. Res-series. Remote Sensing for Agriculture, Ecosystems, and Hydrology Iii = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Iii = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Ii = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Ii = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Iv = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Iv = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Ix = Proc Spie Remote Sensing for Agriculture, Ecosystems, and Hydrology Ix = Proc. Spie. Remote Sensing for Agriculture, Ecosystems, and Hydrology Ix = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Ix = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology = Proc Spie Remote Sensing for Agriculture, Ecosystems, and Hydrology = Proc. Spie. Remote Sensing for Agriculture, Ecosystems, and Hydrology = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Viii = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Viii = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Vi = Proc Spie Remote Sensing for Agriculture, Ecosystems, and Hydrology Vi = Proc. Spie. Remote Sensing for Agriculture, Ecosystems, and Hydrology Vi = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Vi = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology V = Proc Spie Remote Sensing for Agriculture, Ecosystems, and Hydrology V = Proc. Spie. Remote Sensing for Agriculture, Ecosystems, and Hydrology V = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology V = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Ecosystems, and Hydrology Xii = Proc Spie Remote Sensing for Agriculture, Ecosystems, and Hydrology Xii = Proc. Spie. Remote Sensing for Agriculture, Ecosystems, and Hydrology Xii = P Soc Photo-opt Ins Remote Sensing for Agriculture, Ecosystems, and Hydrology Xii = P. Soc. Photo-opt. Ins. Remote Sensing for Agriculture, Forestry, and Natural Resources = P Soc Photo-opt Ins Remote Sensing for Agriculture, Forestry, and Natural Resources = P. Soc. Photo-opt. Ins. Remote Sensing for Drought Impact Monitoring = Univ Fra S Remote Sensing for Drought Impact Monitoring = Univ. Fra. S. Remote Sensing for Earth Science, Ocean, and Sea Ice Applications = Proc Spie Remote Sensing for Earth Science, Ocean, and Sea Ice Applications = Proc. Spie. Remote Sensing for Earth Science, Ocean, and Sea Ice Applications = P Soc Photo-opt Ins Remote Sensing for Earth Science, Ocean, and Sea Ice Applications = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Data in Albania : A Strategy for Integrated Management = Nato Asi 2 Remote Sensing for Environmental Data in Albania : A Strategy for Integrated Management = Nato. Asi. 2. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iii = Proc Spie Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iii = Proc. Spie. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iii = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iii = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Ii = Proc Spie Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Ii = Proc. Spie. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Ii = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Ii = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iv = Proc Spie Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iv = Proc. Spie. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iv = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Iv = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications, and Geology = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Vii = Proc Spie Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Vii = Proc. Spie. Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Vii = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications, and Geology Vii = P. Soc. Photo-opt. Ins. Remote Sensing for Environmental Monitoring, Gis Applications and Geology Vi = Proc Spie Remote Sensing for Environmental Monitoring, Gis Applications and Geology Vi = Proc. Spie. Remote Sensing for Environmental Monitoring, Gis Applications and Geology Vi = P Soc Photo-opt Ins Remote Sensing for Environmental Monitoring, Gis Applications and Geology Vi = P. Soc. Photo-opt. Ins. Remote Sensing for Geography, Geology, Land Planning, and Cultural Heritage = P Soc Photo-opt Ins Remote Sensing for Geography, Geology, Land Planning, and Cultural Heritage = P. Soc. Photo-opt. Ins. Remote Sensing for Land Surface Characterisation = Adv Space Res Remote Sensing for Land Surface Characterisation = Adv. Space. Res. Remote Sensing for Monitoring The Changing Environment of Europe = P Earsel Sy Remote Sensing for Monitoring The Changing Environment of Europe = P. Earsel. Sy. Remote Sensing for Oceanography, Hydrology and Agriculture = Adv Space Res Remote Sensing for Oceanography, Hydrology and Agriculture = Adv. Space. Res. Remote Sensing in Atmospheric Pollution Monitoring and Control = Proc Spie Remote Sensing in Atmospheric Pollution Monitoring and Control = Proc. Spie. Remote Sensing in Atmospheric Pollution Monitoring and Control = P Soc Photo-opt Ins Remote Sensing in Atmospheric Pollution Monitoring and Control = P. Soc. Photo-opt. Ins. Remote Sensing: Inversion Problems and Natural Hazards = Adv Space Res Remote Sensing: Inversion Problems and Natural Hazards = Adv. Space. Res. Remote Sensing: Inversion Problems and Natural Hazards = Adv Space Res-series Remote Sensing: Inversion Problems and Natural Hazards = Adv. Space. Res-series. Remote Sensing Letters = Remote Sens Lett Remote Sensing Letters = Remote Sens. Lett. Remote Sensing of Active Volcanism = Geoph Monog Series Remote Sensing of Active Volcanism = Geoph. Monog. Series. Remote Sensing of Active Volcanism = Geophys Monogr Ser Remote Sensing of Active Volcanism = Geophys. Monogr. Ser. Remote Sensing of Aerosol and Chemical Gases, Model Simulation / Assimilation, and Applications to Air Quality = P Soc Photo-opt Ins Remote Sensing of Aerosol and Chemical Gases, Model Simulation / Assimilation, and Applications to Air Quality = P. Soc. Photo-opt. Ins. Remote Sensing of Atmosphere and Ocean From Space: Models, Instruments and Techniques = Adv Glob Change Res Remote Sensing of Atmosphere and Ocean From Space: Models, Instruments and Techniques = Adv. Glob. Change. Res. Remote Sensing of Atmosphere and Oceans = Adv Space Res-series Remote Sensing of Atmosphere and Oceans = Adv. Space. Res-series. Remote Sensing of Atmosphere Chemistry = P Soc Photo-opt Ins Remote Sensing of Atmosphere Chemistry = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Ix = Proc Spie Remote Sensing of Clouds and The Atmosphere Ix = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Ix = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Ix = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Viii = Proc Spie Remote Sensing of Clouds and The Atmosphere Viii = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Viii = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Viii = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Vii = Proc Spie Remote Sensing of Clouds and The Atmosphere Vii = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Vii = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Vii = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Vi = Proc Spie Remote Sensing of Clouds and The Atmosphere Vi = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Vi = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Vi = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere V = Proc Spie Remote Sensing of Clouds and The Atmosphere V = Proc. Spie. Remote Sensing of Clouds and The Atmosphere V = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere V = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Xii = Proc Spie Remote Sensing of Clouds and The Atmosphere Xii = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Xii = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Xii = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Xi = Proc Spie Remote Sensing of Clouds and The Atmosphere Xi = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Xi = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Xi = P. Soc. Photo-opt. Ins. Remote Sensing of Clouds and The Atmosphere Xv = Proc Spie Remote Sensing of Clouds and The Atmosphere Xv = Proc. Spie. Remote Sensing of Clouds and The Atmosphere Xv = P Soc Photo-opt Ins Remote Sensing of Clouds and The Atmosphere Xv = P. Soc. Photo-opt. Ins. Remote Sensing of Earths Surface and Atmosphere = Adv Space Res Remote Sensing of Earths Surface and Atmosphere = Adv. Space. Res. Remote Sensing of Environment = Remote Sens Environ Remote Sensing of Environment = Remote Sens. Environ. Remote Sensing of Fire: Science and Application = Proc Spie Remote Sensing of Fire: Science and Application = Proc. Spie. Remote Sensing of Fire: Science and Application = P Soc Photo-opt Ins Remote Sensing of Fire: Science and Application = P. Soc. Photo-opt. Ins. Remote Sensing of Impervious Surfaces = T&f Ser Remote Sens Remote Sensing of Impervious Surfaces = T&f. Ser. Remote Sens. Remote Sensing of Oceanographic Processes and Land Surfaces; Space Science Education and Outreach = Adv Space Res-series Remote Sensing of Oceanographic Processes and Land Surfaces; Space Science Education and Outreach = Adv. Space Res-series. Remote Sensing of Physical Phenomena in The Oceans = Oceanis S D Remote Sensing of Physical Phenomena in The Oceans = Oceanis. S. D. Remote Sensing of Sea Ice in The Northern Sea Route: Studies and Applications = Springer-prax Books Remote Sensing of Sea Ice in The Northern Sea Route: Studies and Applications = Springer-prax. Books. Remote Sensing of Solar Influence On Antarctic Terrestrial Climate From A Gps Perspective = Environ Sci Eng Tech Remote Sensing of Solar Influence On Antarctic Terrestrial Climate From A Gps Perspective = Environ. Sci. Eng. Tech. Remote Sensing of The Atmosphere and Clouds Iii = Proc Spie Remote Sensing of The Atmosphere and Clouds Iii = Proc. Spie. Remote Sensing of The Atmosphere and Clouds Iii = P Soc Photo-opt Ins Remote Sensing of The Atmosphere and Clouds Iii = P. Soc. Photo-opt. Ins. Remote Sensing of The Atmosphere and Clouds = P Soc Photo-opt Ins Remote Sensing of The Atmosphere and Clouds = P. Soc. Photo-opt. Ins. Remote Sensing of The Atmosphere for Envrionmental Security = Nato Sci Peace Secur Remote Sensing of The Atmosphere for Envrionmental Security = Nato. Sci. Peace. Secur. Remote Sensing of The Biosphere = P Soc Photo-opt Ins Remote Sensing of The Biosphere = P. Soc. Photo-opt. Ins. Remote Sensing of The Coastal Ocean, Land, and Atmosphere Environment = P Soc Photo-opt Ins Remote Sensing of The Coastal Ocean, Land, and Atmosphere Environment = P. Soc. Photo-opt. Ins. Remote Sensing of The Earths Surface and Atmosphere = Adv Space Res-series Remote Sensing of The Earths Surface and Atmosphere = Adv. Space. Res-series. Remote Sensing of The Environment: 15th National Symposium On Remote Sensing of China = P Soc Photo-opt Ins Remote Sensing of The Environment: 15th National Symposium On Remote Sensing of China = P. Soc. Photo-opt. Ins. Remote Sensing of the Environment = Remote Sens. Environ. Remote Sensing of The Environment: The 17th China Conference On Remote Sensing = Proc Spie Remote Sensing of The Environment: The 17th China Conference On Remote Sensing = Proc. Spie. Remote Sensing of The Marine Environment = Proc Spie Remote Sensing of The Marine Environment = Proc. Spie. Remote Sensing of The Marine Environment = P Soc Photo-opt Ins Remote Sensing of The Marine Environment = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean and Sea Ice 2000 = P Soc Photo-opt Ins Remote Sensing of The Ocean and Sea Ice 2000 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean and Sea Ice 2001 = Proc Spie Remote Sensing of The Ocean and Sea Ice 2001 = Proc. Spie. Remote Sensing of The Ocean and Sea Ice 2001 = P Soc Photo-opt Ins Remote Sensing of The Ocean and Sea Ice 2001 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean and Sea Ice 2002 = Proc Spie Remote Sensing of The Ocean and Sea Ice 2002 = Proc. Spie. Remote Sensing of The Ocean and Sea Ice 2002 = P Soc Photo-opt Ins Remote Sensing of The Ocean and Sea Ice 2002 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean and Sea Ice 2003 = Proc Spie Remote Sensing of The Ocean and Sea Ice 2003 = Proc. Spie. Remote Sensing of The Ocean and Sea Ice 2003 = P Soc Photo-opt Ins Remote Sensing of The Ocean and Sea Ice 2003 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean and Sea Ice 2004 = P Soc Photo-opt Ins Remote Sensing of The Ocean and Sea Ice 2004 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2006 = Proc Spie Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2006 = Proc. Spie. Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2006 = P Soc Photo-opt Ins Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2006 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2007 = P Soc Photo-opt Ins Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2007 = P. Soc. Photo-opt. Ins. Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2010 = P Soc Photo-opt Ins Remote Sensing of The Ocean, Sea Ice, and Large Water Regions 2010 = P. Soc. Photo-opt. Ins. Remote Sensing of Trace Constituents in The Lower Stratosphere, Troposphere and The Earth's Surface: Global Observations, Air Pollution and The Atmospheric Correction = Adv Space Res Remote Sensing of Trace Constituents in The Lower Stratosphere, Troposphere and The Earth's Surface: Global Observations, Air Pollution and The Atmospheric Correction = Adv. Space. Res. Remote Sensing of Trace Constituents in The Lower Stratosphere, Troposphere and The Earth's Surface: Global Observations, Air Pollution and The Atmospheric Correction = Adv Space Res-series Remote Sensing of Trace Constituents in The Lower Stratosphere, Troposphere and The Earth's Surface: Global Observations, Air Pollution and The Atmospheric Correction = Adv. Space. Res-series. Remote Sensing of Tropospheric Composition From Space = Phys Earth Space Env Remote Sensing of Tropospheric Composition From Space = Phys. Earth. Space Env. Remote Sensing of Urban and Suburban Areas = Remote Sens Digit Im Remote Sensing of Urban and Suburban Areas = Remote Sens. Digit. Im. Remote Sensing of Vegetation and Sea = P Soc Photo-opt Ins Remote Sensing of Vegetation and Sea = P. Soc. Photo-opt. Ins. Remote Sensing of Vegetation and Water, and Standardization of Remote Sensing Methods = P Soc Photo-opt Ins Remote Sensing of Vegetation and Water, and Standardization of Remote Sensing Methods = P. Soc. Photo-opt. Ins. Remote Sensing Series = Remote Sens. Ser. Remote Sensing System Engineering Iii = P Soc Photo-opt Ins Remote Sensing System Engineering Iii = P. Soc. Photo-opt. Ins. Remote Sensing System Engineering = Proc Spie Remote Sensing System Engineering = Proc. Spie. Remote Sensing System Engineering = P Soc Photo-opt Ins Remote Sensing System Engineering = P. Soc. Photo-opt. Ins. Remote Sensing With Imaging Radar = Signals Commun Techn Remote Sensing With Imaging Radar = Signals. Commun. Techn. Rem-revista Escola De Minas = Rem-rev Esc Minas Rem-revista Escola De Minas = Rem-rev. Esc. Minas Renaissance and modern studies = Renaiss Mod Stud Renaissance and Reformation = Renaissance Reform Renaissance and Reformation = Renaissance Reform. Renaissance and Reformation = Renaiss Reform Renaissance Drama = Renaissance Drama Renaissance Monographs = Renais Mon Renaissance Monographs = Renais. Mon. Renaissance Monographs = Renaiss Monogr Renaissance Monographs = Renaiss. Monogr. Renaissance of Confucianism in Contemporary China = Philos Stud Contemp Renaissance of Confucianism in Contemporary China = Philos. Stud. Contemp. Renaissance of Monoamine Oxidase Inhibitors : The New Selective and Reversible Generation = Roy Soc Med Int Cong Renaissance of Monoamine Oxidase Inhibitors : The New Selective and Reversible Generation = Roy. Soc. Med. Int. Cong. Renaissance Quarterly = Renaissance Quart Renaissance Quarterly = Renaissance Quart. Renaissance quarterly = Renaiss Q Renaissance Quarterly = RenQ Renaissance Scepticisms = Arch Int Hist Idees Renaissance Scepticisms = Arch. Int. Hist. Idees. Renaissance Theory = Art Semin Renaissance Theory = Art. Semin. Renal Ammoniagenesis and Interorgan Cooperation in Acid-base Homeostasis = Contrib Nephrol Renal Ammoniagenesis and Interorgan Cooperation in Acid-base Homeostasis = Contrib. Nephrol. Renal Cancer = Emerg Cancer Ther Renal Cancer = Emerg. Cancer Ther. Renal Eicosanoids = Adv Exp Med Biol Renal Eicosanoids = Adv. Exp. Med. Biol. Renal Failure and Replacement Therapies = Compet-base Crit Car Renal Failure and Replacement Therapies = Compet-base. Crit. Car. Renal Failure = Renal Failure Renal failure = Ren Fail Renal Failure=Ren Fail;; Renal Failure = Ren. Fail. Renal Fibrosis = Contrib Nephrol Renal Fibrosis = Contrib. Nephrol. Renal Involvement in Systemic Vasculitis = Contrib Nephrol Renal Involvement in Systemic Vasculitis = Contrib. Nephrol. Renal Physiology and Biochemistry = Renal Physiol Bioch Renal Physiology and Biochemistry = Renal Physiol. Bioch. Renal physiology and biochemistry = Ren Physiol Biochem Renal Physiology and Biochemistry = Ren. Physiol. Biochem. Renal Physiology = Renal Physiol. Renal physiology = Ren Physiol Renal Stone Disease 2 = Aip Conf Proc Renal Stone Disease 2 = Aip. Conf. Proc. Renal Stone Disease = Aip Conf Proc Renal Stone Disease = Aip. Conf. Proc. Renascence-essays On Values in Literature = Renascence Renascence-essays On Values in Literature = Renascence. Rencontres Du Vietnam = Rencon Viet Rencontres Du Vietnam = Rencon. Viet. Rendering Techniques 2000 = Spring Comp Sci Rendering Techniques 2000 = Spring. Comp. Sci. Rendering Techniques 2001 = Spring Eurograp Rendering Techniques 2001 = Spring. Eurograp. Rendering Techniques '95 - Proceedings of The Eurographics Workshop = Spring Comp Sci Rendering Techniques '95 - Proceedings of The Eurographics Workshop = Spring. Comp. Sci. Rendering Techniques '99 = Spring Eurograp Rendering Techniques '99 = Spring. Eurograp. Rendering, Visualization and Rasterization Hardware = Foc Comp Graph Rendering, Visualization and Rasterization Hardware = Foc. Comp. Graph. Rendezvous = Rendezvous (Buffalo) Rendiconti / Accademia Nazionale Del Xl = Rend Accad Naz XL Rendiconti. Atti della Pontificia accademia romana di archeologia = RendPontAc Rendiconti. Classe di lettere e scienze morali e storiche, Istituto lombardo, Accademia di scienze e lettere = RendIstLomb Rendiconti del Circolo Matematico di Palermo = Rend. Circ. Mat. Palermo (2) Rendiconti del Circolo Matematico di Palermo = Rend. Circ. Mat. Palermo (2) Suppl. Rendiconti della Accademia di archeologia, lettere e belle arti, Napoli = RendNap Rendiconti della Accademia Nazionale delle Scienze detta dei XL = Rend. Accad. Naz. Sci. XL Mem. Sci. Fis. Natur. (5) Rendiconti dell’Accademia delle Scienze dell’Istituto di Bologna, Classe di Scienze Morali = RAIB Rendiconti dell'Accademia di Archeologia, Lettere e Belle Arti di Napoli = RAAN Rendiconti dell’Accademia nazionale dei Lincei, Classe di scienze morali, storiche e filologiche = RendLinc Rendiconti della Pontificia Accademia di Archeologia = RPAA Rendiconti dell'Istituto di Matematica dell'Università di Trieste = Rend. Istit. Mat. Univ. Trieste Rendiconti dell'Istituto Lombardo, Classe di Lettere, Scienze morali e storiche = RIL Rendiconti del Seminario della Facoltà di Scienze dell'Università di Cagliari = Rend. Sem. Fac. Sci. Univ. Cagliari Rendiconti Del Seminario Matematico Della Universita Di Padova = Rend Semin Mat U Pad Rendiconti Del Seminario Matematico Della Universita Di Padova = Rend. Semin. Mat. U. Pad. Rendiconti Del Seminario Matematico Della Universita Di Padova = Rend Semin Ma Univ P Rendiconti Del Seminario Matematico Della Universita Di Padova = Rend. Semin. Ma. Univ. P. Rendiconti del Seminario Matematico della Università di Padova = Rend. Sem. Mat. Univ. Padova Rendiconti del Seminario Matematico di Messina = Rend. Sem. Mat. Messina Ser. II Rendiconti del Seminario Matematico e Fisico di Milano = Rend. Sem. Mat. Fis. Milano Rendiconti Di Gastro-enterologia = Rend Gastroenterol Rendiconti Di Gastro-enterologia = Rend. Gastroenterol. Rendiconti di Matematica e delle sue Applicazioni = Rend. Mat. Appl. (7) Rendiconti - Istituto superiore di sanita = Rend Ist Sup Sanit Rendiconti Lincei-matematica E Applicazioni = Rend Lincei-mat Appl Rendiconti Lincei-matematica E Applicazioni = Rend. Lincei-mat. Appl. Rendiconti Lincei-scienze Fisiche E Naturali = Rend Lincei-sci Fis Rendiconti Lincei-scienze Fisiche E Naturali = Rend. Lincei-sci. Fis. Rendiconti Lincei. Scienze fisiche e naturali = Rend Lincei Sci Fis Nat Rendiconti Romani Di Gastro-enterologia = Rend Romani Gast-ent Rendiconti Romani Di Gastro-enterologia = Rend. Romani Gast-ent. Rending and Renewing The Social Order = S Soc Polit Rending and Renewing The Social Order = S. Soc. Polit. Renditions-a Chinese-english Translation Magazine = Renditions Renditions-a Chinese-english Translation Magazine = Renditions. Renegotiating Boundaries: Local Politics in Post-suharto Indonesia = Verh Konik Renegotiating Boundaries: Local Politics in Post-suharto Indonesia = Verh. Konik. Renewable Agriculture and Food Systems = Renewable Agric. Food Syst. Renewable Agriculture and Food Systems = Renew Agr Food Syst Renewable Agriculture and Food Systems = Renew. Agr. Food Syst. Renewable and Sustainable Energy Reviews = Renewable Sustainable Energy Rev. Renewable Bioenergy - Technologies, Risks and Rewards = Imeche Conf Trans Renewable Bioenergy - Technologies, Risks and Rewards = Imeche. Conf. Trans. Renewable Energies for Central Asia Countries: Economic, Environmental and Social Impacts = Nato Sci S Ss Iv Ear Renewable Energies for Central Asia Countries: Economic, Environmental and Social Impacts = Nato. Sci. S. Ss. Iv. Ear. Renewable Energy for Sustainable Development in The Asia Pacific Region = Aip Conf Proc Renewable Energy for Sustainable Development in The Asia Pacific Region = Aip. Conf. Proc. Renewable Energy From Forest Resources in The United States = Routl Explor Environ Renewable Energy From Forest Resources in The United States = Routl. Explor. Environ. Renewable Energy in The Middle East: Enhancing Security Through Regional Cooperation = Nato Sci Peace Secur Renewable Energy in The Middle East: Enhancing Security Through Regional Cooperation = Nato. Sci. Peace. Secur. Renewable Energy = Renewable Energy Renewable Energy = Renew Energ Renewable Energy = Renew. Energ. Renewable Energy Research Development and Policies = Renew Energy Res Dev Renewable Energy Research Development and Policies = Renew. Energy Res. Dev. Renewable Energy Storage = Imeche Sem Renewable Energy Storage = Imeche. Sem. Renewable & Sustainable Energy Reviews = Renewable Sustainable Energy Rev. Renewable & Sustainable Energy Reviews = Renew Sust Energ Rev Renewable & Sustainable Energy Reviews = Renew. Sust. Energ. Rev. Renewal of Nuclear Power in Finland = Energ Clim Environ Renewal of Nuclear Power in Finland = Energ. Clim. Environ. Renewal of The Spanish Novel Since 1975 = Coll Hesper Renewal of The Spanish Novel Since 1975 = Coll. Hesper. Renewing Philosophy = Renew Philos Renewing Philosophy = Renew. Philos. Rengong Jingti Xuebao = Rengong Jingti Xuebao Renin Angiotensin System and Cardiovascular Disease = Contemp Cardiol Renin Angiotensin System and Cardiovascular Disease = Contemp. Cardiol. Renin-angiotensin System and Progression of Renal Diseases = Contrib Nephrol Renin-angiotensin System and Progression of Renal Diseases = Contrib. Nephrol. Renin-angiotensin System: Current Research Progress in The Pancreas: The Ras in The Pancreas = Adv Exp Med Biol Renin-angiotensin System: Current Research Progress in The Pancreas: The Ras in The Pancreas = Adv. Exp. Med. Biol. Renin-angiotensin = Wenn Gr Int Renin-angiotensin = Wenn. Gr. Int. Renkaiden Puutteet Kuolonkolareissa = Vtt Res Notes Renkaiden Puutteet Kuolonkolareissa = Vtt. Res. Notes. Ren kou xue kan (Changchun shi, China) = Ren Kou Xue Kan Ren kou xue kan / Kuo Li Tai-Wan Ta Hsueh = Ren Kou Xue Kan Renormalization and 3-manifolds Which Fiber Over The Circle = Ann Math Stud Renormalization and 3-manifolds Which Fiber Over The Circle = Ann. Math. Stud. Renormalization Group Theory: Impact On Experimental Magnetism = Springer Ser Mater S Renormalization Group Theory: Impact On Experimental Magnetism = Springer. Ser. Mater. S. Reorganization of Buildings = Vdi Bericht Reorganization of Buildings = Vdi. Bericht. Reorganizing Health Care Delivery Systems: Problems of Managed = Res Sociol Health Ca Reorganizing Health Care Delivery Systems: Problems of Managed = Res. Sociol. Health Ca. Reoviruses: Entry, Assembly and Morphogenesis = Curr Top Microbiol Reoviruses: Entry, Assembly and Morphogenesis = Curr. Top. Microbiol. Reoviruses I = Curr Top Microbiol Reoviruses I = Curr. Top. Microbiol. Reoviruses Ii = Curr Top Microbiol Reoviruses Ii = Curr. Top. Microbiol. Repair and Redesign of Physiological Systems = Des Nat Repair and Redesign of Physiological Systems = Des. Nat. Repair of The Soul: Metaphors of Transformation in Jewish Mysticism and Psychoanalysis = Relat Perspect Book Repair of The Soul: Metaphors of Transformation in Jewish Mysticism and Psychoanalysis = Relat. Perspect. Book. Repair, Retrofit, and Inspection of Building Exterior Wall Systems = Am Soc Test Mater Repair, Retrofit, and Inspection of Building Exterior Wall Systems = Am. Soc. Test. Mater. Reparations to Africa = Pa Stud Hum Rights Reparations to Africa = Pa. Stud. Hum. Rights. Reparative Medicine: Growing Tissues and Organs = Ann Ny Acad Sci Reparative Medicine: Growing Tissues and Organs = Ann. Ny. Acad. Sci. Répertoire d’épigraphie sémitique (Paris 1900--1950) = RES Replacement Models With Minimal Repair = Springer Ser Reliab Replacement Models With Minimal Repair = Springer. Ser. Reliab. Replacement, Reduction and Refinement of Animal Experiments in The Development and Control of Biological Products = Dev Biol Stand Replacement, Reduction and Refinement of Animal Experiments in The Development and Control of Biological Products = Dev. Biol. Stand. Replicating Vaccines: A New Generation = Birkhauser Adv Infec Replicating Vaccines: A New Generation = Birkhauser. Adv. Infec. Replication: Theory and Practice = Lect Notes Comput Sc Replication: Theory and Practice = Lect. Notes. Comput. Sc. Re-politicising The Kyoto School As Philosophy = Routl Leiden Ser Mod Re-politicising The Kyoto School As Philosophy = Routl. Leiden. Ser. Mod. Report and Proceedings of The Meeting On Fisheries Exploitation Within The Exclusive Economic Zones of English-speaking Caribbean Countries = Fao Fish Report and Proceedings of The Meeting On Fisheries Exploitation Within The Exclusive Economic Zones of English-speaking Caribbean Countries = Fao. Fish. Report and transactions - The Devonshire Association for the Advancement of Science, Literature and Art. Devonshire Association for the Advancement of Science, Literature and Art = Devon Assoc Adv Sci Report. Canada. Defence Research Chemical Laboratories = Rep Can Def Res Chem Lab Report. Canada. Defence Research Kingston Laboratory = Rep Can Def Res Kings Lab [Report]. Civil Aeromedical Research Institute (U.S.) = Rep Civ Aeromed Res Inst US Report - Commission on Accreditation of Rehabilitation Facilities = Rep Comm Accredit Rehabil Facil Report, Commission on Accreditation of Rehabilitation Facilities = Rep. Comm. Accredit. Rehabil. Facil. Reporter, Delaware Nurses Association = Rep. Del. Nurses Assoc. Reporter on human reproduction and the law = Report Hum Reprod Law Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications Ii = Proc Spie Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications Ii = Proc. Spie. Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications Ii = P Soc Photo-opt Ins Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications Ii = P. Soc. Photo-opt. Ins. Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications = Proc Spie Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications = Proc. Spie. Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications = P Soc Photo-opt Ins Reporters, Markers, Dyes, Nanoparticles, and Molecular Probes for Biomedical Applications = P. Soc. Photo-opt. Ins. Reporter (Wilmington, Del.) = Rep Del Nurses Assoc Report from the Institute for Philosophy & Public Policy = Rep Inst Philos Public Policy Report (Group for the Advancement of Psychiatry : 1984) = Rep Group Adv Psychiatry Report (Group for the Advancement of Psychiatry) = Rep Group Adv Psychiatry Report, Group for the Advancement of Psychiatry = Rep. Group Adv. Psychiatry Report / Group For The Advancement of Psychiatry=Rep Group Adv Psychiatry;; Report - Institute on Human Values in Medicine = Rep Inst Hum Values Report - Navy Medical Neuropsychiatric Research Unit = Rep Nav Med Neuropsychiatr Res Unit Report, Navy Medical Neuropsychiatric Research Unit = Rep. Nav. Med. Neuropsychiatr. Res. Unit [Report no.] NAEC-ACEL-. United States. Aerospace Crew Equipment Laboratory, Philadelphia = Rep No NAEC ACEL United States Aerosp Crew Equip Lab Phila [Report no.] NAMC-ACEL-. United States. Air Crew Equipment Laboratory, Philadelphia = Rep No NAMC ACEL United States Air Crew Equip Lab Phila Report of Ionosphere and Space Research in Japan = Rep Ionos Space Res Report of Ionosphere and Space Research in Japan = Rep. Ionos. Space Res. Report of Nrl Progress = Rep Nrl Prog Report of Nrl Progress = Rep. Nrl Prog. Report of proceedings / the Scottish Society of the History of Medicine. Scottish Society of the History of Medicine = Rep Proc Scott Soc Hist Med Report of Research Center of Ion Beam Technology, Hosei University, Proceedings = Rep Res Cent Ion Bea Report of Research Center of Ion Beam Technology, Hosei University, Proceedings = Rep. Res. Cent. Ion Bea. Report of Research Center of Ion Beam Technology, Hosei University = Rep Res Cent Ion Bea Report of Research Center of Ion Beam Technology, Hosei University = Rep. Res. Cent. Ion Bea. Report of Research Center of Ion Beam Technology Hosei University Supplement = Rep Res Cent Ion Bea Report of Research Center of Ion Beam Technology Hosei University Supplement = Rep. Res. Cent. Ion Bea. Report of The Annual Corn and Sorghum Research Conference = R An Corn S Report of The Annual Corn and Sorghum Research Conference = R. An. Corn S. Report of the congress. European Orthodontic Society = Rep Congr Eur Orthod Soc Report of the Congress, European Orthodontic Society = Rep. Congr. Eur. Orthod. Soc. Report of the Department of Antiquities, Cyprus = RDAC Report of the Department of Antiquities, Cyprus = RDAC Report of The Forty-fifth Annual Corn and Sorghum Research Conference = R An Corn S Report of The Forty-fifth Annual Corn and Sorghum Research Conference = R. An. Corn S. Report of the Keio Institute of Cultural and Linguistic Studies = RKI Report on carcinogens : carcinogen profiles / U.S. Dept. of Health and Human Services, Public Health Service, National Toxicology Program = Rep Carcinog Report on medical guidelines & outcomes research = Rep Med Guidel Outcomes Res Report on the Working of the Museum Department, Malta, Department of Information = RepMalta Report = Report Reports - American Universities Field Staff. American Universities Field Staff = Rep Am Univ Field Staff Report Series in Theoretical Physics = Rep. Ser. Theoret. Phys. Reports From The Kevo Subarctic Research Station = Rep Kevo Subarctic Reports From The Kevo Subarctic Research Station = Rep. Kevo Subarctic Reports (International Development Research Centre (Canada)) = Rep Int Dev Res Cent Can Reports of cases argued and determined in the Supreme Court of New Jersey. New Jersey. Supreme Court = Rep Cases Argued Determ Supreme Court N J N J Supreme Court Reports of cases decided in the Appellate Division of the Supreme Court, State of New York. New York (State). Supreme Court. Appellate Division = Rep Cases Decided Appell Div Supreme Court State NY NY State Supreme Court Appell Div Reports of cases decided in the Supreme Court of the State of Georgia at the ... Georgia. Supreme Court = Rep Cases Decided Supreme Court State Ga Ga Supreme Court Reports of cases determined in the courts of appeal of the state of California = Rep Cases Determ Court Appeal State Calif Reports of selected cases decided in courts of the State of New York other than the Court of Appeals and the Appellate Division of the Supreme Court : miscellaneous reports = Rep Sel Cases Decided Courts State N Y Court Appeals Appell Div Supreme Court Reports of Statistical Application Research = Rep. Statist. Appl. Res. Un. Japan. Sci. Engrs. Reports of the Faculty of Science and Engineering = Rep. Fac. Sci. Engrg. Saga Univ. Math. Reports of the Faculty of Science and Technology = Rep. Fac. Sci. Technol. Meijo Univ. Reports of the Faculty of Science = Rep. Fac. Sci. Kagoshima Univ. Reports of the Faculty of Science = Rep. Fac. Sci. Kagoshima Univ. Math. Phys. Chem. Reports of the Faculty of Science = Rep. Fac. Sci. Shizuoka Univ. Reports of The Ministry of Social Affairs and Health = Rep Min Social Aff Reports of The Ministry of Social Affairs and Health = Rep. Min. Social Aff. Reports on health and social subjects = Rep Health Soc Subj (Lond) Reports on Health and Social Subjects=Rep Health Soc Subj (Lond);; Reports on Health and Social Subjects = Rep. Health Soc. Subj. (Lond.) Reports On Mathematical Logic, No 34 = Rep Math Log Reports On Mathematical Logic, No 34 = Rep. Math. Log. Reports On Mathematical Logic, No 43 = Rep Math Log Reports On Mathematical Logic, No 43 = Rep. Math. Log. Reports On Mathematical Logic, No 44 = Rep Math Log Reports On Mathematical Logic, No 44 = Rep. Math. Log. Reports On Mathematical Logic = Rep Math Log Reports On Mathematical Logic = Rep. Math. Log. Reports on Mathematical Logic = Rep. Math. Logic Reports on Mathematical Physics = Rep. Math. Phys. Reports on Mathematical Physics = Rep. Math. Phys. Reports On Mathematical Physics = Rep Math Phys Reports On Mathematical Physics = Rep. Math. Phys. Reports on population/family planning = Rep Popul Fam Plann Reports on Population/Family Planning = Rep. Popul. Fam. Plann. Reports on Progress in Physics = Rep. Prog. Phys. Reports On Progress in Physics = Rep Prog Phys Reports On Progress in Physics = Rep. Prog. Phys. Reports on Progress in Physics = Rep. Progr. Phys. Reports on public health and medical subjects = Rep Public Health Med Subj (Lond) Reports on Public Health and Medical Subjects = Rep. Public Health Med. Subj. (Lond.) Reports on rheumatic diseases = Rep Rheum Dis Reports on Rheumatic Diseases = Rep. Rheum. Dis. Report. United States. Army Medical Research and Nutrition Laboratory, Denver = Rep US Army Med Res Nutr Lab Denver Report. United States. Navy Experimental Diving Unit, Washington, D. C = Rep US Navy Exp Diving Unit Report, U.S. Army Medical Research and Nutrition Laboratory, Denver = Rep. US. Army Med. Res. Nutr. Lab. Denver Report, U.S. Army Medical Research Laboratory = Rep. US. Army Med. Res. Lab. Report. U.S. Army Medical Research Laboratory = Rep US Army Med Res Lab Report - U. S. Naval Medical Research Laboratory = Rep US Nav Med Res Lab Report (U.S. Naval Submarine Medical Center) = Rep US Nav Submar Med Cent Report, US Naval Submarine Medical Center = Rep. US Nav. Submar. Med. Cent. Report, U.S. Navy Experimental Diving Unit = Rep. US. Navy Exp. Diving Unit Report / Victor-Bostrom Fund for the International Planned Parenthood Federation. Victor-Bostrom Fund = Victor Bostrom Fund Rep Reppal. Revue des études phénicienne-puniques et des antiquités libyques = Reppal Representation and Identity From Versailles to The Present: The Performing Subject = Palg Stud Theat Perf Representation and Identity From Versailles to The Present: The Performing Subject = Palg. Stud. Theat. Perf. Representation and Management of Narrative Information: Theoretical Principles and Implementation = Adv Inform Knowl Pro Representation and Management of Narrative Information: Theoretical Principles and Implementation = Adv. Inform. Knowl. Pro. Representation and Mind = Represent. Mind Representation and Mind = Represent Mind Representation and Mind = Represent. Mind Representation in Religion = St Hist Rel Representation in Religion = St. Hist. Rel. Representation of Three-dimensional Space in The Vestibular, Oculomotor, and Visual Systems = Ann Ny Acad Sci Representation of Three-dimensional Space in The Vestibular, Oculomotor, and Visual Systems = Ann. Ny. Acad. Sci. Representations (Berkeley, Calif.) = Representations (Berkeley) Representations of Algebraic Groups, Quantum Groups, and Lie Algebras = Contemp Math Representations of Algebraic Groups, Quantum Groups, and Lie Algebras = Contemp. Math. Representations of Algebras and Related Topics = Fields I Commun Representations of Algebras and Related Topics = Fields. I. Commun. Representations of Algebras and Related Topics = Fields Inst Commun Representations of Algebras and Related Topics = Fields. Inst. Commun. Representations of Algebras, Proceedings = Lect Notes Pure Appl Representations of Algebras, Proceedings = Lect. Notes. Pure. Appl. Representations of Gender On The Nineteenth-century American Stage = Theatre Symp Representations of Gender On The Nineteenth-century American Stage = Theatre. Symp. Representations of Hecke Algebras At Roots of Unity = Algebra Appl Representations of Hecke Algebras At Roots of Unity = Algebra. Appl. Representations of Jews Through The Ages = St Jew Civ Representations of Jews Through The Ages = St. Jew. Civ. Representations of Lie Groups and Quantum Groups = Pitman Res Representations of Lie Groups and Quantum Groups = Pitman. Res. Representations of Sl2 (fq) = Algebra Appl Representations of Sl2 (fq) = Algebra. Appl. Representations of Technology in Science Fiction for Young People = Child Lit Cult Representations of Technology in Science Fiction for Young People = Child. Lit. Cult. Representations P-adiques Cristallines Et De De Rham Dans Le Cas Relatif = Mem Soc Math Fr Representations P-adiques Cristallines Et De De Rham Dans Le Cas Relatif = Mem. Soc. Math. Fr. Representations = Representations Representations, Wavelets and Frames: A Celebration of The Mathematical Work of Lawrence W. Baggett = Appl Numer Harmon An Representations, Wavelets and Frames: A Celebration of The Mathematical Work of Lawrence W. Baggett = Appl. Numer. Harmon. An. Representation Theories and Algebraic Geometry = Nato Adv Sci I C-mat Representation Theories and Algebraic Geometry = Nato. Adv. Sci. I. C-mat. Representation Theory and Automorphic Forms = Prog Math Representation Theory and Automorphic Forms = Prog. Math. Representation Theory and Complex Analysis = Lect Notes Math Representation Theory and Complex Analysis = Lect. Notes. Math. Representation Theory and Higher Algebraic K-theory = Monogr Txb Pure Appl Representation Theory and Higher Algebraic K-theory = Monogr. Txb. Pure. Appl. Representation Theory-bk = Contemp Math Representation Theory-bk = Contemp. Math. Representation Theory-book = Curr Stud Linguist Representation Theory-book = Curr. Stud. Linguist. Representation Theory of Finite Groups and Finite-dimensional Algebras = Prog Math Representation Theory of Finite Groups and Finite-dimensional Algebras = Prog. Math. Representation Theory of Finite Groups = Ohio St U M Representation Theory of Finite Groups = Ohio. St. U. M. Representation Theory of Real Reductive Lie Groups = Contemp Math Representation Theory of Real Reductive Lie Groups = Contemp. Math. Representation Theory of The Virasoro Algebra = Springer Monogr Math Representation Theory of The Virasoro Algebra = Springer. Monogr. Math. Representation Theory = Represent. Theory Representative research in social psychology = Represent Res Soc Psychol Representative Research in Social Psychology = Represent R Soc Psyc Representative Research in Social Psychology = Represent. R. Soc. Psyc. Representing Africa in Childrens Literature: Old and New Ways of Seeing = Child Lit Cult Representing Africa in Childrens Literature: Old and New Ways of Seeing = Child. Lit. Cult. Representing Calcutta = Asias Transform Representing Calcutta = Asias. Transform. Representing India: Ethnic Diversity and The Governance of Public Institutions = Ethn Inequal Public Representing India: Ethnic Diversity and The Governance of Public Institutions = Ethn. Inequal. Public Representing Others in Medieval Iberian Literature = New Middle Ages Representing Others in Medieval Iberian Literature = New. Middle. Ages. Representing Women in Parliament: A Comparative Study = Routl Res Comp Polit Representing Women in Parliament: A Comparative Study = Routl. Res. Comp. Polit. Representing Women in Parliament: A Comparative Study = Rout Res Comp Poli Representing Women in Parliament: A Comparative Study = Rout. Res. Comp. Poli. Reproduccion = Reproduccion Reproducing Enlightenment: Paradoxes in The Life of The Body Politic = Interd Germ Cult Reproducing Enlightenment: Paradoxes in The Life of The Body Politic = Interd. Germ. Cult. Reproduction. Abstract Series = Reprod. Abstr. Ser. Reproduction and contraception = Reprod Contracept Reproduction and Fitness in Baboons = Dev Primatol-prog Pr Reproduction and Fitness in Baboons = Dev. Primatol-prog. Pr. Reproduction (Bristol, United Kingdom) = Reproduction (Bristol, U. K.) Reproduction (Cambridge, England). Abstract series = Reprod Abstr Ser Reproduction (Cambridge, England) = Reproduction Reproduction (Cambridge, England) Supplement = Reprod Suppl Reproduction Fertility and Development = Reprod Fert Develop Reproduction Fertility and Development = Reprod. Fert. Develop. Reproduction, fertility, and development = Reprod Fertil Dev Reproduction, Fertility, and Development=Reprod Fertil Dev;; Reproduction, Fertility, and Development = Reprod. Fertil. Dev. Reproduction, Genetics and Distributions of Marine Organisms = Olsen Int S Reproduction, Genetics and Distributions of Marine Organisms = Olsen. Int. S. Reproduction, Growth and Development = Serono Sym Reproduction, Growth and Development = Serono. Sym. Reproduction in Domestic Animals = Reprod Domest Anim Reproduction in Domestic Animals = Reprod. Domest. Anim. Reproduction in Domestic Ruminants Vii = Soc Reprod Fertil Reproduction in Domestic Ruminants Vii = Soc. Reprod. Fertil. Reproduction, nutrition, development = Reprod Nutr Dev Reproduction Nutrition Development = Reprod Nutr Dev Reproduction Nutrition Development = Reprod. Nutr. Dev. Reproduction, Nutrition, Development=Reprod Nutr Dev;; Reproduction, Nutrition, Development = Reprod. Nutr. Dev. Reproduction, Nutrition, Development = Reprod., Nutr., Dev. Reproduction, Nutrition, Developpement = Reprod. Nutr. Dev. Reproduction = Reproduction Reproduction Strategy of Paphiopedilum Armeniacum (orchidaceae) = Bot Res Pract Reproduction Strategy of Paphiopedilum Armeniacum (orchidaceae) = Bot. Res. Pract. Reproduction. Supplement = Reprod. Suppl. Reproductive Aging = Ann Ny Acad Sci Reproductive Aging = Ann. Ny. Acad. Sci. Reproductive and Developmental Effects of Contaminants in Oviparous Vertebrates = Setac Sp P Reproductive and Developmental Effects of Contaminants in Oviparous Vertebrates = Setac. Sp. P. Reproductive and genetic engineering = Reprod Genet Eng Reproductive biology and endocrinology : RB&E = Reprod Biol Endocrinol Reproductive Biology and Endocrinology = Reprod Biol Endocrin Reproductive Biology and Endocrinology = Reprod. Biol. Endocrin. Reproductive Biology and Endocrinology = Reprod. Biol. Endocrinol. Reproductive biology = Reprod Biol Reproductive Biology = Reprod Biol Reproductive Biology = Reprod. Biol. Reproductive Biology = Reprod Biology Reproductive Biology = Reprod. Biology Reproductive Biomechanics = Ann Ny Acad Sci Reproductive Biomechanics = Ann. Ny. Acad. Sci. Reproductive biomedicine online = Reprod Biomed Online Reproductive Biomedicine Online = Reprod Biomed Online Reproductive Biomedicine Online = Reprod. Biomed. Online Reproductive freedom news / from the Center for Reproductive Law & Policy = Reprod Freedom News Reproductive Health Matters = Reprod Health Matter Reproductive Health Matters = Reprod. Health Matter. Reproductive health matters = Reprod Health Matters Reproductive health = Reprod Health Reproductive Immunology = Curr Top Microbiol Reproductive Immunology = Curr. Top. Microbiol. Reproductive Immunology = Serono Sym Reproductive Immunology = Serono. Sym. Reproductive Medicine : Medical Therapy = Int Congr Ser Reproductive Medicine : Medical Therapy = Int. Congr. Ser. Reproductive Medicine = Serono Sym Reproductive Medicine = Serono. Sym. Reproductive Polymorphism of Leafrollers (lepidoptera: Tortricidae) = Gen-res Issues Reproductive Polymorphism of Leafrollers (lepidoptera: Tortricidae) = Gen-res. Issues. Reproductive Science = Ann Ny Acad Sci Reproductive Science = Ann. Ny. Acad. Sci. Reproductive Sciences = Reprod Sci Reproductive Sciences = Reprod. Sci. Reproductive sciences (Thousand Oaks, Calif.) = Reprod Sci Reproductive Toxicology = Adv Exp Med Biol Reproductive Toxicology = Adv. Exp. Med. Biol. Reproductive toxicology (Elmsford, N.Y.) = Reprod Toxicol Reproductive Toxicology=Reprod Toxicol;; Reproductive Toxicology = Reprod Toxicol Reproductive Toxicology = Reprod. Toxicol. Reproductive Tract Infections = Reprod Biol Reproductive Tract Infections = Reprod. Biol. Reprogen-ethics and The Future of Gender = Int Libr Eth Law New Reprogen-ethics and The Future of Gender = Int. Libr. Eth. Law. New. Reprogramming The Brain = Prog Brain Res Reprogramming The Brain = Prog. Brain Res. ReproWatch = Reprowatch ReproWatch (Youth edition) = ReproWatch (Youth Ed) Reptiles-classification Evolution and Systems = Reptiles-classif Evo Reptiles-classification Evolution and Systems = Reptiles-classif. Evo. República de Venezuela = Repúb. Venezuela Bol. Acad. Cienc. Fís. Mat. Natur. Republican Party and Immigration Politics: From Proposition 187 to George W Bush = Stud Am Republican Party and Immigration Politics: From Proposition 187 to George W Bush = Stud. Am. Republican Politics and English Poetry, 1789-1874 = Palgrave Stud Ninet- Republican Politics and English Poetry, 1789-1874 = Palgrave. Stud. Ninet-. Republic for The Ages: The United States Capitol and The Political Culture of The Early Republic = Per Amer Revolut Republic for The Ages: The United States Capitol and The Political Culture of The Early Republic = Per. Amer. Revolut. Repura (Leprosy) = Repura Repura. Leprosy = Repura Reputation and Power: Organizational Image and Pharmaceutical Regulation At The Fda = Princ Stud Am Polit Reputation and Power: Organizational Image and Pharmaceutical Regulation At The Fda = Princ. Stud. Am. Polit. Reputation and Representation in Fifteenth Century Europe = Northern World Reputation and Representation in Fifteenth Century Europe = Northern. World. Reputation and The Evolution of Generous Behavior = Psychol Emot Motiv A Reputation and The Evolution of Generous Behavior = Psychol. Emot. Motiv. A. Reputation Transfer to Enter New B-to-b Markets: Measuring and Modelling Approaches = Contrib Manag Sci Reputation Transfer to Enter New B-to-b Markets: Measuring and Modelling Approaches = Contrib. Manag. Sci. Requirements Engineering 93 : Prototyping = Ber Ger Acm Requirements Engineering 93 : Prototyping = Ber. Ger. Acm. Requirements Engineering for Software and Systems = Auerbach S Appl Soft Requirements Engineering for Software and Systems = Auerbach. S. Appl. Soft. Requirements Engineering: Foundation for Software Quality = Lect Notes Comput Sc Requirements Engineering: Foundation for Software Quality = Lect. Notes. Comput. Sc. Requirements Engineering = Requir Eng Requirements Engineering = Requir. Eng. Requirements Targeting Software and Systems Engineering = Lect Notes Comput Sc Requirements Targeting Software and Systems Engineering = Lect. Notes. Comput. Sc. Re-reading Wagner = Monat Occ V Re-reading Wagner = Monat. Occ. V. Reric International Energy Journal = Reric Int Energ J Reric International Energy Journal = Reric Int. Energ. J. Rerum Novarum : A Symposium Celebrating 100 Years of Catholic Social Thought = Symposium S Rerum Novarum : A Symposium Celebrating 100 Years of Catholic Social Thought = Symposium S. Res 08: Proceedings of The 2nd Wseas/iasme International Conference On Renewable Energy Sources = Energy Environ Eng S Res 08: Proceedings of The 2nd Wseas/iasme International Conference On Renewable Energy Sources = Energy Environ. Eng. S. Rescue of Sturgeon Species in The Ural River Basin = Nato Sci Peace Secur Rescue of Sturgeon Species in The Ural River Basin = Nato. Sci. Peace. Secur. Rescuing The Enlightenment From Itself: Critical and Systemic Implications for Democracy = C W Churchm Leg Rel Rescuing The Enlightenment From Itself: Critical and Systemic Implications for Democracy = C. W. Churchm. Leg. Rel. Resealed Erythrocytes As Carriers and Bioreactors = Adv Biosci Resealed Erythrocytes As Carriers and Bioreactors = Adv. Biosci. Research About Teaching and Learning = Res Teach Learn Research About Teaching and Learning = Res. Teach. Learn. Research Activities = Res. Act. Fac. Sci. Engrg. Tokyo Denki Univ. Research Advances in Alcohol and Drug Problems = Res Adv Alcohol Drug Research Advances in Alcohol and Drug Problems = Res. Adv. Alcohol Drug Research Advances in Database and Information Systems Security = Int Fed Info Proc Research Advances in Database and Information Systems Security = Int. Fed. Info. Proc. Research agenda brief = Res Agenda Brief Research Agenda for Mathematics Education = Res Ag Math Research Agenda for Mathematics Education = Res. Ag. Math. Research Agendas in Eu Studies: Stalking The Elephant = Palgrave Stud Eur Un Research Agendas in Eu Studies: Stalking The Elephant = Palgrave. Stud. Eur. Un. Research; a journal of science and its applications = Research Research and Advanced Technology for Digital Libraries = Lect Notes Comput Sc Research and Advanced Technology for Digital Libraries = Lect. Notes. Comput. Sc. Research and Advanced Technology for Digital Libraries, Proceedings = Lect Notes Comput Sc Research and Advanced Technology for Digital Libraries, Proceedings = Lect. Notes. Comput. Sc. Research and Applications of Chemical Sciences in Forestry = Usda So For Research and Applications of Chemical Sciences in Forestry = Usda. So. For. Research and Clinical Forums = Res Clin Forums Research and Clinical Forums = Res. Clin. Forums Research and clinical studies in headache = Res Clin Stud Headache Research and Clinical Studies in Headache = Res. Clin. Stud. Headache Research and Development in Agriculture = Res Dev Agric Research and Development in Agriculture = Res. Dev. Agric. Research and Development in Expert Systems Vi = Brit Comp S Research and Development in Expert Systems Vi = Brit. Comp. S. Research and Development in Intelligent Systems Xvi = Bcs Conf Series Research and Development in Intelligent Systems Xvi = Bcs. Conf. Series. Research and Development in Intelligent Systems Xvii = Bcs Conf Series Research and Development in Intelligent Systems Xvii = Bcs. Conf. Series. Research and Development in Intelligent Systems Xviii = Bcs Conf Series Research and Development in Intelligent Systems Xviii = Bcs. Conf. Series. Research and Development in Intelligent Systems Xx = Bcs Conference S Research and Development in Intelligent Systems Xx = Bcs. Conference. S. Research and Development in Intelligent Systems Xxi = Bcs Conference S Research and Development in Intelligent Systems Xxi = Bcs. Conference. S. Research and Development in Intelligent Systems Xxii = Bcs Conf Series Research and Development in Intelligent Systems Xxii = Bcs. Conf. Series. Research and Development in Intelligent System Xix = Bcs Conf Series Research and Development in Intelligent System Xix = Bcs. Conf. Series. Research and Development in Knowledge Discovery and Data Mining = Lect Notes Artif Int Research and Development in Knowledge Discovery and Data Mining = Lect. Notes. Artif. Int. Research and Development in Non-mechanical Electrical Power Sources = Res Dev N M Research and Development in Non-mechanical Electrical Power Sources = Res. Dev. N. M. Research and Development in The Nuclear Industry = Res S Nuc T Research and Development in The Nuclear Industry = Res. S. Nuc. T. Research and development technical report. United States. Naval Radiological Defense Laboratory, San Francisco = Res Dev Tech Rep Research and Education in Robotics - Eurobot 2008 = Comm Com Inf Sc Research and Education in Robotics - Eurobot 2008 = Comm. Com. Inf. Sc. Research and Education in Robotics: Eurobot 2009 = Comm Com Inf Sc Research and Education in Robotics: Eurobot 2009 = Comm. Com. Inf. Sc. Research and Exposition in Mathematics = Res. Exp. Math. Research and Industry = Res Ind Research and Industry = Res. Ind. Research and International Trade Policy Negotiations: Knowledge and Power in Latin America = Rout Stud Lat Am Pol Research and International Trade Policy Negotiations: Knowledge and Power in Latin America = Rout. Stud. Lat. Am. Pol. Research and Management of The Brown-headed Cowbird in Western Landscapes = Stud Avian Biol-ser Research and Management of The Brown-headed Cowbird in Western Landscapes = Stud. Avian. Biol-ser. Research and Perspectives in Alzheimers Disease = Res Per Alz Research and Perspectives in Alzheimers Disease = Res. Per. Alz. Research and Perspectives in Endocrine Interactions = Res Perspect End Int Research and Perspectives in Endocrine Interactions = Res. Perspect. End. Int. Research and Perspectives in Longevity = Res Perspect Longev Research and Perspectives in Longevity = Res. Perspect. Longev. Research and Perspectives in Neurosciences = Res Per Neurosci Research and Perspectives in Neurosciences = Res. Per. Neurosci. Research and Perspectives On Processing Instruction = Stud Lang Acquis Research and Perspectives On Processing Instruction = Stud. Lang. Acquis. Research and Practical Issues of Enterprise Information Systems Ii, Vol 1 = Int Fed Info Proc Research and Practical Issues of Enterprise Information Systems Ii, Vol 1 = Int. Fed. Info. Proc. Research and Practical Issues of Enterprise Information Systems Ii, Vol 2 = Int Fed Info Proc Research and Practical Issues of Enterprise Information Systems Ii, Vol 2 = Int. Fed. Info. Proc. Research and Practical Issues of Enterprise Information Systems = Int Fed Info Proc Research and Practical Issues of Enterprise Information Systems = Int. Fed. Info. Proc. Research and Practice for Persons With Severe Disabilities = Res Pract Pers Sev D Research and Practice for Persons With Severe Disabilities = Res. Pract. Pers. Sev. D. Research and Practice in Applied Linguistics = Res Pract Appl Lingu Research and Practice in Applied Linguistics = Res. Pract. Appl. Lingu. Research and Practice in Multiple Criteria Decision Making = Lect Notes Econ Math Research and Practice in Multiple Criteria Decision Making = Lect. Notes. Econ. Math. Research and Public Policy Series = Res Pub Pol Series Research and Public Policy Series = Res. Pub. Pol. Series Research and Publishing in Neurosurgery = Act Neur S Research and Publishing in Neurosurgery = Act. Neur. S. Research and statistics note - Health Care Financing Administration, Office of Policy, Planning, and Research = Res Stat Note Health Care Financ Adm Off Policy Plan Res Research and Statistics Note, Health Care Financing Administration, Office of Policy, Planning, and Research = Res. Stat. Note Health Care Financ. Adm. Off. Policy. Plan. Res. Research and statistics note - Social Security Administration, Office of Research and Statistics = Res Stat Note Research and Statistics Note, Social Security Administration, Office of Research and Statistics = Res. Stat. Note Research and Technical and Scientific Terminology = Lexicon Philos Research and Technical and Scientific Terminology = Lexicon. Philos. Research and Theory for Nursing Practice = Res Theor Nurs Pract Research and Theory for Nursing Practice = Res. Theor. Nurs. Pract. Research and theory for nursing practice = Res Theory Nurs Pract Research and Theory for Nursing Practice = Res. Theory Nurs. Pract. Research and Theory in Educational Administration = Res Theor Educ Admin Research and Theory in Educational Administration = Res. Theor. Educ. Admin. Research Approaches to Support Non-wood Forest Products Sector Development: Case of Arkhangelsk Region, Russia = Eur Forest Inst Proc Research Approaches to Support Non-wood Forest Products Sector Development: Case of Arkhangelsk Region, Russia = Eur. Forest Inst. Proc. Research Bulletin of the Panjab University = Res. Bull. Panjab Univ. Sci. Research Bulletins of the College Experiment Forests, Hokkaido University = Res. Bull. Coll. Exp. For., Hokkaido Univ. Research Collaboration in European Ipm Systems = Br Crop Pr Research Collaboration in European Ipm Systems = Br. Crop. Pr. Research Colloquium On Workers' Compensation Medical Benefit Delivery and Return to Work, Conference Proceedings = Rand Conf Proc Research Colloquium On Workers' Compensation Medical Benefit Delivery and Return to Work, Conference Proceedings = Rand. Conf. Proc. Research Communications in Alcohol and Substances of Abuse = Res Commun Alcohol S Research Communications in Alcohol and Substances of Abuse = Res. Commun. Alcohol S. Research Communications in Biochemistry and Cell & Molecular Biology = Res. Commun. Biochem. Cell Mol. Biol. Research Communications in Chemical Pathology and Pharmacology = Res Commun Chem Path Research Communications in Chemical Pathology and Pharmacology = Res. Commun. Chem. Path. Research communications in chemical pathology and pharmacology = Res Commun Chem Pathol Pharmacol Research Communications in Chemical Pathology and Pharmacology = Res. Commun. Chem. Pathol. Pharmacol. Research Communications in Molecular Pathology and Pharmacology = Res Commun Mol Path Research Communications in Molecular Pathology and Pharmacology = Res. Commun. Mol. Path. Research communications in molecular pathology and pharmacology = Res Commun Mol Pathol Pharmacol Research Communications in Molecular Pathology and Pharmacology = Res. Commun. Mol. Pathol. Pharmacol. Research Communications In Molecular Pathology and Pharmacology=Res Commun Mol Pathol Pharmacol;; Research Communications in Pharmacology and Toxicology = Res. Commun. Pharmacol. Toxicol. Research communications in psychology, psychiatry and behavior = Res Commun Psychol Psychiatr Behav Research Communications in Psychology Psychiatry and Behavior = Res Commun Psych Psy Research Communications in Psychology Psychiatry and Behavior = Res. Commun. Psych. Psy. Research communications - Institute for Fermentation, Osaka = Res Commun Inst Ferment Research Communications, Institute for Fermentation = Res. Commun. Inst. Ferment. Research communications in substance abuse = Res Commun Subst Abuse Research Communications in Substances of Abuse = Res Commun Substance Research Communications in Substances of Abuse = Res. Commun. Substance. Research, Design and Construction of Refrigeration and Air Conditioning Equipments in Eastern European Countries = Refr Sci T Research, Design and Construction of Refrigeration and Air Conditioning Equipments in Eastern European Countries = Refr. Sci. T. Research-development = Res Dev Research-development = Res. Dev. Research & Development = Res Dev Research & Development = Res. Dev. Research Directions in Data and Applications Security = Int Fed Info Proc Research Directions in Data and Applications Security = Int. Fed. Info. Proc. Research Directions in Data and Applications Security Xviii = Int Fed Info Proc Research Directions in Data and Applications Security Xviii = Int. Fed. Info. Proc. Research Directions in Distributed Parameter Systems = Front Appl Math Research Directions in Distributed Parameter Systems = Front. Appl. Math. Research Directions in Distributed Parameter Systems = Front App M Research Directions in Distributed Parameter Systems = Front. App. M. Research Disclosure = Res. Discl. Researches in Powder Metallurgy = Mater Sci Forum Researches in Powder Metallurgy = Mater. Sci. Forum. Researches On Population Ecology = Res Popul Ecol Researches On Population Ecology = Res. Popul. Ecol. Researches on population ecology = Res Popul Ecol (Kyoto) Research Ethics in Exercise, Health and Sports Sciences = Ethics Sport Research Ethics in Exercise, Health and Sports Sciences = Ethics Sport. Research Ethics, Manuscript Review, and Journal Quality = Acs Misc P Research Ethics, Manuscript Review, and Journal Quality = Acs. Misc. P. Research Evaluation = Res Evaluat Research Evaluation = Res. Evaluat. Research & Exploration = Res Explor Research & Exploration = Res. Explor. Research Facilities of The Future = Ann Ny Acad Sci Research Facilities of The Future = Ann. Ny. Acad. Sci. Research for Social Justice Personal Passionate Participatory Inquiry = Res Soc Justice Pers Research for Social Justice Personal Passionate Participatory Inquiry = Res. Soc. Justice Pers. Research for What?: Making Engaged Scholarship Matter = Adv Serv Learn Res Research for What?: Making Engaged Scholarship Matter = Adv. Serv. Learn. Res. Research frontiers in fertility regulation : RFFR / PARFR = Res Front Fertil Regul Research Handbook On International Criminal Law = Res Hb Int Law Research Handbook On International Criminal Law = Res. Hb. Int. Law Research Handbook On The Economics of Property Law = Res Handb Law Econ Research Handbook On The Economics of Property Law = Res. Handb. Law Econ. Research Handbooks in Comparative Law = Res Hand Comp Law Research Handbooks in Comparative Law = Res. Hand. Comp. Law Research Handbooks in International Law = Res Hb Int Law Research Handbooks in International Law = Res. Hb. Int. Law Research Handbooks in Law and Economics = Res Handb Law Econ Research Handbooks in Law and Economics = Res. Handb. Law Econ. Research in Accounting in Emerging Economies = Res Account Emerg Ec Research in Accounting in Emerging Economies = Res. Account. Emerg. Ec. Research in Addiction: An Update = Psychiat Progr Ser Research in Addiction: An Update = Psychiat. Progr. Ser. Research in African Literatures = Res Afr Literatures Research in African Literatures = Res. Afr. Literatures Research in Afroasiatic Grammar = Amst Stud Theory His Research in Afroasiatic Grammar = Amst. Stud. Theory. His. Research in Applied Linguistics = Res Appl Linguist Research in Applied Linguistics = Res. Appl. Linguist. Research in Applied Mathematics = Res Note Ap Research in Applied Mathematics = Res. Note. Ap. Research in Architectural Engineering Series = Res Archit Eng Ser Research in Architectural Engineering Series = Res. Archit. Eng. Ser. Research in Architectural Engineering Series = Res Archtec Engr Ser Research in Architectural Engineering Series = Res. Archtec. Engr. Ser. Research in Asian Economic Studies = Res Asia Es Research in Asian Economic Studies = Res. Asia. Es. Research in Asian Economic Studies, Vol 7, Pts A and B, 1996 = Res Asia Es Research in Asian Economic Studies, Vol 7, Pts A and B, 1996 = Res. Asia. Es. Research in Asian Economic Studies, Vol 8 - 1998 = Res Asia Es Research in Asian Economic Studies, Vol 8 - 1998 = Res. Asia. Es. Research in Astronomy and Astrophysics = Res Astron Astrophys Research in Astronomy and Astrophysics = Res. Astron. Astrophys. Research in Autism Spectrum Disorders = Res Autism Spect Dis Research in Autism Spectrum Disorders = Res. Autism Spect. Dis. Research in Biopolitics = Res Biopolit Research in Biopolitics = Res. Biopolit. Research in Biopolitics, Vol 5 - 1997 = Res Biopolit Research in Biopolitics, Vol 5 - 1997 = Res. Biopolit. Research in Biopolitics, Vol 6 - 1998 = Res Biopolit Research in Biopolitics, Vol 6 - 1998 = Res. Biopolit. Research in Building Physics and Building Engineering = Proc Monogr Eng Wate Research in Building Physics and Building Engineering = Proc. Monogr. Eng. Wate. Research in Career Development = Res Career Dev Research in Career Development = Res. Career Dev. Research in Careers = Res Careers Research in Careers = Res. Careers Research in Clinic and Laboratory = Res Clin Lab Research in Clinic and Laboratory = Res. Clin. Lab. Research in community and mental health = Res Community Ment Health Research in Competence-based Management = Res Compet-based Man Research in Competence-based Management = Res. Compet-based. Man. Research in Computational Molecular Biology = Lect N Bioinformat Research in Computational Molecular Biology = Lect. N. Bioinformat. Research in Computational Molecular Biology, Proceedings = Lect N Bioinformat Research in Computational Molecular Biology, Proceedings = Lect. N. Bioinformat. Research in Computational Molecular Biology, Proceedings = Lect Notes Comput Sc Research in Computational Molecular Biology, Proceedings = Lect. Notes. Comput. Sc. Research in Consumer Behavior-a Research Annual = Res Con Beh Research in Consumer Behavior-a Research Annual = Res. Con. Beh. Research in Consumer Behavior-a Research Annual = Res Consum Behav-a R Research in Consumer Behavior-a Research Annual = Res. Consum. Behav-a. R. Research in Consumer Behavior, Vol 10 = Res Consum Behav-a R Research in Consumer Behavior, Vol 10 = Res. Consum. Behav-a. R. Research in Cryptology = Lect Notes Comput Sc Research in Cryptology = Lect. Notes. Comput. Sc. Research in Curriculum and Instruction = Res Curric Instruct Research in Curriculum and Instruction = Res. Curric. Instruct. Research in Dance Education = Res Danc Educ Research in Dance Education = Res. Danc. Educ. Research in Design Series = Res Desgn Ser Research in Design Series = Res. Desgn. Ser. Research in Design Series = Res Des Ser Research in Design Series = Res. Des. Ser. Research in developmental disabilities = Res Dev Disabil Research in Developmental Disabilities = Res Dev Disabil Research in Developmental Disabilities = Res. Dev. Disabil. Research In Developmental Disabilities=Res Dev Disabil;; Research in Economic Anthropology = Res Econ An Research in Economic Anthropology = Res. Econ. An. Research in economic anthropology = Res Econ Anthropol Research in Economic Anthropology = Res Econ Anthropol Research in Economic Anthropology = Res. Econ. Anthropol. Research in Economic Anthropology, Vol 14 = Res Econ An Research in Economic Anthropology, Vol 14 = Res. Econ. An. Research in economic history = Res Econ Hist Research in Economic History = Res Econ Hist Research in Economic History = Res. Econ. Hist. Research in Economic History, Vol 24 = Res Econ Hist Research in Economic History, Vol 24 = Res. Econ. Hist. Research in Economic History, Vol 25 = Res Econ Hist Research in Economic History, Vol 25 = Res. Econ. Hist. Research in Economic History, Vol 26 = Res Econ Hist Research in Economic History, Vol 26 = Res. Econ. Hist. Research in Economics=Res. Econ. Research in Educational Policy Local National and Global Perspectives = Res Educ Policy Loca Research in Educational Policy Local National and Global Perspectives = Res. Educ. Policy Loca. Research in Educational Productivity = Res Educ Product Research in Educational Productivity = Res. Educ. Product. Research in Education Fiscal Policy and Practice = Res Educ Fisc Policy Research in Education Fiscal Policy and Practice = Res. Educ. Fisc. Policy Research in Education = Res Educ Research in Education = Res. Educ. Research in Engineering Design = Res Eng Des Research in Engineering Design = Res. Eng. Des. Research in Engineering Design-theory Applications and Concurrent Engineering = Res Eng Des Research in Engineering Design-theory Applications and Concurrent Engineering = Res. Eng. Des. Research in Entrepreneurship and Management = Res Entrep Manag Research in Entrepreneurship and Management = Res. Entrep. Manag. Research in Ethical Issues in Organizations = Res Eth Iss Org Research in Ethical Issues in Organizations = Res. Eth. Iss. Org. Research in Experimental Economics = Res Exp Econ Research in Experimental Economics = Res. Exp. Econ. Research in Experimental Medicine = Res Exp Med Research in Experimental Medicine = Res. Exp. Med. Research in Experimental Medicine = Res. Exp. Med. (Berl.) Research In Experimental Medicine=Res Exp Med (Berl);; Research in experimental medicine. Zeitschrift fur die gesamte experimentelle Medizin einschliesslich experimenteller Chirurgie = Res Exp Med (Berl) Research in Finance = Res Financ Research in Finance = Res. Financ. Research in Finance = Res Finance Research in Finance = Res. Finance Research in Finance, Supplement 2, 1996 = Res Finance Research in Finance, Supplement 2, 1996 = Res. Finance. Research in Finance, Vol 23 = Res Financ Research in Finance, Vol 23 = Res. Financ. Research in Finance, Vol 24 = Res Financ Research in Finance, Vol 24 = Res. Financ. Research in Finance, Vol 25 = Res Financ Research in Finance, Vol 25 = Res. Financ. Research in Financial Services: Private and Public Policy = Res Fin Serv Research in Financial Services: Private and Public Policy = Res. Fin. Serv. Research in Financial Services: Private and Public Policy, Vol 10 - 1998 = Res Fin Serv Research in Financial Services: Private and Public Policy, Vol 10 - 1998 = Res. Fin. Serv. Research in Financial Services: Private and Public Policy, Vol 11 - 1999 = Res Fin Serv Research in Financial Services: Private and Public Policy, Vol 11 - 1999 = Res. Fin. Serv. Research in Financial Services: Private and Public Policy, Vol 12, 2000 = Res Fin Serv Research in Financial Services: Private and Public Policy, Vol 12, 2000 = Res. Fin. Serv. Research in Financial Services: Private and Public Policy, Vol 7, 1995 = Res Fin Serv Research in Financial Services: Private and Public Policy, Vol 7, 1995 = Res. Fin. Serv. Research in Financial Services: Private and Public Policy, Vol 9, 1997 = Res Fin Serv Research in Financial Services: Private and Public Policy, Vol 9, 1997 = Res. Fin. Serv. Research Informing Practice - Practice Informaing Research: Innovative Teaching Methodologies for World Language Teachers = Res Second Lang Lear Research Informing Practice - Practice Informaing Research: Innovative Teaching Methodologies for World Language Teachers = Res. Second. Lang. Lear. Researching Communication Disorders = Res Pract Appl Lingu Researching Communication Disorders = Res. Pract. Appl. Lingu. Researching Design Learning: Issues and Findings From Two Decades of Research and Development = Sci Technol Educ Lib Researching Design Learning: Issues and Findings From Two Decades of Research and Development = Sci. Technol. Educ. Lib. Researching Entrepreneurship = Int Stud Entrep Researching Entrepreneurship = Int. Stud. Entrep. Researching Families and Communities: Social and Generational Change = Relatsh Resour Researching Families and Communities: Social and Generational Change = Relatsh. Resour. Researching Learning in Higher Education: An Introduction to Contemporary Methods and Approaches = Staff Educ Dev Ser Researching Learning in Higher Education: An Introduction to Contemporary Methods and Approaches = Staff. Educ. Dev. Ser. Researching Learning in Virtual Worlds = Hum-comput Int-sprin Researching Learning in Virtual Worlds = Hum-comput. Int-sprin. Research in Global Child Advocacy = Res Glob Child Advoc Research in Global Child Advocacy = Res. Glob. Child Advoc. Research in Global Strategic Management : A Research Annual = Res Glob St Research in Global Strategic Management : A Research Annual = Res. Glob. St. Research in Global Strategic Management = Res Glob Strateg Man Research in Global Strategic Management = Res. Glob. Strateg. Man. Research in Global Strategic Management, Vol 2 = Res Glob St Research in Global Strategic Management, Vol 2 = Res. Glob. St. Research in Global Strategic Management, Vol 6 - 1998 = Res Glob St Research in Global Strategic Management, Vol 6 - 1998 = Res. Glob. St. Research in Global Strategic Management, Vol 7 - 1999 = Res Glob St Research in Global Strategic Management, Vol 7 - 1999 = Res. Glob. St. Research in Governmental and Nonprofit Accounting = Res Gov Nonprofit Ac Research in Governmental and Nonprofit Accounting = Res. Gov. Nonprofit Ac. Research in Governmental and Nonprofit Accounting, Vol 12 = Res Gov Nonprofit Ac Research in Governmental and Nonprofit Accounting, Vol 12 = Res. Gov. Nonprofit Ac. Researching Second Language Classrooms = Esl Appl Ling Prof Researching Second Language Classrooms = Esl. Appl. Ling. Prof. Researching Sexual Behavior = Kinsey Inst Researching Sexual Behavior = Kinsey. Inst. Researching Strategic Alliances: Emerging Perspectives = Adv Strateg Alliance Researching Strategic Alliances: Emerging Perspectives = Adv. Strateg. Alliance. Researching The Presidency : Vital Questions, New Approaches = Pitt S Pol Researching The Presidency : Vital Questions, New Approaches = Pitt. S. Pol. Researching Trust and Health = Rout Stud Hlth Soc W Researching Trust and Health = Rout. Stud. Hlth. Soc. W. Research in health economics = Res Health Econ Research in Health Economics = Res. Health Econ. Research in Higher Education = Res High Educ Research in Higher Education = Res. High. Educ. Research in Human Capital and Development = Res Hum Cap Research in Human Capital and Development = Res. Hum. Cap. Research in human capital and development = Res Hum Cap Dev Research in Human Capital and Development = Res Hum Cap Dev Research in Human Capital and Development = Res. Hum. Cap. Dev. Research in Human Capital and Development, Vol 11, Pts A and B = Res Hum Cap Research in Human Capital and Development, Vol 11, Pts A and B = Res. Hum. Cap. Research in human development = Res Hum Dev Research in Human Development = Res Hum Dev Research in Human Development = Res. Hum. Dev. Research in Humanities Computing 2 = Res Human Comp Research in Humanities Computing 2 = Res. Human. Comp. Research in Humanities Computing 3 = Res Human Comp Research in Humanities Computing 3 = Res. Human. Comp. Research in Humanities Computing 4 = Res Human Comp Research in Humanities Computing 4 = Res. Human. Comp. Research in Humanities Computing 5 = Res Human Comp Research in Humanities Computing 5 = Res. Human. Comp. Research in Humanities Computing = Res Human Comp Research in Humanities Computing = Res. Human. Comp. Research in Human Resources Management = Res Hum R M Research in Human Resources Management = Res. Hum. R. M. Research in immunology = Res Immunol Research in Immunology = Res Immunol Research in Immunology = Res. Immunol. Research In Immunology=Res Immunol;; Research in Infant Assessment = Birth Def Research in Infant Assessment = Birth. Def. Research initiative, treatment action : RITA = Res Initiat Treat Action Research in Labor Economics : A Research Annual = Res Labor E Research in Labor Economics : A Research Annual = Res. Labor E. Research in Labor Economics = Res Labor E Research in Labor Economics = Res. Labor E. Research in Labor Economics = Res Labor Econ Research in Labor Economics = Res. Labor Econ. Research in Law and Economics = Res Law Ec Research in Law and Economics = Res. Law Ec. Research in Law and Economics=Res. Law Econ. Research in Law and Economics = Res Law Econ Research in Law and Economics = Res. Law Econ. Research in Law and Economics, Vol 22 = Res Law Econ Research in Law and Economics, Vol 22 = Res. Law Econ. Research in Law and Economics, Vol 23 = Res Law Econ Research in Law and Economics, Vol 23 = Res. Law Econ. Research in Legal Medicine = Res Leg Med Research in Legal Medicine = Res. Leg. Med. Research in Life Sciences = Res. Life Sci. Research in Management Consulting = Res Manag Consult Research in Management Consulting = Res. Manag. Consult. Research in Management Education and Development = Res Manag Educ Dev Research in Management Education and Development = Res. Manag. Educ. Dev. Research in Management = Res Manag Research in Management = Res. Manag. Research in Mathematics Education Series = Res Math Educ Ser Research in Mathematics Education Series = Res. Math. Educ. Ser. Research in Mathematics = Res. Math. Research in medical education : proceedings of the ... annual Conference. Conference on Research in Medical Education = Res Med Educ Research in microbiology = Res Microbiol Research in Microbiology = Res Microbiol Research in Microbiology = Res. Microbiol. Research In Microbiology=Res Microbiol;; Research in Multicultural Education and International Perspectives = Res Multicult Educ I Research in Multicultural Education and International Perspectives = Res. Multicult. Educ. I. Research in Multi Level Issues = Res Multi Level Iss Research in Multi Level Issues = Res. Multi Level Iss. Research in Nondestructive Evaluation = Res. Nondestr. Eval. Research in Nondestructive Evaluation = Res Nondestruct Eval Research in Nondestructive Evaluation = Res. Nondestruct. Eval. Research in Nursing and Health = Res. Nurs. Health Research In Nursing and Health=Res Nurs Health;; Research in nursing & health = Res Nurs Health Research in Nursing & Health = Res Nurs Health Research in Nursing & Health = Res. Nurs. Health Research in Occupational Stress and Well-being = Res Occup Stress Wel Research in Occupational Stress and Well-being = Res. Occup. Stress Wel. Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 17, 1995 = Res Organ Behav Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 17, 1995 = Res. Organ. Behav. Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 26 = Res Organ Behav Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 26 = Res. Organ. Behav. Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 30 = Res Organ Behav Research in Organizational Behavior: An Annual Series of Analytical Essays and Critical Reviews, Vol 30 = Res. Organ. Behav. Research in Organizational Behavior = Res Organ Behav Research in Organizational Behavior = Res. Organ. Behav. Research in Organizational Behavior, Vol 18, 1996 = Res Organ Behav Research in Organizational Behavior, Vol 18, 1996 = Res. Organ. Behav. Research in Organizational Behavior, Vol 19, 1997 = Res Organ Behav Research in Organizational Behavior, Vol 19, 1997 = Res. Organ. Behav. Research in Organizational Behavior, Vol 20, 1998 = Res Organ Behav Research in Organizational Behavior, Vol 20, 1998 = Res. Organ. Behav. Research in Organizational Behavior, Vol. 21, 1999 = Res Organ Behav Research in Organizational Behavior, Vol. 21, 1999 = Res. Organ. Behav. Research in Organizational Behavior, Vol 22, 2000 = Res Organ Behav Research in Organizational Behavior, Vol 22, 2000 = Res. Organ. Behav. Research in Organizational Behavior, Vol 23 = Res Organ Behav Research in Organizational Behavior, Vol 23 = Res. Organ. Behav. Research in Organizational Behavior, Vol 24 = Res Organ Behav Research in Organizational Behavior, Vol 24 = Res. Organ. Behav. Research in Organizational Behavior, Vol 25 = Res Organ Behav Research in Organizational Behavior, Vol 25 = Res. Organ. Behav. Research in Organizational Behavior, Vol 27 = Res Organ Behav Research in Organizational Behavior, Vol 27 = Res. Organ. Behav. Research in Organizational Behavior, Vol 28 = Res Organ Behav Research in Organizational Behavior, Vol 28 = Res. Organ. Behav. Research in Organizational Behavior, Vol 29 = Res Organ Behav Research in Organizational Behavior, Vol 29 = Res. Organ. Behav. Research in Organizational Change and Development = Res Organ Chan Dev Research in Organizational Change and Development = Res. Organ. Chan. Dev. Research in Organizational Change and Development, Vol 15 = Res Organ Chan Dev Research in Organizational Change and Development, Vol 15 = Res. Organ. Chan. Dev. Research in Organizational Change and Development, Vol 16 = Res Organ Chan Dev Research in Organizational Change and Development, Vol 16 = Res. Organ. Chan. Dev. Research in Organizational Change and Development, Vol 17 = Res Organ Chan Dev Research in Organizational Change and Development, Vol 17 = Res. Organ. Chan. Dev. Research in Organizational Science = Res Org Sci Research in Organizational Science = Res. Org. Sci. Research in Outdoor Education = Res Outdoor Educ Research in Outdoor Education = Res. Outdoor Educ. Research in Outdoor Education, Vol 6 = Res Outdoor Educ Research in Outdoor Education, Vol 6 = Res. Outdoor Educ. Research in Outdoor Education, Vol 7 = Res Outdoor Educ Research in Outdoor Education, Vol 7 = Res. Outdoor Educ. Research in Parapsychology 1990 = Res Parapsy Research in Parapsychology 1990 = Res. Parapsy. Research in Parapsychology = Res Parapsy Research in Parapsychology = Res. Parapsy. Research in Perinatal Medicine = Res Per Med Research in Perinatal Medicine = Res. Per. Med. Research in Personnel and Human Resources Management : A Research Annual = Res Pers H Research in Personnel and Human Resources Management : A Research Annual = Res. Pers. H. Research in Personnel and Human Resources Management = Res Pers Hum Res Man Research in Personnel and Human Resources Management = Res. Pers. Hum. Res. Man. Research in Personnel and Human Resources Management, Supplement 2 = Res Pers H Research in Personnel and Human Resources Management, Supplement 2 = Res. Pers. H. Research in Personnel and Human Resources Management, Supplement 4 - 1999 = Res Pers Hum Res Man Research in Personnel and Human Resources Management, Supplement 4 - 1999 = Res. Pers. Hum. Res. Man. Research in Phenomenology = Res Phenomenol Research in Phenomenology = Res. Phenomenol. Research in Philosophy and Technology : A Research Annual = Res Phil T Research in Philosophy and Technology : A Research Annual = Res. Phil. T. Research in Philosophy & Technology, Vol 10 = Res Phil T Research in Philosophy & Technology, Vol 10 = Res. Phil. T. Research in Political Economy = Res Polit Econ Research in Political Economy = Res. Polit. Econ. Research in Political Sociology = Res Polit Sociol Research in Political Sociology = Res. Polit. Sociol. Research in population economics = Res Popul Econ Research in Professional Development Schools = Res Prof Dev Sch Research in Professional Development Schools = Res. Prof. Dev. Sch. Research in prostaglandins = Res Prostaglandins Research in Public Management = Res Public Manag Research in Public Management = Res. Public Manag. Research in Public Management = Res Public Manage Research in Public Management = Res. Public Manage. Research in Public Policy Analysis and Management = Res Public Policy An Research in Public Policy Analysis and Management = Res. Public Policy An. Research in Public Policy Analysis and Management = Res Publ P Research in Public Policy Analysis and Management = Res. Publ. P. Research in Race and Ethnic Relations = Res Race Ethn Relat Research in Race and Ethnic Relations = Res. Race Ethn. Relat. Research in reproduction = Res Reprod Research in Reproduction = Res. Reprod. Research in rural sociology and development = Res Rural Sociol Dev Research in Rural Sociology and Development = Res Rural Sociol Dev Research in Rural Sociology and Development = Res. Rural Sociol. Dev. Research in Science Education = Res Sci Ed Research in Science Education = Res. Sci. Ed. Research in Science Education = Res Sci Educ Research in Science Education = Res. Sci. Educ. Research in Science Education Series = Res Sci Educ Ser Research in Science Education Series = Res. Sci. Educ. Ser. Research in Science Education, Vol 18 = Res Sci Ed Research in Science Education, Vol 18 = Res. Sci. Ed. Research in Science Education, Vol 19 = Res Sci Ed Research in Science Education, Vol 19 = Res. Sci. Ed. Research in Science Education, Vol 20 = Res Sci Ed Research in Science Education, Vol 20 = Res. Sci. Ed. Research in Science Education, Vol 21, 1991 = Res Sci Ed Research in Science Education, Vol 21, 1991 = Res. Sci. Ed. Research in Science Education, Vol 22, 1992 = Res Sci Ed Research in Science Education, Vol 22, 1992 = Res. Sci. Ed. Research in Science Education, Vol 24, 1994 = Res Sci Ed Research in Science Education, Vol 24, 1994 = Res. Sci. Ed. Research in Secondary School Curricula = Eur Educ R Research in Secondary School Curricula = Eur. Educ. R. Research in Secondary Schools = Adv Learn Behav Disa Research in Secondary Schools = Adv. Learn. Behav. Disa. Research in Second Language Learning (series) = Res Sec Lang Learn S Research in Second Language Learning (series) = Res. Sec. Lang. Learn. S. Research in Second Language Learning Series = Res Second Lang Lear Research in Second Language Learning Series = Res. Second Lang. Lear. Research in Social & Administrative Pharmacy = Res Soc Admin Pharm Research in Social & Administrative Pharmacy = Res. Soc. Admin. Pharm. Research in Social & Administrative Pharmacy = Res Soc Adm Pharm Research in Social & Administrative Pharmacy = Res. Soc. Adm. Pharm. Research in social & administrative pharmacy : RSAP = Res Social Adm Pharm Research in Social Education = Res Soc Educ Research in Social Education = Res. Soc. Educ. Research in Social Issues in Management Series = Res Soc Iss Man Ser Research in Social Issues in Management Series = Res. Soc. Iss. Man. Ser. Research in Social Movements, Conflicts and Change = Res Soc Mov Confl Ch Research in Social Movements, Conflicts and Change = Res. Soc. Mov. Confl. Ch. Research in Social Movements, Conflicts and Change Series = Res Soc Mov Research in Social Movements, Conflicts and Change Series = Res. Soc. Mov. Research in Social Movements Conflicts and Change Series = Res Soc Mov Confl Ch Research in Social Movements Conflicts and Change Series = Res. Soc. Mov. Confl. Ch. Research in Social Movements, Conflicts and Change, Vol 26 = Res Soc Mov Confl Ch Research in Social Movements, Conflicts and Change, Vol 26 = Res. Soc. Mov. Confl. Ch. Research in Social Movements, Conflicts and Change, Vol 27 = Res Soc Mov Confl Ch Research in Social Movements, Conflicts and Change, Vol 27 = Res. Soc. Mov. Confl. Ch. Research in Social Movements, Conflicts and Change, Vol 28 = Res Soc Mov Confl Ch Research in Social Movements, Conflicts and Change, Vol 28 = Res. Soc. Mov. Confl. Ch. Research in Social Problems and Public Policy = Res Soc Probl Public Research in Social Problems and Public Policy = Res. Soc. Probl. Public Research in Social Science and Disability = Res Soc Sci Disabil Research in Social Science and Disability = Res. Soc. Sci. Disabil. Research In Sociology Of Education And Socialization = Res Sociol Educ Social Research in sports medicine (Print) = Res Sports Med Research in Sports Medicine = Res Sports Med Research in Sports Medicine = Res. Sports Med. Research Institute of Geodesy Topography and Cartography Publications = Res Inst Geodesy Top Research Institute of Geodesy Topography and Cartography Publications = Res. Inst. Geodesy Top. Research in Strategic Alliances = Res Strateg Alliance Research in Strategic Alliances = Res. Strateg. Alliance. Research in Structures, Structural Dynamics and Materials 1990 = Nasa Conf P Research in Structures, Structural Dynamics and Materials 1990 = Nasa. Conf. P. Research in Text Theory = Res Text Th Research in Text Theory = Res. Text Th. Research in The History of Economic Thought and Methodology : A Research Annual = Res Hist Ec Research in The History of Economic Thought and Methodology : A Research Annual = Res. Hist. Ec. Research in The History of Economic Thought and Methodology = Res Hist Econ Though Research in The History of Economic Thought and Methodology = Res. Hist. Econ. Though. Research in The History of Economic Thought and Methodology, Vol 24, Pt 1 = Res Hist Econ Though Research in The History of Economic Thought and Methodology, Vol 24, Pt 1 = Res. Hist. Econ. Though. Research in The History of Economic Thought and Methodology, Vol 25 Pt 1 = Res Hist Econ Though Research in The History of Economic Thought and Methodology, Vol 25 Pt 1 = Res. Hist. Econ. Though. Research in The History of Economic Thought and Methodology, Vol 26 Pt 1 = Res Hist Econ Though Research in The History of Economic Thought and Methodology, Vol 26 Pt 1 = Res. Hist. Econ. Though. Research in The History of Economic Thought and Methodology, Vol 27 Pt 1 = Res Hist Econ Though Research in The History of Economic Thought and Methodology, Vol 27 Pt 1 = Res. Hist. Econ. Though. Research in the service of medicine = Res Serv Med Research in The Sociology of Education = Res Sociol Educ Research in The Sociology of Education = Res. Sociol. Educ. Research in The Sociology of Health Care = Res Sociol Health Ca Research in The Sociology of Health Care = Res. Sociol. Health Ca. Research in the sociology of health care = Res Sociol Health Care Research in The Sociology of Organizations-a Research Annual = Res Sociol Organ-res Research in The Sociology of Organizations-a Research Annual = Res. Sociol. Organ-res. Research in The Sociology of Sport = Res Sociol Sport Research in The Sociology of Sport = Res. Sociol. Sport Research in The Sociology of Work = Res Sociol Work Research in The Sociology of Work = Res. Sociol. Work Research in The Teaching of English = Res Teach Engl Research in The Teaching of English = Res. Teach. Engl. Research Into Practice-reality and Gaps, Proceedings = Lect Notes Comput Sc Research Into Practice-reality and Gaps, Proceedings = Lect. Notes. Comput. Sc. Research Into Secondary Education = Eur Educ R Research Into Secondary Education = Eur. Educ. R. Research Into Spinal Deformities 1 = St Heal T Research Into Spinal Deformities 1 = St. Heal. T. Research Into Spinal Deformities 2 = St Heal T Research Into Spinal Deformities 2 = St. Heal. T. Research Into Spinal Deformities 2 = Stud Health Technol Research Into Spinal Deformities 2 = Stud. Health. Technol. Research Into Spinal Deformities 3 = St Heal T Research Into Spinal Deformities 3 = St. Heal. T. Research Into Spinal Deformities 3 = Stud Health Technol Research Into Spinal Deformities 3 = Stud. Health. Technol. Research Into Spinal Deformities 5 = St Heal T Research Into Spinal Deformities 5 = St. Heal. T. Research Into Spinal Deformities 5 = Stud Health Technol Research Into Spinal Deformities 5 = Stud. Health. Technol. Research Into Spinal Deformities 6 = St Heal T Research Into Spinal Deformities 6 = St. Heal. T. Research in Transportation Economics-a Research Annual = Res Trans E Research in Transportation Economics-a Research Annual = Res. Trans. E. Research in Transportation Economics : A Research Annual = Res Trans E Research in Transportation Economics : A Research Annual = Res. Trans. E. Research in urban economics = Res Urban Econ Research in Urbanism Series = Res Urban Ser Research in Urbanism Series = Res. Urban. Ser. Research in Urban Sociology = Res Urban Sociol Research in Urban Sociology = Res. Urban Sociol. Research in veterinary science = Res Vet Sci Research in Veterinary Science = Res Vet Sci Research in Veterinary Science = Res. Vet. Sci. Research In Veterinary Science=Res Vet Sci;; Research in virology = Res Virol Research in Virology = Res. Virol. Research In Virology=Res Virol;; Research in Virology = Res Virology Research in Virology = Res. Virology Research Issues in Real Estate = Res Iss Real Estate Research Issues in Real Estate = Res. Iss. Real Estate Research Issues in The Learning and Teaching of Algebra = Res Ag Math Research Issues in The Learning and Teaching of Algebra = Res. Ag. Math. Research Journal of Biotechnology = Res J Biotechnol Research Journal of Biotechnology = Res. J. Biotechnol. Research Journal of Chemistry and Environment = Res J Chem Environ Research Journal of Chemistry and Environment = Res. J. Chem. Environ. Research Journal of Environmental Sciences = Res. J. Environ. Sci. Research Journal of Textile and Apparel = Res. J. Text. Apparel Research Journal of The Water Pollution Control Federation = Res J Water Pollut C Research Journal of The Water Pollution Control Federation = Res. J. Water Pollut. C. Research Library - The Day After Tomorrow = A R L Minut Research Library - The Day After Tomorrow = A. R. L. Minut. Research management = Res Manage Research Management = Res Manage Research Management = Res. Manage. Research - Measurement - Approach : A Series of Monographs of The Physikalisch - Technische Bundesanstalt = Res Meas Ap Research - Measurement - Approach : A Series of Monographs of The Physikalisch - Technische Bundesanstalt = Res. Meas. Ap. Research---Measurement---Approval = Res. Meas. Approv. Research Methodologies in Public Health = Public Health 21st C Research Methodologies in Public Health = Public Health 21st. C. Research Methodology in Strategy and Management = Res Method Strat Man Research Methodology in Strategy and Management = Res. Method. Strat. Man. Research Methodology in Strategy and Management, Vol 2 = Res Method Strat Man Research Methodology in Strategy and Management, Vol 2 = Res. Method. Strat. Man. Research Methodology in Strategy and Management, Vol 3 = Res Method Strat Man Research Methodology in Strategy and Management, Vol 3 = Res. Method. Strat. Man. Research Methodology in Strategy and Management, Vol 4 = Res Method Strat Man Research Methodology in Strategy and Management, Vol 4 = Res. Method. Strat. Man. Research Methodology in Strategy and Management, Vol 5 = Res Method Strat Man Research Methodology in Strategy and Management, Vol 5 = Res. Method. Strat. Man. Research Methods for Primary Care = Res Meth Pr Research Methods for Primary Care = Res. Meth. Pr. Research Methods in Educational Technology = Res Methods Educ Tec Research Methods in Educational Technology = Res. Methods Educ. Tec. Research Methods in Plant Sciences: Allelopathy, Vol 7 = Plant Biochem Research Methods in Plant Sciences: Allelopathy, Vol 7 = Plant Biochem. Research Methods in Plant Sciences = Res Meth Plant Sci Research Methods in Plant Sciences = Res. Meth. Plant Sci. Research Methods in Social Studies Education: Contemporary Issues and Perspectives = Res Soc Educ Research Methods in Social Studies Education: Contemporary Issues and Perspectives = Res. Soc. Educ. Research Methods Series = Res Methods Ser Research Methods Series = Res. Methods Ser. Research Mission of Higher Education Institutions Outside The University Sector: Striving for Differentiation = High Educ Dynam Research Mission of Higher Education Institutions Outside The University Sector: Striving for Differentiation = High. Educ. Dynam. Research Monograph of The Centre for Aboriginal Economic Policy Research = Res Mg Cent Aborig E Research Monograph of The Centre for Aboriginal Economic Policy Research = Res. Mg. Cent. Aborig. E. Research Monographs in French Studies = Res Monogr Fr Stud Research Monographs in French Studies = Res. Monogr. Fr. Stud. Research Monographs in Parallel and Distributed Computing = Res Mg Par Research Monographs in Parallel and Distributed Computing = Res. Mg. Par. Research Needs and Applications to Reduce Erosion and Sedimentation in Tropical Steeplands = Iahs-aish P Research Needs and Applications to Reduce Erosion and Sedimentation in Tropical Steeplands = Iahs-aish. P. Research Notes in Mathematics = Res. Notes Math. Research Notes in Mathematics = Res Not Mat Research Notes in Mathematics = Res. Not. Mat. Research Notes in Neural Computing = R N Neur C Research Notes in Neural Computing = R. N. Neur. C. Research On African American Education = Res Afr Am Educ Research On African American Education = Res. Afr. Am. Educ. Research on aging = Res Aging Research on Aging = Res. Aging Research On Aging = Res Aging Research On Aging = Res. Aging Research On Alcoholics Anonymous and Spirituality in Addiction Recovery = Recent Dev Alcohol Research On Alcoholics Anonymous and Spirituality in Addiction Recovery = Recent. Dev. Alcohol. Research On Arctic Geese = Norsk Polarinst Skri Research On Arctic Geese = Norsk. Polarinst. Skri. Research on Chemical Intermediates = Res. Chem. Intermed. Research On Chemical Intermediates = Res Chem Intermediat Research On Chemical Intermediates = Res. Chem. Intermediat. Research On Crops = Res Crop Research On Crops = Res. Crop. Research On Eastern European History = Fors Osteurop Gesch Research On Eastern European History = Fors. Osteurop. Gesch. Research On Economic Inequality : A Research Annual = Res Ec Ineq Research On Economic Inequality : A Research Annual = Res. Ec. Ineq. Research On Economic Inequality = Res Ec Ineq Research On Economic Inequality = Res. Ec. Ineq. Research On Economic Inequality = Res Econ Inequal Research On Economic Inequality = Res. Econ. Inequal. Research On Education in Africa The Caribbean and The Middle East = Res Educ Afr Caribb Research On Education in Africa The Caribbean and The Middle East = Res. Educ. Afr. Caribb. Research On Emotion in Organizations = Res Emotion Organ Research On Emotion in Organizations = Res. Emotion Organ. Research On Hispanic and Latino Business = Res Hisp Latin Bus Research On Hispanic and Latino Business = Res. Hisp. Latin. Bus. Research On International Civic Engagement = Res Int Civ Engagem Research On International Civic Engagement = Res. Int. Civ. Engagem. Research On International Service Marketing: A State of The Art = Adv Int Marketing Research On International Service Marketing: A State of The Art = Adv. Int. Marketing. Research On Language and Social Interaction = Res Lang Soc Interac Research On Language and Social Interaction = Res. Lang. Soc. Interac. Research On Managing Groups and Teams = Res Manag Group Team Research On Managing Groups and Teams = Res. Manag. Group. Team. Research On Managing Groups and Teams = Res Manag Grp Team Research On Managing Groups and Teams = Res. Manag. Grp. Team. Research On Managing Groups and Teams, Vol 1 - 1998 = Res Manag Grp Team Research On Managing Groups and Teams, Vol 1 - 1998 = Res. Manag. Grp. Team. Research On Managing Groups and Teams, Vol 2 - 1999 = Res Manag Grp Team Research On Managing Groups and Teams, Vol 2 - 1999 = Res. Manag. Grp. Team. Research On Negotiation in Organizations : A Biannual Research Series = Res Negot O Research On Negotiation in Organizations : A Biannual Research Series = Res. Negot. O. Research On Negotiation in Organizations, Vol 6 - 1997 = Res Negot O Research On Negotiation in Organizations, Vol 6 - 1997 = Res. Negot. O. Research On Negotiation in Organizations, Vol 7 - 1999 = Res Negot O Research On Negotiation in Organizations, Vol 7 - 1999 = Res. Negot. O. Research On Physics Education = P Int Sch Phys Research On Physics Education = P. Int. Sch. Phys. Research On Religion and Education = Res Relig Educ Research On Religion and Education = Res. Relig. Educ. Research On Russia and Eastern European = Res Rus E Eur Research On Russia and Eastern European = Res. Rus. E. Eur. Research On Russia and Eastern Europe, Vol 2, 1996 = Res Rus E Eur Research On Russia and Eastern Europe, Vol 2, 1996 = Res. Rus. E. Eur. Research On Social Work Practice = Res Social Work Prac Research On Social Work Practice = Res. Social Work Prac. Research on social work practice = Res Soc Work Pract Research On Sociocultural Influences On Motivation and Learning = Res Sociocult Influ Research On Sociocultural Influences On Motivation and Learning = Res. Sociocult. Influ. Research on steroids = Res Steroids (Amst) Research On Stress and Coping in Education = Res Stress Coping Ed Research On Stress and Coping in Education = Res. Stress Coping Ed. Research On Technology in Social Studies Education = Res Methods Educ Tec Research On Technology in Social Studies Education = Res. Methods. Educ. Tec. Research On The Education of Asian and Pacific Americans = Res Educ Asian Pac Research On The Education of Asian and Pacific Americans = Res. Educ. Asian Pac. Research On The Menopause in The 1990s = Who Tech Rep Ser Research On The Menopause in The 1990s = Who. Tech. Rep. Ser. Research On Traffic Control Devices = Transport Res Rec Research On Traffic Control Devices = Transport. Res. Rec. Research Papers and Policy Studies = Res Pap Pol Research Papers and Policy Studies = Res. Pap. Pol. Research Papers in Education = Res Pap Educ Research Papers in Education = Res. Pap. Educ. Research Papers in Fertility and Reproductive Medicine = Int Congr Ser Research Papers in Fertility and Reproductive Medicine = Int. Congr. Ser. Research papers (University of Arkansas for Medical Sciences. History of Medicine Associates) = Res Pap Hist Med Assoc Research Paper USDA Forest Service = Res. Pap. USDA For. Serv. Research Perspectives and Case Studies in System Test and Diagnosis = Fr Electr T Research Perspectives and Case Studies in System Test and Diagnosis = Fr. Electr. T. Research Perspectives: Thought and Practice in Music Education = Adv Music Educ Res Research Perspectives: Thought and Practice in Music Education = Adv. Music Educ. Res. Research Policy in Librarianship and Information Science = Br Lib R D Research Policy in Librarianship and Information Science = Br. Lib. R. D. Research Policy=Res. Pol. Research Policy = Res Policy Research Policy = Res. Policy Research Previews = Res Previews Research Previews = Res. Previews Research Program Effectiveness = Res Program Eff Research Program Effectiveness = Res. Program Eff. Research Progress in Alzheimers and Dementia = Res Prog Alzheim Dem Research Progress in Alzheimers and Dementia = Res. Prog. Alzheim. Dem. Research Progress in Alzheimer's Disease and Dementia, Vol 4 = Res Prog Alzheim Dem Research Progress in Alzheimer's Disease and Dementia, Vol 4 = Res. Prog. Alzheim. Dem. Research progress in organic, biological and medicinal chemistry = Res Prog Org Biol Med Chem Research Progress in Organic, Biological and Medicinal Chemistry = Res. Prog. Org. Biol. Med. Chem. Research Projects in Dry Eye Syndrome = Dev Ophthalmol Research Projects in Dry Eye Syndrome = Dev. Ophthalmol. Research Publications : Association for Research in Nervous and Mental Disease = Res P Arnmd Research Publications : Association for Research in Nervous and Mental Disease = Res. P. Arnmd. Research Publications-association for Research in Nervous and Mental Disease = Res Publ Assoc Res N Research Publications-association for Research in Nervous and Mental Disease = Res. Publ. Assoc. Res. N. Research publications - Association for Research in Nervous and Mental Disease = Res Publ Assoc Res Nerv Ment Dis Research Publications, Association for Research in Nervous and Mental Disease = Res. Publ. Assoc. Res. Nerv. Ment. Dis. Research Quarterly for Exercise and Sport = Res Q Exercise Sport Research Quarterly for Exercise and Sport = Res. Q. Exercise Sport Research quarterly for exercise and sport = Res Q Exerc Sport Research Quarterly for Exercise and Sport = Res. Q. Exerc. Sport Research Quarterly For Exercise and Sport=Res Q Exerc Sport;; Research quarterly = Res Q Research Quarterly = Res. Q. Research Quarterly = Res Quart Research Quarterly = Res. Quart. Research report (Health Effects Institute) = Res Rep Health Eff Inst Research Report / Health Effects Institute=Res Rep Health Eff Inst;; Research Report, Health Effects Institute = Res. Rep. Health Eff. Inst. Research report. Naval Medical Research Institute (U.S.) = Res Rep Nav Med Res Inst (US) Research report. Naval School of Aviation Medicine (U.S.) = Res Rep U S Nav Sch Aviat Med Research Report of The Centre of Criminology, University of Toronto = Res Rep Cent Crimin Research Report of The Centre of Criminology, University of Toronto = Res. Rep. Cent. Crimin. Research Reports in Physics = Res Rep Phy Research Reports in Physics = Res. Rep. Phy. [Research reports]. Naval Medical Field Research Laboratory (Camp Lejeune, N.C.) = Res Rep U S Nav Med Field Res Lab Research Reports of the Anan College of Technology = Res. Rep. Anan College Tech. Research Reports of The Fish and Wildlife Service = Us Bur Sport Fish Research Reports of The Fish and Wildlife Service = Us. Bur. Sport. Fish Research Reports on Information Sciences = Res. Rep. Inf. Sci. Research Reports, United States Naval Medical Field Research Laboratory = Res. Rep. U. S. Nav. Med. Field Res. Lab. Research Report, United States Naval School of Aviation Medicine = Res. Rep. U. S. Nav. Sch. Aviat. Med. Research resources reporter = Res Resour Rep Research Reviews and Clinical Trials = Res Rev Clin Trials Research Reviews and Clinical Trials = Res. Rev. Clin. Trials Research Roundtable Series = Res Roundtable Ser Research Roundtable Series = Res. Roundtable Ser. Research Series = Res Series Research Series = Res. Series Research Strategy for Animal Production in Europe in The 21st Century = Eaap Public Research Strategy for Animal Production in Europe in The 21st Century = Eaap. Public. Research Studies in Nuclear Technology = Res S Nuc T Research Studies in Nuclear Technology = Res. S. Nuc. T. Research studies (Pullman, Wash.) = Res Stud Research Studies = Res Stud Research Studies = Res. Stud. Research Supporting Middle Grades Practice = Middle Grades Res J Research Supporting Middle Grades Practice = Middle Grades Res. J. Research-technology Management = Res Technol Manage Research-technology Management = Res. Technol. Manage. Research today = Res Today Research Traditions in Marketing = Int S Quant Market Research Traditions in Marketing = Int. S. Quant. Market. Research Trends in Contemporary Materials Science = Mater Sci Forum Research Trends in Contemporary Materials Science = Mater. Sci. Forum. Research Trends in Physics = Res. Trends Phys. Research Trends in Physics = Res Tr Phys Research Trends in Physics = Res. Tr. Phys. Reseaux - Ciephum = Reseaux Ciephum Resena historica (Mexico City, Mexico) = Resena Hist Resenha clinico-cientifica = Resen Clin Cient Resenha Clinico-Cientifica = Resen. Clin. Cient. Resenhas do Instituto de Matemática e Estatística da Universidade de São Paulo = Resenhas Reservoir Characterization - Recent Advances = Aapg Memoir Reservoir Characterization - Recent Advances = Aapg. Memoir. Reservoir Compartmentalization = Geol Soc Spec Publ Reservoir Compartmentalization = Geol. Soc. Spec. Publ. Reservoir Fisheries in India = Asian F Ind Reservoir Fisheries in India = Asian. F. Ind. Reservoir Simulation: Mathematical Techniques in Oil Recovery = Cbms-nsf Ma Reservoir Simulation: Mathematical Techniques in Oil Recovery = Cbms-nsf. Ma. Resident and staff physician = Resid Staff Physician Resident and Staff Physician = Resid. Staff Physician Residential Location Choice: Models and Applications = Adv Spat Sci Residential Location Choice: Models and Applications = Adv. Spat. Sci. Residential Segregation Patterns of Latinos in The United States, 1990-2000 = Lat Communities Residential Segregation Patterns of Latinos in The United States, 1990-2000 = Lat. Communities. Residual Currents and Long-term Transport = Coast Estuar Stud Residual Currents and Long-term Transport = Coast. Estuar. Stud. Residual Stresses Vii = Mater Sci Forum Residual Stresses Vii = Mater. Sci. Forum. Residual Stresses Vii, Proceedings = Mater Sci Forum Residual Stresses Vii, Proceedings = Mater. Sci. Forum. Residual Stress in Rails : Effects On Rail Integrity and Railroad Economics, Vols 1 and 2 = Eng Appl Fr Residual Stress in Rails : Effects On Rail Integrity and Railroad Economics, Vols 1 and 2 = Eng. Appl. Fr. Residual Stress Measurement and The Slitting Method = Mech Eng Ser Residual Stress Measurement and The Slitting Method = Mech. Eng. Ser. Residue reviews = Residue Rev Residue Reviews = Residue Rev Residue Reviews = Residue Rev. Resilience and The Behavior of Large-scale Systems = Scope Ser Resilience and The Behavior of Large-scale Systems = Scope. Ser. Resilience in Children = Ann Ny Acad Sci Resilience in Children = Ann. Ny. Acad. Sci. Resilience of Cities to Terrorist and Other Threats = Nato Sci Peace Secur Resilience of Cities to Terrorist and Other Threats = Nato. Sci. Peace. Secur. Resiliency of Gadid Stocks to Fishing and Climate Change = Low Wake Fi Resiliency of Gadid Stocks to Fishing and Climate Change = Low. Wake. Fi. Resiliency Reconsidered: Policy Implications of The Resiliency Movement = Educ Policy 21st Cen Resiliency Reconsidered: Policy Implications of The Resiliency Movement = Educ. Policy 21st. Cen. Resilient Cities: Cities and Adaptation to Climate Change - Proceedings of The Global Forum 2010 = Local Sustain Resilient Cities: Cities and Adaptation to Climate Change - Proceedings of The Global Forum 2010 = Local. Sustain. Resilient Control of Uncertain Dynamical Systems = Lect Notes Contr Inf Resilient Control of Uncertain Dynamical Systems = Lect. Notes. Contr. Inf. Resilient Modulus Testing for Pavement Components = Am Soc Test Mater Resilient Modulus Testing for Pavement Components = Am. Soc. Test. Mater. Resilient Networks and Services = Lect Notes Comput Sc Resilient Networks and Services = Lect. Notes. Comput. Sc. Res ipsa loquitur (Washington, D.C.) = Res Ipsa Loquitur Resistance Arteries = Exp Biol M Resistance Arteries = Exp. Biol. M. Resistance Arteries, Structure and Function = Int Congr Ser Resistance Arteries, Structure and Function = Int. Congr. Ser. Resistance to Antitumor Agents = E M I Lif S Resistance to Antitumor Agents = E. M. I. Lif. S. Resistant Organisms: Global Impact On Continuum of Care = Roy Soc Med Int Cong Resistant Organisms: Global Impact On Continuum of Care = Roy. Soc. Med. Int. Cong. Res Maritimae - Cyprus and The Eastern Mediterranean From Prehistory to Late Antiquity = Amer Sch Orient Res Res Maritimae - Cyprus and The Eastern Mediterranean From Prehistory to Late Antiquity = Amer. Sch. Orient. Res Res Mechanica = Res Mech Res Mechanica = Res Mech. Resolving Ecosystem Complexity = Monogr Popul Biol Resolving Ecosystem Complexity = Monogr. Popul. Biol. Resolving The Antibiotic Paradox = Adv Exp Med Biol Resolving The Antibiotic Paradox = Adv. Exp. Med. Biol. Resolving The Late Paleozoic Ice Age in Time and Space = Geol S Am S Resolving The Late Paleozoic Ice Age in Time and Space = Geol. S. Am. S. Resolving The Russo-japanese Territorial Dispute = Nissan I Routl Jpn S Resolving The Russo-japanese Territorial Dispute = Nissan. I. Routl. Jpn. S. Resonance Ionization Spectroscopy 1988 = Inst Phys Conf Ser Resonance Ionization Spectroscopy 1988 = Inst. Phys. Conf. Ser. Resonance Ionization Spectroscopy 1990 = Inst Phys Conf Ser Resonance Ionization Spectroscopy 1990 = Inst. Phys. Conf. Ser. Resonance Ionization Spectroscopy 1992 = Inst Phys Conf Ser Resonance Ionization Spectroscopy 1992 = Inst. Phys. Conf. Ser. Resonance Ionization Spectroscopy 1994 - Seventh International Symposium = Aip Conf Proc Resonance Ionization Spectroscopy 1994 - Seventh International Symposium = Aip. Conf. Proc. Resonance Ionization Spectroscopy 1996 - Eighth International Symposium = Aip Conf Proc Resonance Ionization Spectroscopy 1996 - Eighth International Symposium = Aip. Conf. Proc. Resonance Ionization Spectroscopy 2000 = Aip Conf Proc Resonance Ionization Spectroscopy 2000 = Aip. Conf. Proc. Resonance Ionization Spectroscopy = Aip Conf Proc Resonance Ionization Spectroscopy = Aip. Conf. Proc. Resonances in Few-body Systems = Few Body Sy Resonances in Few-body Systems = Few. Body. Sy. Resonant Tunneling in Semiconductors = Nato Adv Sci I B-phy Resonant Tunneling in Semiconductors = Nato. Adv. Sci. I. B-phy. Resource-adaptive Cognitive Processes = Cogn Technol Resource-adaptive Cognitive Processes = Cogn. Technol. Resource Allocation in Project Management = Gor-publ Resource Allocation in Project Management = Gor-publ. Resource Allocation in Wireless Networks: Theory and Algorithms = Lect Notes Comput Sc Resource Allocation in Wireless Networks: Theory and Algorithms = Lect. Notes. Comput. Sc. Resource and Energy Economics=Resource Energy Econ. Resource and Energy Economics = Resour Energy Econ Resource and Energy Economics = Resour. Energy Econ. Resource and Market Projections for Forest Policy Development: Twenty-five Years of Experience With The Us Rpa Timber Assessment = Manag For Ecosyst Resource and Market Projections for Forest Policy Development: Twenty-five Years of Experience With The Us Rpa Timber Assessment = Manag. For. Ecosyst. Resource Conservation = Resour. Conserv. Resource Database Towards 2000 = Aimm Spectr Ser Resource Database Towards 2000 = Aimm. Spectr. Ser. Resource Discovery = Lect Notes Comput Sc Resource Discovery = Lect. Notes. Comput. Sc. Resource Geology = Resour Geol Resource Geology = Resour. Geol. Resource-light Approach to Morpho-syntactic Tagging = Lang Comput Resource-light Approach to Morpho-syntactic Tagging = Lang. Comput. Resource Management and Optimization = Resour Manage Opt Resource Management and Optimization = Resour. Manage. Opt. Resource Management-crc = Resource Manag-crc Resource Management-crc = Resource Manag-crc. Resource Recovery and Conservation = Resour Recov Conserv Resource Recovery and Conservation = Resour. Recov. Conserv. Resource Recovery and Conservation = Resour. Recovery Conserv. Resource Recovery, Confinement, and Remediation of Environmental Hazards = Ima V Math Resource Recovery, Confinement, and Remediation of Environmental Hazards = Ima. V. Math. Resource Recovery, Confinement, and Remediation of Environmental Hazards = Ima Vol Math Appl Resource Recovery, Confinement, and Remediation of Environmental Hazards = Ima. Vol. Math. Appl. Resource/reserve Estimation Practice in The Central West New South Wales Mining Industry = Aimm Spectr Ser Resource/reserve Estimation Practice in The Central West New South Wales Mining Industry = Aimm. Spectr. Ser. Resources and Conservation = Resour Conserv Resources and Conservation = Resour. Conserv. Resources and Energy=Resources Energy Resources and Energy = Resour Energ Resources and Energy = Resour. Energ. Resources and Engineering: 2010 Sree Conference On Resources and Engineering, Cre 2010 = Adv Eng Res Resources and Engineering: 2010 Sree Conference On Resources and Engineering, Cre 2010 = Adv. Eng. Res. Resources, Co-evolution and Artifacts: Theory in Cscw = Comput Supp Coop Wor Resources, Co-evolution and Artifacts: Theory in Cscw = Comput. Supp. Coop. Wor. Resources Conservation and Recycling = Resour Conserv Recy Resources Conservation and Recycling = Resour. Conserv. Recy. Resources, Conservation and Recycling = Resour. Conserv. Recycl. Resource-sensitivity Binding and Anaphora = Stud Linguist Philos Resource-sensitivity Binding and Anaphora = Stud. Linguist. Philos. Resources for American Literary Study = Resour Am Lit Stud Resources for American Literary Study = Resour. Am. Lit. Stud. Resources for biomedical research and education = Resour Biomed Res Educ Resources for Biomedical Research and Education = Resour. Biomed. Res. Educ. Resources for Culture = Svensk Unescoradets Resources for Culture = Svensk. Unescoradets. Resources, Governance and Civil Conflict = Routledge/ecpr Stud Resources, Governance and Civil Conflict = Routledge/ecpr. Stud. Resources Management = Iatul Proc Resources Management = Iatul. Proc. Resources Policy=Resources Pol. Resources Policy = Resour Policy Resources Policy = Resour. Policy Resource to Reserve Inputs Seminar - Towards 2000 = Aimm Spectr Ser Resource to Reserve Inputs Seminar - Towards 2000 = Aimm. Spectr. Ser. Resourcing Small and Medium Sized Enterprises: A Financial Growth Life Cycle Approach = Contrib Manag Sci Resourcing Small and Medium Sized Enterprises: A Financial Growth Life Cycle Approach = Contrib. Manag. Sci. Resourcing The 21st Century = Australas I Min Met Resourcing The 21st Century = Australas. I. Min. Met. Respace - Key Technologies for Reuseable Space Systems = Notes Numer Fluid Me Respace - Key Technologies for Reuseable Space Systems = Notes. Numer. Fluid. Me. Respiration; international review of thoracic diseases = Respiration Respiration physiology = Respir Physiol Respiration Physiology=Respir Physiol;; Respiration Physiology = Respir. Physiol. Respiration Physiology = Resp Physiol Respiration Physiology = Resp. Physiol. Respiration=Respiration;; Respiration = Respiration Respiratory Allergy : Advances in Clinical Immunology and Pulmonary Medicine = Int Congr Ser Respiratory Allergy : Advances in Clinical Immunology and Pulmonary Medicine = Int. Congr. Ser. Respiratory Allergy = Cl Immunol Respiratory Allergy = Cl. Immunol. Respiratory care clinics of North America = Respir Care Clin N Am Respiratory Care Clinics of North America=Respir Care Clin N Am;; Respiratory Care Clinics of North America = Respir. Care Clin. N. Am. Respiratory Care = Resp Care Respiratory Care = Resp. Care Respiratory care = Respir Care Respiratory Care = Respir Care Respiratory Care = Respir. Care Respiratory Disease and Its Management = Compet-base Crit Car Respiratory Disease and Its Management = Compet-base. Crit. Car. Respiratory Diseases in Infants and Children = Eur Respir Monogr Respiratory Diseases in Infants and Children = Eur. Respir. Monogr. Respiratory Diseases in The Elderly = Eur Respir Monogr Respiratory Diseases in The Elderly = Eur. Respir. Monogr. Respiratory Emergencies = Eur Respir Monogr Respiratory Emergencies = Eur. Respir. Monogr. Respiratory management = Respir Manage Respiratory Management = Respir. Manage. Respiratory medicine = Respir Med Respiratory Medicine=Respir Med;; Respiratory Medicine = Respir. Med. Respiratory Medicine = Resp Med Respiratory Medicine = Resp. Med. Respiratory Medicine Series = Respir Med Ser Respiratory Medicine Series = Respir. Med. Ser. Respiratory Pharmacology and Pharmacotherapy = Resp Pharm & Pharmac Respiratory Pharmacology and Pharmacotherapy = Resp. Pharm. &. Pharmac. Respiratory Physiology and Neurobiology = Respir. Physiol. Neurobiol. Respiratory physiology & neurobiology = Respir Physiol Neurobiol Respiratory Physiology & Neurobiology = Respir. Physiol. Neurobiol. Respiratory Physiology & Neurobiology = Resp Physiol Neurobi Respiratory Physiology & Neurobiology = Resp. Physiol. Neurobi. Respiratory research = Respir Res Respiratory Research = Respir Res Respiratory Research = Respir. Res. Respiratory Research = Resp Res Respiratory Research = Resp. Res. Respiratory System and Artificial Ventilation = Crit Care Med Ser Respiratory System and Artificial Ventilation = Crit. Care. Med. Ser. Respiratory therapy = Respir Ther Respiratory Therapy = Respir. Ther. Respiratory Toxicology and Risk Assessment = Ipcs Joint Ser Respiratory Toxicology and Risk Assessment = Ipcs. Joint. Ser. Respirology (Carlton, Vic.) = Respirology Respirology=Respirology;; Respirology = Respirology Responding to Change in Our Industry, Proceedings = Rec Adv Tob Responding to Change in Our Industry, Proceedings = Rec. Adv. Tob. Responding to Environmental Conflicts: Implications for Theory and Practice = Nato Asi 2 Responding to Environmental Conflicts: Implications for Theory and Practice = Nato. Asi. 2. Responsa meridiana = Responsa Meridiana Response of Upper Gulf Coast Estuaries to Holocene Climate Change and Sea-level Rise = Geol Soc Am Spec Pap Response of Upper Gulf Coast Estuaries to Holocene Climate Change and Sea-level Rise = Geol. Soc. Am. Spec. Pap. Responsibility and Punishment = Libr Ethics Appl Phi Responsibility and Punishment = Libr. Ethics. Appl. Phi. Responsibility of Contemporary Science and Intelligentsia = Serb Ac A C Responsibility of Contemporary Science and Intelligentsia = Serb. Ac. A. C. Responsible Europe = Palgrave Stud Eur Un Responsible Europe = Palgrave. Stud. Eur. Un. Responsive Community = Responsive Community Responsive Systems for Active Vibration Control = Nato Sci Ser Ii Math Responsive Systems for Active Vibration Control = Nato. Sci. Ser. Ii. Math. Res publica litterarum = Res Publica Litt Res publica litterarum: studies in the classical tradition = RPL Res publica (Liverpool, England) = Res Publica Ressortforschung Fur Den Okologischen Landbau 2009 = Landbauforsch-vti Ag Ressortforschung Fur Den Okologischen Landbau 2009 = Landbauforsch-vti. Ag. Restaurants and Institutions = Restaurants Inst. Restaurants & institutions = Restaurants Inst Restaurator-international Journal for The Preservation of Library and Archival Material = Restaurator Restaurator-international Journal for The Preservation of Library and Archival Material = Restaurator. Restless Earth = Nobel Conf Restless Earth = Nobel. Conf. Restless Universe - Applications of Gravitational N-body Dynamics to Planetary, Stellar and Galactic Systems = Scott Univ Sum Sch P Restless Universe - Applications of Gravitational N-body Dynamics to Planetary, Stellar and Galactic Systems = Scott. Univ. Sum. Sch. P. Restocking and Stock Enhancement of Marine Invertebrate Fisheries = Adv Mar Biol Restocking and Stock Enhancement of Marine Invertebrate Fisheries = Adv. Mar. Biol. Restoration and Eighteenth Century Theatre Research = Restor 18th Cent Th Restoration and Eighteenth Century Theatre Research = Restor. 18th. Cent. Th. Restoration Ecology = Restor Ecol Restoration Ecology = Restor. Ecol. Restoration: Is It Acceptable? = Brit Mus Occas Pap Restoration: Is It Acceptable? = Brit. Mus. Occas. Pap. Restoration of Degraded Rivers: Challenges, Issues and Experiences = Nato Asi 2 Restoration of Degraded Rivers: Challenges, Issues and Experiences = Nato. Asi. 2. Restoration of Forests = Nato Asi 2 Restoration of Forests = Nato. Asi. 2. Restoration of Israel = Beih Z Neutest Wiss Restoration of Israel = Beih. Z. Neutest. Wiss. Restoration of Lakes, Streams, Floodplains, and Bogs in Europe: Principles and Case Studies = Wetl Ecol Conserv Ma Restoration of Lakes, Streams, Floodplains, and Bogs in Europe: Principles and Case Studies = Wetl. Ecol. Conserv. Ma. Restoration of Lost Human Uses of The Environment = Setac Gen P Restoration of Lost Human Uses of The Environment = Setac. Gen. P. Restoration of Tropical Forest Ecosystems = Task Veg Sc Restoration of Tropical Forest Ecosystems = Task. Veg. Sc. Restoration quarterly = Restor Q Restorative Commons: Creating Health and Well-being Through Urban Landscapes = Usda For Serv Nrs Gt Restorative Commons: Creating Health and Well-being Through Urban Landscapes = Usda. For. Serv. Nrs. Gt. Restorative dentistry = Restorative Dent Restorative Dentistry = Restorative Dent. Restorative Justice: From Theory to Practice = Sociol Crime Law Dev Restorative Justice: From Theory to Practice = Sociol. Crime. Law. Dev. Restorative Justice On Trial = Nato Adv Sci I D-beh Restorative Justice On Trial = Nato. Adv. Sci. I. D-beh. Restorative Neurology and Neuroscience = Restor Neurol Neuros Restorative Neurology and Neuroscience = Restor. Neurol. Neuros. Restorative neurology and neuroscience = Restor Neurol Neurosci Restorative Neurology = Res Neurol Restorative Neurology = Res. Neurol. Restoring Function to The Injured Human Spinal Cord = Adv Anat Embryol Cel Restoring Function to The Injured Human Spinal Cord = Adv. Anat. Embryol. Cel. Restoring The Middle Ebro Floodplains = Env Remed Tech Regul Restoring The Middle Ebro Floodplains = Env. Remed. Tech. Regul. Restoring The Mystery of The Rainbow: Literature's Refraction of Science, Vols 1 and 2 = Dqr Stud Lit Restoring The Mystery of The Rainbow: Literature's Refraction of Science, Vols 1 and 2 = Dqr. Stud. Lit. Restoring Women's History Through Historic Preservation = Cent Books Contemp Restoring Women's History Through Historic Preservation = Cent. Books. Contemp. Restriction and Saturation = Linguist Inq Monogr Restriction and Saturation = Linguist. Inq. Monogr. Restructuring and Managing The Telecommunications Sector = World Bank Restructuring and Managing The Telecommunications Sector = World. Bank. Restructuring Asian Economics for The New Millennium, Vols 9a and 9b = Res Asia Es Restructuring Asian Economics for The New Millennium, Vols 9a and 9b = Res. Asia. Es. Restructuring Eastern Germany = Ger Annu Spat Res Po Restructuring Eastern Germany = Ger. Annu. Spat. Res. Po. Re/structuring Science Education: Reuniting Sociological and Psychological Perspectives = Cult Stud Sci Educ Re/structuring Science Education: Reuniting Sociological and Psychological Perspectives = Cult. Stud. Sci. Educ. Restructuring The Countryside : Environmental Policy in Practice = Aveb St Gr Restructuring The Countryside : Environmental Policy in Practice = Aveb. St. Gr. Results and Problems in Cell Differentiation = Results Probl Cell D Results and Problems in Cell Differentiation = Results Probl. Cell D. Results and problems in cell differentiation = Results Probl Cell Differ Results and Problems in Cell Differentiation = Results Probl. Cell Differ. Results and Problems In Cell Differentiation=Results Probl Cell Differ;; Results in Mathematics = Results Math. Results in Mathematics = Results Math Results in Mathematics = Results Math. Results of The Iastp Program = Adv Space Res Results of The Iastp Program = Adv. Space. Res. Results of The Iastp Program = Adv Space Res-series Results of The Iastp Program = Adv. Space. Res-series. Resume = Resume Resurrection = W U Neu Test Resurrection = W. U. Neu. Test. Resuscitation of Patients in Ventricular Fibrillation From The Perspective of Emergency Medical Services = Cardiol Res Clin Dev Resuscitation of Patients in Ventricular Fibrillation From The Perspective of Emergency Medical Services = Cardiol. Res. Clin. Dev. Resuscitation=Resuscitation;; Resuscitation = Resuscitation Resveratrol and Health = Ann Ny Acad Sci Resveratrol and Health = Ann. Ny. Acad. Sci. Retail Industry - General Merchandisers and Discounters, Specialty Merchandisers, Apparel Specialty, and Food/drug Retailers = Aimr Ind Anal Ser Retail Industry - General Merchandisers and Discounters, Specialty Merchandisers, Apparel Specialty, and Food/drug Retailers = Aimr. Ind. Anal. Ser. Retail Supply Chain Management: Quantitative Models and Empirical Studies = Int Ser Oper Res Man Retail Supply Chain Management: Quantitative Models and Empirical Studies = Int. Ser. Oper. Res. Man. Retaining The Original = St His A Ss Retaining The Original = St. His. A. Ss. Retheorizing Religion in Nepal = Relig Cult Crit Retheorizing Religion in Nepal = Relig. Cult. Crit. Rethinking American Electoral Democracy = Controv Elect Democr Rethinking American Electoral Democracy = Controv. Elect. Democr. Rethinking Capitalism: Community and Responsibility in Business = Routl Stud Bus Ethic Rethinking Capitalism: Community and Responsibility in Business = Routl. Stud. Bus. Ethic. Rethinking China in The 1950s = Chin Hist Soc Rethinking China in The 1950s = Chin. Hist. Soc. Rethinking Educational Practice Through Reflexive Inquiry: Essays in Honour of Susan Groundwater-smith = Prof Learn Dev Sch H Rethinking Educational Practice Through Reflexive Inquiry: Essays in Honour of Susan Groundwater-smith = Prof. Learn. Dev. Sch. H. Rethinking Evolution in The Museum: Envisioning African Origins = Mus Mean Rethinking Evolution in The Museum: Envisioning African Origins = Mus. Mean. Rethinking Explanation = Bost Stud Philos Sci Rethinking Explanation = Bost. Stud. Philos. Sci. Rethinking Gandhi and Nonviolent Relationality = Routl Stud Mod Hist Rethinking Gandhi and Nonviolent Relationality = Routl. Stud. Mod. Hist. Rethinking Gender and Youth Sport = Int Stud Phys Educ Y Rethinking Gender and Youth Sport = Int. Stud. Phys. Educ. Y. Rethinking Globalizations = Rethink Glob Rethinking Globalizations = Rethink. Glob. Rethinking Globalizations = Rethink Global Rethinking Globalizations = Rethink. Global. Rethinking Historical Injustice and Reconciliation in Northeast Asia: The Korean Experience = Polit Asia Rethinking Historical Injustice and Reconciliation in Northeast Asia: The Korean Experience = Polit. Asia. Rethinking History = Rethink Hist Rethinking History = Rethink. Hist. Rethinking Inclusive Education: The Philosophers of Difference in Practice = Incl Educ Cross Cult Rethinking Inclusive Education: The Philosophers of Difference in Practice = Incl. Educ. Cross. Cult. Rethinking Insecurity, War and Violence = Rethink Glob Rethinking Insecurity, War and Violence = Rethink. Glob. Re-thinking Intellectual Property: The Political Economy of Copyright Protection in The Digital Era = Routl Cavend Res Int Re-thinking Intellectual Property: The Political Economy of Copyright Protection in The Digital Era = Routl. Cavend. Res. Int. Rethinking International Development = Rethink Int Dev Rethinking International Development = Rethink. Int. Dev. Rethinking Japanese Security: Internal and External Dimensions = Secur Gov Rethinking Japanese Security: Internal and External Dimensions = Secur. Gov. Rethinking Knowledge Management: From Knowledge Objects to Knowledge Processes = Inform Sci Knowl Man Rethinking Knowledge Management: From Knowledge Objects to Knowledge Processes = Inform. Sci. Knowl. Man. Rethinking Language, Mind, and World Dialogically: Interactional and Contextual Theories of Human Sense-making = Adv Cult Psychol Con Rethinking Language, Mind, and World Dialogically: Interactional and Contextual Theories of Human Sense-making = Adv. Cult. Psychol. Con. Rethinking Language Pedagogy From A Corpus Perspective = Lodz Stud Language Rethinking Language Pedagogy From A Corpus Perspective = Lodz. Stud. Language Rethinking Maps = Routl Stud Hum Geogr Rethinking Maps = Routl. Stud. Hum. Geogr. Rethinking Media Change: The Aesthetics of Transition = Media Transit Rethinking Media Change: The Aesthetics of Transition = Media Transit. Rethinking Municipal Privatization = New Polit Econ Ser Rethinking Municipal Privatization = New. Polit. Econ. Ser. Rethinking Musical Modernism = Sasa Dept Fine Arts Rethinking Musical Modernism = Sasa. Dept. Fine. Arts. Rethinking Peace and Conflict Studies = Rethink Peace Confl Rethinking Peace and Conflict Studies = Rethink. Peace Confl. Rethinking Peter Weiss = German Life Civiliza Rethinking Peter Weiss = German. Life. Civiliza. Rethinking Philosophy of Religion = Pers Contin Philos Rethinking Philosophy of Religion = Pers. Contin. Philos. Rethinking Popper = Bost Stud Philos Sci Rethinking Popper = Bost. Stud. Philos. Sci. Rethinking Popular Representation = Palgr Stud Gov Secur Rethinking Popular Representation = Palgr. Stud. Gov. Secur. Rethinking Race, Politics, and Poetics: C L R James Critique of Modernity = Routl Stud Cult Hist Rethinking Race, Politics, and Poetics: C L R James Critique of Modernity = Routl. Stud. Cult. Hist. Rethinking Regional Innovation and Change: Path Dependency Or Regional Breakthrough = Econ Sci Technol Inn Rethinking Regional Innovation and Change: Path Dependency Or Regional Breakthrough = Econ. Sci. Technol. Inn. Rethinking Scientific Change and Theory Comparison: Stabilities, Ruptures, Incommensurabilities? = Bost Stud Philos Sci Rethinking Scientific Change and Theory Comparison: Stabilities, Ruptures, Incommensurabilities? = Bost. Stud. Philos. Sci. Rethinking Sequentiality: Linguistics Meets Conversational Interaction = Prag Beyond New Ser Rethinking Sequentiality: Linguistics Meets Conversational Interaction = Prag. Beyond. New. Ser. Rethinking The Americas = Rethink Am Rethinking The Americas = Rethink. Am. Rethinking The Concept of The Grotesque = Stud Comp Lit Ser Rethinking The Concept of The Grotesque = Stud. Comp. Lit. Ser. Rethinking The Curriculum = Cont Stud E Rethinking The Curriculum = Cont. Stud. E. Rethinking The European Union: Igc 2000 and Beyond = Curr Europe Iss Rethinking The European Union: Igc 2000 and Beyond = Curr. Europe. Iss. Rethinking The Liberal Peace: External Models and Local Alternatives = Cass Ser Peacekeepin Rethinking The Liberal Peace: External Models and Local Alternatives = Cass. Ser. Peacekeepin. Rethinking The Roots of Terrorism = Rethink Peace Confl Rethinking The Roots of Terrorism = Rethink. Peace. Confl. Rethinking Transnationalism = Transnatl Ser Rethinking Transnationalism = Transnatl. Ser. Rethinking Work and Learning: Adult and Vocational Education for Social Sustainability = Tech Vocat Ed Train Rethinking Work and Learning: Adult and Vocational Education for Social Sustainability = Tech. Vocat. Ed. Train. Rethinnking The Coordinate-subordinate Dichotomy: Interpersonal Grammar and The Analysis of Adverbial Clauses in English = Top Engl Linguist Rethinnking The Coordinate-subordinate Dichotomy: Interpersonal Grammar and The Analysis of Adverbial Clauses in English = Top. Engl. Linguist. Reti Medievali Rivista = Reti Mediev Riv Reti Medievali Rivista = Reti Mediev. Riv. Retina, Aging and Transplantation = Sem Ophtalm Retina, Aging and Transplantation = Sem. Ophtalm. Retinal Degeneration: Causes, Diagnosis and Treatment = Eye Vis Res Dev Retinal Degeneration: Causes, Diagnosis and Treatment = Eye. Vis. Res. Dev. Retinal Degenerations: Mechanisms and Experimental Therapy = Adv Exp Med Biol Retinal Degenerations: Mechanisms and Experimental Therapy = Adv. Exp. Med. Biol. Retinal Degenerative Diseases = Adv Exp Med Biol Retinal Degenerative Diseases = Adv. Exp. Med. Biol. Retinal Degenerative Diseases: Laboratory and Therapeutic Investigations = Adv Exp Med Biol Retinal Degenerative Diseases: Laboratory and Therapeutic Investigations = Adv. Exp. Med. Biol. Retinal Pigment Epithelium and Macular Diseases = Doc Ophth P Retinal Pigment Epithelium and Macular Diseases = Doc. Ophth. P. Retina (Philadelphia, Pa.) = Retina Retina=Retina;; Retina = Retina Retina-the Journal of Retinal and Vitreous Diseases = Retina-j Ret Vit Dis Retina-the Journal of Retinal and Vitreous Diseases = Retina-j. Ret. Vit. Dis. Retinitis Pigmentosa: Causes, Diagnosis, and Treatment = Eye Vis Res Dev Retinitis Pigmentosa: Causes, Diagnosis, and Treatment = Eye. Vis. Res. Dev. Retinoblastoma = Pediatr Oncol-berlin Retinoblastoma = Pediatr. Oncol-berlin. Retinoids: Methods and Protocols = Methods Mol Biol Retinoids: Methods and Protocols = Methods Mol. Biol. Retransplantation = Transp Cl Immun Sfmm Retransplantation = Transp. Cl. Immun. Sfmm. Retreat From Marriage = Fam Amer R Retreat From Marriage = Fam. Amer. R. Retribution Et Intercession Dans Le Deuteronome = Beih Z Alttest Wiss Retribution Et Intercession Dans Le Deuteronome = Beih. Z. Alttest. Wiss. Retrospectives On Public Finance = Fisc Ref D Retrospectives On Public Finance = Fisc. Ref. D. Retrotransposition, Diversity and The Brain = Res Per Neurosci Retrotransposition, Diversity and The Brain = Res. Per. Neurosci. Retroviral Proteases = Method Enzymol Retroviral Proteases = Method. Enzymol. Retrovirology = Retrovirology Returning The Gift = Sun Tracks Returning The Gift = Sun. Tracks. Returning (to) Communities: Theory, Culture and Political Practice of The Communal = Crit Stud Returning (to) Communities: Theory, Culture and Political Practice of The Communal = Crit. Stud. Return of Omega-3 Fatty Acids Into The Food Supply = World Rev Nutr Diet Return of Omega-3 Fatty Acids Into The Food Supply = World. Rev. Nutr. Diet. Return of Yhwh: The Tension Between Deliverance and Repentance in Isaiah 40-55 = Beih Z Alttest Wiss Return of Yhwh: The Tension Between Deliverance and Repentance in Isaiah 40-55 = Beih. Z. Alttest. Wiss. Return to Les Nourritures Terrestres = Faux Titre Return to Les Nourritures Terrestres = Faux. Titre. Reumatismo = Reumatismo Reumatizam=Reumatizam;; Reumatizam = Reumatizam Reumatologia = Reumatologia Reuniting The Antipodes - Constructive and Nonstandard Views of The Continuum = Synth Libr Reuniting The Antipodes - Constructive and Nonstandard Views of The Continuum = Synth. Libr. Reuse of Off-the-shelf Components, Proceedings = Lect Notes Comput Sc Reuse of Off-the-shelf Components, Proceedings = Lect. Notes. Comput. Sc. Revealing Antiquity = Reveal. Antiq. Revealing The Molecular Universe: One Antenna Is Never Enough = Astr Soc P Revealing The Molecular Universe: One Antenna Is Never Enough = Astr. Soc. P. Revealing The Mysterion: The Use of Mystery in Daniel and Second Temple Judaism With Its Bearing On First Corinthians = Beih Z Neutest Wiss Revealing The Mysterion: The Use of Mystery in Daniel and Second Temple Judaism With Its Bearing On First Corinthians = Beih. Z. Neutest. Wiss. Revenue-cycle strategist = Revenue-cycle Strateg Revenue Management With Flexible Products: Models and Methods for The Broadcasting Industry = Lect Notes Econ Math Revenue Management With Flexible Products: Models and Methods for The Broadcasting Industry = Lect. Notes. Econ. Math. Reverberation Mapping of The Broad-line Region in Active Galactic Nuclei = Astr Soc P Reverberation Mapping of The Broad-line Region in Active Galactic Nuclei = Astr. Soc. P. Reversal of Aging: Resetting The Pineal Clock = Ann Ny Acad Sci Reversal of Aging: Resetting The Pineal Clock = Ann. Ny. Acad. Sci. Reverse Chemical Genetics: Methods and Protocols = Methods Mol Biol Reverse Chemical Genetics: Methods and Protocols = Methods Mol. Biol. Reverse Engineering: An Industrial Perspective = Springer Ser Adv Man Reverse Engineering: An Industrial Perspective = Springer. Ser. Adv. Man. Reverse Engineering Biological Networks = Ann Ny Acad Sci Reverse Engineering Biological Networks = Ann. Ny. Acad. Sci. Review (Federation of American Health Systems) = Rev Fed Am Health Syst Review, Federation of American Health Systems = Rev. Fed. Am. Health Syst. Review - Federation of American Hospitals = Rev Fed Am Hosp Review, Federation of American Hospitals = Rev. Fed. Am. Hosp. Review for religious = Rev Relig Reviewing Asian America = Assoc As Am Reviewing Asian America = Assoc. As. Am. Re-viewing Space: Figurative Language in Architects' Assessment of Built Space = Appl Cogn Linguist Re-viewing Space: Figurative Language in Architects' Assessment of Built Space = Appl. Cogn. Linguist. Reviewing Steroids in The Treatment of Ibd = Res Clin Forums Reviewing Steroids in The Treatment of Ibd = Res. Clin. Forums. Reviewing The Cold War: Approaches, Interpretations, Theory = Nobel Symp Reviewing The Cold War: Approaches, Interpretations, Theory = Nobel. Symp. Review (International Commission of Jurists (1952- ) = Rev Int Comm Jurists Review-latin American Literature and Arts = Review-lat Am Lit Review-latin American Literature and Arts = Review-lat. Am. Lit. Review-literature and Arts of The Americas = Review Review-literature and Arts of The Americas = Review. Review of Accounting Studies = Rev Account Stud Review of Accounting Studies = Rev. Account. Stud. Review of Accounting Studies=Rev. Acc. Stud. Review of Accounting Studies = Rev Acc Stud Review of Accounting Studies = Rev. Acc. Stud. Review of African Political Economy=Rev. African Polit. Economy Review of African political economy = Rev Afr Polit Econ Review of African Political Economy = Rev Afr Polit Econ Review of African Political Economy = Rev. Afr. Polit. Econ. Review of Agricultural Economics=Rev. Agr. Econ. Review of Agricultural Economics = Rev Agr Econ Review of Agricultural Economics = Rev. Agr. Econ. Review of Agricultural Economics = Rev Agric Econ Review of Agricultural Economics = Rev. Agric. Econ. Review of Allergy and Applied Immunology = Rev Allergy Review of Allergy and Applied Immunology = Rev. Allergy Review of allergy = Rev Allergy Review of Allergy = Rev. Allergy Review of Austrian Economics=Rev. Austrian Econ. Review of Automotive Engineering = Rev. Automot. Eng. Review of Black Political Economy = Rev Black Polit Econ Review of Black Political Economy = Rev. Black Polit. Econ. Review of Black Political Economy=Rev. Black Polit. Economy Review of Business and Economic Research=Rev. Bus. Econ. Res. Review of Business and Economic Research = Rev Bus Econ Res Review of Business and Economic Research = Rev. Bus. Econ. Res. Review of Central and East European Law = Rev Cent E Eur Law Review of Central and East European Law = Rev. Cent. E. Eur. Law Review of Child Development Research = Rev Child Dev Res Review of Child Development Research = Rev. Child Dev. Res. Review of Czechoslovak medicine = Rev Czech Med Review of Czechoslovak Medicine = Rev Czech Med Review of Czechoslovak Medicine = Rev. Czech. Med. Review of Derivatives Research=Rev. Derivatives Res. Review of Derivatives Research = Rev Deriv Res Review of Derivatives Research = Rev. Deriv. Res. Review of Development Economics = Rev Dev Econ Review of Development Economics = Rev. Dev. Econ. Review of Development Economics=Rev. Devel. Econ. Review of eastern medical sciences = Rev East Med Sci Review of economic conditions in Italy = Rev Econ Cond Italy Review of Economic Conditions in Italy=Rev. Econ. Cond. Italy Review of Economic Conditions in Italy = Rev Econ Cond Italy Review of Economic Conditions in Italy = Rev. Econ. Cond. Italy Review of Economic Design = Rev Econ Des Review of Economic Design = Rev. Econ. Des. Review of Economic Design=Rev. Econ. Design Review of Economic Dynamics=Rev. Econ. Dynam. Review of Economic Dynamics = Rev Econ Dynam Review of Economic Dynamics = Rev. Econ. Dynam. Review of Economics and Statistics = Rev Econ Stat Review of Economics and Statistics = Rev. Econ. Stat. Review of Economics and Statistics=Rev. Econ. Statist. Review of Economics of The Household = Rev Econ Household Review of Economics of The Household = Rev. Econ. Household Review of Economic Statistics = Rev Econ Statistics Review of Economic Statistics = Rev. Econ. Statistics Review of Economic Studies = Rev. Econom. Stud. Review of Economic Studies=Rev. Econ. Stud. Review of Economic Studies = Rev Econ Stud Review of Economic Studies = Rev. Econ. Stud. Review of educational research = Rev Educ Res Review of Educational Research = Rev Educ Res Review of Educational Research = Rev. Educ. Res. Review of English Studies = Rev Engl Stud Review of English Studies = Rev. Engl. Stud. Review of Environmental Economics and Policy = Rev Env Econ Policy Review of Environmental Economics and Policy = Rev. Env. Econ. Policy Review of Existential Psychology & Psychiatry = Rev Exist Psychol Ps Review of Existential Psychology & Psychiatry = Rev. Exist. Psychol. Ps. Review of Faith & International Affairs = Rev Faith Int Aff Review of Faith & International Affairs = Rev. Faith Int. Aff. Review of Finance = Rev Financ Review of Finance = Rev. Financ. Review of Financial Economics=Rev. Finan. Econ. Review of Financial Studies = Rev Financ Stud Review of Financial Studies = Rev. Financ. Stud. Review of Financial Studies=Rev. Finan. Stud. Review of General Psychology = Rev Gen Psychol Review of General Psychology = Rev. Gen. Psychol. Review of Higher Education = Rev High Educ Review of Higher Education = Rev. High. Educ. Review of historical demography = Rev Hist Demogr Review of Income and Wealth=Rev. Income Wealth Review of Income and Wealth = Rev Income Wealth Review of Income and Wealth = Rev. Income Wealth Review of Industrial Organization=Rev. Ind. Organ. Review of Industrial Organization = Rev Ind Organ Review of Industrial Organization = Rev. Ind. Organ. Review of International Economics=Rev. Int. Econ. Review of International Economics = Rev Int Econ Review of International Economics = Rev. Int. Econ. Review of International Organizations = Rev Int Organ Review of International Organizations = Rev. Int. Organ. Review of International Political Economy = Rev Int Polit Econ Review of International Political Economy = Rev. Int. Polit. Econ. Review of International Political Economy=Rev. Int. Polit. Economy Review of International Studies=Rev. Int. Stud. Review of International Studies = Rev Int Stud Review of International Studies = Rev. Int. Stud. Review of law and social change. New York University = Rev Law Soc Change Review of Marketing and Agricultural Economics=Rev. Marketing Agr. Econ. Review of Metaphysics = Rev Metaphys Review of Metaphysics = Rev. Metaphys. Review of Metaphysics = RMeta Review of National Literatures = Rev Natl Literatures Review of National Literatures = Rev. Natl. Literatures Review of Network Economics = Rev Netw Econ Review of Network Economics = Rev. Netw. Econ. Review of Palaeobotany and Palynology = Rev Palaeobot Palyno Review of Palaeobotany and Palynology = Rev. Palaeobot. Palyno. Review of palaeobotany and palynology = Rev Palaeobot Palynol Review of Palaeobotany and Palynology = Rev. Palaeobot. Palynol. Review of Physical Chemistry of Japan = Rev Phys Chem Jpn Review of Physical Chemistry of Japan = Rev. Phys. Chem. Jpn. Review of Physics in Technology = Rev. Phys. Technol. Review of Plant Pathology = Rev. Plant Pathol. Review of Policy Research = Rev Policy Res Review of Policy Research = Rev. Policy Res. Review of Political Economy=Rev. Polit. Economy Review of Politics = Rev Polit Review of Politics = Rev. Polit. Review of Progress in Coloration and Related Topics = Rev. Prog. Color. Relat. Top. Review of Progress in Quantitative Nondestructive Evaluation = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vol 27a and 27b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vol 27a and 27b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 12a and 12b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 12a and 12b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 13a and 13b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 13a and 13b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 14a and 14b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 14a and 14b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 15a and 15b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 15a and 15b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 16a and 16b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 16a and 16b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 19a and 19b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 19a and 19b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 20a and 20b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 20a and 20b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 21a & B = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 21a & B = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 22a and 22b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 22a and 22b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 23a and 23b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 23a and 23b = Rev. Prog. Q. Review of Progress in Quantitative Nondestructive Evaluation, Vols 24a and 24b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 24a and 24b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 25a and 25b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 25a and 25b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 26a and 26b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 26a and 26b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 28a and 28b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 28a and 28b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 29a and 29b = Aip Conf Proc Review of Progress in Quantitative Nondestructive Evaluation, Vols 29a and 29b = Aip. Conf. Proc. Review of Progress in Quantitative Nondestructive Evaluation, Vols 9a and 9b = Rev Prog Q Review of Progress in Quantitative Nondestructive Evaluation, Vols 9a and 9b = Rev. Prog. Q. Review of public data use = Rev Public Data Use Review of Public Data Use=Rev. Public Data Use Review of Public Data Use = Rev Public Data Use Review of Public Data Use = Rev. Public Data Use Review of Public Personnel Administration = Rev Public Pers Adm Review of Public Personnel Administration = Rev. Public Pers. Adm. Review of Quantitative Finance and Accounting=Rev. Quant. Finance Acc. Review of Radical Political Economics = Rev Radical Pol Econ Review of Radical Political Economics = Rev. Radical Pol. Econ. Review of Radical Political Economics=Rev. Radical Polit. Econ. Review of Regional Research=Rev. Reg. Res. Review of Regional Studies=Rev. Reg. Stud. Review of religious research = Rev Relig Res Review of Religious Research = Rev Relig Res Review of Religious Research = Rev. Relig. Res. Review Of Religious Research = Rev. Relig. Res. Review of Research and Practice, Vol 3 = Nabe Rev Res Pract Review of Research and Practice, Vol 3 = Nabe. Rev. Res. Pract. Review of Research in Education, 20, 1994 = Rev Res Educ Review of Research in Education, 20, 1994 = Rev. Res. Educ. Review of Research in Education, 21 = Rev Res Educ Review of Research in Education, 21 = Rev. Res. Educ. Review of Research in Education 22, 1997 = Rev Res Educ Review of Research in Education 22, 1997 = Rev. Res. Educ. Review of Research in Education, 23, 1998 = Rev Res Educ Review of Research in Education, 23, 1998 = Rev. Res. Educ. Review of Research in Education, 24 1999 = Rev Res Educ Review of Research in Education, 24 1999 = Rev. Res. Educ. Review of Research in Education 29, 2005 = Rev Res Educ Review of Research in Education 29, 2005 = Rev. Res. Educ. Review of Research in Education 30, 2006 = Rev Res Educ Review of Research in Education 30, 2006 = Rev. Res. Educ. Review of Research in Education = Rev Res Educ Review of Research in Education = Rev. Res. Educ. Review of Research in Education, Vol 31, 2007 = Rev Res Educ Review of Research in Education, Vol 31, 2007 = Rev. Res. Educ. Review of Research in Education, Vol 33, 2009 = Rev Res Educ Review of Research in Education, Vol 33, 2009 = Rev. Res. Educ. Review of Research in Education, Vol 34, 2010 = Rev Res Educ Review of Research in Education, Vol 34, 2010 = Rev. Res. Educ. Review of Scientific Instruments = Rev Sci Instrum Review of Scientific Instruments = Rev. Sci. Instrum. Review of social economy = Rev Soc Econ Review of Social Economy = Rev Soc Econ Review of Social Economy = Rev. Soc. Econ. Review of Social Economy=Rev. Soc. Economy Review of socialist law = Rev Social Law Review of social policy = Rev Soc Policy Review of Suicidology, 1997 = Rev Suicidol Review of Suicidology, 1997 = Rev. Suicidol. Review of Suicidology, 2000 = Rev Suicidol Review of Suicidology, 2000 = Rev. Suicidol. Review of Suicidology = Rev Suicidol Review of Suicidology = Rev. Suicidol. Review of surgery = Rev Surg Review of Surgery = Rev. Surg. Review of Symbolic Logic = Rev Symb Log Review of Symbolic Logic = Rev. Symb. Log. Review of the Activities Metallgesellschaft AG = Rev. Act. Metallges. AG Review of The Electrical Communications Laboratories = Rev Elec Commun Lab Review of The Electrical Communications Laboratories = Rev. Elec. Commun. Lab. Review of Urban and Regional Development Studies=Rev. Urban Reg. Devel. Stud. Review of urban and regional development studies : RURDS : journal of the Applied Regional Conference = RURDS Rev Urb Reg Dev Stud Review of World Economics=Rev. World Econ. Review of World Economics = Rev World Econ Review of World Economics = Rev. World Econ. Review (Patient Focused Care Association) = Rev Patient Focus Care Assoc Review, Patient Focused Care Association = Rev. Patient Focus. Care Assoc. Reviews in American history = Rev Am Hist Reviews in American History = Rev Am Hist Reviews in American History = Rev. Am. Hist. Reviews in Analytical Chemistry = Rev Anal Chem Reviews in Analytical Chemistry = Rev. Anal. Chem Reviews in Analytical Chemistry = Rev. Anal. Chem. Reviews in Aquaculture = Rev Aquacult Reviews in Aquaculture = Rev. Aquacult. Reviews in Aquatic Sciences = Rev Aquat Sci Reviews in Aquatic Sciences = Rev. Aquat. Sci. Reviews in Biochemical Toxicology = Rev Biochem Toxicol Reviews in Biochemical Toxicology = Rev. Biochem. Toxicol. Reviews in cardiovascular medicine = Rev Cardiovasc Med Reviews in Cardiovascular Medicine = Rev Cardiovasc Med Reviews in Cardiovascular Medicine = Rev. Cardiovasc. Med. Reviews in Chemical Engineering = Rev Chem Eng Reviews in Chemical Engineering = Rev. Chem. Eng. Reviews in Clinical and Basic Pharmacology = Rev. Clin. Basic Pharm. Reviews in clinical and experimental hematology = Rev Clin Exp Hematol Reviews in Clinical and Experimental Hematology = Rev. Clin. Exp. Hematol. Reviews in clinical & basic pharmacology = Rev Clin Basic Pharm Reviews in clinical gerontology = Rev Clin Gerontol Reviews in Computational Chemistry = Rev Comp Ch Reviews in Computational Chemistry = Rev. Comp. Ch. Reviews in Computational Chemistry = Rev Comput Chem Reviews in Computational Chemistry = Rev. Comput. Chem. Reviews in Computational Chemistry, Vol 14 = Rev Comp Ch Reviews in Computational Chemistry, Vol 14 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 14 = Rev Comput Chem Reviews in Computational Chemistry, Vol 14 = Rev. Comput. Chem. Reviews in Computational Chemistry, Vol 15 = Rev Comp Ch Reviews in Computational Chemistry, Vol 15 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 16 = Rev Comp Ch Reviews in Computational Chemistry, Vol 16 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 16 = Rev Comput Chem Reviews in Computational Chemistry, Vol 16 = Rev. Comput. Chem. Reviews in Computational Chemistry, Vol 17 = Rev Comp Ch Reviews in Computational Chemistry, Vol 17 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 18 = Rev Comp Ch Reviews in Computational Chemistry, Vol 18 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 19 = Rev Comp Ch Reviews in Computational Chemistry, Vol 19 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 20 = Rev Comp Ch Reviews in Computational Chemistry, Vol 20 = Rev. Comp. Ch. Reviews in Computational Chemistry, Vol 20 = Rev Comput Chem Reviews in Computational Chemistry, Vol 20 = Rev. Comput. Chem. Reviews in Computational Chemistry, Vol 21 = Rev Comp Ch Reviews in Computational Chemistry, Vol 21 = Rev. Comp. Ch. Reviews in Computational Chemistry V = Rev Comp Ch Reviews in Computational Chemistry V = Rev. Comp. Ch. Reviews in Conservation = Rev. Conserv. Reviews in Contemporary Pharmacotherapy = Rev Contemp Pharmaco Reviews in Contemporary Pharmacotherapy = Rev. Contemp. Pharmaco. Reviews in Economic Geology = Rev Econ Geol Reviews in Economic Geology = Rev. Econ. Geol. Reviews in Endocrine and Metabolic Disorders = Rev. Endocr. Metab. Disord. Reviews in Endocrine & Metabolic Disorders = Rev Endocr Metab Dis Reviews in Endocrine & Metabolic Disorders = Rev. Endocr. Metab. Dis. Reviews in endocrine & metabolic disorders = Rev Endocr Metab Disord Reviews in Engineering Geology = Rev Eng Geol Reviews in Engineering Geology = Rev. Eng. Geol. Reviews in Environmental Science and Bio-technology = Rev Environ Sci Bio Reviews in Environmental Science and Bio-technology = Rev. Environ. Sci. Bio. Reviews in Environmental Science and Biotechnology = Rev. Environ. Sci. Biotechnol. Reviews in Environmental Toxicology = Rev. Environ. Toxicol. Reviews in European History = Rev Eur Hist Reviews in European History = Rev. Eur. Hist. Reviews in Fish Biology and Fisheries = Rev Fish Biol Fisher Reviews in Fish Biology and Fisheries = Rev. Fish Biol. Fisher. Reviews in Fisheries Science = Rev Fish Sci Reviews in Fisheries Science = Rev. Fish. Sci. Reviews in Fluorescence 2008 = Rev Fluoresc-ser Reviews in Fluorescence 2008 = Rev. Fluoresc-ser. Reviews in Fluorescence 2009 = Rev Fluoresc Reviews in Fluorescence 2009 = Rev. Fluoresc. Reviews in Fluorescence = Rev Fluoresc Reviews in Fluorescence = Rev. Fluoresc. Reviews in Fluorescence - Series = Rev Fluoresc-ser Reviews in Fluorescence - Series = Rev. Fluoresc-ser. Reviews in Gastroenterological Disorders = Rev Gastroenterol Di Reviews in Gastroenterological Disorders = Rev. Gastroenterol. Di. Reviews in gastroenterological disorders = Rev Gastroenterol Disord Reviews in Gastroenterological Disorders = Rev. Gastroenterol. Disord. Reviews in immunogenetics = Rev Immunogenet Reviews in Immunogenetics = Rev. Immunogenet. Reviews in Inorganic Chemistry = Rev Inorg Chem Reviews in Inorganic Chemistry = Rev. Inorg. Chem. Reviews in Mathematical Physics = Rev. Math. Phys. Reviews in Mathematical Physics = Rev Math Phys Reviews in Mathematical Physics = Rev. Math. Phys. Reviews in Medical Microbiology = Rev Med Microbiol Reviews in Medical Microbiology = Rev. Med. Microbiol. Reviews in medical virology = Rev Med Virol Reviews in Medical Virology = Rev Med Virol Reviews in Medical Virology = Rev. Med. Virol. Reviews in Mineralogy and Geochemistry = Rev. Mineral. Geochem. Reviews in Mineralogy & Geochemistry = Rev Mineral Geochem Reviews in Mineralogy & Geochemistry = Rev. Mineral. Geochem. Reviews in Mineralogy <d> = Rev Mineral <d> Reviews in Mineralogy <d> = Rev. Mineral. <d> Reviews in Mineralogy = Rev Mineral Reviews in Mineralogy = Rev. Mineral. Reviews in Modern Astronomy = Rev Mod Astron Reviews in Modern Astronomy = Rev. Mod. Astron. Reviews in Molecular Biotechnology = Rev. Mol. Biotechnol. Reviews in neurological diseases = Rev Neurol Dis Reviews in Neurological Diseases = Rev. Neurol. Dis. Reviews in Particulate Materials = Rev Particul Mater Reviews in Particulate Materials = Rev. Particul. Mater. Reviews in Perinatal Medicine = Rev Perinatal Med Reviews in Perinatal Medicine = Rev. Perinatal Med. Reviews in Pesticide Toxicology = Rev Pest T Reviews in Pesticide Toxicology = Rev. Pest. T. Reviews in Pure and Applied Pharmacological Sciences = Rev. Pure Appl. Pharmacol. Sci. Reviews in pure & applied pharmacological sciences = Rev Pure Appl Pharmacol Sci Reviews in the neurosciences = Rev Neurosci Reviews in the Neurosciences = Rev. Neurosci. Reviews In The Neurosciences=Rev Neurosci;; Reviews in The Neurosciences = Rev Neuroscience Reviews in The Neurosciences = Rev. Neuroscience. Reviews in Toxicology = Rev. Toxicol. Reviews in urology = Rev Urol Reviews-methods and Technologies in Fish Biology and Fisheries = Rev-methods Technol Reviews-methods and Technologies in Fish Biology and Fisheries = Rev-methods. Technol. Reviews-methods and Technologies in Fish Biology and Fisheries = Rev M T Fis Reviews-methods and Technologies in Fish Biology and Fisheries = Rev. M. T. Fis. Reviews: Methods and Technologies in Fish Biology and Fisheries = Rev M T Fis Reviews: Methods and Technologies in Fish Biology and Fisheries = Rev. M. T. Fis. Reviews of Accelerator Science and Technology = Rev. Accel Sci. Technol. Reviews of Chemical Intermediates = Rev Chem Intermed Reviews of Chemical Intermediates = Rev. Chem. Intermed. Reviews of Environmental Contamination and Toixicolgy = Rev Environ Contam T Reviews of Environmental Contamination and Toixicolgy = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicolgy = Rev Environ Contam T Reviews of Environmental Contamination and Toxicolgy = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology: Continuation of Residue Reviews, Vol 147 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology: Continuation of Residue Reviews, Vol 147 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology <d> = Rev Environ Conta<d> Reviews of Environmental Contamination and Toxicology <d> = Rev. Environ. Conta<d>. Reviews of Environmental Contamination and Toxicology = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology = Rev. Environ. Contam. T. Reviews of environmental contamination and toxicology = Rev Environ Contam Toxicol Reviews of Environmental Contamination and Toxicology=Rev Environ Contam Toxicol;; Reviews of Environmental Contamination and Toxicology = Rev. Environ. Contam. Toxicol. Reviews of Environmental Contamination and Toxicology, Vol 128 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 128 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 129 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 129 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 135 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 135 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 136 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 136 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 137 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 137 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 138 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 138 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 139 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 139 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 140 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 140 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 144 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 144 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 145 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 145 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 146 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 146 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 162 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 162 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 163 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 163 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 164 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 164 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 165 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 165 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 166 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 166 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 167 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 167 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 169 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 169 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 170 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 170 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 171 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 171 = Rev. Environ. Contam. T. Reviews of Environmental Contaminationand Toxicology, Vol 172 = Rev Environ Contam T Reviews of Environmental Contaminationand Toxicology, Vol 172 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 173 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 173 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 175 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 175 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 176 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 176 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 177 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 177 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 179 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 179 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 180 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 180 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 181 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 181 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 182 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 182 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 183 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 183 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 184 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 184 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 185 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 185 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 186 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 186 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 187 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 187 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 188 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 188 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 189 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 189 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 190 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 190 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 191 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 191 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 192 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 192 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 193 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 193 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 194 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 194 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 195 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 195 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 196 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 196 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 197 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 197 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 198 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 198 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 199 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 199 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 200 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 200 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 201 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 201 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 202 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 202 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 203 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 203 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 204 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 204 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 205 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 205 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 206 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 206 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 207 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 207 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 208 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 208 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 209 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 209 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 210 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 210 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 211 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 211 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 212 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 212 = Rev. Environ. Contam. T. Reviews of Environmental Contamination and Toxicology, Vol 213 = Rev Environ Contam T Reviews of Environmental Contamination and Toxicology, Vol 213 = Rev. Environ. Contam. T. Reviews of Environment Contamination and Toxicology = Rev. Environ. Contam. Toxicol. Reviews of Geophysics and Space Physics = Rev Geophys Space Ge Reviews of Geophysics and Space Physics = Rev. Geophys. Space Ge. Reviews of Geophysics and Space Physics = Rev. Geophys. Space Phys. Reviews of Geophysics = Rev Geophys Reviews of Geophysics = Rev. Geophys. Reviews of geophysics (Washington, D.C. : 1985) = Rev Geophys Reviews of infectious diseases = Rev Infect Dis Reviews of Infectious Diseases = Rev Infect Dis Reviews of Infectious Diseases = Rev. Infect. Dis. Reviews of Modern Physics = Rev. Modern Phys. Reviews of Modern Physics = Rev Mod Phys Reviews of Modern Physics = Rev. Mod. Phys. Reviews of oculomotor research = Rev Oculomot Res Reviews of Oculomotor Research=Rev Oculomot Res;; Reviews of Oculomotor Research = Rev. Oculomot. Res. Reviews of Physiology, Biochemical and Pharmacology, Vol 152 = Rev Physiol Bioch P Reviews of Physiology, Biochemical and Pharmacology, Vol 152 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, 128 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, 128 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology 136 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology 136 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology 141 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology 141 = Rev. Physiol. Bioch. P. Reviews of physiology, biochemistry and pharmacology = Rev Physiol Biochem Pharmacol Reviews of Physiology Biochemistry and Pharmacology=Rev Physiol Biochem Pharmacol;; Reviews of Physiology Biochemistry and Pharmacology = Rev. Physiol., Biochem. Pharmacol. Reviews of Physiology, Biochemistry and Pharmacology = Rev. Physiol. Biochem. Pharmacol. Reviews of Physiology Biochemistry and Pharmacology = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 123 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 123 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 124 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 124 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 126 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 126 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 127 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 127 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 130 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 130 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 138 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 138 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 139 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 139 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 143 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 143 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 144 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 144 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 145 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 145 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 146 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 146 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 147 2003 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 147 2003 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 148 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 148 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 149 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 149 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 150 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 150 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 154 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 154 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 155 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 155 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 156 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 156 = Rev. Physiol. Bioch. P. Reviews of Physiology Biochemistry and Pharmacology, Vol 157 = Rev Physiol Bioch P Reviews of Physiology Biochemistry and Pharmacology, Vol 157 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 158 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 158 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 159 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 159 = Rev. Physiol. Bioch. P. Reviews of Physiology, Biochemistry and Pharmacology, Vol 160 = Rev Physiol Bioch P Reviews of Physiology, Biochemistry and Pharmacology, Vol 160 = Rev. Physiol. Bioch. P. Reviews of Plasma Physics = Rev Plasma Phys Reviews of Plasma Physics = Rev. Plasma Phys. Reviews of Plasma Physics, Vol 24 = Rev Plasma Phys Reviews of Plasma Physics, Vol 24 = Rev. Plasma Phys. Reviews of Pure and Applied Chemistry = Rev Pure Appl Chem Reviews of Pure and Applied Chemistry = Rev. Pure Appl. Chem. Reviews of reproduction = Rev Reprod Reviews of Reproduction=Rev Reprod;; Reviews of Reproduction = Rev Reprod Reviews of Reproduction = Rev. Reprod. Reviews On Advanced Materials Science = Rev Adv Mater Sci Reviews On Advanced Materials Science = Rev. Adv. Mater. Sci. Reviews on drug metabolism and drug interactions = Rev Drug Metab Drug Interact Reviews on Drug Metabolism and Drug Interactions = Rev. Drug Metabol. Drug Interact. Reviews on environmental health = Rev Environ Health Reviews on Environmental Health=Rev Environ Health;; Reviews on Environmental Health = Rev. Environ. Health Reviews On Environmental Health = Rev Environ Health Reviews On Environmental Health = Rev. Environ. Health Reviews On Heteroatom Chemistry = Rev Heteroatom Chem Reviews On Heteroatom Chemistry = Rev. Heteroatom Chem. Revija Za Kriminalistiko in Kriminologijo = Rev Kriminalistiko K Revija Za Kriminalistiko in Kriminologijo = Rev. Kriminalistiko K. Revija Za Socijalnu Politiku = Rev Soc Polit Revija Za Socijalnu Politiku = Rev. Soc. Polit. Revija za sociologiju = Rev Sociol Revised statutes : Under arrangement of the official Louisiana revised statutes of 1950. Louisiana = Revis Statut La Revising History = Passages Revising History = Passages. Revision, Acceptability and Context: Theoretical and Algorithmic Aspects = Cogn Technol Revision, Acceptability and Context: Theoretical and Algorithmic Aspects = Cogn. Technol. Revisiones sobre biologia celular : RBC = Revis Biol Celular Revisiones sobre Biologia Celular = Revis. Biol. Celular Revisiting Discovery and Justification = Archimedes Revisiting Discovery and Justification = Archimedes. Revisiting The Chinese Learner: Changing Contexts, Changing Education = Cerc Stud Comp Educ Revisiting The Chinese Learner: Changing Contexts, Changing Education = Cerc. Stud. Comp. Educ. Revista 180 = Rev 180 Revista 180 = Rev. 180 Revista ABP-APAL / Associacao Brasileira de Psiquiatria and Asociacion Psiquiatrica de America Latina = Rev ABPAPAL Revista ADM (Asociacion Dental Mexicana : 1988) = Rev ADM Revista ADM : organo oficial de la Asociacion Dental Mexicana = Rev ADM Revista ADM = Rev. ADM Revista alergia Mexico = Rev Alerg Mex Revista Alergia Mexico = Rev. Alerg. Mex. Revista alergia Mexico (Tecamachalco, Puebla, Mexico : 1993) = Rev Alerg Mex Revista alergia : organo oficial de la Sociedad Mexicana de Alergia e Inmunlogia = Rev Alerg Revista Alergia = Rev. Alerg. Revista argentina de alergia = Rev Argent Alerg Revista argentina de cardiologia = Rev Argent Cardiol Revista argentina de cirugia = Rev Argent Cir Revista Argentina de Cirugia = Rev. Argent. Cir. Revista Argentina De Clinica Psicologica = Rev Argent Clin Psic Revista Argentina De Clinica Psicologica = Rev. Argent. Clin. Psic. Revista argentina de endocrinologia y metabolismo = Rev Argent Endocrinol Metab Revista Argentina de Endocrinologia y Metabolismo = Rev. Argent. Endocrinol. Metab. Revista Argentina de Implantologia Estomatologica = Rev. Argent. Implantol. Estomatol. Revista Argentina De Implantologia Estomatologica = Rev Argent Implantol Estomatol Revista Argentina de microbiologia = Rev Argent Microbiol Revista Argentina de Microbiologia=Rev Argent Microbiol;; Revista Argentina de Microbiologia = Rev. Argent. Microbiol. Revista Argentina De Microbiologia = Rev Argent Microbiol Revista Argentina De Microbiologia = Rev. Argent. Microbiol. Revista argentina de neurologia y psiquiatria = Rev Argent Neurol Psiquiatr Revista argentina de reumatologia = Rev Argent Reumatol Revista argentina de tuberculosis y enfermedades pulmonares = Rev Argent Tuberc Enferm Pulm Revista argentina de urologia = Rev Argent Urol Revista argentina de urologia y nefrologia = Rev Argent Urol Nefrol Revista Argentina de Urologia y Nefrologia = Rev. Argent. Urol. Nefrol. Revista arhivelor = Rev Arh Revista Arvore = Rev Arvore Revista Arvore = Rev. Arvore Revista atlántica-\-mediterránea de prehistoria y arqueología social = RAtlMed Revista Boliviana de Quimica = Rev. Boliv. Quim. Revista brasileira de anestesiologia = Rev Bras Anestesiol Revista Brasileira de Anestesiologia = Rev. Bras. Anestesiol. Revista Brasileira De Anestesiologia = Rev Bras Anestesiol Revista Brasileira De Anestesiologia = Rev. Bras. Anestesiol. Revista Brasileira de Aplicacoes de Vacuo = Rev. Bras. Apl. Vacuo Revista brasileira de biologia = Rev Bras Biol Revista Brasileira de Biologia=Rev Bras Biol;; Revista Brasileira de Biologia = Rev. Bras. Biol. Revista Brasileira De Ciencia Do Solo = Rev Bras Cienc Solo Revista Brasileira De Ciencia Do Solo = Rev. Bras. Cienc. Solo Revista Brasileira de Ciência do Solo = Rev. Bras. Cienc. Solo Revista Brasileira De Ciencias Farmaceuticas = Rev Bras Cienc Farm Revista Brasileira De Ciencias Farmaceuticas = Rev. Bras. Cienc. Farm. Revista brasileira de cirurgia cardiovascular : orgao oficial da Sociedade Brasileira de Cirurgia Cardiovascular = Rev Bras Cir Cardiovasc Revista Brasileira De Cirurgia Cardiovascular = Rev Bras Cir Cardiov Revista Brasileira De Cirurgia Cardiovascular = Rev. Bras. Cir. Cardiov. Revista brasileira de cirurgia = Rev Bras Cir Revista Brasileira de Cirurgia = Rev. Bras. Cir. Revista Brasileira De Economia = Rev Bras Econ Revista Brasileira De Economia = Rev. Bras. Econ. Revista Brasileira de Economia=Revista Brasileira Econ. Revista brasileira de enfermagem = Rev Bras Enferm Revista Brasileira de Enfermagem = Rev. Bras. Enferm. Revista Brasileira De Ensino De Fisica = Rev Bras Ensino Fis Revista Brasileira De Ensino De Fisica = Rev. Bras. Ensino Fis. Revista Brasileira de Ensino de Quimica = Rev. Bras. Ensino Quim. Revista Brasileira De Entomologia = Rev Bras Entomol Revista Brasileira De Entomologia = Rev. Bras. Entomol. Revista brasileira de estatistica = Rev Bras Estat Revista brasileira de estudos de populacao = Rev Bras Estud Popul Revista Brasileira De Farmacognosia-brazilian Journal of Pharmacognosy = Rev Bras Farmacogn Revista Brasileira De Farmacognosia-brazilian Journal of Pharmacognosy = Rev. Bras. Farmacogn. Revista Brasileira de Fisica = Rev. Bras. Fis. Revista Brasileira De Fisioterapia = Rev Bras Fisioter Revista Brasileira De Fisioterapia = Rev. Bras. Fisioter. Revista Brasileira De Fruticultura = Rev Bras Frutic Revista Brasileira De Fruticultura = Rev. Bras. Frutic. Revista brasileira de gastroenterologia = Rev Bras Gastroenterol Revista Brasileira de Gastroenterologia = Rev. Bras. Gastroenterol. Revista Brasileira De Genetica = Braz J Genet Revista Brasileira De Genetica = Braz. J. Genet. Revista Brasileira De Genetica = Rev Bras Genet Revista Brasileira De Genetica = Rev. Bras. Genet. Revista brasileira de geografia = Rev Bras Geogr Revista Brasileira De Historia = Rev Bras Hist Revista Brasileira De Historia = Rev. Bras. Hist. Revista brasileira de leprologia = Rev Bras Leprol Revista Brasileira de Leprologia = Rev. Bras. Leprol. Revista brasileira de malariologia e doencas tropicais. Publicacoes avulsas = Rev Bras Malariol Doencas Trop Revista Brasileira de Malariologia e Doencas Tropicais = Rev. Bras. Malariol. Doencas Trop. Revista Brasileira De Medicina Do Esporte = Rev Bras Med Esporte Revista Brasileira De Medicina Do Esporte = Rev. Bras. Med. Esporte Revista brasileira de medicina = Rev Bras Med Revista Brasileira de Medicina = Rev. Bras. Med. Revista Brasileira De Medicina = Rev Bras Med Revista Brasileira De Medicina = Rev. Bras. Med. Revista Brasileira De Medicina Veterinaria = Rev Bras Med Vet Revista Brasileira De Medicina Veterinaria = Rev. Bras. Med. Vet. Revista Brasileira de Oceanografia = Rev. Bras. Oceangr. Revista brasileira de odontologia militar : orgao oficial da Academia Brasileira de Odontologia Militar = Rev Bras Odontol Mil Revista Brasileira de Odontologia Militar = Rev. Bras. Odontol. Mil. Revista brasileira de odontologia = Rev Bras Odontol Revista Brasileira de Odontologia = Rev. Bras. Odontol. Revista brasileira de oftalmologia = Rev Bras Oftalmol Revista Brasileira de Oftalmologia = Rev. Bras. Oftalmol. Revista Brasileira De Oftalmologia = Rev Bras Oftalmol Revista Brasileira De Oftalmologia = Rev. Bras. Oftalmol. Revista Brasileira De Ornitologia = Rev Bras Ornitol Revista Brasileira De Ornitologia = Rev. Bras. Ornitol. Revista brasileira de otorrinolaringologia (English ed.) = Rev Bras Otorrinolaringol (Engl Ed) Revista brasileira de otorrinolaringologia = Rev Bras Otorinolaringol Revista Brasileira De Paleontologia = Rev Bras Paleontolog Revista Brasileira De Paleontologia = Rev. Bras. Paleontolog. Revista Brasileira De Parasitologia Veterinaria = Rev Bras Parasitol V Revista Brasileira De Parasitologia Veterinaria = Rev. Bras. Parasitol. V. Revista Brasileira De Pesquisas Medicas E Biologicas = Rev Bras Pesqui Med Revista Brasileira De Pesquisas Medicas E Biologicas = Rev. Bras. Pesqui. Med. Revista brasileira de pesquisas medicas e biologicas = Rev Bras Pesqui Med Biol Revista Brasileira de Pesquisas Medicas e Biologicas = Rev. Bras. Pesqui. Med. Biol. Revista Brasileira De Politica Internacional = Rev Bras Polit Int Revista Brasileira De Politica Internacional = Rev. Bras. Polit. Int. Revista Brasileira De Psiquiatria = Rev Bras Psiquiatr Revista Brasileira De Psiquiatria = Rev. Bras. Psiquiatr. Revista brasileira de psiquiatria (Sao Paulo, Brazil : 1999) = Rev Bras Psiquiatr Revista brasileira de tuberculose e doencas toracicas = Rev Bras Tuberc Doencas Torac Revista Brasileira De Zoologia = Rev Bras Zool Revista Brasileira De Zoologia = Rev. Bras. Zool. Revista Brasileira De Zootecnia-brazilian Journal of Animal Science = Rev Bras Zootecn Revista Brasileira De Zootecnia-brazilian Journal of Animal Science = Rev. Bras. Zootecn. Revista Caatinga = Rev Caatinga Revista Caatinga = Rev. Caatinga Revista catarinense de odontologia = Rev Catarinense Odontol Revista Catarinense de Odontologia = Rev. Catarinense Odontol. Revista centroamericana de economia = Rev Centroam Econ Revista Centro America odontologica = Rev Cent Am Odontol Revista Centro America Odontologica = Rev. Cent. Am. Odontol. Revista. Centro de Estudos Demograficos (Portugal) = Rev Cent Estud Demograficos Revista CEPAE = Rev CEPAE Revista Chapingo Serie Ciencias Forestales Y Del Ambiente = Rev Chapingo Ser Cie Revista Chapingo Serie Ciencias Forestales Y Del Ambiente = Rev. Chapingo Ser. Cie. Revista Chilena De Cirugia = Rev Chil Cir Revista Chilena De Cirugia = Rev. Chil. Cir. Revista chilena de higiene y medicina preventiva = Rev Chil Hig Med Prev Revista Chilena De Historia Natural = Rev Chil Hist Nat Revista Chilena De Historia Natural = Rev. Chil. Hist. Nat. Revista chilena de historia y geografia = Rev Chil Hist Geogr Revista chilena de infectologia : organo oficial de la Sociedad Chilena de Infectologia = Rev Chilena Infectol Revista Chilena De Infectologia = Rev Chil Infectol Revista Chilena De Infectologia = Rev. Chil. Infectol. Revista Chilena De Literatura = Rev Chil Lit Revista Chilena De Literatura = Rev. Chil. Lit. Revista chilena de nutricion : organo oficial de la Sociedad Chilena de Nutricion, Bromatologia y Toxicologia = Rev Chil Nutr Revista chilena de obstetricia y ginecologia = Rev Chil Obstet Ginecol Revista Chilena de Obstetricia y Ginecologia = Rev. Chil. Obstet. Ginecol. Revista chilena de odontoestomatologia = Rev Chil Odontoestomatol Revista Chilena de Odontoestomatologia = Rev. Chil. Odontoestomatol. Revista chilena de pediatria = Rev Chil Pediatr Revista Chilena de Pediatria = Rev. Chil. Pediatr. Revista. Chile. Servicio Nacional de Salud = Rev Serv Nac Salud Revista Ciencia Agronomica = Rev Cienc Agron Revista Ciencia Agronomica = Rev. Cienc. Agron. Revista Ciencias Matemáticas = Cienc. Mat. (Havana) Revista Cientifica-facultad De Ciencias Veterinarias = Rev Cient-fac Cien V Revista Cientifica-facultad De Ciencias Veterinarias = Rev. Cient-fac. Cien. V. Revista. Circulo Argentino de Odontologia = Rev Circ Argent Odontol Revista. Circulo Odontologico de Rosario = Rev Circul Ondontol Ros Revista clinica de Sao Paulo = Rev Clin Sao Paulo Revista clinica espanola = Rev Clin Esp Revista Clinica Espanola=Rev Clin Esp;; Revista Clinica Espanola = Rev Clin Esp Revista Clinica Espanola = Rev. Clin. Esp. Revista Clinica, Instituto Maternal, Lisbon = Rev. Clin. Inst. Matern. Lisb. Revista clinica. Lisbon. Instituto Maternal = Rev Clin Inst Matern Lisb Revista Colombiana De Ciencias Pecuarias = Rev Colomb Cienc Pec Revista Colombiana De Ciencias Pecuarias = Rev. Colomb. Cienc. Pec. Revista Colombiana de Entomologia = Rev. Colomb. Entomol. Revista Colombiana De Entomologia = Rev Colomb Entomol Revista Colombiana De Entomologia = Rev. Colomb. Entomol. Revista Colombiana De Estadistica = Rev Colomb Estad Revista Colombiana De Estadistica = Rev. Colomb. Estad. Revista Colombiana de Matemáticas = Rev. Colombiana Mat. Revista colombiana de obstetricia y ginecologia = Rev Colomb Obstet Ginecol Revista Colombiana de Obstetricia y Ginecologia = Rev. Colomb. Obstet. Ginecol. Revista colombiana de pediatria y puericultura = Rev Colomb Pediatr Pueric Revista Colombiana de Pediatria y Puericultura = Rev. Colomb. Pediatr. Pueric. Revista Colombiana de Quimica = Rev. Colomb. Quim. Revista Colombiana Estadística = Rev. Colombiana Estadíst. Revista costarricense de ciencias medicas = Rev Costarric Cienc Med Revista Costarricense de Ciencias Medicas = Rev. Costarric. Cienc. Med. Revista cubana de administracion de salud = Rev Cuhana Adm Salud Revista cubana de cardiologia = Rev Cubana Cardiol Revista cubana de enfermeria = Rev Cubana Enferm Revista Cubana de Enfermeria = Rev. Cubana Enferm. Revista cubana de estomatologia = Rev Cubana Estomatol Revista Cubana de Estomatologia = Rev. Cubana Estomatol. Revista cubana de higiene y epidemiologia = Rev Cubana Hig Epidemiol Revista cubana de medicina = Rev Cubana Med Revista cubana de medicina tropical = Rev Cubana Med Trop Revista Cubana de Medicina Tropical=Rev Cubana Med Trop;; Revista Cubana de Medicina Tropical = Rev. Cubana Med. Trop. Revista cubana de pediatria = Rev Cubana Pediatr Revista da Associacao Medica Brasileira (1992) = Rev Assoc Med Bras Revista da Associacao Medica Brasileira = Rev Assoc Med Bras Revista da Associacao Medica Brasileira = Rev. Assoc. Med. Bras. Revista Da Associacao Medica Brasileira=Rev Assoc Med Bras;; Revista Da Associacao Medica Brasileira = Rev Assoc Med Bras Revista Da Associacao Medica Brasileira = Rev. Assoc. Med. Bras. Revista da Associacao Medica de Minas Gerais = Rev Assoc Med Minas Gerais Revista da Associacao Medica do Rio Grande do Sul = Rev Assoc Med Rio Grande Do Sul Revista da Associacao Paulista de Cirurgioes Dentistas Regional de Aracatuba = Rev Assoc Paul Cir Dent Reg Aracatuba Revista da Associacao Paulista de Cirurgioes Dentistas = Rev Assoc Paul Cir Dent Revista da Associacao Paulista de Cirurgioes Dentistas = Rev. Assoc. Paul. Cir. Dent. Revista da Escola de Enfermagem da U S P = Rev Esc Enferm USP Revista da Escola de Enfermagem da USP = Rev. Esc. Enferm. USP Revista Da Escola De Enfermagem Da Usp = Rev Esc Enferm Usp Revista Da Escola De Enfermagem Da Usp = Rev. Esc. Enferm. Usp Revista da Faculdade de Farmacia e Odontologia de Araraquara = Rev Fac Farm Odontol Araraquara Revista da Faculdade de Farmacia e Odontologia de Araraquara = Rev. Fac. Farm. Odontol. Araraquara Revista da Faculdade de Farmacia e Odontologia de Ribeirao Preto = Rev Fac Farm Odontol Ribeiro Preto Revista da Faculdade de Farmacia e Odontologia de Ribeirao Preto = Rev. Fac. Farm. Odontol. Ribeiro. Preto Revista da Faculdade de Odontologia da FZL = Rev Faculdade Odontol FZL Revista da Faculdade de Odontologia da FZL = Rev. Faculdade Odontol. FZL Revista da Faculdade de Odontologia da Universidade de Sao Paulo = Rev Fac Odontol Sao Paulo Revista da Faculdade de Odontologia da Universidade de Sao Paulo = Rev. Fac. Odontol. Sao Paulo Revista da Faculdade de Odontologia da Universidade Federal da Bahia = Rev Fac Odontol Univ Fed Bahia Revista da Faculdade de Odontologia da Universidade Federal da Bahia = Rev. Fac. Odontol. Univ. Fed. Bahia Revista da Faculdade de Odontologia de Aracatuba = Rev Fac Odontol Aracatuba Revista da Faculdade de Odontologia de Aracatuba = Rev. Fac. Odontol. Aracatuba Revista da Faculdade de Odontologia de Lins = Rev Faculdade Odontol Lins Revista da Faculdade de Odontologia de Lins = Rev. Faculdade Odontol. Lins Revista da Faculdade de Odontologia de Pernambuco = Rev Fac Odontol Pernambuco Revista da Faculdade de Odontologia de Pernambuco = Rev. Fac. Odontol. Pernambuco Revista da Faculdade de Odontologia de Ribeirao Preto = Rev Fac Odontol Ribeiro Preto Revista da Faculdade de Odontologia de Ribeirao Preto = Rev. Fac. Odontol. Ribeiro Preto Revista da Faculdade de Odontologia de Sao Jose dos Campos = Rev. Fac. Odontol. Sao Jose dos Campos Revista da Faculdade de Odontologia de Sao Jose dos Campos = Rev Fac Odontol Sao Jose Dos Campos Revista da Faculdade de Odontologia, Porto Alegre = Rev Fac Odontol P Alegre Revista da Faculdade de Odontologia, Porto Alegre = Rev. Fac. Odontol. P. Alegre Revista da Facultade de letras. Serie de historia. Universidade do Porto = RPorto Revista d’arqueologia de Ponent = RAPon Revista da Sociedade Brasileira de Historia da Ciencia = Rev Soc Bras Hist Cienc Revista Da Sociedade Brasileira De Medicina Tropical = Rev Soc Bras Med Tro Revista Da Sociedade Brasileira De Medicina Tropical = Rev. Soc. Bras. Med. Tro. Revista da Sociedade Brasileira de Medicina Tropical = Rev Soc Bras Med Trop Revista da Sociedade Brasileira de Medicina Tropical = Rev. Soc. Bras. Med. Trop. Revista Da Sociedade Brasileira de Medicina Tropical=Rev Soc Bras Med Trop;; Revista Da Sociedade Brasileira De Zootecnia-journal of The Brazilian Society of Animal Science = Rev Soc Bras Zootecn Revista Da Sociedade Brasileira De Zootecnia-journal of The Brazilian Society of Animal Science = Rev. Soc. Bras. Zootecn. Revista de actualidad estomatologica espanola / Ilustre Consejo General de Colegios de Odontologos y Estomatologos de Espana = Rev Actual Estomatol Esp Revista de Actualidad Estomatologica Espanola = Rev. Actual. Estomatol. Esp. Revista de actualidad odontoestomatologica espanola : boletin de informacion, del Ilustre Consejo General de Colegios de Odontologos y Estomatologos de Espana = Rev Actual Odontoestomatol Esp Revista de Actualidad Odontoestomatologica Espanola = Rev. Actual. Odontoestomatol. Esp. Revista de Administraçao d Emprêsas=Revista Admin. Emprêsas Revista de administracao municipal = Rev Adm Munic Revista De Agroquimica Y Tecnologia De Alimentos = Rev Agroquim Tecnol Revista De Agroquimica Y Tecnologia De Alimentos = Rev. Agroquim. Tecnol. Revista de Analisis Economico=Revista Anal. Econ. Revista de archivos, bibliotecas y museos (Madrid, Spain : 1897) = Rev Arch Bibl Mus Revista de archivos, bibliotecas y museos = RArchBiblMus Revista de arqueología = RAMadrid Revista De Biologia Marina Y Oceanografia = Rev Biol Mar Oceanog Revista De Biologia Marina Y Oceanografia = Rev. Biol. Mar. Oceanog. Revista de biologia oral = Rev Biol Oral Revista de Biologia Oral = Rev. Biol. Oral Revista de biologia tropical = Rev Biol Trop Revista de Biologia Tropical=Rev Biol Trop;; Revista de Biologia Tropical = Rev. Biol. Trop. Revista De Biologia Tropical = Rev Biol Trop Revista De Biologia Tropical = Rev. Biol. Trop. Revista De Cercetare Si Interventie Sociala = Rev Cercet Interv So Revista De Cercetare Si Interventie Sociala = Rev. Cercet. Interv. So. Revista de Chimie (Bucharest, Romania) = Rev. Chim. (Bucharest, Rom.) Revista de Chimie = Rev. Chim. Revista De Chimie = Rev Chim-bucharest Revista De Chimie = Rev. Chim-bucharest. Revista de chirurgie, oncologie, radiologie, o.r.l., oftalmologie, stomatologie. Chirurgie = Rev Chir Oncol Radiol O R L Oftalmol Stomatol Chir Revista de Chirurgie, Oncologie, Radiologie, O.R.L., Oftalmologie, Stomatologie. Chirurgie = Rev. Chir. Oncol. Radiol. O. R. L. Oftalmol. Stomatol. Chir. Revista de chirurgie, oncologie, radiologie, o. r. l., oftalmologie, stomatologie. Oftalmologie = Rev Chir Oncol Radiol O R L Oftalmol Stomatol Ser Oftalmol Revista de chirurgie, oncologie, radiologie, o.r.l., oftalmologie, stomatologie. Oto-rino-laringologia = Rev Chir Oncol Radiol O R L Oftalmol Stomatol Otorinolaringol Revista de Chirurgie, Oncologie, Radiologie, O.R.L., Oftalmologie, Stomatologie. Oto-Rino-Laringologia = Rev. Chir. Oncol. Radiol. O. R. L. Oftalmol. Stomatol. Otorinolaringol. Revista de Chirurgie, Oncologie, Radiologie, O.R.L., Oftalmologie, Stomatologie. Seria Oftalmologie = Rev. Chir. Oncol. Radiol. O. R. L. Oftalmol. Stomatol. Ser. Oftalmol. Revista de chirurgie, oncologie, radiologie, o. r. l., oftalmologie, stomatologie. Seria: Stomatologie = Rev Chir Oncol Radiol O R L Oftalmol Stomatol Ser Stomatol Revista de Chirurgie, Oncologie, Radiologie, O.R.L., Oftalmologie, Stomatologie. Seria Stomatologie = Rev. Chir. Oncol. Radiol. O. R. L. Oftalmol. Stomatol. Ser. Stomatol. Revista De Ciencia Politica = Rev Cienc Polit Revista De Ciencia Politica = Rev. Cienc. Polit. Revista De Ciencia Politica = Rev Cienc Polit-sant Revista De Ciencia Politica = Rev. Cienc. Polit-sant. Revista de ciencias biomedicas = Rev Cinc Biomed Revista De Ciencias Sociales = Rev Cienc Soc Revista De Ciencias Sociales = Rev. Cienc. Soc. Revista De Ciencias Sociales = Rev Cienc Soc-venez Revista De Ciencias Sociales = Rev. Cienc. Soc-venez. Revista de cirugia del Uruguay = Rev Cir Urug Revista de Cirugia del Uruguay = Rev. Cir. Urug. Revista de cirugia = Rev Cir (Mex) Revista De Cresterea Animalelor = Rev Crest Anim Revista De Cresterea Animalelor = Rev. Crest. Anim. Revista De Critica Literaria Latinoamericana = Rev Crit Lit Latino Revista De Critica Literaria Latinoamericana = Rev. Crit. Lit. Latino. Revista De Derecho Comunitario Europeo = Rev Derecho Comunita Revista De Derecho Comunitario Europeo = Rev. Derecho Comunita. Revista de dialectologia y tradiciones populares / Consejo Superior de Investigaciones Cientificas, Instituto Antonio de Nebrija, Seccion de Tradiciones Populares = Rev Dialoctol Tradiciones Pop (Madrid) Revista De Dialectologia Y Tradiciones Populares = Rev Dialect Trad Pop Revista De Dialectologia Y Tradiciones Populares = Rev. Dialect. Trad. Pop. Revista de Econometria=Revista Econometria Revista De Economia Aplicada = Rev Econ Apl-spain Revista De Economia Aplicada = Rev. Econ. Apl-spain. Revista de Economia Aplicada=Revista Econ. Aplicada Revista de Economía Institucional=Revista Econ. Inst. Revista De Economia Mundial = Rev Econ Mund Revista De Economia Mundial = Rev. Econ. Mund. Revista de Economia Política=Revista Econ. Política Revista de Economía=Revista Econ. Revista de Economía y Estadística, N.S.=Revista Econ. y Estadíst. Revista De Educacion = Rev Educ Revista De Educacion = Rev. Educ. Revista de enfermagem = Rev Enferm (Lisboa) Revista de Enfermagem = Rev. Enferm. (Lisboa) Revista de enfermeria (Barcelona, Spain) = Rev Enferm Revista de Enfermeria = Rev. Enferm. Revista de Estadística=Revista Estadíst. Revista de estudios clásicos = REC Revista de estudios de la vida local = Rev Estud Vida Local Revista de estudios extremenos = Rev Estud Extremenos Revista De Estudios Hispanicos = Rev Estud Hispan Revista De Estudios Hispanicos = Rev. Estud. Hispan. Revista de estudios ibéricos = REstIber Revista De Estudios Internacionales = Rev Estud Int Revista De Estudios Internacionales = Rev. Estud. Int. Revista De Estudios Politicos = Rev Estud Polit Revista De Estudios Politicos = Rev. Estud. Polit. Revista de Estudios Políticos=Revista Estud. Polít. Revista De Estudios Sociales = Rev Estud Soc Revista De Estudios Sociales = Rev. Estud. Soc. Revista de farmacia e bioquimica da Universidade de Sao Paulo = Rev Farm Bioquim Univ Sao Paulo Revista de Farmacia e Bioquimica da Universidade de Sao Paulo = Rev. Farm. Bioquim. Univ. Sao Paulo Revista de farmacia e odontologia = Rev Farm Odontol Revista de Farmacia e Odontologia = Rev. Farm. Odontol. Revista De Filologia Espanola = Rev Filol Espan Revista De Filologia Espanola = Rev. Filol. Espan. Revista De Filosofia Aurora = Rev Filos Aurora Revista De Filosofia Aurora = Rev. Filos. Aurora Revista De Filosofia De La Universidad De Costa Rica = Revista Fil Revista De Filosofia De La Universidad De Costa Rica = Revista Fil. Revista De Filosofia De La Universidad De Costa Rica, Vol 28, Nos 67-68 = Revista Fil Revista De Filosofia De La Universidad De Costa Rica, Vol 28, Nos 67-68 = Revista Fil. Revista de filosofía = RF(Argentina) Revista De Filosofie = Rev Filos Revista De Filosofie = Rev. Filos. Revista de fomento social = Rev Fom Soc Revista de gastroenterologia del Peru : organo oficial de la Sociedad de Gastroenterologia del Peru = Rev Gastroenterol Peru Revista de Gastroenterologia del Peru = Rev. Gastroenterol. Peru Revista de gastroenterologia de Mexico = Rev Gastroenterol Mex Revista de Gastroenterologia de Mexico = Rev. Gastroenterol. Mex. Revista de Gastroenterologia De Mexico=Rev Gastroenterol Mex;; Revista de Geofisica = Rev. Geofis. Revista De Geografia Norte Grande = Rev Geogr Norte Gd Revista De Geografia Norte Grande = Rev. Geogr. Norte Gd. Revista de ginecologia e d'obstetricia = Rev Ginecol Obstet (Sao Paulo) Revista de Ginecologia e d'Obstetricia = Rev. Ginecol. Obstet. (Sao Paulo) Revista De Ginecologia Y Obstetricia = Rev Gynecol Obstet Revista de Guimarães = RGuimar Revista De Hispanismo Filosofico = Rev Hisp Filos Revista De Hispanismo Filosofico = Rev. Hisp. Filos. Revista de historia americana y argentina = Rev Hist Am Argent Revista de historia canaria = Rev Hist Canaria Revista De Historia De America = Rev Hist Am Revista De Historia De America = Rev. Hist. Am. Revista de historia de la psicologia = Rev Hist Psicol Revista De Historia Economica = Rev Hist Econ Revista De Historia Economica = Rev. Hist. Econ. Revista de Historia Económica=Revista Hist. Econ. Revista De Historia Industrial = Rev Hist Indust Revista De Historia Industrial = Rev. Hist. Indust. Revista de Historia Industrial=Revista Hist. Ind. Revista de historia Jeronimo Zurita = Rev Hist Jeronimo Zurita Revista de historia militar = Rev Hist Mil Revista de historia naval / Instituto de Historia y Cultura Naval, Armada Espanola = Rev Hist Naval Revista de historia = Rev Hist (Costa Rica) Revista de Igiena, Bacteriologie, Virusologie, Parazitologie, Epidemiologie, Pneumoftiziologie. Bacteriologia, Virusologia, Parazitologia, Epidemiologia = Rev. Ig. Bacteriol. Virusol. Parazitol. Epidemiol. Pneumoftiziol. Bacteriol. Virusol. Parazitol. Epi Revista de igiena, bacteriologie, virusologie, parazitologie, epidemiologie, pneumoftiziologie. Bacteriologia, virusologia, parazitologia, epidemiologia = Rev Ig Bacteriol Virusol Parazitol Epidemiol Pneumoftiziol Bacteriol Virusol Parazitol Epidemiol Revista de igiena, bacteriologie, virusologie, parazitologie, epidemiologie, pneumoftiziologie. Pneumoftiziologia = Rev Ig Bacteriol Virusol Parazitol Epidemiol Pneumoftiziol Pneumoftiziol Revista de Igiena, Bacteriologie, Virusologie, Parazitologie, Epidemiologie, Pneumoftiziologie. Pneumoftiziologia = Rev. Ig. Bacteriol. Virusol. Parazitol. Epidemiol. Pneumoftiziol. Pneumoftiziol. Revista de igiena, medicina muncii, medicina sociala, bacteriologie, virusologie, parazitologie, epidemiologie, pneumoftiziologie. Pneumoftiziologie / Uniunea Societatilor de Stiinte Medicale din Romania = Rev Ig Med Muncii Med Soc Bacteriol Virusol Parazitol Epidemiol Pneumoftiziol Pneumoftiziol Revista de Indias = Rev Indias Revista De Indias = Rev Indias Revista De Indias = Rev. Indias Revista de informacao legislativa = Rev Inf Legis Revista de informacion medico-terapeutica = Rev Inform Med Ter Revista De Informatica Y Automatica = Rev Inform Automat Revista De Informatica Y Automatica = Rev. Inform. Automat. Revista de instituciones europeas = Rev Inst Eur Revista de investigacion clinica; organo del Hospital de Enfermedades de la Nutricion = Rev Invest Clin Revista de Investigacion Clinica=Rev Invest Clin;; Revista de Investigacion Clinica = Rev. Invest. Clin. Revista De Investigacion Clinica = Rev Invest Clin Revista De Investigacion Clinica = Rev. Invest. Clin. Revista de investigacion en salud publica = Rev Invest Salud Publica Revista de Investigacion en Salud Publica = Rev. Invest. Salud Publica Revista de investigacion = Rev Invest (Guadalajara) Revista de Investigacion = Rev. Invest. (Guadalajara) Revista de istorie = Rev Istor Revista de la Academia Canaria de Ciencias = Rev. Acad. Canaria Cienc. Revista de la Academia de Ciencias Exactas, Físicas Químicas y Naturales de Zaragoza = Rev. Acad. Cienc. Zaragoza (2) Revista de la Agrupacion Odontologica de la Capital Federal = Rev Agrup Odontol Cap Fed Revista de la Agrupacion Odontologica de la Capital Federal = Rev. Agrup. Odontol. Cap. Fed. Revista de la Asociacion Argentina de Microbiologia = Rev Asoc Argent Microbiol Revista de la Asociacion Argentina de Microbiologia = Rev. Asoc. Argent. Microbiol. Revista de la Asociacion de Profesionales del Hospital Nacional de Odontologia = Rev. Asoc. Prof. Hosp. Nac. Odontol. Revista De La Asociacion De Profesionales Del Hospital Nacional De Odontologia = Rev Asoc Prof Hosp Nac Odontol Revista de la Asociacion Medica Argentina = Rev Asoc Med Argent Revista de la Asociacion Medica Argentina = Rev. Asoc. Med. Argent. Revista de la Asociacion Mexicana de Enfermeras = Rev Asoc Mex Enferm Revista de la Asociacion Mexicana de Enfermeras = Rev. Asoc. Mex. Enferm. Revista de la Asociacion Odontologica Argentina = Rev Asoc Odontol Argent Revista de la Asociacion Odontologica Argentina = Rev. Asoc. Odontol. Argent. Revista de la Asociacion Odontologica de Costa Rica = Rev Asoc Odontol Costa Rica Revista de la Asociacion Odontologica de Costa Rica = Rev. Asoc. Odontol. Costa Rica Revista de la Biblioteca Nacional Jose Marti. Biblioteca Nacional Jose Marti = Rev Bibl Nac Jose Marti Revista De La Ciencia Del Suelo Y Nutricion Vegetal = Rev Cienc Suelo Nutr Revista De La Ciencia Del Suelo Y Nutricion Vegetal = Rev. Cienc. Suelo Nutr. Revista De La Construccion = Rev Constr Revista De La Construccion = Rev. Constr. Revista de la Escuela de Odontologia, Universidad Nacional de Tucuman, Facultad de Medicina = Rev. Esc. Odontol. Tucuman. Revista De La Escuela De Odontologia, Universidad Nacional De Tucuman, Facultad De Medicina = Rev Esc Odontol Tucuman Revista De La Facultad De Agronomia De La Universidad Del Zulia = Rev Fac Agron Revista De La Facultad De Agronomia De La Universidad Del Zulia = Rev. Fac. Agron. Revista De La Facultad De Agronomia De La Universidad Del Zulia = Rev Fac Agron Luz Revista De La Facultad De Agronomia De La Universidad Del Zulia = Rev. Fac. Agron. Luz. Revista de la Facultad de Ciencas Económicas y de Administración de Montevideo=Revista Fac. Cienc. Econ. Admin. Montevideo Revista De La Facultad De Ciencias Agrarias = Rev Fac Cienc Agrar Revista De La Facultad De Ciencias Agrarias = Rev. Fac. Cienc. Agrar. Revista de la Facultad de Ciencias Medicas (Cordoba, Argentina) = Rev Fac Cien Med Univ Nac Cordoba Revista de la Facultad de Ciencias Medicas de Cordoba = Rev Fac Cienc Med Cordoba Revista de la Facultad de Ciencias Medicas de Cordoba = Rev. Fac. Cienc. Med. Cordoba Revista de la Facultad de Ciencias Medicas de la Universidad Nacional de Cordoba = Rev. Fac. Cien. Med. Univ. Nac. Cordoba Revista de la Facultad de Ciencias Medicas = Rev Fac Cienc Med Revista de la Facultad de Ciencias Medicas, Universidad Nacional de Cordoba = Rev. Fac. Cien. Med. Univ. Nac. Cordoba Revista de la Facultad De Ciencias Medicas / Universidad Nacional De Cordoba=Rev Fac Cien Med Univ Nac Cordoba;; Revista de la Facultad de Farmacia, Universidad Central de Venezuela = Rev Fac Farm Univ Cent Venez Revista de la Facultad de Medicina, Universidad Nacional Autonoma de Mexico = Rev Fac Med Univ Nac Auton Mex Revista de la Facultad de Medicina, Universidad Nacional de Colombia = Rev Fac Med Univ Nac Colomb Revista de la Facultad de Medicina, Universidad Nacional de Colombia = Rev. Fac. Med. Univ. Nac. Colomb. Revista de la Facultad de Odontologia de la Universidad Nacional de Colombia = Rev Fac Odontol Univ Nac Colomb Revista de la Facultad de Odontologia de la Universidad Nacional de Colombia = Rev. Fac. Odontol. Univ. Nac. Colomb. Revista de la Facultad de Odontologia = Rev Fac Odontol Univ Nac (Cordoba) Revista de la Facultad de Odontologia = Rev. Fac. Odontol. Univ. Nac. (Cordoba) Revista de la Facultad de Odontologia (San Miguel de Tucuman, Argentina) = Rev Fac Odontol Tucuman Revista de la Facultad de Odontologia (Santiago, Chile) = Rev Fac Odontol Univ Chile Revista de la Facultad de Odontologia, Universidad de Antioquia = Rev. Fac. Odontol. Univ. Antioq. Revista De La Facultad De Odontologia Universidad De Antioquia = Rev Fac Odontol Univ Antioq Revista de la Facultad de Odontologia, Universidad Nacional de Tucuman = Rev. Fac. Odontol. Tucuman Revista de la Federacion Odontologica Colombiana = Rev Fed Odontol Colomb Revista de la Federacion Odontologica Colombiana = Rev. Fed. Odontol. Colomb. Revista de la Federacion Odontologica Ecuatoriana = Rev Fed Odontol Ecuat Revista de la Federacion Odontologica Ecuatoriana = Rev. Fed. Odontol. Ecuat. Revista de la Real Academia de Ciencias Exactas, Físicas y Naturales (España) = Rev. R. Acad. Cienc. Exactas Fís. Nat. (Esp.) Revista De La Real Academia De Ciencias Exactas Fisicas Y Naturales Serie A-matematicas = Racsam Rev R Acad A Revista De La Real Academia De Ciencias Exactas Fisicas Y Naturales Serie A-matematicas = Racsam. Rev. R. Acad. A. Revista De La Real Academia De Ciencias Exactas Fisicas Y Naturales Serie A-matematicas = Rev Real Acad Cienc Revista De La Real Academia De Ciencias Exactas Fisicas Y Naturales Serie A-matematicas = Rev. Real Acad. Cienc. Revista de la sanidad de policia = Rev Sanid Polic Revista de la sanidad militar argentina = Rev Sanid Milit Argent Revista de la Sanidad Militar Argentina = Rev. Sanid. Milit. Argent. Revista de la sanidad militar del Peru = Rev Sanid Mil Peru Revista de la Sociedad Argentina de Biologia = Rev Soc Argent Biol Revista de la Sociedad Argentina de Biologia = Rev. Soc. Argent. Biol. Revista de la Sociedad Bolivariana de Venezuela. Sociedad Bolivariana de Venezuela = Rev Soc Bolivar Venez Revista de la Sociedad Colombiana de Endocrinologia = Rev Soc Colomb Endocrinol Revista de la Sociedad Colombiana de Ortodoncia = Rev. Soc. Colomb. Ortod. Revista de la Sociedad Colombiana de Pediatria y Puericultura = Rev Soc Colomb Pediatr Pueric Revista De La Sociedad De Ginecologia Y Obstetricia = Rev Soc Ginecol Obstet Revista de la Sociedad Mexicana de Historia Natural = Rev Soc Mex Hist Nat Revista de la Sociedad Odontologica de la Plata = Rev. Soc. Odontol. La. Plata Revista de la Sociedad Odontologica de La Plata = Rev Soc Odontol La Plata Revista de la Sociedad Peruana de Endocrinologia = Rev Soc Peru Endocrinol Revista de la Sociedad Peruana de Endocrinologia = Rev. Soc. Peru. Endocrinol. Revista de la Sociedad Quimica del Peru = Rev. Soc. Quim. Peru Revista de la Sociedad Quimica de Mexico = Rev. Soc. Quim. Mex. Revista de la Sociedad Venezolana de Historia de la Medicina = Rev Soc Venez Hist Med Revista del Ateneo Argentino de Odontologia : R.A.A.O = Rev Ateneo Argent Odontol Revista del Ateneo Argentino de Odontologia = Rev. Ateneo Argent. Odontol. Revista del Ateneo de la Catedra de Tecnica de Operatoria Dental = Rev. Ateneo Catedra Tec. Oper. Dent. Revista Del Ateneo De La Catedra De Tecnica De Operatoria Dental = Rev Ateneo Catedra Tec Oper Dent Revista De La Union Matematica Argentina = Rev Union Mat Argent Revista De La Union Matematica Argentina = Rev. Union Mat. Argent. Revista de la Unión Matemática Argentina = Rev. Un. Mat. Argentina Revista de la Universidad Nacional de Cordoba. Universidad Nacional de Cordoba = Rev Univ Nac Cordoba Revista Del Centro De Estudios Educativos = Rev Cent Estud Educ Revista Del Centro De Estudios Educativos = Rev. Cent. Estud. Educ. Revista del Circulo Argentino de Odontologia = Rev. Circ. Argent. Odontol. Revista del Circulo Odontologico de Cordoba = Rev Circ Odontol Cordoba Revista del Circulo Odontologico de Cordoba = Rev. Circ. Odontol. Cordoba Revista del Circulo Odontologico del Sur = Rev. Circ. Odontol. Sur Revista Del Circulo Odontologico Del Sur = Rev Circ Odontol Sur Revista del Circulo Odontologico de Rosario = Rev. Circul. Ondontol. Ros. Revista Del Clad Reforma Y Democracia = Rev Clad Reforma Dem Revista Del Clad Reforma Y Democracia = Rev. Clad Reforma Dem. Revista del Colegio de Medicos y Cirujanos de Guatemala = Rev Col Med Cir Guatem Revista del Colegio Estomatologico de Guatemala = Rev Col Estomatol Guatem Revista del Colegio Estomatologico de Guatemala = Rev. Col. Estomatol. Guatem. Revista del Colegio Medico de Guatemala = Rev Col Med Guatem Revista del Colegio Medico de Guatemala = Rev. Col. Med. Guatem. Revista del Colegio Nacional de Enfermeras = Rev Col Nac Enferm Revista del Colegio Nacional de Enfermeras = Rev. Col. Nac. Enferm. Revista De Letras = Rev Let Revista De Letras = Rev. Let. Revista de letras = RL Revista del Hospital del Nino = Rev Hosp Nino (Lima) Revista del Instituto de Salubridad y Enfermedades Tropicales = Rev Inst Salubr Enferm Trop Revista del Instituto de Salubridad y Enfermedades Tropicales = Rev. Inst. Salubr. Enferm. Trop. Revista del Instituto Mexicano de Ingenieros Quimicos = Rev. Inst. Mex. Ing. Chim. Revista del Instituto Mexicano del Petroleo = Rev. Inst. Mex. Pet. Revista del Instituto Nacional de Cancerologia = Rev Inst Nac Cancerol (Mex) Revista del Instituto Nacional de Cancerologia = Rev. Inst. Nac. Cancerol. (Mex.) Revista De Literatura = Rev Literatura Revista De Literatura = Rev. Literatura Revista del Museo de la Facultad de Odontologia de Buenos Aires = Rev Museo Fac Odontol B Aires Revista del Museo de la Facultad de Odontologia de Buenos Aires = Rev. Museo Fac. Odontol. B. Aires Revista del Museo Nacional. Museo Nacional (Peru) = Rev Mus Nac Revista de marina (Valparaiso, Chile) = Rev Mar Revista de Matemática de La Universidad del Zulia = Divulg. Mat. Revista de Matemática e Estatística = Rev. Mat. Estatíst. Revista de Matemáticas Aplicadas = Rev. Mat. Apl. Revista de medicina de la Universidad de Navarra = Rev Med Univ Navarra Revista de Medicina de la Universidad de Navarra = Rev. Med. Univ. Navarra Revista de Medicina De la Universidad De Navarra=Rev Med Univ Navarra;; Revista de medicina interna, neurologe, psihiatrie, neurochirurgie, dermato-venerologie. Medicina interna = Rev Med Interna Neurol Psihiatr Neurochir Dermatovenerol Med Interna Revista de Medicina Interna, Neurologie, Psihiatrie, Neurochirurgie, Dermato-Venerologie. Medicina Interna = Rev. Med. Interna Neurol. Psihiatr. Neurochir. Dermatovenerol. Med. Intern. Revista de medicina interna, neurologie, psihiatrie, neurochirurgie, dermato-venerologie. Neurologie, psihiatrie, neurochirurgie = Rev Med Interna Neurol Psihiatr Neurochir Dermatovenerol Neurol Psihiatr Neurochir Revista de Medicina Interna, Neurologie, Psihiatrie, Neurochirurgie, Dermato-Venerologie. Neurologie, Psihiatrie, Neurochirurgie = Rev. Med. Interna Neurol. Psihiatr. Neurochir. Dermatovenerol. Neurol. Psihiatr. Neurochir. Revista de medicina militar = Rev Med Mil Revista de medicina veterinaria = Rev Med Vet (B Aires) Revista de medicina y ciencias afines = Rev Med Cienc Afines Revista de Metalurgia (Madrid, Spain) = Rev. Metal. Revista De Metalurgia = Rev Metal Madrid Revista De Metalurgia = Rev. Metal. Madrid. Revista De Microbiologia = Rev Microbiol Revista De Microbiologia = Rev. Microbiol. Revista De Microscopia Electronica = Rev Microsc Electron Revista De Microscopia Electronica = Rev. Microsc. Electron. Revista De Nefrologia Dialisis Y Trasplante = Rev Nefrol Dial Tras Revista De Nefrologia Dialisis Y Trasplante = Rev. Nefrol. Dial. Tras. Revista de neurologia = Rev Neurol Revista de Neurologia=Rev Neurol;; Revista de Neurologia = Rev. Neurol. Revista De Neurologia = Rev Neurologia Revista De Neurologia = Rev. Neurologia Revista de neuro-psiquiatria = Rev Neuropsiquiatr Revista de Neuro-Psiquiatria = Rev. Neuropsiquiatr. Revista dental de Chile = Rev Dent Chile Revista Dental de Chile = Rev. Dent. Chile Revista dental = Rev Dent (St Domingo) Revista Dental = Rev. Dent. (St. Domingo) Revista De Nutricao-brazilian Journal of Nutrition = Rev Nutr Revista De Nutricao-brazilian Journal of Nutrition = Rev. Nutr. Revista de obstetricia y ginecologia de Venezuela = Rev Obstet Ginecol Venez Revista de Obstetricia y Ginecologia de Venezuela = Rev. Obstet. Ginecol. Venez. Revista de occidente (Madrid, Spain : 1923) = Rev Occidente Revista De Occidente = Rev Occidente Revista De Occidente = Rev. Occidente Revista de Odontologia da UNESP = Rev. Odontol. UNESP Revista de odontologia da UNESP / Universidade Estadual Paulista (UNESP) = Rev Odontol UNESP Revista de odontologia da UNICID = Rev Odontol UNICID Revista de Odontologia da Universidade de Sao Paulo = Rev. Odontol. Univ. Sao Paulo Revista de odontologia da Universidade de Sao Paulo / USP = Rev Odontol Univ Sao Paulo Revista de Odontologia da Universidade Federal de Santa Catarina = Rev. Odontol. St. Catarina Revista De Odontologia Da Universidade Federal De Santa Catarina = Rev Odontol St Catarina Revista de ortopedia y traumatologia. Edicion latino americana = Rev Ortop Traumatol Ed Lat Am Revista de otorrinolaringologia = Rev Otorrinolaringol Revista de pediatrie, obstetrica si ginecologie. Obstetrica si ginecologie = Rev Pediatr Obstet Ginecol Obstet Ginecol Revista de Pediatrie, Obstetrica si Ginecologie. Obstetrica si Ginecologie = Rev. Pediatr. Obstet. Ginecol. Obstet. Ginecol. Revista de pediatrie, obstetrica si ginecologie. Pediatria = Rev Pediatr Obstet Ginecol Pediatr Revista de Pediatrie, Obstetrica si Ginecologie. Pediatria = Rev. Pediatr. Obstet. Ginecol. Pediatr. Revista de planeacion y desarrollo = Rev Planeac Desarro Revista de Plasticos Modernos = Rev. Plast. Mod. Revista De Politica Internacional = Rev Polit Int Revista De Politica Internacional = Rev. Polit. Int. Revista de psicoanalisis = Rev Psicoanal Revista De Psicodidactica = Rev Psicodidact Revista De Psicodidactica = Rev. Psicodidact. Revista De Psicologia Del Deporte = Rev Psicol Deporte Revista De Psicologia Del Deporte = Rev. Psicol. Deporte Revista De Psicologia Social = Rev Psicol Soc Revista De Psicologia Social = Rev. Psicol. Soc. Revista De Psiquiatria Clinica = Rev Psiq Clin-brazil Revista De Psiquiatria Clinica = Rev. Psiq. Clin-brazil. Revista De Psiquiatria Clinica = Rev Psiquiatr Clin Revista De Psiquiatria Clinica = Rev. Psiquiatr. Clin. Revista de psiquiatria y psicologia medica de Europa y America latinas = Rev Psiquiatr Psicol Med Eur Am Lat Revista De Psiquiatria Y Salud Mental = Rev Psiquiatr Salud Revista De Psiquiatria Y Salud Mental = Rev. Psiquiatr. Salud Revista de publicaciones navales; suplemento de Sanidad naval = Rev Publ Nav Revista de quimica e farmacia = Rev Quim Farm Revista de Quimica Textil = Rev. Quim. Text. Revista de salud publica (Bogota, Colombia) = Rev Salud Publica (Bogota) Revista de sanidad e higiene publica = Rev Sanid Hig Publica (Madr) Revista de Sanidad e Higiene Publica = Rev. Sanid. Hig. Publica (Madr.) Revista de sanidad militar = Rev Sanid Milit Revista de sanidad y asistencia social = Rev Sanid Asist Soc Revista De Saude Publica = Rev Saude Publ Revista De Saude Publica = Rev. Saude Publ. Revista de saude publica = Rev Saude Publica Revista de Saude Publica=Rev Saude Publica;; Revista de Saúde Pública = Rev. Saúde Pública Revista De Statistica = Rev Stat Revista de tuberculosis del Uruguay = Rev Tuberc Urug Revista de urologia = Rev Urol(mexico) Revista de Viernes Medico = Rev Viernes Med Revista do Centro de Ciencias Biomedicas da Universidade Federal de Uberlandia = Rev Centro Cienc Biomed Univ Fed Uberlandia Revista do Centro de Ciencias Biomedicas da Universidade Federal de Uberlandia = Rev. Centro Cienc. Biomed. Univ. Fed. Uberlandia Revista do Hospital das Clinicas, Faculdade de Medicina da Universidade de Sao Paulo = Rev. Hosp. Clin. Fac. Med. Sao Paulo Revista Do Hospital Das Clinicas; Faculdade de Medicina Da Universidade De Sao Paulo=Rev Hosp Clin Fac Med Sao Paulo;; Revista do Hospital das Clinicas = Rev Hosp Clin Fac Med Sao Paulo Revista do Instituto Adolfo Lutz = Rev Inst Adolfo Lutz Revista do Instituto de Antibioticos, Universidade Federal de Pernambuco = Rev Inst Antibiot (Recife) Revista do Instituto de Antibioticos, Universidade Federal de Pernambuco = Rev. Inst. Antibiot. (Recife) Revista Do Instituto De Medicina Tropical De Sao Paulo = Rev I Med Trop Revista Do Instituto De Medicina Tropical De Sao Paulo = Rev. I. Med. Trop. Revista do Instituto de Medicina Tropical de Sao Paulo = Rev Inst Med Trop Sao Paulo Revista do Instituto de Medicina Tropical de Sao Paulo = Rev. Inst. Med. Trop. Sao Paulo Revista Do Instituto de Medicina Tropical De Sao Paulo=Rev Inst Med Trop Sao Paulo;; Revista Do Instituto De Medicina Tropical De Sao Paulo = Rev Inst Med Trop Sp Revista Do Instituto De Medicina Tropical De Sao Paulo = Rev. Inst. Med. Trop. Sp. Revista do Instituto de Medicina Tropical de São Paulo = Rev. Inst. Med. trop. S. Paulo Revista do Instituto Historico e Geographico Brazileiro (1906) = Rev Inst Hist Geogr Bras Revista do Servico Nacional de Tuberculose = Rev Serv Nac Tubers Revista Doyma De Inmunologia = Rev Doyma Inmun Revista Doyma De Inmunologia = Rev. Doyma Inmun. Revista economica do Nordeste = Rev Econ Nordeste Revista economica = Rev Econ Revista ecuatoriana de higiene y medicina tropical = Rev Ecuat Hig Med Trop Revista Ecuatoriana de Higiene y Medicina Tropical = Rev. Ecuat. Hig. Med. Trop. Revista ecuatoriana de medicina y ciencias biologicas = Rev Ecuat Med Cienc Biol Revista Ecuatoriana De Neurologia = Rev Ecuat Neurol Revista Ecuatoriana De Neurologia = Rev. Ecuat. Neurol. Revista ecuatoriana de pediatria = Rev Ecuat Pediatr Revista ecuatoriana de pediatria y puericultura = Rev Ecuat Pediatr Pueric Revista enfermagem em novas dimensoes = Rev Enferm Nov Dimens Revista Enfermagem em Novas Dimensoes = Rev. Enferm. Nov. Dimens. Revista espanola de anestesiologia = Rev Esp Anestesiol Revista Espanola de Anestesiologia = Rev. Esp. Anestesiol. Revista espanola de anestesiologia y reanimacion = Rev Esp Anestesiol Reanim Revista Espanola de Anestesiologia y Reanimacion = Rev. Esp. Anestesiol. Reanim. Revista Espanola de Anestesiologia Y Reanimacion=Rev Esp Anestesiol Reanim;; Revista espanola de antropologia americana / Departamento de Antropologia y Etnologia de America = Rev Esp Antropol Am Revista espanola de cardiologia = Rev Esp Cardiol Revista Espanola de Cardiologia=Rev Esp Cardiol;; Revista Espanola de Cardiologia = Rev. Esp. Cardiol. Revista Espanola De Cardiologia = Rev Esp Cardiol Revista Espanola De Cardiologia = Rev. Esp. Cardiol. Revista Espanola De Ciencia Y Tecnologia De Alimentos = Rev Esp Cien Tec Ali Revista Espanola De Ciencia Y Tecnologia De Alimentos = Rev. Esp. Cien. Tec. Ali. Revista Espanola De Derecho Constitucional = Rev Esp Derecho Cons Revista Espanola De Derecho Constitucional = Rev. Esp. Derecho Cons. Revista Espanola De Documentacion Cientifica = Rev Esp Doc Cient Revista Espanola De Documentacion Cientifica = Rev. Esp. Doc. Cient. Revista Española de Economía=Revista Española Econ. Revista espanola de endodoncia / AEDE = Rev Esp Endodoncia Revista Espanola de Endodoncia = Rev. Esp. Endodoncia Revista espanola de enfermedades digestivas : organo oficial de la Sociedad Espanola de Patologia Digestiva = Rev Esp Enferm Dig Revista Espanola de Enfermedades Digestivas=Rev Esp Enferm Dig;; Revista Espanola de Enfermedades Digestivas = Rev. Esp. Enferm. Dig. Revista Espanola De Enfermedades Digestivas = Rev Esp Enferm Dig Revista Espanola De Enfermedades Digestivas = Rev. Esp. Enferm. Dig. Revista espanola de estomatologia = Rev Esp Estomatol Revista Espanola de Estomatologia = Rev. Esp. Estomatol. Revista Espanola De Financiacion Y Contabilidad-spanish Journal of Finance and Accounting = Rev Esp Financ Conta Revista Espanola De Financiacion Y Contabilidad-spanish Journal of Finance and Accounting = Rev. Esp. Financ. Conta. Revista espanola de fisiologia = Rev Esp Fisiol Revista Espanola de Fisiologia=Rev Esp Fisiol;; Revista Espanola de Fisiologia = Rev. Esp. Fisiol. Revista Espanola De Fisiologia = Rev Esp Fisiol Revista Espanola De Fisiologia = Rev. Esp. Fisiol. Revista espanola de geriatria y gerontologia = Rev Esp Geriatr Gerontol Revista Espanola De Investigaciones Sociologicas = Rev Esp Investig Soc Revista Espanola De Investigaciones Sociologicas = Rev. Esp. Investig. Soc. Revista Espanola De Las Enfermedades Del Aparato Digestivo = Rev Esp Enferm Apar Revista Espanola De Las Enfermedades Del Aparato Digestivo = Rev. Esp. Enferm. Apar. Revista espanola de las enfermedades del aparato digestivo = Rev Esp Enferm Apar Dig Revista Espanola de las Enfermedades del Aparato Digestivo = Rev. Esp. Enferm. Apar. Dig. Revista espanola de las enfermedades del aparato digestivo y de la nutricion = Rev Esp Enferm Apar Dig Nutr Revista Espanola De Linguistica Aplicada = Rev Esp Linguist Apl Revista Espanola De Linguistica Aplicada = Rev. Esp. Linguist. Apl. Revista española de linguística = REspLing Revista espanola de medicina nuclear = Rev Esp Med Nucl Revista Espanola de Medicina Nuclear = Rev. Esp. Med. Nucl. Revista Espanola De Medicina Nuclear = Rev Esp Med Nucl Revista Espanola De Medicina Nuclear = Rev. Esp. Med. Nucl. Revista Espanola De Nutricion Comunitaria-spanish Journal of Community Nutrition = Rev Esp Nutr Comunit Revista Espanola De Nutricion Comunitaria-spanish Journal of Community Nutrition = Rev. Esp. Nutr. Comunit. Revista espanola de obstetricia y ginecologia = Rev Esp Obstet Ginecol Revista Espanola de Obstetricia y Ginecologia = Rev. Esp. Obstet. Ginecol. Revista espanola de oncologia = Rev Esp Oncol Revista Espanola de Oncologia = Rev. Esp. Oncol. Revista espanola de oto-neuro-oftalmologia y neurocirugia = Rev Esp Otoneurooftalmol Neurocir Revista Espanola de Oto-Neuro-Oftalmologia y Neurocirugia = Rev. Esp. Otoneurooftalmol. Neurocir. Revista espanola de paleontologia = Rev Esp Paleontol Revista Espanola de Paradoncia = Rev. Esp. Parad. Revista Espanola De Paradoncia = Rev Esp Parad Revista Espanola De Pedagogia = Rev Esp Pedagog Revista Espanola De Pedagogia = Rev. Esp. Pedagog. Revista espanola de pediatria = Rev Esp Pediatr Revista Espanola de Pediatria = Rev. Esp. Pediatr. Revista Espanola De Pediatria = Rev Esp Pediatr Revista Espanola De Pediatria = Rev. Esp. Pediatr. Revista espanola de quimioterapia : publicacion oficial de la Sociedad Espanola de Quimioterapia = Rev Esp Quimioter Revista Espanola De Quimioterapia = Rev Esp Quim Revista Espanola De Quimioterapia = Rev. Esp. Quim. Revista Espanola de Quimioterapia = Rev. Esp. Quimioter. Revista espanola de reumatismo y enfermedades osteoarticulares = Rev Esp Reum Enferm Osteoartic Revista Espanola de Reumatismo y Enfermedades Osteo-Articulares = Rev. Esp. Reum. Enferm. Osteoartic. Revista espanola de reumatologia : organo oficial de la Sociedad Espanola de Reumatologia = Rev Esp Reumatol Revista Espanola De Salud Publica = Rev Esp Salud Public Revista Espanola De Salud Publica = Rev. Esp. Salud Public. Revista espanola de salud publica = Rev Esp Salud Publica Revista Espanola de Salud Publica=Rev Esp Salud Publica;; Revista Espanola de Salud Publica = Rev. Esp. Salud Publica Revista espanola de tuberculosis = Rev Esp Tuberc Revista Espanola de Tuberculosis = Rev. Esp. Tuberc. Revista espanola la de documentacion cientifica = Rev Esp Doc Cient Revista estadistica (Havana, Cuba) = Rev Estad Revista europea de odonto-estomatologia = Rev Eur Odontoestomatol Revista Europea de Odonto-Estomatologia = Rev. Eur. Odontoestomatol. Revista Facultad De Ingenieria-universidad De Antioquia = Rev Fac Ing-univ Ant Revista Facultad De Ingenieria-universidad De Antioquia = Rev. Fac. Ing-univ. Ant. Revista Fitotecnia Mexicana = Rev Fitotec Mex Revista Fitotecnia Mexicana = Rev. Fitotec. Mex. Revista F O A = Rev FOA Revista FOA = Rev. FOA Revista gaucha de enfermagem / EENFUFRGS = Rev Gaucha Enferm Revista Gaucha de Enfermagem = Rev. Gaucha Enferm. Revista gaucha de odontologia = Rev Gaucha Odontol Revista Gaucha de Odontologia = Rev. Gaucha Odontol. Revista general de marina = Rev Gen Mar Revista geografica del Instituto Panamericano de Geografia e Historia = Rev Geogr Inst Panam Geogr Hist Revista Geologica de Chile = Rev. Geol. Chile Revista Geologica De Chile = Rev Geol Chile Revista Geologica De Chile = Rev. Geol. Chile Revista Goiana de medicina = Rev Goiana Med Revista guatemalteca de estomatologia = Rev Guatem Estomatol Revista Guatemalteca de Estomatologia = Rev. Guatem. Estomatol. Revista. Guayaquil. Hospital de Ninos "Alejandro Mann" = Rev Hosp Ninos Alejandro Mann Revista Hispanica Moderna = Rev Hispan Mod Revista Hispanica Moderna = Rev. Hispan. Mod. Revista iberica de endocrinologia = Rev Iber Endocrinol Revista Iberica de Endocrinologia = Rev. Iber. Endocrinol. Revista Iberica De Endocrinologia = Rev Iber Endocrinol Revista Iberica De Endocrinologia = Rev. Iber. Endocrinol. Revista iberica de parasitologia = Rev Iber Parasitol Revista Iberoamericana De Automatica E Informatica Industrial = Rev Iberoam Autom In Revista Iberoamericana De Automatica E Informatica Industrial = Rev. Iberoam. Autom. In. Revista Iberoamericana De Diagnostico Y Evaluacion-e Avaliacao Psicologica = Rev Iberoam Diagn Ev Revista Iberoamericana De Diagnostico Y Evaluacion-e Avaliacao Psicologica = Rev. Iberoam. Diagn. Ev. Revista iberoamericana de micologia : organo de la Asociacion Espanola de Especialistas en Micologia = Rev Iberoam Micol Revista Iberoamericana De Micologia = Rev Iberoam Micol Revista Iberoamericana De Micologia = Rev. Iberoam. Micol. Revista ibero-americana de ortodoncia : publicacion oficial de la Asociacion Ibero-Americana Ortodoncistas = Rev Iberoam Ortod Revista Ibero-Americana de Ortodoncia = Rev. Iberoam. Ortod. Revista Iberoamericana = Rev Iberoamericana Revista Iberoamericana = Rev. Iberoamericana Revista IBYS = Rev Ibys Revista IEEE America Latina = Rev. IEEE Am. Lat. Revista Ingenieria E Investigacion = Rev Ing Invest Revista Ingenieria E Investigacion = Rev. Ing. Invest. Revista Ingenierias Univsidad de Medellin = Rev. Ing. Univ. Medellin Revista Integración = Rev. Integr. Temas Mat. Revista Interamericana De Bibliografia-inter-american Review of Bibliography = Rev Interamer Bibl Revista Interamericana De Bibliografia-inter-american Review of Bibliography = Rev. Interamer. Bibl. Revista interamericana de planificacion = Rev Interam Planif Revista Interamericana De Psicologia = Rev Interam Psicol Revista Interamericana De Psicologia = Rev. Interam. Psicol. Revista interamericana de radiologia = Rev Interam Radiol Revista Interamericana de Radiologia = Rev. Interam. Radiol. Revista Internacional De Andrologia = Rev Int Androl Revista Internacional De Andrologia = Rev. Int. Androl. Revista Internacional De Contaminacion Ambiental = Rev Int Contam Ambie Revista Internacional De Contaminacion Ambiental = Rev. Int. Contam. Ambie. Revista Internacional De Medicina Y Ciencias De La Actividad Fisica Y Del Deporte = Rev Int Med Cienc Ac Revista Internacional De Medicina Y Ciencias De La Actividad Fisica Y Del Deporte = Rev. Int. Med. Cienc. Ac. Revista Internacional de Métodos Numéricos para Cálculo y Diseño en Ingeniería = Rev. Internac. Métod. Numér. Cálc. Diseñ. Ingr. Revista Internacional De Metodos Numericos Para Calculo Y Diseno En Ingenieria = Rev Int Metod Numer Revista Internacional De Metodos Numericos Para Calculo Y Diseno En Ingenieria = Rev. Int. Metod. Numer. Revista internacional de sociologia / Consejo Superior de Investigaciones Cientificas, Seccion de Sociologia del Instituto "Sancho de Moncada" = Rev Int Sociol Revista Internacional De Sociologia = Rev Int Sociol Revista Internacional De Sociologia = Rev. Int. Sociol. Revista juridica de la Universidad de Puerto Rico = Rev Jurid Univ P R Revista Kuba de medicina tropical y parasitologia = Rev Kuba Med Trop Parasitol Revista latinoamericana de anatomia patologica = Rev Latinoam Anat Patol Revista latinoamericana de cirugia plastica = Rev Latinoam Cir Plast Revista Latinoamericana de Cirugia Plastica = Rev. Latinoam. Cir. Plast. Revista Latino-americana De Enfermagem = Rev Lat-am Enferm Revista Latino-americana De Enfermagem = Rev. Lat-am. Enferm. Revista latino-americana de enfermagem = Rev Lat Am Enfermagem Revista Latino-Americana de Enfermagem = Rev. Lat. Am. Enfermagem Revista latinoamericana de filosofía = RLAF Revista Latinoamericana De Hipertension = Rev Latinoam Hiperte Revista Latinoamericana De Hipertension = Rev. Latinoam. Hiperte. Revista Latinoamericana De Ingenieria Quimica Y Quimica Aplicada-latin American Journal of Chemical Engineering and Applied Chemistry = Rev Lat Am Ing Quim Revista Latinoamericana De Ingenieria Quimica Y Quimica Aplicada-latin American Journal of Chemical Engineering and Applied Chemistry = Rev. Lat. Am. Ing. Quim. Revista Latinoamericana de Ingenieria Quimica y Quimica Aplicada = Rev. Latinoam. Ing. Quim. Quim. Apl. Revista Latinoamericana De Investigacion En Matematica Educativa-relime = Rev Lat Am Inv Mat E Revista Latinoamericana De Investigacion En Matematica Educativa-relime = Rev. Lat. Am. Inv. Mat. E. Revista latinoamericana de microbiologia = Rev Latinoam Microbiol Revista Latinoamericana de Microbiologia=Rev Latinoam Microbiol;; Revista Latinoamericana de Microbiologia = Rev. Latinoam. Microbiol. Revista latinoamericana de microbiologia y parasitologia = Rev Latinoam Microbiol Parasitol (Mex) Revista Latinoamericana de Microbiologia y Parasitologia = Rev. Latinoam. Microbiol. Parasitol. (Mex.) Revista latinoamericana de patologia = Rev Latinoam Patol Revista Latinoamericana de Patologia = Rev. Latinoam. Patol. Revista latinoamericana de perinatologia : organo oficial de la Federacion Latinoamericana de Asociaciones de Medicina [Perinatal] (F.L.A.M.P.) = Rev Latinoam Perinatol Revista Latinoamericana De Psicologia = Rev Lat Am Psicol Revista Latinoamericana De Psicologia = Rev. Lat. Am. Psicol. Revista latinoamericana de psicologia = Rev Latinoam Psicol Revista Latinoamericana De Psicopatologia Fundamental = Rev Latinoam Psicopa Revista Latinoamericana De Psicopatologia Fundamental = Rev. Latinoam. Psicopa. Revista Latinoamericana de Quimica = Rev. Latinoam. Quim. Revista loteria = Loteria (Panama) Revista Lusofona De Educacao = Rev Lusofona Educ Revista Lusofona De Educacao = Rev. Lusofona Educ. Revista Matematica Complutense = Rev Mat Complut Revista Matematica Complutense = Rev. Mat. Complut. Revista Matemática Complutense = Rev. Mat. Complut. Revista Matemática de la Universidad Complutense de Madrid = Rev. Mat. Univ. Complut. Madrid Revista Matematica Iberoamericana = Rev Mat Iberoam Revista Matematica Iberoamericana = Rev. Mat. Iberoam. Revista Matemática Iberoamericana = Rev. Mat. Iberoamericana Revista medica cubana = Rev Med Cubana Revista medica da aeronautica do Brasil = Rev Med Aeron Braz Revista medica da aeronautica = Rev Med Aeron Revista medica de Chile = Rev Med Chil Revista Medica de Chile=Rev Med Chil;; Revista Medica de Chile = Rev. Med. Chil. Revista Medica De Chile = Rev Med Chile Revista Medica De Chile = Rev. Med. Chile Revista medica de Cordoba = Rev Med Cordoba Revista medica de Costa Rica = Rev Med Costa Rica Revista Medica de Costa Rica = Rev. Med. Costa Rica Revista medica del Hospital Central del Empleado = Rev Med Hosp Cent Empl Revista medica del Hospital Espanol = Rev Medica Hosp Esp Revista medica del Hospital General = Rev Med Hosp Gen (Mex) Revista Medica del Hospital General = Rev. Med. Hosp. Gen. (Mex.) Revista medica del Hospital Obrero = Rev Med Hosp Obrero Revista medica del Instituto Mexicano del Seguro Social = Rev Med Inst Mex Seguro Soc Revista medica del IPSS / Instituto Peruano de Seguridad Social = Rev Med IPSS Revista medica de Mocambique = Rev Med Moamb Revista medica de Panama = Rev Med Panama Revista Medica de Panama=Rev Med Panama;; Revista Medica de Panama = Rev. Med. Panama Revista medica de Valparaiso = Rev Med Valparaiso Revista medica do sul de Minas = Rev Medica Minas Revista medica hondurena = Rev Med Hondur Revista Medica Hondurena = Rev. Med. Hondur. Revista medica (Instituto Mexicano del Seguro Social) = Rev Med (Mex) Revista medica peruana = Rev Med Peru Revista medico-chirurgicala a Societatii de Medici si Naturalisti din Iasi = Rev Med Chir Soc Med Nat Iasi Revista Medico-Chirurgicala a Societatii de Medici si Naturalisti Din Iasi = Rev. Med. Chir. Soc. Med. Nat. Iasi Revista Medico-Chirurgicala A Societatii de Medici Si Naturalisti Din Iasi=Rev Med Chir Soc Med Nat Iasi;; Revista Meteorologica = Rev. Meteor. Revista Mexicana De Astronomia Y Astrofisica = Rev Mex Astron Astr Revista Mexicana De Astronomia Y Astrofisica = Rev. Mex. Astron. Astr. Revista Mexicana de Astronomia y Astrofisica = Rev. Mex. Astron. Astrofis. Revista Mexicana De Astronomia Y Astrofisica-serie De Conferencias = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica-serie De Conferencias = Rev. Mex. Ast. Astr. Revista Mexicana De Astronomia Y Astrofisica, Serie De Conferencias = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica, Serie De Conferencias = Rev. Mex. Ast. Astr. Revista Mexicana De Astronomia Y Astrofisica, Serie De Conferencias, Vol 1, Abril 1995 = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica, Serie De Conferencias, Vol 1, Abril 1995 = Rev. Mex. Ast. Astr. Revista Mexicana De Astronomia Y Astrofisica - Serie De Conferencias, Vol 2, Junio 1995 = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica - Serie De Conferencias, Vol 2, Junio 1995 = Rev. Mex. Ast. Astr. Revista Mexicana De Astronomia Y Astrofisica - Serie De Conferencias, Vol 3, Diciembre 1995 = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica - Serie De Conferencias, Vol 3, Diciembre 1995 = Rev. Mex. Ast. Astr. Revista Mexicana De Astronomia Y Astrofisica: Serie De Conferencias, Vol 6, Mayo 1997 = Rev Mex Ast Astr Revista Mexicana De Astronomia Y Astrofisica: Serie De Conferencias, Vol 6, Mayo 1997 = Rev. Mex. Ast. Astr. Revista Mexicana De Biodiversidad = Rev Mex Biodivers Revista Mexicana De Biodiversidad = Rev. Mex. Biodivers. Revista Mexicana de Ciencias Farmaceuticas = Rev. Mex. Cienc. Farm. Revista Mexicana De Ciencias Geologicas = Rev Mex Cienc Geol Revista Mexicana De Ciencias Geologicas = Rev. Mex. Cienc. Geol. Revista Mexicana De Ciencias Pecuarias = Rev Mex Cienc Pecu Revista Mexicana De Ciencias Pecuarias = Rev. Mex. Cienc. Pecu. Revista mexicana de ciencias politicas y sociales = Rev Mex Cienc Polit Soc Revista mexicana de cirugia, ginecologia y cancer = Rev Mex Cir Ginecol Cancer Revista Mexicana de Cirugia, Ginecologia y Cancer = Rev. Mex. Cir. Ginecol. Cancer Revista Mexicana De Fisica E = Rev Mex Fis E Revista Mexicana De Fisica E = Rev. Mex. Fis. E Revista Mexicana de Fisica = Rev. Mex. Fis. Revista Mexicana De Fisica = Rev Mex Fis Revista Mexicana De Fisica = Rev. Mex. Fis. Revista Mexicana de Física = Rev. Mexicana Fís. Revista Mexicana de Ingenieria Quimica = Rev. Mex. Ing. Chim. Revista Mexicana de Ingenieria Quimica = Rev. Mex. Ing. Quim. Revista Mexicana De Ingenieria Quimica = Rev Mex Ing Quim Revista Mexicana De Ingenieria Quimica = Rev. Mex. Ing. Quim. Revista Mexicana De Psicologia = Rev Mex Psicol Revista Mexicana De Psicologia = Rev. Mex. Psicol. Revista Mexicana De Radiologia = Rev Mex Radiol Revista Mexicana De Radiologia = Rev. Mex. Radiol. Revista mexicana de sociologia = Rev Mex Sociol Revista mexicana de urologia = Rev Mex Urol Revista Mexicana de Urologia = Rev. Mex. Urol. Revista Musical Chilena = Rev Music Chil Revista Musical Chilena = Rev. Music. Chil. Revista Mvz Cordoba = Rev Mvz Cordoba Revista Mvz Cordoba = Rev. Mvz Cordoba Revista odonto-estomatologica = Rev Odontoestomatol Revista Odonto-Estomatologica = Rev. Odontoestomatol. Revista odontologica de Concepcion = Rev Odontol Concepcion Revista Odontologica de Concepcion = Rev. Odontol. Concepcion Revista odontologica de Costa Rica = Rev Odontol Costa Rica Revista Odontologica de Costa Rica = Rev. Odontol. Costa Rica Revista Odontologica del Circulo de Odontologos del Paraguay = Rev. Odontol. Circ. Odontol. Parag. Revista odontologica de Puerto Rico = Rev Odontol P R Revista Odontologica de Puerto Rico = Rev. Odontol. P. R. Revista odontologica do Parana = Rev Odontol Parana Revista odontologica ecuatoriana = Rev Odontol Ecuat Revista Odontologica Ecuatoriana = Rev. Odontol. Ecuat. Revista Odontologica, Facultad de Odontologia, Universidad Nacional de Cordoba = Rev. Odontol. (Cordoba) Revista Odontologica; Facultad De Odontologia, Universidad Nacional De Cordoba = Rev Odontol (Cordoba) Revista odontologica = Rev Odontol Circ Odontol Parag Revista Odontologica = Rev Odontol (La Paz) Revista Odontologica = Rev. Odontol. (La Paz) Revista (Ordem dos Medicos (Portugal)) = Rev Ordem Med Revista oto-neuro-oftalmologica y cirugia neurologica sudamericana = Rev Oto Neuro Oftalmol Cir Neurol Sud Am Revista Panamericana De Salud Publica-pan American Journal of Public Health = Rev Panam Salud Publ Revista Panamericana De Salud Publica-pan American Journal of Public Health = Rev. Panam. Salud Publ. Revista Panamericana de Salud Publica=Rev Panam Salud Publica;; Revista Panamericana de Salud Publica = Rev. Panam. Salud Publica Revista Paulista de Endodontia = Rev. Paul. Endodontia Revista Paulista De Endodontia = Rev Paul Endodontia Revista paulista de enfermagem = Rev Paul Enferm Revista Paulista de Enfermagem = Rev. Paul. Enferm. Revista paulista de hospitais = Rev Paul Hosp Revista paulista de medicina = Rev Paul Med Revista Paulista de Medicina=Rev Paul Med;; Revista Paulista de Medicina = Rev. Paul. Med. Revista paulista de odontologia = Rev Paul Odontol Revista Paulista de Odontologia = Rev. Paul. Odontol. Revista pernambucana de odontologia = Rev Pernambucana Odontol Revista Pernambucana de Odontologia = Rev. Pernambucana Odontol. Revista Peruana de Medicina de Experimental y Salud Pública = Rev. Peru. Med. Exp. Salud Publica Revista peruana de pediatria = Rev Peru Pediatr Revista peruana de poblacion = Rev Peru Poblac Revista Portugesa De Quimica = Rev Port Quim Revista Portugesa De Quimica = Rev. Port. Quim. Revista portuguesa de arqueologia = RPortA Revista Portuguesa de Cardiologia=Rev Port Cardiol;; Revista Portuguesa de Cardiologia = Rev. Port. Cardiol. Revista portuguesa de cirurgia cardio-toracica e vascular : orgao oficial da Sociedade Portuguesa de Cirurgia Cardio-Toracica e Vascular = Rev Port Cir Cardiotorac Vasc Revista portuguesa de estomatologia e cirurgia maxilo-facial = Rev Port Estomatol Cir Maxilofac Revista Portuguesa de Estomatologia e Cirurgia Maxilofacial = Rev. Port. Estomatol. Cir. Maxilofac. Revista portuguesa de farmacia = Rev Port Farm Revista portuguesa de historia = Rev Port Hist Revista portuguesa de medicina militar = Rev Port Med Mil Revista portuguesa de pediatria e puericultura = Rev Port Pediatr Pueric Revista Portuguesa de Pediatria e Puericultura = Rev. Port. Pediatr. Pueric. Revista portuguesa de pediatria = Rev Port Pediatr Revista Portuguesa de Pediatria = Rev. Port. Pediatr. Revista portuguesa de pneumologia = Rev Port Pneumol Revista Portuguesa De Pneumologia = Rev Port Pneumol Revista Portuguesa De Pneumologia = Rev. Port. Pneumol. Revista Portuguesa de Quimica = Rev. Port. Quim. Revista Quirurgica Espanola = Rev. Quir. Esp. Revista quirurgica espanola : RQE = Rev Quir Esp Revista Regional de Aracatuba Associacao Paulista de Cirurgioes Dentistas = Rev. Reg. Aracatuba Assoc. Paul. Cir. Dent. Revista Regional de Aracatuba, Associacao Paulista de Cirurgioes Dentistas = Rev Reg Aracatuba Assoc Paul Cir Dent Revista/review interamericana = Rev Rev Interam Revista "Roche." = Rev Roche Revista romana de bioetica = Rev Rom Bioet Revista Romana De Bioetica = Rev Rom Bioet Revista Romana De Bioetica = Rev. Rom. Bioet. Revista Romana de Materiale = Rev. Rom. Mater. Revista Romana De Materiale-romanian Journal of Materials = Rev Rom Mat Revista Romana De Materiale-romanian Journal of Materials = Rev. Rom. Mat. Revista Romana De Materiale-romanian Journal of Materials = Rev Rom Mater Revista Romana De Materiale-romanian Journal of Materials = Rev. Rom. Mater. Revista Romana De Medicina De Laborator = Rev Romana Med Lab Revista Romana De Medicina De Laborator = Rev. Romana Med. Lab. Revista romana de statistica : organ al Comisiei Nationale pentru Statistica = Rev Rom Stat Revista Signos = Rev Signos Revista Signos = Rev. Signos Revista. Sociedad Colombiana de Ortodoncia = Rev Soc Colomb Ortod Revista stiintelor medicale: medicina interna = Rev Stiint Med Revista Tecnica De La Facultad De Ingenieria Universidad Del Zulia = Rev Tec Fac Ing Univ Revista Tecnica De La Facultad De Ingenieria Universidad Del Zulia = Rev. Tec. Fac. Ing. Univ. Revista Tecnica Intevep = Rev Tec Intevep Revista Tecnica Intevep = Rev. Tec. Intevep Revista. Tucuman, Argentine Republic. Universidad. Facultad de Medicina = Rev Fac Med Tucuman Revista universitaria = Rev Univ Revista uruguaya de psicoanalisis = Rev Urug Psicoanal Revista Usem = Rev Usem Revista Usem = Rev. Usem Revista venezolana de filosofía = RVF Revista Venezolana De Gerencia = Rev Venez Gerenc Revista Venezolana De Gerencia = Rev. Venez. Gerenc. Revista venezolana de sanidad y asistencia social = Rev Venez Sanid Asist Soc Revista Venezolana de Sanidad y Asistencia Social = Rev. Venez. Sanid. Asist. Soc. Revista venezolana de urologia = Rev Venez Urol Revista Venezolana de Urologia = Rev. Venez. Urol. Revisting Discovery and Justification: Historical and Philosophical Perspectives On The Contest Distinction = Archimedes Revisting Discovery and Justification: Historical and Philosophical Perspectives On The Contest Distinction = Archimedes. Revitalizing Causality = Routl Stud Crit Real Revitalizing Causality = Routl. Stud. Crit. Real. Revitalizing The Rural South = Srdc Publ Revitalizing The Rural South = Srdc. Publ. Revival of Dresden = Adv Arc Ser Revival of Dresden = Adv. Arc. Ser. Revival of Strategic Spatial Planning = Knaw Verhan Revival of Strategic Spatial Planning = Knaw. Verhan. Revival of Tradition in Indonesian Politics = Routl Cont Se Asia S Revival of Tradition in Indonesian Politics = Routl. Cont. Se. Asia. S. Revmatologiia (Moscow, Russia) = Revmatologiia (Mosk) Revmatologiia = Revmatologiia (Mosk.) Revolution and Enlightenment in Europe = Enl Rig Rev Revolution and Enlightenment in Europe = Enl. Rig. Rev. Revolutionary Backlash: Women and Politics in The Early American Republic = Early Am Stud Ser Revolutionary Backlash: Women and Politics in The Early American Republic = Early Am. Stud. Ser. Revolutionary Materials: Technology and Economics = Int Sampe Tech Conf Revolutionary Materials: Technology and Economics = Int. Sampe. Tech. Conf. Revolutionary Process in Mexico = Ucla Lat Am Revolutionary Process in Mexico = Ucla. Lat. Am. Revolutionary Russia = Revolut Russ Revolutionary Russia = Revolut. Russ. Revolutionary World-an International Journal of Philosophy = Revolution World Revolutionary World-an International Journal of Philosophy = Revolution. World. Revolution, Counter-revolution and Revisionism in Postcolonial Africa: The Case of Mozambique, 1975-1994 = Routl Stud Mod Hist Revolution, Counter-revolution and Revisionism in Postcolonial Africa: The Case of Mozambique, 1975-1994 = Routl. Stud. Mod. Hist. Revolution in Geology From The Renaissance to The Enlightenment = Geol Soc Am Mem Revolution in Geology From The Renaissance to The Enlightenment = Geol. Soc. Am. Mem. Revolution in The World-system = Contrib Econ Econ Hi Revolution in The World-system = Contrib. Econ. Econ. Hi. Revolution in Writing = Ideas Prod Revolution in Writing = Ideas. Prod. Revolutionizing Pedagogy: Education for Social Justice Within and Beyond Global Neo-liberalism = Marx Educ Revolutionizing Pedagogy: Education for Social Justice Within and Beyond Global Neo-liberalism = Marx. Educ. Revolution (Oakland, Calif.) = Revolution Revolution = Revolution Revolutions, Institutions, Law = Sem Hum Sci Revolutions, Institutions, Law = Sem. Hum. Sci. Revolution (Staten Island, N.Y.) = Revolution Revolution Will Not Be Downloaded: Dissent in The Digital Age = Chandos Internet Ser Revolution Will Not Be Downloaded: Dissent in The Digital Age = Chandos. Internet. Ser. Revstat-statistical Journal = Revstat-stat J Revstat-statistical Journal = Revstat-stat. J. Revue Africaine de Developpement=Revue Africaine Devel. Revue annuelle - Societe odonto-stomatologique du Nord-Est = Rev Annu Soc Odontostomatol Nordest Revue Annuelle, Societe Odonto-Stomatologique du Nord-Est = Rev. Annu. Soc. Odontostomatol. Nordest. Revue archéologique de l’Est et du Centre-Est = RAE Revue archéologique de l'Est et du Centre-Est = RAE Revue Archeologique De L Est Et Du Centre-est = Rev Archeol-est Revue Archeologique De L Est Et Du Centre-est = Rev. Archeol-est. Revue archéologique de Narbonnaise = RAN Revue archéologique de Narbonnaise = RANarb Revue archéologique de Picardie = RAPic Revue archéologique du Centre de la France = RACFr Revue archeologique du centre de la France = Rev Archeol Centre France Revue archéologique du Centre [de la France] = RACF Revue archéologique = RA Revue archéologique = RA Revue Archeologique = Revue Archeol Revue Archeologique = Revue Archeol. Revue belge d'archéologie et d'histoire de l'art = RBA Revue belge d'archeologie et d'histoire de l'art = Rev Belge Archeol Hist Art Revue belge de geographie = Rev Belge Geogr Revue belge de medecine dentaire. Belgisch tijdschrift voor tandheelkunde = Rev Belge Med Dent Revue Belge de Medecine Dentaire=Rev Belge Med Dent;; Revue Belge de Medecine Dentaire = Rev. Belge Med. Dent. Revue belge de numismatique et de sigillographie = RBelgNum Revue belge de numismatique et de sigillographie = RBN Revue belge de pathologie et de medecine experimentale = Rev Belg Pathol Med Exp Revue Belge de Pathologie et de Medecine Experimentale = Rev. Belg. Pathol. Med. Exp. Revue belge de philologie et d'histoire. Belgisch tijdschrift voor philologie en geschiedenis = Rev Belge Philol Hist Revue belge de philologie et d’histoire = RBelgPhilHist Revue belge de philologie et d'histoire = RBPh Revue Belge De Philologie Et D Histoire = Rev Belge Philol His Revue Belge De Philologie Et D Histoire = Rev. Belge Philol. His. Revue belge de stomatologie. Belgisch tijdschrift voor stomatologie = Rev Belge Stomatol Revue belge d'histoire contemporaine. Belgisch tijdschrift voor nieuwste geschiedenis = Belg Tijdschr Nieuwste Geschied Revue belge d'homoeopathie = Rev Belg Homoeopath Revue bénédictine = RBen Revue biblique = RB Revue biblique = RBi Revue Biblique = Rev Biblique Revue Biblique = Rev. Biblique Revue bryologique et lichénologique = Rev. bryol. lichénol. Revue canadienne de biologie / editee par l'Universite de Montreal = Rev Can Biol Revue canadienne de biologie experimentale = Rev Can Biol Exp Revue Canadienne de Biologie Experimentale = Rev. Can. Biol. Exp. Revue Canadienne De Biologie Experimentale = Rev Can Biol Exptl Revue Canadienne De Biologie Experimentale = Rev. Can. Biol. Exptl. Revue Canadienne de Biologie = Rev. Can. Biol. Revue Canadienne De Biologie = Rev Can Biol Exptl Revue Canadienne De Biologie = Rev. Can. Biol. Exptl. Revue Canadienne Des Sciences De L Administration-canadian Journal of Administrative Sciences = Rev Can Sci Admin Revue Canadienne Des Sciences De L Administration-canadian Journal of Administrative Sciences = Rev. Can. Sci. Admin. Revue Canadienne des Sciences de l'Administration=Revue Can. Sci. Admin. Revue Canadienne D Etudes Du Developpement-canadian Journal of Development Studies = Rev Can Etud Dev Revue Canadienne D Etudes Du Developpement-canadian Journal of Development Studies = Rev. Can. Etud. Dev. Revue d'Allemagne = Rev Allem Revue d'Alsace = Rev Alsace Revue D'Analyse Economique=Rev. Anal. Econ. Revue d'Analyse Numérique et de Théorie de l'Approximation = Rev. Anal. Numér. Théor. Approx. Revue d'archeologie moderne et d'archeologie generale : RAMAGE = Rev Archeol Mod Archeol Gen Revue d’archéométrie = RArcheom Revue d’Archéometrie = Rev. Archéom. Revue d’assyriologie et d’archéologie orientale = RAssyr Revue d'assyriologie et d'archeologie orientale = Rev Assyriol Archeol Orient Revue d'Auvergne = Rev Auvergne Revue De Chimie Minerale = Rev Chim Miner Revue De Chimie Minerale = Rev. Chim. Miner. Revue De Chirurgie Orthopedique Et Reparatrice De L Appareil Moteur = Rev Chir Orthop Revue De Chirurgie Orthopedique Et Reparatrice De L Appareil Moteur = Rev. Chir. Orthop. Revue de chirurgie orthopedique et reparatrice de l'appareil moteur = Rev Chir Orthop Reparatrice Appar Mot Revue de Chirurgie Orthopedique et Reparatrice de l'Appareil Moteur = Rev. Chir. Orthop. Reparatrice Appar. Mot. Revue de Chirurgie Orthopedique Et Reparatrice De L Appareil Moteur=Rev Chir Orthop Reparatrice Appar Mot;; Revue de chirurgie = Rev Chir Revue D Ecologie Et De Biologie Du Sol = Rev Ecol Biol Sol Revue D Ecologie Et De Biologie Du Sol = Rev. Ecol. Biol. Sol Revue D Ecologie-la Terre Et La Vie = Rev Ecol-terre Vie Revue D Ecologie-la Terre Et La Vie = Rev. Ecol-terre. Vie Revue de Comminges (Pyrenees Centrales) = Rev Comminges Revue d'economie du developpement = Rev Econ Dev Revue d'Economie du Développement=Revue Econ. Dével. Revue d'Economie Financière=Revue Econ. Financ. Revue d'Economie Industrielle=Revue Econ. Ind. Revue d'economie politique = Rev Econ Polit Revue D Economie Politique = Rev Econ Polit Revue D Economie Politique = Rev. Econ. Polit. Revue d'Economie Politique=Revue Econ. Politique Revue d'Economie Regionale et Urbaine=Revue Econ. Reg. Urbaine Revue de Coree = Rev Coree Revue de cytologie clinique = Rev Cytol Clin Revue de droit = Rev Droit Revue De Geographie Alpine-journal of Alpine Research = Rev Geogr Alp Revue De Geographie Alpine-journal of Alpine Research = Rev. Geogr. Alp. Revue de geographie alpine / publiee par l'Institute de geographie alpine (Universite de Grenoble) = Rev Geogr Alp Revue de geographie de Lyon = Rev Geogr Lyon Revue De Geographie Physique Et De Geologie Dynamique = Rev Geogr Phys Geol Revue De Geographie Physique Et De Geologie Dynamique = Rev. Geogr. Phys. Geol. Revue De Geologie Dynamique Et De Geographie Physique = Rev Geol Dyn Geogr Revue De Geologie Dynamique Et De Geographie Physique = Rev. Geol. Dyn. Geogr. Revue de gerontologic d'expression francaise = Rev Gerontol Expr Fr Revue de Gerontologie d'Expression Francaise = Rev. Gerontol. Expr. Fr. Revue d’égyptologie (Kairo) = RdE Revue d'égyptologie = REgypt Revue d'egyptologie = Rev Egyptol Revue de la Bibliotheque nationale. Bibliotheque nationale (France) = Rev Bibl Natl Revue de l'Academie polonaise des sciences. Polska Akademia Nauk = Rev Acad Pol Sci Revue De L Agriculture = Rev Agr-brussels Revue De L Agriculture = Rev. Agr-brussels. Revue de la Haute-Auvergne = Rev Haute Auvergne Revue De L Alcoolisme = Rev Alcool Revue De L Alcoolisme = Rev. Alcool. Revue De L Art = Rev Art Revue De L Art = Rev. Art Revue de laryngologie - otologie - rhinologie = Rev Laryngol Otol Rhinol (Bord) Revue de Laryngologie Otologie Rhinologie=Rev Laryngol Otol Rhinol (Bord);; Revue de Laryngologie Otologie Rhinologie = Rev. Laryngol. Otol. Rhinol. (Bord.) Revue de la Saintonge et de l'Aunis = Rev Saintonge Aunis Revue de la Saintonge et de l’Aunis = RSaintonge Revue de la Societe de biometrie humaine = Rev Soc Biom Hum Revue de la Societe francaise d'histoire de l'art dentaire = Rev Soc Fr Hist Art Dent Revue de la Societe francaise d'histoire des hopitaux = Rev Soc Fr Hist Hop Revue de l'atherosclerose et des arteriopathies peripheriques = Rev Atheroscler (Paris) Revue de l'Atherosclerose et des Arteriopathies Peripheriques = Rev. Atheroscler. (Paris) Revue de l'atherosclerose = Rev Atheroscler Revue de la tuberculose = Rev Tuberc Revue de l'Avranchin et du pays de Granville = Rev Avranchin Pays Granville Revue D Electroencephalographie Et De Neurophysiologie Clinique = Rev Eeg Neurophysiol Revue D Electroencephalographie Et De Neurophysiologie Clinique = Rev. Eeg. Neurophysiol. Revue d'electroencephalographie et de neurophysiologie clinique = Rev Electroencephalogr Neurophysiol Clin Revue d'Electroencephalographie et de Neurophysiologie Clinique = Rev. Electroencephalogr. Neurophysiol. Clin. Revue de l'Electricite et de l'Electronique = Rev. Electr. Electron. Revue de l'enseignement philosophique = REPh Revue de l'enseignement philosophique = Rev Enseign Philos Revue de l'enseignement superieur = Rev Enseign Super Revue de l'Est = Rev Est Revue De L Est = Rev Est Revue De L Est = Rev. Est Revue D Elevage Et De Medecine Veterinaire Des Pays Tropicaux = Rev Elev Med Vet Pay Revue D Elevage Et De Medecine Veterinaire Des Pays Tropicaux = Rev. Elev. Med. Vet. Pay. Revue d'elevage et de medecine veterinaire des pays tropicaux = Rev Elev Med Vet Pays Trop Revue d'Elevage et de Medecine Veterinaire des Pays Tropicaux = Rev. Elev. Med. Vet. Pays Trop. Revue de l'histoire des religions = Rev Hist Relig Revue De L Histoire Des Religions = Rev Hist Relig Revue De L Histoire Des Religions = Rev. Hist. Relig. Revue de l’histoire des religions = RHistRel Revue de l'histoire des religions = RHR Revue de l'hygiene professionnelle = Rev Hyg Prof Revue de l'infirmiere et de l'assistante sociale = Rev Infirm Assist Soc Revue de l'Infirmiere et de l'Assistante Sociale = Rev. Infirm. Assist. Soc. Revue de l'infirmiere. Informations = Rev Infirm [Inf] Revue de l'Infirmiere. Informations = Rev. Infirm. [Inf.] Revue de l'infirmiere = Rev Infirm Revue de l'Infirmiere = Rev. Infirm. Revue De Linguistique Romane = Rev Linguist Roman Revue De Linguistique Romane = Rev. Linguist. Roman. Revue de l'Institut de sociologie = Rev Inst Sociol Revue De L Institut De Sociologie = Rev I Sociol Revue De L Institut De Sociologie = Rev. I. Sociol. Revue de l'Institut d'hygiene des mines = Rev Inst Hyg Mines (Hasselt) Revue de l'Institut d Hygiene des Mines = Rev. Inst. Hyg. Mines (Hasselt) Revue De L Institut Francais Du Petrole Et Annales Des Combustibles Liquides = Rev Inst Fr Pet Ann Revue De L Institut Francais Du Petrole Et Annales Des Combustibles Liquides = Rev. Inst. Fr. Pet. Ann. Revue De L Institut Francais Du Petrole = Rev I Fr Petrol Revue De L Institut Francais Du Petrole = Rev. I. Fr. Petrol. Revue De L Institut International De Statistique-review of The International Statistical Institute = Rev Inst Int Stat Revue De L Institut International De Statistique-review of The International Statistical Institute = Rev. Inst. Int. Stat. Revue de l'Institut Napoleon (Paris, France : 1954) = Rev Inst Napoleon Revue De L Institut Napoleon = Rev I Napoleon Revue De L Institut Napoleon = Rev. I. Napoleon Revue de l'Occident musulman et de la Mediterranee = Rev Occident Musulman Mediterr Revue de L'OFCE=Revue L'OFCE Revue de l'Universite de Bruxelles = Rev Univ Brux Revue de l'Université de Bruxelles = RUB Revue de l'Universite d'Ottawa. University of Ottawa = Rev Univ Ottawa Revue de medecine aeronautique = Rev Med Aeronaut Revue de Medecine Aeronautique = Rev. Med. Aeronaut. Revue de medecine de Toulouse = Rev Med Toulouse Revue De Medecine De Toulouse = Rev Med Toulouse Revue De Medecine De Toulouse = Rev. Med. Toulouse Revue de medecine de Tours = Rev Med Tours Revue de medecine et d'hygiene d'Outre-Mer = Rev Med Hyg Outre Mer Revue de Medecine Interne=Rev Med Interne;; Revue de Medecine Interne = Rev. Med. Interne Revue De Medecine Interne = Rev Med Interne Revue De Medecine Interne = Rev. Med. Interne Revue de medecine psychosomatique (1985) = Rev Med Psychosom Revue de medecine psychosomatique et de psychologie medicale = Rev Med Psychosom Psychol Med Revue de Medecine Psychosomatique et de Psychologie Medicale = Rev. Med. Psychosom. Psychol. Med. Revue De Medecine = Rev Med-paris Revue De Medecine = Rev. Med-paris. Revue de medecine veterinaire = Rev Med Vet (Toulouse) Revue De Medecine Veterinaire = Rev Med Vet-toulouse Revue De Medecine Veterinaire = Rev. Med. Vet-toulouse. Revue de Metallurgie / Cahiers d'Informations Techniques = Rev. Metall. / Cah. Inf. Tech. Revue De Metallurgie-cahiers D Informations Techniques = Rev Metall-paris Revue De Metallurgie-cahiers D Informations Techniques = Rev. Metall-paris. Revue De Metallurgie = Rev Metall Revue De Metallurgie = Rev. Metall. Revue de metaphysique et de morale (Paris, France : 1945) = Rev Metaphys Morale Revue De Metaphysique Et De Morale = Rev Metaphys Morale Revue De Metaphysique Et De Morale = Rev. Metaphys. Morale Revue de métaphysique et de morale = RMM Revue de micropaléontologie = Rev. Micropaleontol./font> Revue De Musicologie = Rev Musicol Revue De Musicologie = Rev. Musicol. Revue De Mycologie = Rev Mycol Revue De Mycologie = Rev. Mycol. Revue de neuropsychiatrie infantile et d'hygiene mentale de l'enfance = Rev Neuropsychiatr Infant Revue de Neuropsychiatrie Infantile et d'Hygiene Mentale de l'Enfance = Rev. Neuropsychiatr. Infant. Revue De Neuropsychiatrie Infantile Et D Hygiene Mentale De L Enfance = Rev Neuropsych Infan Revue De Neuropsychiatrie Infantile Et D Hygiene Mentale De L Enfance = Rev. Neuropsych. Infan. Revue De Neuropsychologie = Rev Neuropsychol Revue De Neuropsychologie = Rev. Neuropsychol. Revue dentaire libanaise. Lebanese dental magazine = Rev Dent Liban Revue Dentaire Libanaise (Lebanese Dental Magazine) = Rev. Dent. Liban. Revue de pathologie comparee = Rev Pathol Comp Revue de Pathologie Comparee = Rev. Pathol. Comp. Revue de pathologie generale et de physiologie clinique = Rev Pathol Gen Physiol Clin Revue de Pau et du Bearn = Rev Pau Bearn Revue De Pediatrie = Rev Pediatr Revue De Pediatrie = Rev. Pediatr. Revue De Philologie De Litterature Et D Histoire Anciennes = Rev Philol Lit Hist Revue De Philologie De Litterature Et D Histoire Anciennes = Rev. Philol. Lit. Hist. Revue de philologie, de litterature et d'histoire anciennes = Rev Philol Litt Hist Anc Revue de philologie, de littérature et d'histoire anciennes = RPh Revue de philologie, de littérature et d’histoire anciennes = RPhil Revue de philosophie ancienne = RPhA Revue De Physique Appliquee = Rev Phys Appl Revue De Physique Appliquee = Rev. Phys. Appl. Revue D Epidemiologie Et De Sante Publique = Rev Epidemiol Sante Revue D Epidemiologie Et De Sante Publique = Rev. Epidemiol. Sante Revue d'epidemiologie et de sante publique = Rev Epidemiol Sante Publique Revue d'Epidemiologie et de Sante Publique = Rev. Epidemiol. Sante Publique Revue D Epidemiologie Et de Sante Publique=Rev Epidemiol Sante Publique;; Revue D Epidemiologie Medecine Sociale Et Sante Publique = Rev Epidemiol Med S Revue D Epidemiologie Medecine Sociale Et Sante Publique = Rev. Epidemiol. Med. S. Revue d'epidemiologie, medecine sociale et sante publique = Rev Epidemiol Med Soc Sante Publique Revue d'Epidemiologie, Medecine Sociale et Sante Publique = Rev. Epidemiol. Med. Soc. Sante Publique Revue de pneumologie clinique = Rev Pneumol Clin Revue de Pneumologie Clinique=Rev Pneumol Clin;; Revue de Pneumologie Clinique = Rev. Pneumol. Clin. Revue De Pneumologie Clinique = Rev Pneumol Clin Revue De Pneumologie Clinique = Rev. Pneumol. Clin. Revue De Psychologie Appliquee = Rev Psychol Appl Revue De Psychologie Appliquee = Rev. Psychol. Appl. Revue de recherches du Service canadien des forêts = Rev. rech. Serv. can. for. Revue des archéologues et historiens d’art de Louvain = RAArtLouv Revue de Science Financière=Revue Sci. Financ. Revue des Composites et des Materiaux Avances = Rev. Compos. Mater. Av. Revue des corps de sante des armees: terre, mer, air, et du corps veterinaire = Rev Corps Sante Armees Terre Mer Air Revue des Corps de Sante des Armees, Terre, Mer, Air = Rev. Corps Sante Armees. Terre. Mer. Air Revue des deux mondes (Paris, France : 1948) = Rev Deux Mondes Revue des eaux et forêts = Rev. eaux for. Revue des études anciennes = REA Revue des études anciennes = REA Revue des études arméniennes = REArm Revue des études arméniennes = REtArm Revue des études augustiniennes = REAug Revue des études byzantines = REByz Revue des études byzantines = REByz Revue des etudes byzantines = Rev Etud Byz Revue des études géorgiennes et caucasiennes = RGeorgCauc Revue des études grecques = REG Revue des études grecques = REG Revue des etudes grecques = Rev Etud Grec Revue des etudes italiennes = Rev Etud Ital Revue Des Etudes Italiennes = Rev Etud Ital Revue Des Etudes Italiennes = Rev. Etud. Ital. Revue des études juives = REJ Revue des etudes juives = Rev Etud Juives Revue Des Etudes Juives = Rev Etud Juives Revue Des Etudes Juives = Rev. Etud. Juives Revue des études latines = REL Revue des études latines = REL Revue des etudes latines = Rev Etud Lat Revue Des Etudes Latines = Rev Etud Latin Revue Des Etudes Latines = Rev. Etud. Latin. Revue des etudes slaves = Rev Etud Slaves Revue des études sud-est européennes = RESE Revue des etudes sud-est europeennes = Rev Etud Sud Est Eur Revue Des Fermentations Et Des Industries Alimentaires = Rev Ferment Ind Alim Revue Des Fermentations Et Des Industries Alimentaires = Rev. Ferment. Ind. Alim. Revue des Infirmieres et Infirmiers Auxiliaires du Quebec = Rev. Infirm. Infirm. Aux. Que. Revue des langues romanes = Rev Lang Rom Revue Des Langues Romanes = Rev Langues Romanes Revue Des Langues Romanes = Rev. Langues Romanes Revue Des Langues Vivantes-tijdschrift Voor Levende Talen = Rev Langues Vivantes Revue Des Langues Vivantes-tijdschrift Voor Levende Talen = Rev. Langues Vivantes. Revue des maladies respiratoires = Rev Mal Respir Revue des Maladies Respiratoires = Rev. Mal. Respir. Revue Des Maladies Respiratoires=Rev Mal Respir;; Revue Des Maladies Respiratoires = Rev Mal Respir Revue Des Maladies Respiratoires = Rev. Mal. Respir. Revue Des Musees De France-revue Du Louvre = Rev Mus Fr-rev Louvr Revue Des Musees De France-revue Du Louvre = Rev. Mus. Fr-rev. Louvr. Revue des Questions Scientifiques = Rev. Questions Sci. Revue des questions scientifiques = Rev Quest Sci Revue des questions scientifiques = RQS Revue des Sciences de l'Eau = Rev. Sci. Eau Revue des sciences de l'education = Rev Sci Edu Revue des sciences humaines = Rev Sci Hum Revue Des Sciences Humaines = Rev Sci Humaines Revue Des Sciences Humaines = Rev. Sci. Humaines Revue des sciences medicales = Rev Sci Med Revue des sciences morales & politiques : travaux de l'Academie des sciences morales et politiques = Rev Sci Morales Polit Revue des sciences philosophiques et theologiques = Rev Sci Philos Theol Revue Des Sciences Philosophiques Et Theologiques = Rev Sci Philos Theol Revue Des Sciences Philosophiques Et Theologiques = Rev. Sci. Philos. Theol. Revue des sciences philosophiques et théologiques = RSPh Revue des sciences religieuses = RSR Revue des sciences sociales de la France de l'Est = Rev Sci Soc Fr Est Revue des societes savantes de Haute-Normandie = Rev Soc Savantes Haute Normandie Revue de statistique appliquee = Rev Stat Appl Revue D Esthetique = Rev Esthet Revue D Esthetique = Rev. Esthet. Revue De Stomatologie Et De Chirurgie Maxillo-faciale = Rev Stomatol Chir Revue De Stomatologie Et De Chirurgie Maxillo-faciale = Rev. Stomatol. Chir. Revue de stomatologie et de chirurgie maxillo-faciale = Rev Stomatol Chir Maxillofac Revue de Stomatologie et de Chirurgie Maxillo-Faciale = Rev. Stomatol. Chir. Maxillofac. Revue de Stomatologie Et De Chirurgie Maxillo-Faciale=Rev Stomatol Chir Maxillofac;; Revue de stomatologie = Revue Stomatol Revue des travaux de l'Academie des sciences morales et politiques et comptes rendus de ses seances = Rev Trav Acad Sci Morales Polit C R Seances Revue de synthese / Centre international de synthese = Rev Synth Revue De Synthese = Rev Synth Revue De Synthese = Rev. Synth. Revue de synthèse = RS Revue de théologie et de philosophie = RThPh Revue d'ethnologie du Quebec = Rev Ethnol Que Revue de tuberculose et de pneumologie = Rev Tuberc Pneumol (Paris) Revue de Tuberculose et de Pneumologie = Rev. Tuberc. Pneumol. (Paris) Revue D Etudes Comparatives Est-ouest = Rev Etud Comp Est-o Revue D Etudes Comparatives Est-ouest = Rev. Etud. Comp. Est-o. Revue d'etudes comparatives est-ouest = Rev Etud Comp Est Ouest Revue D Etudes Comparatives Est-ouest = Rev Etud Comp Est-q Revue D Etudes Comparatives Est-ouest = Rev. Etud. Comp. Est-q. Revue d'Etudes Comparatives Est-Ouest=Revue Etud. Compar. Est-Ouest Revue d'études ligures = RELig Revue De Zoologie Agricole Et De Pathologie Vegetale = Rev Zool Agr Pathol Revue De Zoologie Agricole Et De Pathologie Vegetale = Rev. Zool. Agr. Pathol. Revue d'hematologie = Rev Hematol Revue D Histoire De La Deuxieme Guerre Mondiale Et Des Conflits Contemporains = Rev Hist Deux Guerre Revue D Histoire De La Deuxieme Guerre Mondiale Et Des Conflits Contemporains = Rev. Hist. Deux. Guerre Revue d'histoire de la deuxieme guerre mondiale = Rev Hist Deuxieme Guerre Mond Revue d'histoire de la medecine hebraique = Rev Hist Med Heb Revue d'histoire de l'Amerique francaise = Rev Hist Am Fr Revue D Histoire De L Amerique Francaise = Rev Hist Am Fr Revue D Histoire De L Amerique Francaise = Rev. Hist. Am. Fr. Revue d'histoire de la pharmacie = Rev Hist Pharm (Paris) Revue d'histoire de la pharmacie = RHPHARM Revue d'histoire de l'art dentaire = Rev Hist Art Dent Revue d'Histoire de l'Art Dentaire = Rev. Hist. Art Dent. Revue d'histoire de l'Eglise de France = Rev Hist Eglise Fr Revue D Histoire De L Eglise De France = Rev Hist Eglise Fr Revue D Histoire De L Eglise De France = Rev. Hist. Eglise Fr. Revue d'Histoire des Mathématiques = Rev. Histoire Math. Revue d'histoire des sciences et de leurs applications = Rev Hist Sci (Paris) Revue d'histoire des sciences et de leurs applications = RHS Revue d'Histoire des Sciences = Rev. Histoire Sci. Revue d'histoire des sciences = Rev Hist Sci [Paris] Revue d'histoire des textes = Rev Hist Textes Revue d'histoire des textes = RHT Revue D Histoire Diplomatique = Rev Hist Diplomatiq Revue D Histoire Diplomatique = Rev. Hist. Diplomatiq. Revue d'histoire du droit (Tijdschrift voor Rechtsgeschiedenis) = RHD Revue D Histoire Du Theatre = Rev Hist Theatre Revue D Histoire Du Theatre = Rev. Hist. Theatre Revue d'histoire ecclesiastique = Rev Hist Eccles Revue D Histoire Ecclesiastique = Rev Hist Ecclesiast Revue D Histoire Ecclesiastique = Rev. Hist. Ecclesiast. Revue d'histoire ecclésiastique = RHE Revue d'histoire economique et sociale = Rev Hist Econ Soc Revue D Histoire Et De Philosophie Religieuses = Rev Hist Philos Rel Revue D Histoire Et De Philosophie Religieuses = Rev. Hist. Philos. Rel. Revue d'histoire et de philosophie religieuses = Rev Hist Philos Relig Revue d'histoire et de philosophie religieuses = RHPhR Revue D Histoire Litteraire De La France = Rev Hist Lit Fr Revue D Histoire Litteraire De La France = Rev. Hist. Lit. Fr. Revue d'histoire litteraire de la France = Rev Hist Litt Fr Revue d'histoire maghrebine = Rev Hist Maghreb Revue d'histoire moderne et contemporaine = Rev Hist Mod Contemp Revue D Histoire Moderne Et Contemporaine = Rev Hist Mod Contemp Revue D Histoire Moderne Et Contemporaine = Rev. Hist. Mod. Contemp. Revue d'hygiene et de medecine sociale = Rev Hyg Med Soc Revue d'Hygiene et de Medecine Sociale = Rev. Hyg. Med. Soc. Revue D Immunologie Et De Therapie Antimicrobienne = Rev Immunol Ther Ant Revue D Immunologie Et De Therapie Antimicrobienne = Rev. Immunol. Ther. Ant. Revue d'immunologie et de therapie antimicrobienne = Rev Immunol Ther Antimicrob Revue d'Immunologie et de Therapie Antimicrobienne = Rev. Immunol. Ther. Antimicrob. Revue D Immunologie = Rev Immunol Revue D Immunologie = Rev. Immunol. Revue d'immunologie = Rev Immunol (Paris) Revue d'Immunologie = Rev. Immunol. (Paris) Revue D Informatique Mediciale = Rev Inform Med Revue D Informatique Mediciale = Rev. Inform. Med. Revue d'odonto-stomatologie du midi de la France = Rev Odontostomatol Midi Fr Revue d'Odonto-Stomatologie du Midi de la France = Rev. Odontostomatol. Midi Fr. Revue d'odonto-stomatologie = Rev Odontostomatol Revue d'Odonto-Stomatologie = Rev. Odontostomatol. (Paris) Revue D Optique Theorique Et Instrumentale = Rev Opt Theor Instru Revue D Optique Theorique Et Instrumentale = Rev. Opt. Theor. Instru. Revue d'orthopedie dento-faciale = Rev Orthop Dento Faciale Revue d'Orthopedie Dento-Faciale = Rev. Orthop. Dento. Faciale Revue d'orthopedie et de chirurgie de l'appareil moteur = Rev Orthop Chir Appar Mot Revue d'oto-neuro-ophtalmologie = Rev Otoneuroophtalmol Revue d'Oto-Neuro-Ophtalmologie = Rev. Otoneuroophtalmol. Revue dromoise = Rev Dromoise Revue du bois et de ses applications = Rev. bois appl. Revue du Centre d'etude des pays de l'Est et du Centre national pour l'etude des Etats de l'Est. Brussels (Belgium). Universite libre. Centre d'etude des pays de l'Est = Rev Cent Etud Pays Est Revue Du Cinema = Rev Cinema-image Son Revue Du Cinema = Rev. Cinema-image. Son. Revue du corps de sante militaire = Rev Corps Sante Mil Revue Du Louvre-la Revue Des Musees De France = Rev Louvre Revue Du Louvre-la Revue Des Musees De France = Rev. Louvre. Revue du Louvre. La revue des musées de France = RLouvre Revue Du Moyen Age Latin = Rev Moyen Age Lat Revue Du Moyen Age Latin = Rev. Moyen Age Lat. Revue du Nord = RdN Revue du Nord = Rev Nord Revue Du Nord = Rev Nord Revue Du Nord = Rev. Nord Revue du paludisme et de medecine tropicale = Rev Palud Med Trop Revue du Praticien = Rev. Prat. Revue Du Praticien = Rev Praticien Revue Du Praticien = Rev. Praticien Revue du rhumatisme (Ed. francaise : 1993) = Rev Rhum Ed Fr Revue du Rhumatisme. Edition Francaise = Rev. Rhum. Ed. Fr. Revue du Rhumatisme. English Edition = Rev. Rhum. Engl. Ed. Revue Du Rhumatisme. English Edition=Rev Rhum Engl Ed;; Revue du rhumatisme (English ed.) = Rev Rhum Engl Ed Revue du rhumatisme et des maladies osteo-articulaires = Rev Rhum Mal Osteoartic Revue du Rhumatisme et des Maladies Osteo-Articulaires = Rev. Rhum. Mal. Osteoartic. Revue Du Rhumatisme Et Des Maladies Osteo-articulaires = Rev Rhum Mal Osteo-m Revue Du Rhumatisme Et Des Maladies Osteo-articulaires = Rev. Rhum. Mal. Osteo-m. Revue du rhumatisme = Rev Rhum Revue Du Rhumatisme = Rev Rhum Revue Du Rhumatisme = Rev. Rhum. Revue du Rouergue = Rev Rouergue Revue du SESDA = Rev SESDA Revue du SESDA = Rev. SESDA Revue du Tarn = Rev Tarn Revue du Vivarais = Rev Vivarais Revue Du Zoologie Agricole Et Appliquee = Rev Zoolog Agric App Revue Du Zoologie Agricole Et Appliquee = Rev. Zoolog. Agric. App. Revue Economique de Madagascar=Revue Econ. Madagascar Revue economique du Sud-Ouest = Rev Econ Sud Ouest Revue economique et sociale = Rev Econ Soc Revue Economique = Rev Econ Revue Economique = Rev. Econ. Revue Economique = Rev Econ-fr Revue Economique = Rev. Econ-fr. Revue Economique=Revue Econ. Revue égyptologique (Paris) = RevEg Revue Epidemiologie Et Sante Animale = Rev Epid San Anim Revue Epidemiologie Et Sante Animale = Rev. Epid. San. Anim. Revue europeenne de dermatologie et de MST = Rev Eur Dermatol MST Revue Européenne des Éléments Finis = Rev. Européenne Élém. Finis Revue europeenne des migrations internationales = Rev Eur Migr Int Revue Europeenne D Etudes Cliniques Et Biologique = Rev Eur Etud Cl Biol Revue Europeenne D Etudes Cliniques Et Biologique = Rev. Eur. Etud. Cl. Biol. Revue europeenne d'etudes cliniques et biologiques. European journal of clinical and biological research = Rev Eur Etud Clin Biol Revue Europeenne d'Etudes Cliniques et Biologiques = Rev. Eur. Etud. Clin. Biol. Revue Finance Contrôle Stratégie=Revue Finance Contrôle Stratégie Revue forestière française = Rev. for. fr. Revue Francaise D Allergologie Et D Immunologie Clinique = Rev Fr Allergol Revue Francaise D Allergologie Et D Immunologie Clinique = Rev. Fr. Allergol. Revue francaise d'allergologie = Rev Fr Allergol Revue Francaise d'Allergologie = Rev. Fr. Allergol. Revue Francaise D Allergologie = Rev Fr Allergol Revue Francaise D Allergologie = Rev. Fr. Allergol. Revue Francaise D Automatique Informatique Recherche Operationnelle = Rev Fr Automat Infor Revue Francaise D Automatique Informatique Recherche Operationnelle = Rev. Fr. Automat. Infor. Revue Française d'Economie=Revue Française Econ. Revue Francaise de Geotechnique = Rev. Fr. Geotech. Revue francaise de gerontologie = Rev Fr Gerontol Revue Française de Gestion=Revue Française Gestion Revue Francaise De Gynecologie Et D Obstetrique = Rev Fr Gynecol Obste Revue Francaise De Gynecologie Et D Obstetrique = Rev. Fr. Gynecol. Obste. Revue francaise de gynecologie et d'obstetrique = Rev Fr Gynecol Obstet Revue Francaise de Gynecologie et d'Obstetrique = Rev. Fr. Gynecol. Obstet. Revue Francaise de la Prothese Dentaire = Rev. Fr. Prothese Dent. Revue Francaise De Linguistique Appliquee = Rev Fr Ling Appl Revue Francaise De Linguistique Appliquee = Rev. Fr. Ling. Appl. Revue Francaise d'Endocrinologie Clinique, Nutrition et Metabolisme = Rev. Fr. Endocrinol. Clin. Revue francaise d'endodontie : publication officielle de la Societe francaise d'endodontie = Rev Fr Endod Revue Francaise d'Endodontie = Rev. Fr. Endod. Revue francaise de psychanalyse = Rev Fr Psychanal Revue Francaise de Psychanalyse = Rev. Fr. Psychanal. Revue Francaise De Psychanalyse = Rev Fr Psychanal Revue Francaise De Psychanalyse = Rev. Fr. Psychanal. Revue Francaise De Recherche Operationnele = Rev Fr Rech Operat Revue Francaise De Recherche Operationnele = Rev. Fr. Rech. Operat. Revue francaise des affaires sociales = Rev Fr Aff Soc Revue francaise de science politique = Rev Fr Sci Polit Revue Francaise De Science Politique = Rev Fr Sci Polit Revue Francaise De Science Politique = Rev. Fr. Sci. Polit. Revue Francaise Des Corps Gras = Rev Fr Corps Gras Revue Francaise Des Corps Gras = Rev. Fr. Corps Gras Revue francaise des maladies respiratoires = Rev Fr Mal Respir Revue Francaise des Maladies Respiratoires = Rev. Fr. Mal. Respir. Revue Francaise Des Maladies Respiratoires = Rev Fr Mal Respir Revue Francaise Des Maladies Respiratoires = Rev. Fr. Mal. Respir. Revue francaise de sociologie = Rev Fr Sociol Revue Francaise De Sociologie = Rev Fr Sociol Revue Francaise De Sociologie = Rev. Fr. Sociol. Revue francaise des prothesistes dentaires = Rev Fr Prothes Dent Revue Francaise des Prothesistes Dentaires = Rev. Fr. Prothes. Dent. Revue francaise de transfusion et d'hemobiologie : bulletin de la Societe nationale de transfusion sanguine = Rev Fr Transfus Hemobiol Revue Francaise De Transfusion Et D Hemobiologie = Rev Fr Transfus Hem Revue Francaise De Transfusion Et D Hemobiologie = Rev. Fr. Transfus. Hem. Revue Francaise de Transfusion et d'Hemobiologie = Rev. Fr. Transfus. Hemobiol. Revue Francaise De Transfusion Et Immuno-hematologie = Rev Fr Transfus Immu Revue Francaise De Transfusion Et Immuno-hematologie = Rev. Fr. Transfus. Immu. Revue francaise de transfusion et immuno-hematologie = Rev Fr Transfus Immunohematol Revue Francaise de Transfusion et Immuno-Hematologie = Rev. Fr. Transfus. Immunohematol. Revue francaise de transfusion = Rev Fr Transfus Revue Francaise de Transfusion = Rev. Fr. Transfus. Revue Francaise De Transfusion = Rev Fr Transfus Immu Revue Francaise De Transfusion = Rev. Fr. Transfus. Immu. Revue francaise d'etudes americaines = Rev Fr Etud Am Revue Francaise D Etudes Americaines = Rev Fr Etud Amer Revue Francaise D Etudes Americaines = Rev. Fr. Etud. Amer. Revue Francaise D Etudes Cliniques Et Biologiques = Rev Fr Etud Clin Bio Revue Francaise D Etudes Cliniques Et Biologiques = Rev. Fr. Etud. Clin. Bio. Revue francaise d'etudes cliniques et biologiques = Rev Fr Etud Clin Biol Revue Francaise d'Etudes Cliniques et Biologiques = Rev. Fr. Etud. Clin. Biol. Revue Francaise D Histoire D Outre-mer = Rev Fr Hist Outre Revue Francaise D Histoire D Outre-mer = Rev. Fr. Hist. Outre. Revue francaise d'histoire d'outre-mer / Societe francaise d'histoire d'outre-mer = Rev Fr Hist Outre Mer Revue francaise d'histoire du livre = Rev Fr Hist Livre Revue Francaise D Informatique De Recherche Operationnelle = Rev Fr Inform Rech O Revue Francaise D Informatique De Recherche Operationnelle = Rev. Fr. Inform. Rech. O. Revue francaise d'odonto-stomatologie = Rev Fr Odontostomatol Revue Francaise d'Odonto-Stomatologie = Rev. Fr. Odontostomatol. Revue Francaise d'Oenologie = Rev. Fr. Oenol. Revue Francaise Du Marketing = Rev Fr Marketing Revue Francaise Du Marketing = Rev. Fr. Marketing Revue générale de Botanique = Rev. gen. Bot. Revue generale de droit = Rev Gen Droit Revue Generale des Caoutchoucs & Plastiques = Rev. Gen. Caoutch. Plast. Revue generale des sciences pures et appliquees et bulletin de l'Association francaise pour l'avancement des sciences = Rev Gen Sci Pures Appl Bull Assoc Fr Av Sci Revue Generale de Thermique = Rev. Gen. Therm. Revue Generale De Thermique = Rev Gen Therm Revue Generale De Thermique = Rev. Gen. Therm. Revue geographique de l'Est = Rev Geogr Est Revue geographique des Pyrenees et du Sud-Ouest = Rev Geogr Pyren Sud Ouest Revue historique de Bordeaux et du departement de la Gironde = Rev Hist Bordeaux Dep Gironde Revue historique de droit français et étranger = RD Revue historique des armees = Rev Hist Armees Revue historique des armées = RHistArmees Revue historique (Paris, France) = Rev Hist (Paris) Revue Historique = Rev Historique Revue Historique = Rev. Historique Revue historique = RH Revue historique vaudoise = RHV Revue hittite et asianique = RHA Revue informatique et statistique dans les sciences humaines = RISSH Revue international des services de sante des armees de terre, de mer et de l'air = Rev Int Serv Sante Armees Revue internationale de criminologie et de police technique = Rev Int Criminol Police Tech Revue Internationale De La Documentation = Rev Int Doc Revue Internationale De La Documentation = Rev. Int. Doc. Revue Internationale De Musique Francaise = Rev Int Musique Fr Revue Internationale De Musique Francaise = Rev. Int. Musique Fr. Revue internationale de pediatrie = Rev Int Pediatr Revue internationale de philosophie = Rev Int Philos Revue Internationale De Philosophie = Rev Int Philos Revue Internationale De Philosophie = Rev. Int. Philos. Revue internationale de philosophie = RIPh Revue Internationale De Psychologie Appliquee = Rev Int Psychol Appl Revue Internationale De Psychologie Appliquee = Rev. Int. Psychol. Appl. Revue Internationale De Psychologie Sociale-international Review of Social Psychology = Rev Int Psychol Soc Revue Internationale De Psychologie Sociale-international Review of Social Psychology = Rev. Int. Psychol. Soc. Revue internationale des droits de l’antiquité = RDroitsAnt Revue internationale des droits de l'Antiquité = RIDA Revue Internationale Des Hautes Temperatures Et Des Refractaires = Rev Int Hautes Temp Revue Internationale Des Hautes Temperatures Et Des Refractaires = Rev. Int. Hautes Temp. Revue Internationale des Services de Sante des Armees de Terre, de Mer et de l Air = Rev. Int. Serv. Sante Armees Revue internationale d'hepatologie = Rev Int Hepatol Revue Internationale d'Hepatologie = Rev. Int. Hepatol. Revue internationale d'histoire de la psychanalyse = Rev Int Hist Psychanal Revue internationale d'histoire de la psychiatrie = Rev Int Hist Psychiatr Revue internationale d'histoire militaire = Rev Int Hist Mil Revue internationale d'onomastique = RIO Revue internationale du trachome et de pathologie oculaire tropicale et subtropicale et de sante publique : organe de la Ligue contre le trachome avec la collaboration de l'International Organization against Trachoma et des organisation... = Rev Int Trach Pathol Ocul Trop Subtrop Sante Publique Revue Internationale du Trachome et de Pathologie Oculaire Tropicale et Subtropicale et de Sante Publique = Rev. Int. Trach. Pathol. Ocul. Trop. Subtrop. Sante Publique Revue Internationale Du Trachome Et de Pathologie Oculaire Tropicale EtSubtropicale Et De Sante Publique Rev Int Trach Pathol Ocul Trop Subtro=Sante Publique;; Revue internationale du trachome et de pathologie oculaire tropicale et subtropicale : organe de la Ligue contre le trachome avec la collaboration de l'International Organization against Trachoma et des organisations nationales et inter... = Rev Int Trach Pathol Ocul Trop Subtrop Revue Internationale du Trachome et de Pathologie Oculaire Tropicale et Subtropicale = Rev. Int. Trach. Pathol. Ocul. Trop. Subtrop. Revue internationale du trachome. International review of trachoma = Rev Int Trach Revue Internationale du Trachome = Rev. Int. Trach. Revue Laitiere Francaise = Rev Laitiere Fr Revue Laitiere Francaise = Rev. Laitiere Fr. Revue Lyonnaise de Medecine = Rev. Lyon. Med. Revue Marocaine De Medecine Et Sante = Rev Maroc Med Sante Revue Marocaine De Medecine Et Sante = Rev. Maroc. Med. Sante Revue medicale de Bruxelles = Rev Med Brux Revue Medicale de Bruxelles=Rev Med Brux;; Revue Medicale de Bruxelles = Rev. Med. Brux. Revue medicale de la Suisse romande = Rev Med Suisse Romande Revue Medicale de la Suisse Romande=Rev Med Suisse Romande;; Revue Medicale de la Suisse Romande = Rev. Med. Suisse Romande Revue medicale de Liege = Rev Med Liege Revue Medicale de Liege=Rev Med Liege;; Revue Medicale de Liege = Rev. Med. Liege Revue medicale de Louvain = Rev Med Louvain Revue medicale de Nancy = Rev Med Nancy Revue medicale des alpes francaises = Rev Med Alpes Fr Revue medicale du Moyen-Orient = Rev Med Moyen Orient Revue Medicale du Moyen-Orient = Rev. Med. Moyen. Orient Revue Medicale Internationale de Photo, Cinema, Television (International Journal of Medical Photography, Cinematography and Television) = Rev. Med. Int. Photo Cinema Telev. Revue medicale internationale de photo, cinema, television. International journal of medical photography, cinematography & television = Rev Med Int Photo Cinema Telev Revue medicale miniere = Rev Med Miniere Revue medicale suisse = Rev Med Suisse Revue Medicale Suisse = Rev. Med. Suisse Revue medico-chirurgicale des maladies du foie = Rev Med Chir Mal Foie Revue Medico-Chirurgicale des Maladies du Foie = Rev. Med. Chir. Mal. Foie Revue mediterraneenne des sciences medicales = Rev Mediterr Sci Med Revue mensuelle des Musées et Collections de la ville Genève = Rev. mens. Mus. Collect. ville Genève Revue Musicale = Rev Musicale Revue Musicale = Rev. Musicale Revue Neurologique = Rev Neurol Revue Neurologique = Rev. Neurol. Revue Neurologique = Rev Neurol-france Revue Neurologique = Rev. Neurol-france. Revue neurologique = Rev Neurol (Paris) Revue Neurologique=Rev Neurol (Paris);; Revue Neurologique = Rev. Neurol. (Paris) Revue nouvelle (Brussels, Belgium) = Rev Nouv Revue numismatique = Rev Numis Revue numismatique = RN Revue numismatique = RNum Revue odonto-implantologique = Rev Odontoimplantol Revue Odonto-Implantologique = Rev. Odontoimplantol. Revue odonto stomatologique du Nord-Est = Rev Odontostomatol Nordest Revue Odonto-Stomatologique du Nord-Est = Rev. Odontostomatol. Nordest. Revue. Palais de la decouverte (Paris, France) = Rev Palais Decouv Revue Philosophique De La France Et De L Etranger = Rev Philos Fr Etrang Revue Philosophique De La France Et De L Etranger = Rev. Philos. Fr. Etrang. Revue philosophique de la France et de l'étranger = RPhilos Revue philosophique de Louvain = Rev Philos Louv Revue Philosophique De Louvain = Rev Philos Louvain Revue Philosophique De Louvain = Rev. Philos. Louvain Revue philosophique de Louvain = RPhL Revue Romane = Rev Romane Revue Romane = Rev. Romane Revue Roumaine de Biochimie = Rev. Roum. Biochim. Revue Roumaine De Biochimie = Rev Roum Biochim Revue Roumaine De Biochimie = Rev. Roum. Biochim. Revue Roumaine de Chimie = Rev. Roum. Chim. Revue Roumaine De Chimie = Rev Roum Chim Revue Roumaine De Chimie = Rev. Roum. Chim. Revue Roumaine de Geophysique = Rev. Roum. Geophys. Revue Roumaine De Linguistique-romanian Review of Linguistics = Rev Roum Linguist Revue Roumaine De Linguistique-romanian Review of Linguistics = Rev. Roum. Linguist. Revue Roumaine de Mathématiques Pures et Appliquées = Rev. Roumaine Math. Pures Appl. Revue Roumaine De Mathematiques Pures Et Appliquees = Rev Roum Math Pure A Revue Roumaine De Mathematiques Pures Et Appliquees = Rev. Roum. Math. Pure. A. Revue roumaine de medecine interne = Rev Roum Med Intern Revue Roumaine de Medecine Interne = Rev. Roum. Med. Intern. Revue Roumaine De Medecine Interne = Rev Roum Med-med Int Revue Roumaine De Medecine Interne = Rev. Roum. Med-med. Int. Revue Roumaine De Medecine-medecine Interne = Rev Roum Med-med Int Revue Roumaine De Medecine-medecine Interne = Rev. Roum. Med-med. Int. Revue roumaine de medecine = Rev Roum Med Revue Roumaine de Medecine = Rev. Roum. Med. Revue roumaine de morphologie et d'embryologie = Rev Roum Morphol Embryol Revue Roumaine de Morphologie et d'Embryologie = Rev. Roum. Morphol. Embryol. Revue roumaine de morphologie et de physiologie = Rev Roum Morphol Physiol Revue Roumaine de Morphologie et de Physiologie = Rev. Roum. Morphol. Physiol. Revue roumaine d'endocrinologie = Rev Roum Endocrinol Revue Roumaine d'Endocrinologie = Rev. Roum. Endocrinol. Revue roumaine de neurologie et de psychiatrie = Rev Roum Neurol Psychiatr Revue Roumaine de Neurologie et de Psychiatrie = Rev. Roum. Neurol. Psychiatr. Revue roumaine de neurologie = Rev Roum Neurol Revue Roumaine de Neurologie = Rev. Roum. Neurol. Revue roumaine de physiologie (Bucharest, Romania : 1990) = Rev Roum Physiol Revue roumaine de physiologie = Rev Roum Physiol Revue Roumaine de Physiologie = Rev. Roum. Physiol. Revue Roumaine de Physique = Rev. Roum. Phys. Revue Roumaine De Physique = Rev Roum Phys Revue Roumaine De Physique = Rev. Roum. Phys. Revue Roumaine des Sciences Sociales; Série Sciences Economiques=Revue Roumaine Sci. Soc. Série Sci. Econ. Revue Roumaine des Sciences Techniques = Rev. Roumaine Sci. Tech. Sér. Électrotech. Énergét. Revue Roumaine des Sciences Techniques = Rev. Roumaine Sci. Tech. Sér. Méc. Appl. Revue Roumaine Des Sciences Techniques-serie Electrotechnique Et Energetique = Rev Roum Sci Tech-el Revue Roumaine Des Sciences Techniques-serie Electrotechnique Et Energetique = Rev. Roum. Sci. Tech-el. Revue Roumaine Des Sciences Techniques-serie Electrotechnique Et Energetique = Rev Roum Sci Tech-se Revue Roumaine Des Sciences Techniques-serie Electrotechnique Et Energetique = Rev. Roum. Sci. Tech-se. Revue roumaine de virologie (Bucharest, Romania : 1990) = Rev Roum Virol Revue roumaine de virologie = Rev Roum Virol Revue Roumaine de Virologie = Rev. Roum. Virol. Revue roumaine d'histoire = Rev Roum Hist Revue Roumaine D Histoire = Rev Roum Hist Revue Roumaine D Histoire = Rev. Roum. Hist. Revue roumaine d'inframicrobiologie = Rev Roum Inframicrobiol Revue Roumaine d'Inframicrobiologie = Rev. Roum. Inframicrobiol. Revue Scientifique Et Technique De L Office International Des Epizooties = Rev Sci Tech Oie Revue Scientifique Et Technique De L Office International Des Epizooties = Rev. Sci. Tech. Oie. Revue scientifique et technique (International Office of Epizootics) = Rev Sci Tech Revue Scientifique et Technique, Office International des Epizooties = Rev. Sci. Tech. Revue Scientifique Et Technique-office International Des Epizooties = Rev Sci Tech Oie Revue Scientifique Et Technique-office International Des Epizooties = Rev. Sci. Tech. Oie. Revue Scientifique Et Technique=Rev Sci Tech;; Revue Stomato-Odontologique du Nord de la France = Rev. Stomatoodontol. Nord Fr. Revue Suisse D Agriculture = Rev Suisse Agric Revue Suisse D Agriculture = Rev. Suisse Agric. Revue suisse d'art et d'archéologie = RSAA Revue suisse de viticulture arboriculture horticulture = Rev. suisse vitic. arboric. hortic. Revue suisse de zoologie; annales de la Societe zoologique suisse et du Museum d'histoire naturelle de Geneve = Rev Suisse Zool Revue suisse de Zoologie = Rev. suisse zool. Revue Suisse de Zoologie = Rev. Suisse Zool. Revue Suisse De Zoologie = Rev Suisse Zool Revue Suisse De Zoologie = Rev. Suisse Zool. Revue suisse d'Hydrologie = Rev. suisse Hydrol. Revue Technique Thomson-csf = Rev Tech Thomson Revue Technique Thomson-csf = Rev. Tech. Thomson. Revue Theologique De Louvain = Rev Theol Louvain Revue Theologique De Louvain = Rev. Theol. Louvain Revue théologique de Louvain = RThL Revue Tiers Monde=Revue Tiers Monde Revue tiers-monde = Tiers Monde Revue tunisienne de geographie = Rev Tunis Geogr Revue tunisienne de sciences sociales = Rev Tunis Sci Soc Revue tunisienne des etudes de population = Rev Tunis Etud Popul Reward and Decision Making in Corticobasal Ganglia Networks = Ann Ny Acad Sci Reward and Decision Making in Corticobasal Ganglia Networks = Ann. Ny. Acad. Sci. Reweaving The Social Tapestry = Uniting Amer Reweaving The Social Tapestry = Uniting. Amer. Reworking The Bible: Apocryphal and Related Texts At Qumran = Stud Text Des Judah Reworking The Bible: Apocryphal and Related Texts At Qumran = Stud. Text. Des. Judah. Rewriting, Computation and Proof = Lect Notes Comput Sc Rewriting, Computation and Proof = Lect. Notes. Comput. Sc. Rewriting Histories = Rewriting Hist Rewriting Histories = Rewriting Hist. Rewriting Logic and Its Applications = Lect Notes Comput Sc Rewriting Logic and Its Applications = Lect. Notes. Comput. Sc. Rewriting Techniques and Applications = Lect Notes Comput Sc Rewriting Techniques and Applications = Lect. Notes. Comput. Sc. Rewriting Techniques and Applications, Proceedings = Lect Notes Comput Sc Rewriting Techniques and Applications, Proceedings = Lect. Notes. Comput. Sc. Rewriting Tecniques and Applications, Proceedings = Lect Notes Comput Sc Rewriting Tecniques and Applications, Proceedings = Lect. Notes. Comput. Sc. Rezeption Des Orpheus Mythos in Deutschen Musikdramen Des 17 Jahrhunderts = Fruhe Neuzeit-stud D Rezeption Des Orpheus Mythos in Deutschen Musikdramen Des 17 Jahrhunderts = Fruhe. Neuzeit-stud. D. Rf and Millimeter-wave Photonics = Proc Spie Rf and Millimeter-wave Photonics = Proc. Spie. Rf Bulk Acoustic Wave Filters for Communications = Artech Hse Microw Li Rf Bulk Acoustic Wave Filters for Communications = Artech. Hse. Microw. Li. Rfic: 2009 Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad Freq Integr Rfic: 2009 Ieee Radio Frequency Integrated Circuits Symposium = Ieee Rad. Freq. Integr. Rfid Design Principles = Artech Hse Microw Li Rfid Design Principles = Artech. Hse. Microw. Li. Rfid-enabled Sensor Design and Applications = Artech Hse Integr Mi Rfid-enabled Sensor Design and Applications = Artech. Hse. Integr. Mi. RF illustrated = RF Illus Rf Mems Switches and Integrated Switching Circuits: Design, Fabrication, and Test = Mems Ref Shelf Rf Mems Switches and Integrated Switching Circuits: Design, Fabrication, and Test = Mems Ref. Shelf. R for Sas and Spss Users = Stat Comput Ser R for Sas and Spss Users = Stat. Comput. Ser. R for Stata Users = Stat Comput Ser R for Stata Users = Stat. Comput. Ser. RF = RF RGO = RGO Rheinische Lebensbilder = Rheinische Lebensbilder Rheinisches Arzteblatt = Rheinisches Arztebl Rheinisches Museum fur Philologie = Rhein Mus Philol Rheinisches Museum für Philologie = RhM Rheinisches Museum für Philologie = RhM Rheinische Vierteljahrsblatter = Rhein Vierteljahrsbl Rheologica Acta = Rheol Acta Rheologica Acta = Rheol. Acta Rheology and Deformation of The Lithosphere At Continental Margins = Marg Theor Exp Earth Rheology and Deformation of The Lithosphere At Continental Margins = Marg. Theor. Exp. Earth. Rheology = Rheology Rhetorica-a Journal of The History of Rhetoric = Rhetorica Rhetorica-a Journal of The History of Rhetoric = Rhetorica. Rhetorical and Critical Approaches to Public Relations = Commun Ser Rhetorical and Critical Approaches to Public Relations = Commun. Ser. Rhetoric and Argumentation = Beitr Dialogforsch Rhetoric and Argumentation = Beitr. Dialogforsch. Rhetoric and Reality in Early Christianities = Stud Christian Jud Rhetoric and Reality in Early Christianities = Stud. Christian. Jud. Rhetoric and Theology: Figural Reading of John 9 = Beih Z Neutest Wiss Rhetoric and Theology: Figural Reading of John 9 = Beih. Z. Neutest. Wiss. Rhetoric = New Crit Idiom Rhetoric = New. Crit. Idiom. Rhetoric Review = Rhetor Rev Rhetoric Review = Rhetor. Rev. Rhetoric, Royalty, and Reality: Essays On The Literary Culture of Medieval and Early Modern Scotland = Mediaev Groningana Rhetoric, Royalty, and Reality: Essays On The Literary Culture of Medieval and Early Modern Scotland = Mediaev. Groningana. Rhetorics, Literacies, and Narratives of Sustainability = Routl Stud Rhet Comm Rhetorics, Literacies, and Narratives of Sustainability = Routl. Stud. Rhet. Comm. Rhetoric Society Quarterly = Rhetor Soc Q Rhetoric Society Quarterly = Rhetor. Soc. Q. Rhetorik Jahrbuch (2003), Band 22: Krieg Und Rhetorik = Rhetorik Rhetorik Jahrbuch (2004), Band 23: Rhetorik Und Anthropologie = Rhetorik Rhetorik Jahrbuch (2006), Band 25: Rhetorik Der Debatte = Rhetorik Rhetorik Jahrbuch (2008), Band 27: Theatralische Rhetorik = Rhetorik Rhetorik Jahrbuch (2009), Band 28, Rhetorik Und Verstandlichkeit = Rhetorik Rhetorik Jahrbuch, Bd 24: Bild-rhetorik = Rhetorik Rhetorik = Rhetorik Rhetorik Und Geschichte = Unters Antiken Lit G Rhetorik Und Geschichte = Unters. Antiken. Lit. G. Rhetorik Und Stilistik: Ein Internationales Handbuch Historischer Und Systematischer Forschung = Handb Sprach Kommun Rhetorik Und Stilistik: Ein Internationales Handbuch Historischer Und Systematischer Forschung = Handb. Sprach. Kommun. Rheumaderm = Adv Exp Med Biol Rheumaderm = Adv. Exp. Med. Biol. Rheumatic Disease Clinics of North America = Rheum Dis Clin N Am Rheumatic Disease Clinics of North America = Rheum. Dis. Clin. N. Am. Rheumatic diseases clinics of North America = Rheum Dis Clin North Am Rheumatic Diseases Clinics of North America=Rheum Dis Clin North Am;; Rheumatic Diseases Clinics of North America = Rheum. Dis. Clin. North Am. Rheumatic Fever and Rheumatic Heart Disease = Who Tech Rep Ser Rheumatic Fever and Rheumatic Heart Disease = Who. Tech. Rep. Ser. Rheumatism = Rheumatism Rheumatologia, balneologia, allergologia = Rheumatol Balneol Allergol Rheumatology and physical medicine = Rheumatol Phys Med Rheumatology and Physical Medicine = Rheumatol. Phys. Med. Rheumatology and rehabilitation = Rheumatol Rehabil Rheumatology and Rehabilitation = Rheumatol Rehabil Rheumatology and Rehabilitation = Rheumatol. Rehabil. Rheumatology international = Rheumatol Int Rheumatology International=Rheumatol Int;; Rheumatology International = Rheumatol Int Rheumatology International = Rheumatol. Int. Rheumatology (Oxford, England) = Rheumatology (Oxford) Rheumatology = Rheumatology Rheumatology, Seapal 1988 = Int Congr Ser Rheumatology, Seapal 1988 = Int. Congr. Ser. Rheumatology, State of The Art = Int Congr Ser Rheumatology, State of The Art = Int. Congr. Ser. Rhic Physics and Beyond = Aip Conf Proc Rhic Physics and Beyond = Aip. Conf. Proc. Rhinology=Rhinology;; Rhinology = Rhinology Rhinology. Supplement=Rhinol Suppl;; Rhinology. Supplement = Rhinol Suppl Rhinology. Supplement = Rhinol. Suppl. Rhinosinusitis: Current Issues in Diagnosis and Management = Roy S Med S Rhinosinusitis: Current Issues in Diagnosis and Management = Roy. S. Med. S. Rhode Island Agricultural Experiment Station Bulletin = R I Agr Exp Sta Bull Rhode Island Agricultural Experiment Station Bulletin = R. I. Agr. Exp. Sta. Bull. Rhode Island dental journal = R I Dent J Rhode Island Dental Journal = R. I. Dent. J. Rhode Island history = R I Hist Rhode Island medical journal = R I Med J Rhode Island Medical Journal = R I Med J Rhode Island Medical Journal = R. I. Med. J. Rhode Island medicine = R I Med Rhode Island Medicine = R. I. Med. Rhodesia Agricultural Journal = Rhod Agr J Rhodesia Agricultural Journal = Rhod. Agr. J. Rhodesiana = Rhodesiana Rhodesian Journal of Agricultural Research = Rhod J Agr Res Rhodesian Journal of Agricultural Research = Rhod. J. Agr. Res. Rhodesian Nurse = Rhod. Nurse Rhodesia Nurse = Rhod. Nurse Rhodium Express = Rhodium Express Rhodora = Rhodora Rhumatologie = Rhumatologie Rhythmic Grammar = Top Engl Linguist Rhythmic Grammar = Top. Engl. Linguist. Rhythms in Fishes = Nato Adv Sci Inst Se Rhythms in Fishes = Nato. Adv. Sci. Inst. Se. Rhythmus Beim Fruhen Nietzsche = Monogr Texte Nietzsc Rhythmus Beim Fruhen Nietzsche = Monogr. Texte. Nietzsc. RIAI Revista Iberoamericana de Automatica e Informatica Industrial = Rev. Iberoam. Autom. Inf. Ind. Riao/optilas 2004: 5th Iberoamerican Meeting On Optics and 8th Latin American Meeting On Optics, Lasers, and Their Applications, Pts 1-3 = Proc Spie Riao/optilas 2004: 5th Iberoamerican Meeting On Optics and 8th Latin American Meeting On Optics, Lasers, and Their Applications, Pts 1-3 = Proc. Spie. Riao/optilas 2004: 5th Iberoamerican Meeting On Optics and 8th Latin American Meeting On Optics, Lasers, and Their Applications, Pts 1-3 = P Soc Photo-opt Ins Riao/optilas 2004: 5th Iberoamerican Meeting On Optics and 8th Latin American Meeting On Optics, Lasers, and Their Applications, Pts 1-3 = P. Soc. Photo-opt. Ins. Riao/optilas 2007 = Aip Conf Proc Riao/optilas 2007 = Aip. Conf. Proc. Riazi = Riazi J. Karachi Math. Assoc. Riba Journal-royal Institute of British Architects = Riba J Riba Journal-royal Institute of British Architects = Riba J. Ribonuclease P = Protein Rev Ribonuclease P = Protein. Rev. Ribonucleases, Pt A = Method Enzymol Ribonucleases, Pt A = Method. Enzymol. Ribonucleases, Pt A = Methods Enzymol Ribonucleases, Pt A = Methods. Enzymol. Ribonucleases, Pt B = Method Enzymol Ribonucleases, Pt B = Method. Enzymol. Ribosomal Proteins and Protein Engineering: Design, Selection and Applications = Protein Sci Eng Ribosomal Proteins and Protein Engineering: Design, Selection and Applications = Protein Sci. Eng. Ricci Flow in Riemannian Geometry: A Complete Proof of The Differentiable 1/4-pinching Sphere Theorem = Lect Notes Math Ricci Flow in Riemannian Geometry: A Complete Proof of The Differentiable 1/4-pinching Sphere Theorem = Lect. Notes. Math. Rice Biotechnology: Improving Yield, Stress Tolerance and Grain Quality = Novart Fdn Symp Rice Biotechnology: Improving Yield, Stress Tolerance and Grain Quality = Novart. Fdn. Symp. Rice Journal = Rice J Rice Journal = Rice J. Ricerca in Clinica E in Laboratorio = Res Clin Lab Ricerca in Clinica E in Laboratorio = Res. Clin. Lab. Ricerca in Clinica e in Laboratorio = Ric. Clin. Lab. Ricerca Scientifica. 2 Ser. Parte 1, Rivista = Ric. Sci. 2 Ser. Pt. 1 Riv. Ricerca Scientifica. 2 Ser. Parte 2, Rendiconti. Sezione B, Biologica = Ric. Sci. 2 Ser. Pt 2 Rend. [B] Ricerca Scientifica = Ric. Sci. Ricerche di egittologia e di antichità copte = RicEgAntCopt Ricerche di Matematica = Ricerche Mat. Ricerche Di Matematica = Ric Mat Ricerche Di Matematica = Ric. Mat. Ricerche Di Storia Dell Arte = Ric Stor Arte Ricerche Di Storia Dell Arte = Ric. Stor. Arte Ricerche Economiche=Ricerche Econ. Ricerche e studi. Museo Francesco Ribezzo, Brindisi = RicStBrindisi Ricerche teologiche = RicTeol Rice = Rice Rice Science = Rice Sci. Richard H Battin Astrodynamics Symposium = Adv Astronaut Sci Richard H Battin Astrodynamics Symposium = Adv. Astronaut. Sci. Richard Wagner and His World = Bard Music Festiv Richard Wagner and His World = Bard. Music. Festiv. Richard Wright's Native Son: A Routledge Guide = Routledge Guides Lit Richard Wright's Native Son: A Routledge Guide = Routledge Guides. Lit. Richmond County history = Richmond Cty Hist Rich World and The Impoverishment of Education = Routl Stud Educ Neol Rich World and The Impoverishment of Education = Routl. Stud. Educ. Neol. Rickets = Nestle Nutr Works Se Rickets = Nestle. Nutr. Works. Se. Rickettsiology and Rickettsial Diseases = Ann Ny Acad Sci Rickettsiology and Rickettsial Diseases = Ann. Ny. Acad. Sci. Rickettsiology : Current Issues and Perspectives = Ann Ny Acad Sci Rickettsiology : Current Issues and Perspectives = Ann. Ny. Acad. Sci. Rickettsiology: Present and Future Directions = Ann Ny Acad Sci Rickettsiology: Present and Future Directions = Ann. Ny. Acad. Sci. Rickettsioses: From Genome to Proteome, Pathobiology, and Rickettsiae As An International Threat = Ann Ny Acad Sci Rickettsioses: From Genome to Proteome, Pathobiology, and Rickettsiae As An International Threat = Ann. Ny. Acad. Sci. Ricognizioni archeologiche = RicognA RIC Reviews = RIC Rev. Ride - Mlim 2003: Thirteenth International Work Shop On Research Issues in Data Engineering: Multi-lingual Information Management, Proceedings = Pr Gr Lak Symp Vlsi Ride - Mlim 2003: Thirteenth International Work Shop On Research Issues in Data Engineering: Multi-lingual Information Management, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Ride-the Journal of Applied Theatre and Performance = Ride-j Appl Theatre Ride-the Journal of Applied Theatre and Performance = Ride-j. Appl. Theatre Ridt '94 - Proceedings of The Third International Conference On Raster Imaging and Digital Typography = Electr Pub Org Diss Ridt '94 - Proceedings of The Third International Conference On Raster Imaging and Digital Typography = Electr. Pub. Org. Diss. Riemannian Geometry and Geometric Analysis, Fifth Edition = Universitext Riemannian Geometry and Geometric Analysis, Fifth Edition = Universitext. Riemannian Geometry of Contact and Symplectic Manifolds, Second Edition = Prog Math Riemannian Geometry of Contact and Symplectic Manifolds, Second Edition = Prog. Math. Riemannian Topology and Geometric Structures On Manifolds = Prog Math Riemannian Topology and Geometric Structures On Manifolds = Prog. Math. Riforma Medica = Riforma Med. Rift Between America and Old Europe: The Distracted Eagle = Contemp Secur Stud Rift Between America and Old Europe: The Distracted Eagle = Contemp. Secur. Stud. Rifted Ocean-continent Boundaries = Nato Adv Sci Inst Se Rifted Ocean-continent Boundaries = Nato. Adv. Sci. Inst. Se. Riggisberger Berichte = RigBer Right Fibre for The Right Disease = Roy Soc Med Int Cong Right Fibre for The Right Disease = Roy. Soc. Med. Int. Cong. Righting of Passage: Perceptions of Change After Modernity = Contemp Ethnogr Righting of Passage: Perceptions of Change After Modernity = Contemp. Ethnogr. Rightist Multiculturalism: Core Lessons On Neoconservative School Reform = Crit Soc Thought Rightist Multiculturalism: Core Lessons On Neoconservative School Reform = Crit. Soc. Thought. Rights Based Fishing = Nato Adv Sci I E-app Rights Based Fishing = Nato. Adv. Sci. I. E-app. Rights-based Preventative Approach for Psychosocial Well-being in Childhood = Child Well-being Ind Rights-based Preventative Approach for Psychosocial Well-being in Childhood = Child. Well-being Ind. Rights, Promotion and Integration Issues for Minority Languages in Europe = Palg Stud Minor Lang Rights, Promotion and Integration Issues for Minority Languages in Europe = Palg. Stud. Minor. Lang. Right to Development in International Law: The Case of Pakistan = Rout Res Hum Rts Law Right to Development in International Law: The Case of Pakistan = Rout. Res. Hum. Rts. Law. Right to Health Care in Several European Countries = Stud Emp Soc Policy Right to Health Care in Several European Countries = Stud. Emp. Soc. Policy. Right Ventricular Hypertrophy and Function in Chronic Lung Disease = Curr T Reh Right Ventricular Hypertrophy and Function in Chronic Lung Disease = Curr. T. Reh. Right-wing Extremism in Contemporary Germany = New Perspect Ger Pol Right-wing Extremism in Contemporary Germany = New. Perspect. Ger. Pol. Rigid and Flexible Pavement Design 2005 = Transport Res Rec Rigid and Flexible Pavement Design 2005 = Transport. Res. Rec. Rigid and Flexible Pavement Design 2006 = Transport Res Rec Rigid and Flexible Pavement Design 2006 = Transport. Res. Rec. Rigid Flexibility: The Logic of Intelligence = Appl Log Ser Rigid Flexibility: The Logic of Intelligence = Appl. Log. Ser. Rigid Local Systems = Ann Math Stud Rigid Local Systems = Ann. Math. Stud. Rigorous Development of Complex Fault-tolerant Systems = Lect Notes Comput Sc Rigorous Development of Complex Fault-tolerant Systems = Lect. Notes. Comput. Sc. Rigorous Methods for Software Construction and Analysis = Lect Notes Comput Sc Rigorous Methods for Software Construction and Analysis = Lect. Notes. Comput. Sc. Rigorous Quantum Field Theory = Prog Math Rigorous Quantum Field Theory = Prog. Math. Rigorous Software Engineering for Service-oriented Systems = Lect Notes Comput Sc Rigorous Software Engineering for Service-oriented Systems = Lect. Notes. Comput. Sc. Rig = Rig Rilce-revista De Filologia Hispanica = Rilce-rev Filol Hisp Rilce-revista De Filologia Hispanica = Rilce-rev. Filol. Hisp. Rilem : 43rd General Council Meeting = Vtt Symp Rilem : 43rd General Council Meeting = Vtt. Symp. Rilem Bookseries = Rilem Bookser Rilem Bookseries = Rilem Bookser. Rilem Proceedings = Rilem Proc Rilem Proceedings = Rilem Proc. Rilem State of The Art Reports = Rilem State Art Rep Rilem State of The Art Reports = Rilem State Art Rep. Rilem Workshop : Concrete Technology in The Future = Vtt Symp Rilem Workshop : Concrete Technology in The Future = Vtt. Symp. Rilem Workshop On Long-term Performance of Cementitious Barriers and Reinforced Concrete in Nuclear Power Plants and Waste Management = Rilem Proc Rilem Workshop On Long-term Performance of Cementitious Barriers and Reinforced Concrete in Nuclear Power Plants and Waste Management = Rilem Proc. Rimbaud 1891-1991 = Bib Lit Modern Rimbaud 1891-1991 = Bib. Lit. Modern. R.I. medical journal = R I Med J R.I. Medical Journal = R. I. Med. J. RIM Monographs in Mathematics = RIM Monogr. Math. Rinascimento (Florence, Italy) = Rinascimento Rinascimento = Rinascimento Rinascimento: rivista dell’Istituto Nazionale di Studi sul Rinascimento = Rinascimento Ring and Module Theory = Trends Math Ring and Module Theory = Trends. Math. Ring Opening Metathesis Polymerisation and Related Chemistry = Nato Sci Ser Ii-math Ring Opening Metathesis Polymerisation and Related Chemistry = Nato. Sci. Ser. Ii-math. Ring Opening Metathesis Polymerisation and Related Chemistry = Nato Sci Ser Ii Math Ring Opening Metathesis Polymerisation and Related Chemistry = Nato. Sci. Ser. Ii. Math. Rings, Extensions, and Cohomology = Pure A Math Rings, Extensions, and Cohomology = Pure. A. Math. Rings, Hopf Algebras, and Brauer Groups = Lect Notes Pure Appl Rings, Hopf Algebras, and Brauer Groups = Lect. Notes. Pure. Appl. Rings, Modules and Representations = Contemp Math Rings, Modules and Representations = Contemp. Math. Ring Theory and Algebraic Geometry = Lect Notes Pure Appl Ring Theory and Algebraic Geometry = Lect. Notes. Pure. Appl. Rinsho Biseibutshu Jinsoku Shindan Kenkyukai Shi (Journal of the Association for Rapid Method and Automation in Microbiology) = Rinsho Biseibutshu Jinsoku Shindan Kenkyukai Shi Rinsho Byori (Japanese Journal of Clinical Pathology) = Rinsho Byori Rinsho Byori. Japanese Journal of Clinical Pathology=Rinsho Byori;; Rinsho byori. The Japanese journal of clinical pathology = Rinsho Byori [Rinsho eiyo] [Clinical nutrition] = Rinsho Eiyo [Rinsho fujinka sanka] Clinical gynecology and obstetrics = Rinsho Fujinka Sanka Rinsho ganka. Japanese journal of clinical ophthalmology = Rinsho Ganka Rinsho geka. Journal of clinical surgery = Rinsho Geka Rinsho hoshasen. Clinical radiography = Rinsho Hoshasen Rinsho Hoshasen (Japanese Journal of Clinical Radiology) = Rinsho Hoshasen Rinsho Ketsueki (Japanese Journal of Clinical Hematology) = Rinsho Ketsueki Rinsho Ketsueki. Japanese Journal of Clinical Hematology=Rinsho Ketsueki;; [Rinsho ketsueki] The Japanese journal of clinical hematology = Rinsho Ketsueki Rinsho Kyobu Geka (Japanese Annals of Thoracic Surgery) = Rinsho Kyobu Geka Rinsho naika shonika. Internal medicine and pediatrics = Rinsho Naika Shonika Intern Med [Rinsho shika] [Clinical dentistry] = Rinsho Shika Rinsho Shika (Clinical Dentistry) = Rinsho Shika Rinsho Shinkeigaku (Clinical Neurology) = Rinsho Shinkeigaku Rinsho Shinkeigaku. Clinical Neurology=Rinsho Shinkeigaku;; Rinsho Shishubyo Danwakai kaishi = Rinsho Shishubyo Danwakai Kaishi Rinsho Shishubyo Danwakai Kaishi = Rinsho Shishubyo Danwakai Kaishi [Rinsho shokakibyogaku] Clinical gastro-enterology = Rinsho Shokakibyogaku Rinsho Yakuri = Rinsho Yakuri Rio Chagres, Panama: A Multidisciplinary Profile of A Tropical Watershed = Water Sci Technol Li Rio Chagres, Panama: A Multidisciplinary Profile of A Tropical Watershed = Water. Sci. Technol. Li. Rio Chagres, Panama: A Multidisciplinary Profile of A Tropical Watershed = Water Trans Rio Chagres, Panama: A Multidisciplinary Profile of A Tropical Watershed = Water. Trans. Riparian Management : Common Threads and Shared Interests = Usda Rocky Riparian Management : Common Threads and Shared Interests = Usda. Rocky. Riparian Resources, Proceedings of The Symposium = Nat Resour Env Iss Riparian Resources, Proceedings of The Symposium = Nat. Resour. Env. Iss. Riparian Vegetation and Fluvial Geomorphology = Water Sci Appl Riparian Vegetation and Fluvial Geomorphology = Water. Sci. Appl. Ripe Series in Global Political Economy = Ripe Ser Glob Polit Ripe Series in Global Political Economy = Ripe Ser. Glob. Polit. Ripe Series in Global Political Economy = Ripe S Glob Pol Econ Ripe Series in Global Political Economy = Ripe S. Glob. Pol. Econ. Ripon forum = Ripon Forum Rise and Development of The Theory of Series Up to The Early 1820s = Sourc Stud Hist Math Rise and Development of The Theory of Series Up to The Early 1820s = Sourc. Stud. Hist. Math. Rise and Fall of Adult Education Institutions and Social Movements = Stud Ped And Geron Rise and Fall of Adult Education Institutions and Social Movements = Stud. Ped. And. Geron. Rise and Fall of Privatization in The Russian Oil Industry = St Antonys Ser Rise and Fall of Privatization in The Russian Oil Industry = St. Antonys. Ser. Rise and Fall of The Carbon Civilisation: Resolving Global Environmental and Resource Problems = Green Energy Technol Rise and Fall of The Carbon Civilisation: Resolving Global Environmental and Resource Problems = Green. Energy. Technol. Rise and Fall of The Ediacaran Biota = Geol Soc Spec Publ Rise and Fall of The Ediacaran Biota = Geol. Soc. Spec. Publ. Rise and Fall of The Soviet Navy in The Baltic, 1921-1941 = Cass Ser Nav Policy Rise and Fall of The Soviet Navy in The Baltic, 1921-1941 = Cass. Ser. Nav. Policy. RISEC: International Review of Economics and Business=RISEC: Int. Rev. Econ. Bus. Rise of China and International Security: America and Asia Respond = Asian Secur Stud Rise of China and International Security: America and Asia Respond = Asian. Secur. Stud. Rise of China: Beijing's Strategies and Implications for The Asia-pacific = Polit Asia Rise of China: Beijing's Strategies and Implications for The Asia-pacific = Polit. Asia. Rise of Interactive Governance and Quasi-markets = Lib Pub Policy Pub A Rise of Interactive Governance and Quasi-markets = Lib. Pub. Policy. Pub. A. Rise of Israel: A History of A Revolutionary State = Isr Hist Polit Soc Rise of Israel: A History of A Revolutionary State = Isr. Hist. Polit. Soc. Rise of Japanese Ngos: Activism From Above = Routl Contemp Jpn Se Rise of Japanese Ngos: Activism From Above = Routl. Contemp. Jpn. Se. Rise of Performance Studies: Rethinking Richard Schechner's Broad Spectrum = Stud Int Perform Rise of Performance Studies: Rethinking Richard Schechner's Broad Spectrum = Stud. Int. Perform. Rise of The Conservative Legal Movement: The Battle for Control of The Law = Princ Stud Am Polit Rise of The Conservative Legal Movement: The Battle for Control of The Law = Princ. Stud. Am. Polit. Rise of The Corporate Economy in Southeast Asia = Routledge Stud Growt Rise of The Corporate Economy in Southeast Asia = Routledge. Stud. Growt. Rise of The Detective in Early Nineteenth-century Popular Fiction = Crime File Rise of The Detective in Early Nineteenth-century Popular Fiction = Crime. File. Rise of The Detective in Early Nineteenth-century Popular Fiction = Crime Files Ser Rise of The Detective in Early Nineteenth-century Popular Fiction = Crime. Files. Ser. Rise of The English Regions = Reg Cities Rise of The English Regions = Reg. Cities. Rise of Transnational Corporations From Emerging Markets: Threat Or Opportunity = Stud Int Invest Rise of Transnational Corporations From Emerging Markets: Threat Or Opportunity = Stud. Int. Invest. Rise of Transnational Corporations From Emerging Markets: Threat Or Opportunity = Stud Int Investmt Rise of Transnational Corporations From Emerging Markets: Threat Or Opportunity = Stud. Int. Investmt. Rising China and Security in East Asia: Identity Construction and Security Discourse = Polit Asia Rising China and Security in East Asia: Identity Construction and Security Discourse = Polit. Asia. Rising Trends in Asthma = Ciba F Symp Rising Trends in Asthma = Ciba. F. Symp. Risk21- Coping With Risks Due to Natural Hazards in The 21st Century = Proc Monogr Eng Wate Risk21- Coping With Risks Due to Natural Hazards in The 21st Century = Proc. Monogr. Eng. Wate. Risk analysis : an official publication of the Society for Risk Analysis = Risk Anal Risk Analysis = Computat Studies Risk Analysis = Computat. Studies. Risk Analysis Iii = Manag Informat Syst Risk Analysis Iii = Manag. Informat. Syst. Risk Analysis Ii = Manag Informat Syst Risk Analysis Ii = Manag. Informat. Syst. Risk Analysis in Nuclear Waste Management = Ispra C Rel Risk Analysis in Nuclear Waste Management = Ispra. C. Rel. Risk Analysis Iv = Manag Informat Syst Risk Analysis Iv = Manag. Informat. Syst. Risk Analysis of Complex and Uncertain Systems = Int Ser Oper Res Man Risk Analysis of Complex and Uncertain Systems = Int. Ser. Oper. Res. Man. Risk Analysis=Risk Anal;; Risk Analysis = Risk Anal Risk Analysis = Risk Anal. Risk Analysis V: Simulation and Hazard Mitigation = Wit Trans Ecol Envir Risk Analysis V: Simulation and Hazard Mitigation = Wit. Trans. Ecol. Envir. Risk and Social Welfare = Soc Iss Justice Stat Risk and Social Welfare = Soc. Iss. Justice. Stat. Risk Appraisal and Venture Capital in High Technology New Ventures = Routl Stud Glob Comp Risk Appraisal and Venture Capital in High Technology New Ventures = Routl. Stud. Glob. Comp. Risk Aspects of Investment-based Social Security Reform = Nber Conf R Risk Aspects of Investment-based Social Security Reform = Nber. Conf. R. Risk Assessment and Risk Communication Strategies in Bioterrorism Preparedness = Nato Security Sci A Risk Assessment and Risk Communication Strategies in Bioterrorism Preparedness = Nato. Security. Sci. A. Risk Assessment and Risk Communication Strategies in Bioterrorism Preparedness = Nato Secur Sci Ser A Risk Assessment and Risk Communication Strategies in Bioterrorism Preparedness = Nato. Secur. Sci. Ser. A. Risk Assessment As A Tool for Water Resources Decision-making in Central Asia = Nato Sci S Ss Iv Ear Risk Assessment As A Tool for Water Resources Decision-making in Central Asia = Nato. Sci. S. Ss. Iv. Ear. Risk Assessment, Modeling and Decision Support: Strategic Directions = Risk Gov Soc Risk Assessment, Modeling and Decision Support: Strategic Directions = Risk Gov. Soc. Risk-averse Capacity Control in Revenue Management = Lect Notes Econ Math Risk-averse Capacity Control in Revenue Management = Lect. Notes. Econ. Math. Risk Aversion in Experiments = Res Exp Econ Risk Aversion in Experiments = Res. Exp. Econ. Risk-based Corrective Action and Brownfields Restorations = Geotech Sp Risk-based Corrective Action and Brownfields Restorations = Geotech. Sp. Risk/benefit Analysis for The Use and Approval of Thrombolytic, Antiarrhythmic, and Hypolipidemic Agents = Dev Cardiovasc Med Risk/benefit Analysis for The Use and Approval of Thrombolytic, Antiarrhythmic, and Hypolipidemic Agents = Dev. Cardiovasc. Med. Risk-benefit Perspective On Early Customer Integration = Contrib Manag Sci Risk-benefit Perspective On Early Customer Integration = Contrib. Manag. Sci. Risk (Concord, NH) = Risk Risk Control and Quality Management in Neurosurgery = Act Neur S Risk Control and Quality Management in Neurosurgery = Act. Neur. S. Risk Decision and Policy=Risk Dec. Pol. Risk Factors for Adverse Drug Reactions - Epidemiological Approaches = Agent Action Suppl Risk Factors for Adverse Drug Reactions - Epidemiological Approaches = Agent. Action. Suppl. Risk, Global Governance and Security: The Other War On Terror = Rout Glob Secur Stud Risk, Global Governance and Security: The Other War On Terror = Rout. Glob. Secur. Stud. Risk Governance and Society = Risk Gov Soc Risk Governance and Society = Risk Gov. Soc. Risk Infections and Possibilities for Biomedical Terrorism = Nato Sci Ser I Life Risk Infections and Possibilities for Biomedical Terrorism = Nato. Sci. Ser. I. Life. Risk in International Finance = Routl Front Polit Ec Risk in International Finance = Routl. Front. Polit. Ec. Risk, issues in health & safety = Risk Issues Health Saf Risk Management and Governance: Concepts, Guidelines and Applications = Risk Gov Soc Risk Management and Governance: Concepts, Guidelines and Applications = Risk Gov. Soc. Risk Management and Sustainable Forestry = Eur Forest Inst Proc Risk Management and Sustainable Forestry = Eur. Forest. Inst. Proc. Risk Management and Value: Valuation and Asset Pricing = World Sci Stud Int E Risk Management and Value: Valuation and Asset Pricing = World. Sci. Stud. Int. E. Risk Management-an International Journal = Risk Manag-uk Risk Management-an International Journal = Risk Manag-uk. Risk Management, Econometrics and Neural Networks = Contrib Econ Risk Management, Econometrics and Neural Networks = Contrib. Econ. Risk Management, Econometrics and Neural Networks = Contribut Econ Risk Management, Econometrics and Neural Networks = Contribut. Econ. Risk management in Canadian health care = Risk Manag Can Health Care Risk Management in Credit Portfolios: Concentration Risk and Basel Ii = Contrib Econ Risk Management in Credit Portfolios: Concentration Risk and Basel Ii = Contrib. Econ. Risk Management in Volatile Financial Markets = Finan Mon P Risk Management in Volatile Financial Markets = Finan. Mon. P. Risk management (New York, N.Y.) = Risk Manage Risk Management of Safety and Dependability: A Guide for Directors, Managers and Engineers = Woodhead Publ Mech E Risk Management of Safety and Dependability: A Guide for Directors, Managers and Engineers = Woodhead. Publ. Mech. E. Risk Management of Water Supply and Sanitation Systems = Nato Sci Peace Secur Risk Management of Water Supply and Sanitation Systems = Nato. Sci. Peace. Secur. Risk Management = Risk Manage. Risk Management Strategies Applied to Environmental Cleanup in Central and Eastern Europe = Sci Cult Ser Environ Risk Management Strategies Applied to Environmental Cleanup in Central and Eastern Europe = Sci. Cult. Ser. Environ. Risk Management: The State of The Art = Nyu Sa Ctr Ser F M I Risk Management: The State of The Art = Nyu. Sa. Ctr. Ser. F. M. I. Risk Methodologies for Technological Legacies = Nato Sci S Ss Iv Ear Risk Methodologies for Technological Legacies = Nato. Sci. S. Ss. Iv. Ear. Risk Minimization By Experimental Mechanics : Imeko / Gesa Symposium = Vdi Bericht Risk Minimization By Experimental Mechanics : Imeko / Gesa Symposium = Vdi. Bericht. Risk Navigation Strategies for Major Capital Projects : Beyond The Myth of Predictability = Springer Ser Reliab Risk Navigation Strategies for Major Capital Projects : Beyond The Myth of Predictability = Springer. Ser. Reliab. Risk Regulation in The Single Market: Governance of Pharmaceuticals and Foodstuffs in The European Union = Palgrave Stud Eur Un Risk Regulation in The Single Market: Governance of Pharmaceuticals and Foodstuffs in The European Union = Palgrave. Stud. Eur. Un. Risk, Reliability and Societal Safety, Vols 1-3 = Proc Monogr Eng Wate Risk, Reliability and Societal Safety, Vols 1-3 = Proc. Monogr. Eng. Wate. Risk Science and Sustainability: Science for Reduction of Risk and Sustainable Development of Society = Nato Sci Ser Ii-math Risk Science and Sustainability: Science for Reduction of Risk and Sustainable Development of Society = Nato. Sci. Ser. Ii-math. Risk Science and Sustainability: Science for Reduction of Risk and Sustainable Development of Society = Nato Sci Ser Ii Math Risk Science and Sustainability: Science for Reduction of Risk and Sustainable Development of Society = Nato. Sci. Ser. Ii. Math. Risks From Radium and Thorotrast = Bir Report Risks From Radium and Thorotrast = Bir. Report. Risk-sharing in The Pharmaceutical Industry: The Case of Out-licensing = Contrib Manag Sci Risk-sharing in The Pharmaceutical Industry: The Case of Out-licensing = Contrib. Manag. Sci. Risks in Modern Society = Top Saf Risk Reliab Risks in Modern Society = Top. Saf. Risk. Reliab. Risks in Technological Systems = Springer Ser Reliab Risks in Technological Systems = Springer. Ser. Reliab. Risks of Financial Institutions = Nber Conf R Risks of Financial Institutions = Nber. Conf. R. Risk, Vulnerability and Everyday Life = New Sociol Risk, Vulnerability and Everyday Life = New. Sociol. Riso International Symposium On Material Science = Riso Mat Sci Riso International Symposium On Material Science = Riso Mat. Sci. Riso report = RISO Rep RISO Report = RISO Rep. Risorgimento = Risorgimento Riten, Gesten, Zeremonien = Trends Mediev Philol Riten, Gesten, Zeremonien = Trends. Mediev. Philol. Rites and Passages: The Beginnings of Modern Jewish Culture in France, 1650-1860 = Jew Cult Context Rites and Passages: The Beginnings of Modern Jewish Culture in France, 1650-1860 = Jew. Cult. Context. Rites of Way: The Politics and Poetics of Public Space = Can Comment Rites of Way: The Politics and Poetics of Public Space = Can. Comment. Rittenhouse : journal of the American scientific instrument enterprise = Rittenhouse Ritual and Event: Interdisciplinary Perspectives = Routl Adv Theatr Per Ritual and Event: Interdisciplinary Perspectives = Routl. Adv. Theatr. Per. Ritual and Memory: Toward A Comparative Anthropology of Religion = Cognitive Sci Rel Ritual and Memory: Toward A Comparative Anthropology of Religion = Cognitive. Sci. Rel. Ritual and Sacrifice in The Ancient Near East = Orient Lovan Anal Ritual and Sacrifice in The Ancient Near East = Orient. Lovan. Anal. Ritual, Performance, Media = Asa Monogr Ritual, Performance, Media = Asa. Monogr. Rive Gauche: Paris As A Site of Avant-garde Art and Cultural Exchange in The 1920s = Int Forsch Allg Vgl Rive Gauche: Paris As A Site of Avant-garde Art and Cultural Exchange in The 1920s = Int. Forsch. Allg. Vgl. Riverbank Filtration for Water Security in Desert Countries = Nato Sci Peace Secur Riverbank Filtration for Water Security in Desert Countries = Nato. Sci. Peace. Secur. Riverbank Filtration Hydrology = Nato Sci S Ss Iv Ear Riverbank Filtration Hydrology = Nato. Sci. S. Ss. Iv. Ear. Riverbank Filtration: Improving Source-water Quality = Water Sci Technol Li Riverbank Filtration: Improving Source-water Quality = Water. Sci. Technol. Li. Riverbank Filtration: Improving Source-water Quality = Water Trans Riverbank Filtration: Improving Source-water Quality = Water. Trans. Riverbank Filtration: Understanding Contaminant Biogeochemistry and Pathogen Removal = Nato Sci S Ss Iv Ear Riverbank Filtration: Understanding Contaminant Biogeochemistry and Pathogen Removal = Nato. Sci. S. Ss. Iv. Ear. River Basin Management Ii = Int Ser Prog Wat Res River Basin Management Ii = Int. Ser. Prog. Wat. Res. River Basin Management Iii = Wit Trans Ecol Envir River Basin Management Iii = Wit. Trans. Ecol. Envir. River Basin Management = Int Ser Prog Wat Res River Basin Management = Int. Ser. Prog. Wat. Res. River Basin Management Iv = Wit Trans Ecol Envir River Basin Management Iv = Wit. Trans. Ecol. Envir. River Basin Management V = Wit Trans Ecol Envir River Basin Management V = Wit. Trans. Ecol. Envir. River, Coastal and Estuarine Morphodynamics: Rcem 2007, Vols 1 and 2 = Proc Monogr Eng Wate River, Coastal and Estuarine Morphodynamics: Rcem 2007, Vols 1 and 2 = Proc. Monogr. Eng. Wate. River Flow 2006, Vols 1 and 2 = Proc Monogr Eng Wate River Flow 2006, Vols 1 and 2 = Proc. Monogr. Eng. Wate. River Geomorphology = Iag Publ River Geomorphology = Iag. Publ. River Research and Applications = River Res Appl River Research and Applications = River Res. Appl. River Sediments = Environ Res Adv River Sediments = Environ. Res. Adv. Rivers-studies in The Science Environmental Policy and Law of Instream Flow = Rivers-stud Sci Env Rivers-studies in The Science Environmental Policy and Law of Instream Flow = Rivers-stud. Sci. Env. River Studenica: Study of Ecology and Hydrofauna = Sasa Dept Chem Biol River Studenica: Study of Ecology and Hydrofauna = Sasa. Dept. Chem. Biol. Rivista Aeronautica = Riv Aeronaut Rivista Aeronautica = Riv. Aeronaut. Rivista archeologica dell’antica provincia e diocesi di Como = RAComo Rivista archeologica dell'antica provincia e diocesi di Como = RAComo Rivista biblica = RivBibl Rivista critica di clinica medica = Riv Crit Clin Med Rivista Critica di Clinica Medica = Riv. Crit. Clin. Med. Rivista critica di storia della filosofia = Riv Crit Stor Filos Rivista Critica Di Storia Della Filosofia = Riv Crit Stor Filos Rivista Critica Di Storia Della Filosofia = Riv. Crit. Stor. Filos. Rivista critica di storia della filosofia = RSF Rivista degli infortuni e delle malattie professionali = Riv Infort Mal Prof Rivista degli Infortuni e delle Malattie Professionali = Riv. Infort. Mal. Prof. Rivista degli studi orientali = Riv Studi Orient Rivista degli studi orientali = RSO Rivista degli studi orientali = RSO Rivista dei Combustibili e dell'Industia Chimica = Riv. Combust. Ind. Chim. Rivista della tubercolosi e delle malattie dell'apparato respiratorio = Riv Tuberc Mal Appar Respir Rivista dell'infermiere = Riv Inferm Rivista dell'Infermiere = Riv. Inferm. Rivista dell’Istituto nazionale d’archeologia e storia dell’arte = RIA Rivista dell'Istituto Nazionale di Archeologia e Storia dell'Arte = RIA Rivista dell'Istituto sieroterapico italiano = Riv Ist Sieroter Ital Rivista dell'Istituto Sieroterapico Italiano = Riv. Ist. Sieroter. Ital. Rivista dell'Istituto vaccinogeno e dei consorzi provinciali antitubercolari = Riv Ist Vaccinogeno Consorzi Prov Antituberc Rivista Del Nuovo Cimento = Riv Nuovo Cimento Rivista Del Nuovo Cimento = Riv. Nuovo Cimento Rivista Di Agricoltura Subtropicale E Tropicale = Riv Agr Subtrop Trop Rivista Di Agricoltura Subtropicale E Tropicale = Riv. Agr. Subtrop. Trop. Rivista di anatomia patologica e di oncologia = Riv Anat Patol Oncol Rivista di Anatomia Patologica e di Oncologia = Riv. Anat. Patol. Oncol. Rivista di archeologia cristiana = RAC Rivista di archeologia cristiana = RACr Rivista di archeologia = RdA Rivista di archeologia = RdA Rivista Di Biologia-biology Forum = Riv Biol-biol Forum Rivista Di Biologia-biology Forum = Riv. Biol-biol. Forum Rivista di biologia = Riv Biol Rivista di Biologia=Riv Biol;; Rivista di Biologia = Riv. Biol. Rivista di chirurgia e medicina = Riv Chir Med Rivista di chirurgia pediatrica = Riv Chir Pediatr Rivista di clinica pediatrica = Riv Clin Pediatr Rivista di Clinica Pediatrica = Riv. Clin. Pediatr. Rivista di cultura classica e medioevale = RCCM Rivista di cultura classica e medioevale = RCulClMedioev Rivista Di Economia Agraria = Riv Econ Agr Rivista Di Economia Agraria = Riv. Econ. Agr. Rivista di emoterapia ed immunoematologia = Riv Emoter Immunoematol Rivista di Emoterapia ed Immunoematologia = Riv. Emoter. Immunoematol. Rivista di estetica = Riv Estet Rivista di filologia e di istruzione classica = RFIC Rivista di filologia e di istruzione classica = RFil Rivista di filologia e d'istruzione classica = Riv Filol Istruz Classica Rivista di filosofia neoscolastica = RFN Rivista Di Filosofia Neo-scolastica = Riv Filos Neo-scolas Rivista Di Filosofia Neo-scolastica = Riv. Filos. Neo-scolas. Rivista di filosofia = RF(Bologna) Rivista di filosofia = Riv Filos Rivista di gastro-enterologia = Riv Gastroenterol Rivista di Gastro-Enterologia = Riv. Gastroenterol. Rivista di istochimica, normale e patologica = Riv Istochim Norm Patol Rivista di Istochimica, Normale e Patologica = Riv. Istochim. Norm. Patol. Rivista Di Letteratura Italiana = Riv Lett Ital Rivista Di Letteratura Italiana = Riv. Lett. Ital. Rivista Di Letterature Moderne E Comparate = Riv Lett Mod Comp Rivista Di Letterature Moderne E Comparate = Riv. Lett. Mod. Comp. Rivista di malariologia = Riv Malariol Rivista di Malariologia = Riv. Malariol. Rivista di Matematica della Università di Parma = Riv. Mat. Univ. Parma (5) Rivista di Matematica per le Scienze Economiche e Sociali = Riv. Mat. Sci. Econom. Social. Rivista di Matematica Pura ed Applicata = Riv. Mat. Pura Appl. Rivista Di Medicina Aeronautica E Spaziale = Riv Med Aeronaut Spa Rivista Di Medicina Aeronautica E Spaziale = Riv. Med. Aeronaut. Spa. Rivista di medicina aeronautica e spaziale = Riv Med Aeronaut Spaz Rivista di Medicina Aeronautica e Spaziale = Riv. Med. Aeronaut. Spaz. Rivista di medicina aeronautica = Riv Med Aeronaut Rivista Di Meteorologia Aeronautica = Riv Meteorol Aeronau Rivista Di Meteorologia Aeronautica = Riv. Meteorol. Aeronau. Rivista di meteorologia aeronautica = Riv Meteorol Aeronaut Rivista di neurobiologia : organo ufficiale della Societa dei neurologi, neuroradiologi e neurochirurghi ospedalieri = Riv Neurobiol Rivista di Neurobiologia = Riv. Neurobiol. Rivista di neurologia = Riv Neurol Rivista di Neurologia = Riv. Neurol. Rivista Di Neuroradiologia = Riv Neuroradiol Rivista Di Neuroradiologia = Riv. Neuroradiol. Rivista di odontoiatria degli Amici di Brugg = Riv Odontoiatr Amici Brugg Rivista di Odontoiatria degli Amici di Brugg = Riv. Odontoiatr. Amici Brugg Rivista di odontostomatologia e implantoprotesi = Riv Odontostomatol Implantoprotesi Rivista di Odontostomatologia e Implantoprotesi = Riv. Odontostomatol. Implantoprotesi Rivista di ostetricia e ginecologia = Riv Ostet Ginecol Rivista di Ostetricia e Ginecologia = Riv. Ostet. Ginecol. Rivista di ostetricia ginecologia pratica e medicina perinatale = Riv Ostet Ginecol Prat Med Perinat Rivista di Ostetricia Ginecologia Pratica e Medicina Perinatale = Riv. Ostet. Ginecol. Prat. Med. Perinat. Rivista di parassitologia = Riv Parassitol Rivista di Parassitologia = Riv. Parassitol. Rivista di patologia clinica e sperimentale = Riv Patol Clin Sper Rivista di Patologia Clinica e Sperimentale = Riv. Patol. Clin. Sper. Rivista di patologia e clinica = Riv Patol Clin Rivista di Patologia e Clinica = Riv. Patol. Clin. Rivista di patologia nervosa e mentale = Riv Patol Nerv Ment Rivista di Patologia Nervosa e Mentale = Riv. Patol. Nerv. Ment. Rivista Di Patologia Vegetale = Riv Patol Veg Rivista Di Patologia Vegetale = Riv. Patol. Veg. Rivista di Politica Economica=Rivista Politica Econ. Rivista Di Politica Economica = Riv Polit Econ Rivista Di Politica Economica = Riv. Polit. Econ. Rivista Di Psichiatria = Riv Psichiatr Rivista Di Psichiatria = Riv. Psichiatr. Rivista di psicoanalisi = Riv Psicoanal Rivista Di Psicoanalisi = Riv Psicoanal Rivista Di Psicoanalisi = Riv. Psicoanal. Rivista di psicologia della scrittura = Riv Psicol Scr Rivista di psicologia = Riv Psicol Rivista di psicologia sociale e Archivio italiano di psicologia generale e del lavoro = Riv Psicol Soc Arch Ital Psicol Gen Rivista di radiologia = Riv Radiol Rivista di scienze preistoriche = RScPreist Rivista di Statistica Applicata=Rivista Statist. Appl. Rivista Di Storia Contemporanea = Riv Storia Contemp Rivista Di Storia Contemporanea = Riv. Storia Contemp. Rivista di storia della chiesa in Italia = Riv Stor Chiesa Ital Rivista di storia della Chiesa in Italia = RSCI Rivista di storia della filosofia (Milan, Italy : 1984) = Riv Stor Filos Rivista Di Storia Della Filosofia = Riv Stor Filos Rivista Di Storia Della Filosofia = Riv. Stor. Filos. Rivista di storia della medicina = Riv Stor Med Rivista di Storia della Medicina = Riv. Stor. Med. Rivista di storia della scienza = Riv Stor Sci Rivista di Storia della Scienza = Riv. Stor. Sci. (2) Rivista di storia delle scienze mediche e naturali = Riv Stor Sci Mediche Nat Rivista di Storia Economica, N.S.=Rivista Storia Econ., N.S. Rivista Di Storia E Letteratura Religiosa = Riv Stor Lett Relig Rivista Di Storia E Letteratura Religiosa = Riv. Stor. Lett. Relig. Rivista di storia e letteratura religiosa = RSLR Rivista di studi bizantini e neoellenici = RSBN Rivista di studi bizantini e neoellenici = RStBiz Rivista di studi bizantini e slavi = RSBS Rivista di studi classici = Riv Studi Class Rivista di studi classici = RStCl Rivista di studi fenici, pubbl. dal Centro di studio per la civiltà fenicia e punica = RStudFen Rivista di studi fenici = RStFen Rivista di studi liguri = RStLig Rivista di studi marchigiani = RStMarch Rivista di studi pompeiani = RSP Rivista di studi pompeiani = RStPomp Rivista di studi punici = RStPun Rivista di topografia antica = RTopAnt Rivista d'ostetricia e ginecologia pratica = Riv Ostet Ginecol Prat Rivista d'Ostetricia e Ginecologia Pratica = Riv. Ostet. Ginecol. Prat. Rivista Europea per le Scienze Mediche e Farmacologiche = Riv. Eur. Sci. Med. Farmacol. Rivista geografica italiana = Riv Geogr Ital Rivista Ingauna e Intemelia = RIngIntem Rivista internazionale di filosofia del diritto = RIFD Rivista internazionale di psicologia e ipnosi = Riv Int Psicol Ipn Rivista Internazionale Di Scienze Economiche E Commerciali = Riv Int Sci Econ Com Rivista Internazionale Di Scienze Economiche E Commerciali = Riv. Int. Sci. Econ. Com. Rivista Internazionale di Scienze Economiche e Commerciali=Rivista Int. Sci. Econ. Com. Rivista Internazionale Di Scienze Sociali = Riv Int Sci Soc Rivista Internazionale Di Scienze Sociali = Riv. Int. Sci. Soc. Rivista internazionale di scienze sociali = Riv Int Sci Sociali Rivista Internazionale di Scienze Sociali=Rivista Int. Sci. Soc. Rivista Italiana degli Economisti=Rivista Italiana Econ. Rivista italiana degli odontotecnici = Riv Ital Odontotec Rivista Italiana Degli Odontotecnici = Riv. Ital. Odontotec. Rivista Italiana Delle Sostanze Grasse = Riv Ital Sostanze Gr Rivista Italiana Delle Sostanze Grasse = Riv. Ital. Sostanze Gr. Rivista italiana del tracoma e di patologia oculare esotica = Riv Ital Trac Patol Ocul Esotica Rivista italiana di economia, demografia e statistica = Riv Ital Econ Demogr Stat Rivista Italiana Di Geofisica E Scienze Affini = Riv Ital Geofis Sci Rivista Italiana Di Geofisica E Scienze Affini = Riv. Ital. Geofis. Sci. Rivista Italiana Di Geofisica = Riv Ital Geofis Rivista Italiana Di Geofisica = Riv. Ital. Geofis. Rivista italiana d'igiene = Riv Ital Ig Rivista Italiana d'Igiene = Riv. Ital. Ig. Rivista italiana di ginecologia = Riv Ital Ginecol Rivista Italiana di Ginecologia = Riv. Ital. Ginecol. Rivista italiana di medicina legale : dottrina, casistica, ricerca sperimentale, giurisprudenza e legislazione = Riv Ital Med Leg Rivista Italiana Di Musicologia = Riv Ital Music Rivista Italiana Di Musicologia = Riv. Ital. Music. Rivista italiana di numismatica e scienze affini = RIN Rivista italiana di numismatica e scienze affini = RItNum Rivista italiana di odontoiatria infantile : organo ufficiale della Societa italiana di odontoiatria infantile = Riv Ital Odontoiatr Infant Rivista Italiana di Odontoiatria Infantile = Riv. Ital. Odontoiatr. Infant. Rivista Italiana Di Paleontologia E Stratigrafia = Riv Ital Paleontol S Rivista Italiana Di Paleontologia E Stratigrafia = Riv. Ital. Paleontol. S. Rivista Italiana Di Pediatria-italian Journal of Pediatrics = Riv Ital Ped Rivista Italiana Di Pediatria-italian Journal of Pediatrics = Riv. Ital. Ped. Rivista Italiana Di Scienza Politica = Riv Ital Sci Polit Rivista Italiana Di Scienza Politica = Riv. Ital. Sci. Polit. Rivista italiana di stomatologia = Riv Ital Stomatol Rivista Italiana di Stomatologia = Riv. Ital. Stomatol. Rivista Italiana Di Telerilevamento = Riv Ital Telerilevam Rivista Italiana Di Telerilevamento = Riv. Ital. Telerilevam. Rivista marittima = Riv Maritt Rivista militare = Riv Mil Rivista oto-neuro-oftalmologica = Riv Otoneurooftalmol Rivista Oto-Neuro-Oftalmologica = Riv. Otoneurooftalmol. Rivista pediatrica siciliana = Riv Pediatr Sicil Rivista rosminiana di filosofia e di cultura = Riv Rosmin Filos Cult Rivista siciliana della tubercolosi = Riv Sicil Tuberc Rivista Sperimentale di Freniatria e Medicina Legale delle Alienazioni Mentali = Riv. Sper. Freniatr. Rivista sperimentale di freniatria e medicina legale delle alienazioni mentali = Riv Sper Freniatr Med Leg Alien Ment Rivista storica calabrese = Riv Stor Calabr Rivista storica calabrese = RStorCal Rivista Storica Dell Antichita = Riv Stor Antich Rivista Storica Dell Antichita = Riv. Stor. Antich. Rivista storica dell'Antichità = RSA Rivista storica dell’antichità = RStorAnt Rivista Storica Italiana = Riv Storica Ital Rivista Storica Italiana = Riv. Storica Ital. Rivista storica italiana = Riv Stor Ital Rivista storica italiana = RSI Rizhskiy Politekhnicheskiy Institut = Voprosy Dinamiki i Prochnosti Rla-revista De Linguistica Teorica Y Aplicada = Rla-rev Linguist Teo Rla-revista De Linguistica Teorica Y Aplicada = Rla-rev. Linguist. Teo. Rla : Romance Languages Annual 1991, Vol 3 = Rom Lang An Rla : Romance Languages Annual 1991, Vol 3 = Rom. Lang. An. Rla: Romance Languages Annual 1992, Vol 4 = Rom Lang An Rla: Romance Languages Annual 1992, Vol 4 = Rom. Lang. An. Rla - Romance Languages Annual 1994, Vol Vi = Rom Lang An Rla - Romance Languages Annual 1994, Vol Vi = Rom. Lang. An. Rla - Romance Languages Annual 1995, Vol Vii = Rom Lang An Rla - Romance Languages Annual 1995, Vol Vii = Rom. Lang. An. Rla: Romance Languages Annual 1997, Vol Ix = Rom Lang An Rla: Romance Languages Annual 1997, Vol Ix = Rom. Lang. An. Rla - Romance Languages Annuals 1996, Vol Viii = Rom Lang An Rla - Romance Languages Annuals 1996, Vol Viii = Rom. Lang. An. Rlc-revue De Litterature Comparee = Rlc-rev Lit Comp Rlc-revue De Litterature Comparee = Rlc-rev. Lit. Comp. Rmclas Proceedings = Rmclas Proc Rmclas Proceedings = Rmclas Proc. Rna and Dna Editing: Methods and Protocols = Methods Mol Biol Rna and Dna Editing: Methods and Protocols = Methods Mol. Biol. Rna-a Publication of The Rna Society = Rna RNABC News, Registered Nurses Association of British Columbia = RNABC News. RNABC news = RNABC News Rna Biochemistry and Biotechnology = Nato Asi 3 High Tech Rna Biochemistry and Biotechnology = Nato. Asi. 3. High. Tech. Rna Biology = Rna Biol Rna Biology = Rna Biol. RNA biology = RNA Biol RNA Biology = RNA Biol. Rna Detection and Visualization: Methods and Protocols = Methods Mol Biol Rna Detection and Visualization: Methods and Protocols = Methods Mol. Biol. Rna Editing = Method Enzymol Rna Editing = Method. Enzymol. Rna Exosome = Adv Exp Med Biol Rna Exosome = Adv. Exp. Med. Biol. Rna Helicases = Rsc Biomol Sci Rna Helicases = Rsc. Biomol. Sci. Rnai and Microrna-mediated Gene Regulation in Stem Cells: Methods, Protocols, and Applications = Methods Mol Biol Rnai and Microrna-mediated Gene Regulation in Stem Cells: Methods, Protocols, and Applications = Methods. Mol. Biol. Rnai and Plant Gene Function Analysis: Methods and Protocols = Methods Mol Biol Rnai and Plant Gene Function Analysis: Methods and Protocols = Methods Mol. Biol. Rna Infrastructure and Networks = Adv Exp Med Biol Rna Infrastructure and Networks = Adv. Exp. Med. Biol. Rna Interference = Curr Top Microbiol Rna Interference = Curr. Top. Microbiol. Rna Interference: From Biology to Clinical Applications = Methods Mol Biol Rna Interference: From Biology to Clinical Applications = Methods. Mol. Biol. Rna Interference = Method Enzymol Rna Interference = Method. Enzymol. Rna Interference Techniques = Neuromethods Rna Interference Techniques = Neuromethods. Rna-ligand Interactions, Part B = Method Enzymol Rna-ligand Interactions, Part B = Method. Enzymol. Rna-ligand Interactions Pt A = Method Enzymol Rna-ligand Interactions Pt A = Method. Enzymol. Rna: Methods and Protocols = Methods Mol Biol Rna: Methods and Protocols = Methods Mol. Biol. Rna Modification = Method Enzymol Rna Modification = Method. Enzymol. RNA (New York, N.Y.) = RNA RNAO news = RNAO News RNAO News = RNAO News Rna Polymerase and Associated Factors, Pt A = Method Enzymol Rna Polymerase and Associated Factors, Pt A = Method. Enzymol. Rna Polymerase and Associated Factors, Pt B = Method Enzymol Rna Polymerase and Associated Factors, Pt B = Method. Enzymol. Rna Polymerases and Associated Factors, Pt C = Method Enzymol Rna Polymerases and Associated Factors, Pt C = Method. Enzymol. Rna Polymerases and Associated Factors, Pt C = Methods Enzymol Rna Polymerases and Associated Factors, Pt C = Methods. Enzymol. Rna Polymerases and Associated Factors, Pt D = Method Enzymol Rna Polymerases and Associated Factors, Pt D = Method. Enzymol. RNA=RNA;; RNA = RNA Rna Technologies and Their Applications = Rna Technol Rna Technologies and Their Applications = Rna Technol. Rna Technologies = Rna Technol Rna Technologies = Rna Technol. Rna Therapeutics: Function, Design, and Delivery = Methods Mol Biol Rna Therapeutics: Function, Design, and Delivery = Methods. Mol. Biol. Rna Turnover in Bacteria, Archaea and Organelles = Method Enzymol Rna Turnover in Bacteria, Archaea and Organelles = Method. Enzymol. Rna Turnover in Eukaryotes: Analysis of Specialized and Quality Control Rna Decay Pathways = Method Enzymol Rna Turnover in Eukaryotes: Analysis of Specialized and Quality Control Rna Decay Pathways = Method. Enzymol. Rna Turnover in Eukaryotes: Nucleases, Pathways and Anaylsis of Mrna Decay = Method Enzymol Rna Turnover in Eukaryotes: Nucleases, Pathways and Anaylsis of Mrna Decay = Method. Enzymol. Rna World, Third Edition = Cold Spring Harb Mon Rna World, Third Edition = Cold. Spring. Harb. Mon. RN (for Managers) = RN (For. Managers) RN (For managers) = RN (For Managers) RN Idaho = RN Ida RN Idaho = RN Ida. Rn Magazine = Rn Mag Rn Magazine = Rn Mag. RN = RN Roadblocks On The Information Highway = Stud Mod J Roadblocks On The Information Highway = Stud. Mod. J. Road From Damascus = Mcmaster New Test St Road From Damascus = Mcmaster. New. Test. St. Roadmap for Cognitive Development in Humanoid Robots = Cogn Syst Monogr Roadmap for Cognitive Development in Humanoid Robots = Cogn. Syst. Monogr. Roadmap of Scanning Probe Microscopy = Nanosci Technol Roadmap of Scanning Probe Microscopy = Nanosci. Technol. Roadmap to The Successful Development and Commercialization of Microbial Pest Control Products for Control of Arthropods = Prog Biol Control Roadmap to The Successful Development and Commercialization of Microbial Pest Control Products for Control of Arthropods = Prog. Biol. Control Road Materials and Pavement Design = Road Mater Pavement Road Materials and Pavement Design = Road Mater. Pavement Road Pricing: Theory, Empirical Assessment, and Policy = Transp Res Econ Pol Road Pricing: Theory, Empirical Assessment, and Policy = Transp. Res. Econ. Pol. Roadside Safety Features and Hydraulic, Hydrology, and Water Quality Issues = Transport Res Rec Roadside Safety Features and Hydraulic, Hydrology, and Water Quality Issues = Transport. Res. Rec. Road to Galaxy Formation, Second Edition = S-p B Astron Planet Road to Galaxy Formation, Second Edition = S-p. B. Astron. Planet. Road to International Financial Stability: Are Key Financial Standards The Answer = Int Polit Econ Ser Road to International Financial Stability: Are Key Financial Standards The Answer = Int. Polit. Econ. Ser. Road to Jerusalem: Pilgrimage and Travel in The Age of Discovery = Mater Texts Road to Jerusalem: Pilgrimage and Travel in The Age of Discovery = Mater. Texts. Road to Sustainability: Gdp and Future Generations = Sus World Road to Sustainability: Gdp and Future Generations = Sus. World. Road & Transport Research = Road Transp Res Road & Transport Research = Road Transp. Res. Robert Antelme: Humanity, Community, Testimony = Res Monogr Fr Stud Robert Antelme: Humanity, Community, Testimony = Res. Monogr. Fr. Stud. Robert A. Welch Foundation 37th Conference On Chemical Research = P R A Welch Robert A. Welch Foundation 37th Conference On Chemical Research = P. R. A. Welch Robert Lepage = Routl Perform Pract Robert Lepage = Routl. Perform. Pract. Robert Louis Stevenson, Science, and The Fin De Siecle = Palgrave Stud Ninet- Robert Louis Stevenson, Science, and The Fin De Siecle = Palgrave. Stud. Ninet-. Roberto Burle Marx in Caracas: Parque Del Este, 1956-1961 = Penn Stud Landsc Arc Roberto Burle Marx in Caracas: Parque Del Este, 1956-1961 = Penn. Stud. Landsc. Arc. Robert Owen and The Owenites in Britain and America: The Quest for The New Moral World = Routledge Revivals Robert Owen and The Owenites in Britain and America: The Quest for The New Moral World = Routledge. Revivals. Robert Wilson = Routl Perform Pract Robert Wilson = Routl. Perform. Pract. Rob Milne: A Tribute to A Pioneering Ai Scientist, Entrepreneur and Mountaineer = Front Artif Intel Ap Rob Milne: A Tribute to A Pioneering Ai Scientist, Entrepreneur and Mountaineer = Front. Artif. Intel. Ap. Robocup 2002: Robot Soccer World Cup Vi = Lect Notes Artif Int Robocup 2002: Robot Soccer World Cup Vi = Lect. Notes. Artif. Int. Robocup 2003: Robot Soccer World Cup Vii = Lect Notes Comput Sc Robocup 2003: Robot Soccer World Cup Vii = Lect. Notes. Comput. Sc. Robocup 2004: Robot Soccer World Cup Viii = Lect Notes Comput Sc Robocup 2004: Robot Soccer World Cup Viii = Lect. Notes. Comput. Sc. Robocup 2005: Robot Soccer World Cup Ix = Lect Notes Artif Int Robocup 2005: Robot Soccer World Cup Ix = Lect. Notes. Artif. Int. Robocup 2006: Robot Soccer World Cup X = Lect Notes Artif Int Robocup 2006: Robot Soccer World Cup X = Lect. Notes. Artif. Int. Robocup 2007: Robot Soccer World Cup Xi = Lect Notes Comput Sc Robocup 2007: Robot Soccer World Cup Xi = Lect. Notes. Comput. Sc. Robocup 2008: Robot Soccer World Cup Xii = Lect Notes Comput Sc Robocup 2008: Robot Soccer World Cup Xii = Lect. Notes. Comput. Sc. Robocup 2009: Robot Soccer World Cup Xiii = Lect Notes Artif Int Robocup 2009: Robot Soccer World Cup Xiii = Lect. Notes. Artif. Int. Robocup-98: Robot Soccer World Cup Ii = Lect Notes Artif Int Robocup-98: Robot Soccer World Cup Ii = Lect. Notes. Artif. Int. Robocup-99: Robot Soccer World Cup Iii = Lect Notes Artif Int Robocup-99: Robot Soccer World Cup Iii = Lect. Notes. Artif. Int. Robot Control 1991 ( Syroco 91 ) = Ifac Symp Series Robot Control 1991 ( Syroco 91 ) = Ifac. Symp. Series. Robot Control 1997, Vols 1 and 2 = Ifac Symp Series Robot Control 1997, Vols 1 and 2 = Ifac. Symp. Series. Robotersysteme = Robotersysteme Robotic and Laparoscopic Reconstructive Surgery in Children and Adults = Curr Clin Urol Robotic and Laparoscopic Reconstructive Surgery in Children and Adults = Curr. Clin. Urol. Robotic and Semi-robotic Ground Vehicle Technology = P Soc Photo-opt Ins Robotic and Semi-robotic Ground Vehicle Technology = P. Soc. Photo-opt. Ins. Robotica = Robotica Robotic Exploration and Landmark Determination: Hardware-efficient Algorithms and Fpga Implementations = Stud Comput Intell Robotic Exploration and Landmark Determination: Hardware-efficient Algorithms and Fpga Implementations = Stud. Comput. Intell. Robotic Exploration Close to The Sun: Scientific Basis = Aip Conf Proc Robotic Exploration Close to The Sun: Scientific Basis = Aip. Conf. Proc. Robotic Mapping and Exploration = Springer Trac Adv Ro Robotic Mapping and Exploration = Springer. Trac. Adv. Ro. Robotic Observatories = Wil Prax Ser Astron Robotic Observatories = Wil. Prax. Ser. Astron. Robotics Age = Robotic Age Robotics Age = Robotic. Age Robotics and Automation Systems = Solid State Phenomen Robotics and Automation Systems = Solid. State. Phenomen. Robotics and Autonomous Systems = Rob. Autom. Syst. Robotics and autonomous systems = Rob Auton Syst Robotics and Autonomous Systems = Robot Auton Syst Robotics and Autonomous Systems = Robot. Auton. Syst. Robotics and Cognitive Approaches to Spatial Mapping = Spr Tra Adv Robot Robotics and Cognitive Approaches to Spatial Mapping = Spr. Tra. Adv. Robot. Robotics and Computer-Integrated Manufacturing = Rob. Comput. Integr. Manuf. Robotics and Computer-integrated Manufacturing = Robot Cim-int Manuf Robotics and Computer-integrated Manufacturing = Robot. Cim-int. Manuf. Robotics, Automation and Control and Manufacturing: Trends, Principles and Applications = Tsi Press S Robotics, Automation and Control and Manufacturing: Trends, Principles and Applications = Tsi. Press. S. Robotics, Control and Manufacturing Technology = Ele Com Eng Robotics, Control and Manufacturing Technology = Ele. Com. Eng. Robotics = Intel Syst Contr Aut Robotics = Intel. Syst. Contr. Aut. Robotics: Modelling, Planning and Control = Adv Txb Contr Sig Pr Robotics: Modelling, Planning and Control = Adv. Txb. Contr. Sig. Pr. Robotics Research = Springer Trac Adv Ro Robotics Research = Springer. Trac. Adv. Ro. Robotics Research = Spr Tra Adv Robot Robotics Research = Spr. Tra. Adv. Robot. Robotics: Trends, Principles and Applications, Vol 15 = Tsi Press S Robotics: Trends, Principles and Applications, Vol 15 = Tsi. Press. S. Robotic Systems for Handling and Assembly = Springer Trac Adv Ro Robotic Systems for Handling and Assembly = Springer. Trac. Adv. Ro. Robotic Telescopes: Current Capabilities, Present Developments, and Future Prospects for Automated Astronomy = Astr Soc P Robotic Telescopes: Current Capabilities, Present Developments, and Future Prospects for Automated Astronomy = Astr. Soc. P. Robotic Telescopes in The 1990s = Astr Soc P Robotic Telescopes in The 1990s = Astr. Soc. P. Robotic Welding, Intelligence and Automation = Lect Notes Contr Inf Robotic Welding, Intelligence and Automation = Lect. Notes. Contr. Inf. Robotik 2002 = Vdi Bericht Robotik 2002 = Vdi. Bericht. Robot Intelligence: An Advanced Knowledge Processing Approach = Adv Inform Knowl Pro Robot Intelligence: An Advanced Knowledge Processing Approach = Adv. Inform. Knowl. Pro. Robot Motion and Control 2007 = Lect Notes Contr Inf Robot Motion and Control 2007 = Lect. Notes. Contr. Inf. Robot Motion and Control 2009 = Lect Notes Contr Inf Robot Motion and Control 2009 = Lect. Notes. Contr. Inf. Robot Motion and Control: Recent Developments = Lect Notes Contr Inf Robot Motion and Control: Recent Developments = Lect. Notes. Contr. Inf. Robot Navigation From Nature: Simultaneous Localisation, Mapping and Path Planning Based On Hippocampal Models = Springer Trac Adv Ro Robot Navigation From Nature: Simultaneous Localisation, Mapping and Path Planning Based On Hippocampal Models = Springer. Trac. Adv. Ro. Robot Vision, Proceedings = Lect Notes Comput Sc Robot Vision, Proceedings = Lect. Notes. Comput. Sc. Robust Adaptation to Non-native Accents in Automatic Speech Recognition = Lect Notes Artif Int Robust Adaptation to Non-native Accents in Automatic Speech Recognition = Lect. Notes. Artif. Int. Robust Algebraic Multilevel Methods and Algorithms = Radon Ser Comput App Robust Algebraic Multilevel Methods and Algorithms = Radon. Ser. Comput. App. Robust and Online Large-scale Optimization = Lect Notes Comput Sc Robust and Online Large-scale Optimization = Lect. Notes. Comput. Sc. Robust Control and Filtering of Singular Systems = Lect Notes Contr Inf Robust Control and Filtering of Singular Systems = Lect. Notes. Contr. Inf. Robust Control Design 2000, Vols 1 & 2 = Ifac Symp Series Robust Control Design 2000, Vols 1 & 2 = Ifac. Symp. Series. Robust Control for Uncertain Networked Control Systems With Random Delays = Lect Notes Contr Inf Robust Control for Uncertain Networked Control Systems With Random Delays = Lect. Notes. Contr. Inf. Robust Control of Infinite Dimensional Systems = Lect Notes Contr Inf Robust Control of Infinite Dimensional Systems = Lect. Notes. Contr. Inf. Robust Control of Linear Systems and Nonlinear Control = Prog Syst C Robust Control of Linear Systems and Nonlinear Control = Prog. Syst. C. Robust Control of Linear Systems Subject to Time-varying Parameters = Lect Notes Contr Inf Robust Control of Linear Systems Subject to Time-varying Parameters = Lect. Notes. Contr. Inf. Robustness in Identification and Control = Appl Info T Robustness in Identification and Control = Appl. Info. T. Robustness in Identification and Control = Lect Notes Contr Inf Robustness in Identification and Control = Lect. Notes. Contr. Inf. Robustness of Dynamic Systems With Parameter Uncertainties = Monte Verit Robustness of Dynamic Systems With Parameter Uncertainties = Monte. Verit. Robust Numerical Methods for Singularly Perturbed Differential Equations: Convection-diffusion-reaction and Flow Problems = Spr Ser Comput Math Robust Numerical Methods for Singularly Perturbed Differential Equations: Convection-diffusion-reaction and Flow Problems = Spr. Ser. Comput. Math. Robust Optimization = Princ Ser Appl Math Robust Optimization = Princ. Ser. Appl. Math. Robust Power System Frequency Control = Power Electron Power Robust Power System Frequency Control = Power Electron. Power Robust Sigma Delta Converters: and Their Application in Low-power Highly-digitized Flexible Receivers = Analog Circ Sig Proc Robust Sigma Delta Converters: and Their Application in Low-power Highly-digitized Flexible Receivers = Analog. Circ. Sig. Proc. Robust Signal Processing for Wireless Communications = Found Signal Process Robust Signal Processing for Wireless Communications = Found. Signal Process. Robust Static Super-replication of Barrier Options = Radon Ser Comput App Robust Static Super-replication of Barrier Options = Radon. Ser. Comput. App. Robust Synchronization of Chaotic Systems Via Feedback = Lect Notes Contr Inf Robust Synchronization of Chaotic Systems Via Feedback = Lect. Notes. Contr. Inf. Roc Curves for Continuous Data = Monogr Stat Appl Pro Roc Curves for Continuous Data = Monogr. Stat. Appl. Pro. Rochester history = Rochester Hist Rochester Museum & Science Center, Research Records = Rmsc Res Rec Rochester Museum & Science Center, Research Records = Rmsc. Res. Rec. Rochester Series On Environmental Toxicity = Roch S Env Rochester Series On Environmental Toxicity = Roch. S. Env. Rochester Studies in Economics and Policy Issues = Roch Stud E Rochester Studies in Economics and Policy Issues = Roch. Stud. E. Rock Art Research = Rock Art Res Rock Art Research = Rock Art Res. Rocket and Spacecraft Propulsion, Third Edition = Springer-prax Books Rocket and Spacecraft Propulsion, Third Edition = Springer-prax. Books. Rock for Erosion Control = Am Soc Test Mater Rock for Erosion Control = Am. Soc. Test. Mater. Rock Mechanics and Rock Engineering = Rock Mech Rock Eng Rock Mechanics and Rock Engineering = Rock Mech. Rock Eng. Rock Mechanics: Meeting Society's Challenges and Demands, Vols 1 and 2 = Proc Monogr Eng Wate Rock Mechanics: Meeting Society's Challenges and Demands, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Rock Mechanics = Rock Mech Rock Mechanics = Rock Mech. Rock Physics and Geomechanics in The Study of Reservoirs and Repositories = Geol Soc Spec Publ Rock Physics and Geomechanics in The Study of Reservoirs and Repositories = Geol. Soc. Spec. Publ. Rock Products = Rock Prod Rock Products = Rock Prod. Rock Weathering and Landform Evolution = Brit Geomor Rock Weathering and Landform Evolution = Brit. Geomor. Rocky Mountain Forest and Range Experiment Station, Forest Series = Rocky Mt. For. Range  Exp. Stn., For. Ser. Rocky Mountain Geology = Rocky Mt Geol. Rocky Mountain Institute Newsletter = Rocky Mt Inst Newsl Rocky Mountain Institute Newsletter = Rocky Mt. Inst. Newsl. Rocky Mountain Journal of Mathematics = Rocky Mt J Math Rocky Mountain Journal of Mathematics = Rocky Mt. J. Math. Rocky Mountain medical journal = Rocky Mt Med J Rocky Mountain Medical Journal = Rocky Mt Med J Rocky Mountain Medical Journal = Rocky Mt. Med. J. Rocky Mountain New Perspectives = Usda Rocky Rocky Mountain New Perspectives = Usda. Rocky Rocky Mountain Region: An Evolving Lithosphere = Geophys Monogr Ser Rocky Mountain Region: An Evolving Lithosphere = Geophys. Monogr. Ser. Rocky Mountain Review of Language and Literature = Rocky Mt Rev Lang Rocky Mountain Review of Language and Literature = Rocky Mt. Rev. Lang. Rocky Mountain Social Science Journal = Rocky Mt Soc Sci J Rocky Mountain Social Science Journal = Rocky Mt. Soc. Sci. J. Rocom'09: Proceedings of The 9th Wseas International Conference On Robotics, Control and Manufacturing Technology = Ele Com Eng Rocom'09: Proceedings of The 9th Wseas International Conference On Robotics, Control and Manufacturing Technology = Ele. Com. Eng. Roczniki Akademii Medycznej im. Juliana Marchlewskiego w Bialymstoku = Rocz Akad Med Im Juliana Marchlewskiego Bialymst Roczniki Akademii Medycznej im. Juliana Marchlewskiego w Bialymstoku = Rocz. Akad. Med. Im. Juliana Marchlewskiego Bialymst. Roczniki Akademii Medycznej im. Juliana Marchlewskiego w Bialymstoku. Suplement = Rocz Akad Med Im Juliana Marchlewskiego Bialymst Suppl Roczniki Akademii Medycznej im. Juliana Marchlewskiego w Bialymstoku. Supplement = Rocz. Akad. Med. Im. Juliana Marchlewskiego Bialymst. Suppl. Roczniki Akademii Medycznej w Bialymstoku (1995) = Rocz Akad Med Bialymst Roczniki Akademii Medycznej w Bialymstoku = Rocz. Akad. Med. Bialymst. Roczniki Akademii Medycznej W Bialymstoku=Rocz Akad Med Bialymst;; Roczniki Akademii Medycznej w Bialymstoku. Supplement = Rocz. Akad. Med. Bialymst. Supl. Roczniki Chemii = Rocz Chem Roczniki Chemii = Rocz. Chem. Roczniki filozoficzne. Annales de philosophie = Rocz Filoz Roczniki humanistyczne. 3, Filologia klasyczna = RHum Roczniki humanistyczne = RocsHum Roczniki humanistyczne = Rocz Humanist Roczniki Panstwowego Zakladu Higieny=Rocz Panstw Zakl Hig;; Roczniki Panstwowego Zakladu Higieny = Rocz Panstw Zakl Hig Roczniki Panstwowego Zakladu Higieny = Rocz. Panstw. Zakl. Hig. Roczniki Polskiego Towarzystwa Matematycznego = Mat. Stos. Roczniki Polskiego Towarzystwa Matematycznego = Wiadom. Mat. Rocznik Muzeum narodowego w Warszawie = RoczMuzWarsz Rocznik Ochrona Srodowiska = Rocz Ochr Sr Rocznik Ochrona Srodowiska = Rocz. Ochr. Sr. Rocznik Pomorskiej Akademii Medycznej im. Gen. Karola Swierczewskiego w Szczecinie = Rocz Pomor Akad Med Rocznik Pomorskiej Akademii Medycznej im. Gen. Karola Swierczewskiego w Szczecinie = Rocz. Pomor. Akad. Med. Rodent Models of Stroke = Neuromethods Rodent Models of Stroke = Neuromethods. Rodo kagaku. The Journal of science of labour = Rodo Kagaku Rodopi Perspectives On Modern Literature = Rod Per Mod Rodopi Perspectives On Modern Literature = Rod. Per. Mod. Roentgen-Europ; radiodiagnostic clinique europeen = Rontgeneur Radiodiagn Clin Eur Rofo-fortschritte Auf Dem Gebiet Der Rontgenstrahlen Und Der Bildgebenden Verfahren = Rofo-fortschr Rontg Rofo-fortschritte Auf Dem Gebiet Der Rontgenstrahlen Und Der Bildgebenden Verfahren = Rofo-fortschr. Rontg. Rofo; Fortschritte auf dem Gebiete der Rontgenstrahlen und der Neuen Bildgebenden Verfahren = Rofo. Fortschr. Geb. Rontgenstr. Neuen Bildgeb. Verfahr. Rofo. Fortschritte Auf Dem Gebiete Der Rontgenstrahlen Und Der NeuenBildgebenden Verfahren Rofo Fortschr Geb Rontgenstr Neuen Bildge=Verfahr;; RoFo : Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin = Rofo ROFO. Fortschritte auf dem Gebiete der Rontgenstrahlen und der Nuklearmedizin = ROFO. Fortschr. Geb. Rontgenstr. Nuklearmed. Rogerian nursing science news : newsletter of the Society of Rogerian Scholars = Rogerian Nurs Sci News Rogerian Nursing Science News = Rogerian Nurs. Sci. News Rogue Performances: Staging The Underclasses in Early American Theatre Culture = Palg Stud Theat Perf Rogue Performances: Staging The Underclasses in Early American Theatre Culture = Palg. Stud. Theat. Perf. Rogue Waves in The Ocean = Adv Geophys Env Mech Rogue Waves in The Ocean = Adv. Geophys. Env. Mech. Role and Position of The Research Sector for The Development of Changing Cotton Industries in Africa = Cirad Colloques Role and Position of The Research Sector for The Development of Changing Cotton Industries in Africa = Cirad. Colloques. Role Engineering for Enterprise Security Management = Artech Hse Inf Secur Role Engineering for Enterprise Security Management = Artech. Hse. Inf. Secur. Role of Admixtures in High Performance Concrete = Rilem Proc Role of Admixtures in High Performance Concrete = Rilem. Proc. Role of Apoptosis in Infection = Curr Top Microbiol Role of Apoptosis in Infection = Curr. Top. Microbiol. Role of Biodiversity Conservation in The Transition to Rural Sustainability = Nato Asi S 4 Sci Tec Role of Biodiversity Conservation in The Transition to Rural Sustainability = Nato. Asi. S. 4. Sci. Tec. Role of Biotechnology in Countering Btw Agents = Nato Sci Prt 1 Disar Role of Biotechnology in Countering Btw Agents = Nato. Sci. Prt. 1. Disar. Role of Corporate Venture Capital in Innovation = Bus Econ Rapid Chang Role of Corporate Venture Capital in Innovation = Bus. Econ. Rapid. Chang. Role of Degenerate States in Chemistry = Adv Chem Phys Role of Degenerate States in Chemistry = Adv. Chem. Phys. Role of Developing Countries in Ground Based Experiments in Support of Space Observations for Global and Regional Studies = Adv Space Res Role of Developing Countries in Ground Based Experiments in Support of Space Observations for Global and Regional Studies = Adv. Space Res. Role of Digital Libraries in A Time of Global Change = Lect Notes Comput Sc Role of Digital Libraries in A Time of Global Change = Lect. Notes. Comput. Sc. Role of Ecological Chemistry in Pollution Research and Sustainable Development = Nato Sci Peace Secur Role of Ecological Chemistry in Pollution Research and Sustainable Development = Nato. Sci. Peace. Secur. Role of Epidemiology in Regulatory Risk Assessment = Int Congr Ser Role of Epidemiology in Regulatory Risk Assessment = Int. Congr. Ser. Role of Erosion and Sediment Transport in Nutrient and Contaminant Transfer, Proceedings = Iahs-aish P Role of Erosion and Sediment Transport in Nutrient and Contaminant Transfer, Proceedings = Iahs-aish. P. Role of Foreign Direct Investment in East Asian Economic Development = Nber E A Ec Role of Foreign Direct Investment in East Asian Economic Development = Nber. E. A. Ec. Role of Genetics in Breast and Productive Cancers = Cancer Genet-ser Role of Genetics in Breast and Productive Cancers = Cancer. Genet-ser. Role of Gis in Lifting The Cloud Off Chernobyl = Nato Sci S Iv Ear En Role of Gis in Lifting The Cloud Off Chernobyl = Nato. Sci. S. Iv. Ear. En. Role of Government in Adjusting Economies = Role Gov Adjust Econ Role of Government in Adjusting Economies = Role Gov. Adjust. Econ. Role of High Energy Electrons in The Treatment of Cancer = Front Radiat Ther On Role of High Energy Electrons in The Treatment of Cancer = Front. Radiat. Ther. On. Role of Insulin-like Growth Factors in The Nervous Systems = Ann Ny Acad Sci Role of Insulin-like Growth Factors in The Nervous Systems = Ann. Ny. Acad. Sci. Role of International Institutions in Globalisation: The Challenges of Reform = Int I Glob Gov Role of International Institutions in Globalisation: The Challenges of Reform = Int. I. Glob. Gov. Role of International Institutions in Globalisation: The Challenges of Reform = Intl Inst Global Gov Role of International Institutions in Globalisation: The Challenges of Reform = Intl. Inst. Global. Gov. Role of Labour Mobility and Informal Networks for Knowledge Transfer = Int Stud Entre Role of Labour Mobility and Informal Networks for Knowledge Transfer = Int. Stud. Entre. Role of Legumes in The Farming Systems of The Mediterranean Areas = Dev Plant Soil Sci Role of Legumes in The Farming Systems of The Mediterranean Areas = Dev. Plant. Soil. Sci. Role of Mathematics Discourse in Producing Leaders of Discourse = Mont Math Enthus Mon Role of Mathematics Discourse in Producing Leaders of Discourse = Mont. Math. Enthus. Mon. Role of Melatonin and Pineal Peptides in Neuroimmunomodulation = Nato Adv Sci I A-lif Role of Melatonin and Pineal Peptides in Neuroimmunomodulation = Nato. Adv. Sci. I. A-lif. Role of Metrology in Economic and Social Development = Ptb Text Role of Metrology in Economic and Social Development = Ptb. Text. Role of Mexicos Plural in Latin American Literary and Political Culture: From Tlatelolco to The Philanthropic Ogre = Stud Am Role of Mexicos Plural in Latin American Literary and Political Culture: From Tlatelolco to The Philanthropic Ogre = Stud. Am. Role of Microenvironment in Axonal Regeneration = Adv Anat Embryol Cel Role of Microenvironment in Axonal Regeneration = Adv. Anat. Embryol. Cel. Role of Model Integration in Complex Systems Modelling: An Example From Cancer Biology = Underst Complex Syst Role of Model Integration in Complex Systems Modelling: An Example From Cancer Biology = Underst. Complex Syst. Role of Moral Reasoning On Socioscientific Issues and Discourse in Science Education = Sci Technol Educ Lib Role of Moral Reasoning On Socioscientific Issues and Discourse in Science Education = Sci. Technol. Educ. Lib. Role of Muscle Strength in Hamstring Injury = Muscular Syst-anat F Role of Muscle Strength in Hamstring Injury = Muscular. Syst-anat. F. Role of Natural Products in Drug Discovery = E Schering Res Fdn W Role of Natural Products in Drug Discovery = E. Schering. Res. Fdn. W. Role of Nepotism and Competition for The Evolution of Avian Families = Birds-evol Behav Eco Role of Nepotism and Competition for The Evolution of Avian Families = Birds-evol. Behav. Eco. Role of Neural Plasticity in Chemical Intolerance = Ann Ny Acad Sci Role of Neural Plasticity in Chemical Intolerance = Ann. Ny. Acad. Sci. Role of Nonlinear Dynamics in Endocrine Feedback = Math Res Dev Role of Nonlinear Dynamics in Endocrine Feedback = Math. Res. Dev. Role of Nonliving Organic Matter in The Earth's Carbon Cycle = Dahl Ws Env Role of Nonliving Organic Matter in The Earth's Carbon Cycle = Dahl. Ws. Env. Role of Phosphodiesterase - Inhibitors in Heart Failure = Roy Soc Med Int Cong Role of Phosphodiesterase - Inhibitors in Heart Failure = Roy. Soc. Med. Int. Cong. Role of Plant Pathology in Food Safety and Food Security = Plant Path 21st Role of Plant Pathology in Food Safety and Food Security = Plant Path. 21st. Role of Public Policy in K-12 Science Education = Res Sci Educ Ser Role of Public Policy in K-12 Science Education = Res. Sci. Educ. Ser. Role of Religion in Marriage and Family Counseling = Fam Ther Counsel Role of Religion in Marriage and Family Counseling = Fam. Ther. Counsel. Role of Specialized Beef Breeds in Extensive Husbandry Systems of Suckling Cows = Eaap Public Role of Specialized Beef Breeds in Extensive Husbandry Systems of Suckling Cows = Eaap. Public. Role of Technology in Cscl: Studies in Technology Enhanced Collaborative Learning = Comput-supp Collab L Role of Technology in Cscl: Studies in Technology Enhanced Collaborative Learning = Comput-supp. Collab. L. Role of Technology in The Cost of Health Care: Providing The Solutions = P Soc Photo-opt Ins Role of Technology in The Cost of Health Care: Providing The Solutions = P. Soc. Photo-opt. Ins. Role of Technology in The Cost of Health Care = P Soc Photo-opt Ins Role of Technology in The Cost of Health Care = P. Soc. Photo-opt. Ins. Role of The Cerebellum and Basal Ganglia in Voluntary Movement = Int Congr Ser Role of The Cerebellum and Basal Ganglia in Voluntary Movement = Int. Congr. Ser. Role of The Forebrain in Sensation and Behavior = Prog Brain Res Role of The Forebrain in Sensation and Behavior = Prog. Brain. Res. Role of The Mitochondria in Human Aging and Disease: From Genes to Cell Signaling = Ann Ny Acad Sci Role of The Mitochondria in Human Aging and Disease: From Genes to Cell Signaling = Ann. Ny. Acad. Sci. Role of The National Libraries in The Evolving National Network = Netw Plan P Role of The National Libraries in The Evolving National Network = Netw. Plan. P. Role of The Ocean in Global Cycling of Persistent Organic Contaminants = Hamb Stud Marit Aff Role of The Ocean in Global Cycling of Persistent Organic Contaminants = Hamb. Stud. Marit. Aff. Role of Theory in Sex Research = Kinsey Inst Role of Theory in Sex Research = Kinsey. Inst. Role of The Press and Communication Technology in Democratization: The Nigerian Story = Afr Stud-hist Polit Role of The Press and Communication Technology in Democratization: The Nigerian Story = Afr. Stud-hist. Polit. Role of Trace Elements for Health Promotion and Disease Prevention = Bibl Nutr Diet Role of Trace Elements for Health Promotion and Disease Prevention = Bibl. Nutr. Diet. Role of Traditional Medicine in Primary Health Care = Prim Hlth C Role of Traditional Medicine in Primary Health Care = Prim. Hlth. C. Role of Universities in National Agricultural Research Systems = Fao Res Technol Pap Role of Universities in National Agricultural Research Systems = Fao. Res. Technol. Pap. Role of Vlbi in Astrophysics, Astrometry and Geodesy = Nato Sci Ser Ii Math Role of Vlbi in Astrophysics, Astrometry and Geodesy = Nato. Sci. Ser. Ii. Math. Role of Wnt Signalling in The Development of Somites and Neural Crest = Adv Anat Embryol Cel Role of Wnt Signalling in The Development of Somites and Neural Crest = Adv. Anat. Embryol. Cel. Role of Women in The History of Geology = Geol Soc Spec Publ Role of Women in The History of Geology = Geol. Soc. Spec. Publ. Rolf Nevanlinna Institute Research Reports A = Rolf Nevanlinna Inst. Res. Rep. A Roll Forming Handbook = Manuf Eng Mater Proc Roll Forming Handbook = Manuf. Eng. Mater. Proc. Rolling Contact Phenomena = Cism Cour L Rolling Contact Phenomena = Cism. Cour. L. Rolling Contact Phenomena = Cism Courses Lect Rolling Contact Phenomena = Cism. Courses. Lect. Rolling stone (San Francisco, Calif.) = Roll Stone Roll of Characterization in Understanding Environmental Degradation of Materials = Microstr Sc Roll of Characterization in Understanding Environmental Degradation of Materials = Microstr. Sc. Romana gens. Bollettino dell’Associazione archeologica romana = RomGens Roman Barbarians: The Royal Court and Culture in The Early Medieval West = Mediev Cult Soc Roman Barbarians: The Royal Court and Culture in The Early Medieval West = Mediev. Cult. Soc. Romance and Sex in Adolescence and Emerging Adulthood: Risks and Opportunites = Penn State Univ Fam Romance and Sex in Adolescence and Emerging Adulthood: Risks and Opportunites = Penn. State. Univ. Fam. Romance Languages and Linguistic Theory 2003 = Amst Stud Theory His Romance Languages and Linguistic Theory 2003 = Amst. Stud. Theory His. Romance Languages Annual 1989, Vol 1 = Rom Lang An Romance Languages Annual 1989, Vol 1 = Rom. Lang. An. Romance Languages Annual 1990, Vol 2 = Rom Lang An Romance Languages Annual 1990, Vol 2 = Rom. Lang. An. Romance Languages Annual 1993, Vol 5 = Rom Lang An Romance Languages Annual 1993, Vol 5 = Rom. Lang. An. Romance Languages Annual = Rom Lang An Romance Languages Annual = Rom. Lang. An. Romance Notes = Romance Notes Romance notes = Roman Notes Romance Philology = Romance Philol Romance Philology = Romance Philol. Romance Quarterly = Romance Quart Romance Quarterly = Romance Quart. Romances About The Knight With The Lion = Chloe Romances About The Knight With The Lion = Chloe. Romance Studies = Roman Stud Romance Studies = Roman. Stud. Roman Empire From 192 to 325 = Pallas Roman Empire From 192 to 325 = Pallas. Roman Garden: Space, Sense, and Society = Routl Monogr Class S Roman Garden: Space, Sense, and Society = Routl. Monogr. Class. S. Romania and The European Union = Eur Nation State Romania and The European Union = Eur. Nation. State. Romanian Agricultural Research = Rom Agric Res Romanian Agricultural Research = Rom. Agric. Res. Romanian Biotechnological Letters = Rom Biotech Lett Romanian Biotechnological Letters = Rom. Biotech. Lett. Romanian Biotechnology Letters = Rom. Biotechnol. Lett. Romanian Journal of Biochemistry = Rom. J. Biochem. Romanian Journal of Chemistry = Rom. J. Chem. Romanian Journal of Economic Forecasting = Rom J Econ Forecast Romanian Journal of Economic Forecasting = Rom. J. Econ. Forecast. Romanian Journal of Endocrinology = Rom. J. Endocrinol. Romanian journal of endocrinology / sponsore [sic] by the Academy of Medical Sciences = Rom J Endocrinol Romanian journal of gastroenterology = Rom J Gastroenterol Romanian journal of gerontology and geriatrics / the National Institute of Gerontology and Geriatrics, Bucharest = Rom J Gerontol Geriatr Romanian Journal of Information Science and Technology = Rom J Inf Sci Tech Romanian Journal of Information Science and Technology = Rom. J. Inf. Sci. Tech. Romanian Journal of Internal Medicine=Rom J Intern Med;; Romanian Journal of Internal Medicine = Rom. J. Intern. Med. Romanian Journal of Legal Medicine = Rom J Leg Med Romanian Journal of Legal Medicine = Rom. J. Leg. Med. Romanian Journal of Morphology and Embryology = Rom J Morphol Embryo Romanian Journal of Morphology and Embryology = Rom. J. Morphol. Embryo. Romanian Journal of Morphology and Embryology=Rom J Morphol Embryol;; Romanian Journal of Morphology and Embryology = Rom. J. Morphol. Embryol. Romanian Journal of Neurology and Psychiatry = Rom. J. Neurol. Psychiatry Romanian Journal of Physics = Romanian J. Phys. Romanian Journal of Physics = Rom J Phys Romanian Journal of Physics = Rom. J. Phys. Romanian journal of physiology : physiological sciences / [Academia de Stiinte Medicale] = Rom J Physiol Romanian Journal of Physiology = Rom. J. Physiol. Romanian Journal of Political Science = Rom J Polit Sci Romanian Journal of Political Science = Rom. J. Polit. Sci. Romanian journal of virology = Rom J Virol Romanian Journal of Virology=Rom J Virol;; Romanian Journal of Virology = Rom. J. Virol. Romanian medical review = Rom Med Rev Romanian Medical Review = Rom. Med. Rev. Romanian Reports in Physics = Romanian Rep. Phys. Romanian Reports in Physics = Rom Rep Phys Romanian Reports in Physics = Rom. Rep. Phys. Romanian Review = Romanian Rev Romanian Review = Romanian Rev. Romania = Romania Romanic Review = Romanic Rev Romanic Review = Romanic Rev. Roman Imperial Biographies = Roman Imp Biogr Roman Imperial Biographies = Roman Imp. Biogr. Romanische Forschungen = Roman Forsch Romanische Forschungen = Roman. Forsch. Romanische Forschungen: Vierteljahresschrift für romanische Sprachen und Literaturen = RomForsch Romanische Sprachgeschichte/histoire Linguistique De La Romania, Tome 3 = Handb Sprach Kommun Romanische Sprachgeschichte/histoire Linguistique De La Romania, Tome 3 = Handb. Sprach. Kommun. Romanische Sprachgeschichte, Teilband 1/histoire Linguistique De La Romania, Tome 1 = Handb Sprach Kommun Romanische Sprachgeschichte, Teilband 1/histoire Linguistique De La Romania, Tome 1 = Handb. Sprach. Kommun. Romanische Sprachgeschichte, Teilband 2 / Histoire Linguistique De La Romania, Tome 2 = Handb Sprach Kommun Romanische Sprachgeschichte, Teilband 2 / Histoire Linguistique De La Romania, Tome 2 = Handb. Sprach. Kommun. Romanistisches Jahrbuch (2002), Band 53 = Rom Jahbr Romanistisches Jahrbuch (2002), Band 53 = Rom. Jahbr. Romanistisches Jahrbuch (2003), Band 54 = Rom Jahbr Romanistisches Jahrbuch (2003), Band 54 = Rom. Jahbr. Romanistisches Jahrbuch (2004), Band 55 = Rom Jahbr Romanistisches Jahrbuch (2004), Band 55 = Rom. Jahbr. Romanistisches Jahrbuch (2005), Band 56 = Rom Jahbr Romanistisches Jahrbuch (2005), Band 56 = Rom. Jahbr. Romanistisches Jahrbuch (2006), Band 57 = Rom Jahbr Romanistisches Jahrbuch (2006), Band 57 = Rom. Jahbr. Romanistisches Jahrbuch (2007), Band 58 = Rom Jahbr Romanistisches Jahrbuch (2007), Band 58 = Rom. Jahbr. Romanistisches Jahrbuch (2008), Band 59 = Rom Jahbr Romanistisches Jahrbuch (2008), Band 59 = Rom. Jahbr. Romanistisches Jahrbuch = Rom Jahbr Romanistisches Jahrbuch = Rom. Jahbr. Romanistische Zeitschrift Fur Literaturgeschichte-cahiers D Histoire Des Litteratures Romanes = Roman Z Lit-cah Hist Romanistische Zeitschrift Fur Literaturgeschichte-cahiers D Histoire Des Litteratures Romanes = Roman. Z. Lit-cah. Hist. Romanitas, Filologia Romanica, Romanistica = Beih Z Roman Philol Romanitas, Filologia Romanica, Romanistica = Beih. Z. Roman. Philol. Romanobarbarica. Contributi allo studio dei rapporti culturali tra il mondo latino e mondo barbarico = Romanobarbarica Romanobarbarica: contributi allo studio dei rapporti culturali tra mondo latino e mondo barbarico = RomBarb Roman Portraits in Context = Image Context Roman Portraits in Context = Image. Context Roman Provincial Coinage = RPC Roman Social History: A Sourcebook = Routl Sourceb Anc Wo Roman Social History: A Sourcebook = Routl. Sourceb. Anc. Wo. Romansy 13 - Theory and Practice of Robots and Manipulators = Cism Cour L Romansy 13 - Theory and Practice of Robots and Manipulators = Cism. Cour. L. Romansy 14 - Theory and Practice of Robots and Manipulators = Cism Cour L Romansy 14 - Theory and Practice of Robots and Manipulators = Cism. Cour. L. Romansy 14 - Theory and Practice of Robots and Manipulators = Cism Courses Lect Romansy 14 - Theory and Practice of Robots and Manipulators = Cism. Courses. Lect. Romansy 16: Robot Design, Dynamics , and Control = Cism Cour L Romansy 16: Robot Design, Dynamics , and Control = Cism. Cour. L. Romansy 16: Robot Design, Dynamics , and Control = Cism Courses Lect Romansy 16: Robot Design, Dynamics , and Control = Cism. Courses. Lect. Romantic Cosmopolitanism = Palgrave Stud Enligh Romantic Cosmopolitanism = Palgrave. Stud. Enligh. Romantic Diasporas: French Emigres, British Convicts, and Jews = Ninet-century Major Romantic Diasporas: French Emigres, British Convicts, and Jews = Ninet-century. Major. Romantic Genius and The Literary Magazine: Biography, Celebrity and Politics = Routl Stud Romantic Romantic Genius and The Literary Magazine: Biography, Celebrity and Politics = Routl. Stud. Romantic Romanticism and The Object = Ninet-century Major Romanticism and The Object = Ninet-century. Major. Romanticism and Visuality: Fragments, History, Spectacle = Routl Stud Romantic Romanticism and Visuality: Fragments, History, Spectacle = Routl. Stud. Romantic. Romanticism, History, Historicism: Essays On An Orthodoxy = Routl Stud Romantic Romanticism, History, Historicism: Essays On An Orthodoxy = Routl. Stud. Romantic. Romanticism = Romanticism Romantic Literary Families = Ninet-century Major Romantic Literary Families = Ninet-century. Major. Romantic Migrations: Local, National, and Transnational Dispositions = Ninet-century Major Romantic Migrations: Local, National, and Transnational Dispositions = Ninet-century. Major. Romantic Misfits = Palgrave Stud Enligh Romantic Misfits = Palgrave. Stud. Enligh. Romantic Representations of British India = Routl Stud Romantic Romantic Representations of British India = Routl. Stud. Romantic Romantic Women Poets: Genre and Gender = Dqr Stud Lit Romantic Women Poets: Genre and Gender = Dqr. Stud. Lit. Romantisme = Romantisme Romatizma-rheumatism = Romatizma Romatizma-rheumatism = Romatizma. Rome and The North = St Med Ar Lit Pb Rome and The North = St. Med. Ar. Lit. Pb. Rome in The Pyrenees = Routl Monogr Class S Rome in The Pyrenees = Routl. Monogr. Class. S. Romische Erinnerungsraume = Millenn Stud Kult Ge Romische Erinnerungsraume = Millenn. Stud. Kult. Ge. Romische historische Mitteilungen = Rom Hist Mitt Römische Quartalschrift für christliche Altertumskunde und für Kirchengeschichte = RQA Römische Quartalschrift für christliche Altertumskunde und Kirchengeschichte = RoemQSchr Römisches österreich: Jahresschrift der Österreichischen Gesellschaft für Archäologie = Rö Römisches Österreich. Jahresschrift der Österreichischen Gesellschaft für Archäologie = RoemOe Romisches Zentrum Und Kirchliche Peripherie = Abh Akad Wiss Got Ph Romisches Zentrum Und Kirchliche Peripherie = Abh. Akad. Wiss. Got. Ph. Römisch-Germanische Forschungen = RGF Romopto 2000: Sixth Conference On Optics = Proc Spie Romopto 2000: Sixth Conference On Optics = Proc. Spie. Romopto 2000: Sixth Conference On Optics = P Soc Photo-opt Ins Romopto 2000: Sixth Conference On Optics = P. Soc. Photo-opt. Ins. Romopto 2003: Seventh Conference On Optics = Proc Spie Romopto 2003: Seventh Conference On Optics = Proc. Spie. Romopto 2003: Seventh Conference On Optics = P Soc Photo-opt Ins Romopto 2003: Seventh Conference On Optics = P. Soc. Photo-opt. Ins. Romopto 2006: Eighth Conference On Optics = Proc Spie Romopto 2006: Eighth Conference On Optics = Proc. Spie. Romopto 2006: Eighth Conference On Optics = P Soc Photo-opt Ins Romopto 2006: Eighth Conference On Optics = P. Soc. Photo-opt. Ins. Romopto 2009: Ninth Conference On Optics: Micro- to Nanophotonics Ii = Proc Spie Romopto 2009: Ninth Conference On Optics: Micro- to Nanophotonics Ii = Proc. Spie. Romopto 2009: Ninth Conference On Optics: Micro- to Nanophotonics Ii = P Soc Photo-opt Ins Romopto 2009: Ninth Conference On Optics: Micro- to Nanophotonics Ii = P. Soc. Photo-opt. Ins. Ronald Reagan and The 1980s: Perceptions, Policies, Legacies = Stud Am Ronald Reagan and The 1980s: Perceptions, Policies, Legacies = Stud. Am. Ronenbyo. [Geriatrics] = Ronenbyo Rontgen-blatter Klinik Und Praxis = Rontgen-bl Klin Prax Rontgen-blatter Klinik Und Praxis = Rontgen-bl. Klin. Prax. Rontgen-Blatter = Rontgenblatter. Rontgen-Blatter; Zeitschrift fur Rontgen-Technik und medizinisch-wissenschaftliche Photographie = Rontgenblatter Rontgendiagnostik; Ergebnisse = Rontgendiagnostik Ergeb Rontgenpraxis=Rontgenpraxis;; Rontgenpraxis = Rontgenpraxis Rontgenpraxis; Zeitschrift fur radiologische Technik = Rontgenpraxis Rontgen- und Laboratoriumspraxis = Rontgen Laborator Roofing Research and Standards Development : 2nd Volume = Am Soc Test Mater Roofing Research and Standards Development : 2nd Volume = Am. Soc. Test. Mater. Roofing Research and Standards Development: 3rd Volume = Am Soc Test Mater Roofing Research and Standards Development: 3rd Volume = Am. Soc. Test. Mater. Roofing Research and Standards Development: 5th Volume = Am Soc Test Mater Roofing Research and Standards Development: 5th Volume = Am. Soc. Test. Mater. Roofing Research and Standards Development: 6th Volume = Am Soc Test Mater Roofing Research and Standards Development: 6th Volume = Am. Soc. Test. Mater. Roofing Research and Standards Development: Fourth Volume = Am Soc Test Mater Roofing Research and Standards Development: Fourth Volume = Am. Soc. Test. Mater. Rooilijn (Amsterdam) = Rooilijn Room to Manoeuvre? Globalization and Policy Convergence = Bell Canada Pap Econ Room to Manoeuvre? Globalization and Policy Convergence = Bell. Canada. Pap. Econ. Roosevelt and Franco During The Second World War: From The Spanish Civil War to Pearl Harbor = World Roosevelts Roosevelt and Franco During The Second World War: From The Spanish Civil War to Pearl Harbor = World Roosevelts. Root and Butt Rots of Forest Trees = Colloq Inra Root and Butt Rots of Forest Trees = Colloq. Inra. Root and Tuber Crops = Handb Plant Breed Root and Tuber Crops = Handb. Plant. Breed. Root Causes of Suicide Terrorism: The Globalization of Martyrdom = Cass Ser Polit Viole Root Causes of Suicide Terrorism: The Globalization of Martyrdom = Cass. Ser. Polit. Viole. Root Causes of The Food Crisis: Technological Progress and Productivity Growth in African Agriculture = Afr Polit Econ Secur Root Causes of The Food Crisis: Technological Progress and Productivity Growth in African Agriculture = Afr. Polit. Econ. Secur. Root Demographics and Their Efficiencies in Sustainable Agriculture, Grasslands and Forest Ecosystems = Dev Plant Soil Sci Root Demographics and Their Efficiencies in Sustainable Agriculture, Grasslands and Forest Ecosystems = Dev. Plant. Soil. Sci. Roots: Linguistics in Search of Its Evidential Base = Stud Generat Gramm Roots: Linguistics in Search of Its Evidential Base = Stud. Generat. Gramm. Roots of Mental Illness in Children = Ann Ny Acad Sci Roots of Mental Illness in Children = Ann. Ny. Acad. Sci. Roots of Visual Awareness = Prog Brain Res Roots of Visual Awareness = Prog. Brain. Res. Rorschach Research Exchange and Journal of Projective Techniques = Rorschach Res Exch J Rorschach Research Exchange and Journal of Projective Techniques = Rorschach Res. Exch. J. Rorschach Research Exchange = Rorschach Res Exch Rorschach Research Exchange = Rorschach Res. Exch. Roshni = Roshni Rosicrucian Utopia in Eighteenth-century Russia: The Masonic Circle of N.i. Novikov = Arch Int Hist Idees Rosicrucian Utopia in Eighteenth-century Russia: The Masonic Circle of N.i. Novikov = Arch. Int. Hist. Idees. Ross-ade: Their Purdue Stories, Stadium, and Legacies = Founders Ser Ross-ade: Their Purdue Stories, Stadium, and Legacies = Founders. Ser. Ross Conferences On Pediatric Research = Ross C Ped Ross Conferences On Pediatric Research = Ross C. Ped. Rossíiskaya Akademiya Nauk = Algebra i Analiz Rossíiskaya Akademiya Nauk = Avtomat. i Telemekh. Rossíiskaya Akademiya Nauk = Dinamika Sploshn. Sredy Rossíiskaya Akademiya Nauk = Dokl. Akad. Nauk Rossíiskaya Akademiya Nauk = Fiz. Atmos. Okeana Rossíiskaya Akademiya Nauk = Fiz. Zemli Rossíiskaya Akademiya Nauk = Funktsional. Anal. i Prilozhen. Rossíiskaya Akademiya Nauk = Izv. Ross. Akad. Nauk Mekh. Zhidk. Gaza Rossíiskaya Akademiya Nauk = Izv. Ross. Akad. Nauk Ser. Mat. Rossíiskaya Akademiya Nauk = Mat. Model. Rossíiskaya Akademiya Nauk = Mat. Sb. Rossíiskaya Akademiya Nauk = Mat. Zametki Rossíiskaya Akademiya Nauk = Model. Mekh. Rossíiskaya Akademiya Nauk = Optimizatsiya Rossíiskaya Akademiya Nauk = Prikl. Mat. Mekh. Rossíiskaya Akademiya Nauk = Problemy Peredachi Informatsii Rossíiskaya Akademiya Nauk = RZhMat Rossíiskaya Akademiya Nauk = Teoret. Mat. Fiz. Rossíiskaya Akademiya Nauk = Teor. Veroyatnost. i Primenen. Rossíiskaya Akademiya Nauk = Trudy Fiz. Inst. Lebedev. Rossíiskaya Akademiya Nauk = Trudy Mat. Inst. Steklov. Rossíiskaya Akademiya Nauk = Uspekhi Mat. Nauk Rossíiskaya Akademiya Nauk = Vestnik Ross. Akad. Nauk Rossíiskaya Akademiya Nauk = Voprosy Istor. Estestvoznan. i Tekhn. Rossíiskaya Akademiya Nauk = Vychisl. Sistemy Rossíiskaya Akademiya Nauk = Zap. Nauchn. Sem. S.-Peterburg. Otdel. Mat. Inst. Steklov. (POMI) Rossiiskii Fiziologicheskii Zhurnal imeni I. M. Sechenova = Ross. Fiziol. Zh. Im. I. M. Sechenova Rossiiskii Fiziologicheskii Zhurnal imeni I.M. Sechenova = Ross. Fiziol. Zh. Im. I M Sechenova Rossiiskii fiziologicheskii zhurnal imeni I.M. Sechenova / Rossiiskaia akademiia nauk = Ross Fiziol Zh Im I M Sechenova Rossiiskii gastroenterologicheskii zhurnal : ezhekvartalnyi nauchno-prakticheskii zhurnal = Ross Gastroenterol Zh Rossiiskii Khimicheskii Zhurnal = Ross. Khim. Zh. Rossiiskii meditsinskii zhurnal : organ Ministerstva zdravookhraneniia RSFSR = Ross Med Zh Rossiiskii Meditsinskii Zhurnal = Ross. Med. Zh. Rossijskaja archeologija = RossA Rossiyskaya Akademiya Nauk = Sibirsk. Mat. Zh. Ross Roundtable On Critical Approaches to Common Pediatric Problems = Ross Rt Ped Ross Roundtable On Critical Approaches to Common Pediatric Problems = Ross Rt. Ped. Rostlinna Vyroba = Rost Vyroba Rostlinna Vyroba = Rost. Vyroba Rostocker Mathematisches Kolloquium = Rostock. Math. Kolloq. Rostov in The Russian Civil War, 1917-1920: The Key to Victory = Cass Mil Stud Rostov in The Russian Civil War, 1917-1920: The Key to Victory = Cass. Mil. Stud. Rotating Machinery Dynamics = P Int Tr Ph Rotating Machinery Dynamics = P. Int. Tr. Ph. Rotating Machinery : Transport Phenomena = P Int Tr Ph Rotating Machinery : Transport Phenomena = P. Int. Tr. Ph. Rotational Isomeric State Models in Macromolecular Systems = Adv Polym Sci Rotational Isomeric State Models in Macromolecular Systems = Adv. Polym. Sci. Rotation of Sun and Stars = Lect Notes Phys Rotation of Sun and Stars = Lect. Notes. Phys. Rough Fuzzy Image Analysis: Foundations and Methodologies = Ch Crc Math Comp Ima Rough Fuzzy Image Analysis: Foundations and Methodologies = Ch. Crc. Math. Comp. Ima. Rough: Granular Computing in Knowledge Discovery and Data Mining = Stud Comput Intell Rough: Granular Computing in Knowledge Discovery and Data Mining = Stud. Comput. Intell. Rough Sets and Current Trends in Computing = Lect Notes Artif Int Rough Sets and Current Trends in Computing = Lect. Notes. Artif. Int. Rough Sets and Current Trends in Computing, Proceedings = Lect Notes Artif Int Rough Sets and Current Trends in Computing, Proceedings = Lect. Notes. Artif. Int. Rough Sets and Intelligent Systems Paradigms, Proceedings = Lect Notes Artif Int Rough Sets and Intelligent Systems Paradigms, Proceedings = Lect. Notes. Artif. Int. Rough Sets and Knowledge Technology = Lect Notes Artif Int Rough Sets and Knowledge Technology = Lect. Notes. Artif. Int. Rough Sets and Knowledge Technology, Proceedings = Lect Notes Artif Int Rough Sets and Knowledge Technology, Proceedings = Lect. Notes. Artif. Int. Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing = Lect Notes Artif Int Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing = Lect. Notes. Artif. Int. Rough Sets, Fuzzy Sets, Data Mining and Granular Computing, Proceedings = Lect Notes Artif Int Rough Sets, Fuzzy Sets, Data Mining and Granular Computing, Proceedings = Lect. Notes. Artif. Int. Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Prt 1, Proceedings = Lect Notes Artif Int Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Prt 1, Proceedings = Lect. Notes. Artif. Int. Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Pt 1, Proceedings = Lect Notes Artif Int Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Pt 1, Proceedings = Lect. Notes. Artif. Int. Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Pt 2, Proceedings = Lect Notes Artif Int Rough Sets, Fuzzy Sets, Data Mining, and Granular Computing, Pt 2, Proceedings = Lect. Notes. Artif. Int. Rough Set Theory: A True Landmark in Data Analysis = Stud Comput Intell Rough Set Theory: A True Landmark in Data Analysis = Stud. Comput. Intell. Rough Surface Scattering and Contamination = P Soc Photo-opt Ins Rough Surface Scattering and Contamination = P. Soc. Photo-opt. Ins. Roumanian archives of microbiology and immunology = Roum Arch Microbiol Immunol Roumanian Archives of Microbiology and Immunology=Roum Arch Microbiol Immunol;; Roumanian Archives of Microbiology and Immunology = Roum. Arch. Microbiol. Immunol. Round Table = Round Table Roundtable Series in Behavioral Economics = Roundtable Ser Behav Roundtable Series in Behavioral Economics = Roundtable Ser. Behav. Routing Congestion in Vlsi Circuits: Estimation and Optimization = Integr Circuit Syst Routing Congestion in Vlsi Circuits: Estimation and Optimization = Integr. Circuit. Syst. Routledge Advanced Texts in Economics and Finance = Routl Adv Texts Econ Routledge Advanced Texts in Economics and Finance = Routl. Adv. Texts Econ. Routledge Advances in American History = Routl Adv Am Hist Routledge Advances in American History = Routl. Adv. Am. Hist. Routledge Advances in Asia-pacific Studies = Routl Adv Asia-pac Routledge Advances in Asia-pacific Studies = Routl. Adv. Asia-pac. Routledge Advances in Communication and Linguistic Theory = Routl Adv Commun Lin Routledge Advances in Communication and Linguistic Theory = Routl. Adv. Commun. Lin. Routledge Advances in Corpus Linguistics = Routl Adv Corpus Lin Routledge Advances in Corpus Linguistics = Routl. Adv. Corpus Lin. Routledge Advances in Criminology = Routl Adv Criminol Routledge Advances in Criminology = Routl. Adv. Criminol. Routledge Advances in European Politics = Routl Adv Eur Polit Routledge Advances in European Politics = Routl. Adv. Eur. Polit. Routledge Advances in Experimental and Computable Economics = Routl Adv Exp Comput Routledge Advances in Experimental and Computable Economics = Routl. Adv. Exp. Comput. Routledge Advances in Feminist Studies and Intersectionality = Rout Adv Fem Stud Routledge Advances in Feminist Studies and Intersectionality = Rout. Adv. Fem. Stud. Routledge Advances in Film Studies = Routl Adv Film Stud Routledge Advances in Film Studies = Routl. Adv. Film Stud. Routledge Advances in Geography = Routl Adv Geogr Routledge Advances in Geography = Routl. Adv. Geogr. Routledge Advances in Heterodox Economics = Routl Adv Heterod Ec Routledge Advances in Heterodox Economics = Routl. Adv. Heterod. Ec. Routledge Advances in Internationalizing Media Studies = Routl Adv Int Media Routledge Advances in Internationalizing Media Studies = Routl. Adv. Int. Media Routledge Advances in International Political Economy = Routl Adv Int Polit Routledge Advances in International Political Economy = Routl. Adv. Int. Polit. Routledge Advances in International Relations and Global Politics = Rout Adv Int Rel Glo Routledge Advances in International Relations and Global Politics = Rout. Adv. Int. Rel. Glo. Routledge Advances in International Relations and Global Politics = Routl Adv Int Relat Routledge Advances in International Relations and Global Politics = Routl. Adv. Int. Relat. Routledge Advances in Korean Studies = Rout Adv Korea Studi Routledge Advances in Korean Studies = Rout. Adv. Korea. Studi. Routledge Advances in Korean Studies = Routl Adv Korean Stu Routledge Advances in Korean Studies = Routl. Adv. Korean Stu. Routledge Advances in Management and Business Studies = Rout Adv Manage Bus Routledge Advances in Management and Business Studies = Rout. Adv. Manage. Bus. Routledge Advances in Management and Business Studies = Routl Adv Manag Bus Routledge Advances in Management and Business Studies = Routl. Adv. Manag. Bus. Routledge Advances in Middle East and Islamic Studies = Routl Adv Midd E Isl Routledge Advances in Middle East and Islamic Studies = Routl. Adv. Midd. E. Isl. Routledge Advances in Research Methods = Routl Adv Res Method Routledge Advances in Research Methods = Routl. Adv. Res. Method. Routledge Advances in Social Economics = Routl Adv Soc Econ Routledge Advances in Social Economics = Routl. Adv. Soc. Econ. Routledge Advances in Sociology = Routl Adv Sociol Routledge Advances in Sociology = Routl. Adv. Sociol. Routledge Advances in Sociology = Routledge Adv Sociol Routledge Advances in Sociology = Routledge Adv. Sociol. Routledge Advances in Sociology = Rtldg Adv Soc Routledge Advances in Sociology = Rtldg. Adv. Soc. Routledge Advances in South Asian Studies = Routl Adv S Asian St Routledge Advances in South Asian Studies = Routl. Adv. S. Asian St. Routledge Advances in Theatre and Performance Studies = Routl Adv Theatr Per Routledge Advances in Theatre and Performance Studies = Routl. Adv. Theatr. Per. Routledge Advances in Theatre and Performance Studies = Routledge Adv Theatr Routledge Advances in Theatre and Performance Studies = Routledge Adv. Theatr. Routledge Advances in The History of Philosophy = Routl Adv Hist Philo Routledge Advances in The History of Philosophy = Routl. Adv. Hist. Philo. Routledge Advances in Tourism = Routl Adv Tour Routledge Advances in Tourism = Routl. Adv. Tour. Routledge African Studies = Routl Afr Stud Routledge African Studies = Routl. Afr. Stud. Routledge Annals of Bioethics = Routl Ann Bioethics Routledge Annals of Bioethics = Routl. Ann. Bioethics Routledge Applied Linguistics = Routl Appl Lingu Ser Routledge Applied Linguistics = Routl. Appl. Lingu. Ser. Routledge Arabic Linquistics Series = Routl Arab Lingu Ser Routledge Arabic Linquistics Series = Routl. Arab. Lingu. Ser. Routledge Asian Studies Association of Australia-asaa East Asia Series = Routl Asian Stud As Routledge Asian Studies Association of Australia-asaa East Asia Series = Routl. Asian Stud. As. Routledge Canada Blanch Studies On Contemporary Spain = Routl Can Blanch Stu Routledge Canada Blanch Studies On Contemporary Spain = Routl. Can. Blanch Stu. Routledge Cavendish Research in Intellectual Property = Routl Cavend Res Int Routledge Cavendish Research in Intellectual Property = Routl. Cavend. Res. Int. Routledge Challenges of Globalisation = Routl Challeng Glob Routledge Challenges of Globalisation = Routl. Challeng. Glob. Routledge City University of Hong Kong Southeast Asia Series = Routl City U Hong Ko Routledge City University of Hong Kong Southeast Asia Series = Routl. City U. Hong Ko. Routledge Communications Series = Routl Commun Ser Routledge Communications Series = Routl. Commun. Ser. Routledge Companions = Routl Companions Routledge Companions = Routl. Companions Routledge Companions to History = Routl Companion Hist Routledge Companions to History = Routl. Companion. Hist. Routledge Companion to Central and Eastern Europe Since 1919 = Routl Companion Hist Routledge Companion to Central and Eastern Europe Since 1919 = Routl. Companion Hist. Routledge Companion to Epistemology = Routl Philos Compan Routledge Companion to Epistemology = Routl. Philos. Compan. Routledge Companion to Nazi Germany = Routl Companion Hist Routledge Companion to Nazi Germany = Routl. Companion Hist. Routledge Companion to Philosophy and Film = Routl Philos Compan Routledge Companion to Philosophy and Film = Routl. Philos. Compan. Routledge Companion to Philosophy and Music = Routl Philos Compan Routledge Companion to Philosophy and Music = Routl. Philos. Compan. Routledge Companion to Philosophy of Science = Routl Philos Compan Routledge Companion to Philosophy of Science = Routl. Philos. Compan. Routledge Companion to Race and Ethnicity = Routl Companions Routledge Companion to Race and Ethnicity = Routl. Companions. Routledge Companion to Science Fiction = Routl Lit Compan Routledge Companion to Science Fiction = Routl. Lit. Compan. Routledge Companion to Translation Studies = Routl Companions Routledge Companion to Translation Studies = Routl. Companions. Routledge Concise Histories of Literature = Routl Concise Hist L Routledge Concise Histories of Literature = Routl. Concise Hist. L. Routledge Concise History of Southeast Asian Writing in English = Routl Concise Hist L Routledge Concise History of Southeast Asian Writing in English = Routl. Concise Hist. L. Routledge Contemporary Asia Series = Rout Contemp Asia Routledge Contemporary Asia Series = Rout. Contemp. Asia Routledge Contemporary Asia Series = Routl Contemp Asia Routledge Contemporary Asia Series = Routl. Contemp. Asia Routledge Contemporary Asia Series = Routledge Contemp As Routledge Contemporary Asia Series = Routledge Contemp. As. Routledge Contemporary China Series = Rout Cont China Seri Routledge Contemporary China Series = Rout. Cont. China Seri. Routledge Contemporary China Series = Routl Contemp China Routledge Contemporary China Series = Routl. Contemp. China Routledge Contemporary China Series = Routledge Contemp Ch Routledge Contemporary China Series = Routledge Contemp. Ch. Routledge Contemporary Economic Policy Issues = Rout Cont Econ Pol I Routledge Contemporary Economic Policy Issues = Rout. Cont. Econ. Pol. I. Routledge Contemporary Human Geography Series = Routl Contemp Hum Ge Routledge Contemporary Human Geography Series = Routl. Contemp. Hum. Ge. Routledge Contemporary Introductions to Philosophy = Routl Contemp Intro Routledge Contemporary Introductions to Philosophy = Routl. Contemp. Intro. Routledge Contemporary Japan Series = Rout Contemp Jap Routledge Contemporary Japan Series = Rout. Contemp. Jap. Routledge Contemporary Japan Series = Routl Contemp Jpn Se Routledge Contemporary Japan Series = Routl. Contemp. Jpn. Se. Routledge Contemporary Political Philosophy = Routl Contemp Polit Routledge Contemporary Political Philosophy = Routl. Contemp. Polit. Routledge Contemporary Readings in Philosophy = Routl Contemp Read P Routledge Contemporary Readings in Philosophy = Routl. Contemp. Read. P. Routledge Contemporary Russia and Eastern Europe Series = Rou Con Rus Eas Eu S Routledge Contemporary Russia and Eastern Europe Series = Rou. Con. Rus. Eas. Eu. S. Routledge Contemporary Russia and Eastern Europe Series = Routl Contemp Russ E Routledge Contemporary Russia and Eastern Europe Series = Routl. Contemp. Russ. E. Routledge Contemporary South Asia Series = Routl Cont S Asia Se Routledge Contemporary South Asia Series = Routl. Cont. S. Asia Se. Routledge Contemporary Southeast Asia Series = Routl Cont Se Asia S Routledge Contemporary Southeast Asia Series = Routl. Cont. Se. Asia S. Routledge Critical Introductions to Urbanism and The City = Routl Crit Intro Urb Routledge Critical Introductions to Urbanism and The City = Routl. Crit. Intro. Urb. Routledge Critical Security Studies = Routl Crit Secur Stu Routledge Critical Security Studies = Routl. Crit. Secur. Stu. Routledge Critical Studies in Buddhism = Rout Crit Stud Buddh Routledge Critical Studies in Buddhism = Rout. Crit. Stud. Buddh. Routledge Critical Studies in Buddhism = Routl Crit Stud Budd Routledge Critical Studies in Buddhism = Routl. Crit. Stud. Budd. Routledge Critical Studies in Discourse = Routl Crit Stud Disc Routledge Critical Studies in Discourse = Routl. Crit. Stud. Disc. Routledge Critical Studies in Public Management = Routl Crit Stud Publ Routledge Critical Studies in Public Management = Routl. Crit. Stud. Publ. Routledge Critical Studies in Sport = Routl Crit Stud Spor Routledge Critical Studies in Sport = Routl. Crit. Stud. Spor. Routledge Critical Studies in Tourism Business and Management = Routl Crit Stud Tour Routledge Critical Studies in Tourism Business and Management = Routl. Crit. Stud. Tour. Routledge Critical Terrorism Studies = Rout Crit Terror Routledge Critical Terrorism Studies = Rout. Crit. Terror. Routledge Critical Thinkers = Routl Crit Thinkers Routledge Critical Thinkers = Routl. Crit. Thinkers Routledge Ebusiness = Routl Ebusiness Routledge Ebusiness = Routl. Ebusiness Routledge Ecpr Studies in European Political Science = Routl Ecpr Stud Eur Routledge Ecpr Studies in European Political Science = Routl. Ecpr Stud. Eur. Routledge/ecpr Studies in European Political Science = Routledge/ecpr Stud Routledge/ecpr Studies in European Political Science = Routledge/ecpr Stud. Routledge Ecpr Studies in European Political Science = Routledge/ecpr Stud Routledge Ecpr Studies in European Political Science = Routledge/ecpr. Stud. Routledge/eui Studies in The Political Economy of The Welfare State = Rout Eui Stud Polit Routledge/eui Studies in The Political Economy of The Welfare State = Rout. Eui. Stud. Polit. Routledge Eui Studies in The Political Economy of The Welfare State = Routl Eui Stud Polit Routledge Eui Studies in The Political Economy of The Welfare State = Routl. Eui Stud. Polit. Routledge European Sociological Association Studies in European Societies = Routl Eur Sociol Ass Routledge European Sociological Association Studies in European Societies = Routl. Eur. Sociol. Ass. Routledge Explorations in Economic History = Rout Explor Routledge Explorations in Economic History = Rout. Explor. Routledge Explorations in Economic History = Routl Explor Econ Hi Routledge Explorations in Economic History = Routl. Explor. Econ. Hi. Routledge Explorations in Environmental Economics = Rout Expl Enviro Eco Routledge Explorations in Environmental Economics = Rout. Expl. Enviro. Eco. Routledge Explorations in Environmental Economics = Routl Explor Environ Routledge Explorations in Environmental Economics = Routl. Explor. Environ. Routledgefalmer Reader in Education Policy and Politics = Read Educ Routledgefalmer Reader in Education Policy and Politics = Read. Educ. Routledge Film Guidebooks = Routl Film Guidebook Routledge Film Guidebooks = Routl. Film Guidebook. Routledge Foundations of The Market Economy = Rout Found Mark Econ Routledge Foundations of The Market Economy = Rout. Found. Mark. Econ. Routledge Frontiers of Political Economy = Routledge Front Poli Routledge Frontiers of Political Economy = Routledge Front. Poli. Routledge Frontiers of Political Economy = Routl Front Polit Ec Routledge Frontiers of Political Economy = Routl. Front. Polit. Ec. Routledge Frontiers of Political Economy = Routl Fr Polit Econ Routledge Frontiers of Political Economy = Routl. Fr. Polit. Econ. Routledge Fundamentals of Physical Geography = Routl Fund Phys Routledge Fundamentals of Physical Geography = Routl. Fund. Phys. Routledge Garnet Series-europe in The World = Routl Garn Ser Eur W Routledge Garnet Series-europe in The World = Routl. Garn. Ser. Eur. W. Routledge Global Human Resource Management Series = Rout Glob Hum Resour Routledge Global Human Resource Management Series = Rout. Glob. Hum. Resour. Routledge Global Security Studies = Rout Glob Secur Stud Routledge Global Security Studies = Rout. Glob. Secur. Stud. Routledge Guides to Literature = Routledge Guides Lit Routledge Guides to Literature = Routledge Guides Lit. Routledge Guides to Using Historical Sources = Rout Guid Using Hist Routledge Guides to Using Historical Sources = Rout. Guid. Using Hist. Routledge Handbook of Emotions and Mass Media = Rout Int Handb Routledge Handbook of Emotions and Mass Media = Rout. Int. Handb. Routledge Handbook of Sports Development = Rout Int Handb Routledge Handbook of Sports Development = Rout. Int. Handb. Routledge Health Management = Routl Health Manag Routledge Health Management = Routl. Health Manag. Routledge Hindu Studies Series = Routl Hindu Stud Ser Routledge Hindu Studies Series = Routl. Hindu Stud. Ser. Routledge Historical Biographies = Routledge Hist Biogr Routledge Historical Biographies = Routledge Hist. Biogr. Routledge Historical Perspectives in Accounting = Routl Hist Persp Acc Routledge Historical Perspectives in Accounting = Routl. Hist. Persp. Acc. Routledge History of Economic Thought = Routl Hist Econ Thou Routledge History of Economic Thought = Routl. Hist. Econ. Thou. Routledge History of The Ancient World = Routl Hist Anc World Routledge History of The Ancient World = Routl. Hist. Anc. World Routledge History of World Philosophies = Rout Hist World Phil Routledge History of World Philosophies = Rout. Hist. World Phil. Routledge Iaffe Advances in Feminist Economics = Routl Iaffe Adv Fem Routledge Iaffe Advances in Feminist Economics = Routl. Iaffe Adv. Fem. Routledge Indian Ocean Series = Routl Indian Ocean S Routledge Indian Ocean Series = Routl. Indian Ocean S. Routledge Inem Advances in Economic Methodology = Routl Inem Adv Econ Routledge Inem Advances in Economic Methodology = Routl. Inem Adv. Econ. Routledge Innovations in Political Theory = Rout Innov Poli Theo Routledge Innovations in Political Theory = Rout. Innov. Poli. Theo. Routledge Innovations in Political Theory = Routl Innov Polit Th Routledge Innovations in Political Theory = Routl. Innov. Polit. Th. Routledge International Business and The World Economy = Routl Int Bus World Routledge International Business and The World Economy = Routl. Int. Bus. World Routledge International Business in Asia = Routl Int Bus Asia Routledge International Business in Asia = Routl. Int. Bus. Asia Routledge International Handbook of Contemporary Social and Political Theory = Rout Int Handb Routledge International Handbook of Contemporary Social and Political Theory = Rout. Int. Handb. Routledge International Handbooks = Rout Int Handb Routledge International Handbooks = Rout. Int. Handb. Routledge International Series in Tourism Business and Management = Rout Int Ser Tour Bu Routledge International Series in Tourism Business and Management = Rout. Int. Ser. Tour. Bu. Routledge International Studies in Business History = Rout Int Stud Bus Hi Routledge International Studies in Business History = Rout. Int. Stud. Bus. Hi. Routledge International Studies in Health Economics = Rout Int Stud Health Routledge International Studies in Health Economics = Rout. Int. Stud. Health Routledge International Studies in Money and Banking = Rout Int Stud Mon Routledge International Studies in Money and Banking = Rout. Int. Stud. Mon. Routledge International Studies in Money and Banking = Routl Int Stud Money Routledge International Studies in Money and Banking = Routl. Int. Stud. Money Routledge International Studies in The Philosophy of Education = Rout Int Stud Philos Routledge International Studies in The Philosophy of Education = Rout. Int. Stud. Philos. Routledge International Studies of Women and Place = Routl Int Stud Women Routledge International Studies of Women and Place = Routl. Int. Stud. Women Routledge Interpretive Marketing Research = Rout Interp Mark Res Routledge Interpretive Marketing Research = Rout. Interp. Mark. Res. Routledge Introductions to Applied Linguistics = Rout Introd Appl Lin Routledge Introductions to Applied Linguistics = Rout. Introd. Appl. Lin. Routledge Introductions to Environment = Routl Introd Environ Routledge Introductions to Environment = Routl. Introd. Environ. Routledge Introductions to Media and Communication = Rout Intro Media Com Routledge Introductions to Media and Communication = Rout. Intro. Media Com. Routledge Islamic Studies = Routl Islam Stud Routledge Islamic Studies = Routl. Islam. Stud. Routledge Iss Studies in Rural Livelihoods = Routl Iss St Rur Liv Routledge Iss Studies in Rural Livelihoods = Routl. Iss St. Rur. Liv. Routledge Iss Studies in Rural Livelihoods = Routl Iss Stud Rural Routledge Iss Studies in Rural Livelihoods = Routl. Iss Stud. Rural Routledge Issues in Contemporary Political Theory = Rout Iss Contemp Pol Routledge Issues in Contemporary Political Theory = Rout. Iss. Contemp. Pol. Routledge Jewish Studies Series = Routl Jew Stud Ser Routledge Jewish Studies Series = Routl. Jew. Stud. Ser. Routledge Key Guides = Routl Key Guides Routledge Key Guides = Routl. Key Guides Routledge Language Family Series = Routl Lang Fam Ser Routledge Language Family Series = Routl. Lang. Fam. Ser. Routledge Law in Asia = Routledge Law Asia Routledge Law in Asia = Rtldg Law Asia Routledge Law in Asia = Rtldg. Law Asia Routledge Leading Linguists = Routl Lead Linguists Routledge Leading Linguists = Routl. Lead. Linguists Routledge Leiden Series in Modern East Asian Politics and History = Routl Leiden Ser Mod Routledge Leiden Series in Modern East Asian Politics and History = Routl. Leiden Ser. Mod. Routledge Library Editions-friedrich Nietzsche = Rout Libr Ed-friedri Routledge Library Editions-friedrich Nietzsche = Rout. Libr. Ed-friedri. Routledge Library Editions-japan = Rout Library Ed Jpn Routledge Library Editions-japan = Rout. Library Ed. Jpn. Routledge Library Editions = Rout Libr Edition Routledge Library Editions = Rout. Libr. Edition. Routledge Literature Companions = Routl Lit Compan Routledge Literature Companions = Routl. Lit. Compan. Routledge Malaysian Studies Series = Routl Malaysian Stud Routledge Malaysian Studies Series = Routl. Malaysian Stud. Routledge Malaysian Studies Series = Rout Malays Stud Ser Routledge Malaysian Studies Series = Rout. Malays. Stud. Ser. Routledge Masters in Public Management = Rout Mast Publ Manag Routledge Masters in Public Management = Rout. Mast. Publ. Manag. Routledge Media Culture and Social Change in Asia = Routl Media Cult Soc Routledge Media Culture and Social Change in Asia = Routl. Media Cult. Soc. Routledge Media Culture and Social Change in Asia = Rout Med Cult Soc Routledge Media Culture and Social Change in Asia = Rout. Med. Cult. Soc. Routledge Medieval Casebooks = Routl Medieval Caseb Routledge Medieval Casebooks = Routl. Medieval Caseb. Routledge Modern and Contemporary Dramatists = Routl Mod Contemp Dr Routledge Modern and Contemporary Dramatists = Routl. Mod. Contemp. Dr. Routledge Monographs in Classical Studies = Routl Monogr Class S Routledge Monographs in Classical Studies = Routl. Monogr. Class. S. Routledge Music and Screen Media Series = Rout Mus Screen Med Routledge Music and Screen Media Series = Rout. Mus. Screen Med. Routledge New Works in Accounting History = Routl New Works Acct Routledge New Works in Accounting History = Routl. New Works Acct. Routledge Pacific Rim Geographies = Routl Pac Rim Geogr Routledge Pacific Rim Geographies = Routl. Pac. Rim Geogr. Routledge Performance Practitioners = Routl Perform Pract Routledge Performance Practitioners = Routl. Perform. Pract. Routledge Perspectives On Development = Routl Perspect Dev Routledge Perspectives On Development = Routl. Perspect. Dev. Routledge Philosophers = Routl Philos Routledge Philosophers = Routl. Philos. Routledge Philosophy Companion = Routl Philos Compan Routledge Philosophy Companion = Routl. Philos. Compan. Routledge Philosophy Guidebooks = Routl Philos Guideb Routledge Philosophy Guidebooks = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Aristotle and The Politics = Routl Philos Guideb Routledge Philosophy Guidebook to Aristotle and The Politics = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Derrida On Deconstruction = Routl Philos Guideb Routledge Philosophy Guidebook to Derrida On Deconstruction = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Hobbes and Leviathan = Routl Philos Guideb Routledge Philosophy Guidebook to Hobbes and Leviathan = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Kant On Judgment = Routl Philos Guideb Routledge Philosophy Guidebook to Kant On Judgment = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Nietzsche On Art = Routl Philos Guideb Routledge Philosophy Guidebook to Nietzsche On Art = Routl. Philos. Guideb. Routledge Philosophy Guidebook to Rorty and The Mirror of Nature = Routl Philos Guideb Routledge Philosophy Guidebook to Rorty and The Mirror of Nature = Routl. Philos. Guideb. Routledge Physical Environment Series = Rout Phys E Routledge Physical Environment Series = Rout. Phys. E. Routledge Political Economy of The Middle East and North Africa = Routl Polit Econ Mid Routledge Political Economy of The Middle East and North Africa = Routl. Polit. Econ. Mid. Routledge Political Economy of The Middle East and North Africa Series = Rout Polit Econ Mid Routledge Political Economy of The Middle East and North Africa Series = Rout. Polit. Econ. Mid. Routledge Priorities in Development Economics = Routl Prior Dev Econ Routledge Priorities in Development Economics = Routl. Prior. Dev. Econ. Routledge Psychosocial Stress Series = Rout Psychsoc Stress Routledge Psychosocial Stress Series = Rout. Psychsoc. Stress Routledge Research in American Politics = Routl Res Am Polit Routledge Research in American Politics = Routl. Res. Am. Polit. Routledge Research in Comparative Politics = Routl Res Comp Polit Routledge Research in Comparative Politics = Routl. Res. Comp. Polit. Routledge Research in Comparative Politics = Rout Res Comp Poli Routledge Research in Comparative Politics = Rout. Res. Comp. Poli. Routledge Research in Competition Law = Routl Res Compet Law Routledge Research in Competition Law = Routl. Res. Compet. Law Routledge Research in Cultural and Media Studies = Routl Res Cult Media Routledge Research in Cultural and Media Studies = Routl. Res. Cult. Media Routledge Research in Cultural and Media Studies = Rout Res Cult Med St Routledge Research in Cultural and Media Studies = Rout. Res. Cult. Med. St. Routledge Research in Education = Routl Res Educ Routledge Research in Education = Routl. Res. Educ. Routledge Research in Employment Relations = Routl Res Employ Rel Routledge Research in Employment Relations = Routl. Res. Employ. Rel. Routledge Research in Environmental Politics = Rout Res Environ Pol Routledge Research in Environmental Politics = Rout. Res. Environ. Pol. Routledge Research in Eu Law = Routledge Res Eu Law Routledge Research in Eu Law = Routledge Res. Eu Law Routledge Research in Gender and History = Routl Res Gender Hi Routledge Research in Gender and History = Routl. Res. Gender Hi. Routledge Research in Gender and History = Routl Res Gend Hist Routledge Research in Gender and History = Routl. Res. Gend. Hist. Routledge Research in Gender and Society = Routl Res Gend Soc Routledge Research in Gender and Society = Routl. Res. Gend. Soc. Routledge Research in Human Rights Law = Rout Res Hum Rts Law Routledge Research in Human Rights Law = Rout. Res. Hum. Rts. Law Routledge Research in Human Rights = Routl Res Hum Rights Routledge Research in Human Rights = Routl. Res. Hum. Rights Routledge Research in Information Technology and Society = Rout Res Inf Technol Routledge Research in Information Technology and Society = Rout. Res. Inf. Technol. Routledge Research in Intellectual Property = Rout Res Intell Prop Routledge Research in Intellectual Property = Rout. Res. Intell. Prop. Routledge Research in International Law = Routl Res Int Law Routledge Research in International Law = Routl. Res. Int. Law Routledge Research in Journalism = Rout Res Journalism Routledge Research in Journalism = Rout. Res. Journalism Routledge Research in Organizational Behaviour and Strategy = Routl Res Organ Beh Routledge Research in Organizational Behaviour and Strategy = Routl. Res. Organ. Beh. Routledge Research in Political Communication = Routl Res Polit Comm Routledge Research in Political Communication = Routl. Res. Polit. Comm. Routledge Research in Population and Migration = Routl Res Popul Migr Routledge Research in Population and Migration = Routl. Res. Popul. Migr. Routledge Research in Postcolonial Literatures = Rout Res Postcol Lit Routledge Research in Postcolonial Literatures = Rout. Res. Postcol. Lit. Routledge Research in Race and Ethnicity = Routl Res Race Ethn Routledge Research in Race and Ethnicity = Routl. Res. Race Ethn. Routledge Research in Sport Culture and Society = Routl Res Sport Cult Routledge Research in Sport Culture and Society = Routl. Res. Sport Cult. Routledge Research in Terrorism and The Law = Routl Res Terror Law Routledge Research in Terrorism and The Law = Routl. Res. Terror. Law Routledge Research in Travel Writing = Routl Res Trav Writ Routledge Research in Travel Writing = Routl. Res. Trav. Writ. Routledge Research On Gender in Asia Series = Routl Res Gend Asia Routledge Research On Gender in Asia Series = Routl. Res. Gend. Asia Routledge Research On Public and Social Policy in Asia = Rout Res Pub Soc Pol Routledge Research On Public and Social Policy in Asia = Rout. Res. Pub. Soc. Pol. Routledge Research On Taiwan Series = Routledge Res Taiwan Routledge Research On Taiwan Series = Routledge Res. Taiwan Routledge Revivals = Routledge Revivals Routledge Security in Asia-pacific Series = Routl Secur Asia-pac Routledge Security in Asia-pacific Series = Routl. Secur. Asia-pac. Routledge Security in Asia Series = Routl Secur Asia Ser Routledge Security in Asia Series = Routl. Secur. Asia Ser. Routledge Series in Federal Studies = Routl Ser Fed Stud Routledge Series in Federal Studies = Routl. Ser. Fed. Stud. Routledge Series in Information Systems = Routl Ser Inform Sys Routledge Series in Information Systems = Routl. Ser. Inform. Sys. Routledge Series On Counseling With Boys and Men = Rout Ser Counsel Routledge Series On Counseling With Boys and Men = Rout. Ser. Counsel. Routledge Series On Geography and Enviroment = Rout S Geog Routledge Series On Geography and Enviroment = Rout. S. Geog. Routledge Series On Industrial Development Policy = Rout S Ind Routledge Series On Industrial Development Policy = Rout. S. Ind. Routledge Siena Studies in Political Economy = Routl Siena Stud Pol Routledge Siena Studies in Political Economy = Routl. Siena Stud. Pol. Routledge Sourcebooks for The Ancient World = Routl Sourceb Anc Wo Routledge Sourcebooks for The Ancient World = Routl. Sourceb. Anc. Wo. Routledge South Asian Religion Series = Routl S Asian Relig Routledge South Asian Religion Series = Routl. S. Asian Relig. Routledge Studies in Accounting = Routl Stud Account Routledge Studies in Accounting = Routl. Stud. Account. Routledge Studies in Ancient History = Rout Stud Anc Hist Routledge Studies in Ancient History = Rout. Stud. Anc. Hist. Routledge Studies in Anthropology = Routl Stud Anthropol Routledge Studies in Anthropology = Routl. Stud. Anthropol. Routledge Studies in Asian Linguistics = Rout Stud Asian Ling Routledge Studies in Asian Linguistics = Rout. Stud. Asian Ling. Routledge Studies in Business Ethics = Routl Stud Bus Ethic Routledge Studies in Business Ethics = Routl. Stud. Bus. Ethic. Routledge Studies in Business Organisations and Networks = Routl Stud Bus Organ Routledge Studies in Business Organisations and Networks = Routl. Stud. Bus. Organ. Routledge Studies in Business Organisations and Networks = Rtldg Stud Bus Routledge Studies in Business Organisations and Networks = Rtldg. Stud. Bus. Routledge Studies in Complexity and Management = Routl Stud Complex M Routledge Studies in Complexity and Management = Routl. Stud. Complex. M. Routledge Studies in Computer Assisted Learning Language = Rout Stud Comp Assis Routledge Studies in Computer Assisted Learning Language = Rout. Stud. Comp. Assis. Routledge Studies in Contemporary Literature = Rout Stud Contemp Li Routledge Studies in Contemporary Literature = Rout. Stud. Contemp. Li. Routledge Studies in Contemporary Philosophy = Rout Stud Contemp Ph Routledge Studies in Contemporary Philosophy = Rout. Stud. Contemp. Ph. Routledge Studies in Corporate Governance = Rout Stud Corpor Gov Routledge Studies in Corporate Governance = Rout. Stud. Corpor. Gov. Routledge Studies in Critical Realism = Routl Stud Crit Real Routledge Studies in Critical Realism = Routl. Stud. Crit. Real. Routledge Studies in Cultural History = Routl Stud Cult Hist Routledge Studies in Cultural History = Routl. Stud. Cult. Hist. Routledge Studies in Cultural History = Rout Stud Cult Hist Routledge Studies in Cultural History = Rout. Stud. Cult. Hist. Routledge Studies in Defense and Peace Economics = Rout Stud Defen Peac Routledge Studies in Defense and Peace Economics = Rout. Stud. Defen. Peac. Routledge Studies in Development and Society = Routl Stud Dev Soc Routledge Studies in Development and Society = Routl. Stud. Dev. Soc. Routledge Studies in Development Economics = Routl Stud Dev Econ Routledge Studies in Development Economics = Routl. Stud. Dev. Econ. Routledge Studies in Development Economics = Rout Stud Dev Econ Routledge Studies in Development Economics = Rout. Stud. Dev. Econ. Routledge Studies in Ecological Economics = Routl Stud Ecol Econ Routledge Studies in Ecological Economics = Routl. Stud. Ecol. Econ. Routledge Studies in Economic Geography = Routl Stud Econ Geog Routledge Studies in Economic Geography = Routl. Stud. Econ. Geog. Routledge Studies in Education and Neoliberalism = Routl Stud Educ Neol Routledge Studies in Education and Neoliberalism = Routl. Stud. Educ. Neol. Routledge Studies in Education and Society in Asia = Rout Stud Edu Soc Routledge Studies in Education and Society in Asia = Rout. Stud. Edu. Soc. Routledge Studies in Eighteenth Century Literature = Rout St Eight Cn Lit Routledge Studies in Eighteenth Century Literature = Rout. St. Eight. Cn. Lit. Routledge Studies in Eighteenth Century Philosophy = Rout St Eight Cn Phi Routledge Studies in Eighteenth Century Philosophy = Rout. St. Eight. Cn. Phi. Routledge Studies in Employment and Work Relations in Context = Routl Stud Employ Wo Routledge Studies in Employment and Work Relations in Context = Routl. Stud. Employ. Wo. Routledge Studies in Ethics and Moral Theory = Routl Stud Eth Moral Routledge Studies in Ethics and Moral Theory = Routl. Stud. Eth. Moral Routledge Studies in Ethics and Moral Theory = Rout Stud Ethics Mor Routledge Studies in Ethics and Moral Theory = Rout. Stud. Ethics Mor. Routledge Studies in Ethnomusicology = Routl Stud Ethnomus Routledge Studies in Ethnomusicology = Routl. Stud. Ethnomus. Routledge Studies in Extremism and Democracy = Rout Stud Extrem Dem Routledge Studies in Extremism and Democracy = Rout. Stud. Extrem. Dem. Routledge Studies in Germanic Linguistics = Routl Stud Ger Ling Routledge Studies in Germanic Linguistics = Routl. Stud. Ger. Ling. Routledge Studies in Germanic Linguistics = Rout Stud German Lin Routledge Studies in Germanic Linguistics = Rout. Stud. German. Lin. Routledge Studies in Global Competition = Routl Stud Glob Comp Routledge Studies in Global Competition = Routl. Stud. Glob. Comp. Routledge Studies in Global Competition = Rout St Glob Compet Routledge Studies in Global Competition = Rout. St. Glob. Compet. Routledge Studies in Governance and Change in The Global Era = Rout Stud Governance Routledge Studies in Governance and Change in The Global Era = Rout. Stud. Governance Routledge Studies in Governance and Public Policy = Routl Stud Gov Publ Routledge Studies in Governance and Public Policy = Routl. Stud. Gov. Publ. Routledge Studies in Health and Social Welfare = Rout Stud Hlth Soc W Routledge Studies in Health and Social Welfare = Rout. Stud. Hlth. Soc. W. Routledge Studies in Human Geography = Routl Stud Hum Geogr Routledge Studies in Human Geography = Routl. Stud. Hum. Geogr. Routledge Studies in Human Geography = Rout Stud Human Geog Routledge Studies in Human Geography = Rout. Stud. Human Geog. Routledge Studies in Human Resource Development = Routl Stud Hum Resou Routledge Studies in Human Resource Development = Routl. Stud. Hum. Resou. Routledge Studies in Innovation Organization and Technology = Rout Stud Innov Org Routledge Studies in Innovation Organization and Technology = Rout. Stud. Innov. Org. Routledge Studies in International Business and The World Economy = Routl Stud Int Bus W Routledge Studies in International Business and The World Economy = Routl. Stud. Int. Bus. W. Routledge Studies in International Business and The World Economy = Rout Stud Int Bus Routledge Studies in International Business and The World Economy = Rout. Stud. Int. Bus. Routledge Studies in International Law = Routl Stud Int Law Routledge Studies in International Law = Routl. Stud. Int. Law Routledge Studies in Intervention and Statebuilding = Rout Stud Interv Sta Routledge Studies in Intervention and Statebuilding = Rout. Stud. Interv. Sta. Routledge Studies in Latin American Politics = Rout Stud Lat Am Pol Routledge Studies in Latin American Politics = Rout. Stud. Lat. Am. Pol. Routledge Studies in Law Society and Popular Culture = Routl Stud Law Soc Routledge Studies in Law Society and Popular Culture = Routl. Stud. Law Soc. Routledge Studies in Liberty and Security = Routl Stud Lib Secur Routledge Studies in Liberty and Security = Routl. Stud. Lib. Secur. Routledge Studies in Library and Information Science = Rout Stud Lib Inform Routledge Studies in Library and Information Science = Rout. Stud. Lib. Inform. Routledge Studies in Linguistics = Routl Stud Linguist Routledge Studies in Linguistics = Routl. Stud. Linguist. Routledge Studies in Literacy = Routl Stud Literacy Routledge Studies in Literacy = Routl. Stud. Literacy Routledge Studies in Management Organizations and Society = Routl Stud Manag Org Routledge Studies in Management Organizations and Society = Routl. Stud. Manag. Org. Routledge Studies in Medieval Religion and Culture = Rout St Mediev Rel Routledge Studies in Medieval Religion and Culture = Rout. St. Mediev. Rel. Routledge Studies in Medieval Religion and Culture = Rout Stud Mediev Rel Routledge Studies in Medieval Religion and Culture = Rout. Stud. Mediev. Rel. Routledge Studies in Middle Eastern Economies = Rout Stud Mid E Econ Routledge Studies in Middle Eastern Economies = Rout. Stud. Mid. E. Econ. Routledge Studies in Middle Eastern History = Rout Stud Mid E Hist Routledge Studies in Middle Eastern History = Rout. Stud. Mid. E. Hist. Routledge Studies in Middle Eastern Literatures = Routl Stud Mid E Lit Routledge Studies in Middle Eastern Literatures = Routl. Stud. Mid. E. Lit. Routledge Studies in Middle Eastern Politics = Routl Stud Mid E Pol Routledge Studies in Middle Eastern Politics = Routl. Stud. Mid. E. Pol. Routledge Studies in Modern European History = Routl Stud Mod Eur H Routledge Studies in Modern European History = Routl. Stud. Mod. Eur. H. Routledge Studies in Modern History = Routl Stud Mod Hist Routledge Studies in Modern History = Routl. Stud. Mod. Hist. Routledge Studies in Modern History = Rout Stud Mod Hist Routledge Studies in Modern History = Rout. Stud. Mod. Hist. Routledge Studies in Multimodality = Routl Stud Multimod Routledge Studies in Multimodality = Routl. Stud. Multimod. Routledge Studies in Nationalism and Ethnicity = Routl Stud Nat Ethn Routledge Studies in Nationalism and Ethnicity = Routl. Stud. Nat. Ethn. Routledge Studies in New Media and Cyberculture = Routl Stud New Media Routledge Studies in New Media and Cyberculture = Routl. Stud. New Media Routledge Studies in Nineteenth Century Literature = Routl Stud Ninet Cen Routledge Studies in Nineteenth Century Literature = Routl. Stud. Ninet. Cen. Routledge Studies in North American Politics = Rout Stud N Am Polit Routledge Studies in North American Politics = Rout. Stud. N. Am. Polit. Routledge Studies in Organization and Systems = Routl Stud Org Syst Routledge Studies in Organization and Systems = Routl. Stud. Org. Syst. Routledge Studies in Peace and Conflict Resolution = Routl Stud Peace Con Routledge Studies in Peace and Conflict Resolution = Routl. Stud. Peace Con. Routledge Studies in Physical Geography and Environment = Routl Stud Phys Geog Routledge Studies in Physical Geography and Environment = Routl. Stud. Phys. Geog. Routledge Studies in Political Islam = Routl Stud Pol Islam Routledge Studies in Political Islam = Routl. Stud. Pol. Islam Routledge Studies in Public Health = Rout Stud Pub Hlth Routledge Studies in Public Health = Rout. Stud. Pub. Hlth. Routledge Studies in Religion = Routl Stud Relig Routledge Studies in Religion = Routl. Stud. Relig. Routledge Studies in Renaissance Literature and Culture = Rout Stud Renais Lit Routledge Studies in Renaissance Literature and Culture = Rout. Stud. Renais. Lit. Routledge Studies in Rhetoric and Communication = Routl Stud Rhet Comm Routledge Studies in Rhetoric and Communication = Routl. Stud. Rhet. Comm. Routledge Studies in Romanticism = Routl Stud Romantic Routledge Studies in Romanticism = Routl. Stud. Romantic. Routledge Studies in Science Technology and Society = Routledge Stud Sci T Routledge Studies in Science Technology and Society = Routledge Stud. Sci. T. Routledge Studies in Science Technology and Society = Rout Stud Sci Tech Routledge Studies in Science Technology and Society = Rout. Stud. Sci. Tech. Routledge Studies in Seventeenth-century Philosophy = Routledge Stud Seven Routledge Studies in Seventeenth-century Philosophy = Routledge Stud. Seven. Routledge Studies in Shakespeare = Routl Stud Shakespea Routledge Studies in Shakespeare = Routl. Stud. Shakespea. Routledge Studies in Small Business = Routl Stud Small Bus Routledge Studies in Small Business = Routl. Stud. Small Bus. Routledge Studies in Social and Political Thought = Routl Stud Soc Polit Routledge Studies in Social and Political Thought = Routl. Stud. Soc. Polit. Routledge Studies in Social and Political Thought = Rout Stud Soc Polit Routledge Studies in Social and Political Thought = Rout. Stud. Soc. Polit. Routledge Studies in Sociolinguistics = Routl Stud Socioling Routledge Studies in Sociolinguistics = Routl. Stud. Socioling. Routledge Studies in South Asian History = Rout Stud S Asia His Routledge Studies in South Asian History = Rout. Stud. S. Asia. His. Routledge Studies in Tantric Traditions = Routledge Stud Tantr Routledge Studies in Tantric Traditions = Routledge Stud. Tantr. Routledge Studies in Technology Work and Organisations = Routledge Stud Techn Routledge Studies in Technology Work and Organisations = Routledge Stud. Techn. Routledge Studies in The Arab-israeli Conflict = Routl Stud Arab-isr Routledge Studies in The Arab-israeli Conflict = Routl. Stud. Arab-isr. Routledge Studies in The Early History of Asia = Routledge Stud Early Routledge Studies in The Early History of Asia = Routledge Stud. Early Routledge Studies in The European Economy = Routl Stud Eur Econ Routledge Studies in The European Economy = Routl. Stud. Eur. Econ. Routledge Studies in The Growth Economies of Asia = Routledge Stud Growt Routledge Studies in The Growth Economies of Asia = Routledge Stud. Growt. Routledge Studies in The History of Economics = Routl Stud Hist Econ Routledge Studies in The History of Economics = Routl. Stud. Hist. Econ. Routledge Studies in The History of Economics = Rout St Hist Econ Routledge Studies in The History of Economics = Rout. St. Hist. Econ. Routledge Studies in The History of Iran and Turkey = Rout Stud Hist Iran Routledge Studies in The History of Iran and Turkey = Rout. Stud. Hist. Iran Routledge Studies in The History of Russia and Eastern Europe = Routl Stud Hist Russ Routledge Studies in The History of Russia and Eastern Europe = Routl. Stud. Hist. Russ. Routledge Studies in The History of Science Technology and Medicine = Routl St Hist Sci Te Routledge Studies in The History of Science Technology and Medicine = Routl. St. Hist. Sci. Te. Routledge Studies in The Management of Voluntary and Non-profit Organizations = Routl Stud Man Volun Routledge Studies in The Management of Voluntary and Non-profit Organizations = Routl. Stud. Man. Volun. Routledge Studies in The Modern History of Asia = Routl Stud Mod Hist Routledge Studies in The Modern History of Asia = Routl. Stud. Mod. Hist. Routledge Studies in The Modern History of Asia = Rout St Mod Hist Asi Routledge Studies in The Modern History of Asia = Rout. St. Mod. Hist. Asi. Routledge Studies in The Modern World Economy = Routl Stud Mod World Routledge Studies in The Modern World Economy = Routl. Stud. Mod. World Routledge Studies in The Modern World Economy = Rout Stud Mod Wor Routledge Studies in The Modern World Economy = Rout. Stud. Mod. Wor. Routledge Studies in The Philosophy of Religion = Rout Stud Philos Rel Routledge Studies in The Philosophy of Religion = Rout. Stud. Philos. Rel. Routledge Studies in The Philosophy of Science = Rout Stu Philos Sci Routledge Studies in The Philosophy of Science = Rout. Stu. Philos. Sci. Routledge Studies in The Social History of Medicine = Routl Stud Soc Hist Routledge Studies in The Social History of Medicine = Routl. Stud. Soc. Hist. Routledge Studies in Twentieth-century Literature = Rout Stud Tw Cen Lit Routledge Studies in Twentieth-century Literature = Rout. Stud. Tw. Cen. Lit. Routledge Studies in Twentieth-century Philosophy = Rout Stud Tw Cen Phi Routledge Studies in Twentieth-century Philosophy = Rout. Stud. Tw. Cen. Phi. Routledge Studies in Twentieth-century Philosophy = Rout Stud Twent Routledge Studies in Twentieth-century Philosophy = Rout. Stud. Twent. Routledge Studies in Us Foreign Policy = Rout Stud Us For Pol Routledge Studies in Us Foreign Policy = Rout. Stud. Us For. Pol. Routledge Studies On China in Transition = Routledge Stud China Routledge Studies On China in Transition = Routledge Stud. China Routledge Studies On China in Transition = Rout Stud China Tran Routledge Studies On China in Transition = Rout. Stud. China Tran. Routledge Studies On Civil Society = Routl Stud Civil Soc Routledge Studies On Civil Society = Routl. Stud. Civil Soc. Routledge Studies On Democratising Europe = Rout Stud Democr Eur Routledge Studies On Democratising Europe = Rout. Stud. Democr. Eur. Routledge Studies On The Arab Israeli Conflict = Routl Stud Arab Isr Routledge Studies On The Arab Israeli Conflict = Routl. Stud. Arab Isr. Routledge Studies On The Chinese Economy = Routl Stud Chin Econ Routledge Studies On The Chinese Economy = Routl. Stud. Chin. Econ. Routledge Studies On The Chinese Economy = Rout Stud Chin Econ Routledge Studies On The Chinese Economy = Rout. Stud. Chin. Econ. Routledge Sufi Series = Routledge Sufi Ser Routledge Sufi Series = Routledge Sufi Ser. Routledge Transnational Crime and Corruption = Routl Transnat Crime Routledge Transnational Crime and Corruption = Routl. Transnat. Crime Routledge Transnational Perspectives On American Literature = Routl Transnat Persp Routledge Transnational Perspectives On American Literature = Routl. Transnat. Persp. Routledge Uaces Contemporary European Studies = Routl Uaces Contemp Routledge Uaces Contemporary European Studies = Routl. Uaces Contemp. Routledge Unrisd Research in Gender and Development = Routl Unrisd Res Gen Routledge Unrisd Research in Gender and Development = Routl. Unrisd Res. Gen. Routledge Urban Reader Series = Rout Urb Read Ser Routledge Urban Reader Series = Rout. Urb. Read. Ser. Routledge Warwick Studies in Globalisation = Routl Warw Stud Glob Routledge Warwick Studies in Globalisation = Routl. Warw. Stud. Glob. Routledge/warwick Studies in Globalisation = Warw St Global Routledge/warwick Studies in Globalisation = Warw. St. Global. Routledge Warwick Studies in Globalisation = Warw St Global Routledge Warwick Studies in Globalisation = Warw. St. Global. Routledge Worlds = Routledge Worlds Rouxs Archives of Developmental Biology = Roux Arch Dev Biol Rouxs Archives of Developmental Biology = Roux. Arch. Dev. Biol. Roxie: Routine for The Optimization of Magnet X-sections, Inverse Field Calculation and Coil End Design = Cern Report Roxie: Routine for The Optimization of Magnet X-sections, Inverse Field Calculation and Coil End Design = Cern. Report. Royal Asiatic Society Books = Roy Asiat Soc Books Royal Asiatic Society Books = Roy. Asiat. Soc. Books Royal Brompton Reviews On Diseases of The Heart and Lung = Roy Brom R Royal Brompton Reviews On Diseases of The Heart and Lung = Roy. Brom. R. Royal Canadian Dental Corps Quarterly = R. Can. Dent. Corps Q. Royal Hunt in Eurasian History = Encounters Asia Royal Hunt in Eurasian History = Encounters. Asia. Royal Institute of Chemistry, Lecture Series = R. Inst. Chem. Lect. Ser. Royal Institute of Chemistry, Lectures, Monographs, and Reports = R. Inst. Chem. Lect. Monogr. Rep. Royal Institute of Chemistry, Reviews = R. Inst. Chem. Rev. Royal Institute of Philosophy Lecture Series = Roy Inst Ph Royal Institute of Philosophy Lecture Series = Roy. Inst. Ph. Royal Institute of Philosophy Supplement = Roy. Inst. Philos. Suppl. Royal Institute of Philosophy Supplement = Roy I Ph S Royal Institute of Philosophy Supplement = Roy. I. Ph. S. Royal Institute of Philosophy Supplements = Roy I Philos Suppl Royal Institute of Philosophy Supplements = Roy. I. Philos. Suppl. Royal Institute of Public Health and Hygiene Journal = R. Inst. Public Health Hyg. J. Royalist Identities = Early Mod Lit Hist Royalist Identities = Early. Mod. Lit. Hist. Royal Kinship: Anglo-german Family Networks 1815-1918 = Prinz-albert-forsch Royal Kinship: Anglo-german Family Networks 1815-1918 = Prinz-albert-forsch. Royal Navy and Anti-submarine Warfare, 1917-49 = Cass Ser Nav Policy Royal Navy and Anti-submarine Warfare, 1917-49 = Cass. Ser. Nav. Policy. Royal Navy's Home Fleet in World War Ii = Stud Mil Strateg His Royal Navy's Home Fleet in World War Ii = Stud. Mil. Strateg. His. Royal Priesthood? = Scripture Hermeneut Royal Priesthood? = Scripture. Hermeneut. Royal Society of Chemistry Special Publications = Roy Soc Ch Royal Society of Chemistry Special Publications = Roy. Soc. Ch. Royal Society of Health Journal = Roy Soc Health J Royal Society of Health Journal = Roy. Soc. Health J. Royal Society of Health journal = R Soc Health J Royal Society of Health Journal = R. Soc. Health J. Royal Society of Medicine Gold Medal for Nutrition 1999 = Roy Soc Med Int Cong Royal Society of Medicine Gold Medal for Nutrition 1999 = Roy. Soc. Med. Int. Cong. Royal Society of Medicine International Congress and Symposium Series = Roy Soc Med Int Cong Royal Society of Medicine International Congress and Symposium Series = Roy. Soc. Med. Int. Cong. Royal Society of Medicine Services Round Table Series = Roy S Med S Royal Society of Medicine Services Round Table Series = Roy. S. Med. S. Royal Society Series On Advances in Science = Roy Soc Ser Adv Sci Royal Society Series On Advances in Science = Roy. Soc. Ser. Adv. Sci. Royal Statistical Society Lecture Note Series = Roy. Statist. Soc. Lecture Note Ser. Rozhledy v chirurgii : mesicnik Ceskoslovenske chirurgicke spolecnosti = Rozhl Chir Rozhledy v Chirurgii = Rozhl. Chir. Rozhledy V Chirurgii=Rozhl Chir;; Rozhledy v tuberkulose = Rozhl Tuberk Rozprawy Monografie = Rozpr. Monogr. Rozprawy Wydzialu Nauk Medycznych = Rozpr Wydz Nauk Med Rozprawy Wydzialu Nauk Medycznych = Rozpr. Wydz. Nauk Med. R-process: The Astrophysical Origin of The Heavy Elements and Related Rare Isotope Accelerator Physics = Proc Inst Nucl Theor R-process: The Astrophysical Origin of The Heavy Elements and Related Rare Isotope Accelerator Physics = Proc. Inst. Nucl. Theor. Rq = Rq R-rhumatologie Reumatologia Rheumatology = R-rhumatol Reuma Rhe R-rhumatologie Reumatologia Rheumatology = R-rhumatol. Reuma. Rhe. Rsc Analytical Spectroscopy Monographs = Rsc Anal Spectrosc M Rsc Analytical Spectroscopy Monographs = Rsc Anal. Spectrosc. M. Rsc Analytical Spectroscopy Monographs = Rsc Ana S M Rsc Analytical Spectroscopy Monographs = Rsc Ana. S. M. Rsc Biomolecular Sciences = Rsc Biomol Sci Rsc Biomolecular Sciences = Rsc Biomol. Sci. Rsc Catalysis Series = Rsc Catal Ser Rsc Catalysis Series = Rsc Catal. Ser. Rsc Chromatography Monographs = Rsc Chromatogr Monog Rsc Chromatography Monographs = Rsc Chromatogr. Monog. Rsc Drug Discovery = Rsc Drug Discov Rsc Drug Discovery = Rsc Drug Discov. Rsc Energy and Environment Series = Rsc Energy Environ S Rsc Energy and Environment Series = Rsc Energy Environ. S. Rsc Energy Series = Rsc Energy Ser Rsc Energy Series = Rsc Energy Ser. Rsc Food Analysis Monographs = Rsc Food Anal Monogr Rsc Food Analysis Monographs = Rsc Food Anal. Monogr. Rsc Green Chemistry Series = Rsc Green Chem Ser Rsc Green Chemistry Series = Rsc Green Chem. Ser. Rsc Materials Monographs = Rsc Mater Monogr Rsc Materials Monographs = Rsc Mater. Monogr. Rsc Nanoscience and Nanotechnology = Rsc Nanosci Nanotech Rsc Nanoscience and Nanotechnology = Rsc Nanosci. Nanotech. Rsc Paperbacks = Rsc Paperb Rsc Paperbacks = Rsc Paperb. Rsc Theoretical and Computational Chemistry Series = Rsc Theor Comput Che Rsc Theoretical and Computational Chemistry Series = Rsc Theor. Comput. Che. Rs Ophiuchi (2006) and The Recurrent Nova Phenomenon = Astr Soc P Rs Ophiuchi (2006) and The Recurrent Nova Phenomenon = Astr. Soc. P. Rsp 2007: 18th Ieee/ifip International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot Rsp 2007: 18th Ieee/ifip International Workshop On Rapid System Prototyping, Proceedings = P. Ieee. Rap. Syst. Prot. Rsp 2008: 19th Ieee/ifip International Symposium On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot Rsp 2008: 19th Ieee/ifip International Symposium On Rapid System Prototyping, Proceedings = P. Ieee. Rap. Syst. Prot. Rsp 2009: Twentieth Ieee/ifip International Symposium On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot Rsp 2009: Twentieth Ieee/ifip International Symposium On Rapid System Prototyping, Proceedings = P. Ieee. Rap. Syst. Prot. R & S report. Hawaii. Dept. of Health. Research and Statistics Office = R S Rep RSR. Reference services review = Ref Serv Rev R Through Excel: A Spreadsheet Interface for Statistics, Data Analysis, and Graphics = Use R R Through Excel: A Spreadsheet Interface for Statistics, Data Analysis, and Graphics = Use. R Rt-pcr Protocols, Second Edition = Methods Mol Biol Rt-pcr Protocols, Second Edition = Methods. Mol. Biol. Rtpi Library Series = Rtpi Lib Ser Rtpi Library Series = Rtpi Lib. Ser. Rtss 2005: 26th Ieee International Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P Rtss 2005: 26th Ieee International Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. Rtss: 2008 Real-time Systems Symposium, Proceedings = Real Tim Syst Symp P Rtss: 2008 Real-time Systems Symposium, Proceedings = Real. Tim. Syst. Symp. P. Rubato Composer Music Software: Component-based Implementation of A Functorial Concept Architecture = Comput Music Sci Rubato Composer Music Software: Component-based Implementation of A Functorial Concept Architecture = Comput. Music Sci. Rubber Age = Rubber Age Rubber and Plastics Age = Rubber Plast Age Rubber and Plastics Age = Rubber Plast. Age Rubber Chemistry and Technology = Rubber Chem Technol Rubber Chemistry and Technology = Rubber Chem. Technol. Rubber World = Rubber World Ruch prawniczy, ekonomiczny i socjologiczny (1962) = Ruch Praw Ekon Socjol Ruckerstattung Der Nazi-beute = Schrift Kulturgut Ruckerstattung Der Nazi-beute = Schrift. Kulturgut. Rudiae: ricerche sul mondo classico = Rudiae Rudiae. Ricerche sul mondo classico = Rudiae Rudolf Laban = Routl Perform Pract Rudolf Laban = Routl. Perform. Pract. Rudolstadter Heimathefte = Rudolstaedter Heimath Rudyard Kipling: A Literary Life = Lit Lives Rudyard Kipling: A Literary Life = Lit. Lives. Rugged Free Energy Landscapes = Lect Notes Phys Rugged Free Energy Landscapes = Lect. Notes. Phys. Rule Extraction From Support Vector Machines = Stud Comput Intell Rule Extraction From Support Vector Machines = Stud. Comput. Intell. Rule Interchange and Applications, Proceedings = Lect Notes Comput Sc Rule Interchange and Applications, Proceedings = Lect. Notes. Comput. Sc. Rule of Law and Conditions On Foreign Aid to Turkey = Ahi Conf Pr Rule of Law and Conditions On Foreign Aid to Turkey = Ahi. Conf. Pr. Rule of Law: History, Theory and Criticism = Law Philos Libr Rule of Law: History, Theory and Criticism = Law. Philos. Libr. Rule of Law in Comparative Perspective = Ius Gentium-comp Per Rule of Law in Comparative Perspective = Ius. Gentium-comp. Per. Rule Representation, Interchange and Reasoning On The Web, Ruleml 2008 = Lect Notes Comput Sc Rule Representation, Interchange and Reasoning On The Web, Ruleml 2008 = Lect. Notes. Comput. Sc. Rules and Rule Markup Languages for The Semantic Web = Lect Notes Comput Sc Rules and Rule Markup Languages for The Semantic Web = Lect. Notes. Comput. Sc. Rules and Rule Markup Languages for The Semantic Web, Proceedings = Lect Notes Comput Sc Rules and Rule Markup Languages for The Semantic Web, Proceedings = Lect. Notes. Comput. Sc. Rules of Globalization: Case Book = Front Artif Intel Ap Rules of Globalization: Case Book = Front. Artif. Intel. Ap. Rumah Tangga Dan Kesehatan = Rumah Tangga Kesehatan Rumanian medical review = Rum Med Rev Rumanian Medical Review = Rum. Med. Rev. Rumors of Wisdom: Job 28 As Poetry = Beih Z Alttest Wiss Rumors of Wisdom: Job 28 As Poetry = Beih. Z. Alttest. Wiss. Runensteine in Schweden = Reallexikon Ger Alte Runensteine in Schweden = Reallexikon. Ger. Alte. Runic Inscriptions As A Source for Interdisciplinary Studies = Reallex German Alter Runic Inscriptions As A Source for Interdisciplinary Studies = Reallex. German. Alter. Run-time Models for Self-managing Systems and Applications = Auton Syst Run-time Models for Self-managing Systems and Applications = Auton. Syst. Runtime Verification = Lect Notes Comput Sc Runtime Verification = Lect. Notes. Comput. Sc. Ruperto-Carola = Ruperto Carola Rural Africana = Rural Afr Rural and remote health = Rural Remote Health Rural and Remote Health = Rural Remote Health Rural conditions and trends = Rural Cond Trends Rural demography = Rural Demogr Rural Development 2005, Vol 2, Book 1, Proceedings = Rural Development Rural Development 2005, Vol 2, Book 2, Proceedings = Rural Development Rural Development 2007, Vol 3, Book 1, Proceedings = Rural Development Rural Development 2007, Vol 3, Book 2, Proceedings = Rural Development Rural Development 2009, Proceedings, Vol 4, Book 1, Proceedings = Rural Development Rural Development 2009 Proceedings, Vol 4, Book 2, Proceedings = Rural Development Rural Development and Social Science Research: Case Studies From Borneo = Born Res Co Pro Ser Rural Development and Social Science Research: Case Studies From Borneo = Born. Res. Co. Pro. Ser. Rural Development = Rural Development Rural Development Theory and Practice = Routl Stud Dev Soc Rural Development Theory and Practice = Routl. Stud. Dev. Soc. Rural Education in The 21st Century = Educ Compet Glob Wor Rural Education in The 21st Century = Educ. Compet. Glob. Wor. Rural Electric Power Conferences = Rur Elec P Rural Electric Power Conferences = Rur. Elec. P. Rural Governance: International Perspectives = Routl Stud Hum Geogr Rural Governance: International Perspectives = Routl. Stud. Hum. Geogr. Rural Governance: International Perspectives = Rout Stud Human Geog Rural Governance: International Perspectives = Rout. Stud. Human. Geog. Rural History-economy Society Culture = Rural Hist Rural History-economy Society Culture = Rural Hist. Rural Labor Flows in China = Res Pap Pol Rural Labor Flows in China = Res. Pap. Pol. Rural policy brief / RUPRI Rural Health Panel = Rural Policy Brief Rural reconstruction forum = Rural Reconstr Forum Rural sociology = Rural Sociol Rural Sociology = Rural Sociol Rural Sociology = Rural Sociol. Rural-urban Dynamics: Livelihoods, Mobility and Markets in African and Asian Frontiers = Routl Stud Hum Geogr Rural-urban Dynamics: Livelihoods, Mobility and Markets in African and Asian Frontiers = Routl. Stud. Hum. Geogr. Rural - Urban Interface in Africa = Sem P Scand Rural - Urban Interface in Africa = Sem. P. Scand. Russ Coile's health trends = Russ Coiles Health Trends Russ Coile's Health Trends = Russ Coiles Health Trends Russell Sage Foundation Series On Trust = Russell Sage Trust Russell-the Journal of The Bertrand Russell Archives = Russell Russell-the Journal of The Bertrand Russell Studies = Russell Russia and Iran in The Great Game: Travelogues and Orientalism = Rout Stud Mid E Hist Russia and Iran in The Great Game: Travelogues and Orientalism = Rout. Stud. Mid. E. Hist. Russia and Its Others On Film: Screening Intercultural Dialogue = Stud Cent E Eur Russia and Its Others On Film: Screening Intercultural Dialogue = Stud. Cent. E. Eur. Russia and The Challengers: Russian Alignment With China, Iran, and Iraq in The Unipolar Era = St Antonys Ser Russia and The Challengers: Russian Alignment With China, Iran, and Iraq in The Unipolar Era = St. Antonys. Ser. Russia As A Great Power = Basees-rout Ser Russ Russia As A Great Power = Basees-rout. Ser. Russ. Russia As An Aspiring Great Power in East Asia: Perceptions and Policies From Yeltsin to Putin = St Antonys Ser Russia As An Aspiring Great Power in East Asia: Perceptions and Policies From Yeltsin to Putin = St. Antonys. Ser. Russia: Creating Private Enterprises and Efficient Markets = Stud Econ Transform Russia: Creating Private Enterprises and Efficient Markets = Stud. Econ. Transform. Russia Moves Into The Global Economy = Routl Stud Mod World Russia Moves Into The Global Economy = Routl. Stud. Mod. World. Russian Academy of Sciences Izvestiya Mathematics = Russ Ac Sc Izv Math+ Russian Academy of Sciences Izvestiya Mathematics = Russ. Ac. Sc. Izv. Math+.+ Russian Academy of Sciences = Russian Acad. Sci. Izv. Math. Russian Academy of Sciences Sbornik Mathematics = Russ Ac Sc Sb Math+ Russian Academy of Sciences Sbornik Mathematics = Russ. Ac. Sc. Sb. Math+.+ Russian Airborne Geophysics and Remote Sensing = P Soc Photo-opt Ins Russian Airborne Geophysics and Remote Sensing = P. Soc. Photo-opt. Ins. Russian and East European Finance and Trade = Russ E Eur Financ Tr Russian and East European Finance and Trade = Russ. E. Eur. Financ. Tr. Russian and East European Finance and Trade=Russian E. Europ. Finance Trade Russia, Nato and Cooperative Security: Bridging The Gap = Contemp Secur Stud Russia, Nato and Cooperative Security: Bridging The Gap = Contemp. Secur. Stud. Russian Business Power: The Role of Russian Business in Foreign and Security Relations = Routl Transnat Crime Russian Business Power: The Role of Russian Business in Foreign and Security Relations = Routl. Transnat. Crime. Russian Chemical Bulletin = Russ Chem B+ Russian Chemical Bulletin = Russ. Chem. B+.+ Russian Chemical Bulletin = Russ. Chem. Bull. Russian Chemical Reviews = Russ Chem Rev Russian Chemical Reviews = Russ Chem Rev+ Russian Chemical Reviews = Russ. Chem. Rev. Russian Chemical Reviews = Russ. Chem. Rev+.+ Russian Constitutionalism = Basees-rout Ser Russ Russian Constitutionalism = Basees-rout. Ser. Russ. Russian Contributions to Game Theory and Equilibrium Theory = Theory Decis Ser C G Russian Contributions to Game Theory and Equilibrium Theory = Theory Decis. Ser. C. G. Russian Culture in Uzbekistan: One Language in The Middle of Nowhere = Cent Asian Stud Russian Culture in Uzbekistan: One Language in The Middle of Nowhere = Cent. Asian. Stud. Russian Culture in Uzbekistan: One Language in The Middle of Nowhere = Cent Asian Stud Ser Russian Culture in Uzbekistan: One Language in The Middle of Nowhere = Cent. Asian. Stud. Ser. Russian Economic Trends=Russian Econ. Trends Russian Education and Society = Russ Educ Soc Russian Education and Society = Russ. Educ. Soc. Russian Electrochemistry = Russ Electrochem+ Russian Electrochemistry = Russ. Electrochem+.+ Russian Energy Power and Foreign Relations: Implications for Conflict and Cooperation = Css Stud Sec Int Rel Russian Energy Power and Foreign Relations: Implications for Conflict and Cooperation = Css. Stud. Sec. Int. Rel. Russian Engineering Journal = Russ Eng J Russian Engineering Journal = Russ. Eng. J. Russian Engineering Journal-ussr = Russ Eng J-ussr Russian Engineering Journal-ussr = Russ. Eng. J-ussr. Russian Engineering Research = Russ. Eng. Res. Russian entomological journal = Russkii entomologicheskii zhurnal|Russ. Entomol. J. Russian Factory Enters The Market Economy = Routl Contemp Russ E Russian Factory Enters The Market Economy = Routl. Contemp. Russ. E. Russian Geology and Geophysics = Russ Geol Geophys+ Russian Geology and Geophysics = Russ. Geol. Geophys. Russian Geology and Geophysics = Russ. Geol. Geophys+.+ Russian Governance in The 21st Century: Geo-strategy, Geopolitics and New Governance = Contemp Secur Stud Russian Governance in The 21st Century: Geo-strategy, Geopolitics and New Governance = Contemp. Secur. Stud. Russian History-histoire Russe = Russ Hist-hist Russ Russian History-histoire Russe = Russ. Hist-hist. Russ. Russian Journal of Applied Chemistry = Russ J Appl Chem+ Russian Journal of Applied Chemistry = Russ. J. Appl. Chem. Russian Journal of Applied Chemistry = Russ. J. Appl. Chem+.+ Russian Journal of Bioorganic Chemistry = Russ J Bioorg Chem+ Russian Journal of Bioorganic Chemistry = Russ. J. Bioorg. Chem. Russian Journal of Bioorganic Chemistry = Russ. J. Bioorg. Chem+.+ Russian Journal of Cardiology = Russ J Cardiol Russian Journal of Cardiology = Russ. J. Cardiol. Russian Journal of Coordination Chemistry = Russ J Coord Chem+ Russian Journal of Coordination Chemistry = Russ. J. Coord. Chem. Russian Journal of Coordination Chemistry = Russ. J. Coord. Chem+.+ Russian Journal of Developmental Biology = Russ J Dev Biol Russian Journal of Developmental Biology = Russ J Dev Biol+ Russian Journal of Developmental Biology = Russ. J. Dev. Biol. Russian Journal of Developmental Biology = Russ. J. Dev. Biol+.+ Russian Journal of Earth Sciences = Russ. J. Earth Sci. Russian Journal of Ecology = Russ J Ecol+ Russian Journal of Ecology = Russ. J. Ecol+.+ Russian Journal of Ecology = Russ. J.  Ecol. Russian Journal of Electrochemistry = Russ J Electrochem+ Russian Journal of Electrochemistry = Russ. J. Electrochem. Russian Journal of Electrochemistry = Russ. J. Electrochem+.+ Russian Journal of General Chemistry = Russ J Gen Chem Russian Journal of General Chemistry = Russ J Gen Chem+ Russian Journal of General Chemistry = Russ. J. Gen. Chem. Russian Journal of General Chemistry = Russ. J. Gen. Chem+.+ Russian Journal of Genetics = Russ J Genet+ Russian Journal of Genetics = Russ. J. Genet. Russian Journal of Genetics = Russ. J. Genet+.+ Russian journal of immunology : RJI : official journal of Russian Society of Immunology = Russ J Immunol Russian Journal of Inorganic Chemistry = Russ J Inorg Chem+ Russian Journal of Inorganic Chemistry = Russ. J. Inorg. Chem. Russian Journal of Inorganic Chemistry = Russ. J. Inorg. Chem+.+ Russian Journal of Marine Biology = Russ J Mar Biol Russian Journal of Marine Biology = Russ J Mar Biol + Russian Journal of Marine Biology = Russ J Mar Biol+ Russian Journal of Marine Biology = Russ. J. Mar. Biol. Russian Journal of Marine Biology = Russ. J. Mar. Biol. +.++. Russian Journal of Marine Biology = Russ. J. Mar. Biol+.+ Russian Journal of Mathematical Physics = Russian J. Math. Phys. Russian Journal of Mathematical Physics = Russ J Math Phys Russian Journal of Mathematical Physics = Russ. J. Math. Phys. Russian Journal of Nematology = Russ J Nematol Russian Journal of Nematology = Russ. J. Nematol. Russian Journal of Nondestructive Testing = Russ. J. Nondestr. Test. Russian Journal of Nondestructive Testing = Russ J Nondestruct+ Russian Journal of Nondestructive Testing = Russ. J. Nondestruct+.+ Russian Journal of Non-ferrous Metals = Russ J Non-ferr Met+ Russian Journal of Non-ferrous Metals = Russ. J. Non-ferr. Met+.+ Russian Journal of Numerical Analysis and Mathematical Modelling = Russian J. Numer. Anal. Math. Modelling Russian Journal of Numerical Analysis and Mathematical Modelling = Russ J Numer Anal M Russian Journal of Numerical Analysis and Mathematical Modelling = Russ. J. Numer. Anal. M. Russian Journal of Organic Chemistry = Russ J Org Chem+ Russian Journal of Organic Chemistry = Russ. J. Org. Chem. Russian Journal of Organic Chemistry = Russ. J. Org. Chem+.+ Russian Journal of Pacific Geology = Russ J Pac Geol Russian Journal of Pacific Geology = Russ. J. Pac. Geol. Russian Journal of Physical Chemistry A, Focus on Chemistry = Russ. J. Phys. Chem. A Russian Journal of Physical Chemistry A = Russ J Phys Chem A+ Russian Journal of Physical Chemistry A = Russ. J. Phys. Chem. A Russian Journal of Physical Chemistry A = Russ. J. Phys. Chem. A+.+ Russian Journal of Physical Chemistry B, Focus on Physics = Russ. J. Phys. Chem. B Russian Journal of Physical Chemistry B = Russ J Phys Chem B+ Russian Journal of Physical Chemistry B = Russ. J. Phys. Chem. B Russian Journal of Physical Chemistry B = Russ. J. Phys. Chem. B+.+ Russian Journal of Physical Chemistry = Russ J Phys Ch Russian Journal of Physical Chemistry = Russ. J. Phys. Ch. Russian Journal of Physical Chemistry = Russ J Phys Chem+ Russian Journal of Physical Chemistry = Russ. J. Phys. Chem. Russian Journal of Physical Chemistry = Russ. J. Phys. Chem+.+ Russian Journal of Physical Chemistry,ussr = Russ J Phys Ch Ussr Russian Journal of Physical Chemistry,ussr = Russ. J. Phys. Ch. Ussr. Russian journal of plant physiology: a comprehensive Russian journal on modern phytophysiology = Russ J Plant Physiol Russian Journal of Plant Physiology = Russ. J. Plant Physiol. Russian Journal of Plant Physiology = Russ J Plant Physl+ Russian Journal of Plant Physiology = Russ. J. Plant Physl+.+ Russian Legal Culture Before and After Communism = Basees-rout Ser Russ Russian Legal Culture Before and After Communism = Basees-rout. Ser. Russ. Russian Linguistics = Russ Linguist Russian Linguistics = Russ. Linguist. Russian Literature = Russ Literature Russian Literature = Russ. Literature Russian Literature Triquarterly = Russ Lit Triquart Russian Literature Triquarterly = Russ. Lit. Triquart. Russian Mass Media and Changing Values = Routl Contemp Russ E Russian Mass Media and Changing Values = Routl. Contemp. Russ. E. Russian Mathematical Surveys = Russian Math. Surveys Russian Mathematical Surveys = Russ Math Surv+ Russian Mathematical Surveys = Russ. Math. Surv+.+ Russian Mathematics (Izvestiya VUZ = Russian Math. (Iz. VUZ) Russian Metallurgy-metally-ussr = Russ Metall-metall-u Russian Metallurgy-metally-ussr = Russ. Metall-metall-u. Russian Metallurgy = Russ Metall+ Russian Metallurgy = Russ. Metall. Russian Metallurgy = Russ. Metall+.+ Russian Meteorology and Hydrology = Russ Meteorol Hydro+ Russian Meteorology and Hydrology = Russ. Meteorol. Hydro+.+ Russian Meteorology and Hydrology = Russ Meteorol Hydrol Russian Meteorology and Hydrology = Russ. Meteorol. Hydrol. Russian Microelectronics = Russ. Microlectron. Russian Military Intelligence in The War With Japan, 1904-05: Secret Operations On Land and At Sea = Routl Stud Hist Russ Russian Military Intelligence in The War With Japan, 1904-05: Secret Operations On Land and At Sea = Routl. Stud. Hist. Russ. Russian Military Reform: A Failed Exercise in Defence Decision Making = Routl Contemp Russ E Russian Military Reform: A Failed Exercise in Defence Decision Making = Routl. Contemp. Russ. E. Russian Minority Politics in Post-soviet Latvia and Kyrgyzstan = Natl Ethn Confl 21st Russian Minority Politics in Post-soviet Latvia and Kyrgyzstan = Natl. Ethn. Confl. 21st. Russian Models From The Mechanisms Collection of Bauman University = Hist Mech Mach Sci Russian Models From The Mechanisms Collection of Bauman University = Hist. Mech. Mach. Sci. Russian Nationalism and The National Reassertion of Russia = Routl Contemp Russ E Russian Nationalism and The National Reassertion of Russia = Routl. Contemp. Russ. E. Russian Nationalism and The Politics of Soviet Literature = Stud Russ E Eur Russian Nationalism and The Politics of Soviet Literature = Stud. Russ. E. Eur. Russian Physics Journal = Russian Phys. J. Russian Physics Journal = Russ Phys J Russian Physics Journal = Russ Phys J+ Russian Physics Journal = Russ. Phys. J. Russian Physics Journal = Russ. Phys. J+.+ Russian Planetary Exploration: History, Development, Legacy, Prospects = Springer-prax Books Russian Planetary Exploration: History, Development, Legacy, Prospects = Springer-prax. Books. Russian Plant Physiology = Russ Plant Physiol+ Russian Plant Physiology = Russ. Plant Physiol+.+ Russian Policy Towards China and Japan = Basees-rout Ser Russ Russian Policy Towards China and Japan = Basees-rout. Ser. Russ. Russian Political Economic and Security Issues = Russ Polit Econ Secu Russian Political Economic and Security Issues = Russ. Polit. Econ. Secu. Russian Political, Economic and Security Issues = Russ Polit Econ Secu Russian Political, Economic and Security Issues = Russ. Polit. Econ. Secu. Russian Politics and Law = Russ Polit Law Russian Politics and Law = Russ. Polit. Law Russian Review = Russ Rev Russian Review = Russ. Rev. Russian Revolution in Retreat, 1920-24 = Basees-rout Ser Russ Russian Revolution in Retreat, 1920-24 = Basees-rout. Ser. Russ. Russian social science review : a journal of translations = Russ Soc Sci Rev Russian Strategic Thought Toward Asia = Strateg Thought Ne A Russian Strategic Thought Toward Asia = Strateg. Thought Ne. A. Russian Studies in Literature = Russ Stud Lit Russian Studies in Literature = Russ. Stud. Lit. Russian Studies in Philosophy = Russ Stud Philos Russian Studies in Philosophy = Russ. Stud. Philos. Russian Television Today: Primetime Drama and Comedy = Routl Contemp Russ E Russian Television Today: Primetime Drama and Comedy = Routl. Contemp. Russ. E. Russian Ultrasonics = Russ Ultrason Russian Ultrasonics = Russ. Ultrason. Russia: Re-emerging Great Power = Stud Cent E Eur Russia: Re-emerging Great Power = Stud. Cent. E. Eur. Russia's Demographic "crisis" = Rand Conf Proc Russia's Demographic "crisis" = Rand. Conf. Proc. Russion Journal of Coordination Chemistry = Russ. J. Coord. Chem. Russische Proto-narratologie = Narratologia Russische Proto-narratologie = Narratologia. Russkaia Literatura = Russ Literatura Russkaia Literatura = Russ. Literatura Rusts of Pine = For Can Nor Rusts of Pine = For. Can. Nor. Rutgers Camden law journal = Rutgers Camden Law J Rutgers computer & technology law journal = Rutgers Comput Technol Law J Rutgers Invitational Symposium On Education Series = Rutg Inv Symp Educ S Rutgers Invitational Symposium On Education Series = Rutg. Inv. Symp. Educ. S. Rutgers law journal = Rutgers Law J Rutgers law review = Rutgers Law Rev Rutgers Law Review = Rutgers Law Rev Rutgers Law Review = Rutgers Law Rev. Rutgers Series On Self and Social Identity = Rutg Self Soc Id Rutgers Series On Self and Social Identity = Rutg. Self Soc. Id. Rutgers Series On The Public Life of The Arts = Rs Pub Life Arts Rutgers Series On The Public Life of The Arts = Rs. Pub. Life Arts Rutgers Symposia On Applied Psychology = Rutg S Appl Rutgers Symposia On Applied Psychology = Rutg. S. Appl. Ruthenate and Rutheno-cuprate Materials = Lect Notes Phys Ruthenate and Rutheno-cuprate Materials = Lect. Notes. Phys. Ruthenium Oxidation Complexes: Their Uses As Homogenous Organic Catalysts = Catal Met Complexes Ruthenium Oxidation Complexes: Their Uses As Homogenous Organic Catalysts = Catal. Met. Complexes. Rutland record : journal of the Rutland Record Society = Rutland Rec Rws: 2009 Ieee Radio and Wireless Symposium = Ieee Radio Wireless Rwthedition = Rwthedition Ryan Advisory for Health Services Governing Boards = Ryan Advis. Health Serv. Gov. Boards Rynek Energii = Rynek Energii Ryoikibetsu shokogun shirizu = Ryoikibetsu Shokogun Shirizu Ryoikibetsu Shokogun Shirizu (Series on Symptomatic Syndrome by Area) = Ryoikibetsu Shokogun Shirizu Ryukyu Mathematical Journal = Ryukyu Math. J. Ryumachi. [Rheumatism] = Ryumachi Ryumachi=Ryumachi;; Ryumachi = Ryumachi Saa '96 - National Meeting On Sensors for Advanced Applications = Ital Phy So Saa '96 - National Meeting On Sensors for Advanced Applications = Ital. Phy. So. SAAD digest = SAAD Dig SAAD Digest = SAAD Dig. Saalburg-Jahrbuch. Bericht des Saalburg-Museums = SaalbJb Saalburg-Jahrbuch = Saalburg Jahrb Saalburg-Jahrbuch = SJ Saami Shaman Drum = Sc Inst Don Saami Shaman Drum = Sc. Inst. Don. Saarbrücker Beiträge zur Altertumskunde = SaarBeitr Saarbrücker Studien und Materialien zur Altertumskunde = SaarStMat Saarlandisches Aerzteblatt = Saarl Arztebl SAAS bulletin, biochemistry and biotechnology = SAAS Bull Biochem Biotechnol SAAS Bulletin, Biochemistry and Biotechnology = SAAS Bull. Biochem. Biotechnol. Saas-fee Advanced Course = Saas Fee Ad Saas-fee Advanced Course = Saas. Fee. Ad. Sabert Basescu: Selected Papers On Human Nature and Psychoanalysis = Relat Perspect Book Sabert Basescu: Selected Papers On Human Nature and Psychoanalysis = Relat. Perspect. Book. Sabkha Ecosystems: Africa and Southern Europe, Vol Iii = Tasks Veg Sci Sabkha Ecosystems: Africa and Southern Europe, Vol Iii = Tasks. Veg. Sci. Sabouraudia-journal of Medical and Veterinary Mycology = Sabouraudia Sabouraudia-journal of Medical and Veterinary Mycology = Sabouraudia. Sabouraudia = Sabouraud Sabouraudia = Sabouraud. Sabouraudia = Sabouraudia Sabrao Journal of Breeding and Genetics = Sabrao J Breed Genet Sabrao Journal of Breeding and Genetics = Sabrao J. Breed. Genet. Sacer. Bollettino della Associazione storica saccarese = Sacer Sac Explorer = Sac Explor Sac Explorer = Sac Explor. Sachsische Strafrecht Im 19. Jahrhundert Bis Zum Reichsstrafgesetzbuch = Schr Juris Zeitgesch Sachsische Strafrecht Im 19. Jahrhundert Bis Zum Reichsstrafgesetzbuch = Schr. Juris. Zeitgesch. Sacitra Ayurveda = Sacitra Ayurveda Sacramental Presence in A Postmodern Context = Bib Eph The Sacramental Presence in A Postmodern Context = Bib. Eph. The. Sacred Music = Sacred Music Sacred Topology of Early Ireland and Ancient India: Religious Paradigm Shift = J Indo-eur Stud Mono Sacred Topology of Early Ireland and Ancient India: Religious Paradigm Shift = J. Indo-eur. Stud. Mono. Sacrifice in Religious Experience = St Hist Rel Sacrifice in Religious Experience = St. Hist. Rel. Sacris Erudiri: jaarboek voor Godsdienstwetenschappen = SEJG Sadeq Hedayat: His Work and His Wondrous World = Iran Stud Ser Sadeq Hedayat: His Work and His Wondrous World = Iran. Stud. Ser. Sadfe 2007: Second International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int Work Sys Appr D Sadfe 2007: Second International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int. Work. Sys. Appr. D. Sadfe 2008: Third International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int Work Sys Appr D Sadfe 2008: Third International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int. Work. Sys. Appr. D. Sadfe 2009: Fourth International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int Work Sys Appr D Sadfe 2009: Fourth International Workshop On Systematic Approaches to Digital Forensic Engineering, Proceedings = Int. Work. Sys. Appr. D. Sadhana-academy Proceedings in Engineering Sciences = Sadhana-acad P Eng S Sadhana-academy Proceedings in Engineering Sciences = Sadhana-acad. P. Eng. S. SADJ = SADJ Saeculum. Jahrbuch für Universalgeschichte = Saeculum Saeculum = Saeculum SAE International Journal of Aerospace = SAE Int. J. Aerosp. SAE International Journal of Commercial Vehicles = SAE Int. J. Commer. Veh. SAE International Journal of Engines = SAE Int. J. Engines SAE International Journal of Fuels and Lubricants = SAE Int. J. Fuels Lubr. SAE International Journal of Manufacturing & Materials = SAE Int. J. Manuf. Mater. SAE International Journal of Passenger Cars - Electronic and Electrical Systems = SAE Int. J. Passenger Cars Electron. Electr. Syst. SAE International Journal of Passenger Cars - Mechanical Systems = SAE Int. J. Passenger Cars Mech. Syst. Sae Journal of Automotive Engineers = Sae J-automot Eng Sae Journal of Automotive Engineers = Sae J-automot. Eng. SAE Journal = SAE J. Sae Journal = Sae J-automot Eng Sae Journal = Sae J-automot. Eng. Sae Progress in Technology = Sae Prog Technol Sae Progress in Technology = Sae Prog. Technol. SAE Quarterly Transactions = SAE Q. Trans. SAE Transactions = SAE Trans. Sae Transactions = Sae Transactions SAfAIDS news : Southern Africa AIDS Information Dissemination Service bulletin = SAfAIDS News Safavid Persia = Pemb Pers Pap Safavid Persia = Pemb. Pers. Pap. Safe Adaptive Control: Data-driven Stability Analysis and Robust Synthesis = Lect Notes Contr Inf Safe Adaptive Control: Data-driven Stability Analysis and Robust Synthesis = Lect. Notes. Contr. Inf. Safe Application of Technology in Corporate Aviation = Int Air Saf Sem P Safe Application of Technology in Corporate Aviation = Int. Air. Saf. Sem. P. Safe Decommissioning for Nuclear Activities = P S Iaea Safe Decommissioning for Nuclear Activities = P. S. Iaea. Safeguarding The Nations Drinking Water = Water Resour Plan De Safeguarding The Nations Drinking Water = Water Resour. Plan. De. Safeguards in A World of Ambient Intelligence = Int Libr Eth Law Tec Safeguards in A World of Ambient Intelligence = Int. Libr. Eth. Law. Tec. Safe Handling of Combustible Dusts = Vdi Bericht Safe Handling of Combustible Dusts = Vdi. Bericht. Safe journal = SAFE J Safe motherhood = Safe Mother Safety and Loss Prevention in The Chemical and Oil Processing Industries = Inst Chem E Safety and Loss Prevention in The Chemical and Oil Processing Industries = Inst. Chem. E. Safety and Maintenance Services = Transport Res Rec Safety and Maintenance Services = Transport. Res. Rec. Safety and Reliability for Managing Risk, Vols 1-3 = Proc Monogr Eng Wate Safety and Reliability for Managing Risk, Vols 1-3 = Proc. Monogr. Eng. Wate. Safety and Reliability of Automobile Electronic Systems = Vdi Bericht Safety and Reliability of Automobile Electronic Systems = Vdi. Bericht. Safety and Risk in Society = Saf Risk Soc Safety and Risk in Society = Saf. Risk Soc. Safety and Security Engineering Iii = Wit Trans Built Env Safety and Security Engineering Iii = Wit. Trans. Built. Env. Safety and Security Engineering Ii = Wit Trans Built Env Safety and Security Engineering Ii = Wit. Trans. Built. Env. Safety and Security Engineering = Wit Trans Built Env Safety and Security Engineering = Wit. Trans. Built. Env. Safety and Security in Multiagent Systems = Lect Notes Artif Int Safety and Security in Multiagent Systems = Lect. Notes. Artif. Int. Safety and Structural Integrity 2006 = Sol St Phen Safety and Structural Integrity 2006 = Sol. St. Phen. Safety Assurance During Food Processing = Food Saf Assur Vet Safety Assurance During Food Processing = Food Saf. Assur. Vet. Safety Data, Analysis, and Evaluation = Transport Res Rec Safety Data, Analysis, and Evaluation = Transport. Res. Rec. Safety Developments in The Offshore Oil and Gas Industry = Proc Inst Mech Eng S Safety Developments in The Offshore Oil and Gas Industry = Proc. Inst. Mech. Eng. S. Safety, Economy, and Efficiency in Airport and Airspace Management and Operations = Transport Res Rec Safety, Economy, and Efficiency in Airport and Airspace Management and Operations = Transport. Res. Rec. Safety, Efficiency and Mechanisms: A Guide to Nsaid Use in General Practice = Roy S Med S Safety, Efficiency and Mechanisms: A Guide to Nsaid Use in General Practice = Roy. S. Med. S. Safety, Environmental Impact, and Economic Prospects of Nuclear Fusion = E Maj Int S Safety, Environmental Impact, and Economic Prospects of Nuclear Fusion = E. Maj. Int. S. Safety Evaluation of Biotechnologically-derived Pharmaceuticals: Facilitating A Scientific Approach = Cmr Int Works S Safety Evaluation of Biotechnologically-derived Pharmaceuticals: Facilitating A Scientific Approach = Cmr. Int. Works. S. Safety, Health and Environmental Technology = Aatcc Symp Safety, Health and Environmental Technology = Aatcc. Symp. Safety Improvements Through Lessons Learned From Operational Experience in Nuclear Research Facilities = Nato Sec Sci B Phys Safety Improvements Through Lessons Learned From Operational Experience in Nuclear Research Facilities = Nato. Sec. Sci. B. Phys. Safety in A Changing Environment = P Corp Aviat Saf Sem Safety in A Changing Environment = P. Corp. Aviat. Saf. Sem. Safety in American Football = Am Soc Test Mater Safety in American Football = Am. Soc. Test. Mater. Safety in Ice Hockey: 5th Volume = Am Soc Test Mater Safety in Ice Hockey: 5th Volume = Am. Soc. Test. Mater. Safety in Ice Hockey: Fourth Volume = Am Soc Test Mater Safety in Ice Hockey: Fourth Volume = Am. Soc. Test. Mater. Safety in Ice Hockey: Third Volume = Am Soc Test Mater Safety in Ice Hockey: Third Volume = Am. Soc. Test. Mater. Safety Instrumented Systems for The Process Industry = Tech Papers Isa Safety Instrumented Systems for The Process Industry = Tech. Papers. Isa. Safety in Tritium Handling Technology = Euro Nucl Sci Tech Safety in Tritium Handling Technology = Euro. Nucl. Sci. Tech. Safety Issues Associated With Plutonium Involvement in The Nuclear Fuel Cycle = Nato Sci S 1 Disarm Safety Issues Associated With Plutonium Involvement in The Nuclear Fuel Cycle = Nato. Sci. S. 1. Disarm. Safety Maintenance = Saf Maint Safety Maintenance = Saf. Maint. Safety of Biological Products Prepared From Mammalian Cell Culture = Dev Biol Stand Safety of Biological Products Prepared From Mammalian Cell Culture = Dev. Biol. Stand. Safety of Chemical Batch Reactors and Storage Tanks = Euro Reliab Safety of Chemical Batch Reactors and Storage Tanks = Euro. Reliab. Safety of Computer Control Systems 1990 ( Safecomp 90 ) = Ifac Symp Series Safety of Computer Control Systems 1990 ( Safecomp 90 ) = Ifac. Symp. Series. Safety of Computer Control Systems 1991 ( Safecomp 91 ) = Ifac Symp Series Safety of Computer Control Systems 1991 ( Safecomp 91 ) = Ifac. Symp. Series. Safety: Older Drivers; Traffic Law Enforcement; Management; School Transportation; Emergency Evacuation; Truck and Bus; and Motorcycles = Transport Res Rec Safety: Older Drivers; Traffic Law Enforcement; Management; School Transportation; Emergency Evacuation; Truck and Bus; and Motorcycles = Transport. Res. Rec. Safety Related Issues of Spent Nuclear Fuel Storage = Nato Sci Peace Secur Safety Related Issues of Spent Nuclear Fuel Storage = Nato. Sci. Peace. Secur. Safety, Reliability and Risks Associated With Water, Oil and Gas Pipelines = Nato Sci Peace Secur Safety, Reliability and Risks Associated With Water, Oil and Gas Pipelines = Nato. Sci. Peace. Secur. Safety Science = Safety Sci Safety Science = Safety Sci. Safety Science = Saf. Sci. Safety & Technology - Harmony Or Discord? = Int Air Saf Sem P Safety & Technology - Harmony Or Discord? = Int. Air. Saf. Sem. P. Safety Through Interactions and International Standards = Int Air Saf Sem P Safety Through Interactions and International Standards = Int. Air. Saf. Sem. P. Safir2010-the Finnish Research Programme On Nuclear Power Plant Safety 2007-2010, Interim Report = Vtt Res Notes Safir2010-the Finnish Research Programme On Nuclear Power Plant Safety 2007-2010, Interim Report = Vtt. Res. Notes. Sage Annual Reviews of Communication Research = Sage Ar Cr Sage Annual Reviews of Communication Research = Sage Ar. Cr. Sage (Atlanta, Ga.) = Sage Sage Criminal Justice System Annuals = Sage Crim J Sage Criminal Justice System Annuals = Sage Crim. J. Sage Focus Editions = Sage Foc Ed Sage Focus Editions = Sage Foc. Ed. Sage Modern Politics Series = Sage Mod Sage Modern Politics Series = Sage Mod. Sage Professional Paper in Administrative & Policy Studies Series = Sage Prof Pap Admin Sage Professional Paper in Administrative & Policy Studies Series = Sage Prof. Pap. Admin. Sage Professional Paper in American Politics Series = Sage Prof Pap Am Po Sage Professional Paper in American Politics Series = Sage Prof. Pap. Am. Po. Sage Professional Paper in Comparative Politics Series = Sage Prof Pap Comp P Sage Professional Paper in Comparative Politics Series = Sage Prof. Pap. Comp. P. Sage Professional Paper in Contemporary Political Sociology Series = Sage Prof Pap Contem Sage Professional Paper in Contemporary Political Sociology Series = Sage Prof. Pap. Contem. Sage Professional Paper in International Studies Series = Sage Prof Pap Int St Sage Professional Paper in International Studies Series = Sage Prof. Pap. Int. St. Sage Research Papers in The Social Sciences = Sage Res Pap Soc Sci Sage Research Papers in The Social Sciences = Sage Res. Pap. Soc. Sci. Sage Series On Violence Against Women = Sage Viol Women Sage Series On Violence Against Women = Sage Viol. Women Saggi fenici = SaggiFen Saggi-neuropsicologia Infantile Psicopedagogia Riabilitazione = Saggi Saggi-neuropsicologia Infantile Psicopedagogia Riabilitazione = Saggi. Saggi Scientifici = Saggi Sci. Saguntum. Papeles del Laboratorio de arqueología de Valencia = Saguntum SAHARA J : journal of Social Aspects of HIV/AIDS Research Alliance / SAHARA , Human Sciences Research Council = SAHARA J Sahara J-journal of Social Aspects of Hiv-aids = Sahara J-j Soc Asp H Sahara J-journal of Social Aspects of Hiv-aids = Sahara J-j. Soc. Asp. H. SAH Bulletin = SAH Bull. Saibo Kogaku = Saibo Kogaku Sains Malaysiana = Sains Malays Sains Malaysiana = Sains Malays. Saint Anselm- His Origins and Influence = Text Stud R Saint Anselm- His Origins and Influence = Text. Stud. R. Saint Anthony messenger; a national Catholic family magazine = St Anthony Messenger Saint Augustine The Bishop = Garl Rl Hum Saint Augustine The Bishop = Garl. Rl. Hum. Saint-gobain Centre for Economic Studies Series = St-gobain Ctr Econ S Saint-gobain Centre for Economic Studies Series = St-gobain. Ctr. Econ. S. Saint Louis University law journal = St Louis Univ Law J Saint Louis University public law review = St Louis Univ Public Law Rev Saint Louis University Research Journal = St Louis Univ Res J Saint Louis University Research Journal = St. Louis Univ. Res. J. Saint-Luc medical. Sint-Lucas tijdschrift = St Luc Med Sairaanhoidon vuosikirja = Sairaanh Vuosik Sairaanhoidon Vuosikirja = Sairaanh. Vuosik. Sairaanhoitaja (Helsinki, Finland : 1991) = Sairaanhoitaja Sairaanhoitajalehti = Sairaanhoitajalehti Sairaanhoitaja = Sairaanhoitaja Sairaanhoitaja. Sjukskoterskan = Sairaanhoitaja Sais African Studies Library = Sais Afr St Sais African Studies Library = Sais Afr. St. Saishin igaku. Modern medicine = Saishin Igaku Saishin Igaku (Recent Medicine) = Saishin Igaku Saishin Igaku = Saishin Igaku Saisons d'Alsace = Saisons Alsace SAIS review (Paul H. Nitze School of Advanced International Studies) = SAIS Rev Sais Review-school of Advanced International Studies = Sais Rev Sais Review-school of Advanced International Studies = Sais Rev. Saitabi. Noticiario de historia, arte y arqueología de Levante = Saitabi Saitama Mathematical Journal = Saitama Math. J. Sajog-south African Journal of Obstetrics and Gynaecology = Sajog-s Afr J Obstet Sajog-south African Journal of Obstetrics and Gynaecology = Sajog-s. Afr. J. Obstet. Sakha Ynaga: Cattle of The Yakuts = Suom Tiedeakat Toim Sakha Ynaga: Cattle of The Yakuts = Suom. Tiedeakat. Toim. Salamandra = Salamandra Salduie. Estudios de prehistoria y arqueología = Salduie Saline systems = Saline Systems Salinidad Edafica En Varios Salobrares De Aragon = Mem Real Soc Esp His Salinidad Edafica En Varios Salobrares De Aragon = Mem. Real. Soc. Esp. His. Salisbury medical bulletin = Salisbury Med Bull Saliva As A Diagnostic Fluid = Ann Ny Acad Sci Saliva As A Diagnostic Fluid = Ann. Ny. Acad. Sci. Salivary Gland Biogenesis and Function = Ann Ny Acad Sci Salivary Gland Biogenesis and Function = Ann. Ny. Acad. Sci. Salivary Gland Cytopathology = Essent Cytopathol Salivary Gland Cytopathology = Essent. Cytopathol. Salivary Glands: Development, Adaptations and Disease = Front Oral Biol Salivary Glands: Development, Adaptations and Disease = Front. Oral. Biol. Sally Heming and Thomas Jefferson: History, Memory and Civic Culture = Jeffersonian Amer Sally Heming and Thomas Jefferson: History, Memory and Civic Culture = Jeffersonian. Amer. Salmagundi-a Quarterly of The Humanities and Social Sciences = Salmagundi Salmagundi-a Quarterly of The Humanities and Social Sciences = Salmagundi. Salmagundi (Saratoga Springs, N.Y.) = Salmagundi Salmon: Biology, Nutrition and Consumption = Fish Fish Fish Salmon: Biology, Nutrition and Consumption = Fish. Fish. Fish. Salmonid Spawning Habitat in Rivers: Physical Controls, Biological Responses, and Approaches to Remediation = Am Fish S S Salmonid Spawning Habitat in Rivers: Physical Controls, Biological Responses, and Approaches to Remediation = Am. Fish. S. S. Salsa Iv - Proceedings of The Fourth Annual Symposium About Language and Society - Austin = Tx Ling For Salsa Iv - Proceedings of The Fourth Annual Symposium About Language and Society - Austin = Tx. Ling. For. Salt Ii - Proceedings From The Second Conference On Semantics and Linguistic Theory = Osu Work Pap Ling Salt Ii - Proceedings From The Second Conference On Semantics and Linguistic Theory = Osu. Work. Pap. Ling. Salt Tectonics: A Global Perspective = Aapg Memoir Salt Tectonics: A Global Perspective = Aapg. Memoir. Salubritas = Salubritas Salud bucal / Confederacion Odontologica de la Republica Argentina = Salud Bucal Salud Bucal = Salud Bucal Salud Colectiva = Salud Colect Salud Colectiva = Salud Colect. Salud I Ciencia = Salud Cienc Salud I Ciencia = Salud Cienc. Salud Mental = Salud Ment Salud Mental = Salud Ment. Salud publica de Mexico = Salud Publica Mex Salud Publica de Mexico=Salud Publica Mex;; Salud Publica de Mexico = Salud Publica Mex. Salud Pública de México = Salud pública Méx. Salud Publica De Mexico = Salud Publica Mexico Salud reproductiva y sociedad : organo informativo del Programa Salud Reproductiva y Sociedad de El Colegio de Mexico = Salud Reprod Soc Salus / Department of National Health and Population Development = Salus Salutogenesis in Oncology = Tumortherap Rehabil Salutogenesis in Oncology = Tumortherap. Rehabil. Salzburger Beitrage zur Paracelsusforschung = Salzburger Beitr Paracelsusforsch Sam Advanced Management Journal = Sam Adv Manage J Sam Advanced Management Journal = Sam Adv. Manage. J. Samdok E-serie = Samdok E Ser Samdok E-serie = Samdok E. Ser. Same-day surgery = Same Day Surg Same-Day Surgery = Same. Day Surg. Samiksa = Samiska Samj South African Medical Journal = Samj S Afr Med J Samj South African Medical Journal = Samj S. Afr. Med. J. Sammlung Griechischer Und Lateinischer Grammatiker = Samml Griech Lat Gra Sammlung Griechischer Und Lateinischer Grammatiker = Samml. Griech. Lat. Gra. Sammlung Wissenschaftlicher Commentare = Samml Wiss Comment Sammlung Wissenschaftlicher Commentare = Samml. Wiss. Comment. Sammlung zwangloser Abhandlungen aus dem Gebiete der Psychiatrie und Neurologie = Samml Zwangl Abh Geb Psychiatr Neurol Sammlung Zwangloser Abhandlungen aus dem Gebiete der Psychiatrie und Neurologie = Samml. Zwangl. Abh. Geb. Psychiatr. Neurol. Sam Model of Senescence = Int Congr Ser Sam Model of Senescence = Int. Congr. Ser. Samnivm-rivista Storica Trimestrale = Samnivm Samnivm-rivista Storica Trimestrale = Samnivm. Samothrace. Excavations Conducted by the Institute of Fine Arts of New York University = Samothrace Sampe Journal = Sampe J Sampe Journal = Sampe J. SAMPE Journal = SAMPE J. Sampe Quarterly-society for The Advancement of Material and Process Engineering = Sampe Quart Sampe Quarterly-society for The Advancement of Material and Process Engineering = Sampe Quart. Sample Preparation for Biomedical and Environmental Analysis = Chrom S Sym Sample Preparation for Biomedical and Environmental Analysis = Chrom. S. Sym. Sample registration bulletin = Sample Regist Bull Sample Return Missions to Small Bodies = Adv Space Res Sample Return Missions to Small Bodies = Adv. Space. Res. Sample Return Missions to Small Bodies = Adv Space Res-series Sample Return Missions to Small Bodies = Adv. Space. Res-series. Sampling Environmental Media = Am Soc Test Mater Sampling Environmental Media = Am. Soc. Test. Mater. Sampling Methods, Remote Sensing and Gis Multiresource Forest Inventory = Trop Forest Sampling Methods, Remote Sensing and Gis Multiresource Forest Inventory = Trop. Forest Samtiden = Samtiden Samuel Beckett: Debts and Legacies = Samuel Beckett Today Samuel Beckett: Debts and Legacies = Samuel Beckett. Today. Samuel Beckett: Endlessness in The Year 2000 = Sam Beckett Today Samuel Beckett: Endlessness in The Year 2000 = Sam. Beckett. Today. Samuel Beckett Today / Aujourd'hui = Sam Beckett Today Samuel Beckett Today / Aujourd'hui = Sam. Beckett Today Samuel Beckett Today = Samuel Beckett Today Samuel Taylor Coleridge: A Literary Life = Lit Lives Samuel Taylor Coleridge: A Literary Life = Lit. Lives. Sanctifying The Name of God: Jewish Martyrs and Jewish Memories of The First Crusade = Jew Cult Context Sanctifying The Name of God: Jewish Martyrs and Jewish Memories of The First Crusade = Jew. Cult. Context. Sanctions = Serb Ac Sci Sanctions = Serb. Ac. Sci. Sanctuary of Bethel and The Configuration of Israelite Identity = Beih Z Alttest Wiss Sanctuary of Bethel and The Configuration of Israelite Identity = Beih. Z. Alttest. Wiss. Sandal and Its Products = Aciar Proc Sandal and Its Products = Aciar. Proc. Sandalion. Quaderni di cultura classica, cristiana e medievale = Sandalion Sandalwood in The Pacific Region = Aciar Proc Sandalwood in The Pacific Region = Aciar. Proc. Sandhurst Conference Series = Sandhurst Conf Ser Sandhurst Conference Series = Sandhurst Conf. Ser. San Fernando Valley Dental Society bulletin = San Fernando Val Dent Soc Bull San Fernando Valley Dental Society Bulletin = San Fernando Val. Dent. Soc. Bull. San Francisco State University Series in Philosophy = San Franc. State Univ. Ser. Philos. [Sanfujinka chiryo] Obstetrical and gynecological therapy = Sanfujinka Chiryo Sanfujinka no jissai. Practice of gynecology and obstetrics = Sanfujinka No Jissai Sanfujinka no Jissai (Practice of Gynecology and Obstetrics) = Sanfujinka No Jissai [Sanfujinka no shinpo] Advances in obstetrics and gynecology = Sanfujinka No Shinpo San Gabriel Valley Dental Society bulletin = San Gabriel Val Dent Soc Bull San Gabriel Valley Dental Society Bulletin = San Gabriel Val. Dent. Soc. Bull. Sangre = Sangre Sangre=Sangre (Barc);; Sangre = Sangre (Barc.) Sangre = Sangre (Barc) Sang Thrombose Vaisseaux = Sang Thromb Vaiss Sang Thrombose Vaisseaux = Sang Thromb. Vaiss. Sangyo Eiseigaku Zasshi (Journal of Occupational Health) = Sangyo Eiseigaku Zasshi Sangyo Eiseigaku Zasshi=Sangyo Eiseigaku Zasshi;; Sangyo igaku. Japanese journal of industrial health = Sangyo Igaku Sangyo Igaku (Japanese Journal of Industrial Health) = Sangyo Igaku Sangyo Ika Daigaku Zasshi=Sangyo Ika Daigaku Zasshi;; Sanita pubblica = Sanita Pubblica Sanitary Selection of The Grapevine = Colloq Inra Sanitary Selection of The Grapevine = Colloq. Inra. San Jose studies = San Jose Stud Sankhya = Sankhya Sankhya. Series B. [Methodological.] = Sankhya Ser B Sankhya-the Indian Journal of Statistics Series A = Sankhya Ser A Sankhya-the Indian Journal of Statistics Series A = Sankhya. Ser. A Sankhya-the Indian Journal of Statistics Series B = Sankhya Ser B Sankhya-the Indian Journal of Statistics Series B = Sankhya. Ser. B Sankyo Kenkyusho Nenpo = Sankyo Kenkyusho Nenpo Sanop Misaengmul Hakhoechi = Sanop Misaengmul Hakhoechi Sanop Misaengmul Hakhoe chi = Sanop Misaengmul Hakhoe Chi San Pedro Martir: Astronomical Site Evaluation = Rev Mex Ast Astr San Pedro Martir: Astronomical Site Evaluation = Rev. Mex. Ast. Astr. Sanskrit Computational Linguistics, Invited Papers = Lect Notes Artif Int Sanskrit Computational Linguistics, Invited Papers = Lect. Notes. Artif. Int. Sanskrit Computational Linguistics = Lect Notes Artif Int Sanskrit Computational Linguistics = Lect. Notes. Artif. Int. Santa Clara computer and high-technology law journal = Santa Clara Comput High Technol Law J Santa Clara law review = Santa Clara Law Rev Santa Clara lawyer (1961) = Santa Clara Lawyer Santa Fe Institute Studies in The Sciences of Complexity - Lecture Volumes = Sfi Sci C L Santa Fe Institute Studies in The Sciences of Complexity - Lecture Volumes = Sfi. Sci. C. L. Santa Fe Institute Studies in The Sciences of Complexity - Proceedings Volumes = Sfi S Sci C Santa Fe Institute Studies in The Sciences of Complexity - Proceedings Volumes = Sfi. S. Sci. C. Santa Fe Institute Studies in the Sciences of Complexity = Santa Fe Inst. Stud. Sci. Complexity Lecture Notes Santa Fe Institute Studies in the Sciences of Complexity = Santa Fe Inst. Stud. Sci. Complexity Proc. Santa Rita Experimental Range: 100 Years (1903 to 2003) of Accomplishments and Contributions, Conference Proceedings = Us For Serv Rmrs-p Santa Rita Experimental Range: 100 Years (1903 to 2003) of Accomplishments and Contributions, Conference Proceedings = Us. For. Serv. Rmrs-p. Sante mentale au Quebec = Sante Ment Que Sante Mentale au Quebec = Sante Ment. Que. Sante (Montrouge, France) = Sante Sante Publique = Sante Publique Sante Publique = Sante Publique (Bucur.) Sante publique (Vandoeuvre-les-Nancy, France) = Sante Publique Sante Publique (Vandoeuvre-Les-Nancy=Sante Publique;; Sante Quebec : revue de la Corporation professionnelle des infirmieres et infirmiers auxiliaires du Quebec = Sante Que Sante Quebec = Sante Que. Sante Salud = Sante Salud Sante=Sante;; Sante = Sante Santiago / [Universidad de Oriente] = Santiago Santo Tomas journal of medicine = St Tomas J Med Santo Tomas nursing journal = St Tomas Nurs J Santo Tomas Nursing Journal = St. Tomas Nurs. J. SA Nursing Journal = SA Nurs. J. SA nursing journal. SA verplegingstydskrif = SA Nurs J Sao Paulo Medical Journal = Sao Paulo Med J Sao Paulo Medical Journal = Sao Paulo Med. J. Sap Excellence = Sap Excell Sap Excellence = Sap Excell. Sapiential Perspectives: Wisdom Literature in Light of The Dead Sea Scrolls = Stud Text Des Judah Sapiential Perspectives: Wisdom Literature in Light of The Dead Sea Scrolls = Stud. Text. Des. Judah. Sapienza = Sapienza Saponins in Food, Feedstuffs and Medicinal Plants = Pr Phyt Soc Saponins in Food, Feedstuffs and Medicinal Plants = Pr. Phyt. Soc. Saponins Used in Food and Agriculture = Adv Exp Med Biol Saponins Used in Food and Agriculture = Adv. Exp. Med. Biol. Saponins Used in Traditional and Modern Medicine = Adv Exp Med Biol Saponins Used in Traditional and Modern Medicine = Adv. Exp. Med. Biol. Sapphire: Material, Manufacturing, Applications = Micro- Opto-electron Sapphire: Material, Manufacturing, Applications = Micro-. Opto-electron. Sapporo 2007: Algebraic and Arithmetic Structures of Moduli Spaces = Adv Stu P M Sapporo 2007: Algebraic and Arithmetic Structures of Moduli Spaces = Adv. Stu. P. M. Sapporo Igaku Zasshi (Sapporo Medical Journal) = Sapporo Igaku Zasshi Sapporo igaku zasshi. The Sapporo medical journal = Sapporo Igaku Zasshi Saproxylic Beetles: Their Role and Diversity in European Woodland and Tree Habitats - Proceedings of The 5th Symposium and Workshop = Pensoft Ser Faunist Saproxylic Beetles: Their Role and Diversity in European Woodland and Tree Habitats - Proceedings of The 5th Symposium and Workshop = Pensoft. Ser. Faunist. Sarajevo Under Siege: Anthropology in Wartime = Ethnogr Polit Violen Sarajevo Under Siege: Anthropology in Wartime = Ethnogr. Polit. Violen. Sar and Qsar in Environmental Research = Sar Qsar Environ Res Sar and Qsar in Environmental Research = Sar Qsar Environ. Res. Sar and QSAR In Environmental Research=SAR QSAR Environ Res;; SAR and QSAR in environmental research = SAR QSAR Environ Res SAR and QSAR in Environmental Research = SAR QSAR Environ. Res. Saratov Fall Meeting 2000: Coherent Optics of Ordered and Random Media = P Soc Photo-opt Ins Saratov Fall Meeting 2000: Coherent Optics of Ordered and Random Media = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2000: Laser Physics and Photonics; and Spectroscopy and Molecular Modeling = Proc Spie Saratov Fall Meeting 2000: Laser Physics and Photonics; and Spectroscopy and Molecular Modeling = Proc. Spie. Saratov Fall Meeting 2000: Laser Physics and Photonics; and Spectroscopy and Molecular Modeling = P Soc Photo-opt Ins Saratov Fall Meeting 2000: Laser Physics and Photonics; and Spectroscopy and Molecular Modeling = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2000: Optical Technologies in Biophysics and Medicine Ii = P Soc Photo-opt Ins Saratov Fall Meeting 2000: Optical Technologies in Biophysics and Medicine Ii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2001: Coherent Optics of Ordered and Random Media Ii = P Soc Photo-opt Ins Saratov Fall Meeting 2001: Coherent Optics of Ordered and Random Media Ii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2001: Laser Physics and Photonics Spectroscopy, and Molecular Modeling Ii = P Soc Photo-opt Ins Saratov Fall Meeting 2001: Laser Physics and Photonics Spectroscopy, and Molecular Modeling Ii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2001: Optical Technologies in Biophysics and Medicine Iii = Proc Spie Saratov Fall Meeting 2001: Optical Technologies in Biophysics and Medicine Iii = Proc. Spie. Saratov Fall Meeting 2001: Optical Technologies in Biophysics and Medicine Iii = P Soc Photo-opt Ins Saratov Fall Meeting 2001: Optical Technologies in Biophysics and Medicine Iii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2002: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling Iii; Coherent Optics of Ordered and Random Media Iii = P Soc Photo-opt Ins Saratov Fall Meeting 2002: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling Iii; Coherent Optics of Ordered and Random Media Iii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2002: Optical Technologies in Biophysics and Medicine Iv = Proc Spie Saratov Fall Meeting 2002: Optical Technologies in Biophysics and Medicine Iv = Proc. Spie. Saratov Fall Meeting 2002: Optical Technologies in Biophysics and Medicine Iv = P Soc Photo-opt Ins Saratov Fall Meeting 2002: Optical Technologies in Biophysics and Medicine Iv = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2003: Coherent Optics of Ordered and Random Media Iv = P Soc Photo-opt Ins Saratov Fall Meeting 2003: Coherent Optics of Ordered and Random Media Iv = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2003: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling Iv = P Soc Photo-opt Ins Saratov Fall Meeting 2003: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling Iv = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2003: Optical Technologies in Biophysics and Medicine V = Proc Spie Saratov Fall Meeting 2003: Optical Technologies in Biophysics and Medicine V = Proc. Spie. Saratov Fall Meeting 2003: Optical Technologies in Biophysics and Medicine V = P Soc Photo-opt Ins Saratov Fall Meeting 2003: Optical Technologies in Biophysics and Medicine V = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2004: Coherent Optics of Ordered and Random Media V = Proc Spie Saratov Fall Meeting 2004: Coherent Optics of Ordered and Random Media V = Proc. Spie. Saratov Fall Meeting 2004: Coherent Optics of Ordered and Random Media V = P Soc Photo-opt Ins Saratov Fall Meeting 2004: Coherent Optics of Ordered and Random Media V = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2004: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling V = Proc Spie Saratov Fall Meeting 2004: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling V = Proc. Spie. Saratov Fall Meeting 2004: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling V = P Soc Photo-opt Ins Saratov Fall Meeting 2004: Laser Physics and Photonics, Spectroscopy, and Molecular Modeling V = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2004: Optical Technologies in Biophysics and Medicine Vi = Proc Spie Saratov Fall Meeting 2004: Optical Technologies in Biophysics and Medicine Vi = Proc. Spie. Saratov Fall Meeting 2004: Optical Technologies in Biophysics and Medicine Vi = P Soc Photo-opt Ins Saratov Fall Meeting 2004: Optical Technologies in Biophysics and Medicine Vi = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2005: Coherent Optics of Ordered and Random Media Vi = Proc Spie Saratov Fall Meeting 2005: Coherent Optics of Ordered and Random Media Vi = Proc. Spie. Saratov Fall Meeting 2005: Coherent Optics of Ordered and Random Media Vi = P Soc Photo-opt Ins Saratov Fall Meeting 2005: Coherent Optics of Ordered and Random Media Vi = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2005: Laser Physics and Photonics, Spectroscopy and Molecular Modeling Vi = P Soc Photo-opt Ins Saratov Fall Meeting 2005: Laser Physics and Photonics, Spectroscopy and Molecular Modeling Vi = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2005: Optical Technologies in Biophysics and Medicine Vii = Proc Spie Saratov Fall Meeting 2005: Optical Technologies in Biophysics and Medicine Vii = Proc. Spie. Saratov Fall Meeting 2005: Optical Technologies in Biophysics and Medicine Vii = P Soc Photo-opt Ins Saratov Fall Meeting 2005: Optical Technologies in Biophysics and Medicine Vii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2006: Coherent Optics of Ordered and Random Media Vii = Proc Spie Saratov Fall Meeting 2006: Coherent Optics of Ordered and Random Media Vii = Proc. Spie. Saratov Fall Meeting 2006: Coherent Optics of Ordered and Random Media Vii = P Soc Photo-opt Ins Saratov Fall Meeting 2006: Coherent Optics of Ordered and Random Media Vii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2006: Laser Physics and Photonics, Spectroscopy and Molecular Modeling Vii = P Soc Photo-opt Ins Saratov Fall Meeting 2006: Laser Physics and Photonics, Spectroscopy and Molecular Modeling Vii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2006: Optical Technologies in Biophysics and Medicine Viii = Proc Spie Saratov Fall Meeting 2006: Optical Technologies in Biophysics and Medicine Viii = Proc. Spie. Saratov Fall Meeting 2006: Optical Technologies in Biophysics and Medicine Viii = P Soc Photo-opt Ins Saratov Fall Meeting 2006: Optical Technologies in Biophysics and Medicine Viii = P. Soc. Photo-opt. Ins. Saratov Fall Meeting 2009: International School for Junior Scientists and Students On Optics, Laser Physics, and Biophotonics = Proc Spie Saratov Fall Meeting 2009: International School for Junior Scientists and Students On Optics, Laser Physics, and Biophotonics = Proc. Spie. Saratov Fall Meeting 2009: International School for Junior Scientists and Students On Optics, Laser Physics, and Biophotonics = P Soc Photo-opt Ins Saratov Fall Meeting 2009: International School for Junior Scientists and Students On Optics, Laser Physics, and Biophotonics = P. Soc. Photo-opt. Ins. Saratov Fall Meeting '98: Light Scattering Technologies for Mechanics, Biomedicine, and Material Science = Proc Spie Saratov Fall Meeting '98: Light Scattering Technologies for Mechanics, Biomedicine, and Material Science = Proc. Spie. Saratov Fall Meeting '98: Light Scattering Technologies for Mechanics, Biomedicine, and Material Science = P Soc Photo-opt Ins Saratov Fall Meeting '98: Light Scattering Technologies for Mechanics, Biomedicine, and Material Science = P. Soc. Photo-opt. Ins. Saratov Fall Meeting '99: Laser Physics and Spectroscopy = P Soc Photo-opt Ins Saratov Fall Meeting '99: Laser Physics and Spectroscopy = P. Soc. Photo-opt. Ins. Sarcoidosis and Other Granulomatous Disorders = Sarcoid Sup Sarcoidosis and Other Granulomatous Disorders = Sarcoid. Sup. Sarcoidosis = Sarcoidosis Sarcoidosis - Supplement = Sarcoid Sup Sarcoidosis - Supplement = Sarcoid. Sup. Sarcoidosis, vasculitis, and diffuse lung diseases : official journal of WASOG / World Association of Sarcoidosis and Other Granulomatous Disorders = Sarcoidosis Vasc Diffuse Lung Dis Sarcoidosis Vasculitis and Diffuse Lung Diseases = Sarcoidosis Vasc Dif Sarcoidosis Vasculitis and Diffuse Lung Diseases = Sarcoidosis Vasc. Dif. Sarcoidosis, Vasculitis, and Diffuse Lung Diseases=Sarcoidosis Vasc Diffuse Lung Dis;; Sarcoidosis, Vasculitis, and Diffuse Lung Diseases = Sarcoidosis Vasc. Diffuse Lung Dis. Sarcoma = Sarcoma Sarcomere and Skeletal Muscle Disease = Adv Exp Med Biol Sarcomere and Skeletal Muscle Disease = Adv. Exp. Med. Biol. Sar Data Processing for Remote Sensing = P Soc Photo-opt Ins Sar Data Processing for Remote Sensing = P. Soc. Photo-opt. Ins. Sardis. Publications of the American Society for the Excavation of Sardis = Sardis Sargetia. Acta Musei regionalis Devensis = Sargetia Sar Image Analysis, Modeling, and Techniques Iii = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Iii = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques Ii = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Ii = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques Iv = Proc Spie Sar Image Analysis, Modeling, and Techniques Iv = Proc. Spie. Sar Image Analysis, Modeling, and Techniques Iv = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Iv = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques Ix = Proc Spie Sar Image Analysis, Modeling, and Techniques Ix = Proc. Spie. Sar Image Analysis, Modeling, and Techniques Ix = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Ix = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques = Proc Spie Sar Image Analysis, Modeling, and Techniques = Proc. Spie. Sar Image Analysis, Modeling, and Techniques = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques Viii = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Viii = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques Vi = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques Vi = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques V = Proc Spie Sar Image Analysis, Modeling, and Techniques V = Proc. Spie. Sar Image Analysis, Modeling, and Techniques V = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques V = P. Soc. Photo-opt. Ins. Sar Image Analysis, Modeling, and Techniques X = P Soc Photo-opt Ins Sar Image Analysis, Modeling, and Techniques X = P. Soc. Photo-opt. Ins. Sarkophag-Studien = SarkSt Sarsia = Sarsia Sars in Context: Memory, History, Policy = Mcgill Queens Assoc Sars in Context: Memory, History, Policy = Mcgill. Queens. Assoc. Sars: Reception and Interpretation in Three Chinese Cities = Routl Contemp China Sars: Reception and Interpretation in Three Chinese Cities = Routl. Contemp. China. Sartov Fall Meeting '99: Optical Technologies in Biophysics and Medicine = Proc Spie Sartov Fall Meeting '99: Optical Technologies in Biophysics and Medicine = Proc. Spie. Sartov Fall Meeting '99: Optical Technologies in Biophysics and Medicine = P Soc Photo-opt Ins Sartov Fall Meeting '99: Optical Technologies in Biophysics and Medicine = P. Soc. Photo-opt. Ins. Sartre On The Body = Philos Depth Sartre On The Body = Philos. Depth. Sarvekshana = Sarvekshana Sas for Data Analysis: Intermediate Statistical Methods = Stat Comput Ser Sas for Data Analysis: Intermediate Statistical Methods = Stat. Comput. Ser. Saskatchewan Geological Society Special Publication = Sask Geo Sp Saskatchewan Geological Society Special Publication = Sask. Geo. Sp. Saskatchewan history = Sask Hist Saskatchewan law review = Sask Law Rev SA. Sociological analysis = Sociol Anal Satellite Altimetry for Geodesy, Geophysics and Oceanography, Proceedings = Iag Symp Satellite Altimetry for Geodesy, Geophysics and Oceanography, Proceedings = Iag. Symp. Satellite Applications for Energy Budgets and The Hydrological Cycle = Adv Space Res Satellite Applications for Energy Budgets and The Hydrological Cycle = Adv. Space. Res. Satellite Communications and Navigation Systems = Sig Com Tec Satellite Communications and Navigation Systems = Sig. Com. Tec. Satellite Communications and Navigation Systems = Signals Commun Techn Satellite Communications and Navigation Systems = Signals. Commun. Techn. Satellite Data Applications: Weather and Climate = Adv Space Res Satellite Data Applications: Weather and Climate = Adv. Space. Res. Satellite Data Applications: Weather and Climate = Adv Space Res-series Satellite Data Applications: Weather and Climate = Adv. Space. Res-series. Satellite Data Compression, Communication, and Processing Iv = Proc Spie Satellite Data Compression, Communication, and Processing Iv = Proc. Spie. Satellite Data Compression, Communication, and Processing Iv = P Soc Photo-opt Ins Satellite Data Compression, Communication, and Processing Iv = P. Soc. Photo-opt. Ins. Satellite Data Compression, Communications, and Archiving Iii = Proc Spie Satellite Data Compression, Communications, and Archiving Iii = Proc. Spie. Satellite Data Compression, Communications, and Archiving Iii = P Soc Photo-opt Ins Satellite Data Compression, Communications, and Archiving Iii = P. Soc. Photo-opt. Ins. Satellite Data Compression, Communications and Archiving Ii = P Soc Photo-opt Ins Satellite Data Compression, Communications and Archiving Ii = P. Soc. Photo-opt. Ins. Satellite Data Compression, Communications, and Processing Vi = P Soc Photo-opt Ins Satellite Data Compression, Communications, and Processing Vi = P. Soc. Photo-opt. Ins. Satellite Data for Atmosphere, Continent and Ocean Research = Adv Space Res Satellite Data for Atmosphere, Continent and Ocean Research = Adv. Space. Res. Satellite Data for Atmosphere, Continent and Ocean Research = Adv Space Res-series Satellite Data for Atmosphere, Continent and Ocean Research = Adv. Space. Res-series. Satellite Dynamics in The Era of Interdisciplinary Space Geodesy = Adv Space Res-series Satellite Dynamics in The Era of Interdisciplinary Space Geodesy = Adv. Space Res-series. Satellite Dynamics in The Era of Intredisciplinary Space Geodesy = Adv Space Res Satellite Dynamics in The Era of Intredisciplinary Space Geodesy = Adv. Space Res. Satellite Dynamics, Orbit Analysis and Combination of Space Techniques = Adv Space Res Satellite Dynamics, Orbit Analysis and Combination of Space Techniques = Adv. Space Res. Satellite Dynamics, Orbit Analysis and Combination of Space Techniques = Adv Space Res-series Satellite Dynamics, Orbit Analysis and Combination of Space Techniques = Adv. Space Res-series. Satellite Events At The Models 2005 Conference = Lect Notes Comput Sc Satellite Events At The Models 2005 Conference = Lect. Notes. Comput. Sc. Satellite Monitoring of The Earth's Surface and Atmosphere = Adv Space Res Satellite Monitoring of The Earth's Surface and Atmosphere = Adv. Space. Res. Satellite Navigation Systems: Policy, Commercial and Technical Interaction = Spac Stud Satellite Navigation Systems: Policy, Commercial and Technical Interaction = Spac. Stud. Satellite Orbits = Adv Space Res Satellite Orbits = Adv. Space. Res. Satellite Radar Interferometry: Subsidence Monitoring Techniques = Remote Sens Digit Im Satellite Radar Interferometry: Subsidence Monitoring Techniques = Remote. Sens. Digit. Im. Satellite Remote Sensing and Modeling of Clouds and The Atmosphere = P Soc Photo-opt Ins Satellite Remote Sensing and Modeling of Clouds and The Atmosphere = P. Soc. Photo-opt. Ins. Satellite Remote Sensing for Agricultural Projects = World Ban T Satellite Remote Sensing for Agricultural Projects = World. Ban. T. Satellite Remote Sensing of Clouds and The Atmosphere Iii = Proc Spie Satellite Remote Sensing of Clouds and The Atmosphere Iii = Proc. Spie. Satellite Remote Sensing of Clouds and The Atmosphere Iii = P Soc Photo-opt Ins Satellite Remote Sensing of Clouds and The Atmosphere Iii = P. Soc. Photo-opt. Ins. Satellite Remote Sensing of Clouds and The Atmosphere Ii = P Soc Photo-opt Ins Satellite Remote Sensing of Clouds and The Atmosphere Ii = P. Soc. Photo-opt. Ins. Satellite Remote Sensing of Clouds and The Atmosphere Iv = Proc Spie Satellite Remote Sensing of Clouds and The Atmosphere Iv = Proc. Spie. Satellite Remote Sensing of Clouds and The Atmosphere Iv = P Soc Photo-opt Ins Satellite Remote Sensing of Clouds and The Atmosphere Iv = P. Soc. Photo-opt. Ins. Satellites and Defective Viral Rnas = Curr Top Microbiol Satellites and Defective Viral Rnas = Curr. Top. Microbiol. Satellites and Tidal Streams = Astr Soc P Satellites and Tidal Streams = Astr. Soc. P. Satellite Symposium On Pig Management Information Systems = Mg Inia Satellite Symposium On Pig Management Information Systems = Mg. Inia. Satisfying Safety Goals By Probabilistic Risk Assessment = Springer Ser Reliab Satisfying Safety Goals By Probabilistic Risk Assessment = Springer. Ser. Reliab. Saturday review of the sciences = Saturday Rev Sci Saturday review = Saturday Rev Saturday Review = Saturday Rev Saturday Review = Saturday Rev. Saturday review/world = Saturday Rev World Satyajit Ray's The Chess Players and Post Colonial Film Theory = Lang Discourse Soc Satyajit Ray's The Chess Players and Post Colonial Film Theory = Lang. Discourse. Soc. Saude E Sociedade = Saude Soc Saude E Sociedade = Saude Soc. Saudi Journal of Biological Sciences = Saudi J Biol Sci Saudi Journal of Biological Sciences = Saudi J. Biol. Sci. Saudi journal of kidney diseases and transplantation : an official publication of the Saudi Center for Organ Transplantation, Saudi Arabia = Saudi J Kidney Dis Transpl Saudi medical journal = Saudi Med J Saudi Medical Journal = Saudi Med J Saudi Medical Journal = Saudi Med. J. Saudi Pharmaceutical Journal = Saudi Pharm J Saudi Pharmaceutical Journal = Saudi Pharm. J. Säugetierkundliche Mitteilungen = Säugetierkd. Mitt. Saussurea = Saussurea Sautuola. Revista del Instituto de prehistoria y arqueologia Sautuola = Sautuola Savanna = Savanna Savaria. Bulletin der Museen des Komitats Vas = Savaria Saving Children At Risk = Sage Foc Ed Saving Children At Risk = Sage. Foc. Ed. Saving Human Lives = Issues Bus Ethics Saving Human Lives = Issues. Bus. Ethics. Savings Behavior = Sc J Econ S Savings Behavior = Sc. J. Econ. S. Saving Shame: Martyrs, Saints, and Other Abject Subjects = Divin Reread Late An Saving Shame: Martyrs, Saints, and Other Abject Subjects = Divin. Reread. Late. An. Savoirs Actuels = Savoirs Actuels Savoirs De L'intervention En Sport: Entre Sciences Et Pratiques? = Sci Soc-france Savoirs De L'intervention En Sport: Entre Sciences Et Pratiques? = Sci. Soc-france. Sayings Source Q and The Historical Jesus = Bib Eph The Sayings Source Q and The Historical Jesus = Bib. Eph. The Sbac-oad 2006: 18th International Symposium On Computer Architecture and High Performance Computing = Int Sym Comp Archit Sbac-oad 2006: 18th International Symposium On Computer Architecture and High Performance Computing = Int. Sym. Comp. Archit. SBC : newsletter of the Society for Bioethics Consultation = SBC Sbornik archivnich praci = Sb Arch Pr Sbornik Ceske geograficke spolecnosti = Sbs Ces Geogr Spol Sbornik lekarsky = Sb Lek Sbornik Lekarsky=Sb Lek;; Sbornik Lekarsky = Sb Lek Sbornik Lekarsky = Sb. Lek. Sbornik Mathematics = Sb Math+ Sbornik Mathematics = Sb. Math+.+ Sborník Prací Filosofické Fak. Brnenské Univ. Rada archeol. klas. = SPFB Sbornik praci Filosoficke fakulty brnenske university. C, Rada historicka = Sb Pr Filos Fak Brnenske Univ Rada Hist Sborník Prací Filosofické Fakulty Brnenské University = SPFB(klas) Sborník prací Filozofické fakulty Brněnské univerzity. M, Rada archeologická = SborBrno Sbornik pro pathofysiologii traveni a vyzivy; gastroenterologia bohema = Sb Pathofysiol Traveni Vyz Gastroenterol Bohema Sbornik = Sb. Math. Sbornik trudov. Azerbaidzhanskii gosudarstvennyi meditsinskii institut im. N. Narimanova = Sb Tr Azerbaidzhanskii Gos Meditsinskii Inst N Narimanova Sbornik vedeckych praci Lekarske fakulty Karlovy university v Hradci Kralove = Sb Ved Pr Lek Fak Karlovy Univerzity Hradci Kralove Sbornik Vedeckych Praci Lekarske Fakulty Karlovy Univerzity v Hradci Kralove = Sb. Ved. Pr. Lek. Fak. Karlovy Univerzity Hradci Kralove Sbornik vedeckych praci Lekarske fakulty Karlovy univerzity v Hradci Kralove. Supplementum = Sb Ved Pr Lek Fak Karlovy Univerzity Hradci Kralove Suppl Sbornik Vedeckych Praci Lekarske Fakulty Karlovy Univerzity v Hradci Kralove. Supplementum = Sb. Ved. Pr. Lek. Fak. Karlovy Univerzity Hradci Kralove. Suppl. Sbornik Vedeckych Praci, Vysoka Skola Chemickotechnologicka Pardubice = Sb. Ved. Pr., Vys. Sk. Chemickotechnol. Pardubice Sbornik Vysoke Skoly Chemicko-technologicke V Praze-potraviny = Sb Vys Sk Chem Techn Sbornik Vysoke Skoly Chemicko-technologicke V Praze-potraviny = Sb. Vys. Sk. Chem. Techn. S-bpm One-setting The Stage for Subject-oriented Business Process Management = Comm Com Inf Sc S-bpm One-setting The Stage for Subject-oriented Business Process Management = Comm. Com. Inf. Sc. Scada Journal = SCADA J SCADA Journal = SCADA J. Scadron70: Workshop On Scalar Mesons and Related Topics = Aip Conf Proc Scadron70: Workshop On Scalar Mesons and Related Topics = Aip. Conf. Proc. Scai '95 - Fifth Scandinavian Conference On Artificial Intelligence = Fr Art Int Scai '95 - Fifth Scandinavian Conference On Artificial Intelligence = Fr. Art. Int. Scalability and Traffic Control in Ip Networks Ii = P Soc Photo-opt Ins Scalability and Traffic Control in Ip Networks Ii = P. Soc. Photo-opt. Ins. Scalability and Traffic Control in Ip Networks = Proc Spie Scalability and Traffic Control in Ip Networks = Proc. Spie. Scalability and Traffic Control in Ip Networks = P Soc Photo-opt Ins Scalability and Traffic Control in Ip Networks = P. Soc. Photo-opt. Ins. Scalability of Networks and Services, Proceedings = Lect Notes Comput Sc Scalability of Networks and Services, Proceedings = Lect. Notes. Comput. Sc. Scalable Uncertainty Management, Proceedings = Lect Notes Artif Int Scalable Uncertainty Management, Proceedings = Lect. Notes. Artif. Int. Scalable Uncertainty Management, Proceedings = Lect Notes Comput Sc Scalable Uncertainty Management, Proceedings = Lect. Notes. Comput. Sc. Scalable Uncertainty Management, Sum 2008 = Lect Notes Artif Int Scalable Uncertainty Management, Sum 2008 = Lect. Notes. Artif. Int. Scalar and Asymptotic Scalar Derivatives: Theory and Applications = Springer Ser Optim A Scalar and Asymptotic Scalar Derivatives: Theory and Applications = Springer. Ser. Optim. A. Scalar Mesons: An Interesting Puzzle for Qcd = Aip Conf Proc Scalar Mesons: An Interesting Puzzle for Qcd = Aip. Conf. Proc. Scale and Complexity in Plant Systems Research: Gene-plant-crop Relations = Wag Ur Fron Scale and Complexity in Plant Systems Research: Gene-plant-crop Relations = Wag. Ur. Fron. Scale, Heterogeneity, and The Structure and Diversity of Ecological Communities = Monogr Popul Biol Scale, Heterogeneity, and The Structure and Diversity of Ecological Communities = Monogr. Popul. Biol. Scale Invariance, Interfaces, and Non-equilibrium Dynamics = Nato Adv Sci I B-phy Scale Invariance, Interfaces, and Non-equilibrium Dynamics = Nato. Adv. Sci. I. B-phy. Scale Invariance, Interfaces, and Non-equilibrium Dynamics = Nato Adv Sci Inst Se Scale Invariance, Interfaces, and Non-equilibrium Dynamics = Nato. Adv. Sci. Inst. Se. Scale-space and Morphology in Computer Vision, Proceedings = Lect Notes Comput Sc Scale-space and Morphology in Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Scale Space and Pde Methods in Computer Vision, Proceedings = Lect Notes Comput Sc Scale Space and Pde Methods in Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Scale Space and Variational Methods in Computer Vision, Proceedings = Lect Notes Comput Sc Scale Space and Variational Methods in Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Scale Space Methods in Computer Vision, Proceedings = Lect Notes Comput Sc Scale Space Methods in Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Scale-space Theories in Computer Vision = Lect Notes Comput Sc Scale-space Theories in Computer Vision = Lect. Notes. Comput. Sc. Scale-space Theory in Computer Vision = Lect Notes Comput Sc Scale-space Theory in Computer Vision = Lect. Notes. Comput. Sc. Scaling in Biology = Sfi S Sci C Scaling in Biology = Sfi. S. Sci. C. Scaling in Integrated Assessment = Integrat Ass Studies Scaling in Integrated Assessment = Integrat. Ass. Studies. Scaling in Soil Physics : Principles and Applications = Sssa Spec Publ Scaling in Soil Physics : Principles and Applications = Sssa. Spec. Publ. Scaling Limits in Statistical Mechanics and Microstructures in Continuum Mechanics = Theor Math Phys Ser Scaling Limits in Statistical Mechanics and Microstructures in Continuum Mechanics = Theor. Math. Phys. Ser. Scaling Relations in Experimental Ecology = Com Eco Sys Scaling Relations in Experimental Ecology = Com. Eco. Sys. Scaling Topic Maps = Lect Notes Artif Int Scaling Topic Maps = Lect. Notes. Artif. Int. Scalpel and quill = Scapel Quill Scalpel = Scalpel (Brux.) Scalpel & tongs : American journal of medical philately = Scalpel Tongs Scandia = Scandia Scandinavian actuarial journal = Scand Actuar J Scandinavian Actuarial Journal = Scand. Actuar. J. Scandinavian Actuarial Journal = Scand Actuar J Scandinavian Actuarial Journal = Scand. Actuar. J. Scandinavian audiology = Scand Audiol Scandinavian Audiology=Scand Audiol;; Scandinavian Audiology = Scand Audiol Scandinavian Audiology = Scand. Audiol. Scandinavian audiology. Supplementum = Scand Audiol Suppl Scandinavian Audiology. Supplementum=Scand Audiol Suppl;; Scandinavian Audiology. Supplementum = Scand. Audiol. Suppl. Scandinavian Cardiovascular Journal=Scand Cardiovasc J;; Scandinavian Cardiovascular Journal = Scand Cardiovasc J Scandinavian Cardiovascular Journal = Scand. Cardiovasc. J. Scandinavian cardiovascular journal : SCJ = Scand Cardiovasc J Scandinavian cardiovascular journal. Supplement = Scand Cardiovasc J Suppl Scandinavian Cardiovascular Journal. Supplement=Scand Cardiovasc J Suppl;; Scandinavian Cardiovascular Journal. Supplement = Scand. Cardiovasc. J. Suppl. Scandinavian Conference On Artificial Intelligence - 89 = Fr Art Int Scandinavian Conference On Artificial Intelligence - 89 = Fr. Art. Int. Scandinavian Conference On Artificial Intelligence - 91 : Odins Ravens = Fr Art Int Scandinavian Conference On Artificial Intelligence - 91 : Odins Ravens = Fr. Art. Int. Scandinavian Conference On Artificial Intelligence - 93 = Fr Art Int Scandinavian Conference On Artificial Intelligence - 93 = Fr. Art. Int. Scandinavian Economic History Review=Scand. Econ. Hist. Rev. Scandinavian Housing & Planning Research = Scand Hous Plan Res Scandinavian Housing & Planning Research = Scand. Hous. Plan. Res. Scandinavian Information Systems Research = Lect Notes Bus Inf Scandinavian Information Systems Research = Lect. Notes. Bus. Inf. Scandinavian Information Systems Research = Lect Notes Bus Inf P Scandinavian Information Systems Research = Lect. Notes. Bus. Inf. P. Scandinavian journal of caring sciences = Scand J Caring Sci Scandinavian Journal of Caring Sciences = Scand J Caring Sci Scandinavian Journal of Caring Sciences = Scand. J. Caring Sci. Scandinavian journal of clinical and laboratory investigation = Scand J Clin Lab Invest Scandinavian Journal of Clinical and Laboratory Investigation=Scand J Clin Lab Invest;; Scandinavian Journal of Clinical and Laboratory Investigation = Scand. J. Clin. Lab. Invest. Scandinavian Journal of Clinical and Laboratory Investigation. Supplement=Scand J Clin Lab Invest Suppl;; Scandinavian Journal of Clinical and Laboratory Investigation. Supplement = Scand. J. Clin. Lab. Invest. Suppl. Scandinavian journal of clinical and laboratory investigation. Supplementum = Scand J Clin Lab Invest Suppl Scandinavian Journal of Clinical & Laboratory Investigation = Scand J Clin Lab Inv Scandinavian Journal of Clinical & Laboratory Investigation = Scand. J. Clin. Lab. Inv. Scandinavian journal of dental research = Scand J Dent Res Scandinavian Journal of Dental Research = Scand J Dent Res Scandinavian Journal of Dental Research = Scand. J. Dent. Res. Scandinavian journal of development alternatives = Scand J Dev Altern Scandinavian Journal of Economics=Scand. J. Econ. Scandinavian Journal of Economics = Scand J Econ Scandinavian Journal of Economics = Scand. J. Econ. Scandinavian Journal of Economics Series = Sc J Econ S Scandinavian Journal of Economics Series = Sc. J. Econ. S. Scandinavian Journal of Educational Research = Scand J Educ Res Scandinavian Journal of Educational Research = Scand. J. Educ. Res. Scandinavian Journal of Forest Research = Scand J Forest Res Scandinavian Journal of Forest Research = Scand. J. Forest Res. Scandinavian Journal of Forest Research = Scand. J. For. Res. Scandinavian Journal of Gastroenterology = Scand J Gastroentero Scandinavian Journal of Gastroenterology = Scand. J. Gastroentero. Scandinavian journal of gastroenterology = Scand J Gastroenterol Scandinavian Journal of Gastroenterology=Scand J Gastroenterol;; Scandinavian Journal of Gastroenterology = Scand. J. Gastroenterol. Scandinavian journal of gastroenterology. Supplement = Scand J Gastroenterol Suppl Scandinavian Journal of Gastroenterology. Supplement=Scand J Gastroenterol Suppl;; Scandinavian Journal of Gastroenterology. Supplement = Scand. J. Gastroenterol. Suppl. Scandinavian journal of haematology = Scand J Haematol Scandinavian Journal of Haematology = Scand J Haematol Scandinavian Journal of Haematology = Scand. J. Haematol. Scandinavian journal of haematology. Supplementum = Scand J Haematol Suppl Scandinavian Journal of Haematology. Supplementum = Scand. J. Haematol. Suppl. Scandinavian journal of history = Scand J Hist Scandinavian Journal of History = Scand J Hist Scandinavian Journal of History = Scand. J. Hist. Scandinavian Journal of Hospitality and Tourism = Scand J Hosp Tour Scandinavian Journal of Hospitality and Tourism = Scand. J. Hosp. Tour. Scandinavian journal of immunology = Scand J Immunol Scandinavian Journal of Immunology=Scand J Immunol;; Scandinavian Journal of Immunology = Scand J Immunol Scandinavian Journal of Immunology = Scand. J. Immunol. Scandinavian journal of immunology. Supplement = Scand J Immunol Suppl Scandinavian Journal of Immunology. Supplement=Scand J Immunol Suppl;; Scandinavian Journal of Immunology. Supplement = Scand. J. Immunol. Suppl. Scandinavian journal of infectious diseases = Scand J Infect Dis Scandinavian Journal of Infectious Diseases=Scand J Infect Dis;; Scandinavian Journal of Infectious Diseases = Scand J Infect Dis Scandinavian Journal of Infectious Diseases = Scand. J. Infect. Dis. Scandinavian journal of infectious diseases. Supplementum = Scand J Infect Dis Suppl Scandinavian Journal of Infectious Diseases. Supplementum=Scand J Infect Dis Suppl;; Scandinavian Journal of Infectious Diseases. Supplementum = Scand. J. Infect. Dis. Suppl. Scandinavian Journal of Laboratory Animal Science = Scand J Lab Anim Sci Scandinavian Journal of Laboratory Animal Science = Scand. J. Lab. Anim. Sci. Scandinavian Journal of Management = Scand J Manag Scandinavian Journal of Management = Scand. J. Manag. Scandinavian Journal of Medicine and Science in Sports = Scand. J. Med. Sci. Sports Scandinavian Journal of Medicine and Science In Sports=Scand J Med Sci Sports;; Scandinavian Journal of Medicine & Science in Sports = Scand J Med Sci Spor Scandinavian Journal of Medicine & Science in Sports = Scand. J. Med. Sci. Spor. Scandinavian journal of medicine & science in sports = Scand J Med Sci Sports Scandinavian Journal of Metallurgy = Scand J Metall Scandinavian Journal of Metallurgy = Scand. J. Metall. Scandinavian journal of occupational therapy = Scand J Occup Ther Scandinavian Journal of Occupational Therapy = Scand J Occup Ther Scandinavian Journal of Occupational Therapy = Scand. J. Occup. Ther. Scandinavian journal of plastic and reconstructive surgery and hand surgery / Nordisk plastikkirurgisk forening [and] Nordisk klubb for handkirurgi = Scand J Plast Reconstr Surg Hand Surg Scandinavian Journal of Plastic and Reconstructive Surgery and Hand Surgery = Scand J Plast Recons Scandinavian Journal of Plastic and Reconstructive Surgery and Hand Surgery = Scand. J. Plast. Recons. Scandinavian Journal of Plastic and Reconstructive Surgery and Hand Surgery = Scand. J. Plast. Reconstr. Surg. Hand Surg. Scandinavian Journal of Plastic and Reconstructive Surgery And Hand Surgery=Scand J Plast Reconstr Surg Hand Surg;; Scandinavian journal of plastic and reconstructive surgery and hand surgery. Supplementum = Scand J Plast Reconstr Surg Hand Surg Suppl Scandinavian Journal of Plastic and Reconstructive Surgery and Hand Surgery. Supplementum = Scand. J. Plast. Reconstr. Surg. Hand Surg. Suppl. Scandinavian Journal of Plastic and Reconstructive Surgery And Hand Surgery. Supplementum=Scand J Plast Reconstr Surg Hand Surg Suppl;; Scandinavian Journal of Plastic and Reconstructive Surgery = Scand J Plast Recon Scandinavian Journal of Plastic and Reconstructive Surgery = Scand. J. Plast. Recon. Scandinavian journal of plastic and reconstructive surgery = Scand J Plast Reconstr Surg Scandinavian Journal of Plastic and Reconstructive Surgery = Scand. J. Plast. Reconstr. Surg. Scandinavian journal of plastic and reconstructive surgery. Supplementum = Scand J Plast Reconstr Surg Suppl Scandinavian Journal of Plastic and Reconstructive Surgery. Supplementum = Scand. J. Plast. Reconstr. Surg. Suppl. Scandinavian Journal of Primary Health Care = Scand J Prim Health Scandinavian Journal of Primary Health Care = Scand. J. Prim. Health Scandinavian journal of primary health care = Scand J Prim Health Care Scandinavian Journal of Primary Health Care=Scand J Prim Health Care;; Scandinavian Journal of Primary Health Care = Scand. J. Prim. Health Care Scandinavian journal of primary health care. Supplement = Scand J Prim Health Care Suppl Scandinavian Journal of Primary Health Care. Supplement=Scand J Prim Health Care Suppl;; Scandinavian Journal of Primary Health Care. Supplement = Scand. J. Prim. Health Care Suppl. Scandinavian journal of psychology = Scand J Psychol Scandinavian Journal of Psychology=Scand J Psychol;; Scandinavian Journal of Psychology = Scand J Psychol Scandinavian Journal of Psychology = Scand. J. Psychol. Scandinavian Journal of Public Health = Scand J Public Healt Scandinavian Journal of Public Health = Scand. J. Public Healt. Scandinavian journal of public health = Scand J Public Health Scandinavian Journal of Public Health = Scand. J. Public Health Scandinavian journal of public health. Supplement = Scand J Public Health Suppl Scandinavian Journal of Public Health. Supplement = Scand. J. Public Health Suppl. Scandinavian journal of rehabilitation medicine = Scand J Rehabil Med Scandinavian Journal of Rehabilitation Medicine=Scand J Rehabil Med;; Scandinavian Journal of Rehabilitation Medicine = Scand J Rehabil Med Scandinavian Journal of Rehabilitation Medicine = Scand. J. Rehabil. Med. Scandinavian journal of rehabilitation medicine. Supplement = Scand J Rehabil Med Suppl Scandinavian Journal of Rehabilitation Medicine. Supplement=Scand J Rehabil Med Suppl;; Scandinavian Journal of Rehabilitation Medicine. Supplement = Scand. J. Rehabil. Med. Suppl. Scandinavian journal of respiratory diseases = Scand J Respir Dis Scandinavian Journal of Respiratory Diseases = Scand J Respir Dis Scandinavian Journal of Respiratory Diseases = Scand. J. Respir. Dis. Scandinavian journal of respiratory diseases. Supplementum = Scand J Respir Dis Suppl Scandinavian Journal of Respiratory Diseases. Supplementum = Scand. J. Respir. Dis. Suppl. Scandinavian journal of rheumatology = Scand J Rheumatol Scandinavian Journal of Rheumatology=Scand J Rheumatol;; Scandinavian Journal of Rheumatology = Scand J Rheumatol Scandinavian Journal of Rheumatology = Scand. J. Rheumatol. Scandinavian journal of rheumatology. Supplement = Scand J Rheumatol Suppl Scandinavian Journal of Rheumatology. Supplement=Scand J Rheumatol Suppl;; Scandinavian Journal of Rheumatology. Supplement = Scand. J. Rheumatol. Suppl. Scandinavian journal of social medicine = Scand J Soc Med Scandinavian Journal of Social Medicine=Scand J Soc Med;; Scandinavian Journal of Social Medicine = Scand J Soc Med Scandinavian Journal of Social Medicine = Scand. J. Soc. Med. Scandinavian journal of social medicine. Supplementum = Scand J Soc Med Suppl Scandinavian Journal of Social Medicine. Supplementum=Scand J Soc Med Suppl;; Scandinavian Journal of Social Medicine. Supplementum = Scand. J. Soc. Med. Suppl. Scandinavian journal of social welfare = Scand J Soc Welf Scandinavian Journal of Social Welfare = Scand J Soc Welfare Scandinavian Journal of Social Welfare = Scand. J. Soc. Welfare Scandinavian Journal of Statistics = Scand J Stat Scandinavian Journal of Statistics = Scand. J. Stat. Scandinavian Journal of Statistics = Scand. J. Statist. Scandinavian Journal of Surgery = Scand J Surg Scandinavian Journal of Surgery = Scand. J. Surg. Scandinavian journal of surgery : SJS : official organ for the Finnish Surgical Society and the Scandinavian Surgical Society = Scand J Surg Scandinavian Journal of The Old Testament = Scand J Old Testam Scandinavian Journal of The Old Testament = Scand. J. Old Testam. Scandinavian Journal of Theology = STh Scandinavian Journal of Thoracic and Cardiovascular Surgery = Scand J Thorac Card Scandinavian Journal of Thoracic and Cardiovascular Surgery = Scand. J. Thorac. Card. Scandinavian journal of thoracic and cardiovascular surgery = Scand J Thorac Cardiovasc Surg Scandinavian Journal of Thoracic and Cardiovascular Surgery = Scand. J. Thorac. Cardiovasc. Surg. Scandinavian journal of thoracic and cardiovascular surgery. Supplementum = Scand J Thorac Cardiovasc Surg Suppl Scandinavian Journal of Thoracic and Cardiovascular Surgery. Supplementum = Scand. J. Thorac. Cardiovasc. Surg. Suppl. Scandinavian Journal of Trauma Resuscitation & Emergency Medicine = Scand J Trauma Resus Scandinavian Journal of Trauma Resuscitation & Emergency Medicine = Scand. J. Trauma Resus. Scandinavian journal of urology and nephrology = Scand J Urol Nephrol Scandinavian Journal of Urology and Nephrology=Scand J Urol Nephrol;; Scandinavian Journal of Urology and Nephrology = Scand J Urol Nephrol Scandinavian Journal of Urology and Nephrology = Scand. J. Urol. Nephrol. Scandinavian journal of urology and nephrology. Supplementum = Scand J Urol Nephrol Suppl Scandinavian Journal of Urology and Nephrology. Supplementum=Scand J Urol Nephrol Suppl;; Scandinavian Journal of Urology and Nephrology. Supplementum = Scand. J. Urol. Nephrol. Suppl. Scandinavian Journal of Work, Environment and Health=Scand J Work Environ Health;; Scandinavian Journal of Work, Environment and Health = Scand. J. Work. Environ. Health Scandinavian Journal of Work Environment & Health = Scand J Work Env Hea Scandinavian Journal of Work Environment & Health = Scand. J. Work Env. Hea. Scandinavian journal of work, environment & health = Scand J Work Environ Health Scandinavian Journal of Work, Environment & Health = Scand. J. Work Environ. Health Scandinavian Political Studies = Scand Polit Stud Scandinavian Political Studies = Scand. Polit. Stud. Scandinavian population studies = Scand Popul Stud Scandinavian Psychoanalytic Review = Scand Psychoanal Rev Scandinavian Psychoanalytic Review = Scand. Psychoanal. Rev. Scandinavian Society of Forensic Odontology Newsletter = Scand. Soc. Forensic Odontol. Newsl. Scandinavian studies in law = Scand Stud Law Scandinavian studies : publication of the Society for the Advancement of Scandinavian Study = Scand Stud Scandinavian Studies = Scand Stud Scandinavian Studies = Scand. Stud. Scandinavica = Scandinavica Scanned Probe Microscopy = Aip Conf Proc Scanned Probe Microscopy = Aip. Conf. Proc. Scanning and Force Microscopies for Biomedical Applications Ii = P Soc Photo-opt Ins Scanning and Force Microscopies for Biomedical Applications Ii = P. Soc. Photo-opt. Ins. Scanning and Force Microscopies for Biomedical Applications, Proceedings Of = P Soc Photo-opt Ins Scanning and Force Microscopies for Biomedical Applications, Proceedings Of = P. Soc. Photo-opt. Ins. Scanning Electron Microscopy = Scan Electron Micros Scanning Electron Microscopy = Scan. Electron Micros. Scanning electron microscopy = Scan Electron Microsc Scanning Electron Microscopy = Scan. Electron Microsc. Scanning Electron Microscopy = Scanning Microscopy Scanning Force Microscopy of Polymers = Springer Lab Man Pol Scanning Force Microscopy of Polymers = Springer. Lab. Man. Pol. Scanning Microscopies 2011: Advanced Microscopy Technologies for Defense, Homeland Security, Forensic, Life, Environmental, and Industrial Sciences = Proc Spie Scanning Microscopies 2011: Advanced Microscopy Technologies for Defense, Homeland Security, Forensic, Life, Environmental, and Industrial Sciences = Proc. Spie. Scanning Microscopy 2010 = Proc Spie Scanning Microscopy 2010 = Proc. Spie. Scanning Microscopy 2010 = P Soc Photo-opt Ins Scanning Microscopy 2010 = P. Soc. Photo-opt. Ins. Scanning Microscopy (Elk Grove Village, Il=Scanning Microsc;; Scanning Microscopy Instrumentation = P Soc Photo-opt Ins Scanning Microscopy Instrumentation = P. Soc. Photo-opt. Ins. Scanning microscopy = Scanning Microsc Scanning Microscopy = Scanning Microsc. Scanning Microscopy = Scanning Microscopy Scanning microscopy. Supplement = Scanning Microsc Suppl Scanning Microscopy. Supplement=Scanning Microsc Suppl;; Scanning Microscopy. Supplement = Scanning Microsc. Suppl. Scanning Probe Microscopies Iii = P Soc Photo-opt Ins Scanning Probe Microscopies Iii = P. Soc. Photo-opt. Ins. Scanning Probe Microscopies Ii = P Soc Photo-opt Ins Scanning Probe Microscopies Ii = P. Soc. Photo-opt. Ins. Scanning Probe Microscopies = P Soc Photo-opt Ins Scanning Probe Microscopies = P. Soc. Photo-opt. Ins. Scanning Probe Microscopy: Characterization, Nanofabrication and Device Application of Functional Materials = Nato Sci Ser Ii-math Scanning Probe Microscopy: Characterization, Nanofabrication and Device Application of Functional Materials = Nato. Sci. Ser. Ii-math. Scanning Probe Microscopy: Characterization, Nanofabrication and Device Application of Functional Materials = Nato Sci Ser Ii Math Scanning Probe Microscopy: Characterization, Nanofabrication and Device Application of Functional Materials = Nato. Sci. Ser. Ii. Math. Scanning Probe Microscopy in Nanoscience and Nanotechnology = Nanosci Technol Scanning Probe Microscopy in Nanoscience and Nanotechnology = Nanosci. Technol. Scanning Probe Microscopy in Nanoscience and Nanotechnology, Vol 2 = Nanosci Technol Scanning Probe Microscopy in Nanoscience and Nanotechnology, Vol 2 = Nanosci. Technol. Scanning=Scanning;; Scanning = Scanning Scanning Tunneling Microscopy/spectroscopy and Related Techniques = Aip Conf Proc Scanning Tunneling Microscopy/spectroscopy and Related Techniques = Aip. Conf. Proc. Scan'odont = Scanodont Scanodont = Scanodont Scan Statistics: Methods and Applications = Stat Ind Technol Scan Statistics: Methods and Applications = Stat. Ind. Technol. Scatter From Optical Components = P Soc Photo-opt Ins Scatter From Optical Components = P. Soc. Photo-opt. Ins. Scattering and Surface Roughness Iii = Proc Spie Scattering and Surface Roughness Iii = Proc. Spie. Scattering and Surface Roughness Iii = P Soc Photo-opt Ins Scattering and Surface Roughness Iii = P. Soc. Photo-opt. Ins. Scattering and Surface Roughness Ii = P Soc Photo-opt Ins Scattering and Surface Roughness Ii = P. Soc. Photo-opt. Ins. Scattering and Surface Roughness = P Soc Photo-opt Ins Scattering and Surface Roughness = P. Soc. Photo-opt. Ins. Scattering From Model Nonspherical Particles: Theory and Applications to Environmental Physics = Phys Earth Space Env Scattering From Model Nonspherical Particles: Theory and Applications to Environmental Physics = Phys. Earth. Space. Env. Scattering From Polymers = Acs Sym Ser Scattering From Polymers = Acs. Sym. Ser. Scattering in Volumes and Surfaces = N-holland D Scattering in Volumes and Surfaces = N-holland. D. Scattering of Photons By Many-electron Systems = Springer Ser Atom Op Scattering of Photons By Many-electron Systems = Springer. Ser. Atom. Op. Scattering Theory: Some Old and New Problems = Lect Notes Math Scattering Theory: Some Old and New Problems = Lect. Notes. Math. Sccc 2007: Xxvi International Conference of The Chilean Society of Computer Science, Proceedings = P Int C Chil Comput Sccc 2007: Xxvi International Conference of The Chilean Society of Computer Science, Proceedings = P. Int. C. Chil. Comput. Sccc 2008: International Conference of The Chilean Computer Science Society, Proceedings = P Int C Chil Comput Sccc 2008: International Conference of The Chilean Computer Science Society, Proceedings = P. Int. C. Chil. Comput. Scenarios and Information Design: A User-oriented Practical Guide = Chandos Inf Prof Ser Scenarios and Information Design: A User-oriented Practical Guide = Chandos. Inf. Prof. Ser. Scenarios: Models, Transformations and Tools = Lect Notes Comput Sc Scenarios: Models, Transformations and Tools = Lect. Notes. Comput. Sc. Schaffhauser Beitrage zur vaterlandischen Geschichte = Schaffhauser Beitr Vaterl Gesch Scha Journal = SCHA J SCHA Journal = SCHA J. Schalarbeiten: Technologische Grundlagen, Sichtbeton, Systemauswahl, Ablaufplanung, Logistik Und Kalkulation = Vdi-buch Schalarbeiten: Technologische Grundlagen, Sichtbeton, Systemauswahl, Ablaufplanung, Logistik Und Kalkulation = Vdi-buch. Schallabsorber Und Schalldampfer: Innovative Akustische Konzepte Und Bauteile Mit Praktischen Anwendungen in Konkreten Beispielen = Vdi-buch Schallabsorber Und Schalldampfer: Innovative Akustische Konzepte Und Bauteile Mit Praktischen Anwendungen in Konkreten Beispielen = Vdi-buch. Schede medievali: rassegna a cura dell'officina di studi medievali = SMed Schedule-based Dynamic Transit Modeling: Theory and Applications = Operat Res Comp Sci Schedule-based Dynamic Transit Modeling: Theory and Applications = Operat. Res. Comp. Sci. Schedule-based Modeling of Transportation Networks: Theory and Applications = Oper Res Comput Sci Schedule-based Modeling of Transportation Networks: Theory and Applications = Oper. Res. Comput. Sci. Scheduling for Parallel Processing = Comput Commun Netw S Scheduling for Parallel Processing = Comput. Commun. Netw. S. Scheidewege = Scheidewege Schema Matching and Mapping = Data Centric Syst Ap Schema Matching and Mapping = Data. Centric. Syst. Ap. Schering Foundation Workshop = Scher Fdn W Schering Foundation Workshop = Scher. Fdn. W. Schiff und Zeit = Schiff Zeit Schild von Steier. Beiträge zur Steirischen Vor- und Frühgeschichte und Münzkunde = SchildStei Schiller: National Poet - Poet of Nations = Ams C Mod G Schiller: National Poet - Poet of Nations = Ams. C. Mod. G. Schizophrenia = Alfred Benzon Symp S Schizophrenia = Alfred. Benzon. Symp. S. Schizophrenia bulletin = Schizophr Bull Schizophrenia Bulletin=Schizophr Bull;; Schizophrenia Bulletin = Schizophr. Bull. Schizophrenia Bulletin = Schizophrenia Bull Schizophrenia Bulletin = Schizophrenia Bull. Schizophrenia research = Schizophr Res Schizophrenia Research=Schizophr Res;; Schizophrenia Research = Schizophr Res Schizophrenia Research = Schizophr. Res. Schizophrenia = Schizophrenia Schlanker Materialfluss: Mit Lean Production, Kanban Und Innovationen = Vdi-buch Schlanker Materialfluss: Mit Lean Production, Kanban Und Innovationen = Vdi-buch. Schlern-schrifter = Schlern Sch Schlern-schrifter = Schlern. Sch. Schmerz (Berlin, Germany) = Schmerz Schmerz = Schmerz Schmollers Jahrbuch für Wirtschafts- und Sozialwissenschaften=Schmollers Jahr. Schmollers Jahrbuch: Zeitschrift für Wirtschafts- und Sozialwissenschaften=Schmollers Jahr.: Z. Wirtsch. Sozialwissen. Scholarly Communication for Librarians = Chandos Inf Prof Ser Scholarly Communication for Librarians = Chandos. Inf. Prof. Ser. Scholarly Communication in Library and Information Services: The Impacts of Open Access Journals and E-journals On A Changing Scenario = Chandos Inf Prof Ser Scholarly Communication in Library and Information Services: The Impacts of Open Access Journals and E-journals On A Changing Scenario = Chandos. Inf. Prof. Ser. Scholarly Environments = Gr Stud Cult Scholarly Environments = Gr. Stud. Cult. Scholarly inquiry for nursing practice = Sch Inq Nurs Pract Scholarly Inquiry for Nursing Practice = Sch. Inq. Nurs. Pract. Scholarly Inquiry For Nursing Practice=Sch Inq Nurs Pract;; Scholarly Publishing = Scholarly Publ Scholarly Publishing = Scholarly Publ. Scholarship for Sustaining Service-learning and Civic Engagement = Adv Serv Learn Res Scholarship for Sustaining Service-learning and Civic Engagement = Adv. Serv. Learn. Res. Scholastic update (Teachers' ed.) = Scholast Update Scholia. Natal Studies in Classical Antiquity = Scholia School and Community = School Community School and Society = School Soc School and Society = School Soc. School Consultation: Conceptual and Empirical Bases of Practice, Third Edition = Issues Clin Child Ps School Consultation: Conceptual and Empirical Bases of Practice, Third Edition = Issues. Clin. Child. Ps. School Dental Service gazette, New Zealand = Sch Dent Serv Gaz N Z School Dental Services Gazette = Sch. Dent. Serv. Gaz. N. Z. School District Leadership Matters = Stud Educ Leadersh School District Leadership Matters = Stud. Educ. Leadersh. School Effectiveness and School Improvement = Sch Eff Sch Improv School Effectiveness and School Improvement = Sch. Eff. Sch. Improv. School health review = Sch Health Rev School Health Review = Sch. Health Rev. Schooling and Society = Gr Stud Cult Schooling and Society = Gr. Stud. Cult. Schooling for Success = Columb U Sem Ser Schooling for Success = Columb. U. Sem. Ser. Schooling Islam: The Culture and Politics of Modern Muslim Education = Princ Stud Muslim Po Schooling Islam: The Culture and Politics of Modern Muslim Education = Princ. Stud. Muslim Po. Schooling, Society and Curriculum = Found Futures Educ Schooling, Society and Curriculum = Found. Futures. Educ. School Knowledge in Comparative and Historical Perspective = Cerc Stud Comp Educ School Knowledge in Comparative and Historical Perspective = Cerc. Stud. Comp. Educ. School Leadership: International Perspectives = Stud Educ Leadersh School Leadership: International Perspectives = Stud. Educ. Leadersh. School Libraries in A Diverse World : Providing The Personal Touch = Iasl Proc School Libraries in A Diverse World : Providing The Personal Touch = Iasl. Proc. School nurse news = School Nurse News School of American Research Advanced Seminar Series = Sch Am Res School of American Research Advanced Seminar Series = Sch. Am. Res. School of God: Pedagogy and Rhetoric in Calvin's Interpretation of Deuteronomy = Stud Early Mod Relig School of God: Pedagogy and Rhetoric in Calvin's Interpretation of Deuteronomy = Stud. Early. Mod. Relig. School Psychology International = School Psychol Int School Psychology International = School Psychol. Int. School Psychology International = Sch Psychol Int School Psychology Quarterly = School Psychol Quart School Psychology Quarterly = School Psychol. Quart. School Psychology Review = School Psychol Rev School Psychology Review = School Psychol. Rev. School psychology review = School Psych Rev School Review = School Rev School Review = School Rev. School science and mathematics = Sch Sci Math School Science and Mathematics = Sch. Sci. Math. School Science Review = Sch. Sci. Rev. School's In: Federalism and The National Education Agenda = Am Gov Public Policy School's In: Federalism and The National Education Agenda = Am. Gov. Public. Policy. Schraubtechnik 2008 = Vdi Bericht Schraubtechnik 2008 = Vdi. Bericht. Schriften aus der Forstlichen Fakultät der Universität Göttingen und der Niedersächsischen forstlichen Versuchsanstalt = Schr. Forstl. Fak. Univ. Gött. Niedersächs.  forstl. Vers.anst. Schriften De Johannes Von Damaskos, Vi/1: Historia Animae Utilis De Barlaam Et Loasaph (spuria) = Patrist Texte Stud Schriften De Johannes Von Damaskos, Vi/1: Historia Animae Utilis De Barlaam Et Loasaph (spuria) = Patrist. Texte. Stud. Schriften Der Deutschen Vereinigung Fur Sportwissenschaft = Schrift Deut Verein Schriften Der Deutschen Vereinigung Fur Sportwissenschaft = Schrift. Deut. Verein. Schriften der Konigsberger Gelehrten Gesellschaft = Schr. Konigsb. Gelehrten Ges. Schriften Der Luther-agricola-gesellschaft, Series A = Schr Luth A Schriften Der Luther-agricola-gesellschaft, Series A = Schr. Luth. A Schriften Des Forschungszentrums Julich Reihe Energietechnik = Schr Fz Jul Energ Schriften Des Forschungszentrums Julich Reihe Energietechnik = Schr. Fz. Jul. Energ. Schriften Des Forschungszentrums Julich Reihe Materie Und Material = Schr Forsch Zent Jul Schriften Des Forschungszentrums Julich Reihe Materie Und Material = Schr. Forsch. Zent. Jul. Schriften des Vereines zur Verbreitung Naturwissenschaftlicher Kenntnisse in Wien = Schr. Naturwissen. Verbr. Naturwissen. Kennt. Wien Schriften des Zentrums für Archäologie und Kulturgeschichte des Schwarzmeerraumes = ZAKSSchriften Schriftenreihe. Altnurnberger Landschaft e.V = Altnurnb Landsch Schriftenreihe aus dem Gebiete des offentlichen Gesundheitswesens = Schriftenr Geb Off Gesundheitswes Schriftenreihe aus dem Gebiete des Offentlichen Gesundheitswesens = Schriftenr. Geb. Off. Gesundheitswes. Schriftenreihe Bayerisches Landesamt für Umweltschutz = Schr.reihe Bayer. Landesamt Umweltschutz Schriftenreihe der Badischen Forstlichen Versuchsanstalt Freiburg = Schr.reihe Bad. Forstl. Vers.anst., Freibg. Schriftenreihe Der Bankrechtlichen Vereinigung = Schr Bankrechtl Ver Schriftenreihe Der Bankrechtlichen Vereinigung = Schr. Bankrechtl. Ver. Schriftenreihe Der Eidg Forschungsanstadt Fur Agrarwirtschaft Und Landtechnik (fat) = Schrift Fat Schriftenreihe Der Eidg Forschungsanstadt Fur Agrarwirtschaft Und Landtechnik (fat) = Schrift. Fat. Schriftenreihe Der Eidg Forschungsanstalt Fur Betriebswirtschaft Und Landtechnik Fat = Schr Eidg F Schriftenreihe Der Eidg Forschungsanstalt Fur Betriebswirtschaft Und Landtechnik Fat = Schr. Eidg F. Schriftenreihe der Forstwissenschaftlichen Fakultät der Albert-Ludwigs-Universität Freiburg i. Br. = Schr.reihe Forstwiss. Fak. Albert-Ludwigs-Univ.  Freibg. i.B. Schriftenreihe Der Gesellschaft Fur Mineralstoffe Und Spurenelemente E V = Schrif Gms Schriftenreihe Der Gesellschaft Fur Mineralstoffe Und Spurenelemente E V = Schrif. Gms. Schriftenreihe Der Hamburg-mannheimer-stiftung Fur Informationsmedizin = Schr Hamb M Schriftenreihe Der Hamburg-mannheimer-stiftung Fur Informationsmedizin = Schr. Hamb. M. Schriftenreihe Der Juristischen Fakultat Der Europa-universitat Viadrina Frankfurt-oder = Schr Juris Fak Eur Schriftenreihe Der Juristischen Fakultat Der Europa-universitat Viadrina Frankfurt-oder = Schr. Juris. Fak. Eur. Schriftenreihe der Landesanstalt für Ökologie, Landschaftsentwicklung und Forstplanung Nordrhein-Westfalen = Schr.reihe Landesanst. Ökol. Landsch.entwickl. Forstplan. Nordrh.-Westfal. Schriftenreihe der Landesforstverwaltung Baden-Württemberg = Schr.reihe Landesforstverwalt. Baden-Württ. Schriftenreihe der Landesstelle für Naturschutz und Landschaftspflege in Nordrhein-Westfalen = Schr.reihe Landesstelle Nat.schutz Landsch.pfl.  Nordrh.-Westfal. Schriftenreihe Der Osterreichischen Gesellschaft Fur Europaforschung (ecsa Austria) - European Community Studies Association of Austria Publication Series = Sch Ost Ges Europa Schriftenreihe Der Osterreichischen Gesellschaft Fur Europaforschung (ecsa Austria) - European Community Studies Association of Austria Publication Series = Sch. Ost. Ges. Europa. Schriftenreihe Der Osterreichischen Gesellschaft Fur Europaforschung Ecsa Austria-european Community Studies Association of Austria Publication Series = Schr Ost Ges Eur Ecs Schriftenreihe Der Osterreichischen Gesellschaft Fur Europaforschung Ecsa Austria-european Community Studies Association of Austria Publication Series = Schr. Ost. Ges. Eur. Ecs. Schriftenreihe der Pädagogischen Hochschule Heidelberg = Schriftenreihe Pädagog. Hochsch. Heidelberg Schriftenreihe Der Wittgenstein-gesellschaft = Schr Witt G Schriftenreihe Der Wittgenstein-gesellschaft = Schr. Witt. G. Schriftenreihe Des Arbeitskreises Europaische Integration E.v. = Sch Arb Eur Schriftenreihe Des Arbeitskreises Europaische Integration E.v. = Sch. Arb. Eur. Schriftenreihe des Bayerischen Staatsministeriums für Ernährung, Landwirtschaft und Forsten = Schr.reihe Bayer. Staatsminist. Ernähr.  Landwirtsch. Forsten Schriftenreihe des Deutschen Rates für Landespflege = Schr.reihe Dtsch. Rat Landespfl. Schriftenreihe des Institutes für Landespflege der Universität Freiburg = Schr.reihe Inst. Landespfl. Univ. Freibg. Schriftenreihe des Mathematischen Instituts der Universität Münster, 3 = Schriftenreihe Math. Inst. Univ. Münster 3. Ser. Schriftenreihe Des Sozialwissenschaftlichen Instituts Der Bundeswehr = Schr Sozialw I Bunde Schriftenreihe Des Sozialwissenschaftlichen Instituts Der Bundeswehr = Schr. Sozialw. I. Bunde. Schriftenreihe des Vereins fur Wasser-, Boden- und Lufthygiene = Schriftenr Ver Wasser Boden Lufthyg Schriftenreihe des Vereins fur Wasser-, Boden-, und Lufthygiene = Schriftenr. Ver. Wasser. Boden. Lufthyg. Schriftenreihe Des Vereins Fur Wasser-, Boden-, Und Lufthygiene=Schriftenr Ver Wasser Boden Lufthyg;; Schriftenreihe fur Geologische Wissenschaften = Schriftenr. Geol. Wissen. Schriftenreihe für Geschichte der Naturwissenschaften, Technik und Medizin = NTM Schriftenreihe für Landschaftspflege und Naturschutz = Schr.reihe Landsch.pfl. Nat.schutz Schriftenreihe für Vegetationskunde = Schr.reihe Veg.kd. Schriftenreihe Informatik = Schriften Informatik Schriftenreihe Informatik = Schriften. Informatik Schriftenreihe Intensiv Medizin, Notfallmedizin, Anasthesiologie = Sch Int Med Schriftenreihe Intensiv Medizin, Notfallmedizin, Anasthesiologie = Sch. Int. Med. Schriftenreihe Juristische Zeitgeschichte Abteilung 3 = Schr Juris Zeitgesch Schriftenreihe Juristische Zeitgeschichte Abteilung 3 = Schr. Juris. Zeitgesch. Schriftenreihe Lebensraum Vorarlberg = Schr.reihe Lebensraum Vorarlberg Schriftenreihe. Medizinische Hochschule Hannover. Gesellschaft der Freunde = Schriftenr Ges Freunde Med Hochsch Hannover Schriftenreihe Neurologie (Neurology Series) = Schriftenr. Neurol. Schriftenreihe Neurologie. Neurology Series=Schriftenr Neurol;; Schriftenreihe Neurologie = Schriftenr Neurol Schriftenreihe Umwelt = Schr.reihe Umw. Schriftenreihe Zentralblatt fur Arbeitsmedizin, Arbeitsschutz, Prophylaxe, und Ergonomie = Schriftenr Zentralbl Arbeitsmed Arbeitsschutz Prophyl Ergonomie Schriftenreihe Zentralblatt fur Arbeitsmedizin, Arbeitsschutz, Prophylaxe, und Ergonomie = Schriftenr. Zentralbl. Arbeitsmed. Arbeitsschutz. Prophyl. Ergonomie Schriftenreihe Zentralblatt fur Arbeitsmedizin Arbeitsschutz und Prophylaxe = Schriftenr. Zentralbl. Arbeitsmed. Arbeitsschutz Prophyl. Schriftenreihe Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Prophylaxe = Schriftenr Zentralbl Arbeitsmed Arbeitsschutz Prophyl Schriftenreihe Zum Problem Der Suchtgefahren = Schrif Such Schriftenreihe Zum Problem Der Suchtgefahren = Schrif. Such. Schriftenreihe zur Geschichte der Versammlungen deutscher Naturforscher und Aerzte = Schriftenr Gesch Versamml Dtsch Naturforsch Arzte Schriften Zum Chinesischen Recht = Schrift Chin Recht Schriften Zum Chinesischen Recht = Schrift. Chin. Recht Schriften Zum Deutschen Europaischen Und Internationalen Insolvenzrecht = Schr Deut Eur Int In Schriften Zum Deutschen Europaischen Und Internationalen Insolvenzrecht = Schr. Deut. Eur. Int. In. Schriften Zum Europaischen Und Internationalen Privat Bank Und Wirtschaftsrecht = Schr Eur Int Priv B Schriften Zum Europaischen Und Internationalen Privat Bank Und Wirtschaftsrecht = Schr. Eur. Int. Priv. B. Schriften Zum Europaischen Urheberrecht = Schr Eur Urheber Schriften Zum Europaischen Urheberrecht = Schr. Eur. Urheber. Schriften Zum Gemeinschaftsprivatrecht = Schr Gemeinschaftspr Schriften Zum Gemeinschaftsprivatrecht = Schr. Gemeinschaftspr. Schriften Zum Kulturguterschutz-cultural Property Studies = Schrift Kulturgut Schriften Zum Kulturguterschutz-cultural Property Studies = Schrift. Kulturgut. Schriften Zur Europaischen Rechtswissenschaft = Schr Eur Rechtswiss Schriften Zur Europaischen Rechtswissenschaft = Schr. Eur. Rechtswiss. Schriften zur Geschichte und Kultur des alten Orients = Schr Gesch Kult Alten Orients Schriften Zur Internationalen Entwicklungs- Und Umweltforschung = Sch Int Ent Umwel Schriften Zur Internationalen Entwicklungs- Und Umweltforschung = Sch. Int. Ent. Umwel. Schrift Und Liebe in Der Kultur Des Mittelalters = Trends Mediev Philol Schrift Und Liebe in Der Kultur Des Mittelalters = Trends. Mediev. Philol. Schrodinger Operators / = Lect Notes Phys Schrodinger Operators / = Lect. Notes. Phys. Schulbucher Im Trivium Des Mittelalters Und Der Fruhen Neuzeit = Quell Forsch Lit Kul Schulbucher Im Trivium Des Mittelalters Und Der Fruhen Neuzeit = Quell. Forsch. Lit. Kul. Schule and Psychologie = Schule Psychol Schule and Psychologie = Schule Psychol. Schutz Des Know How Gegen Ausspahende Produktanalysen Reverse Engineering = Writ Eur Copyr Schutz Des Know How Gegen Ausspahende Produktanalysen Reverse Engineering = Writ. Eur. Copyr. Schwarz-pick Type Inequalities = Front Math Schwarz-pick Type Inequalities = Front. Math. Schweisstechnische Fertigungsverfahren 1: Schweib- Und Schneidtechnologien = Vdi-buch Schweisstechnische Fertigungsverfahren 1: Schweib- Und Schneidtechnologien = Vdi-buch. Schweisstechnische Fertigungsverfahren 2:verhalten Der Werkstoffe Beim Schweiben = Vdi-buch Schweisstechnische Fertigungsverfahren 2:verhalten Der Werkstoffe Beim Schweiben = Vdi-buch. Schweiss- und Prueftechnik = Schweiss Prueftech. Schweizer Archiv der Tierheilkunde = Schweiz. Arch. Tierheilkd. Schweizer Archiv fur Neurologie, Neurochirurgie und Psychiatrie = Schweiz. Arch. Neurol. Neurochir. Psychiatr. Schweizer Archiv fur Neurologie und Psychiatrie. Archives suisses de neurologie et de psychiatrie. Archivio svizzero di neurologia e psichiatria = Schweiz Arch Neurol Psychiatr Schweizer Archiv Fur Neurologie Und Psychiatrie = Schweiz Arch Neurol Schweizer Archiv Fur Neurologie Und Psychiatrie = Schweiz. Arch. Neurol. Schweizer Archiv fur Neurologie und Psychiatrie = Schweiz. Arch. Neurol. Psychiatr. Schweizer Archiv fur Neurologie und Psychiatrie (Zurich, Switzerland : 1985) = Schweiz Arch Neurol Psychiatr Schweizer Archiv Fur Tierheilkunde = Schweiz Arch Tierh Schweizer Archiv Fur Tierheilkunde = Schweiz. Arch. Tierh. Schweizer Archiv fur Tierheilkunde = Schweiz Arch Tierheilkd Schweizer Archiv fur Tierheilkunde = Schweiz. Arch. Tierheilkd. Schweizer Archiv Fur Tierheilkunde=Schweiz Arch Tierheilkd;; Schweizer Förster, Der = Schweiz. Förster Schweizer Holz-Börse = Schweiz. Holz-Börse Schweizer Holzwirtschaft = Schweiz. Holzwirtsch. Schweizer Holzzeitung = Schweiz. Holzztg. Schweizer Ingenieur und Architekt = Schweiz. Ing. Archit. Schweizerische Aktuarvereinigung = Schweiz. Aktuarver. Mitt. Schweizerische Apotheker Zeitung = Schweiz Apoth Ztg Schweizerische Apotheker-Zeitung = Schweiz. Apoth. Ztg. Schweizerische Apotheker-Zeitung = Schweiz. Apoth.-Ztg. Schweizerische Arztezeitung. Bulletin des medecins suisses. Bollettino dei medici svizzeri = Schweiz Arzteztg Schweizerische Beiträge zur Dendrologie = Schweiz. Beitr. Dendrol. Schweizerische Gesellschaft für Phytomedizin, Info = Schweiz.  Ges. Phytomed., Info Schweizerische Interessengemeinschaft Industrieholz, Anleitung = Schweiz. Interessengem. Ind.holz, Anleit. Schweizerische Laboratoriums Zeitschrift = Schweiz. Lab. Z. Schweizerische landwirtschaftliche Forschung = Schweiz. landwirtsch. Forsch. Schweizerische Landwirtschaftliche Monatshefte = Schweiz Landw Monats Schweizerische Landwirtschaftliche Monatshefte = Schweiz. Landw. Monats. Schweizerische Medizinische Wochenschrift. Journal Suisse de Medecine=Schweiz Med Wochenschr;; Schweizerische medizinische Wochenschrift = Schweiz Med Wochenschr Schweizerische Medizinische Wochenschrift = Schweiz. Med. Wochenschr. Schweizerische Medizinische Wochenschrift = Schweiz Med Wschr Schweizerische Medizinische Wochenschrift = Schweiz. Med. Wschr. Schweizerische medizinische Wochenschrift. Supplementum = Schweiz Med Wochenschr Suppl Schweizerische Medizinische Wochenschrift. Supplementum=Schweiz Med Wochenschr Suppl;; Schweizerische Medizinische Wochenschrift. Supplementum = Schweiz. Med. Wochenschr. Suppl. Schweizerische Mineralogische und Petrographische Mitteilungen = Schweiz. Mineral. Petrogr. Mitt. Schweizerische Mineralogische Und Petrographische Mitteilungen = Schweiz Miner Petrog Schweizerische Mineralogische Und Petrographische Mitteilungen = Schweiz. Miner. Petrog. Schweizerische Monatsschrift fur Zahnmedizin = Schweiz. Monatsschr. Zahnmed. Schweizerische Musikzeitung-revue Musicale Suisse = Schweiz Musikzeit Schweizerische Musikzeitung-revue Musicale Suisse = Schweiz. Musikzeit. Schweizerische Nationalbank Quartalsheft=Schweiz. Nationalbank Quart. Schweizerische numismatische Rundschau = SchwNumRu Schweizerische numismatische Rundschau = SNR Schweizerische Rundschau Fur Medizin Praxis = Schweiz Rundsch Med Schweizerische Rundschau Fur Medizin Praxis = Schweiz. Rundsch. Med. Schweizerische Rundschau fur Medizin Praxis = Schweiz. Rundsch. Med. Prax. Schweizerische Rundschau Fur Medizin Praxis=Schweiz Rundsch Med Prax;; Schweizerisches Archiv Fur Volkskunde = Schweiz Arch Volksku Schweizerisches Archiv Fur Volkskunde = Schweiz. Arch. Volksku. Schweizerische Schreinerzeitung = Schweiz. Schreinerztg. Schweizerische Wochenschrift fur Chemie und Pharmacie = Schweiz. Wochenschr. Chem. Pharm. Schweizerische Zeitschrift für Forstwesen = Schweiz. Z. Forstwes. Schweizerische Zeitschrift fur Geschichte. Revue suisse d'histoire. Rivista storica svizzera = Schweiz Z Gesch Schweizerische Zeitschrift Fur Geschichte = Schweiz Z Gesch Schweizerische Zeitschrift Fur Geschichte = Schweiz. Z. Gesch. Schweizerische Zeitschrift für Geschichte = SZG Schweizerische Zeitschrift fur Gynakologie und Geburtshilfe. Revue suisse de gynecologie et d'obstetrique = Schweiz Z Gynakol Geburtshilfe Schweizerische Zeitschrift fur Homoopathie. Journal suisse d'homoeopathie = Schweiz Z Homoopath Schweizerische Zeitschrift für Hydrologie = Schweiz. Z. Hydrol. Schweizerische Zeitschrift Fur Hydrologie-swiss Journal of Hydrology = Schweiz Z Hydrol Schweizerische Zeitschrift Fur Hydrologie-swiss Journal of Hydrology = Schweiz. Z. Hydrol. Schweizerische Zeitschrift fur Medizin und Traumatologie = Schweiz. Z. Med. Traumatol. Schweizerische Zeitschrift fur Pathologie und Bakteriologie. Revue suisse de pathologie et de bacteriologie = Schweiz Z Pathol Bakteriol Schweizerische Zeitschrift für Pilzkunde = Schweiz. Z. Pilzkd. Schweizerische Zeitschrift Fur Psychologie-revue Suisse De Psychologie = Schweiz Z Psychol Schweizerische Zeitschrift Fur Psychologie-revue Suisse De Psychologie = Schweiz. Z. Psychol. Schweizerische Zeitschrift fur Psychologie und ihre Andwendungen. Revue suisse de psychologie, pure et appliquee = Schweiz Z Psychol Anwend Schweizerische Zeitschrift fur Psychologie und Ihre Anwendungen = Schweiz. Z. Psychol. Anwend. Schweizerische Zeitschrift Fur Sozialversicherung = Schweiz Z Sozialvers Schweizerische Zeitschrift Fur Sozialversicherung = Schweiz. Z. Sozialvers. Schweizerische Zeitschrift Fur Sozialversicherung Und Berufliche Vorsorge-revue Suisse Des Assurances Sociales Et De La Prevoyance Professionnelle = Schweiz Z Sozialvers Schweizerische Zeitschrift Fur Sozialversicherung Und Berufliche Vorsorge-revue Suisse Des Assurances Sociales Et De La Prevoyance Professionnelle = Schweiz. Z. Sozialvers. Schweizerische Zeitschrift fur Soziologie. Revue suisse de sociologie = Schweiz Z Soziol Schweizerische Zeitschrift fur Sportmedizin = Schweiz Z Sportmed Schweizerische Zeitschrift fur Sportmedizin = Schweiz. Z. Sportmed. Schweizerische Zeitschrift fur Tuberkulose. Revue suisse de la tuberculose. Rivista svizzera della tubercolosi = Schweiz Z Tuberk Schweizerische Zeitschrift fur Tuberkulose und Pneumonologie. Revue suisse de la tuberculose et de pneumonologie. Rivista svizzera della tubercolosi e della pneumonologia = Schweiz Z Tuberc Pneumonol Schweizerische Zeitschrift für Volkswirtschaft und Statistik = Schweiz. Z. Volkswirtsch. Stat. Schweizerische Zeitschrift für Volkswirtschaft und Statistik=Schweiz. Z. Volkswirtsch. Statist. Schweizer Landtechnik = Schweiz. Landtech. Schweizer Monatshefte = Schweiz Monatsh Schweizer Monatsschrift fur Zahnmedizin = Schweiz. Monatsschr. Zahnmed. Schweizer Monatsschrift Fur Zahnmedizin=Schweiz Monatsschr Zahnmed;; Schweizer Münzblätter = SchwMueBl Schweizer Naturschutz = Schweiz. Nat.schutz Schweizer Wald = Schweiz. Wald Schwestern Revue = Schwest Rev Schwestern Revue = Schwest. Rev. Sciacca, Restless Thinker and Polemist = Pubb Sciacca Sez Att Sciacca, Restless Thinker and Polemist = Pubb. Sciacca. Sez. Att. Scidac 2005: Scientific Discovery Through Advanced Computing = J Phys Conf Ser Scidac 2005: Scientific Discovery Through Advanced Computing = J. Phys. Conf. Ser. Scidac 2006: Scientific Discovery Through Advanced Computing = J Phys Conf Ser Scidac 2006: Scientific Discovery Through Advanced Computing = J. Phys. Conf. Ser. Scidac 2007: Scientific Discovery Through Advanced Computing = J Phys Conf Ser Scidac 2007: Scientific Discovery Through Advanced Computing = J. Phys. Conf. Ser. Scidac 2008: Scientific Discovery Through Advanced Computing = J Phys Conf Ser Scidac 2008: Scientific Discovery Through Advanced Computing = J. Phys. Conf. Ser. Scidac 2009: Scientific Discovery Through Advanced Computing = J Phys Conf Ser Scidac 2009: Scientific Discovery Through Advanced Computing = J. Phys. Conf. Ser. Scid Mouse = Curr Top Microbiol Scid Mouse = Curr. Top. Microbiol. Science 83 = Science 85 Science 83 = Science 85. Science 84 = Science 85 Science 84 = Science 85. Science 85 = Science 85 Science Across Cultures = Sci Across Cult Science Across Cultures = Sci. Across Cult. Science activities = Sci Act Science and culture = Sci Cult Science and Culture = Sci. Cult. Science and Culture Series: Astrophysics = Sci Cult Ser Astroph Science and Culture Series: Astrophysics = Sci. Cult. Ser. Astroph. Science and Culture Series: Environmental Sciences = Sci Cult Ser Environ Science and Culture Series: Environmental Sciences = Sci. Cult. Ser. Environ. Science and Culture Series: Nuclear Strategy and Peace Technology = Sci Cult Nucl Strat Science and Culture Series: Nuclear Strategy and Peace Technology = Sci. Cult. Nucl. Strat. Science and Culture Series: Physics = Sci Cult Ser Phys Science and Culture Series: Physics = Sci. Cult. Ser. Phys. Science and Education Administration Publications = Sci Educ Admin Publ Science and Education Administration Publications = Sci. Educ. Admin. Publ. Science and Empires = Bost Stud Philos Sci Science and Empires = Bost. Stud. Philos. Sci. Science and Engineering Education Sources = Sci Eng Educ Sources Science and Engineering Education Sources = Sci. Eng. Educ. Sources Science and engineering ethics = Sci Eng Ethics Science and Engineering Ethics = Sci Eng Ethics Science and Engineering Ethics = Sci. Eng. Ethics Science and Engineering of Composite Materials = Sci Eng Compos Mater Science and Engineering of Composite Materials = Sci. Eng. Compos. Mater. Science and Engineering of Medical Imaging = P Soc Photo-opt Ins Science and Engineering of Medical Imaging = P. Soc. Photo-opt. Ins. Science and Engineering of One- and Zero-dimensional Semiconductors = Nato Adv Sci I B-phy Science and Engineering of One- and Zero-dimensional Semiconductors = Nato. Adv. Sci. I. B-phy. Science and Engineering of Short Fibre Reinforced Polymer Composites = Woodhead Publ Mater Science and Engineering of Short Fibre Reinforced Polymer Composites = Woodhead. Publ. Mater. Science and Ethics At The Threshold of The Third Millenium = Ital Phy So Science and Ethics At The Threshold of The Third Millenium = Ital. Phy. So. Science and Innovation As Strategic Tools for Industrial and Economic Growth = Nato Asi S 4 Sci Tec Science and Innovation As Strategic Tools for Industrial and Economic Growth = Nato. Asi. S. 4. Sci. Tec. Science and its Conceptual Foundations = Sci. Concept. Found. Science and Its History: A Reassessment of The Historiography of Science = Bost Stud Philos Sci Science and Its History: A Reassessment of The Historiography of Science = Bost. Stud. Philos. Sci. Science and Justice=Sci Justice;; Science and Justice = Sci. Justice Science and Literature = Sci And Lit Science and Literature = Sci. And. Lit. Science and Philosophy in the Twentieth Century = Sci. Philos. Twent. Century Basic Works Log. Empir. Science and Processing of Cast Iron Ix = Key Eng Mater Science and Processing of Cast Iron Ix = Key. Eng. Mater. Science and Public Affairs-bulletin of The Atomic Scientists = Sci Public Aff Science and Public Affairs-bulletin of The Atomic Scientists = Sci. Public Aff. Science and Public Policy = Sci Publ Policy Science and Public Policy = Sci. Publ. Policy Science and society = Sci Soc Science and Society=Sci. Society Science and Stewardship to Protect and Sustain Wilderness Values = Us For Serv Rmrs-p Science and Stewardship to Protect and Sustain Wilderness Values = Us. For. Serv. Rmrs-p. Science and Technology and The Changing World Order = Aaas R&d B Science and Technology and The Changing World Order = Aaas. R&d. B. Science and Technology Education Document Series = Sci Tech Ed Science and Technology Education Document Series = Sci. Tech. Ed. Science and Technology in Apec, The Opportunities for Australia = Aatse Inv Symp Science and Technology in Apec, The Opportunities for Australia = Aatse. Inv. Symp. Science and Technology in Catalysis 1994 = Stud Surf Sci Catal Science and Technology in Catalysis 1994 = Stud. Surf. Sci. Catal. Science and Technology in Catalysis 1998 = Stud Surf Sci Catal Science and Technology in Catalysis 1998 = Stud. Surf. Sci. Catal. Science and Technology in Catalysis 2002 = Stud Surf Sci Catal Science and Technology in Catalysis 2002 = Stud. Surf. Sci. Catal. Science and Technology in East Asia = De Div Art Science and Technology in East Asia = De. Div. Art. Science and Technology in Homeric Epics = Hist Mech Mach Sci Science and Technology in Homeric Epics = Hist. Mech. Mach. Sci. Science and Technology in The Age of Hawthorne, Melville, Twain, and James: Thinking and Writing Electricity = Am Lit Read Twenty-f Science and Technology in The Age of Hawthorne, Melville, Twain, and James: Thinking and Writing Electricity = Am. Lit. Read. Twenty-f. Science and Technology Management = Nato Asi S 4 Sci Tec Science and Technology Management = Nato. Asi. S. 4. Sci. Tec. Science and Technology of Advanced Materials = Sci Technol Adv Mat Science and Technology of Advanced Materials = Sci. Technol. Adv. Mat. Science and Technology of Advanced Materials = Sci. Technol. Adv. Mater. Science and Technology of Buidling Seals, Sealants, Glazing, and Waterproofing: Seventh Volume = Am Soc Test Mater Science and Technology of Buidling Seals, Sealants, Glazing, and Waterproofing: Seventh Volume = Am. Soc. Test. Mater. Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: 3rd Volume = Am Soc Test Mater Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: 3rd Volume = Am. Soc. Test. Mater. Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing = Am Soc Test Mater Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing = Am. Soc. Test. Mater. Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: Fifth Volume = Am Soc Test Mater Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: Fifth Volume = Am. Soc. Test. Mater. Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: Fourth Volume = Am Soc Test Mater Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing: Fourth Volume = Am. Soc. Test. Mater. Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing, Second Volume = Am Soc Test Mater Science and Technology of Building Seals, Sealants, Glazing, and Waterproofing, Second Volume = Am. Soc. Test. Mater. Science and Technology of Energetic Materials = Sci. Technol. Energetic Mater. Science and Technology of Energetic Materials = Sci Technol Energ Ma Science and Technology of Energetic Materials = Sci. Technol. Energ. Ma. Science and Technology of Enrobed and Filled Chocolate, Confectionery and Bakery Products = Woodhead Food Ser Science and Technology of Enrobed and Filled Chocolate, Confectionery and Bakery Products = Woodhead. Food. Ser. Science and Technology of Fast Ion Conductors = Nato Adv Sci I B-phy Science and Technology of Fast Ion Conductors = Nato. Adv. Sci. I. B-phy. Science and Technology of Fullerene Materials = Mater Res Soc Symp P Science and Technology of Fullerene Materials = Mater. Res. Soc. Symp. P. Science and Technology of Hybrid Materials = Sol St Phen Science and Technology of Hybrid Materials = Sol. St. Phen. Science and Technology of Magnetic Oxides = Mater Res Soc Symp P Science and Technology of Magnetic Oxides = Mater. Res. Soc. Symp. P. Science and Technology of Nanomaterials - Icmat 2003 = J Metastab Nanocryst Science and Technology of Nanomaterials - Icmat 2003 = J. Metastab. Nanocryst. Science and Technology of Nanostructured Magnetic Materials = Nato Adv Sci I B-phy Science and Technology of Nanostructured Magnetic Materials = Nato. Adv. Sci. I. B-phy. Science and Technology of Rapid Solidification and Processing = Nato Adv Sci Inst Se Science and Technology of Rapid Solidification and Processing = Nato. Adv. Sci. Inst. Se. Science and Technology of Semiconductor-on-insulator Structures and Devices Operating in A Harsh Environment = Nato Sci Ser Ii-math Science and Technology of Semiconductor-on-insulator Structures and Devices Operating in A Harsh Environment = Nato. Sci. Ser. Ii-math. Science and Technology of Semiconductor-on-insulator Structures and Devices Operating in A Harsh Environment = Nato Sci Ser Ii Math Science and Technology of Semiconductor-on-insulator Structures and Devices Operating in A Harsh Environment = Nato. Sci. Ser. Ii. Math. Science and Technology of Semiconductor Surface Preparation = Mater Res Soc Symp P Science and Technology of Semiconductor Surface Preparation = Mater. Res. Soc. Symp. P. Science and Technology of Silicones and Silicone-modified Materials = Acs Sym Ser Science and Technology of Silicones and Silicone-modified Materials = Acs. Sym. Ser. Science and Technology of Welding and Joining /font> = Sci. Technol. Weld. Joining Science and Technology of Welding and Joining = Sci Technol Weld Joi Science and Technology of Welding and Joining = Sci. Technol. Weld. Joi. Science and Technology of Welding and Joining = Sci. Technol. Weld. Joining Science and Technology = Sci Technology Science and Technology = Sci. Technology Science and Technology Series = Sci Tech Science and Technology Series = Sci. Tech. Science and The Indian Tradition = India Mod World Science and The Indian Tradition = India. Mod. World. Science and The Management of Protected Areas = Dev Landsc Science and The Management of Protected Areas = Dev. Landsc. Science and Whig Manners: Science and Political Style in Britain, C.1790-1850 = Stud Mod Hist Science and Whig Manners: Science and Political Style in Britain, C.1790-1850 = Stud. Mod. Hist. Science As Culture = Sci Cult Science As Culture = Sci. Cult. Science as culture = Sci Cult (Lond) Science As Culture = Sci Cult-uk Science As Culture = Sci. Cult-uk. Scienceasia = Scienceasia Science At Century's End = Pitt Konst S Philos Science At Century's End = Pitt. Konst. S. Philos. Science-based Economic Development = Ann Ny Acad Sci Science-based Economic Development = Ann. Ny. Acad. Sci. Science Between Europe and Asia: Historical Studies On The Transmission, Adoption and Adaptation of Knowledge = Bost Stud Philos Sci Science Between Europe and Asia: Historical Studies On The Transmission, Adoption and Adaptation of Knowledge = Bost. Stud. Philos. Sci. Science Bulletin of Josai University = Sci. Bull. Josai Univ. Science Bulletin of The Faculty of Agriculture Kyushu University = Sci B Fac Agr Kyushu Science Bulletin of The Faculty of Agriculture Kyushu University = Sci. B. Fac. Agr. Kyushu Science Bulletin of the Faculty of Education = Sci. Bull. Fac. Ed. Nagasaki Univ. Science China-chemistry = Sci China Chem Science China-chemistry = Sci. China. Chem. Science China-earth Sciences = Sci China Earth Sci Science China-earth Sciences = Sci. China. Earth. Sci. Science China-information Sciences = Sci China Inform Sci Science China-information Sciences = Sci. China. Inform. Sci. Science China-life Sciences = Sci China Life Sci Science China-life Sciences = Sci. China. Life. Sci. Science China-mathematics = Sci China Math Science China-mathematics = Sci. China. Math. Science China-physics Mechanics & Astronomy = Sci China Phys Chem Science China-physics Mechanics & Astronomy = Sci. China. Phys. Chem. Science China-physics Mechanics & Astronomy = Sci China Phys Mech Science China-physics Mechanics & Astronomy = Sci. China. Phys. Mech. Science China-technological Sciences = Sci China Technol Sc Science China-technological Sciences = Sci. China. Technol. Sc. Science & Christian belief = Sci Christ Belief Science communication = Sci Commun Science Communication = Sci Commun Science Communication = Sci. Commun. Science Conference Series = Sci Con Ser Science Conference Series = Sci. Con. Ser. Science Curriculum = Th Yr Sch S Science Curriculum = Th. Yr. Sch. S. Science digest = Sci Dig Science Digest = Sci Dig Science Digest = Sci. Dig. Science du Sol = Sci. Sol Science Education and Civic Engagement: The Sencer Approach = Acs Sym Ser Science Education and Civic Engagement: The Sencer Approach = Acs. Sym. Ser. Science Education and Outreach: Forging A Path to The Future = Astr Soc P Science Education and Outreach: Forging A Path to The Future = Astr. Soc. P. Science education = Sci Educ Science & Education = Sci. Educ. Science Education = Sci Educ Science Education = Sci. Educ. Science & Education = Sci Educ-netherlands Science & Education = Sci. Educ-netherlands. Science Essentials = Sci Essentials Science Essentials = Sci. Essentials Science et Recherche Odontostomatologiques = Sci. Rech. Odontostomatol. Science Evaluation and Its Management = Nato Asi S 4 Sci Tec Science Evaluation and Its Management = Nato. Asi. S. 4. Sci. Tec. Science-fiction Studies = Sci-fiction Stud Science-fiction Studies = Sci-fiction. Stud. Science for Ecosystem-based Management: Narragansett Bay in The 21st Century = Springer Ser Env Man Science for Ecosystem-based Management: Narragansett Bay in The 21st Century = Springer. Ser. Env. Man. Science for Plant Breeding = Vort Pflanz Science for Plant Breeding = Vort. Pflanz. Science for the people = Sci People Science forum = Sci Forum Science Forum = Sci Forum Science Forum = Sci. Forum Science Foundation in China = Sci. Found. China Science & government report = Sci Gov Rep Science in China (Scientia Sinica) = Sci. China Ser. A Science in China (Scientia Sinica) = Sci. China Ser. E Science in China Series A-mathematics Physics Astronomy = Sci China Ser A Science in China Series A-mathematics Physics Astronomy = Sci. China Ser. A. Science in China Series A-mathematics Physics Astronomy & Technological Sciences = Sci China Ser A Science in China Series A-mathematics Physics Astronomy & Technological Sciences = Sci. China Ser. A. Science in China Series A-mathematics = Sci China Ser A Science in China Series A-mathematics = Sci. China Ser. A. Science in China, Series A: Mathematics = Sci. China, Ser. A Math. Science in China, Series A: Mathematics = Sci. China, Ser. A: Math. Science in China. Series B, Chemistry, Life Sciences and Earth Sciences = Sci. China B Science in China. Series B, Chemistry, life sciences & earth sciences = Sci China B Science in China Series B-chemistry Life Sciences & Earth Sciences = Sci China Ser B Science in China Series B-chemistry Life Sciences & Earth Sciences = Sci. China Ser. B. Science in China, Series B: Chemistry, Life Sciences, & Earth Sciences = Sci. China, Ser. B: Chem. Science in China Series B-chemistry = Sci China Ser B Science in China Series B-chemistry = Sci. China Ser. B. Science in China, Series B: Chemistry = Sci. China, Ser. B Chem. Science in China, Series B: Chemistry = Sci. China, Ser. B: Chem. Science in China. Series C, Life sciences / Chinese Academy of Sciences = Sci China C Life Sci Science in China. Series C, Life Sciences = Sci. China C Life Sci. Science In China. Series C, Life Sciences=Sci China C Life Sci;; Science in China Series C-life Sciences = Sci China Ser C Science in China Series C-life Sciences = Sci. China Ser. C. Science in China Series C: Life Sciences = Sci. China, Ser. C: Life Sci. Science in China, Series C: Life Sciences = Sci. China, Ser. C Life Sci. Science in China Series D-earth Sciences = Sci China Ser D Science in China Series D-earth Sciences = Sci. China Ser. D. Science in China Series D: Earth Sciences = Sci. China, Ser. D: Earth Sci. Science in China, Series D: Earth Sciences = Sci. China, Ser. D Earth Sci. Science in China Series E-engineering & Materials Science = Sci China Ser E Science in China Series E-engineering & Materials Science = Sci. China Ser. E. Science in China, Series E: Engineering & Materials Science = Sci. China, Ser. E Eng. Mater. Sci. Science in China Series E-technological Sciences = Sci China Ser E Science in China Series E-technological Sciences = Sci. China Ser. E. Science in China Series E: Technological Sciences = Sci. China Ser. E: Technol. Sci. Science in China, Series E: Technological Sciences = Sci. China, Ser. E: Tech. Sci. Science in China Series F-information Sciences = Sci China Ser F Science in China Series F-information Sciences = Sci. China Ser. F. Science in China Series F: Information Sciences = Sci. China, Ser. F: Info. Sci. Science in China Series F = Sci China Ser F Science in China Series F = Sci. China Ser. F Science in China Series G-physics Astronomy = Sci China Ser G Science in China Series G-physics Astronomy = Sci. China Ser. G. Science in China, Series G: Physics Mechanics and Astronomy = Sci. China, Ser. G Science in China Series G-physics Mechanics & Astronomy = Sci China Ser G Science in China Series G-physics Mechanics & Astronomy = Sci. China Ser. G. Science in China Series G: Physics, Mechanics & Astronomy = Sci. China, Ser. G: Phys., Mech., Astron. Science in Clothing Comfort = Woodhead Publ India Science in Clothing Comfort = Woodhead. Publ. India. Science in context = Sci Context Science in Context = Sci. Context Science in Context = Sci Context Science in Context = Sci. Context Science in Court = Iss Law Soc Science in Court = Iss. Law. Soc. Science Indicators for Developing Countries = Colloq Semi Science Indicators for Developing Countries = Colloq. Semi. Science-industry Nexus: History, Policy, Implications = Nobel Symp Science-industry Nexus: History, Policy, Implications = Nobel. Symp. Science in New Guinea = Sci New Guinea Science in progress = Sci Prog (New Haven) Science in Progress = Sci. Prog. (New Haven) Science in Society Series = Sci Soc Ser Science in Society Series = Sci. Soc. Ser. Science in The Context of Application = Bost Stud Philos Sci Science in The Context of Application = Bost. Stud. Philos. Sci. Science Journal = Sci J Science Journal = Sci. J. Science & justice : journal of the Forensic Science Society = Sci Justice Science & Justice = Sci Justice Science & Justice = Sci. Justice Science, medicine and man = Sci Med Man Science, Medicine, and Man = Sci. Med. Man Science & medicine = Sci Med (Phila) Science Networks Historical Studies = Sci Netw Hist Stud Science Networks Historical Studies = Sci. Netw. Hist. Stud. Science Networks = Sci. Networks Hist. Stud. Science news = Sci News Science News = Sci News Science News = Sci. News Science (New York, N.Y.) = Science Science of Advanced Materials and Process Engineering Series = Sci Adv Mat Science of Advanced Materials and Process Engineering Series = Sci. Adv. Mat. Science of Advanced Materials = Sci Adv Mater Science of Advanced Materials = Sci. Adv. Mater. Science of aging knowledge environment : SAGE KE = Sci Aging Knowledge Environ Science of Artificial Neural Networks Ii = P Soc Photo-opt Ins Science of Artificial Neural Networks Ii = P. Soc. Photo-opt. Ins. Science of Artificial Neural Networks, Pts 1 and 2 = P Soc Photo-opt Ins Science of Artificial Neural Networks, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Science of Awakening = Int Rev Neurobiol Science of Awakening = Int. Rev. Neurobiol. Science Of Biology Journal = Sci Bio J Science of Biology Journal = Sci Biol J Science of Biology Journal = Sci. Biol. J. Science of Ceramic Interfaces Ii = Mater Sci Monog Science of Ceramic Interfaces Ii = Mater. Sci. Monog. Science of Cold Fusion = Ital Phy So Science of Cold Fusion = Ital. Phy. So. Science of Complex Networks: From Biology to The Internet and Www = Aip Conf Proc Science of Complex Networks: From Biology to The Internet and Www = Aip. Conf. Proc. Science of Computer Programming = Sci Comput Program Science of Computer Programming = Sci. Comput. Program. Science of Computer Programming = Sci. Comput. Programming Science of Engineering Ceramics Iii = Key Eng Mat Science of Engineering Ceramics Iii = Key. Eng. Mat. Science of Engineering Ceramics Iii = Key Eng Mater Science of Engineering Ceramics Iii = Key. Eng. Mater. Science of Engineering Ceramics Ii = Key Eng Mat Science of Engineering Ceramics Ii = Key. Eng. Mat. Science of Engineering Ceramics Ii = Key Eng Mater Science of Engineering Ceramics Ii = Key. Eng. Mater. Science of Light = Sci Light Science of Light = Sci. Light Science of Making Torque From Wind = J Phys Conf Ser Science of Making Torque From Wind = J. Phys. Conf. Ser. Science of Nature in The Seventeenth Century = St Hist Phil Sci Ser Science of Nature in The Seventeenth Century = St. Hist. Phil. Sci. Ser. Science of Operations: Machines, Logic and The Invention of Programming = Hist Comput-springer Science of Operations: Machines, Logic and The Invention of Programming = Hist. Comput-springer. Science of Optimism and Hope = Laws Lif Symp Ser Science of Optimism and Hope = Laws. Lif. Symp. Ser. Science of Service Systems = Serv Sci Res Innov S Science of Service Systems = Serv. Sci. Res. Innov. S. Science of Sintering = Sci Sinter Science of Sintering = Sci. Sinter. Science of Social Influence: Advances and Future Progress = Front Soc Psychol Science of Social Influence: Advances and Future Progress = Front. Soc. Psychol. Science of Superconductivity and New Materials = Progr High Temp Supe Science of Superconductivity and New Materials = Progr. High. Temp. Supe. Science of Superstrong Field Interactions = Aip Conf Proc Science of Superstrong Field Interactions = Aip. Conf. Proc. Science of The Individual: Leibniz's Ontology of Individual Substance = Topoi Libr Science of The Individual: Leibniz's Ontology of Individual Substance = Topoi. Libr. Science of the Total Environment = Sci. Total Environ. Science of The Total Environment=Sci Total Environ;; Science of The Total Environment = Sci Total Environ Science of The Total Environment = Sci. Total Environ. Science of Well-being: The Collected Works of Ed Diener = Soc Indic Res Ser Science of Well-being: The Collected Works of Ed Diener = Soc. Indic. Res. Ser. Science Opportunities for The Warm Spitzer Mission Workshop = Aip Conf Proc Science Opportunities for The Warm Spitzer Mission Workshop = Aip. Conf. Proc. Science Perspectives for 3d Spectroscopy = Eso Astrophy Symp Science Perspectives for 3d Spectroscopy = Eso. Astrophy. Symp. Science Policy: New Mechanisms for Scientific Collaboration Between East and West = Nato Asi S 4 Sci Tec Science Policy: New Mechanisms for Scientific Collaboration Between East and West = Nato. Asi. S. 4. Sci. Tec. Science & practice perspectives / a publication of the National Institute on Drug Abuse, National Institutes of Health = Sci Pract Perspect Science progress = Sci Prog Science Progress=Sci Prog;; Science Progress = Sci Prog Science Progress = Sci. Prog. Science Progress = Sci Progress-uk Science Progress = Sci. Progress-uk. Science & public policy = Sci Public Policy Science & recherche odontostomatologiques = Sci Rech Odontostomatol Science Reports of Kagoshima University = Sci. Rep. Kagoshima Univ. Science Reports of the Faculty of Education = Sci. Rep. Fac. Ed. Gifu Univ. Natur. Sci. Science Reports of the Hirosaki University = Sci. Rep. Hirosaki Univ. Science Reports of The Research Institutes Tohoku University Series A-physics Chemistry and Metallurgy = Sci Rep Res Tohoku A Science Reports of The Research Institutes Tohoku University Series A-physics Chemistry and Metallurgy = Sci. Rep. Res. Tohoku A. Science Reports of the Research Institute, Tohoku University. Ser. C, Medicine = Sci. Rep. Res. Inst. Tohoku Univ. [Med.] Science Reports of the Yokohama National University = Sci. Rep. Yokohama Nat. Univ. Sect. I Math. Phys. Chem. Science = Sci Science=Science;; Science = Science Science = Science (80- ) Sciences De La Societe = Sci Soc-france Sciences De La Societe = Sci. Soc-france. Sciences De La Societe = Sci Societe Sciences De La Societe = Sci. Societe Sciences Des Aliments = Sci Aliment Sciences Des Aliments = Sci. Aliment. Sciences des aliments = Sci Aliments Science Serialized = Dibner Inst Stud His Science Serialized = Dibner. Inst. Stud. His. Sciences et avenir = Sci Avenir Sciences Et Techniques De L Animal De Laboratoire = Sci Tech Anim Lab Sciences Et Techniques De L Animal De Laboratoire = Sci. Tech. Anim. Lab. Sciences Et Techniques De L Eau = Sci Tech Eau Sciences Et Techniques De L Eau = Sci. Tech. Eau Sciences et techniques en perspective = Sci Tech Perspect Sciences et Techniques en Perspective = Sci. Tech. Perspect. Science, Sexuality, and Race in The United States and Australia, 1780s-1890s = Routl Adv Am Hist Science, Sexuality, and Race in The United States and Australia, 1780s-1890s = Routl. Adv. Am. Hist. Sciences geologiques: Memoire = Sci Geol Mem Sciences Humaines Et Religions = Sci Hum Rel Sciences Humaines Et Religions = Sci. Hum. Rel. Science Signaling = Sci Signal Science Signaling = Sci. Signal. Sciences-new York = Sciences Sciences-new York = Sciences. Science, Society and Sustainability: Education and Empowerment for An Uncertain World = Routl Res Educ Science, Society and Sustainability: Education and Empowerment for An Uncertain World = Routl. Res. Educ. Science & Society = Sci Soc Science & Society = Sci. Soc. Science & Sports = Sci Sport Science & Sports = Sci. Sport. Science & sports = Sci Sports Science & Sports = Sci. Sports Sciences Po Series in International Relations and Political Economy = Sci Po Ser Int Relat Sciences Po Series in International Relations and Political Economy = Sci. Po Ser. Int. Relat. Sciences sociales et sante = Sci Soc Sante Sciences Sociales Et Sante = Sci Soc Sante Sciences Sociales Et Sante = Sci. Soc. Sante Science's STKE = Sci. STKE Science's STKE : signal transduction knowledge environment = Sci STKE Science, Strategy and War: The Strategic Theory of John Boyd = Strateg Hist Science, Strategy and War: The Strategic Theory of John Boyd = Strateg. Hist. Science Studies As Naturalized Philosophy = Synth Libr Science Studies As Naturalized Philosophy = Synth. Libr. Science studies (Helsinki, Finland) = Sci Stud Science Studies = Sci Stud Science Studies = Sci. Stud. Sciences Update = Sci Update Sciences Update = Sci. Update Science teacher (Normal, Ill.) = Sci Teach Science Teaching : Making The System Work = Th Yr Sch S Science Teaching : Making The System Work = Th. Yr. Sch. S. Science Teaching = Th Yr Sch S Science Teaching = Th. Yr. Sch. S. Science, Technology, and Innovation Policy = Int Ser Technol Poli Science, Technology, and Innovation Policy = Int. Ser. Technol. Poli. Science, Technology, and Innovation Policy = Int S Techn Pol Inn Science, Technology, and Innovation Policy = Int. S. Techn. Pol. Inn. Science Technology and Medicine in Modern History = Sci Technol Med Mod Science Technology and Medicine in Modern History = Sci. Technol. Med. Mod. Science & Technology Education Library = Sci Technol Educ Lib Science & Technology Education Library = Sci. Technol. Educ. Lib. Science, technology & human values = Sci Technol Human Values Science Technology & Human Values = Sci Technol Hum Val Science Technology & Human Values = Sci. Technol. Hum. Val. Science & Technology Libraries = Sci Tech Libr Science & Technology Libraries = Sci. Tech. Libr. Science Translational Medicine = Sci Transl Med Science Translational Medicine = Sci. Transl. Med. Science Update = Sci Update Science Update = Sci. Update Science (Washington, DC, United States) = Science (Washington, DC, U. S.) Science With The Atacama Large Millimeter Array = Astr Soc P Science With The Atacama Large Millimeter Array = Astr. Soc. P. Science With The Gtc 10-m Telescope = Rev Mex Ast Astr Science With The Gtc 10-m Telescope = Rev. Mex. Ast. Astr. Science With The New Generation of High-energy Gamma-ray Experiments = Aip Conf Proc Science With The New Generation of High-energy Gamma-ray Experiments = Aip. Conf. Proc. Science With The New Generation of High Energy Gamma-ray Experiments = Aip Conf Proc Science With The New Generation of High Energy Gamma-ray Experiments = Aip. Conf. Proc. Science With The Ngst = Astr Soc P Science With The Ngst = Astr. Soc. P. Science With The Vlt in The Elt Era = Astrophysics Space Science With The Vlt in The Elt Era = Astrophysics. Space. Scientia Agricola = Sci Agr Scientia Agricola = Sci. Agr. Scientia Agricola = Sci Agric Scientia Agricola = Sci. Agric. Scientia canadensis = Sci Can Scientia Forestalis = Sci For Scientia Forestalis = Sci. For. Scientia genetica; periodico di genetica per i paesi latini = Sci Genet Scientia Geologica Sinica = Sci Geol Sinica Scientia Geologica Sinica = Sci. Geol. Sinica Scientia Graeco-arabica = Sci Graeco-arab Scientia Graeco-arabica = Sci. Graeco-arab. Scientia horticulturae = Sci Hortic (Amsterdam) Scientia Horticulturae = Sci Hortic-amsterdam Scientia Horticulturae = Sci. Hortic-amsterdam. Scientia in Early Modern Philosophy: Seventeenth-century Thinkers On Demonstrative Knowledge From First Principles = St Hist Phil Sci Ser Scientia in Early Modern Philosophy: Seventeenth-century Thinkers On Demonstrative Knowledge From First Principles = St. Hist. Phil. Sci. Ser. Scientia Iranica = Sci. Iran. Scientia Iranica = Sci Iran Scientia Iranica = Sci. Iran. Scientia Iranica Transaction A-civil Engineering = Sci Iran Trans A Scientia Iranica Transaction A-civil Engineering = Sci. Iran. Trans. A. Scientia Iranica Transaction B-mechanical Engineering = Sci Iran Trans B Scientia Iranica Transaction B-mechanical Engineering = Sci. Iran. Trans. B. Scientia Iranica Transaction C-chemistry and Chemical Engineering = Sci Iran Trans C Scientia Iranica Transaction C-chemistry and Chemical Engineering = Sci. Iran. Trans. C. Scientia Iranica Transaction D-computer Science & Engineering and Electrical Engineering = Sci Iran Trans D Scientia Iranica Transaction D-computer Science & Engineering and Electrical Engineering = Sci. Iran. Trans. D. Scientia Iranica Transaction E-industrial Engineering = Sci Iran Trans E Scientia Iranica Transaction E-industrial Engineering = Sci. Iran. Trans. E. Scientia Marina = Sci Mar Scientia Marina = Sci. Mar. Scientia medica italica. English ed = Sci Med Ital Scientia Paedagogica Experimentalis = Sci Paedagog Exp Scientia Paedagogica Experimentalis = Sci. Paedagog. Exp. Scientia pharmaceutica = Sci Pharm Scientia Pharmaceutica = Sci. Pharm. Scientia; rivista di scienza = Scientia Scientia = Scientia Scientia Sinica = Sci Sin Scientia Sinica = Sci. Sin. Scientia Sinica = Sci Sinica Scientia Sinica = Sci. Sinica Scientia Sinica Series A-mathematical Physical Astronomical & Technical Sciences = Sci China Ser A Scientia Sinica Series A-mathematical Physical Astronomical & Technical Sciences = Sci. China. Ser. A. Scientia Sinica Series A-mathematical Physical Astronomical & Technical Sciences = Sci Sin A-math P A T Scientia Sinica Series A-mathematical Physical Astronomical & Technical Sciences = Sci. Sin. A-math. P. A. T. Scientia Sinica. Series B, Chemical, Biological, Agricultural, Medical and Earth Sciences = Sci. Sin. [B] Scientia Sinica. Series B, Chemical, biological, agricultural, medical & earth sciences / Chung-kuo k'o hsueh yuan, chu pan = Sci Sin [B] Scientia Sinica Series B-chemical Biological Agricultural Medical & Earth Sciences = Sci China Ser B Scientia Sinica Series B-chemical Biological Agricultural Medical & Earth Sciences = Sci. China. Ser. B. Scientia Sinica Series B-chemical Biological Agricultural Medical & Earth Sciences = Sci Sin B-chem B A M Scientia Sinica Series B-chemical Biological Agricultural Medical & Earth Sciences = Sci. Sin. B-chem. B. A. M. Scientific Aesthetics-sciences De L Art = Sci Aesthet-sci Art Scientific Aesthetics-sciences De L Art = Sci. Aesthet-sci. Art Scientific American Library Paperback = Sci. Amer. Lib. Paperback Scientific American=Sci Am;; Scientific American = Sci Am Scientific American = Sci. Am. Scientific American = Sci. Amer. Scientific and Educational Bulletin = Sci. Educ. Bull. Scientific And Educational Bulletin = Sci Educ Bull Scientific and educational journal = Sci Educ J Scientific and Educational Journal = Sci. Educ. J. Scientific and Engineering Computation = Sci Eng Comput Scientific and Engineering Computation = Sci. Eng. Comput. Scientific and Statistical Database Management = Lect Notes Comput Sc Scientific and Statistical Database Management = Lect. Notes. Comput. Sc. Scientific and Statistical Database Management, Proceedings = Lect Notes Comput Sc Scientific and Statistical Database Management, Proceedings = Lect. Notes. Comput. Sc. Scientific and Technical Issues in The Management of Spent Fuel of Decommissioned Nuclear Submarines = Nato Sci Ser Ii-math Scientific and Technical Issues in The Management of Spent Fuel of Decommissioned Nuclear Submarines = Nato. Sci. Ser. Ii-math. Scientific and Technical Issues in The Management of Spent Fuel of Decommissioned Nuclear Submarines = Nato Sci Ser Ii Math Scientific and Technical Issues in The Management of Spent Fuel of Decommissioned Nuclear Submarines = Nato. Sci. Ser. Ii. Math. Scientific and Technical Means of Distinguishing Between Natural and Other Outbreaks of Disease = Nato Sci Prt 1 Disar Scientific and Technical Means of Distinguishing Between Natural and Other Outbreaks of Disease = Nato. Sci. Prt. 1. Disar. Scientific Applications of Grid Computing = Lect Notes Comput Sc Scientific Applications of Grid Computing = Lect. Notes. Comput. Sc. Scientific Applications of Neural Nets = Lect Notes Phys Scientific Applications of Neural Nets = Lect. Notes. Phys. Scientific Approaches to Consciousness = Carn S Cogn Scientific Approaches to Consciousness = Carn. S. Cogn. Scientific Article in The Age of Digitization = Inform Sci Knowl Man Scientific Article in The Age of Digitization = Inform. Sci. Knowl. Man. Scientific Ballooning = Adv Space Res Scientific Ballooning = Adv. Space. Res. Scientific Ballooning = Adv Space Res-series Scientific Ballooning = Adv. Space. Res-series. Scientific Ballooning in The Next Century: Goals and Challenges = Adv Space Res Scientific Ballooning in The Next Century: Goals and Challenges = Adv. Space. Res. Scientific Bases for The Preparation of Heterogeneous Catalysts: Proceedings of The 10th International Symposium = Stud Surf Sci Catal Scientific Bases for The Preparation of Heterogeneous Catalysts: Proceedings of The 10th International Symposium = Stud. Surf. Sci. Catal. Scientific Bases for The Preparation of Heterogeneous Catalysts, Proceedings of The 9th International Symposium = Stud Surf Sci Catal Scientific Bases for The Preparation of Heterogeneous Catalysts, Proceedings of The 9th International Symposium = Stud. Surf. Sci. Catal. Scientific Bases for The Preparation of Heterogeneous Catalysts = Stud Surf Sci Catal Scientific Bases for The Preparation of Heterogeneous Catalysts = Stud. Surf. Sci. Catal. Scientific Bases of Cancer Chemoprevention = Int Congr Ser Scientific Bases of Cancer Chemoprevention = Int. Congr. Ser. Scientific Basis for Nuclear Waste Management Xiii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xiii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xiv = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xiv = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xix = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xix = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xviii, Pts 1 and 2 = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xviii, Pts 1 and 2 = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xvii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xvii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xvi = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xvi = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xv = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xv = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxi = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxi = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxiv = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxiv = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxix = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxix = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xx = Mat Res S C Scientific Basis for Nuclear Waste Management Xx = Mat. Res. S. C. Scientific Basis for Nuclear Waste Management Xxviii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxviii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxvii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxvii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxvi = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxvi = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxv = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxv = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxxii = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxxii = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxxi = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxxi = Mater. Res. Soc. Symp. P. Scientific Basis for Nuclear Waste Management Xxx = Mater Res Soc Symp P Scientific Basis for Nuclear Waste Management Xxx = Mater. Res. Soc. Symp. P. Scientific Basis for Vitamin Intake in Human Nutrition = Bibl Nutr Diet Scientific Basis for Vitamin Intake in Human Nutrition = Bibl. Nutr. Diet. Scientific Basis of Educational Productivity = Res Educ Product Scientific Basis of Educational Productivity = Res. Educ. Product. Scientific Basis of Fertility Regulation = Sci Bas Fer Scientific Basis of Fertility Regulation = Sci. Bas. Fer. Scientific Basis of Medicine Annual Reviews = Sci. Basis Med. Annu. Rev. Scientific Basis of Tobacco Product Regulation: Second Report of A Who Study Group = Who Tech Rep Ser Scientific Basis of Tobacco Product Regulation: Second Report of A Who Study Group = Who Tech. Rep. Ser. Scientific Basis of Tobacco Product Regulation = Who Tech Rep Ser Scientific Basis of Tobacco Product Regulation = Who. Tech. Rep. Ser. Scientific Computation = Sci. Comput. Scientific Computation = Sci Comput Scientific Computation = Sci. Comput. Scientific Computation = Scientif Comput Scientific Computation = Scientif. Comput. Scientific Computing and Applications = Adv Comp The Pract Scientific Computing and Applications = Adv. Comp. The. Pract. Scientific Computing and Automation ( Europe ) 1990 = Data Handl Sci Techn Scientific Computing and Automation ( Europe ) 1990 = Data. Handl. Sci. Techn. Scientific Computing and Validated Numerics = Math Res Scientific Computing and Validated Numerics = Math. Res. Scientific Computing in Electrical Engineering = Math Indust Scientific Computing in Electrical Engineering = Math. Indust. Scientific Computing in Electrical Engineering, Proceedings = Lect Notes Comp Sci Scientific Computing in Electrical Engineering, Proceedings = Lect. Notes. Comp. Sci. Scientific Computing in Electrical Engineering Scee 2008 = Math Indust Scientific Computing in Electrical Engineering Scee 2008 = Math. Indust. Scientific Computing With Case Studies = Other Titl Appl Math Scientific Computing With Case Studies = Other. Titl. Appl. Math. Scientific Cooperation, State Conflict: The Role of Scientists in Mitigating International Discord = Ann Ny Acad Sci Scientific Cooperation, State Conflict: The Role of Scientists in Mitigating International Discord = Ann. Ny. Acad. Sci. Scientific Correspondence of H.a. Lorentz, Vol 1 = Sourc Stud Hist Math Scientific Correspondence of H.a. Lorentz, Vol 1 = Sourc. Stud. Hist. Math. Scientific Data Mining: A Practical Perspective = Other Titl Appl Math Scientific Data Mining: A Practical Perspective = Other. Titl. Appl. Math. Scientific Detection of Fakery in Art Ii = P Soc Photo-opt Ins Scientific Detection of Fakery in Art Ii = P. Soc. Photo-opt. Ins. Scientific Detection of Fakery in Art = P Soc Photo-opt Ins Scientific Detection of Fakery in Art = P. Soc. Photo-opt. Ins. Scientific Detectors for Astronomy 2005 = Astrophys Space Sc L Scientific Detectors for Astronomy 2005 = Astrophys. Space. Sc. L. Scientific Detectors for Astronomy: The Beginning of A New Era = Astrophys Space Sc L Scientific Detectors for Astronomy: The Beginning of A New Era = Astrophys. Space. Sc. L. Scientific Dialogue : From Basic Research to Clinical Intervention = Ann S Eur R Scientific Dialogue : From Basic Research to Clinical Intervention = Ann. S. Eur. R. Scientific Drivers for Eso Future Vlt/vlti Instrumentation, Proceedings = Eso Astrophy Symp Scientific Drivers for Eso Future Vlt/vlti Instrumentation, Proceedings = Eso Astrophy. Symp. Scientific Engineering for Distributed Java Applications = Lect Notes Comput Sc Scientific Engineering for Distributed Java Applications = Lect. Notes. Comput. Sc. Scientific Engineering of Distributed Java Applications = Lect Notes Comput Sc Scientific Engineering of Distributed Java Applications = Lect. Notes. Comput. Sc. Scientific, Environmental, and Political Issues in The Circum-caspian Region = Nato Asi 2 Scientific, Environmental, and Political Issues in The Circum-caspian Region = Nato. Asi. 2. Scientific Evidence in European Environmental Rulemaking: The Case of The Landfill and End-of-life Vehicles Directives = Stud Law Scientific Evidence in European Environmental Rulemaking: The Case of The Landfill and End-of-life Vehicles Directives = Stud. Law. Scientific Exploration, Planetary Protection, Active Experiments and Dusty Plasmas = Adv Space Res Scientific Exploration, Planetary Protection, Active Experiments and Dusty Plasmas = Adv. Space. Res. Scientific Exploration, Planetary Protection, Active Experiments and Dusty Plasmas = Adv Space Res-series Scientific Exploration, Planetary Protection, Active Experiments and Dusty Plasmas = Adv. Space. Res-series. Scientific Frontiers in Research On Extrasolar Planets = Astr Soc P Scientific Frontiers in Research On Extrasolar Planets = Astr. Soc. P. Scientific Horticulture = Sci Hortic-england Scientific Horticulture = Sci. Hortic-england. Scientific Impact of The Goddard High Resolution Spectrograph = Astr Soc P Scientific Impact of The Goddard High Resolution Spectrograph = Astr. Soc. P. Scientific Inquiry and Nature of Science: Implications for Teaching, Learning, and Teacher Education = Cont Trends Iss Sci Scientific Inquiry and Nature of Science: Implications for Teaching, Learning, and Teacher Education = Cont. Trends. Iss. Sci. Scientific Issues of The Next Century = Ann Ny Acad Sci Scientific Issues of The Next Century = Ann. Ny. Acad. Sci. Scientific Literacy = Th Yr Sch S Scientific Literacy = Th. Yr. Sch. S. Scientific Methods for The Study of Polymer Colloids and Their Applications = Nato Adv Sci I C-mat Scientific Methods for The Study of Polymer Colloids and Their Applications = Nato. Adv. Sci. I. C-mat. Scientific Modeling and Simulation = Sci. Model. Simul. Scientific Modeling and Simulations = Sci Model Simul Scientific Modeling and Simulations = Sci. Model. Simul. Scientific Monthly = Sci Mon Scientific Monthly = Sci. Mon. Scientific Nature of Geomorphology = Bing Symp G Scientific Nature of Geomorphology = Bing. Symp. G. Scientific Papers of The Institute of Mining of The Wroclaw University of Technology, Conferences = Sci P Inst Min Conf Scientific Papers of The Institute of Mining of The Wroclaw University of Technology, Conferences = Sci. P. Inst. Min. Conf. Scientific Philosophy: Origins and Developments = Vien Cir Inst Yearbk Scientific Philosophy: Origins and Developments = Vien. Cir. Inst. Yearbk. Scientific Pluralism = Minn Stud Philos Sci Scientific Pluralism = Minn. Stud. Philos. Sci. Scientific proceedings of the Cardiff Medical Society = Sci Proc Cardiff Med Soc Scientific Proceedings of the Cardiff Medical Society = Sci. Proc. Cardiff Med. Soc. Scientific Programming = Sci Programming-neth Scientific Programming = Sci. Programming-neth. Scientific Progress: A Study Concerning The Nature of The Relation Between Successive Scientific Theories, Fourth Edition = Synth Libr Scientific Progress: A Study Concerning The Nature of The Relation Between Successive Scientific Theories, Fourth Edition = Synth. Libr. Scientific Psychology Series = Sci Psych S Scientific Psychology Series = Sci. Psych. S. Scientific reports of the Istituto superiore di sanita = Sci Rep Ist Super Sanita Scientific Research and Essays = Sci Res Essays Scientific Research and Essays = Sci. Res. Essays Scientific Research in World War Ii: What Scientists Did in The War = Rout Stud Mod Hist Scientific Research in World War Ii: What Scientists Did in The War = Rout. Stud. Mod. Hist. Scientific review = Guigoz Sci Rev Scientific Revolutions = Sci Revolut Scientific Revolutions = Sci. Revolut. Scientific Structuralism = Bost Stud Philos Sci Scientific Structuralism = Bost. Stud. Philos. Sci. Scientific Studies of Reading = Sci Stud Read Scientific Studies of Reading = Sci. Stud. Read. Scientific Survey of Puerto Rico and The Virgin Islands = Ann Ny Acad Sci Scientific Survey of Puerto Rico and The Virgin Islands = Ann. Ny. Acad. Sci. Scientific Tools and Research Needs for Multifunctional Mediterranean Forest Ecosystem Management = Eur Forest Inst Proc Scientific Tools and Research Needs for Multifunctional Mediterranean Forest Ecosystem Management = Eur. Forest Inst. Proc. Scientific Uncertainty and Its Influence On The Public Communication Process = Nato Adv Sci I D-beh Scientific Uncertainty and Its Influence On The Public Communication Process = Nato. Adv. Sci. I. D-beh. Scientific Visualization = E H Worksh Scientific Visualization = E. H. Worksh. Scientist and Citizen = Sci Citiz Scientist and Citizen = Sci. Citiz. Scientist and The Humanist: A Festschrift in Honor of Elliot Aronson = Mod Pioneer Psychol Scientist and The Humanist: A Festschrift in Honor of Elliot Aronson = Mod. Pioneer. Psychol. Scientist Or Engineer As An Expert Witness = Chem Ind-ser Scientist Or Engineer As An Expert Witness = Chem. Ind-ser. Scientist (Philadelphia, Pa.) = Scientist Scientists and Mountains = Colloq Cths Scientists and Mountains = Colloq. Cths. Scientist's Atom and The Philosopher's Stone: How Science Succeeded and Philosophy Failed to Gain Knowledge of Atoms = Bost Stud Philos Sci Scientist's Atom and The Philosopher's Stone: How Science Succeeded and Philosophy Failed to Gain Knowledge of Atoms = Bost. Stud. Philos. Sci. Scientist = Scientist Scientometrics = Scientometrics Scienze dell’antichità. Storia, archeologia, antropologia = ScAnt Scienze, Le = Scienze Scienze Matematiche = Sci. Mat. Scifi 97: Conference On Scintillating Fiber Detectors = Aip Conf Proc Scifi 97: Conference On Scintillating Fiber Detectors = Aip. Conf. Proc. Scintillating Fiber Technology and Applications Ii = P Soc Photo-opt Ins Scintillating Fiber Technology and Applications Ii = P. Soc. Photo-opt. Ins. Scintillating Fiber Technology and Applications = P Soc Photo-opt Ins Scintillating Fiber Technology and Applications = P. Soc. Photo-opt. Ins. Scintillator and Phosphor Materials = Mater Res Soc Symp P Scintillator and Phosphor Materials = Mater. Res. Soc. Symp. P. SCI nursing : a publication of the American Association of Spinal Cord Injury Nurses = SCI Nurs SCI Nursing = SCI Nurs. Scioto Hopewell and Their Neighbors: Bioarchaeological Documentation and Cultural Understanding = Interd Contrib Arch Scioto Hopewell and Their Neighbors: Bioarchaeological Documentation and Cultural Understanding = Interd. Contrib. Arch. Scna Newsletter = SCNA Newsl SCNA Newsletter = SCNA Newsl. SCN news / United Nations, Administrative Committee on Coordination, Subcommittee on Nutrition = SCN News Scoliosis = Scoliosis Scope Series = Scope Ser Scope Series = Scope Ser. Scotia-interdisciplinary Journal of Scottish Studies = Scotia-interdisc J S Scotia-interdisciplinary Journal of Scottish Studies = Scotia-interdisc. J. S. Scottish Educational Review = Scot Educ Rev Scottish Educational Review = Scot. Educ. Rev. Scottish educational review = Scott Edu Rev Scottish Educational Studies = Scot Educ Rev Scottish Educational Studies = Scot. Educ. Rev. Scottish Forestry = Scott. For. Scottish Geographical Journal = Scot Geogr J Scottish Geographical Journal = Scot. Geogr. J. Scottish Geographical Journal = Scott Geogr J Scottish Geographical Journal = Scott. Geogr. J. Scottish Geographical Magazine = Scot Geogr Mag Scottish Geographical Magazine = Scot. Geogr. Mag. Scottish geographical magazine = Scott Geogr Mag Scottish Graduate Series = Scot Grad Ser Scottish Graduate Series = Scot. Grad. Ser. Scottish Historical Review = Scot Hist Rev Scottish Historical Review = Scot. Hist. Rev. Scottish Journal of Geology = Scot J Geol Scottish Journal of Geology = Scot. J. Geol. Scottish Journal of Political Economy = Scot J Polit Econ Scottish Journal of Political Economy = Scot. J. Polit. Econ. Scottish Journal of Political Economy=Scot. J. Polit. Economy Scottish journal of political economy = Scott J Polit Econ Scottish Journal of Religious Studies = Scot J Relig Stud Scottish Journal of Religious Studies = Scot. J. Relig. Stud. Scottish Journal of Sociology = Scot J Sociol Scottish Journal of Sociology = Scot. J. Sociol. Scottish Journal of Theology = Scot J Theology Scottish Journal of Theology = Scot. J. Theology Scottish Literary Journal = Scot Literary J Scottish Literary Journal = Scot. Literary J. Scottish Literary Review = Scott Lit Rev Scottish Literary Review = Scott. Lit. Rev. Scottish Medical Journal = Scot Med J Scottish Medical Journal = Scot. Med. J. Scottish medical journal = Scott Med J Scottish Medical Journal=Scott Med J;; Scottish Medical Journal = Scott. Med. J. Scottish Studies : Publications of The Scottish Studies Centre of The Johannes Gutenberg Universitat Mainz in Germersheim = Scot St Pub Scottish Studies : Publications of The Scottish Studies Centre of The Johannes Gutenberg Universitat Mainz in Germersheim = Scot. St. Pub. Scottish Studies Review = Scot Stud Rev Scottish Studies Review = Scot. Stud. Rev. Scottish Studies = Scot Stud Scottish Studies = Scot. Stud. Scottish Universities Summer Schools in Physics Publications = Scott Univ Sum Sch P Scottish Universities Summer Schools in Physics Publications = Scott. Univ. Sum. Sch. P. Scrap Tire Derived Geomaterials: Opportunities and Challenges = Proc Monogr Eng Wate Scrap Tire Derived Geomaterials: Opportunities and Challenges = Proc. Monogr. Eng. Wate. Screening and Preventive Diagnosis With Radiological Imaging = Med Radiol Diagn Ima Screening and Preventive Diagnosis With Radiological Imaging = Med. Radiol. Diagn. Ima. Screening Europe = Bfi Work P Screening Europe = Bfi. Work. P. Screening : journal of the International Society of Neonatal Screening = Screening Screening = Screening Screen = Screen SC Reports = SC Rep. SC [reports]. U.S. Atomic Energy Commission = SC Rep Scriblerian and The Kit-cats = Scriblerian Kit-cats Scrinium Friburgense = Scrin Friburg Scrinium Friburgense = Scrin. Friburg. Scrinium Friburgense = Scrinium Fribg Scrinium Friburgense = Scrinium Fribg. Scripta Botanica Belgica = Scripta Botan Belg Scripta Botanica Belgica = Scripta Botan. Belg. Scripta Canonica = Scrip Canon Scripta Canonica = Scrip. Canon. Scripta classica Israelica: yearbook of the Israel Soc. for the promotion of classical Studies = SCI Scripta classica Israelica. Yearbook of the Israel Society for the Promotion of Classical Studies = ScrClIsr Scripta ethnologica (Centro Argentino de Etnologia Americana) = Scr Ethnol Scripta Geobotanica = Scr. Geobot. Scripta Hierosolymitana. Publications of the Hebrew University, Jerusalem = ScrHieros Scripta Instituti Donneriani Aboensis = Sc Inst Don Scripta Instituti Donneriani Aboensis = Sc. Inst. Don. Scripta Materialia = Scripta Mater Scripta Materialia = Scripta Mater. Scripta Materialia = Scr. Mater. Scripta Mathematica = Scripta Math Scripta Mathematica = Scripta Math. Scripta medica = Scr Med (Brno) Scripta Medica = Scr. Med. (Brno) Scripta mediterranea. Bulletin of the Society for Mediterranean Studies, Toronto = ScrMed Scripta Metallugica et Materialia = Scr. Metall. Mater. Scripta Metallurgica Et Materialia = Scripta Metall Mater Scripta Metallurgica Et Materialia = Scripta Metall. Mater. Scripta Metallurgica et Materialia = Scr. Metall. Mater. Scripta Metallurgica = Scripta Metall Mater Scripta Metallurgica = Scripta Metall. Mater. Scripta Metallurgica = Scr. Metall. Scripta Nova-revista Electronica De Geografia Y Ciencias Sociales = Scripta Nova Scripta Nova-revista Electronica De Geografia Y Ciencias Sociales = Scripta Nova. Scripta Nova-revista Electronica De Geografia Y Ciencias Sociales = Scr Nova Scripta Nova-revista Electronica De Geografia Y Ciencias Sociales = Scr. Nova. Scripta = Scripta Comput. Sci. Appl. Math. Scripting Computer-supported Collaborative Learning - Cognitive, Computational and Educational Perspectives = Comput-supp Collab L Scripting Computer-supported Collaborative Learning - Cognitive, Computational and Educational Perspectives = Comput-supp. Collab. L. Scriptorium: revue internationale des études relatives aux manuscrits = Scriptorium Scriptorium = Scriptorium Scripture As Logos: Rabbi Ishmael and The Origins of Midrash = Divin Reread Late An Scripture As Logos: Rabbi Ishmael and The Origins of Midrash = Divin. Reread. Late. An. Scripture & Hermeneutics Series = Scripture Hermeneut Scripture & Hermeneutics Series = Scripture Hermeneut. Scriptures in The Gospels = Bib Eph The Scriptures in The Gospels = Bib. Eph. The Scrittura e Civiltà = S&C Scrittura e civiltà = ScrCiv Scrutinising Science: The Changing Uk Government of Science = Transform Gov Scrutinising Science: The Changing Uk Government of Science = Transform. Gov. SC Trodent = SC Trodent Sculpture From Arcadia and Laconia = Oxbow Monogr Sculpture From Arcadia and Laconia = Oxbow. Monogr. Sculpture Journal = Sculpt J Sculpture Journal = Sculpt. J. Sculpture Review = Sculpt Rev Sculpture Review = Sculpt. Rev. Sda Dentist = SDA Dent SDA Dentist = SDA Dent. SDC magazine = Sdc Mag Sdl 2003: System Design, Proceedings = Lect Notes Comput Sc Sdl 2003: System Design, Proceedings = Lect. Notes. Comput. Sc. Sdl 2005: Model Driven, Proceedings = Lect Notes Comput Sc Sdl 2005: Model Driven, Proceedings = Lect. Notes. Comput. Sc. Sdl 2007: Design for Dependable Systems, Proceedings = Lect Notes Comput Sc Sdl 2007: Design for Dependable Systems, Proceedings = Lect. Notes. Comput. Sc. Sdl 2009: Design for Motes and Mobiles, Proceedings = Lect Notes Comput Sc Sdl 2009: Design for Motes and Mobiles, Proceedings = Lect. Notes. Comput. Sc. Seaa 2007: 33rd Euromicro Conference On Software Engineering and Advanced Applications, Proceedings = Euromicro Conf Proc Seaa 2007: 33rd Euromicro Conference On Software Engineering and Advanced Applications, Proceedings = Euromicro Conf. Proc. Seabed Morphology of The Russian Arctic Shelf = Oceanogr Ocean Eng Seabed Morphology of The Russian Arctic Shelf = Oceanogr. Ocean. Eng. Seabird Bycatch: Trends,roadblocks and Solutions = Uasgcp Rep Seabird Bycatch: Trends,roadblocks and Solutions = Uasgcp. Rep. Seafood From Producer to Consumer, Integrated Approach to Quality = Dev Food Sci Seafood From Producer to Consumer, Integrated Approach to Quality = Dev. Food. Sci. Sea Frontiers = Sea Frontiers Seagrasses: Monitoring, Ecology, Physiology, and Management = Mar Sci Ser Seagrasses: Monitoring, Ecology, Physiology, and Management = Mar. Sci. Ser. Seagull theatre quarterly : STQ = Seagull Theatre Q Sea Level Changes in Eastern Mediterranean During Holocene - Indicators and Human Impacts = Z Geomorphol Supp Sea Level Changes in Eastern Mediterranean During Holocene - Indicators and Human Impacts = Z. Geomorphol. Supp. Sealing Technology = Sealing Technol. Sea Lions of The World = Low Wake Fi Sea Lions of The World = Low. Wake. Fi. Sean O Casey Review = Sean O Casey Rev Sean O Casey Review = Sean O Casey Rev. Sea of Silk: A Textile Geography of Women's Work in Medieval French Literature = Middle Ages Ser Sea of Silk: A Textile Geography of Women's Work in Medieval French Literature = Middle. Ages. Ser. Seapower: A Guide for The Twenty-first Century, Second Edition = Cass Ser Nav Policy Seapower: A Guide for The Twenty-first Century, Second Edition = Cass. Ser. Nav. Policy. SEAPRAP research report : a report of research undertaken with the assistance of an award from the Southeast Asia Population Research Awards Program (SEAPRAP), Institute of Southeast Asian Studies = Seaprap Res Rep Seara medica = Seara Med Search Computing: Challenges and Directions = Lect Notes Comput Sc Search Computing: Challenges and Directions = Lect. Notes. Comput. Sc. Search Engines, Link Analysis, and Users Web Behavior = Stud Comput Intell Search Engines, Link Analysis, and Users Web Behavior = Stud. Comput. Intell. Searcher (Medford, N.J.) = Search Medford N J Searcher-the Magazine for Database Professionals = Searcher Searcher-the Magazine for Database Professionals = Searcher. Search for A Common European Foreign and Security Policy: Leaders, Cognitions, and Questions of Institutional Viability = Adv Foreign Policy A Search for A Common European Foreign and Security Policy: Leaders, Cognitions, and Questions of Institutional Viability = Adv. Foreign Policy. A Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Iii = Proc Spie Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Iii = Proc. Spie. Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Iii = P Soc Photo-opt Ins Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Iii = P. Soc. Photo-opt. Ins. Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Ii = P Soc Photo-opt Ins Search for Extraterrestrial Intelligence (seti) in The Optical Spectrum Ii = P. Soc. Photo-opt. Ins. Search for Extraterrestrial Intelligence ( Seti ) in The Optical Spectrum = P Soc Photo-opt Ins Search for Extraterrestrial Intelligence ( Seti ) in The Optical Spectrum = P. Soc. Photo-opt. Ins. Search for Fundamental Theory = Aip Conf Proc Search for Fundamental Theory = Aip. Conf. Proc. Search for Iraq's Weapons of Mass Destruction: Inspection, Verification and Non-proliferation = Glob Iss Ser Search for Iraq's Weapons of Mass Destruction: Inspection, Verification and Non-proliferation = Glob. Iss. Ser. Search for Muon Neutrino to Electron Neutrino Oscillations in The Minos Experiment = Springer Theses-reco Search for Muon Neutrino to Electron Neutrino Oscillations in The Minos Experiment = Springer. Theses-reco. Search for Other Worlds = Aip Conf Proc Search for Other Worlds = Aip. Conf. Proc. Search for Strategies for Sustainable Dryland Cropping in Semi-arid Eastern Kenya = Aciar Proc Search for Strategies for Sustainable Dryland Cropping in Semi-arid Eastern Kenya = Aciar. Proc. Search for The Totally Unexpected in The Lhc Era = Subnucl Ser Search for The Totally Unexpected in The Lhc Era = Subnucl. Ser. Search Games and Other Applications of Game Theory = Lect Notes Econ Math Search Games and Other Applications of Game Theory = Lect. Notes. Econ. Math. Searching for Security in A New Europe = Diplomat Diplomacy Searching for Security in A New Europe = Diplomat. Diplomacy. Searching for The Just City = Question Cities Searching for The Just City = Question. Cities. Search Institute Series On Developmentally Attentive Community and Society = Search Inst Ser Dev Search Institute Series On Developmentally Attentive Community and Society = Search Inst. Ser. Dev. Search Institute Series On Developmentally Attentive Community and Society = Search I Ser Dev Att Search Institute Series On Developmentally Attentive Community and Society = Search I. Ser. Dev. Att. Search = Search Seaside Operations Planning in Container Terminals = Contrib Manag Sci Seaside Operations Planning in Container Terminals = Contrib. Manag. Sci. Seasonal Allergic Conjunctivitis and Rhinoconjunctivitis = Roy S Med S Seasonal Allergic Conjunctivitis and Rhinoconjunctivitis = Roy. S. Med. S. Seasonal Climate: Forecasting and Managing Risk = Nato Sci S Ss Iv Ear Seasonal Climate: Forecasting and Managing Risk = Nato. Sci. S. Ss. Iv. Ear. Seasonal Forecasts, Climatic Change and Human Health = Adv Glob Change Res Seasonal Forecasts, Climatic Change and Human Health = Adv. Glob. Change Res. Seasonality and Human Ecology = Soc St Hum Seasonality and Human Ecology = Soc. St. Hum. Seasonality in Human Mortality: A Demographic Approach = Demogr Res Monogr Seasonality in Human Mortality: A Demographic Approach = Demogr. Res. Monogr. Seasonal Landscapes = Landsc Ser Seasonal Landscapes = Landsc. Ser. Seas Proceedings = Seas Proc Seas Proceedings = Seas Proc. Sea Surface Topography and The Geoid = Iag Symp Sea Surface Topography and The Geoid = Iag. Symp. Sea Technology = Sea Technol Sea Technology = Sea Technol. Seattle University law review / Seattle University = Seattle Univ Law Rev Sea View Hospital bulletin = Sea View Hosp Bull Seawater Desalination: Conventional and Renewable Energy Processes = Green Energy Technol Seawater Desalination: Conventional and Renewable Energy Processes = Green. Energy Technol. Seaweeds and Their Role in Globally Changing Environments = Cell Orig Life Extre Seaweeds and Their Role in Globally Changing Environments = Cell. Orig. Life. Extre. SEB experimental biology series = SEB Exp Biol Ser Secessionist Challenges in Aceh and Papua: Is Special Autonomy The Solution = Pol Stud Secessionist Challenges in Aceh and Papua: Is Special Autonomy The Solution = Pol. Stud. SECOLAS annals : journal of the Southeastern Council on Latin American Studies. Southeastern Council on Latin American Studies = SECOLAS Ann Second Advances in Solar Physics Euroconference: Three-dimensional Structure of Solar Active Regions = Astr Soc P Second Advances in Solar Physics Euroconference: Three-dimensional Structure of Solar Active Regions = Astr. Soc. P. Second Aerospace Environmental Technology Conference = Nasa Conf P Second Aerospace Environmental Technology Conference = Nasa. Conf. P. Second Annual International Conference On Solid State Lasers for Application to Inertial Confinement Fusion = P Soc Photo-opt Ins Second Annual International Conference On Solid State Lasers for Application to Inertial Confinement Fusion = P. Soc. Photo-opt. Ins. Second Annual Spitzer Science Center Conference: Infrared Diagnostics of Galaxy Evolution = Astr Soc P Second Annual Spitzer Science Center Conference: Infrared Diagnostics of Galaxy Evolution = Astr. Soc. P. Secondary Education At The Crossroads = Educ Asia Pac Reg-is Secondary Education At The Crossroads = Educ. Asia. Pac. Reg-is. Secondary Education in A Changing World = Second Educ Chang Wo Secondary Education in A Changing World = Second. Educ. Chang. Wo. Secondary Metabolism in Model Systems = Recent Adv Phytochem Secondary Metabolism in Model Systems = Recent. Adv. Phytochem. Secondary-metabolite Biosynthesis and Metabolism = Envir Sci R Secondary-metabolite Biosynthesis and Metabolism = Envir. Sci. R. Secondary Metabolites : Their Function and Evolution = Ciba F Symp Secondary Metabolites : Their Function and Evolution = Ciba. F. Symp. Second Backaskog Workshop On Extremely Large Telescopes, Pts 1 and 2 = Proc Spie Second Backaskog Workshop On Extremely Large Telescopes, Pts 1 and 2 = Proc. Spie. Second Backaskog Workshop On Extremely Large Telescopes, Pts 1 and 2 = P Soc Photo-opt Ins Second Backaskog Workshop On Extremely Large Telescopes, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Second Beamed Space-power Workshop = Nasa Conf P Second Beamed Space-power Workshop = Nasa. Conf. P. Second Century-a Journal of Early Christian Studies = Second Cent Second Century-a Journal of Early Christian Studies = Second Cent. Second Compton Symposium = Aip Conf Proc Second Compton Symposium = Aip. Conf. Proc. Second Conference On Microelectronics, Microsystems and Nanotechnology = J Phys Conf Ser Second Conference On Microelectronics, Microsystems and Nanotechnology = J. Phys. Conf. Ser. Second Conference On Photonics for Transportation = Proc Spie Second Conference On Photonics for Transportation = Proc. Spie. Second Conference On Photonics for Transportation = P Soc Photo-opt Ins Second Conference On Photonics for Transportation = P. Soc. Photo-opt. Ins. Second Developing Areas Symposium Proceedings: People, Rangelands and Development = Grassl Soc So Afr Sp Second Developing Areas Symposium Proceedings: People, Rangelands and Development = Grassl. Soc. So. Afr. Sp. Second European Conference On Smart Structures and Materials = P Soc Photo-opt Ins Second European Conference On Smart Structures and Materials = P. Soc. Photo-opt. Ins. Second European In-orbit Operations Technology Symposium = Esa Sp Publ Second European In-orbit Operations Technology Symposium = Esa. Sp. Publ. Second European Workshop On Optical Fibre Sensors: Proceedings = P Soc Photo-opt Ins Second European Workshop On Optical Fibre Sensors: Proceedings = P. Soc. Photo-opt. Ins. Second-generation High-temperature Superconducting Coils and Their Applications for Energy Storage = Springer Theses-reco Second-generation High-temperature Superconducting Coils and Their Applications for Energy Storage = Springer. Theses-reco. Second German Symposium On Laser Angioplasty = P Soc Photo-opt Ins Second German Symposium On Laser Angioplasty = P. Soc. Photo-opt. Ins. Second Gr-i International Conference On New Laser Technologies and Applications = P Soc Photo-opt Ins Second Gr-i International Conference On New Laser Technologies and Applications = P. Soc. Photo-opt. Ins. Second Hinode Science Meeting: Beyond Discovery-toward Understanding = Astr Soc P Second Hinode Science Meeting: Beyond Discovery-toward Understanding = Astr. Soc. P. Second Iberoamerican Meeting On Optics = P Soc Photo-opt Ins Second Iberoamerican Meeting On Optics = P. Soc. Photo-opt. Ins. Second I.f.a.c./i.s.h.s. Workshop On Mathematical and Control Applications in Agriculture and Horticulture = Acta Hortic Second I.f.a.c./i.s.h.s. Workshop On Mathematical and Control Applications in Agriculture and Horticulture = Acta. Hortic. Second International Conference On 3g Mobile Communication Technologies = Iee Conf Publ Second International Conference On 3g Mobile Communication Technologies = Iee. Conf. Publ. Second International Conference On Advanced A-d and D-a Conversion Techniques and Their Applications = Iee Conf Publ Second International Conference On Advanced A-d and D-a Conversion Techniques and Their Applications = Iee. Conf. Publ. Second International Conference On Advanced Optoelectronics and Lasers = Proc Spie Second International Conference On Advanced Optoelectronics and Lasers = Proc. Spie. Second International Conference On Advanced Optoelectronics and Lasers = P Soc Photo-opt Ins Second International Conference On Advanced Optoelectronics and Lasers = P. Soc. Photo-opt. Ins. Second International Conference On Artificial Neural Networks = Iee Conf Publ Second International Conference On Artificial Neural Networks = Iee. Conf. Publ. Second International Conference On Broadband Services, Systems and Networks = Iee Conf Publ Second International Conference On Broadband Services, Systems and Networks = Iee. Conf. Publ. Second International Conference On Computation in Electromagnetics = Iee Conf Publ Second International Conference On Computation in Electromagnetics = Iee. Conf. Publ. Second International Conference On Computer and Electrical Engineering, Vol 1, Proceedings = Int C Comp Elec Eng Second International Conference On Computer and Electrical Engineering, Vol 1, Proceedings = Int. C. Comp. Elec. Eng. Second International Conference On Computer and Electrical Engineering, Vol 2, Proceedings = Int C Comp Elec Eng Second International Conference On Computer and Electrical Engineering, Vol 2, Proceedings = Int. C. Comp. Elec. Eng. Second International Conference On Digital Image Processing = Proc Spie Second International Conference On Digital Image Processing = Proc. Spie. Second International Conference On Digital Image Processing = P Soc Photo-opt Ins Second International Conference On Digital Image Processing = P. Soc. Photo-opt. Ins. Second International Conference On Experimental Mechanics = Proc Spie Second International Conference On Experimental Mechanics = Proc. Spie. Second International Conference On Experimental Mechanics = P Soc Photo-opt Ins Second International Conference On Experimental Mechanics = P. Soc. Photo-opt. Ins. Second International Conference On Factory 2001 - Integrating Information and Material Flow = Iee Conf Publ Second International Conference On Factory 2001 - Integrating Information and Material Flow = Iee. Conf. Publ. Second International Conference On Frequency Control and Synthesis = Iee Conf Publ Second International Conference On Frequency Control and Synthesis = Iee. Conf. Publ. Second International Conference On Gearbox Noise, Vibration, and Diagnostics = Imeche Conf Trans Second International Conference On Gearbox Noise, Vibration, and Diagnostics = Imeche. Conf. Trans. Second International Conference On Intelligent Systems Engineering = Iee Conf Publ Second International Conference On Intelligent Systems Engineering = Iee. Conf. Publ. Second International Conference On Inverse Problems: Recent Theoretical Developments and Numerical Approaches, 2004 = J Phys Conf Ser Second International Conference On Inverse Problems: Recent Theoretical Developments and Numerical Approaches, 2004 = J. Phys. Conf. Ser. Second International Conference On Lasers for Measurement and Information Transfer = Proc Spie Second International Conference On Lasers for Measurement and Information Transfer = Proc. Spie. Second International Conference On Lasers for Measurement and Information Transfer = P Soc Photo-opt Ins Second International Conference On Lasers for Measurement and Information Transfer = P. Soc. Photo-opt. Ins. Second International Conference On Mathematical and Numerical Aspects of Wave Propagation = Siam Proc S Second International Conference On Mathematical and Numerical Aspects of Wave Propagation = Siam. Proc. S. Second International Conference On Optical and Laser Diagnostics = J Phys Conf Ser Second International Conference On Optical and Laser Diagnostics = J. Phys. Conf. Ser. Second International Conference On Optical Information Processing = P Soc Photo-opt Ins Second International Conference On Optical Information Processing = P. Soc. Photo-opt. Ins. Second International Conference On Optoelectronic Science and Engineering '94 = P Soc Photo-opt Ins Second International Conference On Optoelectronic Science and Engineering '94 = P. Soc. Photo-opt. Ins. Second International Conference On Photo-induced Phase Transitions: Cooperative, Nonlinear and Functional Properties = J Phys Conf Ser Second International Conference On Photo-induced Phase Transitions: Cooperative, Nonlinear and Functional Properties = J. Phys. Conf. Ser. Second International Conference On Private Switching Systems and Networks = Iee Conf Publ Second International Conference On Private Switching Systems and Networks = Iee. Conf. Publ. Second International Conference On Road Traffic Monitoring = Iee Conf Publ Second International Conference On Road Traffic Monitoring = Iee. Conf. Publ. Second International Conference On Rural Telecommunications = Iee Conf Publ Second International Conference On Rural Telecommunications = Iee. Conf. Publ. Second International Conference On Singular Optics (optical Vortices): Fundamentals and Applications = P Soc Photo-opt Ins Second International Conference On Singular Optics (optical Vortices): Fundamentals and Applications = P. Soc. Photo-opt. Ins. Second International Conference On Space Information Technology, Pts 1-3 = Proc Spie Second International Conference On Space Information Technology, Pts 1-3 = Proc. Spie. Second International Conference On Space Information Technology, Pts 1-3 = P Soc Photo-opt Ins Second International Conference On Space Information Technology, Pts 1-3 = P. Soc. Photo-opt. Ins. Second International Conference On The Detection of Abandoned Land Mines = Iee Conf Publ Second International Conference On The Detection of Abandoned Land Mines = Iee. Conf. Publ. Second International Conference On The Quantitative Evaluation of Systems, Proceedings = Int Conf Quant Eval Second International Conference On The Quantitative Evaluation of Systems, Proceedings = Int. Conf. Quant. Eval. Second International Conference On Thin Film Physics and Applications = P Soc Photo-opt Ins Second International Conference On Thin Film Physics and Applications = P. Soc. Photo-opt. Ins. Second International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Second International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Second International Pineapple Symposium - Proceedings = Acta Hortic Second International Pineapple Symposium - Proceedings = Acta. Hortic. Second International Protea Research Symposium = Acta Hortic Second International Protea Research Symposium = Acta. Hortic. Second International Rilem Symposium On Adhesion Between Polymers and Concrete = Rilem Proc Second International Rilem Symposium On Adhesion Between Polymers and Concrete = Rilem Proc. Second International Rubiaceae Conference, Proceedings = Opera Bot Belg Second International Rubiaceae Conference, Proceedings = Opera. Bot. Belg. Second International Specialists Seminar On The Design and Application of Parallel Digital Processors = Iee Conf Publ Second International Specialists Seminar On The Design and Application of Parallel Digital Processors = Iee. Conf. Publ. Second International Symposium On Advanced Laser Technologies = P Soc Photo-opt Ins Second International Symposium On Advanced Laser Technologies = P. Soc. Photo-opt. Ins. Second International Symposium On Atomic Technology = J Phys Conf Ser Second International Symposium On Atomic Technology = J. Phys. Conf. Ser. Second International Symposium On Chestnut = Acta Hortic Second International Symposium On Chestnut = Acta. Hortic. Second International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta Hortic Second International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta. Hortic. Second International Symposium On Irrigation of Horticultural Crops, Vols 1 and 2 = Acta Hortic Second International Symposium On Irrigation of Horticultural Crops, Vols 1 and 2 = Acta. Hortic. Second International Symposium On Laser Precision Microfabrication = Proc Spie Second International Symposium On Laser Precision Microfabrication = Proc. Spie. Second International Symposium On Laser Precision Microfabrication = P Soc Photo-opt Ins Second International Symposium On Laser Precision Microfabrication = P. Soc. Photo-opt. Ins. Second International Symposium On Measurement Technology and Intelligent Instruments, Pts 1 and 2 = P Soc Photo-opt Ins Second International Symposium On Measurement Technology and Intelligent Instruments, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Second International Symposium On Models for Plant Growth, Environmental Control and Farm Management in Protected Cultivation = Acta Hortic Second International Symposium On Models for Plant Growth, Environmental Control and Farm Management in Protected Cultivation = Acta. Hortic. Second International Symposium On Ornamental Palms and Other Monocots From The Tropics = Acta Hortic Second International Symposium On Ornamental Palms and Other Monocots From The Tropics = Acta. Hortic. Second International Symposium On Pistachios and Almonds = Acta Hortic Second International Symposium On Pistachios and Almonds = Acta. Hortic. Second International Symposium On Sensors in Horticulture = Acta Hortic Second International Symposium On Sensors in Horticulture = Acta. Hortic. Second International Workshop and Summer School On Plasma Physics = J Phys Conf Ser Second International Workshop and Summer School On Plasma Physics = J. Phys. Conf. Ser. Second International Workshop On Hyaluronan in Drug Delivery = Roy S Med S Second International Workshop On Hyaluronan in Drug Delivery = Roy. S. Med. S. Second International Workshop On Non-equilibrium Processes in Plasmas and Environmental Science = J Phys Conf Ser Second International Workshop On Non-equilibrium Processes in Plasmas and Environmental Science = J. Phys. Conf. Ser. Second International Workshop On Pollination = Acta Hortic Second International Workshop On Pollination = Acta. Hortic. Second International Workshop On Retrieval of Bio- & Geo-physical Parameters From Sar Data for Land Applications = Esa Spec Publ Second International Workshop On Retrieval of Bio- & Geo-physical Parameters From Sar Data for Land Applications = Esa. Spec. Publ. Second International Workshop On Retrieval of Bio- & Geo-physical Parameters From Sar Data for Land Applications = Esa Sp Publ Second International Workshop On Retrieval of Bio- & Geo-physical Parameters From Sar Data for Land Applications = Esa. Sp. Publ. Second Internation Conference On Image and Graphics, Pts 1 and 2 = Proc Spie Second Internation Conference On Image and Graphics, Pts 1 and 2 = Proc. Spie. Second Internation Conference On Image and Graphics, Pts 1 and 2 = P Soc Photo-opt Ins Second Internation Conference On Image and Graphics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Second Joint Embs-bmes Conference 2002, Vols 1-3, Conference Proceedings = P Ann Int Ieee Embs Second Joint Embs-bmes Conference 2002, Vols 1-3, Conference Proceedings = P. Ann. Int. Ieee. Embs. Second Language Acquisition and The Critical Period Hypothesis = Sec Lang Acq Res Second Language Acquisition and The Critical Period Hypothesis = Sec. Lang. Acq. Res. Second Language Acquisition / Foreign Language Learning = Multiling Second Language Acquisition / Foreign Language Learning = Multiling. Second Language Acquisition Research Series = Second Lang Acquis R Second Language Acquisition Research Series = Second Lang. Acquis. R. Second Language Acquisition Research: Theoretical and Methodological Issues = Sec Lang Acq Res Second Language Acquisition Research: Theoretical and Methodological Issues = Sec. Lang. Acq. Res. Second Language Research = Second Lang Res Second Language Research = Second Lang. Res. Second Languages: Teaching, Learning and Assessment = Lang Linguist Ser Second Languages: Teaching, Learning and Assessment = Lang. Linguist. Ser. Second Language Teacher Education = Esl Appl Ling Prof Second Language Teacher Education = Esl. Appl. Ling. Prof. Second Messengers and Phosphoproteins = Sec Mess Phosphoprot Second Messengers and Phosphoproteins = Sec. Mess. Phosphoprot. Second messengers and phosphoproteins = Second Messengers Phosphoproteins Second Messengers and Phosphoproteins = Second Messengers Phosphoproteins Second National Conference On Preventing and Treating Alcohol and Other Drug Abuse, Hiv Infection, and Aids in Black Communities: From Advocacy to Action = Csap Prevent Monogr Second National Conference On Preventing and Treating Alcohol and Other Drug Abuse, Hiv Infection, and Aids in Black Communities: From Advocacy to Action = Csap. Prevent. Monogr. Second Nrel Conference On Thermophotovoltaic Generation of Electricity = Aip Conf Proc Second Nrel Conference On Thermophotovoltaic Generation of Electricity = Aip. Conf. Proc. Second Oecd Conference On Women Entrepreneurs in Smes = Oecd Proc Second Oecd Conference On Women Entrepreneurs in Smes = Oecd Proc. Second opinion (Chicago, Ill. : 1999) = Second Opin (Chic) Second opinion (Park Ridge, Ill.) = Second Opin Second Opinion = Second Opin. Second Opinions of Health Care Issues = Second Opin. Health Care Issues Second opinions on health care issues = Second Opin Health Care Issues Second-order Organic Nonlinear Optics = P Soc Photo-opt Ins Second-order Organic Nonlinear Optics = P. Soc. Photo-opt. Ins. Second Pacific Northwest Fiber Optic Sensor Workshop = P Soc Photo-opt Ins Second Pacific Northwest Fiber Optic Sensor Workshop = P. Soc. Photo-opt. Ins. Second Stromlo Symposium: The Nature of Elliptical Galaxies = Astr Soc P Second Stromlo Symposium: The Nature of Elliptical Galaxies = Astr. Soc. P. Second Term of George W. Bush: Prospects and Perils = Evol Am Presid Second Term of George W. Bush: Prospects and Perils = Evol. Am. Presid. Second Us-japanese Dialogue On Lipid Disorders and Coronary Artery Disease = Roy Soc Med Int Cong Second Us-japanese Dialogue On Lipid Disorders and Coronary Artery Disease = Roy. Soc. Med. Int. Cong. Second Wave: Southern Industrialization From The 1940s to The 1970s = Econ Soc Mod S Second Wave: Southern Industrialization From The 1940s to The 1970s = Econ. Soc. Mod. S. Second World Conference On Sampling and Blending 2005 = Australas I Min Met Second World Conference On Sampling and Blending 2005 = Australas. I. Min. Met. Second World Congress On Medicinal and Aromatic Plants for Human Welfare Wocmap-2: Pharmacognosy, Pharmacology, Phytomedicines, Toxicology = Acta Hortic Second World Congress On Medicinal and Aromatic Plants for Human Welfare Wocmap-2: Pharmacognosy, Pharmacology, Phytomedicines, Toxicology = Acta. Hortic. Secrecy and Concealment = St Hist Rel Secrecy and Concealment = St. Hist. Rel. Secrecy and The Media: The Official History of The United Kingdom's D-notice System = Whitehall Hist Secrecy and The Media: The Official History of The United Kingdom's D-notice System = Whitehall. Hist. Secret Israeli-palestinian Negotiations in Oslo: Their Success and Why The Process Ultimately Failed = Durh Mod Mid E Islam Secret Israeli-palestinian Negotiations in Oslo: Their Success and Why The Process Ultimately Failed = Durh. Mod. Mid. E. Islam. Sectarianism in Qumran: A Cross-cultural Perspective = Relig Soc Sectarianism in Qumran: A Cross-cultural Perspective = Relig. Soc. Section Criteria and Ecological Consequences of Importing Natural Enemies = Thom Say P Section Criteria and Ecological Consequences of Importing Natural Enemies = Thom. Say. P. Secular and Islamic Politics in Turkey: The Making of The Justice and Development Party = Routl Stud Mid E Pol Secular and Islamic Politics in Turkey: The Making of The Justice and Development Party = Routl. Stud. Mid. E. Pol. Secularism in The Postcolonial Indian Novel: National and Cosmopolitan Narratives in English = Rout Res Postcol Lit Secularism in The Postcolonial Indian Novel: National and Cosmopolitan Narratives in English = Rout. Res. Postcol. Lit. Secure Data Management = Lect Notes Comput Sc Secure Data Management = Lect. Notes. Comput. Sc. Secure Data Management, Proceedings = Lect Notes Comput Sc Secure Data Management, Proceedings = Lect. Notes. Comput. Sc. Secured Transactions Reform and Access to Credit = Elgar Financ Law Secured Transactions Reform and Access to Credit = Elgar. Financ. Law. Secure Information Networks = Int Fed Info Proc Secure Information Networks = Int. Fed. Info. Proc. Secure Integrated Circuits and Systems = Integr Circuit Syst Secure Integrated Circuits and Systems = Integr. Circuit. Syst. Secure Key Establishment = Adv Inform Secur Secure Key Establishment = Adv. Inform. Secur. Secure Localization and Time Synchronization for Wireless Sensor and Ad Hoc Networks = Adv Inf Sec Secure Localization and Time Synchronization for Wireless Sensor and Ad Hoc Networks = Adv. Inf. Sec. Secure Mobile Ad-hoc Networks and Sensors = Lect Notes Comput Sc Secure Mobile Ad-hoc Networks and Sensors = Lect. Notes. Comput. Sc. Secure Multi-party Non-repudiation Protocols and Applications = Adv Inform Secur Secure Multi-party Non-repudiation Protocols and Applications = Adv. Inform. Secur. Secure Transaction Protocol Analysis: Models and Applications = Lect Notes Comput Sc Secure Transaction Protocol Analysis: Models and Applications = Lect. Notes. Comput. Sc. Securing Electricity Supply in The Cyber Age = Top Saf Reliab Qual Securing Electricity Supply in The Cyber Age = Top. Saf. Reliab. Qual. Securing Information and Communications Systems: Principles, Technologies, and Applications = Artech Hse Inf Secur Securing Information and Communications Systems: Principles, Technologies, and Applications = Artech. Hse. Inf. Secur. Securing The Safe Performance of Graphite Reactor Cores = Roy Soc Ch Securing The Safe Performance of Graphite Reactor Cores = Roy. Soc. Ch. Securities Regulation Law Journal = Secur Regul Law J Securities Regulation Law Journal = Secur. Regul. Law J. Securitization of Humanitarian Migration: Digging Moats and Sinking Boats = Routl Adv Int Relat Securitization of Humanitarian Migration: Digging Moats and Sinking Boats = Routl. Adv. Int. Relat. Securitizations of Citizenship = Routl Adv Int Relat Securitizations of Citizenship = Routl. Adv. Int. Relat. Securitizing Immigration: The Politics of Risk in The Eu = Palgr Stud Int Relat Securitizing Immigration: The Politics of Risk in The Eu = Palgr. Stud. Int. Relat. Security 2006 = Transport Res Rec Security 2006 = Transport. Res. Rec. Security and Communication Networks = Secur Commun Netw Security and Communication Networks = Secur. Commun. Netw. Security and Conflict Management = Secur Confl Manag Security and Conflict Management = Secur. Confl. Manag. Security and Control of Information Technology in Society = Ifip Trans A Security and Control of Information Technology in Society = Ifip. Trans. A. Security and Cryptography for Networks = Lect Notes Comput Sc Security and Cryptography for Networks = Lect. Notes. Comput. Sc. Security and Cryptography for Networks, Proceedings = Lect Notes Comput Sc Security and Cryptography for Networks, Proceedings = Lect. Notes. Comput. Sc. Security and Dependability for Ambient Intelligence = Adv Inform Secur Security and Dependability for Ambient Intelligence = Adv. Inform. Secur. Security and Environmental Sustainability of Multimodal Transport = Nato Sci Peace Sec C Security and Environmental Sustainability of Multimodal Transport = Nato. Sci. Peace. Sec. C. Security and Environmental Sustainability of Multimodal Transport = Nato Sci Peace Secur Security and Environmental Sustainability of Multimodal Transport = Nato. Sci. Peace. Secur. Security and Governance = Secur Gov Security and Governance = Secur. Gov. Security and Governance = Secur Govern Security and Governance = Secur. Govern. Security and International Politics in The South China Sea: Towards A Cooperative Management Regime = Routl Secur Asia-pac Security and International Politics in The South China Sea: Towards A Cooperative Management Regime = Routl. Secur. Asia-pac. Security and Liberty - Restriction By Stealth = Crime Prev Secur Man Security and Liberty - Restriction By Stealth = Crime. Prev. Secur. Man. Security and Privacy in Ad-hoc and Sensor Networks = Lect Notes Comput Sc Security and Privacy in Ad-hoc and Sensor Networks = Lect. Notes. Comput. Sc. Security and Privacy in Advanced Networking Technologies = Nato Sc S Ss Iii C S Security and Privacy in Advanced Networking Technologies = Nato. Sc. S. Ss. Iii. C. S. Security and Privacy in Dynamic Environments = Int Fed Info Proc Security and Privacy in Dynamic Environments = Int. Fed. Info. Proc. Security and Privacy in The Age of Ubiquitous Computing = Int Fed Info Proc Security and Privacy in The Age of Ubiquitous Computing = Int. Fed. Info. Proc. Security and Privacy in The Age of Uncertainty = Int Fed Info Proc Security and Privacy in The Age of Uncertainty = Int. Fed. Info. Proc. Security and Protection in Information Processing Systems = Int Fed Info Proc Security and Protection in Information Processing Systems = Int. Fed. Info. Proc. Security and Reliability of Damaged Structures and Defective Materials = Nato Sci Peace Secur Security and Reliability of Damaged Structures and Defective Materials = Nato. Sci. Peace. Secur. Security and The War On Terror = Contemp Secur Stud Security and The War On Terror = Contemp. Secur. Stud. Security and Watermarking of Multimedia Contents Iii = Proc Spie Security and Watermarking of Multimedia Contents Iii = Proc. Spie. Security and Watermarking of Multimedia Contents Iii = P Soc Photo-opt Ins Security and Watermarking of Multimedia Contents Iii = P. Soc. Photo-opt. Ins. Security and Watermarking of Multimedia Contents Ii = Proc Spie Security and Watermarking of Multimedia Contents Ii = Proc. Spie. Security and Watermarking of Multimedia Contents Ii = P Soc Photo-opt Ins Security and Watermarking of Multimedia Contents Ii = P. Soc. Photo-opt. Ins. Security and Watermarking of Multimedia Contents Iv = Proc Spie Security and Watermarking of Multimedia Contents Iv = Proc. Spie. Security and Watermarking of Multimedia Contents Iv = P Soc Photo-opt Ins Security and Watermarking of Multimedia Contents Iv = P. Soc. Photo-opt. Ins. Security and Watermarking of Multimedia Contents = Proc Spie Security and Watermarking of Multimedia Contents = Proc. Spie. Security and Watermarking of Multimedia Contents = P Soc Photo-opt Ins Security and Watermarking of Multimedia Contents = P. Soc. Photo-opt. Ins. Security and Watermarking of Multimedia Contents V = Proc Spie Security and Watermarking of Multimedia Contents V = Proc. Spie. Security and Watermarking of Multimedia Contents V = P Soc Photo-opt Ins Security and Watermarking of Multimedia Contents V = P. Soc. Photo-opt. Ins. Security As Practice: Discourse Analysis and The Bosnian War = New Int Relat Security As Practice: Discourse Analysis and The Bosnian War = New. Int. Relat. Security Dialogue = Secur Dialogue Security Dialogue = Secur. Dialogue Security Education and Critical Infrastructures = Int Fed Info Proc Security Education and Critical Infrastructures = Int. Fed. Info. Proc. Security Engineering With Patterns: Origins, Theroetical Model, and New Applications = Lect Notes Comput Sc Security Engineering With Patterns: Origins, Theroetical Model, and New Applications = Lect. Notes. Comput. Sc. Security-enriched Urban Computing and Smart Grid = Comm Com Inf Sc Security-enriched Urban Computing and Smart Grid = Comm. Com. Inf. Sc. Security, Forensics, Steganography, and Watermarking of Multimedia Contents X = Proc Spie Security, Forensics, Steganography, and Watermarking of Multimedia Contents X = Proc. Spie. Security, Forensics, Steganography, and Watermarking of Multimedia Contents X = P Soc Photo-opt Ins Security, Forensics, Steganography, and Watermarking of Multimedia Contents X = P. Soc. Photo-opt. Ins. Security for Telecommunications Networks = Adv Inform Secur Security for Telecommunications Networks = Adv. Inform. Secur. Security for Wireless Sensor Networks = Adv Inform Secur Security for Wireless Sensor Networks = Adv. Inform. Secur. Security in Ad-hoc and Sensor Networks = Lect Notes Comput Sc Security in Ad-hoc and Sensor Networks = Lect. Notes. Comput. Sc. Security in Ad Hoc and Sensor Networks = Ser Comput Netw Secu Security in Ad Hoc and Sensor Networks = Ser. Comput. Netw. Secu. Security in Communication Networks = Lect Notes Comput Sc Security in Communication Networks = Lect. Notes. Comput. Sc. Security in Embedded Devices = Embed Syst Security in Embedded Devices = Embed. Syst. Security Informatics = Ann Inform Syst Security Informatics = Ann. Inform. Syst. Security in Pervasive Computing = Lect Notes Comput Sc Security in Pervasive Computing = Lect. Notes. Comput. Sc. Security in Pervasive Computing, Proceedings = Lect Notes Comput Sc Security in Pervasive Computing, Proceedings = Lect. Notes. Comput. Sc. Security in Rfid and Sensor Networks = Wirel Netw Mob Commu Security in Rfid and Sensor Networks = Wirel. Netw. Mob. Commu. Security in The European North - From 'hard' to 'soft' = U Lap A C R Security in The European North - From 'hard' to 'soft' = U. Lap. A. C. R. Security in The Information Society: Visions and Perspectives = Int Fed Info Proc Security in The Information Society: Visions and Perspectives = Int. Fed. Info. Proc. Security in Wireless Mesh Networks = Wirel Netw Mob Commu Security in Wireless Mesh Networks = Wirel. Netw. Mob. Commu. Security Journal = Secur J Security Journal = Secur. J. Security = Key Ideas Criminol Security = Key. Ideas. Criminol. Security Management, Integrity, and Internal Control in Information Systems = Int Fed Info Proc Security Management, Integrity, and Internal Control in Information Systems = Int. Fed. Info. Proc. Security of Natural Gas Supply Through Transit Countries = Nato Sci Ser Ii-math Security of Natural Gas Supply Through Transit Countries = Nato. Sci. Ser. Ii-math. Security of Natural Gas Supply Through Transit Countries = Nato Sci Ser Ii Math Security of Natural Gas Supply Through Transit Countries = Nato. Sci. Ser. Ii. Math. Security of Public Water Supplies = Nato Asi 2 Security of Public Water Supplies = Nato. Asi. 2. Security of Radioactive Sources = P S Iaea Security of Radioactive Sources = P. S. Iaea. Security of Water Supply Systems: From Source to Tap = Nato Sci Peace Secur Security of Water Supply Systems: From Source to Tap = Nato. Sci. Peace. Secur. Security Operations in Aceh: Goals, Consequences, and Lessons = Pol Stud Security Operations in Aceh: Goals, Consequences, and Lessons = Pol. Stud. Security Policy Symposium On The Balkan Conflict = Wehrd U Gesell Security Policy Symposium On The Balkan Conflict = Wehrd. U. Gesell. Security Protocols = Lect Notes Comput Sc Security Protocols = Lect. Notes. Comput. Sc. Security, Steganography, and Watermarking of Multimedia Contents Ix = Proc Spie Security, Steganography, and Watermarking of Multimedia Contents Ix = Proc. Spie. Security, Steganography, and Watermarking of Multimedia Contents Ix = P Soc Photo-opt Ins Security, Steganography, and Watermarking of Multimedia Contents Ix = P. Soc. Photo-opt. Ins. Security, Steganography, and Watermarking of Multimedia Contents Viii = Proc Spie Security, Steganography, and Watermarking of Multimedia Contents Viii = Proc. Spie. Security, Steganography, and Watermarking of Multimedia Contents Viii = P Soc Photo-opt Ins Security, Steganography, and Watermarking of Multimedia Contents Viii = P. Soc. Photo-opt. Ins. Security, Steganography, and Watermarking of Multimedia Contents Vii = Proc Spie Security, Steganography, and Watermarking of Multimedia Contents Vii = Proc. Spie. Security, Steganography, and Watermarking of Multimedia Contents Vii = P Soc Photo-opt Ins Security, Steganography, and Watermarking of Multimedia Contents Vii = P. Soc. Photo-opt. Ins. Security, Steganography, and Watermarking of Multimedia Contents Vi = Proc Spie Security, Steganography, and Watermarking of Multimedia Contents Vi = Proc. Spie. Security, Steganography, and Watermarking of Multimedia Contents Vi = P Soc Photo-opt Ins Security, Steganography, and Watermarking of Multimedia Contents Vi = P. Soc. Photo-opt. Ins. Security Strategies and American World Order: Lost Power = Contemp Secur Stud Security Strategies and American World Order: Lost Power = Contemp. Secur. Stud. Security Studies = Secur Stud Security Studies = Secur. Stud. Security Systems and Nonlethal Technologies for Law Enforcement = P Soc Photo-opt Ins Security Systems and Nonlethal Technologies for Law Enforcement = P. Soc. Photo-opt. Ins. Security Technology, Disaster Recovery and Business Continuity = Comm Com Inf Sc Security Technology, Disaster Recovery and Business Continuity = Comm. Com. Inf. Sc. Security Technology, Proceedings = Comm Com Inf Sc Security Technology, Proceedings = Comm. Com. Inf. Sc. Security = Transport Res Rec Security = Transport. Res. Rec. Sedentary Life and Nutrition = Aging Sedentary Life and Nutrition = Aging. Sederi-yearbook of The Spanish and Portuguese Society for English Renaissance Studies = Sederi Sederi-yearbook of The Spanish and Portuguese Society for English Renaissance Studies = Sederi. Sediment and Stream Water Quality in A Changing Environment : Trends and Explanation = Iahs-aish P Sediment and Stream Water Quality in A Changing Environment : Trends and Explanation = Iahs-aish. P. Sedimentary Basin Tectonics From The Black Sea and Caucasus to The Arabian Platform = Geol Soc Spec Publ Sedimentary Basin Tectonics From The Black Sea and Caucasus to The Arabian Platform = Geol. Soc. Spec. Publ. Sedimentary Dynamics in Coastal Zone = Oceanis S D Sedimentary Dynamics in Coastal Zone = Oceanis. S. D. Sedimentary Geology = Sediment Geol Sedimentary Geology = Sediment. Geol. Sedimentary Processes, Environments and Basins: A Tribute to Peter Friend = Spec Publ Int Ass Se Sedimentary Processes, Environments and Basins: A Tribute to Peter Friend = Spec. Publ. Int. Ass. Se. Sedimentary Provenance and Petrogenesis: Perspectives From Petrography and Geochemistry = Geol S Am S Sedimentary Provenance and Petrogenesis: Perspectives From Petrography and Geochemistry = Geol. S. Am. S. Sedimentary Record of Meteorite Impacts = Geol S Am S Sedimentary Record of Meteorite Impacts = Geol. S. Am. S. Sedimentation History in The Arctic Ocean and Subarctic Seas for The Last 130 Kyr = Lect Notes Earth Sci Sedimentation History in The Arctic Ocean and Subarctic Seas for The Last 130 Kyr = Lect. Notes. Earth. Sci. Sedimentation in Reservoirs and Related Problems in Water Mains and Canals, International Symposium = Mit Ver Was Sedimentation in Reservoirs and Related Problems in Water Mains and Canals, International Symposium = Mit. Ver. Was. Sediment Budgets 1 = Iahs-aish P Sediment Budgets 1 = Iahs-aish. P. Sediment Budgets 2 = Iahs-aish P Sediment Budgets 2 = Iahs-aish. P. Sediment Dynamics and The Hydromorphology of Fluvial Systems = Iahs-aish P Sediment Dynamics and The Hydromorphology of Fluvial Systems = Iahs-aish. P. Sediment Flux to Basins: Causes, Control and Consequences = Geol Soc Spec Publ Sediment Flux to Basins: Causes, Control and Consequences = Geol. Soc. Spec. Publ. Sediment-hosted Gas Hydrates: New Insights On Natural and Synthetic Systems = Geol Soc Spec Publ Sediment-hosted Gas Hydrates: New Insights On Natural and Synthetic Systems = Geol. Soc. Spec. Publ. Sedimentology = Sedimentology Sediment-organism Interactions: A Multifacted Ichnology = Sepm Spec P Sediment-organism Interactions: A Multifacted Ichnology = Sepm. Spec. P. Sediment-organism Interactions: A Multifacted Ichnology = Soc Sediment Geol Sp Sediment-organism Interactions: A Multifacted Ichnology = Soc. Sediment. Geol. Sp. Sediment Problems: Strategies for Monitoring, Prediction, and Control = Iahs-aish P Sediment Problems: Strategies for Monitoring, Prediction, and Control = Iahs-aish. P. Sediment Transfer Through The Fluvial System = Iahs-aish P Sediment Transfer Through The Fluvial System = Iahs-aish. P. Seduced, Abandoned, and Reborn = Early Am Stud Ser Seduced, Abandoned, and Reborn = Early. Am. Stud. Ser. Seductiveness of Jewish Myth = Suny S Jud Her Mys R Seductiveness of Jewish Myth = Suny. S. Jud. Her. Mys. R. Seed and Soil Dynamics in Shrubland Ecosystems: Proceedings = Us For Serv Rmrs-p Seed and Soil Dynamics in Shrubland Ecosystems: Proceedings = Us. For. Serv. Rmrs-p. Seed Dormancy: Methods and Protocols = Methods Mol Biol Seed Dormancy: Methods and Protocols = Methods Mol. Biol. Seed Science and Technology = Seed Sci Technol Seed Science and Technology = Seed Sci. Technol. Seed Science Research = Seed Sci Res Seed Science Research = Seed Sci. Res. Seeds (New York, N.Y.) = Seeds Seed Storage Compounds: Biosynthesis, Interactions and Manipulations = Pr Phyt Soc Seed Storage Compounds: Biosynthesis, Interactions and Manipulations = Pr. Phyt. Soc. Seed Treatment: Challenges & Opportunities, Proceedings = Bcpc Symp Ser Seed Treatment: Challenges & Opportunities, Proceedings = Bcpc. Symp. Ser. Seed Treatment: Progress and Prospects = Br Crop Pr Seed Treatment: Progress and Prospects = Br. Crop. Pr. Seeing and Perceiving = Seeing Perceiving Seeing Beyond Blindness = Crit Concerns Blind Seeing Beyond Blindness = Crit. Concerns. Blind. Seeing Is Believing: Approaches to Visual Research = Stud Qual Methodol Seeing Is Believing: Approaches to Visual Research = Stud. Qual. Methodol. Seeing, Thinking and Knowing: Meaning and Self-organisation in Visual Cognition and Thought = Theory Decis Lib A Seeing, Thinking and Knowing: Meaning and Self-organisation in Visual Cognition and Thought = Theory. Decis. Lib. A. Seeing Through The Dust: The Detection of Hi and The Exploration of The Ism in Galaxies, Proceedings = Astr Soc P Seeing Through The Dust: The Detection of Hi and The Exploration of The Ism in Galaxies, Proceedings = Astr. Soc. P. Seekers of Truth: The Scottish Founders of Modern Public Accountancy, Vol 9 = Stud Dev Account Tho Seekers of Truth: The Scottish Founders of Modern Public Accountancy, Vol 9 = Stud. Dev. Account. Tho. Seeking Agricultural Produce Free of Pesticide Residues = Aciar Proc Seeking Agricultural Produce Free of Pesticide Residues = Aciar. Proc. Seeking A Premier Economy: The Economic Effects of British Economic Reforms 1980-2000 = Nat Bur Econ Res Com Seeking A Premier Economy: The Economic Effects of British Economic Reforms 1980-2000 = Nat. Bur. Econ. Res. Com. Seeking A Richer Harvest: The Archaeology of Subsistence Intensification, Innovation, and Change = Stud Hum Ecol Adapt Seeking A Richer Harvest: The Archaeology of Subsistence Intensification, Innovation, and Change = Stud. Hum. Ecol. Adapt. Seeking Chances: From Biased Rationality to Distributed Cognition = Cogn Syst Monogr Seeking Chances: From Biased Rationality to Distributed Cognition = Cogn. Syst. Monogr. Seeking Higher Ground: The Hurricane Katrina Crisis, Race, and Public Policy Reader = Crit Black Stud Ser Seeking Higher Ground: The Hurricane Katrina Crisis, Race, and Public Policy Reader = Crit. Black. Stud. Ser. Seeking Integrity in Teacher Education:transforming Student Teachers, Transforming My Self = Self Study Teach Tea Seeking Integrity in Teacher Education:transforming Student Teachers, Transforming My Self = Self Study. Teach. Tea. Seeking Spatial Justice = Glob Community Ser Seeking Spatial Justice = Glob. Community. Ser. Seeking Success in E-business: A Multidisciplinary Approach = Int Fed Info Proc Seeking Success in E-business: A Multidisciplinary Approach = Int. Fed. Info. Proc. Seelenarbeit An Deutschland: Martin Walser in Perspective = Germ Monit Seelenarbeit An Deutschland: Martin Walser in Perspective = Germ. Monit. Seelenarbeit An Deutschland: Martin Walser in Perspective = Ger Monitor Seelenarbeit An Deutschland: Martin Walser in Perspective = Ger. Monitor. Sefarad = Sefarad Sefm 2006: Fourth Ieee International Conference On Software Engineering and Formal Methods, Proceedings = I C Softw Eng Form M Sefm 2006: Fourth Ieee International Conference On Software Engineering and Formal Methods, Proceedings = I. C. Softw. Eng. Form. M. Segismundo = Segismundo Segno e testo = S&T Seibutsu kankyo chosetsu. [Environment control in biology = Seibutsu Kankyo Chosetsu Seibutsu-kogaku Kaishi-journal of The Society for Fermentation and Bioengineering = Seibutsu-kogaku Kais Seibutsu-kogaku Kaishi-journal of The Society for Fermentation and Bioengineering = Seibutsu-kogaku Kais. Seibutsu-kogaku Kaishi = Seibutsu-kogaku Kais Seibutsu-kogaku Kaishi = Seibutsu-kogaku Kais. Seibutsu Kogaku Kaishi = Seibutsu Kogaku Kaishi Seibutsu shiryo bunseki = Journal of analytical bio-science|Seibutsu Shiryo Bunseki Seikagaku (Journal of Japanese Biochemical Society) = Seikagaku Seikagaku. Journal of Japanese Biochemical Society=Seikagaku;; Seikagaku = Seikagaku Seikagaku. The Journal of Japanese Biochemical Society = Seikagaku Seikatsu eisei. [Life sanitation = Seikatsu Eisei Seikeigeka. Orthopedic surgery = Seikei Geka Seikei Geka (Orthopedic Surgery) = Seikei Geka Seiroka Kango Daigaku Kiyo = Seiroka Kango Daigaku Kiyo Sei Roka Kango Daigaku kiyo = Seiroka Kango Daigaku Kiyo Seishin igaku. Clinical psychiatry = Seishin Igaku Seishin Igaku Kenkyusho Gyosekishu (Bulletin of the Seishin-Igaku Institute) = Seishin Igaku Kenkyusho Gyosekishu Seishin Shinkeigaku Zasshi (Psychiatria et Neurologia Japonica) = Seishin Shinkeigaku Zasshi Seishin Shinkeigaku Zasshi. Psychiatria Et Neurologia Japonica=Seishin Shinkeigaku Zasshi;; Seismic Analysis and Design for Soil-pile-structure Interactions = Geotech Sp Seismic Analysis and Design for Soil-pile-structure Interactions = Geotech. Sp. Seismic Assessment and Rehabilitation of Existing Buildings = Nato Sci S Ss Iv Ear Seismic Assessment and Rehabilitation of Existing Buildings = Nato. Sci. S. Ss. Iv. Ear. Seismic Design, Assessment and Retrofitting of Concrete Buildings: Based On En-eurocode 8 = Geotech Geol Earthq Seismic Design, Assessment and Retrofitting of Concrete Buildings: Based On En-eurocode 8 = Geotech. Geol. Earthq. Seismic Earth: Array Analysis of Broadband Seismograms = Geophys Monogr Ser Seismic Earth: Array Analysis of Broadband Seismograms = Geophys. Monogr. Ser. Seismic Geomorphology: Applications to Hydrocarbon Exploration and Production = Geol Soc Spec Publ Seismic Geomorphology: Applications to Hydrocarbon Exploration and Production = Geol. Soc. Spec. Publ. Seismic Hazard and Building Vulnerability in Post-soviet Central Asian Republics = Nato Asi 2 Seismic Hazard and Building Vulnerability in Post-soviet Central Asian Republics = Nato. Asi. 2. Seismic Resistant Steel Structures = Cism Cour L Seismic Resistant Steel Structures = Cism. Cour. L. Seismic Resistant Steel Structures = Cism Courses Lect Seismic Resistant Steel Structures = Cism. Courses. Lect. Seismic Risk Assessment and Retrofitting: With Special Emphasis On Existing Low-rise Structures = Geotech Geol Earthq Seismic Risk Assessment and Retrofitting: With Special Emphasis On Existing Low-rise Structures = Geotech. Geol. Earthq. Seismic Risk Assessment and Retrofitting: With Special Emphasis On Existing Low-rise Structures = Geot Geol Earthquake Seismic Risk Assessment and Retrofitting: With Special Emphasis On Existing Low-rise Structures = Geot. Geol. Earthquake. Seismic Wave Propagation and Scattering in The Heterogeneous Earth = Mod Acoust Sign Proc Seismic Wave Propagation and Scattering in The Heterogeneous Earth = Mod. Acoust. Sign. Proc. Seismological Research Letters = Seismol Res Lett Seismological Research Letters = Seismol. Res. Lett. [Seitai no kagaku] [Science of the living body] = Seitai Kagaku Seitai no Kagaku = Seitai no Kagaku Seizieme Siecle = Seiz Siecle Seizieme Siecle = Seiz. Siecle Seizure-european Journal of Epilepsy = Seizure-eur J Epilep Seizure-european Journal of Epilepsy = Seizure-eur. J. Epilep. Seizure=Seizure;; Seizure = Seizure Seizures in Critical Care: A Guide to Diagnosis and Therapeutics, Second Edition = Curr Clin Neurol Seizures in Critical Care: A Guide to Diagnosis and Therapeutics, Second Edition = Curr. Clin. Neurol. Seizure : the journal of the British Epilepsy Association = Seizure [Sekai sanfujinka soran] [Survey of world obstetrics and gynecology] = Surv World Obstet Gynecol (Jpn) Sekiyu Gakkaishi-journal of The Japan Petroleum Institute = Sekiyu Gakkaishi Sekiyu Gakkaishi-journal of The Japan Petroleum Institute = Sekiyu Gakkaishi. Selbyana = Selbyana Selecoes odontologicas = Sel Odontol (Sao Paulo) Selecoes Odontologicas = Sel. Odontol. (Sao Paulo) Selecta Mathematica-new Series = Sel Math-new Ser Selecta Mathematica-new Series = Sel. Math-new. Ser. Selecta Mathematica = Selecta Math. (N.S.) Selected Annual Reviews of the Analytical Sciences = Sel. Annu. Rev. Anal. Sci. Selected Areas in Cryptography = Lect Notes Comput Sc Selected Areas in Cryptography = Lect. Notes. Comput. Sc. Selected Areas in Cryptography, Proceedings = Lect Notes Comput Sc Selected Areas in Cryptography, Proceedings = Lect. Notes. Comput. Sc. Selected Lectures in Mathematics = Sel. Lectures Math. Selected Paper From International Conference On Optics and Optoelectronics '98 = P Soc Photo-opt Ins Selected Paper From International Conference On Optics and Optoelectronics '98 = P. Soc. Photo-opt. Ins. Selected Papers From Icnaam 2007 and Iccmse 2007 = Aip Conf Proc Selected Papers From Icnaam 2007 and Iccmse 2007 = Aip. Conf. Proc. Selected Papers From Photonics India '98 = Proc Spie Selected Papers From Photonics India '98 = Proc. Spie. Selected Papers From Photonics India '98 = P Soc Photo-opt Ins Selected Papers From Photonics India '98 = P. Soc. Photo-opt. Ins. Selected Papers From The International Conference On Optoelectronic Information Technologies = P Soc Photo-opt Ins Selected Papers From The International Conference On Optoelectronic Information Technologies = P. Soc. Photo-opt. Ins. Selected Papers From The International Conference On Spectroscopy of Molecules and Crystals = P Soc Photo-opt Ins Selected Papers From The International Conference On Spectroscopy of Molecules and Crystals = P. Soc. Photo-opt. Ins. Selected Papers of The Nagisa Westpac Congress 2008 = P Seto Mar Biol Lab Selected Papers of The Nagisa Westpac Congress 2008 = P. Seto. Mar. Biol. Lab. Selected Preserver Problems On Algebraic Structures of Linear Operators and On Function Spaces = Lect Notes Math Selected Preserver Problems On Algebraic Structures of Linear Operators and On Function Spaces = Lect. Notes. Math. Selected Problems of Contemporary Physics (nonlocal Point of View) = Actual Probl Cont Ph Selected Problems of Contemporary Physics (nonlocal Point of View) = Actual. Probl. Cont. Ph. Selected Problems of Fractional Systems Theory = Lect Notes Contr Inf Selected Problems of Fractional Systems Theory = Lect. Notes. Contr. Inf. Selected Proceedings of The Symposium On Estimating Functions = Inst Math S Selected Proceedings of The Symposium On Estimating Functions = Inst. Math. S. Selected Topics in Applied Computer Science = Int Conf Appl Comput Selected Topics in Applied Computer Science = Int. Conf. Appl. Comput. Selected Topics in Boundary Integral Formulations for Solids and Fluids = Cism Cour L Selected Topics in Boundary Integral Formulations for Solids and Fluids = Cism. Cour. L. Selected Topics in Dynamics and Control of Chemical and Biological Processes = Lect Notes Contr Inf Selected Topics in Dynamics and Control of Chemical and Biological Processes = Lect. Notes. Contr. Inf. Selected Topics in Electronics and Systems = Sel Top Electr Syst Selected Topics in Electronics and Systems = Sel. Top. Electr. Syst. Selected Topics in Mass Spectrometry in The Biomolecular Sciences = Nato Adv Sci I C-mat Selected Topics in Mass Spectrometry in The Biomolecular Sciences = Nato. Adv. Sci. I. C-mat. Selected Topics in Nonperturbative Qcd = P Int Sch Phys Selected Topics in Nonperturbative Qcd = P. Int. Sch. Phys. Selected Topics in Signal Processing = Pr H Adv Re Selected Topics in Signal Processing = Pr. H. Adv. Re. Selected Topics in Superconductivity = Sel Top Supercond Selected Topics in Superconductivity = Sel. Top. Supercond. Selected Topics in System Science and Simulation in Engineering = Int Conf Syst Sci Si Selected Topics in System Science and Simulation in Engineering = Int. Conf. Syst. Sci. Si. Selected Topics On Crystal Growth = Aip Conf Proc Selected Topics On Crystal Growth = Aip. Conf. Proc. Selected Topics On Electron Physics = Phys Atoms Selected Topics On Electron Physics = Phys. Atoms. Selected Works of A.i. Shirshov = Cont Mathematicians Selected Works of A.i. Shirshov = Cont. Mathematicians. Selected Works of Benoit B = Sel. Works B. B. Mandelbrot Selection and Use of Essential Medicines = Who Tech Rep Ser Selection and Use of Essential Medicines = Who. Tech. Rep. Ser. Selectionism and The Brain = Int Rev Neurobiol Selectionism and The Brain = Int. Rev. Neurobiol. Selective Activation of Drugs By Redox Processes = Nato Adv Sci I A-lif Selective Activation of Drugs By Redox Processes = Nato. Adv. Sci. I. A-lif. Selective Breeding in Aquaculture: An Introduction = Rev-methods Technol Selective Breeding in Aquaculture: An Introduction = Rev-methods. Technol. Selective cancer therapeutics = Sel Cancer Ther Selective Cancer Therapeutics = Sel. Cancer Ther. Selective Cancer Therapeutics = Select Cancer Ther Selective Cancer Therapeutics = Select. Cancer Ther. Selective Electrode Reviews = Select Electr Rev Selective Electrode Reviews = Select. Electr. Rev. Selective Estrogen Receptor Modulators (serms) = Ann Ny Acad Sci Selective Estrogen Receptor Modulators (serms) = Ann. Ny. Acad. Sci. Selective Fluorination in Organic and Bioorganic Chemistry = Acs Sym Ser Selective Fluorination in Organic and Bioorganic Chemistry = Acs. Sym. Ser. Selective Immunosuppression: Basic Concepts and Clinical Applications = Chem Immunol Selective Immunosuppression: Basic Concepts and Clinical Applications = Chem. Immunol. Selectivity in Catalysis = Acs Sym Ser Selectivity in Catalysis = Acs. Sym. Ser. Select Topics in Laser Matter Interaction = S U P Front Sci Select Topics in Laser Matter Interaction = S. U. P. Front. Sci. Self Across Psychology: Self-recognition, Self-awareness, and The Self Concept = Ann Ny Acad Sci Self Across Psychology: Self-recognition, Self-awareness, and The Self Concept = Ann. Ny. Acad. Sci. Self-adaptive Heuristics for Evolutionary Computation = Stud Comput Intell Self-adaptive Heuristics for Evolutionary Computation = Stud. Comput. Intell. Self-adaptive Software: Applications = Lect Notes Comput Sc Self-adaptive Software: Applications = Lect. Notes. Comput. Sc. Self and Identity = Rutg Self Soc Id Self and Identity = Rutg. Self Soc. Id. Self and Identity = Self Identity Self and Systems: Explorations in Contemporary Self Psychology = Ann Ny Acad Sci Self and Systems: Explorations in Contemporary Self Psychology = Ann. Ny. Acad. Sci. Self and World: From Analytic Philosophy to Phenomenology = Quellen Stud Philos Self and World: From Analytic Philosophy to Phenomenology = Quellen. Stud. Philos. Self-assembled Ingaas/gaas Quantum Dots = Semiconduct Semimet Self-assembled Ingaas/gaas Quantum Dots = Semiconduct. Semimet. Self-assembled Nanomaterials Ii: Nanotubes = Adv Polym Sci Self-assembled Nanomaterials Ii: Nanotubes = Adv. Polym. Sci. Self-assembled Nanomaterials I: Nanofibers = Adv Polym Sci Self-assembled Nanomaterials I: Nanofibers = Adv. Polym. Sci. Self-assembled Nanostructured Materials = Mater Res Soc Symp P Self-assembled Nanostructured Materials = Mater. Res. Soc. Symp. P. Self-assembled Quantum Dots = Lect Notes Nanoscale Self-assembled Quantum Dots = Lect. Notes. Nanoscale. Self-assembly, Pattern Formation and Growth Phenomena in Nano-systems = Nato Sci Ser Ii Math Self-assembly, Pattern Formation and Growth Phenomena in Nano-systems = Nato. Sci. Ser. Ii. Math. Self-assembly Processes in Materials = Mater Res Soc Symp P Self-assembly Processes in Materials = Mater. Res. Soc. Symp. P. Self-calibrated Intelligent Optical Sensors and Systems = P Soc Photo-opt Ins Self-calibrated Intelligent Optical Sensors and Systems = P. Soc. Photo-opt. Ins. Self-concept = Rec Res Psy Self-concept = Rec. Res. Psy. Self-consistent Methods for Composites, Vol 1: Static Problems = Solid Mech Appl Self-consistent Methods for Composites, Vol 1: Static Problems = Solid. Mech. Appl. Self-consistent Methods for Composites, Vol 2: Wave Propagation in Heterogeneous Materials = Solid Mech Appl Self-consistent Methods for Composites, Vol 2: Wave Propagation in Heterogeneous Materials = Solid. Mech. Appl. Selfdual Gauge Field Vortices: An Analytical Approach = Prog Nonlinear Diffe Selfdual Gauge Field Vortices: An Analytical Approach = Prog. Nonlinear. Diffe. Self-dual Partial Differential Systems and Their Variational Principles = Springer Monogr Math Self-dual Partial Differential Systems and Their Variational Principles = Springer. Monogr. Math. Self-focusing: Past and Present = Top Appl Phys Self-focusing: Past and Present = Top. Appl. Phys. Self-force and Inertia: Old Light On New Ideas = Lect Notes Phys Self-force and Inertia: Old Light On New Ideas = Lect. Notes. Phys. Self Formation Theory and Applications = Solid State Phenomen Self Formation Theory and Applications = Solid. State. Phenomen. Self Formation Theory and Applications = Sol St Phen Self Formation Theory and Applications = Sol. St. Phen. Self: From Soul to Brain = Ann Ny Acad Sci Self: From Soul to Brain = Ann. Ny. Acad. Sci. Self = Front Soc Psychol Self = Front. Soc. Psychol. Self Healing Materials: An Alternative Approach to 20 Centuries of Materials Science = Springer Ser Mater S Self Healing Materials: An Alternative Approach to 20 Centuries of Materials Science = Springer. Ser. Mater. S. Self-identity and Everyday Life = New Sociol Self-identity and Everyday Life = New. Sociol. Self-inference Processes : The Ontario Symposium, Vol 6 = Ont Symp P Self-inference Processes : The Ontario Symposium, Vol 6 = Ont. Symp. P. Self-injurious Behavior in Intellectual Disabilities = Assess Treat Child P Self-injurious Behavior in Intellectual Disabilities = Assess. Treat. Child. P. Self-learning Speaker Identification: A System for Enhanced Speech Recognition = Signals Commun Techn Self-learning Speaker Identification: A System for Enhanced Speech Recognition = Signals. Commun. Techn. Selfless Cinema? Ethics and French Documentary = Res Monogr Fr Stud Selfless Cinema? Ethics and French Documentary = Res. Monogr. Fr. Stud. Self-managed Networks,systems, and Services, Proceedings = Lect Notes Comput Sc Self-managed Networks,systems, and Services, Proceedings = Lect. Notes. Comput. Sc. Self-managed Networks, Systems, and Services, Proceedings = Lect Notes Comput Sc Self-managed Networks, Systems, and Services, Proceedings = Lect. Notes. Comput. Sc. Self-management and Leadership Development = New Horiz Manag Self-management and Leadership Development = New. Horiz. Manag. Self-managing Distributed Systems = Lect Notes Comput Sc Self-managing Distributed Systems = Lect. Notes. Comput. Sc. Self-normalized Processes = Probab Appl Ser Self-normalized Processes = Probab. Appl. Ser. Self-organization and Autonomic Informatics (i) = Front Artif Intel Ap Self-organization and Autonomic Informatics (i) = Front. Artif. Intel. Ap. Self-organization and Pattern-formation in Neuronal Systems Under Conditions of Variable Gravity:life Sciences Under Systems Conditions = Nonlinear Phys Sci Self-organization and Pattern-formation in Neuronal Systems Under Conditions of Variable Gravity:life Sciences Under Systems Conditions = Nonlinear. Phys. Sci. Self-organization During Friction: Advanced Surface-engineered Materials and Systems Design = Mater Eng Ser Self-organization During Friction: Advanced Surface-engineered Materials and Systems Design = Mater. Eng. Ser. Self-organization, Emerging Properties, and Learning = Nato Adv Sci I B-phy Self-organization, Emerging Properties, and Learning = Nato. Adv. Sci. I. B-phy. Self-organization of Molecular Systems: From Molecules and Clusters to Nanotubes and Proteins = Nato Scie Peace Secu Self-organization of Molecular Systems: From Molecules and Clusters to Nanotubes and Proteins = Nato. Scie. Peace. Secu. Self-organization of Molecular Systems: From Molecules and Clusters to Nanotubes and Proteins = Nato Sci Peace Sec A Self-organization of Molecular Systems: From Molecules and Clusters to Nanotubes and Proteins = Nato. Sci. Peace. Sec. A. Self-organized Morphology in Nanostructured Materials = Springer Ser Mater S Self-organized Morphology in Nanostructured Materials = Springer. Ser. Mater. S. Self-organized Processes in Semiconductor Alloys = Mater Res Soc Symp P Self-organized Processes in Semiconductor Alloys = Mater. Res. Soc. Symp. P. Self-organized Processes in Semiconductor Heteroepitaxy = Mater Res Soc Symp P Self-organized Processes in Semiconductor Heteroepitaxy = Mater. Res. Soc. Symp. P. Self-organizing Architectures = Lect Notes Comput Sc Self-organizing Architectures = Lect. Notes. Comput. Sc. Self-organizing Brain: From Growth Cones to Functional Networks = Prog Brain Res Self-organizing Brain: From Growth Cones to Functional Networks = Prog. Brain. Res. Self-organizing Systems, Proceedings = Lect Notes Comput Sc Self-organizing Systems, Proceedings = Lect. Notes. Comput. Sc. Self Processes and Development = Minn Sym Child Psych Self Processes and Development = Minn. Sym. Child. Psych. Self-processes, Learning, and Enabling Human Potential: Dynamic New Approaches = Adv Self Res Self-processes, Learning, and Enabling Human Potential: Dynamic New Approaches = Adv. Self. Res. Self-production of Supramolecular Structures = Nato Adv Sci I C-mat Self-production of Supramolecular Structures = Nato. Adv. Sci. I. C-mat. Self-production of Supramolecular Structures = Nato Adv Sci Inst Se Self-production of Supramolecular Structures = Nato. Adv. Sci. Inst. Se. Self-reference in The Media = Approach Appl Semiot Self-reference in The Media = Approach. Appl. Semiot. Self = Self Self-service in The Internet Age: Expectations and Experiences = Comput Supp Coop Wor Self-service in The Internet Age: Expectations and Experiences = Comput. Supp. Coop. Wor. Self, Social Identity, and Physical Health = Rutg Self Soc Id Self, Social Identity, and Physical Health = Rutg. Self. Soc. Id. Self, Soul, and Body in Religious Experience = St Hist Rel Self, Soul, and Body in Religious Experience = St. Hist. Rel. Self-stabilizing Systems, Proceedings = Lect Notes Comput Sc Self-stabilizing Systems, Proceedings = Lect. Notes. Comput. Sc. Self-star Properties in Complex Information Systems: Conceptual and Practical Foundations = Lect Notes Comput Sc Self-star Properties in Complex Information Systems: Conceptual and Practical Foundations = Lect. Notes. Comput. Sc. Self-study of Practice As A Genre of Qualitative Research - Theory, Methodology, and Practice = Self Study Teach Tea Self-study of Practice As A Genre of Qualitative Research - Theory, Methodology, and Practice = Self. Study. Teach. Tea. Self Study of Teaching and Teacher Education Practices = Self Study Teach Tea Self Study of Teaching and Teacher Education Practices = Self Study Teach. Tea. Self-surrender (prapatti) to God in Srivaisnavism: Tamil Cats and Sanskrit Monkeys = Routl Hindu Stud Ser Self-surrender (prapatti) to God in Srivaisnavism: Tamil Cats and Sanskrit Monkeys = Routl. Hindu. Stud. Ser. Self-sustaining Systems = Lect Notes Comput Sc Self-sustaining Systems = Lect. Notes. Comput. Sc. Self Versus Others: Media, Messages, and The Third-person Effect = Lea Commun Ser Self Versus Others: Media, Messages, and The Third-person Effect = Lea. Commun. Ser. Semaine des hopitaux: informations = Sem Hop Inf Semaine des Hopitaux = Sem. Hop. Semaine Des Hopitaux = Sem Hop Paris Semaine Des Hopitaux = Sem. Hop. Paris. Semaine des hopitaux. Therapeutique = Sem Hop Ther Semaine des Hopitaux Therapeutique = Sem. Hop. Ther. Semaine Des Hopitaux Therapeutique = Sem Hop Therapeut Semaine Des Hopitaux Therapeutique = Sem. Hop. Therapeut. Semaine medicale professionelle et medico-sociale = Sem Med Prof Med Soc Semaine therapeutique = Sem Ther Semaine Therapeutique = Sem. Ther. Semana Epidemiologica = Sem Epidemiol Semana medica de Mexico = Sem Med Mex Semantic Agent Systems: Foundations and Applications = Stud Comput Intell Semantic Agent Systems: Foundations and Applications = Stud. Comput. Intell. Semantic E-science = Ann Inform Syst Semantic E-science = Ann. Inform. Syst. Semantic Field of Modal Certainty: A Corpus-based Study of English Adverbs = Top Engl Linguist Semantic Field of Modal Certainty: A Corpus-based Study of English Adverbs = Top. Engl. Linguist. Semantic Grid: Model, Methodology, and Applications = Adv Top Sci Tech Chi Semantic Grid: Model, Methodology, and Applications = Adv. Top. Sci. Tech. Chi. Semantic Issues in E-commerce Systems = Int Fed Info Proc Semantic Issues in E-commerce Systems = Int. Fed. Info. Proc. Semantic Labeling of Places With Mobile Robots = Springer Trac Adv Ro Semantic Labeling of Places With Mobile Robots = Springer. Trac. Adv. Ro. Semantic Methods for Execution-level Business Process Modeling = Lect Notes Bus Inf P Semantic Methods for Execution-level Business Process Modeling = Lect. Notes. Bus. Inf. P. Semantic Multimedia, Proceedings = Lect Notes Comput Sc Semantic Multimedia, Proceedings = Lect. Notes. Comput. Sc. Semantic Processing of Legal Texts = Lect Notes Artif Int Semantic Processing of Legal Texts = Lect. Notes. Artif. Int. Semantic Prosody: A Critical Evaluation = Routl Adv Corpus Lin Semantic Prosody: A Critical Evaluation = Routl. Adv. Corpus. Lin. Semantic Role Universals and Argument Linking: Theoretical, Typological, and Psycholinguistic Perspectives = Trends Linguist-stud Semantic Role Universals and Argument Linking: Theoretical, Typological, and Psycholinguistic Perspectives = Trends. Linguist-stud. Semantics and Algebraic Specification = Lect Notes Comput Sc Semantics and Algebraic Specification = Lect. Notes. Comput. Sc. Semantics, Applications and Implementation of Program Generation, Proceedings = Lect Notes Comput Sc Semantics, Applications and Implementation of Program Generation, Proceedings = Lect. Notes. Comput. Sc. Semantics for Concurrency = Work Comp Semantics for Concurrency = Work. Comp. Semantics in Acquisition = Stud Theor Psycholin Semantics in Acquisition = Stud. Theor. Psycholin. Semantics in Adaptive and Personalized Services: Methods, Tools and Applications = Stud Comput Intell Semantics in Adaptive and Personalized Services: Methods, Tools and Applications = Stud. Comput. Intell. Semantics in Data and Knowledge Bases = Lect Notes Comput Sc Semantics in Data and Knowledge Bases = Lect. Notes. Comput. Sc. Semantics in Databases = Lect Notes Comput Sc Semantics in Databases = Lect. Notes. Comput. Sc. Semantics of A Networked World: Semantics for Grid Databases = Lect Notes Comput Sc Semantics of A Networked World: Semantics for Grid Databases = Lect. Notes. Comput. Sc. Semantics of Polysemy: Reading Meaning in English and Warlpiri = Cogn Linguist Res Semantics of Polysemy: Reading Meaning in English and Warlpiri = Cogn. Linguist. Res. Semantics of Prepositions = Nat Lang Proc Semantics of Prepositions = Nat. Lang. Proc. Semantics of Programming Languages and Model Theory = Alg Log App Semantics of Programming Languages and Model Theory = Alg. Log. App. Semantics of Systems of Concurrent Processes = Lect Notes Comput Sc Semantics of Systems of Concurrent Processes = Lect. Notes. Comput. Sc. Semantics of The Future = Outst Diss Lunguist Semantics of The Future = Outst. Diss. Lunguist. Semantics-oriented Natural Language Processing = Ifsr Int Ser Syst Sc Semantics-oriented Natural Language Processing = Ifsr. Int. Ser. Syst. Sc. Semantic Structures in Computation = Semant Struct Comput Semantic Structures in Computation = Semant. Struct. Comput. Semantics, Web and Mining = Lect Notes Comput Sc Semantics, Web and Mining = Lect. Notes. Comput. Sc. Semantic Techniques for The Web = Lect Notes Comput Sc Semantic Techniques for The Web = Lect. Notes. Comput. Sc. Semantic Techniques for The Web: The Rewerse Perspective = Lect Notes Comput Sc Semantic Techniques for The Web: The Rewerse Perspective = Lect. Notes. Comput. Sc. Semantic Web and Beyond: Computing for Human Experience = Semantic Web Beyond Semantic Web and Beyond: Computing for Human Experience = Semantic Web Beyond. Semantic Web and Beyond-computing for Human Experience = Semat Web Beyond-com Semantic Web and Beyond-computing for Human Experience = Semat. Web Beyond-com. Semantic Web and Databases = Lect Notes Comput Sc Semantic Web and Databases = Lect. Notes. Comput. Sc. Semantic Web - Aswc 2006, Proceedings = Lect Notes Comput Sc Semantic Web - Aswc 2006, Proceedings = Lect. Notes. Comput. Sc. Semantic Web - Isec 2006, Proceedings = Lect Notes Comput Sc Semantic Web - Isec 2006, Proceedings = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2002 = Lect Notes Comput Sc Semantic Web - Iswc 2002 = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2003 = Lect Notes Comput Sc Semantic Web - Iswc 2003 = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2004, Proceedings = Lect Notes Comput Sc Semantic Web - Iswc 2004, Proceedings = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2005, Proceedings = Lect Notes Comput Sc Semantic Web - Iswc 2005, Proceedings = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2008 = Lect Notes Comput Sc Semantic Web - Iswc 2008 = Lect. Notes. Comput. Sc. Semantic Web - Iswc 2009, Proceedings = Lect Notes Comput Sc Semantic Web - Iswc 2009, Proceedings = Lect. Notes. Comput. Sc. Semantic Web, Ontologies and Databases = Lect Notes Comput Sc Semantic Web, Ontologies and Databases = Lect. Notes. Comput. Sc. Semantic Web, Proceedings = Lect Notes Comput Sc Semantic Web, Proceedings = Lect. Notes. Comput. Sc. Semantic Web: Research and Applications = Lect Notes Comput Sc Semantic Web: Research and Applications = Lect. Notes. Comput. Sc. Semantic Web: Research and Applications, Proceedings = Lect Notes Comput Sc Semantic Web: Research and Applications, Proceedings = Lect. Notes. Comput. Sc. Semantic Web: Research and Applications, Pt 1, Proceedings = Lect Notes Comput Sc Semantic Web: Research and Applications, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Semantic Web: Research and Applications, Pt 2, Proceedings = Lect Notes Comput Sc Semantic Web: Research and Applications, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Semantic Web Rules = Lect Notes Comput Sc Semantic Web Rules = Lect. Notes. Comput. Sc. Semantic Web: Semantics for Data and Services On The Web = Data Centric Syst Ap Semantic Web: Semantics for Data and Services On The Web = Data Centric. Syst. Ap. Semantic Web Services and Web Process Composition = Lect Notes Comput Sc Semantic Web Services and Web Process Composition = Lect. Notes. Comput. Sc. Semantic Web Services Challenge: Results From The First Year = Semantic Web Beyond Semantic Web Services Challenge: Results From The First Year = Semantic Web Beyond. Semantic Web Services Challenge: Results From The First Year = Semat Web Beyond-com Semantic Web Services Challenge: Results From The First Year = Semat. Web Beyond-com. Semantische Kampfe: Macht Und Sprache in Den Wissenschaften = Linguist-impulse Ten Semantische Kampfe: Macht Und Sprache in Den Wissenschaften = Linguist-impulse. Ten. Semeia = Semeia Semiaphorins: Receptor and Intracellular Signaling Mechanisms = Adv Exp Med Biol Semiaphorins: Receptor and Intracellular Signaling Mechanisms = Adv. Exp. Med. Biol. Semiclassical Analysis for Diffusions and Stochastic Processes = Lect Notes Math Semiclassical Analysis for Diffusions and Stochastic Processes = Lect. Notes. Math. Semiclassical Dynamics and Relaxation = Springer Ser Atom Op Semiclassical Dynamics and Relaxation = Springer. Ser. Atom. Op. Semiclassical Solution Ensembles for The Focusing Nonlinear Schrodinger Equation = Ann Math Stud Semiclassical Solution Ensembles for The Focusing Nonlinear Schrodinger Equation = Ann. Math. Stud. Semiclassical Theory of Mesoscopic Quantum Systems = Springer Tr Mod Phys Semiclassical Theory of Mesoscopic Quantum Systems = Springer. Tr. Mod. Phys. Semiconducting Chalcogenide Glass I: Glass Formation, Structure, and Stimulated Transformations in Chalcogenide Glasses = Semiconduct Semimet Semiconducting Chalcogenide Glass I: Glass Formation, Structure, and Stimulated Transformations in Chalcogenide Glasses = Semiconduct. Semimet. Semiconducting Chalcogenide Glass Iii: Applications of Chalcogenide Glasses = Semiconduct Semimet Semiconducting Chalcogenide Glass Iii: Applications of Chalcogenide Glasses = Semiconduct. Semimet. Semiconducting Chalcogenide Glass Ii: Properties of Chalcogenide Glasses = Semiconduct Semimet Semiconducting Chalcogenide Glass Ii: Properties of Chalcogenide Glasses = Semiconduct. Semimet. Semiconductor and Organic Optoelectronic Materials and Devices = Proc Spie Semiconductor and Organic Optoelectronic Materials and Devices = Proc. Spie. Semiconductor and Organic Optoelectronic Materials and Devices = P Soc Photo-opt Ins Semiconductor and Organic Optoelectronic Materials and Devices = P. Soc. Photo-opt. Ins. Semiconductor Catalysis and Photocatalysis On The Nanoscale = Nanotechnol Sci Tech Semiconductor Catalysis and Photocatalysis On The Nanoscale = Nanotechnol. Sci. Tech. Semiconductor Cavity Quantum Electrodynamics = Springer Tr Mod Phys Semiconductor Cavity Quantum Electrodynamics = Springer. Tr. Mod. Phys. Semiconductor Defect Engineering-materials, Synthetic Structures and Devices Ii = Mater Res Soc Symp P Semiconductor Defect Engineering-materials, Synthetic Structures and Devices Ii = Mater. Res. Soc. Symp. P. Semiconductor Defect Engineering-materials, Synthetic Structures and Devices = Mater Res Soc Symp P Semiconductor Defect Engineering-materials, Synthetic Structures and Devices = Mater. Res. Soc. Symp. P. Semiconductor Device Reliability = Nato Adv Sci I E-app Semiconductor Device Reliability = Nato. Adv. Sci. I. E-app. Semiconductor Devices = P Soc Photo-opt Ins Semiconductor Devices = P. Soc. Photo-opt. Ins. Semiconductor Heterostructures for Photonic and Electronic Applications = Mater Res Soc Symp P Semiconductor Heterostructures for Photonic and Electronic Applications = Mater. Res. Soc. Symp. P. Semiconductor Interfaces At The Sub-nanometer Scale = Nato Adv Sci Inst Se Semiconductor Interfaces At The Sub-nanometer Scale = Nato. Adv. Sci. Inst. Se. Semiconductor Lasers and Applications Iii = P Soc Photo-opt Ins Semiconductor Lasers and Applications Iii = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Applications Ii = P Soc Photo-opt Ins Semiconductor Lasers and Applications Ii = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Applications Iv = P Soc Photo-opt Ins Semiconductor Lasers and Applications Iv = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Applications = Proc Spie Semiconductor Lasers and Applications = Proc. Spie. Semiconductor Lasers and Applications = P Soc Photo-opt Ins Semiconductor Lasers and Applications = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Laser Dynamics Iii = Proc Spie Semiconductor Lasers and Laser Dynamics Iii = Proc. Spie. Semiconductor Lasers and Laser Dynamics Iii = P Soc Photo-opt Ins Semiconductor Lasers and Laser Dynamics Iii = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Laser Dynamics Ii = Proc Spie Semiconductor Lasers and Laser Dynamics Ii = Proc. Spie. Semiconductor Lasers and Laser Dynamics Ii = P Soc Photo-opt Ins Semiconductor Lasers and Laser Dynamics Ii = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Laser Dynamics Iv = P Soc Photo-opt Ins Semiconductor Lasers and Laser Dynamics Iv = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Laser Dynamics = Proc Spie Semiconductor Lasers and Laser Dynamics = Proc. Spie. Semiconductor Lasers and Laser Dynamics = P Soc Photo-opt Ins Semiconductor Lasers and Laser Dynamics = P. Soc. Photo-opt. Ins. Semiconductor Lasers and Optical Amplifiers for Lightwave Communication Systems = Proc Spie Semiconductor Lasers and Optical Amplifiers for Lightwave Communication Systems = Proc. Spie. Semiconductor Lasers and Optical Amplifiers for Lightwave Communication Systems = P Soc Photo-opt Ins Semiconductor Lasers and Optical Amplifiers for Lightwave Communication Systems = P. Soc. Photo-opt. Ins. Semiconductor Lasers for Lightwave Communication Systems = P Soc Photo-opt Ins Semiconductor Lasers for Lightwave Communication Systems = P. Soc. Photo-opt. Ins. Semiconductor Lasers Iii = P Soc Photo-opt Ins Semiconductor Lasers Iii = P. Soc. Photo-opt. Ins. Semiconductor Lasers Ii = P Soc Photo-opt Ins Semiconductor Lasers Ii = P. Soc. Photo-opt. Ins. Semiconductor Lasers, Second Edition = Springer Ser Opt Sci Semiconductor Lasers, Second Edition = Springer. Ser. Opt. Sci. Semiconductor Materials for Optoelectronics & Ltmbe Materials = Eur Mat Res Semiconductor Materials for Optoelectronics & Ltmbe Materials = Eur. Mat. Res. Semiconductor Materials for Sensing = Mater Res Soc Symp P Semiconductor Materials for Sensing = Mater. Res. Soc. Symp. P. Semiconductor Nanoclusters- Physical, Chemical, and Catalytic Aspects = Stud Surf Sci Catal Semiconductor Nanoclusters- Physical, Chemical, and Catalytic Aspects = Stud. Surf. Sci. Catal. Semiconductor Nanocrystals and Silicate Naoparticles = Struct Bond Semiconductor Nanocrystals and Silicate Naoparticles = Struct. Bond. Semiconductor Nanostructures = Nanosci Technol Semiconductor Nanostructures = Nanosci. Technol. Semiconductor-on-insulator Materials for Nanoelectronics Applications = Eng Mater Semiconductor-on-insulator Materials for Nanoelectronics Applications = Eng. Mater. Semiconductor Optoelectronic Device Manufacturing and Applications = Proc Spie Semiconductor Optoelectronic Device Manufacturing and Applications = Proc. Spie. Semiconductor Optoelectronic Device Manufacturing and Applications = P Soc Photo-opt Ins Semiconductor Optoelectronic Device Manufacturing and Applications = P. Soc. Photo-opt. Ins. Semiconductor Optoelectronic Devices for Lightwave Communication = P Soc Photo-opt Ins Semiconductor Optoelectronic Devices for Lightwave Communication = P. Soc. Photo-opt. Ins. Semiconductor Photodetectors Iii = P Soc Photo-opt Ins Semiconductor Photodetectors Iii = P. Soc. Photo-opt. Ins. Semiconductor Photodetectors Ii = Proc Spie Semiconductor Photodetectors Ii = Proc. Spie. Semiconductor Photodetectors Ii = P Soc Photo-opt Ins Semiconductor Photodetectors Ii = P. Soc. Photo-opt. Ins. Semiconductor Photodetectors = Proc Spie Semiconductor Photodetectors = Proc. Spie. Semiconductor Photodetectors = P Soc Photo-opt Ins Semiconductor Photodetectors = P. Soc. Photo-opt. Ins. Semiconductor Photonics: Nano-structured Materials and Devices = Adv Mater Res-switz Semiconductor Photonics: Nano-structured Materials and Devices = Adv. Mater. Res-switz. Semiconductor Photonics: Nano-structured Materials and Devices = Adv Mat Res Semiconductor Photonics: Nano-structured Materials and Devices = Adv. Mat. Res. Semiconductor Process and Device Performance Modelling = Mater Res Soc Symp P Semiconductor Process and Device Performance Modelling = Mater. Res. Soc. Symp. P. Semiconductor Processing and Characterization With Lasers - Applications in Photovoltaics = Mater Sci Forum Semiconductor Processing and Characterization With Lasers - Applications in Photovoltaics = Mater. Sci. Forum. Semiconductor Products and Solid State Technology = Semicond Prod Solid Semiconductor Products and Solid State Technology = Semicond. Prod. Solid Semiconductor Quantum Dots = Mater Res Soc Symp P Semiconductor Quantum Dots = Mater. Res. Soc. Symp. P. Semiconductor Quantum Optoelectronics = Sussp Proc Semiconductor Quantum Optoelectronics = Sussp. Proc. Semiconductors and Insulators = Semicond Insul Semiconductors and Insulators = Semicond. Insul. Semiconductors and Semimetals = Semicond Semimet Semiconductors and Semimetals = Semicond. Semimet. Semiconductors and Semimetals = Semiconduct Semimet Semiconductors and Semimetals = Semiconduct. Semimet. Semiconductors and Semimetals, Vol 35 = Semicond Semimet Semiconductors and Semimetals, Vol 35 = Semicond. Semimet. Semiconductors and Semimetals, Vol 35 = Semiconduct Semimet Semiconductors and Semimetals, Vol 35 = Semiconduct. Semimet. Semiconductor Science and Technology = Semicond Sci Tech Semiconductor Science and Technology = Semicond. Sci. Tech. Semiconductor Science and Technology = Semicond. Sci. Technol. Semiconductors for Room-temperature Radiation Detector Applications Ii = Mater Res Soc Symp P Semiconductors for Room-temperature Radiation Detector Applications Ii = Mater. Res. Soc. Symp. P. Semiconductors for Room-temperature Radiation Detector Applications = Mater Res Soc Symp P Semiconductors for Room-temperature Radiation Detector Applications = Mater. Res. Soc. Symp. P. Semiconductor Silicon 2002, Vols 1 and 2 = Elec Soc S Semiconductor Silicon 2002, Vols 1 and 2 = Elec. Soc. S. Semiconductors = Semiconductors Semiconductors = Semiconductors+ Semiconductors = Semiconductors+.+ Semiconductor Superlattices and Interfaces = P Int Sch Phys Semiconductor Superlattices and Interfaces = P. Int. Sch. Phys. Semiconductor Thermoelectronic Generators = Mater Sci Found Semiconductor Thermoelectronic Generators = Mater. Sci. Found. Semiconductor Wafer Bonding: Science, Technology, and Applications Iv = Elec Soc S Semiconductor Wafer Bonding: Science, Technology, and Applications Iv = Elec. Soc. S. Semiconductor Wafer Bonding: Science, Technology, and Applications V, Proceedings = Elec Soc S Semiconductor Wafer Bonding: Science, Technology, and Applications V, Proceedings = Elec. Soc. S. Semiconductor Wafer Bonding Vii: Science, Technology, and Applications, Proceedings = Elec Soc S Semiconductor Wafer Bonding Vii: Science, Technology, and Applications, Proceedings = Elec. Soc. S. Semi-discretization for Time-delay Systems: Stability and Engineering Applications = Appl Math Sci Semi-discretization for Time-delay Systems: Stability and Engineering Applications = Appl. Math. Sci. Semigroup Forum = Semigroup Forum Semigroup Forum = Semigroup Forum Semigroups of Operators: Theory and Applications = Prog Nonlin Semigroups of Operators: Theory and Applications = Prog. Nonlin. Semigroup Theory and Applications = Lect Notes Pure Appl Semigroup Theory and Applications = Lect. Notes. Pure. Appl. Semigroup Theory and Evolution Equations = Lect Notes Pure Appl Semigroup Theory and Evolution Equations = Lect. Notes. Pure. Appl. Semilinear Elliptic Equations for Beginners: Existence Results Via The Variational Approach = Universitext Semilinear Elliptic Equations for Beginners: Existence Results Via The Variational Approach = Universitext. Semimagnetic Semiconductors and Diluted Magnetic Semiconductors = E Maj Int S Semimagnetic Semiconductors and Diluted Magnetic Semiconductors = E. Maj. Int. S. Semina: Ciencias Agrarias = Semina Cienc. Agrar. Semina-ciencias Agrarias = Semin-cienc Agrar Semina-ciencias Agrarias = Semin-cienc. Agrar. Séminaire d'Analyse Moderne = Sém. Anal. Moderne Séminaire d'Analyse = Sémin. Anal. Univ. Blaise Pascal (Clermont II) Séminaire de Mathématique de Luxembourg = Sém. Math. Luxembourg Seminaire D'enseignement Inserm = Sem Ens Inserm Seminaire D'enseignement Inserm = Sem. Ens. Inserm Seminaire De Probabilites Xliii = Lect Notes Math Seminaire De Probabilites Xliii = Lect. Notes. Math. Seminaire De Probabilites Xlii = Lect Notes Math Seminaire De Probabilites Xlii = Lect. Notes. Math. Seminaire De Probabilites Xli = Lect Notes Math Seminaire De Probabilites Xli = Lect. Notes. Math. Seminaire De Probabilites Xl = Lect Notes Math Seminaire De Probabilites Xl = Lect. Notes. Math. Seminaire De Probabilites Xxxiii = Lect Notes Math Seminaire De Probabilites Xxxiii = Lect. Notes. Math. Seminaire De Probabilites Xxxiv = Lect Notes Math Seminaire De Probabilites Xxxiv = Lect. Notes. Math. Seminaire De Probabilites Xxxv = Lect Notes Math Seminaire De Probabilites Xxxv = Lect. Notes. Math. Seminaire De Probabilities Xxxviii = Lect Notes Math Seminaire De Probabilities Xxxviii = Lect. Notes. Math. Seminaire De Probabilities Xxxvi = Lect Notes Math Seminaire De Probabilities Xxxvi = Lect. Notes. Math. Séminaire de Théorie Spectrale et Géométrie = Sémin. Théor. Spectr. Géom. Séminaire: Équations aux Dérivées Partielles = Sémin. Équ. Dériv. Partielles Seminaire Inserm = Sem Inserm Seminaire Inserm = Sem. Inserm Séminaire Lotharingien de Combinatoire = Sém. Lothar. Combin. Séminaires et Congrès = Sémin. Congr. Seminaires Ophtalmologiques Dipsen = Sem Ophtalm Seminaires Ophtalmologiques Dipsen = Sem. Ophtalm. Seminar-a Journal of Germanic Studies = Seminar-j Ger Stud Seminar-a Journal of Germanic Studies = Seminar-j. Ger. Stud. Seminarberichte = Seminarberichte Seminar in Consumer Research in The Fragrance Business = Proc Esomar Congr Seminar in Consumer Research in The Fragrance Business = Proc. Esomar. Congr. Seminar international = Semin Int Seminario de Ensenanza de la Odontopediatria = Semin. Ensen. Odontopediatr. Seminario De Ensenanza De La Odontopediatria = Semin Ensen Odontopediatr Seminari romani di cultura greca = SeminRom Seminari romani di cultura greca = SemRom Seminar On Competition in Publishing: The Necessity for Research = Proc Esomar Congr Seminar On Competition in Publishing: The Necessity for Research = Proc. Esomar. Congr. Seminar On Dynamical Systems = Prog Nonlin Seminar On Dynamical Systems = Prog. Nonlin. Seminar On Information Provision to Rural Communities in Africa, Proceedings = Ifla Alp Proj Rep Seminar On Information Provision to Rural Communities in Africa, Proceedings = Ifla. Alp. Proj. Rep. Seminar on Mathematical Sciences = Sem. Math. Sci. Seminar On Stochastic Analysis, Random Fields and Applications Iii = Prog Probab Seminar On Stochastic Analysis, Random Fields and Applications Iii = Prog. Probab. Seminar On Stochastic Analysis, Random Fields and Applications Iv = Prog Probab Seminar On Stochastic Analysis, Random Fields and Applications Iv = Prog. Probab. Seminar On Stochastic Analysis, Random Fields and Applications = Prog Probab Seminar On Stochastic Analysis, Random Fields and Applications = Prog. Probab. Seminar On Stochastic Analysis, Random Fields and Applications Vi = Prog Probab Seminar On Stochastic Analysis, Random Fields and Applications Vi = Prog. Probab. Seminar On Stochastic Analysis, Random Fields and Applications V = Prog Probab Seminar On Stochastic Analysis, Random Fields and Applications V = Prog. Probab. Seminar On Stochastic Processes, 1989 = Prog Probab Seminar On Stochastic Processes, 1989 = Prog. Probab. Seminar On Stochastic Processes, 1991 = Prog Probab Seminar On Stochastic Processes, 1991 = Prog. Probab. Seminar On Stochastic Processes, 1992 = Prog Probab Seminar On Stochastic Processes, 1992 = Prog. Probab. Seminar Proceedings of The Scandinavian Institute of African Studies = Sem P Scand Seminar Proceedings of The Scandinavian Institute of African Studies = Sem. P. Scand. Seminar report. Merck Sharp & Dohme = Semin Rep Merck Sharp Dohme Seminar = Seminar Seminar Series in Mathematics = Sem. Ser. Math. Algebra Seminar Series in Mathematics = Sem. Ser. Math. Anal. Seminars for nurse managers = Semin Nurse Manag Seminars for Nurse Managers = Semin. Nurse Manag. Seminars in adolescent medicine = Semin Adolesc Med Seminars in Adolescent Medicine = Semin. Adolesc. Med. Seminars in Anesthesia Perioperative Medicine and Pain = Semin Anesth Perio M Seminars in Anesthesia Perioperative Medicine and Pain = Semin. Anesth. Perio. M. Seminars in anesthesia = Semin Anesth Seminars in Anesthesia = Semin Anesth Seminars in Anesthesia = Semin. Anesth. Seminars in Arthritis and Rheumatism = Semin Arthritis Rheu Seminars in Arthritis and Rheumatism = Semin. Arthritis Rheu. Seminars in arthritis and rheumatism = Semin Arthritis Rheum Seminars in Arthritis and Rheumatism = Semin. Arthritis Rheum. Seminars In Arthritis and Rheumatism=Semin Arthritis Rheum;; Seminars in arthroplasty = Semin Arthroplasty Seminars in Arthroplasty = Semin. Arthroplasty Seminars in Avian and Exotic Pet Medicine = Semin Avian Exot Pet Seminars in Avian and Exotic Pet Medicine = Semin. Avian Exot. Pet Seminars in cancer biology = Semin Cancer Biol Seminars in Cancer Biology = Semin Cancer Biol Seminars in Cancer Biology = Semin. Cancer Biol. Seminars In Cancer Biology=Semin Cancer Biol;; Seminars in cardiothoracic and vascular anesthesia = Semin Cardiothorac Vasc Anesth Seminars in Cell and Developmental Biology = Semin. Cell Dev. Biol. Seminars in cell biology = Semin Cell Biol Seminars in Cell Biology = Semin Cell Biol Seminars in Cell Biology = Semin. Cell Biol. Seminars in Cell Biology = Semin. Cell. Biol. Seminars in cell & developmental biology = Semin Cell Dev Biol Seminars in Cell & Developmental Biology = Semin Cell Dev Biol Seminars in Cell & Developmental Biology = Semin. Cell Dev. Biol. Seminars in clinical neuropsychiatry = Semin Clin Neuropsychiatry Seminars in Clinical Neuropsychiatry = Semin. Clin. Neuropsychiatry Seminars in Cutaneous Medicine and Surgery = Semin. Cutaneous Med. Surg. Seminars in cutaneous medicine and surgery = Semin Cutan Med Surg Seminars in Cutaneous Medicine and Surgery = Semin Cutan Med Surg Seminars in Cutaneous Medicine and Surgery = Semin. Cutan. Med. Surg. Seminars In Cutaneous Medicine and Surgery=Semin Cutan Med Surg;; Seminars in dental hygiene = Semin Dent Hyg Seminars in Dental Hygiene = Semin. Dent. Hyg. Seminars in dermatology = Semin Dermatol Seminars in Dermatology = Semin Dermatol Seminars in Dermatology = Semin. Dermatol. Seminars in diagnostic pathology = Semin Diagn Pathol Seminars in Diagnostic Pathology = Semin Diagn Pathol Seminars in Diagnostic Pathology = Semin. Diagn. Pathol. Seminars In Diagnostic Pathology=Semin Diagn Pathol;; Seminars in dialysis = Semin Dial Seminars in Dialysis = Semin Dialysis Seminars in Dialysis = Semin. Dialysis Seminars in drug treatment = Semin Drug Treat Seminars in Drug Treatment = Semin Drug Treat Seminars in Drug Treatment = Semin. Drug Treat. Seminars in family medicine = Semin Fam Med Seminars in Fetal and Neonatal Medicine = Semin. Fetal. Neonatal Med. Seminars in fetal & neonatal medicine = Semin Fetal Neonatal Med Seminars in Fetal & Neonatal Medicine = Semin Fetal Neonat M Seminars in Fetal & Neonatal Medicine = Semin. Fetal Neonat. M. Seminars in gastrointestinal disease = Semin Gastrointest Dis Seminars in Gastrointestinal Disease = Semin. Gastrointest. Dis. Seminars In Gastrointestinal Disease=Semin Gastrointest Dis;; Seminars in hearing = Semin Hear Seminars in hematology = Semin Hematol Seminars in Hematology = Semin Hematol Seminars in Hematology = Semin. Hematol. Seminars In Hematology=Semin Hematol;; Seminars in immunology = Semin Immunol Seminars in Immunology = Semin Immunol Seminars in Immunology = Semin. Immunol. Seminars In Immunology=Semin Immunol;; Seminars in immunopathology = Semin Immunopathol Seminars in Immunopathology = Semin Immunopathol Seminars in Immunopathology = Semin. Immunopathol. Seminars in Interventional Cardiology = Semin. Interv. Cardiol. Seminars in interventional cardiology : SIIC = Semin Interv Cardiol Seminars in Interventional Radiology = Semin Intervent Rad Seminars in Interventional Radiology = Semin. Intervent. Rad. Seminars in laparoscopic surgery = Semin Laparosc Surg Seminars in Laparoscopic Surgery = Semin. Laparosc. Surg. Seminars in liver disease = Semin Liver Dis Seminars in Liver Disease = Semin Liver Dis Seminars in Liver Disease = Semin. Liver Dis. Seminars In Liver Disease=Semin Liver Dis;; Seminars in musculoskeletal radiology = Semin Musculoskelet Radiol Seminars in Musculoskeletal Radiology = Semin. Musculoskelet. Radiol. Seminars in Musculoskeletal Radiology = Semin Musculoskel R Seminars in Musculoskeletal Radiology = Semin. Musculoskel. R. Seminars in Neonatology = Semin. Neonatol. Seminars in neonatology : SN = Semin Neonatol Seminars in nephrology = Semin Nephrol Seminars in Nephrology = Semin Nephrol Seminars in Nephrology = Semin. Nephrol. Seminars In Nephrology=Semin Nephrol;; Seminars in neurology = Semin Neurol Seminars in Neurology = Semin Neurol Seminars in Neurology = Semin. Neurol. Seminars In Neurology=Semin Neurol;; Seminars in Neuroscience = Semin Neurosci Seminars in Neuroscience = Semin. Neurosci. Seminars in nuclear medicine = Semin Nucl Med Seminars in Nuclear Medicine = Semin Nucl Med Seminars in Nuclear Medicine = Semin. Nucl. Med. Seminars In Nuclear Medicine=Semin Nucl Med;; Seminars in oncology nursing = Semin Oncol Nurs Seminars in Oncology Nursing = Semin. Oncol. Nurs. Seminars In Oncology Nursing=Semin Oncol Nurs;; Seminars in oncology = Semin Oncol Seminars in Oncology = Semin Oncol Seminars in Oncology = Semin. Oncol. Seminars In Oncology=Semin Oncol;; Seminars in ophthalmology = Semin Ophthalmol Seminars in Ophthalmology = Semin Ophthalmol Seminars in Ophthalmology = Semin. Ophthalmol. Seminars in orthodontics = Semin Orthod Seminars in Orthodontics = Semin. Orthod. Seminars in pediatric infectious diseases = Semin Pediatr Infect Dis Seminars in pediatric neurology = Semin Pediatr Neurol Seminars in Pediatric Neurology = Semin Pediatr Neurol Seminars in Pediatric Neurology = Semin. Pediatr. Neurol. Seminars In Pediatric Neurology=Semin Pediatr Neurol;; Seminars in pediatric surgery = Semin Pediatr Surg Seminars in Pediatric Surgery = Semin Pediatr Surg Seminars in Pediatric Surgery = Semin. Pediatr. Surg. Seminars In Pediatric Surgery=Semin Pediatr Surg;; Seminars in Pediatric Surgery = Semin Pediat Surg Seminars in Pediatric Surgery = Semin. Pediat. Surg. Seminars in perinatology = Semin Perinatol Seminars in Perinatology = Semin Perinatol Seminars in Perinatology = Semin. Perinatol. Seminars In Perinatology=Semin Perinatol;; Seminars in perioperative nursing = Semin Perioper Nurs Seminars in Perioperative Nursing = Semin. Perioper. Nurs. Seminars in Psychiatry = Semin Psychiat Seminars in Psychiatry = Semin. Psychiat. Seminars in psychiatry = Semin Psychiatry Seminars in Psychiatry = Semin. Psychiatry Seminars in radiation oncology = Semin Radiat Oncol Seminars in Radiation Oncology = Semin Radiat Oncol Seminars in Radiation Oncology = Semin. Radiat. Oncol. Seminars in Reproductive Endocrinology = Semin Reprod Endocr Seminars in Reproductive Endocrinology = Semin. Reprod. Endocr. Seminars in reproductive endocrinology = Semin Reprod Endocrinol Seminars in Reproductive Endocrinology = Semin. Reprod. Endocrinol. Seminars In Reproductive Endocrinology=Semin Reprod Endocrinol;; Seminars in reproductive medicine = Semin Reprod Med Seminars in Reproductive Medicine = Semin Reprod Med Seminars in Reproductive Medicine = Semin. Reprod. Med. Seminars in Respiratory and Critical Care Medicine = Semin Resp Crit Care Seminars in Respiratory and Critical Care Medicine = Semin. Resp. Crit. Care Seminars in respiratory and critical care medicine = Semin Respir Crit Care Med Seminars in Respiratory and Critical Care Medicine = Sem Resp Crit Care M Seminars in Respiratory and Critical Care Medicine = Sem. Resp. Crit. Care M. Seminars in respiratory infections = Semin Respir Infect Seminars in Respiratory Infections = Semin. Respir. Infect. Seminars In Respiratory Infections=Semin Respir Infect;; Seminars in Respiratory Medicine = Semin Respir Med Seminars in Respiratory Medicine = Semin. Respir. Med. Seminars in roentgenology = Semin Roentgenol Seminars in Roentgenology = Semin Roentgenol Seminars in Roentgenology = Semin. Roentgenol. Seminars In Roentgenology=Semin Roentgenol;; Seminars in speech and language = Semin Speech Lang Seminars in Speech and Language = Semin. Speech Lang. Seminars In Speech and Language=Semin Speech Lang;; Seminars In Surgical Oncology (New York, Ny=Semin Surg Oncol;; Seminars in surgical oncology = Semin Surg Oncol Seminars in Surgical Oncology = Semin Surg Oncol Seminars in Surgical Oncology = Semin. Surg. Oncol. Seminars in The Neurosciences = Semin Neurosci Seminars in The Neurosciences = Semin. Neurosci. Seminars in thoracic and cardiovascular surgery. Pediatric cardiac surgery annual = Semin Thorac Cardiovasc Surg Pediatr Card Surg Annu Seminars in Thoracic and Cardiovascular Surgery. Pediatric Cardiac Surgery Annual = Semin. Thorac. Cardiovasc. Surg. Pediatr. Card. Surg. Annu. Seminars in thoracic and cardiovascular surgery = Semin Thorac Cardiovasc Surg Seminars in Thoracic and Cardiovascular Surgery = Semin. Thorac. Cardiovasc. Surg. Seminars In Thoracic and Cardiovascular Surgery=Semin Thorac Cardiovasc Surg;; Seminars in thrombosis and hemostasis = Semin Thromb Hemost Seminars in Thrombosis and Hemostasis = Semin Thromb Hemost Seminars in Thrombosis and Hemostasis = Semin. Thromb. Hemost. Seminars In Thrombosis and Hemostasis=Semin Thromb Hemost;; Seminars in Ultrasound Ct and Mri = Semin Ultrasound Ct Seminars in Ultrasound Ct and Mri = Semin. Ultrasound Ct Seminars in ultrasound, CT, and MR = Semin Ultrasound CT MR Seminars in Ultrasound, CT and MR = Semin. Ultrasound. CT MR Seminars In Ultrasound, Ct and Mr=Semin Ultrasound CT MR;; Seminars in urologic oncology = Semin Urol Oncol Seminars in Urologic Oncology = Semin. Urol. Oncol. Seminars In Urologic Oncology=Semin Urol Oncol;; Seminars in urology = Semin Urol Seminars in Urology = Semin. Urol. Seminars in vascular medicine = Semin Vasc Med Seminars in vascular surgery = Semin Vasc Surg Seminars in Vascular Surgery = Semin Vasc Surg Seminars in Vascular Surgery = Semin. Vasc. Surg. Seminars In Vascular Surgery=Semin Vasc Surg;; Seminars in Veterinary Medicine and Surgery-small Animal = Semin Vet Med Surg Seminars in Veterinary Medicine and Surgery-small Animal = Semin. Vet. Med. Surg. Seminars in veterinary medicine and surgery (small animal) = Semin Vet Med Surg (Small Anim) Seminars in Veterinary Medicine and Surgery (Small Animal) = Semin. Vet. Med. Surg. (Small Anim.) Seminars in Virology = Semin Virol Seminars in Virology = Semin. Virol. Semina = Semina Semiotexte = Semiotexte Semiotica = Semiotica Semiotic Encounters: Text, Image and Trans-nation = Int Forsch Allg Vgl Semiotic Encounters: Text, Image and Trans-nation = Int. Forsch. Allg. Vgl. Semiotic Rotations: Modes of Meanings in Cultural Worlds = Adv Cult Psychol Con Semiotic Rotations: Modes of Meanings in Cultural Worlds = Adv. Cult. Psychol. Con. Semiotics 1996 = Sour Semiot Semiotics 1996 = Sour. Semiot. Semiotics and Popular Culture = Semiot Pop Cult Semiotics and Popular Culture = Semiot. Pop. Cult. Semiotics and The Human Sciences = Sem Hum Sci Semiotics and The Human Sciences = Sem. Hum. Sci. Semiotics Around The World: Synthesis in Diversity, Vol 1 and 2 = Approach S Semiotics Around The World: Synthesis in Diversity, Vol 1 and 2 = Approach. S. Semiotics Communication and Cognition = Semiot Commun Cognit Semiotics Communication and Cognition = Semiot. Commun. Cognit. Semiotik, Teilband 3: Ein Handbuch Zu Den Zeichentheoretischen Grundlagen Von Natur Und Kultur = Handb Sprach Kommun Semiotik, Teilband 3: Ein Handbuch Zu Den Zeichentheoretischen Grundlagen Von Natur Und Kultur = Handb. Sprach. Kommun. Semiotik, Teilband 4: Ein Handbuch Zu Den Zeichentheoretischen Grundlagen Von Natur Und Kultur = Handb Sprach Kommun Semiotik, Teilband 4: Ein Handbuch Zu Den Zeichentheoretischen Grundlagen Von Natur Und Kultur = Handb. Sprach. Kommun. Semiparametric and Nonparametric Methods in Econometrics = Springer Ser Stat Semiparametric and Nonparametric Methods in Econometrics = Springer. Ser. Stat. Semiperipheral States in The World-economy = Contrib Econ Econ Hi Semiperipheral States in The World-economy = Contrib. Econ. Econ. Hi. Semi-presidentialism Outside Europe = Routl Res Comp Polit Semi-presidentialism Outside Europe = Routl. Res. Comp. Polit. Semi-rigid Joints in Structural Steelwork = Cism Cour L Semi-rigid Joints in Structural Steelwork = Cism. Cour. L. Semirings for Soft Constraint Solving and Programming = Lect Notes Comput Sc Semirings for Soft Constraint Solving and Programming = Lect. Notes. Comput. Sc. Semismooth Newton Methods for Variational Inequalities and Constrained Optimization Problems in Function Spaces = Mps-siam Ser Optimiz Semismooth Newton Methods for Variational Inequalities and Constrained Optimization Problems in Function Spaces = Mps-siam. Ser. Optimiz. Semi-solid Processing of Alloys and Composites = Solid State Phenomen Semi-solid Processing of Alloys and Composites = Solid. State. Phenomen. Semi-solid Processing of Alloys and Composites = Sol St Phen Semi-solid Processing of Alloys and Composites = Sol. St. Phen. Semi- Solid Processing of Alloys and Composites = Sol St Phen Semi- Solid Processing of Alloys and Composites = Sol. St. Phen. Semi-solid Processing of Alloys and Composites X = Sol St Phen Semi-solid Processing of Alloys and Composites X = Sol. St. Phen. Semi-solid Processing of Alloys = Springer Ser Mater S Semi-solid Processing of Alloys = Springer. Ser. Mater. S. Semisupervised Learning for Computational Linguistics = Ch Crc Comp Sci Data Semisupervised Learning for Computational Linguistics = Ch. Crc. Comp. Sci. Data. Semitica. Cahiers publiés par l’Institut d’études sémitiques du College de France. Avec le concours du Centre national de la recherche scientifique = Semitica Semitic Papyrology in Context = Cult Hist Anc Semitic Papyrology in Context = Cult. Hist. Anc. Senate of The Fifth French Republic = Fr Polit Soc Cult Senate of The Fifth French Republic = Fr. Polit. Soc. Cult. Senckenberg-buch = Senckenberg Buch Senckenberg-buch = Senckenberg. Buch. Senckenbergiana biologica = Senckenb Biol Senckenbergiana Biologie = Senckenbergiana Biol. Senckenbergiana Maritima -series = Senck Marit Senckenbergiana Maritima -series = Senck. Marit. Seneca Als Theologe: Studien Zum Verhaltnis Von Philosophie Und Tragodiendichtung = Beitr Altertumskunde Seneca Als Theologe: Studien Zum Verhaltnis Von Philosophie Und Tragodiendichtung = Beitr. Altertumskunde. Seneca Possessed: Indians, Witchcraft, and Power in The Early American Republic = Early Am Stud Ser Seneca Possessed: Indians, Witchcraft, and Power in The Early American Republic = Early Am. Stud. Ser. Senefiance = Senefiance Senescence-accelerated Mouse (sam): An Animal Model of Senescence = Int Congr Ser Senescence-accelerated Mouse (sam): An Animal Model of Senescence = Int. Congr. Ser. Sen-i Gakkaishi = Sen-i Gakkaishi Sen'i Gakkaishi = Sen'i Gakkaishi Senile Neurodegeneration and Neurotransmitters = Int Congr Ser Senile Neurodegeneration and Neurotransmitters = Int. Congr. Ser. Senior nurse = Sr Nurse Senior Nurse = Sr. Nurse Senior scholastic = Sr Scholast Senology = Int Congr Ser Senology = Int. Congr. Ser. Senory Circumventricular Organs of The Mammalian Brain = Adv Anat Embryol Cel Senory Circumventricular Organs of The Mammalian Brain = Adv. Anat. Embryol. Cel. Sen's Capability Approach and Institutions = Educ Compet Glob Wor Sen's Capability Approach and Institutions = Educ. Compet. Glob. Wor. Sense of Audience = Span Series Sense of Audience = Span. Series. Sense of Place = Text Stud Canada Sense of Place = Text. Stud. Canada. Sense of Touch and Its Rendering: Progress in Haptics Research: Progress in Haptics Research = Springer Trac Adv Ro Sense of Touch and Its Rendering: Progress in Haptics Research: Progress in Haptics Research = Springer. Trac. Adv. Ro. Senses & Society = Senses Soc Senses & Society = Senses Soc. Sensig '08: Proceedings of The 1st Wseas International Conference On Sensors and Signals = Rec Adv Electr Eng Sensig '08: Proceedings of The 1st Wseas International Conference On Sensors and Signals = Rec. Adv. Electr. Eng. Sensing, Actuation, and Control in Aeropropulsion = P Soc Photo-opt Ins Sensing, Actuation, and Control in Aeropropulsion = P. Soc. Photo-opt. Ins. Sensing and Controlling Motion = Ann Ny Acad Sci Sensing and Controlling Motion = Ann. Ny. Acad. Sci. Sensing and Instrumentation for Food Quality and Safety = Sens. Instrum. Food Qual. Saf. Sensing and Reconstruction of Three-dimensional Objects and Scenes = P Soc Photo-opt Ins Sensing and Reconstruction of Three-dimensional Objects and Scenes = P. Soc. Photo-opt. Ins. Sensing Cities: Regenerating Public Life in Barcelona and Manchester = Routl Stud Hum Geogr Sensing Cities: Regenerating Public Life in Barcelona and Manchester = Routl. Stud. Hum. Geogr. Sensing for Agriculture and Food Quality and Safety Iii = Proc Spie Sensing for Agriculture and Food Quality and Safety Iii = Proc. Spie. Sensing for Agriculture and Food Quality and Safety Iii = P Soc Photo-opt Ins Sensing for Agriculture and Food Quality and Safety Iii = P. Soc. Photo-opt. Ins. Sensing for Agriculture and Food Quality and Safety Ii = P Soc Photo-opt Ins Sensing for Agriculture and Food Quality and Safety Ii = P. Soc. Photo-opt. Ins. Sensing, Imaging, and Vision for Control and Guidance of Aerospace Vehicles = P Soc Photo-opt Ins Sensing, Imaging, and Vision for Control and Guidance of Aerospace Vehicles = P. Soc. Photo-opt. Ins. Sensitivity Analysis for Neural Networks = Nat Comput Ser Sensitivity Analysis for Neural Networks = Nat. Comput. Ser. Sensitivity to Change: Black Sea, Baltic Sea, and North Sea = Nato Asi 2 Sensitivity to Change: Black Sea, Baltic Sea, and North Sea = Nato. Asi. 2. Sensor Based Intelligent Robots = Lect Notes Artif Int Sensor Based Intelligent Robots = Lect. Notes. Artif. Int. Sensor Based Intelligent Robots = Lect Notes Comput Sc Sensor Based Intelligent Robots = Lect. Notes. Comput. Sc. Sensoren Und Messsysteme 2004 = Vdi Bericht Sensoren Und Messsysteme 2004 = Vdi. Bericht. Sensoren Und Messsysteme 2008 = Vdi Bericht Sensoren Und Messsysteme 2008 = Vdi. Bericht. Sensor Fusion and Aerospace Applications Ii = P Soc Photo-opt Ins Sensor Fusion and Aerospace Applications Ii = P. Soc. Photo-opt. Ins. Sensor Fusion and Aerospace Applications = P Soc Photo-opt Ins Sensor Fusion and Aerospace Applications = P. Soc. Photo-opt. Ins. Sensor Fusion and Decentralized Control in Autonomous Robotic Systems = P Soc Photo-opt Ins Sensor Fusion and Decentralized Control in Autonomous Robotic Systems = P. Soc. Photo-opt. Ins. Sensor Fusion and Decentralized Control in Robotic Systems Iii = Proc Spie Sensor Fusion and Decentralized Control in Robotic Systems Iii = Proc. Spie. Sensor Fusion and Decentralized Control in Robotic Systems Iii = P Soc Photo-opt Ins Sensor Fusion and Decentralized Control in Robotic Systems Iii = P. Soc. Photo-opt. Ins. Sensor Fusion and Decentralized Control in Robotic Systems Ii = Proc Spie Sensor Fusion and Decentralized Control in Robotic Systems Ii = Proc. Spie. Sensor Fusion and Decentralized Control in Robotic Systems Ii = P Soc Photo-opt Ins Sensor Fusion and Decentralized Control in Robotic Systems Ii = P. Soc. Photo-opt. Ins. Sensor Fusion and Decentralized Control in Robotic Systems Iv = P Soc Photo-opt Ins Sensor Fusion and Decentralized Control in Robotic Systems Iv = P. Soc. Photo-opt. Ins. Sensor Fusion and Decentralized Control in Robotic Systems = P Soc Photo-opt Ins Sensor Fusion and Decentralized Control in Robotic Systems = P. Soc. Photo-opt. Ins. Sensor Fusion and Distributed Robotic Agents = P Soc Photo-opt Ins Sensor Fusion and Distributed Robotic Agents = P. Soc. Photo-opt. Ins. Sensor Fusion and Networked Robotics Viii = P Soc Photo-opt Ins Sensor Fusion and Networked Robotics Viii = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms, and Applications Iii = Proc Spie Sensor Fusion: Architectures, Algorithms, and Applications Iii = Proc. Spie. Sensor Fusion: Architectures, Algorithms, and Applications Iii = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms, and Applications Iii = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms, and Applications Ii = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms, and Applications Ii = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms, and Applications Iv = Proc Spie Sensor Fusion: Architectures, Algorithms, and Applications Iv = Proc. Spie. Sensor Fusion: Architectures, Algorithms, and Applications Iv = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms, and Applications Iv = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms, and Applications = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms, and Applications = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms, and Applications Vi = Proc Spie Sensor Fusion: Architectures, Algorithms, and Applications Vi = Proc. Spie. Sensor Fusion: Architectures, Algorithms, and Applications Vi = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms, and Applications Vi = P. Soc. Photo-opt. Ins. Sensor Fusion: Architectures, Algorithms and Applications V = P Soc Photo-opt Ins Sensor Fusion: Architectures, Algorithms and Applications V = P. Soc. Photo-opt. Ins. Sensor Fusion Ii : Human and Machine Strategies = P Soc Photo-opt Ins Sensor Fusion Ii : Human and Machine Strategies = P. Soc. Photo-opt. Ins. Sensor Fusion Iii : 3-d Perception and Recognition = P Soc Photo-opt Ins Sensor Fusion Iii : 3-d Perception and Recognition = P. Soc. Photo-opt. Ins. Sensor Fusion Iii = P Soc Photo-opt Ins Sensor Fusion Iii = P. Soc. Photo-opt. Ins. Sensor Fusion Iv : Control Paradigms and Data Structures = P Soc Photo-opt Ins Sensor Fusion Iv : Control Paradigms and Data Structures = P. Soc. Photo-opt. Ins. Sensor Fusion Vii = P Soc Photo-opt Ins Sensor Fusion Vii = P. Soc. Photo-opt. Ins. Sensor Fusion Vi = P Soc Photo-opt Ins Sensor Fusion Vi = P. Soc. Photo-opt. Ins. Sensor Fusion V = P Soc Photo-opt Ins Sensor Fusion V = P. Soc. Photo-opt. Ins. Sensorimotor Control = Nato Sci Ser I Life Sensorimotor Control = Nato. Sci. Ser. I. Life. Sensorimotor Control of Movement and Posture = Adv Exp Med Biol Sensorimotor Control of Movement and Posture = Adv. Exp. Med. Biol. Sensorimotor Impairment in The Elderly = Nato Adv Sci Inst Se Sensorimotor Impairment in The Elderly = Nato. Adv. Sci. Inst. Se. Sensor Letters = Sens Lett Sensor Letters = Sens. Lett. Sensor Letters = Sensor Lett Sensor Letters = Sensor Lett. Sensor Networks: Where Theory Meets Practice = Signals Commun Techn Sensor Networks: Where Theory Meets Practice = Signals. Commun. Techn. Sensor Networks With Ieee 802.15.4 Systems: Distributed Processing, Mac, and Connectivity = Signals Commun Techn Sensor Networks With Ieee 802.15.4 Systems: Distributed Processing, Mac, and Connectivity = Signals. Commun. Techn. Sensor Review = Sensor Rev Sensor Review = Sensor Rev. Sensors: Advancements in Modeling, Design Issues, Fabrication and Practical Applications = Lect Notes Electr En Sensors: Advancements in Modeling, Design Issues, Fabrication and Practical Applications = Lect. Notes. Electr. En. Sensors = Ah S Sens Sensors = Ah. S. Sens. Sensors and Actuators A: Physical = Sens. Actuators, A Sensors and Actuators, A: Physical = Sens. Actuators, A Sensors and actuators. A, Physical = Sens Actuators A Phys Sensors and Actuators A-physical = Sensor Actuat A-phys Sensors and Actuators A-physical = Sensor. Actuat. A-phys. Sensors and Actuators B: Chemical = Sens. Actuators, B Sensors and Actuators, B: Chemical = Sens. Actuators, B Sensors and actuators. B, Chemical = Sens Actuators B Chem Sensors and Actuators B-chemical = Sensor Actuat B-chem Sensors and Actuators B-chemical = Sensor. Actuat. B-chem. Sensors and Actuators, B: Chemical Sensors and Materials = Sens. Actuators, B Sensors and Actuators = Sensor Actuator Sensors and Actuators = Sensor. Actuator. Sensors and Camera Systems for Scientific and Industrial Applications Vi = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific and Industrial Applications Vi = P. Soc. Photo-opt. Ins. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iii = Proc Spie Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iii = Proc. Spie. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iii = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iii = P. Soc. Photo-opt. Ins. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Ii = Proc Spie Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Ii = Proc. Spie. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Ii = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Ii = P. Soc. Photo-opt. Ins. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iv = Proc Spie Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iv = Proc. Spie. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iv = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications Iv = P. Soc. Photo-opt. Ins. Sensors and Camera Systems for Scientific, Industrial and Digital Photography Applications = Proc Spie Sensors and Camera Systems for Scientific, Industrial and Digital Photography Applications = Proc. Spie. Sensors and Camera Systems for Scientific, Industrial and Digital Photography Applications = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific, Industrial and Digital Photography Applications = P. Soc. Photo-opt. Ins. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications V = Proc Spie Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications V = Proc. Spie. Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications V = P Soc Photo-opt Ins Sensors and Camera Systems for Scientific, Industrial, and Digital Photography Applications V = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Defense and Law Enforcement = P Soc Photo-opt Ins Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Defense and Law Enforcement = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence(c31) Technologies for Homeland Security and Homeland Defense Iii, Pts 1 and 2 = Proc Spie Sensors, and Command, Control, Communications, and Intelligence(c31) Technologies for Homeland Security and Homeland Defense Iii, Pts 1 and 2 = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence(c31) Technologies for Homeland Security and Homeland Defense Iii, Pts 1 and 2 = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence(c31) Technologies for Homeland Security and Homeland Defense Iii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Iv, Pts 1 and 2 = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Iv, Pts 1 and 2 = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Iv, Pts 1 and 2 = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Vi = Proc Spie Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Vi = Proc. Spie. Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Vi = P Soc Photo-opt Ins Sensors, and Command, Control, Communications and Intelligence (c31) Technologies for Homeland Security and Homeland Defense Vi = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c31)technologies for Homeland Security and Homeland Defense V = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c31)technologies for Homeland Security and Homeland Defense V = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c31)technologies for Homeland Security and Homeland Defense V = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence (c31)technologies for Homeland Security and Homeland Defense V = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Defense and Law Enforcement Ii = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Defense and Law Enforcement Ii = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Defense and Law Enforcement Ii = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Defense and Law Enforcement Ii = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Ix = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Ix = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Ix = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Ix = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Viii = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Viii = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Vii = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Vii = Proc. Spie. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Vii = P Soc Photo-opt Ins Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense Vii = P. Soc. Photo-opt. Ins. Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense X = Proc Spie Sensors, and Command, Control, Communications, and Intelligence (c3i) Technologies for Homeland Security and Homeland Defense X = Proc. Spie. Sensors and Control for Automation = P Soc Photo-opt Ins Sensors and Control for Automation = P. Soc. Photo-opt. Ins. Sensors and Controls for Advanced Manufacturing = P Soc Photo-opt Ins Sensors and Controls for Advanced Manufacturing = P. Soc. Photo-opt. Ins. Sensors and Controls for Intelligent Machining, Agile Manufacturing, and Mechatronics = Proc Spie Sensors and Controls for Intelligent Machining, Agile Manufacturing, and Mechatronics = Proc. Spie. Sensors and Controls for Intelligent Machining, Agile Manufacturing, and Mechatronics = P Soc Photo-opt Ins Sensors and Controls for Intelligent Machining, Agile Manufacturing, and Mechatronics = P. Soc. Photo-opt. Ins. Sensors and Controls for Intelligent Machining and Manufacturing Mechatronics = Proc Spie Sensors and Controls for Intelligent Machining and Manufacturing Mechatronics = Proc. Spie. Sensors and Controls for Intelligent Machining and Manufacturing Mechatronics = P Soc Photo-opt Ins Sensors and Controls for Intelligent Machining and Manufacturing Mechatronics = P. Soc. Photo-opt. Ins. Sensors and Controls for Intelligent Manufacturing Ii = Proc Spie Sensors and Controls for Intelligent Manufacturing Ii = Proc. Spie. Sensors and Controls for Intelligent Manufacturing Ii = P Soc Photo-opt Ins Sensors and Controls for Intelligent Manufacturing Ii = P. Soc. Photo-opt. Ins. Sensors and Controls for Intelligent Manufacturing = P Soc Photo-opt Ins Sensors and Controls for Intelligent Manufacturing = P. Soc. Photo-opt. Ins. Sensors and Materials = Sensor Mater Sensors and Materials = Sensor. Mater. Sensors and Measuring Systems 2004 = Vdi Bericht Sensors and Measuring Systems 2004 = Vdi. Bericht. Sensors and Sensor Integration = P Soc Photo-opt Ins Sensors and Sensor Integration = P. Soc. Photo-opt. Ins. Sensors and Sensor Systems for Guidance and Navigation Ii = P Soc Photo-opt Ins Sensors and Sensor Systems for Guidance and Navigation Ii = P. Soc. Photo-opt. Ins. Sensors and Sensor Systems for Guidance and Navigation = P Soc Photo-opt Ins Sensors and Sensor Systems for Guidance and Navigation = P. Soc. Photo-opt. Ins. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2007, Pts 1 and 2 = Proc Spie Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2007, Pts 1 and 2 = Proc. Spie. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2007, Pts 1 and 2 = P Soc Photo-opt Ins Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2007, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2008, Pts 1 and 2 = Proc Spie Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2008, Pts 1 and 2 = Proc. Spie. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2010 = Proc Spie Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2010 = Proc. Spie. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2010 = P Soc Photo-opt Ins Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2010 = P. Soc. Photo-opt. Ins. Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2011 = Proc Spie Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems 2011 = Proc. Spie. Sensors and Systems for Space Applications Iii = Proc Spie Sensors and Systems for Space Applications Iii = Proc. Spie. Sensors and Systems for Space Applications Ii = Proc Spie Sensors and Systems for Space Applications Ii = Proc. Spie. Sensors and Systems for Space Applications Ii = P Soc Photo-opt Ins Sensors and Systems for Space Applications Ii = P. Soc. Photo-opt. Ins. Sensors and Systems for Space Applications Iv = Proc Spie Sensors and Systems for Space Applications Iv = Proc. Spie. Sensors and Systems for Space Applications = Proc Spie Sensors and Systems for Space Applications = Proc. Spie. Sensors and Systems for Space Applications = P Soc Photo-opt Ins Sensors and Systems for Space Applications = P. Soc. Photo-opt. Ins. Sensors and Their Applications Viii = Sensors Ser Sensors and Their Applications Viii = Sensors Ser. Sensors and Their Applications Vii = Sensors Ser Sensors and Their Applications Vii = Sensors Ser. Sensors, Automatic Measurement, Control, and Computer Simulation, Pts 1 and 2 = Proc Spie Sensors, Automatic Measurement, Control, and Computer Simulation, Pts 1 and 2 = Proc. Spie. Sensors, Automatic Measurement, Control, and Computer Simulation, Pts 1 and 2 = P Soc Photo-opt Ins Sensors, Automatic Measurement, Control, and Computer Simulation, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Sensors, C31, Information, and Training Technologies for Law Enforcement = P Soc Photo-opt Ins Sensors, C31, Information, and Training Technologies for Law Enforcement = P. Soc. Photo-opt. Ins. Sensors, Cameras, and Applications for Digital Photography = P Soc Photo-opt Ins Sensors, Cameras, and Applications for Digital Photography = P. Soc. Photo-opt. Ins. Sensors, Cameras, and Systems for Industrial, Scientific, and Consumer Applications Xii = Proc Spie Sensors, Cameras, and Systems for Industrial, Scientific, and Consumer Applications Xii = Proc. Spie. Sensors, Cameras, and Systems for Industrial/scientific Applications Ix = Proc Spie Sensors, Cameras, and Systems for Industrial/scientific Applications Ix = Proc. Spie. Sensors, Cameras, and Systems for Industrial/scientific Applications Xi = Proc Spie Sensors, Cameras, and Systems for Industrial/scientific Applications Xi = Proc. Spie. Sensors, Cameras, and Systems for Scientific/industrial Applications = P Soc Photo-opt Ins Sensors, Cameras, and Systems for Scientific/industrial Applications = P. Soc. Photo-opt. Ins. Sensors, Cameras, and Systems for Scientific/industrial Applications Viii = Proc Spie Sensors, Cameras, and Systems for Scientific/industrial Applications Viii = Proc. Spie. Sensors, Cameras, and Systems for Scientific/industrial Applications Viii = P Soc Photo-opt Ins Sensors, Cameras, and Systems for Scientific/industrial Applications Viii = P. Soc. Photo-opt. Ins. Sensors, Cameras, and Systems for Scientific/industrial Applications Vii = Proc Spie Sensors, Cameras, and Systems for Scientific/industrial Applications Vii = Proc. Spie. Sensors, Cameras, and Systems for Scientific/industrial Applications Vii = P Soc Photo-opt Ins Sensors, Cameras, and Systems for Scientific/industrial Applications Vii = P. Soc. Photo-opt. Ins. Sensors for Environment, Health and Security: Advanced Materials and Technologies = Nato Sci Peace Sec C Sensors for Environment, Health and Security: Advanced Materials and Technologies = Nato. Sci. Peace. Sec. C. Sensors for Environment, Health and Security: Advanced Materials and Technologies = Nato Sci Peace Secur Sensors for Environment, Health and Security: Advanced Materials and Technologies = Nato. Sci. Peace. Secur. Sensors for Harsh Environments Iii = P Soc Photo-opt Ins Sensors for Harsh Environments Iii = P. Soc. Photo-opt. Ins. Sensors for Harsh Environments = P Soc Photo-opt Ins Sensors for Harsh Environments = P. Soc. Photo-opt. Ins. Sensors for Propulsion Measurement Applications = P Soc Photo-opt Ins Sensors for Propulsion Measurement Applications = P. Soc. Photo-opt. Ins. Sensors = Sensors Sensors = Sensors-basel Sensors = Sensors-basel. Sensors, Sensor Systems, and Sensor Data Processing = P Soc Photo-opt Ins Sensors, Sensor Systems, and Sensor Data Processing = P. Soc. Photo-opt. Ins. Sensors Series = Sensors Ser Sensors Series = Sensors Ser. Sensors, Systems, and Next-generation Satellites Iii = Proc Spie Sensors, Systems, and Next-generation Satellites Iii = Proc. Spie. Sensors, Systems, and Next-generation Satellites Iii = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Iii = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites Ii = Proc Spie Sensors, Systems, and Next-generation Satellites Ii = Proc. Spie. Sensors, Systems, and Next-generation Satellites Ii = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Ii = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites Iv = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Iv = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites Viii = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Viii = P. Soc. Photo-opt. Ins. Sensors, Systems and Next-generation Satellites Vii = Proc Spie Sensors, Systems and Next-generation Satellites Vii = Proc. Spie. Sensors, Systems and Next-generation Satellites Vii = P Soc Photo-opt Ins Sensors, Systems and Next-generation Satellites Vii = P. Soc. Photo-opt. Ins. Sensors, Systems and Next-generation Satellites Vi = Proc Spie Sensors, Systems and Next-generation Satellites Vi = Proc. Spie. Sensors, Systems and Next-generation Satellites Vi = P Soc Photo-opt Ins Sensors, Systems and Next-generation Satellites Vi = P. Soc. Photo-opt. Ins. Sensors, Systems and Next-generation Satellites V = Proc Spie Sensors, Systems and Next-generation Satellites V = Proc. Spie. Sensors, Systems and Next-generation Satellites V = P Soc Photo-opt Ins Sensors, Systems and Next-generation Satellites V = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites Xi = Proc Spie Sensors, Systems, and Next-generation Satellites Xi = Proc. Spie. Sensors, Systems, and Next-generation Satellites Xi = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Xi = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites Xiv = Proc Spie Sensors, Systems, and Next-generation Satellites Xiv = Proc. Spie. Sensors, Systems, and Next-generation Satellites Xiv = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites Xiv = P. Soc. Photo-opt. Ins. Sensors, Systems, and Next-generation Satellites X = Proc Spie Sensors, Systems, and Next-generation Satellites X = Proc. Spie. Sensors, Systems, and Next-generation Satellites X = P Soc Photo-opt Ins Sensors, Systems, and Next-generation Satellites X = P. Soc. Photo-opt. Ins. Sensors & Their Applications Xiii = J Phys Conf Ser Sensors & Their Applications Xiii = J. Phys. Conf. Ser. Sensors & Their Applications Xv = J Phys Conf Ser Sensors & Their Applications Xv = J. Phys. Conf. Ser. Sensors Vi: Technology, Systems, and Applications = Sensors Ser Sensors Vi: Technology, Systems, and Applications = Sensors Ser. Sensor Systems and Networks: Phenomena, Technology, and Applications for Nde and Health Monitoring 2007 = Proc Spie Sensor Systems and Networks: Phenomena, Technology, and Applications for Nde and Health Monitoring 2007 = Proc. Spie. Sensor Systems and Networks: Phenomena, Technology, and Applications for Nde and Health Monitoring 2007 = P Soc Photo-opt Ins Sensor Systems and Networks: Phenomena, Technology, and Applications for Nde and Health Monitoring 2007 = P. Soc. Photo-opt. Ins. Sensor Systems for The Early Earth Observing System Platforms = P Soc Photo-opt Ins Sensor Systems for The Early Earth Observing System Platforms = P. Soc. Photo-opt. Ins. Sensor Technology for Soldier Systems = P Soc Photo-opt Ins Sensor Technology for Soldier Systems = P. Soc. Photo-opt. Ins. Sensor Technology in The Netherlands: State of The Art = Mesa Mg Sensor Technology in The Netherlands: State of The Art = Mesa. Mg. Sensory Aanalysis for Food and Beverage Quality Control: A Practical Guide = Woodhead Publ Food S Sensory Aanalysis for Food and Beverage Quality Control: A Practical Guide = Woodhead. Publ. Food S. Sensory Abilities of Cetaceans = Nato Adv Sci I A-lif Sensory Abilities of Cetaceans = Nato. Adv. Sci. I. A-lif. Sensory and Metabolic Control of Energy Balance = Results Probl Cell D Sensory and Metabolic Control of Energy Balance = Results. Probl. Cell. D. Sensory Circumventricular Organs of The Mammalian Brain = Adv Anat Embryol Cel Sensory Circumventricular Organs of The Mammalian Brain = Adv. Anat. Embryol. Cel. Sensory Guidance of Movement = Novart Fdn Symp Sensory Guidance of Movement = Novart. Fdn. Symp. Sensory-motor Organizations and Development in Infancy and Early Childhood = Nato Adv Sci I D-beh Sensory-motor Organizations and Development in Infancy and Early Childhood = Nato. Adv. Sci. I. D-beh. Sensory Nerves and Neuropeptides in Gastroenterology = Adv Exp Med Biol Sensory Nerves and Neuropeptides in Gastroenterology = Adv. Exp. Med. Biol. Sensory Processes = Sens Process Sensory Processes = Sens. Process. Sensory processes = Sens Processes Sensory Processes = Sens. Processes Sensory Science Theory and Applications in Foods = Ift Bas Sym Sensory Science Theory and Applications in Foods = Ift. Bas. Sym. Sensory Systems and Communication in Arthropods = Adv Lif Sci Sensory Systems and Communication in Arthropods = Adv. Lif. Sci. Sensory systems = Sens Syst Sensory Transduction / = Nato Adv Sci I A-lif Sensory Transduction / = Nato. Adv. Sci. I. A-lif. Sensory Transduction = Soc Gen Phy Sensory Transduction = Soc. Gen. Phy. Sensus - Sensatio = Less Intell Sensus - Sensatio = Less. Intell. Sentinel event alert / Joint Commission on Accreditation of Healthcare Organizations = Sentinel Event Alert Seoul Journal of Economics=Seoul J. Econ. Seoul Journal of Korean Studies = Seoul J Korean Stud Seoul Journal of Korean Studies = Seoul J. Korean Stud. Sepads 08: Proceedings of The 7th Wseas International Conference On Software Engineering, Parallel and Distributed Systems = Ele Com Eng Sepads 08: Proceedings of The 7th Wseas International Conference On Software Engineering, Parallel and Distributed Systems = Ele. Com. Eng. Sepads'09: Proceedings of The 8th Wseas International Conference On Recent Advances in Software Engineering, Parallel and Distributed Systems = Ele Com Eng Sepads'09: Proceedings of The 8th Wseas International Conference On Recent Advances in Software Engineering, Parallel and Distributed Systems = Ele. Com. Eng. Sepads'10: Proceedings of The 9th Wseas International Conference On Software Engineering, Parallel and Distributed Systems = Ele Com Eng Sepads'10: Proceedings of The 9th Wseas International Conference On Software Engineering, Parallel and Distributed Systems = Ele. Com. Eng. Separation and Purification By Crystallization = Acs Sym Ser Separation and Purification By Crystallization = Acs. Sym. Ser. Separation and Purification Methods = Separ Purif Method Separation and Purification Methods = Separ. Purif. Method. Separation and Purification Methods = Sep. Purif. Methods Separation and Purification Reviews = Sep Purif Rev Separation and Purification Reviews = Sep. Purif. Rev. Separation and Purification Technology = Sep Purif Technol Separation and Purification Technology = Sep. Purif. Technol. Separation, Extraction and Concentration Processes in The Food, Beverage and Nutraceutical Industries = Woodhead Publ Food S Separation, Extraction and Concentration Processes in The Food, Beverage and Nutraceutical Industries = Woodhead. Publ. Food. S. Separation of Gases = Roy Soc Ch Separation of Gases = Roy. Soc. Ch. Separation Science and Technology = Separ Sci Technol Separation Science and Technology = Separ. Sci. Technol. Separation Science and Technology = Sep Sci Technol Separation Science and Technology = Sep. Sci. Technol. Separation Science = Separ Sci Separation Science = Separ. Sci. Separations for The Nuclear Fuel Cycle in The 21st Century = Acs Sym Ser Separations for The Nuclear Fuel Cycle in The 21st Century = Acs. Sym. Ser. Separations Technology = Separ Technol Separations Technology = Separ. Technol. Separations Technology = Sep. Technol. Sepm Core Workshop = Sepm Core W Sepm Core Workshop = Sepm Core W. Sepm Core Workshop = Sepm Core Workshop Sepm Short Course Notes = Sepm Short Sepm Special Publication = Sepm Spec P Sepm Special Publication = Sepm Spec. P. Sepsis = Compet-base Crit Car Sepsis = Compet-base. Crit. Car. Sepsis, Kidney and Multiple Organ Dysfunction = Contrib Nephrol Sepsis, Kidney and Multiple Organ Dysfunction = Contrib. Nephrol. Sepsis - Pro-inflammatory and Anti-inflammatory Responses: Good, Bad Or Ugly? = Contrib Microbiol Sepsis - Pro-inflammatory and Anti-inflammatory Responses: Good, Bad Or Ugly? = Contrib. Microbiol. Sepsis: Symptoms, Diagnosis and Treatment = Public Health 21st C Sepsis: Symptoms, Diagnosis and Treatment = Public. Health. 21st. C. Septuagint and Messianism = Bib Eph The Septuagint and Messianism = Bib. Eph. The. Septuagint, Scrolls and Cognate Writings = Sbl Sept Co Septuagint, Scrolls and Cognate Writings = Sbl. Sept. Co. Se Pu Chinese Journal of Chromatography (Ta-Lien Shih=Se Pu;; Sepu = Sepu Sequences and Their Applications, Proceedings = Discrete Math & Theo Sequences and Their Applications, Proceedings = Discrete. Math. &. Theo. Sequences and Their Applications - Seta 2004 = Lect Notes Comput Sc Sequences and Their Applications - Seta 2004 = Lect. Notes. Comput. Sc. Sequences and Their Applications - Seta 2006 = Lect Notes Comput Sc Sequences and Their Applications - Seta 2006 = Lect. Notes. Comput. Sc. Sequences and Their Applications - Seta 2008 = Lect Notes Comput Sc Sequences and Their Applications - Seta 2008 = Lect. Notes. Comput. Sc. Sequences and Their Applications-seta 2010 = Lect Notes Comput Sc Sequences and Their Applications-seta 2010 = Lect. Notes. Comput. Sc. Sequence-specific Dna Binding Agents = Rsc Biomol Sci Sequence-specific Dna Binding Agents = Rsc. Biomol. Sci. Sequences, Subsequences, and Consequences = Lect Notes Comput Sc Sequences, Subsequences, and Consequences = Lect. Notes. Comput. Sc. Sequence Stratigraphy - Concepts and Applications = Npf Sp Publ Sequence Stratigraphy - Concepts and Applications = Npf. Sp. Publ. Sequence Stratigraphy On The Northwest European Margin = Npf Sp Publ Sequence Stratigraphy On The Northwest European Margin = Npf. Sp. Publ. Sequential Analysis = Sequential Anal. Sequential Approximate Multiobjective Optimization Using Computational Intelligence = Vector Optim Sequential Approximate Multiobjective Optimization Using Computational Intelligence = Vector. Optim. Serbian Academy of Science and Arts, Department of Language and Literature = Serb Ac Sci Art Lang Serbian Academy of Science and Arts, Department of Language and Literature = Serb. Ac. Sci. Art. Lang. Serbian Academy of Sciences and Arts Academic Conferences = Serb Ac A C Serbian Academy of Sciences and Arts Academic Conferences = Serb. Ac. A. C. Serbian Academy of Sciences and Arts Bulletin = Serb Ac B Serbian Academy of Sciences and Arts Bulletin = Serb. Ac. B. Serbian Academy of Sciences and Arts Commemorative Volumes = Ser Ac Comm Serbian Academy of Sciences and Arts Commemorative Volumes = Ser. Ac. Comm. Serbian Academy of Sciences and Arts Department of Chemical and Biological Sciences Monographs = Sasa Dept Chem Biol Serbian Academy of Sciences and Arts Department of Chemical and Biological Sciences Monographs = Sasa. Dept. Chem. Biol. Serbian Academy of Sciences and Arts Department of Fine Arts and Music Academic Conferences = Sasa Dept Fine Arts Serbian Academy of Sciences and Arts Department of Fine Arts and Music Academic Conferences = Sasa. Dept. Fine Arts Serbian Academy of Sciences and Arts Department of Fine Arts and Music Monographs = Sasa Dept F Arts Mon Serbian Academy of Sciences and Arts Department of Fine Arts and Music Monographs = Sasa. Dept. F. Arts Mon. Serbian Academy of Sciences and Arts Department of Historical Sciences Scientific Meetings = Sasa Dept Hist Sci Serbian Academy of Sciences and Arts Department of Historical Sciences Scientific Meetings = Sasa. Dept. Hist. Sci. Serbian Academy of Sciences and Arts, Department of Mathematics, Physics and Geo-sciences = Sasa Dep Math Phys G Serbian Academy of Sciences and Arts, Department of Mathematics, Physics and Geo-sciences = Sasa. Dep. Math. Phys. G. Serbian Academy of Sciences and Arts, Department of Social Sciences : Demographic Studies = Ser Asa Dem Serbian Academy of Sciences and Arts, Department of Social Sciences : Demographic Studies = Ser. Asa. Dem. Serbian Academy of Sciences and Arts Department of Social Sciences Scientific Conferences = Sasa Dep Soc Sci Sci Serbian Academy of Sciences and Arts Department of Social Sciences Scientific Conferences = Sasa. Dep. Soc. Sci. Sci. Serbian Academy of Sciences and Arts, Department of Social Sciences = Serb Acd Sc Serbian Academy of Sciences and Arts, Department of Social Sciences = Serb. Acd. Sc. Serbian Academy of Sciences and Arts: Dept of Historical Sciences = Serb Hist Sci Serbian Academy of Sciences and Arts: Dept of Historical Sciences = Serb. Hist. Sci. Serbian Academy of Sciences and Arts Monographs = Serb Ac Mon Serbian Academy of Sciences and Arts Monographs = Serb. Ac. Mon. Serbian Academy of Sciences and Arts Monographs = Srpska Akad Nauk Serbian Academy of Sciences and Arts Monographs = Srpska. Akad. Nauk. Serbian Academy of Sciences and Arts Scientific Conference = Serb Ac Sci Serbian Academy of Sciences and Arts Scientific Conference = Serb. Ac. Sci. Serbian Academy of Sciences and Arts Symposia = Serb Ac Sym Serbian Academy of Sciences and Arts Symposia = Serb. Ac. Sym. Serbs and The Albanians in The 20th Century = Serb Ac A C Serbs and The Albanians in The 20th Century = Serb. Ac. A. C. Serdica = Serdica Math. J. Serdp Estcp Remediation Technology = Serdp Estcp Remediat Serdp Estcp Remediation Technology = Serdp Estcp Remediat. Seria filologia rosyjska / Uniwersytet im. Adama Michiewicza w Poznaniu, Wydzial Filologiczny = Ser Filol Ros Seria Fizyka (Uniwersytet im. Adama Mickiewicza w Poznaniu) = Ser. Fiz. (Uniw. im. Adama Mickiewicza Poznaniu) Serials Librarian = Serials Libr Serials Librarian = Serials Libr. Serials Review = Serials Rev Serials Review = Serials Rev. Serial Violence: Analysis of Modus Operandi and Signature Characteristics of Killers = Crc Ser Pract Asp Cr Serial Violence: Analysis of Modus Operandi and Signature Characteristics of Killers = Crc. Ser. Pract. Asp. Cr. Serie Hommes Et Societe = Ser Hom Soc Serie Hommes Et Societe = Ser. Hom. Soc. Serie Livros Do Museu Nacional = Mus Nac Ser Livros Serie Livros Do Museu Nacional = Mus. Nac. Ser. Livros Serie Livros Do Museu Nacional = Ser Livros Mus Nac Serie Livros Do Museu Nacional = Ser. Livros Mus. Nac. Serie Nova Terra = Ser Nova Terra Serie Nova Terra = Ser. Nova Terra Serie sciences de l'homme = Cah Am Lat Ser Sci Homme Serie Scientifica = Ser. Sci. Series De La Decouverte Freudienne = S Decouv Fr Series De La Decouverte Freudienne = S. Decouv. Fr. Series Entomologica = Series Entom Series Entomologica = Series Entom. Series haematologica = Ser Haematol Series Haematologica = Ser. Haematol. Series in Affective Science = Ser Affective Sci Series in Affective Science = Ser. Affective Sci. Series in Algebra = Ser. Algebra Series in Analysis = Ser Analysis Series in Analysis = Ser. Analysis Series in Anxiety and Related Disorders = Ser Anxiety Relat Di Series in Anxiety and Related Disorders = Ser. Anxiety Relat. Di. Series in Applied Psychology = S Appl Psyc Series in Applied Psychology = S. Appl. Psyc. Series in Applied Psychology = Ser Appl Psychol Series in Applied Psychology = Ser. Appl. Psychol. Series in Applied Psychology : Social Issues and Questions = S Ap Psyc S Series in Applied Psychology : Social Issues and Questions = S. Ap. Psyc. S. Series in Approximations and Decompositions = Ser. Approx. Decompos. Series in Biomedical Engineering = Ser Biomed Eng Series in Biomedical Engineering = Ser. Biomed. Eng. Series in Clinical and Community Psychology = Ser Clin C Series in Clinical and Community Psychology = Ser. Clin. C. Series in Computational and Physical Processes in Mechanics and Thermal Sciences = S Comp Phys Series in Computational and Physical Processes in Mechanics and Thermal Sciences = S. Comp. Phys. Series in Computational and Physical Processes in Mechanics and Thermal Sciences = Ser. Comput. Phys. Process. Mech. Thermal Sci. Series in Computer and Network Security = Ser Comput Netw Secu Series in Computer and Network Security = Ser. Comput. Netw. Secu. Series in Death Dying and Bereavement = Ser Death Dying Series in Death Dying and Bereavement = Ser. Death Dying Series in Death Education, Aging, and Health Care = Ser Death E Series in Death Education, Aging, and Health Care = Ser. Death E. Series in Health Care for Women = S Hlth C W Series in Health Care for Women = S. Hlth. C. W. Series in Health Psychology and Behavioral Medicine = S Hlth Psyc Series in Health Psychology and Behavioral Medicine = S. Hlth. Psyc. Series in High Energy Physics Cosmology and Gravitation = Ser Hi Energy Phys Series in High Energy Physics Cosmology and Gravitation = Ser. Hi. Energy Phys. Series in High Energy Physics Cosmology and Gravitation = Ser High Energy Phys Series in High Energy Physics Cosmology and Gravitation = Ser. High Energy Phys. Series in Intelligent Control and Intelligent Automation = Ser. Intell. Control Intell. Autom. Series in Machine Perception and Artificial Intelligence = Ser Mach Percept Art Series in Machine Perception and Artificial Intelligence = Ser. Mach. Percept. Art. Series in Machine Perception and Artificial Intelligence = S Mach Perc Series in Machine Perception and Artificial Intelligence = S. Mach. Perc. Series in Materials Science and Engineering = Ser Mater Sci Eng Series in Materials Science and Engineering = Ser. Mater. Sci. Eng. Series in Materials Science and Engineering = Ser Mat Sci Engn Series in Materials Science and Engineering = Ser. Mat. Sci. Engn. Series in Mathematical Analysis and Applications = Ser. Math. Anal. Appl. Series in Mathematical Biology and Medicine = Ser. Math. Biol. Med. Series in Medical Physics and Biomedical Engineering = Ser Med Phys Biomed Series in Medical Physics and Biomedical Engineering = Ser. Med. Phys. Biomed. Series in Metallurgy and Materials Science = Ser Metall Mater Sci Series in Metallurgy and Materials Science = Ser. Metall. Mater. Sci. Series in Number Theory = Ser. Number Theory Series in Number Theory = Ser Num Theory Series in Number Theory = Ser. Num. Theory Series in Optics and Optoelectronics = Ser Opt Optoelectron Series in Optics and Optoelectronics = Ser. Opt. Optoelectron. Series in Optics and Photonics = S Opt Phot Series in Optics and Photonics = S. Opt. Phot. Series in Organization and Management = Ser Organ Manage Series in Organization and Management = Ser. Organ. Manage. Series in Plasma Physics = Ser Plasma Phys Series in Plasma Physics = Ser. Plasma Phys. Series in Pure Mathematics = Ser. Pure Math. Series in Quality Reliability and Engineering Statistics = Ser Qual Reliab Eng Series in Quality Reliability and Engineering Statistics = Ser. Qual. Reliab. Eng. Series in Radiology = Ser Radiol Series in Radiology = Ser. Radiol. Series in Remote Sensing = Ser Remote Sens Series in Remote Sensing = Ser. Remote Sens. Series in Representation and Reasoning = S Repr Reas Series in Representation and Reasoning = S. Repr. Reas. Series in Sensors = Ser Sensors Series in Sensors = Ser. Sensors Series-journal of The Spanish Economic Association = Series-j Span Econ Series-journal of The Spanish Economic Association = Series-j. Span. Econ. Series of Information and Management Sciences = Ser Inf Manage Sci Series of Information and Management Sciences = Ser. Inf. Manage. Sci. Series of Monographs On Materials Science, Engineering and Technology = Ser Mono Mat Sci Eng Series of Monographs On Materials Science, Engineering and Technology = Ser. Mono. Mat. Sci. Eng. Series of Operations and Supply Chain Management in China = Ser Oper Supp Ch Man Series of Operations and Supply Chain Management in China = Ser. Oper. Supp. Ch. Man. Series of The Centro De Estudios Cientificos De Santiago = Ser Cent Es Series of The Centro De Estudios Cientificos De Santiago = Ser. Cent. Es. Series of The European Academy of Rehabilitation Medicine = Ser Eur Acad Rehabil Series of The European Academy of Rehabilitation Medicine = Ser. Eur. Acad. Rehabil. Series On Advances in Bioinformatics and Computational Biology = Ser Adv Bioinform Series On Advances in Bioinformatics and Computational Biology = Ser. Adv. Bioinform. Series On Advances in Mathematics for Applied Sciences = S Adv Math Series On Advances in Mathematics for Applied Sciences = S. Adv. Math. Series On Advances in Mathematics for Applied Sciences = Ser Adv Math Appl Sc Series On Advances in Mathematics for Applied Sciences = Ser. Adv. Math. Appl. Sc. Series on Advances in Mathematics for Applied Sciences = Ser. Adv. Math. Appl. Sci. Series On Advances in Quantum Many-body Theory = Ser Adv Quant Many B Series On Advances in Quantum Many-body Theory = Ser. Adv. Quant. Many. B. Series on Advances in Statistical Mechanics = Ser. Adv. Statist. Mech. Series On Advances in Statistical Mechanics = Ser Adv Stat Mech Series On Advances in Statistical Mechanics = Ser. Adv. Stat. Mech. Series On Applied Mathematics = Ser Appl M Series On Applied Mathematics = Ser. Appl. M. Series on Applied Mathematics = Ser. Appl. Math. Series On Bioengineering and Biomedical Engineering = Ser Bioeng Biomed En Series On Bioengineering and Biomedical Engineering = Ser. Bioeng. Biomed. En. Series On Biophysics and Biocybernetics = Ser Biophys Biocyber Series On Biophysics and Biocybernetics = Ser. Biophys. Biocyber. Series On Coding Theory and Cryptology = Ser Coding Th Crypto Series On Coding Theory and Cryptology = Ser. Coding Th. Crypto. Series On Coding Theory and Cryptology = Ser Coding Theory Cr Series On Coding Theory and Cryptology = Ser. Coding Theory Cr. Series On Computers and Operations Research = Ser Computers Oper R Series On Computers and Operations Research = Ser. Computers Oper. R. Series On Concrete and Applicable Mathematics = Ser Con Appl Math Series On Concrete and Applicable Mathematics = Ser. Con. Appl. Math. Series On Contemporary China = Ser Contemp China Series On Contemporary China = Ser. Contemp. China Series On Innovation and Knowledge Management = Ser Innovat Knowl Ma Series On Innovation and Knowledge Management = Ser. Innovat. Knowl. Ma. Series On Integrated Circuits and Systems = Ser Integr Circuits Series On Integrated Circuits and Systems = Ser. Integr. Circuits Series On Knots and Everything = Ser Knots Series On Knots and Everything = Ser. Knots Series on Knots and Everything = Ser. Knots Everything Series On Knots and Everything = Ser Knots Everything Series On Knots and Everything = Ser. Knots Everything Series On Law and Psychology = Ser Law Psy Series On Law and Psychology = Ser. Law Psy. Series On Mathematical Economics and Game Theory = Ser Math Econ Game T Series On Mathematical Economics and Game Theory = Ser. Math. Econ. Game T. Series On Multivariate Analysis = Ser Multivar Anal Series On Multivariate Analysis = Ser. Multivar. Anal. Series on Multivariate Analysis = Ser. Multivariate Anal. Series On Neural Networks = S Neur Netw Series On Neural Networks = S. Neur. Netw. Series On Neutron Techniques and Applications = Ser Neutron Tech App Series On Neutron Techniques and Applications = Ser. Neutron Tech. App. Series on New Frontiers in Advanced Mathematics of the Istituto per la Ricerca di Base = Ser. New Front. Adv. Math. Ist. Ric. Base Series On Number Theory and Its Applications = Ser Numb Theory Appl Series On Number Theory and Its Applications = Ser. Numb. Theory Appl. Series on nursing administration = Ser Nurs Adm Series on Nursing Administration = Ser. Nurs. Adm. Series on Optimization = Ser. Optim. Series On Probability and Statistics = S Prob Stat Series On Probability and Statistics = S. Prob. Stat. Series On Prospering in A Global Economy = S Pros Gl E Series On Prospering in A Global Economy = S. Pros. Gl. E. Series On Quality, Reliability and Engineering Statistics = Ser Qual Rel Eng Sta Series On Quality, Reliability and Engineering Statistics = Ser. Qual. Rel. Eng. Sta. Series On School Reform = Ser Sch Reform Series On School Reform = Ser. Sch. Reform Series On Semiconductor Science and Technology = S Semi Sci Series On Semiconductor Science and Technology = S. Semi. Sci. Series On Software Engineering and Knowledge Engineering = Ser Softw Engn Knowl Series On Software Engineering and Knowledge Engineering = Ser. Softw. Engn. Knowl. Series on Soviet and East European Mathematics = Ser. Soviet East European Math. Series on Stability, Vibration and Control of Structures = Ser. Stab. Vib. Control Struct. Series On Stability, Vibration and Control of Systems: Series B-conference Proceedings and Special Theme Issues = Ser Sta Vib Co Sy :b Series On Stability, Vibration and Control of Systems: Series B-conference Proceedings and Special Theme Issues = Ser. Sta. Vib. Co. Sy. :b. Series on Stability, Vibration and Control of Systems = Ser. Stab. Vib. Control Syst. Ser. B Series On Teleostean Fish Biology = Ser Teleost Fish Bio Series On Teleostean Fish Biology = Ser. Teleost. Fish Bio. Series on the Foundations of Natural Science and Technology = Ser. Found. Nat. Sci. Tech. Series on University Mathematics = Ser. Univ. Math. Series on Work and Organization = Ser. Work Organ. Series paedopsychiatrica = Ser Paedopsychiatr Series Paedopsychiatrica = Ser. Paedopsychiatr. Serie-uitgave Van De Stichting Historia Medicinae = S St Hist M Serie-uitgave Van De Stichting Historia Medicinae = S. St. Hist. M. Serine Proteases and Their Serpin Inhibitors in The Nervous System = Nato Adv Sci I A-lif Serine Proteases and Their Serpin Inhibitors in The Nervous System = Nato. Adv. Sci. I. A-lif. Serious Fun With Flexagons: A Compendium and Guide = Solid Mech Appl Serious Fun With Flexagons: A Compendium and Guide = Solid. Mech. Appl. Serious Violent Offenders: Sentencing, Psychiatry and Law Reform = Aic Conf P Serious Violent Offenders: Sentencing, Psychiatry and Law Reform = Aic. Conf. P. Serodiagnosis and Immunotherapy in Infectious Disease = Serodiag Immun Inf D Serodiagnosis and Immunotherapy in Infectious Disease = Serodiag. Immun. Inf. D. Serono Colloquia Europe Series = Serono Coll Eur Ser Serono Colloquia Europe Series = Serono Coll. Eur. Ser. Serono Symposia Publications From Raven Press = Serono Sym Serono Symposia Publications From Raven Press = Serono Sym. Serono Symposia Publications from Raven Press = Serono Symp. Publ. Raven Press Serono Symposia Series : Advances in Experimental Medicine = Ser Symp Ad Serono Symposia Series : Advances in Experimental Medicine = Ser. Symp. Ad. Serono Symposia, Usa = Serono Symp Serono Symposia, Usa = Serono Symp. Serosal Membranes (pleura, Pericardium, Peritoneum) = Adv Anat Embryol Cel Serosal Membranes (pleura, Pericardium, Peritoneum) = Adv. Anat. Embryol. Cel. Serotonin and 5-ht2 Receptor Blockade in The Cardiovascular System = Pr Pharm Cl Serotonin and 5-ht2 Receptor Blockade in The Cardiovascular System = Pr. Pharm. Cl. Serotonin and Pain = Int Congr Ser Serotonin and Pain = Int. Congr. Ser. Serotonin, Cns Receptors and Brain Function = Adv Biosci Serotonin, Cns Receptors and Brain Function = Adv. Biosci. Serotonin-dopamine Interaction: Experimental Evidence and Therapeutic Relevance = Prog Brain Res Serotonin-dopamine Interaction: Experimental Evidence and Therapeutic Relevance = Prog. Brain. Res. Serotonin in The Central Nervous System and Periphery = Int Congr Ser Serotonin in The Central Nervous System and Periphery = Int. Congr. Ser. Serotonin = Med Sci Symp Ser Serotonin = Med. Sci. Symp. Ser. Serotonin Receptors in Neurobiology = Front Neurosci Serotonin Receptors in Neurobiology = Front. Neurosci. Serotonin Receptor Subtypes : Pharmacological Significance and Clinical Implications = Int Acad B Serotonin Receptor Subtypes : Pharmacological Significance and Clinical Implications = Int. Acad. B. Serotonin-related Psychiatric Syndromes : Clinical and Therapeutic Links = Roy Soc Med Int Cong Serotonin-related Psychiatric Syndromes : Clinical and Therapeutic Links = Roy. Soc. Med. Int. Cong. Serpins and Protein Kinase Inhibitors: Novel Functions, Structural Features and Molecular Mechanisms = Protein Biochem Synt Serpins and Protein Kinase Inhibitors: Novel Functions, Structural Features and Molecular Mechanisms = Protein Biochem. Synt. Serum/plasma Proteomics: Methods and Protocols = Methods Mol Biol Serum/plasma Proteomics: Methods and Protocols = Methods Mol. Biol. Server-side Gps and Assisted-gps in Java = Artech Hse Gnss Tech Server-side Gps and Assisted-gps in Java = Artech. Hse. Gnss. Tech. Service Assurance With Partial and Intermittent Resources, Proceedings = Lect Notes Comput Sc Service Assurance With Partial and Intermittent Resources, Proceedings = Lect. Notes. Comput. Sc. Service Availability = Lect Notes Comput Sc Service Availability = Lect. Notes. Comput. Sc. Service Availability, Proceedings = Lect Notes Comput Sc Service Availability, Proceedings = Lect. Notes. Comput. Sc. Service Business = Serv Bus Service Business = Serv. Bus. Service de la recherche terres et forêts, Québec = Serv. rech. terres for., Qué. Service Design and Delivery = Serv Sci Res Innov S Service Design and Delivery = Serv. Sci. Res. Innov. S. Service Enterprise Integration: An Enterprise Engineering Perspective = Integr Ser Inform Sy Service Enterprise Integration: An Enterprise Engineering Perspective = Integr. Ser. Inform. Sy. Service Excellence : Marketings Impact On Performance = Amer Mar As Service Excellence : Marketings Impact On Performance = Amer. Mar. As. Service Industries Journal = Serv Ind J Service Industries Journal = Serv. Ind. J. Service Life Estimation and Extension of Civil Engineering Structures = Woodhead Publ Mater Service Life Estimation and Extension of Civil Engineering Structures = Woodhead. Publ. Mater. Service Opportunities for Electric Utilities: Creating Differentiated Products = T Reg Econ Service Opportunities for Electric Utilities: Creating Differentiated Products = T. Reg. Econ. Service-oriented Computing: Agents, Semantics, and Engineering, Proceedings = Lect Notes Comput Sc Service-oriented Computing: Agents, Semantics, and Engineering, Proceedings = Lect. Notes. Comput. Sc. Service-oriented Computing = Coop Inform Syst Service-oriented Computing = Coop. Inform. Syst. Service-oriented Computing: Csoc 2006, Proceedings = Lect Notes Comput Sc Service-oriented Computing: Csoc 2006, Proceedings = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2003 = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2003 = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2005 = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2005 = Lect. Notes. Comput. Sc. Service Oriented Computing - Icsoc 2006 = Lect Notes Comput Sc Service Oriented Computing - Icsoc 2006 = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2007, Proceedings = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2007, Proceedings = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2007 Workshops = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2007 Workshops = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2008, Proceedings = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2008, Proceedings = Lect. Notes. Comput. Sc. Service-oriented Computing - Icsoc 2008 Workshops = Lect Notes Comput Sc Service-oriented Computing - Icsoc 2008 Workshops = Lect. Notes. Comput. Sc. Service-oriented Computing: Icsoc/service Wave 2009 Workshops = Lect Notes Comput Sc Service-oriented Computing: Icsoc/service Wave 2009 Workshops = Lect. Notes. Comput. Sc. Service-oriented Computing = Lect Notes Comput Sc Service-oriented Computing = Lect. Notes. Comput. Sc. Service-oriented Computing, Proceedings = Lect Notes Comput Sc Service-oriented Computing, Proceedings = Lect. Notes. Comput. Sc. Service Quality = Iss Org Man Service Quality = Iss. Org. Man. Service Quality Regulation in Electricity Distribution and Retail = Power Syst Service Quality Regulation in Electricity Distribution and Retail = Power. Syst. Service Research Challenges and Solutions for The Future Internet: S-cube-towards Engineering, Managing and Adapting Service-based Systems = Lect Notes Comput Sc Service Research Challenges and Solutions for The Future Internet: S-cube-towards Engineering, Managing and Adapting Service-based Systems = Lect. Notes. Comput. Sc. Service Robotics Within The Digital Home: Applications and Future Prospects = Intel Syst Contr Aut Service Robotics Within The Digital Home: Applications and Future Prospects = Intel. Syst. Contr. Aut. Services and Visualization = Lect Notes Comput Sc Services and Visualization = Lect. Notes. Comput. Sc. Service Science, Management and Engineering Education for The 21st Century = Serv Sci Res Innov S Service Science, Management and Engineering Education for The 21st Century = Serv. Sci. Res. Innov. S. Service Science-research and Innovations in The Service Economy = Serv Sci Res Innov S Service Science-research and Innovations in The Service Economy = Serv. Sci. Res. Innov. S. Services Liberalisation in The Internal Market = Sch Ost Ges Europa Services Liberalisation in The Internal Market = Sch. Ost. Ges. Europa. Services Management in Intelligent Networks, Proceedings = Lect Notes Comput Sc Services Management in Intelligent Networks, Proceedings = Lect. Notes. Comput. Sc. Services Offshoring and Its Impact On The Labor Market = Contrib Econ Services Offshoring and Its Impact On The Labor Market = Contrib. Econ. Services of General Interest in The Eu: Reconciling Competition and Social Responsibility = Curr Europe Iss Services of General Interest in The Eu: Reconciling Competition and Social Responsibility = Curr. Europe. Iss. Service Systems Implementation = Serv Sci Res Innov S Service Systems Implementation = Serv. Sci. Res. Innov. S. Serving With The Poor in Africa = Cas Hol Min Serving With The Poor in Africa = Cas. Hol. Min. Servir (Lisbon, Portugal) = Servir Servir = Servir Servizio migranti = Serv Migr Servo Motors and Industrial Control Theory = Mech Eng Ser Servo Motors and Industrial Control Theory = Mech. Eng. Ser. Session laws. Guam = Sess Laws Guam Session laws of Hawaii passed by the State Legislature. Hawaii = Sess Laws Hawaii Passed State Legis Hawaii Session laws of Kansas : passed during the ... regular session of the ... Legislature of the State of Kansas. Kansas = Sess Laws Kans Kans Session laws of the State of Minnesota. Minnesota = Sess Laws State Minn Minn Sessualita = Sessualita Sessuologia = Sessuologia Setac General Publications Series = Setac Gen P Setac General Publications Series = Setac Gen. P. Setac Special Publications Series = Setac Sp P Setac Special Publications Series = Setac Sp. P. Setac Technical Publications Series = Setac Tech Publicat Setac Technical Publications Series = Setac Tech. Publicat. S e TA e NU; Rivista di Scienza e Tecnologia Degli Alimenti e di Nutrizione Umana = S TA NU Set-aside = Br Crop Pr Set-aside = Br. Crop. Pr. Seton Hall law review = Seton Hall Law Rev Seton Hall legislative journal = Seton Hall Legis J Sets, Graphs and Numbers = Colloq Math Sets, Graphs and Numbers = Colloq. Math. Set-theoretic Methods in Control = Syst Control-found A Set-theoretic Methods in Control = Syst. Control-found. A. Set Theory and Its Applications = Contemp Math Set Theory and Its Applications = Contemp. Math. Set Theory and Its Applications = Lect Notes Math Set Theory and Its Applications = Lect. Notes. Math. Settimana medica = Settim Med Setting Research Priorities = Dev Orient Res Agr Setting Research Priorities = Dev. Orient. Res. Agr. Settlement and Occupation of Land in Europe During The Bronze Age = Docum Prehist Settlement and Occupation of Land in Europe During The Bronze Age = Docum. Prehist. Settler and Creole Reenactment = Reenactment Hist Settler and Creole Reenactment = Reenactment Hist. Setúbal arqueológica = SetubalA Set-valued Analysis = Set-valued Anal Set-valued Analysis = Set-valued Anal. Set-Valued Analysis = Set-Valued Anal. Set-valued and Variational Analysis = Set-valued Var Anal Set-valued and Variational Analysis = Set-valued Var. Anal. Set-valued Mappings and Enlargements of Monotone Operators = Springer Ser Optim A Set-valued Mappings and Enlargements of Monotone Operators = Springer. Ser. Optim. A. Seuh 95 - Software Engineering and Higher Education = Ber Ger Acm Seuh 95 - Software Engineering and Higher Education = Ber. Ger. Acm. Seven days = Seven Days Seventeen Provers of The World = Lect Notes Artif Int Seventeen Provers of The World = Lect. Notes. Artif. Int. Seventeenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2001 = P Ieee Semicond Ther Seventeenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2001 = P. Ieee Semicond. Ther. Seventeenth Annual International Computer Software & Applications Conference = P Int Comp Softw App Seventeenth Annual International Computer Software & Applications Conference = P. Int. Comp. Softw. App. Seventeenth-century French Studies = Seventeen-cent Fr St Seventeenth-century French Studies = Seventeen-cent. Fr. St. Seventeenth-century News = Seventeen-cent News Seventeenth-century News = Seventeen-cent. News Seventeenth Century = Seventeenth Cent Seventeenth Century = Seventeenth Cent. Seventeenth Ieee International Workshop On Rapid System Prototyping = P Ieee Rap Syst Prot Seventeenth Ieee International Workshop On Rapid System Prototyping = P. Ieee Rap. Syst. Prot. Seventeenth Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst Seventeenth Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. Seventeenth International Conference On Database and Expert Systems Applications, Proceedings = Int Workshop Databas Seventeenth International Conference On Database and Expert Systems Applications, Proceedings = Int. Workshop. Databas. Seventeenth Nastran Users Colloquium = Nasa Conf P Seventeenth Nastran Users Colloquium = Nasa. Conf. P. Seventeenth Texas Symposium On Relativistic Astrophysics and Cosmology = Ann Ny Acad Sci Seventeenth Texas Symposium On Relativistic Astrophysics and Cosmology = Ann. Ny. Acad. Sci. Seventh Annual Ieee International Conference On Wafer Scale Integration, 1995 Proceedings = Int Conf Wafer Scale Seventh Annual Ieee International Conference On Wafer Scale Integration, 1995 Proceedings = Int. Conf. Wafer Scale Seventh Ausimm Underground Operators' Conference = Australas I Min Met Seventh Ausimm Underground Operators' Conference = Australas. I. Min. Met. Seventh European Congress On Fluid Machinery for The Oil, Petrochemical, and Related Industries = Imeche Conf Trans Seventh European Congress On Fluid Machinery for The Oil, Petrochemical, and Related Industries = Imeche. Conf. Trans. Seventh Great Lakes Symposium On Vlsi, Proceedings = Pr Gr Lak Symp Vlsi Seventh Great Lakes Symposium On Vlsi, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Seventh Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Seventh Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Seventh Ieee International Workshop On Rapid System Prototyping, Proceedings = P Ieee Rap Syst Prot Seventh Ieee International Workshop On Rapid System Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. Seventh Iee European Conference On Mobile and Personal Communications = Iee Conf Publ Seventh Iee European Conference On Mobile and Personal Communications = Iee Conf. Publ. Seventh International Conference On Ac-dc Power Tranmission = Iee Conf Publ Seventh International Conference On Ac-dc Power Tranmission = Iee. Conf. Publ. Seventh International Conference On Antennas and Propagation, Pts 1 and 2 = Iee Conf Publ Seventh International Conference On Antennas and Propagation, Pts 1 and 2 = Iee. Conf. Publ. Seventh International Conference On Application of Concurrency to System Design, Proceedings = Int Conf Appl Concur Seventh International Conference On Application of Concurrency to System Design, Proceedings = Int. Conf. Appl. Concur. Seventh International Conference On Correlation Optics = Proc Spie Seventh International Conference On Correlation Optics = Proc. Spie. Seventh International Conference On Correlation Optics = P Soc Photo-opt Ins Seventh International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. Seventh International Conference On Developments in Power System Protection = Iee Conf Publ Seventh International Conference On Developments in Power System Protection = Iee. Conf. Publ. Seventh International Conference On Dissociative Recombination: Theory, Experiments and Applications (dr2007) = J Phys Conf Ser Seventh International Conference On Dissociative Recombination: Theory, Experiments and Applications (dr2007) = J. Phys. Conf. Ser. Seventh International Conference On Education and Training in Optics and Photonics = Proc Spie Seventh International Conference On Education and Training in Optics and Photonics = Proc. Spie. Seventh International Conference On Education and Training in Optics and Photonics = P Soc Photo-opt Ins Seventh International Conference On Education and Training in Optics and Photonics = P. Soc. Photo-opt. Ins. Seventh International Conference On Electromagnetic Compatibility = Iee Conf Publ Seventh International Conference On Electromagnetic Compatibility = Iee. Conf. Publ. Seventh International Conference On Electronic Engineering in Oceanography - Technology Transfer From Research to Industry = Iee Conf Publ Seventh International Conference On Electronic Engineering in Oceanography - Technology Transfer From Research to Industry = Iee. Conf. Publ. Seventh International Conference On Grey Literature, Gl7 Conference Proceedings = Gl Conference Ser Seventh International Conference On Grey Literature, Gl7 Conference Proceedings = Gl. Conference Ser. Seventh International Conference On Hf Radio Systems and Techniques = Iee Conf Publ Seventh International Conference On Hf Radio Systems and Techniques = Iee. Conf. Publ. Seventh International Conference On Image Processing and Its Applications = Iee Conf Publ Seventh International Conference On Image Processing and Its Applications = Iee. Conf. Publ. Seventh International Conference On Information Visualization, Proceedings = Ieee Infor Vis Seventh International Conference On Information Visualization, Proceedings = Ieee. Infor. Vis. Seventh International Conference On Laser and Laser-information Technologies = Proc Spie Seventh International Conference On Laser and Laser-information Technologies = Proc. Spie. Seventh International Conference On Laser and Laser-information Technologies = P Soc Photo-opt Ins Seventh International Conference On Laser and Laser-information Technologies = P. Soc. Photo-opt. Ins. Seventh International Conference On Low-volume Roads 1999, Vol 1 = Transport Res Rec Seventh International Conference On Low-volume Roads 1999, Vol 1 = Transport. Res. Rec. Seventh International Conference On Low-volume Roads 1999, Vol 2 = Transport Res Rec Seventh International Conference On Low-volume Roads 1999, Vol 2 = Transport. Res. Rec. Seventh International Conference On Metering Apparatus and Tariffs for Electricity Supply = Iee Conf Publ Seventh International Conference On Metering Apparatus and Tariffs for Electricity Supply = Iee. Conf. Publ. Seventh International Conference On New Phenomena in Mesoscopic Structures and Fifth International Conference On Surfaces and Interfaces of Mesoscopic Devices, 2005 = J Phys Conf Ser Seventh International Conference On New Phenomena in Mesoscopic Structures and Fifth International Conference On Surfaces and Interfaces of Mesoscopic Devices, 2005 = J. Phys. Conf. Ser. Seventh International Conference On Power Electronics and Variable Speed Drives = Iee Conf Publ Seventh International Conference On Power Electronics and Variable Speed Drives = Iee. Conf. Publ. Seventh International Conference On Road Traffic Monitoring and Control = Iee Conf Publ Seventh International Conference On Road Traffic Monitoring and Control = Iee. Conf. Publ. Seventh International Conference On Solid State Lighting = Proc Spie Seventh International Conference On Solid State Lighting = Proc. Spie. Seventh International Conference On Solid State Lighting = P Soc Photo-opt Ins Seventh International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Seventh International Conference On Thin Film Physics and Applications = Proc Spie Seventh International Conference On Thin Film Physics and Applications = Proc. Spie. Seventh International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Seventh International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Seventh International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc Spie Seventh International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc. Spie. Seventh International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Seventh International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Seventh International Conference On Vibrations in Rotating Machinery = Imeche Conf Trans Seventh International Conference On Vibrations in Rotating Machinery = Imeche. Conf. Trans. Seventh International Symposium On Agricultural and Food Processing Wastes (isafpw95) = Asae Publ Seventh International Symposium On Agricultural and Food Processing Wastes (isafpw95) = Asae. Publ. Seventh International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr Int Symp Adv Res Seventh International Symposium On Asynchronous Circuits and Systems, Proceedings = Pr. Int. Symp. Adv. Res. Seventh International Symposium On Atmospheric and Ocean Optics = Proc Spie Seventh International Symposium On Atmospheric and Ocean Optics = Proc. Spie. Seventh International Symposium On Atmospheric and Ocean Optics = P Soc Photo-opt Ins Seventh International Symposium On Atmospheric and Ocean Optics = P. Soc. Photo-opt. Ins. Seventh International Symposium On Instrumentation and Control Technology: Optoelectronic Technology and Instuments, Control Theory and Automation, and Space Exploration = Proc Spie Seventh International Symposium On Instrumentation and Control Technology: Optoelectronic Technology and Instuments, Control Theory and Automation, and Space Exploration = Proc. Spie. Seventh International Symposium On Instrumentation and Control Technology: Optoelectronic Technology and Instuments, Control Theory and Automation, and Space Exploration = P Soc Photo-opt Ins Seventh International Symposium On Instrumentation and Control Technology: Optoelectronic Technology and Instuments, Control Theory and Automation, and Space Exploration = P. Soc. Photo-opt. Ins. Seventh International Symposium On Instrumentation and Control Technology: Sensors and Instruments, Computer Simulation, and Artificial Intelligence = P Soc Photo-opt Ins Seventh International Symposium On Instrumentation and Control Technology: Sensors and Instruments, Computer Simulation, and Artificial Intelligence = P. Soc. Photo-opt. Ins. Seventh International Symposium On Laser Metrology Applied to Science, Industry, and Everyday Life, Pts 1 and 2 = Proc Spie Seventh International Symposium On Laser Metrology Applied to Science, Industry, and Everyday Life, Pts 1 and 2 = Proc. Spie. Seventh International Symposium On Laser Metrology Applied to Science, Industry, and Everyday Life, Pts 1 and 2 = P Soc Photo-opt Ins Seventh International Symposium On Laser Metrology Applied to Science, Industry, and Everyday Life, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Seventh International Symposium On Pollination - Pollination: From Theory to Practise = Acta Hortic Seventh International Symposium On Pollination - Pollination: From Theory to Practise = Acta. Hortic. Seventh International Workshop On Information Optics = J Phys Conf Ser Seventh International Workshop On Information Optics = J. Phys. Conf. Ser. Seventh International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Seventh International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Seventh International Workshop On Program Comprehension, Proceedings = Prog Comprehen Seventh International Workshop On Program Comprehension, Proceedings = Prog. Comprehen. Seventh Iutam Symposium On Laminar-turbulent Transition = Iutam Bookser Seventh Iutam Symposium On Laminar-turbulent Transition = Iutam Bookser. Seventh Mill Operators' Conference, Proceedings = Australas I Min Met Seventh Mill Operators' Conference, Proceedings = Australas. I. Min. Met. Seventh Pacific Rim Conference On Stellar Astrophysics = Astr Soc P Seventh Pacific Rim Conference On Stellar Astrophysics = Astr. Soc. P. Seventh Scandinavian Conference On Artificial Intelligence = Fr Art Int Seventh Scandinavian Conference On Artificial Intelligence = Fr. Art. Int. Seventh Scandinavian Conference On Artificial Intelligence = Front Artif Intel Ap Seventh Scandinavian Conference On Artificial Intelligence = Front. Artif. Intel. Ap. Seventh Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P Soc Photo-opt Ins Seventh Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P. Soc. Photo-opt. Ins. Seventy-five Years of Hirayama Asteroid Families: The Role of Collisions in The Solar System History = Astr Soc P Seventy-five Years of Hirayama Asteroid Families: The Role of Collisions in The Solar System History = Astr. Soc. P. Several Worlds of Pearl S. Buck = Contrib Women S Stud Several Worlds of Pearl S. Buck = Contrib. Women. S. Stud. Severe Slugging in Offshore Production Systems = Petrol Sci Tech Ser Severe Slugging in Offshore Production Systems = Petrol. Sci. Tech. Ser. Sewage and industrial wastes = Sewage Ind Waste Sewage and Industrial Wastes = Sewage Ind Wastes Sewage and Industrial Wastes = Sewage Ind. Wastes Sewage Sludge: Land Utilization and The Environment = Sssa Misc Publicat Sewage Sludge: Land Utilization and The Environment = Sssa. Misc. Publicat. Sewage Treatment: Uses, Processes and Impact = Waste Waste Manag Sewage Treatment: Uses, Processes and Impact = Waste. Waste. Manag. Sewage works journal = Sewage Work J Sewage Works Journal = Sewage Works J Sewage Works Journal = Sewage Works J. Sewanee Review = Sewanee Rev Sewanee Review = Sewanee Rev. Sex Allocation = Monogr Popul Biol Sex Allocation = Monogr. Popul. Biol. Sex and Sexuality in China = Rout Stud China Tran Sex and Sexuality in China = Rout. Stud. China Tran. Sex Chromosome Abnormalities and Human Behavior = Aaas Select Sex Chromosome Abnormalities and Human Behavior = Aaas. Select. Sex Chromosomes: Genetics, Abnormalities and Disorders = Gen-res Issues Sex Chromosomes: Genetics, Abnormalities and Disorders = Gen-res. Issues. Sex Determination and Sexual Development = Curr Top Dev Biol Sex Determination and Sexual Development = Curr. Top. Dev. Biol. Sex Differences in The Human Brain, Their Underpinnings and Implications = Prog Brain Res Sex Differences in The Human Brain, Their Underpinnings and Implications = Prog. Brain. Res. Sexed Sentiments: Interdisciplinary Perspectives On Gender and Emotion = Crit Stud Sexed Sentiments: Interdisciplinary Perspectives On Gender and Emotion = Crit. Stud. Sex Hormones and Antihormones in Endocrine Dependent Pathology: Basic and Clinical Aspects = Int Congr Ser Sex Hormones and Antihormones in Endocrine Dependent Pathology: Basic and Clinical Aspects = Int. Congr. Ser. Sex Industry and Public Policy = Aic Conf P Sex Industry and Public Policy = Aic. Conf. P. Sexing The Soldier = Transformations-lond Sexing The Soldier = Transformations-lond. Sex Lives of Saints : An Erotics of Ancient Hagiography = Divin Reread Late An Sex Lives of Saints : An Erotics of Ancient Hagiography = Divin. Reread. Late. An Sex, Love and Feminism in The Asia Pacific: A Cross-cultural Study of Young People's Attitudes = Asian Stud Assoc Aus Sex, Love and Feminism in The Asia Pacific: A Cross-cultural Study of Young People's Attitudes = Asian. Stud. Assoc. Aus. Sex Markets: A Denied Industry = Routl Iaffe Adv Fem Sex Markets: A Denied Industry = Routl. Iaffe. Adv. Fem. Sex Matters = Int Congr Ser Sex Matters = Int. Congr. Ser. Sexology / = Int Congr Ser Sexology / = Int. Congr. Ser. Sex, Race, and Family in Contemporary American Short Stories = Am Lit Read Twenty-f Sex, Race, and Family in Contemporary American Short Stories = Am. Lit. Read. Twenty-f. Sex roles = Sex Roles Sex Roles = Sex Roles Sexual abuse : a journal of research and treatment = Sex Abuse Sexual Abuse-a Journal of Research and Treatment = Sex Abuse-j Res Tr Sexual Abuse-a Journal of Research and Treatment = Sex. Abuse-j. Res. Tr. Sexual Abuse = Sex. Abuse Sexual and marital therapy : journal of the Association of Sexual and Marital Therapists = Sex Marital Ther Sexual and Relationship Therapy = Sex Relatsh Ther Sexual and Relationship Therapy = Sex. Relatsh. Ther. Sexual Development = Sex Dev Sexual Development = Sex. Dev. Sexual Dimorphism of The Bed Nucleus of The Stria Terminalis and The Amygdala = Adv Anat Embryol Cel Sexual Dimorphism of The Bed Nucleus of The Stria Terminalis and The Amygdala = Adv. Anat. Embryol. Cel. Sexual Dysfunction: The Brain-body Connection = Adv Psychosom Med Sexual Dysfunction: The Brain-body Connection = Adv. Psychosom. Med. Sexual Equality in An Integrated Europe: Virtual Equality = Eur Transit-nyu Eur Sexual Equality in An Integrated Europe: Virtual Equality = Eur. Transit-nyu. Eur. Sexual Function in The Prostate Cancer Patient = Curr Clin Urol Sexual Function in The Prostate Cancer Patient = Curr. Clin. Urol. Sexual Harassment Around The Globe = Soc Iss Justice Stat Sexual Harassment Around The Globe = Soc. Iss. Justice. Stat. Sexual health exchange = Sex Health Exch Sexual health = Sex Health Sexual Health = Sex Health Sexual Health = Sex. Health Sexualidade e planeamento familiar = Sex Planeam Fam Sexualities = Sexualities Sexualities, Work and Organizations = Routl Stud Employ Wo Sexualities, Work and Organizations = Routl. Stud. Employ. Wo. Sexuality and disability = Sex Disabil Sexuality and Disability = Sex Disabil Sexuality and Disability = Sex. Disabil. Sexuality and Human Bonding = Int Congr Ser Sexuality and Human Bonding = Int. Congr. Ser. Sexuality and Its Queer Discontents in Middle English Literature = New Middle Ages Sexuality and Its Queer Discontents in Middle English Literature = New. Middle Ages. Sexuality Culture and Health = Sex Cult Health Sexuality Culture and Health = Sex. Cult. Health Sexuality Education and Attitudes = Educ Compet Glob Wor Sexuality Education and Attitudes = Educ. Compet. Glob. Wor. Sexuality Education = Educ Compet Glob Wor Sexuality Education = Educ. Compet. Glob. Wor. Sexuality, Gender and Power: Intersectional and Transnational Perspectives = Rout Adv Fem Stud Sexuality, Gender and Power: Intersectional and Transnational Perspectives = Rout. Adv. Fem. Stud. Sexuality, Health and Human Rights = Sex Cult Health Sexuality, Health and Human Rights = Sex. Cult. Health Sexuality in The Middle Ages and Early Modern Times = Fund Mediev Early Mo Sexuality in The Middle Ages and Early Modern Times = Fund. Mediev. Early Mo. Sexuality = Key Ideas Sexuality = Key. Ideas. Sexuality Research and Social Policy = Sex Res Soc Policy Sexuality Research and Social Policy = Sex. Res. Soc. Policy Sexuality & Space = Prin P Arch Sexuality & Space = Prin. P. Arch. Sexual Justice / Cultural Justice: Critical Perspectives in Political Theory and Practice = Rout Innov Poli Theo Sexual Justice / Cultural Justice: Critical Perspectives in Political Theory and Practice = Rout. Innov. Poli. Theo. Sexually Coercive Behavior: Understanding and Management = Ann Ny Acad Sci Sexually Coercive Behavior: Understanding and Management = Ann. Ny. Acad. Sci. Sexually Transmitted Diseases: A Practical Guide for Primary Care = Curr Clin Pract Sexually Transmitted Diseases: A Practical Guide for Primary Care = Curr. Clin. Pract. Sexually transmitted diseases = Sex Transm Dis Sexually Transmitted Diseases=Sex Transm Dis;; Sexually Transmitted Diseases = Sex Transm Dis Sexually Transmitted Diseases = Sex. Transm. Dis. Sexually transmitted infections = Sex Transm Infect Sexually Transmitted Infections=Sex Transm Infect;; Sexually Transmitted Infections = Sex Transm Infect Sexually Transmitted Infections = Sex. Transm. Infect. Sexual medicine today = Sex Med Today Sexual Nature, Sexual Culture = Chic Sex Hist Soc Sexual Nature, Sexual Culture = Chic. Sex. Hist. Soc. Sexual Orientation Discrimination: An International Perspective = Routl Iaffe Adv Fem Sexual Orientation Discrimination: An International Perspective = Routl. Iaffe. Adv. Fem. Sexual plant reproduction = Sex Plant Reprod Sexual Plant Reproduction = Sex Plant Reprod Sexual Plant Reproduction = Sex. Plant Reprod. Sexual Violence and The Law in Japan = Asian Stud Assoc Aus Sexual Violence and The Law in Japan = Asian. Stud. Assoc. Aus. Sexual Violence in Conflict Zones: From The Ancient World to The Era of Human Rights = Pa Stud Hum Rights Sexual Violence in Conflict Zones: From The Ancient World to The Era of Human Rights = Pa. Stud. Hum. Rights Sex weekly plus = Sex Wkly Plus Seybold Outlook On Professional Computing = Andrew Seybold Out P Seybold Outlook On Professional Computing = Andrew. Seybold Out. P. Seybold Report On Professional Computing = Andrew Seybold Out P Seybold Report On Professional Computing = Andrew. Seybold Out. P. Sezession Und Demokratie-eine Philosophische Untersuchung = Ideen Argumente Sezession Und Demokratie-eine Philosophische Untersuchung = Ideen. Argumente. Sgte Casebook: Thermodynamics At Work , Second Edition = Woodhead Publ Mater Sgte Casebook: Thermodynamics At Work , Second Edition = Woodhead. Publ. Mater. SGU-Bulletin = SGU-Bull. Shaanxi Normal University = J. Shaanxi Normal Univ. Nat. Sci. Ed. Shades of Blue and Gray Series = Shades Blue Gray Ser Shades of Blue and Gray Series = Shades Blue Gray Ser. Shades of Grey: 1960s Lisbon in Novel, Film and Photobook = Mod Humanit Res Asso Shades of Grey: 1960s Lisbon in Novel, Film and Photobook = Mod. Humanit. Res. Asso. Shadowing in Dynamical Systems = Lect Notes Math Shadowing in Dynamical Systems = Lect. Notes. Math. Shadows of The Prophet: Martial Arts and Sufi Mysticism = Muslims Glob Soc Ser Shadows of The Prophet: Martial Arts and Sufi Mysticism = Muslims. Glob. Soc. Ser. Shaftesbury Papers = Shaftesb Paper Shaftesbury Papers = Shaftesb. Paper. Shakai keizai shigaku / Shakai Keizai Shigakkai = Shakai Keizai Shigaku Shakespeare and Character: Theory, History, Performance and Theatrical Persons = Palgrave Shakespear Shakespeare and Character: Theory, History, Performance and Theatrical Persons = Palgrave. Shakespear. Shakespeare and Philosophy = Routl Stud Shakespea Shakespeare and Philosophy = Routl. Stud. Shakespea. Shakespeare and Religious Change = Early Mod Lit Hist Shakespeare and Religious Change = Early. Mod. Lit. Hist. Shakespeare and The Cultural Colonization of Ireland = Lit Crit Cult Theory Shakespeare and The Cultural Colonization of Ireland = Lit. Crit. Cult. Theory. Shakespeare and The Economic Imperative: What's Aught But As Tis Valued? = Stud Major Lit Autho Shakespeare and The Economic Imperative: What's Aught But As Tis Valued? = Stud. Major. Lit. Autho. Shakespeare and The Institution of Theatre: 'the Best in This Kind' = Palgrave Shakespear Shakespeare and The Institution of Theatre: 'the Best in This Kind' = Palgrave. Shakespear. Shakespearean International Yearbook 4: Shakespeare Studies Today = Shakespear Int Yearb Shakespearean International Yearbook 4: Shakespeare Studies Today = Shakespear. Int. Yearb. Shakespearean International Yearbook 5: Special Section, Shakespeare and The Bonds of Service = Shakespear Int Yearb Shakespearean International Yearbook 5: Special Section, Shakespeare and The Bonds of Service = Shakespear. Int. Yearb. Shakespearean International Yearbook 6: Special Section, Shakespeare and Montaigne Revisited = Shakespear Int Yearb Shakespearean International Yearbook 6: Special Section, Shakespeare and Montaigne Revisited = Shakespear. Int. Yearb. Shakespearean International Yearbook = Shakespear Int Yearb Shakespearean International Yearbook = Shakespear. Int. Yearb. Shakespeare Criticism = Shakespear Crit Shakespeare Criticism = Shakespear. Crit. Shakespeare in Children's Literature: Gender and Cultural Capital = Child Lit Cult Shakespeare in Children's Literature: Gender and Cultural Capital = Child. Lit. Cult. Shakespeare in Hollywood, Asia, and Cyberspace = Comp Cult Stud Shakespeare in Hollywood, Asia, and Cyberspace = Comp. Cult. Stud. Shakespeare in The Victorian Periodicals = Stud Major Lit Autho Shakespeare in The Victorian Periodicals = Stud. Major. Lit. Autho. Shakespeare Quarterly = Shakespeare Quart Shakespeare Quarterly = Shakespeare Quart. Shakespeare's Entrails: Beliefs, Scepticism and Interior of The Body = Palgrave Shakespear Shakespeare's Entrails: Beliefs, Scepticism and Interior of The Body = Palgrave. Shakespear. Shakespeare = Shakespeare Shakespeare's Hybrid Faith: History, Religion and The Stage = Early Mod Lit Hist Shakespeare's Hybrid Faith: History, Religion and The Stage = Early. Mod. Lit. Hist. Shakespeare, Spenser and The Matter of Britain = Early Mod Lit Hist Shakespeare, Spenser and The Matter of Britain = Early. Mod. Lit. Hist. Shakespeare studies = Shakespeare Stud Shakespeare Survey 46 = Shakespeare Surv Shakespeare Survey 46 = Shakespeare Surv. Shakespeare Survey, 48 = Shakespeare Surv Shakespeare Survey, 48 = Shakespeare Surv. Shakespeare Survey 49 = Shakespeare Surv Shakespeare Survey 49 = Shakespeare Surv. Shakespeare Survey - An Annual Survey of Shakespeare Studies and Production, Vol 47 = Shakespeare Surv Shakespeare Survey - An Annual Survey of Shakespeare Studies and Production, Vol 47 = Shakespeare Surv. Shakespeare Survey = Shakespeare Surv Shakespeare Survey = Shakespeare Surv. Shakespeare's World of Learning = Renaiss Monogr Shakespeare's World of Learning = Renaiss. Monogr. Shakeup in Systematics = Cour For Sekenbg Shakeup in Systematics = Cour. For. Sekenbg. Shallow Impurities in Semiconductors 1988 = Inst Phys Conf Ser Shallow Impurities in Semiconductors 1988 = Inst. Phys. Conf. Ser. Shallow Impurities in Semiconductors = Mater Sci Forum Shallow Impurities in Semiconductors = Mater. Sci. Forum. Shallow Impurities in Semiconductors / = Mater Sci Forum Shallow Impurities in Semiconductors / = Mater. Sci. Forum. Shallow-water Acoustics = Aip Conf Proc Shallow-water Acoustics = Aip. Conf. Proc. Shamanism in Performing Arts = Bibl Shaman Shamanism in Performing Arts = Bibl. Shaman. Shamanism, Racism, and Hip Hop Culture: Essays On White Supremacy and Black Subversion = Black Relig Woman Th Shamanism, Racism, and Hip Hop Culture: Essays On White Supremacy and Black Subversion = Black Relig. Woman. Th. Shame and The Sorrow: Dutch-amerindian Encounters in New Netherland = Early Am Stud Ser Shame and The Sorrow: Dutch-amerindian Encounters in New Netherland = Early. Am. Stud. Ser. Shampoos - Scientific Basis and Clinical Aspects = Roy Soc Med Int Cong Shampoos - Scientific Basis and Clinical Aspects = Roy. Soc. Med. Int. Cong. Shandong Da Xue xue bao. Li xue ban = Journal of Shandong University. Natural science|Shandong Da Xue Xue Bao Shandong Daxue Xuebao = Shandong Daxue Xuebao Ziran Kexue Ban Shandong Kuangye Xueyuan Xuebao = Shandong Kuangye Xueyuan Xuebao [Shandong yi kan] [Shantung medical publication] = Shandong Yi Kan Shanghai Huanjing Kexue = Shanghai Huanjing Kexue Shanghai Institute of Railway Technology = J. Shanghai Inst. Railway Tech. Shanghai Pudong: Urban Development in An Era of Global-local Interaction = Sustain Urban Areas Shanghai Pudong: Urban Development in An Era of Global-local Interaction = Sustain. Urban Areas. Shanghai Shifan Daxue Xuebao = Shanghai Shifan Daxue Xuebao Ziran Kexue Ban Shanghai yixue jianyan zazhi = Shanghai journal of medical laboratory sciences|Shanghai Yixue Jianyan Zazhi Shape Analysis and Structuring = Math Vis Shape Analysis and Structuring = Math. Vis. Shape and Form in Plants and Fungi = Linnean Soc Shape and Form in Plants and Fungi = Linnean. Soc. Shape As Memory: A Geometric Theory of Architecture = Inform Tech Revol Ar Shape As Memory: A Geometric Theory of Architecture = Inform. Tech. Revol. Ar. Shape Classification and Analysis: Theory and Practice, Second Edition = Image Process Ser Shape Classification and Analysis: Theory and Practice, Second Edition = Image. Process. Ser. Shape, Contour and Grouping in Computer Vision = Lect Notes Comput Sc Shape, Contour and Grouping in Computer Vision = Lect. Notes. Comput. Sc. Shaped Crystals: Growth By Micro-pulling-down Technique = Adv Mater Res-ger Shaped Crystals: Growth By Micro-pulling-down Technique = Adv. Mater. Res-ger. Shape Memory Alloys for Biomedical Applications = Woodhead Publ Mater Shape Memory Alloys for Biomedical Applications = Woodhead. Publ. Mater. Shape Memory Alloys: Manufacture, Properties and Applications = Mater Sci Technol Shape Memory Alloys: Manufacture, Properties and Applications = Mater. Sci. Technol. Shape Memory Materials and Its Applications = Mater Sci Forum Shape Memory Materials and Its Applications = Mater. Sci. Forum. Shape-memory Materials and Phenomena - Fundamental Aspects and Applications = Mater Res Soc Symp P Shape-memory Materials and Phenomena - Fundamental Aspects and Applications = Mater. Res. Soc. Symp. P. Shape Memory Materials = Mater Sci Forum Shape Memory Materials = Mater. Sci. Forum. Shape-memory Polymers = Adv Polym Sci Shape-memory Polymers = Adv. Polym. Sci. Shape Memory Polymers and Textiles = Woodhead Publ Ser Te Shape Memory Polymers and Textiles = Woodhead. Publ. Ser. Te. Shape of The Fantastic = Contr Sci F Shape of The Fantastic = Contr. Sci. F. Shape Optimization and Free Boundaries = Nato Adv Sci I C-mat Shape Optimization and Free Boundaries = Nato. Adv. Sci. I. C-mat. Shape Optimization and Optimal Design = Lect Notes Pure Appl Shape Optimization and Optimal Design = Lect. Notes. Pure. Appl. Shapes and Diffeomorphisms = Appl Math Sci Shapes and Diffeomorphisms = Appl. Math. Sci. Shapes and Geometries: Metrics, Analysis, Differential Calculus, and Optimization, Second Edition = Adv Des Control Shapes and Geometries: Metrics, Analysis, Differential Calculus, and Optimization, Second Edition = Adv. Des. Control. Shapes of Hadrons = Aip Conf Proc Shapes of Hadrons = Aip. Conf. Proc. Shape Understanding System: The First Steps Toward The Visual Thinking Machines = Stud Comput Intell Shape Understanding System: The First Steps Toward The Visual Thinking Machines = Stud. Comput. Intell. Shaping A New Economic Relationship = Hoover Inst Shaping A New Economic Relationship = Hoover. Inst. Shaping Inquiry Culture Communication and Media Studies = Shap Inq Cult Commun Shaping Inquiry Culture Communication and Media Studies = Shap. Inq. Cult. Commun. Shaping Inquiry Culture Communication and Media Studies = Shap Inquir Cult Shaping Inquiry Culture Communication and Media Studies = Shap. Inquir. Cult. Shaping Sexual Knowledge = Routl Stud Soc Hist Shaping Sexual Knowledge = Routl. Stud. Soc. Hist. Shared Encounters = Comp Support Comp W Shared Encounters = Comp. Support. Comp. W. Shared Encounters = Comput Supp Coop Wor Shared Encounters = Comput. Supp. Coop. Wor. Shared Idioms, Sacred Symbols, and The Articulation of Identities in South Asia = Routl Stud Relig Shared Idioms, Sacred Symbols, and The Articulation of Identities in South Asia = Routl. Stud. Relig. Shared Memory Parallel Programming With Openmp = Lect Notes Comput Sc Shared Memory Parallel Programming With Openmp = Lect. Notes. Comput. Sc. Share Europe Proceedings = Share Eur P Share Europe Proceedings = Share Eur. P. Share Europe Spring Conference: Proceedings = Share Eur P Share Europe Spring Conference: Proceedings = Share Eur. P. Sharing A Vision: Systems and Algorithms for Collaboratively-teleoperated Robotic Cameras = Springer Trac Adv Ro Sharing A Vision: Systems and Algorithms for Collaboratively-teleoperated Robotic Cameras = Springer. Trac. Adv. Ro. Sharing Cim Solutions = Adv Des Man Sharing Cim Solutions = Adv. Des. Man. Sharing Common Ground On Western Rangelands: Proceedings of A Livestock/big Game Symposium = Usda Interm Sharing Common Ground On Western Rangelands: Proceedings of A Livestock/big Game Symposium = Usda. Interm. Sharing Data, Information and Knowledge, Proceedings = Lect Notes Comput Sc Sharing Data, Information and Knowledge, Proceedings = Lect. Notes. Comput. Sc. Sharing Network Leadership = Lmx Leadersh Ser Sharing Network Leadership = Lmx. Leadersh. Ser. Sharing of Diversities = Can Plain P Sharing of Diversities = Can. Plain. P. Sharing Poetic Expressions: Beauty, Sublime, Mysticism in Islamic and Occidental Culture = Islam Ph Occident Sharing Poetic Expressions: Beauty, Sublime, Mysticism in Islamic and Occidental Culture = Islam. Ph. Occident. Sharks and Their Relatives Ii: Biodiversity, Adaptive Physiology, and Conservation = Crc Mar Biol Ser Sharks and Their Relatives Ii: Biodiversity, Adaptive Physiology, and Conservation = Crc. Mar. Biol. Ser. Sharp Real-part Theorems: A Unified Approach = Lect Notes Math Sharp Real-part Theorems: A Unified Approach = Lect. Notes. Math. Sharp Technical Journal = Sharp Tech J Sharp Technical Journal = Sharp Tech. J. Shattered Voices: Language, Violence, and The Work of Truth Commissions = Pa Stud Hum Rights Shattered Voices: Language, Violence, and The Work of Truth Commissions = Pa. Stud. Hum. Rights. Shaw and The Irish Literary Tradition = Shaw Shaw Review = Shaw Rev Shaw Review = Shaw Rev. Shaw-the Annual of Bernard Shaw Studies = Shaw Shaw : The Annual of Bernard Shaw Studies = Shaw Shear Localization in Granular Bodies With Micro-polar Hypoplasticity = Springer Ser Geomech Shear Localization in Granular Bodies With Micro-polar Hypoplasticity = Springer. Ser. Geomech. Sheet Metal 2005 = Adv Mat Res Sheet Metal 2005 = Adv. Mat. Res. Sheet Metal 2007 = Key Eng Mat Sheet Metal 2007 = Key. Eng. Mat. Sheet Metal 2007 = Key Eng Mater Sheet Metal 2007 = Key. Eng. Mater. Sheet Metal 2009 = Key Eng Mat Sheet Metal 2009 = Key. Eng. Mat. Sheffield Centre for Japanese Studies Routledge Series = Sheff Cent Jpn Stud Sheffield Centre for Japanese Studies Routledge Series = Sheff. Cent. Jpn. Stud. Sheffield Centre for Japanese Studies / Routledge Series = Sheff Ctr J Sheffield Centre for Japanese Studies / Routledge Series = Sheff. Ctr. J. Sheffield Space Plasma Meeting: Multipoint Measurement Versus Theory, Proceedings = Esa Sp Publ Sheffield Space Plasma Meeting: Multipoint Measurement Versus Theory, Proceedings = Esa. Sp. Publ. Shelf-life of Basic Substances and Preparations in Pharmacy = Paperb Apv Shelf-life of Basic Substances and Preparations in Pharmacy = Paperb. Apv. Shellfish Safety and Quality = Woodhead Food Ser Shellfish Safety and Quality = Woodhead. Food. Ser. Shell Games = Essays Stud Cent Ref Shell Games = Essays. Stud. Cent. Ref. Shenandoah = Shenandoah Shendetesia popullore = Shendet Pop Sheng Li Hsueh Pao [Acta Physiologica Sinica]=Sheng Li Hsueh Pao;; Sheng li ke xue jin zhan [Progress in physiology] = Sheng Li Ke Xue Jin Zhan Sheng Li Ke Xue Jin Zhan (Progress in Physiology) = Sheng Li Ke Xue Jin Zhan Sheng Li Ko Hsueh Chin Chan [Progress In Physiological Sciences]=Sheng Li Ko Hsueh Chin Chan;; Sheng li xue bao : [Acta physiologica Sinica] = Sheng Li Xue Bao Sheng Li Xue Bao (Acta Physiologica Sinica) = Sheng Li Xue Bao Sheng ming ke xue yan jiu / Hunan shi fan da xue zhu ban = Life science research / Hunan Normal University|Sheng Ming Ke Xue Yan Jiu Sheng wu duo yang xing = Chinese biodiversity|Sheng Wu Duo Yang Xing Shengwu Huaxue Yu Shengwu Wuli Jinzhan = Shengwu Huaxue Yu Shengwu Wuli Jinzhan Sheng wu hua xue yu sheng wu wu li xue bao Acta biochimica et biophysica Sinica = Sheng Wu Hua Xue Yu Sheng Wu Wu Li Xue Bao (Shanghai) Shengwu Huaxue Yu Shengwu Wuli Xuebao = Shengwu Huaxue Yu Shengwu Wuli Xuebao Sheng wu hua xue za zhi = Chinese biochemical journal / Zhongguo sheng wu hua xue hui zhu ban|Sheng Wu Hua Hsueh Tsa Chih Shengwu Huaxue Zazhi = Shengwu Huaxue Zazhi Sheng Wu I Hsueh Kung Cheng Hsueh Tsa Chih Journal of Biomedical Engineering (Cheng-Tu=Sheng Wu I Hsueh Kung Cheng Hsueh Tsa Chih;; Shengwu jishu = Biotechnology|Shengwu Jishu Sheng Wu Yi Xue Gong Cheng Xue Za Zhi (Journal of Biomedical Engineering) = Sheng Wu Yi Xue Gong Cheng Xue Za Zhi Shenyang yao ke da xue xue bao = Journal of Shenyang Pharmaceutical University|Shenyang Yao Ke Da Xue Xue Bao Shenyang Yaoxueyuan Xuebao = Shenyang Yaoxueyuan Xuebao She zhi = Journal of snake|She Zhi Shifting Borders = Mod Fr Iden Shifting Borders = Mod. Fr. Iden. Shifting Contexts = Asa Decen Conf Ser Shifting Contexts = Asa. Decen. Conf. Ser. Shifting Grounds of Race: Black and Japanese Americans in The Making of Multiethnic Los Angeles = Polit Soc Twentieth Shifting Grounds of Race: Black and Japanese Americans in The Making of Multiethnic Los Angeles = Polit. Soc. Twentieth. Shifting The Focus: From Static Structures to The Dynamics of Interpretation = Curr Res Semant Prag Shifting The Focus: From Static Structures to The Dynamics of Interpretation = Curr. Res. Semant. Prag. Shiftwork in The 21st Century = Arbeitswiss Betr Pra Shiftwork in The 21st Century = Arbeitswiss. Betr. Pra. Shigaku. Odontology; journal of Nippon Dental College = Shigaku Shigaku (Odontology) = Shigaku Shigaku zasshi = Shigaku Zasshi Shih Yen Sheng Wu Hsueh Pao Journal of Experimental Biology=Shih Yen Sheng Wu Hsueh Pao;; Shi jie hua ren xiao hua za zhi = World Chinese journal of digestology|Shi Jie Hua Ren Xiao Hua Za Zhi Shika gakuho. Dental science reports = Shikwa Gakuho [Shika igaku] [Dental medicine] = Shika Igaku Shika Igaku (Journal of Osaka Odontological Society) = Shika Igaku Shikai Tenbo (Dental Outlook) = Shikai Tenbo Shika Kiso Igakkai Zasshi (Japanese Journal of Oral Biology) = Shika Kiso Igakkai Zasshi Shika rikogaku zasshi. Journal of the Japan Society for Dental Apparatus and Materials = Shika Rikogaku Zasshi Shika Rikogaku Zasshi (Journal of the Japan Society for Dental Apparatus and Materials) = Shika Rikogaku Zasshi Shika Zairyo, Kikai (Journal of the Japanese Society for Dental Materials and Devices) = Shika Zairyo Kikai Shikwa Gakuho (Dental Science Reports) = Shikwa Gakuho Shilap-revista De Lepidopterologia = Shilap-rev Lepidopt Shilap-revista De Lepidopterologia = Shilap-rev. Lepidopt Shilap-revista De Lepidopterologia = Shilap-rev. Lepidopt. Shilap-revista De Lepidopterologia = Shilap-rev.. Lepidopt. Shimane journal of medical science = Shimane J Med Sci Shinkansen: From Bullet Train to Symbol of Modern Japan = Routl Contemp Jpn Se Shinkansen: From Bullet Train to Symbol of Modern Japan = Routl. Contemp. Jpn. Se. Shinkei kenkyu no shimpo. Advances in neurological sciences = Shinkei Kenkyu No Shimpo Shinkei Kenkyu No Shimpo (Advances in Neurological Sciences) = Shinkei Kenkyu No Shimpo Shinku = Shinku Shinrigaku Kenkyu (Japanese Journal of Psychology) = Shinrigaku Kenkyu Shinrigaku Kenkyu. Japanese Journal of Psychology=Shinrigaku Kenkyu;; Shinrigaku kenkyu : The Japanese journal of psychology = Shinrigaku Kenkyu [Shinryo] [Diagnosis and treatment] = Shinryo Ship As Symbol = Publ Natl Mus Stud Ship As Symbol = Publ. Natl. Mus. Stud. Shipin Kexue (Beijing) = Shipin Kexue (Beijing) Ships and Offshore Structures = Ships Offshore Struc Ships and Offshore Structures = Ships Offshore Struc. Shiso = Shiso Shi Yan Sheng Wu Xue Bao (Bulletin of Experimental Biology) = Shi Yan Sheng Wu Xue Bao Shi yan sheng wu xue bao = Shi Yan Sheng Wu Xue Bao Shiyo (Journal of the Tokyo Dental Association) = Shiyo Shiyo. The journal of the Tokyo Dental Association = Shiyo Shiyou Huagong = Shiyou Huagong Shiyou Xuebao, Shiyou Jiagong = Shiyou Xuebao, Shiyou Jiagong Sh'ma : a journal of Jewish responsibility = Shma Shock and Damage Models in Reliability Theory = Springer Ser Reliab Shock and Damage Models in Reliability Theory = Springer. Ser. Reliab. Shock and Vibration = Shock Vib Shock and Vibration = Shock Vib. Shock (Augusta, Ga.) = Shock Shock Compression of Condensed Matter - 1995 = Aip Conf Proc Shock Compression of Condensed Matter - 1995 = Aip. Conf. Proc. Shock Compression of Condensed Matter - 1997 = Aip Conf Proc Shock Compression of Condensed Matter - 1997 = Aip. Conf. Proc. Shock Compression of Condensed Matter-1999, Pts 1 and 2 = Aip Conf Proc Shock Compression of Condensed Matter-1999, Pts 1 and 2 = Aip. Conf. Proc. Shock Compression of Condensed Matter-2001, Pts 1 and 2, Proceedings = Aip Conf Proc Shock Compression of Condensed Matter-2001, Pts 1 and 2, Proceedings = Aip. Conf. Proc. Shock Compression of Condensed Matter - 2003, Pts 1 and 2, Proceedings = Aip Conf Proc Shock Compression of Condensed Matter - 2003, Pts 1 and 2, Proceedings = Aip. Conf. Proc. Shock Compression of Condensed Matter - 2005, Pts 1 and 2 = Aip Conf Proc Shock Compression of Condensed Matter - 2005, Pts 1 and 2 = Aip. Conf. Proc. Shock Compression of Condensed Matter - 2007, Pts 1 and 2 = Aip Conf Proc Shock Compression of Condensed Matter - 2007, Pts 1 and 2 = Aip. Conf. Proc. Shock Compression of Condensed Matter - 2009, Pts 1 and 2 = Aip Conf Proc Shock Compression of Condensed Matter - 2009, Pts 1 and 2 = Aip. Conf. Proc. Shock = Int Congr Ser Shock = Int. Congr. Ser. Shock=Shock;; Shock = Shock Shock Wave and High Pressure Phenomena = Shock Wave High Pres Shock Wave and High Pressure Phenomena = Shock Wave High Pres. Shock Wave Reflection Phenomena, Second Edition = Shock Wave High Pres Shock Wave Reflection Phenomena, Second Edition = Shock Wave High. Pres. Shock Wave Science and Technology Reference Library = Shock Wave Sci Techn Shock Wave Science and Technology Reference Library = Shock Wave Sci. Techn. Shock Wave Science and Technology Reference Library, Vol 3: Solids Ii = Shock Wave Sci Techn Shock Wave Science and Technology Reference Library, Vol 3: Solids Ii = Shock Wave Sci. Techn. Shock Wave Science and Technology Reference Library, Vol 5 = Shock Wave Sci Techn Shock Wave Science and Technology Reference Library, Vol 5 = Shock Wave Sci. Techn. Shock Waves in Space and Astrophysical Environments = Aip Conf Proc Shock Waves in Space and Astrophysical Environments = Aip. Conf. Proc. Shock Waves = Shock Waves Shofar Supplements in Jewish Studies = Shofar Suppl Jew Stu Shofar Supplements in Jewish Studies = Shofar Suppl. Jew. Stu. Shokubutsu kenkyu zasshi. The Journal of Japanese botany = Shokubutsu Kenkyu Zasshi Shokuhin eiseigaku zasshi. Journal of the Food Hygienic Society of Japan = Shokuhin Eiseigaku Zasshi Shonika kiyo. Annales paediatrici Japonici = Shonika Kiyo Shonika. Pediatrics of Japan = Shonika Shoni Shikagaku Zasshi (Japanese Journal of Pedodontics) = Shoni Shikagaku Zasshi Shoni shikagaku zasshi. The Japanese journal of pedodontics = Shoni Shikagaku Zasshi Shoreless Bridges: South East European Writing in Diaspora = Stud Slav L Shoreless Bridges: South East European Writing in Diaspora = Stud. Slav. L. Short and Long Chains At Interfaces = Moriond Cond Matt P Short and Long Chains At Interfaces = Moriond. Cond. Matt. P. Short and Long Term Effects of Breast Feeding On Child Health = Adv Exp Med Biol Short and Long Term Effects of Breast Feeding On Child Health = Adv. Exp. Med. Biol. Short Chain Fatty Acids - Falk Symposium 73 = Falk Symp Short Chain Fatty Acids - Falk Symposium 73 = Falk Symp. Short Circuits = Short Circuits Short Course in Geology = Volcan Haz Short Course in Geology = Volcan. Haz. Short Course in Quantum Information Theory: An Approach From Theoretical Physics = Lect Notes Phys Short Course in Quantum Information Theory: An Approach From Theoretical Physics = Lect. Notes. Phys. Short Distance Behavior of Fundamental Interactions = Aip Conf Proc Short Distance Behavior of Fundamental Interactions = Aip. Conf. Proc. Shortest Path Problem = Dimacs Ser Discret M Shortest Path Problem = Dimacs. Ser. Discret. M. Short History of The Drug Receptor Concept = Sci Technol Med Mod Short History of The Drug Receptor Concept = Sci. Technol. Med. Mod. Short Journey From Quarks to The Universe: Selected Solutions = Springerbrief Phys Short Journey From Quarks to The Universe: Selected Solutions = Springerbrief. Phys. Short-period Binary Stars: Observations, Analyses, and Results = Astrophys Space Sc L Short-period Binary Stars: Observations, Analyses, and Results = Astrophys. Space. Sc. L. Short-pulse High Intensity Lasers and Applications Ii = P Soc Photo-opt Ins Short-pulse High Intensity Lasers and Applications Ii = P. Soc. Photo-opt. Ins. Short-pulse High-intensity Lasers and Applications = P Soc Photo-opt Ins Short-pulse High-intensity Lasers and Applications = P. Soc. Photo-opt. Ins. Short Stay Management of Chest Pain = Contemp Cardiol Short Stay Management of Chest Pain = Contemp. Cardiol. Short Stay Surgery = Springer Surg Atlas Short Stay Surgery = Springer. Surg. Atlas. Short-wavelength Radiation Sources = P Soc Photo-opt Ins Short-wavelength Radiation Sources = P. Soc. Photo-opt. Ins. Shotcrete for Underground Support Series = Shotcrete Undergr S Shotcrete for Underground Support Series = Shotcrete Undergr. S. Shotcrete for Underground Support Vii = Shotcrete Undergr S Shotcrete for Underground Support Vii = Shotcrete Undergr. S. Shou lei xue bao = Acta theriologica sinica|Shou Lei Xue Bao Showa Igakkai Zasshi (Journal of the Showa Medical Association) = Showa Igakkai Zasshi Showa Shigakkai Zasshi (Journal of Showa University Dental Society) = Showa Shigakkai Zasshi Show Me The Money: Writing Business and Economics Stories for Mass Communication, Second Edition = Commun Ser Show Me The Money: Writing Business and Economics Stories for Mass Communication, Second Edition = Commun. Ser. Shrubland Ecosystem Genetics and Biodiversity: Proceedings = Us For Serv Rmrs-p Shrubland Ecosystem Genetics and Biodiversity: Proceedings = Us. For. Serv. Rmrs-p. Shrublands Under Fire: Disturbance and Recovery in A Changing World, Proceedings = Us For Serv Rmrs-p Shrublands Under Fire: Disturbance and Recovery in A Changing World, Proceedings = Us. For. Serv. Rmrs-p. Shstf = SHSTF SHSTF = SHSTF Shuichuli Jishu = Shuichuli Jishu Shujutsu (Operation) = Shujutsu Shujutsu. Operation = Shujutsu Siaions and Non-oxides = Key Eng Mat Siaions and Non-oxides = Key. Eng. Mat. Siaions = Key Eng Mat Siaions = Key. Eng. Mat. Siaions = Key Eng Mater Siaions = Key. Eng. Mater. SIAM Journal of Scientific Computing = SIAM J. Sci. Comput. Siam Journal On Algebraic and Discrete Methods = Siam J Algebra Discr Siam Journal On Algebraic and Discrete Methods = Siam J. Algebra. Discr. Siam Journal On Applied Dynamical Systems = Siam J Appl Dyn Syst Siam Journal On Applied Dynamical Systems = Siam J. Appl. Dyn. Syst. SIAM Journal on Applied Dynamical Systems = SIAM J. Appl. Dyn. Syst. Siam Journal On Applied Mathematics = Siam J Appl Math Siam Journal On Applied Mathematics = Siam J. Appl. Math. SIAM journal on applied mathematics = SIAM J Appl Math SIAM Journal on Applied Mathematics = SIAM J. Appl. Math. SIAM Journal on Applied Mathematics = SIAM J. Appl. Math. Siam Journal On Computing = Siam J Comput Siam Journal On Computing = Siam J. Comput. SIAM Journal on Computing = SIAM J. Comput. SIAM Journal on Computing = SIAM J. Comput. Siam Journal On Control and Optimization = Siam J Control Optim Siam Journal On Control and Optimization = Siam J. Control Optim. SIAM Journal on Control and Optimization = SIAM J. Control Optim. SIAM Journal on Control and Optimization = SIAM J. Control Optim. Siam Journal On Control = Siam J Control Siam Journal On Control = Siam J. Control Siam Journal On Discrete Mathematics = Siam J Discrete Math Siam Journal On Discrete Mathematics = Siam J. Discrete Math. SIAM Journal on Discrete Mathematics = SIAM J. Discrete Math. SIAM Journal on Discrete Mathematics = SIAM J. Discrete Math. Siam Journal On Imaging Sciences = Siam J Imaging Sci Siam Journal On Imaging Sciences = Siam J. Imaging Sci. SIAM Journal on Imaging Sciences = SIAM J. Imag. Sci. Siam Journal On Mathematical Analysis = Siam J Math Anal Siam Journal On Mathematical Analysis = Siam J. Math. Anal. SIAM Journal on Mathematical Analysis = SIAM J. Math. Anal. SIAM Journal on Mathematical Analysis = SIAM J. Math. Anal. Siam Journal On Matrix Analysis and Applications = Siam J Matrix Anal A Siam Journal On Matrix Analysis and Applications = Siam J. Matrix Anal. A. SIAM Journal on Matrix Analysis and Applications = SIAM J. Matrix Anal. Appl. SIAM Journal on Matrix Analysis and Applications = SIAM J. Matrix Anal. Appl. Siam Journal On Numerical Analysis = Siam J Numer Anal Siam Journal On Numerical Analysis = Siam J. Numer. Anal. SIAM Journal on Numerical Analysis = SIAM J. Numer. Anal. SIAM Journal on Numerical Analysis = SIAM J. Numer. Anal. SIAM Journal on Optimization = SIAM J. Optim. SIAM Journal on Optimization = SIAM J. Optim. Siam Journal On Optimization = Siam J Optimiz Siam Journal On Optimization = Siam J. Optimiz. Siam Journal On Scientific and Statistical Computing = Siam J Sci Stat Comp Siam Journal On Scientific and Statistical Computing = Siam J. Sci. Stat. Comp. Siam Journal On Scientific Computing = Siam J Sci Comput Siam Journal On Scientific Computing = Siam J. Sci. Comput. SIAM Journal on Scientific Computing = SIAM J. Sci. Comput. SIAM Monographs on Mathematical Modeling and Computation = SIAM Monogr. Math. Model. Comput. Siam Proceedings Series = Siam Proc S Siam Proceedings Series = Siam Proc. S. Siam Review = Siam Rev Siam Review = Siam Rev. SIAM Review = SIAM Rev. SIAM Review = SIAM Rev. SIAM studies in applied mathematics = SIAM Stud Appl Math SIAM Studies in Applied Mathematics = SIAM Stud. Appl. Math. Siberian Advances in Mathematics = Siberian Adv. Math. Siberian Journal of Computer Mathematics = Siberian J. Comput. Math. Siberian Journal of Differential Equations = Siberian J. Differential Equations Siberian Mathematical Journal = Siberian Math. J. Siberian Mathematical Journal = Siberian Math J+ Siberian Mathematical Journal = Siberian Math. J+.+ Siberian School of Algebra and Logic = Siberian School Algebra Logic Sibgrapi 2006: Xix Brazilian Symposium On Computer Graphics and Image Processing, Proceedings = Sibgrapi Sibgrapi 2008: Xxi Brazilian Symposium On Computer Graphics and Image Processing = Sibgrapi Sibgrapi - Brazilian Symposium On Computer Graphics and Image Processing = Sibgrapi Sibirskii Khimicheskii Zhurnal = Sibirskii Khim Zh+ Sibirskii Khimicheskii Zhurnal = Sibirskii Khim. Zh+.+ Sibirskii Khimicheskii Zhurnal = Sib. Khim. Zh. Sibrium. Collana di studi e documentazioni = Sibrium Sichtbarkeitsregime: Uberwachung, Sicherheit Und Privatheit Im 21. Jahrhundert = Leviathan Sonderh Sichtbarkeitsregime: Uberwachung, Sicherheit Und Privatheit Im 21. Jahrhundert = Leviathan. Sonderh. Sichuan Daxue Xuebao = Sichuan Daxue Xuebao Sichuan Da Xue Xue Bao. Yi Xue Ban (Journal of Sichuan University. Medical Science Edition) = Sichuan Da Xue Xue Bao Yi Xue Ban Sichuan da xue xue bao. Zi ran ke xue ban = Sichuan daxue xuebao|Sichuan Da Xue Xue Bao Zi Ran Ke Xue Ban Sichuan Shifan Daxue Xuebao = Sichuan Shifan Daxue Xuebao Ziran Kexue Ban Sichuan Yi Xue Yuan Xue Bao (Acta Academiae Medicinae Sichuan) = Sichuan Yi Xue Yuan Xue Bao Sich Verzehrender Skeptizismus: Lauterungen Bei Hegel Und Kierkegaard = Kierke Stud Monogr S Sich Verzehrender Skeptizismus: Lauterungen Bei Hegel Und Kierkegaard = Kierke. Stud. Monogr. S. Sicile Antique Pyrrhus En Occident = Pallas-rev Etud Anti Sicile Antique Pyrrhus En Occident = Pallas-rev. Etud. Anti. Sicilia archeologica = SicA Sicilia medica = Sicilia Med Sicilia sanitaria = Sicil Sanit Sicilia Sanitaria = Sicil. Sanit. Sickle Cell Disease / = Ann Ny Acad Sci Sickle Cell Disease / = Ann. Ny. Acad. Sci. Sic Materials and Devices = Semiconduct Semimet Sic Materials and Devices = Semiconduct. Semimet. Siculorum Gymnasium: rassegna semestrale della Facoltà di Lettere e Filosofia dell'Università di Catania = SicGymn Siculorum gymnasium = SicGymn SIDAhora : un proyecto del Departamento de Publicaciones del PWA Coalition, NY = Sidahora SidAlerte = SidAlerte Side-effects of Anti-inflammatory Drugs 3 = Infl Dr Th Side-effects of Anti-inflammatory Drugs 3 = Infl. Dr. Th. Side-effects of Chemotherapy On The Gastrointestinal Tract: Pathophysiology, Prophylaxis and Therapy = Falk Symp Side-effects of Chemotherapy On The Gastrointestinal Tract: Pathophysiology, Prophylaxis and Therapy = Falk. Symp. Sidewalks: Conflict and Negotiation Over Public Space = Urban Ind Environ Sidewalks: Conflict and Negotiation Over Public Space = Urban. Ind. Environ. Sid International Symposium Digest of Technical Papers = Sid Int Symp Dig Tec Sid International Symposium Digest of Technical Papers = Sid Int. Symp. Dig. Tec. Sid Journal = Sid Journal Soc Inf Sid Journal = Sid Journal Soc. Inf. Sieccan journal = Sieccan J SIECUS report = SIECUS Rep Siemens Forschungs-und Entwicklungsberichte-siemens Research and Development Reports = Siemens Forsch Entw Siemens Forschungs-und Entwicklungsberichte-siemens Research and Development Reports = Siemens Forsch. Entw. Siemens Review = Siemens Rev Siemens Review = Siemens Rev. Siemens Zeitschrift = Siemens-z Siemens Zeitschrift = Siemens-z. Sierra = Sierra Si Front-end Processing-physics and Technology of Dopant-defect Interactions = Mater Res Soc Symp P Si Front-end Processing-physics and Technology of Dopant-defect Interactions = Mater. Res. Soc. Symp. P. Sigcse 2000: Proceedings of The Thirty-first Sigcse Technical Symposium On Computer Science Education = Sigcse Bull Sigcse 2000: Proceedings of The Thirty-first Sigcse Technical Symposium On Computer Science Education = Sigcse Bull. Sigcse Bulletin : A Quarterly Publication of The Special Interest Group On Computer Science Education = Sigcse Bull Sigcse Bulletin : A Quarterly Publication of The Special Interest Group On Computer Science Education = Sigcse Bull. Sige, Ge, and Related Compounds 3: Materials, Processing, and Devices = Ecs Transactions Sige, Ge, and Related Compounds 3: Materials, Processing, and Devices = Ecs. Transactions. Siggraph 2000 Conference Proceedings = Comp Graph Siggraph 2000 Conference Proceedings = Comp. Graph. Siggraph 2001 Conference Proceedings = Comp Graph Siggraph 2001 Conference Proceedings = Comp. Graph. Siggraph 91 Conference Proceedings = Comp Graph Siggraph 91 Conference Proceedings = Comp. Graph. Siggraph 92 : Conference Proceedings = Comp Graph Siggraph 92 : Conference Proceedings = Comp. Graph. Siggraph 99 Conference Proceedings = Comp Graph Siggraph 99 Conference Proceedings = Comp. Graph. Sight and Sound = Sight Sound Sight-saving Review = Sight Saving Rev Sight-saving Review = Sight. Saving. Rev. Sightsaving Review = Sightsav. Rev. Sight-Saving Review = Sight. Sav. Rev. Sightsaving = Sightsaving Sigir Forum = Sigir Forum Sigmadelta A/d Conversion for Signal Conditioning = Springer Int Ser Eng Sigmadelta A/d Conversion for Signal Conditioning = Springer. Int. Ser. Eng. Sigma Series in Applied Mathematics = Sigma Ser. Appl. Math. Sigma Series in Pure Mathematics = Sigma Ser. Pure Math. Sigmetrics'07: Proceedings of The 2007 International Conference On Measurement & Modeling of Computer Systems = Perf E R Si Sigmetrics'07: Proceedings of The 2007 International Conference On Measurement & Modeling of Computer Systems = Perf. E. R. Si. Sigmetrics'08: Proceedings of The 2008 International Conference On Measurement & Modeling of Computer Systems = Perf E R Si Sigmetrics'08: Proceedings of The 2008 International Conference On Measurement & Modeling of Computer Systems = Perf. E. R. Si. Sigmetrics 2010: Proceedings of The 2010 Acm Sigmetrics International Conference On Measurement and Modeling of Computer Systems = Perf E R Si Sigmetrics 2010: Proceedings of The 2010 Acm Sigmetrics International Conference On Measurement and Modeling of Computer Systems = Perf. E. R. Si. Sigmetrics/performance'09, Proceedings of The 2009 Joint International Conference On Measurement and Modeling of Computer Systems = Perf E R Si Sigmetrics/performance'09, Proceedings of The 2009 Joint International Conference On Measurement and Modeling of Computer Systems = Perf. E. R. Si. Sigmod Record = Sigmod Rec Sigmod Record = Sigmod Rec. Sigmod Record = Sigmod Record Sigmul bunryu hag-hoeji = Korean journal of plant taxonomy|Sigmul Bunryu Hag-hoeji Sigmul saengmyeong gong haghoeji = Korean journal of plant biotechnology|Sigmul Saengmyeong Gong Haghoeji Sigmund Freud House bulletin = Sigmund Freud House Bull Sigmund Freud, Second Edition = Routl Crit Thinkers Sigmund Freud, Second Edition = Routl. Crit. Thinkers. Sigmund Freud Und Das Wissen Der Literatur = Spectr Literaturwiss Sigmund Freud Und Das Wissen Der Literatur = Spectr. Literaturwiss. Sigmund Von Birken - Werke Und Korrespondenz, Band 5: Todten-andenken Und Himmels-gedanken = Neudrucke Dtsch Lit Sigmund Von Birken - Werke Und Korrespondenz, Band 5: Todten-andenken Und Himmels-gedanken = Neudrucke. Dtsch. Lit. Signal Analysis, Measurement Theory, Photo-electronic Technology, and Artificial Intelligence, Pts 1 and 2 = Proc Spie Signal Analysis, Measurement Theory, Photo-electronic Technology, and Artificial Intelligence, Pts 1 and 2 = Proc. Spie. Signal Analysis, Measurement Theory, Photo-electronic Technology, and Artificial Intelligence, Pts 1 and 2 = P Soc Photo-opt Ins Signal Analysis, Measurement Theory, Photo-electronic Technology, and Artificial Intelligence, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1989 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1989 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1990 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1990 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1991 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1991 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1992 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1992 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1993 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1993 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1994 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1994 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1995 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1995 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1996 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1996 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1997 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1997 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1998 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1998 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 1999 = Proc Spie Signal and Data Processing of Small Targets 1999 = Proc. Spie. Signal and Data Processing of Small Targets 1999 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 1999 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2000 = Proc Spie Signal and Data Processing of Small Targets 2000 = Proc. Spie. Signal and Data Processing of Small Targets 2000 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2000 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2001 = Proc Spie Signal and Data Processing of Small Targets 2001 = Proc. Spie. Signal and Data Processing of Small Targets 2001 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2001 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2002 = Proc Spie Signal and Data Processing of Small Targets 2002 = Proc. Spie. Signal and Data Processing of Small Targets 2002 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2002 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2003 = Proc Spie Signal and Data Processing of Small Targets 2003 = Proc. Spie. Signal and Data Processing of Small Targets 2003 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2003 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2004 = Proc Spie Signal and Data Processing of Small Targets 2004 = Proc. Spie. Signal and Data Processing of Small Targets 2004 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2004 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2005 = Proc Spie Signal and Data Processing of Small Targets 2005 = Proc. Spie. Signal and Data Processing of Small Targets 2005 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2005 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2006 = Proc Spie Signal and Data Processing of Small Targets 2006 = Proc. Spie. Signal and Data Processing of Small Targets 2006 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2006 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2007 = Proc Spie Signal and Data Processing of Small Targets 2007 = Proc. Spie. Signal and Data Processing of Small Targets 2007 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2007 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2008 = Proc Spie Signal and Data Processing of Small Targets 2008 = Proc. Spie. Signal and Data Processing of Small Targets 2008 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2008 = P. Soc. Photo-opt. Ins. Signal and Data Processing of Small Targets 2010 = Proc Spie Signal and Data Processing of Small Targets 2010 = Proc. Spie. Signal and Data Processing of Small Targets 2010 = P Soc Photo-opt Ins Signal and Data Processing of Small Targets 2010 = P. Soc. Photo-opt. Ins. Signal and Image Processing Systems Performance Evaluation = P Soc Photo-opt Ins Signal and Image Processing Systems Performance Evaluation = P. Soc. Photo-opt. Ins. Signal and Image Processing Systems Performance Evaluation, Simulation, and Modeling = P Soc Photo-opt Ins Signal and Image Processing Systems Performance Evaluation, Simulation, and Modeling = P. Soc. Photo-opt. Ins. Signal and Sense = Neurosci In Signal and Sense = Neurosci. In. Signal Extraction: Efficient Estimation Unit-root Tests and Early Detection of Turning Points = Lect Notes Econ Math Signal Extraction: Efficient Estimation Unit-root Tests and Early Detection of Turning Points = Lect. Notes. Econ. Math. Signal Image and Video Processing = Signal Image Video P Signal Image and Video Processing = Signal Image Video P. Signaling and Communication in Plants = Signal Commun Plants Signaling and Communication in Plants = Signal. Commun. Plants Signaling Mechanisms and Gene Expression in The Ovary = Serono Symp Signaling Mechanisms and Gene Expression in The Ovary = Serono. Symp. Signaling Mechanisms in Secretary and Immune Cells = Lov Med Fdn Signaling Mechanisms in Secretary and Immune Cells = Lov. Med. Fdn. Signalling From Internalized Growth Factor Receptors = Curr Top Microbiol Signalling From Internalized Growth Factor Receptors = Curr. Top. Microbiol. Signalling in The Liver = Falk Symp Signalling in The Liver = Falk. Symp. Signal, Meaning and Message: Perspectives On Sign-based Linguistics = Stud Funct Struct Signal, Meaning and Message: Perspectives On Sign-based Linguistics = Stud. Funct. Struct. Signal Molecules and Behaviour = Stud Neuros Signal Molecules and Behaviour = Stud. Neuros. Signal Processing and Digital Filtering = Signal Process. Digit. Filtering Signal Processing and Multimedia = Comm Com Inf Sc Signal Processing and Multimedia = Comm. Com. Inf. Sc. Signal Processing for Image Enhancement and Multimedia Processing = Mu Sys Appl Signal Processing for Image Enhancement and Multimedia Processing = Mu. Sys. Appl. Signal Processing for Telecommunications and Multimedia = Mu Sys Appl Signal Processing for Telecommunications and Multimedia = Mu. Sys. Appl. Signal Processing-image Communication = Signal Process-image Signal Processing-image Communication = Signal Process-image. Signal Processing: Image Communication = Signal Process. Image Commun. Signal Processing, Image Processing, and Pattern Recognition = Comm Com Inf Sc Signal Processing, Image Processing, and Pattern Recognition = Comm. Com. Inf. Sc. Signal Processing, Part 1 = Ima V Math Signal Processing, Part 1 = Ima. V. Math. Signal Processing, Pt 2 = Ima V Math Signal Processing, Pt 2 = Ima. V. Math. Signal Processing, Scattering and Operator Theory, and Numerical Methods = Prog Syst C Signal Processing, Scattering and Operator Theory, and Numerical Methods = Prog. Syst. C. Signal Processing, Sensor Fusion, and Target Recognition Iii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Iii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Ii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Ii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Iv = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Iv = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Ix = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Ix = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Ix = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Ix = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Viii = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Viii = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Viii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Viii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Vii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Vii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Vi = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Vi = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition V = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition V = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xiii = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xiii = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xiii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xiii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xii = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xii = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xi = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xi = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xi = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xi = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xiv = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xiv = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xiv = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xiv = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xix = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xix = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xix = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xix = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition X = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition X = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xvii = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xvii = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xvii = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xvii = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xvi = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xvi = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xvi = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xvi = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xv = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xv = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xv = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xv = P. Soc. Photo-opt. Ins. Signal Processing, Sensor Fusion, and Target Recognition Xx = Proc Spie Signal Processing, Sensor Fusion, and Target Recognition Xx = Proc. Spie. Signal Processing, Sensor Fusion, and Target Recognition Xx = P Soc Photo-opt Ins Signal Processing, Sensor Fusion, and Target Recognition Xx = P. Soc. Photo-opt. Ins. Signal Processing = Signal Process Signal Processing = Signal Process. Signal processing = Signal Processing Signals and Communication Technology = Sig Com Tec Signals and Communication Technology = Sig. Com. Tec. Signals and Communication Technology = Signals Commun Techn Signals and Communication Technology = Signals Commun. Techn. Signals, Switches, Regulons and Cascades: Control of Bacterial Gene Expression = Symp Soc Gen Microbi Signals, Switches, Regulons and Cascades: Control of Bacterial Gene Expression = Symp. Soc. Gen. Microbi. Signal Transduction and Cardiac Hypertrophy = Prog Exp Cardiol Signal Transduction and Cardiac Hypertrophy = Prog. Exp. Cardiol. Signal Transduction and Communication in Cancer Cells = Ann Ny Acad Sci Signal Transduction and Communication in Cancer Cells = Ann. Ny. Acad. Sci. Signal Transduction and The Coordination of B Lymphocyte Development and Function I = Curr Top Microbiol Signal Transduction and The Coordination of B Lymphocyte Development and Function I = Curr. Top. Microbiol. Signal Transduction and The Coordination of B Lymphocyte Development and Function Ii = Curr Top Microbiol Signal Transduction and The Coordination of B Lymphocyte Development and Function Ii = Curr. Top. Microbiol. Signal Transduction Immunohistochemistry: Methods and Protocols = Methods Mol Biol Signal Transduction Immunohistochemistry: Methods and Protocols = Methods Mol. Biol. Signal Transduction in Cancer Metastasis = Cancer Metast Biol T Signal Transduction in Cancer Metastasis = Cancer Metast. Biol. T. Signal Transduction in Health and Disease = Adv Sec Mess Phosph Signal Transduction in Health and Disease = Adv. Sec. Mess. Phosph. Signal Transduction in Lung Cells = Lung Biol Health Dis Signal Transduction in Lung Cells = Lung Biol. Health. Dis. Signal Transduction Pathways, Chromatin Structure, and Gene Expression Mechanisms As Therapeutic Targets = Ann Ny Acad Sci Signal Transduction Pathways, Chromatin Structure, and Gene Expression Mechanisms As Therapeutic Targets = Ann. Ny. Acad. Sci. Signal Transduction Pathways, Pt A = Ann Ny Acad Sci Signal Transduction Pathways, Pt A = Ann. Ny. Acad. Sci. Signal Transduction Pathways, Pt B = Ann Ny Acad Sci Signal Transduction Pathways, Pt B = Ann. Ny. Acad. Sci. Signal Transduction Pathways, Pt C = Ann Ny Acad Sci Signal Transduction Pathways, Pt C = Ann. Ny. Acad. Sci. Signal Transduction Pathways, Pt D = Ann Ny Acad Sci Signal Transduction Pathways, Pt D = Ann. Ny. Acad. Sci. Signal Transduction = Signal Transduction Signa-revista De La Asociacion Espanola De Semiotica = Signa Signa-revista De La Asociacion Espanola De Semiotica = Signa. Signature (Ramsey, N.J.) = Signature Signature = Signature Signa Vitae = Signa Vitae Significance of Individual Aspirations in Health Psychology = Psychol Res Prog Significance of Individual Aspirations in Health Psychology = Psychol. Res. Prog. Significance of Infant Observational Research for Clinical Work With Children, Adolescents, and Adults = Work S Am P Significance of Infant Observational Research for Clinical Work With Children, Adolescents, and Adults = Work S. Am. P. Significance of N-nitrosation of Drugs = Drug Dev E Significance of N-nitrosation of Drugs = Drug. Dev. E. Significance of Popper's Thought = Poznan Stud Significance of Popper's Thought = Poznan. Stud. Significant Issues Series = Signif Is S Significant Issues Series = Signif. Is. S. Signifying and Understanding: Reading The Works of Victoria Welby and The Signific Movement = Semiot Commun Cognit Signifying and Understanding: Reading The Works of Victoria Welby and The Signific Movement = Semiot. Commun. Cognit. Sign Languages in Contact = Sociolinguist Deaf Sign Languages in Contact = Sociolinguist. Deaf. Sign = Sign Signs of Logic: Peircean Themes On The Philosophy of Language, Games, and Communication = Synth Libr Signs of Logic: Peircean Themes On The Philosophy of Language, Games, and Communication = Synth. Libr. Signs of Race = Signs Race Signs, Search and Communication = Grundl Komm Signs, Search and Communication = Grundl. Komm. Signs = Signs Signs = Signs (Chic) Sigois Bulletin = Sigois Bul Sigois Bulletin = Sigois Bul. Sigplan Notices = Sigplan Notices Sik-dokument = Sik Dok Sik-dokument = Sik. Dok. Silenced Voices in Education Series = Silenc Voice Educ Se Silenced Voices in Education Series = Silenc. Voice. Educ. Se. Sileno. Rivista di studi classici e cristiani = Sileno Silent Myocardial Ischemia : A Critical Appraisal = Adv Cardiol Silent Myocardial Ischemia : A Critical Appraisal = Adv. Cardiol. Silent Witness: Racine's Non-verbal Annotations of Euripides = Res Monogr Fr Stud Silent Witness: Racine's Non-verbal Annotations of Euripides = Res. Monogr. Fr. Stud. Silica: Physical Behavior, Geochemistry and Materials Applications = Rev Mineral Silica: Physical Behavior, Geochemistry and Materials Applications = Rev. Mineral. Silicates Industriels = Silic Ind Silicates Industriels = Silic. Ind. Silicates Industriels = Silic. Indus. Silicides, Germanides, and Their Interfaces = Mater Res Soc Symp P Silicides, Germanides, and Their Interfaces = Mater. Res. Soc. Symp. P. Silicide Thin Films - Fabrication, Properties, and Applications = Mater Res Soc Symp P Silicide Thin Films - Fabrication, Properties, and Applications = Mater. Res. Soc. Symp. P. Silicon-based and Hybrid Optoelectronics Iii = Proc Spie Silicon-based and Hybrid Optoelectronics Iii = Proc. Spie. Silicon-based and Hybrid Optoelectronics Iii = P Soc Photo-opt Ins Silicon-based and Hybrid Optoelectronics Iii = P. Soc. Photo-opt. Ins. Silicon-based and Hybrid Optoelectronics Iv = P Soc Photo-opt Ins Silicon-based and Hybrid Optoelectronics Iv = P. Soc. Photo-opt. Ins. Silicon-based Microphotonics: From Basics to Applications = P Int Sch Phys Silicon-based Microphotonics: From Basics to Applications = P. Int. Sch. Phys. Silicon-based Monolithic and Hybrid Optoelectronic Devices = P Soc Photo-opt Ins Silicon-based Monolithic and Hybrid Optoelectronic Devices = P. Soc. Photo-opt. Ins. Silicon-based Optoelectronic Materials = Mater Res Soc Symp P Silicon-based Optoelectronic Materials = Mater. Res. Soc. Symp. P. Silicon-based Optoelectronics Ii = Proc Spie Silicon-based Optoelectronics Ii = Proc. Spie. Silicon-based Optoelectronics Ii = P Soc Photo-opt Ins Silicon-based Optoelectronics Ii = P. Soc. Photo-opt. Ins. Silicon-based Optoelectronics = P Soc Photo-opt Ins Silicon-based Optoelectronics = P. Soc. Photo-opt. Ins. Silicon-based Polymer Science = Adv Chem Ser Silicon-based Polymer Science = Adv. Chem. Ser. Silicon-based Rf Front-ends for Ultra Wideband Radios = Analog Circ Sig Proc Silicon-based Rf Front-ends for Ultra Wideband Radios = Analog. Circ. Sig. Proc. Silicon-based Structural Ceramics for The New Millennium = Ceram Trans Silicon-based Structural Ceramics for The New Millennium = Ceram. Trans. Silicon Carbide 2002-materials, Processing and Devices = Mater Res Soc Symp P Silicon Carbide 2002-materials, Processing and Devices = Mater. Res. Soc. Symp. P. Silicon Carbide 2004-materials, Processing and Devices = Mater Res Soc Symp P Silicon Carbide 2004-materials, Processing and Devices = Mater. Res. Soc. Symp. P. Silicon Carbide 2006 - Materials, Processing and Devices = Mater Res Soc Symp P Silicon Carbide 2006 - Materials, Processing and Devices = Mater. Res. Soc. Symp. P. Silicon Carbide 2008 - Materials, Processing and Devices = Mater Res Soc Symp P Silicon Carbide 2008 - Materials, Processing and Devices = Mater. Res. Soc. Symp. P. Silicon Carbide and Related Materials 1995 = Inst Phys Conf Ser Silicon Carbide and Related Materials 1995 = Inst. Phys. Conf. Ser. Silicon Carbide and Related Materials - 1999 Pts, 1 & 2 = Mater Sci Forum Silicon Carbide and Related Materials - 1999 Pts, 1 & 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2001, Pts 1 and 2, Proceedings = Mater Sci Forum Silicon Carbide and Related Materials 2001, Pts 1 and 2, Proceedings = Mater. Sci. Forum. Silicon Carbide and Related Materials - 2002 = Mater Sci Forum Silicon Carbide and Related Materials - 2002 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2003, Prts 1 and 2 = Mater Sci Forum Silicon Carbide and Related Materials 2003, Prts 1 and 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2003, Pts 1 and 2 = Mater Sci Forum Silicon Carbide and Related Materials 2003, Pts 1 and 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2004 = Mater Sci Forum Silicon Carbide and Related Materials 2004 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2005, Pts 1 and 2 = Mater Sci Forum Silicon Carbide and Related Materials 2005, Pts 1 and 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2006 = Mater Sci Forum Silicon Carbide and Related Materials 2006 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2007, Pts 1 and 2 = Mater Sci Forum Silicon Carbide and Related Materials 2007, Pts 1 and 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2008 = Mater Sci Forum Silicon Carbide and Related Materials 2008 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2009, Pts 1 and 2 = Mater Sci Forum Silicon Carbide and Related Materials 2009, Pts 1 and 2 = Mater. Sci. Forum. Silicon Carbide and Related Materials 2010 = Mater Sci Forum Silicon Carbide and Related Materials 2010 = Mater. Sci. Forum. Silicon Carbide and Related Materials, Ecscrm2000 = Mater Sci Forum Silicon Carbide and Related Materials, Ecscrm2000 = Mater. Sci. Forum. Silicon Carbide, Iii-nitrides and Related Materials, Pts 1 and 2 = Mater Sci Forum Silicon Carbide, Iii-nitrides and Related Materials, Pts 1 and 2 = Mater. Sci. Forum. Silicon Carbide Materials for Optics and Precision Structures = P Soc Photo-opt Ins Silicon Carbide Materials for Optics and Precision Structures = P. Soc. Photo-opt. Ins. Silicon Carbide Microsystems for Harsh Environments = Mems Ref Shelf Silicon Carbide Microsystems for Harsh Environments = Mems. Ref. Shelf. Silicon Chemistry = Silicon Chem. Silicon-containing Dendritic Polymers = Adv Silicon Sci Silicon-containing Dendritic Polymers = Adv. Silicon. Sci. Silicon Epitaxy = Semiconduct Semimet Silicon Epitaxy = Semiconduct. Semimet. Silicon Front-end Junction Formation-physics and Technology = Mater Res Soc Symp P Silicon Front-end Junction Formation-physics and Technology = Mater. Res. Soc. Symp. P. Silicon Front-end Junction Formation Technologies = Mater Res Soc Symp P Silicon Front-end Junction Formation Technologies = Mater. Res. Soc. Symp. P. Silicon Front-end Technology-materials Processing and Modelling = Mater Res Soc Symp P Silicon Front-end Technology-materials Processing and Modelling = Mater. Res. Soc. Symp. P. Silicon-germanium (sige) Nanostructures: Production, Properties and Applications in Electronics = Woodhead Publ Mater Silicon-germanium (sige) Nanostructures: Production, Properties and Applications in Electronics = Woodhead. Publ. Mater. Silicon-germanium Strained Layers and Heterostructures = Semiconduct Semimet Silicon-germanium Strained Layers and Heterostructures = Semiconduct. Semimet. Silicon Materials-processing, Characterization and Reliability = Mater Res Soc Symp P Silicon Materials-processing, Characterization and Reliability = Mater. Res. Soc. Symp. P. Silicon Molecular Beam Epitaxy = Mater Res Soc Symp P Silicon Molecular Beam Epitaxy = Mater. Res. Soc. Symp. P. Silicon Nitride 93 = Key Eng Mat Silicon Nitride 93 = Key. Eng. Mat. Silicon Nitride 93 = Key Eng Mater Silicon Nitride 93 = Key. Eng. Mater. Silicon Nitride and Silicon Dioxide Thin Insulating Films = Elec Soc S Silicon Nitride and Silicon Dioxide Thin Insulating Films = Elec. Soc. S. Silicon Nitride Ceramics = Mat Res S C Silicon Nitride Ceramics = Mat. Res. S. C. Silicon Nitride, Silicon Dioxide, and Emerging Dielectrics 10 = Ecs Transactions Silicon Nitride, Silicon Dioxide, and Emerging Dielectrics 10 = Ecs. Transactions. Silicon Photonics and Photonic Integrated Circuits Ii = P Soc Photo-opt Ins Silicon Photonics and Photonic Integrated Circuits Ii = P. Soc. Photo-opt. Ins. Silicon Photonics and Photonic Integrated Circuits = Proc Spie Silicon Photonics and Photonic Integrated Circuits = Proc. Spie. Silicon Photonics Ii: Components and Integration = Top Appl Phys Silicon Photonics Ii: Components and Integration = Top. Appl. Phys. Silicon Photonics Iii = Proc Spie Silicon Photonics Iii = Proc. Spie. Silicon Photonics Iii = P Soc Photo-opt Ins Silicon Photonics Iii = P. Soc. Photo-opt. Ins. Silicon Photonics Ii = Proc Spie Silicon Photonics Ii = Proc. Spie. Silicon Photonics Ii = P Soc Photo-opt Ins Silicon Photonics Ii = P. Soc. Photo-opt. Ins. Silicon Photonics Iv = P Soc Photo-opt Ins Silicon Photonics Iv = P. Soc. Photo-opt. Ins. Silicon Photonics = P Soc Photo-opt Ins Silicon Photonics = P. Soc. Photo-opt. Ins. Silicon Photonics = Top Appl Phys Silicon Photonics = Top. Appl. Phys. Silicon Photonics V = Proc Spie Silicon Photonics V = Proc. Spie. Silicon Photonics V = P Soc Photo-opt Ins Silicon Photonics V = P. Soc. Photo-opt. Ins. Silicon Polymers = Adv Polym Sci Silicon Polymers = Adv. Polym. Sci. Silicon Science and Advanced Micro-device Engineering I = Key Eng Mater Silicon Science and Advanced Micro-device Engineering I = Key. Eng. Mater. Silicon Versus Carbon = Nato Science Peace S Silicon Versus Carbon = Nato. Science. Peace. S. Silicon Versus Carbon = Nato Sci Peace Sec B Silicon Versus Carbon = Nato. Sci. Peace. Sec. B. Silikaty = Silikaty Silk: Inheritance and Innovation - Modern Silk Road = Adv Mater Res-switz Silk: Inheritance and Innovation - Modern Silk Road = Adv. Mater. Res-switz. Silk Polymers = Acs Sym Ser Silk Polymers = Acs. Sym. Ser. Silk Road Art and Archaeology. Journal of the Institute of Silk Road Studies, Kamakura = SilkRoadArtA Silurian and Lower Devonian Thelodonts and Putative Chondrichthyans From The Canadian Arctic Archipelago = Spec Pap Palaeontol Silurian and Lower Devonian Thelodonts and Putative Chondrichthyans From The Canadian Arctic Archipelago = Spec. Pap. Palaeontol. Silurian Conodonts From The Yangtze Platform, South China = Spec Pap Palaeontol Silurian Conodonts From The Yangtze Platform, South China = Spec. Pap. Palaeontol. Siluro-devonian Studies 1 = Mem Assoc Australas Siluro-devonian Studies 1 = Mem. Assoc. Australas. Silvae Genetica = Silvae Genet Silvae Genetica = Silvae Genet. Silva Fennica = Silva Fenn Silva Fennica = Silva Fenn. Silver Anniversary Annual International Logistics Symposium = Soc Log E S Silver Anniversary Annual International Logistics Symposium = Soc. Log. E. S. Silver in Healthcare: Its Antimicrobial Efficacy and Safety in Use = Issues Toxicol Silver in Healthcare: Its Antimicrobial Efficacy and Safety in Use = Issues. Toxicol. Silver Metallization: Stability and Reliability = Eng Mater Process Silver Metallization: Stability and Reliability = Eng. Mater. Process. Silver Nanoparticles Applied On Photonics Materials = Nanotechnol Sci Tech Silver Nanoparticles Applied On Photonics Materials = Nanotechnol. Sci. Tech. Silvics and Ecology of Boreal Spruces = For Can New Silvics and Ecology of Boreal Spruces = For. Can. New. Silviculture in Special Places, Proceedings = Us For Serv Rmrs-p Silviculture in Special Places, Proceedings = Us. For. Serv. Rmrs-p. Silviculture in The Tropics = Trop Forest Silviculture in The Tropics = Trop. Forest. Simblos. Scritti di storia antica = Simblos Simbol-x: Focusing On The Hard X-ray Universe = Aip Conf Proc Simbol-x: Focusing On The Hard X-ray Universe = Aip. Conf. Proc. Simian Virus 40 (sv40): Possible Human Polyomavirus = Dev Biol Stand Simian Virus 40 (sv40): Possible Human Polyomavirus = Dev. Biol. Stand. Similarities and Differences Between Atomic Nuclei and Clusters = Aip Conf Proc Similarities and Differences Between Atomic Nuclei and Clusters = Aip. Conf. Proc. Similarity-based Clustering: Recent Developments and Biomedical Applications = Lect Notes Comput Sc Similarity-based Clustering: Recent Developments and Biomedical Applications = Lect. Notes. Comput. Sc. Simiolus-netherlands Quarterly for The History of Art = Simiolus Simiolus-netherlands Quarterly for The History of Art = Simiolus. Simon Dach (1605-1659): Werk Und Nachwirken = Fruhe Neuzeit-stud D Simon Dach (1605-1659): Werk Und Nachwirken = Fruhe. Neuzeit-stud. D. Simon Wiesenthal Center annual = Simon Wiesenthal Cent Annu Simple Lie Alegebras Over Fields of Positive Characteristic, Ii: Classifying The Absolute Toral Rank Two Case = Degruyter Expos Math Simple Lie Alegebras Over Fields of Positive Characteristic, Ii: Classifying The Absolute Toral Rank Two Case = Degruyter. Expos. Math. Simple Lie Algebras Over Fields of Positive Characteristic, I, Structure Theory = Degruyter Expos Math Simple Lie Algebras Over Fields of Positive Characteristic, I, Structure Theory = Degruyter. Expos. Math. Simplicial Complexes of Graphs = Lect Notes Math Simplicial Complexes of Graphs = Lect. Notes. Math. Simplicial Methods for Operads and Algebraic Geometry = Adv Courses Math Crm Simplicial Methods for Operads and Algebraic Geometry = Adv. Courses. Math. Crm. Simplicial Structures in Topology = Cms Books Math Simplicial Structures in Topology = Cms. Books. Math. Simplicity Behind Complexity = Front Nonlinear Dyn Simplicity Behind Complexity = Front. Nonlinear. Dyn. Simplicity-design Technology Business Life = Simplicity-des Techn Simplicity-design Technology Business Life = Simplicity-des. Techn. Simulated Evolution and Learning = Lect Notes Artif Int Simulated Evolution and Learning = Lect. Notes. Artif. Int. Simulated Evolution and Learning = Lect Notes Comput Sc Simulated Evolution and Learning = Lect. Notes. Comput. Sc. Simulated Evolution and Learning, Proceedings = Lect Notes Comput Sc Simulated Evolution and Learning, Proceedings = Lect. Notes. Comput. Sc. Simulating An Ageing Population: A Microsimulation Approach Applied to Sweden = Contrib Econ Anal Simulating An Ageing Population: A Microsimulation Approach Applied to Sweden = Contrib. Econ. Anal. Simulating Complex Systems By Cellular Automata = Underst Complex Syst Simulating Complex Systems By Cellular Automata = Underst. Complex Syst. Simulating Fuzzy Systems = Stud Fuzz Soft Comp Simulating Fuzzy Systems = Stud. Fuzz. Soft. Comp. Simulating Interacting Agents and Social Phenomena: The Second World Congress = Springer Ser Agent B Simulating Interacting Agents and Social Phenomena: The Second World Congress = Springer. Ser. Agent. B. Simulating Spacecraft Systems = Springer Aerosp Tech Simulating Spacecraft Systems = Springer. Aerosp. Tech. Simulation and Assessment of Chemical Processes in A Multiphase Environment = Nato Sci Peace Secur Simulation and Assessment of Chemical Processes in A Multiphase Environment = Nato. Sci. Peace. Secur. Simulation and Inference for Stochastic Differential Equations: With R Examples = Springer Ser Stat Simulation and Inference for Stochastic Differential Equations: With R Examples = Springer. Ser. Stat. Simulation and Its Discontents = Simplicity-des Techn Simulation and Its Discontents = Simplicity-des. Techn. Simulation and Optimization = Lect Notes Econ Math Simulation and Optimization = Lect. Notes. Econ. Math. Simulation and Simulators - Virtual Mobility = Vdi Bericht Simulation and Simulators - Virtual Mobility = Vdi. Bericht. Simulation and Theory of Electrostatic Interactions in Solution = Aip Conf Proc Simulation and Theory of Electrostatic Interactions in Solution = Aip. Conf. Proc. Simulation and Visualization On The Grid, Proceedings = Lect Notes Comp Sci Simulation and Visualization On The Grid, Proceedings = Lect. Notes. Comp. Sci. Simulation Approaches in Transportation Analysis: Recent Advances and Challenges = Oper Res Comput Sci Simulation Approaches in Transportation Analysis: Recent Advances and Challenges = Oper. Res. Comput. Sci. Simulation-based Algorithms for Markov Decision Processes = Commun Control Eng Simulation-based Algorithms for Markov Decision Processes = Commun. Control. Eng. Simulation & games = Simul Games Simulation & Gaming = Simulat Gaming Simulation & Gaming = Simulat. Gaming Simulation & gaming = Simul Gaming Simulation in Business and Management, 1991 = Simul Series Simulation in Business and Management, 1991 = Simul. Series. Simulation in Business and Management = Simul Series Simulation in Business and Management = Simul. Series. Simulation in Healthcare = Simul Healthc Simulation in Healthcare = Simul. Healthc. Simulation Methods for Reliability and Availability of Complex Systems = Springer Ser Reliab Simulation Methods for Reliability and Availability of Complex Systems = Springer. Ser. Reliab. Simulation, Modeling, and Programming for Autonomous Robots, Proceedings = Lect Notes Artif Int Simulation, Modeling, and Programming for Autonomous Robots, Proceedings = Lect. Notes. Artif. Int. Simulation Modelling Practice and Theory = Simul. Modell. Pract. Theory Simulation Modelling Practice and Theory = Simul Model Pract Th Simulation Modelling Practice and Theory = Simul. Model. Pract. Th. Simulation Monographs = Simulat Mg Simulation Monographs = Simulat. Mg. Simulation of Electrochemical Processes Ii = Wit Trans Eng Sci Simulation of Electrochemical Processes Ii = Wit. Trans. Eng. Sci. Simulation of Electrochemical Processes = Wit Trans Eng Sci Simulation of Electrochemical Processes = Wit. Trans. Eng. Sci. Simulation of Industrial Systems: Discrete Event Simulation Using Excel/vba = Eng Manag Innov Ser Simulation of Industrial Systems: Discrete Event Simulation Using Excel/vba = Eng. Manag. Innov. Ser. Simulation Practice and Theory = Simulat Pract Theory Simulation Practice and Theory = Simulat. Pract. Theory Simulation Practice and Theory = Simul. Pract. Theory Simulation: Pragmatic Construction of Reality = Sociol Sci Yearb Simulation: Pragmatic Construction of Reality = Sociol. Sci. Yearb. Simulation: Presentation Technique and Cognitive Method = Context Archit Simulation: Presentation Technique and Cognitive Method = Context. Archit. Simulation Series = Simul Series Simulation Series = Simul. Series Simulation = Simulation Simulations in Biomedicine V = Adv Comp Bioeng Simulations in Biomedicine V = Adv. Comp. Bioeng. Simulation Techiques for Applied Dynamics = Cism Cour L Simulation Techiques for Applied Dynamics = Cism. Cour. L. Simulation Techiques for Applied Dynamics = Cism Courses Lect Simulation Techiques for Applied Dynamics = Cism. Courses. Lect. Simulation-transactions of The Society for Modeling and Simulation International = Simul-t Soc Mod Sim Simulation-transactions of The Society for Modeling and Simulation International = Simul-t. Soc. Mod. Sim. Simulators International Xiv = Simul Series Simulators International Xiv = Simul. Series. Simulators Ix = Simul Series Simulators Ix = Simul. Series. Simulators Vi = Simul Series Simulators Vi = Simul. Series. Simulators X = Simul Series Simulators X = Simul. Series. Simvec - Numerical Analysis and Simulation in Vehicle Engineering 2008 = Vdi Bericht Simvec - Numerical Analysis and Simulation in Vehicle Engineering 2008 = Vdi. Bericht. Sinai Hospital journal = Sinai Hosp J (Balt) SINET: Ethiopian Journal of Science = SINET Singapore dental journal = Singapore Dent J Singapore Dental Journal = Singapore Dent. J. Singapore Economic Review = Singap Econ Rev Singapore Economic Review = Singap. Econ. Rev. Singapore Economic Review=Singapore Econ. Rev. Singapore Economic Review = Singapore Econ Rev Singapore Economic Review = Singapore Econ. Rev. Singapore Economy: An Econometric Perspective = Routledge Stud Growt Singapore Economy: An Econometric Perspective = Routledge. Stud. Growt. Singapore in The Global System: Relationship, Structure, and Change = Routl Cont Se Asia S Singapore in The Global System: Relationship, Structure, and Change = Routl. Cont. Se. Asia. S. Singapore in The Malay World: Building and Breaching Regional Bridges = Asias Transform Singapore in The Malay World: Building and Breaching Regional Bridges = Asias. Transform. Singapore Journal of Obstetrics & Gynaecology = Singapore J Obstet Singapore Journal of Obstetrics & Gynaecology = Singapore J. Obstet. Singapore journal of obstetrics & gynaecology = Singapore J Obstet Gynecol Singapore journal of tropical geography = Singap J Trop Geogr Singapore Journal of Tropical Geography = Singapore J Trop Geo Singapore Journal of Tropical Geography = Singapore J. Trop. Geo. Singapore libraries = Singap Libr Singapore Medical Journal = Singap Med J Singapore Medical Journal = Singap. Med. J. Singapore medical journal = Singapore Med J Singapore Medical Journal=Singapore Med J;; Singapore Medical Journal = Singapore Med. J. Singapore statistical bulletin. Singapore. National Statistical Commission = Singap Stat Bull Singapore: Wealth, Power and The Culture of Control = Asias Transform Singapore: Wealth, Power and The Culture of Control = Asias. Transform. Singer and The Scribe: European Ballad Traditions and European Ballad Cultures = Int For Lit Singer and The Scribe: European Ballad Traditions and European Ballad Cultures = Int. For. Lit. Singing Poets: Literature and Popular Music in France and Greece = Stud Comp Lit Ser Singing Poets: Literature and Popular Music in France and Greece = Stud. Comp. Lit. Ser. Singing The New Song: Literacy and Liturgy in Late Medieval England = Middle Ages Ser Singing The New Song: Literacy and Liturgy in Late Medieval England = Middle. Ages. Ser. Single Charge Tunneling = Nato Adv Sci I B-phy Single Charge Tunneling = Nato. Adv. Sci. I. B-phy. Single Crystal Growth, Characterization, and Applications = Proc Spie Single Crystal Growth, Characterization, and Applications = Proc. Spie. Single Crystal Growth, Characterization, and Applications = P Soc Photo-opt Ins Single Crystal Growth, Characterization, and Applications = P. Soc. Photo-opt. Ins. Single Crystal - Large Grain Niobium Technology = Aip Conf Proc Single Crystal - Large Grain Niobium Technology = Aip. Conf. Proc. Single-dish Radio Astronomy: Techniques and Applications = Astr Soc P Single-dish Radio Astronomy: Techniques and Applications = Astr. Soc. P. Single-electron Tunneling and Mesoscopic Devices = Sprin S Ele Single-electron Tunneling and Mesoscopic Devices = Sprin. S. Ele. Single Molecule Enzymology: Methods and Protocols = Methods Mol Biol Single Molecule Enzymology: Methods and Protocols = Methods Mol. Biol. Single-molecule Magnets and Related Phenomena = Struct Bond Single-molecule Magnets and Related Phenomena = Struct. Bond. Single Molecule Spectroscopy and Imaging Iii = Proc Spie Single Molecule Spectroscopy and Imaging Iii = Proc. Spie. Single Molecule Spectroscopy and Imaging Ii = Proc Spie Single Molecule Spectroscopy and Imaging Ii = Proc. Spie. Single Molecule Spectroscopy and Imaging Ii = P Soc Photo-opt Ins Single Molecule Spectroscopy and Imaging Ii = P. Soc. Photo-opt. Ins. Single Molecule Spectroscopy and Imaging = Proc Spie Single Molecule Spectroscopy and Imaging = Proc. Spie. Single Molecule Spectroscopy and Imaging = P Soc Photo-opt Ins Single Molecule Spectroscopy and Imaging = P. Soc. Photo-opt. Ins. Single Molecule Spectroscopy in Chemistry, Physics and Biology = Springer Ser Chem Ph Single Molecule Spectroscopy in Chemistry, Physics and Biology = Springer. Ser. Chem. Ph. Single Molecule Spectroscopy in Chemistry, Physics and Biology = Springer Series Chem Single Molecule Spectroscopy in Chemistry, Physics and Biology = Springer. Series. Chem. Single Molecules = Single Mol Single Molecules = Single Mol. Single Nucleotide Polymorphisms: Methods and Protocols, Second Edition = Methods Mol Biol Single Nucleotide Polymorphisms: Methods and Protocols, Second Edition = Methods Mol. Biol. Single-photon Imaging = Springer Ser Opt Sci Single-photon Imaging = Springer. Ser. Opt. Sci. Single Quantum Dots: Fundamentals, Applications and New Concepts = Top Appl Phys Single Quantum Dots: Fundamentals, Applications and New Concepts = Top. Appl. Phys. Single Semiconductor Quantum Dots = Nanosci Technol Single Semiconductor Quantum Dots = Nanosci. Technol. Single-sensor Imaging: Methods and Applications for Digital Cameras = Image Process Ser Single-sensor Imaging: Methods and Applications for Digital Cameras = Image. Process. Ser. Singlet Oxygen, Uv-a, and Ozone = Method Enzymol Singlet Oxygen, Uv-a, and Ozone = Method. Enzymol. Singlet Oxygen, Uv-a, and Ozone = Methods Enzymol Singlet Oxygen, Uv-a, and Ozone = Methods. Enzymol. Singmul Hakhoe chi. The Korean journal of botany = Singmul Hakhoe Chi Sing Out = Sing Out Singt Dem Herrn Nah Und Fern = Hallesche Forschung Singt Dem Herrn Nah Und Fern = Hallesche. Forschung. Singular Audiology Textbook = Sing Audiol Textbk Singular Audiology Textbook = Sing. Audiol. Textbk. Singular Coverings of Toposes = Lect Notes Math Singular Coverings of Toposes = Lect. Notes. Math. Singular Integral Operators and Related Topics = Oper Theor Singular Integral Operators and Related Topics = Oper. Theor. Singular Integral Operators, Factorization and Applications = Oper Theor Singular Integral Operators, Factorization and Applications = Oper. Theor. Singular Integral Operators, Factorization and Applications = Oper Theory Adv Appl Singular Integral Operators, Factorization and Applications = Oper. Theory. Adv. Appl. Singularities I: Algebraic and Analytic Aspects = Contemp Math Singularities I: Algebraic and Analytic Aspects = Contemp. Math. Singularities Ii: Geometric and Topological Aspects = Contemp Math Singularities Ii: Geometric and Topological Aspects = Contemp. Math. Singularities in Fluids, Plasmas, and Optics = Nato Adv Sci Inst Se Singularities in Fluids, Plasmas, and Optics = Nato. Adv. Sci. Inst. Se. Singularities in Nonlinear Evolution Phenomena and Applications Proceedings = Crm Ser Singularities in Nonlinear Evolution Phenomena and Applications Proceedings = Crm. Ser. Singularities in Pde and The Calculus of Variations = Crm Proc & Lect Note Singularities in Pde and The Calculus of Variations = Crm. Proc. &. Lect. Note. Singularities, Lille 1991 = Lond Math S Singularities, Lille 1991 = Lond. Math. S. Singularities - Niigata - Toyama 2007 = Adv Stu P M Singularities - Niigata - Toyama 2007 = Adv. Stu. P. M. Singularities of Integrals: Homology, Hyperfunctions and Microlocal Analysis = Universitext Singularities of Integrals: Homology, Hyperfunctions and Microlocal Analysis = Universitext. Singularities - Sapporo 1998 = Adv Stu P M Singularities - Sapporo 1998 = Adv. Stu. P. M. Singularity Theory and Its Applications, Warwick 1989, Pt 1 = Lect Notes Math Singularity Theory and Its Applications, Warwick 1989, Pt 1 = Lect. Notes. Math. Singularity Theory and Its Applications, Warwick 1989, Pt 2 = Lect Notes Math Singularity Theory and Its Applications, Warwick 1989, Pt 2 = Lect. Notes. Math. Singular Limits in Thermodynamics of Viscous Fluids = Adv Math Fluid Mech Singular Limits in Thermodynamics of Viscous Fluids = Adv. Math. Fluid. Mech. Singular Limits of Dispersive Waves = Nato Adv Sci Inst Se Singular Limits of Dispersive Waves = Nato. Adv. Sci. Inst. Se. Singular Perturbation Problems in Chemical Physics = Adv Chem Phys Singular Perturbation Problems in Chemical Physics = Adv. Chem. Phys. Singular Problems in Shell Theory: Computing and Asymptotics = Lect Notes Appl Comp Singular Problems in Shell Theory: Computing and Asymptotics = Lect. Notes. Appl. Comp. Singular Reference: A Descriptivist Perspective = Philos Stud Ser Singular Reference: A Descriptivist Perspective = Philos. Stud. Ser. Singular Stochastic Differential Equations = Lect Notes Math Singular Stochastic Differential Equations = Lect. Notes. Math. Sinhalese Buddhist Nationalist Ideology: Implications for Politics and Conflict Resolution in Sri Lanka = Pol Stud Sinhalese Buddhist Nationalist Ideology: Implications for Politics and Conflict Resolution in Sri Lanka = Pol. Stud. Sinica Leidensia = Sinica Leidensia Sinkholes and The Engineering and Environmental Impacts of Karst = Geotech Sp Sinkholes and The Engineering and Environmental Impacts of Karst = Geotech. Sp. Sinnformeln-linguistische Und Soziologische Analysen Von Leitbildern, Metaphern Und Anderen Kollektiven Orientierungsmustern = Linguist-impulse Ten Sinnformeln-linguistische Und Soziologische Analysen Von Leitbildern, Metaphern Und Anderen Kollektiven Orientierungsmustern = Linguist-impulse. Ten. Sin Nombre = Sin Nombre Sinn Und Form = Sinn Form Sinn Und Form: The Anatomy of A Literary Journal = Interd Germ Cult Sinn Und Form: The Anatomy of A Literary Journal = Interd. Germ. Cult. Sino-christian Studies = Sino-christ Stud Sino-christian Studies = Sino-christ. Stud. Sino-tibetan Dialogue in The Post-mao Era: Lessons and Prospects = Pol Stud Sino-tibetan Dialogue in The Post-mao Era: Lessons and Prospects = Pol. Stud. Sins - Small Ionized and Neutral Structures in The Diffuse Interstellar Medium = Astr Soc P Sins - Small Ionized and Neutral Structures in The Diffuse Interstellar Medium = Astr. Soc. P. Sintering 91 = Sol St Phen Sintering 91 = Sol. St. Phen. Sintering Fundamentals = Mater Sci Forum Sintering Fundamentals = Mater. Sci. Forum. Sintering of Advanced Ceramics = Ceram Trans Sintering of Advanced Ceramics = Ceram. Trans. Sintering of Advanced Materials: Fundamentals and Processes = Woodhead Publ Mater Sintering of Advanced Materials: Fundamentals and Processes = Woodhead. Publ. Mater. Sintering of Systems With Interacting Components = Mater Sci Found Sintering of Systems With Interacting Components = Mater. Sci. Found. Sintesi medica = Sintesi Medica Sioel '99: Sixth Symposium On Optoelectronics = Proc Spie Sioel '99: Sixth Symposium On Optoelectronics = Proc. Spie. Sioel '99: Sixth Symposium On Optoelectronics = P Soc Photo-opt Ins Sioel '99: Sixth Symposium On Optoelectronics = P. Soc. Photo-opt. Ins. Siop Organizational Frontiers Series = Siop Organ Front Ser Siop Organizational Frontiers Series = Siop Organ. Front. Ser. Sipri Chemical & Biological Warfare Studies = Sipri Chem Sipri Chemical & Biological Warfare Studies = Sipri Chem. Sips: 2009 Ieee Workshop On Signal Processing Systems = Ieee Wrk Sig Pro Sys Sips: 2009 Ieee Workshop On Signal Processing Systems = Ieee Wrk. Sig. Pro. Sys. Sip: Understanding The Session Initiation Protocol, Third Edition = Artech Hse Telecom S Sip: Understanding The Session Initiation Protocol, Third Edition = Artech. Hse. Telecom. S. Sirach, Scrolls, and Sages = Stud Text Des Judah Sirach, Scrolls, and Sages = Stud. Text. Des. Judah. Siren Songs: Representations of Gender and Sexuality in Opera = Prin Stud Opera Siren Songs: Representations of Gender and Sexuality in Opera = Prin. Stud. Opera Siriraj Hospital gazette = Siriraj Hosp Gaz Sirius Matters = Astrophys Space Sc L Sirius Matters = Astrophys. Space. Sc. L. Sispad 2010 - 15th International Conference On Simulation of Semiconductor Processes and Devices = Int Conf Sim Semi Pr Sispad 2010 - 15th International Conference On Simulation of Semiconductor Processes and Devices = Int. Conf. Sim. Semi. Pr. Sistema nervoso = Sist Nerv Sistema Nervoso = Sist. Nerv. Sistemi urbani = Sist Urbani Sisters and Brothers of The Common Life: The Devotio Moderna and The World of The Later Middle Ages = Middle Ages Ser Sisters and Brothers of The Common Life: The Devotio Moderna and The World of The Later Middle Ages = Middle Ages Ser. Sisters in The Botherhoods: Working Women Organizing for Equality in New York City = Palgr Stud Oral Hist Sisters in The Botherhoods: Working Women Organizing for Equality in New York City = Palgr. Stud. Oral. Hist. Sistole = Sistole Sites of Discourse - Public and Private Spheres - Legal Culture = Int For Lit Sites of Discourse - Public and Private Spheres - Legal Culture = Int. For. Lit. Sites of Discourse - Public and Private Spheres - Legal Culture = Int Forsch Allg Vgl Sites of Discourse - Public and Private Spheres - Legal Culture = Int. Forsch. Allg. Vgl. Sites of The Uncanny = Interd Germ Cult Sites of The Uncanny = Interd. Germ. Cult. Sites-the Journal of 20th-century Contemporary French Studies = Sites Sites-the Journal of 20th-century Contemporary French Studies = Sites. Sittengesetz Und Freiheit: Untersuchungen Zu Immanuel Kants Theorie Des Freien Willens = Quellen Stud Philos Sittengesetz Und Freiheit: Untersuchungen Zu Immanuel Kants Theorie Des Freien Willens = Quellen. Stud. Philos. Situated Communication = Trends Linguist-stud Situated Communication = Trends. Linguist-stud. Situating Globality = Afr Dyn Situating Globality = Afr. Dyn. Situational Method Engineering: Fundamentals and Experiences = Int Fed Info Proc Situational Method Engineering: Fundamentals and Experiences = Int. Fed. Info. Proc. Situations and Individuals = Curr Stud Linguist Situations and Individuals = Curr. Stud. Linguist. Situation-specific Management in Irrigation = Dvwk Bull Situation-specific Management in Irrigation = Dvwk. Bull. Situation Theory and Its Applications, Vol 1 = Csli Lect N Situation Theory and Its Applications, Vol 1 = Csli. Lect. N. Sitzungsberichte Bayerische Akademie der Wissenschaften, Mathematische - Naturwissenschaftliche Klasse = Sitzungsber. Bayer. Akad. Wiss. Math. Naturwiss. Kl. Sitzungsberichte der Akademie der Wissenschaften in Berlin, Gesellschaftswissenschaften (G) = SAWDDR Sitzungsberichte der Bayerischen Akademie der Wissenschaften, Philos.- Hist. Klasse = SBAW Sitzungsberichte der Deutschen Akademie der Wissenschaften zu Berlin. Klasse für Sprache, Literatur und Kunst = SBBerlin Sitzungsberichte der Heidelberger Akademie der Wissenschaften, Mathematische - Naturwissenschaftliche Klasse = Sitzungsber. Heidelb. Akad. Wiss. Math. Naturwiss. Kl. Sitzungsberichte der Heidelberger Akademie der Wissenschaften, Mathematisch-Naturwissenschaftliche Klasse = Sitzungsber Heidelb Akad Wiss Math Naturwiss Kl Sitzungsberichte der Heidelberger Akademie der Wissenschaften, Philos.- Hist. Klasse = SHAW Sitzungsberichte der Koniglichen Preussischen Akademie der Wissenschaften = Sitzungsber. K. Preuss. Akad. Wiss. Sitzungsberichte Der Koniglich Preussischen Akademie Der Wissenschaften = Sitzber K Preuss Aka Sitzungsberichte Der Koniglich Preussischen Akademie Der Wissenschaften = Sitzber. K. Preuss. Aka. Sitzungsberichte der Mathematisch-Naturwissenschaftlichen Klasse = Sitzungsber. Math.-Naturwiss. Kl. Sitzungsberichte der Österreichischen Akademie der Wissenschaft in Wien, Philos.-Hist. Klasse = SAWW Sitzungsberichte Der Preussichen Akademie Der Wissenschaften Physikalisch-mathematische Klasse = Sitzber Preuss Akad Sitzungsberichte Der Preussichen Akademie Der Wissenschaften Physikalisch-mathematische Klasse = Sitzber. Preuss. Akad. Sitzungsberichte der Sächsischen Akademie der Wissenschaften zu Leipzig = SBLeipzig Sitzungsberichte der Wissenschaftlichen Gesellschaft an der Johann Wolfgang Goethe-Universität Frankfurt am Main = Sitzungsber. Wiss. Ges. Johann Wolfgang Goethe-Univ. Frankfurt am Main Sitzungsberichte. Österreichische Akademie der Wissenschaften = SBWien Six-day War and World Jewry = Stud Text Jew Hist Six-day War and World Jewry = Stud. Text. Jew. Hist. Six International Conference of The Balkan Physical Union = Aip Conf Proc Six International Conference of The Balkan Physical Union = Aip. Conf. Proc. Six Lectures On Commutative Algebra = Prog Math Six Lectures On Commutative Algebra = Prog. Math. Six-port Technique With Microwave and Wireless Applications = Artech Hse Microw Li Six-port Technique With Microwave and Wireless Applications = Artech. Hse. Microw. Li. Sixteenth Biennial University/government/industry Microelectronics Symposium, Proceedings = P Univ Govt Ind Micr Sixteenth Biennial University/government/industry Microelectronics Symposium, Proceedings = P. Univ. Govt. Ind. Micr. Sixteenth Century Essays & Studies = Sixt Century Essays Sixteenth Century Essays & Studies = Sixt. Century Essays Sixteenth Century Journal = Sixteenth Cent J Sixteenth Century Journal = Sixteenth Cent. J. Sixteenth International Conference On Numerical Methods in Fluid Dynamics = Lect Notes Phys Sixteenth International Conference On Numerical Methods in Fluid Dynamics = Lect. Notes. Phys. Sixteenth Symposium On Nucleic Acids Chemistry = Nucl Acid S Sixteenth Symposium On Nucleic Acids Chemistry = Nucl. Acid. S. Sixteenth Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst Sixteenth Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. Sixth Annual Ieee Symposium On Computer-based Medical Systems = Comp Med Sy Sixth Annual Ieee Symposium On Computer-based Medical Systems = Comp. Med. Sy. Sixth Cooleys Anemia Symposium = Ann Ny Acad Sci Sixth Cooleys Anemia Symposium = Ann. Ny. Acad. Sci. Sixth Copper Mountain Conference On Multigrid Methods = Nasa Conf P Sixth Copper Mountain Conference On Multigrid Methods = Nasa. Conf. P. Sixth Cryogenics 2000, Proceedings = Refr Sci T Sixth Cryogenics 2000, Proceedings = Refr. Sci. T. Sixth European Symposium On Space Environmental Control Systems, Vols 1 and 2 = Esa Sp Publ Sixth European Symposium On Space Environmental Control Systems, Vols 1 and 2 = Esa. Sp. Publ. Sixth-Generation Computer Technology Series = Sixth-Gener. Comput. Tech. Ser. Sixth Great Lakes Symposium On Vlsi, Proceedings = Pr Gr Lak Symp Vlsi Sixth Great Lakes Symposium On Vlsi, Proceedings = Pr. Gr. Lak. Symp. Vlsi. Sixth Hutton Symposium On The Origin of Granites and Related Rocks: Proceedings of A Symposium = Geol Soc Am Spec Pap Sixth Hutton Symposium On The Origin of Granites and Related Rocks: Proceedings of A Symposium = Geol. Soc. Am. Spec. Pap. Sixth Iee Conference On Telecommunications = Iee Conf Publ Sixth Iee Conference On Telecommunications = Iee Conf. Publ. Sixth Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int C Eng Comp Sixth Ieee International Conference On Engineering of Complex Computer Systems, Proceedings = Ieee Int. C. Eng. Comp. Sixth Ieee International Symposium On A World of Wireless Mobile and Multimedia Networks, Proceedings = I S World Wirel Mobi Sixth Ieee International Symposium On A World of Wireless Mobile and Multimedia Networks, Proceedings = I. S. World Wirel. Mobi. Sixth International Conference On Advanced Optical Materials and Devices (aomd-6) = P Soc Photo-opt Ins Sixth International Conference On Advanced Optical Materials and Devices (aomd-6) = P. Soc. Photo-opt. Ins. Sixth International Conference On Antennas and Propagation ( Icap 89 ), Parts 1-2 = Iee Conf Publ Sixth International Conference On Antennas and Propagation ( Icap 89 ), Parts 1-2 = Iee. Conf. Publ. Sixth International Conference On Correlation Optics = Proc Spie Sixth International Conference On Correlation Optics = Proc. Spie. Sixth International Conference On Correlation Optics = P Soc Photo-opt Ins Sixth International Conference On Correlation Optics = P. Soc. Photo-opt. Ins. Sixth International Conference On Creep and Fatigue = Imeche Conf Trans Sixth International Conference On Creep and Fatigue = Imeche. Conf. Trans. Sixth International Conference On Dielectric Materials, Measurements and Applications = Iee Conf Publ Sixth International Conference On Dielectric Materials, Measurements and Applications = Iee. Conf. Publ. Sixth International Conference On Digital Processing of Signals in Communications = Iee Conf Publ Sixth International Conference On Digital Processing of Signals in Communications = Iee. Conf. Publ. Sixth International Conference On Education and Training in Optics and Photonics = P Soc Photo-opt Ins Sixth International Conference On Education and Training in Optics and Photonics = P. Soc. Photo-opt. Ins. Sixth International Conference On Electrical Machines and Drives = Iee Conf Publ Sixth International Conference On Electrical Machines and Drives = Iee. Conf. Publ. Sixth International Conference On Hf Radio Systems and Techniques = Iee Conf Publ Sixth International Conference On Hf Radio Systems and Techniques = Iee. Conf. Publ. Sixth International Conference On Image Processing and Its Applications, Vol 1 = Iee Conf Publ Sixth International Conference On Image Processing and Its Applications, Vol 1 = Iee. Conf. Publ. Sixth International Conference On Inertial Fusion Sciences and Applications, Parts 1-4 = J Phys Conf Ser Sixth International Conference On Inertial Fusion Sciences and Applications, Parts 1-4 = J. Phys. Conf. Ser. Sixth International Conference On Material Science and Material Properties for Infrared Optoelectronics = Proc Spie Sixth International Conference On Material Science and Material Properties for Infrared Optoelectronics = Proc. Spie. Sixth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P Soc Photo-opt Ins Sixth International Conference On Material Science and Material Properties for Infrared Optoelectronics = P. Soc. Photo-opt. Ins. Sixth International Conference On Perspectives in Hadronic Physics = Aip Conf Proc Sixth International Conference On Perspectives in Hadronic Physics = Aip. Conf. Proc. Sixth International Conference On Quality Control By Artificial Vision = Proc Spie Sixth International Conference On Quality Control By Artificial Vision = Proc. Spie. Sixth International Conference On Quality Control By Artificial Vision = P Soc Photo-opt Ins Sixth International Conference On Quality Control By Artificial Vision = P. Soc. Photo-opt. Ins. Sixth International Conference On Road Traffic Monitoring and Control = Iee Conf Publ Sixth International Conference On Road Traffic Monitoring and Control = Iee. Conf. Publ. Sixth International Conference On Solid State Lighting = P Soc Photo-opt Ins Sixth International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Sixth International Conference On The Quantitative Evaluation of Systems, Proceedings = Int Conf Quant Eval Sixth International Conference On The Quantitative Evaluation of Systems, Proceedings = Int. Conf. Quant. Eval. Sixth International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Sixth International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Sixth International Conference On Turbocharging and Air Management Systems = Imeche Conf Trans Sixth International Conference On Turbocharging and Air Management Systems = Imeche. Conf. Trans. Sixth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc Spie Sixth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = Proc. Spie. Sixth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Sixth International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Sixth International Conference On Vibrations in Rotating Machinery = Imeche Conf Trans Sixth International Conference On Vibrations in Rotating Machinery = Imeche. Conf. Trans. Sixth International Conf On Metering Apparatus and Tariffs for Electricity Supply = Iee Conf Publ Sixth International Conf On Metering Apparatus and Tariffs for Electricity Supply = Iee. Conf Publ. Sixth International Conf On Mobile Radio and Personal Communications = Iee Conf Publ Sixth International Conf On Mobile Radio and Personal Communications = Iee. Conf Publ. Sixth International Ishs Symposium On The Processing Tomato - Workshop On Irrigation and Fertigation of Processing Tomato = Acta Hortic Sixth International Ishs Symposium On The Processing Tomato - Workshop On Irrigation and Fertigation of Processing Tomato = Acta. Hortic. Sixth International Symposium On Atmospheric and Ocean Optics = P Soc Photo-opt Ins Sixth International Symposium On Atmospheric and Ocean Optics = P. Soc. Photo-opt. Ins. Sixth International Symposium On Digital Earth: Data Processing and Applications = Proc Spie Sixth International Symposium On Digital Earth: Data Processing and Applications = Proc. Spie. Sixth International Symposium On Digital Earth: Data Processing and Applications = P Soc Photo-opt Ins Sixth International Symposium On Digital Earth: Data Processing and Applications = P. Soc. Photo-opt. Ins. Sixth International Symposium On Digital Earth: Models, Algorithms, and Virtual Reality = P Soc Photo-opt Ins Sixth International Symposium On Digital Earth: Models, Algorithms, and Virtual Reality = P. Soc. Photo-opt. Ins. Sixth International Symposium On Display Holography = P Soc Photo-opt Ins Sixth International Symposium On Display Holography = P. Soc. Photo-opt. Ins. Sixth International Symposium On Neural Networks (isnn 2009) = Adv Intell Soft Comp Sixth International Symposium On Neural Networks (isnn 2009) = Adv. Intell. Soft. Comp. Sixth International Symposium On Neural Networks (isnn 2009) = Adv Intel Soft Compu Sixth International Symposium On Neural Networks (isnn 2009) = Adv. Intel. Soft. Compu. Sixth International Symposium On Optical Storage (isos 2002) = P Soc Photo-opt Ins Sixth International Symposium On Optical Storage (isos 2002) = P. Soc. Photo-opt. Ins. Sixth International Symposium On Pear Growing = Acta Hortic Sixth International Symposium On Pear Growing = Acta. Hortic. Sixth International Symposium On Postharvest Physiology of Ornamental Plants = Acta Hortic Sixth International Symposium On Postharvest Physiology of Ornamental Plants = Acta. Hortic. Sixth International Symposium On Vaccinium Culture = Acta Hortic Sixth International Symposium On Vaccinium Culture = Acta. Hortic. Sixth International Williston Basin Symposium = Sask Geo Sp Sixth International Williston Basin Symposium = Sask. Geo. Sp. Sixth International Workshop On Neutrino-nucleus Interactions in The Few-gev Region = Aip Conf Proc Sixth International Workshop On Neutrino-nucleus Interactions in The Few-gev Region = Aip. Conf. Proc. Sixth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Sixth International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Sixth Iutam Symposium On Laminar-turbulent Transition = Fluid Mec A Sixth Iutam Symposium On Laminar-turbulent Transition = Fluid. Mec. A. Sixth Iutam Symposium On Laminar-turbulent Transition = Fluid Mech Appl Sixth Iutam Symposium On Laminar-turbulent Transition = Fluid. Mech. Appl. Sixth Mill Operators' Conference = Australas I Min Met Sixth Mill Operators' Conference = Australas. I. Min. Met. Sixth National Conference On Engineering Heritage 1992 = Inst Eng A Sixth National Conference On Engineering Heritage 1992 = Inst. Eng. A. Sixth Pacific Northwest Fiber Optic Sensor Workshop = P Soc Photo-opt Ins Sixth Pacific Northwest Fiber Optic Sensor Workshop = P. Soc. Photo-opt. Ins. Sixth Quantum 1/f Noise and Other Low Frequency Fluctuations in Electron Devices Symposium = Aip Conf Proc Sixth Quantum 1/f Noise and Other Low Frequency Fluctuations in Electron Devices Symposium = Aip. Conf. Proc. Sixth Scandinavian Conference On Artificial Intelligence = Fr Art Int Sixth Scandinavian Conference On Artificial Intelligence = Fr. Art. Int. Sixth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P Soc Photo-opt Ins Sixth Seminar On Problems of Theoretical and Applied Electron and Ion Optics = P. Soc. Photo-opt. Ins. Sixth, Seventh, and Eighth Workshops On Virtual Intelligence = P Soc Photo-opt Ins Sixth, Seventh, and Eighth Workshops On Virtual Intelligence = P. Soc. Photo-opt. Ins. Sixth Symposium: Optics in Industry = P Soc Photo-opt Ins Sixth Symposium: Optics in Industry = P. Soc. Photo-opt. Ins. Sixth Texas-mexico Conference On Astrophysics: Astrophysical Plasmas Near and Far = Rev Mex Ast Astr Sixth Texas-mexico Conference On Astrophysics: Astrophysical Plasmas Near and Far = Rev. Mex. Ast. Astr. Sixth Uk National Conference On Heat Transfer = Imeche Conf Trans Sixth Uk National Conference On Heat Transfer = Imeche. Conf. Trans. Sixty-two Years of Uncertainty = Nato Adv Sci I B-phy Sixty-two Years of Uncertainty = Nato. Adv. Sci. I. B-phy. Si yu yan = Si Yu Yan Size- and Age-related Changes in Tree Structure and Function = Tree Physiol Ser Size- and Age-related Changes in Tree Structure and Function = Tree Physiol. Ser. Size Effects in Metals, Semiconductors and Inorganic Compounds = Key Eng Mater Size Effects in Metals, Semiconductors and Inorganic Compounds = Key. Eng. Mater. Sizing in Clothing: Developing Effective Sizing Systems for Ready-to-wear Clothing = Woodhead Publ Ser Te Sizing in Clothing: Developing Effective Sizing Systems for Ready-to-wear Clothing = Woodhead. Publ. Ser. Te. Sjukskoterskan = Sjukskoterskan Sjukskoterskan / Svensk sjukskoterskeforening = Sjukskoterskan Skandinavisches Archiv fur Physiologie = Skand Arch Physiol Skandinavisches Archiv Fur Physiologie = Skand Arch Physiol Skandinavisches Archiv Fur Physiologie = Skand. Arch. Physiol. Skandinaviska Banken Quarterly Review=Skand. Banken Quart. Rev. Skandinavisk Aktuarietidskrift = Skand Aktuarietidskr Skandinavisk Aktuarietidskrift = Skand. Aktuarietidskr. Skandinavistik = Skandinavistik Skeletal Biology and Medicine = Ann Ny Acad Sci Skeletal Biology and Medicine = Ann. Ny. Acad. Sci. Skeletal Biology and Medicine, Pt A = Ann Ny Acad Sci Skeletal Biology and Medicine, Pt A = Ann. Ny. Acad. Sci. Skeletal Biology and Medicine, Pt B = Ann Ny Acad Sci Skeletal Biology and Medicine, Pt B = Ann. Ny. Acad. Sci. Skeletal Development and Remodeling in Health, Disease, and Aging = Ann Ny Acad Sci Skeletal Development and Remodeling in Health, Disease, and Aging = Ann. Ny. Acad. Sci. Skeletal Muscle Metabolism in Exercise and Diabetes = Adv Exp Med Biol Skeletal Muscle Metabolism in Exercise and Diabetes = Adv. Exp. Med. Biol. Skeletal radiology = Skeletal Radiol Skeletal Radiology=Skeletal Radiol;; Skeletal Radiology = Skeletal Radiol Skeletal Radiology = Skeletal Radiol. Skeletal System = Cold Spring Harb Mon Skeletal System = Cold. Spring. Harb. Mon. Skeptical Tradition Around 1800 = Arch Int Hist Idees Skeptical Tradition Around 1800 = Arch. Int. Hist. Idees. Skeptical Tradition Around 1800 = Int Arch H Skeptical Tradition Around 1800 = Int. Arch. H. Skepticism, Modernity and Critical Theory: Critical Theory in Philosophical Context = Renew Philos Skepticism, Modernity and Critical Theory: Critical Theory in Philosophical Context = Renew. Philos. Skeptic = Skeptic Skiing Trauma and Safety, 13th Vol = Am Soc Test Mater Skiing Trauma and Safety, 13th Vol = Am. Soc. Test. Mater. Skiing Trauma and Safety = Am Soc Test Mater Skiing Trauma and Safety = Am. Soc. Test. Mater. Skiing Trauma and Safety : Eighth International Symposium = Am Soc Test Mater Skiing Trauma and Safety : Eighth International Symposium = Am. Soc. Test. Mater. Skiing Trauma and Safety: Eleventh Volume = Am Soc Test Mater Skiing Trauma and Safety: Eleventh Volume = Am. Soc. Test. Mater. Skiing Trauma and Safety: Fifteenth Volume = Am Soc Test Mater Skiing Trauma and Safety: Fifteenth Volume = Am. Soc. Test. Mater. Skiing Trauma and Safety: Fourteenth Volume = Am Soc Test Mater Skiing Trauma and Safety: Fourteenth Volume = Am. Soc. Test. Mater. Skiing Trauma and Safety : Ninth International Symposium = Am Soc Test Mater Skiing Trauma and Safety : Ninth International Symposium = Am. Soc. Test. Mater. Skiing Trauma and Safety: Sixteenth Volume = Ski Trau Saf Skiing Trauma and Safety: Sixteenth Volume = Ski. Trau. Saf. Skiing Trauma and Safety = Ski Trau Saf Skiing Trauma and Safety = Ski. Trau. Saf. Skiing Trauma and Safety: Tenth Volume = Am Soc Test Mater Skiing Trauma and Safety: Tenth Volume = Am. Soc. Test. Mater. Skiing Trauma and Safety: Twelfth Volume = Am Soc Test Mater Skiing Trauma and Safety: Twelfth Volume = Am. Soc. Test. Mater. Skill and Strategy in Memory Use = Psychol Learn Motiv Skill and Strategy in Memory Use = Psychol. Learn. Motiv. Skills for Success in Small & Medium Enterprises - Proceedings of The Icsb 40th World Conference 1995 = Conf S Inst Skills for Success in Small & Medium Enterprises - Proceedings of The Icsb 40th World Conference 1995 = Conf. S. Inst. Skin Anatomy and Physiology Research Developments = Hum Anat Physiol Skin Anatomy and Physiology Research Developments = Hum. Anat. Physiol. Skin Bioengineering = Curr Probl Dermatol Skin Bioengineering = Curr. Probl. Dermatol. Skin Carcinogenesis in Man and Experimental Models = Recent Res Cancer Skin Carcinogenesis in Man and Experimental Models = Recent. Res. Cancer. Skin: Interface of A Living System = Int Congr Ser Skin: Interface of A Living System = Int. Congr. Ser. Skinmed = Skinmed Skin Pharmacology and Applied Skin Physiology = Skin Pharmacol Appl Skin Pharmacology and Applied Skin Physiology = Skin Pharmacol. Appl. Skin pharmacology and applied skin physiology = Skin Pharmacol Appl Skin Physiol Skin Pharmacology and Applied Skin Physiology = Skin Pharmacol. Appl. Skin Physiol. Skin Pharmacology and Physiology = Skin Pharmacol Phys Skin Pharmacology and Physiology = Skin Pharmacol. Phys. Skin Pharmacology and Physiology = Skin Pharmacol Physi Skin Pharmacology and Physiology = Skin Pharmacol. Physi. Skin pharmacology and physiology = Skin Pharmacol Physiol Skin Pharmacology and Physiology = Skin Pharmacol. Physiol. Skin Pharmacology and Toxicology = Nato Adv Sci I A-lif Skin Pharmacology and Toxicology = Nato. Adv. Sci. I. A-lif. Skin Pharmacology & Physiology = Skin Pharmacol Physi Skin Pharmacology & Physiology = Skin Pharmacol. Physi. Skin Pharmacology=Skin Pharmacol;; Skin Pharmacology = Skin Pharmacol Skin Pharmacology = Skin Pharmacol. Skin pharmacology : the official journal of the Skin Pharmacology Society = Skin Pharmacol Skin research and technology : official journal of International Society for Bioengineering and the Skin (ISBS) [and] International Society for Digital Imaging of Skin (ISDIS) [and] International Society for Skin Imaging (ISSI) = Skin Res Technol Skin Research and Technology = Skin Res Technol Skin Research and Technology = Skin Res. Technol. Skin = Skin (Los Angeles) Skin therapy letter = Skin Therapy Lett Skrifter Utgivna Av Svenska Institutet I Athen = Skr Ut S In Skrifter Utgivna Av Svenska Institutet I Athen = Skr. Ut. S. In. Skrifter utgivna av Svenska institutet i Rom. Opuscula archaeologica = OpArch Skripten zur Mathematischen Statistik = Skript. Math. Statist. Skrypty Uniwersytetu Śląskiego = Skrypty Uniw. Śląskiego Skull Base-an Interdisciplinary Approach = Skull Base-interd Ap Skull Base-an Interdisciplinary Approach = Skull Base-interd. Ap. Skull base : official journal of North American Skull Base Society ... [et al.] = Skull Base Skull base surgery = Skull Base Surg Skull Base Surgery = Skull Base Surg Skull Base Surgery = Skull Base Surg. Sky and telescope = Sky Telescope Sky and Telescope = Sky Telescope Skyllis. Zeitschrift für Unterwasserarchäologie = Skyllis Sky Polarisation At Far-infrared to Radio Wavelengths: The Galactic Screen Before The Cosmic Microwave Background = Eas Publications Sky Polarisation At Far-infrared to Radio Wavelengths: The Galactic Screen Before The Cosmic Microwave Background = Eas. Publications. Sky Surveys: Protostars to Protogalaxies = Astr Soc P Sky Surveys: Protostars to Protogalaxies = Astr. Soc. P. Slaski kwartalnik historyczny Sobotka / Wroclawskie Towarzystwo Milosnikow Historii = Slaski Kwat Hist Sabotka Slavery & abolition = Slavery Abol Slavery & Abolition = Slavery Abolit Slavery & Abolition = Slavery Abolit. Slavic and East European Journal = Slavic E Eur J Slavic and East European Journal = Slavic E. Eur. J. Slavic review = Slavic Rev Slavic Review = Slavic Rev Slavic Review = Slavic Rev. Slavische Erzahltheorie: Russische Und Tschechische Ansatze = Narratologia Slavische Erzahltheorie: Russische Und Tschechische Ansatze = Narratologia. Slavischen Sprachen, Band 1 = Handb Sprach Kommun Slavischen Sprachen, Band 1 = Handb. Sprach. Kommun. Slavisticna Revija = Slavisticna Rev Slavisticna Revija = Slavisticna Rev. Slavonic and East European review = Slav East Eur Rev Slavonic and East European Review = Slavon E Eur Rev Slavonic and East European Review = Slavon. E. Eur. Rev. Sleep and Biological Rhythms = Sleep Biol Rhythms Sleep and Biological Rhythms = Sleep Biol. Rhythms Sleep and Breathing = Sleep Breath Sleep and Breathing = Sleep Breath. Sleep and Cardiorespiratory Control = Colloq Inse Sleep and Cardiorespiratory Control = Colloq. Inse. Sleep and Respiration = Prog Clin Biol Res Sleep and Respiration = Prog. Clin. Biol. Res. Sleep Apnoea = Eur Respir Monogr Sleep Apnoea = Eur. Respir. Monogr. Sleep Deprivation: Causes, Effects and Treatment = Neurosci Res Prog Se Sleep Deprivation: Causes, Effects and Treatment = Neurosci. Res. Prog. Se. Sleep medicine reviews = Sleep Med Rev Sleep Medicine Reviews = Sleep Med Rev Sleep Medicine Reviews = Sleep Med. Rev. Sleep medicine = Sleep Med Sleep Medicine = Sleep Med Sleep Medicine = Sleep Med. Sleep-physiology Functions Dreaming and Disorders = Sleep-physiol Funct Sleep-physiology Functions Dreaming and Disorders = Sleep-physiol. Funct. Sleep Research Online = Sleep Res. Online Sleep research online : SRO = Sleep Res Online Sleep=Sleep;; Sleep = Sleep Slezsky sbornik = Slezsky Sb Sliding Filament Mechanism in Muscle Contraction: Fifty Years of Research = Adv Exp Med Biol Sliding Filament Mechanism in Muscle Contraction: Fifty Years of Research = Adv. Exp. Med. Biol. Sliding Mode Control in Electro-mechanical Systems, Second Edition = Autom Control Eng Se Sliding Mode Control in Electro-mechanical Systems, Second Edition = Autom. Control Eng. Se. Sloan management review = Sloan Manage Rev Sloan Management Review=Sloan Manage. Rev. Sloan Management Review = Sloan Manage Rev Sloan Management Review = Sloan Manage. Rev. Slovak Review of World Literature Research = Slovak Rev Slovak Review of World Literature Research = Slovak Rev. Slovak Review = Slovak Rev Slovak Review = Slovak Rev. Slovansky prehled = Slov Prehl Slovenian Veterinary Research = Slov Vet Res Slovenian Veterinary Research = Slov. Vet. Res. Slovenská archeológia = SlovA Slovenska archivistika = Slov Arch Slovenská numizmatika = SlovNum Slovensky lekar = Slov Lek Slovo A Slovesnost = Slovo Slovesnost Slovo = Slovo-london Slovo = Slovo-london. Slow Deformation and Transmission of Stress in The Earth = Geoph Monog Series Slow Deformation and Transmission of Stress in The Earth = Geoph. Monog. Series. Slow Dynamics in Complex Systems = Aip Conf Proc Slow Dynamics in Complex Systems = Aip. Conf. Proc. Slow Dynamics in Condensed Matter = Aip Conf Proc Slow Dynamics in Condensed Matter = Aip. Conf. Proc. Slow Heavy-particle Induced Electron Emission From Solid Surfaces = Springer Trac Mod Ph Slow Heavy-particle Induced Electron Emission From Solid Surfaces = Springer. Trac. Mod. Ph. Slow Heavy-particle Induced Electron Emission From Solid Surfaces = Springer Tr Mod Phys Slow Heavy-particle Induced Electron Emission From Solid Surfaces = Springer. Tr. Mod. Phys. Slow Infections of The Central Nervous System = Ann Ny Acad Sci Slow Infections of The Central Nervous System = Ann. Ny. Acad. Sci. Slow Learning Child = Slow Learn Child Slow Learning Child = Slow Learn. Child Slow Light: Science and Applications = Opt Sci Eng-crc Slow Light: Science and Applications = Opt. Sci. Eng-crc. Slownik biograficzny polskich nauk medycznych XX wieku / Instytut Historii Nauki, Oswiaty i Techniki PAN, Pracownia Historii Nauk Medycznych = Slown Biogr Pol Med XX Wieku Slow Positron Beam Techniques for Solids and Surfaces: Fifth International Workshop = Aip Conf Proc Slow Positron Beam Techniques for Solids and Surfaces: Fifth International Workshop = Aip. Conf. Proc. Slow Potential Changes in The Human Brain = Nato Adv Sci Inst Se Slow Potential Changes in The Human Brain = Nato. Adv. Sci. Inst. Se. Slow Sand Filtration : Recent Developments in Water Treatment Technology = E H S Water Slow Sand Filtration : Recent Developments in Water Treatment Technology = E. H. S. Water Slow Strain Rate Testing for The Evaluation of Environmentally Induced Cracking : Research and Engineering Applications = Am Soc Test Mater Slow Strain Rate Testing for The Evaluation of Environmentally Induced Cracking : Research and Engineering Applications = Am. Soc. Test. Mater. Sludge Management Series = Sludg Man S Sludge Management Series = Sludg. Man. S. Sludge: Types, Treatment Processes and Disposal = Air Water Soil Sci T Sludge: Types, Treatment Processes and Disposal = Air. Water. Soil. Sci. T. Slug and Snail Pests in Agriculture = Bcpc Symp Ser Slug and Snail Pests in Agriculture = Bcpc. Symp. Ser. Slugs & Snails: Agricultural, Veterinary & Environmental Perspectives = Bcpc Symp Ser Slugs & Snails: Agricultural, Veterinary & Environmental Perspectives = Bcpc. Symp. Ser. Słupskie Prace Matematyczno-Przyrodnicze = Słup. Prace Mat. Przyr. Mat. Fiz. Slurry Handling and Pipeline Transport - Hydrotransport 14 = Bhr Gr Conf Ser Publ Slurry Handling and Pipeline Transport - Hydrotransport 14 = Bhr. Gr. Conf. Ser. Publ. Slurry Walls : Design, Construction, and Quality Control = Am Soc Test Mater Slurry Walls : Design, Construction, and Quality Control = Am. Soc. Test. Mater. Smack: Heroin and The American City = Polit Cult Mod Am Smack: Heroin and The American City = Polit. Cult. Mod. Am. Small Animal Whole-body Optical Imaging Based On Genetically Engineered Probes = Proc Spie Small Animal Whole-body Optical Imaging Based On Genetically Engineered Probes = Proc. Spie. Small Animal Whole-body Optical Imaging Based On Genetically Engineered Probes = P Soc Photo-opt Ins Small Animal Whole-body Optical Imaging Based On Genetically Engineered Probes = P. Soc. Photo-opt. Ins. Small Arms and Light Weapons: Legal Aspects of National and International Regulations = Arms Control Disarma Small Arms and Light Weapons: Legal Aspects of National and International Regulations = Arms Control. Disarma. Small Arms and Security: New Emerging International Norms = Contemp Secur Stud Small Arms and Security: New Emerging International Norms = Contemp. Secur. Stud. Small Bodies in Planetary Systems = Lect Notes Phys Small Bodies in Planetary Systems = Lect. Notes. Phys. Small Bodies in The Solar System; Space Debris = Adv Space Res-series Small Bodies in The Solar System; Space Debris = Adv. Space Res-series. Small Business Computer News = Small Bus Comput New Small Business Computer News = Small Bus. Comput. New. Small Business Computers = Small Bus Comput Small Business Computers = Small Bus. Comput. Small Business Economics=Small Bus. Econ. Small Business Economics = Small Bus Econ Small Business Economics = Small Bus. Econ. Small Cell Carcinomas: Causes, Diagnosis and Treatment = Cancer Etiol Diagn T Small Cell Carcinomas: Causes, Diagnosis and Treatment = Cancer. Etiol. Diagn. T. Small Cities: Urban Experience Beyond The Metropolis = Question Cities Small Cities: Urban Experience Beyond The Metropolis = Question. Cities. Small City and Regional Community = Sm City Reg Small City and Regional Community = Sm. City Reg. Smaller Solar System Bodies and Orbits = Adv Space Res-series Smaller Solar System Bodies and Orbits = Adv. Space. Res-series. Smallest Anthropoids: Marmoset/callimico Radiation = Dev Primatol-prog Pr Smallest Anthropoids: Marmoset/callimico Radiation = Dev. Primatol-prog. Pr. Small Firms and Innovation Policy in Japan = Routl Contemp Jpn Se Small Firms and Innovation Policy in Japan = Routl. Contemp. Jpn. Se. Small Firms, Large Concerns = Fuj Busin Hist Ser Small Firms, Large Concerns = Fuj. Busin. Hist. Ser. Small Galaxy Groups = Astr Soc P Small Galaxy Groups = Astr. Soc. P. Small Group Behavior = Small Group Behav Small Group Behavior = Small Group Behav. Small Group Research = Small Gr Res Small Group Research = Small Gr. Res. Small Gtpases and Their Regulators, Pt A = Method Enzymol Small Gtpases and Their Regulators, Pt A = Method. Enzymol. Small Gtpases and Their Regulators, Pt B = Method Enzymol Small Gtpases and Their Regulators, Pt B = Method. Enzymol. Small Gtpases and Their Regulators, Pt C = Method Enzymol Small Gtpases and Their Regulators, Pt C = Method. Enzymol. Small Gtpases in Disease, Part A = Method Enzymol Small Gtpases in Disease, Part A = Method. Enzymol. Small Gtpases in Disease, Pt B = Method Enzymol Small Gtpases in Disease, Pt B = Method. Enzymol. Smallholder Tree Growing for Rural Development and Environmental Services: Lessons From Asia = Adv Agrofor Smallholder Tree Growing for Rural Development and Environmental Services: Lessons From Asia = Adv. Agrofor. Small Interfering Rna = Nucleic Acids-chem S Small Interfering Rna = Nucleic. Acids-chem. S. Small Islands, Large Questions = Stud Slav Post Slav Small Islands, Large Questions = Stud. Slav. Post. Slav. Small Manufacturer's Toolkit: A Guide to Selecting The Techniques and Systems to Help You Win = Resource Manag-crc Small Manufacturer's Toolkit: A Guide to Selecting The Techniques and Systems to Help You Win = Resource. Manag-crc. Small Missions for Energetic Astrophysics = Aip Conf Proc Small Missions for Energetic Astrophysics = Aip. Conf. Proc. Small-molecule Inhibitors of Protein-protein Interactions = Curr Top Microbiol Small-molecule Inhibitors of Protein-protein Interactions = Curr. Top. Microbiol. Small Molecule Microarrays: Methods and Protocols = Methods Mol Biol Small Molecule Microarrays: Methods and Protocols = Methods Mol. Biol. Small Molecule-protein Interactions = E Schering Res Fdn W Small Molecule-protein Interactions = E. Schering. Res. Fdn. W. Small Molecules in Oncology = Recent Results Canc Small Molecules in Oncology = Recent. Results. Canc. Small Molecules = Small Mol. Small Payloads in Space = P Soc Photo-opt Ins Small Payloads in Space = P. Soc. Photo-opt. Ins. Small Ring Compounds in Organic Synthesis Vi = Top Curr Chem Small Ring Compounds in Organic Synthesis Vi = Top. Curr. Chem. Small Ring Compounds in Organic Synthesis V = Top Curr Chem Small Ring Compounds in Organic Synthesis V = Top. Curr. Chem. Small Ruminant Research = Small Ruminant Res Small Ruminant Research = Small Ruminant Res. Small ruminant research : the journal of the International Goat Association = Small Rumin Res Small Satellites for Astrophysical Research, The Copernican Principle and Homogeneity of The Universe = Adv Space Res Small Satellites for Astrophysical Research, The Copernican Principle and Homogeneity of The Universe = Adv. Space. Res. Small Satellite Technologies and Applications Ii = P Soc Photo-opt Ins Small Satellite Technologies and Applications Ii = P. Soc. Photo-opt. Ins. Small-satellite Technology and Applications Iii = P Soc Photo-opt Ins Small-satellite Technology and Applications Iii = P. Soc. Photo-opt. Ins. Small-satellite Technology and Applications = P Soc Photo-opt Ins Small-satellite Technology and Applications = P. Soc. Photo-opt. Ins. Small-scale Forest Economics, Management and Policy = Small-scale For. Econ. Manage. Policy Small-scale Forestry = Small-scale For Small-scale Forestry = Small-scale For. Small Schools: Public School Reform Meets The Ownership Society = Positions-educ Polit Small Schools: Public School Reform Meets The Ownership Society = Positions-educ. Polit. Small = Small Small Spacecraft, Space Environments, and Instrumentation Technologies = P Soc Photo-opt Ins Small Spacecraft, Space Environments, and Instrumentation Technologies = P. Soc. Photo-opt. Ins. Small Specimen Test Techniques = Am Soc Test Mater Small Specimen Test Techniques = Am. Soc. Test Mater. Small Specimen Test Techniques Applied to Nuclear Receptor Vessel Thermal Annealing and Plant Life Extension = Am Soc Test Mater Small Specimen Test Techniques Applied to Nuclear Receptor Vessel Thermal Annealing and Plant Life Extension = Am. Soc. Test Mater. Small Specimen Test Techniques: Fourth Volume = Am Soc Test Mater Small Specimen Test Techniques: Fourth Volume = Am. Soc. Test Mater. Small States and Eu Governance: Leadership Through The Council Presidency = St Antonys Ser Small States and Eu Governance: Leadership Through The Council Presidency = St. Antonys. Ser. Small Stress Proteins and Human Diseases = Protein Sci Eng Small Stress Proteins and Human Diseases = Protein. Sci. Eng. Small-telescope Astronomy On Global Scales = Astr Soc P Small-telescope Astronomy On Global Scales = Astr. Soc. P. Small Town Africa = Sem P Scand Small Town Africa = Sem. P. Scand. Small (Weinheim an der Bergstrasse, Germany) = Small Small Wind Turbines: Analysis, Design, and Application = Green Energy Technol Small Wind Turbines: Analysis, Design, and Application = Green. Energy. Technol. Smarandache Notions Journal = Smarandache Notions J. Smarandache Notions = Smarandache Notions Smarandache Notions, Vol 12 = Smarandache Notions Smarandache Notions, Vol 12 = Smarandache Notions. Smart Ad and Da Conversion = Analog Circ Sig Proc Smart Ad and Da Conversion = Analog. Circ. Sig. Proc. Smart and Flexible Digital-to-analog Converters = Analog Circ Sig Proc Smart and Flexible Digital-to-analog Converters = Analog. Circ. Sig. Proc. Smart Biomedical and Physiological Sensor Technologies Vii = Proc Spie Smart Biomedical and Physiological Sensor Technologies Vii = Proc. Spie. Smart Biomedical and Physiological Sensor Technologies Vii = P Soc Photo-opt Ins Smart Biomedical and Physiological Sensor Technologies Vii = P. Soc. Photo-opt. Ins. Smart Biomedical and Physiological Sensor Technology Viii = Proc Spie Smart Biomedical and Physiological Sensor Technology Viii = Proc. Spie. Smart Biomedical and Physiological Sensor Technology V = Proc Spie Smart Biomedical and Physiological Sensor Technology V = Proc. Spie. Smart Biomedical and Physiological Sensor Technology V = P Soc Photo-opt Ins Smart Biomedical and Physiological Sensor Technology V = P. Soc. Photo-opt. Ins. Smart Biosensor Technology = Opt Sci Eng-crc Smart Biosensor Technology = Opt. Sci. Eng-crc. Smart Card Research and Advanced Application, Proceedings = Lect Notes Comput Sc Smart Card Research and Advanced Application, Proceedings = Lect. Notes. Comput. Sc. Smart Card Research and Advanced Applications = Int Fed Info Proc Smart Card Research and Advanced Applications = Int. Fed. Info. Proc. Smart Card Research and Advanced Applications, Proceedings = Lect Notes Comput Sc Smart Card Research and Advanced Applications, Proceedings = Lect. Notes. Comput. Sc. Smart Card Research and Advanced Applications Vi = Int Fed Info Proc Smart Card Research and Advanced Applications Vi = Int. Fed. Info. Proc. Smart Card Research and Applications, Proceedings = Lect Notes Comput Sc Smart Card Research and Applications, Proceedings = Lect. Notes. Comput. Sc. Smart Clothes and Wearable Technology = Woodhead Publ Text Smart Clothes and Wearable Technology = Woodhead. Publ. Text. Smart Cmos Image Sensors and Applications = Opt Sci Eng-crc Smart Cmos Image Sensors and Applications = Opt. Sci. Eng-crc. Smart Coatings = Acs Sym Ser Smart Coatings = Acs. Sym. Ser. Smart Coatings Ii = Acs Sym Ser Smart Coatings Ii = Acs. Sym. Ser. Smart Colloidal Materials = Prog Coll Pol Sci S Smart Colloidal Materials = Prog. Coll. Pol. Sci. S. Smart Devices: Modeling of Material Systems = Aip Conf Proc Smart Devices: Modeling of Material Systems = Aip. Conf. Proc. Smart Electronics and Mems Ii = Proc Spie Smart Electronics and Mems Ii = Proc. Spie. Smart Electronics and Mems Ii = P Soc Photo-opt Ins Smart Electronics and Mems Ii = P. Soc. Photo-opt. Ins. Smart Electronics and Mems = P Soc Photo-opt Ins Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Electronics and Mems - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Smart Electronics and Mems - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Smart Electronics = P Soc Photo-opt Ins Smart Electronics = P. Soc. Photo-opt. Ins. Smarter Growth = Contrib Econ Econ Hi Smarter Growth = Contrib. Econ. Econ. Hi. Smart Focal Plane Arrays and Focal Plane Array Testing = P Soc Photo-opt Ins Smart Focal Plane Arrays and Focal Plane Array Testing = P. Soc. Photo-opt. Ins. Smart Graphics, Proceedings = Lect Notes Comput Sc Smart Graphics, Proceedings = Lect. Notes. Comput. Sc. Smart Homes and Beyond = Assist Technol Res S Smart Homes and Beyond = Assist. Technol. Res. S. Smart Homes and Beyond = Assist Techn Res Ser Smart Homes and Beyond = Assist. Techn. Res. Ser. Smart Homes and Health Telematics = Lect Notes Comput Sc Smart Homes and Health Telematics = Lect. Notes. Comput. Sc. Smart Imagers and Their Application = Proc Spie Smart Imagers and Their Application = Proc. Spie. Smart Imagers and Their Application = P Soc Photo-opt Ins Smart Imagers and Their Application = P. Soc. Photo-opt. Ins. Smart Information and Knowledge Management = Stud Comput Intell Smart Information and Knowledge Management = Stud. Comput. Intell. Smart Innovation Systems and Technologies = Smart Innov Sys Smart Innovation Systems and Technologies = Smart Innov. Sys. Smart Innovation Systems and Technologies = Smart Innov Syst Tec Smart Innovation Systems and Technologies = Smart Innov. Syst. Tec. Smart Internet: Current Research and Future Applications = Lect Notes Comput Sc Smart Internet: Current Research and Future Applications = Lect. Notes. Comput. Sc. Smart Materials = Adv Mater Res-switz Smart Materials = Adv. Mater. Res-switz. Smart Materials = Adv Mat Res Smart Materials = Adv. Mat. Res. Smart Materials and Intelligent Systems, Pts 1 and 2 = Adv Mater Res-switz Smart Materials and Intelligent Systems, Pts 1 and 2 = Adv. Mater. Res-switz. Smart Materials and Structures Series = Smar Mat St Smart Materials and Structures Series = Smar. Mat. St. Smart Materials and Structures = Smart Mater. Struct. Smart Materials and Structures = Vtt Symp Smart Materials and Structures = Vtt. Symp. Smart Materials Fabrication and Materials for Micro-electro-mechanical Systems = Mater Res Soc Symp P Smart Materials Fabrication and Materials for Micro-electro-mechanical Systems = Mater. Res. Soc. Symp. P. Smart Materials for Energy, Communications and Security = Nato Science Peace S Smart Materials for Energy, Communications and Security = Nato. Science. Peace. S. Smart Materials for Energy, Communications and Security = Nato Sci Peace Sec B Smart Materials for Energy, Communications and Security = Nato. Sci. Peace. Sec. B. Smart Materials for Ranging Systems = Nato Sci Ser Ii-math Smart Materials for Ranging Systems = Nato. Sci. Ser. Ii-math. Smart Materials for Ranging Systems = Nato Sci Ser Ii Math Smart Materials for Ranging Systems = Nato. Sci. Ser. Ii. Math. Smart Materials for Smart Devices and Structures = Sol St Phen Smart Materials for Smart Devices and Structures = Sol. St. Phen. Smart Materials Iii = Proc Spie Smart Materials Iii = Proc. Spie. Smart Materials Iii = P Soc Photo-opt Ins Smart Materials Iii = P. Soc. Photo-opt. Ins. Smart Materials Ii = P Soc Photo-opt Ins Smart Materials Ii = P. Soc. Photo-opt. Ins. Smart Materials Iv = P Soc Photo-opt Ins Smart Materials Iv = P. Soc. Photo-opt. Ins. Smart Materials & Micro/nanosystems = Adv Sci Tech Smart Materials & Micro/nanosystems = Adv. Sci. Tech. Smart Materials = Proc Spie Smart Materials = Proc. Spie. Smart Materials = P Soc Photo-opt Ins Smart Materials = P. Soc. Photo-opt. Ins. Smart Materials, Structures, and Integrated Systems = Proc Spie Smart Materials, Structures, and Integrated Systems = Proc. Spie. Smart Materials, Structures, and Integrated Systems = P Soc Photo-opt Ins Smart Materials, Structures, and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Materials, Structures, and System, Pts 1 and 2 = Proc Spie Smart Materials, Structures, and System, Pts 1 and 2 = Proc. Spie. Smart Materials, Structures, and System, Pts 1 and 2 = P Soc Photo-opt Ins Smart Materials, Structures, and System, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Materials & Structures = Smart Mater Struct Smart Materials & Structures = Smart Mater. Struct. Smart Materials Technologies and Biomimetics - Smart Structures and Materials 1996 = Proc Spie Smart Materials Technologies and Biomimetics - Smart Structures and Materials 1996 = Proc. Spie. Smart Materials Technologies and Biomimetics - Smart Structures and Materials 1996 = P Soc Photo-opt Ins Smart Materials Technologies and Biomimetics - Smart Structures and Materials 1996 = P. Soc. Photo-opt. Ins. Smart Materials Technologies = P Soc Photo-opt Ins Smart Materials Technologies = P. Soc. Photo-opt. Ins. Smart Medical and Biomedical Sensor Technology Ii = Proc Spie Smart Medical and Biomedical Sensor Technology Ii = Proc. Spie. Smart Medical and Biomedical Sensor Technology Ii = P Soc Photo-opt Ins Smart Medical and Biomedical Sensor Technology Ii = P. Soc. Photo-opt. Ins. Smart Medical and Biomedical Sensor Technology Iv = Proc Spie Smart Medical and Biomedical Sensor Technology Iv = Proc. Spie. Smart Medical and Biomedical Sensor Technology Iv = P Soc Photo-opt Ins Smart Medical and Biomedical Sensor Technology Iv = P. Soc. Photo-opt. Ins. Smart Medical and Biomedical Sensor Technology = Proc Spie Smart Medical and Biomedical Sensor Technology = Proc. Spie. Smart Medical and Biomedical Sensor Technology = P Soc Photo-opt Ins Smart Medical and Biomedical Sensor Technology = P. Soc. Photo-opt. Ins. Smart Nanotextiles = Mater Res Soc Symp P Smart Nanotextiles = Mater. Res. Soc. Symp. P. Smart Networks = Int Fed Info Proc Smart Networks = Int. Fed. Info. Proc. Smart Nondestructive Evaluation and Health Monitoring of Structural and Biological Systems Ii = P Soc Photo-opt Ins Smart Nondestructive Evaluation and Health Monitoring of Structural and Biological Systems Ii = P. Soc. Photo-opt. Ins. Smart Nondestructive Evaluation for Health Monitoring of Structural and Biological Systems = Proc Spie Smart Nondestructive Evaluation for Health Monitoring of Structural and Biological Systems = Proc. Spie. Smart Nondestructive Evaluation for Health Monitoring of Structural and Biological Systems = P Soc Photo-opt Ins Smart Nondestructive Evaluation for Health Monitoring of Structural and Biological Systems = P. Soc. Photo-opt. Ins. Smart Optical Inorganic Structures and Devices = P Soc Photo-opt Ins Smart Optical Inorganic Structures and Devices = P. Soc. Photo-opt. Ins. Smart Optics = Adv Sci Tech Smart Optics = Adv. Sci. Tech. Smart Sensing and Context = Lect Notes Comput Sc Smart Sensing and Context = Lect. Notes. Comput. Sc. Smart Sensing and Context, Proceedings = Lect Notes Comput Sc Smart Sensing and Context, Proceedings = Lect. Notes. Comput. Sc. Smart Sensing, Processing, and Instrumentation = P Soc Photo-opt Ins Smart Sensing, Processing, and Instrumentation = P. Soc. Photo-opt. Ins. Smart Sensing, Processing, and Instrumentation - Smart Structures and Materials 1995 = P Soc Photo-opt Ins Smart Sensing, Processing, and Instrumentation - Smart Structures and Materials 1995 = P. Soc. Photo-opt. Ins. Smart Sensing, Processing, and Instrumentation - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Smart Sensing, Processing, and Instrumentation - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Smart Sensor Phenomena, Technology, Networks, and Systems 2008 = Proc Spie Smart Sensor Phenomena, Technology, Networks, and Systems 2008 = Proc. Spie. Smart Sensor Phenomena, Technology, Networks, and Systems 2008 = P Soc Photo-opt Ins Smart Sensor Phenomena, Technology, Networks, and Systems 2008 = P. Soc. Photo-opt. Ins. Smart Sensor Phenomena, Technology, Networks, and Systems 2010 = P Soc Photo-opt Ins Smart Sensor Phenomena, Technology, Networks, and Systems 2010 = P. Soc. Photo-opt. Ins. Smart Sensor Phenomena, Technology, Networks, and Systems 2011 = Proc Spie Smart Sensor Phenomena, Technology, Networks, and Systems 2011 = Proc. Spie. Smart Sensors, Actuators, and Mems Iii = Proc Spie Smart Sensors, Actuators, and Mems Iii = Proc. Spie. Smart Sensors, Actuators, and Mems Iii = P Soc Photo-opt Ins Smart Sensors, Actuators, and Mems Iii = P. Soc. Photo-opt. Ins. Smart Sensors, Actuators, and Mems Ii = Proc Spie Smart Sensors, Actuators, and Mems Ii = Proc. Spie. Smart Sensors, Actuators, and Mems Ii = P Soc Photo-opt Ins Smart Sensors, Actuators, and Mems Ii = P. Soc. Photo-opt. Ins. Smart Sensors, Actuators, and Mems, Pts 1 and 2 = Proc Spie Smart Sensors, Actuators, and Mems, Pts 1 and 2 = Proc. Spie. Smart Sensors, Actuators, and Mems, Pts 1 and 2 = P Soc Photo-opt Ins Smart Sensors, Actuators, and Mems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Sensors, Actuators, and Mems V = Proc Spie Smart Sensors, Actuators, and Mems V = Proc. Spie. Smart Sensors and Mems = Nato Sci Ser Ii-math Smart Sensors and Mems = Nato. Sci. Ser. Ii-math. Smart Sensors and Mems = Nato Sci Ser Ii Math Smart Sensors and Mems = Nato. Sci. Ser. Ii. Math. Smart Spaces and Next Generation Wired/wireless Networking = Lect Notes Comput Sc Smart Spaces and Next Generation Wired/wireless Networking = Lect. Notes. Comput. Sc. Smart Spaces and Next Generation Wired/wireless Networking, Proceedings = Lect Notes Comput Sc Smart Spaces and Next Generation Wired/wireless Networking, Proceedings = Lect. Notes. Comput. Sc. Smart Structures and Devices = Proc Spie Smart Structures and Devices = Proc. Spie. Smart Structures and Devices = P Soc Photo-opt Ins Smart Structures and Devices = P. Soc. Photo-opt. Ins. Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Integrated Systems - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Smart Structures and Integrated Systems - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Smart Structures and Intelligent Systems = P Soc Photo-opt Ins Smart Structures and Intelligent Systems = P. Soc. Photo-opt. Ins. Smart Structures and Intelligent Systems, Pts 1 and 2 = P Soc Photo-opt Ins Smart Structures and Intelligent Systems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures and Material 2000: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Material 2000: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Material 2000: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Material 2000: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Material 2000: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Material 2000: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Material 2000: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Material 2000: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1995 - Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 1995 - Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1995 - Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 1995 - Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1995: Smart Systems for Bridges, Structures, and Highways = P Soc Photo-opt Ins Smart Structures and Materials 1995: Smart Systems for Bridges, Structures, and Highways = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1996: Smart Electronics and Mems = P Soc Photo-opt Ins Smart Structures and Materials 1996: Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1996: Smart Sensing, Processing, and Instrumentation = P Soc Photo-opt Ins Smart Structures and Materials 1996: Smart Sensing, Processing, and Instrumentation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1998: Mathematics and Control in Smart Structures = P Soc Photo-opt Ins Smart Structures and Materials 1998: Mathematics and Control in Smart Structures = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1998: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P Soc Photo-opt Ins Smart Structures and Materials 1998: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1998: Smart Electronics and Mems = P Soc Photo-opt Ins Smart Structures and Materials 1998: Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1998: Smart Materials Technologies = P Soc Photo-opt Ins Smart Structures and Materials 1998: Smart Materials Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1998: Smart Structures and Integrated Systems, Pts 1 and 2 = P Soc Photo-opt Ins Smart Structures and Materials 1998: Smart Structures and Integrated Systems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Electroactive Polymer Actuators and Devices = Proc Spie Smart Structures and Materials 1999: Electroactive Polymer Actuators and Devices = Proc. Spie. Smart Structures and Materials 1999: Electroactive Polymer Actuators and Devices = P Soc Photo-opt Ins Smart Structures and Materials 1999: Electroactive Polymer Actuators and Devices = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Materials 1999: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Materials 1999: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 1999: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Mathematics and Control in Smart Structures = Proc Spie Smart Structures and Materials 1999: Mathematics and Control in Smart Structures = Proc. Spie. Smart Structures and Materials 1999: Mathematics and Control in Smart Structures = P Soc Photo-opt Ins Smart Structures and Materials 1999: Mathematics and Control in Smart Structures = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Passive Damping and Isolation = Proc Spie Smart Structures and Materials 1999: Passive Damping and Isolation = Proc. Spie. Smart Structures and Materials 1999: Passive Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 1999: Passive Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc Spie Smart Structures and Materials 1999: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc. Spie. Smart Structures and Materials 1999: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P Soc Photo-opt Ins Smart Structures and Materials 1999: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Smart Electronics and Mems = P Soc Photo-opt Ins Smart Structures and Materials 1999: Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Smart Materials Technologies = P Soc Photo-opt Ins Smart Structures and Materials 1999: Smart Materials Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Smart Structures and Integrated Systems, Pts 1 and 2 = Proc Spie Smart Structures and Materials 1999: Smart Structures and Integrated Systems, Pts 1 and 2 = Proc. Spie. Smart Structures and Materials 1999: Smart Structures and Integrated Systems, Pts 1 and 2 = P Soc Photo-opt Ins Smart Structures and Materials 1999: Smart Structures and Integrated Systems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures and Materials 1999: Smart Systems for Bridges, Structures and Highways = Proc Spie Smart Structures and Materials 1999: Smart Systems for Bridges, Structures and Highways = Proc. Spie. Smart Structures and Materials 1999: Smart Systems for Bridges, Structures and Highways = P Soc Photo-opt Ins Smart Structures and Materials 1999: Smart Systems for Bridges, Structures and Highways = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000 - Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2000 - Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2000: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Electroactive Polymer Actuators and Devices (eapad) = Proc Spie Smart Structures and Materials 2000: Electroactive Polymer Actuators and Devices (eapad) = Proc. Spie. Smart Structures and Materials 2000: Electroactive Polymer Actuators and Devices (eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2000: Electroactive Polymer Actuators and Devices (eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Mathematics and Control in Smart Structures = Proc Spie Smart Structures and Materials 2000: Mathematics and Control in Smart Structures = Proc. Spie. Smart Structures and Materials 2000: Mathematics and Control in Smart Structures = P Soc Photo-opt Ins Smart Structures and Materials 2000: Mathematics and Control in Smart Structures = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc Spie Smart Structures and Materials 2000: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc. Spie. Smart Structures and Materials 2000: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P Soc Photo-opt Ins Smart Structures and Materials 2000: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Smart Electronics and Mems = P Soc Photo-opt Ins Smart Structures and Materials 2000: Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2000: Smart Systems for Bridges, Structures, and Highways = Proc Spie Smart Structures and Materials 2000: Smart Systems for Bridges, Structures, and Highways = Proc. Spie. Smart Structures and Materials 2000: Smart Systems for Bridges, Structures, and Highways = P Soc Photo-opt Ins Smart Structures and Materials 2000: Smart Systems for Bridges, Structures, and Highways = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Active Materials: Behavior and Mechanics = Proc Spie Smart Structures and Materials 2001: Active Materials: Behavior and Mechanics = Proc. Spie. Smart Structures and Materials 2001: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2001: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Damping and Isolation = Proc Spie Smart Structures and Materials 2001: Damping and Isolation = Proc. Spie. Smart Structures and Materials 2001: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2001: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Electroactive Polymer Actuators and Devices = Proc Spie Smart Structures and Materials 2001: Electroactive Polymer Actuators and Devices = Proc. Spie. Smart Structures and Materials 2001: Electroactive Polymer Actuators and Devices = P Soc Photo-opt Ins Smart Structures and Materials 2001: Electroactive Polymer Actuators and Devices = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2001: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Modeling, Signal Processing, and Control in Smart Structures = Proc Spie Smart Structures and Materials 2001: Modeling, Signal Processing, and Control in Smart Structures = Proc. Spie. Smart Structures and Materials 2001: Modeling, Signal Processing, and Control in Smart Structures = P Soc Photo-opt Ins Smart Structures and Materials 2001: Modeling, Signal Processing, and Control in Smart Structures = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc Spie Smart Structures and Materials 2001: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = Proc. Spie. Smart Structures and Materials 2001: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P Soc Photo-opt Ins Smart Structures and Materials 2001: Sensory Phenomena and Measurement Instrumentation for Smart Structures and Materials = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Smart Electronics and Mems = Proc Spie Smart Structures and Materials 2001: Smart Electronics and Mems = Proc. Spie. Smart Structures and Materials 2001: Smart Electronics and Mems = P Soc Photo-opt Ins Smart Structures and Materials 2001: Smart Electronics and Mems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Materials 2001: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Materials 2001: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2001: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2001: Smart Systems for Bridges, Structures, and Highways = Proc Spie Smart Structures and Materials 2001: Smart Systems for Bridges, Structures, and Highways = Proc. Spie. Smart Structures and Materials 2001: Smart Systems for Bridges, Structures, and Highways = P Soc Photo-opt Ins Smart Structures and Materials 2001: Smart Systems for Bridges, Structures, and Highways = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Active Materials: Behavior and Mechanics = Proc Spie Smart Structures and Materials 2002: Active Materials: Behavior and Mechanics = Proc. Spie. Smart Structures and Materials 2002: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2002: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2002: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Electroactive Polymer Actuators and Devices (eapad) = Proc Spie Smart Structures and Materials 2002: Electroactive Polymer Actuators and Devices (eapad) = Proc. Spie. Smart Structures and Materials 2002: Electroactive Polymer Actuators and Devices (eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2002: Electroactive Polymer Actuators and Devices (eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Materials 2002: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Materials 2002: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2002: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Modeling, Signal Processing, and Control = Proc Spie Smart Structures and Materials 2002: Modeling, Signal Processing, and Control = Proc. Spie. Smart Structures and Materials 2002: Modeling, Signal Processing, and Control = P Soc Photo-opt Ins Smart Structures and Materials 2002: Modeling, Signal Processing, and Control = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Smart Electronics, Mems, and Nanotechnology = Proc Spie Smart Structures and Materials 2002: Smart Electronics, Mems, and Nanotechnology = Proc. Spie. Smart Structures and Materials 2002: Smart Electronics, Mems, and Nanotechnology = P Soc Photo-opt Ins Smart Structures and Materials 2002: Smart Electronics, Mems, and Nanotechnology = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Materials 2002: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Materials 2002: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2002: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2002: Smart Systems for Bridges, Structures, and Highways = Proc Spie Smart Structures and Materials 2002: Smart Systems for Bridges, Structures, and Highways = Proc. Spie. Smart Structures and Materials 2002: Smart Systems for Bridges, Structures, and Highways = P Soc Photo-opt Ins Smart Structures and Materials 2002: Smart Systems for Bridges, Structures, and Highways = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2003: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Damping and Isolation = Proc Spie Smart Structures and Materials 2003: Damping and Isolation = Proc. Spie. Smart Structures and Materials 2003: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2003: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Electroactive Polymer Actuators and Devices (eapad) = Proc Spie Smart Structures and Materials 2003: Electroactive Polymer Actuators and Devices (eapad) = Proc. Spie. Smart Structures and Materials 2003: Electroactive Polymer Actuators and Devices (eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2003: Electroactive Polymer Actuators and Devices (eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Materials 2003: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Materials 2003: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2003: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Modeling, Signal Processing, and Control = Proc Spie Smart Structures and Materials 2003: Modeling, Signal Processing, and Control = Proc. Spie. Smart Structures and Materials 2003: Modeling, Signal Processing, and Control = P Soc Photo-opt Ins Smart Structures and Materials 2003: Modeling, Signal Processing, and Control = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Smart Electronics, Mems, Biomems, and Nanotechnology = P Soc Photo-opt Ins Smart Structures and Materials 2003: Smart Electronics, Mems, Biomems, and Nanotechnology = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Smart Sensor Technology and Measurement Systems = Proc Spie Smart Structures and Materials 2003: Smart Sensor Technology and Measurement Systems = Proc. Spie. Smart Structures and Materials 2003: Smart Sensor Technology and Measurement Systems = P Soc Photo-opt Ins Smart Structures and Materials 2003: Smart Sensor Technology and Measurement Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Materials 2003: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Materials 2003: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2003: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2003: Smart Systems and Nondestructive Evaluation for Civil Infrastructures = Proc Spie Smart Structures and Materials 2003: Smart Systems and Nondestructive Evaluation for Civil Infrastructures = Proc. Spie. Smart Structures and Materials 2003: Smart Systems and Nondestructive Evaluation for Civil Infrastructures = P Soc Photo-opt Ins Smart Structures and Materials 2003: Smart Systems and Nondestructive Evaluation for Civil Infrastructures = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Active Materials: Behavior and Mechanics = Proc Spie Smart Structures and Materials 2004: Active Materials: Behavior and Mechanics = Proc. Spie. Smart Structures and Materials 2004: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2004: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Damping and Isolation = Proc Spie Smart Structures and Materials 2004: Damping and Isolation = Proc. Spie. Smart Structures and Materials 2004: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2004: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Electroactive Polymer Actuators and Devices (eapad) = Proc Spie Smart Structures and Materials 2004: Electroactive Polymer Actuators and Devices (eapad) = Proc. Spie. Smart Structures and Materials 2004: Electroactive Polymer Actuators and Devices (eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2004: Electroactive Polymer Actuators and Devices (eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Materials 2004: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Materials 2004: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2004: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Modeling, Signal Processing, and Control = Proc Spie Smart Structures and Materials 2004: Modeling, Signal Processing, and Control = Proc. Spie. Smart Structures and Materials 2004: Modeling, Signal Processing, and Control = P Soc Photo-opt Ins Smart Structures and Materials 2004: Modeling, Signal Processing, and Control = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems = Proc Spie Smart Structures and Materials 2004: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems = Proc. Spie. Smart Structures and Materials 2004: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems = P Soc Photo-opt Ins Smart Structures and Materials 2004: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Smart Electronics, Mems, Biomems and Nanotechnology = Proc Spie Smart Structures and Materials 2004: Smart Electronics, Mems, Biomems and Nanotechnology = Proc. Spie. Smart Structures and Materials 2004: Smart Electronics, Mems, Biomems and Nanotechnology = P Soc Photo-opt Ins Smart Structures and Materials 2004: Smart Electronics, Mems, Biomems and Nanotechnology = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Smart Sensor Technology and Measurement Systems = P Soc Photo-opt Ins Smart Structures and Materials 2004: Smart Sensor Technology and Measurement Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2004: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Materials 2004: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Materials 2004: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2004: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Active Materials: Behavior and Mechanics = Proc Spie Smart Structures and Materials 2005: Active Materials: Behavior and Mechanics = Proc. Spie. Smart Structures and Materials 2005: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2005: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Damping and Isolation = Proc Spie Smart Structures and Materials 2005: Damping and Isolation = Proc. Spie. Smart Structures and Materials 2005: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2005: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Electroactive Polymer Actuators and Devices( Eapad) = Proc Spie Smart Structures and Materials 2005: Electroactive Polymer Actuators and Devices( Eapad) = Proc. Spie. Smart Structures and Materials 2005: Electroactive Polymer Actuators and Devices( Eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2005: Electroactive Polymer Actuators and Devices( Eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Industrial and Commercial Applications of Smart Structures Technologies = Proc Spie Smart Structures and Materials 2005: Industrial and Commercial Applications of Smart Structures Technologies = Proc. Spie. Smart Structures and Materials 2005: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2005: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Modeling, Signal Processing, and Control = Proc Spie Smart Structures and Materials 2005: Modeling, Signal Processing, and Control = Proc. Spie. Smart Structures and Materials 2005: Modeling, Signal Processing, and Control = P Soc Photo-opt Ins Smart Structures and Materials 2005: Modeling, Signal Processing, and Control = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace, Pts 1 and 2 = Proc Spie Smart Structures and Materials 2005: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace, Pts 1 and 2 = Proc. Spie. Smart Structures and Materials 2005: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace, Pts 1 and 2 = P Soc Photo-opt Ins Smart Structures and Materials 2005: Sensors and Smart Structures Technologies for Civil, Mechanical, and Aerospace, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Smart Electronics, Mems, Biomems, and Nanotechnology = Proc Spie Smart Structures and Materials 2005: Smart Electronics, Mems, Biomems, and Nanotechnology = Proc. Spie. Smart Structures and Materials 2005: Smart Electronics, Mems, Biomems, and Nanotechnology = P Soc Photo-opt Ins Smart Structures and Materials 2005: Smart Electronics, Mems, Biomems, and Nanotechnology = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Smart Sensor Technology and Measurement Systems = Proc Spie Smart Structures and Materials 2005: Smart Sensor Technology and Measurement Systems = Proc. Spie. Smart Structures and Materials 2005: Smart Sensor Technology and Measurement Systems = P Soc Photo-opt Ins Smart Structures and Materials 2005: Smart Sensor Technology and Measurement Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2005: Smart Structures and Integrated Systems = Proc Spie Smart Structures and Materials 2005: Smart Structures and Integrated Systems = Proc. Spie. Smart Structures and Materials 2005: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2005: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Active Materials: Behavior and Mechanics = Proc Spie Smart Structures and Materials 2006: Active Materials: Behavior and Mechanics = Proc. Spie. Smart Structures and Materials 2006: Active Materials: Behavior and Mechanics = P Soc Photo-opt Ins Smart Structures and Materials 2006: Active Materials: Behavior and Mechanics = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Damping and Isolation = Proc Spie Smart Structures and Materials 2006: Damping and Isolation = Proc. Spie. Smart Structures and Materials 2006: Damping and Isolation = P Soc Photo-opt Ins Smart Structures and Materials 2006: Damping and Isolation = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Electroactive Polymer Actuators and Devices (eapad) = Proc Spie Smart Structures and Materials 2006: Electroactive Polymer Actuators and Devices (eapad) = Proc. Spie. Smart Structures and Materials 2006: Electroactive Polymer Actuators and Devices (eapad) = P Soc Photo-opt Ins Smart Structures and Materials 2006: Electroactive Polymer Actuators and Devices (eapad) = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Industrial and Commercial Applications of Smart Structures Technologies = P Soc Photo-opt Ins Smart Structures and Materials 2006: Industrial and Commercial Applications of Smart Structures Technologies = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Modeling, Signal Processing, and Control = Proc Spie Smart Structures and Materials 2006: Modeling, Signal Processing, and Control = Proc. Spie. Smart Structures and Materials 2006: Modeling, Signal Processing, and Control = P Soc Photo-opt Ins Smart Structures and Materials 2006: Modeling, Signal Processing, and Control = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Sensors and Smart Structures Technologies for Civil, Mechanical , and Aerospace Systems, Pts 1 and 2 = Proc Spie Smart Structures and Materials 2006: Sensors and Smart Structures Technologies for Civil, Mechanical , and Aerospace Systems, Pts 1 and 2 = Proc. Spie. Smart Structures and Materials 2006: Sensors and Smart Structures Technologies for Civil, Mechanical , and Aerospace Systems, Pts 1 and 2 = P Soc Photo-opt Ins Smart Structures and Materials 2006: Sensors and Smart Structures Technologies for Civil, Mechanical , and Aerospace Systems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Smart Electronics, Mems, Biomems, and Nanotechnology = P Soc Photo-opt Ins Smart Structures and Materials 2006: Smart Electronics, Mems, Biomems, and Nanotechnology = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Smart Sensor Monitoring Systems and Applications = Proc Spie Smart Structures and Materials 2006: Smart Sensor Monitoring Systems and Applications = Proc. Spie. Smart Structures and Materials 2006: Smart Sensor Monitoring Systems and Applications = P Soc Photo-opt Ins Smart Structures and Materials 2006: Smart Sensor Monitoring Systems and Applications = P. Soc. Photo-opt. Ins. Smart Structures and Materials 2006: Smart Structures and Integrated Systems = P Soc Photo-opt Ins Smart Structures and Materials 2006: Smart Structures and Integrated Systems = P. Soc. Photo-opt. Ins. Smart Structures and Systems = Smart Struct Syst Smart Structures and Systems = Smart Struct. Syst. Smart Structures, Devices, and Systems Iii = Proc Spie Smart Structures, Devices, and Systems Iii = Proc. Spie. Smart Structures, Devices, and Systems Iii = P Soc Photo-opt Ins Smart Structures, Devices, and Systems Iii = P. Soc. Photo-opt. Ins. Smart Structures, Devices, and Systems Ii, Pt 1 and 2 = Proc Spie Smart Structures, Devices, and Systems Ii, Pt 1 and 2 = Proc. Spie. Smart Structures, Devices, and Systems Ii, Pt 1 and 2 = P Soc Photo-opt Ins Smart Structures, Devices, and Systems Ii, Pt 1 and 2 = P. Soc. Photo-opt. Ins. Smart Structures, Devices, and Systems = Proc Spie Smart Structures, Devices, and Systems = Proc. Spie. Smart Structures, Devices, and Systems = P Soc Photo-opt Ins Smart Structures, Devices, and Systems = P. Soc. Photo-opt. Ins. Smart Structures: Optical Instrumentation and Sensing Systems = P Soc Photo-opt Ins Smart Structures: Optical Instrumentation and Sensing Systems = P. Soc. Photo-opt. Ins. Smart Systems for Bridges, Structures, and Highways = P Soc Photo-opt Ins Smart Systems for Bridges, Structures, and Highways = P. Soc. Photo-opt. Ins. Smart Systems for Bridges, Structures, and Highways - Smart Structures and Materials 1997 = P Soc Photo-opt Ins Smart Systems for Bridges, Structures, and Highways - Smart Structures and Materials 1997 = P. Soc. Photo-opt. Ins. Smart System Technologies = Smrt Sys Tech Smart System Technologies = Smrt. Sys. Tech. Smart Textile Coatings and Laminates = Woodhead Publ Text Smart Textile Coatings and Laminates = Woodhead. Publ. Text. Smart Textiles = Adv Sci Tech Smart Textiles = Adv. Sci. Tech. Smart Textiles for Medicine and Healthcare: Materials, Systems and Applications = Woodhead Publ Ser Te Smart Textiles for Medicine and Healthcare: Materials, Systems and Applications = Woodhead. Publ. Ser. Te. Smc 2000 Conference Proceedings: 2000 Ieee International Conference On Systems, Man & Cybernetics, Vol 1-5 = Ieee Sys Man Cybern Smc 2000 Conference Proceedings: 2000 Ieee International Conference On Systems, Man & Cybernetics, Vol 1-5 = Ieee Sys. Man Cybern. Smc '97 Conference Proceedings - 1997 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys Man Cybern Smc '97 Conference Proceedings - 1997 Ieee International Conference On Systems, Man, and Cybernetics, Vols 1-5 = Ieee Sys. Man. Cybern. SMF Journée Annuelle = SMF Journ. Annu. Smith College Studies in Social Work = Smith Coll Stud Soc Smith College Studies in Social Work = Smith Coll. Stud. Soc. Smith College studies in social work = Smith Coll Stud Soc Work Smith-Hurd Illinois annotated statutes. Illinois = Smith-Hurd Ill Annot Statut Ill Smithsonian annals of flight = Smithson Ann Flight Smithsonian Contributions to Paleobiology-series = Sm C Paleob Smithsonian Contributions to Paleobiology-series = Sm. C. Paleob. Smithsonian Series in Ethnographic Inquiry = Smithson Ser Ethnog Smithsonian Series in Ethnographic Inquiry = Smithson. Ser. Ethnog. Smithsonian = Smithsonian Smithsonian studies in history and technology. Smithsonian Institution = Smithson Stud Hist Technol Smo 08: Proceedings of The 8th Wseas International Conference On Simulation, Modelling and Optimization = Ma Comput Sci Eng Smo 08: Proceedings of The 8th Wseas International Conference On Simulation, Modelling and Optimization = Ma. Comput. Sci. Eng. Smo 08: Proceedings of The 8th Wseas International Conference On Simulation, Modelling and Optimization = Math Comput Sci Eng Smo 08: Proceedings of The 8th Wseas International Conference On Simulation, Modelling and Optimization = Math. Comput. Sci. Eng. Smoking As A Risk Factor for Suicide = Psychol Emot Motiv A Smoking As A Risk Factor for Suicide = Psychol. Emot. Motiv. A Smoking Cessation = Eur Respir Monogr Smoking Cessation = Eur. Respir. Monogr. Smoking Relapse: Causes, Prevention and Recovery = Public Health 21st C Smoking Relapse: Causes, Prevention and Recovery = Public. Health. 21st. C. Smooth Ergodic Theory for Endomorphisms = Lect Notes Math Smooth Ergodic Theory for Endomorphisms = Lect. Notes. Math. Smpte Journal = Smpte J Smpte Journal = Smpte J. Smpte Motion Imaging Journal = Smpte Motion Imag J Smpte Motion Imaging Journal = Smpte Motion Imag. J. SMU law review : a publication of Southern Methodist University School of Law = SMU Law Rev SMU Law Review = SMU Law Rev. Snakeroot extract = Snakeroot Extr Snapi 2007: Fourth International Workshop On Storage Network Architecture and Parallel I/os, Proceedings = I W Stor Netw Arch Snapi 2007: Fourth International Workshop On Storage Network Architecture and Parallel I/os, Proceedings = I. W. Stor. Netw. Arch. Snapi 2008: Fifth Ieee International Workshop On Storage Network Architecture and Parallel I/os, Proceedings = I W Stor Netw Arch Snapi 2008: Fifth Ieee International Workshop On Storage Network Architecture and Parallel I/os, Proceedings = I. W. Stor. Netw. Arch. Snoring: Causes, Diagnosis and Treatment = Otolaryngol Res Adv Snoring: Causes, Diagnosis and Treatment = Otolaryngol. Res. Adv. Snow and Glacier Hydrology = Iahs-aish P Snow and Glacier Hydrology = Iahs-aish. P. Snow and Ice Covers: Interactions With The Atmosphere and Ecosystems = Iahs-aish P Snow and Ice Covers: Interactions With The Atmosphere and Ecosystems = Iahs-aish. P. Snowbird Lectures in Algebraic Geometry = Contemp Math Snowbird Lectures in Algebraic Geometry = Contemp. Math. Snowbird Lectures On String Geometry = Contemp Math Snowbird Lectures On String Geometry = Contemp. Math. Snow, Hydrology and Forests in High Alpine Areas = Iahs-aish P Snow, Hydrology and Forests in High Alpine Areas = Iahs-aish. P. Soap and Chemical Specialities = Soap Chem Special Soap and Chemical Specialities = Soap Chem. Special. Soap Cosmetics Chemical Specialties = Soap Cosmet Chem Spe Soap Cosmetics Chemical Specialties = Soap Cosmet. Chem. Spe. Soap, Cosmetics, Chemical Specialties = Soap, Cosmet., Chem. Spec. Soap & Cosmetics = Soap Cosmet Soap & Cosmetics = Soap Cosmet. Soap, perfumery & cosmetics = Soap Perfum Cosmet (Lond) Soas-routledge Studies On The Middle East = Soas-rout Stud Mid E Soas-routledge Studies On The Middle East = Soas-rout. Stud. Mid. E. Sobolev Gradients and Differential Equations, Second Edition = Lect Notes Math Sobolev Gradients and Differential Equations, Second Edition = Lect. Notes. Math. Sobolev Spaces in Mathematics Iii = Int Mat Ser Sobolev Spaces in Mathematics Iii = Int. Mat. Ser. Sobolev Spaces in Mathematics Ii = Int Mat Ser Sobolev Spaces in Mathematics Ii = Int. Mat. Ser. Sobolev Spaces in Mathematics I = Int Mat Ser Sobolev Spaces in Mathematics I = Int. Mat. Ser. Sobolev Spaces: With Applications to Elliptic Partial Differential Equations, 2nd Edition = Grundlehr Math Wiss Sobolev Spaces: With Applications to Elliptic Partial Differential Equations, 2nd Edition = Grundlehr. Math. Wiss. Sobornost Incorporating Eastern Churches Review = Sobornost E Church R Sobornost Incorporating Eastern Churches Review = Sobornost E. Church. R. Sobre Lope De Vega = Criticon Sobre Lope De Vega = Criticon. Social Accounting and Public Management: Accountability for The Common Good = Routl Crit Stud Publ Social Accounting and Public Management: Accountability for The Common Good = Routl. Crit. Stud. Publ. Social action = Soc Action Social Alternatives = Soc Alternatives Social Alternatives = Soc. Alternatives Social Analysis : A Series in The Social Sciences = Soc Anal Se Social Analysis : A Series in The Social Sciences = Soc. Anal. Se. Social and Cultural Diversity in A Sporting World = Res Sociol Sport Social and Cultural Diversity in A Sporting World = Res. Sociol. Sport. Social and Economic Administration = Soc Econ Admin Social and Economic Administration = Soc. Econ. Admin. Social and economic administration = Soc Econ Adm (Lond) Social and Economic Conditions of The Kosova Serbs in The 19th Century and Early 20th Century = Srpska Akad Nauk Social and Economic Conditions of The Kosova Serbs in The 19th Century and Early 20th Century = Srpska. Akad. Nauk. Social and Economic Control of Alcohol: The 21st Amendment in The 21st Century = Public Adm Public Po Social and Economic Control of Alcohol: The 21st Amendment in The 21st Century = Public. Adm. Public. Po. Social and Economic Roots of The Scientific Revolution: Texts By Boris Hessen and Henryk Grossmann = Bost Stud Philos Sci Social and Economic Roots of The Scientific Revolution: Texts By Boris Hessen and Henryk Grossmann = Bost. Stud. Philos. Sci. Social and economic studies = Soc Econ Stud Social and Economic Studies=Soc. Econ. Stud. Social and Economic Studies = Soc Econ Stud Social and Economic Studies = Soc. Econ. Stud. Social and Gender Boundaries in The United States = Mellen St S Social and Gender Boundaries in The United States = Mellen. St. S. Social and labour bulletin = Soc Labour Bull Social and Policy Issues in Education: The David C Anchin Series = Soc Pol Iss Edu Social and Policy Issues in Education: The David C Anchin Series = Soc. Pol. Iss. Edu. Social and Political Thought of George Orwell: A Reassessment = Routl Stud Soc Polit Social and Political Thought of George Orwell: A Reassessment = Routl. Stud. Soc. Polit. Social and Rehabilitation Record = Soc. Rehabil. Rec. Social Anthropology in Oceania = Soc Anthropol Ocean Social Anthropology in Oceania = Soc. Anthropol. Ocean. Social Aspects of Aids = Soc As Aids Social Aspects of Aids = Soc. As. Aids Social Banks and The Future of Sustainable Finance = Routl Int Stud Money Social Banks and The Future of Sustainable Finance = Routl. Int. Stud. Money. Social behavior and personality = Soc Behav Pers Social Behavior and Personality = Soc Behav Personal Social Behavior and Personality = Soc. Behav. Personal. Social Behaviour and Natural Resources Series = Soc Beh Nat Social Behaviour and Natural Resources Series = Soc. Beh. Nat. Social behaviour = Soc Behav Social Behaviour = Soc Behav Social Behaviour = Soc. Behav. Social biology and human affairs = Soc Biol Hum Aff Social biology = Soc Biol Social Biology=Soc Biol;; Social Biology = Soc Biol Social Biology = Soc. Biol. Social Capital and Associations in European Democracies: A Comparative Analysis = Routl Res Comp Polit Social Capital and Associations in European Democracies: A Comparative Analysis = Routl. Res. Comp. Polit. Social Capital and Peace-building: Creating and Resolving Conflict With Trust and Social Networks = Routl Stud Peace Con Social Capital and Peace-building: Creating and Resolving Conflict With Trust and Social Networks = Routl. Stud. Peace. Con. Social Capital in The Knowledge Economy: Theory and Empirics = Adv Spat Sci Social Capital in The Knowledge Economy: Theory and Empirics = Adv. Spat. Sci. Social Capital, Second Edition = Key Ideas Social Capital, Second Edition = Key. Ideas. Social Capital, Trust and The Industrial Revolution, 1780-1880 = Routl Explor Econ Hi Social Capital, Trust and The Industrial Revolution, 1780-1880 = Routl. Explor. Econ. Hi. Social Casework-journal of Contemporary Social Work = Soc Casework-jcsw Social Casework-journal of Contemporary Social Work = Soc. Casework-jcsw. Social casework = Soc Casework Social Casework = Soc. Casework Social Casework = Soc Casework-jcsw Social Casework = Soc. Casework-jcsw. Social Change and Modernization = De Gruy St Social Change and Modernization = De. Gruy. St. Social Change in The Age of Globalization = Ann Int Inst Sociol Social Change in The Age of Globalization = Ann. Int. Inst. Sociol. Social Changes and Position of Gypsies = Serb Ac Sci Social Changes and Position of Gypsies = Serb. Ac. Sci. Social change = Soc Change Social Choice and Strategic Decisions: Essays in Honor of Jeffrey S. Banks = Stud Choice Welf Social Choice and Strategic Decisions: Essays in Honor of Jeffrey S. Banks = Stud. Choice Welf. Social Choice and Welfare = Soc. Choice Welf. Social choice and welfare = Soc Choice Welfare Social Choice and Welfare=Soc. Choice Welfare Social Choice and Welfare = Soc Choice Welfare Social Choice and Welfare = Soc. Choice Welfare Social Choice Re-examined, Vol 2 = Iea Conf Vol Social Choice Re-examined, Vol 2 = Iea. Conf. Vol Social Class in Contemporary Japan = Nissan I Routl Jpn S Social Class in Contemporary Japan = Nissan. I. Routl. Jpn. S. Social Class in Europe = Routl Eur Sociol Ass Social Class in Europe = Routl. Eur. Sociol. Ass. Social cognition = Soc Cogn Social Cognition = Soc Cognition Social Cognition = Soc. Cognition Social Cognition: The Basis of Human Interaction = Front Soc Psychol Social Cognition: The Basis of Human Interaction = Front. Soc. Psychol. Social Cognitive and Affective Neuroscience = Soc Cogn Affect Neur Social Cognitive and Affective Neuroscience = Soc. Cogn. Affect. Neur. Social cognitive and affective neuroscience = Soc Cogn Affect Neurosci Social Cognitive Neuroscience of Organizations = Ann Ny Acad Sci Social Cognitive Neuroscience of Organizations = Ann. Ny. Acad. Sci. Social Communication = Front Soc Psychol Social Communication = Front. Soc. Psychol. Social Compass = Soc Compass Social Compass = Soc. Compass Social Competence in Developmental Perspective = Nato Adv Sci I D-beh Social Competence in Developmental Perspective = Nato. Adv. Sci. I. D-beh. Social Consequences of Genetic Engineering = Int Congr Ser Social Consequences of Genetic Engineering = Int. Congr. Ser. Social Construction of Disease = Routl St Hist Sci Te Social Construction of Disease = Routl. St. Hist. Sci. Te. Social Contexts of Early Education, and Reconceptualizing Play Ii = Adv Early Educ Day C Social Contexts of Early Education, and Reconceptualizing Play Ii = Adv. Early Educ. Day. C. Social Cost of Electricity: Scenarios and Policy Implications = Feem Ser Econ Envir Social Cost of Electricity: Scenarios and Policy Implications = Feem. Ser. Econ. Envir. Social Costs and Public Action in Modern Capitalism = Routl Fr Polit Econ Social Costs and Public Action in Modern Capitalism = Routl. Fr. Polit. Econ. Social Costs and Sustainable Mobility = Zew Econ Stud Social Costs and Sustainable Mobility = Zew. Econ. Stud. Social Costs and Sustainable Mobility = Zew Econ Studies Social Costs and Sustainable Mobility = Zew. Econ. Studies. Social & Cultural Geography = Soc Cult Geogr Social & Cultural Geography = Soc. Cult. Geogr. Social Decision Making: Social Dilemmas, Social Values, and Ethical Judgments = Ser Organ Manage Social Decision Making: Social Dilemmas, Social Values, and Ethical Judgments = Ser. Organ. Manage. Social Democracy in Power: The Capacity to Reform = Routl Res Comp Polit Social Democracy in Power: The Capacity to Reform = Routl. Res. Comp. Polit. Social development issues = Soc Dev Issues Social development (Oxford, England) = Soc Dev Social Development = Soc Dev Social Development = Soc. Dev. Social Development = Soc Iss Justice Stat Social Development = Soc. Iss. Justice. Stat. Social Dimensions of Information and Communication Technology Policy = Int Fed Info Proc Social Dimensions of Information and Communication Technology Policy = Int. Fed. Info. Proc. Social Disparities in Health and Health Care = Soc Dispar H H Care Social Disparities in Health and Health Care = Soc. Dispar. H. H. Care Social Drinking: Uses, Abuses and Psychological Factors = Subst Abus Assess In Social Drinking: Uses, Abuses and Psychological Factors = Subst. Abus. Assess. In. Social Dynamics-a Journal of The Centre for African Studies University of Cape Town = Soc Dynamics Social Dynamics-a Journal of The Centre for African Studies University of Cape Town = Soc. Dynamics. Social Economic and Political Studies of The Middle East = Soc Econ P Social Economic and Political Studies of The Middle East = Soc. Econ. P. Social Economy: Working Alternatives in A Globalizing Era = Rethink Glob Social Economy: Working Alternatives in A Globalizing Era = Rethink. Glob. Social Education in Asia: Critical Issues and Multiple Perspectives = Res Soc Educ Social Education in Asia: Critical Issues and Multiple Perspectives = Res. Soc. Educ. Social Education = Soc Educ Social Education = Soc. Educ. Social Embeddedness of Media Use:action Theoretical Contributions to The Study of Tv Use in Everyday Life = Commun Monogr-ger Social Embeddedness of Media Use:action Theoretical Contributions to The Study of Tv Use in Everyday Life = Commun. Monogr-ger. Social Enterprise = Routl Stud Man Volun Social Enterprise = Routl. Stud. Man. Volun. Social Environmental Sustainability = Soc Environ Sustain Social Environmental Sustainability = Soc. Environ. Sustain. Social Epileptology: Understanding Social Aspects of Epilepsy = Soc Iss Justice Stat Social Epileptology: Understanding Social Aspects of Epilepsy = Soc. Iss. Justice. Stat. Social Epistemology of Experimental Economics = Routl Adv Exp Comput Social Epistemology of Experimental Economics = Routl. Adv. Exp. Comput. Social Ethics and Normative Economics: Essays in Honour of Serge-christophe Kolm = Stud Choice Welf Social Ethics and Normative Economics: Essays in Honour of Serge-christophe Kolm = Stud. Choice. Welf. Sociale wetenschappen = Soc Wetenschap Social forces; a scientific medium of social study and interpretation = Soc Forces Social Forces = Soc Forces Social Forces = Soc. Forces Social Histories of Disability and Deformity = Routl Stud Soc Hist Social Histories of Disability and Deformity = Routl. Stud. Soc. Hist. Social History & African Environments = Ohio Univ Press Ecol Social History & African Environments = Ohio. Univ. Press. Ecol. Social History of Health and Medicine in Colonial India = Rout Stud S Asia His Social History of Health and Medicine in Colonial India = Rout. Stud. S. Asia. His. Social History of Medicine = Soc Hist Med Social History of Medicine = Soc. Hist. Med. Social history of medicine : the journal of the Society for the Social History of Medicine / SSHM = Soc Hist Med Social history = Soc Hist Social History = Soc Hist Social History = Soc. Hist. Social Identification in Groups = Adv Group Process Social Identification in Groups = Adv. Group. Process. Social Identity, Third Edition = Key Ideas Social Identity, Third Edition = Key. Ideas. Social Inclusion: Societal and Organizational Implications for Information Systems = Int Fed Info Proc Social Inclusion: Societal and Organizational Implications for Information Systems = Int. Fed. Info. Proc. Social Indicators Research Series = Social Indic Res Social Indicators Research Series = Social Indic. Res. Social Indicators Research Series = Soc Indic Res Ser Social Indicators Research Series = Soc. Indic. Res. Ser. Social indicators research = Soc Indic Res Social Indicators Research = Soc Indic Res Social Indicators Research = Soc. Indic. Res. Social Influence = Soc Influence Social Influence = Soc. Influence Social Informatics: An Information Society for All? = Int Fed Info Proc Social Informatics: An Information Society for All? = Int. Fed. Info. Proc. Social Informatics = Lect Notes Comput Sc Social Informatics = Lect. Notes. Comput. Sc. Social Institutions and Social Change : An Aldine De Gruyter Series of Texts and Monographs = So Inst S Social Institutions and Social Change : An Aldine De Gruyter Series of Texts and Monographs = So. Inst. S. Social Institutions = Soc Econ Social Institutions = Soc. Econ. Socialism and The Law = Arsp Beiheft Socialism and The Law = Arsp. Beiheft. Socialism = Asa Monogr Socialism = Asa. Monogr. Socialism, Economic Calculation and Entrepreneurship = New Think Polit Econ Socialism, Economic Calculation and Entrepreneurship = New. Think. Polit. Econ. Socialisme = Socialisme Social Issues Justice and Status = Soc Iss Justice Stat Social Issues Justice and Status = Soc. Iss. Justice Stat. Socialist Alternative to Bolshevik Russia: The Socialist Revolutionary Party, 1921-1939 = Basees-rout Ser Russ Socialist Alternative to Bolshevik Russia: The Socialist Revolutionary Party, 1921-1939 = Basees-rout. Ser. Russ. Socialist China, Capitalist China: Social Tension and Political Adaptation Under Economic Globalization = China Policy Ser Socialist China, Capitalist China: Social Tension and Political Adaptation Under Economic Globalization = China. Policy. Ser. Socialist Review = Socialist Rev Socialist Review = Socialist Rev. Socialist review = Social Rev Socialist Revolutions in Asia: The Social History of Mongolia in The 20th Century = Cent Asian Stud Ser Socialist Revolutions in Asia: The Social History of Mongolia in The 20th Century = Cent. Asian. Stud. Ser. Socialist revolution = Social Revolut Socialization of School Children and Their Education Fro Democratic Values and Human Rights = Eur Educ R Socialization of School Children and Their Education Fro Democratic Values and Human Rights = Eur. Educ. R. Social Justice-a Journal of Crime Conflict and World Order = Social Justice Social Justice-a Journal of Crime Conflict and World Order = Social Justice. Social Justice and Communication Scholarship = Lea Commun Ser Social Justice and Communication Scholarship = Lea. Commun. Ser. Social Justice in The Ancient World = Contrib Polit Sci Social Justice in The Ancient World = Contrib. Polit. Sci. Social Justice: Its Theory and Practice = P Am Cath Philos Ass Social Justice: Its Theory and Practice = P. Am. Cath. Philos. Ass. Social justice research = Soc Justice Res Social Justice Research = Soc Justice Res Social Justice Research = Soc. Justice Res. Social justice review = Soc Justice Rev Social justice (San Francisco, Calif.) = Soc Justice Social Justice = Soc Justice Social Justice = Soc. Justice Social Legacy of Communism = W Wilson Cent Ser Social Legacy of Communism = W. Wilson. Cent. Ser. Social & Legal Studies = Soc Legal Stud Social & Legal Studies = Soc. Legal Stud. Social & legal studies = Soc Leg Stud Social Life of Trees = Materializ Cult Social Life of Trees = Materializ. Cult. Social Market Economy = St Econ Ethic Philos Social Market Economy = St. Econ. Ethic. Philos. Social Marketing = Advert Cons Social Marketing = Advert. Cons. Social Marketing Forum = Soc Mark Forum Social marketing quarterly = Soc Mar Q Social marketing update = Soc Mark Update Social Meanings of Sacrifice in The Hebrew Bible = Beih Z Alttest Wiss Social Meanings of Sacrifice in The Hebrew Bible = Beih. Z. Alttest. Wiss. Social Media On The Road: The Future of Car Based Computing = Comput Supp Coop Wor Social Media On The Road: The Future of Car Based Computing = Comput. Supp. Coop. Wor. Socialmedicinsk tidskrift. Skriftserie = Socialmed Tidskr Skriftser Social-Medicinsk tidskrift = Soc Med Tidskr Social-Medicinsk Tidskrift = Soc. Med. Tidskr. Social Motivation = Front Soc Psychol Social Motivation = Front. Soc. Psychol. Social Movements in Development = Int Pol Ec Social Movements in Development = Int. Pol. Ec. Social Movements in Politics: A Comparative Study, Expanded Edition = Perspect Comp Polit Social Movements in Politics: A Comparative Study, Expanded Edition = Perspect. Comp. Polit. Social Movement Society = People Pas Pow Social Movement Society = People. Pas. Pow. Social Movements Protest and Contentions = Soc Mov Protest Cont Social Movements Protest and Contentions = Soc. Mov. Protest Cont. Social Networks and Historical Sociolinguistics = Top Engl Linguist Social Networks and Historical Sociolinguistics = Top. Engl. Linguist. Social networks = Soc Networks Social Networks = Soc Networks Social Networks = Soc. Networks Social neuroscience = Soc Neurosci Social Neuroscience = Soc Neurosci Social Neuroscience = Soc. Neurosci. Social Neuroscience = Soc Neurosci-uk Social Neuroscience = Soc. Neurosci-uk. Social Order in Multiagent Systems = Mu S Art Soc Sim Org Social Order in Multiagent Systems = Mu. S. Art. Soc. Sim. Org. Social Pacts, Employment and Growth = Aiel Ser Labour Econ Social Pacts, Employment and Growth = Aiel. Ser. Labour. Econ. Social Perspectives of Aging = Soc Perspect Aging Social Perspectives of Aging = Soc. Perspect. Aging Social philosophy & policy = Soc Philos Policy Social Philosophy & Policy = Soc Philos Policy Social Philosophy & Policy = Soc. Philos. Policy Social Philosophy Today: Communication, Conflict, and Reconciliation = Soc Philos Today Social Philosophy Today: Communication, Conflict, and Reconciliation = Soc. Philos. Today. Social Philosophy Today: Human Rights, Religon, and Democracy = Soc Philos Today Social Philosophy Today: Human Rights, Religon, and Democracy = Soc. Philos. Today. Social Philosophy Today: International Law and Justice = Soc Philos Today Social Philosophy Today: International Law and Justice = Soc. Philos. Today. Social Philosophy Today: Race and Diversity in The Global Context = Soc Philos Today Social Philosophy Today: Race and Diversity in The Global Context = Soc. Philos. Today. Social Philosophy Today: Science, Technology, and Social Justice, Vol 22 = Soc Philos Today Social Philosophy Today: Science, Technology, and Social Justice, Vol 22 = Soc. Philos. Today. Social Philosophy Today = Soc Philos Today Social Philosophy Today = Soc. Philos. Today Social Policies and Private Sector Participation in Water Supply: Beyond Regulation = Soc Policy Dev Conte Social Policies and Private Sector Participation in Water Supply: Beyond Regulation = Soc. Policy. Dev. Conte. Social Policy & Administration = Soc Policy Admin Social Policy & Administration = Soc. Policy Admin. Social Policy and Poverty in East Asia: The Role of Social Security = Rout Res Pub Soc Pol Social Policy and Poverty in East Asia: The Role of Social Security = Rout. Res. Pub. Soc. Pol. Social Policy: Challenges, Developments and Implications = Soc Iss Justice Stat Social Policy: Challenges, Developments and Implications = Soc. Iss. Justice. Stat. Social Policy in A Development Context Series = Soc Pol Dev Context Social Policy in A Development Context Series = Soc. Pol. Dev. Context Social Policy in A Development Context Series = Soc Policy Dev Conte Social Policy in A Development Context Series = Soc. Policy Dev. Conte. Social Policy in A Development Context = Soc Pol Dev Context Social Policy in A Development Context = Soc. Pol. Dev. Context Social Policy in Sub-saharan African Context: in Search of Inclusive Development = Soc Policy Dev Conte Social Policy in Sub-saharan African Context: in Search of Inclusive Development = Soc. Policy Dev. Conte. Social Policy Journal of New Zealand = Soc Policy J Nz Social Policy Journal of New Zealand = Soc. Policy J. Nz. Social Policy Journal of New Zealand = Soc Policy J N Z Social Policy Journal of New Zealand = Soc. Policy J. N. Z. Social policy report / Society for Research in Child Development = Soc Policy Rep Social policy = Soc Policy Social Policy = Soc Policy Social Policy = Soc. Policy Social Politics = Soc Polit Social Politics = Soc. Polit. Social praxis = Soc Prax Social Praxis = Soc Prax Social Praxis = Soc. Prax. Social problems = Soc Probl Social Problems = Soc Probl Social Problems = Soc. Probl. Social Professional Activity: The Search for A Minimum Common Denominator in Difference = Wm Thomp Ser Dem Soc Social Professional Activity: The Search for A Minimum Common Denominator in Difference = Wm. Thomp. Ser. Dem. Soc. Social Protection for The Poor and Poorest: Concepts, Policies and Politics = Palgrave Stud Dev Social Protection for The Poor and Poorest: Concepts, Policies and Politics = Palgrave. Stud. Dev. Social Protection of The Frail Elderly = Stud Res Ss Social Protection of The Frail Elderly = Stud. Res. Ss. Social Protection of The Next Generation in Europe = Eiss Kluw Law Int S Social Protection of The Next Generation in Europe = Eiss. Kluw. Law. Int. S. Social psychiatry and psychiatric epidemiology = Soc Psychiatry Psychiatr Epidemiol Social Psychiatry and Psychiatric Epidemiology=Soc Psychiatry Psychiatr Epidemiol;; Social Psychiatry and Psychiatric Epidemiology = Soc. Psychiatry Psychiatr. Epidemiol. Social Psychiatry and Psychiatric Epidemiology = Soc Psych Psych Epid Social Psychiatry and Psychiatric Epidemiology = Soc. Psych. Psych. Epid. Social Psychiatry = Soc Psychiatr Social Psychiatry = Soc. Psychiatr. Social Psychiatry = Soc. Psychiatry Social Psychiatry = Soc Psych Psych Epid Social Psychiatry = Soc. Psych. Psych. Epid. Social psychiatry. Sozialpsychiatrie. Psychiatrie sociale = Soc Psychiatry Social Psychology and Organizations = Ser Organ Manage Social Psychology and Organizations = Ser. Organ. Manage. Social Psychology of English As A Global Language: Attitudes, Awareness and Identitiy in The Japanese Context = Educ Linguist Social Psychology of English As A Global Language: Attitudes, Awareness and Identitiy in The Japanese Context = Educ. Linguist. Social Psychology of Gender = Adv Group Process Social Psychology of Gender = Adv. Group. Process. Social Psychology of Health = Clar Symp Social Psychology of Health = Clar. Symp. Social Psychology of The Classroom = Routl Res Educ Social Psychology of The Classroom = Routl. Res. Educ. Social Psychology of The Workplace = Adv Group Process Social Psychology of The Workplace = Adv. Group. Process. Social psychology quarterly = Soc Psychol Q Social Psychology Quarterly = Soc. Psychol. Q. Social Psychology Quarterly = Soc Psychol Quart Social Psychology Quarterly = Soc. Psychol. Quart. Social psychology = Soc Psychol Social Psychology = Soc Psychol Social Psychology = Soc. Psychol. Social Psychology = Soc Psychol-germany Social Psychology = Soc. Psychol-germany. Social Reconstruction: People, Politics, Perspectives = Stud Hist Educ Social Reconstruction: People, Politics, Perspectives = Stud. Hist. Educ. Social Reconstructions of The World Automobile Industry = Int Pol Ec Social Reconstructions of The World Automobile Industry = Int. Pol. Ec. Social Research=Soc. Res. Social Research = Soc Res Social Research = Soc. Res. Social research = Soc Res (New York) Social Research Today = Soc Res Today Social Research Today = Soc. Res. Today Social Responsibility: Failure Mode Effects and Analysis = Ind Innov Ser Social Responsibility: Failure Mode Effects and Analysis = Ind. Innov. Ser. Social responsibility, journalism, law, medicine = Soc Responsib Journal Law Med Social Science and Medicine. Medical Anthropology = Soc. Sci. Med. [Med. Anthropol.] Social Science and Medicine. Medical Economics = Soc. Sci. Med. [Med. Econ.] Social Science and Medicine. Medical Geography = Soc. Sci. Med. [Med. Geogr.] Social Science and Medicine. Medical Psychology and Medical Sociology = Soc. Sci. Med. [Med. Psychol. Med. Sociol.] Social Science and Medicine. Part A, Medical Sociology = Soc. Sci. Med. [A] Social Science and Medicine. Part B, Medical Anthropology = Soc. Sci. Med. [B] Social Science and Medicine. Part C, Medical Economics = Soc. Sci. Med. [C] Social Science and Medicine. Part D, Medical Geography = Soc. Sci. Med. [D] Social Science and Medicine. Part E, Medical Psychology = Soc. Sci. Med. [E] Social Science and Medicine. Part F, Medical and Social Ethics = Soc. Sci. Med. [F] Social Science and Medicine=Soc Sci Med;; Social Science and Medicine = Soc. Sci. Med. Social science computer review = Soc Sci Comput Rev Social Science Computer Review = Soc Sci Comput Rev Social Science Computer Review = Soc. Sci. Comput. Rev. Social science history = Soc Sci Hist Social Science History = Soc Sci Hist Social Science History = Soc. Sci. Hist. Social Science Information = Soc Sc Inform Social Science Information = Soc. Sc. Inform. Social Science Information Studies = Soc Sci Inform Stud Social Science Information Studies = Soc. Sci. Inform. Stud. Social science information studies : SSIS = Soc Sci Inf Stud Social Science Information Sur Les Sciences Sociales = Soc Sci Inform Social Science Information Sur Les Sciences Sociales = Soc. Sci. Inform. Social Science in The Cgiar = Cgiar St P Social Science in The Cgiar = Cgiar St. P. Social Science Japan Journal=Soc. Sci. Japan J. Social Science Japan Journal = Soc Sci Jpn J Social Science Japan Journal = Soc. Sci. Jpn. J. Social Science Journal = Soc Sci J Social Science Journal = Soc. Sci. J. Social science & medicine (1982) = Soc Sci Med Social science & medicine. Medical anthropology = Soc Sci Med [Med Anthropol] Social science & medicine. Medical economics = Soc Sci Med [Med Econ] Social science & medicine. Medical geography = Soc Sci Med [Med Geogr] Social science & medicine. Medical psychology & medical sociology = Soc Sci Med [Med Psychol Med Sociol] Social science & medicine. Part A, Medical sociology = Soc Sci Med [A] Social Science & Medicine Part A-medical Sociology = Soc Sci Med-med Soc Social Science & Medicine Part A-medical Sociology = Soc. Sci. Med-med. Soc. Social science & medicine. Part B, Medical anthropology = Soc Sci Med [B] Social Science & Medicine Part B-medical Anthropology = Soc Sci Med-med Anth Social Science & Medicine Part B-medical Anthropology = Soc. Sci. Med-med. Anth. Social science & medicine. Part C, Medical economics = Soc Sci Med [C] Social Science & Medicine Part C-medical Economics = Soc Sci Med-med Econ Social Science & Medicine Part C-medical Economics = Soc. Sci. Med-med. Econ. Social science & medicine. Part D, Medical geography = Soc Sci Med [D] Social Science & Medicine Part D-medical Geography = Soc Sci Med-med Geog Social Science & Medicine Part D-medical Geography = Soc. Sci. Med-med. Geog. Social science & medicine. Part E, Medical psychology = Soc Sci Med [E] Social Science & Medicine Part E-medical Psychology = Soc Sci Med-med Psyc Social Science & Medicine Part E-medical Psychology = Soc. Sci. Med-med. Psyc. Social science & medicine. Part F, Medical & social ethics = Soc Sci Med [F] Social Science & Medicine Part F-medical & Social Ethics = Soc Sci Med F-med S Social Science & Medicine Part F-medical & Social Ethics = Soc. Sci. Med. F-med. S. Social science & medicine = Soc Sci Med Social Science & Medicine = Soc Sci Med Social Science & Medicine = Soc. Sci. Med. Social Science News Letter = Soc Sci New Lett Social Science Perspectives On Medical Ethics = Cult Ill He Social Science Perspectives On Medical Ethics = Cult. Ill. He. Social science quarterly = Soc Sci Q Social Science Quarterly=Soc. Sci. Quart. Social Science Quarterly = Soc Sci Quart Social Science Quarterly = Soc. Sci. Quart. Social science research = Soc Sci Res Social Science Research = Soc Sci Res Social Science Research = Soc. Sci. Res. Social Sciences and Aids = Colloq Semi Social Sciences and Aids = Colloq. Semi. Social Sciences and Innovation = Oecd Proc Social Sciences and Innovation = Oecd. Proc. Social Sciences and The Military: An Interdisciplinary Overview = Cass Mil Stud Social Sciences and The Military: An Interdisciplinary Overview = Cass. Mil. Stud. Social Sciences At A Turning Point? = Oecd Proc Social Sciences At A Turning Point? = Oecd. Proc. Social sciences in China = Soc Sci China Social sciences information. Information sur les sciences sociales = Soc Sci Inf (Paris) Social science = Soc Sci Social Science = Soc Sci Social Science = Soc. Sci. Social sciences = Soc Sci Social Security and Changing Family Structures = Stud Res Ss Social Security and Changing Family Structures = Stud. Res. Ss. Social Security and Its Users: From Red Tape to Information Access = Stud Res Ss Social Security and Its Users: From Red Tape to Information Access = Stud. Res. Ss. Social Security and Retirement Around The World = Nber Conf R Social Security and Retirement Around The World = Nber. Conf. R. Social Security Bulletin. Annual Statistical Supplement. = Soc. Secur. Bull. Annu. Stat. Suppl. Social security bulletin. Annual statistical supplement / U.S. Dept. of Health, Education, and Welfare, Social Security Administration = Soc Secur Bull Annu Stat Suppl Social Security Bulletin=Soc. Sec. Bull. Social security bulletin = Soc Secur Bull Social Security Bulletin=Soc Secur Bull;; Social Security Bulletin = Soc Secur Bull Social Security Bulletin = Soc. Secur. Bull. Social Security, Demographics, and Risk = Popul Econ Social Security, Demographics, and Risk = Popul. Econ. Social Security in Transition = Stud Emp Soc Policy Social Security in Transition = Stud. Emp. Soc. Policy. Social Security Numbers and Id Theft = Priv Identity Prot Social Security Numbers and Id Theft = Priv. Identity. Prot. Social Security Pension Reform in Europe = Nber Conf R Social Security Pension Reform in Europe = Nber. Conf. R. Social Security Reform in Advanced Countries = Rout Cont Econ Pol I Social Security Reform in Advanced Countries = Rout. Cont. Econ. Pol. I. Social Security: Time for A Change = Cont Stu Ec Social Security: Time for A Change = Cont. Stu. Ec. Social Service Review = Soc Serv Rev Social Service Review = Soc. Serv. Rev. Social Sources of Disparities in Health and Health Care and Linkages to Policy, Population Concerns and Providers of Care = Res Sociol Health Ca Social Sources of Disparities in Health and Health Care and Linkages to Policy, Population Concerns and Providers of Care = Res. Sociol. Health Ca. Social Stability: The Challenge of Technology Development (swiis'01) = Ifac P Ser Social Stability: The Challenge of Technology Development (swiis'01) = Ifac. P. Ser. Social Stress in Domestic Animals = Curr T Vet Social Stress in Domestic Animals = Curr. T. Vet. Social Structure and Aging = Soc Struct Social Structure and Aging = Soc. Struct. Social Studies-irish Journal of Sociology = Soc Stud Irish J Soc Social Studies-irish Journal of Sociology = Soc. Stud. Irish. J. Soc. Social studies (Maynooth, Ireland) = Soc Stud (Maynooth) Social studies of science = Soc Stud Sci Social Studies of Science = Soc Stud Sci Social Studies of Science = Soc. Stud. Sci. Social Studies = Soc Stud Social Studies = Soc. Stud. Social Systems and Population Cycles in Voles = Adv Lif Sci Social Systems and Population Cycles in Voles = Adv. Lif. Sci. Social theory and practice = Soc Theory Pract Social Theory As Politics in Knowledge = Curr Perspect Soc Th Social Theory As Politics in Knowledge = Curr. Perspect. Soc. Th. Social Theory & Health = Soc Theor Health Social Theory & Health = Soc. Theor. Health Social Theory of The Nation-state: The Political Forms of Modernity Beyond Methodological Nationalism = Crit Realism Interv Social Theory of The Nation-state: The Political Forms of Modernity Beyond Methodological Nationalism = Crit. Realism. Interv. Social thought = Soc Thought Social welfare = Soc Welfare (India) Social work education and development newsletter = Soc Work Educ Dev Newsl Social work in education = Soc Work Educ Social work in health care = Soc Work Health Care Social Work in Health Care = Soc Work Health Care Social Work in Health Care = Soc. Work Health Care Social Work In Health Care=Soc Work Health Care;; Social work research & abstracts = Soc Work Res Abstr Social Work Research & Abstracts = Soc Work Res Abstr Social Work Research & Abstracts = Soc. Work Res. Abstr. Social Work Research and Abstracts = Soc. Work Res. Abstr. Social work research = Soc Work Res Social Work Research = Soc Work Res Social Work Research = Soc. Work Res. Social Work Skills Series = Soc Work Skills Ser Social Work Skills Series = Soc. Work Skills Ser. Social Work & Social Sciences Review = Soc Work Soc Sci Rev Social Work & Social Sciences Review = Soc. Work Soc. Sci. Rev. Social work = Soc Work Social Work=Soc Work;; Social Work = Soc Work Social Work = Soc. Work Social work with groups = Soc Work Groups Social Work With Groups = Soc Work Groups Social Work With Groups = Soc. Work Groups Sociedade Brasiliera de Matemática Applicada e Computacional = Mat. Apl. Comput. Sociedade E Cultura = Soc Cult Sociedade E Cultura = Soc. Cult. Sociedade Paranaense de Matemática = Bol. Soc. Parana. Mat. (2) Sociedad Matemática Mexicana = Bol. Soc. Mat. Mexicana (3) Societa e storia = Soc Stor Società Italiana di Ecologia, Atti = Soc. Ital. Ecol., Atti Societa Italiana Di Fisica : Conference Proceedings = Soc Ital Fi Societa Italiana Di Fisica : Conference Proceedings = Soc. Ital. Fi. Società Italiana di Fisica = Nuovo Cimento A (11) Società Italiana di Fisica = Nuovo Cimento B (11) Societal Impact On Aging Series = Societ Impact Aging Societal Impact On Aging Series = Societ. Impact Aging Società Nazionale di Scienze, Lettere e Arti in Napoli = Rend. Accad. Sci. Fis. Mat. Napoli (4) Societas-a Review of Social History = Societas Rev Soc His Societas-a Review of Social History = Societas. Rev. Soc. His. Societas Celtologica Nordica : Proceedings of Inaugural Meeting and First Symposium = A U U St An Societas Celtologica Nordica : Proceedings of Inaugural Meeting and First Symposium = A. U. U. St. An. Societas = Societas Societatis Scientiarum Lodziensis Acta Chimica = Soc Sci Lodz Acta Ch Societatis Scientiarum Lodziensis Acta Chimica = Soc. Sci. Lodz. Acta Ch. Societes d'Afrique & SIDA : newsletter of the Societes d'Afrique & SIDA Network = Soc Afr SIDA Societes = Societes Société Vaudoise des Sciences Naturelles = Bull. Soc. Vaud. Sci. Nat. Societies and Cities in The Age of Instant Access = Geoj Lib Societies and Cities in The Age of Instant Access = Geoj. Lib. Societies and Cities in The Age of Instant Access = Geojournal Lib Societies and Cities in The Age of Instant Access = Geojournal. Lib. Society and Aging = Soc Aging Society and Aging = Soc. Aging Society and culture = Soc Cult Society and Natural Resources = Soc. Nat. Resour. Society & Animals = Soc Anim Society & Animals = Soc. Anim. Society & animals : social scientific studies of the human experience of other animals = Soc Anim Society for Ancient Medicine review = Soc Anc Med Rev Society for Applied Bacteriology symposium series = Soc Appl Bacteriol Symp Ser Society for Applied Bacteriology Symposium Series = Soc. Appl. Bacteriol. Symp. Ser. Society For Applied Bacteriology Symposium Series=Soc Appl Bacteriol Symp Ser;; Society for Economic Anthropology Monographs = Soc Econ Anthropol M Society for Economic Anthropology Monographs = Soc. Econ. Anthropol. M. Society for Experimental Biology Seminar Series = Soc Exp Biol Semin S Society for Experimental Biology Seminar Series = Soc. Exp. Biol. Semin. S. Society for Experimental Biology Seminar Series = Soc Exp Biol Sem Ser Society for Experimental Biology Seminar Series = Soc. Exp. Biol. Sem. Ser. Society for Experimental Biology Seminar Series = Soc.  Exp. Biol. Semin. Ser. Society for Nursing History Gazette = Soc. Nurs. Hist. Gaz. Society for Post-medieval Archaeology Monograph = Soc Post Med Arch M Society for Post-medieval Archaeology Monograph = Soc. Post. Med. Arch. M. Society for Sedimentary Geology Special Publication = Sepm Spec P Society for Sedimentary Geology Special Publication = Sepm. Spec. P. Society for Sedimentary Geology Special Publication = Soc Sediment Geol Sp Society for Sedimentary Geology Special Publication = Soc. Sediment. Geol. Sp. Society for The Promotion of Byzantine Studies Publications = Soc Prom Byzant St Society for The Promotion of Byzantine Studies Publications = Soc. Prom. Byzant. St. Society for The Study of Addiction Monograph = Soc St Add Mg Society for The Study of Addiction Monograph = Soc. St. Add. Mg. Society for The Study of Human Biology Series = Soc St Hum Society for The Study of Human Biology Series = Soc. St. Hum. Society for The Study of Human Biology Symposium Series = Soc St Hum Society for The Study of Human Biology Symposium Series = Soc. St. Hum. Society & natural resources = Soc Nat Resour Society & Natural Resources = Soc. Nat. Resour. Society & Natural Resources = Soc Natur Resour Society & Natural Resources = Soc. Natur. Resour. Society of Biblical Literature 1991 Seminar Papers = Soc Bibl L Society of Biblical Literature 1991 Seminar Papers = Soc. Bibl. L. Society of Biblical Literature, 1992 Seminar Papers = Soc Bibl L Society of Biblical Literature, 1992 Seminar Papers = Soc. Bibl. L. Society of Biblical Literature 1996 Seminar Papers = Soc Bibl L Society of Biblical Literature 1996 Seminar Papers = Soc. Bibl. L. Society of Biblical Literature 2002 Seminar Papers = Soc Bibl L Society of Biblical Literature 2002 Seminar Papers = Soc. Bibl. L. Society of Biblical Literature Masoretic Studies = Sbl Masoret Stud Society of Biblical Literature Masoretic Studies = Sbl. Masoret. Stud. Society of Biblical Literature, Semeia Studies = Sbl Semeia Society of Biblical Literature, Semeia Studies = Sbl. Semeia Society of Biblical Literature Seminar Papers Series = Soc Bibl L Society of Biblical Literature Seminar Papers Series = Soc. Bibl. L. Society of Biblical Literature, Septuagint and Cognate Studies Series = Sbl Sept Co Society of Biblical Literature, Septuagint and Cognate Studies Series = Sbl. Sept. Co. Society of Biblical Literature, Symposium Series = Sbl Symp Ser Society of Biblical Literature, Symposium Series = Sbl. Symp. Ser. Society of Economic Geologists Special Publications Series = Soc Eco Geo Spc Pub Society of Economic Geologists Special Publications Series = Soc. Eco. Geo. Spc. Pub. Society of Economic Geologists Special Publications Series = Soc Econ Geol Spec P Society of Economic Geologists Special Publications Series = Soc. Econ. Geol. Spec. P. Society of Economic Paleontologists and Mineralogists Special Publications = Soc Econ Pa Society of Economic Paleontologists and Mineralogists Special Publications = Soc. Econ. Pa. Society of General Physiologists Series = Soc Gen Phy Society of General Physiologists Series = Soc. Gen. Phy. Society of General Physiologists series = Soc Gen Physiol Ser Society of General Physiologists Series=Soc Gen Physiol Ser;; Society of General Physiologists Series = Soc. Gen. Physiol. Ser. Society of Logistics Engineers Annual Symposium Proceedings = Soc Log E S Society of Logistics Engineers Annual Symposium Proceedings = Soc. Log. E. S. Society of Petroleum Engineers Journal = Soc Petrol Eng J Society of Petroleum Engineers Journal = Soc. Petrol. Eng. J. Society of Photo-optical Instrumentation Engineers Journal = Soc Photo-opt Instru Society of Photo-optical Instrumentation Engineers Journal = Soc. Photo-opt. Instru. Society of Plastics Engineers Technical Papers = Soc Plast E Society of Plastics Engineers Technical Papers = Soc. Plast. E. Society of Reproduction and Fertility = Soc Reprod Fertil Society of Reproduction and Fertility = Soc. Reprod. Fertil. Society of Reproduction and Fertility supplement = Soc Reprod Fertil Suppl Society = Society Socinianism and Arminianism: Antitrinitarians, Calvinists and Cultural Exchange in Seventeenth-century Europe = Brill S In Socinianism and Arminianism: Antitrinitarians, Calvinists and Cultural Exchange in Seventeenth-century Europe = Brill. S. In. Sociobiology and Bioeconomics = St Econ Ethic Philos Sociobiology and Bioeconomics = St. Econ. Ethic. Philos. Sociobiology and Bioeconomics = Stud Econ Ethics Phi Sociobiology and Bioeconomics = Stud. Econ. Ethics. Phi. Sociobiology = Sociobiology Sociocultural and Historical Contexts of African American English = Var Engl Ar World Gs Sociocultural and Historical Contexts of African American English = Var. Engl. Ar. World. Gs. Sociocultural, Political, and Historical Studies in Education = Sociocult Pol His St Sociocultural, Political, and Historical Studies in Education = Sociocult. Pol. His. St. Sociocultural Political and Historical Studies in Education = Sociocult Polit Hist Sociocultural Political and Historical Studies in Education = Sociocult. Polit. Hist. Socioecological Transitions and Global Change: Trajectories of Social Metabolism and Land Use = Adv Ecol Econ Socioecological Transitions and Global Change: Trajectories of Social Metabolism and Land Use = Adv. Ecol. Econ. Socioeconomic Aspects of Human Behavioral Ecology = Res Econ An Socioeconomic Aspects of Human Behavioral Ecology = Res. Econ. An. Socioeconomic Aspects of Human Behavioral Ecology = Res Econ Anthropol Socioeconomic Aspects of Human Behavioral Ecology = Res. Econ. Anthropol. Socio-economic Causes and Consequences of Desertification in Central Asia = Nato Sci Peace Secur Socio-economic Causes and Consequences of Desertification in Central Asia = Nato. Sci. Peace. Secur. Socioeconomic issues of health = Socioecon Issues Health Socioeconomic Issues of Health = Socioecon. Issues Health Socio-economic Mobility and Low-status Minorities: Slow Roads to Progress = Routl Adv Soc Econ Socio-economic Mobility and Low-status Minorities: Slow Roads to Progress = Routl. Adv. Soc. Econ. Socio-economic planning sciences = Socioecon Plann Sci Socio-Economic Planning Sciences = Socioecon. Plann. Sci. Socio-economic Planning Sciences = Socio Econ Plan Sci Socio-economic Planning Sciences = Socio. Econ. Plan. Sci. Socio-economic Review = Socio-econ Rev Socio-economic Review = Socio-econ. Rev. Socioeconomic Status and Health in Industrial Nations = Ann Ny Acad Sci Socioeconomic Status and Health in Industrial Nations = Ann. Ny. Acad. Sci. Socio-economics : Toward A New Synthesis = Stud Soc-ec Socio-economics : Toward A New Synthesis = Stud. Soc-ec. Socioendocrinology of Primate Reproduction = Mg Primatol Socioendocrinology of Primate Reproduction = Mg. Primatol. Socio-genetics = Adv Genet Socio-genetics = Adv. Genet. Socio-legal Studies Series = Soc Legal St Ser Socio-legal Studies Series = Soc. Legal. St. Ser. Sociolinguistica = Sociolinguistica Sociolinguistics in Deaf Communities Series = Sociolinguist Deaf Sociolinguistics in Deaf Communities Series = Sociolinguist. Deaf Sociolinguistics = Lang Linguist Ser Sociolinguistics = Lang. Linguist. Ser. Sociolinguistics, Language and Society = Languag Dev Sociolinguistics, Language and Society = Languag. Dev. Sociologia del diritto = Sociol Diritto Sociologia del lavoro = Sociol Lav Sociologia (Lisbon, Portugal) = Sociologia Sociologia Neerlandica = Sociol Neerl Sociologia Neerlandica = Sociol. Neerl. Sociologia Ruralis = Sociol. Rural Sociologia ruralis = Sociol Ruralis Sociologia Ruralis = Sociol Ruralis Sociologia Ruralis = Sociol. Ruralis Sociologia = Sociologia Sociological Analysis = Sociol Anal Sociological Analysis = Sociol. Anal. Sociological Analysis & Theory = Sociol Anal Theor Sociological Analysis & Theory = Sociol. Anal. Theor. Sociological bulletin = Sociol Bull Sociological Bulletin = Sociol Bull Sociological Bulletin = Sociol. Bull. Sociological focus = Sociol Focus Sociological Focus = Sociol Focus Sociological Focus = Sociol. Focus Sociological Forum = Sociol Forum Sociological Forum = Sociol. Forum Sociological inquiry = Sociol Inq Sociological Inquiry = Sociol Inq Sociological Inquiry = Sociol. Inq. Sociological Look At Biofuels: Understanding The Past/prospects for The Future = Energ Sci Eng Tech Sociological Look At Biofuels: Understanding The Past/prospects for The Future = Energ. Sci. Eng. Tech. Sociological Methodology 1993, Vol 23 = Sociol Methodol Sociological Methodology 1993, Vol 23 = Sociol. Methodol. Sociological Methodology 1994, Vol 24 = Sociol Methodol Sociological Methodology 1994, Vol 24 = Sociol. Methodol. Sociological Methodology 1995, Vol 25 = Sociol Methodol Sociological Methodology 1995, Vol 25 = Sociol. Methodol. Sociological Methodology 1996, Vol 26 = Sociol Methodol Sociological Methodology 1996, Vol 26 = Sociol. Methodol. Sociological Methodology 1997, Vol 27 = Sociol Methodol Sociological Methodology 1997, Vol 27 = Sociol. Methodol. Sociological Methodology 1999, Vol 29 = Sociol Methodol Sociological Methodology 1999, Vol 29 = Sociol. Methodol. Sociological Methodology 2000, Vol 30 = Sociol Methodol Sociological Methodology 2000, Vol 30 = Sociol. Methodol. Sociological Methodology 2001, Vol 31 = Sociol Methodol Sociological Methodology 2001, Vol 31 = Sociol. Methodol. Sociological Methodology 2002, Vol 32 = Sociol Methodol Sociological Methodology 2002, Vol 32 = Sociol. Methodol. Sociological Methodology, 2004, Vol 34 = Sociol Methodol Sociological Methodology, 2004, Vol 34 = Sociol. Methodol. Sociological Methodology 2005, Vol 35 = Sociol Methodol Sociological Methodology 2005, Vol 35 = Sociol. Methodol. Sociological Methodology 2006, Vol 36 = Sociol Methodol Sociological Methodology 2006, Vol 36 = Sociol. Methodol. Sociological Methodology 2007, Vol 37 = Sociol Methodol Sociological Methodology 2007, Vol 37 = Sociol. Methodol. Sociological Methodology 2009, Vol 39 = Sociol Methodol Sociological Methodology 2009, Vol 39 = Sociol. Methodol. Sociological methodology = Sociol Methodol Sociological Methodology = Sociol Methodol Sociological Methodology = Sociol. Methodol. Sociological Methodology, Vol. 28 1998 = Sociol Methodol Sociological Methodology, Vol. 28 1998 = Sociol. Methodol. Sociological Methodology, Vol 33 = Sociol Methodol Sociological Methodology, Vol 33 = Sociol. Methodol. Sociological Methodology, Vol 34 = Sociol Methodol Sociological Methodology, Vol 34 = Sociol. Methodol. Sociological Methodology, Vol 38 = Sociol Methodol Sociological Methodology, Vol 38 = Sociol. Methodol. Sociological Methodology, Vol 40 = Sociol Methodol Sociological Methodology, Vol 40 = Sociol. Methodol. Sociological Methods & Research = Sociol Method Res Sociological Methods & Research = Sociol. Method. Res. Sociological methods & research = Sociol Methods Res Sociological Methods & Research = Sociol. Methods. Res. Sociological Perspectives = Sociol Perspect Sociological Perspectives = Sociol. Perspect. Sociological perspectives : SP : official publication of the Pacific Sociological Association = Sociol Perspect Sociological Practice = Sociol Pract Sociological Practice = Sociol. Pract. Sociological Quarterly = Sociol. Q. Sociological Quarterly = Sociol Quart Sociological Quarterly = Sociol. Quart. Sociological Realism = Ontol Explor Sociological Realism = Ontol. Explor. Sociological Research Online = Sociol Res Online Sociological Research Online = Sociol. Res. Online Sociological research = Sociol Res Sociological review mongraph = Sociol Rev [Monogr] Sociological Review Monograph = Sociol Re Monogr Sociological Review Monograph = Sociol. Re. Monogr. Sociological Review Monograph = Sociol Rev Monogr Sociological Review Monograph = Sociol. Rev. [Monogr.] Sociological Review Monograph = Sociol. Rev. Monogr. Sociological Review Monographs = Sociol Rev Monogr Sociological Review Monographs = Sociol. Rev. Monogr. Sociological Review Monographs = Soc Rev Mon Sociological Review Monographs = Soc. Rev. Mon. Sociological Review = Sociol Rev Sociological Review = Sociol. Rev. Sociological Routes and Political Roots = Sociol Rev Monogr Sociological Routes and Political Roots = Sociol. Rev. Monogr. Sociological Spectrum = Sociol. Spectr. Sociological Spectrum = Sociol Spectrum Sociological Spectrum = Sociol. Spectrum Sociological spectrum : the official journal of the Mid-South Sociological Association = Sociol Spectr Sociological Studies of Children and Youth = Sociol Stud Child Yo Sociological Studies of Children and Youth = Sociol. Stud. Child. Yo. Sociological Studies of Children and Youth, Vol 10 = Sociol Stud Child Yo Sociological Studies of Children and Youth, Vol 10 = Sociol. Stud. Child. Yo. Sociological Studies of Children and Youth, Vol 11 = Sociol Stud Child Yo Sociological Studies of Children and Youth, Vol 11 = Sociol. Stud. Child. Yo. Sociological Studies of Children and Youth, Vol 9 = Sociol Stud Child Yo Sociological Studies of Children and Youth, Vol 9 = Sociol. Stud. Child. Yo. Sociological Symposium = Sociol Sym Sociological Symposium = Sociol. Sym. Sociological symposium = Sociol Symp Sociological Theory and Methods = Sociol Theor Method Sociological Theory and Methods = Sociol. Theor. Method. Sociological Theory And Methods = Sociol. Theor. Methods Sociological Theory = Sociol Theor Sociological Theory = Sociol. Theor. Sociologicky Casopis-czech Sociological Review = Sociol Cas Sociologicky Casopis-czech Sociological Review = Sociol. Cas. Sociologicky Casopis-Czech Sociological Review = Sociol. Cas. Sociologicky casopis = Sociol Cas Sociologicky Casopis = Sociol Cas Sociologicky Casopis = Sociol. Cas. Sociologie Du Lycee Professionnel: L'experience Des Eleves Et Des Enseignants Dans Une Institution En Mutation = Socio-logiques Sociologie Du Lycee Professionnel: L'experience Des Eleves Et Des Enseignants Dans Une Institution En Mutation = Socio-logiques. Sociologie du travail = Sociol Trav Sociologie Du Travail = Sociol Trav Sociologie Du Travail = Sociol. Trav. Sociologie et societes = Sociol Soc Sociologie Et Societes = Sociol Soc Sociologie Et Societes = Sociol. Soc. Sociologie romaneasca = Sociol Rom Sociologija I Prostor = Sociol Prost Sociologija I Prostor = Sociol. Prost. Sociologija sela = Sociol Sela Socio-logiques = Socio-logiques Sociologische gids = Sociol Gids Sociologisk Forskning = Sociol. Forsk. Sociologisk Forskning = Sociol Forsknin Sociologisk Forskning = Sociol. Forsknin. Sociologus = Sociologus Sociologus; Zeitschrift fur empirische Soziologie, sozialpsychologische und ethnologische Forschung. A Journal for empirical sociology, social psychology, and ethnic research = Sociologus Sociology and Complexity Science: A New Field of Inquiry = Underst Complex Syst Sociology and Complexity Science: A New Field of Inquiry = Underst. Complex. Syst. Sociology and Economics : Controversy and Integration = Soc Econ Sociology and Economics : Controversy and Integration = Soc. Econ. Sociology and social research = Sociol Soc Res Sociology and Social Research = Sociol Soc Res Sociology and Social Research = Sociol. Soc. Res. Sociology and The Public Agenda = Asa Pres S Sociology and The Public Agenda = Asa. Pres. S. Sociology in America = Asa Pres S Sociology in America = Asa. Pres. S. Sociology of Crime Law and Deviance = Sociol Crime Law Dev Sociology of Crime Law and Deviance = Sociol. Crime Law Dev. Sociology of education = Sociol Educ Sociology of Education = Sociol Educ Sociology of Education = Sociol. Educ. Sociology Of Education = Sociol. Educ. Sociology of Elites = Routl Stud Soc Polit Sociology of Elites = Routl. Stud. Soc. Polit. Sociology of Entrepreneurship = Res Sociol Organ-res Sociology of Entrepreneurship = Res. Sociol. Organ-res. Sociology of Health and Illness = Sociol. Health Illn. Sociology of Health & Illness = Sociol Health Ill Sociology of Health & Illness = Sociol. Health Ill. Sociology Of Health & Illness = Sociol. Health Ill. Sociology of health & illness = Sociol Health Illn Sociology of religion = Sociol Relig Sociology of Religion = Sociol Relig Sociology of Religion = Sociol. Relig. Sociology Of Religion = Sociol. Relig. Sociology of Scientific Work: The Fundamental Relationship Between Science and Society = Prime Ser Res Innov Sociology of Scientific Work: The Fundamental Relationship Between Science and Society = Prime. Ser. Res. Innov. Sociology of sport journal = Sociol Sport J Sociology of Sport Journal = Sociol Sport J Sociology of Sport Journal = Sociol. Sport J. Sociology Of Sport Journal = Sociol. Sport J. Sociology of The Sciences : A Yearbook = Sociol Sci Sociology of The Sciences : A Yearbook = Sociol. Sci. Sociology of The Sciences Yearbook = Sociol Sci Yearb Sociology of The Sciences Yearbook = Sociol. Sci. Yearb. Sociology of Tourism: European Origins and Developments = Tour Soc Sci Ser Sociology of Tourism: European Origins and Developments = Tour. Soc. Sci. Ser. Sociology of work and occupations = Sociol Work Occup Sociology of Work and Occupations = Sociol Work Occup Sociology of Work and Occupations = Sociol. Work Occup. Sociology, Organic Farming, Climate Change and Soil Science = Sustain Agr Rev Sociology, Organic Farming, Climate Change and Soil Science = Sustain. Agr. Rev. Sociology, Religion and Grace: A Quest for The Renaissance = Routl Adv Sociol Sociology, Religion and Grace: A Quest for The Renaissance = Routl. Adv. Sociol. Sociology = Sociology Sociology-The Journal Of The British Sociological Association = Sociol.-J. Brit. Sociol. Assoc. Sociology-the Journal of The British Sociological Association = Sociology Sociology-the Journal of The British Sociological Association = Sociology. Sociology Through The Projector = Int Libr Sociol Sociology Through The Projector = Int. Libr. Sociol. Sociomedia = Tech Commun Sociomedia = Tech. Commun. Sociometry = Sociometry Socionics = Lect Notes Artif Int Socionics = Lect. Notes. Artif. Int. Socio-scientific Issues in The Classroom: Teaching, Learning and Research = Cont Trends Iss Sci Socio-scientific Issues in The Classroom: Teaching, Learning and Research = Cont. Trends. Iss. Sci. Sockeye Salmon Evolution, Ecology, and Management = Am Fish S S Sockeye Salmon Evolution, Ecology, and Management = Am. Fish. S. S. Sodium-calcium Exchange and The Plasma Membrane Ca2+-atpase in Cell Function: Fifth International Conference = Ann Ny Acad Sci Sodium-calcium Exchange and The Plasma Membrane Ca2+-atpase in Cell Function: Fifth International Conference = Ann. Ny. Acad. Sci. Sodium-calcium Exchange = Ann Ny Acad Sci Sodium-calcium Exchange = Ann. Ny. Acad. Sci. Sodium Channels and Neuronal Hyperexcitability = Novart Fdn Symp Sodium Channels and Neuronal Hyperexcitability = Novart. Fdn. Symp. Sodium Pump : Structure, Mechanism, and Regulation = Soc Gen Phy Sodium Pump : Structure, Mechanism, and Regulation = Soc. Gen. Phy. Sodium Valproate: Role in The Treatment of Partial Epilepsy = Boll Leg It Sodium Valproate: Role in The Treatment of Partial Epilepsy = Boll. Leg. It. Sodom Als Symptom: Gleichgeschlechtliche Sexualitat Im Christlichen Imaginaren = Relig Vers Vorarbeit Sodom Als Symptom: Gleichgeschlechtliche Sexualitat Im Christlichen Imaginaren = Relig. Vers. Vorarbeit. Sodom's Sin: Genesis 18-19 and Its Interpretation = Themes Bibl Narr Sodom's Sin: Genesis 18-19 and Its Interpretation = Themes. Bibl. Narr. Soemmerring-Forschungen = Soemmering Forsch Sofsem 2000: Theory and Practice of Informatics = Lect Notes Comput Sc Sofsem 2000: Theory and Practice of Informatics = Lect. Notes. Comput. Sc. Sofsem 2002: Theory and Practice of Informatics = Lect Notes Comput Sc Sofsem 2002: Theory and Practice of Informatics = Lect. Notes. Comput. Sc. Sofsem 2004: Theory and Practice of Computer Science, Proceedings = Lect Notes Comput Sc Sofsem 2004: Theory and Practice of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Sofsem 2005:theory and Practice of Computer Science = Lect Notes Comput Sc Sofsem 2005:theory and Practice of Computer Science = Lect. Notes. Comput. Sc. Sofsem 2006: Theory and Practice of Computer Science, Proceedings = Lect Notes Comput Sc Sofsem 2006: Theory and Practice of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Sofsem 2007: Theory and Practice of Computer Science, Proceedings = Lect Notes Comput Sc Sofsem 2007: Theory and Practice of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Sofsem 2008: Theory and Practice of Computer Science = Lect Notes Comput Sc Sofsem 2008: Theory and Practice of Computer Science = Lect. Notes. Comput. Sc. Sofsem 2009-theory and Practice of Computer Science, Proceedings = Lect Notes Comput Sc Sofsem 2009-theory and Practice of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Sofsem 2010: Theory and Practice of Computer Science, Proceedings = Lect Notes Comput Sc Sofsem 2010: Theory and Practice of Computer Science, Proceedings = Lect. Notes. Comput. Sc. Sofsem'98: Theory and Practice of Informatics = Lect Notes Comput Sc Sofsem'98: Theory and Practice of Informatics = Lect. Notes. Comput. Sc. Sofsem'99: Theory and Practice of Informatics = Lect Notes Comput Sc Sofsem'99: Theory and Practice of Informatics = Lect. Notes. Comput. Sc. Soft and Fragile Matter: Nonequilibrium Dynamics, Metastability and Flow = Sussp Proc Soft and Fragile Matter: Nonequilibrium Dynamics, Metastability and Flow = Sussp. Proc. Soft Chemistry Leading to Novel Materials = Defect Diffus Forum Soft Chemistry Leading to Novel Materials = Defect. Diffus. Forum. Soft Chemistry Routes to New Materials - Chimie Douce = Mater Sci Forum Soft Chemistry Routes to New Materials - Chimie Douce = Mater. Sci. Forum. Soft Computing Applications = Adv Soft Comp Soft Computing Applications = Adv. Soft Comp. Soft Computing Applications in Business = Stud Fuzz Soft Comp Soft Computing Applications in Business = Stud. Fuzz. Soft Comp. Soft Computing Applications in Industry = Stud Fuzz Soft Comp Soft Computing Applications in Industry = Stud. Fuzz. Soft Comp. Soft Computing As Transdisciplinary Science and Technology = Adv Soft Comp Soft Computing As Transdisciplinary Science and Technology = Adv. Soft Comp. Soft Computing Based Modeling in Intelligent Systems = Stud Comp Intell Soft Computing Based Modeling in Intelligent Systems = Stud. Comp. Intell. Soft Computing Based Modeling in Intelligent Systems = Stud Comput Intell Soft Computing Based Modeling in Intelligent Systems = Stud. Comput. Intell. Soft Computing for Complex Multiple Criteria Decision Making = Int Ser Oper Res Man Soft Computing for Complex Multiple Criteria Decision Making = Int. Ser. Oper. Res. Man. Soft Computing for Data Mining Applications = Stud Comput Intell Soft Computing for Data Mining Applications = Stud. Comput. Intell. Soft Computing for Hybrid Intelligent Systems = Stud Comput Intell Soft Computing for Hybrid Intelligent Systems = Stud. Comput. Intell. Soft Computing for Intelligent Control and Mobile Robotics = Stud Comput Intell Soft Computing for Intelligent Control and Mobile Robotics = Stud. Comput. Intell. Soft Computing for Recognition Based On Biometrics = Stud Comput Intell Soft Computing for Recognition Based On Biometrics = Stud. Comput. Intell. Soft Computing in Green and Renewable Energy Systems = Stud Fuzz Soft Comp Soft Computing in Green and Renewable Energy Systems = Stud. Fuzz. Soft Comp. Soft Computing in Industrial Applications = Adv Intel Soft Compu Soft Computing in Industrial Applications = Adv. Intel. Soft Compu. Soft Computing in Industrial Applications - Algorithms, Integration, and Success Stories = Adv Intel Soft Compu Soft Computing in Industrial Applications - Algorithms, Integration, and Success Stories = Adv. Intel. Soft Compu. Soft Computing in Industrial Applications: Recent and Emerging Methods and Techniques = Adv Soft Comp Soft Computing in Industrial Applications: Recent and Emerging Methods and Techniques = Adv. Soft Comp. Soft Computing in Textile Engineering = Woodhead Publ Text Soft Computing in Textile Engineering = Woodhead. Publ. Text. Soft Computing in Xml Data Management: Intelligent Systems From Decision Making to Data Mining, Web Intelligence and Computer Vision = Stud Fuzz Soft Comp Soft Computing in Xml Data Management: Intelligent Systems From Decision Making to Data Mining, Web Intelligence and Computer Vision = Stud. Fuzz. Soft Comp. Soft Computing: Methodologies and Applications = Adv Soft Comp Soft Computing: Methodologies and Applications = Adv. Soft Comp. Soft Computing Models in Industrial and Environmental Applications, 6th International Conference Soco 2011 = Adv Intel Soft Compu Soft Computing Models in Industrial and Environmental Applications, 6th International Conference Soco 2011 = Adv. Intel. Soft Compu. Soft Computing Models in Industrial and Environmental Applications = Adv Intel Soft Compu Soft Computing Models in Industrial and Environmental Applications = Adv. Intel. Soft Compu. Soft Computing = Soft Comput Soft Computing = Soft Comput. Soft Computing Techniques and Applications = Adv Soft Comp Soft Computing Techniques and Applications = Adv. Soft Comp. Soft Computing: Techniques and Its Applications in Electrical Engineering = Stud Comput Intell Soft Computing: Techniques and Its Applications in Electrical Engineering = Stud. Comput. Intell. Soft Computing With Industrial Applications, Vol 17 = Tsi Press S Soft Computing With Industrial Applications, Vol 17 = Tsi. Press. S. Soft Condensed Matter Physics in Molecular and Cell Biology = Scot Grad Ser Soft Condensed Matter Physics in Molecular and Cell Biology = Scot. Grad. Ser. Soft Drink and Fruit Juice Problems Solved = Woodhead Food Ser Soft Drink and Fruit Juice Problems Solved = Woodhead. Food. Ser. Soft Errors in Modern Electronic Systems = Front Electron Test Soft Errors in Modern Electronic Systems = Front. Electron. Test. Soft Materials = Soft Mater Soft Materials = Soft Mater. Soft Matter = Soft Matter Soft Matter Under Exogenic Impacts = Nato Sci Ser Ii-math Soft Matter Under Exogenic Impacts = Nato. Sci. Ser. Ii-math. Soft Matter Under Exogenic Impacts = Nato Sci Ser Ii Math Soft Matter Under Exogenic Impacts = Nato. Sci. Ser. Ii. Math. Soft Methodology and Random Information Systems = Adv Soft Comp Soft Methodology and Random Information Systems = Adv. Soft Comp. Soft Methods for Handling Variability and Imprecision = Adv Soft Comp Soft Methods for Handling Variability and Imprecision = Adv. Soft Comp. Soft Methods for Integrated Uncertainty Modelling = Adv Soft Comp Soft Methods for Integrated Uncertainty Modelling = Adv. Soft Comp. Soft Methods in Probability, Statistics and Data Analysis = Adv Soft Comp Soft Methods in Probability, Statistics and Data Analysis = Adv. Soft Comp. Soft Order in Physical Systems = Nato Adv Sci Inst Se Soft Order in Physical Systems = Nato. Adv. Sci. Inst. Se. Soft Sensors for Monitoring and Control of Industrial Processes = Adv Ind Control Soft Sensors for Monitoring and Control of Industrial Processes = Adv. Ind. Control Soft Soil Engineering = Proc Monogr Eng Wate Soft Soil Engineering = Proc. Monogr. Eng. Wate. Soft-ware 2002: Computing in An Imperfect World = Lect Notes Comput Sc Soft-ware 2002: Computing in An Imperfect World = Lect. Notes. Comput. Sc. Software and Compilers for Embedded Systems = Lect Notes Comput Sc Software and Compilers for Embedded Systems = Lect. Notes. Comput. Sc. Software and Compilers for Embedded Systems, Proceedings = Lect Notes Comput Sc Software and Compilers for Embedded Systems, Proceedings = Lect. Notes. Comput. Sc. Software and Cyberinfrastructure for Astronomy = Proc Spie Software and Cyberinfrastructure for Astronomy = Proc. Spie. Software and Cyberinfrastructure for Astronomy = P Soc Photo-opt Ins Software and Cyberinfrastructure for Astronomy = P. Soc. Photo-opt. Ins. Software and Data Technologies = Comm Com Inf Sc Software and Data Technologies = Comm. Com. Inf. Sc. Software and Organisations = Routledge Stud Techn Software and Organisations = Routledge. Stud. Techn. Software and Systems Modeling = Softw Syst Model Software and Systems Modeling = Softw. Syst. Model. Software Architecture = Adv Top Sci Tech Chi Software Architecture = Adv. Top. Sci. Tech. Chi. Software Architecture = Int Fed Info Proc Software Architecture = Int. Fed. Info. Proc. Software Architecture = Lect Notes Comput Sc Software Architecture = Lect. Notes. Comput. Sc. Software Architecture, Proceedings = Lect Notes Comput Sc Software Architecture, Proceedings = Lect. Notes. Comput. Sc. Software Architectures, Components, and Applications = Lect Notes Comput Sc Software Architectures, Components, and Applications = Lect. Notes. Comput. Sc. Software Business = Lect Notes Bus Inf Software Business = Lect. Notes. Bus. Inf. Software Business = Lect Notes Bus Inf P Software Business = Lect. Notes. Bus. Inf. P. Software Composition = Lect Notes Comput Sc Software Composition = Lect. Notes. Comput. Sc. Software Composition, Proceedings = Lect Notes Comput Sc Software Composition, Proceedings = Lect. Notes. Comput. Sc. Software-concepts and Tools = Software-conc Tool Software-concepts and Tools = Software-conc. Tool. Software Configuration Management = Lect Notes Comput Sc Software Configuration Management = Lect. Notes. Comput. Sc. Software-defined Gps and Galileo Receiver: A Single-frequency Approach = Appl Numer Harmon An Software-defined Gps and Galileo Receiver: A Single-frequency Approach = Appl. Numer. Harmon. An. Software Defined Radios: From Smart(er) to Cognitive = Signals Commun Techn Software Defined Radios: From Smart(er) to Cognitive = Signals. Commun. Techn. Software Development Environments and Case Technology = Lect Notes Comput Sc Software Development Environments and Case Technology = Lect. Notes. Comput. Sc. Software Development Trends = Vtt Symp Software Development Trends = Vtt. Symp. Software Engineering and Middleware = Lect Notes Comput Sc Software Engineering and Middleware = Lect. Notes. Comput. Sc. Software Engineering Approaches for Offshore and Outsourced Development = Lect Notes Bus Inf Software Engineering Approaches for Offshore and Outsourced Development = Lect. Notes. Bus. Inf. Software Engineering Approaches for Offshore and Outsourced Development = Lect Notes Bus Inf P Software Engineering Approaches for Offshore and Outsourced Development = Lect. Notes. Bus. Inf. P. Software Engineering Approaches for Offshore and Outsourced Development = Lect Notes Comput Sc Software Engineering Approaches for Offshore and Outsourced Development = Lect. Notes. Comput. Sc. Software Engineering, Artificial Intelligence, Networking and Parallel-distributed Computing 2010 = Stud Comp Intell Software Engineering, Artificial Intelligence, Networking and Parallel-distributed Computing 2010 = Stud. Comp. Intell. Software Engineering, Artificial Intelligence, Networking and Parallel/distributed Computing 2011 = Stud Comput Intell Software Engineering, Artificial Intelligence, Networking and Parallel/distributed Computing 2011 = Stud. Comput. Intell. Software Engineering, Artificial Intelligence, Networking and Parallel/distributed Computing = Stud Comp Intell Software Engineering, Artificial Intelligence, Networking and Parallel/distributed Computing = Stud. Comp. Intell. Software Engineering Education = Ifip Trans A Software Engineering Education = Ifip. Trans. A. Software Engineering Education in The Modern Age = Lect Notes Comput Sc Software Engineering Education in The Modern Age = Lect. Notes. Comput. Sc. Software Engineering Education = Lect Notes Comput Sc Software Engineering Education = Lect. Notes. Comput. Sc. Software Engineering Education /// = Lect Notes Comput Sc Software Engineering Education /// = Lect. Notes. Comput. Sc. Software Engineering Education : Sei Conference 1991 = Lect Notes Comput Sc Software Engineering Education : Sei Conference 1991 = Lect. Notes. Comput. Sc. Software Engineering - Esec/fse '97 = Lect Notes Comput Sc Software Engineering - Esec/fse '97 = Lect. Notes. Comput. Sc. Software Engineering - Esec/fse '99, Proceedings = Lect Notes Comput Sc Software Engineering - Esec/fse '99, Proceedings = Lect. Notes. Comput. Sc. Software Engineering: Evolution and Emerging Technologies = Front Artif Intel Ap Software Engineering: Evolution and Emerging Technologies = Front. Artif. Intel. Ap. Software Engineering for Experimental Robotics = Springer Trac Adv Ro Software Engineering for Experimental Robotics = Springer. Trac. Adv. Ro. Software Engineering for Experimental Robotics = Spr Tra Adv Robot Software Engineering for Experimental Robotics = Spr. Tra. Adv. Robot. Software Engineering for Large-scale Multi-agent Systems = Lect Notes Comput Sc Software Engineering for Large-scale Multi-agent Systems = Lect. Notes. Comput. Sc. Software Engineering for Multi-agent Systems Iii: Research Issues and Practical Applications = Lect Notes Comput Sc Software Engineering for Multi-agent Systems Iii: Research Issues and Practical Applications = Lect. Notes. Comput. Sc. Software Engineering for Multi-agent Systems Ii = Lect Notes Comput Sc Software Engineering for Multi-agent Systems Ii = Lect. Notes. Comput. Sc. Software Engineering for Multi-agent Systems Iv: Research Issues and Practical Applications = Lect Notes Comput Sc Software Engineering for Multi-agent Systems Iv: Research Issues and Practical Applications = Lect. Notes. Comput. Sc. Software Engineering for Multi-agent Systems V: Research Issues and Practical Applications = Lect Notes Comput Sc Software Engineering for Multi-agent Systems V: Research Issues and Practical Applications = Lect. Notes. Comput. Sc. Software Engineering for Self-adaptive Systems = Lect Notes Comput Sc Software Engineering for Self-adaptive Systems = Lect. Notes. Comput. Sc. Software Engineering in Curricula At Seuh Colleges 1994 = Ber Ger Acm Software Engineering in Curricula At Seuh Colleges 1994 = Ber. Ger. Acm. Software Engineering in Higher Education Seuh 1993 = Ber Ger Acm Software Engineering in Higher Education Seuh 1993 = Ber. Ger. Acm. Software Engineering Journal = Software Eng J Software Engineering Journal = Software Eng. J. Software Engineering Research and Applications = Lect Notes Comput Sc Software Engineering Research and Applications = Lect. Notes. Comput. Sc. Software Engineering Research, Management and Applications 2009 = Stud Comp Intell Software Engineering Research, Management and Applications 2009 = Stud. Comp. Intell. Software Engineering Research, Management and Applications 2010 = Stud Comp Intell Software Engineering Research, Management and Applications 2010 = Stud. Comp. Intell. Software Engineering Research, Management and Applications 2010 = Stud Comput Intell Software Engineering Research, Management and Applications 2010 = Stud. Comput. Intell. Software Engineering Research, Management and Applications = Lect Notes Comput Sc Software Engineering Research, Management and Applications = Lect. Notes. Comput. Sc. Software Engineering Research, Management and Applications = Stud Comp Intell Software Engineering Research, Management and Applications = Stud. Comp. Intell. Software Engineering Research, Management and Applications = Stud Comput Intell Software Engineering Research, Management and Applications = Stud. Comput. Intell. Software Engineering Techniques: Design for Quality = Int Fed Info Proc Software Engineering Techniques: Design for Quality = Int. Fed. Info. Proc. Software, Environments, and Tools = Software Environ. Tools Software, Environments, and Tools = Softw Environm Tool Software, Environments, and Tools = Softw. Environm. Tool. Software Environments and Tools = Softw Environ Tools Software Environments and Tools = Softw. Environ. Tools Software Ergonomics 1993 = Ber Ger Acm Software Ergonomics 1993 = Ber. Ger. Acm. Software Ergonomics 1995 = Ber Ger Acm Software Ergonomics 1995 = Ber. Ger. Acm. Software for Algebraic Geometry = Ima V Math Software for Algebraic Geometry = Ima. V. Math. Software for Algebraic Geometry = Ima Vol Math Appl Software for Algebraic Geometry = Ima. Vol. Math. Appl. Software for Data Analysis: Programming With R = Stat Comput Ser Software for Data Analysis: Programming With R = Stat. Comput. Ser. Software for Electrical Engineering Analysis and Design Iv = Software Studies Software for Electrical Engineering Analysis and Design Iv = Software Studies. Software for Electrical Engineering Analysis and Design V = Software Studies Software for Electrical Engineering Analysis and Design V = Software Studies. Software in healthcare = Softw Healthc Software in Healthcare = Softw. Healthc. Software Language Engineering = Lect Notes Comput Sc Software Language Engineering = Lect. Notes. Comput. Sc. Software law journal = Softw Law J Software & Microsystems = Software Eng J Software & Microsystems = Software Eng. J. Software & Microsystems = Softw Microsyst Software & Microsystems = Softw. Microsyst. Software-practice & Experience = Software Pract Exper Software-practice & Experience = Software. Pract. Exper. Software Process and Product Measurement = Lect Notes Comput Sc Software Process and Product Measurement = Lect. Notes. Comput. Sc. Software Process and Product Measurement, Proceedings = Lect Notes Comput Sc Software Process and Product Measurement, Proceedings = Lect. Notes. Comput. Sc. Software Process Change = Lect Notes Comput Sc Software Process Change = Lect. Notes. Comput. Sc. Software Process Dynamics and Agility, Proceedings = Lect Notes Comput Sc Software Process Dynamics and Agility, Proceedings = Lect. Notes. Comput. Sc. Software Process Improvement, Proceedings = Comm Com Inf Sc Software Process Improvement, Proceedings = Comm. Com. Inf. Sc. Software Process Improvement, Proceedings = Lect Notes Comput Sc Software Process Improvement, Proceedings = Lect. Notes. Comput. Sc. Software Process: Principles, Methodology, and Technology = Lect Notes Comput Sc Software Process: Principles, Methodology, and Technology = Lect. Notes. Comput. Sc. Software Process Technology = Lect Notes Comput Sc Software Process Technology = Lect. Notes. Comput. Sc. Software Process Technology, Proceedings = Lect Notes Comput Sc Software Process Technology, Proceedings = Lect. Notes. Comput. Sc. Software Product-family Engineering = Lect Notes Comput Sc Software Product-family Engineering = Lect. Notes. Comput. Sc. Software Product Lines: Going Beyond = Lect Notes Comput Sc Software Product Lines: Going Beyond = Lect. Notes. Comput. Sc. Software Product Lines = Kluwer Int Ser Eng C Software Product Lines = Kluwer. Int. Ser. Eng. C. Software Product Lines, Proceedings = Lect Notes Comput Sc Software Product Lines, Proceedings = Lect. Notes. Comput. Sc. Software Product Lines = Springer Int Ser Eng Software Product Lines = Springer. Int. Ser. Eng. Software Quality - Ecsq 2002 = Lect Notes Comput Sc Software Quality - Ecsq 2002 = Lect. Notes. Comput. Sc. Software Quality Journal = Software Qual J Software Quality Journal = Software Qual. J. Software Reliability Assessment With Or Applications = Springer Ser Reliab Software Reliability Assessment With Or Applications = Springer. Ser. Reliab. Software Reuse: Advances in Software Reusability = Lect Notes Comput Sc Software Reuse: Advances in Software Reusability = Lect. Notes. Comput. Sc. Software Reuse: Methods, Techniques, and Tools, Proceedings = Lect Notes Comput Sc Software Reuse: Methods, Techniques, and Tools, Proceedings = Lect. Notes. Comput. Sc. Software Reuse: Methods, Techniques, and Tools: Proceedings = Lect Notes Comput Sc Software Reuse: Methods, Techniques, and Tools: Proceedings = Lect. Notes. Comput. Sc. Software Review = Software Rev Software Review = Software Rev. Software Security - Theories and Systems = Lect Notes Comput Sc Software Security - Theories and Systems = Lect. Notes. Comput. Sc. Software Services for E-business and E-society = Ifip Adv Inf Comm Te Software Services for E-business and E-society = Ifip. Adv. Inf. Comm. Te. Software Studies = Software Studies Software Technologies for Embedded and Ubiquitous Systems = Lect Notes Comput Sc Software Technologies for Embedded and Ubiquitous Systems = Lect. Notes. Comput. Sc. Software Technologies for Embedded and Ubiquitous Systems, Proceedings = Lect Notes Comput Sc Software Technologies for Embedded and Ubiquitous Systems, Proceedings = Lect. Notes. Comput. Sc. Software Testing Verification & Reliability = Softw Test Verif Beh Software Testing Verification & Reliability = Softw. Test. Verif. Beh. Software Testing Verification & Reliability = Softw Test Verif Rel Software Testing Verification & Reliability = Softw. Test. Verif. Rel. Software Tools and Algorithms for Biological Systems = Adv Exp Med Biol Software Tools and Algorithms for Biological Systems = Adv. Exp. Med. Biol. Software Visualization = Lect Notes Comput Sc Software Visualization = Lect. Notes. Comput. Sc. Soft X-ray and Euv Imaging Systems Ii = Proc Spie Soft X-ray and Euv Imaging Systems Ii = Proc. Spie. Soft X-ray and Euv Imaging Systems Ii = P Soc Photo-opt Ins Soft X-ray and Euv Imaging Systems Ii = P. Soc. Photo-opt. Ins. Soft X-ray and Euv Imaging Systems = Proc Spie Soft X-ray and Euv Imaging Systems = Proc. Spie. Soft X-ray and Euv Imaging Systems = P Soc Photo-opt Ins Soft X-ray and Euv Imaging Systems = P. Soc. Photo-opt. Ins. Soft X-ray Cosmos = Aip Conf Proc Soft X-ray Cosmos = Aip. Conf. Proc. Soft X-ray Emission From Clusters of Galaxies and Related Phenomena = Astrophys Space Sc L Soft X-ray Emission From Clusters of Galaxies and Related Phenomena = Astrophys. Space. Sc. L. Soft X-ray Lasers and Applications Iii = Proc Spie Soft X-ray Lasers and Applications Iii = Proc. Spie. Soft X-ray Lasers and Applications Iii = P Soc Photo-opt Ins Soft X-ray Lasers and Applications Iii = P. Soc. Photo-opt. Ins. Soft X-ray Lasers and Applications Ii = P Soc Photo-opt Ins Soft X-ray Lasers and Applications Ii = P. Soc. Photo-opt. Ins. Soft X-ray Lasers and Applications Iv = P Soc Photo-opt Ins Soft X-ray Lasers and Applications Iv = P. Soc. Photo-opt. Ins. Soft X-ray Lasers and Applications = P Soc Photo-opt Ins Soft X-ray Lasers and Applications = P. Soc. Photo-opt. Ins. Soft X-ray Lasers and Applications Vii = P Soc Photo-opt Ins Soft X-ray Lasers and Applications Vii = P. Soc. Photo-opt. Ins. Soft X-ray Lasers and Applications V = Proc Spie Soft X-ray Lasers and Applications V = Proc. Spie. Soft X-ray Lasers and Applications V = P Soc Photo-opt Ins Soft X-ray Lasers and Applications V = P. Soc. Photo-opt. Ins. Soft X-ray Microscopy = P Soc Photo-opt Ins Soft X-ray Microscopy = P. Soc. Photo-opt. Ins. Sogo igaku. Medicine = Sogo Igaku Sogo kango. Comprehensive nursing, quarterly = Sogo Kango Sogo Kango (Comprehensive Nursing Quarterly) = Sogo Kango [Sogo rinsho] Clinic all-round = Sogo Rinsho Soho-23: Understanding A Peculiar Solar Minimum = Astr Soc P Soho-23: Understanding A Peculiar Solar Minimum = Astr. Soc. P. Soho 6/gong 98 Workshop On Structure and Dynamics of The Interior of The Sun and Sun-like Stars, Vols 1 and 2 = Esa Spec Publ Soho 6/gong 98 Workshop On Structure and Dynamics of The Interior of The Sun and Sun-like Stars, Vols 1 and 2 = Esa. Spec. Publ. Soho 6/gong 98 Workshop On Structure and Dynamics of The Interior of The Sun and Sun-like Stars, Vols 1 and 2 = Esa Sp Publ Soho 6/gong 98 Workshop On Structure and Dynamics of The Interior of The Sun and Sun-like Stars, Vols 1 and 2 = Esa. Sp. Publ. Soil Allelochemicals = Res Meth Plant Sci Soil Allelochemicals = Res. Meth. Plant. Sci. Soil and Crop Science Society of Florida Proceedings = Soil Crop Sci Soc Fl Soil and Crop Science Society of Florida Proceedings = Soil Crop Sci. Soc. Fl. Soil and Sediment Contamination = Soil Sediment Contam. Soil and Tillage Research = Soil Tillage Res. Soil and Water Pollution Monitoring, Protection and Remediation = Nato Sci S Ss Iv Ear Soil and Water Pollution Monitoring, Protection and Remediation = Nato. Sci. S. Ss. Iv. Ear. Soil Behavior and Soft Ground Construction = Geotech Sp Soil Behavior and Soft Ground Construction = Geotech. Sp. Soil Biology and Agriculture in The Tropics = Soil Biol Soil Biology and Agriculture in The Tropics = Soil Biol. Soil Biology and Biochemistry = Soil Biol. Biochem. Soil biology & biochemistry = Soil Biol Biochem Soil Biology & Biochemistry = Soil Biol Biochem Soil Biology & Biochemistry = Soil Biol. Biochem. Soil Biology: Effects On Soil Quality = Adv Soil S Soil Biology: Effects On Soil Quality = Adv. Soil S. Soil Biology = Soil Biol Soil Biology = Soil Biol. Soil Carbon Sequestration and The Greenhouse Effect = Sssa Spec Publ Soil Carbon Sequestration and The Greenhouse Effect = Sssa. Spec. Publ. Soil Chemical Pollution, Risk Assessment, Remediation and Security = Nato Sci Peace Sec C Soil Chemical Pollution, Risk Assessment, Remediation and Security = Nato. Sci. Peace. Sec. C. Soil Chemical Pollution, Risk Assessment, Remediation and Security = Nato Sci Peace Secur Soil Chemical Pollution, Risk Assessment, Remediation and Security = Nato. Sci. Peace. Secur. Soil Color = Sssa Spec Publ Soil Color = Sssa. Spec. Publ. Soil Conservation = Soil Conserv Soil Conservation = Soil Conserv. Soil Crusting = Adv Soil S Soil Crusting = Adv. Soil S. Soil Dynamics and Earthquake Engineering = Soil Dyn Earthq Eng Soil Dynamics and Earthquake Engineering = Soil Dyn. Earthq. Eng. Soil Dynamics and Earthquake Engineering = Soil Dyn. Earthquake Eng. Soil Engineering = Soil Biol Soil Engineering = Soil Biol. Soil & Environment = Soil Environm Soil & Environment = Soil Environm. Soil Enzymology = Soil Biol Soil Enzymology = Soil Biol. Soil Erosion and Carbon Dynamics = Adv Soil Sci-ser Soil Erosion and Carbon Dynamics = Adv. Soil Sci-ser. Soil Erosion - Experiments and Models - = Catena Supp Soil Erosion - Experiments and Models - = Catena. Supp. Soil Erosion On Agricultural Land = Brit Geomor Soil Erosion On Agricultural Land = Brit. Geomor. Soil Fertility and Climatic Constraints in Dryland Agriculture = Aciar Proc Soil Fertility and Climatic Constraints in Dryland Agriculture = Aciar. Proc. Soil Fertility = Environ Sci Eng Tech Soil Fertility = Environ. Sci. Eng. Tech. Soil Heavy Metals = Soil Biol Soil Heavy Metals = Soil Biol. Soil Improvement for Big Digs = Geotech Sp Soil Improvement for Big Digs = Geotech. Sp. Soil Improvement for Earthquake Hazard Mitigation = Geotech Sp Soil Improvement for Earthquake Hazard Mitigation = Geotech. Sp. Soil Management for Sustainability = Adv Geoecol Soil Management for Sustainability = Adv. Geoecol. Soil Mechanics 2000 = Transport Res Rec Soil Mechanics 2000 = Transport. Res. Rec. Soil Mechanics 2001 = Transport Res Rec Soil Mechanics 2001 = Transport. Res. Rec. Soil Mechanics 2002 = Transport Res Rec Soil Mechanics 2002 = Transport. Res. Rec. Soil Mechanics 2003 = Transport Res Rec Soil Mechanics 2003 = Transport. Res. Rec. Soil Mechanics 2004 = Transport Res Rec Soil Mechanics 2004 = Transport. Res. Rec. Soil Mechanics 2005 = Transport Res Rec Soil Mechanics 2005 = Transport. Res. Rec. Soil Mechanics 2006 = Transport Res Rec Soil Mechanics 2006 = Transport. Res. Rec. Soil Mechanics and Foundation Engineering = Soil Mech Found Eng Soil Mechanics and Foundation Engineering = Soil Mech Found Eng+ Soil Mechanics and Foundation Engineering = Soil Mech. Found. Eng. Soil Mechanics and Foundation Engineering = Soil Mech. Found. Eng+.+ Soil Mechanics and Transport in Porous Media = Theor Appl Trans Por Soil Mechanics and Transport in Porous Media = Theor. Appl. Trans. Por. Soil Micromorphology: Studies in Management and Genesis = Dev Soil Sci Soil Micromorphology: Studies in Management and Genesis = Dev. Soil Sci. Soil Mineral-organic Matter-microorganism Interactions and Ecosystem Health, Vol 28a = Dev Soil Sci Soil Mineral-organic Matter-microorganism Interactions and Ecosystem Health, Vol 28a = Dev. Soil Sci. Soil Mineral-organic Matter-microorganism Interactions and Ecosystem Health, Volume 28b = Dev Soil Sci Soil Mineral-organic Matter-microorganism Interactions and Ecosystem Health, Volume 28b = Dev. Soil Sci. Soil Monitoring = Monte Verit Soil Monitoring = Monte. Verit. Soil Phenols = Agr Issues Policies Soil Phenols = Agr. Issues. Policies. Soil-plant Relationships = Oefzs Ber Soil-plant Relationships = Oefzs. Ber. Soil Processes and The Carbon Cycle = Adv Soil S Soil Processes and The Carbon Cycle = Adv. Soil S. Soil Quality, Sustainable Agriculture and Environmental Security in Central and Eastern Europe = Nato Asi 2 Soil Quality, Sustainable Agriculture and Environmental Security in Central and Eastern Europe = Nato. Asi. 2. Soil Remediation = Pollut Sci Technol A Soil Remediation = Pollut. Sci. Technol. A. Soil Research = Soil Res Soil Research = Soil Res. Soils and Foundations = Soils Found Soils and Foundations = Soils Found. Soil Science and Plant Nutrition = Soil Sci Plant Nutr Soil Science and Plant Nutrition = Soil Sci. Plant Nutr. Soil Science Society of America journal. Soil Science Society of America = Soil Sci Soc Am J Soil Science Society of America Journal = Soil Sci Soc Am J Soil Science Society of America Journal = Soil Sci. Soc. Am. J. Soil Science Society of America Proceedings = Soil Sci Soc Am Pro Soil Science Society of America Proceedings = Soil Sci. Soc. Am. Pro. Soil science = Soil Sci Soil Science = Soil Sci Soil Science = Soil Sci. Soil & Sediment Contamination = Soil Sediment Contam Soil & Sediment Contamination = Soil Sediment Contam. Soil Solarization = Fao Plant P Soil Solarization = Fao. Plant. P. Soil Stress-stain Behavior: Measurement, Modeling and Analysis = Solid Mech Appl Soil Stress-stain Behavior: Measurement, Modeling and Analysis = Solid. Mech. Appl. Soil Structure and Its Evolution : Agronomic Consequences Dependant Upon Farmers = Colloq Inra Soil Structure and Its Evolution : Agronomic Consequences Dependant Upon Farmers = Colloq. Inra. Soil Suction Applications in Geotechnical Engineering Practice = Geotech Sp Soil Suction Applications in Geotechnical Engineering Practice = Geotech. Sp. Soil Surface Sealing and Crusting = Catena Supp Soil Surface Sealing and Crusting = Catena. Supp. Soil Technology = Soil Technol Soil Technology = Soil Technol. Soil Testing: Prospects for Improving Nutrient Recommendations = Sssa Spec Publ Soil Testing: Prospects for Improving Nutrient Recommendations = Sssa. Spec. Publ. Soil & Tillage Research = Soil Till Res Soil & Tillage Research = Soil Till. Res. Soil Use and Management = Soil Use Manage Soil Use and Management = Soil Use Manage. Soil-vegetation-atmosphere Transfer Schemes and Large-scale Hydrological Models = Iahs-aish P Soil-vegetation-atmosphere Transfer Schemes and Large-scale Hydrological Models = Iahs-aish. P. Soil Water Balance in The Sudano-sahelian Zone = Iahs-aish P Soil Water Balance in The Sudano-sahelian Zone = Iahs-aish. P. Soins. Cardiologie = Soins Cardiol Soins. Cardiologie = Soins. Cardiol. Soins. Chirurgie generale et specialisee = Soins Chir Gen Spec Soins. Chirurgie Generale et Specialisee = Soins. Chir. Gen. Spec. Soins. Chirurgie (Paris, France : 1982) = Soins Chir Soins. Chirurgie = Soins Chir Soins. Chirurgie = Soins. Chir. Soins. Formation, pedagogie, encadrement : avec la participation du CEEIEC = Soins Form Pedagog Encadr Soins. Formation, Pedagogie, Encadrement = Soins. Form. Pedagog. Encadr. Soins. Gerontologie = Soins Gerontol Soins. Gerontologie = Soins. Gerontol. Soins. Gynecologie, obstetrique, puericulture, pediatrie = Soins Gynecol Obstet Pueric Pediatr Soins. Gynecologie, Obstetrique, Puericulture, Pediatrie = Soins. Gynecol. Obstet. Pueric. Pediatr. Soins. Gynecologie, obstetrique, puericulture = Soins Gynecol Obstet Pueric Soins. Gynecologie, Obstetrique, Puericulture = Soins. Gynecol. Obstet. Pueric. Soins; la revue de reference infirmiere = Soins Soins. Pathologie tropicale = Soins Pathol Trop Soins. Pathologie Tropicale = Soins. Pathol. Trop. Soins. Pediatrie, puericulture = Soins Pediatr Pueric Soins. Pediatrie, Puericulture = Soins. Pediatr. Pueric. Soins. Psychiatrie = Soins Psychiatr Soins. Psychiatrie = Soins. Psychiatr. Soins = Soins Sojourners = Sojourners Sojourn (Singapore) = Sojourn Solaiat; Sociedad Odontologica Latino-Americana De Implantes Aloplasticos Y Transplantes = SOLAIAT SOLAIAT (Sociedad Odontologica Latino-Americana de Implantes Aloplasticos y Transplantes) = SOLAIAT Solar 94 - Proceedings of The 19th National Passive Solar Conference = P Natl Sol Solar 94 - Proceedings of The 19th National Passive Solar Conference = P. Natl. Sol. Solar Active Region Evolution: Comparing Models With Observations = Astr Soc P Solar Active Region Evolution: Comparing Models With Observations = Astr. Soc. P. Solar Activity and Earth's Climate, Second Edition = Springer-prax Books Solar Activity and Earth's Climate, Second Edition = Springer-prax. Books. Solar Activity Cycle and Particle Acceleration = Adv Space Res-series Solar Activity Cycle and Particle Acceleration = Adv. Space. Res-series. Solar Age = Sol Age Solar Age = Sol. Age Solar and Astrophysical Magnetohydrodynamic Flows = Nato Adv Sci Inst Se Solar and Astrophysical Magnetohydrodynamic Flows = Nato. Adv. Sci. Inst. Se. Solar and Extra-solar Planetary Systems = Lect Notes Phys Solar and Extra-solar Planetary Systems = Lect. Notes. Phys. Solar and Galactic Composition = Aip Conf Proc Solar and Galactic Composition = Aip. Conf. Proc. Solar and Heliospheric Origins of Space Weather Phenomena = Lect Notes Phys Solar and Heliospheric Origins of Space Weather Phenomena = Lect. Notes. Phys. Solar and Heliospheric Plasma Physics = Lect Notes Phys Solar and Heliospheric Plasma Physics = Lect. Notes. Phys. Solar and Planetary Dynamos = Publ Newton Inst Solar and Planetary Dynamos = Publ. Newton. Inst. Solar and Space Weather Radiophysics = Astrophys Space Sc L Solar and Space Weather Radiophysics = Astrophys. Space Sc. L. Solar and Stellar Activity: Similarities and Differences = Astr Soc P Solar and Stellar Activity: Similarities and Differences = Astr. Soc. P. Solar and Stellar Physics Through Eclipses = Astr Soc P Solar and Stellar Physics Through Eclipses = Astr. Soc. P. Solar and Stellar Variability: Impact On Earth and Planets = Iau Symp P Series Solar and Stellar Variability: Impact On Earth and Planets = Iau. Symp. P. Series. Solar and Switching Materials = P Soc Photo-opt Ins Solar and Switching Materials = P. Soc. Photo-opt. Ins. Solar-b Mission and The Forefront of Solar Physics, Proceedings = Astr Soc P Solar-b Mission and The Forefront of Solar Physics, Proceedings = Astr. Soc. P. Solar Cells = Sol Cells Solar Cells = Sol. Cells Solar Collectors: Energy Conservation, Design and Applications = Renew Energy Res Dev Solar Collectors: Energy Conservation, Design and Applications = Renew. Energy Res. Dev. Solar Composition: New Perspectives From In-situ and Remote Sensing Studies = Adv Space Res Solar Composition: New Perspectives From In-situ and Remote Sensing Studies = Adv. Space. Res. Solar Composition: New Perspectives From In-situ and Remote Sensing Studies = Adv Space Res-series Solar Composition: New Perspectives From In-situ and Remote Sensing Studies = Adv. Space. Res-series. Solar Corona = Adv Space Res Solar Corona = Adv. Space. Res. Solar Corona and Solar Wind = Adv Space Res-series Solar Corona and Solar Wind = Adv. Space. Res-series. Solar Cycle = Astr Soc P Solar Cycle = Astr. Soc. P. Solar Desalination for The 21st Century = Nato Sci Peace Secur Solar Desalination for The 21st Century = Nato. Sci. Peace. Secur. Solar Drivers of Interplanetary and Terrestrial Disturbances = Astr Soc P Solar Drivers of Interplanetary and Terrestrial Disturbances = Astr. Soc. P. Solar Encounter = Esa Spec Publ Solar Encounter = Esa. Spec. Publ. Solar Encounter = Esa Sp Publ Solar Encounter = Esa. Sp. Publ. Solar Encounter, Solar-b and Stereo = Adv Space Res Solar Encounter, Solar-b and Stereo = Adv. Space. Res. Solar Encounter, Solar-b and Stereo = Adv Space Res-series Solar Encounter, Solar-b and Stereo = Adv. Space. Res-series. Solar Energy in The Winemaking Industry = Green Energy Technol Solar Energy in The Winemaking Industry = Green. Energy Technol. Solar Energy Materials and Solar Cells = Sol Energ Mat Sol C Solar Energy Materials and Solar Cells = Sol. Energ. Mat. Sol. C. Solar Energy Materials and Solar Cells = Sol. Energy Mater. Sol. Cells Solar Energy Materials & Solar Cells = Sol. Energy Mater. Sol. Cells Solar Energy Materials = Sol Energ Mater Solar Energy Materials = Sol. Energ. Mater. Solar Energy = Sol Energy Solar Energy = Sol. Energy Solar Eruptions and Energetic Particles = Geoph Monog Series Solar Eruptions and Energetic Particles = Geoph. Monog. Series. Solar Eruptions and Energetic Particles = Geophys Monogr Ser Solar Eruptions and Energetic Particles = Geophys. Monogr. Ser. Solar Flare, Coronal and Heliospheric Dynamics = Adv Space Res Solar Flare, Coronal and Heliospheric Dynamics = Adv. Space. Res. Solar Flare, Coronal and Heliospheric Dynamics = Adv Space Res-series Solar Flare, Coronal and Heliospheric Dynamics = Adv. Space. Res-series. Solar Hydrogen and Nanotechnology Iii = Proc Spie Solar Hydrogen and Nanotechnology Iii = Proc. Spie. Solar Hydrogen and Nanotechnology Iii = P Soc Photo-opt Ins Solar Hydrogen and Nanotechnology Iii = P. Soc. Photo-opt. Ins. Solar Hydrogen and Nanotechnology Ii = Proc Spie Solar Hydrogen and Nanotechnology Ii = Proc. Spie. Solar Hydrogen and Nanotechnology Ii = P Soc Photo-opt Ins Solar Hydrogen and Nanotechnology Ii = P. Soc. Photo-opt. Ins. Solar Hydrogen and Nanotechnology = P Soc Photo-opt Ins Solar Hydrogen and Nanotechnology = P. Soc. Photo-opt. Ins. Solar Hydrogen and Nanotechnology V = Proc Spie Solar Hydrogen and Nanotechnology V = Proc. Spie. Solar Hydrogen and Nanotechnology V = P Soc Photo-opt Ins Solar Hydrogen and Nanotechnology V = P. Soc. Photo-opt. Ins. Solar Journey: The Significance of Our Galactic Environment for The Heliosphere and Earth = Astrophys Space Sc L Solar Journey: The Significance of Our Galactic Environment for The Heliosphere and Earth = Astrophys. Space. Sc. L. Solar Magnetic Phenomena = Astrophys Space Sc L Solar Magnetic Phenomena = Astrophys. Space. Sc. L. Solar Mhd Theory and Observations: A High Spatial Resolution Perspective, in Honor of Robert F. Stein = Astr Soc P Solar Mhd Theory and Observations: A High Spatial Resolution Perspective, in Honor of Robert F. Stein = Astr. Soc. P. Solar Neutrons and Related Phenomena = Astrophys Space Sc L Solar Neutrons and Related Phenomena = Astrophys. Space. Sc. L. Solar Observations : Techniques and Interpretation = Can Isl Ast Solar Observations : Techniques and Interpretation = Can. Isl. Ast. Solar Optical Materials Xvi = Proc Spie Solar Optical Materials Xvi = Proc. Spie. Solar Optical Materials Xvi = P Soc Photo-opt Ins Solar Optical Materials Xvi = P. Soc. Photo-opt. Ins. Solar Photosphere : Structure, Convection and Magnetic Fields = Iau Symp Solar Photosphere : Structure, Convection and Magnetic Fields = Iau. Symp. Solar Physics and Space Weather Instrumentation Ii = P Soc Photo-opt Ins Solar Physics and Space Weather Instrumentation Ii = P. Soc. Photo-opt. Ins. Solar Physics = Sol Phys Solar Physics = Sol. Phys. Solar Polarization 3 = Astr Soc P Solar Polarization 3 = Astr. Soc. P. Solar Polarization 4 = Astr Soc P Solar Polarization 4 = Astr. Soc. P. Solar Polarization 5 = Astr Soc P Solar Polarization 5 = Astr. Soc. P. Solar Polarization 6 = Astr Soc P Solar Polarization 6 = Astr. Soc. P. Solar Polarization = Astrophys Space Sc L Solar Polarization = Astrophys. Space. Sc. L. Solar-stellar Dynamos As Revealed By Helio and Asteroseismology: Gong 2008/soho 21 = Astr Soc P Solar-stellar Dynamos As Revealed By Helio and Asteroseismology: Gong 2008/soho 21 = Astr. Soc. P. Solar Surface Magnetism = Nato Adv Sci Inst Se Solar Surface Magnetism = Nato. Adv. Sci. Inst. Se. Solar System Astrophysics = Astron Astrophys Lib Solar System Astrophysics = Astron. Astrophys. Lib. Solar System Astrophysics: Background Science and The Inner Solar System = Astron Astrophys Lib Solar System Astrophysics: Background Science and The Inner Solar System = Astron. Astrophys. Lib. Solar System Formation and Evolution = Astr Soc P Solar System Formation and Evolution = Astr. Soc. P. Solar System Ices = Astrophys Space Sc L Solar System Ices = Astrophys. Space. Sc. L. Solar System Research = Solar Syst Res+ Solar System Research = Solar Syst. Res+.+ Solar System Research = Sol. Syst. Res. Solar System Update = S-p B Astron Planet Solar System Update = S-p. B. Astron. Planet. Solar-terrestrial Energy Program = Cospar Coll Solar-terrestrial Energy Program = Cospar. Coll. Solar-terrestrial Magnetic Activity and Space Environment = Cospar Coll Solar-terrestrial Magnetic Activity and Space Environment = Cospar. Coll. Solar-terrestrial Relations: Predicting The Effects On The Near- Earth Environment = Adv Space Res Solar-terrestrial Relations: Predicting The Effects On The Near- Earth Environment = Adv. Space. Res. Solar-terrestrial Relations: Predicting The Effects On The Near- Earth Environment = Adv Space Res-series Solar-terrestrial Relations: Predicting The Effects On The Near- Earth Environment = Adv. Space. Res-series. Solar Thermal Systems: Design, Application, Technical Controls = Vdi Bericht Solar Thermal Systems: Design, Application, Technical Controls = Vdi. Bericht. Solar Variability and Climate Change = Adv Space Res Solar Variability and Climate Change = Adv. Space. Res. Solar Variability and Climate Change = Adv Space Res-series Solar Variability and Climate Change = Adv. Space. Res-series. Solar Variability and Earth's Climate = Mem Soc Astron Ital Solar Variability and Earth's Climate = Mem. Soc. Astron. Ital. Solar Variability and Solar Physics Missions = Adv Space Res Solar Variability and Solar Physics Missions = Adv. Space. Res. Solar Variability and Solar Physics Missions = Adv Space Res-series Solar Variability and Solar Physics Missions = Adv. Space. Res-series. Solar Variability As An Input to The Earth's Environment = Esa Spec Publ Solar Variability As An Input to The Earth's Environment = Esa. Spec. Publ. Solar Variability As An Input to The Earth's Environment = Esa Sp Publ Solar Variability As An Input to The Earth's Environment = Esa. Sp. Publ. Solar Variability: From Core to Outer Frontiers, Vols 1 & 2 = Esa Spec Publ Solar Variability: From Core to Outer Frontiers, Vols 1 & 2 = Esa. Spec. Publ. Solar Variability: From Core to Outer Frontiers, Vols 1 & 2 = Esa Sp Publ Solar Variability: From Core to Outer Frontiers, Vols 1 & 2 = Esa. Sp. Publ. Solar Wind Eight - Proceedings of The Eighth International Solar Wind Conference = Aip Conf Proc Solar Wind Eight - Proceedings of The Eighth International Solar Wind Conference = Aip. Conf. Proc. Solar Wind-magnetosphere-ionosphere Dynamics and Radiation Models = Adv Space Res Solar Wind-magnetosphere-ionosphere Dynamics and Radiation Models = Adv. Space. Res. Solar Wind-magnetosphere-ionosphere Dynamics and Radiation Models = Adv Space Res-series Solar Wind-magnetosphere-ionosphere Dynamics and Radiation Models = Adv. Space. Res-series. Solar Wind Nine = Aip Conf Proc Solar Wind Nine = Aip. Conf. Proc. Solar Wind Seven = Cospar Coll Solar Wind Seven = Cospar. Coll. Solar Wind Sources of Magnetospheric Ultra-low-frequency Waves = Geoph Monog Series Solar Wind Sources of Magnetospheric Ultra-low-frequency Waves = Geoph. Monog. Series. Solar Wind Ten, Proceedings = Aip Conf Proc Solar Wind Ten, Proceedings = Aip. Conf. Proc. Sola = Sola Soldagem & Inspecao = Soldagem Insp Soldagem & Inspecao = Soldagem Insp. Soldering & Surface Mount Technology = Solder Surf Mt Tech Soldering & Surface Mount Technology = Solder. Surf. Mt. Tech. Solder Joint Technology = Springer Ser Mater S Solder Joint Technology = Springer. Ser. Mater. S. Soldiers and Citizens: An Oral History of Operation Iraqi Freedom From The Battlefield to The Pentagon = Palgr Stud Oral Hist Soldiers and Citizens: An Oral History of Operation Iraqi Freedom From The Battlefield to The Pentagon = Palgr. Stud. Oral Hist. Soldiers and Societies in Post-communist Europe: Legitimacy and Change = One Eur Several Soldiers and Societies in Post-communist Europe: Legitimacy and Change = One. Eur. Several. Soldiers, Citizens and Civilians: Experiences and Perceptions of The Revolutionary and Napoleonic Wars, 1790-1820 = War Cult Soc 1750 Soldiers, Citizens and Civilians: Experiences and Perceptions of The Revolutionary and Napoleonic Wars, 1790-1820 = War. Cult. Soc. 1750. Soldiers, Martyrs, Traitors, and Exiles: Political Conflict in Eritrea and The Diaspora = Ethnogr Polit Violen Soldiers, Martyrs, Traitors, and Exiles: Political Conflict in Eritrea and The Diaspora = Ethnogr. Polit. Violen. Sol-gel Methods for Materials Processing = Nato Sci Peace Secur Sol-gel Methods for Materials Processing = Nato. Sci. Peace. Secur. Sol-gel Optics Iii = P Soc Photo-opt Ins Sol-gel Optics Iii = P. Soc. Photo-opt. Ins. Sol-gel Optics Ii = P Soc Photo-opt Ins Sol-gel Optics Ii = P. Soc. Photo-opt. Ins. Sol-gel Optics Iv = P Soc Photo-opt Ins Sol-gel Optics Iv = P. Soc. Photo-opt. Ins. Sol-gel Optics = P Soc Photo-opt Ins Sol-gel Optics = P. Soc. Photo-opt. Ins. Sol-gel Optics Vi = P Soc Photo-opt Ins Sol-gel Optics Vi = P. Soc. Photo-opt. Ins. Sol-gel Optics V = Proc Spie Sol-gel Optics V = Proc. Spie. Sol-gel Optics V = P Soc Photo-opt Ins Sol-gel Optics V = P. Soc. Photo-opt. Ins. Sol-gel Production = Key Eng Mat Sol-gel Production = Key. Eng. Mat. Sol-gel Synthesis and Processing = Ceram Trans Sol-gel Synthesis and Processing = Ceram. Trans. Solicitors' journal (London, England : 1928) = Solicit J Solidarity: A Structural Principle of International Law = Beitr Ausland Offent Solidarity: A Structural Principle of International Law = Beitr. Ausland. Offent. Solidarity: A Structural Principle of International Law = Beitr Ausl Offentl R Solidarity: A Structural Principle of International Law = Beitr. Ausl. Offentl. R. Solidarity: From Civic Friendship to A Global Legal Community = Stud Contemp Ger Soc Solidarity: From Civic Friendship to A Global Legal Community = Stud. Contemp. Ger. Soc. Solidarity Perfected = Beih Z Neutest Wiss Solidarity Perfected = Beih. Z. Neutest. Wiss. Solid Biofuels for Energy: A Lower Greenhouse Gas Alternative = Green Energy Technol Solid Biofuels for Energy: A Lower Greenhouse Gas Alternative = Green. Energy. Technol. Solid Compounds of Transition Elements = Solid State Phenomen Solid Compounds of Transition Elements = Solid State. Phenomen. Solid Earth Sciences Library = Solid Earth Solid-fluid Mixtures of Frictional Materials in Geophysical and Geotechnical Context: Based On A Concise Thermodynamic Analysis = Adv Geophys Env Mech Solid-fluid Mixtures of Frictional Materials in Geophysical and Geotechnical Context: Based On A Concise Thermodynamic Analysis = Adv. Geophys. Env. Mech. Solid Freeform and Additive Fabrication-2000 = Mater Res Soc Symp P Solid Freeform and Additive Fabrication-2000 = Mater. Res. Soc. Symp. P. Solid Freeform and Additive Fabrication = Mater Res Soc Symp P Solid Freeform and Additive Fabrication = Mater. Res. Soc. Symp. P. Solid Freeform Fabrication Proceedings, August, 1998 = Sol Freeform Fabric Solid Freeform Fabrication Proceedings, August, 1998 = Sol. Freeform Fabric. Solid Freeform Fabrication Proceedings, August 1999 = Sol Freeform Fabric Solid Freeform Fabrication Proceedings, August 1999 = Sol. Freeform Fabric. Solid Freeform Fabrication Proceedings, September 1996 = Sol Freeform Fabric Solid Freeform Fabrication Proceedings, September 1996 = Sol. Freeform Fabric. Solid Freeform Fabrication Proceedings, September 1997 = Sol Freeform Fabric Solid Freeform Fabrication Proceedings, September 1997 = Sol. Freeform Fabric. Solid Freeform Fabrication Proceedings (series) = Sol Freeform Fabric Solid Freeform Fabrication Proceedings (series) = Sol. Freeform Fabric. Solid Fuel Chemistry = Solid Fuel Chem Solid Fuel Chemistry = Solid Fuel Chem. Solid Fuel Chemistry = Solid Fuel Chem+ Solid Fuel Chemistry = Solid Fuel Chem+.+ Solid Fuels Combustion and Gasification: Modeling, Simulation, and Equipment Operations, Second Edition = Mech Eng-crc Solid Fuels Combustion and Gasification: Modeling, Simulation, and Equipment Operations, Second Edition = Mech. Eng-crc. Solidification and Casting = Ser Mat Sci Engn Solidification and Casting = Ser. Mat. Sci. Engn. Solidification and Gravity 2000 = Mater Sci Forum Solidification and Gravity 2000 = Mater. Sci. Forum. Solidification and Gravity Iv = Mater Sci Forum Solidification and Gravity Iv = Mater. Sci. Forum. Solidification and Gravity = Mater Sci Forum Solidification and Gravity = Mater. Sci. Forum. Solidification and Gravity V = Mater Sci Forum Solidification and Gravity V = Mater. Sci. Forum. Solidification and Microgravity = Mater Sci Forum Solidification and Microgravity = Mater. Sci. Forum. Solidification Processing of Reinforced Metals = Key Eng Mat Solidification Processing of Reinforced Metals = Key. Eng. Mat. Solid-liquid Electrochemical Interfaces = Acs Sym Ser Solid-liquid Electrochemical Interfaces = Acs. Sym. Ser. Solid Mechanics and its Applications = Solid Mech. Appl. Solid Mechanics and Its Applications = Solid Mech Appl Solid Mechanics and Its Applications = Solid Mech. Appl. Solid Mechanics Archives = Solid Mech Arch Solid Mechanics Archives = Solid Mech. Arch. Solid Oxide Fuel Cells 10 (sofc-x), Pts 1 and 2 = Ecs Transactions Solid Oxide Fuel Cells 10 (sofc-x), Pts 1 and 2 = Ecs. Transactions. Solid Oxide Fuel Cells: Materials Properties and Performance = Green Chem Chem Eng Solid Oxide Fuel Cells: Materials Properties and Performance = Green. Chem. Chem. Eng. Solid Oxide Fuel Cells (sofc Vi) = Elec Soc S Solid Oxide Fuel Cells (sofc Vi) = Elec. Soc. S. Solid Oxide Fuel Cells Viii (sofc Viii) = Elec Soc S Solid Oxide Fuel Cells Viii (sofc Viii) = Elec. Soc. S. Solid Oxide Fuel Cells Vii (sofc Vii) = Elec Soc S Solid Oxide Fuel Cells Vii (sofc Vii) = Elec. Soc. S. Solid Oxide Fuel Cell Technology = Woodhead Publ Ser En Solid Oxide Fuel Cell Technology = Woodhead. Publ. Ser. En. Solid-phase Peptide Synthesis = Method Enzymol Solid-phase Peptide Synthesis = Method. Enzymol. Solid Phase Transformations Ii = Solid State Phenomen Solid Phase Transformations Ii = Solid State. Phenomen. Solid-state Astrophysics = P Int Sch Phys Solid-state Astrophysics = P. Int. Sch. Phys. Solid State Chemistry and Photocatalysis of Titanium Dioxide = Solid State Phenomen Solid State Chemistry and Photocatalysis of Titanium Dioxide = Solid State Phenomen. Solid-state Chemistry of Inorganic Materials Ii = Mater Res Soc Symp P Solid-state Chemistry of Inorganic Materials Ii = Mater. Res. Soc. Symp. P. Solid-state Chemistry of Inorganic Materials Iv = Mater Res Soc Symp P Solid-state Chemistry of Inorganic Materials Iv = Mater. Res. Soc. Symp. P. Solid-state Chemistry of Inorganic Materials = Mater Res Soc Symp P Solid-state Chemistry of Inorganic Materials = Mater. Res. Soc. Symp. P. Solid-state Chemistry of Inorganic Materials V = Mater Res Soc Symp P Solid-state Chemistry of Inorganic Materials V = Mater. Res. Soc. Symp. P. Solid State Chemistry V = Solid State Phenomen Solid State Chemistry V = Solid State Phenomen. Solid State Chemistry V = Sol St Phen Solid State Chemistry V = Sol. St. Phen. Solid State Communications = Solid State Commun Solid State Communications = Solid State Commun. Solid State Crystals 2002: Crystalline Materials for Optoelectronics = Proc Spie Solid State Crystals 2002: Crystalline Materials for Optoelectronics = Proc. Spie. Solid State Crystals 2002: Crystalline Materials for Optoelectronics = P Soc Photo-opt Ins Solid State Crystals 2002: Crystalline Materials for Optoelectronics = P. Soc. Photo-opt. Ins. Solid State Crystals: Growth and Characterization = P Soc Photo-opt Ins Solid State Crystals: Growth and Characterization = P. Soc. Photo-opt. Ins. Solid State Crystals in Optoelectronics and Semiconductor Technology = P Soc Photo-opt Ins Solid State Crystals in Optoelectronics and Semiconductor Technology = P. Soc. Photo-opt. Ins. Solid State Crystals: Materials Science and Applications = P Soc Photo-opt Ins Solid State Crystals: Materials Science and Applications = P. Soc. Photo-opt. Ins. Solid State Electrochemistry = Chem Res Appl-nova Solid State Electrochemistry = Chem. Res. Appl-nova. Solid-state Electronics = Solid State Electron Solid-state Electronics = Solid. State. Electron. Solid State Electronics = Solid-State Electron. Solid-State Electronics = Solid-State Electron. Solid-state Hydrogen Storage: Materials and Chemistry = Woodhead Publ Mater Solid-state Hydrogen Storage: Materials and Chemistry = Woodhead. Publ. Mater. Solid-state Ionic Devices = Elec Soc S Solid-state Ionic Devices = Elec. Soc. S. Solid State Ionics-2002 = Mater Res Soc Symp P Solid State Ionics-2002 = Mater. Res. Soc. Symp. P. Solid State Ionics-2004 = Mater Res Soc Symp P Solid State Ionics-2004 = Mater. Res. Soc. Symp. P. Solid-state Ionics-2006 = Mater Res Soc Symp P Solid-state Ionics-2006 = Mater. Res. Soc. Symp. P. Solid-state Ionics-2008 = Mater Res Soc Symp P Solid-state Ionics-2008 = Mater. Res. Soc. Symp. P. Solid State Ionics Iii = Mater Res Soc Symp P Solid State Ionics Iii = Mater. Res. Soc. Symp. P. Solid State Ionics Ii = Mater Res Soc Symp P Solid State Ionics Ii = Mater. Res. Soc. Symp. P. Solid State Ionics Iv = Mater Res Soc Symp P Solid State Ionics Iv = Mater. Res. Soc. Symp. P. Solid State Ionics = Solid State Ionics Solid State Ionics V = Mater Res Soc Symp P Solid State Ionics V = Mater. Res. Soc. Symp. P. Solid State Lasers and Amplifiers Iii = Proc Spie Solid State Lasers and Amplifiers Iii = Proc. Spie. Solid State Lasers and Amplifiers Iii = P Soc Photo-opt Ins Solid State Lasers and Amplifiers Iii = P. Soc. Photo-opt. Ins. Solid State Lasers and Amplifiers Ii = Proc Spie Solid State Lasers and Amplifiers Ii = Proc. Spie. Solid State Lasers and Amplifiers Ii = P Soc Photo-opt Ins Solid State Lasers and Amplifiers Ii = P. Soc. Photo-opt. Ins. Solid State Lasers and Amplifiers Iv and High-power Lasers = Proc Spie Solid State Lasers and Amplifiers Iv and High-power Lasers = Proc. Spie. Solid State Lasers and Amplifiers Iv and High-power Lasers = P Soc Photo-opt Ins Solid State Lasers and Amplifiers Iv and High-power Lasers = P. Soc. Photo-opt. Ins. Solid State Lasers and Amplifiers = P Soc Photo-opt Ins Solid State Lasers and Amplifiers = P. Soc. Photo-opt. Ins. Solid State Lasers and Nonlinear Crystals = P Soc Photo-opt Ins Solid State Lasers and Nonlinear Crystals = P. Soc. Photo-opt. Ins. Solid State Lasers Iii = P Soc Photo-opt Ins Solid State Lasers Iii = P. Soc. Photo-opt. Ins. Solid State Lasers Ii = P Soc Photo-opt Ins Solid State Lasers Ii = P. Soc. Photo-opt. Ins. Solid State Lasers Iv = P Soc Photo-opt Ins Solid State Lasers Iv = P. Soc. Photo-opt. Ins. Solid State Lasers Ix = P Soc Photo-opt Ins Solid State Lasers Ix = P. Soc. Photo-opt. Ins. Solid State Lasers - Laser Optics '98 = P Soc Photo-opt Ins Solid State Lasers - Laser Optics '98 = P. Soc. Photo-opt. Ins. Solid State Lasers = Nato Adv Sci Inst Se Solid State Lasers = Nato. Adv. Sci. Inst. Se. Solid State Lasers = P Soc Photo-opt Ins Solid State Lasers = P. Soc. Photo-opt. Ins. Solid State Lasers Viii = P Soc Photo-opt Ins Solid State Lasers Viii = P. Soc. Photo-opt. Ins. Solid State Lasers Vii = P Soc Photo-opt Ins Solid State Lasers Vii = P. Soc. Photo-opt. Ins. Solid State Lasers Vi = P Soc Photo-opt Ins Solid State Lasers Vi = P. Soc. Photo-opt. Ins. Solid State Lasers V = P Soc Photo-opt Ins Solid State Lasers V = P. Soc. Photo-opt. Ins. Solid State Lasers Xiii: Technology and Devices = Proc Spie Solid State Lasers Xiii: Technology and Devices = Proc. Spie. Solid State Lasers Xiii: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xiii: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers Xii = P Soc Photo-opt Ins Solid State Lasers Xii = P. Soc. Photo-opt. Ins. Solid State Lasers Xi = P Soc Photo-opt Ins Solid State Lasers Xi = P. Soc. Photo-opt. Ins. Solid State Lasers Xiv: Technology and Devices = Proc Spie Solid State Lasers Xiv: Technology and Devices = Proc. Spie. Solid State Lasers Xiv: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xiv: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers Xix: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xix: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers X = P Soc Photo-opt Ins Solid State Lasers X = P. Soc. Photo-opt. Ins. Solid State Lasers Xviii: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xviii: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers Xvii: Technology and Devices = Proc Spie Solid State Lasers Xvii: Technology and Devices = Proc. Spie. Solid State Lasers Xvii: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xvii: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers Xvi: Technology and Devices = Proc Spie Solid State Lasers Xvi: Technology and Devices = Proc. Spie. Solid State Lasers Xvi: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xvi: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Lasers Xv: Technology and Devices = P Soc Photo-opt Ins Solid State Lasers Xv: Technology and Devices = P. Soc. Photo-opt. Ins. Solid State Laser Technologies and Femtosecond Phenomena = P Soc Photo-opt Ins Solid State Laser Technologies and Femtosecond Phenomena = P. Soc. Photo-opt. Ins. Solid State Lighting and Displays = P Soc Photo-opt Ins Solid State Lighting and Displays = P. Soc. Photo-opt. Ins. Solid State Lighting and Solar Energy Technologies = Proc Spie Solid State Lighting and Solar Energy Technologies = Proc. Spie. Solid State Lighting and Solar Energy Technologies = P Soc Photo-opt Ins Solid State Lighting and Solar Energy Technologies = P. Soc. Photo-opt. Ins. Solid State Lighting Ii = P Soc Photo-opt Ins Solid State Lighting Ii = P. Soc. Photo-opt. Ins. Solid-state Lighting Materials and Devices = Mater Res Soc Symp P Solid-state Lighting Materials and Devices = Mater. Res. Soc. Symp. P. Solid State Microbatteries = Nato Adv Sci I B-phy Solid State Microbatteries = Nato. Adv. Sci. I. B-phy. Solid-state Microwave High-power Amplifiers = Artech Hse Microw Li Solid-state Microwave High-power Amplifiers = Artech. Hse. Microw. Li. Solid-state Mid-infrared Laser Sources = Top Appl Phys Solid-state Mid-infrared Laser Sources = Top. Appl. Phys. Solid State Nuclear Magnetic Resonance = Solid State Nucl Mag Solid State Nuclear Magnetic Resonance = Solid State Nucl. Mag. Solid state nuclear magnetic resonance = Solid State Nucl Magn Reson Solid State Nuclear Magnetic Resonance=Solid State Nucl Magn Reson;; Solid State Nuclear Magnetic Resonance = Solid State Nucl. Magn. Reson. Solid State Phenomena Series = Sol St Phen Solid State Phenomena Series = Sol. St. Phen. Solid State Phenomena = Solid State Phenom Solid State Phenomena = Solid State Phenom. Solid State Phenomena = Solid State Phenomen Solid State Phenomena = Solid State Phenomen. Solid State Phenomena = Sol St Phen Solid State Phenomena = Sol. St. Phen. Solid State Physics-advances in Research and Applications = Solid State Phys Solid State Physics-advances in Research and Applications = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol 46 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol 46 = Solid State Phys. Solid State Physics - Advances in Research and Applications, Vol 47 = Solid State Phys Solid State Physics - Advances in Research and Applications, Vol 47 = Solid State Phys. Solid State Physics - Advances in Research and Applications, Vol 48 = Solid State Phys Solid State Physics - Advances in Research and Applications, Vol 48 = Solid State Phys. Solid State Physics - Advances in Research and Applications, Vol 50 = Solid State Phys Solid State Physics - Advances in Research and Applications, Vol 50 = Solid State Phys. Solid State Physics - Advances in Research and Applications, Vol 52 = Solid State Phys Solid State Physics - Advances in Research and Applications, Vol 52 = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol. 54 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol. 54 = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol 55 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol 55 = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol 57 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol 57 = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol 59 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol 59 = Solid State Phys. Solid State Physics: Advances in Research and Applications, Vol 60 = Solid State Phys Solid State Physics: Advances in Research and Applications, Vol 60 = Solid State Phys. Solid State Physics = Solid State Phys Solid State Physics = Solid State Phys. Solid State Physics, Vol 51 = Solid State Phys Solid State Physics, Vol 51 = Solid State Phys. Solid State Physics, Vol 56 = Solid State Phys Solid State Physics, Vol 56 = Solid State Phys. Solid State Physics, Vol. 58 = Solid State Phys Solid State Physics, Vol. 58 = Solid State Phys. Solid-state Quantum Computing, Proceedings = Aip Conf Proc Solid-state Quantum Computing, Proceedings = Aip. Conf. Proc. Solid State Science and Technology = Aip Conf Proc Solid State Science and Technology = Aip. Conf. Proc. Solid-state Science and Technology Library = Sol Sci Technol Lib Solid-state Science and Technology Library = Sol. Sci. Technol. Lib. Solid State Sciences = Solid State Sci Solid State Sciences = Solid State Sci. Solid State Sensor Arrays and Ccd Cameras = P Soc Photo-opt Ins Solid State Sensor Arrays and Ccd Cameras = P. Soc. Photo-opt. Ins. Solid State Sensor Arrays: Development and Applications Ii = P Soc Photo-opt Ins Solid State Sensor Arrays: Development and Applications Ii = P. Soc. Photo-opt. Ins. Solid State Sensor Arrays: Development and Applications = P Soc Photo-opt Ins Solid State Sensor Arrays: Development and Applications = P. Soc. Photo-opt. Ins. Solid-state Synthesis of Magnesium-based Functional Alloys and Compounds = Mater Sci Found Solid-state Synthesis of Magnesium-based Functional Alloys and Compounds = Mater. Sci. Found. Solid State Technology = Solid State Technol Solid State Technology = Solid State Technol. Solid Surfaces, Interfaces and Thin Films, Fifth Edition = Grad Texts Phys Solid Surfaces, Interfaces and Thin Films, Fifth Edition = Grad. Texts. Phys. Solid Waste Management and Environmental Remediation = Env Remed Tech Regul Solid Waste Management and Environmental Remediation = Env. Remed. Tech. Regul. Solid Wastes Management = Solid Waste Managem Solid Wastes Management = Solid Waste. Managem. Soliton-driven Photonics = Nato Sci Ser Ii-math Soliton-driven Photonics = Nato. Sci. Ser. Ii-math. Soliton-driven Photonics = Nato Sci Ser Ii Math Soliton-driven Photonics = Nato. Sci. Ser. Ii. Math. Solitons in Physics, Mathematics, and Nonlinear Optics = Ima V Math Solitons in Physics, Mathematics, and Nonlinear Optics = Ima. V. Math. Solitons: Properties, Dynamics, Interactions, Applications = Crm Ser Math Phys Solitons: Properties, Dynamics, Interactions, Applications = Crm. Ser. Math. Phys. Solmag 2002: Proceedings of The Magnetic Coupling of The Solar Atmosphere Euroconference and Iau Colloquium 188 = Esa Spec Publ Solmag 2002: Proceedings of The Magnetic Coupling of The Solar Atmosphere Euroconference and Iau Colloquium 188 = Esa. Spec. Publ. Solmag 2002: Proceedings of The Magnetic Coupling of The Solar Atmosphere Euroconference and Iau Colloquium 188 = Esa Sp Publ Solmag 2002: Proceedings of The Magnetic Coupling of The Solar Atmosphere Euroconference and Iau Colloquium 188 = Esa. Sp. Publ. Solomons House Revisited = Nobel Symp Solomons House Revisited = Nobel. Symp. Solo Performances: Staging The Early Modern Self in England = Int Forsch Allg Vgl Solo Performances: Staging The Early Modern Self in England = Int. Forsch. Allg. Vgl. Solspa 2001: Proceedings of The Second Solar Cycle and Space Weather Euroconference = Esa Spec Publ Solspa 2001: Proceedings of The Second Solar Cycle and Space Weather Euroconference = Esa. Spec. Publ. Solspa 2001: Proceedings of The Second Solar Cycle and Space Weather Euroconference = Esa Sp Publ Solspa 2001: Proceedings of The Second Solar Cycle and Space Weather Euroconference = Esa. Sp. Publ. Solubility Data Series = Solubility Data Ser. Solus Deus-untersuchungen Zur Rede Von Gott Im Brief Des Paulus An Die Romer = Beih Z Neutest Wiss Solus Deus-untersuchungen Zur Rede Von Gott Im Brief Des Paulus An Die Romer = Beih. Z. Neutest. Wiss. Solute Transport and Retention in Fractured Rock = Vtt Res Notes Solute Transport and Retention in Fractured Rock = Vtt. Res. Notes. Solutions for Improving Productivity and Flexibility = Tech Papers Isa Solutions for Improving Productivity and Flexibility = Tech. Papers. Isa. Solutions for Intelligent Nutrition: Nutritech Roadmap = Vtt Res Notes Solutions for Intelligent Nutrition: Nutritech Roadmap = Vtt. Res. Notes. Solvay Pharmaceuticals Conferences = Solvay Pharmaceut Solvay Pharmaceuticals Conferences = Solvay Pharmaceut. Solvent Extraction 1990, Pts A and B = Process Met Solvent Extraction 1990, Pts A and B = Process. Met. Solvent Extraction and Ion Exchange = Solvent Extr Ion Exc Solvent Extraction and Ion Exchange = Solvent Extr. Ion Exc. Solvent Extraction and Ion Exchange = Solvent Extr. Ion Exch. Solvent Extraction Research and Development-japan = Solvent Extr Res Dev Solvent Extraction Research and Development-japan = Solvent Extr. Res. Dev. Solvent Extraction Research and Development, Japan = Solvent Extr. Res. Dev., Jpn. Solvents and Self-organization of Polymers = Nato Adv Sci Inst Se Solvents and Self-organization of Polymers = Nato. Adv. Sci. Inst. Se. Solving Irregularly Structured Problems in Parallel = Lect Notes Comput Sc Solving Irregularly Structured Problems in Parallel = Lect. Notes. Comput. Sc. Solving Pdes in C++: Numerical Methods in A Unified Object-oriented Approach = Comput Sci Eng Ser Solving Pdes in C++: Numerical Methods in A Unified Object-oriented Approach = Comput. Sci. Eng. Ser. Solving Polynomial Systems Using Continuation for Engineering and Scientific Problems = Class Appl Math Solving Polynomial Systems Using Continuation for Engineering and Scientific Problems = Class. Appl. Math. Solving Problems in Food Engineering = Food Eng Ser Solving Problems in Food Engineering = Food Eng. Ser. Solving The Pell Equation = Cms Books Math Solving The Pell Equation = Cms. Books. Math. Solving The Riddle of Globalization and Development = Routl Stud Mod World Solving The Riddle of Globalization and Development = Routl. Stud. Mod. World. Somatic Cell and Molecular Genetics = Somat Cell Molec Gen Somatic Cell and Molecular Genetics = Somat. Cell Molec. Gen. Somatic cell and molecular genetics = Somat Cell Mol Genet Somatic Cell and Molecular Genetics=Somat Cell Mol Genet;; Somatic Cell and Molecular Genetics = Somat. Cell Mol. Genet. Somatic Cell and Molecular Genetics = Somatic Cell Mol. Genet. Somatic Cell Genetics and Molecular Genetics of Trees = For Sci Somatic Cell Genetics and Molecular Genetics of Trees = For. Sci. Somatic Cell Genetics = Somat Cell Genet Somatic Cell Genetics = Somat. Cell Genet. Somatic cell genetics = Somatic Cell Genet Somatic Cell Genetics = Somatic Cell Genet. Somatic Cell Nuclear Transfer = Adv Exp Med Biol Somatic Cell Nuclear Transfer = Adv. Exp. Med. Biol. Somatic Cells and Milk of Small Ruminants = Eaap Public Somatic Cells and Milk of Small Ruminants = Eaap. Public. Somatic Diversification of Immune Responses = Curr Top Microbiol Somatic Diversification of Immune Responses = Curr. Top. Microbiol. Somatoform Disorders = Keio Univ Symp Life Somatoform Disorders = Keio. Univ. Symp. Life. Somatosensory and Motor Research=Somatosens Mot Res;; Somatosensory and Motor Research = Somatosens Mot Res Somatosensory and Motor Research = Somatosens. Mot. Res. Somatosensory Cortex: Roles, Interventions and Traumas = Neurol Lab Clin Res Somatosensory Cortex: Roles, Interventions and Traumas = Neurol. Lab. Clin. Res. Somatosensory & motor research = Somatosens Mot Res Somatosensory Research = Somatosens Mot Res Somatosensory Research = Somatosens. Mot. Res. Somatosensory research = Somatosens Res Somatosensory Research = Somatosens Res Somatosensory Research = Somatosens. Res. Somatostatin and Its Receptors = Ciba F Symp Somatostatin and Its Receptors = Ciba. F. Symp. Somatostatin Binding Sites in Functional Systems of The Brain = Prog Histochem Cytoc Somatostatin Binding Sites in Functional Systems of The Brain = Prog. Histochem. Cytoc. Somatotrophic Axis and The Reproductive Process in Health and Disease = Serono Symp Somatotrophic Axis and The Reproductive Process in Health and Disease = Serono. Symp. Some Aspects of Medical Physics - in Vivo and in Vitro Studies = Mg Pol J Envir Stud Some Aspects of Medical Physics - in Vivo and in Vitro Studies = Mg. Pol. J. Envir. Stud. Some Mathematical Models From Population Genetics = Lect Notes Math Some Mathematical Models From Population Genetics = Lect. Notes. Math. Somerset archaeology and natural history : the Proceedings of the Somersetshire Archaeological and Natural History Society for ... = Somerset Archaeol Net Hist Somitogenesis = Adv Exp Med Biol Somitogenesis = Adv. Exp. Med. Biol. Sonderband ... der Zeitschrift Strahlentherapie und Onkologie = Sonderb Z Strahlenther Onkol Sonderband der Zeitschrift Strahlentherapie und Onkologie = Sonderb. Z. Strahlenther. Onkol. Sonderbande zur Strahlentherapie und Onkologie = Sonderb Strahlenther Onkol Sonderbande zur Strahlentherapie und Onkologie = Sonderb. Strahlenther. Onkol. Sonderdruck aus Schriften der Sudetendeutschen Akademie der Wissenschaften und Küntse = Sonderdr. Schr. Sudet.dtsch. Akad. Wiss. Künste Forsch.beitr. Nat.wiss. Kl. Sonderschriften des Deutschen Archäologischen Instituts, Abteilung Kairo = SDAIK Sonde = Sonde Sonochemistry and Sonoluminescence = Nato Adv Sci I C-mat Sonochemistry and Sonoluminescence = Nato. Adv. Sci. I. C-mat. Sonochemistry:theory, Reactions, Syntheses, and Applications = Chem Eng Method Tech Sonochemistry:theory, Reactions, Syntheses, and Applications = Chem. Eng. Method. Tech. Soobščenija Gosudarstvennogo Ėrmitaža = SoobErmit Soobščenija Gosudarstvennogo muzeja izobrazitel’nych isskustv imeni A. S. Puškina = SoobMuzMoskva Soobseniâ Gosudarstvennogo Èrmitaza (Reports of the Hermitage Museum) = SGE Soobshcheniia Akademii nauk Gruzinskoi SSR (1963) = Soobshch Akad Nauk Gruz Ssr Soobshcheniya Akademii Nauk Gruzii = Soobshch. Akad. Nauk Gruz. SSR Soochow Journal of Mathematics = Soochow J. Math. Soochow University Lectures in Philosophy = Soochow Univ Lect Soochow University Lectures in Philosophy = Soochow Univ. Lect. Sophia = Sophia Sophisms in Medieval Logic and Grammar = Nijhoff Int Sophisms in Medieval Logic and Grammar = Nijhoff. Int. Soproden = Soproden Sorbents: Properties, Materials and Applications = Environ Res Adv Sorbents: Properties, Materials and Applications = Environ. Res. Adv. Sorghum and Millets Diseases = World Agr S Sorghum and Millets Diseases = World. Agr. S. Sorites = Sorites Sortier- Und Verteilsysteme = Vdi-buch Sortier- Und Verteilsysteme = Vdi-buch. Sorting and Distribution Systems = Vdi Bericht Sorting and Distribution Systems = Vdi. Bericht. Sort-statistics and Operations Research Transactions = Sort-stat Oper Res T Sort-statistics and Operations Research Transactions = Sort-stat. Oper. Res. T. Sos 08: In2p3 School of Statistics = Epj Web Conf Sos 08: In2p3 School of Statistics = Epj. Web. Conf. Sosiaali- Ja Terveydenhuollon Systeemisen Innovaation Johtaminen: Kahden Tapaustutkimuksen Opetuksia = Vtt Res Notes Sosiaali- Ja Terveydenhuollon Systeemisen Innovaation Johtaminen: Kahden Tapaustutkimuksen Opetuksia = Vtt. Res. Notes. Sosiaalilaaketieteellinen Aikakauslehti = Sos Laaketiet Aikak Sosiologia = Sosiologia Sotahistoriallinen aikakauskirja = Sotahist Aikak Sotilaslaaketieteellinen aikakauslehti = Sotilaslaak Aikak Sotilaslaaketieteellinen Aikakauslehti = Sotilaslaak. Aikak. Sotsiologicheskie issledovaniia = Sotsiol Issled Sotsiologicheskie Issledovaniya = Sotsiol Issled+ Sotsiologicheskie Issledovaniya = Sotsiol. Issled+.+ Sotsiologicheskie Issledovaniya = Sotsiologicheskie Issled. Soudni lekarstvi / casopis Sekce soudniho lekarstvi Cs. lekarske spolecnosti J. Ev. Purkyne = Soud Lek Soudni Lekarstvi=Soud Lek;; Soudni Lekarstvi = Soud. Lek. Soul of The German Historical School: Methodological Essays On Schmoller, Weber, and Schumpeter = Eur Herit Econ Soc S Soul of The German Historical School: Methodological Essays On Schmoller, Weber, and Schumpeter = Eur. Herit. Econ. Soc. S. Souls = Souls Sound and Signals = Signals Commun Techn Sound and Signals = Signals Commun. Techn. Sound and Vibration Damping With Polymers = Acs Sym Ser Sound and Vibration Damping With Polymers = Acs. Sym. Ser. Sound and Vibration = Sound Vib Sound and Vibration = Sound Vib. Sound Atlas of Irish English = Top Engl Linguist Sound Atlas of Irish English = Top. Engl. Linguist. Sound Business: Newspapers, Radio, and The Politics of New Media = Amer Bus Polit Sound Business: Newspapers, Radio, and The Politics of New Media = Amer. Bus. Polit. Sound Capture for Human/ Machine Interfaces: Practical Aspects of Microphone Array Signal Processing = Lect Notes Contr Inf Sound Capture for Human/ Machine Interfaces: Practical Aspects of Microphone Array Signal Processing = Lect. Notes. Contr. Inf. Sound-flow Interactions = Lect Notes Phys Sound-flow Interactions = Lect. Notes. Phys. Soundings-a Music Journal = Soundings-music J Soundings-a Music Journal = Soundings-music. J. Soundings = Soundings Sound in The Age of Mechanical Reproduction = Hagley Perspect Bus Sound in The Age of Mechanical Reproduction = Hagley. Perspect. Bus. Sound, Space, and The City: Civic Performance in Downtown Los Angeles = City 21st Century Sound, Space, and The City: Civic Performance in Downtown Los Angeles = City. 21st. Century. Sound Technology 1993 = Vdi Bericht Sound Technology 1993 = Vdi. Bericht. Sound Technology 89 = Vdi Bericht Sound Technology 89 = Vdi. Bericht. Sourcebook for Political Communication Research: Methods, Measures, and Analytical Techniques = Commun Ser Sourcebook for Political Communication Research: Methods, Measures, and Analytical Techniques = Commun. Ser. Source code for biology and medicine = Source Code Biol Med Source Code for Biology and Medicine = Source Code Biol. Med. ## Source: IBICT Brazil, http://www.ibict.br/ Source (New York, N.Y. : 1981) = Source Notes Hist Art Source-notes in The History of Art = Source-note Hist Art Source-notes in The History of Art = Source-note. Hist. Art Sources and Detection of Dark Matter and Dark Energy in The Universe = Aip Conf Proc Sources and Detection of Dark Matter and Dark Energy in The Universe = Aip. Conf. Proc. Sources and Detectors for Fiber Communications = P Soc Photo-opt Ins Sources and Detectors for Fiber Communications = P. Soc. Photo-opt. Ins. Sources and Studies in The History of Mathematics and Physical Sciences = Sourc Stud Hist Math Sources and Studies in The History of Mathematics and Physical Sciences = Sourc. Stud. Hist. Math. Sources in Semiotics Series = Sour Semiot Sources in Semiotics Series = Sour. Semiot. Sources in the History of Mathematics and Physical Sciences = Sources Hist. Math. Phys. Sci. Sources of Indoor Air Contaminants = Ann Ny Acad Sci Sources of Indoor Air Contaminants = Ann. Ny. Acad. Sci. Sources of Medical Technology: Universities and Industry = Med Inn Cr Sources of Medical Technology: Universities and Industry = Med. Inn. Cr. Sources: travaux historiques = STHist ## Source: Web of Knowledge-Journal Citation Reports (2005 JCR Social Science Edition) ## Source: Web of Sicence https://images.webofknowledge.com/WOKRS520B4.1/help/WOS/A_abrvjt.html South Aegean Active Volcanic Arc: Present Knowledge and Future Perspectives = Dev Volcano South Aegean Active Volcanic Arc: Present Knowledge and Future Perspectives = Dev. Volcano. South African Archaeological Bulletin = S Afr Archaeol Bull South African Archaeological Bulletin = S. Afr. Archaeol. Bull. South African dental journal. Suid Afrikaanse tandarts tydskrif = S Afr Dent J South African Geographical Journal = S Afr Geogr J South African Geographical Journal = S. Afr. Geogr. J. South African Historical Journal = S Afr Hist J South African Historical Journal = S. Afr. Hist. J. South African Institute of Mining and Metallurgy Symposium Series = S African Inst Min M South African Institute of Mining and Metallurgy Symposium Series = S. African Inst. Min. M. South African Journal for Research in Sport Physical Education and Recreation = S Afr J Res Sport Ph South African Journal for Research in Sport Physical Education and Recreation = S. Afr. J. Res. Sport Ph. South African Journal of Animal Science = S Afr J Anim Sci South African Journal of Animal Science = S. Afr. J. Anim. Sci. South African Journal Of Animal Science = S Afr J Anim Sci South African Journal of Animal Science-suid-afrikaanse Tydskrif Vir Veekunde = S Afr J Anim Sci South African Journal of Animal Science-suid-afrikaanse Tydskrif Vir Veekunde = S. Afr. J. Anim. Sci. South African journal of botany : official journal of the South African Association of Botanists = Suid-Afrikaanse tydskrif vir plantkunde : amptelike tydskrif van die Suid-Afrikaanse Genootskap van Plantkundiges|S. Afr. J. Bot. South African Journal of Botany = S Afr J Bot South African Journal of Botany = S. Afr. J. Bot. South African Journal of Botany-suid-afrikaanse Tydskrif Vir Plantkunde = S Afr J Bot South African Journal of Botany-suid-afrikaanse Tydskrif Vir Plantkunde = S. Afr. J. Bot. South African Journal of Business Management = S Afr J Bus Manag South African Journal of Business Management = S. Afr. J. Bus. Manag. South African Journal of Chemical Engineering = S. Afr. J. Chem. Eng. South African Journal of Chemistry = S Afr J Chem South African Journal of Chemistry = S. Afr. J. Chem. South African Journal of Chemistry-suid-afrikaanse Tydskrif Vir Chemie = S Afr J Chem-s-afr T South African Journal of Chemistry-suid-afrikaanse Tydskrif Vir Chemie = S. Afr. J. Chem-s-afr. T. South African journal of clinical science. Suid-Afrikaanse tydskrif vir kliniese wetenskap = S Afr J Clin Sci South African Journal of Communication Disorders. Die Suid-Afrikaanse Tydskrif Vir Kommunikasieafwykings=S Afr J Commun Disord;; South African Journal of Communication Disorders = S. Afr. J. Commun. Disord. South African Journal of Economic and Management Sciences, N.S.=South African J. Econ. Manage. Sci., N.S. South African Journal of Economic and Management Sciences = S Afr J Econ Manag S South African Journal of Economic and Management Sciences = S. Afr. J. Econ. Manag. S. South African Journal of Economic and Management Sciences=South African J. Econ. Manage. Sci. South African Journal of Economics = S Afr J Econ South African Journal of Economics = S. Afr. J. Econ. South African Journal of Economics=South African J. Econ. South African Journal of Education = S Afr J Educ South African Journal of Education = S. Afr. J. Educ. South African Journal of Enology and Viticulture = S Afr J Enol Vitic South African Journal of Enology and Viticulture = S. Afr. J. Enol. Vitic. South African Journal of Geology = S Afr J Geol South African Journal of Geology = S. Afr. J. Geol. South African Journal of Industrial Engineering = S Afr J Ind Eng South African Journal of Industrial Engineering = S. Afr. J. Ind. Eng. South African journal of laboratory and clinical medicine. Suid-Afrikaanse tydskrif vir laboratorium- en kliniekwerk = S Afr J Lab Clin Med South African Journal of Marine Science-suid-afrikaanse Tydskrif Vir Seewetenskap = S Afr J Marine Sci South African Journal of Marine Science-suid-afrikaanse Tydskrif Vir Seewetenskap = S. Afr. J. Marine Sci. South African Journal of Medical Sciences = S Afr J Med Sci South African Journal of Medical Sciences = S. Afr. J. Med. Sci. South African journal of obstetrics and gynaecology = S Afr J Obstet Gynaecol South African Journal of Philosophy = S Afr J Philos South African Journal of Philosophy = S. Afr. J. Philos. South African Journal of Philosophy-suid-afrikaanse Tydskrif Vir Wysbegeerte = S Afr J Philos South African Journal of Philosophy-suid-afrikaanse Tydskrif Vir Wysbegeerte = S. Afr. J. Philos. South African Journal of Physics - Suid-afrikaanse Tydskrif Vir Fisika = S Afr J Phys South African Journal of Physics - Suid-afrikaanse Tydskrif Vir Fisika = S. Afr. J. Phys. South African Journal of Psychiatry = Sajp South African Journal of Psychiatry = Sajp. South African Journal of Psychiatry = Sajp-s Afr J Psychi South African Journal of Psychiatry = Sajp-s. Afr. J. Psychi. South African Journal of Psychology = S Afr J Psychol South African Journal of Psychology = S. Afr. J. Psychol. South African Journal of Psychology-suid-afrikaanse Tydskrif Vir Sielkunde = S Afr J Psychol South African Journal of Psychology-suid-afrikaanse Tydskrif Vir Sielkunde = S. Afr. J. Psychol. South African journal of science = S Afr J Sci South African Journal of Science = S Afr J Sci South African Journal of Science = S. Afr. J. Sci. South African Journal of Surgery=S Afr J Surg;; South African Journal of Surgery = S Afr J Surg South African Journal of Surgery = S. Afr. J. Surg. South African journal of surgery. Suid-Afrikaanse tydskrif vir chirurgie = S Afr J Surg South African Journal of Wildlife Research = S Afr J Wildl Res South African Journal of Wildlife Research = S. Afr. J. Wildl. Res. South African Journal of Zoology = S Afr J Zool South African Journal of Zoology = S. Afr. J. Zool. South African Journal of Zoology-suid-afrikaanse Tydskrif Vir Dierkunde = S Afr J Zool South African Journal of Zoology-suid-afrikaanse Tydskrif Vir Dierkunde = S. Afr. J. Zool. South African journal on human rights = S Afr J Hum Rights South African Journal On Human Rights = S Afr J Hum Rights South African Journal On Human Rights = S. Afr. J. Hum. Rights South African labour bulletin = S Afr Labour Bull South African law journal = S Afr Law J South African law reports. Die Suid-Afrikaanse hofverslae. Beslissings van: Die Hooggeregshof van Suid-Afrika, Die Suidwes-Afrika Afdeling, die Hoerhof van Rhodesie. Decisions of: The Supreme Court of South Africa, the South-West Africa... = S Afr Law Rep South African Mechanical Engineer = S Afr Mech Eng South African Mechanical Engineer = S. Afr. Mech. Eng. South African Medical Journal=S Afr Med J;; South African Medical Journal = S Afr Med J South African Medical Journal = S. Afr. Med. J. South African nursing journal. Suid-Afrikaanse verplegingstydskrif = S Afr Nursing J South African sociological review = S Afr Sociol Rev South African Statistical Journal = S Afr Stat J South African Statistical Journal = S. Afr. Stat. J. South African Statistical Journal = South African Statist. J. South African Sugar Technologists' Association - Proceedings of The Seventieth Annual Congress = P S Afr Sug South African Sugar Technologists' Association - Proceedings of The Seventieth Annual Congress = P. S. Afr. Sug. South African Sugar Technologists Association, Proceedings of The Sixty-seventh Annual Congress = P S Afr Sug South African Sugar Technologists Association, Proceedings of The Sixty-seventh Annual Congress = P. S. Afr. Sug. South African Sugar Technologists Association - Proceedings of The Sixty-sixth Annual Congress = P S Afr Sug South African Sugar Technologists Association - Proceedings of The Sixty-sixth Annual Congress = P. S. Afr. Sug. South Africa's Environmental History Cases & Comparisons = Ecol Hist South Africa's Environmental History Cases & Comparisons = Ecol. Hist. South Africa Since 1994: Lessons and Prospects = Afr Cent Publ Ser South Africa Since 1994: Lessons and Prospects = Afr. Cent. Publ. Ser. South American Indian studies = South Am Indian Stud Southampton medical journal = Southampt Med J Southampton Studies in International Policy = Southamp Stud Int Po Southampton Studies in International Policy = Southamp. Stud. Int. Po. South Asia bulletin = South Asia Bull South Asia-journal of South Asian Studies = S Asia South Asia-journal of South Asian Studies = S. Asia. South Asian Archaeology 1993, Vols 1 and 2 = Ann Acad Sc South Asian Archaeology 1993, Vols 1 and 2 = Ann. Acad. Sc. South Asian Diaspora: Transnational Networks and Changing Identities = Routl Cont S Asia Se South Asian Diaspora: Transnational Networks and Changing Identities = Routl. Cont. S. Asia. Se. South Asian Religions On Display = Routl S Asian Relig South Asian Religions On Display = Routl. S. Asian Relig. South Asian Review = S Asian Rev South Asian Review = S. Asian Rev. South Asian review = South Asian Rev South Asian Studies - Heidelberg University = S Asian Stud South Asian Studies - Heidelberg University = S. Asian Stud. South Asia research = South Asia Res South Asia's Cold War: Nuclear Weapons and Conflict in Comparative Perspective = Asian Secur Stud South Asia's Cold War: Nuclear Weapons and Conflict in Comparative Perspective = Asian. Secur. Stud. South Asia Series Occasional Papers = S Asia S Oc South Asia Series Occasional Papers = S. Asia S. Oc. South Atlantic Bulletin = S Atl Bull South Atlantic Bulletin = S. Atl. Bull. South Atlantic Quarterly = S Atl Q South Atlantic Quarterly = S. Atl. Q. South Atlantic Quarterly = S Atl Quart South Atlantic Quarterly = S. Atl. Quart. South Atlantic Review = S Atl Rev South Atlantic Review = S. Atl. Rev. South Carolina dental journal = S C Dent J South Carolina Dental Journal = S. C. Dent. J. South Carolina historical magazine = S C Hist Mag South Carolina history illustrated = S C Hist Illus South Carolina law review = S C Law Rev South Carolina nurse (Columbia, S.C. : 1994) = S C Nurse South Carolina Nurse = S. C. Nurse South Carolina nursing = S C Nurs South Carolina Nursing = S. C. Nurs. South Caspian to Central Iran Basins = Geol Soc Spec Publ South Caspian to Central Iran Basins = Geol. Soc. Spec. Publ. South Central Review = S Cent Rev South Central Review = S. Cent. Rev. South China Sea: Paleoceanography and Sedimentology = Dev Paleoenviron Res South China Sea: Paleoceanography and Sedimentology = Dev. Paleoenviron. Res. South Dakota codified laws : comprising statutes of a general and permanent nature ... South Dakota = S D Codif Laws S D South Dakota Farm & Home Research = S Dak Farm Home Res South Dakota Farm & Home Research = S. Dak. Farm Home Res. South Dakota farm & home research = S D Farm Home Res South Dakota historical collections = S D Hist Collect South Dakota Journal of Medicine = S Dak J Med South Dakota Journal of Medicine = S. Dak. J. Med. South Dakota journal of medicine = S D J Med South Dakota Journal of Medicine=S D J Med;; South Dakota Journal of Medicine = S. D. J. Med. South Dakota law review = S D Law Rev South Dakota Medicine = S. D. Med. South Dakota medicine : the journal of the South Dakota State Medical Association = S D Med South Dakota Nurse = S. D. Nurse South Dakota Review = S Dak Rev South Dakota Review = S. Dak. Rev. Southeast Asian Bulletin of Mathematics = Southeast Asian Bull. Math. Southeast Asian Development = Routl Perspect Dev Southeast Asian Development = Routl. Perspect. Dev. Southeast Asian International Advances in Micro/nanotechnology = Proc Spie Southeast Asian International Advances in Micro/nanotechnology = Proc. Spie. Southeast Asian International Advances in Micro/nanotechnology = P Soc Photo-opt Ins Southeast Asian International Advances in Micro/nanotechnology = P. Soc. Photo-opt. Ins. Southeast Asian journal of social science = Southeast Asian J Soc Sci Southeast Asian journal of surgery = Southeast Asian J Surg Southeast Asian Journal of Tropical Medicine and Public Health = Se Asian J Trop Med Southeast Asian Journal of Tropical Medicine and Public Health = Se. Asian J. Trop. Med. Southeast Asian Journal of Tropical Medicine and Public Health=Southeast Asian J Trop Med Public Health;; Southeast Asian Journal of Tropical Medicine and Public Health = Southeast Asian J. Trop. Med. Public Health South East Asia Research = South East Asia Res South East Asia Research = South East Asia Res. Southeast Conference Association Asian Studies Annals = Se Conf As Southeast Conference Association Asian Studies Annals = Se. Conf. As. Southeast Conference Association for Asian Studies Annals, Vol 10 = Se Conf As Southeast Conference Association for Asian Studies Annals, Vol 10 = Se. Conf. As. Southeast Conference Association for Asian Studies Annals, Vol 11 = Se Conf As Southeast Conference Association for Asian Studies Annals, Vol 11 = Se. Conf. As. Southeast Conference Association for Asian Studies Annals, Vol 12 = Se Conf As Southeast Conference Association for Asian Studies Annals, Vol 12 = Se. Conf. As. Southeast Conference, Association for Asian Studies, Annals, Vol 13 = Se Conf As Southeast Conference, Association for Asian Studies, Annals, Vol 13 = Se. Conf. As. Southeast Conference Association for Asian Studies, Annals, Vol 14 = Se Conf As Southeast Conference Association for Asian Studies, Annals, Vol 14 = Se. Conf. As. Southeast Conference Association for Asian Studies: Annals, Vol 15 = Se Conf As Southeast Conference Association for Asian Studies: Annals, Vol 15 = Se. Conf. As. Southeastern Europe. L'Europe du Sud-Est = Southeast Eur Southeastern Europe = Southeast Eur Southeastern Europe = Southeast. Eur. Southeastern geographer = Southeast Geogr Southeastern Geographer = Southeast. Geogr. Southeastern Geology = Southeast. Geol. Southeastern Naturalist = Southeast Nat Southeastern Naturalist = Southeast. Nat. South eastern reporter. Second series = South East Report Second Ser Southeastern Symposium On System Theory = Se Sym Sys Thry Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Southeast European and Black Sea Studies = Se Eur Black Sea Stu Southeast European and Black Sea Studies = Se. Eur. Black Sea Stu. Southeast Europe series = Southeast Eur Ser Southeast Review of Asian Studies = Se Rev Asian Stud Southeast Review of Asian Studies = Se. Rev. Asian Stud. Southeast Review of Asian Studies, Vol Xix - 1997 = Se Rev Asian Stud Southeast Review of Asian Studies, Vol Xix - 1997 = Se. Rev. Asian Stud. Southeast Review of Asian Studies, Vol Xvi, 1994 = Se Rev Asian Stud Southeast Review of Asian Studies, Vol Xvi, 1994 = Se. Rev. Asian Stud. Southeast Review of Asian Studies, Vol Xvii, 1995 = Se Rev Asian Stud Southeast Review of Asian Studies, Vol Xvii, 1995 = Se. Rev. Asian Stud. Southeast Review of Asian Studies, Vol Xxi, 1999 = Se Rev Asian Stud Southeast Review of Asian Studies, Vol Xxi, 1999 = Se. Rev. Asian Stud. Southerly = Southerly Southern Africa After Apartheid = Sem P Scand Southern Africa After Apartheid = Sem. P. Scand. Southern Africa - Australia Mineral Sector Synergies Symposium, Proceedings = Australas I Min Met Southern Africa - Australia Mineral Sector Synergies Symposium, Proceedings = Australas. I. Min. Met. Southern Africa = Making Contemp World Southern Africa = Making. Contemp. World. Southern African Humanities = South Afr Humanit Southern African Humanities = South. Afr. Humanit. Southern African Journal of Hiv Medicine = S Afr J Hiv Med Southern African Journal of Hiv Medicine = S. Afr. J. Hiv Med. Southern African Journal of Hiv Medicine = South Afr J Hiv Med Southern African Journal of Hiv Medicine = South. Afr. J. Hiv Med. Southern African Linguistics and Applied Language Studies = So Afr Linguist Appl Southern African Linguistics and Applied Language Studies = So. Afr. Linguist. Appl. Southern African Linguistics and Applied Language Studies = South Afr Linguist A Southern African Linguistics and Applied Language Studies = South. Afr. Linguist. A. Southern Africa political & economic monthly = South Afr Polit Econ Mon Southern Anthropological Society Proceedings = South Anthr Southern Anthropological Society Proceedings = South. Anthr. Southern Biomedical Engineering Conference. Proceedings = So Biomm Engn Conf P Southern Biomedical Engineering Conference. Proceedings = So. Biomm. Engn. Conf. P. Southern California interdisciplinary law journal = South Calif Interdiscip Law J Southern California law review = South Calif Law Rev Southern California Law Review = South Calif Law Rev Southern California Law Review = South. Calif. Law Rev. Southern California Law Review = Southern Calif Law R Southern California Law Review = Southern Calif. Law R. Southern California quarterly = South Calif Q Southern California review of law and women's studies = South Calif Rev Law Womens Stud Southern Cultures = South Cult Southern Cultures = South. Cult. Southern economic journal = South Econ J Southern Economic Journal = South Econ J Southern Economic Journal = South. Econ. J. Southern Economic Journal=Southern Econ. J. Southern Economic Journal = Southern Econ J Southern Economic Journal = Southern Econ. J. Southern exposure = South Expos Southern Extension Water Training Workshop : Actions for Working Together = Srdc Publ Southern Extension Water Training Workshop : Actions for Working Together = Srdc. Publ. Southern Folklore Quarterly = Southern Folklore Q Southern Folklore Quarterly = Southern Folklore Q. Southern folklore quarterly = South Folk Q Southern Forests = South Forests Southern Forests = South. Forests Southern Hemisphere Forestry Journal = South Hemisph For J Southern Hemisphere Forestry Journal = South. Hemisph. For. J. Southern Hemisphere Upper Atmosphere and Ionosphere = Adv Space Res Southern Hemisphere Upper Atmosphere and Ionosphere = Adv. Space. Res. Southern history = South Hist Southern hospitals = South Hosp Southern Hospitals = South. Hosp. Southern Humanities Review = Southern Human Rev Southern Humanities Review = Southern Human. Rev. Southern Illinois University At Carbondale Center for Archaeological Investigations, Occasional Papers = S Il U Carb Southern Illinois University At Carbondale Center for Archaeological Investigations, Occasional Papers = S. Il. U. Carb. Southern Illinois University law journal. Southern Illinois University at Carbondale. School of Law = South Ill Univ Law J Southern Indian studies = South Indian Stud Southern Journal of Agricultural Economics=Southern J. Agr. Econ. Southern Journal of Applied Forestry = South J Appl For Southern Journal of Applied Forestry = South. J. Appl. For. Southern journal of optometry = South J Optom Southern Journal of Philosophy = Southern J Philos Southern Journal of Philosophy = Southern J. Philos. Southern Literary Journal = Southern Lit J Southern Literary Journal = Southern Lit. J. Southern Medical Journal = Southern Med J Southern Medical Journal = Southern Med. J. Southern medical journal = South Med J Southern Medical Journal=South Med J;; Southern Medical Journal = South Med J Southern Medical Journal = South. Med. J. Southern medicine and surgery = South Med Surg Southern medicine = South Med Southern Medicine = South. Med. Southern Quarterly=Southern Quart. Southern Quarterly = Southern Quart Southern Quarterly = Southern Quart. Southern reporter. Second series. Cases argued and determined in the courts of Alabama, Florida, Louisiana, Mississippi = South Report Second Ser Cases Argued Determ Courts Ala Fla La Miss Southern Review-adelaide = Southern Rev-adelaid Southern Review-adelaide = Southern Rev-adelaid. Southern Review-baton Rouge = Southern Rev-baton R Southern Review-baton Rouge = Southern Rev-baton. R. Southern studies = South Stud Southern University law review. Southern University and A & M College. School of Law = South Univ Law Rev South European Society and Politics = S Eur Soc Polit South European Society and Politics = S. Eur. Soc. Polit. South European society & politics = South Eur Soc Polit South Florida Studies in The History of Judaism = S Fl St His South Florida Studies in The History of Judaism = S. Fl. St. His. South in International Economic Regimes: Whose Globalization? = Int Polit Econ Ser South in International Economic Regimes: Whose Globalization? = Int. Polit. Econ. Ser. South Korea: Challenging Globalisation and The Post-crisis Reforms = Chandos Asian Stud South Korea: Challenging Globalisation and The Post-crisis Reforms = Chandos. Asian. Stud. South Korean Engagement Policies and North Korea: Identities, Norms and The Sunshine Policy = Polit Asia South Korean Engagement Policies and North Korea: Identities, Norms and The Sunshine Policy = Polit. Asia. South Korean Strategic Thought Toward Asia = Strateg Thought Ne A South Korean Strategic Thought Toward Asia = Strateg. Thought Ne. A. South Pacific bulletin = South Pac Bull South Pacific Indigenous Nuts = Aciar Proc South Pacific Indigenous Nuts = Aciar. Proc. South Texas law journal = South Tex Law J South Texas law review = South Tex Law Rev South to The Future: An American Region in The Twenty-first Century = Mercer U L South to The Future: An American Region in The Twenty-first Century = Mercer. U. L. Southwest Academy of Management - Proceedings = Sw Acad Manag P Southwest Academy of Management - Proceedings = Sw. Acad. Manag. P. Southwest Academy of Management, Thirty-seventh Annual Meeting, Proceedings = Sw Acad Manag P Southwest Academy of Management, Thirty-seventh Annual Meeting, Proceedings = Sw. Acad. Manag. P. Southwestern American Literature = Southwest Am Lit Southwestern American Literature = Southwest. Am. Lit. Southwestern Art = Southwest Art Southwestern Art = Southwest. Art Southwestern Entomologist = Southwest Entomol Southwestern Entomologist = Southwest. Entomol. Southwestern Historical Quarterly = Southwest Hist Quart Southwestern Historical Quarterly = Southwest. Hist. Quart. Southwestern Journal of Anthropology = Southwest J Anthrop Southwestern Journal of Anthropology = Southwest. J. Anthrop. Southwestern journal of anthropology = Southwest J Anthropol Southwestern Journal of Philosophy = Southwest J Philos Southwestern Journal of Philosophy = Southwest. J. Philos. Southwestern law journal = Southwest Law J Southwestern medicine = Southwest Med Southwestern Medicine = Southwest. Med. Southwestern Mosaic : Proceeding of The Southwestern Region New Perspectives University Colloquium = Usda Rocky Southwestern Mosaic : Proceeding of The Southwestern Region New Perspectives University Colloquium = Usda. Rocky. Southwestern Naturalist = Southwest Nat Southwestern Naturalist = Southwest. Nat. Southwestern Rare and Endangered Plants: Proceedings of The Third Conference = Us For Serv Rmrs-p Southwestern Rare and Endangered Plants: Proceedings of The Third Conference = Us. For. Serv. Rmrs-p. Southwestern Social Science Quarterly = Southwest Soc Sci Q Southwestern Social Science Quarterly = Southwest. Soc. Sci. Q. Southwestern Studies = Southwest Stud Utep Southwestern Studies = Southwest. Stud. Utep. Southwestern University law review = Southwest Univ Law Rev Southwestern Veterinarian = Southwest Vet Southwestern Veterinarian = Southwest. Vet. Southwest Journal of Pure and Applied Mathematics = Southwest J. Pure Appl. Math. Southwest Rare and Endangered Plants: Proceedings of The Second Conference = Usda Rocky Southwest Rare and Endangered Plants: Proceedings of The Second Conference = Usda. Rocky. Southwest review = Southwest Rev Sovereignty Games: Instrumentalizing State Sovereignty in Europe and Beyond = Palgr Stud Gov Sovereignty Games: Instrumentalizing State Sovereignty in Europe and Beyond = Palgr. Stud. Gov. Sovereignty Games: Instrumentalizing State Sovereignty in Europe and Beyond = Palgr Stud Gov Secur Sovereignty Games: Instrumentalizing State Sovereignty in Europe and Beyond = Palgr. Stud. Gov. Secur. Sovetskaia arkhitektura (Kommunisticheskaia akademiia (Soviet Union). Sektsiia sotsrasselenia i zhilishchno-bytogo stroitel'stvo) = Sov Arkh Sovetskaia etnografiia / Akademiia nauk SSSR i Narodnyi komissariat prosveshcheniia RSFSR = Sov Etnogr Sovetskaia meditsina = Sov Med Sovetskaia Meditsina = Sov. Med. Sovetskaja archeologija = SovA Sovetskaja arheologia = SA Sovetskaya Meditsina = Sov Meditisina Sovetskaya Meditsina = Sov. Meditisina. Sovetskii vrachebnyi sbornik = Sov Varchebnyii Sb Sovetskoe gosudarstvo i pravo = Sov Gos Pravo Sovetskoe zdravookhranenie Kirgizii = Sov Zdravookhr Kirg Sovetskoe Zdravookhranenie Kirgizii = Sov. Zdravookhr. Kirg. Sovetskoe zdravookhranenie / Ministerstvo zdravookhraneniia SSSR = Sov Zdravookhr Sovetskoe Zdravookhranenie = Sov. Zdravookhr. Soviet Agriculture = Sp S Kennan Soviet Agriculture = Sp. S. Kennan. Soviet Air Force Theory, 1918-1945 = Sov Russ Mil Theory Soviet Air Force Theory, 1918-1945 = Sov. Russ. Mil. Theory. Soviet and Eastern European Foreign Trade = Sov E Eur For Trade Soviet and Eastern European Foreign Trade = Sov. E. Eur. For. Trade Soviet and Eastern European Foreign Trade=Soviet E. Europ. Foreign Trade Soviet Anthropology and Archeology = Sov Anthropol Arch Soviet Anthropology and Archeology = Sov. Anthropol. Arch. Soviet Anthropology And Archeology = Sov Anthropol Archeol Soviet Applied Mechanics = Sov Appl Mech+ Soviet Applied Mechanics = Sov. Appl. Mech+.+ Soviet Astronomy Aj Ussr = Sov Astron Soviet Astronomy Aj Ussr = Sov. Astron. Soviet Astronomy Letters = Sov Astron Lett+ Soviet Astronomy Letters = Sov. Astron. Lett+.+ Soviet Atomic Energy = Sov Atom Energy+ Soviet Atomic Energy = Sov. Atom. Energy+.+ Soviet Atomic Energy-ussr = Sov At Energy-ussr Soviet Atomic Energy-ussr = Sov. At. Energy-ussr Soviet Dream World of Retail Trade and Consumption in The 1930s = Consum Public Life Soviet Dream World of Retail Trade and Consumption in The 1930s = Consum. Public. Life. Soviet Economic Reforms : Implementation Under Way = Nato Ec Inf Soviet Economic Reforms : Implementation Under Way = Nato. Ec. Inf. Soviet economy (Silver Spring, Md.) = Sov Econ Soviet Economy = Sov Econ Soviet Economy = Sov. Econ. Soviet Economy=Soviet Economy Soviet education = Sov Educ Soviet Education = Sov Educ Soviet Education = Sov. Educ. Soviet Electrochemistry = Sov Electrochem+ Soviet Electrochemistry = Sov. Electrochem+.+ Soviet Engineering Research = Sov Eng Res Soviet Engineering Research = Sov. Eng. Res. Soviet Film = Sov Film Soviet Film = Sov. Film Soviet genetics = Sov Genet Soviet Genetics = Sov. Genet. Soviet Geography Review and Translation = Sov Geogr Soviet Geography Review and Translation = Sov. Geogr. Soviet geography = Sov Geogr Soviet Geography = Sov Geogr Soviet Geography = Sov. Geogr. Soviet Jewish affairs / IJA, Institute of Jewish Affairs, in association with the World Jewish Congress = Sov Jew Aff Soviet journal of bioorganic chemistry = Sov J Bioorg Chem Soviet Journal of Computer and Systems Sciences = Sov J Comput Syst S+ Soviet Journal of Computer and Systems Sciences = Sov. J. Comput. Syst. S+.+ Soviet Journal of Developmental Biology = Sov. J. Dev. Biol. Soviet Journal of Ecology = Sov J Ecol+ Soviet Journal of Ecology = Sov. J. Ecol. Soviet Journal of Ecology = Sov. J. Ecol+.+ Soviet Journal of Glass Physics and Chemistry = Sov J Glass Phys Ch+ Soviet Journal of Glass Physics and Chemistry = Sov. J. Glass Phys. Ch+.+ Soviet Journal of Nondestructive Testing-ussr = Sov J Nondestr Test+ Soviet Journal of Nondestructive Testing-ussr = Sov. J. Nondestr. Test+.+ Soviet Journal of Nuclear Physics-ussr = Sov J Nucl Phys+ Soviet Journal of Nuclear Physics-ussr = Sov. J. Nucl. Phys+.+ Soviet Journal of Numerical Analysis and Mathematical Modelling = Sov J Numer Anal Mat Soviet Journal of Numerical Analysis and Mathematical Modelling = Sov. J. Numer. Anal. Mat. Soviet Journal of Optical Technology = Sov J Opt Technol+ Soviet Journal of Optical Technology = Sov. J. Opt. Technol+.+ Soviet Journal of Quantum Electronics = Sov. J. Quantum Electron. Soviet Journal of Remote Sensing = Sov J Remot Sens+ Soviet Journal of Remote Sensing = Sov. J. Remot. Sens+.+ Soviet law and government = Sov Law Gov Soviet Law and Government = Sov Law Gov Soviet Law and Government = Sov. Law Gov. Soviet Literature = Sov Literature Soviet Literature = Sov. Literature Soviet Materials Science = Sov Mater Sci+ Soviet Materials Science = Sov. Mater. Sci+.+ Soviet Microelectronics = Sov Microelectron+ Soviet Microelectronics = Sov. Microelectron+.+ Soviet Mining Science Ussr = Sov Min Sci+ Soviet Mining Science Ussr = Sov. Min. Sci+.+ Soviet Neurology and Psychiatry = Sov Neurol Psychiat Soviet Neurology and Psychiatry = Sov. Neurol. Psychiat. Soviet Neurology and Psychiatry-ussr = Sov Neur Psychiatry Soviet Neurology and Psychiatry-ussr = Sov. Neur. Psychiatry. Soviet Physics Acoustics-ussr = Sov Phys Acoust+ Soviet Physics Acoustics-ussr = Sov. Phys. Acoust+.+ Soviet Physics Crystallography, Ussr = Sov Phys Crystallogr Soviet Physics Crystallography, Ussr = Sov. Phys. Crystallogr. Soviet Physics Jetp-ussr = Sov Phys Jetp-ussr Soviet Physics Jetp-ussr = Sov. Phys. Jetp-ussr Soviet Physics Semiconductors-ussr = Sov Phys Semicond+ Soviet Physics Semiconductors-ussr = Sov. Phys. Semicond+.+ Soviet Physics-solid State = Sov Phys-sol State Soviet Physics-solid State = Sov. Phys-sol. State Soviet Physics Solid State,ussr = Fiz Tverd Tela+ Soviet Physics Solid State,ussr = Fiz. Tverd. Tela+.+ Soviet Physics-technical Physics = Sov Phys-tech Phys Soviet Physics-technical Physics = Sov. Phys-tech. Phys. Soviet Physics Technical Physics-ussr = Sov Phys Tech Phys-u Soviet Physics Technical Physics-ussr = Sov. Phys. Tech. Phys-u. Soviet Physics Uspekhi-ussr = Sov Phys Uspekhi Soviet Physics Uspekhi-ussr = Sov. Phys. Uspekhi. Soviet Plant Physiology = Sov Plant Physiol+ Soviet Plant Physiology = Sov. Plant Physiol+.+ Soviet Powder Metallurgy and Metal Ceramics = Sov Powder Metall+ Soviet Powder Metallurgy and Metal Ceramics = Sov. Powder Metall+.+ Soviet Psychology and Psychiatry = Sov Psychol Psychiat Soviet Psychology and Psychiatry = Sov. Psychol. Psychiat. Soviet Psychology = Sov Psychol Soviet Psychology = Sov. Psychol. Soviet Psychology-ussr = Sov Psychol-ussr Soviet Psychology-ussr = Sov. Psychol-ussr. Soviet Radiochemistry = Sov Radiochem+ Soviet Radiochemistry = Sov. Radiochem+.+ Soviet Russian Military Theory and Practice = Sov Russ Mil Theory Soviet Russian Military Theory and Practice = Sov. Russ. Mil. Theory Soviet Russian Study of War = Sov Russ Study War Soviet Russian Study of War = Sov. Russ. Study War Soviet Science Review = Sov Sci Rev Soviet Science Review = Sov. Sci. Rev. Soviet Sobranie of Laws = Res Series Soviet Sobranie of Laws = Res. Series. Soviet Sociology = Sov Soc Soviet Sociology = Sov Sociol Soviet Sociology = Sov. Sociol. Soviet Soil Science = Sov Soil Sci+ Soviet Soil Science = Sov. Soil Sci+.+ Soviet Soil Science-ussr = Sov Soil Sci-ussr Soviet Soil Science-ussr = Sov. Soil Sci-ussr. Soviet State and Society Under Nikita Khrushchev = Basees-rout Ser Russ Soviet State and Society Under Nikita Khrushchev = Basees-rout. Ser. Russ. Soviet studies in history = Sov Stud Hist Soviet Studies in History = Sov Stud Hist Soviet Studies in History = Sov. Stud. Hist. Soviet Studies in Literature = Sov Stud Lit Soviet Studies in Literature = Sov. Stud. Lit. Soviet studies in philosophy = Sov Stud Philos Soviet Studies in Philosophy = Sov Stud Philos Soviet Studies in Philosophy = Sov. Stud. Philos. Soviet Studies=Soviet Stud. Soviet studies = Sov Stud Soviet Studies = Sov Stud Soviet Studies = Sov. Stud. Soviet Union. Union sovietique = Sov Union Soviet-vietnam Relations and The Role of China, 1949-64: Changing Alliances = Cold War Hist-routl Soviet-vietnam Relations and The Role of China, 1949-64: Changing Alliances = Cold. War. Hist-routl. Sovremennye problemy onkologii = Sovrem Probl Onkol Sovremennye problemy tuberkuleza = Sovrem Probl Tuberk Sowjetischen Geheimdienste in Der Sbz/ddr Von 1945 Bis 1953 = Texte Mater Zeitgesc Sowjetischen Geheimdienste in Der Sbz/ddr Von 1945 Bis 1953 = Texte. Mater. Zeitgesc. Sowjetwissenschaft Gesellschafts Wissenschaftliche Beitrage = Sowjetwiss Gesellsch Sowjetwissenschaft Gesellschafts Wissenschaftliche Beitrage = Sowjetwiss. Gesellsch. Sowjetwissenschaft; Naturwissenschaftliche Beitrage = Sowjetwiss Naturwiss Beitr Soybean and Wheat Crops: Growth, Fertilization, and Yield = Agr Issues Policies Soybean and Wheat Crops: Growth, Fertilization, and Yield = Agr. Issues. Policies. Soybean Digest = Soybean Dig Soybean Digest = Soybean Dig. Soziale Welt-Zeitschrift fr sozialwissenschaftliche Forschung Und Praxis = Sozial Welt-Zeit. Sozialwiss. Forsch. Praxis Soziale Welt-zeitschrift Fur Sozialwissenschaftliche Forschung Und Praxis = Soz Welt Soziale Welt-zeitschrift Fur Sozialwissenschaftliche Forschung Und Praxis = Soz. Welt. Sozialgeschichte der Medizin = Sozialgesch Med sozialistische Forstwirtschaft, Die = Sozial. Forstwirtsch. Sozialmedizinische und padagogische Jugendkunde = Sozialmed Padagog Jugendkd Sozialmedizinische und Padagogische Jugendkunde = Sozialmed. Padagog. Jugendkd. Sozial- und Praventivmedizin = Soz Praventivmed Sozial- und Praventivmedizin = Soz. Praventivmed. Sozial-und Praventivmedizin = Soz Praventiv Med Sozial-und Praventivmedizin = Soz. Praventiv. Med. Sozial- Und Praventivmedizin=Soz Praventivmed;; Sozomena-studies in The Recovery of Ancient Texts = Sozomena-stud Recov Sozomena-studies in The Recovery of Ancient Texts = Sozomena-stud. Recov. Space Access and Utilization Beyond 2000 = Sci Tech Space Access and Utilization Beyond 2000 = Sci. Tech. Space Activities and Cooperation Contributing to All Pacific Basin Countries = Adv Astronaut Sci Space Activities and Cooperation Contributing to All Pacific Basin Countries = Adv. Astronaut. Sci. Space Aeronautics = Space Aeronaut Space Aeronautics = Space Aeronaut. Space and Culture = Space Cult Space and Culture = Space Cult. Space and Defense Policy = Space Power Polit Space and Defense Policy = Space Power. Polit. Space and Muslim Urban Life: At The Limits of The Labyrinth of Fez = Cult Civiliz Mid E Space and Muslim Urban Life: At The Limits of The Labyrinth of Fez = Cult. Civiliz. Mid. E. Space and Place of Death = Archeol Pap Am Anthr Space and Place of Death = Archeol. Pap. Am. Anthr. Space and Place of Death = Arch P Amer Ant Asso Space and Place of Death = Arch. P. Amer. Ant. Asso. Space and The Global Village: Tele-services for The 21st Century = Spac Stud Space and The Global Village: Tele-services for The 21st Century = Spac. Stud. Space Astronomical Telescopes and Instruments Ii = P Soc Photo-opt Ins Space Astronomical Telescopes and Instruments Ii = P. Soc. Photo-opt. Ins. Space Astronomical Telescopes and Instruments = P Soc Photo-opt Ins Space Astronomical Telescopes and Instruments = P. Soc. Photo-opt. Ins. Space Astronomy = Adv Space Res Space Astronomy = Adv. Space Res. Space: A Vital Stimulus to Our National Well-being - 31st Goddard Memorial Symposium/world Space Programs and Fiscal Reality - 30th Goddard Memorial Symposium = Sci Tech Space: A Vital Stimulus to Our National Well-being - 31st Goddard Memorial Symposium/world Space Programs and Fiscal Reality - 30th Goddard Memorial Symposium = Sci. Tech. Space Based Astronomy: Iso, Agn, Radiopulsars and The Sun = Adv Space Res Space Based Astronomy: Iso, Agn, Radiopulsars and The Sun = Adv. Space Res. Space Based Astronomy: Iso, Agn, Radiopulsars and The Sun = Adv Space Res-series Space Based Astronomy: Iso, Agn, Radiopulsars and The Sun = Adv. Space Res-series. Space Biology and Medicine, Vol 5: U.s. and Russian Cooperation in Space Biology and Medicine = Libr Flight Space Biology and Medicine, Vol 5: U.s. and Russian Cooperation in Space Biology and Medicine = Libr. Flight. Spaceborne Interferometry Ii = P Soc Photo-opt Ins Spaceborne Interferometry Ii = P. Soc. Photo-opt. Ins. Spaceborne Interferometry = P Soc Photo-opt Ins Spaceborne Interferometry = P. Soc. Photo-opt. Ins. Spaceborne Sensors Iii = P Soc Photo-opt Ins Spaceborne Sensors Iii = P. Soc. Photo-opt. Ins. Spaceborne Sensors Ii = Proc Spie Spaceborne Sensors Ii = Proc. Spie. Spaceborne Sensors Ii = P Soc Photo-opt Ins Spaceborne Sensors Ii = P. Soc. Photo-opt. Ins. Spaceborne Sensors = P Soc Photo-opt Ins Spaceborne Sensors = P. Soc. Photo-opt. Ins. Space Charge Dominated Beam Physics for Heavy Ion Fusion = Aip Conf Proc Space Charge Dominated Beam Physics for Heavy Ion Fusion = Aip. Conf. Proc. Space Charge Dominated Beams and Applications of High Brightness Beams = Aip Conf Proc Space Charge Dominated Beams and Applications of High Brightness Beams = Aip. Conf. Proc. Space communications = Space Commun Space Communications = Space Commun Space Communications = Space Commun. Space Cooperation Into The 21st Century = Adv Astronaut Sci Space Cooperation Into The 21st Century = Adv. Astronaut. Sci. Spacecraft Platforms and Infrastructure = P Soc Photo-opt Ins Spacecraft Platforms and Infrastructure = P. Soc. Photo-opt. Ins. Space Debris 1999 = Sci Tech Space Debris 1999 = Sci. Tech. Space Debris 2000 = Sci Tech Space Debris 2000 = Sci. Tech. Space Debris 2001 = Sci Tech Space Debris 2001 = Sci. Tech. Space Debris = Adv Space Res Space Debris = Adv. Space Res. Space Debris = Adv Space Res-series Space Debris = Adv. Space Res-series. Space Debris and Space Traffic Management Symposium 2003 = Sci Tech Space Debris and Space Traffic Management Symposium 2003 = Sci. Tech. Space Debris and Space Traffic Management Symposium 2004 = Sci Tech Space Debris and Space Traffic Management Symposium 2004 = Sci. Tech. Space Debris and Space Traffic Management Symposium 2005 = Sci Tech Space Debris and Space Traffic Management Symposium 2005 = Sci. Tech. Space Debris Detection and Mitigation = P Soc Photo-opt Ins Space Debris Detection and Mitigation = P. Soc. Photo-opt. Ins. Space Development and Cooperation Among All Pacific Basin Countries = Adv Astronaut Sci Space Development and Cooperation Among All Pacific Basin Countries = Adv. Astronaut. Sci. Space Distribution of Quasars = Astr Soc P Space Distribution of Quasars = Astr. Soc. P. Spaced Out: Policy, Difference and The Challenge of Inclusive Education = Incl Educ Cross Cult Spaced Out: Policy, Difference and The Challenge of Inclusive Education = Incl. Educ. Cross. Cult. Space Electrochemical Research and Technology ( Sert ) 1989 = Nasa Conf P Space Electrochemical Research and Technology ( Sert ) 1989 = Nasa. Conf. P. Space Environmental, Legal, and Safety Issues = P Soc Photo-opt Ins Space Environmental, Legal, and Safety Issues = P. Soc. Photo-opt. Ins. Space Environment and Its Effects On Space Systems = Aiaa Educ Ser Space Environment and Its Effects On Space Systems = Aiaa. Educ. Ser. Space Exploration of The Outer Space Solar System and Cometary Nuclei = Adv Space Res Space Exploration of The Outer Space Solar System and Cometary Nuclei = Adv. Space Res. Space Exploration of The Outer Space Solar System and Cometary Nuclei = Adv Space Res-series Space Exploration of The Outer Space Solar System and Cometary Nuclei = Adv. Space Res-series. Space Exploration Research = Space Sci Explor Pol Space Exploration Research = Space Sci. Explor. Pol. Space Exploration Technologies = Proc Spie Space Exploration Technologies = Proc. Spie. Space Exploration Technologies = P Soc Photo-opt Ins Space Exploration Technologies = P. Soc. Photo-opt. Ins. Spaceflight Dynamics 1993, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Dynamics 1993, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Dynamics 1998, Vol 100, Part 1 and 2 = Adv Astronaut Sci Spaceflight Dynamics 1998, Vol 100, Part 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1991, Pts 1 and B = Adv Astronaut Sci Spaceflight Mechanics 1991, Pts 1 and B = Adv. Astronaut. Sci. Spaceflight Mechanics 1992, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 1992, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1993 = Adv Astronaut Sci Spaceflight Mechanics 1993 = Adv. Astronaut. Sci. Spaceflight Mechanics 1994, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 1994, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1995 = Adv Astronaut Sci Spaceflight Mechanics 1995 = Adv. Astronaut. Sci. Spaceflight Mechanics 1996, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 1996, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1997, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 1997, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1998, Vol 99, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 1998, Vol 99, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 1999, Vol 102, Pts I and Ii = Adv Astronaut Sci Spaceflight Mechanics 1999, Vol 102, Pts I and Ii = Adv. Astronaut. Sci. Spaceflight Mechanics 2000, Vol 105, Pts I and Ii = Adv Astronaut Sci Spaceflight Mechanics 2000, Vol 105, Pts I and Ii = Adv. Astronaut. Sci. Spaceflight Mechanics 2001, Vol 108, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 2001, Vol 108, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 2002, Vol 112, Pts I and Ii = Adv Astronaut Sci Spaceflight Mechanics 2002, Vol 112, Pts I and Ii = Adv. Astronaut. Sci. Spaceflight Mechanics 2003, Pts 1-3 = Adv Astronaut Sci Spaceflight Mechanics 2003, Pts 1-3 = Adv. Astronaut. Sci. Spaceflight Mechanics 2004, Vol 119, Pt 1-3 = Adv Astronaut Sci Spaceflight Mechanics 2004, Vol 119, Pt 1-3 = Adv. Astronaut. Sci. Spaceflight Mechanics 2005, Vol 120, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 2005, Vol 120, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 2006, Vol 124, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 2006, Vol 124, Pts 1 and 2 = Adv. Astronaut. Sci. Space Flight Mechanics 2007, Vol 127, Pts 1 and 2 = Adv Astronaut Sci Space Flight Mechanics 2007, Vol 127, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 2008, Vol 130, Pts 1 and 2 = Adv Astronaut Sci Spaceflight Mechanics 2008, Vol 130, Pts 1 and 2 = Adv. Astronaut. Sci. Spaceflight Mechanics 2009, Vol 134, Pts I-iii = Adv Astronaut Sci Spaceflight Mechanics 2009, Vol 134, Pts I-iii = Adv. Astronaut. Sci. Spaceflight Mechanics 2010, Pts I-iii = Adv Astronaut Sci Spaceflight Mechanics 2010, Pts I-iii = Adv. Astronaut. Sci. Spaceflight = Spaceflight Spaceflight = Spaceflight (Lond) Space, Geometry and Aesthetics: Through Kant and Towards Deleuze = Renew Philos Space, Geometry and Aesthetics: Through Kant and Towards Deleuze = Renew. Philos. Space Guidance, Control, and Tracking Ii = P Soc Photo-opt Ins Space Guidance, Control, and Tracking Ii = P. Soc. Photo-opt. Ins. Space Guidance, Control, and Tracking = P Soc Photo-opt Ins Space Guidance, Control, and Tracking = P. Soc. Photo-opt. Ins. Space Infrared Telescopes and Related Science = Adv Space Res Space Infrared Telescopes and Related Science = Adv. Space Res. Space Infrared Telescopes and Related Science = Adv Space Res-series Space Infrared Telescopes and Related Science = Adv. Space Res-series. Space Instrumentation and Dual-use Technologies = P Soc Photo-opt Ins Space Instrumentation and Dual-use Technologies = P. Soc. Photo-opt. Ins. Space Life Sciences = Adv Space Res-series Space Life Sciences = Adv. Space Res-series. Space Life Sciences: Aircraft and Space Radiation Environment = Adv Space Res Space Life Sciences: Aircraft and Space Radiation Environment = Adv. Space Res. Space Life Sciences: Aircraft and Space Radiation Environment = Adv Space Res-series Space Life Sciences: Aircraft and Space Radiation Environment = Adv. Space Res-series. Space Life Sciences: Astrobiology: Steps Toward Origin of Life and Titan Before Cassini = Adv Space Res Space Life Sciences: Astrobiology: Steps Toward Origin of Life and Titan Before Cassini = Adv. Space Res. Space Life Sciences: Astrobiology: Steps Toward Origin of Life and Titan Before Cassini = Adv Space Res-series Space Life Sciences: Astrobiology: Steps Toward Origin of Life and Titan Before Cassini = Adv. Space Res-series. Space Life Sciences: Biodosimetry, Biomarkers and Late Stochastic Effects of Space Radiation = Adv Space Res Space Life Sciences: Biodosimetry, Biomarkers and Late Stochastic Effects of Space Radiation = Adv. Space Res. Space Life Sciences: Biodosimetry, Biomarkers and Late Stochastic Effects of Space Radiation = Adv Space Res-series Space Life Sciences: Biodosimetry, Biomarkers and Late Stochastic Effects of Space Radiation = Adv. Space Res-series. Space Life Sciences: Biological Research and Space Radiation = Adv Space Res Space Life Sciences: Biological Research and Space Radiation = Adv. Space Res. Space Life Sciences: Biological Research and Space Radiation = Adv Space Res-series Space Life Sciences: Biological Research and Space Radiation = Adv. Space Res-series. Space Life Sciences: Closed Artificial Ecosystems and Life Support Systems = Adv Space Res Space Life Sciences: Closed Artificial Ecosystems and Life Support Systems = Adv. Space Res. Space Life Sciences: Closed Artificial Ecosystems and Life Support Systems = Adv Space Res-series Space Life Sciences: Closed Artificial Ecosystems and Life Support Systems = Adv. Space Res-series. Space Life Sciences: Closed Ecological Systems: Earth and Space Applications = Adv Space Res Space Life Sciences: Closed Ecological Systems: Earth and Space Applications = Adv. Space Res. Space Life Sciences: Closed Ecological Systems: Earth and Space Applications = Adv Space Res-series Space Life Sciences: Closed Ecological Systems: Earth and Space Applications = Adv. Space Res-series. Space Life Sciences: Extraterrestrial Organic Chemistry, Uv Radiation On Biological Evolution, and Planetary Protection = Adv Space Res Space Life Sciences: Extraterrestrial Organic Chemistry, Uv Radiation On Biological Evolution, and Planetary Protection = Adv. Space Res. Space Life Sciences: Extraterrestrial Organic Chemistry, Uv Radiation On Biological Evolution, and Planetary Protection = Adv Space Res-series Space Life Sciences: Extraterrestrial Organic Chemistry, Uv Radiation On Biological Evolution, and Planetary Protection = Adv. Space Res-series. Space Life Sciences: Flight Measurements, Calibration of Detectors and Environmental Models for Radiation Analysis = Adv Space Res Space Life Sciences: Flight Measurements, Calibration of Detectors and Environmental Models for Radiation Analysis = Adv. Space Res. Space Life Sciences: Flight Measurements, Calibration of Detectors and Environmental Models for Radiation Analysis = Adv Space Res-series Space Life Sciences: Flight Measurements, Calibration of Detectors and Environmental Models for Radiation Analysis = Adv. Space Res-series. Space Life Sciences: Gravitational Biology: 2002 = Adv Space Res Space Life Sciences: Gravitational Biology: 2002 = Adv. Space Res. Space Life Sciences: Gravitational Biology: 2002 = Adv Space Res-series Space Life Sciences: Gravitational Biology: 2002 = Adv. Space Res-series. Space Life Sciences: Gravity Perception and Transduction in Plan Ts, Fungi and Unicellular Organisms = Adv Space Res Space Life Sciences: Gravity Perception and Transduction in Plan Ts, Fungi and Unicellular Organisms = Adv. Space Res. Space Life Sciences: Gravity Perception and Transduction in Plants, Fungi and Unicellular Organisms = Adv Space Res-series Space Life Sciences: Gravity Perception and Transduction in Plants, Fungi and Unicellular Organisms = Adv. Space Res-series. Space Life Sciences: Gravity-related Effects On Plants and Spaceflight and Man-made Environments On Biological Systems = Adv Space Res Space Life Sciences: Gravity-related Effects On Plants and Spaceflight and Man-made Environments On Biological Systems = Adv. Space Res. Space Life Sciences: Gravity-related Effects On Plants and Spaceflight and Man-made Environments On Biological Systems = Adv Space Res-series Space Life Sciences: Gravity-related Effects On Plants and Spaceflight and Man-made Environments On Biological Systems = Adv. Space Res-series. Space Life Sciences: Gravity-related Processes in Plants = Adv Space Res Space Life Sciences: Gravity-related Processes in Plants = Adv. Space Res. Space Life Sciences: Ground-based Iron-ion Biology and Physics, Including Shielding = Adv Space Res Space Life Sciences: Ground-based Iron-ion Biology and Physics, Including Shielding = Adv. Space Res. Space Life Sciences: Ground-based Iron-ion Biology and Physics, Including Shielding = Adv Space Res-series Space Life Sciences: Ground-based Iron-ion Biology and Physics, Including Shielding = Adv. Space Res-series. Space Life Sciences: Life in The Solar System: Prebiotic Chemistry, Chirality and Space Biology = Adv Space Res Space Life Sciences: Life in The Solar System: Prebiotic Chemistry, Chirality and Space Biology = Adv. Space Res. Space Life Sciences: Life in The Solar System: Prebiotic Chemistry, Chirality and Space Biology = Adv Space Res-series Space Life Sciences: Life in The Solar System: Prebiotic Chemistry, Chirality and Space Biology = Adv. Space Res-series. Space Life Sciences: Life Support Systems and Biological Systems Under Influence of Physical Factors = Adv Space Res Space Life Sciences: Life Support Systems and Biological Systems Under Influence of Physical Factors = Adv. Space Res. Space Life Sciences: Life Support Systems and Biological Systems Under Influence of Physical Factors = Adv Space Res-series Space Life Sciences: Life Support Systems and Biological Systems Under Influence of Physical Factors = Adv. Space Res-series. Space Life Sciences: Living Organisms, Biological Processes and The Limits of Life = Adv Space Res Space Life Sciences: Living Organisms, Biological Processes and The Limits of Life = Adv. Space Res. Space Life Sciences: Living Organisms, Biological Processes and The Limits of Life = Adv Space Res-series Space Life Sciences: Living Organisms, Biological Processes and The Limits of Life = Adv. Space Res-series. Space Life Sciences: Missions to Mars, Radiation Biology, and Plants As A Foundation for Long-term Life Support Systems in Space = Adv Space Res Space Life Sciences: Missions to Mars, Radiation Biology, and Plants As A Foundation for Long-term Life Support Systems in Space = Adv. Space Res. Space Life Sciences: Missions to Mars, Radiation Biology, and Plants As A Foundation for Long-term Life Support Systems in Space = Adv Space Res-series Space Life Sciences: Missions to Mars, Radiation Biology, and Plants As A Foundation for Long-term Life Support Systems in Space = Adv. Space Res-series. Space Life Sciences: Radiation Risk Assessment and Radiation Measurement in Low Earth Orbit = Adv Space Res Space Life Sciences: Radiation Risk Assessment and Radiation Measurement in Low Earth Orbit = Adv. Space Res. Space Life Sciences: Search for Signatures of Life, and Space Flight Environmental Effects On The Nervous System = Adv Space Res Space Life Sciences: Search for Signatures of Life, and Space Flight Environmental Effects On The Nervous System = Adv. Space Res. Space Life Sciences: Search for Signatures of Life, and Space Flight Environmental Effects On The Nervous System = Adv Space Res-series Space Life Sciences: Search for Signatures of Life, and Space Flight Environmental Effects On The Nervous System = Adv. Space Res-series. Space life sciences = Space Life Sci Space Life Sciences = Space Life Sci Space Life Sciences = Space Life Sci. Space Life Sciences: Steps Toward Origin(s) of Life = Adv Space Res Space Life Sciences: Steps Toward Origin(s) of Life = Adv. Space Res. Space Life Sciences: Steps Toward Origin(s) of Life = Adv Space Res-series Space Life Sciences: Steps Toward Origin(s) of Life = Adv. Space Res-series. Space Life Sciences: Structure and Dynamics of The Global Space Radiation Field At Aircraft Altitiudes = Adv Space Res Space Life Sciences: Structure and Dynamics of The Global Space Radiation Field At Aircraft Altitiudes = Adv. Space Res. Space Life Sciences: Structure and Dynamics of The Global Space Radiation Field At Aircraft Altitudes = Adv Space Res-series Space Life Sciences: Structure and Dynamics of The Global Space Radiation Field At Aircraft Altitudes = Adv. Space Res-series. Space Missions and Technologies = P Soc Photo-opt Ins Space Missions and Technologies = P. Soc. Photo-opt. Ins. Space of Mathematics = Grundl Komm Space of Mathematics = Grundl. Komm. Space of Service to Humanity = Spac Stud Space of Service to Humanity = Spac. Stud. Space of Their Own: The Archaeology of Nineteenth Century Lunatic Asylums in Britain, South Australia and Tasmania = Contrib Glob Hist Ar Space of Their Own: The Archaeology of Nineteenth Century Lunatic Asylums in Britain, South Australia and Tasmania = Contrib. Glob. Hist. Ar. Space, Oil and Capital = Routl Stud Int Bus W Space, Oil and Capital = Routl. Stud. Int. Bus. W. Space Operations: Mission Management, Technologies, and Current Applications = Progr Astronaut Aero Space Operations: Mission Management, Technologies, and Current Applications = Progr. Astronaut. Aero. Space Optics 1994: Earth Observation and Astronomy = P Soc Photo-opt Ins Space Optics 1994: Earth Observation and Astronomy = P. Soc. Photo-opt. Ins. Space Optics 1994: Space Instrumentation and Spacecraft Optics = P Soc Photo-opt Ins Space Optics 1994: Space Instrumentation and Spacecraft Optics = P. Soc. Photo-opt. Ins. Space, Place, and Society = Spa Plac Soc Space, Place, and Society = Spa. Plac. Soc. Space Plasma Physics = Adv Space Res Space Plasma Physics = Adv. Space Res. Space Plasma Physics = Aip Conf Proc Space Plasma Physics = Aip. Conf. Proc. Space Plasma Simulation = Lect Notes Phys Space Plasma Simulation = Lect. Notes. Phys. Space policy = Space Policy Space Policy = Space Policy Space Power and Politics = Space Power Polit Space Power and Politics = Space Power Polit. Space Power = Space Power Space Processing of Materials = P Soc Photo-opt Ins Space Processing of Materials = P. Soc. Photo-opt. Ins. Space, Propulsion & Energy Sciences International Forum Spesif-2009 = Aip Conf Proc Space, Propulsion & Energy Sciences International Forum Spesif-2009 = Aip. Conf. Proc. Space, Propulsion & Energy Sciences International Forum Spesif- 2010 = Aip Conf Proc Space, Propulsion & Energy Sciences International Forum Spesif- 2010 = Aip. Conf. Proc. Space Psychology and Psychiatry, Second Edition = Space Technol Lib Space Psychology and Psychiatry, Second Edition = Space Technol. Lib. Space Regulations Library = Space Regul Lib Space Regulations Library = Space Regul. Lib. Space Research Today = Space Res. Today Space Safety and Rescue 1990 = Sci Tech Space Safety and Rescue 1990 = Sci. Tech. Space Safety and Rescue 1991 = Sci Tech Space Safety and Rescue 1991 = Sci. Tech. Space Safety and Rescue 1992 = Sci Tech Space Safety and Rescue 1992 = Sci. Tech. Space Safety and Rescue 1997 = Sci Tech Space Safety and Rescue 1997 = Sci. Tech. Space Safety and Rescue 1998 = Sci Tech Space Safety and Rescue 1998 = Sci. Tech. Space Safety, Rescue and Quality 1999-2000 = Sci Tech Space Safety, Rescue and Quality 1999-2000 = Sci. Tech. Space Safety, Rescue and Quality 2001 = Sci Tech Space Safety, Rescue and Quality 2001 = Sci. Tech. Space Science and The Long-term Future of Space in Europe = Esa Spec Publ Space Science and The Long-term Future of Space in Europe = Esa. Spec. Publ. Space Science and The Long-term Future of Space in Europe = Esa Sp Publ Space Science and The Long-term Future of Space in Europe = Esa. Sp. Publ. Space Sciencecraft Control and Tracking in The New Millennium = P Soc Photo-opt Ins Space Sciencecraft Control and Tracking in The New Millennium = P. Soc. Photo-opt. Ins. Space Science Education and Promoting North-south Partnership in Space Research = Adv Space Res Space Science Education and Promoting North-south Partnership in Space Research = Adv. Space Res. Space Science Exploration and Policy = Space Sci Explor Pol Space Science Exploration and Policy = Space Sci. Explor. Pol. Space Science Review = Space Sci. Rev. Space science reviews = Space Sci Rev Space Science Reviews = Space Sci Rev Space Science Reviews = Space Sci. Rev. Space Science Series of Issi = Space Sci Ser Issi Space Science Series of Issi = Space Sci. Ser. Issi Space Science Series of Issi = S S S Issi Space Science Series of Issi = S. S. S. Issi Space Science Series = Space Sci S Space Science Series = Space Sci. S. Space Shuttle Main Engine: The First Twenty Years and Beyond = Aas Hist Ser Space Shuttle Main Engine: The First Twenty Years and Beyond = Aas. Hist. Ser. Spaces of Homotopy Self-equivalences = Lect Notes Math Spaces of Homotopy Self-equivalences = Lect. Notes. Math. Spaces of The Sacred and Profane: Dickens, Trollope, and The Victorian Cathedral Town = Lit Crit Cult Theory Spaces of The Sacred and Profane: Dickens, Trollope, and The Victorian Cathedral Town = Lit. Crit. Cult. Theory. Space Solar Power Review = Space Power Space = Space Spaces, Spatiality and Technology = Kis Co Sup Coop Work Spaces, Spatiality and Technology = Kis. Co. Sup. Coop. Work. Space Studies = Spac Stud Space Studies = Spac. Stud. Space Systems Engineering and Optical Alignment Mechanisms = P Soc Photo-opt Ins Space Systems Engineering and Optical Alignment Mechanisms = P. Soc. Photo-opt. Ins. Space Systems Technology and Operations = P Soc Photo-opt Ins Space Systems Technology and Operations = P. Soc. Photo-opt. Ins. Space Technology and Applications International Forum - 1998, Pts 1-3 = Aip Conf Proc Space Technology and Applications International Forum - 1998, Pts 1-3 = Aip. Conf. Proc. Space Technology and Applications International Forum - 1999, Pts One and Two = Aip Conf Proc Space Technology and Applications International Forum - 1999, Pts One and Two = Aip. Conf. Proc. Space Technology and Applications International Forum-2001 = Aip Conf Proc Space Technology and Applications International Forum-2001 = Aip. Conf. Proc. Space Technology and Applications International Forum, Pts 1-3 = Aip Conf Proc Space Technology and Applications International Forum, Pts 1-3 = Aip. Conf. Proc. Space Technology and Applications International Forum, Pts 1 and 2 = Aip Conf Proc Space Technology and Applications International Forum, Pts 1 and 2 = Aip. Conf. Proc. Space Technology and Applications International Forum-staif 2002 = Aip Conf Proc Space Technology and Applications International Forum-staif 2002 = Aip. Conf. Proc. Space Technology and Applications International Forum - Staif 2003 = Aip Conf Proc Space Technology and Applications International Forum - Staif 2003 = Aip. Conf. Proc. Space Technology and Applications International Forum-staif 2004 = Aip Conf Proc Space Technology and Applications International Forum-staif 2004 = Aip. Conf. Proc. Space Technology and Applications International Forum-staif 2005 = Aip Conf Proc Space Technology and Applications International Forum-staif 2005 = Aip. Conf. Proc. Space Technology and Applications International Forum - Staif 2006 = Aip Conf Proc Space Technology and Applications International Forum - Staif 2006 = Aip. Conf. Proc. Space Technology and Applications International Forum - Staif 2007 = Aip Conf Proc Space Technology and Applications International Forum - Staif 2007 = Aip. Conf. Proc. Space Technology and Applications International Forum Staif 2008 = Aip Conf Proc Space Technology and Applications International Forum Staif 2008 = Aip. Conf. Proc. Space Technology and Applications International Forum (staif-96), Pts 1-3 = Aip Conf Proc Space Technology and Applications International Forum (staif-96), Pts 1-3 = Aip. Conf. Proc. Space Technology-industrial and Commercial Applications = Space Technol Space Technology-industrial and Commercial Applications = Space Technol. Space Technology Library = Space Technol Lib Space Technology Library = Space Technol. Lib. Space Technology Library = Spac Tec L Space Technology Library = Spac. Tec. L. Space technology (Oxford, England) = Space Technol Space Technology Proceedings = Space Technol Proc Space Technology Proceedings = Space Technol. Proc. Space Telescopes and Instrumentation 2008: Optical, Infrared, and Millimeter, Pts 1 and 2 = Proc Spie Space Telescopes and Instrumentation 2008: Optical, Infrared, and Millimeter, Pts 1 and 2 = Proc. Spie. Space Telescopes and Instrumentation 2008: Optical, Infrared, and Millimeter, Pts 1 and 2 = P Soc Photo-opt Ins Space Telescopes and Instrumentation 2008: Optical, Infrared, and Millimeter, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Space Telescopes and Instrumentation 2008: Ultraviolet to Gamma Ray, Pts 1 and 2 = Proc Spie Space Telescopes and Instrumentation 2008: Ultraviolet to Gamma Ray, Pts 1 and 2 = Proc. Spie. Space Telescopes and Instrumentation 2008: Ultraviolet to Gamma Ray, Pts 1 and 2 = P Soc Photo-opt Ins Space Telescopes and Instrumentation 2008: Ultraviolet to Gamma Ray, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Space Telescopes and Instrumentation 2010: Optical, Infrared, and Millimeter Wave = P Soc Photo-opt Ins Space Telescopes and Instrumentation 2010: Optical, Infrared, and Millimeter Wave = P. Soc. Photo-opt. Ins. Space Telescopes and Instrumentation 2010: Ultraviolet to Gamma Ray = Proc Spie Space Telescopes and Instrumentation 2010: Ultraviolet to Gamma Ray = Proc. Spie. Space Telescopes and Instrumentation 2010: Ultraviolet to Gamma Ray = P Soc Photo-opt Ins Space Telescopes and Instrumentation 2010: Ultraviolet to Gamma Ray = P. Soc. Photo-opt. Ins. Space Telescopes and Instrumentation Ii: Ultraviolet to Gamma Ray, Pts 1 and 2 = Proc Spie Space Telescopes and Instrumentation Ii: Ultraviolet to Gamma Ray, Pts 1 and 2 = Proc. Spie. Space Telescopes and Instrumentation Ii: Ultraviolet to Gamma Ray, Pts 1 and 2 = P Soc Photo-opt Ins Space Telescopes and Instrumentation Ii: Ultraviolet to Gamma Ray, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Space Telescopes and Instrumentation I: Optical, Infrared, and Millimeter, Pts 1 and 2 = Proc Spie Space Telescopes and Instrumentation I: Optical, Infrared, and Millimeter, Pts 1 and 2 = Proc. Spie. Space Telescopes and Instrumentation I: Optical, Infrared, and Millimeter, Pts 1 and 2 = P Soc Photo-opt Ins Space Telescopes and Instrumentation I: Optical, Infrared, and Millimeter, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Space Telescopes and Instruments Iv = P Soc Photo-opt Ins Space Telescopes and Instruments Iv = P. Soc. Photo-opt. Ins. Space Telescopes and Instruments = P Soc Photo-opt Ins Space Telescopes and Instruments = P. Soc. Photo-opt. Ins. Space Telescopes and Instruments V, Pts 1-2 = P Soc Photo-opt Ins Space Telescopes and Instruments V, Pts 1-2 = P. Soc. Photo-opt. Ins. Space Telescope Science Institute Symposium Series = Space Tel S Space Telescope Science Institute Symposium Series = Space Tel. S. Space, Time, and Culture = Contr Phenomenol Space, Time, and Culture = Contr. Phenomenol. Space, Time, and Spacetime: Physical and Philosophical Implications On Minkowski's Unification of Space and Time = Fund Theor Phys Space, Time, and Spacetime: Physical and Philosophical Implications On Minkowski's Unification of Space and Time = Fund. Theor. Phys. Space, Time, and The Use of Language = Cogn Linguist Res Space, Time, and The Use of Language = Cogn. Linguist. Res. Space-time Continuous Models of Swarm Robotic Systems: Supporting Global-to-local Programming = Cogn Syst Monogr Space-time Continuous Models of Swarm Robotic Systems: Supporting Global-to-local Programming = Cogn. Syst. Monogr. Spacetime, Geometry and Gravitation = Prog Math Phys Spacetime, Geometry and Gravitation = Prog. Math. Phys. Space-time Organization in Macromolecular Fluids = Springer Series Chem Space-time Organization in Macromolecular Fluids = Springer. Series. Chem. Space Transportation Propulsion Technology Symposium, Vol 2 = Nasa Conf P Space Transportation Propulsion Technology Symposium, Vol 2 = Nasa. Conf. P. Space Travel and Culture: From Apollo to Space Tourism = Sociol Rev Monogr Space Travel and Culture: From Apollo to Space Tourism = Sociol. Rev. Monogr. Space Weather 2000 = Adv Space Res Space Weather 2000 = Adv. Space Res. Space Weather 2000 = Adv Space Res-series Space Weather 2000 = Adv. Space Res-series. Space Weather = Adv Space Res Space Weather = Adv. Space Res. Space Weather = Geoph Monog Series Space Weather = Geoph. Monog. Series. Space Weather: Physics and Applications = Adv Space Res Space Weather: Physics and Applications = Adv. Space Res. Space Weather: Physics and Applications = Adv Space Res-series Space Weather: Physics and Applications = Adv. Space Res-series. Space Weather - Physics and Effects = Springer-prax Books Space Weather - Physics and Effects = Springer-prax. Books. Space Weather Prediction: Applications and Validation = Adv Space Res Space Weather Prediction: Applications and Validation = Adv. Space Res. Space Weather Prediction: Applications and Validation = Adv Space Res-series Space Weather Prediction: Applications and Validation = Adv. Space Res-series. Space Weather: Research Towards Applications in Europe = Astrophys Space Sc L Space Weather: Research Towards Applications in Europe = Astrophys. Space Sc. L. Space Weather Study Using Multipoint Techniques = Cospar Coll Space Weather Study Using Multipoint Techniques = Cospar. Coll. Space Weather-the International Journal of Research and Applications = Space Weather Space Weather-the International Journal of Research and Applications = Space Weather. Space Weather: The Physics Behind A Slogan = Lect Notes Phys Space Weather: The Physics Behind A Slogan = Lect. Notes. Phys. Space world = Space World Spagna contemporanea = Spagna Contemp Spal. Revista de prehistoria y arqueología de la Universidad de Sevilla = Spal Spanische Verbalflexion: Eine Minimalistische Analyse Im Rahmen Der Distributed Morphology = Linguist Arb Spanische Verbalflexion: Eine Minimalistische Analyse Im Rahmen Der Distributed Morphology = Linguist. Arb. Spanish Economic Review = Span Econ Rev Spanish Economic Review = Span. Econ. Rev. Spanish Economic Review=Spanish Econ. Rev. Spanish in Context = Span Context Spanish in Context = Span. Context Spanish journal of agricultural research = Revista de investigacion agraria|Span. J. Agric. Res. Spanish Journal of Agricultural Research = Span J Agric Res Spanish Journal of Agricultural Research = Span. J. Agric. Res. Spanish Journal of Psychology = Span J Psychol Spanish Journal of Psychology = Span. J. Psychol. Spanish Relativity Meeting, Ere2007: Relativistic Astrophysics and Cosmology = Eas Publications Spanish Relativity Meeting, Ere2007: Relativistic Astrophysics and Cosmology = Eas. Publications. Spanish Relativity Meeting (ere 2009) = J Phys Conf Ser Spanish Relativity Meeting (ere 2009) = J. Phys. Conf. Ser. Span Series = Span Series Span = Span Sparking Signals: Kinases As Molecular Signal Transducers and Pharmacological Drug Targets in Inflammation = Ernst Schering Found Sparking Signals: Kinases As Molecular Signal Transducers and Pharmacological Drug Targets in Inflammation = Ernst. Schering. Found. Spasticity and Its Management With Physical Therapy Applications With Multiple Sclerosis Patients = Neurodegener Dis Lab Spasticity and Its Management With Physical Therapy Applications With Multiple Sclerosis Patients = Neurodegener. Dis. Lab. Spatial Analysis and Modeling in Geographical Transformation Process: Gis-based Applications = Geojournal Lib Spatial Analysis and Modeling in Geographical Transformation Process: Gis-based Applications = Geojournal. Lib. Spatial Analysis and Population Dynamics = Congr Coll Spatial Analysis and Population Dynamics = Congr. Coll. Spatial Analysis in Soil Dynamics and Earthquake Engineering = Geotech Sp Spatial Analysis in Soil Dynamics and Earthquake Engineering = Geotech. Sp. Spatial and Social Disparities: Understanding Population Trends and Processes - Vol 2 = Underst Popul Trends Spatial and Social Disparities: Understanding Population Trends and Processes - Vol 2 = Underst. Popul. Trends Spatial and Spatiotemporal Econometrics = Adv Econometrics Spatial and Spatiotemporal Econometrics = Adv. Econometrics Spatial Assemblages of Tropical Intertidal Rocky Shore Communities in Ghana, West Africa = Environ Sci Eng Tech Spatial Assemblages of Tropical Intertidal Rocky Shore Communities in Ghana, West Africa = Environ. Sci. Eng. Tech. Spatial Choices and Processes = Stud Reg Sc Spatial Choices and Processes = Stud. Reg. Sc. Spatial cognition and computation = Spat Cogn Comput Spatial Cognition and Computation = Spat Cogn Comput Spatial Cognition and Computation = Spat. Cogn. Comput. Spatial Cognition: Foundations and Applications = Adv Consc Res Spatial Cognition: Foundations and Applications = Adv. Consc. Res. Spatial Cognition Iii = Lect Notes Artif Int Spatial Cognition Iii = Lect. Notes. Artif. Int. Spatial Cognition Ii = Lect Notes Artif Int Spatial Cognition Ii = Lect. Notes. Artif. Int. Spatial Cognition Iv, Reasoning, Action, Interaction = Lect Notes Comput Sc Spatial Cognition Iv, Reasoning, Action, Interaction = Lect. Notes. Comput. Sc. Spatial Cognition Vii = Lect Notes Artif Int Spatial Cognition Vii = Lect. Notes. Artif. Int. Spatial Cognition Vi: Learning, Reasoning, and Talking About Space = Lect Notes Artif Int Spatial Cognition Vi: Learning, Reasoning, and Talking About Space = Lect. Notes. Artif. Int. Spatial Cognition V: Reasoning, Action, Interaction = Lect Notes Artif Int Spatial Cognition V: Reasoning, Action, Interaction = Lect. Notes. Artif. Int. Spatial Coherence for Visual Motion Analysis = Lect Notes Comput Sc Spatial Coherence for Visual Motion Analysis = Lect. Notes. Comput. Sc. Spatial Contact Problems in Geotechnics: Boundary-element Method = Found Eng Mech Spatial Contact Problems in Geotechnics: Boundary-element Method = Found. Eng. Mech. Spatial Database Systems = Geojournal Lib Spatial Database Systems = Geojournal. Lib. Spatial Data Infrastructure for Urban Regeneration = Csur Ut Ser Lib Sust Spatial Data Infrastructure for Urban Regeneration = Csur. Ut. Ser. Lib. Sust. Spatial Dimensions of Development - Interaction Between The Global, National and Local = Geogr Hafniensia Spatial Dimensions of Development - Interaction Between The Global, National and Local = Geogr. Hafniensia. Spatial Disparities and Development Policy = Berlin Workshop Ser Spatial Disparities and Development Policy = Berlin. Workshop. Ser. Spatial Dynamics, Networks and Modelling = New Horiz Reg Sci Spatial Dynamics, Networks and Modelling = New. Horiz. Reg. Sci. Spatial Econometrics: Statistical Foundations and Applications to Regional Convergence = Adv Spat Sci Spatial Econometrics: Statistical Foundations and Applications to Regional Convergence = Adv. Spat. Sci. Spatial Economic Analysis = Spat Econ Anal Spatial Economic Analysis = Spat. Econ. Anal. Spatial Economic Science = Adv Spat Sci Spatial Economic Science = Adv. Spat. Sci. Spatial Epidemiology = London Pap Spatial Epidemiology = London. Pap. Spatial Information and The Environment = Innovat Gis Spatial Information and The Environment = Innovat. Gis. Spatial Information From Digital Photogrammetry and Computer Vision, Pts 1 and 2 = P Soc Photo-opt Ins Spatial Information From Digital Photogrammetry and Computer Vision, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Spatial Information Theory: A Theoretical Basic for Gis = Lect Notes Comput Sc Spatial Information Theory: A Theoretical Basic for Gis = Lect. Notes. Comput. Sc. Spatial Information Theory = Lect Notes Comput Sc Spatial Information Theory = Lect. Notes. Comput. Sc. Spatial Information Theory, Proceedings = Lect Notes Comput Sc Spatial Information Theory, Proceedings = Lect. Notes. Comput. Sc. Spatial Light Modulators and Applications Iii = Crit Rev Op Spatial Light Modulators and Applications Iii = Crit. Rev. Op. Spatial Light Modulators = P Soc Photo-opt Ins Spatial Light Modulators = P. Soc. Photo-opt. Ins. Spatial Light Modulators: Technology and Applications = P Soc Photo-opt Ins Spatial Light Modulators: Technology and Applications = P. Soc. Photo-opt. Ins. Spatially Resolved Characterization of Local Phenomena in Materials and Nanostructures = Mater Res Soc Symp P Spatially Resolved Characterization of Local Phenomena in Materials and Nanostructures = Mater. Res. Soc. Symp. P. Spatial Memory: Visuospatial Processes, Cognitive Performance and Developmental Effects = Neurosci Res Prog Se Spatial Memory: Visuospatial Processes, Cognitive Performance and Developmental Effects = Neurosci. Res. Prog. Se. Spatial Methods for Solution of Environmental and Hydrologic Problems-science, Policy, and Standardization = Am Soc Test Mater Spatial Methods for Solution of Environmental and Hydrologic Problems-science, Policy, and Standardization = Am. Soc. Test. Mater. Spatial Model of Politics = Routl Front Polit Ec Spatial Model of Politics = Routl. Front. Polit. Ec. Spatial Planning and Urban Development: Critical Perspectives = Urban Land Perspect Spatial Planning and Urban Development: Critical Perspectives = Urban Land. Perspect. Spatial Processes and Management of Marine Populations = Low Wake Fi Spatial Processes and Management of Marine Populations = Low. Wake. Fi. Spatial Representation and Reasoning for Robot Mapping: A Shape-based Approach = Springer Trac Adv Ro Spatial Representation and Reasoning for Robot Mapping: A Shape-based Approach = Springer. Trac. Adv. Ro. Spatial Statistics and Modeling = Springer Ser Stat Spatial Statistics and Modeling = Springer. Ser. Stat. Spatial Temporal Patterns for Action-oriented Perception in Roving Robots = Cogn Syst Monogr Spatial Temporal Patterns for Action-oriented Perception in Roving Robots = Cogn. Syst. Monogr. Spatial Theories of Education: Policy and Geography Matters = Routl Res Educ Spatial Theories of Education: Policy and Geography Matters = Routl. Res. Educ. Spatial Turn: Interdisciplinary Perspectives = Routl Stud Hum Geogr Spatial Turn: Interdisciplinary Perspectives = Routl. Stud. Hum. Geogr. Spatial Turns: Space, Place, and Mobility in German Literary and Visual Culture = Amst Beitr Neuer Ger Spatial Turns: Space, Place, and Mobility in German Literary and Visual Culture = Amst. Beitr. Neuer. Ger. Spatial Variation of Seismic Ground Motions: Modeling and Engineering Applications = Adv Eng Spatial Variation of Seismic Ground Motions: Modeling and Engineering Applications = Adv. Eng. Spatial Vision = Spatial Vision Spatial vision = Spat Vis Spatial Vision=Spat Vis;; Spatial Vision = Spat. Vis. Spatio-temporal Databases: The Chrochronos Approach = Lect Notes Comput Sc Spatio-temporal Databases: The Chrochronos Approach = Lect. Notes. Comput. Sc. Spatio-temporal Dynamics and Quantum Fluctuations in Semiconductor Lasers = Springer Tr Mod Phys Spatio-temporal Dynamics and Quantum Fluctuations in Semiconductor Lasers = Springer. Tr. Mod. Phys. Spatio-temporal Modeling of Nonlinear Distributed Parameter Systems: A Time/space Separation Based Approach = Intel Syst Contr Aut Spatio-temporal Modeling of Nonlinear Distributed Parameter Systems: A Time/space Separation Based Approach = Intel. Syst. Contr. Aut. Spatiotemporal Models in Biological and Artificial Systems = Fr Art Int Spatiotemporal Models in Biological and Artificial Systems = Fr. Art. Int. Spatio-temporal Patterns in Nonequilibrium Complex Systems = Sfi S Sci C Spatio-temporal Patterns in Nonequilibrium Complex Systems = Sfi. S. Sci. C. Spatrenaissance-philosophie in Deutschland 1570-1650 = Fruhe Neuzeit-stud D Spatrenaissance-philosophie in Deutschland 1570-1650 = Fruhe. Neuzeit-stud. D. Spazio E Societa-space & Society = Spaz Soc-space Soc Spazio E Societa-space & Society = Spaz. Soc-space. Soc. Spde in Hydrodynamic: Recent Progress and Prospects = Lect Notes Math Spde in Hydrodynamic: Recent Progress and Prospects = Lect. Notes. Math. Speaking for Islam: Religious Authorities in Muslim Societies = Soc Econ P Speaking for Islam: Religious Authorities in Muslim Societies = Soc. Econ. P. Speaking of Economics: How to Get in The Conversation = Econ Soc Theor Speaking of Economics: How to Get in The Conversation = Econ. Soc. Theor. Speaking of Emotions = Cog Lin Res Speaking of Emotions = Cog. Lin. Res. Speaking Science Fiction: Dialogues and Interpretations = Lp Sci Fic T Studies Speaking Science Fiction: Dialogues and Interpretations = Lp. Sci. Fic. T. Studies. Speaking With Authority = Indigen People Polit Speaking With Authority = Indigen. People. Polit. Speaking Without Words : Forms of Nonverbal Human Expression = Kungl Vit H Speaking Without Words : Forms of Nonverbal Human Expression = Kungl. Vit. H. Speareports = Speareports Special Applications and Advanced Techniques for Crack Size Determination = Am Soc Test Mater Special Applications and Advanced Techniques for Crack Size Determination = Am. Soc. Test. Mater. Special care in dentistry : official publication of the American Association of Hospital Dentists, the Academy of Dentistry for the Handicapped, and the American Society for Geriatric Dentistry = Spec Care Dentist Special Care in Dentistry = Spec. Care Dentist. Special Ceramics 9 = Brit Cer Pr Special Ceramics 9 = Brit. Cer. Pr. Special collections = Spec Collect Special Conference Series - Academy of Marketing Science = Sp Conf Ams Special Conference Series - Academy of Marketing Science = Sp. Conf. Ams. Special Design Topics in Digital Wideband Receivers = Artech Hse Radar Lib Special Design Topics in Digital Wideband Receivers = Artech. Hse. Radar. Lib. Special Discussions of the Faraday Society = Spec. Discuss. Faraday Soc. Special Edition of Texas Papers in Foreign Language Education = Tex Pap For Special Edition of Texas Papers in Foreign Language Education = Tex. Pap. For. Special education: forward trends = Spec Educ Forward Trends Special Education: Forward Trends = Spec. Educ. Forward Trends Special education = Spec Educ Special Education = Spec. Educ. Special Features in Vegetation Science = Spec Feat Veget Sci Special Features in Vegetation Science = Spec. Feat. Veget. Sci. Special Forces, Strategy and The War On Terror = Cass Mil Stud Special Forces, Strategy and The War On Terror = Cass. Mil. Stud. Special Functions 2000: Current Perspective and Future Directions = Nato Sci Ser Ii Math Special Functions 2000: Current Perspective and Future Directions = Nato. Sci. Ser. Ii. Math. Special Functions and Orthogonal Polynomials = Contemp Math Special Functions and Orthogonal Polynomials = Contemp. Math. Special Geotechnical Testing: Central Artery/tunnel Project in Boston, Massachusetts = Geotech Sp Special Geotechnical Testing: Central Artery/tunnel Project in Boston, Massachusetts = Geotech. Sp. Special Issue: Constitutional Politics in A Conservative Era = Stud Law Politics So Special Issue: Constitutional Politics in A Conservative Era = Stud. Law. Politics So. Special Issue: Is The Death Penalty Dying = Stud Law Politics So Special Issue: Is The Death Penalty Dying = Stud. Law. Politics. So. Special Issue: Law and Literature Reconsidered = Stud Law Politics So Special Issue: Law and Literature Reconsidered = Stud. Law Politics. So. Special Issue: Law and Society Reconsidered = Stud Law Politics So Special Issue: Law and Society Reconsidered = Stud. Law Politics. So. Special Issue: New Perspectives On Crime and Criminal Justice = Stud Law Politics So Special Issue: New Perspectives On Crime and Criminal Justice = Stud. Law. Politics. So. Special Issue Revisiting Rights = Stud Law Politics So Special Issue Revisiting Rights = Stud. Law. Politics. So. Specialist Periodical Reports Spectroscopic Properties of Inorganic and Organometallic Compounds = Spec Per Rep Spectro Specialist Periodical Reports Spectroscopic Properties of Inorganic and Organometallic Compounds = Spec. Per. Rep. Spectro. Speciality Chemicals in Mineral Processing = Roy Soc Ch Speciality Chemicals in Mineral Processing = Roy. Soc. Ch. Specialization and Complementation of Humoral Immune Responses to Infection = Curr Top Microbiol Specialization and Complementation of Humoral Immune Responses to Infection = Curr. Top. Microbiol. Specialization of Quadratic and Symmetric Bilinear Forms = Algebra Appl Specialization of Quadratic and Symmetric Bilinear Forms = Algebra. Appl. Specialized Optical Developments in Astronomy = Proc Spie Specialized Optical Developments in Astronomy = Proc. Spie. Specialized Optical Developments in Astronomy = P Soc Photo-opt Ins Specialized Optical Developments in Astronomy = P. Soc. Photo-opt. Ins. Specialized Rasch Measures Applied At The Forefront of Education = Educ Compet Glob Wor Specialized Rasch Measures Applied At The Forefront of Education = Educ. Compet. Glob. Wor. Special libraries = Spec Libr Special Libraries = Spec Libr Special Libraries = Spec. Libr. Special Metrics and Supersymmetry = Aip Conf Proc Special Metrics and Supersymmetry = Aip. Conf. Proc. Special Operations and Strategy: From World War Ii to The War On Terrorism = Strateg Hist Special Operations and Strategy: From World War Ii to The War On Terrorism = Strateg. Hist. Special Papers in Palaeontology Series = Spec Pap Palaeontol Special Papers in Palaeontology Series = Spec. Pap. Palaeontol. Special Papers in Palaeontology Series = Spec Pap Paleontol Special Papers in Palaeontology Series = Spec. Pap. Paleontol. Special Papers in Palaeontology Series = Sp Palaeont Special Papers in Palaeontology Series = Sp. Palaeont. Special Papers in Palaeontology = Spec Pap Palaeontol Special Papers in Palaeontology = Spec. Pap. Palaeontol. Special Papers in Palaeontology = Sp Pap Palaeontol Special Papers in Palaeontology = Sp. Pap. Palaeontol. Special Publication - Agronomy Society of New Zealand = Sp Pub Agr Special Publication - Agronomy Society of New Zealand = Sp. Pub. Agr. Special publication (American Philosophical Society) = Spec Publ Am Philos Soc Special Publication / European Aquaculture Society = Sp Pub Eur Aquacult Special Publication / European Aquaculture Society = Sp. Pub. Eur. Aquacult. Special Publication of The European Association of Petroleum Geoscientists = Sp Pub Eapg Special Publication of The European Association of Petroleum Geoscientists = Sp. Pub. Eapg. Special Publication - Royal Society of Chemistry = Spec. Publ. - R. Soc. Chem. Special Publications of Iavcei = Spec Publ Iavcei Special Publications of Iavcei = Spec. Publ. Iavcei Special Publications of The International Association of Sedimentologists = Spec Publ Int Special Publications of The International Association of Sedimentologists = Spec. Publ. Int. Special Publications of The International Association of Sedimentologists = Spec Publ Int Ass Se Special Publications of The International Association of Sedimentologists = Spec. Publ. Int. Ass. Se. Special Publications of The International Association of Sedimentologists = Sp Publ Int Special Publications of The International Association of Sedimentologists = Sp. Publ. Int. Special Publications of The Society for General Microbiology = Spec Publ Soc Gen Mi Special Publications of The Society for General Microbiology = Spec. Publ. Soc. Gen. Mi. Special Relativity: Will It Survive The Next 101 Years? = Lect Notes Phys Special Relativity: Will It Survive The Next 101 Years? = Lect. Notes. Phys. Special Report - Inter-american Tropical Tuna Commission = Sr Inter Amer Trop T Special Report - Inter-american Tropical Tuna Commission = Sr. Inter. Amer. Trop. T. Special report series - Indian Council of Medical Research = Spec Rep Ser Indian Counc Med Res Special Report Series, Indian Council of Medical Research = Spec. Rep. Ser. Indian Counc. Med. Res. Special report series (Medical Research Council (Great Britain)) = Spec Rep Ser Med Res Counc (G B) Special Reports of The Institute for International Economics = Sr Inst Int Special Reports of The Institute for International Economics = Sr. Inst. Int. Special Research Unit 227 - Prevention and Intervention in Childhood and Adolescence = Sp R Prev I Special Research Unit 227 - Prevention and Intervention in Childhood and Adolescence = Sp. R. Prev. I. Special Sessions On Food Safety, Visual Analytics, Resource Restricted Embedded and Sensor Networks, and 3d Imaging and Display = Proc Spie Special Sessions On Food Safety, Visual Analytics, Resource Restricted Embedded and Sensor Networks, and 3d Imaging and Display = Proc. Spie. Special Sessions On Food Safety, Visual Analytics, Resource Restricted Embedded and Sensor Networks, and 3d Imaging and Display = P Soc Photo-opt Ins Special Sessions On Food Safety, Visual Analytics, Resource Restricted Embedded and Sensor Networks, and 3d Imaging and Display = P. Soc. Photo-opt. Ins. Special Studies in Teaching and Teacher Education = Sp St Tech Special Studies in Teaching and Teacher Education = Sp. St. Tech. Special Study of The Kennan Inst for Advanced Russian Studies, Woodrow Wilson International Ctr for Scholars = Sp S Kennan Special Study of The Kennan Inst for Advanced Russian Studies, Woodrow Wilson International Ctr for Scholars = Sp. S. Kennan Special topics in endocrinology and metabolism = Spec Top Endocrinol Metab Special Topics in Endocrinology and Metabolism = Spec. Top. Endocrinol. Metab. Special Topics in Intellectual Property = Acs Sym Ser Special Topics in Intellectual Property = Acs. Sym. Ser. Specialty Cements With Advanced Properties = Mater Res Soc Symp P Specialty Cements With Advanced Properties = Mater. Res. Soc. Symp. P. Specialty Fiber Optics for Biomedical and Industrial Applications, Proceedings Of = P Soc Photo-opt Ins Specialty Fiber Optics for Biomedical and Industrial Applications, Proceedings Of = P. Soc. Photo-opt. Ins. Specialty Fiber Optics for Medical Applications, Proceedings Of = Proc Spie Specialty Fiber Optics for Medical Applications, Proceedings Of = Proc. Spie. Specialty Fiber Optics for Medical Applications, Proceedings Of = P Soc Photo-opt Ins Specialty Fiber Optics for Medical Applications, Proceedings Of = P. Soc. Photo-opt. Ins. Specialty Fiber Optic Systems for Mobile Platforms and Plastic Optical Fibers = P Soc Photo-opt Ins Specialty Fiber Optic Systems for Mobile Platforms and Plastic Optical Fibers = P. Soc. Photo-opt. Ins. Specialty Fiber Optic Systems for Mobile Platforms = P Soc Photo-opt Ins Specialty Fiber Optic Systems for Mobile Platforms = P. Soc. Photo-opt. Ins. Specialty law digest. Health care law = Spec Law Dig Health Care Law Specialty Law Digest. Health Care Law = Spec. Law Dig. Health Care Law Specialty law digest. Health care (Monthly) = Spec Law Dig Health Care (Mon) Specialty Law Digest. Health Care (Monthly) = Spec. Law Dig. Health Care (Mon.) Special Volume in Memory of Ilya Prigogine = Adv Chem Phys Special Volume in Memory of Ilya Prigogine = Adv. Chem. Phys. Speciation of Modern Homo Sapiens = P Brit Acad Speciation of Modern Homo Sapiens = P. Brit. Acad. Species Conservation : A Population-biological Approach = Adv Lif Sci Species Conservation : A Population-biological Approach = Adv. Lif. Sci. Species Differences in Thyroid, Kidney and Urinary Bladder Carcinogenesis = Iarc Sci Publ Species Differences in Thyroid, Kidney and Urinary Bladder Carcinogenesis = Iarc. Sci. Publ. Species Diversity and Extinction = Environ Sci Eng Tech Species Diversity and Extinction = Environ. Sci. Eng. Tech. Species Richness: Patterns in The Diversity of Life = S-p B Environ Sci Species Richness: Patterns in The Diversity of Life = S-p. B. Environ. Sci. Specification and Measurement of Optical Systems = P Soc Photo-opt Ins Specification and Measurement of Optical Systems = P. Soc. Photo-opt. Ins. Specification and Verification of Declarative Open Interaction Models: A Logic-based Approach = Lect Notes Bus Inf P Specification and Verification of Declarative Open Interaction Models: A Logic-based Approach = Lect. Notes. Bus. Inf. P. Specification of Software Systems, 2nd Edition = Texts Comput Sci Specification of Software Systems, 2nd Edition = Texts. Comput. Sci. Specification, Production, and Testing of Optical Components and Systems = P Soc Photo-opt Ins Specification, Production, and Testing of Optical Components and Systems = P. Soc. Photo-opt. Ins. Specifications Performance Evaluation and Quality Assurance of Radiographic and Fluoroscopic Systems in The Digital Era = Med Phys Mg Specifications Performance Evaluation and Quality Assurance of Radiographic and Fluoroscopic Systems in The Digital Era = Med. Phys. Mg. Specific Immunotherapy of Cancer With Vaccines = Ann Ny Acad Sci Specific Immunotherapy of Cancer With Vaccines = Ann. Ny. Acad. Sci. Specificity, Function, and Development of Nk Cells = Curr Top Microbiol Specificity, Function, and Development of Nk Cells = Curr. Top. Microbiol. Specifying engineer = Specif Eng Specifying Engineer = Specif Eng Specifying Engineer = Specif. Eng. Specimen Preparation for Transmission Electron Microscopy of Materials - Iii = Mater Res Soc Symp P Specimen Preparation for Transmission Electron Microscopy of Materials - Iii = Mater. Res. Soc. Symp. P. Specimen Preparation for Transmission Electron Microscopy of Materials Ii = Mater Res Soc Symp P Specimen Preparation for Transmission Electron Microscopy of Materials Ii = Mater. Res. Soc. Symp. P. Specimen Preparation for Transmission Electron Microscopy of Materials Iv = Mater Res Soc Symp P Specimen Preparation for Transmission Electron Microscopy of Materials Iv = Mater. Res. Soc. Symp. P. Specimina nova dissertationum ex Instituto historico Universitatis Quinqueecclesiensis de Iano Pannonio nominatae = SpNov Speckle06: Speckles, From Grains to Flowers = Proc Spie Speckle06: Speckles, From Grains to Flowers = Proc. Spie. Speckle06: Speckles, From Grains to Flowers = P Soc Photo-opt Ins Speckle06: Speckles, From Grains to Flowers = P. Soc. Photo-opt. Ins. Speckle 2010: Optical Metrology = Proc Spie Speckle 2010: Optical Metrology = Proc. Spie. Speckle 2010: Optical Metrology = P Soc Photo-opt Ins Speckle 2010: Optical Metrology = P. Soc. Photo-opt. Ins. Speckle Metrology 2003, Proceedings = P Soc Photo-opt Ins Speckle Metrology 2003, Proceedings = P. Soc. Photo-opt. Ins. Speckle Techniques, Birefringence Methods, and Applications to Solid Mechanics, Pts A & B = P Soc Photo-opt Ins Speckle Techniques, Birefringence Methods, and Applications to Solid Mechanics, Pts A & B = P. Soc. Photo-opt. Ins. Spectacles of Empire: Monsters, Martyrs, and Book of Revelation = Divin Reread Late An Spectacles of Empire: Monsters, Martyrs, and Book of Revelation = Divin. Reread. Late. An. Spectator (London, England : 1828) = Spectator Spectra Analyse = Spectra Anal. Spectra and Timing of Compact X-ray Binaries = Adv Space Res-series Spectra and Timing of Compact X-ray Binaries = Adv. Space. Res-series. Spectra Biologie = Spectra Biol. Spectral Analysis in Geometry and Number Theory = Contemp Math Spectral Analysis in Geometry and Number Theory = Contemp. Math. Spectral Analysis of Large Dimensional Random Matrices, Second Edition = Springer Ser Stat Spectral Analysis of Large Dimensional Random Matrices, Second Edition = Springer. Ser. Stat. Spectral and Scattering Theory for Quantum Magnetic Systems = Contemp Math Spectral and Scattering Theory for Quantum Magnetic Systems = Contemp. Math. Spectral and Scattering Theory = Lect Notes Pure Appl Spectral and Scattering Theory = Lect. Notes. Pure. Appl. Spectral Energy Distributions of Gas-rich Galaxies: Confronting Models With Data = Aip Conf Proc Spectral Energy Distributions of Gas-rich Galaxies: Confronting Models With Data = Aip. Conf. Proc. Spectral Finite Element Method = Comput Fluid Solid M Spectral Finite Element Method = Comput. Fluid. Solid. M. Spectral Geometry of Manifolds With Boundary and Decomposition of Manifolds = Contemp Math Spectral Geometry of Manifolds With Boundary and Decomposition of Manifolds = Contemp. Math. Spectral Imaging: Eighth International Symposium On Multispectral Color Science = Proc Spie Spectral Imaging: Eighth International Symposium On Multispectral Color Science = Proc. Spie. Spectral Imaging: Eighth International Symposium On Multispectral Color Science = P Soc Photo-opt Ins Spectral Imaging: Eighth International Symposium On Multispectral Color Science = P. Soc. Photo-opt. Ins. Spectral Imaging: Instrumentation, Applications, and Analysis Iii = Proc Spie Spectral Imaging: Instrumentation, Applications, and Analysis Iii = Proc. Spie. Spectral Imaging: Instrumentation, Applications, and Analysis Iii = P Soc Photo-opt Ins Spectral Imaging: Instrumentation, Applications, and Analysis Iii = P. Soc. Photo-opt. Ins. Spectral Imaging: Instrumentation, Applications, and Analysis Ii = P Soc Photo-opt Ins Spectral Imaging: Instrumentation, Applications, and Analysis Ii = P. Soc. Photo-opt. Ins. Spectral Imaging: Instrumentation, Applications, and Analysis = P Soc Photo-opt Ins Spectral Imaging: Instrumentation, Applications, and Analysis = P. Soc. Photo-opt. Ins. Spectral Line Shapes = Aip Conf Proc Spectral Line Shapes = Aip. Conf. Proc. Spectral Line Shapes in Astrophysics = Aip Conf Proc Spectral Line Shapes in Astrophysics = Aip. Conf. Proc. Spectral Line Shapes, Vol 10 = Aip Conf Proc Spectral Line Shapes, Vol 10 = Aip. Conf. Proc. Spectral Line Shapes, Vol 11 = Aip Conf Proc Spectral Line Shapes, Vol 11 = Aip. Conf. Proc. Spectral Line Shapes Vol 15 = Aip Conf Proc Spectral Line Shapes Vol 15 = Aip. Conf. Proc. Spectral Line Shapes, Vol 8 = Aip Conf Proc Spectral Line Shapes, Vol 8 = Aip. Conf. Proc. Spectral Line Shapes, Vol 9 - 13th Icsls = Aip Conf Proc Spectral Line Shapes, Vol 9 - 13th Icsls = Aip. Conf. Proc. Spectral Method in Multiaxial Random Fatigue = Lect Notes Appl Comp Spectral Method in Multiaxial Random Fatigue = Lect. Notes. Appl. Comp. Spectral Methods for Operators of Mathematical Physics = Oper Theor Spectral Methods for Operators of Mathematical Physics = Oper. Theor. Spectral Methods for Uncertainty Quantification: With Applications to Computational Fluid Dynamics = Sci Comput Spectral Methods for Uncertainty Quantification: With Applications to Computational Fluid Dynamics = Sci. Comput. Spectral Methods in Quantum Field Theory = Lect Notes Phys Spectral Methods in Quantum Field Theory = Lect. Notes. Phys. Spectral Methods in Surface Superconductivity = Prog Nonlinear Diffe Spectral Methods in Surface Superconductivity = Prog. Nonlinear. Diffe. Spectral Properties of Noncommuting Operators = Lect Notes Math Spectral Properties of Noncommuting Operators = Lect. Notes. Math. Spectral Theory and Computational Methods of Sturm-liouville Problems = Lect Notes Pure Appl Spectral Theory and Computational Methods of Sturm-liouville Problems = Lect. Notes. Pure. Appl. Spectral Theory and Geometric Analysis = Contemp Math Spectral Theory and Geometric Analysis = Contemp. Math. Spectral Theory and Mathematical Physics: A Festschrift in Honor of Barry Simon's 60th Birthday = P Symp Pure Math Spectral Theory and Mathematical Physics: A Festschrift in Honor of Barry Simon's 60th Birthday = P. Symp. Pure. Math. Spectral Theory for Random and Nonautonomous Parabolic Equations and Applications = Ch Crc Monogr Surv P Spectral Theory for Random and Nonautonomous Parabolic Equations and Applications = Ch. Crc. Monogr. Surv. P. Spectral Theory in Inner Product Spaces and Applications = Oper Theor Spectral Theory in Inner Product Spaces and Applications = Oper. Theor. Spectral Theory of Linear Operators and Spectral Systems in Banach Algebras, Second Edition = Oper Theory Adv Appl Spectral Theory of Linear Operators and Spectral Systems in Banach Algebras, Second Edition = Oper. Theory Adv. Appl. Spectral Theory of Non-commutative Harmonic Oscillators: An Introduction = Lect Notes Math Spectral Theory of Non-commutative Harmonic Oscillators: An Introduction = Lect. Notes. Math. Spectrochimica Acta Part A-molecular and Biomolecular Spectroscopy = Spectrochim Acta A Spectrochimica Acta Part A-molecular and Biomolecular Spectroscopy = Spectrochim. Acta A. Spectrochimica acta. Part A, Molecular and biomolecular spectroscopy = Spectrochim Acta A Mol Biomol Spectrosc Spectrochimica Acta. Part A, Molecular and Biomolecular Spectroscopy = Spectrochim. Acta. A. Mol. Biomol. Spectrosc. Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy = Spectrochim. Acta, Part A Spectrochimica Acta, Part A: Molecular and Biomolecular Spectroscopy = Spectrochim. Acta, Part A Spectrochimica acta. Part A: Molecular spectroscopy = Spectrochim Acta [A] Spectrochimica Acta Part A-molecular Spectroscopy = Spectrochim Acta A-m Spectrochimica Acta Part A-molecular Spectroscopy = Spectrochim. Acta A-m. Spectrochimica Acta, Part A: Molecular Spectroscopy = Spectrochim. Acta, Part A Spectrochimica Acta Part B-atomic Spectroscopy = Spectrochim Acta B Spectrochimica Acta Part B-atomic Spectroscopy = Spectrochim. Acta B. Spectrochimica Acta Part B: Atomic Spectroscopy = Spectrochim. Acta, Part B Spectrochimica Acta, Part B: Atomic Spectroscopy = Spectrochim. Acta, Part B Spectrochimica Acta Reviews = Spectrochim Acta Rev Spectrochimica Acta Reviews = Spectrochim. Acta Rev. Spectrochimica Acta = Spectrochim Acta Spectrochimica Acta = Spectrochim. Acta Spectrophotometric Dating of Stars and Galaxies = Astr Soc P Spectrophotometric Dating of Stars and Galaxies = Astr. Soc. P. Spectrophotometry, Luminescence and Colour; Science & Compliance = Anal Spectr Spectrophotometry, Luminescence and Colour; Science & Compliance = Anal. Spectr. Spectroscopically and Spatially Resolving The Components of Close Binary Stars = Astr Soc P Spectroscopically and Spatially Resolving The Components of Close Binary Stars = Astr. Soc. P. Spectroscopic Atmospheric Monitoring Techniques = P Soc Photo-opt Ins Spectroscopic Atmospheric Monitoring Techniques = P. Soc. Photo-opt. Ins. Spectroscopic Challenges of Photoionized Plasmas = Astr Soc P Spectroscopic Challenges of Photoionized Plasmas = Astr. Soc. P. Spectroscopic Characterization of Minerals and Their Surfaces = Acs Sym Ser Spectroscopic Characterization of Minerals and Their Surfaces = Acs. Sym. Ser. Spectroscopic Characterization Techniques for Semiconductor Technology Iv = P Soc Photo-opt Ins Spectroscopic Characterization Techniques for Semiconductor Technology Iv = P. Soc. Photo-opt. Ins. Spectroscopic Characterization Techniques for Semiconductor Technology V = P Soc Photo-opt Ins Spectroscopic Characterization Techniques for Semiconductor Technology V = P. Soc. Photo-opt. Ins. Spectroscopic Properties of Inorganic and Organometallic Compounds = Spectrosc. Prop. Inorg. Organomet. Compd. Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 37 = Spec Per Rep Spectro Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 37 = Spec. Per. Rep. Spectro. Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 38 = Spec Per Rep Spectro Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 38 = Spec. Per. Rep. Spectro. Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 39 = Spec Per Rep Spectro Spectroscopic Properties of Inorganic and Organometallic Compounds, Vol 39 = Spec. Per. Rep. Spectro. Spectroscopic Studies of Superconductors, Pts A and B = P Soc Photo-opt Ins Spectroscopic Studies of Superconductors, Pts A and B = P. Soc. Photo-opt. Ins. Spectroscopic Techniques in Biophysics = Ivsla Ser Spectroscopic Techniques in Biophysics = Ivsla. Ser. Spectroscopic Tools for The Analysis of Electrochemical Systems = Elec Soc S Spectroscopic Tools for The Analysis of Electrochemical Systems = Elec. Soc. S. Spectroscopie Atmospheric Environmental Monitoring Techniques = P Soc Photo-opt Ins Spectroscopie Atmospheric Environmental Monitoring Techniques = P. Soc. Photo-opt. Ins. Spectroscopy (Amsterdam, Netherlands) = Spectroscopy (Amsterdam, Neth.) Spectroscopy and Dynamics of Collective Excitations in Solids = Nato Adv Sci I B-phy Spectroscopy and Dynamics of Collective Excitations in Solids = Nato. Adv. Sci. I. B-phy. Spectroscopy and Spectral Analysis = Spectrosc Spect Anal Spectroscopy and Spectral Analysis = Spectrosc. Spect. Anal. Spectroscopy-an International Journal = Spectrosc-int J Spectroscopy-an International Journal = Spectrosc-int. J. Spectroscopy Asia = Spectrosc. Asia Spectroscopy-biomedical Applications = Spectrosc-biomed App Spectroscopy-biomedical Applications = Spectrosc-biomed. App. Spectroscopy Europe = Spectrosc. Eur. Spectroscopy From Space = Nato Sci Ser Ii-math Spectroscopy From Space = Nato. Sci. Ser. Ii-math. Spectroscopy From Space = Nato Sci Ser Ii Math Spectroscopy From Space = Nato. Sci. Ser. Ii. Math. Spectroscopy Letters = Spectrosc Lett Spectroscopy Letters = Spectrosc. Lett. Spectroscopy of Biological Molecules = Roy Soc Ch Spectroscopy of Biological Molecules = Roy. Soc. Ch. Spectroscopy of Emerging Materials = Nato Sci Ser Ii Math Spectroscopy of Emerging Materials = Nato. Sci. Ser. Ii. Math. Spectroscopy of Heavy Nuclei 1989 = Inst Phys Conf Ser Spectroscopy of Heavy Nuclei 1989 = Inst. Phys. Conf. Ser. Spectroscopy of Inorganic Bioactivators = Nato Adv Sci I C-mat Spectroscopy of Inorganic Bioactivators = Nato. Adv. Sci. I. C-mat. Spectroscopy of Mott Insulators and Correlated Metals = Springer Series Soli Spectroscopy of Mott Insulators and Correlated Metals = Springer. Series. Soli. Spectroscopy of Semiconductor Microstructures = Nato Adv Sci I B-phy Spectroscopy of Semiconductor Microstructures = Nato. Adv. Sci. I. B-phy. Spectroscopy of Semiconductors = Semiconduct Semimet Spectroscopy of Semiconductors = Semiconduct. Semimet. Spectroscopy of Systems With Spatially Confined Structures = Nato Sci Ser Ii-math Spectroscopy of Systems With Spatially Confined Structures = Nato. Sci. Ser. Ii-math. Spectroscopy of Systems With Spatially Confined Structures = Nato Sci Ser Ii Math Spectroscopy of Systems With Spatially Confined Structures = Nato. Sci. Ser. Ii. Math. Spectroscopy = Spectroscopy Spectroscopy = Spectroscopy-us Spectroscopy = Spectroscopy-us. Spectrum and Dynamics = Crm Proc & Lect Note Spectrum and Dynamics = Crm. Proc. &. Lect. Note. Spectrum Auctions and Competition in Telecommunications = Cesifo Seminar Ser Spectrum Auctions and Competition in Telecommunications = Cesifo. Seminar. Ser. Spectrum (Lexington, Ky.) = Spectrum Spectrum Literaturwissenschaft = Spect Literaturwiss Spectrum Literaturwissenschaft = Spect. Literaturwiss. Spectrum Literaturwissenschaft = Spectr Literaturwiss Spectrum Literaturwissenschaft = Spectr. Literaturwiss. Spectrum Series = Spectr Ser Spectrum Series = Spectr. Ser. Spectrum = Spectrum Spectrum-the Journal of State Government = Spectrum-j State Gov Spectrum-the Journal of State Government = Spectrum-j. State Gov. Speculations in science and technology = Speculations Sci Technol Speculations in Science and Technology = Speculations Sci. Technol. Speculations in Science and Technology = Speculat Sci Technol Speculations in Science and Technology = Speculat. Sci. Technol. Speculative Grammar and Stoic Language Theory in Medieval Allegorical Narrative: From Prudentius to Alan of Lille = Stud Mediev Hist Cul Speculative Grammar and Stoic Language Theory in Medieval Allegorical Narrative: From Prudentius to Alan of Lille = Stud. Mediev. Hist. Cul. Speculum-a Journal of Medieval Studies = Speculum Speculum-a Journal of Medieval Studies = Speculum. Speculum = Speculum Spe Drilling & Completion = Spe Drill Completion Spe Drilling & Completion = Spe Drill. Completion Speech Acoustics and Phonetics = Text Speech Lang Tec Speech Acoustics and Phonetics = Text. Speech Lang. Tec. Speech Acts Across Cultures: Challenges to Communication in A Second Language = Stud Lang Acquis Speech Acts Across Cultures: Challenges to Communication in A Second Language = Stud. Lang. Acquis. Speech and Audio Processing in Adverse Environments = Signals Commun Techn Speech and Audio Processing in Adverse Environments = Signals. Commun. Techn. Speech and Thought Representation in English = Top Engl Linguist Speech and Thought Representation in English = Top. Engl. Linguist. Speech, Audio, Image and Biomedical Signal Processing Using Neural Networks = Stud Comput Intell Speech, Audio, Image and Biomedical Signal Processing Using Neural Networks = Stud. Comput. Intell. Speech Communication = Speech Commun Speech Communication = Speech Commun. Speech Dereverberation = Signals Commun Techn Speech Dereverberation = Signals. Commun. Techn. Speech Disorders: Causes, Treatment and Social Effects = Lang Linguist Ser Speech Disorders: Causes, Treatment and Social Effects = Lang. Linguist. Ser. Speech Monographs = Speech Monogr Speech Monographs = Speech Monogr. Speech Motor Control and Stuttering = Int Congr Ser Speech Motor Control and Stuttering = Int. Congr. Ser. Speech pathology and therapy = Speech Pathol Ther Speech Pathology and Therapy = Speech Pathol. Ther. Speech Processing in Modern Communication: Challenges and Perspectives = Springer Top Sign Pr Speech Processing in Modern Communication: Challenges and Perspectives = Springer. Top. Sign. Pr. Speech Production and Speech Modelling = Nato Adv Sci I D-beh Speech Production and Speech Modelling = Nato. Adv. Sci. I. D-beh. Speech Production: Motor Control, Brain Research and Fluency Disorders = Int Congr Ser Speech Production: Motor Control, Brain Research and Fluency Disorders = Int. Congr. Ser. Speech Spectrum Analysis = Signals Commun Techn Speech Spectrum Analysis = Signals. Commun. Techn. Speech Teacher = Speech Teach Speech Teacher = Speech Teach. Speeding Up Innovation = Eirma Conf Speeding Up Innovation = Eirma. Conf. Speedup = Speedup Spe Formation Evaluation = Spe Formation Eval Spe Formation Evaluation = Spe Formation Eval. Spe Journal = Spe J Spe Journal = Spe J. Spektrum-Bibliothek = Spektrum-Bibl. Spektrum Der Augenheilkunde = Spektrum Augenheilkd Spektrum Der Augenheilkunde = Spektrum Augenheilkd. Spektrum der Wissenschaft = Spektrum Wiss. Spektrum-HochschulTaschenbuch = Spektrum-HochschulTaschenb. Spektrum Lehrbuch = Spektrum Lehrbuch Spekulation und Erfahrung = Spekulation Erfahrung Abt. II Unters. Spelling Skills: Acquisition, Abilities, and Reading Connection = Educ Compet Glob Wor Spelling Skills: Acquisition, Abilities, and Reading Connection = Educ. Compet. Glob. Wor. Spenser Newsletter = Spenser Newsl Spenser Newsletter = Spenser Newsl. Spe Production & Facilities = Spe Prod Facil Spe Production & Facilities = Spe Prod. Facil. SPE Production & Facilities = SPE Prod. Facil. Spe Production & Operations = Spe Prod Oper Spe Production & Operations = Spe Prod. Oper. SPE Production & Operations = SPE Prod. Oper. Spe Reservoir Engineering = Spe Reservoir Eng Spe Reservoir Engineering = Spe Reservoir Eng. Spe Reservoir Evaluation & Engineering = Spe Reserv Eval Eng Spe Reservoir Evaluation & Engineering = Spe Reserv. Eval. Eng. SPE Reservoir Evaluation & Engineering = SPE Reservoir Eval. Eng. Sperimentale = Sperimental Sperimentale = Sperimental. Sperimentale = Sperimentale Sperimental = Sperimentale Sperimental = Sperimentale. Sperry Symposium Series = Sperry Symp Ser Sperry Symposium Series = Sperry Symp. Ser. Spe Transactions = Spe Trans Spe Transactions = Spe Trans. Spezielles Gesellschaftsrecht Fur Borsennotierte Aktiengesellschaften in Den Eg-mitgliedstaaten = Schr Eur Int Priv B Spezielles Gesellschaftsrecht Fur Borsennotierte Aktiengesellschaften in Den Eg-mitgliedstaaten = Schr. Eur. Int. Priv. B. Spherical Functions of Matematical Geosciences: Scalar, Vectorial, and Tensorial Setup = Adv Geophys Env Mech Spherical Functions of Matematical Geosciences: Scalar, Vectorial, and Tensorial Setup = Adv. Geophys. Env. Mech. Spherical Functions of Mathematical Geosciences: A Scalar, Vectorial, and Tensorial Setup = Adv Geophys Env Mech Spherical Functions of Mathematical Geosciences: A Scalar, Vectorial, and Tensorial Setup = Adv. Geophys. Env. Mech. Spherical Tube Hypersurfaces = Lect Notes Math Spherical Tube Hypersurfaces = Lect. Notes. Math. Sphingolipid Metabolism and Cell Signaling, Pt A = Method Enzymol Sphingolipid Metabolism and Cell Signaling, Pt A = Method. Enzymol. Sphingolipid Metabolism and Cell Signaling, Pt B = Method Enzymol Sphingolipid Metabolism and Cell Signaling, Pt B = Method. Enzymol. Sphingolipids and Metabolic Disease = Adv Exp Med Biol Sphingolipids and Metabolic Disease = Adv. Exp. Med. Biol. Sphingolipids As Signaling and Regulatory Molecules = Adv Exp Med Biol Sphingolipids As Signaling and Regulatory Molecules = Adv. Exp. Med. Biol. Sphingolipids As Signaling Modulators in The Nervous System = Ann Ny Acad Sci Sphingolipids As Signaling Modulators in The Nervous System = Ann. Ny. Acad. Sci. Spices = Acs Sym Ser Spices = Acs. Sym. Ser. Spie Eco-photonics 2011: Sustainable Design, Manufacturing, and Engineering Workforce Education for A Green Future = Proc Spie Spie Eco-photonics 2011: Sustainable Design, Manufacturing, and Engineering Workforce Education for A Green Future = Proc. Spie Spie Eco-photonics 2011: Sustainable Design, Manufacturing, and Engineering Workforce Education for A Green Future = P Soc Photo-opt Ins Spie Eco-photonics 2011: Sustainable Design, Manufacturing, and Engineering Workforce Education for A Green Future = P. Soc. Photo-opt. Ins. Spiegel Der Letteren = Spiegel Lett Spiegel Der Letteren = Spiegel Lett. Spiegel historiael = Spieg Hist Spiel in Der Asthetik: Systematische Uberlegungen Zu Kants Kritik Der Urteilskraft = Kantstudien Spiel in Der Asthetik: Systematische Uberlegungen Zu Kants Kritik Der Urteilskraft = Kantstudien. Spie Proceedings Series = Spie Proc Ser Spie Proceedings Series = Spie Proc. Ser. SPIE Reviews = SPIE Rev. Spies of The Kaiser = St Antonys Ser Spies of The Kaiser = St. Antonys. Ser. Spillover and Migration of Surface Species On Catalysts = Stud Surf Sci Catal Spillover and Migration of Surface Species On Catalysts = Stud. Surf. Sci. Catal. Spillovers and Innovations: Space, Environment, and The Economy = Interd Stud Econ Man Spillovers and Innovations: Space, Environment, and The Economy = Interd. Stud. Econ. Man. Spill Science and Technology Bulletin = Spill Sci. Technol. Bull. Spill Science & Technology Bulletin = Spill Sci Technol B Spill Science & Technology Bulletin = Spill Sci. Technol. B. Spin 2000 = Aip Conf Proc Spin 2000 = Aip. Conf. Proc. Spin 2002 = Aip Conf Proc Spin 2002 = Aip. Conf. Proc. Spinal Cord Injury Pain: Assessment, Mechanisms, Management = Prog Pain Res Manag Spinal Cord Injury Pain: Assessment, Mechanisms, Management = Prog. Pain. Res. Manag. Spinal Cord=Spinal Cord;; Spinal Cord = Spinal Cord Spinal cord : the official journal of the International Medical Society of Paraplegia = Spinal Cord Spinal Cord Trauma: Regeneration, Neural Repair and Functional Recovery = Prog Brain Res Spinal Cord Trauma: Regeneration, Neural Repair and Functional Recovery = Prog. Brain. Res. Spinal Imaging: Diagnostic Imaging of The Spine and Spinal Cord = Med Radiol Diagn Ima Spinal Imaging: Diagnostic Imaging of The Spine and Spinal Cord = Med. Radiol. Diagn. Ima. Spinal Implants: Are We Evaluating Them Appropriately = Am Soc Test Mater Spinal Implants: Are We Evaluating Them Appropriately = Am. Soc. Test. Mater. Spin Crossover in Transition Metal Compounds Iii = Top Curr Chem Spin Crossover in Transition Metal Compounds Iii = Top. Curr. Chem. Spin Crossover in Transition Metal Compounds Ii = Top Curr Chem Spin Crossover in Transition Metal Compounds Ii = Top. Curr. Chem. Spin Crossover in Transition Metal Compounds I = Top Curr Chem Spin Crossover in Transition Metal Compounds I = Top. Curr. Chem. Spin Dynamics in Confined Magnetic Structures Iii = Top Appl Phys Spin Dynamics in Confined Magnetic Structures Iii = Top. Appl. Phys. Spin Dynamics in Confined Magnetic Structures Ii = Top Appl Phys Spin Dynamics in Confined Magnetic Structures Ii = Top. Appl. Phys. Spin Dynamics in Confined Magnetic Structures I = Top Appl Phys Spin Dynamics in Confined Magnetic Structures I = Top. Appl. Phys. Spine Journal = Spine J Spine Journal = Spine J. Spine (Philadelphia, Pa. : 1986) = Spine Spine=Spine;; Spine = Spine Spin Glasses = Lect Notes Math Spin Glasses = Lect. Notes. Math. Spin Glasses: Statics and Dynamics = Prog Probab Spin Glasses: Statics and Dynamics = Prog. Probab. Spin Model Checking and Software Verification = Lect Notes Comput Sc Spin Model Checking and Software Verification = Lect. Notes. Comput. Sc. Spin Model Checking and Software Verificaton = Lect Notes Comput Sc Spin Model Checking and Software Verificaton = Lect. Notes. Comput. Sc. Spinner (New Bedford, Mass.) = Spinner Spinning Particles - Semiclassics and Spectral Statistics = Springer Tr Mod Phys Spinning Particles - Semiclassics and Spectral Statistics = Springer. Tr. Mod. Phys. Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer Trac Mod Ph Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer. Trac. Mod. Ph. Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer Tracts Mod Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer. Tracts. Mod. Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer Tr Mod Phys Spin-orbit Coupling Effects in Two-dimensional Electron and Hole Systems = Springer. Tr. Mod. Phys. Spinors in Four-dimensional Spaces = Prog Math Phys Spinors in Four-dimensional Spaces = Prog. Math. Phys. Spinoza = Routl Philos Spinoza = Routl. Philos. Spinoziana = Less Intell Spinoziana = Less. Intell. Spin Physics = Aip Conf Proc Spin Physics = Aip. Conf. Proc. Spin Physics in Semiconductors = Springer Ser Solid-s Spin Physics in Semiconductors = Springer. Ser. Solid-s. Spin: Poincare Seminar 2007 = Prog Math P Spin: Poincare Seminar 2007 = Prog. Math. P. Spin: Poincare Seminar 2007 = Prog Math Phys Spin: Poincare Seminar 2007 = Prog. Math. Phys. Spin-statistics Connection and Commutation Relations = Aip Conf Proc Spin-statistics Connection and Commutation Relations = Aip. Conf. Proc. Spin Structure At Long Distance, Workshop Proceedings = Aip Conf Proc Spin Structure At Long Distance, Workshop Proceedings = Aip. Conf. Proc. Spin Structure of The Nucleon = Nato Sci Ser Ii Math Spin Structure of The Nucleon = Nato. Sci. Ser. Ii. Math. Spintronics Iii = P Soc Photo-opt Ins Spintronics Iii = P. Soc. Photo-opt. Ins. Spintronics Ii = Proc Spie Spintronics Ii = Proc. Spie. Spintronics Ii = P Soc Photo-opt Ins Spintronics Ii = P. Soc. Photo-opt. Ins. Spintronics = Mater Res Soc Symp P Spintronics = Mater. Res. Soc. Symp. P. Spintronics = Proc Spie Spintronics = Proc. Spie. Spintronics = P Soc Photo-opt Ins Spintronics = P. Soc. Photo-opt. Ins. Spintronics = Semiconduct Semimet Spintronics = Semiconduct. Semimet. Spirales = Spirales Spirit in The Church and The World = Ann Pub Coll Theol S Spirit in The Church and The World = Ann. Pub. Coll. Theol. S. Spirituality and Community = Gay Men I R Spirituality and Community = Gay. Men. I. R. Spirituality and Ethics in Management = Issues Bus Ethics Spirituality and Ethics in Management = Issues. Bus. Ethics Spiritus-a Journal of Christian Spirituality = Spiritus Spiritus-a Journal of Christian Spirituality = Spiritus. Spisanie na Bulgarskata akademiia na naukite. Bulgarska akademiia na naukite = Spis Blg Akad Nauk Spitalul = Spitalul Spitzer Space Telescope: New Views of The Cosmos = Astr Soc P Spitzer Space Telescope: New Views of The Cosmos = Astr. Soc. P. Spixiana = Spixiana Splanchnic Circulation = Upd Int Car Splanchnic Circulation = Upd. Int. Car. Splice : the splice of life = Splice Life Split Hopkinson (kolsky) Bar: Design, Testing and Applications = Mech Eng Ser Split Hopkinson (kolsky) Bar: Design, Testing and Applications = Mech. Eng. Ser. Splitting Deformations of Degenerations of Complex Curves = Lect Notes Math Splitting Deformations of Degenerations of Complex Curves = Lect. Notes. Math. Splitting Methods for Partial Differential Equations With Rough Solutions: Analysis and Matlab Programs = Ems Ser Lect Math Splitting Methods for Partial Differential Equations With Rough Solutions: Analysis and Matlab Programs = Ems. Ser. Lect. Math. Spoken Multimodal Human-computer Dialogue in Mobile Environments = Text Speech Lang Tec Spoken Multimodal Human-computer Dialogue in Mobile Environments = Text. Speech. Lang. Tec. Spoletium. Rivista di arte, storia, cultura = Spoletium Spon Research = Spon Res Spon Research = Spon Res. Spontaneous Formation of Space-time Structures and Criticality = Nato Adv Sci I C-mat Spontaneous Formation of Space-time Structures and Criticality = Nato. Adv. Sci. I. C-mat. Spore (English edition) = Spore Sport Aerodynamics = Cism Courses Lect Sport Aerodynamics = Cism. Courses. Lect. Sport and Exercise Psychology: The Key Concepts, Second Edition = Routl Key Guides Sport and Exercise Psychology: The Key Concepts, Second Edition = Routl. Key Guides. Sport Education and Society = Sport Educ Soc Sport Education and Society = Sport Educ. Soc. Sport for All: Into The 90's = Com Phys Ed Sport for All: Into The 90's = Com. Phys. Ed. Sport History Review = Sport Hist Rev Sport History Review = Sport Hist. Rev. Sporting Bodies, Damaged Selves = Res Sociol Sport Sporting Bodies, Damaged Selves = Res. Sociol. Sport. Sport in The Global Society = Sport Glob Soc Sport in The Global Society = Sport Glob. Soc. Sport, Masculinities and The Body = Routl Res Sport Cult Sport, Masculinities and The Body = Routl. Res. Sport. Cult. Sport Psychologist = Sport Psychol Sport Psychologist = Sport Psychol. Sport Psychology = Sports Athl Prep Per Sport Psychology = Sports. Athl. Prep. Per. Sports and Athletics Preparation Performance and Psychology = Sports Athl Prep Per Sports and Athletics Preparation Performance and Psychology = Sports Athl. Prep. Per. Sports biomechanics / International Society of Biomechanics in Sports = Sports Biomech Sports Biomechanics = Sport Biomech Sports Biomechanics = Sport. Biomech. Sports Biomechanics = Sports Biomech. Sport Science Review = Sport Sci Rev Sport Science Review = Sport Sci. Rev. Sports Data Mining = Integr Ser Inform Sy Sports Data Mining = Integr. Ser. Inform. Sy. Sports Engineering = Sports Eng. Sports Exercise and Injury = Sports Exerc Injury Sports Exercise and Injury = Sports Exerc. Injury Sport, Sexualities and Queer/theory = Routl Crit Stud Spor Sport, Sexualities and Queer/theory = Routl. Crit. Stud. Spor. Sports in School, Association and Industry = Schrift Deut Verein Sports in School, Association and Industry = Schrift. Deut. Verein. Sports Materials, Modelling and Simulation = Adv Mater Res-switz Sports Materials, Modelling and Simulation = Adv. Mater. Res-switz. Sports medicine and arthroscopy review = Sports Med Arthrosc Sports Medicine and Arthroscopy Review = Sports Med Arthrosc Sports Medicine and Arthroscopy Review = Sports Med. Arthrosc. Sports, Medicine and Health = Int Congr Ser Sports, Medicine and Health = Int. Congr. Ser. Sports medicine (Auckland, N.Z.) = Sports Med Sports Medicine=Sports Med;; Sports Medicine = Sports Med Sports Medicine = Sports Med. Sports Medicine Standards and Malpractice Reporter = Sports Med Stand Mal Sports Medicine Standards and Malpractice Reporter = Sports Med. Stand. Mal. Sports, Narrative, and Nation in The Fiction of F. Scott Fitzgerald = Stud Major Lit Autho Sports, Narrative, and Nation in The Fiction of F. Scott Fitzgerald = Stud. Major. Lit. Autho. Sport, Spiele, Kampfe: Studien Zur Historischen Anthropologie Und Zur Philosophie Des Sports = Spor Spiel Kamp Sport, Spiele, Kampfe: Studien Zur Historischen Anthropologie Und Zur Philosophie Des Sports = Spor. Spiel. Kamp. Sports Science and Sports Engineering = Sport Sci Sport Eng Sports Science and Sports Engineering = Sport. Sci. Sport. Eng. Sportverletzung Sportschaden : Organ der Gesellschaft fur Orthopadisch-Traumatologische Sportmedizin = Sportverletz Sportschaden Sportverletzung-sportschaden = Sportverletz Sportsc Sportverletzung-sportschaden = Sportverletz. Sportsc. Sportverletzung Sportschaden=Sportverletz Sportschaden;; Sportverletzung Sportschaden = Sportverletz. Sportschaden Spotlight On Modern Transformer Design = Power Syst Spotlight On Modern Transformer Design = Power. Syst. Spoudai=Spoudai Sprachbund in The West African Sahel = Collect Afr Et Lang Sprachbund in The West African Sahel = Collect. Afr. Et. Lang. Sprache Im Bild - Das Bild in Der Sprache: Zur Verknupfung Von Sprache Und Bild Im Massenmedialen Text = Linguist-impulse Ten Sprache Im Bild - Das Bild in Der Sprache: Zur Verknupfung Von Sprache Und Bild Im Massenmedialen Text = Linguist-impulse. Ten. Sprache in Der Organisation: Sprachreflexive Verfahren Im Systemischen Beratungsgesprach = Linguist-impulse Ten Sprache in Der Organisation: Sprachreflexive Verfahren Im Systemischen Beratungsgesprach = Linguist-impulse. Ten. Sprache & Kognition = Sprache Kognit Sprache & Kognition = Sprache Kognit. Sprache-stimme-gehor = Sprache-stimme-gehor Sprache Und Schrift Aus Handlungstheoretischer Perspektive = Stud Linguist Ger Sprache Und Schrift Aus Handlungstheoretischer Perspektive = Stud. Linguist. Ger. Sprache Und Tabu-interpretationen Zu Franzosischen Und Italienischen Euphemismen = Beih Z Roman Philol Sprache Und Tabu-interpretationen Zu Franzosischen Und Italienischen Euphemismen = Beih. Z. Roman. Philol. Sprache Und Wissen = Sprache Wissen Sprachgeschichte: Ein Handbuch Zur Geschichte Der Deutschen Sprache Und Ihrer Erforschung, Teilband 4, Auflage 2 = Handb Sprach Kommun Sprachgeschichte: Ein Handbuch Zur Geschichte Der Deutschen Sprache Und Ihrer Erforschung, Teilband 4, Auflage 2 = Handb. Sprach. Kommun. Sprachkunst. Beiträge zur Literaturwissenschaft = Sprachkunst Sprachkunst = Sprachkunst Sprachliche Benennung Von Personen Aus Konstruktivistischer Sicht = Linguist-impulse Ten Sprachliche Benennung Von Personen Aus Konstruktivistischer Sicht = Linguist-impulse. Ten. Sprachliche Kurze-konzeptuelle, Strukturelle Und Pragmatische Aspekte = Linguist-impulse Ten Sprachliche Kurze-konzeptuelle, Strukturelle Und Pragmatische Aspekte = Linguist-impulse. Ten. Sprachwahl in Europaischen Unternehmen = Sociolinguistica Sprachwahl in Europaischen Unternehmen = Sociolinguistica. Sprachwissenschaft = Sprachwissenschaft Sprawozdania z czynnosci i posiedzen - Lodzkie Towarzystwo Naukowe = Spraw Czynnosci Posiedz Lodz Tow Nauk Spr-catalysis = Spr-catal Spr-catalysis = Spr-catal. Spread of Novels: Translation and Prose Fiction in The Eighteenth Century = Transl Transnat Spread of Novels: Translation and Prose Fiction in The Eighteenth Century = Transl. Transnat. Springer Aerospace Technology = Springer Aerosp Tech Springer Aerospace Technology = Springer Aerosp. Tech. Springerbriefs in Agriculture = Sprbrief Agric Springerbriefs in Agriculture = Sprbrief. Agric. Springer Briefs in Applied Sciences and Technology = Spr Brief Appl Sci Springer Briefs in Applied Sciences and Technology = Spr. Brief. Appl. Sci. Springerbriefs in Applied Sciences and Technology = Springerbr Appl Sci Springerbriefs in Applied Sciences and Technology = Springerbr. Appl. Sci. Springerbriefs in Business = Springerbrief Bus Springerbriefs in Business = Springerbrief. Bus. Springer Briefs in Computer Science = Spr Brief Comput Sci Springer Briefs in Computer Science = Spr. Brief. Comput. Sci. Springerbriefs in Computer Science = Springerbrief Comput Springerbriefs in Computer Science = Springerbrief. Comput. Springerbriefs in Economics = Springerbrief Econ Springerbriefs in Economics = Springerbrief. Econ. Springerbriefs in Education = Springerbriefs Educ Springerbriefs in Education = Springerbriefs Educ. Springerbriefs in Electrical and Computer Engineering = Sprbrief Elect Springerbriefs in Electrical and Computer Engineering = Sprbrief. Elect. Springerbriefs in Electrical and Computer Engineering = Springerbriefs Elect Springerbriefs in Electrical and Computer Engineering = Springerbriefs Elect. Springerbriefs in Environmental Science = Springerbr Env Sci Springerbriefs in Environmental Science = Springerbr. Env. Sci. Springerbriefs in Mathematics = Springerbrief Math Springerbriefs in Mathematics = Springerbrief. Math. Springerbriefs in Microbiology = Springerbrief Micro Springerbriefs in Microbiology = Springerbrief. Micro. Springerbriefs in Physics = Springerbrief Phys Springerbriefs in Physics = Springerbrief. Phys. Springer Briefs in Physics = Springer Briefs Phys Springer Briefs in Physics = Springer Briefs Phys. Springerbriefs in Population Studies = Springerbrief Popul Springerbriefs in Population Studies = Springerbrief. Popul. Springerbriefs in Speech Technology = Springerbrief Speech Springerbriefs in Speech Technology = Springerbrief. Speech Springerbriefs in Statistics = Springerbrief Stat Springerbriefs in Statistics = Springerbrief. Stat. Springer Complexity = Springer Complex Springer Complexity = Springer Complex. Springer Computer Science = Spring Comp Sci Springer Computer Science = Spring. Comp. Sci. Springer Finance = Springer Financ Springer Finance = Springer Financ. Springer Finance = Springer Finance Springer Finance = Springer Finance Springer Handbook of Auditory Research = Spr Hdb Aud Springer Handbook of Auditory Research = Spr. Hdb. Aud. Springer Handbook of Auditory Research = Springer Handb Audit Springer Handbook of Auditory Research = Springer Handb. Audit. Springer International Series in Engineering and Computer Science = Springer Int Ser Eng Springer International Series in Engineering and Computer Science = Springer Int. Ser. Eng. Springer International Series in Engineering and Computer Science = Spring Int Ser Eng C Springer International Series in Engineering and Computer Science = Spring. Int. Ser. Eng. C. Springer Lab Manual = Spring Lab Man Springer Lab Manual = Spring. Lab Man. Springer Laboratory Manuals in Polymer Science = Springer Lab Man Pol Springer Laboratory Manuals in Polymer Science = Springer Lab. Man. Pol. Springer Lehrbuch Mathematik = Springer Lehrbuch Math. Springer-Lehrbuch = Springer-Lehrbuch Springer Monographs in Mathematics = Springer Monogr. Math. Springer Monographs in Mathematics = Springer Monogr Math Springer Monographs in Mathematics = Springer Monogr. Math. Springer-praxis Books in Astronautical Engineering = S-p B Astronaut Eng Springer-praxis Books in Astronautical Engineering = S-p. B. Astronaut. Eng. Springer-praxis Books in Astronomy and Planetary Sciences = S-p B Astron Planet Springer-praxis Books in Astronomy and Planetary Sciences = S-p. B. Astron. Planet. Springer-praxis Books in Astronomy and Space Sciences = S-p B Astron Space Springer-praxis Books in Astronomy and Space Sciences = S-p. B. Astron. Space Springer-praxis Books in Environmental Sciences = S-p B Environ Sci Springer-praxis Books in Environmental Sciences = S-p. B. Environ. Sci. Springer-praxis Books in Space Exploration = S-p B Space Explor Springer-praxis Books in Space Exploration = S-p. B. Space Explor. Springer Praxis Books = Springer-prax Books Springer Praxis Books = Springer-prax. Books Springer Proceedings in Physics = Springer Proc Phys Springer Proceedings in Physics = Springer Proc. Phys. Springer Protocols Handbooks = Springer Protoc Hand Springer Protocols Handbooks = Springer Protoc. Hand. Springer Seminars in Immunopathology = Springer Semin Immun Springer Seminars in Immunopathology = Springer Semin. Immun. Springer seminars in immunopathology = Springer Semin Immunopathol Springer Seminars in Immunopathology = Springer Semin. Immunopathol. Springer Seminars In Immunopathology=Springer Semin Immunopathol;; Springer Series in Accounting Scholarship = Springer Ser Account Springer Series in Accounting Scholarship = Springer Ser. Account. Springer Series in Advanced Manufacturing = Springer Ser Adv Man Springer Series in Advanced Manufacturing = Springer Ser. Adv. Man. Springer Series in Advanced Manufacturing = Spr Ser Adv Manuf Springer Series in Advanced Manufacturing = Spr. Ser. Adv. Manuf. Springer Series in Advanced Microelectronics = Spr Ser Adv Microele Springer Series in Advanced Microelectronics = Spr. Ser. Adv. Microele. Springer Series in Biophysics = Springer Ser Biophys Springer Series in Biophysics = Springer Ser. Biophys. Springer Series in Chemical Physics = Springer Ser Chem Ph Springer Series in Chemical Physics = Springer Ser. Chem. Ph. Springer Series in Chemical Physics = Springer Ser. Chem. Phys. Springer Series in Chemical Physics = Springer Series Chem Springer Series in Chemical Physics = Springer Series Chem. Springer Series in Cognitive and Neural Systems = Springer Ser Cog Neu Springer Series in Cognitive and Neural Systems = Springer Ser. Cog. Neu. Springer Series in Computational Mathematics = Springer Ser. Comput. Math. Springer Series in Computational Mathematics = Spr S Comp Springer Series in Computational Mathematics = Spr. S. Comp. Springer Series in Computational Mathematics = Spr Ser Comput Math Springer Series in Computational Mathematics = Spr. Ser. Comput. Math. Springer Series in Computational Neuroscience = Spr Ser Comput Neuro Springer Series in Computational Neuroscience = Spr. Ser. Comput. Neuro. Springer Series in Discrete Mathematics and Theoretical Computer Science = Springer Ser. Discrete Math. Theor. Comput. Sci. Springer Series in Discrete Mathematics and Theoretical Computer Science = Spr S Disc Math Springer Series in Discrete Mathematics and Theoretical Computer Science = Spr. S. Disc. Math. Springer Series in Electronics and Photonics = Sprin S Ele Springer Series in Electronics and Photonics = Sprin. S. Ele. Springer Series in Game Theory = Springer Ser Game Th Springer Series in Game Theory = Springer Ser. Game Th. Springer Series in Geomechanics and Geoengineering = Springer Ser Geomech Springer Series in Geomechanics and Geoengineering = Springer Ser. Geomech. Springer Series in Geomechanics and Geoengineering = Spr Ser Geomch Geong Springer Series in Geomechanics and Geoengineering = Spr. Ser. Geomch. Geong. Springer Series in Information Sciences = Springer Ser. Inform. Sci. Springer Series in Materials Science = Springer Series Mate Springer Series in Materials Science = Springer Series Mate. Springer Series in Materials Science = Springer Ser Mater S Springer Series in Materials Science = Springer Ser. Mater. S. Springer Series in Materials Science = Springer Ser. Mater. Sci. Springer Series in Neuropsychology = Spr S Neur Springer Series in Neuropsychology = Spr. S. Neur. Springer Series in Nonlinear Dynamics = Springer Ser. Nonlinear Dynam. Springer Series in Operations Research and Financial Engineering = Springer Ser Oper Re Springer Series in Operations Research and Financial Engineering = Springer Ser. Oper. Re. Springer Series in Operations Research = Springer Ser. Oper. Res. Springer Series in Opical Sciences = Springer Ser. Opt. Sci. Springer Series in Optical Sciences = Springer Series Opti Springer Series in Optical Sciences = Springer Series Opti. Springer Series in Optical Sciences = Springer Ser Opt Sci Springer Series in Optical Sciences = Springer Ser. Opt. Sci. Springer Series in Optimization and Its Applications = Springer Optim Appl Springer Series in Optimization and Its Applications = Springer Optim. Appl. Springer Series in Optimization and Its Applications = Springer Ser Optim A Springer Series in Optimization and Its Applications = Springer Ser. Optim. A. Springer Series in Reliability Engineering = Springer Ser Reliab Springer Series in Reliability Engineering = Springer Ser. Reliab. Springer Series in Reliability Engineering = Spring Ser Reliab En Springer Series in Reliability Engineering = Spring. Ser. Reliab. En. Springer Series in Solid-state Sciences = Springer Series Soli Springer Series in Solid-state Sciences = Springer Series Soli. Springer Series in Solid-state Sciences = Springer Ser Solid-s Springer Series in Solid-state Sciences = Springer Ser. Solid-s. Springer Series in Solid-State Sciences = Springer Ser. Solid-State Sci. Springer Series in Solid-State Sciences = Springer Ser. Solid-State Sci. Springer Series in Statistics: Perspectives in Statistics = Springer Ser. Statist. Perspect. Statist. Springer Series in Statistics = Springer Ser Stat Springer Series in Statistics = Springer Ser. Stat. Springer Series in Statistics = Springer Ser. Statist. Springer Series in Surface Sciences = Springer Ser Surf Sc Springer Series in Surface Sciences = Springer Ser. Surf. Sc. Springer Series in Surface Sciences = Springer Ser. Surf. Sci. Springer Series in Synergetics = Springer Series Syne Springer Series in Synergetics = Springer Series Syne. Springer Series in Synergetics = Springer Ser Synerg Springer Series in Synergetics = Springer Ser. Synerg. Springer Series in Synergetics = Springer Ser. Synergetics Springer Series in Underwater Archaeology = Springer Ser Underw Springer Series in Underwater Archaeology = Springer Ser. Underw. Springer Series On Agent Based Social Systems = Springer Ser Agent B Springer Series On Agent Based Social Systems = Springer Ser. Agent B. Springer Series On Agent Based Social Systems = Sp S Ag Ba So Syst Springer Series On Agent Based Social Systems = Sp. S. Ag. Ba. So. Syst. Springer Series On Artificial Intelligence and Society = Spr S Ai S Springer Series On Artificial Intelligence and Society = Spr. S. Ai. S. Springer Series On Atomic Optical and Plasma Physics = Springer Ser Atom Op Springer Series On Atomic Optical and Plasma Physics = Springer Ser. Atom. Op. Springer Series On Behavior Therapy and Behavioral Medicine = Spr S Beh Springer Series On Behavior Therapy and Behavioral Medicine = Spr. S. Beh. Springer Series On Chemical Sensors and Biosensors = Springer Ser Chem Se Springer Series On Chemical Sensors and Biosensors = Springer Ser. Chem. Se. Springer Series On Demographic Methods and Population Analysis = Springer Ser Demogr Springer Series On Demographic Methods and Population Analysis = Springer Ser. Demogr. Springer Series On Environmental Management = Springer Ser Env Man Springer Series On Environmental Management = Springer Ser. Env. Man. Springer Series On Epidemiology and Health = Springer Ser Epidemi Springer Series On Epidemiology and Health = Springer Ser. Epidemi. Springer Series On Fluorescence = Springer Ser Fluores Springer Series On Fluorescence = Springer Ser. Fluores. Springer Series On Fluorescence = Spr S Fluor Springer Series On Fluorescence = Spr. S. Fluor. Springer series on health care and society = Springer Ser Health Care Soc Springer Series on Health Care and Society = Springer Ser. Health Care Soc. Springer Series On Human Exceptionality = Springer Ser Hum Exc Springer Series On Human Exceptionality = Springer Ser. Hum. Exc. Springer Series On Touch and Haptic Systems = Springer Ser Touch Springer Series On Touch and Haptic Systems = Springer Ser. Touch Springer Series on Wave Phenomena = Springer Ser. Wave Phenomena Springers Forensic Laboratory Science Series = Springer Forens Lab Springers Forensic Laboratory Science Series = Springer. Forens. Lab. Springer Specialist Surgery Series = Springer Spec Surg S Springer Specialist Surgery Series = Springer Spec. Surg. S. Springer Studies in Work and Industry = Springer Stud Work I Springer Studies in Work and Industry = Springer Stud. Work I. Springer Surgery Atlas Series = Springer Surg Atlas Springer Surgery Atlas Series = Springer Surg. Atlas Springer Texts in Statistics = Springer Texts Stat Springer Texts in Statistics = Springer Texts Stat. Springer Texts in Statistics = Springer Texts Statist. Springer Theses-recognizing Outstanding Phd Research = Springer Theses-reco Springer Theses-recognizing Outstanding Phd Research = Springer Theses-reco. Springer Topics in Signal Processing = Springer Top Sign Pr Springer Topics in Signal Processing = Springer Top. Sign. Pr. Springer Tracts in Advanced Robotics = Springer Trac Adv Ro Springer Tracts in Advanced Robotics = Springer Trac. Adv. Ro. Springer Tracts in Advanced Robotics = Springer Tracts Adv Springer Tracts in Advanced Robotics = Springer Tracts Adv. Springer Tracts in Advanced Robotics = Spr Tra Adv Robot Springer Tracts in Advanced Robotics = Spr. Tra. Adv. Robot. Springer Tracts in Modern Physics = Springer Trac Mod Ph Springer Tracts in Modern Physics = Springer Trac. Mod. Ph. Springer Tracts in Modern Physics = Springer Tracts Mod Springer Tracts in Modern Physics = Springer Tracts Mod. Springer Tracts in Modern Physics = Springer Tracts Modern Phys. Springer Tracts in Modern Physics = Springer Tr Mod Phys Springer Tracts in Modern Physics = Springer Tr. Mod. Phys. Springer Tracts in Natural Philosophy = Springer Tracts Nat. Philos. Springer Undergraduate Mathematics Series = Springer Undergrad. Math. Ser. Springer Undergraduate Texts in Mathematics and Technology = Spring Und Text Math Springer Undergraduate Texts in Mathematics and Technology = Spring. Und. Text. Math. Spring Handbooks of Computational Statistics = Spr Hbk Compu Stat Spring Handbooks of Computational Statistics = Spr. Hbk. Compu. Stat. Sprites, Elves and Intense Lightning Discharges = Nato Sci Ser Ii-math Sprites, Elves and Intense Lightning Discharges = Nato. Sci. Ser. Ii-math. Sprites, Elves and Intense Lightning Discharges = Nato Sci Ser Ii Math Sprites, Elves and Intense Lightning Discharges = Nato. Sci. Ser. Ii. Math. Spr-organophosphorus Chemistry = Spr-organophos Chem Spr-organophosphorus Chemistry = Spr-organophos. Chem. Spruce Monocultures in Central Europe - Problems and Prospects = Eur Forest Inst Proc Spruce Monocultures in Central Europe - Problems and Prospects = Eur. Forest. Inst. Proc. Sps-programmierung Mit Iec 61131-3 = Vdi-buch Sps-programmierung Mit Iec 61131-3 = Vdi-buch. Spudasmata : Studien Zur Klassischen Philologie Und Ihren Grenzgebieten = Spudasmata SPUMS journal / South Pacific Underwater Medicine Society = SPUMS J Sputtering By Particle Bombardment = Top Appl Phys Sputtering By Particle Bombardment = Top. Appl. Phys. SPVN : journal of the Society for Peripheral Vascular Nursing = SPVN SPVN = SPVN Spyware and Adware = Adv Inform Secur Spyware and Adware = Adv. Inform. Secur. Square Wave Voltammetry: Theory and Application = Monogr Electrochem Square Wave Voltammetry: Theory and Application = Monogr. Electrochem. Squid Sensors: Fundamentals, Fabrication and Applications = Nato Adv Sci I E-app Squid Sensors: Fundamentals, Fabrication and Applications = Nato. Adv. Sci. I. E-app. Sra-journal of The Society of Research Administrators = Sra-j Soc Res Admin Sra-journal of The Society of Research Administrators = Sra-j. Soc. Res. Admin. SRA journal = SRA J Srdc Publication = Srdc Publ Srdc Publication = Srdc Publ. Srds 2006: 25th Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst Srds 2006: 25th Ieee Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. Srds 2007: 26th Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst Srds 2007: 26th Ieee International Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. Sri 2009: The 10th International Conference On Synchrotron Radiation Instrumentation = Aip Conf Proc Sri 2009: The 10th International Conference On Synchrotron Radiation Instrumentation = Aip. Conf. Proc. Sri Lanka journal of population studies = Sir Lanka J Popul Stud Sri Lanka journal of social sciences = Sri Lanka J Soc Sci Sri Lanka population digest = Sri Lanka Popul Dig Srpski arhiv za celokupno lekarstvo = Srp Arh Celok Lek Srpski Arhiv za Celokupno Lekarstvo = Srp. Arh. Celok. Lek. Srpski Arhiv Za Celokupno Lekarstvo=Srp Arh Celok Lek;; Srpski Arhiv Za Celokupno Lekarstvo = Srp Ark Celok Lek Srpski Arhiv Za Celokupno Lekarstvo = Srp. Ark. Celok. Lek. Ssl and Tls: Theory and Practice = Artech Hse Inf Secur Ssl and Tls: Theory and Practice = Artech. Hse. Inf. Secur. SSO; Schweizerische Monatsschrift fur Zahnheilkunde = SSO Schweiz. Monatsschr. Zahnheilkd. Ssrc Newsletter-social Science Research Council = Ssrc Newsl Ssrc Newsletter-social Science Research Council = Ssrc Newsl. Sssa Miscellaneous Publication = Sssa Misc Publicat Sssa Miscellaneous Publication = Sssa Misc. Publicat. Sssa Special Publications = Sssa Spec Publ Sssa Special Publications = Sssa Spec. Publ. Ssst: 2009 41st Southeastern Symposium On System Theory = Se Sym Sys Thry Ssst: 2009 41st Southeastern Symposium On System Theory = Se. Sym. Sys. Thry. Stability Analysis and Nonlinear Observer Design Using Takagi-sugeno Fuzzy Models = Stud Fuzz Soft Comp Stability Analysis and Nonlinear Observer Design Using Takagi-sugeno Fuzzy Models = Stud. Fuzz. Soft. Comp. Stability Analysis of Fuzzy-model-based Control Systems: Linear-matrix-inequality Approach = Stud Fuzz Soft Comp Stability Analysis of Fuzzy-model-based Control Systems: Linear-matrix-inequality Approach = Stud. Fuzz. Soft. Comp. Stability Analysis of Impulsive Functional Differential Equations = Degruyter Expos Math Stability Analysis of Impulsive Functional Differential Equations = Degruyter. Expos. Math. Stability and Control of Dynamical Systems With Applications = Control Engn Ser Bir Stability and Control of Dynamical Systems With Applications = Control Engn. Ser. Bir. Stability and Control of Dynamical Systems With Applications = Control Eng Ser Birk Stability and Control of Dynamical Systems With Applications = Control Eng. Ser. Birk. Stability and Control: Theory, Methods and Applications = Stab Contr Stability and Control: Theory, Methods and Applications = Stab. Contr. Stability and Control: Theory, Methods and Applications = Stability Control Theory Methods Appl. Stability and Convergence of Mechanical Systems With Unilateral Constraints = Lect Notes Appl Comp Stability and Convergence of Mechanical Systems With Unilateral Constraints = Lect. Notes. Appl. Comp. Stability and Ductility of Steel Structures Under Cyclic Loading = New D Civ E Stability and Ductility of Steel Structures Under Cyclic Loading = New. D. Civ. E. Stability and Growth Pact Experiences and Future Aspects = Schr Ost Ges Eur Ecs Stability and Growth Pact Experiences and Future Aspects = Schr. Ost. Ges. Eur. Ecs. Stability and Optimization of Structures: Generalized Sensitivity Analysis = Mech Eng Ser Stability and Optimization of Structures: Generalized Sensitivity Analysis = Mech. Eng. Ser. Stability and Performance of Slopes and Embankments-ii, Vols 1 and 2 = Geotech Sp Stability and Performance of Slopes and Embankments-ii, Vols 1 and 2 = Geotech. Sp. Stability and Stabilization of Biocatalysts = Progr Biotechnol Stability and Stabilization of Biocatalysts = Progr. Biotechnol. Stability and Stabilization of Enzymes = Stud Org Chem Stability and Stabilization of Enzymes = Stud. Org. Chem. Stability and Stabilization of Nonlinear Systems = Commun Control Eng Stability and Stabilization of Nonlinear Systems = Commun. Control. Eng. Stability and Stabilization of Nonlinear Systems = Lect Notes Contr Inf Stability and Stabilization of Nonlinear Systems = Lect. Notes. Contr. Inf. Stability and Stabilization of Time-delay Systems: An Eigenvalue-based Approach = Adv Des Control Stability and Stabilization of Time-delay Systems: An Eigenvalue-based Approach = Adv. Des. Control. Stability and Wave Motion in Porous Media = Appl Math Sci Stability and Wave Motion in Porous Media = Appl. Math. Sci. Stability Augmentation of A Grid-connected Wind Farm = Green Energy Technol Stability Augmentation of A Grid-connected Wind Farm = Green. Energy. Technol. Stability By Linearization of Einsteins Field Equation = Prog Math Phys Stability By Linearization of Einsteins Field Equation = Prog. Math. Phys. Stability Estimates for Hybrid Coupled Domain Decomposition Methods = Lect Notes Math Stability Estimates for Hybrid Coupled Domain Decomposition Methods = Lect. Notes. Math. Stability of Dynamical Systems: Continuous, Discontinuous, and Discrete Systems = Syst Control-found A Stability of Dynamical Systems: Continuous, Discontinuous, and Discrete Systems = Syst. Control-found. A. Stability of Materials = Nato Adv Sci I B-phy Stability of Materials = Nato. Adv. Sci. I. B-phy. Stability of Materials = Nato Adv Sci Inst Se Stability of Materials = Nato. Adv. Sci. Inst. Se. Stability of Minerals = Min Soc Ser Stability of Minerals = Min. Soc. Ser. Stability of Natural Slopes in The Coastal Plain = Geotech Sp Stability of Natural Slopes in The Coastal Plain = Geotech. Sp. Stability of Nonautonomous Differential Equations = Lect Notes Math Stability of Nonautonomous Differential Equations = Lect. Notes. Math. Stability of Operators and Operator Semigroups = Oper Theory Adv Appl Stability of Operators and Operator Semigroups = Oper. Theory. Adv. Appl. Stability of Particle Motion in Storage Rings = Aip Conf Proc Stability of Particle Motion in Storage Rings = Aip. Conf. Proc. Stability of Queueing Networks = Lect Notes Math Stability of Queueing Networks = Lect. Notes. Math. Stability of Tropical Rainforest Margins: Linking Ecological, Economic and Social Constraints of Land Use and Conservation = Environ Sci Eng Stability of Tropical Rainforest Margins: Linking Ecological, Economic and Social Constraints of Land Use and Conservation = Environ. Sci. Eng. Stability Problems for Stochastic Models = Front Pur Appl Prob Stability Problems for Stochastic Models = Front. Pur. Appl. Prob. Stability Problems for Stochastic Models = Lect Notes Math Stability Problems for Stochastic Models = Lect. Notes. Math. Stability Theory = Int S Num M Stability Theory = Int. S. Num. M. Stability Theory of Switched Dynamical Systems = Commun Control Eng Stability Theory of Switched Dynamical Systems = Commun. Control. Eng. Stability, Variation and Change of Word-order Patterns Over Time = Amst Stud Theory His Stability, Variation and Change of Word-order Patterns Over Time = Amst. Stud. Theory. His. Stabilization and Geosynthetics = Transport Res Rec Stabilization and Geosynthetics = Transport. Res. Rec. Stabilization and Solidification of Hazardous, Radioactive, and Mixed Waste, 2nd Volume = Am Soc Test Mater Stabilization and Solidification of Hazardous, Radioactive, and Mixed Waste, 2nd Volume = Am. Soc. Test. Mater. Stabilization, Growth and Distribution: Linkages in The Knowledge Era = Bell Canada Pap Econ Stabilization, Growth and Distribution: Linkages in The Knowledge Era = Bell. Canada. Pap. Econ. Stabilization of Navier-stokes Flows = Commun Control Eng Stabilization of Navier-stokes Flows = Commun. Control. Eng. Stabilization of Nonlinear Systems Using Receding Horizon Control Schemes: A Parametrized Approach for Fast Systems = Lect Notes Contr Inf Stabilization of Nonlinear Systems Using Receding Horizon Control Schemes: A Parametrized Approach for Fast Systems = Lect. Notes. Contr. Inf. Stabilization of Nonlinear Systems Using Receding-horizon Control Schemes = Lect Notes Contr Inf Stabilization of Nonlinear Systems Using Receding-horizon Control Schemes = Lect. Notes. Contr. Inf. Stabilization, Optimal and Robust Control = Commun Control Eng Stabilization, Optimal and Robust Control = Commun. Control Eng. Stabilization, Safety, and Security of Distributed Systems, 10th International Symposium, Sss 2008 = Lect Notes Comput Sc Stabilization, Safety, and Security of Distributed Systems, 10th International Symposium, Sss 2008 = Lect. Notes. Comput. Sc. Stabilization, Safety, and Security of Distributed Systems = Lect Notes Comput Sc Stabilization, Safety, and Security of Distributed Systems = Lect. Notes. Comput. Sc. Stabilization, Safety, and Security of Distributed Systems, Proceedings = Lect Notes Comput Sc Stabilization, Safety, and Security of Distributed Systems, Proceedings = Lect. Notes. Comput. Sc. Stable and Unstable Homotopy = Fields I Commun Stable and Unstable Homotopy = Fields. I. Commun. Stable and Unstable Homotopy = Fields Inst Commun Stable and Unstable Homotopy = Fields. Inst. Commun. Stable Approximate Evaluation of Unbounded Operators = Lect Notes Math Stable Approximate Evaluation of Unbounded Operators = Lect. Notes. Math. Stable Homotopy Around The Arf-kervaire Invariant = Prog Math Stable Homotopy Around The Arf-kervaire Invariant = Prog. Math. Stable Isotope Geochemistry = Rev Mineral Geochem Stable Isotope Geochemistry = Rev. Mineral. Geochem. Stable Isotope Techniques in The Study of Biological Processes and Functioning of Ecosystems = Curr Plant Sci Biot Stable Isotope Techniques in The Study of Biological Processes and Functioning of Ecosystems = Curr. Plant. Sci. Biot. Stacs 2000: 17th Annual Symposium On Theoretical Aspect of Computer Science = Lect Notes Comput Sc Stacs 2000: 17th Annual Symposium On Theoretical Aspect of Computer Science = Lect. Notes. Comput. Sc. Stacs 2000: 17th Annual Symposium On Theoretical Aspects of Computer Science = Lect Notes Comput Sc Stacs 2000: 17th Annual Symposium On Theoretical Aspects of Computer Science = Lect. Notes. Comput. Sc. Stacs 2003, Proceedings = Lect Notes Comput Sc Stacs 2003, Proceedings = Lect. Notes. Comput. Sc. Stacs 2004, Proceedings = Lect Notes Comput Sc Stacs 2004, Proceedings = Lect. Notes. Comput. Sc. Stacs 2005, Proceedings = Lect Notes Comput Sc Stacs 2005, Proceedings = Lect. Notes. Comput. Sc. Stacs 2006, Proceedings = Lect Notes Comput Sc Stacs 2006, Proceedings = Lect. Notes. Comput. Sc. Stacs 2007, Proceedings = Lect Notes Comput Sc Stacs 2007, Proceedings = Lect. Notes. Comput. Sc. Stacs 90 = Lect Notes Comput Sc Stacs 90 = Lect. Notes. Comput. Sc. Stacs 91 = Lect Notes Comput Sc Stacs 91 = Lect. Notes. Comput. Sc. Stacs 92 = Lect Notes Comput Sc Stacs 92 = Lect. Notes. Comput. Sc. Stacs 97 - 14th Annual Symposium On Theoretical Aspects of Computer Science = Lect Notes Comput Sc Stacs 97 - 14th Annual Symposium On Theoretical Aspects of Computer Science = Lect. Notes. Comput. Sc. Stacs 98 - 15th Annual Symposium On Theoretical Aspects of Computer Science = Lect Notes Comput Sc Stacs 98 - 15th Annual Symposium On Theoretical Aspects of Computer Science = Lect. Notes. Comput. Sc. Stacs'99 - 16th Annual Symposium On Theoretical Aspects of Computer Science = Lect Notes Comput Sc Stacs'99 - 16th Annual Symposium On Theoretical Aspects of Computer Science = Lect. Notes. Comput. Sc. Städel-Jahrbuch = StaedelJb Stadion (Cologne, Germany) = Stadion (Koln) Stadion. Internationale Zeitschrift für Geschichte des Sports = Stadion Stadion = Stadion Stadler Genetics Symposia Series = Stadler Gen Stadler Genetics Symposia Series = Stadler Gen. Stadtburgertum Und Fruhneuzeitliche Sprachstandardisierung = Stud Linguist Ger Stadtburgertum Und Fruhneuzeitliche Sprachstandardisierung = Stud. Linguist. Ger. Stadtehygiene = Stadtehygiene Stadtische Eliten Im Romischen Makedonien: Untersuchungen Zur Formierung Und Struktur = Beitr Altertumskunde Stadtische Eliten Im Romischen Makedonien: Untersuchungen Zur Formierung Und Struktur = Beitr. Altertumskunde. Staff and Educational Development Series = Staff Educ Dev Ser Staff and Educational Development Series = Staff Educ. Dev. Ser. Staff Papers Brookings Institution = Staff Pap Brookings Staff Papers Brookings Institution = Staff Pap. Brookings Staff papers - International Monetary Fund. International Monetary Fund = Staff Pap Int Monet Fund Stages of Deployment of Syngas Cleaning Technologies = Energ Sci Eng Tech Stages of Deployment of Syngas Cleaning Technologies = Energ. Sci. Eng. Tech. Staging Black Feminisms: Identity, Politics, Performance = Perform Interv Staging Black Feminisms: Identity, Politics, Performance = Perform. Interv. Staging Early Modern Romance = Rout Stud Renais Lit Staging Early Modern Romance = Rout. Stud. Renais. Lit. Staging International Feminisms = Stud Int Perform Staging International Feminisms = Stud. Int. Perform. Staging Stigma: A Critical Examination of The American Freak Show = Palg Stud Theat Perf Staging Stigma: A Critical Examination of The American Freak Show = Palg. Stud. Theat. Perf. Stahlbau = Stahlbau Stahl und Eisen = Stahl Eisen Stahl Und Eisen = Stahl Eisen Stained Glass : Worldviews and Social Science = Christ Stud Stained Glass : Worldviews and Social Science = Christ. Stud. Stainless Steels for Medical and Surgical Applications = Am Soc Test Mater Stainless Steels for Medical and Surgical Applications = Am. Soc. Test. Mater. Stain technology = Stain Technol Stain Technology = Stain Technol Stain Technology = Stain Technol. Stairs 2002, Proceedings = Fr Art Int Stairs 2002, Proceedings = Fr. Art. Int. Stairs 2002, Proceedings = Front Artif Intel Ap Stairs 2002, Proceedings = Front. Artif. Intel. Ap. Stairs 2004 = Fr Art Int Stairs 2004 = Fr. Art. Int. Stairs 2006 = Fr Art Int Stairs 2006 = Fr. Art. Int. Stairs 2008 = Fr Art Int Stairs 2008 = Fr. Art. Int. Stakeholders, The Environment and Society = New Perspect Res Cor Stakeholders, The Environment and Society = New. Perspect. Res. Cor. Stal in English-ussr = Stal Engl Stal in English-ussr = Stal Engl. Stalinism in Poland, 1944-1956 = Int Congr Cent E Eur Stalinism in Poland, 1944-1956 = Int. Congr. Cent. E. Eur. Stalins Cold War: Soviet Foreign Policy, Democracy and Communism in Bulgaria, 1941-48 = Glob Confl Secur Stalins Cold War: Soviet Foreign Policy, Democracy and Communism in Bulgaria, 1941-48 = Glob. Confl. Secur. STAL. Sciences et techniques de l'animal de laboratoire = Stal STAL, Sciences et Techniques de l'Animal de Laboratoire = STAL, Sci. Tech. Anim. Lab. Stal' = Stal' Stamm Und Landschaft: Josef Nadler's Konzeption Der Deutschen Literaturgeschichte = Quell Fors Lit Kul G Stamm Und Landschaft: Josef Nadler's Konzeption Der Deutschen Literaturgeschichte = Quell. Fors. Lit. Kul. G. Stammutter Aller Guten Schulen: Das Dessauer Philanthropinum Und Der Deutsche Philanthropismus 1774-1793 = Hallesche Beitr Eur Stammutter Aller Guten Schulen: Das Dessauer Philanthropinum Und Der Deutsche Philanthropismus 1774-1793 = Hallesche. Beitr. Eur. Stand-alone and Hybrid Wind Energy Systems: Technology, Energy Storage and Applications = Woodhead Publ Ser En Stand-alone and Hybrid Wind Energy Systems: Technology, Energy Storage and Applications = Woodhead. Publ. Ser. En. Standard Basque: A Progressive Grammar = Curr Stud Linguist Standard Basque: A Progressive Grammar = Curr. Stud. Linguist. Standardisation of Thermal Cycling Exposure Testing = Eur Fed Corros Publ Standardisation of Thermal Cycling Exposure Testing = Eur. Fed. Corros. Publ. Standardization and Expectations = Lect Notes Econ Math Standardization and Expectations = Lect. Notes. Econ. Math. Standardization and Quality Assurance in Fluorescence Measurements Ii: Bioanalytical and Biomedical Applications = Springer Ser Fluores Standardization and Quality Assurance in Fluorescence Measurements Ii: Bioanalytical and Biomedical Applications = Springer. Ser. Fluores. Standardization and Quality Assurance in Fluorescence Measurements I: Techniques = Springer Ser Fluores Standardization and Quality Assurance in Fluorescence Measurements I: Techniques = Springer. Ser. Fluores. Standardization news : SN = Stand News Standardization of American Schooling: Linking Secondary and Higher Education, 1870-1910 = Second Educ Chang Wo Standardization of American Schooling: Linking Secondary and Higher Education, 1870-1910 = Second. Educ. Chang. Wo. Standardization of Epidemiologic Studies of Host Susceptibility = Nato Adv Sci Inst Se Standardization of Epidemiologic Studies of Host Susceptibility = Nato. Adv. Sci. Inst. Se. Standardization of Fretting Fatigue Test Methods and Equipment = Am Soc Test Mater Standardization of Fretting Fatigue Test Methods and Equipment = Am. Soc. Test Mater. Standardization of Herbal/ayurvedic Formations = Recent Prog Med Plan Standardization of Herbal/ayurvedic Formations = Recent. Prog. Med. Plan. Standardization of The Immunopharmacology of Natural and Synthetic Immunomodulators = Dev Biologicals Standardization of The Immunopharmacology of Natural and Synthetic Immunomodulators = Dev. Biologicals. Standardizing and Harmonizing Terminology: Theory and Practice = Am Soc Test Mater Standardizing and Harmonizing Terminology: Theory and Practice = Am. Soc. Test. Mater. Standardizing Terminology for Better Communication : Practice, Applied Theory, and Results = Am Soc Test Mater Standardizing Terminology for Better Communication : Practice, Applied Theory, and Results = Am. Soc. Test. Mater. Standard Methods of Clinical Chemistry = Stand Meth Clin Chem Standard Methods of Clinical Chemistry = Stand. Meth. Clin. Chem. Standard Model and Beyond = Springer Proc Phys Standard Model and Beyond = Springer. Proc. Phys. Standard Monomial Theory: Invariant Theoretic Approach = Encycl Math Sci Standard Monomial Theory: Invariant Theoretic Approach = Encycl. Math. Sci. Standard Negation: The Negation of Declarative Verbal Main Clauses in A Typological Perspective = Empir Approach Lang Standard Negation: The Negation of Declarative Verbal Main Clauses in A Typological Perspective = Empir. Approach. Lang. Standards and Norms in The English Language = Contrib Sociol Lang Standards and Norms in The English Language = Contrib. Sociol. Lang. Standards and Thresholds for Impact Assessment = Environ Prot Eur Uni Standards and Thresholds for Impact Assessment = Environ. Prot. Eur. Uni. Standards in Genomic Sciences = Stand Genomic Sci Standards in Genomic Sciences = Stand. Genomic Sci. Standardvariation: Wie Viel Variation Vertragt Die Deutsche Sprache? = Jahrb-inst Dtsch Spr Standardvariation: Wie Viel Variation Vertragt Die Deutsche Sprache? = Jahrb-inst. Dtsch. Spr. Stand Magazine = Stand Mag Stand Magazine = Stand Mag. Stand-off Detection of Suicide Bombers and Mobile Subjects = Nato Sec Sci B Phys Stand-off Detection of Suicide Bombers and Mobile Subjects = Nato. Sec. Sci. B. Phys. St Andrews Studies in Reformation History = St Andr St Reformat St Andrews Studies in Reformation History = St Andr. St Reformat. Stand = Stand Stanford French review = Stanford Fr Rev Stanford French Review = Stanford Fr Rev Stanford French Review = Stanford Fr. Rev. Stanford Italian Review = Stanford Ital Rev Stanford Italian Review = Stanford Ital. Rev. Stanford journal of international law = Stanford J Int Law Stanford Journal of International Law = Stanford J Int Law Stanford Journal of International Law = Stanford J. Int. Law Stanford Journal of International Studies = Stanford J Int Stud Stanford Journal of International Studies = Stanford J. Int. Stud. Stanford law & policy review = Stanford Law Pol Rev Stanford law review = Stanford Law Rev Stanford Law Review = Stanford Law Rev Stanford Law Review = Stanford Law Rev. Stanford Lectures = Stanford Lectures Stanford medical bulletin = Stanford Med Bull Stanford Series On Education and Public Policy = Stan Educ P Stanford Series On Education and Public Policy = Stan. Educ. P. Stanford Studies in Jewish History and Culture = Stanf Stud Jew Hist Stanford Studies in Jewish History and Culture = Stanf. Stud. Jew. Hist. Stanford Studies in Morphology and The Lexicon = Stanf Stud Morphol L Stanford Studies in Morphology and The Lexicon = Stanf. Stud. Morphol. L. Stanovnistvo = Stanovnistvo St Antonys Series = St Antony Ser St Antonys Series = St Antony. Ser. St Antonys Series = St Antonys Ser St Antonys Series = St Antonys Ser. S & TA & NU. Rivista di scienza e tecnologia degli alimenti e di nutrizione umana = S TA NU Stapfia = Stapfia Staphylococci and Staphylococcal Infections = Zbl Bakt S Staphylococci and Staphylococcal Infections = Zbl. Bakt. S. Staphylococci = Zbl Bakt S Staphylococci = Zbl. Bakt. S. Stapp Car Crash Conference = Stapp Car C Stapp Car Crash Conference = Stapp Car C. Stapp car crash journal = Stapp Car Crash J Stapp Car Crash Journal = Stapp Car Crash Jo Stapp Car Crash Journal = Stapp Car Crash Jo. Stapp Car Crash Journal, Vol 51 = Stapp Car Crash Jo Stapp Car Crash Journal, Vol 51 = Stapp Car Crash Jo. Stapp Car Crash Journal, Vol 52 = Stapp Car C Stapp Car Crash Journal, Vol 52 = Stapp Car C. Stapp Car Crash Journal, Vol 53 = Stapp Car Crash Jo Stapp Car Crash Journal, Vol 53 = Stapp Car Crash Jo. Starburst-agn Connection = Astr Soc P Starburst-agn Connection = Astr. Soc. P. Starburst Galaxies: Near and Far, Proceedings = Springer Proc Phys Starburst Galaxies: Near and Far, Proceedings = Springer. Proc. Phys. Starbursts: From 30 Doradus to Lyman Break Galaxies = Astrophys Space Sc L Starbursts: From 30 Doradus to Lyman Break Galaxies = Astrophys. Space. Sc. L. Starch: Advances in Structure and Function = Roy Soc Ch Starch: Advances in Structure and Function = Roy. Soc. Ch. Starch/Staerke = Starch/Staerke Starch-starke = Starch-starke Star Clusters: Basic Galactic Building Blocks Throughout Time and Space = Iau Symp P Series Star Clusters: Basic Galactic Building Blocks Throughout Time and Space = Iau. Symp. P. Series. Star Clusters = Saas Fee Ad Star Clusters = Saas. Fee. Ad. Star Formation At High Angular Resolution = Iau Symp Star Formation At High Angular Resolution = Iau. Symp. Star Formation in Early-type Galaxies = Astr Soc P Star Formation in Early-type Galaxies = Astr. Soc. P. Star Formation in The Interstellar Medium: in Honor of David Hollenbach, Chris Mckee and Frank Shu = Astr Soc P Star Formation in The Interstellar Medium: in Honor of David Hollenbach, Chris Mckee and Frank Shu = Astr. Soc. P. Star Formation Near and Far - Seventh Astrophysics Conference = Aip Conf Proc Star Formation Near and Far - Seventh Astrophysics Conference = Aip. Conf. Proc. Star Formation Through Time = Astr Soc P Star Formation Through Time = Astr. Soc. P. Star Formation With Infrared Space Observatory (iso) = Astr Soc P Star Formation With Infrared Space Observatory (iso) = Astr. Soc. P. StarinarArheoloki institut Beograd = Starinar Starke = Starch-starke Starke = Starch-starke. Starke = Starke Starkoff Institute Studies in Ethics and Contemporary Moral Problems = S I E Con M Starkoff Institute Studies in Ethics and Contemporary Moral Problems = S. I. E. Con. M. Stars and Nuclei: A Tribute to Manuel Forestini = Eas Publications Stars and Nuclei: A Tribute to Manuel Forestini = Eas. Publications. Stars As Suns: Activity, Evolution and Planets = Iau Symp Stars As Suns: Activity, Evolution and Planets = Iau. Symp. Stars, Gas and Dust in Galaxies: Exploring The Links, Proceedings = Astr Soc P Stars, Gas and Dust in Galaxies: Exploring The Links, Proceedings = Astr. Soc. P. Stars With The B[e] Phenomenon, Proceedings = Astr Soc P Stars With The B[e] Phenomenon, Proceedings = Astr. Soc. P. Starvation and India's Democracy = Routl Adv S Asian St Starvation and India's Democracy = Routl. Adv. S. Asian. St. Stasi: Shield and Sword of The Party = Stud Intell Stasi: Shield and Sword of The Party = Stud. Intell. Stata Journal = Stata J Stata Journal = Stata J. Stat; Bulletin of the Wisconsin Nurses Association = Stat. State and Indigenous Movements = Indigen People Polit State and Indigenous Movements = Indigen. People. Polit. State and Local Government Reforms in France and Germany: Divergence and Convergence = Urban Reg Res Int State and Local Government Reforms in France and Germany: Divergence and Convergence = Urban. Reg. Res. Int. State and Local Pension Fund Management = Public Adm Public Po State and Local Pension Fund Management = Public. Adm. Public. Po. State and Society in Post-socialist Economies = Stud Cent E Eur State and Society in Post-socialist Economies = Stud. Cent. E. Eur. State and Society Responses to Social Welfare Needs in China: Serving The People = Routl Contemp China State and Society Responses to Social Welfare Needs in China: Serving The People = Routl. Contemp. China. State As Parent = Nato Adv Sci I D-beh State As Parent = Nato. Adv. Sci. I. D-beh. State As Utopia: Continental Approaches = Eu Her Eco Soc Sci State As Utopia: Continental Approaches = Eu. Her. Eco. Soc. Sci. State As Utopia: Continental Approaches = Eur Herit Econ Soc S State As Utopia: Continental Approaches = Eur. Herit. Econ. Soc. S. State Building and Democracy in Africa: A Comparative and Developmental Approach = Afr Polit Econ Secur State Building and Democracy in Africa: A Comparative and Developmental Approach = Afr. Polit. Econ. Secur. State Building and International Intervention in Bosnia = Secur Gov State Building and International Intervention in Bosnia = Secur. Gov. State Building and Military Power in Russia and The New States of Eurasia = Int Pol Eur State Building and Military Power in Russia and The New States of Eurasia = Int. Pol. Eur. State-building: Theory and Practice = Rout Adv Int Rel Glo State-building: Theory and Practice = Rout. Adv. Int. Rel. Glo. State-building: Theory and Practice = Routl Adv Int Relat State-building: Theory and Practice = Routl. Adv. Int. Relat. State, Communities and Forests in Contemporary Borneo = Asia-pac Env Monogr State, Communities and Forests in Contemporary Borneo = Asia-pac. Env. Monogr. Stateco = Stateco State Coverage Initiatives issue brief : a national initiative of the Robert Wood Johnson Foundation = State Coverage Initiat Issue Brief Statecraft, Welfare, and The Politics of Inclusion = Int Polit Econ Ser Statecraft, Welfare, and The Politics of Inclusion = Int. Polit. Econ. Ser. State, Development and Identity in Multi-ethnic Societies: Ethnicity, Equity and The Nation = Routl Malaysian Stud State, Development and Identity in Multi-ethnic Societies: Ethnicity, Equity and The Nation = Routl. Malaysian. Stud. State Formation and Radical Democracy in India = Asias Transform State Formation and Radical Democracy in India = Asias. Transform. State Formation: Anthropological Perspectives = Anthropol Cult Soc State Formation: Anthropological Perspectives = Anthropol. Cult. Soc. State Formation in Japan: Emergence of A 4th-century Ruling Elite = Durham E Asia Ser State Formation in Japan: Emergence of A 4th-century Ruling Elite = Durham. E. Asia. Ser. State government (Denver, Colo.) = State Gov State Government = State Gov State Government = State Gov. State health legislation report = State Health Legis Rep State in India After Liberalization: Interdisciplinary Perspectives = Routl Cont S Asia Se State in India After Liberalization: Interdisciplinary Perspectives = Routl. Cont. S. Asia. Se. State legislatures = State Legis Stateless Core: A Scalable Approach for Quality of Service in The Internet = Lect Notes Comput Sc Stateless Core: A Scalable Approach for Quality of Service in The Internet = Lect. Notes. Comput. Sc. State Making in Asia = Polit Asia State Making in Asia = Polit. Asia State, Market and Organizational Form = De Gruy St State, Market and Organizational Form = De. Gruy. St. State nursing legislation quarterly = State Nurs Legis Q State Nursing Legislation Quarterly = State Nurs. Legis. Q. State Observers for Linear Systems With Uncertainty = Degruyter Expos Math State Observers for Linear Systems With Uncertainty = Degruyter. Expos. Math. State of Art Criticism = Art Semin State of Art Criticism = Art Semin. State of Breeding Evaluation in Trotters = Eaap Public State of Breeding Evaluation in Trotters = Eaap. Public. State of Corrections = Proc Aca Annu Conf State of Corrections = Proc. Aca. Annu. Conf. State of Dermatoglyphics - The Science of Finger and Palm Prints = Mell Stud Anthro State of Dermatoglyphics - The Science of Finger and Palm Prints = Mell. Stud. Anthro. State of Health Care in America = State Health Care Am. State of Health Series = State Hlth Ser State of Health Series = State Hlth. Ser. State of Minority Languages = Eur St Multilin State of Minority Languages = Eur. St. Multilin. State of Social Welfare, 1997 = Int Stud Social Sec State of Social Welfare, 1997 = Int. Stud. Social Sec. State of The Art Analytical Methods for The Characterization of Biological Products and Assessment of Comparability = Dev Biologicals State of The Art Analytical Methods for The Characterization of Biological Products and Assessment of Comparability = Dev. Biologicals. State-of-the Art Application of Surface and Interface Analysis Methods to Environmental Materials Interactions: in Honor of James E. Castle's 65th Year, Proceedings = Elec Soc S State-of-the Art Application of Surface and Interface Analysis Methods to Environmental Materials Interactions: in Honor of James E. Castle's 65th Year, Proceedings = Elec. Soc. S. State of The Art Hepatology: Molecular and Cell Biology = Falk Symp State of The Art Hepatology: Molecular and Cell Biology = Falk. Symp. State of The Art in Applied Cryptography = Lect Notes Comput Sc State of The Art in Applied Cryptography = Lect. Notes. Comput. Sc. State of The Art in Computational Intelligence = Adv Soft Comp State of The Art in Computational Intelligence = Adv. Soft. Comp. State of The Art in Computational Morphology, Proceedings = Comm Com Inf Sc State of The Art in Computational Morphology, Proceedings = Comm. Com. Inf. Sc. State-of-the-art in Content-based Image and Video Retrieval = Comp Imag Vis State-of-the-art in Content-based Image and Video Retrieval = Comp. Imag. Vis. State-of-the-art in Content-based Image and Video Retrieval = Comput Imaging Vis State-of-the-art in Content-based Image and Video Retrieval = Comput. Imaging. Vis. State of The Art in Global Optimization = Noncon Optim Its App State of The Art in Global Optimization = Noncon. Optim. Its. App. State of The Art in Probability and Statistics: Festschrift for Willem R Van Zwet = Inst Math S State of The Art in Probability and Statistics: Festschrift for Willem R Van Zwet = Inst. Math. S. State-of-the-art Mapping = P Soc Photo-opt Ins State-of-the-art Mapping = P. Soc. Photo-opt. Ins. State-of-the-art Methodology of Forest Inventory : A Symposium Proceedings = Us For Serv T R Pnw State-of-the-art Methodology of Forest Inventory : A Symposium Proceedings = Us. For. Serv. T. R. Pnw. State of The Art Presentations = Isbt Sci Series State of The Art Presentations = Isbt. Sci. Series. State-of-the-art Program On Compound Semiconductors (sotapocs Xxxi) = Elec Soc S State-of-the-art Program On Compound Semiconductors (sotapocs Xxxi) = Elec. Soc. S. State-of-the-art Program On Compound Semiconductors (sotapocs Xxxv) = Elec Soc S State-of-the-art Program On Compound Semiconductors (sotapocs Xxxv) = Elec. Soc. S. State-of-the-art Program On Compound Semiconductors Xl (sotapocs Xl) and Narrow Bandgap Optoelectronic Materials and Devices Ii = Elec Soc S State-of-the-art Program On Compound Semiconductors Xl (sotapocs Xl) and Narrow Bandgap Optoelectronic Materials and Devices Ii = Elec. Soc. S. State-of-the-art Program On Compound Semiconductors Xxxvi and Wide Bandgap Semiconductors for Photonic and Electronic Devices and Sensors Ii = Elec Soc S State-of-the-art Program On Compound Semiconductors Xxxvi and Wide Bandgap Semiconductors for Photonic and Electronic Devices and Sensors Ii = Elec. Soc. S. State-of-the-art Research and Application of Smas Technologies = Adv Sci Tech State-of-the-art Research and Application of Smas Technologies = Adv. Sci. Tech. State-of-the-arts Series = State Arts Ser State-of-the-arts Series = State. Arts. Ser. State-of-the-art Technology in Anesthesia and Intensive Care = Int Congr Ser State-of-the-art Technology in Anesthesia and Intensive Care = Int. Congr. Ser. State of The Art: Ultrasonics in Medicine = Int Congr Ser State of The Art: Ultrasonics in Medicine = Int. Congr. Ser. State of The Art Workshop Series = State Art Worksh Ser State of The Art Workshop Series = State Art Worksh. Ser. State of The Business 2000, Proceedings = Rec Adv Tob State of The Business 2000, Proceedings = Rec. Adv. Tob. State of The Fantastic = Contr Sci F State of The Fantastic = Contr. Sci. F. State of The Planet: Frontiers and Challenges in Geophysics = Geoph Monog Series State of The Planet: Frontiers and Challenges in Geophysics = Geoph. Monog. Series. State of The Planet: Frontiers and Challenges in Geophysics = Geophys Monogr Ser State of The Planet: Frontiers and Challenges in Geophysics = Geophys. Monogr. Ser. State of The Union = N Civil War State of The Union = N. Civil. War. State Politics & Policy Quarterly = State Polit Policy Q State Politics & Policy Quarterly = State Polit. Policy Q. State Recognition and Democratization in Sub-saharan Africa: A New Dawn for Traditional Authorities? = Palgr Stud Gov Secur State Recognition and Democratization in Sub-saharan Africa: A New Dawn for Traditional Authorities? = Palgr. Stud. Gov. Secur. State, Removal and Indigenous Peoples in The United States and Mexico, 1620-2000 = Indigen People Polit State, Removal and Indigenous Peoples in The United States and Mexico, 1620-2000 = Indigen. People. Polit. State reproductive health monitor : legislative proposals and actions / prepared by the Alan Guttmacher Institute = State Reprod Health Monit States and Development: Historical Antecedents of Stagnation and Advance = Polit Evol Inst Chan States and Development: Historical Antecedents of Stagnation and Advance = Polit. Evol. Inst. Chan. States of health = States Health State Sovereignty and Intervention: A Discourse Analysis of Interventionary and Non-interventionary Practices in Kosovo and Algeria = New Int Relat State Sovereignty and Intervention: A Discourse Analysis of Interventionary and Non-interventionary Practices in Kosovo and Algeria = New. Int. Relat. State Space Approach to Canonical Factorization With Applications = Oper Theory Adv Appl State Space Approach to Canonical Factorization With Applications = Oper. Theory. Adv. Appl. State-space Realisations of Linear 2-d Systems With Extensions to The General Nd (n>s) Case = Lect Notes Contr Inf State-space Realisations of Linear 2-d Systems With Extensions to The General Nd (n>s) Case = Lect. Notes. Contr. Inf. State Strikes Back: India and The Naga Insurgency = Pol Stud State Strikes Back: India and The Naga Insurgency = Pol. Stud. State Territoriality and European Integration = Eur Nation State State Territoriality and European Integration = Eur. Nation. State State Terrorism and Neoliberalism: The North in The South = Crit Terror Stud State Terrorism and Neoliberalism: The North in The South = Crit. Terror. Stud. State, The Activists and The Islanders: Language Policy On Corsica = Lang Policy Ser State, The Activists and The Islanders: Language Policy On Corsica = Lang. Policy Ser. Static Analysis = Lect Notes Comput Sc Static Analysis = Lect. Notes. Comput. Sc. Static Analysis, Proceedings = Lect Notes Comput Sc Static Analysis, Proceedings = Lect. Notes. Comput. Sc. Static Compression of Energetic Materials = Shock Wave High Pres Static Compression of Energetic Materials = Shock. Wave. High. Pres. Statics and Dynamics of Alloy Phase Transformations = Nato Adv Sci Inst Se Statics and Dynamics of Alloy Phase Transformations = Nato. Adv. Sci. Inst. Se. Stationary and Time Dependent Gross-pitaevskii Equations = Contemp Math Stationary and Time Dependent Gross-pitaevskii Equations = Contemp. Math. Stationary Fuel Cell Power Plants: Commercialization = Vdi Bericht Stationary Fuel Cell Power Plants: Commercialization = Vdi. Bericht. Statisical Mechanics of Quantum Lattice Systems: A Path Integral Approach = Ems Tracts Math Statisical Mechanics of Quantum Lattice Systems: A Path Integral Approach = Ems. Tracts. Math. Statistical Analysis of Functional Mri Data = Stat Biol Health Statistical Analysis of Functional Mri Data = Stat. Biol. Health. Statistical Analysis of Network Data: Methods and Models = Springer Ser Stat Statistical Analysis of Network Data: Methods and Models = Springer. Ser. Stat. Statistical Analysis of Recurrent Events = Stat Biol Health Statistical Analysis of Recurrent Events = Stat. Biol. Health. Statistical and Geometrical Approaches to Visual Motion Analysis = Lect Notes Comput Sc Statistical and Geometrical Approaches to Visual Motion Analysis = Lect. Notes. Comput. Sc. Statistical and Scientific Database Management / = Lect Notes Comput Sc Statistical and Scientific Database Management / = Lect. Notes. Comput. Sc. Statistical and Stochastic Methods for Image Processing = P Soc Photo-opt Ins Statistical and Stochastic Methods for Image Processing = P. Soc. Photo-opt. Ins. Statistical and Stochastic Methods in Image Processing Ii = P Soc Photo-opt Ins Statistical and Stochastic Methods in Image Processing Ii = P. Soc. Photo-opt. Ins. Statistical Applications in Genetics and Molecular Biology = Stat Appl Genet Mo B Statistical Applications in Genetics and Molecular Biology = Stat. Appl. Genet. Mo. B. Statistical Applications in Genetics and Molecular Biology = Stat Appl Genet Mol Statistical Applications in Genetics and Molecular Biology = Stat. Appl. Genet. Mol. Statistical applications in genetics and molecular biology = Stat Appl Genet Mol Biol Statistical Applications in Genetics and Molecular Biology = Stat. Appl. Genet. Mol. Biol. Statistical Association Methods for Mechanized Documentation Symposium Proceedings = Stat Assoc Method M Statistical Association Methods for Mechanized Documentation Symposium Proceedings = Stat. Assoc. Method. M. Statistical Atlases and Computational Models of The Heart = Lect Notes Comput Sc Statistical Atlases and Computational Models of The Heart = Lect. Notes. Comput. Sc. Statistical Bulletin / Metropolitan Insurance Companies=Stat Bull Metrop Insur Co;; Statistical Bulletin, Metropolitan Insurance Companies = Stat. Bull. Metrop. Insur. Co. Statistical bulletin (Metropolitan Life Foundation) = Stat Bull Metrop Life Found Statistical Bulletin, Metropolitan Life Foundation = Stat. Bull. Metrop. Life Found. Statistical bulletin (Metropolitan Life Insurance Company : 1984) = Stat Bull Metrop Insur Co Statistical bulletin (Metropolitan Life Insurance Company) = Stat Bull Metropol Life Insur Co Statistical Bulletin, Metropolitan Life Insurance Company = Stat. Bull. Metropol. Life Insur. Co. Statistical Challenges in Modern Astronomy Iv = Astr Soc P Statistical Challenges in Modern Astronomy Iv = Astr. Soc. P. Statistical Decision Theory: Estimation, Testing, and Selection = Springer Ser Stat Statistical Decision Theory: Estimation, Testing, and Selection = Springer. Ser. Stat. Statistical Demography and Forecasting = Springer Ser Stat Statistical Demography and Forecasting = Springer. Ser. Stat. Statistical Design = Springer Texts Stat Statistical Design = Springer. Texts. Stat. Statistical Detection and Surveillance of Geographic Clusters = Interd Stat Statistical Detection and Surveillance of Geographic Clusters = Interd. Stat. Statistical, Gradient, Block and Graft Copolymers By Controlled/living Radical Polymerizations = Adv Polym Sci Statistical, Gradient, Block and Graft Copolymers By Controlled/living Radical Polymerizations = Adv. Polym. Sci. Statistical Image Processing and Multidimensional Modeling = Inform Sci Stat Statistical Image Processing and Multidimensional Modeling = Inform. Sci. Stat. Statistical Implicative Analysis: Theory and Applications = Stud Comput Intell Statistical Implicative Analysis: Theory and Applications = Stud. Comput. Intell. Statistical journal of the United Nations Economic Commission for Europe = Stat J UN Econ Comm Eur Statistical Journal=Statistical J. Statistical Learning and Pattern Analysis for Image and Video Processing = Adv Pattern Recognit Statistical Learning and Pattern Analysis for Image and Video Processing = Adv. Pattern Recognit. Statistical Learning From A Regression Perspective = Springer Ser Stat Statistical Learning From A Regression Perspective = Springer. Ser. Stat. Statistical Learning Theory and Stochastic Optimization = Lect Notes Math Statistical Learning Theory and Stochastic Optimization = Lect. Notes. Math. Statistical Mechanics Deformation Ultrasonic Spectroscopy = Adv Polym Sci Statistical Mechanics Deformation Ultrasonic Spectroscopy = Adv. Polym. Sci. Statistical Mechanics in Physics and Biology = Mat Res S C Statistical Mechanics in Physics and Biology = Mat. Res. S. C. Statistical Mechanics of Complex Networks = Lect Notes Phys Statistical Mechanics of Complex Networks = Lect. Notes. Phys. Statistical Mechanics of Neural Networks = Lect Notes Phys Statistical Mechanics of Neural Networks = Lect. Notes. Phys. Statistical Mechanics, Protein Structure, and Protein Substrate Interactions = Nato Adv Sci Inst Se Statistical Mechanics, Protein Structure, and Protein Substrate Interactions = Nato. Adv. Sci. Inst. Se. Statistical Methodology: Applications to Design, Data Analysis, and Evaluation = Transport Res Rec Statistical Methodology: Applications to Design, Data Analysis, and Evaluation = Transport. Res. Rec. Statistical Methods and Applications = Stat Method Appl Statistical Methods and Applications = Stat. Method. Appl. Statistical Methods and Applications = Stat Method Appl-ger Statistical Methods and Applications = Stat. Method. Appl-ger. Statistical Methods and Crash Prediction Modeling = Transport Res Rec Statistical Methods and Crash Prediction Modeling = Transport. Res. Rec. Statistical Methods and Modeling and Safety Data, Analysis, and Evaluation = Transport Res Rec Statistical Methods and Modeling and Safety Data, Analysis, and Evaluation = Transport. Res. Rec. Statistical Methods and Safety Data Analysis and Evaluation = Transport Res Rec Statistical Methods and Safety Data Analysis and Evaluation = Transport. Res. Rec. Statistical Methods for Communication Science = Routl Commun Ser Statistical Methods for Communication Science = Routl. Commun. Ser. Statistical Methods for Disease Clustering = Stat Biol Health Statistical Methods for Disease Clustering = Stat. Biol. Health. Statistical Methods for Environmental Epidemiology With R: A Case Study in Air Pollution and Health = Use R Statistical Methods for Environmental Epidemiology With R: A Case Study in Air Pollution and Health = Use. R. Statistical Methods for Modeling Human Dynamics: An Interdisciplinary Dialogue = N D Ser Quant Method Statistical Methods for Modeling Human Dynamics: An Interdisciplinary Dialogue = N. D. Ser. Quant. Method. Statistical Methods for Spatio-temporal Systems = Mg Stat Pro Statistical Methods for Spatio-temporal Systems = Mg. Stat. Pro. Statistical Methods for Spatio-temporal Systems = Monogr Stat Appl Pro Statistical Methods for Spatio-temporal Systems = Monogr. Stat. Appl. Pro. Statistical Methods for The Evaluation of Educational Services and Quality of Products = Contrib Stat Statistical Methods for The Evaluation of Educational Services and Quality of Products = Contrib. Stat. Statistical Methods for The Evaluation of University Systems = Contrib Stat Statistical Methods for The Evaluation of University Systems = Contrib. Stat. Statistical Methods; Highway Safety Data, Analysis, and Evaluation; Occupant Protection; Systematic Reviews and Meta-analysis = Transport Res Rec Statistical Methods; Highway Safety Data, Analysis, and Evaluation; Occupant Protection; Systematic Reviews and Meta-analysis = Transport. Res. Rec. Statistical Methods in Bioinformatics: An Introduction = Stat Biol Health Statistical Methods in Bioinformatics: An Introduction = Stat. Biol. Health. Statistical Methods in Linguistics = Stat Method Linguist Statistical Methods in Linguistics = Stat. Method. Linguist. Statistical methods in medical research = Stat Methods Med Res Statistical Methods in Medical Research = Stat Methods Med Res Statistical Methods in Medical Research = Stat. Methods Med. Res. Statistical Methods In Medical Research=Stat Methods Med Res;; Statistical Methods in Molecular Biology = Methods Mol Biol Statistical Methods in Molecular Biology = Methods Mol. Biol. Statistical Methods in Quantum Optics 2 = Theor Math Phys Ser Statistical Methods in Quantum Optics 2 = Theor. Math. Phys. Ser. Statistical Methods in Video Processing = Lect Notes Comput Sc Statistical Methods in Video Processing = Lect. Notes. Comput. Sc. Statistical Modeling and Decision Science = Statist. Model. Decis. Sci. Statistical Modeling of The National Assessment of Educational Progress = Stat Soc Behav Sc Statistical Modeling of The National Assessment of Educational Progress = Stat. Soc. Behav. Sc. Statistical Modelling = Stat Model Statistical Modelling = Stat. Model. Statistical Models and Methods for Biomedical and Technical Systems = Stat Ind Technol Statistical Models and Methods for Biomedical and Technical Systems = Stat. Ind. Technol. Statistical Models and Methods for Financial Markets = Springer Texts Stat Statistical Models and Methods for Financial Markets = Springer. Texts. Stat. Statistical Models for Test Equating, Scaling, and Linking = Stat Soc Behav Sc Statistical Models for Test Equating, Scaling, and Linking = Stat. Soc. Behav. Sc. Statistical Monitoring of Clinical Trials: A Unified Approach = Stat Biol Health Statistical Monitoring of Clinical Trials: A Unified Approach = Stat. Biol. Health. Statistical Network Analysis: Models, Issues, and New Directions = Lect Notes Comput Sc Statistical Network Analysis: Models, Issues, and New Directions = Lect. Notes. Comput. Sc. Statistical news. Poland. Glowny Urzad Statystyczny = Stat News Pol Statistical notes for health planners = Stat Notes Health Plann Statistical Notes for Health Planners = Stat. Notes Health Plann. Statistical Notes Of Japan = Stat Notes Jpn Statistical Papers=Statistical Pap. Statistical Papers = Statist. Papers Statistical Papers = Stat Pap Statistical Papers = Stat. Pap. Statistical Physics = Aip Conf Proc Statistical Physics = Aip. Conf. Proc. Statistical Physics and Beyond = Aip Conf Proc Statistical Physics and Beyond = Aip. Conf. Proc. Statistical Physics and Economics: Concepts, Tools and Applications = Springer Tr Mod Phys Statistical Physics and Economics: Concepts, Tools and Applications = Springer. Tr. Mod. Phys. Statistical Physics, Automata Networks and Dynamical Systems = Math Appl Statistical Physics, Automata Networks and Dynamical Systems = Math. Appl. Statistical Physics: Modern Trends and Applications = Aip Conf Proc Statistical Physics: Modern Trends and Applications = Aip. Conf. Proc. Statistical Physics of Ageing Phenomena and The Glass Transition = J Phys Conf Ser Statistical Physics of Ageing Phenomena and The Glass Transition = J. Phys. Conf. Ser. Statistical Pronunciation Modeling for Non-native Speech Processing = Signals Commun Techn Statistical Pronunciation Modeling for Non-native Speech Processing = Signals. Commun. Techn. Statistical Properties of Deterministic Systems = Tsinghua U Texts Statistical Properties of Deterministic Systems = Tsinghua. U. Texts. Statistical Reporter / Office Of Federal Statistical Policy And Standards = Stat Report Statistical Sampling : Past, Present and Future Theoretical and Practical = Am Soc Test Mater Statistical Sampling : Past, Present and Future Theoretical and Practical = Am. Soc. Test. Mater. Statistical Science and Interdisciplinary Research = Stat Sci Interdisc R Statistical Science and Interdisciplinary Research = Stat. Sci. Interdisc. R. Statistical Science and Interdisciplinary Research = Stat Sci Int Res Statistical Science and Interdisciplinary Research = Stat. Sci. Int. Res. Statistical science : a review journal of the Institute of Mathematical Statistics = Stat Sci Statistical Science = Statist. Sci. Statistical Science = Stat Sci Statistical Science = Stat. Sci. Statistical Theory and Method Abstracts = STMA Statistica Neerlandica = Statist. Neerlandica Statistica Neerlandica = Stat Neerl Statistica Neerlandica = Stat. Neerl. Statistica Sinica = Statist. Sinica Statistica Sinica = Stat Sinica Statistica Sinica = Stat. Sinica Statistica=Statistica Statistica = Statistica Statistica = Statistica (Bologna) Statistician = Statistician Statistics and Analytical Methods in Automotive Engineering = Imeche Conf Trans Statistics and Analytical Methods in Automotive Engineering = Imeche. Conf. Trans. Statistics and Computing Series = Stat Comput Ser Statistics and Computing Series = Stat. Comput. Ser. Statistics and Computing = Stat Comput Statistics and Computing = Stat. Comput. Statistics and Computing = Statist. Comput. Statistics and Data Analysis for Financial Engineering = Springer Texts Stat Statistics and Data Analysis for Financial Engineering = Springer. Texts. Stat. Statistics and Its Interface = Stat Interface Statistics and Its Interface = Stat. Interface Statistics & Decisions = Statist. Decisions Statistics for Archaeologists: A Commonsense Approach, Second Edition = Interd Contrib Arch Statistics for Archaeologists: A Commonsense Approach, Second Edition = Interd. Contrib. Arch. Statistics for Biology and Health = Stat. Biol. Health Statistics for Biology and Health = Stat Biol Health Statistics for Biology and Health = Stat. Biol. Health Statistics for Engineering and Physical Science = Stat. Eng. Phys. Sci. Statistics for High-dimensional Data: Methods, Theory and Applications = Springer Ser Stat Statistics for High-dimensional Data: Methods, Theory and Applications = Springer. Ser. Stat. Statistics for Industry and Technology = Stat. Ind. Technol. Statistics for Industry and Technology = Stat Ind Technol Statistics for Industry and Technology = Stat. Ind. Technol. Statistics for Linguistics With R: A Practical Introduction = Trends Linguist-stud Statistics for Linguistics With R: A Practical Introduction = Trends. Linguist-stud. Statistics for Social and Behavioral Sciences = Stat Soc Behav Sc Statistics for Social and Behavioral Sciences = Stat. Soc. Behav. Sc. Statistics for The Environment (series) = Stat Environ Statistics for The Environment (series) = Stat. Environ. Statistics in Biopharmaceutical Research = Stat Biopharm Res Statistics in Biopharmaceutical Research = Stat. Biopharm. Res. Statistics in Genetics and in The Environmental Sciences = Trends Math Statistics in Genetics and in The Environmental Sciences = Trends. Math. Statistics in medicine = Stat Med Statistics in Medicine = Stat Med Statistics in Medicine = Stat. Med. Statistics In Medicine=Stat Med;; Statistics of Financial Markets: An Introduction, Second Edition = Universitext Statistics of Financial Markets: An Introduction, Second Edition = Universitext. Statistics of Financial Markets: An Introduction, Third Edition = Universitext Statistics of Financial Markets: An Introduction, Third Edition = Universitext. Statistics of Navy medicine = Stat Navy Med Statistics & Probability Letters = Statist. Probab. Lett. Statistics & Probability Letters = Stat Probabil Lett Statistics & Probability Letters = Stat. Probabil. Lett. Statistics = Statistics Statistics = Statistics Statistics: Textbooks and Monographs = Statist. Textbooks Monogr. Statistics Textbooks and Monongraphs = Stat Textb Monogr Statistics Textbooks and Monongraphs = Stat. Textb. Monogr. Statistique Mathématique et Probabilité = Stat. Math. Probab. Statistiques demographiques. Institut national de statistique (Belgium) = State Demogr Statistiques & etudes: Midi-Pyrenees = Stat Etud Midi Pyren Statistisches Jahrbuch der Schweiz = Stat. Jahrb. Schweiz Statistiska meddelanden. Serie Be = Statist Medd Ser Be Befolk Val Statistiske efterretninger. Befolkning og valg / Danmarks statistik = Statist Efterret Statistisk tidskrift. Statistical review. Sweden. Statistiska centralbyran = Stat Tidskr Statisztikai szemle : a Magyar Kozponti Statisztikai Hivatal folyoirata = Stat Szle Statsokonomisk Tidsskrift=Statsokon. Tidsskr. Stat = Stat Status and Conservation of The Bears of The World = Int Bear Ms Status and Conservation of The Bears of The World = Int. Bear. Ms. Status and Function of Languages and Language Varieties = Found Comm Status and Function of Languages and Language Varieties = Found. Comm. Status and Future Developments in The Study of Transport Properties = Nato Adv Sci I C-mat Status and Future Developments in The Study of Transport Properties = Nato. Adv. Sci. I. C-mat. Status and Groups = Res Manag Grp Team Status and Groups = Res. Manag. Grp. Team. Status and Management of Neotropical Migratory Birds = Usda Rocky Status and Management of Neotropical Migratory Birds = Usda. Rocky. Status and Perspectives of Nuclear Energy : Fission and Fusion = P Int Sch Phys Status and Perspectives of Nuclear Energy : Fission and Fusion = P. Int. Sch. Phys. Status, Distribution, and Conservation of Native Freshwater Fishes of Western North America = Am Fish S S Status, Distribution, and Conservation of Native Freshwater Fishes of Western North America = Am. Fish. S. S. Status of Differentation Therapy of Cancer, Vol 2 = Serono Sym Status of Differentation Therapy of Cancer, Vol 2 = Serono. Sym. Status of National Minorities in Serbia = Sasa Dep Soc Sci Sci Status of National Minorities in Serbia = Sasa. Dep. Soc. Sci. Sci. Status of Vascular Surgery in Europe = Int Congr Ser Status of Vascular Surgery in Europe = Int. Congr. Ser. Status Report of The Nuclear Safety Research Project = K F K Reports Status Report of The Nuclear Safety Research Project = K. F. K. Reports. Statutes of California and digests of measures / compiled by Bion M. Gregory, legislative counsel. California = Statut Calif Dig Meas Calif Statutory Interpretation: General Principles and Recent Trends = Laws Legis Statutory Interpretation: General Principles and Recent Trends = Laws. Legis. Staub - Reinhaltung der Luft = Staub - Reinhalt. Luft Staub Reinhaltung Der Luft = Staub Reinhalt Luft Staub Reinhaltung Der Luft = Staub Reinhalt. Luft Stauffer Symposium On Applied Psychology At The Claremont Colleges = Stauffer Symp Appl P Stauffer Symposium On Applied Psychology At The Claremont Colleges = Stauffer Symp. Appl. P. Stayin' Alive Through '95 = Amer Mar As Stayin' Alive Through '95 = Amer. Mar. As. Staying Maasai? Livelihoods, Conservation and Development in East African Rangelands = Stud Hum Ecol Adapt Staying Maasai? Livelihoods, Conservation and Development in East African Rangelands = Stud. Hum. Ecol. Adapt. St. Barnabas Hospital medical bulletin = St Barnabas Hosp Med Bull St. Bartholomew's Hospital journal = St Bartholomews Hosp J STD bulletin = STD Bull Steady Hands Needed: Reflections On The Role of The Secretary of Foreign Affairs and Trade in Australia 1979-1999 = Anzsog Monogr Steady Hands Needed: Reflections On The Role of The Secretary of Foreign Affairs and Trade in Australia 1979-1999 = Anzsog. Monogr. Stealing The Fire: Adaptation, Appropriation, Plagiarism, Hoax in French and Francophone Literature and Film = Fr Lit Ser Stealing The Fire: Adaptation, Appropriation, Plagiarism, Hoax in French and Francophone Literature and Film = Fr. Lit. Ser. Steam Plant = Imeche Sem Steam Plant = Imeche. Sem. Steam Turbine Governing and Overspeed Protection = Imeche Sem Steam Turbine Governing and Overspeed Protection = Imeche. Sem. Steatohepatitis (nash and Ash) = Falk Symp Steatohepatitis (nash and Ash) = Falk. Symp. Steel and Composite Structures = Steel Compos Struct Steel and Composite Structures = Steel Compos. Struct. Steel - A New and Traditional Material for Building = Proc Monogr Eng Wate Steel - A New and Traditional Material for Building = Proc. Monogr. Eng. Wate. Steel & Composite Structures = Steel Compos Struct Steel & Composite Structures = Steel Compos. Struct. Steel Construction - Design and Research = Steel Constr. Des. Res. Steel Forgings: Second Volume = Am Soc Test Mater Steel Forgings: Second Volume = Am. Soc. Test. Mater. Steel in The Ussr = Steel Transl Steel in The Ussr = Steel Transl. Steel in The Ussr = Steel Ussr Steel in Translation = Steel Transl Steel in Translation = Steel Transl. Steelmaking Proceedings = Steel Proc Steelmaking Proceedings = Steel. Proc. Steel Research International = Steel Res Int Steel Research International = Steel Res. Int. Steel Research = Steel Res Steel Research = Steel Res. Stefan University Press Series On Frontiers in Science and Technology = S U P Front Sci Stefan University Press Series On Frontiers in Science and Technology = S. U. P. Front. Sci. Steinbeck Monograph Series = Steinbeck Monogr Ser Steinbeck Monograph Series = Steinbeck Monogr. Ser. Steinbeck Quarterly = Steinbeck Quart Steinbeck Quarterly = Steinbeck Quart. Steklo i Keramika = Steklo Keram. Stellar and Circumstellar Astrophysics = Astr Soc P Stellar and Circumstellar Astrophysics = Astr. Soc. P. Stellar Astrophysics - A Tribute to Helmut A. Abt = Astrophys Space Sc L Stellar Astrophysics - A Tribute to Helmut A. Abt = Astrophys. Space. Sc. L. Stellar Astrophysics With The World's Largest Telescopes = Aip Conf Proc Stellar Astrophysics With The World's Largest Telescopes = Aip. Conf. Proc. Stellar Atmosphere Modeling = Astr Soc P Stellar Atmosphere Modeling = Astr. Soc. P. Stellar Atmospheres : Beyond Classical Models = Nato Adv Sci I C-mat Stellar Atmospheres : Beyond Classical Models = Nato. Adv. Sci. I. C-mat. Stellar Candles for The Extragalactic Distance Scale = Lect Notes Phys Stellar Candles for The Extragalactic Distance Scale = Lect. Notes. Phys. Stellar Clusters and Associations: Convection, Rotation, and Dynamos = Astr Soc P Stellar Clusters and Associations: Convection, Rotation, and Dynamos = Astr. Soc. P. Stellar Collisions, Mergers, and Their Consequences = Astr Soc P Stellar Collisions, Mergers, and Their Consequences = Astr. Soc. P. Stellar Content of Local Group Galaxies = Iau Symp Stellar Content of Local Group Galaxies = Iau. Symp. Stellar Dynamos: Nonlinearity and Chaotic Flows = Astr Soc P Stellar Dynamos: Nonlinearity and Chaotic Flows = Astr. Soc. P. Stellar End Products = Mem Soc Astron Ital Stellar End Products = Mem. Soc. Astron. Ital. Stellar Evolution and Seismic Tools for Asteroseismology: Diffusive Processes in Stars and Seismic Analysis = Eas Publications Stellar Evolution and Seismic Tools for Asteroseismology: Diffusive Processes in Stars and Seismic Analysis = Eas. Publications. Stellar Evolution At Low Metallicity: Mass Loss, Explosions, Cosmology = Astr Soc P Stellar Evolution At Low Metallicity: Mass Loss, Explosions, Cosmology = Astr. Soc. P. Stellar Fluid Dynamics and Numerical Simulations: From The Sun to Neutron Stars = Eas Publications Stellar Fluid Dynamics and Numerical Simulations: From The Sun to Neutron Stars = Eas. Publications. Stellar Initial Mass Function = Astr Soc P Stellar Initial Mass Function = Astr. Soc. P. Stellar Jets and Bipolar Outflows = Astrophys Space Sc L Stellar Jets and Bipolar Outflows = Astrophys. Space. Sc. L. Stellar Magnetism = Eas Publications Stellar Magnetism = Eas. Publications. Stellar Nucleosynthesis 50 Years After B2fh = Eas Publications Stellar Nucleosynthesis 50 Years After B2fh = Eas. Publications. Stellar Physics: Stellar Evolution and Stability, Vol 2, Second Edition = Astron Astrophys Lib Stellar Physics: Stellar Evolution and Stability, Vol 2, Second Edition = Astron. Astrophys. Lib. Stellar Populations = Iau Symp Stellar Populations = Iau. Symp. Stellar Populations of Galaxies = Iau Symp Stellar Populations of Galaxies = Iau. Symp. Stellar Populations: Planning for The Next Decade = Iau Symp P Series Stellar Populations: Planning for The Next Decade = Iau. Symp. P. Series. Stellar Pulsation: Challenges for Theory and Observation = Aip Conf Proc Stellar Pulsation: Challenges for Theory and Observation = Aip. Conf. Proc. Stellar Remnants = Saas Fee Ad Stellar Remnants = Saas. Fee. Ad. Stellar Rotation = Iau Symp Stellar Rotation = Iau. Symp. Stellar Structure and Habitable Planet Finding = Esa Sp Publ Stellar Structure and Habitable Planet Finding = Esa. Sp. Publ. Stellar Structure and Habitable Planet Finding, Proceedings = Esa Spec Publ Stellar Structure and Habitable Planet Finding, Proceedings = Esa. Spec. Publ. Stellar Structure and Habitable Planet Finding, Proceedings = Esa Sp Publ Stellar Structure and Habitable Planet Finding, Proceedings = Esa. Sp. Publ. Stellar Surface Structure = Iau Symp Stellar Surface Structure = Iau. Symp. Stem Cell Biology and Regenerative Medicine = Stem Cells Biol Reg Stem Cell Biology and Regenerative Medicine = Stem Cells. Biol. Reg. Stem Cell Biology: Development and Plasticity = Ann Ny Acad Sci Stem Cell Biology: Development and Plasticity = Ann. Ny. Acad. Sci. Stem Cell Culture = Method Cell Biol Stem Cell Culture = Method. Cell Biol. Stem Cell Migration: Methods and Protocols = Methods Mol Biol Stem Cell Migration: Methods and Protocols = Methods Mol. Biol. Stem Cell Research = Stem Cell Res Stem Cell Research = Stem Cell Res. Stem Cell Research & Therapy = Stem Cell Res Ther Stem Cell Research & Therapy = Stem Cell Res. Ther. Stem Cell Reviews and Reports = Stem Cell Rev Rep Stem Cell Reviews and Reports = Stem Cell Rev. Rep. Stem cell reviews = Stem Cell Rev Stem Cell Reviews = Stem Cell Rev Stem Cell Reviews = Stem Cell Rev. Stem Cells and Cancer = Cancer Drug Discov D Stem Cells and Cancer = Cancer Drug. Discov. D. Stem Cells and Cartilage Tissue Engineering Approaches to Orthopaedic Surgery = Surg-proced Complica Stem Cells and Cartilage Tissue Engineering Approaches to Orthopaedic Surgery = Surg-proced. Complica. Stem cells and development = Stem Cells Dev Stem Cells and Development = Stem Cells Dev Stem Cells and Development = Stem Cells Dev. Stem Cells and Regenerative Medicine: From Molecular Embryology to Tissue Engineering = Stem Cells Biol Reg Stem Cells and Regenerative Medicine: From Molecular Embryology to Tissue Engineering = Stem Cells Biol. Reg. Stem Cells and Regenerative Medicine, Vol 5 = Stem Cells Lab Clin Stem Cells and Regenerative Medicine, Vol 5 = Stem Cells Lab. Clin. Stem Cells and Their Potential for Clinical Application = Nato Scie Peace Secu Stem Cells and Their Potential for Clinical Application = Nato. Scie. Peace. Secu. Stem cells (Dayton, Ohio) = Stem Cells Stem Cells Form Cord Blood, in Utero Stem Cell Development, and Transplantation-inclusive Gene Therapy = E Schering Res Fdn W Stem Cells Form Cord Blood, in Utero Stem Cell Development, and Transplantation-inclusive Gene Therapy = E. Schering. Res. Fdn. W. Stem Cells for Myocardial Regeneration: Methods and Protocols = Methods Mol Biol Stem Cells for Myocardial Regeneration: Methods and Protocols = Methods Mol. Biol. Stem Cells in Development and Disease = Curr Top Dev Biol Stem Cells in Development and Disease = Curr. Top. Dev. Biol. Stem Cells in Reproduction and in The Brain = E Schering Res Fdn W Stem Cells in Reproduction and in The Brain = E. Schering. Res. Fdn. W. Stem Cells in The Nervous System: Functional and Clinical Implications = Res Per Neurosci Stem Cells in The Nervous System: Functional and Clinical Implications = Res. Per. Neurosci. Stem Cells in The Respiratory System = Stem Cells Biol Reg Stem Cells in The Respiratory System = Stem Cells Biol. Reg. Stem Cells Laboratory and Clinical Research = Stem Cells Lab Clin Stem Cells Laboratory and Clinical Research = Stem Cells Lab. Clin. Stem cells = Stem Cells Stem Cells=Stem Cells;; Stem Cells = Stem Cells Stem Cell Therapy for Diabetes = Stem Cells Biol Reg Stem Cell Therapy for Diabetes = Stem Cells. Biol. Reg. Stem Cell Tools and Other Experimental Protocols = Method Enzymol Stem Cell Tools and Other Experimental Protocols = Method. Enzymol. Stem Cell Transplantation and Tissue Engineering = E Schering Res Fdn W Stem Cell Transplantation and Tissue Engineering = E. Schering. Res. Fdn. W. Stendhal Club = Stendhal Club Stepchildren of Science: Psychical Research and Parapsychology in Germany, C.1870-1939 = Clio Med Stepchildren of Science: Psychical Research and Parapsychology in Germany, C.1870-1939 = Clio. Med. Step-growth Polymers for High-performance Materials = Acs Sym Ser Step-growth Polymers for High-performance Materials = Acs. Sym. Ser. STEP perspective = STEP Perspect Step Project Management: Guide for Science, Technology, and Engineering Projects = Ind Innov Ser Step Project Management: Guide for Science, Technology, and Engineering Projects = Ind. Innov. Ser. Stepwise Refinement of Distributed Systems = Lect Notes Comput Sc Stepwise Refinement of Distributed Systems = Lect. Notes. Comput. Sc. Stereophonie Der Autobiographie-autobiographisches Schreiben Von Paaren Am Beispiel Von Maria Teresa Leon Und Rafael Alberti = Mimesis Stereophonie Der Autobiographie-autobiographisches Schreiben Von Paaren Am Beispiel Von Maria Teresa Leon Und Rafael Alberti = Mimesis. Stereoscopic Displays and Applications Iii = P Soc Photo-opt Ins Stereoscopic Displays and Applications Iii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Applications Iv = P Soc Photo-opt Ins Stereoscopic Displays and Applications Iv = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Applications = P Soc Photo-opt Ins Stereoscopic Displays and Applications = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Applications Xix = Proc Spie Stereoscopic Displays and Applications Xix = Proc. Spie. Stereoscopic Displays and Applications Xxii = Proc Spie Stereoscopic Displays and Applications Xxii = Proc. Spie. Stereoscopic Displays and Applications Xxi = Proc Spie Stereoscopic Displays and Applications Xxi = Proc. Spie. Stereoscopic Displays and Applications Xxi = P Soc Photo-opt Ins Stereoscopic Displays and Applications Xxi = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Iii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Iii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Ii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Ii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Iv = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Iv = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Ix = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Ix = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Viii = Proc Spie Stereoscopic Displays and Virtual Reality Systems Viii = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Viii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Viii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Vii = Proc Spie Stereoscopic Displays and Virtual Reality Systems Vii = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Vii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Vii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Vi = Proc Spie Stereoscopic Displays and Virtual Reality Systems Vi = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Vi = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Vi = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems V = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems V = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Xiii = Proc Spie Stereoscopic Displays and Virtual Reality Systems Xiii = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Xiii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Xiii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Xii = Proc Spie Stereoscopic Displays and Virtual Reality Systems Xii = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Xii = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Xii = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Xi = Proc Spie Stereoscopic Displays and Virtual Reality Systems Xi = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Xi = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Xi = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems Xiv = Proc Spie Stereoscopic Displays and Virtual Reality Systems Xiv = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems Xiv = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems Xiv = P. Soc. Photo-opt. Ins. Stereoscopic Displays and Virtual Reality Systems X = Proc Spie Stereoscopic Displays and Virtual Reality Systems X = Proc. Spie. Stereoscopic Displays and Virtual Reality Systems X = P Soc Photo-opt Ins Stereoscopic Displays and Virtual Reality Systems X = P. Soc. Photo-opt. Ins. Stereoselective Heterocyclic Synthesis Iii = Top Curr Chem Stereoselective Heterocyclic Synthesis Iii = Top. Curr. Chem. Stereoselective Heterocyclic Synthesis Ii = Top Curr Chem Stereoselective Heterocyclic Synthesis Ii = Top. Curr. Chem. Stereoselective Heterocyclic Synthesis I = Top Curr Chem Stereoselective Heterocyclic Synthesis I = Top. Curr. Chem. Stereotactic and functional neurosurgery = Stereotact Funct Neurosurg Stereotactic and Functional Neurosurgery=Stereotact Funct Neurosurg;; Stereotactic and Functional Neurosurgery = Stereotact. Funct. Neurosurg. Stereotactic and Functional Neurosurgery = Stereot Funct Neuros Stereotactic and Functional Neurosurgery = Stereot. Funct. Neuros. Sterile Filtration = Adv Biochem Eng Biot Sterile Filtration = Adv. Biochem. Eng. Biot. Sterile Insect Technique for Tsetse Control and Eradication = Iaea Pan P Sterile Insect Technique for Tsetse Control and Eradication = Iaea. Pan. P. Sterile world = Sterile World Sterile World = Sterile World Sterility in Wheat in Subtropical Asia: Extent, Causes & Solutions = Aciar Proc Sterility in Wheat in Subtropical Asia: Extent, Causes & Solutions = Aciar. Proc. Sterilization of Food in Retort Pouches = Food Eng Ser Sterilization of Food in Retort Pouches = Food Eng. Ser. Sterkiana = Sterkiana Sterne und Weltraum = Sterne Weltraum Steroid Contraceptives and Women's Response = Reprod Biol Steroid Contraceptives and Women's Response = Reprod. Biol. Steroid Enzymes and Cancer = Ann Ny Acad Sci Steroid Enzymes and Cancer = Ann. Ny. Acad. Sci. Steroid Formation, Degradation, and Action in Peripheral Tissues = Ann Ny Acad Sci Steroid Formation, Degradation, and Action in Peripheral Tissues = Ann. Ny. Acad. Sci. Steroidologia = Steroidologia Steroid Receptors and Antihormones = Ann Ny Acad Sci Steroid Receptors and Antihormones = Ann. Ny. Acad. Sci. Steroids and Lipids Research = Steroids Lipid Res Steroids and Lipids Research = Steroids Lipid. Res. Steroids and lipids research = Steroids Lipids Res Steroids and Lipids Research = Steroids Lipids Res. Steroids and Neuronal Activity = Ciba F Symp Steroids and Neuronal Activity = Ciba. F. Symp. Steroids and The Nervous System = Ann Ny Acad Sci Steroids and The Nervous System = Ann. Ny. Acad. Sci. Steroids=Steroids;; Steroids = Steroids Steroid Use and Abuse = Drug Trans Dist Int Steroid Use and Abuse = Drug. Trans. Dist. Int. Stessa 2006 = Proc Monogr Eng Wate Stessa 2006 = Proc. Monogr. Eng. Wate. Stetson law review = Stetson Law Rev Stewart William's Glamorgan historian = Glamorgan Hist Sticking to The Union: An Oral History of The Life and Times of Julia Ruuttila = Palgr Stud Oral Hist Sticking to The Union: An Oral History of The Life and Times of Julia Ruuttila = Palgr. Stud. Oral Hist. Stiftung Reusstal, Jahresbericht = Stift. Reusstal, Jahresber. Stiftung zur Förderung der Hamburgischen Kunstsammlungen. Erwerbungen = StiftHambKuSamml Stigma and Group Inequality: Social Psychological Perspectives = Clar Symp Stigma and Group Inequality: Social Psychological Perspectives = Clar. Symp. Still-image Compression Ii = P Soc Photo-opt Ins Still-image Compression Ii = P. Soc. Photo-opt. Ins. Still-image Compression = P Soc Photo-opt Ins Still-image Compression = P. Soc. Photo-opt. Ins. Stimmen der Zeit = Stimmen Zeit Stimme(n) Im Text-narratologische Positionsbestimmungen = Narratologia Stimme(n) Im Text-narratologische Positionsbestimmungen = Narratologia. Stimuli-responsive Polymeric Films and Coatings = Acs Sym Ser Stimuli-responsive Polymeric Films and Coatings = Acs. Sym. Ser. Stirling Management Series = Stirl Manag Ser Stirling Management Series = Stirl. Manag. Ser. Stitching Identities in A Free Trade Zone: Gender and Politics in Sri Lanka = Contemp Ethnogr Stitching Identities in A Free Trade Zone: Gender and Politics in Sri Lanka = Contemp. Ethnogr. St. John's law review = St Johns Law Rev St Luke's Hospital Gazette = St Lukes Hosp. Gaz. (Guardamangia) St. Luke's journal of theology = St Lukes J Theol Stm and Afm Studies On (bio)molecular Systems: Unravelling The Nanoworld = Top Curr Chem Stm and Afm Studies On (bio)molecular Systems: Unravelling The Nanoworld = Top. Curr. Chem. St. Mary's Hospital gazette = St Marys Hosp Gaz St. Mary's law journal = St Marys Law J Stm Investigation of Molecular Architectures of Porphyrinoids On A Ag(111) Surface: Supramolecular Ordering, Electronic Properties and Reactivity = Springer Theses-reco Stm Investigation of Molecular Architectures of Porphyrinoids On A Ag(111) Surface: Supramolecular Ordering, Electronic Properties and Reactivity = Springer. Theses-reco. STNS Journal of Trauma Nursing = STNS J. Trauma Nurs. STN's journal of trauma nursing : the official journal of the Society of Trauma Nurses = STNS J Trauma Nurs Stoc 07: Proceedings of The 39th Annual Acm Symposium On Theory of Computing = Acm S Theory Comput Stoc 07: Proceedings of The 39th Annual Acm Symposium On Theory of Computing = Acm S. Theory Comput. Stochastic Algorithms: Foundations and Applications = Lect Notes Comput Sc Stochastic Algorithms: Foundations and Applications = Lect. Notes. Comput. Sc. Stochastic Algorithms: Foundations and Applications, Proceedings = Lect Notes Comput Sc Stochastic Algorithms: Foundations and Applications, Proceedings = Lect. Notes. Comput. Sc. Stochastic Analysis and Applications = Abel Symp Stochastic Analysis and Applications = Abel. Symp. Stochastic Analysis and Applications = Stoch Anal Appl Stochastic Analysis and Applications = Stoch. Anal. Appl. Stochastic Analysis and Applications = Stochastic Anal. Appl. Stochastic Analysis and Mathematical Physics (anestoc '98) = Trends Math Stochastic Analysis and Mathematical Physics (anestoc '98) = Trends. Math. Stochastic Analysis and Mathematical Physics Ii = Trends Math Stochastic Analysis and Mathematical Physics Ii = Trends. Math. Stochastic Analysis and Related Topics Ii = Lect Notes Math Stochastic Analysis and Related Topics Ii = Lect. Notes. Math. Stochastic Analysis and Related Topics Viii = Prog Probab Stochastic Analysis and Related Topics Viii = Prog. Probab. Stochastic Analysis and Related Topics Vii = Prog Probab Stochastic Analysis and Related Topics Vii = Prog. Probab. Stochastic Analysis and Related Topics V: The Silivri Workshop, 1994 = Prog Probab Stochastic Analysis and Related Topics V: The Silivri Workshop, 1994 = Prog. Probab. Stochastic Analysis in Discrete and Continuous Settings: With Normal Martingales = Lect Notes Math Stochastic Analysis in Discrete and Continuous Settings: With Normal Martingales = Lect. Notes. Math. Stochastic and Chaotic Dynamics in The Lakes = Aip Conf Proc Stochastic and Chaotic Dynamics in The Lakes = Aip. Conf. Proc. Stochastic and Integral Geometry = Probab Appl Ser Stochastic and Integral Geometry = Probab. Appl. Ser. Stochastic and Neural Methods in Signal Processing, Image Processing, and Computer Vision = P Soc Photo-opt Ins Stochastic and Neural Methods in Signal Processing, Image Processing, and Computer Vision = P. Soc. Photo-opt. Ins. Stochastic and Quantum Dynamics of Biomolecular Systems = Aip Conf Proc Stochastic and Quantum Dynamics of Biomolecular Systems = Aip. Conf. Proc. Stochastic Calculus for Fractional Brownian Motion and Applications = Probab Appl Ser Stochastic Calculus for Fractional Brownian Motion and Applications = Probab. Appl. Ser. Stochastic Calculus for Fractional Brownian Motion and Related Processes = Lect Notes Math Stochastic Calculus for Fractional Brownian Motion and Related Processes = Lect. Notes. Math. Stochastic Climate Models = Prog Probab Stochastic Climate Models = Prog. Probab. Stochastic Coalgebraic Logic = Monogr Theor Comput Stochastic Coalgebraic Logic = Monogr. Theor. Comput. Stochastic Control in Insurance: Probability and Its Applications = Probab Appl Ser Stochastic Control in Insurance: Probability and Its Applications = Probab. Appl. Ser. Stochastic Control of Hereditary Systems and Applications = Stoch Mod Appl Proba Stochastic Control of Hereditary Systems and Applications = Stoch. Mod. Appl. Proba. Stochastic Differential Equations in Infinite Dimensional Spaces = Inst Math S Stochastic Differential Equations in Infinite Dimensional Spaces = Inst. Math. S. Stochastic Differential Equations in Infinite Dimensions: With Applications to Stochastic Partial Differential Equations = Probab Appl Ser Stochastic Differential Equations in Infinite Dimensions: With Applications to Stochastic Partial Differential Equations = Probab. Appl. Ser. Stochastic Distribution Control System Design: A Complex Optimization Approach = Adv Ind Control Stochastic Distribution Control System Design: A Complex Optimization Approach = Adv. Ind. Control Stochastic Dominance: Investment Decision Making Under Uncertainty, Second Edition = Stud Risk Uncertain Stochastic Dominance: Investment Decision Making Under Uncertainty, Second Edition = Stud. Risk. Uncertain. Stochastic Dynamics and Boltzmann Hierarchy = Degruyter Expos Math Stochastic Dynamics and Boltzmann Hierarchy = Degruyter. Expos. Math. Stochastic Dynamics and Pattern Formation in Biological and Complex Systems = Aip Conf Proc Stochastic Dynamics and Pattern Formation in Biological and Complex Systems = Aip. Conf. Proc. Stochastic Energetics = Lect Notes Phys Stochastic Energetics = Lect. Notes. Phys. Stochastic Environmental Research and Risk Assessment = Stoch Env Res Risk A Stochastic Environmental Research and Risk Assessment = Stoch. Env. Res. Risk A. Stochastic Geometry = Lect Notes Math Stochastic Geometry = Lect. Notes. Math. Stochastic Geometry = Mg Stat Pro Stochastic Geometry = Mg. Stat. Pro. Stochastic Global Optimization = Springer Ser Optim A Stochastic Global Optimization = Springer. Ser. Optim. A. Stochastic Hybrid Systems = Lect Notes Contr Inf Stochastic Hybrid Systems = Lect. Notes. Contr. Inf. Stochastic Hybrid Systems: Theory and Safety Critical Applications = Lect Notes Contr Inf Stochastic Hybrid Systems: Theory and Safety Critical Applications = Lect. Notes. Contr. Inf. Stochastic Hydrology and Hydraulics = Stoch Hydrol Hydraul Stochastic Hydrology and Hydraulics = Stoch. Hydrol. Hydraul. Stochastic Implied Volatility: A Factor-based Model = Lect Notes Econ Math Stochastic Implied Volatility: A Factor-based Model = Lect. Notes. Econ. Math. Stochastic Inequalities and Applications = Prog Probab Stochastic Inequalities and Applications = Prog. Probab. Stochasticity and Quantum Chaos = Math Appl Stochasticity and Quantum Chaos = Math. Appl. Stochastic Linear Programming: Models, Theory, and Computation, 2nd Edition = Int Ser Oper Res Man Stochastic Linear Programming: Models, Theory, and Computation, 2nd Edition = Int. Ser. Oper. Res. Man. Stochastic Methods in Finance = Lect Notes Math Stochastic Methods in Finance = Lect. Notes. Math. Stochastic Modeling and Optimization of Manufacturing Systems and Supply Chains = Int Ser Oper Res Man Stochastic Modeling and Optimization of Manufacturing Systems and Supply Chains = Int. Ser. Oper. Res. Man. Stochastic Modeling Series = Stochastic Model. Ser. Stochastic Modeling = Stochastic Model. Stochastic Modelling and Applied Probability = Stoch Mod Appl Proba Stochastic Modelling and Applied Probability = Stoch. Mod. Appl. Proba. Stochastic Modelling in Innovative Manufacturing = Lect Notes Econ Math Stochastic Modelling in Innovative Manufacturing = Lect. Notes. Econ. Math. Stochastic Models and Option Values = Contrib To Econ Anal Stochastic Models and Option Values = Contrib. To. Econ. Anal. Stochastic Models, Information Theory, and Lie Groups, Vol 1: Classical Results and Geometric Methods = Appl Numer Harmon An Stochastic Models, Information Theory, and Lie Groups, Vol 1: Classical Results and Geometric Methods = Appl. Numer. Harmon. An. Stochastic Models = Stoch Models Stochastic Models = Stoch. Models Stochastic Networks = Lect Notes Stat Stochastic Networks = Lect. Notes. Stat. Stochastic Optimization: Algorithms and Applications = Appl Optim Stochastic Optimization: Algorithms and Applications = Appl. Optim. Stochastic Optimization: Algorithms and Applications = Appl Optimizat Stochastic Optimization: Algorithms and Applications = Appl. Optimizat. Stochastic Optimization : Numerical Methods and Technical Applications = Lect Notes Econ Math Stochastic Optimization : Numerical Methods and Technical Applications = Lect. Notes. Econ. Math. Stochastic Orders = Springer Ser Stat Stochastic Orders = Springer. Ser. Stat. Stochastic Ordinary and Stochastic Partial Differential Equations: Transition From Microscopic to Macroscopic Equations = Stoch Mod Appl Proba Stochastic Ordinary and Stochastic Partial Differential Equations: Transition From Microscopic to Macroscopic Equations = Stoch. Mod. Appl. Proba. Stochastic Partial Differential Equations and Applications = Lect Notes Pure Appl Stochastic Partial Differential Equations and Applications = Lect. Notes. Pure. Appl. Stochastic Processes and Functional Analysis, in Celebration of M M Rao's 65th Birthday = Lect Notes Pure Appl Stochastic Processes and Functional Analysis, in Celebration of M M Rao's 65th Birthday = Lect. Notes. Pure. Appl. Stochastic Processes and Related Topics = Stochast M Stochastic Processes and Related Topics = Stochast. M. Stochastic Processes and Their Applications / = Lect Notes Econ Math Stochastic Processes and Their Applications / = Lect. Notes. Econ. Math. Stochastic Processes and their Applications = Stochastic Process. Appl. Stochastic Processes and Their Applications = Stoch Proc Appl Stochastic Processes and Their Applications = Stoch. Proc. Appl. Stochastic Processes, Estimation, and Control = Adv Des Control Stochastic Processes, Estimation, and Control = Adv. Des. Control Stochastic Processes in Astrophysics = Ann Ny Acad Sci Stochastic Processes in Astrophysics = Ann. Ny. Acad. Sci. Stochastic Processes, Optimization, and Control Theory: Applications in Financial Engineering, Queueing Networks, and Manufacturing Systems = Int Ser Oper Res Man Stochastic Processes, Optimization, and Control Theory: Applications in Financial Engineering, Queueing Networks, and Manufacturing Systems = Int. Ser. Oper. Res. Man. Stochastic Processes: With Applications to Reliability Theory = Springer Ser Reliab Stochastic Processes: With Applications to Reliability Theory = Springer. Ser. Reliab. Stochastic Programming Methods and Technical Applications = Lect Notes Econ Math Stochastic Programming Methods and Technical Applications = Lect. Notes. Econ. Math. Stochastic Programming: The State of The Art in Honor of George B. Dantzig = Int Ser Oper Res Man Stochastic Programming: The State of The Art in Honor of George B. Dantzig = Int. Ser. Oper. Res. Man. Stochastics and Dynamics = Stochastics Dyn. Stochastics and Dynamics = Stoch Dynam Stochastics and Dynamics = Stoch. Dynam. Stochastics and Stochastics Reports = Stochastics Stochastics Rep. Stochastics-an International Journal of Probability and Stochastic Processes = Stochastics Stochastics-an International Journal of Probability and Stochastic Processes = Stochastics. Stochastics: Introduction to Probability and Statistics, 2008 = Degruyter Textb Stochastics: Introduction to Probability and Statistics, 2008 = Degruyter. Textb. Stochastics Monographs = Stochastics Monogr. Stochastics Monographs : Theory and Applicationsof Stochastic Pr Ocesses = Stochast M Stochastics Monographs : Theory and Applicationsof Stochastic Pr Ocesses = Stochast. M. Stochastic Theory and Control, Proceedings = Lect Notes Contr Inf Stochastic Theory and Control, Proceedings = Lect. Notes. Contr. Inf. Stochastic Tools in Mathematics and Science, Second Edition = Surv Tutor Appl Math Stochastic Tools in Mathematics and Science, Second Edition = Surv. Tutor. Appl. Math. Stochastik-einfuhrung in Die Wahrscheinlichkeitstheorie Und Statistik, 2009 = Degruyter Lehrb Stochastik-einfuhrung in Die Wahrscheinlichkeitstheorie Und Statistik, 2009 = Degruyter. Lehrb. Stockholm Studies in Law = Stockh Stud Law Stockholm Studies in Law = Stockh. Stud. Law Stockholm: The Making of A Metropolis = Plan Hist Environ Se Stockholm: The Making of A Metropolis = Plan. Hist. Environ. Se. Stockholm Water Symposium = Stockholm Water Symp Stockholm Water Symposium = Stockholm Water Symp. Stock Management for Sustainable Urban Regeneration = Csur Ut Ser Lib Sust Stock Management for Sustainable Urban Regeneration = Csur. Ut. Ser. Lib. Sust. Stock Market Volatility = Ch Crc Financ Ser Stock Market Volatility = Ch. Crc. Financ. Ser. Stock Preparation Short Course = Notes Tech Stock Preparation Short Course = Notes. Tech. Stomach As An Endocrine Organ = Ferns Found Series Stomach As An Endocrine Organ = Ferns. Found. Series. Stoma (Lisbon, Portugal) = Stoma (Lisb) Stoma = Stoma (Heidelb) Stoma = Stoma (Lisb.) Stoma (Thessalonike, Greece) = Stoma (Thessaloniki) Stomatologia mediterranea : SM = Stomatol Mediterr Stomatologia Mediterranea = Stomatol. Mediterr. Stomatologia = Stomatologia (Bucur.) Stomatologia = Stomatologia (Bucur) Stomatologica = Stomatologica (Genova) Stomatologicke zpravy / SPOFA = Stomatol Zpr Stomatologicke Zpravy = Stomatol. Zpr. Stomatologicky vestnik = Stomatol Vestn Stomatologie (Bucharest, Romania) = Stomatologie Stomatologie der DDR = Stomatol DDR Stomatologie der DDR = Stomatol. DDR Stomatologie = Stomatologie Stomatologiia=Stomatologiia (Mosk);; Stomatologiia = Stomatologiia (Mosk) Stomatologiia = Stomatologiia (Sofiia) Stomatologiia. Stomatology = Stomatologiia (Sofiia) Stomatologija / issued by public institution "Odontologijos studija" ... [et al.] = Stomatologija Stomatologika chronika. Acta stomatologica Hellenica = Stomatol Chron (Athenai) Stomatologika Chronika = Stomatol. Chron. (Athenai) Stomatoloski glasnik Srbije = Stomatol Glas Srb Stomatoloski Glasnik Srbije = Stomatol. Glas. Srb. Stomatoloski vjesnik. Stomatological review = Stomatol Vjesn Stomatoloski Vjesnik (Stomatological Review) = Stomatol. Vjesn. Stone Decay in The Architectural Environment = Geol Soc Am Spec Pap Stone Decay in The Architectural Environment = Geol. Soc. Am. Spec. Pap. Stone Deterioration in Polluted Urban Environments = Land Recons Stone Deterioration in Polluted Urban Environments = Land. Recons. Stone Deterioration in Polluted Urban Environments = Land Reconstr Manag Stone Deterioration in Polluted Urban Environments = Land. Reconstr. Manag. Stone Tools = Interd Cont Stone Tools = Interd. Cont. Stop-merkin Ja 20 Km/h - Nopeusrajoituksen Kaytto Tasoristeyksissa = Vtt Res Notes Stop-merkin Ja 20 Km/h - Nopeusrajoituksen Kaytto Tasoristeyksissa = Vtt. Res. Notes. Stopped Random Walks: Limit Theorems and Applications, Second Edition = Springer Ser Oper Re Stopped Random Walks: Limit Theorems and Applications, Second Edition = Springer. Ser. Oper. Re. Stopping of Heavy Ions: A Theroretical Approach = Springer Tr Mod Phys Stopping of Heavy Ions: A Theroretical Approach = Springer. Tr. Mod. Phys. Storage and Retrieval for Image and Video Databases Iii = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases Iii = P. Soc. Photo-opt. Ins. Storage and Retrieval for Image and Video Databases Ii = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases Ii = P. Soc. Photo-opt. Ins. Storage and Retrieval for Image and Video Databases = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases = P. Soc. Photo-opt. Ins. Storage and Retrieval for Image and Video Databases Vii = Proc Spie Storage and Retrieval for Image and Video Databases Vii = Proc. Spie. Storage and Retrieval for Image and Video Databases Vii = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases Vii = P. Soc. Photo-opt. Ins. Storage and Retrieval for Image and Video Databases Vi = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases Vi = P. Soc. Photo-opt. Ins. Storage and Retrieval for Image and Video Databases V = P Soc Photo-opt Ins Storage and Retrieval for Image and Video Databases V = P. Soc. Photo-opt. Ins. Storage and Retrieval for Media Databases 2000 = Proc Spie Storage and Retrieval for Media Databases 2000 = Proc. Spie. Storage and Retrieval for Media Databases 2000 = P Soc Photo-opt Ins Storage and Retrieval for Media Databases 2000 = P. Soc. Photo-opt. Ins. Storage and Retrieval for Media Databases 2001 = Proc Spie Storage and Retrieval for Media Databases 2001 = Proc. Spie. Storage and Retrieval for Media Databases 2001 = P Soc Photo-opt Ins Storage and Retrieval for Media Databases 2001 = P. Soc. Photo-opt. Ins. Storage and Retrieval for Media Databases 2002 = Proc Spie Storage and Retrieval for Media Databases 2002 = Proc. Spie. Storage and Retrieval for Media Databases 2002 = P Soc Photo-opt Ins Storage and Retrieval for Media Databases 2002 = P. Soc. Photo-opt. Ins. Storage and Retrieval for Media Databases 2003 = Proc Spie Storage and Retrieval for Media Databases 2003 = Proc. Spie. Storage and Retrieval for Media Databases 2003 = P Soc Photo-opt Ins Storage and Retrieval for Media Databases 2003 = P. Soc. Photo-opt. Ins. Storage and Retrieval for Still Image and Video Databases Iv = P Soc Photo-opt Ins Storage and Retrieval for Still Image and Video Databases Iv = P. Soc. Photo-opt. Ins. Storage and Retrieval Methods and Applications for Multimedia 2004 = Proc Spie Storage and Retrieval Methods and Applications for Multimedia 2004 = Proc. Spie. Storage and Retrieval Methods and Applications for Multimedia 2004 = P Soc Photo-opt Ins Storage and Retrieval Methods and Applications for Multimedia 2004 = P. Soc. Photo-opt. Ins. Storage and Retrieval Methods and Applications for Multimedia 2005 = Proc Spie Storage and Retrieval Methods and Applications for Multimedia 2005 = Proc. Spie. Storage and Retrieval Methods and Applications for Multimedia 2005 = P Soc Photo-opt Ins Storage and Retrieval Methods and Applications for Multimedia 2005 = P. Soc. Photo-opt. Ins. Storage and Retrieval Systems and Applications = P Soc Photo-opt Ins Storage and Retrieval Systems and Applications = P. Soc. Photo-opt. Ins. Storage of Spent Fuel From Power Reactors = Iaea Conf Symp Pap Storage of Spent Fuel From Power Reactors = Iaea. Conf. Symp. Pap. Stored-grain Ecosystems = Book Soil P Stored-grain Ecosystems = Book. Soil. P. Storia contemporanea = Stor Contemp Storia Contemporanea = Storia Contemp Storia Contemporanea = Storia Contemp. Storia Dell Arte = Storia Arte Storia della storiografia = SStor Storia e critica della psicologia = Stor Crit Psicol Storia e medicina popolare = Stor Med Pop Storia in Lombardia = Stor Lomb Storia urbana = Stor Urbana Storied Inquiries International Landscapes: An Anthology of Educational Research = Teach Learn Indig In Storied Inquiries International Landscapes: An Anthology of Educational Research = Teach. Learn. Indig. In. St Petersburg Mathematical Journal = St Petersb Math J St Petersburg Mathematical Journal = St Petersb Math J+ St Petersburg Mathematical Journal = St Petersb. Math. J. St Petersburg Mathematical Journal = St Petersb. Math. J+.+ Stp Pharma Sciences = Stp Pharma Sci Stp Pharma Sciences = Stp Pharma Sci. Strabismus = Strabismus Strada maestra; quaderni della Biblioteca comunale "G. C. Croce" di San Giovanni in Persiceto = Strada Maestra Strad = Strad Strafvollzugsgesetz: Bund Und Lander = Degruyter Komment Strafvollzugsgesetz: Bund Und Lander = Degruyter. Komment. Strahlenmedizin: Ein Leitfaden Fur Den Praktiker = Leitf Prakt Strahlenmedizin: Ein Leitfaden Fur Den Praktiker = Leitf. Prakt. Strahlenschutz in Forschung Und Praxis = Strah Fors Strahlenschutz in Forschung Und Praxis = Strah. Fors. Strahlenschutz in Forschung und Praxis = Strahlenschutz Forsch Prax Strahlenschutz in Forschung und Praxis = Strahlenschutz Forsch. Prax. Strahlentherapie. Sonderbande = Strahlentherapie [Sonderb.] Strahlentherapie. Sonderbande = Strahlentherapie [Sonderb] Strahlentherapie = Strahlentherapie Strahlentherapie = Strahlenther Onkol Strahlentherapie = Strahlenther. Onkol. Strahlentherapie und Onkologie : Organ der Deutschen Rontgengesellschaft ... [et al] = Strahlenther Onkol Strahlentherapie und Onkologie = Strahlenther. Onkol. Strahlentherapie Und Onkologie=Strahlenther Onkol;; Strahlentherapie Und Onkologie = Strahlenther Onkol Strahlentherapie Und Onkologie = Strahlenther. Onkol. Straight State: Sexuality and Citizenship in Twentieth-century America = Polit Soc Twentieth Straight State: Sexuality and Citizenship in Twentieth-century America = Polit. Soc. Twentieth. Strain and Its Implications in Organic Chemistry = Nato Adv Sci I C-mat Strain and Its Implications in Organic Chemistry = Nato. Adv. Sci. I. C-mat. Strained Layer Epitaxy-materials, Processing, and Device Applications = Mater Res Soc Symp P Strained Layer Epitaxy-materials, Processing, and Device Applications = Mater. Res. Soc. Symp. P. Strain Engineering: Methods and Protocols = Methods Mol Biol Strain Engineering: Methods and Protocols = Methods Mol. Biol. Strain-induced Effects in Advanced Mosfets = Comp Microelectron Strain-induced Effects in Advanced Mosfets = Comp. Microelectron. Strain = Strain Strange Acts: Studies in The Cultural World of The Acts of The Apostles = Beih Z Neutest Wiss Strange Acts: Studies in The Cultural World of The Acts of The Apostles = Beih. Z. Neutest. Wiss. Strange Beauty: Ecocritical Approaches to Early Medieval Landscape = New Middle Ages Strange Beauty: Ecocritical Approaches to Early Medieval Landscape = New. Middle. Ages. Strangeness in Hadronic Matter = Aip Conf Proc Strangeness in Hadronic Matter = Aip. Conf. Proc. Strangers, Aliens and Asians = Brit Polit Soc Strangers, Aliens and Asians = Brit. Polit. Soc. Strange World of Human Sacrifice = Stud His Anth Rel Strange World of Human Sacrifice = Stud. His. Anth. Rel. Strasbourg medical = Strasb Med Strasbourg Medical = Strasb. Med. Strategic Alliances: Coalition Building and Social Movements = Soc Mov Protest Cont Strategic Alliances: Coalition Building and Social Movements = Soc. Mov. Protest. Cont. Strategic Alliances in A Globalizing World = Res Strateg Alliance Strategic Alliances in A Globalizing World = Res. Strateg. Alliance. Strategic Alliances in Biotechnology and Pharmaceuticals = Biotech Agr Ind Med Strategic Alliances in Biotechnology and Pharmaceuticals = Biotech. Agr. Ind. Med. Strategic Basing and The Great Powers, 1200-2000 = Strateg Hist Strategic Basing and The Great Powers, 1200-2000 = Strateg. Hist. Strategic Competition in Oligopolies With Fluctuating Demand = Lect Notes Econ Math Strategic Competition in Oligopolies With Fluctuating Demand = Lect. Notes. Econ. Math. Strategic Culture and Ways of War = Cass Mil Stud Strategic Culture and Ways of War = Cass. Mil. Stud. Strategic Culture and Weapons of Mass Destruction: Culturally Based Insights Into Comparative National Security Policymaking = Initiat Strateg Stud Strategic Culture and Weapons of Mass Destruction: Culturally Based Insights Into Comparative National Security Policymaking = Initiat. Strateg. Stud. Strategic Discovery = Strat Manag Ser Strategic Discovery = Strat. Manag. Ser. Strategic Entrepreneurship Journal = Strateg Entrep J Strategic Entrepreneurship Journal = Strateg. Entrep. J. Strategic Environmental Assessment in Europe = Envir Sci Tech Lib Strategic Environmental Assessment in Europe = Envir. Sci. Tech. Lib. Strategic Factors in Nineteeth Century American Economic History = Nber Conf R Strategic Factors in Nineteeth Century American Economic History = Nber. Conf. R. Strategic Flexibility = Strat Manag Ser Strategic Flexibility = Strat. Manag. Ser. Strategic Implications for Global Health = Public Health 21st C Strategic Implications for Global Health = Public. Health 21st. C. Strategic Integration = Strat Manag Ser Strategic Integration = Strat. Manag. Ser. Strategic Management Journal = Strategic Manage J Strategic Management Journal = Strategic Manage. J. Strategic Management Journal = Strateg Manage J Strategic Management Journal = Strateg. Manage. J. Strategic Management of Marine Ecosystems = Nato Sci S Ss Iv Ear Strategic Management of Marine Ecosystems = Nato. Sci. S. Ss. Iv. Ear. Strategic Management of The Manufacturing Value Chain = Int Fed Info Proc Strategic Management of The Manufacturing Value Chain = Int. Fed. Info. Proc. Strategic Management Series = Strat Manag Ser Strategic Management Series = Strat. Manag. Ser. Strategic Organization Development: Managing Change for Success = Cont Trend Organ Dev Strategic Organization Development: Managing Change for Success = Cont. Trend. Organ. Dev. Strategic Organization = Strateg Organ Strategic Organization = Strateg. Organ. Strategic Plan for Niosh Nanotechnology Research and Guidance = Nanotechnol Sci Tech Strategic Plan for Niosh Nanotechnology Research and Guidance = Nanotechnol. Sci. Tech. Strategic Planning for Regional Development in The Uk = Nat Built Environ Se Strategic Planning for Regional Development in The Uk = Nat. Built. Environ. Se. Strategic Positioning in Voluntary and Charitable Organizations = Routl Stud Man Volun Strategic Positioning in Voluntary and Charitable Organizations = Routl. Stud. Man. Volun. Strategic Project Leader: Mastering Service-based Project Leadership = Ctr Bus Pract Strategic Project Leader: Mastering Service-based Project Leadership = Ctr. Bus. Pract. Strategic Public Relations Management = Commun Ser Strategic Public Relations Management = Commun. Ser. Strategic Social Choice: Stable Representations of Constitutions = Stud Choice Welf Strategic Social Choice: Stable Representations of Constitutions = Stud. Choice. Welf. Strategic Stability in The Post Cold-war World and The Future of Nuclear Disarmament = Nato Sci S 1 Disarm Strategic Stability in The Post Cold-war World and The Future of Nuclear Disarmament = Nato. Sci. S. 1. Disarm. Strategic Supply Chain Management in Process Industries: An Application to Specialty Chemicals Production Network Design = Lect Notes Econ Math Strategic Supply Chain Management in Process Industries: An Application to Specialty Chemicals Production Network Design = Lect. Notes. Econ. Math. Strategic Thinking About The Korean Nuclear Crisis: Four Parties Caught Between North Korea and The United States = Strateg Thought Ne A Strategic Thinking About The Korean Nuclear Crisis: Four Parties Caught Between North Korea and The United States = Strateg. Thought. Ne. A. Strategic Thinking and Entrepreneurial Action in The Health Care Industry = Adv Health Care Mana Strategic Thinking and Entrepreneurial Action in The Health Care Industry = Adv. Health Care Mana. Strategic Thought in Northeast Asia = Strateg Thought Ne A Strategic Thought in Northeast Asia = Strateg. Thought Ne. A. Strategic Trading in Illiquid Markets = Lect Notes Econ Math Strategic Trading in Illiquid Markets = Lect. Notes. Econ. Math. Strategies for A Modern Pomology, Fruit Section Workshop = Acta Hortic Strategies for A Modern Pomology, Fruit Section Workshop = Acta. Hortic. Strategies for Engineered Negligible Senescence: Why Genuine Control of Aging May Be Foreseeable = Ann Ny Acad Sci Strategies for Engineered Negligible Senescence: Why Genuine Control of Aging May Be Foreseeable = Ann. Ny. Acad. Sci. Strategies for healthcare excellence : organizational productivity, quality and effectiveness = Strateg Healthc Excell Strategies for Healthcare Excellence = Strateg. Healthc. Excell. Strategies for Public Management Reform = Res Public Policy An Strategies for Public Management Reform = Res. Public Policy. An. Strategies for Regenerating The Library and Information Profession = Ifla Publ Strategies for Regenerating The Library and Information Profession = Ifla. Publ. Strategies for Risk Communication: Evolution, Evidence, Experience = Ann Ny Acad Sci Strategies for Risk Communication: Evolution, Evidence, Experience = Ann. Ny. Acad. Sci. Strategies for Sustainability = Strat Sustain Strategies for Sustainability = Strat. Sustain. Strategies for The Development of Fat-tail Sheep in The Near East = Eaap Public Strategies for The Development of Fat-tail Sheep in The Near East = Eaap. Public. Strategies for The Rural Economy = Cas Paper Strategies for The Rural Economy = Cas. Paper. Strategies for The Treatment of Hepatobiliary Diseases = Falk Symp Strategies for The Treatment of Hepatobiliary Diseases = Falk. Symp. Strategies in Genetic Counseling : Reproductive Genetics & New Technologies = Birth Def Strategies in Genetic Counseling : Reproductive Genetics & New Technologies = Birth. Def. Strategies in Size Exclusion Chromatography = Acs Sym Ser Strategies in Size Exclusion Chromatography = Acs. Sym. Ser. Strategies of Cancer Prevention in Gastroenterology = Falk Symp Strategies of Cancer Prevention in Gastroenterology = Falk. Symp. Strategies of Life Detection = Space Sci Ser Issi Strategies of Life Detection = Space. Sci. Ser. Issi. Strategies of Rhetoric = Fr Lit Ser Strategies of Rhetoric = Fr. Lit. Ser. Strategies of The International Scientific Cooperation in South-east Europe = Nato Asi S 4 Sci Tec Strategies of The International Scientific Cooperation in South-east Europe = Nato. Asi. S. 4. Sci. Tec. Strategies to Enhance Environmental Security in Transition Countries = Nato Sci Peace Sec C Strategies to Enhance Environmental Security in Transition Countries = Nato. Sci. Peace. Sec. C. Strategies to Enhance Environmental Security in Transition Countries = Nato Sci Peace Secur Strategies to Enhance Environmental Security in Transition Countries = Nato. Sci. Peace. Secur. Strategies to Improve Bali Cattle in Eastern Indonesia = Aciar Proc Strategies to Improve Bali Cattle in Eastern Indonesia = Aciar. Proc. Strategizing Resilience and Reducing Vulnerability = Defen Secur Strat Strategizing Resilience and Reducing Vulnerability = Defen. Secur. Strat. Strategizing Resilience and Reducing Vulnerability = Def Secur Strateg Strategizing Resilience and Reducing Vulnerability = Def. Secur. Strateg. Strategy and Governance of Networks: Cooperatives, Franchising, and Strategic Alliances = Contrib Manag Sci Strategy and Governance of Networks: Cooperatives, Franchising, and Strategic Alliances = Contrib. Manag. Sci. Strategy and History: Essays On Theory and Practice = Strateg Hist Strategy and History: Essays On Theory and Practice = Strateg. Hist. Strategy and History = Strateg Hist Strategy and History = Strateg. Hist. Strategy in The American War of Independence = Cass Mil Stud Strategy in The American War of Independence = Cass. Mil. Stud. Strategy Mix for Nonprofit Organisations: Vehicles for Social and Labour Market Intergrations = Nonprof Civ Soc Stud Strategy Mix for Nonprofit Organisations: Vehicles for Social and Labour Market Intergrations = Nonprof. Civ. Soc. Stud. Strategy of Terrorism: How It Works, and Why It Fails = Contemp Terror Stud Strategy of Terrorism: How It Works, and Why It Fails = Contemp. Terror. Stud. Strategy Process = Adv Strat M Strategy Process = Adv. Strat. M. Strategy & tactics (Cambria, Calif.) = Strategy Tactics Stratified Lie Groups and Potential Theory for Their Sub-laplacians = Springer Monogr Math Stratified Lie Groups and Potential Theory for Their Sub-laplacians = Springer. Monogr. Math. Stratigraphic Analyses Using Gpr = Geol Soc Am Spec Pap Stratigraphic Analyses Using Gpr = Geol. Soc. Am. Spec. Pap. Stratigraphic Boundary Problem in India = Geol Soc India Mem Stratigraphic Boundary Problem in India = Geol. Soc. India Mem. Stratigraphy and Geological Correlation = Stratigr Geo Correl+ Stratigraphy and Geological Correlation = Stratigr. Geo. Correl+.+ Stratigraphy and Geological Correlation = Stratigr Geol Correl Stratigraphy and Geological Correlation = Stratigr. Geol. Correl. Stratigraphy and Geology of Volcanic Areas = Geol Soc Am Spec Pap Stratigraphy and Geology of Volcanic Areas = Geol. Soc. Am. Spec. Pap. Stratigraphy = Stratigraphy Stratosphere: Dynamics, Transport, and Chemistry = Geophys Monogr Ser Stratosphere: Dynamics, Transport, and Chemistry = Geophys. Monogr. Ser. Stray Radiation in Optical Systems Iii = P Soc Photo-opt Ins Stray Radiation in Optical Systems Iii = P. Soc. Photo-opt. Ins. Stray Radiation in Optical Systems Ii = P Soc Photo-opt Ins Stray Radiation in Optical Systems Ii = P. Soc. Photo-opt. Ins. Stray Radiation in Optical Systems = P Soc Photo-opt Ins Stray Radiation in Optical Systems = P. Soc. Photo-opt. Ins. Stream Data Processing: A Quality of Service Perspective = Adv Database Syst Stream Data Processing: A Quality of Service Perspective = Adv. Database. Syst. Streamers, Slow Solar Wind, and The Dynamics of The Magnetosphere = Adv Space Res Streamers, Slow Solar Wind, and The Dynamics of The Magnetosphere = Adv. Space. Res. Streamers, Slow Solar Wind, and The Dynamics of The Magnetosphere = Adv Space Res-series Streamers, Slow Solar Wind, and The Dynamics of The Magnetosphere = Adv. Space. Res-series. Stream Restoration: Halting Disturbances, Assisted Recovery and Managed Recovery = Env Remed Tech Regul Stream Restoration: Halting Disturbances, Assisted Recovery and Managed Recovery = Env. Remed. Tech. Regul. Streben Und Bewegen: Aristoteles Theorie Der Animalischen Ortsbewegung = Quellen Stud Philos Streben Und Bewegen: Aristoteles Theorie Der Animalischen Ortsbewegung = Quellen. Stud. Philos. Street Entrepreneurs: People, Place, and Politics in Local and Global Perspective = Routl Stud Mod World Street Entrepreneurs: People, Place, and Politics in Local and Global Perspective = Routl. Stud. Mod. World. Streetlights and Shadows: Searching for The Keys to Adaptive Decision Making = Bradford Books Streetlights and Shadows: Searching for The Keys to Adaptive Decision Making = Bradford. Books. Street Smart: Competition, Entrepreneurship, and The Future of Roads = Indep Stud Polit Eco Street Smart: Competition, Entrepreneurship, and The Future of Roads = Indep. Stud. Polit. Eco. Strength Analysis in Geomechanics = Found Eng Mech Strength Analysis in Geomechanics = Found. Eng. Mech. Strength Analysis in Geomechanics, Second Edition = Springer Ser Geomech Strength Analysis in Geomechanics, Second Edition = Springer. Ser. Geomech. Strength and Conditioning Journal = Strength Cond J Strength and Conditioning Journal = Strength Cond. J. Strength and Conditioning = Strength Cond Strength and Conditioning = Strength Cond. Strength and Stiffness of Engineering Systems = Mech Eng Ser Strength and Stiffness of Engineering Systems = Mech. Eng. Ser. Strength and Weakness At The Interface: Positional Neutralization in Phonetics and Phonology = Phonol Phonet Strength and Weakness At The Interface: Positional Neutralization in Phonetics and Phonology = Phonol. Phonet. Strengthening and Rehabilitation of Civil Infrastructures Using Fibre-reinforced Polymer (frp) Composites = Woodhead Publ Mater Strengthening and Rehabilitation of Civil Infrastructures Using Fibre-reinforced Polymer (frp) Composites = Woodhead. Publ. Mater. Strengthening Cooperation in The 21st Century = Adv Astronaut Sci Strengthening Cooperation in The 21st Century = Adv. Astronaut. Sci. Strengthening Historic Covered Bridges to Carry Modern Traffic = Transp Infrastruct-r Strengthening Historic Covered Bridges to Carry Modern Traffic = Transp. Infrastruct-r. Strengthening Local Governments in Sub-saharan Africa = Edi Pol Sem Strengthening Local Governments in Sub-saharan Africa = Edi. Pol. Sem. Strengthening of The European Statistical System = Europ Commiss Ser D Strengthening of The European Statistical System = Europ. Commiss. Ser. D. Strengthening Relations With Arab and Islamic Countries Through International Law = Pca Peace Palace Pap Strengthening Relations With Arab and Islamic Countries Through International Law = Pca. Peace. Palace. Pap. Strength From Weakness: Structural Consequences of Weak Interactions in Molecules, Supermolecules, and Crystals = Nato Sci Ser Ii-math Strength From Weakness: Structural Consequences of Weak Interactions in Molecules, Supermolecules, and Crystals = Nato. Sci. Ser. Ii-math. Strength From Weakness: Structural Consequences of Weak Interactions in Molecules, Supermolecules, and Crystals = Nato Sci Ser Ii Math Strength From Weakness: Structural Consequences of Weak Interactions in Molecules, Supermolecules, and Crystals = Nato. Sci. Ser. Ii. Math. Strength of Materials = Mater Sci Technol Strength of Materials = Mater. Sci. Technol. Strength of Materials = Strength Mater. Strength of Materials = Strength Mater+ Strength of Materials = Strength Mater+.+ Strength Relations in Phonology = Stud Genera Grammar Strength Relations in Phonology = Stud. Genera. Grammar. Strength Relations in Phonology = Stud Generat Gramm Strength Relations in Phonology = Stud. Generat. Gramm. Strength Training: Types and Principles, Benefits and Concerns = Sports Athl Prep Per Strength Training: Types and Principles, Benefits and Concerns = Sports. Athl. Prep. Per. Strenna dei romanisti = StrennaRom Strenna storica bolognese = Strenna Stor Bolognese Streptococci and The Host = Adv Exp Med Biol Streptococci and The Host = Adv. Exp. Med. Biol. Stress (Amsterdam, Netherlands) = Stress Stress and Anxiety, Vol 13 = Ser Clin C Stress and Anxiety, Vol 13 = Ser. Clin. C. Stress and Behavior = Adv Stud Behav Stress and Behavior = Adv. Stud. Behav. Stress and Coping in Later-life Families = S Ap Psyc S Stress and Coping in Later-life Families = S. Ap. Psyc. S. Stress and Coping = Stress Cop Stress and Coping = Stress Cop. Stress and Health = Stress Health Stress and Quality of Working Life Series = Stress Qual Work Lif Stress and Quality of Working Life Series = Stress Qual. Work. Lif. Stress and Quality of Working Life: The Positive and The Negative = Stress Qual Work Lif Stress and Quality of Working Life: The Positive and The Negative = Stress Qual. Work. Lif. Stress and Reproduction = Serono Sym Stress and Reproduction = Serono. Sym. Stress and The Aging Brain = Aging Stress = Ann Ny Acad Sci Stress = Ann. Ny. Acad. Sci. Stress, Coping and Disease = Stress Cop Stress, Coping and Disease = Stress. Cop. Stress: Current Neuroendocrine and Genetic Approaches = Ann Ny Acad Sci Stress: Current Neuroendocrine and Genetic Approaches = Ann. Ny. Acad. Sci. Stress Evaluation in Materials Using Neutrons and Synchrotron Radiation = Mater Sci Forum Stress Evaluation in Materials Using Neutrons and Synchrotron Radiation = Mater. Sci. Forum. Stress Hormones and Post Traumatic Stress Disorder: Basic Studies and Clinical Perspectives = Prog Brain Res Stress Hormones and Post Traumatic Stress Disorder: Basic Studies and Clinical Perspectives = Prog. Brain. Res. Stress, Immunity and Ageing : A Role for Acetyl-l-carnitine = Int Congr Ser Stress, Immunity and Ageing : A Role for Acetyl-l-carnitine = Int. Congr. Ser. Stress-induced Phenomena in Metallization = Aip Conf Proc Stress-induced Phenomena in Metallization = Aip. Conf. Proc. Stress Induced Phenomena in Metallization = Aip Conf Proc Stress Induced Phenomena in Metallization = Aip. Conf. Proc. Stress Induced Phenomena in Metallization - Fourth International Workshop = Aip Conf Proc Stress Induced Phenomena in Metallization - Fourth International Workshop = Aip. Conf. Proc. Stress-induced Phenomena in Metallization: Second International Workshop = Aip Conf Proc Stress-induced Phenomena in Metallization: Second International Workshop = Aip. Conf. Proc. Stress-induced Phenomena in Metallization - Third International Workshop = Aip Conf Proc Stress-induced Phenomena in Metallization - Third International Workshop = Aip. Conf. Proc. Stress in The Year 2010 and Beyond = Psychol Res Prog Stress in The Year 2010 and Beyond = Psychol. Res. Prog. Stress medicine = Stress Med Stress Medicine = Stress Medicine Stress, Neurotransmitters, and Hormones: Neuroendocrine and Genetic Mechanisms = Ann Ny Acad Sci Stress, Neurotransmitters, and Hormones: Neuroendocrine and Genetic Mechanisms = Ann. Ny. Acad. Sci. Stress, Obesity, and Metabolic Syndrome = Ann Ny Acad Sci Stress, Obesity, and Metabolic Syndrome = Ann. Ny. Acad. Sci. Stress of Life = Ann Ny Acad Sci Stress of Life = Ann. Ny. Acad. Sci. Stress Response in Pathogenic Bacteria = Adv M C M Stress Response in Pathogenic Bacteria = Adv. M. C. M. Stress Responses in Biology and Medicine = Ann Ny Acad Sci Stress Responses in Biology and Medicine = Ann. Ny. Acad. Sci. Stress = Stress Stress-the International Journal On The Biology of Stress = Stress Stretching Water Supplies = Can Plain P Stretching Water Supplies = Can. Plain. P. Striking First: Preemption and Prevention in International Conflict = Univ Cent Hum Value Striking First: Preemption and Prevention in International Conflict = Univ. Cent. Hum. Value. Strindbert and France = A U S Rom S Strindbert and France = A. U. S. Rom. S. String Gravity and Physics At The Planck Energy Scale = Nato Adv Sci Inst Se String Gravity and Physics At The Planck Energy Scale = Nato. Adv. Sci. Inst. Se. String Processing and Information Retrieval = Lect Notes Comput Sc String Processing and Information Retrieval = Lect. Notes. Comput. Sc. String Processing and Information Retrieval, Proceedings = Lect Notes Comput Sc String Processing and Information Retrieval, Proceedings = Lect. Notes. Comput. Sc. Strings, Branes and Dualities = Nato Adv Sci I C-mat Strings, Branes and Dualities = Nato. Adv. Sci. I. C-mat. String Theory = Aip Conf Proc String Theory = Aip. Conf. Proc. String Theory and Fundamental Interactions = Lect Notes Phys String Theory and Fundamental Interactions = Lect. Notes. Phys. String Theory: From Gauge Interactions to Cosmology = Nato Sci Ser Ii-math String Theory: From Gauge Interactions to Cosmology = Nato. Sci. Ser. Ii-math. String Theory: From Gauge Interactions to Cosmology = Nato Sci Ser Ii Math String Theory: From Gauge Interactions to Cosmology = Nato. Sci. Ser. Ii. Math. Stripes and Related Phenomena = Sel Top Supercond Stripes and Related Phenomena = Sel. Top. Supercond. Striving for The Perfect Classroom: Instructional and Assessment Strategies to Meet The Needs of Today's Diverse Learners = Educ Compet Glob Wor Striving for The Perfect Classroom: Instructional and Assessment Strategies to Meet The Needs of Today's Diverse Learners = Educ. Compet. Glob. Wor. Strojarstvo = Strojarstvo Strojniski Vestnik-journal of Mechanical Engineering = Stroj Vestn-j Mech E Strojniski Vestnik-journal of Mechanical Engineering = Stroj. Vestn-j. Mech. E. Stroke; a journal of cerebral circulation = Stroke Stroke Essentials for Primary Care: A Practical Guide = Curr Clin Pract Stroke Essentials for Primary Care: A Practical Guide = Curr. Clin. Pract. Stroke Recovery With Cellular Therapies = Curr Clin Neurol Stroke Recovery With Cellular Therapies = Curr. Clin. Neurol. Stroke=Stroke;; Stroke = Stroke Stroke = Upd Int Car Stroke = Upd. Int. Car. Stromboli Volcano: An Integrated Study of The 2002-2003 Eruption = Geophys Monogr Ser Stromboli Volcano: An Integrated Study of The 2002-2003 Eruption = Geophys. Monogr. Ser. Stromlo Workshop On High-velocity Clouds = Astr Soc P Stromlo Workshop On High-velocity Clouds = Astr. Soc. P. Strom Und Warme Aus Biogenen Festbrennstoffen = Vdi Bericht Strom Und Warme Aus Biogenen Festbrennstoffen = Vdi. Bericht. Stromungsmesstechnik = Vdi-buch Stromungsmesstechnik = Vdi-buch. Strong Correlation and Superconductivity = Springer Series Soli Strong Correlation and Superconductivity = Springer. Series. Soli. Strong Evaluation Without Moral Sources: On Charles Taylor's Philosophical Anthropology and Ethics = Quellen Stud Philos Strong Evaluation Without Moral Sources: On Charles Taylor's Philosophical Anthropology and Ethics = Quellen. Stud. Philos. Strong Field Laser Physics = Springer Ser Opt Sci Strong Field Laser Physics = Springer. Ser. Opt. Sci. Strongly Correlated Electron Systems Ii = Progr High Temp Supe Strongly Correlated Electron Systems Ii = Progr. High. Temp. Supe. Strongly Correlated Fermions and Bosons in Low-dimensional Disordered Systems = Nato Sci Ser Ii-math Strongly Correlated Fermions and Bosons in Low-dimensional Disordered Systems = Nato. Sci. Ser. Ii-math. Strongly Correlated Fermions and Bosons in Low-dimensional Disordered Systems = Nato Sci Ser Ii Math Strongly Correlated Fermions and Bosons in Low-dimensional Disordered Systems = Nato. Sci. Ser. Ii. Math. Strongly Correlated Magnetic and Superconducting Systems = Lect Notes Phys Strongly Correlated Magnetic and Superconducting Systems = Lect. Notes. Phys. Strongly Coupled Plasma Physics / = N-holland D Strongly Coupled Plasma Physics / = N-holland. D. Strong States, Weak Schools = Res Sociol Educ Strong States, Weak Schools = Res. Sociol. Educ. Strong, Weak, and Electromagnetic Interactions in Nuclei, Atoms, and Astrophysics = Aip Conf Proc Strong, Weak, and Electromagnetic Interactions in Nuclei, Atoms, and Astrophysics = Aip. Conf. Proc. Struct.--Process., Meas., Phenom. Journal of Vacuum Science & Technology, B: Microelectronics and Nanometer Structures--Processing, Measurement, and Phenomena = J. Vac. Sci. Technol., B: Microelectron. Nanometer Structural Analysis 1992 = Vtt Symp Structural Analysis 1992 = Vtt. Symp. Structural Analysis and Design = Transport Res Rec Structural Analysis and Design = Transport. Res. Rec. Structural Analysis = Math Res Dev Structural Analysis = Math. Res. Dev. Structural Analysis of Advanced Materials = Key Eng Mater Structural Analysis of Advanced Materials = Key. Eng. Mater. Structural Analysis of Historical Constructions Ii = Theor Engn Applicat Structural Analysis of Historical Constructions Ii = Theor. Engn. Applicat. Structural Analysis = Solid Mech Appl Structural Analysis = Solid. Mech. Appl. Structural Analysis With The Finite Element Method, Linear Statics, Vol 1: Basis and Solids = Lect Notes Numer Met Structural Analysis With The Finite Element Method, Linear Statics, Vol 1: Basis and Solids = Lect. Notes. Numer. Met. Structural and Catalytic Roles of Metal Ions in Rna = Metal Ions Life Sci Structural and Catalytic Roles of Metal Ions in Rna = Metal Ions Life. Sci. Structural and Electronic Paradigms in Cluster Chemistry = Struct Bond Structural and Electronic Paradigms in Cluster Chemistry = Struct. Bond. Structural and Electronic Properties of Molecular Nanostructures = Aip Conf Proc Structural and Electronic Properties of Molecular Nanostructures = Aip. Conf. Proc. Structural and Failure Mechanics of Sandwich Composites = Solid Mech Appl Structural and Failure Mechanics of Sandwich Composites = Solid. Mech. Appl. Structural and Functional Abnormalities in Subclinical Diabetic Angiopathy = Pediat Ad E Structural and Functional Abnormalities in Subclinical Diabetic Angiopathy = Pediat. Ad. E. Structural and Functional Organization of The Neocortex = Exp Br Res Structural and Functional Organization of The Neocortex = Exp. Br. Res. Structural and Multidisciplinary Optimization = Struct Multidiscip O Structural and Multidisciplinary Optimization = Struct. Multidiscip. O. Structural and Organizational Aspects of Metabolic Regulation = Ucla Sym Bi Structural and Organizational Aspects of Metabolic Regulation = Ucla. Sym. Bi. Structural Aspects in The Theory of Probability, Second Edition = Ser Multivar Anal Structural Aspects in The Theory of Probability, Second Edition = Ser. Multivar. Anal. Structural Aspects of The East Asian Crisis = Oecd Proc Structural Aspects of The East Asian Crisis = Oecd. Proc. Structural Change and Cooperation in The Global Economy = New Horiz Int Bus Structural Change and Cooperation in The Global Economy = New. Horiz. Int. Bus. Structural Change and Economic Dynamics=Struct. Change Econ. Dynam. Structural Change in The Farming Sectors in Central and Eastern Europe = World Ban T Structural Change in The Farming Sectors in Central and Eastern Europe = World. Ban. T. Structural Chemistry = Struct Chem Structural Chemistry = Struct. Chem. Structural Concrete = Struct Concrete Structural Concrete = Struct. Concrete Structural Control & Health Monitoring = Struct Control Hlth Structural Control & Health Monitoring = Struct. Control Hlth. Structural Design, Codes, and Special Building Projects = Ctbuh Counc Rep Structural Design, Codes, and Special Building Projects = Ctbuh. Counc. Rep. Structural Design Issues = Transport Res Rec Structural Design Issues = Transport. Res. Rec. Structural Design of Tall and Special Buildings = Struct Des Tall Spec Structural Design of Tall and Special Buildings = Struct. Des. Tall Spec. Structural Design of Tall and Special Buildings = Struct. Des. Tall Special Build. Structural Design of Tall Buildings = Struct Des Tall Buil Structural Design of Tall Buildings = Struct. Des. Tall Buil. Structural Dynamics of Earthquake Engineering = Woodhead Publ Mater Structural Dynamics of Earthquake Engineering = Woodhead. Publ. Mater. Structural Engineering and Mechanics = Struct Eng Mech Structural Engineering and Mechanics = Struct. Eng. Mech. Structural Engineering Practice = Struct Eng Pract Structural Engineering Practice = Struct. Eng. Pract. Structural Engineering Review = Struct Eng Rev Structural Engineering Review = Struct. Eng. Rev. Structural Engineer-part A = Struct Eng-a Structural Engineer-part A = Struct. Eng-a. Structural Engineer-part B = Struct Eng-b Structural Engineer-part B = Struct. Eng-b. Structural Engineer = Struct Eng Structural Engineer = Struct. Eng. Structural Equation Modeling-a Multidisciplinary Journal = Struct Equ Modeling Structural Equation Modeling-a Multidisciplinary Journal = Struct. Equ. Modeling. Structural Equation Modeling: A Second Course = Quant Meth Educ Beha Structural Equation Modeling: A Second Course = Quant. Meth. Educ. Beha. Structural Equation Modeling = Struct Equ Modeling Structural Equation Modeling = Struct. Equ. Modeling Structural Foundations of International Finance: Problems of Growth and Stability = New Horiz Int Bus Structural Foundations of International Finance: Problems of Growth and Stability = New. Horiz. Int. Bus. Structural Framework for The Pricing of Corporate Securities: Economic and Empirical Issues = Lect Notes Econ Math Structural Framework for The Pricing of Corporate Securities: Economic and Empirical Issues = Lect. Notes. Econ. Math. Structural Genomics, Part B = Adv Protein Chem Str Structural Genomics, Part B = Adv. Protein. Chem. Str. Structural Genomics, Part C = Adv Protein Chem Str Structural Genomics, Part C = Adv. Protein. Chem. Str. Structural Genomics, Pt A = Adv Protein Chem Structural Genomics, Pt A = Adv. Protein. Chem. Structural Health Monitoring and Intelligent Infrastructure, Vols 1 and 2 = Proc Monogr Eng Wate Structural Health Monitoring and Intelligent Infrastructure, Vols 1 and 2 = Proc. Monogr. Eng. Wate. Structural Health Monitoring-an International Journal = Struct Health Monit Structural Health Monitoring-an International Journal = Struct. Health Monit. Structural Health Monitoring = Struct Health Monit Structural Health Monitoring = Struct. Health Monit. Structural, Historical, and Comparative Perspectives = Sociol Stud Child Yo Structural, Historical, and Comparative Perspectives = Sociol. Stud. Child. Yo. Structural Information and Communication Complexity = Lect Notes Comput Sc Structural Information and Communication Complexity = Lect. Notes. Comput. Sc. Structural Information and Communication Complexity, Proceeding = Lect Notes Comput Sc Structural Information and Communication Complexity, Proceeding = Lect. Notes. Comput. Sc. Structural Information and Communication Complexity, Proceedings = Lect Notes Comput Sc Structural Information and Communication Complexity, Proceedings = Lect. Notes. Comput. Sc. Structural Integrity and Failure = Adv Mater Res-switz Structural Integrity and Failure = Adv. Mater. Res-switz. Structural Integrity and Failure = Adv Mat Res Structural Integrity and Failure = Adv. Mat. Res. Structural Integrity and Materials Aging = Fracture Mech Symp Structural Integrity and Materials Aging = Fracture. Mech. Symp. Structural Integrity of Fasteners = Am Soc Test Mater Structural Integrity of Fasteners = Am. Soc. Test. Mater. Structural Integrity of Fasteners: Including The Effects of Environment and Stress Corrosion Cracking: 3rd Volume = Am Soc Test Mater Structural Integrity of Fasteners: Including The Effects of Environment and Stress Corrosion Cracking: 3rd Volume = Am. Soc. Test. Mater. Structural Integrity of Fasteners, Vol 2 = Am Soc Test Mater Structural Integrity of Fasteners, Vol 2 = Am. Soc. Test. Mater. Structuralist Review-a Journal of Theory Criticism and Pedagogy = Structuralist Rev Structuralist Review-a Journal of Theory Criticism and Pedagogy = Structuralist Rev. Structurally Complex Reservoirs = Geol Soc Spec Publ Structurally Complex Reservoirs = Geol. Soc. Spec. Publ. Structural Materials Technology Iii = Spie Proc Ser Structural Materials Technology Iii = Spie. Proc. Ser. Structural Optimization = Struct Optimization Structural Optimization = Struct. Optimization Structural Optimization With Uncertainties = Solid Mech Appl Structural Optimization With Uncertainties = Solid. Mech. Appl. Structural Plasticity: Limit, Shakedown and Dynamic Plastic Analyses of Structures = Adv Top Sci Tech Chi Structural Plasticity: Limit, Shakedown and Dynamic Plastic Analyses of Structures = Adv. Top. Sci. Tech. Chi. Structural Safety = Struct Saf Structural Safety = Struct. Saf. Structural Steel and Castings: Shapes and Standards, Properties and Applications = Eng Tools Tech Table Structural Steel and Castings: Shapes and Standards, Properties and Applications = Eng. Tools. Tech. Table. Structural Studies, Repairs, and Maintenance of Heritage Architecture Ix = Wit Trans Built Env Structural Studies, Repairs, and Maintenance of Heritage Architecture Ix = Wit. Trans. Built. Env. Structural Studies, Repairs and Maintenance of Heritage Architecture Viii = Adv Arc Ser Structural Studies, Repairs and Maintenance of Heritage Architecture Viii = Adv. Arc. Ser. Structural Studies, Repairs and Maintenance of Heritage Architecture Xi = Wit Trans Built Env Structural Studies, Repairs and Maintenance of Heritage Architecture Xi = Wit. Trans. Built. Env. Structural Studies, Repairs and Maintenance of Heritage Architecture X = Wit Trans Built Env Structural Studies, Repairs and Maintenance of Heritage Architecture X = Wit. Trans. Built. Env. Structural Studies, Repairs and Maintenance of Historical Buildings = Adv Arc Ser Structural Studies, Repairs and Maintenance of Historical Buildings = Adv. Arc. Ser. Structural Studies, Repairs and Maintenance of Historical Buildings Vi = Adv Arc Ser Structural Studies, Repairs and Maintenance of Historical Buildings Vi = Adv. Arc. Ser. Structural Studies, Repairs, and Maintenance of Historical Buildings Vii = Adv Arc Ser Structural Studies, Repairs, and Maintenance of Historical Buildings Vii = Adv. Arc. Ser. Structural, Syntactic, and Statistical Pattern Recognition = Lect Notes Comput Sc Structural, Syntactic, and Statistical Pattern Recognition = Lect. Notes. Comput. Sc. Structural, Syntactic, and Statistical Pattern Recognition, Proceedings = Lect Notes Comput Sc Structural, Syntactic, and Statistical Pattern Recognition, Proceedings = Lect. Notes. Comput. Sc. Structural Synthesis of Parallel Robots, Pt 1: Methodology = Solid Mech Appl Structural Synthesis of Parallel Robots, Pt 1: Methodology = Solid. Mech. Appl. Structural Synthesis of Parallel Robots, Pt 2: Translational Topologies With Two and Three Degrees of Freedom = Solid Mech Appl Structural Synthesis of Parallel Robots, Pt 2: Translational Topologies With Two and Three Degrees of Freedom = Solid. Mech. Appl. Structural Synthesis of Parallel Robots, Pt 3 = Solid Mech Appl Structural Synthesis of Parallel Robots, Pt 3 = Solid. Mech. Appl. Structural Theory of Automata, Semigroups, and Universal Algebra = Nato Sci Ser Ii-math Structural Theory of Automata, Semigroups, and Universal Algebra = Nato. Sci. Ser. Ii-math. Structural Theory of Automata, Semigroups, and Universal Algebra = Nato Sci Ser Ii Math Structural Theory of Automata, Semigroups, and Universal Algebra = Nato. Sci. Ser. Ii. Math. Structural Topology = Structural Topology Structural Virology = Rsc Biomol Sci Structural Virology = Rsc. Biomol. Sci. Structure-activity and Selectivity Relationships in Heterogeneous Catalysis = Stud Surf Sci Catal Structure-activity and Selectivity Relationships in Heterogeneous Catalysis = Stud. Surf. Sci. Catal. Structure and Agency in The Neoliberal University = Routl Res Educ Structure and Agency in The Neoliberal University = Routl. Res. Educ. Structure and Biophysics - New Technologies for Current Challenges in Biology Beyond = Nato Sci Ser Ii-math Structure and Biophysics - New Technologies for Current Challenges in Biology Beyond = Nato. Sci. Ser. Ii-math. Structure and Biophysics - New Technologies for Current Challenges in Biology Beyond = Nato Sci Ser Ii Math Structure and Biophysics - New Technologies for Current Challenges in Biology Beyond = Nato. Sci. Ser. Ii. Math. Structure and Bonding = Struct Bond Structure and Bonding = Struct. Bond. Structure and Development of Self-consciousness: Interdisciplinary Perspectives = Adv Consc Res Structure and Development of Self-consciousness: Interdisciplinary Perspectives = Adv. Consc. Res. Structure and Dynamics of Confined Polymers = Nato Sci S Prt 3 Hi Structure and Dynamics of Confined Polymers = Nato. Sci. S. Prt. 3. Hi. Structure and Dynamics of Elementary Matter = Nato Sci Ser Ii-math Structure and Dynamics of Elementary Matter = Nato. Sci. Ser. Ii-math. Structure and Dynamics of Elementary Matter = Nato Sci Ser Ii Math Structure and Dynamics of Elementary Matter = Nato. Sci. Ser. Ii. Math. Structure and Dynamics of Glasses and Glass Formers = Mat Res S C Structure and Dynamics of Glasses and Glass Formers = Mat. Res. S. C. Structure and Dynamics of Globular Clusters = Astr Soc P Structure and Dynamics of Globular Clusters = Astr. Soc. P. Structure and Dynamics of Strongly Interacting Colloids and Supramolecular Aggregates in Solution = Nato Adv Sci I C-mat Structure and Dynamics of Strongly Interacting Colloids and Supramolecular Aggregates in Solution = Nato. Adv. Sci. I. C-mat. Structure and Dynamics of The Interstellar Medium = Lect Notes Phys Structure and Dynamics of The Interstellar Medium = Lect. Notes. Phys. Structure and Electronic Properties of Ultrathin Dielectric Films On Silicon and Related Structures = Mater Res Soc Symp P Structure and Electronic Properties of Ultrathin Dielectric Films On Silicon and Related Structures = Mater. Res. Soc. Symp. P. Structure and Emplacement of High-level Magmatic Systems = Geol Soc Spec Publ Structure and Emplacement of High-level Magmatic Systems = Geol. Soc. Spec. Publ. Structure and Flow in Surfactant Solutions = Acs Sym Ser Structure and Flow in Surfactant Solutions = Acs. Sym. Ser. Structure and Function of 7tm Receptors = Alfred Benzon Symp S Structure and Function of 7tm Receptors = Alfred. Benzon. Symp. S. Structure and Function of Biofilms = Life Sci R Structure and Function of Biofilms = Life. Sci. R. Structure and Function of Calcium Release Channels = Curr Top Membr Structure and Function of Calcium Release Channels = Curr. Top. Membr. Structure and Function of The Arabic Verb = Routl Arab Lingu Ser Structure and Function of The Arabic Verb = Routl. Arab. Lingu. Ser. Structure and Function of The Aspartic Proteinases = Adv Exp Med Biol Structure and Function of The Aspartic Proteinases = Adv. Exp. Med. Biol. Structure and Function of The Bladder Neck = Adv Anat Embryol Cel Structure and Function of The Bladder Neck = Adv. Anat. Embryol. Cel. Structure and Function of The Neural Cell Adhesion Molecule Ncam = Adv Exp Med Biol Structure and Function of The Neural Cell Adhesion Molecule Ncam = Adv. Exp. Med. Biol. Structure and Functions of The Human Prefrontal Cortex = Ann Ny Acad Sci Structure and Functions of The Human Prefrontal Cortex = Ann. Ny. Acad. Sci. Structure and Infrastructure Engineering = Struct Infrastruct E Structure and Infrastructure Engineering = Struct. Infrastruct. E. Structure and Infrastructure Engineering = Struct. Infrastruct. Eng. Structure and Kinematics of Quasar Broad Line Regions = Astr Soc P Structure and Kinematics of Quasar Broad Line Regions = Astr. Soc. P. Structure and Mechanical Behavior of Biological Materials = Mater Res Soc Symp P Structure and Mechanical Behavior of Biological Materials = Mater. Res. Soc. Symp. P. Structure and Mechanics of Textile Fibre Assemblies = Woodhead Publ Text Structure and Mechanics of Textile Fibre Assemblies = Woodhead. Publ. Text. Structure and Perception of Electroacoustic Sound and Music = Int Congr Ser Structure and Perception of Electroacoustic Sound and Music = Int. Congr. Ser. Structure and Properties of Dislocations in Semiconductors 1989 = Inst Phys Conf Ser Structure and Properties of Dislocations in Semiconductors 1989 = Inst. Phys. Conf. Ser. Structure and Properties of Energetic Materials = Mater Res Soc Symp P Structure and Properties of Energetic Materials = Mater. Res. Soc. Symp. P. Structure and Properties of Interfaces in Ceramics = Mater Res Soc Symp P Structure and Properties of Interfaces in Ceramics = Mater. Res. Soc. Symp. P. Structure and Properties of Interfaces in Materials = Mater Res Soc Symp P Structure and Properties of Interfaces in Materials = Mater. Res. Soc. Symp. P. Structure and Properties of Modified Polyurethanes = Chem Res Appl-nova Structure and Properties of Modified Polyurethanes = Chem. Res. Appl-nova. Structure and Properties of Multilayered Thin Films = Mater Res Soc Symp P Structure and Properties of Multilayered Thin Films = Mater. Res. Soc. Symp. P. Structure and Reactivity in Aqueous Solution = Acs Sym Ser Structure and Reactivity in Aqueous Solution = Acs. Sym. Ser. Structure and Ultrastructure of Soils and Living Organisms = Colloq Inra Structure and Ultrastructure of Soils and Living Organisms = Colloq. Inra. Structure-based Drug Design = Nato Adv Sci I E-app Structure-based Drug Design = Nato. Adv. Sci. I. E-app. Structure (Cambridge, MA, United States) = Structure (Cambridge, MA, U. S.) Structured Analog Cmos Design = Analog Circ Sig Proc Structured Analog Cmos Design = Analog Circ. Sig. Proc. Structured Credit Portfolio Analysis, Baskets & Cdos = Ch Crc Financ Math Structured Credit Portfolio Analysis, Baskets & Cdos = Ch. Crc. Financ. Math. Structure Development During Polymer Processing = Nato Adv Sci I E-app Structure Development During Polymer Processing = Nato. Adv. Sci. I. E-app. Structured Population Models in Biology and Epidemiology = Lect Notes Math Structured Population Models in Biology and Epidemiology = Lect. Notes. Math. Structured Programming = Struct Program Structured Programming = Struct. Program. Structure, Dynamics and Properties of Disperse Colloidal Systems = Prog Coll Pol Sci S Structure, Dynamics and Properties of Disperse Colloidal Systems = Prog. Coll. Pol. Sci. S. Structure, Dynamics and Properties of Silicate Melts = Rev Mineral Structure, Dynamics and Properties of Silicate Melts = Rev. Mineral. Structure, Energetics and Dynamics of The Corona and The Heliosphere During The Rising Phase of The 23rd Solar Cycle = Adv Space Res Structure, Energetics and Dynamics of The Corona and The Heliosphere During The Rising Phase of The 23rd Solar Cycle = Adv. Space. Res. Structure, Energetics and Dynamics of The Corona and The Heliosphere During The Rising Phase of The 23rd Solar Cycle = Adv Space Res-series Structure, Energetics and Dynamics of The Corona and The Heliosphere During The Rising Phase of The 23rd Solar Cycle = Adv. Space. Res-series. Structure, Function and Management Implications of Fluvial Sedimentary Systems = Iahs-aish P Structure, Function and Management Implications of Fluvial Sedimentary Systems = Iahs-aish. P. Structure-function Relationship of Gonadotropins = Serono Sym Structure-function Relationship of Gonadotropins = Serono. Sym. Structure in Complexity Theory Conference - Proceedings = Struct Compl Th Conf Structure in Complexity Theory Conference - Proceedings = Struct. Compl. Th. Conf. Structure (London, England : 1993) = Structure Structure, Molecular Biology, and Pathology of Collagen = Ann Ny Acad Sci Structure, Molecular Biology, and Pathology of Collagen = Ann. Ny. Acad. Sci. Structure of Affine Buildings = Ann Math Stud Structure of Affine Buildings = Ann. Math. Stud. Structure of Compact Groups, Second Edition = Degruyter Stud Math Structure of Compact Groups, Second Edition = Degruyter. Stud. Math. Structure of Enteric Neurons = Adv Anat Embryol Cel Structure of Enteric Neurons = Adv. Anat. Embryol. Cel. Structure of The Nucleon At Large Bjorken X = Aip Conf Proc Structure of The Nucleon At Large Bjorken X = Aip. Conf. Proc. Structure of The Real Line = Monogr Mat Structure of The Real Line = Monogr. Mat. Structure-property Relationships and Correlations With The Environmental Degradation of Engineering Materials = Microstr Sc Structure-property Relationships and Correlations With The Environmental Degradation of Engineering Materials = Microstr. Sc. Structure/property Relationships for Metal/metal Interfaces = Mater Res Soc Symp P Structure/property Relationships for Metal/metal Interfaces = Mater. Res. Soc. Symp. P. Structure-property Relationships in Biomineralized and Biomimetic Composites = Mater Res Soc Symp P Structure-property Relationships in Biomineralized and Biomimetic Composites = Mater. Res. Soc. Symp. P. Structure-property Relationships of Oxide Surfaces and Interfaces Ii = Mater Res Soc Symp P Structure-property Relationships of Oxide Surfaces and Interfaces Ii = Mater. Res. Soc. Symp. P. Structure-property Relations in Polymers = Adv Chem Ser Structure-property Relations in Polymers = Adv. Chem. Ser. Structure, Relaxation, and Physical Aging of Glassy Polymers = Mater Res Soc Symp P Structure, Relaxation, and Physical Aging of Glassy Polymers = Mater. Res. Soc. Symp. P. Structures and Conformations of Non-rigid Molecules = Nato Adv Sci Inst Se Structures and Conformations of Non-rigid Molecules = Nato. Adv. Sci. Inst. Se. Structures and Functions of Retinal Proteins = Colloq Inse Structures and Functions of Retinal Proteins = Colloq. Inse. Structures and Infrastructures Series = Strtr Infra Sers Structures and Infrastructures Series = Strtr. Infra. Sers. Structures and Materials = Struct Mat Structures and Materials = Struct. Mat. Structures and Mechanisms: From Ashes to Enzymes = Acs Sym Ser Structures and Mechanisms: From Ashes to Enzymes = Acs. Sym. Ser. Structures and Norms in Science = Synth Libr Structures and Norms in Science = Synth. Libr. Structures and Organelles in Pathogenic Protists = Microbiol Monogr Structures and Organelles in Pathogenic Protists = Microbiol. Monogr. Structures and Strategies = Routl Lead Linguists Structures and Strategies = Routl. Lead. Linguists. Structures in Concurrency Theory = Work Comp Structures in Concurrency Theory = Work. Comp. Structures in Logic and Computer Science = Lect Notes Comput Sc Structures in Logic and Computer Science = Lect. Notes. Comput. Sc. Structures Sensing and Control = P Soc Photo-opt Ins Structures Sensing and Control = P. Soc. Photo-opt. Ins. Structure=Structure;; Structure = Structure Structures Under Shock and Impact Ix = Wit Trans Built Env Structures Under Shock and Impact Ix = Wit. Trans. Built. Env. Structures Under Shock and Impact Viii = Struct Mat Structures Under Shock and Impact Viii = Struct. Mat. Structures Under Shock and Impact Vii = Struct Mat Structures Under Shock and Impact Vii = Struct. Mat. Structures Under Shock and Impact Vi = Struct Mat Structures Under Shock and Impact Vi = Struct. Mat. Structures Under Shock and Impact V = Struct Mat Structures Under Shock and Impact V = Struct. Mat. Structures Under Shock and Impact Xi = Wit Trans Built Env Structures Under Shock and Impact Xi = Wit. Trans. Built. Env. Structures Under Shock and Impact X = Wit Trans Built Env Structures Under Shock and Impact X = Wit. Trans. Built. Env. Structure with Folding and Design = Structure Fold. Des. Structure With Folding & Design = Struct Fold Des Structure With Folding & Design = Struct. Fold. Des. Structuring Role of Subbmerged Macrophytes in Lakes = Ecol Stu An Structuring Role of Subbmerged Macrophytes in Lakes = Ecol. Stu. An. Struggle for Democracy in Chile, 1982-1990 = Lat Amer S Struggle for Democracy in Chile, 1982-1990 = Lat. Amer. S. Struggle for Free Speech in The United States 1872-1915 = Stud Am Popul Hist C Struggle for Free Speech in The United States 1872-1915 = Stud. Am. Popul. Hist. C. Struggle Over Democracy in The Middle East = Ucla Cent Mid E Dev Struggle Over Democracy in The Middle East = Ucla. Cent. Mid. E. Dev. Strukturelle Zwange: Personliche Freiheiten = Stud Gesch Kult Isla Strukturelle Zwange: Personliche Freiheiten = Stud. Gesch. Kult. Isla. Struktur Und Dynamik in Kants Kritiken = Kantstudien Struktur Und Dynamik in Kants Kritiken = Kantstudien. Strumenti Critici = Strumenti Crit Strumenti Critici = Strumenti Crit. St = St. Petersburg Math. J. St. Thomas law review = St Thomas Law Rev Stuart Dynastic Policy and Religious Politics 1621-1625 = Camden Fifth Ser Stuart Dynastic Policy and Religious Politics 1621-1625 = Camden. Fifth. Ser. Student Governance and Institutional Policy: Formation and Implementation = Educ Policy 21st Cen Student Governance and Institutional Policy: Formation and Implementation = Educ. Policy. 21st. Cen. Student lawyer (Chicago, Ill. : 1972) = Stud Lawyer Student medicine = Stud Med Student Perspectives On Assessment: What Students Can Tell Us About Assessment for Learning = Res Sociocult Influ Student Perspectives On Assessment: What Students Can Tell Us About Assessment for Learning = Res. Sociocult. Influ. Students and Science Learning = Th Yr Sch S Students and Science Learning = Th. Yr. Sch. S. Students Experiences of E-learning in Higher Education = Open Flex Learn Ser Students Experiences of E-learning in Higher Education = Open. Flex. Learn. Ser. Student Social Work = Stud Soc Work Student Social Work = Stud. Soc. Work Student und Praktikant = Stud. Prakt. Studia Aegyptiaca. Budapest = StAeg Studia Albanica = StAlb Studia archaeologica = StA Studia archeologiczne. Uniwersytet Warszawski, Instytut archeologii = StAWarsz Studia Augustana = Stud August Studia Augustana = Stud. August. Studia Biophysica = Stud Biophys Studia Biophysica = Stud. Biophys. Studia Canonica = Stud Canonica Studia Canonica = Stud. Canonica Studia Cartesiana = Stud Cartesiana Studia Comeniana et historica = Stud Comeniana Hist Studia demograficzne = Studia Demogr Studia et Documenta Historiae et Iuris = SDHI Studia et documenta historiae et iuris = StDocHistIur Studia filozoficzne = Stud Filoz Studia forestalia suecica = Stud. for. suec. Studia Formosiana = Stud Formos Studia Formosiana = Stud. Formos. Studia geographica = Stud Geogr Studia Geologica Polonica - Series = Stud Geol Polon Studia Geologica Polonica - Series = Stud. Geol. Polon. Studia Geophysica et Geodaetica = Stud. Geophys. Geod. Studia Geophysica Et Geodaetica = Stud Geophys Geod Studia Geophysica Et Geodaetica = Stud. Geophys. Geod. Studia Hellenistica = Stud Hellenist Studia Hellenistica = Stud. Hellenist. Studia historica Gandensia = Stud Hist Gandensia Studia historica historia antigua = SHHA Studia historica. Historia antigua = StHist Studia Historica = Studia Historica Studia i materialy z dziejow nauki polskiej. Seria B: Historia nauk biologicznych i medycznych = Stud Mater Dziej Nauk Pol Ser B Studia i materialy z dziejow nauki polskiej = Stud Mater Dziejow Nauk Pol Studia islamica = Stud Islam Studia Judaica = Stud Juda Studia Judaica = Stud. Juda. Studia Judaica = Stud Judaica Studia Judaica = Stud. Judaica Studia Leibnitiana = Studia Leibnitiana Studia Leibnitiana = Stud Leibnitiana Studia Leibnitiana = Stud. Leibnitiana Studia Linguistica Germanica = Stud Linguist Ger Studia Linguistica Germanica = Stud. Linguist. Ger. Studia linguistica: revue de linguistique générale et comparée = SL Studia Linguistica = Stud Linguistica Studia Linguistica = Stud. Linguistica Studia (Lisbon, Portugal) = Studia Studia Logica = Studia Logica Studia Mathematica = Studia Math. Studia Mathematica = Stud Math Studia Mathematica = Stud. Math. Studia monastica = StudMon Studia Monastica = Stud Monastica Studia Monastica = Stud. Monastica Studia Musicologica = Stud Musicol Studia Musicologica = Stud. Musicol. Studia Mystica = Stud Myst Studia Mystica = Stud. Myst. Studia neophilologica = Stud Neophilol Studia Neophilologica = Stud Neophilol Studia Neophilologica = Stud. Neophilol. Studia Oliveriana = SOliv Studia Oliveriana = StOliv Studia orientalia, Helsinki = StOr Studia papyrologica = StP Studia papyrologica = Stud Papyrol Studia Patavina: rivista di scienze religiose = StudPat Studia Patristica = Stud Patris Studia Patristica = Stud. Patris. Studia Patristica, Vol Xliii = Stud Patris Studia Patristica, Vol Xliii = Stud. Patris. Studia Patristica, Vol Xlii = Stud Patris Studia Patristica, Vol Xlii = Stud. Patris. Studia Patristica, Vol Xli = Stud Patris Studia Patristica, Vol Xli = Stud. Patris. Studia Patristica, Vol Xl = Stud Patris Studia Patristica, Vol Xl = Stud. Patris. Studia Patristica, Vol Xxxix = Stud Patris Studia Patristica, Vol Xxxix = Stud. Patris. Studia Phaenomenologica = Stud Phaenomenol Studia Phaenomenologica = Stud. Phaenomenol. Studia philologica Salmanticensia. Univ. de Salamanca, Acta Salm. Filos. y Letras = SPhS Studia philosophica: annuaire de la Société suisse de philosophie = StudPhil Studia Philosophica et Historica = Stud. Philos. Hist. Studia Picena = StudPic Studia Post-biblica = Stud Post Bibl Studia Post-biblica = Stud. Post. Bibl. Studia Psychologica = Stud Psychol Studia Psychologica = Stud. Psychol. Studia psychologica = Stud Psychol (Bratisl) Studia Rosenthaliana = Stud Rosenthaliana Studia Rosenthaliana = Stud. Rosenthaliana Studia Scientiarum Mathematicarum Hungarica = Studia Sci. Math. Hungar. Studia Scientiarum Mathematicarum Hungarica = Stud Sci Math Hung Studia Scientiarum Mathematicarum Hungarica = Stud. Sci. Math. Hung. Studia Socjologiczne = Stud Socjol Studia Socjologiczne = Stud. Socjol. Studia Socjologiczne = Stud Socjologiczne Studia Socjologiczne = Stud. Socjologiczne Studia = Stud. Univ. Babeș-Bolyai Inform. Studia Theologica-czech Republic = Studia Theol-czech R Studia Theologica-czech Republic = Studia Theol-czech. R. Studia Theologica = Stud Theol Studia Theologica = Stud. Theol. Studia Troica = StTroica Studia Universitatis Babes-bolyai Chemia = Stud U Babes-bol Che Studia Universitatis Babes-bolyai Chemia = Stud. U. Babes-bol. Che. Studia Universitatis Babes-bolyai Chemia = Stud Univ Babes-bol Studia Universitatis Babes-bolyai Chemia = Stud. Univ. Babes-bol. Studia Universitatis Babes-Bolyai, Chemia = Stud. Univ. Babes-Bolyai, Chem. Studia Zamorensia = SZ Studi bitontini = StBitont Studi classici e orientali = SCO Studi classici e orientali = StClOr Studi classici e orientali = Stud Cl Orient Studi Danteschi = Stud Danteschi Studi Danteschi = Stud. Danteschi Studi dell'Istituto Gramsci Siciliano = Studi Ist. Gramsci Sicil. Studi di antichità. Università di Lecce = StAnt Studi di demografia = Stud Demogr Studi di egittologia e di antichità puniche = StEgAntPun Studi di filologia italiana : bulletino dell' Accademia della Crusca = Studi Filol Ital Studi Di Musica Veneta = Stud Mus V Studi Di Musica Veneta = Stud. Mus. V. Studi di sociologia = Studi Sociol Studi eblaiti = StEbla Studi Economici=Stud. Econ. Studi e documenti di archeologia = StDocA Studi e materiali di storia delle religioni = SMSR Studi e materiali di storia delle religioni = StMatStorRel Studi e materiali. Soprintendenza ai beni archeologici per la Toscana = SteMat Studi emigrazione. Etudes migrations = Studi Emigr Studi emigrazione = Stud Emigrazione Studien Des Prinzen Albert An Der Universitat Bonn (1837-1838) = Prinz-albert-forsch Studien Des Prinzen Albert An Der Universitat Bonn (1837-1838) = Prinz-albert-forsch. Studien Interdisziplinare Geschlechterforschung = Stud Interdisz Gesch Studien Interdisziplinare Geschlechterforschung = Stud. Interdisz. Gesch. Studien Und Dokumente Zur Geschichte Der Romanischen Literaturen = Stud Dokumente Gesch Studien Und Dokumente Zur Geschichte Der Romanischen Literaturen = Stud. Dokumente Gesch. Studien und Mitteilungen zur Geschichte des Benediktiner-Ordens und seiner Zweige = Stud Mitt Gesch Benediktinerorden Studien Und Texte Zur Geistesgeschichte Des Mittelalters = St Text Gei Studien Und Texte Zur Geistesgeschichte Des Mittelalters = St. Text. Gei. Studien Und Texte Zur Sozialgeschichte Der Literatur = Stud Texte Sozialges Studien Und Texte Zur Sozialgeschichte Der Literatur = Stud. Texte Sozialges. Studien zu den Bogazköy-Texten = StBoT Studien Zum 9. Buch Von Lucans Bellum Civile = Gott Forum Altertums Studien Zum 9. Buch Von Lucans Bellum Civile = Gott. Forum. Altertums. Studien zum Buch- und Bibliothekswesen = SBB Studien zur altägyptischen Kultur = SAK Studien zur Archäologie und Geschichte Altägyptens = SAGA Studien Zur Deutschen Literatur = Stud Deut Lit Studien Zur Deutschen Literatur = Stud. Deut. Lit. Studien zur Geschichte des Krankenhauswesens = Stud Gesch Krankenhauswesens Studien Zur Geschichte Und Kultur Des Islamischen Orients = Stud Gesch Kult Isla Studien Zur Geschichte Und Kultur Des Islamischen Orients = Stud. Gesch. Kult. Isla. Studien Zur Lebenswelt Der Eisenzeit = Reallexikon Ger Alte Studien Zur Lebenswelt Der Eisenzeit = Reallexikon. Ger. Alte. Studien Zur Literatur Der Moderne = St Lit Mod Studien Zur Literatur Der Moderne = St. Lit. Mod. Studien Zur Mittelhochdeutschen Grammatik = Stud Mittelhochdeut Studien Zur Mittelhochdeutschen Grammatik = Stud. Mittelhochdeut. Studien zur Österreichischen Philosophie = Stud. Österr. Philos. Studien Zur Philologie Und Zur Musikwissenschaft = Abh Akad Wiss Got Ph Studien Zur Philologie Und Zur Musikwissenschaft = Abh. Akad. Wiss. Got. Ph. Studien zur Wissenschafts-, Sozial- und Bildungsgeschichte der Mathematik = Stud. Wiss. Soz. Bildungsgesch. Math. Studien Zu Sextus Empiricus, Diogenes Laertius Und Zur Pyrrhonischen Skepsis = Beitr Altertumskunde Studien Zu Sextus Empiricus, Diogenes Laertius Und Zur Pyrrhonischen Skepsis = Beitr. Altertumskunde. Studien Zu Wissenschaft Und Ethik = Stud Wiss Ethik Studien Zu Wissenschaft Und Ethik = Stud. Wiss. Ethik Studi epigrafici e linguistici sul Vicino Oriente antico = StEpigrLing Studi E Problemi Di Critica Testuale = Stud Probl Crit Test Studi E Problemi Di Critica Testuale = Stud. Probl. Crit. Test. Studi e ricerche dell'Ist. di Civilità classica, cristiana, medievale = SRIC Studi e saggi linguistici = SSL Studies and Reports in Hydrology = Stud Hydrol Studies and Reports in Hydrology = Stud. Hydrol. Studies and Research : The International Social Security Association = Stud Res Ss Studies and Research : The International Social Security Association = Stud. Res. Ss. Studies and Texts in Jewish History and Culture = Stud Text Jew Hist Studies and Texts in Jewish History and Culture = Stud. Text. Jew. Hist. Studies From The International Institute for Asian Studies = Stud Int Inst Asian Studies From The International Institute for Asian Studies = Stud. Int. Inst. Asian Studies from the Tokugawa Institute. Tokugawa Seibutsugaku Kenkyusho, Tokyo = Stud Tokugawa Inst Studies - Hastings Center = Stud Hastings Cent Studies in 20th Century Literature = St 20 C Lit Studies in 20th Century Literature = St. 20. C. Lit. Studies in Accounting History = Contrib Econ Econ Hi Studies in Accounting History = Contrib. Econ. Econ. Hi. Studies in Advanced Mathematics = St Adv Math Studies in Advanced Mathematics = St. Adv. Math. Studies in Advanced Mathematics = Stud. Adv. Math. Studies in African American History and Culture = Stud Afr Am Hist Cul Studies in African American History and Culture = Stud. Afr. Am. Hist. Cul. Studies in American Fiction = Stud Am Fiction Studies in American Fiction = Stud. Am. Fiction Studies in American History = Stud Amer H Studies in American History = Stud. Amer. H. Studies in American Indian Literatures = Stud Am Indian Lit Studies in American Indian Literatures = Stud. Am. Indian Lit. Studies in American Political Development = Stud Am Polit Dev Studies in American Political Development = Stud. Am. Polit. Dev. Studies in American Popular History and Culture = Stud Am Popul Hist C Studies in American Popular History and Culture = Stud. Am. Popul. Hist. C. Studies in ancient medicine = Stud Anc Med Studies in Ancient Medicine = Stud Anc Med Studies in Ancient Medicine = Stud. Anc. Med. Studies in Antiquity and Christianity = St Ant Chr Studies in Antiquity and Christianity = St. Ant. Chr. Studies in Applied Electromagnetics and Mechanics = Stud Appl Electromag Studies in Applied Electromagnetics and Mechanics = Stud. Appl. Electromag. Studies in Applied Mathematics = Stud. Appl. Math. Studies in Applied Mathematics = Stud Appl Math Studies in Applied Mathematics = Stud. Appl. Math. Studies in Applied Mechanics = Stud. Appl. Mech. Studies in Applied Mechanics = Stud Appl Mech Studies in Applied Mechanics = Stud. Appl. Mech. Studies in Arthurian and Courtly Cultures = Stud Arthur Court Cu Studies in Arthurian and Courtly Cultures = Stud. Arthur. Court. Cu. Studies in Asian Americans = Stud Asian Am Studies in Asian Americans = Stud. Asian Am. Studies in Austrian Literature, Culture and Thought = St Aust Lit Studies in Austrian Literature, Culture and Thought = St. Aust. Lit. Studies in Avian Biology-series = Stud Avian Biol-ser Studies in Avian Biology-series = Stud. Avian Biol-ser. Studies in bibliography = Stud Bibliogr Studies in Bibliography = Stud Bibliogr Studies in Bibliography = Stud. Bibliogr. Studies in Bilingualism = Stud Bilingual Studies in Bilingualism = Stud. Bilingual. Studies in Biology, Economy and Society = St Biol Ec Studies in Biology, Economy and Society = St. Biol. Ec. Studies in Black Literature = Stud Black Lit Studies in Black Literature = Stud. Black Lit. Studies in Brain and Mind = Stud Brain Mind Studies in Brain and Mind = Stud. Brain Mind Studies in British Literature = Stud Brit Lit Studies in British Literature = Stud. Brit. Lit. Studies in Browning and His Circle = Stud Browning Circle Studies in Browning and His Circle = Stud. Browning Circle Studies in Burke and his time = Stud Burke Time Studies in Burke and His Time = Stud Burke Time Studies in Burke and His Time = Stud. Burke Time Studies in Business Cycles = Stud Bus Cycles Studies in Business Cycles = Stud. Bus. Cycles Studies in Canadian Literature-etudes En Litterature Canadienne = Stud Can Lit Studies in Canadian Literature-etudes En Litterature Canadienne = Stud. Can. Lit. Studies in Central and Eastern Europe = St Cent East Europe Studies in Central and Eastern Europe = St. Cent. East. Europe Studies in Central and Eastern Europe = Stud Cent E Eur Studies in Central and Eastern Europe = Stud. Cent. E. Eur. Studies in Central European Histories = Stud Cent Eur Hist Studies in Central European Histories = Stud. Cent. Eur. Hist. Studies in Chemical Evolution and The Origin of Life = St Chem Evol & Orig Studies in Chemical Evolution and The Origin of Life = St. Chem. Evol. &. Orig. Studies in Childhood and Family in Canada = Stud Child Fam Can Studies in Childhood and Family in Canada = Stud. Child. Fam. Can. Studies in Chinese Government and Politics = Stud Chin Gov Polit Studies in Chinese Government and Politics = Stud. Chin. Gov. Polit. Studies in Choice and Welfare = Stud Choice Welf Studies in Choice and Welfare = Stud. Choice Welf. Studies in Choice and Welfare = Studies Choice Welfa Studies in Choice and Welfare = Studies Choice Welfa. Studies in Christian ethics = Stud Christ Ethics Studies in Christianity and Judaism-etude Sur Le Christianisme Et Le Judaisme = Stud Christian Jud Studies in Christianity and Judaism-etude Sur Le Christianisme Et Le Judaisme = Stud. Christian. Jud. Studies in Christian Mission = Stud Christ Mission Studies in Christian Mission = Stud. Christ. Mission Studies in church history (Chicago, Ill.) = Stud Chur Hist Studies in Church History : Subsidia = St Ch His S Studies in Church History : Subsidia = St. Ch. His. S. Studies in Classics = Stud Classics Studies in Classics = Stud. Classics Studies in Classification, Data Analysis, and Knowledge Organization = St Class Dat Anal Studies in Classification, Data Analysis, and Knowledge Organization = St. Class. Dat. Anal. Studies in Classification Data Analysis and Knowledge Organization = Stud Class Data Anal Studies in Classification Data Analysis and Knowledge Organization = Stud. Class. Data Anal. Studies in Classification, Data Analysis, and Knowledge Organization = Stud. Classification Data Anal. Knowledge Organ. Studies in Cognition = Stud Cogn Studies in Cognition = Stud. Cogn. Studies in Communication, Media, and Public Opinion = Stud Commun Media Studies in Communication, Media, and Public Opinion = Stud. Commun. Media. Studies in Communism Revisionism and Revolution = Stud Commun Revi Rev Studies in Communism Revisionism and Revolution = Stud. Commun. Revi. Rev. Studies in Comparative Communism = Stud Comp Communism Studies in Comparative Communism = Stud. Comp. Communism Studies in Comparative Education = Beitr Verg Bild Studies in Comparative Education = Beitr. Verg. Bild. Studies in comparative international development = Stud Comp Int Dev Studies in Comparative International Development = Stud Comp Int Dev Studies in Comparative International Development = Stud. Comp. Int. Dev. Studies in Comparative Literature Series = Stud Comp Lit Studies in Comparative Literature Series = Stud. Comp. Lit. Studies in Comparative Literature Series = Stud Comp Lit Ser Studies in Comparative Literature Series = Stud. Comp. Lit. Ser. Studies in Comparative Literature = St Compar L Studies in Comparative Literature = St. Compar. L. Studies in Comparative Local Government = Stud Comp Local Gov Studies in Comparative Local Government = Stud. Comp. Local Gov. Studies in Comparative Religion = Stud Comp Relig Studies in Comparative Religion = Stud. Comp. Relig. Studies in Computational Finance = Stud Computat Fin Studies in Computational Finance = Stud. Computat. Fin. Studies in Computational Intelligence = Stud Comp Intell Studies in Computational Intelligence = Stud. Comp. Intell. Studies in Computational Intelligence = Stud Comput Intell Studies in Computational Intelligence = Stud. Comput. Intell. Studies in Computational Mathematics = Stud. Comput. Math. Studies in Computational Mathematics = Stud Comput Math Studies in Computational Mathematics = Stud. Comput. Math. Studies in Computer and Communications Systems = St Comp Com Studies in Computer and Communications Systems = St. Comp. Com. Studies in Computer Science and Artificial Intelligence = Stud. Comput. Sci. Artificial Intelligence Studies in Conflict & Terrorism = Stud Confl Terror Studies in Conflict & Terrorism = Stud. Confl. Terror. Studies in Conservation = Stud Conserv Studies in Conservation = Stud. Conserv. Studies in Contemporary German Social Thought = St Cont Ger Studies in Contemporary German Social Thought = St. Cont. Ger. Studies in Contemporary German Social Thought = Stud Contemp Ger Soc Studies in Contemporary German Social Thought = Stud. Contemp. Ger. Soc. Studies in Continuing Education = Stud Contin Educ Studies in Continuing Education = Stud. Contin. Educ. Studies in Curriculum Theory = Stud Curric Theory Studies in Curriculum Theory = Stud. Curric. Theory Studies in Developmental Psychology = Stud Dev Psychol Studies in Developmental Psychology = Stud. Dev. Psychol. Studies in Development Economics and Policy = Stud Dev Econ Policy Studies in Development Economics and Policy = Stud. Dev. Econ. Policy Studies in Development Economics and Policy = Stud Devel Econ Studies in Development Economics and Policy = Stud. Devel. Econ. Studies in Diplomacy and International Relations = Stud Dipl Int Relat Studies in Diplomacy and International Relations = Stud. Dipl. Int. Relat. Studies in Disarmament and Conflicts = St Disarm Confl Studies in Disarmament and Conflicts = St. Disarm. Confl. Studies in Dynamical Economic Science = Stud. Dynam. Econom. Sci. Studies in Early Modern Religious Reforms = Stud Early Mod Relig Studies in Early Modern Religious Reforms = Stud. Early Mod. Relig. Studies in East European Thought = Stud E Eur Thought Studies in East European Thought = Stud. E. Eur. Thought Studies in Economic Ethics and Philosophy = St Econ Ethic Philos Studies in Economic Ethics and Philosophy = St. Econ. Ethic. Philos. Studies in Economic Ethics and Philosophy = Stud Econ Ethics Phi Studies in Economic Ethics and Philosophy = Stud. Econ. Ethics Phi. Studies in Economics and Finance=Stud. Econ. Finance Studies in Economic, Social and Politcal Change : The Republic of China = Stud Econ S Studies in Economic, Social and Politcal Change : The Republic of China = Stud. Econ. S. Studies in Economic Theory = Stud. Econom. Theory Studies in Economic Theory = Stud Econ Theory Studies in Economic Theory = Stud. Econ. Theory Studies in Economic Transformation and Public Policy = St Ec Transform Publ Studies in Economic Transformation and Public Policy = St. Ec. Transform. Publ. Studies in Economic Transition = Stud Econ Trans Studies in Economic Transition = Stud. Econ. Trans. Studies in Economic Transition = Stud Econ Transit Studies in Economic Transition = Stud. Econ. Transit. Studies in Educational Ethnography = Stud Educ Ethnog Studies in Educational Ethnography = Stud. Educ. Ethnog. Studies in Educational Leadership = Stud Educ Leadersh Studies in Educational Leadership = Stud. Educ. Leadersh. Studies in Egyptology = Stud Egypt Studies in Egyptology = Stud. Egypt. Studies in Eighteenth-century Culture = Stud Eighteenth-cent Studies in Eighteenth-century Culture = Stud. Eighteenth-cent. Studies in eighteenth-century culture = Stud Eighteenth Cent Cult Studies in Eighteenth-century Culture, Vol 23 = Stud Eighteenth-cent Studies in Eighteenth-century Culture, Vol 23 = Stud. Eighteenth-cent. Studies in Empirical Economics = Stud. Empir. Econom. Studies in Empirical Economics = Stud Empiric Econ Studies in Empirical Economics = Stud. Empiric. Econ. Studies in Employment and Social Policy = Stud Emp Soc Policy Studies in Employment and Social Policy = Stud. Emp. Soc. Policy Studies in English and Comparative Literature = Stud Eng & Compa Lit Studies in English and Comparative Literature = Stud. Eng. &. Compa. Lit. Studies in English Literature 1500-1900 = Stud Engl Lit-1500 Studies in English Literature 1500-1900 = Stud. Engl. Lit-1500. Studies in English literature = Stud Engl Lit Studies in English Literature-tokyo = Stud Engl Lit-tokyo Studies in English Literature-tokyo = Stud. Engl. Lit-tokyo. Studies in Environmental Science = Stud Environ Sci Studies in Environmental Science = Stud. Environ. Sci. Studies in Eu Reform and Enlargement = Stud Eu Reform Enlar Studies in Eu Reform and Enlargement = Stud. Eu Reform Enlar. Studies in European Culture and History = Stud Eur Cult Hist Studies in European Culture and History = Stud. Eur. Cult. Hist. Studies in European Culture and History = Stud Eur Culture His Studies in European Culture and History = Stud. Eur. Culture His. Studies in European Judaism = Stud Europ Judaism Studies in European Judaism = Stud. Europ. Judaism Studies in European thought = Stud Eur Thought Studies in Evolutionary Political Economy = Stud Evol Polit Econ Studies in Evolutionary Political Economy = Stud. Evol. Polit. Econ. Studies in Family Planning = Stud Family Plann Studies in Family Planning = Stud. Family Plann. Studies in Family Planning=Stud. Family Planning Studies in family planning = Stud Fam Plann Studies in Family Planning = Stud. Fam. Plann. Studies In Family Planning=Stud Fam Plann;; Studies in Federalism = St Federal Studies in Federalism = St. Federal. Studies in Fiscal Federalism and State-local Finance = Stud Fiscal Fed Stat Studies in Fiscal Federalism and State-local Finance = Stud. Fiscal Fed. Stat. Studies in Fiscal Federalism and State-local Finance = Stud Fisc Fed Sl Fin Studies in Fiscal Federalism and State-local Finance = Stud. Fisc. Fed. Sl. Fin. Studies in Formative Spirituality = Stud Formative Spir Studies in Formative Spirituality = Stud. Formative Spir. Studies in Frank Waters = Stu Frank W Studies in Frank Waters = Stu. Frank W. Studies in Frank Waters - Xviii: Afterwords = Stu Frank W Studies in Frank Waters - Xviii: Afterwords = Stu. Frank W. Studies in French Cinema = Stud Fr Cinem Studies in French Cinema = Stud. Fr. Cinem. Studies in Functional and Structural Linguistics = Stud Funct Struct Studies in Functional and Structural Linguistics = Stud. Funct. Struct. Studies in Fuzziness and Soft Computing = Stud Fuzziness Soft Studies in Fuzziness and Soft Computing = Stud. Fuzziness Soft Studies in Fuzziness and Soft Computing = Stud. Fuzziness Soft Comput. Studies in Fuzziness and Soft Computing = Stud Fuzz Soft Comp Studies in Fuzziness and Soft Computing = Stud. Fuzz. Soft Comp. Studies in Fuzziness = Stud. Fuzziness Studies in Gdr Culture and Society 6 = Stud Gdr C Studies in Gdr Culture and Society 6 = Stud. Gdr C. Studies in Gdr Culture and Society 9 = Stud Gdr C Studies in Gdr Culture and Society 9 = Stud. Gdr C. Studies in Gdr Culture and Society = Stud Gdr C Studies in Gdr Culture and Society = Stud. Gdr C. Studies in General Philosophy of Science = Stud. Gen. Philos. Sci. Studies in Generative Grammar = Stud Genera Grammar Studies in Generative Grammar = Stud. Genera. Grammar Studies in Generative Grammar = Stud Generat Gramm Studies in Generative Grammar = Stud. Generat. Gramm. Studies in Generative Grammar = Stud Gener Gramm Studies in Generative Grammar = Stud. Gener. Gramm. Studies in Geophysical Optics and Remote Sensing = Stud Geo Op Studies in Geophysical Optics and Remote Sensing = Stud. Geo. Op. Studies in German Idealism = Stud Ger Ideal Studies in German Idealism = Stud. Ger. Ideal. Studies in German Idealism = Stud Ger Idealism Studies in German Idealism = Stud. Ger. Idealism Studies in German Literature, Linquistics and Culture = St German L Studies in German Literature, Linquistics and Culture = St. German L. Studies in Global Justice = Stud Global Justice Studies in Global Justice = Stud. Global Justice Studies in Global Justice = Stud Glob Justice Studies in Global Justice = Stud. Glob. Justice Studies in Health Technology and Informatics = St Heal T Studies in Health Technology and Informatics = St. Heal. T. Studies in Health Technology and Informatics = Stud Health Technol Studies in Health Technology and Informatics = Stud. Health Technol. Studies in health technology and informatics = Stud Health Technol Inform Studies in Health Technology and Informatics = Stud. Health Technol. Inform. Studies in Heliodorus = Camb C J Proc Cam Ph Studies in Heliodorus = Camb. C. J. Proc. Cam. Ph. Studies in Hellenistic Civilization = St Hellen C Studies in Hellenistic Civilization = St. Hellen. C. Studies in High Energy Physics Cosmology and Gravitation = Stud Hi Ener Phy Cos Studies in High Energy Physics Cosmology and Gravitation = Stud. Hi. Ener. Phy. Cos. Studies in High Energy Physics Cosmology and Gravitation = Stud. High Energy Phys. Cosmol. Gravit. Studies in Higher Education Series = Stud High Educ Ser Studies in Higher Education Series = Stud. High. Educ. Ser. Studies in Higher Education = Stud High Educ Studies in Higher Education = Stud. High. Educ. Studies in history and philosophy of biological and biomedical sciences = Stud Hist Philos Biol Biomed Sci Studies in History and Philosophy of Modern Physics = Stud Hist Philos M P Studies in History and Philosophy of Modern Physics = Stud. Hist. Philos. M. P. Studies in History and Philosophy of Science Series = St Hist Phil Sci Ser Studies in History and Philosophy of Science Series = St. Hist. Phil. Sci. Ser. Studies in history and philosophy of science = SHPS Studies in history and philosophy of science = Stud Hist Philos Sci Studies in History and Philosophy of Science = Stud. Hist. Philos. Sci. Studies in History and Philosophy of Science = Stud Hist Philos Sci Studies in History and Philosophy of Science = Stud. Hist. Philos. Sci. Studies in History and Philosophy of Science = Stud. Hist. Philos. Sci. B Stud. Hist. Philos. Modern Phys. Studies in history of biology = Stud Hist Biol Studies in history of medicine and science = Stud Hist Med Sci Studies in history of medicine = Stud Hist Med Studies in history = Stud Hist Studies in Human Biology = Stud Hum B Studies in Human Biology = Stud. Hum. B. Studies in Human Ecology and Adaptation = Stud Hum Ecol Adapt Studies in Human Ecology and Adaptation = Stud. Hum. Ecol. Adapt. Studies in human ecology = Stud Hum Ecol Studies in Human Ecology = Stud. Hum. Ecol. Studies In Human Ecology=Stud Hum Ecol;; Studies in Human Rights = Stud Hum Rights Studies in Human Rights = Stud. Hum. Rights Studies in Iconography = Stud Iconogr Studies in Iconography = Stud. Iconogr. Studies in Imperialism = Stud Imper Studies in Imperialism = Stud. Imper. Studies in Income and Wealth = Stud Income Studies in Income and Wealth = Stud. Income Studies in Industrial Organization = Stud Ind Or Studies in Industrial Organization = Stud. Ind. Or. Studies in Industrial Organization = Stud Ind Organ Studies in Industrial Organization = Stud. Ind. Organ. Studies in Industrial Relations = St Ind Rel Studies in Industrial Relations = St. Ind. Rel. Studies in Informatics and Control = Stud Inform Control Studies in Informatics and Control = Stud. Inform. Control Studies in Inorganic Chemistry = Stud Inorg Chem Studies in Inorganic Chemistry = Stud. Inorg. Chem. Studies in Intelligence Series = Stud Intell Ser Studies in Intelligence Series = Stud. Intell. Ser. Studies in Intelligence = Stud Intell Studies in Intelligence = Stud. Intell. Studies in Intercultural Philosophy = Stud Intercult Phil Studies in Intercultural Philosophy = Stud. Intercult. Phil. Studies in Interface Science = Stud Interf Sci Studies in Interface Science = Stud. Interf. Sci. Studies in International Economics = Stud Int Ec Studies in International Economics = Stud. Int. Ec. Studies in International Governance = Stud Int Gov Studies in International Governance = Stud. Int. Gov. Studies in International Investment = Stud Int Invest Studies in International Investment = Stud. Int. Invest. Studies in International Investment = Stud Int Investmt Studies in International Investment = Stud. Int. Investmt. Studies in International Performance = Stud Int Perform Studies in International Performance = Stud. Int. Perform. Studies in International Relations = Stud Int R Studies in International Relations = Stud. Int. R. Studies in International Relations = Stud Int Relat Studies in International Relations = Stud. Int. Relat. Studies in Interpretation = Stud Interpret Studies in Interpretation = Stud. Interpret. Studies in Islamic Finance Accounting and Governance = Stud Islam Financ Ac Studies in Islamic Finance Accounting and Governance = Stud. Islam. Financ. Ac. Studies in Islamic Law and Society = Stud Islam Law Soc Studies in Islamic Law and Society = Stud. Islam. Law Soc. Studies in Islamic Legal Theory = Stud Islam Law Soc Studies in Islamic Legal Theory = Stud. Islam. Law. Soc. Studies in Jewish Civilization = St Jew Civ Studies in Jewish Civilization = St. Jew. Civ. Studies in Judaism and Christianity : Exploration of Issues in The Contempory Dialogue Between Christians and Jews = St Jud Chr Studies in Judaism and Christianity : Exploration of Issues in The Contempory Dialogue Between Christians and Jews = St. Jud. Chr. Studies in Judaism = Stud Judais Studies in Judaism = Stud. Judais. Studies in labour history = Stud Labour Hist Studies in Lake Antiquity and Early Islam = St Late Ant Studies in Lake Antiquity and Early Islam = St. Late. Ant. Studies in Language Companion Series = Stud Lang C Studies in Language Companion Series = Stud. Lang. C. Studies in Language: international journal sponsored by the Foundations of Language = StudLang Studies in Languages = Stud Lang-finland Studies in Languages = Stud. Lang-finland. Studies in Language = Stud Lang Studies in Language = Stud. Lang. Studies in Latin American Popular Culture = Stud Lat Am Pop Cult Studies in Latin American Popular Culture = Stud. Lat. Am. Pop. Cult. Studies in Law Politics and Society = Stud Law Politics So Studies in Law Politics and Society = Stud. Law Politics So. Studies in Law, Politics and Society, Vol 28 = Stud Law Politics So Studies in Law, Politics and Society, Vol 28 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 29 = Stud Law Politics So Studies in Law, Politics and Society, Vol 29 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 31 = Stud Law Politics So Studies in Law, Politics and Society, Vol 31 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 32 = Stud Law Politics So Studies in Law, Politics and Society, Vol 32 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 33 = Stud Law Politics So Studies in Law, Politics and Society, Vol 33 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 35 = Stud Law Politics So Studies in Law, Politics and Society, Vol 35 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 38 = Stud Law Politics So Studies in Law, Politics and Society, Vol 38 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 40 = Stud Law Politics So Studies in Law, Politics and Society, Vol 40 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 45 = Stud Law Politics So Studies in Law, Politics and Society, Vol 45 = Stud. Law. Politics So. Studies in Law, Politics and Society, Vol 46 = Stud Law Politics So Studies in Law, Politics and Society, Vol 46 = Stud. Law. Politics So. Studies in Law, Politics and Society, Volume 39 = Stud Law Politics So Studies in Law, Politics and Society, Volume 39 = Stud. Law. Politics So. Studies in Law = Stud Law Studies in Law = Stud. Law Studies in Legal Logic = Law Philos Libr Studies in Legal Logic = Law. Philos. Libr. Studies in Lie Theory = Prog Math Studies in Lie Theory = Prog. Math. Studies in Linguistics and Philosophy = Stud Linguist Philos Studies in Linguistics and Philosophy = Stud. Linguist. Philos. Studies in Linguistics = Stud Ling Studies in Linguistics = Stud. Ling. Studies in Literature and Religion = Stud Lit Relig Studies in Literature and Religion = Stud. Lit. Relig. Studies in Logic and Computation = Stud. Logic Comput. Studies in Logic and the Foundations of Mathematics = Stud. Logic Found. Math. Studies in Logic, Language and Information = Stud. Logic Lang. Inform. Studies in Major Literary Authors = Stud Major Lit Autho Studies in Major Literary Authors = Stud. Major Lit. Autho. Studies in Managerial and Financial Accounting = Stud Manag Financ Ac Studies in Managerial and Financial Accounting = Stud. Manag. Financ. Ac. Studies in Mathematical and Managerial Economics = Stud. Math. Managerial Econom. Studies in Mathematical Physics = Stud Math P Studies in Mathematical Physics = Stud. Math. P. Studies in Mathematical Physics = Stud. Math. Phys. Studies in Mathematical Thinking and Learning = Stud Math Think Lear Studies in Mathematical Thinking and Learning = Stud. Math. Think. Lear. Studies in Mathematics and its Applications = Stud. Math. Appl. Studies in Mathematics Education Series = Stud. Math. Ed. Ser. Studies in Mechanobiology Tissue Engineering and Biomaterials = Stud Mechanobiol Tis Studies in Mechanobiology Tissue Engineering and Biomaterials = Stud. Mechanobiol. Tis. Studies in Medieval Culture = St Mediev C Studies in Medieval Culture = St. Mediev. C. Studies in medieval culture = Stud Mediev Cult Studies in Medieval History and Culture = Stud Mediev Hist Cul Studies in Medieval History and Culture = Stud. Mediev. Hist. Cul. Studies in Mediterranean Archaeology and Literature, Pocket-books = St Med Ar Lit Pb Studies in Mediterranean Archaeology and Literature, Pocket-books = St. Med. Ar. Lit. Pb. Studies in Mediterranean Archaeology = SIMA Studies in Military and Strategic History = Stud Milit Strat Studies in Military and Strategic History = Stud. Milit. Strat. Studies in Military and Strategic History = Stud Mil Strateg His Studies in Military and Strategic History = Stud. Mil. Strateg. His. Studies in Modern History = Stud Mod Hist Studies in Modern History = Stud. Mod. Hist. Studies in Modern Japan = Stud Mod J Studies in Modern Japan = Stud. Mod. J. Studies in Multidisciplinarity = Stud Multidiscip Studies in Multidisciplinarity = Stud. Multidiscip. Studies in Multimedia = Asis Monogr Studies in Multimedia = Asis. Monogr. Studies in mycology = Stud Mycol Studies in Mycology = Stud Mycol Studies in Mycology = Stud. Mycol. Studies in Natural Language and Linguistic Theory = St Nat Lang Studies in Natural Language and Linguistic Theory = St. Nat. Lang. Studies in Natural Language and Linguistic Theory = Stud Nat Lang Lingui Studies in Natural Language and Linguistic Theory = Stud. Nat. Lang. Lingui. Studies in Natural Products Chemistry = Stud. Nat. Prod. Chem. Studies in Neoplatonism = Stud Neoplatonism Studies in Neoplatonism = Stud. Neoplatonism Studies in Netherlandic Culture and Literature = Publ Aans Studies in Netherlandic Culture and Literature = Publ. Aans. Studies in neuro-anatomy = Stud Neuroanat Studies in Neuro-Anatomy = Stud. Neuroanat. Studies in Neuroscience = Stud Neuros Studies in Neuroscience = Stud. Neuros. Studies in Nonlinear Dynamics and Econometrics=Stud. Nonlinear Dynam. Econometrics Studies in Nonlinear Dynamics and Econometrics = Stud Nonlinear Dyn E Studies in Nonlinear Dynamics and Econometrics = Stud. Nonlinear Dyn. E. Studies in Nonlinear Dynamics and Econometrics = Stud. Nonlinear Dyn. Econom. Studies in Operational Regional Science = Stud Oper R Studies in Operational Regional Science = Stud. Oper. R. Studies in Organic Chemistry (Amsterdam) = Stud. Org. Chem. (Amsterdam) Studies in Organic Chemistry = Stud Org Chem Studies in Organic Chemistry = Stud. Org. Chem. Studies in Palaeozoic Palaeontology and Biostratigraphy in Honour of Charles Hepworth Holland = Sp Palaeont Studies in Palaeozoic Palaeontology and Biostratigraphy in Honour of Charles Hepworth Holland = Sp. Palaeont. Studies in Pedagogy, Andragogy, and Gerontagogy = Stud Ped And Geron Studies in Pedagogy, Andragogy, and Gerontagogy = Stud. Ped. And. Geron. Studies in Perception and Action Iii = Stud Percept Action Studies in Perception and Action Iii = Stud. Percept. Action Studies in Perception and Action = Stud Percept Action Studies in Perception and Action = Stud. Percept. Action Studies in Perception and Action Vii = Stud Percept Action Studies in Perception and Action Vii = Stud. Percept. Action Studies in Perception and Action Vi = Stud Percept Action Studies in Perception and Action Vi = Stud. Percept. Action Studies in Perception and Action V = Stud Percept Action Studies in Perception and Action V = Stud. Percept. Action Studies in Personnel Psychology = Stud Pers Psychol Studies in Personnel Psychology = Stud. Pers. Psychol. Studies in Philology = SPh Studies in philology = Stud Philol Studies in Philology = Stud Philol Studies in Philology = Stud. Philol. Studies in Philosophical Theology = Stud Philoso Theol Studies in Philosophical Theology = Stud. Philoso. Theol. Studies in Philosophy and Education = Stud Philos Educ Studies in Philosophy and Education = Stud. Philos. Educ. Studies in Philosophy and Religion Series = Stud Philos Relig Se Studies in Philosophy and Religion Series = Stud. Philos. Relig. Se. Studies in Philosophy and Religion = Stud Phil R Studies in Philosophy and Religion = Stud. Phil. R. Studies in Philosophy and The History of Philosophy = Stud Phil H Studies in Philosophy and The History of Philosophy = Stud. Phil. H. Studies in Philosophy and the History of Philosophy = Stud. Philos. Hist. Philos. Studies in philosophy of medicine = Stud Philos Med Studies in Physical and Theoretical Chemistry = Stud Phys Theo Chem Studies in Physical and Theoretical Chemistry = Stud. Phys. Theo. Chem. Studies in Physical and Theoretical Chemistry = Stud. Phys. Theor. Chem. Studies in Plant Science = Stud Plan S Studies in Plant Science = Stud. Plan. S. Studies in Polymer Science = Stud Polym Sci Studies in Polymer Science = Stud. Polym. Sci. Studies in Pragmatics = Stud Pragmat Studies in Pragmatics = Stud. Pragmat. Studies in Productivity Analysis = Stud Prod A Studies in Productivity Analysis = Stud. Prod. A. Studies in Productivity and Efficiency = Stud Product Eff Studies in Productivity and Efficiency = Stud. Product. Eff. Studies in Productivity and Efficiency = Stud Product Effic Studies in Productivity and Efficiency = Stud. Product. Effic. Studies in Profertility Series = Stud Proferlit Studies in Profertility Series = Stud. Proferlit. Studies in profertility series = Stud Profertility Ser Studies in Progressive Halakhah = Stud Progr Halakh Studies in Progressive Halakhah = Stud. Progr. Halakh. Studies in Public Choice = Stud Pub Ch Studies in Public Choice = Stud. Pub. Ch. Studies in Public Choice = Stud Public Choice Studies in Public Choice = Stud. Public Choice Studies in Qualitative in Methodology = Stud Qual Methodol Studies in Qualitative in Methodology = Stud. Qual. Methodol. Studies in Regional Science and Urban Economics = Stud Reg Sc Studies in Regional Science and Urban Economics = Stud. Reg. Sc. Studies in Regulation = Studies Regulat Studies in Regulation = Studies Regulat. Studies in Religion and Culture = St Rel Cult Studies in Religion and Culture = St. Rel. Cult. Studies in religion (Sciences religieuses) = SR Studies in religion. Sciences religieuses = Stud Relig Studies in Religion-sciences Religieuses = Stud Relig-sci Relig Studies in Religion-sciences Religieuses = Stud. Relig-sci. Relig. Studies in Religion Secular Beliefs and Human Rights = Stud Relig Secul Bel Studies in Religion Secular Beliefs and Human Rights = Stud. Relig. Secul. Bel. Studies in Risk and Uncertainty = Stud Risk Uncertain Studies in Risk and Uncertainty = Stud. Risk Uncertain. Studies in romanticism = Stud Romanticism Studies in Romanticism = Stud Romanticism Studies in Romanticism = Stud. Romanticism Studies in Russia and East Europe = Stud Russ E Eur Studies in Russia and East Europe = Stud. Russ. E. Eur. Studies in Russia and East Europe = Stud Russia E Europe Studies in Russia and East Europe = Stud. Russia E. Europe Studies in Russian and East European History and Society = Stud Russ E Eur Hist Studies in Russian and East European History and Society = Stud. Russ. E. Eur. Hist. Studies in Russian Literature and Theory = Stud Russ Lit Theor Studies in Russian Literature and Theory = Stud. Russ. Lit. Theor. Studies in School Improvement = Res Theor Educ Admin Studies in School Improvement = Res. Theor. Educ. Admin. Studies in Science and Humanities From The Reilly Center = St Sci Hum Studies in Science and Humanities From The Reilly Center = St. Sci. Hum. Studies in Science Education = Stud Sci Educ Studies in Science Education = Stud. Sci. Educ. Studies in Scottish literature = Stud Scott Lit Studies in Second Language Acquisition = Stud Second Lang Acq Studies in Second Language Acquisition = Stud. Second Lang. Acq. Studies in Short Fiction = Stud Short Fiction Studies in Short Fiction = Stud. Short Fiction Studies in Slave and Post-slave Societies and Cultures = Stud Slav Post Slav Studies in Slave and Post-slave Societies and Cultures = Stud. Slav. Post. Slav. Studies in Slavic and General Linguistics = Stud Slav Studies in Slavic and General Linguistics = Stud. Slav. Studies in Slavic Literature and Poetics = Stud Slav L Studies in Slavic Literature and Poetics = Stud. Slav. L. Studies in Slavic Literature and Poetics = Stud Slav Lit Poet Studies in Slavic Literature and Poetics = Stud. Slav. Lit. Poet. Studies in Social and Political Theory = S Soc Polit Studies in Social and Political Theory = S. Soc. Polit. Studies in Social Life = Stud Soc Life Studies in Social Life = Stud. Soc. Life Studies in Social, Political, and Legal Philosophy = St Social Polit Leg Studies in Social, Political, and Legal Philosophy = St. Social. Polit. Leg. Studies in Social Security and Health = Stud Soc Secur Healt Studies in Social Security and Health = Stud. Soc. Secur. Healt. Studies in Socio-economics = Stud Soc-ec Studies in Socio-economics = Stud. Soc-ec. Studies in Sociology = Studies Sociol Studies in Sociology = Studies Sociol. Studies in Soviet thought = Stud Sov Thought Studies in Soviet Thought = Stud Sov Thought Studies in Soviet Thought = Stud. Sov. Thought Studies in Space Policy = Stud Space Policy Studies in Space Policy = Stud. Space Policy Studies in State and Society in The Pacific = Stud St Soc Pac Studies in State and Society in The Pacific = Stud. St. Soc. Pac. Studies in surface science and catalysis = Stud Surf Sci Catal Studies in Surface Science and Catalysis = Stud Surf Sci Catal Studies in Surface Science and Catalysis = Stud. Surf. Sci. Catal. Studies in Symbolic Interaction = Stud Symb Interac Studies in Symbolic Interaction = Stud. Symb. Interac. Studies in Symbolic Interaction = Stud Symb Interact Studies in Symbolic Interaction = Stud. Symb. Interact. Studies In Symbolic Interaction = Stud Symb Interact Studies in Symbolic Interaction = Stud Sym In Studies in Symbolic Interaction = Stud. Sym. In. Studies in Symbolic Interaction, Vol 10, Pts A and B = Stud Sym In Studies in Symbolic Interaction, Vol 10, Pts A and B = Stud. Sym. In. Studies in Symbolic Interaction, Vol 12 = Stud Sym In Studies in Symbolic Interaction, Vol 12 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 19, 1995 = Stud Sym In Studies in Symbolic Interaction, Vol 19, 1995 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 21, 1997 = Stud Sym In Studies in Symbolic Interaction, Vol 21, 1997 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 22, 1999 = Stud Sym In Studies in Symbolic Interaction, Vol 22, 1999 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 23 = Stud Sym In Studies in Symbolic Interaction, Vol 23 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 24 = Stud Sym In Studies in Symbolic Interaction, Vol 24 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 25 = Stud Sym In Studies in Symbolic Interaction, Vol 25 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 26 = Stud Symb Interact Studies in Symbolic Interaction, Vol 26 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 26 = Stud Sym In Studies in Symbolic Interaction, Vol 26 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 27 = Stud Sym In Studies in Symbolic Interaction, Vol 27 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 28 = Stud Symb Interact Studies in Symbolic Interaction, Vol 28 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 28 = Stud Sym In Studies in Symbolic Interaction, Vol 28 = Stud. Sym. In. Studies in Symbolic Interaction, Vol 29 = Stud Symb Interact Studies in Symbolic Interaction, Vol 29 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 30 = Stud Symb Interact Studies in Symbolic Interaction, Vol 30 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 31 = Stud Symb Interact Studies in Symbolic Interaction, Vol 31 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 32 = Stud Symb Interac Studies in Symbolic Interaction, Vol 32 = Stud. Symb. Interac. Studies in Symbolic Interaction, Vol 32 = Stud Symb Interact Studies in Symbolic Interaction, Vol 32 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 33 = Stud Symb Interact Studies in Symbolic Interaction, Vol 33 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 34 = Stud Symb Interact Studies in Symbolic Interaction, Vol 34 = Stud. Symb. Interact. Studies in Symbolic Interaction, Vol 35 = Stud Symb Interact Studies in Symbolic Interaction, Vol 35 = Stud. Symb. Interact. Studies in Technology and Social Change = Stud Tech S Studies in Technology and Social Change = Stud. Tech. S. Studies in The African Past = Stud Afr Past Studies in The African Past = Stud. Afr. Past Studies in The Agricultural and Food Sciences = Stud Agr F Studies in The Agricultural and Food Sciences = Stud. Agr. F. Studies in the American renaissance = Stud Am Renaiss Studies in The Archaeology of The Iron Age in Israel and Jordan = J St Old Test Suppl Studies in The Archaeology of The Iron Age in Israel and Jordan = J. St. Old. Test. Suppl. Studies in Theatre History and Culture = St Theat H Studies in Theatre History and Culture = St. Theat. H. Studies in The Book of Exodus = Bib Eph The Studies in The Book of Exodus = Bib. Eph. The Studies in The Book of Genesis = Bib Eph The Studies in The Book of Genesis = Bib. Eph. The Studies in The Development of Accounting Thought = Stud Dev Account Tho Studies in The Development of Accounting Thought = Stud. Dev. Account. Tho. Studies in The Economies of East and South-east Asia = Stud Econ E Se Asia Studies in The Economies of East and South-east Asia = Stud. Econ. E. Se. Asia Studies in The Economies of East and Southeast Asia = Stud Econ E Se Asia Studies in The Economies of East and Southeast Asia = Stud. Econ. E. Se. Asia Studies in The Field of Agriculture, Vol 87 (supplement) = Ptpn Roln Lesn Studies in The Field of Agriculture, Vol 87 (supplement) = Ptpn. Roln. Lesn. Studies in The History and Anthropology of Religion = Stud His Anth Rel Studies in The History and Anthropology of Religion = Stud. His. Anth. Rel. Studies in The History of Art Series = Stud Hist A Studies in The History of Art Series = Stud. Hist. A. Studies in The History of Arts, Symp Series = St His A Ss Studies in The History of Arts, Symp Series = St. His. A. Ss. Studies in The History of Art = Stud Hist Art Studies in The History of Art = Stud. Hist. Art Studies in The History of Art - Symposium Series = Stud Hist Art Symp Studies in The History of Art - Symposium Series = Stud. Hist. Art Symp. Studies in The History of Christian Missions = Stud Hist Christ Mis Studies in The History of Christian Missions = Stud. Hist. Christ. Mis. Studies in The History of Christian Thought = St Hist Christ Th Studies in The History of Christian Thought = St. Hist. Christ. Th. Studies in The History of Christian Traditions = Stud Hist Christ Tra Studies in The History of Christian Traditions = Stud. Hist. Christ. Tra. Studies in The History of Education = Stud Hist Educ Studies in The History of Education = Stud. Hist. Educ. Studies in The History of Gardens & Designed Landscapes = Stud Hist Gard Des L Studies in The History of Gardens & Designed Landscapes = Stud. Hist. Gard. Des. L. Studies in The History of Ideas in The Low Countries = Stud Hist Idea Low Studies in The History of Ideas in The Low Countries = Stud. Hist. Idea. Low Studies in The History of Philosophy of Mind = Stud His Phil Mind Studies in The History of Philosophy of Mind = Stud. His. Phil. Mind Studies in The History of Philosophy of Mind = Stud Hist Philos Min Studies in The History of Philosophy of Mind = Stud. Hist. Philos. Min. Studies in The History of Religion = St Hist Rel Studies in The History of Religion = St. Hist. Rel. Studies in The History of The English Language: A Millennial Perspective = Top Eng Ling Studies in The History of The English Language: A Millennial Perspective = Top. Eng. Ling. Studies in The History of The English Language: A Millennial Perspective = Top Engl Linguist Studies in The History of The English Language: A Millennial Perspective = Top. Engl. Linguist. Studies in The Intercultural History of Christianity = Stud Int Hist Christ Studies in The Intercultural History of Christianity = Stud. Int. Hist. Christ. Studies in The Literary Imagination = Stud Lit Imagination Studies in The Literary Imagination = Stud. Lit. Imagination Studies in The Novel = Stud Novel Studies in The Novel = Stud. Novel Studies in Theoretical Psycholinguistics = Stud Theor Psycholin Studies in Theoretical Psycholinguistics = Stud. Theor. Psycholin. Studies in Theoretical Psycholinguistics = Stud Th Psy Studies in Theoretical Psycholinguistics = Stud. Th. Psy. Studies in The Political Economy of The World-system = Stud Pol Ec Studies in The Political Economy of The World-system = Stud. Pol. Ec. Studies in The Portuguese Discoveries I = St Port Dis Studies in The Portuguese Discoveries I = St. Port. Dis. Studies in The Portuguese Discoveries = St Port Dis Studies in The Portuguese Discoveries = St. Port. Dis. Studies in the Renaissance = Stud Renaissance Studies in The Shoah = Stud Shoah Studies in The Shoah = Stud. Shoah Studies in The Social History of Medicine = Stud Social Hist Med Studies in The Social History of Medicine = Stud. Social Hist. Med. Studies in the social sciences (West Georgia College) = Stud Soc Sci West Ga Coll Studies in third world societies = Stud Third World Soc Studies in Transatlantic Business Ethics = Stud Transatl Bus Et Studies in Transatlantic Business Ethics = Stud. Transatl. Bus. Et. Studies in Transnational Economic Law = St Trans E Studies in Transnational Economic Law = St. Trans. E. Studies in Twentieth Century Literature = Stud 20th Cent Lit Studies in Twentieth Century Literature = Stud. 20th. Cent. Lit. Studies in Universal Logic = Stud Univers Log Studies in Universal Logic = Stud. Univers. Log. Studies in Visual Information Processing = Stud Vis Inform Proc Studies in Visual Information Processing = Stud. Vis. Inform. Proc. Studies in Women and Religion = Stud Wom Relig Studies in Women and Religion = Stud. Wom. Relig. Studies in World Christianity = Stud World Christ Studies in World Christianity = Stud. World Christ. Studies in World Peace = St World P Studies in World Peace = St. World P. Studies in Writing = Stud Writ Studies in Writing = Stud. Writ. Studies in Yiddish = Stud Yiddish Studies in Yiddish = Stud. Yiddish Studies of Communism in Transition = St Commun T Studies of Communism in Transition = St. Commun. T. Studies of Economies in Transformation = Stud Econ Transform Studies of Economies in Transformation = Stud. Econ. Transform. Studies of Nanoconstrictions, Nanowires and Fe3o4 Thin Films: Electrical Conduction and Magnetic Properties, Fabrication By Focused Electron/ion Beam = Springer Theses-reco Studies of Nanoconstrictions, Nanowires and Fe3o4 Thin Films: Electrical Conduction and Magnetic Properties, Fabrication By Focused Electron/ion Beam = Springer. Theses-reco. Studies of Nonlinear Phenomena in Life Science = Stud. Nonlinear Phenom. Life Sci. Studies of Nonlinear Phenomena in Life Science = Stud Nonlin Phenom Studies of Nonlinear Phenomena in Life Science = Stud. Nonlin. Phenom. Studies of Organized Crime = Stud Organize Crime Studies of Organized Crime = Stud. Organize. Crime Studies of Small and Medium Sized Enterprises in East Asia = Stud Small Med Enter Studies of Small and Medium Sized Enterprises in East Asia = Stud. Small Med. Enter. Studies of Supply and Demand in Higher Education = Nat Bur Ec Studies of Supply and Demand in Higher Education = Nat. Bur. Ec. Studies of The Americas = Stud Am Studies of The Americas = Stud. Am. Studies of The Americas = Stud Amer Studies of The Americas = Stud. Amer. Studies of The German Historical Institute London = Stud Ger Hist Inst Studies of The German Historical Institute London = Stud. Ger. Hist. Inst. Studies of The Magnitude and Nature of Pesticide Residues in Stored Products, Using Radiotracer Techniques = Iaea Pan P Studies of The Magnitude and Nature of Pesticide Residues in Stored Products, Using Radiotracer Techniques = Iaea. Pan. P. Studies of the University of Transport and Communications in Žilina = Stud. Univ. Transp. Commun. Žilina Math.-Phys. Ser. Studies of University in Žilina = Stud. Univ. Žilina Math. Phys. Ser. Studies of Vacuum Ultraviolet and X-ray Processes = St Vac Ultrav Xray P Studies of Vacuum Ultraviolet and X-ray Processes = St. Vac. Ultrav. Xray. P. Studies On Cardiovascular Disorders = Oxid Stress Appl Bas Studies On Cardiovascular Disorders = Oxid. Stress. Appl. Bas. Studies On China = Stud China Studies On China = Stud. China Studies On Contemporary China = St Cont Ch Studies On Contemporary China = St. Cont. Ch. Studies On Continuing Vocational Training in Germany - An Empirical Assessment = Zew Econ Stud Studies On Continuing Vocational Training in Germany - An Empirical Assessment = Zew. Econ. Stud. Studies On Culture and Society = Stud Cult Soc Studies On Culture and Society = Stud. Cult. Soc. Studies On East Asia = Stud E As Studies On East Asia = Stud. E. As. Studies On Economic Well-being: Essays in The Honor of John P. Formby = Res Ec Ineq Studies On Economic Well-being: Essays in The Honor of John P. Formby = Res. Ec. Ineq. Studies On Economic Well-being: Essays in The Honor of John P. Formby = Res Econ Inequal Studies On Economic Well-being: Essays in The Honor of John P. Formby = Res. Econ. Inequal. Studies On Ethnic Groups in China = Stud Ethnic Groups C Studies On Ethnic Groups in China = Stud. Ethnic Groups C. Studies On Ethno-medicine = Stud Ethno-med Studies On Ethno-medicine = Stud. Ethno-med. Studies On Experimental Models = Oxid Stress Appl Bas Studies On Experimental Models = Oxid. Stress. Appl. Bas. Studies On Grammaticalization = Trends Linguist-stud Studies On Grammaticalization = Trends. Linguist-stud. Studies On Language Acquisition = Stud Lang Acquis Studies On Language Acquisition = Stud. Lang. Acquis. Studies On Locke: Sources, Contemporaries, and Legacy = Arch Int Hist Idees Studies On Locke: Sources, Contemporaries, and Legacy = Arch. Int. Hist. Idees. Studies on medical and population subjects = Stud Med Popul Subj Studies On Medieval and Early Modern Women 4: Victims Or Viragos? = Stud Med Ear Mod Wom Studies On Medieval and Early Modern Women 4: Victims Or Viragos? = Stud. Med. Ear. Mod. Wom. Studies On Medieval and Early Modern Women: Pawns Or Players? = Stud Med Ear Mod Wom Studies On Medieval and Early Modern Women: Pawns Or Players? = Stud. Med. Ear. Mod. Wom. Studies On Medieval and Early Modern Women = Stud Med Ear Mod Wom Studies On Medieval and Early Modern Women = Stud. Med. Ear. Mod. Wom. Studies On Neotropical Fauna and Environment = Stud Neotrop Fauna E Studies On Neotropical Fauna and Environment = Stud. Neotrop. Fauna E. Studies On Neuropsychology Development and Cognition = Stud Neuropsych Dev Studies On Neuropsychology Development and Cognition = Stud. Neuropsych. Dev. Studies On Neuropsychology Neurology and Cognition = Stud Neuropsychol Ne Studies On Neuropsychology Neurology and Cognition = Stud. Neuropsychol. Ne. Studies On Renal Disorders = Oxid Stress Appl Bas Studies On Renal Disorders = Oxid. Stress. Appl. Bas. Studies on Russian economic development = Stud Russ Econ Dev Studies On The 18th Century, Vol 19 = U Lib Bruxe Studies On The 18th Century, Vol 19 = U. Lib. Bruxe. Studies On The Argonautica of Valerius Flaccus = Spudasmata Studies On The Argonautica of Valerius Flaccus = Spudasmata. Studies On The Chinese Economy = Stud Chin Econ Studies On The Chinese Economy = Stud. Chin. Econ. Studies On The Economic Future of The Western Hemisphere = St Econ Fut W Hem Studies On The Economic Future of The Western Hemisphere = St. Econ. Fut. W. Hem. Studies On The History of Logic = Perspekt Analyt Phil Studies On The History of Logic = Perspekt. Analyt. Phil. Studies On The History of Society and Culture = Stud Hist Soc Cult Studies On The History of Society and Culture = Stud. Hist. Soc. Cult. Studies On The Texts of The Desert of Judah = Stud Text Des Judah Studies On The Texts of The Desert of Judah = Stud. Text. Des. Judah Studies on Tropical Andean Ecosystems = Stud. Trop. Andean Ecosyst. Studies On Turkish and Turkic Languages, Proceedings = Turcologica Studies On Turkish and Turkic Languages, Proceedings = Turcologica. Studies On Veterinary Medicine = Oxid Stress Appl Bas Studies On Veterinary Medicine = Oxid. Stress. Appl. Bas. Studies on Voltaire and the eighteenth century / edited by Theodore Besterman = Stud Voltaire 18th Century Studies On Voltaire and The Eighteenth Century = Stud Volt Eight Cent Studies On Voltaire and The Eighteenth Century = Stud. Volt. Eight. Cent. Studies On War and Genocide = Stud War Genocide Studies On War and Genocide = Stud. War Genocide Studies = Studies Studi etruschi. Roma, Giorgio Bretschneider = SE Studi etruschi = StEtr Studi Francesi = Stud Francesi Studi Francesi = Stud. Francesi Studi francesi = Studi Fr Studi Galileiani = Studi Galileiani Studi genuensi = SG Studi genuensi = StGenu Studii clasice. Societatea de studii clasice din Republica socialistă Romănia = StCl Studii clasice = Stud Cl Studii Clasice = StudClas Studii si cercetari de endocrinologie = Stud Cercet Endocrinol Studii si Cercetari de Endocrinologie = Stud. Cercet. Endocrinol. Studii Si Cercetari De Fizica = Stud Cercet Fiz Studii Si Cercetari De Fizica = Stud. Cercet. Fiz. Studii si cercetari de fiziologie = Stud Cercet Fiziol Studii si Cercetari de Fiziologie = Stud. Cercet. Fiziol. Studii si cercetari de inframicrobiologie = Stud Cercet Inframicrobiol Studii si Cercetari de Inframicrobiologie = Stud. Cercet. Inframicrobiol. Studii şi cercetări de istorie veche şi arheologie = StCercIstorV Studii şi Cercetări de Mecanică Aplicată = Stud. Cerc. Mec. Apl. Studii si cercetari de medicina interna = Stud Cercet Med Interna Studii si Cercetari de Medicina Interna = Stud. Cercet. Med. Interna Studii si cercetari de neurologie = Stud Cercet Neurol Studii si Cercetari de Neurologie = Stud. Cercet. Neurol. Studii şi cercetări de numismatică = StCercNum Studii si cercetari de virusologie = Stud Cercet Virusol Studii si Cercetari de Virusologie = Stud. Cercet. Virusol. Studii si Cercetari Economice=Stud. Cercet. Econ. Studii şi Cercetări Matematice = Stud. Cerc. Mat. Studi italiani di filologia classica = SIFC Studi italiani di filologia classica = StItFilCl Studi italiani di filologia classica = Studi Ital Filol Cl Studi italiani di linguistica teorica e applicata = SILTA Studi latini e italiani = StLatIt Studi magrebini = StMagreb Studi magrebini = StudMagr Studi medievali = StudMed Studi Medievali = Stud Mediev Studi Medievali = Stud. Mediev. Studime historike = Studime Hist Studi micenei ed egeo-anatolici = SMEA Studi micenei ed egeo-anatolici = SMEA Studi Musicali = Stud Music Studi Musicali = Stud. Music. Studi Piemontesi = Stud Piemontesi Studi Piemontesi = Stud. Piemontesi Studi romagnoli = StRomagn Studi romagnoli = StudRomagn Studi romani: rivista bimestrale dell'Istituto di Studi Romani = StudRom Studi romani = StRom Studi Romani = Stud Romani Studi Romani = Stud. Romani Studi salentini = StSalent Studi salentini = StudSal Studi sardi = SS Studi sardi = StSard Studi sassaresi = Studi Sassar Studi Sassaresi = Studi Sassar. Studi Secenteschi = Stud Secenteschi Studi Secenteschi = Stud. Secenteschi Studi storici: rivista trimestrale dell'Ist. Gramsci = StudStor Studi storici = Stud Stor Studi Storici = Stud Storici Studi Storici = Stud. Storici Studi storico-religiosi = StStorRel Studi sull’Oriente cristiano = StOrCr Studi tardoantichi = StTardoant Studi trentini di scienze storiche. Sezione seconda = StTrentStor Studium biblicum Franciscanum. Liber annuus = StBiFranc Studium Generale = Stud. Gen. (Berl.) Studium generale; Zeitschrift fur die Einheit der Wissenschaften im Zusammenhang ihrer Begriffsbildungen und Forschungsmethoden = Stud Gen (Berl) Studium Ovetense: revista del Centro sup. de EStudios eclesiásticos La Asunción = StudOv Studium = Studium Studi urbinati. B, Scienze umane. 3, Linguistica, letteratura, arte = StUrbin Studi urbinati di storia, filosofia e letteratura = StudUrb(B) Studi Urbinati Di Storia Filosofia E Letteratura = Stud Urbinati Ser B3 Studi Urbinati Di Storia Filosofia E Letteratura = Stud. Urbinati Ser. B3. Studi Urbinati Serie B3-linguistica Letteratura Arte = Stud Urbinati Ser B3 Studi Urbinati Serie B3-linguistica Letteratura Arte = Stud. Urbinati Ser. B3. Studi veneziani = Studi Veneziani Stud. med = Studenterraad Med Study Abroad: Perspectives and Experiences From Business Schools = Adv Int Mar Study Abroad: Perspectives and Experiences From Business Schools = Adv. Int. Mar. Study encounter = Study Encounter Study Europe: Challenges and Prospects for European Studies = Sch Arb Eur Study Europe: Challenges and Prospects for European Studies = Sch. Arb. Eur. Studying Collective Action = Sage Mod Studying Collective Action = Sage. Mod. Studying Differences Between Organizations: Comparative Approaches to Organizational Research = Res Sociol Organ-res Studying Differences Between Organizations: Comparative Approaches to Organizational Research = Res. Sociol. Organ-res. Studying Kinetics With Neutrons: Prospects for Times-resolved Neutron Scattering = Springer Series Soli Studying Kinetics With Neutrons: Prospects for Times-resolved Neutron Scattering = Springer. Series. Soli. Studying Kinetics With Neutrons: Prospects for Times-resolved Neutron Scattering = Springer Ser Solid-s Studying Kinetics With Neutrons: Prospects for Times-resolved Neutron Scattering = Springer. Ser. Solid-s. Studying Transcultural Literary History = Spect Literaturwiss Studying Transcultural Literary History = Spect. Literaturwiss. Studying Transcultural Literary History = Spectr Literaturwiss Studying Transcultural Literary History = Spectr. Literaturwiss. Studying Virtual Math Teams = Comput-supp Collab L Studying Virtual Math Teams = Comput-supp. Collab. L. Study of Ion Cluster Theory of Molten Silicates and Some Inorganic Substances = Mater Sci Found Study of Ion Cluster Theory of Molten Silicates and Some Inorganic Substances = Mater. Sci. Found. Study of Livestock Farming Systems in A Research and Development Framework = Eaap Public Study of Livestock Farming Systems in A Research and Development Framework = Eaap. Public. Study of Personal and Cultural Values: American, Japanese, and Vietnamese = Cult Mind Soc Study of Personal and Cultural Values: American, Japanese, and Vietnamese = Cult. Mind. Soc. Study of Public Management in Europe and The Us: A Comparative Analysis of National Distinctiveness = Routl Crit Stud Publ Study of Public Management in Europe and The Us: A Comparative Analysis of National Distinctiveness = Routl. Crit. Stud. Publ. Study of Time = Stud Time Study of Time = Stud. Time Study of Tourism: Anthropological and Sociological Beginnings = Tour Soc Sci Ser Study of Tourism: Anthropological and Sociological Beginnings = Tour. Soc. Sci. Ser. Study On Spatial Phenomena in Agriculture = Colloq Inra Study On Spatial Phenomena in Agriculture = Colloq. Inra. Study sessions - Canadian Catholic Historical Association. Canadian Catholic Historical Association = Study Sess Can Cathol Hist Assoc Stuttgarter Beiträge zur Naturkunde = Stuttg. Beitr. Nat.kd. Stuttgart Seminar in Cultural Studies = Stutt Sem Cultur St Stuttgart Seminar in Cultural Studies = Stutt. Sem. Cultur. St. St. Vincent's Hospital medical bulletin = ST Vincents Hosp Med Bull St. Vladimir's theological quarterly = St Vladmirs Theol Q Stygologia = Stygologia Styles of Continental Contraction = Geol Soc Am Spec Pap Styles of Continental Contraction = Geol. Soc. Am. Spec. Pap. Style = Style Stylus: cuadernos de filología = Stylus Subacute care = Subacute Care Subacute Care = Subacute Care Sub-acute Spongiform Encephalopathies = Curr T Vet Sub-acute Spongiform Encephalopathies = Curr. T. Vet. Subaltern Citizens and Their Histories: Investigations From India and The Usa = Inters Colon Postcol Subaltern Citizens and Their Histories: Investigations From India and The Usa = Inters. Colon. Postcol. Subauroral Ionosphere, Plasmasphere, Ring Current and Inner Magnetosphere System = Adv Space Res Subauroral Ionosphere, Plasmasphere, Ring Current and Inner Magnetosphere System = Adv. Space. Res. Subauroral Ionosphere, Plasmasphere, Ring Current and Inner Magnetosphere System = Adv Space Res-series Subauroral Ionosphere, Plasmasphere, Ring Current and Inner Magnetosphere System = Adv. Space. Res-series. Subcellular Basis of Contractile Failure = Dev Cardiovasc Med Subcellular Basis of Contractile Failure = Dev. Cardiovasc. Med. Sub-cellular biochemistry = Subcell Biochem Sub-cellular Biochemistry = Sub-cell Biochem Sub-cellular Biochemistry = Sub-cell. Biochem. Subcellular Biochemistry = Subcell Biochem Subcellular Biochemistry = Subcell. Biochem. Sub-Cellular Biochemistry=Subcell Biochem;; Sub-Cellular Biochemistry = Subcell. Biochem. Subcommissural Organ and Reissner's Fiber Complex = Prog Histochem Cytoc Subcommissural Organ and Reissner's Fiber Complex = Prog. Histochem. Cytoc. Subdivision Surfaces = Geom Comput Subdivision Surfaces = Geom. Comput. Subduction Zone Geodynamics = Front Earth Sci Subduction Zone Geodynamics = Front. Earth. Sci. Subj. Biochimica et Biophysica Acta, Specialized Section on Nucleic Acids and Related Subjects = Biochim. Biophys. Acta, Spec. Sect. Nucleic Acids Relat. Subjectivity and Suffering in American Culture: Possible Selves = Cult Mind Soc Subjectivity and Suffering in American Culture: Possible Selves = Cult. Mind. Soc. Subject Positions and Interfaces: The Case of European Portuguese = Stud Generat Gramm Subject Positions and Interfaces: The Case of European Portuguese = Stud. Generat. Gramm. Subjects Unto The Same King: Indians, English, and The Contest for Authority in Colonial New England = Early Am Stud Ser Subjects Unto The Same King: Indians, English, and The Contest for Authority in Colonial New England = Early. Am. Stud. Ser. Subjunctive in The Age of Prescriptivism: English and German Developments During The Eighteenth Century = Palgr Stud Lang Hist Subjunctive in The Age of Prescriptivism: English and German Developments During The Eighteenth Century = Palgr. Stud. Lang. Hist. Sublime = New Crit Idiom Sublime = New. Crit. Idiom. Submarine Landslides and Tsunamis = Nato Sci S Ss Iv Ear Submarine Landslides and Tsunamis = Nato. Sci. S. Ss. Iv. Ear. Submarine Mass Movements and Their Consequences = Adv Nat Tech Haz Res Submarine Mass Movements and Their Consequences = Adv. Nat. Tech. Haz. Res. Submarine Mass Movements and Their Consequences = Adv Nat Technol Haz Submarine Mass Movements and Their Consequences = Adv. Nat. Technol. Haz. Submarine Power Cables: Design, Installation, Repair, Environmental Aspects = Power Syst Submarine Power Cables: Design, Installation, Repair, Environmental Aspects = Power Syst. Submarine Slope Systems: Processes and Products = Geol Soc Spec Publ Submarine Slope Systems: Processes and Products = Geol. Soc. Spec. Publ. Submerged Cultural Resource Management = Pl S Underwater Submerged Cultural Resource Management = Pl. S. Underwater. Submicrometer Metallization : The Challenges, Opportunities, and Limitations = P Soc Photo-opt Ins Submicrometer Metallization : The Challenges, Opportunities, and Limitations = P. Soc. Photo-opt. Ins. Submicron Multiphase Materials = Mater Res Soc Symp P Submicron Multiphase Materials = Mater. Res. Soc. Symp. P. Submillimeter Astrophysics and Technology: A Symposium Honoring Thomas G. Phillips = Astr Soc P Submillimeter Astrophysics and Technology: A Symposium Honoring Thomas G. Phillips = Astr. Soc. P. Submillimetre Astronomy = Astrophys Space Sc L Submillimetre Astronomy = Astrophys. Space. Sc. L. Submolecular Glass Chemistry and Physics = P Soc Photo-opt Ins Submolecular Glass Chemistry and Physics = P. Soc. Photo-opt. Ins. Subnational Government: The French Experience = Fr Polit Soc Cult Subnational Government: The French Experience = Fr. Polit. Soc. Cult. Subnuclear Series = Subnucl Ser Subnuclear Series = Subnucl. Ser. Sub-saharan Economic Geology = Geol Soc Zi Sub-saharan Economic Geology = Geol. Soc. Zi. Subsea Control and Data Acquisition for Oil and Gas Production Systems = Adv Underwat Technol Subsea Control and Data Acquisition for Oil and Gas Production Systems = Adv. Underwat. Technol. Subseafloor Biosphere At Mid-ocean Ranges = Geoph Monog Series Subseafloor Biosphere At Mid-ocean Ranges = Geoph. Monog. Series. Subseafloor Biosphere At Mid-ocean Ranges = Geophys Monogr Ser Subseafloor Biosphere At Mid-ocean Ranges = Geophys. Monogr. Ser. Subsea International 93 = Adv Underwat Technol Subsea International 93 = Adv. Underwat. Technol. Subsidia medica = Subsid Med Subsidia Medica = Subsid. Med. Subsoil Compaction: Distribution, Processes and Consequences = Adv Geoecol Subsoil Compaction: Distribution, Processes and Consequences = Adv. Geoecol. Subspace, Latent Structure and Feature Selection = Lect Notes Comput Sc Subspace, Latent Structure and Feature Selection = Lect. Notes. Comput. Sc. Substance Abuse Assessment Interventions and Treatment = Subst Abus Assess In Substance Abuse Assessment Interventions and Treatment = Subst. Abus. Assess. In. Substance abuse : official publication of the Association for Medical Education and Research in Substance Abuse = Subst Abus Substance Abuse Recovery in College: Community Supported Abstinence = Adv Respons Adol Dev Substance Abuse Recovery in College: Community Supported Abstinence = Adv. Respons. Adol. Dev. Substance Abuse = Subst Abus Substance Abuse = Subst. Abus. Substance Abuse Treatment Prevention and Policy = Subst Abuse Treat Pr Substance Abuse Treatment Prevention and Policy = Subst. Abuse Treat. Pr. Substance abuse treatment, prevention, and policy = Subst Abuse Treat Prev Policy Substance and alcohol actions/misuse = Subst Alcohol Actions Misuse Substance and Alcohol Actions/Misuse = Subst. Alcohol Actions. Misuse Substance Detection Systems = P Soc Photo-opt Ins Substance Detection Systems = P. Soc. Photo-opt. Ins. Substance Identification Analytics = P Soc Photo-opt Ins Substance Identification Analytics = P. Soc. Photo-opt. Ins. Substance P and Related Peptides : Cellular and Molecular Physiology = Ann Ny Acad Sci Substance P and Related Peptides : Cellular and Molecular Physiology = Ann. Ny. Acad. Sci. Substances Marines A Visee Therapeutique = Oceanis-ser Doc Substances Marines A Visee Therapeutique = Oceanis-ser. Doc. Sub-stance = Sub-stance Substance Use and Misuse=Subst Use Misuse;; Substance Use and Misuse = Subst. Use Misuse Substance Use: Individual Behaviour, Social Interactions, Markets and Politics = Adv Health Substance Use: Individual Behaviour, Social Interactions, Markets and Politics = Adv. Health. Substance Use: Individual Behaviour, Social Interactions, Markets and Politics = Adv Health Econ Heal Substance Use: Individual Behaviour, Social Interactions, Markets and Politics = Adv. Health. Econ. Heal. Substance use & misuse = Subst Use Misuse Substance Use & Misuse = Subst Use Misuse Substance Use & Misuse = Subst. Use Misuse Substance Withdrawal Syndrome = Drug Trans Dist Int Substance Withdrawal Syndrome = Drug. Trans. Dist. Int. Substantivderivation in Der Urkundensprache Des 13 Jahrhunderts = Stud Linguist Ger Substantivderivation in Der Urkundensprache Des 13 Jahrhunderts = Stud. Linguist. Ger. Substantive Perspectivism: An Essay On Philosophical Concern With Truth = Synth Libr Substantive Perspectivism: An Essay On Philosophical Concern With Truth = Synth. Libr. Substitution Dynamical Systems: Spectral Analysis, Second Edition = Lect Notes Math Substitution Dynamical Systems: Spectral Analysis, Second Edition = Lect. Notes. Math. Substitutions in Dynamics, Arithmetics and Combinatorics = Lect Notes Math Substitutions in Dynamics, Arithmetics and Combinatorics = Lect. Notes. Math. Substrate Noise Coupling in Analog/rf Circuits = Artech Hse Microw Li Substrate Noise Coupling in Analog/rf Circuits = Artech. Hse. Microw. Li. Substrate Noise Coupling in Rfics = Analog Circ Sig Proc Substrate Noise Coupling in Rfics = Analog. Circ. Sig. Proc. Subsurface and Atmospheric Influences On Solar Activity = Astr Soc P Subsurface and Atmospheric Influences On Solar Activity = Astr. Soc. P. Subsurface and Surface Sensing Technologies and Applications Iii = Proc Spie Subsurface and Surface Sensing Technologies and Applications Iii = Proc. Spie. Subsurface and Surface Sensing Technologies and Applications Iii = P Soc Photo-opt Ins Subsurface and Surface Sensing Technologies and Applications Iii = P. Soc. Photo-opt. Ins. Subsurface Fluid-flow (ground-water and Vadose Zone) Modeling = Am Soc Test Mater Subsurface Fluid-flow (ground-water and Vadose Zone) Modeling = Am. Soc. Test. Mater. Subsurface Hydrology: Data Integration for Properties and Processes = Geophys Monogr Ser Subsurface Hydrology: Data Integration for Properties and Processes = Geophys. Monogr. Ser. Subsurface Reservoir Characterization From Outcrop Observations = Coll Col Se Subsurface Reservoir Characterization From Outcrop Observations = Coll. Col. Se. Subsurface Sediment Mobilization = Geol Soc Spec Publ Subsurface Sediment Mobilization = Geol. Soc. Spec. Publ. Subsurface Sensing Technologies and Applications Ii = Proc Spie Subsurface Sensing Technologies and Applications Ii = Proc. Spie. Subsurface Sensing Technologies and Applications Ii = P Soc Photo-opt Ins Subsurface Sensing Technologies and Applications Ii = P. Soc. Photo-opt. Ins. Subsurface Sensors and Applications = Proc Spie Subsurface Sensors and Applications = Proc. Spie. Subsurface Sensors and Applications = P Soc Photo-opt Ins Subsurface Sensors and Applications = P. Soc. Photo-opt. Ins. Subsurface Solute Transport Models and Case Histories: With Applications to Radionuclide Migration = Theor Appl Trans Por Subsurface Solute Transport Models and Case Histories: With Applications to Radionuclide Migration = Theor. Appl. Trans. Por. Subthalamic Nucleus, Pt I: Developmental, Cytology, Topography and Connections = Adv Anat Embryol Cel Subthalamic Nucleus, Pt I: Developmental, Cytology, Topography and Connections = Adv. Anat. Embryol. Cel. Subthalamic Nucleus, Pt Ii: Modelling and Simulation of Activity = Adv Anat Embryol Cel Subthalamic Nucleus, Pt Ii: Modelling and Simulation of Activity = Adv. Anat. Embryol. Cel. Sub-threshold Design for Ultra Low-power Systems = Integr Circuit Syst Sub-threshold Design for Ultra Low-power Systems = Integr. Circuit. Syst. Subtilisin Enzymes = Adv Exp Med Biol Subtilisin Enzymes = Adv. Exp. Med. Biol. Suburbia Re-examined = Contr Soc Suburbia Re-examined = Contr. Soc. Sub-versions: Trans-national Readings of Modern Irish Literature = Dqr Stud Lit Sub-versions: Trans-national Readings of Modern Irish Literature = Dqr. Stud. Lit. Subversive Self in Modern Chinese Literature = Comp Perspect Mod As Subversive Self in Modern Chinese Literature = Comp. Perspect. Mod. As. Subwavelength and Nanometer Diameter Optical Fibers = Adv Top Sci Tech Chi Subwavelength and Nanometer Diameter Optical Fibers = Adv. Top. Sci. Tech. Chi. Successes and Failures of Digital Libraries = Cl Lib Appl Successes and Failures of Digital Libraries = Cl. Lib. Appl. Success Factors of Corporate Spin-offs = Int Stud Entrep Success Factors of Corporate Spin-offs = Int. Stud. Entrep. Successful Case-based Reasoning Applications - 1 = Stud Comput Intell Successful Case-based Reasoning Applications - 1 = Stud. Comput. Intell. Successful Pneumatic Conveying = Imeche Sem Successful Pneumatic Conveying = Imeche. Sem. Successful Posterior Composites = Quintessent Dent Pra Successful Posterior Composites = Quintessent. Dent. Pra. Successful Principal Leadership in Times of Change: An International Perspective = Stud Educ Leadersh Successful Principal Leadership in Times of Change: An International Perspective = Stud. Educ. Leadersh. Successful Science and Engineering Teaching:theoretical and Learning Perspectives = Innov Chang Prof Edu Successful Science and Engineering Teaching:theoretical and Learning Perspectives = Innov. Chang. Prof. Edu. Successful Transformation? Restructuring of The Czech Automobile Industry = Contrib Econ Successful Transformation? Restructuring of The Czech Automobile Industry = Contrib. Econ. Successful Women in Chemistry: Corporate America's Contribution to Science = Acs Sym Ser Successful Women in Chemistry: Corporate America's Contribution to Science = Acs. Sym. Ser. Success in Evolutionary Computation = Stud Comput Intell Success in Evolutionary Computation = Stud. Comput. Intell. Success Stories in Satellite Systems = Libr Flight Success Stories in Satellite Systems = Libr. Flight. Suchasnist' = Sucasnist Suchttherapie = Suchttherapie Sucrerie Francaise = Sucr Franc Sucrerie Francaise = Sucr. Franc. Sucrose Metabolism, Biochemistry, Physiology and Molecular Biology = Cur Top Pl Sucrose Metabolism, Biochemistry, Physiology and Molecular Biology = Cur. Top. Pl. Sudan journal of population studies = Sudan J Popul Stud Sudan medical journal = Sudan Med J Sudan notes and records = Sudan Notes Rec Sudan Notes and Records = Sudan Notes Rec Sudan Notes and Records = Sudan Notes Rec. Sudarshan: Seven Science Quests = J Phys Conf Ser Sudarshan: Seven Science Quests = J. Phys. Conf. Ser. Suddeutsche Optikerzeitung = Suddtsch Optikerztg Sudebno-meditsinskaia ekspertiza = Sud Med Ekspert Sudebno-Meditsinskaia Ekspertiza=Sud Med Ekspert;; Sudebno-Meditsinskaia Ekspertiza = Sud. Med. Ekspert. Sudhoffs Archiv fur Geschichte der Medizin und der Naturwissenschaften = Sudhoffs Arch Gesch Med Naturwiss Sudhoffs Archiv = Sudhoffs Arch. Sudhoffs Archiv = Sudhoffs Arch Sudhoffs Archiv; Vierteljahrsschrift fur Geschichte der Medizin und der Naturwissenschaften, der Pharmazie und der Mathematik = Sudhoffs Arch. Vierteljahrsschr. Gesch. Med. Naturwiss. Pharm. Math. Sudhoffs Archiv; Zeitschrift fur Wissenschaftsgeschichte. Beihefte = Sudhoffs Arch Z Wissenschaftsgesch Beih Sudhoffs Archiv; Zeitschrift fur Wissenschaftsgeschichte. Beihefte = Sudhoffs Arch. Z. Wissenschaftsgesch. Beih. Sudhoffs Archiv; Zeitschrift Fur Wissenschaftsgeschichte. Beihefte=Sudhoffs Arch Z Wissenschaftsgesch Beih;; Sudhoffs Archiv; Zeitschrift fur Wissenschaftsgeschichte = Sudhoffs Arch. Z. Wissenschaftsgesch. Sudhoffs Archiv; Zeitschrift Fur Wissenschaftsgeschichte=Sudhoffs Arch Z Wissenschaftsgesch;; Sudhoffs Archiv: Zeitschrift für Wissenschaftsgeschichte = ZWG Sudost Europa : [Monatsschrift der Abteilung Gegenwartsforschung des Sudost-Instituts] = Sudosteuropa Sud-ouest Europeen = Sud-ouest Eur Sud-ouest Europeen = Sud-ouest Eur. Suffer The Little Children = Adv Educ Divers Comm Suffer The Little Children = Adv. Educ. Divers. Comm. Suffield technical note. Canada. Suffield Experimental Station, Ralston, Alta = Suffield Tech Note Can Suffield Exp Stn Ralston Alta Suffield technical paper. Canada. Suffield Experimental Station, Ralston, Alta = Suffield Tech Pap Can Suffield Exp Stn Ralston Alta Suffolk transnational law review = Suffolk Transnatl Law R Suffolk University law review = Suffolk Univ Law Rev Sufi-jewish Dialogue: Philosophy and Mysticism in Bahya Ibn Paquda's Duties of The Heart = Jew Cult Context Sufi-jewish Dialogue: Philosophy and Mysticism in Bahya Ibn Paquda's Duties of The Heart = Jew. Cult. Context. Sugaku Expositions = Sugaku Expositions Sugar-based Surfactants: Fundamentals and Applications = Surfactant Sci Ser Sugar-based Surfactants: Fundamentals and Applications = Surfactant. Sci. Ser. Sugar Beet Crops: Growth, Fertilization & Yield = Agr Issues Policies Sugar Beet Crops: Growth, Fertilization & Yield = Agr. Issues. Policies. Sugarcane Germplasm Conservation and Exchange = Aciar Proc Sugarcane Germplasm Conservation and Exchange = Aciar. Proc. Sugarcane Pathologists Newsletter = Sugarcane Pathol New Sugarcane Pathologists Newsletter = Sugarcane Pathol. New. Sugar Industry and Cotton Crops = Agr Issues Policies Sugar Industry and Cotton Crops = Agr. Issues. Policies. Sugar Journal = Sugar J Sugar Journal = Sugar J. Sugar: Refined Power in A Global Regime = Int Polit Econ Ser Sugar: Refined Power in A Global Regime = Int. Polit. Econ. Ser. Sugars in Nutrition = Nestle Nutr Works Se Sugars in Nutrition = Nestle. Nutr. Works. Se. Sugar Technology Reviews = Sugar Technol Rev Sugar Technology Reviews = Sugar Technol. Rev. Sugar Y Azucar = Sugar Azucar Suicidal Behavior in Alcohol and Drug Abuse and Dependence = Psychiat Theor Appl Suicidal Behavior in Alcohol and Drug Abuse and Dependence = Psychiat. Theor. Appl. Suicide Among Racial and Ethnic Minority Groups: Theory, Research, and Practice = Ser Death Dying Suicide Among Racial and Ethnic Minority Groups: Theory, Research, and Practice = Ser. Death. Dying. Suicide and Justice: A Chinese Perspective = Routl Contemp China Suicide and Justice: A Chinese Perspective = Routl. Contemp. China. Suicide and Life-threatening Behavior = Suicide Life-threat Suicide and Life-threatening Behavior = Suicide Life-threat. Suicide and Life-Threatening Behavior=Suicide Life Threat Behav;; Suicide and Life-Threatening Behavior = Suicide Life. Threat. Behav. Suicide and The Creative Arts = Psychol Res Prog Suicide and The Creative Arts = Psychol. Res. Prog. Suicide: Biopsychosocial Approaches = Int Congr Ser Suicide: Biopsychosocial Approaches = Int. Congr. Ser. Suicide & life-threatening behavior = Suicide Life Threat Behav Suicide = Suicide Suid-afrikaanse Historiese Joernaal-south African Historical Journal = S Afr Hist J Suid-afrikaanse Historiese Joernaal-south African Historical Journal = S. Afr. Hist. J. Suid-Afrikaanse Tydskrif vir Ekonomiese en Bestuurswetenskappe=Suid-Afrikaanse Tydskr. Ekon. Bestuurswetenskappe Suites De Sturm, Indice De Maslov Et Periodicite De Bott = Prog Math Suites De Sturm, Indice De Maslov Et Periodicite De Bott = Prog. Math. Sukupolvien Ketju: Suuret Ikaluokat Ja Sukupolvien Valinen Vuorovaikutus Suomessa = Stud Soc Secur Healt Sukupolvien Ketju: Suuret Ikaluokat Ja Sukupolvien Valinen Vuorovaikutus Suomessa = Stud. Soc. Secur. Healt. Sulfated Glycoconjugates in Amelogenesis = Prog Histochem Cytoc Sulfated Glycoconjugates in Amelogenesis = Prog. Histochem. Cytoc. Sulfate Minerals - Crystallography, Geochemistry and Environmental Significance = Rev Mineral Geochem Sulfate Minerals - Crystallography, Geochemistry and Environmental Significance = Rev. Mineral. Geochem. Sulfide Mineralolgy and Geochemistry = Rev Mineral Geochem Sulfide Mineralolgy and Geochemistry = Rev. Mineral. Geochem. Sulfur-centered Reactive Intermediates in Chemistry and Biology = Nato Adv Sci I A-lif Sulfur-centered Reactive Intermediates in Chemistry and Biology = Nato. Adv. Sci. I. A-lif. Sulfur Compounds in Foods = Acs Sym Ser Sulfur Compounds in Foods = Acs. Sym. Ser. Sulfur Fertilizer Policy for Lowland and Upland Rice Cropping Systems in Indonesia = Aciar Proc Sulfur Fertilizer Policy for Lowland and Upland Rice Cropping Systems in Indonesia = Aciar. Proc. Sulfur in Magmas and Melts: Its Importance for Natural and Technical Processes = Rev Mineral Geochem Sulfur in Magmas and Melts: Its Importance for Natural and Technical Processes = Rev. Mineral. Geochem. Sulfur Letters = Sulfur Lett. Sulfur-mediated Rearrangements Ii = Top Curr Chem Sulfur-mediated Rearrangements Ii = Top. Curr. Chem. Sulfur-mediated Rearrangements I = Top Curr Chem Sulfur-mediated Rearrangements I = Top. Curr. Chem. Sulphate-reducing Bacteria in Biological Treatment Wastewaters = Air Water Soil Sci T Sulphate-reducing Bacteria in Biological Treatment Wastewaters = Air. Water. Soil. Sci. T. Sulphur Dioxide and Nitrogen Oxides in Industrial Waste Gases : Emission, Legislation and Abatement = Euro Ch Env Sulphur Dioxide and Nitrogen Oxides in Industrial Waste Gases : Emission, Legislation and Abatement = Euro. Ch. Env. Sumarski List = Sumar List Sumarski List = Sumar. List Sumatra: Geology, Resources and Tectonic Evolution = Geol Soc Mem Sumatra: Geology, Resources and Tectonic Evolution = Geol. Soc. Mem. Sumer. A Journal of Archaeology (and History) in Iraq = Sumer Sumitomo Light Metal Technical Reports = Sumitomo Light M Tec Sumitomo Light Metal Technical Reports = Sumitomo Light M. Tec. Sumitomo Search = Sumitomo Search Summary of Flow Modulation and Fluid-structure Interaction Findings = Notes Numer Fluid Me Summary of Flow Modulation and Fluid-structure Interaction Findings = Notes. Numer. Fluid. Me. Summary of Proceedings: Annual Conference - American Theological Library Association = Sum Proc Ann C Atla Summary of Proceedings: Annual Conference - American Theological Library Association = Sum. Proc. Ann. C. Atla. Summary of Proceedings - Forty-ninth Annual Conference of The American Theological Library Association = Sum Proc Ann C Atla Summary of Proceedings - Forty-ninth Annual Conference of The American Theological Library Association = Sum. Proc. Ann. C. Atla. Summer School On Astroparticle Physics and Cosmology = Ictp Lect Notes Summer School On Astroparticle Physics and Cosmology = Ictp. Lect. Notes. Summer Solstice 2009 International Conference On Discrete Models of Complex Systems = Acta Phys Pol B Pr S Summer Solstice 2009 International Conference On Discrete Models of Complex Systems = Acta. Phys. Pol. B. Pr. S. Suna & Inan Kirac Research Institute On Mediterranean Civilizations Monography Series = Suna Inan Kirac Res Suna & Inan Kirac Research Institute On Mediterranean Civilizations Monography Series = Suna Inan Kirac Res. Sun : A Laboratory for Astrophysics = Nato Adv Sci I C-mat Sun : A Laboratory for Astrophysics = Nato. Adv. Sci. I. C-mat. Sun and Its Atmosphere = Adv Space Res Sun and Its Atmosphere = Adv. Space. Res. Sun and Its Atmosphere = Adv Space Res-series Sun and Its Atmosphere = Adv. Space. Res-series. Sun and Its Role in The Heliosphere = Adv Space Res Sun and Its Role in The Heliosphere = Adv. Space. Res. Sun and Its Role in The Heliosphere = Adv Space Res-series Sun and Its Role in The Heliosphere = Adv. Space. Res-series. Sun and Similar Stars/cosmic Ray Spectra and Composition = Adv Space Res Sun and Similar Stars/cosmic Ray Spectra and Composition = Adv. Space. Res. Sun and Similar Stars/cosmic Ray Spectra and Composition = Adv Space Res-series Sun and Similar Stars/cosmic Ray Spectra and Composition = Adv. Space. Res-series. Sun (Baltimore, Md. : 1837) = Sun Sunday times (London, England : 1931) = Sunday Times Sun-earth Plasma Connections = Geoph Monog Series Sun-earth Plasma Connections = Geoph. Monog. Series. Sun-earth Plasma Connections = Geophys Monogr Ser Sun-earth Plasma Connections = Geophys. Monogr. Ser. Sungkyun Journal of East Asian Studies = Sungkyun J East Asia Sungkyun Journal of East Asian Studies = Sungkyun J. East Asia. Sunlight, Vitamin D and Skin Cancer = Adv Exp Med Biol Sunlight, Vitamin D and Skin Cancer = Adv. Exp. Med. Biol. Sun Recorded Through History = Astrophys Space Sc L Sun Recorded Through History = Astrophys. Space. Sc. L. Sunspots : Theory and Observations = Nato Adv Sci I C-mat Sunspots : Theory and Observations = Nato. Adv. Sci. I. C-mat. Sun's Surface and Subsurface: Investigating Shape and Irradiance = Lect Notes Phys Sun's Surface and Subsurface: Investigating Shape and Irradiance = Lect. Notes. Phys. Sun, The Solar Wind, and The Heliosphere = Iaga Spec Sopron Sun, The Solar Wind, and The Heliosphere = Iaga. Spec. Sopron. Sun, The Stars, The Universe, and General Relativity = Aip Conf Proc Sun, The Stars, The Universe, and General Relativity = Aip. Conf. Proc. Sun Tracks: An American Indian Literature Series = Sun Tracks Sun Tracks: An American Indian Literature Series = Sun Tracks. SUNY Series in Ancient Greek Philosophy = SUNY Ser. Anc. Greek Philos. Suny Series in Critical Issues in Criminal Justice = Suny C Crit Suny Series in Critical Issues in Criminal Justice = Suny C. Crit. Suny Series in Feminist Criticism and Theory = Suny S Fem Crit Suny Series in Feminist Criticism and Theory = Suny S. Fem. Crit. Suny Series in Hegelian Studies = Suny Se Heg Suny Series in Hegelian Studies = Suny Se. Heg. Suny Series in Israel Studies = Suny S Irs St Suny Series in Israel Studies = Suny S. Irs. St. Suny Series in Jewish Philosophy = Suny Jew Ph Suny Series in Jewish Philosophy = Suny Jew. Ph. Suny Series in Judaica: Hermeneutics, Mysticism, and Religion = Suny S Jud Her Mys R Suny Series in Judaica: Hermeneutics, Mysticism, and Religion = Suny S. Jud. Her. Mys. R. Suny Series in Linguistics = Suny S Ling Suny Series in Linguistics = Suny S. Ling. SUNY Series in Logic and Language = SUNY Ser. Logic Lang. Suny Series in Racial Social and Political Theory = Suny Rad S Suny Series in Racial Social and Political Theory = Suny Rad. S. Suny Series in Radical Social and Political Theory = Suny Rad S Suny Series in Radical Social and Political Theory = Suny Rad. S. SUNY Series in Science, Technology, and Society = SUNY Ser. Sci. Tech. Soc. Suny Series in The Social and Economic History of The Middle East = Suny S Soci Econ His Suny Series in The Social and Economic History of The Middle East = Suny S. Soci. Econ. His. Suny Series in Urban Public Policy = Suny S Urb Suny Series in Urban Public Policy = Suny S. Urb. SUNY Series, Reform in Mathematics Education = SUNY Ser. Reform Math. Educ. Suny Series, The Margins of Literature = Suny Ser Margins Lit Suny Series, The Margins of Literature = Suny Ser. Margins Lit. Suomalainen Tiedeakatemia toimituksia. Sar. A.4: Biologica = Ann Acad Sci Fenn [Biol] Suomalaisen Energiateollisuuden Kilpailukyky Ilmastopolitiikan Muuttuessa = Vtt Res Notes Suomalaisen Energiateollisuuden Kilpailukyky Ilmastopolitiikan Muuttuessa = Vtt. Res. Notes. Suomalaisen Tiedeakatemian toimituksia. Sar. A.5, Medica-anthropologica = Suom Tiedeakat Toim A5 Medica Anthropol Suomalaisen Tiedeakatemian Toimituksia: Sarja Humaniora = Suomal Tied Toim Sar Suomalaisen Tiedeakatemian Toimituksia: Sarja Humaniora = Suomal. Tied. Toim. Sar. Suomalaisen Tiedeakatemian Toimituksia Series Humaniora = Suomal Tied Toim Sar Suomalaisen Tiedeakatemian Toimituksia Series Humaniora = Suomal. Tied. Toim. Sar. Suomalaisen Tiedeakatemian Toimituksia Series Humaniora = Suom Tiedeakat Toim Suomalaisen Tiedeakatemian Toimituksia Series Humaniora = Suom. Tiedeakat. Toim. Suomen apteekkarilehti. Finlands apotekartidning = Suom Apteenkkaril Suomen Hammaslaakarilehti = Suom. Hammaslaakarilehti Suomen Hammaslaakariseuran Toimituksia = Suom Hammaslaak Toim Suomen Hammaslaakariseuran Toimituksia = Suom. Hammaslaak. Toim. Suomen Kemistilehti = Suom Kemistil Suomen Kemistilehti = Suom. Kemistil. Suomen laakarilehti. Finlands lakartidning = Suom Laakaril Suomen Laakarilehti = Suom. Laakaril. Suomen Naishammaslaakarit Ryhma Julkaisu = Suom. Naishammaslaak. Julk. Superabsorbent Polymers = Acs Sym Ser Superabsorbent Polymers = Acs. Sym. Ser. Supercentenarians = Demogr Res Monogr Supercentenarians = Demogr. Res. Monogr. Supercomputer Algorithms for Reactivity, Dynamics and Kinetics of Small Molecules = Nato Adv Sci I C-mat Supercomputer Algorithms for Reactivity, Dynamics and Kinetics of Small Molecules = Nato. Adv. Sci. I. C-mat. Supercomputer = Supercomputer Supercomputing '93, Proceedings = Supercomp Proc Supercomputing '93, Proceedings = Supercomp. Proc. Supercomputing '94, Proceedings = Supercomp Proc Supercomputing '94, Proceedings = Supercomp. Proc. Supercomputing '95, Proceedings, Vols 1 and 2 = Supercomp Proc Supercomputing '95, Proceedings, Vols 1 and 2 = Supercomp. Proc. Supercomputing / = Nato Adv Sci I F-com Supercomputing / = Nato. Adv. Sci. I. F-com. Supercomputing Proceedings = Supercomp Proc Supercomputing Proceedings = Supercomp. Proc. Superconducting and Related Oxides: Physics and Nanoengineering Iii = Proc Spie Superconducting and Related Oxides: Physics and Nanoengineering Iii = Proc. Spie. Superconducting and Related Oxides: Physics and Nanoengineering Iii = P Soc Photo-opt Ins Superconducting and Related Oxides: Physics and Nanoengineering Iii = P. Soc. Photo-opt. Ins. Superconducting and Related Oxides: Physics and Nanoengineering Iv = Proc Spie Superconducting and Related Oxides: Physics and Nanoengineering Iv = Proc. Spie. Superconducting and Related Oxides: Physics and Nanoengineering Iv = P Soc Photo-opt Ins Superconducting and Related Oxides: Physics and Nanoengineering Iv = P. Soc. Photo-opt. Ins. Superconducting and Related Oxides: Physics and Nanoengineering V = P Soc Photo-opt Ins Superconducting and Related Oxides: Physics and Nanoengineering V = P. Soc. Photo-opt. Ins. Superconducting Ceramics = Progr High Temp Supe Superconducting Ceramics = Progr. High. Temp. Supe. Superconducting Devices and Their Applications = Springer Proc Phys Superconducting Devices and Their Applications = Springer. Proc. Phys. Superconducting Materials for High Energy Colliders = Sci Cult Ser Phys Superconducting Materials for High Energy Colliders = Sci. Cult. Ser. Phys. Superconducting Superlattices and Multilayers = P Soc Photo-opt Ins Superconducting Superlattices and Multilayers = P. Soc. Photo-opt. Ins. Superconducting Superlattices Ii: Native and Artificial = P Soc Photo-opt Ins Superconducting Superlattices Ii: Native and Artificial = P. Soc. Photo-opt. Ins. Superconductive Devices and Circuits = P Soc Photo-opt Ins Superconductive Devices and Circuits = P. Soc. Photo-opt. Ins. Superconductivity and Its Applications = Aip Conf Proc Superconductivity and Its Applications = Aip. Conf. Proc. Superconductivity and Its Applications / = Aip Conf Proc Superconductivity and Its Applications / = Aip. Conf. Proc. Superconductivity and Its Applications // = Aip Conf Proc Superconductivity and Its Applications // = Aip. Conf. Proc. Superconductivity and Superconducting Wires = Horiz World Phys Ser Superconductivity and Superconducting Wires = Horiz. World. Phys. Ser. Superconductivity Applications for Infrared and Microwave Devices Ii = P Soc Photo-opt Ins Superconductivity Applications for Infrared and Microwave Devices Ii = P. Soc. Photo-opt. Ins. Superconductivity Applications for Infrared and Microwave Devices = P Soc Photo-opt Ins Superconductivity Applications for Infrared and Microwave Devices = P. Soc. Photo-opt. Ins. Superconductivity in Complex Systems = Struct Bond Superconductivity in Complex Systems = Struct. Bond. Superconductivity = Progr High Temp Supe Superconductivity = Progr. High. Temp. Supe. Superconductor Science and Technology = Supercond. Sci. Technol. Superconductor Science & Technology = Supercond Sci Tech Superconductor Science & Technology = Supercond. Sci. Tech. Superconductor Science & Technology = Supercond. Sci. Technol. Superconductor/semiconductor Junctions = Springer Trac Mod Ph Superconductor/semiconductor Junctions = Springer. Trac. Mod. Ph. Superconductor/semiconductor Junctions = Springer Tr Mod Phys Superconductor/semiconductor Junctions = Springer. Tr. Mod. Phys. Supercooled Liquids = Acs Sym Ser Supercooled Liquids = Acs. Sym. Ser. Supercooled Liquids, Glass Transition and Bulk Metallic Glasses = Mater Res Soc Symp P Supercooled Liquids, Glass Transition and Bulk Metallic Glasses = Mater. Res. Soc. Symp. P. Supercritical Carbon Dioxide: Separations and Processes = Acs Sym Ser Supercritical Carbon Dioxide: Separations and Processes = Acs. Sym. Ser. Supercritical Fluid Engineering Science = Acs Sym Ser Supercritical Fluid Engineering Science = Acs. Sym. Ser. Supercritical Fluids = Acs Sym Ser Supercritical Fluids = Acs. Sym. Ser. Supercritical Fluids = Condens Matter Res T Supercritical Fluids = Condens. Matter. Res. T. Supercritical Fluids = Nato Adv Sci I E-app Supercritical Fluids = Nato. Adv. Sci. I. E-app. Supercritical Fluids = Nato Adv Sci Inst Se Supercritical Fluids = Nato. Adv. Sci. Inst. Se. Supercritical Fluid Technology = Acs Sym Ser Supercritical Fluid Technology = Acs. Sym. Ser. Super-deep Continental Drilling and Deep Geophysical Sounding = Exp Deep Co Super-deep Continental Drilling and Deep Geophysical Sounding = Exp. Deep Co. Superdense Qcd Matter and Compact Stars = Nato Sci Ser Ii-math Superdense Qcd Matter and Compact Stars = Nato. Sci. Ser. Ii-math. Superdense Qcd Matter and Compact Stars = Nato Sci Ser Ii Math Superdense Qcd Matter and Compact Stars = Nato. Sci. Ser. Ii. Math. Superfamily of Ras-related Genes = Nato Adv Sci I A-lif Superfamily of Ras-related Genes = Nato. Adv. Sci. I. A-lif. Superfund Risk Assessment in Soil Contamination Studies: 2nd Vol = Am Soc Test Mater Superfund Risk Assessment in Soil Contamination Studies: 2nd Vol = Am. Soc. Test. Mater. Superfund Risk Assessment in Soil Contamination Studies = Am Soc Test Mater Superfund Risk Assessment in Soil Contamination Studies = Am. Soc. Test. Mater. Superfund Risk Assessment in Soil Contamination Studies: Third Volume = Am Soc Test Mater Superfund Risk Assessment in Soil Contamination Studies: Third Volume = Am. Soc. Test. Mater. Superintegrability in Classical and Quantum Systems = Crm Proc & Lect Note Superintegrability in Classical and Quantum Systems = Crm. Proc. &. Lect. Note. Super-intense Laser-atom Physics = Nato Adv Sci Inst Se Super-intense Laser-atom Physics = Nato. Adv. Sci. Inst. Se. Super-intense Laser-atom Physics = Nato Sci Ser Ii-math Super-intense Laser-atom Physics = Nato. Sci. Ser. Ii-math. Super-intense Laser-atom Physics = Nato Sci Ser Ii Math Super-intense Laser-atom Physics = Nato. Sci. Ser. Ii. Math. Superintense Laser Fields : Generation, Interaction With Matter, and X-ray Sources = P Soc Photo-opt Ins Superintense Laser Fields : Generation, Interaction With Matter, and X-ray Sources = P. Soc. Photo-opt. Ins. Superintense Laser Fields - Laser Optics '95 and Icono '95 = P Soc Photo-opt Ins Superintense Laser Fields - Laser Optics '95 and Icono '95 = P. Soc. Photo-opt. Ins. Superlattices and Microstructures = Superlattice Microst Superlattices and Microstructures = Superlattice. Microst. Superlattices and Microstructures = Superlattices Microstruct. Supermagnets, Hard Magnetic Materials = Nato Adv Sci I C-mat Supermagnets, Hard Magnetic Materials = Nato. Adv. Sci. I. C-mat. Supermen1: Pituitary, Parathyroid and Pancreas = Adv Exp Med Biol Supermen1: Pituitary, Parathyroid and Pancreas = Adv. Exp. Med. Biol. Supermolecular Dye Chemistry = Top Curr Chem Supermolecular Dye Chemistry = Top. Curr. Chem. Supernova 1987a: 20 Years After = Aip Conf Proc Supernova 1987a: 20 Years After = Aip. Conf. Proc. Supernovae and Gamma-ray Bursts = Space Tel S Supernovae and Gamma-ray Bursts = Space. Tel. S. Supernovae and Supernova Remnants = Iau Colloq Supernovae and Supernova Remnants = Iau. Colloq. Supernovae / = Jer Win Sch Supernovae / = Jer. Win. Sch. Superoxide Dismutase = Method Enzymol Superoxide Dismutase = Method. Enzymol. Superpave = Transport Res Rec Superpave = Transport. Res. Rec. Superplasticity-current Status and Future Potential = Mater Res Soc Symp P Superplasticity-current Status and Future Potential = Mater. Res. Soc. Symp. P. Superplasticity in Advanced Materials, Icsam-2000 = Mater Sci Forum Superplasticity in Advanced Materials, Icsam-2000 = Mater. Sci. Forum. Superplasticity in Advanced Materials - Icsam-94 = Mater Sci Forum Superplasticity in Advanced Materials - Icsam-94 = Mater. Sci. Forum. Superplasticity in Advanced Materials - Icsam-97 = Mater Sci Forum Superplasticity in Advanced Materials - Icsam-97 = Mater. Sci. Forum. Superplasticity in Advanced Materials = Key Eng Mat Superplasticity in Advanced Materials = Key. Eng. Mat. Superplasticity in Advanced Materials = Mater Sci Forum Superplasticity in Advanced Materials = Mater. Sci. Forum. Superplasticity in Metals, Ceramics, and Intermetallics = Mater Res Soc Symp P Superplasticity in Metals, Ceramics, and Intermetallics = Mater. Res. Soc. Symp. P. Superstring Theory in The 21st Century = Horiz World Phys Ser Superstring Theory in The 21st Century = Horiz. World. Phys. Ser. Superstrong Fields in Plasmas = Aip Conf Proc Superstrong Fields in Plasmas = Aip. Conf. Proc. Superstrong Laser Fields and Applications - Laser Optics '98 = P Soc Photo-opt Ins Superstrong Laser Fields and Applications - Laser Optics '98 = P. Soc. Photo-opt. Ins. Supersymmetric Mechanics, Vol 3 = Lect Notes Phys Supersymmetric Mechanics, Vol 3 = Lect. Notes. Phys. Supersymmetries and Quantum Symmetries = Lect Notes Phys Supersymmetries and Quantum Symmetries = Lect. Notes. Phys. Supersymmetry and The Unification of Fundamental Interactions = Aip Conf Proc Supersymmetry and The Unification of Fundamental Interactions = Aip. Conf. Proc. Supervisor nurse = Superv Nurse Supervisor Nurse = Superv. Nurse Supervisory Control of Concurrent Systems = Syst Control-found A Supervisory Control of Concurrent Systems = Syst. Control-found. A. Supervisory management = Superv Manage Supervisory Management = Superv. Manage. Superworld Iii = Subnucl Ser Superworld Iii = Subnucl. Ser. Supplementary Cementing Materials = Eng Mater Supplementary Cementing Materials = Eng. Mater. Supplementary Sensorimotor Area = Adv Neurol Supplementary Sensorimotor Area = Adv. Neurol. Supplementi di Tumori = Suppl. Tumori Supplement of The Progress of Theoretical Physics = Prog Theor Phys Supp Supplement of The Progress of Theoretical Physics = Prog. Theor. Phys. Supp. Supplement of The Progress of Theoretical Physics = Sup Prog Theor Phys Supplement of The Progress of Theoretical Physics = Sup. Prog. Theor. Phys. Supplements to Clinical Neurophysiology = Suppl Clin Neurophys Supplements to Clinical Neurophysiology = Suppl. Clin. Neurophys. Supplements to Clinical neurophysiology = Suppl Clin Neurophysiol Supplements to Clinical Neurophysiology = Suppl. Clin. Neurophysiol. Supplements to Novum Testamentum = Supp Novum Testament Supplements to Novum Testamentum = Supp. Novum Testament. Supplements to Small Computers in Libraries = Suppl Sm C Supplements to Small Computers in Libraries = Suppl. Sm. C. Supplements to The Journal for The Study of Judaism = Supp J Stud Judaism Supplements to The Journal for The Study of Judaism = Supp. J. Stud. Judaism Supplements to Vetus Testamentum = Supp Vetus Testament Supplements to Vetus Testamentum = Supp. Vetus Testament. Supplements to Vigiliae Christianae = S Vigiliae Christi Supplements to Vigiliae Christianae = S. Vigiliae Christi. Supplement to Editio = Beih Editio Supplement to Editio = Beih. Editio Supplement to International journal of gynecology and obstetrics = Suppl Int J Gynecol Obstet Supplement to International Journal of Gynecology and Obstetrics = Suppl. Int. J. Gynecol. Obstet. Supplement to the European Journal Neuroscience = Suppl. Eur. J. Neurosci. Supplement To The European Journal Neuroscience=Suppl Eur J Neurosci;; Supplement ... to the European journal of neuroscience = Suppl Eur J Neurosci Supplement ... to the journal Medical oncology and tumor pharmacotherapy = Suppl J Med Oncol Tumor Pharmacother Supplement ... To the Journal Medical Oncology and Tumor Pharmacotherapy = Suppl. J. Med. Oncol. Tumor Pharmacother. Supplement ... to the Public health reports = Suppl Public Health Rep Supplementum ... ad Thrombosis and haemostasis = Suppl Thromb Haemost Supplementum ad Thrombosis and Haemostasis = Suppl. Thromb. Haemost. Supplementum epigraphicum Graecum = SEG Supply Chain Analysis: A Handbook On The Interaction of Information, System and Optimization = Int Ser Oper Res Man Supply Chain Analysis: A Handbook On The Interaction of Information, System and Optimization = Int. Ser. Oper. Res. Man. Supply Chain and Logistics in National, International and Governmental Environment - Concepts and Models = Contrib Manag Sci Supply Chain and Logistics in National, International and Governmental Environment - Concepts and Models = Contrib. Manag. Sci. Supply Chain Finance Solutions: Relevance - Propositions - Market Value = Springerbrief Bus Supply Chain Finance Solutions: Relevance - Propositions - Market Value = Springerbrief. Bus. Supply Chain Games: Operations Management and Risk Valuation = Int Ser Oper Res Man Supply Chain Games: Operations Management and Risk Valuation = Int. Ser. Oper. Res. Man. Supply Chain Integration Series = Supply Chain Integr Supply Chain Integration Series = Supply Chain Integr. Supply Chain Logistics Program for Warehouse Management = Resource Manag-crc Supply Chain Logistics Program for Warehouse Management = Resource. Manag-crc. Supply Chain Management-an International Journal = Supply Chain Manag Supply Chain Management-an International Journal = Supply Chain Manag. Supply Chain Management Based On Sap Systems: Architecture and Planning Processes = Sap Excell Supply Chain Management Based On Sap Systems: Architecture and Planning Processes = Sap Excell. Supply Chain Optimisation: Product/process Design, Facility Location and Flow Control = Appl Optim Supply Chain Optimisation: Product/process Design, Facility Location and Flow Control = Appl. Optim. Supply Chain Risk: A Handbook of Assessment, Management, and Performance = Int Ser Oper Res Man Supply Chain Risk: A Handbook of Assessment, Management, and Performance = Int. Ser. Oper. Res. Man. Supply Market Intelligence: A Managerial Handbook for Building Sourcing Strategies = Resource Manag-crc Supply Market Intelligence: A Managerial Handbook for Building Sourcing Strategies = Resource. Manag-crc. Supported Catalysts and Their Applications = Roy Soc Ch Supported Catalysts and Their Applications = Roy. Soc. Ch. Support for Victims of Crime in Asia = Rtldg Law Asia Support for Victims of Crime in Asia = Rtldg. Law. Asia Supporting Learning Flow Through Integrative Technologies = Fr Art Int Supporting Learning Flow Through Integrative Technologies = Fr. Art. Int. Supporting Learning Flow Through Integrative Technologies = Front Artif Intel Ap Supporting Learning Flow Through Integrative Technologies = Front. Artif. Intel. Ap. Supporting Multilingual Learners in The Early Years: Many Languages - Many Children = Nurs World Routledge Supporting Multilingual Learners in The Early Years: Many Languages - Many Children = Nurs. World. Routledge. Supporting People With Dementia Using Pervasive Health Technologies = Adv Inform Knowl Pro Supporting People With Dementia Using Pervasive Health Technologies = Adv. Inform. Knowl. Pro. Supporting Real Time Decision-making: The Role of Context in Decision Support On The Move = Ann Inform Syst Supporting Real Time Decision-making: The Role of Context in Decision Support On The Move = Ann. Inform. Syst. Supporting The Development of R&d and The Innovation Potential of Post-socialist Countries = Nato Asi S 4 Sci Tec Supporting The Development of R&d and The Innovation Potential of Post-socialist Countries = Nato. Asi. S. 4. Sci. Tec. Supporting Womens Career Advancement: Challenges and Opportunities = New Horiz Manag Supporting Womens Career Advancement: Challenges and Opportunities = New. Horiz. Manag. Supporting Workplace Learning: Towards Evidence-based Practice = Prof Pract-based Lea Supporting Workplace Learning: Towards Evidence-based Practice = Prof. Pract-based. Lea. Supportive care in cancer : official journal of the Multinational Association of Supportive Care in Cancer = Support Care Cancer Supportive Care in Cancer Patients Ii = Recent Res Cancer Supportive Care in Cancer Patients Ii = Recent. Res. Cancer Supportive Care in Cancer = Support Care Cancer Supportive Care in Cancer = Support. Care Cancer Supportive Care In Cancer=Support Care Cancer;; Support Vector Machines for Pattern Classification, Second Edition = Adv Pattern Recognit Support Vector Machines for Pattern Classification, Second Edition = Adv. Pattern Recognit. Support Vector Machines = Inform Sci Stat Support Vector Machines = Inform. Sci. Stat. Suppression and Regulation of Immune Responses: Methods and Protocols = Methods Mol Biol Suppression and Regulation of Immune Responses: Methods and Protocols = Methods Mol. Biol. Supramolecular Architecture = Acs Sym Ser Supramolecular Architecture = Acs. Sym. Ser. Supramolecular Assembly Via Hydrogen Bonds Ii = Struct Bond Supramolecular Assembly Via Hydrogen Bonds Ii = Struct. Bond. Supramolecular Assembly Via Hydrogen Bonds I = Struct Bond Supramolecular Assembly Via Hydrogen Bonds I = Struct. Bond. Supramolecular Chemistry Ii - Host Design and Molecular Recognition = Top Curr Chem Supramolecular Chemistry Ii - Host Design and Molecular Recognition = Top. Curr. Chem. Supramolecular Chemistry = Nato Adv Sci I C-mat Supramolecular Chemistry = Nato. Adv. Sci. I. C-mat. Supramolecular Chemistry = Supramol Chem Supramolecular Chemistry = Supramol. Chem. Supramolecular Chirality = Top Curr Chem Supramolecular Chirality = Top. Curr. Chem. Supramolecular Photosensitive and Electroactive Materials = Supramol. Photosensit. Electroact. Mater. Supramolecular Polymers Polymeric Betains Oligomers = Adv Polym Sci Supramolecular Polymers Polymeric Betains Oligomers = Adv. Polym. Sci. Supramolecular Science = Supramol Sci Supramolecular Science = Supramol. Sci. Supramolecular Science: Where It Is and Where It Is Going = Nato Adv Sci I C-mat Supramolecular Science: Where It Is and Where It Is Going = Nato. Adv. Sci. I. C-mat. Supramolecular Stereochemistry = Nato Adv Sci Inst Se Supramolecular Stereochemistry = Nato. Adv. Sci. Inst. Se. Supreme Court Economic Review=Supreme Court Econ. Rev. Supreme Court Economic Review, Vol 5 = Supreme Court Rev Supreme Court Economic Review, Vol 5 = Supreme Court Rev. Supreme Court Review = Supreme Court Rev Supreme Court Review = Supreme Court Rev. Surface Analysis Techniques and Applications = Roy Soc Ch Surface Analysis Techniques and Applications = Roy. Soc. Ch. Surface and Coatings Technology = Surf. Coat. Technol. Surface and Colloid Science = Prog Coll Pol Sci S Surface and Colloid Science = Prog. Coll. Pol. Sci. S. Surface and Colloid Science = Surf. Colloid Sci. Surface and Interface Analysis: Electrochemists Toolbox = Springer Ser Chem Ph Surface and Interface Analysis: Electrochemists Toolbox = Springer. Ser. Chem. Ph. Surface and Interface Analysis of Microelectronic Materials Processing and Growth = P Soc Photo-opt Ins Surface and Interface Analysis of Microelectronic Materials Processing and Growth = P. Soc. Photo-opt. Ins. Surface and Interface Analysis = Surf Interface Anal Surface and Interface Analysis = Surf. Interface Anal. Surface and Interfacial Forces - From Fundamentals to Applications = Prog Coll Pol Sci S Surface and Interfacial Forces - From Fundamentals to Applications = Prog. Coll. Pol. Sci. S. Surface-based Remote Sensing of The Atospheric Boundary Layer = Atmos Ocean Sci Lib Surface-based Remote Sensing of The Atospheric Boundary Layer = Atmos. Ocean. Sci. Lib. Surface Characterization and Testing Ii = P Soc Photo-opt Ins Surface Characterization and Testing Ii = P. Soc. Photo-opt. Ins. Surface Characterization for Computer Disks, Wafers, and Flat Panel Displays = P Soc Photo-opt Ins Surface Characterization for Computer Disks, Wafers, and Flat Panel Displays = P. Soc. Photo-opt. Ins. Surface Charging and Points of Zero Charge = Surfactant Sci Ser Surface Charging and Points of Zero Charge = Surfactant. Sci. Ser. Surface Chemical Cleaning and Passivation for Semiconductor Processing = Mater Res Soc Symp P Surface Chemical Cleaning and Passivation for Semiconductor Processing = Mater. Res. Soc. Symp. P. Surface Chemistry and Beam-solid Interactions = Mater Res Soc Symp P Surface Chemistry and Beam-solid Interactions = Mater. Res. Soc. Symp. P. Surface Chemistry in Biomedical and Environmental Science = Nato Sci Ser Ii-math Surface Chemistry in Biomedical and Environmental Science = Nato. Sci. Ser. Ii-math. Surface Chemistry in Biomedical and Environmental Science = Nato Sci Ser Ii Math Surface Chemistry in Biomedical and Environmental Science = Nato. Sci. Ser. Ii. Math. Surface Coatings for Advanced Materials = Mater Sci Forum Surface Coatings for Advanced Materials = Mater. Sci. Forum. Surface Coatings International Part B-coatings Transactions = Surf Coat Int Pt B-c Surface Coatings International Part B-coatings Transactions = Surf. Coat. Int. Pt. B-c. Surface Coatings International = Surf Coat Int Surface Coatings International = Surf. Coat. Int. Surface & Coatings Technology = Surf Coat Tech Surface & Coatings Technology = Surf. Coat. Tech. Surface & Coatings Technology = Surf. Coat. Technol. Surface-controlled Nanoscale Materials for High-added-value Applications = Mater Res Soc Symp P Surface-controlled Nanoscale Materials for High-added-value Applications = Mater. Res. Soc. Symp. P. Surface Diffusion = Nato Adv Sci I B-phy Surface Diffusion = Nato. Adv. Sci. I. B-phy. Surface Disordering : Growth, Roughening, and Phase Transitions = Les Houches Surface Disordering : Growth, Roughening, and Phase Transitions = Les. Houches. Surface Effects and Contact Mechanics Ix = Wit Trans Eng Sci Surface Effects and Contact Mechanics Ix = Wit. Trans. Eng. Sci. Surface Engineering 2001 - Fundamentals and Applications = Mater Res Soc Symp P Surface Engineering 2001 - Fundamentals and Applications = Mater. Res. Soc. Symp. P. Surface Engineering 2002-synthesis, Characterization and Applications = Mater Res Soc Symp P Surface Engineering 2002-synthesis, Characterization and Applications = Mater. Res. Soc. Symp. P. Surface Engineering 2004 - Fundamentals and Applications = Mater Res Soc Symp P Surface Engineering 2004 - Fundamentals and Applications = Mater. Res. Soc. Symp. P. Surface Engineering and Applied Electrochemistry = Surf Eng Appl Elect Surface Engineering and Applied Electrochemistry = Surf Eng Appl Elect+ Surface Engineering and Applied Electrochemistry = Surf. Eng. Appl. Elect. Surface Engineering and Applied Electrochemistry = Surf. Eng. Appl. Elect+.+ Surface Engineering and Applied Electrochemistry = Surf. Eng. Appl. Electrochem. Surface Engineering for Manufacturing Applications = Mater Res Soc Symp P Surface Engineering for Manufacturing Applications = Mater. Res. Soc. Symp. P. Surface Engineering (icse 2007) = Key Eng Mat Surface Engineering (icse 2007) = Key. Eng. Mat. Surface Engineering (icse 2007) = Key Eng Mater Surface Engineering (icse 2007) = Key. Eng. Mater. Surface Engineering of Light Alloys: Aluminium, Magnesium and Titanium Alloys = Woodhead Publ Mater Surface Engineering of Light Alloys: Aluminium, Magnesium and Titanium Alloys = Woodhead. Publ. Mater. Surface Engineering of Polymers Membranes = Adv Top Sci Tech Chi Surface Engineering of Polymers Membranes = Adv. Top. Sci. Tech. Chi. Surface Engineering = Surface Eng Surface Engineering = Surface Eng. Surface Engineering = Surf Eng Surface Engineering = Surf. Eng. Surface Engineering With High Energy Beams = Key Eng Mat Surface Engineering With High Energy Beams = Key. Eng. Mat. Surface-enhanced Raman Scattering: Physics and Applications = Top Appl Phys Surface-enhanced Raman Scattering: Physics and Applications = Top. Appl. Phys. Surface Finishing Technology and Surface Engineering = Adv Mat Res Surface Finishing Technology and Surface Engineering = Adv. Mat. Res. Surface Finishing Technology and Surface Engineering Ii = Adv Mater Res-switz Surface Finishing Technology and Surface Engineering Ii = Adv. Mater. Res-switz. Surface-initiated Polymerization I = Adv Polym Sci Surface-initiated Polymerization I = Adv. Polym. Sci. Surface- Initiated Polymerization Ii = Adv Polym Sci Surface- Initiated Polymerization Ii = Adv. Polym. Sci. Surface/interface and Stress Effects in Electronic Materials Nanostructures = Mater Res Soc Symp P Surface/interface and Stress Effects in Electronic Materials Nanostructures = Mater. Res. Soc. Symp. P. Surface Layers = Mater Sci Forum Surface Layers = Mater. Sci. Forum. Surface Magnetism: Correlation of Structural, Electronic and Chemical Properties With Magnetic Behavior = Springer Trac Mod Ph Surface Magnetism: Correlation of Structural, Electronic and Chemical Properties With Magnetic Behavior = Springer. Trac. Mod. Ph. Surface Modification of Biomaterials: Methods, Analysis and Applications = Woodhead Publ Mater Surface Modification of Biomaterials: Methods, Analysis and Applications = Woodhead. Publ. Mater. Surface Modification of Textiles = Woodhead Publ Text Surface Modification of Textiles = Woodhead. Publ. Text. Surface Modifications of Titanium for Biomaterials Applications = Biomat Prop Prod Dev Surface Modifications of Titanium for Biomaterials Applications = Biomat. Prop. Prod. Dev. Surface Modified Biomedical Titanium Alloys = Mater Sci Technol Surface Modified Biomedical Titanium Alloys = Mater. Sci. Technol. Surface Ocean--lower Atmosphere Processes = Geophys Monogr Ser Surface Ocean--lower Atmosphere Processes = Geophys. Monogr. Ser. Surface Oxide Films = Elec Soc S Surface Oxide Films = Elec. Soc. S. Surface Phenomena - International Liquid Crystal Workshop = P Soc Photo-opt Ins Surface Phenomena - International Liquid Crystal Workshop = P. Soc. Photo-opt. Ins. Surface Physics = Ccast Wl Sw Surface Physics = Ccast. Wl. Sw. Surface Plasmon Nanophotonics = Springer Ser Opt Sci Surface Plasmon Nanophotonics = Springer. Ser. Opt. Sci. Surface Plasmon Resonance Based Sensors = Springer Ser Chem Se Surface Plasmon Resonance Based Sensors = Springer. Ser. Chem. Se. Surface Plasmon Resonance: Methods and Protocols = Methods Mol Biol Surface Plasmon Resonance: Methods and Protocols = Methods Mol. Biol. Surface Processing and Laser Assisted Chemistry = Eur Mat Res Surface Processing and Laser Assisted Chemistry = Eur. Mat. Res. Surface Reactive Peptides and Polymers = Acs Sym Ser Surface Reactive Peptides and Polymers = Acs. Sym. Ser. Surface Review and Letters = Surf Rev Lett Surface Review and Letters = Surf. Rev. Lett. Surfaces and Interfaces of Ceramic Materials = Nato Adv Sci I E-app Surfaces and Interfaces of Ceramic Materials = Nato. Adv. Sci. I. E-app. Surface Scattering and Diffraction for Advanced Metrology Ii = P Soc Photo-opt Ins Surface Scattering and Diffraction for Advanced Metrology Ii = P. Soc. Photo-opt. Ins. Surface Scattering and Diffraction for Advanced Metrology = P Soc Photo-opt Ins Surface Scattering and Diffraction for Advanced Metrology = P. Soc. Photo-opt. Ins. Surface Scattering and Diffraction Iii = P Soc Photo-opt Ins Surface Scattering and Diffraction Iii = P. Soc. Photo-opt. Ins. Surface Science Investigations in Tribology = Acs Sym Ser Surface Science Investigations in Tribology = Acs. Sym. Ser. Surface Science Letters = Surf. Sci. Lett. Surface Science of Catalysis = Acs Sym Ser Surface Science of Catalysis = Acs. Sym. Ser. Surface Science Reports = Surf Sci Rep Surface Science Reports = Surf. Sci. Rep. Surface Science Spectra = Surf. Sci. Spectra Surface Science = Surf Sci Surface Science = Surf. Sci. Surfaces in Interfaces = Brit Cer Pr Surfaces in Interfaces = Brit. Cer. Pr. Surfaces, Interfaces, and The Science of Ceramic Joining = Ceram Trans Surfaces, Interfaces, and The Science of Ceramic Joining = Ceram. Trans. Surfaces, Vacuum, and Their Applications = Aip Conf Proc Surfaces, Vacuum, and Their Applications = Aip. Conf. Proc. Surface Technology Programme = Vtt Symp Surface Technology Programme = Vtt. Symp. Surface Technology = Surf Technol Surface Technology = Surf. Technol. Surface Transportation: Infrastructure Environmental Issues and Safety = Transp Infrastruct-r Surface Transportation: Infrastructure Environmental Issues and Safety = Transp. Infrastruct-r. Surface Treatment Iv = Comp Exptl Methods Surface Treatment Iv = Comp. Exptl. Methods. Surface Treatment V: Computer Methods and Experimental Measurements = Comp Exptl Methods Surface Treatment V: Computer Methods and Experimental Measurements = Comp. Exptl. Methods Surface Treatment Vi = Comp Exptl Methods Surface Treatment Vi = Comp. Exptl. Methods. Surface Waves in Anisotropic and Laminated Bodies and Defects Detection = Nato Sci Ser Ii-math Surface Waves in Anisotropic and Laminated Bodies and Defects Detection = Nato. Sci. Ser. Ii-math. Surface Waves in Anisotropic and Laminated Bodies and Defects Detection = Nato Sci Ser Ii Math Surface Waves in Anisotropic and Laminated Bodies and Defects Detection = Nato. Sci. Ser. Ii. Math. Surface Waves in Geomechanics: Direct and Inverse Modelling for Soils and Rocks = Cism Cour L Surface Waves in Geomechanics: Direct and Inverse Modelling for Soils and Rocks = Cism. Cour. L. Surface Waves in Geomechanics: Direct and Inverse Modelling for Soils and Rocks = Cism Courses Lect Surface Waves in Geomechanics: Direct and Inverse Modelling for Soils and Rocks = Cism. Courses. Lect. Surfactant Adsorption and Surface Solubilization = Acs Sym Ser Surfactant Adsorption and Surface Solubilization = Acs. Sym. Ser. Surfactant and The Respiratory Tract = Ferns Found Series Surfactant and The Respiratory Tract = Ferns. Found. Series. Surfactant-enhanced Subsurface Remediation = Acs Sym Ser Surfactant-enhanced Subsurface Remediation = Acs. Sym. Ser. Surfactants and Colloids in The Environment = Prog Coll Pol Sci S Surfactants and Colloids in The Environment = Prog. Coll. Pol. Sci. S. Surfactants and Macromolecules : Self-assembly At Interfaces and in Bulk = Prog Coll Pol Sci S Surfactants and Macromolecules : Self-assembly At Interfaces and in Bulk = Prog. Coll. Pol. Sci. S. Surfactant Science Series = Surfactant Sci Ser Surfactant Science Series = Surfactant Sci. Ser. Surfactant Science Series = Surf Sci Series Surfactant Science Series = Surf. Sci. Series Surfactants in Personal Care Products and Decorative Cosmetics, Third Edition = Surfactant Sci Ser Surfactants in Personal Care Products and Decorative Cosmetics, Third Edition = Surfactant. Sci. Ser. Surfactants in Solution = Surf Sci Series Surfactants in Solution = Surf. Sci. Series. Surfactants in Solution = Surf Solut Surfactants in Solution = Surf. Solut. Surfactants in Solution, Vol 11 = Surf Solut Surfactants in Solution, Vol 11 = Surf. Solut. Surgeon-journal of The Royal Colleges of Surgeons of Edinburgh and Ireland = Surg-j R Coll Surg E Surgeon-journal of The Royal Colleges of Surgeons of Edinburgh and Ireland = Surg-j. R. Coll. Surg. E. Surgeon Journal of The Royal Colleges of Surgeons of Edinburgh and Ireland = Surg J R Coll Surg E Surgeon Journal of The Royal Colleges of Surgeons of Edinburgh and Ireland = Surg. J. R. Coll. Surg. E. Surgeon = Surgeon Surgery and Prosthetic Voice Restoration After Total and Subtotal Laryngectomy = Int Congr Ser Surgery and Prosthetic Voice Restoration After Total and Subtotal Laryngectomy = Int. Congr. Ser. Surgery annual = Surg Annu Surgery Annual = Surg. Annu. Surgery for obesity and related diseases : official journal of the American Society for Bariatric Surgery = Surg Obes Relat Dis Surgery for Obesity and Related Diseases = Surg Obes Relat Dis Surgery for Obesity and Related Diseases = Surg. Obes. Relat. Dis. Surgery, Gynecology and Obstetrics = Surg. Gynecol. Obstet. Surgery Gynecology and Obstetrics With International Abstracts of Surgery = Surg Gynecol Obstetr Surgery Gynecology and Obstetrics With International Abstracts of Surgery = Surg. Gynecol. Obstetr. Surgery, gynecology & obstetrics = Surg Gynecol Obstet Surgery Gynecology & Obstetrics = Surg Gynecol Obstet Surgery Gynecology & Obstetrics = Surg. Gynecol. Obstet. Surgery in Italy = Surg Ital Surgery in Italy = Surg. Ital. Surgery in Multimodal Management of Solid Tumors = Updates Surg Surgery in Multimodal Management of Solid Tumors = Updates. Surg. Surgery of The Shoulder = Int Congr Ser Surgery of The Shoulder = Int. Congr. Ser. Surgery-procedures Complications and Results = Surg-proced Complica Surgery-procedures Complications and Results = Surg-proced. Complica. Surgery Simulation and Soft Tissue Modeling, Proceedings = Lect Notes Comput Sc Surgery Simulation and Soft Tissue Modeling, Proceedings = Lect. Notes. Comput. Sc. Surgery=Surgery;; Surgery = Surgery Surgery today = Surg Today Surgery Today=Surg Today;; Surgery Today = Surg Today Surgery Today = Surg. Today Surgery Today-the Japanese Journal of Surgery = Surg Today Surgery Today-the Japanese Journal of Surgery = Surg. Today. Surgical and radiologic anatomy : SRA = Surg Radiol Anat Surgical and Radiologic Anatomy=Surg Radiol Anat;; Surgical and Radiologic Anatomy = Surg Radiol Anat Surgical and Radiologic Anatomy = Surg. Radiol. Anat. Surgical Applications of Energy, Proceedings Of = P Soc Photo-opt Ins Surgical Applications of Energy, Proceedings Of = P. Soc. Photo-opt. Ins. Surgical-assist Systems, Proceedings Of = P Soc Photo-opt Ins Surgical-assist Systems, Proceedings Of = P. Soc. Photo-opt. Ins. Surgical business = Surg Bus Surgical Business = Surg. Bus. Surgical Clinics of North America = Surg Clin N Am Surgical Clinics of North America = Surg. Clin. N. Am. Surgical Clinics of North America=Surg Clin North Am;; Surgical Clinics of North America = Surg. Clin. North Am. Surgical Endoscopy and Other Interventional Techniques = Surg Endosc Surgical Endoscopy and Other Interventional Techniques = Surg. Endosc. Surgical endoscopy = Surg Endosc Surgical Endoscopy=Surg Endosc;; Surgical Endoscopy = Surg. Endosc. Surgical Endoscopy-ultrasound and Interventional Techniques = Surg Endosc-ultras Surgical Endoscopy-ultrasound and Interventional Techniques = Surg. Endosc-ultras. Surgical Forum 1995 for Experimental and Clinical Research = Langeng Arc Surgical Forum 1995 for Experimental and Clinical Research = Langeng. Arc. Surgical forum = Surg Forum Surgical Forum = Surg Forum Surgical Forum = Surg. Forum Surgical gastroenterology = Surg Gastroenterol Surgical Gastroenterology = Surg. Gastroenterol. Surgical Infections = Surg Infect Surgical Infections = Surg. Infect. Surgical infections = Surg Infect (Larchmt) Surgical innovation = Surg Innov Surgical Innovation = Surg Innov Surgical Innovation = Surg. Innov. Surgical Laparoscopy and Endoscopy=Surg Laparosc Endosc;; Surgical Laparoscopy and Endoscopy = Surg. Laparosc. Endosc. Surgical Laparoscopy, Endoscopy and Percutaneous Techniques = Surg. Laparosc. Endosc. Percutan. Tech. Surgical Laparoscopy Endoscopy & Percutaneous Techniques = Surg Laparo Endo Per Surgical Laparoscopy Endoscopy & Percutaneous Techniques = Surg. Laparo. Endo. Per. Surgical laparoscopy, endoscopy & percutaneous techniques = Surg Laparosc Endosc Percutan Tech Surgical laparoscopy & endoscopy = Surg Laparosc Endosc Surgical Laparoscopy & Endoscopy = Surg Laparosc Endosc Surgical Laparoscopy & Endoscopy = Surg. Laparosc. Endosc. Surgical Management of Cerebrovascular Disease = Act Neur S Surgical Management of Cerebrovascular Disease = Act. Neur. S. Surgical neurology = Surg Neurol Surgical Neurology=Surg Neurol;; Surgical Neurology = Surg Neurol Surgical Neurology = Surg. Neurol. Surgical oncology clinics of North America = Surg Oncol Clin N Am Surgical Oncology Clinics of North America=Surg Oncol Clin N Am;; Surgical Oncology Clinics of North America = Surg Oncol Clin N Am Surgical Oncology Clinics of North America = Surg. Oncol. Clin. N. Am. Surgical Oncology-oxford = Surg Oncol Surgical Oncology-oxford = Surg. Oncol. Surgical oncology = Surg Oncol Surgical Oncology=Surg Oncol;; Surgical Oncology = Surg. Oncol. Surgical Pathology of Endocrine and Neuroendocrine Tumors = Curr Clin Pathol Surgical Pathology of Endocrine and Neuroendocrine Tumors = Curr. Clin. Pathol. Surgical Practice = Surg Pract Surgical Practice = Surg. Pract. Surgical rounds = Surg Rounds Surgical Simulation and Training = Surg-proced Complica Surgical Simulation and Training = Surg-proced. Complica. Surgical Techniques Illustrated = Surg Tech Illus Surgical Techniques Illustrated = Surg. Tech. Illus. Surgical Technologist = Surg. Technol. Surgical technology international = Surg Technol Int Surgical Treatment of Hilar and Intrahepatic Cholangiocarcinoma = Updates Surg Surgical Treatment of Hilar and Intrahepatic Cholangiocarcinoma = Updates. Surg. Surplus Value of Information - Professionalization of Information Activity = Schr Inform Surplus Value of Information - Professionalization of Information Activity = Schr. Inform. Surprised By God: Praise Responses in The Narrative of Luke-acts = Beih Z Neutest Wiss Surprised By God: Praise Responses in The Narrative of Luke-acts = Beih. Z. Neutest. Wiss. Surrealismus in Der Deutschsprachigen Literatur = Spectr Literaturwiss Surrealismus in Der Deutschsprachigen Literatur = Spectr. Literaturwiss. Surrealist Adventure in Spain = Ott Hisp St Surrealist Adventure in Spain = Ott. Hisp. St. Sur = Sur Surveillance and Assessment Technologies for Law Enforcement = P Soc Photo-opt Ins Surveillance and Assessment Technologies for Law Enforcement = P. Soc. Photo-opt. Ins. Surveillance and Control in Israel/palestine: Population, Territory, and Power = Routl Stud Mid E Pol Surveillance and Control in Israel/palestine: Population, Territory, and Power = Routl. Stud. Mid. E. Pol. Surveillance and Governance: Crime Control and Beyond = Sociol Crime Law Dev Surveillance and Governance: Crime Control and Beyond = Sociol. Crime Law. Dev. Surveillance & society = Surveill Soc Surveillance Technologies and Imaging Components = P Soc Photo-opt Ins Surveillance Technologies and Imaging Components = P. Soc. Photo-opt. Ins. Surveillance Technologies Ii = P Soc Photo-opt Ins Surveillance Technologies Ii = P. Soc. Photo-opt. Ins. Surveillance Technologies = P Soc Photo-opt Ins Surveillance Technologies = P. Soc. Photo-opt. Ins. Survey and Other Telescope Technologies and Discoveries = Proc Spie Survey and Other Telescope Technologies and Discoveries = Proc. Spie. Survey and Other Telescope Technologies and Discoveries = P Soc Photo-opt Ins Survey and Other Telescope Technologies and Discoveries = P. Soc. Photo-opt. Ins. Survey and Synthesis of Pathology Research = Surv Syn Pathol Res Survey and Synthesis of Pathology Research = Surv. Syn. Pathol. Res. Survey and synthesis of pathology research = Surv Synth Pathol Res Survey and Synthesis of Pathology Research = Surv. Synth. Pathol. Res. Surveying and Mapping = Surv Mapp Surveying and Mapping = Surv. Mapp. Surveying The Record = Mem A Philo Surveying The Record = Mem. A. Philo. Survey (London, England : 1961) = Survey (Lond) Survey Measurement and Process Quality = Wiley Ser Prob Stat Survey Measurement and Process Quality = Wiley. Ser. Prob. Stat. Survey methodology = Surv Methodol Survey Methodology = Surv Methodol Survey Methodology = Surv. Methodol. Survey of biological progress = Surv Biol Prog Survey of Cell Biology = Int Rev Cytol Survey of Cell Biology = Int. Rev. Cytol. Survey of Current Business=Surv. Curr. Bus. Survey of immunologic research = Surv Immunol Res Survey of Immunologic Research = Surv Immunol Res Survey of Immunologic Research = Surv. Immunol. Res. Survey of International Corporate Responsibility = Int Corp Respons Ser Survey of International Corporate Responsibility = Int. Corp. Respons. Ser. Survey of ophthalmology = Surv Ophthalmol Survey of Ophthalmology=Surv Ophthalmol;; Survey of Ophthalmology = Surv Ophthalmol Survey of Ophthalmology = Surv. Ophthalmol. Survey of The Almagest: With Annotation and New Commentary = Sourc Stud Hist Math Survey of The Almagest: With Annotation and New Commentary = Sourc. Stud. Hist. Math. Survey Review = Surv Rev Survey Review = Surv. Rev. Surveys and Tutorials in The Applied Mathematical Sciences = Surv Tutor Appl Math Surveys and Tutorials in The Applied Mathematical Sciences = Surv. Tutor. Appl. Math. Surveys in Applied Mathematics = Surveys Appl. Math. Surveys in Combinatorics, 1989 = Lond Math S Surveys in Combinatorics, 1989 = Lond. Math. S. Surveys in Geophysics = Surv Geophys Surveys in Geophysics = Surv. Geophys. Surveys in Number Theory = Dev Math Surveys in Number Theory = Dev. Math. Surveys On Discrete and Computational Geometry: Twenty Years Later = Contemp Math Surveys On Discrete and Computational Geometry: Twenty Years Later = Contemp. Math. Surveys on Mathematics for Industry = Surveys Math. Indust. Surveys On Surgery Theory, Vol 1 = Ann Math Stud Surveys On Surgery Theory, Vol 1 = Ann. Math. Stud. Surveys On Surgery Theory, Vol 2 = Ann Math Stud Surveys On Surgery Theory, Vol 2 = Ann. Math. Stud. Survival Analysis : State of The Art = Nato Adv Sci I E-app Survival Analysis : State of The Art = Nato. Adv. Sci. I. E-app. Survival and Event History Analysis: A Process Point of View = Stat Biol Health Survival and Event History Analysis: A Process Point of View = Stat. Biol. Health. Survival news (Atlanta, Ga.) = Surviv News (Atlanta Ga) Survival = Survival Survival = Survival (Lond) Surviving Death = Carl G Hemp Lect Ser Surviving Death = Carl. G. Hemp. Lect. Ser. Surviving The Future: Academic Libraries, Quality, and Assessment = Chandos Inf Prof Ser Surviving The Future: Academic Libraries, Quality, and Assessment = Chandos. Inf. Prof. Ser. Surviving The Transition? Case Studies of Schools and Schooling in The Kyrgyz Republic Since Independence = Int Persp Educ Polic Surviving The Transition? Case Studies of Schools and Schooling in The Kyrgyz Republic Since Independence = Int. Persp. Educ. Polic. Susan Glaspell and Sophie Treadwell = Routl Mod Contemp Dr Susan Glaspell and Sophie Treadwell = Routl. Mod. Contemp. Dr. Suspensions: Fundamentals and Applications in The Petroleum Industry = Adv Chem Ser Suspensions: Fundamentals and Applications in The Petroleum Industry = Adv. Chem. Ser. SusPop news : the Sustainable Population Society newsletter = SusPop News Sussp Proceedings = Sussp Proc Sussp Proceedings = Sussp Proc. Sustainability 2009: The Next Horizon = Aip Conf Proc Sustainability 2009: The Next Horizon = Aip. Conf. Proc. Sustainability Accounting and Reporting = Eco Efficien Ind Sci Sustainability Accounting and Reporting = Eco. Efficien. Ind. Sci. Sustainability Accounting and Reporting = Eco-effic Ind Sci Sustainability Accounting and Reporting = Eco-effic. Ind. Sci. Sustainability and Environmental Concerns in Transportation 2001 = Transport Res Rec Sustainability and Environmental Concerns in Transportation 2001 = Transport. Res. Rec. Sustainability and Environmental Concerns in Transportation 2002 = Transport Res Rec Sustainability and Environmental Concerns in Transportation 2002 = Transport. Res. Rec. Sustainability and Environmental Concerns in Transportation 2003 = Transport Res Rec Sustainability and Environmental Concerns in Transportation 2003 = Transport. Res. Rec. Sustainability and Environmental Concerns in Transportation = Transport Res Rec Sustainability and Environmental Concerns in Transportation = Transport. Res. Rec. Sustainability and Innovation = Sustain Innov Sustainability and Innovation = Sustain. Innov. Sustainability and Innovation = Sustain Innovation Sustainability and Innovation = Sustain. Innovation Sustainability and Security Within Liberal Societies = Routl Stud Soc Polit Sustainability and Security Within Liberal Societies = Routl. Stud. Soc. Polit. Sustainability and Spread of Organizational Change = Underst Organ Chang Sustainability and Spread of Organizational Change = Underst. Organ. Chang. Sustainability-contributions Through Science Technology = Sustain-contrib Sci Sustainability-contributions Through Science Technology = Sustain-contrib. Sci. Sustainability Economics and Natural Resources = Sustain Econ Nat Res Sustainability Economics and Natural Resources = Sustain. Econ. Nat. Res. Sustainability, Environmental Performance and Disclosures = Adv Environ Acc Man Sustainability, Environmental Performance and Disclosures = Adv. Environ. Acc. Man. Sustainability in European Environmental Policy: Challenges of Governance and Knowledge = Routl Adv Eur Polit Sustainability in European Environmental Policy: Challenges of Governance and Knowledge = Routl. Adv. Eur. Polit. Sustainability in Food and Water: An Asian Perspective = Alliance Glob Sustai Sustainability in Food and Water: An Asian Perspective = Alliance. Glob. Sustai. Sustainability Networks = Routl Stud Ecol Econ Sustainability Networks = Routl. Stud. Ecol. Econ. Sustainability of Agricultural Systems in Transition, Proceedings = Asa Spec P Sustainability of Agricultural Systems in Transition, Proceedings = Asa. Spec. P. Sustainability of Agrosilvopastoral Systems - Dehesas, Montados = Adv Geoecol Sustainability of Agrosilvopastoral Systems - Dehesas, Montados = Adv. Geoecol. Sustainability of Concrete = Mod Conrete Technol Sustainability of Concrete = Mod. Conrete. Technol. Sustainability of Construction Materials = Woodhead Publ Mater Sustainability of Construction Materials = Woodhead. Publ. Mater. Sustainability of Cultural Diversity: Nations, Cities and Organizations = Feem Ser Econ Envir Sustainability of Cultural Diversity: Nations, Cities and Organizations = Feem. Ser. Econ. Envir. Sustainability of Groundwater Resources and Its Indicators = Iahs-aish P Sustainability of Groundwater Resources and Its Indicators = Iahs-aish. P. Sustainability of Horticultural Systems in The 21st Century = Acta Hortic Sustainability of Horticultural Systems in The 21st Century = Acta. Hortic. Sustainability of Irrigated Agriculture = Nato Adv Sci I E-app Sustainability of Irrigated Agriculture = Nato. Adv. Sci. I. E-app. Sustainability of Irrigated Agriculture = Nato Adv Sci Inst Se Sustainability of Irrigated Agriculture = Nato. Adv. Sci. Inst. Se. Sustainability of Public Debt = Cesifo Book Ser Sustainability of Public Debt = Cesifo. Book. Ser. Sustainability of The Sugar and Sugar-ethanol Industries = Acs Sym Ser Sustainability of The Sugar and Sugar-ethanol Industries = Acs. Sym. Ser. Sustainability of Water Resources Under Increasing Uncertainty = Iahs-aish P Sustainability of Water Resources Under Increasing Uncertainty = Iahs-aish. P. Sustainability Science = Sustainability Sci. Sustainability Science = Sustain Sci Sustainability Science = Sustain. Sci. Sustainable Agriculture Reviews = Sustain Agr Rev Sustainable Agriculture Reviews = Sustain. Agr. Rev. Sustainable Agriculture: Technology, Planning and Management = Agr Issues Policies Sustainable Agriculture: Technology, Planning and Management = Agr. Issues. Policies. Sustainable and Safe Water Supplies = Wa Sci Technol Sustainable and Safe Water Supplies = Wa. Sci. Technol. Sustainable Cities: Diverstity, Economic Growth and Social Cohesion = Feem Ser Econ Envir Sustainable Cities: Diverstity, Economic Growth and Social Cohesion = Feem. Ser. Econ. Envir. Sustainable City Iii: Urban Regeneration and Sustainability = Adv Arc Ser Sustainable City Iii: Urban Regeneration and Sustainability = Adv. Arc. Ser. Sustainable City Ii: Urban Regeneration and Sustainability = Adv Arc Ser Sustainable City Ii: Urban Regeneration and Sustainability = Adv. Arc. Ser. Sustainable City Iv : Urban Regeneration and Sustainability = Wit Trans Ecol Envir Sustainable City Iv : Urban Regeneration and Sustainability = Wit. Trans. Ecol. Envir. Sustainable City: Urban Regeneration and Sustainability = Adv Arc Ser Sustainable City: Urban Regeneration and Sustainability = Adv. Arc. Ser. Sustainable City Vi: Urban Regeneration and Sustainability = Wit Trans Ecol Envir Sustainable City Vi: Urban Regeneration and Sustainability = Wit. Trans. Ecol. Envir. Sustainable City V: Urban Regeneration and Sustainability = Wit Trans Ecol Envir Sustainable City V: Urban Regeneration and Sustainability = Wit. Trans. Ecol. Envir. Sustainable Coastal Management: A Transatlantic and Euro-mediterranean Perspective = Nato Sci S Ss Iv Ear Sustainable Coastal Management: A Transatlantic and Euro-mediterranean Perspective = Nato. Sci. S. Ss. Iv. Ear. Sustainable Construction Materials and Technologies = Proc Monogr Eng Wate Sustainable Construction Materials and Technologies = Proc. Monogr. Eng. Wate. Sustainable Consumption, Ecology and Fair Trade = Rout Res Environ Pol Sustainable Consumption, Ecology and Fair Trade = Rout. Res. Environ. Pol. Sustainable Development and Free Trade: Institutional Approaches = Routl Stud Dev Econ Sustainable Development and Free Trade: Institutional Approaches = Routl. Stud. Dev. Econ. Sustainable Development and International Law = Int Env Law Sustainable Development and International Law = Int. Env. Law Sustainable Development and Planning Iii, Vols 1 and 2 = Wit Trans Ecol Envir Sustainable Development and Planning Iii, Vols 1 and 2 = Wit. Trans. Ecol. Envir. Sustainable Development and Planning Ii, Vols 1 and 2 = Wit Trans Ecol Envir Sustainable Development and Planning Ii, Vols 1 and 2 = Wit. Trans. Ecol. Envir. Sustainable Development and Planning Iv, Vols 1 and 2 = Wit Trans Ecol Envir Sustainable Development and Planning Iv, Vols 1 and 2 = Wit. Trans. Ecol. Envir. Sustainable Development and The Limitation of Growth: Future Prospects for World Civilization = Springer-prax Books Sustainable Development and The Limitation of Growth: Future Prospects for World Civilization = Springer-prax. Books. Sustainable Development Indicators in Ecological Economics = Curr Iss Ecol Econ Sustainable Development Indicators in Ecological Economics = Curr. Iss. Ecol. Econ. Sustainable Development in The Sahel = Aau Reports Sustainable Development in The Sahel = Aau. Reports. Sustainable Development in The Southeastern Coastal Zone = Bel Bar Lib Sustainable Development in The Southeastern Coastal Zone = Bel. Bar. Lib. Sustainable Development: Principles, Frameworks, and Case Studies = Soc Environ Sustain Sustainable Development: Principles, Frameworks, and Case Studies = Soc. Environ. Sustain. Sustainable Development = Sustain Dev Sustainable Development = Sustain. Dev. Sustainable E-business Management = Lect Notes Bus Inf Sustainable E-business Management = Lect. Notes. Bus. Inf. Sustainable Ecological Systems: Implementing An Ecological Approach to Land Management = Usda Rocky Sustainable Ecological Systems: Implementing An Ecological Approach to Land Management = Usda. Rocky. Sustainable Energy Production and Consumption: Benefits, Strategies and Environmental Costing = Nato Sci Peace Secur Sustainable Energy Production and Consumption: Benefits, Strategies and Environmental Costing = Nato. Sci. Peace. Secur. Sustainable Evidence-based Decision-making = Psychol Res Prog Sustainable Evidence-based Decision-making = Psychol. Res. Prog. Sustainable Feminisms = Adv Gend Res Sustainable Feminisms = Adv. Gend. Res. Sustainable Forest Management in A Changing World: A European Perspective = Manag For Ecosyst Sustainable Forest Management in A Changing World: A European Perspective = Manag. For. Ecosyst. Sustainable Groundwater Development = Geol Soc Spec Publ Sustainable Groundwater Development = Geol. Soc. Spec. Publ. Sustainable Human Resource Management = Contrib Manag Sci Sustainable Human Resource Management = Contrib. Manag. Sci. Sustainable Internet, Proceedings = Lect Notes Comput Sc Sustainable Internet, Proceedings = Lect. Notes. Comput. Sc. Sustainable Irrigation Management, Technologies and Policies Ii = Wit Trans Ecol Envir Sustainable Irrigation Management, Technologies and Policies Ii = Wit. Trans. Ecol. Envir. Sustainable Irrigation Management, Technologies and Policies = Wit Trans Ecol Envir Sustainable Irrigation Management, Technologies and Policies = Wit. Trans. Ecol. Envir. Sustainable Land Management - Environmental Protection = Adv Geoecol Sustainable Land Management - Environmental Protection = Adv. Geoecol. Sustainable Land Use Planning = Dev Landsc Sustainable Land Use Planning = Dev. Landsc. Sustainable Livestock Farming Into The 21st Century = Cas Paper Sustainable Livestock Farming Into The 21st Century = Cas. Paper. Sustainable Management of Headwater Resources: Research From Africa and India = Water Reso Manage Po Sustainable Management of Headwater Resources: Research From Africa and India = Water. Reso. Manage. Po. Sustainable Management of North American Fisheries = Am Fish S S Sustainable Management of North American Fisheries = Am. Fish. S. S. Sustainable Management of Water Resources: An Integrated Approach = Feem Ser Econ Envir Sustainable Management of Water Resources: An Integrated Approach = Feem. Ser. Econ. Envir. Sustainable Neighbourhood Transformation = Sustain Urban Areas Sustainable Neighbourhood Transformation = Sustain. Urban. Areas. Sustainable Parasite Control in Small Ruminants = Aciar Proc Sustainable Parasite Control in Small Ruminants = Aciar. Proc. Sustainable Planning and Development = Sus World Sustainable Planning and Development = Sus. World. Sustainable Production of Forest Products 2000, Proceedings = Us For Serv T R Pnw Sustainable Production of Forest Products 2000, Proceedings = Us. For. Serv. T. R. Pnw. Sustainable Production of Wood and Non-wood Forest Products = Us For Serv T R Pnw Sustainable Production of Wood and Non-wood Forest Products = Us. For. Serv. T. R. Pnw. Sustainable Reform and Development in Post-olympic China = Routl Stud Chin Econ Sustainable Reform and Development in Post-olympic China = Routl. Stud. Chin. Econ. Sustainable Resilience of Energy Systems = Energ Sci Eng Tech Sustainable Resilience of Energy Systems = Energ. Sci. Eng. Tech. Sustainable Resource Use and Economic Dynamics = Eco Nm G Re Sustainable Resource Use and Economic Dynamics = Eco. Nm. G. Re. Sustainable Solid Waste Management in The Southern Black Sea Region = Nato Sci S Prt 2 Env Sustainable Solid Waste Management in The Southern Black Sea Region = Nato. Sci. S. Prt. 2. Env. Sustainable Solutions for Modern Economies = Rsc Green Chem Ser Sustainable Solutions for Modern Economies = Rsc. Green. Chem. Ser. Sustainable Strategies for The Upgrading of Natural Gas: Fundamentals, Challenges, and Opportunities = Nato Sci Ser Ii-math Sustainable Strategies for The Upgrading of Natural Gas: Fundamentals, Challenges, and Opportunities = Nato. Sci. Ser. Ii-math. Sustainable Strategies for The Upgrading of Natural Gas: Fundamentals, Challenges, and Opportunities = Nato Sci Ser Ii Math Sustainable Strategies for The Upgrading of Natural Gas: Fundamentals, Challenges, and Opportunities = Nato. Sci. Ser. Ii. Math. Sustainable Supplier Management in The Automotive Industry: Leading The 3rd Revolution Through Collaboration = Transp Issues Polici Sustainable Supplier Management in The Automotive Industry: Leading The 3rd Revolution Through Collaboration = Transp. Issues. Polici. Sustainable Textiles = Woodhead Publ Text Sustainable Textiles = Woodhead. Publ. Text. Sustainable Tourism Iii = Wit Trans Ecol Envir Sustainable Tourism Iii = Wit. Trans. Ecol. Envir. Sustainable Tourism Ii = Wit Trans Ecol Envir Sustainable Tourism Ii = Wit. Trans. Ecol. Envir. Sustainable Tourism in Islands and Small States = Isl Stud Ser Sustainable Tourism in Islands and Small States = Isl. Stud. Ser. Sustainable Tourism Iv = Wit Trans Ecol Envir Sustainable Tourism Iv = Wit. Trans. Ecol. Envir. Sustainable Tourism = Sus World Sustainable Tourism = Sus. World. Sustainable Urban Areas = Sustain Urban Areas Sustainable Urban Areas = Sustain. Urban Areas Sustainable Urban Development Series = Sustain Urban Dev Se Sustainable Urban Development Series = Sustain. Urban Dev. Se. Sustainable Urban Development Vol 2: The Environmental Assessment Methods = Sustain Urban Dev Se Sustainable Urban Development Vol 2: The Environmental Assessment Methods = Sustain. Urban Dev. Se. Sustainable Urban Development, Vol 3 = Sustain Urban Dev Se Sustainable Urban Development, Vol 3 = Sustain. Urban Dev. Se. Sustainable Urban Development, Vol 4: Changing Professional Practice = Sustain Urban Dev Se Sustainable Urban Development, Vol 4: Changing Professional Practice = Sustain. Urban Dev. Se. Sustainable Urban Housing in China: Principles and Case Studies for Low-energy Design = Alliance Glob Sustai Sustainable Urban Housing in China: Principles and Case Studies for Low-energy Design = Alliance. Glob. Sustai. Sustainable Urban Transport in An Asian Context = Csur Ut Ser Lib Sust Sustainable Urban Transport in An Asian Context = Csur. Ut. Ser. Lib. Sust. Sustainable Use and Development of Watersheds = Nato Sci Peace Secur Sustainable Use and Development of Watersheds = Nato. Sci. Peace. Secur. Sustainable Use and Management of Soils - Arid and Semiarid Regions = Adv Geoecol Sustainable Use and Management of Soils - Arid and Semiarid Regions = Adv. Geoecol. Sustainable Water = Iss Environ Sci Tech Sustainable Water = Iss. Environ. Sci. Tech. Sustainable Water Management Solutions for Large Cities = Iahs-aish P Sustainable Water Management Solutions for Large Cities = Iahs-aish. P. Sustainable Water Quality Management Policy = Alliance Glob Sustai Sustainable Water Quality Management Policy = Alliance. Glob. Sustai. Sustainable World = Sus World Sustainable World = Sus. World Sustaining Aspen in Western Landscapes: Symposium Proceedings = Usda Rocky Sustaining Aspen in Western Landscapes: Symposium Proceedings = Usda. Rocky. Sustaining Biodiversity and Ecosystem Services in Soils and Sediments = Scope Ser Sustaining Biodiversity and Ecosystem Services in Soils and Sediments = Scope. Ser. Sustaining Growth and Performance in East Asia = Stud Small Med Enter Sustaining Growth and Performance in East Asia = Stud. Small. Med. Enter. Sustaining Language Diversity in Europe: Evidence From The Euromosaic Project = Palg Stud Minor Lang Sustaining Language Diversity in Europe: Evidence From The Euromosaic Project = Palg. Stud. Minor. Lang. Sustaining Tel: From Innovation to Learning and Practice = Lect Notes Comput Sc Sustaining Tel: From Innovation to Learning and Practice = Lect. Notes. Comput. Sc. Sustaining The Military Enterprise: An Architecture for A Lean Transformation = Resource Manag-crc Sustaining The Military Enterprise: An Architecture for A Lean Transformation = Resource. Manag-crc. Susy06: The 14th International Conference On Supersymmetry and The Unification of Fundamental Interactions = Aip Conf Proc Susy06: The 14th International Conference On Supersymmetry and The Unification of Fundamental Interactions = Aip. Conf. Proc. Susy09: The 17th International Conference On Supersymmetry and The Unification of Fundamental Interactions = Aip Conf Proc Susy09: The 17th International Conference On Supersymmetry and The Unification of Fundamental Interactions = Aip. Conf. Proc. SUT Journal of Mathematics = SUT J. Math. Suvremena Psihologija = Suvrem Psihol Suvremena Psihologija = Suvrem. Psihol. Suvremenna meditsina = Suvr Med (Sofiia) Suvremenna Meditsina = Suvr. Med. (Sofiia) Svarochnoe Proizvodstvo = Svar. Proizvod. Sveikatos apsauga = Sveikatos Apsauga Svenska lakartidningen = Sven Lakartidn Svensk Botanisk Tidskrift = Sven. Bot. Tidskr. Svensk farmaceutisk tidskrift = Sven Farm Tidskr Svensk Farmaceutisk Tidskrift = Sven. Farm. Tidskr. Svensk geografisk arsbok = Sven Geogr Arsb Svensk juristtidning = Sven Juristtidn Svensk Kemisk Tidskrift = Sven Kem Tidskr Svensk Kemisk Tidskrift = Sven. Kem. Tidskr. Svensk Litteraturtidskrift = Sven Littidskr Svensk Litteraturtidskrift = Sven. Littidskr. Svensk medicinhistorisk tidskrift = Sven Med Tidskr Svensk Papperstidning-nordisk Cellulosa = Sven Papperstidn Svensk Papperstidning-nordisk Cellulosa = Sven. Papperstidn. Svensk Tandlakaretidskrift = Sven. Tandlak. Tidskr. Svensk tandlakare tidskrift. Swedish dental journal = Sven Tandlak Tidskr Svensk Tidskrift for Musikforskning = Sven Tidskr Musikfor Svensk Tidskrift for Musikforskning = Sven. Tidskr. Musikfor. Svensk tidskrift (Uppsala, Sweden) = Sven Tidskr Sveriges Tandlakarforbund Tidning = Sver. Tandlakarforb. Tidn. Sverkhprovodimost: Fizika, Khimiya, Tekhnika = Sverkhprovodimost: Fiz., Khim., Tekh. Swarm, Evolutionary, and Memetic Computing = Lect Notes Comput Sc Swarm, Evolutionary, and Memetic Computing = Lect. Notes. Comput. Sc. Swarm Intelligence for Multi-objective Problems in Data Mining = Stud Comput Intell Swarm Intelligence for Multi-objective Problems in Data Mining = Stud. Comput. Intell. Swarm Intelligence = Lect Notes Comput Sc Swarm Intelligence = Lect. Notes. Comput. Sc. Swarm Intelligence = Swarm Intell-us Swarm Intelligence = Swarm Intell-us. Swarm Robotics = Lect Notes Comput Sc Swarm Robotics = Lect. Notes. Comput. Sc. Swasth hind = Swasth Hind Swat 90 = Lect Notes Comput Sc Swat 90 = Lect. Notes. Comput. Sc. Swedish Council for Unesco Series = Svensk Unescoradets Swedish Council for Unesco Series = Svensk. Unescoradets. Swedish dental journal. Supplement = Swed Dent J Suppl Swedish Dental Journal. Supplement=Swed Dent J Suppl;; Swedish Dental Journal. Supplement = Swed. Dent. J. Suppl. Swedish dental journal = Swed Dent J Swedish Dental Journal=Swed Dent J;; Swedish Dental Journal = Swed Dent J Swedish Dental Journal = Swed. Dent. J. Swedish Economic Policy Review=Swedish Econ. Pol. Rev. Swedish Journal of Agricultural Research = Swed J Agr Res Swedish Journal of Agricultural Research = Swed. J. Agr. Res. Swedish Journal of Economics=Swedish J. Econ. Swedish Journal of Economics = Swed J Econ Swedish Journal of Economics = Swed. J. Econ. Sweet Dreams: Philosophical Obstacles to A Science of Consciousness = Jean Nicod Lect Sweet Dreams: Philosophical Obstacles to A Science of Consciousness = Jean. Nicod. Lect. Sweeteners = Acs Sym Ser Sweeteners = Acs. Sym. Ser. Sweet Liberty: The Final Days of Slavery in Martinique = Early Am Stud Ser Sweet Liberty: The Final Days of Slavery in Martinique = Early. Am. Stud. Ser. Sweetness and Sweeteners = Acs Sym Ser Sweetness and Sweeteners = Acs. Sym. Ser. Sweet Potato: Post Harvest Aspects in Food, Feed and Industry = Food Sci Technol Sweet Potato: Post Harvest Aspects in Food, Feed and Industry = Food. Sci. Technol. Sweet Thunder: Music and Libretti in 1960s Italy = Ital Perspect Sweet Thunder: Music and Libretti in 1960s Italy = Ital. Perspect. Swimming With Crocodiles: The Culture of Extreme Drinking = Icap Ser Alcohol Soc Swimming With Crocodiles: The Culture of Extreme Drinking = Icap. Ser. Alcohol. Soc. Swine Health and Production = Swine Health Prod Swine Health and Production = Swine Health Prod. Swine Housing Ii, Proceedings = Asae Publ Swine Housing Ii, Proceedings = Asae. Publ. Swiss biotech = Swiss Biotech Swiss dent = Swiss Dent Swiss Dent = Swiss Dent Swiss Journal of Economics and Statistics=Swiss J. Econ. Statist. Swiss Journal of Geosciences = Swiss J Geosci Swiss Journal of Geosciences = Swiss J. Geosci. Swiss Journal of Psychology = Swiss J Psychol Swiss Journal of Psychology = Swiss J. Psychol. Swiss medical weekly : official journal of the Swiss Society of Infectious Diseases, the Swiss Society of Internal Medicine, the Swiss Society of Pneumology = Swiss Med Wkly Swiss Medical Weekly = Swiss Med Wkly Swiss Medical Weekly = Swiss Med. Wkly. Swiss Political Science Review=Swiss Polit. Sci. Rev. Swiss Political Science Review = Swiss Polit Sci Rev Swiss Political Science Review = Swiss Polit. Sci. Rev. Swiss surgery. Supplement = Swiss Surg Suppl Swiss Surgery. Supplement = Swiss Surg. Suppl. Swiss Surgery=Swiss Surg;; Swiss Surgery = Swiss Surg. Switchable Materials and Flat Panel Displays = Proc Spie Switchable Materials and Flat Panel Displays = Proc. Spie. Switchable Materials and Flat Panel Displays = P Soc Photo-opt Ins Switchable Materials and Flat Panel Displays = P. Soc. Photo-opt. Ins. Switched and Impulsive Systems: Analysis, Design, and Applications = Lect Notes Contr Inf Switched and Impulsive Systems: Analysis, Design, and Applications = Lect. Notes. Contr. Inf. Switched Finite Time Control of A Class of Underactuated Systems = Lect Notes Contr Inf Switched Finite Time Control of A Class of Underactuated Systems = Lect. Notes. Contr. Inf. Switching and Learning in Feedback Systems = Lect Notes Comput Sc Switching and Learning in Feedback Systems = Lect. Notes. Comput. Sc. Switzerland and The European Union = Eur Nation State Switzerland and The European Union = Eur. Nation. State. Switzerland and The International Protection of Refugees = Grad Inst Int Stud Switzerland and The International Protection of Refugees = Grad. Inst. Int. Stud. Switzerland in Europe: Continuity and Change in The Swiss Political Economy = Routl Adv Eur Polit Switzerland in Europe: Continuity and Change in The Swiss Political Economy = Routl. Adv. Eur. Polit. Switzer Monograph = Switzer Mon Switzer Monograph = Switzer Mon. Sws-rundschau = Sws-rundsch Sws-rundschau = Sws-rundsch. Sydney University medical journal = Sydn Univ Med J Sydowia = Sydowia Sydsvenska medicinhistoriska sallskapets arsskrift. Supplementum = Sydsven Medicinhist Sallsk Arsskr Suppl Sydsvenska medicinhistoriska sallskapets arsskrift = Sydsven Medicinhist Sallsk Arsskr Syesis = Syesis Sygeplejersken = Sygeplejersken Sykepleien Fag = Sykepl. Fag Sykepleien. Fag = Sykepl Fag Sykepleien = Sykepleien Syllables of Time: Proust and The History of Reading = Res Monogr Fr Stud Syllables of Time: Proust and The History of Reading = Res. Monogr. Fr. Stud. Syllable: Views and Facts = Stud Genera Grammar Syllable: Views and Facts = Stud. Genera. Grammar. Syllable: Views and Facts = Stud Gener Gramm Syllable: Views and Facts = Stud. Gener. Gramm. Syllecta classica = SyllClass Sylloge nummorum Graecorum = SNG Sylva Mala. Bollettino del Centro di studi archeologici di Boscoreale, Boscotrecase e Trecase = SylvaMala Sylvia Plath: A Literary Life, 2nd Edition = Lit Lives Sylvia Plath: A Literary Life, 2nd Edition = Lit. Lives. Sylwan = Sylwan Symbioses and Stress: Joint Ventures in Biology = Cell Orig Life Extre Symbioses and Stress: Joint Ventures in Biology = Cell. Orig. Life. Extre. Symbiosis in Marine Organisms = Oceanis S D Symbiosis in Marine Organisms = Oceanis. S. D. Symbiosis of Human and Artifact: Future Computing and Design for Human-computer Interaction = Adv Hum Fact Ergon Symbiosis of Human and Artifact: Future Computing and Design for Human-computer Interaction = Adv. Hum. Fact. Ergon. Symbiosis of Human and Artifact: Human and Social Aspects of Human-computer Interactions = Adv Hum Fact Ergon Symbiosis of Human and Artifact: Human and Social Aspects of Human-computer Interactions = Adv. Hum. Fact. Ergon. Symbiosis = Symbiosis Symbiotic Fungi: Principles and Practice = Soil Biol Symbiotic Fungi: Principles and Practice = Soil. Biol. Symbiotic Multi-robot Organisms: Reliability, Adaptability, Evolution = Cogn Syst Monogr Symbiotic Multi-robot Organisms: Reliability, Adaptability, Evolution = Cogn. Syst. Monogr. Symbiotic Stars Probing Stellar Evolution = Astr Soc P Symbiotic Stars Probing Stellar Evolution = Astr. Soc. P. Symbolae Botanicae Upsalienses = Symb. Bot. Ups. Symbolae Botanicae Upsalienses = Symb Bot Upsal Symbolae Botanicae Upsalienses = Symb. Bot. Upsal. Symbolae Osloenses / auspiciis Societatis Graeco-Latinae = Symb Oslo Symbolae Osloenses, auspiciis Societatis Graeco-Latine = SO Symbolae Osloenses = SymbOslo Symbolae Osloenses = Symb Oslo Symbolae Osloenses = Symb. Oslo. Symbolae Philologorum Posnanensium = SPhP Symbola Et Emblemata : Studies in Renaissance and Baroque Symbolism = Symb Emblem Symbola Et Emblemata : Studies in Renaissance and Baroque Symbolism = Symb. Emblem. Symbol Grounding and Beyond, Proceedings = Lect Notes Artif Int Symbol Grounding and Beyond, Proceedings = Lect. Notes. Artif. Int. Symbolic and Connectionist Paradigms = Cog Sci Ser Symbolic and Connectionist Paradigms = Cog. Sci. Ser. Symbolic and Numerical Scientific Computation = Lect Notes Comput Sc Symbolic and Numerical Scientific Computation = Lect. Notes. Comput. Sc. Symbolic and Numeric Computation Series = Symbol. Numer. Comput. Ser. Symbolic and Quantitative Approaches to Reasoning and Uncertainty = Lect Notes Artif Int Symbolic and Quantitative Approaches to Reasoning and Uncertainty = Lect. Notes. Artif. Int. Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceeding = Lect Notes Artif Int Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceeding = Lect. Notes. Artif. Int. Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceedings = Lect Notes Artif Int Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceedings = Lect. Notes. Artif. Int. Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceedings = Lect Notes Comput Sc Symbolic and Quantitative Approaches to Reasoning With Uncertainty, Proceedings = Lect. Notes. Comput. Sc. Symbolic and Quantitative Approaches to Uncertainty = Lect Notes Comput Sc Symbolic and Quantitative Approaches to Uncertainty = Lect. Notes. Comput. Sc. Symbolic Computation : Computer Graphics - Systems and Applications = Symb Comput Symbolic Computation : Computer Graphics - Systems and Applications = Symb. Comput. Symbolic Computation = Front App M Symbolic Computation = Front. App. M. Symbolic Dynamics and Its Applications = Proc Sym Ap Symbolic Dynamics and Its Applications = Proc. Sym. Ap. Symbolic Interaction = Symb Interact Symbolic Interaction = Symb. Interact. Symbolic-numeric Computation = Trends Math Symbolic-numeric Computation = Trends. Math. Symbolic Transformation: The Mind in Movement Through Culture and Society = Cult Dyn Soc Represe Symbolic Transformation: The Mind in Movement Through Culture and Society = Cult. Dyn. Soc. Represe. Symbols, Myths and Images of The French Revolution = Univ Regin Publicat Symbols, Myths and Images of The French Revolution = Univ. Regin. Publicat. Symbols Vs Neurons ? = Fr Art Int Symbols Vs Neurons ? = Fr. Art. Int. Symbol Use and Symbolic Representation: Developmental and Comparative Perspectives = Emory S Cog Symbol Use and Symbolic Representation: Developmental and Comparative Perspectives = Emory. S. Cog. Symeonis Magistri Et Logothetae Chronicon: Recensuit Staffan Wahlgren = Corpus Font Hist Byz Symeonis Magistri Et Logothetae Chronicon: Recensuit Staffan Wahlgren = Corpus. Font. Hist. Byz. Symmetric Functionals On Random Matrices and Random Matchings Problems = Ima Vol Math Appl Symmetric Functionals On Random Matrices and Random Matchings Problems = Ima. Vol. Math. Appl. Symmetric Functions 2001: Surveys of Developments and Perspectives = Nato Sci Ser Ii Math Symmetric Functions 2001: Surveys of Developments and Perspectives = Nato. Sci. Ser. Ii. Math. Symmetries and Algebraic Structures in Physics, Pt 1 = P Trudy P N Symmetries and Algebraic Structures in Physics, Pt 1 = P. Trudy. P. N. Symmetries and Algebraic Structures in Physics, Pt 2 = P Trudy P N Symmetries and Algebraic Structures in Physics, Pt 2 = P. Trudy. P. N. Symmetries and Groups in Signal Processing: An Introduction = Signals Commun Techn Symmetries and Groups in Signal Processing: An Introduction = Signals. Commun. Techn. Symmetries and Overdetermined Systems of Partial Differential Equations = Ima V Math Symmetries and Overdetermined Systems of Partial Differential Equations = Ima. V. Math. Symmetries and Overdetermined Systems of Partial Differential Equations = Ima Vol Math Appl Symmetries and Overdetermined Systems of Partial Differential Equations = Ima. Vol. Math. Appl. Symmetries and Related Topics in Differential and Difference Equations = Contemp Math Symmetries and Related Topics in Differential and Difference Equations = Contemp. Math. Symmetries and Singularity Structures = Res Rep Phy Symmetries and Singularity Structures = Res. Rep. Phy. Symmetries in Atomic Nuclei: From Isospin to Supersymmetry = Springer Trac Mod Ph Symmetries in Atomic Nuclei: From Isospin to Supersymmetry = Springer. Trac. Mod. Ph. Symmetries in Complex Analysis = Contemp Math Symmetries in Complex Analysis = Contemp. Math. Symmetries in Intermediate and High Energy Physics = Springer Trac Mod Ph Symmetries in Intermediate and High Energy Physics = Springer. Trac. Mod. Ph. Symmetries in Intermediate and High Energy Physics = Springer Tr Mod Phys Symmetries in Intermediate and High Energy Physics = Springer. Tr. Mod. Phys. Symmetries in Nature = Aip Conf Proc Symmetries in Nature = Aip. Conf. Proc. Symmetries in Nuclear Structure = Sci Cult Ser Phys Symmetries in Nuclear Structure = Sci. Cult. Ser. Phys. Symmetries in Subatomic Physics = Aip Conf Proc Symmetries in Subatomic Physics = Aip. Conf. Proc. Symmetries of Compact Riemann Surfaces = Lect Notes Math Symmetries of Compact Riemann Surfaces = Lect. Notes. Math. Symmetries of Integro-differential Equations: With Applications in Mechanics and Plasma Physics = Lect Notes Phys Symmetries of Integro-differential Equations: With Applications in Mechanics and Plasma Physics = Lect. Notes. Phys. Symmetry and Heterogeneity in High Temperature Superconductors = Nato Sci Ser Ii-math Symmetry and Heterogeneity in High Temperature Superconductors = Nato. Sci. Ser. Ii-math. Symmetry and Heterogeneity in High Temperature Superconductors = Nato Sci Ser Ii Math Symmetry and Heterogeneity in High Temperature Superconductors = Nato. Sci. Ser. Ii. Math. Symmetry and Pairing in Superconductors = Nato Asi 3 High Tech Symmetry and Pairing in Superconductors = Nato. Asi. 3. High. Tech. Symmetry and Spaces = Prog Math Symmetry and Spaces = Prog. Math. Symmetry and Structural Properties of Condensed Matter = J Phys Conf Ser Symmetry and Structural Properties of Condensed Matter = J. Phys. Conf. Ser. Symmetry and Structural Properties of Condensed Matter (sspcm 2005): Proceedings of The 8th International School On Theoretical Physics = J Phys Conf Ser Symmetry and Structural Properties of Condensed Matter (sspcm 2005): Proceedings of The 8th International School On Theoretical Physics = J. Phys. Conf. Ser. Symmetry and Topology in Evolution = Kfki Prep R Symmetry and Topology in Evolution = Kfki. Prep. R. Symmetry Breaking, Second Edition = Lect Notes Phys Symmetry Breaking, Second Edition = Lect. Notes. Phys. Symmetry: Culture and Science = Symmetry Cult. Sci. Symmetry for Elliptic Pdes = Contemp Math Symmetry for Elliptic Pdes = Contemp. Math. Symmetry, Group Theory, and The Physical Properties of Crystals = Lect Notes Phys Symmetry, Group Theory, and The Physical Properties of Crystals = Lect. Notes. Phys. Symmetry in Chaos: A Search for Pattern in Mathematics, Art, and Nature, Second Edition = Other Titl Appl Math Symmetry in Chaos: A Search for Pattern in Mathematics, Art, and Nature, Second Edition = Other. Titl. Appl. Math. Symmetry in Mathematics and Physics = Contemp Math Symmetry in Mathematics and Physics = Contemp. Math. Symmetry Integrability and Geometry-methods and Applications = Symmetry Integr Geom Symmetry Integrability and Geometry-methods and Applications = Symmetry Integr. Geom. Symmetry, Representations, and Invariants = Grad Texts Math Symmetry, Representations, and Invariants = Grad. Texts. Math. Symmetry Rules: How Science and Nature Are Founded On Symmetry = Front Collect Symmetry Rules: How Science and Nature Are Founded On Symmetry = Front. Collect. Symplectic 4-manifolds and Algebraic Surfaces = Lect Notes Math Symplectic 4-manifolds and Algebraic Surfaces = Lect. Notes. Math. Symplectic and Mechanical Geometry = Lect Notes Math Symplectic and Mechanical Geometry = Lect. Notes. Math. Symplectic Geometry, Groupoids, and Integrable Systems = Math Sci R Symplectic Geometry, Groupoids, and Integrable Systems = Math. Sci. R. Symplectic Geometry of Integrable Hamiltonian Systems = Ad Co Math Symplectic Geometry of Integrable Hamiltonian Systems = Ad. Co. Math. Symplectic Manifolds With No Kahler Structure = Lect Notes Math Symplectic Manifolds With No Kahler Structure = Lect. Notes. Math. Symplectic Methods in Harmonic Analysis and in Mathematical Physics = Pseudo Differ Oper Symplectic Methods in Harmonic Analysis and in Mathematical Physics = Pseudo. Differ. Oper. Symplectic Topology and Measure Preserving Dynamical Systems = Contemp Math Symplectic Topology and Measure Preserving Dynamical Systems = Contemp. Math. Symposia Biologica Hungarica = Symp Biol Hung Symposia Biologica Hungarica = Symp. Biol. Hung. Symposia Fondation Merieux = Sym Fond M Symposia Fondation Merieux = Sym. Fond. M. Symposia Gaussiana (series) = Sym Gaussiana Symposia Gaussiana (series) = Sym. Gaussiana Symposia Gaussiana = Sympos. Gaussiana Symposia Mathematica = Sym Math Symposia Mathematica = Sym. Math. Symposia Mathematica = Sympos. Math. Symposia Medica Hoechst = Symp Med H Symposia Medica Hoechst = Symp. Med. H. Symposia of The Fyssen Foundation = Symp Syssen Fdn Symposia of The Fyssen Foundation = Symp. Syssen. Fdn. Symposia of the Society for Experimental Biology = Symp Soc Exp Biol Symposia of the Society for Experimental Biology = Symp. Soc. Exp. Biol. Symposia of The Society For Experimental Biology=Symp Soc Exp Biol;; Symposia of The Society for Experimental Biology = Sym Soc Exp Biol Symposia of The Society for Experimental Biology = Sym. Soc. Exp. Biol. Symposia of The Society for General Microbiology = Symp Soc Gen Microbi Symposia of The Society for General Microbiology = Symp. Soc. Gen. Microbi. Symposia of The Society for The Study of Human Biology = Sym S Stud Symposia of The Society for The Study of Human Biology = Sym. S. Stud. Symposia of the Swedish Nutrition Foundation = Symp Swed Nutr Found Symposia of the Swedish Nutrition Foundation = Symp. Swed. Nutr. Found. Symposia of The Zoological Society of London = Sym Zool S Symposia of The Zoological Society of London = Sym. Zool. S. Symposia On The Pharmacology of Thermoregulation = Symp Pharma Symposia On The Pharmacology of Thermoregulation = Symp. Pharma. Symposion = Symposion Symposium-a Quarterly Journal in Modern Foreign Literatures = Symposium Symposium-a Quarterly Journal in Modern Foreign Literatures = Symposium. Symposium-a Quarterly Journal in Modern Literatures = Symposium Symposium-a Quarterly Journal in Modern Literatures = Symposium. Symposium Gyro Technology 2008 = Symposium Gyro Techn Symposium Gyro Technology 2008 = Symposium Gyro Techn. Symposium Gyro Technology 2009 = Symposium Gyro Techn Symposium Gyro Technology 2009 = Symposium Gyro Techn. Symposium Gyro Technology = Symposium Gyro Techn Symposium Gyro Technology = Symposium Gyro Techn. Symposium in Honour of Antonino Zichichi to Celebrate The 30th Anniversary of The Discovery of Nuclear Antimatter = Ital Phy So Symposium in Honour of Antonino Zichichi to Celebrate The 30th Anniversary of The Discovery of Nuclear Antimatter = Ital. Phy. So. Symposium - International Astronomical Union = Symp. - Int. Astron. Union Symposium (International) on Combustion, [Proceedings] = Symp. (Int.) Combust., [Proc.] Symposium (International) on Combustion = Symp. (Int.) Combust. Symposium of the Faraday Society = Symp. Faraday Soc. Symposium of the Pharmacology, Therapeutics and Toxicology Group, International Association for Dental Research = Symp. Pharmacol. Ther. Toxicol. Group. Symposium Of The Pharmacology, Therapeutics And Toxicology Group, International Association For Dental Research = Symp Pharmacol Ther Toxicol Group Symposium of the Society for Developmental Biology = Symp. Soc. Dev. Biol. Symposium On Bedding and Pot Plant Culture = Acta Hortic Symposium On Bedding and Pot Plant Culture = Acta. Hortic. Symposium On Computer Applications in Medical Care = Proc Symp Comput App Symposium On Computer Applications in Medical Care = Proc. Symp. Comput. App. Symposium On Flower Bulbs = Acta Hortic Symposium On Flower Bulbs = Acta. Hortic. Symposium on Fundamental Cancer Research = Symp Fundam Cancer Res Symposium on Fundamental Cancer Research = Symp. Fundam. Cancer Res. Symposium On Health Care Ethics = Res Eth Iss Org Symposium On Health Care Ethics = Res. Eth. Iss. Org. Symposium On High Performance Interconnects = Symp Hi Per Int Symposium On High Performance Interconnects = Symp. Hi. Per. Int. Symposium On Integrated Fruit Production = Acta Hortic Symposium On Integrated Fruit Production = Acta. Hortic. Symposium On Lexicography Iv = Lexicograph Symposium On Lexicography Iv = Lexicograph. Symposium On Lexicography Ix, Proceedings = Lexicograph Symposium On Lexicography Ix, Proceedings = Lexicograph. Symposium On Lexicography Ix, Proceedings = Lexicogr Ser Maior Symposium On Lexicography Ix, Proceedings = Lexicogr. Ser. Maior. Symposium On Lexicography Viii = Lexicograph Symposium On Lexicography Viii = Lexicograph. Symposium On Lexicography Viii = Lexicogr Ser Maior Symposium On Lexicography Viii = Lexicogr. Ser. Maior. Symposium On Lexicography Vii = Lexicograph Symposium On Lexicography Vii = Lexicograph. Symposium On Lexicography Vi = Lexicograph Symposium On Lexicography Vi = Lexicograph. Symposium On Lexicography V = Lexicograph Symposium On Lexicography V = Lexicograph. Symposium On Lexicography X = Lexicograph Symposium On Lexicography X = Lexicograph. Symposium On Lexicography X = Lexicogr Ser Maior Symposium On Lexicography X = Lexicogr. Ser. Maior. Symposium On Logic in Computer Science - Lics '94, Proceedings = Ieee S Log Symposium On Logic in Computer Science - Lics '94, Proceedings = Ieee. S. Log. Symposium On Monoclonal Antibodies for Therapy, Prevention and in Vivo Diagnosis of Human Disease = Dev Biologicals Symposium On Monoclonal Antibodies for Therapy, Prevention and in Vivo Diagnosis of Human Disease = Dev. Biologicals. Symposium On Nucleic Acids Technology = Nucl Acid S Symposium On Nucleic Acids Technology = Nucl. Acid. S. Symposium on Oral Sensation and Perception = Symp Oral Sens Percept Symposium on Oral Sensation and Perception = Symp. Oral Sens. Percept. Symposium On Plant Biotechnology As A Tool for The Exploitation of Mountain Lands = Acta Hortic Symposium On Plant Biotechnology As A Tool for The Exploitation of Mountain Lands = Acta. Hortic. Symposium On Reliable Distributed Systems Proceedings = Sym Rel Dist Syst Symposium On Reliable Distributed Systems Proceedings = Sym. Rel. Dist. Syst. Symposium On Reliable Distributed Systems, Proceedings = Sym Rel Dist Syst Symposium On Reliable Distributed Systems, Proceedings = Sym. Rel. Dist. Syst. Symposium On Resource Use and Conservation of The African Great Lakes, Bujumbura 1989 = Int Ver The Symposium On Resource Use and Conservation of The African Great Lakes, Bujumbura 1989 = Int. Ver. The Symposium On Sustainable Management of Hemlock Ecosystems in Eastern North America, Proceedings = Usda Ne Exp Symposium On Sustainable Management of Hemlock Ecosystems in Eastern North America, Proceedings = Usda. Ne. Exp. Symposium On The Saint-lawrence - A River to Be Reclaimed = C Env Geol Symposium On The Saint-lawrence - A River to Be Reclaimed = C. Env. Geol. Symposium On The Timing of Field Production of Vegetables = Acta Hortic Symposium On The Timing of Field Production of Vegetables = Acta. Hortic. Symposium On Timing Field Production of Vegetables = Acta Hortic Symposium On Timing Field Production of Vegetables = Acta. Hortic. Symposium On Tropical Fruit in International Trade = Acta Hortic Symposium On Tropical Fruit in International Trade = Acta. Hortic. Symposium On Visual Languages and Human Centric Computing-vl Hcc = S Vis Lang Hum Cen C Symposium On Visual Languages and Human Centric Computing-vl Hcc = S. Vis. Lang. Hum. Cen. C. Symposium On Vlsi Circuits-digest of Papers = Symp Vlsi Circuits Symposium On Vlsi Circuits-digest of Papers = Symp. Vlsi Circuits. Symposium On Vlsi Technology-digest of Technical Papers = S Vlsi Tech Symposium On Vlsi Technology-digest of Technical Papers = S. Vlsi Tech. Symposium Proceedings - Society of Experimental Test Pilots = Symp P Soc Exp T Pil Symposium Proceedings - Society of Experimental Test Pilots = Symp. P. Soc. Exp. T. Pil. Symposium series (Society for Applied Microbiology) = Symp Ser Soc Appl Microbiol Symposium Series, Society for Applied Microbiology = Symp. Ser. Soc. Appl. Microbiol. Symposium Series = Symposium S Symposium Series = Symposium S. Synagoge-synagoge Lexeon Chresimon = Samml Griech Lat Gra Synagoge-synagoge Lexeon Chresimon = Samml. Griech. Lat. Gra. Synapse (New York, N.Y.) = Synapse Synapse (New York, NY, United States) = Synapse (N. Y., NY, U. S.) Synapse=Synapse;; Synapse = Synapse Synchronic Corpus Linguistics = Lang Comput Synchronic Corpus Linguistics = Lang. Comput. Synchronization and Triggering: From Fracture to Earthquake Processes - Laboratory, Field Analysis and Theories = Geoplanet-earth Plan Synchronization and Triggering: From Fracture to Earthquake Processes - Laboratory, Field Analysis and Theories = Geoplanet-earth. Plan. Synchronization: From Simple to Complex = Springer Ser Synerg Synchronization: From Simple to Complex = Springer. Ser. Synerg. Synchronization in Complex Networks = Comput Netw Ser Synchronization in Complex Networks = Comput. Netw. Ser. Synchronization: Theory and Application = Nato Sci Ser Ii-math Synchronization: Theory and Application = Nato. Sci. Ser. Ii-math. Synchronization: Theory and Application = Nato Sci Ser Ii Math Synchronization: Theory and Application = Nato. Sci. Ser. Ii. Math. Synchronized Phasor Measurements and Their Applications = Power Electron Power Synchronized Phasor Measurements and Their Applications = Power. Electron. Power. Synchrotron Radiation and Dynamic Phenomena = Aip Conf Proc Synchrotron Radiation and Dynamic Phenomena = Aip. Conf. Proc. Synchrotron Radiation in Materials Science = Aip Conf Proc Synchrotron Radiation in Materials Science = Aip. Conf. Proc. Synchrotron Radiation in Polymer Science (srps 4) = Iop Conf Ser-mat Sci Synchrotron Radiation in Polymer Science (srps 4) = Iop. Conf. Ser-mat. Sci. Synchrotron Radiation in Structural Biology = Basic Life Sci Synchrotron Radiation in Structural Biology = Basic. Life. Sci. Synchrotron Radiation Instrumentation = Aip Conf Proc Synchrotron Radiation Instrumentation = Aip. Conf. Proc. Synchrotron Radiation Instrumentation, Pts 1 and 2 = Aip Conf Proc Synchrotron Radiation Instrumentation, Pts 1 and 2 = Aip. Conf. Proc. Synchrotron Radiation : Selected Experiments in Condensed Matter Physics = Monte Verit Synchrotron Radiation : Selected Experiments in Condensed Matter Physics = Monte. Verit. Synchrotron Techniques in Interfacial Electrochemistry = Nato Adv Sci Inst Se Synchrotron Techniques in Interfacial Electrochemistry = Nato. Adv. Sci. Inst. Se. Synchrotron X-ray Methods in Clay Science = Cms Work Lect Synchrotron X-ray Methods in Clay Science = Cms. Work. Lect. Syncretismes Et Heresies Dans L'oient Seldjoukide Et Ottoman = Collect Tur Syncretismes Et Heresies Dans L'oient Seldjoukide Et Ottoman = Collect. Tur. Synergetics of Cognition = Springer Series Syne Synergetics of Cognition = Springer. Series. Syne. Synergie---Syntropie---Nichtlineare Systeme = Synerg. Syntropie Nichtlineare Syst. Synergistic Use of Multisensor Data for Land Processes = Adv Space Res Synergistic Use of Multisensor Data for Land Processes = Adv. Space. Res. Synergy Between Dynamics and Reactivity At Clusters and Surfaces = Nato Adv Sci Inst Se Synergy Between Dynamics and Reactivity At Clusters and Surfaces = Nato. Adv. Sci. Inst. Se. Synergy in Polycentric Urban Regions: Complementarity, Organising Capacity and Critical Mass = Sustain Urban Areas Synergy in Polycentric Urban Regions: Complementarity, Organising Capacity and Critical Mass = Sustain. Urban Areas. Synlett : accounts and rapid communications in synthetic organic chemistry = Synlett Synlett = Synlett Synoptic Gospels = Bib Eph The Synoptic Gospels = Bib. Eph. The. Synoptic Solar Physics = Astr Soc P Synoptic Solar Physics = Astr. Soc. P. Syntax-a Journal of Theoretical Experimental and Interdisciplinary Research = Syntax-uk Syntax-a Journal of Theoretical Experimental and Interdisciplinary Research = Syntax-uk. Syntax and Semantics of Prepositions = Text Speech Lang Tec Syntax and Semantics of Prepositions = Text. Speech. Lang. Tec. Syntax and Semantics of The Left Periphery = Interface Explor Syntax and Semantics of The Left Periphery = Interface. Explor. Syntax and Semantics = Syntax Semantics Syntax and Semantics, Vol 25 = Syntax Semantics Syntax and Semantics, Vol 25 = Syntax Semantics. Syntax and Semantics, Vol 26 = Syntax Semantics Syntax and Semantics, Vol 26 = Syntax Semantics. Syntax and Semantics, Vol 27 = Syntax Semantics Syntax and Semantics, Vol 27 = Syntax Semantics. Syntax and Semantics, Vol 29 = Syntax Semantics Syntax and Semantics, Vol 29 = Syntax Semantics. Syntax and Semantics, Vol 30 = Syntax Semantics Syntax and Semantics, Vol 30 = Syntax Semantics. Syntax and Semantics, Vol 31 = Syntax Semantics Syntax and Semantics, Vol 31 = Syntax Semantics. Syntax and Semantics, Vol 32 = Syntax Semantics Syntax and Semantics, Vol 32 = Syntax Semantics. Syntax and Semantics, Vol 33 = Syntax Semantics Syntax and Semantics, Vol 33 = Syntax Semantics. Syntax and Semantics, Vol 34 = Syntax Semantics Syntax and Semantics, Vol 34 = Syntax Semantics. Syntax of (in)dependence = Linguist Inq Monogr Syntax of (in)dependence = Linguist. Inq. Monogr. Syntax of Tenselessness: Tense Mood Aspect-agreeing Infinitivals = Stud Generat Gramm Syntax of Tenselessness: Tense Mood Aspect-agreeing Infinitivals = Stud. Generat. Gramm. Syntax of Time = Curr Stud Linguist Syntax of Time = Curr. Stud. Linguist. Syntax (Oxford, England) = Syntax Synthese Library = Synthese Lib. Synthese Library = Synth Libr Synthese Library = Synth. Libr. Synthese = Synthese Synthese = Synthese Synthesis and Characterization of Advanced Materials = Acs Sym Ser Synthesis and Characterization of Advanced Materials = Acs. Sym. Ser. Synthesis and Chemistry of Agrochemicals Iv = Acs Sym Ser Synthesis and Chemistry of Agrochemicals Iv = Acs. Sym. Ser. Synthesis and Photonics of Nanoscale Materials Vii = P Soc Photo-opt Ins Synthesis and Photonics of Nanoscale Materials Vii = P. Soc. Photo-opt. Ins. Synthesis and Photosynthesis = Adv Polym Sci Synthesis and Photosynthesis = Adv. Polym. Sci. Synthesis and Processing of Ceramics : Scientific Issues = Mater Res Soc Symp P Synthesis and Processing of Ceramics : Scientific Issues = Mater. Res. Soc. Symp. P. Synthesis and Processing of Nanostructured Materials = Ceram Eng Sci Proc Synthesis and Processing of Nanostructured Materials = Ceram. Eng. Sci. Proc. Synthesis and Properties of Advanced Catalytic Materials = Mater Res Soc Symp P Synthesis and Properties of Advanced Catalytic Materials = Mater. Res. Soc. Symp. P. Synthesis and Properties of Mechanically Alloyed and Nanocrystalline Materials, Pts 1 and 2 - Ismanam-96 = Mater Sci Forum Synthesis and Properties of Mechanically Alloyed and Nanocrystalline Materials, Pts 1 and 2 - Ismanam-96 = Mater. Sci. Forum. Synthesis and Properties of Silicones and Silicone-modified Materials = Acs Sym Ser Synthesis and Properties of Silicones and Silicone-modified Materials = Acs. Sym. Ser. Synthesis and Properties of Surface Coatings = Adv Mat Res Synthesis and Properties of Surface Coatings = Adv. Mat. Res. Synthesis and Reactivity in Inorganic and Metal-organic Chemistry = Syn React Inorg Met Synthesis and Reactivity in Inorganic and Metal-organic Chemistry = Syn. React. Inorg. Met. Synthesis and Reactivity in Inorganic and Metal-Organic Chemistry = Synth. React. Inorg. Met.-Org. Chem. Synthesis and Reactivity in Inorganic Metal-organic and Nano-metal Chemistry = Synth React Inorg M Synthesis and Reactivity in Inorganic Metal-organic and Nano-metal Chemistry = Synth. React. Inorg. M. Synthesis and Reactivity in Inorganic Metal-organic and Nano-metal Chemistry = Synth React Inorg Me Synthesis and Reactivity in Inorganic Metal-organic and Nano-metal Chemistry = Synth. React. Inorg. Me. Synthesis and Reactivity in Inorganic, Metal-Organic, and Nano-Metal Chemistry = Synth. React. Inorg., Met.-Org., Nano-Met. Chem. Synthesis-cambridge = Synthesis-cambridge Synthesis/characterization and Noval Applications of Molecular Sieve Materials = Mater Res Soc Symp P Synthesis/characterization and Noval Applications of Molecular Sieve Materials = Mater. Res. Soc. Symp. P. Synthesis, Characterization and Properties of Energetic/reactive Nanomaterials = Mater Res Soc Symp P Synthesis, Characterization and Properties of Energetic/reactive Nanomaterials = Mater. Res. Soc. Symp. P. Synthesis, Characterization and Properties of Nanostructures: Computational and Experimental Approach = Solid State Phenomen Synthesis, Characterization and Properties of Nanostructures: Computational and Experimental Approach = Solid. State. Phenomen. Synthesis Imaging in Radio Astronomy = Astr Soc P Synthesis Imaging in Radio Astronomy = Astr. Soc. P. Synthesis Imaging in Radio Astronomy Ii = Astr Soc P Synthesis Imaging in Radio Astronomy Ii = Astr. Soc. P. Synthesis-international Journal of Methods in Synthetic Organic Chemistry = Synth-int J Methods Synthesis-international Journal of Methods in Synthetic Organic Chemistry = Synth-int. J. Methods Synthesis-la Plata = Synth-la Plata Synthesis-la Plata = Synth-la. Plata Synthesis of Carbohydrates Through Biotechnology = Acs Sym Ser Synthesis of Carbohydrates Through Biotechnology = Acs. Sym. Ser. Synthesis of Heterocycles Via Cycloadditions Ii = Top Heterocycl Chem Synthesis of Heterocycles Via Cycloadditions Ii = Top. Heterocycl. Chem. Synthesis of Heterocycles Via Cycloadditions I = Top Heterocycl Chem Synthesis of Heterocycles Via Cycloadditions I = Top. Heterocycl. Chem. Synthesis of Heterocycles Via Multicomponent Reactions I = Top Heterocycl Chem Synthesis of Heterocycles Via Multicomponent Reactions I = Top. Heterocycl. Chem. Synthesis of Porous Materials = Chem Indust Synthesis of Porous Materials = Chem. Indust. Synthesis of Three Dimendional Haptic Textures: Geometry, Control, and Psychophysics = Springer Ser Touch Synthesis of Three Dimendional Haptic Textures: Geometry, Control, and Psychophysics = Springer. Ser. Touch. Synthesis philosophica = Synth Philos Synthesis Philosophica = Synth Philos Synthesis Philosophica = Synth. Philos. Synthesis, Properties and Applications of Ultrananocrystalline Diamond = Nato Sci Ser Ii-math Synthesis, Properties and Applications of Ultrananocrystalline Diamond = Nato. Sci. Ser. Ii-math. Synthesis, Properties and Applications of Ultrananocrystalline Diamond = Nato Sci Ser Ii Math Synthesis, Properties and Applications of Ultrananocrystalline Diamond = Nato. Sci. Ser. Ii. Math. Synthesis, Properties, and Crystal Chemistry of Perovskite-based Materials = Ceram Trans Synthesis, Properties, and Crystal Chemistry of Perovskite-based Materials = Ceram. Trans. Synthesis-stuttgart = Synthesis-stuttgart Synthesis = Synthesis Synthesis = Synthesis (Stuttg) Synthetic and Integrative Biology: Parts and Systems, Design Theory and Applications = Biotech Agr Ind Med Synthetic and Integrative Biology: Parts and Systems, Design Theory and Applications = Biotech. Agr. Ind. Med. Synthetic Aperture Radar and Passive Microwave Sensing = P Soc Photo-opt Ins Synthetic Aperture Radar and Passive Microwave Sensing = P. Soc. Photo-opt. Ins. Synthetic Aperture Radar = P Soc Photo-opt Ins Synthetic Aperture Radar = P. Soc. Photo-opt. Ins. Synthetic Biology, Pt B = Method Enzymol Synthetic Biology, Pt B = Method. Enzymol. Synthetic Biology = Synth. Biol. Synthetic communications = Synth Commun Synthetic Communications = Synth. Commun. Synthetic Communications = Synthetic Commun Synthetic Communications = Synthetic Commun. Synthetic Fibers = Synth. Fibres Synthetic Lubrication = Synth. Lubr. Synthetic Metals = Synthetic Met Synthetic Metals = Synthetic Met. Synthetic Metals = Synth. Met. Synthetic Oligosaccharides = Acs Sym Ser Synthetic Oligosaccharides = Acs. Sym. Ser. Synthetic Polymeric Membranes: Characterization By Atomic Force Microscopy = Springer Lab Man Pol Synthetic Polymeric Membranes: Characterization By Atomic Force Microscopy = Springer. Lab. Man. Pol. Synthetic Pyrethroids = Acs Sym Ser Synthetic Pyrethroids = Acs. Sym. Ser. Synthetic Vision for Vehicle Guidance and Control = P Soc Photo-opt Ins Synthetic Vision for Vehicle Guidance and Control = P. Soc. Photo-opt. Ins. Syracuse law review = Syracuse Law Rev Syracuse Law Review = Syracuse Law Rev Syracuse Law Review = Syracuse Law Rev. Syracuse Studies On Peace and Conflict Resolution = Syr S Peace Syracuse Studies On Peace and Conflict Resolution = Syr. S. Peace Syria. Revue d’art oriental et d’archéologie = Syria Syria's Kurds: History, Politics and Society = Routl Adv Midd E Isl Syria's Kurds: History, Politics and Society = Routl. Adv. Midd. E. Isl. Syro-Mesopotamian Studies = SyrMesopSt System Analysis and Modeling: Language Profiles = Lect Notes Comput Sc System Analysis and Modeling: Language Profiles = Lect. Notes. Comput. Sc. System Analysis and Modeling = Lect Notes Comput Sc System Analysis and Modeling = Lect. Notes. Comput. Sc. Systematic and Applied Acarology = Syst Appl Acarol-uk Systematic and Applied Acarology = Syst. Appl. Acarol-uk. Systematic and applied microbiology = Syst Appl Microbiol Systematic and Applied Microbiology = Syst Appl Microbiol Systematic and Applied Microbiology = Syst. Appl. Microbiol. Systematic Approach to Tsetse and Trypanosomiasis Control = Fao Anim Pr Systematic Approach to Tsetse and Trypanosomiasis Control = Fao. Anim. Pr. Systematic biology = Syst Biol Systematic Biology=Syst Biol;; Systematic Biology = Syst Biol Systematic Biology = Syst. Biol. Systematic Biology = Systematic Biol Systematic Biology = Systematic Biol. Systematic Botany = Syst Bot Systematic Botany = Syst. Bot. Systematic entomology = Syst Entomol Systematic Entomology = Syst Entomol Systematic Entomology = Syst. Entomol. Systematic Organisation of Information in Fuzzy Systems = Nato Sc S Ss Iii C S Systematic Organisation of Information in Fuzzy Systems = Nato. Sc. S. Ss. Iii. C. S. Systematic parasitology = Syst Parasitol Systematic Parasitology = Syst Parasitol Systematic Parasitology = Syst. Parasitol. Systematics and Biodiversity = Syst Biodivers Systematics and Biodiversity = Syst. Biodivers. Systematics Association Special Volume Series = Syst Assoc Spec Vol Systematics Association Special Volume Series = Syst. Assoc. Spec. Vol. Systematics Association Special Volumes = Syst Assoc Systematics Association Special Volumes = Syst. Assoc. Systematics Association Special Volumes = Syst Assoc Spec Vol Systematics Association Special Volumes = Syst. Assoc. Spec. Vol. Systematics = Systematics Systematic zoology = Syst Zool Systematic Zoology = Syst Zool Systematic Zoology = Syst. Zool. Systematik Im Aufbruch = Cour For Sekenbg Systematik Im Aufbruch = Cour. For. Sekenbg. System Configuration Management = Lect Notes Comput Sc System Configuration Management = Lect. Notes. Comput. Sc. System & Control Letters = Syst. Control Lett. System Development Foundation Benchmark Series = Sys Dev Fdn System Development Foundation Benchmark Series = Sys. Dev. Fdn. System Diagnosis and Prognosis: Security and Condition Monitoring Issues Iii = Proc Spie System Diagnosis and Prognosis: Security and Condition Monitoring Issues Iii = Proc. Spie. System Diagnosis and Prognosis: Security and Condition Monitoring Issues Iii = P Soc Photo-opt Ins System Diagnosis and Prognosis: Security and Condition Monitoring Issues Iii = P. Soc. Photo-opt. Ins. System Dynamic and Long-term Behaviour of Railway Vehicles,track and Subgrade = L Not App M System Dynamic and Long-term Behaviour of Railway Vehicles,track and Subgrade = L. Not. App. M. System Dynamics of The Railroad : Experiences, Service Life, Economic Efficiency = Vdi Bericht System Dynamics of The Railroad : Experiences, Service Life, Economic Efficiency = Vdi. Bericht. System Dynamics Review = Syst Dynam Rev System Dynamics Review = Syst. Dynam. Rev. System Earth Via Geodetic-geophysical Space Techniques = Adv Technol Earth Sc System Earth Via Geodetic-geophysical Space Techniques = Adv. Technol. Earth Sc. System Engineering in Automotive Design = Vdi Bericht System Engineering in Automotive Design = Vdi. Bericht. System-ergonomic Design of Cognitive Automation = Stud Comput Intell System-ergonomic Design of Cognitive Automation = Stud. Comput. Intell. System Familie-forschung Und Therapie = Syst Fam System Familie-forschung Und Therapie = Syst. Fam. System Familie = Syst Fam System Familie = Syst. Fam. Systemic Governance and Accountability: Working and Re-working The Conceptual and Spatial Boundaries = C W Churchm Leg Rel Systemic Governance and Accountability: Working and Re-working The Conceptual and Spatial Boundaries = C. W. Churchm. Leg. Rel. Systemic Lupus Erythematosus : Renal Vasculitis = Contrib Nephrol Systemic Lupus Erythematosus : Renal Vasculitis = Contrib. Nephrol. Systemic Manifestations of Ibd = Falk Symp Systemic Manifestations of Ibd = Falk. Symp. Systemic Practice and Action Research = Syst Pract Act Res Systemic Practice and Action Research = Syst. Pract. Act. Res. Systemic Transitions: Past, Present, and Future = Evol Proc World Pol Systemic Transitions: Past, Present, and Future = Evol. Proc. World. Pol. System Identification: An Introduction = Adv Txb Contr Sig Pr System Identification: An Introduction = Adv. Txb. Contr. Sig. Pr. System Identification With Quantized Observations = Syst Control-found A System Identification With Quantized Observations = Syst. Control-found. A. System Modeling and Optimization = Ifip Adv Inf Comm Te System Modeling and Optimization = Ifip. Adv. Inf. Comm. Te. System Modeling and Optimization = Int Fed Info Proc System Modeling and Optimization = Int. Fed. Info. Proc. System Modeling and Optimization Xx = Int Fed Info Proc System Modeling and Optimization Xx = Int. Fed. Info. Proc. System Modelling and Optimization = Int Fed Info Proc System Modelling and Optimization = Int. Fed. Info. Proc. System-on-chip Design and Technologies = Syst-chip Des Techno System-on-chip Design and Technologies = Syst-chip. Des. Techno. System-on-chip for Real-time Applications = Kluwer Int Ser Eng C System-on-chip for Real-time Applications = Kluwer. Int. Ser. Eng. C. System-on-chip for Real-time Applications = Springer Int Ser Eng System-on-chip for Real-time Applications = Springer. Int. Ser. Eng. System Optimization for Railway Traffic = Vdi Bericht System Optimization for Railway Traffic = Vdi. Bericht. Systems Analysis and Design: Techniques, Methodologies, Approaches, and Architectures = Adv Manag Inform Sys Systems Analysis and Design: Techniques, Methodologies, Approaches, and Architectures = Adv. Manag. Inform. Sys. Systems Analysis in Forest Resources, Proceedings = Manag For Ecosyst Systems Analysis in Forest Resources, Proceedings = Manag. For. Ecosyst. Systems Analysis Modelling Simulation = Syst Anal Model Sim Systems Analysis Modelling Simulation = Syst. Anal. Model. Sim. Systems and Computers in Japan = Syst Comput Jpn Systems and Computers in Japan = Syst. Comput. Jpn. Systems and Control-foundations and Applications = Syst Control-found A Systems and Control-foundations and Applications = Syst. Control-found. A. Systems and Control in The Twenty-first Century = Prog Syst C Systems and Control in The Twenty-first Century = Prog. Syst. C. Systems and Control = Syst Control Systems and Control = Syst. Control Systems and Networks: Mathematical Theory and Applications, Vol 1 = Math Res Systems and Networks: Mathematical Theory and Applications, Vol 1 = Math. Res. Systems and Technologies for Clinical Diagnostics and Drug Discovery Ii, Proceedings Of = Proc Spie Systems and Technologies for Clinical Diagnostics and Drug Discovery Ii, Proceedings Of = Proc. Spie. Systems and Technologies for Clinical Diagnostics and Drug Discovery Ii, Proceedings Of = P Soc Photo-opt Ins Systems and Technologies for Clinical Diagnostics and Drug Discovery Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Systems and Technologies for Clinical Diagnostics and Drug Discovery, Proceedings Of = Proc Spie Systems and Technologies for Clinical Diagnostics and Drug Discovery, Proceedings Of = Proc. Spie. Systems and Technologies for Clinical Diagnostics and Drug Discovery, Proceedings Of = P Soc Photo-opt Ins Systems and Technologies for Clinical Diagnostics and Drug Discovery, Proceedings Of = P. Soc. Photo-opt. Ins. Systems and Virtualization Management: Standards and New Technologies = Comm Com Inf Sc Systems and Virtualization Management: Standards and New Technologies = Comm. Com. Inf. Sc. Systems and Virtualization Management: Standards and The Cloud = Comm Com Inf Sc Systems and Virtualization Management: Standards and The Cloud = Comm. Com. Inf. Sc. Systems Approaches for Agricultural Development = Syst Appr S Systems Approaches for Agricultural Development = Syst. Appr. S. Systems Approaches for Sustainable Agricultural Development = Syst Appr S Systems Approaches for Sustainable Agricultural Development = Syst. Appr. S. Systems Approaches to Developmental Neurobiology = Nato Adv Sci I A-lif Systems Approaches to Developmental Neurobiology = Nato. Adv. Sci. I. A-lif. Systems, Approximation, Singular Integral Operators, and Related Topics = Oper Theor Systems, Approximation, Singular Integral Operators, and Related Topics = Oper. Theor. Systems, Approximation, Singular Integral Operators, and Related Topics = Oper Theory Adv Appl Systems, Approximation, Singular Integral Operators, and Related Topics = Oper. Theory. Adv. Appl. Systems Aspects in Organic and Pervasive Computing - Arcs 2005, Proceedings = Lect Notes Comput Sc Systems Aspects in Organic and Pervasive Computing - Arcs 2005, Proceedings = Lect. Notes. Comput. Sc. Systems Biology and Computational Proteomics = Lect Notes Comput Sc Systems Biology and Computational Proteomics = Lect. Notes. Comput. Sc. Systems Biology and Regulatory Genomics = Lect Notes Comput Sc Systems Biology and Regulatory Genomics = Lect. Notes. Comput. Sc. Systems Biology: Applications and Perspectives = E Schering Res Fdn W Systems Biology: Applications and Perspectives = E. Schering. Res. Fdn. W. Systems Biology for Signaling Networks = Syst Bio Systems Biology for Signaling Networks = Syst. Bio. Systems Biology in Drug Discovery and Development: Methods and Protocols = Methods Mol Biol Systems Biology in Drug Discovery and Development: Methods and Protocols = Methods Mol. Biol. Systems Biology in Reproductive Medicine = Syst Biol Reprod Mec Systems Biology in Reproductive Medicine = Syst. Biol. Reprod. Mec. Systems Biology in Reproductive Medicine = Syst Biol Reprod Med Systems Biology in Reproductive Medicine = Syst. Biol. Reprod. Med. Systems Biology-springer = Syst Bio Systems Biology-springer = Syst. Bio. Systems Biology = Syst. Biol. Systems biology = Syst Biol (Stevenage) Systems Biology = Systems Biol Systems Biology = Systems Biol. Systems Biology Theory Techniques and Applications = Syst Biol Theor Tech Systems Biology Theory Techniques and Applications = Syst. Biol. Theor. Tech. System Science in Health Care, 1 = Col Med Le System Science in Health Care, 1 = Col. Med. Le. System Science in Health Care, 2 = Col Med Le System Science in Health Care, 2 = Col. Med. Le. System Science in Health Care, 3 = Col Med Le System Science in Health Care, 3 = Col. Med. Le. Systems, Control and Information = Systems Control Inform. Systems & Control : Foundations & Applications = Sys Con Fdn Systems & Control : Foundations & Applications = Sys. Con. Fdn. Systems & Control: Foundations & Applications = Systems Control Found. Appl. Systems & control letters = Syst Control Lett Systems & Control Letters = Syst Control Lett Systems & Control Letters = Syst. Control Lett. Systems & Control Letters = Systems Control Lett. Systems, Control, Modeling and Optimization = Int Fed Info Proc Systems, Control, Modeling and Optimization = Int. Fed. Info. Proc. Systems Engineering Approach to Medical Automation = Eng Med Biol Systems Engineering Approach to Medical Automation = Eng. Med. Biol. Systems Engineering in Public Administration = Ifip Trans A Systems Engineering in Public Administration = Ifip. Trans. A. Systems Engineering = Systems Eng Systems Engineering = Systems Eng. Systems Engineering = Syst Eng Systems Engineering = Syst. Eng. Systems Engineering - Theory & Practice = Syst. Eng. Theory Pract. Systems Evaluation Prediction and Decision-making Series = Syst Eval Predict De Systems Evaluation Prediction and Decision-making Series = Syst. Eval. Predict. De. System Signatures and Their Applications in Engineering Reliability = Int Ser Oper Res Man System Signatures and Their Applications in Engineering Reliability = Int. Ser. Oper. Res. Man. Systems Integration Business = Syst Integrat Bus Systems Integration Business = Syst. Integrat. Bus. Systems Modeling and Simulation: Theory and Applications = Lect Notes Comput Sc Systems Modeling and Simulation: Theory and Applications = Lect. Notes. Comput. Sc. Systems Modelling and Optimization = Ch Crc Res Notes Systems Modelling and Optimization = Ch. Crc. Res. Notes. Systems Modelling and Optimization = Ch Crc Res Notes Mat Systems Modelling and Optimization = Ch. Crc. Res. Notes. Mat. Systems, Models and Feedback : Theory and Applications = Prog Syst C Systems, Models and Feedback : Theory and Applications = Prog. Syst. C. Systems Objectives Solutions = Syst Object Solut Systems Objectives Solutions = Syst. Object. Solut. Systems of Optical Security 2003 = Proc Spie Systems of Optical Security 2003 = Proc. Spie. Systems of Optical Security 2003 = P Soc Photo-opt Ins Systems of Optical Security 2003 = P. Soc. Photo-opt. Ins. Systems-oriented Optical Design = P Soc Photo-opt Ins Systems-oriented Optical Design = P. Soc. Photo-opt. Ins. Systems Practice in The Information Society = Routl Ser Inform Sys Systems Practice in The Information Society = Routl. Ser. Inform. Sys. Systems Practice = Syst Practice Systems Practice = Syst. Practice Systems Reliability Assessment = Ispra C Rel Systems Reliability Assessment = Ispra. C. Rel. Systems Research and Behavioral Science = Syst Res Behav Sci Systems Research and Behavioral Science = Syst. Res. Behav. Sci. Systems Research and Information Science = Syst Res Inform Sci Systems Research and Information Science = Syst. Res. Inform. Sci. Systems Research = Syst Res Systems Research = Syst. Res. Systems research : the official journal of the International Federation for Systems Research = Syst Res Systems Science and Mathematical Sciences = Systems Sci. Math. Sci. Systems, Software and Services Process Improvement = Comm Com Inf Sc Systems, Software and Services Process Improvement = Comm. Com. Inf. Sc. Systems Technology = Syst Technol Systems Technology = Syst. Technol. Systems Thinking: Coping With 21st Century Problems = Ind Innov Ser Systems Thinking: Coping With 21st Century Problems = Ind. Innov. Ser. System Structure and Control 2001, Vols 1 and 2 = Ifac Symp Series System Structure and Control 2001, Vols 1 and 2 = Ifac. Symp. Series. System Structure and Control = Ifac Work S System Structure and Control = Ifac. Work. S. Systems With Fast Ionic Transport = Mater Sci Forum Systems With Fast Ionic Transport = Mater. Sci. Forum. System = System System Theory: Modeling, Analysis, and Control = Kluwer Int Ser Eng C System Theory: Modeling, Analysis, and Control = Kluwer. Int. Ser. Eng. C. System Theory: Modeling, Analysis, and Control = Springer Int Ser Eng System Theory: Modeling, Analysis, and Control = Springer. Int. Ser. Eng. System Theory, The Schur Algorithm and Multidimensional Analysis = Oper Theor System Theory, The Schur Algorithm and Multidimensional Analysis = Oper. Theor. System Transformation in Central and Eastern Europe and Its Consequences for Banks, Stock Markets and Credit Worthiness = Beitr Ausland Int Pr System Transformation in Central and Eastern Europe and Its Consequences for Banks, Stock Markets and Credit Worthiness = Beitr. Ausland. Int. Pr. Systemtransformation in Mittel- Und Osteuropa Und Ihre Folgen Fur Banken, Borsen Und Kreditsicherheiten = Beitr Ausland Int Pr Systemtransformation in Mittel- Und Osteuropa Und Ihre Folgen Fur Banken, Borsen Und Kreditsicherheiten = Beitr. Ausland. Int. Pr. Systemwide Efforts to Improve Student Achievement = Res Educ Policy Loca Systemwide Efforts to Improve Student Achievement = Res. Educ. Policy. Loca. Systolic and Diastolic Function of The Heart = St Heal T Systolic and Diastolic Function of The Heart = St. Heal. T. Szazadok = Szazadok Szczecinskie Towarzystwo Naukowe, Wydzial Nauk Lekarskich = Szczecin Tow Nauk Wydz Nauk Lek Szegos Theorem and Its Descendants: Spectral Theory for L2 Perturbations of Orthogonal Polynomials = Porter Lect Szegos Theorem and Its Descendants: Spectral Theory for L2 Perturbations of Orthogonal Polynomials = Porter. Lect. Szemeszet = Szemeszet Szociologiai Szemle = Szociol Szle Szociologiai Szemle = Szociol. Szle. Tablet (Brooklyn, New York, N.Y.) = Tablet Tabletops-horizontal Interactive Displays = Hum-comput Int-sprin Tabletops-horizontal Interactive Displays = Hum-comput. Int-sprin. Tabriz University Series = Tabriz Univ. Ser. Tabula Imperii Byzantini = TIB Tabula Picta: Painting and Writing in Medieval Law = Mater Texts Tabula Picta: Painting and Writing in Medieval Law = Mater. Texts. Tactical Biopolitics: Art, Activism, and Technoscience = Leonardo Ser Tactical Biopolitics: Art, Activism, and Technoscience = Leonardo. Ser. Tactical Infrared Systems = P Soc Photo-opt Ins Tactical Infrared Systems = P. Soc. Photo-opt. Ins. Tactile Perception of Textiles in A Virtual-reality System = Cogn Syst Monogr Tactile Perception of Textiles in A Virtual-reality System = Cogn. Syst. Monogr. Taehan Chikkwa Uisa Hyophoe Chi (Journal of the Korean Dental Association) = Taehan Chikkwa Uisa Hyophoe Chi Taehan Ch'ikkwa Uisa Hyophoe chi = Taehan Chikkwa Uisa Hyophoe Chi Taehan Imsang Misaengmul Hakhoe chi = Korean journal of clinical microbiology|Taehan Imsang Misaengmul Hakhoe Chi Taehan Imsang Pyongni Hakhoe chi = Korean journal of clinical pathology|Korean J. Clin. Pathol. Taehan Kanho Hakhoe chi = Taehan Kanho Hakhoe Chi Taehan Kanho Hakhoe Chi = Taehan Kanho Hakhoe Chi Taehan Kanho (Korean Nurse) = Taehan Kanho Taehan kanho. The Korean nurse = Taehan Kanho Taehan Kumsok, Chaeryo Hakhoechi = Taehan Kumsok, Chaeryo Hakhoechi Taehan Kumsok Hakhoechi = Taehan Kumsok Hakhoechi Taehan Misaengmul Hakhoe chi = The journal of the Korean Society for Microbiology|Taehan Misaengmul Hakhoe Chi Taehan Uihak Hyophoe chi. The Journal of the Korean Medical Association = Taehan Uihak Hyophoe Chi Tages-Anzeiger Magazin = Tages-Anz. Mag. Tagging and Tracking of Marine Animals With Electronic Devices = Rev-methods Technol Tagging and Tracking of Marine Animals With Electronic Devices = Rev-methods. Technol. Tagging and Tracking of Marine Animals With Electronic Devices = Rev M T Fis Tagging and Tracking of Marine Animals With Electronic Devices = Rev. M. T. Fis. TAG. Theoretical and applied genetics. Theoretische und angewandte Genetik = Theor Appl Genet Tagungsbericht / Akademie Der Landwirtschaftswissenschaften Der Ddr = Tag Ak Land Tagungsbericht / Akademie Der Landwirtschaftswissenschaften Der Ddr = Tag. Ak. Land. Tahqiqat-e eqtesadi (Quarterly Journal of Economic Research)=Tahq. Eq. Taikabutsu = Taikabutsu Tailored Light 2: Laser Application Technology = Rwthedition Tailored Light 2: Laser Application Technology = Rwthedition. Tailoring of Mechanical Properties of Si3n4 Ceramics = Nato Adv Sci I E-app Tailoring of Mechanical Properties of Si3n4 Ceramics = Nato. Adv. Sci. I. E-app. Tailoring of Mechanical Properties of Si3n4 Ceramics = Nato Adv Sci Inst Se Tailoring of Mechanical Properties of Si3n4 Ceramics = Nato. Adv. Sci. Inst. Se. Taiwan and Post-communist Europe = Routl Contemp Asia Taiwan and Post-communist Europe = Routl. Contemp. Asia. Taiwan Economic Review=Taiwan Econ. Rev. Taiwanese Journal of Mathematics = Taiwanese J. Math. Taiwanese Journal of Mathematics = Taiwan J Math Taiwanese Journal of Mathematics = Taiwan. J. Math. Taiwanese Journal of Obstetrics & Gynecology = Taiwan J Obstet Gyne Taiwanese Journal of Obstetrics & Gynecology = Taiwan. J. Obstet. Gyne. Taiwanese journal of obstetrics & gynecology = Taiwan J Obstet Gynecol Taiwan, Humanitarianism and Global Governance = Routledge Res Taiwan Taiwan, Humanitarianism and Global Governance = Routledge. Res. Taiwan. Taiwan in The 21st Century = Polit Asia Taiwan in The 21st Century = Polit. Asia. Taiwan in The Modern World = Taiw Mod W Taiwan in The Modern World = Taiw. Mod. W. Taiwan nong ye hua xue yu shi pin ke xue = Taiwanese journal of agricultural chemistry and food science|Taiwan Nong Ye Hua Xue Yu Shi Pin Ke Xue Taiwan's Defense Reform = Routl Secur Asia Ser Taiwan's Defense Reform = Routl. Secur. Asia. Ser. Taiwan's Environmental Struggle: Toward A Green Silicon Island = Routl Contemp Asia Taiwan's Environmental Struggle: Toward A Green Silicon Island = Routl. Contemp. Asia. Taiwan's Expanding Role in The International Arena = Taiw Mod W Taiwan's Expanding Role in The International Arena = Taiw. Mod. W. Taiwan's Relations With Mainland China = Routl Contemp Asia Taiwan's Relations With Mainland China = Routl. Contemp. Asia. Taiwans Rising Rationalism: Generations, Politics, and Taiwanese Nationalism = Pol Stud Taiwans Rising Rationalism: Generations, Politics, and Taiwanese Nationalism = Pol. Stud. Taiwan's Security: History and Prospects = Asian Secur Stud Taiwan's Security: History and Prospects = Asian. Secur. Stud. Taiwan Strait Dilemmas = Signif Is S Taiwan Strait Dilemmas = Signif. Is. S. Taiwan = Taiw Mod W Taiwan = Taiw. Mod. W. Taiwan yi xue hui za zhi. Journal of the Formosan Medical Association = Taiwan Yi Xue Hui Za Zhi Taiwan Yi Xue Hui Za Zhi (Journal of the Formosan Medical Association) = Taiwan Yi Xue Hui Za Zhi Taking Action: Cognitive Neuroscience Perspectives On Intentional Acts = Bradford Books Taking Action: Cognitive Neuroscience Perspectives On Intentional Acts = Bradford. Books. Taking and Displaying of Human Body Parts As Trophies By Amerindians = Interd Contrib Arch Taking and Displaying of Human Body Parts As Trophies By Amerindians = Interd. Contrib. Arch. Taking Culture Seriously = Taking Cult Serious Taking Culture Seriously = Taking Cult. Serious. Taking Fund Raising Seriously = Jos-bas Non Taking Fund Raising Seriously = Jos-bas. Non. Taking Responsibility: Comparative Perspectives = St Rel Cult Taking Responsibility: Comparative Perspectives = St. Rel. Cult. Taking Sustainable Cities Seriously-economic Development, The Environment, and Quality of Life in American Cities = Am Comp Environ Poli Taking Sustainable Cities Seriously-economic Development, The Environment, and Quality of Life in American Cities = Am. Comp. Environ. Poli. Talanta = Talanta Talent Development Iii, Proceedings = Talent Dev Talent Development Iii, Proceedings = Talent Dev. Talent Development = Talent Dev Talent Development = Talent Dev. Talent Knows No Color: The History of An Arts Magnet High School = Res Curric Instruct Talent Knows No Color: The History of An Arts Magnet High School = Res. Curric. Instruct. Tall Building Structures - A World View = Ctbuh Counc Rep Tall Building Structures - A World View = Ctbuh. Counc. Rep. Taller De Letras = Taller Let Taller De Letras = Taller Let. Tall Timbers Fire Ecology Conference Proceedings = Tall Timb Fire Ecol Tall Timbers Fire Ecology Conference Proceedings = Tall Timb. Fire Ecol. Talmud Yerushalmi and Graeco-roman Culture Iii = Texte Stud Antik Jud Talmud Yerushalmi and Graeco-roman Culture Iii = Texte. Stud. Antik. Jud. Tamarack Review = Tamarack Rev Tamarack Review = Tamarack Rev. Tame Geometry With Application in Smooth Analysis = Lect Notes Math Tame Geometry With Application in Smooth Analysis = Lect. Notes. Math. Tamil Cinema: The Cultural Politics of India's Other Film Industry = Routl Media Cult Soc Tamil Cinema: The Cultural Politics of India's Other Film Industry = Routl. Media. Cult. Soc. Tamime and Robinsons Yoghurt: Science and Technology, Third Edition = Woodhead Publ Food S Tamime and Robinsons Yoghurt: Science and Technology, Third Edition = Woodhead. Publ. Food. S. Taming The Yellow River : Silt and Floods = Geoj Lib Taming The Yellow River : Silt and Floods = Geoj. Lib. Tamkang Journal of Mathematics = Tamkang J. Math. Tamkang Review = Tamkang Rev Tamkang Review = Tamkang Rev. Tampa Bay history = Tampa Bay Hist Tamsui Oxford Journal of Management Sciences = Tamsui Oxford J. Management Sci. Tamsui Oxford Journal of Mathematical Sciences = Tamsui Oxf. J. Math. Sci. Tandem Cold Metal Rolling Mill Control: Using Practical Advanced Methods = Adv Ind Control Tandem Cold Metal Rolling Mill Control: Using Practical Advanced Methods = Adv. Ind. Control. Tandlaegebladet = Tandlaegebladet Tandlaegernes nye tidsskrift = Tandlaegernes Tidsskr Tandlaegernes Nye Tidsskrift = Tandlaegernes Tidsskr. Tandlakartidningen = Tandlakartidningen Tandteknikern = Tandteknikern Taniguchi Symposia On Brain Sciences = Tanig Symp Brain Sci Taniguchi Symposia On Brain Sciences = Tanig. Symp. Brain Sci. Tanisal ve girisimsel radyoloji : Tibbi Goruntuleme ve Girisimsel Radyoloji Dernegi yayin organi = Tani Girisim Radyol Tannins in Livestock and Human Nutrition, Proceedings = Aciar Proc Tannins in Livestock and Human Nutrition, Proceedings = Aciar. Proc. Tannlaeknabladid = Tannlaeknabladid Tanpakushitsu kakusan koso. Protein, nucleic acid, enzyme = Tanpakushitsu Kakusan Koso Tanpakushitsu Kakusan Koso (Protein, Nucleic Acid, Enzyme) = Tanpakushitsu Kakusan Koso. Tanpakushitsu Kakusan Koso. Protein, Nucleic Acid, Enzyme=Tanpakushitsu Kakusan Koso;; Tanpakushitsu Kakusan Koso = Tanpakushitsu Kakusan Koso Tanzania health research bulletin = Tanzan Health Res Bull Tanzania notes and records = Tanzan Notes Rec Tanzania Revisited: Political Stability, Aid Dependency, and Development Constraints = Hamb Afr Stud Tanzania Revisited: Political Stability, Aid Dependency, and Development Constraints = Hamb. Afr. Stud. Tanz = Tanz Tapas in Experimental Mathematics = Contemp Math Tapas in Experimental Mathematics = Contemp. Math. Taphonomy: Process and Bias Through Time, Second Edition = Top Geobiol Taphonomy: Process and Bias Through Time, Second Edition = Top. Geobiol. Tappi 90 = P Tech As P Tappi 90 = P. Tech. As. P. Tappi 92 : Proceedings : Ride The Wave of Technology = P Tech As P Tappi 92 : Proceedings : Ride The Wave of Technology = P. Tech. As. P. Tappi 99 Proceedings - Preparing for The Next Millennium, Vols 1-3 = P Tech As P Tappi 99 Proceedings - Preparing for The Next Millennium, Vols 1-3 = P. Tech. As. P. Tappi Advanced Coating Fundamentals Symposium = P Tech As P Tappi Advanced Coating Fundamentals Symposium = P. Tech. As. P. Tappi Coating Conference = P Tech As P Tappi Coating Conference = P. Tech. As. P. Tappi Course Notes = Notes Tech Tappi Course Notes = Notes Tech. Tappi Finishing & Converting Conference and Trade Fair = P Tech As P Tappi Finishing & Converting Conference and Trade Fair = P. Tech. As. P. Tappi Hot Melt Symposium = P Tech As P Tappi Hot Melt Symposium = P. Tech. As. P. Tappi International Environmental Conference, Vols 1-3 = P Tech As P Tappi International Environmental Conference, Vols 1-3 = P. Tech. As. P. Tappi International Mechanical Pulping Conference = P Tech As P Tappi International Mechanical Pulping Conference = P. Tech. As. P. Tappi International Paper Physics Conference = P Tech As P Tappi International Paper Physics Conference = P. Tech. As. P. Tappi Journal = Tappi J Tappi Journal = Tappi J. Tapping The Market: The Challenge of Institutional Reform in The Urban Water Sector = Role Gov Adjust Econ Tapping The Market: The Challenge of Institutional Reform in The Urban Water Sector = Role. Gov. Adjust. Econ. Tappi Nonwovens Conference = P Tech As P Tappi Nonwovens Conference = P. Tech. As. P. Tappi Notes = Notes Tech Tappi Notes = Notes Tech. Tappi Polymers, Laminations & Coatings Conference, Vols 1 and 2 = P Tech As P Tappi Polymers, Laminations & Coatings Conference, Vols 1 and 2 = P. Tech. As. P. Tappi Proceedings = P Tech As P Tappi Proceedings = P. Tech. As. P. Tappi Process Control, Electrical & Information Conference / Isa Pupid 37th Annual Symposium, Joint Conference = P Tech As P Tappi Process Control, Electrical & Information Conference / Isa Pupid 37th Annual Symposium, Joint Conference = P. Tech. As. P. Tappi = Tappi Tapsoft 91, Vol 1 = Lect Notes Comput Sc Tapsoft 91, Vol 1 = Lect. Notes. Comput. Sc. Tapsoft 91, Vol 2 = Lect Notes Comput Sc Tapsoft 91, Vol 2 = Lect. Notes. Comput. Sc. Tapsoft '95: Theory and Practice of Software Development = Lect Notes Comput Sc Tapsoft '95: Theory and Practice of Software Development = Lect. Notes. Comput. Sc. Taras. Rivista di archeologia = Taras Targeted Cancer Therapy = Curr Clin Oncol Targeted Cancer Therapy = Curr. Clin. Oncol. Targeted Diagnosis and Therapy = Targ Diag T Targeted Diagnosis and Therapy = Targ. Diag. T. Targeted diagnosis and therapy = Targeted Diagn Ther Targeted Diagnosis and Therapy=Targeted Diagn Ther;; Targeted Diagnosis and Therapy = Targeted Diagn. Ther. Targeted Learning: Causal Inference for Observational and Experimental Data = Springer Ser Stat Targeted Learning: Causal Inference for Observational and Experimental Data = Springer. Ser. Stat. Targeted Oncology = Target Oncol Targeted Oncology = Target. Oncol. Targeted Therapies in Cancer: Myth Or Reality? = Adv Exp Med Biol Targeted Therapies in Cancer: Myth Or Reality? = Adv. Exp. Med. Biol. Targeted Therapies: Mechanisms of Resistance = Mol Transl Med Targeted Therapies: Mechanisms of Resistance = Mol. Transl. Med. Targeting of Drugs 3 = Nato Adv Sci Inst Se Targeting of Drugs 3 = Nato. Adv. Sci. Inst. Se. Targeting of Drugs 4 = Nato Adv Sci Inst Se Targeting of Drugs 4 = Nato. Adv. Sci. Inst. Se. Targeting of Drugs 5 = Nato Adv Sci I A-lif Targeting of Drugs 5 = Nato. Adv. Sci. I. A-lif. Targeting of Drugs 6 = Nato Adv Sci I A-lif Targeting of Drugs 6 = Nato. Adv. Sci. I. A-lif. Targeting of Drugs = Nato Adv Sci I A-lif Targeting of Drugs = Nato. Adv. Sci. I. A-lif. Targeting Regional Economic Development = Routl Stud Glob Comp Targeting Regional Economic Development = Routl. Stud. Glob. Comp. Targeting Terrorist Financing: International Cooperation and New Regimes = Contemp Terror Stud Targeting Terrorist Financing: International Cooperation and New Regimes = Contemp. Terror. Stud. Target-international Journal of Translation Studies = Target-neth Target-international Journal of Translation Studies = Target-neth. Target-in-the-loop: Atmospheric Tracking, Imaging, and Compensation = P Soc Photo-opt Ins Target-in-the-loop: Atmospheric Tracking, Imaging, and Compensation = P. Soc. Photo-opt. Ins. Target Pattern Recognition in Innate Immunity = Adv Exp Med Biol Target Pattern Recognition in Innate Immunity = Adv. Exp. Med. Biol. Target Receptors for Anxiolytics and Hypnotics : From Molecular Pharmacology to Therapeutics = Int Acad B Target Receptors for Anxiolytics and Hypnotics : From Molecular Pharmacology to Therapeutics = Int. Acad. B. Targets and Backgrounds: Characterization and Representation Iii = P Soc Photo-opt Ins Targets and Backgrounds: Characterization and Representation Iii = P. Soc. Photo-opt. Ins. Targets and Backgrounds: Characterization and Representation Ii = P Soc Photo-opt Ins Targets and Backgrounds: Characterization and Representation Ii = P. Soc. Photo-opt. Ins. Targets and Backgrounds: Characterization and Representation Iv = P Soc Photo-opt Ins Targets and Backgrounds: Characterization and Representation Iv = P. Soc. Photo-opt. Ins. Targets and Backgrounds: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds: Characterization and Representation V = Proc Spie Targets and Backgrounds: Characterization and Representation V = Proc. Spie. Targets and Backgrounds: Characterization and Representation V = P Soc Photo-opt Ins Targets and Backgrounds: Characterization and Representation V = P. Soc. Photo-opt. Ins. Targets and Backgrounds Ix: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds Ix: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds Vi: Characterization, Visualization, and The Detection Process = Proc Spie Targets and Backgrounds Vi: Characterization, Visualization, and The Detection Process = Proc. Spie. Targets and Backgrounds Vi: Characterization, Visualization, and The Detection Process = P Soc Photo-opt Ins Targets and Backgrounds Vi: Characterization, Visualization, and The Detection Process = P. Soc. Photo-opt. Ins. Targets and Backgrounds Vii: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds Vii: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds Viii: Characterization and Representation = Proc Spie Targets and Backgrounds Viii: Characterization and Representation = Proc. Spie. Targets and Backgrounds Viii: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds Viii: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds X: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds X: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds Xi: Characterization and Representation = Proc Spie Targets and Backgrounds Xi: Characterization and Representation = Proc. Spie. Targets and Backgrounds Xi: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds Xi: Characterization and Representation = P. Soc. Photo-opt. Ins. Targets and Backgrounds Xii: Characterization and Representation = Proc Spie Targets and Backgrounds Xii: Characterization and Representation = Proc. Spie. Targets and Backgrounds Xii: Characterization and Representation = P Soc Photo-opt Ins Targets and Backgrounds Xii: Characterization and Representation = P. Soc. Photo-opt. Ins. Target Seedling Symposium : Proceedings, Combined Meeting of The Western Forest Nursery Associations = Usda Rocky Target Seedling Symposium : Proceedings, Combined Meeting of The Western Forest Nursery Associations = Usda. Rocky. Targets in Heterocyclic Systems-chemistry and Properties = Targ Heterocycl Syst Targets in Heterocyclic Systems-chemistry and Properties = Targ. Heterocycl. Syst. Targets in Heterocyclic Systems: Chemistry and Properties, Vol 11 (2007) = Targ Heterocycl Syst Targets in Heterocyclic Systems: Chemistry and Properties, Vol 11 (2007) = Targ. Heterocycl. Syst. Targets in Heterocyclic Systems: Chemistry and Properties, Vol 13 (2009) = Targ Heterocycl Syst Targets in Heterocyclic Systems: Chemistry and Properties, Vol 13 (2009) = Targ. Heterocycl. Syst. Targets of Treatment in Chronic Inflammatory Bowel Diseases = Falk Symp Targets of Treatment in Chronic Inflammatory Bowel Diseases = Falk. Symp. Tar heel nurse = Tar Heel Nurse Tar Heel Nurse = Tar Heel Nurse Tarim Bilimleri Dergisi-journal of Agricultural Sciences = Tarim Bilim Derg Tarim Bilimleri Dergisi-journal of Agricultural Sciences = Tarim Bilim. Derg. Tarp and The Restoration of U.s. Financial Stability = Financ I Serv Ser Tarp and The Restoration of U.s. Financial Stability = Financ. I. Serv. Ser. Tarp in The Crosshairs: Accountability in The Troubled Asset Relief Program = Econ Iss Probl Persp Tarp in The Crosshairs: Accountability in The Troubled Asset Relief Program = Econ. Iss. Probl. Persp. Tar Sand and Oil Upgrading Technology = Aiche Sym S Tar Sand and Oil Upgrading Technology = Aiche. Sym. S. Tartu Ülikooli Toimetised = Tartu Ül. Toimetised Task Models and Diagrams for User Interface Design = Lect Notes Comput Sc Task Models and Diagrams for User Interface Design = Lect. Notes. Comput. Sc. Task Models and Diagrams for User Interface Design, Proceedings = Lect Notes Comput Sc Task Models and Diagrams for User Interface Design, Proceedings = Lect. Notes. Comput. Sc. Task Models and Diagrams for Users Interface Design = Lect Notes Comput Sc Task Models and Diagrams for Users Interface Design = Lect. Notes. Comput. Sc. Tasks for Vegetation Science = Tasks Veg Sci Tasks for Vegetation Science = Tasks Veg. Sci. Tasks for Vegetation Science = Task Veg Sc Tasks for Vegetation Science = Task. Veg. Sc. Tasks in Primary Mathematics Teacher Education: Purpose, Use and Exemplars = Math Teach Educ Tasks in Primary Mathematics Teacher Education: Purpose, Use and Exemplars = Math. Teach. Educ. Tasks in Second Language Learning = Res Pract Appl Lingu Tasks in Second Language Learning = Res. Pract. Appl. Lingu. Tasmanian Journal of Agriculture = Tasmanian J Agr Tasmanian Journal of Agriculture = Tasmanian J. Agr. Tata Institute of Fundamental Research Lectures on Mathematics and Physics = Tata Inst. Fund. Res. Lectures on Math. and Phys. Tätigkeitsbericht der Naturforschenden Gesellschaft Baselland = Tätigk.ber. Nat.forsch. Ges. Baselland Tatracrypt '07 - 7th Central Europe Conference of Cryptology = Tatra Mt Math Publ Tatracrypt '07 - 7th Central Europe Conference of Cryptology = Tatra. Mt. Math. Publ. Tatra Mountains Mathematical Publications = Tatra Mt. Math. Publ. Tatra Mountains Mathematical Publications = Tatra Mt Math Publ Tatra Mountains Mathematical Publications = Tatra Mt. Math. Publ. Tauberian Operators = Oper Theory Adv Appl Tauberian Operators = Oper. Theory. Adv. Appl. Tauber Institute for The Study of European Jewry Series = Taub Inst Tauber Institute for The Study of European Jewry Series = Taub. Inst. Taup 2005: Proceedings of The Ninth International Conference On Topics in Astroparticle and Underground Physics = J Phys Conf Ser Taup 2005: Proceedings of The Ninth International Conference On Topics in Astroparticle and Underground Physics = J. Phys. Conf. Ser. Taup2007: Tenth International Conference On Topics in Astroparticle and Underground Physics = J Phys Conf Ser Taup2007: Tenth International Conference On Topics in Astroparticle and Underground Physics = J. Phys. Conf. Ser. Taurine 2 = Adv Exp Med Biol Taurine 2 = Adv. Exp. Med. Biol. Taurine 3 = Adv Exp Med Biol Taurine 3 = Adv. Exp. Med. Biol. Taurine 4: Taurine and Excitable Tissues = Adv Exp Med Biol Taurine 4: Taurine and Excitable Tissues = Adv. Exp. Med. Biol. Taurine 5: Beginning The 21st Century = Adv Exp Med Biol Taurine 5: Beginning The 21st Century = Adv. Exp. Med. Biol. Taurine 6 = Adv Exp Med Biol Taurine 6 = Adv. Exp. Med. Biol. Taurine 7 = Adv Exp Med Biol Taurine 7 = Adv. Exp. Med. Biol. Taurine = Adv Exp Med Biol Taurine = Adv. Exp. Med. Biol. Taurine : Functional Neurochemistry, Physiology, and Cardiology = Prog Clin Biol Res Taurine : Functional Neurochemistry, Physiology, and Cardiology = Prog. Clin. Biol. Res. Taurine in Health and Disease = Adv Exp Med Biol Taurine in Health and Disease = Adv. Exp. Med. Biol. Tawny Frogmouth = Austral Nat Hist Ser Tawny Frogmouth = Austral. Nat. Hist. Ser. Taxane Anticancer Agents = Acs Sym Ser Taxane Anticancer Agents = Acs. Sym. Ser. Taxation in A Low-income Economy: The Case of Mozambique = Routl Stud Dev Econ Taxation in A Low-income Economy: The Case of Mozambique = Routl. Stud. Dev. Econ. Taxation, Incomplete Markets, and Social Security = Munich Lect Econ Taxation, Incomplete Markets, and Social Security = Munich. Lect. Econ. Taxation in The United States and Europe = Conf Eea C Taxation in The United States and Europe = Conf. Eea. C. Taxation Issues in A Federal State and Economic Groupings With Concurrent Taxing Authorities = Ifa Congr S Taxation Issues in A Federal State and Economic Groupings With Concurrent Taxing Authorities = Ifa. Congr. S. Taxation of Expatriates = Ifa Congr S Taxation of Expatriates = Ifa. Congr. S. Taxes = Taxes Taxes-the Tax Magazine = Taxes Taxes-the Tax Magazine = Taxes. Tax Expenditure- Shedding Light On Government Spending Through The Tax System: Lessons From Development and Transition Economies = Dir Dev Tax Expenditure- Shedding Light On Government Spending Through The Tax System: Lessons From Development and Transition Economies = Dir. Dev. Taxing The Hard-to-tax: Lessons From Theory and Practice = Contrib To Econ Anal Taxing The Hard-to-tax: Lessons From Theory and Practice = Contrib. To. Econ. Anal. Tax Law Review = Tax Law Rev Tax Law Review = Tax Law Rev. Tax Magazine = Tax Mag Tax Magazine = Tax Mag. Taxon = Taxon Taxpayer Protection in The European Union = Efs Brochur Taxpayer Protection in The European Union = Efs. Brochur. Tax Policy and The Economy = Tax Pol Ec Tax Policy and The Economy = Tax Pol. Ec. Tax Policy and The Economy, Vol 17 = Tax Pol Ec Tax Policy and The Economy, Vol 17 = Tax Pol. Ec. Tax Policy and The Economy, Vol 18 = Tax Pol Ec Tax Policy and The Economy, Vol 18 = Tax Pol. Ec. Tax Policy and The Economy, Vol 19 = Tax Pol Ec Tax Policy and The Economy, Vol 19 = Tax Pol. Ec. Tax Policy and The Economy, Vol 20 = Tax Pol Ec Tax Policy and The Economy, Vol 20 = Tax Pol. Ec. Tax Policy and The Economy, Vol 21 = Tax Pol Ec Tax Policy and The Economy, Vol 21 = Tax Pol. Ec. Tax Policy and The Economy, Vol 22 = Tax Pol Ec Tax Policy and The Economy, Vol 22 = Tax Pol. Ec. Tax Policy and The Economy, Vol 23 = Tax Pol Ec Tax Policy and The Economy, Vol 23 = Tax Pol. Ec. Tax Policy and The Economy, Vol 24 = Tax Pol Ec Tax Policy and The Economy, Vol 24 = Tax Pol. Ec. Tax Policy Roundtalbe Property Tax Papers Series = Tax Pol R P Tax Policy Roundtalbe Property Tax Papers Series = Tax Pol. R. P. Tax Reform in Developing Countries = Fisc Ref D Tax Reform in Developing Countries = Fisc. Ref. D. Tax Systems and Tax Reforms in Latin America = Routl Int Stud Money Tax Systems and Tax Reforms in Latin America = Routl. Int. Stud. Money. Tax Systems and Tax Reforms in South and East Asia = Routl Int Stud Money Tax Systems and Tax Reforms in South and East Asia = Routl. Int. Stud. Money. Taylor & Francis Series in Remote Sensing Applications = T&f Ser Remote Sens Taylor & Francis Series in Remote Sensing Applications = T&f. Ser. Remote Sens. Taylor & Francis Series in Systems & Control = T&f S Syst Contr Taylor & Francis Series in Systems & Control = T&f. S. Syst. Contr. Tay-sachs Disease = Adv Genet Tay-sachs Disease = Adv. Genet. TB & HIV = TB HIV Tbilisskiy Gosudarstvennyy Universitet = Tbiliss. Gos. Univ. Inst. Prikl. Mat. Trudy Tbilisskiy Universitet = Trudy Tbiliss. Univ. Mat. Mekh. Astronom. T Cell Activation By Cd1 and Lipid Antigens = Curr Top Microbiol T Cell Activation By Cd1 and Lipid Antigens = Curr. Top. Microbiol. T-cell Receptor Use in Human Autoimmune Diseases = Ann Ny Acad Sci T-cell Receptor Use in Human Autoimmune Diseases = Ann. Ny. Acad. Sci. T Cell Subsets in Infectious and Autoimmune Diseases = Ciba F Symp T Cell Subsets in Infectious and Autoimmune Diseases = Ciba. F. Symp. T-cell Trafficking: Methods and Protocols = Methods Mol Biol T-cell Trafficking: Methods and Protocols = Methods Mol. Biol. Tce = Tce Tce = Tce-the Chem Eng Tce = Tce-the. Chem. Eng. Tchaikovsky and His Contemporaries = Contr St M Tchaikovsky and His Contemporaries = Contr. St. M. Tci = Tci TDR news = TDR News Tdr-the Drama Review-a Journal of Performance Studies = Tdr-drama Rev-j Perf Tdr-the Drama Review-a Journal of Performance Studies = Tdr-drama. Rev-j. Perf. Tdr-the Drama Review-the Journal of Performance Studies = Tdr-drama Rev-j Perf Tdr-the Drama Review-the Journal of Performance Studies = Tdr-drama. Rev-j. Perf. Teacher Development and The Struggle for Authenticity = Profess Dev Pract S Teacher Development and The Struggle for Authenticity = Profess. Dev. Pract. S. Teacher Education 6 = Teach Educ Teacher Education 6 = Teach. Educ. Teacher Education 7 = Teach Educ Teacher Education 7 = Teach. Educ. Teacher Education = Teach Educ Teacher Education = Teach. Educ. Teacher Learning and Development: The Mirror Maze = Self Study Teach Tea Teacher Learning and Development: The Mirror Maze = Self. Study. Teach. Tea. Teacher Learning = Ser Sch Reform Teacher Learning = Ser. Sch. Reform. Teacher of The Deaf = Teach Deaf Teacher of The Deaf = Teach. Deaf Teacher Quality = Hoover Inst Teacher Quality = Hoover. Inst. Teachers As Learners: Critical Discourse On Challenges and Opportunities = Cerc Stud Comp Educ Teachers As Learners: Critical Discourse On Challenges and Opportunities = Cerc. Stud. Comp. Educ. Teacher's Career Trajectories and Work Lives = Prof Learn Dev Sch H Teacher's Career Trajectories and Work Lives = Prof. Learn. Dev. Sch. H. Teachers College record = Teach Coll Rec Teachers College Record = Teach Coll Rec Teachers College Record = Teach. Coll. Rec. Teachers Library = Teach Libr Teachers Library = Teach. Libr. Teacher's Role in Implementing Cooperative Learning in The Classroom = Comput-supp Collab L Teacher's Role in Implementing Cooperative Learning in The Classroom = Comput-supp. Collab. L. Teaching About Hegemony: Race, Class and Democracy in The 21st Century = Explor Educ Purp Teaching About Hegemony: Race, Class and Democracy in The 21st Century = Explor. Educ. Purp. Teaching About Technology: An Introduction to The Philosophy of Technology for Non-philosophers = Sci Technol Educ Lib Teaching About Technology: An Introduction to The Philosophy of Technology for Non-philosophers = Sci. Technol. Educ. Lib. Teaching Africa: Towards A Transgressive Pedagogy = Explor Educ Purp Teaching Africa: Towards A Transgressive Pedagogy = Explor. Educ. Purp. Teaching and Assessing of Mathematical Problem Solving = Res Ag Math Teaching and Assessing of Mathematical Problem Solving = Res. Ag. Math. Teaching and Communicating Astronomy - Jenam'04 = Eas Publications Teaching and Communicating Astronomy - Jenam'04 = Eas. Publications. Teaching and Learning By Doing Corpus Analysis = Lang Comput Teaching and Learning By Doing Corpus Analysis = Lang. Comput. Teaching and Learning in A Network World = Fr Art Int Teaching and Learning in A Network World = Fr. Art. Int. Teaching and Learning in A Network World = Front Artif Intel Ap Teaching and Learning in A Network World = Front. Artif. Intel. Ap. Teaching and Learning in Logo-based Environments = Fr Art Int Teaching and Learning in Logo-based Environments = Fr. Art. Int. Teaching and learning in medicine = Teach Learn Med Teaching and Learning in Medicine = Teach Learn Med Teaching and Learning in Medicine = Teach. Learn. Med. Teaching and Learning: International Best Practice = Res Sociocult Influ Teaching and Learning: International Best Practice = Res. Sociocult. Influ. Teaching and Learning of Mathematics At University Level = New Icmi Stud Ser Teaching and Learning of Mathematics At University Level = New. Icmi. Stud. Ser. Teaching and Learning Proof Across The Grades = Stud Math Think Lear Teaching and Learning Proof Across The Grades = Stud. Math. Think. Lear. Teaching and Researching Language in African Classrooms = Multiling Teaching and Researching Language in African Classrooms = Multiling. Teaching and Research in Industrial Relations = Ann Cira P Teaching and Research in Industrial Relations = Ann. Cira. P. Teaching and Teacher Education = Teach Teach Educ Teaching and Teacher Education = Teach. Teach. Educ. Teaching Business and Economics=Teaching Bus. Econ. Teaching Chaucer = Teach New Engl Teaching Chaucer = Teach. New. Engl. Teaching Contemporary Themes in Secondary Education = Teach Cont Theme Teaching Contemporary Themes in Secondary Education = Teach. Cont. Theme. Teaching, Curriculum, and Community Involvement = Fam Sch Commun Part Teaching, Curriculum, and Community Involvement = Fam. Sch. Commun. Part. Teaching Entrepreneurship: Cases for Education and Training = Contrib Manag Sci Teaching Entrepreneurship: Cases for Education and Training = Contrib. Manag. Sci. Teaching Esl/efl Listening and Speaking = Esl Appl Ling Prof Teaching Esl/efl Listening and Speaking = Esl. Appl. Ling. Prof. Teaching Esl/efl Reading and Writing = Esl Appl Ling Prof Teaching Esl/efl Reading and Writing = Esl. Appl. Ling. Prof. Teaching Formal Methods, Proceedings = Lect Notes Comput Sc Teaching Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Teaching Fundamental Concepts of Informatics, Proceedings = Lect Notes Comput Sc Teaching Fundamental Concepts of Informatics, Proceedings = Lect. Notes. Comput. Sc. Teaching German in Twentieth-century America = Monat Occ V Teaching German in Twentieth-century America = Monat. Occ. V. Teaching Holocaust Literature and Film = Teach New Engl Teaching Holocaust Literature and Film = Teach. New. Engl. Teaching in Higher Education = Teach High Educ Teaching in Higher Education = Teach. High. Educ. Teaching Intercultural Rhetoric and Technical Communication: Theories, Curriculum, Pedagogies, and Practices = Baywoods Tech Commun Teaching Intercultural Rhetoric and Technical Communication: Theories, Curriculum, Pedagogies, and Practices = Baywoods. Tech. Commun. Teaching Learning Indigenous Intercultural Worldviews International Perspectives On Social Justice and Human Rights = Teach Learn Indig In Teaching Learning Indigenous Intercultural Worldviews International Perspectives On Social Justice and Human Rights = Teach. Learn. Indig. In. Teaching notes on population = Teach Notes Popul Teaching of Arabic As A Foreign Language = Al Arabiyya Mon Ser Teaching of Arabic As A Foreign Language = Al. Arabiyya. Mon. Ser. Teaching of Astronomy = Iau Colloq Teaching of Astronomy = Iau. Colloq. Teaching of psychology (Columbia, Mo.) = Teach Psychol Teaching of Psychology = Teach Psychol Teaching of Psychology = Teach. Psychol. Teaching philosophy = Teach Philos Teaching Philosophy = Teach Philos Teaching Philosophy = Teach. Philos. Teaching political science = Teach Polit Sci Teaching Political Science = Teach Polit Sci Teaching Political Science = Teach. Polit. Sci. Teaching Science With Hispanic Ells in K-16 Classrooms = Res Sci Educ Ser Teaching Science With Hispanic Ells in K-16 Classrooms = Res. Sci. Educ. Ser. Teaching Shakespeare and Early Modern Dramatists = Teach New Engl Teaching Shakespeare and Early Modern Dramatists = Teach. New. Engl. Teaching Social Foundations of Education: Contexts, Theories, and Issues = Sociocult Polit Hist Teaching Social Foundations of Education: Contexts, Theories, and Issues = Sociocult. Polit. Hist. Teaching Sociology = Teaching Sociology Teaching Sociology = Teach Sociol Teaching Sociology = Teach. Sociol. Teaching Teachers: Aproaches in Improving Quality of Education = Educ Compet Glob Wor Teaching Teachers: Aproaches in Improving Quality of Education = Educ. Compet. Glob. Wor. Teaching, Technology, Textuality: Approaches to New Media = Teach New Engl Teaching, Technology, Textuality: Approaches to New Media = Teach. New Engl. Teaching The Gothic = Teach New Engl Teaching The Gothic = Teach. New. Engl. Teaching The New English = Teach New Engl Teaching The New English = Teach. New Engl. Teaching The Rhetoric of Resistance: The Popular Holocaust and Social Change in A Post 9/11 World = Psychoanal Educ Soc Teaching The Rhetoric of Resistance: The Popular Holocaust and Social Change in A Post 9/11 World = Psychoanal. Educ. Soc. Teaching The Shoah in The Twenty-first Century: Topics and Topographies = Symposium S Teaching The Shoah in The Twenty-first Century: Topics and Topographies = Symposium. S. Teaching Translation and Interpreting 2 = Benjamin Transl Lib Teaching Translation and Interpreting 2 = Benjamin. Transl. Lib. Teaching Translation and Interpreting 3 = Benjamin Transl Lib Teaching Translation and Interpreting 3 = Benjamin. Transl. Lib. Teaching Translation and Interpreting = Copen S Tr Teaching Translation and Interpreting = Copen. S. Tr. Teaching With Technology: An Academic Librarians Guide = Chandos Inf Prof Ser Teaching With Technology: An Academic Librarians Guide = Chandos. Inf. Prof. Ser. Teaching Writing Genres Across The Curriculum: Strategies for Middle School Teachers = Contemp Lang Educ Teaching Writing Genres Across The Curriculum: Strategies for Middle School Teachers = Contemp. Lang. Educ. Teaching Writing in Chinese Speaking Areas = Stud Writ Teaching Writing in Chinese Speaking Areas = Stud. Writ. Teach-in : the journal for junior hospital doctors and senior medical students = Teach In Teadustoode Kogumik = Teadustoode Kogumik Team Effectiveness in Complex Organizations: Cross-disciplinary Perspectives and Approaches = Siop Organ Front Ser Team Effectiveness in Complex Organizations: Cross-disciplinary Perspectives and Approaches = Siop. Organ. Front. Ser. Tea Quarterly = Tea Quart Tea Quarterly = Tea Quart. TEC bulletin (Online) = TEC Bull (Online) Technetium and Rhenium = Top Curr Chem Technetium and Rhenium = Top. Curr. Chem. Technical and Vocational Education and Training-issues Concerns and Prospects = Tech Vocat Ed Train Technical and Vocational Education and Training-issues Concerns and Prospects = Tech. Vocat. Ed. Train. Technical Association Papers = Tech Assoc Pap Technical Association Papers = Tech. Assoc. Pap. Technical bulletin of the Registry of Medical Technologists = Tech Bull Regist Med Technol Technical Bulletin of the Registry of Medical Technologists = Tech. Bull. Regist. Med. Technol. Technical bulletin. United States. Veterans Administration = Tech Bull United States Veterans Admin Technical Communications and Informations Systems = Tech Commun Technical Communications and Informations Systems = Tech. Commun. Technical Communication = Tech Commun Technical Communication = Tech. Commun. Technical Communication = Tech Commun-stc Technical Communication = Tech. Commun-stc. Technical Council On Lifeline Earthquake Engineering Monograph = Tech Coun L Technical Council On Lifeline Earthquake Engineering Monograph = Tech. Coun. L. Technical Digest - Ieee Gallium Arsenide Integrated Circuit Symposium = Tg Ieee Gal Ars Technical Digest - Ieee Gallium Arsenide Integrated Circuit Symposium = Tg. Ieee Gal. Ars. Technical Digest Series = Tech Dig S Technical Digest Series = Tech. Dig. S. Technical documentary report; AAL-TDR. Arctic Aeromedical Laboratory (U.S.) = Tech Doc Rep Arct Aeromed Lab US Technical documentary report, ARL-TDR. United States. Aeromedical Research Laboratory, Holloman Air Force Base, N. M = Tech Doc Rep ARL TDR Technical documentary report. SAM-TDR. USAF School of Aerospace Medicine = Tech Doc Rep SAMTDR USAF Sch Aerosp Med Technical documentary report. United States. Air Force. Systems Command. Electronic Systems Division = Tech Doc Rep U S Air Force Syst Command Electron Syst Div Technical Documents in Hydrology = Tech Doc Hy Technical Documents in Hydrology = Tech. Doc. Hy. Technical Functions: On The Use and Design of Artefacts = Philos Eng Technol Technical Functions: On The Use and Design of Artefacts = Philos. Eng. Technol. Technical Information Center Administration = Tech Inf Cent Adm Technical Information Center Administration = Tech. Inf. Cent. Adm. Technical manual. U.S. Army Biological Laboratories = Tech Man US Army Biol Lab Technical manuscript. U.S. Army Biological Laboratories = Tech Manuscr US Army Biol Lab Technical note; TN. Arctic Aeromedical Laboratory (U.S.) = Tech Note Arct Aeromed Lab (US) Technical note. United States. National Aeronautics and Space Administration = Tech Note U S Natl Aeronaut Space Adm Technical Papers of Isa = Tech Papers Isa Technical Papers of Isa = Tech. Papers Isa Technical Physics Letters = Tech Phys Lett+ Technical Physics Letters = Tech. Phys. Lett. Technical Physics Letters = Tech. Phys. Lett+.+ Technical Physics = Tech Phys+ Technical Physics = Tech. Phys. Technical Physics = Tech. Phys+.+ Technical Quarterly - Master Brewers Association of the Americas = Tech. Q. Master Brew. Assoc. Am. Technical Quarterly & the MBAA Communicator = Tech. Q. MBAA Commun. T[echnical report]. Brookhaven National Laboratory = Tech Rep Brookhaven Natl Lab Technical report. CRDLR. U.S. Army Chemical Research and Development Laboratories = Tech Rep CRDLR US Army Chem Res Dev Lab Technical report. CWLR. U.S. Army Chemical Warfare Laboratories = Tech Rep CWLR US Army Chem Warf Lab Technical Report Forest Engineering Research Institute of Canada = Tech. Rep. For. Eng. Res. Inst. Can. Technical report: NAVTRADEVCEN. Naval Training Device Center = Tech Rep NAVTRADEVCEN Technical report. New York Naval Shipyard. Material Laboratory = Tech Rep NY Nav Shipyard Mater Lab [Technical report] SAM-TR. USAF School of Aerospace Medicine = Tech Rep SAM-TR Technical Reports in Hydrology and Water Resources = Tech. Rep. Hydrol. Water Resour. Technical Reports-natural History Museum of Los Angeles County-series = Nat Hist Mus Los Ang Technical Reports-natural History Museum of Los Angeles County-series = Nat. Hist. Mus. Los Ang. Technical Report = Tech. Rep. Technical report.; TR. Arctic Aeromedical Laboratory (U.S.) = Tech Rep Arct Aeromed Lab US Technical Sciences: Advances in Electronics = Tech. Sci. Adv. Electron. Technical, Technological and Economic Aspects of Thin-seams Coal Mining: International Mining Forum 2007 = Proc Monogr Eng Wate Technical, Technological and Economic Aspects of Thin-seams Coal Mining: International Mining Forum 2007 = Proc. Monogr. Eng. Wate. Technical Textile Yarns: Industrial and Medical Applications = Woodhead Publ Text Technical Textile Yarns: Industrial and Medical Applications = Woodhead. Publ. Text. Technical University of Wrocław = Systems Sci. Technicien Belge en Prothese Dentaire = Tech. Belge Prothese Dent. Technics Technologies Education Management-ttem = Tech Technol Educ Ma Technics Technologies Education Management-ttem = Tech. Technol. Educ. Ma. Technikgeschichte in Einzeldarstellungen = Technikgesch Einzeldarst Technik Geschichte = Technikgeschichte Technique Et Science Informatiques = Tech Sci Inform Technique Et Science Informatiques = Tech. Sci. Inform. Technique of Organic Chemistry = Tech Org Chem Technique of Organic Chemistry = Tech. Org. Chem. Techniques and Applications for Mobile Commerce = Fr Art Int Techniques and Applications for Mobile Commerce = Fr. Art. Int. Techniques and Applications for Mobile Commerce = Front Artif Intel Ap Techniques and Applications for Mobile Commerce = Front. Artif. Intel. Ap. Techniques and Concepts of High-energy Physics Ix = Nato Adv Sci I B-phy Techniques and Concepts of High-energy Physics Ix = Nato. Adv. Sci. I. B-phy. Techniques and Concepts of High-energy Physics Viii = Nato Adv Sci Inst Se Techniques and Concepts of High-energy Physics Viii = Nato. Adv. Sci. Inst. Se. Techniques and Concepts of High-energy Physics Vi = Nato Adv Sci I B-phy Techniques and Concepts of High-energy Physics Vi = Nato. Adv. Sci. I. B-phy. Techniques and Concepts of High-energy Physics V = Nato Adv Sci I B-phy Techniques and Concepts of High-energy Physics V = Nato. Adv. Sci. I. B-phy. Techniques and Instrumentation for Detection of Exoplanets = P Soc Photo-opt Ins Techniques and Instrumentation for Detection of Exoplanets = P. Soc. Photo-opt. Ins. Techniques and Instumentation for Detection of Exoplanets Iii = P Soc Photo-opt Ins Techniques and Instumentation for Detection of Exoplanets Iii = P. Soc. Photo-opt. Ins. Techniques and Management of Personnel Thermoluminescence Dosimetry Services = Euro Health Phys Rad Techniques and Management of Personnel Thermoluminescence Dosimetry Services = Euro. Health. Phys. Rad. Techniques and Uses of Molecular Markers = Colloq Inra Techniques and Uses of Molecular Markers = Colloq. Inra. Techniques de l'Ingenieur, Constantes Physico-Chimiques = Tech. Ing. Constantes Phys. Chim. Techniques de l'Ingenieur, Environnement = Tech. Ing. Environ. Techniques de l'Ingenieur, Genie des Procede = Tech. Ing. Genie Procedes Techniques de l'Ingenieur, Genie Nuclear = Tech. Ing. Genie Nucl. Techniques de l'Ingenieur, Materiaux Fonctionnels = Tech. Ing. Mater. Fond. Techniques de l'Ingenieur, Materiaux Metalliques = Tech. Ing. Mater. Met. Techniques de l'Ingenieur, Plastiques et Composites = Tech. Ing. Plast. Compos. Techniques de l'Ingenieur, Sciences Fondamentales: Mathematiques pour l'Ingenieur = Tech. Ing. Sci. Fondam. Math. Ing. Techniques de l'Ingenieur, Sciences Fondamentales: Physique, Chemie = Tech. Ing. Sci. Fondam. Phys. Chim. Techniques Des Industries Cerealieres = Tech Ind Cereal Techniques Des Industries Cerealieres = Tech. Ind. Cereal. Techniques for Corrosion Monitoring = Woodhead Publ Mater Techniques for Corrosion Monitoring = Woodhead. Publ. Mater. Techniques for Modern Aquaculture = Asae Publ Techniques for Modern Aquaculture = Asae. Publ. Techniques hospitalieres, medico-sociales et sanitaires = Tech Hosp Med Soc Sanit Techniques in Bioinformatics and Medical Informatics = Ann Ny Acad Sci Techniques in Bioinformatics and Medical Informatics = Ann. Ny. Acad. Sci. Techniques in coloproctology = Tech Coloproctol Techniques in Coloproctology = Tech Coloproctol Techniques in Coloproctology = Tech. Coloproctol. Techniques in Comparative Respiratory Physiology = Soc Exp Biol Sem Ser Techniques in Comparative Respiratory Physiology = Soc. Exp. Biol. Sem. Ser. Techniques in hand & upper extremity surgery = Tech Hand Up Extrem Surg Techniques in Interventional Radiology = Tech Interv Radiol Techniques in Interventional Radiology = Tech. Interv. Radiol. Techniques in Neurosurgery = Tech Neurosurg Techniques in Neurosurgery = Tech. Neurosurg. Techniques in Protein Chemistry (academic Press Inc) = Tech Prot Chem Techniques in Protein Chemistry (academic Press Inc) = Tech. Prot. Chem. Techniques in Protein Chemistry Viii = Tech Prot Chem Techniques in Protein Chemistry Viii = Tech. Prot. Chem. Techniques in Protein Chemistry Vi = Tech Prot Chem Techniques in Protein Chemistry Vi = Tech. Prot. Chem. Techniques in urology = Tech Urol Techniques in Urology = Tech. Urol. Techniques In Urology=Tech Urol;; Techniques in vascular and interventional radiology = Tech Vasc Interv Radiol Techniques in Vascular and Interventional Radiology = Tech. Vasc. Interv. Radiol. Techniques orthopediques = Tech Orthop Techniques to Assess The Corrosion Activity of Steel Reinforced Concrete Structures = Am Soc Test Mater Techniques to Assess The Corrosion Activity of Steel Reinforced Concrete Structures = Am. Soc. Test. Mater. Technische Mitteilungen Krupp Forschungsberichte = Tech Mitt Krupp Fors Technische Mitteilungen Krupp Forschungsberichte = Tech. Mitt. Krupp Fors. Technische Mitteilungen Krupp Werksberichte = Tech Mitt Krupp Werk Technische Mitteilungen Krupp Werksberichte = Tech. Mitt. Krupp Werk. Technische Mitteilungen = Tech. Mitt. Technische Rundschau = Tech. Rundsch. Technisches Messen = Tech Mess Technisches Messen = Tech. Mess. Technische Uberwachung = Tech. Uberwach. Technologia = Technologia Technological and Economic Development of Economy = Technol Econ Dev Eco Technological and Economic Development of Economy = Technol. Econ. Dev. Eco. Technological and Institutional Innovation in Irrigation = World Ban T Technological and Institutional Innovation in Irrigation = World. Ban. T. Technological and Medical Implications of Metabolic Control Analysis = Nato Asi 3 High Tech Technological and Medical Implications of Metabolic Control Analysis = Nato. Asi. 3. High. Tech. Technological Communities and Networks = Routl Adv Manag Bus Technological Communities and Networks = Routl. Adv. Manag. Bus. Technological Convergence and Social Networks in Information Management = Comm Com Inf Sc Technological Convergence and Social Networks in Information Management = Comm. Com. Inf. Sc. Technological Forecasting and Social Change = Technol Forecast Soc Technological Forecasting and Social Change = Technol. Forecast. Soc. Technological forecasting and social change = Technol Forecast Soc Change Technological Innovation for Sustainability = Ifip Adv Inf Comm Te Technological Innovation for Sustainability = Ifip. Adv. Inf. Comm. Te. Technological Innovation: Generating Economic Results = Adv Stud Entrep Inno Technological Innovation: Generating Economic Results = Adv. Stud. Entrep. Inno. Technological Transformation = Philos Tech Technological Transformation = Philos. Tech. Technological University Libraries in The Nineties = Iatul Proc New Ser Technological University Libraries in The Nineties = Iatul. Proc. New. Ser. Technologies and Management for Sustainable Biosystems = Biotech Agr Ind Med Technologies and Management for Sustainable Biosystems = Biotech. Agr. Ind. Med. Technologies and Systems for Access and Transport Networks = Artech Hse Mob Comm Technologies and Systems for Access and Transport Networks = Artech. Hse. Mob. Comm. Technologies for Advanced Heterogeneous Networks Ii, Proceedings = Lect Notes Comput Sc Technologies for Advanced Heterogeneous Networks Ii, Proceedings = Lect. Notes. Comput. Sc. Technologies for Advanced Heterogeneous Networks, Proceedings = Lect Notes Comput Sc Technologies for Advanced Heterogeneous Networks, Proceedings = Lect. Notes. Comput. Sc. Technologies for Constructing Intelligent Systems 1: Tasks = Stud Fuzziness Soft Technologies for Constructing Intelligent Systems 1: Tasks = Stud. Fuzziness. Soft. Technologies for Constructing Intelligent Systems 1: Tasks = Stud Fuzz Soft Comp Technologies for Constructing Intelligent Systems 1: Tasks = Stud. Fuzz. Soft. Comp. Technologies for Constructing Intelligent Systems 2: Tools = Stud Fuzz Soft Comp Technologies for Constructing Intelligent Systems 2: Tools = Stud. Fuzz. Soft. Comp. Technologies for E-learning and Digital Entertainment, Proceedings = Lect Notes Comput Sc Technologies for E-learning and Digital Entertainment, Proceedings = Lect. Notes. Comput. Sc. Technologies for Environmental Cleanup: Soil and Groundwater = Euro Environm Manag Technologies for Environmental Cleanup: Soil and Groundwater = Euro. Environm. Manag. Technologies for Environmental Cleanup: Toxic and Hazardous Waste Management = Euro Environm Manag Technologies for Environmental Cleanup: Toxic and Hazardous Waste Management = Euro. Environm. Manag. Technologies for E-services = Lect Notes Comput Sc Technologies for E-services = Lect. Notes. Comput. Sc. Technologies for E-services, Proceedings = Lect Notes Comput Sc Technologies for E-services, Proceedings = Lect. Notes. Comput. Sc. Technologies for Interactive Digital Storytelling and Entertainment = Lect Notes Comput Sc Technologies for Interactive Digital Storytelling and Entertainment = Lect. Notes. Comput. Sc. Technologies for Interactive Digital Storytelling and Entertainment, Proceedings = Lect Notes Comput Sc Technologies for Interactive Digital Storytelling and Entertainment, Proceedings = Lect. Notes. Comput. Sc. Technologies for Optical Countermeasures Iii = P Soc Photo-opt Ins Technologies for Optical Countermeasures Iii = P. Soc. Photo-opt. Ins. Technologies for Optical Countermeasures Iv = P Soc Photo-opt Ins Technologies for Optical Countermeasures Iv = P. Soc. Photo-opt. Ins. Technologies for Optical Countermeasures = Proc Spie Technologies for Optical Countermeasures = Proc. Spie. Technologies for Optical Countermeasures = P Soc Photo-opt Ins Technologies for Optical Countermeasures = P. Soc. Photo-opt. Ins. Technologies for Optical Countermeasures Vii = P Soc Photo-opt Ins Technologies for Optical Countermeasures Vii = P. Soc. Photo-opt. Ins. Technologies for Optical Fiber Communications = P Soc Photo-opt Ins Technologies for Optical Fiber Communications = P. Soc. Photo-opt. Ins. Technologies for Sustainable Agriculture On Marginal Uplands in Southeast Asia = Aciar Proc Technologies for Sustainable Agriculture On Marginal Uplands in Southeast Asia = Aciar. Proc. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Iii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Iii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Ii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Ii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Iv = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Iv = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware in The Loop Testing Ix = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware in The Loop Testing Ix = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Viii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Viii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vi = Proc Spie Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vi = Proc. Spie. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vi = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Vi = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing V = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing V = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xiii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xiii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xii = Proc Spie Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xii = Proc. Spie. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xii = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xii = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in The-loop Testing Xi = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in The-loop Testing Xi = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing X = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing X = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xv = P Soc Photo-opt Ins Technologies for Synthetic Environments: Hardware-in-the-loop Testing Xv = P. Soc. Photo-opt. Ins. Technologies for Synthetic Environments: Hardware-in-the-loop Xvi = Proc Spie Technologies for Synthetic Environments: Hardware-in-the-loop Xvi = Proc. Spie. Technologies of 3-liter Automobiles = Vdi Bericht Technologies of 3-liter Automobiles = Vdi. Bericht. Technologies of Lived Abstraction = Technol Lived Abstr Technologies of Lived Abstraction = Technol. Lived Abstr. Technologies, Protocols, and Services for Next-generation Internet = Proc Spie Technologies, Protocols, and Services for Next-generation Internet = Proc. Spie. Technologies, Protocols, and Services for Next-generation Internet = P Soc Photo-opt Ins Technologies, Protocols, and Services for Next-generation Internet = P. Soc. Photo-opt. Ins. Technologies, Systems, and Architectures for Transnational Defense Ii = P Soc Photo-opt Ins Technologies, Systems, and Architectures for Transnational Defense Ii = P. Soc. Photo-opt. Ins. Technologies, Systems, and Architectures for Transnational Defense = P Soc Photo-opt Ins Technologies, Systems, and Architectures for Transnational Defense = P. Soc. Photo-opt. Ins. Technology 2000, Vol 1 = Nasa Conf P Technology 2000, Vol 1 = Nasa. Conf. P. Technology Analysis and Strategic Management=Tech. Anal. Strategic Manage. Technology Analysis & Strategic Management = Technol Anal Strateg Technology Analysis & Strategic Management = Technol. Anal. Strateg. Technology and Aging = Assist Techn Res Ser Technology and Aging = Assist. Techn. Res. Ser. Technology and Applications of Light Guides = P Soc Photo-opt Ins Technology and Applications of Light Guides = P. Soc. Photo-opt. Ins. Technology and Assessment: The Tale of Two Interpretations = Res Methods Educ Tec Technology and Assessment: The Tale of Two Interpretations = Res. Methods. Educ. Tec. Technology and Culture = T&C Technology and Culture=Tech. Cult. Technology and culture = Technol Cult Technology and Culture = Technol Cult Technology and Culture = Technol. Cult. Technology and Disability = Technol Disabil Technology and Disability = Technol. Disabil. Technology and Health Care in An Era of Limits = Med Inn Cr Technology and Health Care in An Era of Limits = Med. Inn. Cr. Technology and health care : official journal of the European Society for Engineering and Medicine = Technol Health Care Technology and Health Care=Technol Health Care;; Technology and Health Care = Technol Health Care Technology and Health Care = Technol. Health Care Technology and Methods in Behavioral Medicine = Persp Beh M Technology and Methods in Behavioral Medicine = Persp. Beh. M. Technology and Regulation: How Are They Driving Our Markets? = Zi Sch Bus Fin Ma Technology and Regulation: How Are They Driving Our Markets? = Zi. Sch. Bus. Fin. Ma. Technology and Security: Governing Threats in The New Millennium = New Secur Chall Technology and Security: Governing Threats in The New Millennium = New Secur. Chall. Technology and Society: Building Our Sociotechnical Future = Inside Technol Technology and Society: Building Our Sociotechnical Future = Inside. Technol. Technology and The Culture of Progress in Meiji Japan = Routl Asian Stud As Technology and The Culture of Progress in Meiji Japan = Routl. Asian. Stud. As. Technology and Vocational Education for Sustainable Development: Empowering Individuals for The Future = Tech Vocat Ed Train Technology and Vocational Education for Sustainable Development: Empowering Individuals for The Future = Tech. Vocat. Ed. Train. Technology-based Education: Bringing Researchers and Practitioners Together = Nebr Symp Inf Tech E Technology-based Education: Bringing Researchers and Practitioners Together = Nebr. Symp. Inf. Tech. E. Technology Developments: The Role of Mechanism and Machine Science and Iftomm = Mech Mach Sci Technology Developments: The Role of Mechanism and Machine Science and Iftomm = Mech. Mach. Sci. Technology (Elmsford, N.Y.) = Technology Technology-energy-environment-health (teeh) Chain in China: A Case Study of Cokemaking = Alliance Glob Sustai Technology-energy-environment-health (teeh) Chain in China: A Case Study of Cokemaking = Alliance. Glob. Sustai. Technology Enhanced Learning = Int Fed Info Proc Technology Enhanced Learning = Int. Fed. Info. Proc. Technology Enhanced Learning: Quality of Teaching and Educational Reform = Comm Com Inf Sc Technology Enhanced Learning: Quality of Teaching and Educational Reform = Comm. Com. Inf. Sc. Technology Evaluation Center Assessment Program. Executive summary = Technol Eval Cent Asses Program Exec Summ Technology for Business Needs = Imeche Sem Technology for Business Needs = Imeche. Sem. Technology for Combating Wmd Terrorism = Nato Sci Ser Ii-math Technology for Combating Wmd Terrorism = Nato. Sci. Ser. Ii-math. Technology for Combating Wmd Terrorism = Nato Sci Ser Ii Math Technology for Combating Wmd Terrorism = Nato. Sci. Ser. Ii. Math. Technology for Modelling: Electrical Analogies, Engineering Practice, and The Development of Analogue Computing = Hist Comput-springer Technology for Modelling: Electrical Analogies, Engineering Practice, and The Development of Analogue Computing = Hist. Comput-springer. Technology for Teaching and Learning = Th Yr Sch S Technology for Teaching and Learning = Th. Yr. Sch. S. Technology for Waterborne Coatings = Acs Sym Ser Technology for Waterborne Coatings = Acs. Sym. Ser. Technology Gatekeepers for War and Peace: The British Ship Revolution and Japanese Industrialization = St Antonys Ser Technology Gatekeepers for War and Peace: The British Ship Revolution and Japanese Industrialization = St. Antonys. Ser. Technology Globalization and Development Series = Technol Glob Dev Ser Technology Globalization and Development Series = Technol. Glob. Dev. Ser. Technology in Cancer Research and Treatment = Technol. Cancer Res. Treat. Technology in Cancer Research & Treatment = Technol Cancer Res T Technology in Cancer Research & Treatment = Technol. Cancer Res. T. Technology in cancer research & treatment = Technol Cancer Res Treat Technology Innovation and Policy = Tech Inno P Technology Innovation and Policy = Tech. Inno. P. Technology in society = Technol Soc Technology in Society = Technol Soc Technology in Society = Technol. Soc. Technology Link to Economic Development = Ann Ny Acad Sci Technology Link to Economic Development = Ann. Ny. Acad. Sci. Technology, Morality, and Social Policy = S Soc Polit Technology, Morality, and Social Policy = S. Soc. Polit. Technology of Floor Maintenance and Current Trends = Am Soc Test Mater Technology of Floor Maintenance and Current Trends = Am. Soc. Test. Mater. Technology of Functional Cereal Products = Woodhead Food Ser Technology of Functional Cereal Products = Woodhead. Food. Ser. Technology of Gallium Nitride Crystal Growth = Springer Ser Mater S Technology of Gallium Nitride Crystal Growth = Springer. Ser. Mater. S. Technology of Measurement and Testing in Automotive Engineering = Vdi Bericht Technology of Measurement and Testing in Automotive Engineering = Vdi. Bericht. Technology of Object-oriented Languages and Systems Tools 4 = Tools Technology of Object-oriented Languages and Systems - Tools 5 = Tools Technology of Object-oriented Languages and Systems - Tools 6 = Tools Technology of Object-oriented Languages and Systems - Tools 7 = Tools Technology of Object-oriented Languages, Systems and Architectures = Kluwer Int Ser Eng C Technology of Object-oriented Languages, Systems and Architectures = Kluwer. Int. Ser. Eng. C. Technology of Object-oriented Languages, Systems and Architectures = Springer Int Ser Eng Technology of Object-oriented Languages, Systems and Architectures = Springer. Int. Ser. Eng. Technology Pedagogy and Education = Technol Pedagog Educ Technology Pedagogy and Education = Technol. Pedagog. Educ. Technology, Pessimism, and Postmodernism = Sociol Sci Technology, Pessimism, and Postmodernism = Sociol. Sci. Technology Reports of the Osaka University = Technol. Rep. Osaka Univ. Technology Reports of the Osaka University = Tech. Rep. Osaka Univ. Technology review = Technol Rev Technology Review = Technol Rev Technology Review = Technol. Rev. Technology Risk and Society : An International Series in Risk Analysis = Tech Risk S Technology Risk and Society : An International Series in Risk Analysis = Tech. Risk S. Technology Transfer and Intellectual Property Issues = Intell Prop 21st Cen Technology Transfer and Intellectual Property Issues = Intell. Prop. 21st. Cen. Technology Transfer and Training = Transport Res Rec Technology Transfer and Training = Transport. Res. Rec. Technology Transfer in A Global Community = Int Sampe Tech Conf Technology Transfer in A Global Community = Int. Sampe. Tech. Conf. Technology Transfer in Biotechnology: From Lab to Industry to Production = Adv Biochem Eng Biot Technology Transfer in Biotechnology: From Lab to Industry to Production = Adv. Biochem. Eng. Biot. Technology Transfer Via Foreign Direct Investment in Central and Eastern Europe: Theory, Method of Research and Empirical Evidence = Stud Econ Transit Technology Transfer Via Foreign Direct Investment in Central and Eastern Europe: Theory, Method of Research and Empirical Evidence = Stud. Econ. Transit. Technology, Transgenics and A Practical Moral Code = Int Libr Eth Law Tec Technology, Transgenics and A Practical Moral Code = Int. Libr. Eth. Law. Tec. Technometrics = Technometrics Technometrics = Technometrics Technonatures = Environ Humanit Technonatures = Environ. Humanit. Technopolis Phenomenon = In Tech In Technopolis Phenomenon = In. Tech. In. Techno-security in An Age of Globalization = Pac Rim Bus Technol Techno-security in An Age of Globalization = Pac. Rim. Bus. Technol. Technovation = Technovation Tecnica Pecuaria En Mexico = Tec Pecu Mex Tecnica Pecuaria En Mexico = Tec. Pecu. Mex. Tecnologia Y Ciencias Del Agua = Tecnol Cienc Agua Tecnologia Y Ciencias Del Agua = Tecnol. Cienc. Agua Tecnologica (Chicago, Ill.) = Tecnologica Tecnologica. MAP supplement. Blue Cross and Blue Shield Association. Medical Advisory Panel = Tecnologica MAP Suppl Tecnologica. MAP Supplement = Tecnologica. MAP Suppl. Tecnologica = Tecnologica Tectonic and Climatic Evolution of The Arabian Sea Region = Geol Soc Spec Publ Tectonic and Climatic Evolution of The Arabian Sea Region = Geol. Soc. Spec. Publ. Tectonic and Stratigraphic Evolution of Zagros and Makran During The Mesozoic-cenozoic = Geol Soc Spec Publ Tectonic and Stratigraphic Evolution of Zagros and Makran During The Mesozoic-cenozoic = Geol. Soc. Spec. Publ. Tectonic Aspects of The Alpine-dinaride-carpathian System = Geol Soc Spec Publ Tectonic Aspects of The Alpine-dinaride-carpathian System = Geol. Soc. Spec. Publ. Tectonic Development of The Eastern Mediterranean Region = Geol Soc Spec Publ Tectonic Development of The Eastern Mediterranean Region = Geol. Soc. Spec. Publ. Tectonic Events Responsible for Britains Oil and Gas Reserves = Geol Soc Spec Publ Tectonic Events Responsible for Britains Oil and Gas Reserves = Geol. Soc. Spec. Publ. Tectonic Growth of A Collisional Continental Margin: Crustal Evolution of Southern Alaska = Geol Soc Am Spec Pap Tectonic Growth of A Collisional Continental Margin: Crustal Evolution of Southern Alaska = Geol. Soc. Am. Spec. Pap. Tectonics, Climate, and Landscape Evolution = Geol S Am S Tectonics, Climate, and Landscape Evolution = Geol. S. Am. S. Tectonics of Strike-slip Restraining and Releasing Bends = Geol Soc Spec Publ Tectonics of Strike-slip Restraining and Releasing Bends = Geol. Soc. Spec. Publ. Tectonics of The Nanga Parbat Syntaxis and The Western Himalaya = Geol Soc Spec Publ Tectonics of The Nanga Parbat Syntaxis and The Western Himalaya = Geol. Soc. Spec. Publ. Tectonics of The Western Mediterranean and North Africa = Geol Soc Spec Publ Tectonics of The Western Mediterranean and North Africa = Geol. Soc. Spec. Publ. Tectonics = Tectonics Tectonophysics = Tectonophysics Ted Hughes = Routledge Guides Lit Ted Hughes = Routledge. Guides. Lit. Teenagers Citizenship = Relatsh Resour Teenagers Citizenship = Relatsh. Resour. Teheraner Forschungen = TeherF Tehnicki Vjesnik-technical Gazette = Teh Vjesn Tehnicki Vjesnik-technical Gazette = Teh. Vjesn. Teicoplanin : Further European Experience = Roy Soc Med Int Cong Teicoplanin : Further European Experience = Roy. Soc. Med. Int. Cong. Teiresias. A Review and Continuing Bibliography of Boiotian Studies = Teiresias Tekhnicheskiya Universitet v Plovdiv = Izv. Tekhn. Univ. Plovdiv. Fund. Nauk. Prilozhen. Teknik Dergi = Tek Dergi Teknik Dergi = Tek. Dergi Tekstil = Tekstil Tekstil Ve Konfeksiyon = Tekst Konfeksiyon Tekstil Ve Konfeksiyon = Tekst. Konfeksiyon Teksty Drugie = Teksty Drugie Tel Aviver Jahrbuch fur deutsche Geschichte / herausgegeben vom Institut fur Deutsche Geschichte = Tel Aviver Jahrb Dtsch Gesch Tel Aviv. Journal of the Institute of Archaeology of Tel Aviv University = TelAvivJA Telecommuications and Networking - Ict 2004 = Lect Notes Comput Sc Telecommuications and Networking - Ict 2004 = Lect. Notes. Comput. Sc. Telecommunication = Eur Comm P Telecommunication = Eur. Comm. P. Telecommunication Journal = Telecommun J Telecommunication Journal = Telecommun. J. Telecommunication : Limits to Deregulation ? = Eur Comm P Telecommunication : Limits to Deregulation ? = Eur. Comm. P. Telecommunication Markets: Drivers and Impediments = Contrib Econ Telecommunication Markets: Drivers and Impediments = Contrib. Econ. Telecommunications and Beyond: The Broader Applicability of Sdl and Msc = Lect Notes Comput Sc Telecommunications and Beyond: The Broader Applicability of Sdl and Msc = Lect. Notes. Comput. Sc. Telecommunications and It Convergence Towards Service E-volution = Lect Notes Comput Sc Telecommunications and It Convergence Towards Service E-volution = Lect. Notes. Comput. Sc. Telecommunications and Networking - Ict 2004 = Lect Notes Comput Sc Telecommunications and Networking - Ict 2004 = Lect. Notes. Comput. Sc. Telecommunications and Pacific Development : Alternatives for The Next Decade = North Holl Stud Tele Telecommunications and Pacific Development : Alternatives for The Next Decade = North. Holl. Stud. Tele. Telecommunications and Radio Engineering = Telecomm Radio Eng+ Telecommunications and Radio Engineering = Telecomm. Radio Eng+.+ Telecommunications and Radio Engineer-ussr = Telecommun Radio Eng Telecommunications and Radio Engineer-ussr = Telecommun. Radio Eng. Telecommunications Industry = Aimr Ind Anal Ser Telecommunications Industry = Aimr. Ind. Anal. Ser. Telecommunications Modeling, Policy, and Technology = Operat Res Comp Sci Telecommunications Modeling, Policy, and Technology = Operat. Res. Comp. Sci. Telecommunications Modeling, Policy, and Technology = Oper Res Comput Sci Telecommunications Modeling, Policy, and Technology = Oper. Res. Comput. Sci. Telecommunications Network Design and Management = Operat Res Comp Sci Telecommunications Network Design and Management = Operat. Res. Comp. Sci. Telecommunications Network Design and Management = Oper Res Comput Sci Telecommunications Network Design and Management = Oper. Res. Comput. Sci. Telecommunications Planning : Innovations in Pricing, Network Design and Management = Operat Res Comp Sci Telecommunications Planning : Innovations in Pricing, Network Design and Management = Operat. Res. Comp. Sci. Telecommunications policy = Telecomm Policy Telecommunications Policy=Telecommunications Pol. Telecommunications Policy = Telecommun Policy Telecommunications Policy = Telecommun. Policy Telecommunications Reports International = Telecommun Rep Int Telecommunications Reports International = Telecommun. Rep. Int. Telecommunications (series) = Telecommun Telecommunications (series) = Telecommun. Telecommunication Systems = Telecommun Syst Telecommunication Systems = Telecommun. Syst. Teleconnect = Teleconnect Tele-english Edition = Tele-engl Edition Tele-english Edition = Tele-engl. Edition Tele-learning: The Challenge for The Third Millennium = Int Fed Info Proc Tele-learning: The Challenge for The Third Millennium = Int. Fed. Info. Proc. Telemanipulator and Telepresence Technologies Iii = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies Iii = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies Ii = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies Ii = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies Iv = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies Iv = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies Viii = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies Viii = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies Vi = Proc Spie Telemanipulator and Telepresence Technologies Vi = Proc. Spie. Telemanipulator and Telepresence Technologies Vi = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies Vi = P. Soc. Photo-opt. Ins. Telemanipulator and Telepresence Technologies V = Proc Spie Telemanipulator and Telepresence Technologies V = Proc. Spie. Telemanipulator and Telepresence Technologies V = P Soc Photo-opt Ins Telemanipulator and Telepresence Technologies V = P. Soc. Photo-opt. Ins. Telemanipulator Technology and Space Telerobotics = P Soc Photo-opt Ins Telemanipulator Technology and Space Telerobotics = P. Soc. Photo-opt. Ins. Telemanipulator Technology = P Soc Photo-opt Ins Telemanipulator Technology = P. Soc. Photo-opt. Ins. Telematcs for Vehicles = Vdi Bericht Telematcs for Vehicles = Vdi. Bericht. Telemedicine and E-health = Telemed E-health Telemedicine and E-health = Telemed. E-health Telemedicine and telehealth networks : newsmagazine of distance healthcare = Telemed Telehealth Netw Telemedicine and Telehealth Networks = Telemed. Telehealth Netw. Telemedicine and virtual reality = Telemed Virtual Real Telemedicine and Virtual Reality = Telemed. Virtual Real. Telemedicine Journal and E-health = Telemed J E-health Telemedicine Journal and E-health = Telemed. J. E-health Telemedicine Journal and E-Health = Telemed. J. E Health Telemedicine journal and e-health : the official journal of the American Telemedicine Association = Telemed J E Health Telemedicine Journal = Telemed J Telemedicine Journal = Telemed. J. Telemedicine journal : the official journal of the American Telemedicine Association = Telemed J Telemedicine - Risks and Opportunities = Roy S Med S Telemedicine - Risks and Opportunities = Roy. S. Med. S. Telemedicine today = Telemed Today Telemedicine Today = Telemed. Today Teleology of The Modern Nation-state: Japan and China = Encounters Asia Teleology of The Modern Nation-state: Japan and China = Encounters. Asia. Teleoperation : Numerical Simulation and Experimental Validation = Euro C Comp Teleoperation : Numerical Simulation and Experimental Validation = Euro. C. Comp. Telephone Survey Methodology = Wiley S Pro Telephone Survey Methodology = Wiley. S. Pro. Telephony = Telephony Telephony, The Internet, and The Media = Telecommun Telephony, The Internet, and The Media = Telecommun. Telescope Control Systems Iii = P Soc Photo-opt Ins Telescope Control Systems Iii = P. Soc. Photo-opt. Ins. Telescope Control Systems Ii = P Soc Photo-opt Ins Telescope Control Systems Ii = P. Soc. Photo-opt. Ins. Telescopes and Instrumentation for Solar Astrophysics = P Soc Photo-opt Ins Telescopes and Instrumentation for Solar Astrophysics = P. Soc. Photo-opt. Ins. Telescope Structures, Enclosures, Controls, Assembly/integration/validation, and Commissioning = Proc Spie Telescope Structures, Enclosures, Controls, Assembly/integration/validation, and Commissioning = Proc. Spie. Telescope Structures, Enclosures, Controls, Assembly/integration/validation, and Commissioning = P Soc Photo-opt Ins Telescope Structures, Enclosures, Controls, Assembly/integration/validation, and Commissioning = P. Soc. Photo-opt. Ins. Telescopy Control Systems = P Soc Photo-opt Ins Telescopy Control Systems = P. Soc. Photo-opt. Ins. Teleteaching = Ifip Trans A Teleteaching = Ifip. Trans. A. Teletraffic and Datatraffic in A Period of Change = North Holl Stud Tele Teletraffic and Datatraffic in A Period of Change = North. Holl. Stud. Tele. Teletraffic and Datatraffic = North Holl Stud Tele Teletraffic and Datatraffic = North. Holl. Stud. Tele. Teletraffic Contributions for The Information Age = Teletraf Sci Eng Teletraffic Contributions for The Information Age = Teletraf. Sci. Eng. Teletraffic Engineering in A Competitive World = Teletraf Sci Eng Teletraffic Engineering in A Competitive World = Teletraf. Sci. Eng. Teletraffic Science and Engineering = Teletraf Sci Eng Teletraffic Science and Engineering = Teletraf. Sci. Eng. Television and Culture in Putin's Russia: Remote Control = Basees-rout Ser Russ Television and Culture in Putin's Russia: Remote Control = Basees-rout. Ser. Russ. Television and Terror: Conflicting Times and The Crisis of News Discourse = New Secur Chall Television and Terror: Conflicting Times and The Crisis of News Discourse = New. Secur. Chall. Television and Youth Culture: Televised Paranoia = Psychoanal Educ Soc Television and Youth Culture: Televised Paranoia = Psychoanal. Educ. Soc. Television, Democracy and Elections in Russia = Basees-rout Ser Russ Television, Democracy and Elections in Russia = Basees-rout. Ser. Russ. Television Entertainment = Commun Soc-ser Television Entertainment = Commun. Soc-ser. Television Goes Digital = Econ Inform Comm Ent Television Goes Digital = Econ. Inform. Comm. Ent. Television in India: Satellites, Politics and Cultural Change = Routl Media Cult Soc Television in India: Satellites, Politics and Cultural Change = Routl. Media. Cult. Soc. Television & New Media = Telev New Media Television & New Media = Telev. New Media Television Quarterly = Telev Quart Television Quarterly = Telev. Quart. Televisions = Televisions TeLinde's operative gynecology updates = TeLindes Oper Gynecol Updates Telling Elt Tales Out of School = Procd Soc Behv Telling Elt Tales Out of School = Procd. Soc. Behv. Telling Ruins in Latin America = New Concepts Lat Am Telling Ruins in Latin America = New. Concepts. Lat. Am. Telling The Evolutionary Time: Molecular Clocks and The Fossil Record = Syst Assoc Spec Vol Telling The Evolutionary Time: Molecular Clocks and The Fossil Record = Syst. Assoc. Spec. Vol. Tellus Series A-dynamic Meteorology and Oceanography = Tellus A Tellus Series A-dynamic Meteorology and Oceanography = Tellus A. Tellus Series A = Tellus Ser. A Tellus Series B-chemical and Physical Meteorology = Tellus B Tellus Series B-chemical and Physical Meteorology = Tellus B. Tellus. Series B, Chemical and physical meteorology = Tellus B Chem Phys Meteorol Tellus Series B = Tellus Ser. B Tellus = Tellus Telma = Telma Telomerase: Composition, Functions and Clinical Implications = Dna Prop Modif Funct Telomerase: Composition, Functions and Clinical Implications = Dna. Prop. Modif. Funct. Telomeres and Telomerase = Ciba F Symp Telomeres and Telomerase = Ciba. F. Symp. Telomeres and Telomerase: Methods and Protocols = Methods Mol Biol Telomeres and Telomerase: Methods and Protocols = Methods Mol. Biol. Telomeres, Second Edition = Cold Spring Harb Mon Telomeres, Second Edition = Cold. Spring. Harb. Mon. Telopea = Telopea Telos = Telos-us Telos = Telos-us. Tel Quel = Tel Quel Temas de poblacion = Temas Poblac Temas odontologicos = Temas Odontol Temas Odontologicos = Temas Odontol. Temenos = Temenos Temperature '98 = Vdi Bericht Temperature '98 = Vdi. Bericht. Temperature Adaptation of Biological Membranes = Portl Pr P Temperature Adaptation of Biological Membranes = Portl. Pr. P. Temperature and Environmental Effects On The Testis = Adv Exp Med Biol Temperature and Environmental Effects On The Testis = Adv. Exp. Med. Biol. Temperature : Its Measurement and Control in Science and Industry = Temp Meas C Temperature : Its Measurement and Control in Science and Industry = Temp. Meas. C. Temperature : Its Measurement and Control in Science and Industry, Vol 6, Pts 1 and 2 = Temp Meas C Temperature : Its Measurement and Control in Science and Industry, Vol 6, Pts 1 and 2 = Temp. Meas. C. Temperature: Its Measurement and Control in Science and Industry, Vol 7, Pts 1 and 2 = Aip Conf Proc Temperature: Its Measurement and Control in Science and Industry, Vol 7, Pts 1 and 2 = Aip. Conf. Proc. Temperly-lieb Recoupling Theory and Invariants of 3-manifolds = Ann Math Stud Temperly-lieb Recoupling Theory and Invariants of 3-manifolds = Ann. Math. Stud. Temper Sands in Prehistoric Oceanian Pottery: Geotectonics, Sedimentology, Petrography, Provenance = Geol Soc Am Spec Pap Temper Sands in Prehistoric Oceanian Pottery: Geotectonics, Sedimentology, Petrography, Provenance = Geol. Soc. Am. Spec. Pap. Templates in Chemistry Iii = Top Curr Chem Templates in Chemistry Iii = Top. Curr. Chem. Templates in Chemistry Ii = Top Curr Chem Templates in Chemistry Ii = Top. Curr. Chem. Templates in Chemistry I = Top Curr Chem Templates in Chemistry I = Top. Curr. Chem. Temple dental review = Temple Dent Rev Temple Dental Review = Temple Dent. Rev. Temple international and comparative law journal = Temple Int Comp Law J Temple law quarterly (Philadelphia, Pa. : 1946) = Temple Law Q Temple Law Quarterly = Temple Law Q Temple Law Quarterly = Temple Law Q. Temple law review = Temple Law Rev Temple Law Review = Temple Law Rev Temple Law Review = Temple Law Rev. Tempo-niteroi = Tempo-niteroi Tempo Psicanalitico = Tempo Psicanal Tempo Psicanalitico = Tempo Psicanal. Temporal Control of Drug Delivery = Ann Ny Acad Sci Temporal Control of Drug Delivery = Ann. Ny. Acad. Sci. Temporal Data Mining = Ch Crc Data Min Know Temporal Data Mining = Ch. Crc. Data Min. Know. Temporal Information Processing in The Nervous System = Ann Ny Acad Sci Temporal Information Processing in The Nervous System = Ann. Ny. Acad. Sci. Temporality in Life As Seen Through Literature = Analecta Husserl Temporality in Life As Seen Through Literature = Analecta. Husserl. Temporality of The Environment = Paysage Environm Temporality of The Environment = Paysage. Environm. Temporal Lobe Epilepsy and The Mind-brain Relationship: A New Perspective = Int Rev Neurobiol Temporal Lobe Epilepsy and The Mind-brain Relationship: A New Perspective = Int. Rev. Neurobiol. Temporal Logic and State Systems = Texts Theor Comput S Temporal Logic and State Systems = Texts. Theor. Comput. S. Temporal Logic in Specification = Lect Notes Comput Sc Temporal Logic in Specification = Lect. Notes. Comput. Sc. Temporarily Open/closed Estuaries in South Africa = Environ Sci Eng Tech Temporarily Open/closed Estuaries in South Africa = Environ. Sci. Eng. Tech. Temporary Agency Work and The Information Society = Bull Comparat Lab Re Temporary Agency Work and The Information Society = Bull. Comparat. Lab. Re. Temporomandibular Disorders and Related Pain Conditions = Prog Pain Res Manag Temporomandibular Disorders and Related Pain Conditions = Prog. Pain Res. Manag. Tempos in Science and Nature: Structures, Relations, and Complexity = Ann Ny Acad Sci Tempos in Science and Nature: Structures, Relations, and Complexity = Ann. Ny. Acad. Sci. Tempo Social = Tempo Soc Tempo Social = Tempo Soc. Tempo = Tempo Temps Modernes = Temps Modernes Tempus Series = Tempus Ser Tempus Series = Tempus Ser. Tencon 2004 - 2004 Ieee Region 10 Conference, Vols A-d, Proceedings = Tencon Ieee Region Tencon 2005 - 2005 Ieee Region 10 Conference, Vols 1-5 = Tencon Ieee Region Tencon 2006 - 2006 Ieee Region 10 Conference, Vols 1-4 = Tencon Ieee Region Tencon 2007 - 2007 Ieee Region 10 Conference, Vols 1-3 = Tencon Ieee Region Tencon 2009 - 2009 Ieee Region 10 Conference, Vols 1-4 = Tencon Ieee Region Tencon 2010: 2010 Ieee Region 10 Conference = Tencon Ieee Region Tencon-ieee Region 10 Conference Proceedings = Tencon Ieee Region Tencon-ieee Region 10 Conference Proceedings = Tencon. Ieee. Region Tencon Ieee Region 10 Conference Proceedings = Tencon Ieee Region Tendon Transfer for Irreparable Cuff Tear = Collect Geco Tendon Transfer for Irreparable Cuff Tear = Collect. Geco. Tend The Olive, Water The Vine = Educ Policy Pract-cr Tend The Olive, Water The Vine = Educ. Policy. Pract-cr. Tennessee Agricultural Experiment Station Bulletin = Tenn Aes Bull Tennessee Agricultural Experiment Station Bulletin = Tenn. Aes. Bull. Tennessee code annotated / prepared under the supervision of the Tennessee Code Commission. Tennessee = Tenn Code Annot Tenn Tennessee Farm & Home Science = Tenn Farm Home Sci Tennessee Farm & Home Science = Tenn. Farm Home Sci. Tennessee Folklore Society bulletin = Tenn Folk Soc Bull Tennessee historical quarterly = Tenn Hist Q Tennessee law review = Tenn Law Rev Tennessee medicine : journal of the Tennessee Medical Association = Tenn Med Tennessee Medicine=Tenn Med;; Tennessee Medicine = Tenn. Med. Tennessee nurse / Tennessee Nurses Association = Tenn Nurse Tennessee Nurse = Tenn. Nurse Tennessee public welfare record = Tenn Publ Welfare Rec Tennessee studies in literature = Tenn Stud Lit Tenside, Surfactants, Detergents = Tenside, Surfactants, Deterg. Tenside Surfactants Detergents = Tenside Surfact Det Tenside Surfactants Detergents = Tenside Surfact. Det. Tensions in Teaching About Teaching: Understanding Practice As A Teacher Educator = Self Study Teach Tea Tensions in Teaching About Teaching: Understanding Practice As A Teacher Educator = Self. Study. Teach. Tea. Tensors in Image Processing and Computer Vision = Adv Pattern Recognit Tensors in Image Processing and Computer Vision = Adv. Pattern. Recognit. Tensor = Tensor Tenth All-union Symposium and School On High-resolution Molecular Spectroscopy = P Soc Photo-opt Ins Tenth All-union Symposium and School On High-resolution Molecular Spectroscopy = P. Soc. Photo-opt. Ins. Tenth Annual Ieee International Asic Conference and Exhibit, Proceedings = P Ieee Int Asic C&e Tenth Annual Ieee International Asic Conference and Exhibit, Proceedings = P. Ieee Int. Asic C&e. Tenth Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log Tenth Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. Tenth Annual Structure in Complexity Theory Conference, Proceedings = Struct Compl Th Conf Tenth Annual Structure in Complexity Theory Conference, Proceedings = Struct. Compl. Th. Conf. Tenth Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transitional-metal Ions = P Soc Photo-opt Ins Tenth Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transitional-metal Ions = P. Soc. Photo-opt. Ins. Tenth Ieee International Conference On Computer Vision, Vols 1 and 2, Proceedings = Ieee I Conf Comp Vis Tenth Ieee International Conference On Computer Vision, Vols 1 and 2, Proceedings = Ieee I. Conf. Comp. Vis. Tenth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc Int C Tools Art Tenth Ieee International Conference On Tools With Artificial Intelligence, Proceedings = Proc. Int. C. Tools Art. Tenth Ieee International Workshop On Rapid Systems Prototyping, Proceedings = P Ieee Rap Syst Prot Tenth Ieee International Workshop On Rapid Systems Prototyping, Proceedings = P. Ieee Rap. Syst. Prot. Tenth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy Tenth Ieee Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. Tenth International Conference On Computer Communications and Networks, Proceedings = Ieee Ic Comp Com Net Tenth International Conference On Computer Communications and Networks, Proceedings = Ieee. Ic. Comp. Com. Net. Tenth International Conference On Optical Fibre Sensors = P Soc Photo-opt Ins Tenth International Conference On Optical Fibre Sensors = P. Soc. Photo-opt. Ins. Tenth International Conference On Quality Control By Artificial Vision = Proc Spie Tenth International Conference On Quality Control By Artificial Vision = Proc. Spie. Tenth International Conference On Road Transport Information and Control = Iee Conf Publ Tenth International Conference On Road Transport Information and Control = Iee. Conf. Publ. Tenth International Conference On Solid State Lighting = Proc Spie Tenth International Conference On Solid State Lighting = Proc. Spie. Tenth International Conference On Solid State Lighting = P Soc Photo-opt Ins Tenth International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Tenth International School On Quantum Electronics: Laser Physics and Applications = Proc Spie Tenth International School On Quantum Electronics: Laser Physics and Applications = Proc. Spie. Tenth International School On Quantum Electronics: Laser Physics and Applications = P Soc Photo-opt Ins Tenth International School On Quantum Electronics: Laser Physics and Applications = P. Soc. Photo-opt. Ins. Tenth International Symposium On Gas Flow and Chemical Lasers = P Soc Photo-opt Ins Tenth International Symposium On Gas Flow and Chemical Lasers = P. Soc. Photo-opt. Ins. Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 1 = Proc Spie Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 1 = Proc. Spie. Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 1 = P Soc Photo-opt Ins Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 1 = P. Soc. Photo-opt. Ins. Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 2 = Proc Spie Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 2 = Proc. Spie. Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 2 = P Soc Photo-opt Ins Tenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pt 2 = P. Soc. Photo-opt. Ins. Tenth Mill Operators Conference 2009, Proceedings = Australas I Min Met Tenth Mill Operators Conference 2009, Proceedings = Australas. I. Min. Met. Tenth Scandinavian Conference On Artificial Intelligence = Fr Art Int Tenth Scandinavian Conference On Artificial Intelligence = Fr. Art. Int. Tenth Scandinavian Conference On Artificial Intelligence = Front Artif Intel Ap Tenth Scandinavian Conference On Artificial Intelligence = Front. Artif. Intel. Ap. Ten Years of Ads/cft = Aip Conf Proc Ten Years of Ads/cft = Aip. Conf. Proc. Teologia Y Vida = Teol Vida Teologia Y Vida = Teol. Vida Teorema = Teorema Teoreticheskaya Elektrotekhnika = Teoret. Elektrotekhn. Teoreticheskaya i Eksperimental'naya Khimiya = Teor. Eksp. Khim. Teoreticheskaya I Eksperimentalnaya Khimiya = Teor Eksp Khim Teoreticheskaya I Eksperimentalnaya Khimiya = Teor. Eksp. Khim. Teoreticheskaya i Matematicheskaya Fizika = Teor. Mat. Fiz. Teoreticheskie Osnovy Khimicheskoi Tekhnologii = Teor. Osn. Khim. Tekhnol. Teoria De La Educacion = Teor Educ Teoria De La Educacion = Teor. Educ. Teoria-rivista Di Filosofia = Teoria Teoria-rivista Di Filosofia = Teoria. Teoria = Teoria (N.S.) Teorie A Praxe Politickeho Katolicismu 1870-2007 = Polit Nabozenstvi Teorie A Praxe Politickeho Katolicismu 1870-2007 = Polit. Nabozenstvi. Teorie a praxe telesne vychovy a sportu = Teor Prax Teles Vychovy Teoriia i praktika fizicheskoi kul'tury = Teor Prak Fiz Kult Teoriya Funktsiy, Funktsional\cprime nyy Analiz i ikh Prilozheniya = Teor. Funktsiy Funktsional. Anal. i Prilozhen. Teoriya I Praktika Fizicheskoy Kultury = Teor Prakt Fiz Kult Teoriya I Praktika Fizicheskoy Kultury = Teor. Prakt. Fiz. Kult. Teoriya Veroyatnostei I Yeye Primeniya = Teor Ver Prim Teoriya Veroyatnostei I Yeye Primeniya = Teor. Ver. Prim. Teploenergetika (Moscow) = Teploenergetika (Moscow) Teplofizika Vysokikh Temperatur = Teplofiz. Vys. Temp. Te Puna-a New Zealand Mission Station: Historical Archaeology in New Zealand = Contrib Glob Hist Ar Te Puna-a New Zealand Mission Station: Historical Archaeology in New Zealand = Contrib. Glob. Hist. Ar. Tequesta = Tequesta Terabit Optical Networking: Architecture, Control, and Management Issues = Proc Spie Terabit Optical Networking: Architecture, Control, and Management Issues = Proc. Spie. Terabit Optical Networking: Architecture, Control, and Management Issues = P Soc Photo-opt Ins Terabit Optical Networking: Architecture, Control, and Management Issues = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Electronics and Photonics Iii = P Soc Photo-opt Ins Terahertz and Gigahertz Electronics and Photonics Iii = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Electronics and Photonics Ii = Proc Spie Terahertz and Gigahertz Electronics and Photonics Ii = Proc. Spie. Terahertz and Gigahertz Electronics and Photonics Ii = P Soc Photo-opt Ins Terahertz and Gigahertz Electronics and Photonics Ii = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Electronics and Photonics Iv = P Soc Photo-opt Ins Terahertz and Gigahertz Electronics and Photonics Iv = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Electronics and Photonics Vi = P Soc Photo-opt Ins Terahertz and Gigahertz Electronics and Photonics Vi = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Electronics and Photonics V = P Soc Photo-opt Ins Terahertz and Gigahertz Electronics and Photonics V = P. Soc. Photo-opt. Ins. Terahertz and Gigahertz Photonics = Proc Spie Terahertz and Gigahertz Photonics = Proc. Spie. Terahertz and Gigahertz Photonics = P Soc Photo-opt Ins Terahertz and Gigahertz Photonics = P. Soc. Photo-opt. Ins. Terahertz and Mid Infrared Radiation: Generation, Detection and Applications = Nato Sci Peace Sec B Terahertz and Mid Infrared Radiation: Generation, Detection and Applications = Nato. Sci. Peace. Sec. B. Terahertz Emitters, Receivers, and Applications = P Soc Photo-opt Ins Terahertz Emitters, Receivers, and Applications = P. Soc. Photo-opt. Ins. Terahertz for Military and Security Applications Iii = Proc Spie Terahertz for Military and Security Applications Iii = Proc. Spie. Terahertz for Military and Security Applications Iii = P Soc Photo-opt Ins Terahertz for Military and Security Applications Iii = P. Soc. Photo-opt. Ins. Terahertz for Military and Security Applications Ii = Proc Spie Terahertz for Military and Security Applications Ii = Proc. Spie. Terahertz for Military and Security Applications Ii = P Soc Photo-opt Ins Terahertz for Military and Security Applications Ii = P. Soc. Photo-opt. Ins. Terahertz for Military and Security Applications Iv = Proc Spie Terahertz for Military and Security Applications Iv = Proc. Spie. Terahertz for Military and Security Applications Iv = P Soc Photo-opt Ins Terahertz for Military and Security Applications Iv = P. Soc. Photo-opt. Ins. Terahertz for Military and Security Applications = P Soc Photo-opt Ins Terahertz for Military and Security Applications = P. Soc. Photo-opt. Ins. Terahertz for Military and Security Applications V = Proc Spie Terahertz for Military and Security Applications V = Proc. Spie. Terahertz for Military and Security Applications V = P Soc Photo-opt Ins Terahertz for Military and Security Applications V = P. Soc. Photo-opt. Ins. Terahertz Frequency Detection and Identification of Materials and Objects = Nato Science Peace S Terahertz Frequency Detection and Identification of Materials and Objects = Nato. Science. Peace. S. Terahertz Frequency Detection and Identification of Materials and Objects = Nato Sci Peace Sec B Terahertz Frequency Detection and Identification of Materials and Objects = Nato. Sci. Peace. Sec. B. Terahertz Optoelectronics = Top Appl Phys Terahertz Optoelectronics = Top. Appl. Phys. Terahertz Photonics = P Soc Photo-opt Ins Terahertz Photonics = P. Soc. Photo-opt. Ins. Terahertz Physics, Devices, and Systems Ii = P Soc Photo-opt Ins Terahertz Physics, Devices, and Systems Ii = P. Soc. Photo-opt. Ins. Terahertz Physics, Devices, and Systems Iv: Advanced Applications in Industry and Defense = P Soc Photo-opt Ins Terahertz Physics, Devices, and Systems Iv: Advanced Applications in Industry and Defense = P. Soc. Photo-opt. Ins. Terahertz Physics, Devices, and Systems = Proc Spie Terahertz Physics, Devices, and Systems = Proc. Spie. Terahertz Physics, Devices, and Systems = P Soc Photo-opt Ins Terahertz Physics, Devices, and Systems = P. Soc. Photo-opt. Ins. Terahertz Physics, Devices, and Systems V: Advance Applications in Industry and Defense = Proc Spie Terahertz Physics, Devices, and Systems V: Advance Applications in Industry and Defense = Proc. Spie. Terahertz Sources and Systems = Nato Sci Ser Ii-math Terahertz Sources and Systems = Nato. Sci. Ser. Ii-math. Terahertz Sources and Systems = Nato Sci Ser Ii Math Terahertz Sources and Systems = Nato. Sci. Ser. Ii. Math. Terahertz Spectroscopy and Applications 11 = Proc Spie Terahertz Spectroscopy and Applications 11 = Proc. Spie. Terahertz Spectroscopy and Applications 11 = P Soc Photo-opt Ins Terahertz Spectroscopy and Applications 11 = P. Soc. Photo-opt. Ins. Terahertz Spectroscopy and Applications = P Soc Photo-opt Ins Terahertz Spectroscopy and Applications = P. Soc. Photo-opt. Ins. Terahertz Technology and Applications Iii = Proc Spie Terahertz Technology and Applications Iii = Proc. Spie. Terahertz Technology and Applications Iii = P Soc Photo-opt Ins Terahertz Technology and Applications Iii = P. Soc. Photo-opt. Ins. Terahertz Technology and Applications Ii = P Soc Photo-opt Ins Terahertz Technology and Applications Ii = P. Soc. Photo-opt. Ins. Terahertz Technology and Applications = P Soc Photo-opt Ins Terahertz Technology and Applications = P. Soc. Photo-opt. Ins. Terapevticheskii Arkhiv = Terapevt Arkh Terapevticheskii Arkhiv = Terapevt. Arkh. Terapevticheskii arkhiv = Ter Arkh Terapevticheskii Arkhiv=Ter Arkh;; Terapevticheskii Arkhiv = Ter. Arkh. Terapia Psicologica = Ter Psicol Terapia Psicologica = Ter. Psicol. Terapia = Terapia Teraspalvelutoiminnan Tulevaisuus Suomessa = Vtt Res Notes Teraspalvelutoiminnan Tulevaisuus Suomessa = Vtt. Res. Notes. Teratogenesis, carcinogenesis, and mutagenesis = Teratog Carcinog Mutagen Teratogenesis, Carcinogenesis, and Mutagenesis=Teratog Carcinog Mutagen;; Teratogenesis, Carcinogenesis, and Mutagenesis = Teratog. Carcinog. Mutagen. Teratogenesis Carcinogenesis and Mutagenesis = Teratogen Carcin Mut Teratogenesis Carcinogenesis and Mutagenesis = Teratogen. Carcin. Mut. Teratology = Birth Defects Res., Part A Teratology=Teratology;; Teratology = Teratology Terbinafine in The Treatment of Superficial Fungal Infections (proceedings of The Asia-pacific Symposium On Lamisil) = Roy Soc Med Int Cong Terbinafine in The Treatment of Superficial Fungal Infections (proceedings of The Asia-pacific Symposium On Lamisil) = Roy. Soc. Med. Int. Cong. Terentia, Tullia and Publilia: The Women of Cicero's Family = Women Ancient World Terentia, Tullia and Publilia: The Women of Cicero's Family = Women Ancient. World. Terminology = Terminology Term Rewriting and Applications, Proceedings = Lect Notes Comput Sc Term Rewriting and Applications, Proceedings = Lect. Notes. Comput. Sc. Term Rewriting = Lect Notes Comput Sc Term Rewriting = Lect. Notes. Comput. Sc. Term Structure Modeling and Estimation in A State Space Framework = Lect Notes Econ Math Term Structure Modeling and Estimation in A State Space Framework = Lect. Notes. Econ. Math. Ternary and Multinary Compounds = Inst Phys Conf Ser Ternary and Multinary Compounds = Inst. Phys. Conf. Ser. Terotechnica = Terotechnica Terra Antartica Reports = Terra Antarct Rep Terra Antartica Reports = Terra Antarct. Rep. Terra Antartica Reports = Terra Ant Reports Terra Antartica Reports = Terra Ant. Reports Terra Australis = Terra Australis Terra dei Volsci. Annali del Museo archeologico di Frosinone = TerraVolsci Terrae incognitae = Terr Incogn Terraforming: The Creating of Habitable Worlds = Astron Univers Terraforming: The Creating of Habitable Worlds = Astron. Univers. Terra (Helsinki, Finland) = Terra Terramycine informations = Terramycine Inf Terrane Analysis of China and The Pacific Rim = Circ-pac C Terrane Analysis of China and The Pacific Rim = Circ-pac. C. Terrane Processes At The Margins of Gondwana = Geol Soc Spec Publ Terrane Processes At The Margins of Gondwana = Geol. Soc. Spec. Publ. Terra Nova = Terra Nova Terre et la Vie, La = Terre Vie Terre Et La Vie-revue D Ecologie Appliquee = Terre Vie-rev Ecol A Terre Et La Vie-revue D Ecologie Appliquee = Terre Vie-rev. Ecol. A. Terrestrial Atmospheric and Oceanic Sciences = Terr Atmos Ocean Sci Terrestrial Atmospheric and Oceanic Sciences = Terr. Atmos. Ocean. Sci. Terrestrial Field Dissipation Studies: Purpose, Design and Interpretation = Acs Sym Ser Terrestrial Field Dissipation Studies: Purpose, Design and Interpretation = Acs. Sym. Ser. Terrestrialization Process: Modelling Complex Interactions At The Biosphere-geosphere Interface = Geol Soc Spec Publ Terrestrialization Process: Modelling Complex Interactions At The Biosphere-geosphere Interface = Geol. Soc. Spec. Publ. Terrestrial Magnetism and Atmospheric Electricity = Terr. Magn. Atmos. Electr. Terrestrial Magnetism = Terr. Magn. Territorial Cohesion = Ger Annu Spat Res Po Territorial Cohesion = Ger. Annu. Spat. Res. Po. Territorial Future of The City = Urban Land Perspect Territorial Future of The City = Urban. Land. Perspect. Territorial Rights, Second Edition = Law Philos Libr Territorial Rights, Second Edition = Law. Philos. Libr. Territory, Society and Communication = Sci Societe Territory, Society and Communication = Sci. Societe. Terror and Suicide = Terror Hot Spots Con Terror and Suicide = Terror Hot. Spots. Con. Terror and The Sublime in Art and Critical Theory: From Auschwitz to Hiroshima to September 11 = Stud Eur Cult Hist Terror and The Sublime in Art and Critical Theory: From Auschwitz to Hiroshima to September 11 = Stud. Eur. Cult. Hist. Terror, Insecurity and Liberty: Illiberal Practices of Liberal Regimes After 9/11 = Routl Stud Lib Secur Terror, Insecurity and Liberty: Illiberal Practices of Liberal Regimes After 9/11 = Routl. Stud. Lib. Secur. Terrorism and Counterterrorism Methods and Technologies = P Soc Photo-opt Ins Terrorism and Counterterrorism Methods and Technologies = P. Soc. Photo-opt. Ins. Terrorism and Disaster: New Threats, New Ideas = Res Soc Probl Public Terrorism and Disaster: New Threats, New Ideas = Res. Soc. Probl. Public. Terrorism and Political Violence = Terror Polit Violenc Terrorism and Political Violence = Terror. Polit. Violenc. Terrorism and The Politics of Response = Rout Crit Terror Terrorism and The Politics of Response = Rout. Crit. Terror. Terrorism and Weapons of Mass Destruction: Responding to The Challenge = Rout Glob Secur Stud Terrorism and Weapons of Mass Destruction: Responding to The Challenge = Rout. Glob. Secur. Stud. Terrorism As A Challenge for National and International Law: Security Versus Liberty? = Beitr Ausland Offent Terrorism As A Challenge for National and International Law: Security Versus Liberty? = Beitr. Ausland. Offent. Terrorism As A Challenge for National and International Law: Security Versus Liberty? = Beitr Ausl Offentl R Terrorism As A Challenge for National and International Law: Security Versus Liberty? = Beitr. Ausl. Offentl. R. Terrorism, Freedom, and Security - Winning Without War = Bcsia Stud Int Secur Terrorism, Freedom, and Security - Winning Without War = Bcsia. Stud. Int. Secur. Terrorism Hot Spots and Conflict-related Issues = Terror Hot Spots Con Terrorism Hot Spots and Conflict-related Issues = Terror. Hot Spots Con. Terrorism Informatics: Knowledge Management and Data Mining for Homeland Security = Integr Ser Inform Sy Terrorism Informatics: Knowledge Management and Data Mining for Homeland Security = Integr. Ser. Inform. Sy. Terrorism = Terrorism Terrorism Today, Second Edition = Cass Ser Polit Viole Terrorism Today, Second Edition = Cass. Ser. Polit. Viole. Terrorism Versus Democracy: The Liberal State Response, Second Edition = Cass Ser Polit Viole Terrorism Versus Democracy: The Liberal State Response, Second Edition = Cass. Ser. Polit. Viole. Terrorist Rehabilitation and Counter-radicalisation: New Approaches to Counter-terrorism = Cass Ser Polit Viole Terrorist Rehabilitation and Counter-radicalisation: New Approaches to Counter-terrorism = Cass. Ser. Polit. Viole. Tertullian The African = Millenn Stud Kult Ge Tertullian The African = Millenn. Stud. Kult. Ge. Teruel. Instituto de estudios turolenses = Teruel Tesol Quarterly = Tesol Quart Tesol Quarterly = Tesol Quart. Test and Evaluation of Ir Detectors and Arrays Ii = P Soc Photo-opt Ins Test and Evaluation of Ir Detectors and Arrays Ii = P. Soc. Photo-opt. Ins. Test and Measurement Applications of Optoelectronic Devices = P Soc Photo-opt Ins Test and Measurement Applications of Optoelectronic Devices = P. Soc. Photo-opt. Ins. Test and Proofs, Proceedings = Lect Notes Comput Sc Test and Proofs, Proceedings = Lect. Notes. Comput. Sc. Test By Fire: The War Presidency of George W. Bush = Evol Am Presid Test By Fire: The War Presidency of George W. Bush = Evol. Am. Presid. Testicular Cell Dynamics and Endocrine Signaling = Ann Ny Acad Sci Testicular Cell Dynamics and Endocrine Signaling = Ann. Ny. Acad. Sci. Testicular Chromosome Structure and Gene Expression = Ann Ny Acad Sci Testicular Chromosome Structure and Gene Expression = Ann. Ny. Acad. Sci. Testicular Descent in Human = Adv Anat Embryol Cel Testicular Descent in Human = Adv. Anat. Embryol. Cel. Testicular Tangrams = E Schering Res Fdn W Testicular Tangrams = E. Schering. Res. Fdn. W. Testimony of John The Beloved = Sperry Symp Ser Testimony of John The Beloved = Sperry. Symp. Ser. Testing and Acceptance Criteria for Geosynthetic Clay Liners = Am Soc Test Mater Testing and Acceptance Criteria for Geosynthetic Clay Liners = Am. Soc. Test. Mater. Testing and Evaluation of Inorganic Materials I = Adv Mater Res-switz Testing and Evaluation of Inorganic Materials I = Adv. Mater. Res-switz. Testing and Performance of Geosynthetics in Subsurface Drainage = Am Soc Test Mater Testing and Performance of Geosynthetics in Subsurface Drainage = Am. Soc. Test. Mater. Testing During Concrete Construction = Rilem Proc Testing During Concrete Construction = Rilem. Proc. Testing for Abuse in Liability of Drugs in Humans = Nida Res Mg Testing for Abuse in Liability of Drugs in Humans = Nida. Res. Mg. Testing in Construction = Test Constr Testing in Construction = Test. Constr. Testing Molecular Wires: A Photophysical and Quantum Chemical Assay = Springer Theses-reco Testing Molecular Wires: A Photophysical and Quantum Chemical Assay = Springer. Theses-reco. Testing of Communicating Systems = Int Fed Info Proc Testing of Communicating Systems = Int. Fed. Info. Proc. Testing of Communicating Systems = Lect Notes Comput Sc Testing of Communicating Systems = Lect. Notes. Comput. Sc. Testing of Communicating Systems: Methods and Applications = Int Fed Info Proc Testing of Communicating Systems: Methods and Applications = Int. Fed. Info. Proc. Testing of Communicating Systems, Proceedings = Lect Notes Comput Sc Testing of Communicating Systems, Proceedings = Lect. Notes. Comput. Sc. Testing of Communication Systems, Proceedings = Lect Notes Comput Sc Testing of Communication Systems, Proceedings = Lect. Notes. Comput. Sc. Testing of Conventional and Unconventional Aggregates and Soils = Transport Res Rec Testing of Conventional and Unconventional Aggregates and Soils = Transport. Res. Rec. Testing of Fiber Reinforced Concrete = Amer Conc I Testing of Fiber Reinforced Concrete = Amer. Conc. I. Testing of Metals for Structures = Rilem Proc Testing of Metals for Structures = Rilem. Proc. Testing of Software and Communicating Systems, Proceedings = Lect Notes Comput Sc Testing of Software and Communicating Systems, Proceedings = Lect. Notes. Comput. Sc. Testing of Software and Communication Systems, Proceedings = Lect Notes Comput Sc Testing of Software and Communication Systems, Proceedings = Lect. Notes. Comput. Sc. Testing, Packaging, Reliability, and Applications of Semiconductor Lasers Iv = Proc Spie Testing, Packaging, Reliability, and Applications of Semiconductor Lasers Iv = Proc. Spie. Testing, Packaging, Reliability, and Applications of Semiconductor Lasers Iv = P Soc Photo-opt Ins Testing, Packaging, Reliability, and Applications of Semiconductor Lasers Iv = P. Soc. Photo-opt. Ins. Testing - Practice and Research Techniques = Lect Notes Comput Sc Testing - Practice and Research Techniques = Lect. Notes. Comput. Sc. Testing, Reliability, and Application of Micro- and Nano-material Systems Iii = P Soc Photo-opt Ins Testing, Reliability, and Application of Micro- and Nano-material Systems Iii = P. Soc. Photo-opt. Ins. Testing, Reliability, and Application of Micro- and Nano-material Systems Ii = Proc Spie Testing, Reliability, and Application of Micro- and Nano-material Systems Ii = Proc. Spie. Testing, Reliability, and Application of Micro- and Nano-material Systems Ii = P Soc Photo-opt Ins Testing, Reliability, and Application of Micro- and Nano-material Systems Ii = P. Soc. Photo-opt. Ins. Testing, Reliability, and Application of Micro- and Nano-material Systems = P Soc Photo-opt Ins Testing, Reliability, and Application of Micro- and Nano-material Systems = P. Soc. Photo-opt. Ins. Testing , Reliability, and Application of Micro-and Nano-material Sytems Iv = P Soc Photo-opt Ins Testing , Reliability, and Application of Micro-and Nano-material Sytems Iv = P. Soc. Photo-opt. Ins. Testing Reliability and Applications of Optoelectronic Devices = P Soc Photo-opt Ins Testing Reliability and Applications of Optoelectronic Devices = P. Soc. Photo-opt. Ins. Testing Software and Systems = Lect Notes Comput Sc Testing Software and Systems = Lect. Notes. Comput. Sc. Testing Soil Mixed With Waste Or Recycled Materials = Am Soc Test Mater Testing Soil Mixed With Waste Or Recycled Materials = Am. Soc. Test. Mater. Testing Techniques in Software Engineering = Lect Notes Comput Sc Testing Techniques in Software Engineering = Lect. Notes. Comput. Sc. Testing The Agn Paradigm = Aip Conf Proc Testing The Agn Paradigm = Aip. Conf. Proc. Testis, Epididymis and Technologies in The Year 2000 = E Schering Res Fdn W Testis, Epididymis and Technologies in The Year 2000 = E. Schering. Res. Fdn. W. Testis: From Stem Cell to Sperm Function = Serono Symp Testis: From Stem Cell to Sperm Function = Serono. Symp. Test Quality for Construction, Materials and Structures = Rilem Proc Test Quality for Construction, Materials and Structures = Rilem. Proc. Tests and Proofs = Lect Notes Comput Sc Tests and Proofs = Lect. Notes. Comput. Sc. Tests and Proofs, Proceedings = Lect Notes Comput Sc Tests and Proofs, Proceedings = Lect. Notes. Comput. Sc. Tests, Measurements, and Characterization of Electro-optic Devices and Systems = P Soc Photo-opt Ins Tests, Measurements, and Characterization of Electro-optic Devices and Systems = P. Soc. Photo-opt. Ins. Test = Test Test = Test Tet Effect: Intelligence and The Public Perception of War = Cass Mil Stud Tet Effect: Intelligence and The Public Perception of War = Cass. Mil. Stud. Tethys = Tethys Tetons 4: Galactic Structure, Stars, and The Interstellar Medium = Astr Soc P Tetons 4: Galactic Structure, Stars, and The Interstellar Medium = Astr. Soc. P. Tetraazacyclotetradecane Species As Models of The Polyazacrown Macrocycles = Chem Res Appl-nova Tetraazacyclotetradecane Species As Models of The Polyazacrown Macrocycles = Chem. Res. Appl-nova. Tetrahedron-asymmetry = Tetrahedron-asymmetr Tetrahedron-asymmetry = Tetrahedron-asymmetr. Tetrahedron, asymmetry = Tetrahedron Asymmetry Tetrahedron: Asymmetry = Tetrahedron: Asymmetry Tetrahedron letters = Tetrahedron Lett Tetrahedron Letters = Tetrahedron Lett Tetrahedron Letters = Tetrahedron Lett. Tetrahedron = Tetrahedron Tetsu to Hagane-journal of The Iron and Steel Institute of Japan = Tetsu To Hagane Tetsu to Hagane-journal of The Iron and Steel Institute of Japan = Tetsu To. Hagane. Tetsu-to-hagane Overseas-japan = Tetsu-to-hagane Tetsu to Hagane = Tetsu to Hagane Teubner-Archiv zur Mathematik = Teubner-Arch. Math. Teubner-Archiv zur Mathematik = Teubner-Arch. Math. Suppl. Teubner Skripten zur Mathematischen Stochastik = Teubner Skr. Math. Stochastik Teubner Skripten zur Numerik = Teubner Skr. Numer. Teubner Studienbücher Mathematik = Teubner Studienbüch. Math. Teubner-Texte zur Informatik = Teubner-Texte Inform. Teubner-Texte zur Mathematik = Teubner-Texte Math. Teubner-texte Zur Mathematik = Teub Text M Teubner-texte Zur Mathematik = Teub. Text. M. Teufelspakt in Fruhneuzeitlichen Verhorprotokollen: Standardisierung Und Regionalisierung Im Fruhneuhochdeutschen = Stud Linguist Ger Teufelspakt in Fruhneuzeitlichen Verhorprotokollen: Standardisierung Und Regionalisierung Im Fruhneuhochdeutschen = Stud. Linguist. Ger. Tev Physics = Ccast Wl Sw Tev Physics = Ccast. Wl. Sw. Texana = Texana Texas Agricultural Experiment Station Bulletin = Tex Aes Bull Texas Agricultural Experiment Station Bulletin = Tex. Aes. Bull. Texas Agricultural Experiment Station Miscellaneous Publication = Tex Aes Misc Publ Texas Agricultural Experiment Station Miscellaneous Publication = Tex. Aes. Misc. Publ. Texas Agricultural Experiment Station Progress Report = Tex Aes Prog Rep Texas Agricultural Experiment Station Progress Report = Tex. Aes. Prog. Rep. Texas Agricultural Progress = Tex Agr Prog Texas Agricultural Progress = Tex. Agr. Prog. Texas bar journal = Texas Bar J Texas Dental Assistants Association bulletin = Tex Dent Assist Assoc Bull Texas Dental Assistants Association Bulletin = Tex. Dent. Assist. Assoc. Bull. Texas dental journal = Tex Dent J Texas Dental Journal = Tex. Dent. J. Texas / Eso-cern Symposium On Relativistic Astrophysics, Cosmology, and Fundamental Physics = Ann Ny Acad Sci Texas / Eso-cern Symposium On Relativistic Astrophysics, Cosmology, and Fundamental Physics = Ann. Ny. Acad. Sci. Texas Heart Institute journal / from the Texas Heart Institute of St. Luke's Episcopal Hospital, Texas Children's Hospital = Tex Heart Inst J Texas Heart Institute Journal = Tex Heart I J Texas Heart Institute Journal = Tex. Heart I. J. Texas Heart Institute Journal=Tex Heart Inst J;; Texas Heart Institute Journal = Tex. Heart Inst. J. Texas hospitals = Tex Hosp Texas Hospitals = Tex. Hosp. Texas international law journal = Tex Int Law J Texas journal of pharmacy = Tex J Pharm Texas Journal of Science = Tex J Sci Texas Journal of Science = Tex. J. Sci. Texas journal of women and the law = Tex J Women Law Texas law review = Tex Law Rev Texas Law Review = Tex Law Rev Texas Law Review = Tex. Law Rev. Texas Linquistic Forum (tlf) = Tx Ling For Texas Linquistic Forum (tlf) = Tx. Ling. For. Texas medicine = Tex Med Texas Medicine=Tex Med;; Texas Medicine = Tex Med Texas Medicine = Tex. Med. Texas monthly (Austin, Tex.) = Tex Mon Texas nursing = Tex Nurs Texas Nursing = Tex. Nurs. Texas Papers in Foreign Language Education = Tex Pap For Texas Papers in Foreign Language Education = Tex. Pap. For. Texas/pascos 92 : Relativistic Astrophysics and Particle Cosmology = Ann Ny Acad Sci Texas/pascos 92 : Relativistic Astrophysics and Particle Cosmology = Ann. Ny. Acad. Sci. Texas Quarterly = Tex Quart Texas Quarterly = Tex. Quart. Texas reports on biology and medicine = Tex Rep Biol Med Texas Reports on Biology and Medicine = Tex. Rep. Biol. Med. Texas Reports On Biology and Medicine = Tex Rep Biol Med Texas Reports On Biology and Medicine = Tex. Rep. Biol. Med. Texas review of law & politics = Tex Rev Law Polit Texas state journal of medicine = Tex State J Med Texas studies in literature and language = Texas Stud Lit Lang Texas Studies in Literature and Language = Tex Stud Lit Lang Texas Studies in Literature and Language = Tex. Stud. Lit. Lang. Texas Tech law review = Tex Tech Law Rev Text and Intertext in Medieval Arthurian Literature = Garl Rl Hum Text and Intertext in Medieval Arthurian Literature = Garl. Rl. Hum. Text and Performance Quarterly = Text Perform Q Text and Performance Quarterly = Text Perform. Q. Text and Presentation // = U Fla Dep C Text and Presentation // = U. Fla. Dep. C. Text- and Speech-triggered Information Access = Lect Notes Artif Int Text- and Speech-triggered Information Access = Lect. Notes. Artif. Int. Textbooks in Mathematical Sciences = Textbooks Math. Sci. Textbooks in Mathematics = Textb Math Textbooks in Mathematics = Textb. Math. Textbooks in The Developing World = Edi Semin S Textbooks in The Developing World = Edi. Semin. S. Text Des Koptischen Psalters Aus Al-mudil = Texte Unters Gesch A Text Des Koptischen Psalters Aus Al-mudil = Texte. Unters. Gesch. A. Texte-revue De Critique Et De Theorie Litteraire = Texte Texte-revue De Critique Et De Theorie Litteraire = Texte. Textes Et Etudes Liturgiques / Studies in Liturgy = Tex Etu Lit Textes Et Etudes Liturgiques / Studies in Liturgy = Tex. Etu. Lit. Textes Liminaires = Cribles Textes Liminaires = Cribles. Texte Und Kommentare = Texte Komment Texte Und Kommentare = Texte Komment. Texte Und Materialien Zur Zeitgeschichte = Texte Mater Zeitgesc Texte Und Materialien Zur Zeitgeschichte = Texte Mater. Zeitgesc. Texte Und Studien Zum Antiken Judentum = Texte Stud Antik Jud Texte Und Studien Zum Antiken Judentum = Texte Stud. Antik. Jud. Texte Und Untersuchungen Zur Geschichte Der Altchristlichen Literatur = Texte Unters Gesch A Texte Und Untersuchungen Zur Geschichte Der Altchristlichen Literatur = Texte Unters. Gesch. A. Texte zur Didaktik der Mathematik = Texte Didakt. Math. Textile Advances in The Automotive Industry = Woodhead Publ Text Textile Advances in The Automotive Industry = Woodhead. Publ. Text. Textile Chemist and Colorist & American Dyestuff Reporter = Text Chem Color Am D Textile Chemist and Colorist & American Dyestuff Reporter = Text. Chem. Color. Am. D. Textile Chemist and Colorist & American Dyestuff Reporter = Text. Chem. Color. Am. Dyest Rep. Textile Chemist and Colorist = Text Chem Color Textile Chemist and Colorist = Text. Chem. Color. Textile Composites and Inflatable Structures Ii = Comp Meth Appl Sci Textile Composites and Inflatable Structures Ii = Comp. Meth. Appl. Sci. Textile Design: Principles, Advances and Applications = Woodhead Publ Ser Te Textile Design: Principles, Advances and Applications = Woodhead. Publ. Ser. Te. Textile Engineering = Adv Sci Eng Textile Engineering = Adv. Sci. Eng. Textile History = Text Hist Textile History = Text. Hist. Textile Industries = Text Ind-atlanta Textile Industries = Text. Ind-atlanta. Textile Institute and Industry = Text I Ind Textile Institute and Industry = Text. I. Ind. Textile Progress = Text. Prog. Textile rental = Text Rent Textile Rental = Text. Rent. Textile Research Journal = Text Res J Textile Research Journal = Text. Res. J. Textiles anciens. Bulletin du Centre international d’étude des textiles anciens = TextilAnc Textiles and Composites 92 = Vtt Symp Textiles and Composites 92 = Vtt. Symp. Textile Science and Technology = Text. Sci. Tech. Textiles for Cold Weather Apparel = Woodhead Publ Text Textiles for Cold Weather Apparel = Woodhead. Publ. Text. Textiles, Polymers and Composites for Buildings = Woodhead Publ Ser Te Textiles, Polymers and Composites for Buildings = Woodhead. Publ. Ser. Te. Textiles Trade and The Developing Countries = Uruguay R Textiles Trade and The Developing Countries = Uruguay. R. Textile-the Journal of Cloth & Culture = Textile Textile-the Journal of Cloth & Culture = Textile. Textile World = Text World Textile World = Text. World Textilveredlung = Textilveredlung Text Information Retrieval Systems, Third Edition = Libr Inform Sci Ser Text Information Retrieval Systems, Third Edition = Libr. Inform. Sci. Ser. Text Into Image : Image Into Text - 1995 Interdisciplinary Bicentenary Conference = Int For Lit Text Into Image : Image Into Text - 1995 Interdisciplinary Bicentenary Conference = Int. For. Lit. Textkoharenz Und Narration: Untersuchungen Russischer Texte Des Realismus Und Der Moderne = Narratologia Textkoharenz Und Narration: Untersuchungen Russischer Texte Des Realismus Und Der Moderne = Narratologia. Text & Kritik = Text Kritik Text Mining and Its Applications = Stud Fuzz Soft Comp Text Mining and Its Applications = Stud. Fuzz. Soft. Comp. Text Mining and Its Applications to Intelligence, Crm and Knowledge Management = Adv Manag Inform Text Mining and Its Applications to Intelligence, Crm and Knowledge Management = Adv. Manag. Inform. Text Mining: Theoretical Aspects and Applications = Adv Soft Comp Text Mining: Theoretical Aspects and Applications = Adv. Soft. Comp. Texto & Contexto Enfermagem = Texto Contexto Enfer Texto & Contexto Enfermagem = Texto Contexto Enfer. Textos del Bronce = Textos Bronce Textos de Matemática = Textos Mat. Sér. B Textos NEPO = Textos NEPO Text Resources and Lexical Knowledge = Text Trans Comp Proc Text Resources and Lexical Knowledge = Text Trans. Comp. Proc. Text Resources and Lexical Knowledge = Text Transl Comput P Text Resources and Lexical Knowledge = Text Transl. Comput. P. Texts and Monographs in Physics = Texts Monogr. Phys. Texts and Monographs in Symbolic Computation = Text Mg Symb Comput Texts and Monographs in Symbolic Computation = Text. Mg. Symb. Comput. Texts and Monographs in Symbolic Computation = Texts Monogr. Symbol. Comput. Texts and Readings in Mathematics = Texts Read. Math. Texts and Studies in Religion = Text Stud R Texts and Studies in Religion = Text. Stud. R. Texts and Studies in The Social Gospel = Texts Stud Social Go Texts and Studies in The Social Gospel = Texts Stud. Social Go. Texts in Applied Mathematics = Texts Appl. Math. Texts in Applied Mathematics = Texts Appl Math Texts in Applied Mathematics = Texts Appl. Math. Texts in Computational Science and Engineering = Texts Comput Sci Eng Texts in Computational Science and Engineering = Texts Comput. Sci. Eng. Texts in Computer Science = Texts Comput Sci Texts in Computer Science = Texts Comput. Sci. Texts in Statistical Science Series = Texts Statist. Sci. Ser. Texts in Theoretical Computer Science-an Eatcs Series = Texts Theor Comput S Texts in Theoretical Computer Science-an Eatcs Series = Texts Theor. Comput. S. Texts in Theoretical Computer Science = Texts Theoret. Comput. Sci. EATCS Ser. Text, Speech and Dialogue = Lect Notes Artif Int Text, Speech and Dialogue = Lect. Notes. Artif. Int. Text, Speech and Dialogue, Proceedings = Lect Notes Artif Int Text, Speech and Dialogue, Proceedings = Lect. Notes. Artif. Int. Text, Speech and Dialogue, Proceedings = Lect Notes Comput Sc Text, Speech and Dialogue, Proceedings = Lect. Notes. Comput. Sc. Text Speech and Language Technology = Text Speech Lang Tec Text Speech and Language Technology = Text Speech Lang. Tec. Text, Speech and Language Technology = Text Speech Lang Tec Text, Speech and Language Technology = Text. Speech Lang. Tec. Text & Talk = Text Talk Text = Text Text, Time, and Context: Selected Papers of Carlota S Smith = Stud Linguist Philos Text, Time, and Context: Selected Papers of Carlota S Smith = Stud. Linguist. Philos. Text Translation Computational Processing = Text Trans Comp Proc Text Translation Computational Processing = Text Trans. Comp. Proc. Text Translation Computational Processing = Text Transl Comput P Text Translation Computational Processing = Text Transl. Comput. P. Text Types and The History of English = Trends Linguist-stud Text Types and The History of English = Trends. Linguist-stud. Textual Intersections: Literature, History and The Arts in Nineteenth-century Europe = Int Forsch Allg Vgl Textual Intersections: Literature, History and The Arts in Nineteenth-century Europe = Int. Forsch. Allg. Vgl. Textual Pathways = Coll Debora Textual Pathways = Coll. Debora. Textual practice = Textual Pract Textual Practice = Textual Pract Textual Practice = Textual Pract. Textual Studies in Canada = Text Stud Canada Textual Studies in Canada = Text. Stud. Canada Texture and Anisotropy of Polycrystals Iii = Solid State Phenomen Texture and Anisotropy of Polycrystals Iii = Solid. State. Phenomen. Texture and Anisotropy of Polycrystals Iii = Sol St Phen Texture and Anisotropy of Polycrystals Iii = Sol. St. Phen. Texture and Anisotropy of Polycrystals Ii = Solid State Phenomen Texture and Anisotropy of Polycrystals Ii = Solid. State. Phenomen. Texture and Anisotropy of Polycrystals Ii = Sol St Phen Texture and Anisotropy of Polycrystals Ii = Sol. St. Phen. Texture and Anisotropy of Polycrystals = Mater Sci Forum Texture and Anisotropy of Polycrystals = Mater. Sci. Forum. Texture of Fermented Milk Products and Dairy Desserts = Int Dairy F Texture of Fermented Milk Products and Dairy Desserts = Int. Dairy F. Textures and Microstructures = Texture Microstruct Textures and Microstructures = Texture. Microstruct. Textures of Materials, Pts 1 and 2 = Mater Sci Forum Textures of Materials, Pts 1 and 2 = Mater. Sci. Forum. Text-verstehen: Grammatik Und Daruber Hinaus = Jahrb-inst Dtsch Spr Text-verstehen: Grammatik Und Daruber Hinaus = Jahrb-inst. Dtsch. Spr. Tex, Xml, and Digital Typography, Proceedings = Lect Notes Comput Sc Tex, Xml, and Digital Typography, Proceedings = Lect. Notes. Comput. Sc. Tgo-tijdschrift Voor Geneesmiddelenonderzoek-journal of Drug Research-jdr = Tgo-tijdschr Ther Ge Tgo-tijdschrift Voor Geneesmiddelenonderzoek-journal of Drug Research-jdr = Tgo-tijdschr. Ther. Ge. Tgo-tijdschrift Voor Therapie Geneesmiddel En Onderzoek Jdr-journal for Drugtherapy and Research = Tgo-tijdschr Ther Ge Tgo-tijdschrift Voor Therapie Geneesmiddel En Onderzoek Jdr-journal for Drugtherapy and Research = Tgo-tijdschr. Ther. Ge. Th1 and Th2 Cells in Health and Disease = Chem Immunol Th1 and Th2 Cells in Health and Disease = Chem. Immunol. Thabit Ibn Qurra: Science and Philosophy in Ninth-century Baghdad = Sci Graeco-arab Thabit Ibn Qurra: Science and Philosophy in Ninth-century Baghdad = Sci. Graeco-arab. Thai journal of nursing = Thai J Nurs Thai Journal of Nursing = Thai J. Nurs. Thai Journal of Pharmaceutical Sciences = Thai J. Pharm. Sci. Thai Journal of Veterinary Medicine = Thai J Vet Med Thai Journal of Veterinary Medicine = Thai J. Vet. Med. Thailand's Industrialization and Its Consequences = Stud Econ E Se Asia Thailand's Industrialization and Its Consequences = Stud. Econ. E. Se. Asia. Thalamic Networks for Relay and Modulation = Perg S Neur Thalamic Networks for Relay and Modulation = Perg. S. Neur. Thalamus & related systems = Thalamus Relat Syst Thalassas = Thalassas Thalassia Salentina = Thalassia Salentina Thalia-studies in Literary Humor = Thalia Thalia-studies in Literary Humor = Thalia. ## Thanks to Thijs Heus for contributing the list. That Eminent Tribunal: Judicial Supremacy and The Constitution = New Forum Book That Eminent Tribunal: Judicial Supremacy and The Constitution = New. Forum. Book. That Other World, Vol 1 = Princ Grace That Other World, Vol 1 = Princ. Grace. That Other World, Vol 2 = Princ Grace That Other World, Vol 2 = Princ. Grace. T. H. Carpenter (Hrsg.), Beazley Addenda \textsuperscript{2}(Oxford 1989) = BeazleyAddenda2 The 2007 Eso Instrument Calibration Workshop = Eso Astrophy Symp The 2007 Eso Instrument Calibration Workshop = Eso Astrophy. Symp. The AAPS journal = AAPS J The ABNF journal : official journal of the Association of Black Nursing Faculty in Higher Education, Inc = ABNF J The Academic nurse : the journal of the Columbia University School of Nursing = Acad Nurse The Academy bookman = Acad Bookman The Academy of International Business = Acad Int Business The Academy of International Business = Acad. Int. Business The ACES bulletin. Association for Comparative Economic Studies (U.S.) = ACES Bull The acts of the Parliament of the Commonwealth of Australia passed in the session of ... Australia = Acts Parliam Commonw Aust Pass Sess Aust The Admitting management journal = Admit Manage J The AFL-CIO American federationist. AFL-CIO = AFL CIO Am Fed The African journal of medical sciences = Afr J Med Sci The African journal of psychiatry. Le Journal africain de psychiatrie = Afr J Psychiatry The African journal of sexually transmitted diseases = Afr J Sex Transmi Dis The aging male : the official journal of the International Society for the Study of the Aging Male = Aging Male The Agricultural history review = Agric Hist Rev The Ahfad journal = Ahfad J The AIDS reader = AIDS Read The Air Force law review = Air Force Law Rev The Alabama historical quarterly = Ala Hist Q The Alabama journal of medical sciences = Ala J Med Sci The Alabama nurse = Ala Nurse The Alabama review = Ala Rev The Alaska nurse = Alaska Nurse The Albuquerque tribune = Albuq Tribune The Alexandria medical journal = Alexandria Med J The Aligarh Journal of Statistics = Aligarh J. Statist. The Alkaloids. Chemistry and biology = Alkaloids Chem Biol The all England law reports = All Engl Law Rep The Alma mater = Alma Mater (Baltimore) The Alpha omegan = Alpha Omegan The Alumnae magazine = Alumnae Mag The Alumni magazine = Alumni Mag The American archivist = Am Arch The American art journal = Am Art J The American Asian review = Am Asian Rev The American baby = Am Baby The American behavioral scientist = Am Behav Sci The American Benedictine review = Am Benedictine Rev The American biology teacher = Am Biol Teach The American College of Cardiology Extended Learning. Supplement tape = Am Coll Cardiol Extended Learn Suppl Tape The American criminal law review = Am Crim Law Rev The American ecclesiastical review = Am Eccles Rev The American economic review = Am Econ Rev The American economist = Am Econ The American heart hospital journal = Am Heart Hosp J The American historical review = Am Hist Rev The American imago; a psychoanalytic journal for the arts and sciences = Am Imago The American Institute of Chemical Engineers = AIChE J. The American Jewish year book = Am Jew The American journal of anatomy = Am J Anat The American journal of anesthesiology = Am J Anesthesiol The American journal of bioethics : AJOB = Am J Bioeth The American journal of cancer = Am J Cancer The American journal of cardiology = Am J Cardiol The American journal of cardiovascular pathology = Am J Cardiovasc Pathol The American journal of Chinese medicine = Am J Chin Med The American journal of clinical hypnosis = Am J Clin Hypn The American journal of clinical nutrition = Am J Clin Nutr The American journal of comparative law = Am J Comp Law The American Journal of dermatopathology = Am J Dermatopathol The American journal of digestive diseases = Am J Dig Dis The American journal of drug and alcohol abuse = Am J Drug Alcohol Abuse The American journal of EEG technology = Am J EEG Technol The American journal of emergency medicine = Am J Emerg Med The American journal of family therapy = Am J Fam Ther The American journal of forensic medicine and pathology : official publication of the National Association of Medical Examiners = Am J Forensic Med Pathol The American journal of forensic psychiatry = Am J Forensic Psychiatry The American journal of forensic psychology = Am J Forensic Psychol The American journal of gastroenterology = Am J Gastroenterol The American journal of geriatric cardiology = Am J Geriatr Cardiol The American journal of geriatric pharmacotherapy = Am J Geriatr Pharmacother The American journal of geriatric psychiatry : official journal of the American Association for Geriatric Psychiatry = Am J Geriatr Psychiatry The American journal of gynecologic health = Am J Gynecol Health The American journal of hospice care = Am J Hosp Care The American journal of hospice & palliative care = Am J Hosp Palliat Care The American journal of international law = Am J Int Law The American journal of jurisprudence = Am J Jurisprud The American journal of knee surgery = Am J Knee Surg The American journal of legal history = Am J Leg Hist The American journal of managed care = Am J Manag Care The American journal of medical electronics = Am J Med Electron The American journal of medical technology = Am J Med Technol The American journal of medicine = Am J Med The American journal of nursing = Am J Nurs The American journal of obstetrics and diseases of women and children = Am J Obstet Dis Women Child The American journal of occupational therapy. : official publication of the American Occupational Therapy Association = Am J Occup Ther The American journal of orthopedics = Am J Orthop The American journal of orthopedic surgery = Am J Orthop Surg The American journal of orthopsychiatry = Am J Orthopsychiatry The American journal of otology = Am J Otol The American journal of pathology = Am J Pathol The American journal of pediatric hematology/oncology = Am J Pediatr Hematol Oncol The American journal of pharmacy = Am J Pharm The American journal of physiology = Am J Physiol The American journal of psychiatry = Am J Psychiatry The American journal of psychology = Am J Psychol The American journal of roentgenology, radium therapy, and nuclear medicine = Am J Roentgenol Radium Ther Nucl Med The American journal of social psychiatry = Am J Soc Psychiatry The American journal of sociology = Am J Sociol The American journal of sports medicine = Am J Sports Med The American journal of surgical pathology = Am J Surg Pathol The American journal of the medical sciences = Am J Med Sci The American journal of trial advocacy = Am J Trial Advocacy The American journal of tropical medicine and hygiene = Am J Trop Med Hyg The American journal on addictions / American Academy of Psychiatrists in Alcoholism and Addictions = Am J Addict The American Mathematical Monthly = Amer. Math. Monthly The American mathematical monthly : the official journal of the Mathematical Association of America = Am Math Mon The American naturalist = Am Nat The American Naturalist = Am. Nat. The American neptune = Am Neptune The American nurse = Am Nurse The American orthoptic journal = Am Orthopt J The American philatelist = Am Philat The American political science review = Am Polit Sci Rev The American prospect = Am Prospect The American psychologist = Am Psychol The American review of Canadian studies = Am Rev Can Stud The American review of respiratory disease = Am Rev Respir Dis The American scholar = Am Scholar The American school board journal = Am Sch Board J The American Society Legion of Honor magazine = Am Soc Legion Honor Mag The American sociologist = Am Sociol The American spectator = Am Spect The American Statistician = Amer. Statist. The American statistician = Am Stat The American surgeon = Am Surg The American University journal of gender, social policy & the law = Am Univ J Gend Soc Policy Law The American University journal of international law and policy / Washington College of Law = Am Univ J Int Law Policy The American University law review = Am Univ Law Rev The Amicus journal = Amic J The Analyst = Analyst (Lond) The Anatomical record = Anat Rec The anatomical record. Part A, Discoveries in molecular, cellular, and evolutionary biology = Anat Rec A Discov Mol Cell Evol Biol The Anatomical record. Supplement : an offical publication of the American Association of Anatomists = Anat Rec Suppl The Ancient History Bulletin = AHB The Ancient History Bulletin = AncHistB The Ancient India = AncInd The Ancient World = AncW The Ancient World = AncW The Angle orthodontist = Angle Orthod The Anglo-American law review = Anglo Am Law Rev The animals' agenda = Anim Agenda The Annals of applied biology = Ann Appl Biol The Annals of Applied Probability = Ann. Appl. Probab. The Annals of occupational hygiene = Ann Occup Hyg The Annals of otology, rhinology, and laryngology = Ann Otol Rhinol Laryngol The Annals of otology, rhinology & laryngology. Supplement = Ann Otol Rhinol Laryngol Suppl The Annals of pharmacotherapy = Ann Pharmacother The Annals of Probability = Ann. Probab. The Annals of regional science = Ann Reg Sci The Annals of Statistics = Ann. Statist. The Annals of the American Academy of Political and Social Science = Ann Am Acad Pol Soc Sci The Annals of the Chinese Historical Society of the Pacific Northwest / Mei-kuo hsi pei Hua jen li shih hsueh hui = Ann Chin Hist Soc Pac Northwest The Annals of thoracic surgery = Ann Thorac Surg The annotated code of the public general laws of Maryland. Health-general / compiled and revised by Commission to Revise the Annotated Code; edited, annotated, and indexed by the editorial staff of the publishers under the supervision o... = Annot Code Public Gen Laws Md Md The Annual of Leeds University Oriental Society = AnnLeedsUnOrSoc The Annual of the American Schools of Oriental Research = AASO The Annual of the American Schools of Oriental Research = AASOR The Annual of the British School at Athens = BSA The annual of the Society of Christian Ethics. Society of Christian Ethics (U.S.) = Annu Soc Christ Ethics The Annual Report of the Fogg Art Museum = AnnRepFoggArtMus The Antioch review = Antioch Rev The Antiquaries Journal = AntJ The Antiquaries Journal: being the Journal of the Society of Antiquaries of London = AntJ The Antiseptic = Antiseptic The ANZIAM Journal = ANZIAM J. The Appraisal journal = Appraisal J The Arab economist = Arab Econ The Arabian Journal for Science and Engineering = Arab. J. Sci. Eng. Sect. A Sci. The Arabian Journal for Science and Engineering = Arab. J. Sci. Eng. Sect. B Eng. The Arabian Journal for Science and Engineering = Arab. J. Sci. Eng. Sect. C Theme Issues The Arab journal of the social sciences = Arab J Soc Sci The Archaeological Advertiser = AAdv The Archaeological Journal = AJ The Archaeological News Letter = ANL The Archivist = Archivist The Arizona dental journal = Ariz Dent J The Arizona nurse = Ariz Nurse The Arkansas dental journal = Ark Dent J The Arkansas historical quarterly = Ark Hist Q The Ark-light newsletter = Ark Light Newsl The Armenian review = Armen Rev The Army lawyer = Army Lawyer The Army quarterly and defence journal = Army Q Def J The Art Bulletin: a quarterly published by the College Art Association of America = ABull The Art Bulletin = ArtB The Art bulletin = Art Bull The Artech House Signal Processing Library = Artech House Signal Process. Libr. The Articulator = Articulator (Columb) The Art of medication = Art Med The Asbury theological journal = Asbury Theol J The Asia Foundation news = Aisa Found News The Asia magazine = Asia Mag The Asian economic review = Asian Econ Rev The Asian journal of economics : a journal of the Society for Asian Development = Asian J Econ The Asian Journal of Mathematics = Asian J. Math. The Assyrian Dictionary of the Oriental Institute of the University of Chicago = CAD The Astronomical Journal = AJ The Astronomical journal = Astron J The Astrophysical Journal = ApJ The Astrophysical journal = Astrophys J The Astrophysical Journal Letters = ApJ The Astrophysical journal. Supplement series = Astrophys J Suppl Ser Theater Der Zeit = Theater Zeit Theater Heute = Theater Heute Theater Im Aufbruch-das Europaische Theater Der Fruhen Neuzeit = Theatron Theater Im Aufbruch-das Europaische Theater Der Fruhen Neuzeit = Theatron. Theater = Theater The Athenian Agora = Agora The Atlanta historical journal = Atlanta Hist J. Theatre and Performance in Digital Culture: From Simulation to Embeddedness = Routl Adv Theatr Per Theatre and Performance in Digital Culture: From Simulation to Embeddedness = Routl. Adv. Theatr. Per. Theatre Annual = Theatre Annual Theatre As A Medium for Children and Young People: Images and Observations = Landsc Art Aesthet E Theatre As A Medium for Children and Young People: Images and Observations = Landsc. Art. Aesthet. E. Theatre Crafts = Theatre Crafts Theatre En Pologne-theatre in Poland = Theatre Pologne Theatre En Pologne-theatre in Poland = Theatre Pologne. Theatre History in Canada-histoire Du Theatre Au Canada = Theatre Hist Can Theatre History in Canada-histoire Du Theatre Au Canada = Theatre Hist. Can. Theatre History Studies = Theatre Hist Stud Theatre History Studies = Theatre Hist. Stud. Theatre International = Theatre Intl Theatre International = Theatre Intl. Theatre, Intimacy and Engagement: The Last Human Venue = Stud Int Perform Theatre, Intimacy and Engagement: The Last Human Venue = Stud. Int. Perform. Theatre Journal = Theatre J Theatre Journal = Theatre J. Theatre Notebook = Theatre Notebook Theatre of Production: Philosophy and Individuation Between Kant and Deleuze = Renew Philos Theatre of Production: Philosophy and Individuation Between Kant and Deleuze = Renew. Philos. Theatre Quarterly = Theatre Quart Theatre Quarterly = Theatre Quart. Theatre Research in Canada-recherches Theatrales Au Canada = Theatre Res Canada Theatre Research in Canada-recherches Theatrales Au Canada = Theatre Res. Canada Theatre Research International = Theatre Res Int Theatre Research International = Theatre Res. Int. Theatre Studies = Theatre Stud Theatre Studies = Theatre Stud. Theatre survey = Theatre Surv Theatre Survey = Theatre Survey Theatre Symposium = Theatre Symp Theatre Symposium = Theatre Symp. Theatron = Theatron Theatrum Scientiarum-english Edition = Theatr Sci-engl Ed Theatrum Scientiarum-english Edition = Theatr. Sci-engl. Ed. The Auk = Auk The Australasian Catholic record = Australas Cathol Rec The Australasian Journal of Combinatorics = Australas. J. Combin. The Australasian journal of dermatology = Australas J Dermatol The Australasian nurses journal = Australas Nurses J The Australian and New Zealand general practitioner = Aust N Z Gen Pract The Australian and New Zealand journal of mental health nursing = Aust N Z J Ment Health Nurs The Australian and New Zealand journal of psychiatry = Aust N Z J Psychiatry The Australian and New Zealand journal of sociology = Aust N Z J Sociol The Australian and New Zealand journal of surgery = Aust N Z J Surg The Australian economic review / Institute of Applied Economic Research = Aust Econ Rev The Australian geographer = Aust Geogr The Australian journal of advanced nursing : a quarterly publication of the Royal Australian Nursing Federation = Aust J Adv Nurs The Australian journal of agricultural and resource economics = Aust J Agric Resour Econ The Australian journal of anthropology = Aust J Anthropol The Australian journal of clinical hypnotherapy / Australian Society of Clinical Hypnotherapists = Aust J Clin Hypnother The Australian journal of dentistry = Aust J Dent The Australian journal of experimental biology and medical science = Aust J Exp Biol Med Sci The Australian journal of forensic sciences = Aust J Forensic Sci The Australian journal of holistic nursing = Aust J Holist Nurs The Australian journal of mental retardation = Aust J Ment Retard The Australian journal of optometry = Aust J Optom The Australian journal of physiotherapy = Aust J Physiother The Australian journal of politics and history = Aust J Polit Hist The Australian journal of rural health = Aust J Rural Health The Australian journal of social issues = Aust J Soc Issues The Australian journal of statistics = Aust J Stat The Australian Journal of Statistics = Austral. J. Statist. The Australian law journal = Aust Law J The Australian library journal = Aust Libr J The Australian Mathematical Society = Austral. Math. Soc. Gaz. The Australian & New Zealand journal of obstetrics & gynaecology = Aust N Z J Obstet Gynaecol The Australian & New Zealand journal of obstetrics & gynaecology. Supplement = Aust N Z J Obstet Gynaecol Suppl The Australian nurses' journal = Aust Nurses J The Australian outlook = Aust Outlook The Australian quarterly = Aust Q The Bangkok post = Bangkok Post The Bangladesh journal of scientific research = Bangladesh J Sci Res The Baptist quarterly = Baptist Q The Baxter health policy review = Baxter Health Policy Rev The Baylor dental journal = Baylor Dent J The Beaver = Beaver The Behavioral and brain sciences = Behav Brain Sci The Behavior analyst / MABA = Behav Anal The Biblical Archaeologist. The American School of Oriental Research New Haven = BibAr The bibliotheck = Bibliotheck The Biochemical journal = Biochem J The Biological bulletin = Biol Bull The Birth gazette = Birth Gaz The Black law journal = Black Law J The Black scholar = Black Scholar The Blue sheet = Blue Sheet The Bodleian Library Record = BLR The Bodleian Library record = Bodleian Libr Rec The Body forum = Body Forum The Body positive = Body Posit The Bombay Hospital journal = Bombay Hosp J The Book collector = Book Collect The Bookman = Bookman The Boston globe = Boston Globe The Boston University public interest law journal = Boston Univ Public Interest Law J The Botanical review; interpreting botanical progress = Bot Rev The Brazilian journal of infectious diseases : an official publication of the Brazilian Society of Infectious Diseases = Braz J Infect Dis The breast journal = Breast J The British Academy Classical and Medieval Logic Texts = British Acad. Classical Medieval Logic Texts The British dental surgery assistant = Br Dent Surg Assist The British homoeopathic journal = Br Homeopath J The British journal for eighteenth-century studies = Br J 18th Cent Stud The British journal for the philosophy of science = Br J Philos Sci The British journal of addiction to alcohol and other drugs = Br J Addict Alcohol Other Drugs The British journal of cancer. Supplement = Br J Cancer Suppl The British journal of clinical practice = Br J Clin Pract The British journal of clinical psychology / the British Psychological Society = Br J Clin Psychol The British journal of criminology = Br J Criminol The British journal of dermatology = Br J Dermatol The British journal of disorders of communication = Br J Disord Commun The British journal of educational psychology = Br J Educ Psychol The British journal of family planning = Br J Fam Plann The British journal of general practice : the journal of the Royal College of General Practitioners = Br J Gen Pract The British Journal of Mathematical and Statistical Psychology = British J. Math. Statist. Psych. The British journal of mathematical and statistical psychology = Br J Math Stat Psychol The British journal of medical psychology = Br J Med Psychol The British journal of nutrition = Br J Nutr The British journal of ophthalmology = Br J Ophthalmol The British journal of oral & maxillofacial surgery = Br J Oral Maxillofac Surg The British journal of oral surgery = Br J Oral Surg The British journal of physical medicine, including its application to industry = Br J Phys Med The British journal of physiological optics = Br J Physiol Opt The British journal of psychiatry. Supplement = Br J Psychiatry Suppl The British journal of psychiatry : the journal of mental science = Br J Psychiatry The British journal of radiology = Br J Radiol The British journal of social and clinical psychology = Br J Soc Clin Psychol The British journal of social psychology / the British Psychological Society = Br J Soc Psychol The British journal of sociology = Br J Sociol The British journal of sports history = Br J Sports Hist The British journal of surgery = Br J Surg The British journal of theatre nursing : NATNews : the official journal of the National Association of Theatre Nurses = Br J Theatre Nurs The British journal of tuberculosis and diseases of the chest = Br J Tuberc Dis Chest The British journal of venereal diseases = Br J Vener Dis The British Library journal. British Library = Br Libr J The British Museum Quarterly = BMQ The British Museum Quarterly. News Supplement = BMQNSuppl The British Museum Yearbook = BrMusYearbook The British studies monitor = Br Stud Monit The British veterinary journal = Br Vet J The Brookings review = Brookings Rev The Brooklyn Hospital journal = Brooklyn Hosp J The Bryologist = Bryologist The Bulletin - American Association of Dental Editors = Bull Am Assoc Dent Ed The Bulletin - Essex County Dental Society = Bull Essex Cty Dent Soc The bulletin - Missouri Historical Society. Missouri Historical Society = Bull Mo Hist Soc The Bulletin of Akron City Hospital = Bull Akron City Hosp The Bulletin of Louis A. Weiss Memorial Hospital = Bull Louis A Weiss Mem Hosp The Bulletin of mathematical biophysics = Bull Math Biophys The Bulletin of Symbolic Logic = Bull. Symbolic Logic The Bulletin of the Academy of General Dentistry = Bull Acad Gen Dent The Bulletin of the American Academy of Psychiatry and the Law = Bull Am Acad Psychiatry Law The Bulletin of the American College of Physicians = Bull Am Coll Physicians The Bulletin of the American Society of Papyrologists = BAmSocP The Bulletin of the atomic scientists = Bull At Sci The Bulletin of the Bergen County Dental Society = Bull Bergen Cty Dent Soc The Bulletin of the Cincinnati Dental Society = Bull Cincinnati Dent Soc The Bulletin of the Cleveland Dental Society = Bull Cleve Dent Soc The bulletin of the Cleveland Medical Library. Cleveland Medical Library Association = Bull Clevel Med Libr The Bulletin of The Cleveland Museum of Art = BClevMus The Bulletin of the Fifth District Dental Society = Bull Fifth Dist Dent Soc (Fresno) The Bulletin of the High Institute of Public Health = Bull High Inst Public Health The bulletin of the Illinois Dental Hygienist's Association. Illinois Dental Hygienists' Association = Bull Ill Dent Hyg Assoc The Bulletin of the Kanagawa Dental College : BKDC / KDS = Bull Kanagawa Dent Coll The Bulletin of the London Mathematical Society = Bull. London Math. Soc. The Bulletin of the Michigan Dental Hygienists' Association = Bull Mich Dent Hyg Assoc The Bulletin of the Philadelphia County Dental Society = Bull Phila Cty Dent Soc The bulletin of the Society of University Cartographers. Society of University Cartographers = Bull Soc Univ Cartogr The Bulletin of the Toledo Dental Society = Bull Toledo Dent Soc The bulletin of the Tri-County Dental Society = Bull Tri Cty Dent Soc The Bulletin of the Tulane Medical Faculty = Bull Tulane Univ Med Fac The Bulletin of the Yamaguchi Medical School = Bull Yamaguchi Med Sch The Bulletin of Tokyo Dental College = Bull Tokyo Dent Coll The Bulletin of Tokyo Medical and Dental University = Bull Tokyo Med Dent Univ The Bur = Bur The Burlington magazine = Burlingt Mag The California clinician = Calif Clin The Californians = Californians The California school psychologist : CASP / California Association of School Psychologists = Calif School Psychol Thecaloscopy: Cadaver Studies = Surg-proced Complica Thecaloscopy: Cadaver Studies = Surg-proced. Complica. The Cambridge Ancient History = CAH The Cambridge law journal = Camb Law J The Canadian Applied Mathematics Quarterly = Canad. Appl. Math. Quart. The Canadian bar review = Can Bar Rev The Canadian = Canadian The Canadian dental hygienist = Can Dent Hyg The Canadian entomologist = Can Entom The Canadian forum = Can Forum The Canadian geographer. Geographe canadien = Can Geogr The Canadian historical review = Can Hist Rev The Canadian journal of cardiology = Can J Cardiol The Canadian journal of economics. Revue canadienne d'economique = Can J Econ The Canadian journal of hospital pharmacy = Can J Hosp Pharm The Canadian journal of human sexuality = Can J Hum Sex The Canadian journal of medical radiation technology / CAMRT = Can J Med Radiat Technol The Canadian journal of native studies = Can J Native Stud The Canadian journal of neurological sciences. Le journal canadien des sciences neurologiques = Can J Neurol Sci The Canadian journal of ob/gyn & women's health care = Can J Ob Gyn Womens Health Care The Canadian journal of oncology = Can J Oncol The Canadian journal of psychiatric nursing = Can J Psychiatr Nurs The Canadian journal of radiography, radiotherapy, nuclear medicine = Can J Radiogr Radiother Nucl Med The Canadian Journal of Statistics = Canad. J. Statist. The Canadian journal of urology = Can J Urol The Canadian journal of women's health care for physicians addressing women's health issues = Can J Womens Health Care Phys Addressing Womens Health Issues The Canadian nurse = Can Nurse The Canadian review of sociology and anthropology. La Revue canadienne de sociologie et d'anthropologie = Can Rev Sociol Anthropol The Canadian veterinary journal. La revue veterinaire canadienne = Can Vet J The Canadian yearbook of international law. Annuaire canadien de droit international = Can Yearb Int Law The cancer journal from Scientific American = Cancer J Sci Am The Capital chemist = Cap Chem The Career development quarterly = Career Dev Q The Carmarthen antiquary = Carmarthen Antiq The Carmarthensire hisorian = Carmarthensh Hist The Carolina journal of pharmacy = Carol J Pharm The Cartographic journal = Cartogr J The Case manager = Case Manager The Catholic historical review = Cathol Hist Rev The Catholic lawyer = Cathol Lawyer The Catholic medical quarterly = Cathol Med Q The Catholic mind = Cathol Mind The Catholic nurse = Cathol Nurse The Cato journal = Cato J The CCL news = CCL News The Centennial review = Centen Rev The Center magazine = Cent Mag The Central African journal of medicine = Cent Afr J Med The Cerebral palsy journal = Cereb Palsy J The Cervix and the lower female genital tract = Cervix Low Female Genital Tract The Ceylon medical journal = Ceylon Med J The Chaucer review = Chaucer Rev The Chemist and druggist = Chem Drug The Chesopiean = Chesopiean The Chesterton review = Chesterton Rev The Chicago medical recorder = Chic Med Rec The Chicago Medical School quarterly = Chic Med Sch Q The China business review = China Bus Rev The China geographer = Chnia Geogr The China quarterly = China Q The Chinese journal of dental research : the official journal of the Scientific Section of the Chinese Stomatological Association (CSA) = Chin J Dent Res The Chinese journal of physiology = Chin J Physiol The Chronicle = Chronicle The Chronicle of higher education = Chron High Educ The Cincinnati Art Museum Bulletin = CincArtB The Cincinnati Dental Society bulletin = Cincinnati Dent Soc Bull The Cincinnati Historical Society bulletin = Cinci Hist Soc Bull The Civil liberties review = Civ Liberties Rev The CLAO journal : official publication of the Contact Lens Association of Ophthalmologists, Inc = CLAO J The Classical Bulletin = CB The Classical Journal = CJ The classical journal = Class J The Classical Journal = ClJ The Classical outlook = Class Outlook The Classical Outlook: journal of the American Classical League = CO The Classical Quarterly = ClQ The Classical review = Classical Rev The Classical Review = ClR The Classical World = CW The Cleft palate-craniofacial journal : official publication of the American Cleft Palate-Craniofacial Association = Cleft Palate Craniofac J The Cleft palate journal = Cleft Palate J The Clergy review = Clergy Rev The Clinical biochemist. Reviews / Australian Association of Clinical Biochemists = Clin Biochem Rev The Clinical investigator = Clin Investig The Clinical journal of pain = Clin J Pain The Clinical neuropsychologist = Clin Neuropsychol The Clinical psychologist = Clin Psychol The Clinician = Clinician (Goa) The COBASHECA (community based health care) newsletter = COBASHECA The Coevolution quarterly = Coevol Q The Colby Library quarterly = Colby Libr Q The College Mathematics Journal = College Math. J. The Colorado magazine = Colo Mag The Columbia journal of world business = Columbia J World Bus The Columbia science and technology law review = Columbia Sci Technol Law Rev The Compendium of continuing education in dentistry = Compend Contin Educ Dent The Compendium on continuing education in general dentistry = Compend Contin Educ Gen Dent The Conference Board record = Conf Board Rec The Connecticut Historical Society bulletin = Conn Hist Soc Bull The Connecticut probate law journal = Conn Probate Law J The Consultant pharmacist : the journal of the American Society of Consultant Pharmacists = Consult Pharm The Contemporary Pacific = Contemp Pac The Control of Nature = Control Nat. The Cornell hotel and restaurant administration quarterly = Cornell Hotel Restaur Adm Q The Cornell journal of social relations = Cornell J Soc Relat The Cornell veterinarian = Cornell Vet The Counseling psychologist = Couns Psychol The Courier = Courier The Crown agents review = Crown Agents Rev The Current digest of the post-Soviet press = Curr Dig Post Sov Press The Current digest of the Soviet press = Curr Dig Sov Press The Dacca University studies: Part A. University of Dacca = Dacca Univ Stud A The Daily Washington law reporter = Dly Wash Law Report The Dalhousie review = Dalhousie Rev The Deccan geographer = Deccan Geogr The Dental assistant = Dent Assist The Dental assistant journal : journal of the American Dental Assistants Association = Dent Assist J The Dental journal of Australia = Dent J Aust The Dental journal of Malaysia & Singapore = Dent J Malaysia Singapore The Dental magazine and oral topics = Dent Mag Oral Top The Dental outlook = Dent Outlook The Dental practitioner and dental record = Dent Pract Dent Rec The Dental record = Dent Rec (London) The Dental technician = Dent Tech The Denver Westerners roundup = Denver West Roundup The Department of State bulletin = Dep State Bull The Developing economies = Dev Econ The Devon historian = Devon Hist The Dhaka University studies. Part B = Dhaka Univ Stud B Biol Stud The Diabetes educator = Diabetes Educ The Dialog / Fairleigh Dickinson University School of Dentistry = Dialog Fairleigh Dickinson Univ Sch Dent The Dickensian = Dickensian The Dolciani Mathematical Expositions = Dolciani Math. Exp. The Durham University journal. University of Durham = Durham Univ J The East African geographical review = East Afr Geogr Rev The Eastern anthropologist = East Anthropol The East Tennessee Historical Society's publications. East Tennessee Historical Society = East Tenn Soc Publ The Ecologist = Ecologist The Economic and social review = Econ Soc Rev (Irel) The Economic bulletin of Ghana = Econ Bull Ghana The Economic history review = Econ Hist Rev The Economic journal of Nepal = Econ J Nepal The Economic record = Econ Rec The Ecumenical review = Ecum Rev The Educational forum = Educ Forum The Educational record = Educ Rec The Egyptian journal of immunology / Egyptian Association of Immunologists = Egypt J Immunol The Egyptian journal of psychiatry : official journal of the Egyptian Psychiatric Association = Egypt J Psychiatry The Egyptian population and family planning review = Egypt Popul Fam Plann Rev The Egyptian Statistical Journal = Egyptian Statist. J. The Einstein quarterly journal of biology and medicine = Einstein Q J Biol Med The elder law journal = Elder Law J The Electrical Engineering Handbook Series = Electr. Engrg. Handbook Ser. The EMBO journal = EMBO J The Emporia State research studies / Kansas State Teachers College = Emporia State Res Stud The EMT journal = EMT J The Endocrinologist = Endocrinologist The Endodontic report = Endod Rep The English historical review = Engl Hist Rev The Environmentalist = Environmentalist The Eta Sigma Gamman = Eta Sigma Gamman The Ethiopian herald = Ethiop Herald The Eugenical news = Eugen News The Eugenics review = Eugen Rev The European journal of contraception & reproductive health care : the official journal of the European Society of Contraception = Eur J Contracept Reprod Health Care The European journal of general practice = Eur J Gen Pract The European journal of health economics : HEPAC : health economics in prevention and care = Eur J Health Econ The European journal of international affairs = Eur J Int Aff The European journal of medicine = Eur J Med The European journal of neuroscience = Eur J Neurosci The European journal of prosthodontics and restorative dentistry = Eur J Prosthodont Restor Dent The European Physical Journal C = Eur. Phys. J. C The European physical journal. E, Soft matter = Eur Phys J E Soft Matter The European Physical Journal = Eur. Phys. J. D The European respiratory journal : official journal of the European Society for Clinical Respiratory Physiology = Eur Respir J The European respiratory journal. Supplement = Eur Respir J Suppl The Euthanasia review = Euthan Rev The Excavations at Dura-Europos Conducted by Yale University and the French Academy of Inscriptions and Letters = Dura-Europos The Expository times = Expo Times The Family coordinator = Fam Coord The Family law reporter = Fam Law Rep The Family life coordinator = Fam Life Coord The Family planner = Fam Plann (Palo Alto) The Family planning manager = Fam Plan Manag The Family practice research journal = Fam Pract Res J The FASEB journal : official publication of the Federation of American Societies for Experimental Biology = FASEB J The FEBS journal = FEBS J The federal law reports : being reports of cases decided by the federal courts (other than the high court), state courts exercising federal jurisdiction, and courts of territories = Fed Law Rep The Federal reporter = Fed Report The Female patient = Female patient The Feminization of Fame, 1750-1830 = Palgrave Stud Enligh The Feminization of Fame, 1750-1830 = Palgrave. Stud. Enligh. The Fibonacci Quarterly = Fibonacci Quart. The Filson Club history quarterly = Filson Club Hist Q The First people = First People The Fletcher forum = Fletcher Forum The Fletcher forum of world affairs = Fletcher Forum World Aff The Florida Bar journal = FLA Bar J The Florida entomologist = Fla Entomol The Florida historical quarterly = Fla Hist Q The Florida nurse = Fla Nurse The Fookien times yearbook = Fookien Times Yearb The Fordham urban law journal = Fordham Urban Law J The Fortnightly review of the Chicago Dental Society = Fortn Rev Chic Dent Soc The Frater of Psi Omega = Frater Psi Omega The Freeman = Freeman The Functional orthodontist = Funct Orthod The Functional Roles of Glial Cells in Health and Disease = Adv Exp Med Biol The Functional Roles of Glial Cells in Health and Disease = Adv. Exp. Med. Biol. The Furrow = Furrow The Future of children / Center for the Future of Children, the David and Lucile Packard Foundation = Future Child The Futurist = Futurist The Gallup opinion index = Gallup Opin Index The Gastroenterologist = Gastroenterologist The Gazette of the Egyptian Paediatric Association = Gaz Egypt Paediatr Assoc The Gelfand Mathematical Seminars = Gelfand Math. Sem. The Gem State RN news letter = Gem State RN News Lett The gender cg newsletter = Gend CG Newsl The general statutes of North Carolina : containing general laws of North Carolina ... / prepared under the supervision of the Department of Justice of the State of North Carolina ; annotated, under the supervision of the Department of ... = Gen Statut N C N C The Genetic resource = Genetic Resour The Geographical journal = Geogr J The Geographical Journal = GJ The Geographical magazine = Geogr Mag The Geographical observer = Geogr Obs The Georgetown journal of legal ethics = Georget J Leg Ethics The Georgetown law journal = Georgetown Law J The Georgetown University right-to-life journal = Georgetown Univ Right to Life J The George Washington journal of international law and economics = George Washington J Int Law Econ The George Washington law review = George Washington Law Rev The George Wright forum = George Wright Forum The Georgia historical quarterly = Ga Hist Q The Gerontologist = Gerontologist The Ghanaian nurse = Ghana Nurse The Glaxo volume; an occasional contribution to the science and art of medicine = Glaxo Vol Occas Contrib Sci Art Med The Grace Hospital bulletin = Grace Hosp Bul The great concern = Gt Concern The Greater Milwaukee dental bulletin = Greater Milw Dent Bull The Greater St. Louis Dental Society bulletin = Greater St Louis Dent Soc Bull The Great ideas today = Great Ideas Today The Group health journal = Group Health J The Guildhall miscellany = Guildhall Misc The Gunma journal of medical sciences = Gunma J Med Sci The Guthrie bulletin of the Donald Guthrie Medical Center = Guthrie Bull The Guthrie journal of the Donald Guthrie Foundation for Medical Research = Guthrie J Donald Guthrie Found Med Res The Guttmacher report on public policy = Guttmacher Rep Public Policy The Hahnemannian = Hahnemannian The Hand = Hand The Harlem Hospital bulletin = Harlem Hosp Bull The Harvard blackletter journal = Harv Blacklett J The Harvard environmental law review : HELR = HELR Harvard Environ Law Rev The Harvard journal of minority public health = Harv J Minor Public Health The Harvard mental health letter / from Harvard Medical School = Harv Ment Health Lett The Harvard Theological Review = HarvTheolR The Harvard theological review = Harv Theol Rev The Hastings Center report = Hastings Cent Rep The Hastings law journal = Hastings Law J The Hawaiian journal of history = Hawaii J Hist The Hawaii nurse : the official monthly newsletter of the Hawaii Nurses' Association = Hawaii Nurse The Healthcare Forum journal = Healthc Forum J The health care manager = Health Care Manag (Frederick) The healthcare strategist = Healthc Strateg The Health care supervisor = Health Care Superv The Health of the people = Health People The Health service journal = Health Serv J The Heart bulletin = Heart Bull The heart surgery forum = Heart Surg Forum The hematology journal : the official journal of the European Haematology Association / EHA = Hematol J The Hemingway review = Hemingway Rev The Henry E. Sigerist supplements to the Bulletin of the history of medicine = Henry E Sigerist Suppl Bull Hist Med The Herbal review = Herbal Rev The Herbarist = Herbarist The Hillside journal of clinical psychiatry = Hillside J Clin Psychiatry The Hip = Hip The Hispanic American historical review = Hisp Am Hist Rev The Histochemical journal = Histochem J The Historian; a journal of history = Historian The history of the family : an international quarterly = Hist Fam The History teacher = Hist Teacher The Homiletic and pastoral review = Homilet Pastor Rev The Hopkins HIV report : a bimonthly newsletter for healthcare providers / Johns Hopkins University AIDS Service = Hopkins HIV Rep The Hospice journal = Hosp J The Hospital and health services review = Hosp Health Serv Rev The hospitalist = Hospitalist The Hospital manager / American Hospital Association = Hosp Manager The Hospital medical staff = Hosp Med Staff The Houston review: history and culture of the Gulf Coast = Houston Rev The Humanist = Humanist The Human life review = Hum Life Rev The Huntington Library quarterly = Huntingt Libr Q The ICTP Series in Theoretical Physics = ICTP Ser. Theoret. Phys. The IHS primary care provider = IHS Prim Care Provid The Illinois medical journal = Ill Med J The Illustrated London News = ILN The IMA Volumes in Mathematics and its Applications = IMA Vol. Math. Appl. The Implant Society : [periodical] = Implant Soc The indexer = Indexer The Indiana nurse = Indiana Nurse The Indian economic and social history review = Indian Econ Soc Hist Rev The Indian economic journal : the quarterly journal of the Indian Economic Association = Indian Econ J The Indian historian = Indian Hist The Indian journal of animal sciences = Indian J Anim Sci The Indian journal of chest diseases & allied sciences = Indian J Chest Dis Allied Sci The Indian journal of chest diseases = Indian J Chest Dis The Indian journal of child health = Indian J Child Health The Indian journal of hospital pharmacy = Indian J Hosp Pharm The Indian journal of medical research = Indian J Med Res The Indian journal of medicine & surgery = Indian J Med Surg The Indian journal of nutrition and dietetics = Indian J Nutr Diet The Indian journal of pharmacy = Indian J Pharm The Indian journal of public administration : quarterly journal of the Indian Institute of Public Administration = Indian J Public Adm The Indian journal of social work = Indian J Soc Work The Indian journal of surgery = Indian J Surg The Indian journal of tuberculosis = Indian J Tuberc The Indian political science review = Indian Pol Sci Rev The Indian practitioner = Indian Pract The Indian veterinary journal = Indian Vet J The Indonesian journal of geography = Indones J Geogr The Indonesian quarterly = Indones Q The Industrial robot = Ind Rob The Institute of Mathematics and its Applications Conference Series = Inst. Math. Appl. Conf. Ser. New Ser. The Institute of Mathematics & its Applications Monograph Series = IMA Monogr. Ser. The Institute of Nautical Archaeology Quarterly = InstNautAQ The International and comparative law quarterly = Int Comp Law Q The International history review = Int Hist Rev The International journal for the psychology of religion = Int J Psychol Relig The International journal of adult orthodontics and orthognathic surgery = Int J Adult Orthodon Orthognath Surg The International journal of African historical studies = Int J Afr Hist Stud The International journal of angiology : official publication of the International College of Angiology, Inc = Int J Angiol The International journal of applied philosophy = Int J Appl Philos The International journal of applied radiation and isotopes = Int J Appl Radiat Isot The International journal of artificial organs = Int J Artif Organs The International journal of aviation psychology = Int J Aviat Psychol The international journal of behavioral nutrition and physical activity = Int J Behav Nutr Phys Act The international journal of biochemistry & cell biology = Int J Biochem Cell Biol The International journal of biochemistry = Int J Biochem The International journal of biological markers = Int J Biol Markers The international journal of cardiovascular imaging = Int J Cardiovasc Imaging The International journal of childbirth education : the official publication of the International Childbirth Education Association = Int J Childbirth Educ The International journal of clinical and experimental hypnosis = Int J Clin Exp Hypn The International journal of developmental biology = Int J Dev Biol The International journal of eating disorders = Int J Eat Disord The International journal of environmental studies = Int J Environ Stud The International journal of forensic dentistry = Int J Forensic Dent The International journal of health planning and management = Int J Health Plann Manage The International Journal of Intelligent Control and Systems = Int. J. Intell. Control Syst. The international journal of lower extremity wounds = Int J Low Extrem Wounds The international journal of medical robotics + computer assisted surgery : MRCAS = Int J Med Robot The International journal of medicine and law : IJML = Int J Med Law The international journal of neuropsychopharmacology / official scientific journal of the Collegium Internationale Neuropsychopharmacologicum (CINP) = Int J Neuropsychopharmacol The International journal of neuroscience = Int J Neurosci The International journal of occupational health & safety = Int J Occup Health Saf The International journal of oral implantology : implantologist = Int J Oral Implantol The International journal of oral & maxillofacial implants = Int J Oral Maxillofac Implants The International journal of oral myology = Int J Oral Myol The International journal of orofacial myology : official publication of the International Association of Orofacial Myology = Int J Orofacial Myology The International journal of pediatric nephrology = Int J Pediatr Nephrol The International journal of periodontics & restorative dentistry = Int J Periodontics Restorative Dent The International journal of prosthodontics = Int J Prosthodont The international journal of psychiatric nursing research = Int J Psychiatr Nurs Res The International journal of psycho-analysis = Int J Psychoanal The International journal of social education : official journal of the Indiana Council for the Social Studies = Int J Soc Educ The International journal of social psychiatry = Int J Soc Psychiatry The International journal of sociology and social policy = Int J Sociol Soc Policy The international journal of supercomputer applications = Int J Supercomput Appl The International journal of the addictions = Int J Addict The International journal of the history of sport = Int J Hist Sport The international journal of tuberculosis and lung disease : the official journal of the International Union against Tuberculosis and Lung Disease = Int J Tuberc Lung Dis The International journal on drug policy = Int J Drug Policy The International migration review = Int Migr Rev The International review of psycho-analysis = Int Rev Psychoanal The international spectator : a quarterly journal of the Istituto affari internazionali = Int Spect The international tinnitus journal = Int Tinnitus J The Internist = Internist The Investor-owned hospital review = Investor Owned Hosp Rev The Iowa dental journal / Iowa State Dental Society = Iowa Dent J The Iowa orthopaedic journal = Iowa Orthop J The Irish banking review = Ir Bank Rev The Irish nursing news = Ir Nurs News The Irish sword : the journal of the Military History Society of Ireland = Ir Sword The Irish theological quarterly = Irish Theol Q The Isaac Newton Institute Series of Lectures = Isaac Newton Inst. Ser. Lectures The Islamic quarterly = Islam Q The Island magazine = Isl Mag Theism and Explanation = Rout Stud Philos Rel Theism and Explanation = Rout. Stud. Philos. Rel. The Israel annals of psychiatry and related disciplines = Isr Ann Psychiatr Relat Discip The Israel journal of psychiatry and related sciences = Isr J Psychiatry Relat Sci The Israel Medical Association journal : IMAJ = Isr Med Assoc J The Israel Museum Journal = IsrMusJ The Israel Museum News = IsrMusN The Italian journal of biochemistry = Ital J Biochem The Italian journal of gastroenterology = Ital J Gastroenterol The Italian journal of surgical sciences / sponsored by Societa italiana di chirurgia = Ital J Surg Sci The Jamaican nurse = Jamaican Nurse The Japanese journal of antibiotics = Jpn J Antibiot The Japanese journal of dermatology. Ser. B = Jpn J Dermatol B The Japanese journal of experimental medicine = Jpn J Exp Med The Japanese journal of human genetics = Jpn J Hum Genet The Japanese journal of obstetrics and gynecology = Jpn J Obstet Gynecol The Japanese journal of physiology = Jpn J Physiol The Japanese journal of psychiatry and neurology = Jpn J Psychiatry Neurol The Japanese journal of surgery = Jpn J Surg The Japanese journal of tuberculosis and chest diseases = Jpn J Tuberc Chest Dis The Japanese journal of tuberculosis = Jpn J Tuberc The Japanese journal of veterinary research = Jpn J Vet Res The Japanese psychological research = Jpn Psychol Res The Jerusalem quarterly = Jerusalem Q The Jewish digest = Jew Dig The Jewish Memorial Hospital bulletin = Jew Mem Hosp Bull The John Marshall journal of computer & information law = John Marshall J Comput Inf Law The John Marshall journal of practice and procedure = John Marshall J Pract Proced The John Marshall law review = John Marshall Law Rev The Johns Hopkins medical journal = Johns Hopkins Med J The Johns Hopkins medical letter health after 50 = Johns Hopkins Med Lett Health After 50 The Johns Hopkins Nurses' alumni magazine = Johns Hopkins Nurses Alumni Mag The Joint Commission journal on quality improvement = Jt Comm J Qual Improv The Joint Spectral Radius: Theory and Applications = Lect Notes Contr Inf The Joint Spectral Radius: Theory and Applications = Lect. Notes. Contr. Inf. The Jordan dental journal = Jordan Dent J The Journal for hospital admitting management : official publication of the National Association of Hospital Admitting Managers / NAHAM = J Hosp Admit Manage The journalism quarterly = Journal Q The Journal = Journal The Journal-lancet = J Lancet The Journal of abdominal surgery = J Abdom Surg The journal of adhesive dentistry = J Adhes Dent The Journal of adolescent health : official publication of the Society for Adolescent Medicine = J Adolesc Health The Journal of air medical transport = J Air Med Transp The Journal of allergy and clinical immunology = J Allergy Clin Immunol The Journal of allergy = J Allergy The Journal of ambulatory care management = J Ambul Care Manage The Journal of American folk-lore = J Am Folk The journal of American health care = J Am Health Care The Journal of American health policy = J Am Health Policy The Journal of analytical psychology = J Anal Psychol The Journal of animal ecology = J Anim Ecol The Journal of antibiotics = J Antibiot (Tokyo) The Journal of antibiotics. Ser. B = J Antibiot [B] The Journal of antimicrobial chemotherapy = J Antimicrob Chemother The Journal of applied bacteriology = J Appl Bacteriol The Journal of applied behavioral science = J Appl Behav Sci The Journal of applied ecology = J Appl Ecol The Journal of applied nutrition = J Appl Nutr The Journal of applied psychology = J Appl Psychol The Journal of applied social sciences = J Appl Soc Sci The Journal of Arizona history = J Ariz Hist The Journal of arthroplasty = J Arthroplasty The Journal of Asian studies = J Asian Stud The Journal of asthma : official journal of the Association for the Care of Asthma = J Asthma The Journal of asthma research = J Asthma Res The Journal of audiovisual media in medicine = J Audiov Media Med The Journal of auditory research = J Aud Res The Journal of aviation medicine = J Aviat Med The Journal of behavioral economics = J Behav Econ The journal of behavioral health services & research = J Behav Health Serv Res The Journal of biocommunication = J Biocommun The journal of biolaw & business = J Biolaw Bus The Journal of biological chemistry = J Biol Chem The Journal of biological sciences = J Biol Sci The Journal of biophysical and biochemical cytology = J Biophys Biochem Cytol The Journal of black psychology = J Black Psychol The Journal of bone and joint surgery. American volume = J Bone Joint Surg Am The Journal of bone and joint surgery. British volume = J Bone Joint Surg Br The Journal of bone and joint surgery = J Bone Joint Surg The Journal of British studies = J Br Stud The Journal of burn care & rehabilitation = J Burn Care Rehabil The Journal of business and social studies = J Bus Soc Stud The Journal of business strategy = J Bus Strategy The Journal of cancer research = J Cancer Res The Journal of cardiovascular management : the official journal of the American College of Cardiovascular Administrators = J Cardiovasc Manag The Journal of cardiovascular medicine = J Cardiovasc Med The Journal of cardiovascular nursing = J Cardiovasc Nurs The Journal of cardiovascular surgery = J Cardiovasc Surg (Torino) The Journal of Caribbean history = J Caribb Hist The Journal of cell biology = J Cell Biol The Journal of chemical physics = J Chem Phys The Journal of chemical thermodynamics = J Chem Thermodyn The Journal of child psychiatry = J Child Psychiatry The Journal of clinical dentistry = J Clin Dent The Journal of clinical dysmorphology = J Clin Dysmorphol The Journal of clinical endocrinology and metabolism = J Clin Endocrinol Metab The Journal of clinical endocrinology = J Clin Endocrinol The Journal of clinical ethics = J Clin Ethics The Journal of clinical investigation = J Clin Invest The Journal of clinical nutrition = J Clin Nutr The Journal of clinical pediatric dentistry = J Clin Pediatr Dent The Journal of clinical pharmacology and new drugs = J Clin Pharmacol New Drugs The Journal of clinical pharmacology and the journal of new drugs = J Clin Pharmacol J New Drugs The Journal of clinical psychiatry = J Clin Psychiatry The Journal of college and university law = J Coll Univ Law The Journal of Commonwealth & comparative politics = J Commonw Comp Polit The Journal of communicable diseases = J Commun Dis The Journal of communication inquiry = J Commun Inq The Journal of communication = J Commun The Journal of comparative neurology = J Comp Neurol The Journal of comparative pathology and therapeutics = J Comp Pathol Ther The Journal of compliance in health care : JCHC = J Compliance Health Care The Journal of computed tomography = J Comput Tomogr The Journal of conflict resolution = J Conflict Resolut The Journal of consumer affairs = J Consum Aff The Journal of consumer research = J Consum Res The journal of contemporary dental practice = J Contemp Dent Pract The Journal of contemporary health law and policy = J Contemp Health Law Policy The Journal of continuing education in the health professions = J Contin Educ Health Prof The Journal of contraception = J Contracept The Journal of corporation law = J Corp Law The Journal of craniofacial surgery = J Craniofac Surg The Journal of cranio-mandibular practice = J Craniomandibular Pract The Journal of cranio-maxillofacial trauma = J Craniomaxillofac Trauma The Journal of creative behavior = J Creat Behav The Journal of criminal law, criminology, and police science = J Crim Law Criminol Police Sci The Journal of criminal law & criminology = J Crim Law Criminol The Journal of critical illness = J Crit Illn The Journal of current adolescent medicine = J Curr Adolesc Med The Journal of dairy research = J Dairy Res The Journal of dental medicine = J Dent Med The Journal of dental symposia = J Dent Symp The Journal of dermatological treatment = J Dermatolog Treat The Journal of dermatologic surgery and oncology = J Dermatol Surg Oncol The Journal of dermatologic surgery = J Dermatol Surg The Journal of dermatology = J Dermatol The Journal of development communication = J Dev Comm The journal of development studies = J Dev Stud The Journal of diabetic complications = J Diabet Complications The Journal of documentation; devoted to the recording, organization and dissemination of specialized knowledge = J Doc The Journal of early adolescence = J Early Adolesc The Journal of East Asian affairs = J East Asian Aff The Journal of ecclesiastical history = J Ecclesiast Hist The Journal of ecology = J Ecol The Journal of economic education = J Econ Educ The journal of economic history = J Econ Hist The journal of economic perspectives : a journal of the American Economic Association = J Econ Perspect The journal of ECT = J ECT The Journal of educational research = J Educ Res The Journal of Egyptian Archaeology = JEA The Journal of Egyptian archaeology = J Egypt Archaeol The Journal of emergency medicine = J Emerg Med The Journal of endocrinology = J Endocrinol The Journal of environmental education = J Environ Educ The Journal of Erie studies = J Erie Stud The journal of ethics = J Ethics The Journal of ethnic studies = J Ethn Stud The Journal of eukaryotic microbiology = J Eukaryot Microbiol The Journal of European economic history = J Eur Econ Hist The journal of evidence-based dental practice = J Evid Based Dent Pract The Journal of experimental biology = J Exp Biol The Journal of experimental medicine = J Exp Med The Journal of experimental zoology = J Exp Zool The Journal of experimental zoology. Supplement : published under auspices of the American Society of Zoologists and the Division of Comparative Physiology and Biochemistry / the Wistar Institute of Anatomy and Biology = J Exp Zool Suppl The Journal of extra-corporeal technology = J Extra Corpor Technol The Journal of family and culture = J Fam Cult The journal of family health care = J Fam Health Care The journal of family planning and reproductive health care / Faculty of Family Planning & Reproductive Health Care, Royal College of Obstetricians & Gynaecologists = J Fam Plann Reprod Health Care The Journal of family practice = J Fam Pract The Journal of family welfare = J Fam Welf The Journal of foot and ankle surgery : official publication of the American College of Foot and Ankle Surgeons = J Foot Ankle Surg The Journal of foot surgery = J Foot Surg The Journal of forensic odonto-stomatology = J Forensic Odontostomatol The Journal of Fourier Analysis and Applications = J. Fourier Anal. Appl. The Journal of Functional and Logic Programming = J. Funct. Logic Programming The journal of gender-specific medicine : JGSM : the official journal of the Partnership for Women's Health at Columbia = J Gend Specif Med The journal of gene medicine = J Gene Med The Journal of general and applied microbiology = J Gen Appl Microbiol The Journal of general education = J Gen Educ The Journal of general physiology = J Gen Physiol The Journal of general psychology = J Gen Psychol The Journal of general virology = J Gen Virol The Journal of genetic psychology = J Genet Psychol The Journal of geography = J Geog The Journal of geology = J Geol The Journal of Geometric Analysis = J. Geom. Anal. The Journal of gnathology = J Gnathol The Journal of hand surgery, European volume = J Hand Surg Eur Vol The Journal of hand surgery = J Hand Surg [Am] The journal of headache and pain : official journal of the Italian Society for the Study of Headaches = J Headache Pain The Journal of head trauma rehabilitation = J Head Trauma Rehabil The Journal of health administration education = J Health Adm Educ The Journal of heart and lung transplantation : the official publication of the International Society for Heart Transplantation = J Heart Lung Transplant The Journal of heart transplantation = J Heart Transplant The Journal of heart valve disease = J Heart Valve Dis The Journal of Hellenic Studies = JHS The Journal of Hellenic studies / the Society for the Promotion of Hellenic Studies = J Hell Stud The Journal of heredity = J Hered The Journal of High Energy Physics = J. High Energy Phys. The Journal of higher education = J Higher Educ The journal of histochemistry and cytochemistry : official journal of the Histochemistry Society = J Histochem Cytochem The journal of horticultural science & biotechnology = J Hortic Sci Biotechnol The Journal of hospital infection = J Hosp Infect The Journal of humanistic education and development = J Humanist Educ Dev The Journal of human resources = J Hum Resour The Journal of hygiene = J Hyg (Lond) The Journal of imperial and commonwealth history = J Imp Commonw Hist The Journal of Indian Orthodontic Society = J Indian Orthod Soc The Journal of industrial economics = J Ind Econ The Journal of industrial hygiene and toxicology = J Ind Hyg Toxicol The Journal of infection = J Infect The Journal of infectious diseases = J Infect Dis The Journal of information and image management : JIIM = J Inf Image Manage The Journal of infusional chemotherapy = J Infus Chemother The Journal of interdisciplinary history = J Interdiscip Hist The Journal of international law and economics = J Int Law Econ The Journal of international medical research = J Int Med Res The journal of international trade & economic development = J Int Trade Econ Dev The Journal of invasive cardiology = J Invasive Cardiol The Journal of investigative dermatology = J Invest Dermatol The journal of investigative dermatology. Symposium proceedings / the Society for Investigative Dermatology, Inc. [and] European Society for Dermatological Research = J Investig Dermatol Symp Proc The Journal of Juristic Papyrology = JJurP The journal of knee surgery = J Knee Surg The Journal of laboratory and clinical medicine = J Lab Clin Med The Journal of laryngology and otology = J Laryngol Otol The Journal of laryngology and otology. Supplement = J Laryngol Otol Suppl The Journal of law and religion = J Law Relig The Journal of law and technology = J Law Technol The Journal of law & economics = J Law Econ The Journal of law, medicine & ethics : a journal of the American Society of Law, Medicine & Ethics = J Law Med Ethics The Journal of law & politics = J Law Polit The Journal of legal history = J Legal Hist The Journal of legal medicine = J Leg Med The Journal of legal studies = J Legal Stud The Journal of libertarian studies = J Libert Stud The Journal of lithotripsy & stone disease = J Lithotr Stone Dis The Journal of Long Island history = J Long Isl Hist The Journal of long term care administration = J Long Term Care Adm The Journal of long term home health care : The PRIDE Institute journal = J Long Term Home Health Care The Journal of maternal-fetal medicine = J Matern Fetal Med The journal of maternal-fetal & neonatal medicine : the official journal of the European Association of Perinatal Medicine, the Federation of Asia and Oceania Perinatal Societies, the International Society of Perinatal Obstetricians = J Matern Fetal Neonatal Med The Journal of mathematical sociology = J Math Sociol The journal of medical chemical defense = J Med Chem Biol Radiol Def The Journal of medical humanities and bioethics = J Med Humanit Bioeth The Journal of medical humanities = J Med Humanit The journal of medical investigation : JMI = J Med Invest The Journal of medical laboratory technology = J Med Lab Technol The Journal of medical practice management : MPM = J Med Pract Manage The Journal of medicine and philosophy = J Med Philos The journal of medieval and Renaissance studies = J Mediev Renaiss Stud The Journal of membrane biology = J Membr Biol The journal of men's health & gender : the official journal of the International Society for Men's Health & Gender = J Mens Health Gend The journal of mental health policy and economics = J Ment Health Policy Econ The Journal of mental science = J Ment Sci The Journal of mental subnormality = J Ment Subnorm The Journal of Mexican American history = J Mex Am Hist The journal of microcolumn separations : JMS = J Microcolumn Sep The Journal of micrographics = J Microgr The Journal of microwave power and electromagnetic energy : a publication of the International Microwave Power Institute = J Microw Power Electromagn Energy The Journal of microwave power = J Microw Power The Journal of military history = J Mil Hist The Journal of Mississippi history = J Miss Hist The Journal of modern African studies = J Mod Afr Stud The Journal of modern history = J Mod Hist The Journal of molecular and cellular immunology : JMCI = J Mol Cell Immunol The Journal of molecular diagnostics : JMD = J Mol Diagn The Journal of molluscan studies = J Molluscan Stud The Journal of Natural Sciences and Mathematics = J. Natur. Sci. Math. The Journal of Negro education = J Negro Educ The Journal of Negro history = J Negro Hist The Journal of nervous and mental disease = J Nerv Ment Dis The Journal of neuropsychiatry and clinical neurosciences = J Neuropsychiatry Clin Neurosci The Journal of neuroscience nursing : journal of the American Association of Neuroscience Nurses = J Neurosci Nurs The Journal of neuroscience : the official journal of the Society for Neuroscience = J Neurosci The Journal of new drugs = J New Drugs The Journal of Nihon University School of Dentistry = J Nihon Univ Sch Dent The Journal of NIH research : life sciences research and news about the National Institutes of Health and the Alcohol, Drug Abuse, and Mental Health Administration = J NIH Res The Journal of nuclear biology and medicine = J Nucl Biol Med The Journal of nuclear medicine and allied sciences = J Nucl Med Allied Sci The Journal of nursing administration = J Nurs Adm The Journal of nursing care = J Nurs Care The Journal of nursing education = J Nurs Educ The journal of nursing research : JNR = J Nurs Res The Journal of nutritional biochemistry = J Nutr Biochem The journal of nutrition, health & aging = J Nutr Health Aging The Journal of nutrition = J Nutr The Journal of obstetrics and gynaecology of the British Commonwealth = J Obstet Gynaecol Br Commonw The Journal of obstetrics and gynaecology of the British Empire = J Obstet Gynaecol Br Emp The journal of obstetrics and gynaecology research = J Obstet Gynaecol Res The Journal of oncology management : the official journal of the American College of Oncology Administrators = J Oncol Manag The Journal of ophthalmic photography = J Ophthalmic Photogr The Journal of oral implant and transplant surgery = J Oral Implant Transplant Surg The Journal of oral implantology = J Oral Implantol The Journal of organic chemistry = J Org Chem The Journal of orthopaedic and sports physical therapy = J Orthop Sports Phys Ther The Journal of Osaka University Dental School = J Osaka Univ Dent Sch The Journal of osteopathy = J Osteopath (Kirksvill) The Journal of otolaryngology = J Otolaryngol The Journal of otolaryngology. Supplement = J Otolaryngol Suppl The Journal of Pacific history = J Pac Hist The journal of pain : official journal of the American Pain Society = J Pain The Journal of parapsychology = J Parapsychol The Journal of parasitology = J Parasitol The journal of pastoral care & counseling : JPCC = J Pastoral Care Counsel The Journal of pathology and bacteriology = J Pathol Bacteriol The Journal of pathology = J Pathol The Journal of peasant studies = J Peasant Stud The Journal of pediatric endocrinology = J Pediatr Endocrinol The Journal of pediatrics = J Pediatr The Journal of pedodontics = J Pedod The journal of peptide research : official journal of the American Peptide Society = J Pept Res The Journal of perinatal education : an ASPO/Lamaze publication = J Perinat Educ The Journal of perinatal & neonatal nursing = J Perinat Neonatal Nurs The Journal of periodontology = J Periodontol The Journal of pharmacology and experimental therapeutics = J Pharmacol Exp Ther The Journal of pharmacy and pharmacology = J Pharm Pharmacol The Journal of pharmacy & law / Ohio Northern University, the Pharmacy-Law Institute = J Pharm Law The Journal of pharmacy technology : jPT : official publication of the Association of Pharmacy Technicians = J Pharm Technol The journal of philosophy = J Philos The Journal of Philosophy = J. Philos. The Journal of physical and colloid chemistry = J Phys Colloid Chem The journal of physical chemistry. A = J Phys Chem A The journal of physical chemistry. B = J Phys Chem B The Journal of physical chemistry = J Phys Chem The Journal of physics and chemistry of solids = J Phys Chem Solids The journal of physiological sciences : JPS = J Physiol Sci The Journal of physiology = J Physiol The Journal of plastic and reconstructive surgical nursing : official organ of the American Society of Plastic and Reconstructive Surgical Nurses = J Plast Reconstr Surg Nurs The journal of political economy = J Polit Econ The journal of political philosophy = J Polit Philos The journal of politics = J Polit The Journal of practical nursing = J Pract Nurs The Journal of preventive dentistry = J Prev Dent The journal of primary prevention = J Prim Prev The Journal of prosthetic dentistry = J Prosthet Dent The Journal of protozoology = J Protozool The Journal of psychiatry & law = J Psychiatry Law The Journal of psychohistory = J Psychohist The Journal of psychology = J Psychol The Journal of psychotherapy practice and research = J Psychother Pract Res The Journal of religion = J Relig The Journal of religious ethics = J Relig Ethics The Journal of religious history = J Relig Hist The Journal of reproduction and development = J Reprod Dev The Journal of reproductive medicine = J Reprod Med The Journal of research and education in Indian medicine = J Res Educ Indian Med The Journal of research in Indian medicine = J Res Indian Med The Journal of respiratory diseases = J Respir Dis The Journal of rheumatology = J Rheumatol The Journal of rheumatology. Supplement = J Rheumatol Suppl The Journal of risk and insurance = J Risk Insur The Journal of rural health : official journal of the American Rural Health Association and the National Rural Health Care Association = J Rural Health The Journal of San Diego history = J San Diego Hist The Journal of school health = J Sch Health The Journal of school nursing : the official publication of the National Association of School Nurses = J Sch Nurs The Journal of sex education = J Sex Educ The journal of sexual medicine = J Sex Med The Journal of small animal practice = J Small Anim Pract The Journal of social and political affairs = J Soc Polit Aff The Journal of social and political studies = J Soc Polit Stud The Journal of social issues = J Soc Issues The Journal of social, political, and economic studies = J Soc Polit Econ Stud The Journal of social psychology = J Soc Psychol The Journal of social studies = J Soc Stud The Journal of social welfare law = J Soc Welfare Law The Journal of sociological studies = J Sociol Stud The Journal of southern history = J South Hist The Journal of special education = J Spec Educ The Journal of speech and hearing disorders = J Speech Hear Disord The Journal of speech disorders = J Speech Disord The journal of spinal cord medicine = J Spinal Cord Med The Journal of sports medicine and physical fitness = J Sports Med Phys Fitness The Journal of sports medicine = J Sports Med The Journal of state government / National Conference of State Legislatures [and] the Council of State Governments = J State Gov The Journal of steroid biochemistry and molecular biology = J Steroid Biochem Mol Biol The Journal of stone disease = J Stone Dis The journal of supportive oncology = J Support Oncol The Journal of surgical research = J Surg Res The Journal of Symbolic Logic = J. Symbolic Logic The Journal of technology transfer = J Technol Transf The Journal of the Acoustical Society of America = J Acoust Soc Am The Journal of the Albert Einstein Medical Center, Philadelphia = J Albert Einstein Med Cent (Phila) The Journal of the All India Dental Association = J All India Dent Assoc The Journal of the American Academy of Gold Foil Operators = J Am Acad Gold Foil Oper The Journal of the American Academy of Orthopaedic Surgeons = J Am Acad Orthop Surg The journal of the American Academy of Psychiatry and the Law = J Am Acad Psychiatry Law The journal of the American Academy of Psychoanalysis and Dynamic Psychiatry = J Am Acad Psychoanal Dyn Psychiatry The Journal of the American Academy of Psychoanalysis = J Am Acad Psychoanal The Journal of the American Association of Gynecologic Laparoscopists = J Am Assoc Gynecol Laparosc The Journal of the American Association of Nephrology Nurses & Technicians = J Am Assoc Nephrol Nurses Tech The Journal of the American Association of Nurse Anesthetists = J Am Assoc Nurse Anesth The Journal of the American Board of Family Practice / American Board of Family Practice = J Am Board Fam Pract The Journal of the American College of Dentists = J Am Coll Dent The Journal of the American Dental Hygienists' Association = J Am Dent Hyg Assoc The Journal of the American Osteopathic Association = J Am Osteopath Assoc The Journal of the American Paraplegia Society = J Am Paraplegia Soc The Journal of the American Society for Geriatric Dentistry = J Am Soc Geriatr Dent The Journal of the American Society for Preventive Dentistry = J Am Soc Prev Dent The Journal of the American Society of Psychosomatic Dentistry and Medicine = J Am Soc Psychosom Dent Med The Journal of the Arkansas Medical Society = J Ark Med Soc The Journal of the Asian Federation of Obstetrics and Gynaecology = J Asian Fed Obstet Gynaecol The Journal of the Association for Persons with Severe Handicaps : official publication of the Association for Persons with Severe Handicaps = J Assoc Pers Sev Handicaps The Journal of the Association of Medical Women in India = J Assoc Med Women India The Journal of the Association of Nurses in AIDS Care : JANAC = J Assoc Nurses AIDS Care The Journal of the Association of Physicians of India = J Assoc Physicians India The journal of the Bergen County Dental Society. Bergen County Dental Society = J Bergen Cty Dent Soc The Journal of the British Archaeological Association = JBAA The journal of the British Menopause Society = J Br Menopause Soc The journal of the California Alliance for the Mentally Ill = J Calif Alliance Ment Ill The Journal of the Canadian Church Historical Society = J Can Church Hist Soc The Journal of the Christian Medical Association of India = J Christ Med Assoc India The Journal of the College of General Practitioners = J Coll Gen Pract The Journal of the Dental Association of Thailand = J Dent Assoc Thai The Journal of the dental auxiliaries, Malaya, Malaysia = J Dent Aux The Journal of the Egyptian Medical Association = J Egypt Med Assoc The Journal of the Egyptian Public Health Association = J Egypt Public Health Assoc The Journal of the Florida Medical Association. Florida Medical Association = J Fla Med Assoc The Journal of the Florida Medical Association = J Fla Med Assoc The Journal of the Florida State Dental Society = J Fla State Dent Soc The Journal of the Friends' Historical Society = J Friends Hist Soc The Journal of the Greater Houston Dental Society = J Gt Houst Dent Soc The Journal of the Hattori Botanical Laboratory = Hattori Shokubutsu Kenkyujo hokoku|J. Hattori Bot. Lab. The Journal of the Indiana Dental Association = J Indiana Dent Assoc The Journal of the Indiana State Dental Association = J Indiana State Dent Assoc The Journal of the Indiana State Medical Association = J Indiana State Med Assoc The Journal of the Indian Mathematical Society = J. Indian Math. Soc. (N.S.) The Journal of the Institute of Hospital Engineering = J Inst Hosp Eng The Journal of the International College of Surgeons = J Int Coll Surg The Journal of the Kansas Bar Association. Kansas Bar Association = J Kans Bar Assoc The Journal of the Kansas Medical Society = J Kans Med Soc The Journal of the Kansas State Dental Association = J Kans State Dent Assoc The Journal of the Kentucky Medical Association = J Ky Med Assoc The Journal of the Kentucky State Medical Association = J Ky State Med Assoc The Journal of the Kuwait Medical Association = J Kuwait Med Assoc The Journal of the London Mathematical Society = J. London Math. Soc. (2) The Journal of the Louisiana State Medical Society : official organ of the Louisiana State Medical Society = J La State Med Soc The Journal of the Maine Medical Association = J Maine Med Assoc The Journal of the Medical Society of New Jersey = J Med Soc N J The Journal of the Michigan Dental Association = J Mich Dent Assoc The Journal of the Michigan State Dental Association = J Mich State Dent Assoc The Journal of the Nebraska Dental Association = J Nebr Dent Assoc The Journal of the New Jersey State Dental Society = J N J State Dent Soc The Journal of the New York State Nurses' Association = J N Y State Nurses Assoc The Journal of the New York State School Nurse Teachers Association = J N Y State Sch Nurse Teach Assoc The Journal of the North Carolina Dental Society = J N C Dent Soc The Journal of the Oklahoma State Medical Association = J Okla State Med Assoc The Journal of the Ontario Dental Association = J Ont Dent Assoc The Journal of the Operating Room Research Institute : JORRI = J Oper Room Res Inst The Journal of the Operational Research Society = J Oper Res Soc The Journal of the Oregon Dental Association = J Oreg Dent Assoc The journal of the Philadelphia County Dental Society = J Phila Cty Dent Soc The Journal of the Philippine Dental Association = J Philipp Dent Assoc The journal of the Polynesian Society. Polynesian Society (N.Z.) = J Polyn Soc The journal of the Royal Anthropological Institute = J R Anthropol Inst The Journal of the Royal Astronomical Society of Canada. Royal Astronomical Society of Canada = J R Astron Soc Can The Journal of the Royal College of General Practitioners = J R Coll Gen Pract The Journal of the Royal College of General Practitioners. Occasional paper = J R Coll Gen Pract Occas Pap The journal of the Royal College of Physicians of Edinburgh = J R Coll Physicians Edinb The Journal of the Royal Institute of Public Health and Hygiene = J R Inst Public Health The Journal of the Rutgers University Library = J Rutgers Univ Libr The Journal of the Siam Society = J Siam Soc The Journal of the Singapore Paediatric Society = J Singapore Paediatr Soc The Journal of the Society of Occupational Medicine = J Soc Occup Med The Journal of the Tennessee Dental Association = J Tenn Dent Assoc The Journal of the Tennessee State Medical Association. Tennessee State Medical Association = J Tn State Med Assoc The Journal of the Texas Dental Hygienists' Association. Texas Dental Hygienists' Association = J Texas Dent Hyg Assoc The Journal of the Walters Art Gallery = JWaltersArtGal The Journal of the Western Society of Periodontology/Periodontal abstracts = J West Soc Periodontol Periodontal Abstr The journal of the West Virginia Historical Association. West Virginia Historical Association = J W Va Hist Assoc The Journal of the Wisconsin Dental Association = J Wis Dent Assoc The Journal of the Wisconsin State Dental Society = J Wis State Dent Soc The Journal of thoracic and cardiovascular surgery = J Thorac Cardiovasc Surg The Journal of thoracic surgery = J Thorac Surg The Journal of toxicological sciences = J Toxicol Sci The Journal of trauma = J Trauma The Journal of tropical geography = J Trop Geogr The Journal of tropical medicine and hygiene = J Trop Med Hyg The Journal of tropical medicine = J Trop Med The Journal of tropical pediatrics and African child health = J Trop Pediatr Afr Child Health The Journal of tropical pediatrics and environmental child health = J Trop Pediatr Environ Child Health The Journal of urology = J Urol The Journal of value inquiry = J Value Inq The journal of vascular access = J Vasc Access The Journal of venereal disease information = J Vener Dis Inf The Journal of veterinary medical science / the Japanese Society of Veterinary Science = J Vet Med Sci The Journal of vitaminology = J Vitaminol (Kyoto) The Journal of volunteer administration = J Volunt Adm The Journal of wildlife management = J Wildl Manage The Journal of world intellectual property = J World Intellect Prop The journals of gerontology. Series A, Biological sciences and medical sciences = J Gerontol A Biol Sci Med Sci The journals of gerontology. Series B, Psychological sciences and social sciences = J Gerontol B Psychol Sci Soc Sci The J. Paul Getty Museum Journal = GettyMusJ The J. Paul Getty Museum Journal = GMusJ The Judges' journal = Judges J The Juridical review = Jurid Rev The Kansas geographer = Kans Geogr The Kansas historical quarterly = Kans Hist Q The Kansas nurse = Kans Nurse The Kaohsiung journal of medical sciences = Kaohsiung J Med Sci The Keio journal of medicine = Keio J Med The Key reporter = Key Report The Kidney = Kidney The King Faisal Specialist Hospital medical journal = King Faisal Spec Hosp Med J The Kitasato archives of experimental medicine = Kitasato Arch Exp Med The Kiva = Kiva The Kluwer International Series in Engineering and Computer Science = Kluwer Internat. Ser. Engrg. Comput. Sci. The Kluwer International Series on Discrete Event Dynamic Systems = Kluwer Int. Ser. Discrete Event Dyn. Syst. The Knee = Knee The Kobe journal of medical sciences = Kobe J Med Sci The Korean journal of biochemistry : official journal of the Korean Biochemical Society = Korean J Biochem The Korean Journal of Computational & Applied Mathematics = Korean J. Comput. Appl. Math. The Korean journal of hepatology = Korean J Hepatol The Korean journal of internal medicine = Korean J Intern Med The Korean journal of parasitology = Korean J Parasitol The Kumamoto medical journal = Kumamoto Med J The Kurume medical journal = Kurume Med J The Labor lawyer = Labor Lawyer The Lactation review = Lactation Rev The Ladies' home journal = Ladies Home J The Lahey Clinic bulletin = Lahey Clin Bull The Lamp = Lamp The Lancet infectious diseases = Lancet Infect Dis The lancet oncology = Lancet Oncol The Laryngoscope = Laryngoscope The Law quarterly review = Law Q Rev The Law teacher = Law Teach The-law Vs. The-people = Sem Hum Sci The-law Vs. The-people = Sem. Hum. Sci. The Lebanese pharmaceutical journal. La Revue pharmaceutique libanaise = Leban Pharm J The Leech = Leech The Library chronicle of the University of Texas at Austin = Libr Chron Univ Tex Austin The Library = Library (Lond) The Library quarterly = Libr Q The Linacre quarterly = Linacre Q The Linnean : newsletter and proceedings of the Linnean Society of London. Linnean Society of London = Linnean The Lippincott health promotion letter = Lippincott Health Promot Lett The Liverpool law review = Liverp Law Rev The Local historian = Local Hist The Log = Log The London archaeologist = Lond Archaeol The London Hospital gazette = Lond Hosp Gaz The London journal = Lond J The Long Island historical journal = Long Island Hist J The Los Angeles times = Los Angeles Times The Lovelace Clinic review = Lovelace Clin Rev The Magazine of Albemarle County history = Mag Albemarle Cty Hist The Maghreb review. Majallat al-Maghrib = Maghreb Rev The Major Periatlantic River Basins: The Congo, The Niger and The Amazon = Colloq Semi The Major Periatlantic River Basins: The Congo, The Niger and The Amazon = Colloq. Semi. The Malawian geographer = Malawian Geogr The Malayan economic review : the journal of the Economic Society of Singapore, the Department of Economics and Statistics and the Economic Research Centre of the University of Singapore = Malay Econ Rev The Malaysian journal of pathology = Malays J Pathol The male nurses' journal = Male Nurses J The Malloch room newsletter = Malloch Room Newsl The Manchester medical gazette = Manch Med Gaz The Manchester school of economic and social studies = Manchester Sch Econ Soc Stud The mankind quarterly = Mankind Q The Marine Corps gazette = Mar Corps Gaz The Mariner's mirror = Mar Mirror The Maryland bar journal = Md Bar J The Maryland historian = Md Hist The Maryland nurse = Md Nurse The Massachusetts nurse = Mass Nurse The Massachusetts review = Mass Rev The Masterkey for Indian lore and history = Masterkey Ind Lore Hist The Mathematical Intelligencer = Math. Intelligencer The Mathematical Scientist = Math. Sci. The Mathematics Education = Math. Ed. (Siwan) The Mathematics Student = Math. Student Thematic Conference On Remote Sensing for Marine and Coastal Environments = Them Conf R Thematic Conference On Remote Sensing for Marine and Coastal Environments = Them. Conf. R. The Mayan = Mayan The McGill dental review = Mcgill Dent Rev The McGill news = McGill News The Medical annals of the District of Columbia = Med Ann Dist Columbia The Medical annual = Med Annu The Medical bulletin of the U. S. Army Far East = Med Bull US The Medical clinics of North America = Med Clin North Am The Medical journal of Australia = Med J Aust The Medical journal of Cairo University = Med J Cairo Univ The Medical journal of Malaya = Med J Malaya The Medical journal of Malaysia = Med J Malaysia The Medical journal of the Egyptian Armed Forces = Med J Egypt Armed Forces The Medical journal of the South-West = Med J Southwest The Medical letter on drugs and therapeutics = Med Lett Drugs Ther The Medical malpractice cost containment journal = Med Malpract Cost Containment J The Medical-moral newsletter = Med Moral Newsl The Medical officer = Med Off The Medical press = Med Press The Medical staff counselor = Med Staff Couns The Medico-legal journal = Med Leg J The Medicus = Medicus The Meharri-Dent = Meharri Dent The Mendel newsletter; archival resources for the history of genetics & allied sciences = Mendel Newsl The Mennonite quarterly review = Mennon Q Rev The Merck report = Merck Rep Themes in Biblical Narrative: Jewish and Christian Traditions = Themes Bibl Narr Themes in Biblical Narrative: Jewish and Christian Traditions = Themes Bibl. Narr. Themes in Greek Linguistics = Amst Stud Theory His Themes in Greek Linguistics = Amst. Stud. Theory. His. Themes in Sla Research = Aila Rev Themes in Sla Research = Aila. Rev. Themes in World History = Themes World Hist Themes in World History = Themes World Hist. The Metabolic Syndrome X = Ann Ny Acad Sci The Metabolic Syndrome X = Ann. Ny. Acad. Sci. The Metropolitan Museum of Art Bulletin = BMetrMus The Michigan historical review = Mich Hist Rev The Michigan Mathematical Journal = Michigan Math. J. The Michigan nurse = Mich Nurse The Middle East journal = Middle East J The Middle East medical journal = Middle East Med J The Midwest quarterly = Midwest Q (Pittsb) The Milbank Memorial Fund quarterly. Health and society = Milbank Mem Fund Q Health Soc The Milbank Memorial Fund quarterly = Milbank Mem Fund Q The Milbank quarterly = Milbank Q The Minneapolis district dental journal = Minneap Dist Dent J The Mississippi doctor = Miss Doct The Mississippi quarterly = Miss Q The Missouri nurse = Mo Nurse The Modern churchman = Mod Churchm The Modern law review = Mod Law Rev The Modern Schoolman: a quarterly Journal of Philosophy = ModSch The Modern schoolman = Mod Schoolman The Mojave-sonora Megashear Hypothesis: Development, Assessment, and Alternatives = Geol Soc Am Spec Pap The Mojave-sonora Megashear Hypothesis: Development, Assessment, and Alternatives = Geol. Soc. Am. Spec. Pap. The Monist = Monist The Month = Month The Morgan Kaufmann Series in Computer Graphics and Geometric Modeling = Morgan Kaufmann Ser. Comput. Graph. Geom. Model. The Morgan Kaufmann Series in Data Management Systems = Morgan Kaufmann Ser. Data Management Systems The Mount Sinai journal of medicine, New York = Mt Sinai J Med The Muslim world = Muslim World The NAHAM management journal = NAHAM Manage J The national Catholic bioethics quarterly = Natl Cathol Bioeth Q The National dean's list = Deans List The National engineer = Natl Eng The National Jewish monthly = Natl Jew Mon The National law journal = Natl Law J The National medical journal of India = Natl Med J India The National underwriter. Life & health insurance edition = Natl Underwrit [Life Health] The Nation's health = Nations Health The NCSDHA dental hygienist = NCSDHA Dent Hyg The Nebraska medical journal = Nebr Med J The Nebraska state medical journal = Nebr State Med J The Nepali Mathematical Sciences Report = Nepali Math. Sci. Rep. The Nervous child = Nerv Child The Netherlands journal of medicine = Neth J Med The Netherlands journal of surgery = Neth J Surg The neurologist = Neurologist The Neuroscientist : a review journal bringing neurobiology, neurology and psychiatry = Neuroscientist The New biologist = New Biol The New dentist : the official journal of the American Student Dental Association = New Dent The New-England galaxy = N Engl Galaxy The New England historical and genealogical register / New-England Historic Genealogical Society = N Engl Hist Geneal Regist The New England journal of medicine = N Engl J Med The New England quarterly = New Engl Q The New Hungarian quarterly = New Hung Q The New law journal = New Law J The new microbiologica : official journal of the Italian Society for Medical, Odontoiatric, and Clinical Microbiology (SIMMOC) = New Microbiol The New Orleans medical and surgical journal = New Orleans Med Surg J The New philosophy = New Philos The New physician = New Physician The New phytologist = New Phytol The New scholasticism = New Scholasticism The Newsletter of biomedical safety & standards = Newsl Biomed Saf Stand The New universities quarterly = New Univ Q The New York dental journal = NY Dent J The New York journal of dentistry = N Y J Dent The New York medical quarterly = N Y Med Q The New York physician = N Y Physician The New York review of books = New York Rev Books The New York state dental journal = N Y State Dent J The New York times magazine = N Y Times Mag The New York times = NY Times (Print) The New Zealand dental journal = N Z Dent J The New Zealand family physician = N Z Fam Physician The New Zealand journal of history = N Z J Hist The New Zealand law journal : NZLJ = N Z Law J The New Zealand law reports = N Z Law Rep The New Zealand medical journal = N Z Med J The New Zealand nursing journal. Kai tiaki = N Z Nurs J The New Zealand psychologist = NZ Psychol The Nigerian journal of economic and social studies = Niger J Econ Soc Stud The Nigerian medical practitioner = Niger Med Pract The Nigerian nurse = Niger Nurse The Nigerian postgraduate medical journal = Niger Postgrad Med J The Nihon University journal of medicine = Nihon Univ J Med The North American review = North Am Rev The North American veterinarian = North Am Vet The North Carolina historical review = N C Hist Rev The Northern Ireland law reports = North Irel Law Rep The Northern Ireland legal quarterly = North Irel Leg Q The Notre Dame law review = Notre Dame Law Rev The Notre Dame lawyer = Notre Dame Lawyer The Nova Scotia historical quarterly = NS Hist Q The Nova Scotia medical bulletin = N S Med Bull The Nucleus; an international journal of cytology and allied topics = Nucleus The Numismatic Chronicle. The Journal of the Royal Society = NumChron The Nurse practitioner = Nurse Pract The Nursing clinics of North America = Nurs Clin North Am The Nursing journal of India = Nurs J India The Nursing journal of Singapore = Nurs J Singapore The Occupational health nurse = Occup Health Nurse (Auckl) THEOCHEM Journal of Molecular Structure = THEOCHEM Theochem-journal of Molecular Structure = Theochem-j Mol Struc Theochem-journal of Molecular Structure = Theochem-j. Mol. Struc. THEOCHEM = THEOCHEM The ocular surface = Ocul Surf Theodor Adorno = Routl Crit Thinkers Theodor Adorno = Routl. Crit. Thinkers. Theodore of Mopsuestia = Early Church Fathers Theodore of Mopsuestia = Early. Church. Fathers. Theodor Fontane and The European Context, Proceedings = Int For Lit Theodor Fontane and The European Context, Proceedings = Int. For. Lit. Theodor Von Mopsuestia, De Incarnatione = Patrist Texte Stud Theodor Von Mopsuestia, De Incarnatione = Patrist. Texte. Stud. The OECD observer. Organisation for Economic Co-operation and Development = OECD Obs The Office = Office Theognis Und Die Theognidea = Unters Antiken Lit G Theognis Und Die Theognidea = Unters. Antiken. Lit. G. The Ohio dental journal = Ohio Dent J The Ohio journal of science = Ohio J Sci The Ohio State medical journal = Ohio State Med J The Oklahoma nurse = Okla Nurse The Old Northwest = Old Northwest Theologiae Facultas = Arb Kirchengesch Theologiae Facultas = Arb. Kirchengesch. Theologiai szemle = Theol Sz Theological Education and Moral Formation = Encounter S Theological Education and Moral Formation = Encounter. S. Theological Paradox = Theol Bilb Theological Paradox = Theol. Bilb. Theological studies = Theol Stud Theological Studies = Theol Stud Theological Studies = Theol. Stud. Theological Studies = ThS Theologie Et Sciences Religieuses : Cogitatio Fidei = Theol Sci R Theologie Et Sciences Religieuses : Cogitatio Fidei = Theol. Sci. R. Theologie Und Kirche Im Horizont Der Antike = Arb Kirchengesch Theologie Und Kirche Im Horizont Der Antike = Arb. Kirchengesch. Theologie und Philosophie = Th&Ph Theologische Bibliotek Topelmann = Theol Bibl Topelmann Theologische Bibliotek Topelmann = Theol. Bibl. Topelmann Theologische Bibliothek Topelmann = Theol Bilb Theologische Bibliothek Topelmann = Theol. Bilb. Theologische Literaturzeitung: Monatsschrift für das gesamte Gebiet der Theologie und Religionswissenschaft = ThLZ Theologische Quartalschrift = ThQ Theologische Revue = ThRev Theologische Rundschau = TheolRu Theologische Rundschau = ThRdschau Theologische Werke 1: Vita Beata - Vom Seligen Leben = Paracelsus-neue Para Theologische Werke 1: Vita Beata - Vom Seligen Leben = Paracelsus-neue. Para. Theologische Zeitschrift = ThZ Theology and Christology in The Fourth Gospel = Bib Eph The Theology and Christology in The Fourth Gospel = Bib. Eph. The Theology and Conversation: Towards A Relational Theology = Bib Eph The Theology and Conversation: Towards A Relational Theology = Bib. Eph. The. Theology and Early Modern Philosophy (1550-1750) = Suomal Tied Toim Sar Theology and Early Modern Philosophy (1550-1750) = Suomal. Tied. Toim. Sar. Theology and Early Modern Philosophy (1550-1750) = Suom Tiedeakat Toim Theology and Early Modern Philosophy (1550-1750) = Suom. Tiedeakat. Toim. Theology As History, History As Theology = Beih Z Neutest Wiss Theology As History, History As Theology = Beih. Z. Neutest. Wiss. Theology At The End of The Century = St Rel Cult Theology At The End of The Century = St. Rel. Cult. Theology, Creation, and Environmental Ethics = Routl Stud Relig Theology, Creation, and Environmental Ethics = Routl. Stud. Relig. Theology digest = Theol Dig Theology, Ethics and Transcendence in Sports = Routl Res Sport Cult Theology, Ethics and Transcendence in Sports = Routl. Res. Sport. Cult. Theology of Martin Luther King, Jr and Desmond Mpilo Tutu = Black Relig Woman Th Theology of Martin Luther King, Jr and Desmond Mpilo Tutu = Black. Relig. Woman. Th. Theology today (Princeton, N.J.) = Theol Today Theology Today = Theol Today Theology Today = Theol. Today Theology Toward The Third Millennium = Toronto St Theology Toward The Third Millennium = Toronto. St. The oncologist = Oncologist The Onderstepoort journal of veterinary research = Onderstepoort J Vet Res The Online journal of current clinical trials = Online J Curr Clin Trials The online journal of knowledge synthesis for nursing = Online J Knowl Synth Nurs The Ontario psychologist = Ont Psychol Theophilus of Alexandria = Early Church Fathers Theophilus of Alexandria = Early. Church. Fathers. Theophrastus Paracelsus Studien = Theophr Paracel Stud Theophrastus Paracelsus Studien = Theophr. Paracel. Stud. The Optician = Optician The Optometric weekly = Optom Wkly The Oral history review = Oral Hist Rev The Oregon nurse = Oreg Nurse Theorem Provers in Circuit Design = Ifip Trans A Theorem Provers in Circuit Design = Ifip. Trans. A. Theorem Proving in Higher Order Logics = Lect Notes Comput Sc Theorem Proving in Higher Order Logics = Lect. Notes. Comput. Sc. Theorem Proving in Higher Order Logics, Proceedings = Lect Notes Comput Sc Theorem Proving in Higher Order Logics, Proceedings = Lect. Notes. Comput. Sc. Theorem Proving With Analytic Tableaux and Related Methods = Lect Notes Artif Int Theorem Proving With Analytic Tableaux and Related Methods = Lect. Notes. Artif. Int. Theoretica chimica acta = Theor Chim Acta Theoretica Chimica Acta = Theor Chim Acta Theoretica Chimica Acta = Theor. Chim. Acta Theoretical Advancement in Chromatography and Related Separation Techniques = Nato Adv Sci Inst Se Theoretical Advancement in Chromatography and Related Separation Techniques = Nato. Adv. Sci. Inst. Se. Theoretical Advances and Applications of Fuzzy Logic and Soft Computing = Adv Soft Comp Theoretical Advances and Applications of Fuzzy Logic and Soft Computing = Adv. Soft Comp. Theoretical and Applied Climatology = Theor Appl Climatol Theoretical and Applied Climatology = Theor. Appl. Climatol. Theoretical and Applied Fracture Mechanics = Theor Appl Fract Mec Theoretical and Applied Fracture Mechanics = Theor. Appl. Fract. Mec. Theoretical and Applied Fracture Mechanics = Theor. Appl. Fract. Mech. Theoretical and Applied Genetics = Theor Appl Genet Theoretical and Applied Genetics = Theor. Appl. Genet. Theoretical and Applied Mechanics = Theor Appl Theoretical and Applied Mechanics = Theor. Appl. Theoretical and Applied Mechanics = Theoret. Appl. Mech. Theoretical and Applied Mechanics, Vol 38 = Theor Appl Theoretical and Applied Mechanics, Vol 38 = Theor. Appl. Theoretical and Applied Mechanics, Vol 39 = Theor Appl Theoretical and Applied Mechanics, Vol 39 = Theor. Appl. Theoretical and Applied Mechanics, Vol 40 = Theor Appl Theoretical and Applied Mechanics, Vol 40 = Theor. Appl. Theoretical and Applied Mechanics, Vol 41 = Theor Appl Theoretical and Applied Mechanics, Vol 41 = Theor. Appl. Theoretical and Applied Mechanics, Vol 42 = Theor Appl Theoretical and Applied Mechanics, Vol 42 = Theor. Appl. Theoretical and Computational Fluid Dynamics = Theor Comp Fluid Dyn Theoretical and Computational Fluid Dynamics = Theor. Comp. Fluid Dyn. Theoretical and Computational Fluid Dynamics = Theor. Comput. Fluid Dyn. Theoretical and Computational Methods in Mineral Physics: Geophysical Applications = Rev Mineral Geochem Theoretical and Computational Methods in Mineral Physics: Geophysical Applications = Rev. Mineral Geochem. Theoretical and Computational Models for Organic Chemistry = Nato Adv Sci I C-mat Theoretical and Computational Models for Organic Chemistry = Nato. Adv. Sci. I. C-mat. Theoretical and Computational Nanophotonics (tacona-photonics 2009) = Aip Conf Proc Theoretical and Computational Nanophotonics (tacona-photonics 2009) = Aip. Conf. Proc. Theoretical and Experimental Approaches to Romance Linguistics = Amst Stud Theory His Theoretical and Experimental Approaches to Romance Linguistics = Amst. Stud. Theory. His. Theoretical and Experimental Aspects of Continuum Mechanics = Ma Comput Sci Eng Theoretical and Experimental Aspects of Continuum Mechanics = Ma. Comput. Sci. Eng. Theoretical and Experimental Aspects of Continuum Mechanics = Math Comput Sci Eng Theoretical and Experimental Aspects of Continuum Mechanics = Math. Comput. Sci. Eng. Theoretical and Experimental Aspects of Fluid Mechanics = Ma Comput Sci Eng Theoretical and Experimental Aspects of Fluid Mechanics = Ma. Comput. Sci. Eng. Theoretical and Experimental Aspects of Fluid Mechanics = Math Comput Sci Eng Theoretical and Experimental Aspects of Fluid Mechanics = Math. Comput. Sci. Eng. Theoretical and Experimental Aspects of Heat and Mass Transfer = Math Comput Sci Eng Theoretical and Experimental Aspects of Heat and Mass Transfer = Math. Comput. Sci. Eng. Theoretical and Experimental Chemistry = Theor Exp Chem Theoretical and Experimental Chemistry = Theor Exp Chem+ Theoretical and Experimental Chemistry = Theor. Exp. Chem. Theoretical and Experimental Chemistry = Theor. Exp. Chem+.+ Theoretical and Mathematical Physics Series = Theor Math Phys Ser Theoretical and Mathematical Physics Series = Theor. Math. Phys. Ser. Theoretical and Mathematical Physics = Theoret. and Math. Phys. Theoretical and Mathematical Physics = Theor Math Phys+ Theoretical and Mathematical Physics = Theor. Math. Phys. Theoretical and Mathematical Physics = Theor. Math. Phys+.+ Theoretical and Numerical Unsaturated Soil Mechanics = Springer Proc Phys Theoretical and Numerical Unsaturated Soil Mechanics = Springer. Proc. Phys. Theoretical and Observational Cosmology = Nato Adv Sci I C-mat Theoretical and Observational Cosmology = Nato. Adv. Sci. I. C-mat. Theoretical and Observational Problems Related to Solar Eclipses = Nato Adv Sci I C-mat Theoretical and Observational Problems Related to Solar Eclipses = Nato. Adv. Sci. I. C-mat. Theoretical and Practical Aspects of Spin Model Checking = Lect Notes Comput Sc Theoretical and Practical Aspects of Spin Model Checking = Lect. Notes. Comput. Sc. Theoretical and Technological Aspects of Crystal Growth = Mater Sci Forum Theoretical and Technological Aspects of Crystal Growth = Mater. Sci. Forum. Theoretical Approaches to African Linguistics = Tr Afr Ling Theoretical Approaches to African Linguistics = Tr. Afr. Ling. Theoretical Aspects of Computer Science = Lect Notes Comput Sc Theoretical Aspects of Computer Science = Lect. Notes. Comput. Sc. Theoretical Aspects of Computer Software = Lect Notes Comput Sc Theoretical Aspects of Computer Software = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2004 = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2004 = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2005 = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2005 = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2006 = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2006 = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2007, Proceedings = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2007, Proceedings = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2008, Proceedings = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2008, Proceedings = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing - Ictac 2009 = Lect Notes Comput Sc Theoretical Aspects of Computing - Ictac 2009 = Lect. Notes. Comput. Sc. Theoretical Aspects of Computing = Lect Notes Comput Sc Theoretical Aspects of Computing = Lect. Notes. Comput. Sc. Theoretical Aspects of Evolutionary Computing = Nat Comp Ser Theoretical Aspects of Evolutionary Computing = Nat. Comp. Ser. Theoretical Aspects of Evolutionary Computing = Nat Comput Ser Theoretical Aspects of Evolutionary Computing = Nat. Comput. Ser. Theoretical Aspects of Industrial Design = Siam Proc S Theoretical Aspects of Industrial Design = Siam. Proc. S. Theoretical Biology and Medical Modelling = Theor Biol Med Model Theoretical Biology and Medical Modelling = Theor. Biol. Med. Model. Theoretical biology & medical modelling = Theor Biol Med Model Theoretical Challenges in The Dynamics of Complex Fluids = Nato Adv Sci I E-app Theoretical Challenges in The Dynamics of Complex Fluids = Nato. Adv. Sci. I. E-app. Theoretical Chemistry Accounts = Theor Chem Acc Theoretical Chemistry Accounts = Theor. Chem. Acc. Theoretical Comparative Syntax = Routl Lead Linguists Theoretical Comparative Syntax = Routl. Lead. Linguists. Theoretical Computer Science = Ifip Adv Inf Comm Te Theoretical Computer Science = Ifip. Adv. Inf. Comm. Te. Theoretical Computer Science = Lect Notes Comput Sc Theoretical Computer Science = Lect. Notes. Comput. Sc. Theoretical Computer Science, Proceedings = Lect Notes Comput Sc Theoretical Computer Science, Proceedings = Lect. Notes. Comput. Sc. Theoretical Computer Science = Theor Comput Sci Theoretical Computer Science = Theor. Comput. Sci. Theoretical Computer Science = Theoret. Comput. Sci. Theoretical Criminology = Theor Criminol Theoretical Criminology = Theor. Criminol. Theoretical Developments and Future Research in Family Business = Res Entrep Manag Theoretical Developments and Future Research in Family Business = Res. Entrep. Manag. Theoretical Ecology = Theor Ecol Theoretical Ecology = Theor. Ecol. Theoretical Ecology = Theor Ecol-neth Theoretical Ecology = Theor. Ecol-neth. Theoretical Femtosecond Physics: Atoms and Molecules in Strong Laser Fields = Springer Ser Atom Op Theoretical Femtosecond Physics: Atoms and Molecules in Strong Laser Fields = Springer. Ser. Atom. Op. Theoretical Foundations of Chemical Engineering = Theor Found Chem En+ Theoretical Foundations of Chemical Engineering = Theor. Found. Chem. En+.+ Theoretical Foundations of Chemical Engineering = Theor Found Chem Eng Theoretical Foundations of Chemical Engineering = Theor. Found. Chem. Eng. Theoretical Foundations of Quantum Information Processing and Communication = Lect Notes Phys Theoretical Foundations of Quantum Information Processing and Communication = Lect. Notes. Phys. Theoretical High Energy Physics = Aip Conf Proc Theoretical High Energy Physics = Aip. Conf. Proc. Theoretical High Energy Physics: Mrst 2000 = Aip Conf Proc Theoretical High Energy Physics: Mrst 2000 = Aip. Conf. Proc. Theoretical High Energy Physics: Mrst 2001 = Aip Conf Proc Theoretical High Energy Physics: Mrst 2001 = Aip. Conf. Proc. Theoretical Integration in The Study of Deviance and Crime = Suny C Crit Theoretical Integration in The Study of Deviance and Crime = Suny. C. Crit. Theoretical Issues in Stimulus-response Compatibility = Adv Psychol Theoretical Issues in Stimulus-response Compatibility = Adv. Psychol. Theoretical Knowledge = Synth Libr Theoretical Knowledge = Synth. Libr. Theoretical Linguistics = Theoret. Linguist. Theoretical Linguistics = Theor Linguist Theoretical Linguistics = Theor. Linguist. Theoretical Mechanics: Theoretical Physics 1 = Grad Texts Phys Theoretical Mechanics: Theoretical Physics 1 = Grad. Texts. Phys. Theoretical medicine and bioethics = Theor Med Bioeth Theoretical Medicine and Bioethics=Theor Med Bioeth;; Theoretical Medicine and Bioethics = Theor Med Bioeth Theoretical Medicine and Bioethics = Theor. Med. Bioeth. Theoretical medicine = Theor Med Theoretical Medicine = Theor Med Theoretical Medicine = Theor. Med. Theoretical Methods for Strongly Correlated Electrons = Crm Ser Math Phys Theoretical Methods for Strongly Correlated Electrons = Crm. Ser. Math. Phys. Theoretical Molecular Biophysics = Biol Med Phys Biomed Theoretical Molecular Biophysics = Biol. Med. Phys. Biomed. Theoretical Numerical Analysis: A Functional Analysis Framework, Third Edition = Texts Appl Math Theoretical Numerical Analysis: A Functional Analysis Framework, Third Edition = Texts. Appl. Math. Theoretical Perspectives On Autobiographical Memory = Nato Adv Sci Inst Se Theoretical Perspectives On Autobiographical Memory = Nato. Adv. Sci. Inst. Se. Theoretical Perspectives On Native American Languages = Suny S Ling Theoretical Perspectives On Native American Languages = Suny. S. Ling. Theoretical Physics = Aip Conf Proc Theoretical Physics = Aip. Conf. Proc. Theoretical Physics At The End of The Twentieth Century = Crm Ser Math Phys Theoretical Physics At The End of The Twentieth Century = Crm. Ser. Math. Phys. Theoretical Physics, Fin De Siecle = Lect Notes Phys Theoretical Physics, Fin De Siecle = Lect. Notes. Phys. Theoretical population biology = Theor Popul Biol Theoretical Population Biology=Theor Popul Biol;; Theoretical Population Biology = Theor Popul Biol Theoretical Population Biology = Theor. Popul. Biol. Theoretical Production Ecology : Reflections and Prospects = Simulat Mg Theoretical Production Ecology : Reflections and Prospects = Simulat. Mg. Theoretical Roman Archaeology : First Conference Proceedings = Worldw Arch Theoretical Roman Archaeology : First Conference Proceedings = Worldw. Arch. Theoretical Roots of Us Foreign Policy: Machiavelli and American Unilateralism = Contemp Secur Stud Theoretical Roots of Us Foreign Policy: Machiavelli and American Unilateralism = Contemp. Secur. Stud. Theoretical Statistics: Topics for A Core Course = Springer Texts Stat Theoretical Statistics: Topics for A Core Course = Springer. Texts. Stat. Theoretical surgery = Theor Surg Theoretical Surgery = Theor Surg Theoretical Surgery = Theor. Surg. The Organ = Organ Theoria: a Swedish journal of philosophy and psychology = Theoria Theoria-a Swedish Journal of Philosophy = Theoria-swed J Philo Theoria-a Swedish Journal of Philosophy = Theoria-swed. J. Philo. Theoria et Historia Scientiarum = Theoria Hist. Sci. Theoria-revista De Teoria Historia Y Fundamentos De La Ciencia = Theoria-spain Theoria-revista De Teoria Historia Y Fundamentos De La Ciencia = Theoria-spain. Theoria = Theoria Theoria = Theoria Theoria = Theoria (San Sebastián) (2) Theorie Der Praktischen Freiheit: Fichte - Hegel = Quellen Stud Philos Theorie Der Praktischen Freiheit: Fichte - Hegel = Quellen. Stud. Philos. Theorie Der Ubersetzung Antiker Literatur in Deutschland Seit 1800 = Transform Antike Theorie Der Ubersetzung Antiker Literatur in Deutschland Seit 1800 = Transform. Antike. Theories and Concepts in Comparative Industrial Relations = St Ind Rel Theories and Concepts in Comparative Industrial Relations = St. Ind. Rel. Theories and Mechanism of Phase Transitions, Heterophase Polymerizations, Homopolymerization, Addition Polymerization = Adv Polym Sci Theories and Mechanism of Phase Transitions, Heterophase Polymerizations, Homopolymerization, Addition Polymerization = Adv. Polym. Sci. Theories and Methods of Spatio-temporal Reasoning in Geographic Space = Lect Notes Comput Sc Theories and Methods of Spatio-temporal Reasoning in Geographic Space = Lect. Notes. Comput. Sc. Theories of Contemporary Culture = Theo Cont C Theories of Contemporary Culture = Theo. Cont. C. Theories of Creativity = Sage Foc Ed Theories of Creativity = Sage. Foc. Ed. Theories of International Trade = Routl Explor Econ Hi Theories of International Trade = Routl. Explor. Econ. Hi. Theories of Learning and Studies of Instructional Practice = Explor Learn Sci Theories of Learning and Studies of Instructional Practice = Explor. Learn. Sci. Theories of Mathematics Education: Seeking New Frontiers = Advncs Mthmtcs Educ Theories of Mathematics Education: Seeking New Frontiers = Advncs. Mthmtcs. Educ. Theories of New Regionalism: A Palgrave Reader = Int Polit Econ Ser Theories of New Regionalism: A Palgrave Reader = Int. Polit. Econ. Ser. Theories of Perception in Medieval and Early Modern Philosophy = Stud His Phil Mind Theories of Perception in Medieval and Early Modern Philosophy = Stud. His. Phil. Mind. Theories of Perception in Medieval and Early Modern Philosophy = Stud Hist Philos Min Theories of Perception in Medieval and Early Modern Philosophy = Stud. Hist. Philos. Min. Theories of Plates and Shells: Critical Review and New Applications = Ln App C M Theories of Plates and Shells: Critical Review and New Applications = Ln. App. C. M. Theories of The Information Society, Third Edition = Int Libr Sociol Theories of The Information Society, Third Edition = Int. Libr. Sociol. Theories of Turbulence = Cism Cour L Theories of Turbulence = Cism. Cour. L. Theories of Turbulence = Cism Courses Lect Theories of Turbulence = Cism. Courses. Lect. Theorie Und Praxis Der Idiomatischen Worterbucher = Lexicogr Ser Maior Theorie Und Praxis Der Idiomatischen Worterbucher = Lexicogr. Ser. Maior. Theorie und Praxis der Korperkultur = Theor Prax Korperkult Theorising International Society: English School Methods = Palgr Stud Int Relat Theorising International Society: English School Methods = Palgr. Stud. Int. Relat. Theorists of Modernist Poetry: T.s. Eliot, T.e. Hulme, Ezra Pound = Routl Crit Thinkers Theorists of Modernist Poetry: T.s. Eliot, T.e. Hulme, Ezra Pound = Routl. Crit. Thinkers. Theorists of The Modernist Novel: James Joyce, Dorothy Richardson, Virginia Woolf = Routl Crit Thinkers Theorists of The Modernist Novel: James Joyce, Dorothy Richardson, Virginia Woolf = Routl. Crit. Thinkers. Theorizing Identities and Social Action = Identity Stud Soc Sc Theorizing Identities and Social Action = Identity. Stud. Soc. Sc. Theorizing Practice: Redefining Theatre History = Redefin Brit Theatre Theorizing Practice: Redefining Theatre History = Redefin. Brit. Theatre Theorizing Practice: Redefining Theatre History = Redefin Br Theatre H Theorizing Practice: Redefining Theatre History = Redefin. Br. Theatre H. Theorizing Sexual Violence = Routl Res Gend Soc Theorizing Sexual Violence = Routl. Res. Gend. Soc. The Orthodontist = Orthodontist The Orthopedic clinics of North America = Orthop Clin North Am Theory and Algorithms for Cooperative Systems = Ser Computers Oper R Theory and Algorithms for Cooperative Systems = Ser. Computers. Oper. R. Theory and Appliations of Relational Structures As Knowledge Instruments = Lect Notes Comput Sc Theory and Appliations of Relational Structures As Knowledge Instruments = Lect. Notes. Comput. Sc. Theory and Application in Fish Feeding Ecology = Bel Bar Lib Theory and Application in Fish Feeding Ecology = Bel. Bar. Lib. Theory and Application of Diagrams, Proceedings = Lect Notes Artif Int Theory and Application of Diagrams, Proceedings = Lect. Notes. Artif. Int. Theory and Application of Recent Robust Methods = Stat Ind Technol Theory and Application of Recent Robust Methods = Stat. Ind. Technol. Theory and Applications of Categories = Theor Appl Categ Theory and Applications of Categories = Theor. Appl. Categ. Theory and Applications of Categories = Theory Appl. Categ. Theory and Applications of Computability = Theor Appl Comput Theory and Applications of Computability = Theor. Appl. Comput. Theory and Applications of Computational Chemistry - 2008 = Aip Conf Proc Theory and Applications of Computational Chemistry - 2008 = Aip. Conf. Proc. Theory and Applications of Models of Computation = Lect Notes Comput Sc Theory and Applications of Models of Computation = Lect. Notes. Comput. Sc. Theory and Applications of Models of Computation, Proceedings = Lect Notes Comput Sc Theory and Applications of Models of Computation, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Natural Language Processing = Theor Appl Nat Lang Theory and Applications of Natural Language Processing = Theor. Appl. Nat. Lang. Theory and Applications of Ocean Surface Waves, Pt 1: Linear Aspects = Adv Ser Ocean Eng Theory and Applications of Ocean Surface Waves, Pt 1: Linear Aspects = Adv. Ser. Ocean Eng. Theory and Applications of Ocean Surface Waves, Pt 2: Nonlinear Aspects = Adv Ser Ocean Eng Theory and Applications of Ocean Surface Waves, Pt 2: Nonlinear Aspects = Adv. Ser. Ocean Eng. Theory and Applications of Relational Structures As Knowledge Instruments Ii = Lect Notes Artif Int Theory and Applications of Relational Structures As Knowledge Instruments Ii = Lect. Notes. Artif. Int. Theory and Applications of Relational Structures As Knowledge Instruments = Lect Notes Comput Sc Theory and Applications of Relational Structures As Knowledge Instruments = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing - Sat 2006, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing - Sat 2006, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing - Sat 2007, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing - Sat 2007, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing - Sat 2008, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing - Sat 2008, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing - Sat 2009, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing - Sat 2009, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Satisfiability Testing - Sat 2010, Proceedings = Lect Notes Comput Sc Theory and Applications of Satisfiability Testing - Sat 2010, Proceedings = Lect. Notes. Comput. Sc. Theory and Applications of Stochastic Processes = Appl Math Sci Theory and Applications of Stochastic Processes = Appl. Math. Sci. Theory and Applications of Transport in Porous Media = Theor Appl Trans Por Theory and Applications of Transport in Porous Media = Theor. Appl. Trans. Por. Theory and Applications of Transport in Porous Media = Theor App T Theory and Applications of Transport in Porous Media = Theor. App. T. Theory and Applications of Transport in Porous Media = Theory Appl. Transp. Porous Media Theory and Application to Graph Transformations = Lect Notes Comput Sc Theory and Application to Graph Transformations = Lect. Notes. Comput. Sc. Theory and Computation for Synchrotron Radiation Spectroscopy = Aip Conf Proc Theory and Computation for Synchrotron Radiation Spectroscopy = Aip. Conf. Proc. Theory and Decision Library Series A Philosophy and Methodology of The Social Sciences = Theor Dec A Theory and Decision Library Series A Philosophy and Methodology of The Social Sciences = Theor. Dec. A Theory and Decision Library, Series A : Philosophy and Methodology of The Social Sciences = Theor Dec A Theory and Decision Library, Series A : Philosophy and Methodology of The Social Sciences = Theor. Dec. A Theory and Decision Library Series A Philosophy and Methodology of The Social Sciences = Theory Decis Lib A Theory and Decision Library Series A Philosophy and Methodology of The Social Sciences = Theory Decis. Lib. A Theory and Decision Library, Series B : Mathematical and Statistical Methods = Theo Dec L Theory and Decision Library, Series B : Mathematical and Statistical Methods = Theo. Dec. L. Theory and Decision Library, Series C : Game Theory, Mathematical Programming and Mathematical Economics = Theor Dec C Theory and Decision Library, Series C : Game Theory, Mathematical Programming and Mathematical Economics = Theor. Dec. C Theory and Decision Library, Series D : System Theory, Knowledge Engineering and Problem Solving = Theo Deci L Theory and Decision Library, Series D : System Theory, Knowledge Engineering and Problem Solving = Theo. Deci. L. Theory and Decision Library = Theory Decis. Lib. Ser. B Math. Statist. Methods Theory and Decision Library = Theory Decis. Lib. Ser. D System Theory Knowledge Engrg. Probl. Solving Theory and Decision Series C Game Theory Mathematical Programming and Operations Research = Theor Dec C Theory and Decision Series C Game Theory Mathematical Programming and Operations Research = Theor. Dec. C Theory and Decision Series C-game Theory Mathematical Programming and Operations Research = Theory Decis Ser C G Theory and Decision Series C-game Theory Mathematical Programming and Operations Research = Theory Decis. Ser. C. G. Theory and Decision Series C Game Theory Mathematical Programming and Operations Research = Theory Decis Ser C G Theory and Decision Series C Game Theory Mathematical Programming and Operations Research = Theory Decis. Ser. C G. Theory and Decision = Theor Decis Theory and Decision = Theor. Decis. Theory and Decision = Theory and Decision Theory and Decision=Theory Dec. Theory and decision = Theory Decis Theory and Design of Cnc Systems = Springer Ser Adv Man Theory and Design of Cnc Systems = Springer. Ser. Adv. Man. Theory and Engineering Applications of Computational Methods: A Series of Handbooks = Theor Engn Applicat Theory and Engineering Applications of Computational Methods: A Series of Handbooks = Theor. Engn. Applicat. Theory and Engineering Applications of Computational Methods = Theory Eng. Appl. Comput. Methods Theory and Evidence in Comparative Politics and International Relations = New Vis Secur Theory and Evidence in Comparative Politics and International Relations = New. Vis. Secur. Theory and Experiment in Electrocatalysis = Mod Asp Electrochem Theory and Experiment in Electrocatalysis = Mod. Asp. Electrochem. Theory and Mathematical Methods for Bioinformatics = Biol Med Phys Biomed Theory and Mathematical Methods for Bioinformatics = Biol. Med. Phys. Biomed. Theory and Numerics of Differential Equations = Universitext Theory and Numerics of Differential Equations = Universitext. Theory and Practice in Distributed Systems = Lect Notes Comput Sc Theory and Practice in Distributed Systems = Lect. Notes. Comput. Sc. Theory and Practice in Kant and Kierkegaard = Kierke Stud Monogr S Theory and Practice in Kant and Kierkegaard = Kierke. Stud. Monogr. S. Theory and Practice of Foreign Aid = Front Econ Global Theory and Practice of Foreign Aid = Front. Econ. Global. Theory and Practice of International Mediation: Selected Essays = Secur Confl Manag Theory and Practice of International Mediation: Selected Essays = Secur. Confl. Manag. Theory and Practice of Logic Programming = Theor Pract Log Prog Theory and Practice of Logic Programming = Theor. Pract. Log. Prog. Theory and Practice of Logic Programming = Theory Pract. Logic Program. Theory and Practice of Model Transformations = Lect Notes Comput Sc Theory and Practice of Model Transformations = Lect. Notes. Comput. Sc. Theory and Practice of Object Systems = Theor Pract Obj Syst Theory and Practice of Object Systems = Theor. Pract. Obj. Syst. Theory and Practice of Risk Analysis and Crisis Response, Proceedings = Adv Intel Sys Res Theory and Practice of Risk Analysis and Crisis Response, Proceedings = Adv. Intel. Sys. Res. Theory and Practice of Surface-relief Diffraction Gratings: Synchrotron and Other Applications = P Soc Photo-opt Ins Theory and Practice of Surface-relief Diffraction Gratings: Synchrotron and Other Applications = P. Soc. Photo-opt. Ins. Theory and Practice of The Triple Helix System in Developing Countries: Issues and Challenges = Rout Stud Innov Org Theory and Practice of The Triple Helix System in Developing Countries: Issues and Challenges = Rout. Stud. Innov. Org. Theory and Practice of Uncertain Programming, Second Edition = Stud Fuzz Soft Comp Theory and Practice of Uncertain Programming, Second Edition = Stud. Fuzz. Soft. Comp. Theory and Research in Social Education = Theor Res Soc Educ Theory and Research in Social Education = Theor. Res. Soc. Educ. Theory and Research On Human Emotions = Adv Group Process Theory and Research On Human Emotions = Adv. Group. Process. Theory and Simulation of Hard-sphere Fluids and Related Systems = Lect Notes Phys Theory and Simulation of Hard-sphere Fluids and Related Systems = Lect. Notes. Phys. Theory and Society = Theor Soc Theory and Society = Theor. Soc. Theory and society = Theory Soc Theory And Society = Theory Soc. Theory and Tests of Convection in Stellar Structure = Astr Soc P Theory and Tests of Convection in Stellar Structure = Astr. Soc. P. Theory and Typology of Proper Names = Trends Linguist-stud Theory and Typology of Proper Names = Trends. Linguist-stud. Theory & Applications of Image Analysis = S Mach Perc Theory & Applications of Image Analysis = S. Mach. Perc. Theory Building in Sociology = Key Iss Soc Theory Building in Sociology = Key. Iss. Soc. Theory Culture & Society = Theor Cult Soc Theory Culture & Society = Theor. Cult. Soc. Theory / Culture = Theory Culture Theory in Biosciences = Theor Biosci Theory in Biosciences = Theor. Biosci. Theory Into Practice = Theor Pract Theory Into Practice = Theor. Pract. Theory Is Forever: Essays Dedicated to Arto Salomaa On The Occasion of His 70th Birthday = Lect Notes Comput Sc Theory Is Forever: Essays Dedicated to Arto Salomaa On The Occasion of His 70th Birthday = Lect. Notes. Comput. Sc. Theory, Method, and Practice in Social and Cultural History = Probl Meth Theory, Method, and Practice in Social and Cultural History = Probl. Meth. Theory, Modeling and Experience in The Management of Nonpoint-source Pollution = Nat Res Man Theory, Modeling and Experience in The Management of Nonpoint-source Pollution = Nat. Res. Man. Theory, Modeling, and Field Investigation in Hydrogeology: A Special Volume in Honor of Shlomo P. Neuman's 60th Birthday = Geol S Am S Theory, Modeling, and Field Investigation in Hydrogeology: A Special Volume in Honor of Shlomo P. Neuman's 60th Birthday = Geol. S. Am. S. Theory, Modeling, and Field Investigation in Hydrogeology: A Special Volume in Honor of Shlomo P. Neuman's 60th Birthday = Geol Soc Am Spec Pap Theory, Modeling, and Field Investigation in Hydrogeology: A Special Volume in Honor of Shlomo P. Neuman's 60th Birthday = Geol. Soc. Am. Spec. Pap. Theory, Modeling and Numerical Simulation of Multi-physics Materials Behavior = Solid State Phenomen Theory, Modeling and Numerical Simulation of Multi-physics Materials Behavior = Solid. State. Phenomen. Theory, Modeling and Numerical Simulation of Multi-physics Materials Behavior = Sol St Phen Theory, Modeling and Numerical Simulation of Multi-physics Materials Behavior = Sol. St. Phen. Theory of Accretion Disks - 2 = Nato Adv Sci Inst Se Theory of Accretion Disks - 2 = Nato. Adv. Sci. Inst. Se. Theory of Adaptive Fiber Composites = Solid Mech Appl Theory of Adaptive Fiber Composites = Solid. Mech. Appl. Theory of A Higher-order Sturm-liouville Equation = Lect Notes Math Theory of A Higher-order Sturm-liouville Equation = Lect. Notes. Math. Theory of Berman Spaces in The Unit Ball of C(n) = Mem Soc Math Fr Theory of Berman Spaces in The Unit Ball of C(n) = Mem. Soc. Math. Fr. Theory of Capitalism in The German Economic Tradition = St Econ Ethic Philos Theory of Capitalism in The German Economic Tradition = St. Econ. Ethic. Philos. Theory of Capitalism in The German Economic Tradition = Stud Econ Ethics Phi Theory of Capitalism in The German Economic Tradition = Stud. Econ. Ethics. Phi. Theory of Chemical Reaction Dynamics = Nato Sci Ser Ii-math Theory of Chemical Reaction Dynamics = Nato. Sci. Ser. Ii-math. Theory of Chemical Reaction Dynamics = Nato Sci Ser Ii Math Theory of Chemical Reaction Dynamics = Nato. Sci. Ser. Ii. Math. Theory of Citrasutras in Indian Painting = Roy Asiat Soc Books Theory of Citrasutras in Indian Painting = Roy. Asiat. Soc. Books. Theory of Computing and Systems = Lect Notes Comput Sc Theory of Computing and Systems = Lect. Notes. Comput. Sc. Theory of Computing Systems = Theor Comput Syst Theory of Computing Systems = Theor. Comput. Syst. Theory of Computing Systems = Theory Comput. Syst. Theory of Cryptography, 6th Theory of Cryptography Conference, Tcc 2009 = Lect Notes Comput Sc Theory of Cryptography, 6th Theory of Cryptography Conference, Tcc 2009 = Lect. Notes. Comput. Sc. Theory of Cryptography = Lect Notes Comput Sc Theory of Cryptography = Lect. Notes. Comput. Sc. Theory of Cryptography, Proceedings = Lect Notes Comput Sc Theory of Cryptography, Proceedings = Lect. Notes. Comput. Sc. Theory of Crytography, Proceedings = Lect Notes Comput Sc Theory of Crytography, Proceedings = Lect. Notes. Comput. Sc. Theory of Defects in Semiconductors = Top Appl Phys Theory of Defects in Semiconductors = Top. Appl. Phys. Theory of Differential Equations: Classical and Qualitative, Second Edition = Universitext Theory of Differential Equations: Classical and Qualitative, Second Edition = Universitext. Theory of Dynamic Efficiency = Rout Found Mark Econ Theory of Dynamic Efficiency = Rout. Found. Mark. Econ. Theory of Electron Transport in Semiconductors = Springer Ser Solid-s Theory of Electron Transport in Semiconductors = Springer. Ser. Solid-s. Theory of Epistemic Justification = Philos Stud Ser Theory of Epistemic Justification = Philos. Stud. Ser. Theory of Fusion Plasmas = Aip Conf Proc Theory of Fusion Plasmas = Aip. Conf. Proc. Theory of Fusion Plasmas = Int Sch Pl Theory of Fusion Plasmas = Int. Sch. Pl. Theory of Fusion Plasmas / = Int Sch Pl Theory of Fusion Plasmas / = Int. Sch. Pl. Theory of Fusion Plasmas: Joint Varenna-lausanne International Workshop = J Phys Conf Ser Theory of Fusion Plasmas: Joint Varenna-lausanne International Workshop = J. Phys. Conf. Ser. Theory of Heat Transfer With Forced Convection Film = Heat Mass Transf Theory of Heat Transfer With Forced Convection Film = Heat Mass. Transf. Theory of Hypergeometric Functions = Springer Monogr Math Theory of Hypergeometric Functions = Springer. Monogr. Math. Theory of Intense Beams of Charged Particles = Adv Imag Elect Phys Theory of Intense Beams of Charged Particles = Adv. Imag. Elect. Phys. Theory of International Trade = Lect Notes Econ Math Theory of International Trade = Lect. Notes. Econ. Math. Theory of Interregional Dynamics: Models of Capital, Knowledge and Economic Structures = Lect Notes Econ Math Theory of Interregional Dynamics: Models of Capital, Knowledge and Economic Structures = Lect. Notes. Econ. Math. Theory of K-loops = Lect Notes Math Theory of K-loops = Lect. Notes. Math. Theory of Laser Materials Processing: Heat and Mass Transfer in Modern Technology = Springer Ser Mater S Theory of Laser Materials Processing: Heat and Mass Transfer in Modern Technology = Springer. Ser. Mater. S. Theory of Legal Principles = Law Philos Libr Theory of Legal Principles = Law. Philos. Libr. Theory of Light Hydrogenic Bound States = Springer Tr Mod Phys Theory of Light Hydrogenic Bound States = Springer. Tr. Mod. Phys. Theory of Particle and Cluster Emission = Lect Notes Phys Theory of Particle and Cluster Emission = Lect. Notes. Phys. Theory of Probability and Its Applications = Theor Probab Appl+ Theory of Probability and Its Applications = Theor. Probab. Appl+.+ Theory of Probability and its Applications = Theory Probab. Appl. Theory of Probability and Mathematical Statistics = Theory Probab. Math. Statist. Theory of Probility and Its Applications,ussr = Theor Probab Appl+ Theory of Probility and Its Applications,ussr = Theor. Probab. Appl+.+ Theory of Quantum Computation, Communication, and Cryptography = Lect Notes Comput Sc Theory of Quantum Computation, Communication, and Cryptography = Lect. Notes. Comput. Sc. Theory of Quantum Transport in Metallic and Hybrid Nanostructures = Nato Sci Ser Ii Math Theory of Quantum Transport in Metallic and Hybrid Nanostructures = Nato. Sci. Ser. Ii. Math. Theory of Radicals = Colloq Math Theory of Radicals = Colloq. Math. Theory of Reasoned Action: Its Application to Aids-preventive Behaviour = In S Ex Soc Theory of Reasoned Action: Its Application to Aids-preventive Behaviour = In. S. Ex. Soc. Theory of Semiconductor Quantum Devices: Microscopic Modeling and Simulation Strategies = Nanosci Technol Theory of Semiconductor Quantum Devices: Microscopic Modeling and Simulation Strategies = Nanosci. Technol. Theory of Shape Identification = Lect Notes Math Theory of Shape Identification = Lect. Notes. Math. Theory of Sobolev Multipliers: With Applications to Differential and Integral Operators = Grundlehr Math Wiss Theory of Sobolev Multipliers: With Applications to Differential and Integral Operators = Grundlehr. Math. Wiss. Theory of Spin Lattices and Lattice Gauge Models = Lect Notes Phys Theory of Spin Lattices and Lattice Gauge Models = Lect. Notes. Phys. Theory of Supply Chains = Lect Notes Econ Math Theory of Supply Chains = Lect. Notes. Econ. Math. Theory of The Moire Phenomena, Vol I: Periodic Layers, Second Edition = Comput Imaging Vis Theory of The Moire Phenomena, Vol I: Periodic Layers, Second Edition = Comput. Imaging. Vis. Theory of The Muon Anomalous Magnetic Moment = Springer Tr Mod Phys Theory of The Muon Anomalous Magnetic Moment = Springer. Tr. Mod. Phys. Theory of The Non-linear Analog Phase Locked Loop = Lect Notes Contr Inf Theory of The Non-linear Analog Phase Locked Loop = Lect. Notes. Contr. Inf. Theory of The Post-war Periods: Observations On Franco-german Relations Since 1945 = Trace Transm Rhetor Theory of The Post-war Periods: Observations On Franco-german Relations Since 1945 = Trace. Transm. Rhetor. Theory of Turbulence: Subrahmanyan Chandrasekhar's 1954 Lectures = Lect Notes Phys Theory of Turbulence: Subrahmanyan Chandrasekhar's 1954 Lectures = Lect. Notes. Phys. Theory of Unconventional Superconductors: Cooper-pairingmediated By Spin Excitations = Springer Tr Mod Phys Theory of Unconventional Superconductors: Cooper-pairingmediated By Spin Excitations = Springer. Tr. Mod. Phys. Theory & Psychology = Theor Psychol Theory & Psychology = Theor. Psychol. Theory & psychology = Theory Psychol Theory Reasoning in Connection Calculi = Lect Notes Artif Int Theory Reasoning in Connection Calculi = Lect. Notes. Artif. Int. The Osteopathic hospital = Osteopath Hosp The Osteopathic profession = Osteopath Prof The overseas post-graduate medical journal = Overseas Postgrad Med J The Pacific historian = Pac Hist The Pacific northwesterner = Pac Northwest The P. A. journal = PA J The Pakistan dental review = Pak Dent Rev The Pakistan journal of surgery, gynaecology, and obstetrics = Pak J Surg Gynaecol Obstet The Pakistan nursing and health review = Pak Nurs Health Rev The Palimpsest = Palimpsest (Iowa City) The Pamphlets of Lewis Carroll = Pam. Lewis Carroll The Pasha's Bedouin: Tribes and State in The Egypt of Mehemet Ali, 1805-1848 = Rout Stud Mid E Hist The Pasha's Bedouin: Tribes and State in The Egypt of Mehemet Ali, 1805-1848 = Rout. Stud. Mid. E. Hist. The Patna journal of medicine = Patna J Med The Pavlovian journal of biological science = Pavlov J Biol Sci The PCR reporter = PCR Rep The Pediatric infectious disease journal = Pediatr Infect Dis J The Penn dental journal = Penn Dent J (Phila) The Pennsylvania magazine of history and biography = Pa Mag Hist Biogr The Pennsylvania nurse = Pa Nurse The Personalist = Personalist The Personnel administrator = Pers Adm The Personnel and guidance journal = Pers Guid J The Personnel journal = Pers J The pharmacogenomics journal = Pharmacogenomics J The Pharos of Alpha Omega Alpha-Honor Medical Society. Alpha Omega Alpha = Pharos Alpha Omega Alpha Honor Med Soc The Philippine economic journal = Philipp Econ J The Philippine journal of nursing = Philipp J Nurs The Philippine journal of pediatrics = Philipp J Pediatr The Philippine review of economics & business = Philipp Rev Econ Bus The Philosophical Forum: a philosophical quarterly publ. with the cooper. of the Dept. of Philosophy of Boston Univ. = PF The Philosophical forum = Philos Forum The Philosophical journal = Philos J The Philosophical quarterly = Philos Q The Philosophical Quarterly = PhilosQ The Philosophical Quarterly = Philos. Quart. The Philosophical review = Philos Rev The Philosophy forum = Philos Forum The Physical therapy review = Phys Ther Rev The Physician and sportsmedicine = Phys Sportsmed The Physiologist = Physiologist The Physiology teacher = Physiol Teach The Planetary report = Planet Rep The Plant cell = Plant Cell The Plant Cell = Plant Cell The Plant journal : for cell and molecular biology = Plant J The Poet in His Garden = Coll Unichamp The Poet in His Garden = Coll. Unichamp. The Polar record = Polar Rec (Gr Brit) The Polish review = Pol Rev The Political quarterly = Polit Q The Pope speaks = Pope Speaks The Practical lawyer = Pract Lawyer The practising midwife = Pract Midwife The Practitioner = Practitioner The Prairie rose = Prairie Rose The Priest = Priest The Princeton University library chronicle = Princeton Univ Libr Chron The Probe = Probe (Lond) The Proceedings of the African Classical Associations = ProcAfrClAss The Proceedings of the Cardiff Medical Society = Proc Cardiff Med Soc The proceedings of the European Prosthodontic Association ... Annual Meeting. European Prosthodontic Association. Meeting = Proc Eur Prosthodontic Assoc The Proceedings of the Institute of Medicine of Chicago = Proc Inst Med Chic The Proceedings of the Institute of Statistical Mathematics = Proc. Inst. Statist. Math. The Proceedings of the Nutrition Society = Proc Nutr Soc The proceedings of the South Carolina Historical Association. South Carolina Historical Association = Proc S C Hist Assoc The Professional geographer : the journal of the Association of American Geographers = Prof Geogr The Progressive nurse = Progress Nurse The Progressive = Progressive The Prostate = Prostate The Prostate. Supplement = Prostate Suppl The protein journal = Protein J The Psychiatric clinics of North America = Psychiatr Clin North Am The Psychiatric hospital = Psychiatr Hosp The Psychiatric quarterly = Psychiatr Q The Psychiatric quarterly. Supplement = Psychiatr Q Suppl The Psychoanalytic quarterly = Psychoanal Q The Psychoanalytic study of the child = Psychoanal Study Child The Psychohistory review = Psychohist Rev The Psychological record = Psychol Rec The Psychologist = Psychologist The Publications of the Thoresby Society = Publ Thoresby Soc The Public historian = Public Hist The Public interest = Public Interest The Public relations journal = Public Relat J The Puerto Rico journal of public health and tropical medicine = PR J Public Health Trop Med The Pulse of the Montana State Nurses' Association = Pulse The Punjab medical journal = Punjab Med J The Punjab University = Punjab Univ. J. Math. (Lahore) The Quality letter for healthcare leaders = Qual Lett Healthc Lead The quarterly journal of administration / Institute of Administration, University of Ife = Q J Adm The quarterly journal of economics = Q J Econ The Quarterly journal of experimental psychology. A, Human experimental psychology = Q J Exp Psychol A The Quarterly journal of experimental psychology. B, Comparative and physiological psychology = Q J Exp Psychol B The Quarterly journal of experimental psychology = Q J Exp Psychol The Quarterly Journal of Mathematics = Quart. J. Math. Oxford Ser. (2) The Quarterly Journal of Mechanics and Applied Mathematics = Quart. J. Mech. Appl. Math. The Quarterly journal of medicine = Q J Med The Quarterly journal of microscopical science = Q J Microsc Sci The quarterly journal of nuclear medicine and molecular imaging : official publication of the Italian Association of Nuclear Medicine (AIMN) [and] the International Association of Radiopharmacology (IAR), [and] Section of the Society of... = Q J Nucl Med Mol Imaging The quarterly journal of nuclear medicine : official publication of the Italian Association of Nuclear Medicine (AIMN) [and] the International Association of Radiopharmacology (IAR) = Q J Nucl Med The Quarterly journal of social affairs = Q J Soc Aff The Quarterly journal of speech = Q J Speech The Quarterly of the Department of Antiquities in Palestine = QDAP The Quarterly of the National Dental Association, Inc = Q Natl Dent Assoc The Quarterly review of biology = Q Rev Biol The Quarterly review of economics and business = Q Rev Econ Bus The Quarterly review of economics and finance : journal of the Midwest Economics Association = Q Rev Econ Finance The Quarterly review = Q Rev DC Nurses Assoc The Queensland nurse = Qld Nurse The Ramanujan Journal = Ramanujan J. The Rand journal of economics = Rand J Econ Therapeutic Advances in Critical Limb Ischaemia = Roy Soc Med Int Cong Therapeutic Advances in Critical Limb Ischaemia = Roy. Soc. Med. Int. Cong. Therapeutica nova = Ther Nova Therapeutic apheresis and dialysis : official peer-reviewed journal of the International Society for Apheresis, the Japanese Society for Apheresis, the Japanese Society for Dialysis Therapy = Ther Apher Dial Therapeutic Apheresis and Dialysis = Ther Apher Dial Therapeutic Apheresis and Dialysis = Ther. Apher. Dial. Therapeutic apheresis : official journal of the International Society for Apheresis and the Japanese Society for Apheresis = Ther Apher Therapeutic Apheresis = Ther Apher Therapeutic Apheresis = Ther. Apher. Therapeutic Applications of Cell Microencapsulation = Adv Exp Med Biol Therapeutic Applications of Cell Microencapsulation = Adv. Exp. Med. Biol. Therapeutic Applications of Rnai: Methods and Protocols = Methods Mol Biol Therapeutic Applications of Rnai: Methods and Protocols = Methods Mol. Biol. Therapeutic drug monitoring = Ther Drug Monit Therapeutic Drug Monitoring=Ther Drug Monit;; Therapeutic Drug Monitoring = Ther Drug Monit Therapeutic Drug Monitoring = Ther. Drug Monit. Therapeutic immunology = Ther Immunol Therapeutic Immunology=Ther Immunol;; Therapeutic Immunology = Ther. Immunol. Therapeutic Laser Applications and Laser-tissue Interaction Iii = Proc Spie Therapeutic Laser Applications and Laser-tissue Interaction Iii = Proc. Spie. Therapeutic Laser Applications and Laser-tissue Interaction Iii = P Soc Photo-opt Ins Therapeutic Laser Applications and Laser-tissue Interaction Iii = P. Soc. Photo-opt. Ins. Therapeutic Laser Applications and Laser-tissue Interactions = Proc Spie Therapeutic Laser Applications and Laser-tissue Interactions = Proc. Spie. Therapeutic Laser Applications and Laser-tissue Interactions = P Soc Photo-opt Ins Therapeutic Laser Applications and Laser-tissue Interactions = P. Soc. Photo-opt. Ins. Therapeutic Management of Metastatic Breast Cancer = Con Dev Can Therapeutic Management of Metastatic Breast Cancer = Con. Dev. Can. Therapeutic Oligonucleotides = Ann Ny Acad Sci Therapeutic Oligonucleotides = Ann. Ny. Acad. Sci. Therapeutic Oligonucleotides: Methods and Protocols = Methods Mol Biol Therapeutic Oligonucleotides: Methods and Protocols = Methods Mol. Biol. Therapeutic Oligonucleotides: Transcriptional and Translational Strategies for Silencing Gene Expression = Ann Ny Acad Sci Therapeutic Oligonucleotides: Transcriptional and Translational Strategies for Silencing Gene Expression = Ann. Ny. Acad. Sci. Therapeutic Outcome of Endocrine Disorders = Serono Symp Therapeutic Outcome of Endocrine Disorders = Serono. Symp. Therapeutic Potential of Cyclosporin in Severe Psoriasis = Roy Soc Med Int Cong Therapeutic Potential of Cyclosporin in Severe Psoriasis = Roy. Soc. Med. Int. Cong. Therapeutic Potential of Melatonin = Front Horm Res Therapeutic Potential of Melatonin = Front. Horm. Res. Therapeutic Protein and Peptide Formulation and Delivery = Acs Sym Ser Therapeutic Protein and Peptide Formulation and Delivery = Acs. Sym. Ser. Therapeutic recreation journal = Ther Recreation J Therapeutic Recreation Journal = Ther. Recreation J. Therapeutics for Cognitive Aging = Ann Ny Acad Sci Therapeutics for Cognitive Aging = Ann. Ny. Acad. Sci. Therapeutic Strategies for Modulating The Inflammatory Diseases = Agent Action Suppl Therapeutic Strategies for Modulating The Inflammatory Diseases = Agent. Action. Suppl. Therapeutic Targets of The Tnf Superfamily = Adv Exp Med Biol Therapeutic Targets of The Tnf Superfamily = Adv. Exp. Med. Biol. Therapeutic Ultrasound = Aip Conf Proc Therapeutic Ultrasound = Aip. Conf. Proc. Therapeutic Vaccination Strategies = E Schering Res Fdn W Therapeutic Vaccination Strategies = E. Schering. Res. Fdn. W. Therapeutikon (Karlsruhe, Germany) = Therapeutikon Therapeutique / Entretiens de Bichat Pitie-Salpetriere. Entretiens de Bichat Pitie-Salpetriere = Entret Bichat Pitie Salpetriere Ther Therapeutique (La Semaine des hopitaux) = Therapeutique Therapeutique = Therapeutique Therapeutische Berichte = Ther Ber Therapeutische Umschau. Revue therapeutique = Ther Umsch Therapeutische Umschau=Ther Umsch;; Therapeutische Umschau = Ther Umsch Therapeutische Umschau = Ther. Umsch. Therapeutische Umschau und medizinische Bibliographie. Revue therapeutique et bibliographie medicale = Ther Umsch Med Bibliogr Therapia Hungarica (English edition) = Ther Hung Therapia Hungarica = Ther Hung Therapia Hungarica = Ther. Hung. Therapie Der Gegenwart = Ther Gegenwart Therapie Der Gegenwart = Ther. Gegenwart Therapie der Gegenwart = Ther Ggw Therapie der Gegenwart = Ther. Ggw. Therapie Familiale = Ther Fam Therapie Familiale = Ther. Fam. Therapie=Therapie;; Therapie = Therapie Therapiewoche = Therapiewoche Therapy-resistant Schizophrenia = Adv Biol Psych-karg Therapy-resistant Schizophrenia = Adv. Biol. Psych-karg. Theravada Buddhism and The British Encounter: Religious, Missionary and Colonial Experience in Nineteenth-century Sri Lanka = Routl Crit Stud Budd Theravada Buddhism and The British Encounter: Religious, Missionary and Colonial Experience in Nineteenth-century Sri Lanka = Routl. Crit. Stud. Budd. Theravada Buddhism: A Social History From Ancient Benares to Modern Colombo, Second Edition = Libr Relig Beliefs P Theravada Buddhism: A Social History From Ancient Benares to Modern Colombo, Second Edition = Libr. Relig. Beliefs. P. The Reader's digest = Read Dig The Record of the Association of the Bar of the City of New York = Rec Assoc Bar City New York The Reformed journal = Reform J The Regan report on nursing law = Regan Rep Nurs Law The Register of the Kentucky Historical Society = Regist Ky Hist Soc The regulatory affairs journal = Regul Aff J The Research Bulletin of the Faculty of Education = Res. Bull. Fac. Ed. Oita Univ. The Responsive community : rights and responsibilities = Responsive Community The Review of Black political economy = Rev Black Polit Econ The review of diabetic studies : RDS = Rev Diabet Stud The review of economics and statistics = Rev Econ Stat The Review of economic studies = Rev Econ Stud The Review of gastroenterology = Rev Gastroenterol The Review of metaphysics = Rev Metaphys The Review of politics = Rev Polit The Review of radical political economics = Rev Radic Polit Econ The Review of regional studies = Rev Reg Stud The Review of scientific instruments = Rev Sci Instrum The review of the Polish Academy of Sciences. Polska Akademia Nauk = Rev Pol Acad Sci The Rhodesian nurse = Rhod Nurse The Rhodesia nurse = Rhod Nurse Theriaca = Theriaca Theriogenology = Theriogenology Thermal and Electrical Conductivity of Polymer Materials = Adv Polym Sci Thermal and Electrical Conductivity of Polymer Materials = Adv. Polym. Sci. Thermal and Ionization Aspects of Flows From Hot Stars: Observations and Theory = Astr Soc P Thermal and Ionization Aspects of Flows From Hot Stars: Observations and Theory = Astr. Soc. P. Thermal and Mechanical Test Methods and Behavior of Continuous-fiber Ceramic Composites = Am Soc Test Mater Thermal and Mechanical Test Methods and Behavior of Continuous-fiber Ceramic Composites = Am. Soc. Test Mater. Thermal and Optical Interactions With Biological and Related Composite Materials = P Soc Photo-opt Ins Thermal and Optical Interactions With Biological and Related Composite Materials = P. Soc. Photo-opt. Ins. Thermal and Thermodynamic Stability of Nanomaterials = Mater Sci Forum Thermal and Thermodynamic Stability of Nanomaterials = Mater. Sci. Forum. Thermal Barrier Coatings = Woodhead Publ Mater Thermal Barrier Coatings = Woodhead. Publ. Mater. Thermal Conductivity 25: Thermal Expansion 13 = Therm Cond Thermal Conductivity 25: Thermal Expansion 13 = Therm. Cond. Thermal Conductivity 26: Thermal Expansion 14 = Therm Cond Thermal Conductivity 26: Thermal Expansion 14 = Therm. Cond. Thermal Conductivity 27: Thermal Expansion 15 = Therm Cond Thermal Conductivity 27: Thermal Expansion 15 = Therm. Cond. Thermal Conductivity 28: Thermal Expansion 16 = Therm Cond Thermal Conductivity 28: Thermal Expansion 16 = Therm. Cond. Thermal Conductivity 30:thermal Expansion 18 = Therm Cond Thermal Conductivity 30:thermal Expansion 18 = Therm. Cond. Thermal Conductivity = Therm Cond Thermal Conductivity = Therm. Cond. Thermal Design and Thermal Behaviour of Radio Telescopes and Their Enclosures = Astrophys Space Sc L Thermal Design and Thermal Behaviour of Radio Telescopes and Their Enclosures = Astrophys. Space. Sc. L. Thermal Emission Spectroscopy and Analysis of Dust, Disks, and Regoliths = Astr Soc P Thermal Emission Spectroscopy and Analysis of Dust, Disks, and Regoliths = Astr. Soc. P. Thermal Energy Storage for Sustainable Energy Consumption: Fundamentals, Case Studies and Design = Nato Sci Ser Ii-math Thermal Energy Storage for Sustainable Energy Consumption: Fundamentals, Case Studies and Design = Nato. Sci. Ser. Ii-math. Thermal Engineering in Power Systems = Int Ser Dev Heat Tra Thermal Engineering in Power Systems = Int. Ser. Dev. Heat. Tra. Thermal Engineering Research Developments = Mech Eng Theor Appl Thermal Engineering Research Developments = Mech. Eng. Theor. Appl. Thermal Engineering = Therm Eng+ Thermal Engineering = Therm. Eng. Thermal Engineering = Therm. Eng+.+ Thermal Field Theories = N-holland D Thermal Field Theories = N-holland. D. Thermally Generated Flavors = Acs Sym Ser Thermally Generated Flavors = Acs. Sym. Ser. Thermal Measurements: The Foundation of Fire Standards = Am Soc Test Mater Thermal Measurements: The Foundation of Fire Standards = Am. Soc. Test. Mater. Thermal Nanosystems and Nanomaterials = Top Appl Phys Thermal Nanosystems and Nanomaterials = Top. Appl. Phys. Thermal Nonequilibrium Phenomena in Fluid Mixtures = Lect Notes Phys Thermal Nonequilibrium Phenomena in Fluid Mixtures = Lect. Notes. Phys. Thermal Performance of The Exterior Envelopes of Buildings Vii, Conference Proceedings = Ashrae Spec Thermal Performance of The Exterior Envelopes of Buildings Vii, Conference Proceedings = Ashrae. Spec. Thermal Physiology 1989 = Int Congr Ser Thermal Physiology 1989 = Int. Congr. Ser. Thermal Processing of Packaged Foods, Second Edition = Food Eng Ser Thermal Processing of Packaged Foods, Second Edition = Food. Eng. Ser. Thermal Science = Therm Sci Thermal Science = Therm. Sci. Thermal Shock and Thermal Fatigue Behavior of Advanced Ceramics = Nato Adv Sci Inst Se Thermal Shock and Thermal Fatigue Behavior of Advanced Ceramics = Nato. Adv. Sci. Inst. Se. Thermal Solid Waste Utilisation in Regular Industrial Facilities = Envir Sci R Thermal Solid Waste Utilisation in Regular Industrial Facilities = Envir. Sci. R. Thermal Stresses - Advanced Theory and Applications = Solid Mech Appl Thermal Stresses - Advanced Theory and Applications = Solid. Mech. Appl. Thermal Structures and Materials for High-speed Flight = Progr Astronaut Aero Thermal Structures and Materials for High-speed Flight = Progr. Astronaut. Aero. Thermal Therapy, Laser Welding, and Tissue Interaction, Proceedings = P Soc Photo-opt Ins Thermal Therapy, Laser Welding, and Tissue Interaction, Proceedings = P. Soc. Photo-opt. Ins. Thermal Transport for Applications in Micro/nanomachining = Microtechnol Mems Thermal Transport for Applications in Micro/nanomachining = Microtechnol. Mems. Thermal Treatment of Tissue: Energy Delivery and Assessment Iii = Lect Notes Comput Sc Thermal Treatment of Tissue: Energy Delivery and Assessment Iii = Lect. Notes. Comput. Sc. Thermal Treatment of Tissue: Energy Delivery and Assessment Ii = Proc Spie Thermal Treatment of Tissue: Energy Delivery and Assessment Ii = Proc. Spie. Thermal Treatment of Tissue: Energy Delivery and Assessment Ii = P Soc Photo-opt Ins Thermal Treatment of Tissue: Energy Delivery and Assessment Ii = P. Soc. Photo-opt. Ins. Thermal Treatment of Tissue: Energy Delivery and Assessment Iv = Proc Spie Thermal Treatment of Tissue: Energy Delivery and Assessment Iv = Proc. Spie. Thermal Treatment of Tissue: Energy Delivery and Assessment Iv = P Soc Photo-opt Ins Thermal Treatment of Tissue: Energy Delivery and Assessment Iv = P. Soc. Photo-opt. Ins. Thermal Treatment of Tissue: Energy Delivery and Assessment = P Soc Photo-opt Ins Thermal Treatment of Tissue: Energy Delivery and Assessment = P. Soc. Photo-opt. Ins. Thermal Treatment of Tissue With Image Guidance, Proceedings Of = P Soc Photo-opt Ins Thermal Treatment of Tissue With Image Guidance, Proceedings Of = P. Soc. Photo-opt. Ins. Thermal Turbomachinery: Turbocompressors in Industrial Use = Vdi Bericht Thermal Turbomachinery: Turbocompressors in Industrial Use = Vdi. Bericht. Thermal Use of Solid Biomasses = Vdi Bericht Thermal Use of Solid Biomasses = Vdi. Bericht. Thermec'2003, Pts 1-5 = Mater Sci Forum Thermec'2003, Pts 1-5 = Mater. Sci. Forum. Thermec 2006, Pts 1-5 = Mater Sci Forum Thermec 2006, Pts 1-5 = Mater. Sci. Forum. Thermec 2006 Supplement = Adv Mater Res-switz Thermec 2006 Supplement = Adv. Mater. Res-switz. Thermec 2009, Pts 1-4 = Mater Sci Forum Thermec 2009, Pts 1-4 = Mater. Sci. Forum. Thermocapillary Convection in Models of Crystal Growth = Springer Tr Mod Phys Thermocapillary Convection in Models of Crystal Growth = Springer. Tr. Mod. Phys. Thermochemical Conversion of Biomass to Liquid Fuels and Chemicals = Rsc Energy Environ S Thermochemical Conversion of Biomass to Liquid Fuels and Chemicals = Rsc. Energy. Environ. S. Thermochimica Acta = Thermochim Acta Thermochimica Acta = Thermochim. Acta Thermochronological Methods: From Palaeotemperature Constraints to Landscape Evolution Models = Geol Soc Spec Publ Thermochronological Methods: From Palaeotemperature Constraints to Landscape Evolution Models = Geol. Soc. Spec. Publ. Thermodynamic Machinery of Life = Front Collect Thermodynamic Machinery of Life = Front. Collect. Thermodynamics: A Dynamical Systems Approach = Princ Ser Appl Math Thermodynamics: A Dynamical Systems Approach = Princ. Ser. Appl. Math. Thermodynamics and Fluctuations Far From Equilibrium = Springer Ser Chem Ph Thermodynamics and Fluctuations Far From Equilibrium = Springer. Ser. Chem. Ph. Thermodynamics and Kinetics of Phase Transformations = Mater Res Soc Symp P Thermodynamics and Kinetics of Phase Transformations = Mater. Res. Soc. Symp. P. Thermodynamics and Kinetics of Water-rock Interaction = Rev Mineral Geochem Thermodynamics and Kinetics of Water-rock Interaction = Rev. Mineral. Geochem. Thermodynamics and Kinetic Theory = S Adv Math Thermodynamics and Kinetic Theory = S. Adv. Math. Thermodynamics, Gibbs Method and Statistical Physics of Electron Gases = Springer Ser Atom Op Thermodynamics, Gibbs Method and Statistical Physics of Electron Gases = Springer. Ser. Atom. Op. Thermodynamics, Microstructures and Plasticity = Nato Sci Ser Ii-math Thermodynamics, Microstructures and Plasticity = Nato. Sci. Ser. Ii-math. Thermodynamics, Microstructures and Plasticity = Nato Sci Ser Ii Math Thermodynamics, Microstructures and Plasticity = Nato. Sci. Ser. Ii. Math. Thermodynamics of The Glassy State = Condens Matt Phy-crc Thermodynamics of The Glassy State = Condens. Matt. Phy-crc. Thermoelectric Materials 1998 - The Next Generation Materials for Small-scale Refrigeration and Power Generation Applications = Mater Res Soc Symp P Thermoelectric Materials 1998 - The Next Generation Materials for Small-scale Refrigeration and Power Generation Applications = Mater. Res. Soc. Symp. P. Thermoelectric Materials 2001-research and Applications = Mater Res Soc Symp P Thermoelectric Materials 2001-research and Applications = Mater. Res. Soc. Symp. P. Thermoelectric Materials 2003-research and Applications = Mater Res Soc Symp P Thermoelectric Materials 2003-research and Applications = Mater. Res. Soc. Symp. P. Thermoelectric Materials - New Directions and Approaches = Mater Res Soc Symp P Thermoelectric Materials - New Directions and Approaches = Mater. Res. Soc. Symp. P. Thermoelectric Power Generation = Mater Res Soc Symp P Thermoelectric Power Generation = Mater. Res. Soc. Symp. P. Thermoelectric Power in Nanostructured Materials: Strong Magnetic Fields = Springer Ser Mater S Thermoelectric Power in Nanostructured Materials: Strong Magnetic Fields = Springer. Ser. Mater. S. Thermo-mechanical Fatigue Behavior of Materials, 3rd Vol = Am Soc Test Mater Thermo-mechanical Fatigue Behavior of Materials, 3rd Vol = Am. Soc. Test. Mater. Thermomechanical Fatigue Behavior of Materials: 4th Volume = Am Soc Test Mater Thermomechanical Fatigue Behavior of Materials: 4th Volume = Am. Soc. Test. Mater. Thermomechanics of Viscoplasticity: Fundamentals and Applications = Adv Mech Math Thermomechanics of Viscoplasticity: Fundamentals and Applications = Adv. Mech. Math. Thermonuclear Supernovae = Nato Adv Sci I C-mat Thermonuclear Supernovae = Nato. Adv. Sci. I. C-mat. Thermophotovoltaic Generation of Electricity = Aip Conf Proc Thermophotovoltaic Generation of Electricity = Aip. Conf. Proc. Thermophotovoltaics: Basic Principles and Critical Aspects of System Design = Green Energy Technol Thermophotovoltaics: Basic Principles and Critical Aspects of System Design = Green. Energy. Technol. Thermophysical Properties of Materials and Devices = Aip Conf Proc Thermophysical Properties of Materials and Devices = Aip. Conf. Proc. Thermophysics and Aeromechanics = Thermophys Aeromech+ Thermophysics and Aeromechanics = Thermophys. Aeromech. Thermophysics and Aeromechanics = Thermophys. Aeromech+.+ Thermoregulation = Ann Ny Acad Sci Thermoregulation = Ann. Ny. Acad. Sci. Thermoregulation : The Pathophysiological Basis of Clinical Disorders = Symp Pharma Thermoregulation : The Pathophysiological Basis of Clinical Disorders = Symp. Pharma. Thermoreversible Networks = Adv Polym Sci Thermoreversible Networks = Adv. Polym. Sci. Thermosense: Thermal Infrared Applications Xxxiii = Proc Spie Thermosense: Thermal Infrared Applications Xxxiii = Proc. Spie. Thermosense: Thermal Infrared Applications Xxxiii = P Soc Photo-opt Ins Thermosense: Thermal Infrared Applications Xxxiii = P. Soc. Photo-opt. Ins. Thermosense Xiii = P Soc Photo-opt Ins Thermosense Xiii = P. Soc. Photo-opt. Ins. Thermosense Xiv : An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P Soc Photo-opt Ins Thermosense Xiv : An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P. Soc. Photo-opt. Ins. Thermosense Xix: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P Soc Photo-opt Ins Thermosense Xix: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P. Soc. Photo-opt. Ins. Thermosense Xvi: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P Soc Photo-opt Ins Thermosense Xvi: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P. Soc. Photo-opt. Ins. Thermosense Xvii: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P Soc Photo-opt Ins Thermosense Xvii: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P. Soc. Photo-opt. Ins. Thermosense Xviii: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P Soc Photo-opt Ins Thermosense Xviii: An International Conference On Thermal Sensing and Imaging Diagnostic Applications = P. Soc. Photo-opt. Ins. Thermosense Xv = P Soc Photo-opt Ins Thermosense Xv = P. Soc. Photo-opt. Ins. Thermosense Xxiii = P Soc Photo-opt Ins Thermosense Xxiii = P. Soc. Photo-opt. Ins. Thermosense Xxii = Proc Spie Thermosense Xxii = Proc. Spie. Thermosense Xxii = P Soc Photo-opt Ins Thermosense Xxii = P. Soc. Photo-opt. Ins. Thermosense Xxi = P Soc Photo-opt Ins Thermosense Xxi = P. Soc. Photo-opt. Ins. Thermosense Xxiv = P Soc Photo-opt Ins Thermosense Xxiv = P. Soc. Photo-opt. Ins. Thermosense Xxix = Proc Spie Thermosense Xxix = Proc. Spie. Thermosense Xxix = P Soc Photo-opt Ins Thermosense Xxix = P. Soc. Photo-opt. Ins. Thermosense Xx = P Soc Photo-opt Ins Thermosense Xx = P. Soc. Photo-opt. Ins. Thermosense Xxviii = Proc Spie Thermosense Xxviii = Proc. Spie. Thermosense Xxviii = P Soc Photo-opt Ins Thermosense Xxviii = P. Soc. Photo-opt. Ins. Thermosense Xxvii = Proc Spie Thermosense Xxvii = Proc. Spie. Thermosense Xxvii = P Soc Photo-opt Ins Thermosense Xxvii = P. Soc. Photo-opt. Ins. Thermosense Xxvi = Proc Spie Thermosense Xxvi = Proc. Spie. Thermosense Xxvi = P Soc Photo-opt Ins Thermosense Xxvi = P. Soc. Photo-opt. Ins. Thermosense Xxv = P Soc Photo-opt Ins Thermosense Xxv = P. Soc. Photo-opt. Ins. Thermosense Xxxii = P Soc Photo-opt Ins Thermosense Xxxii = P. Soc. Photo-opt. Ins. Thermosense Xxx = Proc Spie Thermosense Xxx = Proc. Spie. Thermosense Xxx = P Soc Photo-opt Ins Thermosense Xxx = P. Soc. Photo-opt. Ins. Thermosphere-ionosphere-middle Atmosphere Coupling and Dynamics = Adv Space Res Thermosphere-ionosphere-middle Atmosphere Coupling and Dynamics = Adv. Space. Res. Thermosphere-ionosphere-middle Atmosphere Coupling and Dynamics = Adv Space Res-series Thermosphere-ionosphere-middle Atmosphere Coupling and Dynamics = Adv. Space. Res-series. Thermospheric-ionospheric-geospheric (tiger) Symposium = Adv Space Res Thermospheric-ionospheric-geospheric (tiger) Symposium = Adv. Space. Res. The Rocky Mountain Journal of Mathematics = Rocky Mountain J. Math. The Rocky Mountain social science journal = Rocky Mt Soc Sci J The Rostrum = Rostrum The Round table = Round Table The Royal Canadian Dental Corps quarterly = R Can Dent Corps Q The Royal Institute of Public Health and Hygiene journal = R Inst Public Health Hyg J The Royal Society of London = R. Soc. Lond. Philos. Trans. Ser. A Math. Phys. Eng. Sci. The Royal Society of London = R. Soc. Lond. Proc. Ser. A Math. Phys. Eng. Sci. The Royal Statistical Society Series C-applied Statistics = Roy Stat Soc C-app The Royal Statistical Society Series C-applied Statistics = Roy. Stat. Soc. C-app. The Russian review = Russ Rev The Ryan advisory for health services governing boards = Ryan Advis Health Serv Gov Boards The San Diego law review = San Diego Law Rev Thesaurus Cultus et Rituum Antiquorum = ThesCRA The Scandinavian economic history review / [the Scandanavian Society for Economic and Social History and Historical Geography] = Scand Econ Hist Rev The Scandinavian journal of economics = Scand J Econ The School counselor = Sch Couns The School psychology digest = Sch Psychol Dig The School science review = Sch Sci Rev The Science of the total environment = Sci Total Environ The Science Reports of the Kanazawa University = Sci. Rep. Kanazawa Univ. The science reports of the research institutes, Tohoku University. Ser. C, Medicine. Tohoku Daigaku = Sci Rep Res Inst Tohoku Univ [Med] The Science reports of the Tohoku University. Seventh series: (Geography) Tohoku Daigaku = Sci Rep Tohoku Univ Ser 7 The Sciences = Sciences (New York) The Scientific basis of medicine annual reviews = Sci Basis Med Annu Rev TheScientificWorldJournal = ScientificWorldJournal Thescientificworldjournal = Thescientificworldjo Thescientificworldjournal = Thescientificworldjo. The Scottish historical review = Scott Hist Rev The Scottish journal of criminal justice studies : the journal of the Scottish Association for the Study of Delinquency = Scott J Crim Justice Stud The Scottish journal of sociology = Scott J Sociol The second century: a journal of early Christian studies = SCent The Seoul journal of medicine = Seoul J Med The Serials librarian = Ser Libr The Seventeenth century = Seventeenth Century The Sharpest Cut: The Impact of Manfred Padberg and His Work = Mos-siam Ser Optim The Sharpest Cut: The Impact of Manfred Padberg and His Work = Mos-siam. Ser. Optim. The Sharpest Cut: The Impact of Manfred Padberg and His Work = Mps-siam Ser Optimiz The Sharpest Cut: The Impact of Manfred Padberg and His Work = Mps-siam. Ser. Optimiz. The Sightsaving review : official publication of the National Society for the Prevention of Blindness = Sightsav Rev The Sight-saving review = Sight Sav Rev The Singapore family physician = Singapore Fam Physician The Singapore public health bulletin = Singapore Public Health Bull The Sixteenth century journal = Sixt Century J The Social and rehabilitation record = Soc Rehabil Rec The Social science journal = Soc Sci J The Social service review = Soc Serv Rev The Social worker = Soc Work The Society for Nursing History gazette = Soc Nurs Hist Gaz The Society for the Social History of Medicine bulletin = Soc Soc Hist Med Bull (Lond) The Society of Malawi journal. Society of Malawi (Historical and Scientific) = Soc Malawi J The Sociological quarterly = Sociol Q The Sociological review = Sociol Rev The South African geographical journal, being a record of the proceedings of the South African Geographical Society = S Afr Geogr J The South African journal of African affairs = S Afr J Afr Aff The South African journal of communication disorders. Die Suid-Afrikaanse tydskrif vir Kommunikasieafwykings = S Afr J Commun Disord The South African journal of economic history : [journal of the Economic History Society of Southern Africa] = S Afr J Econ Hist The South African journal of economics. Suid-afrikaanse tydskrif vir ekonomie = S Afr J Econ The South African journal of medical sciences = S Afr J Med Sci The South Atlantic quarterly = South Atl Q The South Carolina nurse / South Carolina Nurses' Association = S C Nurse The South Dakota journal of medicine and pharmacy = SD J Med Pharm The South Dakota nurse = S D Nurse The Southeast Asian journal of tropical medicine and public health = Southeast Asian J Trop Med Public Health The Southern journal of educational research = South J Educ Res The Southern journal of philosophy = South J Philos The Southern medical journal = South Med J The Southwestern historical quarterly = Southwest Hist Q The Southwestern journal of philosophy = Southwest J Philos The Soviet journal of developmental biology = Sov J Dev Biol The Soviet journal of ecology = Sov J Ecol The Soviet review = Sov Rev The Spanish journal of psychology = Span J Psychol The spine journal : official journal of the North American Spine Society = Spine J The Springfielder = Springfielder The state of Black America. National Urban League = State Black Am The state of health care in America = State Health Care Am The Statistician : journal of the Institute of Statisticians = Statistician The St. Luke's Hospital gazette = St Lukes Hosp Gaz (Guardamangia) The Studia Philonica Annual: studies in Hellenistic Judaism = StudPhilon The Subject and The Story = Bibl C Muratori The Subject and The Story = Bibl. C. Muratori. The Subnuclear Series = Subnucl. Ser. The Summary = Summ Shute Inst The Sunday times magazine = Sunday Times Magazine The Supreme Court review = Supreme Court Rev The surgeon : journal of the Royal Colleges of Surgeons of Edinburgh and Ireland = Surgeon The Surgeon's circular letter. United States. Army. Far East Command. Medical Section = Surg Circ Lett U S Army Far East Command Med Sect The Surgical clinics of North America = Surg Clin North Am The Surgical technologist = Surg Technol The Swedish-American historical quarterly / Swedish Pioneer Historical Society = Swed Am Hist Q The Swedish Cyprus Expedition = SCE The Swedish pioneer historical quarterly = Swed Pioneer Hist Q The Sydney law review = Syd Law Rev The symposium / The Society for Developmental Biology. Society for Developmental Biology. Symposium = Symp Soc Dev Biol Theta Theory = Stud Generat Gramm Theta Theory = Stud. Generat. Gramm. The Taylor & Francis Systems and Control Book Series = Taylor & Francis Syst. Control Book Ser. The Tensor Society = Tensor (N.S.) The Terrane Puzzle: New Perspectives On Paleontology and Stratigraphy From The North American Cordillera = Geol Soc Am Spec Pap The Terrane Puzzle: New Perspectives On Paleontology and Stratigraphy From The North American Cordillera = Geol. Soc. Am. Spec. Pap. The Texas Journal of Science = Texas J. Sci. The Texas journal of science = Tex J Sci The Thomist = Thomist The Thoracic and cardiovascular surgeon = Thorac Cardiovasc Surg The Times Literary Supplement = TLS The Tohoku journal of experimental medicine = Tohoku J Exp Med The Tōhoku Mathematical Journal = Tōhoku Math. J. (2) The Tokai journal of experimental and clinical medicine = Tokai J Exp Clin Med The Tokushima journal of experimental medicine = Tokushima J Exp Med The Torah u-madda journal = Torah U Madda J The Town planning review = Town Plan Rev The Toxicologist : an official publication of the Society of Toxicology = Toxicologist The Trained nurse and hospital review = Trained Nurse Hosp Rev The Training school bulletin = Train Sch Bull (Vinel) The Transactions of the Association of Industrial Medical Officers = Trans Assoc Ind Med Off The Transactions of the Hunterian Society = Trans Hunter Soc The Transactions of the Society of Occupational Medicine = Trans Soc Occup Med The Turkish journal of gastroenterology : the official journal of Turkish Society of Gastroenterology = Turk J Gastroenterol The Turkish journal of pediatrics = Turk J Pediatr The Turnbull Library record = Turnbull Libr Rec The Ukrainian quarterly = Ukr Q The Ulster medical journal = Ulster Med J The UMAP Journal = UMAP J. The Undergraduate journal of philosophy = Undergrad J Philos The Unesco courier = UNESCO Cour The University of Chicago law review. University of Chicago. Law School = Univ Chic Law Rev The University of Chicago legal forum = Univ Chic Leg Forum The University of Illinois law forum = Univ Ill Law Forum The University of Maryland law forum = Univ Md Law Forum The University of Memphis law review = Univ Memphis Law Rev The University of New South Wales law journal = Univ N S W Law J The University of Queensland law journal = Univ Qld Law J The University of Tokyo = J. Math. Sci. Univ. Tokyo The University of Toronto law journal = Univ Tor Law J The University Series in Mathematics = Univ. Ser. Math. The Urban League review. National Urban League. Research Dept = Urban Leag Rev The Urban review = Urban Rev The Urban & social change review = Urban Soc Change Review Theurgisches Denken: Zur Kirchlichen Hierarchie Des Dionysius Areopagita = Transform Antike Theurgisches Denken: Zur Kirchlichen Hierarchie Des Dionysius Areopagita = Transform. Antike. The Urologic and cutaneous review = Urol Cutaneous Rev The Urologic clinics of North America = Urol Clin North Am The Utne reader = Utne Read The Uttar Pradesh State dental journal : an official publication of the State U.P. Dental Branch of the Indian Dental Association = Uttar Pradesh State Dent J The Value Chain of Foreign Aid = Contrib Econ The Value Chain of Foreign Aid = Contrib. Econ. The Veterinarian = Veterinarian The Veterinary bulletin = Vet Bull The Veterinary clinics of North America. Equine practice = Vet Clin North Am Equine Pract The veterinary clinics of North America. Exotic animal practice = Vet Clin North Am Exot Anim Pract The Veterinary clinics of North America. Food animal practice = Vet Clin North Am Food Anim Pract The Veterinary clinics of North America. Large animal practice = Vet Clin North Am Large Anim Pract The Veterinary clinics of North America. Small animal practice = Vet Clin North Am Small Anim Pract The Veterinary clinics of North America = Vet Clin North Am The Veterinary quarterly = Vet Q The Veterinary record = Vet Rec The Victorian historical journal = Vic Hist J The Victorian historical magazine = Vic Hist Mag The Victorian newsletter = Vic Newsl The Vikram Mathematical Journal = Vikram Math. J. The Virginia explorer = Va Explor The Virginia magazine of history and biography = Va Mag Hist Biogr The Virginia quarterly review = Va Q Rev The Virtual Battlefield: Perspectives On Cyber Warfare = Cryp Info Sec The Virtual Battlefield: Perspectives On Cyber Warfare = Cryp. Info. Sec. The Virtual Battlefield: Perspectives On Cyber Warfare = Cryptol Inf Sec Ser The Virtual Battlefield: Perspectives On Cyber Warfare = Cryptol. Inf. Sec. Ser. The Virtual Laboratory = Virtual Lab. The virtual mentor : VM = Virtual Mentor The Volta review = Volta Rev The Volunteer leader = Volunt Leader The Walters Art Gallery Bulletin = BWaltersArtGal The Washingtonian = Washingtonian The Washington monthly = Wash Mon The Washington nurse = Wash Nurse The Washington quarterly = Wash Q The Weather vane = Weather Vane The weekly law reports = Wkly Law Rep The Welsh history review. Cylchgrawn hanes cymru = Welsh Hist Rev The West African medical journal and Nigerian medical & dental practitioner = West Afr Med J Niger Med Dent Pract The West African medical journal and Nigerian practitioner = West Afr Med J Niger Pract The West African medical journal = West Afr Med J The Western Canadian journal of anthropology = West Can J Anthropol The Western historical quarterly = West Hist Q The Western humanities review = West Hum Rev The Western journal of black studies = West J Black Stud The Western journal of medicine = West J Med The Western Pennsylvania historical magazine = West Pa Hist Mag The Western political quarterly = West Polit Q The West Indian medical journal = West Indian Med J The West Tennessee Historical Society papers. West Tennessee Historical Society = West Tenn Hist Soc Pap The West Texas Historical Association year book. West Texas Historical Association = West Tex Hist Asso Year B The West Virginia medical journal = W V Med J The William and Mary Bill of Rights journal : a student publication of the Marshall-Wythe School of Law = William Mary Bill Rights J The William and Mary quarterly = William Mary Q The Wilson quarterly = Wilson Q The Wisconsin bar bulletin = Wis Bar Bull The Wisconsin sociologist = Wisc Sociol The Wistar Institute symposium monograph = Wistar Inst Symp Monogr The Woman physician = Woman Physician The Women's annual = Womens Annu The women's health data book : a profile of women's health in the United States / [Jacob's Institute of Women's Health] = Womens Health Data Book The Women's watch / International Women's Right Action Watch = Womens Watch The World Bank economic review = World Bank Econ Rev The World Bank research observer = World Bank Res Obs The world journal of biological psychiatry : the official journal of the World Federation of Societies of Biological Psychiatry = World J Biol Psychiatry The World today = World Today The Xi Psi Phi quarterly = Xi Psi Phi Q The X-ray technician = Xray Tech The Yale journal of biology and medicine = Yale J Biol Med The Yale Journal of Criticism = YJC The Yale law journal = Yale Law J The Yale University library gazette. Yale University. Library = Yale Univ Libr Gaz ## They are the JRC abbrev. The Year in immunology = Year Immunol The Zambia nurse journal = Zambia Nurse J The Zambia nurse = Zambia Nurse The Zimbabwe journal of economics = Zimb J Econ The Zimbabwe nurse = Zimbabwe Nurse Thiamine Deficiency and Associated Clinical Disorders = Contemp Clin Neurosc Thiamine Deficiency and Associated Clinical Disorders = Contemp. Clin. Neurosc. Thin-film Coatings for Optical Applications Iv = P Soc Photo-opt Ins Thin-film Coatings for Optical Applications Iv = P. Soc. Photo-opt. Ins. Thin-film Compound Semiconductor Photovoltaics - 2007 = Mater Res Soc Symp P Thin-film Compound Semiconductor Photovoltaics - 2007 = Mater. Res. Soc. Symp. P. Thin-film Compound Semiconductor Photovoltaics = Mater Res Soc Symp P Thin-film Compound Semiconductor Photovoltaics = Mater. Res. Soc. Symp. P. Thin-film Compound Semiconductor Voltaics-2009 = Mater Res Soc Symp P Thin-film Compound Semiconductor Voltaics-2009 = Mater. Res. Soc. Symp. P. Thin-film Diamond Ii = Semiconduct Semimet Thin-film Diamond Ii = Semiconduct. Semimet. Thin-film Diamond I = Semiconduct Semimet Thin-film Diamond I = Semiconduct. Semimet. Thin Film Materials, Processes, and Reliability = Elec Soc S Thin Film Materials, Processes, and Reliability = Elec. Soc. S. Thin-film Optical Filters, Fourth Edition = Ser Opt Optoelectron Thin-film Optical Filters, Fourth Edition = Ser. Opt. Optoelectron. Thin Film Physics and Applications, Sixth International Conference = Proc Spie Thin Film Physics and Applications, Sixth International Conference = Proc. Spie. Thin Film Physics and Applications, Sixth International Conference = P Soc Photo-opt Ins Thin Film Physics and Applications, Sixth International Conference = P. Soc. Photo-opt. Ins. Thin Films and Porous Materials = Mater Sci Forum Thin Films and Porous Materials = Mater. Sci. Forum. Thin Films and Surfaces for Bioactivity and Biomedical Applications = Mater Res Soc Symp P Thin Films and Surfaces for Bioactivity and Biomedical Applications = Mater. Res. Soc. Symp. P. Thin Films Epitaxial Growth and Nanostructures = Eur Mat Res Thin Films Epitaxial Growth and Nanostructures = Eur. Mat. Res. Thin Films for Integrated Optics Applications = Mater Res Soc Symp P Thin Films for Integrated Optics Applications = Mater. Res. Soc. Symp. P. Thin Films for Optical Systems = P Soc Photo-opt Ins Thin Films for Optical Systems = P. Soc. Photo-opt. Ins. Thin Films for Optical Waveguide Devices and Materials for Optical Limiting = Mater Res Soc Symp P Thin Films for Optical Waveguide Devices and Materials for Optical Limiting = Mater. Res. Soc. Symp. P. Thin Films for Photovoltaic and Related Device Applications = Mater Res Soc Symp P Thin Films for Photovoltaic and Related Device Applications = Mater. Res. Soc. Symp. P. Thin Films in Optics = P Soc Photo-opt Ins Thin Films in Optics = P. Soc. Photo-opt. Ins. Thin Films in Tribology = Tribology S Thin Films in Tribology = Tribology S. Thin Films of Soft Matter = Cism Cour L Thin Films of Soft Matter = Cism. Cour. L. Thin Film Solar Technology Ii = P Soc Photo-opt Ins Thin Film Solar Technology Ii = P. Soc. Photo-opt. Ins. Thin Films : Stress and Mechanical Properties Iii = Mater Res Soc Symp P Thin Films : Stress and Mechanical Properties Iii = Mater. Res. Soc. Symp. P. Thin Films : Stresses and Mechanical Properties Ii = Mater Res Soc Symp P Thin Films : Stresses and Mechanical Properties Ii = Mater. Res. Soc. Symp. P. Thin Films: Stresses and Mechanical Properties Iv = Mater Res Soc Symp P Thin Films: Stresses and Mechanical Properties Iv = Mater. Res. Soc. Symp. P. Thin Films: Stresses and Mechanical Properties Ix = Mater Res Soc Symp P Thin Films: Stresses and Mechanical Properties Ix = Mater. Res. Soc. Symp. P. Thin Films-stresses and Mechanical Properties Viii = Mater Res Soc Symp P Thin Films-stresses and Mechanical Properties Viii = Mater. Res. Soc. Symp. P. Thin-films - Stresses and Mechanical Properties Vii = Mater Res Soc Symp P Thin-films - Stresses and Mechanical Properties Vii = Mater. Res. Soc. Symp. P. Thin Films: Stresses and Mechanical Properties Vi = Mater Res Soc Symp P Thin Films: Stresses and Mechanical Properties Vi = Mater. Res. Soc. Symp. P. Thin Films: Stresses and Mechanical Properties V = Mater Res Soc Symp P Thin Films: Stresses and Mechanical Properties V = Mater. Res. Soc. Symp. P. Thin Films Stresses and Mechanical Properties Xi = Mater Res Soc Symp P Thin Films Stresses and Mechanical Properties Xi = Mater. Res. Soc. Symp. P. Thin Films-stresses and Mechanical Properties X = Mater Res Soc Symp P Thin Films-stresses and Mechanical Properties X = Mater. Res. Soc. Symp. P. Thin Films - Structure and Morphology = Mater Res Soc Symp P Thin Films - Structure and Morphology = Mater. Res. Soc. Symp. P. Thin Films = Thin Films Thin Film Structures and Phase Stability = Mater Res Soc Symp P Thin Film Structures and Phase Stability = Mater. Res. Soc. Symp. P. Thin-film Structures for Photovoltaics = Mater Res Soc Symp P Thin-film Structures for Photovoltaics = Mater. Res. Soc. Symp. P. Thin Film Transistor Technologies Vi, Proceedings = Elec Soc S Thin Film Transistor Technologies Vi, Proceedings = Elec. Soc. S. Thinkers for Architects = Think Archit Thinkers for Architects = Think. Archit. Thinking About Police Resources = Res Rep Cent Crimin Thinking About Police Resources = Res. Rep. Cent. Crimin. Thinking and Learning About Mathematics in The Early Years = Nurs World Routledge Thinking and Learning About Mathematics in The Early Years = Nurs. World. Routledge. Thinking Identities: Ethnicity, Racism and Culture = Expl Sociol Thinking Identities: Ethnicity, Racism and Culture = Expl. Sociol. Thinking in Action = Think Action Thinking in Action = Think. Action Thinking of Others: On The Talent for Metaphor = Princ Monogr Philos Thinking of Others: On The Talent for Metaphor = Princ. Monogr. Philos. Thinking & Reasoning = Think Reasoning Thinking & Reasoning = Think. Reasoning Thinking Skills and Creativity = Think Skills Creat Thinking Skills and Creativity = Think. Skills Creat. Thinking Through Material Culture: An Interdisciplinary Perspective = Archaeol Cult Soc Thinking Through Material Culture: An Interdisciplinary Perspective = Archaeol. Cult. Soc. Think Tanks and Policy Advice in The Us: Academics, Advisors and Advocates = Routl Res Am Polit Think Tanks and Policy Advice in The Us: Academics, Advisors and Advocates = Routl. Res. Am. Polit. Thin-layer Chromatography: A Modern Practical Approach = Rsc Chromatogr Monog Thin-layer Chromatography: A Modern Practical Approach = Rsc. Chromatogr. Monog. Thin Layer Chromatography in Chiral Separations and Analysis = Chromatogr Sci Ser Thin Layer Chromatography in Chiral Separations and Analysis = Chromatogr. Sci. Ser. Thin Solid Films = Thin Solid Films Thin Walled Structures = Thin Walled Struct. Thin-walled Structures = Thin Wall Struct Thin-walled Structures = Thin. Wall. Struct. Third 21coe Symposium: Astrophysics As Interdisciplinary Science = J Phys Conf Ser Third 21coe Symposium: Astrophysics As Interdisciplinary Science = J. Phys. Conf. Ser. Third Advances in Solar Physics Euroconference: Magnetic Fields and Oscillations = Astr Soc P Third Advances in Solar Physics Euroconference: Magnetic Fields and Oscillations = Astr. Soc. P. Third Algerian Workshop On Astronomy and Astrophysics = Aip Conf Proc Third Algerian Workshop On Astronomy and Astrophysics = Aip. Conf. Proc. Third Annual Workshop On Space Operations Automation and Robotics ( Soar 89 ) = Nasa Conf P Third Annual Workshop On Space Operations Automation and Robotics ( Soar 89 ) = Nasa. Conf. P. Third Conference On Photonic Systems for Ecological Monitoring = P Soc Photo-opt Ins Third Conference On Photonic Systems for Ecological Monitoring = P. Soc. Photo-opt. Ins. Third Congress of Muslim Librarians and Information Scientists ( Comlis Iii ) = Librarian S Third Congress of Muslim Librarians and Information Scientists ( Comlis Iii ) = Librarian. S. Third Decennial Us-ussr Conference On Seti = Astr Soc P Third Decennial Us-ussr Conference On Seti = Astr. Soc. P. Third Ers Symposium On Space At The Service of Our Environment, Vol 1 = Esa Spec Publ Third Ers Symposium On Space At The Service of Our Environment, Vol 1 = Esa. Spec. Publ. Third Ers Symposium On Space At The Service of Our Environment, Vol 1 = Esa Sp Publ Third Ers Symposium On Space At The Service of Our Environment, Vol 1 = Esa. Sp. Publ. Third Ers Symposium On Space At The Service of Our Environment, Vols. Ii & Iii = Esa Sp Publ Third Ers Symposium On Space At The Service of Our Environment, Vols. Ii & Iii = Esa. Sp. Publ. Third European Conference On Turbomachinery - Vols A and B = Imeche Conf Trans Third European Conference On Turbomachinery - Vols A and B = Imeche. Conf. Trans. Third European Summer School On Experimental Nuclear Astrophysics = Eas Publications Third European Summer School On Experimental Nuclear Astrophysics = Eas. Publications. Third European Workshop On Optical Fibre Sensors = Proc Spie Third European Workshop On Optical Fibre Sensors = Proc. Spie. Third European Workshop On Optical Fibre Sensors = P Soc Photo-opt Ins Third European Workshop On Optical Fibre Sensors = P. Soc. Photo-opt. Ins. Third Forest Vegetation Simulator Conference = Us For Serv Rmrs-p Third Forest Vegetation Simulator Conference = Us. For. Serv. Rmrs-p. Third Gr-i International Conference On New Laser Technologies and Applications = P Soc Photo-opt Ins Third Gr-i International Conference On New Laser Technologies and Applications = P. Soc. Photo-opt. Ins. Third Ieee Conference On Telecommunications = Iee Conf Publ Third Ieee Conference On Telecommunications = Iee. Conf. Publ. Third Indochina War = Cold War Hist-routl Third Indochina War = Cold. War Hist-routl. Third International Cherry Symposium, Vols 1 and 2 = Acta Hortic Third International Cherry Symposium, Vols 1 and 2 = Acta. Hortic. Third International Conference On 3g Mobile Communication Technologies = Iee Conf Publ Third International Conference On 3g Mobile Communication Technologies = Iee. Conf. Publ. Third International Conference On Advanced A/d and D/a Conversion Techniques and Their Applications = Iee Conf Publ Third International Conference On Advanced A/d and D/a Conversion Techniques and Their Applications = Iee. Conf. Publ. Third International Conference On Artificial Neural Networks = Iee Conf Publ Third International Conference On Artificial Neural Networks = Iee. Conf. Publ. Third International Conference On Computers in Reciprocating Engines and Gas Turbines = Imeche Conf Trans Third International Conference On Computers in Reciprocating Engines and Gas Turbines = Imeche. Conf. Trans. Third International Conference On Digital Image Processing (icdip 2011) = Proc Spie Third International Conference On Digital Image Processing (icdip 2011) = Proc. Spie. Third International Conference On Experimental Mechanics and Third Conference of The Asian-committee-on-experimental-mechanics, Pts 1and 2 = Proc Spie Third International Conference On Experimental Mechanics and Third Conference of The Asian-committee-on-experimental-mechanics, Pts 1and 2 = Proc. Spie. Third International Conference On Experimental Mechanics and Third Conference of The Asian-committee-on-experimental-mechanics, Pts 1and 2 = P Soc Photo-opt Ins Third International Conference On Experimental Mechanics and Third Conference of The Asian-committee-on-experimental-mechanics, Pts 1and 2 = P. Soc. Photo-opt. Ins. Third International Conference On Experimental Mechanics = Proc Spie Third International Conference On Experimental Mechanics = Proc. Spie. Third International Conference On Experimental Mechanics = P Soc Photo-opt Ins Third International Conference On Experimental Mechanics = P. Soc. Photo-opt. Ins. Third International Conference On Factory 2000 - Competitive Performance Through Advanced Technology = Iee Conf Publ Third International Conference On Factory 2000 - Competitive Performance Through Advanced Technology = Iee. Conf. Publ. Third International Conference On Foundations of Computer-aided Process Operations = Aiche Sym S Third International Conference On Foundations of Computer-aided Process Operations = Aiche. Sym. S. Third International Conference On Future Trends in Distribution Switchgear = Iee Conf Publ Third International Conference On Future Trends in Distribution Switchgear = Iee. Conf. Publ. Third International Conference On Holographic Systems, Components and Applications = Iee Conf Publ Third International Conference On Holographic Systems, Components and Applications = Iee. Conf. Publ. Third International Conference On Intelligent Materials - Third European Conference On Smart Structures and Materials = P Soc Photo-opt Ins Third International Conference On Intelligent Materials - Third European Conference On Smart Structures and Materials = P. Soc. Photo-opt. Ins. Third International Conference On Managing Pavements, Vol 1 = Conf Proc Transp Res Third International Conference On Managing Pavements, Vol 1 = Conf. Proc. Transp. Res. Third International Conference On Managing Pavements, Vol 2 = Conf Proc Transp Res Third International Conference On Managing Pavements, Vol 2 = Conf. Proc. Transp. Res. Third International Conference On Mathematical and Numerical Aspects of Wave Propagation = Siam Proc S Third International Conference On Mathematical and Numerical Aspects of Wave Propagation = Siam. Proc. S. Third International Conference On Minority Languages : General Papers = Multiling Third International Conference On Minority Languages : General Papers = Multiling. Third International Conference On Nutrition in Cardio-cerebrovascular Diseases = Ann Ny Acad Sci Third International Conference On Nutrition in Cardio-cerebrovascular Diseases = Ann. Ny. Acad. Sci. Third International Conference On Optical and Laser Diagnostics (icolad 2007) = J Phys Conf Ser Third International Conference On Optical and Laser Diagnostics (icolad 2007) = J. Phys. Conf. Ser. Third International Conference On Power Cables & Accessories 10kv - 500kv = Iee Conf Publ Third International Conference On Power Cables & Accessories 10kv - 500kv = Iee. Conf. Publ. Third International Conference On Probablistic Methods Applied to Electric Power Systems = Iee Conf Publ Third International Conference On Probablistic Methods Applied to Electric Power Systems = Iee. Conf. Publ. Third International Conference On Road Traffic Control = Iee Conf Publ Third International Conference On Road Traffic Control = Iee. Conf. Publ. Third International Conference On Software Engineering for Real Time Systems = Iee Conf Publ Third International Conference On Software Engineering for Real Time Systems = Iee. Conf. Publ. Third International Conference On Solid State Lasers for Application to Inertial Confinement Fusion, Pts 1 and 2 = P Soc Photo-opt Ins Third International Conference On Solid State Lasers for Application to Inertial Confinement Fusion, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Third International Conference On Solid State Lighting = Proc Spie Third International Conference On Solid State Lighting = Proc. Spie. Third International Conference On Solid State Lighting = P Soc Photo-opt Ins Third International Conference On Solid State Lighting = P. Soc. Photo-opt. Ins. Third International Conference On Spacecraft Propulsion = Esa Sp Publ Third International Conference On Spacecraft Propulsion = Esa. Sp. Publ. Third International Conference On Thin Film Physics and Applications = P Soc Photo-opt Ins Third International Conference On Thin Film Physics and Applications = P. Soc. Photo-opt. Ins. Third International Conference On Train Maintenance Tomorrow ... and Beyond = Imeche Conf Trans Third International Conference On Train Maintenance Tomorrow ... and Beyond = Imeche. Conf. Trans. Third International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P Soc Photo-opt Ins Third International Conference On Vibration Measurements By Laser Techniques: Advances and Applications = P. Soc. Photo-opt. Ins. Third International Conference On Virtual Reality and Its Application in Industry = Proc Spie Third International Conference On Virtual Reality and Its Application in Industry = Proc. Spie. Third International Conference On Virtual Reality and Its Application in Industry = P Soc Photo-opt Ins Third International Conference On Virtual Reality and Its Application in Industry = P. Soc. Photo-opt. Ins. Third International Congress On Cactus Pear and Cochenille = Acta Hortic Third International Congress On Cactus Pear and Cochenille = Acta. Hortic. Third International Meeting of Dynamic Astronomy in Latin America (adela-2004) = Rev Mex Ast Astr Third International Meeting of Dynamic Astronomy in Latin America (adela-2004) = Rev. Mex. Ast. Astr. Third International Mine Water Congress = Aust I Min Third International Mine Water Congress = Aust. I. Min. Third International Mining Geology Conference = Australas I Min Met Third International Mining Geology Conference = Australas. I. Min. Met. Third International Strawberry Symposium, Vols. 1 and 2 = Acta Hortic Third International Strawberry Symposium, Vols. 1 and 2 = Acta. Hortic. Third International Symposium On Artificial Lighting in Horticulture = Acta Hortic Third International Symposium On Artificial Lighting in Horticulture = Acta. Hortic. Third International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta Hortic Third International Symposium On Computer Modelling in Fruit Research and Orchard Management = Acta. Hortic. Third International Symposium On Diversification of Vegetable Crops = Acta Hortic Third International Symposium On Diversification of Vegetable Crops = Acta. Hortic. Third International Symposium On Environmental Testing for Space Programmes = Esa Sp Publ Third International Symposium On Environmental Testing for Space Programmes = Esa. Sp. Publ. Third International Symposium On Kiwifruit, Vols 1 and 2 = Acta Hortic Third International Symposium On Kiwifruit, Vols 1 and 2 = Acta. Hortic. Third International Symposium On Laser Precision Microfabrication = Proc Spie Third International Symposium On Laser Precision Microfabrication = Proc. Spie. Third International Symposium On Laser Precision Microfabrication = P Soc Photo-opt Ins Third International Symposium On Laser Precision Microfabrication = P. Soc. Photo-opt. Ins. Third International Symposium On Multispectral Image Processing and Pattern Recognition, Pts 1 and 2 = Proc Spie Third International Symposium On Multispectral Image Processing and Pattern Recognition, Pts 1 and 2 = Proc. Spie. Third International Symposium On Multispectral Image Processing and Pattern Recognition, Pts 1 and 2 = P Soc Photo-opt Ins Third International Symposium On Multispectral Image Processing and Pattern Recognition, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Third International Symposium On New Floricultural Crops - Proceedings = Acta Hortic Third International Symposium On New Floricultural Crops - Proceedings = Acta. Hortic. Third International Symposium On Olive Growing, Vol 1 = Acta Hortic Third International Symposium On Olive Growing, Vol 1 = Acta. Hortic. Third International Symposium On Optical Storage ( Isos 92 ) = P Soc Photo-opt Ins Third International Symposium On Optical Storage ( Isos 92 ) = P. Soc. Photo-opt. Ins. Third International Symposium On Precision Mechanical Measurements, Pts 1 and 2 = Proc Spie Third International Symposium On Precision Mechanical Measurements, Pts 1 and 2 = Proc. Spie. Third International Symposium On Precision Mechanical Measurements, Pts 1 and 2 = P Soc Photo-opt Ins Third International Symposium On Precision Mechanical Measurements, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Third International Symposium On Processing Tomatoes = Acta Hortic Third International Symposium On Processing Tomatoes = Acta. Hortic. Third International Symposium On Replant Problems = Acta Hortic Third International Symposium On Replant Problems = Acta. Hortic. Third International Vasopressin Conference = Colloq Inse Third International Vasopressin Conference = Colloq. Inse. Third International Walnut Congress = Acta Hortic Third International Walnut Congress = Acta. Hortic. Third International Workshop and Summer School On Plasma Physics 2008 = J Phys Conf Ser Third International Workshop and Summer School On Plasma Physics 2008 = J. Phys. Conf. Ser. Third International Workshop Dice2006 - Quantum Mechanics Between Decoherence and Determinism: New Aspects From Particle Physics to Cosmology - Contributed Papers = J Phys Conf Ser Third International Workshop Dice2006 - Quantum Mechanics Between Decoherence and Determinism: New Aspects From Particle Physics to Cosmology - Contributed Papers = J. Phys. Conf. Ser. Third International Workshop Dice2006 - Quantum Mechanics Between Decoherence and Determinism: New Aspects From Particle Physics to Cosmology = J Phys Conf Ser Third International Workshop Dice2006 - Quantum Mechanics Between Decoherence and Determinism: New Aspects From Particle Physics to Cosmology = J. Phys. Conf. Ser. Third International Workshop On Hyaluronan in Drug Delivery = Roy S Med S Third International Workshop On Hyaluronan in Drug Delivery = Roy. S. Med. S. Third International Workshop On Iodine Lasers and Applications = P Soc Photo-opt Ins Third International Workshop On Iodine Lasers and Applications = P. Soc. Photo-opt. Ins. Third International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P Soc Photo-opt Ins Third International Workshop On Nondestructive Testing and Computer Simulations in Science and Engineering = P. Soc. Photo-opt. Ins. Third International Workshop On Theoretical and Computational Nanophotonics - Tacona-photonics 2010 = Aip Conf Proc Third International Workshop On Theoretical and Computational Nanophotonics - Tacona-photonics 2010 = Aip. Conf. Proc. Third Manufacturing Engineering Society International Conference: Mesic-09 = Aip Conf Proc Third Manufacturing Engineering Society International Conference: Mesic-09 = Aip. Conf. Proc. Third Millennium Bc Climate Change and Old World Collapse = Nato Asi Ser Ser I Third Millennium Bc Climate Change and Old World Collapse = Nato. Asi. Ser. Ser. I. Third Nanoscience and Nanotechnology Symposium 2010 - Nnsb2010 = Aip Conf Proc Third Nanoscience and Nanotechnology Symposium 2010 - Nnsb2010 = Aip. Conf. Proc. Third-order Nonlinear Optical Materials = P Soc Photo-opt Ins Third-order Nonlinear Optical Materials = P. Soc. Photo-opt. Ins. Third Pacific Northwest Fiber Optic Sensor Workshop = P Soc Photo-opt Ins Third Pacific Northwest Fiber Optic Sensor Workshop = P. Soc. Photo-opt. Ins. Third Pacific Rim Conference On Recent Development On Binary Star Research = Astr Soc P Third Pacific Rim Conference On Recent Development On Binary Star Research = Astr. Soc. P. Third-party Liability of Classification Societies: A Comparative Perspective = Hamb Stud Marit Aff Third-party Liability of Classification Societies: A Comparative Perspective = Hamb. Stud. Marit. Aff. Third Pillar: Essays in Judaic Studies = Jew Cult Context Third Pillar: Essays in Judaic Studies = Jew. Cult. Context. Third Place Learning: Reflective Inquiry Into Intercultural and Global Cage Painting = Teach Learn Indig In Third Place Learning: Reflective Inquiry Into Intercultural and Global Cage Painting = Teach. Learn. Indig. In. Third Regional Apcom = Australas I Min Met Third Regional Apcom = Australas. I. Min. Met. Third Rome Workshop On Gamma-ray Bursts in The Afterglow Era = Astr Soc P Third Rome Workshop On Gamma-ray Bursts in The Afterglow Era = Astr. Soc. P. Third Sector in Europe = Glob Welf Third Sector in Europe = Glob. Welf. Third Sector in Europe: Prospects and Challenges = Routl Stud Man Volun Third Sector in Europe: Prospects and Challenges = Routl. Stud. Man. Volun. Third Seminar On Practical Decommissioning Experience With Nuclear Installations in The European Community = Nucl Sci & Techn Third Seminar On Practical Decommissioning Experience With Nuclear Installations in The European Community = Nucl. Sci. &. Techn. Third Stromlo Symposium: The Galactic Halo = Astr Soc P Third Stromlo Symposium: The Galactic Halo = Astr. Soc. P. Third Symposium On Growth Regulators in Ornamental Horticulture = Acta Hortic Third Symposium On Growth Regulators in Ornamental Horticulture = Acta. Hortic. Third Text = Third Text Third Wave of Asbestos Disease : Exposure to Asbestos in Place = Ann Ny Acad Sci Third Wave of Asbestos Disease : Exposure to Asbestos in Place = Ann. Ny. Acad. Sci. Third Workshop On Neural Networks : Academic / Industrial / Nasa / Defense ( Wnn 92 ) = P Soc Photo-opt Ins Third Workshop On Neural Networks : Academic / Industrial / Nasa / Defense ( Wnn 92 ) = P. Soc. Photo-opt. Ins. Third World Cities = Sage Foc Ed Third World Cities = Sage. Foc. Ed. Third World Legal Studies-1996-97 = Third World Leg Stud Third World Legal Studies-1996-97 = Third World Leg. Stud. Third World Legal Studies = Third World Leg Stud Third World Legal Studies = Third World Leg. Stud. Third world planning review = Third World Plann Rev Third World Planning Review = Third World Plan Rev Third World Planning Review = Third World Plan. Rev. Third world quarterly = Third World Q Third World Quarterly = Third World Q Third World Quarterly = Third World Q. Thirteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 1997 = P Ieee Semicond Ther Thirteenth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 1997 = P. Ieee Semicond. Ther. Thirteenth Ieee Symposium On Mass Storage Systems, Proceedings = Ieee S Mass Stor Sys Thirteenth Ieee Symposium On Mass Storage Systems, Proceedings = Ieee S. Mass Stor. Sys. Thirteenth International Conference On Thermoelectrics = Aip Conf Proc Thirteenth International Conference On Thermoelectrics = Aip. Conf. Proc. Thirteenth International Symposium On High-performance Computer Architecture, Proceedings = Int S High Perf Comp Thirteenth International Symposium On High-performance Computer Architecture, Proceedings = Int. S. High. Perf. Comp. Thirteenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = Proc Spie Thirteenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = Proc. Spie. Thirteenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = P Soc Photo-opt Ins Thirteenth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics = P. Soc. Photo-opt. Ins. Thirtieth Annual Ieee/acm International Symposium On Microarchitecture, Proceedings = Int Symp Microarch Thirtieth Annual Ieee/acm International Symposium On Microarchitecture, Proceedings = Int. Symp. Microarch. Thirtieth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Thirtieth Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Thirtieth Hawaii International Conference On System Sciences, Vol 1 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 1 = P. Ann. Hicss. Thirtieth Hawaii International Conference On System Sciences, Vol 2 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 2 = P. Ann. Hicss. Thirtieth Hawaii International Conference On System Sciences, Vol 3 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 3 = P. Ann. Hicss. Thirtieth Hawaii International Conference On System Sciences, Vol 4 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 4 = P. Ann. Hicss. Thirtieth Hawaii International Conference On System Sciences, Vol 5 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 5 = P. Ann. Hicss. Thirtieth Hawaii International Conference On System Sciences, Vol 6 = P Ann Hicss Thirtieth Hawaii International Conference On System Sciences, Vol 6 = P. Ann. Hicss. Thirtieth Southeastern Symposium On System Theory (ssst) = Se Sym Sys Thry Thirtieth Southeastern Symposium On System Theory (ssst) = Se. Sym. Sys. Thry. Thirtieth Southeastern Symposium On System Theory (ssst) = Southeast Symp Syste Thirtieth Southeastern Symposium On System Theory (ssst) = Southeast. Symp. Syste. Thirty-first Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf Rec Asilomar C Thirty-first Asilomar Conference On Signals, Systems & Computers, Vols 1 and 2 = Conf. Rec. Asilomar C. Thirty-first Hawaii International Conference On System Sciences, Vol. Ii = P Ann Hicss Thirty-first Hawaii International Conference On System Sciences, Vol. Ii = P. Ann. Hicss. Thirty-sixth Asilomar Conference On Signals, Systems & Computers - Conference Record, Vols 1 and 2, Conference Record = Conf Rec Asilomar C Thirty-sixth Asilomar Conference On Signals, Systems & Computers - Conference Record, Vols 1 and 2, Conference Record = Conf. Rec. Asilomar C. Thirty Years of China's Economic Reform: Institutions, Management Organizations and Foreign Investment = China 21st Century Thirty Years of China's Economic Reform: Institutions, Management Organizations and Foreign Investment = China. 21st. Century. Thirty Years of Progress in Mitochondrial Bioenergetics and Molecular Biology = Prog Cell R Thirty Years of Progress in Mitochondrial Bioenergetics and Molecular Biology = Prog. Cell. R. This Is Our Music: Free Jazz, The Sixties, and American Culture = Arts Intell Life Mod This Is Our Music: Free Jazz, The Sixties, and American Culture = Arts. Intell. Life. Mod. This Noble Craft ... = Costerus Es This Noble Craft ... = Costerus. Es. ThisWeek (Lagos, Nigeria) = ThisWeek This Year in School Science = Th Yr Sch S This Year in School Science = Th. Yr. Sch. S. Thomasevangelium: Entstehung - Rezeption -theologie = Beih Z Neutest Wiss Thomasevangelium: Entstehung - Rezeption -theologie = Beih. Z. Neutest. Wiss. Thomas Hare and Political Representation in Victorian Britain = Stud Mod Hist Thomas Hare and Political Representation in Victorian Britain = Stud. Mod. Hist. Thomas Harriot's Doctrine of Triangular Numbers: The Magisteria Magna = Herit Eur Math Thomas Harriot's Doctrine of Triangular Numbers: The Magisteria Magna = Herit. Eur. Math. Thomas Jefferson law review = Thomas Jefferson Law Rev Thomas Manns Doctor Faustus = St German L Thomas Manns Doctor Faustus = St. German. L. Thomas Say Publications in Entomology : Proceedings = Thom Say P Thomas Say Publications in Entomology : Proceedings = Thom. Say P. Thomas Wolfe Newsletter = Thomas Wolfe Newsl Thomas Wolfe Newsletter = Thomas Wolfe Newsl. Thomas Wolfe Review = Thomas Wolfe Rev Thomas Wolfe Review = Thomas Wolfe Rev. Thomistic Principles and Bioethics = Routl Ann Bioethics Thomistic Principles and Bioethics = Routl. Ann. Bioethics Thomist = Thomist Thoracic and Cardiovascular Surgeon=Thorac Cardiovasc Surg;; Thoracic and Cardiovascular Surgeon = Thorac. Cardiovasc. Surg. Thoracic and Cardiovascular Surgeon = Thorac Cardiov Surg Thoracic and Cardiovascular Surgeon = Thorac. Cardiov. Surg. Thoracic Cancer = Thorac Cancer Thoracic Cancer = Thorac. Cancer Thoracic Malignancies = Eur Respir Monogr Thoracic Malignancies = Eur. Respir. Monogr. Thoracic Malignancies = Radiat Med Rounds Thoracic Malignancies = Radiat. Med. Rounds. Thoracic Organ Transplantation: Routine As A Challenge = Int Congr Ser Thoracic Organ Transplantation: Routine As A Challenge = Int. Congr. Ser. Thoracic surgery clinics = Thorac Surg Clin Thoracic Surgery Clinics = Thorac. Surg. Clin. Thoraxchirurgie = Thoraxchirurgie Thoraxchirurgie und vaskulare Chirurgie = Thoraxchir Vask Chir Thoraxchirurgie, vaskulare Chirurgie = Thoraxchir Vask Chir Thoraxchirurgie Vaskulare Chirurgie = Thoraxchir Vask Chir Thoraxchirurgie Vaskulare Chirurgie = Thoraxchir. Vask. Chir. Thorax=Thorax;; Thorax = Thorax Thoreau Society Bulletin = Thoreau Soc Bull Thoreau Society Bulletin = Thoreau Soc. Bull. Thought-a Review of Culture and Idea = Thought Thought-a Review of Culture and Idea = Thought. Thought-contents: On The Ontology of Belief and The Semantics of Belief Attribution = Philos Stud Ser Thought-contents: On The Ontology of Belief and The Semantics of Belief Attribution = Philos. Stud. Ser. Thought = Thought Thousand and One Nights = Routl Stud Mid E Lit Thousand and One Nights = Routl. Stud. Mid. E. Lit. Threats, Risks and Sustainability - Answers By Space = Stud Space Policy Threats, Risks and Sustainability - Answers By Space = Stud. Space Policy. Threats to Food and Water Chain Infrastructure = Nato Sci Peace Secur Threats to Food and Water Chain Infrastructure = Nato. Sci. Peace. Secur. Threats to Global Water Security = Nato Sci Peace Secur Threats to Global Water Security = Nato. Sci. Peace. Secur. Three Banks Review = Three Banks Rev Three Banks Review = Three Banks Rev. Three Courses On Partial Differential Equations = Irma Lect Math Theor Three Courses On Partial Differential Equations = Irma. Lect. Math. Theor. Three Dimensional Analysis of Spinal Deformities = St Heal T Three Dimensional Analysis of Spinal Deformities = St. Heal. T. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Ix = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Ix = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Viii = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Viii = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Vi, Proceedings Of = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Vi, Proceedings Of = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Vi, Proceedings Of = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Vi, Proceedings Of = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing V, Proceedings Of = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing V, Proceedings Of = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiii = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiii = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiii = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiii = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xii = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xii = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xii = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xii = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xi = Pro Biomed Opt Imag Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xi = Pro. Biomed. Opt. Imag. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiv = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiv = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiv = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xiv = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing X = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing X = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvii = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvii = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvii = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvii = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvi = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xvi = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xv = Proc Spie Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xv = Proc. Spie. Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xv = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition and Processing Xv = P. Soc. Photo-opt. Ins. Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing Vii = P Soc Photo-opt Ins Three-dimensional and Multidimensional Microscopy: Image Acquisition Processing Vii = P. Soc. Photo-opt. Ins. Three-dimensional and Unconventional Imaging for Industrial Inspection and Metrology = P Soc Photo-opt Ins Three-dimensional and Unconventional Imaging for Industrial Inspection and Metrology = P. Soc. Photo-opt. Ins. Three-dimensional Electromagnetics, Proceedings = Meth Geoch Three-dimensional Electromagnetics, Proceedings = Meth. Geoch. Three-dimensional Flows = Ergeb Math Grenzgeb Three-dimensional Flows = Ergeb. Math. Grenzgeb. Three-dimensional Holography : Science, Culture, Education = P Soc Photo-opt Ins Three-dimensional Holography : Science, Culture, Education = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications 2008 = Proc Spie Three-dimensional Image Capture and Applications 2008 = Proc. Spie. Three-dimensional Image Capture and Applications Iii = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications Iii = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications Ii = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications Ii = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications Iv = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications Iv = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications Vii = Proc Spie Three-dimensional Image Capture and Applications Vii = Proc. Spie. Three-dimensional Image Capture and Applications Vii = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications Vii = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications Vi = Proc Spie Three-dimensional Image Capture and Applications Vi = Proc. Spie. Three-dimensional Image Capture and Applications Vi = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications Vi = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture and Applications V = Proc Spie Three-dimensional Image Capture and Applications V = Proc. Spie. Three-dimensional Image Capture and Applications V = P Soc Photo-opt Ins Three-dimensional Image Capture and Applications V = P. Soc. Photo-opt. Ins. Three-dimensional Image Capture = P Soc Photo-opt Ins Three-dimensional Image Capture = P. Soc. Photo-opt. Ins. Three-dimensional Image Processing (3dip) and Applications = Proc Spie Three-dimensional Image Processing (3dip) and Applications = Proc. Spie. Three-dimensional Image Reconstruction in Radiology and Nuclear Medicine = Comp Imag Vis Three-dimensional Image Reconstruction in Radiology and Nuclear Medicine = Comp. Imag. Vis. Three-dimensional Imaging and Laser-based Systems for Metrology and Inspection Iii = P Soc Photo-opt Ins Three-dimensional Imaging and Laser-based Systems for Metrology and Inspection Iii = P. Soc. Photo-opt. Ins. Three-dimensional Imaging and Laser-based Systems for Metrology and Inspection Ii = P Soc Photo-opt Ins Three-dimensional Imaging and Laser-based Systems for Metrology and Inspection Ii = P. Soc. Photo-opt. Ins. Three-dimensional Imaging, Interaction, and Measurement = P Soc Photo-opt Ins Three-dimensional Imaging, Interaction, and Measurement = P. Soc. Photo-opt. Ins. Three-dimensional Imaging, Optical Metrology, and Inspection Iv = P Soc Photo-opt Ins Three-dimensional Imaging, Optical Metrology, and Inspection Iv = P. Soc. Photo-opt. Ins. Three-dimensional Imaging, Optical Metrology, and Inspection V = P Soc Photo-opt Ins Three-dimensional Imaging, Optical Metrology, and Inspection V = P. Soc. Photo-opt. Ins. Three-dimensional Imaging, Visualization, and Display 2010 and Display Technologies and Applications for Defense, Security, and Avionics Iv = Proc Spie Three-dimensional Imaging, Visualization, and Display 2010 and Display Technologies and Applications for Defense, Security, and Avionics Iv = Proc. Spie. Three-dimensional Imaging, Visualization, and Display 2010 and Display Technologies and Applications for Defense, Security, and Avionics Iv = P Soc Photo-opt Ins Three-dimensional Imaging, Visualization, and Display 2010 and Display Technologies and Applications for Defense, Security, and Avionics Iv = P. Soc. Photo-opt. Ins. Three-dimensional Imaging, Visualization, and Display 2011 = Proc Spie Three-dimensional Imaging, Visualization, and Display 2011 = Proc. Spie. Three-dimensional Magnetosphere = Adv Space Res Three-dimensional Magnetosphere = Adv. Space. Res. Three-dimensional Magnetosphere = Adv Space Res-series Three-dimensional Magnetosphere = Adv. Space. Res-series. Three-dimensional Microscopy: Image Acquisition and Processing Iii = P Soc Photo-opt Ins Three-dimensional Microscopy: Image Acquisition and Processing Iii = P. Soc. Photo-opt. Ins. Three-dimensional Microscopy: Image Acquisition and Processing Ii = P Soc Photo-opt Ins Three-dimensional Microscopy: Image Acquisition and Processing Ii = P. Soc. Photo-opt. Ins. Three-dimensional Microscopy: Image Acquisition and Processing Iv, Proceedings Of = P Soc Photo-opt Ins Three-dimensional Microscopy: Image Acquisition and Processing Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Three-dimensional Microscopy: Image Acquisition and Processing = P Soc Photo-opt Ins Three-dimensional Microscopy: Image Acquisition and Processing = P. Soc. Photo-opt. Ins. Three-dimensional Model Analysis and Processing = Adv Top Sci Tech Chi Three-dimensional Model Analysis and Processing = Adv. Top. Sci. Tech. Chi. Three-dimensional Modeling With Geoscientific Information Systems = Nato Adv Sci I C-mat Three-dimensional Modeling With Geoscientific Information Systems = Nato. Adv. Sci. I. C-mat. Three-dimensional Nanoengineered Assemblies = Mater Res Soc Symp P Three-dimensional Nanoengineered Assemblies = Mater. Res. Soc. Symp. P. Three-dimensional Radiation Treatment = Front Radiat Ther On Three-dimensional Radiation Treatment = Front. Radiat. Ther. On. Three-dimensional Systems = Ann Ny Acad Sci Three-dimensional Systems = Ann. Ny. Acad. Sci. Three-dimensional Television: Capture, Transmission, Display = Signals Commun Techn Three-dimensional Television: Capture, Transmission, Display = Signals. Commun. Techn. Three-dimensional Tv, Video, and Display Ii = Proc Spie Three-dimensional Tv, Video, and Display Ii = Proc. Spie. Three-dimensional Tv, Video, and Display Ii = P Soc Photo-opt Ins Three-dimensional Tv, Video, and Display Ii = P. Soc. Photo-opt. Ins. Three-dimensional Tv, Video and Display = P Soc Photo-opt Ins Three-dimensional Tv, Video and Display = P. Soc. Photo-opt. Ins. Three-dimensional Tv, Video, and Displays Iii = P Soc Photo-opt Ins Three-dimensional Tv, Video, and Displays Iii = P. Soc. Photo-opt. Ins. Three-dimensional Tv, Video, and Display Vi = P Soc Photo-opt Ins Three-dimensional Tv, Video, and Display Vi = P. Soc. Photo-opt. Ins. Three-dimensional Tv, Video, and Display V = Proc Spie Three-dimensional Tv, Video, and Display V = Proc. Spie. Three-dimensional Tv, Video, and Display V = P Soc Photo-opt Ins Three-dimensional Tv, Video, and Display V = P. Soc. Photo-opt. Ins. Three-dimensional Velocity and Vorticity Measuring and Image Analysis Techniques = Ercoftac Ser Three-dimensional Velocity and Vorticity Measuring and Image Analysis Techniques = Ercoftac. Ser. Three-dimensional X-ray Diffraction Microscopy: Mapping Polycrystals and Their Dynamics = Springer Tr Mod Phys Three-dimensional X-ray Diffraction Microscopy: Mapping Polycrystals and Their Dynamics = Springer. Tr. Mod. Phys. Three Hundred Prairie Years = Can Plain P Three Hundred Prairie Years = Can. Plain. P. Three Loves - Philosophy, Theology, and World Religions = Mcgill Stud Relig Three Loves - Philosophy, Theology, and World Religions = Mcgill. Stud. Relig. Three-phase Diode Bridge Rectifier With Low Harmonics = Power Electron Power Three-phase Diode Bridge Rectifier With Low Harmonics = Power. Electron. Power. Three Years After: Next Steps in The War On Terror, Conference Proceedings = Rand Conf Proc Three Years After: Next Steps in The War On Terror, Conference Proceedings = Rand. Conf. Proc. Thrips Biology and Management = Nato Adv Sci Inst Se Thrips Biology and Management = Nato. Adv. Sci. Inst. Se. Thrombosis and haemostasis = Thromb Haemost Thrombosis and Haemostasis=Thromb Haemost;; Thrombosis and Haemostasis = Thromb. Haemost. Thrombosis and Haemostasis = Thromb Haemostasis Thrombosis and Haemostasis = Thromb. Haemostasis Thrombosis: Causes, Treatment and Prevention = Cardiol Res Clin Dev Thrombosis: Causes, Treatment and Prevention = Cardiol. Res. Clin. Dev. Thrombosis et diathesis haemorrhagica. Supplementum = Thromb Diath Haemorrh Suppl Thrombosis et Diathesis Haemorrhagica. Supplementum = Thromb. Diath. Haemorrh. Suppl. Thrombosis et diathesis haemorrhagica = Thromb Diath Haemorrh Thrombosis et Diathesis Haemorrhagica = Thromb. Diath. Haemorrh. Thrombosis Et Diathesis Haemorrhagica = Thromb Diath Haemost Thrombosis Et Diathesis Haemorrhagica = Thromb. Diath. Haemost. Thrombosis journal = Thromb J Thrombosis research. Supplement = Thromb Res Suppl Thrombosis Research. Supplement = Thromb. Res. Suppl. Thrombosis research = Thromb Res Thrombosis Research=Thromb Res;; Thrombosis Research = Thromb Res Thrombosis Research = Thromb. Res. Throughput Optimization in Robotic Cells = Int Ser Oper Res Man Throughput Optimization in Robotic Cells = Int. Ser. Oper. Res. Man. Through The Looking Glass = Amer Ital Hist Assoc Through The Looking Glass = Amer. Ital. Hist. Assoc. Thrust Belts and Foreland Basins: From Fold Kinematics to Hydrocarbon Systems = Front Earth Sci Thrust Belts and Foreland Basins: From Fold Kinematics to Hydrocarbon Systems = Front. Earth. Sci. Thrust-for Educational Leadership = Thrust Thrust-for Educational Leadership = Thrust. Thuggee: Banditry and The British in Early Nineteenth-century India = Camb Imp Post-col St Thuggee: Banditry and The British in Early Nineteenth-century India = Camb. Imp. Post-col. St. Thurgauer Jahrbuch = Thurg. Jahrb. Thurgood Marshall law review = Thurgood Marshall Law Rev Thymosins in Health and Disease = Ann Ny Acad Sci Thymosins in Health and Disease = Ann. Ny. Acad. Sci. Thymosins in Health and Disease: First International Symposium = Ann Ny Acad Sci Thymosins in Health and Disease: First International Symposium = Ann. Ny. Acad. Sci. Thymus = Thymus Thy People Shall Be My People - and Thy God My God = Sperry Symp Ser Thy People Shall Be My People - and Thy God My God = Sperry. Symp. Ser. Thyroid 1988 = Int Congr Ser Thyroid 1988 = Int. Congr. Ser. Thyroid Cytopathology = Essent Cytopathol Thyroid Cytopathology = Essent. Cytopathol. Thyroid Cytopathology, Second Edition = Essent Cytopathol Thyroid Cytopathology, Second Edition = Essent. Cytopathol. Thyroid Function Testing = Endocr Updat Thyroid Function Testing = Endocr. Updat. Thyroid Gland, Environment and Autoimmunity = Int Congr Ser Thyroid Gland, Environment and Autoimmunity = Int. Congr. Ser. Thyroid Hormones: Functions, Related Diseases and Uses = Endocr Res Clin Dev Thyroid Hormones: Functions, Related Diseases and Uses = Endocr. Res. Clin. Dev. Thyroid = Mg Clin Cyt Thyroid = Mg. Clin. Cyt. Thyroid : official journal of the American Thyroid Association = Thyroid Thyroidology / A.P.R.I.M = Thyroidology Thyroidology = Thyroidology Thyroid=Thyroid;; Thyroid = Thyroid Thyroperoxidase and Thyroid Autoimmunity = Colloq Inse Thyroperoxidase and Thyroid Autoimmunity = Colloq. Inse. Tianjin da xue xue bao = Journal of Tianjin University|Tianjin Daxue Xuebao Tianjin University = Trans. Tianjin Univ. Tianjin yi ke da xue xue bao = Journal of Tianjin Medical University|Tianjin Yi Ke Da Xue Xue Bao Tianran Chanwu Yanjiu Yu Kaifa = Tianran Chanwu Yanjiu Yu Kaifa Tibetan Buddhist Literature and Praxis: Studies in Its Formative Period, 900-1400 = Brills Tibet Stu Lib Tibetan Buddhist Literature and Praxis: Studies in Its Formative Period, 900-1400 = Brills. Tibet. Stu. Lib. Tibetan Government-in-exile: Politics At Large = Routl Adv S Asian St Tibetan Government-in-exile: Politics At Large = Routl. Adv. S. Asian. St. Tibet-china Conflict: History and Polemics = Pol Stud Tibet-china Conflict: History and Polemics = Pol. Stud. Tibet news review = Tibet News Rev Tibet, Past and Present = Brills Tibet Stu Lib Tibet, Past and Present = Brills. Tibet. Stu. Lib. Tibiscus. Istorie, arheologie. Muzeul Banatului Timişoara = Tibiscus Ticitl = Ticitl Ticks and Tick-borne Diseases = Ticks Tick-borne Dis Ticks and Tick-borne Diseases = Ticks Tick-borne Dis. Tic = TIC TIC = TIC Tidal Effects in Stars, Planets and Disks = Eas Publications Tidal Effects in Stars, Planets and Disks = Eas. Publications. Tidal Evolution and Oscillations in Binary Stars Third Granada Workshop On Stellar Structure = Astr Soc P Tidal Evolution and Oscillations in Binary Stars Third Granada Workshop On Stellar Structure = Astr. Soc. P. Tidal Phenomena = Lect Notes Earth Sci Tidal Phenomena = Lect. Notes. Earth. Sci. Tidal Signatures in Modern and Ancient Sediments = Int As Sed Tidal Signatures in Modern and Ancient Sediments = Int. As. Sed. Tidens tann = Tid Tann Tidens Tann = Tid. Tann Tidning. Sveriges Tandlakarforbund = Sver Tandlakarforb Tidn TID Reports = TID Rep. TID [reports]. U.S. Atomic Energy Commission = TID Rep Tidskrift for sjukvardspedagoger = Tidskr Sjukvardspedagog Tidskrift for Sjukvardspedagoger = Tidskr. Sjukvardspedagog. Tidskrift for Sveriges sjukskoterskor = Tidskr Sver Sjukskot Tidskrift for Sveriges Sjukskoterskor = Tidskr. Sver. Sjukskot. Tidskrift i militar halsovard = Tidskr Mil Halsov Tidsskriftet sykepleien = Tidsskr Sykepl Tidsskriftet Sykepleien = Tidsskr. Sykepl. Tidsskrift for den Norske laegeforening = Tidsskr Nor Laegeforen Tidsskrift for Den Norske Laegeforening = Tidsskr. Nor. Laegeforen. Tidsskrift For Den Norske Laegeforening=Tidsskr Nor Laegeforen;; Tidsskrift for Den Norske Laegeforening = Tidsskr Norske Laege Tidsskrift for Den Norske Laegeforening = Tidsskr. Norske Laege. Tidsskrift for Kjemi Bergvesenog Metallurgi = Tidsskr Kjemi Bergv Tidsskrift for Kjemi Bergvesenog Metallurgi = Tidsskr. Kjemi Bergv. Tidsskrift for Kjemi, Bergvesen, og Metallurgi = Tidsskr. Kjemi Bergv. Metall Tidsskrift for praktiserende tandlaeger = Tidsskr Prakt Tandlaeg Tidsskrift for Praktiserende Tandlaeger = Tidsskr. Prakt. Tandlaeg. Tidsskrift for rettsvidenskap = Tidsskr Rettsvitenskap Tidsskrift for Samfunnsforskning = Tidsskr Samfunnsfor Tidsskrift for Samfunnsforskning = Tidsskr. Samfunnsfor. Tidsskrift for samfunnsforskning = Tidsskr Samfunnsforsk Tidsskrift for Skogbruk = Tidsskr. Skogbruk Tidsskrift for sygeplejersker = Tidsskr Sygepl Tidsskrift for Sygeplejersker = Tidsskr. Sygepl. Tidsskrift for tandlaeger (Copenhagen, Denmark : 1981) = Tidsskr Tandlaeger Tidsskrift for Tandlaeger = Tidsskr. Tandlaeger Tieraerztliche Praxis Ausgabe Grosstiere Nutztiere = Tieraerztl Prax G N Tieraerztliche Praxis Ausgabe Grosstiere Nutztiere = Tieraerztl. Prax. G. N. Tieraerztliche Praxis Ausgabe Kleintiere Heimtiere = Tieraerztl Prax K H Tieraerztliche Praxis Ausgabe Kleintiere Heimtiere = Tieraerztl. Prax. K. H. Tieraerztliche Umschau = Tieraerztl Umschau Tieraerztliche Umschau = Tieraerztl. Umschau Tierarztliche Praxis. Ausgabe G, Grosstiere Nutztiere=Tierarztl Prax Ausg G Grosstiere Nutztiere;; Tierarztliche Praxis. Ausgabe G, Grosstiere/Nutztiere = Tierarztl Prax Ausg G Grosstiere Nutztiere Tierarztliche Praxis. Ausgabe G, Grosstiere/Nutztiere = Tierarztl. Prax. Ausg. G Grosstiere Nutztiere Tierarztliche Praxis Ausgabe Grobtiere Nutztiere = Tierarztl Prax G N Tierarztliche Praxis Ausgabe Grobtiere Nutztiere = Tierarztl. Prax. G. N. Tierarztliche Praxis Ausgabe Grosstiere Nutztiere = Tierarztl Prax G N Tierarztliche Praxis Ausgabe Grosstiere Nutztiere = Tierarztl. Prax. G. N. Tierarztliche Praxis. Ausgabe K, Kleintiere/Heimtiere=Tierarztl Prax Ausg K Klientiere Heimtiere;; Tierarztliche Praxis. Ausgabe K, Kleintiere/Heimtiere = Tierarztl Prax Ausg K Klientiere Heimtiere Tierarztliche Praxis. Ausgabe K, Kleintiere/Heimtiere = Tierarztl. Prax. Ausg. K Klientiere Heimtiere Tierarztliche Praxis Ausgabe Kleintiere Heimtiere = Tierarztl Prax K H Tierarztliche Praxis Ausgabe Kleintiere Heimtiere = Tierarztl. Prax. K. H. Tierarztliche Praxis. Supplement=Tierarztl Prax Suppl;; Tierarztliche Praxis. Supplement = Tierarztl Prax Suppl Tierarztliche Praxis. Supplement = Tierarztl. Prax. Suppl. Tierarztliche Praxis = Tierarztl Prax Tierarztliche Praxis = Tierarztl. Prax. Tierarztliche Umschau = Tierarztl Umsch Tierarztliche Umschau = Tierarztl. Umsch. Tierarztliche Umschau = Tierarztl Umschau Tierarztliche Umschau = Tierarztl. Umschau Tierbilder Aus Dem Ersten Jahrhundert = Arch Papyrus Verwand Tierbilder Aus Dem Ersten Jahrhundert = Arch. Papyrus. Verwand. Tierras de León = TiLeon Tiers-monde = Tiers Monde Ties That Buy: Women and Commerce in Revolutionary America = Early Am Stud Ser Ties That Buy: Women and Commerce in Revolutionary America = Early. Am. Stud. Ser. Tight-binding Approach to Computational Materials Science = Mater Res Soc Symp P Tight-binding Approach to Computational Materials Science = Mater. Res. Soc. Symp. P. Tijdschrift Van De Koninklijke Vereniging Voor Nederlandse Muziekgeschiedenis = Tijd K Ver Ned Muz Tijdschrift Van De Koninklijke Vereniging Voor Nederlandse Muziekgeschiedenis = Tijd. K. Ver. Ned. Muz. Tijdschrift Van De Vereniging Voor Nederlandse Muziekgeschiedenis = Tijdschr Ver Ned Muz Tijdschrift Van De Vereniging Voor Nederlandse Muziekgeschiedenis = Tijdschr. Ver. Ned. Muz. Tijdschrift voor bejaarden-, kraam- en ziekenversorging : bkz = Tijdschr Bejaarden Kraam Ziekenverzorging Tijdschrift voor Bejaarden- Kraam- en Ziekenverzorging = Tijdschr. Bejaarden. Kraam. Ziekenverzorging Tijdschrift Voor Communicatiewetenschap = Tijdschr Communwet Tijdschrift Voor Communicatiewetenschap = Tijdschr. Communwet. Tijdschrift voor de geschiedenis der geneeskunde, natuurwetenschappen, wiskunde en techniek = Tijdschr Geschied Geneeskd Natuurwet Wiskd Tech Tijdschrift Voor Diergeneeskunde = Tijdschr Diergeneesk Tijdschrift Voor Diergeneeskunde = Tijdschr. Diergeneesk. Tijdschrift voor diergeneeskunde = Tijdschr Diergeneeskd Tijdschrift voor Diergeneeskunde = Tijdschr. Diergeneeskd. Tijdschrift Voor Diergeneeskunde=Tijdschr Diergeneeskd;; Tijdschrift voor Economie en Management=Tijdschr. Econ. Manage. Tijdschrift voor Economie=Tijdschr. Econ. Tijdschrift Voor Economische En Sociale Geografie = Tijdschr Econ Soc Ge Tijdschrift Voor Economische En Sociale Geografie = Tijdschr. Econ. Soc. Ge. Tijdschrift voor entomologie = Tijdschr Entomol Tijdschrift voor filosofie = TF Tijdschrift Voor Filosofie = Tijdschr Filos Tijdschrift Voor Filosofie = Tijdschr. Filos. Tijdschrift voor gastro-enterologie = Tijdschr Gastroenterol Tijdschrift voor Gastro-Enterologie = Tijdschr. Gastroenterol. Tijdschrift voor geneeskunde = Tijdschr Geneeskd Tijdschrift voor gerontologie en geriatrie = Tijdschr Gerontol Geriatr Tijdschrift voor Gerontologie en Geriatrie = Tijdschr. Gerontol. Geriatr. Tijdschrift Voor Gerontologie En Geriatrie=Tijdschr Gerontol Geriatr;; Tijdschrift voor geschiedenis (1920). = Tijdschr Geschied Tijdschrift voor geschiedenis = TG Tijdschrift Voor Geschiedenis = Tijdschr Geschieden Tijdschrift Voor Geschiedenis = Tijdschr. Geschieden. Tijdschrift voor kindergeneeskunde = Tijdschr Kindergeneeskd Tijdschrift voor Kindergeneeskunde = Tijdschr. Kindergeneeskd. Tijdschrift voor Mediterrane archeologie = TMA Tijdschrift Voor Nederlandse Taal-en Letterkunde = Tijdschr Ned Taal L Tijdschrift Voor Nederlandse Taal-en Letterkunde = Tijdschr. Ned. Taal. L. Tijdschrift voor philosophie = Tijdschr Filos Tijdschrift Voor Psychiatrie = Tijdschr Psychiat Tijdschrift Voor Psychiatrie = Tijdschr. Psychiat. Tijdschrift voor psychiatrie = Tijdschr Psychiatr Tijdschrift Voor Rechtsgeschiedenis-revue D Histoire Du Droit-the Legal History Review = Tijdschr Rechtsgesch Tijdschrift Voor Rechtsgeschiedenis-revue D Histoire Du Droit-the Legal History Review = Tijdschr. Rechtsgesch. Tijdschrift voor sociale geneeskunde = Tijdschr Soc Geneeskd Tijdschrift voor Sociale Geneeskunde = Tijdschr. Soc. Geneeskd. Tijdschrift voor sociale geschiedenis = Tijdschr Soc Geschied Tijdschrift voor sociale gezondheidszorg : TSG : 14-daags blad van de Algemene Nederlandse Vereniging voor Sociale Gezondheidszorg = Tijdschr Soc Gezondheidsz Tijdschrift voor sociale wetenschappen = Tijdschr Soc Wet Tijdschrift voor sociologie = Tijdschr Sociol Tijdschrift Voor Tandheelkunde = Tijdschr Voor Tandheelkd Tijdschrift voor ziekenverpleging = Tijdschr Voor Ziekenverpl Tijdschrift voor Ziekenverpleging = Tijdschr. Ziekenverpl. Tijdschrift vor Klei, Glas en Keramiek = Tijd. Klei Glas Keram. Tikhookeanskaya Geologiya = Tikhookean Geol Tikhookeanskaya Geologiya = Tikhookean. Geol. Tikkun = Tikkun Tilannetietoisuuta Tukevat Naytot Prosessiteollisuuden Valvomoissa = Vtt Res Notes Tilannetietoisuuta Tukevat Naytot Prosessiteollisuuden Valvomoissa = Vtt. Res. Notes. Tim-09: Proceedings of The Physics Conference = Aip Conf Proc Tim-09: Proceedings of The Physics Conference = Aip. Conf. Proc. Timarit Hjukrunarfelags Islands = Timarit Hjukrunarfel Isl Timarit Hjukrunarfelags Islands = Timarit Hjukrunarfel. Isl. Timber Bulletin for Europe = Timber Bull. Eur. Time 2007: 14th International Symposium On Temporal Representation and Reasoning, Proceedings = Int Workshop Tempora Time 2007: 14th International Symposium On Temporal Representation and Reasoning, Proceedings = Int. Workshop. Tempora. Time, Action and Cognition = Nato Adv Sci Inst Se Time, Action and Cognition = Nato. Adv. Sci. Inst. Se. Time and Complexity in Historical Ecology = Hist Ecol Ser Time and Complexity in Historical Ecology = Hist. Ecol. Ser. Time and Cost Management of Construction = Vdi Bericht Time and Cost Management of Construction = Vdi. Bericht. Time and Development = Stud Intercult Phil Time and Development = Stud. Intercult. Phil. Time and Frequency Metrology = Proc Spie Time and Frequency Metrology = Proc. Spie. Time and Frequency Metrology = P Soc Photo-opt Ins Time and Frequency Metrology = P. Soc. Photo-opt. Ins. Time and Memory = Stud Time Time and Memory = Stud. Time Time and Mind : Interdisciplinary Issues = Stud Time Time and Mind : Interdisciplinary Issues = Stud. Time Time and Modality = St Nat Lang Time and Modality = St. Nat. Lang. Time and Modality = Stud Nat Lang Lingui Time and Modality = Stud. Nat. Lang. Lingui. Time and Process : Interdisciplinary Issues = Stud Time Time and Process : Interdisciplinary Issues = Stud. Time Time Bomb Lies Buried: Fijis Road to Independence, 1960-1970 = Stud St Soc Pac Time Bomb Lies Buried: Fijis Road to Independence, 1960-1970 = Stud. St. Soc. Pac. Time Delay Systems = Ifac Work S Time Delay Systems = Ifac. Work. S. Time Dependent and Nonlinear Effects in Polymers and Composites = Am Soc Test Mater Time Dependent and Nonlinear Effects in Polymers and Composites = Am. Soc. Test. Mater. Time Dependent Mechanical Response of Engineering Ceramics = Key Eng Mat Time Dependent Mechanical Response of Engineering Ceramics = Key. Eng. Mat. Time Dependent Mechanical Response of Engineering Ceramics = Key Eng Mater Time Dependent Mechanical Response of Engineering Ceramics = Key. Eng. Mater. Time-dependent Quantum Molecular Dynamics = Nato Adv Sci Inst Se Time-dependent Quantum Molecular Dynamics = Nato. Adv. Sci. Inst. Se. Time-dependent Scheduling = Monogr Theor Comput Time-dependent Scheduling = Monogr. Theor. Comput. Time-dependent Structure and Control of Arterial Blood Pressure = Ann Ny Acad Sci Time-dependent Structure and Control of Arterial Blood Pressure = Ann. Ny. Acad. Sci. Time-domain Beamforming and Blind Source Separation: Speech Input in The Car Environment = Lect Notes Electr En Time-domain Beamforming and Blind Source Separation: Speech Input in The Car Environment = Lect. Notes. Electr. En. Time Domain Methods in Electrodynamics = Springer Proc Phys Time Domain Methods in Electrodynamics = Springer. Proc. Phys. Time for Verification: Essays in Memory of Amir Pnueli = Lect Notes Comput Sc Time for Verification: Essays in Memory of Amir Pnueli = Lect. Notes. Comput. Sc. Time in Child Inuktitut: A Developmental Study of An Eskimo-aleut Language = Stud Lang Acquis Time in Child Inuktitut: A Developmental Study of An Eskimo-aleut Language = Stud. Lang. Acquis. Time in Groups = Res Manag Grp Team Time in Groups = Res. Manag. Grp. Team. Time in Natural Language: Syntactic Interfaces With Semantics and Discourse = Interface Explor Time in Natural Language: Syntactic Interfaces With Semantics and Discourse = Interface. Explor. Time in Organizational Research = Routl Stud Manag Org Time in Organizational Research = Routl. Stud. Manag. Org. Time in Quantum Mechanics, Second Edition = Lect Notes Phys Time in Quantum Mechanics, Second Edition = Lect. Notes. Phys. Time in Quantum Mechanics, Vol 2 = Lect Notes Phys Time in Quantum Mechanics, Vol 2 = Lect. Notes. Phys. Time-interleaved Analog-to-digital Converters = Analog Circ Sig Proc Time-interleaved Analog-to-digital Converters = Analog. Circ. Sig. Proc. Timeline (Columbus, Ohio) = Timeline Timely topics in medicine. Cardiovascular diseases = Timely Top Med Cardiovasc Dis Time & Mind-the Journal of Archaeology Consciousness and Culture = Time Mind Time & Mind-the Journal of Archaeology Consciousness and Culture = Time Mind. Time-of-flight Mass Spectrometry = Acs Sym Ser Time-of-flight Mass Spectrometry = Acs. Sym. Ser. Time, Order, Chaos = Stud Time Time, Order, Chaos = Stud. Time. Time-resolved Electron and X-ray Diffraction = P Soc Photo-opt Ins Time-resolved Electron and X-ray Diffraction = P. Soc. Photo-opt. Ins. Time-resolved Laser Spectroscopy in Biochemistry Iii = P Soc Photo-opt Ins Time-resolved Laser Spectroscopy in Biochemistry Iii = P. Soc. Photo-opt. Ins. Time-resolved Laser Spectroscopy in Biochemistry Ii, Pts 1 and 2 = P Soc Photo-opt Ins Time-resolved Laser Spectroscopy in Biochemistry Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Time-resolved Laser Spectroscopy in Biochemistry Iv, Proceedings Of = P Soc Photo-opt Ins Time-resolved Laser Spectroscopy in Biochemistry Iv, Proceedings Of = P. Soc. Photo-opt. Ins. Time Reversal - The Arthur Rich Memorial Symposium = Aip Conf Proc Time Reversal - The Arthur Rich Memorial Symposium = Aip. Conf. Proc. Timescales of The Paleomagnetic Field = Geoph Monog Series Timescales of The Paleomagnetic Field = Geoph. Monog. Series. Timescales of The Paleomagnetic Field = Geophys Monogr Ser Timescales of The Paleomagnetic Field = Geophys. Monogr. Ser. Time Series Analysis and Applications to Geophysical Systems = Ima V Math Time Series Analysis and Applications to Geophysical Systems = Ima. V. Math. Time Series Analysis and Applications to Geophysical Systems = Ima Vol Math Appl Time Series Analysis and Applications to Geophysical Systems = Ima. Vol. Math. Appl. Time Series Analysis and Its Applications: With R Examples, Third Edition = Springer Texts Stat Time Series Analysis and Its Applications: With R Examples, Third Edition = Springer. Texts. Stat. Time Series Analysis: With Applications in R, Second Edition = Springer Texts Stat Time Series Analysis: With Applications in R, Second Edition = Springer. Texts. Stat. Time Series Prediction: Forecasting The Future and Understanding The Past = Sfi S Sci C Time Series Prediction: Forecasting The Future and Understanding The Past = Sfi. S. Sci. C. Times (London, England : 1788) = Times (Lond) Time & Society = Time Soc Time & Society = Time Soc. Times of Convergence: Technologies Across Learning Contexts, Proceedings = Lect Notes Comput Sc Times of Convergence: Technologies Across Learning Contexts, Proceedings = Lect. Notes. Comput. Sc. Time, Space and Women's Lives in Early Modern Europe = Sixt Century Essays Time, Space and Women's Lives in Early Modern Europe = Sixt. Century. Essays. Time-space Compression: Historical Geographies = Routl Stud Hum Geogr Time-space Compression: Historical Geographies = Routl. Stud. Hum. Geogr. Times / Tennessee Hospital Association = Times Times = Times Time Structure of X-ray Sources and Its Applications = P Soc Photo-opt Ins Time Structure of X-ray Sources and Its Applications = P. Soc. Photo-opt. Ins. Time, Tense, and Reference = Bradford Books Time, Tense, and Reference = Bradford. Books. Time = Time Time-to-digital Converters = Spr Ser Adv Microele Time-to-digital Converters = Spr. Ser. Adv. Microele. Time-varying Network Optimization = Int Ser Oper Res Man Time-varying Network Optimization = Int. Ser. Oper. Res. Man. Time-varying Sliding Modes for Second and Third Order Systems = Lect Notes Contr Inf Time-varying Sliding Modes for Second and Third Order Systems = Lect. Notes. Contr. Inf. Timing and Location of Major Ore Deposits in An Evolving Orogen = Geol Soc Spec Publ Timing and Location of Major Ore Deposits in An Evolving Orogen = Geol. Soc. Spec. Publ. Timing and Temporality in Islamic Philosophy and Phenomenology of Life = Islam Ph Occident Timing and Temporality in Islamic Philosophy and Phenomenology of Life = Islam. Ph. Occident. Timing Neutron Stars = Nato Adv Sci I C-mat Timing Neutron Stars = Nato. Adv. Sci. I. C-mat. Timisoara medicala = Timisoara Med Timon of Phlius: Pyrrhonism Into Poetry = Unters Antiken Lit G Timon of Phlius: Pyrrhonism Into Poetry = Unters. Antiken. Lit. G. Tinnitus: Pathophysiology and Treatment = Prog Brain Res Tinnitus: Pathophysiology and Treatment = Prog. Brain. Res. Tip Fakultesi Mecmuasi, Istanbul Universitesi = Tip Fak. Mecm. Tip Fakultesi mecmuasi = Tip Fak Mecm Tire - Chassis- Roads = Vdi Bericht Tire - Chassis- Roads = Vdi. Bericht. Tires, Chassis and Roads = Vdi Bericht Tires, Chassis and Roads = Vdi. Bericht. Tires - Chassis - Road in The Interplay Between Costs, Technology and The Environment = Vdi Bericht Tires - Chassis - Road in The Interplay Between Costs, Technology and The Environment = Vdi. Bericht. Tires Chassis Roads = Vdi Bericht Tires Chassis Roads = Vdi. Bericht. Tires, Chassis, Roads = Vdi Bericht Tires, Chassis, Roads = Vdi. Bericht. Tire Science and Technology = Tire Sci. Technol. Tire Tread and Tire Track Evidence: Recovery and Forensic Examination = Crc Ser Pract Asp Cr Tire Tread and Tire Track Evidence: Recovery and Forensic Examination = Crc. Ser. Pract. Asp. Cr. Tiroler heimatblatter : Zeitschrift fur Geschichte, Natur und Volkskunde / herausgegeben vom Verein fur Heimatschutz und Heimatpflege in Tirol = Tirol Heimatbl Tiroler Heimat = Tirol Heim Tiryns. Forschungen und Berichte = Tiryns Tissue and Cell=Tissue Cell;; Tissue and Cell = Tissue Cell Tissue antigens = Tissue Antigens Tissue Antigens=Tissue Antigens;; Tissue Antigens = Tissue Antigens Tissue & cell = Tissue Cell Tissue & Cell = Tissue Cell Tissue Engineered Medical Products (temps) = Am Soc Test Mater Tissue Engineered Medical Products (temps) = Am. Soc. Test. Mater. Tissue Engineering = Adv Exp Med Biol Tissue Engineering = Adv. Exp. Med. Biol. Tissue Engineering and Regenerative Medicine = Tissue Eng Regen Med Tissue Engineering and Regenerative Medicine = Tissue Eng. Regen. Med. Tissue Engineering for Therapeutic Use 1 = Int Congr Ser Tissue Engineering for Therapeutic Use 1 = Int. Congr. Ser. Tissue Engineering for Therapeutic Use 2 = Int Congr Ser Tissue Engineering for Therapeutic Use 2 = Int. Congr. Ser. Tissue Engineering for Therapeutic Use 3 = Int Congr Ser Tissue Engineering for Therapeutic Use 3 = Int. Congr. Ser. Tissue Engineering for Therapeutic Use 4 = Int Congr Ser Tissue Engineering for Therapeutic Use 4 = Int. Congr. Ser. Tissue Engineering for Therapeutic Use 5 = Int Congr Ser Tissue Engineering for Therapeutic Use 5 = Int. Congr. Ser. Tissue Engineering for Therapeutic Use 6 = Int Congr Ser Tissue Engineering for Therapeutic Use 6 = Int. Congr. Ser. Tissue Engineering Ii: Basics of Tissue Engineering and Tissue Applications = Adv Biochem Eng Biot Tissue Engineering Ii: Basics of Tissue Engineering and Tissue Applications = Adv. Biochem. Eng. Biot. Tissue Engineering I: Scaffold Systems for Tissue Engineering = Adv Biochem Eng Biot Tissue Engineering I: Scaffold Systems for Tissue Engineering = Adv. Biochem. Eng. Biot. Tissue Engineering Part A = Tissue Eng. Part A Tissue Engineering Part A = Tissue Eng Pt A Tissue Engineering Part A = Tissue Eng. Pt. A Tissue Engineering Part B-reviews = Tissue Eng Part B-re Tissue Engineering Part B-reviews = Tissue Eng. Part B-re. Tissue Engineering Part B-reviews = Tissue Eng Pt B-rev Tissue Engineering Part B-reviews = Tissue Eng. Pt. B-rev. Tissue Engineering Part B = Tissue Eng. Part B Tissue Engineering Part C-methods = Tissue Eng Part C-me Tissue Engineering Part C-methods = Tissue Eng. Part C-me. Tissue Engineering Part C-methods = Tissue Eng Pt C-meth Tissue Engineering Part C-methods = Tissue Eng. Pt. C-meth. Tissue Engineering Part C = Tissue Eng. Part C Tissue Engineering, Stem Cells and Gene Therapies = Adv Exp Med Biol Tissue Engineering, Stem Cells and Gene Therapies = Adv. Exp. Med. Biol. Tissue engineering = Tissue Eng Tissue Engineering = Tissue Eng Tissue Engineering = Tissue Eng. Tissue Engineering Using Ceramics and Polymers = Woodhead Publ Mater Tissue Engineering Using Ceramics and Polymers = Woodhead. Publ. Mater. Tissue-inducing Biomaterials = Mater Res Soc Symp P Tissue-inducing Biomaterials = Mater. Res. Soc. Symp. P. Tissue Microarrays: Methods and Protocols = Methods Mol Biol Tissue Microarrays: Methods and Protocols = Methods Mol. Biol. Tissue Remodeling and Epithelial Morphogenesis = Curr Top Dev Biol Tissue Remodeling and Epithelial Morphogenesis = Curr. Top. Dev. Biol. Tissue Remodeling = Ann Ny Acad Sci Tissue Remodeling = Ann. Ny. Acad. Sci. Tissue Renin-angiotensin Systems = Adv Exp Med Biol Tissue Renin-angiotensin Systems = Adv. Exp. Med. Biol. Tissue Repair and Fibrosis = Curr Topics Pathol Tissue Repair and Fibrosis = Curr. Topics. Pathol. Tissue Restoration Through Regenerative Biology and Medicine = Adv Anat Embryol Cel Tissue Restoration Through Regenerative Biology and Medicine = Adv. Anat. Embryol. Cel. Tissue-specific Estrogen Action: Novel Mechanisms, Novel Ligands, Novel Therapies = Ernst Schering Found Tissue-specific Estrogen Action: Novel Mechanisms, Novel Ligands, Novel Therapies = Ernst. Schering. Found. Tissue-specific Metabolic Alterations in Diabetes = Front Diabetes Tissue-specific Metabolic Alterations in Diabetes = Front. Diabetes Tissue-specific Vascular Endothelial Signals and Vector Targeting, Part A = Adv Genet Tissue-specific Vascular Endothelial Signals and Vector Targeting, Part A = Adv. Genet. Titanate and Titania Nanotubes: Synthesis, Properties and Applications = Rsc Nanosci Nanotech Titanate and Titania Nanotubes: Synthesis, Properties and Applications = Rsc. Nanosci. Nanotech. Titanic 2010? The European Union and Its Failed Lisbon Strategy = Eur Polit Econ Secur Titanic 2010? The European Union and Its Failed Lisbon Strategy = Eur. Polit. Econ. Secur. Titanium Alloy: Modelling of Microstructure, Properties and Applications = Woodhead Publ Mater Titanium Alloy: Modelling of Microstructure, Properties and Applications = Woodhead. Publ. Mater. Titanium Alloys At Elevated Temperature: Structural Development and Service Behaviour = Micro High Temp Mat Titanium Alloys At Elevated Temperature: Structural Development and Service Behaviour = Micro. High. Temp. Mat. Titanium Alloys: Preparation, Properties and Applications = Mater Sci Technol Titanium Alloys: Preparation, Properties and Applications = Mater. Sci. Technol. Titanium, Niobium, Zirconium, and Tantalum for Medical and Surgical Applications = Am Soc Test Mater Titanium, Niobium, Zirconium, and Tantalum for Medical and Surgical Applications = Am. Soc. Test. Mater. T-i-t-journal of Life Sciences = T-i-t J Life Sci T-i-t-journal of Life Sciences = T-i-t. J. Life Sci. T.-I.-T. journal of life sciences = TIT J Life Sci TIT Journal of Life Sciences = TIT J. Life Sci. TKO = TKO T-labs Series in Telecommunication Services = T-lab Ser Telecommun T-labs Series in Telecommunication Services = T-lab. Ser. Telecommun. T\lasp bilisis A = T\lasp bilis. A. Razmadzis Saxel. Mat\lasp. Inst. Shromebi Tls-the Times Literary Supplement = Tls-times Lit Suppl Tls-the Times Literary Supplement = Tls-times. Lit. Suppl. T Lymphocytes = Nato Adv Sci I A-lif T Lymphocytes = Nato. Adv. Sci. I. A-lif. TMJ update = TMJ Update TMJ Update = TMJ Update Tm-technisches Messen = Tm-tech Mess Tm-technisches Messen = Tm-tech. Mess. Tnf Pathophysiology: Molecular and Cellular Mechanisms = Curr Dir Autoimmun Tnf Pathophysiology: Molecular and Cellular Mechanisms = Curr. Dir. Autoimmun. Tnf Receptor Associated Factors (trafs) = Adv Exp Med Biol Tnf Receptor Associated Factors (trafs) = Adv. Exp. Med. Biol. Tno Committee On Hydrological Research : Proceedings and Information = Comm Hydrol Tno Committee On Hydrological Research : Proceedings and Information = Comm. Hydrol. To Achieve Security and Wealth = Cornell E Asia Ser To Achieve Security and Wealth = Cornell. E. Asia. Ser. Tobacco and Cancer = Int Congr Ser Tobacco and Cancer = Int. Congr. Ser. Tobacco Control Policy Analysis in China: Economics and Health = Ser Contemp China Tobacco Control Policy Analysis in China: Economics and Health = Ser. Contemp. China. Tobacco control = Tob Control Tobacco Control=Tob Control;; Tobacco Control = Tob Control Tobacco Control = Tob. Control Tobacco Epidemic = Prog Respir Res Tobacco Epidemic = Prog. Respir. Res. Tobacco Epidemic = Prog R Res Tobacco Epidemic = Prog. R. Res. Tobacco in Russian History and Culture: The Seventeenth Century to The Present = Routl Stud Cult Hist Tobacco in Russian History and Culture: The Seventeenth Century to The Present = Routl. Stud. Cult. Hist. Tobacco Smoking and Atherosclerosis = Adv Exp Med Biol Tobacco Smoking and Atherosclerosis = Adv. Exp. Med. Biol. Tobacco Smoking and Nutrition = Ann Ny Acad Sci Tobacco Smoking and Nutrition = Ann. Ny. Acad. Sci. To Build and Be Built: Landscape, Literature, and The Construction of Zionist Identity = Jew Cult Context To Build and Be Built: Landscape, Literature, and The Construction of Zionist Identity = Jew. Cult. Context. Tocqueville, Lieber, and Bagehot: Liberalism Confronts The World = Palgr Mac Ser Hist Tocqueville, Lieber, and Bagehot: Liberalism Confronts The World = Palgr. Mac. Ser. Hist. Today's Catholic teacher = Todays Cathol Teach Today's Christian doctor : the journal of the Christian Medical & Dental Society = Todays Christ Dr Today's Engineer = Today's Engineer Today’s Engineer = Today’s Engineer Today's FDA : official monthly journal of the Florida Dental Association = Todays FDA Todays FDA = Todays FDA Today's health = Todays Health Today's nursing home = Todays Nurs Home Todays Nursing Home = Todays Nurs. Home Today's OR nurse = Todays OR Nurse Today's OR Nurse = Todays OR Nurse Today's surgical nurse = Todays Surg Nurse Today's Surgical Nurse = Todays Surg. Nurse Tod Der Konigin: Frauenopfer Und Politische Souveranitat Im Trauerspiel Des 17. Jahrhunderts = Quell Forsch Lit Kul Tod Der Konigin: Frauenopfer Und Politische Souveranitat Im Trauerspiel Des 17. Jahrhunderts = Quell. Forsch. Lit. Kul. Toeplitz Matrices and Singular Integral Equations = Oper Theor Toeplitz Matrices and Singular Integral Equations = Oper. Theor. Toeplitz Operators and Spectral Function Theory = Oper Theor Toeplitz Operators and Spectral Function Theory = Oper. Theor. Together With Technology = Baywoods Tech Commun Together With Technology = Baywoods. Tech. Commun. Tohogaku = Tohogaku Toho Igakkai zasshi. Journal of the Medical Society of Toho University = Toho Igakkai Zasshi Tohoku igaku zasshi = Tohoku Igaku Zasshi Tohoku Journal of Experimental Medicine=Tohoku J Exp Med;; Tohoku Journal of Experimental Medicine = Tohoku J Exp Med Tohoku Journal of Experimental Medicine = Tohoku J. Exp. Med. Tohoku Mathematical Journal = Tohoku Math J Tohoku Mathematical Journal = Tohoku Math. J. Tohoku Mathematical Publications = Tohoku Math. Publ. Tohoku Psychologica Folia = Tohoku Psychol Folia Tohoku Psychologica Folia = Tohoku Psychol. Folia Tohoku Shika Daigaku Gakkai shi = Tohoku Shika Daigaku Gakkai Shi Tohoku Shika Daigaku Gakkai Shi = Tohoku Shika Daigaku Gakkai Shi Tokai Journal of Experimental and Clinical Medicine=Tokai J Exp Clin Med;; Tokai Journal of Experimental and Clinical Medicine = Tokai J. Exp. Clin. Med. Tokamak Concept Improvement = Int Sch Pl Tokamak Concept Improvement = Int. Sch. Pl. Toko-ginecologia practica = Tokoginecol Pract Toko-Ginecologia Practica = Tokoginecol. Pract. Tokushima Journal of Experimental Medicine = Tokushima J. Exp. Med. Tokyo igaku. The Tokyo journal of medical sciences = Tokyo Igaku Tokyo Ika Daigaku Zasshi (Journal of Tokyo Medical College) = Tokyo Ika Daigaku Zasshi Tokyo Ika Shika Daigaku Iyo Kizai Kenkyusho Hokoku (Reports of the Institute for Medical and Dental Engineering, Tokyo Medical and Dental University) = Tokyo Ika Shika Daigaku Iyo Kizai Kenkyusho Hokoku Tokyo Journal of Mathematics = Tokyo J. Math. Toledot-journal of Jewish Genealogy = Toledot Toledot-journal of Jewish Genealogy = Toledot. Toleration: A Critical Introduction = Routl Contemp Polit Toleration: A Critical Introduction = Routl. Contemp. Polit. Toll-like Receptor Family Members and Their Ligands = Curr Top Microbiol Toll-like Receptor Family Members and Their Ligands = Curr. Top. Microbiol. Toll-like Receptors: Roles in Infection and Neuropathology = Curr Top Microbiol Toll-like Receptors: Roles in Infection and Neuropathology = Curr. Top. Microbiol. Tomato and Pepper Production in The Tropics = Avrdc Publ Tomato and Pepper Production in The Tropics = Avrdc. Publ. Tomatoes: Agricultural Procedures, Pathogen Interactions and Health Effects = Agr Issues Policies Tomatoes: Agricultural Procedures, Pathogen Interactions and Health Effects = Agr. Issues. Policies. Tommaso Campanella: The Book and The Body of Nature = Arch Int Hist Idees Tommaso Campanella: The Book and The Body of Nature = Arch. Int. Hist. Idees. Tomography in Nuclear Medicine = P S Iaea Tomography in Nuclear Medicine = P. S. Iaea. Tomography of Soil-water-root Processes = Sssa Spec Publ Tomography of Soil-water-root Processes = Sssa. Spec. Publ. Tomorrows Materials : Today, Book 1 and 2 = Sci Adv Mat Tomorrows Materials : Today, Book 1 and 2 = Sci. Adv. Mat. Tomorrow's World = Imeche Sem Tomorrow's World = Imeche. Sem. Tonan Ajia kenkyu = Tonan Ajia Kenkyu Tones and Tunes, Vol 1 = Phonol Phonet Tones and Tunes, Vol 1 = Phonol. Phonet. Tones and Tunes, Vol 2 = Phonol Phonet Tones and Tunes, Vol 2 = Phonol. Phonet. Tongji Daxue Xuebao = Tongji Daxue Xuebao Ziran Kexue Ban Tongking Gulf Through History = Encounters Asia Tongking Gulf Through History = Encounters. Asia. Tongmul Hakhoe chi = Tongmul Hakhoe Chi Tongue Ties: Logo-eroticism in Anglo-hispanic Literature = New Concepts Lat Am Tongue Ties: Logo-eroticism in Anglo-hispanic Literature = New. Concepts. Lat. Am. Toni Morrison's Beloved: Origins = Routl Transnat Persp Toni Morrison's Beloved: Origins = Routl. Transnat. Persp. Tonsils : A Clinically Oriented Update = Adv Oto-rhino-laryng Tonsils : A Clinically Oriented Update = Adv. Oto-rhino-laryng. Tonspuren: Erinnerungen An Den Holocaust Im Horspiel Der Ddr (1945-1989) = Medien Kult Erinneru Tonspuren: Erinnerungen An Den Holocaust Im Horspiel Der Ddr (1945-1989) = Medien. Kult. Erinneru. Tool and Manufacturing Engineer = Tool Manuf Eng Tool and Manufacturing Engineer = Tool Manuf. Eng. Tool and Object: A History and Philosophy of Category Theory = Sci Netw Hist Stud Tool and Object: A History and Philosophy of Category Theory = Sci. Netw. Hist. Stud. Tooling & Production = Tool Prod Tooling & Production = Tool. Prod. Tool Kits in Regional Science: Theory, Models, and Estimation = Adv Spat Sci Tool Kits in Regional Science: Theory, Models, and Estimation = Adv. Spat. Sci. Tools 24: Technology of Object-oriented Languages, Proceedings = Tools Tools 28: Technology of Object-oriented Languages, Proceedings = Tools Tools 29: Technology of Object-oriented Languages and Systems, Proceedings = Tools Tools 38: Technology of Object-oriented Languages and Systems, Proceedings = Tools Tools 39: Technology of Object-oriented Languages and Systems, Proceedings = Tools Tools and Algorithms for The Construction and Analysis of Systems = Lect Notes Comput Sc Tools and Algorithms for The Construction and Analysis of Systems = Lect. Notes. Comput. Sc. Tools and Algorithms for The Construction and Analysis of Systems, Proceedings = Lect Notes Comput Sc Tools and Algorithms for The Construction and Analysis of Systems, Proceedings = Lect. Notes. Comput. Sc. Tools and Algorithms for The Construction and Anaylsis of Systems, Proceedings = Lect Notes Comput Sc Tools and Algorithms for The Construction and Anaylsis of Systems, Proceedings = Lect. Notes. Comput. Sc. Tools and Applications With Artificial Intelligence = Stud Comp Intell Tools and Applications With Artificial Intelligence = Stud. Comp. Intell. Tools and Methods for Pollution Prevention = Nato Asi 2 Tools and Methods for Pollution Prevention = Nato. Asi. 2. Tools and Techniques for Modeling and Simulation, 24th Aipr Workshop = P Soc Photo-opt Ins Tools and Techniques for Modeling and Simulation, 24th Aipr Workshop = P. Soc. Photo-opt. Ins. Tools and Techniques for Transputer Applications ( Oug-12 ) = Occam Us Gr Tools and Techniques for Transputer Applications ( Oug-12 ) = Occam. Us. Gr. Tools for Computational Finance, Fourth Edition = Universitext Tools for Computational Finance, Fourth Edition = Universitext. Tools for Drought Mitigation in Mediterranean Regions = Water Trans Tools for Drought Mitigation in Mediterranean Regions = Water. Trans. Tools for Knowledge Organization and The Human Interface, Vol 1 = Adv Know Or Tools for Knowledge Organization and The Human Interface, Vol 1 = Adv. Know. Or. Tools for Knowledge Organization and The Human Interface, Vol 2 = Adv Know Or Tools for Knowledge Organization and The Human Interface, Vol 2 = Adv. Know. Or. Tools of Radio Astronomy, Fifth Edition = Astron Astrophys Lib Tools of Radio Astronomy, Fifth Edition = Astron. Astrophys. Lib. Tools = Tools Topical Applications and The Mucosa = Curr Probl Dermatol Topical Applications and The Mucosa = Curr. Probl. Dermatol. Topical Drug Delivery Formulations = Drugs Pharm Sci Topical Drug Delivery Formulations = Drugs. Pharm. Sci. Topical Problems of Nonlinear Wave Physics = P Soc Photo-opt Ins Topical Problems of Nonlinear Wave Physics = P. Soc. Photo-opt. Ins. Topical problems of psychotherapy = Top Probl Psychother Topical Problems of Psychotherapy = Top Probl Psychother Topical Problems of Psychotherapy = Top. Probl. Psychother. Topical Workshop On Low Radioactivity Techniques = Aip Conf Proc Topical Workshop On Low Radioactivity Techniques = Aip. Conf. Proc. Topical Worshop On Low Radioactivity Techniques = Aip Conf Proc Topical Worshop On Low Radioactivity Techniques = Aip. Conf. Proc. Topical Worshop On Low Radioactivity Techniques - Lrt 2010 = Aip Conf Proc Topical Worshop On Low Radioactivity Techniques - Lrt 2010 = Aip. Conf. Proc. Topic and Focus: Cross-linguistic Perspectives On Meaning and Intonation = Stud Linguist Philos Topic and Focus: Cross-linguistic Perspectives On Meaning and Intonation = Stud. Linguist. Philos. Topics and Trends in Experimental Structural Mechanics = Vdi Bericht Topics and Trends in Experimental Structural Mechanics = Vdi. Bericht. Topics in Aging Research in Europe = T Aging Res Topics in Aging Research in Europe = T. Aging Res. Topics in Algebraic and Topological K-theory = Lect Notes Math Topics in Algebraic and Topological K-theory = Lect. Notes. Math. Topics in Anaesthesia and Critical Care = Top Anaesth Crit Car Topics in Anaesthesia and Critical Care = Top. Anaesth. Crit. Car. Topics in Analysis and Its Applications = Nato Sci Ser Ii Math Topics in Analysis and Its Applications = Nato. Sci. Ser. Ii. Math. Topics in Applied Chemistry = Top Appl Chem Topics in Applied Chemistry = Top. Appl. Chem. Topics in Applied Electromagnetics and Communications = Ele Com Eng Topics in Applied Electromagnetics and Communications = Ele. Com. Eng. Topics in Applied Macrodynamic Theory = Dynam Mod Econ Econ Topics in Applied Macrodynamic Theory = Dynam. Mod. Econ. Econ. Topics in Applied Physics = Top Appl Phys Topics in Applied Physics = Top. Appl. Phys. Topics in Arrhythmias and Ischemic Heart Disease = Emerg Concept Cardio Topics in Arrhythmias and Ischemic Heart Disease = Emerg. Concept. Cardio. Topics in Artificial Intelligence = Lect Notes Artif Int Topics in Artificial Intelligence = Lect. Notes. Artif. Int. Topics in Artificial Intelligence, Proceedings = Lect Notes Artif Int Topics in Artificial Intelligence, Proceedings = Lect. Notes. Artif. Int. Topics in Astroparticle and Underground Physics (taup2009) = J Phys Conf Ser Topics in Astroparticle and Underground Physics (taup2009) = J. Phys. Conf. Ser. Topics in Atomic and Nuclear Collisions = Nato Adv Sci Inst Se Topics in Atomic and Nuclear Collisions = Nato. Adv. Sci. Inst. Se. Topics in Australasian Library and Information Studies = T Australas Lib Inf Topics in Australasian Library and Information Studies = T. Australas. Lib. Inf. Topics in Banach Space Theory = Grad Texts Math Topics in Banach Space Theory = Grad. Texts. Math. Topics in Biological and Inorganic Chemistry = Top. Biol. Inorg. Chem. Topics in Biomedical Engineering = Top Biomed Eng Topics in Biomedical Engineering = Top. Biomed. Eng. Topics in Bone Biology = Top Bone Biol Topics in Bone Biology = Top. Bone Biol. Topics in Canadian Weed Science = Top Can Weed Sci Topics in Canadian Weed Science = Top. Can. Weed Sci. Topics in Catalysis = Top Catal Topics in Catalysis = Top. Catal. Topics in clinical nursing = Top Clin Nurs Topics in Clinical Nursing = Top. Clin. Nurs. Topics in clinical nutrition = Top Clin Nutr Topics in Cognitive Science = Top Cogn Sci Topics in Cognitive Science = Top. Cogn. Sci. Topics in Companion Animal Medicine = Top Companion Anim M Topics in Companion Animal Medicine = Top. Companion Anim. M. Topics in Computational Wave Propagation = Lect Notes Comp Sci Topics in Computational Wave Propagation = Lect. Notes. Comp. Sci. Topics in Computer Mathematics = Topics in Comput. Math. Topics in Cryptology - Ct-ras 2001, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-ras 2001, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2003, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2003, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2004, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2004, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2005, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2005, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2006, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2006, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2007, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2007, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2008, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2008, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2009, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2009, Proceedings = Lect. Notes. Comput. Sc. Topics in Cryptology - Ct-rsa 2010, Proceedings = Lect Notes Comput Sc Topics in Cryptology - Ct-rsa 2010, Proceedings = Lect. Notes. Comput. Sc. Topics in current chemistry = Top Curr Chem Topics in Current Chemistry = Top Curr Chem Topics in Current Chemistry = Top. Curr. Chem. Topics in Current Genetics = Top Curr Genet Topics in Current Genetics = Top. Curr. Genet. Topics in Digestive Disease 1 = Persp Dig D Topics in Digestive Disease 1 = Persp. Dig. D. Topics in Digestive Disease 2 = Persp Dig D Topics in Digestive Disease 2 = Persp. Dig. D. Topics in Discrete Mathematics = Topics Discrete Math. Topics in Dynamic Model Analysis = Lect Notes Comput Sc Topics in Dynamic Model Analysis = Lect. Notes. Comput. Sc. Topics in Early Childhood Special Education = Top Early Child Spec Topics in Early Childhood Special Education = Top. Early Child. Spec. Topics in Early Modern Philosophy of Mind = Stud Hist Philos Min Topics in Early Modern Philosophy of Mind = Stud. Hist. Philos. Min. Topics in Electron Diffraction and Microscopy of Materials = Micro Mat Sci S Topics in Electron Diffraction and Microscopy of Materials = Micro. Mat. Sci. S. Topics in emergency medicine = Top Emerg Med Topics in Emergency Medicine = Top. Emerg. Med. Topics in Engineering = T Engineer Topics in Engineering = T. Engineer. Topics in Engineering = Topics Engrg. Topics in English Linguistics = Top Eng Ling Topics in English Linguistics = Top. Eng. Ling. Topics in English Linguistics = Top Eng Lit Topics in English Linguistics = Top. Eng. Lit. Topics in English Linguistics = Top Engl Linguist Topics in English Linguistics = Top. Engl. Linguist. Topics in Extrinsic Geometry of Codimension-one Foliations = Springerbrief Math Topics in Extrinsic Geometry of Codimension-one Foliations = Springerbrief. Math. Topics in Finite Elasticity = Cism Cour L Topics in Finite Elasticity = Cism. Cour. L. Topics in Finite Elasticity = Cism Courses Lect Topics in Finite Elasticity = Cism. Courses. Lect. Topics in Fluorescence Spectroscopy = Top. Fluoresc. Spectrosc. Topics in Geobiology = T Geobiol Topics in Geobiology = T. Geobiol. Topics in Geobiology = Top Geobiol Topics in Geobiology = Top. Geobiol. Topics in Geometry, Coding Theory and Cryptography = Algebra Appl Topics in Geometry, Coding Theory and Cryptography = Algebra. Appl. Topics in Geriatric Rehabilitation = Top Geriatr Rehabil Topics in Geriatric Rehabilitation = Top. Geriatr. Rehabil. Topics in Gravitational Dynamics: Solar, Extra-solar and Galactic Systems = Lect Notes Phys Topics in Gravitational Dynamics: Solar, Extra-solar and Galactic Systems = Lect. Notes. Phys. Topics in Harmonic Analysis and Ergodic Theory = Contemp Math Topics in Harmonic Analysis and Ergodic Theory = Contemp. Math. Topics in health care financing = Top Health Care Financ Topics in Health Care Financing = Top. Health Care Financ. Topics in health information management = Top Health Inf Manage Topics in Health Information Management = Top. Health Inf. Manage. Topics in health record management = Top Health Rec Manage Topics in Health Record Management = Top. Health Rec. Manage. Topics in Heterocyclic Chemistry = Top Heterocycl Chem Topics in Heterocyclic Chemistry = Top. Heterocycl. Chem. Topics in HIV medicine : a publication of the International AIDS Society, USA = Top HIV Med Topics in hospital law = Top Hosp Law Topics in hospital pharmacy management / Aspen Systems Corporation = Top Hosp Pharm Manage Topics in Hospital Pharmacy Management = Top. Hosp. Pharm. Manage. Topics in Hyperplane Arrangements, Polytopes and Box-splines = Universitext Topics in Hyperplane Arrangements, Polytopes and Box-splines = Universitext. Topics in Industrial Microbiology = T Ind Micr Topics in Industrial Microbiology = T. Ind. Micr. Topics in Inorganic Chemistry = Top. Inorg. Chem. Topics in Kinetic Theory = Fields Inst Commun Topics in Kinetic Theory = Fields. Inst. Commun. Topics in Knot Theory = Nato Adv Sci Inst Se Topics in Knot Theory = Nato. Adv. Sci. Inst. Se. Topics in Kwa Syntax = Stud Nat Lang Lingui Topics in Kwa Syntax = Stud. Nat. Lang. Lingui. Topics in Language Disorders = Top Lang Disord Topics in Language Disorders = Top. Lang. Disord. Topics in magnetic resonance imaging : TMRI = Top Magn Reson Imaging Topics in Magnetic Resonance Imaging = Top Magn Reson Imag Topics in Magnetic Resonance Imaging = Top. Magn. Reson. Imag. Topics in Magnetic Resonance Imaging = Top. Magn. Reson. Imaging Topics In Magnetic Resonance IMAging=Top Magn Reson Imaging;; Topics in Matrix and Operator Theory = Oper Theor Topics in Matrix and Operator Theory = Oper. Theor. Topics in Medicinal Chemistry Series = Top Med Chem Ser Topics in Medicinal Chemistry Series = Top. Med. Chem. Ser. Topics in Molecular Organization and Engineering = T Molec Org Topics in Molecular Organization and Engineering = T. Molec. Org. Topics in Multidimenisional Linear Systems Theory = Lect Notes Contr Inf Topics in Multidimenisional Linear Systems Theory = Lect. Notes. Contr. Inf. Topics in Neuroscience = Topics Neurosci Topics in Neuroscience = Topics Neurosci. Topics in Neuroscience = Top Neurosci Topics in Neuroscience = Top. Neurosci. Topics in Nonconvex Optimization: Theory and Applications = Springer Ser Optim A Topics in Nonconvex Optimization: Theory and Applications = Springer. Ser. Optim. A. Topics in Operator Semigroups = Prog Math Topics in Operator Semigroups = Prog. Math. Topics in Operator Theory: Operators, Matrices and Analytic Functions, Vol 1 = Oper Theor Topics in Operator Theory: Operators, Matrices and Analytic Functions, Vol 1 = Oper. Theor. Topics in Operator Theory: Operators, Matrices and Analytic Functions, Vol 1 = Oper Theory Adv Appl Topics in Operator Theory: Operators, Matrices and Analytic Functions, Vol 1 = Oper. Theory. Adv. Appl. Topics in Operator Theory, Vol 2 = Oper Theory Adv Appl Topics in Operator Theory, Vol 2 = Oper. Theory. Adv. Appl. Topics in Orbit Equivalence = Lect Notes Math Topics in Orbit Equivalence = Lect. Notes. Math. Topics in Organometallic Chemistry = Top Organometal Chem Topics in Organometallic Chemistry = Top. Organometal. Chem. Topics in Organometallic Chemistry = Top. Organomet. Chem. Topics in Physical Chemistry: A Series of Advanced Textbooks and Monographs = T Phys Chem Ser Topics in Physical Chemistry: A Series of Advanced Textbooks and Monographs = T. Phys. Chem. Ser. Topics in Physical Chemistry = Top. Phys. Chem. Topics in Regulatory Economics and Policy Series = T Reg Econ Topics in Regulatory Economics and Policy Series = T. Reg. Econ. Topics in Regulatory Economics and Policy = T Reg Econ Topics in Regulatory Economics and Policy = T. Reg. Econ. Topics in Safety Risk Reliability and Quality = Top Saf Reliab Qual Topics in Safety Risk Reliability and Quality = Top. Saf. Reliab. Qual. Topics in Safety Risk Reliability and Quality = Top Saf Risk Reliab Topics in Safety Risk Reliability and Quality = Top. Saf. Risk Reliab. Topics in Social Psychiatry = T Soc Psych Topics in Social Psychiatry = T. Soc. Psych. Topics in Spatial Stochastic Processes = Lect Notes Math Topics in Spatial Stochastic Processes = Lect. Notes. Math. Topics in spinal cord injury rehabilitation = Top Spinal Cord Inj Rehabil Topics in Stereochemistry = Top Stereochem Topics in Stereochemistry = Top. Stereochem. Topics in Stereochemistry, Vol 21 = Top Stereochem Topics in Stereochemistry, Vol 21 = Top. Stereochem. Topics in Stereochemistry, Vol 23 = Top Stereochem Topics in Stereochemistry, Vol 23 = Top. Stereochem. Topics in Strangeness Nuclear Physics = Lect Notes Phys Topics in Strangeness Nuclear Physics = Lect. Notes. Phys. Topics in stroke rehabilitation = Top Stroke Rehabil Topics in Stroke Rehabilitation = Top Stroke Rehabil Topics in Stroke Rehabilitation = Top. Stroke Rehabil. Topics in Structural Heart Disease = Emerg Concept Cardio Topics in Structural Heart Disease = Emerg. Concept. Cardio. Topics in Symplectic 4-manifolds, Vol 1, First International Press Lecture Series = Geometry Topology Bo Topics in Symplectic 4-manifolds, Vol 1, First International Press Lecture Series = Geometry. Topology. Bo. Topics in The Economics of Aging = Nat Bur Ec Topics in The Economics of Aging = Nat. Bur. Ec. Topics in Theoretical and Computational Nanoscience: From Controlling Light At The Nanoscale to Calculating Quantum Effects With Classical Electrodynamics = Springer Theses-reco Topics in Theoretical and Computational Nanoscience: From Controlling Light At The Nanoscale to Calculating Quantum Effects With Classical Electrodynamics = Springer. Theses-reco. Topics in The Theory of Chemical and Physical Systems = Prog T Chem Topics in The Theory of Chemical and Physical Systems = Prog. T. Chem. Topics in The Theory of Chemical and Physical Systems = Prog Theor Chem Phys Topics in The Theory of Chemical and Physical Systems = Prog. Theor. Chem. Phys. Topics in Time Delay Systems: Analysis, Algorithms and Control = Lect Notes Contr Inf Topics in Time Delay Systems: Analysis, Algorithms and Control = Lect. Notes. Contr. Inf. Topics in Topology = Lect Notes Math Topics in Topology = Lect. Notes. Math. Topics in Validated Computations = Stud Comput Math Topics in Validated Computations = Stud. Comput. Math. Topics of Current Scientific Interest in Tobacco Research = Rec Adv Tob Topics of Current Scientific Interest in Tobacco Research = Rec. Adv. Tob. Topics On Beef Cattle Research in Arkansas, 1993 = Arkansas Aes Spec Re Topics On Beef Cattle Research in Arkansas, 1993 = Arkansas. Aes. Spec. Re. Topics On Beef Cattle Research in Arkansas = Arkansas Aes Spec Re Topics On Beef Cattle Research in Arkansas = Arkansas Aes. Spec. Re. Topics On Riemann Surfaces and Fuchsian Groups = Lond Math S Topics On Riemann Surfaces and Fuchsian Groups = Lond. Math. S. Topik Des Sonetts: Gattungstheorie Und Gattungsgeschichte = Fruhe Neuzeit-stud D Topik Des Sonetts: Gattungstheorie Und Gattungsgeschichte = Fruhe. Neuzeit-stud. D. Topographical Stories: Studies in Landscape and Architecture = Penn Stud Landsc Arc Topographical Stories: Studies in Landscape and Architecture = Penn. Stud. Landsc. Arc. Topographies of Power in The Early Middle Ages = Transfor Roman World Topographies of Power in The Early Middle Ages = Transfor. Roman. World. Topoi: an international review of philosophy = Topoi(Dordrecht) Topoi-an International Review of Philosophy = Topoi-int Rev Philos Topoi-an International Review of Philosophy = Topoi-int. Rev. Philos. Topoi Library = Topoi Libr Topoi Library = Topoi Libr. Topoi: Orient-Occident = Topoi(Lyon) Topoi = Topoi Topological Algebras and Applications = Contemp Math Topological Algebras and Applications = Contemp. Math. Topological and Asymptotic Aspects of Group Theory = Contemp Math Topological and Asymptotic Aspects of Group Theory = Contemp. Math. Topological Approximation Methods for Evolutionary Problems of Nonlinear Hydrodynamics = Degruyter Ser Nonlin Topological Approximation Methods for Evolutionary Problems of Nonlinear Hydrodynamics = Degruyter. Ser. Nonlin. Topological Aspects of Low Dimensional Systems = Les Houch S Topological Aspects of Low Dimensional Systems = Les. Houch. S. Topological Defects and The Non-equilibrium Dynamics of Symmetry Breaking Phase Transitions = Nato Adv Sci I C-mat Topological Defects and The Non-equilibrium Dynamics of Symmetry Breaking Phase Transitions = Nato. Adv. Sci. I. C-mat. Topological Degree Approach to Bifurcation Problems = Topol Fixed Point Th Topological Degree Approach to Bifurcation Problems = Topol. Fixed. Point. Th. Topological Fixed Point Theory and Applications = Lect Notes Math Topological Fixed Point Theory and Applications = Lect. Notes. Math. Topological Fixed Point Theory and Its Applications = Topol Fixed Point Th Topological Fixed Point Theory and Its Applications = Topol. Fixed Point Th. Topological Library Pt 1: Cobordisms and Their Applications = Ser Knots Everything Topological Library Pt 1: Cobordisms and Their Applications = Ser. Knots. Everything. Topological Methods for Variational Problems With Symmetries = Lect Notes Math Topological Methods for Variational Problems With Symmetries = Lect. Notes. Math. Topological Methods in Algebraic Transformation Groups = Prog Math Topological Methods in Algebraic Transformation Groups = Prog. Math. Topological Methods in Differential Equations and Inclusions = Nato Adv Sci Inst Se Topological Methods in Differential Equations and Inclusions = Nato. Adv. Sci. Inst. Se. Topological Methods in Nonlinear Analysis = Topol Method Nonl An Topological Methods in Nonlinear Analysis = Topol. Method. Nonl. An. Topological Methods in Nonlinear Analysis = Topol. Methods Nonlinear Anal. Topological Properties of Rauzy Fractals = Mem Soc Math Fr Topological Properties of Rauzy Fractals = Mem. Soc. Math. Fr. Topology and Geometry for Physics = Lect Notes Phys Topology and Geometry for Physics = Lect. Notes. Phys. Topology and Geometry in Physics = Lect Notes Phys Topology and Geometry in Physics = Lect. Notes. Phys. Topology and Its Applications = Topol Appl Topology and Its Applications = Topol. Appl. Topology and its Applications = Topology Appl. Topology and Robotics = Contemp Math Topology and Robotics = Contemp. Math. Topology-based Methods in Visualization Ii = Math Visual Topology-based Methods in Visualization Ii = Math. Visual. Topology-based Methods in Visualization = Math Visual Topology-based Methods in Visualization = Math. Visual. Topology Contstruction for Bootstrapping Peer-to-peer Systems Over Ad-hoc Networks = Comput Netw Ser Topology Contstruction for Bootstrapping Peer-to-peer Systems Over Ad-hoc Networks = Comput. Netw. Ser. Topology Design of Structures = Nato Adv Sci Inst Se Topology Design of Structures = Nato. Adv. Sci. Inst. Se. Topology, Geometry, and Gauge Fields: Foundations, Second Edition = Texts Appl Math Topology, Geometry, and Gauge Fields: Foundations, Second Edition = Texts. Appl. Math. Topology, Geometry and Gauge Fields: Interactions, Second Edition = Appl Math Sci Topology, Geometry and Gauge Fields: Interactions, Second Edition = Appl. Math. Sci. Topology in Condensed Matter = Springer Series Soli Topology in Condensed Matter = Springer. Series. Soli. Topology in Molecular Biology = Biol Med Phys Biomed Topology in Molecular Biology = Biol. Med. Phys. Biomed. Topology of Algebraic Varieties and Singularities = Contemp Math Topology of Algebraic Varieties and Singularities = Contemp. Math. Topology of Singular Fibers of Differentiable Maps = Lect Notes Math Topology of Singular Fibers of Differentiable Maps = Lect. Notes. Math. Topology Optimization of Structures and Composite Continua = Nato Sci Ser Ii-math Topology Optimization of Structures and Composite Continua = Nato. Sci. Ser. Ii-math. Topology Optimization of Structures and Composite Continua = Nato Sci Ser Ii Math Topology Optimization of Structures and Composite Continua = Nato. Sci. Ser. Ii. Math. Topology Proceedings (monographic Series) = Topol P Topology Proceedings (monographic Series) = Topol. P. Topology Proceedings = Topology Proc. Topology Proceedings = Topol P Topology Proceedings = Topol. P. Topology Proceedings, Vol 18, 1993 = Topol P Topology Proceedings, Vol 18, 1993 = Topol. P. Topology Proceedings, Vol 26, No 1, 2001-2002 = Topol P Topology Proceedings, Vol 26, No 1, 2001-2002 = Topol. P. Topology Proceedings, Vol 26, No 2, 2001-2002 = Topol P Topology Proceedings, Vol 26, No 2, 2001-2002 = Topol. P. Topology Proceedings, Vol 27, No 1, 2003 = Topol P Topology Proceedings, Vol 27, No 1, 2003 = Topol. P. Topology Proceedings, Vol 27, No 2, 2003 = Topol P Topology Proceedings, Vol 27, No 2, 2003 = Topol. P. Topology Proceedings, Vol 28, No 1, 2004 = Topol P Topology Proceedings, Vol 28, No 1, 2004 = Topol. P. Topology Proceedings, Vol 28, No 2, 2004 = Topol P Topology Proceedings, Vol 28, No 2, 2004 = Topol. P. Topology Proceedings, Vol 29, No 1, 2005 = Topol P Topology Proceedings, Vol 29, No 1, 2005 = Topol. P. Topology Proceedings, Vol 33 = Topol P Topology Proceedings, Vol 33 = Topol. P. Topology Proceedings, Vol 34 = Topol P Topology Proceedings, Vol 34 = Topol. P. Topology Proceedings, Vol 35 = Topol P Topology Proceedings, Vol 35 = Topol. P. Topology Proceedings, Vol 36 = Topol P Topology Proceedings, Vol 36 = Topol. P. Topology = Topology Topology = Topology Topology With Applications = Bolyai Math Stud Topology With Applications = Bolyai. Math. Stud. Top Ten Algorithms in Data Mining = Ch Crc Data Min Know Top Ten Algorithms in Data Mining = Ch. Crc. Data Min. Know. Top = Top Top = Top Torace = Torace Torasemide : Clinical Pharmacology and Therapeutic Applications = Pr Pharm Cl Torasemide : Clinical Pharmacology and Therapeutic Applications = Pr. Pharm. Cl. Torax = Torax To Rejoice As Women = Women Conf Ser To Rejoice As Women = Women Conf. Ser. Toric Topology = Contemp Math Toric Topology = Contemp. Math. Toronto journal of theology = Tor J Theol Toronto star = Tor Star Toronto Studies in Philosophy = Toronto St Philos Toronto Studies in Philosophy = Toronto St. Philos. Toronto Studies in Theology = Toronto St Toronto Studies in Theology = Toronto St. Torreon medico = Torreon Med Tort and Insurance Law Journal = Tort Insur. Law J. Tort and Insurance Law = Tort Insurance Law Tort and Insurance Law = Tort Insur Law Tort and Insurance Law = Tort Insur. Law Tor-target of Rapamycin = Curr Top Microbiol Tor-target of Rapamycin = Curr. Top. Microbiol. Tortenelmi szemle = Tortenelmi Sz Torteneti statisztikai tanulmanyok / Kozponti Statisztikai Hivatal Konyvtara, Magyar Orszagos Leveltar = Tort Stat Tanulm Tort & insurance law journal = Tort Insur Law J Tort & Insurance Law Journal = Tort Insur Law J Tort & Insurance Law Journal = Tort Insur. Law J. Tort trial & insurance practice law journal = Tort Trial Insur Pract Law J Torture : quarterly journal on rehabilitation of torture victims and prevention of torture = Torture Torture, Truth and Justice:the Case of Timor-leste = Polit Asia Torture, Truth and Justice:the Case of Timor-leste = Polit. Asia. Toscana Musei = Toscana Musei Toshiba Review = Toshiba Rev Toshiba Review = Toshiba Rev. Total Colour Management in Textiles = Woodhead Text Ser Total Colour Management in Textiles = Woodhead. Text. Ser. Total Hip Revision Surgery = Bris Myer Z Total Hip Revision Surgery = Bris. Myer. Z. Totalitarianism and Political Religions, Vol 2: Concepts for The Comparison of Dictatorships = Total Mov Polit Reli Totalitarianism and Political Religions, Vol 2: Concepts for The Comparison of Dictatorships = Total. Mov. Polit. Reli. Totalitarianism and Political Religions, Volume Iii = Total Mov Polit Reli Totalitarianism and Political Religions, Volume Iii = Total. Mov. Polit. Reli. Totalitarian Movements and Political Religions = Total Mov Polit Reli Totalitarian Movements and Political Religions = Total. Mov. Polit. Reli. Total Maximum Daily Load (tmdl): Environmental Regulations, Proceedings = Asae Publ Total Maximum Daily Load (tmdl): Environmental Regulations, Proceedings = Asae. Publ. Total Positivity and Its Applications = Math Appl Total Positivity and Its Applications = Math. Appl. Total Quality in The Chemical Industry = Roy Soc Ch Total Quality in The Chemical Industry = Roy. Soc. Ch. Total Quality Management & Business Excellence = Total Qual Manag Bus Total Quality Management & Business Excellence = Total Qual. Manag. Bus. Total Quality Management = Total Qual Manage Total Quality Management = Total Qual. Manage. To The Edge of The Solar System and Beyond = Adv Space Res To The Edge of The Solar System and Beyond = Adv. Space. Res. To The Edge of The Solar System and Beyond = Adv Space Res-series To The Edge of The Solar System and Beyond = Adv. Space. Res-series. Totung Unschuldiger: Ein Dogma Auf Dem Prufstand = Ideen Argumente Totung Unschuldiger: Ein Dogma Auf Dem Prufstand = Ideen. Argumente. Touch in Virtual Environments = Pren Hal Imsc P Mult Touch in Virtual Environments = Pren. Hal. Imsc. P. Mult. Touchstone (Nashville, Tenn.) = Touchstone (Nashv) Touch, Temperature, and Pain in Health and Disease = Prog Pain Res Manag Touch, Temperature, and Pain in Health and Disease = Prog. Pain Res. Manag. Touch The Future With A Smart Touch = Vtt Res Notes Touch The Future With A Smart Touch = Vtt. Res. Notes. Toughened Plastics Ii = Adv Chem Ser Toughened Plastics Ii = Adv. Chem. Ser. Toughening Mechanisms in Quasi-brittle Materials = Nato Adv Sci I E-app Toughening Mechanisms in Quasi-brittle Materials = Nato. Adv. Sci. I. E-app. Toulouse = Ann. Fac. Sci. Toulouse Math. (6) Toulouse Lectures in Economics = Toulouse Lect Econ Toulouse Lectures in Economics = Toulouse Lect. Econ. Toulouse medical = Toulouse Med Toung Pao = Toung Pao Tourette Syndrome = Adv Neurol Tourette Syndrome = Adv. Neurol. Tourism and Agriculture: New Geographies of Consumption, Production and Rural Restructuring = Contemp Geogr Leis T Tourism and Agriculture: New Geographies of Consumption, Production and Rural Restructuring = Contemp. Geogr. Leis. T. Tourism and Development in The Developing World = Routl Perspect Dev Tourism and Development in The Developing World = Routl. Perspect. Dev. Tourism and Environment: The Natural, Cultural and Socio-economic Challenges of Sustainable Tourism, Proceedings = Environ Encount Tourism and Environment: The Natural, Cultural and Socio-economic Challenges of Sustainable Tourism, Proceedings = Environ. Encount. Tourism and Global Environmental Change = Contemp Geogr Leis T Tourism and Global Environmental Change = Contemp. Geogr. Leis. T. Tourism and Hospitality Development and Management = Tour Hosp Dev Manag Tourism and Hospitality Development and Management = Tour. Hosp. Dev. Manag. Tourism and Hospitality Management=Tourism Hospitality Manage. Tourism and Innovation = Contemp Geogr Leis T Tourism and Innovation = Contemp. Geogr. Leis. T. Tourism and National Identities: An International Perspective = Contemp Geogr Leis T Tourism and National Identities: An International Perspective = Contemp. Geogr. Leis. T. Tourism and The Consumption of Wildlife: Hunting, Shooting and Sport Fishing = Contemp Geogr Leis T Tourism and The Consumption of Wildlife: Hunting, Shooting and Sport Fishing = Contemp. Geogr. Leis. T. Tourism and Tibetan Culture in Transition: A Place Called Shangrila = Routl Contemp China Tourism and Tibetan Culture in Transition: A Place Called Shangrila = Routl. Contemp. China. Tourism At The Grassroots: Villagers and Visitors in The Asia-pacific = Contemp Geogr Leis T Tourism At The Grassroots: Villagers and Visitors in The Asia-pacific = Contemp. Geogr. Leis. T. Tourism Branding: Communities in Action = Bridg Tour Theor Pra Tourism Branding: Communities in Action = Bridg. Tour. Theor. Pra. Tourism, Creativity and Development = Contemp Geogr Leis T Tourism, Creativity and Development = Contemp. Geogr. Leis. T. Tourism Economics=Tourism Econ. Tourism Economics = Tourism Econ Tourism Economics = Tourism Econ. Tourism Enterprises and Sustainable Development: International Perspectives On Responses to The Sustainability Agenda = Routl Adv Tour Tourism Enterprises and Sustainable Development: International Perspectives On Responses to The Sustainability Agenda = Routl. Adv. Tour. Tourism, Ethnic Diversity and The City = Contemp Geogr Leis T Tourism, Ethnic Diversity and The City = Contemp. Geogr. Leis. T. Tourism Geographies = Tourism Geogr Tourism Geographies = Tourism Geogr. Tourism in China: Destination, Cultures and Communities = Routl Adv Tour Tourism in China: Destination, Cultures and Communities = Routl. Adv. Tour. Tourism Management = Tourism Manage Tourism Management = Tourism Manage. Tourism, Power and Space = Contemp Geogr Leis T Tourism, Power and Space = Contemp. Geogr. Leis. T. Tourism, Religion and Spiritual Journeys = Contemp Geogr Leis T Tourism, Religion and Spiritual Journeys = Contemp. Geogr. Leis. T. Tourism Social Science Series = Tour Soc Sci Ser Tourism Social Science Series = Tour. Soc. Sci. Ser. Tourist Mobility and Advanced Tracking Technologies = Routl Adv Tour Tourist Mobility and Advanced Tracking Technologies = Routl. Adv. Tour. Touro law review = Touro Law Rev Tours Symposium On Nuclear Physics and Astrophysics - Vii = Aip Conf Proc Tours Symposium On Nuclear Physics and Astrophysics - Vii = Aip. Conf. Proc. Tours Symposium On Nuclear Physics Iii = Aip Conf Proc Tours Symposium On Nuclear Physics Iii = Aip. Conf. Proc. Tours Symposium On Nuclear Physics Vi = Aip Conf Proc Tours Symposium On Nuclear Physics Vi = Aip. Conf. Proc. Toward A Broader Understanding of Stress and Coping: Mixed Methods Approaches = Res Stress Coping Ed Toward A Broader Understanding of Stress and Coping: Mixed Methods Approaches = Res. Stress Coping. Ed. Toward A Competitive Telecommunication Industry = Lea Telecommun Toward A Competitive Telecommunication Industry = Lea. Telecommun. Toward A Critique of Guilt-perspectives From Law and The Humanities = Stud Law Politics So Toward A Critique of Guilt-perspectives From Law and The Humanities = Stud. Law Politics. So. Toward A Molecular Basis of Alcohol Use and Abuse = Exs Toward A Molecular Basis of Alcohol Use and Abuse = Exs. Toward A New World Order : Adjusting India / U.s. Relations = Res Pap Pol Toward A New World Order : Adjusting India / U.s. Relations = Res. Pap. Pol. Toward An International Virtual Observatory = Eso Astrophy Symp Toward An International Virtual Observatory = Eso. Astrophy. Symp. Toward Anti-adhesion Therapy for Microbial Diseases = Adv Exp Med Biol Toward Anti-adhesion Therapy for Microbial Diseases = Adv. Exp. Med. Biol. Toward A Practice of Autonomous Systems = From Anim Animat Toward A Practice of Autonomous Systems = From. Anim. Animat. Toward A Revolution in Military Affairs? = Contrib Mil Stud Toward A Revolution in Military Affairs? = Contrib. Mil. Stud. Toward A Science of Consciousness = Com Adap Sy Toward A Science of Consciousness = Com. Adap. Sy. Toward A Science of Consciousness Ii = From Anim Animat Toward A Science of Consciousness Ii = From. Anim. Animat. Toward A Science of Consciousness Iii = From Anim Animat Toward A Science of Consciousness Iii = From. Anim. Animat. Toward A Typology of European Languages = Emp App Lan Toward A Typology of European Languages = Emp. App. Lan. Toward Autonomous, Adaptive, and Context-aware Multimodal Interfaces: Theoretical and Practical Issues = Lect Notes Comput Sc Toward Autonomous, Adaptive, and Context-aware Multimodal Interfaces: Theoretical and Practical Issues = Lect. Notes. Comput. Sc. Toward Category-level Object Recognition = Lect Notes Comput Sc Toward Category-level Object Recognition = Lect. Notes. Comput. Sc. Toward Ecologically Sound Fertilization Strategies for Field Vegetable Production = Acta Hortic Toward Ecologically Sound Fertilization Strategies for Field Vegetable Production = Acta. Hortic. Toward Greater Understanding and Use of The World Heritage Convention = Occas Pap Herit Res Toward Greater Understanding and Use of The World Heritage Convention = Occas. Pap. Herit. Res. Toward Personalized Medicine for Cancer = Ann Ny Acad Sci Toward Personalized Medicine for Cancer = Ann. Ny. Acad. Sci. Towards A Brighter Tomorrow = Res Afr Am Educ Towards A Brighter Tomorrow = Res. Afr. Am. Educ. Towards A Cleaner Plant: Energy for The Future = Environ Sci Eng Towards A Cleaner Plant: Energy for The Future = Environ. Sci. Eng. Towards A European Labour Identity:the Case of The European Works Council = Routl Res Employ Rel Towards A European Labour Identity:the Case of The European Works Council = Routl. Res. Employ. Rel. Towards Affordance-based Robot Control = Lect Notes Artif Int Towards Affordance-based Robot Control = Lect. Notes. Artif. Int. Towards A Global Community: Educating for Tomorrow's World = Educ Asia Pac Reg-is Towards A Global Community: Educating for Tomorrow's World = Educ. Asia. Pac. Reg-is. Towards An Integrated Global Geodetic Observing System (iggos) = Iag Symp Towards An Integrated Global Geodetic Observing System (iggos) = Iag. Symp. Towards An Optical Internet = Int Fed Info Proc Towards An Optical Internet = Int. Fed. Info. Proc. Towards An Understanding of Language Learner Self- Concept = Educ Linguist Towards An Understanding of Language Learner Self- Concept = Educ. Linguist. Towards A Semantic Web: Connecting Knowledge in Academic Research = Chandos Internet Ser Towards A Semantic Web: Connecting Knowledge in Academic Research = Chandos. Internet. Ser. Towards A Service-based Internet = Lect Notes Comput Sc Towards A Service-based Internet = Lect. Notes. Comput. Sc. Towards A Sustainable Urban Environment = World B Dis Towards A Sustainable Urban Environment = World. B. Dis. Towards A Theory of Thinking: Building Blocks for A Conceptual Framework = On Thinking Towards A Theory of Thinking: Building Blocks for A Conceptual Framework = On. Thinking. Towards A Transnational Perspective On Migration = Ann Ny Acad Sci Towards A Transnational Perspective On Migration = Ann. Ny. Acad. Sci. Towards A Unified Picture of Nuclear Dynamics = Aip Conf Proc Towards A Unified Picture of Nuclear Dynamics = Aip. Conf. Proc. Towards A Worldwide Library: A Ten Year Forecast = Ver U Essen Towards A Worldwide Library: A Ten Year Forecast = Ver. U. Essen. Towards Better Performing Transport Networks = Routl Stud Bus Organ Towards Better Performing Transport Networks = Routl. Stud. Bus. Organ. Towards Digital Optical Networks = Lect Notes Comput Sc Towards Digital Optical Networks = Lect. Notes. Comput. Sc. Towards Higher Categories = Ima Vol Math Appl Towards Higher Categories = Ima. Vol. Math. Appl. Towards Hybrid and Adaptive Computing = Stud Comput Intell Towards Hybrid and Adaptive Computing = Stud. Comput. Intell. Towards Innovation in Superplasticity Ii = Mater Sci Forum Towards Innovation in Superplasticity Ii = Mater. Sci. Forum. Towards Innovation in Superplasticity I = Mater Sci Forum Towards Innovation in Superplasticity I = Mater. Sci. Forum. Towards Integrated Fire Management: Outcomes of The European Project Fire Paradox = Eur For I Res Rep Towards Integrated Fire Management: Outcomes of The European Project Fire Paradox = Eur. For. I. Res. Rep. Towards Intelligent Engineering and Information Technology = Stud Comput Intell Towards Intelligent Engineering and Information Technology = Stud. Comput. Intell. Towards Intelligent Modelling: Statistical Approximation Theory = Intel Syst Ref Libr Towards Intelligent Modelling: Statistical Approximation Theory = Intel. Syst. Ref. Libr. Towards Mathematical Philosophy = Tr Log Stud Log Lib Towards Mathematical Philosophy = Tr. Log. Stud. Log. Lib. Towards Mechanized Mathematical Assistants = Lect Notes Artif Int Towards Mechanized Mathematical Assistants = Lect. Notes. Artif. Int. Towards Natural Medicine Research in The 21st Century = Int Congr Ser Towards Natural Medicine Research in The 21st Century = Int. Congr. Ser. Towards Other Earths: Darwin/tpf and The Search for Extrasolar Terrestrial Planets, Proceedings = Esa Spec Publ Towards Other Earths: Darwin/tpf and The Search for Extrasolar Terrestrial Planets, Proceedings = Esa. Spec. Publ. Towards Other Earths: Darwin/tpf and The Search for Extrasolar Terrestrial Planets, Proceedings = Esa Sp Publ Towards Other Earths: Darwin/tpf and The Search for Extrasolar Terrestrial Planets, Proceedings = Esa. Sp. Publ. Towards Prolongation of The Healthy Life Span = Ann Ny Acad Sci Towards Prolongation of The Healthy Life Span = Ann. Ny. Acad. Sci. Towards Quantum Gravity = Lect Notes Phys Towards Quantum Gravity = Lect. Notes. Phys. Towards Responsible Government in East Asia: Trajectories, Intentions and Meanings = Comp Dev Policy Asia Towards Responsible Government in East Asia: Trajectories, Intentions and Meanings = Comp. Dev. Policy. Asia. Towards Security in Medical Telematics = St Heal T Towards Security in Medical Telematics = St. Heal. T. Towards Sustainable and Scalable Educational Innovations Informed By Learning Sciences = Fr Art Int Towards Sustainable and Scalable Educational Innovations Informed By Learning Sciences = Fr. Art. Int. Towards Sustainable and Scalable Educational Innovations Informed By Learning Sciences = Front Artif Intel Ap Towards Sustainable and Scalable Educational Innovations Informed By Learning Sciences = Front. Artif. Intel. Ap. Towards Sustainable Cities in China: Analysis and Assessment of Some Chinese Cities in 2008 = Springerbr Env Sci Towards Sustainable Cities in China: Analysis and Assessment of Some Chinese Cities in 2008 = Springerbr. Env. Sci. Towards Sustainable Development of The Coastal Resources of Lingayen Gulf, Philippines = Iclarm Conf Towards Sustainable Development of The Coastal Resources of Lingayen Gulf, Philippines = Iclarm. Conf. Towards Sustainable Land Use, Vols I & Ii = Adv Geoecol Towards Sustainable Land Use, Vols I & Ii = Adv. Geoecol. Towards Sustainable Society On Ubiquitous Networks = Int Fed Info Proc Towards Sustainable Society On Ubiquitous Networks = Int. Fed. Info. Proc. Towards Synthesis of Micro - /nano - Systems = Jspe Publ Ser Towards Synthesis of Micro - /nano - Systems = Jspe. Publ. Ser. Towards The Elimination of Rabies in Eurasia = Dev Biologicals Towards The Elimination of Rabies in Eurasia = Dev. Biologicals. Towards The E-society: E-commerce, E-business, and E-government = Int Fed Info Proc Towards The E-society: E-commerce, E-business, and E-government = Int. Fed. Info. Proc. Towards The First Silicon Laser = Nato Sci Ser Ii-math Towards The First Silicon Laser = Nato. Sci. Ser. Ii-math. Towards The First Silicon Laser = Nato Sci Ser Ii Math Towards The First Silicon Laser = Nato. Sci. Ser. Ii. Math. Towards The Information Society = Wissensch Technikfol Towards The Information Society = Wissensch. Technikfol. Towards The Information Society = Wiss Technik Folgenb Towards The Information Society = Wiss. Technik. Folgenb. Towards The Knowledge Society: E-commerce, E-business, and E-government = Int Fed Info Proc Towards The Knowledge Society: E-commerce, E-business, and E-government = Int. Fed. Info. Proc. Towards The Learning Grid: Advances in Human Learning Services = Front Artif Intel Ap Towards The Learning Grid: Advances in Human Learning Services = Front. Artif. Intel. Ap. Towards The Neurobiology of Chronic Pain = Prog Brain Res Towards The Neurobiology of Chronic Pain = Prog. Brain. Res. Towards The Rational Use of High Salinity Tolerant Plants, Vol 2 = Task Veg Sc Towards The Rational Use of High Salinity Tolerant Plants, Vol 2 = Task. Veg. Sc. Towards The Sustainable Use of Europe's Forests - Forest Ecosystem and Landscape Research: Scientific Challenges and Opportunities = Eur Forest Inst Proc Towards The Sustainable Use of Europe's Forests - Forest Ecosystem and Landscape Research: Scientific Challenges and Opportunities = Eur. Forest Inst. Proc. Towards The Use of Noradrenergic Agonists for The Treatment of Pain = Int Congr Ser Towards The Use of Noradrenergic Agonists for The Treatment of Pain = Int. Congr. Ser. Towards The Virtuous University = Key Issues High Educ Towards The Virtuous University = Key. Issues. High. Educ. Towards Trustworthy Elections: New Directions in Electronic Voting = Lect Notes Comput Sc Towards Trustworthy Elections: New Directions in Electronic Voting = Lect. Notes. Comput. Sc. Toward Sustainable Communities: Transition and Transformations in Environmental Policy, Second Edition = Am Comp Environ Poli Toward Sustainable Communities: Transition and Transformations in Environmental Policy, Second Edition = Am. Comp. Environ. Poli. Towards World Class Manufacturing 1993 = Ifip Trans B Towards World Class Manufacturing 1993 = Ifip. Trans. B. Towards X-ray Free Electron Lasers = Aip Conf Proc Towards X-ray Free Electron Lasers = Aip. Conf. Proc. Towards Zero Emission Energy Production = Vtt Symp Towards Zero Emission Energy Production = Vtt. Symp. Toward The Healthy City: People, Places, and The Politics of Urban Planning = Urban Ind Environ Toward The Healthy City: People, Places, and The Politics of Urban Planning = Urban Ind. Environ. Toward The Millennium = St Hist Rel Toward The Millennium = St. Hist. Rel. Toward The Theory of Everything: Mrst '98 = Aip Conf Proc Toward The Theory of Everything: Mrst '98 = Aip. Conf. Proc. Toward The Virtual University = Per Inst Technol Dis Toward The Virtual University = Per. Inst. Technol. Dis. Tower of London in English Renaissance Drama: Icon of Opposition = Lit Crit Cult Theory Tower of London in English Renaissance Drama: Icon of Opposition = Lit. Crit. Cult. Theory. Town and country planning : the quarterly review of the Town and Country Planning Association = Town Ctry Plann Town Born: The Political Economy of New England From Its Founding to The Revolution = Early Am Stud Ser Town Born: The Political Economy of New England From Its Founding to The Revolution = Early. Am. Stud. Ser. Town & Country Planning = Town Country Plann Town & Country Planning = Town Country Plann. Town hall journal = Town Hall J Town In-between: Carlisle, Pennsylvania, and The Early Mid-atlantic Interior = Early Am Stud Ser Town In-between: Carlisle, Pennsylvania, and The Early Mid-atlantic Interior = Early Am. Stud. Ser. Town Planning Review = Town Plann Rev Town Planning Review = Town Plann. Rev. Toxic and Carcinogenic Effects of Solid Particles in The Respiratory Tract = Ilsi Monogr Toxic and Carcinogenic Effects of Solid Particles in The Respiratory Tract = Ilsi. Monogr. Toxicity Assessment = Toxic Assess Toxicity Assessment = Toxic. Assess. Toxicity report series = Toxic Rep Ser Toxicogenomics and Proteomics = Nato Sci Ser I Life Toxicogenomics and Proteomics = Nato. Sci. Ser. I. Life. Toxicological and Environmental Chemistry = Toxicol Environ Chem Toxicological and Environmental Chemistry = Toxicol. Environ. Chem. Toxicological and Immunological Aspects of Drug Metabolism and Environmental Chemicals = Symp Med H Toxicological and Immunological Aspects of Drug Metabolism and Environmental Chemicals = Symp. Med. H. Toxicological European research. Recherche europeenne en toxicologie = Toxicol Eur Res Toxicological European Research = Toxicol. Eur. Res. Toxicological Evaluation of Certain Food Additives and Contaminants / = Who Food Ad Toxicological Evaluation of Certain Food Additives and Contaminants / = Who. Food Ad. Toxicological Evaluation of Certain Veterinary Drug Residues in Food / = Who Food Ad Toxicological Evaluation of Certain Veterinary Drug Residues in Food / = Who. Food Ad. Toxicological reviews = Toxicol Rev Toxicological Reviews = Toxicol. Rev. Toxicological sciences : an official journal of the Society of Toxicology = Toxicol Sci Toxicological Sciences=Toxicol Sci;; Toxicological Sciences = Toxicol Sci Toxicological Sciences = Toxicol. Sci. Toxicologic pathology = Toxicol Pathol Toxicologic Pathology=Toxicol Pathol;; Toxicologic Pathology = Toxicol Pathol Toxicologic Pathology = Toxicol. Pathol. Toxicology and Applied Pharmacology = Toxicol Appl Pharm Toxicology and Applied Pharmacology = Toxicol. Appl. Pharm. Toxicology and applied pharmacology = Toxicol Appl Pharmacol Toxicology and Applied Pharmacology=Toxicol Appl Pharmacol;; Toxicology and Applied Pharmacology = Toxicol. Appl. Pharmacol. Toxicology and industrial health = Toxicol Ind Health Toxicology and Industrial Health=Toxicol Ind Health;; Toxicology and Industrial Health = Toxicol Ind Health Toxicology and Industrial Health = Toxicol. Ind. Health Toxicology - From Cells to Man = Arch Tox S Toxicology - From Cells to Man = Arch. Tox. S. Toxicology in Transition = Arch Tox S Toxicology in Transition = Arch. Tox. S. Toxicology in vitro : an international journal published in association with BIBRA = Toxicol In Vitro Toxicology in Vitro = Toxicol. in Vitro Toxicology in Vitro = Toxicol In Vitro Toxicology in Vitro = Toxicol. In. Vitro Toxicology letters = Toxicol Lett Toxicology Letters=Toxicol Lett;; Toxicology Letters = Toxicol Lett Toxicology Letters = Toxicol. Lett. Toxicology Mechanisms and Methods = Toxicol Mech Method Toxicology Mechanisms and Methods = Toxicol. Mech. Method. Toxicology Mechanisms and Methods = Toxicol. Mech. Methods Toxicology Methods = Toxicol Method Toxicology Methods = Toxicol. Method. Toxicology of The Environment : Biological Effects of Pollutants Used As Biomarkers of Contaminations = Oceanis S D Toxicology of The Environment : Biological Effects of Pollutants Used As Biomarkers of Contaminations = Oceanis. S. D. Toxicology=Toxicology;; Toxicology = Toxicology Toxicomanies = Toxicomanies Toxicon : official journal of the International Society on Toxinology = Toxicon Toxicon=Toxicon;; Toxicon = Toxicon Toxic Phytoplankton Blooms in The Sea = Dev Mar Bio Toxic Phytoplankton Blooms in The Sea = Dev. Mar. Bio. Toxic Plant Proteins = Plant Cell Monogr Toxic Plant Proteins = Plant Cell. Monogr. Toxic substance mechanisms = Toxic Subst Mech Toxic Substance Mechanisms = Tox Subst Mech Toxic Substance Mechanisms = Tox. Subst. Mech. Toxin Reviews = Toxin Rev Toxin Reviews = Toxin Rev. Toxins and Exocytosis = Ann Ny Acad Sci Toxins and Exocytosis = Ann. Ny. Acad. Sci. Toxoplasma Gondii = Curr Top Microbiol Toxoplasma Gondii = Curr. Top. Microbiol. Toyoshi kenkyu / [Toyoshi Kenkyukai] = Toyoshi Kenkyu Trabajos de arqueología de Navarra = TrabNavarra Trabajos del Instituto Cajal / Consejo Superior de Investigaciones Cientificas = Trab Inst Cajal Trabajos del Instituto Cajal de investigaciones biologicas = Trab Inst Cajal Invest Biol Trabajos del Instituto Cajal de Investigaciones Biologicas = Trab. Inst. Cajal Invest. Biol. Trabajos del Instituto Cajal = Trab. Inst. Cajal Trabajos De Prehistoria = Trabajos Prehist Trabajos De Prehistoria = Trabajos Prehist. Trabajos de prehistoria = TrabPrehist Trabalhos da associação dos arqueólogos portugueses = TrabAssArqPort Trabalhos de antropologia e etnologia = TrabAntrEtn Trabalhos de arqueologia = TrabArq Trabalhos de Investigação = Trab. Invest. Trace Constituents in The Troposphere and Lower Stratosphere = Adv Space Res Trace Constituents in The Troposphere and Lower Stratosphere = Adv. Space. Res. Trace Constituents in The Troposphere and Lower Stratosphere = Adv Space Res-series Trace Constituents in The Troposphere and Lower Stratosphere = Adv. Space. Res-series. Trace Elements and Electrolytes = Trace Elem Electroly Trace Elements and Electrolytes = Trace Elem. Electroly. Trace Elements and Electrolytes = Trace Elem. Electrolytes Trace elements in medicine = Trace Elem Med Trace Elements in Medicine = Trace Elem Med Trace Elements in Medicine = Trace Elem. Med. Trace Elements in Nutrition of Children-ii = Nestle Nutr Works Se Trace Elements in Nutrition of Children-ii = Nestle. Nutr. Works. Se. Trace Metals in The Environment = Trace Metals Other Trace Metals in The Environment = Trace Metals Other. Trace Metals in The Environment = Tr Met Env Trace Metals in The Environment = Tr. Met. Env. Tracers and Modelling in Hydrogeology = Iahs-aish P Tracers and Modelling in Hydrogeology = Iahs-aish. P. Tracers in Geomorphology = Brit Geomor Tracers in Geomorphology = Brit. Geomor. Tracers in Hydrology = Iahs-aish P Tracers in Hydrology = Iahs-aish. P. Tracer Technologies for Hydrological Systems = Iahs-aish P Tracer Technologies for Hydrological Systems = Iahs-aish. P. Trace Substances in Environmental Health = Tr Sub Env Trace Substances in Environmental Health = Tr. Sub. Env. Trace Substances in Environmental Health - Xxiv = Tr Sub Env Trace Substances in Environmental Health - Xxiv = Tr. Sub. Env. Trace Transmission in Rhetorics Arts and Cultural Evolution = Trace Transm Rhetor Trace Transmission in Rhetorics Arts and Cultural Evolution = Trace Transm. Rhetor. Tracing Cosmic Evolution With Galaxy Clusters, Proceedings = Astr Soc P Tracing Cosmic Evolution With Galaxy Clusters, Proceedings = Astr. Soc. P. Tracing Genres Through Organizations: A Sociocultural Approach to Information Design = Act Technol Tracing Genres Through Organizations: A Sociocultural Approach to Information Design = Act. Technol. Tracing Pathogens in The Food Chain = Woodhead Publ Food S Tracing Pathogens in The Food Chain = Woodhead. Publ. Food S. Tracing The Trail of Time = Lang Comput Tracing The Trail of Time = Lang. Comput. Tracking Adult Literacy and Numeracy Skills: Findings From Longitudinal Research = Routl Res Educ Tracking Adult Literacy and Numeracy Skills: Findings From Longitudinal Research = Routl. Res. Educ. Tracking report / Center for Studying Health System Change = Track Rep Tracks-a Journal of Artists Writings = Tracks Tracks-a Journal of Artists Writings = Tracks. Tractability of Multivariate Problems, Vol 1: Linear Information = Ems Tracts Math Tractability of Multivariate Problems, Vol 1: Linear Information = Ems. Tracts. Math. Tractability of Multivariate Problems, Vol Ii: Standard Information for Functionals = Ems Tracts Math Tractability of Multivariate Problems, Vol Ii: Standard Information for Functionals = Ems. Tracts. Math. Tractable Models of Solid Mechanics: Formulation, Analysis and Interpretation = Found Eng Mech Tractable Models of Solid Mechanics: Formulation, Analysis and Interpretation = Found. Eng. Mech. Tractable Reasoning in Artificial Intelligence = Lect Notes Artif Int Tractable Reasoning in Artificial Intelligence = Lect. Notes. Artif. Int. Trac-trends in Analytical Chemistry = Trac-trend Anal Chem Trac-trends in Analytical Chemistry = Trac-trend. Anal. Chem. TrAC, Trends in Analytical Chemistry = TrAC, Trends Anal. Chem. TRAC Trends in Analytical Chemistry = TrAC, Trends Anal. Chem. Tractrix : yearbook for the history of science, medicine, technology and mathematics = Tractrix Trade and Contemporary Society Along The Silk Road: An Ethno-history of Ladakh = Routl Contemp Asia Trade and Contemporary Society Along The Silk Road: An Ethno-history of Ladakh = Routl. Contemp. Asia. Trade and Cooperation With The European Union in The New Millennium = Melb Stu C Int Law Trade and Cooperation With The European Union in The New Millennium = Melb. Stu. C. Int. Law. Trade and Development Series = Trade Dev Ser Trade and Development Series = Trade Dev. Ser. Trade and Environment Series = Trade Environ Ser Trade and Environment Series = Trade Environ. Ser. Trade and Investment Guides = Trade Invest Trade and Investment Guides = Trade Invest. Trade and Production in Premonetary Greece: Aspects of Trade = St Med Ar Lit Pb Trade and Production in Premonetary Greece: Aspects of Trade = St. Med. Ar. Lit. Pb. Trade and Protectionism = Nber E A Ec Trade and Protectionism = Nber. E. A. Ec. Trade, Development and Security in Africa: All Sides of The Coin? = Whitehall Pap Trade, Development and Security in Africa: All Sides of The Coin? = Whitehall. Pap. Trade Disputes and The Dispute Settlement Understanding of The Wto: An Interdisciplinary Assessment = Front Econ Global Trade Disputes and The Dispute Settlement Understanding of The Wto: An Interdisciplinary Assessment = Front. Econ. Global. Trade Effects of Eco-labelling = Escap Stud Trade Inv Trade Effects of Eco-labelling = Escap. Stud. Trade Inv. Trade, Empire and British Foreign Policy, 1689-1815: Politics of A Commercial State = War Hist Polit Trade, Empire and British Foreign Policy, 1689-1815: Politics of A Commercial State = War. Hist. Polit. Trade, Globalization and Poverty = Rout Stud Int Bus Trade, Globalization and Poverty = Rout. Stud. Int. Bus. Trade, Global Policy, and The Environment = World B Dis Trade, Global Policy, and The Environment = World. B. Dis. Trade, Growth and Development = Contrib To Econ Anal Trade, Growth and Development = Contrib. To. Econ. Anal. Trade, Growth and Inequality in The Era of Globalization = Routl Stud Dev Econ Trade, Growth and Inequality in The Era of Globalization = Routl. Stud. Dev. Econ. Trade in Services in The Asia-pacific Region = Nber E A Ec Trade in Services in The Asia-pacific Region = Nber. E. A. Ec. Trade, Integration and Economic Development: The Eu and Latin America = Sch Ost Ges Europa Trade, Integration and Economic Development: The Eu and Latin America = Sch. Ost. Ges. Europa. Trade, Integration and Economic Development: The Eu and Latin America = Schr Ost Ges Eur Ecs Trade, Integration and Economic Development: The Eu and Latin America = Schr. Ost. Ges. Eur. Ecs. Trade, Investment and The Environment = Trade Environ Ser Trade, Investment and The Environment = Trade. Environ. Ser. Trade Issues Policies and Laws Series = Trade Issues Policie Trade Issues Policies and Laws Series = Trade Issues Policie. Trade Liberalisation and Smes in Asean = Trade Issues Policie Trade Liberalisation and Smes in Asean = Trade Issues. Policie. Trade Policy Inequality and Performance in Indian Manufacturing = Routl Adv S Asian St Trade Policy Inequality and Performance in Indian Manufacturing = Routl. Adv. S. Asian. St. Trade Policy in The Asia-pacific: The Role of Ideas, Interests, and Domestic Institutions = Polit Econ Asia Pac Trade Policy in The Asia-pacific: The Role of Ideas, Interests, and Domestic Institutions = Polit. Econ. Asia. Pac. Trade Relations Between The Eu and Africa: Development, Challenges and Options Beyond The Cotonou Agreement = Routl Stud Dev Econ Trade Relations Between The Eu and Africa: Development, Challenges and Options Beyond The Cotonou Agreement = Routl. Stud. Dev. Econ. Trade Specialization in The Enlarged European Union = Contrib Econ Trade Specialization in The Enlarged European Union = Contrib. Econ. Tradimus : the magazine for RCN nursing students = Tradimus Tradimus = Tradimus Trading Desk's View of Market Quality = Zi Sch Bus Fin Ma Trading Desk's View of Market Quality = Zi. Sch. Bus. Fin. Ma. Tradition-a Journal of Orthodox Jewish Thought = Tradition Tradition-a Journal of Orthodox Jewish Thought = Tradition. Traditional Herbal Medicines for Modern Times = Tradit Herb Med Mod Traditional Herbal Medicines for Modern Times = Tradit. Herb. Med. Mod. Traditional Rating of Noise Versus Physiological Costs of Sound Exposures to The Hearing = Biomed Health Res Traditional Rating of Noise Versus Physiological Costs of Sound Exposures to The Hearing = Biomed. Health. Res. Tradition and Culture in The Millennium: Tribal Colleges and Universities = Educ Policy 21st Cen Tradition and Culture in The Millennium: Tribal Colleges and Universities = Educ. Policy. 21st. Cen. Tradition and Innovation in French Garden Art = Penn St Land Arch Tradition and Innovation in French Garden Art = Penn. St. Land. Arch. Tradition and Innovation in French Garden Art = Penn Stud Landsc Arc Tradition and Innovation in French Garden Art = Penn. Stud. Landsc. Arc. Tradition and Modernity in Myanmar = Berliner As Afr St Tradition and Modernity in Myanmar = Berliner. As. Afr. St. Tradition (Rabbinical Council of America). = Tradition Traditions in World Cinema = Tradition Wor Cinema Traditions in World Cinema = Tradition. Wor. Cinema Traditio Praesocratica: Zeugnisse Fruhgriechischer Philosophie Und Ihres Fortlebens = Traditio Praesocrati Traditio Praesocratica: Zeugnisse Fruhgriechischer Philosophie Und Ihres Fortlebens = Traditio Praesocrati. Traditio: studies in ancient and medieval history, thought, and religion = Traditio Traditio-studies in Ancient and Medieval History Thought and Religion = Traditio Traditio-studies in Ancient and Medieval History Thought and Religion = Traditio. Traditio. Studies in Ancient and Medieval History, Thought and Religion = Traditio Traditio = Traditio Traditonal Chinese Foods: Production and Research Progress = Food Sci Technol Traditonal Chinese Foods: Production and Research Progress = Food. Sci. Technol. Traduction De La Poesie Allemande En Francais Dans La Premiere Moitie Du Xixe Siecle: Reception Et Interaction Poetique = Communicatio Traduction De La Poesie Allemande En Francais Dans La Premiere Moitie Du Xixe Siecle: Reception Et Interaction Poetique = Communicatio. Traduction Et Langues De Specialite = Ciral Pub B Traduction Et Langues De Specialite = Ciral. Pub. B. Traffic and Qos Management in Wireless Multimedia Networks = Lect Notes Electr En Traffic and Qos Management in Wireless Multimedia Networks = Lect. Notes. Electr. En. Traffic and Urban Data = Transport Res Rec Traffic and Urban Data = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2000 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2000 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2001 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2001 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2002 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2002 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2003 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2003 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2004 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2004 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2005 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2005 = Transport. Res. Rec. Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2006 = Transport Res Rec Traffic Control Devices, Visibility, and Rail-highway Grade Crossings 2006 = Transport. Res. Rec. Traffic (Copenhagen, Denmark) = Traffic Traffic Data Collection and Its Standardization = Int Ser Oper Res Man Traffic Data Collection and Its Standardization = Int. Ser. Oper. Res. Man. Traffic Engineering & Control = Traffic Eng Control Traffic Engineering & Control = Traffic Eng. Control Traffic Engineering = Traffic Eng Traffic Engineering = Traffic Eng. Traffic Flow Theory 2005 = Transport Res Rec Traffic Flow Theory 2005 = Transport. Res. Rec. Traffic Flow Theory 2006 = Transport Res Rec Traffic Flow Theory 2006 = Transport. Res. Rec. Traffic Flow Theory and Highway Capacity 2000 = Transport Res Rec Traffic Flow Theory and Highway Capacity 2000 = Transport. Res. Rec. Traffic Flow Theory and Highway Capacity 2001 = Transport Res Rec Traffic Flow Theory and Highway Capacity 2001 = Transport. Res. Rec. Traffic Flow Theory and Highway Capacity 2002 = Transport Res Rec Traffic Flow Theory and Highway Capacity 2002 = Transport. Res. Rec. Traffic Flow Theory and Highway Capacity 2003 = Transport Res Rec Traffic Flow Theory and Highway Capacity 2003 = Transport. Res. Rec. Traffic Flow Theory and Highway Capacity and Quality of Services 2004 = Transport Res Rec Traffic Flow Theory and Highway Capacity and Quality of Services 2004 = Transport. Res. Rec. Traffic Flow Theory = Transport Res Rec Traffic Flow Theory = Transport. Res. Rec. Traffic Grooming for Optical Networks: Foundations, Techniques, and Frontiers = Opt Netw Traffic Grooming for Optical Networks: Foundations, Techniques, and Frontiers = Opt. Netw. Traffic injury prevention = Traffic Inj Prev Traffic Injury Prevention = Traffic Inj Prev Traffic Injury Prevention = Traffic Inj. Prev. Traffic in Obscenity From Byron to Beardsley: Sexuality and Exocticism in The Nineteenth Century Print Culture = Palgrave Stud Ninet- Traffic in Obscenity From Byron to Beardsley: Sexuality and Exocticism in The Nineteenth Century Print Culture = Palgrave. Stud. Ninet-. Trafficking Inside Cells: Pathways, Mechanisms and Regulation = Mol Biol Intell Unit Trafficking Inside Cells: Pathways, Mechanisms and Regulation = Mol. Biol. Intell. Unit. Trafficking of Intracellular Membranes: From Molecular Sorting to Membrane Fusion = Nato Adv Sci Inst Se Trafficking of Intracellular Membranes: From Molecular Sorting to Membrane Fusion = Nato. Adv. Sci. Inst. Se. Traffic Management and Traffic Engineering for The Future Internet = Lect Notes Comput Sc Traffic Management and Traffic Engineering for The Future Internet = Lect. Notes. Comput. Sc. Traffic Monitoring and Analysis = Lect Notes Comput Sc Traffic Monitoring and Analysis = Lect. Notes. Comput. Sc. Traffic Monitoring and Analysis, Proceedings = Lect Notes Comput Sc Traffic Monitoring and Analysis, Proceedings = Lect. Notes. Comput. Sc. Traffic (Oxford, United Kingdom) = Traffic (Oxford, U. K.) Traffic Psychology: An International Perspective = Psychol Res Prog Traffic Psychology: An International Perspective = Psychol. Res. Prog. Traffic Quarterly = Traffic Quart Traffic Quarterly = Traffic Quart. Traffic Related Air Pollution and Internal Combustion Engines = Air Water Soil Sci T Traffic Related Air Pollution and Internal Combustion Engines = Air Water. Soil. Sci. T. Traffic Safety 2001: Americans With Disabilities Act; Driver and Vehicle Modeling; Situation Awareness; Licensing; Driver Behavior; Enforcement; Trucks; and Motorcycles = Transport Res Rec Traffic Safety 2001: Americans With Disabilities Act; Driver and Vehicle Modeling; Situation Awareness; Licensing; Driver Behavior; Enforcement; Trucks; and Motorcycles = Transport. Res. Rec. Traffic Safety = Traffic Saf Traffic Safety = Traffic Saf. Traffic Safety = Transport Res Rec Traffic Safety = Transport. Res. Rec. Traffic Signal Systems and Regional Systems Management 2006 = Transport Res Rec Traffic Signal Systems and Regional Systems Management 2006 = Transport. Res. Rec. Traffic = Traffic Tragedy and Scepticism in Shakespeare's England = Early Mod Lit Hist Tragedy and Scepticism in Shakespeare's England = Early. Mod. Lit. Hist. Tragwerke 2: Theorie Und Berechnungsmethoden Statisch Unbestimmter Stabtragwerke = Vdi-buch Tragwerke 2: Theorie Und Berechnungsmethoden Statisch Unbestimmter Stabtragwerke = Vdi-buch. Trail Pheromones and Sex Pheromones in Termites = Insect Terr Arth-bio Trail Pheromones and Sex Pheromones in Termites = Insect. Terr. Arth-bio. Trail (tnf-related Apoptosis-inducing Ligand) = Vitam Horm Trail (tnf-related Apoptosis-inducing Ligand) = Vitam. Horm. Training and development journal = Train Dev J Training and Development Journal = Train Dev J Training and Development Journal = Train. Dev. J. Training and Education in Professional Psychology = Train Educ Prof Psyc Training and Education in Professional Psychology = Train. Educ. Prof. Psyc. Training and Professional Development in Adult and Continuing Education = Ue Crce Occ Pap Training and Professional Development in Adult and Continuing Education = Ue. Crce. Occ. Pap. Training & Development = Training Dev Training & Development = Training Dev. Training, Education, and Liability Issues for Law Enforcement Scientists and Engineers = P Soc Photo-opt Ins Training, Education, and Liability Issues for Law Enforcement Scientists and Engineers = P. Soc. Photo-opt. Ins. Training for Work in The Informal Micro-enterprise Sector: Fresh Evidence From Sub-sahara Africa = Tech Vocat Ed Train Training for Work in The Informal Micro-enterprise Sector: Fresh Evidence From Sub-sahara Africa = Tech. Vocat. Ed. Train. Training in Diagnostic Ultrasound: Essentials, Principles and Standards = Who Tech Rep Ser Training in Diagnostic Ultrasound: Essentials, Principles and Standards = Who. Tech. Rep. Ser. Training in Innovation Management = Innov S Cec Training in Innovation Management = Innov. S. Cec. Training in Neurosurgery = Act Neur S Training in Neurosurgery = Act. Neur. S. Training (New York, N.Y.) = Training Training School Bulletin = Train. Sch. Bull. (Vinel) Training = Training Train Maintenance = Imeche Sem Train Maintenance = Imeche. Sem. Traité des Nouvelles Technologies = Traité Nouvelles Tech. Traitement Du Signal = Trait Signal Traitement Du Signal = Trait. Signal Traktat Vom Mysterium Der Buchstaben: Kritischer Text Mit Einfuhrung, Ubersetzung Und Anmerkungen = Texte Unters Gesch A Traktat Vom Mysterium Der Buchstaben: Kritischer Text Mit Einfuhrung, Ubersetzung Und Anmerkungen = Texte. Unters. Gesch. A. Trakya Universitesi Tip Fakultesi Dergisi = Trak Univ Tip Fak De Trakya Universitesi Tip Fakultesi Dergisi = Trak. Univ. Tip Fak. De. Trames-journal of The Humanities and Social Sciences = Trames-j Humanit Soc Trames-journal of The Humanities and Social Sciences = Trames-j. Humanit. Soc. Transacting Functions of Human Retroviruses = Curr Top Microbiol Transacting Functions of Human Retroviruses = Curr. Top. Microbiol. Transactional Analysis Journal = Transactional Anal J Transactional Analysis Journal = Transactional Anal. J. Transaction Cost Economics and Beyond = Rec Econ Th Transaction Cost Economics and Beyond = Rec. Econ. Th. Transaction of The American Philological Association, Vol 127 = T Am Philol Assoc Transaction of The American Philological Association, Vol 127 = T. Am. Philol. Assoc. Transaction of the International Conference on Endodontics. International Conference on Endodontics = Trans Int Conf Endod Transactions - American Academy of Ophthalmology and Otolaryngology. American Academy of Ophthalmology and Otolaryngology = Trans Am Acad Ophthalmol Otolaryngol Transactions American Academy of Ophthalmology and Otolaryngology = T Am Acad Ophthalmol Transactions American Academy of Ophthalmology and Otolaryngology = T. Am. Acad. Ophthalmol. Transactions, American Academy of Ophthalmology and Otolaryngology = Trans. Am. Acad. Ophthalmol. Otolaryngol. Transactions. American College of Cardiology = Trans Am Coll Cardiol Transactions-american Geophysical Union = Eos T Am Geophys Un Transactions-american Geophysical Union = Eos. T. Am. Geophys. Un. Transactions, American Otological Society = Trans. Am. Otol. Soc. Transactions American Society for Artificial Internal Organs = T Am Soc Art Int Org Transactions American Society for Artificial Internal Organs = T. Am. Soc. Art. Int. Org. Transactions - American Society for Artificial Internal Organs = Trans Am Soc Artif Intern Organs Transactions, American Society for Artificial Internal Organs = Trans. Am. Soc. Artif. Intern. Organs Transactions - American Society of Ophthalmologic and Otolaryngologic Allergy = Trans Am Soc Ophthalmol Otolaryngol Allergy Transactions. American Urological Association. South Central Section = Trans South Cent Sect Am Urol Assoc Transactions. American Urological Association. Southeastern Section = Trans Southeast Sect Am Urol Assoc Transactions. American Urological Association. Western Section = Trans West Sect Am Urol Assoc Transactions and Database Dynamics = Lect Notes Comput Sc Transactions and Database Dynamics = Lect. Notes. Comput. Sc. Transactions and Journal of The British Ceramic Society = Brit Ceram Trans J Transactions and Journal of The British Ceramic Society = Brit. Ceram. Trans. J. Transactions and Journal of The Plastics Institute = T J Plast I Transactions and Journal of The Plastics Institute = T. J. Plast. I. Transactions and proceedings of the American Philological Association. American Philological Association = Trans Proc Am Philol Assoc Transactions and Proceedings of the American Philological Association = TAPhA Transactions and Proceedings of the American Philological Association = TransactAmPhilAss Transactions and report / Liverpool Medical Institution. Liverpool Medical Institution = Trans Rep Liverp Med Inst Transactions and Studies of the College of Physicians of Philadelphia = Trans. Stud. Coll. Physicians Phila. Transactions and Studies of The College Of Physicians Of Philadelphia=Trans Stud Coll Physicians Phila;; Transactions. Australasian Medical Congress (British Medical Association) = Trans Aust Med Congr Transactions - Bristol and Gloucestershire Archaeological Society. Bristol and Gloucestershire Archaeological Society = Trans Bristol Glos Archaeol Soc Transactions (English Ceramic Circle) = Trans Engl Ceram Circle Transactions. European Orthodontic Society = Trans Eur Orthod Soc Transactions for The Royal Historical Society, Sixth Series, Xv = T Roy Hist Soc Transactions for The Royal Historical Society, Sixth Series, Xv = T. Roy. Hist. Soc. Transactions - Indiana Academy of Ophthalmology and Otolaryngology = Trans Indiana Acad Ophthalmol Otolaryngol Transactions, Indiana Academy of Ophthalmology and Otolaryngology = Trans. Indiana Acad. Ophthalmol. Otolaryngol. Transactions in Gis = T Gis Transactions in Gis = T. Gis Transactions (Institute of British Geographers : 1965) = Trans Inst Br Geogr Transactions. National Safety Council. National Safety Congress = Trans Natl Saf Congr Transactions, New Orleans Academy of Ophthalmology = Trans. New Orleans Acad. Ophthalmol. Transactions of Famena = T Famena Transactions of Famena = T. Famena Transactions of Famena = Trans Famena Transactions of Famena = Trans. Famena Transactions of National Research Institute for Metals = T Natl Res I Met Transactions of National Research Institute for Metals = T. Natl. Res. I. Met. Transactions of Nonferrous Metals Society of China = T Nonferr Metal Soc Transactions of Nonferrous Metals Society of China = T. Nonferr. Metal. Soc. Transactions of Nonlinear Science and Complexity = Trans Nonlin Sci Com Transactions of Nonlinear Science and Complexity = Trans. Nonlin. Sci. Com. Transactions of Society of Mining Engineers = Trans. Soc. Min. Eng. Transactions of The 2000 Citrus Engineering Conference = Trans Citrus Engn Transactions of The 2000 Citrus Engineering Conference = Trans. Citrus Engn. Transactions of The 2002 Citrus Engineering Conference = Trans Citrus Engn Transactions of The 2002 Citrus Engineering Conference = Trans. Citrus Engn. Transactions of The 2003 Citrus Engineering Conference = Trans Citrus Engn Transactions of The 2003 Citrus Engineering Conference = Trans. Citrus Engn. Transactions of The Academy of Sciences Ussr-mathematical Series = Trans Acad Sci-ussr Transactions of The Academy of Sciences Ussr-mathematical Series = Trans. Acad. Sci-ussr. Transactions of the American Academy of Insurance Medicine : Annual Meeting. American Academy of Insurance Medicine. Meeting = Trans Am Acad Insur Med Transactions of the American Academy of Insurance Medicine = Trans. Am. Acad. Insur. Med. Transactions of The American Association of Cost Engineers = Trans Annu Meet Amer Transactions of The American Association of Cost Engineers = Trans. Annu. Meet. Amer. Transactions of the American Association of Genito-Urinary Surgeons = Trans Am Assoc Genitourin Surg Transactions of the American Association of Genito-Urinary Surgeons = Trans. Am. Assoc. Genitourin. Surg. Transactions of the American Clinical and Climatological Association = Trans Am Clin Climatol Assoc Transactions of the American Clinical and Climatological Association = Trans. Am. Clin. Climatol. Assoc. Transactions of The American Clinical and Climatological Association=Trans Am Clin Climatol Assoc;; Transactions of The American Crystallographic Association = T Am Cryst Transactions of The American Crystallographic Association = T. Am. Cryst. Transactions of The American Entomological Society = T Am Entomol Soc Transactions of The American Entomological Society = T. Am. Entomol. Soc. Transactions of The American Fisheries Society = T Am Fish Soc Transactions of The American Fisheries Society = T. Am. Fish. Soc. Transactions of the American Fisheries Society = Trans Amer Fish Soc Transactions of The American Foundrymen's Society = Tran Amer F Transactions of The American Foundrymen's Society = Tran. Amer. F. Transactions of the American Foundrymen's Society = Trans. Am. Foundrymen's Soc. Transactions of The American Foundrymen's Society, Vol 105 = Tran Amer F Transactions of The American Foundrymen's Society, Vol 105 = Tran. Amer. F. Transactions of The American Foundrymen's Society, Vol 106 = Tran Amer F Transactions of The American Foundrymen's Society, Vol 106 = Tran. Amer. F. Transactions of The American Foundrymen's Society, Vol 107 = Tran Amer F Transactions of The American Foundrymen's Society, Vol 107 = Tran. Amer. F. Transactions of The American Foundry Society = Tran Amer F Transactions of The American Foundry Society = Tran. Amer. F. Transactions of The American Foundry Society, Vol 117 = Tran Amer F Transactions of The American Foundry Society, Vol 117 = Tran. Amer. F. Transactions of The American Foundry Society, Vol 118 = Tran Amer F Transactions of The American Foundry Society, Vol 118 = Tran. Amer. F. Transactions of The American Institute of Chemical Engineers = T Am Inst Chem Eng Transactions of The American Institute of Chemical Engineers = T. Am. Inst. Chem. Eng. Transactions of the American Institute of Electrical Engineers Part 1: Communication and Electronics = Trans. Am. Inst. Electr. Eng. Part 1 Transactions of the American Institute of Electrical Engineers Part 2: Applications and Industry = Trans. Am. Inst. Electr. Eng. Part 2 Transactions of the American Institute of Electrical Engineers Part 3: Power Apparatus and Systems = Trans. Am. Inst. Electr. Eng. Part 3 Transactions of the American Institute of Electrical Engineers = Trans. Am. Inst. Electr. Eng. Transactions of the American Institute of Metals = Trans. Am. Inst. Met. Transactions of The American Institute of Mining and Metallurgical Engineers = T Am I Min Met Eng Transactions of The American Institute of Mining and Metallurgical Engineers = T. Am. I. Min. Met. Eng. Transactions of the American Institute of Mining, Metallurgical and Petroleum Engineers, Society of Mining Engineers of AIME = Trans. Am. Inst. Min. Metall. Pet. Eng. Soc. Min. Eng. AIME Transactions of the American Institute of Mining, Metallurgical and Petroleum Engineers = Trans. Am. Inst. Min. Metall. Pet. Eng. Transactions of the American Laryngological, Rhinological and Otological Society, Inc = Trans Am Laryngol Rhinol Otol Soc Transactions of the American Laryngological, Rhinological and Otological Society = Trans. Am. Laryngol. Rhinol. Otol. Soc. Transactions of The American Mathematical Society = T Am Math Soc Transactions of The American Mathematical Society = T. Am. Math. Soc. Transactions of the American Mathematical Society = Trans. Amer. Math. Soc. Transactions of The American Microscopical Society = T Am Microsc Soc Transactions of The American Microscopical Society = T. Am. Microsc. Soc. Transactions of the American Microscopical Society = Trans Am Microsc Soc Transactions of the American Microscopical Society = Trans. Am. Microsc. Soc. Transactions of The American Neurological Association = T Am Neurol Assoc Transactions of The American Neurological Association = T. Am. Neurol. Assoc. Transactions of the American Neurological Association = Trans Am Neurol Assoc Transactions of the American Neurological Association = Trans. Am. Neurol. Assoc. Transactions of The American Nuclear Society = T Am Nucl Soc Transactions of The American Nuclear Society = T. Am. Nucl. Soc. Transactions of the American Nuclear Society = Trans Am Nucl Soc Transactions of The American Ophthalmological Society = T Am Ophthal Soc Transactions of The American Ophthalmological Society = T. Am. Ophthal. Soc. Transactions of the American Ophthalmological Society = Trans Am Ophthalmol Soc Transactions of the American Ophthalmological Society = Trans. Am. Ophthalmol. Soc. Transactions of The American Ophthalmological Society=Trans Am Ophthalmol Soc;; Transactions of the American Otological Society = Trans Am Otol Soc Transactions of The American Philological Association <d> = T Am Philol Assoc Transactions of The American Philological Association <d> = T. Am. Philol. Assoc. Transactions of The American Philological Association-series = T Am Philol Assoc Transactions of The American Philological Association-series = T. Am. Philol. Assoc. Transactions of The American Philological Association = T Am Philol Assoc Transactions of The American Philological Association = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 125, 1995 = T Am Philol Assoc Transactions of The American Philological Association, Vol 125, 1995 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 126 = T Am Philol Assoc Transactions of The American Philological Association, Vol 126 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 130 = T Am Philol Assoc Transactions of The American Philological Association, Vol 130 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 131 = T Am Philol Assoc Transactions of The American Philological Association, Vol 131 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 132 = T Am Philol Assoc Transactions of The American Philological Association, Vol 132 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 133, No 1 = T Am Philol Assoc Transactions of The American Philological Association, Vol 133, No 1 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 133, No 2 = T Am Philol Assoc Transactions of The American Philological Association, Vol 133, No 2 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 134, No 1 = T Am Philol Assoc Transactions of The American Philological Association, Vol 134, No 1 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol. 134, No 2 = T Am Philol Assoc Transactions of The American Philological Association, Vol. 134, No 2 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 135, No 1 = T Am Philol Assoc Transactions of The American Philological Association, Vol 135, No 1 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 135, No 2 = T Am Philol Assoc Transactions of The American Philological Association, Vol 135, No 2 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 136 No 1 = T Am Philol Assoc Transactions of The American Philological Association, Vol 136 No 1 = T. Am. Philol. Assoc. Transactions of The American Philological Association, Vol 136 No 2 = T Am Philol Assoc Transactions of The American Philological Association, Vol 136 No 2 = T. Am. Philol. Assoc. Transactions of The American Philosophical Society = T Am Philos Soc Transactions of The American Philosophical Society = T. Am. Philos. Soc. Transactions of the American Philosophical Society = TAPhS Transactions of the American Philosophical Society = TransactAmPhilosSoc Transactions of the American Philosophical Society = Trans. Amer. Philos. Soc. Transactions of The American Society for Metals = T Am Soc Metal Transactions of The American Society for Metals = T. Am. Soc. Metal. Transactions of the American Society for Neurochemistry = Trans Am Soc Neurochem Transactions of The American Society of Civil Engineers = T Am Soc Civ Eng Transactions of The American Society of Civil Engineers = T. Am. Soc. Civ. Eng. Transactions of The Ancient Monuments Society = T Ancient Monument Transactions of The Ancient Monuments Society = T. Ancient Monument. Transactions of the annual meeting. National Tuberculosis Association = Trans Annu Meet Natl Tuberc Assoc Transactions of the ... Annual Meeting of the American Broncho-Esophagological Association. American Broncho-Esophagological Association. Meeting = Trans Annu Meet Am Bronchoesophagol Assoc Transactions of the Annual Meeting of the American Broncho-Esophagological Association = Trans. Annu. Meet. Am. Bronchoesophagol. Assoc. Transactions of the ... annual meeting of the American Laryngological Association. American Laryngological Association. Meeting = Trans Am Laryngol Assoc Transactions of the Annual Meeting of the American Laryngological Association = Trans. Am. Laryngol. Assoc. Transactions of The Asabe = T Asabe Transactions of The Asabe = T. Asabe Transactions of the ASABE = Trans. ASABE Transactions of the ASAE. American Society of Agricultural Engineers = Trans ASAE Transactions of The Asae = T Asae Transactions of The Asae = T. Asae Transactions of The Association of American Physicians = T Assoc Am Physician Transactions of The Association of American Physicians = T. Assoc. Am. Physician. Transactions of the Association of American Physicians = Trans Assoc Am Physicians Transactions of the Association of American Physicians = Trans. Assoc. Am. Physicians Transactions of The Association of American Physicians, Vol 102 = T Assoc Am Physician Transactions of The Association of American Physicians, Vol 102 = T. Assoc. Am. Physician. Transactions of The Association of American Physicians, Vol 103 = T Assoc Am Physician Transactions of The Association of American Physicians, Vol 103 = T. Assoc. Am. Physician. Transactions of The Association of American Physicians, Vol 104 = T Assoc Am Physician Transactions of The Association of American Physicians, Vol 104 = T. Assoc. Am. Physician. Transactions of The Association of American Physicians, Vol 106 = T Assoc Am Physician Transactions of The Association of American Physicians, Vol 106 = T. Assoc. Am. Physician. Transactions of the Association of Industrial Medical Officers = Trans. Assoc. Ind. Med. Off. Transactions of The Association of Life Insurance Medical Directors of America = T Assoc Lif Transactions of The Association of Life Insurance Medical Directors of America = T. Assoc. Lif. Transactions of the Association of Life Insurance Medical Directors of America = Trans Assoc Life Insur Med Dir Am Transactions of the Association of Life Insurance Medical Directors of America = Trans. Assoc. Life Insur. Med. Dir. Am. Transactions of The Association of Life Insurance Medical Directors of America, Vol 73 = T Assoc Lif Transactions of The Association of Life Insurance Medical Directors of America, Vol 73 = T. Assoc. Lif. Transactions of The Association of Life Insurance Medical Directors of America, Vol 74 = T Assoc Lif Transactions of The Association of Life Insurance Medical Directors of America, Vol 74 = T. Assoc. Lif. Transactions of The Association of The American Physicians, Vol 105 = T Assoc Am Physician Transactions of The Association of The American Physicians, Vol 105 = T. Assoc. Am. Physician. Transactions of the Australian College of Ophthalmologists = Trans Aust Coll Ophthalmol Transactions of the Australian College of Ophthalmologists = Trans. Aust. Coll. Ophthalmol. Transactions of The British Bryological Society = T Brit Bryol Soc Transactions of The British Bryological Society = T. Brit. Bryol. Soc. Transactions of The British Ceramic Society = Brit Ceram Trans J Transactions of The British Ceramic Society = Brit. Ceram. Trans. J. Transactions of The British Mycological Society = T Brit Mycol Soc Transactions of The British Mycological Society = T. Brit. Mycol. Soc. Transactions of the British Mycological Society = Trans. Br. Mycol. Soc. Transactions of the British Society for the History of Pharmacy = Trans Br Soc Hist Pharm Transactions of the British Society for the Study of Orthodontics = Trans Br Soc Study Orthod Transactions of the British Society for the Study of Orthodontics = Trans. Br. Soc. Study Orthod. Transactions of the Cambridge Bibliographical Society = Trans Camb Bibliogr Soc Transactions of the Canadian Ophthalmological Society = Trans Can Opthalmolog Soc Transactions of The Canadian Society for Mechanical Engineering = T Can Soc Mech Eng Transactions of The Canadian Society for Mechanical Engineering = T. Can. Soc. Mech. Eng. Transactions of The Charles S Peirce Society = T C S Peirce Soc Transactions of The Charles S Peirce Society = T. C. S Peirce Soc. Transactions of The Citrus Engineering Conference = Trans Citrus Engn Transactions of The Citrus Engineering Conference = Trans. Citrus Engn. Transactions of The Conference On Social Insects = Act Colloq Insect S Transactions of The Conference On Social Insects = Act. Colloq. Insect. S. Transactions of the Egyptian Society of Chemical Engineers = Trans. Egypt. Soc. Chem. Eng. Transactions of The Electrochemical Society = T Electrochem Soc Transactions of The Electrochemical Society = T. Electrochem. Soc. Transactions of The Estonian Agricultural University, Vol 209 = Teadustoode Kogumik Transactions of The Estonian Agricultural University, Vol 209 = Teadustoode. Kogumik. Transactions of the European Orthodontic Society = Trans. Eur. Orthod. Soc. Transactions of The Faculty of Forestry Estonian Agricultural University = Trans Fac For Est Ag Transactions of The Faculty of Forestry Estonian Agricultural University = Trans. Fac. For. Est. Ag. Transactions of The Faraday Society = T Faraday Soc Transactions of The Faraday Society = T. Faraday Soc. Transactions of the Faraday Society = Trans. Faraday Soc. Transactions of The Fifty-eighth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Fifty-eighth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Fifty-ninth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Fifty-ninth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Fifty-seventh North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Fifty-seventh North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Fifty-sixth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Fifty-sixth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of the Illinois State Academy of Science. Illinois State Academy of Science = Trans Ill State Acad Sci Transactions of The Indian Ceramic Society = T Indian Ceram Soc Transactions of The Indian Ceramic Society = T. Indian Ceram. Soc. Transactions of The Indian Ceramic Society = Trans Indian Ceram S Transactions of The Indian Ceramic Society = Trans. Indian Ceram. S. Transactions of the Indian Ceramic Society = Trans. Indian Ceram. Soc. Transactions of The Indian Institute of Metals = T Indian I Metals Transactions of The Indian Institute of Metals = T. Indian I. Metals Transactions of the Indian Institute of Metals = Trans. Indian Inst. Met. Transactions of The Institute of British Geographers = T I Brit Geogr Transactions of The Institute of British Geographers = T. I. Brit. Geogr. Transactions of the Institute of Indian Geographers = Trans Inst Indian Geogr Transactions of The Institute of Measurement and Control = T I Meas Control Transactions of The Institute of Measurement and Control = T. I. Meas. Control Transactions of the Institute of Measurement and Control = Trans. Inst. Meas. Control Transactions of The Institute of Metal Finishing = T I Met Finish Transactions of The Institute of Metal Finishing = T. I. Met. Finish. Transactions of the Institute of Metal Finishing = Trans. Inst. Met. Finish. Transactions of The Institution of Chemical Engineers and The Chemical Engineer = Trans Inst Chem Eng Transactions of The Institution of Chemical Engineers and The Chemical Engineer = Trans. Inst. Chem. Eng. Transactions of The Institution of Chemical Engineers = T I Chem Eng-lond Transactions of The Institution of Chemical Engineers = T. I. Chem. Eng-lond. Transactions of the Institution of Metal Finishing = Trans. Inst. Met. Finish. Transactions of The Institution of Mining and Metallurgy Section A-mining Industry = T I Min Metall A Transactions of The Institution of Mining and Metallurgy Section A-mining Industry = T. I. Min. Metall. A. Transactions of The Institution of Mining and Metallurgy Section A-mining Technology = T I Min Metall A Transactions of The Institution of Mining and Metallurgy Section A-mining Technology = T. I. Min. Metall. A. Transactions of the Institution of Mining and Metallurgy Section A = Trans. Inst. Min. Metall., Sect. A Transactions of The Institution of Mining and Metallurgy Section B-applied Earth Science = T I Min Metall B Transactions of The Institution of Mining and Metallurgy Section B-applied Earth Science = T. I. Min. Metall. B. Transactions of the Institution of Mining and Metallurgy Section B = Trans. Inst. Min. Metall., Sect. B Transactions of The Institution of Mining and Metallurgy Section C-mineral Processing and Extractive Metallurgy = T I Min Metall C Transactions of The Institution of Mining and Metallurgy Section C-mineral Processing and Extractive Metallurgy = T. I. Min. Metall. C. Transactions of the Institution of Mining and Metallurgy Section C: Mineral Processing and Extractive Metallurgy = Trans. Inst. Min. Metall., Sect. C Transactions of the Institution of Mining and Metallurgy Section C = Trans. Inst. Min. Metall., Sect. C Transactions of The International Conference of Eastern Studies, No 54 = T Int Conf East Stud Transactions of The International Conference of Eastern Studies, No 54 = T. Int. Conf. East. Stud. Transactions of The International Conference of Eastern Studies = T Int Conf East Stud Transactions of The International Conference of Eastern Studies = T. Int. Conf. East. Stud. Transactions of the International Conference on Endodontics = Trans. Int. Conf. Endod. Transactions of the International Conference on Oral Surgery = Trans Int Conf Oral Surg Transactions of the International Conference on Oral Surgery = Trans. Int. Conf. Oral Surg. Transactions of The Iron and Steel Institute of Japan = T Iron Steel I Jpn Transactions of The Iron and Steel Institute of Japan = T. Iron Steel I. Jpn. Transactions of The Iron and Steel Society of Aime = T Iss Aime Transactions of The Iron and Steel Society of Aime = T. Iss. Aime Transactions of the Japan Academy = Trans. Japan Acad. Transactions of the Japan Institute of Electronics Packaging = Trans. Jpn. Inst. Electron. Packag. Transactions of The Japan Institute of Metals = T Jpn I Met Transactions of The Japan Institute of Metals = T. Jpn. I. Met. Transactions of The Japan Society for Aeronautical and Space Sciences = T Jpn Soc Aeronaut S Transactions of The Japan Society for Aeronautical and Space Sciences = T. Jpn. Soc. Aeronaut. S. Transactions of the Japan Society for Aeronautical and Space Sciences = Trans Jpn Soc Aeronaut Space Sci Transactions of the Kansas Academy of Science. Kansas Academy of Science = Trans Kans Acad Sci Transactions of the Kansas Academy of Science = Trans. Kans. Acad. Sci. Transactions of the Lancashire and Cheshire Antiquarian Society. Lancashire and Cheshire Antiquarian Society = Trans Lancaster Cheshire Antiq Soc Transactions of the London and Middlesex Archaeological Society = TransactLond Transactions of The Materials Research Society of Japan = T Mrs Jap Transactions of The Materials Research Society of Japan = T. Mrs. Jap. Transactions of the Materials Research Society of Japan = Trans. Mater. Res. Soc. Jpn Transactions of The Materials Research Society of Japan, Vol 30, No 4 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 30, No 4 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 31, No 1 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 31, No 1 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 31, No 2 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 31, No 2 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 31, No 3 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 31, No 3 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 31, No 4 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 31, No 4 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 32, No 3 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 32, No 3 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 32, No 4 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 32, No 4 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 33, No 1 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 33, No 1 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 33, No 2 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 33, No 2 = T. Mrs. Jap. Transactions of The Materials Research Society of Japan, Vol 33, No 3 = T Mrs Jap Transactions of The Materials Research Society of Japan, Vol 33, No 3 = T. Mrs. Jap. Transactions of the Medical Society of London = Trans Med Soc Lond Transactions of the Medical Society of London = Trans. Med. Soc. Lond. Transactions of The Medical Society Of London=Trans Med Soc Lond;; Transactions of the ... Meeting of the American Surgical Association. American Surgical Association. Meeting = Trans Meet Am Surg Assoc Am Surg Assoc Transactions of The Metal Finishers Association of India = T Met Finish India Transactions of The Metal Finishers Association of India = T. Met. Finish. India Transactions of The Metallurgical Society of Aime = T Metall Soc Aime Transactions of The Metallurgical Society of Aime = T. Metall. Soc. Aime Transactions of the Moscow Mathematical Society = Trans. Moscow Math. Soc. Transactions of The Mycological Society of Japan = T Mycol Soc Jpn Transactions of The Mycological Society of Japan = T. Mycol. Soc. Jpn. Transactions of the New England Obstetrical and Gynecological Society = Trans N Engl Obstet Gynecol Soc Transactions of the New England Obstetrical and Gynecological Society = Trans. N. Engl. Obstet. Gynecol. Soc. Transactions of The New Orleans Academy of Ophthalmology = T N Orl Aca Transactions of The New Orleans Academy of Ophthalmology = T. N. Orl. Aca. Transactions of the New Orleans Academy of Ophthalmology = Trans New Orleans Acad Ophthalmol Transactions of The New York Academy of Sciences = T New York Acad Sci Transactions of The New York Academy of Sciences = T. New York Acad. Sci. Transactions of the New York Academy of Sciences = Trans N Y Acad Sci Transactions of the New York Academy of Sciences = Trans. N. Y. Acad. Sci. Transactions of the Nonferrous Metals Society of China = Trans. Nonferrous Met. Soc. China Transactions of The North American Manufacturing Research Institution of Sme 2005, Vol 33, 2005 = Trans N Amer Manufac Transactions of The North American Manufacturing Research Institution of Sme 2005, Vol 33, 2005 = Trans. N. Amer. Manufac. Transactions of The North American Manufacturing Research Institution of Sme = Trans N Amer Manufac Transactions of The North American Manufacturing Research Institution of Sme = Trans. N. Amer. Manufac. Transactions of The North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The North American Wildlife and Natural Resources Conference = Trans N Am Wildl Nat Transactions of The North American Wildlife and Natural Resources Conference = Trans. N. Am. Wildl. Nat. Transactions of The Ophthalmological Societies of The United Kingdom = T Ophthal Soc Uk Transactions of The Ophthalmological Societies of The United Kingdom = T. Ophthal. Soc. Uk. Transactions of the ophthalmological societies of the United Kingdom = Trans Ophthalmol Soc U K Transactions of the Ophthalmological Societies of the United Kingdom = Trans. Ophthalmol. Soc. U. K. Transactions of The Ophthalmological Society of Australia = T Ophthalmol Soc Aus Transactions of The Ophthalmological Society of Australia = T. Ophthalmol. Soc. Aus. Transactions of the Ophthalmological Society of Australia = Trans Ophthalmol Soc Aust Transactions of the Ophthalmological Society of Australia = Trans. Ophthalmol. Soc. Aust. Transactions of the Ophthalmological Society of New Zealand = Trans Ophthalmol Soc N Z Transactions of the Ophthalmological Society of New Zealand = Trans. Ophthalmol. Soc. N. Z. Transactions of the Optical Society = Trans. Opt. Soc. Transactions of the Pacific Coast Obstetrical and Gynecological Society = Trans Pac Coast Obstet Gynecol Soc Transactions of the Pacific Coast Obstetrical and Gynecological Society = Trans. Pac. Coast Obstet. Gynecol. Soc. Transactions of the Pacific Coast Oto-Ophthalmological Society annual meeting = Trans Pac Coast Otoophthalmol Soc Annu Meet Transactions of the Pacific Coast Oto-Ophthalmological Society Annual Meeting = Trans. Pac. Coast Otoophthalmol. Soc. Annu. Meet. Transactions of The Philological Society = T Philol Soc Transactions of The Philological Society = T. Philol. Soc. Transactions of the Philological Society = TPhS Transactions of The Royal Entomological Society of London = T Roy Ent Soc London Transactions of The Royal Entomological Society of London = T. Roy. Ent. Soc. London Transactions of The Royal Historical Society, 6th Series, Xii = T Roy Hist Soc Transactions of The Royal Historical Society, 6th Series, Xii = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Ix = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Ix = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Viii = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Viii = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Vol Xviii = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Vol Xviii = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Xiii = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Xiii = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Xiv = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Xiv = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, Xix = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, Xix = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Sixth Series, X = T Roy Hist Soc Transactions of The Royal Historical Society, Sixth Series, X = T. Roy. Hist. Soc. Transactions of the Royal Historical Society = Trans R Hist Soc Transactions of The Royal Historical Society = T Roy Hist Soc Transactions of The Royal Historical Society = T. Roy. Hist. Soc. Transactions of The Royal Historical Society, Vol 20 = T Roy Hist Soc Transactions of The Royal Historical Society, Vol 20 = T. Roy. Hist. Soc. Transactions of The Royal Microscopical Society : New Series = T Roy Micr Transactions of The Royal Microscopical Society : New Series = T. Roy. Micr. Transactions of The Royal Microscopical Society : New Series, Vol 1 = T Roy Micr Transactions of The Royal Microscopical Society : New Series, Vol 1 = T. Roy. Micr. Transactions of the Royal Schools of Dentistry, Stockholm and Umea. Stockholm. Tandlakarhogskolan = Trans R Sch Dent Stockh Umea Transactions of the Royal Schools of Dentistry, Stockholm and Umea = Trans. R. Sch. Dent. Stockh. Umea Transactions of the Royal Society of Canada = Trans. R. Soc. Can. Transactions of The Royal Society of Canada = T Roy Soc Can Transactions of The Royal Society of Canada = T. Roy. Soc. Can. Transactions of the Royal Society of Edinburgh: earth sciences = Trans R Soc Edinb Earth Sci Transactions of the Royal Society of Edinburgh, Earth Sciences = Trans. R. Soc. Edinb., Earth Sci. Transactions of The Royal Society of Edinburgh-earth Sciences = T Roy Soc Edin-earth Transactions of The Royal Society of Edinburgh-earth Sciences = T. Roy. Soc. Edin-earth. Transactions of the Royal Society of Edinburgh Earth Science = Trans. R. Soc. Edinburgh: Earth Sci. Transactions of The Royal Society of Edinburgh : Earth Science = T Rse Earth Transactions of The Royal Society of Edinburgh : Earth Science = T. Rse. Earth Transactions of The Royal Society of New Zealand-botany = T Roy Soc Nz Bot Transactions of The Royal Society of New Zealand-botany = T. Roy. Soc. Nz. Bot. Transactions of The Royal Society of New Zealand-general = T Roy Soc Nz Gen Transactions of The Royal Society of New Zealand-general = T. Roy. Soc. Nz. Gen. Transactions of The Royal Society of New Zealand -zoology = T Roy Soc Nz Zool Transactions of The Royal Society of New Zealand -zoology = T. Roy. Soc. Nz. Zool. Transactions of The Royal Society of South Africa = T Roy Soc S Afr Transactions of The Royal Society of South Africa = T. Roy. Soc. S. Afr. Transactions of The Royal Society of South Australia = T Roy Soc South Aust Transactions of The Royal Society of South Australia = T. Roy. Soc. South Aust. Transactions of the Royal Society of Tropical Medicine and Hygiene = Trans R Soc Trop Med Hyg Transactions of the Royal Society of Tropical Medicine and Hygiene = Trans. R. Soc. Trop. Med. Hyg. Transactions of The Royal Society Of Tropical Medicine and Hygiene=Trans R Soc Trop Med Hyg;; Transactions of The Royal Society of Tropical Medicine and Hygiene = T Roy Soc Trop Med H Transactions of The Royal Society of Tropical Medicine and Hygiene = T. Roy. Soc. Trop. Med. H. Transactions of The Royal Zoological Society of New South Wales = Trzs Nsw Transactions of The Royal Zoological Society of New South Wales = Trzs. Nsw. Transactions of the SAEST = Trans. SAEST Transactions of The Sixtieth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixtieth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-eighth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-eighth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-eighth North American Wildlife and Natural Resources Conference = Trans N Am Wildl Nat Transactions of The Sixty-eighth North American Wildlife and Natural Resources Conference = Trans. N. Am. Wildl. Nat. Transactions of The Sixty-first North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-first North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-fourth North American Wildlife and Natural Resource Conference = T N Am Wildl Nat Res Transactions of The Sixty-fourth North American Wildlife and Natural Resource Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-fourth North American Wildlife and Natural Resource Conference = Trans N Am Wildl Nat Transactions of The Sixty-fourth North American Wildlife and Natural Resource Conference = Trans. N. Am. Wildl. Nat. Transactions of The Sixty-ninth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-ninth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-ninth North American Wildlife and Natural Resources Conference = Trans N Am Wildl Nat Transactions of The Sixty-ninth North American Wildlife and Natural Resources Conference = Trans. N. Am. Wildl. Nat. Transactions of The Sixty-second North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-second North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-seventh North American Wildlife and Natural Resource Conference = T N Am Wildl Nat Res Transactions of The Sixty-seventh North American Wildlife and Natural Resource Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-sixth North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-sixth North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of The Sixty-sixth North American Wildlife and Natural Resources Conference = Trans N Am Wildl Nat Transactions of The Sixty-sixth North American Wildlife and Natural Resources Conference = Trans. N. Am. Wildl. Nat. Transactions of The Sixty-third North American Wildlife and Natural Resources Conference = T N Am Wildl Nat Res Transactions of The Sixty-third North American Wildlife and Natural Resources Conference = T. N. Am. Wildl. Nat. Res. Transactions of the Society for Advancement of Electrochemical Science and Technology = Trans. Soc. Adv. Electrochem. Sci. Technol. Transactions of The Society for Computer Simulation International = T Soc Comput Simul I Transactions of The Society for Computer Simulation International = T. Soc. Comput. Simul. I. Transactions of The Society for Computer Simulation = T Soc Comput Simul Transactions of The Society for Computer Simulation = T. Soc. Comput. Simul. Transactions of the Society for Mining, Metallurgy, and Exploration = Trans. Soc. Min. Metall. Explor. Transactions of The Society of Instrument Technology = T Soc Instr Technol Transactions of The Society of Instrument Technology = T. Soc. Instr. Technol. Transactions of the Society of Mining Engineers of AIME = Trans. Soc. Min. Eng. AIME Transactions of The Society of Mining Engineers of Aime = T Soc Min Eng Transactions of The Society of Mining Engineers of Aime = T. Soc. Min. Eng. Transactions of the Society of Occupational Medicine = Trans. Soc. Occup. Med. Transactions of The Society of Petroleum Engineers of Aime = T Soc Petrol En Aime Transactions of The Society of Petroleum Engineers of Aime = T. Soc. Petrol. En. Aime Transactions of The Society of Rheology = T Soc Rheol Transactions of The Society of Rheology = T. Soc. Rheol. Transactions of the St Johns Hospital Dermatological Society = Trans. St Johns Hosp. Dermatol. Soc. Transactions of the St. John's Hospital Dermatological Society = Trans St Johns Hosp Dermatol Soc Transactions of The St Johns Hospital Dermatological Society = T St Johns Hosp Derm Transactions of The St Johns Hospital Dermatological Society = T. St Johns Hosp. Derm. Transactions of The Tokyo University of Fisheries-tokyo Suisan Daigaku Tokubetsu Kenkyu Hokoku = T Tokyo Univ Fish Transactions of The Tokyo University of Fisheries-tokyo Suisan Daigaku Tokubetsu Kenkyu Hokoku = T. Tokyo Univ. Fish. Transactions of The Western Section of The Wildlife Society 1992, Vol 28 = T W Sec Wil Transactions of The Western Section of The Wildlife Society 1992, Vol 28 = T. W. Sec. Wil. Transactions of The Western Section of The Wildlife Society 1993, Vol 29 = T W Sec Wil Transactions of The Western Section of The Wildlife Society 1993, Vol 29 = T. W. Sec. Wil. Transactions of The Western Section of The Wildlife Society, 1995 Vol 31 = T W Sec Wil Transactions of The Western Section of The Wildlife Society, 1995 Vol 31 = T. W. Sec. Wil. Transactions of The Western Section of The Wildlife Society = T W Sec Wil Transactions of The Western Section of The Wildlife Society = T. W. Sec. Wil. Transactions of The Western Section of The Wildlife Society, Vol 27, 1991 = T W Sec Wil Transactions of The Western Section of The Wildlife Society, Vol 27, 1991 = T. W. Sec. Wil. Transactions of The Wisconsin Academy Sciences Arts and Letters = T Wisc Acad Sci Transactions of The Wisconsin Academy Sciences Arts and Letters = T. Wisc. Acad. Sci. Transactions On Aspect-oriented Software Development Iii = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development Iii = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development Ii = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development Ii = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development I = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development I = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development Iv = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development Iv = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development Vii: A Common Case Study for Aspect-oriented Modeling = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development Vii: A Common Case Study for Aspect-oriented Modeling = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development Vi = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development Vi = Lect. Notes. Comput. Sc. Transactions On Aspect-oriented Software Development V = Lect Notes Comput Sc Transactions On Aspect-oriented Software Development V = Lect. Notes. Comput. Sc. Transactions On Computational Collective Intelligence Ii = Lect Notes Comput Sc Transactions On Computational Collective Intelligence Ii = Lect. Notes. Comput. Sc. Transactions On Computational Collective Intelligence I = Lect Notes Comput Sc Transactions On Computational Collective Intelligence I = Lect. Notes. Comput. Sc. Transactions On Computational Science Iii = Lect Notes Comput Sc Transactions On Computational Science Iii = Lect. Notes. Comput. Sc. Transactions On Computational Science Ii = Lect Notes Comput Sc Transactions On Computational Science Ii = Lect. Notes. Comput. Sc. Transactions On Computational Science I = Lect Notes Comput Sc Transactions On Computational Science I = Lect. Notes. Comput. Sc. Transactions On Computational Science Iv: Special Issue On Security in Computing = Lect Notes Comput Sc Transactions On Computational Science Iv: Special Issue On Security in Computing = Lect. Notes. Comput. Sc. Transactions On Computational Science Ix = Lect Notes Comput Sc Transactions On Computational Science Ix = Lect. Notes. Comput. Sc. Transactions On Computational Science Viii = Lect Notes Comput Sc Transactions On Computational Science Viii = Lect. Notes. Comput. Sc. Transactions On Computational Science Vii = Lect Notes Comput Sc Transactions On Computational Science Vii = Lect. Notes. Comput. Sc. Transactions On Computational Science Vi = Lect Notes Comput Sc Transactions On Computational Science Vi = Lect. Notes. Comput. Sc. Transactions On Computational Science X: Special Issue On Security in Computing, Pt I = Lect Notes Comput Sc Transactions On Computational Science X: Special Issue On Security in Computing, Pt I = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology Ii = Lect Notes Comput Sc Transactions On Computational Systems Biology Ii = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology I = Lect Notes Comput Sc Transactions On Computational Systems Biology I = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology Iv = Lect Notes Comput Sc Transactions On Computational Systems Biology Iv = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology Vii = Lect Notes Comput Sc Transactions On Computational Systems Biology Vii = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology Vi = Lect Notes Comput Sc Transactions On Computational Systems Biology Vi = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology V = Lect Notes Comput Sc Transactions On Computational Systems Biology V = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology Xii = Lect N Bioinformat Transactions On Computational Systems Biology Xii = Lect. N. Bioinformat. Transactions On Computational Systems Biology Xi = Lect Notes Comput Sc Transactions On Computational Systems Biology Xi = Lect. Notes. Comput. Sc. Transactions On Computational Systems Biology X = Lect Notes Comput Sc Transactions On Computational Systems Biology X = Lect. Notes. Comput. Sc. Transactions On Data Hiding and Multimedia Security 1 = Lect Notes Comput Sc Transactions On Data Hiding and Multimedia Security 1 = Lect. Notes. Comput. Sc. Transactions On Data Hiding and Multimedia Security Iii = Lect Notes Comput Sc Transactions On Data Hiding and Multimedia Security Iii = Lect. Notes. Comput. Sc. Transactions On Data Hiding and Multimedia Security Iv = Lect Notes Comput Sc Transactions On Data Hiding and Multimedia Security Iv = Lect. Notes. Comput. Sc. Transactions On Data Hiding and Multimedia Security V = Lect Notes Comput Sc Transactions On Data Hiding and Multimedia Security V = Lect. Notes. Comput. Sc. Transactions On Edutainment Iii = Lect Notes Comput Sc Transactions On Edutainment Iii = Lect. Notes. Comput. Sc. Transactions On Edutainment Ii = Lect Notes Comput Sc Transactions On Edutainment Ii = Lect. Notes. Comput. Sc. Transactions On Edutainment I = Lect Notes Comput Sc Transactions On Edutainment I = Lect. Notes. Comput. Sc. Transactions On Edutainment Iv = Lect Notes Comput Sc Transactions On Edutainment Iv = Lect. Notes. Comput. Sc. Transactions On High-performance Embedded Architectures and Compilers Ii = Lect Notes Comput Sc Transactions On High-performance Embedded Architectures and Compilers Ii = Lect. Notes. Comput. Sc. Transactions On High-performance Embedded Architectures and Compilers I = Lect Notes Comput Sc Transactions On High-performance Embedded Architectures and Compilers I = Lect. Notes. Comput. Sc. Transactions On Large-scale Data- and Knowledge-centered Systems I = Lect Notes Comput Sc Transactions On Large-scale Data- and Knowledge-centered Systems I = Lect. Notes. Comput. Sc. Transactions On Pattern Languages of Programming Ii: Special Issue On Applying Patterns = Lect Notes Comput Sc Transactions On Pattern Languages of Programming Ii: Special Issue On Applying Patterns = Lect. Notes. Comput. Sc. Transactions On Petri Nets and Other Models of Concurrency Iii = Lect Notes Comput Sc Transactions On Petri Nets and Other Models of Concurrency Iii = Lect. Notes. Comput. Sc. Transactions On Petri Nets and Other Models of Concurrency Ii = Lect Notes Comput Sc Transactions On Petri Nets and Other Models of Concurrency Ii = Lect. Notes. Comput. Sc. Transactions On Petri Nets and Other Models of Concurrency I = Lect Notes Comput Sc Transactions On Petri Nets and Other Models of Concurrency I = Lect. Notes. Comput. Sc. Transactions On Rough Sets Iii = Lect Notes Comput Sc Transactions On Rough Sets Iii = Lect. Notes. Comput. Sc. Transactions On Rough Sets Ii = Lect Notes Comput Sc Transactions On Rough Sets Ii = Lect. Notes. Comput. Sc. Transactions On Rough Sets I = Lect Notes Comput Sc Transactions On Rough Sets I = Lect. Notes. Comput. Sc. Transactions On Rough Sets Iv = Lect Notes Comput Sc Transactions On Rough Sets Iv = Lect. Notes. Comput. Sc. Transactions On Rough Sets Ix = Lect Notes Comput Sc Transactions On Rough Sets Ix = Lect. Notes. Comput. Sc. Transactions On Rough Sets Vii: Commemorating The Life and Work of Zdzislaw Pawlak, Part Ii = Lect Notes Comput Sc Transactions On Rough Sets Vii: Commemorating The Life and Work of Zdzislaw Pawlak, Part Ii = Lect. Notes. Comput. Sc. Transactions On Rough Sets Viii = Lect Notes Comput Sc Transactions On Rough Sets Viii = Lect. Notes. Comput. Sc. Transactions On Rough Sets V = Lect Notes Comput Sc Transactions On Rough Sets V = Lect. Notes. Comput. Sc. Transactions On Rough Sets Xii = Lect Notes Comput Sc Transactions On Rough Sets Xii = Lect. Notes. Comput. Sc. Transactions On Rough Sets Xi = Lect Notes Comput Sc Transactions On Rough Sets Xi = Lect. Notes. Comput. Sc. Transactions On Rough Sets X = Lect Notes Comput Sc Transactions On Rough Sets X = Lect. Notes. Comput. Sc. Transactions. Ophthalmological Society of the United Kingdom = Trans Opthal Soc U K Transactions - Pennsylvania Academy of Ophthalmology and Otolaryngology = Trans Pa Acad Ophthalmol Otolaryngol Transactions, Pennsylvania Academy of Ophthalmology and Otolaryngology = Trans. Pa. Acad. Ophthalmol. Otolaryngol. Transactions. Section on Ophthalmology. American Academy of Ophthalmology and Otolaryngology = Trans Sect Ophthalmol Am Acad Ophthalmol Otolaryngol Transactions. Section on Otolaryngology. American Academy of Ophthalmology and Otolaryngology = Trans Sect Otolaryngol Am Acad Ophthalmol Otolaryngol Transactions & studies of the College of Physicians of Philadelphia = Trans Stud Coll Physicians Phila Transactions - The Leicestershire Archaeological and Historical Society. Leicestershire Archaeological and Historical Society = Trans Leicester Archaeol Hist Soc Trans-action=Trans-action Trans-action = Trans Action Trans-action = Trans-act-soc Sci Mo Trans-action = Trans-act-soc. Sci. Mo. Transaero-european Initiative On Transient Aerodnamics for Railway System Optimisation = Note N Fl Mech Mul D Transaero-european Initiative On Transient Aerodnamics for Railway System Optimisation = Note. N. Fl. Mech. Mul. D. Transaero-european Initiative On Transient Aerodnamics for Railway System Optimisation = Notes Numer Fluid Me Transaero-european Initiative On Transient Aerodnamics for Railway System Optimisation = Notes. Numer. Fluid. Me. Transafrican Journal of History = Transafr J Hist Transafrican Journal of History = Transafr. J. Hist. Trans-atlantic Migration: The Paradoxes of Exile = Afr Stud-hist Polit Trans-atlantic Migration: The Paradoxes of Exile = Afr. Stud-hist. Polit. Transatlantic Relations in A Global Economy = Ver Hwwa Inst Wirts Transatlantic Relations in A Global Economy = Ver. Hwwa. Inst. Wirts. Transboundary and Emerging Diseases = Transbound Emerg Dis Transboundary and Emerging Diseases = Transbound. Emerg. Dis. Transboundary Floods: Reducing Risks Through Flood Management = Nato Sci S Ss Iv Ear Transboundary Floods: Reducing Risks Through Flood Management = Nato. Sci. S. Ss. Iv. Ear. Transboundary Water Resources: A Foundation for Regional Stability in Central Asia = Nato Sci Peace Secur Transboundary Water Resources: A Foundation for Regional Stability in Central Asia = Nato. Sci. Peace. Secur. Transboundary Water Resources in The Balkans = Nato Asi 2 Transboundary Water Resources in The Balkans = Nato. Asi. 2. Transboundary Water Resources: Strategies for Regional Security and Ecological Stability = Nato Sci S Ss Iv Ear Transboundary Water Resources: Strategies for Regional Security and Ecological Stability = Nato. Sci. S. Ss. Iv. Ear. Transcatheter Embolization and Therapy = Tech Interv Radiol Transcatheter Embolization and Therapy = Tech. Interv. Radiol. Transcations of The Sixty Fifth North American Wildlife and Natural Resource Conference = T N Am Wildl Nat Res Transcations of The Sixty Fifth North American Wildlife and Natural Resource Conference = T. N. Am. Wildl. Nat. Res. Transcations of The Sixty Fifth North American Wildlife and Natural Resource Conference = Trans N Am Wildl Nat Transcations of The Sixty Fifth North American Wildlife and Natural Resource Conference = Trans. N. Am. Wildl. Nat. Transcranial Magnetic Stimulation and Transcranial Direct Current Stimulation = Suppl Clin Neurophys Transcranial Magnetic Stimulation and Transcranial Direct Current Stimulation = Suppl. Clin. Neurophys. Transcranial Magnetic Stimulation: A Neurochronometrics of Mind = Bradford Books Transcranial Magnetic Stimulation: A Neurochronometrics of Mind = Bradford. Books. Transcranial Magnetic Stimulation = Eeg Cl N Su Transcranial Magnetic Stimulation = Eeg. Cl. N. Su. Transcranial Sonography in Movement Disorders = Int Rev Neurobiol Transcranial Sonography in Movement Disorders = Int. Rev. Neurobiol. Transcriptional Control of Cell Growth: The E2f Gene Family = Curr Top Microbiol Transcriptional Control of Cell Growth: The E2f Gene Family = Curr. Top. Microbiol. Transcriptional Corepressors: Mediators of Eukaryotic Gene Repression = Curr Top Microbiol Transcriptional Corepressors: Mediators of Eukaryotic Gene Repression = Curr. Top. Microbiol. Transcription = Biochem Soc Symp Transcription = Biochem. Soc. Symp. Transcription Factors: Methods and Protocols = Methods Mol Biol Transcription Factors: Methods and Protocols = Methods Mol. Biol. Transcultural Japan: At The Borderlands of Race, Gender and Identity = Asias Transform Transcultural Japan: At The Borderlands of Race, Gender and Identity = Asias. Transform. Transcultural Modernities: Narrating Africa in Europe = Matatu Transcultural Modernities: Narrating Africa in Europe = Matatu. Transcultural psychiatry = Transcult Psychiatry Transcultural Psychiatry = Transcult Psychiatry Transcultural Psychiatry = Transcult. Psychiatry Transculturation: Cities, Spaces and Architectures in Latin America = Crit Stud Transculturation: Cities, Spaces and Architectures in Latin America = Crit. Stud. Transdisciplinary Digital Art: Sound, Vision and The New Screen = Comm Com Inf Sc Transdisciplinary Digital Art: Sound, Vision and The New Screen = Comm. Com. Inf. Sc. Transdisciplinary Knowledge Production in Architecture and Urbanism: Towards Hybrid Modes of Inquiry = Urban Land Perspect Transdisciplinary Knowledge Production in Architecture and Urbanism: Towards Hybrid Modes of Inquiry = Urban. Land. Perspect. Transducing Materials and Devices = Proc Spie Transducing Materials and Devices = Proc. Spie. Transducing Materials and Devices = P Soc Photo-opt Ins Transducing Materials and Devices = P. Soc. Photo-opt. Ins. Transduction in Biological Systems = Ser Cent Es Transduction in Biological Systems = Ser. Cent. Es. Transferability and Applicability of Current Mechanics Approaches = Fracture Mech Symp Transferability and Applicability of Current Mechanics Approaches = Fracture. Mech. Symp. Transferability of Fracture Mechanical Characteristics = Nato Sci Ser Ii-math Transferability of Fracture Mechanical Characteristics = Nato. Sci. Ser. Ii-math. Transferability of Fracture Mechanical Characteristics = Nato Sci Ser Ii Math Transferability of Fracture Mechanical Characteristics = Nato. Sci. Ser. Ii. Math. Transfer and Diffusion of Information Technology for Organizational Resilience = Int Fed Info Proc Transfer and Diffusion of Information Technology for Organizational Resilience = Int. Fed. Info. Proc. Transfer in Reinforcement Learning Domains = Stud Comput Intell Transfer in Reinforcement Learning Domains = Stud. Comput. Intell. Transfer Phenomena in Magnetohydrodynamic and Electroconducting Flows = Fluid Mec A Transfer Phenomena in Magnetohydrodynamic and Electroconducting Flows = Fluid. Mec. A. Transfer Phenomena in Magnetohydrodynamic and Electroconducting Flows = Fluid Mech Appl Transfer Phenomena in Magnetohydrodynamic and Electroconducting Flows = Fluid. Mech. Appl. Trans-form-acao = Trans-form-acao Transformational Science and Technology for The Current and Future Force = Sel Top Electr Syst Transformational Science and Technology for The Current and Future Force = Sel. Top. Electr. Syst. Transformational Trends in Governance and Democracy = Transform Tr Gov Dem Transformational Trends in Governance and Democracy = Transform. Tr. Gov. Dem. Transformation-based Reactive Systems Development = Lect Notes Comput Sc Transformation-based Reactive Systems Development = Lect. Notes. Comput. Sc. Transformation, Co-operation, and Conversion = Nato Asi S 4 Sci Tec Transformation, Co-operation, and Conversion = Nato. Asi. S. 4. Sci. Tec. Transformationen Der Antike = Transform Antike Transformationen Der Antike = Transform. Antike Transformation Groups = Transform. Groups Transformation Groups = Transform Groups Transformation Groups = Transform. Groups Transformation in Higher Education: Global Pressures and Local Realities = High Educ Dynam Transformation in Higher Education: Global Pressures and Local Realities = High. Educ. Dynam. Transformation! Innovation?: Perspectives On Taiwan Culture = Stud Formos Transformation! Innovation?: Perspectives On Taiwan Culture = Stud. Formos. Transformation of Planned Economics : Property Rights Reform and Macroeconomic Stability = Oecd Ctr C Transformation of Planned Economics : Property Rights Reform and Macroeconomic Stability = Oecd. Ctr. C. Transformation of Socialist Economies : Symposium 1991 = Kieler Stud Transformation of Socialist Economies : Symposium 1991 = Kieler. Stud. Transformation of The Japanese Left: From Old Socialists to New Democrats = Nissan I Routl Jpn S Transformation of The Japanese Left: From Old Socialists to New Democrats = Nissan. I. Routl. Jpn. S. Transformation of The Roman World = Transfor Roman World Transformation of The Roman World = Transfor. Roman World Transformation of Trade Union and Industrial Relations = Coll Instrum Trav Transformation of Trade Union and Industrial Relations = Coll. Instrum. Trav. Transformation of Urban Space in Post-soviet Russia = Basees-rout Ser Russ Transformation of Urban Space in Post-soviet Russia = Basees-rout. Ser. Russ. Transformation of Vocational Education and Training (vet) in The Baltic States - Survey of Reforms and Developments = Tech Vocat Ed Train Transformation of Vocational Education and Training (vet) in The Baltic States - Survey of Reforms and Developments = Tech. Vocat. Ed. Train. Transformation Processes in Minerals = Rev Mineral Geochem Transformation Processes in Minerals = Rev. Mineral. Geochem. Transformation Products of Synthetic Chemicals in The Environment = Handb Environ Chem Transformation Products of Synthetic Chemicals in The Environment = Handb. Environ. Chem. Transformations in Business & Economics = Transform Bus Econ Transformations in Business & Economics = Transform. Bus. Econ. Transformations in Global Governance: Implications for Multinationals and Other Stakeholders = New Horiz Int Bus Transformations in Global Governance: Implications for Multinationals and Other Stakeholders = New. Horiz. Int. Bus. Transformations in Medieval and Early-modern Rights Discourse = New Synth Hist Lib Transformations in Medieval and Early-modern Rights Discourse = New. Synth. Hist. Lib. Transformations in Twentieth Century Korea = Routl Adv Korean Stu Transformations in Twentieth Century Korea = Routl. Adv. Korean. Stu. Transformations-london = Transformations-lond Transformations-london = Transformations-lond. Transformations of Kinship = Smithson Ser Ethnog Transformations of Kinship = Smithson. Ser. Ethnog. Transformations of The New Germany = Stud Eur Cult Hist Transformations of The New Germany = Stud. Eur. Cult. Hist. Transformations of The State = Transform State Transformations of The State = Transform. State Transformations-studies in The History of Science and Technology = Transformations-stud Transformations-studies in The History of Science and Technology = Transformations-stud. Transformations Thinking Through Feminism = Transform Think Fem Transformations Thinking Through Feminism = Transform. Think. Fem. Transformative Pastoral Leadership in The Black Church = Black Relig Woman Th Transformative Pastoral Leadership in The Black Church = Black Relig. Woman. Th. Transformed Muscle for Cardiac Assist and Repair = Bakken Res Transformed Muscle for Cardiac Assist and Repair = Bakken. Res. Transforming Asian Governance: Rethinking Assumptions, Challenging Practices = Rout Res Pub Soc Pol Transforming Asian Governance: Rethinking Assumptions, Challenging Practices = Rout. Res. Pub. Soc. Pol. Transforming Education for Peace = Peace Educ Ser Transforming Education for Peace = Peace Educ. Ser. Transforming European Militaries: Coalition Operations and The Technology Gap = Contemp Secur Stud Transforming European Militaries: Coalition Operations and The Technology Gap = Contemp. Secur. Stud. Transforming Faith = Contr St R Transforming Faith = Contr. St. R. Transforming Government and Building The Information Society = Innov Tech Knowl Man Transforming Government and Building The Information Society = Innov. Tech. Knowl. Man. Transforming Government = Transform Gov Transforming Government = Transform. Gov. Transforming Growth-factor Betas = Ann Ny Acad Sci Transforming Growth-factor Betas = Ann. Ny. Acad. Sci. Transforming Health Care Through Information: Case Studies, Third Edition = Health Inform Ser Transforming Health Care Through Information: Case Studies, Third Edition = Health Inform. Ser. Transforming Higher Education: A Comparative Study, Second Edition = High Educ Dynam Transforming Higher Education: A Comparative Study, Second Edition = High. Educ. Dynam. Transforming Nato in The Cold War: Challenges Beyond Deterrence in The 1960s = Css Stud Sec Int Rel Transforming Nato in The Cold War: Challenges Beyond Deterrence in The 1960s = Css. Stud. Sec. Int. Rel. Transforming Organizations With Information Technology = Ifip Trans A Transforming Organizations With Information Technology = Ifip. Trans. A. Transforming Peasants: Society, State and The Peasantry, 1861-1930 = Int Congr Cent E Eur Transforming Peasants: Society, State and The Peasantry, 1861-1930 = Int. Congr. Cent. E. Eur. Transforming Politics, Transforming America: The Political and Civic Incorporation of Immigrants Inn The United States = Race Ethn Polit Transforming Politics, Transforming America: The Political and Civic Incorporation of Immigrants Inn The United States = Race. Ethn. Polit. Transforming Power: Energy, Environment, and Society in Conflict = Energ Environ Policy Transforming Power: Energy, Environment, and Society in Conflict = Energ. Environ. Policy. Transforming Public Leadership for The 21st Century = Transform Tr Gov Dem Transforming Public Leadership for The 21st Century = Transform. Tr. Gov. Dem. Transforming Research Libraries for The Global Knowledge Society = Chandos Inf Prof Ser Transforming Research Libraries for The Global Knowledge Society = Chandos. Inf. Prof. Ser. Transforming Science and Technology Systems - The Endless Transition? = Nato Asi S 4 Sci Tec Transforming Science and Technology Systems - The Endless Transition? = Nato. Asi. S. 4. Sci. Tec. Transforming Societies After Political Violence:truth, Reconciliation, and Mental Health = Peace Psychol Book S Transforming Societies After Political Violence:truth, Reconciliation, and Mental Health = Peace. Psychol. Book. S. Transforming The Developmental Welfare State in East Asia = Soc Policy Dev Conte Transforming The Developmental Welfare State in East Asia = Soc. Policy. Dev. Conte. Transforming The Golden-age Nation State = Transform State Transforming The Golden-age Nation State = Transform. State Transforming Unjust Structures: Capability Approach = Lib Ethics Appl Phil Transforming Unjust Structures: Capability Approach = Lib. Ethics. Appl. Phil. Transforms and Applications Handbook, Third Edition = Electr Eng Handb Ser Transforms and Applications Handbook, Third Edition = Electr. Eng. Handb. Ser. Transfusion and apheresis science : official journal of the World Apheresis Association : official journal of the European Society for Haemapheresis = Transfus Apher Sci Transfusion and Apheresis Science = Transfus Apher Sci Transfusion and Apheresis Science = Transfus. Apher. Sci. Transfusion clinique et biologique : journal de la Societe francaise de transfusion sanguine = Transfus Clin Biol Transfusion Clinique et Biologique = Transfus. Clin. Biol. Transfusion Clinique Et Biologique=Transfus Clin Biol;; Transfusion Clinique Et Biologique = Transfus Clin Biol Transfusion Clinique Et Biologique = Transfus. Clin. Biol. Transfusion Medicine 1988 - Infections, Plasma Products, Transplantations, Antibodies = Beitr Infus Transfusion Medicine 1988 - Infections, Plasma Products, Transplantations, Antibodies = Beitr. Infus. Transfusion Medicine 1989-1990 = Beitr Infus Transfusion Medicine 1989-1990 = Beitr. Infus. Transfusion Medicine 1991-1992 = Beitr Infus Transfusion Medicine 1991-1992 = Beitr. Infus. Transfusion Medicine 1992-1993 = Beitr Infus Transfusion Medicine 1992-1993 = Beitr. Infus. Transfusion Medicine 1993-94 = Beitr Infus Transfusion Medicine 1993-94 = Beitr. Infus. Transfusion Medicine 1995/1996 = Beitr Infus Transfusion Medicine 1995/1996 = Beitr. Infus. Transfusion medicine and hemotherapy : offizielles Organ der Deutschen Gesellschaft fur Transfusionsmedizin und Immunhamatologie = Transfus Med Hemother Transfusion Medicine and Hemotherapy = Transfus Med Hemoth Transfusion Medicine and Hemotherapy = Transfus. Med. Hemoth. Transfusion Medicine = Beitr Infus Transfusion Medicine = Beitr. Infus. Transfusion Medicine : Fact and Fiction = Dev Hematol Transfusion Medicine : Fact and Fiction = Dev. Hematol. Transfusion medicine (Oxford, England) = Transfus Med Transfusion Medicine: Quo Vadis? What Has Been Achieved, What Is to Be Expected = Dev Hematol Transfusion Medicine: Quo Vadis? What Has Been Achieved, What Is to Be Expected = Dev. Hematol. Transfusion medicine reviews = Transfus Med Rev Transfusion Medicine Reviews=Transfus Med Rev;; Transfusion Medicine Reviews = Transfus Med Rev Transfusion Medicine Reviews = Transfus. Med. Rev. Transfusion Medicine = Transfusion Med Transfusion Medicine = Transfusion Med. Transfusion Medicine=Transfus Med;; Transfusion Medicine = Transfus. Med. Transfusion science = Transfus Sci Transfusion Science = Transfus Sci Transfusion Science = Transfus. Sci. Transfusionsmedizin 1996/97 = Beitr Infus Transfusionsmedizin 1996/97 = Beitr. Infus. Transfusion: Think About It = Health Care Iss Cost Transfusion: Think About It = Health. Care. Iss. Cost. Transfusion=Transfusion;; Transfusion = Transfusion Transfusion = Transfusion (Paris) Transgenesis and The Management of Vector-borne Disease = Adv Exp Med Biol Transgenesis and The Management of Vector-borne Disease = Adv. Exp. Med. Biol. Transgenic and Mutant Tools to Model Brain Disorders = Neuromethods Transgenic and Mutant Tools to Model Brain Disorders = Neuromethods. Transgenic Maize: Methods and Protocols = Methods Mol Biol Transgenic Maize: Methods and Protocols = Methods Mol. Biol. Transgenic Microalgae As Green Cell Factories = Adv Exp Med Biol Transgenic Microalgae As Green Cell Factories = Adv. Exp. Med. Biol. Transgenic Models in Medicine and Agriculture = Ucla Sym Bi Transgenic Models in Medicine and Agriculture = Ucla. Sym. Bi. Transgenic Models of Human Viral and Immunological Disease = Curr Top Microbiol Transgenic Models of Human Viral and Immunological Disease = Curr. Top. Microbiol. Transgenic Mouse Methods and Protocols, Second Edition = Methods Mol Biol Transgenic Mouse Methods and Protocols, Second Edition = Methods Mol. Biol. Transgenic Organisms: Biological and Social Implications = Adv Lif Sci Transgenic Organisms: Biological and Social Implications = Adv. Lif. Sci. Transgenic research = Transgenic Res Transgenic Research=Transgenic Res;; Transgenic Research = Transgenic Res Transgenic Research = Transgenic Res. Transgenics = Transgenics Transglutaminases: Family of Enzymes With Diverse Functions = Prog Exp Tumor Res Transglutaminases: Family of Enzymes With Diverse Functions = Prog. Exp. Tumor. Res. Transgressions: Critical Australian Indigenous Histories = Aborig Hist Mg Ser Transgressions: Critical Australian Indigenous Histories = Aborig. Hist. Mg. Ser. Transient Chaos: Complex Dynamics On Finite-time Scales = Appl Math Sci Transient Chaos: Complex Dynamics On Finite-time Scales = Appl. Math. Sci. Transient Diffusion in Nuclear Fuels Processes = Energ Sci Eng Tech Transient Diffusion in Nuclear Fuels Processes = Energ. Sci. Eng. Tech. Transient Heat Transfer = Springerbr Appl Sci Transient Heat Transfer = Springerbr. Appl. Sci. Transient Milky Way: A Perspective for Mirax = Aip Conf Proc Transient Milky Way: A Perspective for Mirax = Aip. Conf. Proc. Transient Processes in Tribology = Tribology S Transient Processes in Tribology = Tribology S. Transient Radio Sky = Springer Theses-reco Transient Radio Sky = Springer. Theses-reco. Transient Receptor Potential Channels = Adv Exp Med Biol Transient Receptor Potential Channels = Adv. Exp. Med. Biol. Transilvania University of Brașov = Bull. Transilv. Univ. Brașov Ser. A (N.S.) Transilvania University of Brașov = Bull. Transilv. Univ. Brașov Ser. B (N.S.) Transinformacao = Transinformacao Transistor Scaling- Methods, Materials and Modeling = Mater Res Soc Symp P Transistor Scaling- Methods, Materials and Modeling = Mater. Res. Soc. Symp. P. Transistors: Types, Materials and Applications = Electr Eng Dev Transistors: Types, Materials and Applications = Electr. Eng. Dev. Transit: Buses, Paratransit, Rural Public Buses, and Intercity Transit; New Transportation Systems and Technology: Capacity and Quality of Service = Transport Res Rec Transit: Buses, Paratransit, Rural Public Buses, and Intercity Transit; New Transportation Systems and Technology: Capacity and Quality of Service = Transport. Res. Rec. Transit: Bus, Paratransit, and Marketing and Fare Policy = Transport Res Rec Transit: Bus, Paratransit, and Marketing and Fare Policy = Transport. Res. Rec. Transit: Bus, Paratransit, Rural Public and Intercity Bus, New Transportation Systems and Technology, Capacity and Quality of Service = Transport Res Rec Transit: Bus, Paratransit, Rural Public and Intercity Bus, New Transportation Systems and Technology, Capacity and Quality of Service = Transport. Res. Rec. Transit: Bus, Rural Public and Intercity, and Paratransit = Transport Res Rec Transit: Bus, Rural Public and Intercity, and Paratransit = Transport. Res. Rec. Transit Bus, Rural Public Transportation, and Paratransit = Transport Res Rec Transit Bus, Rural Public Transportation, and Paratransit = Transport. Res. Rec. Transit: Bus Transit and Maintenance, Paratransit, and New Technology = Transport Res Rec Transit: Bus Transit and Maintenance, Paratransit, and New Technology = Transport. Res. Rec. Transit: Bus Transit and Maintenance; Rural; Paratransit; Technology; Capacity and Quality of Service = Transport Res Rec Transit: Bus Transit and Maintenance; Rural; Paratransit; Technology; Capacity and Quality of Service = Transport. Res. Rec. Transiting Extrasolar Planets Workshop = Astr Soc P Transiting Extrasolar Planets Workshop = Astr. Soc. P. Transiting Planets, Proceedings = Iau Symp P Series Transiting Planets, Proceedings = Iau. Symp. P. Series. Transit: Intermodal Facilities, Rail Transit, Commuter Rail, Light Rail Transit, Maintenance, and Ferry Transportation = Transport Res Rec Transit: Intermodal Facilities, Rail Transit, Commuter Rail, Light Rail Transit, Maintenance, and Ferry Transportation = Transport. Res. Rec. Transit: Intermodal Transfer Facilities and Ferry Transportation; Commuter Rail; Light Rail and Major Activity Center Circulation Systems; Capacity and Quality of Service = Transport Res Rec Transit: Intermodal Transfer Facilities and Ferry Transportation; Commuter Rail; Light Rail and Major Activity Center Circulation Systems; Capacity and Quality of Service = Transport. Res. Rec. Transit: Intermodal Transfer Facilities, Rail, Commuter Rail, Light Rail, and Major Actvity Center Circulation Systems = Transport Res Rec Transit: Intermodal Transfer Facilities, Rail, Commuter Rail, Light Rail, and Major Actvity Center Circulation Systems = Transport. Res. Rec. Transit: Intermodal Transfer Facilities, Rail Transit, Commuter Rail, Light Rail, Ferry, and Major Activity Center Circulation Systems = Transport Res Rec Transit: Intermodal Transfer Facilities, Rail Transit, Commuter Rail, Light Rail, Ferry, and Major Activity Center Circulation Systems = Transport. Res. Rec. Transitional Dynamics and Economic Growth in Developing Countries = Lect Notes Econ Math Transitional Dynamics and Economic Growth in Developing Countries = Lect. Notes. Econ. Math. Transitional Justice in Eastern Europe and The Former Soviet Union = Basees-rout Ser Russ Transitional Justice in Eastern Europe and The Former Soviet Union = Basees-rout. Ser. Russ. Transitional Metal Sulphides = Nato Asi 3 High Tech Transitional Metal Sulphides = Nato. Asi. 3. High. Tech. Transition and Beyond: Essays in Honor of Mario Nuti = Stud Econ Transit Transition and Beyond: Essays in Honor of Mario Nuti = Stud. Econ. Transit. Transition and Turbulence Control = Lect Notes Ser Inst Transition and Turbulence Control = Lect. Notes. Ser. Inst. Transitioned Media: A Turning Point Into The Digital Realm = Econ Inform Comm Ent Transitioned Media: A Turning Point Into The Digital Realm = Econ. Inform. Comm. Ent. Transition in Eastern Europe, Vol 1 = Nber Conf R Transition in Eastern Europe, Vol 1 = Nber. Conf. R. Transition Metal and Rare Earth Compounds: Excited States, Transition, Interactions I = Top Curr Chem Transition Metal and Rare Earth Compounds: Excited States, Transition, Interactions I = Top. Curr. Chem. Transition Metal and Rare Earth Compounds: Excited States, Transitions, Interactions Ii = Top Curr Chem Transition Metal and Rare Earth Compounds: Excited States, Transitions, Interactions Ii = Top. Curr. Chem. Transition Metal and Rare Earth Compounds Iii = Top Curr Chem Transition Metal and Rare Earth Compounds Iii = Top. Curr. Chem. Transition Metal Carbyne Complexes = Nato Adv Sci Inst Se Transition Metal Carbyne Complexes = Nato. Adv. Sci. Inst. Se. Transition Metal Chemistry (Dordrecht, Netherlands) = Transition Met. Chem. (Dordrecht, Neth.) Transition Metal Chemistry (London) = Transition Met. Chem. (London) Transition Metal Chemistry = Transition Met. Chem. Transition Metal Chemistry = Transit Metal Chem Transition Metal Chemistry = Transit. Metal Chem. Transition Metal Complexes of Neutral Eta1-carbon Ligands = Top Organometal Chem Transition Metal Complexes of Neutral Eta1-carbon Ligands = Top. Organometal. Chem. Transition Metal Sulfur Chemistry = Acs Sym Ser Transition Metal Sulfur Chemistry = Acs. Sym. Ser. Transition of Optical Processors Into Systems 1993 = P Soc Photo-opt Ins Transition of Optical Processors Into Systems 1993 = P. Soc. Photo-opt. Ins. Transition of Optical Processors Into Systems 1994 = P Soc Photo-opt Ins Transition of Optical Processors Into Systems 1994 = P. Soc. Photo-opt. Ins. Transition of Optical Processors Into Systems 1995 = P Soc Photo-opt Ins Transition of Optical Processors Into Systems 1995 = P. Soc. Photo-opt. Ins. Transitions and Transformations = P Assoc Res Lib Transitions and Transformations = P. Assoc. Res. Lib. Transitions Before The Transition = Interd Contrib Arch Transitions Before The Transition = Interd. Contrib. Arch. Transitions: Development Through Symbolic Resources = Adv Cult Psychol Con Transitions: Development Through Symbolic Resources = Adv. Cult. Psychol. Con. Transitions in Latin America and in Poland and Syria = Res Polit Econ Transitions in Latin America and in Poland and Syria = Res. Polit. Econ. Transitions in Oligomer and Polymer Systems = Prog Coll Pol Sci S Transitions in Oligomer and Polymer Systems = Prog. Coll. Pol. Sci. S. Transitions to Adulthood in Europe = Eur Stud Populat Transitions to Adulthood in Europe = Eur. Stud. Populat. Transition, Turbulence and Combustion Modelling = Ercoftac Ser Transition, Turbulence and Combustion Modelling = Ercoftac. Ser. Transit: Management, Maintenance, Technology and Planning = Transport Res Rec Transit: Management, Maintenance, Technology and Planning = Transport. Res. Rec. Transit Migration: The Missing Link Between Emigration and Settlement = Migrat Minor Citizen Transit Migration: The Missing Link Between Emigration and Settlement = Migrat. Minor. Citizen. Transit Planning and Development, Management and Performance, Marketing and Fare Policy, and Capacity and Quality of Service = Transport Res Rec Transit Planning and Development, Management and Performance, Marketing and Fare Policy, and Capacity and Quality of Service = Transport. Res. Rec. Transit: Planning and Development, Management and Performance, Marketing and Fare Policy, and Intermodal Transfer Facilities = Transport Res Rec Transit: Planning and Development, Management and Performance, Marketing and Fare Policy, and Intermodal Transfer Facilities = Transport. Res. Rec. Transit: Planning and Development, Management and Performance, Marketing Fare Policy = Transport Res Rec Transit: Planning and Development, Management and Performance, Marketing Fare Policy = Transport. Res. Rec. Transit Planning, Intermodal Facilities, and Marketing = Transport Res Rec Transit Planning, Intermodal Facilities, and Marketing = Transport. Res. Rec. Transit: Planning, Intermodal Facilities, Management, and Marketing = Transport Res Rec Transit: Planning, Intermodal Facilities, Management, and Marketing = Transport. Res. Rec. Transit: Planning, Management and Maintenance, Technology, Marketing and Fare Policy, and Capacity and Qualtiy of Sevice = Transport Res Rec Transit: Planning, Management and Maintenance, Technology, Marketing and Fare Policy, and Capacity and Qualtiy of Sevice = Transport. Res. Rec. Transit Planning, Management, Marketing, New Technology, Capacity, and Quality of Service = Transport Res Rec Transit Planning, Management, Marketing, New Technology, Capacity, and Quality of Service = Transport. Res. Rec. Transit Rail, Commuter Rail, Major Activity Center Circulation Systems, Light Rail, and Ferry Service = Transport Res Rec Transit Rail, Commuter Rail, Major Activity Center Circulation Systems, Light Rail, and Ferry Service = Transport. Res. Rec. Transit: Rail Transit and Maintenance, Commuter Rail, Major Activity Center Circulation Systems, Light Rail Transit, and Ferry Service = Transport Res Rec Transit: Rail Transit and Maintenance, Commuter Rail, Major Activity Center Circulation Systems, Light Rail Transit, and Ferry Service = Transport. Res. Rec. Transit: Rail Transit, Commuter Rail, Light Rail Transit, Major Activity Center Circulation Systems, New Technology and Maintenance = Transport Res Rec Transit: Rail Transit, Commuter Rail, Light Rail Transit, Major Activity Center Circulation Systems, New Technology and Maintenance = Transport. Res. Rec. Transit = Transport Res Rec Transit = Transport. Res. Rec. Transitus Mariae = Griech Christl Schri Transitus Mariae = Griech. Christl. Schri. Transjordanian Palimpsest = Beih Z Alttest Wiss Transjordanian Palimpsest = Beih. Z. Alttest. Wiss. Translatability of Cultures = Stutt Sem Cultur St Translatability of Cultures = Stutt. Sem. Cultur. St. Translating Latin America : Culture As Text = Trans Persp Translating Latin America : Culture As Text = Trans. Persp. Translating Mechanisms of Orofacial Neurological Disorder = Int Rev Neurobiol Translating Mechanisms of Orofacial Neurological Disorder = Int. Rev. Neurobiol. Translating Shakespeare for The Twenty-first Century = Dqr Stud Lit Translating Shakespeare for The Twenty-first Century = Dqr. Stud. Lit. Translating Theory and Research Into Educational Practice = Educ Psychol Ser Translating Theory and Research Into Educational Practice = Educ. Psychol. Ser. Translational Medicine: Strategies and Statistical Methods = Ch Crc Biostat Ser Translational Medicine: Strategies and Statistical Methods = Ch. Crc. Biostat. Ser. Translational Multimodality Optical Imaging = Artech Hse Bioinf Bi Translational Multimodality Optical Imaging = Artech. Hse. Bioinf. Bi. Translational Neuroscience in Animal Research: Advancement, Challenges, and Research Ethics = Neurosci Res Prog Se Translational Neuroscience in Animal Research: Advancement, Challenges, and Research Ethics = Neurosci. Res. Prog. Se. Translational Oncology = Transl Oncol Translational Oncology = Transl. Oncol. Translational Research in Biomedicine = Transl Res Biomed Translational Research in Biomedicine = Transl. Res. Biomed. Translational research : the journal of laboratory and clinical medicine = Transl Res Translational Research = Transl Res Translational Research = Transl. Res. Translational Stem Cell Research: Issues Beyond The Debate On The Moral Status of The Human Embryo = Stem Cells Biol Reg Translational Stem Cell Research: Issues Beyond The Debate On The Moral Status of The Human Embryo = Stem Cells. Biol. Reg. Translation and Literature = Transl Lit Translation and Literature = Transl. Lit. Translation and Technology = Palg Txb Transl Inte Translation and Technology = Palg. Txb. Transl. Inte. Translation in Context = Benjamin Transl Lib Translation in Context = Benjamin. Transl. Lib. Translation: in French and Francophone Literature and Film = Fr Lit Ser Translation: in French and Francophone Literature and Film = Fr. Lit. Ser. Translation Initiation: Cell Biology, High-throughput Methods, and Chemical-based Approaches = Method Enzymol Translation Initiation: Cell Biology, High-throughput Methods, and Chemical-based Approaches = Method. Enzymol. Translation Initiation: Extract Systems and Molecular Genetics = Method Enzymol Translation Initiation: Extract Systems and Molecular Genetics = Method. Enzymol. Translation Initiation: Reconstituted Systems and Biophysical Methods = Method Enzymol Translation Initiation: Reconstituted Systems and Biophysical Methods = Method. Enzymol. Translation of Raphael's Roman Style = Gr Stud Cult Translation of Raphael's Roman Style = Gr. Stud. Cult. Translation Perspectives = Trans Persp Translation Perspectives = Trans. Persp. Translation Practices: Through Language to Culture = Int Forsch Allg Vgl Translation Practices: Through Language to Culture = Int. Forsch. Allg. Vgl. Translation Review = Translation Rev Translation Review = Translation Rev. Translation, Sociolinguistic, and Consumer Issues in Interpreting = Stud Interpret Translation, Sociolinguistic, and Consumer Issues in Interpreting = Stud. Interpret. Translations of Mathematical Monographs = Transl. Math. Monogr. Translation Studies: An Interdiscipline = Benjamin Transl Lib Translation Studies: An Interdiscipline = Benjamin. Transl. Lib. Translation Studies At The Interface of Disciplines = Benjamin Transl Lib Translation Studies At The Interface of Disciplines = Benjamin. Transl. Lib. Translation Studies in The New Millennium, Proceedings = Transl Stud New Mill Translation Studies in The New Millennium, Proceedings = Transl. Stud. New Mill. Translation Studies in The New Millennium = Transl Stud New Mill Translation Studies in The New Millennium = Transl. Stud. New Mill. Translation Transnation = Transl Transnat Translation Transnation = Transl. Transnat. Translation Under State Control: Books for Young People in The German Democratic Republic = Child Lit Cult Translation Under State Control: Books for Young People in The German Democratic Republic = Child. Lit. Cult. Translator = Translator Transmembrane Signalling, Intracellular Messengers and Implications for Drug Development = Biol Coun S Transmembrane Signalling, Intracellular Messengers and Implications for Drug Development = Biol. Coun. S. Transmissible Diseases and Blood Transfusion, Proceedings = Dev Hematol Transmissible Diseases and Blood Transfusion, Proceedings = Dev. Hematol. Transmissible Spongiform Encephalopathies - Impact On Animal and Human Health = Dev Biol Stand Transmissible Spongiform Encephalopathies - Impact On Animal and Human Health = Dev. Biol. Stand. Transmission and Distribution Conference and Exposition-latin America = Tr Dist C Exp Lat Am Transmission and Distribution Conference and Exposition-latin America = Tr. Dist. C. Exp. Lat. Am. Transmission and Distribution Conference and Exposition = Trans Distrib Conf Transmission and Distribution Conference and Exposition = Trans. Distrib. Conf. Transmission & Distribution = Transm Distrib Transmission & Distribution = Transm. Distrib. Transmission Electron Energy Loss Spectrometry in Materials Science = Empmd Monog Transmission Electron Energy Loss Spectrometry in Materials Science = Empmd. Monog. Transmission Electron Microscopy of Semiconductor Nanostructures: An Analysis of Composition and Strain State = Springer Trac Mod Ph Transmission Electron Microscopy of Semiconductor Nanostructures: An Analysis of Composition and Strain State = Springer. Trac. Mod. Ph. Transmission Electron Microscopy of Semiconductor Nanostructures: An Analysis of Composition and Strain State = Springer Tr Mod Phys Transmission Electron Microscopy of Semiconductor Nanostructures: An Analysis of Composition and Strain State = Springer. Tr. Mod. Phys. Transmission Grid Security: A Psa Approach = Power Syst Transmission Grid Security: A Psa Approach = Power. Syst. Transmission Problems for Elliptic Second-order Equations in Non-smooth Domains = Front Math Transmission Problems for Elliptic Second-order Equations in Non-smooth Domains = Front. Math. Transmissions in Automotive Vehicles = Vdi Bericht Transmissions in Automotive Vehicles = Vdi. Bericht. Transmission Systems for Rail Vehicles = Vdi Bericht Transmission Systems for Rail Vehicles = Vdi. Bericht. Transnational American Memories = Media Cult Mem Transnational American Memories = Media. Cult. Mem. Transnational Blackness: Navigating The Global Color Line = Crit Black Stud Ser Transnational Blackness: Navigating The Global Color Line = Crit. Black. Stud. Ser. Transnational Corporations=Transnat. Corporations Transnational Dimension of Cyber Crime and Terrorism = Hoover Natl Secur Fo Transnational Dimension of Cyber Crime and Terrorism = Hoover. Natl. Secur. Fo. Transnational Environmental Liability and Insurance = Int Bar Ass Transnational Environmental Liability and Insurance = Int. Bar. Ass. Transnational Feminism in Film and Media = Comp Fem Stud Ser Transnational Feminism in Film and Media = Comp. Fem. Stud. Ser. Transnationalism and American Literature: Literary Translation 1773-1892 = Routl Transnat Persp Transnationalism and American Literature: Literary Translation 1773-1892 = Routl. Transnat. Persp. Transnationalism in Southern African Literature = Rout Res Postcol Lit Transnationalism in Southern African Literature = Rout. Res. Postcol. Lit. Transnationalism = Key Ideas Transnationalism = Key. Ideas. Transnationalism Series = Transnatl Ser Transnationalism Series = Transnatl. Ser. Transnationalization of Public Spheres = Transform State Transnationalization of Public Spheres = Transform. State. Transnational Labour Solidarity = Routl Adv Eur Polit Transnational Labour Solidarity = Routl. Adv. Eur. Polit. Transnational Organized Crime = Glob Inst Transnational Organized Crime = Glob. Inst. Transnational Politics of Corporate Governance Regulation = Ripe Ser Glob Polit Transnational Politics of Corporate Governance Regulation = Ripe. Ser. Glob. Polit. Transnational Politics of Corporate Governance Regulation = Ripe S Glob Pol Econ Transnational Politics of Corporate Governance Regulation = Ripe. S. Glob. Pol. Econ. Transnational Private Governance and Its Limits = Routl Ecpr Stud Eur Transnational Private Governance and Its Limits = Routl. Ecpr. Stud. Eur. Transnational Private Governance and Its Limits = Routledge/ecpr Stud Transnational Private Governance and Its Limits = Routledge/ecpr. Stud. Transnational Unconscious: Essays in The History of Psychoanalysis and Transnationalism = Palg Mac Transnat H Transnational Unconscious: Essays in The History of Psychoanalysis and Transnationalism = Palg. Mac. Transnat. H. Trans-neptunian Objects and Comets = Saas Fee Ad Trans-neptunian Objects and Comets = Saas. Fee. Ad. Transonic Aerodynamics = Front App M Transonic Aerodynamics = Front. App. M. Transpacific = Transpacific Transparency in Grey Literature: Grey Tech Approaches to High Tech Issues = Gl Conference Ser Transparency in Grey Literature: Grey Tech Approaches to High Tech Issues = Gl. Conference. Ser. Transparent Conductive Zinc Oxide = Springer Ser Mater S Transparent Conductive Zinc Oxide = Springer. Ser. Mater. S. Transplacental Disorders = Alb Bir Def Transplacental Disorders = Alb. Bir. Def. Transplantation '95 = Roy Soc Med Int Cong Transplantation '95 = Roy. Soc. Med. Int. Cong. Transplantation '96 - Maximizing Patient Benefit in Transplantation = Roy Soc Med Int Cong Transplantation '96 - Maximizing Patient Benefit in Transplantation = Roy. Soc. Med. Int. Cong. Transplantation and Clinical Immunology (symposia Foundation Marcel Merieux) = Transp Cl Immun Sfmm Transplantation and Clinical Immunology (symposia Foundation Marcel Merieux) = Transp. Cl. Immun. Sfmm. Transplantation and Clinical Immunology, Vol 22 = Sym Fond M Transplantation and Clinical Immunology, Vol 22 = Sym. Fond. M. Transplantation and Clinical Immunology, Vol 24 = Sym Fond M Transplantation and Clinical Immunology, Vol 24 = Sym. Fond. M. Transplantation and Clinical Immunology, Vol Xxiii = Sym Fond M Transplantation and Clinical Immunology, Vol Xxiii = Sym. Fond. M. Transplantation and Clinical Immunology, Vol Xx = Sym Fond M Transplantation and Clinical Immunology, Vol Xx = Sym. Fond. M. Transplantation Bulletin = Transplan B Transplantation Bulletin = Transplan. B. Transplantation bulletin = Transplant Bull Transplantation Proceedings = Transplant P Transplantation Proceedings = Transplant. P. Transplantation proceedings = Transplant Proc Transplantation Proceedings=Transplant Proc;; Transplantation Proceedings = Transplant. Proc. Transplantation Proceedings = Transpl P Transplantation Proceedings = Transpl. P. Transplantation reviews (Orlando, Fla.) = Transplant Rev (Orlando) Transplantation reviews = Transplant Rev Transplantation Reviews = Transplant Rev Transplantation Reviews = Transplant. Rev. Transplantation science = Transplant Sci Transplantation Science = Transplant. Sci. Transplantationsmedizin: Ein Leitfaden Fur Den Praktiker = Leitf Prakt Transplantationsmedizin: Ein Leitfaden Fur Den Praktiker = Leitf. Prakt. Transplantation=Transplantation;; Transplantation = Transplantation Transplant immunology = Transpl Immunol Transplant Immunology=Transpl Immunol;; Transplant Immunology = Transpl Immunol Transplant Immunology = Transpl. Immunol. Transplant infectious disease : an official journal of the Transplantation Society = Transpl Infect Dis Transplant Infectious Disease = Transpl Infect Dis Transplant Infectious Disease = Transpl. Infect. Dis. Transplant international : official journal of the European Society for Organ Transplantation = Transpl Int Transplant International = Transplant Int Transplant International = Transplant Int. Transplant International=Transpl Int;; Transplant International = Transpl Int Transplant International = Transpl. Int. Transplant Monitoring = Contr Trans Transplant Monitoring = Contr. Trans. Transporation Network Modeling 2003 = Transport Res Rec Transporation Network Modeling 2003 = Transport. Res. Rec. Transport and Conversion of in The Heliosphere = Lect Notes Phys Transport and Conversion of in The Heliosphere = Lect. Notes. Phys. Transport and Mixing in Geophysical Flows = Lect Notes Phys Transport and Mixing in Geophysical Flows = Lect. Notes. Phys. Transport and Optical Properties of Nanomaterials = Aip Conf Proc Transport and Optical Properties of Nanomaterials = Aip. Conf. Proc. Transport and Remediation of Subsurface Contaminants = Acs Sym Ser Transport and Remediation of Subsurface Contaminants = Acs. Sym. Ser. Transport and The Environment = Iss Environ Sci Tech Transport and The Environment = Iss. Environ. Sci. Tech. Transportation Analysis = Transportation Analy Transportation Analysis = Transportation Analy. Transportation and Economic Development Challenges = Nectar Ser Transp Transportation and Economic Development Challenges = Nectar. Ser. Transp. Transportation and Energy: Strategies for A Sustainable Transportation System = Aceee Ener Pol Ener Transportation and Energy: Strategies for A Sustainable Transportation System = Aceee. Ener. Pol. Ener. Transportation and Land Development 2005 = Transport Res Rec Transportation and Land Development 2005 = Transport. Res. Rec. Transportation and Public Policy 2001 = Transport Res Rec Transportation and Public Policy 2001 = Transport. Res. Rec. Transportation and Public Policy 2002 = Transport Res Rec Transportation and Public Policy 2002 = Transport. Res. Rec. Transportation Biofuels: Novel Pathways for The Production of Ethanol, Biogas and Biodiesel = Rsc Green Chem Ser Transportation Biofuels: Novel Pathways for The Production of Ethanol, Biogas and Biodiesel = Rsc. Green. Chem. Ser. Transportation Data and Information Technology Research = Transport Res Rec Transportation Data and Information Technology Research = Transport. Res. Rec. Transportation Data and Information Technology = Transport Res Rec Transportation Data and Information Technology = Transport. Res. Rec. Transportation Data Research = Transport Res Rec Transportation Data Research = Transport. Res. Rec. Transportation Data, Statistics, and Information Technology = Transport Res Rec Transportation Data, Statistics, and Information Technology = Transport. Res. Rec. Transportation Engineering Journal of Asce = Transport Eng-j Asce Transportation Engineering Journal of Asce = Transport. Eng-j. Asce Transportation Engineering = Transport Eng Transportation Engineering = Transport. Eng. Transportation Finance, Economics and Economic Development 2003 = Transport Res Rec Transportation Finance, Economics and Economic Development 2003 = Transport. Res. Rec. Transportation Finance, Economics, and Economic Development 2004 = Transport Res Rec Transportation Finance, Economics, and Economic Development 2004 = Transport. Res. Rec. Transportation Finance, Economics, and Management = Transport Res Rec Transportation Finance, Economics, and Management = Transport. Res. Rec. Transportation Finance, Pricing, and Economics = Transport Res Rec Transportation Finance, Pricing, and Economics = Transport. Res. Rec. Transportation in Developing Countries = Transport Res Rec Transportation in Developing Countries = Transport. Res. Rec. Transportation Infrastructure-roads Highways Bridges Airports and Mass Transit = Transp Infrastruct-r Transportation Infrastructure-roads Highways Bridges Airports and Mass Transit = Transp. Infrastruct-r. Transportation Issues Policies and R & D = Transp Issues Polici Transportation Issues Policies and R & D = Transp. Issues Polici. Transportation Journal=Transp. J. Transportation Journal = Transport J Transportation Journal = Transport. J. Transportation Land Use and Smart Growth = Transport Res Rec Transportation Land Use and Smart Growth = Transport. Res. Rec. Transportation Management and Education = Transport Res Rec Transportation Management and Education = Transport. Res. Rec. Transportation Management and Public Policy 2003 = Transport Res Rec Transportation Management and Public Policy 2003 = Transport. Res. Rec. Transportation Management and Public Policy 2004 = Transport Res Rec Transportation Management and Public Policy 2004 = Transport. Res. Rec. Transportation Network Modeling 2001 = Transport Res Rec Transportation Network Modeling 2001 = Transport. Res. Rec. Transportation Network Modeling 2002 = Transport Res Rec Transportation Network Modeling 2002 = Transport. Res. Rec. Transportation Network Modeling 2004 = Transport Res Rec Transportation Network Modeling 2004 = Transport. Res. Rec. Transportation Network Planning = Transport Res Rec Transportation Network Planning = Transport. Res. Rec. Transportation Planning and Analysis 2002 = Transport Res Rec Transportation Planning and Analysis 2002 = Transport. Res. Rec. Transportation Planning and Analysis 2003 = Transport Res Rec Transportation Planning and Analysis 2003 = Transport. Res. Rec. Transportation Planning and Analysis 2004 = Transport Res Rec Transportation Planning and Analysis 2004 = Transport. Res. Rec. Transportation Planning and Technology = Transport Plan Techn Transportation Planning and Technology = Transport. Plan. Techn. Transportation Planning, Public Participation, and Telecommuting = Transport Res Rec Transportation Planning, Public Participation, and Telecommuting = Transport. Res. Rec. Transportation Planning: State of The Art = Appl Optimizat Transportation Planning: State of The Art = Appl. Optimizat. Transportation Quarterly = Transport Q Transportation Quarterly = Transport. Q. Transportation Research Board Special Report = Trans Res B Transportation Research Board Special Report = Trans. Res. B. Transportation Research Economics and Policy = Transp Res Econ Pol Transportation Research Economics and Policy = Transp. Res. Econ. Pol. Transportation Research, Economics and Policy = Transp Res Econ Pol Transportation Research, Economics and Policy = Transp. Res. Econ. Pol. Transportation Research Part A-policy and Practice = Transport Res A-pol Transportation Research Part A-policy and Practice = Transport. Res. A-pol. Transportation Research: Part A: Policy and Practice=Transp. Res.: Part A: Pol. Practice Transportation Research Part B-methodological = Transport Res B-meth Transportation Research Part B-methodological = Transport. Res. B-meth. Transportation Research: Part B: Methodological=Transp. Res.: Part B: Methodological Transportation Research Part C-emerging Technologies = Transport Res C-emer Transportation Research Part C-emerging Technologies = Transport. Res. C-emer. Transportation Research Part D-transport and Environment = Transport Res D-tr E Transportation Research Part D-transport and Environment = Transport. Res. D-tr. E. Transportation Research: Part D: Transport and Environment=Transp. Res.: Part D: Transport Environ. Transportation Research: Part E: Logistics and Transporation Review=Transp. Res.: Part E: Logist. Transp. Rev. Transportation Research Part E-logistics and Transportation Review = Transport Res E-log Transportation Research Part E-logistics and Transportation Review = Transport. Res. E-log. Transportation Research Part F-traffic Psychology and Behaviour = Transport Res F-traf Transportation Research Part F-traffic Psychology and Behaviour = Transport. Res. F-traf. Transportation Research Record-series = Transport Res Rec Transportation Research Record-series = Transport. Res. Rec. Transportation Research Record = Transport Res Rec Transportation Research Record = Transport. Res. Rec. Transportation Research Record = Transp. Res. Rec. Transportation Research Record = Transp Res Record Transportation Research Record = Transp. Res. Record Transportation Research = Transport Res Transportation Research = Transport. Res. Transportation Research = Transp. Res. Transportation Science = Transport Sci Transportation Science = Transport. Sci. Transportation Security and Infrastructure Protection = Transport Res Rec Transportation Security and Infrastructure Protection = Transport. Res. Rec. Transportation Sensors and Controls: Collision Avoidance, Traffic Management, and Its = P Soc Photo-opt Ins Transportation Sensors and Controls: Collision Avoidance, Traffic Management, and Its = P. Soc. Photo-opt. Ins. Transportation Studies = Transp Stud Transportation Studies = Transp. Stud. Transportation Systems 1997, Vols 1-3 = Ifac Symp Series Transportation Systems 1997, Vols 1-3 = Ifac. Symp. Series. Transportation Systems Analysis, Second Edition = Springer Ser Optim A Transportation Systems Analysis, Second Edition = Springer. Ser. Optim. A. Transportation, Traffic Safety and Health - Human Behavior = Trans Traff Saf Hlth Transportation, Traffic Safety and Health - Human Behavior = Trans. Traff. Saf. Hlth. Transportation, Traffic Safety and Health - Man and Machine = Trans Traff Saf Hlth Transportation, Traffic Safety and Health - Man and Machine = Trans. Traff. Saf. Hlth. Transportation, Traffic Safety and Health (series) = Trans Traff Saf Hlth Transportation, Traffic Safety and Health (series) = Trans. Traff. Saf. Hlth. Transportation=Transportation Transportation = Transportation Transportation Work-zone Safety and Winter Services = Transport Res Rec Transportation Work-zone Safety and Winter Services = Transport. Res. Rec. Transport At The Air-sea Interface: Measurements, Models and Parametrizations = Environ Sci Eng Transport At The Air-sea Interface: Measurements, Models and Parametrizations = Environ. Sci. Eng. Transport Developments and Innovations in An Evolving World = Adv Spat Sci Transport Developments and Innovations in An Evolving World = Adv. Spat. Sci. Transport Economics Management and Policy = Transp Econ Manag Po Transport Economics Management and Policy = Transp. Econ. Manag. Po. Transport Equations and Multi-d Hyperbolic Conservation Laws = Lect Notes Unione Ma Transport Equations and Multi-d Hyperbolic Conservation Laws = Lect. Notes. Unione. Ma. Transport Equations for Semiconductors = Lect Notes Phys Transport Equations for Semiconductors = Lect. Notes. Phys. Transporters and Pumps in Plant Signaling = Signal Commun Plants Transporters and Pumps in Plant Signaling = Signal. Commun. Plants. Transporters As Targets for Drugs = Top Med Chem Ser Transporters As Targets for Drugs = Top. Med. Chem. Ser. Transport history = Trans Hist Transport History = Transport Hist Transport History = Transport Hist. Transport in Metal-oxide-semiconductor Structures: Mobile Ions Effects On The Oxide Properities = Eng Mater Transport in Metal-oxide-semiconductor Structures: Mobile Ions Effects On The Oxide Properities = Eng. Mater. Transport in Porous Media = Transport Porous Med Transport in Porous Media = Transport Porous Med. Transport in Porous Media = Transp. Porous Media Transport in The Liver = Falk Symp Transport in The Liver = Falk. Symp. Transport in Transition Regimes = Ima V Math Transport in Transition Regimes = Ima. V. Math. Transport, Land-use and The Environment = Transp Res Econ Pol Transport, Land-use and The Environment = Transp. Res. Econ. Pol. Transport Means 2006, Proceedings = Transp Means Transport Means 2006, Proceedings = Transp. Means Transport Means 2008, Proceedings = Transp Means Transport Means 2008, Proceedings = Transp. Means Transport Means 2009 = Transp Means Transport Means 2009 = Transp. Means Transport Means - Proceedings of The International Conference = Transp Means Transport Means - Proceedings of The International Conference = Transp. Means Transportmetrica = Transportmetrica Transport of Galactic and Anomalous Cosmic Rays in The Heliosphere: Observations, Simulations and Theory = Adv Space Res Transport of Galactic and Anomalous Cosmic Rays in The Heliosphere: Observations, Simulations and Theory = Adv. Space. Res. Transport of Galactic and Anomalous Cosmic Rays in The Heliosphere: Observations, Simulations and Theory = Adv Space Res-series Transport of Galactic and Anomalous Cosmic Rays in The Heliosphere: Observations, Simulations and Theory = Adv. Space. Res-series. Transport of Molecules Across Microbial Membranes = Symp Soc Gen Microbi Transport of Molecules Across Microbial Membranes = Symp. Soc. Gen. Microbi. Transport Phenomena and Kinetic Theory = Model Simul Sci Eng Transport Phenomena and Kinetic Theory = Model. Simul. Sci. Eng. Transport Phenomena in Fires = Int Ser Dev Heat Tra Transport Phenomena in Fires = Int. Ser. Dev. Heat. Tra. Transport Phenomena in Microgravity = Ann Ny Acad Sci Transport Phenomena in Microgravity = Ann. Ny. Acad. Sci. Transport Phenomena in Micro Process Engineering = Heat Mass Transf Transport Phenomena in Micro Process Engineering = Heat. Mass. Transf. Transport Planning, Logistics, and Spatial Mismatch = Eur Res R S Transport Planning, Logistics, and Spatial Mismatch = Eur. Res. R. S. Transport Policy = Transport Policy Transport Policy = Transp Policy Transport Policy = Transp. Policy Transport Processes in Engineering = Tran Pr Eng Transport Processes in Engineering = Tran. Pr. Eng. Transport Reviews = Transport Rev Transport Reviews = Transport Rev. Transport System Telematics = Comm Com Inf Sc Transport System Telematics = Comm. Com. Inf. Sc. Transport Technologies for Broadband Optical Access Networks = P Soc Photo-opt Ins Transport Technologies for Broadband Optical Access Networks = P. Soc. Photo-opt. Ins. Transport Theory and Statistical Physics = Transport Theor Stat Transport Theory and Statistical Physics = Transport Theor. Stat. Transport Theory and Statistical Physics = Transport Theory Statist. Phys. Transport theory and statistical physics = Transp Theory Stat Phys Transport Theory and Statistical Physics = Transp. Theory Stat. Phys. Transport Theory, Invariant Imbedding, and Integral Equations = Lect Notes Pure Appl Transport Theory, Invariant Imbedding, and Integral Equations = Lect. Notes. Pure. Appl. Transport Through Membranes : Carriers, Channels and Pumps = Jerus Sym Q Transport Through Membranes : Carriers, Channels and Pumps = Jerus. Sym. Q. Transport = Transport Transport = Transport-vilnius Transport = Transport-vilnius. Transposable Elements = Curr Top Microbiol Transposable Elements = Curr. Top. Microbiol. Transposons and The Dynamic Genome = Genome Dynam Stabil Transposons and The Dynamic Genome = Genome Dynam. Stabil. Transputer and Occam Developments = Transput Occam Eng S Transputer and Occam Developments = Transput. Occam Eng. S. Transputer and Occam Engineering Series = Transput Occam Eng S Transputer and Occam Engineering Series = Transput. Occam Eng. S. Transputer and Occam Research : New Directions = Transput Occam Eng S Transputer and Occam Research : New Directions = Transput. Occam Eng. S. Transputer Applications and Systems 93 = Transput Occam Eng S Transputer Applications and Systems 93 = Transput. Occam. Eng. S. Transputer Applications and Systems '94 = Transput Occam Eng S Transputer Applications and Systems '94 = Transput. Occam. Eng. S. Transputer Applications and Systems '95 = Concur Syst Engn Ser Transputer Applications and Systems '95 = Concur. Syst. Engn. Ser. Transputer Applications - Progress and Prospects = Transput Occam Eng S Transputer Applications - Progress and Prospects = Transput. Occam. Eng. S. Transputer in Australasia 2 = Transput Occam Eng S Transputer in Australasia 2 = Transput. Occam. Eng. S. Transputer in Australasia = Transput Occam Eng S Transputer in Australasia = Transput. Occam. Eng. S. Transputer/occam Japan 3 = Transput Occam Eng S Transputer/occam Japan 3 = Transput. Occam. Eng. S. Transputer / Occam Japan 4 = Transput Occam Eng S Transputer / Occam Japan 4 = Transput. Occam Eng. S. Transputer/occam Japan 5 = Transput Occam Eng S Transputer/occam Japan 5 = Transput. Occam. Eng. S. Transputer/occam Japan 6 = Transput Occam Eng S Transputer/occam Japan 6 = Transput. Occam. Eng. S. Transputer Research and Applications 1 = Appl Transp Transputer Research and Applications 1 = Appl. Transp. Transputer Research and Applications 2 = Appl Transp Transputer Research and Applications 2 = Appl. Transp. Transputer Research and Applications 3 = N Amer Tran Transputer Research and Applications 3 = N. Amer. Tran. Transputer Research and Applications 4 = N Amer Tran Transputer Research and Applications 4 = N. Amer. Tran. Transputer Research and Applications 7 = Transput Occam Eng S Transputer Research and Applications 7 = Transput. Occam. Eng. S. Transputers '94 = Transput Occam Eng S Transputers '94 = Transput. Occam. Eng. S. Transputers and Parallel Applications = Transput Occam Eng S Transputers and Parallel Applications = Transput. Occam. Eng. S. Transputing 91 = Transput Occam Eng S Transputing 91 = Transput. Occam. Eng. S. Transrapid Und Rad-schiene- Hochgeschwindigkeitsbahn = Vdi-buch Transrapid Und Rad-schiene- Hochgeschwindigkeitsbahn = Vdi-buch. Trans-saharan Slave Trade = Hist Soc Islam World Trans-saharan Slave Trade = Hist. Soc. Islam. World. Transseries and Real Diffential Algebra = Lect Notes Math Transseries and Real Diffential Algebra = Lect. Notes. Math. Transtactions of The Royal Society of New Zealand-geology = T Roy Soc Nz Geol Transtactions of The Royal Society of New Zealand-geology = T. Roy. Soc. Nz. Geol. Transverse-pattern Formation in Photorefractive Optics = Springer Trac Mod Ph Transverse-pattern Formation in Photorefractive Optics = Springer. Trac. Mod. Ph. Transverse-pattern Formation in Photorefractive Optics = Springer Tracts Mod Transverse-pattern Formation in Photorefractive Optics = Springer. Tracts. Mod. Transverse-pattern Formation in Photorefractive Optics = Springer Tr Mod Phys Transverse-pattern Formation in Photorefractive Optics = Springer. Tr. Mod. Phys. Transverse Patterns in Nonlinear Optical Resonators = Springer Tracts Mod Transverse Patterns in Nonlinear Optical Resonators = Springer. Tracts. Mod. Transverse Patterns in Nonlinear Optical Resonators = Springer Tr Mod Phys Transverse Patterns in Nonlinear Optical Resonators = Springer. Tr. Mod. Phys. Transverse Patterns in Nonlinear Optics = P Soc Photo-opt Ins Transverse Patterns in Nonlinear Optics = P. Soc. Photo-opt. Ins. Transylvanian Review of Administrative Sciences = Transylv Rev Adm Sci Transylvanian Review of Administrative Sciences = Transylv. Rev. Adm. Sci. Transylvanian Review of Administrative Sciences = Transylv Rev Adm Ser Transylvanian Review of Administrative Sciences = Transylv. Rev. Adm. Ser. Transylvanian Review = Transylv Rev Transylvanian Review = Transylv. Rev. Trapped Charged Particles and Fundamental Interactions = Lect Notes Phys Trapped Charged Particles and Fundamental Interactions = Lect. Notes. Phys. Trapped Charged Particles and Fundamentals Physics = Aip Conf Proc Trapped Charged Particles and Fundamentals Physics = Aip. Conf. Proc. Trapped Particles and Fundamental Physics = Nato Sci Ser Ii Math Trapped Particles and Fundamental Physics = Nato. Sci. Ser. Ii. Math. Trauma and Media: Theories, Histories, and Images = Routl Res Cult Media Trauma and Media: Theories, Histories, and Images = Routl. Res. Cult. Media. Trauma Violence & Abuse = Trauma Violence Abus Trauma Violence & Abuse = Trauma Violence Abus. Trauma, violence & abuse = Trauma Violence Abuse Travail et Emploi=Travail Emploi Travail Genre Et Societes = Trav Genre Soc Travail Genre Et Societes = Trav. Genre Soc. Travail Humain = Trav Humain Travail Humain = Trav. Humain Travail & Societe - Work & Society = Travail Soc Travail & Societe - Work & Society = Travail Soc. Travaux de la Societe de pharmacie de Montpellier = Trav Soc Pharm Montp Travaux de l’Institut d’art préhistorique, Université de Toulouse – Le Mirail = TravToulouse Travaux De L Institut Interuniversitaire Pour L Etude De La Renaissance Et De L Humanisme = Trav I Etud Travaux De L Institut Interuniversitaire Pour L Etude De La Renaissance Et De L Humanisme = Trav. I. Etud. Travaux de Logique = Travaux Log. Travaux des Laboratoires de matiere medicale et de pharmacie galenique de la Faculte de pharmacie de Paris = Trav Lab Matiere Med Pharm Galenique Fac Pharm Paris Travaux du Centre de Recherches Sémiologiques = Travaux Centre Rech. Sémiol. Travaux du Cercle linguistique d'Aix-en-Provence = TCLA Travaux en Cours = Travaux en Cours Travaux et mémoires. Centre de recherche d’histoire et civilisation byzantine, Paris = TravMem Travaux et mémoires du Centre de recherches d'hist. et civil. byzantines = T&MBYZ Travaux neuchâtelois de linguistique = TraNeL Travaux scientifiques des chercheurs du Service de sante des armees durant l'annee ... / Republique Francaise, Ministere de la defense, Direction centrale du Service de sante des armees = Trav Sci Cherch Serv Sante Armees Travaux Scientifiques du Parc National de la Vanoise = Trav. Sci. Parc Natl. Vanoise Travaux Station de recherches des eaux et forêts = Trav. Stn. rech. eaux for. Travel Behavior and Values 2004 = Transport Res Rec Travel Behavior and Values 2004 = Transport. Res. Rec. Travel Demand 2005 = Transport Res Rec Travel Demand 2005 = Transport. Res. Rec. Travel Demand and Land Use 2002 = Transport Res Rec Travel Demand and Land Use 2002 = Transport. Res. Rec. Travel Demand and Land Use 2003 = Transport Res Rec Travel Demand and Land Use 2003 = Transport. Res. Rec. Travel Demand and Land Use 2004 = Transport Res Rec Travel Demand and Land Use 2004 = Transport. Res. Rec. Travel Demand and Land Use 2006 = Transport Res Rec Travel Demand and Land Use 2006 = Transport. Res. Rec. Traveler Behavior and Values 2002 = Transport Res Rec Traveler Behavior and Values 2002 = Transport. Res. Rec. Traveler Behavior and Values 2003 = Transport Res Rec Traveler Behavior and Values 2003 = Transport. Res. Rec. Traveler Behavior and Values 2005 = Transport Res Rec Traveler Behavior and Values 2005 = Transport. Res. Rec. Traveler Behavior and Values 2006 = Transport Res Rec Traveler Behavior and Values 2006 = Transport. Res. Rec. Traveling Spirits: Migrants, Markets and Mobilities = Routl Stud Anthropol Traveling Spirits: Migrants, Markets and Mobilities = Routl. Stud. Anthropol. Traveller, Nomadic and Migrant Education = Routl Res Educ Traveller, Nomadic and Migrant Education = Routl. Res. Educ. Travelling in A Palimpsest: Finnish Nineteenth Century Painters' Encounters With Spanish Art and Culture = Suom Tiedeakat Toim Travelling in A Palimpsest: Finnish Nineteenth Century Painters' Encounters With Spanish Art and Culture = Suom. Tiedeakat. Toim. Travelling Mathematics: The Fate of Diophantos Arithmetic = Sci Netw Hist Stud Travelling Mathematics: The Fate of Diophantos Arithmetic = Sci. Netw. Hist. Stud. Travel Medicine and Infectious Disease = Travel Med Infect Di Travel Medicine and Infectious Disease = Travel Med. Infect. Di. Travel medicine and infectious disease = Travel Med Infect Dis Travel Medicine and Infectious Disease = Travel Med. Infect. Dis. Travel Patterns and Behavior; Effects of Communications Technology = Transport Res Rec Travel Patterns and Behavior; Effects of Communications Technology = Transport. Res. Rec. Travel Survey Methods, Information Technology, and Geospatial Data = Transport Res Rec Travel Survey Methods, Information Technology, and Geospatial Data = Transport. Res. Rec. Treadmill Exercise and Its Effects On Cardiovascular Fitness, Depression and Muscle Aerobic Function = Public Health 21st C Treadmill Exercise and Its Effects On Cardiovascular Fitness, Depression and Muscle Aerobic Function = Public. Health. 21st. C. Treasures of Wisdom = Bib Eph The Treasures of Wisdom = Bib. Eph. The. Treating Child and Adolescent Aggression Through Bibliotherapy = Springer Ser Hum Exc Treating Child and Adolescent Aggression Through Bibliotherapy = Springer. Ser. Hum. Exc. Treatment guidelines from the Medical Letter = Treat Guidel Med Lett Treatment Guidelines from the Medical Letter = Treat. Guidel. Med. Lett. Treatment of Adult Survivors of Incest = Clin Prac Treatment of Adult Survivors of Incest = Clin. Prac. Treatment of Age-related Cognitive Dysfunction : Pharmacological and Clinical Evaluation = Int Acad B Treatment of Age-related Cognitive Dysfunction : Pharmacological and Clinical Evaluation = Int. Acad. B. Treatment of Dementias = Adv Behav Biol Treatment of Dementias = Adv. Behav. Biol. Treatment of Esophageal Varices = Int Congr Ser Treatment of Esophageal Varices = Int. Congr. Ser. Treatment of Gastro-oesophageal Reflux Disease and Helicobacter Pylori Infection = Res Clin Forums Treatment of Gastro-oesophageal Reflux Disease and Helicobacter Pylori Infection = Res. Clin. Forums. Treatment of Post Surgical Adhesions = Prog Clin Biol Res Treatment of Post Surgical Adhesions = Prog. Clin. Biol. Res. Treatment of Prostatic Cancer - Facts and Controversies = Prog Clin Biol Res Treatment of Prostatic Cancer - Facts and Controversies = Prog. Clin. Biol. Res. Treatment of Tannery Effluents By Membrane Separation Technology = Chem Eng Method Tech Treatment of Tannery Effluents By Membrane Separation Technology = Chem. Eng. Method. Tech. Treatment of The Obese Patient = Contemp Endocrinol S Treatment of The Obese Patient = Contemp. Endocrinol. S. Treatment of Ventricular Fibrillation = Cardiol Res Clin Dev Treatment of Ventricular Fibrillation = Cardiol. Res. Clin. Dev. Treatment Planning for The Developing Dentition = Quintessent Dent Pra Treatment Planning for The Developing Dentition = Quintessent. Dent. Pra. Treatment review = Treat Rev Treatment services bulletin. Canada. Dept. of Veterans' Affairs = Treat Serv Bull Treatments in endocrinology = Treat Endocrinol Treatments in Endocrinology = Treat. Endocrinol. Treatments in respiratory medicine = Treat Respir Med Treatments in Respiratory Medicine = Treat. Respir. Med. Treatment Strategies for Chronic Renal Failure = Contrib Nephrol Treatment Strategies for Chronic Renal Failure = Contrib. Nephrol. Treatment Strategy in Hodgkins Disease = Colloq Inse Treatment Strategy in Hodgkins Disease = Colloq. Inse. TreatmentUpdate = TreatmentUpdate Treats to Optimal Development: Integrating Biological, Psychological, and Social Risk Factors = Minn Sym Child Psych Treats to Optimal Development: Integrating Biological, Psychological, and Social Risk Factors = Minn. Sym. Child. Psych. Tree Genetics & Genomes = Tree Genet Genomes Tree Genetics & Genomes = Tree Genet. Genomes Tree-kangaroos of Australia and New Guinea = Austral Nat Hist Ser Tree-kangaroos of Australia and New Guinea = Austral. Nat. Hist. Ser. Tree Physiology Series = Tree Physiol Ser Tree Physiology Series = Tree Physiol. Ser. Tree physiology = Tree Physiol Tree Physiology = Tree Physiol Tree Physiology = Tree Physiol. Tree-ring Bulletin = Tree-ring Bull. Tree-ring Research = Tree-ring Res Tree-ring Research = Tree-ring Res. Tree-Ring Research = Tree-Ring Res. Tree Rings and Natural Hazards: A State-of-the-art = Adv Glob Change Res Tree Rings and Natural Hazards: A State-of-the-art = Adv. Glob. Change. Res. Trees of Life = Aust S Hist Trees of Life = Aust. S. Hist. Tree Species Effects On Soils: Implications for Global Change = Nato Sci S Ss Iv Ear Tree Species Effects On Soils: Implications for Global Change = Nato. Sci. S. Ss. Iv. Ear. Trees-structure and Function = Trees-struct Funct Trees-structure and Function = Trees-struct. Funct. Trees = Trees Tree-structure Based Hybrid Computational Intelligence: Theoretical Foundations and Applications = Intel Syst Ref Libr Tree-structure Based Hybrid Computational Intelligence: Theoretical Foundations and Applications = Intel. Syst. Ref. Libr. Trees - Workshop in Versailles, June 14-16, 1995 = Prog Probab Trees - Workshop in Versailles, June 14-16, 1995 = Prog. Probab. Trekking The Shore: Changing Coastlines and The Antiquity of Coastal Settlement = Interd Contrib Arch Trekking The Shore: Changing Coastlines and The Antiquity of Coastal Settlement = Interd. Contrib. Arch. Trends and Advances in Liver Diseases = Tr Adv Liv Trends and Advances in Liver Diseases = Tr. Adv. Liv. Trends and Directions in Climate Research = Ann Ny Acad Sci Trends and Directions in Climate Research = Ann. Ny. Acad. Sci. Trends and Future Perspectives in Peptide and Protein Drug Delivery = Drug Targ D Trends and Future Perspectives in Peptide and Protein Drug Delivery = Drug Targ. D. Trends and Issues in Global Tourism 2011 = Tr Iss Glob Tour Trends and Issues in Global Tourism 2011 = Tr. Iss. Glob. Tour. Trends and Issues in Global Tourism = Tr Iss Glob Tour Trends and Issues in Global Tourism = Tr. Iss. Glob. Tour. Trends and New Applications of Thin Films = Mater Sci Forum Trends and New Applications of Thin Films = Mater. Sci. Forum. Trends and Techniques in the Contemporary Dental Laboratory = Trends Tech. Contemp. Dent. Lab. Trends in Advanced Materials and Processes = Mater Sci Forum Trends in Advanced Materials and Processes = Mater. Sci. Forum. Trends in African Linguistics = Tr Afr Ling Trends in African Linguistics = Tr. Afr. Ling. Trends in amplification = Trends Amplif Trends in analytical chemistry : TRAC = Trends Analyt Chem Trends in Analytical Chemistry = Trends Anal. Chem. Trends in Applications of Mathematics to Mechanics = Ch/c Mon Sur Pur App Trends in Applications of Mathematics to Mechanics = Ch/c. Mon. Sur. Pur. App. Trends in Applications of Mathematics to Mechanics = Ch Crc Monogr Surv P Trends in Applications of Mathematics to Mechanics = Ch. Crc. Monogr. Surv. P. Trends in Applied Intelligent Systems, Pt Iii, Proceedings = Lect Notes Artif Int Trends in Applied Intelligent Systems, Pt Iii, Proceedings = Lect. Notes. Artif. Int. Trends in Applied Intelligent Systems, Pt Ii, Proceedings = Lect Notes Artif Int Trends in Applied Intelligent Systems, Pt Ii, Proceedings = Lect. Notes. Artif. Int. Trends in Applied Intelligent Systems, Pt I, Proceedings = Lect Notes Artif Int Trends in Applied Intelligent Systems, Pt I, Proceedings = Lect. Notes. Artif. Int. Trends in Applied Linguistics = Trends Appl Linguist Trends in Applied Linguistics = Trends Appl. Linguist. Trends in Applied Theoretical Chemistry = T Molec Org Trends in Applied Theoretical Chemistry = T. Molec. Org. Trends in Artificial Intelligence = Lect Notes Artif Int Trends in Artificial Intelligence = Lect. Notes. Artif. Int. Trends in Banach Spaces & Operator Theory = Contemp Math Trends in Banach Spaces & Operator Theory = Contemp. Math. Trends in Bile Acid Research = Falk Symp Trends in Bile Acid Research = Falk. Symp. Trends In Biochemical Sciences (Cambridge=Trends Biochem Sci;; Trends in biochemical sciences = Trends Biochem Sci Trends in Biochemical Sciences = Trends Biochem Sci Trends in Biochemical Sciences = Trends Biochem. Sci Trends in Biochemical Sciences = Trends Biochem. Sci. Trends in biotechnology = Trends Biotechnol Trends in Biotechnology = Trends Biotechnol Trends in Biotechnology = Trends Biotechnol. Trends in Business and Economic Ethics = Stud Econ Ethics Phi Trends in Business and Economic Ethics = Stud. Econ. Ethics Phi. Trends in Cancer Mortality in Industrial Countries = Ann Ny Acad Sci Trends in Cancer Mortality in Industrial Countries = Ann. Ny. Acad. Sci. Trends in cardiovascular medicine = Trends Cardiovasc Med Trends in Cardiovascular Medicine = Trends Cardiovasc. Med. Trends in Cardiovascular Medicine = Trends Cardiovas Med Trends in Cardiovascular Medicine = Trends Cardiovas. Med. Trends in cell biology = Trends Cell Biol Trends in Cell Biology = Trends Cell Biol Trends in Cell Biology = Trends Cell Biol. Trends in Classics Supplementary Volumes = Trends Class Suppl V Trends in Classics Supplementary Volumes = Trends Class. Suppl. V. Trends in Classics = TC Trends in cognitive sciences = Trends Cogn Sci Trends in Cognitive Sciences = Trends Cogn Sci Trends in Cognitive Sciences = Trends Cogn. Sci. Trends in Colloid and Interface Science Iii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Iii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Iv = Prog Coll Pol Sci S Trends in Colloid and Interface Science Iv = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Ix = Prog Coll Pol Sci S Trends in Colloid and Interface Science Ix = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Viii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Viii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Vii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Vii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Vi = Prog Coll Pol Sci S Trends in Colloid and Interface Science Vi = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science V = Prog Coll Pol Sci S Trends in Colloid and Interface Science V = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xiii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xiii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xi = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xi = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xiv = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xiv = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science X = Prog Coll Pol Sci S Trends in Colloid and Interface Science X = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xvii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xvii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xvi = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xvi = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xv = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xv = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xxiii = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xxiii = Prog. Coll. Pol. Sci. S. Trends in Colloid and Interface Science Xxiv = Prog Coll Pol Sci S Trends in Colloid and Interface Science Xxiv = Prog. Coll. Pol. Sci. S. Trends in Comparative Endocrinology and Neurobiology = Ann Ny Acad Sci Trends in Comparative Endocrinology and Neurobiology = Ann. Ny. Acad. Sci. Trends in Composite Materials and Their Design = Key Eng Mater Trends in Composite Materials and Their Design = Key. Eng. Mater. Trends in Computer Aided Innovation = Int Fed Info Proc Trends in Computer Aided Innovation = Int. Fed. Info. Proc. Trends in Dermatoglyphic Research = Stud Hum B Trends in Dermatoglyphic Research = Stud. Hum. B. Trends in Distributed Systems for Electronic Commerce = Lect Notes Comput Sc Trends in Distributed Systems for Electronic Commerce = Lect. Notes. Comput. Sc. Trends in Distributed Systems: Towards A Universal Service Market = Lect Notes Comput Sc Trends in Distributed Systems: Towards A Universal Service Market = Lect. Notes. Comput. Sc. Trends in Drug Research Ii = Pharm Libr Trends in Drug Research Ii = Pharm. Libr. Trends in Drug Research = Pharm Libr Trends in Drug Research = Pharm. Libr. Trends in Ecology and Evolution = Trends Ecol. Evol. Trends in ecology & evolution (Personal edition) = Trends Ecol Evol Trends in Ecology & Evolution = Trends Ecol Evol Trends in Ecology & Evolution = Trends Ecol. Evol. Trends in Eicosanoid Biology = Adv Prostag Thromb L Trends in Eicosanoid Biology = Adv. Prostag. Thromb. L. Trends in endocrinology and metabolism: TEM = Trends Endocrinol Metab Trends in Endocrinology and Metabolism = Trends Endocrin Met Trends in Endocrinology and Metabolism = Trends Endocrin. Met. Trends in Endocrinology and Metabolism = Trends Endocrinol. Metab. Trends in Energy and Power Plant Technology = Vdi Bericht Trends in Energy and Power Plant Technology = Vdi. Bericht. Trends in Enterprise Application Architecture = Lect Notes Comput Sc Trends in Enterprise Application Architecture = Lect. Notes. Comput. Sc. Trends in Enterprise Architecture Research = Lect Notes Bus Inf Trends in Enterprise Architecture Research = Lect. Notes. Bus. Inf. Trends in Enterprise Architecture Research = Lect Notes Bus Inf P Trends in Enterprise Architecture Research = Lect. Notes. Bus. Inf. P. Trends in Fisheries Science and Management = Tr Fish Sci Trends in Fisheries Science and Management = Tr. Fish. Sci. Trends in Flavour Research = Dev Food Sci Trends in Flavour Research = Dev. Food. Sci. Trends in Food Science and Technology = Trends Food Sci. Technol. Trends in Food Science & Technology = Trends Food Sci Tech Trends in Food Science & Technology = Trends Food Sci. Tech. Trends in Food Science & Technology = Trends Food Sci. Technol. Trends in Functional Programming-series = Tr Funct Program Trends in Functional Programming-series = Tr. Funct. Program. Trends in Functional Programming, Vol 7 = Tr Funct Program Trends in Functional Programming, Vol 7 = Tr. Funct. Program. Trends in genetics : TIG = Trends Genet Trends in Genetics = Trends Genet Trends in Genetics = Trends Genet. Trends In Genetics=Trends Genet;; Trends in Glycoscience and Glycotechnology = Trends Glycosci Glyc Trends in Glycoscience and Glycotechnology = Trends Glycosci. Glyc. Trends in Health Care, Law and Ethics = Trends Health Care Law Ethics Trends in health care, law & ethics = Trends Health Care Law Ethics Trends in High Pressure Bioscience and Biotechnology, Proceedings = Progr Biotechnol Trends in High Pressure Bioscience and Biotechnology, Proceedings = Progr. Biotechnol. Trends in history = Trends Hist Trends in immunology = Trends Immunol Trends in Immunology = Trends Immunol Trends in Immunology = Trends Immunol. Trends in Industrial and Applied Mathematics, Proceedings = Appl Optim Trends in Industrial and Applied Mathematics, Proceedings = Appl. Optim. Trends in Industrial and Applied Mathematics, Proceedings = Appl Optimizat Trends in Industrial and Applied Mathematics, Proceedings = Appl. Optimizat. Trends in Inflammatory Bowel Disease Therapy = Falk Symp Trends in Inflammatory Bowel Disease Therapy = Falk. Symp. Trends in Inflammatory Bowl Disease Therapy = Falk Symp Trends in Inflammatory Bowl Disease Therapy = Falk. Symp. Trends in Intelligent Robotics = Comm Com Inf Sc Trends in Intelligent Robotics = Comm. Com. Inf. Sc. Trends in Interactive Visualization: State-of-the-art Survey = Adv Inform Knowl Pro Trends in Interactive Visualization: State-of-the-art Survey = Adv. Inform. Knowl. Pro. Trends in Language Acquisition Research = Trends Lang Acquis R Trends in Language Acquisition Research = Trends Lang. Acquis. R. Trends in Linguistics-studies and Monographs = Trend Lin S Trends in Linguistics-studies and Monographs = Trend. Lin. S. Trends in Linguistics : Studies and Monographs = Trend Lin S Trends in Linguistics : Studies and Monographs = Trend. Lin. S. Trends in Linguistics-studies and Monographs = Trends Linguist-stud Trends in Linguistics-studies and Monographs = Trends Linguist-stud. Trends in Logic Studia Logica Library = Trends Log Stud Log Trends in Logic Studia Logica Library = Trends Log. Stud. Log. Trends in Logic---Studia Logica Library = Trends Log. Stud. Log. Libr. Trends in Logic - Studia Logica Library = Tr Log Stud Log Lib Trends in Logic - Studia Logica Library = Tr. Log. Stud. Log. Lib. Trends in Logic Studia Logica Library = Tr Log Stud Log Lib Trends in Logic Studia Logica Library = Tr. Log. Stud. Log. Lib. Trends in Magnetism = Solid State Phenomen Trends in Magnetism = Solid. State. Phenomen. Trends in Magnetism = Sol St Phen Trends in Magnetism = Sol. St. Phen. Trends in Mathematics = Trends Math. Trends in Mathematics = Trends Math Trends in Mathematics = Trends Math. Trends in Medieval Philology = Trend Mediev Philol Trends in Medieval Philology = Trend. Mediev. Philol. Trends in Medieval Philology = Trends Mediev Philol Trends in Medieval Philology = Trends Mediev. Philol. Trends in microbiology = Trends Microbiol Trends in Microbiology = Trends Microbiol Trends in Microbiology = Trends Microbiol. Trends In Microbiology=Trends Microbiol;; Trends in Mobile Technology and Business in The Asia-pacific Region = Chandos Asian Stud Trends in Mobile Technology and Business in The Asia-pacific Region = Chandos. Asian. Stud. Trends in Modern Meat Technology 3 = Trends Mod Meat Tech Trends in Modern Meat Technology 3 = Trends Mod. Meat Tech. Trends in Modern Meat Technology = Trends Mod Meat Tech Trends in Modern Meat Technology = Trends Mod. Meat Tech. Trends in molecular medicine = Trends Mol Med Trends in Molecular Medicine = Trends Mol Med Trends in Molecular Medicine = Trends Mol. Med. Trends in Multiple Criteria Decision Analysis = Int Ser Oper Res Man Trends in Multiple Criteria Decision Analysis = Int. Ser. Oper. Res. Man. Trends in Nanophysics: Theory, Experiment and Technology = Eng Mater Trends in Nanophysics: Theory, Experiment and Technology = Eng. Mater. Trends in Network and Pervasive Computing - Arcs 2002 = Lect Notes Comput Sc Trends in Network and Pervasive Computing - Arcs 2002 = Lect. Notes. Comput. Sc. Trends in Neural Computation = Stud Comp Intell Trends in Neural Computation = Stud. Comp. Intell. Trends in Neural Computation = Stud Comput Intell Trends in Neural Computation = Stud. Comput. Intell. Trends in Neuroendocrinology = Ann Ny Acad Sci Trends in Neuroendocrinology = Ann. Ny. Acad. Sci. Trends in neurosciences = Trends Neurosci Trends in Neurosciences = Trends Neurosci Trends in Neurosciences = Trends Neurosci. Trends In Neurosciences=Trends Neurosci;; Trends in Nuclear Physics = P Int Sch Phys Trends in Nuclear Physics = P. Int. Sch. Phys. Trends in Optical Fibre Metrology and Standards = Nato Adv Sci Inst Se Trends in Optical Fibre Metrology and Standards = Nato. Adv. Sci. Inst. Se. Trends in Optimization = Proc Sym Ap Trends in Optimization = Proc. Sym. Ap. Trends in Ornithology Research = Birds-evol Behav Eco Trends in Ornithology Research = Birds-evol. Behav. Eco. Trends in parasitology = Trends Parasitol Trends in Parasitology = Trends Parasitol Trends in Parasitology = Trends Parasitol. Trends in Parsing Technology: Dependency Parsing, Domain Adaptation, and Deep Parsing = Text Speech Lang Tec Trends in Parsing Technology: Dependency Parsing, Domain Adaptation, and Deep Parsing = Text. Speech. Lang. Tec. Trends in Partial Differential Equations of Mathematical Physics = Prog Nonlin Trends in Partial Differential Equations of Mathematical Physics = Prog. Nonlin. Trends in Partial Differential Equations of Mathematical Physics = Prog Nonlinear Diffe Trends in Partial Differential Equations of Mathematical Physics = Prog. Nonlinear. Diffe. Trends in pharmacological sciences = Trends Pharmacol Sci Trends in Pharmacological Sciences = Trends Pharmacol Sci Trends in Pharmacological Sciences = Trends Pharmacol. Sci. Trends In Pharmacological Sciences=Trends Pharmacol Sci;; Trends in Physical Anthropology = Focus Civiliz Cult Trends in Physical Anthropology = Focus. Civiliz. Cult. Trends in plant science = Trends Plant Sci Trends in Plant Science = Trends Plant Sci Trends in Plant Science = Trends Plant Sci. Trends in Polymer Science = Trends Polym Sci Trends in Polymer Science = Trends Polym. Sci. Trends in Practical Applications of Agents and Multiagents Systems = Adv Intel Soft Compu Trends in Practical Applications of Agents and Multiagents Systems = Adv. Intel. Soft. Compu. Trends in Practical Applications of Agents and Multiagent Systems = Adv Intell Soft Comp Trends in Practical Applications of Agents and Multiagent Systems = Adv. Intell. Soft. Comp. Trends in Practical Applications of Agents and Multiagent Systems = Adv Intel Soft Compu Trends in Practical Applications of Agents and Multiagent Systems = Adv. Intel. Soft. Compu. Trends in Practical Colloid Science = Inter Colloid Res Pr Trends in Practical Colloid Science = Inter. Colloid Res. Pr. Trends in Receptor Research = Pharm Libr Trends in Receptor Research = Pharm. Libr. Trends in Representation Theory of Algebras and Related Topics = Contemp Math Trends in Representation Theory of Algebras and Related Topics = Contemp. Math. Trends in Singularities = Trends Math Trends in Singularities = Trends Math. Trends in Structural Mechanics = Solid Mech Appl Trends in Structural Mechanics = Solid. Mech. Appl. Trends in Supply Chain Design and Management = Springer Ser Adv Man Trends in Supply Chain Design and Management = Springer. Ser. Adv. Man. Trends in Theoretical Physics - Cern-santiago De Compostela-la Plata Meeting = Aip Conf Proc Trends in Theoretical Physics - Cern-santiago De Compostela-la Plata Meeting = Aip. Conf. Proc. Trends in Theoretical Physics Ii = Aip Conf Proc Trends in Theoretical Physics Ii = Aip. Conf. Proc. Trends in Theoretical Physics = Tr Theor Ph Trends in Theoretical Physics = Tr. Theor. Ph. Trends in Theoretical Physics, Vol 2 = Tr Theor Ph Trends in Theoretical Physics, Vol 2 = Tr. Theor. Ph. Trends & techniques in the contemporary dental laboratory = Trends Tech Contemp Dent Lab Trenie i Iznos = Trenie Iznos Trésors monétaires = TMon Trésors monétaires = TreMonet Trial and Court Procedures Worldwide = Int Bar Ass Trial and Court Procedures Worldwide = Int. Bar. Ass. Trial (Boston, Mass.) = Trial Trial lawyers quarterly = Trial Lawyers Q Trials = Trials Trial = Trial Triangle Papers = Triangle Pap Triangle Papers = Triangle Pap. Triangle; the Sandoz journal of medical science = Triangle Triangle = Triangle Triangulated Categories = Ann Math Stud Triangulated Categories = Ann. Math. Stud. Triangulations: Structures for Algorithms and Applications = Algorithm Comp Math Triangulations: Structures for Algorithms and Applications = Algorithm. Comp. Math. Triangulo = Triangulo Rev Sandoz Cienc Med Trias of Maimonides = Stud Juda Trias of Maimonides = Stud. Juda. Trias of Maimonides = Stud Judaica Trias of Maimonides = Stud. Judaica. Triassic Evolution of The Yangtze Platform in Guizhou Province, People's Republic of China = Geol Soc Am Spec Pap Triassic Evolution of The Yangtze Platform in Guizhou Province, People's Republic of China = Geol. Soc. Am. Spec. Pap. Triassic Timescale = Geol Soc Spec Publ Triassic Timescale = Geol. Soc. Spec. Publ. Tribal Play: Subcultural Journeys Through Sport = Res Sociol Sport Tribal Play: Subcultural Journeys Through Sport = Res. Sociol. Sport Tribal Politics in Iran: Rural Conflict and The New State, 1921-1941 = Roy Asiat Soc Books Tribal Politics in Iran: Rural Conflict and The New State, 1921-1941 = Roy. Asiat. Soc. Books. Tribolites and Their Relatives = Sp Palaeont Tribolites and Their Relatives = Sp. Palaeont. Tribological Modeling for Mechanical Designers = Am Soc Test Mater Tribological Modeling for Mechanical Designers = Am. Soc. Test. Mater. Tribologie und Schmierungstechnik = Tribol. Schmierungstech. Tribology and Interface Engineering Series = Tribol. Interface Eng. Ser. Tribology and The Liquid-crystalline State = Acs Sym Ser Tribology and The Liquid-crystalline State = Acs. Sym. Ser. Tribology for Energy Conservation = Tribology S Tribology for Energy Conservation = Tribology S. Tribology International = Tribol Int Tribology International = Tribol. Int. Tribology Letters = Tribol Lett Tribology Letters = Tribol. Lett. Tribology & Lubrication Technology = Tribol Lubr Technol Tribology & Lubrication Technology = Tribol. Lubr. Technol. Tribology - Materials, Surfaces and & Interfaces = Tribol. Mater. Surf. Interfaces Tribology of Composite Materials = Mater Manuf Technol Tribology of Composite Materials = Mater. Manuf. Technol. Tribology of Natural Fiber Polymer Composites = Woodhead Publ Mater Tribology of Natural Fiber Polymer Composites = Woodhead. Publ. Mater. Tribology Research Advances = Mater Manuf Technol Tribology Research Advances = Mater. Manuf. Technol. Tribology Series = Tribology S Tribology Series = Tribology S. Tribology Transactions = Tribol T Tribology Transactions = Tribol. T. Tribology Transactions = Tribol. Trans. Tribology: Wear Test Selection for Design and Application = Am Soc Test Mater Tribology: Wear Test Selection for Design and Application = Am. Soc. Test Mater. Tribuna d’arqueologia = TribArq Tribuna Odontologica do Sindicato dos Odontologistas do Estado da Guanabara = Trib. Odontol. (Guanabara) Tribuna Odontologica Do Sindicato Dos Odontologistas Do Estado Da Guanabara = Trib Odontol (Guanabara) Tribuna Odontologica = Trib. Odontol. (B. Aires) Tribune (International Women's Tribune Centre : English ed.) = Trib Int Womens Trib Cent Tribus Et Marabouts: Arab Et Walaya Dans L Interieur De L Ifriqiyi Entre Le Vie/xiie Et Le Xiie/xviiie Siecles = Suom Tiedeakat Toim Tribus Et Marabouts: Arab Et Walaya Dans L Interieur De L Ifriqiyi Entre Le Vie/xiie Et Le Xiie/xviiie Siecles = Suom. Tiedeakat. Toim. Trichogramma and Other Egg Parasitoids = Colloq Inra Trichogramma and Other Egg Parasitoids = Colloq. Inra. Tridimensional Optical Spectroscopic Methods in Astrophysics = Astr Soc P Tridimensional Optical Spectroscopic Methods in Astrophysics = Astr. Soc. P. Trierer Winckelmannsprogramme = TrWPr Trierer Zeitschrift für Geschichte und Kunst des Trierer Landes und seiner Nachbargebiete = TrZ Trierer Zeitschrift, für Geschichte und Kunst des Trierer Landes und seiner Nachbargebiete = TZ Trigger Factors in Transfusion Medicine = Dev Hematol Trigger Factors in Transfusion Medicine = Dev. Hematol. Triggering Relativistic Jets = Rev Mex Ast Astr Triggering Relativistic Jets = Rev. Mex. Ast. Astr. Triglycerides : The Role in Diabetes and Atherosclerosis = Ather Rev Triglycerides : The Role in Diabetes and Atherosclerosis = Ather. Rev. Trigonometric Sums in Number Theory and Analysis = Degruyter Expos Math Trigonometric Sums in Number Theory and Analysis = Degruyter. Expos. Math. Trilobites and Their Relatives = Spec Pap Palaeontol Trilobites and Their Relatives = Spec. Pap. Palaeontol. Trimestre Economico = Trimest Econ Trimestre Economico = Trimest. Econ. Trinidad and Tobago: Ethnic Conflict, Inequality and Public Sector Governance = Ethn Inequal Public Trinidad and Tobago: Ethnic Conflict, Inequality and Public Sector Governance = Ethn. Inequal. Public Trinity Journal, publ. by Trinity Evangelical Divinity School = TJ Triple C Model of Project Management: Communication, Cooperation, and Coordination = Ind Innov Ser Triple C Model of Project Management: Communication, Cooperation, and Coordination = Ind. Innov. Ser. Triple M of Organizations: Man, Management and Myth = Interd Stud Econ Man Triple M of Organizations: Man, Management and Myth = Interd. Stud. Econ. Man. Triple Repeat Diseases of The Nervous Systems = Adv Exp Med Biol Triple Repeat Diseases of The Nervous Systems = Adv. Exp. Med. Biol. Triquarterly = Triquarterly Tri-service Conference On Electromagnetic Compatibility = Tri-serv Conf El Com Tri-service Conference On Electromagnetic Compatibility = Tri-serv. Conf. El. Com. Triticale: Today and Tomorrow = Dev Plant Breed Triticale: Today and Tomorrow = Dev. Plant. Breed. Triumph (Washington, D.C.) = Triumph Trivium = Trivium Trochilus = Trochilus Trochus: Status, Hatchery Practice and Nutrition = Aciar Proc Trochus: Status, Hatchery Practice and Nutrition = Aciar. Proc. Trodent = Trodent Troia and The Troad: Scientific Approaches = Nat Sci Arc Troia and The Troad: Scientific Approaches = Nat. Sci. Arc. Troia and The Troad: Scientific Approaches = Nat Sci Archaeol Troia and The Troad: Scientific Approaches = Nat. Sci. Archaeol. Tropenlandwirt = Tropenlandwirt Tropenmedizin und Parasitologie = Tropenmed Parasitol Tropenmedizin und Parasitologie = Tropenmed. Parasitol. Tropenmedizin Und Parasitologie = Tropenmed Parasitol Tropenmedizin Und Parasitologie = Tropenmed. Parasitol. Tropes for The Past: Hayden White and The History / Literature Debate = Int For Lit Tropes for The Past: Hayden White and The History / Literature Debate = Int. For. Lit. Tropes of Revolution = Dqr Stu Lit Tropes of Revolution = Dqr. Stu. Lit. Trophic and Guild Interactions in Biological Control = Prog Biol Control Trophic and Guild Interactions in Biological Control = Prog. Biol. Control Trophic Factors and The Nervous System = Fid Res Fdn Trophic Factors and The Nervous System = Fid. Res. Fdn. Trophic Regulation of The Basal Ganglia = Wenn Gr Int Trophic Regulation of The Basal Ganglia = Wenn. Gr. Int. Tropical Agriculture = Trop Agr Tropical Agriculture = Trop. Agr. Tropical Agriculture = Trop. Agric. Tropical Algebraic Geometry = Oberwolfach Semin Tropical Algebraic Geometry = Oberwolfach. Semin. Tropical and geographical medicine = Trop Geogr Med Tropical and Geographical Medicine = Trop Geogr Med Tropical and Geographical Medicine = Trop. Geogr. Med. Tropical and Idempotent Mathematics = Contemp Math Tropical and Idempotent Mathematics = Contemp. Math. Tropical Animal Health and Production = Trop Anim Health Pro Tropical Animal Health and Production = Trop. Anim. Health Pro. Tropical animal health and production = Trop Anim Health Prod Tropical Animal Health and Production=Trop Anim Health Prod;; Tropical Animal Health and Production = Trop. Anim. Health Prod. Tropical biomedicine = Trop Biomed Tropical Biomedicine = Trop Biomed Tropical Biomedicine = Trop. Biomed. Tropical Bryology = Trop. Bryol. Tropical Deep-sea Benthos, Vol 26 = Mem Mus Nat Hist Nat Tropical Deep-sea Benthos, Vol 26 = Mem. Mus. Nat. Hist. Nat. Tropical diseases bulletin = Trop Dis Bull Tropical Diseases Bulletin = Trop. Dis. Bull. Tropical Diseases-etiology Pathogenesis and Treatments = Trop Dis-etiol Patho Tropical Diseases-etiology Pathogenesis and Treatments = Trop. Dis-etiol. Patho. Tropical Diseases: From Molecule to Bedside = Adv Exp Med Biol Tropical Diseases: From Molecule to Bedside = Adv. Exp. Med. Biol. Tropical doctor = Trop Doct Tropical Doctor=Trop Doct;; Tropical Doctor = Trop Doct Tropical Doctor = Trop. Doct. Tropical Ecology = Trop Ecol Tropical Ecology = Trop. Ecol. Tropical Fish Otoliths: Information for Assessment, Management and Ecology = Rev-methods Technol Tropical Fish Otoliths: Information for Assessment, Management and Ecology = Rev-methods. Technol. Tropical Forestry = Trop Forest Tropical Forestry = Trop. Forest. Tropical Forests, International Jungle: The Underside of Global Ecopolitics = Ceri Ser Int Relat P Tropical Forests, International Jungle: The Underside of Global Ecopolitics = Ceri. Ser. Int. Relat. P. Tropical Forests, People and Food = Man Biosph Tropical Forests, People and Food = Man. Biosph. Tropical gastroenterology : official journal of the Digestive Diseases Foundation = Trop Gastroenterol Tropical Gastroenterology=Trop Gastroenterol;; Tropical Gastroenterology = Trop. Gastroenterol. Tropical Grasslands = Trop Grasslands Tropical Grasslands = Trop. Grasslands Tropical Grassy Weeds = Casafa Rep Tropical Grassy Weeds = Casafa. Rep. Tropical Health = Trop Heal Tropical Hydrology and Caribbean Water Resources = Am Wat Res Tropical Hydrology and Caribbean Water Resources = Am. Wat. Res. Tropical Hydrology and Caribbean Water Resources, Proceedings = Am Wat Res Tropical Hydrology and Caribbean Water Resources, Proceedings = Am. Wat. Res. Tropical journal of obstetrics and gynaecology = Trop J Obstet Gynaecol Tropical Journal of Pharmaceutical Research = Trop J Pharm Res Tropical Journal of Pharmaceutical Research = Trop. J. Pharm. Res. Tropical Medicine and International Health=Trop Med Int Health;; Tropical Medicine and International Health = Trop. Med. Int. Health Tropical medicine and parasitology : official organ of Deutsche Tropenmedizinische Gesellschaft and of Deutsche Gesellschaft fur Technische Zusammenarbeit (GTZ) = Trop Med Parasitol Tropical Medicine and Parasitology = Trop Med Parasitol Tropical Medicine and Parasitology = Trop. Med. Parasitol. Tropical medicine & international health : TM & IH = Trop Med Int Health Tropical Medicine & International Health = Trop Med Int Health Tropical Medicine & International Health = Trop. Med. Int. Health Tropical Montane Cloud Forests = Ecol Stu An Tropical Montane Cloud Forests = Ecol. Stu. An. Tropical Pest Management = Trop Pest Manage Tropical Pest Management = Trop. Pest Manage. Tropical Phyotogeography = Colloq Semi Tropical Phyotogeography = Colloq. Semi. Tropical Plant Pathology = Trop Plant Pathol Tropical Plant Pathology = Trop. Plant Pathol. Tropical Rainforest Research - Current Issues = Monog Biol Tropical Rainforest Research - Current Issues = Monog. Biol. Tropical Rainforests and Agroforests Under Global Change: Ecological and Socio-economic Valuations = Environ Sci Eng Tropical Rainforests and Agroforests Under Global Change: Ecological and Socio-economic Valuations = Environ. Sci. Eng. Tropical Science = Trop Sci Tropical Science = Trop. Sci. Tropical Tree Seed Research = Aciar Proc Tropical Tree Seed Research = Aciar. Proc. Tropical Trees: The Potential for Domestication and The Rebuilding of Forest Resources = Ite Symp Tropical Trees: The Potential for Domestication and The Rebuilding of Forest Resources = Ite. Symp. Tropical Veterinary Diseases = Ann Ny Acad Sci Tropical Veterinary Diseases = Ann. Ny. Acad. Sci. Tropical Veterinary Medicine = Ann Ny Acad Sci Tropical Veterinary Medicine = Ann. Ny. Acad. Sci. Tropical Veterinary Medicine : Current Issues Perspectives = Ann Ny Acad Sci Tropical Veterinary Medicine : Current Issues Perspectives = Ann. Ny. Acad. Sci. Tropical Zoology = Trop Zool Tropical Zoology = Trop. Zool. Tropic of Venice = Pers Takes Tropic of Venice = Pers. Takes. Tropomyosin = Adv Exp Med Biol Tropomyosin = Adv. Exp. Med. Biol. Troubled Experiment : Crime and Justice in Pennsylvania, 1682-1800 = Early Am Stud Ser Troubled Experiment : Crime and Justice in Pennsylvania, 1682-1800 = Early. Am. Stud. Ser. Trouble With Ownership: Literary Property and Authorial Liability in England, 1660-1730 = Mater Texts Trouble With Ownership: Literary Property and Authorial Liability in England, 1660-1730 = Mater. Texts. Troubling Tricksters: Revisioning Critical Conversations = Indigenous Stud Ser Troubling Tricksters: Revisioning Critical Conversations = Indigenous. Stud. Ser. Trudy. Akademiia nauk SSSR. Institut genetiki = Tr Akad Nauk SSSR Inst Genet Trudy, Akademiia Nauk SSSR, Institut Genetiki = Tr. Akad. Nauk SSSR. Inst. Genet. Trudy fiziologicheskikh laboratorii akademika I.P. Pavlova = Tr Fiziol Lab Akad I P Pavlova Trudy Geofizicheskogo Instituta, Akademiya Nauk SSSR = Tr. Geofiz. Inst., Akad. Nauk SSSR Trudy Glavnoi Geofizicheskoi Observatorii = Tr. Gl. Geofiz. Obs. Trudy gosudarstbennogo Èrmitaza (travaux du Musée d'État de l'Ermitage) = TÈ Trudy Gosudarstvennogo Ėrmitaža = TrudyErmit Trudy Instituta biologii = Tr Inst Biol Trudy Instituta fiziologii, Akademiia nauk Gruzinskoi SSR = Tr Inst Fiz Akad Nauk Gruz Ssr Trudy Instituta Fiziologii Akademiia Nauk Gruzinskoi SSR = Tr. Inst. Fiz. Akad. Nauk Gruz. SSR Trudy Instituta imeni Pastera = Tr Inst Im Pastera Trudy Instituta imeni Pastera = Tr. Inst. Im. Pastera Trudy Instituta morfologii zhivotnykh im. A. N. Severtsova = Tr Inst Morfol Zhivotn An Severtsova Trudy - Institut fiziologii imeni I. P. Pavlova = Tr Inst Fiziol Im I P Pavlova Trudy. Institut grudnoi khirurgii (Akademiia meditsinskikh nauk SSSR) = Tr Akad Med Nauk Sssr Mosc Inst Grudn Khir Trudy - Institut normal'noi i patologicheskoi fiziologii = Tr Inst Norm Patol Fiziol Trudy Leningradskogo instituta epidemiologii i mikrobiologii im. Pastera = Tr Leningr Inst Epidemiol Mikrobiol Trudy Leningradskogo Instituta Epidemiologii i Mikrobiologii im. Pastera = Tr. Leningr. Inst. Epidemiol. Mikrobiol. Trudy Leningradskogo nauchno-issledovatel'skogo instituta epidemiologii i mikrobiologii imeni Pastera = Tr Leningr Nauchnoissled Inst Epidemiol Mikrobiol Trudy Leningradskogo Nauchno-Issledovatelskogo Instituta Epidemiologii i Mikrobiologii im. Pastera = Tr. Leningr. Nauchnoissled. Inst. Epidemiol. Mikrobiol. Trudy Leningradskogo sanitarno-gigienicheskogo meditsinskogo instituta = Tr Leningr Sanitarnogig Med Inst Trudy Matematicheskogo Instituta Imeni V = Tr. Mat. Inst. Steklova Trudy. Mikrobiologijas instituts (Latvijas PSR Zinatnu akademija) = Tr Latv Padomju Soc Repub Zinat Akad Mikrobiol Inst Trudy. Moscow (Russia). Vsesoiuznyi nauchno-issledovatel'skii vitaminnyi institut = Trudy Mosc Russ Vsesoiuznyi Nauchno Issled Vitam Inst Trudy Moskovskogo Matematicheskogo Obshchestva = Tr. Mosk. Mat. Obs. Trudy Moskovskogo nauchno-issledovatel'skogo instituta epidemiologii i mikrobiologii = Tr Mosk Nauchnoissled Inst Epidmiol Mikrobiol Trudy Petrozavodskogo Gosudarstvennogo Universiteta = Tr. Petrozavodsk. Gos. Univ. Ser. Mat. Trudy Sankt-Peterburgskogo Matematicheskogo Obshchestva = Trudy S.-Peterburg. Mat. Obshch. Trudy Seminara po Kraevym Zadacham = Trudy Sem. Kraev. Zadacham Trudy Seminara po Vektornomu i Tenzornomu Analizu s ikh Prilozheniyami k Geometrii, Mekhanike i Fizike = Trudy Sem. Vektor. Tenzor. Anal. Trudy. Vsesoiuznoe fiziologicheskoe obshchestvo imeni I. P. Pavlova. Orenburgskoe otdelenie = Trudy Vsesoiuznoe Fiziol Obshchestvo Im I P Pavlov Orenb Otd True Relations = Contr St Wo True Relations = Contr. St. Wo. Trust and Distrust: Sociocultural Perspectives = Adv Cult Psychol Con Trust and Distrust: Sociocultural Perspectives = Adv. Cult. Psychol. Con. Trust and Fairness in Open, Distributed Systems = Stud Comput Intell Trust and Fairness in Open, Distributed Systems = Stud. Comput. Intell. Trust and Privacy in Digital Business, Proceedings = Lect Notes Comput Sc Trust and Privacy in Digital Business, Proceedings = Lect. Notes. Comput. Sc. Trust and Reciprocity = Russell Sage Trust Trust and Reciprocity = Russell. Sage. Trust Trust and Trustworthy Computing, Proceedings = Lect Notes Comput Sc Trust and Trustworthy Computing, Proceedings = Lect. Notes. Comput. Sc. Trusted Computing - Challenges and Applications, Proceedings = Lect Notes Comput Sc Trusted Computing - Challenges and Applications, Proceedings = Lect. Notes. Comput. Sc. Trusted Computing, Proceedings = Lect Notes Comput Sc Trusted Computing, Proceedings = Lect. Notes. Comput. Sc. Trusted Information: The New Decade Challenge = Int Fed Info Proc Trusted Information: The New Decade Challenge = Int. Fed. Info. Proc. Trusted Systems = Lect Notes Comput Sc Trusted Systems = Lect. Notes. Comput. Sc. Trustee : the journal for hospital governing boards = Trustee Trustee = Trustee Trust, Globalisation and Market Expansion = Econ Iss Probl Persp Trust, Globalisation and Market Expansion = Econ. Iss. Probl. Persp. Trust Im Chinesischen Recht: Eine Darstellung Des Chinesischen Trustgesetzes Von 2001 Vor Dem Hintergrund Des Englischen Trustrechts Und Des Rechts Der Fiduziarischen Treuhand in Deutschland = Schrift Chin Recht Trust Im Chinesischen Recht: Eine Darstellung Des Chinesischen Trustgesetzes Von 2001 Vor Dem Hintergrund Des Englischen Trustrechts Und Des Rechts Der Fiduziarischen Treuhand in Deutschland = Schrift. Chin. Recht. Trust in Agent Societies = Lect Notes Artif Int Trust in Agent Societies = Lect. Notes. Artif. Int. Trusting Agents for Trusting Electronic Societies: Theory and Applications in Hci and E-commerce = Lect Notes Artif Int Trusting Agents for Trusting Electronic Societies: Theory and Applications in Hci and E-commerce = Lect. Notes. Artif. Int. Trust Management Iii = Int Fed Info Proc Trust Management Iii = Int. Fed. Info. Proc. Trust Management Ii = Int Fed Info Proc Trust Management Ii = Int. Fed. Info. Proc. Trust Management = Int Fed Info Proc Trust Management = Int. Fed. Info. Proc. Trust Management in Virtual Work Environments: A Human Factors Perspective = Ergon Des Manag Theo Trust Management in Virtual Work Environments: A Human Factors Perspective = Ergon. Des. Manag. Theo. Trust Management, Proceeding = Lect Notes Comput Sc Trust Management, Proceeding = Lect. Notes. Comput. Sc. Trust Management, Proceedings = Lect Notes Comput Sc Trust Management, Proceedings = Lect. Notes. Comput. Sc. Trust, Privacy and Security in Digital Business = Lect Notes Comput Sc Trust, Privacy and Security in Digital Business = Lect. Notes. Comput. Sc. Trust, Privacy, and Security in Digital Business = Lect Notes Comput Sc Trust, Privacy, and Security in Digital Business = Lect. Notes. Comput. Sc. Trust, Privacy and Security in Digital Business, Proceedings = Lect Notes Comput Sc Trust, Privacy and Security in Digital Business, Proceedings = Lect. Notes. Comput. Sc. Trust, Privacy, and Security in Digital Business, Proceedings = Lect Notes Comput Sc Trust, Privacy, and Security in Digital Business, Proceedings = Lect. Notes. Comput. Sc. Trust, Reputation, and Security: Theories and Practice = Lect Notes Artif Int Trust, Reputation, and Security: Theories and Practice = Lect. Notes. Artif. Int. Trusts and estates = Trusts Estates Trustworthly Global Computing = Lect Notes Comput Sc Trustworthly Global Computing = Lect. Notes. Comput. Sc. Trustworthy Global Computing = Lect Notes Comput Sc Trustworthy Global Computing = Lect. Notes. Comput. Sc. Trustworthy Software Development Processes, Proceedings = Lect Notes Comput Sc Trustworthy Software Development Processes, Proceedings = Lect. Notes. Comput. Sc. Truth and History - A Dialogue With Paul Tillich = Theol Bilb Truth and History - A Dialogue With Paul Tillich = Theol. Bilb. Truth and Its Deformities = Midwest Stud Philos Truth and Its Deformities = Midwest. Stud. Philos. Truth and Objectivity in Social Ethics = Soc Philos Today Truth and Objectivity in Social Ethics = Soc. Philos. Today. Truth and Reconciliation in South Africa: Did The Trc Deliver? = Pa Stud Hum Rights Truth and Reconciliation in South Africa: Did The Trc Deliver? = Pa. Stud. Hum. Rights. Truth, Beauty, and Goodness in Biblical Narratives: A Hermeneutical Study of Genesis 21:1-21 = Beih Z Alttest Wiss Truth, Beauty, and Goodness in Biblical Narratives: A Hermeneutical Study of Genesis 21:1-21 = Beih. Z. Alttest. Wiss. Truthful and The Good = Contr Phenomenol Truthful and The Good = Contr. Phenomenol. Truth in Perspective = Aveb S Phil Truth in Perspective = Aveb. S. Phil. Truth: Interdisciplinary Dialogues in A Pluralist Age = Stud Philoso Theol Truth: Interdisciplinary Dialogues in A Pluralist Age = Stud. Philoso. Theol. Truth Maintenance Systems = Lect Notes Artif Int Truth Maintenance Systems = Lect. Notes. Artif. Int. Truth, Rationality, Cognition, and Music = Phil Stud S Truth, Rationality, Cognition, and Music = Phil. Stud. S. Truth Recovery and Justice After Conflict: Managing Violent Pasts = Routl Stud Peace Con Truth Recovery and Justice After Conflict: Managing Violent Pasts = Routl. Stud. Peace. Con. Tryptophan, Serotonin and Melatonin = Adv Exp Med Biol Tryptophan, Serotonin and Melatonin = Adv. Exp. Med. Biol. [Tsa chih] [Journal of the] Alumni of the University of Takau. Gaoxiong yi xue yuan. Tong xue hui = Tsa Chih Gaoxiong Yi Xue Yuan Tong Xue Hui Tschermaks Mineralogische Und Petrographische Mitteilungen = Tscher Miner Petrog Tschermaks Mineralogische Und Petrographische Mitteilungen = Tscher. Miner. Petrog. Tsinghua Science and Technology = Tsinghua Sci. Technol. Tsinghua University Texts = Tsinghua U Texts Tsinghua University Texts = Tsinghua U. Texts Tsi Press Series = Tsi Press S Tsi Press Series = Tsi Press S. Tsi-technique Et Science Informatiques = Tsi-tech Sci Inf Tsi-technique Et Science Informatiques = Tsi-tech. Sci. Inf. Tsitologiia i Genetika = Tsitol. Genet. Tsitologiia I Genetika=Tsitol Genet;; TSitologiia i genetika = Tsitol Genet Tsitologiia=Tsitologiia;; Tsitologiia = Tsitologiia Tsitologiya I Genetika = Tsitol Genet+ Tsitologiya I Genetika = Tsitol. Genet+.+ Tsitologiya = Tsitologiya Tsitologiya = Tsitologiya+ Tsitologiya = Tsitologiya+.+ Tsukuba Daigaku jinbun chirigaku kenkyu = Tsukuba Daigaku Jinbun Chirigaku Kenkyu Tsukuba Journal of Mathematics = Tsukuba J. Math. Tsunamis: Case Studies and Recent Developments = Adv Nat Technol Haz Tsunamis: Case Studies and Recent Developments = Adv. Nat. Technol. Haz. Tsunamis: Causes, Characteristics, Warnings and Protection = Nat Disaster Res Pr Tsunamis: Causes, Characteristics, Warnings and Protection = Nat. Disaster. Res. Pr. Tsunamis, Hurricanes and Neotectonics: As Driving Mechanisms in Coastal Evolution = Z Geomorphol Supp Tsunamis, Hurricanes and Neotectonics: As Driving Mechanisms in Coastal Evolution = Z. Geomorphol. Supp. Tsunamis in The World = Adv Nat Technol Haz Tsunamis in The World = Adv. Nat. Technol. Haz. Tsunami: The Underrated Hazard (second Edition) = Springer-prax Books Tsunami: The Underrated Hazard (second Edition) = Springer-prax. Books. Tsurumi shigaku. Tsurumi University dental journal = Tsurumi Shigaku Tsurumi Shigaku (Tsurumi University Dental Journal) = Tsurumi Shigaku Tsvetnaya Metally = Tsvetn. Met. (Moscow) Tsvetnye Metally (Moscow) = Tsvetn. Met. (Moscow) Tt Viruses - The Still Elusive Human Pathogens = Curr Top Microbiol Tt Viruses - The Still Elusive Human Pathogens = Curr. Top. Microbiol. Tuba-ar-turkish Academy of Sciences Journal of Archaeology = Tuba-ar-turk Acad Sc Tuba-ar-turkish Academy of Sciences Journal of Archaeology = Tuba-ar-turk. Acad. Sc. Tubercle and lung disease : the official journal of the International Union against Tuberculosis and Lung Disease = Tuber Lung Dis Tubercle and Lung Disease = Tubercle Lung Dis Tubercle and Lung Disease = Tubercle Lung Dis. Tubercle and Lung Disease=Tuber Lung Dis;; Tubercle and Lung Disease = Tuber. Lung Dis. Tubercle = Tubercle Tuberculology and thoracic diseases = Tuberculol Thorac Dis Tuberculology and Thoracic Diseases = Tuberculol. Thorac. Dis. Tuberculosis And Airborne Disease Weekly = Tuberc Airborne Dis Wkly Tuberculosis = Curr Top Microbiol Tuberculosis = Curr. Top. Microbiol. Tuberculosis (Edinburgh, Scotland) = Tuberculosis (Edinb) Tuberculosis = Tuberculosis Tuberkulose und Ihre Grenzgebiete in Einzeldarstellungen = Tuberk. Grenzgeb. Einzeldarst. Tuberkuloza = Tuberkuloza Tuberkulozis es tudobetegsegek = Tuberk Tudobetegsegek Tuberkulozis kerdesei = Tuberk Kerdesei Tuberkulozis = Tuberkulozis Tuberkuloz ve toraks = Tuberk Toraks Tuberous Sclerosis and Allied Disorders = Ann Ny Acad Sci Tuberous Sclerosis and Allied Disorders = Ann. Ny. Acad. Sci. Tuberous Sclerosis and Neurofibromatosis : Epidemiology, Pathophysiology, Biology and Management = Int Congr Ser Tuberous Sclerosis and Neurofibromatosis : Epidemiology, Pathophysiology, Biology and Management = Int. Congr. Ser. Tübinger Atlas des Vorderen Orients = TAVO Tübinger Geographische Studien = Tüb. Geogr. Stud. Tubulin-binding Agents: Synthetic, Structural and Mechanistic Insights = Top Curr Chem Tubulin-binding Agents: Synthetic, Structural and Mechanistic Insights = Top. Curr. Chem. Tubulo-interstitial Nephropathies = Dev Nephrol Tubulo-interstitial Nephropathies = Dev. Nephrol. Tudor Queenship: The Reigns of Mary and Elizabeth = Queenship Power Tudor Queenship: The Reigns of Mary and Elizabeth = Queenship. Power. Tuexenia = Tuexenia Tufas and Speleothems: Unravelling The Microbial and Physical Controls = Geol Soc Spec Publ Tufas and Speleothems: Unravelling The Microbial and Physical Controls = Geol. Soc. Spec. Publ. Tuffs - Their Properties, Uses, Hydrology, and Resources = Geol Soc Am Spec Pap Tuffs - Their Properties, Uses, Hydrology, and Resources = Geol. Soc. Am. Spec. Pap. Tufts dental outlook = Tufts Dent Outlook Tufts Dental Outlook = Tufts Dent. Outlook Tufts folia medica = Tufts Folia Med Tufts health science review = Tufts Health Sci Rev Tufts Health Science Review = Tufts Health Sci. Rev. Tulane law review = Tulane Law Rev Tulane Studies in English = Tulane Stud Engl Tulane Studies in English = Tulane Stud. Engl. Tulane Studies in Political Science = Tulane Stud Pol Sci Tulane Studies in Political Science = Tulane Stud. Pol. Sci. Tulsa law journal = Tulsa Law J Tulsa Studies in Womens Literature = Tulsa Stud Women Lit Tulsa Studies in Womens Literature = Tulsa Stud. Women. Lit. Tumor Biology = Tumor Biol Tumor Biology = Tumor Biol. Tumor Blood Supply and Metabolic Microenvironment = Funk Biol S Tumor Blood Supply and Metabolic Microenvironment = Funk. Biol. S. Tumordiagnostik & Therapie = Tumordiagn Ther Tumordiagnostik & Therapie = Tumordiagn. Ther. Tumordiagnostik = Tumordiagnostik Tumorigenic Melanocytic Proliferations = Consult Pathol Tumorigenic Melanocytic Proliferations = Consult. Pathol. Tumor Immunology and Cancer Therapy = Immunol Ser Tumor Immunology and Cancer Therapy = Immunol. Ser. Tumori=Tumori;; Tumori = Tumori Tumor Microenvironment = Cancer Drug Discov D Tumor Microenvironment = Cancer. Drug. Discov. D. Tumor Microenvironment = Tumor Microenviron Tumor Microenvironment = Tumor Microenviron. Tumor Models in Cancer Research, Second Edition = Cancer Drug Discov D Tumor Models in Cancer Research, Second Edition = Cancer Drug. Discov. D. Tumor Necrosis Factor = Cell Bio Res Prog Tumor Necrosis Factor = Cell. Bio. Res. Prog. Tumor Prevention and Genetics Iii = Recent Res Cancer Tumor Prevention and Genetics Iii = Recent. Res. Cancer. Tumor Prevention and Genetics = Recent Res Cancer Tumor Prevention and Genetics = Recent. Res. Cancer. Tumor Prevention and Genetics = Recent Results Canc Tumor Prevention and Genetics = Recent. Results. Canc. Tumor Prevention and Genetics = Recent Results Cance Tumor Prevention and Genetics = Recent. Results. Cance. Tumor Progression and Therapeutic Resistance = Ann Ny Acad Sci Tumor Progression and Therapeutic Resistance = Ann. Ny. Acad. Sci. Tumor research = Tumor Res Tumor Targeting = Tumor Target Tumor Targeting = Tumor Target. Tumortherapie Und Rehabilitation = Tumortherap Rehabil Tumortherapie Und Rehabilitation = Tumortherap. Rehabil. Tumour biology : the journal of the International Society for Oncodevelopmental Biology and Medicine = Tumour Biol Tumour Biology = Tumor Biol Tumour Biology = Tumor. Biol. Tumour Biology=Tumour Biol;; Tumour Biology = Tumour Biol Tumour Biology = Tumour Biol. Tumour Induced Hypercalcaemia and Its Management = Roy Soc Med Int Cong Tumour Induced Hypercalcaemia and Its Management = Roy. Soc. Med. Int. Cong. Tuna-ajalookultuuri Ajakiri = Tuna-ajalookult Ajak Tuna-ajalookultuuri Ajakiri = Tuna-ajalookult. Ajak. Tuna Baitfish in Fiji and Solomon Islands = Aciar Proc Tuna Baitfish in Fiji and Solomon Islands = Aciar. Proc. Tuna Baitfish in The Indo-pacific Region = Aciar Proc Tuna Baitfish in The Indo-pacific Region = Aciar. Proc. Tunable Diode Laser Spectroscopy, Lidar, and Dial Techniques for Environmental and Industrial Measurements = P Soc Photo-opt Ins Tunable Diode Laser Spectroscopy, Lidar, and Dial Techniques for Environmental and Industrial Measurements = P. Soc. Photo-opt. Ins. Tunable Laser Applications, Second Edition = Opt Sci Eng-crc Tunable Laser Applications, Second Edition = Opt. Sci. Eng-crc. Tuna Prospects and Strategies for The Indian Ocean = Colloq Semi Tuna Prospects and Strategies for The Indian Ocean = Colloq. Semi. Tundras: Vegetation, Wildlife and Climate Trends = Environ Res Adv Tundras: Vegetation, Wildlife and Climate Trends = Environ. Res. Adv. T'ung pao. T'oung pao = Toung Pao Tungsten and Other Advanced Metals for Ulsi Applications in 1990 = Mat Res S C Tungsten and Other Advanced Metals for Ulsi Applications in 1990 = Mat. Res. S. C. Tuning Metaheuristics: A Machine Learning Perspective = Stud Comput Intell Tuning Metaheuristics: A Machine Learning Perspective = Stud. Comput. Intell. Tuning The Optical Response of Photonic Bandgap Structures = Proc Spie Tuning The Optical Response of Photonic Bandgap Structures = Proc. Spie. Tuning The Optical Response of Photonic Bandgap Structures = P Soc Photo-opt Ins Tuning The Optical Response of Photonic Bandgap Structures = P. Soc. Photo-opt. Ins. Tuning The Optic Response of Photonic Bandgap Structures Iii = P Soc Photo-opt Ins Tuning The Optic Response of Photonic Bandgap Structures Iii = P. Soc. Photo-opt. Ins. Tunisia = Sais Afr St Tunisia = Sais. Afr. St. Tunisie Medicale=Tunis Med;; Tunisie Medicale = Tunis. Med. Tunnelling 91 = Tunnelling Tunnelling and Underground Space Technology = Tunnelling Underground Space Technol. Tunnelling and Underground Space Technology = Tunn Undergr Sp Tech Tunnelling and Underground Space Technology = Tunn. Undergr. Sp. Tech. Tunnelling : Proceedings of The International Symposium = Tunnelling Turbidites and Associated Deep-water Facies = Sepm Core W Turbidites and Associated Deep-water Facies = Sepm. Core. W. Turbine Lubrication in The 21st Century = Am Soc Test Mater Turbine Lubrication in The 21st Century = Am. Soc. Test. Mater. Turbochargers and Turbocharging = Imeche Conf Trans Turbochargers and Turbocharging = Imeche. Conf. Trans. Turbocharging and Turbochargers = Proc Inst Mech Eng S Turbocharging and Turbochargers = Proc. Inst. Mech. Eng. S. Turbomachinery - Fluid Dynamic and Thermodynamic Aspects = Vdi Bericht Turbomachinery - Fluid Dynamic and Thermodynamic Aspects = Vdi. Bericht. Turbomachinery Fluid Dynamics and Heat Transfer = Mech Eng Se Turbomachinery Fluid Dynamics and Heat Transfer = Mech. Eng. Se. Turbomachinery International = Turbomach Int Turbomachinery International = Turbomach. Int. Turbomachinery : Latest Developments in A Changing Scene = Proc Inst Mech Eng S Turbomachinery : Latest Developments in A Changing Scene = Proc. Inst. Mech. Eng. S. Turbulence and Coherent Structures = Fluid Mec A Turbulence and Coherent Structures = Fluid. Mec. A. Turbulence and Interactions = Note N Fl Mech Mul D Turbulence and Interactions = Note. N. Fl. Mech. Mul. D. Turbulence and Interactions = Notes Numer Fluid Me Turbulence and Interactions = Notes. Numer. Fluid. Me. Turbulence and Magnetic Fields in Astrophysics = Lect Notes Phys Turbulence and Magnetic Fields in Astrophysics = Lect. Notes. Phys. Turbulence and Nonlinear Processes in Astrophysical Plasmas = Aip Conf Proc Turbulence and Nonlinear Processes in Astrophysical Plasmas = Aip. Conf. Proc. Turbulence, Dynamos, Accretion Disks, Pulsars and Collective Plasma Processes = Astrophysics Space Turbulence, Dynamos, Accretion Disks, Pulsars and Collective Plasma Processes = Astrophysics. Space. Turbulence in Fluids, Fourth Edition = Fluid Mech Appl Turbulence in Fluids, Fourth Edition = Fluid. Mech. Appl. Turbulence in Space Plasmas = Lect Notes Phys Turbulence in Space Plasmas = Lect. Notes. Phys. Turbulence Modeling and Vortex Dynamics = Lect Notes Phys Turbulence Modeling and Vortex Dynamics = Lect. Notes. Phys. Turbulence = Nato Adv Sci Inst Se Turbulence = Nato. Adv. Sci. Inst. Se. Turbulence Nature and The Inverse Problem = Fluid Mech Appl Turbulence Nature and The Inverse Problem = Fluid. Mech. Appl. Turbulence, Waves and Instabilities in The Solar Plasma = Nato Sci Ser Ii-math Turbulence, Waves and Instabilities in The Solar Plasma = Nato. Sci. Ser. Ii-math. Turbulence, Waves and Instabilities in The Solar Plasma = Nato Sci Ser Ii Math Turbulence, Waves and Instabilities in The Solar Plasma = Nato. Sci. Ser. Ii. Math. Turbulent Transport in Fusion Plasma = Aip Conf Proc Turbulent Transport in Fusion Plasma = Aip. Conf. Proc. Turcologica = Turcologica Turgenev and Russian Culture: Essays to Honour Richard Peace = Stud Slav Lit Poet Turgenev and Russian Culture: Essays to Honour Richard Peace = Stud. Slav. Lit. Poet. Turgenev: Art, Ideology and Legacy = Stud Slav L Turgenev: Art, Ideology and Legacy = Stud. Slav. L. Turgenev: Art, Ideology and Legacy = Stud Slav Lit Poet Turgenev: Art, Ideology and Legacy = Stud. Slav. Lit. Poet. Türk arkeoloji dergisi = TAD Turk botanik dergisi = Turkish journal of botany|Turk. J. Bot. Turkderm-archives of The Turkish Dermatology and Venerology = Turkderm-arch Turk D Turkderm-archives of The Turkish Dermatology and Venerology = Turkderm-arch. Turk. D. Turkey and The European Union: Prospects for A Difficult Encounter = Palgrave Stud Eur Un Turkey and The European Union: Prospects for A Difficult Encounter = Palgrave. Stud. Eur. Un. Turkey's Accession to The European Union: An Unusual Candidacy = Ck I Dem Ser Eur Int Turkey's Accession to The European Union: An Unusual Candidacy = Ck. I. Dem. Ser. Eur. Int. Turk Geriatri Dergisi-turkish Journal of Geriatrics = Turk Geriatri Derg Turk Geriatri Dergisi-turkish Journal of Geriatrics = Turk Geriatri Derg. Turk Gogus Kalp Damar Cerrahisi Dergisi-turkish Journal of Thoracic and Cardiovascular Surgery = Turk Gogus Kalp Dama Turk Gogus Kalp Damar Cerrahisi Dergisi-turkish Journal of Thoracic and Cardiovascular Surgery = Turk Gogus Kalp Dama. Turk hemsireler dergisi = Turk Hemsire Derg Turk Hemsireler Dergisi (Turkish Journal of Nursing) = Turk Hemsire. Derg. Turk hijiyen ve deneysel biyoloji dergisi. Turkish bulletin of hygiene and experimental biology = Turk Hij Deney Biyol Derg Turk Hijiyen ve Deneysel Biyoloji Dergisi (Turkish Bulletin of Hygiene and Experimental Biology) = Turk Hij. Deney. Biyol. Derg. Turk hijiyen ve tecrubi biyoloji dergisi = Turk Hij Tecr Biyol Derg Turk Hijiyen ve Tecrubi Biyoloji Dergisi = Turk Hij. Tecr. Biyol. Derg. Turk hijiyen ve tecrubi biyoloji dergisi. Turkish bulletin of hygiene and experimental biology = Turk Hij Tecr Biyol Derg Turk Hijiyen ve Tecrubi Biyoloji Dergisi (Turkish Bulletin of Hygiene and Experimental Biology) = Turk Hij. Tecr. Biyol. Derg. Turkish Accession to The Eu: Satisfying The Copenhagen Criteria = Rout Stud Mid E Econ Turkish Accession to The Eu: Satisfying The Copenhagen Criteria = Rout. Stud. Mid. E. Econ. Turkish Dynamics: Bridge Across Troubled Lands = Middle E Focus Turkish Dynamics: Bridge Across Troubled Lands = Middle. E. Focus. Turkish Economy:the Real Economy, Corporate Governance and Reform = Rout Stud Mid E Econ Turkish Economy:the Real Economy, Corporate Governance and Reform = Rout. Stud. Mid. E. Econ. Turkish Islam and The Secular State: The Gulen Movement = Cont Iss M Turkish Islam and The Secular State: The Gulen Movement = Cont. Iss. M. Turkish Journal of Agriculture and Forestry = Turk J Agric For Turkish Journal of Agriculture and Forestry = Turk. J. Agric. For. Turkish Journal of Biochemistry-turk Biyokimya Dergisi = Turk J Biochem Turkish Journal of Biochemistry-turk Biyokimya Dergisi = Turk. J. Biochem. Turkish Journal of Biology = Turk J Biol Turkish Journal of Biology = Turk. J. Biol. Turkish Journal of Botany = Turk J Bot Turkish Journal of Botany = Turk. J. Bot. Turkish Journal of Chemistry = Turk J Chem Turkish Journal of Chemistry = Turk. J. Chem. Turkish Journal of Chemistry = TUrk. J. Chem. Turkish Journal of Earth Sciences = Turk J Earth Sci Turkish Journal of Earth Sciences = Turk. J. Earth Sci. Turkish Journal of Electrical Engineering and Computer Sciences = Turk J Electr Eng Co Turkish Journal of Electrical Engineering and Computer Sciences = Turk. J. Electr. Eng. Co. Turkish Journal of Engineering and Environmental Science = Turk. J. Eng. Environ. Sci. Turkish Journal of Field Crops = Turk J Field Crops Turkish Journal of Field Crops = Turk. J. Field Crops Turkish Journal of Fisheries and Aquatic Sciences = Turk J Fish Aquat Sc Turkish Journal of Fisheries and Aquatic Sciences = Turk. J. Fish. Aquat. Sc. Turkish Journal of Gastroenterology = Turk J Gastroenterol Turkish Journal of Gastroenterology = Turk. J. Gastroenterol. Turkish Journal of Geriatrics-turk Geriatri Dergisi = Turk J Geriatr Turkish Journal of Geriatrics-turk Geriatri Dergisi = Turk. J. Geriatr. Turkish Journal of Hematology = Turk J Hematol Turkish Journal of Hematology = Turk. J. Hematol. Turkish Journal of Mathematics = Turkish J. Math. Turkish Journal of Mathematics = Turk J Math Turkish Journal of Mathematics = Turk. J. Math. Turkish Journal of Medical Sciences = Turk J Med Sci Turkish Journal of Medical Sciences = Turk. J. Med. Sci. Turkish Journal of Pediatrics = Turkish J Pediatr Turkish Journal of Pediatrics = Turkish J. Pediatr. Turkish Journal of Pediatrics=Turk J Pediatr;; Turkish Journal of Pediatrics = Turk. J. Pediatr. Turkish Journal of Rheumatology = Turk J Rheumatol Turkish Journal of Rheumatology = Turk. J. Rheumatol. Turkish Journal of Rheumatology-turk Romatoloji Dergisi = Turk J Rheumatol Turkish Journal of Rheumatology-turk Romatoloji Dergisi = Turk. J. Rheumatol. Turkish Journal of Veterinary & Animal Sciences = Turk J Vet Anim Sci Turkish Journal of Veterinary & Animal Sciences = Turk. J. Vet. Anim. Sci. Turkish Journal of Zoology = Turk J Zool Turkish Journal of Zoology = Turk. J. Zool. Turkish neurosurgery = Turk Neurosurg Turkish Neurosurgery = Turk Neurosurg Turkish Neurosurgery = Turk. Neurosurg. Turkish Online Journal of Educational Technology = Turk Online J Educ T Turkish Online Journal of Educational Technology = Turk. Online J. Educ. T. Turkish Studies = Turk Stud Turkish Studies = Turk. Stud. Turkish Turn in Contemporary German Literature: Toward A New Critical Grammar of Migration = Stud Eur Cult Hist Turkish Turn in Contemporary German Literature: Toward A New Critical Grammar of Migration = Stud. Eur. Cult. Hist. Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 1 = Marmara U P Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 1 = Marmara. U. P. Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 2 = Marmara U P Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 2 = Marmara. U. P. Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 3 = Marmara U P Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 3 = Marmara. U. P. Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 4 = Marmara U P Turkish Viiith National Symposium On Chemistry and Chemical Engineering, Vol 4 = Marmara. U. P. Türkiye Bilimler Akademisi arkeoloji dergisi = TueBA-Ar Turkiye Entomoloji Dergisi-turkish Journal of Entomology = Turk Entomol Derg-tu Turkiye Entomoloji Dergisi-turkish Journal of Entomology = Turk. Entomol. Derg-tu. Turkiye Fiziksel Tip Ve Rehabilitasyon Dergisi-turkish Journal of Physical Medicine and Rehabilitation = Turk Fiz Tip Rehab D Turkiye Fiziksel Tip Ve Rehabilitasyon Dergisi-turkish Journal of Physical Medicine and Rehabilitation = Turk. Fiz. Tip Rehab. D. Turkiye Klinikleri Tip Bilimleri Dergisi = Turk Klin Tip Bilim Turkiye Klinikleri Tip Bilimleri Dergisi = Turk. Klin. Tip Bilim. Turk Kulturu Ve Haci Bektas Veli-arastirma Dergisi = Turk Kult Haci Bekta Turk Kulturu Ve Haci Bektas Veli-arastirma Dergisi = Turk Kult. Haci Bekta. Turkmenistan's Foreign Policy: Positive Neutrality and The Consolidation of The Turkmen Regime = Cent Asian Stud Ser Turkmenistan's Foreign Policy: Positive Neutrality and The Consolidation of The Turkmen Regime = Cent. Asian. Stud. Ser. Turk Ortodonti Dergisi = Turk Ortodonti Derg. Turk Pediatri Arsivi-turkish Archives of Pediatrics = Turk Pediatr Arsivi Turk Pediatri Arsivi-turkish Archives of Pediatrics = Turk Pediatr. Arsivi. Turk Psikiyatri Dergisi = Turk Psikiyatr Derg Turk Psikiyatri Dergisi = Turk Psikiyatr. Derg. Turk Psikoloji Dergisi = Turk Psikol Derg Turk Psikoloji Dergisi = Turk Psikol. Derg. Türk Tarih Kurumu yayınları = TTKY Turk Tip Cemiyeti mecmuasi = Turk Tip Cemiy Mecm Turk Tip Cemiyeti Mecmuasi = Turk Tip Cemiy. Mecm. Turk Tip Dernegi dergisi = Turk Tip Dernegi Derg Turk Tip Dernegi Dergisi = Turk Tip Dernegi Derg. Turner Syndrome : Growth Promoting Therapies = Int Congr Ser Turner Syndrome : Growth Promoting Therapies = Int. Congr. Ser. Turner Syndrome in A Life-span Perspective: Research and Clinical Aspects = Int Congr Ser Turner Syndrome in A Life-span Perspective: Research and Clinical Aspects = Int. Congr. Ser. Turning A Problem Into A Resource: Remediation and Waste Management At The Sillamae Site, Estonia = Nato Sci S 1 Disarm Turning A Problem Into A Resource: Remediation and Waste Management At The Sillamae Site, Estonia = Nato. Sci. S. 1. Disarm. Turning Into Sterne: Viktor Shklovskii and Literary Reception = Stud Comp Lit Ser Turning Into Sterne: Viktor Shklovskii and Literary Reception = Stud. Comp. Lit. Ser. Turn of The Century = Eur Cult St Lit Arts Turn of The Century = Eur. Cult. St. Lit. Arts. Turn of The Cycle = Beih Z Alttest Wiss Turn of The Cycle = Beih. Z. Alttest. Wiss. Turrialba = Turrialba Turun historiallinen arkisto = Turun Hist Ark (Finl) Turvallisuusalan Liiketoimunnan Kasvualueet Ja-mahdollisuudet Suomessa = Vtt Res Notes Turvallisuusalan Liiketoimunnan Kasvualueet Ja-mahdollisuudet Suomessa = Vtt. Res. Notes. Tutorials in Electrochemical Engineering-mathematical Modeling = Elec Soc S Tutorials in Electrochemical Engineering-mathematical Modeling = Elec. Soc. S. Tutorials in Mathematical Biosciences Iii: Cell Cycle, Proliferation, and Cancer = Lect Notes Math Tutorials in Mathematical Biosciences Iii: Cell Cycle, Proliferation, and Cancer = Lect. Notes. Math. Tutorials in Mathematical Biosciences Ii = Lect Notes Math Tutorials in Mathematical Biosciences Ii = Lect. Notes. Math. Tutorials in Mathematical Biosciences I: Mathematical Neuroscience = Lect Notes Math Tutorials in Mathematical Biosciences I: Mathematical Neuroscience = Lect. Notes. Math. Tutorials in Mathematical Biosciences Iv: Evolution and Ecology = Lect Notes Math Tutorials in Mathematical Biosciences Iv: Evolution and Ecology = Lect. Notes. Math. Tutorials in Motor Neuroscience = Nato Adv Sci I D-beh Tutorials in Motor Neuroscience = Nato. Adv. Sci. I. D-beh. Tutorials On Emerging Methodologies and Applications in Operations Research = Int Ser Oper Res Man Tutorials On Emerging Methodologies and Applications in Operations Research = Int. Ser. Oper. Res. Man. Tuulivoimaloiden Melun Synty, Eteneminen Ja Hairitsevyys = Vtt Res Notes Tuulivoimaloiden Melun Synty, Eteneminen Ja Hairitsevyys = Vtt. Res. Notes. TVZ : het vakblad voor de verpleging = TVZ TVZ = TVZ Twainian = Twainian Twelfth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings = P Ieee Semicond Ther Twelfth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings = P. Ieee Semicond. Ther. Twelfth Edition of The Jdl Conference = Ciral Pub B Twelfth Edition of The Jdl Conference = Ciral. Pub. B. Twelfth International Solar Wind Conference = Aip Conf Proc Twelfth International Solar Wind Conference = Aip. Conf. Proc. Twelfth International Symposium On High-performance Computer Architecture, Proceedings = Int S High Perf Comp Twelfth International Symposium On High-performance Computer Architecture, Proceedings = Int. S. High. Perf. Comp. Twelfth International Workshop On Research Issues in Data Engineering: Engineering E-commerce/e-business Systems = Pr Gr Lak Symp Vlsi Twelfth International Workshop On Research Issues in Data Engineering: Engineering E-commerce/e-business Systems = Pr. Gr. Lak. Symp. Vlsi. Twelfth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pts 1 and 2 = Proc Spie Twelfth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pts 1 and 2 = Proc. Spie. Twelfth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pts 1 and 2 = P Soc Photo-opt Ins Twelfth Joint International Symposium On Atmospheric and Ocean Optics/atmospheric Physics, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Twelfth Nordic Teletraffic Seminar Nts12 = Vtt Symp Twelfth Nordic Teletraffic Seminar Nts12 = Vtt. Symp. Twentieth Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput Twentieth Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. Twentieth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2004 = P Ieee Semicond Ther Twentieth Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2004 = P. Ieee Semicond. Ther. Twentieth Annual International Computer Software & Applications Conference (compsac'96), Proceedings = P Int Comp Softw App Twentieth Annual International Computer Software & Applications Conference (compsac'96), Proceedings = P. Int. Comp. Softw. App. Twentieth Century British History = Twent Century Br His Twentieth Century British History = Twent. Century Br. His. Twentieth Century Literature = Twentieth Cent Lit Twentieth Century Literature = Twentieth Cent. Lit. Twentieth-century Russian Literature = Int Congr Cent E Eur Twentieth-century Russian Literature = Int. Congr. Cent. E. Eur. Twentieth Ieee International Symposium On Computer-based Medical Systems, Proceedings = Comp Med Sy Twentieth Ieee International Symposium On Computer-based Medical Systems, Proceedings = Comp. Med. Sy. Twentieth Lacus Forum 1993 = Lacus Forum Twentieth Vertebrate Pest Conference, Proceedings = Proc Vertebr Pest C Twentieth Vertebrate Pest Conference, Proceedings = Proc. Vertebr. Pest C. Twenty Beautiful Years of Bottom Physics = Aip Conf Proc Twenty Beautiful Years of Bottom Physics = Aip. Conf. Proc. Twenty-eighth Annual International Symposium On Fault-tolerant Computing, Digest Papers = Dig Pap Int Symp Fau Twenty-eighth Annual International Symposium On Fault-tolerant Computing, Digest Papers = Dig. Pap. Int. Symp. Fau. Twenty-fifth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P Ieee Semicond Ther Twenty-fifth Annual Ieee Semiconductor Thermal Measurement and Management Symposium = P. Ieee Semicond. Ther. Twenty-fifth International Symposium On Fault-tolerant Computing, Digest of Papers = Dig Pap Int Symp Fau Twenty-fifth International Symposium On Fault-tolerant Computing, Digest of Papers = Dig. Pap. Int. Symp. Fau. Twenty-first Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2005 = P Ieee Semicond Ther Twenty-first Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2005 = P. Ieee Semicond. Ther. Twenty-first Annual Symposium - Incremental Motion Control Systems and Devices : Proceedings = Ann Sym Inc Twenty-first Annual Symposium - Incremental Motion Control Systems and Devices : Proceedings = Ann. Sym. Inc. Twenty-first Lacus Forum 1994 = Lacus Forum Twenty-fourth International Symposium On Multiple-valued Logic, Proceedings = Int Sym Mvl Twenty-fourth International Symposium On Multiple-valued Logic, Proceedings = Int. Sym. Mvl. Twenty-ninth Annual International Symposium On Fault-tolerant Computing, Digest of Papers = Dig Pap Int Symp Fau Twenty-ninth Annual International Symposium On Fault-tolerant Computing, Digest of Papers = Dig. Pap. Int. Symp. Fau. Twenty-second Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput Twenty-second Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. Twenty Second Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2006 = P Ieee Semicond Ther Twenty Second Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2006 = P. Ieee Semicond. Ther. Twenty-second Annual International Computer Software & Applications Conference - Proceedings = P Int Comp Softw App Twenty-second Annual International Computer Software & Applications Conference - Proceedings = P. Int. Comp. Softw. App. Twenty-second Annual Symposium - Incremental Motion Control Systems and Devices : Proceedings = Ann Sym Inc Twenty-second Annual Symposium - Incremental Motion Control Systems and Devices : Proceedings = Ann. Sym. Inc. Twenty-second Lacus Forum, 1995 = Lacus Forum Twenty-second Lacus Forum, 1995 = Lacus Forum. Twenty Seventh Annual Ieee/cpmt/semi International Electronics Manufacturing Technology Symposium = Ieee/cpmt Int El Mfg Twenty Seventh Annual Ieee/cpmt/semi International Electronics Manufacturing Technology Symposium = Ieee/cpmt. Int. El. Mfg. Twenty-seventh Annual International Symposium On Fault-tolerant Computing, Digest of Papers = Dig Pap Int Symp Fau Twenty-seventh Annual International Symposium On Fault-tolerant Computing, Digest of Papers = Dig. Pap. Int. Symp. Fau. Twenty Sixth Ieee/cpmt International Electronics Manufacturing Technology Symposium, Proceedings = Ieee/cpmt Int El Mfg Twenty Sixth Ieee/cpmt International Electronics Manufacturing Technology Symposium, Proceedings = Ieee/cpmt Int. El. Mfg. Twenty-third Annual Ieee Conference On Computational Complexity, Proceedings = Ann Ieee Conf Comput Twenty-third Annual Ieee Conference On Computational Complexity, Proceedings = Ann. Ieee Conf. Comput. Twenty-third Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2007 = P Ieee Semicond Ther Twenty-third Annual Ieee Semiconductor Thermal Measurement and Management Symposium, Proceedings 2007 = P. Ieee Semicond. Ther. Twenty-third Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S Log Twenty-third Annual Ieee Symposium On Logic in Computer Science, Proceedings = Ieee S. Log. Twenty-third International Symposium On Multiple-valued Logic : Proceedings = Int Sym Mvl Twenty-third International Symposium On Multiple-valued Logic : Proceedings = Int. Sym. Mvl. Twenty-third Lacus Forum 1996 = Lacus Forum Twenty Years of Bialowieza: A Mathematical Anthology: Aspects of Differential Geometric Methods in Physics = World Sci Monograph Twenty Years of Bialowieza: A Mathematical Anthology: Aspects of Differential Geometric Methods in Physics = World. Sci. Monograph. Twenty Years of Islamic Revolution = Cont Iss M Twenty Years of Islamic Revolution = Cont. Iss. M. Twenty Years of Managing Change : Visions of The Future = Cause Nat C Twenty Years of Managing Change : Visions of The Future = Cause. Nat. C. Twin Buildings and Applications to S-arithmetic Groups = Lect Notes Math Twin Buildings and Applications to S-arithmetic Groups = Lect. Notes. Math. Twin research and human genetics : the official journal of the International Society for Twin Studies = Twin Res Hum Genet Twin Research and Human Genetics = Twin Res Hum Genet Twin Research and Human Genetics = Twin Res. Hum. Genet. Twin research : the official journal of the International Society for Twin Studies = Twin Res Twin Research = Twin Res Twin Research = Twin Res. Twisted L-functions and Monodromy = Ann Math Stud Twisted L-functions and Monodromy = Ann. Math. Stud. Two- and Three-dimensional Methods for Inspection and Metrology Iv = P Soc Photo-opt Ins Two- and Three-dimensional Methods for Inspection and Metrology Iv = P. Soc. Photo-opt. Ins. Two- and Three-dimensional Methods for Inspection and Metrology Vi = P Soc Photo-opt Ins Two- and Three-dimensional Methods for Inspection and Metrology Vi = P. Soc. Photo-opt. Ins. Two- and Three-dimensional Methods for Inspection and Metrology V = P Soc Photo-opt Ins Two- and Three-dimensional Methods for Inspection and Metrology V = P. Soc. Photo-opt. Ins. Two- and Three - Dimensional Vision Systems for Inspection, Control, and Metrology Ii = P Soc Photo-opt Ins Two- and Three - Dimensional Vision Systems for Inspection, Control, and Metrology Ii = P. Soc. Photo-opt. Ins. Two- and Three-dimensional Vision Systems for Inspection, Control, and Metrology = Proc Spie Two- and Three-dimensional Vision Systems for Inspection, Control, and Metrology = Proc. Spie. Two- and Three-dimensional Vision Systems for Inspection, Control, and Metrology = P Soc Photo-opt Ins Two- and Three-dimensional Vision Systems for Inspection, Control, and Metrology = P. Soc. Photo-opt. Ins. Two Art Histories = Clark Stud Vis Arts Two Art Histories = Clark. Stud. Vis. Arts. Two-center Effects in Ion-atom Collisions = Aip Conf Proc Two-center Effects in Ion-atom Collisions = Aip. Conf. Proc. Two-component Signaling Systems, Pt A = Method Enzymol Two-component Signaling Systems, Pt A = Method. Enzymol. Two-component Signaling Systems, Pt B = Method Enzymol Two-component Signaling Systems, Pt B = Method. Enzymol. Two Cultures of Rights = Publ Ger Hist Inst Two Cultures of Rights = Publ. Ger. Hist. Inst. Two Decades of Adult T-cell Leukemia and Htlv-i Research = Gann Monogr Canc Res Two Decades of Adult T-cell Leukemia and Htlv-i Research = Gann. Monogr. Canc. Res. Two Decades of Experience in Growth = Serono Sym Two Decades of Experience in Growth = Serono. Sym. Two-dimensional Correlation Spectroscopy = Aip Conf Proc Two-dimensional Correlation Spectroscopy = Aip. Conf. Proc. Two-dimensional Periodic Nanoscale Patterning of Solid Surfaces By Four-beam Standing Wave Excimer Laser Lithography = Lasers Electro-opt R Two-dimensional Periodic Nanoscale Patterning of Solid Surfaces By Four-beam Standing Wave Excimer Laser Lithography = Lasers. Electro-opt. R. Two Dimensional Quantum Gravity and Random Surfaces = Jer Win Sch Two Dimensional Quantum Gravity and Random Surfaces = Jer. Win. Sch. Two-dimensional Turbulence in Plasmas and Fluids - Research Workshop = Aip Conf Proc Two-dimensional Turbulence in Plasmas and Fluids - Research Workshop = Aip. Conf. Proc. Two Faiths, One Covenant? = Bern Cent Ser Two Faiths, One Covenant? = Bern. Cent. Ser. Two Hundred Years of Accounting Research = Routl New Works Acct Two Hundred Years of Accounting Research = Routl. New. Works. Acct. Two Hundred Years of Pushkin, Vol 3 = Stud Slav L Two Hundred Years of Pushkin, Vol 3 = Stud. Slav. L. Two Hundred Years of Pushkin, Vol Ii = Stud Slav L Two Hundred Years of Pushkin, Vol Ii = Stud. Slav. L. Two Hundred Years of Pushkin, Vol I = Stud Slav L Two Hundred Years of Pushkin, Vol I = Stud. Slav. L. Two Hundred Years of Pushkin, Vol I = Stud Slav Lit Poet Two Hundred Years of Pushkin, Vol I = Stud. Slav. Lit. Poet. Two Liturgical Traditions = Two Liturg Two Liturgical Traditions = Two Liturg. Two Old French Satires On The Power of The Keys: L'escommeniement Au Lecheor and Le Pardon De Foutre = Res Monogr Fr Stud Two Old French Satires On The Power of The Keys: L'escommeniement Au Lecheor and Le Pardon De Foutre = Res. Monogr. Fr. Stud. Two-phase Flow Heat Exchanges = Nato Adv Sci I E-app Two-phase Flow Heat Exchanges = Nato. Adv. Sci. I. E-app. Two Sciences of Mind = Adv Consc Res Two Sciences of Mind = Adv. Consc. Res. Two Societies in Opposition = Stud Econ S Two Societies in Opposition = Stud. Econ. S. Two-step Approaches to Natural Language Formalism = Stud Generat Gramm Two-step Approaches to Natural Language Formalism = Stud. Generat. Gramm. Two-year College Mathematics Journal = Two-year Coll Math J Two-year College Mathematics Journal = Two-year Coll. Math. J. Tyche. Beiträge zur Alten Geschichte, Papyrologie und Epigraphik = Tyche Tydskrif Vir Die Suid-afrikaanse Reg = Tydskr Suid-afr Reg Tydskrif Vir Die Suid-afrikaanse Reg = Tydskr. Suid-afr. Reg Tydskrif Vir Geesteswetenskappe = Tydskr Geesteswet Tydskrif Vir Geesteswetenskappe = Tydskr. Geesteswet. Tydskrif vir hedendaagse Romeins-Holandse Reg = Tydskrif Hedendaagse Romeins Holandse Reg Tydskrif Vir Letterkunde = Tydskr Lett Tydskrif Vir Letterkunde = Tydskr. Lett. Tydskrif vir rasse-aangeleenthede. Journal of racial affairs = TydsKr Rasse Aangel Tyndale Bulletin = Tyndale Bull Tyndale Bulletin = Tyndale Bull. Type 2 Diabetes Mellitus: An Evidence-based Approach to Practical Management = Contemp Endocrinol S Type 2 Diabetes Mellitus: An Evidence-based Approach to Practical Management = Contemp. Endocrinol. S. Type 2 Diabetes: Methods and Protocols = Methods Mol Biol Type 2 Diabetes: Methods and Protocols = Methods Mol. Biol. Type 2 Diabetes, Pre-diabetes, and The Metabolic Syndrome, Second Edition = Curr Clin Pract Type 2 Diabetes, Pre-diabetes, and The Metabolic Syndrome, Second Edition = Curr. Clin. Pract. Type-2 Diabetic Nephropathy in Japan: From Bench to Bedside = Contrib Nephrol Type-2 Diabetic Nephropathy in Japan: From Bench to Bedside = Contrib. Nephrol. Type-2 Fuzzy Logic: Theory and Applications = Stud Fuzz Soft Comp Type-2 Fuzzy Logic: Theory and Applications = Stud. Fuzz. Soft. Comp. Typed Lambda Calculi and Applications = Lect Notes Comput Sc Typed Lambda Calculi and Applications = Lect. Notes. Comput. Sc. Typed Lambda Calculi and Applications, Proceedings = Lect Notes Comput Sc Typed Lambda Calculi and Applications, Proceedings = Lect. Notes. Comput. Sc. Types for Proofs and Programs = Ann Ny Acad Sci Types for Proofs and Programs = Ann. Ny. Acad. Sci. Types for Proofs and Programs = Lect Notes Comput Sc Types for Proofs and Programs = Lect. Notes. Comput. Sc. Types of Alcoholics = Ann Ny Acad Sci Types of Alcoholics = Ann. Ny. Acad. Sci. Typological Studies in Language ( Tsl ) = Typol St L Typological Studies in Language ( Tsl ) = Typol. St. L. Typology of Sculpted Forms in Open Bedrock Channels = Geol Soc Am Spec Pap Typology of Sculpted Forms in Open Bedrock Channels = Geol. Soc. Am. Spec. Pap. Typology of Verbal Borrowings = Trends Linguist-stud Typology of Verbal Borrowings = Trends. Linguist-stud. Tyroszyklus Des Ezechielbuches = Beih Z Alttest Wiss Tyroszyklus Des Ezechielbuches = Beih. Z. Alttest. Wiss. U- and E-service, Science and Technology = Comm Com Inf Sc U- and E-service, Science and Technology = Comm. Com. Inf. Sc. Uav Cooperative Decision and Control: Challenges and Practical Approaches = Adv Des Control Uav Cooperative Decision and Control: Challenges and Practical Approaches = Adv. Des. Control. Überblicke Mathematik = Überbl. Math. Uberschusse Der Erfahrung: Grenzdimensionen Des Ich Nach Husserl = Phaenomenologica Uberschusse Der Erfahrung: Grenzdimensionen Des Ich Nach Husserl = Phaenomenologica. Ubersetzung Antiker Literatur: Funktionen Und Konzeptionen Im 19. Und 20. Jahrhundert = Transform Antike Ubersetzung Antiker Literatur: Funktionen Und Konzeptionen Im 19. Und 20. Jahrhundert = Transform. Antike. Ubersetzung: Ein Internationales Handbuch Zur Ubersetzungsforschung, Vol 1 = Handb Sprach Kommun Ubersetzung: Ein Internationales Handbuch Zur Ubersetzungsforschung, Vol 1 = Handb. Sprach. Kommun. Ubersetzung: Ein Internationales Handbuch Zur Ubersetzungsforschung, Vol 2 = Handb Sprach Kommun Ubersetzung: Ein Internationales Handbuch Zur Ubersetzungsforschung, Vol 2 = Handb. Sprach. Kommun. Ubersichten zur Tierernahrung = Ubersich. Tierernahr. Ubicomp 2003: Ubiquitous Computing = Lect Notes Comput Sc Ubicomp 2003: Ubiquitous Computing = Lect. Notes. Comput. Sc. Ubicomp 2004: Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Ubicomp 2004: Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Ubicomp 2005: Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Ubicomp 2005: Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Ubicomp 2006: Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Ubicomp 2006: Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Ubicomp 2007: Ubiquitous Computing, Proceedings = Lect Notes Comput Sc Ubicomp 2007: Ubiquitous Computing, Proceedings = Lect. Notes. Comput. Sc. Ubiquitin and Protein Degradation, Part A = Method Enzymol Ubiquitin and Protein Degradation, Part A = Method. Enzymol. Ubiquitin and Protein Degradation, Pt B = Method Enzymol Ubiquitin and Protein Degradation, Pt B = Method. Enzymol. Ubiquitin Proteasome System in The Central Nervous System: From Physiology to Pathology-2008 Update = Biochem Res Trends Ubiquitin Proteasome System in The Central Nervous System: From Physiology to Pathology-2008 Update = Biochem. Res. Trends. Ubiquitin System in Health and Disease = Ernst Schering Found Ubiquitin System in Health and Disease = Ernst. Schering. Found. Ubiquitous and Pervasive Commerce: New Frontiers for Electronic Business = Comput Commun Netw S Ubiquitous and Pervasive Commerce: New Frontiers for Electronic Business = Comput. Commun. Netw. S. Ubiquitous Computing and Multimedia Applications = Comm Com Inf Sc Ubiquitous Computing and Multimedia Applications = Comm. Com. Inf. Sc. Ubiquitous Computing Systems = Lect Notes Comput Sc Ubiquitous Computing Systems = Lect. Notes. Comput. Sc. Ubiquitous Computing Systems, Proceedings = Lect Notes Comput Sc Ubiquitous Computing Systems, Proceedings = Lect. Notes. Comput. Sc. Ubiquitous Convergence Technology = Lect Notes Comput Sc Ubiquitous Convergence Technology = Lect. Notes. Comput. Sc. Ubiquitous Heat Kernel = Contemp Math Ubiquitous Heat Kernel = Contemp. Math. Ubiquitous Intelligence and Computing = Lect Notes Comput Sc Ubiquitous Intelligence and Computing = Lect. Notes. Comput. Sc. Ubiquitous Intelligence and Computing, Proceedings = Lect Notes Comput Sc Ubiquitous Intelligence and Computing, Proceedings = Lect. Notes. Comput. Sc. Ubiquitous Knowledge Discovery: Challenges, Techniques, Applications = Lect Notes Comput Sc Ubiquitous Knowledge Discovery: Challenges, Techniques, Applications = Lect. Notes. Comput. Sc. Ubiquitous Mobile Information and Collaboration Systems = Lect Notes Comput Sc Ubiquitous Mobile Information and Collaboration Systems = Lect. Notes. Comput. Sc. Ubiquitous Positioning = Artech Hse Mob Comm Ubiquitous Positioning = Artech. Hse. Mob. Comm. Ubiquity: Technologies for Better Health in Aging Societies = St Heal T Ubiquity: Technologies for Better Health in Aging Societies = St. Heal. T. Ubiquity: Technologies for Better Health in Aging Societies = Stud Health Technol Ubiquity: Technologies for Better Health in Aging Societies = Stud. Health Technol. Uchenye zapiski Instituta farmakologii i khimioterapii AMN SSSR = Uch Zap Inst Farmakol Khimioter AMN SSSR Uchenye zapiski. Seriia biologicheskaia. Leningrad. Universitet = Uchenye Zap Seriia Biolog Leningr Univ Uchenye Zapiski Tsentralnogo Aero-Gidrodinamicheskogo Instituta (TsAGI) = Uchen. Zap. TsAGI Uchenye zapiski. Vtoroi Moskovskii ordena Lenina gosudarstvennyi meditsinskii institut im N.I. Pirogova = Uchenye Zap Mosk Meditsinskii Inst Uchu koku kankyo igaku / Nihon Uchu Koku Kankyo Igakkai = Uchu Koku Kankyo Igaku Ucla Center for Middle East Development Cmed Series = Ucla Cent Mid E Dev Ucla Center for Middle East Development Cmed Series = Ucla Cent. Mid. E. Dev. Ucla Clark Memorial Library Series = Ucla Clark Mem Lib S Ucla Clark Memorial Library Series = Ucla Clark Mem. Lib. S. UCLA forum in medical sciences = UCLA Forum Med Sci UCLA Forum in Medical Sciences = UCLA Forum Med. Sci. Ucla Institute of Industrial Relations Current Issues Series = Ucla Iir C Ucla Institute of Industrial Relations Current Issues Series = Ucla Iir. C. Ucla Institute of Industrial Relations Monograph and Research Series = U Cal I Ind Ucla Institute of Industrial Relations Monograph and Research Series = U. Cal. I. Ind. Ucla Institute of Industrial Relations Policy and Practice Series = Ucla Iir P Ucla Institute of Industrial Relations Policy and Practice Series = Ucla Iir. P. Ucla Latin American Studies = Ucla Lat Am Ucla Latin American Studies = Ucla Lat. Am. Ucla Law Review = Ucla Law Rev Ucla Law Review = Ucla Law Rev. UCLA law review. University of California, Los Angeles. School of Law = UCLA Law Rev UCLA Pacific Basin law journal = UCLA Pac Basin Law J UCLA Reports = UCLA Rep. UCLA [reports]. U.S. Atomic Energy Commission = UCLA Rep Ucla Symposia On Molecular and Cellular Biology - New Series = Ucla Sym Bi Ucla Symposia On Molecular and Cellular Biology - New Series = Ucla Sym. Bi. UCLA Symposia on Molecular and Cellular Biology, New Series = UCLA Symp. Mol. Cell. Bio., New Ser. Ucla Symposia On Molecular and Cellular Biology = Ucla Symp Mol Cell B Ucla Symposia On Molecular and Cellular Biology = Ucla Symp. Mol. Cell. B. UCLA symposia on molecular and cellular biology = UCLA Symp Mol Cell Biol UCLA women's law journal = UCLA Womens Law J Ucl Molecular Pathology Series = Ucl Molec Pathol Ser Ucl Molecular Pathology Series = Ucl Molec. Pathol. Ser. Uddannelse (Copenhagen, Denmark) = Uddannelse Udim = Udim UFSI reports = UFSI Rep Uganda's Recovery: The Role of Farms, Firms, and Government = Wb Reg Sect Stud Uganda's Recovery: The Role of Farms, Firms, and Government = Wb. Reg. Sect. Stud. Ugarit-Forschungen. Internationales Jahrbuch für die Altertumskunde Syrien-Palästinas = UF Ugarit-Forschungen = UF Ugeskrift for Laeger = Ugeskrift Laeger Ugeskrift for laeger = Ugeskr Laeger Ugeskrift for Laeger = Ugeskr. Laeger Ugeskrift For Laeger=Ugeskr Laeger;; Uhod-uluslararasi Hematoloji-onkoloji Dergisi = Uhod-uluslar Hematol Uhod-uluslararasi Hematoloji-onkoloji Dergisi = Uhod-uluslar. Hematol. Uirusu. Journal of virology = Uirusu Uirusu=Uirusu;; Uirusu = Uirusu Ui sahak = Uisahak Ujcd. Union Des Jeunes Chirurgiens-Dentistes = UJCD Union Jeunes Chir Dent UJCD; Union des Jeunes Chirurgiens-Dentistes = UJCD. Union Jeunes Chir. Dent. Uk It 1990 Conference = Iee Conf Publ Uk It 1990 Conference = Iee. Conf. Publ. Ukraine, The Eu and Russia: History, Culture and International Relations = Stud Cent E Eur Ukraine, The Eu and Russia: History, Culture and International Relations = Stud. Cent. E. Eur. Ukrainian Economic Review=Ukrainian Econ. Rev. Ukrainian Economy = Harv S Ukrain St Ukrainian Economy = Harv. S. Ukrain. St. Ukrainian Journal of Physical Optics = Ukr J Phys Opt Ukrainian Journal of Physical Optics = Ukr. J. Phys. Opt. Ukrainian Mathematical Journal = Ukrainian Math. J. Ukrainian Mathematical Journal = Ukr Math J Ukrainian Mathematical Journal = Ukr Math J+ Ukrainian Mathematical Journal = Ukr. Math. J. Ukrainian Mathematical Journal = Ukr. Math. J+.+ Ukrainian review (London, England) = Ukr Rev (Lond) Ukrainica Bioorganica Acta = Ukr. Bioorg. Acta Ukrainskii biokhimicheskii zhurnal = Ukr Biokhim Zh Ukrainskii Biokhimicheskii Zhurnal=Ukr Biokhim Zh;; Ukrainskii Biokhimicheskii Zhurnal = Ukr Biokhim Zh+ Ukrainskii Biokhimicheskii Zhurnal = Ukr. Biokhim. Zh. Ukrainskii Biokhimicheskii Zhurnal = Ukr. Biokhim. Zh+.+ Ukrains'kii Biokhimichnii Zhurnal = Ukr. Biokhim. Zh. Ukrainskii Biokhimichnii Zhurnal = Ukr Biokhim Zh+ Ukrainskii Biokhimichnii Zhurnal = Ukr. Biokhim. Zh+.+ Ukrainskii Fizicheskii Zhurnal (Russian Edition) = Ukr. Fiz. Zh. (Russ. Ed.) Ukrainskii Fizicheskii Zhurnal = Ukr Fiz Zh+ Ukrainskii Fizicheskii Zhurnal = Ukr. Fiz. Zh. Ukrainskii Fizicheskii Zhurnal = Ukr. Fiz. Zh+.+ Ukrains'kii Fizichnii Zhurnal = Ukr. Fiz. Zh. Ukrainskii Khimicheskii Zhurnal (Russian Edition) = Ukr. Khim. Zh. (Russ. Ed.) Ukrainskii Khimicheskii Zhurnal = Ukr Khim Zh+ Ukrainskii Khimicheskii Zhurnal = Ukr. Khim. Zh. Ukrainskii Khimicheskii Zhurnal = Ukr. Khim. Zh+.+ Ukrainskiy Geometricheskiy Sbornik = Ukrain. Geom. Sb. Ukrains'kyi biokhimichnyi zhurnal = Ukr Biokhim Zh Ukrainskyi Biokhimichnyi Zhurnal = Ukr. Biokhim. Zh. Ukrains'kyi botanichnyi zhurnal. Ukrainian botanical review. Ukrains'ke botanichne tovarystvo = Ukr Bot Z Ukr Bot Tovarystvo Ukrains'kyi istorychnyi zhurnal = Ukr Istor Z Ulam Quarterly = Ulam Quart. Ulsi Process Integration = Elec Soc S Ulsi Process Integration = Elec. Soc. S. Ulsi Science and Technology / 1997 = Elec Soc S Ulsi Science and Technology / 1997 = Elec. Soc. S. Ulster folklife = Ulster Folklife Ulster Folklife = Ulster Folklife Ulster Medical Journal=Ulster Med J;; Ulster Medical Journal = Ulster Med J Ulster Medical Journal = Ulster Med. J. Ultimate Reality and Meaning = Ultimate Real Mean Ultimate Reality and Meaning = Ultimate Real. Mean. Ultracentrifugation = Prog Coll Pol Sci S Ultracentrifugation = Prog. Coll. Pol. Sci. S. Ultra Clean Processing of Semiconductor Surfaces Ix = Sol St Phen Ultra Clean Processing of Semiconductor Surfaces Ix = Sol. St. Phen. Ultra Clean Processing of Semiconductor Surfaces Viii = Solid State Phenomen Ultra Clean Processing of Semiconductor Surfaces Viii = Solid. State. Phenomen. Ultra Clean Processing of Semiconductor Surfaces Viii = Sol St Phen Ultra Clean Processing of Semiconductor Surfaces Viii = Sol. St. Phen. Ultra Clean Processing of Silicon Surfaces 2000 = Sol St Phen Ultra Clean Processing of Silicon Surfaces 2000 = Sol. St. Phen. Ultra Clean Processing of Silicon Surfaces Vii = Solid State Phenomen Ultra Clean Processing of Silicon Surfaces Vii = Solid. State. Phenomen. Ultra Clean Processing of Silicon Surfaces Vii = Sol St Phen Ultra Clean Processing of Silicon Surfaces Vii = Sol. St. Phen. Ultra Clean Processing of Silicon Surfaces V = Solid State Phenomen Ultra Clean Processing of Silicon Surfaces V = Solid. State. Phenomen. Ultra Clean Processing of Silicon Surfaces V = Sol St Phen Ultra Clean Processing of Silicon Surfaces V = Sol. St. Phen. Ultraclean Semiconductor Processing Technology and Surface Chemical Cleaning and Passivation = Mater Res Soc Symp P Ultraclean Semiconductor Processing Technology and Surface Chemical Cleaning and Passivation = Mater. Res. Soc. Symp. P. Ultracold Quantum Fields = Theor Math Phys Ser Ultracold Quantum Fields = Theor. Math. Phys. Ser. Ultrafast Dynamical Processes in Semiconductors = Top Appl Phys Ultrafast Dynamical Processes in Semiconductors = Top. Appl. Phys. Ultrafast Dynamics of Quantum Systems = Nato Adv Sci I B-phy Ultrafast Dynamics of Quantum Systems = Nato. Adv. Sci. I. B-phy. Ultrafast Electronics and Optoelectronics, Proceedings = Osa Trends Opt Photo Ultrafast Electronics and Optoelectronics, Proceedings = Osa. Trends. Opt. Photo. Ultrafast Laser Probe Phenomena in Bulk and Microstructure Semiconductors Iii = P Soc Photo-opt Ins Ultrafast Laser Probe Phenomena in Bulk and Microstructure Semiconductors Iii = P. Soc. Photo-opt. Ins. Ultrafast Lasers for Materials Science = Mater Res Soc Symp P Ultrafast Lasers for Materials Science = Mater. Res. Soc. Symp. P. Ultrafast Lasers Probe Phenomena in Semiconductors and Superconductors = P Soc Photo-opt Ins Ultrafast Lasers Probe Phenomena in Semiconductors and Superconductors = P. Soc. Photo-opt. Ins. Ultrafast Magnetic Resonance Imaging in Medicine = Int Congr Ser Ultrafast Magnetic Resonance Imaging in Medicine = Int. Congr. Ser. Ultrafast Optics Iv = Springer Ser Opt Sci Ultrafast Optics Iv = Springer. Ser. Opt. Sci. Ultrafast Optics V = Springer Series Opti Ultrafast Optics V = Springer. Series. Opti. Ultrafast Optics V = Springer Ser Opt Sci Ultrafast Optics V = Springer. Ser. Opt. Sci. Ultrafast Phenomena in Semiconductors 2001 = Mater Sci Forum Ultrafast Phenomena in Semiconductors 2001 = Mater. Sci. Forum. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Ix = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Ix = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Ix = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Ix = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Viii = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Viii = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Viii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Viii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xi and Semiconductor Photodetectors Iv = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xi and Semiconductor Photodetectors Iv = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xi and Semiconductor Photodetectors Iv = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xi and Semiconductor Photodetectors Iv = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xii = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xii = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiv = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiv = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiv = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xiv = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials X = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials X = Proc. Spie. Ultrafast Phenomena in Semiconductors and Nanostructure Materials X = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors and Nanostructure Materials X = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xv = Proc Spie Ultrafast Phenomena in Semiconductors and Nanostructure Materials Xv = Proc. Spie. Ultrafast Phenomena in Semiconductors Iii = Proc Spie Ultrafast Phenomena in Semiconductors Iii = Proc. Spie. Ultrafast Phenomena in Semiconductors Iii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors Iii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors Ii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors Ii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors Iv = Proc Spie Ultrafast Phenomena in Semiconductors Iv = Proc. Spie. Ultrafast Phenomena in Semiconductors Iv = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors Iv = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors = Mater Sci Forum Ultrafast Phenomena in Semiconductors = Mater. Sci. Forum. Ultrafast Phenomena in Semiconductors = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors Vii = Proc Spie Ultrafast Phenomena in Semiconductors Vii = Proc. Spie. Ultrafast Phenomena in Semiconductors Vii = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors Vii = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors Vi = Proc Spie Ultrafast Phenomena in Semiconductors Vi = Proc. Spie. Ultrafast Phenomena in Semiconductors Vi = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors Vi = P. Soc. Photo-opt. Ins. Ultrafast Phenomena in Semiconductors V = P Soc Photo-opt Ins Ultrafast Phenomena in Semiconductors V = P. Soc. Photo-opt. Ins. Ultrafast Phenomena Vii = Springer Series Chem Ultrafast Phenomena Vii = Springer. Series. Chem. Ultrafast Phenomena Xiii = Springer Ser Chem Ph Ultrafast Phenomena Xiii = Springer. Ser. Chem. Ph. Ultrafast Phenomena Xiii = Springer Series Chem Ultrafast Phenomena Xiii = Springer. Series. Chem. Ultrafast Phenomena Xii = Springer Ser Chem Ph Ultrafast Phenomena Xii = Springer. Ser. Chem. Ph. Ultrafast Phenomena Xii = Springer Series Chem Ultrafast Phenomena Xii = Springer. Series. Chem. Ultrafast Phenomena Xi = Springer Ser Chem Ph Ultrafast Phenomena Xi = Springer. Ser. Chem. Ph. Ultrafast Phenomena Xi = Springer Series Chem Ultrafast Phenomena Xi = Springer. Series. Chem. Ultrafast Phenomena Xiv = Springer Ser Chem Ph Ultrafast Phenomena Xiv = Springer. Ser. Chem. Ph. Ultrafast Phenomena Xiv = Springer Series Chem Ultrafast Phenomena Xiv = Springer. Series. Chem. Ultrafast Phenomena Xvi = Springer Ser Chem Ph Ultrafast Phenomena Xvi = Springer. Ser. Chem. Ph. Ultrafast Phenomena Xvi = Springer Series Chem Ultrafast Phenomena Xvi = Springer. Series. Chem. Ultrafast Phenomena Xv = Springer Series Chem Ultrafast Phenomena Xv = Springer. Series. Chem. Ultrafast Photonics = Inst Phys Conf Ser Ultrafast Photonics = Inst. Phys. Conf. Ser. Ultrafast Physical Processes in Semiconductors = Semicond Semimet Ultrafast Physical Processes in Semiconductors = Semicond. Semimet. Ultrafast Physical Processes in Semiconductors = Semiconduct Semimet Ultrafast Physical Processes in Semiconductors = Semiconduct. Semimet. Ultrafast Processes in Spectroscopy 1991 = Inst Phys Conf Ser Ultrafast Processes in Spectroscopy 1991 = Inst. Phys. Conf. Ser. Ultrafast Pulse Generation and Spectroscopy = P Soc Photo-opt Ins Ultrafast Pulse Generation and Spectroscopy = P. Soc. Photo-opt. Ins. Ultrafast Reaction Dynamics and Solvent Effects = Aip Conf Proc Ultrafast Reaction Dynamics and Solvent Effects = Aip. Conf. Proc. Ultrafast X-ray Sources and Detectors = P Soc Photo-opt Ins Ultrafast X-ray Sources and Detectors = P. Soc. Photo-opt. Ins. Ultrafilters Across Mathematics = Contemp Math Ultrafilters Across Mathematics = Contemp. Math. Ultrahigh- and High-speed Photograph, Videography, Photonics, and Velocimetry 90 = P Soc Photo-opt Ins Ultrahigh- and High-speed Photograph, Videography, Photonics, and Velocimetry 90 = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography and Image-based Motion Measurement = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography and Image-based Motion Measurement = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography, Photonics, and Videography = Proc Spie Ultrahigh- and High-speed Photography, Photonics, and Videography = Proc. Spie. Ultrahigh- and High-speed Photography, Photonics, and Videography = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography, Photonics, and Videography = P. Soc. Photo-opt. Ins. Ultrahigh and High-speed Photography, Videography, and Photonics 91 = P Soc Photo-opt Ins Ultrahigh and High-speed Photography, Videography, and Photonics 91 = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography, Videography, and Photonics '93 = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography, Videography, and Photonics '93 = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography, Videography, and Photonics '94 = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography, Videography, and Photonics '94 = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography, Videography, and Photonics '95 = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography, Videography, and Photonics '95 = P. Soc. Photo-opt. Ins. Ultrahigh- and High-speed Photography, Videography, and Photonics = P Soc Photo-opt Ins Ultrahigh- and High-speed Photography, Videography, and Photonics = P. Soc. Photo-opt. Ins. Ultra High Energy Cosmic Rays: A New Tool for Astrophysics Research = Space Sci Explor Pol Ultra High Energy Cosmic Rays: A New Tool for Astrophysics Research = Space. Sci. Explor. Pol. Ultra High Field Magnetic Resonance Imaging = Biol Magn Reson Ultra High Field Magnetic Resonance Imaging = Biol. Magn. Reson. Ultra-high Frequency Linear Fiber Optic Systems, Second Edition = Springer Ser Opt Sci Ultra-high Frequency Linear Fiber Optic Systems, Second Edition = Springer. Ser. Opt. Sci. Ultrahigh-pressure Metamorphism: Deep Continental Subduction = Geol S Am S Ultrahigh-pressure Metamorphism: Deep Continental Subduction = Geol. S. Am. S. Ultrahigh-pressure Mineralogy = Rev Mineral Ultrahigh-pressure Mineralogy = Rev. Mineral. Ultra-high-pumpability and High Performance Concrete Technology = Key Eng Mat Ultra-high-pumpability and High Performance Concrete Technology = Key. Eng. Mat. Ultra-high-pumpability and High Performance Concrete Technology = Key Eng Mater Ultra-high-pumpability and High Performance Concrete Technology = Key. Eng. Mater. Ultrahigh Resolution Radar = P Soc Photo-opt Ins Ultrahigh Resolution Radar = P. Soc. Photo-opt. Ins. Ultrahigh Speed and High Speed Photography, Photonics, and Videograph 89 = P Soc Photo-opt Ins Ultrahigh Speed and High Speed Photography, Photonics, and Videograph 89 = P. Soc. Photo-opt. Ins. Ultra-low Energy Domain-specific Instruction-set Processors = Embed Syst Ultra-low Energy Domain-specific Instruction-set Processors = Embed. Syst. Ultra-low Fertility in Pacific Asia: Trends, Causes and Policy Issues = Rout Res Pub Soc Pol Ultra-low Fertility in Pacific Asia: Trends, Causes and Policy Issues = Rout. Res. Pub. Soc. Pol. Ultra Low-power Biomedical Signal Processing = Analog Circ Sig Proc Ultra Low-power Biomedical Signal Processing = Analog. Circ. Sig. Proc. Ultra Low Power Capacitive Sensor Interfaces = Analog Circ Sig Proc Ultra Low Power Capacitive Sensor Interfaces = Analog. Circ. Sig. Proc. Ultra-low Voltage Nano-scale Memories = Integr Circuit Syst Ultra-low Voltage Nano-scale Memories = Integr. Circuit. Syst. Ultrametric Functional Analysis = Contemp Math Ultrametric Functional Analysis = Contemp. Math. Ultramicroscopy=Ultramicroscopy;; Ultramicroscopy = Ultramicroscopy Ultra-precision Machining Technologies = Adv Mater Res-switz Ultra-precision Machining Technologies = Adv. Mater. Res-switz. Ultra-precision Machining Technologies = Adv Mat Res Ultra-precision Machining Technologies = Adv. Mat. Res. Ultraschall in der Medizin (Stuttgart, Germany : 1980) = Ultraschall Med Ultraschall in der Medizin = Ultraschall Med. Ultraschall in Der Medizin = Ultraschall Med Ultraschall in Der Medizin = Ultraschall Med. Ultraschall In Der Medizin=Ultraschall Med;; Ultra Scientist of Physical Sciences = Ultra Sci. Phys. Sci. Ultrasensitive and Single-molecule Detection Technologies Ii = P Soc Photo-opt Ins Ultrasensitive and Single-molecule Detection Technologies Ii = P. Soc. Photo-opt. Ins. Ultrasensitive and Single-molecule Detection Technologies = P Soc Photo-opt Ins Ultrasensitive and Single-molecule Detection Technologies = P. Soc. Photo-opt. Ins. Ultrasensitive Biochemical Diagnostics Ii, Proceedings Of = P Soc Photo-opt Ins Ultrasensitive Biochemical Diagnostics Ii, Proceedings Of = P. Soc. Photo-opt. Ins. Ultrasensitive Biochemical Diagnostics, Proceedings Of = P Soc Photo-opt Ins Ultrasensitive Biochemical Diagnostics, Proceedings Of = P. Soc. Photo-opt. Ins. Ultrasensitive Instrumentation for Dna Sequencing and Biochemical Diagnostics, Proceedings Of = P Soc Photo-opt Ins Ultrasensitive Instrumentation for Dna Sequencing and Biochemical Diagnostics, Proceedings Of = P. Soc. Photo-opt. Ins. Ultrashort Processes in Condensed Matter = Nato Adv Sci Inst Se Ultrashort Processes in Condensed Matter = Nato. Adv. Sci. Inst. Se. Ultrashort Wavelength Lasers Ii = P Soc Photo-opt Ins Ultrashort Wavelength Lasers Ii = P. Soc. Photo-opt. Ins. Ultrashort-wavelength Lasers = P Soc Photo-opt Ins Ultrashort-wavelength Lasers = P. Soc. Photo-opt. Ins. Ultrasonic Imaging = Ultrasonic Imaging Ultrasonic imaging = Ultrason Imaging Ultrasonic Imaging = Ultrason. Imaging Ultrasonic IMAging=Ultrason Imaging;; Ultrasonic Instruments and Devices Ii = Phys Acoustics Ultrasonic Instruments and Devices Ii = Phys. Acoustics. Ultrasonic Instruments and Devices I = Phys Acoustics Ultrasonic Instruments and Devices I = Phys. Acoustics. Ultrasonic Processes and Machines = Found Eng Mech Ultrasonic Processes and Machines = Found. Eng. Mech. Ultrasonics of High-t(c) and Other Unconventional Superconductors = Phys Acoustics Ultrasonics of High-t(c) and Other Unconventional Superconductors = Phys. Acoustics. Ultrasonics sonochemistry = Ultrason Sonochem Ultrasonics Sonochemistry=Ultrason Sonochem;; Ultrasonics Sonochemistry = Ultrason Sonochem Ultrasonics Sonochemistry = Ultrason. Sonochem. Ultrasonics Symposium = Ultrason Ultrasonics Symposium = Ultrason. Ultrasonics=Ultrasonics;; Ultrasonics = Ultrasonics Ultrasonic Transducer Engineering = P Soc Photo-opt Ins Ultrasonic Transducer Engineering = P. Soc. Photo-opt. Ins. Ultrasonic Wave Propagation in Non Homogeneous Media = Springer Proc Phys Ultrasonic Wave Propagation in Non Homogeneous Media = Springer. Proc. Phys. Ultrasonography in Ophthalmology 12 = Doc Ophth P Ultrasonography in Ophthalmology 12 = Doc. Ophth. P. Ultrasonography in Ophthalmology 14 = Doc Ophth P Ultrasonography in Ophthalmology 14 = Doc. Ophth. P. Ultrasonography in Ophthalmology Xv = Doc Ophth P Ultrasonography in Ophthalmology Xv = Doc. Ophth. P. Ultrasound in Medicine and Biology = Ultrasound Med Biol Ultrasound in Medicine and Biology = Ultrasound Med. Biol. Ultrasound In Medicine and Biology=Ultrasound Med Biol;; Ultrasound in medicine & biology = Ultrasound Med Biol Ultrasound in Medicine & Biology = Ultrasound Med. Biol. Ultrasound in Medicine = Med Sci Ser Ultrasound in Medicine = Med. Sci. Ser. Ultrasound in Obstetrics and Gynecology = Ultrasound Obstet. Gynecol. Ultrasound In Obstetrics and Gynecology=Ultrasound Obstet Gynecol;; Ultrasound in obstetrics & gynecology : the official journal of the International Society of Ultrasound in Obstetrics and Gynecology = Ultrasound Obstet Gynecol Ultrasound in Obstetrics & Gynecology = Ultrasound Obst Gyn Ultrasound in Obstetrics & Gynecology = Ultrasound Obst. Gyn. Ultrasound of The Musculoskeletal System = Med Radiol Diagn Ima Ultrasound of The Musculoskeletal System = Med. Radiol. Diagn. Ima. Ultrasound quarterly = Ultrasound Q Ultrasound Screening for Fetal Anomalies: Is It Worth It? = Ann Ny Acad Sci Ultrasound Screening for Fetal Anomalies: Is It Worth It? = Ann. Ny. Acad. Sci. Ultrasound Technologies for Food and Bioprocessing = Food Eng Ser Ultrasound Technologies for Food and Bioprocessing = Food Eng. Ser. Ultrastructural pathology = Ultrastruct Pathol Ultrastructural Pathology=Ultrastruct Pathol;; Ultrastructural Pathology = Ultrastruct Pathol Ultrastructural Pathology = Ultrastruct. Pathol. Ultrathin Metal Films: Magnetic and Structural Properties = Springer Tr Mod Phys Ultrathin Metal Films: Magnetic and Structural Properties = Springer. Tr. Mod. Phys. Ultrathin Sio2 and High-k Materials for Ulsi Gate Dielectrics = Mater Res Soc Symp P Ultrathin Sio2 and High-k Materials for Ulsi Gate Dielectrics = Mater. Res. Soc. Symp. P. Ultraviolet and Soft X-ray Free-electron Lasers = Springer Tr Mod Phys Ultraviolet and Soft X-ray Free-electron Lasers = Springer. Tr. Mod. Phys. Ultraviolet and X-ray Detection, Spectroscopy, and Polarimetry Iii = P Soc Photo-opt Ins Ultraviolet and X-ray Detection, Spectroscopy, and Polarimetry Iii = P. Soc. Photo-opt. Ins. Ultraviolet Astrophysics Beyond The Iue Final Archive = Esa Sp Publ Ultraviolet Astrophysics Beyond The Iue Final Archive = Esa. Sp. Publ. Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation Ii = Proc Spie Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation Ii = Proc. Spie. Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation Ii = P Soc Photo-opt Ins Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation Ii = P. Soc. Photo-opt. Ins. Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation = P Soc Photo-opt Ins Ultraviolet Atmospheric and Space Remote Sensing: Methods and Instrumentation = P. Soc. Photo-opt. Ins. Ultraviolet Ground- and Space-based Measurements, Models and Effects Iii = Proc Spie Ultraviolet Ground- and Space-based Measurements, Models and Effects Iii = Proc. Spie. Ultraviolet Ground- and Space-based Measurements, Models and Effects Iii = P Soc Photo-opt Ins Ultraviolet Ground- and Space-based Measurements, Models and Effects Iii = P. Soc. Photo-opt. Ins. Ultraviolet Ground- and Space-based Measurements, Models, and Effects Ii = Proc Spie Ultraviolet Ground- and Space-based Measurements, Models, and Effects Ii = Proc. Spie. Ultraviolet Ground- and Space-based Measurements, Models, and Effects Ii = P Soc Photo-opt Ins Ultraviolet Ground- and Space-based Measurements, Models, and Effects Ii = P. Soc. Photo-opt. Ins. Ultraviolet Ground- and Space-based Measurements, Models, and Effects Iv = P Soc Photo-opt Ins Ultraviolet Ground- and Space-based Measurements, Models, and Effects Iv = P. Soc. Photo-opt. Ins. Ultraviolet Ground- and Space-based Measurements, Models, and Effects = Proc Spie Ultraviolet Ground- and Space-based Measurements, Models, and Effects = Proc. Spie. Ultraviolet Ground- and Space-based Measurements, Models, and Effects = P Soc Photo-opt Ins Ultraviolet Ground- and Space-based Measurements, Models, and Effects = P. Soc. Photo-opt. Ins. Ultraviolet Light in Food Technology: Principles and Applications = Contemp Food Eng Ultraviolet Light in Food Technology: Principles and Applications = Contemp. Food Eng. Ultraviolet-optical Space Astronomy Beyond Hst = Astr Soc P Ultraviolet-optical Space Astronomy Beyond Hst = Astr. Soc. P. Ultraviolet Radiation Hazards, Proceedings Of = P Soc Photo-opt Ins Ultraviolet Radiation Hazards, Proceedings Of = P. Soc. Photo-opt. Ins. Ultraviolet Technology Iii = P Soc Photo-opt Ins Ultraviolet Technology Iii = P. Soc. Photo-opt. Ins. Ultraviolet Technology Iv = P Soc Photo-opt Ins Ultraviolet Technology Iv = P. Soc. Photo-opt. Ins. Ultraviolet Technology V = P Soc Photo-opt Ins Ultraviolet Technology V = P. Soc. Photo-opt. Ins. Ultraviolet Universe At Low and High Redshift: Probing The Progress of Galaxy Evolution = Aip Conf Proc Ultraviolet Universe At Low and High Redshift: Probing The Progress of Galaxy Evolution = Aip. Conf. Proc. Ultra Wideband: Circuits, Transceivers and Systems = Integr Circuit Syst Ultra Wideband: Circuits, Transceivers and Systems = Integr. Circuit. Syst. Ultra-wideband Pulse-based Radio: Reliable Communication Over A Wideband Channel = Analog Circ Sig Proc Ultra-wideband Pulse-based Radio: Reliable Communication Over A Wideband Channel = Analog. Circ. Sig. Proc. Ultrawideband Radar = P Soc Photo-opt Ins Ultrawideband Radar = P. Soc. Photo-opt. Ins. Ulusal Travma Ve Acil Cerrahi Dergisi (Turkish Journal of Trauma and Emergency Surgery) = Ulus. Travma Acil Cerrahi Derg. Ulusal Travma Ve Acil Cerrahi Dergisi-turkish Journal of Trauma & Emergency Surgery = Ulus Travma Acil Cer Ulusal Travma Ve Acil Cerrahi Dergisi-turkish Journal of Trauma & Emergency Surgery = Ulus. Travma Acil Cer. Uluslararasi Iliskiler-international Relations = Uluslar Iliskiler Uluslararasi Iliskiler-international Relations = Uluslar. Iliskiler. Um99: User Modeling, Proceedings = Cism Cour L Um99: User Modeling, Proceedings = Cism. Cour. L. Um99: User Modeling, Proceedings = Cism Courses Lect Um99: User Modeling, Proceedings = Cism. Courses. Lect. Umeni-art = Umeni-art UMKC law review = UMKC Law Rev Uml 2000 - The Unified Modeling Language, Proceedings = Lect Notes Comput Sc Uml 2000 - The Unified Modeling Language, Proceedings = Lect. Notes. Comput. Sc. Uml 2003 - The Unified Modeling Language, Proceedings = Lect Notes Comput Sc Uml 2003 - The Unified Modeling Language, Proceedings = Lect. Notes. Comput. Sc. Uml 2004 - The Unified Modeling Language: Modeling Languages and Applications, Proceedings = Lect Notes Comput Sc Uml 2004 - The Unified Modeling Language: Modeling Languages and Applications, Proceedings = Lect. Notes. Comput. Sc. Uml'99 - The Unified Modeling Language = Lect Notes Comput Sc Uml'99 - The Unified Modeling Language = Lect. Notes. Comput. Sc. Uml Modeling Languages and Applications = Lect Notes Comput Sc Uml Modeling Languages and Applications = Lect. Notes. Comput. Sc. Umschau Das Wissenschaftsmagazin = Umschau Umschau, Die = Umschau Umschau in Wissenschaft Und Technik = Umschau Umschau in Wissenschaft und Technik = Umsch Wiss Tech Umschau in Wissenschaft und Technik = Umsch. Wiss. Tech. Umschau = Umschau Umstrittene Vergangenheit: Historische Argumente in Der Auseinandersetzung Augustins Mit Den Donatisten = Millenn Stud Kult Ge Umstrittene Vergangenheit: Historische Argumente in Der Auseinandersetzung Augustins Mit Den Donatisten = Millenn. Stud. Kult. Ge. Umweltmedizine in Forschung und Praxis = Umweltmed. Forsch. Prax. Umweltrecht in der Praxis = Umweltrecht Prax. Umweltschutz in der Schweiz = Umweltschutz Schweiz Umweltschutztechnik = Vdi-buch Umweltschutztechnik = Vdi-buch. Umweltwissenschaften und Schadstoff-Forschung = Umweltwiss. Schadst. Forsch. UNA communique = UNA Commun UNA Communique = UNA Commun. Unanswered Threats: Political Constraints On The Balance of Power = Princ Stud Int Hist Unanswered Threats: Political Constraints On The Balance of Power = Princ. Stud. Int. Hist. UNA nursing journal = UNA Nurs J UNA Nursing Journal = UNA Nurs. J. Unasylva = Unasylva Unattended Ground, Sea, and Air Sensor Technologies and Applications Ix = Proc Spie Unattended Ground, Sea, and Air Sensor Technologies and Applications Ix = Proc. Spie. Unattended Ground, Sea, and Air Sensor Technologies and Applications Ix = P Soc Photo-opt Ins Unattended Ground, Sea, and Air Sensor Technologies and Applications Ix = P. Soc. Photo-opt. Ins. Unattended Ground , Sea, and Air Sensor Technologies and Applications Viii = P Soc Photo-opt Ins Unattended Ground , Sea, and Air Sensor Technologies and Applications Viii = P. Soc. Photo-opt. Ins. Unattended Ground, Sea, and Air Sensor Technologies and Applications Xiii = Proc Spie Unattended Ground, Sea, and Air Sensor Technologies and Applications Xiii = Proc. Spie. Unattended Ground, Sea, and Air Sensor Technologies and Applications Xii = P Soc Photo-opt Ins Unattended Ground, Sea, and Air Sensor Technologies and Applications Xii = P. Soc. Photo-opt. Ins. Unattended Ground, Sea, and Air Sensor Technologies and Applications X = P Soc Photo-opt Ins Unattended Ground, Sea, and Air Sensor Technologies and Applications X = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications Iii = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications Iii = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications Ii = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications Ii = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications Iv = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications Iv = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications Vii = Proc Spie Unattended Ground Sensor Technologies and Applications Vii = Proc. Spie. Unattended Ground Sensor Technologies and Applications Vii = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications Vii = P. Soc. Photo-opt. Ins. Unattended Ground Sensor Technologies and Applications V = P Soc Photo-opt Ins Unattended Ground Sensor Technologies and Applications V = P. Soc. Photo-opt. Ins. Unattended Radiation Sensor Systems for Remote Applications = Aip Conf Proc Unattended Radiation Sensor Systems for Remote Applications = Aip. Conf. Proc. Unattended/unmanned Ground, Ocean, and Air Sensor Technologies and Applications Vi = P Soc Photo-opt Ins Unattended/unmanned Ground, Ocean, and Air Sensor Technologies and Applications Vi = P. Soc. Photo-opt. Ins. Uncanny Networks = Leonardo Ser Uncanny Networks = Leonardo. Ser. Uncertain Logics, Variables and Systems = Lect Notes Contr Inf Uncertain Logics, Variables and Systems = Lect. Notes. Contr. Inf. Uncertain Projective Geometry = Lect Notes Comput Sc Uncertain Projective Geometry = Lect. Notes. Comput. Sc. Uncertainties in Environmental Modelling and Consequences for Policy Making = Nato Sci Peace Secur Uncertainties in Environmental Modelling and Consequences for Policy Making = Nato. Sci. Peace. Secur. Uncertainty and Environmental Decision Making: A Handbook of Research and Best Practice = Int Ser Oper Res Man Uncertainty and Environmental Decision Making: A Handbook of Research and Best Practice = Int. Ser. Oper. Res. Man. Uncertainty and Risk: Mental, Formal, Experimental Representations = Theor Dec C Uncertainty and Risk: Mental, Formal, Experimental Representations = Theor. Dec. C. Uncertainty and Surprise in Complex Systems: Questions On Working With The Unexpected = Und Com Sys Uncertainty and Surprise in Complex Systems: Questions On Working With The Unexpected = Und. Com. Sys. Uncertainty Approaches for Spatial Data Modeling and Processing: A Decision Support Perspective = Stud Comput Intell Uncertainty Approaches for Spatial Data Modeling and Processing: A Decision Support Perspective = Stud. Comput. Intell. Uncertainty Assessment of Large Finite Element Systems = Lect Notes Appl Comp Uncertainty Assessment of Large Finite Element Systems = Lect. Notes. Appl. Comp. Uncertainty in Geometric Computations = Kluwer Int Ser Eng C Uncertainty in Geometric Computations = Kluwer. Int. Ser. Eng. C. Uncertainty in Knowledge Bases = Lect Notes Comput Sc Uncertainty in Knowledge Bases = Lect. Notes. Comput. Sc. Uncertainty in The Geologic Environment: From Theory to Practice, Vols 1 and 2 = Geotech Sp Uncertainty in The Geologic Environment: From Theory to Practice, Vols 1 and 2 = Geotech. Sp. Uncertainty in The Risk Assessment of Environmental and Occupational Hazards = Ann Ny Acad Sci Uncertainty in The Risk Assessment of Environmental and Occupational Hazards = Ann. Ny. Acad. Sci. Uncertainty Principles Associated to Non-degenerate Quadratic Forms = Mem Soc Math Fr Uncertainty Principles Associated to Non-degenerate Quadratic Forms = Mem. Soc. Math. Fr. Uncertainty Reasoning for The Semantic Web I = Lect Notes Artif Int Uncertainty Reasoning for The Semantic Web I = Lect. Notes. Artif. Int. UN chronicle = UN Chron Unclassical Traditions Vol I = Camb C J Proc Cam Ph Unclassical Traditions Vol I = Camb. C. J. Proc. Cam. Ph. Uncommon Mathematical Excursions: Polynomia and Related Realms = Dolciani Math Expo Uncommon Mathematical Excursions: Polynomia and Related Realms = Dolciani. Math. Expo. Unconventional Approaches to Nanostructures With Applications in Electronics, Photonics, Information Storage and Sensing = Mater Res Soc Symp P Unconventional Approaches to Nanostructures With Applications in Electronics, Photonics, Information Storage and Sensing = Mater. Res. Soc. Symp. P. Unconventional Computation, Proceedings = Lect Notes Comput Sc Unconventional Computation, Proceedings = Lect. Notes. Comput. Sc. Unconventional Imaging Iii = Proc Spie Unconventional Imaging Iii = Proc. Spie. Unconventional Imaging Iii = P Soc Photo-opt Ins Unconventional Imaging Iii = P. Soc. Photo-opt. Ins. Unconventional Imaging Ii = P Soc Photo-opt Ins Unconventional Imaging Ii = P. Soc. Photo-opt. Ins. Unconventional Imaging Iv = P Soc Photo-opt Ins Unconventional Imaging Iv = P. Soc. Photo-opt. Ins. Unconventional Models in Computation, Proceedings = Lect Notes Comput Sc Unconventional Models in Computation, Proceedings = Lect. Notes. Comput. Sc. Unconventional Models of Computation = Spr S Disc Math Unconventional Models of Computation = Spr. S. Disc. Math. Unconventional Models of Computation Umc' 2k, Proceedings = Discrete Math & Theo Unconventional Models of Computation Umc' 2k, Proceedings = Discrete. Math. &. Theo. Unconventional Optical Elements for Information Storage, Processing and Communications = Nato Asi 3 High Tech Unconventional Optical Elements for Information Storage, Processing and Communications = Nato. Asi. 3. High. Tech. Unconventional Programming Paradigms = Lect Notes Comput Sc Unconventional Programming Paradigms = Lect. Notes. Comput. Sc. Unconventional Superconductors: Experimental Investigation of The Order-parameter Symmetry = Springer Tr Mod Phys Unconventional Superconductors: Experimental Investigation of The Order-parameter Symmetry = Springer. Tr. Mod. Phys. Unconventional Weapons and International Terrorism: Challenges and New Approaches = Cass Ser Polit Viole Unconventional Weapons and International Terrorism: Challenges and New Approaches = Cass. Ser. Polit. Viole. Uncouth Nation: Why Europe Dislikes America = Pub Square Uncouth Nation: Why Europe Dislikes America = Pub. Square. Uncovering Cp Violation = Springer Tr Mod Phys Uncovering Cp Violation = Springer. Tr. Mod. Phys. UNCTAD Review=UNCTAD Rev. Uncultivated Microorganisms = Microbiol Monogr Uncultivated Microorganisms = Microbiol. Monogr. Underactuated Robotic Hands = Springer Trac Adv Ro Underactuated Robotic Hands = Springer. Trac. Adv. Ro. Underdetermination: An Essay On Evidence and The Limits of Natural Knowledge = Bost Stud Philos Sci Underdetermination: An Essay On Evidence and The Limits of Natural Knowledge = Bost. Stud. Philos. Sci. Undergraduate Texts in Computer Science = Undergrad. Texts Comput. Sci. Undergraduate Texts in Mathematics = Undergrad. Texts Math. Underground and Obscured Object Imaging and Detection = P Soc Photo-opt Ins Underground and Obscured Object Imaging and Detection = P. Soc. Photo-opt. Ins. Underground Gas Storage: Worldwide Experiences and Future Development in The Uk and Europe = Geol Soc Spec Publ Underground Gas Storage: Worldwide Experiences and Future Development in The Uk and Europe = Geol. Soc. Spec. Publ. Underground Operators' Conference = Australas I Min Met Underground Operators' Conference = Australas. I. Min. Met. Underground Spaces: Design, Engineering and Environmental Aspects = Wit Trans Built Env Underground Spaces: Design, Engineering and Environmental Aspects = Wit. Trans. Built. Env. Underground Space - The 4th Dimension of Metropolises, Vols 1-3 = Proc Monogr Eng Wate Underground Space - The 4th Dimension of Metropolises, Vols 1-3 = Proc. Monogr. Eng. Wate. Underground Space = Underground Space Underground Works Under Special Conditions = Proc Monogr Eng Wate Underground Works Under Special Conditions = Proc. Monogr. Eng. Wate. Underlying Molecular, Cellular, and Immunological Factors in Cancer and Aging = Adv Exp Med Biol Underlying Molecular, Cellular, and Immunological Factors in Cancer and Aging = Adv. Exp. Med. Biol. Undermining of Beliefs in The Autonomy and Rationality of Consumers = Rout Interp Mark Res Undermining of Beliefs in The Autonomy and Rationality of Consumers = Rout. Interp. Mark. Res. Undersea and Hyperbaric Medicine=Undersea Hyperb Med;; Undersea and Hyperbaric Medicine = Undersea Hyperb. Med. Undersea biomedical research = Undersea Biomed Res Undersea Biomedical Research = Undersea Biomed Res Undersea Biomedical Research = Undersea Biomed. Res. Undersea & hyperbaric medicine : journal of the Undersea and Hyperbaric Medical Society, Inc = Undersea Hyperb Med Undersea & Hyperbaric Medicine = Undersea Hyperbar M Undersea & Hyperbaric Medicine = Undersea Hyperbar. M. Understanding Aggressive Behavior in Children = Ann Ny Acad Sci Understanding Aggressive Behavior in Children = Ann. Ny. Acad. Sci. Understanding and Controlling The Microstructure of Complex Foods = Woodhead Publ Food S Understanding and Controlling The Microstructure of Complex Foods = Woodhead. Publ. Food. S. Understanding and Implementing The Finite Element Method = Other Titl Appl Math Understanding and Implementing The Finite Element Method = Other. Titl. Appl. Math. Understanding and Managing Threats to The Environment in South Eastern Europe = Nato Sci Peace Secur Understanding and Managing Threats to The Environment in South Eastern Europe = Nato. Sci. Peace. Secur. Understanding and Managing Tourism Impacts: An Integrated Approach = Contemp Geogr Leis T Understanding and Managing Tourism Impacts: An Integrated Approach = Contemp. Geogr. Leis. T. Understanding and Mitigating Ageing in Nuclear Power Plants: Materials and Operational Aspects of Plant Life Management (plim) = Woodhead Publ Ser En Understanding and Mitigating Ageing in Nuclear Power Plants: Materials and Operational Aspects of Plant Life Management (plim) = Woodhead. Publ. Ser. En. Understanding and Modulating Aging = Ann Ny Acad Sci Understanding and Modulating Aging = Ann. Ny. Acad. Sci. Understanding and Optimizing Human Development:: From Cells to Patients to Populations = Ann Ny Acad Sci Understanding and Optimizing Human Development:: From Cells to Patients to Populations = Ann. Ny. Acad. Sci. Understanding and Preventing Hiv Risk Behavior = Clar Symp Understanding and Preventing Hiv Risk Behavior = Clar. Symp. Understanding and Responding to Hazardous Substances At Mine Sites in The Western United States = Rev Eng Geol Understanding and Responding to Hazardous Substances At Mine Sites in The Western United States = Rev. Eng. Geol. Understanding Chemical Reactivity = Underst. Chem. React. Understanding Cold Fusion Phenomena = Conf P Ital Understanding Cold Fusion Phenomena = Conf. P. Ital. Understanding Complex Systems-springer Complexity = Und Com Sys Understanding Complex Systems-springer Complexity = Und. Com. Sys. Understanding Complex Systems Springer Complexity = Und Com Sys Understanding Complex Systems Springer Complexity = Und. Com. Sys. Understanding Complex Systems Springer Complexity = Underst Complex Syst Understanding Complex Systems Springer Complexity = Underst. Complex Syst. Understanding Concurrent Systems = Texts Comput Sci Understanding Concurrent Systems = Texts. Comput. Sci. Understanding Consumers of Food Products = Woodhead Food Ser Understanding Consumers of Food Products = Woodhead. Food Ser. Understanding Corneal Biomechanics Through Experimental Assessment and Numerical Simulation = Eye Vis Res Dev Understanding Corneal Biomechanics Through Experimental Assessment and Numerical Simulation = Eye. Vis. Res. Dev. Understanding Emotions = Prog Brain Res Understanding Emotions = Prog. Brain. Res. Understanding Feminist Philosophy = Underst Fem Philos Understanding Feminist Philosophy = Underst. Fem. Philos. Understanding Humic Substances: Advanced Methods, Properties and Applications = Roy Soc Ch Understanding Humic Substances: Advanced Methods, Properties and Applications = Roy. Soc. Ch. Understanding Impoverishment = Ref For Mig St Understanding Impoverishment = Ref. For. Mig. St. Understanding Inequality and Poverty in China: Methods and Applications = Stud Dev Econ Policy Understanding Inequality and Poverty in China: Methods and Applications = Stud. Dev. Econ. Policy. Understanding Innovation = Underst Innov Understanding Innovation = Underst. Innov. Understanding Language Teaching = Esl Appl Ling Prof Understanding Language Teaching = Esl. Appl. Ling. Prof. Understanding Macroeconomic Theory = Routl Adv Texts Econ Understanding Macroeconomic Theory = Routl. Adv. Texts. Econ. Understanding Male Infertility : Basic and Clinical Approaches = Serono Sym Understanding Male Infertility : Basic and Clinical Approaches = Serono. Sym. Understanding Nature: Case Studies in Comparative Epistemology = Int Libr Environ Agr Understanding Nature: Case Studies in Comparative Epistemology = Int. Libr. Environ. Agr. Understanding Organizational Change = Underst Organ Chang Understanding Organizational Change = Underst. Organ. Chang. Understanding Organization As Process: Theory for A Tangled World = Routl Stud Manag Org Understanding Organization As Process: Theory for A Tangled World = Routl. Stud. Manag. Org. Understanding Pendulums: A Brief Introduction = Hist Mech Mach Sci Understanding Pendulums: A Brief Introduction = Hist. Mech. Mach. Sci. Understanding Planning Tasks: Domain Complexity and Heuristic Decomposition = Lect Notes Comput Sc Understanding Planning Tasks: Domain Complexity and Heuristic Decomposition = Lect. Notes. Comput. Sc. Understanding Population Trends and Processes = Underst Popul Trends Understanding Population Trends and Processes = Underst. Popul. Trends Understanding Post-soviet Transitions: Corruption, Collusion and Clientelism = Euro-asian Stud Understanding Post-soviet Transitions: Corruption, Collusion and Clientelism = Euro-asian. Stud. Understanding Religion: Selected Essays = Relig Reason Understanding Religion: Selected Essays = Relig. Reason. Understanding Research Methods: A Guide for The Public and Nonprofit Manager = Public Adm Public Po Understanding Research Methods: A Guide for The Public and Nonprofit Manager = Public Adm. Public Po. Understanding Search Engines: Mathematical Modeling and Text Retrieval, Second Edition = Softw Environ Tools Understanding Search Engines: Mathematical Modeling and Text Retrieval, Second Edition = Softw. Environ. Tools. Understanding Sip Servlets 1.1 = Artech Hse Telecom S Understanding Sip Servlets 1.1 = Artech. Hse. Telecom. S. Understanding Teacher Stress in An Age of Accountability = Res Stress Coping Ed Understanding Teacher Stress in An Age of Accountability = Res. Stress Coping. Ed. Understanding Terrorism and Political Violence: The Life Cycle of Birth, Growth, Transformation, and Demise = Cass Ser Polit Viole Understanding Terrorism and Political Violence: The Life Cycle of Birth, Growth, Transformation, and Demise = Cass. Ser. Polit. Viole. Understanding Terrorist Innovation: Technology, Tactics and Global Trends = Contemp Terror Stud Understanding Terrorist Innovation: Technology, Tactics and Global Trends = Contemp. Terror. Stud. Understanding The Dynamics of A Knowledge Economy = Stud Evol Polit Econ Understanding The Dynamics of A Knowledge Economy = Stud. Evol. Polit. Econ. Understanding The Impact of Global Networks On Local Social, Political and Cultural Values = Law Econ Int Telecom Understanding The Impact of Global Networks On Local Social, Political and Cultural Values = Law. Econ. Int. Telecom. Understanding The Internet: A Glimpse Into The Building Blocks, Applications, Security and Hidden Secrets of The Web = Chandos Internet Ser Understanding The Internet: A Glimpse Into The Building Blocks, Applications, Security and Hidden Secrets of The Web = Chandos. Internet. Ser. Understanding The Micro to Macro Behaviour of Rock-fluid Systems = Geol Soc Spec Publ Understanding The Micro to Macro Behaviour of Rock-fluid Systems = Geol. Soc. Spec. Publ. Understanding The Process of Economic Change in Turkey: An Institutional Approach = Econ Iss Probl Persp Understanding The Process of Economic Change in Turkey: An Institutional Approach = Econ. Iss. Probl. Persp. Understanding The Process of Economic Change = Princ Econ Hist W Wo Understanding The Process of Economic Change = Princ. Econ. Hist. W. Wo. Understanding The Social Dimension of Sustainability = Routl Stud Dev Soc Understanding The Social Dimension of Sustainability = Routl. Stud. Dev. Soc. Understanding Victory and Defeat in Contemporary War = Contemp Secur Stud Understanding Victory and Defeat in Contemporary War = Contemp. Secur. Stud. Understanding World Order and Structural Change: Poverty, Conflict and The Global Arena = Int Polit Econ Ser Understanding World Order and Structural Change: Poverty, Conflict and The Global Arena = Int. Polit. Econ. Ser. Undertaking Educational Challenges in The 21st Century: Research From The Field = Res Educ Afr Caribb Undertaking Educational Challenges in The 21st Century: Research From The Field = Res. Educ. Afr. Caribb. Under The Radar = Astrophys Space Sc L Under The Radar = Astrophys. Space. Sc. L. Under The Sign of Pisces-anais Nin and Her Circle = Under Sign Pisces Under The Sign of Pisces-anais Nin and Her Circle = Under Sign Pisces. Underwater Acoustics = Underw Acoust Underwater Acoustics = Underw. Acoust. Underwater Imaging, Photography, and Visibility = P Soc Photo-opt Ins Underwater Imaging, Photography, and Visibility = P. Soc. Photo-opt. Ins. Underwater Light Measurements = P Soc Photo-opt Ins Underwater Light Measurements = P. Soc. Photo-opt. Ins. Underwater Slam for Structured Environments Using An Imaging Sonar = Springer Trac Adv Ro Underwater Slam for Structured Environments Using An Imaging Sonar = Springer. Trac. Adv. Ro. Underwater Technology = Underwater Technol Underwater Technology = Underwater Technol. UNDP news : networking publication of UNDP staff worldwide. United Nations Development Programme = UNDP News Uneasy Alchemy: Citizens and Experts in Louisianas Chemical Corridor Disputes = Urban Ind Environ Uneasy Alchemy: Citizens and Experts in Louisianas Chemical Corridor Disputes = Urban. Ind. Environ. Unemployment in China: Economy, Human Resources and Labour Markets = Routl Contemp China Unemployment in China: Economy, Human Resources and Labour Markets = Routl. Contemp. China. Unemployment, Inequality and Poverty in Urban China = Routl Stud Chin Econ Unemployment, Inequality and Poverty in Urban China = Routl. Stud. Chin. Econ. Unemployment in Europe = Conf Eea C Unemployment in Europe = Conf. Eea. C. Unemployment in Open Economies: A Search Theoretic Analysis = Lect Notes Econ Math Unemployment in Open Economies: A Search Theoretic Analysis = Lect. Notes. Econ. Math. Unemployment, Market Structure and Growth = Lect Notes Econ Math Unemployment, Market Structure and Growth = Lect. Notes. Econ. Math. Unequal By Design: High-stakes Testing and The Standardization of Inequality = Crit Soc Thought Unequal By Design: High-stakes Testing and The Standardization of Inequality = Crit. Soc. Thought. Unesco bulletin for libraries = Unesco Bull Libr Unesco Bulletin for Libraries = Unesco Bull Libr Unesco Bulletin for Libraries = Unesco Bull. Libr. Unesco Chronicle = Unesco Chronicle Unesco Courier = Unesco Courier Unesco Journal of Information Science Librarianship & Archives Administration = Unesco J Inform Sci Unesco Journal of Information Science Librarianship & Archives Administration = Unesco J. Inform. Sci. Unesco Reports ( Technical Papers ) in Marine Science = Unesco R M Unesco Reports ( Technical Papers ) in Marine Science = Unesco R. M. Unesco sources = Unesco Sources Unesco Young Child and Family Environment Project = Unesco Ycf Ser Unesco Young Child and Family Environment Project = Unesco Ycf. Ser. Unexplained Infertility : Basic and Clinical Aspects = Serono Sym Unexplained Infertility : Basic and Clinical Aspects = Serono. Sym. Unexploded Ordnance Detection and Mitigation = Nato Science Peace S Unexploded Ordnance Detection and Mitigation = Nato. Science. Peace. S. Unfallchirurgie=Unfallchirurgie;; Unfallchirurgie = Unfallchirurgie Unfallchirurg=Unfallchirurg;; Unfallchirurg = Unfallchirurg Unfallheilkunde-traumatology = Unfallheilkunde Unfallheilkunde-traumatology = Unfallheilkunde. Unfallheilkunde = Unfallheilkunde Unfolded Proteins = Adv Protein Chem Unfolded Proteins = Adv. Protein. Chem. Unfoldings: A Partial-order Approach to Model Checking = Monogr Theor Comput Unfoldings: A Partial-order Approach to Model Checking = Monogr. Theor. Comput. Unfolding Social Constructionism = Hist Philos Psychol Unfolding Social Constructionism = Hist. Philos. Psychol. Unfolding The Matter of Nuclei = P Int Sch Phys Unfolding The Matter of Nuclei = P. Int. Sch. Phys. Un-forgetting: Re-calling Time Lost = Int Stud Philos Mono Un-forgetting: Re-calling Time Lost = Int. Stud. Philos. Mono. UNICEF news = UNICEF News Unification of Morphology and Syntax: Investigations Into Romance and Albanian Dialects = Routl Lead Linguists Unification of Morphology and Syntax: Investigations Into Romance and Albanian Dialects = Routl. Lead. Linguists. Unified Approach to Boundary Value Problems = Cbms-nsf Ma Unified Approach to Boundary Value Problems = Cbms-nsf. Ma. Unified Approach to Nasality and Voicing = Stud Generat Gramm Unified Approach to Nasality and Voicing = Stud. Generat. Gramm. Unified Chromatography = Acs Sym Ser Unified Chromatography = Acs. Sym. Ser. Unified Computational Intelligence for Complex Systems = Adapt Learn Optim Unified Computational Intelligence for Complex Systems = Adapt. Learn. Optim. Unified Modeling Language = Lect Notes Comput Sc Unified Modeling Language = Lect. Notes. Comput. Sc. Uniform Commercial Code Law Journal = Unif Comm Code Law J Uniform Commercial Code Law Journal = Unif. Comm. Code Law J. Uniformly Accelerating Charged Particles: A Threat to The Equivalence Principle = Fund Theor Phys Uniformly Accelerating Charged Particles: A Threat to The Equivalence Principle = Fund. Theor. Phys. Unifying Perspectives in Computational and Robot Vision = Lect Notes Electr En Unifying Perspectives in Computational and Robot Vision = Lect. Notes. Electr. En. Unifying Petri Nets = Lect Notes Comput Sc Unifying Petri Nets = Lect. Notes. Comput. Sc. Unifying Themes in Complex Systems Iv = New Engl Compl Syst Unifying Themes in Complex Systems Iv = New. Engl. Compl. Syst. Unifying Themes in Complex Systems = New Engl Compl Syst Unifying Themes in Complex Systems = New. Engl. Compl. Syst. Unifying Theories of Programming = Lect Notes Comput Sc Unifying Theories of Programming = Lect. Notes. Comput. Sc. Unifying The Software Process Spectrum = Lect Notes Comput Sc Unifying The Software Process Spectrum = Lect. Notes. Comput. Sc. Unilateral Problems in Structural Analysis Iv = Int S Num M Unilateral Problems in Structural Analysis Iv = Int. S. Num. M. Unione Matematica Italiana = Boll. Un. Mat. Ital. A (7) Unione Matematica Italiana = Boll. Un. Mat. Ital. B (7) Union Medicale du Canada = Union Med. Can. Union Medicale Du Canada=Union Med Can;; Union Medicale Du Canada = Union Med Can Union Medicale Du Canada = Union Med. Can. Union of Burma journal of life sciences = Union Burma J Life Sci Unions and Class Transformation: The Case of The Broadway Musicians = New Polit Econ Ser Unions and Class Transformation: The Case of The Broadway Musicians = New. Polit. Econ. Ser. Unions and Management: Working Our Way Out of Fiscal Stress, Proceedings = P A Con Nat Unions and Management: Working Our Way Out of Fiscal Stress, Proceedings = P. A. Con. Nat. Union Seminary quarterly review = USQR Union Semin Q Rev Union Strategies for A High Tech Era = Ucla Iir C Union Strategies for A High Tech Era = Ucla. Iir. C. Union Wage Bargaining and Economic Growth = Lect Notes Econ Math Union Wage Bargaining and Economic Growth = Lect. Notes. Econ. Math. Unipress = Unipress Unique Environmentalism: A Comparitive Perspective = Nonprofit Civ Soc St Unique Environmentalism: A Comparitive Perspective = Nonprofit. Civ. Soc. St. Uniqueness and Non-uniqueness of Semigroups Gererated By Singular Diffusion Operators = Lect Notes Math Uniqueness and Non-uniqueness of Semigroups Gererated By Singular Diffusion Operators = Lect. Notes. Math. Uniqueness Theorems Or Variational Problems By The Methods of Transformation Groups = Lect Notes Math Uniqueness Theorems Or Variational Problems By The Methods of Transformation Groups = Lect. Notes. Math. Unitals in Projective Planes = Springer Monogr Math Unitals in Projective Planes = Springer. Monogr. Math. Unitar Hiroshima Series in Post-conflict Reconstruction = Unitar Hiroshima Ser Unitar Hiroshima Series in Post-conflict Reconstruction = Unitar Hiroshima Ser. Unitas (Helsinki, Finland : English edition) = Unitas United Arab Republic Journal of Chemistry = U A R J Chem United Arab Republic Journal of Chemistry = U. A. R. J. Chem. United evangelical action = United Evangelical Action United Kingdom Comparative Law Series = Uk Comp Law United Kingdom Comparative Law Series = Uk. Comp. Law United Nations and Democracy in Africa: Labyrinths of Legitimacy = Stud Int Relat United Nations and Democracy in Africa: Labyrinths of Legitimacy = Stud. Int. Relat. United Nations Conference On Trade and Development (unctad) = Glob Inst United Nations Conference On Trade and Development (unctad) = Glob. Inst. United Nations Disarmament Processes in Intra-state Conflict = Southamp Stud Int Po United Nations Disarmament Processes in Intra-state Conflict = Southamp. Stud. Int. Po. United Nations Economic Commission for Europe Series = Un Eco Comm United Nations Economic Commission for Europe Series = Un. Eco. Comm. United Nations High Commissioner for Refugees (unhcr): The Politics and Practice of Refugee Protection Into The Twenty-first Century = Glob Inst United Nations High Commissioner for Refugees (unhcr): The Politics and Practice of Refugee Protection Into The Twenty-first Century = Glob. Inst. United Nations Monthly Chronicle=UN Mon. Chron. United Nations - Past Present and Future: Proceedings of The 2007 Francis Marion Unviersity Un Symposium = Glob Polit Stud United Nations - Past Present and Future: Proceedings of The 2007 Francis Marion Unviersity Un Symposium = Glob. Polit. Stud. United Nations - Past Present and Future: Proceedings of The 2007 Francis Marion Unviersity Un Symposium = Glob Pol Stud Ser United Nations - Past Present and Future: Proceedings of The 2007 Francis Marion Unviersity Un Symposium = Glob. Pol. Stud. Ser. United Nations Peacekeeping in The Post-cold War Era = Cass Ser Peacekeepin United Nations Peacekeeping in The Post-cold War Era = Cass. Ser. Peacekeepin. United Nations Reform: Heading North Or South? = Routl Adv Int Relat United Nations Reform: Heading North Or South? = Routl. Adv. Int. Relat. United Nations Sanctions and International Law = Grad Inst Int Stud United Nations Sanctions and International Law = Grad. Inst. Int. Stud. United Nations University Series On Regionalism = Un U Ser Regionalism United Nations University Series On Regionalism = Un. U. Ser. Regionalism United States and Europe: Beyond The Neo-conservative Divide = Contemp Secur Stud United States and Europe: Beyond The Neo-conservative Divide = Contemp. Secur. Stud. United States and Iran = Routl Stud Mid E Pol United States and Iran = Routl. Stud. Mid. E. Pol. United States and The Legacy of The Vietnam War = Glob Confl Secur United States and The Legacy of The Vietnam War = Glob. Confl. Secur. United States and The Malaysian Economy = Routledge Stud Growt United States and The Malaysian Economy = Routledge. Stud. Growt. United States Armed Forces medical journal = U S Armed Forces Med J United States, Britain and The Transatlantic Crisis = Glob Confl Secur United States, Britain and The Transatlantic Crisis = Glob. Confl. Secur. United States Bureau of Sport Fisheries and Wildlife Research Report = U S Bur Sport Fish W United States Bureau of Sport Fisheries and Wildlife Research Report = U. S. Bur. Sport Fish. W. United States code annotated. United States = U S Code Annot U S United States Department of Agriculture Bulletin = U.S. Dep. Agric. Bull. United States Department of Agriculture Miscellaneous Publication = U.S. Dep. Agric. Misc. Publ. United States, Europe, and The Wider Middle East, Conference Proceedings = Rand Conf Proc United States, Europe, and The Wider Middle East, Conference Proceedings = Rand. Conf. Proc. United States Fish and Wildlife Service Fishery Bulletin = Us Fish Wld S Fish B United States Fish and Wildlife Service Fishery Bulletin = Us. Fish Wld. S. Fish B. United States Foreign Policy and National Identity in The 21st Century = Rout Stud Us For Pol United States Foreign Policy and National Identity in The 21st Century = Rout. Stud. Us. For. Pol. United States Foreign Policy Regarding Greece, Turkey and Cyprus - The Rule of Law and American Interests = Ahi Conf Pr United States Foreign Policy Regarding Greece, Turkey and Cyprus - The Rule of Law and American Interests = Ahi. Conf. Pr. United States, International Law and The Struggle Against Terrorism = Routl Res Terror Law United States, International Law and The Struggle Against Terrorism = Routl. Res. Terror. Law United States in World History = Themes World Hist United States in World History = Themes. World Hist. United States naval medical bulletin = U S Nav Med Bull United States Navy medical news letter = US Navy Med News Lett United States Relations With Europe = Keck Ctr Int St Stud United States Relations With Europe = Keck. Ctr. Int. St. Stud. United States reports : cases adjudged in the Supreme Court at ... and rules announced at ... United States. Supreme Court = U S Rep U S Supreme Court United States statutes at large = US Statut Large United States Supreme Court reports. United States. Supreme Court = US Supreme Court Rep United States Supreme Court Und Bundesverfassungsgericht: Die Bedeutung Des United States Supreme Court Fur Die Errichtung Und Fortentwicklung Des Bundesverfassungsgerichts = Beitr Ausl Offentl R United States Supreme Court Und Bundesverfassungsgericht: Die Bedeutung Des United States Supreme Court Fur Die Errichtung Und Fortentwicklung Des Bundesverfassungsgerichts = Beitr. Ausl. Offentl. R. United Synagogue review = United Synag Rev Uniting America = Uniting Amer Uniting America = Uniting Amer. Units of Measurement: Past, Present and Future - International System of Units = Springer Ser Mater S Units of Measurement: Past, Present and Future - International System of Units = Springer. Ser. Mater. S. Unity From Duality: Gravity, Gauge Theory and Strings = Les Houch S Unity From Duality: Gravity, Gauge Theory and Strings = Les. Houch. S. Unity of Knowledge: The Convergence of Natural and Human Science = Ann Ny Acad Sci Unity of Knowledge: The Convergence of Natural and Human Science = Ann. Ny. Acad. Sci. Unity of Luke-acts = Bib Eph The Unity of Luke-acts = Bib. Eph. The. Unity of Mathematics = Prog Math Unity of Mathematics = Prog. Math. Unity of Plutarch's Work-moralia Themes in The Lives, Features of The Lives in The Moralia = Millenn Stud Kult Ge Unity of Plutarch's Work-moralia Themes in The Lives, Features of The Lives in The Moralia = Millenn. Stud. Kult. Ge. Unity of Science in The Arabic Tradition: Science, Logic, Epistemology and Their Interactions = Logic Epistemol Unit Unity of Science in The Arabic Tradition: Science, Logic, Epistemology and Their Interactions = Logic. Epistemol. Unit. Unity, Truth and The Liar = Logic Epistemol Unit Unity, Truth and The Liar = Logic. Epistemol. Unit. Universal Access in Ambient Intelligence Environments = Lect Notes Comput Sc Universal Access in Ambient Intelligence Environments = Lect. Notes. Comput. Sc. Universal Access in Health Telematics = Lect Notes Comput Sc Universal Access in Health Telematics = Lect. Notes. Comput. Sc. Universal Access in Human-computer Interaction: Addressing Diversity, Pt I, Proceedings = Lect Notes Comput Sc Universal Access in Human-computer Interaction: Addressing Diversity, Pt I, Proceedings = Lect. Notes. Comput. Sc. Universal Access in Human-computer Interaction: Ambient Interaction, Pt 2, Proceedings = Lect Notes Comput Sc Universal Access in Human-computer Interaction: Ambient Interaction, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Universal Access in Human-computer Interaction: Applications and Services, Pt Iii = Lect Notes Comput Sc Universal Access in Human-computer Interaction: Applications and Services, Pt Iii = Lect. Notes. Comput. Sc. Universal Access in Human Computer Interaction: Coping With Diversity, Pt 1 = Lect Notes Comput Sc Universal Access in Human Computer Interaction: Coping With Diversity, Pt 1 = Lect. Notes. Comput. Sc. Universal Access in Human-computer Interaction, Pt Ii, Proceedings = Lect Notes Comput Sc Universal Access in Human-computer Interaction, Pt Ii, Proceedings = Lect. Notes. Comput. Sc. Universal Access in The Information Society = Universal Access Inf Universal Access in The Information Society = Universal Access Inf. Universal Access: Theoretical Perspectives, Practice, and Experience = Lect Notes Comput Sc Universal Access: Theoretical Perspectives, Practice, and Experience = Lect. Notes. Comput. Sc. Universal Dialogue Series = Univer Dial Universal Dialogue Series = Univer. Dial. Universal Heliophysical Processes = Iau Symp P Series Universal Heliophysical Processes = Iau. Symp. P. Series. Universal Human Rights and Extraterritorial Obligations = Pa Stud Hum Rights Universal Human Rights and Extraterritorial Obligations = Pa. Stud. Hum. Rights Universal Human Rights = Universal Hum Rights Universal Human Rights = Universal Hum. Rights Universality and Renormalization: From Stochastic Evolution to Renormalization of Quantum Fields = Fields I Commun Universality and Renormalization: From Stochastic Evolution to Renormalization of Quantum Fields = Fields I. Commun. Universality and Renormalization: From Stochastic Evolution to Renormalization of Quantum Fields = Fields Inst Commun Universality and Renormalization: From Stochastic Evolution to Renormalization of Quantum Fields = Fields Inst. Commun. Universality, Ethics and International Relations = Interventions Universality, Ethics and International Relations = Interventions. Universal Jurisdiction: National Courts and The Prosecution of Serious Crimes Under International Law = Pa Stud Hum Rights Universal Jurisdiction: National Courts and The Prosecution of Serious Crimes Under International Law = Pa. Stud. Hum. Rights. Universal Multiservice Networks, Proceedings = Lect Notes Comput Sc Universal Multiservice Networks, Proceedings = Lect. Notes. Comput. Sc. Universals of Language = Belg J Ling Universals of Language = Belg. J. Ling. Universe As Seen By Iso, Vols I and Ii = Esa Spec Publ Universe As Seen By Iso, Vols I and Ii = Esa. Spec. Publ. Universe As Seen By Iso, Vols I and Ii = Esa Sp Publ Universe As Seen By Iso, Vols I and Ii = Esa. Sp. Publ. Universe At High-z, Large-scale Structure and The Cosmic Microwave Background = Lect Notes Phys Universe At High-z, Large-scale Structure and The Cosmic Microwave Background = Lect. Notes. Phys. Universe At Sub-second Timescales: High Time Resolution Astrophysics = Aip Conf Proc Universe At Sub-second Timescales: High Time Resolution Astrophysics = Aip. Conf. Proc. Universe Before The Big Bang: Cosmology and String Theory = Astron Univers Universe Before The Big Bang: Cosmology and String Theory = Astron. Univers. Universe in X-rays = Astron Astrophys Lib Universe in X-rays = Astron. Astrophys. Lib. Universe of General Relativity = Einstein St Universe of General Relativity = Einstein. St. Universia Business Review = Universia Bus Rev Universia Business Review = Universia Bus. Rev. Universidad del Zulia = Ciencia Universidad del Zulia = Rev. Técn. Fac. Ingr. Univ. Zulia Universidad Nacional de Tucumán = Univ. Nac. Tucumán Rev. Ser. A Università e Politecnico di Torino = Rend. Sem. Mat. Univ. Politec. Torino Universitas-monthly Review of Philosophy and Culture = Universitas-taiwan Universitas-monthly Review of Philosophy and Culture = Universitas-taiwan. Universitas Psychologica = Univ Psychol Universitas Psychologica = Univ. Psychol. Universitas-stuttgart = Universitas Universitas-stuttgart = Universitas. Universitas = Universitas (Stuttg) Universitas (University of Ghana) = Universitas (Ghana) Universitat de Barcelona = Collect. Math. Universităţii din Timișoara = An. Univ. Timișoara Ser. Mat.-Inform. Universităţii "Ovidius" Constanţa = An. Ştiinţ. Univ. Ovidius Constanţa Ser. Mat. Universităţii Tehnice din Timișoara = Bul. Ştiinţ. Univ. Tehn. Timișoara Mat. Fiz. Universitatis Babeș-Bolyai = Studia Univ. Babeș-Bolyai Math. Universitatis Babeș-Bolyai = Studia Univ. Babeș-Bolyai Phys. Universitatis Debreceniensis = Publ. Math. Debrecen Universitatis Iagellonicae = Univ. Iagel. Acta Math. Universitatis Masarykianae Brunensis = Arch. Math. (Brno) Universitätsforschungen zur Prähistorischen Archäologie = UPA Université de Grenoble = Ann. Inst. Fourier (Grenoble) Universite Des Sciences Humaines De Strasbourg - Travaux Du Centre De Recherche Sur Le Proche Orient Et La Grece Antiques = U Sci Hum S Universite Des Sciences Humaines De Strasbourg - Travaux Du Centre De Recherche Sur Le Proche Orient Et La Grece Antiques = U. Sci. Hum. S. Universite Libre De Bruxelles, Etudes Sur Le Xviiie Siecle = U Lib Bruxe Universite Libre De Bruxelles, Etudes Sur Le Xviiie Siecle = U. Lib. Bruxe. Universites Francophones : Actualite Scientifique = Univ Fra S Universites Francophones : Actualite Scientifique = Univ. Fra. S. Universitet po Arkhitektura, Stroitelstvo i Geodeziya Sofiya = God. Univ. Arkhit. Stroit. Geod. Sofiya Svit\cdprime k II Mat. Mekh. Universitext = Universitext Universitext = Universitext Universities and Climate Change: Introducing Climate Change to University Programmes = Clim Chang Manag Universities and Climate Change: Introducing Climate Change to University Programmes = Clim. Chang. Manag. Universities and Science in The Early Modern Period = Archimedes Universities and Science in The Early Modern Period = Archimedes. Universities, Ethics and Professions = Key Issues High Educ Universities, Ethics and Professions = Key. Issues. High. Educ. Universities, Innovation and The Economy = Routl Stud Bus Organ Universities, Innovation and The Economy = Routl. Stud. Bus. Organ. Universities in Transition: The Changing Role and Challenges for Academic Institutions = Insight Innov Int De Universities in Transition: The Changing Role and Challenges for Academic Institutions = Insight. Innov. Int. De. Universities Quarterly-culture Education & Society = U Quart-cult Educ S Universities Quarterly-culture Education & Society = U. Quart-cult. Educ. S. Universities Quarterly = U Quart-cult Educ S Universities Quarterly = U. Quart-cult. Educ. S. Universities' Responsibilities to Society = Iss High Educ Universities' Responsibilities to Society = Iss. High. Educ. University and Corporate Innovations in Lifelong Learning = Res Manag Educ Dev University and Corporate Innovations in Lifelong Learning = Res. Manag. Educ. Dev. University and School Connections: Research Studies in Professional Development Schools = Res Prof Dev Sch University and School Connections: Research Studies in Professional Development Schools = Res. Prof. Dev. Sch. University Center for Human Values Series = Univ Cent Hum University Center for Human Values Series = Univ. Cent. Hum. University Center for Human Values Series = Univ Cent Hum Value University Center for Human Values Series = Univ. Cent. Hum. Value. University Chemistry Education = Univ. Chem. Educ. University Computing = U Comput University Computing = U. Comput. University Dynamics and European Integration = High Educ Dynam University Dynamics and European Integration = High. Educ. Dynam. University Education Uses of Visualization in Scientific Computing = Ifip Trans A University Education Uses of Visualization in Scientific Computing = Ifip. Trans. A. University Entrepreneurship and Technology Transfer = Adv St Entr University Entrepreneurship and Technology Transfer = Adv. St. Entr. University Governance: Western European Comparative Perspectives = High Educ Dynam University Governance: Western European Comparative Perspectives = High. Educ. Dynam. University/government/industry Micro-nano Symposium Proceedings = U Gov Ind Micro Nano University/government/industry Micro-nano Symposium Proceedings = U. Gov. Ind. Micro. Nano. University Government Industry Micro-nano Symposium Proceedings = U Gov Ind Micro Nano University Government Industry Micro-nano Symposium Proceedings = U. Gov. Ind. Micro. Nano. University in The Market = Wenn Gr Int University in The Market = Wenn. Gr. Int. University Journal of Business = Univ J Bus University Journal of Business = Univ. J. Bus. University Lecture Series = Univ. Lecture Ser. University Museum Symposium Series = U Mus Symp University Museum Symposium Series = U. Mus. Symp. University of Alaska Sea Grant College Program Report = Uasgcp Rep University of Alaska Sea Grant College Program Report = Uasgcp. Rep. University of Alexandria = Bull. Fac. Sci. Alexandria Univ. University of Ankara = Comm. Fac. Sci. Univ. Ankara Ser. A1 Math. Statist. University of Arizona Bulletin = Univ. Ariz. Bull. University of Arkansas at Little Rock law journal = Univ Ark Little Rock Law J University of Baltimore law review. University of Baltimore. School of Law = Univ Baltimore Law Rev University of British Columbia law review. University of British Columbia = Univ B C Law Rev University of California, Davis law review = Univ Calif Davis Law Rev University of California Division of Agricultural Sciences Bulletin = U Calif Agr Sci Bull University of California Division of Agricultural Sciences Bulletin = U. Calif. Agr. Sci. Bull. University of California Division of Agricultural Sciences Leaflet = U Calif Agr Sci Leaf University of California Division of Agricultural Sciences Leaflet = U. Calif. Agr. Sci. Leaf. University of Chicago Law Review = U Chicago Law Rev University of Chicago Law Review = U. Chicago Law Rev. University of Chicago Legal Forum = Univ Chicago Leg For University of Chicago Legal Forum = Univ. Chicago Leg. For. University of Cincinnati Law Review = U Cinci Law Rev University of Cincinnati Law Review = U. Cinci. Law Rev. University of Cincinnati law review. University of Cincinnati. College of Law = Univ Cincinnati Law Rev University of Colorado law review. University of Colorado (Boulder campus). School of Law = Univ Colo Law Rev University of Dayton law review. University of Dayton. Law School = Univ Dayton Law Rev University of Detroit Journal of Urban Law = U Detroit J Urban L University of Detroit Journal of Urban Law = U. Detroit J. Urban L. University of Detroit journal of urban law = Univ Detroit J Urban Law University of Detroit Law Review = U Detroit Law Rev University of Detroit Law Review = U. Detroit Law Rev. University of Detroit law review = Univ Detroit Law Rev University of Detroit Mercy law review = Univ Detroit Mercy Law Rev University of Edinburgh journal = Univ Edinb J University of Exeter, Centre for Research in Continuing Education - Occational Paper = Ue Crce Occ Pap University of Exeter, Centre for Research in Continuing Education - Occational Paper = Ue. Crce. Occ. Pap. University of Florida Department of Classics Comparative Drama Conference Papers = U Fla Dep C University of Florida Department of Classics Comparative Drama Conference Papers = U. Fla. Dep. C. University of Florida journal of law and public policy : JL & PP = Univ Fla J Law Public Policy University of Florida law review = Univ Fla Law Rev University of Florida Social Sciences Monograph = U Fla Soc Sci Monogr University of Florida Social Sciences Monograph = U. Fla. Soc. Sci. Monogr. University of Ghana law journal = Univ Ghana Law J University of Hartford Studies in Literature = U Hartford Stud Lit University of Hartford Studies in Literature = U. Hartford Stud. Lit. University of Illinois Law Forum = U Ill Law Forum University of Illinois Law Forum = U. Ill. Law Forum University of Illinois Law Review = U Illinois Law Rev University of Illinois Law Review = U. Illinois Law Rev. University of Illinois law review = Univ Ill Law Rev University of Iowa Studies in Child Welfare = Univ Iowa Stud Child University of Iowa Studies in Child Welfare = Univ. Iowa Stud. Child University of Joensuu, Department of Mathematics Report Series = Univ. Joensuu Dept. Math. Rep. Ser. University of Jordan Publications = Univ. Jordan Publ. University of Kansas law review. University of Kansas. School of Law = Univ Kans Law Rev University of Lapland Arctic Centre Publications = U Lap A C P University of Lapland Arctic Centre Publications = U. Lap. A. C. P. University of Lapland, Arctic Centre Reports = U Lap A C R University of Lapland, Arctic Centre Reports = U. Lap. A. C. R. University of Łódź = Bull. Sect. Logic Univ. Łódź University of London Institute of Classical Studies Bulletin = U Lond I Class Stud University of London Institute of Classical Studies Bulletin = U. Lond. I. Class. Stud. University of Louisville Journal of Family Law = U Louisville J Fam L University of Louisville Journal of Family Law = U. Louisville J. Fam. L. University of Louisville journal of family law / University of Louisville School of Law = Univ Louisv J Fam Law University of Massachusetts, Department of Geology and Geography : Contribution = U Ma Dgg C University of Massachusetts, Department of Geology and Geography : Contribution = U. Ma. Dgg. C. University of Miami entertainment & sports law review = Univ Miami Entertain Sports Law Rev University of Miami law review = Univ Miami Law Rev University of Michigan journal of law reform. University of Michigan. Law School = Univ Mich J Law Reform University of Michigan Medical Center journal = Univ Mich Med Cent J University of Michigan Medical Center Journal = Univ. Mich. Med. Cent. J. University of Minnesota medical bulletin = Univ Minn Med Bull University of Missouri Business and Government Review=Univ. Missouri Bus. Govt. Rev. University of Newcastle upon Tyne medical gazette = Univ Newcastle Tyne Med Gaz University of Newcastle upon Tyne Medical Gazette = Univ. Newcastle Tyne Med. Gaz. University of Niš = Facta Univ. Ser. Mech. Automat. Control Robot. University Of North Carolina News Letter = Univ N C News Lett University of Oulu Report Series in Physical Sciences = Univ. Oulu Rep. Ser. Phys. Sci. University of Pennsylvania Armenian Texts and Studies = U Pa Armen University of Pennsylvania Armenian Texts and Studies = U. Pa. Armen. University of Pennsylvania Journal of International Business Law = U Penn J Int Bus Law University of Pennsylvania Journal of International Business Law = U. Penn. J. Int. Bus. Law University of Pennsylvania Journal of International Economic Law = U Pa J Int Econ Law University of Pennsylvania Journal of International Economic Law = U. Pa. J. Int. Econ. Law University of Pennsylvania Journal of International Law = Univ Pa J Int Law University of Pennsylvania Journal of International Law = Univ. Pa. J. Int. Law University of Pennsylvania Journal of International Law = U Pa J Int Law University of Pennsylvania Journal of International Law = U. Pa. J. Int. Law University of Pennsylvania Law Review and American Law Register = Univ Pa Law Rev Am L University of Pennsylvania Law Review and American Law Register = Univ. Pa. Law Rev. Am. L. University of Pennsylvania law review = Univ PA Law Rev University of Pennsylvania Law Review = U Penn Law Rev University of Pennsylvania Law Review = U. Penn. Law Rev. University of Pennsylvania medical bulletin = Univ Pa Med Bull University of Pittsburgh law review. University of Pittsburgh. School of Law = Univ Pittsbg Law Rev University of Pittsburgh Law Review = U Pitt Law Rev University of Pittsburgh Law Review = U. Pitt. Law Rev. University of Puget Sound law review. University of Puget Sound. School of Law = Univ Puget Sound Law Rev University of Queensland Papers Social Sciences = U Queensl Pap Soc Sc University of Queensland Papers Social Sciences = U. Queensl. Pap. Soc. Sc. University of Regina Publications = Univ Regin Publicat University of Regina Publications = Univ. Regin. Publicat. University of Richmond law review. University of Richmond = Univ Richmond Law Rev University of San Fernando Valley law review = Univ San Fernando Valley Law Review University of San Francisco law review. University of San Francisco. School of Law = Univ San Francisco Law Rev University of Sydney East Asia Series = U Syd E Asia Ser University of Sydney East Asia Series = U. Syd. E. Asia Ser. University of Tasmania law review = Univ Tasman Law Rev University of Texas At Austin Studies in Foreign and Transnational Law = U Tex Aust Stud Fore University of Texas At Austin Studies in Foreign and Transnational Law = U. Tex. Aust. Stud. Fore. University of the Ryukyus = Bull. College Sci. Univ. Ryukyus University of Toledo law review. University of Toledo. College of Law = Univ Toledo Law Rev University of Toledo Law Review = U Toledo Law Rev University of Toledo Law Review = U. Toledo Law Rev. University of Toronto dental journal = Univ Tor Dent J University of Toronto Dental Journal = Univ. Tor. Dent. J. University of Toronto Faculty of Law review = Univ Tor Fac Law Rev University of Toronto Law Journal = U Toronto Law J University of Toronto Law Journal = U. Toronto Law J. University of Toronto medical journal = Univ Toronto Med J University of Toronto Quarterly = U Toronto Quart University of Toronto Quarterly = U. Toronto Quart. University of Toronto undergraduate dental journal = Univ Toronto Undergrad Dent J University of Toronto Undergraduate Dental Journal = Univ. Toronto Undergrad. Dent. J. University of Washington Business Review=Univ. Wash. Bus. Rev. University of Western Ontario law review = Univ West Ont Law Rev University of Western Ontario Series in Philosophy of Science = Univ. Western Ontario Ser. Philos. Sci. University of Western Ontario Series in Philosophy of Science = U W Ont Phi University of Western Ontario Series in Philosophy of Science = U. W. Ont. Phi. University of West Los Angeles law review = Univ West Los Angel Law Rev University of Wyoming publications (Laramie, Wyo. : 1935) = Univ Wyo Publ University Politehnica of Bucharest Scientific Bulletin-series A-applied Mathematics and Physics = U Politeh Buch Ser A University Politehnica of Bucharest Scientific Bulletin-series A-applied Mathematics and Physics = U. Politeh. Buch. Ser. A. University & Urban Revival: Out of The Ivory Tower and Into The Streets = City 21st Century University & Urban Revival: Out of The Ivory Tower and Into The Streets = City. 21st. Century. Univerzitet u Beogradu = Univ. Beograd. Publ. Elektrotehn. Fak. Ser. Mat. Univerzitet u Kragujevcu = Zb. Rad. (Kragujevac) Univerzitet u Nišu = Filomat Uniwersytet im = Funct. Approx. Comment. Math. Unix Reviews Performance Computing = Unix Rev-perform Com Unix Reviews Performance Computing = Unix Rev-perform. Com. Unknown Technology in Homer = Hist Mech Mach Sci Unknown Technology in Homer = Hist. Mech. Mach. Sci. Unlicensed Mobile Assess Technology: Protocols, Architectures, Security, Standards and Applications = Wirel Netw Mob Commu Unlicensed Mobile Assess Technology: Protocols, Architectures, Security, Standards and Applications = Wirel. Netw. Mob. Commu. Unmanned Aircraft Systems: Strengths and Weaknesses = Def Secur Strateg Unmanned Aircraft Systems: Strengths and Weaknesses = Def. Secur. Strateg. Unmanned Ground Vehicle Technology Iii = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology Iii = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology Ii = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology Ii = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology Iv = Proc Spie Unmanned Ground Vehicle Technology Iv = Proc. Spie. Unmanned Ground Vehicle Technology Iv = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology Iv = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology = Proc Spie Unmanned Ground Vehicle Technology = Proc. Spie. Unmanned Ground Vehicle Technology = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology Vii = Proc Spie Unmanned Ground Vehicle Technology Vii = Proc. Spie. Unmanned Ground Vehicle Technology Vii = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology Vii = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology Vi = Proc Spie Unmanned Ground Vehicle Technology Vi = Proc. Spie. Unmanned Ground Vehicle Technology Vi = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology Vi = P. Soc. Photo-opt. Ins. Unmanned Ground Vehicle Technology V = Proc Spie Unmanned Ground Vehicle Technology V = Proc. Spie. Unmanned Ground Vehicle Technology V = P Soc Photo-opt Ins Unmanned Ground Vehicle Technology V = P. Soc. Photo-opt. Ins. Unmanned Rotorcraft Systems = Adv Ind Control Unmanned Rotorcraft Systems = Adv. Ind. Control. Unmanned Systems Technology Ix = Proc Spie Unmanned Systems Technology Ix = Proc. Spie. Unmanned Systems Technology Ix = P Soc Photo-opt Ins Unmanned Systems Technology Ix = P. Soc. Photo-opt. Ins. Unmanned Systems Technology Viii, Pts 1 and 2 = Proc Spie Unmanned Systems Technology Viii, Pts 1 and 2 = Proc. Spie. Unmanned Systems Technology Viii, Pts 1 and 2 = P Soc Photo-opt Ins Unmanned Systems Technology Viii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Unmanned Systems Technology Xii = Proc Spie Unmanned Systems Technology Xii = Proc. Spie. Unmanned Systems Technology Xii = P Soc Photo-opt Ins Unmanned Systems Technology Xii = P. Soc. Photo-opt. Ins. Unmanned Systems Technology Xi = Proc Spie Unmanned Systems Technology Xi = Proc. Spie. Unmanned Systems Technology X = Proc Spie Unmanned Systems Technology X = Proc. Spie. Unmanned Systems Technology X = P Soc Photo-opt Ins Unmanned Systems Technology X = P. Soc. Photo-opt. Ins. Unmanned/unattended Sensors and Sensor Networks = Bba Lib Unmanned/unattended Sensors and Sensor Networks = Bba. Lib. Unmanned/unattended Sensors and Sensor Networks Iii = Proc Spie Unmanned/unattended Sensors and Sensor Networks Iii = Proc. Spie. Unmanned/unattended Sensors and Sensor Networks Iii = P Soc Photo-opt Ins Unmanned/unattended Sensors and Sensor Networks Iii = P. Soc. Photo-opt. Ins. Unmanned/unattended Sensors and Sensor Networks Iv = P Soc Photo-opt Ins Unmanned/unattended Sensors and Sensor Networks Iv = P. Soc. Photo-opt. Ins. Unmanned-unattended Sensors and Sensor Networks Vii = P Soc Photo-opt Ins Unmanned-unattended Sensors and Sensor Networks Vii = P. Soc. Photo-opt. Ins. Un-masking Bruno Schulz: New Combinations, Further Fragmentations, Ultimate Reintegrations = Stud Slav Lit Poet Un-masking Bruno Schulz: New Combinations, Further Fragmentations, Ultimate Reintegrations = Stud. Slav. Lit. Poet. UN monthly chronicle = UN Mon Chron UNOS update = UNOS Update Unpacking Pedagogy: New Perspectives for Mathematics Classrooms = Int Perspect Math Ed Unpacking Pedagogy: New Perspectives for Mathematics Classrooms = Int. Perspect. Math. Ed. Unquiet Nisei: An Oral History of The Life of Sue Kunitomi Embrey = Palgr Stud Oral Hist Unquiet Nisei: An Oral History of The Life of Sue Kunitomi Embrey = Palgr. Stud. Oral Hist. Unravelling Single Cell Genomics: Micro and Nanotools = Rsc Nanosci Nanotech Unravelling Single Cell Genomics: Micro and Nanotools = Rsc. Nanosci. Nanotech. Unsaturated Flow in Hydrologic Modeling = Nato Adv Sci I C-mat Unsaturated Flow in Hydrologic Modeling = Nato. Adv. Sci. I. C-mat. Unsaturated Soil Engineering Practice = Geotech Sp Unsaturated Soil Engineering Practice = Geotech. Sp. Unsaturated Soils: Experimental Studies = Springer Proc Phys Unsaturated Soils: Experimental Studies = Springer. Proc. Phys. Unsaturated Soils: Numerical and Theoretical Approaches = Springer Proc Phys Unsaturated Soils: Numerical and Theoretical Approaches = Springer. Proc. Phys. Unsaturated-zone Modeling: Progress, Challenges and Applications = Wag Ur Fron Unsaturated-zone Modeling: Progress, Challenges and Applications = Wag. Ur. Fron. Un Security Council and The Politics of International Authority = Secur Gov Un Security Council and The Politics of International Authority = Secur. Gov. Un Security Council: Practice & Promise = Glob Inst Un Security Council: Practice & Promise = Glob. Inst. Unsere Heimat = Unsere Heim Unser Wald = Unser Wald Unsettled Account: The Evolution of Banking in The Industrialized World Since 1800 = Princ Econ Hist W Wo Unsettled Account: The Evolution of Banking in The Industrialized World Since 1800 = Princ. Econ. Hist. W. Wo. Unsettling Beliefs: Teaching Theory to Teachers = Int Soc Stud Forum S Unsettling Beliefs: Teaching Theory to Teachers = Int. Soc. Stud. Forum. S. Unsettling Sensation = Rs Pub Life Arts Unsettling Sensation = Rs. Pub. Life. Arts. Unsettling Space-contestations in Contemporary Australian Theatre = Stud Int Perform Unsettling Space-contestations in Contemporary Australian Theatre = Stud. Int. Perform. Unsicheres Wissen: Skeptizismus Und Wahrscheinlichkeit 1550-1850 = Hist Hermen Ser Stud Unsicheres Wissen: Skeptizismus Und Wahrscheinlichkeit 1550-1850 = Hist. Hermen. Ser. Stud. Unsolved Problems in Intuitive Mathematics = Unsolved Probl. in Intuitive Math. Unsolved Problems in Stellar Physics = Aip Conf Proc Unsolved Problems in Stellar Physics = Aip. Conf. Proc. Unsolved Problems of Noise and Fluctuations = Aip Conf Proc Unsolved Problems of Noise and Fluctuations = Aip. Conf. Proc. Unsolved Problems of The Milky Way = Iau Symp Unsolved Problems of The Milky Way = Iau. Symp. Unsteady Effects of Shock Wave Induced Separation = Notes Numer Fluid Me Unsteady Effects of Shock Wave Induced Separation = Notes. Numer. Fluid. Me. Unternehmung-schweizerische Zeitschrift Fur Betriebswirtschaft = Unternehmung Unternehmung-schweizerische Zeitschrift Fur Betriebswirtschaft = Unternehmung. Unterrichtskommunikation: Linguistische Analysemethoden Und Forschungsergebnisse, 2., Bearbeitete Und Aktualisierte Auflage = Ger Arbeitsheft Unterrichtskommunikation: Linguistische Analysemethoden Und Forschungsergebnisse, 2., Bearbeitete Und Aktualisierte Auflage = Ger. Arbeitsheft. Untersuchungen Zum Wortschatz in Thomas Muntzers Deutschen Schriften = Quell Fors Lit Kul G Untersuchungen Zum Wortschatz in Thomas Muntzers Deutschen Schriften = Quell. Fors. Lit. Kul. G. Untersuchungen Zur Antiken Literatur Und Geschichte = Unters Antiken Lit G Untersuchungen Zur Antiken Literatur Und Geschichte = Unters. Antiken Lit. G. Untersuchungen Zur Deutschen Literaturgeschichte = Unters Deut Lit Untersuchungen Zur Deutschen Literaturgeschichte = Unters. Deut. Lit. Untersuchungen Zur Gestaltung Und Zum Historischen Stoff Der Johannis Coripps = Unters Antiken Lit G Untersuchungen Zur Gestaltung Und Zum Historischen Stoff Der Johannis Coripps = Unters. Antiken. Lit. G. Untersuchungen Zur Hippokratischen Schrift Uber Die Alte Heilkunst = Beitr Altertumskunde Untersuchungen Zur Hippokratischen Schrift Uber Die Alte Heilkunst = Beitr. Altertumskunde. Untersuchungen Zur Temporalen Umfunktionierung Des Konjunktivs Ii Im Heutigen Deutsch = Linguist Arb Untersuchungen Zur Temporalen Umfunktionierung Des Konjunktivs Ii Im Heutigen Deutsch = Linguist. Arb. Untertoggenburger Neujahrsblätter = Untertoggenburg. Neujahrsbl. Unu/intech Studies in New Technology and Development = Unu Intech Stud New Unu/intech Studies in New Technology and Development = Unu. Intech. Stud. New Unusual Applications of Number Theory = Dimacs Ser Discret M Unusual Applications of Number Theory = Dimacs. Ser. Discret. M. Unveiling Large-scale Structures Behind The Milky Way = Astr Soc P Unveiling Large-scale Structures Behind The Milky Way = Astr. Soc. P. Unveiling The Cosmic Infrared Background = Aip Conf Proc Unveiling The Cosmic Infrared Background = Aip. Conf. Proc. Unveiling The Council of The European Union: Games Governments Play in Brussels = Palgrave Stud Eur Un Unveiling The Council of The European Union: Games Governments Play in Brussels = Palgrave. Stud. Eur. Un. Unveiling The Mystery of The Brain: Neurophysiological Investigation of The Brain Function = Int Congr Ser Unveiling The Mystery of The Brain: Neurophysiological Investigation of The Brain Function = Int. Congr. Ser. Unzuverlassiges Erzahlen Und Literarische Moderne-eine Untersuchung Der Romane Von Ernst Weiss = Stud Deut Lit Unzuverlassiges Erzahlen Und Literarische Moderne-eine Untersuchung Der Romane Von Ernst Weiss = Stud. Deut. Lit. Up2010: Have Observations Revealed A Variable Upper End of The Initial Mass Function = Astr Soc P Up2010: Have Observations Revealed A Variable Upper End of The Initial Mass Function = Astr. Soc. P. Update: Clinical Immunology = Updat Clin Immunol Update: Clinical Immunology = Updat. Clin. Immunol. ## updated by: Corentin Barbu (https://sourceforge.net/p/jabref/patches/90/) Update in Intensive Care and Emergency Medicine = Upd Int Car Update in Intensive Care and Emergency Medicine = Upd. Int. Car. Update in pediatric dentistry = Update Pediatr Dent Update in Pediatric Dentistry = Update Pediatr. Dent. Update (Loma Linda University. Ethics Center) = Update Update (National Minority AIDS Council) = Update Natl Minor AIDS Counc Update on cancer therapeutics = Update Cancer Ther Update on Ethics = Update Ethics Update On Ethics = Update Ethics Update On Hepatobiliary Diseases 1996 = Falk Symp Update On Hepatobiliary Diseases 1996 = Falk. Symp. Updates in Advances in Lung Cancer = Prog R Res Updates in Advances in Lung Cancer = Prog. R. Res. Updates in Cochlear Implantation = Adv Oto-rhino-laryng Updates in Cochlear Implantation = Adv. Oto-rhino-laryng. Updates in Diagnostic Pathology = Adv Exp Med Biol Updates in Diagnostic Pathology = Adv. Exp. Med. Biol. Updates in Surgery = Updates Surg Updates in Surgery = Updates Surg. Upper Atmosphere Models and Research = Adv Space E Upper Atmosphere Models and Research = Adv. Space. E. Upper Layer Protocols, Architectures and Applications = Ifip Trans C Upper Layer Protocols, Architectures and Applications = Ifip. Trans. C. Upper Mantle Heterogeneities From Active and Passive Seismology = Nato Sci S 1 Disarm Upper Mantle Heterogeneities From Active and Passive Seismology = Nato. Sci. S. 1. Disarm. Upper Pleistocene Prehistory of Western Eurasia = U Mus Symp Upper Pleistocene Prehistory of Western Eurasia = U. Mus. Symp. Uppsala Studies in History of Science = Upps Hist Sci Uppsala Studies in History of Science = Upps. Hist. Sci. Uppsala Studies in History of Science = Upps Stud Hist Sci Uppsala Studies in History of Science = Upps. Stud. Hist. Sci. Upsala journal of medical sciences. Supplement = Ups J Med Sci Suppl Upsala Journal of Medical Sciences. Supplement=Ups J Med Sci Suppl;; Upsala Journal of Medical Sciences. Supplement = Ups. J. Med. Sci. Suppl. Upsala Journal of Medical Sciences = Upsala J Med Sci Upsala Journal of Medical Sciences = Upsala J. Med. Sci. Upsala journal of medical sciences = Ups J Med Sci Upsala Journal of Medical Sciences=Ups J Med Sci;; Upsala Journal of Medical Sciences = Ups. J. Med. Sci. Upsala lakareforenings forhandlingar = Upsala Lakareforen Forh Up South: Civil Rights and Black Power in Philadelphia = Polit Cult Mod Am Up South: Civil Rights and Black Power in Philadelphia = Polit. Cult. Mod. Am. Upwelling in The Ocean = Dahl Ws Env Upwelling in The Ocean = Dahl. Ws. Env. Ural\cprime skiy Gosudarstvennyy Universitet im = Ural. Gos. Univ. Mat. Zap. Uranium and Nuclear Energy : 1989 = Uran Nucl E Uranium and Nuclear Energy : 1989 = Uran. Nucl. E. Uranium and Nuclear Energy : 1991 = Uran Nucl E Uranium and Nuclear Energy : 1991 = Uran. Nucl. E. Uranium and Nuclear Energy : 1992 = Uran Nucl E Uranium and Nuclear Energy : 1992 = Uran. Nucl. E. Uranium and Nuclear Energy: 1994 = Uran Nucl E Uranium and Nuclear Energy: 1994 = Uran. Nucl. E. Uranium and Nuclear Energy: 1995 = Uran Nucl E Uranium and Nuclear Energy: 1995 = Uran. Nucl. E. Uranium and Nuclear Energy = Uran Nucl E Uranium and Nuclear Energy = Uran. Nucl. E. Uranium-series Geochemistry = Rev Mineral Geochem Uranium-series Geochemistry = Rev. Mineral. Geochem. Uranium = Uranium Urbana (Caracas, Venezuela) = Urbana Urban Affairs Annual Reviews = Urban Aff A Urban Affairs Annual Reviews = Urban Aff. A. Urban Affairs Quarterly = Urban Affairs Q Urban Affairs Quarterly = Urban Affairs Q. Urban affairs quarterly = Urban Aff Q Urban affairs review (Thousand Oaks, Calif.) = Urban Aff Rev Thousand Oaks Calif Urban Affairs Review = Urban Aff Rev Urban Affairs Review = Urban Aff. Rev. Urban Agglomeration and Economic Growth = Pub Egon Sohmen Fdn Urban Agglomeration and Economic Growth = Pub. Egon. Sohmen. Fdn. Urban Airborne Particulate Matter: Origin, Chemistry, Fate and Health Impacts = Environ Sci Eng Urban Airborne Particulate Matter: Origin, Chemistry, Fate and Health Impacts = Environ. Sci. Eng. Urban Air Pollution = Nato Asi 2 Urban Air Pollution = Nato. Asi. 2. Urban and Community Fisheries Programms: Development, Management, and Evaluation = Am Fish S S Urban and Community Fisheries Programms: Development, Management, and Evaluation = Am. Fish. S. S. Urban and Industrial Environments = Urban Ind Environ Urban and Industrial Environments = Urban Ind. Environ. Urban and Landscape Perspectives = Urban Land Perspect Urban and Landscape Perspectives = Urban Land. Perspect. Urban and Regional Data Management = Proc Monogr Eng Wate Urban and Regional Data Management = Proc. Monogr. Eng. Wate. Urban and Regional Research International = Urban Reg Res Int Urban and Regional Research International = Urban Reg. Res. Int. Urban and Regional Transportation Modeling: Essays in Honor of David Boyce = New Dimens Netw Urban and Regional Transportation Modeling: Essays in Honor of David Boyce = New. Dimens. Netw. Urban Animal Management Series = Urban Anim Manag Ser Urban Animal Management Series = Urban Anim. Manag. Ser. Urban Animal Management = Urban Anim Manag Ser Urban Animal Management = Urban Anim. Manag. Ser. Urban Anthropology = Urban Anthrop Urban Anthropology = Urban Anthrop. Urban anthropology = Urban anthropol Urban Biosphere and Society: Partnership of Cities = Ann Ny Acad Sci Urban Biosphere and Society: Partnership of Cities = Ann. Ny. Acad. Sci. Urban Change in The United States and Western Europe = Urban Oppor Urban Change in The United States and Western Europe = Urban Oppor. Urban Coastal Area Management : The Experience of Singapore = Iclarm Conf Urban Coastal Area Management : The Experience of Singapore = Iclarm. Conf. Urban Complexity and Spatial Strategies: Towards A Relational Planning for Our Times = Rtpi Lib Ser Urban Complexity and Spatial Strategies: Towards A Relational Planning for Our Times = Rtpi. Lib. Ser. Urban Design International = Urban Des Int Urban Design International = Urban Des. Int. Urban Discharges and Receiving Water Quality Impacts = Adv Wat Pol Urban Discharges and Receiving Water Quality Impacts = Adv. Wat. Pol. Urban Ecology and Health in The Third World = Sym S Stud Urban Ecology and Health in The Third World = Sym. S. Stud. Urban Ecology = Urban Ecol Urban Ecology = Urban Ecol. Urban Ecosystems = Urban Ecosyst Urban Ecosystems = Urban Ecosyst. Urban Education = Urban Educ Urban Education = Urban Educ. Urban Environmental Management and Technology = Csur Ut Ser Lib Sust Urban Environmental Management and Technology = Csur. Ut. Ser. Lib. Sust. Urban Fears and Global Terrors: Citizenship, Multicultures and Belongings After 7/7 = Int Libr Sociol Urban Fears and Global Terrors: Citizenship, Multicultures and Belongings After 7/7 = Int. Libr. Sociol. Urban Forestry & Urban Greening = Urban For Urban Gree Urban Forestry & Urban Greening = Urban For. Urban Gree. Urban Geography = Routl Contemp Hum Ge Urban Geography = Routl. Contemp. Hum. Ge. Urban geography = Urban Geogr Urban Geography = Urban Geogr Urban Geography = Urban Geogr. Urban Groundwater Management and Sustainability = Nato Sci S Ss Iv Ear Urban Groundwater Management and Sustainability = Nato. Sci. S. Ss. Iv. Ear. Urban Growth Machine = Suny S Urb Urban Growth Machine = Suny. S. Urb. Urban health = Urban Health Urban Health = Urban Health Urban history review. Revue d'histoire urbaine = Urban Hist Rev Urban History Review-revue D Histoire Urbaine = Urban Hist Rev Urban History Review-revue D Histoire Urbaine = Urban Hist. Rev. Urban History = Urban Hist Urban History = Urban Hist. Urban history yearbook = Urban Hist Yearb Urban Imperative: Urban Outreach Strategies for Protected Area Agencies = Cipa Publ Urban Imperative: Urban Outreach Strategies for Protected Area Agencies = Cipa. Publ. Urban Interest = Urban Interest Urbanisation and health newsletter = Urban Health Newsl Urbanisation in Developing Countries = Iss Urb Stud Ser Urbanisation in Developing Countries = Iss. Urb. Stud. Ser. Urbanisation Process in Cameroon: Patterns, Implications and Prospects = Afr Polit Econ Secur Urbanisation Process in Cameroon: Patterns, Implications and Prospects = Afr. Polit. Econ. Secur. Urbanism On Track: Application of Tracking Technologies in Urbanism = Res Urban Ser Urbanism On Track: Application of Tracking Technologies in Urbanism = Res. Urban. Ser. Urbanization and Land Ownership in The Ancient Near East = Pea Mus Bull Urbanization and Land Ownership in The Ancient Near East = Pea. Mus. Bull. Urban Land Institute Landmark Report = Urban Land I Ldm Re Urban Land Institute Landmark Report = Urban Land I. Ldm. Re. Urban Land Institute Research Reports = Urban Land I Res Rep Urban Land Institute Research Reports = Urban Land I. Res. Rep. Urban Land Institute Special Report = Urban Land I Spec Re Urban Land Institute Special Report = Urban Land I. Spec. Re. Urban Landscape Perspectives = Urban Land Perspect Urban Landscape Perspectives = Urban Land. Perspect. Urban Law and Policy = Urban Law Policy Urban Lawyer = Urban Lawyer Urban League Review = Urban League Rev Urban League Review = Urban League Rev. Urban Life and Culture = Urban Life Cult Urban Life and Culture = Urban Life Cult. Urban Life = Urban Life Urban Markets and Milk Development in Subsaharan Africa = Cirad Colloques Urban Markets and Milk Development in Subsaharan Africa = Cirad. Colloques. Urban Morphology = Urban Morphol Urban Morphology = Urban Morphol. Urban Mosaic of Post-socialist Europe: Space, Institutions and Policy = Contrib Econ Urban Mosaic of Post-socialist Europe: Space, Institutions and Policy = Contrib. Econ. Urban Opportunity Series = Urban Oppor Urban Opportunity Series = Urban Oppor. Urban Planning and Real Estate Development, Third Edition = Nat Built Environ Se Urban Planning and Real Estate Development, Third Edition = Nat. Built. Environ. Se. Urban Policy and Research = Urban Policy Res Urban Policy and Research = Urban Policy Res. Urban Regeneration Management: International Perspectives = Routl Adv Manag Bus Urban Regeneration Management: International Perspectives = Routl. Adv. Manag. Bus. Urban-rural Interactions:towns As Focus Points in Rural Development = Contrib Econ Urban-rural Interactions:towns As Focus Points in Rural Development = Contrib. Econ. Urban & Social Change Review = Urban Soc Change Rev Urban & Social Change Review = Urban Soc. Change Rev. Urban Space and Cityscapes = Question Cities Urban Space and Cityscapes = Question. Cities. Urban Space in The Middle Ages and The Early Modern Age = Fund Mediev Early Mo Urban Space in The Middle Ages and The Early Modern Age = Fund. Mediev. Early Mo. Urban Structure Matters: Residential Location, Car Dependence and Travel Behaviour = Rtpi Lib Ser Urban Structure Matters: Residential Location, Car Dependence and Travel Behaviour = Rtpi. Lib. Ser. Urban studies (Edinburgh, Scotland) = Urban Stud Urban Studies=Urban Stud. Urban Studies = Urban Stud Urban Studies = Urban Stud. Urban Systems = Urban Systems Urban Transport and The The Environment for The 21st Century Iv = Adv Transport Urban Transport and The The Environment for The 21st Century Iv = Adv. Transport Urban Transport Ix: Urban Transport and The Environment in The 21st Century = Adv Transport Urban Transport Ix: Urban Transport and The Environment in The 21st Century = Adv. Transport Urban Transport Vi = Adv Transport Urban Transport Vi = Adv. Transport Urban Transport Viii = Adv Transport Urban Transport Viii = Adv. Transport Urban Transport Vii: Urban Transport and The Environment in The 21st Century = Adv Transport Urban Transport Vii: Urban Transport and The Environment in The 21st Century = Adv. Transport Urban Transport V: Urban Transport and The Environment for The 21st Century = Adv Transport Urban Transport V: Urban Transport and The Environment for The 21st Century = Adv. Transport Urban Transport X = Adv Transport Urban Transport X = Adv. Transport Urban Transport Xiii = Wit Trans Built Env Urban Transport Xiii = Wit. Trans. Built. Env. Urban Transport Xii: Urban Transport and The Environment in The 21st Century = Wit Trans Built Env Urban Transport Xii: Urban Transport and The Environment in The 21st Century = Wit. Trans. Built. Env. Urban Transport Xiv = Wit Trans Built Env Urban Transport Xiv = Wit. Trans. Built. Env. Urban Transport Xvi = Wit Trans Built Env Urban Transport Xvi = Wit. Trans. Built. Env. Urban Transport Xv = Wit Trans Built Env Urban Transport Xv = Wit. Trans. Built. Env. Urban University and Its Identity = Geoj Lib Urban University and Its Identity = Geoj. Lib. Urban Water Journal = Urban Water J Urban Water Journal = Urban Water J. Urban Water Management: Science Technology and Service Delivery = Nato Sci S Ss Iv Ear Urban Water Management: Science Technology and Service Delivery = Nato. Sci. S. Ss. Iv. Ear. Urbicide: The Politics of Urban Destruction = Routl Adv Int Relat Urbicide: The Politics of Urban Destruction = Routl. Adv. Int. Relat. Urbi = Urbi Uremia investigation = Uremia Invest Uremia Investigation = Uremia Invest Uremia Investigation = Uremia Invest. Urethral Reconstructive Surgery = Curr Clin Urol Urethral Reconstructive Surgery = Curr. Clin. Urol. Urheilupaikkojen Integroidut Lammitys- Ja Jaahdytystekniset Ratkaisut = Vtt Res Notes Urheilupaikkojen Integroidut Lammitys- Ja Jaahdytystekniset Ratkaisut = Vtt. Res. Notes. Urinary Proteome: Methods and Protocols = Methods Mol Biol Urinary Proteome: Methods and Protocols = Methods Mol. Biol. Urinary Stone Disease = Curr Clin Urol Urinary Stone Disease = Curr. Clin. Urol. Urologe A = Urologe A Urologe-ausgabe A = Urologe A Urologe-ausgabe A = Urologe. A Urologe. Ausgabe A=Urologe A;; Urologe. Ausgabe A = Urologe. A Urologe = Urologe Urologia internationalis = Urol Int Urologia Internationalis=Urol Int;; Urologia Internationalis = Urol Int Urologia Internationalis = Urol. Int. Urologia polska = Urol Pol Urologia = Urologia Urological Oncology = Prog Clin Biol Res Urological Oncology = Prog. Clin. Biol. Res. Urological research = Urol Res Urological Research=Urol Res;; Urological Research = Urol Res Urological Research = Urol. Res. Urological survey = Urol Surv Urological Survey = Urol. Surv. Urologic Clinics of North America = Urol Clin N Am Urologic Clinics of North America = Urol. Clin. N. Am. Urologic Clinics of North America=Urol Clin North Am;; Urologic Clinics of North America = Urol. Clin. North Am. Urologic nursing : official journal of the American Urological Association Allied = Urol Nurs Urologic Nursing = Urol. Nurs. Urologic Oncology-seminars and Original Investigations = Urol Oncol-semin O I Urologic Oncology-seminars and Original Investigations = Urol. Oncol-semin. O. I. Urologic Oncology-seminars and Original Investigations = Urol Oncol-semin Ori Urologic Oncology-seminars and Original Investigations = Urol. Oncol-semin. Ori. Urologic oncology = Urol Oncol Urologic Oncology = Urol Oncol Urologic Oncology = Urol. Oncol. Urologic radiology = Urol Radiol Urologic Radiology = Urol Radiol Urologic Radiology = Urol. Radiol. Urologic Robotic Surgery = Curr Clin Urol Urologic Robotic Surgery = Curr. Clin. Urol. Urologiia i nefrologiia = Urol Nefrol (Mosk) Urologiia i Nefrologiia = Urol. Nefrol. (Mosk.) Urologiia I Nefrologiia=Urol Nefrol (Mosk);; Urologiia (Moscow, Russia : 1923) = Urol Mosc Urologiia (Moscow, Russia : 1999) = Urologiia Urologiia = Urologiia Urology journal = Urol J Urology Journal = Urol J Urology Journal = Urol. J. Urology=Urology;; Urology = Urology Uro-oncology : Current Status and Future Trends = Prog Clin Biol Res Uro-oncology : Current Status and Future Trends = Prog. Clin. Biol. Res. UR Reports = UR Rep. UR [reports]. U.S. Atomic Energy Commission = UR Rep Ur-Schweiz. La Suisse primitive = UrSchw Ursi/ieee Xxix Convention On Radio Science = Vtt Symp Ursi/ieee Xxix Convention On Radio Science = Vtt. Symp. Ursus (International Association for Bear Research and Management) = Ursus Ursus (series) = Ursus-series Ursus (series) = Ursus-series. Ursus = Ursus Ursus, Vol 10 - 1998 = Ursus-series Ursus, Vol 10 - 1998 = Ursus-series. Ursus, Vol 12 (2001) = Ursus-series Ursus, Vol 12 (2001) = Ursus-series. Uruguay Round = Uruguay R Uruguay Round = Uruguay R. Usability and Internationalization, Pt 1, Proceedings = Lect Notes Comput Sc Usability and Internationalization, Pt 1, Proceedings = Lect. Notes. Comput. Sc. Usability and Internationalization, Pt 2, Proceedings = Lect Notes Comput Sc Usability and Internationalization, Pt 2, Proceedings = Lect. Notes. Comput. Sc. Usability: Gaining A Competitive Edge = Int Fed Info Proc Usability: Gaining A Competitive Edge = Int. Fed. Info. Proc. Usability of Speech Dialog Systems: Listening to The Target Audience = Signals Commun Techn Usability of Speech Dialog Systems: Listening to The Target Audience = Signals. Commun. Techn. USAF Medical Service digest / United States Air Force = USAF Med Serv Dig Usage of Major Crops in The Non-food Sector = Colloq Inra Usage of Major Crops in The Non-food Sector = Colloq. Inra. USAID developments = USAID Dev USAID highlights = USAID Highlights Us and Cross-national Policies, Practices, and Preparation: Implications for Successful Instructional Leadership, Oranizational Learning, and Culturally Responsive Practices = Stud Educ Leadersh Us and Cross-national Policies, Practices, and Preparation: Implications for Successful Instructional Leadership, Oranizational Learning, and Culturally Responsive Practices = Stud. Educ. Leadersh. Us and Them: Archaeology and Ethnicity in The Andes = Monogr Cotsen Inst A Us and Them: Archaeology and Ethnicity in The Andes = Monogr. Cotsen. Inst. A. Us-asia Economic Relations: A Political Economy of Crisis and The Rise of New Business Actors = Routl City U Hong Ko Us-asia Economic Relations: A Political Economy of Crisis and The Rise of New Business Actors = Routl. City. U. Hong. Ko. Usa Today = Usa Today USA today = USA Today Usa - United States of Asia: An Asian Union Initiative = Asian Polit Econ Sec Usa - United States of Asia: An Asian Union Initiative = Asian Polit. Econ. Sec. USA weekend = USA Weekend U.S. Catholic = US Cathol Us-china Economic Relations = Res Pap Pol Us-china Economic Relations = Res. Pap. Pol. U.s.-china Relations and The Bush Administration: A New Paradigm Or Continuing Modalities = Keck Ctr Int St Stud U.s.-china Relations and The Bush Administration: A New Paradigm Or Continuing Modalities = Keck. Ctr. Int. St. Stud. Us-china Relations: China Policy On Capitol Hill = Routl Contemp China Us-china Relations: China Policy On Capitol Hill = Routl. Contemp. China Us-china Relations in The 21st Century: Power Transition and Peace = Polit Asia Us-china Relations in The 21st Century: Power Transition and Peace = Polit. Asia. U.s. Constitution and The Power to Go to War = Contrib Mil Stud U.s. Constitution and The Power to Go to War = Contrib. Mil. Stud. Us Covert Operations and Cold War Strategy = Stud Intell Us Covert Operations and Cold War Strategy = Stud. Intell. Usda Forest Service Forest Products Laboratory General Technical Report - Series = Usda For Serv For Pr Usda Forest Service Forest Products Laboratory General Technical Report - Series = Usda For. Serv. For. Pr. Usda Forest Service General Technical Report Alaska Region = Usda Alaska Usda Forest Service General Technical Report Intermountain = Usda Interm Usda Forest Service General Technical Report Intermountain = Usda Interm. Usda Forest Service General Technical Report North Central = Usda N Cent Usda Forest Service General Technical Report North Central = Usda N. Cent. Usda Forest Service General Technical Report North Central = Us For Serv T R Nc Usda Forest Service General Technical Report North Central = Us. For. Serv. T. R. Nc. Usda Forest Service General Technical Report Northeastern Forest Experimental Station = Usda Ne Exp Usda Forest Service General Technical Report Northeastern Forest Experimental Station = Usda Ne. Exp. Usda Forest Service General Technical Report Pacific Northwest = Usda Pac Nw Usda Forest Service General Technical Report Pacific Northwest = Usda Pac. Nw. Usda Forest Service General Technical Report Pacific Northwest = Us For Serv T R Pnw Usda Forest Service General Technical Report Pacific Northwest = Us. For. Serv. T. R. Pnw. Usda Forest Service General Technical Report Pacific Southwest = Usda Pac Sw Usda Forest Service General Technical Report Pacific Southwest = Usda Pac. Sw. Usda Forest Service General Technical Report Pacific Southwest = Us For Serv T R Psw Usda Forest Service General Technical Report Pacific Southwest = Us. For. Serv. T. R. Psw. Usda Forest Service General Technical Report Rocky Mountain = Usda Rocky Usda Forest Service General Technical Report Southeastern = Usda Southe Usda Forest Service General Technical Report Southeastern = Usda Southe. Usda Forest Service General Technical Report Southern Forest = Usda So For Usda Forest Service General Technical Report Southern Forest = Usda So. For. Usda Forest Service Intermountain Research Station Research Paper = Usda For Serv Int R Usda Forest Service Intermountain Research Station Research Paper = Usda For. Serv. Int. R. Usda Forest Service North Central Forest Experiment Station Research Paper = Usda For Serv Nc R P Usda Forest Service North Central Forest Experiment Station Research Paper = Usda For. Serv. Nc. R. P. Usda Forest Service Northeastern Forest Experiment Station Research Paper = Usda For Serv Ne Res Usda Forest Service Northeastern Forest Experiment Station Research Paper = Usda For. Serv. Ne. Res. Usda Forest Service Northeastern Research Station General Technical Report = Usda Fs Ne Res St Gt Usda Forest Service Northeastern Research Station General Technical Report = Usda Fs. Ne. Res. St. Gt. Usda Forest Service Northeastern Research Station Research Paper = Usda For Serv Ne Res Usda Forest Service Northeastern Research Station Research Paper = Usda For. Serv. Ne. Res. Usda Forest Service Northern Research Station General Technical Report Gtr Nrs = Usda For Serv N Res Usda Forest Service Northern Research Station General Technical Report Gtr Nrs = Usda For. Serv. N. Res. Usda Forest Service Northern Research Station General Technical Report Gtr-nrs = Usda For Serv Nrs Gt Usda Forest Service Northern Research Station General Technical Report Gtr-nrs = Usda For. Serv. Nrs. Gt. Usda Forest Service Pacific Northwest Research Station Research Paper Pnw-rp = Us For Serv R P Pnw Usda Forest Service Pacific Northwest Research Station Research Paper Pnw-rp = Us. For. Serv. R. P. Pnw. Usda Forest Service Pacific Northwest Research Station Research Paper = Usda For Serv Pnw Re Usda Forest Service Pacific Northwest Research Station Research Paper = Usda For. Serv. Pnw. Re. Usda Forest Service Pacific Southwest Research Station Research Paper = Usda For Serv Psw R Usda Forest Service Pacific Southwest Research Station Research Paper = Usda For. Serv. Psw. R. Usda Forest Service Rocky Mountain Forest and Range Experiment Station Research Paper = Usda For Serv Rm Res Usda Forest Service Rocky Mountain Forest and Range Experiment Station Research Paper = Usda For. Serv. Rm. Res. Usda Forest Service Rocky Mountain Research Station Proceedings = Us For Serv Rmrs-p Usda Forest Service Rocky Mountain Research Station Proceedings = Us. For. Serv. Rmrs-p. Usda Forest Service Rocky Mountain Research Station Research Paper Rmrs = Usda For Serv Rm R S Usda Forest Service Rocky Mountain Research Station Research Paper Rmrs = Usda For. Serv. Rm. R. S. Usda Forest Service Rocky Mountain Research Station Research Paper Rmrs = Us For Serv Rmrs-rp Usda Forest Service Rocky Mountain Research Station Research Paper Rmrs = Us. For. Serv. Rmrs-rp. Usda Forest Service Southeastern Forest Experiment Station Research Paper = Usda For Serv Se Res Usda Forest Service Southeastern Forest Experiment Station Research Paper = Usda For. Serv. Se. Res. Usda Forest Service Southern Forest Experiment Station Research Paper = Usda For Serv So Res Usda Forest Service Southern Forest Experiment Station Research Paper = Usda For. Serv. So. Res. Us Defense Strategy From Vietnam to Operation Iraqi Freedom: Military Innovation and The New American War of War, 1973-2003 = Strateg Hist Us Defense Strategy From Vietnam to Operation Iraqi Freedom: Military Innovation and The New American War of War, 1973-2003 = Strateg. Hist. Us Department Interior, Fish and Wildlife Service : Biological Report = Usdi Fish W Us Department Interior, Fish and Wildlife Service : Biological Report = Usdi. Fish W. Us Department Interior, National Park Service : Transactions and Proceedings = Usdi Tran P Us Department Interior, National Park Service : Transactions and Proceedings = Usdi. Tran. P. U.s Domestic and National Security Agendas: Into The Twenty-first Century = Contrib Mil Stud U.s Domestic and National Security Agendas: Into The Twenty-first Century = Contrib. Mil. Stud. Use and Abuse of Computer Technology in The Social Sciences = Ser Hom Soc Use and Abuse of Computer Technology in The Social Sciences = Ser. Hom. Soc. Use and Approval of Antihypertensive Agents and Surrogate Endpoints for The Approval of Drugs Affecting Antiarrhythmic Heart Failure and Hypolipidemia = Dev Cardiovasc Med Use and Approval of Antihypertensive Agents and Surrogate Endpoints for The Approval of Drugs Affecting Antiarrhythmic Heart Failure and Hypolipidemia = Dev. Cardiovasc. Med. Used Books: Marking Readers in Renaissance England = Mater Texts Used Books: Marking Readers in Renaissance England = Mater. Texts. Useful Knowledge: The American Philosophical Society Millennium Program = Mem A Philo Useful Knowledge: The American Philosophical Society Millennium Program = Mem. A. Philo. Use of Agriculturally Important Genes in Biotechnology = Nato Adv Sci I A-lif Use of Agriculturally Important Genes in Biotechnology = Nato. Adv. Sci. I. A-lif. Use of and Need for Preservation Standards in Architectural Conservation = Am Soc Test Mater Use of and Need for Preservation Standards in Architectural Conservation = Am. Soc. Test. Mater. Use of Biomarkers in Assessing Health and Environmental Impacts of Chemical Pollutants = Nato Adv Sci Inst Se Use of Biomarkers in Assessing Health and Environmental Impacts of Chemical Pollutants = Nato. Adv. Sci. Inst. Se. Use of Chemicals in Oil Spill Response = Am Soc Test Mater Use of Chemicals in Oil Spill Response = Am. Soc. Test. Mater. Use of Cyclodextrin Polymers in Separation of Organic Species = Polym Sci Technol Se Use of Cyclodextrin Polymers in Separation of Organic Species = Polym. Sci. Technol. Se. Use of Databases in Cross-linguistic Studies = Empir Approach Lang Use of Databases in Cross-linguistic Studies = Empir. Approach. Lang. Use of Desmopressin in Surgery = Res Clin Forums Use of Desmopressin in Surgery = Res. Clin. Forums. Use of Economic Valuation in Environmental Policy = Routl Explor Environ Use of Economic Valuation in Environmental Policy = Routl. Explor. Environ. Use of Electrochemical Scanning Tunnel Microscopy (ec-stm) in Corrosion Analysis = Eur Fed Corros Publ Use of Electrochemical Scanning Tunnel Microscopy (ec-stm) in Corrosion Analysis = Eur. Fed. Corros. Publ. Use of Eos for Studies of Atmospheric Physics = P Int Sch Phys Use of Eos for Studies of Atmospheric Physics = P. Int. Sch. Phys. Use of Essential Drugs = Who Tech Rep Ser Use of Essential Drugs = Who. Tech. Rep. Ser. Use of Fire in Forest Restoration = Usda Interm Use of Fire in Forest Restoration = Usda. Interm. Use of Historical Data in Natural Hazard Assessments = Adv Nat Tech Haz Res Use of Historical Data in Natural Hazard Assessments = Adv. Nat. Tech. Haz. Res. Use of Historical Data in Natural Hazard Assessments = Adv Nat Technol Haz Use of Historical Data in Natural Hazard Assessments = Adv. Nat. Technol. Haz. Use of Humic Substances to Remediate Polluted Environments: From Theory to Practice = Nato Sci S Ss Iv Ear Use of Humic Substances to Remediate Polluted Environments: From Theory to Practice = Nato. Sci. S. Ss. Iv. Ear. Use of Hydro-ecological Models in The Netherlands = Comm Hydrol Use of Hydro-ecological Models in The Netherlands = Comm. Hydrol. Use of Hydrogeochemical Information in Testing Groundwater Flow Models = Radioact W Use of Hydrogeochemical Information in Testing Groundwater Flow Models = Radioact. W. Use of Irradiation As A Quarantine Treatment of Food and Agricultural Commodities = Iaea Pan P Use of Irradiation As A Quarantine Treatment of Food and Agricultural Commodities = Iaea. Pan. P. Use of Irradiation to Control Infectivity of Food-borne Parasites = Iaea Pan P Use of Irradiation to Control Infectivity of Food-borne Parasites = Iaea. Pan. P. Use of Landscape Sciences for The Assessment of Environmental Security = Nato Sci Peace Secur Use of Landscape Sciences for The Assessment of Environmental Security = Nato. Sci. Peace. Secur. Use of Mechanistic Information in Risk Assessment = Arch Tox S Use of Mechanistic Information in Risk Assessment = Arch. Tox. S. Use of Organosilanes in Biosensors = Biotech Agr Ind Med Use of Organosilanes in Biosensors = Biotech. Agr. Ind. Med. Use of Plant Introductions in Cultivar Development, Pt 1 = Cssa Spec Publ Use of Plant Introductions in Cultivar Development, Pt 1 = Cssa. Spec. Publ. Use of Plant Introductions in Cultivar Development, Pt 2 = Cssa Spec Publ Use of Plant Introductions in Cultivar Development, Pt 2 = Cssa. Spec. Publ. Use of Probablistic Safety Assessment for Operational Safety - Psa 91 = P S Iaea Use of Probablistic Safety Assessment for Operational Safety - Psa 91 = P. S. Iaea. Use of Satellite and In-situ Data to Improve Sustainability = Nato Sci Peace Secur Use of Satellite and In-situ Data to Improve Sustainability = Nato. Sci. Peace. Secur. Use of Science and Technology in Business: Exploring The Impact of Using Activity for Systems, Organizations, and People = Int Bus Manag-ser Use of Science and Technology in Business: Exploring The Impact of Using Activity for Systems, Organizations, and People = Int. Bus. Manag-ser. Use of Short- and Medium-term Tests for Carcinogens and Data On Genetic Effects in Carcinogenic Hazard Evaluation = Iarc Sci Publ Use of Short- and Medium-term Tests for Carcinogens and Data On Genetic Effects in Carcinogenic Hazard Evaluation = Iarc. Sci. Publ. Use of Ultraproducts in Commutative Algebra = Lect Notes Math Use of Ultraproducts in Commutative Algebra = Lect. Notes. Math. Use of Waste Materials in Hot-mix Asphalt = Am Soc Test Mater Use of Waste Materials in Hot-mix Asphalt = Am. Soc. Test. Mater. User Acceptance of Health Telematics Applications = St Heal T User Acceptance of Health Telematics Applications = St. Heal. T. User Acceptance of Health Telematics Applications = Stud Health Technol User Acceptance of Health Telematics Applications = Stud. Health Technol. User-centered Interaction Design Patterns for Interactive Digital Television Applications = Hum-comput Int-sprin User-centered Interaction Design Patterns for Interactive Digital Television Applications = Hum-comput. Int-sprin. User-centered Interaction Paradigms for Universal Access in The Information Soceity = Lect Notes Comput Sc User-centered Interaction Paradigms for Universal Access in The Information Soceity = Lect. Notes. Comput. Sc. User-centric Technologies and Applications = Adv Intel Soft Compu User-centric Technologies and Applications = Adv. Intel. Soft. Compu. User-generated Content and Its Impact On Web-based Library Services = Chandos Inf Prof Ser User-generated Content and Its Impact On Web-based Library Services = Chandos. Inf. Prof. Ser. User Interface Management and Design = Eurograph S User Interface Management and Design = Eurograph. S. User Modeling 2001, Proceedings = Lect Notes Artif Int User Modeling 2001, Proceedings = Lect. Notes. Artif. Int. User Modeling 2003, Proceedings = Lect Notes Artif Int User Modeling 2003, Proceedings = Lect. Notes. Artif. Int. User Modeling 2005, Proceedings = Lect Notes Artif Int User Modeling 2005, Proceedings = Lect. Notes. Artif. Int. User Modeling 2007, Proceedings = Lect Notes Artif Int User Modeling 2007, Proceedings = Lect. Notes. Artif. Int. User Modeling, Adaptation, and Personalization, Proceedings = Lect Notes Comput Sc User Modeling, Adaptation, and Personalization, Proceedings = Lect. Notes. Comput. Sc. User Modeling and User-adapted Interaction = User Model User-adap User Modeling and User-adapted Interaction = User Model. User-adap. User modeling and user-adapted interaction = User Model User-adapt Interact Use R = Use R Uses and Effects of Cultured Fishes in Aquatic Ecosystems = Am Fish S S Uses and Effects of Cultured Fishes in Aquatic Ecosystems = Am. Fish. S. S. Uses of Algae = Oceanis S D Uses of Algae = Oceanis. S. D. Uses of Fluoxetine in Clinical Practice = Roy Soc Med Int Cong Uses of Fluoxetine in Clinical Practice = Roy. Soc. Med. Int. Cong. Uses of History = Lit Pol Th Uses of History = Lit. Pol. Th. Uses of Immobilized Biological Compounds = Nato Adv Sci Inst Se Uses of Immobilized Biological Compounds = Nato. Adv. Sci. Inst. Se. Uses of Linguistics = Ann Ny Acad Sci Uses of Linguistics = Ann. Ny. Acad. Sci. Uses of The Future in Early Modern Europe = Rout Stud Renais Lit Uses of The Future in Early Modern Europe = Rout. Stud. Renais. Lit. Useware 2002 = Vdi Bericht Useware 2002 = Vdi. Bericht. Us Foreign Policy and Iran: American-iranian Relations Since The Islamic Revolution = Contemp Secur Stud Us Foreign Policy and Iran: American-iranian Relations Since The Islamic Revolution = Contemp. Secur. Stud. Us Foreign Policy and The War On Drugs: Displacing The Cocaine and Heroin Industry = Css Stud Sec Int Rel Us Foreign Policy and The War On Drugs: Displacing The Cocaine and Heroin Industry = Css. Stud. Sec. Int. Rel. Us Foreign Policy Since 1945, Second Edition = Making Contemp World Us Foreign Policy Since 1945, Second Edition = Making. Contemp. World. U.S. Geological Survey Bulletin = U.S. Geol. Surv. Bull. U.S. Geological Survey Professional Paper = U.S. Geol. Surv. Prof. Pap. U.S. healthcare = US Healthc U.S. Healthcare = US. Healthc. Us Hypersonic Research and Development: The Rise and Fall of Dyna-soar, 1944-1963 = Space Power Polit Us Hypersonic Research and Development: The Rise and Fall of Dyna-soar, 1944-1963 = Space. Power. Polit. Us-indian Strategic Cooperation Into The 21st Century: More Than Words = Asian Secur Stud Us-indian Strategic Cooperation Into The 21st Century: More Than Words = Asian. Secur. Stud. Using Discrete Choice Experiments to Value Health and Health Care = Econ Non-mark Good Using Discrete Choice Experiments to Value Health and Health Care = Econ. Non-mark. Good. Using Dynamic General Equilibrium Models for Policy Analysis = Contrib To Econ Anal Using Dynamic General Equilibrium Models for Policy Analysis = Contrib. To. Econ. Anal. Using Experimental Methods in Environmental and Resource Economics = New Horiz Environ Ec Using Experimental Methods in Environmental and Resource Economics = New. Horiz. Environ. Ec. Using Eye Movements As An Experimental Probe of Brain Function - A Symposium in Honor of Jean Buttner-ennever = Prog Brain Res Using Eye Movements As An Experimental Probe of Brain Function - A Symposium in Honor of Jean Buttner-ennever = Prog. Brain Res. Using Natural Gas in Engines = Imeche Sem Using Natural Gas in Engines = Imeche. Sem. Using Powder Metallurgy in Design = Imeche Sem Using Powder Metallurgy in Design = Imeche. Sem. Using Robots in Hazardous Environments: Landmine Detection, De-mining and Other Applications = Woodhead Publ Mech E Using Robots in Hazardous Environments: Landmine Detection, De-mining and Other Applications = Woodhead. Publ. Mech. E. Using Simulations for Education, Training and Research = Work Res Multidiscip Using Simulations for Education, Training and Research = Work. Res. Multidiscip. Using Survey Data to Study Disability: Results From The National Health Survey On Disability = Res Soc Sci Disabil Using Survey Data to Study Disability: Results From The National Health Survey On Disability = Res. Soc. Sci. Disabil. Using Video in Teacher Education = Adv Res Teach Using Video in Teacher Education = Adv. Res. Teach. Using Wood Composites As A Tool for Sustainable Forestry = Usda For Serv For Pr Using Wood Composites As A Tool for Sustainable Forestry = Usda. For. Serv. For. Pr. U.s. Intellectual Property Law and Policy = Queen Mary Stud Inte U.s. Intellectual Property Law and Policy = Queen. Mary. Stud. Inte. Us Internal Security Assistance to South Vietnam = Cold War Hist-routl Us Internal Security Assistance to South Vietnam = Cold. War. Hist-routl. U.s. / Japan Workshop On Ion Temperature Gradient-driven Turbulent Transport = Aip Conf Proc U.s. / Japan Workshop On Ion Temperature Gradient-driven Turbulent Transport = Aip. Conf. Proc. U.S. long-term review = US Long Term Rev U.s. Marine Shrimp Farming Program: The Gulf Coast Research Laboratory Consortium, 10th Anniversary Review = Gulf Coast Res Lab S U.s. Marine Shrimp Farming Program: The Gulf Coast Research Laboratory Consortium, 10th Anniversary Review = Gulf Coast Res. Lab. S. U. S. medicine = US Med U.S. Medicine = US. Med. Us Military Innovation Since The Cold War = Strateg Hist Us Military Innovation Since The Cold War = Strateg. Hist. Us Military Profession Into The 21st Century: War, Peace and Politics, Second Edition = Cass Mil Stud Us Military Profession Into The 21st Century: War, Peace and Politics, Second Edition = Cass. Mil. Stud. Us Mine Ventilation Symposia = Us Mine Ven Us Mine Ventilation Symposia = Us Mine Ven. Us National Security, Intelligence and Democracy = Stud Intell Us National Security, Intelligence and Democracy = Stud. Intell. Us Navy Medicine = Us Navy Med Us Navy Medicine = Us Navy Med. U. S. Navy medicine = US Navy Med U.S. Navy Medicine = US Navy Med. US News and World Report = US News World Rep. U.S. news & world report = US News World Rep Us Nuclear Weapons Policy After The Cold War = Rout Glob Secur Stud Us Nuclear Weapons Policy After The Cold War = Rout. Glob. Secur. Stud. Uspekhi biologicheskoi khimii = Usp Biol Khim Uspekhi Fizicheskikh Nauk = Usp Fiz Nauk+ Uspekhi Fizicheskikh Nauk = Usp. Fiz. Nauk+.+ Uspekhi fiziologicheskikh nauk = Usp Fiziol Nauk Uspekhi Fiziologicheskikh Nauk=Usp Fiziol Nauk;; Uspekhi Fiziologicheskikh Nauk = Usp. Fiziol. Nauk Uspekhi khimii = Usp Khim Uspekhi Khimii = Usp Khim+ Uspekhi Khimii = Usp. Khim. Uspekhi Khimii = Usp. Khim+.+ Uspekhi sovremennoi biologii = Usp Sovrem Biol Uspekhi Sovremennoi Biologii = Usp. Sovrem. Biol. U. S. pharmacist = US Pharm Us - Post-soviet Dialogues = Us Post Sov Us - Post-soviet Dialogues = Us Post. Sov. U.s. Scienfific and Technical Workforce: Impriving Data for Decisionmaking = Rand Conf Proc U.s. Scienfific and Technical Workforce: Impriving Data for Decisionmaking = Rand. Conf. Proc. U.s. Social Welfare Reform: Policy Transitions From 1981 to The Present = Int Ser Consum Sci U.s. Social Welfare Reform: Policy Transitions From 1981 to The Present = Int. Ser. Consum. Sci. Us Spacesuits = Springer-prax Books Us Spacesuits = Springer-prax. Books. Us Special Forces and Counterinsurgency in Vietnam: Military Innovation and Institutional Failure, 1961-63 = Strateg Hist Us Special Forces and Counterinsurgency in Vietnam: Military Innovation and Institutional Failure, 1961-63 = Strateg. Hist. Ussr Computational Mathematics and Mathematical Physics = Ussr Comp Math Math+ Ussr Computational Mathematics and Mathematical Physics = Ussr Comp. Math. Math+.+ Ussr-csfr Joint Seminar On Nonlinear Optics in Control, Diagnostics, and Modeling of Biophysical Processes = P Soc Photo-opt Ins Ussr-csfr Joint Seminar On Nonlinear Optics in Control, Diagnostics, and Modeling of Biophysical Processes = P. Soc. Photo-opt. Ins. Us Taiwan Policy: Constructing The Triangle = Asian Secur Stud Us Taiwan Policy: Constructing The Triangle = Asian. Secur. Stud. Us Textile Production in Historical Perspective: A Case Study From Massachusetts = Stud Am Popul Hist C Us Textile Production in Historical Perspective: A Case Study From Massachusetts = Stud. Am. Popul. Hist. C. Us-thailand Relations in A New International Era = Res Pap Pol Us-thailand Relations in A New International Era = Res. Pap. Pol. U.s. Trade With Developing Countries: Policy, Programs and Trends = Monet Fisc Trade Pol U.s. Trade With Developing Countries: Policy, Programs and Trends = Monet. Fisc. Trade Pol. Utafiti = Utafiti Utah Agricultural Experiment Station Research Bulletin = Utah Aes Res Bull Utah Agricultural Experiment Station Research Bulletin = Utah Aes. Res. Bull. Utah Agricultural Experiment Station Research Report = Utah Aes Res Rep Utah Agricultural Experiment Station Research Report = Utah Aes. Res. Rep. Utah code annotated 1953. Utah = Utah Code Annot 1953 Utah Utah historical quarterly = Utah Hist Q Utah law review = Utah Law Rev Utah nurse = Utah Nurse Utah Nurse = Utah Nurse Utah science = Utah Sci Utah Science = Utah Sci Utah Science = Utah Sci. Uterine and Embryonic Factors in Early Pregnancy = Reprod Biol Uterine and Embryonic Factors in Early Pregnancy = Reprod. Biol. Uterine Cancer: Screening, Diagnosis, and Treatment = Curr Clin Oncol Uterine Cancer: Screening, Diagnosis, and Treatment = Curr. Clin. Oncol. Uterine Fibroids : Time for Review = Adv Rep End Uterine Fibroids : Time for Review = Adv. Rep. End. Uteroglobin/clara Cell Protein Family = Ann Ny Acad Sci Uteroglobin/clara Cell Protein Family = Ann. Ny. Acad. Sci. Uterus and Human Reproduction = Ann Ny Acad Sci Uterus and Human Reproduction = Ann. Ny. Acad. Sci. Uterus: Endometrium and Myometrium = Ann Ny Acad Sci Uterus: Endometrium and Myometrium = Ann. Ny. Acad. Sci. U. Thieme – F. Becker (Hrsg.), Allgemeines Lexikon der bildenden Künstler = Thieme-Becker Utilisation and Development of Solar and Wind Resources = Energ Sci Eng Tech Utilisation and Development of Solar and Wind Resources = Energ. Sci. Eng. Tech. Utilitas Mathematica = Utilitas Math. Utilitas Mathematica = Utilitas Mathematica Utilitas Mathematica = Util. Math. Utilitas = Utilitas Utilities and Geothermal: An Emerging Partnership = Geoth Res T Utilities and Geothermal: An Emerging Partnership = Geoth. Res. T. Utilities Policy = Util Policy Utilities Policy = Util. Policy Utility Computing = Lect Notes Comput Sc Utility Computing = Lect. Notes. Comput. Sc. Utility Vehicles = Vdi Bericht Utility Vehicles = Vdi. Bericht. Utilization of Bioremediation to Reduce Soil Contamination: Problems and Solutions = Nato Sci S Ss Iv Ear Utilization of Bioremediation to Reduce Soil Contamination: Problems and Solutions = Nato. Sci. S. Ss. Iv. Ear. Utilization of Greenhouse Gases = Acs Sym Ser Utilization of Greenhouse Gases = Acs. Sym. Ser. Utilization of Lignocellulosic Materials = Macromol Sy Utilization of Lignocellulosic Materials = Macromol. Sy. Utilizing Problem Structure in Planning: A Local Search Approach = Lect Notes Artif Int Utilizing Problem Structure in Planning: A Local Search Approach = Lect. Notes. Artif. Int. Utilizing Technology Transfer to Develop Small and Medium Enterprises = Nato Asi S 4 Sci Tec Utilizing Technology Transfer to Develop Small and Medium Enterprises = Nato. Asi. S. 4. Sci. Tec. Utopia Antiqua: Readings of The Golden Age and Decline At Rome = Routl Monogr Class S Utopia Antiqua: Readings of The Golden Age and Decline At Rome = Routl. Monogr. Class. S. Utopian Fantastic = Contr Sci F Utopian Fantastic = Contr. Sci. F. Utopian Generations: The Political Horizon of Twentieth-century Literature = Transl Transnat Utopian Generations: The Political Horizon of Twentieth-century Literature = Transl. Transnat. Utopian studies = Utop Stud Utsunomiya University = Bull. Fac. Ed. Utsunomiya Univ. Sect. 2 Uttarkashi Earthquake (20 October 1991) = Geol Soc Ind Mem Uttarkashi Earthquake (20 October 1991) = Geol. Soc. Ind. Mem. Uttar Pradesh State Dental Journal = Uttar Pradesh State Dent. J. Utterance Interpretation and Cognitive Models = Cur Res Sem Prag Int Utterance Interpretation and Cognitive Models = Cur. Res. Sem. Prag. Int. Uttering Trees = Linguist Inq Monogr Uttering Trees = Linguist. Inq. Monogr. Uudet Jatteenkasittelykeskusten Vesienhankintatekniikat = Vtt Res Notes Uudet Jatteenkasittelykeskusten Vesienhankintatekniikat = Vtt. Res. Notes. Uv and Gamma-ray Space Telescope Systems, Pts 1 and 2 = Proc Spie Uv and Gamma-ray Space Telescope Systems, Pts 1 and 2 = Proc. Spie. Uv and Gamma-ray Space Telescope Systems, Pts 1 and 2 = P Soc Photo-opt Ins Uv and Gamma-ray Space Telescope Systems, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Uv and Visible Lasers and Laser Crystal Growth = P Soc Photo-opt Ins Uv and Visible Lasers and Laser Crystal Growth = P. Soc. Photo-opt. Ins. Uveitis and Immunological Disorders = Essent Ophthalmol Uveitis and Immunological Disorders = Essent. Ophthalmol. Uveitis and Immunological Disorders: Progress Iii = Essent Ophthalmol Uveitis and Immunological Disorders: Progress Iii = Essent. Ophthalmol. Uveitis Today = Int Congr Ser Uveitis Today = Int. Congr. Ser. Uv/euv and Visible Space Instrumentation for Astronomy and Solar Physics = P Soc Photo-opt Ins Uv/euv and Visible Space Instrumentation for Astronomy and Solar Physics = P. Soc. Photo-opt. Ins. Uv/euv and Visible Space Instrumentation for Astronomy Ii = P Soc Photo-opt Ins Uv/euv and Visible Space Instrumentation for Astronomy Ii = P. Soc. Photo-opt. Ins. Uv, Optical, and Ir Space Telescopes and Instruments = Proc Spie Uv, Optical, and Ir Space Telescopes and Instruments = Proc. Spie. Uv, Optical, and Ir Space Telescopes and Instruments = P Soc Photo-opt Ins Uv, Optical, and Ir Space Telescopes and Instruments = P. Soc. Photo-opt. Ins. Uv/optical/ir Space Telescopes: Innovative Technologies and Concepts Iii = P Soc Photo-opt Ins Uv/optical/ir Space Telescopes: Innovative Technologies and Concepts Iii = P. Soc. Photo-opt. Ins. Uv/optical/ir Space Telescopes: Innovative Technologies and Concepts = P Soc Photo-opt Ins Uv/optical/ir Space Telescopes: Innovative Technologies and Concepts = P. Soc. Photo-opt. Ins. Uv Solid-state Light Emitters and Detectors = Nato Sci Ser Ii-math Uv Solid-state Light Emitters and Detectors = Nato. Sci. Ser. Ii-math. Uv Solid-state Light Emitters and Detectors = Nato Sci Ser Ii Math Uv Solid-state Light Emitters and Detectors = Nato. Sci. Ser. Ii. Math. Uv, X-ray, and Gamma-ray Space Instrumentation for Astronomy Xv = Proc Spie Uv, X-ray, and Gamma-ray Space Instrumentation for Astronomy Xv = Proc. Spie. Uv, X-ray, and Gamma-ray Space Instrumentation for Astronomy Xv = P Soc Photo-opt Ins Uv, X-ray, and Gamma-ray Space Instrumentation for Astronomy Xv = P. Soc. Photo-opt. Ins. UWFL [reports]. U.S. Atomic Energy Commission = UWFL Rep UWFL Reports = UWFL Rep. Uzbekskii Khimicheskii Zhurnal = Uzb. Khim. Zh. Vacation Queueing Models Theory and Applications = Int Ser Oper Res Man Vacation Queueing Models Theory and Applications = Int. Ser. Oper. Res. Man. Vaccination and Control of Aujeszkys Disease = Curr T Vet Vaccination and Control of Aujeszkys Disease = Curr. T. Vet. Vaccination: A Tool for The Control of Avian Influenza = Dev Biologicals Vaccination: A Tool for The Control of Avian Influenza = Dev. Biologicals. Vaccine Adjuvants = Methods Mol Biol Vaccine Adjuvants = Methods. Mol. Biol. Vaccine Cell Substrates 2004 = Dev Biologicals Vaccine Cell Substrates 2004 = Dev. Biologicals. Vaccine Design = Nato Adv Sci I A-lif Vaccine Design = Nato. Adv. Sci. I. A-lif. Vaccine & immunization news : the newsletter of the Global Programme for Vaccines and Immunization = Vaccine Immun News Vaccines 95 - Molecular Approaches to The Control of Infectious Diseases = Vaccines Vaccines 96 - Molecular Approaches to The Control of Infectious Diseases = Vaccines Vaccines 97 - Molecular Approaches to The Control of Infectious Diseases = Vaccines Vaccines Against Virally Induced Cancers = Ciba F Symp Vaccines Against Virally Induced Cancers = Ciba. F. Symp. Vaccines (cold Spring Harbor Laboratory Press) = Vaccines Vaccines for Pandemic Influenza = Curr Top Microbiol Vaccines for Pandemic Influenza = Curr. Top. Microbiol. Vaccines = Nato Adv Sci Inst Se Vaccines = Nato. Adv. Sci. Inst. Se. Vaccines: Preventing Disease and Protecting Health = Paho Sci P Vaccines: Preventing Disease and Protecting Health = Paho. Sci. P. Vaccines : Recent Trends and Progress = Nato Adv Sci I A-lif Vaccines : Recent Trends and Progress = Nato. Adv. Sci. I. A-lif. Vaccine=Vaccine;; Vaccine = Vaccine Vaccine weekly = Vaccine Wkly Vacuum Design of Synchrotron Light Sources = Aip Conf Proc Vacuum Design of Synchrotron Light Sources = Aip. Conf. Proc. Vacuum Mechatronics = Aip Conf Proc Vacuum Mechatronics = Aip. Conf. Proc. Vacuum Microelectronics 1989 = Inst Phys Conf Ser Vacuum Microelectronics 1989 = Inst. Phys. Conf. Ser. Vacuum Structure in Intense Fields = Nato Adv Sci I B-phy Vacuum Structure in Intense Fields = Nato. Adv. Sci. I. B-phy. Vacuum = Vacuum Vadose Zone Journal = Vadose Zone J Vadose Zone Journal = Vadose Zone J. Vagueness: A Guide = Logic Epistemol Unit Vagueness: A Guide = Logic. Epistemol. Unit. Vagueness: From Epstemicism to Transvaluationism = Acta Analyt Vagueness: From Epstemicism to Transvaluationism = Acta. Analyt. Vakblad voor biologen = Vakbl Biol Vakuum in Forschung und Praxis = Vak. Forsch. Prax. Vakuum-technik = Vakuum-tech Vakuum-technik = Vakuum-tech. Valency: Theoretical, Descriptive and Cognitive Issues = Trends Linguist-stud Valency: Theoretical, Descriptive and Cognitive Issues = Trends. Linguist-stud. Valeur Des Liens: Hommes, Femmes Et Transactions Familiales = Anthropologiques Valeur Des Liens: Hommes, Femmes Et Transactions Familiales = Anthropologiques. Validation in Language Testing = Mod Lang Pract Validation in Language Testing = Mod. Lang. Pract. Validation of Magnetospheric Models = Adv Space Res Validation of Magnetospheric Models = Adv. Space. Res. Validation of Stochastic Systems = Lect Notes Comput Sc Validation of Stochastic Systems = Lect. Notes. Comput. Sc. Validation Practices for Biotechnology Products = Am Soc Test Mater Validation Practices for Biotechnology Products = Am. Soc. Test. Mater. Validation Problems of Rainfall Estimation Methods By Satellite in Intertropical Africa = Colloq Semi Validation Problems of Rainfall Estimation Methods By Satellite in Intertropical Africa = Colloq. Semi. Valparaiso University law review. Valparaiso University. School of Law = Valparaiso Univ Law Rev Valsalva = Valsalva Valuation of Network Effects in Software Markets = Contrib Manag Sci Valuation of Network Effects in Software Markets = Contrib. Manag. Sci. Valuative Tree = Lect Notes Math Valuative Tree = Lect. Notes. Math. Value-based Management of The Rising Sun = Monden Inst Manag-jp Value-based Management of The Rising Sun = Monden. Inst. Manag-jp. Value Chain Management in The Chemical Industry: Global Value Chain Planning of Commodities = Contrib Manag Sci Value Chain Management in The Chemical Industry: Global Value Chain Planning of Commodities = Contrib. Manag. Sci. Value Creation in E-business Management = Lect Notes Bus Inf Value Creation in E-business Management = Lect. Notes. Bus. Inf. Value Creation in E-business Management = Lect Notes Bus Inf P Value Creation in E-business Management = Lect. Notes. Bus. Inf. P. Value Creation in Multinational Enterprise = Int Financ Rev Value Creation in Multinational Enterprise = Int. Financ. Rev. Value-distributions of L-functions = Lect Notes Math Value-distributions of L-functions = Lect. Notes. Math. Value-focused Business Process Engineering: A Systems Approach With Applications to Human Resource Management = Integr Ser Inform Sy Value-focused Business Process Engineering: A Systems Approach With Applications to Human Resource Management = Integr. Ser. Inform. Sy. Value in health : the journal of the International Society for Pharmacoeconomics and Outcomes Research = Value Health Value in Health = Value Health Value of Information Updating in New Product Development = Lect Notes Econ Math Value of Information Updating in New Product Development = Lect. Notes. Econ. Math. Value of Innovation : Impact On Health, Life Quality, Safety, and Regulatory Research = Res Hum Cap Dev Value of Innovation : Impact On Health, Life Quality, Safety, and Regulatory Research = Res. Hum. Cap. Dev. Values and Knowledge = J Piaget Sy Values and Knowledge = J. Piaget. Sy. Values and Principles in European Union Foreign Policy = Routl Adv Eur Polit Values and Principles in European Union Foreign Policy = Routl. Adv. Eur. Polit. Values and Violence: Intangible Aspects of Terrorism = Stud Global Justice Values and Violence: Intangible Aspects of Terrorism = Stud. Global. Justice. Values and Violence: Intangible Aspects of Terrorism = Stud Glob Justice Values and Violence: Intangible Aspects of Terrorism = Stud. Glob. Justice. Values Education and Lifelong Learning: Principles, Policies, Programmes = Lifelong Learn Book Values Education and Lifelong Learning: Principles, Policies, Programmes = Lifelong Learn. Book. Values, Empathy, and Fairness Across Social Barriers = Ann Ny Acad Sci Values, Empathy, and Fairness Across Social Barriers = Ann. Ny. Acad. Sci. Values in Medicine: What Are We Really Doing to Patients? = Biomed Law Ethics Li Values in Medicine: What Are We Really Doing to Patients? = Biomed. Law. Ethics. Li. Values of Presidential Leadership = Jepson Stud Leadersh Values of Presidential Leadership = Jepson. Stud. Leadersh. Valuing Complex Natural Resource Systems: The Case of The Lagoon of Venice = Feem Ser Econ Envir Valuing Complex Natural Resource Systems: The Case of The Lagoon of Venice = Feem. Ser. Econ. Envir. Valuing Environmental Amenities Using Stated Choice Studies: A Common Sense Approach to Theory and Practice = Econ Non-mark Good Valuing Environmental Amenities Using Stated Choice Studies: A Common Sense Approach to Theory and Practice = Econ. Non-mark. Good. Valuing Wildlife Resources in Alaska = Soc Beh Nat Valuing Wildlife Resources in Alaska = Soc. Beh. Nat. Valvular Heart Disease = Contemp Cardiol Valvular Heart Disease = Contemp. Cardiol. Vanadium: The Verastile Metal = Acs Sym Ser Vanadium: The Verastile Metal = Acs. Sym. Ser. Vancouver Studies in Cognitive Science = Vancouver Stud. Cogn. Sci. Vancouver Studies in Cognitive Science = Vanc St Cog Vancouver Studies in Cognitive Science = Vanc. St. Cog. Vancouver sun (1986). = Vanc Sun Vanderbilt law review = Vanderbilt Law Rev Vanderbilt Law Review = Vanderbilt Law Rev Vanderbilt Law Review = Vanderbilt Law Rev. Vanilla = Med Aromat Plants-in Vanilla = Med. Aromat. Plants-in. Vanishing and Finiteness Results in Geometric Analysis: A Generalization of The Bochner Technique = Prog Math Vanishing and Finiteness Results in Geometric Analysis: A Generalization of The Bochner Technique = Prog. Math. Vanishing Bile Duct Syndrome - Pathophysiology and Treatment = Falk Symp Vanishing Bile Duct Syndrome - Pathophysiology and Treatment = Falk. Symp. Vanishing Theorems and Effective Results in Algebraic Geometry = Ictp Lect Notes Vanishing Theorems and Effective Results in Algebraic Geometry = Ictp. Lect. Notes. Van Loon: Popular Historian, Journalist, and Fdr Confidant = World Roosevelts Van Loon: Popular Historian, Journalist, and Fdr Confidant = World. Roosevelts. Vapor-liquid Interfaces, Bubbles and Droplets: Fundamentals and Applications = Heat Mass Transf Vapor-liquid Interfaces, Bubbles and Droplets: Fundamentals and Applications = Heat. Mass. Transf. Vapour and Trace Detection of Explosives for Anti-terrorism Purposes = Nato Sci Ser Ii Math Vapour and Trace Detection of Explosives for Anti-terrorism Purposes = Nato. Sci. Ser. Ii. Math. Vardfacket = Vardfacket Vard i Norden = Vard Nord Utveckl Forsk Vard i Norden = Vard Nord. Utveckl. Forsk. Vargas and Brazil: New Perspectives = Stud Am Vargas and Brazil: New Perspectives = Stud. Am. Variability in Human Drug Response = Int Congr Ser Variability in Human Drug Response = Int. Congr. Ser. Variability in Rangeland Water Erosion Processes = Sssa Spec Publ Variability in Rangeland Water Erosion Processes = Sssa. Spec. Publ. Variability in Response to Anti-rheumatic Drugs = Agent Action Suppl Variability in Response to Anti-rheumatic Drugs = Agent. Action. Suppl. Variable and Non-spherical Stellar Winds in Luminous Hot Stars = Lect Notes Phys Variable and Non-spherical Stellar Winds in Luminous Hot Stars = Lect. Notes. Phys. Variable Speed Drive Systems = Vdi Bericht Variable Speed Drive Systems = Vdi. Bericht. Variable Stars and Galaxies = Astr Soc P Variable Stars and Galaxies = Astr. Soc. P. Variable Stars As Essential Astrophysical Tools = Nato Adv Sci I C-mat Variable Stars As Essential Astrophysical Tools = Nato. Adv. Sci. I. C-mat. Variable Stars in The Local Group = Astr Soc P Variable Stars in The Local Group = Astr. Soc. P. Variable Structure Systems, Sliding Mode and Nonlinear Control = Lect Notes Contr Inf Variable Structure Systems, Sliding Mode and Nonlinear Control = Lect. Notes. Contr. Inf. Variable Structure Systems: Towards The 21st Century = Lect Notes Contr Inf Variable Structure Systems: Towards The 21st Century = Lect. Notes. Contr. Inf. Variable Universe: A Celebration of Bohdan Paczynski = Astr Soc P Variable Universe: A Celebration of Bohdan Paczynski = Astr. Soc. P. Variational Analysis and Aerospace Engineering = Springer Optim Appl Variational Analysis and Aerospace Engineering = Springer. Optim. Appl. Variational Analysis and Aerospace Engineering = Springer Ser Optim A Variational Analysis and Aerospace Engineering = Springer. Ser. Optim. A. Variational Analysis and Applications = Noncon Optim Its App Variational Analysis and Applications = Noncon. Optim. Its. App. Variational Analysis and Applications = Nonconvex Optim Variational Analysis and Applications = Nonconvex. Optim. Variational Analysis and Generalized Differentiation in Optimization and Control: in Honor of Boris S. Mordukhovich = Springer Ser Optim A Variational Analysis and Generalized Differentiation in Optimization and Control: in Honor of Boris S. Mordukhovich = Springer. Ser. Optim. A. Variational Analysis in Sobolev and Bv Spaces = Mps-siam Ser Optimiz Variational Analysis in Sobolev and Bv Spaces = Mps-siam. Ser. Optimiz. Variational and Quasi-variational Inequalities in Mechanics = Solid Mech Appl Variational and Quasi-variational Inequalities in Mechanics = Solid. Mech. Appl. Variational and Topological Methods in The Study of Nonlinear Phenomena = Prog Nonlin Variational and Topological Methods in The Study of Nonlinear Phenomena = Prog. Nonlin. Variational Calculus, Optimal Control and Applications = Int S Num M Variational Calculus, Optimal Control and Applications = Int. S. Num. M. Variational, Geometric, and Level Set Methods in Computer Vision, Proceedings = Lect Notes Comput Sc Variational, Geometric, and Level Set Methods in Computer Vision, Proceedings = Lect. Notes. Comput. Sc. Variational Inequalities With Applications: A Study of Antiplane Frictional Contact Problems = Adv Mech Math Variational Inequalities With Applications: A Study of Antiplane Frictional Contact Problems = Adv. Mech. Math. Variational Methods: Applications to Nonlinear Partial Differential Equations and Hamiltonian Systems, Fourth Edition = Ergeb Math Grenzgeb Variational Methods: Applications to Nonlinear Partial Differential Equations and Hamiltonian Systems, Fourth Edition = Ergeb. Math. Grenzgeb. Variational Methods for Crystalline Mirostructure - Analysis and Computation = Lect Notes Math Variational Methods for Crystalline Mirostructure - Analysis and Computation = Lect. Notes. Math. Variational Methods for Discontinuous Structures = Prog Nonlin Variational Methods for Discontinuous Structures = Prog. Nonlin. Variational Methods for Discontinuous Structures = Prog Nonlinear Diffe Variational Methods for Discontinuous Structures = Prog. Nonlinear. Diffe. Variational Methods for Problems From Plasticity Theory and for Generalized Newtonian Fluids = Lect Notes Math Variational Methods for Problems From Plasticity Theory and for Generalized Newtonian Fluids = Lect. Notes. Math. Variational Methods in Imaging = Appl Math Sci Variational Methods in Imaging = Appl. Math. Sci. Variational Principles of Continuum Mechanics Ii: Applications = Interact Mech Math Variational Principles of Continuum Mechanics Ii: Applications = Interact. Mech. Math. Variational Principles of Continuum Mechanics, Vol I Fundamentals = Interact Mech Math Variational Principles of Continuum Mechanics, Vol I Fundamentals = Interact. Mech. Math. Variational Problems in Materials Science = Prog Nonlin Variational Problems in Materials Science = Prog. Nonlin. Variational Problems in Riemannian Geometry: Bubbles, Scans and Geometric Flows = Prog Nonlin Variational Problems in Riemannian Geometry: Bubbles, Scans and Geometric Flows = Prog. Nonlin. Variation and Gradience in Phonetics and Phonology = Phonol Phonet Variation and Gradience in Phonetics and Phonology = Phonol. Phonet. Variation Aware Analog and Mixed-signal Circuit Design in Emerging Multi-gate Cmos Technologies = Spr Ser Adv Microele Variation Aware Analog and Mixed-signal Circuit Design in Emerging Multi-gate Cmos Technologies = Spr. Ser. Adv. Microele. Variation-aware Analog Structural Synthesis: A Computational Intelligence Approach = Analog Circ Sig Proc Variation-aware Analog Structural Synthesis: A Computational Intelligence Approach = Analog Circ. Sig. Proc. Variation Et Optimisation De Formes: Une Analyse Geometrique = Math Appl-berlin Variation Et Optimisation De Formes: Une Analyse Geometrique = Math. Appl-berlin. Variation in (sub)standard Language = Belg J Ling Variation in (sub)standard Language = Belg. J. Ling. Variation in The Human Genome = Ciba F Symp Variation in The Human Genome = Ciba. F. Symp. Variation in The Input: Studies in The Acquisition of Word Order = Stud Theor Psycholin Variation in The Input: Studies in The Acquisition of Word Order = Stud. Theor. Psycholin. Variation, Selection, Development: Probing The Evolutionary Model of Language Change = Trends Linguist-stud Variation, Selection, Development: Probing The Evolutionary Model of Language Change = Trends. Linguist-stud. Varicella-zoster Virus = Curr Top Microbiol Varicella-zoster Virus = Curr. Top. Microbiol. Varieties of Capitalism in Post-communist Countries = Stud Econ Transit Varieties of Capitalism in Post-communist Countries = Stud. Econ. Transit. Varieties of Capitalism Paradigm: Explaining Germany's Comparative Advantage = New Perspect Ger Stu Varieties of Capitalism Paradigm: Explaining Germany's Comparative Advantage = New. Perspect. Ger. Stu. Varieties of English Around The World, General Series = Var Engl Ar World Gs Varieties of English Around The World, General Series = Var. Engl. Ar. World. Gs. Varieties of Meaning: The 2002 Jean Nicod Lectures = Jean Nicod Lect Varieties of Meaning: The 2002 Jean Nicod Lectures = Jean Nicod Lect. Varieties of Political Experience in Eighteenth-century America = Early Am Stud Ser Varieties of Political Experience in Eighteenth-century America = Early. Am. Stud. Ser. Various Publications Series = Various Publ. Ser. Variscan-appalachian Dynamics: The Building of The Late Paleozoic Basement = Geol S Am S Variscan-appalachian Dynamics: The Building of The Late Paleozoic Basement = Geol. S. Am. S. Varstvo spomenikov = VarSpom Vartioimattoman Tasoristeyksen Ylitys: Autonkuljettajien Kasitykset Ja Riskin Kokeminen = Vtt Res Notes Vartioimattoman Tasoristeyksen Ylitys: Autonkuljettajien Kasitykset Ja Riskin Kokeminen = Vtt. Res. Notes. Vasa-european Journal of Vascular Medicine = Vasa Vasa-european Journal of Vascular Medicine = Vasa. Vasa-journal of Vascular Diseases = Vasa-j Vascular Dis Vasa-journal of Vascular Diseases = Vasa-j. Vascular Dis. Vasa. Supplementum = Vasa. Suppl. VASA. Supplementum = Vasa Suppl Vasa=Vasa;; Vasa = Vasa VASA. Zeitschrift fur Gefasskrankheiten. Journal for vascular diseases = Vasa Vascular and Endovascular Surgery = Vasc Endovasc Surg Vascular and Endovascular Surgery = Vasc. Endovasc. Surg. Vascular and endovascular surgery = Vasc Endovascular Surg Vascular and Endovascular Surgery = Vasc. Endovascular Surg. Vascular diseases = Vasc Dis Vascular Diseases = Vasc. Dis. Vascular Endothelium in Inflammation = Behr Inst Mitt Vascular Endothelium in Inflammation = Behr. Inst. Mitt. Vascular Endothelium: Mechanisms of Cell Signaling = Nato Adv Sci I A-lif Vascular Endothelium: Mechanisms of Cell Signaling = Nato. Adv. Sci. I. A-lif. Vascular Endothelium = Nato Adv Sci I A-lif Vascular Endothelium = Nato. Adv. Sci. I. A-lif. Vascular Endothelium / = Nato Adv Sci I A-lif Vascular Endothelium / = Nato. Adv. Sci. I. A-lif. Vascular Endothelium = Nato Adv Sci Inst Se Vascular Endothelium = Nato. Adv. Sci. Inst. Se. Vascular Endothelium = Nato Sci Ser I Life Vascular Endothelium = Nato. Sci. Ser. I. Life. Vascular Factors in Alzheimer's Disease = Ann Ny Acad Sci Vascular Factors in Alzheimer's Disease = Ann. Ny. Acad. Sci. Vascular Growth Factors and Angiogenesis = Curr Top Microbiol Vascular Growth Factors and Angiogenesis = Curr. Top. Microbiol. Vascular health and risk management = Vasc Health Risk Manag Vascular Interventional Radiology: Angioplasty, Stenting, Thrombolysis and Thrombectomy = Med Radiol Diagn Ima Vascular Interventional Radiology: Angioplasty, Stenting, Thrombolysis and Thrombectomy = Med. Radiol. Diagn. Ima. Vascular Medicine / = Int Congr Ser Vascular Medicine / = Int. Congr. Ser. Vascular medicine (London, England) = Vasc Med Vascular Medicine = Vasc Med Vascular Medicine = Vasc. Med. Vascular Pharmacology = Vasc Pharmacol Vascular Pharmacology = Vasc. Pharmacol. Vascular pharmacology = Vascul Pharmacol Vascular Pharmacology = Vascul. Pharmacol. Vascular Plants As Epiphytes = Ecol Stu An Vascular Plants As Epiphytes = Ecol. Stu. An. Vascular Surgery = Springer Surg Atlas Vascular Surgery = Springer. Surg. Atlas. Vascular surgery = Vasc Surg Vascular Surgery = Vasc. Surg. Vascular Surgery = Vascular Surg Vascular Surgery = Vascular Surg. Vascular = Vascular Vasodilatation and Beta-blockade A New Standard in Hypertension ? = Roy Soc Med Int Cong Vasodilatation and Beta-blockade A New Standard in Hypertension ? = Roy. Soc. Med. Int. Cong. Vasomotion and Flow Modulation in The Microcirculation = Progr Appl Micr Vasomotion and Flow Modulation in The Microcirculation = Progr. Appl. Micr. Vasomotion and Flow Motion = Progr Appl Micr Vasomotion and Flow Motion = Progr. Appl. Micr. Vasopressin and Oxytocin = Adv Exp Med Biol Vasopressin and Oxytocin = Adv. Exp. Med. Biol. Vasopressin and Oxytocin: From Genes to Clinical Applications = Prog Brain Res Vasopressin and Oxytocin: From Genes to Clinical Applications = Prog. Brain. Res. Vast 2006: Ieee Symposium On Visual Analytics Science and Technology, Proceedings = Ieee S Vis Anal Vast 2006: Ieee Symposium On Visual Analytics Science and Technology, Proceedings = Ieee S. Vis. Anal. Vast: Ieee Symposium On Visual Analytics Science and Technology 2007, Proceedings = Ieee S Vis Anal Vast: Ieee Symposium On Visual Analytics Science and Technology 2007, Proceedings = Ieee S. Vis. Anal. Vcsels and Optical Interconnects = P Soc Photo-opt Ins Vcsels and Optical Interconnects = P. Soc. Photo-opt. Ins. VDI Berichte = VDI Ber. VDI-Berichte = VDI Ber Vdi Berichte = Vdi Bericht Vdi Berichte = Vdi Bericht. Vdi-buch = Vdi-buch V(d)j Recombination = Adv Exp Med Biol V(d)j Recombination = Adv. Exp. Med. Biol. Vdm 90 = Lect Notes Comput Sc Vdm 90 = Lect. Notes. Comput. Sc. Vecteur Environnement = Vecteur Environ. Vector and Parallel Processing - Vecpar 2000 = Lect Notes Comput Sc Vector and Parallel Processing - Vecpar 2000 = Lect. Notes. Comput. Sc. Vector and Parallel Processing - Vecpar'96 = Lect Notes Comput Sc Vector and Parallel Processing - Vecpar'96 = Lect. Notes. Comput. Sc. Vector and Parallel Processing - Vecpar'98 = Lect Notes Comput Sc Vector and Parallel Processing - Vecpar'98 = Lect. Notes. Comput. Sc. Vector borne and zoonotic diseases (Larchmont, N.Y.) = Vector Borne Zoonotic Dis Vector-borne and Zoonotic Diseases = Vector-borne Zoonot Vector-borne and Zoonotic Diseases = Vector-borne Zoonot. Vector Borne and Zoonotic Diseases = Vector Borne Zoonotic Dis. Vector-borne Pathogens: International Trade and Tropical Animal Diseases = Ann Ny Acad Sci Vector-borne Pathogens: International Trade and Tropical Animal Diseases = Ann. Ny. Acad. Sci. Vector Bundles and Complex Geometry = Contemp Math Vector Bundles and Complex Geometry = Contemp. Math. Vector Bundles in Algebraic Geometry - Durham 1993 = Lond Math S Vector Bundles in Algebraic Geometry - Durham 1993 = Lond. Math. S. Vector Calculus in Regional Development Analysis: Comparative Regional Analysis Using The Example of Poland = Contrib Econ Vector Calculus in Regional Development Analysis: Comparative Regional Analysis Using The Example of Poland = Contrib. Econ. Vector Control of Three-phase Ac Machines: System Development in The Practice = Power Syst Vector Control of Three-phase Ac Machines: System Development in The Practice = Power. Syst. Vector Fields On Singular Varieties = Lect Notes Math Vector Fields On Singular Varieties = Lect. Notes. Math. Vector Measures, Integration and Related Topics = Oper Theor Vector Measures, Integration and Related Topics = Oper. Theor. Vector Measures, Integration and Related Topics = Oper Theory Adv Appl Vector Measures, Integration and Related Topics = Oper. Theory. Adv. Appl. Vector Optimization: Set-valued and Variational Analysis = Lect Notes Econ Math Vector Optimization: Set-valued and Variational Analysis = Lect. Notes. Econ. Math. Vector Optimization = Vector Optim Vector Optimization = Vector Optim. Vector Optimization With Infimum and Supremum = Vector Optim Vector Optimization With Infimum and Supremum = Vector Optim. Vector -valued Laplace Transforms and Cauchy A Problems, Second Edition = Mg Math Vector -valued Laplace Transforms and Cauchy A Problems, Second Edition = Mg. Math. Vegetables, Whole Grains, and Their Derivatives in Cancer Prevention = Diet Cancer Vegetables, Whole Grains, and Their Derivatives in Cancer Prevention = Diet. Cancer Vegetation-climate Interaction: How Plants Make The Global Environment, Second Edition = S-p B Environ Sci Vegetation-climate Interaction: How Plants Make The Global Environment, Second Edition = S-p. B. Environ. Sci. Vegetation-climate Interaction: How Vegetation Makes The Global Environment = Springer-prax Books Vegetation-climate Interaction: How Vegetation Makes The Global Environment = Springer-prax. Books. Vegetation History and Archaeobotany = Veg Hist Archaeobot Vegetation History and Archaeobotany = Veg. Hist. Archaeobot. Vegetation Structure and Species Coexistence = Spec Feat Veget Sci Vegetation Structure and Species Coexistence = Spec. Feat. Veget. Sci. Vegetatio = Vegetatio Vegetos = Vegetos Vehicle Concepts for The 2nd Century of Automotive Technology = Vdi Bericht Vehicle Concepts for The 2nd Century of Automotive Technology = Vdi. Bericht. Vehicle Noise and Vibration 2000 = Imeche Conf Trans Vehicle Noise and Vibration 2000 = Imeche. Conf. Trans. Vehicle Noise and Vibration 2002 = Imeche Conf Trans Vehicle Noise and Vibration 2002 = Imeche. Conf. Trans. Vehicle Noise and Vibration Refinement = Woodhead Publ Mech E Vehicle Noise and Vibration Refinement = Woodhead. Publ. Mech. E. Vehicle-road Interaction = Am Soc Test Mater Vehicle-road Interaction = Am. Soc. Test. Mater. Vehicle Routing Problem: Latest Advances and New Challenges = Oper Res Comput Sci Vehicle Routing Problem: Latest Advances and New Challenges = Oper. Res. Comput. Sci. Vehicle Safety 2002 = Imeche Conf Trans Vehicle Safety 2002 = Imeche. Conf. Trans. Vehicle System Dynamics = Vehicle Syst Dyn Vehicle System Dynamics = Vehicle Syst. Dyn. Vehicle System Dynamics = Veh. Syst. Dyn. Vehicular Networks: From Theory to Practice = Ch Crc Comp Info Sci Vehicular Networks: From Theory to Practice = Ch. Crc. Comp. Info. Sci. Veja = Veja Vekove. Dvumesečno spisanie. Bălgarsko istoričesko družestvo = Vekove Veleia: revista de prehistoria, historia antigua, arqueologá y filología clásicas = Veleia Veleia. Revista de prehistoria, historia antigua, arqueología y filología clásicas = Veleia Veliger = Veliger Velvet Revolution At The Synchrotron: Biology, Physics, and Change in Science = Inside Technol Velvet Revolution At The Synchrotron: Biology, Physics, and Change in Science = Inside. Technol. Venereology : official publication of the National Venereology Council of Australia = Venereology Venereology-the Interdisciplinary International Journal of Sexual Health = Venereology Venereology-the Interdisciplinary International Journal of Sexual Health = Venereology. Venezia arti. Bolletino del Dipartimento di storia e critica delle arti dell’Università di Venezia = VenArt Venezuela: A Petro-state Using Renewable Energies = Energ Polic Clim Pro Venezuela: A Petro-state Using Renewable Energies = Energ. Polic. Clim. Pro. Venezuela odontologica = Venez Odontol Venezuela Odontologica = Venez. Odontol. Venomous Snakes: Envenoming, Therapy = Reptiles-classif Evo Venomous Snakes: Envenoming, Therapy = Reptiles-classif. Evo. Venomous Tongues: Speech and Gender in Late Medieval England = Middle Ages Ser Venomous Tongues: Speech and Gender in Late Medieval England = Middle. Ages. Ser. Venoms: Sources, Toxicity and Therapeutic Uses = Adv Biol Med Venoms: Sources, Toxicity and Therapeutic Uses = Adv. Biol. Med. Venous Drainage of The Human Myocardium = Adv Anat Embryol Cel Venous Drainage of The Human Myocardium = Adv. Anat. Embryol. Cel. Vent and Seep Biota: Aspects From Microbes to Ecosystems = Top Geobiol Vent and Seep Biota: Aspects From Microbes to Ecosystems = Top. Geobiol. Ventilation and Indoor Air Quality in Hospitals = Nato Asi 2 Ventilation and Indoor Air Quality in Hospitals = Nato. Asi. 2. Ventilators: Development - Planning - Operation = Vdi Bericht Ventilators: Development - Planning - Operation = Vdi. Bericht. Ventral Brainstem Mechanisms and Control of Respiration and Blood Pressure = Lung Biol Health Dis Ventral Brainstem Mechanisms and Control of Respiration and Blood Pressure = Lung. Biol. Health. Dis. Venture Capital, Entrepreneurship and Public Policy = Cesifo Seminar Ser Venture Capital, Entrepreneurship and Public Policy = Cesifo. Seminar. Ser. Venture Capital=Venture Capital Venus Atmosphere = Adv Space Res-series Venus Atmosphere = Adv. Space. Res-series. Veranderungsprozesse Erfolgreich Gestalten = Vdi-buch Veranderungsprozesse Erfolgreich Gestalten = Vdi-buch. Verbal and Nonverbal Communication Behaviours = Lect Notes Comput Sc Verbal and Nonverbal Communication Behaviours = Lect. Notes. Comput. Sc. Verbal and Nonverbal Features of Human-human and Human-machine Interactions = Lect Notes Artif Int Verbal and Nonverbal Features of Human-human and Human-machine Interactions = Lect. Notes. Artif. Int. Verbanus. Rassegna per la cultura, l’arte, la storia del lago = Verbanus Verbatim = Verbatim Verb Constructions in German and Dutch = Amst Stud Theory His Verb Constructions in German and Dutch = Amst. Stud. Theory. His. Verbraucherschutz Bei Vertragsschluss Im Internet = Schr Eur Int Priv B Verbraucherschutz Bei Vertragsschluss Im Internet = Schr. Eur. Int. Priv. B. Verbraucherschutz Im Kreditgeschaft-compliance in Der Kreditwirtschaft: Bankrechtstag 2008 = Schr Bankrechtl Ver Verbraucherschutz Im Kreditgeschaft-compliance in Der Kreditwirtschaft: Bankrechtstag 2008 = Schr. Bankrechtl. Ver. Verbum: revue de linguistique publ. par l'Univ. de Nancy II = Verbum Verbum = Verbum Verfahren Der Fertigungssteuerung, Second Edition (2008) = Vdi-buch Verfahren Der Fertigungssteuerung, Second Edition (2008) = Vdi-buch. Verfahren Der Fertigungssteuerung = Vdi-buch Verfahren Der Fertigungssteuerung = Vdi-buch. Verfassungsrechtliche Beitrittsverfahren Zur Europaischen Union Und Seine Auswirkungen Am Beispiel Der Gotovina-affare Im Kroatischen Beitrittsverfahren = Beitr Ausl Offentl R Verfassungsrechtliche Beitrittsverfahren Zur Europaischen Union Und Seine Auswirkungen Am Beispiel Der Gotovina-affare Im Kroatischen Beitrittsverfahren = Beitr. Ausl. Offentl. R. Verfication, Model Checking, and Abstract Interpretation, Proceedings = Lect Notes Comput Sc Verfication, Model Checking, and Abstract Interpretation, Proceedings = Lect. Notes. Comput. Sc. Verhaltenstherapie = Verhaltenstherapie Verhandelingen - Koninklijke Academie voor Geneeskunde van Belgie = Verh K Acad Geneeskd Belg Verhandelingen, Koninklijke Academie voor Geneeskunde van Belgie = Verh. K. Acad. Geneeskd. Belg. Verhandelingen - Koninklijke Academie Voor Geneeskunde Van Belgie=Verh K Acad Geneeskd Belg;; Verhandelingen - Koninklijke Vlaamse Academie voor Geneeskunde van Belgie = Verh K Vlaam Acad Geneeskd Belg Verhandelingen, Koninklijke Vlaamse Academie voor Geneeskunde van Belgie = Verh. K. Vlaam. Acad. Geneeskd. Belg. Verhandelingen : Van Het Koninklijk Instituut Voor Taal Land En Volkenkunde = Verh Konik Verhandelingen : Van Het Koninklijk Instituut Voor Taal Land En Volkenkunde = Verh. Konik. Verhandlungen der Anatomischen Gesellschaft = Verh Anat Ges Verhandlungen der Anatomischen Gesellschaft = Verh. Anat. Ges. Verhandlungen der Deutschen Gesellschaft fur Herz- und Kreislaufforschung = Verh Dtsch Ges Herz Kreislaufforsch Verhandlungen der Deutschen Gesellschaft fur Herz- und Kreislaufforschung = Verh. Dtsch. Ges. Herz. Kreislaufforsch. Verhandlungen der Deutschen Gesellschaft fur Innere Medizin = Verh Dtsch Ges Inn Med Verhandlungen der Deutschen Gesellschaft fur Innere Medizin = Verh. Dtsch. Ges. Inn. Med. Verhandlungen Der Deutschen Gesellschaft Fur Kreislaufforschung = Ver Deut Gesell Kr Verhandlungen Der Deutschen Gesellschaft Fur Kreislaufforschung = Ver. Deut. Gesell. Kr. Verhandlungen der Deutschen Gesellschaft fur Kreislaufforschung = Verh Dtsch Ges Kreislaufforsch Verhandlungen der Deutschen Gesellschaft fur Kreislaufforschung = Verh. Dtsch. Ges. Kreislaufforsch. Verhandlungen Der Deutschen Gesellschaft Fur Pathologie, 88. Tagung = Verh Deut G Verhandlungen Der Deutschen Gesellschaft Fur Pathologie, 88. Tagung = Verh. Deut. G. Verhandlungen Der Deutschen Gesellschaft Fur Pathologie = Verh Deut G Verhandlungen Der Deutschen Gesellschaft Fur Pathologie = Verh. Deut. G. Verhandlungen der Deutschen Gesellschaft fur Pathologie = Verh Dtsch Ges Pathol Verhandlungen der Deutschen Gesellschaft fur Pathologie = Verh. Dtsch. Ges. Pathol. Verhandlungen Der Deutschen Gesellschaft Fur Pathologie=Verh Dtsch Ges Pathol;; Verhandlungen der Deutschen Gesellschaft fur Rheumatologie = Verh Dtsch Ges Rheumatol Verhandlungen der Deutschen Gesellschaft fur Rheumatologie = Verh. Dtsch. Ges. Rheumatol. Verhandlungen der Deutschen Physikalischen Gesellschaft = Verh. Dtsch. Phys. Ges. Verhandlungen Der Deutschen Zoologischen Gesellschaft = Verh Deut Z Verhandlungen Der Deutschen Zoologischen Gesellschaft = Verh. Deut. Z. Verhandlungen der Deutschen Zoologischen Gesellschaft = Verh. Dtsch. Zool. Ges. Verhandlungen Der Gesellschaft Deutscher Naturforscher Und Arzte = Ver Ges D N Verhandlungen Der Gesellschaft Deutscher Naturforscher Und Arzte = Ver. Ges. D. N. Verhandlungen der Gesellschaft für Ökologie = Verh. Ges. Ökol. Verhandlungen der Internationalen Vereinigung für Theoretische und Angewandte Limnologie = Verh. Int. Ver. Theoret. Angew. Limnol. Verhandlungen der Naturforschenden Gesellschaft in Basel = Verh. Nat.forsch. Ges. Basel Verhandlungen der Schweizerischen naturforschenden Gesellschaft = Verh. Schweiz. nat.forsch. Ges. Verhandlungen der Zoologisch-Botanischen Gesellschaft in Wien. Zoologisch-Botanische Gesellschaft in Wien = Verh Zool Bot Ges Wien Verhandlungen - Internationale Vereinigung fur Theoretische und Angewandte Limnologie = Verh. Int. Ver. Theor. Angew. Limnol. Verhandlungen - Internationale Vereinigung für Theoretische und Angewandte Limnologie = Verh. - Int. Ver. Theor. Angew. Limnol. Verification, Model Checking, and Abstract Interpretation = Lect Notes Comput Sc Verification, Model Checking, and Abstract Interpretation = Lect. Notes. Comput. Sc. Verification, Model Checking , and Abstract Interpretation, Proceedings = Lect Notes Comput Sc Verification, Model Checking , and Abstract Interpretation, Proceedings = Lect. Notes. Comput. Sc. Verification, Model Checking, and Abstract Interpretation, Proceedings = Lect Notes Comput Sc Verification, Model Checking, and Abstract Interpretation, Proceedings = Lect. Notes. Comput. Sc. Verification of Digital and Hybrid System = Nato Adv Sci I F-com Verification of Digital and Hybrid System = Nato. Adv. Sci. I. F-com. Verification of Geotechnical Grouting = Geotech Sp Verification of Geotechnical Grouting = Geotech. Sp. Verification of The Biological and Toxin Weapons Convention = Nato Sci S 1 Disarm Verification of The Biological and Toxin Weapons Convention = Nato. Sci. S. 1. Disarm. Verification = Pugwash Mon Verification = Pugwash. Mon. Verification: Theory and Practice = Lect Notes Comput Sc Verification: Theory and Practice = Lect. Notes. Comput. Sc. Verifiche = Verifiche Verified Software: Theories, Tools, Experiments = Lect Notes Comput Sc Verified Software: Theories, Tools, Experiments = Lect. Notes. Comput. Sc. Verifikation Und Validierung Fur Die Simulation in Produktion Und Logistik = Vdi-buch Verifikation Und Validierung Fur Die Simulation in Produktion Und Logistik = Vdi-buch. Verkehrsleittechnik: Automatisierung Des Strassen- Und Schienenverkehrs = Vdi-buch Verkehrsleittechnik: Automatisierung Des Strassen- Und Schienenverkehrs = Vdi-buch. Verkundigung und Forschung: Wissenschaft vom Neuen Testament. Beitr. zu Evangelische Theologie = V&F Vermessung, Photogrammetrie, Kulturtechnik = Vermess. Photogramm. Kult.tech. Vermont history news = Vt Hist News Vermont history = Vt Hist Vermont law review = Vt Law Rev Vermont registered nurse = Vt Regist Nurse Vermont Registered Nurse = Vt. Regist. Nurse Vermont statutes annotated. Vermont = Vt Statut Annot Vt Vernacular Architecture = Vernac Archit Vernacular Architecture = Vernac. Archit. Vernacular Universals and Language Contacts = Routl Stud Ger Ling Vernacular Universals and Language Contacts = Routl. Stud. Ger. Ling. Vernacular Voices: Language and Identity in Medieval French Jewish Communities = Jew Cult Context Vernacular Voices: Language and Identity in Medieval French Jewish Communities = Jew. Cult. Context. Vernetztes Supply Chain Management = Vdi-buch Vernetztes Supply Chain Management = Vdi-buch. Vernon Lee: Dacadence, Ethics, Aesthetics = Palgrave Stud Ninet- Vernon Lee: Dacadence, Ethics, Aesthetics = Palgrave. Stud. Ninet-. Vernon's annotated Revised civil statutes of the state of Texas. Texas = Vernons Annot Revis Civ Statut State Tex Tex Veroffentlichungen aus der morphologischen Pathologie = Veroff Morphol Pathol Veroffentlichungen aus der Morphologischen Pathologie = Veroff. Morphol. Pathol. Veroffentlichungen Aus Der Pathologie-progress in Pathology = Veroff Pathol Veroffentlichungen Aus Der Pathologie-progress in Pathology = Veroff. Pathol. Veroffentlichungen aus der Pathologie = Veroff Pathol Veroffentlichungen aus der Pathologie = Veroff. Pathol. Veroffentlichungen Aus Der Pathologie=Veroff Pathol;; Veröffentlichungen der Gesellschaft Pro Vindonissa = VGesVind Veroffentlichungen Der Historischen Kommission Zu Berlin = Veroff Hist Komm Ber Veroffentlichungen Der Historischen Kommission Zu Berlin = Veroff. Hist. Komm. Ber. Veroffentlichungen der Internationalen Gesellschaft fur Geschichte der Pharmazie e. V = Veroff Int Ges Gesch Pharm Veröffentlichungen der Landesstelle für Naturschutz und Landschaftspflege in Baden-Württemberg = Veröff. Landesstelle Nat.schutz Landsch.pfl. Baden-Württ. Veroffentlichungen der Schweizerischen Gesellschaft fur Geschichte der Medizin und der Naturwissenschaften = Veroff Schweiz Ges Gesch Med Naturwiss Veroffentlichungen der Schweizerischen Gesellschaft fur Geschichte der Pharmazie / herausgegeben vom Vorstand der Schweizerischen Gesellschaft fur Geschichte der Pharmazie (SGGP) = Veroff Schweiz Ges Gesch Pharm Veroffentlichungen Der Universitatsbibliothek Essen = Ver U Essen Veroffentlichungen Der Universitatsbibliothek Essen = Ver. U. Essen Veroffentlichungen Des Geobotanischen Institutes Der Eidgenossischen Technischen Hochschule Stiftung Rubel = Ver Geobot Veroffentlichungen Des Geobotanischen Institutes Der Eidgenossischen Technischen Hochschule Stiftung Rubel = Ver. Geobot. Veröffentlichungen des Geobotanischen Institutes der Eidg. Technischen Hochschule, Stiftung Rübel in Zürich = Veröff. Geobot. Inst. Eidgenöss. Tech. Hochsch., Stift. Rübel  Zür. Veroffentlichungen Des Hwwa-institut Fur Wirtschaftsforschung - Hamburg = Ver Hwwa Inst Wirts Veroffentlichungen Des Hwwa-institut Fur Wirtschaftsforschung - Hamburg = Ver. Hwwa. Inst. Wirts. Veroffentlichungen Des Instituts Fur Internationales Recht An Der Universitat Kiel = Ver Inst In Veroffentlichungen Des Instituts Fur Internationales Recht An Der Universitat Kiel = Ver. Inst. In. Veröffentlichungen des Leibniz-Archivs = Veröffentl. Leibniz-Archivs Veroffentlichungen Des Ludwig-boltzmann-instituts Fur Geschichte Und Gesellschaft = Ver Ludwig Boltzmann Veroffentlichungen Des Ludwig-boltzmann-instituts Fur Geschichte Und Gesellschaft = Ver. Ludwig. Boltzmann. Veroffentlichungen Des Seminars Fur Agrarpolitik Und Agrarrecht An Der Hochschule St Gallen = Ver Sem Agr Veroffentlichungen Des Seminars Fur Agrarpolitik Und Agrarrecht An Der Hochschule St Gallen = Ver. Sem. Agr. Veroffentlichungen Des Zentralinstituts Fur Physik Der Erde = Ver Zent Ph Veroffentlichungen Des Zentralinstituts Fur Physik Der Erde = Ver. Zent. Ph. Veröffentlichungen Natur-Museum Luzern = Veröff. Nat.-Mus. Luzern Verpackungs Rundschau = Verpack Rundsch Verpackungs Rundschau = Verpack. Rundsch. Verpleegkunde = Verpleegkunde Versatile Soliton = Mod Birkhauser Class Versatile Soliton = Mod. Birkhauser. Class. Versatility of Wetlands in The Agricultural Landscape = Asae Publ Versatility of Wetlands in The Agricultural Landscape = Asae. Publ. Versicherungsmedizin / herausgegeben von Verband der Lebensversicherungs-Unternehmen e.V. und Verband der Privaten Krankenversicherung e.V = Versicherungsmedizin Versicherungsmedizin=Versicherungsmedizin;; Versicherungsmedizin = Versicherungsmedizin ## version 0.4a last update january 2008 Verslagen en mededelingen - Koninklijke Academie voor Nederlandse Taal- en Letterkunde. Koninklijke Academie voor Nederlandse Taal- en Letterkunde = Versl Meded K Viaam Acad Taal Lett Verslagen en mededelingen van de Koninklijke Vlaamse Academie voor Taal- en Letterkunde. Koninklijke Vlaamse Academie voor Taal- en Letterkunde = Versl Meded K Vlaam Acad Taal Lett Vers La Republique Des Differences = Philos Toulouse Vers La Republique Des Differences = Philos. Toulouse. Verständliche Forschung = Verständl. Forsch. Versuchsanstalt für Wasserbau, Hydrologie und Glaziologie = Vers.anst. Wasserbau Hydrol. Glaziol. Vertebral Column and Statics = Prak Orthop Vertebral Column and Statics = Prak. Orthop. Vertebrata Palasiatica = Vertebrat Palasiatic Vertebrata Palasiatica = Vertebrat. Palasiatic. Vertebrate Biomechanics and Evolution = Exptl Biol Rev Vertebrate Biomechanics and Evolution = Exptl. Biol. Rev. Vertebrate Embryogenesis: Embryological, Cellular and Genetic Methods = Methods Mol Biol Vertebrate Embryogenesis: Embryological, Cellular and Genetic Methods = Methods Mol. Biol. Vertebrate Paleobiology and Paleoanthropology Series = Vertebr Paleobiol Pa Vertebrate Paleobiology and Paleoanthropology Series = Vertebr. Paleobiol. Pa. Vertebrate Paleobiology and Paleoanthropology = Vertebr Paleobiol Pa Vertebrate Paleobiology and Paleoanthropology = Vertebr. Paleobiol. Pa. Vertebrate Phototransduction and The Visual Cycle, Part A = Method Enzymol Vertebrate Phototransduction and The Visual Cycle, Part A = Method. Enzymol. Vertebrate Phototransduction and The Visual Cycle, Pt B = Method Enzymol Vertebrate Phototransduction and The Visual Cycle, Pt B = Method. Enzymol. Vertebrate Zoology = Vertebr Zool Vertebrate Zoology = Vertebr. Zool. Vertex (Buenos Aires, Argentina) = Vertex Vertex Operator Algebras and Related Areas = Contemp Math Vertex Operator Algebras and Related Areas = Contemp. Math. Vertical-cavity Surface-emitting Laser Arrays = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Laser Arrays = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Iii = Proc Spie Vertical-cavity Surface-emitting Lasers Iii = Proc. Spie. Vertical-cavity Surface-emitting Lasers Iii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Iii = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Ii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Ii = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Iv = Proc Spie Vertical-cavity Surface-emitting Lasers Iv = Proc. Spie. Vertical-cavity Surface-emitting Lasers Iv = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Iv = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Ix = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Ix = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Viii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Viii = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Vii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Vii = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Vi = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Vi = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers V = Proc Spie Vertical-cavity Surface-emitting Lasers V = Proc. Spie. Vertical-cavity Surface-emitting Lasers V = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers V = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Xiii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Xiii = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Xii = Proc Spie Vertical-cavity Surface-emitting Lasers Xii = Proc. Spie. Vertical-cavity Surface-emitting Lasers Xii = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Xii = P. Soc. Photo-opt. Ins. Vertical - Cavity Surface - Emitting Lasers Xi = P Soc Photo-opt Ins Vertical - Cavity Surface - Emitting Lasers Xi = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Xiv = Proc Spie Vertical-cavity Surface-emitting Lasers Xiv = Proc. Spie. Vertical-cavity Surface-emitting Lasers Xiv = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers Xiv = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers X = P Soc Photo-opt Ins Vertical-cavity Surface-emitting Lasers X = P. Soc. Photo-opt. Ins. Vertical-cavity Surface-emitting Lasers Xv = Proc Spie Vertical-cavity Surface-emitting Lasers Xv = Proc. Spie. Vertical Coupling and Decoupling in The Lithosphere = Geol Soc Spec Publ Vertical Coupling and Decoupling in The Lithosphere = Geol. Soc. Spec. Publ. Vertical Reference Systems = Iag Symp Vertical Reference Systems = Iag. Symp. Vertical Relationships and Coordination in The Food System = Contribut Econ Vertical Relationships and Coordination in The Food System = Contribut. Econ. Vertical Software Industry Evolution = Contrib Manag Sci Vertical Software Industry Evolution = Contrib. Manag. Sci. Vertica = Vertica Vertigo, Nausea, Tinnitus and Hearing Loss in Central and Peripheral Vestibular Diseases = Int Congr Ser Vertigo, Nausea, Tinnitus and Hearing Loss in Central and Peripheral Vestibular Diseases = Int. Congr. Ser. Vertigo, Nausea, Tinnitus and Hypoacusia Due to Head and Neck Trauma = Int Congr Ser Vertigo, Nausea, Tinnitus and Hypoacusia Due to Head and Neck Trauma = Int. Congr. Ser. Vertigo, Nausea, Tinnitus and Hypoacusia in Metabolic Disorders = Int Congr Ser Vertigo, Nausea, Tinnitus and Hypoacusia in Metabolic Disorders = Int. Congr. Ser. Vertrag, Treueid Und Bund = Beih Z Alttest Wiss Vertrag, Treueid Und Bund = Beih. Z. Alttest. Wiss. Vertriebsrecht: Kommentierung Zu Ss 84 Bis 92c Hgb = Degruyter Komment Vertriebsrecht: Kommentierung Zu Ss 84 Bis 92c Hgb = Degruyter. Komment. Very High Angular Resolution Imaging = Iau Symp Very High Angular Resolution Imaging = Iau. Symp. Very High Resolution and Quality Imaging Iii = Spie Proc Ser Very High Resolution and Quality Imaging Iii = Spie. Proc. Ser. Very High Resolution and Quality Imaging Ii = P Soc Photo-opt Ins Very High Resolution and Quality Imaging Ii = P. Soc. Photo-opt. Ins. Very High Resolution and Quality Imaging = P Soc Photo-opt Ins Very High Resolution and Quality Imaging = P. Soc. Photo-opt. Ins. Very Large Data Bases : Vldb - 92 = Proc Int Conf Very L Very Large Data Bases : Vldb - 92 = Proc. Int. Conf. Very L. Very Large-scale Fires = Am Soc Test Mater Very Large-scale Fires = Am. Soc. Test. Mater. Very Long Baseline Interferometry and The Vlba = Astr Soc P Very Long Baseline Interferometry and The Vlba = Astr. Soc. P. Very Low-mass Stars and Brown Dwarfs = Cam Contemp Astrophy Very Low-mass Stars and Brown Dwarfs = Cam. Contemp. Astrophy. Verzahnungsmesstechnik: Praktisch Anwendungen Und Neue Losungen = Vdi Bericht Verzahnungsmesstechnik: Praktisch Anwendungen Und Neue Losungen = Vdi. Bericht. Verzaubertes Horen: Das Zusammenwirken Von Musik- Und Wortsprache Als Zeichen Gottesdienstlicher Polyphonie = Prakt Theol Wiss Verzaubertes Horen: Das Zusammenwirken Von Musik- Und Wortsprache Als Zeichen Gottesdienstlicher Polyphonie = Prakt. Theol. Wiss. Vesalius : acta internationales historiae medicinae = Vesalius Veska = Veska Vesta Company Series in Pure and Applied Mathematics = Vesta Co. Ser. Pure Appl. Math. Vestibular and Neural Front = Int Congr Ser Vestibular and Neural Front = Int. Congr. Ser. Vestibular Dysfunction and Its Therapy = Adv Oto-rhino-laryng Vestibular Dysfunction and Its Therapy = Adv. Oto-rhino-laryng. Vestibular Labyrinth in Health and Disease = Ann Ny Acad Sci Vestibular Labyrinth in Health and Disease = Ann. Ny. Acad. Sci. Vestis. Izvestiia. Latvijas PSR Zinatnu akademija = Vestis Lat Psr Zinat Akad Vestnik Akademii Meditsinskikh Nauk Sssr = Vestn Akad Med Nauk+ Vestnik Akademii Meditsinskikh Nauk Sssr = Vestn. Akad. Med. Nauk+.+ Vestnik Akademii meditsinskikh nauk SSSR = Vestn Akad Med Nauk SSSR Vestnik Akademii Meditsinskikh Nauk SSSR = Vestn. Akad. Med. Nauk SSSR Vestnik Akademii nauk SSSR = Vestn Akad Nauk SSSR Vestnik Akademii Nauk SSSR = Vestn. Akad. Nauk SSSR Vestnik Akademii Nauk Sssr = Vestn An Sssr+ Vestnik Akademii Nauk Sssr = Vestn. An. Sssr+.+ Vestnik Belorusskogo Gosudarstvennogo Universiteta = Vestn. Beloruss. Gos. Univ. Ser. 1 Fiz. Mat. Inform. Vestnik Dermatologii I Venerologii = Vestn Dermatol Vener Vestnik Dermatologii I Venerologii = Vestn. Dermatol. Vener. Vestnik dermatologii i venerologii = Vestn Dermatol Venerol Vestnik Dermatologii i Venerologii = Vestn. Dermatol. Venerol. Vestnik drevnei istorii. Journal of ancient history = Vestn Drevnej Istor (Moskva) Vestnik drevnej istorii = VDI Vestnik Drevnej Istorii (Revue d'Histoire ancienne) = VDI Vestnik Khirurgii Imeni I I Grekova = Vestn Khir Im Grekov Vestnik Khirurgii Imeni I I Grekova = Vestn. Khir. Im. Grekov. Vestnik khirurgii imeni I. I. Grekova = Vestn Khir Im I I Grek Vestnik Khirurgii imeni I. I. Grekova = Vestn. Khir. Im. I. I. Grek. Vestnik Khirurgii Imeni I. I. Grekova=Vestn Khir Im I I Grek;; Vestnik L\cprime vovskogo Politekhnicheskogo Instituta = Vestnik L\cprime vov. Politekhn. Inst. Vestnik Leningradskogo universiteta. Biologiia = Vestn Leningr Univ [Biol] Vestnik Leningradskogo Universiteta. Biologiia = Vestn. Leningr. Univ. [Biol.] Vestnik - Leningradskogo Universiteta. Geologiia, geografiia. Leningradskii gosudarstvennyi universitet = Vestn Leningr Univ Geol Geogr Vestnik Leningradskogo Universiteta, Ser. 2, Istor. = VLUIST Vestnik Leningradskogo Universiteta, Ser. 6, Filos. = VLUFILOS Vestnik Leningradskogo Universiteta Seriya Fizika Khimiya = Vestn Lenin U Fiz Kh Vestnik Leningradskogo Universiteta Seriya Fizika Khimiya = Vestn. Lenin. U. Fiz. Kh. Vestnik Leningradskogo Universiteta Seriya Matematika Mekhanika Astronomiya = Vestn Lenin U Mma Vestnik Leningradskogo Universiteta Seriya Matematika Mekhanika Astronomiya = Vestn. Lenin. U. Mma. Vestnik Ministerstva Nauki--Akademiya Nauk Respubliki Kazakhstan = Vestn. Minister. Nauki Akad. Nauk Resp. Kaz. Vestnik Mordovskogo Universiteta = Vestn. Mord. Univ. Vestnik Moskovskogo Universiteta (filol. sekcija) = VMUFILOL Vestnik Moskovskogo Universiteta (filos. sekcija) = VMUFILOS Vestnik Moskovskogo Universiteta (ist. sekcija) = VMUIST Vestnik Moskovskogo universiteta. Seriia V, Geografiia = Vestn Mosk Univ Ser V Vestnik Moskovskogo universiteta. Seriia VIII: Istoriia. Moskovskii gosudarstvennyi universitet im. M.V. Lomonosova = Vestn Mosk Univ Ser 8 Istor Vestnik Moskovskogo Universiteta Seriya 1 Matematika Mekhanika = Vestn Mosk U Mat M+ Vestnik Moskovskogo Universiteta Seriya 1 Matematika Mekhanika = Vestn. Mosk. U. Mat. M+.+ Vestnik Moskovskogo Universiteta Seriya 2 Khimiya = Vestn Mosk U Khim+ Vestnik Moskovskogo Universiteta Seriya 2 Khimiya = Vestn. Mosk. U. Khim+.+ Vestnik Moskovskogo Universiteta, Seriya 2: Khimiya = Vestn. Mosk. Univ., Ser. 2: Khim. Vestnik Moskovskogo Universiteta Seriya 3 Fizika Astronomiya = Vestn Mosk U Fiz As+ Vestnik Moskovskogo Universiteta Seriya 3 Fizika Astronomiya = Vestn. Mosk. U. Fiz. As+.+ Vestnik Moskovskogo Universiteta, Seriya 3: Fizika, Astronomiya = Vestn. Mosk. Univ., Ser. 3: Fiz., Astron. Vestnik Moskovskogo Universiteta = Vestnik Moskov. Univ. Ser. III Fiz. Astronom. Vestnik Moskovskogo Universiteta = Vestnik Moskov. Univ. Ser. I Mat. Mekh. Vestnik Moskovskogo Universiteta = Vestnik Moskov. Univ. Ser. XV Vychisl. Mat. Kibernet. Vestnik oftalmologii = Vestn Oftalmol Vestnik Oftalmologii=Vestn Oftalmol;; Vestnik Oftalmologii = Vestn Oftalmol Vestnik Oftalmologii = Vestn. Oftalmol. Vestnik otorinolaringologii = Vestn Otorinolaringol Vestnik Otorinolaringologii=Vestn Otorinolaringol;; Vestnik Otorinolaringologii = Vestn. Otorinolaringol. Vestnik rentgenologii i radiologii = Vestn Rentgenol Radiol Vestnik Rentgenologii i Radiologii = Vestn. Rentgenol. Radiol. Vestnik Rentgenologii I Radiologii=Vestn Rentgenol Radiol;; Vestnik Rossiiskoi akademii meditsinskikh nauk / Rossiiskaia akademiia meditsinskikh nauk = Vestn Ross Akad Med Nauk Vestnik Rossiiskoi Akademii Meditsinskikh Nauk = Vestn Ros Akad Med+ Vestnik Rossiiskoi Akademii Meditsinskikh Nauk = Vestn. Ros. Akad. Med+.+ Vestnik Rossiiskoi Akademii Meditsinskikh Nauk=Vestn Ross Akad Med Nauk;; Vestnik Rossiiskoi Akademii Meditsinskikh Nauk = Vestn. Ross. Akad. Med. Nauk Vestnik Rossiiskoi Akademii Nauk = Vestn Ros Akad Nauk+ Vestnik Rossiiskoi Akademii Nauk = Vestn. Ros. Akad. Nauk+.+ Vestnik Sankt-Peterburgskogo Universiteta, Seriya 4: Fizika, Khimiya = Vestn. S.-Peterb. Univ., Ser. 4: Fiz., Khim. Vestnik Sankt-Peterburgskogo Universiteta = Vestnik S.-Peterburg. Univ. Fiz. Khim. Vestnik Sankt-Peterburgskogo Universiteta = Vestnik S.-Peterburg. Univ. Mat. Mekh. Astronom. Vestnik Slovenskega Kemijskega Drustva = Vestn. Slov. Kem. Drus. Vestnik statistiki (Moscow, Russia : 1949) = Vestn Statistiki Vestnik St = Vestnik St. Petersburg Univ. Math. Vestnik venerologii i dermatologii = Vestn Venerol Dermatol Vestsi Akademii Navuk Belarusi, Seryya Biyalagichnykh Navuk = Vestsi Akad. Navuk BSSR, Ser. Biyal. Navuk Vestsi Akademii Navuk Belarusi, Seryya Fizika-Energetychnykh Navuk = Vestsi Akad. Navuk BSSR, Ser. Fiz.-Energ. Navuk Vestsi Akademii Navuk Belarusi, Seryya Khimichnykh Navuk = Vestsi Akad. Navuk BSSR, Ser. Khim. Navuk Vestsi Natsyyanal'nai Akademii Navuk Belarusi, Seryya Khimichnykh Navuk = Vestsi Nats. Akad. Navuk Belarusi, Ser. Khim. Navuk Vetera Christianorum = VetChr Vetera christianorum = VeteraChr Veterans Benefits and Care = Def Secur Strateg Veterans Benefits and Care = Def. Secur. Strateg. Veterinair Historisch Genootschap cahier = Vet Historisch Genoot Cah Veterinaria Italiana (series) = Veter Ital Ser Veterinaria Italiana (series) = Veter. Ital. Ser. Veterinaria italiana = Vet Ital Veterinaria Italiana = Vet Ital Veterinaria Italiana = Vet. Ital. Veterinaria Mexico = Vet Mexico Veterinaria Mexico = Vet. Mexico Veterinarian = Veterinarian Veterinaria-spofa = Veterinaria-spofa Veterinaria = Veterinaria Veterinaria = Veterinaria-cremona Veterinaria = Veterinaria-cremona. Veterinariia = Veterinariia Veterinarija Ir Zootechnika = Vet Zootec Veterinarija Ir Zootechnika = Vet. Zootec. Veterinarija Ir Zootechnika = Vet Zootech-lith Veterinarija Ir Zootechnika = Vet. Zootech-lith. Veterinar-medizinische Nachrichten = Vet Med Nachr Veterinarni Medicina = Vet Med-czech Veterinarni Medicina = Vet. Med-czech. Veterinarni medicina = Vet Med (Praha) Veterinarni Medicina = Vet. Med. (Praha) Veterinarno-meditsinski nauki = Vet Med Nauki Veterinarnomeditsinski Nauki = Vet. Med. Nauki Veterinarski Arhiv = Vet Arhiv Veterinarski Arhiv = Vet. Arhiv Veterinarstvi = Veterinarstvi Veterinary anaesthesia and analgesia = Vet Anaesth Analg Veterinary Anaesthesia and Analgesia = Vet Anaesth Analg Veterinary Anaesthesia and Analgesia = Vet. Anaesth. Analg. Veterinary and Comparative Oncology = Vet Comp Oncol Veterinary and Comparative Oncology = Vet. Comp. Oncol. Veterinary and comparative orthopaedics and traumatology : V.C.O.T = Vet Comp Orthop Traumatol Veterinary and Comparative Orthopaedics and Traumatology = Vet Comp Orthopaed Veterinary and Comparative Orthopaedics and Traumatology = Vet. Comp. Orthopaed. Veterinary and human toxicology = Vet Hum Toxicol Veterinary and Human Toxicology=Vet Hum Toxicol;; Veterinary and Human Toxicology = Vet Hum Toxicol Veterinary and Human Toxicology = Vet. Hum. Toxicol. Veterinary clinical pathology / American Society for Veterinary Clinical Pathology = Vet Clin Pathol Veterinary Clinical Pathology = Vet Clin Path Veterinary Clinical Pathology = Vet. Clin. Path. Veterinary Clinics of North America-equine Practice = Vet Clin N Am-equine Veterinary Clinics of North America-equine Practice = Vet. Clin. N. Am-equine. Veterinary Clinics of North America. Equine Practice=Vet Clin North Am Equine Pract;; Veterinary Clinics of North America. Equine Practice = Vet. Clin. North Am. Equine Pract. Veterinary Clinics of North America. Exotic Animal Practice = Veterinary Clin. North Am. Exot. Anim. Pract. Veterinary Clinics of North America-food Animal Practice = Vet Clin N Am-food A Veterinary Clinics of North America-food Animal Practice = Vet. Clin. N. Am-food. A. Veterinary Clinics of North America. Food Animal Practice=Vet Clin North Am Food Anim Pract;; Veterinary Clinics of North America. Food Animal Practice = Vet. Clin. North Am. Food Anim. Pract. Veterinary Clinics of North America-large Animal Practice = Vet Clin N Am-large Veterinary Clinics of North America-large Animal Practice = Vet. Clin. N. Am-large. Veterinary Clinics of North America. Large Animal Practice = Vet. Clin. North Am. Large Anim. Pract. Veterinary Clinics of North America-small Animal Practice = Vet Clin N Am-small Veterinary Clinics of North America-small Animal Practice = Vet. Clin. N. Am-small. Veterinary Clinics of North America. Small Animal Practice=Vet Clin North Am Small Anim Pract;; Veterinary Clinics of North America. Small Animal Practice = Vet. Clin. North Am. Small Anim. Pract. Veterinary Clinics of North America = Vet Clin N Am Veterinary Clinics of North America = Vet. Clin. N. Am. Veterinary Clinics of North America = Vet. Clin. North Am. Veterinary & Comparative Ophthalmology = Vet Comp Ophthalmol Veterinary & Comparative Ophthalmology = Vet. Comp. Ophthalmol. Veterinary dermatology = Vet Dermatol Veterinary Dermatology = Vet Dermatol Veterinary Dermatology = Vet. Dermatol. Veterinary Drug Residues = Acs Sym Ser Veterinary Drug Residues = Acs. Sym. Ser. Veterinary Economics = Vet Econ Veterinary Economics = Vet. Econ. Veterinary heritage : bulletin of the American Veterinary History Society = Vet Herit Veterinary history = Vet Hist Veterinary Immunology and Immunopathology = Vet Immunol Immunop Veterinary Immunology and Immunopathology = Vet. Immunol. Immunop. Veterinary immunology and immunopathology = Vet Immunol Immunopathol Veterinary Immunology and Immunopathology=Vet Immunol Immunopathol;; Veterinary Immunology and Immunopathology = Vet. Immunol. Immunopathol. Veterinary Ireland Journal = Vet Ireland J Veterinary Ireland Journal = Vet. Ireland J. Veterinary journal (London, England : 1997) = Vet J Veterinary Journal=Vet J;; Veterinary Journal = Vet J Veterinary Journal = Vet. J. Veterinary medical review = Vet Med Rev Veterinary Medical Review = Vet. Med. Rev. Veterinary Medical Specialization: Bridging Science and Medicine = Adv Vet Sci Comp Med Veterinary Medical Specialization: Bridging Science and Medicine = Adv. Vet. Sci. Comp. Med. Veterinary Medicine, Small Animal Clinician = Vet. Med. Small Anim. Clin. Veterinary Medicine & Small Animal Clinician = Vet Med Sm Anim Clin Veterinary Medicine & Small Animal Clinician = Vet. Med. Sm. Anim. Clin. Veterinary medicine, small animal clinician : VM, SAC = Vet Med Small Anim Clin Veterinary medicine = Vet Med Veterinary Medicine = Vet Med-us Veterinary Medicine = Vet. Med-us. Veterinary microbiology = Vet Microbiol Veterinary Microbiology=Vet Microbiol;; Veterinary Microbiology = Vet Microbiol Veterinary Microbiology = Vet. Microbiol. Veterinary ophthalmology = Vet Ophthalmol Veterinary Ophthalmology = Vet Ophthalmol Veterinary Ophthalmology = Vet. Ophthalmol. Veterinary parasitology = Vet Parasitol Veterinary Parasitology=Vet Parasitol;; Veterinary Parasitology = Vet Parasitol Veterinary Parasitology = Vet. Parasitol. Veterinary pathology. Supplement = Vet Pathol Suppl Veterinary Pathology. Supplement = Vet. Pathol. Suppl. Veterinary pathology = Vet Pathol Veterinary Pathology=Vet Pathol;; Veterinary Pathology = Vet Pathol Veterinary Pathology = Vet. Pathol. Veterinary Pharmaceuticals in The Environment = Acs Sym Ser Veterinary Pharmaceuticals in The Environment = Acs. Sym. Ser. Veterinary Practice Staff = Vet Pract Staff Veterinary Practice Staff = Vet. Pract. Staff Veterinary Practitioner = Vet Pract Veterinary Practitioner = Vet. Pract. Veterinary Quarterly=Vet Q;; Veterinary Quarterly = Vet. Q. Veterinary Quarterly = Vet Quart Veterinary Quarterly = Vet. Quart. Veterinary Radiology and Ultrasound=Vet Radiol Ultrasound;; Veterinary Radiology and Ultrasound = Vet. Radiol. Ultrasound Veterinary radiology & ultrasound : the official journal of the American College of Veterinary Radiology and the International Veterinary Radiology Association = Vet Radiol Ultrasound Veterinary Radiology & Ultrasound = Vet Radiol Ultrasoun Veterinary Radiology & Ultrasound = Vet. Radiol. Ultrasoun. Veterinary Radiology = Vet Radiology Veterinary Radiology = Vet. Radiology Veterinary Record=Vet Rec;; Veterinary Record = Vet Rec Veterinary Record = Vet. Rec. Veterinary research communications = Vet Res Commun Veterinary Research Communications=Vet Res Commun;; Veterinary Research Communications = Vet Res Commun Veterinary Research Communications = Vet. Res. Commun. Veterinary research = Vet Res Veterinary Research=Vet Res;; Veterinary Research = Vet Res Veterinary Research = Vet. Res. Veterinary Science Communications = Vet Sci Commun Veterinary Science Communications = Vet. Sci. Commun. Veterinary Surgery=Vet Surg;; Veterinary Surgery = Vet Surg Veterinary Surgery = Vet. Surg. Veterinary surgery : VS : the official journal of the American College of Veterinary Surgeons = Vet Surg Veterinary Technician = Vet Tech Veterinary Technician = Vet. Tech. Veterinary therapeutics : research in applied veterinary medicine = Vet Ther Veterinary Therapeutics = Vet Ther Veterinary Therapeutics = Vet. Ther. Vetus Testamentum: quarterly publ. by the International Organization of Old Testament Scholars = VT Vetus Testamentum = Vetus Testamentum VGB Kraftwerkstechnik = VGB Kraftwerkstech. Viable Methods of Soil and Water Pollution Monitoring, Protection and Remediation = Nato Sci S Ss Iv Ear Viable Methods of Soil and Water Pollution Monitoring, Protection and Remediation = Nato. Sci. S. Ss. Iv. Ear. Viable New Paradigm for Quantum Reality = Phys Res Technol Viable New Paradigm for Quantum Reality = Phys. Res. Technol. Via Folios = Via Folios Vial-vigo International Journal of Applied Linguistics = Vial-vigo Int J Appl Vial-vigo International Journal of Applied Linguistics = Vial-vigo Int. J. Appl. Viata medicala; revista de informare profesionala si stiintifica a cadrelor medii sanitare = Viata Med Rev Inf Prof Stiint Cadrelor Medii Sanit Viata Medicala; Revista de Informare Profesionala si Stiintifica a Cadrelor Medii Sanitare = Viata Med. Rev. Inf. Prof. Stiint. Cadrelor Medii Sanit. Viata medicala = Viata Med Viator-medieval and Renaissance Studies = Viator-mediev Renais Viator-medieval and Renaissance Studies = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 38, No 1 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 38, No 1 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 38, No 2 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 38, No 2 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 39, No 1 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 39, No 1 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 39, No 2 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 39, No 2 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 40, No 1 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 40, No 1 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 40, No 2 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 40, No 2 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 41, No 1 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 41, No 1 = Viator-mediev. Renais. Viator: Medieval and Renaissance Studies, Vol 41, No 2 = Viator-mediev Renais Viator: Medieval and Renaissance Studies, Vol 41, No 2 = Viator-mediev. Renais. Viator = Viator Via = Via Vibrational Spectra and Structure: A Series of Advances = Vibrat Spec Vibrational Spectra and Structure: A Series of Advances = Vibrat. Spec. Vibrational Spectra and Structure, Vol 17 B = Vibrat Spec Vibrational Spectra and Structure, Vol 17 B = Vibrat. Spec. Vibrational Spectroscopy-based Sensor Systems = P Soc Photo-opt Ins Vibrational Spectroscopy-based Sensor Systems = P. Soc. Photo-opt. Ins. Vibrational Spectroscopy = Vib Spectrosc Vibrational Spectroscopy = Vib. Spectrosc. Vibration Control in Microelectronics, Optics, and Metrology = P Soc Photo-opt Ins Vibration Control in Microelectronics, Optics, and Metrology = P. Soc. Photo-opt. Ins. Vibration Control of Active Structures: An Introduction, Third Edition = Solid Mech Appl Vibration Control of Active Structures: An Introduction, Third Edition = Solid. Mech. Appl. Vibration Dynamics and Control = Mech Eng Ser Vibration Dynamics and Control = Mech. Eng. Ser. Vibration Monitoring and Control = P Soc Photo-opt Ins Vibration Monitoring and Control = P. Soc. Photo-opt. Ins. Vibration Problems Icovp 2005 = Springer Proc Phys Vibration Problems Icovp 2005 = Springer. Proc. Phys. Vibration Problems, Icovp-2007 = Springer Proc Phys Vibration Problems, Icovp-2007 = Springer. Proc. Phys. Vibrations in Plant and Equipment = Vdi Bericht Vibrations in Plant and Equipment = Vdi. Bericht. Vibrations in Rotating Machinery = Imeche Conf Trans Vibrations in Rotating Machinery = Imeche. Conf. Trans. Vibrations in Rotating Machinery - International Conference = Proc Inst Mech Eng S Vibrations in Rotating Machinery - International Conference = Proc. Inst. Mech. Eng. S. Vibrations of Mechanical Systems With Regular Structure = Found Eng Mech Vibrations of Mechanical Systems With Regular Structure = Found. Eng. Mech. Vibroengineering-kaunas = Vibroengineering Kau Vibroengineering-kaunas = Vibroengineering. Kau. Vibro-impact Dynamics = Lect Notes Appl Comp Vibro-impact Dynamics = Lect. Notes. Appl. Comp. Vibro-impact Dynamics of Ocean Systems and Related Problems = Ln App C M Vibro-impact Dynamics of Ocean Systems and Related Problems = Ln. App. C. M. Vibronic Interactions: Jahn-teller Effect in Crystals and Molecules = Nato Sci Ser Ii-math Vibronic Interactions: Jahn-teller Effect in Crystals and Molecules = Nato. Sci. Ser. Ii-math. Vibronic Interactions: Jahn-teller Effect in Crystals and Molecules = Nato Sci Ser Ii Math Vibronic Interactions: Jahn-teller Effect in Crystals and Molecules = Nato. Sci. Ser. Ii. Math. Vibro = Vibro Vichiana: rassegna di studi filologici e storici = Vichiana Vichiana. Rassegna di studi filologici e storici = Vichiana Vicino Oriente = VicOr Victimhood, Vengefulness, and The Culture of Forgiveness = Psychiat Theor Appl Victimhood, Vengefulness, and The Culture of Forgiveness = Psychiat. Theor. Appl. Victimology = Victimology Victims and Victimization in French and Francophone Literature = Fr Lit Ser Victims and Victimization in French and Francophone Literature = Fr. Lit. Ser. Victims of Abuse = Mg S Ralph Victims of Abuse = Mg. S. Ralph. Victorian Christmas in Print = Ninet-century Major Victorian Christmas in Print = Ninet-century. Major. Victorian Detective Fiction and The Nature of Evidence: The Scientific Investigations of Poe, Dickens, and Doyle = Palgrave Stud Ninet- Victorian Detective Fiction and The Nature of Evidence: The Scientific Investigations of Poe, Dickens, and Doyle = Palgrave. Stud. Ninet-. Victorian Literature and Culture = Victorian Lit Cult Victorian Literature and Culture = Victorian Lit. Cult. Victorian Narrative Technologies in The Middle East = Lit Crit Cult Theory Victorian Narrative Technologies in The Middle East = Lit. Crit. Cult. Theory. Victorian Newsletter = Victorian Newsl Victorian Newsletter = Victorian Newsl. Victorian periodicals newsletter = Vic Period Newsl Victorian periodicals review = Vic Period Rev Victorian Periodicals Review = Vic Period Rev Victorian Periodicals Review = Vic. Period. Rev. Victorian Poetry = Victorian Poetry Victorian Press and The Fairy Tale = Palgrave Stud Ninet- Victorian Press and The Fairy Tale = Palgrave. Stud. Ninet-. Victorian Servants, Class, and The Politics of Literacy = Routl Stud Ninet Cen Victorian Servants, Class, and The Politics of Literacy = Routl. Stud. Ninet. Cen. Victorian studies = Vic Stud Victorian Studies = Victorian Stud Victorian Studies = Victorian Stud. Victorian Travel Writing and Imperial Violence: British Writing On Africa, 1855-1902 = Palgrave Stud Ninet- Victorian Travel Writing and Imperial Violence: British Writing On Africa, 1855-1902 = Palgrave. Stud. Ninet-. Victorian veterinary proceedings / Australian Veterinary Association (Victorian Division) = Vic Vet Proc Victoria University of Wellington law review / Law Faculty = Law Rev Vida nueva = Vida Nueva Vida Odontologica = Vida Odontol Vida Odontologica = Vida Odontol. Video Communications and Pacs for Medical Applications = Proc Spie Video Communications and Pacs for Medical Applications = Proc. Spie. Video Communications and Pacs for Medical Applications = P Soc Photo-opt Ins Video Communications and Pacs for Medical Applications = P. Soc. Photo-opt. Ins. Videoconferencing: Technology, Impact and Applications = Media Commun Technol Videoconferencing: Technology, Impact and Applications = Media. Commun. Technol. Videodisc and Optical Disk = Videodisc Opt Disk Videodisc and Optical Disk = Videodisc Opt. Disk Videodisc-videotex = Videodisc-videotex Video Encryption Technology and Application = Media Commun Technol Video Encryption Technology and Application = Media. Commun. Technol. Videometrics and Optical Methods for 3d Shape Measurement = Proc Spie Videometrics and Optical Methods for 3d Shape Measurement = Proc. Spie. Videometrics and Optical Methods for 3d Shape Measurement = P Soc Photo-opt Ins Videometrics and Optical Methods for 3d Shape Measurement = P. Soc. Photo-opt. Ins. Videometrics Iii = P Soc Photo-opt Ins Videometrics Iii = P. Soc. Photo-opt. Ins. Videometrics Ii = P Soc Photo-opt Ins Videometrics Ii = P. Soc. Photo-opt. Ins. Videometrics Iv = P Soc Photo-opt Ins Videometrics Iv = P. Soc. Photo-opt. Ins. Videometrics Ix = P Soc Photo-opt Ins Videometrics Ix = P. Soc. Photo-opt. Ins. Videometrics = P Soc Photo-opt Ins Videometrics = P. Soc. Photo-opt. Ins. Videometrics, Range Imaging, and Applications Xi = Proc Spie Videometrics, Range Imaging, and Applications Xi = Proc. Spie. Videometrics Viii = Proc Spie Videometrics Viii = Proc. Spie. Videometrics Viii = P Soc Photo-opt Ins Videometrics Viii = P. Soc. Photo-opt. Ins. Videometrics Vii = P Soc Photo-opt Ins Videometrics Vii = P. Soc. Photo-opt. Ins. Videometrics Vi = Proc Spie Videometrics Vi = Proc. Spie. Videometrics Vi = P Soc Photo-opt Ins Videometrics Vi = P. Soc. Photo-opt. Ins. Videometrics V = P Soc Photo-opt Ins Videometrics V = P. Soc. Photo-opt. Ins. Video Mining = Int Ser Video Comput Video Mining = Int. Ser. Video Comput. Video Mining = Klu Int S Video Comp Video Mining = Klu. Int. S. Video Comp. Video Search and Mining = Stud Comput Intell Video Search and Mining = Stud. Comput. Intell. Videosurgery and Other Miniinvasive Techniques = Videosurgery Miniinv Videosurgery and Other Miniinvasive Techniques = Videosurgery Miniinv. Video Techniques and Software for Full-service Networks = P Soc Photo-opt Ins Video Techniques and Software for Full-service Networks = P. Soc. Photo-opt. Ins. Video Technologies for Multimedia Applications = P Soc Photo-opt Ins Video Technologies for Multimedia Applications = P. Soc. Photo-opt. Ins. Vide-science Technique Et Applications = Vide Vide-science Technique Et Applications = Vide. Vie D'acqua A Udine: Uno Studio Storico E Naturalistico Delle Rogge Di Udine E Palma E Del Canale Ledra = Pubbl Varie Mus Friu Vie D'acqua A Udine: Uno Studio Storico E Naturalistico Delle Rogge Di Udine E Palma E Del Canale Ledra = Pubbl. Varie. Mus. Friu. Vie et langage = Vie Lang Vie Et Milieu-life and Environment = Vie Milieu Vie Et Milieu-life and Environment = Vie Milieu. Vie et milieu (Paris, France : 1980) = Vie Milieu Paris Vie Et Milieu Serie A-biologie Marine = Vie Milieu A Biol Ma Vie Et Milieu Serie A-biologie Marine = Vie Milieu A. Biol. Ma. Vie Et Milieu Serie B-oceanographie = Vie Milieu B Oceanog Vie Et Milieu Serie B-oceanographie = Vie Milieu B. Oceanog. Vie Et Milieu Serie C-biologie Terrestre = Vie Milieu C Biol Te Vie Et Milieu Serie C-biologie Terrestre = Vie Milieu C. Biol. Te. Vie et sante = Vie Sante Vielstimmige Rede Vom Unsagbaren: Dekonstruktion, Glaube Und Kierkegaards Pseudonyme Literatur = Kierke Stud Monogr S Vielstimmige Rede Vom Unsagbaren: Dekonstruktion, Glaube Und Kierkegaards Pseudonyme Literatur = Kierke. Stud. Monogr. S. Vie Medicale au Canada Francais = Vie Med. Can. Fr. Vie Medicale Au Canada Francais = Vie Med Can Fr Vie Medicale Au Canada Francais = Vie Med. Can. Fr. Vie medicale (Paris, France : 1920) = Vie Med Vi Encuentro Franco-espanol De Quimica Y Fisica Del Estado Solido - Vi Rencontre Franco-espagnole Sur La Chimie Et La Physique De L Etat Solide = Physcs Proc Vi Encuentro Franco-espanol De Quimica Y Fisica Del Estado Solido - Vi Rencontre Franco-espagnole Sur La Chimie Et La Physique De L Etat Solide = Physcs. Proc. Vienna Circle and Logical Empiricism: Re-evaluation and Future Perspectives = Vienna Circ Inst Yea Vienna Circle and Logical Empiricism: Re-evaluation and Future Perspectives = Vienna Circ. Inst. Yea. Vienna Circle Collection = Vienna Circ Collect Vienna Circle Collection = Vienna Circ. Collect. Vienna Circle Institute Yearbook = Vien Cir Inst Yearbk Vienna Circle Institute Yearbook = Vien. Cir. Inst. Yearbk. Vienna Circle Institute Yearbook = Vienna Circ Inst Yea Vienna Circle Institute Yearbook = Vienna Circ. Inst. Yea. Vienna Circle in The Nordic Countries: Networks and Transformations of Logical Empiricism = Vien Cir Inst Yearbk Vienna Circle in The Nordic Countries: Networks and Transformations of Logical Empiricism = Vien. Cir. Inst. Yearbk. Vienna Series in Theoretical Biology = Vienna Ser Theor Bio Vienna Series in Theoretical Biology = Vienna Ser. Theor. Bio. Vienna Series in Theoretical Biology = Vienna S Theor Biol Vienna Series in Theoretical Biology = Vienna S. Theor. Biol. Vientiane: Transformations of A Lao Landscape = Asias Transform Vientiane: Transformations of A Lao Landscape = Asias. Transform. Vierteljahresberichte / Forschungsinstitut der Friedrich-Ebert-Stiftung = Vierteljahresberichte Vierteljahrschrift Fur Sozial- Und Wirtschaftsgeschichte - Beihefte = Vier Soz Wirts Beih Vierteljahrschrift Fur Sozial- Und Wirtschaftsgeschichte - Beihefte = Vier. Soz. Wirts. Beih. Vierteljahrschrift fur Sozial- und Wirtschaftsgeschichte = Vierteljahrschr Soz Wirtschaftsgesch Vierteljahrshefte fur Zeitgeschichte = Vierteljahrsh Zeitgesch Vierteljahrshefte Fur Zeitgeschichte = Vierteljahr Zeitges Vierteljahrshefte Fur Zeitgeschichte = Vierteljahr. Zeitges. Vierteljahrsheftze zur Wirtschaftsforschung=Vierteljahrs. Wirtschaftsforschung Vierteljahrsschrift der Naturforschenden Gesellschaft in Zürich = Vierteljahrsschr. Nat.forsch. Ges. Zür. Vierteljahrsschrift fur schweizerische Sanitatsoffiziere. Journal trimestriel des officiers suisses du service de sante. Rivista trimestrale degli ufficiali sanitari svizzeri = Vierteljahrsschr Schweiz Sanitatsoff Vierteljahrsschrift fur Schweizerische Sanitatsoffiziere = Vierteljahrsschr. Schweiz. Sanitatsoff. Vietnam: A Guide to Economic and Political Developments = Guide Econ Polit Dev Vietnam: A Guide to Economic and Political Developments = Guide Econ. Polit. Dev. Vietnam in Iraq: Tactics, Lessons, Legacies and Ghosts = Contemp Secur Stud Vietnam in Iraq: Tactics, Lessons, Legacies and Ghosts = Contemp. Secur. Stud. Vietnam Journal of Mathematics = Vietnam J. Math. Vieweg Mathematik = Vieweg Math. Vieweg Studium: Aufbaukurs Mathematik = Vieweg Stud. Aufbaukurs Math. Vieweg Studium: Grundkurs Mathematik = Vieweg Stud. Grundkurs Math. Vieweg Textbook Mathematics = Vieweg Textbook Math. Views On Ericksonian Brief Therapy, Process and Action = Ericksonian Views On Evolvability of Embedded Systems = Embed Syst Views On Evolvability of Embedded Systems = Embed. Syst. Views On Fuzzy Sets and Systems From Differenct Perspectives: Philosophy and Logic, Criticisms and Applications = Stud Fuzz Soft Comp Views On Fuzzy Sets and Systems From Differenct Perspectives: Philosophy and Logic, Criticisms and Applications = Stud. Fuzz. Soft. Comp. Vigilance and Performance in Automatized Systems = Nato Adv Sci I D-beh Vigilance and Performance in Automatized Systems = Nato. Adv. Sci. I. D-beh. Vigilando = Vigilando Vigiliae Christianae: a review of early Christian life and language = VChr Vigiliae christianae = VigChr Vigiliae Christianae = Vigiliae Christian Vigiliae Christianae = Vigiliae Christian. Vi Hotine-marussi Symposium On Theoretical and Computational Geodesy = Iag Symp Vi Hotine-marussi Symposium On Theoretical and Computational Geodesy = Iag. Symp. Viii Australian Tunnelling Conference: Finding Common Ground = Australas I Min Met Viii Australian Tunnelling Conference: Finding Common Ground = Australas. I. Min. Met. Viii Congress of The International Organization for Septuagint and Cognate Studies, Paris 1992 = Sbl Sept Co Viii Congress of The International Organization for Septuagint and Cognate Studies, Paris 1992 = Sbl. Sept. Co. Viii International Symposium On Radiation From Relativistic Electrons in Periodic Structures (rreps-2009) = J Phys Conf Ser Viii International Symposium On Radiation From Relativistic Electrons in Periodic Structures (rreps-2009) = J. Phys. Conf. Ser. Viii Latin American Regional Meeting of Astronomy = Rev Mex Ast Astr Viii Latin American Regional Meeting of Astronomy = Rev. Mex. Ast. Astr. Viii Latin American Symposium On Nuclear Physics and Applications = Aip Conf Proc Viii Latin American Symposium On Nuclear Physics and Applications = Aip. Conf. Proc. Viii National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz Nauk Wydzialu B Viii National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz. Nauk. Wydzialu. B. Viii Reunion Regional Latinoamericana De Astronomia Union Astronomica International = Rev Mex Ast Astr Viii Reunion Regional Latinoamericana De Astronomia Union Astronomica International = Rev. Mex. Ast. Astr. Vii Latin American Symposium On Nuclear Physics and Applications = Aip Conf Proc Vii Latin American Symposium On Nuclear Physics and Applications = Aip. Conf. Proc. Vii Mexican School On Gravitation and Mathematical Physics = J Phys Conf Ser Vii Mexican School On Gravitation and Mathematical Physics = J. Phys. Conf. Ser. Vii National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz Nauk Wydzialu B Vii National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz. Nauk. Wydzialu. B. Vii National Symposium On Fast Ion Conductors = Molecul Phys Rep Vii National Symposium On Fast Ion Conductors = Molecul. Phys. Rep. Vi International Symposium On Inflammatory Bowel Diseases = Falk Symp Vi International Symposium On Inflammatory Bowel Diseases = Falk. Symp. Vi International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta Hortic Vi International Symposium On Plum and Prune Genetics, Breeding and Pomology = Acta. Hortic. Viith International Symposium On Pear Growing = Acta Hortic Viith International Symposium On Pear Growing = Acta. Hortic. Viitorul social = Viitorul Soc Vijnana Parishad Anusandhan Patrika = Vijnana Parishad Anusandhan Patrika Vijnana Parishad of India = Bull. Vijnana Parishad India Vikalpa = Vikalpa Viking World = Routledge Worlds Viking World = Routledge. Worlds. Vi Latin American Symposium On Nuclear Physics and Applications = Aip Conf Proc Vi Latin American Symposium On Nuclear Physics and Applications = Aip. Conf. Proc. Villages in The Future: Crops, Jobs and Livelihood = Global Dial Expo Villages in The Future: Crops, Jobs and Livelihood = Global. Dial. Expo. Village voice (Greenwich Village, New York, N.Y.) = Village Voice Villanova law review = Villanova Law Rev Villa Spelman Colloquia = Vill Spel C Villa Spelman Colloquia = Vill. Spel. C. Villes Et Territoires = Villes Terr Villes Et Territoires = Villes Terr. Villes Et Territories = Villes Territ Villes Et Territories = Villes Territ. Vi Mexican School On Gravitation and Mathematical Physics = J Phys Conf Ser Vi Mexican School On Gravitation and Mathematical Physics = J. Phys. Conf. Ser. Viminacium. Zbornik radova Narodnog muzeja = Viminacium Vina Del Mar Workshop On Cataclysmic Variable Stars = Astr Soc P Vina Del Mar Workshop On Cataclysmic Variable Stars = Astr. Soc. P. Vina quarterly = VINA Q VINA Quarterly = VINA Q. Vi National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz Nauk Wydzialu B Vi National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz. Nauk. Wydzialu. B. Vinca and Its World = Serb Ac Sym Vinca and Its World = Serb. Ac. Sym. Vindiciae Gallicae: Defence of The French Revolution: A Critical Edition = Stud Mod Hist Vindiciae Gallicae: Defence of The French Revolution: A Critical Edition = Stud. Mod. Hist. Vine and Wine Economy = Dev Agr Ec Vine and Wine Economy = Dev. Agr. Ec. Vingtieme siecle (Paris, France : 1984) = Vingtieme Siecle Vingtieme Siecle-revue D Histoire = Vingtieme Siecle-rev Vingtieme Siecle-revue D Histoire = Vingtieme Siecle-rev. V-invex Functions and Vector Optimization = Springer Ser Optim A V-invex Functions and Vector Optimization = Springer. Ser. Optim. A. Violence Against Women : Nursing Research, Education, and Practice Issues = S Hlth C W Violence Against Women : Nursing Research, Education, and Practice Issues = S. Hlth. C. W. Violence Against Women = Violence Against Wom Violence Against Women = Violence Against Wom. Violence against women = Violence Against Women Violence Against Women: Vulnerable Populations = Contemp Sociol Persp Violence Against Women: Vulnerable Populations = Contemp. Sociol. Persp. Violence Among The Mentally Ill = Nato Adv Sci I D-beh Violence Among The Mentally Ill = Nato. Adv. Sci. I. D-beh. Violence and Belief in Late Antiquity: Militant Devotion in Christianity and Islam = Divin Reread Late An Violence and Belief in Late Antiquity: Militant Devotion in Christianity and Islam = Divin. Reread. Late An. Violence and Exploitation Against Women and Girls = Ann Ny Acad Sci Violence and Exploitation Against Women and Girls = Ann. Ny. Acad. Sci. Violence and Non-violence in Africa = Routl Adv Int Relat Violence and Non-violence in Africa = Routl. Adv. Int. Relat. Violence and victims = Violence Vict Violence and Victims=Violence Vict;; Violence and Victims = Violence Vict. Violence and Victims = Violence Victims Violence As A Public Health Issue = Roy Soc Med Int Cong Violence As A Public Health Issue = Roy. Soc. Med. Int. Cong. Violence in French and Francophone Literature and Film = Fr Lit Ser Violence in French and Francophone Literature and Film = Fr. Lit. Ser. Violence, L' Ordre Et La Paix: Resoudre Les Conflits En Gascogne Du Xi Au Debut De Xiii Siecle = Tempus Ser Violence, L' Ordre Et La Paix: Resoudre Les Conflits En Gascogne Du Xi Au Debut De Xiii Siecle = Tempus. Ser. Violence of Incarceration = Routl Adv Criminol Violence of Incarceration = Routl. Adv. Criminol. Violence, Terrorism, and Justice = Cam St Phil Violence, Terrorism, and Justice = Cam. St. Phil. Violence Update = Violence Update Violent Crime and Prisons: Population, Health Conditions and Recidivism = Crim Justice Law Enf Violent Crime and Prisons: Population, Health Conditions and Recidivism = Crim. Justice. Law. Enf. Violent Femmes: Women As Spies in Popular Culture = Transformations-lond Violent Femmes: Women As Spies in Popular Culture = Transformations-lond. Violent Passions: Managing Love in The Old French Verse Romance = Stud Arthur Court Cu Violent Passions: Managing Love in The Old French Verse Romance = Stud. Arthur. Court. Cu. Violent Separatism in Xinjiang: A Critical Assessment = Pol Stud Violent Separatism in Xinjiang: A Critical Assessment = Pol. Stud. Vip, Pacap, and Related Peptides, 2nd International Symposium = Ann Ny Acad Sci Vip, Pacap, and Related Peptides, 2nd International Symposium = Ann. Ny. Acad. Sci. Vip, Pacap, and Related Peptides = Ann Ny Acad Sci Vip, Pacap, and Related Peptides = Ann. Ny. Acad. Sci. Vip, Pacap, and Related Peptides: From Gene to Therapy = Ann Ny Acad Sci Vip, Pacap, and Related Peptides: From Gene to Therapy = Ann. Ny. Acad. Sci. Vip, Pacap, Glucagon, and Related Peptides = Ann Ny Acad Sci Vip, Pacap, Glucagon, and Related Peptides = Ann. Ny. Acad. Sci. Viral Cancers: Cytologic Tools in Diagnosis and Management = Cancer Etiol Diagn T Viral Cancers: Cytologic Tools in Diagnosis and Management = Cancer. Etiol. Diagn. T. Viral Gene Expression Regulation = Gen-res Issues Viral Gene Expression Regulation = Gen-res. Issues. Viral Hepatitis C, D and E = Int Congr Ser Viral Hepatitis C, D and E = Int. Congr. Ser. Viral Hepatitis in Children: Unique Features and Opportunities = Clin Gastroent-ser Viral Hepatitis in Children: Unique Features and Opportunities = Clin. Gastroent-ser. Viral immunology = Viral Immunol Viral Immunology=Viral Immunol;; Viral Immunology = Viral Immunol Viral Immunology = Viral Immunol. Viral Oncogenesis and Cell Differentiation = Ann Ny Acad Sci Viral Oncogenesis and Cell Differentiation = Ann. Ny. Acad. Sci. Viral Polymerases and Related Proteins = Method Enzymol Viral Polymerases and Related Proteins = Method. Enzymol. Viral Polymerases and Related Proteins = Methods Enzymol Viral Polymerases and Related Proteins = Methods. Enzymol. Viral Proteases and Antiviral Protease Inhibitor Therapy: Proteases in Biology and Disease = Proteases Biol Dis Viral Proteases and Antiviral Protease Inhibitor Therapy: Proteases in Biology and Disease = Proteases Biol. Dis. Viral Proteins Counteracting Host Defenses = Curr Top Microbiol Viral Proteins Counteracting Host Defenses = Curr. Top. Microbiol. Viral Safety and Evaluation of Viral Clearance From Biopharmaceutical Products = Dev Biol Stand Viral Safety and Evaluation of Viral Clearance From Biopharmaceutical Products = Dev. Biol. Stand. Viral Vectors for Gene Therapy: Methods and Protocols = Methods Mol Biol Viral Vectors for Gene Therapy: Methods and Protocols = Methods Mol. Biol. Viral Vectors for Treating Diseases of The Nervous System = Int Rev Neurobiol Viral Vectors for Treating Diseases of The Nervous System = Int. Rev. Neurobiol. Virchows Archiv Abteilung A Pathologische Anatomie = Virchows Arch A Virchows Archiv Abteilung A Pathologische Anatomie = Virchows Arch. A Virchows Archiv Abteilung B Zellpathologie = Virchows Arch B Virchows Archiv Abteilung B Zellpathologie = Virchows Arch. B Virchows Archiv : an international journal of pathology = Virchows Arch Virchows Archiv-an International Journal of Pathology = Virchows Arch Virchows Archiv-an International Journal of Pathology = Virchows Arch. Virchows Archiv. A, Pathological anatomy and histology = Virchows Arch A Pathol Anat Histol Virchows Archiv. A. Pathological Anatomy and Histology = Virchows Arch. A Pathol. Anat. Histol. Virchows Archiv A-pathological Anatomy and Histopathology = Virchows Arch A Virchows Archiv A-pathological Anatomy and Histopathology = Virchows Arch. A. Virchows Archiv. A, Pathological anatomy and histopathology = Virchows Arch A Pathol Anat Histopathol Virchows Archiv. A, Pathological Anatomy and Histopathology = Virchows Arch. A Pathol. Anat. Histopathol. Virchows Archiv. A, Pathology, Pathologische Anatomie = Virchows Arch. A Pathol. Pathol. Anat. Virchows Archiv. A: Pathology. Pathologische Anatomie = Virchows Arch A Pathol Pathol Anat Virchows Archiv B-cell Pathology Including Molecular Pathology = Virchows Arch B Virchows Archiv B-cell Pathology Including Molecular Pathology = Virchows Arch. B. Virchows Archiv. B, Cell pathology including molecular pathology = Virchows Arch B Cell Pathol Incl Mol Pathol Virchows Archiv. B, Cell Pathology Including Molecular Pathology = Virchows Arch. B Cell Pathol. Incl. Mol. Pathol. Virchows Archiv. B: Cell pathology = Virchows Arch B Cell Pathol Virchows Archiv. B. Cell Pathology = Virchows Arch. B Cell Pathol. Virchows Archiv Fur Pathologische Anatomie Und Physiologie Und Fur Klinische Medizin = Virchows Arch A Virchows Archiv Fur Pathologische Anatomie Und Physiologie Und Fur Klinische Medizin = Virchows Arch. A. Virchows Archiv fur pathologische Anatomie und Physiologie und fur klinische Medizin = Virchows Arch Pathol Anat Physiol Klin Med Virchows Archiv fur Pathologische Anatomie und Physiologie und fur Klinische Medizin = Virchows Arch. Pathol. Anat. Physiol. Klin. Med. Virchows Archiv=Virchows Arch;; Virchows Archiv = Virchows Arch Virchows Archiv = Virchows Arch. Virginia Agricultural Economics = Va Agr Econ Virginia Agricultural Economics = Va. Agr. Econ. Virginia Agricultural Experiment Station Bulletin = Va Agr Exp Stat B Virginia Agricultural Experiment Station Bulletin = Va. Agr. Exp. Stat. B. Virginia bar news = Va Bar News Virginia cavalcade = Va Cavalcade Virginia dental journal = Va Dent J Virginia Dental Journal = Va. Dent. J. Virginia journal of international law = VA J Int Law Virginia Journal of International Law = Va J Int Law Virginia Journal of International Law = Va. J. Int. Law Virginia journal of science = Va J Sci Virginia journal of social policy & the law = Va J Soc Policy Law Virginia law review = Va Law Rev Virginia Law Review = Va Law Rev Virginia Law Review = Va. Law Rev. Virginia Magazine of History and Biography = Va Mag Hist Biog Virginia Magazine of History and Biography = Va. Mag. Hist. Biog. Virginia Medical Monthly = Va. Med. Mon. Virginia medical monthly = Va Med Mon (1918) Virginia Medical Quarterly=Va Med Q;; Virginia Medical Quarterly = Va. Med. Q. Virginia medical quarterly : VMQ = Va Med Q Virginia medical = Va Med Virginia Medical = Va Med Virginia Medical = Va. Med. Virginia nurse quarterly = Va Nurse Q Virginia Nurse Quarterly = Va. Nurse Q. Virginia nurse = Va Nurse Virginia Nurse = Va. Nurse Virginia Polytechnic Institute Extension Service-virginia Agricultural Economics = Va Poly I Ext Serv V Virginia Polytechnic Institute Extension Service-virginia Agricultural Economics = Va. Poly. I. Ext. Serv. V. Virginia Polytechnic Institute Research Division Bulletin = Va Poly I Res Div B Virginia Polytechnic Institute Research Division Bulletin = Va. Poly. I. Res. Div. B. Virginia Quarterly Review = Va Quart Rev Virginia Quarterly Review = Va. Quart. Rev. Virginia review of sociology = Va Rev Sociol Virginia Woolf and War = Syr S Peace Virginia Woolf and War = Syr. S. Peace. Virginia Woolf Quarterly = Virginia Woolf Quart Virginia Woolf Quarterly = Virginia Woolf Quart. Virginia Woolf: Texts and Contexts = Woolf St An Virginia Woolf: Texts and Contexts = Woolf. St. An. Virological Safety Aspects of Plasma Derivatives = Dev Biol Stand Virological Safety Aspects of Plasma Derivatives = Dev. Biol. Stand. Virologie = Virologie Virology journal = Virol J Virology Journal = Virol J Virology Journal = Virol. J. Virology monographs. Die Virusforschung in Einzeldarstellungen = Virol Monogr Virology Monographs = Virol. Monogr. Virology Research Progress = Virol Res Prog Virology Research Progress = Virol. Res. Prog. Virology=Virology;; Virology = Virology Virtual and Mixed Reality, Proceedings = Lect Notes Comput Sc Virtual and Mixed Reality, Proceedings = Lect. Notes. Comput. Sc. Virtual and Rapid Manufacturing = Proc Monogr Eng Wate Virtual and Rapid Manufacturing = Proc. Monogr. Eng. Wate. Virtual Art: From Illusion to Immersion = Leonardo Ser Virtual Art: From Illusion to Immersion = Leonardo. Ser. Virtual Colonoscopy: A Practical Guide, Second Edition = Med Radiol Diagn Ima Virtual Colonoscopy: A Practical Guide, Second Edition = Med. Radiol. Diagn. Ima. Virtual Decomposition Control: Toward Hyper Degrees of Freedom Robots = Springer Trac Adv Ro Virtual Decomposition Control: Toward Hyper Degrees of Freedom Robots = Springer. Trac. Adv. Ro. Virtual Design and Manufacture = Imeche Sem Virtual Design and Manufacture = Imeche. Sem. Virtual Enterprises and Collaborative Networks = Int Fed Info Proc Virtual Enterprises and Collaborative Networks = Int. Fed. Info. Proc. Virtual Environments 2000 = Spring Comp Sci Virtual Environments 2000 = Spring. Comp. Sci. Virtuality and Virtualization = Int Fed Info Proc Virtuality and Virtualization = Int. Fed. Info. Proc. Virtual Laboratory = Virtual Lab Virtual Laboratory = Virtual Lab. Virtual Manufacturing = Springer Ser Adv Man Virtual Manufacturing = Springer. Ser. Adv. Man. Virtual Observatories of The Future, Proceedings = Astr Soc P Virtual Observatories of The Future, Proceedings = Astr. Soc. P. Virtual Observatories = Proc Spie Virtual Observatories = Proc. Spie. Virtual Observatories = P Soc Photo-opt Ins Virtual Observatories = P. Soc. Photo-opt. Ins. Virtual Product Design in Automotive Engineering = Vdi Bericht Virtual Product Design in Automotive Engineering = Vdi. Bericht. Virtual Prototyping: Vtt Research Programme 1998-2000 = Vtt Symp Virtual Prototyping: Vtt Research Programme 1998-2000 = Vtt Symp. Virtual Reality, Proceedings = Lect Notes Comput Sc Virtual Reality, Proceedings = Lect. Notes. Comput. Sc. Virtual Storytelling, Proceedings = Lect Notes Comput Sc Virtual Storytelling, Proceedings = Lect. Notes. Comput. Sc. Virtual Storytelling: Using Virtual Reality Technologies for Storytelling, Proceedings = Lect Notes Comput Sc Virtual Storytelling: Using Virtual Reality Technologies for Storytelling, Proceedings = Lect. Notes. Comput. Sc. Virtual Systems and Multimedia = Lect Notes Comput Sc Virtual Systems and Multimedia = Lect. Notes. Comput. Sc. Virtual University: Educational Environments of The Future = Wenn Gr Int Virtual University: Educational Environments of The Future = Wenn. Gr. Int. Virtual Utility: Accounting, Technology & Competitive Aspects of The Emerging Industry = T Reg Econ Virtual Utility: Accounting, Technology & Competitive Aspects of The Emerging Industry = T. Reg. Econ. Virtual Worlds: Controversies At The Frontier of Education = Educ Compet Glob Wor Virtual Worlds: Controversies At The Frontier of Education = Educ. Compet. Glob. Wor. Virtual Worlds = Lect Notes Artif Int Virtual Worlds = Lect. Notes. Artif. Int. Virtual Worlds of Precision: Computer-based Simulations in The Sciences and Social Sciences = Methoden Virtual Worlds of Precision: Computer-based Simulations in The Sciences and Social Sciences = Methoden. Virtue and Ethics in The Twelfth Century = Brill S In Virtue and Ethics in The Twelfth Century = Brill. S. In. Virtue, Liberty, and Toleration: Political Ideas of European Women, 1400-1800 = New Syn Hist L Virtue, Liberty, and Toleration: Political Ideas of European Women, 1400-1800 = New. Syn. Hist. L. Virtue, Liberty, and Toleration: Political Ideas of European Women, 1400-1800 = New Synth Hist Lib Virtue, Liberty, and Toleration: Political Ideas of European Women, 1400-1800 = New. Synth. Hist. Lib. Virtues and Passions in Literature: Excellence, Courage, Engagements, Wisdom, Fulfilment = Anal Hus Yb Virtues and Passions in Literature: Excellence, Courage, Engagements, Wisdom, Fulfilment = Anal. Hus. Yb. Virulence = Virulence Virus Diseases and Crop Biosecurity = Nato Sci Peace Secur Virus Diseases and Crop Biosecurity = Nato. Sci. Peace. Secur. Viruses and Cancer = Symp Soc Gen Microbi Viruses and Cancer = Symp. Soc. Gen. Microbi. Viruses and Nanotechnology = Curr Top Microbiol Viruses and Nanotechnology = Curr. Top. Microbiol. Viruses-basel = Viruses-basel Viruses That Affect The Immune System = Icn Uci C V Viruses That Affect The Immune System = Icn. Uci. C. V. Virus genes = Virus Genes Virus Genes=Virus Genes;; Virus Genes = Virus Genes Virus information exchange newsletter for South-East Asia and the Western Pacific = Virus Inf Exch Newsl South East Asia West Pac Virus research. Supplement = Virus Res Suppl Virus Research. Supplement=Virus Res Suppl;; Virus Research. Supplement = Virus Res. Suppl. Virus research = Virus Res Virus Research=Virus Res;; Virus Research = Virus Res Virus Research = Virus Res. Virus Structure = Adv Protein Chem Virus Structure = Adv. Protein. Chem. Virus Structure and Assembly = Adv Virus Res Virus Structure and Assembly = Adv. Virus Res. Virus = Virus Visceral Pain = Prog Pain Res Manag Visceral Pain = Prog. Pain Res. Manag. Viscoelasticity of Biomaterials = Acs Sym Ser Viscoelasticity of Biomaterials = Acs. Sym. Ser. Viscosity Solutions and Applications = Lect Notes Math Viscosity Solutions and Applications = Lect. Notes. Math. Viscous Profiles and Numerical Methods for Shock Waves = Siam Proc S Viscous Profiles and Numerical Methods for Shock Waves = Siam. Proc. S. Vishwa International Journal of Graph Theory = Vishwa Internat. J. Graph Theory Visible Language = Visible Lang Visible Language = Visible Lang. Visible Religion: annual for religious iconography = VRel Visible Religion = VisRel Visible Variation: Comparative Studies On Sign Language Structure = Trends Linguist-stud Visible Variation: Comparative Studies On Sign Language Structure = Trends. Linguist-stud. Vision and Adaptation = Sem Ophtalm Vision and Adaptation = Sem. Ophtalm. Vision and The Brain = Res P Arnmd Vision and The Brain = Res. P. Arnmd. Vision and Uv Lasers = P Soc Photo-opt Ins Vision and Uv Lasers = P. Soc. Photo-opt. Ins. Vision: From Neurons to Cognition = Prog Brain Res Vision: From Neurons to Cognition = Prog. Brain. Res. Vision Geometry Iii = Proc Spie Vision Geometry Iii = Proc. Spie. Vision Geometry Iii = P Soc Photo-opt Ins Vision Geometry Iii = P. Soc. Photo-opt. Ins. Vision Geometry Ii = P Soc Photo-opt Ins Vision Geometry Ii = P. Soc. Photo-opt. Ins. Vision Geometry Iv = P Soc Photo-opt Ins Vision Geometry Iv = P. Soc. Photo-opt. Ins. Vision Geometry Ix = Proc Spie Vision Geometry Ix = Proc. Spie. Vision Geometry Ix = P Soc Photo-opt Ins Vision Geometry Ix = P. Soc. Photo-opt. Ins. Vision Geometry = P Soc Photo-opt Ins Vision Geometry = P. Soc. Photo-opt. Ins. Vision Geometry Viii = Proc Spie Vision Geometry Viii = Proc. Spie. Vision Geometry Viii = P Soc Photo-opt Ins Vision Geometry Viii = P. Soc. Photo-opt. Ins. Vision Geometry Vii = P Soc Photo-opt Ins Vision Geometry Vii = P. Soc. Photo-opt. Ins. Vision Geometry Vi = P Soc Photo-opt Ins Vision Geometry Vi = P. Soc. Photo-opt. Ins. Vision Geometry V = P Soc Photo-opt Ins Vision Geometry V = P. Soc. Photo-opt. Ins. Vision Geometry Xiii = Proc Spie Vision Geometry Xiii = Proc. Spie. Vision Geometry Xiii = P Soc Photo-opt Ins Vision Geometry Xiii = P. Soc. Photo-opt. Ins. Vision Geometry Xii = Proc Spie Vision Geometry Xii = Proc. Spie. Vision Geometry Xii = P Soc Photo-opt Ins Vision Geometry Xii = P. Soc. Photo-opt. Ins. Vision Geometry Xi = P Soc Photo-opt Ins Vision Geometry Xi = P. Soc. Photo-opt. Ins. Vision Geometry Xiv = Proc Spie Vision Geometry Xiv = Proc. Spie. Vision Geometry Xiv = P Soc Photo-opt Ins Vision Geometry Xiv = P. Soc. Photo-opt. Ins. Vision Geometry X = Proc Spie Vision Geometry X = Proc. Spie. Vision Geometry X = P Soc Photo-opt Ins Vision Geometry X = P. Soc. Photo-opt. Ins. Visioning and Engineering The Knowledge Society: A Web Science Perspective, Proceedings = Lect Notes Artif Int Visioning and Engineering The Knowledge Society: A Web Science Perspective, Proceedings = Lect. Notes. Artif. Int. Vision Interface '95, Proceedings = Proc Canad Imag Proc Vision Interface '95, Proceedings = Proc. Canad. Imag. Proc. Vision Interface - Real World Applications of Computer Vision = Ser Mach Percept Art Vision Interface - Real World Applications of Computer Vision = Ser. Mach. Percept. Art. Vision Interface - Real World Applications of Computer Vision = S Mach Perc Vision Interface - Real World Applications of Computer Vision = S. Mach. Perc. Vision research = Vision Res Vision Research=Vision Res;; Vision Research = Vision Res Vision Research = Vision Res. Vision Science and Its Applications, Proceedings = Osa Trends Opt Photo Vision Science and Its Applications, Proceedings = Osa. Trends. Opt. Photo. Vision, Sensors, and Control for Automated Manufacturing Systems = P Soc Photo-opt Ins Vision, Sensors, and Control for Automated Manufacturing Systems = P. Soc. Photo-opt. Ins. Visions of Progress: The Left-liberal Tradition in America = Polit Cult Mod Am Visions of Progress: The Left-liberal Tradition in America = Polit. Cult. Mod. Am. Visions of The Fantastic = Contr Sci F Visions of The Fantastic = Contr. Sci. F. Visions of Tomorrow - Improving The Quality of Life Through Technology = Imeche Conf Trans Visions of Tomorrow - Improving The Quality of Life Through Technology = Imeche. Conf. Trans. Vision Systems: Applications = P Soc Photo-opt Ins Vision Systems: Applications = P. Soc. Photo-opt. Ins. Vision Systems: New Image Processing Techniques = P Soc Photo-opt Ins Vision Systems: New Image Processing Techniques = P. Soc. Photo-opt. Ins. Vision Systems: Sensors, Sensor Systems, and Components = P Soc Photo-opt Ins Vision Systems: Sensors, Sensor Systems, and Components = P. Soc. Photo-opt. Ins. Vision Tecnologica = Vis Tecnol Vision Tecnologica = Vis. Tecnol. Visitor Studies: Theory Research and Practice = Visitor Stud Theory Visitor Studies: Theory Research and Practice = Visitor Stud. Theory Visitor Studies: Theory, Research and Practice, Vol 5 = Visitor Stud Theory Visitor Studies: Theory, Research and Practice, Vol 5 = Visitor Stud. Theory. Visitor Studies: Theory, Research, and Practice, Vol 5 = Visitor Stud Theory Visitor Studies: Theory, Research, and Practice, Vol 5 = Visitor Stud. Theory. Visitor Studies: Theory, Research and Practice, Vol 6 = Visitor Stud Theory Visitor Studies: Theory, Research and Practice, Vol 6 = Visitor Stud. Theory. Visitor Use Density and Wilderness Experience: Proceedings = Us For Serv Rmrs-p Visitor Use Density and Wilderness Experience: Proceedings = Us. For. Serv. Rmrs-p. Vistas for Geodesy in The New Millennium = Iag Symp Vistas for Geodesy in The New Millennium = Iag. Symp. Vistas in Astronomy Series = Vista Ast S Vistas in Astronomy Series = Vista. Ast. S. Vistas in Astronomy = Vistas Astron Vistas in Astronomy = Vistas Astron. Vistas in Astronomy = Vistas Astronom. Vistas in Astronomy = Vistas in Astron. Vistas in Astronomy, Vol 37, Pts 1-4 = Vista Ast S Vistas in Astronomy, Vol 37, Pts 1-4 = Vista. Ast. S. Visual Art and Education in An Era of Designer Capitalism: Deconstructing The Oral Eye = Psychoanal Educ Soc Visual Art and Education in An Era of Designer Capitalism: Deconstructing The Oral Eye = Psychoanal. Educ. Soc. Visual Arthroscopy Series = Vis Arthrosc Ser Visual Arthroscopy Series = Vis. Arthrosc. Ser. Visual cognition = Vis cogn Visual Cognition = Vis Cogn Visual Cognition = Vis. Cogn. Visual Communications and Image Processing 2000, Pts 1-3 = Proc Spie Visual Communications and Image Processing 2000, Pts 1-3 = Proc. Spie. Visual Communications and Image Processing 2000, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing 2000, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2001 = P Soc Photo-opt Ins Visual Communications and Image Processing 2001 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2002, Pts 1 and 2 = Proc Spie Visual Communications and Image Processing 2002, Pts 1 and 2 = Proc. Spie. Visual Communications and Image Processing 2002, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 2002, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2003, Pts 1-3 = Proc Spie Visual Communications and Image Processing 2003, Pts 1-3 = Proc. Spie. Visual Communications and Image Processing 2003, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing 2003, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2004, Pts 1 and 2 = Proc Spie Visual Communications and Image Processing 2004, Pts 1 and 2 = Proc. Spie. Visual Communications and Image Processing 2004, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 2004, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2005, Pts 1-4 = Proc Spie Visual Communications and Image Processing 2005, Pts 1-4 = Proc. Spie. Visual Communications and Image Processing 2005, Pts 1-4 = P Soc Photo-opt Ins Visual Communications and Image Processing 2005, Pts 1-4 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2006, Pts 1 and 2 = Proc Spie Visual Communications and Image Processing 2006, Pts 1 and 2 = Proc. Spie. Visual Communications and Image Processing 2006, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 2006, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2007, Pts 1 and 2 = Proc Spie Visual Communications and Image Processing 2007, Pts 1 and 2 = Proc. Spie. Visual Communications and Image Processing 2007, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 2007, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 2008, Pts 1 and 2 = Proc Spie Visual Communications and Image Processing 2008, Pts 1 and 2 = Proc. Spie. Visual Communications and Image Processing 2008, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 2008, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 90, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing 90, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 91 : Image Processing, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 91 : Image Processing, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 91 : Visual Communications, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing 91 : Visual Communications, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 92, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing 92, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing 93, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing 93, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '94, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing '94, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '95, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing '95, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '96 = P Soc Photo-opt Ins Visual Communications and Image Processing '96 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '97, Pts 1-2 = P Soc Photo-opt Ins Visual Communications and Image Processing '97, Pts 1-2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '98, Pts 1 and 2 = P Soc Photo-opt Ins Visual Communications and Image Processing '98, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing '99, Parts 1-2 = Proc Spie Visual Communications and Image Processing '99, Parts 1-2 = Proc. Spie. Visual Communications and Image Processing '99, Parts 1-2 = P Soc Photo-opt Ins Visual Communications and Image Processing '99, Parts 1-2 = P. Soc. Photo-opt. Ins. Visual Communications and Image Processing Iv, Pts 1-3 = P Soc Photo-opt Ins Visual Communications and Image Processing Iv, Pts 1-3 = P. Soc. Photo-opt. Ins. Visual Communication = Vis Communic Visual Communication = Vis. Communic. Visual Communication = Visual Communic Visual Communication = Visual Communic. Visual Communication = Visual Commun-us Visual Communication = Visual Commun-us. Visual Complexity and Intelligent Computer Graphics Techniques Enhancements = Stud Comput Intell Visual Complexity and Intelligent Computer Graphics Techniques Enhancements = Stud. Comput. Intell. Visual Computer = Visual Comput Visual Computer = Visual Comput. Visual Content Processing and Representation = Lect Notes Comput Sc Visual Content Processing and Representation = Lect. Notes. Comput. Sc. Visual Content Processing and Representation, Proceedings = Lect Notes Comput Sc Visual Content Processing and Representation, Proceedings = Lect. Notes. Comput. Sc. Visual Database Systems, Ii = Ifip Trans A Visual Database Systems, Ii = Ifip. Trans. A. Visual Data Exploration and Analysis Iii = P Soc Photo-opt Ins Visual Data Exploration and Analysis Iii = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis Ii = P Soc Photo-opt Ins Visual Data Exploration and Analysis Ii = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis Iv = P Soc Photo-opt Ins Visual Data Exploration and Analysis Iv = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis = P Soc Photo-opt Ins Visual Data Exploration and Analysis = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis Viii = Proc Spie Visual Data Exploration and Analysis Viii = Proc. Spie. Visual Data Exploration and Analysis Viii = P Soc Photo-opt Ins Visual Data Exploration and Analysis Viii = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis Vii = Proc Spie Visual Data Exploration and Analysis Vii = Proc. Spie. Visual Data Exploration and Analysis Vii = P Soc Photo-opt Ins Visual Data Exploration and Analysis Vii = P. Soc. Photo-opt. Ins. Visual Data Exploration and Analysis V = P Soc Photo-opt Ins Visual Data Exploration and Analysis V = P. Soc. Photo-opt. Ins. Visual Data Exploration and Anlysis Vi = Proc Spie Visual Data Exploration and Anlysis Vi = Proc. Spie. Visual Data Exploration and Anlysis Vi = P Soc Photo-opt Ins Visual Data Exploration and Anlysis Vi = P. Soc. Photo-opt. Ins. Visual Data Interpretation = P Soc Photo-opt Ins Visual Data Interpretation = P. Soc. Photo-opt. Ins. Visual Data Mining: Theory, Techniques and Tools for Visual Analytics = Lect Notes Comput Sc Visual Data Mining: Theory, Techniques and Tools for Visual Analytics = Lect. Notes. Comput. Sc. Visual Double Stars: Formation, Dynamics and Evolutionary Tracks = Astrophys Space Sc L Visual Double Stars: Formation, Dynamics and Evolutionary Tracks = Astrophys. Space. Sc. L. Visual Informatics: Bridging Research and Practice = Lect Notes Comput Sc Visual Informatics: Bridging Research and Practice = Lect. Notes. Comput. Sc. Visual Information and Information Systems = Lect Notes Comput Sc Visual Information and Information Systems = Lect. Notes. Comput. Sc. Visual Information Processing and Communication = Proc Spie Visual Information Processing and Communication = Proc. Spie. Visual Information Processing for Television and Telerobotics = Nasa Conf P Visual Information Processing for Television and Telerobotics = Nasa. Conf. P. Visual Information Processing Iii = P Soc Photo-opt Ins Visual Information Processing Iii = P. Soc. Photo-opt. Ins. Visual Information Processing Ii = P Soc Photo-opt Ins Visual Information Processing Ii = P. Soc. Photo-opt. Ins. Visual Information Processing Iv = P Soc Photo-opt Ins Visual Information Processing Iv = P. Soc. Photo-opt. Ins. Visual Information Processing Ix = Proc Spie Visual Information Processing Ix = Proc. Spie. Visual Information Processing Ix = P Soc Photo-opt Ins Visual Information Processing Ix = P. Soc. Photo-opt. Ins. Visual Information Processing = P Soc Photo-opt Ins Visual Information Processing = P. Soc. Photo-opt. Ins. Visual Information Processing Viii = Proc Spie Visual Information Processing Viii = Proc. Spie. Visual Information Processing Viii = P Soc Photo-opt Ins Visual Information Processing Viii = P. Soc. Photo-opt. Ins. Visual Information Processing Vii = P Soc Photo-opt Ins Visual Information Processing Vii = P. Soc. Photo-opt. Ins. Visual Information Processing Vi = P Soc Photo-opt Ins Visual Information Processing Vi = P. Soc. Photo-opt. Ins. Visual Information Processing V = P Soc Photo-opt Ins Visual Information Processing V = P. Soc. Photo-opt. Ins. Visual Information Processing Xiii = Proc Spie Visual Information Processing Xiii = Proc. Spie. Visual Information Processing Xiii = P Soc Photo-opt Ins Visual Information Processing Xiii = P. Soc. Photo-opt. Ins. Visual Information Processing Xii = Proc Spie Visual Information Processing Xii = Proc. Spie. Visual Information Processing Xii = P Soc Photo-opt Ins Visual Information Processing Xii = P. Soc. Photo-opt. Ins. Visual Information Processing Xi = P Soc Photo-opt Ins Visual Information Processing Xi = P. Soc. Photo-opt. Ins. Visual Information Processing Xiv = Proc Spie Visual Information Processing Xiv = Proc. Spie. Visual Information Processing Xiv = P Soc Photo-opt Ins Visual Information Processing Xiv = P. Soc. Photo-opt. Ins. Visual Information Processing Xix = P Soc Photo-opt Ins Visual Information Processing Xix = P. Soc. Photo-opt. Ins. Visual Information Processing X = P Soc Photo-opt Ins Visual Information Processing X = P. Soc. Photo-opt. Ins. Visual Information Processing Xvii = Proc Spie Visual Information Processing Xvii = Proc. Spie. Visual Information Processing Xvi = P Soc Photo-opt Ins Visual Information Processing Xvi = P. Soc. Photo-opt. Ins. Visual Information Processing Xv = Proc Spie Visual Information Processing Xv = Proc. Spie. Visual Information Processing Xv = P Soc Photo-opt Ins Visual Information Processing Xv = P. Soc. Photo-opt. Ins. Visual Information Processing Xx = Proc Spie Visual Information Processing Xx = Proc. Spie. Visual Information Systems: Web-based Visual Information Search and Management, Visual 2008 = Lect Notes Comput Sc Visual Information Systems: Web-based Visual Information Search and Management, Visual 2008 = Lect. Notes. Comput. Sc. Visual Interfaces to Digital Libraries = Lect Notes Comput Sc Visual Interfaces to Digital Libraries = Lect. Notes. Comput. Sc. Visuality in The Theatre - The Locus of Looking = Perform Interv Visuality in The Theatre - The Locus of Looking = Perform. Interv. Visualization 2000, Proceedings = Ieee Visual Visualization 2000, Proceedings = Ieee. Visual. Visualization 2001, Proceedings = Ieee Visual Visualization 2001, Proceedings = Ieee. Visual. Visualization '94, Proceedings = Ieee Visual Visualization '94, Proceedings = Ieee. Visual. Visualization '96, Proceedings = Ieee Visual Visualization '96, Proceedings = Ieee. Visual. Visualization and Data Analysis 2002 = Proc Spie Visualization and Data Analysis 2002 = Proc. Spie. Visualization and Data Analysis 2002 = P Soc Photo-opt Ins Visualization and Data Analysis 2002 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2003 = Proc Spie Visualization and Data Analysis 2003 = Proc. Spie. Visualization and Data Analysis 2003 = P Soc Photo-opt Ins Visualization and Data Analysis 2003 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2004 = Proc Spie Visualization and Data Analysis 2004 = Proc. Spie. Visualization and Data Analysis 2004 = P Soc Photo-opt Ins Visualization and Data Analysis 2004 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2005 = Proc Spie Visualization and Data Analysis 2005 = Proc. Spie. Visualization and Data Analysis 2005 = P Soc Photo-opt Ins Visualization and Data Analysis 2005 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2006 = Proc Spie Visualization and Data Analysis 2006 = Proc. Spie. Visualization and Data Analysis 2006 = P Soc Photo-opt Ins Visualization and Data Analysis 2006 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2007 = Proc Spie Visualization and Data Analysis 2007 = Proc. Spie. Visualization and Data Analysis 2007 = P Soc Photo-opt Ins Visualization and Data Analysis 2007 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2008 = Proc Spie Visualization and Data Analysis 2008 = Proc. Spie. Visualization and Data Analysis 2010 = Proc Spie Visualization and Data Analysis 2010 = Proc. Spie. Visualization and Data Analysis 2010 = P Soc Photo-opt Ins Visualization and Data Analysis 2010 = P. Soc. Photo-opt. Ins. Visualization and Data Analysis 2011 = Proc Spie Visualization and Data Analysis 2011 = Proc. Spie. Visualization and Imaging in Transport Phenomena = Ann Ny Acad Sci Visualization and Imaging in Transport Phenomena = Ann. Ny. Acad. Sci. Visualization and Optimization Techniques = Proc Spie Visualization and Optimization Techniques = Proc. Spie. Visualization and Optimization Techniques = P Soc Photo-opt Ins Visualization and Optimization Techniques = P. Soc. Photo-opt. Ins. Visualization and Processing of Tensor Fields: Advances and Perspectives = Math Vis Visualization and Processing of Tensor Fields: Advances and Perspectives = Math. Vis. Visualization, Explanation and Reasoning Styles in Mathematics = Synth Libr Visualization, Explanation and Reasoning Styles in Mathematics = Synth. Libr. Visualization for Computer Security, Proceedings = Lect Notes Comput Sc Visualization for Computer Security, Proceedings = Lect. Notes. Comput. Sc. Visualization for Information Retrieval = Inform Retrieval Ser Visualization for Information Retrieval = Inform. Retrieval Ser. Visualization in Biomedical Computer 1994 = P Soc Photo-opt Ins Visualization in Biomedical Computer 1994 = P. Soc. Photo-opt. Ins. Visualization in Biomedical Computing 1992 : Proceedings = P Soc Photo-opt Ins Visualization in Biomedical Computing 1992 : Proceedings = P. Soc. Photo-opt. Ins. Visualization in Biomedical Computing = Lect Notes Comput Sc Visualization in Biomedical Computing = Lect. Notes. Comput. Sc. Visualization in Mathematics, Reading and Science Education = Model Model Sci Educ Visualization in Mathematics, Reading and Science Education = Model. Model. Sci. Educ. Visualization in Medicine and Life Sciences = Math Vis Visualization in Medicine and Life Sciences = Math. Vis. Visualization in Medicine and Life Sciences = Math Visual Visualization in Medicine and Life Sciences = Math. Visual. Visualization in Science Education = Model Model Sci Educ Visualization in Science Education = Model. Model. Sci. Educ. Visualization of Brain Functions = Wenner-gr C Visualization of Brain Functions = Wenner-gr. C. Visualization of Information Processing in The Human Brain = Eeg Cl N Su Visualization of Information Processing in The Human Brain = Eeg. Cl. N. Su. Visualization of Temporal and Spatial Data for Civilian and Defense Applications = P Soc Photo-opt Ins Visualization of Temporal and Spatial Data for Civilian and Defense Applications = P. Soc. Photo-opt. Ins. Visualization of Time-oriented Data = Hum-comput Int-sprin Visualization of Time-oriented Data = Hum-comput. Int-sprin. Visualization: Theory and Practice in Science Education = Model Model Sci Educ Visualization: Theory and Practice in Science Education = Model. Model. Sci. Educ. Visualizing Africa in Nineteenth-century British Travel Accounts = Routl Res Trav Writ Visualizing Africa in Nineteenth-century British Travel Accounts = Routl. Res. Trav. Writ. Visualizing Document Processing: Innovations in Communication Patterns and Textual Forms = Text Transl Comput P Visualizing Document Processing: Innovations in Communication Patterns and Textual Forms = Text. Transl. Comput. P. Visualizing Immunity = Curr Top Microbiol Visualizing Immunity = Curr. Top. Microbiol. Visualizing Utopia = Gr Stud Cult Visualizing Utopia = Gr. Stud. Cult. Visual Language of Spatial Planning: Exploring Cartographic Representations for Spatial Planning in Europe = Rtpi Lib Ser Visual Language of Spatial Planning: Exploring Cartographic Representations for Spatial Planning in Europe = Rtpi. Lib. Ser. Visual neuroscience = Vis Neurosci Visual Neuroscience=Vis Neurosci;; Visual Neuroscience = Vis. Neurosci. Visual Neuroscience = Visual Neurosci Visual Neuroscience = Visual Neurosci. Visual Perception and Cognition in Infancy = Carn S Cogn Visual Perception and Cognition in Infancy = Carn. S. Cogn. Visual Perception for Manipulation and Imitation in Humanoid Robots = Cogn Syst Monogr Visual Perception for Manipulation and Imitation in Humanoid Robots = Cogn. Syst. Monogr. Visual Perception, Part 1, Fundamentals of Vision: Low and Mid-level Processes in Perception = Prog Brain Res Visual Perception, Part 1, Fundamentals of Vision: Low and Mid-level Processes in Perception = Prog. Brain. Res. Visual Perception, Pt 2: Fundamentals of Awareness: Multi-sensory Integration and High-order Perception = Prog Brain Res Visual Perception, Pt 2: Fundamentals of Awareness: Multi-sensory Integration and High-order Perception = Prog. Brain. Res. Visual Servoing Via Advanced Numerical Methods = Lect Notes Contr Inf Visual Servoing Via Advanced Numerical Methods = Lect. Notes. Contr. Inf. Visual Structures and Integrated Functions = R N Neur C Visual Structures and Integrated Functions = R. N. Neur. C. Visual Studies = Visual Stud Visual Studies = Visual Stud. Visual Synergies in Fiction and Documentary Film From Latin America = Stud Amer Visual Synergies in Fiction and Documentary Film From Latin America = Stud. Amer. Visual World in Memory = Curr Iss Mem Visual World in Memory = Curr. Iss. Mem. Viszeralchirurgie = Viszeralchirurgie Viszeralmedizin = Viszeralmedizin Vitae-revista De La Facultad De Quimica Farmaceutica = Vitae-columbia Vitae-revista De La Facultad De Quimica Farmaceutica = Vitae-columbia. Vitae scholasticae = Vitae Scholasticae Vita humana. Internationale Zeitschrift fur Lebensaltersforschung. International journal of human development. Journal international de developpement humain = Vita Hum Int Z Lebensalterforsch Vita Humana = Vita Humana Vital and health statistics. Ser. 1, Programs and collection procedures = Vital Health Stat 1 Vital and health statistics. Ser. 4: Documents and committee reports = Vital Health Stat 4 Vital and health statistics. Series 10, Data from the National Health Survey = Vital Health Stat 10 Vital and Health Statistics. Series 10: Data from the National Health Survey = Vital Health Stat. 10. Vital and Health Statistics. Series 10: Data From The National Health Survey=Vital Health Stat 10;; Vital and health statistics. Series 11, Data from the national health survey = Vital Health Stat 11 Vital and Health Statistics. Series 11: Data from the National Health Survey = Vital Health Stat. 11. Vital and Health Statistics. Series 11: Data From The National Health Survey=Vital Health Stat 11;; Vital and health statistics. Series 13, Data from the National Health Survey = Vital Health Stat 13 Vital and Health Statistics. Series 13: Data from the National Health Survey = Vital Health Stat. 13. Vital and Health Statistics. Series 13: Data From The National Health Survey=Vital Health Stat 13;; Vital and Health Statistics. Series 14: Data from the National Health Survey = Vital Health Stat. 14. Vital and Health Statistics. Series 14: Data From The National Health Survey=Vital Health Stat 14;; Vital and Health Statistics. Series 14: Data from the National Inventory of Family Planning Services = Vital Health Stat. 14. Vital and health statistics. Series 14, Data on national health resources = Vital Health Stat 14 Vital and Health Statistics. Series 14: Data on National Health Resources = Vital Health Stat. 14. Vital and Health Statistics. Series 1: Programs and Collection Procedures = Vital Health Stat. 1. Vital and Health Statistics. Series 1: Programs And Collection Procedures=Vital Health Stat 1;; Vital and health statistics. Series 20, Data from the National Vital Statistics System = Vital Health Stat 20 Vital and Health Statistics. Series 20: Data From The National VitalStatistics System Vital Health Stat 20 Data Natl Vital Sta=Syst;; Vital and Health Statistics. Series 20: Data from the National Vital Statistics System = Vital Health Stat. 20. Data Natl. Vital Stat. Syst. Vital and health statistics. Series 21, Data from the National Vital Statistics System = Vital Health Stat 21 Vital and Health Statistics. Series 21: Data from the National Vital Statistics System = Vital Health Stat. 21. Vital and health statistics. Series 21, Data on natality, marriage, and divorce = Vital Health Stat 21 Vital and Health Statistics. Series 21: Data on Natality, Marriage, and Divorce = Vital Health Stat. 21. Vital and Health Statistics. Series 21: Data on Natality, Marriage, And Divorce=Vital Health Stat 21;; Vital and health statistics. Series 23, Data from the National Survey of Family Growth = Vital Health Stat 23 Vital and Health Statistics. Series 23: Data from the National Survey of Family Growth = Vital Health Stat. 23. Vital and Health Statistics. Series 23: Data From The National Survey of Family Growth=Vital Health Stat 23;; Vital and health statistics. Series 2, Data evaluation and methods research = Vital Health Stat 2 Vital and Health Statistics. Series 2: Data Evaluation and Methods Research = Vital Health Stat. 2. Vital and Health Statistics. Series 2: Data Evaluation And Methods Research=Vital Health Stat 2;; Vital and Health Statistics. Series 3: Analytical and Epidemiological Studies = Vital Health Stat. 3. Vital and Health Statistics. Series 3: Analytical And Epidemiological Studies=Vital Health Stat 3;; Vital and health statistics. Series 3, Analytical studies = Vital Health Stat 3 Vital and Health Statistics. Series 3: Analytical Studies = Vital Health Stat. 3. Vital and Health Statistics. Series 4: Documents and Committee Reports = Vital Health Stat. 4. Vital and Health Statistics. Series 4: Documents And Committee Reports=Vital Health Stat 4;; Vital and health statistics. Series 5, Comparative international vital and health statistics reports = Vital Health Stat 5 Vital and Health Statistics. Series 5: Comparative International Vital and Health Statistics Reports = Vital Health Stat. 5. Vital and Health Statistics. Series 5: Comparative International Vital And Health Statistics Reports=Vital Health Stat 5;; Vita Latina = VL Vital & health statistics. Series 14, Data from the national health survey = Vital Health Stat 14 Vital & health statistics. Series 14, Data from the national inventory of family planning services = Vital Health Stat 14 Vital & health statistics. Series 3, Analytical and epidemiological studies / [U.S. Dept. of Health and Human Services, Public Health Service, National Center for Health Statistics] = Vital Health Stat 3 Vitality of Enjoyment in Qohelet's Theological Rhetoric = Beih Z Alttest Wiss Vitality of Enjoyment in Qohelet's Theological Rhetoric = Beih. Z. Alttest. Wiss. Vital Signs = Vital Signs Vital speeches of the day = Vital Speeches Day Vital Speeches of the Day = Vital Speeches Day Vitalstoffe-Zivilisationskrankheiten = Vitalst Zivilisationskr Vita Mathematica = Vita Math. Vitamin A = Vitam Horm Vitamin A = Vitam. Horm. Vitamin B12 Deficiency = Roy S Med S Vitamin B12 Deficiency = Roy. S. Med. S. Vitamin B6 = Ann Ny Acad Sci Vitamin B6 = Ann. Ny. Acad. Sci. Vitamin D Analogs in Cancer Prevention and Therapy = Recent Res Cancer Vitamin D Analogs in Cancer Prevention and Therapy = Recent. Res. Cancer Vitamin D: Physiology, Molecular Biology, and Clinical Applications, Second Edition = Nutr Health Ser Vitamin D: Physiology, Molecular Biology, and Clinical Applications, Second Edition = Nutr. Health. Ser. Vitamin E and Health = Ann Ny Acad Sci Vitamin E and Health = Ann. Ny. Acad. Sci. Vitamin E : Biochemistry and Health Implications = Ann Ny Acad Sci Vitamin E : Biochemistry and Health Implications = Ann. Ny. Acad. Sci. Vitamine und Hormone = Vitam Horm Leipzig Vitamin E: Vitamins and Hormones Advances in Research and Applications = Vitam Horm Vitamin E: Vitamins and Hormones Advances in Research and Applications = Vitam. Horm. Vitamin K = Vitam Horm Vitamin K = Vitam. Horm. Vitamins and Cancer Prevention = Cont Iss Cl Vitamins and Cancer Prevention = Cont. Iss. Cl. Vitamins and Coenzymes, Pt I = Method Enzymol Vitamins and Coenzymes, Pt I = Method. Enzymol. Vitamins and Coenzymes, Pt J = Method Enzymol Vitamins and Coenzymes, Pt J = Method. Enzymol. Vitamins and Coenzymes, Pt J = Methods Enzymol Vitamins and Coenzymes, Pt J = Methods. Enzymol. Vitamins and Coenzymes, Pt K = Method Enzymol Vitamins and Coenzymes, Pt K = Method. Enzymol. Vitamins and Coenzymes, Pt L = Method Enzymol Vitamins and Coenzymes, Pt L = Method. Enzymol. Vitamins and Hormones-advances in Research and Applications = Vitam Horm Vitamins and Hormones-advances in Research and Applications = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 48 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 48 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 51 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 51 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 52 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 52 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 53 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 53 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 54 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 54 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 55 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 55 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 57 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 57 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 58 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 58 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 60 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 60 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 61 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 61 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 62 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 62 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 63 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 63 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 64 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 64 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 65 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 65 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 66 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 66 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 69 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 69 = Vitam. Horm. Vitamins and Hormones - Advances in Research and Applications, Vol 71 = Vitam Horm Vitamins and Hormones - Advances in Research and Applications, Vol 71 = Vitam. Horm. Vitamins and Hormones: Anandamide An Endogenous Cannabinoid = Vitam Horm Vitamins and Hormones: Anandamide An Endogenous Cannabinoid = Vitam. Horm. Vitamins and Hormones, Ghrelin = Vitam Horm Vitamins and Hormones, Ghrelin = Vitam. Horm. Vitamins and Hormones: Incretins and Insulin Secretion = Vitam Horm Vitamins and Hormones: Incretins and Insulin Secretion = Vitam. Horm. Vitamins and Hormones Insulin and Igfs = Vitam Horm Vitamins and Hormones Insulin and Igfs = Vitam. Horm. Vitamins and Hormones (New York) = Vitam. Horm. (N.Y.) Vitamins and Hormones: Pheromones = Vitam Horm Vitamins and Hormones: Pheromones = Vitam. Horm. Vitamins and hormones = Vitam Horm Vitamins and Hormones=Vitam Horm;; Vitamins and Hormones = Vitam Horm Vitamins and Hormones = Vitam. Horm. Vitamins and Hormones, Vol 47 = Vitam Horm Vitamins and Hormones, Vol 47 = Vitam. Horm. Vitamins and Hormones, Vol 49 = Vitam Horm Vitamins and Hormones, Vol 49 = Vitam. Horm. Vitamins and The Immune System = Vitam Horm Vitamins and The Immune System = Vitam. Horm. Vith International Symposium On Digestive Physiology in Pigs, Proceedings, Vols 1 and 2 = Eaap Public Vith International Symposium On Digestive Physiology in Pigs, Proceedings, Vols 1 and 2 = Eaap. Public. Viticulture - Living With Limitations = Acta Hortic Viticulture - Living With Limitations = Acta. Hortic. Vitis = Vitis Vitreo-retinal Surgery = Essent Ophthalmol Vitreo-retinal Surgery = Essent. Ophthalmol. Vitrinite Reflectance As A Maturity Parameter = Acs Sym Ser Vitrinite Reflectance As A Maturity Parameter = Acs. Sym. Ser. Vitushkin's Conjecture for Removable Sets = Universitext Vitushkin's Conjecture for Removable Sets = Universitext. Vivarium: a journal for mediaeval philosophy and the intellectual life of the Middle Ages = Vivarium Vivarium-an International Journal for The Philosophy and Intellectual Life of The Middle Ages and Renaissance = Vivarium Vivarium-an International Journal for The Philosophy and Intellectual Life of The Middle Ages and Renaissance = Vivarium. Vivarium Scyllacense. Bollettino dell’Istituto di studi su Cassiodoro e sul medioevo in Calabria = VivScyl Vivarium = Vivarium Vivre autrement = Vivre Autrement Vizantijskij vremennik = VizVrem Vizcaya: An American Villa and Its Makers = Penn Stud Landsc Arc Vizcaya: An American Villa and Its Makers = Penn. Stud. Landsc. Arc. Vizsec 2007 = Math Visual Vizsec 2007 = Math. Visual. Vjesnik Arheološkog muzeja u Zagrebu = VjesAMuzZagreb Vjesnik za arheologiju i historiju dalmatinsku. Bulletin d’archéologie et d’histoire dalmates = VjesDal Vjesnik Za Arheologiju I Povijest Dalmatinsku = Vjesn Arheol Povij D Vjesnik Za Arheologiju I Povijest Dalmatinsku = Vjesn. Arheol. Povij. D. Vlaams Diergeneeskundig Tijdschrift = Vlaams Diergen Tijds Vlaams Diergeneeskundig Tijdschrift = Vlaams Diergen. Tijds. Vladimir Solov'ev: Reconciler and Polemcist = East Christ Studies Vladimir Solov'ev: Reconciler and Polemcist = East. Christ. Studies. Vldb Journal = Vldb J Vldb Journal = Vldb J. Vlsi 91 = Ifip Trans A Vlsi 91 = Ifip. Trans. A. Vlsi 93 = Ifip Trans A Vlsi 93 = Ifip. Trans. A. Vlsi Circuits and Systems Iii = Proc Spie Vlsi Circuits and Systems Iii = Proc. Spie. Vlsi Circuits and Systems Iii = P Soc Photo-opt Ins Vlsi Circuits and Systems Iii = P. Soc. Photo-opt. Ins. Vlsi Circuits and Systems Ii, Pts 1 and 2 = Proc Spie Vlsi Circuits and Systems Ii, Pts 1 and 2 = Proc. Spie. Vlsi Circuits and Systems Ii, Pts 1 and 2 = P Soc Photo-opt Ins Vlsi Circuits and Systems Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Vlsi Circuits and Systems = Proc Spie Vlsi Circuits and Systems = Proc. Spie. Vlsi Circuits and Systems = P Soc Photo-opt Ins Vlsi Circuits and Systems = P. Soc. Photo-opt. Ins. Vlsi Circuits and Systems V = Proc Spie Vlsi Circuits and Systems V = Proc. Spie. Vlsi Design = Vlsi Des Vlsi Design = Vlsi Des. Vlsi-soc: Advanced Topics On Systems On A Chip = Int Fed Info Proc Vlsi-soc: Advanced Topics On Systems On A Chip = Int. Fed. Info. Proc. Vlsi-soc: From Systems to Chips = Int Fed Info Proc Vlsi-soc: From Systems to Chips = Int. Fed. Info. Proc. Vlsi-soc: From Systems to Silicon = Int Fed Info Proc Vlsi-soc: From Systems to Silicon = Int. Fed. Info. Proc. Vlsi-soc: Research Trends in Vlsi and Systems On Chip = Int Fed Info Proc Vlsi-soc: Research Trends in Vlsi and Systems On Chip = Int. Fed. Info. Proc. Vlsi Systems Design = Vlsi Syst Des Vlsi Systems Design = Vlsi Syst. Des. Vlsi: Systems On A Chip = Int Fed Info Proc Vlsi: Systems On A Chip = Int. Fed. Info. Proc. Vnitrni lekarstvi = Vnitr Lek Vnitrni Lekarstvi=Vnitr Lek;; Vnitrni Lekarstvi = Vnitr. Lek. Vocabulary of Republiques Des Lettres = Less Intell Vocabulary of Republiques Des Lettres = Less. Intell. Vocal Fold Physiology Series = Vocal Fold Vocal Fold Physiology = Vocal Fold Vocal Fold Physiology: Voice Quality Control = Vocal Fold Vocational Guidance Magazine = Vocat Guid Mag Vocational Guidance Magazine = Vocat. Guid. Mag. Vocational Guidance Quarterly = Vocat Guid Quart Vocational Guidance Quarterly = Vocat. Guid. Quart. Vocationalisation of Secondary Education Revisited = Tech Vocat Ed Train Vocationalisation of Secondary Education Revisited = Tech. Vocat. Ed. Train. Vocational Rehabilitation = Collect Acad Eur Med Vocational Rehabilitation = Collect. Acad. Eur. Med. Vocational Training: International Perspectives = Routl Stud Employ Wo Vocational Training: International Perspectives = Routl. Stud. Employ. Wo. Vocational Training of The 90s = Estud Docum Vocational Training of The 90s = Estud. Docum. Vocations and Learning = Vocat Learn Vocations and Learning = Vocat. Learn. Vocus: A Visual Attention System for Object Detection and Goal-directed Search = Lect Notes Artif Int Vocus: A Visual Attention System for Object Detection and Goal-directed Search = Lect. Notes. Artif. Int. Voeding = Voeding Voenno-istoricheskii zhurnal = Voen Istor Zh Voenno-meditsinskii zhurnal = Voen Med Zh Voenno-Meditsinskii Zhurnal=Voen Med Zh;; Voenno-Meditsinskii Zhurnal = Voen. Med. Zh. Voenno meditsinsko delo = Voen Med Delo Vögel der Heimat = Vögel Heim. Vogelwarte, Die = Vogelwarte Vogelwelt, Die = Vogelwelt Vogue = Vogue Voice for Human Rights = Pa Stud Hum Rights Voice for Human Rights = Pa. Stud. Hum. Rights Voice in Motion: Staging Gender, Shaping Sound in Early Modern England = Mater Texts Voice in Motion: Staging Gender, Shaping Sound in Early Modern England = Mater. Texts. Voice of Breast Cancer in Medicine and Bioethics = Philos Med Voice of Breast Cancer in Medicine and Bioethics = Philos. Med. Voice Over Ip in Wireless Heterogeneous Networks: Signalling, Mobility and Security = Signals Commun Techn Voice Over Ip in Wireless Heterogeneous Networks: Signalling, Mobility and Security = Signals. Commun. Techn. Voice Over Ip Security: A Comprehensive Survey of Vulnerabilities and Academic Research = Spr Brief Comput Sci Voice Over Ip Security: A Comprehensive Survey of Vulnerabilities and Academic Research = Spr. Brief. Comput. Sci. Voice Over Ip (voip) Technology = P Soc Photo-opt Ins Voice Over Ip (voip) Technology = P. Soc. Photo-opt. Ins. Voices and Veils: Feminism and Islam in French Womens Writing and Activism = Res Monogr Fr Stud Voices and Veils: Feminism and Islam in French Womens Writing and Activism = Res. Monogr. Fr. Stud. Voices From The Middle: Narrative Inquiry By, For, and About The Middle Level Community = Handb Red Middle Lev Voices From The Middle: Narrative Inquiry By, For, and About The Middle Level Community = Handb. Red. Middle Lev. Voices of China = Guil Commun Voices of China = Guil. Commun. Voices of Diversity: Multi-culturalism in America = Clin Sociol Res Prac Voices of Diversity: Multi-culturalism in America = Clin. Sociol. Res. Prac. Voices of Foreign-born African American Teacher Educators in The United States = Silenc Voice Educ Se Voices of Foreign-born African American Teacher Educators in The United States = Silenc. Voice. Educ. Se. Voices of The African Diaspora = Voices Afr Dia Voices of The African Diaspora = Voices Afr. Dia. Voices-the Journal of New York Folklore = Voices Voices-the Journal of New York Folklore = Voices. Voice Update = Int Congr Ser Voice Update = Int. Congr. Ser. Voicing in Japanese = Stud Genera Grammar Voicing in Japanese = Stud. Genera. Grammar. Voicing in Japanese = Stud Generat Gramm Voicing in Japanese = Stud. Generat. Gramm. Voix Dentaire = Voix Dent. Voix & Images = Voix Image Voix & Images = Voix Image. Vojenske zdravotnicke listy = Vojen Zdrav Listy Vojenske Zdravotnicke Listy = Vojen. Zdrav. Listy Vojenskozdravotnicka knihovna = Vojenskozdrav Knih Vojenskozdravotnicka Knihovna = Vojenskozdrav. Knih. Vojno-istoriski glasnik = Vojnois Glas Vojnosanitetski pregled. Military-medical and pharmaceutical review = Vojnosanit Pregl Vojnosanitetski Pregled=Vojnosanit Pregl;; Vojnosanitetski Pregled = Vojnosanit Pregl Vojnosanitetski Pregled = Vojnosanit. Pregl. Volatile Organic Compounds in The Environment - Risk Assessmet and Neurotoxicity = Adv Occup Med Rehab Volatile Organic Compounds in The Environment - Risk Assessmet and Neurotoxicity = Adv. Occup. Med. Rehab. Volatiles in Magmas = Rev Mineral Volatiles in Magmas = Rev. Mineral. Volatiles in The Earth and Solar System = Aip Conf Proc Volatiles in The Earth and Solar System = Aip. Conf. Proc. Volcanic Degassing = Geol Soc Spec Publ Volcanic Degassing = Geol. Soc. Spec. Publ. Volcanic Hazards in Central America = Geol Soc Am Spec Pap Volcanic Hazards in Central America = Geol. Soc. Am. Spec. Pap. Volcanic Hazards = Volcan Haz Volcanic Hazards = Volcan. Haz. Volcanic Landforms, Processes and Hazards = Z Geomorphol Supp Volcanic Landforms, Processes and Hazards = Z. Geomorphol. Supp. Volcanic Rocks = Proc Monogr Eng Wate Volcanic Rocks = Proc. Monogr. Eng. Wate. Volcanism and Evolution of The African Lithosphere = Geol Soc Am Spec Pap Volcanism and Evolution of The African Lithosphere = Geol. Soc. Am. Spec. Pap. Volcanism and Subduction: The Kamchatka Region = Geophys Monogr Ser Volcanism and Subduction: The Kamchatka Region = Geophys. Monogr. Ser. Volcano Deformation = Springer-prax Books Volcano Deformation = Springer-prax. Books. Volcano Instability On The Earth and Other Planets = Geol Soc Sp Volcano Instability On The Earth and Other Planets = Geol. Soc. Sp. Volcano Workshop 1994 - Frontier Objects in Astrophysics and Particle Physics = Ital Phy So Volcano Workshop 1994 - Frontier Objects in Astrophysics and Particle Physics = Ital. Phy. So. Volk Bei Otto Von Bismarck: Eine Historisch-semantische Analyse Anhand Von Bedeutungen, Konzepten Und Topoi = Stud Linguist Ger Volk Bei Otto Von Bismarck: Eine Historisch-semantische Analyse Anhand Von Bedeutungen, Konzepten Und Topoi = Stud. Linguist. Ger. Volkerwanderungszeitliche Blechfibeln: Typologie, Chronologie, Interpretation = Reallexikon Ger Alte Volkerwanderungszeitliche Blechfibeln: Typologie, Chronologie, Interpretation = Reallexikon. Ger. Alte. Volkskunde (Amsterdam, Netherlands) = Volkskunde Volkskunde = Volkskunde Volta Review = Volta Rev Volta Review = Volta Rev. Volterra Integrodifferential Equations in Banach Spaces and Applications = Pitman Res Volterra Integrodifferential Equations in Banach Spaces and Applications = Pitman. Res. Volume Graphics 2001 = Spring Eurograp Volume Graphics 2001 = Spring. Eurograp. Volúmenes de Homenaje = Vol. Homenaje Volume Transmission in The Brain = Adv Neurosc Volume Transmission in The Brain = Adv. Neurosc. Volume Transmission Revisited = Prog Brain Res Volume Transmission Revisited = Prog. Brain. Res. Voluntary action leadership = Volunt Action Leadersh Voluntary Action Leadership = Volunt. Action Leadersh. Voluntary Food Intake of Pigs = Occ Pub Bri Voluntary Food Intake of Pigs = Occ. Pub. Bri. Voluntas = Voluntas Volunteer administration = Volunt Adm Volunteer Administration = Volunt. Adm. Volunteer Leader = Volunt. Leader Vom Genius Zum Medienastheten: Modelle Des Kunstlerdramas Im 20 Jahrhundert = Stud Deut Lit Vom Genius Zum Medienastheten: Modelle Des Kunstlerdramas Im 20 Jahrhundert = Stud. Deut. Lit. Vom Offenbaren Und Verborgenen Gott = Beih Z Alttest Wiss Vom Offenbaren Und Verborgenen Gott = Beih. Z. Alttest. Wiss. Vom Romertum Zum Asthetizismus: Studien Zu Den Briefen Des Jungeren Plinius = Beitr Altertumskunde Vom Romertum Zum Asthetizismus: Studien Zu Den Briefen Des Jungeren Plinius = Beitr. Altertumskunde. Vom Selbst-verstandnis in Antike Und Neuzeit = Transform Antike Vom Selbst-verstandnis in Antike Und Neuzeit = Transform. Antike Vom Wasser = Vom Wasser Von Der Anreizung Zum Klassenkampf Zur Volksverhetzung (ss130 Stgb) = Schr Juris Zeitgesch Von Der Anreizung Zum Klassenkampf Zur Volksverhetzung (ss130 Stgb) = Schr. Juris. Zeitgesch. Von Der Nationalen Zur Internationalen Literatur: Transkulturelle Deutschsprachige Literatur Und Kultur Im Zeitalter Globaler Migration = Amst Beitr Neuer Ger Von Der Nationalen Zur Internationalen Literatur: Transkulturelle Deutschsprachige Literatur Und Kultur Im Zeitalter Globaler Migration = Amst. Beitr. Neuer. Ger. Von Der Transformation Zur Kooperationsoffenheit?: Die Offnung Der Rechtsordnungen Ausgewahlter Staaten Mittel- Und Osteuropas Fur Das Volker- Und Europarecht = Beitr Ausl Offentl R Von Der Transformation Zur Kooperationsoffenheit?: Die Offnung Der Rechtsordnungen Ausgewahlter Staaten Mittel- Und Osteuropas Fur Das Volker- Und Europarecht = Beitr. Ausl. Offentl. R. Von Hiob Zu Horkheimer: Gesammelte Schriften Zum Judentum Und Seiner Umwelt = Stud Judaica Von Hiob Zu Horkheimer: Gesammelte Schriften Zum Judentum Und Seiner Umwelt = Stud. Judaica. Von Iphigenie Zu Medea: Semantik Und Dramaturgie Des Barbarischen Bei Goethe Und Grillparzer = Unters Deut Lit Von Iphigenie Zu Medea: Semantik Und Dramaturgie Des Barbarischen Bei Goethe Und Grillparzer = Unters. Deut. Lit. Von Karman Evolution Equations: Well-posedness and Long-time Dynamics = Springer Monogr Math Von Karman Evolution Equations: Well-posedness and Long-time Dynamics = Springer. Monogr. Math. Voprosy âzykoznaniâ (Problèmes de linguistique) = Vopåz Voprosy biokhimii mozga = Vopr Biokhim Mozga Voprosy Biokhimii Mozga = Vopr. Biokhim. Mozga Voprosy ekonomiki / Akademiia nauk SSSR, Institut ekonomiki = Vopr Ekon Voprosy Eksperimentalnoi I Klinicheskoi Urologii = Vopr Eksper Klinicheskoi Urol Voprosy elektropatologii, elektrotravmatizma i elektrobezopasnosti = Vopr Elektropatol Elektrotravmatizma Elektrobezop Voprosy filosofii / Akademiia nauk SSSR, Institut filosofii = Vopr Filos Voprosy filosofii (Problèmes de philosophie) = VopFilos Voprosy Filosofii = Vop Filos Voprosy Filosofii = Vop. Filos. Voprosy fiziologii = Vopr Fiziol Voprosy geografii = Vopr Geogr Voprosy istorii estestvoznaniia i tekhniki (Institut istorii estestvoznaniia i tekhniki (Akademiia nauk SSSR)) = Vopr Istor Estestvozn Tekh Voprosy istorii KPSS (Moscow, Russia) = Vopr Istor KPSS Voprosy istorii (Moscow, Russia : 1945) = Vopr Istor Voprosy istorii (Problèmes d'histoire) = VopIst Voprosy Istorii = Vop Istorii Voprosy Istorii = Vop. Istorii Voprosy klassiceskoj Filologii = VKF Voprosy kliniki i lecheniia zlokachestvennykh novoobrazovanii = Vopr Klin Lecheniia Zlokachestvennykh Novoobraz Voprosy kurortologii, fizioterapii, i lechebnoi fizicheskoi kultury = Vopr Kurortol Fizioter Lech Fiz Kult Voprosy Kurortologii, Fizioterapii i Lechebnoi Fizicheskoi Kultury = Vopr. Kurortol. Fizioter. Lech. Fiz. Kult. Voprosy Kurortologii, Fizioterapii I Lechebnoi Fizicheskoi Kultury=Vopr Kurortol Fizioter Lech Fiz Kult;; Voprosy meditsinskof virusologii = Vopr Med Virusol Voprosy Meditsinskoi Khimii = Vop Med Khim Voprosy Meditsinskoi Khimii = Vop. Med. Khim. Voprosy meditsinskoi khimii = Vopr Med Khim Voprosy Meditsinskoi Khimii=Vopr Med Khim;; Voprosy Meditsinskoi Khimii = Vopr. Med. Khim. Voprosy neirokhirurgii = Vopr Neirokhir Voprosy Neirokhirurgii = Vopr. Neirokhir. Voprosy okhrany materinstva i detstva = Vopr Okhr Materin Det Voprosy Okhrany Materinstva i Detstva = Vopr. Okhr. Materin. Det. Voprosy Onkologii = Vop Onkol+ Voprosy Onkologii = Vop. Onkol+.+ Voprosy onkologii = Vopr Onkol Voprosy Onkologii=Vopr Onkol;; Voprosy Onkologii = Vopr. Onkol. Voprosy patologii serdechno-sosudistoi sistemy = Vopr Patol Serdechno Sosud Sist Voprosy pitaniia = Vopr Pitan Voprosy Pitaniia=Vopr Pitan;; Voprosy Pitaniia = Vopr. Pitan. Voprosy psikhiatrii i nevropatologii; sbornik trudov = Vopr Psikhiatr Nevropatol Voprosy Psikhiatrii i Nevropatologii = Vopr. Psikhiatr. Nevropatol. Voprosy Psikhologii = Vop Psikhol+ Voprosy Psikhologii = Vop. Psikhol+.+ Voprosy psikhologii = Vopr Psikhol Voprosy revmatizma = Vopr Revm Voprosy Revmatizma = Vopr. Revm. Voprosy statistiki (Moscow, Russia : 1994) = Vopros Stat Voprosy virusologii = Vopr Virusol Voprosy Virusologii=Vopr Virusol;; Voprosy Virusologii = Vopr. Virusol. Voprosy Virusologii = Vop Virusol+ Voprosy Virusologii = Vop. Virusol+.+ Vorbilder - Werte - Normen in Den Homerischen Epen = Beitr Altertumskunde Vorbilder - Werte - Normen in Den Homerischen Epen = Beitr. Altertumskunde. Vorgange = Vorgange Vorläufiger Bericht über die von dem Deutschen Archäologischen Institut und der Deutschen Orient-Gesellschaft aus den Mitteln der Deutschen Forschungsgemeinschaft unternommenen Ausgrabungen in Uruk-Warka = UVB Vorlesungen aus dem Fachbereich Mathematik der Universität GH Essen = Vorlesungen Fachbereich Math. Univ. Essen Vorstand Einer Aktiengesellschaft: Vertrag Und Haftung Von Vorstandsmitgliedern = Vdi-buch Vorstand Einer Aktiengesellschaft: Vertrag Und Haftung Von Vorstandsmitgliedern = Vdi-buch. Vortex Electronics and Squids = Top Appl Phys Vortex Electronics and Squids = Top. Appl. Phys. Vortex State = Nato Adv Sci Inst Se Vortex State = Nato. Adv. Sci. Inst. Se. Vortex Wakes of Aircrafts = Found Eng Mech Vortex Wakes of Aircrafts = Found. Eng. Mech. Vortice-literatura Arte Y Critica = Vortice Vortice-literatura Arte Y Critica = Vortice. Vortices and Turbulence At Very Low Temperatures = Cism Cour L Vortices and Turbulence At Very Low Temperatures = Cism. Cour. L. Vortices and Turbulence At Very Low Temperatures = Cism Courses Lect Vortices and Turbulence At Very Low Temperatures = Cism. Courses. Lect. Vortices in Unconventional Superconductors and Superfluids = Springer Series Soli Vortices in Unconventional Superconductors and Superfluids = Springer. Series. Soli. Vortices in Unconventional Superconductors and Superfluids = Springer Ser Solid-s Vortices in Unconventional Superconductors and Superfluids = Springer. Ser. Solid-s. Vortrage Fur Pflanzenzuchtung = Vort Pflanz Vortrage Fur Pflanzenzuchtung = Vort. Pflanz. Vorträge = Vortr. Nordrh.-Westfäl. Akad. Wiss. Vort = Vort Votex Flows and Related Numerical Methods = Nato Adv Sci Inst Se Votex Flows and Related Numerical Methods = Nato. Adv. Sci. Inst. Se. Vowel Harmony and Correspondence Theory = Stud Generat Gramm Vowel Harmony and Correspondence Theory = Stud. Generat. Gramm. Vox Latina: commentarii periodici = VoxLat Vox Patrum = VoxP Vox Romanica: annales Helvetici explorandis Linguis Romanicis destinati = VR Vox sanguinis = Vox Sang Vox Sanguinis=Vox Sang;; Vox Sanguinis = Vox Sang Vox Sanguinis = Vox Sang. Voyages of Discovery: Parting The Seas of Information Technology = Iamslic C S Voyages of Discovery: Parting The Seas of Information Technology = Iamslic. C. S. Voz De Los Dramaturgos: El Teatro Espanol Y Latinoamericano Actual = Beih Iberoromania Voz De Los Dramaturgos: El Teatro Espanol Y Latinoamericano Actual = Beih. Iberoromania. Vozes = Rev Cult Vozes Vrachebnoe delo = Vrach Delo Vrachebnoe Delo = Vrach. Delo Vrachebnoe Delo = Vrachebnoe Delo Vsop Results and The Future of Space Vlbi = Adv Space Res Vsop Results and The Future of Space Vlbi = Adv. Space Res. Vsop Results and The Future of Space Vlbi = Adv Space Res-series Vsop Results and The Future of Space Vlbi = Adv. Space Res-series. Vtc2005-fall: 2005 Ieee 62nd Vehicular Technology Conference, 1-4, Proceedings = Ieee Vts Veh Technol Vtc2005-fall: 2005 Ieee 62nd Vehicular Technology Conference, 1-4, Proceedings = Ieee Vts. Veh. Technol. Vtc2005-spring: 2005 Ieee 61st Vehicular Technology Conference, Vols 1-5, Proceedings = Ieee Vts Veh Technol Vtc2005-spring: 2005 Ieee 61st Vehicular Technology Conference, Vols 1-5, Proceedings = Ieee Vts. Veh. Technol. Vth National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz Nauk Wydzialu B Vth National Polish Scientific Conference On Complex and Detailed Problems of Environmental Engineering = Zesz. Nauk. Wydzialu. B. Vti-baseline 2009-2019: Agrarokonomische Projektionen Fur Deutschland = Landbauforsch-vti Ag Vti-baseline 2009-2019: Agrarokonomische Projektionen Fur Deutschland = Landbauforsch-vti. Ag. Vtt Intelligence Forum 2007 = Vtt Symp Vtt Intelligence Forum 2007 = Vtt Symp. Vtt Publications = Vtt Publ Vtt Publications = Vtt Publ. Vtt Research Notes = Vtt Res Notes Vtt Research Notes = Vtt Res. Notes Vtt Symposia = Vtt Symp Vtt Symposia = Vtt Symp. Vtt Symposium On Service Science, Technology and Business = Vtt Symp Vtt Symposium On Service Science, Technology and Business = Vtt Symp. VTT Symposium = VTT Symp. Vulcano Workshop 1990 : Frontier Objects in Astrophysics and Particle Physics = Ital Phy So Vulcano Workshop 1990 : Frontier Objects in Astrophysics and Particle Physics = Ital. Phy. So. Vulcano Workshop 1992 : Frontier Objects in Astrophysics and Particle Physics = Ital Phy So Vulcano Workshop 1992 : Frontier Objects in Astrophysics and Particle Physics = Ital. Phy. So. Vulcano Workshop 1996 - Frontier Objects in Astrophysics and Particle Physics = Ital Phy So Vulcano Workshop 1996 - Frontier Objects in Astrophysics and Particle Physics = Ital. Phy. So. Vulcano Workshop 1998 - Frontier Objects in Astrophysics and Particle Physics = Soc Ital Fi Vulcano Workshop 1998 - Frontier Objects in Astrophysics and Particle Physics = Soc. Ital. Fi. Vulnerability Analysis and Defense for The Internet = Adv Inform Secur Vulnerability Analysis and Defense for The Internet = Adv. Inform. Secur. Vulnerability and Aging: Can They Be Prevented, Delayed Or Controlled? = Colloq Inst Servier Vulnerability and Aging: Can They Be Prevented, Delayed Or Controlled? = Colloq. Inst. Servier. Vutreshni bolesti = Vutr Boles Vutreshni Bolesti = Vutr. Boles. Vychislitel\cprime naya i Prikladnaya Matematika = Vychisl. Prikl. Mat. (Kiev) Vychislitel\cprime naya Tekhnika i Voprosy Kibernetiki = Vychisl. Tekhn. Vopr. Kibern. Vychislitel\cprime naya Tekhnika = Vychisl. Tekhn. Sistemy Upravlenie Vysoké učení Technické v Brně = Sb. Věd. Odb. Prací Vysokochistye Veshchestva = Vysokochist. Veshchestva Vysokomolekulyarnye Soedineniya Section A = Vysokomol Soedin A Vysokomolekulyarnye Soedineniya Section A = Vysokomol. Soedin. A Vysokomolekulyarnye Soedineniya Section B = Vysokomol Soedin S B Vysokomolekulyarnye Soedineniya Section B = Vysokomol. Soedin. S. B Vysokomolekulyarnye Soedineniya, Seriya A i Seriya B = Vysokomol. Soedin., Ser. A Ser. B Vysokomolekulyarnye Soedineniya Seriya A & Seriya B = Vysokomol Soedin Vysokomolekulyarnye Soedineniya Seriya A & Seriya B = Vysokomol. Soedin. Vysokomolekulyarnye Soedineniya Seriya A = Vysokomol Soedin A+ Vysokomolekulyarnye Soedineniya Seriya A = Vysokomol. Soedin. A+.+ Vysokomolekulyarnye Soedineniya, Seriya A = Vysokomol. Soedin., Ser. A Vysokomolekulyarnye Soedineniya, Seriya B: Kratkie Soobshcheniya = Vysokomol. Soedin., Ser. B Vysokomolekulyarnye Soedineniya Seriya B = Vysokomol Soedin B Vysokomolekulyarnye Soedineniya Seriya B = Vysokomol. Soedin. B Vyziva lidu = Vyziva Lidu Wad-al-Hayara. Revista de estudios de la Institución provincial de cultura »Marqués de Santillana« de Guadalajara = Wad-al-Hayara WADC technical note. United States. Air Force. Wright Air Development Center, Dayton, Ohio = WADC Tech Note United States Air Force Wright Air Dev Cen Day Ohio WADC technical report. United States. Air Force. Wright Air Development Center, Dayton, Ohio = WADC Tech Rep United States Air Force Wright Air Dev Cent Day Ohio Wafer Level 3-d Ics Process Technology = Integr Circuit Syst Wafer Level 3-d Ics Process Technology = Integr. Circuit. Syst. Wafer-level Testing and Test During Burn-in for Integrated Circuits = Artech Hse Integr Mi Wafer-level Testing and Test During Burn-in for Integrated Circuits = Artech. Hse. Integr. Mi. Waffen-und Kostumkunde = Waffen-kostumkunde Waffen-und Kostumkunde = Waffen-kostumkunde. Wage Labour in Southeast Asia Since 1840 = Mod Econ Hist Se Asi Wage Labour in Southeast Asia Since 1840 = Mod. Econ. Hist. Se. Asi. Wageningen Agricultural University Papers = Wag Ag Un P Wageningen Agricultural University Papers = Wag. Ag. Un. P. Wageningen Ur Frontis Series = Wag Ur Fron Wageningen Ur Frontis Series = Wag. Ur Fron. Wahrnehmung Von Online-musikrechten Durch Verwertungsgesellschaften Im Binnenmarkt = Schr Eur Urheber Wahrnehmung Von Online-musikrechten Durch Verwertungsgesellschaften Im Binnenmarkt = Schr. Eur. Urheber. Wahrscheinlichkeitstheorie = Degruyter Lehrb Wahrscheinlichkeitstheorie = Degruyter. Lehrb. Wakayama medical reports = Wakayama Med Rep Wakayama Medical Reports = Wakayama Med. Rep. Wakayama University = Bull. Fac. Ed. Wakayama Univ. Natur. Sci. Wake Forest law review = Wake Forest Law Rev Wake Up to Flavonoids = Roy Soc Med Int Cong Wake Up to Flavonoids = Roy. Soc. Med. Int. Cong. Waking and sleeping = Waking Sleeping Waking and Sleeping = Waking Sleeping Walcom: Algorithms and Computation, Proceedings = Lect Notes Comput Sc Walcom: Algorithms and Computation, Proceedings = Lect. Notes. Comput. Sc. Waldarbeit, Die = Waldarbeit Wald, Der = Wald Wald und Holz = Wald Holz Wald- und Holzwirtschaft, Die = Wald- Holzwirtsch. Walking A Tightrope: Aboriginal People and Their Representations = Aboriginal Stud Ser Walking A Tightrope: Aboriginal People and Their Representations = Aboriginal Stud. Ser. Walking Away From Terrorism: Accounts of Disengagement From Radical and Extremist Movements = Cass Ser Polit Viole Walking Away From Terrorism: Accounts of Disengagement From Radical and Extremist Movements = Cass. Ser. Polit. Viole. Walking: Biological and Technological Aspects = Cism Cour L Walking: Biological and Technological Aspects = Cism. Cour. L. Walking Towards Justice: Democratization in Rural Life = Res Rural Sociol Dev Walking Towards Justice: Democratization in Rural Life = Res. Rural Sociol. Dev. Walking Upright = Cour For Sekenbg Walking Upright = Cour. For. Sekenbg. Walks On Ordinals and Their Characteristics = Prog Math Walks On Ordinals and Their Characteristics = Prog. Math. Wallace Stevens Journal = Wallace Stevens J Wallace Stevens Journal = Wallace Stevens J. Wall Street journal (Eastern ed.) = Wall St J (East Ed) Wall Street Journal. Midwest Edition = Wall St. J. [Midwest. Ed.] Wall Street journal (Midwest ed.) = Wall St J [Midwest Ed] Walter Prescott Webb Memorial Lectures = Wpw Memor L Walter Prescott Webb Memorial Lectures = Wpw. Memor. L. Walt Whitman Quarterly Review = Walt Whitman Q Rev Walt Whitman Quarterly Review = Walt Whitman Q. Rev. Walt Whitman Review = Walt Whitman Rev Walt Whitman Review = Walt Whitman Rev. Wanderers Across Language: Exile in Irish and Polish Literature of The Twentieth Century = Stud Comp Lit Ser Wanderers Across Language: Exile in Irish and Polish Literature of The Twentieth Century = Stud. Comp. Lit. Ser. Wandering Stars = St Theat H Wandering Stars = St. Theat. H. War and Ethics in The Ancient Near East: Military Violence in Light of Cosmology and History = Beih Z Alttest Wiss War and Ethics in The Ancient Near East: Military Violence in Light of Cosmology and History = Beih. Z. Alttest. Wiss. War and Media Operations: The Us Military and The Press From Vietnam to Iraq = Cass Mil Stud War and Media Operations: The Us Military and The Press From Vietnam to Iraq = Cass. Mil. Stud. War and Nationalism in South Asia: The Indian State and The Nagas = Routl Adv S Asian St War and Nationalism in South Asia: The Indian State and The Nagas = Routl. Adv. S. Asian. St. War and Society in The Ancient and Medieval Worlds = Ctr Hell Stud Colloq War and Society in The Ancient and Medieval Worlds = Ctr. Hell. Stud. Colloq. War and Suicide = Psychiat Theor Appl War and Suicide = Psychiat. Theor. Appl. War and Terrorism = Soc Philos Today War and Terrorism = Soc. Philos. Today. War and The Cultural Construction of Identities in Britain = Int For Lit War and The Cultural Construction of Identities in Britain = Int. For. Lit. War and The Cultural Construction of Identities in Britain = Int Forsch Allg Vgl War and The Cultural Construction of Identities in Britain = Int. Forsch. Allg. Vgl. War and The Transformation of Global Politics = Rethink Peace Confl War and The Transformation of Global Politics = Rethink. Peace. Confl. Warasan phesatchasat = Mahidol University journal of pharmaceutical sciences / Mahawitthayalai Mahidon|Warasan Phesatchasat Warasan Songkhla Nakharin / Mahawitthayalai Songkhla Nakharin, Witthayakhet Hat Yai = Songklanakarin journal / Prince of Songkla University, Hat Yai Campus|Warasan Songkhla Nakharin War As Risk Management: Strategy and Conflict in An Age of Globalised Risks = Contemp Secur Stud War As Risk Management: Strategy and Conflict in An Age of Globalised Risks = Contemp. Secur. Stud. War Crimes Tribunals and Transitional Justice = Contemp Secur Stud War Crimes Tribunals and Transitional Justice = Contemp. Secur. Stud. War Culture and Society 1750-1850 = War Cult Soc 1750 War Culture and Society 1750-1850 = War Cult. Soc. 1750. War Culture and Society 1750-1850 = War Cult Soc 1750-18 War Culture and Society 1750-1850 = War Cult. Soc. 1750-18. Warehouse Management: Organisation Und Steuerung Von Lager- Und Kommissioniersystemen = Vdi-buch Warehouse Management: Organisation Und Steuerung Von Lager- Und Kommissioniersystemen = Vdi-buch. Warehouse Management = Vdi-buch Warehouse Management = Vdi-buch. Warfare and History = Warfare Hist Warfare and History = Warfare Hist. Warfare Ecology: A New Synthesis for Peace and Security = Nato Sci Peace Secur Warfare Ecology: A New Synthesis for Peace and Security = Nato. Sci. Peace Secur. Warfare in The Ancient Near East to 1600 Bc: Holy Warriors At The Dawn of History = Warfare Hist Warfare in The Ancient Near East to 1600 Bc: Holy Warriors At The Dawn of History = Warfare Hist. Warfare, State and Society On The Black Sea Steppe, 1500-1700 = Warfare Hist Warfare, State and Society On The Black Sea Steppe, 1500-1700 = Warfare. Hist. War History and Politics = War Hist Polit War History and Politics = War Hist. Polit. War, Image and Legitimacy: Viewing Contemporary Conflict = Contemp Secur Stud War, Image and Legitimacy: Viewing Contemporary Conflict = Contemp. Secur. Stud. War in History = War Hist War in History = War Hist. War in Iraq: Planning and Execution = Strateg Hist War in Iraq: Planning and Execution = Strateg. Hist. War Memory, Nationalism, and Education in Postwar Japan, 1945-2007 = Routl Contemp Jpn Se War Memory, Nationalism, and Education in Postwar Japan, 1945-2007 = Routl. Contemp. Jpn. Se. Warme Und Stoffubertragung-thermo and Fluid Dynamics = Warme Stoffubertrag Warme Und Stoffubertragung-thermo and Fluid Dynamics = Warme Stoffubertrag. Warming and Wound Healing: Warm-up-registration Active Wound Therapy = Roy Soc Med Int Cong Warming and Wound Healing: Warm-up-registration Active Wound Therapy = Roy. Soc. Med. Int. Cong. Warmwater Fisheries Symposium I = Usda Rocky Warmwater Fisheries Symposium I = Usda. Rocky. War, Nation, Memory: International Perspectives On World War Ii in School History Textbooks = Res Curric Instruct War, Nation, Memory: International Perspectives On World War Ii in School History Textbooks = Res. Curric. Instruct. War of Religion - Dissenters, Anglicans and The American Revolution = Stud Mod Hist War of Religion - Dissenters, Anglicans and The American Revolution = Stud. Mod. Hist. War on hunger; a report from the Agency for International Development = War Hung War On Welfare: Family, Poverty, and Politics in Modern America = Polit Cult Mod Am War On Welfare: Family, Poverty, and Politics in Modern America = Polit. Cult. Mod. Am. War Or Common Cause? A Critical Ethnography of Language Education Policy, Race, and Cultural Citizenship = Educ Policy Pract Cr War Or Common Cause? A Critical Ethnography of Language Education Policy, Race, and Cultural Citizenship = Educ. Policy. Pract. Cr. War Over Perpetual Peace: An Exploration Into The History of A Foundational International Relations Text = Palgr Mac Ser Hist War Over Perpetual Peace: An Exploration Into The History of A Foundational International Relations Text = Palgr. Mac. Ser. Hist. War, Peace and Hegemony in A Globalized World = Routl Adv Int Relat War, Peace and Hegemony in A Globalized World = Routl. Adv. Int. Relat. War, Peace and Security = Contrib Confl Manag War, Peace and Security = Contrib. Confl. Manag. Warrior Ethos: Military Culture and The War On Terror = Lse Int Stud Ser Warrior Ethos: Military Culture and The War On Terror = Lse. Int. Stud. Ser. Warriors and Politicians: Us Civil-military Relations Under Stress = Cass Mil Stud Warriors and Politicians: Us Civil-military Relations Under Stress = Cass. Mil. Stud. Warsan wichai witthayasat / Khana Witthayasat Chulalongkon Mahawitthayalai = The Journal of scientific research / Faculty of Science, Chulalongkorn University|J. Sci. Res. Chulalongkorn Univ. War & society = War Soc Warta Demografi = Warta Demografi Warwickshire history = Warwickshire Hist Warwick Studies in European Philosophy = Warw St Eur Phil Warwick Studies in European Philosophy = Warw. St. Eur. Phil. Warwick Studies in Globalisation = Warw St Global Warwick Studies in Globalisation = Warw. St. Global. Warwick Studies in Philosophy and Literature = Warw St Phl Warwick Studies in Philosophy and Literature = Warw. St. Phl. Warwick University Caribbean Studies = Warw Univ Carib St Warwick University Caribbean Studies = Warw. Univ. Carib. St. Wasafiri = Wasafiri Waseda Political Studies = Waseda Polit Stud Waseda Political Studies = Waseda Polit. Stud. Washburn law journal = Washburn Law J Washington and Lee law review = Wash Lee Law Rev Washington drug & device letter = Wash Drug Device Lett Washington law review (Seattle, Wash. : 1962) = Wash Law Rev Washington Law Review = Wash Law Rev Washington Law Review = Wash. Law Rev. Washington memo = Wash Memo Alan Guttmacher Inst Washington Nurse = Wash. Nurse Washington Papers = Wash Pap Washington Papers = Wash. Pap. Washington post (Washington, D.C. : 1974) = Washington Post Washington Quarterly = Wash Quart Washington Quarterly = Wash. Quart. Washington Report on Medicine and Health = Wash. Rep. Med. Health Washington report on medicine & health = Wash Rep Med Health Washington State dental journal = Wash State Dent J Washington State Dental Journal = Wash. State Dent. J. Washington State journal of nursing = Wash State J Nurs Washington State Journal of Nursing = Wash. State J. Nurs. Washington times (Washington, D.C. : 1982) = Wash Times Washington University dental journal = Wash Univ Dent J Washington University Dental Journal = Wash. Univ. Dent. J. Washington University journal of urban and contemporary law = Wash Univ J Urban Contemp Law Washington University law quarterly. Washington University (Saint Louis, Mo.). School of Law = Wash Univ Law Q WASH [reports]. U.S. Atomic Energy Commission = WASH Rep WASH Reports = WASH Rep. Was Ist Textkritik? Zur Geschichte Und Relevanz Eines Zentralbegriffs Der Editionswissenschaft = Beih Editio Was Ist Textkritik? Zur Geschichte Und Relevanz Eines Zentralbegriffs Der Editionswissenschaft = Beih. Editio. Wassaja-the Indian Historian = Wassaja Wassaja-the Indian Historian = Wassaja. Wasseraufbereitung-chemie Und Chemische Verfahrenstechnik = Vdi-buch Wasseraufbereitung-chemie Und Chemische Verfahrenstechnik = Vdi-buch. wasser, energie, luft = Wasser energ. luft Wasser und Boden = Wasser Boden Wasser- und Energiewirtschaft = Wasser- Energ.wirtsch. Wasserwirtschaft Wassertechnik = Wasserwirtsch. Wassertech. Wasserwirtschaft = Wasserwirtschaft Waste and Biomass Valorization = Waste Biomass Valorization Waste and Environmental Policy = Routl Explor Environ Waste and Environmental Policy = Routl. Explor. Environ. Waste and Waste Management = Waste Waste Manag Waste and Waste Management = Waste Waste Manag. Waste Containment Systems : Construction, Regulation, and Performance = Geotech Sp Waste Containment Systems : Construction, Regulation, and Performance = Geotech. Sp. Waste Input-output Analysis: Concepts and Application to Industrial Ecology = Eco-effic Ind Sci Waste Input-output Analysis: Concepts and Application to Industrial Ecology = Eco-effic. Ind. Sci. Waste Management and Research = Waste Manage. Res. Waste Management and The Environment Iii = Wit Trans Ecol Envir Waste Management and The Environment Iii = Wit. Trans. Ecol. Envir. Waste Management and The Environment Iv = Wit Trans Ecol Envir Waste Management and The Environment Iv = Wit. Trans. Ecol. Envir. Waste Management and The Environment V = Wit Trans Ecol Envir Waste Management and The Environment V = Wit. Trans. Ecol. Envir. Waste management (New York, N.Y.) = Waste Manag Waste Management (Oxford) = Waste Manage. (Oxford) Waste Management: Recycling - Disposal, Vols I and Ii = Prog Radiat Protect Waste Management: Recycling - Disposal, Vols I and Ii = Prog. Radiat. Protect. Waste management & research : the journal of the International Solid Wastes and Public Cleansing Association, ISWA = Waste Manag Res Waste Management & Research = Waste Manage Res Waste Management & Research = Waste Manage. Res. Waste Management Techniques = Vdi Bericht Waste Management Techniques = Vdi. Bericht. Waste Management (Tucson, Arizona) = Waste Manage. (Tucson, Ariz.) Waste Management = Waste Manage Waste Management = Waste Manage. Waste Management = Waste Manage. (Oxford) Waste Materials and By-products in Concrete = Eng Mater Waste Materials and By-products in Concrete = Eng. Mater. Waste Materials in Construction = Stud Environ Sci Waste Materials in Construction = Stud. Environ. Sci. Waste Processing and Recycling in Mining and Metallurgical Industries = Cim An Conf Waste Processing and Recycling in Mining and Metallurgical Industries = Cim. An. Conf. Wastes = Wastes Waste Testing and Quality Assurance : Third Volume = Am Soc Test Mater Waste Testing and Quality Assurance : Third Volume = Am. Soc. Test. Mater. Waste Treatment in The Metal Manufacturing, Forming, Coating, and Finishing Industries = Adv Ind Hazard Waste Waste Treatment in The Metal Manufacturing, Forming, Coating, and Finishing Industries = Adv. Ind. Hazard. Waste Wastewater Re-use and Groundwater Quality = Iahs-aish P Wastewater Re-use and Groundwater Quality = Iahs-aish. P. Wastewater Reused - Risk Assessment, Decision-making and Environmental Security = Nato Sci Peace Secur Wastewater Reused - Risk Assessment, Decision-making and Environmental Security = Nato. Sci. Peace. Secur. Wastewater Treatment = Water Environm Ser Wastewater Treatment = Water. Environm. Ser. Watching Earth From Space: How Surveillance Helps Us and Harms Us = Springer-prax Books Watching Earth From Space: How Surveillance Helps Us and Harms Us = Springer-prax. Books. Water Air and Soil Pollution = Water Air Soil Poll Water Air and Soil Pollution = Water Air Soil Poll. Water, air, and soil pollution = Water Air Soil Pollut Water, Air and Soil Pollution = Water Air Soil Pollut. Water, Air, and Soil Pollution = Water. Air. Soil Pollut. Water, Air, & Soil Pollution: Focus = Water Air Soil Pollut. Focus Water, Air, & Soil Pollution = Water Air Soil Pollut. Water, Air, & Soil Pollution = Water, Air, Soil Pollut. Water and Development in China: The Political Economy of Shanghai Water Policy = Ser Contemp China Water and Development in China: The Political Economy of Shanghai Water Policy = Ser. Contemp. China. Water and Environmental Management = Water Environ. Manage. Water and Environment Journal = Water Environ J Water and Environment Journal = Water Environ. J. Water and Food Security in Central Asia = Nato Sci Peace Secur Water and Food Security in Central Asia = Nato. Sci. Peace. Secur. Water and Ions in Biomolecular Systems = Adv Lif Sci Water and Ions in Biomolecular Systems = Adv. Lif. Sci. Water and Peace in The Middle East = Stud Environ Sci Water and Peace in The Middle East = Stud. Environ. Sci. Water and Sustainable Agriculture = Sprbrief Agric Water and Sustainable Agriculture = Sprbrief. Agric. Water and Water Engineering = Water Water Eng Water and Water Engineering = Water Water Eng. Water Asset Management International = Water Asset Manage. Int. Water-biomolecule Interactions = Ital Phy So Water-biomolecule Interactions = Ital. Phy. So. Waterbirds = Waterbirds Waterborne Pathogens = Wa Sci Technol Waterborne Pathogens = Wa. Sci. Technol. Water Business in Not An Island: Asssessing The Market Potential of Environmental Innovations = Vtt Publ Water Business in Not An Island: Asssessing The Market Potential of Environmental Innovations = Vtt. Publ. Watercomp 93 : 2nd Australasian Conference On Computing for The Water Industry Today and Tomorrow, Preprints of Papers = Inst Eng A Watercomp 93 : 2nd Australasian Conference On Computing for The Water Industry Today and Tomorrow, Preprints of Papers = Inst. Eng. A. Water Conducting Features in Radionuclide Migration = Radioact W Water Conducting Features in Radionuclide Migration = Radioact. W. Water Consumption and Sustainable Water Resources Management = Oecd Proc Water Consumption and Sustainable Water Resources Management = Oecd. Proc. Water Contamination Emergencies: Can We Cope? = Roy Soc Ch Water Contamination Emergencies: Can We Cope? = Roy. Soc. Ch. Water Contamination Emergencies: Enhancing Our Response = Roy Soc Ch Water Contamination Emergencies: Enhancing Our Response = Roy. Soc. Ch. Water Disinfection and Natural Organic Matter = Acs Sym Ser Water Disinfection and Natural Organic Matter = Acs. Sym. Ser. Water Dynamics = Aip Conf Proc Water Dynamics = Aip. Conf. Proc. Water Economics, Statistics and Finance = Wa Sci Technol Water Economics, Statistics and Finance = Wa. Sci. Technol. Water-engineering & Management = Water Eng Manag Water-engineering & Management = Water. Eng. Manag. Water, Environmental Security and Sustainable Rural Development = Routl Iss Stud Rural Water, Environmental Security and Sustainable Rural Development = Routl. Iss. Stud. Rural Water, Environment and Society in Times of Climatic Change = Water Trans Water, Environment and Society in Times of Climatic Change = Water. Trans. Water Environment Journal = Water Environ. J. Water environment research : a research publication of the Water Environment Federation = Water Environ Res Water Environment Research = Water Environ Res Water Environment Research = Water Environ. Res. Water Environment Series = Water Environm Ser Water Environment Series = Water Environm. Ser. Water Erosion = Tech Doc Hy Water Erosion = Tech. Doc. Hy. Water Footprint and Virtual Water Trade in Spain: Policy Implications = Nat Res Manag Policy Water Footprint and Virtual Water Trade in Spain: Policy Implications = Nat. Res. Manag. Policy Water for A Changing Global Community = Water Chang Glob Com Water for A Changing Global Community = Water Chang. Glob. Com. Water for Pharmaceutical Purposes = Paperb Apv Water for Pharmaceutical Purposes = Paperb. Apv. Water for Urban Areas: Challenges and Perspectives = Water Reso Manage Po Water for Urban Areas: Challenges and Perspectives = Water Reso. Manage. Po. Water Future of Albuquerque and Middle Rio Grande Basin = Wrri Rep Water Future of Albuquerque and Middle Rio Grande Basin = Wrri. Rep. Water, Ground, and Air Pollution Monitoring and Remediation = P Soc Photo-opt Ins Water, Ground, and Air Pollution Monitoring and Remediation = P. Soc. Photo-opt. Ins. Water in Celtic Countries: Quantity, Quality and Climate Variability = Iahs-aish P Water in Celtic Countries: Quantity, Quality and Climate Variability = Iahs-aish. P. Water in Exterior Building Walls : Problems and Solutions = Am Soc Test Mater Water in Exterior Building Walls : Problems and Solutions = Am. Soc. Test. Mater. Water Infrastructure for Sustainable Communities: China and The World = Cities Future Series Water Infrastructure for Sustainable Communities: China and The World = Cities. Future. Series. Water in Mining 2006, Proceedings = Australas I Min Met Water in Mining 2006, Proceedings = Australas. I. Min. Met. Water in Mining 2009, Proceedings = Australas I Min Met Water in Mining 2009, Proceedings = Australas. I. Min. Met. Water in Nominally Anhydrous Minerals = Rev Mineral Geochem Water in Nominally Anhydrous Minerals = Rev. Mineral. Geochem. Water in Road Structures: Movement, Drainage and Effects = Geotech Geol Earthq Water in Road Structures: Movement, Drainage and Effects = Geotech. Geol. Earthq. Water Intelligence Online = Water Intell. Online Water Interfaces in Physics Chemistry and Biology: A Multi-disciplinary Approach = J Phys Conf Ser Water Interfaces in Physics Chemistry and Biology: A Multi-disciplinary Approach = J. Phys. Conf. Ser. Water International = Water Int Water International = Water Int. Water in The Universe = Astrophys Space Sc L Water in The Universe = Astrophys. Space. Sc. L. Water Management in Islam = Water Reso Manage Po Water Management in Islam = Water Reso. Manage. Po. Watermark (Archivists and Librarians in the History of the Health Sciences) = Watermark (Arch Libr Hist Health Sci) Watermark (Association of Librarians in the History of the Health Sciences) = Watermark Water Microbiology: Types, Analyses and Disease-causing Microorganisms = Microbiol Res Adv Water Microbiology: Types, Analyses and Disease-causing Microorganisms = Microbiol. Res. Adv. Water Policy Processes in India: Discourses of Power and Resistance = Routl Cont S Asia Se Water Policy Processes in India: Discourses of Power and Resistance = Routl. Cont. S. Asia. Se. Water Policy = Water Policy Water Pollution Control = Water Pollut Control Water Pollution Control = Water Pollut. Control Water Pollution Ix = Wit Trans Ecol Envir Water Pollution Ix = Wit. Trans. Ecol. Envir. Water Pollution Research Reports of The Commission of The European Communities = Water Pol R Water Pollution Research Reports of The Commission of The European Communities = Water Pol. R. Water Pollution Viii: Modelling, Monitoring and Management = Wit Trans Ecol Envir Water Pollution Viii: Modelling, Monitoring and Management = Wit. Trans. Ecol. Envir. Water Pollution Vii = Int Ser Prog Wat Res Water Pollution Vii = Int. Ser. Prog. Wat. Res. Water Pollution Vi = Int Ser Prog Wat Res Water Pollution Vi = Int. Ser. Prog. Wat. Res. Water Pollution V = Int Ser Prog Wat Res Water Pollution V = Int. Ser. Prog. Wat. Res. Water Pollution X = Wit Trans Ecol Envir Water Pollution X = Wit. Trans. Ecol. Envir. Water, Power and Citizenship: Social Struggle in The Basin of Mexico = St Antonys Ser Water, Power and Citizenship: Social Struggle in The Basin of Mexico = St. Antonys. Ser. Water Practice Technology = Water Pract. Technol. Water Problems in Building Exterior Walls: Evaluation, Prevention, and Repair = Am Soc Test Mater Water Problems in Building Exterior Walls: Evaluation, Prevention, and Repair = Am. Soc. Test. Mater. Water Properties of Food, Pharmaceutical, and Biological Materials = Food Preserv Technol Water Properties of Food, Pharmaceutical, and Biological Materials = Food. Preserv. Technol. Water Purification = Air Water Soil Sci T Water Purification = Air. Water Soil. Sci. T. Water Purification and Management = Nato Sci Peace Secur Water Purification and Management = Nato. Sci. Peace. Secur. Water Quality and Ecosystems Modeling = Water Qual. Ecosyst. Model. Water Quality and The Early Life Stages of Fishes = Am Fish S S Water Quality and The Early Life Stages of Fishes = Am. Fish. S. S. Water Quality Management in The Americas = Water Res Devel Man Water Quality Management in The Americas = Water Res. Devel. Man. Water Quality Modeling - Proceedings of The International Symposium = Asae Publ Water Quality Modeling - Proceedings of The International Symposium = Asae. Publ. Water Quality: Physical, Chemical and Biological Characteristics = Water Resour Plan De Water Quality: Physical, Chemical and Biological Characteristics = Water Resour. Plan. De. Water Quality Research Journal of Canada = Water Qual Res J Can Water Quality Research Journal of Canada = Water Qual. Res. J. Can. Water Recycling in The Mediterranean Region = Wa Sci Technol Water Recycling in The Mediterranean Region = Wa. Sci. Technol. Water Relationships in Foods = Adv Exp Med Biol Water Relationships in Foods = Adv. Exp. Med. Biol. Water research = Water Res Water Research = Water Res Water Research = Water Res. Water Resource Planning Development and Management = Water Resour Plan De Water Resource Planning Development and Management = Water Resour. Plan. De. Water Resources Allocation: Policy and Socioeconomic Issues in Cyprus = Glob Iss Water Pol Water Resources Allocation: Policy and Socioeconomic Issues in Cyprus = Glob. Iss. Water Pol. Water Resources Bulletin = Water Resour Bull Water Resources Bulletin = Water Resour. Bull. Water Resources Development and Management = Water Res Devel Man Water Resources Development and Management = Water Res. Devel. Man. Water Resources Development and Management = Water Resour Dev Man Water Resources Development and Management = Water Resour. Dev. Man. Water Resources in Extreme Environments, Proceedings = Am Wat Res Water Resources in Extreme Environments, Proceedings = Am. Wat. Res. Water Resources in Jordan: Evolving Policies for Development, The Environment, and Conflict Resolution = Issues Water Resourc Water Resources in Jordan: Evolving Policies for Development, The Environment, and Conflict Resolution = Issues. Water Resourc. Water Resources in The Middle East = Hexag Ser Hum Enviro Water Resources in The Middle East = Hexag. Ser. Hum. Enviro. Water Resources Investigations Report (united States Geological Survey) = Water Resour. Invest. Rep. U.S. Geol. Surv. Water Resources Management and Policy = Water Reso Manage Po Water Resources Management and Policy = Water Reso. Manage. Po. Water Resources Management Ii = Int Ser Prog Wat Res Water Resources Management Ii = Int. Ser. Prog. Wat. Res. Water Resources Management Iii = Wit Trans Ecol Envir Water Resources Management Iii = Wit. Trans. Ecol. Envir. Water Resources Management = Int Ser Prog Wat Res Water Resources Management = Int. Ser. Prog. Wat. Res. Water Resources Management Iv = Wit Trans Ecol Envir Water Resources Management Iv = Wit. Trans. Ecol. Envir. Water Resources Management V = Wit Trans Ecol Envir Water Resources Management V = Wit. Trans. Ecol. Envir. Water Resources Management = Water Resour Manag Water Resources Management = Water Resour. Manag. Water Resources Management = Water Resour. Manage. Water Resources Monograph Series = Water Res M Water Resources Monograph Series = Water Res. M. Water Resources Research=Water Resources Res. Water resources research = Water Resour Res Water Resources Research = Water Resour Res Water Resources Research = Water Resour. Res. Water Resources Systems-hydrological Risk, Management and Development = Iahs-aish P Water Resources Systems-hydrological Risk, Management and Development = Iahs-aish. P. Water Resources Systems - Water Availability and Global Change = Iahs-aish P Water Resources Systems - Water Availability and Global Change = Iahs-aish. P. Water Resources Variability in Africa During The Xxth Century = Iahs-aish P Water Resources Variability in Africa During The Xxth Century = Iahs-aish. P. Water Resources = Water Resour Water Resources = Water Resour. Water Resources = Water Resour+ Water Resources = Water Resour+.+ Water-rock Interaction, Vols 1 and 2, Proceedings = Proc Monogr Eng Wate Water-rock Interaction, Vols 1 and 2, Proceedings = Proc. Monogr. Eng. Wate. Water Saving Techniques for Plant Growth = Nato Adv Sci I E-app Water Saving Techniques for Plant Growth = Nato. Adv. Sci. I. E-app. Water Sa = Water Sa Water Scarcity in The Mediterranean: Perspectives Under Global Change = Handb Environ Chem Water Scarcity in The Mediterranean: Perspectives Under Global Change = Handb. Environ. Chem. Water Scarcity, Land Degradation and Desertification in The Mediterranean Region = Nato Sci Peace Secur Water Scarcity, Land Degradation and Desertification in The Mediterranean Region = Nato. Sci. Peace. Secur. Water Science and Application = Water Sci Appl Water Science and Application = Water Sci. Appl. Water science and technology : a journal of the International Association on Water Pollution Research = Water Sci Technol Water Science and Technology Library = Water Sci Technol Li Water Science and Technology Library = Water Sci. Technol. Li. Water Science and Technology Library = Water Sci. Technol. Lib. Water Science and Technology Library = Water Sci. Technol. Libr. Water Science and Technology Library = Water Trans Water Science and Technology Library = Water Trans. Water Science and Technology Library = Wtr Sci Tec Libr Water Science and Technology Library = Wtr. Sci. Tec. Libr. Water Science and Technology = Water Sci Technol Water Science and Technology = Water Sci. Technol. Water Science and Technology: Water Supply = Wa Sci Technol Water Science and Technology: Water Supply = Wa. Sci. Technol. Water Science and Technology Water Supply = Water Sci. Technol. Water Supply Water: Science, Policy, and Management - Challenges and Opportunities = Water Res M Water: Science, Policy, and Management - Challenges and Opportunities = Water. Res. M. Water Science Reviews = Water Sci Rev Water Science Reviews = Water Sci. Rev. Water Services = Water Serv Water Services = Water Serv. Water & Sewage Works = Water Sewage Works Watershed 89 : The Future for Water Quality in Europe, Vols 1 and 2 = Adv Wat Pol Watershed 89 : The Future for Water Quality in Europe, Vols 1 and 2 = Adv. Wat. Pol. Watersheds: Management, Restoration and Environmental Impact = Environ Sci Eng Tech Watersheds: Management, Restoration and Environmental Impact = Environ. Sci. Eng. Tech. Water-soluble Polymers = Acs Sym Ser Water-soluble Polymers = Acs. Sym. Ser. Water Studies Series = Wat Stud Ser Water Studies Series = Wat. Stud. Ser. Water Supply and Water Quality = Wa Sci Technol Water Supply and Water Quality = Wa. Sci. Technol. Water Supply in Emergency Situations = Nato Sci Peace Secur Water Supply in Emergency Situations = Nato. Sci. Peace. Secur. Water Supply & Management = Water Supply Manage Water Supply & Management = Water Supply Manage. Water Supply : The Review Journal of The International Water Supply Association = Water Supp Water Supply : The Review Journal of The International Water Supply Association = Water Supp. Water Supply, Vol 16, Nos 3/4 - 1998 = Water Supp Water Supply, Vol 16, Nos 3/4 - 1998 = Water Supp. Water Supply & Water Reuse : 1991 & Beyond = Am Wat Res Water Supply & Water Reuse : 1991 & Beyond = Am. Wat. Res. Water Transportation, Ports, and International Trade = Transport Res Rec Water Transportation, Ports, and International Trade = Transport. Res. Rec. Water Transport = Transport Res Rec Water Transport = Transport Res. Rec. Water Treatment Technologies for The Removal of High-toxicity Pollutants = Nato Sci Peace Sec C Water Treatment Technologies for The Removal of High-toxicity Pollutants = Nato. Sci. Peace. Sec. C. Water Treatment Technologies for The Removal of High-toxicity Pollutants = Nato Sci Peace Secur Water Treatment Technologies for The Removal of High-toxicity Pollutants = Nato. Sci. Peace. Secur. Water Utilities Management International = Water Util. Manage. Int. Water & Wastes Engineering = Water Waste Eng Water & Wastes Engineering = Water Waste. Eng. Water & Wastewater Instrumentation Symposium = Tech Papers Isa Water & Wastewater Instrumentation Symposium = Tech. Papers. Isa. Water Wave Kinematics = Nato Adv Sci I E-app Water Wave Kinematics = Nato. Adv. Sci. I. E-app. Wave Electronics = Wave Electron Wave Electronics = Wave Electron. Waveguide Optoelectronics = Nato Adv Sci Inst Se Waveguide Optoelectronics = Nato. Adv. Sci. Inst. Se. Wavelength Division Multiplexing Components = P Soc Photo-opt Ins Wavelength Division Multiplexing Components = P. Soc. Photo-opt. Ins. Wavelet Analysis and Applications = Appl Numer Harmon An Wavelet Analysis and Applications = Appl. Numer. Harmon. An. Wavelet Analysis and Applications = Appl Num Harm Anal Wavelet Analysis and Applications = Appl. Num. Harm. Anal. Wavelet Analysis and its Applications = Wavelet Anal. Appl. Wavelet Analysis and Multiresolution Methods, Proceedings = Lect Notes Pure Appl Wavelet Analysis and Multiresolution Methods, Proceedings = Lect. Notes. Pure. Appl. Wavelet and Independent Componenet Analysis Applications Ix = Proc Spie Wavelet and Independent Componenet Analysis Applications Ix = Proc. Spie. Wavelet and Independent Componenet Analysis Applications Ix = P Soc Photo-opt Ins Wavelet and Independent Componenet Analysis Applications Ix = P. Soc. Photo-opt. Ins. Wavelet and Wave Analysis As Applied to Materials With Micro Or Nanostructure = Ser Adv Math Appl Sc Wavelet and Wave Analysis As Applied to Materials With Micro Or Nanostructure = Ser. Adv. Math. Appl. Sc. Wavelet Applications Iii = P Soc Photo-opt Ins Wavelet Applications Iii = P. Soc. Photo-opt. Ins. Wavelet Applications Ii, Pts 1 and 2 = P Soc Photo-opt Ins Wavelet Applications Ii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Wavelet Applications in Industrial Processing Ii = Proc Spie Wavelet Applications in Industrial Processing Ii = Proc. Spie. Wavelet Applications in Industrial Processing Ii = P Soc Photo-opt Ins Wavelet Applications in Industrial Processing Ii = P. Soc. Photo-opt. Ins. Wavelet Applications in Industrial Processing Iv = Proc Spie Wavelet Applications in Industrial Processing Iv = Proc. Spie. Wavelet Applications in Industrial Processing Iv = P Soc Photo-opt Ins Wavelet Applications in Industrial Processing Iv = P. Soc. Photo-opt. Ins. Wavelet Applications in Industrial Processing = Proc Spie Wavelet Applications in Industrial Processing = Proc. Spie. Wavelet Applications in Industrial Processing = P Soc Photo-opt Ins Wavelet Applications in Industrial Processing = P. Soc. Photo-opt. Ins. Wavelet Applications in Industrial Processing Vii = Proc Spie Wavelet Applications in Industrial Processing Vii = Proc. Spie. Wavelet Applications in Industrial Processing Vi = Proc Spie Wavelet Applications in Industrial Processing Vi = Proc. Spie. Wavelet Applications in Industrial Processing Vi = P Soc Photo-opt Ins Wavelet Applications in Industrial Processing Vi = P. Soc. Photo-opt. Ins. Wavelet Applications in Industrial Processing V = Proc Spie Wavelet Applications in Industrial Processing V = Proc. Spie. Wavelet Applications in Industrial Processing V = P Soc Photo-opt Ins Wavelet Applications in Industrial Processing V = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Iii = Proc Spie Wavelet Applications in Signal and Image Processing Iii = Proc. Spie. Wavelet Applications in Signal and Image Processing Iii = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Iii = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Ii = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Ii = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Iv, Pts 1 and 2 = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Iv, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Viii Pts 1 and 2 = Proc Spie Wavelet Applications in Signal and Image Processing Viii Pts 1 and 2 = Proc. Spie. Wavelet Applications in Signal and Image Processing Viii Pts 1 and 2 = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Viii Pts 1 and 2 = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Vii = Proc Spie Wavelet Applications in Signal and Image Processing Vii = Proc. Spie. Wavelet Applications in Signal and Image Processing Vii = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Vii = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing Vi = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing Vi = P. Soc. Photo-opt. Ins. Wavelet Applications in Signal and Image Processing V = P Soc Photo-opt Ins Wavelet Applications in Signal and Image Processing V = P. Soc. Photo-opt. Ins. Wavelet Applications Iv = P Soc Photo-opt Ins Wavelet Applications Iv = P. Soc. Photo-opt. Ins. Wavelet Applications = P Soc Photo-opt Ins Wavelet Applications = P. Soc. Photo-opt. Ins. Wavelet Applications Viii = Proc Spie Wavelet Applications Viii = Proc. Spie. Wavelet Applications Viii = P Soc Photo-opt Ins Wavelet Applications Viii = P. Soc. Photo-opt. Ins. Wavelet Applications Vii = Proc Spie Wavelet Applications Vii = Proc. Spie. Wavelet Applications Vii = P Soc Photo-opt Ins Wavelet Applications Vii = P. Soc. Photo-opt. Ins. Wavelet Applications Vi = P Soc Photo-opt Ins Wavelet Applications Vi = P. Soc. Photo-opt. Ins. Wavelet Applications V = P Soc Photo-opt Ins Wavelet Applications V = P. Soc. Photo-opt. Ins. Wavelet Methods in Statistics With R = Use R Wavelet Methods in Statistics With R = Use. R Wavelets and Applications = Res Note Ap Wavelets and Applications = Res. Note. Ap. Wavelets and Multiscale Analysis: Theory and Applications = Appl Numer Harmon An Wavelets and Multiscale Analysis: Theory and Applications = Appl. Numer. Harmon. An. Wavelets and Their Applications = Nato Adv Sci Inst Se Wavelets and Their Applications = Nato. Adv. Sci. Inst. Se. Wavelets: Applications in Signal and Image Processing Ix = Proc Spie Wavelets: Applications in Signal and Image Processing Ix = Proc. Spie. Wavelets: Applications in Signal and Image Processing Ix = P Soc Photo-opt Ins Wavelets: Applications in Signal and Image Processing Ix = P. Soc. Photo-opt. Ins. Wavelets: Applications in Signal and Image Processing X, Pts 1 and 2 = Proc Spie Wavelets: Applications in Signal and Image Processing X, Pts 1 and 2 = Proc. Spie. Wavelets: Applications in Signal and Image Processing X, Pts 1 and 2 = P Soc Photo-opt Ins Wavelets: Applications in Signal and Image Processing X, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Wavelets in The Geosciences = Lect Notes Earth Sci Wavelets in The Geosciences = Lect. Notes. Earth. Sci. Wavelets, Their Friends, and What They Can Do for You = Ems Ser Lect Math Wavelets, Their Friends, and What They Can Do for You = Ems. Ser. Lect. Math. Wavelets Xii, Pts 1 and 2 = Proc Spie Wavelets Xii, Pts 1 and 2 = Proc. Spie. Wavelets Xii, Pts 1 and 2 = P Soc Photo-opt Ins Wavelets Xii, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Wavelet Theory and Harmonic Analysis in Applied Sciences = Appl Num Harm Anal Wavelet Theory and Harmonic Analysis in Applied Sciences = Appl. Num. Harm. Anal. Wavelet Theory Approach to Pattern Recognition, Second Edition = Ser Mach Percept Art Wavelet Theory Approach to Pattern Recognition, Second Edition = Ser. Mach. Percept. Art. Wave Motion = Wave Motion Wave Motion = Wave Motion Wave-optical Systems Engineering Ii = P Soc Photo-opt Ins Wave-optical Systems Engineering Ii = P. Soc. Photo-opt. Ins. Wave-optical Systems Engineering = Proc Spie Wave-optical Systems Engineering = Proc. Spie. Wave-optical Systems Engineering = P Soc Photo-opt Ins Wave-optical Systems Engineering = P. Soc. Photo-opt. Ins. Wave Optics and Photonic Devices for Optical Information Processing Ii = P Soc Photo-opt Ins Wave Optics and Photonic Devices for Optical Information Processing Ii = P. Soc. Photo-opt. Ins. Wave Optics and Vlsi Photonic Devices for Information Processing = P Soc Photo-opt Ins Wave Optics and Vlsi Photonic Devices for Information Processing = P. Soc. Photo-opt. Ins. Wave Oscillations in Colloid Oxyhydrates = Mater Sci Found Wave Oscillations in Colloid Oxyhydrates = Mater. Sci. Found. Wave Power = Imeche Sem Wave Power = Imeche. Sem. Wave Propagation and Scattering in Varied Media Ii = P Soc Photo-opt Ins Wave Propagation and Scattering in Varied Media Ii = P. Soc. Photo-opt. Ins. Waves and Nonlinear Processes in Hydrodynamics = Fluid Mec A Waves and Nonlinear Processes in Hydrodynamics = Fluid. Mec. A. Waves and Stability in Continous Media = S Adv Math Waves and Stability in Continous Media = S. Adv. Math. Wave Scattering By Time-dependent Perturbations: An Introduction = Princ Ser Appl Math Wave Scattering By Time-dependent Perturbations: An Introduction = Princ. Ser. Appl. Math. Waves in Astrophysics = Ann Ny Acad Sci Waves in Astrophysics = Ann. Ny. Acad. Sci. Waves in Dusty, Solar, and Space Plasmas = Aip Conf Proc Waves in Dusty, Solar, and Space Plasmas = Aip. Conf. Proc. Waves, Information and Foundations of Physics - Conference Proceedings = Soc Ital Fi Waves, Information and Foundations of Physics - Conference Proceedings = Soc. Ital. Fi. Waves in Geophysical Fluids: Tsunamis, Rogue Waves, Internal Waves and Internal Tides = Cism Cour L Waves in Geophysical Fluids: Tsunamis, Rogue Waves, Internal Waves and Internal Tides = Cism. Cour. L. Waves in Nonlinear Pre-stressed Materials = Cism Courses Lect Waves in Nonlinear Pre-stressed Materials = Cism. Courses. Lect. Waves in Random and Complex Media = Wave Random Complex Waves in Random and Complex Media = Wave. Random Complex Waves in Random and Complex Media = Waves Random Complex Medium Waves in Random Media = Wave Random Media Waves in Random Media = Wave. Random Media Waves in Random Media = Waves Random Media Wave Turbulence = Lect Notes Phys Wave Turbulence = Lect. Notes. Phys. Wax Crystal Control: Nanocomposites, Stimuli-responsive Polymers = Adv Polym Sci Wax Crystal Control: Nanocomposites, Stimuli-responsive Polymers = Adv. Polym. Sci. Wayne law review = Wayne Law Rev Way of Improvement Leads Home: Philip Vickers Fithian and The Rural Enlightenment in Early America = Early Am Stud Ser Way of Improvement Leads Home: Philip Vickers Fithian and The Rural Enlightenment in Early America = Early Am. Stud. Ser. Ways of Knowing = Stud Cent Eur Hist Ways of Knowing = Stud. Cent. Eur. Hist. Ways of Writing: The Practice and Politics of Text-making in Seventeenth-century New England = Mater Texts Ways of Writing: The Practice and Politics of Text-making in Seventeenth-century New England = Mater. Texts. Ways Out of The Working Capital Trap: Enpowering Self-financing Growth Through Modern Supply Management = Prof Supply Manage Ways Out of The Working Capital Trap: Enpowering Self-financing Growth Through Modern Supply Management = Prof. Supply Manage. Way = Way Wccfl 20: Proceedings of The 20th West Coast Conference On Formal Linguistics = P W Coast C Wccfl 20: Proceedings of The 20th West Coast Conference On Formal Linguistics = P. W. Coast C. Wccfl 23: Proceedings of The 23rd West Coast Conference On Formal Linguistics = P W Coast C Wccfl 23: Proceedings of The 23rd West Coast Conference On Formal Linguistics = P. W. Coast C. Wcecs 2008: World Congress On Engineering and Computer Science = Lect Notes Eng Comp Wcecs 2008: World Congress On Engineering and Computer Science = Lect. Notes. Eng. Comp. Wcecs 2009: World Congress On Engineering and Computer Science, Vols I and Ii = Lect Notes Eng Comp Wcecs 2009: World Congress On Engineering and Computer Science, Vols I and Ii = Lect. Notes. Eng. Comp. Wcnc: 2000 Ieee Wireless Communications and Networking Conference, Vols 1-3 = Ieee Wcnc Wcnc: 2000 Ieee Wireless Communications and Networking Conference, Vols 1-3 = Ieee Wcnc. Wcnc 2002: Ieee Wireless Communications and Networking Conference Record, Vols 1 & 2 = Ieee Wcnc Wcnc 2003: Ieee Wireless Communications and Networking Conference Record, Vols 1-3 = Ieee Wcnc Wcnc 2008: Ieee Wireless Communications & Networking Conference, Vols 1-7 = Ieee Wcnc Wcpcg 2010 = Procd Soc Behv Wcpcg 2010 = Procd. Soc. Behv. WDA journal = WDA J WDA Journal = WDA J. W. Dittenberger, Orientis Graeci inscriptiones selectae (Leipzig 1903--­1905) = OGIS W. Dittenberger, Sylloge inscriptionum Graecarum (Leipzig 1915--­1924) = SIG Wdm and Photonic Switching Devices for Network Applications Iii = P Soc Photo-opt Ins Wdm and Photonic Switching Devices for Network Applications Iii = P. Soc. Photo-opt. Ins. Wdm and Photonic Switching Devices for Network Applications Ii = P Soc Photo-opt Ins Wdm and Photonic Switching Devices for Network Applications Ii = P. Soc. Photo-opt. Ins. Wdm and Photonic Switching Devices for Network Applications = P Soc Photo-opt Ins Wdm and Photonic Switching Devices for Network Applications = P. Soc. Photo-opt. Ins. Weakly Interacting Molecular Pairs: Unconventional Absorbers of Radiation in The Atmosphere = Nato Sci S Ss Iv Ear Weakly Interacting Molecular Pairs: Unconventional Absorbers of Radiation in The Atmosphere = Nato. Sci. S. Ss. Iv. Ear. Wealth Creation in The Minerals Industry: Integrating Science, Business, and Education = Soc Eco Geo Spc Pub Wealth Creation in The Minerals Industry: Integrating Science, Business, and Education = Soc. Eco. Geo. Spc. Pub. Wealth From Diversity = Econ Sci Techn Innov Wealth From Diversity = Econ. Sci. Techn. Innov. Weapons of Mass Destruction Series = Weapons Mass Destr S Weapons of Mass Destruction Series = Weapons Mass Destr. S. Wear and Friction of Elastomers = Am Soc Test Mater Wear and Friction of Elastomers = Am. Soc. Test. Mater. Wear of Articulating Surfaces: Understanding Joint Simulation = Am Soc Test Mater Wear of Articulating Surfaces: Understanding Joint Simulation = Am. Soc. Test. Mater. Wear Processes in Manufacturing = Am Soc Test Mater Wear Processes in Manufacturing = Am. Soc. Test. Mater. Wear Testing of Advanced Materials = Am Soc Test Mater Wear Testing of Advanced Materials = Am. Soc. Test. Mater. Wear = Wear Weather and Environmental Satellites = P Soc Photo-opt Ins Weather and Environmental Satellites = P. Soc. Photo-opt. Ins. Weather and Forecasting = Wea. Forecasting Weather and Forecasting = Weather Forecast Weather and Forecasting = Weather Forecast. Weather By The Numbers: The Genesis of Modern Meteorology = Transformations-stud Weather By The Numbers: The Genesis of Modern Meteorology = Transformations-stud. Weathering As A Predisposing Factor to Slope Movements = Eng Geol Spec Publ S Weathering As A Predisposing Factor to Slope Movements = Eng. Geol. Spec. Publ. S. Weather Radar Information and Distributed Hydrological Modelling = Iahs-aish P Weather Radar Information and Distributed Hydrological Modelling = Iahs-aish. P. Weather Vane = Weather Vane Weather = Weather Weatherwise = Weatherwise Weaving Narrative Nets to Capture Classrooms: Multimethod Qualitative Approaches for Educational Research = Sci Technol Educ Lib Weaving Narrative Nets to Capture Classrooms: Multimethod Qualitative Approaches for Educational Research = Sci. Technol. Educ. Lib. Web 2.0 and Libraries: Impacts, Technologies and Trends = Chandos Inf Prof Ser Web 2.0 and Libraries: Impacts, Technologies and Trends = Chandos. Inf. Prof. Ser. Web 2.0 and Semantic Web = Ann Inform Syst Web 2.0 and Semantic Web = Ann. Inform. Syst. Web Accessibility: Foundation for Research = Hum-comput Int-sprin Web Accessibility: Foundation for Research = Hum-comput. Int-sprin. Web-age Information Management = Lect Notes Comput Sc Web-age Information Management = Lect. Notes. Comput. Sc. Web-age Information Management, Proceedings = Lect Notes Comput Sc Web-age Information Management, Proceedings = Lect. Notes. Comput. Sc. Web and Communication Technologies and Internet-related Social Issues - Hsi 2003 = Lect Notes Comput Sc Web and Communication Technologies and Internet-related Social Issues - Hsi 2003 = Lect. Notes. Comput. Sc. Web and Communication Technologies and Internet -related Social Issues - Hsi 2005 = Lect Notes Comput Sc Web and Communication Technologies and Internet -related Social Issues - Hsi 2005 = Lect. Notes. Comput. Sc. Web and Wireless Geographical Information Systems = Lect Notes Comput Sc Web and Wireless Geographical Information Systems = Lect. Notes. Comput. Sc. Web and Wireless Geographical Information Systems, Proceedings = Lect Notes Comput Sc Web and Wireless Geographical Information Systems, Proceedings = Lect. Notes. Comput. Sc. Web Application Security = Comm Com Inf Sc Web Application Security = Comm. Com. Inf. Sc. Web-based Applications in Healthcare and Biomedicine = Ann Inform Syst Web-based Applications in Healthcare and Biomedicine = Ann. Inform. Syst. Web-based Control and Robotics Education = Intel Syst Contr Aut Web-based Control and Robotics Education = Intel. Syst. Contr. Aut. Web-based Support Systems = Adv Inform Knowl Pro Web-based Support Systems = Adv. Inform. Knowl. Pro. Webcasting Worldwide: Business Models of An Emerging Global Medium = Media Manag Econ Ser Webcasting Worldwide: Business Models of An Emerging Global Medium = Media. Manag. Econ. Ser. Web Content Caching and Distribution, Proceedings = Lect Notes Comput Sc Web Content Caching and Distribution, Proceedings = Lect. Notes. Comput. Sc. Web Data Mining: Exploring Hyperlinks, Contents, and Usage Data, Second Edition = Data Centric Syst Ap Web Data Mining: Exploring Hyperlinks, Contents, and Usage Data, Second Edition = Data Centric. Syst. Ap. W.e.b. Du Bois: American Prophet = Polit Cult Mod Am W.e.b. Du Bois: American Prophet = Polit. Cult. Mod. Am. W.e.b. Du Bois and Race = Voices Afr Dia W.e.b. Du Bois and Race = Voices. Afr. Dia. Web Engineering and Peer to Peer Computing = Lect Notes Comput Sc Web Engineering and Peer to Peer Computing = Lect. Notes. Comput. Sc. Web Engineering = Lect Notes Comput Sc Web Engineering = Lect. Notes. Comput. Sc. Web Engineering, Proceedings = Lect Notes Comput Sc Web Engineering, Proceedings = Lect. Notes. Comput. Sc. Weber and The Persistence of Religion: Social Theory, Capitalism and The Sublime = Routl Adv Sociol Weber and The Persistence of Religion: Social Theory, Capitalism and The Sublime = Routl. Adv. Sociol. Web Information System Engineering-wise 2010 = Lect Notes Comput Sc Web Information System Engineering-wise 2010 = Lect. Notes. Comput. Sc. Web Information Systems and Mining = Lect Notes Comput Sc Web Information Systems and Mining = Lect. Notes. Comput. Sc. Web Information Systems and Mining, Proceedings = Lect Notes Comput Sc Web Information Systems and Mining, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems and Technologies = Lect Notes Bus Inf Web Information Systems and Technologies = Lect. Notes. Bus. Inf. Web Information Systems and Technologies = Lect Notes Bus Inf P Web Information Systems and Technologies = Lect. Notes. Bus. Inf. P. Web Information Systems Engineering and Internet Technologies = Web Inf Syst Eng Int Web Information Systems Engineering and Internet Technologies = Web Inf. Syst. Eng. Int. Web Information Systems Engineering, Proceedings = Lect Notes Comput Sc Web Information Systems Engineering, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2005 = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2005 = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2005 Workshops, Proceedings = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2005 Workshops, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2007, Proceedings = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2007, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2007 Workshops = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2007 Workshops = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2008, Proceedings = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2008, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems Engineering - Wise 2009, Proceedings = Lect Notes Comput Sc Web Information Systems Engineering - Wise 2009, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems - Wise 2004, Proceedings = Lect Notes Comput Sc Web Information Systems - Wise 2004, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems - Wise 2004 Workshops, Proceedings = Lect Notes Comput Sc Web Information Systems - Wise 2004 Workshops, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems - Wise 2006, Proceedings = Lect Notes Comput Sc Web Information Systems - Wise 2006, Proceedings = Lect. Notes. Comput. Sc. Web Information Systems - Wise 2006 Workshops, Proceedings = Lect Notes Comput Sc Web Information Systems - Wise 2006 Workshops, Proceedings = Lect. Notes. Comput. Sc. Web Intelligence Meets Brain Informatics = Lect Notes Artif Int Web Intelligence Meets Brain Informatics = Lect. Notes. Artif. Int. Webkdd 2001 - Mining Web Log Data Across All Customers Touch Points = Lect Notes Artif Int Webkdd 2001 - Mining Web Log Data Across All Customers Touch Points = Lect. Notes. Artif. Int. Webkdd 2002 - Mining Web Data for Discovering Usage Patterns and Profiles = Lect Notes Artif Int Webkdd 2002 - Mining Web Data for Discovering Usage Patterns and Profiles = Lect. Notes. Artif. Int. Web Knowledge Management and Decision Supports = Lect Notes Artif Int Web Knowledge Management and Decision Supports = Lect. Notes. Artif. Int. Web Mining and Social Networking: Techniques and Applications = Web Inf Syst Eng Int Web Mining and Social Networking: Techniques and Applications = Web Inf. Syst. Eng. Int. Web Mining Applications in E-commerce and E-services = Stud Comput Intell Web Mining Applications in E-commerce and E-services = Stud. Comput. Intell. Web Mining: From Web to Semantic Web = Lect Notes Comput Sc Web Mining: From Web to Semantic Web = Lect. Notes. Comput. Sc. Web of Knowledge - A Festschrift in Honor of Eugene Garfield = Asist Mon Ser Web of Knowledge - A Festschrift in Honor of Eugene Garfield = Asist. Mon. Ser. Web of Nature: Martin Lister (1639-1712), The First Arachnologist = Hist Sci Med Libr Web of Nature: Martin Lister (1639-1712), The First Arachnologist = Hist. Sci. Med. Libr. Web Personalization in Intelligent Environments = Stud Comput Intell Web Personalization in Intelligent Environments = Stud. Comput. Intell. Web Reasoning and Rule Systems = Lect Notes Comput Sc Web Reasoning and Rule Systems = Lect. Notes. Comput. Sc. Web Reasoning and Rule Systems, Proceedings = Lect Notes Comput Sc Web Reasoning and Rule Systems, Proceedings = Lect. Notes. Comput. Sc. Web Resource Space Model = Web Inf Syst Eng Int Web Resource Space Model = Web Inf. Syst. Eng. Int. Web Search: Multidisciplinary Perspectives = Inform Sci Knowl Man Web Search: Multidisciplinary Perspectives = Inform. Sci. Knowl. Man. Web Services and Formal Methods = Lect Notes Comput Sc Web Services and Formal Methods = Lect. Notes. Comput. Sc. Web Services and Formal Methods, Proceedings = Lect Notes Comput Sc Web Services and Formal Methods, Proceedings = Lect. Notes. Comput. Sc. Web Services, E-business, and The Semantic Web = Lect Notes Comput Sc Web Services, E-business, and The Semantic Web = Lect. Notes. Comput. Sc. Web Services -icws-europe 2003, Proceedings = Lect Notes Comput Sc Web Services -icws-europe 2003, Proceedings = Lect. Notes. Comput. Sc. Web Services in The Enterprise = Netw Syst Manag Web Services in The Enterprise = Netw. Syst. Manag. Web Services, Proceedings = Lect Notes Comput Sc Web Services, Proceedings = Lect. Notes. Comput. Sc. Websprache.net: Sprache Und Kommunikation Im Internet = Linguist-impulse Ten Websprache.net: Sprache Und Kommunikation Im Internet = Linguist-impulse. Ten. Web Technologies and Applications = Lect Notes Comput Sc Web Technologies and Applications = Lect. Notes. Comput. Sc. Web Technologies Research and Development - Apweb 2005 = Lect Notes Comput Sc Web Technologies Research and Development - Apweb 2005 = Lect. Notes. Comput. Sc. Web Usage Analysis and User Profiling = Lect Notes Comput Sc Web Usage Analysis and User Profiling = Lect. Notes. Comput. Sc. Web, Web-services, and Database Systems = Lect Notes Comput Sc Web, Web-services, and Database Systems = Lect. Notes. Comput. Sc. Weed Biology and Management = Weed Biol Manag Weed Biology and Management = Weed Biol. Manag. Weed Research = Weed Res Weed Research = Weed Res. Weeds and Weed Control 1990, Vols 1 and 2 = P Swed W C Weeds and Weed Control 1990, Vols 1 and 2 = P. Swed. W. C. Weed Science = Weed Sci Weed Science = Weed Sci. Weeds in A Changing World = Bcpc Symp Ser Weeds in A Changing World = Bcpc. Symp. Ser. Weeds: Management, Economic Impacts and Biology = Agr Issues Policies Weeds: Management, Economic Impacts and Biology = Agr. Issues. Policies. Weeds = Weeds-u Weeds = Weeds-u. Weed Technology = Weed Technol Weed Technology = Weed Technol. Weekend magazine = Weekend Mag Weekly Epidemiological Record=Wkly Epidemiol Rec;; Weekly Epidemiological Record = Wkly. Epidemiol. Rec. Weekly mail (Johannesburg, South Africa) = Weekly Mail We Europeans: Media, Representations and Identities = Changing Media We Europeans: Media, Representations and Identities = Changing. Media. Wege Des Essayistischen Schreibens Im Deutschsprachigen Raum (1900-1920) = Amst Beitr Neuer Ger Wege Des Essayistischen Schreibens Im Deutschsprachigen Raum (1900-1920) = Amst. Beitr. Neuer. Ger. Wegweiser Fur Den Erfinder: Von Der Aufgabe Uber Die Idee Zum Patent, 3 Erweiterte Und Aktualisierte Auflage = Vdi-buch Wegweiser Fur Den Erfinder: Von Der Aufgabe Uber Die Idee Zum Patent, 3 Erweiterte Und Aktualisierte Auflage = Vdi-buch. Wehrdienst Und Gesellschaft = Wehrd U Gesell Wehrdienst Und Gesellschaft = Wehrd. U. Gesell. Wehrmedizinische Mitteilungen = Wehrmed Mitt Wehrmedizinische Monatsschrift = Wehrmed Monatsschr Weichangbingxue he ganbingxue zazhi = Chinese journal of gastroenterology and hepatology|Weichangbingxue He Ganbingxue Zazhi Weichenstellungen Der Evangelischen Kirche Im 19. Und 20. Jahrhundert: Beitrage Zur Kirchengeschichte Und Kirchenordnung = Arb Kirchengesch Weichenstellungen Der Evangelischen Kirche Im 19. Und 20. Jahrhundert: Beitrage Zur Kirchengeschichte Und Kirchenordnung = Arb. Kirchengesch. Weichteil- Und Viszeralchirurgie Bei Hippokrates = Beitr Altertumskunde Weichteil- Und Viszeralchirurgie Bei Hippokrates = Beitr. Altertumskunde. Weighted Littlewood-paley Theory and Exponential-square Integrability = Lect Notes Math Weighted Littlewood-paley Theory and Exponential-square Integrability = Lect. Notes. Math. Weighted Norm Inequalities for Integral Transforms With Product Kernals = Math Res Dev Weighted Norm Inequalities for Integral Transforms With Product Kernals = Math. Res. Dev. Weight Filtrations On Log Crystalline Cohomologies of Families of Open Smooth Varieties = Lect Notes Math Weight Filtrations On Log Crystalline Cohomologies of Families of Open Smooth Varieties = Lect. Notes. Math. Weights, Extrapolation and The Theory of Rubio De Francia = Oper Theory Adv Appl Weights, Extrapolation and The Theory of Rubio De Francia = Oper. Theory Adv. Appl. Weimarer Beitrage = Weimarer Beitr Weimarer Beitrage = Weimarer Beitr. Weinberg Und Keller = Weinberg Keller WE international = WE Int Weinwirtschaft Technik = Weinwirtsch. Tech. Wein Wissenschaft = Wein Wiss. Weisheit Aus Der Begegnung: Bildung Nach Dem Buch Ben Sira = Beih Z Alttest Wiss Weisheit Aus Der Begegnung: Bildung Nach Dem Buch Ben Sira = Beih. Z. Alttest. Wiss. Wei Sheng Wu Hsueh Pao [Acta Microbiologica Sinica]=Wei Sheng Wu Hsueh Pao;; Wei Sheng Wu Xue Bao (Acta Microbiologica Sinica) = Wei Sheng Wu Xue Bao Wei Sheng Yan Jiu (Journal of Hygiene Research) = Wei Sheng Yan Jiu Wei Sheng Yen Chiu Journal of Hygiene Research (Pei-Ching Shih=Wei Sheng Yen Chiu;; Wei ti gu sheng wu xue bao = Acta micropalaeontologica Sinica|Wei Ti Gu Sheng Wu Xue Bao Weld Cracking in Ferrous Alloys = Woodhead Publ Mater Weld Cracking in Ferrous Alloys = Woodhead. Publ. Mater. Welding and Joining of Magnesium Alloys = Woodhead Publ Mater Welding and Joining of Magnesium Alloys = Woodhead. Publ. Mater. Welding and Metal Fabrication = Weld Met Fabr Welding and Metal Fabrication = Weld. Met. Fabr. Welding Design & Fabrication = Weld Design Fabr Welding Design & Fabrication = Weld. Design Fabr. Welding International = Weld. Int. Welding in The World = Weld World Welding in The World = Weld. World Welding Journal = Weld J Welding Journal = Weld. J. Welding: Processes, Quality, and Applications = Mech Eng Theor Appl Welding: Processes, Quality, and Applications = Mech. Eng. Theor. Appl. Welding Production = Weld Prod+ Welding Production = Weld. Prod+.+ Welding Research Abroad = Weld Res Abroad Welding Research Abroad = Weld. Res. Abroad Welding Research Council Bulletin = Weld Res Counc Bull Welding Research Council Bulletin = Weld. Res. Counc. Bull. Welding Research International = Weld Res Int Welding Research International = Weld. Res. Int. Weleda Korrespondenzblatter fur Aerzte = Weleda Korrespondenzbl Aerzte Welfare in review = Welf Rev Welfare of Domestic Fowl and Other Captive Birds = Anim Welfare Ser Welfare of Domestic Fowl and Other Captive Birds = Anim. Welfare Ser. Welfare of Farmed Ratites = Anim Welfare Ser Welfare of Farmed Ratites = Anim. Welfare Ser. Welfare of The Laying Hen = Poult Sci S Welfare of The Laying Hen = Poult. Sci. S. Welfare, Right and The State: A Framework for Thinking = Routl Adv Int Polit Welfare, Right and The State: A Framework for Thinking = Routl. Adv. Int. Polit. Wellbeing and Development in Peru: Local and Universal Views Confronted = Stud Am Wellbeing and Development in Peru: Local and Universal Views Confronted = Stud. Am. Well-being = Cross Cont Well-being = Cross. Cont. Wellington's Men in Australia: Peninsular War Veterans and The Making of Empire C. 1820-40 = War Cult Soc 1750-18 Wellington's Men in Australia: Peninsular War Veterans and The Making of Empire C. 1820-40 = War Cult. Soc. 1750-18. Welsh History Review = Welsh Hist Rev Welsh History Review = Welsh Hist. Rev. Welt Als Bild: Interdisziplinare Beitrage Zur Visualitat Von Weltbildern = Arb Kirch Welt Als Bild: Interdisziplinare Beitrage Zur Visualitat Von Weltbildern = Arb. Kirch. Weltanschauliche Orientierungsversuche Im Exil = Ams C Mod G Weltanschauliche Orientierungsversuche Im Exil = Ams. C. Mod. G. Welt Der Gotterbilder = Beih Z Alttest Wiss Welt Der Gotterbilder = Beih. Z. Alttest. Wiss. Welt Der Slaven-halbjahresschrift Fur Slavistik = Welt Slaven Welt Der Slaven-halbjahresschrift Fur Slavistik = Welt Slaven. Welt Des Islams = Welt Islam Welt Des Islams = Welt Islam. Welt Im Ausnahmezustand: Eine Untersuchung Zu Aussagegehalt Und Theologie Des Wachterbuches (1 Hen 1 36) = Beih Z Alttest Wiss Welt Im Ausnahmezustand: Eine Untersuchung Zu Aussagegehalt Und Theologie Des Wachterbuches (1 Hen 1 36) = Beih. Z. Alttest. Wiss. Weltwirtschaftliches Archiv-review of World Economics = Weltwirtsch Arch Weltwirtschaftliches Archiv-review of World Economics = Weltwirtsch. Arch. Weltwirtschaftliches Archiv=Weltwirtsch. Arch. Weltwirtschaftliches Archiv = Weltwirtsch Arch Wem-water Engineering & Management = Wem Wem-water Engineering & Management = Wem. Wem-water Engineering & Management = Wem-water Eng Manag Wem-water Engineering & Management = Wem-water Eng. Manag. Wenner-gren Center International Symposium Series = Wenner-gr C Wenner-gren Center International Symposium Series = Wenner-gr. C. Wenner-gren International Series = Wenn Gr Int Wenner-gren International Series = Wenn. Gr. Int. Wen shi zhe xue bao / Guo li Taiwan da xue = Bull Coll Lib Arts Wen wu (1959) = Wen Wu Wereld en Zending = Wereld Zending Wer Kauft Liebesgotter: Metastasen Eines Motivs = Abh Akad Wiss Got Ph Wer Kauft Liebesgotter: Metastasen Eines Motivs = Abh. Akad. Wiss. Got. Ph. Werkpolitik: Zur Literaturgeschichte Kritischer Kommunikation Vom 17 Bis Ins 20 Jahrhundert Mit Studien Zu Klopstock, Tieck, Goethe Und George = Hist Hermen Ser Stud Werkpolitik: Zur Literaturgeschichte Kritischer Kommunikation Vom 17 Bis Ins 20 Jahrhundert Mit Studien Zu Klopstock, Tieck, Goethe Und George = Hist. Hermen. Ser. Stud. Werkstattstechnik = Werkstattstechnik Werkstattstechnik Zeitschrift Fur Industrielle Fertigung = Wt-z Ind Fertigung Werkstattstechnik Zeitschrift Fur Industrielle Fertigung = Wt-z. Ind. Fertigung Werkstoffe Und Korrosion-materials and Corrosion = Werkst Korros Werkstoffe Und Korrosion-materials and Corrosion = Werkst. Korros. Werkstoffe und Korrosion = Werkst. Korros. Werkstoffkunde, 2008 = Vdi-buch Werkstoffkunde, 2008 = Vdi-buch. Werkstoffkunde = Vdi-buch Werkstoffkunde = Vdi-buch. Werkzeugmaschinen 3: Mechatronische Systeme, Vorschubantriebe, Prozessdiagnose = Vdi-buch Werkzeugmaschinen 3: Mechatronische Systeme, Vorschubantriebe, Prozessdiagnose = Vdi-buch. Werkzeugmaschinen 4 = Vdi-buch Werkzeugmaschinen 4 = Vdi-buch. Werkzeugmaschinen 5 = Vdi-buch Werkzeugmaschinen 5 = Vdi-buch. Werkzeugmaschinen Konstruktion Und Berechnung = Vdi-buch Werkzeugmaschinen Konstruktion Und Berechnung = Vdi-buch. Werkzeugmaschinen: Maschinenarten Und Anwendungsbereiche = Vdi-buch Werkzeugmaschinen: Maschinenarten Und Anwendungsbereiche = Vdi-buch. Werner Elerts Apologetisches Fruhwerk = Theol Bibl Topelmann Werner Elerts Apologetisches Fruhwerk = Theol. Bibl. Topelmann. Wertanalyse Praxis 2008 = Vdi Bericht Wertanalyse Praxis 2008 = Vdi. Bericht. Wertorientiertes Supply Chain Management = Vdi-buch Wertorientiertes Supply Chain Management = Vdi-buch. Wertstromdesign: Der Weg Zur Schlanken Fabrik = Vdi-buch Wertstromdesign: Der Weg Zur Schlanken Fabrik = Vdi-buch. Weser River = Limnol Akt Weser River = Limnol. Akt. Wesleyan theological journal = Wesleyan Theol J West African Journal of Archaeology = W Afr J Archaeol West African Journal of Archaeology = W. Afr. J. Archaeol. West African journal of medicine = West Afr J Med West African Journal of Medicine=West Afr J Med;; West African Journal of Medicine = West Afr. J. Med. West African journal of pharmacology and drug research = West Afr J Pharmacol Drug Res West African Journal of Pharmacology and Drug Research = West Afr. J. Pharmacol. Drug Res. West African Medical Journal and Nigerian Medical and Dental Practitioner = West Afr. Med. J. Niger. Med. Dent. Pract. West African Medical Journal and Nigerian Practitioner = West Afr. Med. J. Niger. Pract. West African Medical Journal = West Afr. Med. J. West African pharmacist = West Afr Pharm West Antarctic Ice Sheet Initiative, Vol 2 = Nasa Conf P West Antarctic Ice Sheet Initiative, Vol 2 = Nasa. Conf. P. West Canadian Journal of Anthropology = W Can J Anthropol West Canadian Journal of Anthropology = W. Can. J. Anthropol. Westerly = Westerly Western African Studies = W African Studies Western African Studies = W. African Studies Western American Literature = Western Am Lit Western American Literature = Western Am. Lit. Western Dental Society Bulletin = West. Dent. Soc. Bull. Western Economic Journal=Western Econ. J. Western Economic Journal = Western Econ J Western Economic Journal = Western Econ. J. Western Electric Engineer = Western Electr Eng Western Electric Engineer = Western Electr. Eng. Western Folklore = Western Folklore Western folklore = West Folk Western Hemisphere Series = West Hemisphere Ser Western Hemisphere Series = West. Hemisphere Ser. Western Historical Quarterly = Western Hist Quart Western Historical Quarterly = Western Hist. Quart. Western Humanities Review = Western Hum Rev Western Humanities Review = Western Hum. Rev. Western Illinois regional studies = West Ill Reg Stud Western Intellectuals and The Soviet Union, 1920-40 = Basees-rout Ser Russ Western Intellectuals and The Soviet Union, 1920-40 = Basees-rout. Ser. Russ. Western Journal of Agricultural Economics=Western J. Agr. Econ. Western Journal of Agricultural Economics = Western J Agr Econ Western Journal of Agricultural Economics = Western J. Agr. Econ. Western Journal of Applied Forestry = West J Appl For Western Journal of Applied Forestry = West. J. Appl. For. Western Journal of Communication = Western J Comm Western Journal of Communication = Western J. Comm. Western journal of medicine and surgery = West J Med Surg Western Journal of Medicine = Western J Med Western Journal of Medicine = Western J. Med. Western Journal of Medicine=West J Med;; Western Journal of Medicine = West. J. Med. Western Journal of Nursing Research = Western J Nurs Res Western Journal of Nursing Research = Western J. Nurs. Res. Western journal of nursing research = West J Nurs Res Western Journal of Nursing Research=West J Nurs Res;; Western Journal of Nursing Research = West. J. Nurs. Res. Western journal of speech communication : WJSC = West J Speech Commun Western Journal of Surgery Obstetrics and Gynecology = Western J Surg Ob Gy Western Journal of Surgery Obstetrics and Gynecology = Western J. Surg. Ob. Gy. Western journal of surgery, obstetrics, and gynecology = West J Surg Obstet Gynecol Western medicine; the medical journal of the west = West Med Med J West Western Medicine; The Medical Journal of the West = West Med. Med. J. West Western New England law review = West New Engl Law Rev Western North American Naturalist = West N Am Naturalist Western North American Naturalist = West. N. Am. Naturalist Western Ontario law review = West Ont Law Rev Western Ontario Series in Philosophy of Science = West Ont Ser Philos Western Ontario Series in Philosophy of Science = West. Ont. Ser. Philos. Western Ontario Series in Philosophy of Science = W Ont Ser Philos Sci Western Ontario Series in Philosophy of Science = W. Ont. Ser. Philos. Sci. Western Pharmacology Society, Proceedings of The Thirty-eighth Annual Meeting = P W Pharmacol Soc Western Pharmacology Society, Proceedings of The Thirty-eighth Annual Meeting = P. W. Pharmacol. Soc. Western Pharmacology Society - Proceedings of The Thirty-ninth Annual Meeting = P W Pharmacol Soc Western Pharmacology Society - Proceedings of The Thirty-ninth Annual Meeting = P. W. Pharmacol. Soc. Western Plastics = Western Plast Western Plastics = Western Plast. Western Political Quarterly = Western Polit Quart Western Political Quarterly = Western Polit. Quart. Western Snow Conference, 65th Annual Meeting = P West Snow Conf Western Snow Conference, 65th Annual Meeting = P. West. Snow Conf. Western states Jewish historical quarterly = West States Jew Hist Q Western states Jewish history = West States Jew Hist Western State University law review = West State Univ Law Rev West European politics = West Eur Polit West European Politics = West Eur Polit West European Politics = West Eur. Polit. West Gondwana: Pre-cenozoic Correlations Across The South Atlantic Region = Geol Soc Spec Publ West Gondwana: Pre-cenozoic Correlations Across The South Atlantic Region = Geol. Soc. Spec. Publ. West Indian Medical Journal=West Indian Med J;; West Indian Medical Journal = West Indian Med. J. West Indian Medical Journal = W Indian Med J West Indian Medical Journal = W. Indian Med. J. Westminster Institute review = Westminst Inst Rev West Nile Virus: Detection, Surveillance, and Control = Ann Ny Acad Sci West Nile Virus: Detection, Surveillance, and Control = Ann. Ny. Acad. Sci. West of England medical journal = West Engl Med J West of England Medical Journal = West Engl. Med. J. West's annotated California codes. California = Wests Annot Calif Codes Calif West's annotated Indiana code : under arrangement of the official Indiana code. Indiana = Wests Annot Indiana Code West's Atlantic reporter = West's Atl Report West's California reporter = Wests Calif Report West's federal reporter : cases argued and determined in the United States courts of appeals and Temporary Emergency Court of Appeals = Wests Fed Rep West's federal supplement = Wests Fed Suppl West's Florida statutes annotated : under arrangement of the official Florida statutes. Florida = Wests Fla Statut Annot Fla West's New York supplement = Wests N Y Suppl West's north eastern reporter = Wests North East Rep West's north western reporter = Wests North West Rep West's Pacific reporter = Wests Pac Report West's revised code of Washington annotated. Washington (State) = Wests Revis Code Wash Annot Wash State West's south eastern reporter = Wests South East Report West's southern reporter = Wests South Report West's south western reporter = Wests South West Report West's Supreme Court reporter = Wests Supreme Court Report West's Wisconsin statutes annotated / under arrangement of the official Wisconsin statutes. Wisconsin = Wests Wis Statut Annot Wis Westview Special Studies in Agriculture Science and Policy = Wss Agr Sci Westview Special Studies in Agriculture Science and Policy = Wss. Agr. Sci. Westview Studies in Insect Biology = Westv Stud Westview Studies in Insect Biology = Westv. Stud. West Virginia Agricultural and Forestry Experiment Station Bulletin = W Va Afes Bull West Virginia Agricultural and Forestry Experiment Station Bulletin = W. Va. Afes. Bull. West Virginia Agricultural Experiment Station Bulletin = W Va Agr Exp St Bull West Virginia Agricultural Experiment Station Bulletin = W. Va. Agr. Exp. St. Bull. West Virginia Agricultural Experiment Station Current Report = W Va Aes Curr Rep West Virginia Agricultural Experiment Station Current Report = W. Va. Aes. Curr. Rep. West Virginia dental journal = W V Dent J West Virginia Dental Journal = W. V. Dent. J. West Virginia history = W Va Hist West Virginia law review = West VA Law Rev West Virginia Law Review = W Va Law Rev West Virginia Law Review = W. Va. Law Rev. West Virginia Medical Journal = W Va Med J West Virginia Medical Journal = W. Va. Med. J. West Virginia Medical Journal=W V Med J;; West Virginia Medical Journal = W. V. Med. J. West Virginia University Philological Papers, Vol 44 = W Va U Phil West Virginia University Philological Papers, Vol 44 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 45 = W Va U Phil West Virginia University Philological Papers, Vol 45 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 46 = W Va U Phil West Virginia University Philological Papers, Vol 46 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 47 = W Va U Phil West Virginia University Philological Papers, Vol 47 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 48 = W Va U Phil West Virginia University Philological Papers, Vol 48 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 49 = W Va U Phil West Virginia University Philological Papers, Vol 49 = W. Va. U. Phil. West Virginia University Philological Papers, Vol 50 = W Va U Phil West Virginia University Philological Papers, Vol 50 = W. Va. U. Phil. West Virginia University Philological Papers = W Va U Phil West Virginia University Philological Papers = W. Va. U. Phil. West Virginia Unversity Conferences On Life-span Developmental Psychology = Wvu Con Lif West Virginia Unversity Conferences On Life-span Developmental Psychology = Wvu. Con. Lif. Wet Electrochemical Detection of Organic Impurities = Chem Res Appl-nova Wet Electrochemical Detection of Organic Impurities = Chem. Res. Appl-nova. Wet End Operations - Short Course = Notes Tech Wet End Operations - Short Course = Notes. Tech. Wet End Operations Short Course = Notes Tech Wet End Operations Short Course = Notes. Tech. Wetenschappelijke tijdingen = Wet Tijd Wetlands and Natural Resource Management = Ecol Stu An Wetlands and Natural Resource Management = Ecol. Stu. An. Wetlands and Natural Resource Management = Ecol Stud-anal Synth Wetlands and Natural Resource Management = Ecol. Stud-anal. Synth. Wetlands Ecology and Management = Wetlands Ecol. Manage. Wetlands Ecology and Management = Wetl Ecol Manag Wetlands Ecology and Management = Wetl. Ecol. Manag. Wetlands Ecology Conservation and Management = Wetl Ecol Conserv Ma Wetlands Ecology Conservation and Management = Wetl. Ecol. Conserv. Ma. Wetlands Ecosystems in Asia: Function and Management = Dev Ecosystems Wetlands Ecosystems in Asia: Function and Management = Dev. Ecosystems Wetlands: Functioning, Biodiversity Conservation, and Restoration = Ecol Stu An Wetlands: Functioning, Biodiversity Conservation, and Restoration = Ecol. Stu. An. Wetlands: Monitoring, Modelling and Management = Proc Monogr Eng Wate Wetlands: Monitoring, Modelling and Management = Proc. Monogr. Eng. Wate. Wetlands Through Time = Geol Soc Am Spec Pap Wetlands Through Time = Geol. Soc. Am. Spec. Pap. Wetlands = Wetlands Wetland Systems: Storm Water Management Control = Green Energy Technol Wetland Systems: Storm Water Management Control = Green. Energy. Technol. Wetter und Leben = Wetter Leben Wetting and Spreading Dynamics = Surfactant Sci Ser Wetting and Spreading Dynamics = Surfactant. Sci. Ser. Wetting Phenomena = Lect Notes Phys Wetting Phenomena = Lect. Notes. Phys. Weyl Group Multiple Dirichlet Series: Type A Combinatorial Theory = Ann Math Stud Weyl Group Multiple Dirichlet Series: Type A Combinatorial Theory = Ann. Math. Stud. Weyward Macbeth: Intersections of Race and Performance = Signs Race Weyward Macbeth: Intersections of Race and Performance = Signs. Race W G Hart Legal Workshop Series = Wg Hart Leg Worksh S W G Hart Legal Workshop Series = Wg. Hart Leg. Worksh. S. W G Sebald - Die Dialektische Imagination = Quell Forsch Lit Kul W G Sebald - Die Dialektische Imagination = Quell. Forsch. Lit. Kul. W G Sebald: History - Memory - Trauma = Interd Germ Cult W G Sebald: History - Memory - Trauma = Interd. Germ. Cult. W G Sebald: Schreiben Ex Patria/expatriate Writing = Ams C Mod G W G Sebald: Schreiben Ex Patria/expatriate Writing = Ams. C. Mod. G W G Sebald: Schreiben Ex Patria/expatriate Writing = Amst Beitr Neuer Ger W G Sebald: Schreiben Ex Patria/expatriate Writing = Amst. Beitr. Neuer. Ger. Whales, Seals, Fish and Man = Dev Mar Bio Whales, Seals, Fish and Man = Dev. Mar. Bio. Whaling Diplomacy: Defining Issues in International Environmental Law = New Horiz Environ La Whaling Diplomacy: Defining Issues in International Environmental Law = New. Horiz. Environ. La. Wharton Magazine = Wharton Mag Wharton Magazine = Wharton Mag. Wharton Quarterly = Wharton Quart Wharton Quarterly = Wharton Quart. What Are Gamma-ray Bursts = Princ Front Phys What Are Gamma-ray Bursts = Princ. Front. Phys. What Counts As Knowledge in Educational Settings: Disciplinary Knowledge, Assessment, and Curriculum = Rev Res Educ What Counts As Knowledge in Educational Settings: Disciplinary Knowledge, Assessment, and Curriculum = Rev. Res. Educ. What Counts in Teaching Mathematics: Adding Value to Self and Content = Self Study Teach Tea What Counts in Teaching Mathematics: Adding Value to Self and Content = Self Study. Teach. Tea. What Do Children Need to Flourish? = Search Inst Ser Dev What Do Children Need to Flourish? = Search. Inst. Ser. Dev. What Do Children Need to Flourish? = Search I Ser Dev Att What Do Children Need to Flourish? = Search. I. Ser. Dev. Att. What Does The Process Cost Us? = Vdi Bericht What Does The Process Cost Us? = Vdi. Bericht. What Drives Metamorphism and Metamorphic Reactions? = Geol Soc Spec Publ What Drives Metamorphism and Metamorphic Reactions? = Geol. Soc. Spec. Publ. What English Language Teachers Need to Know, Vol Ii: Facilitating Learning = Esl Appl Ling Prof What English Language Teachers Need to Know, Vol Ii: Facilitating Learning = Esl. Appl. Ling. Prof. What Every Engineer Should Know About Computational Techniques of Finite Element Analysis, Second Edition = What Every Eng Shoul What Every Engineer Should Know About Computational Techniques of Finite Element Analysis, Second Edition = What Every Eng. Shoul. What Every Engineer Should Know = What Every Eng Shoul What Every Engineer Should Know = What Every Eng. Shoul. What Future for Social Security? Debates and Reforms in National and Cross-national Perspective = Stud Emp Soc Policy What Future for Social Security? Debates and Reforms in National and Cross-national Perspective = Stud. Emp. Soc. Policy. What Good Condition: Reflections On An Australian Aboriginal Treaty 1986-2006 = Aborig Hist Mg Ser What Good Condition: Reflections On An Australian Aboriginal Treaty 1986-2006 = Aborig. Hist. Mg. Ser. What Is A Volcano = Geol Soc Am Spec Pap What Is A Volcano = Geol. Soc. Am. Spec. Pap. What Is Controlling Life? = Mod Tr Biothermokin What Is Controlling Life? = Mod. Tr. Biothermokin. What Is Good Instruction Now? Library Instruction for The 90s = Lib Orient What Is Good Instruction Now? Library Instruction for The 90s = Lib. Orient. What Is Meaning = Soochow Univ Lect What Is Meaning = Soochow. Univ. Lect. What Is Narratology = Narratolog What Is Narratology = Narratolog. What Is Research in The Visual Arts? : Obsession, Archive, Encounter = Clark Stud Vis Arts What Is Research in The Visual Arts? : Obsession, Archive, Encounter = Clark. Stud. Vis. Arts. What Makes A City, Planning for Quality of Place: The Case of High-speed Train Station Area Redevelopment = Sustain Urban Areas What Makes A City, Planning for Quality of Place: The Case of High-speed Train Station Area Redevelopment = Sustain. Urban. Areas. What Makes Grammaticalization? A Look From Its Fringes and Its Components = Trends Linguist-stud What Makes Grammaticalization? A Look From Its Fringes and Its Components = Trends. Linguist-stud. What Mothers Say About Special Education: From The 1960s to The Present = Palg Stud Urban Educ What Mothers Say About Special Education: From The 1960s to The Present = Palg. Stud. Urban. Educ. What Philosophers Say Compared With What Psychologists Find in Discerning Values: How Wise People Interpret Life = Psychol Res Prog What Philosophers Say Compared With What Psychologists Find in Discerning Values: How Wise People Interpret Life = Psychol. Res. Prog. What's Gone Wrong in America's Classrooms = Hoover Inst What's Gone Wrong in America's Classrooms = Hoover. Inst. What's New in Cardiovascular Imaging? = Dev Cardiovasc Med What's New in Cardiovascular Imaging? = Dev. Cardiovasc. Med. What’s New in Forest Research = What’s New For. Res. What The God-seekers Found in Nietzsche = Stud Slav Lit Poet What The God-seekers Found in Nietzsche = Stud. Slav. Lit. Poet. What The West Can Learn From The East: Asian Perspectives On The Psychology of Learning and Motivation = Res Multicult Educ I What The West Can Learn From The East: Asian Perspectives On The Psychology of Learning and Motivation = Res. Multicult. Educ. I. What We Know About Cscl: and Implementing It in Higher Education = Comput-supp Collab L What We Know About Cscl: and Implementing It in Higher Education = Comput-supp. Collab. L. What We Know About Emotional Intelligence: How It Affects Learning, Work, Relationships, and Our Mental Health = Bradford Books What We Know About Emotional Intelligence: How It Affects Learning, Work, Relationships, and Our Mental Health = Bradford. Books. What Women Want From Work: Gender and Occupational Choice in The 21st Century = York Stud Women Men What Women Want From Work: Gender and Occupational Choice in The 21st Century = York. Stud. Women Men. Wheat Gluten = Roy Soc Ch Wheat Gluten = Roy. Soc. Ch. Wheat in A Global Environment = Dev Plant Breed Wheat in A Global Environment = Dev. Plant. Breed. Wheat Production in Stressed Environments = Dev Plant Breed Wheat Production in Stressed Environments = Dev. Plant. Breed. Wheel/rail Interface Handbook = Woodhead Publ Mech E Wheel/rail Interface Handbook = Woodhead. Publ. Mech. E. Wheels and Axles: Cost-effective Engineering = Imeche Sem Wheels and Axles: Cost-effective Engineering = Imeche. Sem. Wheels and Axles = Imeche Sem Wheels and Axles = Imeche. Sem. Wheels Within Wheels = Duisb Arb S Wheels Within Wheels = Duisb. Arb. S. W. Helbig, Führer durch die öffentlichen Sammlungen klassischer Altertümer in Rom = Helbig Whence The Mountains? Inquiries Into The Evolution of Orogenic Systems = Geol Soc Am Spec Pap Whence The Mountains? Inquiries Into The Evolution of Orogenic Systems = Geol. Soc. Am. Spec. Pap. When Conscience and Politics Meet: A Catholic View = P Wethers I When Conscience and Politics Meet: A Catholic View = P. Wethers. I. When Did Plate Tectonics Begin On Planet Earth = Geol S Am S When Did Plate Tectonics Begin On Planet Earth = Geol. S. Am. S. When Gods Were Men: The Embodied God in Biblical and Near Eastern Literature = Beih Z Alttest Wiss When Gods Were Men: The Embodied God in Biblical and Near Eastern Literature = Beih. Z. Alttest. Wiss. When Puberty Is Precocious = Contemp Endocrinol S When Puberty Is Precocious = Contemp. Endocrinol. S. When Public Sector Workers Unionize = Nat Bur Ec When Public Sector Workers Unionize = Nat. Bur. Ec. When Self-consciousness Breaks : Alien Voices and Inserted Thoughts = Philos Psychopathol When Self-consciousness Breaks : Alien Voices and Inserted Thoughts = Philos. Psychopathol. When The Grass Is Gone : Development Intervention in African Arid Lands = Sem P Scand When The Grass Is Gone : Development Intervention in African Arid Lands = Sem. P. Scand. When The Land Meets The Sea = When Land Meets Sea When The Past Is Always Present: Emotional Traumatization, Causes, and Cures = Rout Psychsoc Stress When The Past Is Always Present: Emotional Traumatization, Causes, and Cures = Rout. Psychsoc. Stress. When to Stop The Cheering: The Black Press, The Black Community, and The Integration of Professional Baseball = Stud Afr Am Hist Cul When to Stop The Cheering: The Black Press, The Black Community, and The Integration of Professional Baseball = Stud. Afr. Am. Hist. Cul. Where Does Binding Theory Apply? = Linguist Inq Monogr Where Does Binding Theory Apply? = Linguist. Inq. Monogr. Where Instrumentation Is Going - Conference Proceedings, Vols 1 and 2 = Ieee Imtc P Where Instrumentation Is Going - Conference Proceedings, Vols 1 and 2 = Ieee. Imtc. P. Where Never Before: Beckett's Poetics of Elsewhere/la Poetique De L'ailleurs = Samuel Beckett Today Where Never Before: Beckett's Poetics of Elsewhere/la Poetique De L'ailleurs = Samuel. Beckett. Today. Where Prosody Meets Pragmatics = Stud Pragmat Where Prosody Meets Pragmatics = Stud. Pragmat. Where Semantics Meets Pragmatics = Cur Res Sem Prag Int Where Semantics Meets Pragmatics = Cur. Res. Sem. Prag. Int. Where Semantics Meets Pragmatics = Curr Res Semant Prag Where Semantics Meets Pragmatics = Curr. Res. Semant. Prag. Where Strangers Become Neighbours: Integrating Immigrants in Vancouver, Canada = Urban Land Perspect Where Strangers Become Neighbours: Integrating Immigrants in Vancouver, Canada = Urban. Land. Perspect. Which Mary?: The Marys of Early Christian Tradition = Sbl Symp Ser Which Mary?: The Marys of Early Christian Tradition = Sbl. Symp. Ser. Which Psychotherapies in Year 2000 ? = Ann S Eur R Which Psychotherapies in Year 2000 ? = Ann. S. Eur. R. Whig Revival, 1808-1830 = Stud Mod Hist Whig Revival, 1808-1830 = Stud. Mod. Hist. Whirling Disease: Reviews and Current Topics = Am Fish S S Whirling Disease: Reviews and Current Topics = Am. Fish. S. S. White and Black Posthumanism: After Consciousness and The Unconscious = Trace Transm Rhetor White and Black Posthumanism: After Consciousness and The Unconscious = Trace. Transm. Rhetor. White Biotechnology = Adv Biochem Eng Biot White Biotechnology = Adv. Biochem. Eng. Biot. White Dwarfs : Advances in Observation and Theory = Nato Adv Sci Inst Se White Dwarfs : Advances in Observation and Theory = Nato. Adv. Sci. Inst. Se. White Dwarfs = Astrophys Space Sc L White Dwarfs = Astrophys. Space. Sc. L. White Dwarfs / = Nato Adv Sci I C-mat White Dwarfs / = Nato. Adv. Sci. I. C-mat. White Dwarfs = Nato Sci Ser Ii-math White Dwarfs = Nato. Sci. Ser. Ii-math. White Dwarfs = Nato Sci Ser Ii Math White Dwarfs = Nato. Sci. Ser. Ii. Math. Whitehall Histories = Whitehall Hist Whitehall Histories = Whitehall Hist. Whitehall Paper = Whitehall Pap Whitehall Paper = Whitehall Pap. White Matter in Cognitive Neuroscience: Advances in Diffusion Tensor Imaging and Its Applications = Ann Ny Acad Sci White Matter in Cognitive Neuroscience: Advances in Diffusion Tensor Imaging and Its Applications = Ann. Ny. Acad. Sci. White Negritude: Race, Writing, and Brazilian Cultural Identity = New Concepts Lat Am White Negritude: Race, Writing, and Brazilian Cultural Identity = New. Concepts. Lat. Am. Whiteness and Morality: Pursuing Racial Justice Through Reparations and Sovereignty = Black Relig Woman Th Whiteness and Morality: Pursuing Racial Justice Through Reparations and Sovereignty = Black. Relig. Woman. Th. White Slip Ware of Late Bronze Age Cyprus = Con Chronol White Slip Ware of Late Bronze Age Cyprus = Con. Chronol. Whitestein Series in Software Agent Technologies and Autonomic Computing = Whitestein Ser Softw Whitestein Series in Software Agent Technologies and Autonomic Computing = Whitestein Ser. Softw. Whitestein Series in Software Agent Technologies and Autonomic Computing = Ws So Ag Te Whitestein Series in Software Agent Technologies and Autonomic Computing = Ws. So. Ag. Te. Whitestein Series in Software Agent Technologies = Ws So Ag Te Whitestein Series in Software Agent Technologies = Ws. So. Ag. Te. White Theology: Outing Supremacy in Modernity = Black Relig Woman Th White Theology: Outing Supremacy in Modernity = Black. Relig. Woman. Th. Whither Turbulence, Turbulence At The Crossroads = Lect Notes Phys Whither Turbulence, Turbulence At The Crossroads = Lect. Notes. Phys. Whittier law review = Whittier Law Rev Who Chronicle = Who Chron Who Chronicle = Who Chron. WHO chronicle = WHO Chron WHO Chronicle = WHO Chron. Who Expert Committee On Biological Standardization - 48th Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization - 48th Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization, Fifty-fourth Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization, Fifty-fourth Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization, Fifty-second Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization, Fifty-second Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization: Fifty-sixth Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization: Fifty-sixth Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization, Forty-fifth Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization, Forty-fifth Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization, Forty-fourth Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization, Forty-fourth Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization - Forty-seventh Report = Who Tech Rep Ser Who Expert Committee On Biological Standardization - Forty-seventh Report = Who Tech. Rep. Ser. Who Expert Committee On Biological Standardization = Who Tech Rep Ser Who Expert Committee On Biological Standardization = Who Tech. Rep. Ser. Who Expert Committee On Biological Standarization = Who Tech Rep Ser Who Expert Committee On Biological Standarization = Who Tech. Rep. Ser. Who Expert Committee On Drug Dependence - 28th Report = Who Tech Rep Ser Who Expert Committee On Drug Dependence - 28th Report = Who Tech. Rep. Ser. Who Expert Committee On Drug Dependence - 29th Report = Who Tech Rep Ser Who Expert Committee On Drug Dependence - 29th Report = Who Tech. Rep. Ser. Who Expert Committee On Drug Dependence - 30th Report = Who Tech Rep Ser Who Expert Committee On Drug Dependence - 30th Report = Who Tech. Rep. Ser. Who Expert Committee On Drug Dependence = Who Tech Rep Ser Who Expert Committee On Drug Dependence = Who Tech. Rep. Ser. Who Expert Committee On Leprosy - 7th Report = Who Tech Rep Ser Who Expert Committee On Leprosy - 7th Report = Who Tech. Rep. Ser. Who Expert Committee On Malaria, Twentieth Report = Who Tech Rep Ser Who Expert Committee On Malaria, Twentieth Report = Who Tech. Rep. Ser. Who Expert Committee On Problems Related to Alcohol Consumption = Who Tech Rep Ser Who Expert Committee On Problems Related to Alcohol Consumption = Who Tech. Rep. Ser. Who Expert Committee On Specifications for Pharmaceutical Preparations, 33rd Report = Who Tech Rep Ser Who Expert Committee On Specifications for Pharmaceutical Preparations, 33rd Report = Who Tech. Rep. Ser. Who Expert Committee On Specifications for Pharmaceutical Preparations, 38th Report = Who Tech Rep Ser Who Expert Committee On Specifications for Pharmaceutical Preparations, 38th Report = Who Tech. Rep. Ser. Who Expert Committee On Specifications for Pharmaceutical Preparations - Thirty-fifth Report = Who Tech Rep Ser Who Expert Committee On Specifications for Pharmaceutical Preparations - Thirty-fifth Report = Who Tech. Rep. Ser. Who Expert Committee On Specifications for Pharmaceutical Preparations = Who Tech Rep Ser Who Expert Committee On Specifications for Pharmaceutical Preparations = Who Tech. Rep. Ser. Who Expert Committe On Drug Dependence - 31st Report = Who Tech Rep Ser Who Expert Committe On Drug Dependence - 31st Report = Who Tech. Rep. Ser. Who Expert Consultation On Rabies = Who Tech Rep Ser Who Expert Consultation On Rabies = Who Tech. Rep. Ser. WHO features = WHO Feature Who Food Additives Series = Who Food Ad Who Food Additives Series = Who Food Ad. Who Gains From Free Trade: Export-led Growth, Inequality and Poverty in Latin America = Routl Stud Dev Econ Who Gains From Free Trade: Export-led Growth, Inequality and Poverty in Latin America = Routl. Stud. Dev. Econ. Who Gave You The Epsilon? & Other Tales of Mathematical History = Spectr Ser Who Gave You The Epsilon? & Other Tales of Mathematical History = Spectr. Ser. Whole Body Interaction = Hum-comput Int-sprin Whole Body Interaction = Hum-comput. Int-sprin. Whole Cell Sensing Systems Ii = Adv Biochem Eng Biot Whole Cell Sensing Systems Ii = Adv. Biochem. Eng. Biot. Whole Cell Sensing Systems I: Reporter Cells and Devices = Adv Biochem Eng Biot Whole Cell Sensing Systems I: Reporter Cells and Devices = Adv. Biochem. Eng. Biot. Whole earth review = Whole Earth Rev Whole Regolith Pedology = Sssa Spec Publ Whole Regolith Pedology = Sssa. Spec. Publ. WHO offset publication = WHO Offset Publ WHO Offset Publication = WHO Offset Publ. Who One Is, Book 1 = Phaenomenologica Who One Is, Book 1 = Phaenomenologica. Who One Is, Book 2 = Phaenomenologica Who One Is, Book 2 = Phaenomenologica. Who Owns English? = Engl Lang E Who Owns English? = Engl. Lang. E. Who Owns The Moon?: Extraterrestrial Aspects of Land and Mineral Resources Ownership = Space Regul Lib Who Owns The Moon?: Extraterrestrial Aspects of Land and Mineral Resources Ownership = Space. Regul. Lib. Who Regional Publications European Series = Who Reg Pub Who Regional Publications European Series = Who Reg. Pub. WHO regional publications. European series = WHO Reg Publ Eur Ser WHO Regional Publications European Series = WHO Reg. Publ. Eur. Ser. WHO Regional Publications. European Series=WHO Reg Publ Eur Ser;; Whose Urban Renaissance: An International Comparison of Urban Regeneration Strategies = Routl Stud Hum Geogr Whose Urban Renaissance: An International Comparison of Urban Regeneration Strategies = Routl. Stud. Hum. Geogr. Who Study Group On Tobacco Product Regulation = Who Tech Rep Ser Who Study Group On Tobacco Product Regulation = Who Tech. Rep. Ser. Who Technical Report Series = Who Tech Rep Ser Who Technical Report Series = Who Tech. Rep. Ser. W. H. Roscher, Ausführliches Lexikon der griechischen und römischen Mythologie = RoscherML Why Agree? Why Move? Unifying Agreement-based and Discourse Configurational Languages = Linguist Inq Monogr Why Agree? Why Move? Unifying Agreement-based and Discourse Configurational Languages = Linguist. Inq. Monogr. Why Capitalism Survives Crises: The Shock Absorbers = Res Polit Econ Why Capitalism Survives Crises: The Shock Absorbers = Res. Polit. Econ. Why Care for Nature?: in Search of An Ethical Framework for Environmental Responsibility and Education = Int Libr Environ Agr Why Care for Nature?: in Search of An Ethical Framework for Environmental Responsibility and Education = Int. Libr. Environ. Agr. Why Do We Educate? Renewing The Conversation = Yearb Natl Soc Stud Why Do We Educate? Renewing The Conversation = Yearb. Natl. Soc. Stud. Why Do We Educate? Voices From The Conversation = Yearb Natl Soc Stud Why Do We Educate? Voices From The Conversation = Yearb. Natl. Soc. Stud. Why Galaxies Care About Agb Stars: Their Importance As Actors and Probes = Astr Soc P Why Galaxies Care About Agb Stars: Their Importance As Actors and Probes = Astr. Soc. P. Why Is There No Labor Party in The United States = Princ Stud Am Polit Why Is There No Labor Party in The United States = Princ. Stud. Am. Polit. Why Labour Won The General Election of 1997 1997 = Polit Commun Ser Why Labour Won The General Election of 1997 1997 = Polit. Commun. Ser. Why Managers and Companies Take Risks = Contrib Manag Sci Why Managers and Companies Take Risks = Contrib. Manag. Sci. Why Sports Morally Matter = Routl Crit Stud Spor Why Sports Morally Matter = Routl. Crit. Stud. Spor. Wiadomości archeologiczne. Bulletin archéologique polonais = WiadA Wiadomosci lekarskie (Warsaw, Poland : 1948) = Wiad Lek Wars Pol 1948 Wiadomosci lekarskie (Warsaw, Poland : 1960) = Wiad Lek Wiadomosci Lekarskie=Wiad Lek;; Wiadomosci Lekarskie = Wiad. Lek. Wiadomosci parazytologiczne = Wiad Parazytol Wiadomosci Parazytologiczne=Wiad Parazytol;; Wiadomosci Parazytologiczne = Wiad. Parazytol. Wiadomosci statystyczne (Warsaw, Poland : 1956) = Wiad Stat (Warsaw) Wide Angle-a Quarterly Journal of Film History Theory Criticism & Practice = Wide Angle Wide Angle-a Quarterly Journal of Film History Theory Criticism & Practice = Wide Angle. Wide-bandgap Semiconductors for High-power, High-frequency and High-temperature Applications-1999 = Mater Res Soc Symp P Wide-bandgap Semiconductors for High-power, High-frequency and High-temperature Applications-1999 = Mater. Res. Soc. Symp. P. Wide-bandgap Semiconductors for High Power, High Frequency and High Temperature = Mater Res Soc Symp P Wide-bandgap Semiconductors for High Power, High Frequency and High Temperature = Mater. Res. Soc. Symp. P. Wide Band Gap Semiconductors = Mater Res Soc Symp P Wide Band Gap Semiconductors = Mater. Res. Soc. Symp. P. Wideband Interferometric Sensing and Imaging Polarimetry = P Soc Photo-opt Ins Wideband Interferometric Sensing and Imaging Polarimetry = P. Soc. Photo-opt. Ins. Wide-field Spectroscopy = Astrophys Space Sc L Wide-field Spectroscopy = Astrophys. Space. Sc. L. Wide-gap Chalcopyrites = Springer Series Mate Wide-gap Chalcopyrites = Springer. Series. Mate. Wide-gap Chalcopyrites = Springer Ser Mater S Wide-gap Chalcopyrites = Springer. Ser. Mater. S. Wideochirurgia I Inne Techniki Maloinwazyjne = Wideochirurgia Tec M Wideochirurgia I Inne Techniki Maloinwazyjne = Wideochirurgia Tec. M. Wider Perspectives On Global Development = Stud Dev Econ Policy Wider Perspectives On Global Development = Stud. Dev. Econ. Policy. Widerstand: Dissent and Resistance in The Third Reich = Wid Diss Resis Third Widerstand: Dissent and Resistance in The Third Reich = Wid. Diss. Resis. Third Wiederherstellungschirurgie und Traumatologie. Reconstruction surgery and traumatology = Wiederherstellungschir Traumatol Wiederherstellungschirurgie und Traumatologie = Wiederherstellungschir. Traumatol. Wiederverwendung Von Antike Im Mittelalter = Hans Lietzmann Vorle Wiederverwendung Von Antike Im Mittelalter = Hans. Lietzmann. Vorle. Wiener Arbeiten zur Philosophie = Wien. Arb. Philos. Reihe A Univ.stud. Wiener Archiv fur Psychologie, Psychiatrie und Neurologie = Wien Arch Psychol Psychiatr Neurologie Wiener Beitrage zur Chirurgie = Wien Beitr Chir Wiener Beitrage zur Dermatologie = Wien Beitr Dermatol Wiener Beitrage zur Geburtshilfe und Gynakologie = Wien Beitr Geburtshilfe Gynakol Wiener Beitrage zur Geschichte der Neuzeit = Wien Beitr Gesch Neuzeit Wiener Beitrage zur Hals-, Nasen- und Ohrenheilkunde = Wien Beitr Hals Nasen Ohrenheilkd Wiener Beitrage zur Hygiene = Wien Beitr Hyg Wiener Beitrage zur Kinderheilkunde = Wien Beitr Kinderheilkd Wiener Beitrage zur Zahnheilkunde = Wien Beitr Zahnheilkd Wiener Chaos: Moments, Cumulants and Diagrams: A Survey With Computer Implementation = B & Ss Bocc Spr Ser Wiener Chaos: Moments, Cumulants and Diagrams: A Survey With Computer Implementation = B. &. Ss. Bocc. Spr. Ser. Wiener Geschichtsblatter / herausgegeben vom Verein fur Geschichte der Stadt Wien = Wien Geschichtsbl Wiener humanistische Blätter = WHB Wiener klinische Wochenschrift. Supplementum = Wien Klin Wochenschr Suppl Wiener Klinische Wochenschrift. Supplementum=Wien Klin Wochenschr Suppl;; Wiener Klinische Wochenschrift. Supplementum = Wien. Klin. Wochenschr. Suppl. Wiener klinische Wochenschrift = Wien Klin Wochenschr Wiener Klinische Wochenschrift=Wien Klin Wochenschr;; Wiener Klinische Wochenschrift = Wien Klin Wochenschr Wiener Klinische Wochenschrift = Wien. Klin. Wochenschr. Wiener medizinische Wochenschrift (1946) = Wien Med Wochenschr Wiener medizinische Wochenschrift. Beihefte = Wien Med Wochenschr Beih Wiener Medizinische Wochenschrift. Beihefte = Wien. Med. Wochenschr. Beih. Wiener medizinische Wochenschrift. Supplement = Wien Med Wochenschr Suppl Wiener Medizinische Wochenschrift. Supplement = Wien. Med. Wochenschr. Suppl. Wiener Medizinische Wochenschrift.Supplement=Wien Med Wochenschr Suppl;; Wiener Medizinische Wochenschrift=Wien Med Wochenschr;; Wiener Medizinische Wochenschrift = Wien Med Wochenschr Wiener Medizinische Wochenschrift = Wien. Med. Wochenschr. Wiener Slavistisches Jahrbuch = Wien Slav Jahrb Wiener Slavistisches Jahrbuch = Wien. Slav. Jahrb. Wiener Studien = WSt Wiener Studien: Zeitschrift für klassische Philologie und Patristik = WS Wiener Studien zur Medizin, Geschichte und Philosophie = Wien Stud Med Gesch Philos Wiener Tierarztliche Monatsschrift = Wien Tierarztl Monat Wiener Tierarztliche Monatsschrift = Wien. Tierarztl. Monat. Wiener tierarztliche Monatsschrift = Wien Tierarztl Monatsschr Wiener Tierarztliche Monatsschrift = Wien. Tierarztl. Monatsschr. Wiener Zeitschrift fur die Kunde des Morgenlandes = Wien Z Kunde Morgenl Wiener Zeitschrift für die Kunde des Morgenlandes = WZKM Wiener Zeitschrift fur innere Medizin und ihre Grenzgebiete = Wien Z Inn Med Wiener Zeitschrift fur Innere Medizin und Ihre Grenzgebiete = Wien. Z. Inn. Med. Wiener Zeitschrift fur Nervenheilkunde und deren Grenzgebiete = Wien Z Nervenheilkd Grenzgeb Wiener Zeitschrift fur Nervenheilkunde und deren Grenzgebiete = Wien. Z. Nervenheilkd. Grenzgeb. Wies wspolczesna; pismo ruchu ludowego = Wies Wspolcz Wigalois-wirnts Von Grafenberg: Eine Einfuhrung = Degruyter Studienb Wigalois-wirnts Von Grafenberg: Eine Einfuhrung = Degruyter. Studienb. Wijsgerig perspectief op maatschappij en wetenschap = Wijsgerig Perspect Maatsch Wet Wikinger Im Mittelalter: Die Rezeption Von Vikingr M. Und Viking F. in Der Altnordischen Literatur = Reallexikon Ger Alte Wikinger Im Mittelalter: Die Rezeption Von Vikingr M. Und Viking F. in Der Altnordischen Literatur = Reallexikon. Ger. Alte. Wikis: Tools for Information Work and Collaboration = Chandos Inf Prof Ser Wikis: Tools for Information Work and Collaboration = Chandos. Inf. Prof. Ser. Wildbach- und Lawinenverbau = Wildbach- Lawinenverbau Wilderness and Environmental Medicine = Wilderness Environ. Med. Wilderness & Environmental Medicine = Wild Environ Med Wilderness & Environmental Medicine = Wild. Environ. Med. Wilderness & environmental medicine = Wilderness Environ Med Wilderness Science in A Time of Change Conference, Vol 1 = Us For Serv Rmrs-p Wilderness Science in A Time of Change Conference, Vol 1 = Us. For. Serv. Rmrs-p. Wilderness Science in A Time of Change Conference, Vol 2 = Us For Serv Rmrs-p Wilderness Science in A Time of Change Conference, Vol 2 = Us. For. Serv. Rmrs-p. Wilderness Science in A Time of Change Conference, Vol 3 = Us For Serv Rmrs-p Wilderness Science in A Time of Change Conference, Vol 3 = Us. For. Serv. Rmrs-p. Wilderness Science in A Time of Change Conference, Vol 4 = Us For Serv Rmrs-p Wilderness Science in A Time of Change Conference, Vol 4 = Us. For. Serv. Rmrs-p. Wilderness Science in A Time of Change Conference, Vol 5 = Us For Serv Rmrs-p Wilderness Science in A Time of Change Conference, Vol 5 = Us. For. Serv. Rmrs-p. Wilderness - The Biological and Sociological Meaning in The Northern Areas = U Lap A C R Wilderness - The Biological and Sociological Meaning in The Northern Areas = U. Lap. A. C. R. Wilderness = Wilderness Wilde Writings: Contextual Conditions = Ucla Clark Mem Lib S Wilde Writings: Contextual Conditions = Ucla. Clark. Mem. Lib. S. Wildfire = Wildfire Wildlife and Emerging Zoonotic Diseases: The Biology, Circumstances and Consequences of Cross-species Transmission = Curr Top Microbiol Wildlife and Emerging Zoonotic Diseases: The Biology, Circumstances and Consequences of Cross-species Transmission = Curr. Top. Microbiol. Wildlife and Vegetation of Unmanaged Douglas-fir Forests = Us For Serv T R Pnw Wildlife and Vegetation of Unmanaged Douglas-fir Forests = Us. For. Serv. T. R. Pnw. Wildlife Biology = Wildl. Biol. Wildlife Biology = Wildlife Biol Wildlife Biology = Wildlife Biol. Wildlife Conservation in Metropolitan Environments = Niuw Symp S Wildlife Conservation in Metropolitan Environments = Niuw. Symp. S. Wildlife: Destruction, Conservation and Biodiversity = Wildl Prot Destr Ext Wildlife: Destruction, Conservation and Biodiversity = Wildl. Prot. Destr. Ext. Wildlife disease = Wildl Dis Wildlife Disease = Wildl. Dis. Wildlife Monographs = Wildlife Monogr Wildlife Monographs = Wildlife Monogr. Wildlife Monographs = Wildl. Monogr. Wildlife Protection Destruction and Extinction = Wildl Prot Destr Ext Wildlife Protection Destruction and Extinction = Wildl. Prot. Destr. Ext. Wildlife Rabies Contingency Planning in Australia = Bur Rur R P Wildlife Rabies Contingency Planning in Australia = Bur. Rur. R. P. Wildlife Research = Wildlife Res Wildlife Research = Wildlife Res. Wildlife Society Bulletin = Wildlife Soc B Wildlife Society Bulletin = Wildlife Soc. B. Wildlife Society bulletin = Wildl Soc Bull Wildlife Society Bulletin = Wildl. Soc. Bull. Wildlife Toxicology and Population Modeling = Setac Sp P Wildlife Toxicology and Population Modeling = Setac. Sp. P. Wildlife Use and Management = Bur Ru W Wildlife Use and Management = Bur. Ru. W. Wild Stars in The Old West = Astr Soc P Wild Stars in The Old West = Astr. Soc. P. Wiley Classics Library = Wiley Classics Lib. Wiley Interdisciplinary Reviews: Climate Change = Wiley Interdiscip. Rev. Clim. Change Wiley Interdisciplinary Reviews-climate Change = Wires Clim Change Wiley Interdisciplinary Reviews-climate Change = Wires. Clim. Change Wiley Interdisciplinary Reviews: Computational Statistics = Wiley Interdiscip. Rev. Comput. Stat. Wiley Interdisciplinary Reviews: Nanomedicine and Nanobiotechnology = Wiley Interdiscip. Rev. Nanomed. Nanobiotechnol. Wiley Interdisciplinary Reviews-nanomedicine and Nanobiotechnology = Wires Nanomed Nanobi Wiley Interdisciplinary Reviews-nanomedicine and Nanobiotechnology = Wires. Nanomed. Nanobi. Wiley Interdisciplinary Reviews: Systems Biology and Medicine = Wiley Interdiscip. Rev. Syst. Biol. Med. Wiley Interdisciplinary Reviews-systems Biology and Medicine = Wires Syst Biol Med Wiley Interdisciplinary Reviews-systems Biology and Medicine = Wires. Syst. Biol. Med. Wiley-Interscience Series in Discrete Mathematics and Optimization = Wiley-Intersci. Ser. Discrete Math. Optim. Wiley-Interscience Series in Systems and Optimization = Wiley-Intersci. Ser. Systems Optim. Wiley Polymer Networks Group Review Series, Vol 1 - Chemical and Physical Networks = Wiley Pol Net Grp Re Wiley Polymer Networks Group Review Series, Vol 1 - Chemical and Physical Networks = Wiley Pol. Net. Grp. Re. Wiley Polymer Networks Group Review Series = Wiley Pol Net Grp Re Wiley Polymer Networks Group Review Series = Wiley Pol. Net. Grp. Re. Wiley-praxis Series in Astronomy and Astrophysics = Wil Prax Ser Astron Wiley-praxis Series in Astronomy and Astrophysics = Wil. Prax. Ser. Astron. Wiley Professional Paperback Series = Wiley Prof. Paperb. Ser. Wiley Series in Beam Physics and Accelerator Technology = Wiley Ser. Beam Phys. Accel. Tech. Wiley Series in Clinical Psychology = Wil Cl Psy Wiley Series in Clinical Psychology = Wil. Cl. Psy. Wiley Series in Materials for Electronic and Optoelectronic Applications = Wiley Ser Mater Elec Wiley Series in Materials for Electronic and Optoelectronic Applications = Wiley Ser. Mater. Elec. Wiley Series in Mathematical Methods in Practice = Wiley Ser. Math. Methods Pract. Wiley Series in Nonlinear Science = Wiley Ser. Nonlinear Sci. Wiley Series in Probability and Mathematical Statistics = Wiley Ser. Probab. Math. Statist. Wiley Series in Probability and Mathematical Statistics = Wiley S Pro Wiley Series in Probability and Mathematical Statistics = Wiley S. Pro. Wiley Series in Probability and Statistics - Applied Probability and Statistics = Wiley Ser Prob Stat Wiley Series in Probability and Statistics - Applied Probability and Statistics = Wiley Ser. Prob. Stat. Wiley Series in Probability and Statistics: Probability and Statistics = Wiley Ser. Probab. Statist. Probab. Statist. Wiley Series in Probability and Statistics: Texts and References Section = Wiley Ser. Probab. Stat. Texts Ref. Sect. Wiley Series in Sustainable Design = Wiley S Sus Des Wiley Series in Sustainable Design = Wiley S. Sus. Des. Wiley Series in Systems Engineering = Wiley Ser. Syst. Eng. Wiley Series on Parallel and Distributed Computing = Wiley Ser. Parallel Distrib. Comput. Wiley-Teubner Computing = Wiley-Teubner Comput. Wiley-Teubner Series Advances in Numerical Mathematics = Wiley-Teubner Ser. Adv. Numer. Math. Wilhelm Roux Archiv Fur Entwicklungsmechanik Der Organismen = Roux Arch Dev Biol Wilhelm Roux Archiv Fur Entwicklungsmechanik Der Organismen = Roux Arch. Dev. Biol. Wilhelm Rouxs Archives of Developmental Biology = Roux Arch Dev Biol Wilhelm Rouxs Archives of Developmental Biology = Roux. Arch. Dev. Biol. Wilkie Collins: A Literary Life = Lit Lives Wilkie Collins: A Literary Life = Lit. Lives. Willamette law journal = Willamette Law J Willamette law review = Willamette Law Rev Willdenowia = Willdenowia Wille Zum Willen: Der Naturalismus Und Die Grundung Der Literarischen Moderne 1880-1900 = Quell Forsch Lit Kul Wille Zum Willen: Der Naturalismus Und Die Grundung Der Literarischen Moderne 1880-1900 = Quell. Forsch. Lit. Kul. William and Katherine Devers Series in Dante Studies = W&k Devers Dante St William and Katherine Devers Series in Dante Studies = W&k. Devers Dante St. William and Mary law review = William Mary Law Rev William and Mary Quarterly = William Mary Quart William and Mary Quarterly = William Mary Quart. William Blake: A Literary Life = Lit Lives William Blake: A Literary Life = Lit. Lives. William Carlos Williams Review = William Carlos Will William Carlos Williams Review = William Carlos Will. William E. Connolly: Democracy, Pluralism and Political Theory = Routl Innov Polit Th William E. Connolly: Democracy, Pluralism and Political Theory = Routl. Innov. Polit. Th. William Faulkner: A Literary Life = Lit Lives William Faulkner: A Literary Life = Lit. Lives. William Faulkner: An Economy of Complex Words = 20 21 William Faulkner: An Economy of Complex Words = 20. 21. William & Mary journal of women and the law = William Mary J Women Law William Mitchell law review = William Mitchell Law Rev William Morris and The Society for The Protection of Ancient Buildings = Lit Crit Cult Theory William Morris and The Society for The Protection of Ancient Buildings = Lit. Crit. Cult. Theory. William Thompson Series for Democratic Social Studies and International Social Policy = Wm Thomp Ser Dem Soc William Thompson Series for Democratic Social Studies and International Social Policy = Wm. Thomp. Ser. Dem. Soc. Wilson Bulletin = Wilson Bull Wilson Bulletin = Wilson Bull. Wilson Journal of Ornithology = Wilson J Ornithol Wilson Journal of Ornithology = Wilson J. Ornithol. Wilson library bulletin = Wilson Libr Bull Wilson Library Bulletin = Wilson Libr Bull Wilson Library Bulletin = Wilson Libr. Bull. Wimax Network Planning and Optimization = Wirel Netw Mob Commu Wimax Network Planning and Optimization = Wirel. Netw. Mob. Commu. Wimax Rf Systems Engineering = Artech Hse Mob Comm Wimax Rf Systems Engineering = Artech. Hse. Mob. Comm. Winckelmannsprogramm der Archäologischen Gesellschaft zu Berlin = BWPr Winckelmann Und Die Mythologie Der Klassik = Reihe Villa Vigoni Winckelmann Und Die Mythologie Der Klassik = Reihe. Villa. Vigoni. Windahlia = Windahlia Wind and Structures = Wind Struct Wind and Structures = Wind Struct. Wind Blown Sediments in The Quaternary Record = Quat Proc Wind Blown Sediments in The Quaternary Record = Quat. Proc. Wind Climate in Cities = Nato Adv Sci Inst Se Wind Climate in Cities = Nato. Adv. Sci. Inst. Se. Wind Effects On Buildings and Design of Wind-sensitive Structures = Cism Courses Lect Wind Effects On Buildings and Design of Wind-sensitive Structures = Cism. Courses. Lect. Wind Energy: Renewable Energy and The Environment = Energ Env Ser-crc Wind Energy: Renewable Energy and The Environment = Energ. Env. Ser-crc. Wind Energy Systems for Electric Power Generation = Green Energy Technol Wind Energy Systems for Electric Power Generation = Green. Energy Technol. Wind Energy = Wind Energy Window and Dome Technologies and Materials Iii = P Soc Photo-opt Ins Window and Dome Technologies and Materials Iii = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Ii = P Soc Photo-opt Ins Window and Dome Technologies and Materials Ii = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Iv = P Soc Photo-opt Ins Window and Dome Technologies and Materials Iv = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Ix = Proc Spie Window and Dome Technologies and Materials Ix = Proc. Spie. Window and Dome Technologies and Materials Ix = P Soc Photo-opt Ins Window and Dome Technologies and Materials Ix = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Vii = Proc Spie Window and Dome Technologies and Materials Vii = Proc. Spie. Window and Dome Technologies and Materials Vii = P Soc Photo-opt Ins Window and Dome Technologies and Materials Vii = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Vi = P Soc Photo-opt Ins Window and Dome Technologies and Materials Vi = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials V = P Soc Photo-opt Ins Window and Dome Technologies and Materials V = P. Soc. Photo-opt. Ins. Window and Dome Technologies and Materials Xii = Proc Spie Window and Dome Technologies and Materials Xii = Proc. Spie. Window and Dome Technologies and Materials X = P Soc Photo-opt Ins Window and Dome Technologies and Materials X = P. Soc. Photo-opt. Ins. Window and Dome Technologies Viii = P Soc Photo-opt Ins Window and Dome Technologies Viii = P. Soc. Photo-opt. Ins. Window of Opportunity: Pre-pregnancy to 24 Months of Age = Nestle Nutr Works Se Window of Opportunity: Pre-pregnancy to 24 Months of Age = Nestle. Nutr. Works. Se. Window On The Future of Geodesy = Iag Symp Window On The Future of Geodesy = Iag. Symp. Window On The Laser Medicine World = Proc Spie Window On The Laser Medicine World = Proc. Spie. Window On The Laser Medicine World = P Soc Photo-opt Ins Window On The Laser Medicine World = P. Soc. Photo-opt. Ins. Windows in time = Windows Time Windows On Galaxies = Astrophys Space Sc L Windows On Galaxies = Astrophys. Space. Sc. L. Wind Power and Power Politics: International Perspectives = Routledge Stud Sci T Wind Power and Power Politics: International Perspectives = Routledge. Stud. Sci. T. Wind Power in Europe: Politics, Business and Society = Energ Clim Environ Wind Power in Europe: Politics, Business and Society = Energ. Clim. Environ. Wind Power Systems: Applications of Computational Intelligence = Green Energy Technol Wind Power Systems: Applications of Computational Intelligence = Green. Energy. Technol. Winds of Change = State Arts Ser Winds of Change = State. Arts. Ser. Wind Turbines: Types, Economics and Development = Energ Sci Eng Tech Wind Turbines: Types, Economics and Development = Energ. Sci. Eng. Tech. Wine = Acs Sym Ser Wine = Acs. Sym. Ser. Winemaking Problems Solved = Woodhead Publ Food S Winemaking Problems Solved = Woodhead. Publ. Food. S. Winnipeg Clinic quarterly = Winnipeg Clin Q Winre '93 = Grs Bericht Winre '93 = Grs. Bericht. Winrock Development Education Series = Winr Dev Ed Winrock Development Education Series = Winr. Dev. Ed. Winterberichte des Eidg. Institutes für Schnee- und Lawinenforschung = Winterber. Eidgenöss. Inst. Schnee- Lawinenforsch. Winter Maintenance Innovations; Vehicle Rental Rates = Transport Res Rec Winter Maintenance Innovations; Vehicle Rental Rates = Transport. Res. Rec. Winter Simulation Conference Proceedings = Wint Simul C Proc Winter Simulation Conference Proceedings = Wint. Simul. C. Proc. Winterthur Portfolio-a Journal of American Material Culture = Winterthur Portfolio Winterthur Portfolio-a Journal of American Material Culture = Winterthur Portfolio. Winterthur portfolio = Winterthur Portf Winter War : Finland and Russia = Hist Arkist Winter War : Finland and Russia = Hist. Arkist. Win - Women in Numbers: Research Directions in Number Theory = Fields I Commun Win - Women in Numbers: Research Directions in Number Theory = Fields. I. Commun. Wired Homestead: An Mit Press Sourcebook On The Internet and The Family = Mit Press Sourceb Wired Homestead: An Mit Press Sourcebook On The Internet and The Family = Mit Press Sourceb. Wired-wireless Internet Communications, Proceedings = Lect Notes Comput Sc Wired-wireless Internet Communications, Proceedings = Lect. Notes. Comput. Sc. Wired/wireless Internet Communications, Proceedings = Lect Notes Comput Sc Wired/wireless Internet Communications, Proceedings = Lect. Notes. Comput. Sc. Wired/ Wireless Internet Communications, Proceedings = Lect Notes Comput Sc Wired/ Wireless Internet Communications, Proceedings = Lect. Notes. Comput. Sc. Wired-wireless Multimedia Networks and Services Management = Lect Notes Comput Sc Wired-wireless Multimedia Networks and Services Management = Lect. Notes. Comput. Sc. Wire Journal International = Wire J Int Wire Journal International = Wire J. Int. Wireless Ad Hoc and Sensor Networks = Signals Commun Techn Wireless Ad Hoc and Sensor Networks = Signals. Commun. Techn. Wireless Algorithms, Systems, and Applications = Lect Notes Comput Sc Wireless Algorithms, Systems, and Applications = Lect. Notes. Comput. Sc. Wireless Algorithms, Systems, and Applications, Proceedings = Lect Notes Comput Sc Wireless Algorithms, Systems, and Applications, Proceedings = Lect. Notes. Comput. Sc. Wireless and Mobile Communications = Kluw Commun Wireless and Mobile Communications = Kluw. Commun. Wireless and Mobile Networking = Int Fed Info Proc Wireless and Mobile Networking = Int. Fed. Info. Proc. Wireless and Mobile Networking, Proceedings = Ifip Adv Inf Comm Te Wireless and Mobile Networking, Proceedings = Ifip. Adv. Inf. Comm. Te. Wireless Communications 2007 Cnit Thyrrenian Symposium = Sig Com Tec Wireless Communications 2007 Cnit Thyrrenian Symposium = Sig. Com. Tec. Wireless Communications 2007 Cnit Thyrrenian Symposium = Signals Commun Techn Wireless Communications 2007 Cnit Thyrrenian Symposium = Signals. Commun. Techn. Wireless Communications = Ima V Math Wireless Communications = Ima. V. Math. Wireless Communications = Ima Vol Math Appl Wireless Communications = Ima. Vol. Math. Appl. Wireless Communications = Kluw Commun Wireless Communications = Kluw. Commun. Wireless Communications & Mobile Computing = Wirel Commun Mob Com Wireless Communications & Mobile Computing = Wirel. Commun. Mob. Com. Wireless Communications = P Soc Photo-opt Ins Wireless Communications = P. Soc. Photo-opt. Ins. Wireless Communications = Wireless Commun. Wireless Communication Technologies: New Multimedia Systems = Kluwer Int Ser Eng C Wireless Communication Technologies: New Multimedia Systems = Kluwer. Int. Ser. Eng. C. Wireless Data Transmission = P Soc Photo-opt Ins Wireless Data Transmission = P. Soc. Photo-opt. Ins. Wireless Information Networks = Kluw Commun Wireless Information Networks = Kluw. Commun. Wireless Ip and Building The Mobile Internet = Artech Hse Univers P Wireless Ip and Building The Mobile Internet = Artech. Hse. Univers. P. Wireless Ip and Building The Mobile Internet = Art H Uni Per Commun Wireless Ip and Building The Mobile Internet = Art. H. Uni. Per. Commun. Wireless Network Design: Optimization Models and Solution Procedures = Int Ser Oper Res Man Wireless Network Design: Optimization Models and Solution Procedures = Int. Ser. Oper. Res. Man. Wireless Networks and Mobile Communications Series = Wirel Netw Mob Commu Wireless Networks and Mobile Communications Series = Wirel. Netw. Mob. Commu. Wireless Network Security = Signals Commun Techn Wireless Network Security = Signals. Commun. Techn. Wireless Networks, Information Processing and Systems = Comm Com Inf Sc Wireless Networks, Information Processing and Systems = Comm. Com. Inf. Sc. Wireless Networks = Wirel Netw Wireless Networks = Wirel. Netw. Wireless On-demand Network Systems, Proceedings = Lect Notes Comput Sc Wireless On-demand Network Systems, Proceedings = Lect. Notes. Comput. Sc. Wireless Personal Communications = Kluw Commun Wireless Personal Communications = Kluw. Commun. Wireless Personal Communications = Kluwer Int Ser Eng C Wireless Personal Communications = Kluwer. Int. Ser. Eng. C. Wireless Personal Communications = Springer Int Ser Eng Wireless Personal Communications = Springer. Int. Ser. Eng. Wireless Personal Communications: Trends and Challenges = Kluw Commun Wireless Personal Communications: Trends and Challenges = Kluw. Commun. Wireless Personal Communications = Wireless Pers Commun Wireless Personal Communications = Wireless Pers. Commun. Wireless Positioning Technologies and Applications = Artech Hse Gnss Tech Wireless Positioning Technologies and Applications = Artech. Hse. Gnss. Tech. Wireless Quality of Service: Techniques, Standards, and Applications = Wirel Netw Mob Commu Wireless Quality of Service: Techniques, Standards, and Applications = Wirel. Netw. Mob. Commu. Wireless Sensing and Processing Iii = Proc Spie Wireless Sensing and Processing Iii = Proc. Spie. Wireless Sensing and Processing Iii = P Soc Photo-opt Ins Wireless Sensing and Processing Iii = P. Soc. Photo-opt. Ins. Wireless Sensing and Processing Ii = P Soc Photo-opt Ins Wireless Sensing and Processing Ii = P. Soc. Photo-opt. Ins. Wireless Sensing and Processing = Proc Spie Wireless Sensing and Processing = Proc. Spie. Wireless Sensing and Processing = P Soc Photo-opt Ins Wireless Sensing and Processing = P. Soc. Photo-opt. Ins. Wireless Sensing, Localization, and Processing Vi = Proc Spie Wireless Sensing, Localization, and Processing Vi = Proc. Spie. Wireless Sensing, Localization, and Processing V = P Soc Photo-opt Ins Wireless Sensing, Localization, and Processing V = P. Soc. Photo-opt. Ins. Wireless Sensor and Actor Networks Ii = Int Fed Info Proc Wireless Sensor and Actor Networks Ii = Int. Fed. Info. Proc. Wireless Sensor and Actor Networks = Int Fed Info Proc Wireless Sensor and Actor Networks = Int. Fed. Info. Proc. Wireless Sensor Networks and Applications = Signals Commun Techn Wireless Sensor Networks and Applications = Signals. Commun. Techn. Wireless Sensor Network Security = Cryptol Inf Sec Ser Wireless Sensor Network Security = Cryptol. Inf. Sec. Ser. Wireless Sensor Networks = Lect Notes Comput Sc Wireless Sensor Networks = Lect. Notes. Comput. Sc. Wireless Sensor Networks, Proceedings = Lect Notes Comput Sc Wireless Sensor Networks, Proceedings = Lect. Notes. Comput. Sc. Wireless Sensor Network Technologies for The Information Explosion Era = Stud Comput Intell Wireless Sensor Network Technologies for The Information Explosion Era = Stud. Comput. Intell. Wireless Systems and Mobility in Next Generation Internet = Lect Notes Comput Sc Wireless Systems and Mobility in Next Generation Internet = Lect. Notes. Comput. Sc. Wireless Systems and Network Architectures in Next Generation Internet = Lect Notes Comput Sc Wireless Systems and Network Architectures in Next Generation Internet = Lect. Notes. Comput. Sc. Wireless Technologies and Services for Cellular and Personal Communication Services = P Soc Photo-opt Ins Wireless Technologies and Services for Cellular and Personal Communication Services = P. Soc. Photo-opt. Ins. Wireless Technologies and Systems: Millimeter-wave and Optical = P Soc Photo-opt Ins Wireless Technologies and Systems: Millimeter-wave and Optical = P. Soc. Photo-opt. Ins. Wireless Technology: Applications, Management, and Security = Lect Notes Electr En Wireless Technology: Applications, Management, and Security = Lect. Notes. Electr. En. Wireless Telecommunications Symposium = Wirel Telecomm Symp Wireless Telecommunications Symposium = Wirel. Telecomm. Symp. Wireless World = Electron Wireless W Wireless World = Electron. Wireless W. Wire = Wire Wirms 2009: 5th International Workshop On Infrared Microscopy and Spectroscopy With Accelerator Based Sources = Aip Conf Proc Wirms 2009: 5th International Workshop On Infrared Microscopy and Spectroscopy With Accelerator Based Sources = Aip. Conf. Proc. Wirtschaftliche Hinterland Der Fruhmittelalterlichen Zentren = Int Tagung Mikulcice Wirtschaftliche Hinterland Der Fruhmittelalterlichen Zentren = Int. Tagung. Mikulcice. Wirtschaftsdienst (Hamburg, Germany : 1949) = Wirtschaftsdienst Wirtschaftsinformatik = Wirtschaftsinf Wirtschaftsinformatik = Wirtschaftsinf. Wirtschaftspolitische Blätter=Wirtschaftspolitische Blätter Wirtschaftswissenschaftliches Studium = Wirtschaftswissenschaftliches Stud Wirtschaftswissenschaft = Wirtschaftswissenschaft Wirtschaft und Recht=Wirtsch. Recht Wirtschaft und Statistik = Wirtsch Stat Wisconsin academy review = Wis Acad Rev Wisconsin College of Agriculture and Life Sciences Research Bulletin = Wisc Coll Als Res B Wisconsin College of Agriculture and Life Sciences Research Bulletin = Wisc. Coll. Als. Res. B. Wisconsin Dental Association journal / WDA = Wis Dent Assoc J Wisconsin Dental Association Journal = Wis. Dent. Assoc. J. Wisconsin Government and Business and The History of Heterodox Economic Thought = Res Hist Ec Wisconsin Government and Business and The History of Heterodox Economic Thought = Res. Hist. Ec. Wisconsin Law Review = Wisc Law Rev Wisconsin Law Review = Wisc. Law Rev. Wisconsin law review = Wis L Rev Wisconsin magazine of history = Wis Mag Hist Wisconsin Medical Journal = Wisc Med J Wisconsin Medical Journal = Wisc. Med. J. Wisconsin medical journal = Wis Med J Wisconsin Medical Journal = Wis. Med. J. Wisconsin session laws. Wisconsin = Wis Sess Laws Wis Wisconsin women's law journal = Wis Womens Law J Wisdom and Apocalypticism in The Dead Sea Scrolls and in The Biblical Tradition = Bib Eph The Wisdom and Apocalypticism in The Dead Sea Scrolls and in The Biblical Tradition = Bib. Eph. The Wisdom and Her Lovers in Medieval and Early Modern Hispanic Literature = New Middle Ages Wisdom and Her Lovers in Medieval and Early Modern Hispanic Literature = New. Middle. Ages. Wisdom, Knowledge, and Management = C W Churchm Leg Rel Wisdom, Knowledge, and Management = C. W. Churchm. Leg. Rel. Wise Report (world Inventory of Soil Emission) = Wise Rep Wise Report (world Inventory of Soil Emission) = Wise Rep. Wisp 2009: 6th Ieee International Symposium On Intelligent Signal Processing, Proceedings = I S Intell Sig Pr Wisp 2009: 6th Ieee International Symposium On Intelligent Signal Processing, Proceedings = I. S. Intell. Sig. Pr. Wissensasthetik: Wissen Uber Die Antike in Asthetischer Vermittlung = Transform Antike Wissensasthetik: Wissen Uber Die Antike in Asthetischer Vermittlung = Transform. Antike Wissenschaft im 20 = Wiss. 20 Jhd. Transdiszip. Reflex. Wissenschaftliche Alpenvereinshefte = Wiss. Alp.ver.heft Wissenschaftliche Beitrage der Martin-Luther-Universitat Halle-Wittenberg = Wiss Beitr Martin Luther Univ Halle Wittenberg Wissenschaftliche Beitrage zur Geschichte der Seelenheilkunde = Wiss Beitr Gesch Seelenheilkd Wissenschaftliche Mitteilungen des Bosnischen Landesmuseums, A. Archäologie = WissMBosn Wissenschaftlicher Dienst Sudosteuropa = Wiss Dienst Sudosteur Wissenschaftliche Schriftenreihe Der Ernahrungsgesellschaften Deutschland, Osterreich, Schweiz = Wiss Sch Er Wissenschaftliche Schriftenreihe Der Ernahrungsgesellschaften Deutschland, Osterreich, Schweiz = Wiss. Sch. Er. Wissenschaftliche Schriftenreihe Mathematik = Wiss. Schriftenr. Math. Wissenschaftliche Untersuchungen Zum Neuen Testament = W U Neu Test Wissenschaftliche Untersuchungen Zum Neuen Testament = W. U. Neu. Test. Wissenschaftliche Veröffentlichungen der Deutschen Orient-Gesellschaft = WVDOG Wissenschaftliche Veroffentlichungen. Deutsche Gesellschaft fur Ernahrung = Wiss Veroff Dtsch Ges Ernahr Wissenschaftliche Zeitschrift der Ernst-Moritz-Arndt-Universitat, Greifswald. Gesellschaftswissenschaftliche Reihe = Wiss Z Ernst Moritz Arndt Univ [Ges Sprachwiss] Wissenschaftliche Zeitschrift der Ernst-Moritz-Arndt-Univ., Greifswald, Gesellsch.- & sprachwiss. Reihe. = WZGREIFS Wissenschaftliche Zeitschrift der Friedrich-Schiller-Universitat Jena. Gesellschafts- und sprachwissenschaftliche Reihe = Wiss Z Friedrich Schiller Univ Jena Ges Sprachwiss Wissenschaftliche Zeitschrift der Friedrich-Schiller-Universität Jena = WissZJena Wissenschaftliche Zeitschrift der Friedrich-Schiller-Univ. Jena, Gesellsch.- & sprachwiss. Reihe. = WZJENA Wissenschaftliche Zeitschrift der Humboldt-Univ. Berlin, Gesellsch.- & sprachwiss. Reihe = WZBERLIN Wissenschaftliche Zeitschrift der Humboldt-Universität zu Berlin. Gesellschafts- und sprachwissenschaftliche Reihe = WissZBerl Wissenschaftliche Zeitschrift der Humboldt-Universitat zu Berlin. Gesellschafts- und sprachwissenschaftliche Reihe = Wiss Z Humboldt Univ Berl (Ges Sprachwiss) Wissenschaftliche Zeitschrift der Humboldt-Universitat zu Berlin. Mathematisch-Naturwissenschaftliche Reihe = Wiss Z Humboldt Univ Berl [Math Naturwiss] Wissenschaftliche Zeitschrift der Humboldt-Universitat zu Berlin. Mathematisch-Naturwissenschaftliche Reihe = Wiss. Z. Humboldt Univ. Berl. [Math. Naturwiss.] Wissenschaftliche Zeitschrift der Karl-Marx-Universitat Leipzig. Mathematisch-naturwissenschaftliche Reihe = Wiss Z Karl Marx Univ Math Naturwiss Wissenschaftliche Zeitschrift der Karl-Marx-Univ. Leipzig, Gesellsch.- & sprachwlss. Reihe. = WZLEIPZIG Wissenschaftliche Zeitschrift der Martin-Luther-Univ. Halle-Wittenberg = WZHALLE Wissenschaftliche Zeitschrift der Technischen Universität Dresden, Separatreihe 5 = Wiss. Z. Tech. Univ. Dresd., Sep.r. 5 Wissenschaftliche Zeitschrift der Technischen Universität Dresden = Wiss. Z. Tech. Univ. Dresden Wissenschaftliche Zeitschrift der Universität Rostock = WissZRostock Wissenschaftliche Zeitschrift der Wilhelm-Pieck-Universitat Rostock. Gesellschafts- und sprachwissenschaftliche Reihe = Wiss Z Wilhelm Pieck Univ Rostock [Ges Sprachwiss] Wissenschaftliche Zeitschrift der Wilhelm-Pieck-Univ. Rostock Gesellsch.- & sprachwiss. Reihe. = WZROSTOCK Wissenschaftliche Zeitschrift. Gesellschafts- und sprachwissenschaftliche Reihe (Karl-Marx-Universitat Leipzig) = Wiss Z Karl Marx Univ Leipzig [Ges Sprachwiss] Wissenschaftliche Zeitschrift. Martin-Luther-Universität Halle-Wittenberg = WissZHalle Wissenschaftliche Zeitschrift. Mathematisch-naturwissenschaftliche Reihe. Ernst-Moritz-Arndt-Universitat Greifswald = Wiss Z Ernst Moritz Arndt Univ [Math] Wissenschaftsethik Und Technikfolgenbeurteilung = Wissensch Technikfol Wissenschaftsethik Und Technikfolgenbeurteilung = Wissensch. Technikfol. Wissenschaftsethik Und Technikfolgenbeurteilung = Wiss Technik Folgenb Wissenschaftsethik Und Technikfolgenbeurteilung = Wiss. Technik. Folgenb. Wissenschaftsgeschichte = Wissenschaftsgeschichte Wissenschaft und Glaube = Wiss Glaube Wissenshaftliche Zeitschrift der Martin Luther Universitat Halle-Wittenberg=Wiss Z. Martin-Luther Univ. Halle-Wittenberg Wistar Institute Symposium Monograph = Wistar Inst. Symp. Monogr. Wistar Symposium Series = Wist Symp S Wistar Symposium Series = Wist. Symp. S. Witchcraft and Belief in Early Modern Scotland = Palgr Hist Stud Witc Witchcraft and Belief in Early Modern Scotland = Palgr. Hist. Stud. Witc. Witchcraft and Magic in The Nordic Middle Ages = Middle Ages Ser Witchcraft and Magic in The Nordic Middle Ages = Middle Ages Ser. Witchcraft and Masculinities in Early Modern Europe = Palgr Hist Stud Wit Witchcraft and Masculinities in Early Modern Europe = Palgr. Hist. Stud. Wit. Witchcraft and Masculinities in Early Modern Europe = Palgr Hist Stud Witc Witchcraft and Masculinities in Early Modern Europe = Palgr. Hist. Stud. Witc. Witches, Isis and Narrative: Approaches to Magic in Apuleius' Metamorphoses = Trends Class Suppl V Witches, Isis and Narrative: Approaches to Magic in Apuleius' Metamorphoses = Trends. Class. Suppl. V. Witching Culture: Folklore and Neo-paganism in America = Contemp Ethnogr Witching Culture: Folklore and Neo-paganism in America = Contemp. Ethnogr. With Eyes Toward Zion - Iii = W Eyes Zion With Eyes Toward Zion - Iii = W. Eyes Zion With Eyes Toward Zion = W Eyes Zion With Eyes Toward Zion = W. Eyes Zion Without Consent: Confronting Adult Sexual Violence = Aic Conf P Without Consent: Confronting Adult Sexual Violence = Aic. Conf. P. Without Criteria: Kant, Whitehead, Deleuze, and Aesthetics = Technol Lived Abstr Without Criteria: Kant, Whitehead, Deleuze, and Aesthetics = Technol. Lived. Abstr. Without Spot Or Wrinkle = Occ P Inst Men Stud Without Spot Or Wrinkle = Occ. P. Inst. Men. Stud. ## With some additions to the Official List. With Us Or Against Us: Studies in Global Anti-americanism = Ceri Ser Int Rel Pol With Us Or Against Us: Studies in Global Anti-americanism = Ceri. Ser. Int. Rel. Pol. Witnesses: War Crimes and The Promise of Justice in The Hague = Pa Stud Hum Rights Witnesses: War Crimes and The Promise of Justice in The Hague = Pa. Stud. Hum. Rights. Wittenstein - Towards A Re-evaluation, Iii = Schr Witt G Wittenstein - Towards A Re-evaluation, Iii = Schr. Witt. G. Wittenstein - Towards A Re-evaluation, Ii = Schr Witt G Wittenstein - Towards A Re-evaluation, Ii = Schr. Witt. G. Wittenstein - Towards A Re-evaluation, I = Schr Witt G Wittenstein - Towards A Re-evaluation, I = Schr. Witt. G. Wittgenstein Centenary Essays = Roy Inst Ph Wittgenstein Centenary Essays = Roy. Inst. Ph. Wittgenstein = Routl Philos Wittgenstein = Routl. Philos. Wittgensten, Language and Information: Back to The Rough Ground = Inform Sci Knowl Man Wittgensten, Language and Information: Back to The Rough Ground = Inform. Sci. Knowl. Man. Witthayasan Kasetsat = The Kasetsart journal|Witthayasan Kasetsat Wit Transactions On Biomedicine and Health = Wit Tr Biomed Health Wit Transactions On Biomedicine and Health = Wit Tr. Biomed. Health Wit Transactions On Ecology and The Environment = Wit Trans Ecol Envir Wit Transactions On Ecology and The Environment = Wit Trans. Ecol. Envir. WIT Transactions on Ecology and the Environment = WIT Trans. Ecol. Environ. Wit Transactions On Engineering Sciences = Wit Trans Eng Sci Wit Transactions On Engineering Sciences = Wit Trans. Eng. Sci. WIT Transactions on Engineering Sciences = WIT Trans. Eng. Sci. Wit Transactions On Information and Communication Technologies = Wit Trans Info Comm Wit Transactions On Information and Communication Technologies = Wit Trans. Info. Comm. Wit Transactions On Modelling and Simulation = Wit Trans Model Sim Wit Transactions On Modelling and Simulation = Wit Trans. Model. Sim. Wit Transactions On The Built Environment = Wit Trans Built Env Wit Transactions On The Built Environment = Wit Trans. Built Env. Wlwe-world Literature Written in English = Wlwe-world Lit Writ Wlwe-world Literature Written in English = Wlwe-world Lit. Writ. WMJ : official publication of the State Medical Society of Wisconsin = WMJ WMJ = WMJ Wmo/geo Expert Meeting On An International Sand and Dust Storm Warning System = Iop C Ser Earth Env Wmo/geo Expert Meeting On An International Sand and Dust Storm Warning System = Iop. C. Ser. Earth. Env. Woburn Education Series = Woburn Educ Ser Woburn Education Series = Woburn Educ. Ser. Wochenblatt fur Papierfabrikation = Wochenbl. Papierfabr. Wochenblatt Fur Papierfabrikation = Wochenbl Papierfabr Wochenblatt Fur Papierfabrikation = Wochenbl. Papierfabr. Wochenblatt für Papierfabrikation = Wochenbl. Papierfabr. Wochenschrift fur Brauerei = Wochenschr. Brau. Wocmap-2: Second World Congress On Medicinal and Aromatic Plants for Human Welfare = Acta Hortic Wocmap-2: Second World Congress On Medicinal and Aromatic Plants for Human Welfare = Acta. Hortic. Wocmap-2: Second World Congress On Medicinal and Aromatic Plants for Human Welfare, Proceedings = Acta Hortic Wocmap-2: Second World Congress On Medicinal and Aromatic Plants for Human Welfare, Proceedings = Acta. Hortic. Wocmap Iii: Bioprospecting and Ethnopharmacology = Acta Hortic Wocmap Iii: Bioprospecting and Ethnopharmacology = Acta. Hortic. Wocmap Iii: Conservation, Cultivation and Sustainable Use of Maps = Acta Hortic Wocmap Iii: Conservation, Cultivation and Sustainable Use of Maps = Acta. Hortic. Wocmap Iii: Perspectives in Natural Product Chemistry = Acta Hortic Wocmap Iii: Perspectives in Natural Product Chemistry = Acta. Hortic. Wocmap Iii: Quality, Efficacy, Safety, Processing and Trade in Maps = Acta Hortic Wocmap Iii: Quality, Efficacy, Safety, Processing and Trade in Maps = Acta. Hortic. Wocmap Iii: Targeted Screening of Maps, Economics and Law = Acta Hortic Wocmap Iii: Targeted Screening of Maps, Economics and Law = Acta. Hortic. Wocmap Iii: Traditional Medicine and Nutraceuticals = Acta Hortic Wocmap Iii: Traditional Medicine and Nutraceuticals = Acta. Hortic. Wolfenbutteler Renaissance Mitteilungen = Wolfenbutteler Renaiss Mitt Wolfenbutteler Studien Zur Aufklarung = Wolfenb Stud Aufklar Wolfenbutteler Studien Zur Aufklarung = Wolfenb. Stud. Aufklar. Wolfgang Stammler Gastprofessur Fur Germanische Philologie = Wolf Stamml Gast Ge Wolfgang Stammler Gastprofessur Fur Germanische Philologie = Wolf. Stamml. Gast. Ge. Wolf-rayet Phenomena in Massive Stars and Starburst Galaxies = Iau Symp Wolf-rayet Phenomena in Massive Stars and Starburst Galaxies = Iau. Symp. Wolf-rayet Stars and Interrelations With Other Massive Stars in Galaxies = Iau Symp Wolf-rayet Stars and Interrelations With Other Massive Stars in Galaxies = Iau. Symp. Wolf-rayet Stars: Binaries, Colliding Winds, Evolution = Iau Symp Wolf-rayet Stars: Binaries, Colliding Winds, Evolution = Iau. Symp. Wolves From The Sea = Carib Ser Wolves From The Sea = Carib. Ser. Womanism, Literature, and The Transformation of The Black Community, 19651980 = Stud Afr Am Hist Cul Womanism, Literature, and The Transformation of The Black Community, 19651980 = Stud. Afr. Am. Hist. Cul. Womanist Ethics and The Cultural Production of Evil = Black Relig Woman Th Womanist Ethics and The Cultural Production of Evil = Black. Relig. Woman. Th. Woman Physician = Woman Physician Womans Art Journal = Woman Art J Womans Art Journal = Woman. Art J. Woman, The Writer & Caribbean Society = Caas Spec Pub Woman, The Writer & Caribbean Society = Caas. Spec. Pub. Wombats, 2nd Edition = Austral Nat Hist Ser Wombats, 2nd Edition = Austral. Nat. Hist. Ser. Women 2000 = Women 2000 Women alive (Los Angeles, Calif.) = Women Alive Women And Aids = Women AIDS Women and birth : journal of the Australian College of Midwives = Women Birth Women and British Party Politics: Descriptive, Substantive and Symbolic Representation = Routl Adv Eur Polit Women and British Party Politics: Descriptive, Substantive and Symbolic Representation = Routl. Adv. Eur. Polit. Women and environments = Women Environ Women and Exercise: The Body, Health and Consumerism = Routl Res Sport Cult Women and Exercise: The Body, Health and Consumerism = Routl. Res. Sport. Cult. Women and Experience in Later Medieval Writing: Reading The Book of Life = New Middle Ages Women and Experience in Later Medieval Writing: Reading The Book of Life = New. Middle. Ages. Women and Gender in Jewish Philosophy = Jew Lit Cult Women and Gender in Jewish Philosophy = Jew. Lit. Cult. Women and Health=Women Health;; Women and Health = Women Health Women and Industrial Relations = Ann Cira P Women and Industrial Relations = Ann. Cira. P. Women and Labour Organizing in Asia: Diversity, Autonomy and Activism = Asian Stud Assoc Aus Women and Labour Organizing in Asia: Diversity, Autonomy and Activism = Asian. Stud. Assoc. Aus. Women and Mental Health = Ann Ny Acad Sci Women and Mental Health = Ann. Ny. Acad. Sci. Women and Multiple Sclerosis = Neurol Lab Clin Res Women and Multiple Sclerosis = Neurol. Lab. Clin. Res. Women and Political Violence: Female Combatants in Ethno-national Conflict = Contemp Secur Stud Women and Political Violence: Female Combatants in Ethno-national Conflict = Contemp. Secur. Stud. Women and Power in The Nonprofit Sector = Jos-bas Non Women and Power in The Nonprofit Sector = Jos-bas. Non. Women and Race in Contemporary U.s. Writing: From Faulkner to Morrison = Am Lit Read Twenty-f Women and Race in Contemporary U.s. Writing: From Faulkner to Morrison = Am. Lit. Read. Twenty-f. Women and Sports in Europe = Schrift Deut Verein Women and Sports in Europe = Schrift. Deut. Verein. Women and Their Money 1700-1950: Essays On Women and Finance = Rout Int Stud Bus Hi Women and Their Money 1700-1950: Essays On Women and Finance = Rout. Int. Stud. Bus. Hi. Women and The Law = Aic Conf P Women and The Law = Aic. Conf. P. Women and The Mafia = Stud Organize Crime Women and The Mafia = Stud. Organize. Crime. Women and Theology = Ann Pub Coll Theol S Women and Theology = Ann. Pub. Coll. Theol. S. Women and The Unstable State in Nineteenth-century America = Wpw Memor L Women and The Unstable State in Nineteenth-century America = Wpw. Memor. L. Women and The Wende = Germ Monit Women and The Wende = Germ. Monit. Women and Work in Indonesia = Women Asia Ser Women and Work in Indonesia = Women Asia. Ser. Women, Art, and Technology = Leonardo Ser Women, Art, and Technology = Leonardo. Ser. Women As Teachers and Disciples in Traditional and New Religions = Stud Wom Relig Women As Teachers and Disciples in Traditional and New Religions = Stud. Wom. Relig. Women As Unseen Characters: Male Ritual in Papua New Guinea = Soc Anthropol Ocean Women As Unseen Characters: Male Ritual in Papua New Guinea = Soc. Anthropol. Ocean. Women At Work Ii = U Cal I Ind Women At Work Ii = U. Cal. I. Ind. Women At Work, Proceedings = People Work Res Rep Women At Work, Proceedings = People. Work. Res. Rep. Women At Work = U Cal I Ind Women At Work = U. Cal. I. Ind. Women, Clubs and Associations in Britain = Woburn Educ Ser Women, Clubs and Associations in Britain = Woburn. Educ. Ser. Women, Creators of Culture = Amer St Gr Women, Creators of Culture = Amer. St. Gr. Women & criminal justice = Women Crim Justice Women, Democracy, and Globalization in North America: A Comparative Study = Perspect Comp Polit Women, Democracy, and Globalization in North America: A Comparative Study = Perspect. Comp. Polit. Women, Education, and Agency, 1600-2000 = Routl Res Gender Hi Women, Education, and Agency, 1600-2000 = Routl. Res. Gender. Hi. Women Entrepreneurs Across Racial Lines: Issues of Human Capital, Financial Capital and Network Structures = New Horiz Entrep Women Entrepreneurs Across Racial Lines: Issues of Human Capital, Financial Capital and Network Structures = New. Horiz. Entrep. Women envision = Women Envis Women & health = Women Health Women & Health = Women Health Women, Identity and India's Call Centre Industry = Routl Res Gend Asia Women, Identity and India's Call Centre Industry = Routl. Res. Gend. Asia. Women in action (Rome, Italy) = Women Action Women in Asia Series = Women Asia Ser Women in Asia Series = Women Asia Ser. Women in Irish Drama: A Century of Authorship and Representation = Perform Interv Women in Irish Drama: A Century of Authorship and Representation = Perform. Interv. Women in Italy, 1945-1960: An Interdisciplinary Study = Ital Ital Am Stud Women in Italy, 1945-1960: An Interdisciplinary Study = Ital. Ital. Am. Stud. Women in Physics = Aip Conf Proc Women in Physics = Aip. Conf. Proc. Women in Science and Engineering: Choices for Success = Ann Ny Acad Sci Women in Science and Engineering: Choices for Success = Ann. Ny. Acad. Sci. Women in The British Army: War and The Gentle Sex, 1907-1948 = Womens Gend Hist Women in The British Army: War and The Gentle Sex, 1907-1948 = Womens. Gend. Hist. Women in The Criminal Justice System: International Examples & National Responses = Ps Eur Inst Women in The Criminal Justice System: International Examples & National Responses = Ps. Eur. Inst. Women in The Military and in Armed Conflict = Schr Sozialw I Bunde Women in The Military and in Armed Conflict = Schr. Sozialw. I. Bunde. Women, Islam and Everyday Life: Renegotiating Polygamy in Indonesia = Women Asia Ser Women, Islam and Everyday Life: Renegotiating Polygamy in Indonesia = Women. Asia. Ser. Women, Islam and Modernity: Single Women, Sexuality and Reproductive Health in Contemporary Indonesia = Women Asia Ser Women, Islam and Modernity: Single Women, Sexuality and Reproductive Health in Contemporary Indonesia = Women. Asia. Ser. Women lawyers' journal = Women Lawyers J Women & Literature = Women Literature Women, Murder, and Equity in Early Modern England = Rout Stud Renais Lit Women, Murder, and Equity in Early Modern England = Rout. Stud. Renais. Lit. Women of Fes: Ambiguities of Urban Life in Morocco = Contemp Ethnogr Women of Fes: Ambiguities of Urban Life in Morocco = Contemp. Ethnogr. Women of The Ancient World = Women Ancient World Women of Vietnam = Women Vietnam Women On Corporate Boards of Directors: International Research and Practice = New Horiz Manag Women On Corporate Boards of Directors: International Research and Practice = New. Horiz. Manag. Women & politics = Women Polit Women & Politics = Women Polit Women & Politics = Women Polit. Womens and Gender History = Womens Gend Hist Womens and Gender History = Womens Gend. Hist. Women's Citizenship and Political Rights = Womens Rights Eur Se Women's Citizenship and Political Rights = Womens. Rights Eur. Se. Women's Conference Series = Women Conf Ser Women's Conference Series = Women. Conf. Ser. Women's Entrepreneurship in Eastern Europe and Cis Countries = Entrepreneurship Sme Women's Entrepreneurship in Eastern Europe and Cis Countries = Entrepreneurship Sme. Women's Health and Disease = Ann Ny Acad Sci Women's Health and Disease = Ann. Ny. Acad. Sci. Women's Health and Disease: Gynecologic and Reproductive Issues = Ann Ny Acad Sci Women's Health and Disease: Gynecologic and Reproductive Issues = Ann. Ny. Acad. Sci. Women's Health and Disease: Gynecologic, Endocrine, and Reproductive Issues = Ann Ny Acad Sci Women's Health and Disease: Gynecologic, Endocrine, and Reproductive Issues = Ann. Ny. Acad. Sci. Women's Health and Menopause = Med Sci Symp Ser Women's Health and Menopause = Med. Sci. Symp. Ser. Women's Health and Menopause: New Strategies - Improved Quality of Life = Med Sci Symp Ser Women's Health and Menopause: New Strategies - Improved Quality of Life = Med. Sci. Symp. Ser. Women's Health and Social Change = Crit Stud Health Soc Women's Health and Social Change = Crit. Stud. Health Soc. Women's Health Data Book = Womens Health Data Book Women's health (Hillsdale, N.J.) = Womens Health Women's Health in Clinical Practice: A Handbook for Primary Care = Curr Clin Pract Women's Health in Clinical Practice: A Handbook for Primary Care = Curr. Clin. Pract. Women's Health in Menopause = Med Sci Symp Ser Women's Health in Menopause = Med. Sci. Symp. Ser. Women's health issues : official publication of the Jacobs Institute of Women's Health = Womens Health Issues Womens Health Issues = Women Health Iss Womens Health Issues = Women. Health Iss. Women's Health Issues = Womens Health Issues Womens Health Issues=Womens Health Issues;; Women's health journal / Isis International, Latin American and Caribbean Women's Health Network = Womens Health J Womens Health Newsletter = Womens Health Newsl Women's health update = Womens Health Update Women's health weekly = Womens Health Wkly Women's Health = Womens Health Womens Health=Womens Health;; Womens History Review = Women Hist Rev Womens History Review = Women. Hist. Rev. Women Speaking Up: Getting and Using Turns in Workplace Meetings = Palg Stud Prof Organ Women Speaking Up: Getting and Using Turns in Workplace Meetings = Palg. Stud. Prof. Organ. Women Speak Out = Bul S Rti Women Speak Out = Bul. S. Rti. Womens Rights and Religious Practice: Claims in Conflict = York Stud Women Men Womens Rights and Religious Practice: Claims in Conflict = York. Stud. Women. Men. Womens Rights in Europe Series = Womens Rights Eur Se Womens Rights in Europe Series = Womens Rights Eur. Se. Women's rights law reporter = Women's Rights Law Report Women's Sexualities and Masculinities in A Globalizing Asia = Comp Fem Stud Ser Women's Sexualities and Masculinities in A Globalizing Asia = Comp. Fem. Stud. Ser. Womens Studies-an Interdisciplinary Journal = Women Stud Womens Studies-an Interdisciplinary Journal = Women. Stud. Women's studies forum = Womens Stud Forum Women's studies international forum = Womens Stud Int Forum Womens Studies International Forum = Women Stud Int Forum Womens Studies International Forum = Women. Stud. Int. Forum Women's studies international quarterly = Womens Stud Int Q Womens Studies International Quarterly = Women Stud Int Q Womens Studies International Quarterly = Women. Stud. Int. Q. Women's studies = Womens Stud Womens Wages : Stability and Change in Six Industrialized Countries = Int Rev Com Womens Wages : Stability and Change in Six Industrialized Countries = Int. Rev. Com. Women's world (Kampala, Uganda) = Womens World Women & therapy = Women Ther Women & Therapy = Women Ther Women & Therapy = Women Ther. Women, Universities, and Change: Gender Equality in The European Union and The United States = Issues High Educ-pal Women, Universities, and Change: Gender Equality in The European Union and The United States = Issues. High. Educ-pal. Women, Work and Computerization = Ifip Trans A Women, Work and Computerization = Ifip. Trans. A. Women, Work, and Health = Pl S Stress Women, Work, and Health = Pl. S. Stress. Women Workers in Industrialising Asia: Costed, Not Valued = Stud Econ E Se Asia Women Workers in Industrialising Asia: Costed, Not Valued = Stud. Econ. E. Se. Asia. Women Write Back: Strategies of Response and The Dynamics of European Literary Culture, 1790-1805 = Int Forsch Allg Vgl Women Write Back: Strategies of Response and The Dynamics of European Literary Culture, 1790-1805 = Int. Forsch. Allg. Vgl. Women Writers and Familial Discourse in The English Renaissance: Relative Values = Early Mod Lit Hist Women Writers and Familial Discourse in The English Renaissance: Relative Values = Early. Mod. Lit. Hist. Women Writing Greece: Essays On Hellenism, Orientalism and Travel = Int Forsch Allg Vgl Women Writing Greece: Essays On Hellenism, Orientalism and Travel = Int. Forsch. Allg. Vgl. Wood and Fiber Science = Wood Fiber Sci Wood and Fiber Science = Wood Fiber Sci. Wood and Fiber = Wood Fiber Sci Wood and Fiber = Wood Fiber Sci. Wood Deterioration and Preservation = Acs Sym Ser Wood Deterioration and Preservation = Acs. Sym. Ser. Woodhead Food Series = Woodhead Food Ser Woodhead Food Series = Woodhead Food Ser. Woodhead Publishing India in Textiles = Woodhead Publ India Woodhead Publishing India in Textiles = Woodhead Publ. India Woodhead Publishing in Food Science Technology and Nutrition = Woodhead Publ Food S Woodhead Publishing in Food Science Technology and Nutrition = Woodhead Publ. Food S. Woodhead Publishing in Materials = Woodhead Publ Mater Woodhead Publishing in Materials = Woodhead Publ. Mater. Woodhead Publishing in Mechanical Engineering = Woodhead Publ Mech E Woodhead Publishing in Mechanical Engineering = Woodhead Publ. Mech. E. Woodhead Publishing in Textiles = Woodhead Publ Text Woodhead Publishing in Textiles = Woodhead Publ. Text. Woodhead Publishing in Textiles = Woodh Publ Text Woodhead Publishing in Textiles = Woodh. Publ. Text. Woodhead Publishing Series in Energy = Woodhead Publ Ser En Woodhead Publishing Series in Energy = Woodhead Publ. Ser. En. Woodhead Publishing Series in Textiles = Woodhead Publ Ser Te Woodhead Publishing Series in Textiles = Woodhead Publ. Ser. Te. Woodhead Textiles Series = Woodhead Text Ser Woodhead Textiles Series = Woodhead Text. Ser. Wood Material Science & Engineering = Wood Mater. Sci. Eng. Wood-polymer Composites = Woodhead Publ Mater Wood-polymer Composites = Woodhead. Publ. Mater. Wood Research = Wood Res. Wood Research = Wood Res-slovakia Wood Research = Wood Res-slovakia. Woodrow Wilson Center Current Studies On Latin America = W Wilson L Woodrow Wilson Center Current Studies On Latin America = W. Wilson L. Woodrow Wilson Center Series = W Wilson Cent Ser Woodrow Wilson Center Series = W. Wilson Cent. Ser. Woodrow Wilson Center Special Studies = W Wilson Sp Woodrow Wilson Center Special Studies = W. Wilson Sp. Wood Science and Technology = Wood Sci Technol Wood Science and Technology = Wood Sci. Technol. Wood Science = Wood Sci Wood Science = Wood Sci. Wood Structures: A Global Forum On The Treatment, Conservation, and Repair of Cultural Heritage = Am Soc Test Mater Wood Structures: A Global Forum On The Treatment, Conservation, and Repair of Cultural Heritage = Am. Soc. Test. Mater. Woodward Conference Series = Woodw Conf Woodward Conference Series = Woodw. Conf. Woodwind Brass & Percussion = Woodwind Brass Per Woodwind Brass & Percussion = Woodwind Brass Per. Woodwind World-brass & Percussion = Woodwind World Woodwind World-brass & Percussion = Woodwind World. Wood & Wood Products = Wood Wood Prod Wood & Wood Products = Wood Wood Prod. Woody Plant Biotechnology = Nato Adv Sci I A-lif Woody Plant Biotechnology = Nato. Adv. Sci. I. A-lif. Woolf Studies Annual = Woolf St An Woolf Studies Annual = Woolf St. An. Wool Technology and Sheep Breeding = Wool Tech Sheep Bree Wool Technology and Sheep Breeding = Wool Tech. Sheep Bree. Worcester medical news = Worcester Med News Worcester Medical News = Worcester Med. News Word Classes and Related Topics in Ancient Greek = Bibl Des Cah De L In Word Classes and Related Topics in Ancient Greek = Bibl. Des. Cah. De. L. In. Word-formation and Creolisation: The Case of Early Sranan = Linguist Arb Word-formation and Creolisation: The Case of Early Sranan = Linguist. Arb. Word Frequency Studies = Quant Linguist Word Frequency Studies = Quant. Linguist. Word & Image = Word Image Word Is Near You = Beih Z Neutest Wiss Word Is Near You = Beih. Z. Neutest. Wiss. Word-journal of The International Linguistic Association = Word Word-journal of The International Linguistic Association = Word. Word Processing & Information Systems = Word Process Inform Word Processing & Information Systems = Word Process. Inform. Words and Intelligence Ii: Essays in Honor of Yorick Wilks = Text Speech Lang Tec Words and Intelligence Ii: Essays in Honor of Yorick Wilks = Text. Speech. Lang. Tec. Words and Intelligence I: Selected Papers By Yorick Wilks = Text Speech Lang Tec Words and Intelligence I: Selected Papers By Yorick Wilks = Text. Speech. Lang. Tec. Words and Other Wonders: Papers On Lexical and Semantic Topics = Cogn Linguist Res Words and Other Wonders: Papers On Lexical and Semantic Topics = Cogn. Linguist. Res. Words and Songs of Bessie Smith, Billie Holiday, and Nina Simone: Sound Motion, Blues Spirit, and African Memory = Stud Afr Am Hist Cul Words and Songs of Bessie Smith, Billie Holiday, and Nina Simone: Sound Motion, Blues Spirit, and African Memory = Stud. Afr. Am. Hist. Cul. Word Sense Disambiguation: Algorithms and Applications = Text Speech Lang Tec Word Sense Disambiguation: Algorithms and Applications = Text. Speech. Lang. Tec. Words - Proceedings of An International Symposium = Kungl Vit H Words - Proceedings of An International Symposium = Kungl. Vit. H. Words, Worlds, and Material Girls: Language, Gender, Globalization = Lang Power Soc Proce Words, Worlds, and Material Girls: Language, Gender, Globalization = Lang. Power. Soc. Proce. Wordsworth Circle = Wordsworth Circle Wordsworth in Context = Bucknell Re Wordsworth in Context = Bucknell. Re. Word & world = Word World Work-a Journal of Prevention Assessment & Rehabilitation = Work Work-a Journal of Prevention Assessment & Rehabilitation = Work. Work and occupations = Work Occup Work And Occupations = Work Occup. Work and Occupations = Work Occupation Work and Occupations = Work Occupation. Work and Organizations in China After Thirty Years of Transition = Res Sociol Work Work and Organizations in China After Thirty Years of Transition = Res. Sociol. Work Work and People: An Economic Evaluation of Job-enrichment = Res Manag Consult Work and People: An Economic Evaluation of Job-enrichment = Res. Manag. Consult. Work and stress = Work Stress Work and Stress = Work Stress Work, Earnings and Other Aspects of The Employment Relation = Res Labor Econ Work, Earnings and Other Aspects of The Employment Relation = Res. Labor. Econ. Work Employment and Society = Work Employ Soc Work Employment and Society = Work Employ. Soc. Work Employment And Society = Work Employ. Soc. Work, environment, health = Work Environ Health Work, Environment, Health = Work. Environ. Health Worker Participation : Current Research and Future Trends = Res Sociol Work Worker Participation : Current Research and Future Trends = Res. Sociol. Work. Workers' Democracy in China's Transition From State Socialism = E Asia Hist Polit So Workers' Democracy in China's Transition From State Socialism = E. Asia. Hist. Polit. So. Worker Well-being and Public Policy = Res Labor Econ Worker Well-being and Public Policy = Res. Labor. Econ. Work Experiences and Psychological Development Through The Life Span = Aaas Select Work Experiences and Psychological Development Through The Life Span = Aaas. Select. Work, Female Empowerment and Economic Development = Routl Stud Dev Econ Work, Female Empowerment and Economic Development = Routl. Stud. Dev. Econ. Workflow Management Systems and Interoperability = Nato Adv Sci I F-com Workflow Management Systems and Interoperability = Nato. Adv. Sci. I. F-com. Workforce Management for Farms and Horticultural Businesses = Nraes, Nat Res Agr E Workforce Management for Farms and Horticultural Businesses = Nraes,. Nat. Res. Agr. E. Workforce = Workforce Working Across Cultures = Iss Bus Eth Working Across Cultures = Iss. Bus. Eth. Working Animals in Agriculture and Transport = Eaap Tech Working Animals in Agriculture and Transport = Eaap. Tech. Working-class Lesbian Life: Classed Outsiders = York Stud Women Men Working-class Lesbian Life: Classed Outsiders = York. Stud. Women. Men. Working Conference On Reverse Engineering = Work Conf Reverse En Working Conference On Reverse Engineering = Work. Conf. Reverse En. Working Forests in The Neotropics-conservation Through Sustainable Management? = Biol Resource Manage Working Forests in The Neotropics-conservation Through Sustainable Management? = Biol. Resource. Manage. Working in Asia = Work Asia Working in Asia = Work. Asia Working in China: Ethnographies of Labor and Workplace Transformation = Asia's Transform Working in China: Ethnographies of Labor and Workplace Transformation = Asia's. Transform. Working in China: Ethnographies of Labor and Workplace Transformation = Asias Transform Working in China: Ethnographies of Labor and Workplace Transformation = Asias. Transform. Working On The Fringe: Optical and Ir Interferometry From Ground and Space = Astr Soc P Working On The Fringe: Optical and Ir Interferometry From Ground and Space = Astr. Soc. P. Working paper series (National Bureau of Economic Research) = NBER Work Pap Ser Working papers for a new society = Work Pap New Soc Working papers magazine = Work Pap Mag Working Time Around The World = Routl Stud Mod World Working Time Around The World = Routl. Stud. Mod. World Working Together With God to Shape The New Millennium: Opportunities and Limitations = Evangel Missiol Soc Working Together With God to Shape The New Millennium: Opportunities and Limitations = Evangel. Missiol. Soc. WorkingUSA=WorkingUSA Working With Faculty in The New Electronic Library = Lib Orient Working With Faculty in The New Electronic Library = Lib. Orient. Working With Immigrant Families: A Practical Guide for Counselors = Fam Ther Counsel Working With Immigrant Families: A Practical Guide for Counselors = Fam. Ther. Counsel. Working With Older People = Soc Work Skills Ser Working With Older People = Soc. Work. Skills. Ser. Working With Older Workers = Ucla Iir P Working With Older Workers = Ucla. Iir. P. Working With Preferences: Less Is More = Cogn Technol Working With Preferences: Less Is More = Cogn. Technol. Working With Vulnerable Adults = Soc Work Skills Ser Working With Vulnerable Adults = Soc. Work. Skills. Ser. Working woman = Work Woman Work in The Global Village = People Work Res Rep Work in The Global Village = People. Work Res. Rep. Work in The Information Society = People Work Res Rep Work in The Information Society = People. Work Res. Rep. Work, Learning and Sustainable Development: Opportunities and Challenges = Tech Vocat Ed Train Work, Learning and Sustainable Development: Opportunities and Challenges = Tech. Vocat. Ed. Train. Worklife = Worklife Workload Characterization of Emerging Computer Applications = Kluwer Int Ser Eng C Workload Characterization of Emerging Computer Applications = Kluwer. Int. Ser. Eng. C. Workload Characterization of Emerging Computer Applications = Springer Int Ser Eng Workload Characterization of Emerging Computer Applications = Springer. Int. Ser. Eng. Work Motivation = S Appl Psyc Work Motivation = S. Appl. Psyc. Work of Language in Multicultural Classrooms = Lang Cult Teach Work of Language in Multicultural Classrooms = Lang. Cult. Teach. Work of Mary Ellen Rudin = Ann Ny Acad Sci Work of Mary Ellen Rudin = Ann. Ny. Acad. Sci. Workplace Temporalities = Res Sociol Work Workplace Temporalities = Res. Sociol. Work. Work (Reading, Mass.) = Work Work Research Multidisciplinary = Work Res Multidiscip Work Research Multidisciplinary = Work Res. Multidiscip. Workshop Ecological Aspects of Vegetable Fertilization in Integrated Crop Production in The Field = Acta Hortic Workshop Ecological Aspects of Vegetable Fertilization in Integrated Crop Production in The Field = Acta. Hortic. Workshop : From Classical to Quantum Chaos = Ital Phy So Workshop : From Classical to Quantum Chaos = Ital. Phy. So. Workshop Molecules in Space and in The Laboratory, Vol 67, Conference Proceedings = Soc Ital Fi Workshop Molecules in Space and in The Laboratory, Vol 67, Conference Proceedings = Soc. Ital. Fi. Workshop On Astronomical Site Evaluation = Rev Mex Ast Astr Workshop On Astronomical Site Evaluation = Rev. Mex. Ast. Astr. Workshop On Automated Beam Steering and Shaping (abs), Proceedings = Cern Report Workshop On Automated Beam Steering and Shaping (abs), Proceedings = Cern. Report. Workshop On Beam Cooling and Related Topics = Cern Report Workshop On Beam Cooling and Related Topics = Cern. Report. Workshop On Calculation of Double-beta-decay Matrix Elements (medex '07) = Aip Conf Proc Workshop On Calculation of Double-beta-decay Matrix Elements (medex '07) = Aip. Conf. Proc. Workshop On Calculation of Double-beta-decay Matrix Elements (medex '09) = Aip Conf Proc Workshop On Calculation of Double-beta-decay Matrix Elements (medex '09) = Aip. Conf. Proc. Workshop On Colliding Winds in Binary Stars to Honor Jorge Sahade = Rev Mex Ast Astr Workshop On Colliding Winds in Binary Stars to Honor Jorge Sahade = Rev. Mex. Ast. Astr. Workshop On Color Aerial Photography in The Plant Sciences = W Col Aer P Workshop On Color Aerial Photography in The Plant Sciences = W. Col. Aer. P. Workshop On Confidence Limits, Proceedings = Cern Report Workshop On Confidence Limits, Proceedings = Cern. Report. Workshop On Digital Holography = P Soc Photo-opt Ins Workshop On Digital Holography = P. Soc. Photo-opt. Ins. Workshop On Dust in Planetary Systems = Esa Spec Publ Workshop On Dust in Planetary Systems = Esa. Spec. Publ. Workshop On Dust in Planetary Systems = Esa Sp Publ Workshop On Dust in Planetary Systems = Esa. Sp. Publ. Workshop On Ecological Corridors for Invertebrates: Strategies of Dispersal and Recolonisation in Today's Agricultural and Forestry Landscapes, Proceedings = Environ Encount Workshop On Ecological Corridors for Invertebrates: Strategies of Dispersal and Recolonisation in Today's Agricultural and Forestry Landscapes, Proceedings = Environ. Encount. Workshop On Emerging Scatterometer Applications - From Research to Operations = Esa Spec Publ Workshop On Emerging Scatterometer Applications - From Research to Operations = Esa. Spec. Publ. Workshop On Emerging Scatterometer Applications - From Research to Operations = Esa Sp Publ Workshop On Emerging Scatterometer Applications - From Research to Operations = Esa. Sp. Publ. Workshop On High Energy Physics Phenomenology = W High En P Workshop On High Energy Physics Phenomenology = W. High En. P. Workshop On Higher Symmetries in Physics = J Phys Conf Ser Workshop On Higher Symmetries in Physics = J. Phys. Conf. Ser. Workshop On High Performance Computing and Gigabit Local Area Networks = Lect Notes Contr Inf Workshop On High Performance Computing and Gigabit Local Area Networks = Lect. Notes. Contr. Inf. Workshop On Hot Stars in Open Clusters of The Galaxy and The Magellanic Clouds = Rev Mex Ast Astr Workshop On Hot Stars in Open Clusters of The Galaxy and The Magellanic Clouds = Rev. Mex. Ast. Astr. Workshop On Instabilities of High Intensity Hadron Beams in Rings = Aip Conf Proc Workshop On Instabilities of High Intensity Hadron Beams in Rings = Aip. Conf. Proc. Workshop On Ion-aerosol-cloud Interactions = Cern Report Workshop On Ion-aerosol-cloud Interactions = Cern. Report. Workshop On Iso Polarisation Observations = Esa Sp Publ Workshop On Iso Polarisation Observations = Esa. Sp. Publ. Workshop On Laser Applications in Europe = P Soc Photo-opt Ins Workshop On Laser Applications in Europe = P. Soc. Photo-opt. Ins. Workshop On Non-hodgkins Lymphomas = Res Clin Forums Workshop On Non-hodgkins Lymphomas = Res. Clin. Forums. Workshop On Observing Giant Cosmic Ray Air Showers From >10(20) Ev Particles From Space = Aip Conf Proc Workshop On Observing Giant Cosmic Ray Air Showers From >10(20) Ev Particles From Space = Aip. Conf. Proc. Workshop On Optical Components for Broadband Communication = Proc Spie Workshop On Optical Components for Broadband Communication = Proc. Spie. Workshop On Optical Components for Broadband Communication = P Soc Photo-opt Ins Workshop On Optical Components for Broadband Communication = P. Soc. Photo-opt. Ins. Workshop On Parallel and Distributed Simulation = W Par Distr Simulat Workshop On Parallel and Distributed Simulation = W. Par. Distr. Simulat. Workshop On Photon Radiation From Quarks = Cern Report Workshop On Photon Radiation From Quarks = Cern. Report. Workshop On Physics At The First Muon Collider and At The Front End of A Muon Collider = Aip Conf Proc Workshop On Physics At The First Muon Collider and At The Front End of A Muon Collider = Aip. Conf. Proc. Workshop On Principles of Advanced and Distributed Simulation = W Prin Adv Distr Sim Workshop On Principles of Advanced and Distributed Simulation = W. Prin. Adv. Distr. Sim. Workshop On Radiation Protection Issues Related to Radioactive Ion-beam Facilities (saferib), Proceedings = Cern Report Workshop On Radiation Protection Issues Related to Radioactive Ion-beam Facilities (saferib), Proceedings = Cern. Report. Workshop On Space Charge Physics in High Intensity Hadron Rings = Aip Conf Proc Workshop On Space Charge Physics in High Intensity Hadron Rings = Aip. Conf. Proc. Workshop On The Earth's Trapped Particle Environment = Aip Conf Proc Workshop On The Earth's Trapped Particle Environment = Aip. Conf. Proc. Workshop On The Tau/charm Factory = Aip Conf Proc Workshop On The Tau/charm Factory = Aip. Conf. Proc. Workshop On The Use of Atomic Beams in Plasma Experiments = Kfki Prep R Workshop On The Use of Atomic Beams in Plasma Experiments = Kfki. Prep. R. Workshop On Timing Detectors: Electronics, Medical and Particle Physics Applications = Acta Phys Pol B Pr S Workshop On Timing Detectors: Electronics, Medical and Particle Physics Applications = Acta. Phys. Pol. B. Pr. S. Workshop On Wide Area Networks and High Performance Computing = Lect Notes Contr Inf Workshop On Wide Area Networks and High Performance Computing = Lect. Notes. Contr. Inf. Workshop Series of The American Psychoanalytic Association : Monograph = Work S Am P Workshop Series of The American Psychoanalytic Association : Monograph = Work. S. Am. P. Workshops in Computing = Work Comp Workshops in Computing = Work. Comp. Workshops in Computing = Workshops Comput. Workshops On Particles and Fields and Phenomenology of Fundamental Interactions = Aip Conf Proc Workshops On Particles and Fields and Phenomenology of Fundamental Interactions = Aip. Conf. Proc. Workshop to Resolve Conflicts in The Conservation of Migratory Landbirds in Bottomland Hardwood Forest = Usda Southe Workshop to Resolve Conflicts in The Conservation of Migratory Landbirds in Bottomland Hardwood Forest = Usda. Southe. Workstations for Experiments = Ifip S Comp Workstations for Experiments = Ifip. S. Comp. Work, Subjectivity and Learning: Understanding Learning Through Working Life = Tech Vocat Ed Train Work, Subjectivity and Learning: Understanding Learning Through Working Life = Tech. Vocat. Ed. Train. Work Time Regulation As A Sustainable Full Employment Strategy = Routl Front Polit Ec Work Time Regulation As A Sustainable Full Employment Strategy = Routl. Front. Polit. Ec. Work Zone Safety; Pavement Marking Retroreflectivity = Transport Res Rec Work Zone Safety; Pavement Marking Retroreflectivity = Transport. Res. Rec. World Affairs = World Aff World Affairs = World Aff. World Agriculture Series = World Agr S World Agriculture Series = World Agr. S. World Agriculture = World Agr World Agriculture = World Agr. World AIDS day features = World AIDS Day Features World AIDS day newsletter = World AIDS Day Newsl WorldAIDS = WorldAIDS World Animal Review = World Anim Rev World Animal Review = World Anim. Rev. World Aquaculture Workshops = World Aquac World Aquaculture Workshops = World Aquac. World Archaeological Congress Cultural Heritage Manual Series = World Archaeol Congr World Archaeological Congress Cultural Heritage Manual Series = World Archaeol. Congr. World Archaeology Series = World Archaeol Ser World Archaeology Series = World Archaeol. Ser. World Archaeology = WorldA World archaeology = World Archaeol World Archaeology = World Archaeol World Archaeology = World Archaeol. World Archaeology = World Archeol. World As Aesthetic Phenomenon: The Image in Abundance, Pt 1 = Int Stud Philos Mono World As Aesthetic Phenomenon: The Image in Abundance, Pt 1 = Int. Stud. Philos. Mono. World As Aesthetic Phenomenon: The Wonder of The Earth, Pt 2 = Int Stud Philos Mono World As Aesthetic Phenomenon: The Wonder of The Earth, Pt 2 = Int. Stud. Philos. Mono. World As A Mathematical Game = Sci Netw Hist Stud World As A Mathematical Game = Sci. Netw. Hist. Stud. World At Risk : Natural Hazards and Climate Change = Aip Conf Proc World At Risk : Natural Hazards and Climate Change = Aip. Conf. Proc. World Bank and Global Managerialism = Routl Stud Int Bus W World Bank and Global Managerialism = Routl. Stud. Int. Bus. W. World Bank and Urban Development: From Projects to Policy = Routl Stud Dev Soc World Bank and Urban Development: From Projects to Policy = Routl. Stud. Dev. Soc. World Bank Discussion Papers: Fisheries Series = World B Dis Fis World Bank Discussion Papers: Fisheries Series = World B. Dis. Fis. World Bank Discussion Papers = World B Dis World Bank Discussion Papers = World B. Dis. World Bank Economic Review=World Bank Econ. Rev. World Bank Economic Review = World Bank Econ Rev World Bank Economic Review = World Bank Econ. Rev. World Bank Environment Paper = World Bank Environ P World Bank Environment Paper = World Bank Environ. P. World Bank: From Reconstruction to Development to Equity = Glob Inst World Bank: From Reconstruction to Development to Equity = Glob. Inst. World Bank Institute Learning Resources Series = Wbi Learn Resour Ser World Bank Institute Learning Resources Series = Wbi. Learn. Resour. Ser. World Bank Latin American and Caribbean Studies - Proceedings = World B Lat Amer Car World Bank Latin American and Caribbean Studies - Proceedings = World B. Lat. Amer. Car. World Bank Operations Evaluation Study = World B Op World Bank Operations Evaluation Study = World B. Op. World Bank Regional and Sectoral Studies = Wb Reg Sect Stud World Bank Regional and Sectoral Studies = Wb. Reg. Sect. Stud. World Bank Research News = World Bank Res News World Bank Research Observer = World Bank Res Obser World Bank Research Observer = World Bank Res. Obser. World Bank Research Observer=World Bank Res. Observer World Bank Symposium = World Bank World Bank Technical Papers = World Ban T World Bank Technical Papers = World Ban. T. Worldcall: International Perspectives On Computer-assisted Language Learning = Rout Stud Comp Assis Worldcall: International Perspectives On Computer-assisted Language Learning = Rout. Stud. Comp. Assis. World Cement Technology = World Cem Technol World Cement Technology = World Cem. Technol. World citizen news : newsletter of the World Government of World Citizens = World Citz News World-class University and Ranking: Aiming Beyond Status = High Educ Knowl Soc World-class University and Ranking: Aiming Beyond Status = High. Educ. Knowl. Soc. World Conference On Educational Sciences - New Trends and Issues in Educational Sciences = Procd Soc Behv World Conference On Educational Sciences - New Trends and Issues in Educational Sciences = Procd. Soc. Behv. World Conference On Horticultural Research = Acta Hortic World Conference On Horticultural Research = Acta. Hortic. World Congress of Biomechanics = World Congr Biomech World Congress of Biomechanics = World Congr. Biomech. World Congress On Engineering 2007, Vols 1 and 2 = Lect Notes Eng Comp World Congress On Engineering 2007, Vols 1 and 2 = Lect. Notes. Eng. Comp. World Congress On Engineering 2008, Vol Iii = Lect Notes Eng Comp World Congress On Engineering 2008, Vol Iii = Lect. Notes. Eng. Comp. World Congress On Engineering 2008, Vols I-ii = Lect Notes Eng Comp World Congress On Engineering 2008, Vols I-ii = Lect. Notes. Eng. Comp. World Congress On Engineering 2009, Vols I and Ii = Lect Notes Eng Comp World Congress On Engineering 2009, Vols I and Ii = Lect. Notes. Eng. Comp. World Congress On Engineering and Computer Science, Vols 1 and 2 = Lect Notes Eng Comp World Congress On Engineering and Computer Science, Vols 1 and 2 = Lect. Notes. Eng. Comp. World Congress On Medical Physics and Biomedical Engineering 2006, Vol 14, Pts 1-6 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering 2006, Vol 14, Pts 1-6 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 10 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 10 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 11 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 11 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 12 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 12 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 13 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 13 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 5 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 5 = Ifmbe. Proc. World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 6 = Ifmbe Proc World Congress On Medical Physics and Biomedical Engineering, Vol 25, Pt 6 = Ifmbe. Proc. World conservation = World Conserv World Court Digest = World Court Dig World Court Digest = World Court Dig. World Crops and Livestock = World Crop Livestock World Crops and Livestock = World Crop. Livestock World Crops = World Crop World Crops = World Crop. World Crops = World Crops World Data Book of Obesity = Int Congr Ser World Data Book of Obesity = Int. Congr. Ser. World Democratic Federalism: Peace and Justice Indivisible = Int Polit Econ Ser World Democratic Federalism: Peace and Justice Indivisible = Int. Polit. Econ. Ser. World development forum = World Dev Forum World Development = World Dev World Development = World Dev. World Development=World Devel. World Economic Forum: A Multi-stakeholder Approach to Global Governance = Glob Inst World Economic Forum: A Multi-stakeholder Approach to Global Governance = Glob. Inst. World Economic Outlook, April 2011: Tensions From The Two-speed Recovery-unemployment, Commodities, and Capital Flows = Wor Econ Outlook World Economic Outlook, April 2011: Tensions From The Two-speed Recovery-unemployment, Commodities, and Capital Flows = Wor. Econ. Outlook. World Economic Outlook = Wor Econ Outlook World Economic Outlook = Wor. Econ. Outlook World Economy: A Global Analysis = Routl Stud Mod World World Economy: A Global Analysis = Routl. Stud. Mod. World World Economy = World Econ World Economy = World Econ. World Economy=World Economy World education reports = World Educ Rep World Englishes 2000 = Lit St E W World Englishes 2000 = Lit. St. E. W. World Englishes: A Cognitive Sociolinguistic Approach = Appl Cogn Linguist World Englishes: A Cognitive Sociolinguistic Approach = Appl. Cogn. Linguist. World Englishes = World English World Englishes = World English. World environment report = World Environ Rep World Farming = World Farm World Farming = World Farm. World Fishing = World Fish World Fishing = World Fish. World Food Security and Sustainability: The Impacts of Biotechnology and Industrial Consolidation = Nabc Rep World Food Security and Sustainability: The Impacts of Biotechnology and Industrial Consolidation = Nabc. Rep. World Forests = World Forests World Futures = World Future World Futures = World Future. World futures = World Futures World Gold 2007 = Australas I Min Met World Gold 2007 = Australas. I. Min. Met. World Gold '97 = Australas I Min Met World Gold '97 = Australas. I. Min. Met. World health forum = World Health Forum World Health Forum=World Health Forum;; World Health Forum = World Health Forum World Health Organization AIDS technical bulletin = WHO AIDS Tech Bull World Health Organization Monograph Series = World Health Organ. Monogr. Ser. World Health Organization technical report series = World Health Organ Tech Rep Ser World Health Organization Technical Report Series=World Health Organ Tech Rep Ser;; World Health Organization Technical Report Series = World Health Organ. Tech. Rep. Ser. World Health Organization (who) = Glob Inst World Health Organization (who) = Glob. Inst. World Health Report = Wor Healt Rep World Health Report = Wor. Healt. Rep. World health statistics quarterly. Rapport trimestriel de statistiques sanitaires mondiales = World Health Stat Q World Health Statistics Quarterly. Rapport Trimestriel de Statistiques Sanitaires Mondiales=World Health Stat Q;; World Health Statistics Quarterly = World Health Stat. Q. World health statistics report. Rapport de statistiques sanitaires mondiales = World Health Stat Rep World Health Statistics Report = World Health Stat. Rep. World health = World Health World hospitals and health services : the official journal of the International Hospital Federation = World Hosp Health Serv World Hospitals and Health Services = World Hosp. Health Serv. World hospitals = World Hosp World Hospitals = World Hosp. World in A Crucible: Laboratory Practice and Geological Theory At The Beginning of Geology = Geol Soc Am Spec Pap World in A Crucible: Laboratory Practice and Geological Theory At The Beginning of Geology = Geol. Soc. Am. Spec. Pap. Worlding Dance = Stud Int Perform Worlding Dance = Stud. Int. Perform. World Intellectual Property Organization: Resurgence and The Development Agenda = Glob Inst World Intellectual Property Organization: Resurgence and The Development Agenda = Glob. Inst. World in Transition; Humankind and Nature: The Green Book of Einstein Meets Magritte = Einstein Meet Magrit World in Transition; Humankind and Nature: The Green Book of Einstein Meets Magritte = Einstein Meet. Magrit. World Inventory of Soil Emission Potentials = Wise Rep World Inventory of Soil Emission Potentials = Wise. Rep. World Journal of Biological Psychiatry = World J Biol Psychia World Journal of Biological Psychiatry = World J. Biol. Psychia. World journal of emergency surgery : WJES = World J Emerg Surg World journal of gastroenterology : WJG = World J Gastroenterol World Journal of Gastroenterology = World J Gastroentero World Journal of Gastroenterology = World J. Gastroentero. World Journal of Gastroenterology = World J. Gastroenterol. World Journal of Microbiology and Biotechnology = World J. Microbiol. Biotechnol. World Journal of Microbiology & Biotechnology = World J Microb Biot World Journal of Microbiology & Biotechnology = World J. Microb. Biot. World journal of orthodontics = World J Orthod World Journal of Pediatrics = World J Pediatr World Journal of Pediatrics = World J. Pediatr. World journal of surgery = World J Surg World Journal of Surgery=World J Surg;; World Journal of Surgery = World J Surg World Journal of Surgery = World J. Surg. World journal of surgical oncology = World J Surg Oncol World Journal of Surgical Oncology = World J Surg Oncol World Journal of Surgical Oncology = World J. Surg. Oncol. World journal of urology = World J Urol World Journal of Urology=World J Urol;; World Journal of Urology = World J Urol World Journal of Urology = World J. Urol. Worldliness of A Cosmopolitan Education = Stud Curric Theory Worldliness of A Cosmopolitan Education = Stud. Curric. Theory. World Literature Studies = World Lit Stud World Literature Studies = World Lit. Stud. World Literature Today = World Literature Tod World Literature Today = World Literature Tod. World Marketing Congress = World Market Congr World Marketing Congress = World Market. Congr. World medical journal = World Med J World Medical Journal = World Med J World Medical Journal = World Med. J. World medicine = World Med World Meteorological Organization Bulletin = WMO Bull. World Meteorological Organization Technical Documents = World Meteo World Meteorological Organization Technical Documents = World Meteo. World Migration 2008: Managing Labour Mobility in The Evolving Global Economy = World Migr Rep World Migration 2008: Managing Labour Mobility in The Evolving Global Economy = World Migr. Rep. World Migration Report = World Migr Rep World Migration Report = World Migr. Rep. World Mycotoxin Journal = World Mycotoxin J World Mycotoxin Journal = World Mycotoxin J. World Neighbors in action = World Neighb Action World neurology = World Neurol World Neurology = World Neurol World Neurology = World Neurol. World Neurosurgery = World Neurosurg World Neurosurgery = World Neurosurg. World news on maxillofacial radiology = World News Maxillofac Radiol World News on Maxillofacial Radiology = World News Maxillofac. Radiol. WORLD (Oakland, Calif. : 1993) = WORLD World of Irish nursing (Dublin, Ireland : 1995) = World Ir Nurs World of Irish nursing = World Ir Nurs World of Irish Nursing = World Ir. Nurs. World of Metallurgy = World Metall World of Metallurgy = World Metall. World of Mining: Surface and Underground = World Min. Surf. Underground World of Music = World Music World of Pompeii = Routledge Worlds World of Pompeii = Routledge. Worlds. World of Rhabdoviruses = Curr Top Microbiol World of Rhabdoviruses = Curr. Top. Microbiol. World of The American West = Routledge Worlds World of The American West = Routledge. Worlds. World of The Roosevelts = World Roosevelts World of Water: Rain, Rivers and Seas in Southeast Asian Histories = Verh Konik World of Water: Rain, Rivers and Seas in Southeast Asian Histories = Verh. Konik. World of work : the magazine of the ILO = World Work World Oil = World Oil World Philosophy Series = World Philos Ser World Philosophy Series = World Philos. Ser. World policy journal = World Policy J World Policy Journal = World Policy J World Policy Journal = World Policy J. World politics = World Polit World Politics = World Polit World Politics = World Polit. World psychiatry : official journal of the World Psychiatric Association (WPA) = World Psychiatry World Psychiatry = World Psychiatry World Rabbit Science = World Rabbit Sci World Rabbit Science = World Rabbit Sci. World Resource Review, Vol 12, Nos 2-4 = Glob Warm Int Ctr M World Resource Review, Vol 12, Nos 2-4 = Glob. Warm. Int. Ctr. M. World Resource Review, Vol 13, Nos 2-4 = Glob Warm Int Ctr M World Resource Review, Vol 13, Nos 2-4 = Glob. Warm. Int. Ctr. M. World Resource Review, Vol 4, No 2-4 = Glob Warm Int Ctr M World Resource Review, Vol 4, No 2-4 = Glob. Warm. Int. Ctr. M. World Resource Review, Vol 5, No 2-4 = Glob Warm Int Ctr M World Resource Review, Vol 5, No 2-4 = Glob. Warm. Int. Ctr. M. World Resource Review, Vol 7, Nos 1-3, March 1995 = Glob Warm Int Ctr M World Resource Review, Vol 7, Nos 1-3, March 1995 = Glob. Warm. Int. Ctr. M. World Resource Review = World Resour. Rev. World review (Brisbane, Qld.) = World Review World Review of Animal Production = World Rev Anim Prod World Review of Animal Production = World Rev. Anim. Prod. World review of nutrition and dietetics = World Rev Nutr Diet World Review of Nutrition and Dietetics=World Rev Nutr Diet;; World Review of Nutrition and Dietetics = World Rev Nutr Diet World Review of Nutrition and Dietetics = World Rev. Nutr. Diet. World Review of Pest Control = World Rev Pest Contr World Review of Pest Control = World Rev. Pest Contr. World Review = World Rev World Review = World Rev. Worlds Apart = Asa Decen Conf Ser Worlds Apart = Asa. Decen. Conf. Ser. World Says No to War: Demonstrations Against The War On Iraq = Soc Mov Protest Cont World Says No to War: Demonstrations Against The War On Iraq = Soc. Mov. Protest. Cont. World's Best Practice in Mining and Processing Conference = Australas I Min Met World's Best Practice in Mining and Processing Conference = Australas. I. Min. Met. World Scientific Lecture Notes in Complex Systems = World Sci Lect Notes World Scientific Lecture Notes in Complex Systems = World Sci. Lect. Notes World Scientific Lecture Notes in Physics = World Sci Lec No Phy World Scientific Lecture Notes in Physics = World Sci. Lec. No. Phy. World Scientific Lecture Notes in Physics = World Sci. Lecture Notes Phys. World Scientific Lecture Notes in Physics = World Sci P World Scientific Lecture Notes in Physics = World Sci. P. World Scientific Monograph Series in Mathematics = World Sci Monograph World Scientific Monograph Series in Mathematics = World Sci. Monograph World Scientific Proceedings Series On Computer Engineering and Information Science = Wd Sci P Comp Eng World Scientific Proceedings Series On Computer Engineering and Information Science = Wd. Sci. P. Comp. Eng. World Scientific Series in 20th Century Mathematics = World Sci. Ser. 20th Century Math. World Scientific Series in 20th Century Physics = World Sci. Ser. 20th Century Phys. World Scientific Series in Applicable Analysis = World Sci. Ser. Appl. Anal. World Scientific Series in Robotics and Intelligent Systems = World Sci. Ser. Robot. Intell. Systems World Scientific Series On 21st Century Business = World Sci Ser 21st C World Scientific Series On 21st Century Business = World Sci. Ser. 21st C. World Scientific Series On Nonlinear Science Series A = World Sci Ser Nonlin World Scientific Series On Nonlinear Science Series A = World Sci. Ser. Nonlin. World Scientific Series On Nonlinear Science, Series B = Wss Nonlin Sci Ser B World Scientific Series On Nonlinear Science, Series B = Wss. Nonlin. Sci. Ser. B World Scientific Series on Nonlinear Science = World Sci. Ser. Nonlinear Sci. Ser. A Monogr. Treatises World Scientific Series on Nonlinear Science = World Sci. Ser. Nonlinear Sci. Ser. B Spec. Theme Issues Proc. World Scientific Studies in International Economics = World Sci Stud Int E World Scientific Studies in International Economics = World Sci. Stud. Int. E. World smoking & health = World Smoking Health World Social Systems Series : China in A New Era = Wor Sss Chi World Social Systems Series : China in A New Era = Wor. Sss. Chi. World Society and The Middle East: Reconstructions in Regional Politics = Rethink Peace Confl World Society and The Middle East: Reconstructions in Regional Politics = Rethink. Peace. Confl. Worlds of S. An-sky = Stanf Stud Jew Hist Worlds of S. An-sky = Stanf. Stud. Jew. Hist. World Soil Resources Report = World Soil Worlds Poultry Science Journal = World Poultry Sci J Worlds Poultry Science Journal = World. Poultry Sci. J. World's poultry science journal = Worlds Poult Sci J World's Poultry Science Journal = World's Poult. Sci. J. Worlds Poultry Science Journal = Worlds Poult. Sci. J. Worlds Savannas = Man Biosph Worlds Savannas = Man. Biosph. World's Worst Weeds, Proceedings = Bcpc Symp Ser World's Worst Weeds, Proceedings = Bcpc. Symp. Ser. World tobacco = World Tob World Today = World Today World Trade Organization = Glob Inst World Trade Organization = Glob. Inst. World Trade Organization in The New Global Economy = New Horiz Int Bus World Trade Organization in The New Global Economy = New Horiz. Int. Bus. World Trade Review = World Trade Rev World Trade Review = World Trade Rev. World-view of Prehistoric Man = Kungl Vit H World-view of Prehistoric Man = Kungl. Vit. H. Worldviews and Cultures: Philosophical Reflections From An Intercultural Perspective = Einstein Meets Magri Worldviews and Cultures: Philosophical Reflections From An Intercultural Perspective = Einstein. Meets. Magri. Worldviews on evidence-based nursing / Sigma Theta Tau International, Honor Society of Nursing = Worldviews Evid Based Nurs Worldviews On Evidence-based Nursing = Worldv Evid-based Nu Worldviews On Evidence-based Nursing = Worldv. Evid-based. Nu. Worldviews on Evidence-Based Nursing = Worldviews Evid. Based Nurs. Worldview = Worldview World War Ii and The Exiles = St Lit Mod World War Ii and The Exiles = St. Lit. Mod. World Wastes = World Waste World Wastes = World Waste. World watch = World Watch World Watch = World Watch World We Could Win: Administering Global Governance = Int I Adm Sci Monogr World We Could Win: Administering Global Governance = Int. I. Adm. Sci. Monogr. World-wide abstracts of general medicine = World Wide Abstr Gen Med Worldwide Archaeology Series = Worldw Arch Worldwide Archaeology Series = Worldw. Arch. Worldwide Biomass Potential: Technology Characterizations = Energ Polic Polit Pr Worldwide Biomass Potential: Technology Characterizations = Energ. Polic. Polit. Pr. Worldwide Computing and Its Applications = Lect Notes Comput Sc Worldwide Computing and Its Applications = Lect. Notes. Comput. Sc. Worldwide Computing and Its Applications - Wwca'98 = Lect Notes Comput Sc Worldwide Computing and Its Applications - Wwca'98 = Lect. Notes. Comput. Sc. Worldwide Transformation of Higher Education = Int Persp Educ Soc Worldwide Transformation of Higher Education = Int. Persp. Educ. Soc. World Wide Web and Databases = Lect Notes Comput Sc World Wide Web and Databases = Lect. Notes. Comput. Sc. World Wide Web-internet and Web Information Systems = World Wide Web World Without Values: Essays On John Mackie's Moral Error Theory = Philos Stud Ser World Without Values: Essays On John Mackie's Moral Error Theory = Philos. Stud. Ser. World Wood = World Wood World Yearbook of Education 2008: Geographies of Knowledge, Geometries of Power = World Yearb Educ World Yearbook of Education 2008: Geographies of Knowledge, Geometries of Power = World Yearb. Educ. World Yearbook of Education = World Yearb Educ World Yearbook of Education = World Yearb. Educ. World Zinc '93 = Australas I Min Met World Zinc '93 = Australas. I. Min. Met. WormBook : the online review of C. elegans biology = WormBook Worship Traditions in Armenia and The Neighboring Christian East = Avant Ser Worship Traditions in Armenia and The Neighboring Christian East = Avant. Ser. Worst-case Execution Time Aware Compilation Techniques for Real-time Systems = Embed Syst Worst-case Execution Time Aware Compilation Techniques for Real-time Systems = Embed. Syst. Wortarten Und Grammatikalisierung: Perspektiven in System Und Erwerb = Linguist-impulse Ten Wortarten Und Grammatikalisierung: Perspektiven in System Und Erwerb = Linguist-impulse. Ten. Wort und Dienst: Jahrbuch der kirchlichen Hochschule Bethel (bei Bielefeld) = W&D Wotug-30: Communicating Process Architectures 2007 = Concur Syst Engn Ser Wotug-30: Communicating Process Architectures 2007 = Concur. Syst. Engn. Ser. Wound repair and regeneration : official publication of the Wound Healing Society [and] the European Tissue Repair Society = Wound Repair Regen Wound Repair and Regeneration = Wound Repair Regen Wound Repair and Regeneration = Wound Repair Regen. Wounds-a Compendium of Clinical Research and Practice = Wounds Wounds-a Compendium of Clinical Research and Practice = Wounds. Woven Textile Structure: Theory and Applications = Woodhead Publ Text Woven Textile Structure: Theory and Applications = Woodhead. Publ. Text. Wpi Studies = Wpi Studies Wpnc'08: 5th Workshop On Positioning, Navigation and Communication 2008, Workshop Proceedings = Hann Beitr Nachricht Wpnc'08: 5th Workshop On Positioning, Navigation and Communication 2008, Workshop Proceedings = Hann. Beitr. Nachricht. WRI issues and ideas = WRI Issues Ideas Writing A National Identity = Fulbright P Writing A National Identity = Fulbright. P. Writing and Cognition: Research and Applications = Stud Writ Writing and Cognition: Research and Applications = Stud. Writ. Writing and Digital Media = Stud Writ Writing and Digital Media = Stud. Writ. Writing and Filming The Painting: Ekphrasis in Literature and Film = Int Forsch Allg Vgl Writing and Filming The Painting: Ekphrasis in Literature and Film = Int. Forsch. Allg. Vgl. Writing and Holiness: The Practice of Authorship in The Early Christian East = Divin Reread Late An Writing and Holiness: The Practice of Authorship in The Early Christian East = Divin. Reread. Late. An. Writing and Motivation = Stud Writ Writing and Motivation = Stud. Writ. Writing and Representation in Medieval Islam: Muslim Horizons = Routl Stud Mid E Lit Writing and Representation in Medieval Islam: Muslim Horizons = Routl. Stud. Mid. E. Lit. Writing and Seeing: Essays On Word and Image = Int For Lit Writing and Seeing: Essays On Word and Image = Int. For. Lit. Writing Architecture Series = Writ Archit Ser Writing Architecture Series = Writ. Archit. Ser. Writing in A Cold Climate: Belarusian Literature From The 1970s to The Present Day = Publ Mod Hum Res Ass Writing in A Cold Climate: Belarusian Literature From The 1970s to The Present Day = Publ. Mod. Hum. Res. Ass. Writing in Context(s): Textual Practices and Learning Processes in Sociocultural Settings = Stud Writ Writing in Context(s): Textual Practices and Learning Processes in Sociocultural Settings = Stud. Writ. Writing of Anxiety: Imagining Wartime in Mid-century British Culture = Lang Discourse Soc Writing of Anxiety: Imagining Wartime in Mid-century British Culture = Lang. Discourse. Soc. Writing Okinawa: Narrative Acts of Identity and Resistance = Asias Transform Writing Okinawa: Narrative Acts of Identity and Resistance = Asias. Transform. Writing: Processes, Tools and Techniques = Educ Compet Glob Wor Writing: Processes, Tools and Techniques = Educ. Compet. Glob. Wor. Writing Race Across The Atlantic World: Medieval to Modern = Signs Race Writing Race Across The Atlantic World: Medieval to Modern = Signs. Race Writings and Speech in Israelite and Ancient Near Eastern Prophecy = Sbl Symp Ser Writings and Speech in Israelite and Ancient Near Eastern Prophecy = Sbl. Symp. Ser. Writing Science = Writing Sci Writing Science = Writing Sci. Writings On European Copyright = Writ Eur Copyr Writings On European Copyright = Writ. Eur. Copyr. Writings On Love in The English Middle Ages = Stud Arthur Court Cu Writings On Love in The English Middle Ages = Stud. Arthur. Court. Cu. Writing Sri Lanka = Rout Res Postcol Lit Writing Sri Lanka = Rout. Res. Postcol. Lit. Writing The Nation-national Historiographies and The Making of Nation States = Writing Nation Writing The Social Text = Comm Soc Or Writing The Social Text = Comm. Soc. Or. Writing Urbanism: A Design Reader = Acsa Archit Educ Ser Writing Urbanism: A Design Reader = Acsa. Archit. Educ. Ser. Written Communication = Writ Commun Written Communication = Writ. Commun. Written Languages of India = Cirb Pub Written Languages of India = Cirb. Pub. Wrocław = Prace Nauk. Inst. Mat. Politech. Wrocław. Ser. Monograf. Wrri Report = Wrri Rep Wrri Report = Wrri Rep. Wse 2008: Tenth Ieee International Symposium On Web Site Evolution, Proceedings = Ieee Intl Sympos Web Wse 2008: Tenth Ieee International Symposium On Web Site Evolution, Proceedings = Ieee Intl. Sympos. Web Wseas: Advances On Applied Computer and Applied Computational Science = Ele Com Eng Wseas: Advances On Applied Computer and Applied Computational Science = Ele. Com. Eng. Wseas: Instrumentation, Measurement, Circuits and Systems = Ele Com Eng Wseas: Instrumentation, Measurement, Circuits and Systems = Ele. Com. Eng. Wseas Mechanical Engineering Series = Wseas Mech Eng Ser Wseas Mechanical Engineering Series = Wseas Mech. Eng. Ser. Wspolczesna Onkologia-contemporary Oncology = Wspolczesna Onkol Wspolczesna Onkologia-contemporary Oncology = Wspolczesna Onkol. Wspotczesna Onkologia-contemporary Oncology = Wspotczesna Onkol Wspotczesna Onkologia-contemporary Oncology = Wspotczesna Onkol. Wto and World Trade: Challenges in A New Era = Contrib Econ Wto and World Trade: Challenges in A New Era = Contrib. Econ. Wto, Developing Countries and The Doha Development Agenda: Prospects and Challenges for Trade-led Growth = Stud Dev Econ Policy Wto, Developing Countries and The Doha Development Agenda: Prospects and Challenges for Trade-led Growth = Stud. Dev. Econ. Policy. Wto/gats and The Global Politics of Higher Education = Stud High Educ Ser Wto/gats and The Global Politics of Higher Education = Stud. High. Educ. Ser. Wts: 2009 Wireless Telecommunications Symposium = Wirel Telecomm Symp Wts: 2009 Wireless Telecommunications Symposium = Wirel. Telecomm. Symp. Wuhan da xue xue bao. Li xue ban = Journal of Wuhan University. Natural science edition|Wuhan Da Xue Xue Bao Li Xue Ban Wuhan University = Wuhan Univ. J. Nat. Sci. Wuhan zhi wu xue yan jiu = Wuhan botanical research|Wuhan Zhi Wu Xue Yan Jiu Wuji Huaxue Xuebao = Wuji Huaxue Xuebao Wulfenia = Wulfenia Wulff Crystal in Ising and Percolation Models = Lect Notes Math Wulff Crystal in Ising and Percolation Models = Lect. Notes. Math. Wuli Huaxue Xuebao = Wuli Huaxue Xuebao Wuli = Wuli Wuli Xuebao = Wuli Xuebao Wunder, Spott Und Prophetie: Naturliche Narrheit in Den Historien Von Claus Narren = Fruhe Neuzeit-stud D Wunder, Spott Und Prophetie: Naturliche Narrheit in Den Historien Von Claus Narren = Fruhe. Neuzeit-stud. D. Würzburger Jahrbücher für die Altertumswissenschaft = WJA Würzburger Jahrbücher für die Altertumswissenschaft = WuerzbJb Wurzburger medizinhistorische Forschungen = Wurzbg Medizinhist Forsch Wurzburger medizinhistorische Mitteilungen / im Auftrage der Wurzburger medizinhistorischen Gesellschaft und in Verbindung mit dem Institut fur Geschichte der Medizin der Universitat Wurzburg = Wurzbg Medizinhist Mitt W. von Soden, Akkadisches Handwörterbuch (Wiesbaden 1965--1981) = AHw Wwai '08: Proceedings of The 2nd International Conference On Waste Management, Water Pollution, Air Pollution, Indoor Climate = Energy Environ Eng S Wwai '08: Proceedings of The 2nd International Conference On Waste Management, Water Pollution, Air Pollution, Indoor Climate = Energy. Environ. Eng. S. Wyoming Agricultural Experiment Station Bulletin = Wyo Aes Bull Wyoming Agricultural Experiment Station Bulletin = Wyo. Aes. Bull. Wyoming Agricultural Experiment Station Research Journal = Wyo Aes Res J Wyoming Agricultural Experiment Station Research Journal = Wyo. Aes. Res. J. Wyoming Agriculture Extension Service Bulletin = Wyo Aexs Bull Wyoming Agriculture Extension Service Bulletin = Wyo. Aexs. Bull. Wyoming nurses' newsletter = Wyo Nurses Newsl Wyoming Nurses Newsletter = Wyo. Nurses Newsl. Wyoming statutes, annotated / prepared under the supervision of the Services Division of the Legislative Service Office by the editorial staff of the publishers ... Wyoming = Wyo Statut Annot Wyo Wythe County historical review / Wythe County Historical Society = Wythe Cty Hist Rev Wyższa Szkoła Pedagogiczna im. Komisji Edukacji Narodowej w Krakowie. Rocznik Naukowo-Dydaktyczny. Prace Matematyczne = Rocznik Nauk.-Dydakt. Prace Mat. Xaloc = Xaloc Xavier Review Occasional Publication = Xavier Rev Occas Pub Xavier Review Occasional Publication = Xavier Rev. Occas. Pub. Xenartros (mammalia: Xenarthra) Del Museo Argentino De Ciencias Naturales Bernardino Rivadavia Y Del Museo De La Plata (argentina) = Contrib Macn Xenartros (mammalia: Xenarthra) Del Museo Argentino De Ciencias Naturales Bernardino Rivadavia Y Del Museo De La Plata (argentina) = Contrib. Macn. Xenia antiqua = XeniaAnt Xenia. Konstanzer althistorische Vorträge und Forschungen = XeniaKonst Xenia. Semestrale di antichità = Xenia Xenobiotica; the fate of foreign compounds in biological systems = Xenobiotica Xenobiotica=Xenobiotica;; Xenobiotica = Xenobiotica Xenobiotics and Food-producing Animals = Acs Sym Ser Xenobiotics and Food-producing Animals = Acs. Sym. Ser. Xenobiotics in The Urban Water Cycle: Mass Flows, Environmental Processes, Mitigation and Treatment Strategies = Environ Pollut Ser Xenobiotics in The Urban Water Cycle: Mass Flows, Environmental Processes, Mitigation and Treatment Strategies = Environ. Pollut. Ser. Xenograft 25 = Int Congr Ser Xenograft 25 = Int. Congr. Ser. Xenotransplantation = Ann Ny Acad Sci Xenotransplantation = Ann. Ny. Acad. Sci. Xeno-transplantation = Curr Top Microbiol Xeno-transplantation = Curr. Top. Microbiol. Xenotransplantation = Xenotransplantation Xerographic Photoreceptors and Organic Photorefractive Materials Iv = P Soc Photo-opt Ins Xerographic Photoreceptors and Organic Photorefractive Materials Iv = P. Soc. Photo-opt. Ins. Xerographic Photoreceptors and Organics Photorefractive Materials Ii = P Soc Photo-opt Ins Xerographic Photoreceptors and Organics Photorefractive Materials Ii = P. Soc. Photo-opt. Ins. Xerographic Photoreceptors and Photorefractive Polymers = P Soc Photo-opt Ins Xerographic Photoreceptors and Photorefractive Polymers = P. Soc. Photo-opt. Ins. Xiamen Daxue Xuebao = Xiamen Daxue Xuebao Ziran Kexue Ban Xiamen da xue xue bao. Zi ran ke xue ban = Journal of Xiamen University. Natural science|Xiamen Da Xue Xue Bao Zi Ran Ke Xue Ban Xianggang Hu Li Za Zhi (Hong Kong Nursing Journal) = Xianggang Hu Li Za Zhi Xianggang hu li za zhi. The Hong Kong nursing journal = Xianggang Hu Li Za Zhi Xianggang Zhong wen da xue xue bao. Chinese University of Hong Kong = J Chin Univ Hong Kong Xi'an Jiaotong Daxue Xuebao = Xi'an Jiaotong Daxue Xuebao Xi Annual Simulators Conference = Simul Series Xi Annual Simulators Conference = Simul. Series. Xi bei zhi wu xue bao = Acta botanica Boreali-Occidentalia Sinica|Xibei Zhiwu Xuebao Xi Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transition Metal Ions = Proc Spie Xi Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transition Metal Ions = Proc. Spie. Xi Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transition Metal Ions = P Soc Photo-opt Ins Xi Feofilov Symposium On Spectroscopy of Crystals Activated By Rare-earth and Transition Metal Ions = P. Soc. Photo-opt. Ins. Xi Hadron Physics = Aip Conf Proc Xi Hadron Physics = Aip. Conf. Proc. Xi Iau Regional Latin American Meeting of Astronomy = Rev Mex Ast Astr Xi Iau Regional Latin American Meeting of Astronomy = Rev. Mex. Ast. Astr. Xii Congress of The International Organization for Septuagint and Cognate Studies Leiden, 2004 = Sbl Sept Co Xii Congress of The International Organization for Septuagint and Cognate Studies Leiden, 2004 = Sbl. Sept. Co. Xii Iau Regional Latin American Meeting = Rev Mex Ast Astr Xii Iau Regional Latin American Meeting = Rev. Mex. Ast. Astr. Xiii European Annual Conference On Human Decision Making and Manual Control = Vtt Symp Xiii European Annual Conference On Human Decision Making and Manual Control = Vtt. Symp. Xiii International Conference On Calorimetry in High Energy Physics = J Phys Conf Ser Xiii International Conference On Calorimetry in High Energy Physics = J. Phys. Conf. Ser. Xiii International Seminar On Physics and Chemistry of Solids = J Phys Conf Ser Xiii International Seminar On Physics and Chemistry of Solids = J. Phys. Conf. Ser. Xiii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = Proc Spie Xiii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = Proc. Spie. Xiii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P Soc Photo-opt Ins Xiii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P. Soc. Photo-opt. Ins. Xii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = Proc Spie Xii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = Proc. Spie. Xii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P Soc Photo-opt Ins Xii International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P. Soc. Photo-opt. Ins. Xiiith International Symposium On Horticultural Economics = Acta Hortic Xiiith International Symposium On Horticultural Economics = Acta. Hortic. Xi International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P Soc Photo-opt Ins Xi International Symposium On Gas Flow and Chemical Lasers and High-power Laser Conference = P. Soc. Photo-opt. Ins. Xi nan nong ye xue bao = Southwest China journal of agricultural sciences|Xi Nan Nong Ye Xue Bao Xinan Shifan Daxue Xuebao = Xinan Shifan Daxue Xuebao Ziran Kexue Ban Xinjiang Conflict: Uyghur Identity, Language Policy, and Political Discourse = Pol Stud Xinjiang Conflict: Uyghur Identity, Language Policy, and Political Discourse = Pol. Stud. Xinjiang University = J. Xinjiang Univ. Natur. Sci. Xin Jie-liu Centenary: Progress in Chinese Acarology = Zoosymposia Xin Jie-liu Centenary: Progress in Chinese Acarology = Zoosymposia. Xi Psi Phi Quarterly = Xi Psi Phi Q. Xiv Conference On Liquid Crystals: Chemistry, Physics, and Applications = Proc Spie Xiv Conference On Liquid Crystals: Chemistry, Physics, and Applications = Proc. Spie. Xiv Conference On Liquid Crystals: Chemistry, Physics, and Applications = P Soc Photo-opt Ins Xiv Conference On Liquid Crystals: Chemistry, Physics, and Applications = P. Soc. Photo-opt. Ins. Xiv International Conference On Calorimetry in High Energy Physics (calor 2010) = J Phys Conf Ser Xiv International Conference On Calorimetry in High Energy Physics (calor 2010) = J. Phys. Conf. Ser. Xiv International Conference On Small-angle Scattering (sas09) = J Phys Conf Ser Xiv International Conference On Small-angle Scattering (sas09) = J. Phys. Conf. Ser. Xiv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P Soc Photo-opt Ins Xiv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P. Soc. Photo-opt. Ins. X Media Publishing = X Media Publ X Media Publishing = X Media Publ. Xml-based Data Management and Multimedia Engineering-edbt 2002 Workshops = Lect Notes Comput Sc Xml-based Data Management and Multimedia Engineering-edbt 2002 Workshops = Lect. Notes. Comput. Sc. X-ray Absorption Fine Structure-xafs13 = Aip Conf Proc X-ray Absorption Fine Structure-xafs13 = Aip. Conf. Proc. X-ray and Euv/fuv Spectroscopy and Polarimetry = P Soc Photo-opt Ins X-ray and Euv/fuv Spectroscopy and Polarimetry = P. Soc. Photo-opt. Ins. X-ray and Extreme Ultraviolet Optics = P Soc Photo-opt Ins X-ray and Extreme Ultraviolet Optics = P. Soc. Photo-opt. Ins. X-ray and Gamma-ray Astronomy = Adv Space Res-series X-ray and Gamma-ray Astronomy = Adv. Space. Res-series. X-ray and Gamma-ray Detectors and Applications Iv = P Soc Photo-opt Ins X-ray and Gamma-ray Detectors and Applications Iv = P. Soc. Photo-opt. Ins. X-ray and Gamma-ray Instrumentation for Astronomy Xiii = Proc Spie X-ray and Gamma-ray Instrumentation for Astronomy Xiii = Proc. Spie. X-ray and Gamma-ray Instrumentation for Astronomy Xiii = P Soc Photo-opt Ins X-ray and Gamma-ray Instrumentation for Astronomy Xiii = P. Soc. Photo-opt. Ins. X-ray and Gamma-ray Instrumentation for Astronomy Xii = P Soc Photo-opt Ins X-ray and Gamma-ray Instrumentation for Astronomy Xii = P. Soc. Photo-opt. Ins. X-ray and Gamma-ray Instrumentation for Astronomy Xi = P Soc Photo-opt Ins X-ray and Gamma-ray Instrumentation for Astronomy Xi = P. Soc. Photo-opt. Ins. X-ray and Gamma-ray Signatures of Black Holes and Weakly Magnetized Neutron Stars = Adv Space Res X-ray and Gamma-ray Signatures of Black Holes and Weakly Magnetized Neutron Stars = Adv. Space. Res. X-ray and Gamma-ray Signatures of Black Holes and Weakly Magnetized Neutron Stars = Adv Space Res-series X-ray and Gamma-ray Signatures of Black Holes and Weakly Magnetized Neutron Stars = Adv. Space. Res-series. X-ray and Gamma-ray Telescopes and Instruments for Astronomy, Pts 1 and 2 = Proc Spie X-ray and Gamma-ray Telescopes and Instruments for Astronomy, Pts 1 and 2 = Proc. Spie. X-ray and Gamma-ray Telescopes and Instruments for Astronomy, Pts 1 and 2 = P Soc Photo-opt Ins X-ray and Gamma-ray Telescopes and Instruments for Astronomy, Pts 1 and 2 = P. Soc. Photo-opt. Ins. X-ray and Inner-shell Processes - 17th International Conference = Aip Conf Proc X-ray and Inner-shell Processes - 17th International Conference = Aip. Conf. Proc. X-ray and Inner-shell Processes = Aip Conf Proc X-ray and Inner-shell Processes = Aip. Conf. Proc. X-ray and Neutron Capillary Optics Ii = P Soc Photo-opt Ins X-ray and Neutron Capillary Optics Ii = P. Soc. Photo-opt. Ins. X-ray and Neutron Dynamical Diffraction = Nato Adv Sci I B-phy X-ray and Neutron Dynamical Diffraction = Nato. Adv. Sci. I. B-phy. X-ray and Neutron Reflectivity: Principles and Applications = Lect Notes Phys X-ray and Neutron Reflectivity: Principles and Applications = Lect. Notes. Phys. X-ray and Related Techniques = Adv Mater Res-switz X-ray and Related Techniques = Adv. Mater. Res-switz. X-ray and Ultraviolet Polarimetry = P Soc Photo-opt Ins X-ray and Ultraviolet Polarimetry = P. Soc. Photo-opt. Ins. X-ray and Ultraviolet Sensors and Applications = P Soc Photo-opt Ins X-ray and Ultraviolet Sensors and Applications = P. Soc. Photo-opt. Ins. X-ray and Ultraviolet Spectroscopy and Polarimetry Ii = P Soc Photo-opt Ins X-ray and Ultraviolet Spectroscopy and Polarimetry Ii = P. Soc. Photo-opt. Ins. X-ray and Ultraviolet Spectroscopy and Polarimetry = P Soc Photo-opt Ins X-ray and Ultraviolet Spectroscopy and Polarimetry = P. Soc. Photo-opt. Ins. X-ray and Uv Detectors = P Soc Photo-opt Ins X-ray and Uv Detectors = P. Soc. Photo-opt. Ins. X-ray Astronomy 2000 = Astr Soc P X-ray Astronomy 2000 = Astr. Soc. P. X-ray Astronomy-2009: Present Status, Multi-wavelength Approach and Future Perspectives, Proceedings = Aip Conf Proc X-ray Astronomy-2009: Present Status, Multi-wavelength Approach and Future Perspectives, Proceedings = Aip. Conf. Proc. X-ray Astronomy = Aip Conf Proc X-ray Astronomy = Aip. Conf. Proc. X-ray Binaries and Recycled Pulsars = Nato Adv Sci I C-mat X-ray Binaries and Recycled Pulsars = Nato. Adv. Sci. I. C-mat. X-ray Detector Physics and Applications Ii = P Soc Photo-opt Ins X-ray Detector Physics and Applications Ii = P. Soc. Photo-opt. Ins. X-ray Detector Physics and Applications = P Soc Photo-opt Ins X-ray Detector Physics and Applications = P. Soc. Photo-opt. Ins. X-ray Diagnostics of Astrophysical Plasmas: Theory, Experiment, and Observation = Aip Conf Proc X-ray Diagnostics of Astrophysical Plasmas: Theory, Experiment, and Observation = Aip. Conf. Proc. X-ray Diffuse Scattering From Self-organized Messcopic Semiconductor Structures = Springer Tr Mod Phys X-ray Diffuse Scattering From Self-organized Messcopic Semiconductor Structures = Springer. Tr. Mod. Phys. X-ray/euv Optics for Astronomy and Microscopy = P Soc Photo-opt Ins X-ray/euv Optics for Astronomy and Microscopy = P. Soc. Photo-opt. Ins. X-ray/euv Optics for Astronomy, Microscopy, Polarimetry, and Projection Lithography = P Soc Photo-opt Ins X-ray/euv Optics for Astronomy, Microscopy, Polarimetry, and Projection Lithography = P. Soc. Photo-opt. Ins. X-ray Fel Optics and Instrumentation = P Soc Photo-opt Ins X-ray Fel Optics and Instrumentation = P. Soc. Photo-opt. Ins. X-ray Instrumentation in Medicine and Biology, Plasma Physics, Astrophysics, and Synchrotron Radiation = P Soc Photo-opt Ins X-ray Instrumentation in Medicine and Biology, Plasma Physics, Astrophysics, and Synchrotron Radiation = P. Soc. Photo-opt. Ins. X-ray Investigations of Polymer Structures Ii = P Soc Photo-opt Ins X-ray Investigations of Polymer Structures Ii = P. Soc. Photo-opt. Ins. X-ray Investigations of Polymer Structures = P Soc Photo-opt Ins X-ray Investigations of Polymer Structures = P. Soc. Photo-opt. Ins. X-ray Lasers 1990 = Inst Phys Conf Ser X-ray Lasers 1990 = Inst. Phys. Conf. Ser. X-ray Lasers 1992 = Inst Phys Conf Ser X-ray Lasers 1992 = Inst. Phys. Conf. Ser. X-ray Lasers 1994 - Fourth International Colloquium = Aip Conf Proc X-ray Lasers 1994 - Fourth International Colloquium = Aip. Conf. Proc. X-ray Lasers 1996 = Inst Phys Conf Ser X-ray Lasers 1996 = Inst. Phys. Conf. Ser. X-ray Lasers 1998 = Inst Phys Conf Ser X-ray Lasers 1998 = Inst. Phys. Conf. Ser. X-ray Lasers 2002 = Aip Conf Proc X-ray Lasers 2002 = Aip. Conf. Proc. X-ray Lasers 2006, Proceedings = Springer Proc Phys X-ray Lasers 2006, Proceedings = Springer. Proc. Phys. X-ray Lasers 2008, Proceedings = Springer Proc Phys X-ray Lasers 2008, Proceedings = Springer. Proc. Phys. X-ray Micro- and Nano-focusing: Applications and Techniques Ii = Proc Spie X-ray Micro- and Nano-focusing: Applications and Techniques Ii = Proc. Spie. X-ray Micro- and Nano-focusing: Applications and Techniques Ii = P Soc Photo-opt Ins X-ray Micro- and Nano-focusing: Applications and Techniques Ii = P. Soc. Photo-opt. Ins. X-ray Microbeam Technology and Applications = P Soc Photo-opt Ins X-ray Microbeam Technology and Applications = P. Soc. Photo-opt. Ins. X-ray Microfocusing: Applications and Techniques = P Soc Photo-opt Ins X-ray Microfocusing: Applications and Techniques = P. Soc. Photo-opt. Ins. X-ray Microscopy, Proceedings = Aip Conf Proc X-ray Microscopy, Proceedings = Aip. Conf. Proc. X-ray Mirrors, Crystals, and Multilayers Ii = Proc Spie X-ray Mirrors, Crystals, and Multilayers Ii = Proc. Spie. X-ray Mirrors, Crystals, and Multilayers Ii = P Soc Photo-opt Ins X-ray Mirrors, Crystals, and Multilayers Ii = P. Soc. Photo-opt. Ins. X-ray Mirrors, Crystals and Multilayers = P Soc Photo-opt Ins X-ray Mirrors, Crystals and Multilayers = P. Soc. Photo-opt. Ins. X-ray Optics and Microanalysis 1992 = Inst Phys Conf Ser X-ray Optics and Microanalysis 1992 = Inst. Phys. Conf. Ser. X-ray Optics and Microanalysis, Proceedings = Aip Conf Proc X-ray Optics and Microanalysis, Proceedings = Aip. Conf. Proc. X-ray Optics Design, Performance, and Applications = P Soc Photo-opt Ins X-ray Optics Design, Performance, and Applications = P. Soc. Photo-opt. Ins. X-ray Optics for Astronomy: Telescopes, Multilayers, Spectrometers, and Missions = Proc Spie X-ray Optics for Astronomy: Telescopes, Multilayers, Spectrometers, and Missions = Proc. Spie. X-ray Optics for Astronomy: Telescopes, Multilayers, Spectrometers, and Missions = P Soc Photo-opt Ins X-ray Optics for Astronomy: Telescopes, Multilayers, Spectrometers, and Missions = P. Soc. Photo-opt. Ins. X-ray Optics, Instruments, and Missions Iii = P Soc Photo-opt Ins X-ray Optics, Instruments, and Missions Iii = P. Soc. Photo-opt. Ins. X-ray Optics, Instruments, and Missions Ii = Proc Spie X-ray Optics, Instruments, and Missions Ii = Proc. Spie. X-ray Optics, Instruments, and Missions Ii = P Soc Photo-opt Ins X-ray Optics, Instruments, and Missions Ii = P. Soc. Photo-opt. Ins. X-ray Optics, Instruments, and Missions Iv = P Soc Photo-opt Ins X-ray Optics, Instruments, and Missions Iv = P. Soc. Photo-opt. Ins. X-ray Optics, Instruments, and Missions = P Soc Photo-opt Ins X-ray Optics, Instruments, and Missions = P. Soc. Photo-opt. Ins. X-ray Scattering From Soft-matter Thin Films = Springer Tracts Mod X-ray Scattering From Soft-matter Thin Films = Springer. Tracts. Mod. X-ray Scattering From Soft-matter Thin Films = Springer Tr Mod Phys X-ray Scattering From Soft-matter Thin Films = Springer. Tr. Mod. Phys. X Rays in Materials Analysis Ii : Novel Applications and Recent Developments = P Soc Photo-opt Ins X Rays in Materials Analysis Ii : Novel Applications and Recent Developments = P. Soc. Photo-opt. Ins. X-ray Sources and Optics = P Soc Photo-opt Ins X-ray Sources and Optics = P. Soc. Photo-opt. Ins. X-ray Spectrometry = X-ray Spectrom X-ray Spectrometry = X-ray Spectrom. X-Ray Spectrometry = X-Ray Spectrom. X-ray Spectroscopy in Astrophysics = Lect Notes Phys X-ray Spectroscopy in Astrophysics = Lect. Notes. Phys. X-Ray Structure Analysis Online = X-Ray Struct. Anal. Online X-ray Timing 2003: Rossi and Beyond = Aip Conf Proc X-ray Timing 2003: Rossi and Beyond = Aip. Conf. Proc. X-ray Timing and Cosmic Gamma Ray Bursts = Adv Space Res X-ray Timing and Cosmic Gamma Ray Bursts = Adv. Space. Res. X-ray Timing and Cosmic Gamma Ray Bursts = Adv Space Res-series X-ray Timing and Cosmic Gamma Ray Bursts = Adv. Space. Res-series. Xu mu shou yi xue bao = Acta veterinaria et zootechnica Sinica / [Zhongguo xu mu shou yi xue hui]|Xu Mu Shou Yi Xue Bao Xv Conference On Liquid Crystals = P Soc Photo-opt Ins Xv Conference On Liquid Crystals = P. Soc. Photo-opt. Ins. Xviii International Fall Workshop On Geometry and Physics = Aip Conf Proc Xviii International Fall Workshop On Geometry and Physics = Aip. Conf. Proc. Xviii International Mineral Processing Congress, Vol 1 = Australas I Min Met Xviii International Mineral Processing Congress, Vol 1 = Australas. I. Min. Met. Xviii International Mineral Processing Congress, Vol 2 = Australas I Min Met Xviii International Mineral Processing Congress, Vol 2 = Australas. I. Min. Met. Xviii International Mineral Processing Congress, Vol 3 = Australas I Min Met Xviii International Mineral Processing Congress, Vol 3 = Australas. I. Min. Met. Xviii International Mineral Processing Congress, Vol 4 = Australas I Min Met Xviii International Mineral Processing Congress, Vol 4 = Australas. I. Min. Met. Xviii International Mineral Processing Congress, Vol 5 = Australas I Min Met Xviii International Mineral Processing Congress, Vol 5 = Australas. I. Min. Met. Xviii International School On Nuclear Physics, Neutron Physics and Applications = J Phys Conf Ser Xviii International School On Nuclear Physics, Neutron Physics and Applications = J. Phys. Conf. Ser. Xviii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = Proc Spie Xviii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = Proc. Spie. Xviii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P Soc Photo-opt Ins Xviii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P. Soc. Photo-opt. Ins. Xvii International Materials Research Congress = Adv Mat Res Xvii International Materials Research Congress = Adv. Mat. Res. Xvii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = Proc Spie Xvii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = Proc. Spie. Xvii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P Soc Photo-opt Ins Xvii International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers = P. Soc. Photo-opt. Ins. Xvi International Conference On Electromagnetic Disturbances : Emd 2006 - Proceedings = Int Conf Electromag Xvi International Conference On Electromagnetic Disturbances : Emd 2006 - Proceedings = Int. Conf. Electromag. Xvi International Conference On Spectroscopy of Molecules and Crystals = Proc Spie Xvi International Conference On Spectroscopy of Molecules and Crystals = Proc. Spie. Xvi International Conference On Spectroscopy of Molecules and Crystals = P Soc Photo-opt Ins Xvi International Conference On Spectroscopy of Molecules and Crystals = P. Soc. Photo-opt. Ins. Xvi International Symposium On Discharges and Electrical Insulation in Vacuum = P Soc Photo-opt Ins Xvi International Symposium On Discharges and Electrical Insulation in Vacuum = P. Soc. Photo-opt. Ins. Xvi International Symposium On Electron Molecule Collisions and Swarms = J Phys Conf Ser Xvi International Symposium On Electron Molecule Collisions and Swarms = J. Phys. Conf. Ser. Xvi International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers, Pts 1 and 2 = Proc Spie Xvi International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers, Pts 1 and 2 = Proc. Spie. Xvi International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers, Pts 1 and 2 = P Soc Photo-opt Ins Xvi International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers, Pts 1 and 2 = P. Soc. Photo-opt. Ins. Xv International Symposium On Advanced Display Technologies = Proc Spie Xv International Symposium On Advanced Display Technologies = Proc. Spie. Xv International Symposium On Advanced Display Technologies = P Soc Photo-opt Ins Xv International Symposium On Advanced Display Technologies = P. Soc. Photo-opt. Ins. Xv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers Pt 1 and 2 = Proc Spie Xv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers Pt 1 and 2 = Proc. Spie. Xv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers Pt 1 and 2 = P Soc Photo-opt Ins Xv International Symposium On Gas Flow, Chemical Lasers, and High-power Lasers Pt 1 and 2 = P. Soc. Photo-opt. Ins. Xv International Workshop On Low Energy Positron and Positronium Physics = J Phys Conf Ser Xv International Workshop On Low Energy Positron and Positronium Physics = J. Phys. Conf. Ser. Xvith International Symposium On Fruit Tree Virus Diseases = Acta Hortic Xvith International Symposium On Fruit Tree Virus Diseases = Acta. Hortic. Xvth Iap Meeting Dynamics of Galaxies: From The Early Universe to The Present = Astr Soc P Xvth Iap Meeting Dynamics of Galaxies: From The Early Universe to The Present = Astr. Soc. P. Xvth International Congress On Rheology - The Society of Rheology 80th Annual Meeting, Pts 1 and 2 = Aip Conf Proc Xvth International Congress On Rheology - The Society of Rheology 80th Annual Meeting, Pts 1 and 2 = Aip. Conf. Proc. Xxiii Conference On Neutrino Physics and Astrophysics = J Phys Conf Ser Xxiii Conference On Neutrino Physics and Astrophysics = J. Phys. Conf. Ser. Xxii International Conference On Raman Spectroscopy = Aip Conf Proc Xxii International Conference On Raman Spectroscopy = Aip. Conf. Proc. Xxix Workshop On Geometric Methods in Physics = Aip Conf Proc Xxix Workshop On Geometric Methods in Physics = Aip. Conf. Proc. Xxvi International Conference On Photonic, Electronic and Atomic Collisions = J Phys Conf Ser Xxvi International Conference On Photonic, Electronic and Atomic Collisions = J. Phys. Conf. Ser. Xxv International Conference On Photonic, Electronic and Atomic Collisions = J Phys Conf Ser Xxv International Conference On Photonic, Electronic and Atomic Collisions = J. Phys. Conf. Ser. Xxv International Horticultural Congress, Proceedings - Pt 5 = Acta Hortic Xxv International Horticultural Congress, Proceedings - Pt 5 = Acta. Hortic. Xxv International Horticultural Congress, Proceedings - Pt 6 = Acta Hortic Xxv International Horticultural Congress, Proceedings - Pt 6 = Acta. Hortic. Xxvi Workshop On Geometrical Methods in Physics = Aip Conf Proc Xxvi Workshop On Geometrical Methods in Physics = Aip. Conf. Proc. Xxv Physics in Collision, Proceedings = Aip Conf Proc Xxv Physics in Collision, Proceedings = Aip. Conf. Proc. Xxxii Brazilian Workshop On Nuclear Physics = Aip Conf Proc Xxxii Brazilian Workshop On Nuclear Physics = Aip. Conf. Proc. Xxxiii Symposium On Nuclear Physics = J Phys Conf Ser Xxxiii Symposium On Nuclear Physics = J. Phys. Conf. Ser. Xxxii Polish Seminar On Nuclear Magnetic Resonance and Its Applications, Proceedings = Molecul Phys Rep Xxxii Polish Seminar On Nuclear Magnetic Resonance and Its Applications, Proceedings = Molecul. Phys. Rep. Xylans and Xylanases = Progr Biotechnol Xylans and Xylanases = Progr. Biotechnol. Yadernaya Fizika = Yad. Fiz. Yad Vashem studies = Yad Vashem Stud Eur Jew Catastrophe Resist Yakhak Hoechi = Yakhak Hoechi Yakhteh = Yakhteh Yakubutsu, Seishin, Kodo (Japanese Journal of Psychopharmacology) = Yakubutsu Seishin Kodo [Yakugaku kenkyu] Japanese journal of pharmacy and chemistry = Yakugaku Kenkyu Yakugaku zasshi : Journal of the Pharmaceutical Society of Japan = Yakugaku Zasshi Yakugaku Zasshi-journal of The Pharmaceutical Society of Japan = Yakugaku Zasshi Yakugaku Zasshi-journal of The Pharmaceutical Society of Japan = Yakugaku Zasshi. Yakugaku Zasshi (Journal of the Pharmaceutical Society of Japan) = Yakugaku Zasshi Yakugaku Zasshi. Journal of The Pharmaceutical Society Of Japan=Yakugaku Zasshi;; Yakugaku Zasshi = Yakugaku Zasshi Yakugaku Zasshi = Yakuga Zasshi Yakugaku Zasshi = Yakuga. Zasshi Yakuri to Chiryo = Yakuri to Chiryo Yakushigaku zasshi. The Journal of Japanese history of pharmacy = Yakushigaku Zasshi Yale Classical Studies = YaleClSt Yale Classical Studies = YCIS Yale Economic Essays=Yale Econ. Essays Yale Economic Essays = Yale Econ Essays Yale Economic Essays = Yale Econ. Essays Yale French Studies = Yale Fr Stud Yale French Studies = Yale Fr. Stud. Yale Italian Studies = Yale Ital Stud Yale Italian Studies = Yale Ital. Stud. Yale Journal of Biology and Medicine=Yale J Biol Med;; Yale Journal of Biology and Medicine = Yale J Biol Med Yale Journal of Biology and Medicine = Yale J. Biol. Med. Yale Journal of Criticism = Yale J Crit Yale Journal of Criticism = Yale J. Crit. Yale journal of health policy, law, and ethics = Yale J Health Policy Law Ethics Yale Journal of Health Policy, Law, and Ethics = Yale J. Health Policy Law Ethics Yale journal of law and feminism = Yale J Law Fem Yale journal on regulation = Yale J Regul Yale Journal on Regulation=Yale J. Regul. Yale Law Journal=Yale Law J. Yale Law Journal = Yale Law J Yale Law Journal = Yale Law J. Yale law & policy review = Yale Law Policy Rev Yale Review = Yale Rev Yale Review = Yale Rev. Yale Studies in Sacred Music = Yale Stud Sac Music Yale Studies in Sacred Music = Yale Stud. Sac. Music Yale Theatre = Yale Theatre Yale University Art Gallery Bulletin = YaleUnivB Yale University Library Gazette = Yale Univ Libr Gaz Yale University Library Gazette = Yale Univ. Libr. Gaz. Yale University Library Gazette = YLG Yalkut moreshet = Yalkut Moreshet Yamada Conference Lx On Research in High Magnetic Fields = J Phys Conf Ser Yamada Conference Lx On Research in High Magnetic Fields = J. Phys. Conf. Ser. [Yan jiu bao gao] Science reports of the National Taiwan University. Guo li Taiwan da xue. Xin li xue xi = Yan Jiu Bao Gao Yan Ke Xue Bao (Eye Science) = Yan Ke Xue Bao Yao Hsueh Hsueh Pao [Acta Pharmaceutica Sinica]=Yao Hsueh Hsueh Pao;; Yaowu Fenxi Zazhi = Yaowu Fenxi Zazhi Yao Xue Xue Bao (Acta Pharmaceutica Sinica) = Yao Xue Xue Bao Yaoxue Xuebao = Yaoxue Xuebao Yapi Kredi Economic Review=Yapi Kredi Econ. Rev. Yatros = Yatros Ycf Series = Ycf Ser Ycf Series = Ycf Ser. Y (Dayton, Ohio) = Y Yearbook 1998 = Conf Lat Amer Geogr Yearbook 1998 = Conf. Lat. Amer. Geogr. Year book - American Philosophical Society = Yearb Am Philos Soc Yearbook (Conference of Latin Americanist Geographers) = Yearb Conf Lat Am Geogr Yearbook for Traditional Music = Yearb Tradit Music Yearbook for Traditional Music = Yearb. Tradit. Music Yearbook of English Studies = Yearb Engl Stud Yearbook of English Studies = Yearb. Engl. Stud. Yearbook of European Studies = Yearb Eur S Yearbook of European Studies = Yearb. Eur. S. Yearbook of German-American studies = Yearb Ger Am Stud Yearbook of Intensive Care and Emergency Medicine 2009 = Yearb Intensive Care Yearbook of Intensive Care and Emergency Medicine 2009 = Yearb. Intensive Care Yearbook of Intensive Care and Emergency Medicine = Yearb Intensive Care Yearbook of Intensive Care and Emergency Medicine = Yearb. Intensive Care Yearbook of Langland Studies, Vol 11 1997 = Yearb Langl Yearbook of Langland Studies, Vol 11 1997 = Yearb. Langl. Yearbook of Langland Studies, Vol 19 = Yearb Langl Yearbook of Langland Studies, Vol 19 = Yearb. Langl. Yearbook of Langland Studies = Yearb Langl Yearbook of Langland Studies = Yearb. Langl. Yearbook of Morphology 2002 = Yearb Morphol Yearbook of Morphology 2002 = Yearb. Morphol. Yearbook of Morphology 2003 = Yearb Morphol Yearbook of Morphology 2003 = Yearb. Morphol. Yearbook of Morphology 2004 = Yearb Morphol Yearbook of Morphology 2004 = Yearb. Morphol. Yearbook of Morphology 2004 = Yearbook Morphology Yearbook of Morphology 2005 = Yearb Morphol Yearbook of Morphology 2005 = Yearb. Morphol. Yearbook of Morphology = Yearb Morphol Yearbook of Morphology = Yearb. Morphol. Yearbook of Morphology = Yearbook Morphology Yearbook of Nanotechnology in Society, Vol I: Presenting Futures = Yearb Nanotechnol So Yearbook of Nanotechnology in Society, Vol I: Presenting Futures = Yearb. Nanotechnol. So. Yearbook of Nanotechnology in Society = Yearb Nanotechnol So Yearbook of Nanotechnology in Society = Yearb. Nanotechnol. So. Yearbook of Physical Anthropology, 1995 = Yearb Phys Anthropol Yearbook of Physical Anthropology, 1995 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology 1999, Vol 42 = Yearb Phys Anthropol Yearbook of Physical Anthropology 1999, Vol 42 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 36 1993 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 36 1993 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 40 - 1997 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 40 - 1997 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 41 - 1998 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 41 - 1998 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 43 2000 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 43 2000 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 44 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 44 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 45 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 45 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology: Vol 46 = Yearb Phys Anthropol Yearbook of Physical Anthropology: Vol 46 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 47 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 47 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 48 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 48 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol. 49 2006 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol. 49 2006 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 50 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 50 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 51 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 51 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 52 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 52 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Vol 53 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Vol 53 = Yearb. Phys. Anthropol. Yearbook of Physical Anthropology, Yearbook Series Vol 39 = Yearb Phys Anthropol Yearbook of Physical Anthropology, Yearbook Series Vol 39 = Yearb. Phys. Anthropol. Yearbook of physical anthropology = Yearb Phys Anthropol Yearbook of Physical Anthropology = Yearb Phys Anthropol Yearbook of Physical Anthropology = Yearb. Phys. Anthropol. Yearbook of Private International Law, Vol Ix = Yearb Priv Int Law Yearbook of Private International Law, Vol Ix = Yearb. Priv. Int. Law. Yearbook of Private International Law, Vol Vi (2004) = Yearb Priv Int Law Yearbook of Private International Law, Vol Vi (2004) = Yearb. Priv. Int. Law. Yearbook of Private International Law, Vol Vii (2005) = Yearb Priv Int Law Yearbook of Private International Law, Vol Vii (2005) = Yearb. Priv. Int. Law. Yearbook of Private International Law, Vol Viii (2006) = Yearb Priv Int Law Yearbook of Private International Law, Vol Viii (2006) = Yearb. Priv. Int. Law. Yearbook of Private International Law, Vol V = Yearb Priv Int Law Yearbook of Private International Law, Vol V = Yearb. Priv. Int. Law. Yearbook of Private International Law, Vol X (2008) = Yearb Priv Int Law Yearbook of Private International Law, Vol X (2008) = Yearb. Priv. Int. Law. Yearbook of Private International Law = Yearb Priv Int Law Yearbook of Private International Law = Yearb. Priv. Int. Law Yearbook of South Asian Languages and Linguistics (2003) = Yearb S Asian Lang L Yearbook of South Asian Languages and Linguistics (2003) = Yearb. S. Asian Lang. L. Yearbook of South Asian Languages and Linguistics (2004) = Yearb S Asian Lang L Yearbook of South Asian Languages and Linguistics (2004) = Yearb. S. Asian Lang. L. Yearbook of South Asian Languages and Linguistics (2005) = Yearb S Asian Lang L Yearbook of South Asian Languages and Linguistics (2005) = Yearb. S. Asian Lang. L. Yearbook of South Asian Languages and Linguistics (2006) = Yearb S Asian Lang L Yearbook of South Asian Languages and Linguistics (2006) = Yearb. S. Asian Lang. L. Yearbook of South Asian Languages and Linguistics = Yearb S Asian Lang L Yearbook of South Asian Languages and Linguistics = Yearb. S. Asian Lang. L. Yearbook of The Alamire Foundation = Yb Alamire Fdn Yearbook of The Alamire Foundation = Yb. Alamire Fdn. Yearbook of The American Reading Forum = Yearb Amer Read For Yearbook of The American Reading Forum = Yearb. Amer. Read. For. Yearbook of the Estonian Naturalist Society = Yearb. Eston. Nat. Soc. Yearbook of The European Association for Education Law and Policy = Yearb Eur Asso Edu Yearbook of The European Association for Education Law and Policy = Yearb. Eur. Asso. Edu. Yearbook of The European College for The Study of Consciousness 1996 = Eur Col Bewusst Yearbook of The European College for The Study of Consciousness 1996 = Eur. Col. Bewusst. Yearbook of The European Society of Women in Theological Research = Yearb Eur Soc Wom Th Yearbook of The European Society of Women in Theological Research = Yearb. Eur. Soc. Wom. Th. Yearbook of The National Society for The Study of Education = Yearb Natl Soc Stud Yearbook of The National Society for The Study of Education = Yearb. Natl. Soc. Stud. Yearbook On Space Policy 2006/2007: New Impetus for Europe = Yearb Space Policy Yearbook On Space Policy 2006/2007: New Impetus for Europe = Yearb. Space Policy Yearbook On Space Policy 2007/2008: From Policies to Programmes = Stud Space Policy Yearbook On Space Policy 2007/2008: From Policies to Programmes = Stud. Space Policy Yearbook On Space Policy = Yearb Space Policy Yearbook On Space Policy = Yearb. Space Policy Year book = Year B Leo Baeck Inst Year in Cognitive Neuroscience 2008 = Ann Ny Acad Sci Year in Cognitive Neuroscience 2008 = Ann. Ny. Acad. Sci. Year in Cognitive Neuroscience 2009 = Ann Ny Acad Sci Year in Cognitive Neuroscience 2009 = Ann. Ny. Acad. Sci. Year in Cognitive Neuroscience 2010 = Ann Ny Acad Sci Year in Cognitive Neuroscience 2010 = Ann. Ny. Acad. Sci. Year in Cognitive Neuroscience = Ann Ny Acad Sci Year in Cognitive Neuroscience = Ann. Ny. Acad. Sci. Year in Diabetes and Obesity = Ann Ny Acad Sci Year in Diabetes and Obesity = Ann. Ny. Acad. Sci. Year in Ecology and Conservation Biology 2008 = Ann Ny Acad Sci Year in Ecology and Conservation Biology 2008 = Ann. Ny. Acad. Sci. Year in Ecology and Conservation Biology 2009 = Ann Ny Acad Sci Year in Ecology and Conservation Biology 2009 = Ann. Ny. Acad. Sci. Year in Ecology and Conservation Biology 2010 = Ann Ny Acad Sci Year in Ecology and Conservation Biology 2010 = Ann. Ny. Acad. Sci. Year in Evolutionary Biology 2008 = Ann Ny Acad Sci Year in Evolutionary Biology 2008 = Ann. Ny. Acad. Sci. Year in Evolutionary Biology 2009 = Ann Ny Acad Sci Year in Evolutionary Biology 2009 = Ann. Ny. Acad. Sci. Year in Evolutionary Biology = Ann Ny Acad Sci Year in Evolutionary Biology = Ann. Ny. Acad. Sci. Year in Human and Medical Genetics 2009 = Ann Ny Acad Sci Year in Human and Medical Genetics 2009 = Ann. Ny. Acad. Sci. Year in Human and Medical Genetics: New Trends in Mendelian Genetics = Ann Ny Acad Sci Year in Human and Medical Genetics: New Trends in Mendelian Genetics = Ann. Ny. Acad. Sci. Year in Immunology 2008 = Ann Ny Acad Sci Year in Immunology 2008 = Ann. Ny. Acad. Sci. Year in Immunology 2 = Ann Ny Acad Sci Year in Immunology 2 = Ann. Ny. Acad. Sci. Year in Immunology = Ann Ny Acad Sci Year in Immunology = Ann. Ny. Acad. Sci. Year in Immunology = Year Immun Year in Immunology = Year Immun. Year in Immunology = Year Immunol. Year in Neurology 2008 = Ann Ny Acad Sci Year in Neurology 2008 = Ann. Ny. Acad. Sci. Year in Neurology 2 = Ann Ny Acad Sci Year in Neurology 2 = Ann. Ny. Acad. Sci. Yearning for Form and Other Essays On Hermann Cohens Thought = Stud Ger Idealism Yearning for Form and Other Essays On Hermann Cohens Thought = Stud. Ger. Idealism. Years of High Econometrics = Routl Stud Hist Econ Years of High Econometrics = Routl. Stud. Hist. Econ. Yeast (Chichester, England) = Yeast Yeast Functional Genomics and Proteomics: Methods and Protocols = Methods Mol Biol Yeast Functional Genomics and Proteomics: Methods and Protocols = Methods Mol. Biol. Yeast Gene Analysis, 2nd Edition = Method Microbiol Yeast Gene Analysis, 2nd Edition = Method. Microbiol. Yeast Gene Analysis = Method Microbiol Yeast Gene Analysis = Method. Microbiol. Yeast Gene Analysis = Methods Microbiol Yeast Gene Analysis = Methods. Microbiol. Yeast Gene Analysis, Second Edition = Method Microbiol Yeast Gene Analysis, Second Edition = Method. Microbiol. Yeast Genetic Networks: Methods and Protocols = Methods Mol Biol Yeast Genetic Networks: Methods and Protocols = Methods Mol. Biol. Yeast=Yeast;; Yeast = Yeast Yeats and Pessoa: Parallel Poetic Styles = Stud Comp Lit Ser Yeats and Pessoa: Parallel Poetic Styles = Stud. Comp. Lit. Ser. Yeats Eliot Review = Yeats Eliot Rev Yeats Eliot Review = Yeats Eliot Rev. Yejin Fenxi = Yejin Fenxi Yenisei Series in Pure and Applied Mathematics = Yenisei Ser. Pure Appl. Math. Yen Ko Hsueh Pao [Eye Science] (Chung-Kuo Kuang-Chou=Yen Ko Hsueh Pao;; Yersiniosis: Present and Future = Contrib To Microbiol Yersiniosis: Present and Future = Contrib. To. Microbiol. Yetter-drinfeld Hopf Algebras Over Groups of Prime Order = Lect Notes Math Yetter-drinfeld Hopf Algebras Over Groups of Prime Order = Lect. Notes. Math. Yhdyskuntajatteen Hyodyntaminen Biojalostamossa = Vtt Res Notes Yhdyskuntajatteen Hyodyntaminen Biojalostamossa = Vtt. Res. Notes. Yhteisten Tavoitteiden Ja Jaetun Nakemyksen Muodostuminen Kolmessa Erityyppisessa Verkostossa = Vtt Publ Yhteisten Tavoitteiden Ja Jaetun Nakemyksen Muodostuminen Kolmessa Erityyppisessa Verkostossa = Vtt. Publ. Yi Chuan Xue Bao (Acta Genetica Sinica) = Yi Chuan Xue Bao Yiddish in The Cold War = Stud Yiddish Yiddish in The Cold War = Stud. Yiddish Yiddish in Weimar Berlin: At The Crossroads of Diaspora Politics and Culture = Stud Yiddish Yiddish in Weimar Berlin: At The Crossroads of Diaspora Politics and Culture = Stud. Yiddish Yiddish-modern Jewish Studies = Yiddish Yiddish-modern Jewish Studies = Yiddish. Yiddish Theatre: New Approaches = Lit Lib Jew Yiddish Theatre: New Approaches = Lit. Lib. Jew. Yiddish = Yiddish Yigal Allon, Native Son: A Biography = Jew Cult Context Yigal Allon, Native Son: A Biography = Jew. Cult. Context. [Ying yang xue bao] Acta nutrimenta Sinica = Ying Yang Xue Bao Yingyong Huaxue = Yingyong Huaxue Ying yong yu huan jing sheng wu xue bao = Chinese journal of applied and environmental biology / Zhongguo ke xue yuan Chengdu sheng wu yan jiu suo zhu ban|Ying Yong Yu Huan Jing Sheng Wu Xue Bao Yivo Annual of Jewish Social Science = Yivo Annu Jew Soc Sc Yivo Annual of Jewish Social Science = Yivo Annu. Jew. Soc. Sc. Yngre laeger = Yngre Laeger Yngre Laeger = Yngre Laeger Yod = Yod Yoga in The Modern World = Routl Hindu Stud Ser Yoga in The Modern World = Routl. Hindu. Stud. Ser. Yogyo-kyokai-shi = Nippon Seram Kyo Gak Yogyo-kyokai-shi = Nippon. Seram. Kyo. Gak. Yojana = Yojana Yokohama Mathematical Journal = Yokohama Math. J. Yokohama medical bulletin = Yokohama Med Bull Yokohama Medical Bulletin = Yokohama Med. Bull. Yokufuen chosa kenkyu kiyo. Acta gerontologica Japonica = Yokufuen Chosa Kenkyu Kiyo Yonago acta medica = Yonago Acta Med Yonago Acta Medica = Yonago Acta Med Yonago Acta Medica = Yonago Acta Med. Yonago igaku zasshi. The Journal of the Yonago Medical Association = Yonago Igaku Zasshi Yonsei medical journal = Yonsei Med J Yonsei Medical Journal=Yonsei Med J;; Yonsei Medical Journal = Yonsei Med J Yonsei Medical Journal = Yonsei Med. J. Yorkshire Bull. Econ. Soc. Res.=Yorkshire Bull. Econ. Soc. Res. York state tradition = York State Trad York Studies On Women and Men = York Stud Women Men York Studies On Women and Men = York Stud. Women Men Yoruba in Diaspora: An African Church in London = Contemp Anthr Relig Yoruba in Diaspora: An African Church in London = Contemp. Anthr. Relig. Yosetsu Gakkai Ronbunshu = Yosetsu Gakkai Ronbunshu Youji Huaxue = Youji Huaxue Young and Defiant in Tehran = Contemp Ethnogr Young and Defiant in Tehran = Contemp. Ethnogr. Young children = Young Child Young Children = Young Children Young Galaxies and Qso Absorption-line Systems = Astr Soc P Young Galaxies and Qso Absorption-line Systems = Astr. Soc. P. Young Neutron Stars and Supernova Remnants = Adv Space Res Young Neutron Stars and Supernova Remnants = Adv. Space. Res. Young Neutron Stars and Supernova Remnants = Adv Space Res-series Young Neutron Stars and Supernova Remnants = Adv. Space. Res-series. Young Neutron Stars and Their Environments = Iau Symp Young Neutron Stars and Their Environments = Iau. Symp. Young People's Human Rights and The Politics of Voting Age = Ius Gentium-comp Per Young People's Human Rights and The Politics of Voting Age = Ius. Gentium-comp. Per. Young Stars Near Earth: Progress and Prospects = Astr Soc P Young Stars Near Earth: Progress and Prospects = Astr. Soc. P. Young Supernova Remnants = Aip Conf Proc Young Supernova Remnants = Aip. Conf. Proc. Young Universe: Galaxy Formation and Evolution At Intermediate and High Redshift = Astr Soc P Young Universe: Galaxy Formation and Evolution At Intermediate and High Redshift = Astr. Soc. P. Young, Violent and Dangerous to Know = Psychiat Theor Appl Young, Violent and Dangerous to Know = Psychiat. Theor. Appl. Young Woman At The Rise of The 21st Century: Gynecological and Reproductive Issues in Health and Disease = Ann Ny Acad Sci Young Woman At The Rise of The 21st Century: Gynecological and Reproductive Issues in Health and Disease = Ann. Ny. Acad. Sci. Young = Young Your Child Patient = Your Child Patient Your Oklahoma Dental Association journal = Your Okla Dent Assoc J Your Oklahoma Dental Association Journal = Your Okla. Dent. Assoc. J. Youth Crime and Youth Justice: Comparative and Cross-national Perspectives = Crime Justice Youth Crime and Youth Justice: Comparative and Cross-national Perspectives = Crime Justice. Youth Cultures: Scenes, Subcultures and Tribes = Routl Adv Sociol Youth Cultures: Scenes, Subcultures and Tribes = Routl. Adv. Sociol. Youth Cultures: Scenes, Subcultures and Tribes = Rtldg Adv Soc Youth Cultures: Scenes, Subcultures and Tribes = Rtldg. Adv. Soc. Youth Employment and Joblessness in Advanced Countries = Nber Compa Labor Mar Youth Employment and Joblessness in Advanced Countries = Nber. Compa. Labor. Mar. Youth & society = Youth Soc Youth & Society = Youth Soc Youth & Society = Youth Soc. Youth Violence and Juvenile Justice = Youth Violence Juv J Youth Violence and Juvenile Justice = Youth Violence Juv. J. Youth Violence in Latin America: Gangs and Juvenile Justice in Perspective = Stud Am Youth Violence in Latin America: Gangs and Juvenile Justice in Perspective = Stud. Am. Youth Violence: Scientific Approaches to Prevention = Ann Ny Acad Sci Youth Violence: Scientific Approaches to Prevention = Ann. Ny. Acad. Sci. Y Reports = Y Rep. Y [report]. U.S. Atomic Energy Commission = Y Rep Yugoslav Economy Under Blocade = Serb Ac Sci Yugoslav Economy Under Blocade = Serb. Ac. Sci. Yugoslav Journal of Operations Research = Yugosl. J. Oper. Res. Yugoslav survey = Yugosl Surv Yukagaku = Yukagaku Yuki Gosei Kagaku Kyokaishi = Yuki Gosei Kagaku Kyokaishi Yunnan nong ye da xue xue bao = Journal of Yunnan Agricultural University|Yunnan Nong Ye Da Xue Xue Bao Z0 Physics = Moriond Par Z0 Physics = Moriond. Par. Zababakhin Scientific Talks - 2005 = Aip Conf Proc Zababakhin Scientific Talks - 2005 = Aip. Conf. Proc. Zacchia = Zacchia Zagreb International Review of Economics and Business=Zagreb Int. Rev. Econ. Bus. Zahlung Und Zahlungssicherung Im Aussenhandel = Degruyter Handb Zahlung Und Zahlungssicherung Im Aussenhandel = Degruyter. Handb. Zahnarzteblatt Baden-Wurttemberg = Zahnarztebl Baden Wurttemb Zahnarzteblatt Baden-Wurttemberg = Zahnarztebl. Baden. Wurttemb. Zahnarztliche Mitteilungen = Zahnarztl Mitt Zahnarztliche Mitteilungen = Zahnarztl. Mitt. Zahnarztliche Nachrichten Sudwurttemburg-Hohenzollern = Zahnarztl Nachr Sudwurttemb Zahnarztliche Nachrichten Sudwurttemburg-Hohenzollern = Zahnarztl. Nachr. Sudwurttemb. Zahnarztliche Praxisfuhrung = Zahnarztl Praxisfuhr Zahnarztliche Praxisfuhrung = Zahnarztl. Praxisfuhr. Zahnarztliche Praxis = Zahnarztl Prax Zahnarztliche Praxis = Zahnarztl. Prax. Zahnarztlicher Gesundheitsdienst : offizielles Organ des Bundesverbandes der Zahnarzte des Offentlichen Gesundheitsdienstes E.V = Zahnarztl Gesundheitsdienst Zahnarztlicher Gesundheitsdienst = Zahnarztl. Gesundheitsdienst Zahnarztliche Rundschau = Zahnarztl Rundsch Zahnarztliche Rundschau = Zahnarztl. Rundsch. Zahnarztliche Welt, zahnarztliche Reform, ZWR = Zahnarztl Welt Zahnarztl Reform Zwr Zahnarztliche Welt, zahnarztliche Rundschau, ZWR, vereinigt mit Zahnarztliche Reform = Zahnarztl Welt Zahnarztl Rundsch ZWR Zahnarztl Reform Zahnarztliche Welt, Zahnarztliche Rundschau, ZWR, Vereinigt mit Zahnarztliche Reform = Zahnarztl. Welt. Zahnarztl. Rundsch. ZWR. Zahnarztl. Reform Zahnarztliche Welt = Zahnarztl Welt Zahnarzt = Zahnarzt Zahn-, Mund-, und Kieferheilkunde mit Zentralblatt = Zahn Mund Kieferheilkd Zentralbl Zahn-, Mund-, und Kieferheilkunde mit Zentralblatt = Zahn. Mund. Kieferheilkd. Zentralbl. Zahntechnik = Zahntechnik (Zur.) Zahntechnik; Zeitschrift fur Theorie und Praxis der wissenschaftlichen Zahntechnik = Zahntechnik (Berl) Zahntechnik (Zurich, Switzerland) = Zahntechnik (Zur) Zainichi Korean Identity and Ethnicity = Routl Contemp Jpn Se Zainichi Korean Identity and Ethnicity = Routl. Contemp. Jpn. Se. Zaire-Afrique = Zaire Afr Zairyo = Zairyo Zambezia = Zambezia Zambia Nurse Journal = Zambia Nurse J. Zambia nurse (Kitwe, Zambia : 1978) = Zambia Nurse Zambia Nurse = Zambia Nurse ZAMM = ZAMM Z. Angew. Math. Mech. Zamm-zeitschrift Fur Angewandte Mathematik Und Mechanik = Zamm-z Angew Math Me Zamm-zeitschrift Fur Angewandte Mathematik Und Mechanik = Zamm-z. Angew. Math. Me. Zamumo's Gifts: Indian-european Exchange in The Colonial Southeast = Early Am Stud Ser Zamumo's Gifts: Indian-european Exchange in The Colonial Southeast = Early. Am. Stud. Ser. Zapiski Vsesoyuznogo Mineralogicheskogo Obshchestva = Zap. Vses. Mineral. O-va. Zaragoza (Zaragoza (Spain)). = Zaragoza Zashchita Metallov = Zashch. Met. [Zasshi] Journal. Kanazawa Daigaku. Igakubu. Juzen Igakkai = Zasshi Kanazawa Daigaku Igakubu Juzen Igakkai [Zasshi] [Journal]. Nihon Kyobu Geka Gakkai = Nippon Kyobu Geka Gakkai Zasshi Zasshi. Tokyo Ika Daigaku = Zasshi Tokyo Ika Daigaku [Zasshi] Tokyo Jikeikai medical journal. Tokyo Jikeikai Ika Daigaku = Tokyo Jikeikai Ika Daigaku Zasshi Zavodskaya Laboratoriya = Ind Lab-ussr+ Zavodskaya Laboratoriya = Ind. Lab-ussr+.+ Zavodskaya Laboratoriya = Zavod. Lab. Zb 2003: Formal Specification and Development in Z and B = Lect Notes Comput Sc Zb 2003: Formal Specification and Development in Z and B = Lect. Notes. Comput. Sc. Zb 2005: Formal Specification and Development in Z and B, Proceedings = Lect Notes Comput Sc Zb 2005: Formal Specification and Development in Z and B, Proceedings = Lect. Notes. Comput. Sc. Zbornik Instituta za historijske nauke u Zadru = ZborZadar Zbornik Narodnog muzeja Beograd = ZborMuzBeograd Zbornik prac. Univerzita Pavla Jozefa Safarika v Kosiciach. Lekarska fakulta = Zb Lek Fak Kosice Zbornik Radova Ekonomskog Fakulteta Rijeka=Zbornik Radova Ekon. Fakul. Rijeka Zbornik Radova Ekonomskog Fakulteta U Rijeci-proceedings of Rijeka Faculty of Economics = Zb Rad Ekon Fak Rij+ Zbornik Radova Ekonomskog Fakulteta U Rijeci-proceedings of Rijeka Faculty of Economics = Zb. Rad. Ekon. Fak. Rij+.+ Zbornik Radova Ekonomskog Fakulteta U Rijeci-proceedings of Rijeka Faculty of Economics = Zb Rad Ekon Fak Rije Zbornik Radova Ekonomskog Fakulteta U Rijeci-proceedings of Rijeka Faculty of Economics = Zb. Rad. Ekon. Fak. Rije. Zbornik Radova Ekonomskog Fakulteta U. Rijeci=Zbornik Radova Ekon. Fakul. U. Rijeci Zbornik radova Vizantološkog instituta. Recueil des travaux de l’Institut d’études byzantines, Beograd = ZborRadBeograd Zbornik Radova = Zb. Rad. (Beogr.) Zbornik Radova = Zb. Rad. (Varaždin) Zbornik. Vojnomedicinska akademija (Yugoslavia) = Zb Vojnomed Akad Zbornik Vojnomedicinske Akademije = Zb. Vojnomed. Akad. Zbornik za istoriju = Zb Istor Zbornik za zgodovino naravoslovja in tehnike / Slovenska matica v Ljubljani = Zb Zgodovino Naravoslovja Teh Z Degree Physics : Cargese 1990 = Nato Adv Sci I B-phy Z Degree Physics : Cargese 1990 = Nato. Adv. Sci. I. B-phy. Zdravniski Vestnik-slovenian Medical Journal = Zdr Vestn Zdravniski Vestnik-slovenian Medical Journal = Zdr. Vestn. Zdravno delo = Zdr Delo Zdravookhranenie Belarusi (Belorusskii tsentr nauchnoi meditsinskoi informatsii) = Zdravookhranenie Belarusi Zdravookhranenie Belorussii = Zdravookhr Beloruss Zdravookhranenie Kazakhstana = Zdravookhranenie Kazakhstana Zdravookhranenie Kirgizii = Zdravookhr Kirg Zdravookhranenie Kirgizii = Zdravookhr. Kirg. Zdravookhranenie Rossiiskoi Federatsii / Ministerstvo zdravookhraneniia RSFSR = Zdravookhr Ross Fed Zdravookhranenie Rossiiskoi Federatsii = Zdravookhr. Ross. Fed. Zdravookhranenie Turkmenistana = Zdravookhr Turkmenistana Zdravookhranenie = Zdravookhranenie Zdravotnicka pracovnice = Zdrav Prac Zdravotnicka Pracovnice = Zdrav. Prac. Zdravotnicka revue; vestnik Ministerstva Zdravotnictvi = Zdrav Rev Vestn Minist Zdrav Zdravotnicke aktuality, = Zdrav Aktual Zdravotnicke Aktuality = Zdrav. Aktual. Zdravstveni vestnik = Zdrav Vestn Zdravstveni Vestnik = Zdrav Vestn Zdravstveni Vestnik = Zdrav. Vestn. Zdravstveno Varstvo = Zdrav Varst Zdravstveno Varstvo = Zdrav. Varst. Zdrowie publiczne / Polskie Towarzystwo Higjeniczne = Zdrow Publiczne Zdrowie Publiczne = Zdrow. Publiczne Zebrafish: 2nd Edition Cellular and Developmental Biology = Method Cell Biol Zebrafish: 2nd Edition Cellular and Developmental Biology = Method. Cell. Biol. Zebrafish: 2nd Edition Cellular and Developmental Biology = Methods Cell Biol Zebrafish: 2nd Edition Cellular and Developmental Biology = Methods. Cell. Biol. Zebrafish:2nd Edition Genetics Genomics and Informatics = Method Cell Biol Zebrafish:2nd Edition Genetics Genomics and Informatics = Method. Cell. Biol. Zebrafish:2nd Edition Genetics Genomics and Informatics = Methods Cell Biol Zebrafish:2nd Edition Genetics Genomics and Informatics = Methods. Cell. Biol. Zebrafish: Cellular and Developmental Biology, Pt A, Third Edition = Method Cell Biol Zebrafish: Cellular and Developmental Biology, Pt A, Third Edition = Method. Cell. Biol. Zebrafish Models in Neurobehavioral Research = Neuromethods Zebrafish Models in Neurobehavioral Research = Neuromethods. Zebrafish Neurobehavioral Protocols = Neuromethods Zebrafish Neurobehavioral Protocols = Neuromethods. Zebrafish = Zebrafish Zebra Mussel Dreissena Polymorpha = Limnol Aktuell Zebra Mussel Dreissena Polymorpha = Limnol. Aktuell. Zechariah Tradition and The Gospel of Matthew = Beih Z Neutest Wiss Zechariah Tradition and The Gospel of Matthew = Beih. Z. Neutest. Wiss. Zeger-bernard Van Espen At The Crossroads of Canon Law, History, Theology and Church-state Relations = Bib Eph The Zeger-bernard Van Espen At The Crossroads of Canon Law, History, Theology and Church-state Relations = Bib. Eph. The Zeiss – Informationen = Zeiss – Inf. Zei Studies in European Economics and Law = Zei Stud Eu Econ Law Zei Studies in European Economics and Law = Zei Stud. Eu. Econ. Law Zei Studies in European Economics and Law = Zei Stud Eur Econ La Zei Studies in European Economics and Law = Zei Stud. Eur. Econ. La. Zeitgeschichte = Zeitgesch Zeitgeschichte = Zeitgeschichte Zeitschrift der Arbeitsgemeinschaft österreichischer Entomologen = Z. Arb.gem. österr. Entomol. Zeitschrift der Deutschen Geologischen Gesellschaft = Z. Dtsch. Geol. Ges. Zeitschrift Der Deutschen Gesellschaft Fur Geowissenschaften = Z Dtsch Ges Geowiss Zeitschrift Der Deutschen Gesellschaft Fur Geowissenschaften = Z. Dtsch. Ges. Geowiss. Zeitschrift Der Deutschen Morgenlandischen Gesellschaft = Z Deut Morgenland G Zeitschrift Der Deutschen Morgenlandischen Gesellschaft = Z. Deut. Morgenland. G. Zeitschrift der Deutschen Morgenländischen Gesellschaft = ZDMG Zeitschrift der Deutschen Morgenländischen Gesellschaft = ZDMG Zeitschrift der Deutschen Morgenlandischen Gesellschaft = Z Dtsch Morgenl Ges Zeitschrift der Gesellschaft fur Schleswig-Holsteinische Geschichte. Gesellschaft fur Schleswig-Holsteinische Geschichte = Z Ges Schleswig Holstein Gesch Zeitschrift der Savigny-Stiftung fur Rechtsgeschichte. Germanistische Abteilung = Z Savigny Stift Rechtsgesch Ger Abt Zeitschrift der Savigny-Stiftung fur Rechtsgeschichte. Kanonistische Abteilung = Z Savigny Stift Rechtsgesch Kanon Abt Zeitschrift der Savigny-Stiftung für Rechtsgeschichte (Romanistische Abteilung) = ZRG Zeitschrift der Savigny-Stiftung für Rechtsgeschichte. Romanistische Abteilung = ZSav Zeitschrift des Aachener Geschichtsvereins. Aachener Geschichtsverein = Z Aachener Geschichtsver Zeitschrift Des Deutschen Palastina-vereins = Z Deut Palastina-ver Zeitschrift Des Deutschen Palastina-vereins = Z. Deut. Palastina-ver. Zeitschrift des Deutschen Palästina-Vereins = ZDPV Zeitschrift des Deutschen Palästina-Vereins = ZPalV Zeitschrift Des Deutschen Vereins Fur Kunstwissenschaft = Z Deut Ver Kunstwiss Zeitschrift Des Deutschen Vereins Fur Kunstwissenschaft = Z. Deut. Ver. Kunstwiss. Zeitschrift des Historischen Vereines fur Steiermark = Z Hist Ver Steiermark Zeitschrift des Historischen Vereins fur Schwaben. Historischer Verein fur Schwaben = Z Hist Ver Schwaben Neuburg Zeitschrift des Vereines der Deutschen Zucker Industrie = Z. Ver. Dtsch. Zucker Ind. Zeitschrift Des Vereines Deutscher Ingenieure = Z Ver Dtsch Ing Zeitschrift Des Vereines Deutscher Ingenieure = Z. Ver. Dtsch. Ing. Zeitschrift des Vereins Deutscher Ingenieure = Z. Ver. Dtsch. Ing. Zeitschrift des Vereins fur Lubeckische Geschichte und Altertumskunde. Verein fur Lubeckische Geschichte und Altertumskunde = Z Ver Lubeck Gesch Altertumskd Zeitschrift fr Soziologie = Z. Soziol. Zeitschrift Fur Acker Und Pflanzenbau-journal of Agronomy and Crop Science = Z Acker Pflanzenbau Zeitschrift Fur Acker Und Pflanzenbau-journal of Agronomy and Crop Science = Z. Acker Pflanzenbau. Zeitschrift für Agrargeschichte und Agrarsoziologie = Z. Agrargesch. Agrarsoziol. Zeitschrift fur agyptische sprache und altertumskunde = Z Aegypt Sprach Altertumskd Zeitschrift für ägyptische Sprache und Altertumskunde = ZAeS Zeitschrift Fur Agyptische Sprache Und Altertumskunde = Z Agypt Sprache Alt Zeitschrift Fur Agyptische Sprache Und Altertumskunde = Z. Agypt. Sprache Alt. Zeitschrift für ägyptische Sprache und Altertumskunde = ZAS Zeitschrift für Allgemaine und Textile Marktwirts schaft=Z. Allg. Textile Marktwirtsch. Zeitschrift fur allgemeine Mikrobiologie = Z Allg Mikrobiol Zeitschrift fur Allgemeine Mikrobiologie = Z. Allg. Mikrobiol. Zeitschrift Fur Allgemeine Mikrobiologie = Z Allg Mikrobiol Zeitschrift Fur Allgemeine Mikrobiologie = Z. Allg. Mikrobiol. Zeitschrift fur allgemeine Wissenschaftstheorie. Journal for general philosophy of science = Z Allg Wissenschaftstheor Zeitschrift fur Allgemeinmedizin = Z Allgemeinmed Zeitschrift fur Allgemeinmedizin = Z. Allgemeinmed. Zeitschrift fur Alternsforschung = Z Alternsforsch Zeitschrift fur Alternsforschung = Z. Alternsforsch. Zeitschrift Fur Analysis Und Ihre Anwendungen = Z Anal Anwend Zeitschrift Fur Analysis Und Ihre Anwendungen = Z. Anal. Anwend. Zeitschrift für Analysis und ihre Anwendungen = Z. Anal. Anwendungen Zeitschrift Fur Analytische Chemie Fresenius = Z Anal Chem Freseniu Zeitschrift Fur Analytische Chemie Fresenius = Z. Anal. Chem. Freseniu. Zeitschrift fur Analytische Chemie = Z. Anal. Chem. Zeitschrift für Analytische Chemie = Z. Anal. Chem. Zeitschrift Fur Anatomie Und Entwicklungsgeschichte = Z Anat Entwicklungs Zeitschrift Fur Anatomie Und Entwicklungsgeschichte = Z. Anat. Entwicklungs. Zeitschrift fur Anatomie und Entwicklungsgeschichte = Z Anat Entwicklungsgesch Zeitschrift fur Anatomie und Entwicklungsgeschichte = Z. Anat. Entwicklungsgesch. Zeitschrift fur angewandte Bader- und Klimaheilkunde = Z Angew Bader Klimaheilkd Zeitschrift Fur Angewandte Entomologie-journal of Applied Entomology = Z Angew Entomol Zeitschrift Fur Angewandte Entomologie-journal of Applied Entomology = Z. Angew. Entomol. Zeitschrift fur Angewandte Entomologie = Z. Angew. Entomol. Zeitschrift für Angewandte Entomologie = Z. Angew. Entomol. Zeitschrift fur Angewandte Geologie = Z. Angew. Geol. Zeitschrift Fur Angewandte Geologie = Z Angew Geol Zeitschrift Fur Angewandte Geologie = Z. Angew. Geol. Zeitschrift fur angewandte Ichthyologie = Journal of applied ichthyology|J. Appl. Ichthyol. Zeitschrift fur Angewandte Mathematik und Mechanik = ZAMM Zeitschrift Fur Angewandte Mathematik Und Mechanik = Z Angew Math Mech Zeitschrift Fur Angewandte Mathematik Und Mechanik = Z. Angew. Math. Mech. Zeitschrift für Angewandte Mathematik und Mechanik = Z. Angew. Math. Mech. Zeitschrift fur Angewandte Mathematik und Physik = ZAMP Zeitschrift für Angewandte Mathematik und Physik = ZAMP Zeitschrift Fur Angewandte Mathematik Und Physik = Z Angew Math Phys Zeitschrift Fur Angewandte Mathematik Und Physik = Z. Angew. Math. Phys. Zeitschrift für Angewandte Mathematik und Physik = Z. Angew. Math. Phys. Zeitschrift fur Angewandte Photographie in Wissenschaft und Technik = Z. Angew. Photogr. Wiss. Tech. Zeitschrift fur Angewandte Physik und Chemie = Z. Elektrochem. Angew. Phys. Chem. Zeitschrift für Angewandte Physik und Chemie = Z. Elektrochem. Angew. Phys. Chem. Zeitschrift Fur Angewandte Physik = Z Angew Physik Zeitschrift Fur Angewandte Physik = Z. Angew. Physik Zeitschrift Fur Anglistik Und Amerikanistik = Z Anglist Am Zeitschrift Fur Anglistik Und Amerikanistik = Z. Anglist. Am. Zeitschrift fur Anorganische Chemie = Z. Anorg. Chem. Zeitschrift Fur Anorganische Chemie = Z Anorg Chem Zeitschrift Fur Anorganische Chemie = Z. Anorg. Chem. Zeitschrift für Anorganische Chemie = Z. Anorg. Chem. Zeitschrift fur Anorganische und Allgemeine Chemie = ZAAC Zeitschrift Fur Anorganische Und Allgemeine Chemie = Z Anorg Allg Chem Zeitschrift Fur Anorganische Und Allgemeine Chemie = Z. Anorg. Allg. Chem. Zeitschrift für Anorganische und Allgemeine Chemie = Z. Anorg. Allg. Chem. Zeitschrift Fur Antikes Christentum-journal of Ancient Christianity = Z Antikes Christ-j A Zeitschrift Fur Antikes Christentum-journal of Ancient Christianity = Z. Antikes Christ-j. A. Zeitschrift für antikes Christentum = ZAC Zeitschrift für antikes Christentum = ZAntChr Zeitschrift Fur Arbeits-und Organisationspsychologie = Z Arb Organ Zeitschrift Fur Arbeits-und Organisationspsychologie = Z. Arb. Organ. Zeitschrift fur Arbeitswissenschaft = Z Arbeitswiss Zeitschrift für Archäologie Außereuropäischer Kulturen = ZAAK Zeitschrift Fur Archaologie = Z Archaol Zeitschrift Fur Archaologie = Z. Archaol. Zeitschrift für Archäologie = ZfA Zeitschrift für Archäologie = ZfA Zeitschrift Fur Arznei- & Gewurzpflanzen = Z Arznei- Gewurzpfla Zeitschrift Fur Arznei- & Gewurzpflanzen = Z. Arznei- Gewurzpfla. Zeitschrift fur Arznei und Gewurzpflanzen = Z. Arznei Gewurzpflanzen Zeitschrift fur arztliche Fortbildung. Beiheft = Z Arztl Fortbild Beih (Jena) Zeitschrift fur Arztliche Fortbildung. Beiheft = Z. Arztl. Fortbild. Beih. (Jena) Zeitschrift fur arztliche Fortbildung (Berlin) = Z Arztl Fortbild (Berl) Zeitschrift fur arztliche Fortbildung und Qualitatssicherung : in Zusammenarbeit mit der Kaiserin-Friedrich-Stiftung fur das arztliche Fortbildungswesen = Z Arztl Fortbild Qualitatssich Zeitschrift fur Arztliche Fortbildung und Qualitatssicherung = Z. Arztl. Fortbild. Qualitatssich. Zeitschrift Fur Arztliche Fortbildung Und Qualitatssicherung=Z Arztl Fortbild Qualitatssich;; Zeitschrift fur arztliche Fortbildung = Z Arztl Fortbild (Jena) Zeitschrift fur Arztliche Fortbildung = Z. Arztl. Fortbild. (Jena) Zeitschrift für Assyriologie und vorderasiatische Archäologie = ZA Zeitschrift Fur Assyriologie Und Vorderasiatische Archaologie = Z Assyriol Vorderasi Zeitschrift Fur Assyriologie Und Vorderasiatische Archaologie = Z. Assyriol. Vorderasi. Zeitschrift Fur Asthetik Und Allgemeine Kunstwissenschaft = Z Asthet Allg Kunstw Zeitschrift Fur Asthetik Und Allgemeine Kunstwissenschaft = Z. Asthet. Allg. Kunstw. Zeitschrift Fur Astrophysik = Z Astrophys Zeitschrift Fur Astrophysik = Z. Astrophys. Zeitschrift fur bayerische Landesgeschichte = Z Bayer Landesgesch Zeitschrift Fur Betriebswirtschaft = Z Betriebswirt Zeitschrift Fur Betriebswirtschaft = Z. Betriebswirt. Zeitschrift für Betriebswirtschaft=Z. Betriebswirtschaft Zeitschrift fur Bevolkerungswissenschaft = Z Bevolkerungswiss Zeitschrift Fur Bibliothekswesen Und Bibliographie = Z Bibl Bibl Zeitschrift Fur Bibliothekswesen Und Bibliographie = Z. Bibl. Bibl. Zeitschrift fur Bibliothekswesen und Bibliographie = Z Bibliothekswes Bibliogr Zeitschrift fur Biologie = Z Biol Zeitschrift fur Biologie = Z. Biol. Zeitschrift Fur Biologie = Z Biol-munich Zeitschrift Fur Biologie = Z. Biol-munich. Zeitschrift Fur Celtische Philologie = Z Celt Philol Zeitschrift Fur Celtische Philologie = Z. Celt. Philol. Zeitschrift Fur Chemie = Z Chem Zeitschrift Fur Chemie = Z. Chem. Zeitschrift für das Forst- und Jagdwesen = Z. Forst- Jagdwes. Zeitschrift fur das Gesamte Schiess und Sprengstoffwesen = Z. Gesamte Schiess Sprengstoffwes. Zeitschrift fur den Erdkundeunterricht = Z Erdkundeunterr Zeitschrift Fur Deutsche Philologie = Z Deut Philol Zeitschrift Fur Deutsche Philologie = Z. Deut. Philol. Zeitschrift fur deutsches Alterthum und deutsche Litteratur = Z Dtsch Altert Dtsch Lit Zeitschrift Fur Deutsches Altertum Und Deutsche Literatur = Z Deut Altertum Deut Zeitschrift Fur Deutsches Altertum Und Deutsche Literatur = Z. Deut. Altertum Deut. Zeitschrift Fur Dialektologie Und Linguistik = Z Dialektol Linguist Zeitschrift Fur Dialektologie Und Linguistik = Z. Dialektol. Linguist. Zeitschrift Fur Die Alttestamentliche Wissenschaft = Z Alttestament Wiss Zeitschrift Fur Die Alttestamentliche Wissenschaft = Z. Alttestament. Wiss. Zeitschrift für die Alttestamentliche Wissenschaft = ZATW Zeitschrift für die alttestamentliche Wissenschaft = ZAW Zeitschrift fur die gesamte experimentelle Medizin einschliesslich experimentelle Chirurgie = Z Gesamte Exp Med Zeitschrift fur die Gesamte Experimentelle Medizin einschliesslich Experimentelle Chirurgie = Z. Gesamte Exp. Med. Zeitschrift Fur Die Gesamte Experimentelle Medizin Einschliesslich Experimenteller Chirurgie = Z Ges Exp Med Zeitschrift Fur Die Gesamte Experimentelle Medizin Einschliesslich Experimenteller Chirurgie = Z. Ges. Exp. Med. Zeitschrift fur die gesamte experimentelle Medizin = Z Gesamte Exp Med Zeitschrift Fur Die Gesamte Experimentelle Medizin = Z Gesamte Exp Med Zeitschrift Fur Die Gesamte Experimentelle Medizin = Z. Gesamte Exp. Med. Zeitschrift fur die gesamte Hygiene und ihre Grenzgebiete = Z Gesamte Hyg Zeitschrift fur die Gesamte Hygiene und Ihre Grenzgebiete = Z. Gesamte Hyg. Zeitschrift fur die gesamte innere Medizin und ihre Grenzgebiete = Z Gesamte Inn Med Zeitschrift fur die Gesamte Innere Medizin und Ihre Grenzgebiete = Z. Gesamte Inn. Med. Zeitschrift Fur Die Gesamte Neurologie Und Psychiatrie = Z Gesamte Neurol Psy Zeitschrift Fur Die Gesamte Neurologie Und Psychiatrie = Z. Gesamte Neurol. Psy. Zeitschrift für die gesamte Staatswissenschaft (JITE)=Z. ges. Staatswissen. (JITE) Zeitschrift Fur Die Neutestamentliche Wissenschaft Und Die Kunde Der Alteren Kirche = Z Neutestament Wiss Zeitschrift Fur Die Neutestamentliche Wissenschaft Und Die Kunde Der Alteren Kirche = Z. Neutestament. Wiss. Zeitschrift für die Neutestamentliche Wissenschaft und die Kunde der älteren Kirche = ZNTW Zeitschrift für die neutestamentliche Wissenschaft und die Kunde der älteren Kirche = ZNW Zeitschrift Fur Die Zuckerindustrie = Z Zuckerind Zeitschrift Fur Die Zuckerindustrie = Z. Zuckerind. Zeitschrift Fur Elektrochemie Und Angewandte Physikalische Chemie = Z Elktrochem Angew P Zeitschrift Fur Elektrochemie Und Angewandte Physikalische Chemie = Z. Elktrochem. Angew. P. Zeitschrift Fur Elektrochemie = Z Elektrochem Zeitschrift Fur Elektrochemie = Z. Elektrochem. Zeitschrift Fur Entwicklungspsychologie Und Padagogische Psychologie = Z Entwickl Padagogis Zeitschrift Fur Entwicklungspsychologie Und Padagogische Psychologie = Z. Entwickl. Padagogis. Zeitschrift fur Entwicklungspsychologie und Padagogische Psychologie = Z Entwicklungspsychol Padagog Psychol Zeitschrift fur Erkrankungen der Atmungsorgane mit Folia bronchologica = Z Erkr Atmungsorgane Folia Bronchol Zeitschrift fur Erkrankungen der Atmungsorgane, mit Folia Bronchologica = Z. Erkr. Atmungsorgane. Folia Bronchol. Zeitschrift fur Erkrankungen der Atmungsorgane = Z Erkr Atmungsorgane Zeitschrift fur Erkrankungen der Atmungsorgane = Z. Erkr. Atmungsorgane Zeitschrift fur Ernahrungswissenschaft. Journal of nutritional sciences. Supplementa = Z Ernahrungswiss Suppl Zeitschrift fur Ernahrungswissenschaft (Journal of Nutritional Sciences) Supplementa = Z. Ernahrungswiss. Suppl. Zeitschrift fur Ernahrungswissenschaft = Z Ernahrungswiss Zeitschrift fur Ernahrungswissenschaft = Z. Ernahrungswiss. Zeitschrift Fur Ernahrungswissenschaft=Z Ernahrungswiss;; Zeitschrift Fur Ernahrungswissenschaft = Z Ernahrungswiss Zeitschrift Fur Ernahrungswissenschaft = Z. Ernahrungswiss. Zeitschrift fur Erzbergbau und Metallhuttenwesen = Z. Erzbergbau MetallhuttenWes. Zeitschrift Fur Erziehungswissenschaft = Z Erziehwiss Zeitschrift Fur Erziehungswissenschaft = Z. Erziehwiss. Zeitschrift für Ethnologie der Deutschen Gesellschaft für Völkerkunde und der Berliner Gesellschaft für Anthropologie, Ethnologie und Urgeschichte = ZEthn Zeitschrift fur Ethnologie = Z Ethnol Zeitschrift Fur Ethnologie = Z Ethnol Zeitschrift Fur Ethnologie = Z. Ethnol. Zeitschrift Fur Evaluation = Z Eval Zeitschrift Fur Evaluation = Z. Eval. Zeitschrift Fur Evangelische Ethik = Z Evangel Ethik Zeitschrift Fur Evangelische Ethik = Z. Evangel. Ethik Zeitschrift fur experimentelle Chirurgie, Transplantation, und kunstliche Organe : Organ der Sektion Experimentelle Chirurgie der Gesellschaft fur Chirurgie der DDR = Z Exp Chir Transplant Kunstliche Organe Zeitschrift fur Experimentelle Chirurgie, Transplantation, und Kunstliche Organe = Z. Exp. Chir. Transplant. Kunstliche Organe Zeitschrift fur experimentelle Chirurgie = Z Exp Chir Zeitschrift fur Experimentelle Chirurgie = Z. Exp. Chir. Zeitschrift fur experimentelle Psychologie : Organ der Deutschen Gesellschaft fur Psychologie = Z Exp Psychol Zeitschrift fur Experimentelle Psychologie = Z. Exp. Psychol. Zeitschrift Fur Experimentelle Psychologie = Z Exp Psychol Zeitschrift Fur Experimentelle Psychologie = Z. Exp. Psychol. Zeitschrift fur experimentelle und angewandte Psychologie = Z Exp Angew Psychol Zeitschrift fur Experimentelle und Angewandte Psychologie = Z. Exp. Angew. Psychol. Zeitschrift Fur Experimentelle Und Angewandte Psychologie = Z Exp Angew Psychol Zeitschrift Fur Experimentelle Und Angewandte Psychologie = Z. Exp. Angew. Psychol. Zeitschrift Fur Familienforschung = Z Fam Zeitschrift Fur Familienforschung = Z. Fam. Zeitschrift Fur Familienforschung = Z Familienforsch Zeitschrift Fur Familienforschung = Z. Familienforsch. Zeitschrift Fur Flugwissenschaften Und Weltraumforschung = Z Flugwiss Weltraum Zeitschrift Fur Flugwissenschaften Und Weltraumforschung = Z. Flugwiss. Weltraum. Zeitschrift fur Flugwissenschaften und Weltraumforschung = Z Flugwiss Weltraumforsch Zeitschrift Fur Flugwissenschaften = Z Flugwissensch Zeitschrift Fur Flugwissenschaften = Z. Flugwissensch. Zeitschrift für Forstgenetik und Forstpflanzenzüchtung = Z. Forstgenet. Forstpflanzenzücht. Zeitschrift Fur Franzosische Sprache Und Literatur = Z Fr Sprache Lit Zeitschrift Fur Franzosische Sprache Und Literatur = Z. Fr. Sprache Lit. Zeitschrift fur Gastroenterologie. Verhandlungsband = Z Gastroenterol Verh Zeitschrift fur Gastroenterologie. Verhandlungsband = Z. Gastroenterol. Verh. Zeitschrift fur Gastroenterologie = Z Gastroenterol Zeitschrift fur Gastroenterologie = Z. Gastroenterol. Zeitschrift Fur Gastroenterologie=Z Gastroenterol;; Zeitschrift Fur Gastroenterologie = Z Gastroenterol Zeitschrift Fur Gastroenterologie = Z. Gastroenterol. Zeitschrift fur Geburtshilfe und Gynakologie = Z Geburtshilfe Gynakol Zeitschrift fur Geburtshilfe und Neonatologie = Z Geburtshilfe Neonatol Zeitschrift fur Geburtshilfe und Neonatologie = Z. Geburtshilfe Neonatol. Zeitschrift Fur Geburtshilfe Und Neonatologie=Z Geburtshilfe Neonatol;; Zeitschrift Fur Geburtshilfe Und Neonatologie = Z Geburtsh Neonatol Zeitschrift Fur Geburtshilfe Und Neonatologie = Z. Geburtsh. Neonatol. Zeitschrift fur Geburtshilfe und Perinatologie = Z Geburtshilfe Perinatol Zeitschrift fur Geburtshilfe und Perinatologie = Z. Geburtshilfe Perinatol. Zeitschrift Fur Geburtshilfe Und Perinatologie = Z Geburtsh Perinatol Zeitschrift Fur Geburtshilfe Und Perinatologie = Z. Geburtsh. Perinatol. Zeitschrift fur Geologische Wissenschaften = Z. Geol. Wiss. Zeitschrift für Geologische Wissenschaften = Z. Geol. Wiss. Zeitschrift Fur Geologische Wissenschaften = Z Geol Wissenschaft Zeitschrift Fur Geologische Wissenschaften = Z. Geol. Wissenschaft. Zeitschrift fur Geomorphologie Supplementband = Z. Geomorphol. Suppl. Zeitschrift Fur Geomorphologie Supplement Series = Z Geomorphol Supp Zeitschrift Fur Geomorphologie Supplement Series = Z. Geomorphol. Supp. Zeitschrift fur Geomorphologie = Z. Geomorphol. Zeitschrift Fur Geomorphologie = Z Geomorphol Zeitschrift Fur Geomorphologie = Z. Geomorphol. Zeitschrift für Geomorphologie = Z. Geomorphol. Zeitschrift fur Geophysik = Z. Geophys. Zeitschrift Fur Germanistik = Z Germanistik Zeitschrift Fur Germanistik = Z. Germanistik Zeitschrift Fur Germanistische Linguistik = Z Ger Linguistik Zeitschrift Fur Germanistische Linguistik = Z. Ger. Linguistik Zeitschrift fur Gerontologie und Geriatrie : Organ der Deutschen Gesellschaft fur Gerontologie und Geriatrie = Z Gerontol Geriatr Zeitschrift fur Gerontologie und Geriatrie = Z. Gerontol. Geriatr. Zeitschrift Fur Gerontologie Und Geriatrie=Z Gerontol Geriatr;; Zeitschrift Fur Gerontologie Und Geriatrie = Z Gerontol Geriatr Zeitschrift Fur Gerontologie Und Geriatrie = Z. Gerontol. Geriatr. Zeitschrift fur Gerontologie = Z Gerontol Zeitschrift fur Gerontologie = Z. Gerontol. Zeitschrift Fur Gerontologie = Z Gerontol Zeitschrift Fur Gerontologie = Z. Gerontol. Zeitschrift fur Geschichte der Arabisch-Islamischen Wissenschaften = Z Gesch Arab Islam Wiss Zeitschrift für Geschichte der Arabisch-Islamischen Wissenschaften = Z. Gesch. Arab.-Islam. Wiss. Zeitschrift fur Geschichtswissenschaft = Z Geschichtswiss Zeitschrift Fur Geschichtswissenschaft = Z Geschichtswiss Zeitschrift Fur Geschichtswissenschaft = Z. Geschichtswiss. Zeitschrift fur Geschiebeforschung = Z. Geschiebeforsch. Zeitschrift Fur Gesundheitspsychologie = Z Gesundh Zeitschrift Fur Gesundheitspsychologie = Z. Gesundh. Zeitschrift Fur Gesundheitspsychologie = Z Gesundheitspsychol Zeitschrift Fur Gesundheitspsychologie = Z. Gesundheitspsychol. Zeitschrift fur Gletscherkunde und Glazialgeologie = Z. Gletscherkd. Glazialgeol. Zeitschrift für Gletscherkunde und Glazialgeologie = Z. Gletsch.kd. Glazialgeol. Zeitschrift Fur Hautkrankheiten H&g = Z Hautkrankheiten Zeitschrift Fur Hautkrankheiten H&g = Z. Hautkrankheiten Zeitschrift fur Hautkrankheiten = Z Hautkr Zeitschrift fur Hautkrankheiten = Z. Hautkr. Zeitschrift fur Haut- und Geschlechtskrankheiten = Z Haut Geschlechtskr Zeitschrift fur Haut- und Geschlechtskrankheiten = Z. Haut. Geschlechtskr. Zeitschrift fur Heereskunde = Z Heereskd Zeitschrift fur historische Forschung = Z Hist Forsch Zeitschrift Fur Historische Forschung = Z Hist Forsch Zeitschrift Fur Historische Forschung = Z. Hist. Forsch. Zeitschrift fur Hochfrequenztechnik = Z. Hochfrequenztech. Zeitschrift fur Hygiene und Infektionskrankheiten; medizinische Mikrobiologie, Immunologie und Virologie = Z Hyg Infektionskr Zeitschrift fur Hygiene und Infektionskrankheiten = Z. Hyg. Infektionskr. Zeitschrift Fur Hygiene Und Infektionskrankheiten = Z Hyg Infektionskr Zeitschrift Fur Hygiene Und Infektionskrankheiten = Z. Hyg. Infektionskr. Zeitschrift fur Hygiene und Infektionskrankheiten = Z. Hyg. Infektionskrankh. Zeitschrift fur Hygiene = Z. Hyg. Zeitschrift Fur Immunitats-forschung Allergie Und Klinische Immunologie = Z Immunitatsforsch Zeitschrift Fur Immunitats-forschung Allergie Und Klinische Immunologie = Z. Immunitatsforsch. Zeitschrift fur Immunitatsforschung, Allergie und klinische Immunologie = Z Immunitatsforsch Allerg Klin Immunol Zeitschrift fur Immunitatsforschung, Allergie und Klinische Immunologie = Z. Immunitatsforsch. Allerg. Klin. Immunol. Zeitschrift Fur Immunitats-forschung Experimentelle Und Klinische Immunologie = Z Immunitatsforsch Zeitschrift Fur Immunitats-forschung Experimentelle Und Klinische Immunologie = Z. Immunitatsforsch. Zeitschrift fur Immunitatsforschung, experimentelle und klinische Immunologie = Z Immunitatsforsch Exp Klin Immunol Zeitschrift fur Immunitatsforschung, Experimentelle und Klinische Immunologie = Z. Immunitatsforsch. Exp. Klin. Immunol. Zeitschrift Fur Immunitatsforschung-immunobiology = Z Immunitatsforsch Zeitschrift Fur Immunitatsforschung-immunobiology = Z. Immunitatsforsch. Zeitschrift fur Immunitatsforschung (Immunobiology) = Z. Immunitatsforsch. Immunobiol. Zeitschrift fur Immunitatsforschung. Immunobiology = Z Immunitatsforsch Immunobiol Zeitschrift fur Immunitatsforschung und Experimentalle Therapie = Z. Immunitatsforsch. Exp. Ther. Zeitschrift fur Immunitatsforschung und experimentelle Therapie = Z Immun exp ther Zeitschrift Fur Immunitatsforschung Und Experimentelle Therapie = Z Immunitatsforsch Zeitschrift Fur Immunitatsforschung Und Experimentelle Therapie = Z. Immunitatsforsch. Zeitschrift fur Immunitats- und Allergieforschung = Z Immunitats Allergieforsch Zeitschrift Fur Immunitats-und Allergieforschung = Z Immun-und Allerg Zeitschrift Fur Immunitats-und Allergieforschung = Z. Immun-und. Allerg. Zeitschrift Fur Induktive Abstammungs Und Vererbungslehre = Z Indukt Abstamm Ver Zeitschrift Fur Induktive Abstammungs Und Vererbungslehre = Z. Indukt. Abstamm. Ver. Zeitschrift fur induktive Abstammungs- und Vererbungslehre = Z Indukt Abstamm Vererbungsl Zeitschrift fur Instrumentenkunde = Z. Instrumentenkd. Zeitschrift Fur Instrumentenkunde = Z Instrumentenkd Zeitschrift Fur Instrumentenkunde = Z. Instrumentenkd. Zeitschrift fur Jagdwissenschaft = Z Jagdwiss Zeitschrift Fur Jagdwissenschaft = Z Jagdwiss Zeitschrift Fur Jagdwissenschaft = Z. Jagdwiss. Zeitschrift für Jagdwissenschaft = Z. Jagdwiss. Zeitschrift fur Kardiologie. Supplementum = Z Kardiol Suppl Zeitschrift fur Kardiologie. Supplementum = Z. Kardiol. Suppl. Zeitschrift fur Kardiologie = Z Kardiol Zeitschrift fur Kardiologie = Z. Kardiol. Zeitschrift Fur Kardiologie=Z Kardiol;; Zeitschrift Fur Kardiologie = Z Kardiol Zeitschrift Fur Kardiologie = Z. Kardiol. Zeitschrift Fur Katalanistik = Z Katalan Zeitschrift Fur Katalanistik = Z. Katalan. Zeitschrift für Katholische Theologie = ZKTh Zeitschrift Fur Kinderchirurgie-surgery in Infancy and Childhood = Z Kinderchir Zeitschrift Fur Kinderchirurgie-surgery in Infancy and Childhood = Z. Kinderchir. Zeitschrift Fur Kinderchirurgie Und Grenzgebiete = Z Kinderchir Zeitschrift Fur Kinderchirurgie Und Grenzgebiete = Z. Kinderchir. Zeitschrift fur Kinderchirurgie und Grenzgebiete = Z Kinderchir Grenzgeb Zeitschrift fur Kinderchirurgie und Grenzgebiete = Z. Kinderchir. Grenzgeb. Zeitschrift fur Kinderchirurgie = Z. Kinderchir. Zeitschrift fur Kinderheilkunde = Z Kinderheilkd Zeitschrift fur Kinderheilkunde = Z. Kinderheilkd. Zeitschrift Fur Kinderheilkunde = Z Kinderheilkd Zeitschrift Fur Kinderheilkunde = Z. Kinderheilkd. Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie = Z Kinder Jugendpsychiatr Psychother Zeitschrift fur Kinder- und Jugendpsychiatrie und Psychotherapie = Z. Kinder. Jugendpsychiatr. Psychother. Zeitschrift Fur Kinder-und Jugendpsychiatrie Und Psychotherapie = Z Kinder Jug-psych Zeitschrift Fur Kinder-und Jugendpsychiatrie Und Psychotherapie = Z. Kinder. Jug-psych. Zeitschrift fur Kinder- und Jugendpsychiatrie = Z Kinder Jugendpsychiatr Zeitschrift fur Kinder- und Jugendpsychiatrie = Z. Kinder. Jugenpsychiatr. Zeitschrift Fur Kinder- Und Jugendpsychiatrie=Z Kinder Jugenpsychiatr;; Zeitschrift Fur Kinder-und Jugendpsychiatrie = Z Kinder Jug-psych Zeitschrift Fur Kinder-und Jugendpsychiatrie = Z. Kinder. Jug-psych. Zeitschrift für Kirchengeschichte = ZKG Zeitschrift fur Kirchengeschichte = Z Kirchengesch Zeitschrift Fur Kirchengeschichte = Z Kirchengesch Zeitschrift Fur Kirchengeschichte = Z. Kirchengesch. Zeitschrift Fur Klinische Chemie Und Klinische Biochemie = Z Klin Chem Klin Bio Zeitschrift Fur Klinische Chemie Und Klinische Biochemie = Z. Klin. Chem. Klin. Bio. Zeitschrift fur klinische Chemie und klinische Biochemie = Z Klin Chem Klin Biochem Zeitschrift fur Klinische Chemie und Klinische Biochemie = Z. Klin. Chem. Klin. Biochem. Zeitschrift fur Klinische Medicin = Z. Klin. Med. Zeitschrift fur klinische Medizin = Z Klin Med Zeitschrift fur Klinische Medizin = Z. Klin. Med. Zeitschrift Fur Klinische Medizin = Z Klin Med Zeitschrift Fur Klinische Medizin = Z. Klin. Med. Zeitschrift Fur Klinische Medizin-zkm = Z Klin Med Zeitschrift Fur Klinische Medizin-zkm = Z. Klin. Med. Zeitschrift Fur Klinische Psychologie-forschung Und Praxis = Z Klin Psychol-forsc Zeitschrift Fur Klinische Psychologie-forschung Und Praxis = Z. Klin. Psychol-forsc. Zeitschrift fur klinische Psychologie, Psychiatrie und Psychotherapie / im Auftrag der Gorres-Gesellschaft = Z Klin Psychol Psychiatr Psychother Zeitschrift Fur Klinische Psychologie Psychiatrie Und Psychotherapie = Z Klin Psychol Psych Zeitschrift Fur Klinische Psychologie Psychiatrie Und Psychotherapie = Z. Klin. Psychol. Psych. Zeitschrift fur Klinische Psychologie, Psychiatrie und Psychotherapie = Z. Klin. Psychol. Psychiatr. Psychother. Zeitschrift Fur Klinische Psychologie Psychiatrie Und Psychotherapie = Z Klin Psych Psychia Zeitschrift Fur Klinische Psychologie Psychiatrie Und Psychotherapie = Z. Klin. Psych. Psychia. Zeitschrift fur klinische Psychologie, Psychopathologie und Psychotherapie / im Auftrag der Gorres-Gesellschaft = Z Klin Psychol Psychopathol Psychother Zeitschrift Fur Klinische Psychologie Psychopathologie Und Psychotherapie = Z Klin Psychol Psych Zeitschrift Fur Klinische Psychologie Psychopathologie Und Psychotherapie = Z. Klin. Psychol. Psych. Zeitschrift fur Klinische Psychologie, Psychopathologie und Psychotherapie = Z. Klin. Psychol. Psychopathol. Psychother. Zeitschrift fur klinische Psychologie und Psychotherapie = Z Klin Psychol Psychother Zeitschrift fur Klinische Psychologie und Psychotherapie = Z. Klin. Psychol. Psychother. Zeitschrift Fur Klinische Psychologie Und Psychotherapie = Z Kl Psych Psychoth Zeitschrift Fur Klinische Psychologie Und Psychotherapie = Z. Kl. Psych. Psychoth. Zeitschrift fur Krankenpflege. Revue suisse des infirmieres = Z Krankenpfl Zeitschrift fur Krankenpflege = Z. Krankenpfl. Zeitschrift fur Krebsforschung und klinische Onkologie. Cancer research and clinical oncology = Z Krebsforsch Klin Onkol Cancer Res Clin Oncol Zeitschrift fur Krebsforschung und Klinische Onkologie (Cancer Research and Clinical Oncology) = Z. Krebsforsch. Klin. Onkol. Cancer Res. Clin. Oncol. Zeitschrift Fur Krebsforschung Und Klinische Onkologie = Z Krebsforsch Klin O Zeitschrift Fur Krebsforschung Und Klinische Onkologie = Z. Krebsforsch. Klin. O. Zeitschrift fur Krebsforschung = Z Krebsforsch Zeitschrift fur Krebsforschung = Z. Krebsforsch. Zeitschrift Fur Krebsforschung = Z Krebsforsch Klin O Zeitschrift Fur Krebsforschung = Z. Krebsforsch. Klin. O. Zeitschrift fur Kreislaufforschung = Z Kreislaufforsch Zeitschrift fur Kreislaufforschung = Z. Kreislaufforsch. Zeitschrift Fur Kreislaufforschung = Z Kreislaufforsch Zeitschrift Fur Kreislaufforschung = Z. Kreislaufforsch. Zeitschrift fur Kristallograhie - New Crystral Stuctures = Z. Kristallogr. - New Cryst. Struct. Zeitschrift fur Kristallograhie = Z. Kristallogr. Zeitschrift Fur Kristallographie Kristallgeometrie Kristallphysik Kristallchemie = Z Kristallogr Krist Zeitschrift Fur Kristallographie Kristallgeometrie Kristallphysik Kristallchemie = Z. Kristallogr. Krist. Zeitschrift fur Kristallographie, Kristallgeometrie, Kristallphysik, Kristallchemie = Z. Kristallogr. Kristallgeom. Kristallphys. Kristallchem. Zeitschrift für Kristallographie, Kristallgeometrie, Kristallphysik, Kristallchemie = Z. Kristallogr. Kristallgeom. Kristallphys. Kristallchem. Zeitschrift für Kristallographie - New Crystal Structures = Z. Kristallogr. - New Cryst. Struct. Zeitschrift Fur Kristallographie-new Crystal Structures = Z Krist-new Cryst St Zeitschrift Fur Kristallographie-new Crystal Structures = Z. Krist-new. Cryst. St. Zeitschrift für Kristallographie = Z. Krist. Zeitschrift Fur Kristallographie = Z Kristallogr Zeitschrift Fur Kristallographie = Z. Kristallogr. Zeitschrift für Kristallographie = Z. Kristallogr. Zeitschrift Fur Krystallographie Und Mineralogie = Z Krystallogr Minera Zeitschrift Fur Krystallographie Und Mineralogie = Z. Krystallogr. Minera. Zeitschrift für Kulturtechnik und Flurbereinigung = Z. Kult.tech. Flurbereinig. Zeitschrift Fur Kulturtechnik Und Flurbereinigung = Z Kulturtech Flurber Zeitschrift Fur Kulturtechnik Und Flurbereinigung = Z. Kulturtech. Flurber. Zeitschrift für Kunstgeschichte = ZKuGesch Zeitschrift fur Kunstgeschichte = Z Kunstgesch Zeitschrift Fur Kunstgeschichte = Z Kunstgeschichte Zeitschrift Fur Kunstgeschichte = Z. Kunstgeschichte Zeitschrift Fur Laryngologie Rhinologie Otologie Und Ihre Grenzgebiete = Z Laryngol Rhino Zeitschrift Fur Laryngologie Rhinologie Otologie Und Ihre Grenzgebiete = Z. Laryngol. Rhino. Zeitschrift fur Laryngologie, Rhinologie, Otologie und ihre Grenzgebiete = Z Laryngol Rhinol Otol Zeitschrift fur Laryngologie, Rhinologie, Otologie und Ihre Grenzgebiete = Z. Laryngol. Rhinol. Otol. Zeitschrift Fur Lebensmittel-untersuchung Und-forschung A-food Research and Technology = Z Lebensm Unters F A Zeitschrift Fur Lebensmittel-untersuchung Und-forschung A-food Research and Technology = Z. Lebensm. Unters. F. A. Zeitschrift Fur Lebensmittel-untersuchung Und-forschung = Z Lebensm Unters For Zeitschrift Fur Lebensmittel-untersuchung Und-forschung = Z. Lebensm. Unters. For. Zeitschrift fur Lebensmittel-Untersuchung und -Forschung = Z Lebensm Unters Forsch Zeitschrift fur Lebensmittel-Untersuchung und -Forschung = Z. Lebensm. Unters. Forsch. Zeitschrift für Lebensmittel-Untersuchung und -Forschung = Z. Lebensm.-Unters. Forsch. Zeitschrift fur Lymphologie. Journal of lymphology = Z Lymphol Zeitschrift fur Lymphologie (Journal of Lymphology) = Z. Lymphol. Zeitschrift Fur Lymphologie-journal of Lymphology = Z Lymphol-j Lymphol Zeitschrift Fur Lymphologie-journal of Lymphology = Z. Lymphol-j. Lymphol. Zeitschrift Fur Mathematische Logik Und Grundlagen Der Mathematik = Z Math Logik Zeitschrift Fur Mathematische Logik Und Grundlagen Der Mathematik = Z. Math. Logik Zeitschrift fur medizinische Isotopenforschung und deren Grenzgebiete = Z Med Isotopenforsch Deren Grenzgeb Zeitschrift fur Medizinische Isotopenforschung und Deren Grenzgebiete = Z. Med. Isotopenforsch. Deren Grenzgeb. Zeitschrift fur medizinische Laboratoriumsdiagnostik = Z Med Lab Diagn Zeitschrift fur Medizinische Laboratoriumsdiagnostik = Z. Med. Lab. Diagn. Zeitschrift fur Medizinische Laboratoriumsdiagnostik = Z. Med. Laboratoriumsdiagn. Zeitschrift fur medizinische Labortechnik = Z Med Labortech Zeitschrift fur Medizinische Labortechnik = Z. Med. Labortech. Zeitschrift fur medizinische Mikrobiologie und Immunologie = Z Med Mikrobiol Immunol Zeitschrift fur Medizinische Mikrobiologie und Immunologie = Z. Med. Mikrobiol. Immunol. Zeitschrift fur medizinische Physik = Z Med Phys Zeitschrift fur Medizinische Physik = Z. Med. Phys. Zeitschrift Fur Medizinische Physik = Z Med Phys Zeitschrift Fur Medizinische Physik = Z. Med. Phys. Zeitschrift fur medizinische Psychologie : ZMP = Z Med Psychol Zeitschrift Fur Menschliche Vererbungs-und Konstitutionslehre = Z Mensch Vererb Kons Zeitschrift Fur Menschliche Vererbungs-und Konstitutionslehre = Z. Mensch. Vererb. Kons. Zeitschrift fur menschliche Vererbungs- und Konstitutionslehre = Z Mensch Vererb Konstitutionsl Zeitschrift fur MetaIlkunde = Z. MetaIlkd. Zeitschrift Fur Metallkunde = Z Metallkd Zeitschrift Fur Metallkunde = Z. Metallkd. Zeitschrift für Metallkunde = Z. Metallkd. Zeitschrift für Meteorologie = Z. Meteor. Zeitschrift Fur Meteorologie = Z Meteorol Zeitschrift Fur Meteorologie = Z. Meteorol. Zeitschrift Fur Mikroskopisch-anatomische Forschung = Z Mikrosk Anat Forsc Zeitschrift Fur Mikroskopisch-anatomische Forschung = Z. Mikrosk. Anat. Forsc. Zeitschrift fur mikroskopisch-anatomische Forschung = Z Mikrosk Anat Forsch Zeitschrift fur Mikroskopisch-Anatomische Forschung = Z. Mikrosk. Anat. Forsch. Zeitschrift Fur Morphologie Der Tiere = Z Morphol Tiere Zeitschrift Fur Morphologie Der Tiere = Z. Morphol. Tiere Zeitschrift fur Morphologie und Anthropologie = Z Morphol Anthropol Zeitschrift fur Morphologie und Anthropologie = Z. Morphol. Anthropol. Zeitschrift Fur Morphologie Und Anthropologie=Z Morphol Anthropol;; Zeitschrift Fur Morphologie Und Anthropologie = Z Morphol Anthropol Zeitschrift Fur Morphologie Und Anthropologie = Z. Morphol. Anthropol. Zeitschrift für Mykologie = Z. Mykol. Zeitschrift Fur Nationalokonomie-journal of Economics = Z Nationalokonomie Zeitschrift Fur Nationalokonomie-journal of Economics = Z. Nationalokonomie. Zeitschrift Fur Nationalokonomie = Z Nationalokon Zeitschrift Fur Nationalokonomie = Z. Nationalokon. Zeitschrift für Nationalökonomie=Z. Nationalökon. Zeitschrift fur Naturforschung A: Journal of Physical Sciences = Z. Naturforsch., A: Phys. Sci. Zeitschrift für Naturforschung, A: Physical Sciences = Z. Naturforsch., A: Phys. Sci. Zeitschrift für Naturforschung, B: Chemical Sciences = Z. Naturforsch., B: Chem. Sci. Zeitschrift fur Naturforschung B: Journal of Chemical Sciences = Z. Naturforsch., B: Chem. Sci. Zeitschrift Fur Naturforschung C-a Journal of Biosciences = Z Naturforsch C Zeitschrift Fur Naturforschung C-a Journal of Biosciences = Z. Naturforsch. C. Zeitschrift für Naturforschung, C: Biosciences = Z. Naturforsch., C: Biosci. Zeitschrift fur Naturforschung. C, Journal of biosciences = Z Naturforsch [C] Zeitschrift fur Naturforschung C: Journal of Biosciences = Z. Naturforsch., C: Biosci. Zeitschrift für Naturforschung, C: Journal of Biosciences = Z. Naturforsch., C: J. Biosci. Zeitschrift Fur Naturforschung Part A-astrophysik Physik Und Physikalische Chemie = Z Naturforsch Pt A Zeitschrift Fur Naturforschung Part A-astrophysik Physik Und Physikalische Chemie = Z. Naturforsch. Pt. A. Zeitschrift Fur Naturforschung Part B-chemie Biochemie Biophysik Biologie Und Verwandten Gebiete = Z Naturforsch Pt B Zeitschrift Fur Naturforschung Part B-chemie Biochemie Biophysik Biologie Und Verwandten Gebiete = Z. Naturforsch. Pt. B. Zeitschrift Fur Naturforschung Section A-a Journal of Physical Sciences = Z Naturforsch A Zeitschrift Fur Naturforschung Section A-a Journal of Physical Sciences = Z. Naturforsch. A. Zeitschrift Fur Naturforschung Section B-a Journal of Chemical Sciences = Z Naturforsch B Zeitschrift Fur Naturforschung Section B-a Journal of Chemical Sciences = Z. Naturforsch. B. Zeitschrift Fur Naturforschung Section C-a Journal of Biosciences = Z Naturforsch C Zeitschrift Fur Naturforschung Section C-a Journal of Biosciences = Z. Naturforsch. C. Zeitschrift fur Naturforschung. Section C, Biosciences = Z. Naturforsch. [C] Zeitschrift fur Naturforschung. Section C: Biosciences = Z Naturforsch [C] Zeitschrift fur Naturforschung. Section C, Journal of Biosciences = Z. Naturforsch. [C] Zeitschrift Fur Naturforschung. Section C. Journal of Biosciences=Z Naturforsch [C];; Zeitschrift fur Naturforschung. Teil B. Anorganische Chemie, organische Chemie, Biochemie, Biophysik, Biologie = Z Naturforsch [B] Zeitschrift fur Naturforschung. Teil B, Anorganische Chemie, Organische Chemie, Biochemie, Biophysik, Biologie = Z. Naturforsch. [B] Zeitschrift fur Naturforschung. Teil B, Chemie, Biochemie, Biophysik, Biologie und Verwandte Gebiete = Z. Naturforsch. B Zeitschrift fur Naturforschung. Teil B: Chemie, Biochemie, Biophysik, Biologie = Z Naturforsch B Zeitschrift fur Naturforschung. Teil C: Biochemie, Biophysik, Biologie, Virologie = Z Naturforsch [C] Zeitschrift für Naturforschung = Z. Nat.forsch. Zeitschrift Fur Naturforschung = Z Naturforsch Zeitschrift Fur Naturforschung = Z. Naturforsch. Zeitschrift fur naturwissenschaftlichmedizinische Grundlagenforschung = Z Naturwiss Med Grundlagenforsch Zeitschrift fur Naturwissenschaftlich-Medizinische Grundlagenforschung = Z. Naturwiss. Med. Grundlagenforsch. Zeitschrift Fur Naturwissenschaftlich-medizinische Grundlagenforschung = Z Nat Wiss-med Grund Zeitschrift Fur Naturwissenschaftlich-medizinische Grundlagenforschung = Z. Nat. Wiss-med. Grund. Zeitschrift fur Neurologie = Z Neurol Zeitschrift fur Neurologie = Z. Neurol. Zeitschrift Fur Neurologie = Z Neurol Zeitschrift Fur Neurologie = Z. Neurol. Zeitschrift Fur Neuropsychologie = Z Neuropsychol Zeitschrift Fur Neuropsychologie = Z. Neuropsychol. Zeitschrift für Numismatik = ZfNum Zeitschrift für Ökologie und Naturschutz = Z. Ökol. Nat.schutz Zeitschrift Fur Orthopadie Und Ihre Grenzgebiete = Z Orthop Grenzgeb Zeitschrift Fur Orthopadie Und Ihre Grenzgebiete = Z. Orthop. Grenzgeb. Zeitschrift fur Orthopadie und ihre Grenzgebiete = Z Orthop Ihre Grenzgeb Zeitschrift fur Orthopadie und Ihre Grenzgebiete = Z. Orthop. Ihre Grenzgeb. Zeitschrift Fur Orthopadie Und Ihre Grenzgebiete=Z Orthop Ihre Grenzgeb;; Zeitschrift fur Orthopadie und Unfallchirurgie = Z Orthop Unfall Zeitschrift Fur Orthopadie Und Unfallchirurgie = Z Orthop Unfallchir Zeitschrift Fur Orthopadie Und Unfallchirurgie = Z. Orthop. Unfallchir. Zeitschrift fur Ostforschung = Z Ostforsch Zeitschrift Fur Padagogik = Z Padagogik Zeitschrift Fur Padagogik = Z. Padagogik Zeitschrift Fur Padagogische Psychologie = Z Padagog Psychol Zeitschrift Fur Padagogische Psychologie = Z. Padagog. Psychol. Zeitschrift fur Papyrologie und Epigraphik = Z Papyrologie Epigraphik Zeitschrift für Papyrologie und Epigraphik = ZPE Zeitschrift für Papyrologie und Epigraphik = ZPE Zeitschrift Fur Parapsychologie Und Grenzgebiete Der Psychologie = Z Parapsychol Gr Psy Zeitschrift Fur Parapsychologie Und Grenzgebiete Der Psychologie = Z. Parapsychol. Gr. Psy. Zeitschrift fur Parasitenkunde (Berlin, Germany) = Z Parasitenkd Zeitschrift Fur Parasitenkunde-parasitology Research = Parasitol Res Zeitschrift Fur Parasitenkunde-parasitology Research = Parasitol. Res. Zeitschrift Fur Parasitenkunde-parasitology Research = Z Parasitenkd Zeitschrift Fur Parasitenkunde-parasitology Research = Z. Parasitenkd. Zeitschrift Fur Parasitenkunde = Z Parasitenk Zeitschrift Fur Parasitenkunde = Z. Parasitenk. Zeitschrift fur Parasitenkunde = Z. Parasitenkd. Zeitschrift Fur Personalforschung = Z Personalforsch Zeitschrift Fur Personalforschung = Z. Personalforsch. Zeitschrift Fur Personalpsychologie = Z Personalpsychol Zeitschrift Fur Personalpsychologie = Z. Personalpsychol. Zeitschrift fur Pflanzenernahrung Dungung Bodenkunde = Z. Pflanzenernahr. Dung. Bodenkd. Zeitschrift Fur Pflanzenernahrung Und Bodenkunde = Z Pflanz Bodenkunde Zeitschrift Fur Pflanzenernahrung Und Bodenkunde = Z. Pflanz. Bodenkunde Zeitschrift fur Pflanzenernahrung und Bodenkunde = Z. Pflanzenernahr. Bodenkd. Zeitschrift für Pflanzenernährung und Bodenkunde = Z. Pflanzenernähr. Bodenkd. Zeitschrift Fur Pflanzenkrankheiten Und Pflanzenschutz-journal of Plant Diseases and Protection = Z Pflanzenk Pflanzen Zeitschrift Fur Pflanzenkrankheiten Und Pflanzenschutz-journal of Plant Diseases and Protection = Z. Pflanzenk. Pflanzen. Zeitschrift fur Pflanzenkrankheiten und Pflanzenschutz = Z. Pflanzenkrankh. Pflanzenschutz Zeitschrift für Pflanzenkrankheiten und Pflanzenschutz = Z. Pflanzenkrankh. Pflanzenschutz Zeitschrift fur Pflanzenphysiologie = Z. Pflanzenphysiol. Zeitschrift Fur Pflanzenphysiologie = Z Pflanzenphysiol Zeitschrift Fur Pflanzenphysiologie = Z. Pflanzenphysiol. Zeitschrift Fur Pflanzenzuchtung-journal of Plant Breeding = Z Pflanzenzucht Zeitschrift Fur Pflanzenzuchtung-journal of Plant Breeding = Z. Pflanzenzucht. Zeitschrift Fur Pflanzenzuchtung = Z Pflanzenzuchtung Zeitschrift Fur Pflanzenzuchtung = Z. Pflanzenzuchtung Zeitschrift für Philosophische Forschung = ZPhF Zeitschrift fur philosophische Forschung = Z Philos Forsch Zeitschrift Fur Philosophische Forschung = Z Philos Forsch Zeitschrift Fur Philosophische Forschung = Z. Philos. Forsch. Zeitschrift für Photogrammetrie und Fernerkundung = Z. Photogramm. Fernerkund. Zeitschrift fur Physik A: Atomes and Nuclei = Z. Phys. A: At. Nucl. Zeitschrift fur Physik. A, Atomic nuclei = Z Phys A At Nucl Zeitschrift Fur Physik A-hadrons and Nuclei = Z Phys A-hadron Nucl Zeitschrift Fur Physik A-hadrons and Nuclei = Z. Phys. A-hadron. Nucl. Zeitschrift fur Physik A: Hadrons and Nuclei = Z. Phys. A: Hadrons Nucl. Zeitschrift für Physik A: Hadrons and Nuclei = Z. Phys. A: Hadrons Nucl. Zeitschrift Fur Physikalische Chemie-abteilung A-chemische Thermodynamik Kinetik Elektrochemie Eigenschaftslehre = Z Phys Chem A-chem T Zeitschrift Fur Physikalische Chemie-abteilung A-chemische Thermodynamik Kinetik Elektrochemie Eigenschaftslehre = Z. Phys. Chem. A-chem. T. Zeitschrift fur Physikalische Chemie, Abteilung A = Z. Phys. Chem. Abt. A: Zeitschrift für Physikalische Chemie, Abteilung A = Z. Phys. Chem. Abt. A: Zeitschrift Fur Physikalische Chemie-abteilung B-chemie Der Elementarprozesse Aufbau Der Materie = Z Phys Chem B-chem E Zeitschrift Fur Physikalische Chemie-abteilung B-chemie Der Elementarprozesse Aufbau Der Materie = Z. Phys. Chem. B-chem. E. Zeitschrift fur Physikalische Chemie, Abteilung B = Z. Phys. Chem. Abt. B: Zeitschrift für Physikalische Chemie, Abteilung B = Z. Phys. Chem. Abt. B: Zeitschrift Fur Physikalische Chemie-frankfurt = Z Phys Chem Neue Fol Zeitschrift Fur Physikalische Chemie-frankfurt = Z. Phys. Chem. Neue. Fol. Zeitschrift Fur Physikalische Chemie-international Journal of Research in Physical Chemistry & Chemical Physics = Z Phys Chem Zeitschrift Fur Physikalische Chemie-international Journal of Research in Physical Chemistry & Chemical Physics = Z. Phys. Chem. Zeitschrift Fur Physikalische Chemie-leipzig = Z Phys Chem-leipzig Zeitschrift Fur Physikalische Chemie-leipzig = Z. Phys. Chem-leipzig. Zeitschrift für Physikalische Chemie (Muenchen, Germany) = Z. Phys. Chem. (Muenchen, Ger.) Zeitschrift Fur Physikalische Chemie Neue Folge = Z Phys Chem Neue Fol Zeitschrift Fur Physikalische Chemie Neue Folge = Z. Phys. Chem. Neue Fol. Zeitschrift Fur Physikalische Chemie--stochiometrie Und Verwandtschaftslehre = Z Phys Chem-stoch Ve Zeitschrift Fur Physikalische Chemie--stochiometrie Und Verwandtschaftslehre = Z. Phys. Chem-stoch. Ve. Zeitschrift Fur Physikalische Chemie-stochiometrie Und Verwandtschaftslehre = Z Phys Chem-stoch Ve Zeitschrift Fur Physikalische Chemie-stochiometrie Und Verwandtschaftslehre = Z. Phys. Chem-stoch. Ve. Zeitschrift fur Physikalische Chemie, Stoeechiometrie und Verwandschaftslehre = Z. Phys. Chem. Stoechiom. Verwandtschafts. Zeitschrift für Physikalische Chemie, Stoeechiometrie und Verwandschaftslehre = Z. Phys. Chem. Stoechiom. Verwandtschafts. Zeitschrift Fur Physikalische Chemie-wiesbaden = Z Phys Chem Neue Fol Zeitschrift Fur Physikalische Chemie-wiesbaden = Z. Phys. Chem. Neue. Fol. Zeitschrift fur Physikalische Chemie = Z. Phys. Chem. Zeitschrift fur Physik B: Condensed Matter and Quanta = Z. Phys. B: Condens. Matter Quanta Zeitschrift fur Physik B: Condensed Matter = Z. Phys. B: Condens. Matter Zeitschrift für Physik B: Condensed Matter = Z. Phys. B: Condens. Matter Zeitschrift Fur Physik B-condensed Matter = Z Phys B Con Mat Zeitschrift Fur Physik B-condensed Matter = Z. Phys. B. Con. Mat. Zeitschrift fur Physik C: Particle Fields = Z. Phys. C: Part. Fields Zeitschrift für Physik C: Particle Fields = Z. Phys. C: Part. Fields Zeitschrift Fur Physik C-particles and Fields = Z Phys C Part Fields Zeitschrift Fur Physik C-particles and Fields = Z. Phys. C. Part. Fields Zeitschrift fur Physik D: Atoms, Molecules and Clusters = Z. Phys. D: At. Mol. Clusters Zeitschrift für Physik D: Atoms, Molecules and Clusters = Z. Phys. D: At., Mol. Clusters Zeitschrift Fur Physik D-atoms Molecules and Clusters = Z Phys D Atom Mol Cl Zeitschrift Fur Physik D-atoms Molecules and Clusters = Z. Phys. D. Atom. Mol. Cl. Zeitschrift fur Physik = Z. Angew. Phys. Zeitschrift für Physik = Z. Angew. Phys. Zeitschrift Fur Physik = Z Phys Zeitschrift Fur Physik = Z. Phys. Zeitschrift für Physik = Z. Phys. C Zeitschrift fur Physiologische Chemie = Z. Physiol. Chem. Zeitschrift für Physiologische Chemie = Z. Physiol. Chem. Zeitschrift fur Physiotherapie = Z Physiother Zeitschrift fur Physiotherapie = Z. Physiother. Zeitschrift fur Phytotherapie : offizielles Organ der Ges. f. Phytotherapie e.V = Z Phytother Zeitschrift für Pilzkunde = Z. Pilzkd. Zeitschrift fur plastische Chirurgie = Z Plast Chir Zeitschrift fur Plastische Chirurgie = Z. Plast. Chir. Zeitschrift fur Politik = Z Polit Zeitschrift Fur Politik = Z Polit Zeitschrift Fur Politik = Z. Polit. Zeitschrift fur praktische Anasthesie und Wiederbelebung = Z Prakt Anasth Zeitschrift fur Praktische Anasthesie und Wiederbelebung = Z. Prakt. Anasth. Zeitschrift fur praktische Anasthesie, Wiederbelebung und Intensivtherapie = Z Prakt Anasth Wiederbeleb Intensivther Zeitschrift fur Praktische Anasthesie, Wiederbelebung und Intensivtherapie = Z. Prakt. Anasth. Wiederbeleb. Intensivther. Zeitschrift Fur Praktische Anasthesie = Z Prakt Anast Zeitschrift Fur Praktische Anasthesie = Z. Prakt. Anast. Zeitschrift fur Praventivmedizin. Revue de medecine preventive = Z Praventivmed Zeitschrift fur Praventivmedizin = Z. Praventivmed. Zeitschrift Fur Psychiatrie Psychologie Und Psychotherapie = Z Psychiatr Psych Ps Zeitschrift Fur Psychiatrie Psychologie Und Psychotherapie = Z. Psychiatr. Psych. Ps. Zeitschrift Fur Psychologie-journal of Psychology = Z Psychol Zeitschrift Fur Psychologie-journal of Psychology = Z. Psychol. Zeitschrift fur Psychologie mit Zeitschrift fur angewandte Psychologie = Z Psychol Z Angew Psychol Zeitschrift fur Psychologie mit Zeitschrift fur Angewandte Psychologie = Z. Psychol. Z. Angew. Psychol. Zeitschrift Fur Psychologie Und Physiologie Der Sinnesorgane = Z Psychol Physiol Si Zeitschrift Fur Psychologie Und Physiologie Der Sinnesorgane = Z. Psychol. Physiol. Si. Zeitschrift Fur Psychologie = Z Psychol Zeitschrift Fur Psychologie = Z. Psychol. Zeitschrift Fur Psychologie = Z Psychologie Zeitschrift Fur Psychologie = Z. Psychologie Zeitschrift Fur Psychosomatische Medizin Und Psychoanalyse = Z Psychosom Med Psyc Zeitschrift Fur Psychosomatische Medizin Und Psychoanalyse = Z. Psychosom. Med. Psyc. Zeitschrift fur Psychosomatische Medizin und Psychoanalyse = Z Psychosom Med Psychoanal Zeitschrift fur Psychosomatische Medizin und Psychoanalyse = Z. Psychosom. Med. Psychoanal. Zeitschrift Fur Psychosomatische Medizin Und Psychotherapie = Z Psychosom Med Psyc Zeitschrift Fur Psychosomatische Medizin Und Psychotherapie = Z. Psychosom. Med. Psyc. Zeitschrift fur Psychosomatische Medizin und Psychotherapie = Z Psychosom Med Psychother Zeitschrift fur Psychosomatische Medizin und Psychotherapie = Z. Psychosom. Med. Psychother. Zeitschrift fur Psycho-somatische Medizin = Z Psychosom Med Zeitschrift Fur Psychotherapie Und Medizinische Psychologie = Z Psychother Med Psy Zeitschrift Fur Psychotherapie Und Medizinische Psychologie = Z. Psychother. Med. Psy. Zeitschrift fur Psychotherapie und medizinische Psychologie = Z Psychother Med Psychol Zeitschrift fur Psychotherapie und Medizinische Psychologie = Z. Psychother. Med. Psychol. Zeitschrift fur Rechtsmedizin. Journal of legal medicine = Z Rechtsmed Zeitschrift fur Rechtsmedizin (Journal of Legal Medicine) = Z. Rechtsmed. Zeitschrift Fur Rechtsmedizin-journal of Legal Medicine = Z Rechtsmed Zeitschrift Fur Rechtsmedizin-journal of Legal Medicine = Z. Rechtsmed. Zeitschrift fur Religions- und Geistesgeschichte = Z Relig Geistesgesch Zeitschrift Fur Religions-und Geistesgeschichte = Z Relig Geistesgesch Zeitschrift Fur Religions-und Geistesgeschichte = Z. Relig. Geistesgesch. Zeitschrift für Religions- und Geistesgeschichte = ZRGG Zeitschrift fur Rheumaforschung = Z Rheumaforsch Zeitschrift fur Rheumaforschung = Z. Rheumaforsch. Zeitschrift Fur Rheumaforschung = Z Rheumaforsch Zeitschrift Fur Rheumaforschung = Z. Rheumaforsch. Zeitschrift fur Rheumatologie = Z Rheumatol Zeitschrift fur Rheumatologie = Z. Rheumatol. Zeitschrift Fur Rheumatologie=Z Rheumatol;; Zeitschrift Fur Rheumatologie = Z Rheumatol Zeitschrift Fur Rheumatologie = Z. Rheumatol. Zeitschrift Fur Romanische Philologie = Z Roman Philol Zeitschrift Fur Romanische Philologie = Z. Roman. Philol. Zeitschrift fur romanische Philologie = Z Rom Philol Zeitschrift für Romanische Philologie = ZRPh Zeitschrift Fur Saugetierkunde-international Journal of Mammalian Biology = Z Saugetierkd Zeitschrift Fur Saugetierkunde-international Journal of Mammalian Biology = Z. Saugetierkd. Zeitschrift fur Saugetierkunde = Z Saugetierkd Zeitschrift für Säugetierkunde = Z. Säugetierkd. Zeitschrift für Schweizerische Archäologie und Kunstgeschichte = ZSchwA Zeitschrift für Semiotik = ZS Zeitschrift Fur Semiotik = Z Semiotik Zeitschrift Fur Semiotik = Z. Semiotik Zeitschrift Fur Sexualforschung = Z Sexualforsch Zeitschrift Fur Sexualforschung = Z. Sexualforsch. Zeitschrift Fur Slavische Philologie = Z Slav Philol Zeitschrift Fur Slavische Philologie = Z. Slav. Philol. Zeitschrift Fur Slawistik = Z Slawistik Zeitschrift Fur Slawistik = Z. Slawistik Zeitschrift Fur Sozialpsychologie = Z Sozialpsychol Zeitschrift Fur Sozialpsychologie = Z. Sozialpsychol. Zeitschrift fur Sozialreform = Z Sozialreform Zeitschrift Fur Soziologie Der Erziehung Und Sozialisation = Z Soziol Erzieh Sozi Zeitschrift Fur Soziologie Der Erziehung Und Sozialisation = Z. Soziol. Erzieh. Sozi. Zeitschrift fur Soziologie = Z Soziol Zeitschrift Fur Soziologie = Z Soziol Zeitschrift Fur Soziologie = Z. Soziol. Zeitschrift Fur Sportpsychologie = Z Sportpsychol Zeitschrift Fur Sportpsychologie = Z. Sportpsychol. Zeitschrift Fur Sprachwissenschaft = Z Sprachwiss Zeitschrift Fur Sprachwissenschaft = Z. Sprachwiss. Zeitschrift fur Stomatologie (1984) = Z Stomatol Zeitschrift fur Stomatologie = Z. Stomatol. Zeitschrift fur Technische Physik = Z. Tech. Phys. Zeitschrift Fur Theologie Und Kirche = Z Theol Kirche Zeitschrift Fur Theologie Und Kirche = Z. Theol. Kirche Zeitschrift Fur Tierphysiologie Tierernahrung Und Futtermittelkunde-journal of Animal Physiology and Animal Nutrition = Z Tierphysiol Tierer Zeitschrift Fur Tierphysiologie Tierernahrung Und Futtermittelkunde-journal of Animal Physiology and Animal Nutrition = Z. Tierphysiol. Tierer. Zeitschrift fur Tierphysiologie, Tierernahrung und Futtermittelkunde = Z Tierphysiol Tierernahr Futtermittelkd Zeitschrift fur Tierphysiologie, Tierernahrung und Futtermittelkunde = Z. Tierphysiol. Tierernahr. Futtermittelkd. Zeitschrift Fur Tierpsychologie-journal of Comparative Ethology = Z Tierpsychol Zeitschrift Fur Tierpsychologie-journal of Comparative Ethology = Z. Tierpsychol. Zeitschrift fur Tierpsychologie = Z Tierpsychol Zeitschrift fur Tierpsychologie = Z. Tierpsychol. Zeitschrift für Tierpsychologie = Z. Tierpsychol. Zeitschrift Fur Tierzuchtung Und Zuchtungsbiologie-journal of Animal Breeding and Genetics = Z Tierz Zuchtungsbio Zeitschrift Fur Tierzuchtung Und Zuchtungsbiologie-journal of Animal Breeding and Genetics = Z. Tierz. Zuchtungsbio. Zeitschrift fur Tierzuchtung und Zuchtungsbiologie : Organ der Reichsarbeitsgemeinschaft Tierzucht im Forschungsdienst = Z Tierzuecht Zuechtungsbiol Zeitschrift fur Tierzuchtung und Zuchtungsbiologie = Z. Tierzuecht. Zuechtungsbiol. Zeitschrift Fur Tropenmedizin Und Parasitologie = Z Tropenmed Parasit Zeitschrift Fur Tropenmedizin Und Parasitologie = Z. Tropenmed. Parasit. Zeitschrift fur Tropenmedizin und Parasitologie = Z Tropenmed Parasitol Zeitschrift fur Tropenmedizin und Parasitologie = Z. Tropenmed. Parasitol. Zeitschrift fur Tuberkulose und Erkrankungen der Thoraxorgane = Z Tuberk Erkr Thoraxorg Zeitschrift fur Tuberkulose und Erkrankungen der Thoraxorgane = Z. Tuberk. Erkr. Thoraxorg. Zeitschrift fur Tuberkulose = Z Tuberk Zeitschrift fur Unfallchirurgie und Versicherungsmedizin = Z. Unfallchir. Versicherungsmed. Zeitschrift fur Unfallchirurgie, Versicherungsmedizin und Berufskrankheiten = Z. Unfallchir. Versicherungsmed. Berufskr. Zeitschrift fur Unfallmedizin und Berufskrankheiten. Revue de medecine des accidents et des maladies professionelles = Z Unfallmed Berufskr Zeitschrift fur Unfallmedizin und Berufskrankheiten = Z. Unfallmed. Berufskr. Zeitschrift fur Urologie und Nephrologie = Z Urol Nephrol Zeitschrift fur Urologie und Nephrologie = Z. Urol. Nephrol. Zeitschrift Fur Urologie Und Nephrologie = Z Urol Nephrol Zeitschrift Fur Urologie Und Nephrologie = Z. Urol. Nephrol. Zeitschrift fur Urologie = Z Urol Zeitschrift Fur Vererbungslehre = Z Verebungsl Zeitschrift Fur Vererbungslehre = Z. Verebungsl. Zeitschrift fur Vererbungslehre = Z Vererbungsl Zeitschrift fur Vererbungslehre = Z. Vererbungsl. Zeitschrift Fur Vergleichende Physiologie = Z Vergl Physiol Zeitschrift Fur Vergleichende Physiologie = Z. Vergl. Physiol. Zeitschrift für vergleichende Sprachforschung = ZVerglSprF Zeitschrift für Vergleichende Sprachforschung = ZVS Zeitschrift fur Versuchstierkunde = Z Versuchstierkd Zeitschrift fur Versuchstierkunde = Z. Versuchstierkd. Zeitschrift Fur Versuchstierkunde = Z Versuchstierkd Zeitschrift Fur Versuchstierkunde = Z. Versuchstierkd. Zeitschrift fur Vitamin- Hormon- und Fermentforschung = Z. Vitam. Horm. Fermentforsch. Zeitschrift fur Vitamin-, Hormon- und Fermentforschung = Z Vitam Horm Fermentforsch Zeitschrift Fur Volkskunde = Z Volkskunde Zeitschrift Fur Volkskunde = Z. Volkskunde Zeitschrift Fur Wahrscheinlichkeitstheorie Und Verwandte Gebiete = Z Wahrscheinlichkeit Zeitschrift Fur Wahrscheinlichkeitstheorie Und Verwandte Gebiete = Z. Wahrscheinlichkeit. Zeitschrift Fur Wasser- Und Abwasser-forschung-journal for Water and Wastewater Research-acta Hydrochimica Et Hydrobiologica = Z Wasser-acta Hydroc Zeitschrift Fur Wasser- Und Abwasser-forschung-journal for Water and Wastewater Research-acta Hydrochimica Et Hydrobiologica = Z. Wasser-acta. Hydroc. Zeitschrift Fur Wasser Und Abwasser Forschung-journal for Water and Wastewater Research = Z Wasser Abwass For Zeitschrift Fur Wasser Und Abwasser Forschung-journal for Water and Wastewater Research = Z. Wasser Abwass. For. Zeitschrift fur Wasser- und Abwasserforschung = Z. Wasser Abwasser-Forsch. Zeitschrift für Wasser- und Abwasserforschung = Z. Wasser Wasser-Forsch. Zeitschrift für Weltforstwirtschaft = Z. Weltforstwirtsch. Zeitschrift Fur Werkstofftechnik-materials Technology and Testing = Z Werkstofftech Zeitschrift Fur Werkstofftechnik-materials Technology and Testing = Z. Werkstofftech. Zeitschrift Fur Wirtschaftsgeographie = Z Wirtsch Zeitschrift Fur Wirtschaftsgeographie = Z. Wirtsch. Zeitschrift Fur Wirtschaftsgeographie = Z Wirtschaftsgeogr Zeitschrift Fur Wirtschaftsgeographie = Z. Wirtschaftsgeogr. Zeitschrift fur Wirtschaftsgeographie = Z Wirtschgeogr Zeitschrift für Wirtschaftspolitik=Z. Wirtschaftspolitik Zeitschrift fur Wirtschafts- und Sozialwissenschaften = Z Wirtsch Sozialwiss Zeitschrift für Wirtschafts- und Sozialwissenschaften=Z. Wirtsch. Sozialwissen. Zeitschrift Fur Wirtschafts-und Sozialwissenschaften = Z Wirt Soz Zeitschrift Fur Wirtschafts-und Sozialwissenschaften = Z. Wirt. Soz. Zeitschrift fur Wissenschaftliche Mikroskopie und fur Mikroskopische Technik = Z. Wiss. Mikrosk. Zeitschrift Fur Wissenschaftliche Mikroskopie Und Fur Mikroskopische Technik = Z Wiss Mikrosk Zeitschrift Fur Wissenschaftliche Mikroskopie Und Fur Mikroskopische Technik = Z. Wiss. Mikrosk. Zeitschrift fur Wissenschaftliche Mikroskopie und fur Mikroskopische Technik = Z. Wiss. Mikrosk. Mikrosk. Tech. Zeitschrift fur wissenschaftliche Mikroskopie und mikroskopische Technik = Z Wiss Mikrosk Zeitschrift Fur Wissenschaftliche Photographie Photophysik Photochemie = Z Wiss Photogr Photo Zeitschrift Fur Wissenschaftliche Photographie Photophysik Photochemie = Z. Wiss. Photogr. Photo. Zeitschrift fur Wissenschaftliche Photographie Photophysik und Photochemie = Z. Wiss. Photogr. Photophys. Photochem. Zeitschrift für wissenschaftliche Zoologie = Z. wiss. Zool. Zeitschrift Fur Wissenschaftliche Zoologie = Z Wiss Zool Abt A Zeitschrift Fur Wissenschaftliche Zoologie = Z. Wiss. Zool. Abt. A. Zeitschrift fur wissenschartliche Zoologie = Z Wiss Zool Zeitschrift fur Wurttembergische Landesgeschichte = Z Wurttemb Landesgesch Zeitschrift fur Zellforschung und Mikroskopische Anatomie. Abteilung Histochemie = Z Zellforch Microsk Anat Histochem Zeitschrift fur Zellforschung und mikroskopische Anatomie (Vienna, Austria : 1948) = Z Zellforsch Mikrosk Anat Zeitschrift Fur Zellforschung Und Mikroskopische Anatomie = Z Zellforsch Mik Ana Zeitschrift Fur Zellforschung Und Mikroskopische Anatomie = Z. Zellforsch. Mik. Ana. Zeitschrift fur Zellforschung und Mikroskopische Anatomie = Z. Zellforsch. Mikrosk. Anat. Zeitschrift für Zellforschung = Z. Zellforsch. Zeitschrift Fur Zoologische Systematik Und Evolutionsforschung = Z Zool Syst Evol Zeitschrift Fur Zoologische Systematik Und Evolutionsforschung = Z. Zool. Syst. Evol. Zeitschrift Personalpsychologie = Z Personalpsychol Zeitschrift Personalpsychologie = Z. Personalpsychol. Zeit Und Ewigkeit Als Raum Gottlichen Handelns: Religionsgeschichtliche, Theologische Und Philosophische Perspektiven = Beih Z Alttest Wiss Zeit Und Ewigkeit Als Raum Gottlichen Handelns: Religionsgeschichtliche, Theologische Und Philosophische Perspektiven = Beih. Z. Alttest. Wiss. Zeit Und Gott: Hellenistische Zeitvorstellungen in Der Altarabischen Dichtung Und Im Koran = Stud Gesch Kult Isla Zeit Und Gott: Hellenistische Zeitvorstellungen in Der Altarabischen Dichtung Und Im Koran = Stud. Gesch. Kult. Isla. Zellstoff Und Papier = Zellst Pap Zellstoff Und Papier = Zellst. Pap. Zellstoff und Papier = Zellst. Papier Zemdirbyste-agriculture = Zemdirbyste Zemdirbyste-agriculture = Zemdirbyste. Zement-kalk-gips = Zem-kalk-gips Zement-kalk-gips = Zem-kalk-gips. Zement Kalk Gips = Zem. Kalk Gips Zement-kalk-gips = Zkg Int Zement-kalk-gips = Zkg. Int. Zentralasiatische Studien = Zentralasiat Stud Zentralblatt fur allgemeine Pathologie und pathologische Anatomie = Zentralbl Allg Pathol Zentralblatt fur Allgemeine Pathologie und Pathologische Anatomie = Zentralbl. Allg. Pathol. Zentralblatt fur Arbeitsmedizin, Arbeitsschutz, Prophylaxe und Ergonomie = Zentralbl Arbeitsmed Arbeitsschutz Prophyl Ergonomie Zentralblatt fur Arbeitsmedizin, Arbeitsschutz, Prophylaxe und Ergonomie = Zentralbl. Arbeitsmed. Arbeitsschutz. Prophyl. Ergonomie Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Ergonomie = Zentralbl. Arbeitsmed. Arbeitsschutz Ergon. Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Ergonomie = Zentralblatt Arbeitsmedizin Arbeitsschutz Erogon Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Prophylaxe = Zentralbl Arbeitsmed Arbeitsschutz Prophyl Zentralblatt fur Arbeitsmedizin, Arbeitsschutz und Prophylaxe = Zentralbl. Arbeitsmed. Arbeitsschutz Prophyl. Zentralblatt fur Arbeitsmedizin und Arbeitsschutz. Beihefte = Zent Arb Arb Beih Zentralblatt fur Arbeitsmedizin und Arbeitsschutz = Zentralbl Arbeitsmed Zentralblatt fur Arbeitsmedizin und Arbeitsschutz = Zentralbl. Arbeitsmed. Zentralblatt fur Bakteriologie. 1. Abt., Originale. A, Medizinische Mikrobiologie, Infektionskrankheiten und Parasitiologie = Zentralbl. Bakteriol. A. Zentralblatt fur Bakteriologie. 1. Abt. Originale. A: Medizinische Mikrobiologie, Infektionskrankheiten und Parasitologie = Zentralbl Bakteriol A Zentralblatt fur Bakteriologie. 1. Abt. Originale B, Hygiene, Krankenhaushygiene, Betriebshygiene, praventive Medizin = Zentralbl Bakteriol [B] Zentralblatt fur Bakteriologie. 1. Abt., Originale. B, Hygiene, Krankenhaushygiene, Betriebshygiene, Praventive Medizin = Zentralbl. Bakteriol. [B] Zentralblatt Fur Bakteriologie-international Journal of Medical Microbiology Virology Parasitology and Infectious Diseases = Zbl Bakt-int J Med M Zentralblatt Fur Bakteriologie-international Journal of Medical Microbiology Virology Parasitology and Infectious Diseases = Zbl. Bakt-int. J. Med. M. Zentralblatt fur Bakteriologie : international journal of medical microbiology = Zentralbl Bakteriol Zentralblatt Fur Bakteriologie, Mikrobiologie Und Hygiene, 1 Abteilung, Supplemente = Zbl Bakt P Zentralblatt Fur Bakteriologie, Mikrobiologie Und Hygiene, 1 Abteilung, Supplemente = Zbl. Bakt. P. Zentralblatt fur Bakteriologie, Mikrobiologie und Hygiene. 1. Abt. Originale B, Hygiene = Zentralbl Bakteriol Mikrobiol Hyg [B] Zentralblatt fur Bakteriologie, Mikrobiologie und Hygiene. 1. Abt. Originale B, Hygiene = Zentralbl. Bakteriol. Mikrobiol. Hyg. [B] Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene I Abteilung Originale C-allgemeine Angewandte Und Okologische Mikrobiologie = Zbl Bakt Mik Hyg I C Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene I Abteilung Originale C-allgemeine Angewandte Und Okologische Mikrobiologie = Zbl. Bakt. Mik. Hyg. I C. Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Serie B-umwelthygiene Krankenhaushygiene Arbeitshygiene Praventive Medizin = Zbl Bakt Mik Hyg B Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Serie B-umwelthygiene Krankenhaushygiene Arbeitshygiene Praventive Medizin = Zbl. Bakt. Mik. Hyg. B. Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Serie B-umwelthygiene Krankenhaushygiene Arbeitshygiene Praventive Medizin = Zbl Hyg Umweltmed Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Serie B-umwelthygiene Krankenhaushygiene Arbeitshygiene Praventive Medizin = Zbl. Hyg. Umweltmed. Zentralblatt fur Bakteriologie, Mikrobiologie und Hygiene. Serie B, Umwelthygiene, Krankenhaushygiene, Arbeitshygiene, praventive Medizin = Zentralbl Bakteriol Mikrobiol Hyg [B] Zentralblatt fur Bakteriologie, Mikrobiologie und Hygiene. Serie B, Umwelthygiene, Krankenhaushygiene, Arbeitshygiene, Praventive Medizin = Zentralbl. Bakteriol. Mikrobiol. Hyg. [B] Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Series A-medical Microbiology Infectious Diseases Virology Parasitology = Zbl Bakt-int J Med M Zentralblatt Fur Bakteriologie Mikrobiologie Und Hygiene Series A-medical Microbiology Infectious Diseases Virology Parasitology = Zbl. Bakt-int. J. Med. M. Zentralblatt fur Bakteriologie, Mikrobiologie, und Hygiene. Series A, Medical microbiology, infectious diseases, virology, parasitology = Zentralbl Bakteriol Mikrobiol Hyg [A] Zentralblatt fur Bakteriologie, Mikrobiologie, und Hygiene. Series A, Medical Microbiology, Infectious Diseases, Virology, Parasitology = Zentralbl. Bakteriol. Mikrobiol. Hyg. [A] Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskranheiten Und Hygiene Abteilung 1-originale Medizinisch Hygiensche Bakteriologie Virusforschung Und Parasitologie = Zentbl Bakteriolog P Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskranheiten Und Hygiene Abteilung 1-originale Medizinisch Hygiensche Bakteriologie Virusforschung Und Parasitologie = Zentbl. Bakteriolog. P. Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. 1. Abt. Medizinisch-hygienische Bakteriologie, Virusforschung und Parasitologie. Originale = Zentralbl Bakteriol [Orig] Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. 1. Abt., = Zentralbl. Bakteriol. [Orig.] Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskrankheiten Und Hygiene Abteilung 1 = Zbl Bakt Parasit Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskrankheiten Und Hygiene Abteilung 1 = Zbl. Bakt. Parasit. Zentralblatt Fur Bakteriologie Parasitenkunde Infektions-krankheiten Und Hygiene Erste Abteilung Orginale Riehe A-medizinische Mikrobiologie Und Parasitologie = Zentralbl Bakt P Inf Zentralblatt Fur Bakteriologie Parasitenkunde Infektions-krankheiten Und Hygiene Erste Abteilung Orginale Riehe A-medizinische Mikrobiologie Und Parasitologie = Zentralbl. Bakt. P. Inf. Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Erste Abteilung Originale. Reihe A: Medizinische Mikrobiologie und Parasitologie = Zentralbl Bakteriol [Orig A] Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Erste Abteilung Originale. Reihe B: Hygiene, Betriebshygiene, praventive Medizin = Zentralbl Bakteriol [B] Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Erste Abteilung, Originale. Reihe B, Hygiene, Betriebshygiene, Praventive Medizin = Zentralbl. Bakteriol. [B] Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Erste Abteilung Originale. Reihe B: Hygiene, praventive Medizin = Zentralbl Bakteriol [Orig B] Zentralblatt Fur Bakteriologie Parasitenkunde Infektions-krankheiten Und Hygiene Erste Abteilung Originale Riehe B = Zentralbl Bakter Par Zentralblatt Fur Bakteriologie Parasitenkunde Infektions-krankheiten Und Hygiene Erste Abteilung Originale Riehe B = Zentralbl. Bakter. Par. Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Erste = Zentralbl. Bakteriol. [Orig. B] Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskrankheiten Und Hygiene Ii Abteilung-naturwissenschaftliche-mikrobiologie Der Landwirtschaft Der Technologie = Zbl Bakt Ii Natur Zentralblatt Fur Bakteriologie Parasitenkunde Infektionskrankheiten Und Hygiene Ii Abteilung-naturwissenschaftliche-mikrobiologie Der Landwirtschaft Der Technologie = Zbl. Bakt. Ii Natur. Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Zweite naturwissenschaftliche Abt.: Allgemeine, landwirtschaftliche und technische Mikrobiologie = Zentralbl Bakteriol Parasitenkd Infektionskr Hyg Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Zweite naturwissenschaftliche Abteilung: Mikrobiologie der Landwirtschaft der Technologie und des Umweltschutzes = Zentralbl Bakteriol Naturwiss Zentralblatt fur Bakteriologie, Parasitenkunde, Infektionskrankheiten und Hygiene. Zweite = Zentralbl. Bakteriol. Parasitenkd. Infektionskr. Hyg. Zentralblatt Fur Bakteriologie : Supplement = Zbl Bakt S Zentralblatt Fur Bakteriologie : Supplement = Zbl. Bakt. S. Zentralblatt für Bakteriologie, Supplement = Zentralbl. Bakteriol., Suppl. Zentralblatt Fur Bakteriologie=Zentralbl Bakteriol;; Zentralblatt fur Bauverwaltung = Zentralbl. Bauverwaltung Zentralblatt für Bibliothekswesen = ZBB Zentralblatt Fur Bibliothekswesen = Zbl Bibliothekswesen Zentralblatt Fur Bibliothekswesen = Zbl. Bibliothekswesen Zentralblatt fur Biochemie und Biophysik = Zentralbl. Biochem. Biophys. Zentralblatt fur biologische Aerosolforschung = Zentralbl Biol Aerosolforsch Zentralblatt fur Biologische Aerosolforschung = Zentralbl. Biol. Aerosolforsch. Zentralblatt Fur Chirurgie = Zbl Chir Zentralblatt Fur Chirurgie = Zbl. Chir. Zentralblatt fur Chirurgie = Zentralbl Chir Zentralblatt fur Chirurgie = Zentralbl. Chir. Zentralblatt Fur Chirurgie=Zentralbl Chir;; Zentralblatt fur Geologie und Palaeontologie Teil 1: Allgemeine, Angewandte, Regionale, und Historische Geologie = Zentralbl. Geol. Palaeontol. Teil 1 Zentralblatt fur Geologie und Palaeontologie Teil 2: Palaeontologie = Zentralbl. Geol. Palaeontol. Teil 2 Zentralblatt Fur Geologie Und Palaontologie, Teil 1 : Allgemeine, Angewandte, Regionale Und Historische Geologie = Zbl Geo Pal Zentralblatt Fur Geologie Und Palaontologie, Teil 1 : Allgemeine, Angewandte, Regionale Und Historische Geologie = Zbl. Geo. Pal. Zentralblatt Fur Geologie Und Palaontologie, Teil I: Allgemeine, Angewandte, Regionale Und Historische Geologie, 1993, Heft 1/2 = Zbl Geo Pal Zentralblatt Fur Geologie Und Palaontologie, Teil I: Allgemeine, Angewandte, Regionale Und Historische Geologie, 1993, Heft 1/2 = Zbl. Geo. Pal. Zentralblatt Fur Gynakologie = Zbl Gynakol Zentralblatt Fur Gynakologie = Zbl. Gynakol. Zentralblatt fur Gynakologie = Zentralbl Gynakol Zentralblatt fur Gynakologie = Zentralbl. Gynakol. Zentralblatt Fur Gynakologie=Zentralbl Gynakol;; Zentralblatt fur Haut- und Geschlechtskrankheiten, sowie deren Grenzgebiete = Zentralbl Haut Geschlechtskr Grenzgeb Zentralblatt Fur Hygiene Und Umweltmedizin = Zbl Hyg Umweltmed Zentralblatt Fur Hygiene Und Umweltmedizin = Zbl. Hyg. Umweltmed. Zentralblatt fur Hygiene und Umweltmedizin = Zentralbl. Hyg. Umweltmed. Zentralblatt Fur Hygiene Und Umweltmedizin=Zentralbl Hyg Umweltmed;; Zentralblatt für Mathematik und ihre Grenzgebiete = Zbl Zentralblatt Fur Mikrobiologie = Zbl Mikrobiol Zentralblatt Fur Mikrobiologie = Zbl. Mikrobiol. Zentralblatt fur Mikrobiologie = Zentralbl Mikrobiol Zentralblatt fur Mikrobiologie = Zentralbl. Mikrobiol. Zentralblatt fur Mineralogie, Geologie und Palaeontologie = Zentralbl. Mineral. Geol. Palaeontol. Zentralblatt fur Mineralogie Teil 1: Kristallographie und Mineralogie = Zentralbl. Mineral. Teil 1 Zentralblatt fur Mineralogie Teil 2: Petrographie, Technische Mineralogie, Geochemie und Lagerstattenkunde = Zentralbl. Mineral. Teil 2 Zentralblatt Fur Neurochirurgie = Zbl Neurochir Zentralblatt Fur Neurochirurgie = Zbl. Neurochir. Zentralblatt fur Neurochirurgie = Zentralbl Neurochir Zentralblatt fur Neurochirurgie = Zentralbl. Neurochir. Zentralblatt Fur Neurochirurgie=Zentralbl Neurochir;; Zentralblatt fur Pathologie = Zentralbl Pathol Zentralblatt fur Pathologie = Zentralbl. Pathol. Zentralblatt fur Pharmazie = Zentralbl. Pharm. Zentralblatt fur Phlebologie = Zentralbl Phlebol Zentralblatt fur Phlebologie = Zentralbl. Phlebol. Zentralblatt fur Verkehrs-Medizin, Verkehrs-Psychologie, Luft- und Raumfahrt-Medizin = Zentralbl Verkehrsmed Verkehrspsychol Luft Raumfahrtmed Zentralblatt Fur Veterinarmedizin Reihe A-journal of Veterinary Medicine Series A-animal Physiology Pathology and Clinical Veterinary Medicine = Zbl Vet Med A Zentralblatt Fur Veterinarmedizin Reihe A-journal of Veterinary Medicine Series A-animal Physiology Pathology and Clinical Veterinary Medicine = Zbl. Vet. Med. A. Zentralblatt fur Veterinarmedizin. Reihe A = Zentralbl Veterinarmed A Zentralblatt fur Veterinarmedizin. Reihe A = Zentralbl. Veterinarmed. A Zentralblatt Fur Veterinarmedizin. Reihe A=Zentralbl Veterinarmed A;; Zentralblatt Fur Veterinarmedizin Reihe B-journal of Veterinary Medicine Series B-infectious Diseases Immunology Food Hygiene Veterinary Public Health = Zbl Vet Med B Zentralblatt Fur Veterinarmedizin Reihe B-journal of Veterinary Medicine Series B-infectious Diseases Immunology Food Hygiene Veterinary Public Health = Zbl. Vet. Med. B. Zentralblatt fur Veterinarmedizin. Reihe B. Journal of veterinary medicine. Series B = Zentralbl Veterinarmed B Zentralblatt fur Veterinarmedizin. Reihe B = Zentralbl. Veterinarmed. [B] Zentralblatt Fur Veterinarmedizin. Reihe B=Zentralbl Veterinarmed [B];; Zentralblatt fur Veterinarmedizin. Reihe C, Anatomia, Histologia, Embryologia = Zentralbl. Veterinarmed. [C] Zentralblatt fur Veterinarmedizin. Reihe C: Anatomie, Histologie, Embryologie = Zentralbl Veterinarmed [C] Zentralblatt Fur Veterinarmedizin Reihe C-journal of Veterinary Medicine Series C-anatomia Histologia Embryologia = Zbl Vet Med C Zentralblatt Fur Veterinarmedizin Reihe C-journal of Veterinary Medicine Series C-anatomia Histologia Embryologia = Zbl. Vet. Med. C. Zentralblatt Fur Veterinarmedizin Riehe A = Zentralb Vet Riehe A Zentralblatt Fur Veterinarmedizin Riehe A = Zentralb. Vet. Riehe A Zentralblatt Fur Veterinarmedizin Riehe B = Zentralb Vet Riehe B Zentralblatt Fur Veterinarmedizin Riehe B = Zentralb. Vet. Riehe B Zentralblatt Fur Veterinarmedizin = Zbl Veterinarmedizin Zentralblatt Fur Veterinarmedizin = Zbl. Veterinarmedizin Zentralblatt Haut- und Geschlechtskrankheiten = Zentralbl Haut Und Geschlechtskr Zentral-Zeitung fur Optik und Mechanik = Zent.-Ztg. Opt. Mech. Zeolite Chemistry and Catalysis = Stud Surf Sci Catal Zeolite Chemistry and Catalysis = Stud. Surf. Sci. Catal. Zeolite Microporous Solids : Synthesis, Structure, and Reactivity = Nato Adv Sci I C-mat Zeolite Microporous Solids : Synthesis, Structure, and Reactivity = Nato. Adv. Sci. I. C-mat. Zeolites and Microporous Crystals = Stud Surf Sci Catal Zeolites and Microporous Crystals = Stud. Surf. Sci. Catal. Zeolites and Ordered Mesoporous Materials: Progress and Prospects = Stud Surf Sci Catal Zeolites and Ordered Mesoporous Materials: Progress and Prospects = Stud. Surf. Sci. Catal. Zeolites and Related Materials: Trends, Targets and Challenges, Proceedings of The 4th International Feza Conference = Stud Surf Sci Catal Zeolites and Related Materials: Trends, Targets and Challenges, Proceedings of The 4th International Feza Conference = Stud. Surf. Sci. Catal. Zeolites and Related Microporous Materials: State of The Art 1994 = Stud Surf Sci Catal Zeolites and Related Microporous Materials: State of The Art 1994 = Stud. Surf. Sci. Catal. Zeolites: A Refined Tool for Designing Catalytic Sites = Stud Surf Sci Catal Zeolites: A Refined Tool for Designing Catalytic Sites = Stud. Surf. Sci. Catal. Zeolites = Zeolites Zephyrus. Revista de prehistoria y arqueología = Zephyrus Zero-dimensional Commutative Rings = Lect Notes Pure Appl Zero-dimensional Commutative Rings = Lect. Notes. Pure. Appl. Zero Population Growth national reporter = Zero Popul Growth Natl Rep Zero to Infinity: The Foundations of Physics = Ser Knots Everything Zero to Infinity: The Foundations of Physics = Ser. Knots. Everything. Zeszyty historyczne (Paris, France) = Zest Hist Zeszyty Naukowe Geometria = Zeszyty Nauk. Geom. Zeszyty Naukowe Politechniki Rzeszowskiej = Zeszyty Nauk. Politech. Rzeszowskiej Mat. Zeszyty Naukowe Wydzialu Budownictwai I Inzynierii Srodowiska = Zesz Nauk Wydzialu B Zeszyty Naukowe Wydzialu Budownictwai I Inzynierii Srodowiska = Zesz. Nauk. Wydzialu B. Zeszyty Naukowe Wy\ = Problemy Mat. Zeszyty Naukowe Wyższa Szkoła Pedagogiczna im. Powstańców Śl\polhk askich w Opolu. Matematyka = Zeszyty Nauk. Wyż. Szkoły Ped. Powstańców Śl. Opolu Mat. Zeta Functions of Groups and Rings = Lect Notes Math Zeta Functions of Groups and Rings = Lect. Notes. Math. Zeta Functions Over Zeros of Zeta Functions = Lect Notes Unione Ma Zeta Functions Over Zeros of Zeta Functions = Lect. Notes. Unione. Ma. Zeta Functions, Topology and Quantum Physics = Dev Math Zeta Functions, Topology and Quantum Physics = Dev. Math. Zew Economic Studies = Zew Econ Stud Zew Economic Studies = Zew Econ. Stud. Zew Economic Studies = Zew Econ Studies Zew Economic Studies = Zew Econ. Studies ZFA; Zeitschrift fur Allgemeinmedizin = ZFA (Stuttgart) ZFA. Zeitschrift fur Allgemeinmedizin = ZFA (Stuttgart) ZfA. Zeitschrift fur Alternsforschung = ZFA ZFA; Zeitschrift fur Alternsforschung = ZFA ZFSL, Zeitschrift fur franzosische Sprache und Literatur = Z Fr Spr Lit ZFW---Zeitschrift für Flugwissenschaften und Weltraumforschung = Z. Flugwiss. Weltraumforsch. Zhangzhou Shiyuan Xuebao (Ziran Kexue Ban) = Zhangzhou Shiyuan Xuebao (Ziran Kexue Ban) Zhejiang Daxue Xuebao = Zhejiang Daxue Xuebao Ziran Kexue Ban Zhejiang nong ye da xue xue bao = Acta Agriculturae Universitatis Chekianensis|Zhejiang Nong Ye Da Xue Xue Bao Zhipu Xuebao = Zhipu Xuebao Zhi wu bao hu xue bao = Acta phytophylacica sinica|Zhi Wu Bao Hu Xue Bao Zhi wu bing li xue bao = Acta phytopathologica sinica|Zhi Wu Bing Li Xue Bao Zhi wu bing li xue hui kan = Plant pathology bulletin|Zhi Wu Bing Li Xue Hui Kan Zhi Wu Sheng Li Yu Fen Zi Sheng Wu Xue Xue Bao (Journal of Plant Physiology and Molecular Biology) = Zhi Wu Sheng Li Yu Fen Zi Sheng Wu Xue Xue Bao Zhong cao yao = Chinese traditional and herbal drugs|Zhong Cao Yao Zhongcaoyao = Zhongcaoyao Zhongguo bing du xue = Virologica Sinica|Zhongguo Bing Du Xue Zhongguo bing yuan sheng wu xue za zhi = Journal of pathogen biology|Zhongguo Bing Yuan Sheng Wu Xue Za Zhi Zhongguo cao shi dong wu = China herbivores|Zhongguo Cao Shi Dong Wu Zhongguo dongwu jianyi = Chinese journal of animal quaratine|Zhongguo Dongwu Jianyi Zhongguo gong gong wei sheng = China public health|Zhongguo Gong Gong Wei Sheng Zhongguo Jiguang = Zhongguo Jiguang Zhongguo ji hua mian yi = Chinese journal of vaccines and immunization|Zhongguo Ji Hua Mian Yi Zhongguo Ji Sheng Chong Xue Yu Ji Sheng Chong Bing Za Zhi (Chinese Journal of Parasitology and Parasitic Diseases) = Zhongguo Ji Sheng Chong Xue Yu Ji Sheng Chong Bing Za Zhi Zhongguo kang sheng su za zhi = Chinese journal of antibiotics|Zhongguo Kang Sheng Su Za Zhi Zhongguo Kangshengsu Zazhi = Zhongguo Kangshengsu Zazhi Zhongguo lin chuang yao li xue za zhi = The Chinese journal of clinical pharmacology / [bian ji, Zhongguo lin chuang yao li xue za zhi bian ji bu]|Zhongguo Lin Chuang Yao Li Xue Za Zhi Zhongguo mian yi xue za zhi = Chinese journal of immunology|Zhongguo Mian Yi Xue Za Zhi Zhongguo nong xue tong bao = Chinese agricultural science bulletin / "Zhongguo nong xue tong bao" bian ji bu|Zhongguo Nong Xue Tong Bao Zhongguo nong ye da xue xue bao = Journal of China Agricultural University|Zhongguo Nong Ye Da Xue Xue Bao Zhongguo nong ye ke xue = Zhongguo nongye kexue|Zhongguo Nong Ye Ke Xue Zhongguo ren shou gong huan bing za zhi = Chinese journal of zoonoses|Zhongguo Ren Shou Gong Huan Bing Za Zhi Zhongguo sheng wu gong cheng za zhi = Journal of Chinese biotechnology|Zhongguo Sheng Wu Gong Cheng Za Zhi Zhongguo sheng wu hua xue yu fen zi sheng wu xue bao = Chinese journal of biochemistry and molecular biology|Zhongguo Sheng Wu Hua Xue Yu Fen Zi Sheng Wu Xue Bao Zhongguo Shengwu Huaxue Yu Fenzi Shengwu Xuebao = Zhongguo Shengwu Huaxue Yu Fenzi Shengwu Xuebao Zhongguo shen jing ke xue za zhi = Chinese journal of neuroscience|Chin. J. Neurosci. Zhongguo Shouyi Ke-ji = Chinese journal of veterinary science and technology|Zhongguo Shouyi Ke-ji Zhongguo shou yi xue bao = Chinese journal of veterinary science|Chin. J. Vet. Sci. Zhongguo shou yi za zhi = Chinese journal of veterinary medicine|Zhongguo Shou Yi Za Zhi Zhongguo shu cai = Chinese vegetables|Zhongguo Shu Cai Zhongguo shui chan ke xue = Journal of fishery sciences of China / Zhongguo shui chan ke xue yan jiu yuan bian ji chu ban|Zhongguo Shui Chan Ke Xue Zhongguo Xitu Xuebao = Zhongguo Xitu Xuebao Zhongguo Xiu Fu Chong Jian Wai Ke Za Zhi (Chinese Journal of Reparative and Reconstructive Surgery) = Zhongguo Xiu Fu Chong Jian Wai Ke Za Zhi Zhongguo xu mu xue hui hui zhi = Journal of the Chinese Society of Animal Science|J. Chin. Soc. Anim. Sci. Zhongguo Yao Li Xue Bao (Acta Pharmacologica Sinica) = Zhongguo Yao Li Xue Bao Zhongguo Yaoli Xuebao = Zhongguo Yaoli Xuebao Zhongguo yao xue za zhi (Zhongguo yao xue hui : 1989) = Chung Kuo Yao Hsueh Tsa Chih Zhongguo Yi Liao Qi Xie Za Zhi (Chinese Journal of Medical Instrumentation) = Zhongguo Yi Liao Qi Xie Za Zhi Zhongguo Ying Yong Sheng Li Xue Za Zhi (Chinese Journal of Applied Physiology) = Zhongguo Ying Yong Sheng Li Xue Za Zhi Zhongguo yi xue ke xue yuan xue bao. Acta Academiae Medicinae Sinicae = Zhongguo Yi Xue Ke Xue Yuan Xue Bao Zhongguo Yi Xue Ke Xue Yuan Xue Bao (Acta Academiae Medicinae Sinicae) = Zhongguo Yi Xue Ke Xue Yuan Xue Bao Zhongguo Yiyao Gongye Zazhi = Zhongguo Yiyao Gongye Zazhi Zhongguo you liao zuo wu xue bao = Chinese journal of oil crop sciences / Zhongguo nong ye ke xue yuan you liao zuo wu yan jiu suo zhu ban|Zhongguo You Liao Zuo Wu Xue Bao Zhongguo Zhong Xi Yi Jie He Za Zhi (Chinese Journal of Integrated Traditional and Western Medicine) = Zhongguo Zhong Xi Yi Jie He Za Zhi Zhongguo Zhong Yao Za Zhi (China Journal of Chinese Materia Medica) = Zhongguo Zhong Yao Za Zhi Zhonghua bing li xue za zhi Chinese journal of pathology = Zhonghua Bing Li Xue Za Zhi Zhonghua Bing Li Xue Za Zhi (Chinese Journal of Pathology) = Zhonghua Bing Li Xue Za Zhi Zhonghua Er Bi Yan Hou Ke Za Zhi (Chinese Journal of Otorhinolaryngology) = Zhonghua Er Bi Yan Hou Ke Za Zhi Zhonghua er bi yan hou ke za zhi = Zhonghua Er Bi Yan Hou Ke Za Zhi Zhonghua Er Bi Yan Hou Tou Jing Wai Ke Za Zhi (Chinese Journal of Otorhinolaryngology Head and Neck Surgery) = Zhonghua Er Bi Yan Hou Tou Jing Wai Ke Za Zhi Zhonghua er ke za zhi. Chinese journal of pediatrics = Zhonghua Er Ke Za Zhi Zhonghua fang she xue za zhi Chinese journal of radiology = Zhonghua Fang She Xue Za Zhi Zhonghua Fang She Xue Za Zhi (Chinese Journal of Radiology) = Zhonghua Fang She Xue Za Zhi Zhonghua Fangsh Yixue Yu Fanghu Zazhi = Zhonghua Fangsh Yixue Yu Fanghu Zazhi Zhonghua Fu Chan Ke Za Zhi (Chinese Journal of Obstetrics and Gynecology) = Zhonghua Fu Chan Ke Za Zhi Zhonghua fu chan ke za zhi = Zhonghua Fu Chan Ke Za Zhi Zhonghua Gan Zang Bing Za Zhi (Chinese Journal of Hepatology) = Zhonghua Gan Zang Bing Za Zhi Zhonghua Hu Li Za Zhi (Chinese Journal of Nursing) = Zhonghua Hu Li Za Zhi Zhonghua Jie He He Hu Xi Xi Ji Bing Za Zhi (Chinese Journal of Tuberculosis and Respiratory Diseases) = Zhonghua Jie He He Hu Xi Xi Ji Bing Za Zhi Zhonghua Jie He He Hu Xi Za Zhi (Chinese Journal of Tuberculosis and Respiratory Diseases) = Zhonghua Jie He He Hu Xi Za Zhi Zhonghua kou qiang ke za zhi [Chinese journal of stomatology] = Zhonghua Kou Qiang Ke Za Zhi Zhonghua Kou Qiang Ke Za Zhi (Chinese Journal of Stomatology) = Zhonghua Kou Qiang Ke Za Zhi Zhonghua Kou Qiang Yi Xue Za Zhi (Chinese Journal of Stomatology) = Zhonghua Kou Qiang Yi Xue Za Zhi Zhonghua Liu Xing Bing Xue Za Zhi = Zhonghua Liu Xing Bing Xue Za Zhi Zhonghua Minguo Wei Sheng Wu Ji Mian Yi Xue Za Zhi (Chinese Journal of Microbiology and Immunology) = Zhonghua Min Guo Wei Sheng Wu Ji Mian Yi Xue Za Zhi Zhonghua Minguo Wei Sheng Wu Xue Za Zhi (Chinese Journal of Microbiology) = Zhonghua Min Guo Wei Sheng Wu Xue Za Zhi Zhonghua Minguo xiao er ke yi xue hui za zhi [Journal]. Zhonghua Minguo xiao er ke yi xue hui = Zhonghua Min Guo Xiao Er Ke Yi Xue Hui Za Zhi Zhonghua Minguo Xiao Er Ke Yi Xue Hui Za Zhi = Zhonghua Min Guo Xiao Er Ke Yi Xue Hui Za Zhi Zhonghua nei ke za zhi [Chinese journal of internal medicine] = Zhonghua Nei Ke Za Zhi Zhonghua Nei Ke Za Zhi (Chinese Journal of Internal Medicine) = Zhonghua Nei Ke Za Zhi Zhonghua Shao Shang Za Zhi = Zhonghua Shao Shang Za Zhi Zhonghua Shen Jing Jing Shen Ke Za Zhi (Chinese Journal of Neurology and Psychiatry) = Zhonghua Shen Jing Jing Shen Ke Za Zhi Zhonghua wai ke za zhi [Chinese journal of surgery] = Zhonghua Wai Ke Za Zhi Zhonghua Wai Ke Za Zhi (Chinese Journal of Surgery) = Zhonghua Wai Ke Za Zhi Zhonghua xin xue guan bing za zhi [Chinese journal of cardiovascular diseases] = Zhonghua Xin Xue Guan Bing Za Zhi Zhonghua Xin Xue Guan Bing Za Zhi (Chinese Journal of Cardiovascular Diseases) = Zhonghua Xin Xue Guan Bing Za Zhi [Zhonghua yan ke za zhi] Chinese journal of ophthalmology = Zhonghua Yan Ke Za Zhi Zhonghua yi shi za zhi (Beijing, China : 1980) = Zhonghua Yi Shi Za Zhi Zhonghua Yi Xue Yi Chuan Xue Za Zhi (Chinese Journal of Medical Genetics) = Zhonghua Yi Xue Yi Chuan Xue Za Zhi Zhonghua Yi Xue Za Zhi (Chinese Medical Journal, Taipei) = Zhonghua Yi Xue Za Zhi (Taipei) Zhonghua yi xue za zhi = Zhonghua Yi Xue Za Zhi Zhonghua yi yuan gan ran xue za zhi = Chinese journal of nosocomiology|Zhonghua Yi Yuan Gan Ran Xue Za Zhi Zhonghua yu fang yi xue za zhi [Chinese journal of preventive medicine] = Zhonghua Yu Fang Yi Xue Za Zhi Zhonghua Yu Fang Yi Xue Za Zhi (Chinese Journal of Preventive Medicine) = Zhonghua Yu Fang Yi Xue Za Zhi Zhonghua Zheng Xing Shao Shang Wai Ke Za Zhi (Chinese Journal of Plastic Surgery and Burns) = Zhonghua Zheng Xing Shao Shang Wai Ke Za Zhi Zhonghua Zheng Xing Wai Ke Za Zhi = Zhonghua Zheng Xing Wai Ke Za Zhi Zhonghua zhong liu za zhi [Chinese journal of oncology] = Zhonghua Zhong Liu Za Zhi Zhonghua Zhong Liu Za Zhi (Chinese Journal of Oncology) = Zhonghua Zhong Liu Za Zhi Zhong Nan Da Xue Xue Bao. Yi Xue Ban (Journal of Central South University. Medical Sciences) = Zhong Nan Da Xue Xue Bao Yi Xue Ban Zhongshan da xue xue bao. Zi ran ke xue ban = Acta scientiarum naturalium Universitatis Sunyatseni|Zhongshan Da Xue Xue Bao Zi Ran Ke Xue Ban Zhong Xi Yi Jie He Xue Bao (Journal of Chinese Integrative Medicine) = Zhong Xi Yi Jie He Xue Bao Zhong Xi Yi Jie He Za Zhi (Chinese Journal of Modern Developments in Traditional Medicine) = Zhong Xi Yi Jie He Za Zhi Zhong yang yan jiu yuan jin dai shi yan jiu suo ji kan. Zhong yang yan jiu yuan. Jin dai shi yan jiu suo = Bull Inst Mod Hist Acad Sin Zhong yao tong bao (Beijing, China : 1981) = Zhong Yao Tong Bao Zhong Yao Tong Bao (Bulletin of Chinese Materia Medica) = Zhong Yao Tong Bao Zhurnal Analiticheskoi Khimii = J Anal Chem-ussr+ Zhurnal Analiticheskoi Khimii = J. Anal. Chem-ussr+.+ Zhurnal Analiticheskoi Khimii = Zh. Anal. Khim. Zhurnal eksperimental'noi i klinicheskoi meditsiny = Zh Eksp Klin Med Zhurnal Eksperimentalnoi i Klinicheskoi Meditsiny = Zh. Eksp. Klin. Med. Zhurnal Eksperimental'noi i Teoreticheskoi Fiziki = Zh. Eksp. Teor. Fiz. Zhurnal Eksperimentalnoi I Teoreticheskoi Fiziki = Zh Eksp Teor Fiz+ Zhurnal Eksperimentalnoi I Teoreticheskoi Fiziki = Zh. Eksp. Teor. Fiz+.+ Zhurnal evoliutsionnoi biokhimii i fiziologii = Zh Evol Biokhim Fiziol Zhurnal Evoliutsionnoi Biokhimii i Fiziologii = Zh. Evol. Biokhim. Fiziol. Zhurnal Evoliutsionnoi Biokhimii I Fiziologii=Zh Evol Biokhim Fiziol;; Zhurnal Evolyutsionnoi Biokhimii i Fiziologii = Zh. Evol. Biokhim. Fiziol. Zhurnal Fizicheskoi Khimii = Zh Fiz Khim+ Zhurnal Fizicheskoi Khimii = Zh. Fiz. Khim. Zhurnal Fizicheskoi Khimii = Zh. Fiz. Khim+.+ Zhurnal Mikrobiologii Epidemiologii I Immunobiologii = Zh Mikrob Epid Immun Zhurnal Mikrobiologii Epidemiologii I Immunobiologii = Zh. Mikrob. Epid. Immun. Zhurnal mikrobiologii, epidemiologii, i immunobiologii = Zh Mikrobiol Epidemiol Immunobiol Zhurnal Mikrobiologii, Epidemiologii i Immunobiologii = Zh. Mikrobiol. Epidemiol. Immunobiol. Zhurnal Mikrobiologii, Epidemiologii I Immunobiologii=Zh Mikrobiol Epidemiol Immunobiol;; Zhurnal Nauchnoi i Prikladnoi Fotografii = Zh. Nauchn. Prikl. Fotogr. Zhurnal Nauchnoi I Prikladnoi Fotografii = Zh Nauch Prikl Fotog Zhurnal Nauchnoi I Prikladnoi Fotografii = Zh. Nauch. Prikl. Fotog. Zhurnal Neorganicheskoi Khimii = Zh Neorg Khim+ Zhurnal Neorganicheskoi Khimii = Zh. Neorg. Khim. Zhurnal Neorganicheskoi Khimii = Zh. Neorg. Khim+.+ Zhurnal nevrologii i psikhiatrii imeni S.S. Korsakova / Ministerstvo zdravookhraneniia i meditsinskoi promyshlennosti Rossiiskoi Federatsii, Vserossiiskoe obshchestvo nevrologov [i] Vserossiiskoe obshchestvo psikhiatrov = Zh Nevrol Psikhiatr Im S S Korsakova Zhurnal Nevrologii I Psikhiatrii Imeni S S Korsakova = Zh Nevrol Psikhiatr Zhurnal Nevrologii I Psikhiatrii Imeni S S Korsakova = Zh. Nevrol. Psikhiatr. Zhurnal Nevrologii i Psikhiatrii imeni S.S. Korsakova = Zh. Nevrol. Psikhiatr. Im. S. S. Korsakova Zhurnal Nevrologii I Psikhiatrii Imeni S S Korsakova = Z Nevrol Psikhiatrii Zhurnal Nevrologii I Psikhiatrii Imeni S S Korsakova = Z. Nevrol. Psikhiatrii Zhurnal nevropatologii i psikhiatrii imeni S.S. Korsakova (Moscow, Russia : 1952) = Zh Nevropatol Psikhiatr Im S S Korsakova Zhurnal Nevropatologii I Psikhiatrii Imeni S S Korsakova = Zh Nevropatol Psikh Zhurnal Nevropatologii I Psikhiatrii Imeni S S Korsakova = Zh. Nevropatol. Psikh. Zhurnal Nevropatologii i Psikhiatrii imeni S. S. Korsakova = Zh. Nevropatol. Psikhiatr. Im. S. S. Korsakova Zhurnal obshchei biologii = Zh Obshch Biol Zhurnal Obshchei Biologii=Zh Obshch Biol;; Zhurnal Obshchei Biologii = Zh Obshch Biol Zhurnal Obshchei Biologii = Zh. Obshch. Biol. Zhurnal Obshchei Biologii = Zh. Obshch. Khim. Zhurnal Obshchei Khimii = Zh Obshch Khim+ Zhurnal Obshchei Khimii = Zh. Obshch. Khim. Zhurnal Obshchei Khimii = Zh. Obshch. Khim+.+ Zhurnal Organicheskoi Khimii = Zh Org Khim+ Zhurnal Organicheskoi Khimii = Zh. Org. Khim. Zhurnal Organicheskoi Khimii = Zh. Org. Khim+.+ Zhurnal Organichnoi ta Farmatsevtichnoi Khimii = Zh. Org. Farm. Khim. Zhurnal Prikladnoi Khimii = J Appl Chem-ussr+ Zhurnal Prikladnoi Khimii = J. Appl. Chem-ussr+.+ Zhurnal Prikladnoi Khimii (S. -Peterburg) = Zh. Prikl. Khim. (Leningrad) Zhurnal Prikladnoi Khimii = Zh. Prikl. Khim. Zhurnal Prikladnoi Spektroskopii = Zh. Prikl. Spektrosk. Zhurnal Strukturnoi Khimii = Zh Strukt Khim Zhurnal Strukturnoi Khimii = Zh. Strukt. Khim. Zhurnal Tekhnicheskoi Fiziki = Zh Tekh Fiz+ Zhurnal Tekhnicheskoi Fiziki = Zh. Tekh. Fiz. Zhurnal Tekhnicheskoi Fiziki = Zh. Tekh. Fiz+.+ Zhurnal Ushnykh, Nosovykh i Gorlovykh Boleznei = Zh. Ushn. Nos. Gorl. Bolezn. Zhurnal voprosy neirokhirurgii imeni N. N. Burdenko = Zh Vopr Neirokhir Im N N Burdenko Zhurnal Voprosy Neirokhirurgii Imeni N. N. Burdenko=Zh Vopr Neirokhir Im N N Burdenko;; Zhurnal Voprosy Neirokhirurgii Imeni N. N. Burdenko = Zh. Vopr. Neirokhir. Im. N. N. Burdenko Zhurnal Vsesoyuznogo Khimicheskogo Obshchestva im. D. I. Mendeleeva = Zh. Vses. Khim. O-va. im. D. I. Mendeleeva Zhurnal Vsesoyuznogo Khimicheskogo Obshchestva Imeni D I Mendeleeva = Zh Vses Khim Ova+ Zhurnal Vsesoyuznogo Khimicheskogo Obshchestva Imeni D I Mendeleeva = Zh. Vses. Khim. Ova+.+ Zhurnal Vychislitel\cprime noy Matematiki i Matematicheskoy Fiziki = Zh. Vychisl. Mat. Mat. Fiz. Zhurnal vysshei nervnoi deiatelnosti imeni I P Pavlova = Zh Vyssh Nerv Deiat Im I P Pavlova Zhurnal Vysshei Nervnoi Deiatelnosti Imeni I. P. Pavlova=Zh Vyssh Nerv Deiat Im I P Pavlova;; Zhurnal Vysshei Nervnoi Deiatelnosti Imeni I. P. Pavlova = Zh. Vyssh. Nerv. Deiat. Im. I. P. Pavlova Zhurnal Vysshei Nervnoi Deyatelnosti Imeni I P Pavlova = Zh Vyssh Nerv Deyat+ Zhurnal Vysshei Nervnoi Deyatelnosti Imeni I P Pavlova = Zh. Vyssh. Nerv. Deyat+.+ Zicklin School of Business Financial Market Series = Zi Sch Bus Fin Ma Zicklin School of Business Financial Market Series = Zi. Sch. Bus. Fin. Ma. Zicklin School of Business Financial Markets Series = Zi Sch Bus Fin Ma Zicklin School of Business Financial Markets Series = Zi. Sch. Bus. Fin. Ma. Zimbabwean Transitions: Essays On Zimbabwean Literature in English, Ndebele and Shona = Matatu Zimbabwean Transitions: Essays On Zimbabwean Literature in English, Ndebele and Shona = Matatu. Zimbabwe Journal of Agricultural Research = Zimbabwe J Agr Res Zimbabwe Journal of Agricultural Research = Zimbabwe J. Agr. Res. Zimbabwe Nurse = Zimbabwe Nurse Zimbabwe Rhodesia Agricultural Journal = Zimbabwe Rhod Agr J Zimbabwe Rhodesia Agricultural Journal = Zimbabwe Rhod. Agr. J. Zimbabwe Rhodesia Nurse = Zimbabwe Rhod Nurse Zimbabwe Rhodesia Nurse = Zimbabwe Rhod. Nurse Zinc and Diseases of The Digestive Tract = Falk Symp Zinc and Diseases of The Digestive Tract = Falk. Symp. Zinc Coated Steel Sheet = Int Zinc Coated Sh Zinc Coated Steel Sheet = Int. Zinc Coated Sh. Zinc, Copper, Or Magnesium Supplementation Against Cadmium Toxicity = Environ Sci Eng Tech Zinc, Copper, Or Magnesium Supplementation Against Cadmium Toxicity = Environ. Sci. Eng. Tech. Zinc-finger Proteins in Oncogenesis = Ann Ny Acad Sci Zinc-finger Proteins in Oncogenesis = Ann. Ny. Acad. Sci. Zinc in Soils and Plants = Dev Plant Soil Sci Zinc in Soils and Plants = Dev. Plant. Soil. Sci. Zinc Oxide - A Material for Micro- and Optoelectronic Applications = Nato Sci Ser Ii-math Zinc Oxide - A Material for Micro- and Optoelectronic Applications = Nato. Sci. Ser. Ii-math. Zinc Oxide - A Material for Micro- and Optoelectronic Applications = Nato Sci Ser Ii Math Zinc Oxide - A Material for Micro- and Optoelectronic Applications = Nato. Sci. Ser. Ii. Math. Zinc Oxide and Related Materials = Mater Res Soc Symp P Zinc Oxide and Related Materials = Mater. Res. Soc. Symp. P. Zinc Oxide: From Fundamental Properties Towards Novel Applications = Springer Ser Mater S Zinc Oxide: From Fundamental Properties Towards Novel Applications = Springer. Ser. Mater. S. Zinc Oxide Materials and Devices Iii = Proc Spie Zinc Oxide Materials and Devices Iii = Proc. Spie. Zinc Oxide Materials and Devices Iii = P Soc Photo-opt Ins Zinc Oxide Materials and Devices Iii = P. Soc. Photo-opt. Ins. Zinc Oxide Materials and Devices Ii = Proc Spie Zinc Oxide Materials and Devices Ii = Proc. Spie. Zinc Oxide Materials and Devices Ii = P Soc Photo-opt Ins Zinc Oxide Materials and Devices Ii = P. Soc. Photo-opt. Ins. Zinc Oxide Materials and Devices Iv = Proc Spie Zinc Oxide Materials and Devices Iv = Proc. Spie. Zinc Oxide Materials and Devices = Proc Spie Zinc Oxide Materials and Devices = Proc. Spie. Zinc Oxide Materials and Devices = P Soc Photo-opt Ins Zinc Oxide Materials and Devices = P. Soc. Photo-opt. Ins. Zintl Ions: Principles and Recent Developments = Struct Bond Zintl Ions: Principles and Recent Developments = Struct. Bond. Zintl Phases: Principles and Recent Developments = Struct Bond Zintl Phases: Principles and Recent Developments = Struct. Bond. Zion-a Quarterly for Research in Jewish History = Zion-quart Res Jewis Zion-a Quarterly for Research in Jewish History = Zion-quart. Res. Jewis. Zionism and Revolution in European-jewish Literature = Lit Crit Cult Theory Zionism and Revolution in European-jewish Literature = Lit. Crit. Cult. Theory. Zionist Israel and Apartheid South Africa: Civil Society and Peace Building in Ethnic-national States = Routl Stud Arab-isr Zionist Israel and Apartheid South Africa: Civil Society and Peace Building in Ethnic-national States = Routl. Stud. Arab-isr. Zion = Zion Zirconium in The Nuclear Industry: 14th International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry: 14th International Symposium = Am. Soc. Test. Mater. Zirconium in The Nuclear Industry: 15th International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry: 15th International Symposium = Am. Soc. Test. Mater. Zirconium in The Nuclear Industry : Ninth International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry : Ninth International Symposium = Am. Soc. Test. Mater. Zirconium in The Nuclear Industry: Tenth International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry: Tenth International Symposium = Am. Soc. Test. Mater. Zirconium in The Nuclear Industry: Thirteenth International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry: Thirteenth International Symposium = Am. Soc. Test. Mater. Zirconium in The Nuclear Industry: Twelfth International Symposium = Am Soc Test Mater Zirconium in The Nuclear Industry: Twelfth International Symposium = Am. Soc. Test. Mater. Zircon = Rev Mineral Geochem Zircon = Rev. Mineral. Geochem. Ziva Antika (Antiquité vivante) = ZAnt Živa antika. Antiquité vivante = ZivaAnt Ziva antika. Antiquite vivante = Ziva Antika Ziva Antika = Ziva Antika Zivljenjska (ne)moc Obrobnih Podezelskih Obmocij V Sloveniji = Geograff Zivljenjska (ne)moc Obrobnih Podezelskih Obmocij V Sloveniji = Geograff. Zivocisna Vyroba = Zivocisna Vyroba Zivot Umjetnosti = Ziv Umjet Zivot Umjetnosti = Ziv. Umjet. Zi you Zhongguo zhi gong ye = Ind Free China Zkg International = Zkg Int Zkg International = Zkg Int. Z magazine (Boston, Mass.) = Z Mag Zno Nanostructures Deposited By Laser Ablation = Nanotechnol Sci Tech Zno Nanostructures Deposited By Laser Ablation = Nanotechnol. Sci. Tech. Zobozdravstveni vestnik = Zobozdrav Vestn Zobozdravstveni Vestnik = Zobozdrav. Vestn. Zona Pellucida Glycoproteins and Immunocontraception = J Rep Fer S Zona Pellucida Glycoproteins and Immunocontraception = J. Rep. Fer. S. Zones Cotieres Et Question D'environnement: Reflexions Methodologiqueseflexions Methodologiques = Oceanis-ser Doc Zones Cotieres Et Question D'environnement: Reflexions Methodologiqueseflexions Methodologiques = Oceanis-ser. Doc. Zones of Religion = Zones Relig Zones of Religion = Zones Relig. Zoo biology = Zoo Biol Zoo Biology = Zoo Biol Zoo Biology = Zoo Biol. Zookeys = Zookeys Zoologia Neocaledonica 7: Biodiversity Studies in New Caledonia = Mem Mus Nat Hist Nat Zoologia Neocaledonica 7: Biodiversity Studies in New Caledonia = Mem. Mus. Nat. Hist. Nat. Zoologia = Zoologia Zoologia = Zoologia-curitiba Zoologia = Zoologia-curitiba. Zoologica Africana = Zool Afr Zoologica Africana = Zool. Afr. Zoological Journal of The Linnean Society = Zool J Linn Soc-lond Zoological Journal of The Linnean Society = Zool. J. Linn. Soc-lond. Zoological science = Zoolog Sci Zoological Science = Zoolog. Sci. Zoological Science = Zool Sci Zoological Science = Zool. Sci. Zoological Studies = Zool Stud Zoological Studies = Zool. Stud. Zoologica-new York = Zoologica-n Y Zoologica-new York = Zoologica-n. Y. Zoologica Poloniae = Zool Pol Zoologica; scientific contributions of the New York Zoological Society = Zool Sci Contrib N Y Zool Soc Zoologica scripta = Zool Scr Zoologica Scripta = Zool Scr Zoologica Scripta = Zool. Scr. Zoologica = Zoologica-new York Zoologica = Zoologica-new. York. Zoologicheskii zhurnal = Zool Zhurnal Zoologichesky Zhurnal = Zool Zh Zoologichesky Zhurnal = Zool. Zh. Zoologicke Listy = Zool Listy Zoologicke Listy = Zool. Listy Zoologische Jahrbucher-abteilung Fur Allgemeine Zoologie Und Physiologie Der Tiere = Zool Jahrb Allg Zool Zoologische Jahrbucher-abteilung Fur Allgemeine Zoologie Und Physiologie Der Tiere = Zool. Jahrb. Allg. Zool. Zoologische Jahrbucher. Abteilung fur Anatomie und Ontogenie der Tiere = Zool Jahrb Abt Anat Ontogenie Tiere Zoologischer Anzeiger = Zool Anz Zoologischer Anzeiger = Zool. Anz. Zoologischer Garten N.F. = Zool. Gart. N.F. Zoologisches Jahrbuch, Abteilung für Systematik = Zool. Jahrb. Abt. Syst. Zoologiska Bidrag Fran Uppsala = Zool Bidr Upps Zoologiska Bidrag Fran Uppsala = Zool. Bidr. Upps. Zoology-analysis of Complex Systems = Zool-anal Complex Sy Zoology-analysis of Complex Systems = Zool-anal. Complex Sy. Zoology in The Middle East = Zool Middle East Zoology in The Middle East = Zool. Middle East Zoology (Jena, Germany) = Zoology (Jena) Zoology = Zoology Zoom Lenses Iii = P Soc Photo-opt Ins Zoom Lenses Iii = P. Soc. Photo-opt. Ins. Zoom Lenses Ii = P Soc Photo-opt Ins Zoom Lenses Ii = P. Soc. Photo-opt. Ins. Zoom Lenses = P Soc Photo-opt Ins Zoom Lenses = P. Soc. Photo-opt. Ins. Zoomorphologie = Zoomorphologie Zoomorphology = Zoomorphology Zoonoses and public health = Zoonoses Public Health Zoonoses and Public Health = Zoonoses Public Hlth Zoonoses and Public Health = Zoonoses Public Hlth. Zoonoses research = Zoonoses Res Zoonoses Research = Zoonoses Res. Zoon = Zoon Zooprofilassi = Zooprofilassi Zoosymposia = Zoosymposia Zoosystema = Zoosystema Zootaxa = Zootaxa Zootechnia = Zootechnia Zootecnica E Nutrizione Animale = Zootec Nutr Anim Zootecnica E Nutrizione Animale = Zootec. Nutr. Anim. ZPG reporter = ZPG Report Z Physics At Lep 1, Vol 1 = Cern Report Z Physics At Lep 1, Vol 1 = Cern. Report. Z Physics At Lep 1, Vol 2 = Cern Report Z Physics At Lep 1, Vol 2 = Cern. Report. Z Physics At Lep 1, Vol 3 = Cern Report Z Physics At Lep 1, Vol 3 = Cern. Report. Z pola walki = Z Pola Walki Zpravy Geografickeho ustavu CSAV = Zpr Geogr Ust CSAV Zprávy Jednoty Klasickaych Filologu = ZJKF Züchter, Der = Züchter Zuchthygiene-reproduction in Domestic Animals = Zuchthygiene Zuchthygiene-reproduction in Domestic Animals = Zuchthygiene. Zuchthygiene = Zuchthygiene Zuchtungskunde = Zuchtungskunde Zuckerindustrie = Zuckerindustrie Zucker = Zucker Zuger Nachrichten = Zuger Nachr. Zuger Neujahrsblatt = Zuger Neujahrsbl. Zu guo = Zu Guo Zukunftsfragen Des Deutschen Steuerrechts = Mpi Stud Intell Prop Zukunftsfragen Des Deutschen Steuerrechts = Mpi. Stud. Intell. Prop. Zum '98: The Z Formal Specification Notation = Lect Notes Comput Sc Zum '98: The Z Formal Specification Notation = Lect. Notes. Comput. Sc. Zum Douglasienanbau in Deutschland = Landbauforsch-vti Ag Zum Douglasienanbau in Deutschland = Landbauforsch-vti. Ag. Zürcher Geographische Schriften = Zür. Geogr. Schr. Zurcher medizingeschichtliche Abhandlungen = Zur Medizingesch Abh Zurcher taschenbuch ... hrsg. mit unterstutzung der Antiquarischen gesellschaft von einer gesellschaft zurcherischer geschichtsfreunde ... = Zur Taschenb Zürcher Wald = Zür.ld Zurich Lectures in Advanced Mathematics = Zur Lect Adv Math Zurich Lectures in Advanced Mathematics = Zur. Lect. Adv. Math. Zur Modernen Deutung der Aristotelischen Logik = Mod. Deutung Aristot. Log. Zutot 2004 = Zutot Zutot-perspectives On Jewish Culture = Zutot Zutot-perspectives On Jewish Culture = Zutot. Zuverlassigkeit Mechatronischer Systeme = Vdi-buch Zuverlassigkeit Mechatronischer Systeme = Vdi-buch. Zwierzeta Laboratoryjne = Zwierzeta Lab Zwierzeta Laboratoryjne = Zwierzeta Lab. Zwingliana : Mitteilungen zur Geschichte Zwinglis der Reformation = Zwingliana Zwischen Mythos Und Geschichte: Asthetik, Medialitat Und Kulturspezifik Der Mittelalterkonjunktur = Spectr Literaturwiss Zwischen Mythos Und Geschichte: Asthetik, Medialitat Und Kulturspezifik Der Mittelalterkonjunktur = Spectr. Literaturwiss. ZWR = ZWR Zygon = Zygon Zygote (Cambridge, England) = Zygote Zygote=Zygote;; Zygote = Zygote Zywnosc-nauka Technologia Jakosc = Zywn-nauk Technol Ja Zywnosc-nauka Technologia Jakosc = Zywn-nauk. Technol. Ja. Ανθρωπολογικά και Αρχαιολογικά Χρονικά = AnthrAChron Άνθρωπος. Όργανο της Ανθρωπολογικής Εταιρείας Ελλάδος = Anthropos Αρχαιογνωσία = Archaiognosia Αρχαιολογικά Ανάλεκτα εξ Αθηνών = AAA Αρχαιολογική Eφημερίς = AEphem Αρχαιολογικόν Δελτίον (Μελέτες) = ADelt A Αρχαιολογικόν Δελτίον (Χρονικά) = Adelt B Αρχείον Ευβοϊκών Μελετών = ArchEubMel Αρχείον των Βυζαντινών Μνημείων της Ελλάδος = ArchByzMnem Βυζαντινά. Επιστημονικόν Όργανον Κέντρου Βυζαντινών Ερευνών Φιλοσοφικής Σχολής Αριστοτελείου Πανεπιστημίου Θεσσαλονίκης = Byzantina Δελτίον της Χριστιανικής Αρχαιολογικής Εταιρείας = DeltChrA Δωδώνη = Dodone Εγνατία. Επιστημονική Επετηρίδα της Φιλοσοφικής Σχολής, Αριστοτέλειο Πανεπιστήμιο Θεσσαλονίκης, Τμήμα Ιστορίας και Αρχαιολογίας = Egnatia Εικασμός. Quaderni bolognesi di filologia classica = Eikasmos Ελληνικά. Φιλολογικόν, Ιστορικόν και Λαογραφικόν Περιοδικόν Σύγγραμμα = Ellenika Ελληνικά: φιλολογικό, ιστορικό και λαογραφικό περιοδικό σύγγραμμα = Hellenica Ενάλια = Enalia Επετηρίς της Εταιρείας Βοιωτικών Μελετών = EpetBoiotMel Επετηρίς της Εταιρείας Βυζαντινών Σπουδών = EpetByzSpud Επετηρίς της Εταιρείας Κυκλαδικών Μελετών = EpetKyklMel Επιστημονική Επετηρίδα της Πολυτεχνικής Σχολής, Αριστοτέλειο Πανεπιστήμιο Θεσσαλονίκης, Τμήμα Αρχιτεκτόνων = EpistEpetPolytThess Επιστημονική Επετηρίδα της Φιλοσοφικής Σχολής του Πανεπιστημίου Θεσσαλονίκης = EpistEpetThess Επιστημονική Επετηρίς της Φιλοσοφικής Σχολής του Πανεπιστημίου Αθηνών = EpistEpetAth Ευλιμένη (Μεσογειακή Αρχαιολογική Εταιρεία) = Eulimene Η Θεσσαλονίκη = Thessalonike Ηόρος. Ἔνα Ἀρχαιογνωστικò Περιοδικό = Horos Θεσσαλικά = Thessalika Θρακικά Χρονικά = ThrakChron Θρακική Επετηρίδα = ThrakEp Κοινωνία = Koinonia Κρητικά Χρονικά = KretChron Κυπριακαì Σπουδαί = KypSpud Κυπριακή Αρχαιολογία. Archaeologia Cypria = KypA Μακεδονικά. Σύγγραμμα Περιοδικόν της Εταιρείας Μακεδονικών Σπουδών = Makedonika Μουσείο Μπενάκη = MusBenaki Νέα Ῥώμη. Rivista di ricerche bizantinistiche = Nea Rhome Νομισματικά Χρονικά. Περιοδική Έκδωσις της Ελληνικής Νομισματικής Εταιρείας = NomChron Πλάτον. Δελτίον της Εταιρείας Ελλήνων Φιλολόγων = Platon Πολέμων. Αρχαιολογικόν Περιοδικόν = Polemon Πρακτικά της Ακαδημίας Αθηνών = PraktAkAth Πρακτικά της εν Αθήναις Αρχαιολογικής Εταιρείας = Prakt Ρήμα. Mitteilungen zur indogermanischen, vornehmlich indo-iranischen Wortkunde sowie zur holothetischen Sprachtheorie = Rema Τάλαντα. Proceedings of the Dutch Archaeological and Historical Society = Talanta Το Αρχαιολογικό Έργο στη Μακεδονία και Θράκη = AErgoMak Το Έργον της Αρχαιολογικής Εταιρείας = Ergon Τόποι. Orient – Occident = Topoi kbibtex-0.8.1/config/kbibtexrc000066400000000000000000000013421331300026200163030ustar00rootroot00000000000000[User Interface] BibTeXStyles=BibTeX|bibtex,biblatex|biblatex CurrentStyle=bibtex [Reference Preview Docklet] PreviewStyles=abbrv (bibtex2html)|abbrv|bibtex2html,acm (bibtex2html)|acm|bibtex2html,alpha (bibtex2html)|alpha|bibtex2html,apalike (bibtex2html)|apalike|bibtex2html,ieeetr (bibtex2html)|ieeetr|bibtex2html,plain (bibtex2html)|plain|bibtex2html,siam (bibtex2html)|siam|bibtex2html,unsrt (bibtex2html)|unsrt|bibtex2html,standard (XML/XSLT)|standard|xml,fancy (XML/XSLT)|fancy|xml,abstract-only (XML/XSLT)|abstractonly|xml [Search Engines Docklet] ACMDigitalLibrary=false Bibsonomy=true GoogleScholar=true IEEEXplore=false PubMed=false ScienceDirect=false SpringerLink=false arXivorg=false [MainWindow] ToolBarsMovable=Disabled kbibtex-0.8.1/doc/000077500000000000000000000000001331300026200137035ustar00rootroot00000000000000kbibtex-0.8.1/doc/CMakeLists.txt000066400000000000000000000004731331300026200164470ustar00rootroot00000000000000# Create and install documentation (handbook) kdoctools_create_handbook( index.docbook INSTALL_DESTINATION ${KDE_INSTALL_DOCBUNDLEDIR}/en SUBDIR kbibtex ) # Create and install documentation (man page) kdoctools_create_manpage( man-kbibtex.1.docbook 1 INSTALL_DESTINATION ${MAN_INSTALL_DIR} ) kbibtex-0.8.1/doc/add-macro-source.png000066400000000000000000001131711331300026200175420ustar00rootroot00000000000000PNG  IHDR*49̸@IDATxYoU{qΩvЁҖ"Pe)aF^0~l٬~yYֺ$IB$IBZ0$IR@߃H$*Q@7rM $I>/`@7rM$$I>#BDP q$I~kBz(=V桚X$I^]9+Vj0#Ip4= +sM0P?ssI$kҁ%ki}nG4`s ɞTϩi$I{JHt儣>[u\bK3='&fI$^KKL xnY4%;KŅ3I$>KҀ%]7UydTr 山љU$Iϴ^/WBDt5+'c < ~i4WVn*pJ,Hwe}12}ysxq2I$gZ/͗KKDӊiƲ>i<\YVQ9,7 /llMlOoLm$I}|i4`Z0MX:X]xh.+s]`΃=ȕ~gi砳qp0H$K~i` 4bZ\67EsY3ykw4zßLm޸5qt$I1KҀi4a0XxչD=|Ѽ7LyBy3;wuv$I1KҀi4a0VL3s`mdcPʉFܧT9,3Ϗ]7ɭ[?^ɃgxH$xi4_/ L ӈi4c5ӔiՓAZùfm.'"2ݹS䞷y\^0_;}xㅣOn=yx$Ili^/L ӆii4dZ2M,'s}8\N4edsg+Ӽ},|,sί^߯=I$c/Kӂi´a5ӎiȴdl \'B29ߋ2/=zt<7?$I=zi_0-&Lӊiƴc2-Q:b8Im.'R2GS7{wO{|'oßw^ޫcu&Id{L|i4`Z0M6L#ӌi4d9_1\wQQm.ksf1#9?$j{>?\xT*JRzh>-&DъhF#-oYga1 >ۜmf#` W_y'aO|峻xY~Gx;MNDi)rش8 @inj2[ۜ2O3?VJp!wx"8?xS2Rh.,XlA*?__ʴihZd3&Ƨg~5CтhB!fL:YߤU"ɇ62};OWwo~ жȨDyF} CMgL5Dd,"wZrdM*NJjrZIͅRKЁRIuS =B? jy *y̐Ï FK Qr"P>dȯ9"M*倓T\Q610WV FܐCW@zi6M>{:VjJZWL,f̖9"ױdFI̘ d&Fs1tN+̀r=sbͅ~nz~h@ mFD+юhH$oؐ5?|MC`4pՎy }7>vhDv9wptm/gxakk#".2r];9CV,!JR8IdD Z m5%hC2鰆~ȸpi k_p踞Rqxc2H4Q DgߐeHc(^fQ܇5k1i+L"W@Ůː0 6 F.yTѓ5< *3c{Bۂ7B:u^nxgAтhB!fD;!ђq is޲pc0ߌm=rCi`W;/v7=ޙGqy?}Calgױ{b0agI $m!lp 4ѭC͡B2u}x+;3֖h=z]=LWtoUJZ5Y̞q j<;;| wa2]ghF g3d!e!u%xΐcg(k@O!ź%,ڏfz6Cp͐hL8O9f&_ αPO-|`2SgpDI-H$%ʬN͐ue6 QF=b7~`@ lF+], [1|(3)x"7z#)og{_hݜnK_ 3 V魡H$箠Ƭghh>۾ -4bb )gI<+t`i&ZemcSyg?4oѰ۬g*]t[˖ќ,]8$,pAE੼o;*\U2 .(3 4Dc/E=ruvsÑ+E H^qhb9a詭4tT N(Ja?f~d γ {:ZIfX7hҦ!ӲSZ-|ӓ1p@'(=- e 'QgX6Ueǔ,^>^AyB02Cg=4C>F[E.?ngWћo!p ^}$VdžXe4X<8+Xx~G E0x~s%.(+-[6c!6`da?xBlG'lK;wLy%Vjok5`7>dž$zCbsxuTJsѫ{?'MsR^_eQt#]GqM/v$t) B]wW/ț 1l}C="DbZ9?.]B6x zEZb;?MR۶}MszNm[6CGsm5t m/9L)gP,h/?" yqR=IzfoTw:;ڦuz:(̶aKYYCWZ ۼ1ϵ!%8q`3;IfPjr;rx~&ghS(_CȀOsT7|# ؕNUx> u\nn[hv۔zS7ǀܯrB=B{Џp(3-6dm=cfC3ԃr @ݻ;+qA#>iBlܧ^{Ejatт|;0z3f<bg}Iwan\jzz6!#CY $y}ߣ-9ձ98_ po Aն5R$P˃27:(uF?CEY\u|<|m-t0+ښꍮc& t:Co[ NgYHI[T1#\S_֠>O0h i.qO-4 GkH/ K`}od*ԣZ9P_)@ ̟JzS5P\82QpBV@K%āL{97(g:bJ}fq uMg-FF(I|\UcozDZSЎX&-qzڧ;DH85 p,*X<5e{El~MX05%(h>Y\˺)XOV++_rbr{Wv ؉!s^ =$6Yyuo!lw0cpE#!?}b@3 5UU?<Ye׮1ؼի0MgfETk2_A?eˣMEM*hpc )4u1HJˠ@ȏ/˂YK0Ȝ]ulC=o|ETPMu>NÔr6vSFArTҙ KK.ތ]Ffʥ۳+4+~xn5,kfH 0C !6@8UVJ0傤?D 2vQ 9keȱɽq ڔ9JK(4f<.3 SA={g:8,jfsl&Y+_0-\${E9y+~7f mL݀φj,SX\ԣhelvzY?0,3f4sa:ܜL2?V;.eLSEdFFEK'bA! s b׌bpNΓA:XyW5@y厎PI[ 7VPk7SrPzvڿ/5Tt9Ο&'[Vߗ|ybqqzyg!Ϸ !-9!eQ!yG2,%NcK+cX>jPk O1!'d%}ca[оef`?<L!LWY4X"k"6g+!p D gJbl9\.:^sZ V[BK5Z꨿ߘMCC/ՒDG撓ϟ>e,03 ܽ%Y ϐx!<[= V- ihHiZ\+}Ӣk\'غn&Rt-ƹ~dqe-ƑhFN4Q \[lIAlͰ$$#r>SX0/e5=}ڟ#h =ζPpϿsA3g^yzƼo%.89f/Ѐ"@O Hso@\Kxskv|:@f$BXΙ.0y̜jNiԗ뤂stˀCB'#:ҀxPրkh@=Nf"cq0P2O_+0S4ù<_"q>uyj!^+Ԯ6˵ӯup.Zv=j.RBVxڑ_.\F6].\E˘A'ĽD\ٻf_YV{{b#.CN1Lb/OE>_z _r]#[jj؁\SjOە No%Z@t' zGvm)V!uLQ \  8ÌbcȈd CY򄱬IJiX< s9t:4:TZǴj k،mc2u3u@֑NsO㱜=].0v87ù͈@=Q!xP3֌k6a;Y|̽Q0f9 : c#ٿyٖ;2Yw]믿?'|l!h b߫զ ^c?@5ErVo 9^̣ _Գj/[.][/R__UjK{Q/ڮ\ӷF6*8 nx8t@G#7w;xG 0}谖;B0 1oЁP( /±sʖ s?DSM>ѡ֧:yMI~E cȼMG>MrT9?].0 QSD'L! Si>fPGZ5g{aW3!0q@'Ɉd&B9a0]s\SBt>1j:u`K ^ێ- u0Vq9q$B\sЀ !=LuTj l7ϠH MC c 9/!k\p.8WNFC::uT˰B^/ ڌoZr+ٺ1$C-K؛ei<,D[1v8(HaLZ@5pna10qdAYrQaY\p.DgL!c'C5LΏq[v( 81'82N$C9a\X.8 ItxHc:~: j H\; & G>!QØq)r>l1(( gBt!N[m8Ik5tl3I P;'8f 9P޻9P.,K  z i}: j@k!#[n@8`|X]CNŰ5BcqYw*8!?[Gy@}⻭oܸvk͍/YYٷy{wϟ=ձL0nwa E18@N@r0$O ;/_dÇh>wVp^ۉXǏwb̟96եkWfq9wik>e "XG4ܩ@`Zx V7zk!w`| SAu{"u\+Cc9(4e7m,`7I"BX4"H"bOi(Wq5?:[[XIzz!^LmZu`#uZDacQNIMf?8@GJ:j2]{e|wGPFjPqbvB oʞbѾ$y<?:ѯ UmcubTyrόb^F^p84Y@O?'s3'L` XN .̿)˙wcCyUjxh1gH}HA/qE1NŲ΅|Mh,~|5tUSg.t,,cjJ g 'Tr,AVރ!ŹI.)ZykpgP.ݶL IRW-.`~fs1l&Ǟ/KgQO:<359&4pCD6dEO~Ɛ$Ūƃ|V {n#F3}os4 XY^zKK;o1gAGBz9)âV3Ӫ& Sk1S%&޽uI=c m[D@V@ܡڑC㬌3i)"JPl{踎Rl]ZTs ~,nO[қMd3i&ϥBI1ujK.yɧH SE!eﶸ8BqMa fzh_ HaXdfZ?;Bjڍ#נHfA VM~ R/@yotnЭª%j>, h܇`Aр}c|gػD6u9@{gn.Œ\^$j\Zet~%CyxkZϵ+1T6{Bl`\yXiB眂߇s1?4X7,>[qӶ\zvr &ǟ`~vΑL(lmV[Ê3gʪS"*9bx+3XF<qbzC*D d S9sj"M6XK:3V)N*Um!?3c'O>_ 和5AAӣ_?ӹm$ H%/a4XcŹSM'o s0%,K/!}٥;-9oî8H9s 7vmw[/FT@"㇐..0i]D>yQ߶Hס(ssęYm6_=K)4X7rPpjV*c7rA8 Xo,z?/_Ot)CRN_],UME2)7+&(Ev{.{{4\399z!Ơ[;3Vk.z\9߇g7B2n|L 8q>!η~UJje,C!*WhWTGƹιg%e9csg{Xqs>|Q&Iv\L=7tU5zI`A5=ęh@TGD5D`k .ΜއA6=68*!&[ׇj^uIiGZqM*b V rĪMi9ly\3ɑ`0Xv ^^ekՋ\ęs-Ln:jxq~BEpô*J׶pU5` ~g4 8XI )`pDPl3I$l1})ity peA JGZJ/$lJ f#[Q#j1aג8SCy \8-׏?ܓ"Δe:( $FsXεއboq$#bңX8D<ƆH箓g.\k*8εCY3VCB}BˎWC߽X$ NqV)?3Kgz7>kT?gY|V*W&NBRfO{ ᠿgODX7R #M:\N;XZj@L}rq|yмX${sYx4B/\ aP#! Atv)v=΍җ,. Z. 0oG+g.ΗG(~RЩV qsY3{h|z\$$+9!ˉeǝOz+%?_ O(($*X"]5,fg:}=tò4l;>>7[Mxp׮ۍXo_!.f%_A%Tf,d4lx˜.48@ ő,/3@9r8 1d4⿨3,,y,™ݝwsV Y818Se,9EY6Ql/qņesxla,77T4k8>:b~=YKe:=eQval ,W8 uםig{+=~+ۛPƣazt-ݹ_{ghf s=:;3ޙ?Euy?"1ĨQ Kb$ ($qAAT.(*K7+,bq\ qəwomOu Ij s{wp^ޔ=wP`+|zh>Y\ɶ{QO*i;QP(Ag%Wrp:l2j4ܻwvس;Q}m&}?@mu%ϟ?c59D!vk(qV( ŠA+ dY}hkfW$%&A}q˶(d7sEOK!+s@܋Ĝ#Icl_<P'3PP( A#W.꒾7[?;w0KI_0|fCM$&ċ^}*29ߝE\30ntWk]qWQ;oؗlr΁l.zg33Ρ&N嫥A9 8+ ByЈkuٗ wuK=zē'OXԥHKq2uz +)Wg˴8A^ ^]"ױgw ;wm|,Ilj2#Avla#zui=\7_zιa"=8paVh*=S|2Vۚ?Kq㨙~#{2lDaw^&/ʟ}/-3}8+ BysCM.{rlfF_ݓ3D&0vէ$ ߱rsvR'ԱdZ9 vgnjϪ/'i;tcnD&Ֆ5xƟ8 Ϭ7%.#\qXpP!e|z.akBO1Ő+N[5Q&rcϟ?'`&+/fC*ѫOE?_D:uV':7MtXDqL^_Bȭlc[N.ك>9ql;/u[©h-pGe-k*@&+r]BP(J8 Qr,$Y`6x.ٓxMQUiJ hbY>i5KX-UJA;}sd1sHZe5F y^ yg˨k癑)*h?3G3ayUAz{t \]\J,=.Wٵ,̱T)]cIW6<=B)7i)ɜiymM܏FjCd`)쨵>&3>i;m!ALbgBP](qg%B.He3)O?;RmvnhR$p?T<|vp%+;-h66b" kSFkM_Tj~M~-QuۣKHR\@FZ /^`-XfaL=wth&o\?NRVk)͏M6)g[Dn]nmk/%ٚ?67qxKie ^+qV( BgM^;tZL۵FNHRm.iɻSܹGx!ͥPAtѫO>|y]ZIeݿ`Ʉ,8O5s+8AxF; y FLGr$Y֚|9$# _+ӥK49@U[º!]Le2[s1Wsj\hbJ;ε&kUO`MڸC~c5|eRs6Y'{\ocBP(?OOg%5Yvf4i~^`sT$UWQ(pt D2̲Q'g5U$v _æf8D6? |cWtY|V-c&ˆXOTFp6El "?|-m^/.tA9zV+K ZÙpКEQh1 zK vp/' gizbkފ&mg{[Ӷ[)Oj-ݝl>o~W#CE o[Yqapnpn<{Wxdt@:bUsxOi}90 ۔L-:#9~X[pȀY Ks&L8dp&΄sFs6jGpi,RqÙp.:V.mco});5 YǵUjQdGGG8ZuN 97oac1qkՊL)c+y;<<4c1?5Sub$bM3c1F8΄%nq:X "fLE@I:I46AmJj0:UI5VN̘6hLP4R D`ꖵzw0{}ιw{p`9*;'wF0Δw}вWE",JON!Ae M[G_LaDf0F^1%%% 8hOD7W 6qyjc>bԈ}_d? :r䙲v4|({hy Md$S(=g΃΂iF`].̹͐|kv r &jԠ^{-d0)|qKMQ < CR rL~ |zrA-l|!& ^yZٿY2xb\rsk,Yx77?{OO>yϤvrAx|>f/JIII 7Ojn5$>nؚؼF>Y&{->};zUOSSSO#NLʥ/癫,hΘ񥤤Yb~?8X^zgXieE;eD^0丙Twֳ4y s6Jn/9 viJ,u⓷ Rm}Z{Ikӏx4,s;Zq_dSޮᓧ_ͣ L`a'>q#+ k1b!/O3@׿"?嗜rXlmq(,"{ rgx+޳SSO#3虜K_3\Ia#c;f\))))pQ͋I9|Vo,u'b=@{qygi񽂂_$h/C;/sʫ4nHƌz1$l¢"Js$ Du{dXh O9O/%Ȱx_\\gYE:{$,8]SOALn'&zHqǮ)))@ 8^580)Cm5>pO5=Ԭ'=6懯_bCv< ߄JVsK851g]~#k)x<Ίϵ節W 9{61e%{))'NpyV`?AGRRRR,Hyef;{DL4LΥ4o~ϗ}ܖ&YX_cs?A֞UGq5S2cꖧK7ζ*>i#N1b!/ΎZ&fU7\ݐ̈́ au:nG _n_GC)}| W'da29cO>ad􁳜CxT %%% {g=?|,]wwp)>?YlaM-dh#yC)ZWcyd|^}W_̻Yv-1)9,/oyYA{udX3\k1 c|'9 ;Ⱦ:o V@ıGS=}]1-f,3iddЧP0Fgr;aNȹ3jtXCfy:b_RRR,8X^zgΠ]KQ|"swVGN|?ͅL gl!@GA Oi8ΰ#167ꎅZJJJ 8bps(HeRh&ZKi,oׯ~ۃT))))))pQlPp6Es_$k>_D5[OY8g,pp@8N8 OrY,Qٞpn礭p~-nz; g.ἘUbRe 燇dO87sVlZ-ZoW,ߕc^,f3/d1sV`bMw/ng,',p@8 8b{1V|<ܾzчspίOpkihηY8 pWzfևskm8N'Y[E8GE5ەp{ p,3prԮzfAg^|~u8㬭p~-nzyW,>pI[E8GE5ۥp{ M9uR=y^c8礭p~-nzy|[yQy:Q8'{ 9Z.^8 gpY8 g,/1It9k g᜵UbMI8 g F8(gs9iG|n}8p7%%qtpN~=|rUs4XXK]̅N9(@8'3Y8 g,3py]t N?=q%΍᜵fkj| wγΓQLK8?9΍᜴Us4XXKg%? g|s; p@8 g rI9vp~ jp>ڪ'bMuyG\pO3.l\ ΥҶpkih=Ἣppg|(=I[-np pY8y7<.GTm"= I[m6`b-&^g|-@F8 re7Fݾ/ɞpn笭"ZmM7Y8spY8 g,G3:ps#@8'm(oje7.^8 }yRyx^9}8?9X8WQV}8?ùݖz(<WQ8'{¹ 9Z%? g|8pY8/UӾps5@8ڪŚm1pC8  py\ypV=÷%9΍᜴!,Zp~/:? :Y8K8wzއsF8WY[E8GE\8*(<(G=O.9΍᜴UE5|2¹p ~g\8pvWvpoduzȰN't8.=i[E8+-nz',2ɷWgR8fp^ۧM<uR=v~ t//y#k.kj7jg ɷp~7T<8lO87sVΥJ5:?٤z/pNs@8m\XS/pH ;Տo.ppγxqG8ڽٞpn笭pWZ"Y8g,n,pG[C8 QpƣnUdiﲽpI[]Ӧv۝pp;VX_u53pڪsihvۉpY8g|_C8 Q`zF"?9k g᜴U `bM1v<=k^c8礭pXS-GW8 gsN8 pY8g|ἈpWϰ d1sV]8kjŚY8jzO}z.k g᜴UΟkjh:;~-3p@8 g pO,3p@8 xH8 g,3pp@8g3¹pp>Y8g|t@8~t,Y8g,pν9 p@8 g mgZ8 @8 g pp gpY8 g,_pίpp@8 g Y8g,pp@83Y8 g,3pίny8C,pY8 gsB8 f¹,o,3p'¹_9'Y8g,pA8@839'm39'3¹p_Y8?~:pg|J8p/ a4ӿٻبm?t~X%ЪPB u5. -nY[ Im%1|1gx|1 @DTѨȘh89˫X#)SeA g0B e TYr̴΄s ip&@8 gp&tV@8 g p&9e{g1L8+3uj;KB52{& g`E%r`8QnD[f͞΄3[^zOGg{:層FMΦ תH~9N)GrmCc9lp$jKt$u_W NwGĶIUz;ˋՕźֻL?֗ˈ+Nwx?. ^0{n~ùp&@4y ^\=]'#b=Jyj:랣V/~W>Sw?S a™p ֈpvjugVֳ\_IʦMUA˃Vɗ>IUY~nh=r"[Q߼g#ښ#rt#ںL_N_NW_Tou{Gq۟|x]/ eϯ_ё>ܾÚ7[>Im2emT"H8Xq1"p4/M/_ʵGJz'&Ȗ4[PɫBctt&ЋM:NѼ5ǚ: 'glQ_Ƶ~SkϟQYZ=_37?6bo듕4)vNԼU eB۰T.F㟞ۯ!Rk8" gp>>LЀos?Qa%O5ven}HOƩ?J˵+^:n==_flReNek>Q&W,ޗeZdS}{vqZE[_S#pѳ.GoXŽMGs5Dp&8dS}DrHUV}^Vcj{TF]W6_ޤ'k_V{/s۝_a㉟.ѧenS.|}ˉ=*_{''VP˭9}1oL-%ƒ9y7lvVx︆΄3x8ړTel3e'AjƐ&3t]y\եLQWoԝPĩ?~nWj0pg)-oI6ΙWٕEOָ1nxjudughʏs~oo7oia,;n:Hּr 'y;!23 , uwf3[jpCj.~CEP{ c˹_z9t,PE'L~tm+uyMU$sK_7G7]S#|o{S3'BwpgE΄3z87 js.Ui|~\Kbw~o+g/ThjR4o/ucR, Ta&-ܠ N?ܕ''xR;Wk[?;z9gW3FccopdW!x|<_ݪ"s۬™pgqjnZ 5psL8hs:JN_[zU*_mՍs g`p>j xϡXN0?Mw;VFN=' g+R>TQkc8 ->=C=7{O8[!OwJRSOwWiƨSĽ^=7{O8V2Upfm|c}cf gX5"fe(3-gq8-΄s -F3`& g΄3p&@8_ù3᜖ϩWg`4gJL8,t䠲3_k`4溬#MJ8Fyq|)jok@ŋQV$2 fZ=( ݭ{Wo/ =ibL8~H< 3e+V g™' XIg¹3<3 ™pL8p&&p8p&c"g}?[ [Et+3lnbZAe,{FGqy9g_3ޝ{vmF069kpl 1&(tAjI-u]$$rܰwg9z ´U-²S¯~ԗ$\vnݽӉAB![<# &mMܼqn\+l[]h?A$B$ e5) B6p ;ݙEAӧNƻv~{lnlp}AYT<H씟({: d 'LseN.>z{P3>ܸ~ B(e}ڔ/DWuP(AZsmWVXN##^D8͍vmz-Cod.{p~™|J!< ?DY;jD9 fcIjnı#q$b#cnp$A>u $Bqm5$R%?2ė@'Q""qL'< A5P Gy/o䴅ӋcZHpT8_<;(!GV8jfՑMszoGy+&/> nM8.9K1I?:D3B pnOy!5ı#9HPH}󜊅rl*o@TbZ<Q.8D?NCӃPV#d KkF[P/%ƙjh^ wLsOW;Gn|opI\z{w _Z^^eB;qB%gbߎ(4?W[o?_2n>9p\g6q#0z3X8\ bábaX1 EeqC7w>iD۱r71ێT8S( L2 AMUn_Vv:SJ.|!< cM}?x"A=sB'բVRQM5dr-ݘD^ JQ5fbԈiRB)H(ٍTom"") ub!' L ma ")1Ho0VW@Zr<8v6WyomQUo4fDyk]V% #"QZB[*pDW{ d,\rBa-Z6_FҀqƟcWќdq+Ť}0chq|fnkD<lXLE}0r:^1 34?Ϯ9?}e;eezqlِ$䶍&|OIOc+x g 24P:FБmc8uQ* =q@+LoFaȹa6I!`z1N$& d&{nS=Bb9:D~q B +]H[k DȚH\mƄ`A*DFe<5!C%B%b{hA; y g"|JG&X4??\66-6\q w@["NTs gKx Q⧦a=waN&zH T2ќ?.Y7r}3$7`Ex6/Ǣx (9Q"^'>T"λT8S( T)p >z "M]za;t9|VhR8][X?ɉ`J` ' 4R-w[<%h1 gY=wԴ"΢BeE4W#'/u-y7@f_y.9_[XI31`KyJx,Z; W/vtbQXp>'{njez3BPᜌ "sC*lDg37AVbٌ3 9`Jagz` ϒoY<XJK1bGLǎ% xv4qy9o| dZ(xcJ8Ő){).p>+X؏` H#aMPʄ߼30zi'Dٜ=<,> &͎C2,z{[B](D.!ƒhar.YK͓|pĴ)a[~n^JϡpB=™BPp xBD,ĉbB(Rn66r1g+ zS%FA "yl{lXbX3$h;ϐFr!vlWRqs|lV&7h:c(Z.CYVfW>d g*HAVXmflymj5[a4r #ۀ`̌h },Tw^dHLPE7?$=**雵HWL^\9E/@$c/ߚgz._˞ƴԈ|F сdhP٧qN4?zo]+GC#) g"yx7u: wjےNGhf|N^uC"9̭v<Ͱk ~yo$0 ̰i3n "HUnD7Q;5 @dCA,69aba-Tf26ԉŰ=y;-/׬LZTAnAgU-af`xЉ%k+|Nry*p$¼H4X olx:8~6tƎ-{U$X4i:vo-Ǭ#1jԓx}0!pM;cʘG1b {s}.ñ1#0z${}.o^XOnĊqH<=m)vZy}w~~: pP(*#wA=v<:F*,F48{ +{u]XIk!X,Cنy`7Mg*Q 5ՐH0Z[H~-u2U D7Y{qTf./^*m>Vcj o2A?93܅38Ë&"/k?˗l4R *?!\>7! Bs*G'J 2R1ݭX e g*S/ZTċ/_N/I_<V8?r pP(*^u ӆGN^B^Ík8 -{&b!zБIofgOlu%D|!D8sI~~3r  BL=D" ح8vZfnqfD͡Ad 2߆p™q;РUA+/q =ʓGx߳htdu _ BP(dm5hUg=ݝHFFn{35ga)d4 ;a=Ӈp™j6CTsa-\qd<amO~}O B8g-i(EWg;ن>Ԟ3LrL3i@3qIm5S~XBO~|) R3 & Wd~K8S[(<6 z)侐3DBPxv,0W +g0T8y[BP3BV8SLP( B2p™BP( B3 BP(*pP( BPLBP( .*pP( C#uBmklPHI/'Sn ݷ $=%%=y8 ˎσ]ƵK~ }""}#r 2_zK|ӉvJ?>}z[ޒO *SDQ0sP| 'mMܼqn\+RG=Bafu!4)44!"ч9Bx?݁,'{:9yzKވ.3'oqQH/ ".;tr)OW/uV3 ^H<kݍX8|9|c=Ͽ˲Fs17NKoA֙B ?:V ׯB-Q].;>ޑ#}Y_ݛ7sJb#\OqNޒS0swW™|$?Õ]UQ8\.܀ۭ噍ܓ%?*?3B ] 'a`%3R.3tQ:dQ2~K{[e qG?{g1m4\: n.rYC.ك4#1^d갴xL4-1P8o@/oǵoW2K >Ydyf*kvZ_aԘ'Mvq/zn7 ϥ™B %1c-61Y!ۖ♛ELfN0if9vλvy xh#w~LbP8~0mKFJ 6"Jy(J J=¹9ulBzF n؈wEzt^^k1ON C4&'.;8'%psh9~߹8^e_čG#@/=_p[3OWw2Z,)$|҉(16x?nA}™B a~+{{$v4o`=f-#(4.dc`Q^456X^7ppnOXȏǎuHpl%LJ`t-Nzs!sr&ĴiZ[g*}_zB~,0o..XX|3Y`ʎl m Nnۄtak *p ߵέo_•o sX&[wKЋ0)[b <3 ,A#{ر &>Q?هd76|;V|F<'bq#2ė?;&q g 2 `αiߩcPNPcKrl=ae[|i1V{q>goCzJ wmO!,ހK^‰ ;9DCGB&c2><~nL OY;^ Uf)nŜЉ5P!@chF$Osi^;A&WTWp.~eBո&?c*Gl׬µSGq)t؋#];dK֏iCS^я'`DwuFs8Z,,1#Fl5ZmK0 c&bz4LP- *)P25P%Z!vmygxbX[!^ ,(Ϯm sK_Es5v6NTi'1[8üikp$>4J9!gܛfjŊO¯~D;B1C-QVPƄ`A*DFe)~ EIJ>Οtk_Gw޼=^kWG=蚕86cY2tVB*)_?ǏkpߊQ_Ԉ¾c:,ݍzOQ3Ļ=i *pjO %"TEQt~ _ 2pqn$DOJrܴBykGX|_OYg]&lc /} 8;"v@ Aݺ㲓>J|A3BJf&}k>`A9/EiVCL /{)8="+xgb2>8&LYvdI~r7ST8S(d k6aݘ0w#m>?k{$xfᯱhGxsɰnw5}EkGX7 h{0斬)ڻr<[Gt- od"hZPjR. fc#Ɓ}p4©B٢ U͈1C >_­AE"@\ o\"=s<"3¹f#V,Õ2ܞ37͊́}ؑ ||+hb~<=QYϽ}[X s ڃ%p~wb sK- 9lEwӛ(C1kdXN:]-c߇S_UQGsJiSVao ɸɮc ~*)ʐ0kW`ɦc(V_ HҶyu]Uj}auNaIe+9{y(Y|La<ϘBk𡽰%o0 5UD(slDNZUf.foZp})Z>ă6hDb4{}ws PJ3~~~"QJy#.:"p.~1G9 桻l,n_6+ݏ{̑x~2"l,cYu4Ncd1{+1o2}l$st1%\8gSF6@&D6F:C aJtx*8.Gh8<k%XT{lI$˟&X>,Biu##X7֢a5zs'F%ڀ/1D`ܐ L&?2^? e5{ѪM7goՏ Xψ[OA*W mI [fF4K>O*;z/2Xp5J'T Ysy (->{ȥbN4[-&Z `@iF VɁ u<>">j-X>~ noV- "bE≸̊[S{y)h#$|{ -haG~M\׊&e8JF#/cüK>C2P6}k a.3qA#vE[ ա= 9iIh*Q4-ta*>!L ;WⅢ1H<=c>jB<Ž܈%-A R_׉~[M;cʘG1b\|LP(Cf^X3v:V4π@('⇻j3K'`숑xjWeA"+>q&[w9p9{:!Z,,/dWC.kZ$^Z zcypyfl Hjx- l%%0YV4_3 ֱ!moFj>Nv6Ēky-ZG)89ɳ~(*}ٓˣ38q>JǏ%xy8-ѷ/|N83@ nB[~3 H̏A 2kv*DWPCLp]̩8 ݻ>@l^3'|^^~83I"X5G±Š+FkD\^0-yO{,KbH,IA0Ωh`8"HFcc3B M]{@&Spzhn5 j7?\FKhvr>@[^&y(\X<ǝ%q%(#1$'T8+BgN,'_C$wu pP(kB/qH LN$#Aq|'! yz`=g œ ~`S[c*p&՜DXd<+.r\ͻd<am}S(N/g7];m6l%7gz=Ԛ~}[o7N7$w`|;p(\I/IOIow|'I8suJy?PHHH4S( 5$ƚR'7v8QYׂOԔ!ەT83#qoLP(t&B{ hMxn?/6x3L;JW(-O; 8@9cMqns)Y &T&ũfh"d"q2WxQ/!'/p 9yy͓s=A8Β$I*p6c$IR9{Op~ӇJ$)R Io>9c8وY$I͗1 wϞ<%I wΞΆόGΒ$I3͗1 s?5:ۣ>T$IbHznTp6x,I1ZYpㆳ$ILe gy[$IR^;SoΆ!7%IgёYp>mK$E~p>k8·J$)>o=<ګ?Б#cmC<=/nGW<}xH$ƣh>ڏiBڐFiFڑ%iJڒƤ5iNڳ9\ŅrrIEmzUjokW-rfQ|:wC^yKKO$IG| ʹ!H+Ҍ# IKҔ%IkҜ' 簦Q\7~ldre~d^Ųvyy5:|fΝu VmX>i3Ck}_jצor ߻?$Ih=iA6iEv,0Ƥ5iNړEib d8_ SgssWMYI[g\9n롯$IR̵}B$Ih=C4ӆ4"H3i3-IS&4ùH5rupƥYۺV$ ;zxf4W{+|i`$IAz4Gh iDZfô9ܦ\Ӡ=oM#=ú^ ׈\Zh캍ᭂpYr;8{ Y$IRJaq{Emk'rq K׏pwo$IAz4G҂4!mH#ҊaE%S4fXH3o_a7 =b8)IxxGр MH҈hNhd69:'nHl$;{+,}ŀmA$IAz44!mH#&9I#6g69l }k~7I$Ńƣh>ڏ SfڐF,p\X(ispF9<Q-#Ds$I/2& iİӜɛ4ùhï=3&zl:cD!J$)>Gр!iC1D3E8m|08&"cnj%IZhd0ӈUy|QEsp9ܶ5" h>$IC| x` g\9=u  q<BZ$I G3nHis |iu 'f$I"z/2- jƍ9":$IEX. `-C8<_>}NNCDFjI$E$z_ӌXeW`$IT2Jck€NhI$E-= W<4J$Id,s\i]%'Id Kh?1.%nP%|=F$MZaޫCZ$I]j{ꢖ$IDK$IFZ$I ,;*IENDB`kbibtex-0.8.1/doc/add-macro.png000066400000000000000000001125021331300026200162410ustar00rootroot00000000000000PNG  IHDR*49̸ IDATxoq~Tt ](m)URdF  0zao29v2$?0Wϼ󙹄~ IP&I$IЂrC$IkM\?j$I  \?&Id醈(<kB9$IU^&b~e@$IrX%cyes(ױ !I$G9!C5ܴ2s 3;gN$I+XB&vDs x~0PN&Id,WtM@WN8\%+ܽ499sbb$It_t蚀nEsY+\BәY_\8sa$I^/ XBenKڍyܺ<O<}2{ϟ$I=zi_0-&Lӊij<)Ӗ%':ׇs\N4Eds=o%f>o`qd GO^.yf/WI$*xi4_/ L ӈ%ӎiȴd2mYN6Wpصhy^%{5VyXU_[}^;;$I4^Z/͗Kӄij<Ӑi4e9չ>YN4ds ;wd_8zbyx'?o<_^{ۯ=$I2KҀi4a0VL3Ӑiy ùO}ks9ȗ9<;8ڋ㗿X=o7}/y??_H$4^Z/͗Kӄi4bZ1͘vLCչ5gO6gfC~;ÓLoɃ{F>i.J@(e!, [B ^B Rǘ{Sҋ-nEKvI;'Μ׏coh\ fgHA}cWFxYpi|}൜*G \pC8"\uffkX |IC`L> plGD:?~[fyέ/OrKDt_osG47R!8yZK K'O+O-^\<7hi鸁&tth._:G!˗t ѭM/B.^УI^M}%GM_K? x1pK7d^3"IE|!>_.&ȦD'3r%%]єK#I  G?pn' E-dm|%x;z5~-ӏ.N-oөO;U/-*m2._Z|iꋓ-43 ̘9ۭpB!g;!pJ6†\c܋3oGiHQoo?}T)x+.S%;;c7:JS`bl/M<΀i-rL\@Gۀst1$btL 5Y.:b ~^Ab-G._)̗g^J6_uHX?C/B1GWR 1G[HN ^Nr9dn;CGvADv/r Th[$*X\:0d|Qu A c>c :kY6ϫmnpB!g;!ᒢr nt y@iÇ` >ܓi`S?yh ?"M{Y=Z)ϸ jh 4Mc"ƼHH'L pA0lÓqr8Lv;=>Q2n =3Ȳʜ,*ek!-ϖ3Q^hCUE[oq^򄲒b㶲N[a xIT](xYJ+݈y _}'vUe{6ѬЫ;ӟX֔Tik_F mQZv&9lsbYU6]-Mɪ٬ Q_'Ρ<v[&@.{q+^9qzgC6?N q0pzك 5?v;ڹ~d~[c33v={|En_d-f`@Ϳ0$cRczJR\3yVsHW|AņSDRϡze'؆wijOivm<IuTa!"#ƏsOkkU?GM ClYr6hf)GmM5׬g%3jŗ\6kd<9C;/ӼT̴|c5vzzp{4;i}iӆtwуS7r3c88wޡ|ϟ7`riGǾ?L5>XFoW@ۡFX>öIIsM}߿W؎OJ괤X.f0˅xYYfjC ǎzb/>R?/!K.:\IzE.WWҼsc>.6ޥ~vEw~EEFnx|((WTcc5{34MU%M8_Z}f9{کΖgӴ9a?MOGg'vЪSf;:'fPyܯO;UWM%~aق6,>}HZ? I4$lp5њx6߬'ڄrH-xP@xj&`=嵬U۩'[.{|ɩ )N\ׯSF>ag722 XsssGo½& '_Xiض~[0Ų~fxvق d=c|K3hrP$OqZi b8=YK/Po+|IE؊s`74?;47VO񝐕~##6q ڕMVZI郥6G46'sH#>F兴'8K6E]T\Kt0lGIծF ?MPU]%!V.QyI!+ʊG)ET_SE{cwS349Ks8T;EFŴޠ&N\*   / 2:AH`btaB#_8@syqkv{ 5HTFD YٮN4TcSK!F 8kq6mܠfjkjp'>_Ǝ蕗^)<"~d=oN##'_K2Ÿc _Z'K2JdAԢ01֠XM4kn[o»281pbs$8hIJM*r_1^~^P[!syyۭdmiM=bCՊ71F=|^^fXV dهCg˗i/@boL8jV0ٕEiRIBm5m?GN즄\hu$r*B@1E)U2.jC,*-Σ¼,|HM#E??ؽ4xi 0n 8cO/FnެLnYc4tNG&S GD3e!mm.H2mú#K+)JaXXFVufylNGKC TWB%Rso:)j]k(QV/L|*e(fO2Gi(E{p%,'̦3h!@ >l\M@[6_i ?f2ei^Ny hQG y?xB5:ıce8Ǐ<\4@lDLgnW2/>G*/-y3Yη&@}ߏ*#v$mk൩0%.=nE|Y4l l0,3ـ430]ln/yAC`9q*-.R}#6%Ņi恗O q%l 1u_DCl8vxlq|~/M?MϨ܏r{:)< Ө*ْ(2b3ڹr)#%lg))JQh߹=JۂU}gLmDs,dN}aGNr41WǮMXv:j3Сā5hXbYy%u$k7\aː\,69Z\fueC,b=n;9!؎x_Nѷh^/ʦa l0w0,s(geVnz B*ƥ.S'6se}{}T~@l k7Օ!qVz:ur袻2K|i&JsTGЋ'z%K)S'?LiVJNJk&ȳ XaZ"mD'4HqMx~m,_G~-꺼xU@ kҥZs3Z]W…R UE*T m`_.rppl v71mgڎO[8{wrՍ#  M0LM1̗._e%R0^+|OG.5FO`g%㊟RS:Y;btNv*pN8.ɀ k6fD2Hs i j:2to+N/cXG1XDZd@2H֡ag,k'l ,w2E0ƃs9t4:TZŴj k،mc"*u@֑OO<]N0pN8/*Ќhtcha5a͸f`c:+F1X?C98F>V|L8o ̿YU&ѻN? &Oԗ;;|_B=6/$Y.]!edWx1N|Qt~ҞB~qqۅb^f4=NݑZuθ(p4#a$ѰCM,'Bit91ȮHv@9pN8gBt8y:j:\Cln]_߰QZRbƌcw 9s24('eav{ẼW-V5BpZVY_Zf}tyMamԉa&]`>uw9uVn ָ5vuz:Uoiۭ = 1j/qo>>?O?>`33c @G2Ch+w]wJ8 gۯ>?q{zw??3?>k{?|#xojQ0DZÐeSÃq|5}v'Z.;pىÿ;5lٝٝݝg &PMNr/!  @0%P܍qݒ-$BO(DGGz@pH~nΝBJr2 0k!5%C)Ķ w3qڼ-V"_e\ s鹏%~vy4#|xr_~_V _O?Mɓ46cggcsPi:Կ*d;N$a 7qI /u鸸e6N0q>D vs%YQS] ^0 ZנLXڶ~-7)8j\ztAcx'&:S9e|C. Ÿ"+aw¹3(ȳ-9Yׅ;F=M -"z=#] #= iHKMAzz*2g ?;?/RWFcdqXCVH d%pL*s1X_'wTY5(J+)D.QLuľ$Es0aħ8j,[2-_c"#0a(1.$(Ai!Ú892;`T7LC 464eU0m@Wt5 Tpp %5J9B}4׵ ZNo$D!G7yDG]j9ٙ#ّŹ( Y?_m㎀|v>>dB$st26t2{,83 cUUU8qx)s'evRjbXʰ2s]!XfQ. e6BEqWncp a=88kt9Lu9a8SUh5jZN%dY75QY:W "j*ySęřQk1n>$})KPXd3V9 FM4\r"^uRz%华$ Ô`=a^sg}4y{8S-EbHX_2+(0=Wa-e57(2Tn7Z%Ά: zppX MƏŇ~{b˖-ظq#֮][bʕ@~XoִLaiRN+|1hУp e sMgU Nq̙:::c#:';cHgvNyy1UZ9Fk?"QoYt0IQr6 b"Q_S MIq1B^_m-B8XޒBIz8~5t82/2( kp_u A#Yi7xZ1݁Ӱ#׿_q}h{4pv L3qYoD{zz ہB;i8TTQFܮ%\[}"8o֭[ĄřD]x^Չcg?7,ڶMrS\Wn1QV@fܯW#h(ޘ S@!kiW7R/sA&a#(yP֟0yd̟?r\2  sڴi_KoOOEyY)ɳi_uEHMNwgO@V:gL1YI>qEie!bZ/dQRL $ǦB^v zM(ɹR4/=s#/Ay] gr?(QYo0 YK,čz=7 K AdV%Xp͉ŧ+p[ŸEe*ki}f9OEl2 _777cĉ5k-1f$MMM>}:Fi8Txi*o!9)n/\1-% 7+J[OEyN#.?RaY؍rj[q688SVDG]VM_9XBG\P]B8Px n7P :EX_HHn#*uis}E}- ¯0 Ӗ_;mxصWH ghl5|R~#D il*v^@5q6d}2-?[&z!Y"vo;pp/СC"pfYܹ3`)΢j!&omTpVQwE ~:=}/ w=Tnw_$4FxQYggkۦpws$PC3qSE""ґF2Bdž!jkH'5s3RiMKplg^qcA~sQcxLẦ 0XElgY:888.k0dn`@S]WУ8'HQ^7qAU1PIkeYo9"f;qfF*PY~HMo^L|J:Z$ݬi[\Cp_8xTVawѽSW Kq)HJJ]Nm(̙; QQXd1 ObqQV&$%Z5ՕШHJ}W',, , üvIB!5)Q'O~YJTݬhQM.EAZn޼Acdqfqnq7ma^;555EKAkEyY=~6ӧx$w˺EDH8X 3n#yNǨThՊ*CBh4Vg%KC1 ü5HRҗHT[h\ In6vGV0 'J\_%J9*.h4VgC.-O›:h07Jaz͡z}$ ux^k=hJdf (Ǿ?_94(ejg&ت, , 7/rh,4&4;883 Ðp1, iT$<.&%Z40 0 Plt|qfaaq688 t0 0 %*=330 0 0 0 ð885 0 0 330 0 0 0 ð883 0 0,,E*p;‚<I1 0 ð88$UJzܿ1a0hN?TaaXYV +IP_W˘hlhnh =gař9+# ,V99 =gaaęYbZn(&[(OsDsEsF(Jp=Tھ<#{hhhai%%Z ",Jw.jkRVR +P[,3#UBU);(/-9=a3sMUUBҸMmKqЫ兌x;}D~]:O>}QqLpI;<}Q8uO(:Nc[(YQǰen]{bďX2Sgaaqfq.+eAI.F+Qe>⌗$.ph|t6b(,ÔE1iI>S/`ׇnpݺmRk(_̂[g$폄|cq`b;k>+I8z .%ԗ✓j6ďȷ@ӱ&{:O[7Q[a˚J@fR¼Wds+8Tݻ6R# 0 \^Zb?_A,3 Çi!LLwkhhP:Em#ay'/5ɭ-+Q4mnMX?q8e*kF_R=1aj$h:-k>|EXs'/{wDKlb==zsgr'ظ3qL10q^xF"=:Q];<)0|Y$+=;yNFP'a 8ԫqtb2\Y;.ӿ`SY7Ya OX83 0 skg8XR-ʼrHl8^zLr>qc`qfa#z=Ъv, 8q.Y(H|(LW0 8{yy2<~}ԩudWRkzN]cV+SEcTr ()֡,4:?+qNQ>Fe4s/u)1a*$h:4n#+JMʧKo4,u,~ai9%Ej!:6G Q^*[)})~ V,?ԆMfLvvDžvy,sN4s?޴W˯zb 8MlMg1zu0$ڟ1n{$NaQԣ3uQ6Ryq|..օI8iN0a's1w(LPWK(0 0A^jћ&,Ϊc5t6e"S?t:N^_,H$P{ ֽGOaq0==ŹZ Bf7rI>_&q^GNBW0jy 俭OR=m"DP8$~xn_~8֍tÞrUw2| "DqkqvxNm9Y/%,R E.L0@1{Ip ؍У3t3:gt5e}t2/233,fŜI8F>,eCٰ!Xu,yPeP ߊ,BQLzV7? kFákm),Ά;d2 #\8ƿ,,Up+Fls`+֞A$d0z"X;w S"4ӳ<}<ىq"34TzxG^Xn'888XX;8xEd 3 ]g,ݺeЫ$x _ ]a\lLb-x <,=3G33Y(s0o1xd.~Tf DO0&P?e]L}>1߭+M݌𪇀eB'׫>}rrŒZ.k艟ǸS W='"*jݰD OD28Ŷs=6< &cFLǴݧDv;OGK<%gw{Ll'hy88kJ2ݻʹ3[#ν{`){%: t.r(&Mŭ;<0=-2b}ӈ#1n[?G5p$0n]6~\ y"&k8geL[νz. fJ0P O g<{lF[ǵ)ζEo{m}BΆ|xNp̦cSt|F9ogslR> _%!8k; l ř\%.A!ř! p5ΕtGȭǠxZY e Fy5k8'}ʰm**>*f^ [eZC5bi%0gb6KB4Z.b{_xi,>]tǼ%ާlV;sf\h^`di`x,,ΜqːDZ)s>џBNf.{K|Y<.n>vLc3ɶ\Rі,~.smj9=ͅQoW)ާn'\?>}е+.3GKřŹgsFR+2}ʰe[12~Ep|mu ň2GOv fP=3Lf蟓@`Ƿ1mxV->mOg$>gg;C$ې7řřY g5)1V#}x #$`g,ʌqF&.kHm8XO]GcfܭDڷSѧϳz?Cg .BN]<4",k`O`Z|;Kp-d|޽gsʬx6'3֋s1JýGFEo - ghU v#+?_gfڙq-bk};e*{+=<1q~;8.`]v\N( tL^)Bwǘ[QXv<';PNoSO 1[1_87?i/I؞֋x33v⿟vӟ ݃EnѽS֕}>xkD?4ss4%I2Ȅtf $%q$N$&6B-[Z5rX%j~]U~tW`b%-py}ӟ",֯pW_=ꓟ1uuN8 g\?6~Y=| p=@8 gpY8Y8?=>lXpηu>3&p+jlY8 pY8 g@8]9'ӣM.u8:]scd8geDpyg,τp9@8 gplل3 @8pp6 g,3 sq'G|[U8pnj ll{pΏ',f7_ݏp>Ϸu3&p+ilY8 kY8 g@8 3,wل3 ppopps lل3 ppyĿV7[ϧe8pބsS|/[%޽}#p>FY8pgp&,pp#17qehwp^v<Лpnj:fDY8E8E8ߏp>?w3 &E6XXIKdm+8zzX_ngz΍M -VzgY8 g`;pop5!ppyħxht\}}xw;Лpnl ll֋p~-pvD8 'q̣բ~Ws gM876As6XXIK<Y8;$k,,pF8 Uuz(>ڝ:τ3&;b%-pΛu8ǻۙpބscd8geDקY8 gzY8 g@8 Ώ㘇y-c=9΄3& 9,[% g,4Zo1G]:psC|;[%6u:y1kR8ۺpsC-VzY8 gc# g@8 g,,㘛Ŭ9s l{#pZΧyKἈN[o>\ u<&΃ՕY8F8"֛"ov¹? M -V+ἕp# g tN8&,M8Y8 g g|Wf;_VmO8¹ ...ŊZh^[ elza:mN8¹ 2ŊZhJ8 g \¹p6 glY8 g@8 qYuvu8ߪylO8¹ p-VG˹pF8#WqMcݯ9s  9,[%y<tp)mN8¹ p+jÅp%,pp/OvyGtf#x¹G Mpqq -VY8 g`p>Y87iZor_2Ç|[pnh llgթpglY8 g@8 IuzK<'y%6i ,3+Y8"ÖVn'{u8ߪù%6瓫p>9΋Ɨ9s lXG8Y8ׇpY8Y8c㨃#."\ |w;_)Lklm:e2Ŵ/H/JDTl hL4 ذ XRn,)F \dSkp:l{vVX~f>9; |^Y!$yټ t8K=QK4a$0pf8x.*{3 !ł\T'\f8%U8{>YSsβNxy, CE*N߹#LKp&B", !fULe83O~|^} zI{Wd3!oέM [p;TNau[2 ÙB3 8pVYkEve4VLL>U&$Ls2 B! gùLZIj0~нLk(z+\PgMG=p'Bù1^j0U8wz\1qQ-uCy|xH{/hi:au51n9wη*,Ls2B! h"l Q g g+f=F8:a13HAlV j>ܷ* rL56+y+,Ls2 !$ gvp6ʇLq gMmA^.,(->G3QU^"19'X-;` +\E^-N8B!p >pf8‡w T'!58x ^"|n^?zXn>ÙB! gs@ngzP]^*,DU?` mN^|q?Zݢ8yXEX!\a!P{do^/֬z7}/~|UwtkΥ2S gB!$iI/Dpf83B;B˹Fu#p#PCLRY6a_NcocCڊgY_ zүV>KmW ΄Ba837iS7m >vlfSLD 0,UފjkV=e΄Ba83F8_fm_3Clڰi[[E9F]"{H&PG?צnޠܨu{vc ݕ=ґ6o|]=[wv{^Yf"d8B!QE٤`pW8_Lw)؞[U 2&rs+p {2!nyCEt쑽/M3 !pvĬr[X8;V3ӸmʺװkvHO3^Ǩ (,x\㘜wwLGWe| 9又L!$M8;T2v* !0ӭݖYp˄<f ZQ|e8 e\jY{8$sy0O#`N%\9OR5iep3  g@8 g,,^?"er8ڝp sEpk鏤= g,.g.zHݡ(8s:[phǩEF8 g tF8 p@Gp6 g,3 2y6k8ǹٷ@8W4s8OFZzpΛY\jQ{YJ-֤%" g||>+joc8<p&¹ R8kWΟp@'pt,Y8]y\G8ps3<& -֨%,3 ,e\/L8¹ ip g,;g|<qny&\ΩR5j?pνg,3 &y<||9΄` + s4XX\8p<phR5i2pK8p^ g,{Y8 g@8 t\{xs8ǹpsUD8K-֨%."wyvgy0M9,ZQK\wy:ohos8Z @8W4A緩| p=@87 M8Y8pp9LNhi~ g~y;>&8~rd2L&44վeIhlTKݦWٷ΄s2$ .ho3Z\^`ًBDS]<hkisyL81=yHÙp5p&@8 g΄o8@8hnKxgÙpEH&ZF8̻2*> -JU+3ff1pc8'bZiÑjI*]]]']/;˟n!kI6cV}p[8GgRJRr1gWX{%tJҩn ]uC`~&,;#y{OlkRSYOwǹZBzdx_z|dVZJp^-d(pXXKH\ 9}&#o$pZ5[g>['BAK}ܩ:an}k^C gy=q sSc#!d=&!vAκԏu ι=Qy?5[ q1S %Kp1fcc;\tZRI.uݺ`,&UMw[f4pkTç=os_B 5| Oϓک~?&eǻFEIm0ʨQVا'pzqhf0{<эY2Iuzn j}}|i(m&8,tԄ`s1:}-Sx}6|/o ? ur׫"/cpW¢?mxbd U??HNfp6111YX/:5y֯kΝlI(K<4S_i7naviG.TtRDX߿J޻S[BUAЪF=/i:(%R^ tfp^,2l ZY7~9? %\x|1NUk<\It (a +qŇן6bӦ9Mm_jQ+x^'q>V4Μ:ߣs{qvկqoǘ2och$bE!cCJͫm}~ʝ5bɓyr/oـ BFEڏ='Pj׸cR5h0>\x2a ?03mS36FY"6Յ 2qRȋRo]oCEUBEuUr / ^k2¬<>֋YHJH(f@8oXQeZ-Ma{f u{h͟oߥIDM#)h%h+ܴ 7s0༾3 jMKHS0>K;<J>uىR[s<8tNj}1OHVںgNwƋ#dV zޑ؃R_80|}w)VUgSTس!"Kj ]z=Uʆ &&&&kk802_D%ca}P$"ς)d1 8\`~z~yQXI)npӁW|N?1Iv  w_emLNBU9>;BEBI -w'K|Gz޵* BPȸuAM[f{ <8_kVVEJ4lX,g/ke{pv`ȏSC#D`VZ߇wd oj(Ϟ=;{:B}ӏc8|Q[ &&&&k0R͂xP"N"5(K\O)Ӊ,v{szu[ge#NcӉd}ޅT<$ǔ "Bck]}m_Y ru}+)I(_ّwp{<*auohfdEF,:e%nVe~#38Ip&a(2ϐo&g>gf qh&$Y, J6,$#9: \g. E83>~R'B-B2F7x+l !d pXc>f: :WOanGYwZ_M(A9g :yL )1PJ)$fӐ՝F;:{ndX26̭?ܬȆk""!?A/nGG.EȜá83ލ6܁wk T9;c޽w`?>(es?w~6?Fɜ8s?>g69?9_9ZE1<9n[w>-i ?C?FCݪ &&&&k8ŕKaE(G,v# < )=4Lvd4lS))H-%=W"M:5 Ӎh2 O 3\ X-6{L a} <0Ŋh2tOBu)PXH^;ޜl^lG| ug["^^x-?Bl{p6s,b.aOlق#cG2k4Ϫ(p`wo?mqf1sWzᅚ-q&bhvp..fsn PƁB)}Zz ێz”D͌x'Dmsʓ{5aKZ_p&"b8^ظbS褵 KsKwUJ;F^Kp<;.HG5u8v8>= :_I9Rsya8 IxVTU@wg;:oҐѡ_Gppk gK XTRxAMmpl׮sgqU b8iLlD8̤[s)!T޼~w4%{hvʃ܌o)^(hýdVRdz5 sai+r4|(e[edݶ ""[{:ԏYc0a d>D)"Ms,blw0#XRus50= SCW ""gbWRljh$Zߞ+.4̾u3K2D-U~ y*.~^_HEGI֫%""gbn|u_\<侒KÙpf8 Y8:]nmua4&BWk ѶʡLQ83|ֆtƧ=g"L83H g""""b83p&""""3Ùα(ÙLDDDD ]^Ů^bȃdNENe""[-ٲ! gYD׍G+xfyk̍8 83c6\ ~22ˉ6}(޽9po8wێ39}p4>hA{[4aeݳ3XSa5$!yY>YiQl&&ଞےPp"1`7>x휡={a/\@-$t ѝ{N^S9~M7YᜈG "Ἑ<gLf$~ ~ 9oihS9sOQy$Nf'cLu"F9hTT;c(oCPA!!t4MLewU?ӥ!4.]j9DA oNת)+A3ywD)50+E߀ kGPo{uYw;EdnޭwF!gIXN]fF־Wco6Py , bq;Ξ L>pzV7x[*5f۳\ ܣl ,^ˁ+g>-,+j,lR.#0:9AVJzNRRJn7i>ʬf~'vʽj;$qv9@yf+r:9v!vyNܕ;K&^{1q6k{˳%7f~eo|Ʈj&ƒ6)UæKRq/MAv,*fƭ\6%qpJzǃK xmK֘|%(6Zݬ),IRA1 {t+o3̟G2̦hOA-ft^*Џ DT{k*ni̓BZLIG]{t>YS*[H}F2-6cD&QiXECԹKv,.(2oӞ+g[;)׽M%7,m^A\IaW4jنw޾.?$wҶHntmeKN8޲ܮCLumi"#t1QwTՄN(~7h<;k(FEw(%T 4?h#d~afϢuxnn&lϥҭi_p?kJnti}X9E_}߾w<3Qwy aG8i{/^KDù+c <-C J.W[aҥm֐JFrU|K&ul]n,ZsC~a]@ p̎ޞۈ8p#i|x<-H:d4 p/"?v׃ ٮt|ëKJWpBd,~kzxBvoo@Q]zT1Y6mXu& Io؛'X鿋*cq}i.NJOSS6ccpwܗj.&<|9{ yQɐݗ~L;"fk/qI2g9]:(}^|+3겹n;}(C\.z9Kjp?6`n-!*J^b r, laioj|Dw[1=6g`iFAUͲ_cCf'Ҡ'&xs rL&)LD[ɱt=cZ B1YW@g!\0eDbQKײRdq7#W ZԷ?_ǷtK{$d=k% &\n}0i[Te@ 5߉ 4*I$%İ=OT4S;jچ.3޲sxiۥio$Ӭs{1?A:j+P0-ѽ2R+(nE~hp=`\,hc:47-zwzDV.g8a5Tpk=ǖ< &%/1HoFqbҿ :nҡjf(V 8֍~qv-3CGPx,QL ֝6o]LȱՄ)f7*2\>-J&+Z`!??1Ju{_wA߫?Wc9WGbgaÄVK{]2FZQ0ήG `f3dErrFu.]xB׾.^8WJcw@0jp\8GopTx% '"9jqRmsxͳ,;oN4(? m>Y?a]@ P#]Gyč^| r_n3ÿ~X.@ 0oG.B[}gaeT5Ud";fS_ ;*>4ɸs[MO,t V/h285MW}' g9QN^n~b@<żmC0OqvqVĚjJ(( $%L bf;[Vx78;ЦiBn(& @ pbf+[VxeqZ8Ib!! D"Ss3? yK]%#$};wTAm; p>p,^n>\Χe@py[pίZ &sp^>@Py$]4 gr-CWo3@pWyj3@`4Ui8 籮R#º/M}[¹n mGi8 ASiw޽F]qoIKۡ0Sz{> K$H""jB!UAE"j"1M !rQCх;ѕ+:N9nY3^o)8B 8eͮ^R]֔wo\?88pHk^8n+]+RJ)W2i0q>魻bAL 1"V SbK51 +vv8;WW})RJ)ߟ~~ bBlpxU#n/_UѹaӜ :6;4v+}o|Kw~8woo<=SJ)R˿lVxXa? 1!6ĈX31łssyFes۬آŽ֥+JZmggn9־XK_$>?ww_wRJ)?a<ĂbD#Ē9bS SRgf痗LYU 5ͬۚWݶ Rpqac'լ8ܑ֡8{k헟zߛn*RJ)xXa? 1!6ĈX3bG %1%ĘXsbtYװ yy2BEi⊬Š9Ke茚ή5Jx3un|xdЉ 9 Qw||OJ)R a=̇06cC1#vĐXSbK51'Ġ6͚F9+^vbdV^|dfY;''Rtu [tZ_35{7=ѝl{uRJ)Ra> &Ć+bF0cbM̉=1(Ť$pv \(mg,|G,y8WWïyˑ-GGw2OJ)R a=̇0 Ą#i3v i<䇁A8g{urF|$Xco%gsyF};ԭ~GRJ)xXa? hЌ 1"VČfڌ%1oN)8;5"!{]üqo\\ߘ[Y,,h1xf4We7m:X|!RJ)Ra> !FĊ;iyM^ဳYH6uf{)<#roe":V8,}^YlFqRJ)Ra> &ĆѬh`G %1cZӠ[H6ufż=TT́LLc챰Ρoq0I)RJa<ĂbDhV40$tL~M#ʆgn_aƈd1'RJ)~ bBlm4+4mvO]g ke3wVX6 @8@ 7ttRJ)xXa?3eƄ#hW44isOʆy.gUX6g088Dv\I)RJa<4Sflh6ϙ6L<( eDWOJ)R ,c?fL 1iv~I 甝:̈wI@'&е5#zѿRJ)|0cChЌh|ڜNx~0`pv h"c+8DRJ)RXa? h#b$hN4<ټ3"A@17/RJ)0Àsؼf7Su³ymCЌ90iSJ)R}0fh^phNs<[@4f8@SJ)R{X6sm@DHRJ)|0`  @ }J)RJ~ք`v4Sx$6zRJ)ʡ$XL<9@)RJ)7`&7³ДiuJ)R*Ʋ 9g7I J)RʶTh4ۭB $ޗ5HIW3{uCK$IP{O]Ԓ$IY]hI$)HK$)>иpoIENDB`kbibtex-0.8.1/doc/application-pdf.png000066400000000000000000000012001331300026200174540ustar00rootroot00000000000000PNG  IHDR(-SnPLTE/211+++---,,,())'''եݲӔ޵ޡNNⱱ᜜aaJJYY 슊ll((뮮ffVV쮕??,,ڸ퉉Г99<<&&vvVVퟟ雛h@tRNS 9=J@MLT:x> ?2IDAT51 @D~b#x+VQDĀHnÌD} Dsxu1B  $"Y,t7^ޭzfp@:Qo9x#IGFxy節g{bu*Ije.I 1$IbrH=r oIENDB`kbibtex-0.8.1/doc/applications-internet.png000066400000000000000000000016311331300026200207260ustar00rootroot00000000000000PNG  IHDR(-SPLTE *43=(2)3&1'q,65>'2#}#,RX#&-QW{(0%"}! z+, }q"36 ~      ~w~hoT^OXIREQϹuDZf[p[iVg6Dz`{[vC_@X:Rbz+9}jMp4Y6Y$E@_!5KQ{磿n3d1_'U&N1VDe2F2;[l졿c2j,e(^%W-WV{Fb2@/JՂϗ|z]2s*i,b7e`Pq(70L_|WF>1|+s,k-e]Lp$2)IEoE}fG;680~.r9q1^*D!)1O6fK=ŭe=0@/l%S"7*E(XD~nֹvA)i#N/\7rIʝk4}-h?{?Džh54[nҵw>m,g|b0#0`vRBsU #ϒ?*zG`dmK$?!Gp{e7I֦ȳY/*lyعIENDB`kbibtex-0.8.1/doc/code-context.png000066400000000000000000000012041331300026200170020ustar00rootroot00000000000000PNG  IHDR(-SPLTE\[Z^][xwu{zy{z~{v~zvyvrzvrspl|ywsjgbusnfb_mjgnjgnkgnkhlhda^[b_[khdkhea^Zfc_fc`b_\qnkrplrolqokkiec`\`]Zjheec`xusyxt{yw{yvzxuxvsfdakifZXTomjmkh}{~{pnkZWSgfcpnlwusxvtqomZYX0.,/.,*(&(&$/-+0/-SRQ[tRNSWIDATMAN@NiSC \f/RoL Kq{"B4*KqM\,bIENDB`kbibtex-0.8.1/doc/config-color.png000066400000000000000000001301241331300026200167730ustar00rootroot00000000000000PNG  IHDR[IDATx 0AM߱ 98[m$IkkpI$t3.I$-ԓI$I-Ȝ'GOI$I񬗛C$IؘJ z!O.oU@J$q;Nۉq>jh4}J JGD, !Ă oFf.AƵ'~I$ͤ~b_S1ӯH$I zsLPO1e^$I4D#1Aa>Ox,g}s$IM3Dz2ӧ5d_ |~^$IEԒ-C'<2ab< Xr =ss/C$I MI_F}`yb=tÉBtaeu\?ј*7NB$I#I3@?Pz4LG >qn,Qs`M빥V3l7F!I$ё$]I_ҙfth|jyzy4IK\ W67lխaH$I#IOҕ%9IyJDxOӂ<Ћ񕵓哧zYWO?}68s>_\$ID?ґ$]I_ҙ&IFS0iyJDӟ7[`8BExB7ѽѽкx|{G$IHGғt%}Igқt'Iң0[cLI_c)yX[}eN<)gکfr '/_)n^-޻}FyMI$i#IOҕ%Ioҝ'JÜ^[CXrZShmLNe9b򙫷Jw*o+w߭J$ICHz/Lz?0KS:^[iy2~JV+Kf+=n6sr{PyՇOk{>$IA?ґ$]I_ҙ&s>Sհ2(<¿]Ygў^.\iԹqr}ou'5n;x$I$ ~#I3MCQ>Sk,cGk+%|}Ҿ w|Ը;_l7m=~aHD?ґ$]I_ҙ&Iҡ(]J5Ĵ|]t)k۟>W߼|w?8I4IuiJNRKHKJH6ul(ζmt2YK?M{Ed;Yg[VqM͍H˥RIu>uxQgy#ѓJ%:DCѣr>[~#,Q.+X9X}]O{Ͻ?_~}^/h\'~n6;idlѠ6qDn%[4y qE_5=Q#p_7 F 7.7 f0IlZj1b1R< R+dJdVL$XD;kF{>Qv.? b@02  ݣF!KEj 72ª,4Vhjڊ[r`ɅBZ ì oR3P1a'  ̕9O6l+sdi 9GfqFc6th8=Ll=D_3ћN':=.ESѫ|2rQ.Γ+ ۸G=K[Vū;W>?~F?ūѻ(^ngL]X")eM㟎|\&PT/1d܏7TL` m`'3 Ývh˝W7'OtOWrӁ~xt6 r";{ѽREwXdpϡCtôStkX+`@Ŵ"" i i]@#jˎ%3HdX x-aHx_t 0}.[v^#mJ%:DCѣR):U;¢laasy غSObLֿwTeb~s{]Qnet\਍ghYTUZ[ۖiB IeO%UٗZ,!  j=[^ɩ'ԽoTR77zozѺw><3g?7<"pµ_\uow 'Fz:(ۃmhʑG9"iE:(GrrDD*`nHbQ>`H[ct1ZtwXkqBd UpL[9|OSCe+AGy8.[[ȧ#Wֶ`){Y3`S,IK00< W—p& wŸp(<8^[W8W.^(g\):S|)4Of3*f玗?^~H"''5״I{zwN?f㏍^画.R<ʪ|#Q(\-?98U@Gƀa@ WP`1yVUrD9*9J cC^@r.{;Atn3)yw0w\+Tƛ?fܓ_™& ¡(\ ©{Nk?I>dʽ ToB*?J\*y:}rT䊓?NfHh']guu’a>0OzsZ$@GC];'yfNq~Jc<r@XhhuQ Xk5xcx8sTWV8L[D9 pe WA-k(80^RAO҂u4/Czg_P)mYAFFd=`2^-O6sEUs8WtJ:@t̠'&+;8upn19MFy ȓJ,P]Yn2G8,^ XL樬({Uexc8]^VcZc7ּ.ΝBm(&{U] <}Hs9 в#zmBwK踳$!ʛ멱=cfIqnW-45z˓Q>`ھ9+ @#7]͝3Kb}hvۖa,'p5GreqqDq~9"|ڴ(GOwScnW}%khhmiJX%GuSCܾv0eao>xލ֯]M/>kn~qokQt>J:@Dcm_fҜ']={ן[^ g#\9m*Wv^ԙyJ^ZR,?\cr43@*6in@'; nwY aLL+ͦ~SJ߲9`,Xˊ:ۚU+=S(W`;7ܵɑGov ȍinm7MNz` C1C^:t~"tw 9UvMۂ=]IP~t(豐^8,'{ 3 MȜ>yH9CFI?kD.:2 CBr 2 шX7~Δa1Q3"1I H;&@."`=A:2Dd fˠB)@'pvM7-LG 4 _o*+FᡡIcgicG}tmvV26НMϙӧ `BAz8嫣4G/)7;[3Hx Ϗo$bd-q!8L#[H2f瘝.d,h- !ysDȠ91os +79!$>W&3W$HA~LsryOwqޮa8XEggCvfi=}0svm7ߤnfJO$aKߣTu/~sv8W%ـ.Uw$ccQٺuZC̟O+JHsc37vr5pWqqƿVqqGg|Gly{onJ1{hǶt[!V{:b{ځTܨ>}j="$AK %^9h%Eފ+X Ƌɑ%K0G{s5x:.yJb׎s~M3{aL٫y+ ^OtmOjӲLsXUezJeE=vP^m+4/^.?ẹvSE48 Aʩ>NsCTky Xާ ?jʨMn)m¶fܯGxNa1Ü߃0Wιz:qHDPC"SukQbPi[.B0>?) ƛ6ʇ߉k{Cz0/wdм9%|#bxGT/]u#J n3U3g9?|D GzѾr(_3GyLsQS}`j +}ژܝvNxQϻ;܇ dk8`%\ckc J-#9ǣ`~u߽Z[یmGy V*kwS[+e҆*sЅq'h[q>K**(R4HߪWmIpIs~#< q>lZȘs@G) ]Xv[o?n7D##s _uS}8Qot>|Zg|>srա.7 nለpWXGC\O N Q(m1ͱӏ!c-@4҅؇1ܨ@:ŹpiIJY)ivJ|iL>/!mS|˦mGy QQc9°/z&B>Zk >LN?.-m/ / ޽r4-ݻ03+9$9rs@Wt>X.E;p+; Pzo-ZW|~:vPxXK}}azg~.yv$7'יtˍ7G'ho>yWpO82]UO r$r5o[]`D͵-XErV9 m}8sۏxnQxz/*U't¥cT3w.|Ve6m]rVQuϜ$ǩT}c{fF:a<'?̓jܽQsE@gF:݅_QaI|q)ީX+uolG06c/YmxhSۤ^07a<>%-2Rt#W( #Ά8~gc|~'[xrU%KÃm/K[6*XK0cL6bx@h\;,$@TVGrNPykp`q1z-v :7ʴۧ='Vk۱0^L:_4li *tPcv+y&Q"Ұ%p#|xs|!@z3>M[UTTŠUA;Ӻ+ccͪcVݝ~b $_(6'F+9zPW0?*  eIGO+nc;c|T\}K8WX=g]%G5XG<'%Ny|Q쨆#1WRW$hUWAx 8ߠycgUxCT9G ?Z*<\|<؎'v+?73)G7&XdMΪJ(?lj H-<_FOg"(XY0nXvNOv ܬ;̳W5qqq!qrG\ {ҠU=-]lC=zdN>{D^f@ jvYf[7<ۼwp+V;mn ο.ڂG4׌w1uk.YrGy 8\8t ]@HG@H7@}J::;|Ϗh>f\!0rGrG8=t =) G;Ft"0#`o p)x T19~G:|;; 6|x8|!OWTQ'9qS8HCcv>#QM7R}w#;r9ڲ|K t):Qny G5.`G7~qG84C|O%qǸ<ʏeG=I`q9sҀ08 'O0J:˅wtɺӥ0Ѩ m3su?M壘B7o UA<=' m۷ Ṅvke MI4aPJ MH`\;  [鱀.aKHCu h'cް:YN%k>!\2o q$;r?=>lKLctcK)  q?wʏO@NF:>IqN:R#^|-Ѥl6q9|N?'|S!ދq?w;W?"F;ƻVJ6aV`lэ˖o  zw{r">>iE띖HFdk0hEJk&qCx1bPIyk`AU46 \=' `jӅ+= kZY<\!ep,BMICBk'A LZ?q,|uDGZ:#ccp+;ZѮ}l\A7F|ca4%;™OrG@ǧSumU!QySŠl-N[JYdE8"!?G܋#.A_}|ccs.4cKKe#T_ /TpctcxO5'#\a;Ļ(wonoz']WWo;|ccnʅڗat- vrG|CcnN޷Iɍ_>)N$/%ch5>QicETT.[ܲ+̥7n:\*Ԩ!4jʾh"ͽbBX5/ ֑1I/xRKIFmd#s&?ɠ@߯]|Y^imW׷uz/}X?'\\ p#;R +,eQqM67hȇw,|?pQPC{uuFˍ{&4a;;?Nٙ;L^B@d BBHI zIB/!@(`c.ƽnKb-V?\}z9y,ѱ( e6;e,:[n755Qx˦bӧ+ݻcܜrIGmɌ0a H[_ܭwE:ܟDSBO&JX/Vmxw|?9$<]3I H" r[I~r;EVm ֐$9%)TV2fʒv AKmFeIݑA>(i,uua赫L'XV[UNWCaarwl۶v$&2#nc-g>cRdK9]<BCطtӾI,#.3[R@|0.q;,\ϓYpy<2*y}K- jYzթ4Su< }OjsܼaJ|X4r :+w,YS)B3%TiApzs0=cwd5'1ڵmѻ[w^1,]U/2RPc2g:oGH;5Ьԧfhv$[#l)csjsN)܉n]1`85ީ* c'$L 9ycз{wnַ")=*Rw̑ Օw9t#lŷm m%Er!%T?pKd֗7/-B> |s2u#W75Rn)/t_~HmZ~X9, .^B) >zhw6 Jޓ9hFR 9]z2i=Q8nK.ӏtc Rd<7`̉63sTw KIo^T2nJO6ﶹiF-\ {DT&|vûua*{RcɄlNit=7J8*7F;Bbq9]0k0*MO^?MIs:)gw0Yc6+l }GĪ-!aD%1JKtxHWc),*2r2#>9O__N:ٳgʦ>.B5:gp!5>OyKYx\H9p~6Rd3vpwJ$)y8򠢔Y\ q%A>i1q8CfC_y.msRNgr)עE3m-_gǰv"y)0o§TʅgY+ǀNFYMY3fI_DT iFϑjlc!NI朑I29Ӎ9L9"{ gMʌsإ$:ufÄ)TdFgC+RJKg^Y{:6G=TʽdfQ{2e=wDFI KQkj^Ոtna ۝;M[Ɯ|:n'dIoK*5Bj3& d1c?v€r9 UNjd mEe-W%2Zo+p4'&Ǝgdh.sq_~1qFVYd+(..>ȥ"f I:FЫؒr @HrT]I2XrK jTVV{ri 9CGYy:!/g¼w=-$zg R}+ hw}!I|p/XʕfI⹽ryOy#Ճ~\)7{J-ӄȫ!ɉvkߗ LՉn;md'.dItpwt-[p,[l1C9v(ߎ/\1O9_$7ikSVNSM^'z-dSo kGbgMʅK^7W|n& ~IQ_^O[Az ܕ/,dύ`RR#Q3-cӥ'/n'.%[OB )w\ֆxcERՄȫ!#73>N,ko /O;DBSX?LQ|z+ER>D.=:Q;?Ba4Ʋ '#9x۸7cѯ+};(HpĞv<[!OdK(ۍLk[ȷ Fט"..O_@oddt z A S*bWITDOq!a-i߇ )R75 H* W&#n: $I/,+P_aL؛]o0.J@Mj,f26ۯ#7 K'҂ o&$+ɝ0=rnk8|μ2mM2,s,%o>ݥSmľSX{T=2,ZMyy9&**+8Ws$6j%O˞bBʅ?6͢R>(ڏ'e{"k%[@LKh-D.3O^^:ܼm$=UiʍWH !?Y'4Ur-C ?x+WHߝEq4sOľ\pgETT 0=AcR.46tm/Ndⵉdo+b7? fFٚ>pJ를_u$b*1`u*;&MTfCw߁?$2gGVTVz>,rVQ-yJ&/Cx'Il0Kj{/r+ya ߦcXv,vP'%6R fSħV27[\ϙ0=dUR.r!իTT_'w>{Ϡs~|8EYh4h4mZ:Y[qrjjR8e JCep/^2-?rLѢ%4|9W ٶq,?GlMQiOm2hFʩ&qF_ E<*,VI@ BʅSK \KX("x3"LK_eF52|(=H- o"c\RuZ1YZ6}mϳ:f]͵R@ R.\25Z)_\kFͲL>HIή]85Grƈ JωdqV(b>}{=Nu|ZˇZձ'T2auȍMm`:|amGYX2)OM@HJB /s/x׿qk),2ׅmޚ_- NHIհ6C4\Sր"/Bk me[l!]ݕ鼕4%py`Lzb-߆c#:1[x{uمZv7sȪ h 6*j { xӿ׽JyGA\,'~ˉcr ?QQSǎpY"BZOXYY1 $Sd68g~WK P.\-;LܷŞeP.;7t{&[v\ Q-F$HLPx u\Ksn )RZ$)÷r2F!x\ F@^蛔ĭA[ԍlwUnRMXCZfV k([VKvuʶ=CX/PԱ<2lh"r-<*s^Fc2Y&*=-WhPVkWSYH5+OK}*xţRno{wWg#IKN|&5ՙZ| **+#uueҜ )|R.V_4vH 3>eWw+@C؏d=GƝQfA[GxЭR~5b#å@L!ݾѼ&%pɴBj۞\M=T6\wsNsi )o9e!2&m ^-&,ߢH}4W*xz*t\ n([!O|U$|ke[ϦDul([_Kftcf[g*^*gE֜c95d,W8hz!z1΃VKM Bz^[K~FCyYI .s&e7/?wxe||ﶦc\{!B/r/3F@,[k;>^$%%avh=_`۝˜w)IN!>WYiQkUr2Vq6r>PV2VrPϽJJU$sm3x;GA [I5 +YL^}{Us'ږWr:9O j]ncB 4 q|oTq9(ލ׻v׷[nϓBRuG_gY8D!WСCvj733ɹgα= b?mI}r[S!t )/| \MbٿaAHrrr* %-7_2۞(#'oJ[*I0=9P uZ=9l0zVsOk6> tz jT}$U%ݛȓ,ތ!ڀ;ZjTqjt\N%Sc@ӣȭ=؞V\-a2^ q5T62 )`k1 ;/0eY9Qt~> mz%ǶZKK+'ߦ~6~B61i 3OBr[n"t{紦cR.Kb LWg^ pMa}ju)篤]w#׮'Km@0/. RL:<sk9$ALd xEZK+7}WM~2_?É>< ɵ/dMH?kSngI2IyB|CYr0` ҚɑǺqtKۍ^}3{ac룮\T+Ȯ-o0chozo{HML0 BiA^g ݕ=3aG\ 5 Ώ0y`OzKo;..~I/gL}+\zz)o],7lhj(.*h3.2d׿?:-4cS7fؕ:>.=%$ܣ Ǭ=㾹>O3j吗ͱ%^LR~V{ y*Bʅ?"2>ӌr쵸OBwH޴w%`H>5\̾Kn,>NjLwc].Ӎo -2(ڝIy-V@Y39Qyo4#1$HZն_7F,?kh,g\|=ܤc<ʎVpxsy$Ƽvds^߮ yeN+C >bl^ىC@IᮜZ=KR.x6oq5X㳜X`U ^78r "7-.0֍}Dy\̸Io[z_/\3#gKw%hϼ3[ߗ>!,6̡sFe򐹸{tAriΥ1wJK ).jkkٵk^^^A\\T*޽KQQj!gA6۰,kǬ-Rl+$7:)sbh֟p$$*$BN1sج<8 mvJS8P-!.R~?n|K8aXEܑi[D={ix5G$q=*r=8@zBjF(Yh#յmR.\;wδ~ >S֬YàA۷//fݸ?9*B+B)H${L6}JTˆQx~xbi o$sֵ}iؾ:9[#F9Ob7+ӻ=)4P:;"3)~e;׽#HJ!{ZF iؾj)Ͽۮ0vo^B?y <4SyÄɻ%/=1w7 Īw3mȥo܉6R]+/BʅKvvvKUU555 ydddX)k |v,FFn?={fQcj7 B% c^4~)o\OOuӱӍ^}2kAGfcO~wrAgr!B\]]M2 F#mkWʵ90o8 {xPVS*:{ʧPBAzkjG2|rAGKgQK2.ri{KԠVpm,FBASY(37#,5bCW r|0=G>wSv{A\J=k&o9-*3_W3}O3OzɢO64\Lj=#гKXUZor@ xݻGaA^ñqrkr#Eܽ+yIi)ȓ婗rNǙ3gHOO7 yqfM:x~GEebTpԠ'&Dcfd_g4,Ѹ,.4.bFeY@Q١w fK#FI߮{oSeYB}VvJ CIRK5"_}^Hy]²Xj;˧Ύf<13mFtKZ}?cal>7Al%ĈRʵ 3 N"cO{SD"Q> tWʩ8'jkj4e]U_/Bon:wsqQy/_QwrD")WǏ A$zvl۪Z{!]P;Çc0R{?+4 U:Lg98$?0%uYv9أOգ1g5YOM6̝L> 9/ݦmVn5NRnZihhx"H$٧)噺T.rvz|%[ǪU?>L&OKo`mr 2 & ƙJǔa-~&\<=Ƕv4ipxTŀ\q&w3 ћ\n$vmޝOR$D=\R!p4qGu|$oU\\q"7jC\cѤY%=w5dޗ콜GŎ:s+0)G)l(F͎*O׺-Rj͸VU=w j͔edEC*|3X&,ab1wGcfMỷ$5!S1%uw#)S $}RJVzƎDVkKyeHHyNVYz &R~f)eA|0 >^ zB̟>{w(asqȊ>ۛSY*熷Ϙɶwx{&c/⚷G qXDy-d>l=]Uf@b6#|{+YX0 _o||3}A Y&hJF]C5ƐH "Yص#))(bcc՚rsc[IظdZ4rArHHy`߾}\͔w9 |&Lw9ǟO0i " HHyUeHHã%Wo<}s)KԈ2ܗ>CnirA\A\"RILZq+Ξ=˗3AR5DA)OOf;FE+WPvANR~m))ÑE,%v?Or㏒p-Q# 0DA:+aԧcQHA c""m'FjNcJuQc I>k|(Ѯeֳ8d,$VS R.x>Y[\N))I$S__DcתEEʵq4S|u?_VQ̝+"msv . ""BKQS]ݘJ*K%0UUO+DZʫ<3=<)w8ͽ!ֻJ cN 8E16N|*zӻ3<&R a0_||p]'iG&JoġO5m?0S!߿>^=q.\"2M!߆$j5HlR.haqk !SX|$˫1~:~/.TRO󹡬oLO!Lhf8L9^8~2sNrM/"{>&syw$Al6='OEvCXoaTQox)72H>˧Ύf<13X]9\eZE1/Ht2+64VK-\0pܵ6> 9=.Qac7q0Ƽy3Z.4be{"R.R߇gHye)%o\Ư$8'CDTjRHa< #%cx-Dg5"_g4qjaO-<-9}wbX([DbZUR.R(Lyܸ[:^M: ݨdLȆLi!fjЉ={;Zm Q̐I5f=VYC (<]ǭ౬o1> 2)cf+ь- aTWc {l,wo?HfYZeև}arTyIyHCKyE9dR=ڧ%]c.sǛdD@W3&w3 Uzha-ЩfM~"{"cHo]^{s"1[-Llް 6 q훏Uآ :NlTF戔?v)/RFYE oWPzuɔWTSWgcB,Ws!Fu9־O貦5T>x=g+MYM%U=w j͔edEywd(9(ن3A(oZ7*1ҧ9f2G+r˄Z)A~rr~=z4)eVely}8)O]<Y\S8#no"Wʋ <ʵ+nvq Vի~dU[ֲa:%U{^cn\ד|*m'.N-lsԬ\nq`$[&R|5l;rdg7Q6:!Do9NVw.#D9.:E9I\سGR(,HH%kWar,[nC#R.RRݻM16l6{ 3 ޵q*r䫹һCy#ܰ6]0{s^ Wo÷Kӄkfj}Ty<~+xR0[1='̞ٹ}d G:&9g\tplrdj)))wv'̔6}% 덏p/!K_?ǰAR~0ϣ_q>3GTrQϞoԾgnk]ٰi/3rB͜;FvEǒtmV⳯,Ϲ̮MG 5s^2G9^El>>:9ee  2Iܻ]ҹՆ¶E\\[TV0[lXunSkP]kFDʅ z5=۳?@OΨ*[ظa=ÉܴQ9NR:!/'wDt b4uj{En#1EٗCrcyaE4_ȡ0ڐ߶.o7~[V|+U+WǕY(kVs){f]fW6\N3j7 W9y3uYZjg_pT42]zQftD̩$OEyQe_sb))7)M jf%5jiݲjޡn% R.wǛKNq4wmb׹$6y1踞NVN%9kI>AԮ$빞~r0ܦzs9b'?El]S{nCN"R.RM}}7nUWx1wʻEFN1b2rJȺ^BnK*\kA\.Hbz&vEljz.a󖣤铉MLZ6YCp__}\ׯv#)p$,b?-|@ږ-"3Хzϥ\x)C.)D15{<'S'yQR\G>-RAR^^N^GFZMϳf1~x>*h)?E\c7F:"ZcH\r7īݹL>7j>W}fuTuw))KgScqَZV_Fu" tmDcVqӊs2B~:7o>R.R0sbk hrDK&X q)j=:ygɌߋ^3f{=QDHv{UY?1|{ )ץ$q~GMuڲOfTWosGE:9W_ M/ 6EMna4ۨ5Z5Թ #1[[+ɿI1Lf苔 _XQ}X&"?Ooo/]"Çy,nָVf1|囏rV:y+"y^XKbQ vMu1 _1sTZ 6 8P80$Op +#vK)6 ,:el7^҉mjh[}87R kD]3o4KM |[Ӳ \O"Qs1tL(薌!?cas2++" tBD]bNpϒGշ=rWtn)+_}=KxvV~cƴ!%E&Y%6I%$攐uFٸ`6o8z{N#Gy3C'hd=4 @Cg1}-爽SGifD*7I ]u#tHEզ\SPwF3mc693,c[SWI!7l+jGX"g)k))S#R>5YISEyc\y444)C”?yuMqPWI"`J7NȇG1oO{8W_vWN=;?1+p6G[H^qB.3F:>u/N`}Z\7W Rz/hCZ\.H㎤KHh07`2h=(OqTbf$fnjd%5V Pv7I o29"9svbgoݶɓ&jr{11" M yLLBUxѽ?l_k!R. R.)W #aφ:HFFz=ƨ*:>}ӫ:y1$d<*-vl[1I8͘AXr<:;[Wy?>]g>נ|xsQHgcRʭXRvFs~=2U_ssM2 2̀9 cEޚIfTwoMy5DũkLݑXp@GHGrHH4&R߯c;sNƌ\*A}:nPxb5^=J؜e*@a%ᇏ7g䜕v\/ '3"8l{? /|/gbs5ZmҮϵߠgy˵gk+>7OS߼J'Lze7%v_M>2;٦dcT|1drwR0[1=:kDʟXA\=ճGFEYiwr>}Lxx8CO[%d/E"[JEUa<\A "r!3_?eo=Xre 2 O7]C:_8 ݫD'4Lwվ)A)o_DEJ;gfd0{ pטS=xz@ F͔ʔw#H34HkrAƞ KDE R.HX\)Rѧ$y&%Ch4r%.\ЦsځH)))DSx$YT*Jw{.*J[b}ˍ<#G r1-\\}>M>bF}}6Qz#'w23q^WW‰_%ԹK3<&R-ǐw__/zȸWsN3s;?=]) ] ryf׏rrrO9{,211Ԙt"1vad؉lh;?1-CLWq yTc~[W^A)*)))*/wΒ_2?LQD5R[SCmuu{ہ*?@@z +op;s00qG$MisH>9qcU&Zõg)h+8մ_$^UϗkZ/{oL^=V}NȇG1oO{80}\]Jt.T<3eMyWF\"R.R~L] )kKyUS6s=i&t/Fs)oQqAꍑ$N񶩌}7hœli Srؽp# d\zr9?C?o/Nctծx ohZ_fӽ3 ېDm5ZK뭡>ԏvkv@<6)O|`%RޙQ3ϲ:OM YKݔ3lsǯwHQRc ey f LyD|zvHGwNLK!=9tm)W3)VhlnzyQ<6ͪ]3έF@: yTc;~1x8k'FtKZT_g4Tɧq1ތ'fw |y-nVesx27kp~=2y=m"Qs1tLk\s wvL藅j.Wcۨ?ڗ ]vJ9VrWMfu\,f7Sqj)|4%ǛέļH1[LѤY%=w)''vH2D;L3R%'z,m[)WJ- u@7`5(} |})`8tGk{ij/}ʾ<󃗦TgVZwr+Ҏ}ʴqx;Sƨuh9CYW`kN5,xz3`ұhT F%@g574$6Zj {^ zdHzvH2?~\Rdjbٰ޹CͶmXf uY8wo;0kۋc2<)WGgu`'L3ef>yrxN:U7pm,;}0r6_M{9]]NZu/9ܴSFA\L\af: '1$$pصk3f 9qq?@o/Qr54%vZ︅L ɔ_&w3 ћiM'?%xk͋DZ|r!g]m)A))))*)٨kLTgOZHax7Q0x+MPٷ0/reǿyepF+ Hu5!S1Rɮj7Q|f cG4-1&PsW:3_#u\eV֔F)ד&[Ä wꈔ߽KFj2kKLQ` Y#G(HOgݺu?|)3>/h0pc^>0g]۩ZvbRS;L%L_C\Hy-d>j 9|{̀nlFīC&x@/+OA[[ᄁކ8)󷓭-I5ƐH "I׺x$#))osAE}plf׮](rYbvArArH/wL)YT?v9FVIB0ZKiFLb+NeJ+i-Ψ-ʁ ңB@HlHbT0 9H dl@U%QaL3kγk| jooWEE^~qՖx@9(g rP몫tyfDѣG-֦Z۱C`pڰa[Y g(7F܏ՁrP~=~;vLeee_HtPND(np;bʉ@cār"fEquLP=(w9b(7@zo(O@~QGvrP~C#DDrPNʉ@Ay k=nU E G{j堼U]ʉPnqr"J`1FE9f(U.U; r"N;3j@9('DD7>P[[@9('yP~jDDrP.Fʉ@9堜rYpF>r-r:PNdr3MIjmKJ S4h *$ވ#ύ<%ָ8l1 <נ 1ucr|5nPʿ@9I">TaR|[b͙Դ{`ya]j@SYwBƧNTp샚6!E7r"P@9(D'塡'ߢ3=:j.ks@>ջ(9|I>V<7OBOH!>ڐe KR~;nQOS;IWE9(gr"PΝ፟Jh쓂*y`pmщn]*[ꀤ`+ӯkTPNFC5r"#[GPΓHH2$OkkgՏ&';n\RnMIK_r겿g 㔒4+?Y,k]ԕ.U!w)Pne&_ԑZAQҢ.ʉ PnxJ )5E_ꅙ ZIxNQW8]'g6 {{(UsS#(=ʛA9( _Їepo>_Eg ɿuZU%ϔU_Uj cҒS9?+Ϩ'"I!\uGr&g,ӯliW>/v?5_%k ߾BʙZ) r@9(g\_1[b!ʉ@eār"f]堜ʉ@9XYN6K3@9(78C@7~jnl堜('"2kq}r"(gCW2z7D,crPnV QN+G\޷D2F܏E A9('" $(wV8r3ʉ[+ud٦ѢemF('gh⢜@yo7~A9('" $(oaZ@9H(?ix@9 fE9&(gA9('"@9(o#rU.KE3@9(7:C@|;(D3P~3<%V٭rZ*bʉ@*ʻڐe _wP/R棛UPt/(뉿P]m߮~roVmrT:r3㽐Z_Qjb{*jultmUH_/r ֨:p 9|W[w4\#f.ͧ*`>͢榆ѢGDPN ¬e:ܬEvA;-O_seC,)%U%rU˲E;&gNAyQVQQ@(h]/9OQw$hrB=~R"Ms+)Co_y|{Օ];m84Fq6eْIےؓd+ĈՈ)7-d‹ <o.SAr|:D9(7Q,Q@(忍GŻa(Q(8QYّ_\(o<@(Y<0WyFyoD9 { \(&ʗ&Ar,|Ы$Ag7$Q>5{Q>KGˈAڲ(Qܐ(Dy]UE}< [ui(.ގ(8wިYrr|&A,C&D(Q MQDy[u(OnHߵrQ~t/~qT($ʳ:Gyau_t@r$MrD( D(+aDySy(ʓ(u+IDy/]y(o/(Dy?.e\?D(U'aA?ٛ$7$Q}D(Q MD9l8Q E|z'E9rQnQ>(Dwە'!vE9Q~ё|5Q~ٍGmU(,[ 'Q޲/:Rrk'Ed(x̳nD9$Qܐ(DyV]rQ@(ߌ(D#;DyrC坖5|eG&G(ģV(,O`(8ʟa( DrQ.A M#GӊDyrCyoXw.E9rn(wv1jT($ʓ(oXwD߈rQ@7~\߈GQ E( D(p D(^6Ey͸.KDyzC[(7j?wE:z\ui(?^8Qݶ(@( DrQ.ArQ>|]@rD9(7Q.E9r E( Dy'EF(&E9rQn\rD(Q MrQ|MQn\_GQ -:RuQ MrD( D(\rQ DrQ@(D9(7Q.Ar\(\D9(oD(\rD(Q MrQ|Qn\ DrQ@(D9(7Q.A4(W\'@r|(Q.Ar\(KMEU;[(@QrQś_e̬.~bz{]lUq\;Q./_) ̬q7_b6-蟾-N_,j+L4/O&13/ dG//W?nߺr_Lr3333+'LFO\(krQ}% QLP@ $qpyc݌4pyywef?LֻͯZ~[~L: Uϩ/F`WtڡBGk/zHZnjv QJjT-LX\Uiˌz2UVrSverL BF 5K^CT]M wZFܹԣ")f\W"0ǪqޙIv6 ~m)b8wkk-E޽&nEQ?jߪ^.bscL:mF{cRM4D(Hy8D{$7d@ .3#C<"af!&sa:}n#]#۫w8Zwf@itre:~hv"ߓ|oBj@B+daW#_u)oNKloaG&2u^GƽZW&LzЕiotl={2 ̇}BP#5;0iX(fgcgOeY2b^3a0B֑h yt8d JUlfis7K+Gtrsc>MdgdVr y ; GHS̊YjP+OLN2יLyT:Z.e˹8tݜ]J89g7?4ә+܂Zp+vK9n" ,o޺,ō4 775in[;y*ύ]'ȖQ3]0W",NUeiZAC f>渆.t L3@Pv)q*.ԃ~v][hQ ժwφmJK9K9J>ٰK9K9 K9KyRNDDDD,,DDDDRK952wwķ%`ʩLyə~wYYΧ\< {.mK7{4YIxs.ߘ}VYWNA"cL~o_7{e񽻫x׋%z-H(@"H]PznK $!^&I&ϤLf2L$wע R\uw= 2rFGs{sxΏ%!s0H -No>t)`ZmX^=xWQ-5K9%;[̠ԉV_'9+(\+GPǹ^QVR?~>?wE\t _\s/y\J&S.QMJ?(sao< s]q\yo%&f\}-..p qT. װ+mǚ^Fs 4P| 4mLWwQD9y(;=|W=%EbN{\z!sF\0a}0ΟYAO>OjTgVT9GkAx%̉f2C[Ak|} p9]Ot% Z>fҡN% D08||Ǒ??(' [otl,šw Cg#>],"{Bu(g Ņy8b˼r /į^kׯ_'sVS#ʙ\9:]K%a4G.p9Vq5GB]̧SorE|Q`Vkgr)qKd p yܘ9j7~qn}ԢSLz5b6ٌHI(AoI54j [Y(w{ 1nF."6|:vhvˏœQxʂTB8r3Nz'(DafqbV*a@=ߩ-H F ZfU +:OQr ~~.zW 㑇|-pWO(&On2(f dΝ[7<rlGS֡3)]Zhk"-j3w@y =m q||h]E8,Wׯo~BqV1Ÿq0"<cFlqECҢݐ؜w|KHb5! F`ѷ bguܫo_L͘?fy&b]lZ(?ߴ-gy8[0  #!HǢ&c2kao\TB7׫0-8eMEor`0(z XF۸VƠ_OD\ Fx縭gaFo7<3ai'a\ !WgFN+J8x`r3M:cBPFZZ9G[]q&r%*%+`ﰙP)@MHOMDNDVWB Λ(!7cTЊro%3}aX)0Tx+wU>7ӡ=҉/n#s߲Ã0+UcrL zC`B~۝2dn 0( q3ГV?ElQD_DEږAPfþepV_}cmXwua._:ϋ<ؖ\nMB}U!!g39(Q2T"eHZDZİ)'aC!tV7tk+`l̨i교Z:QN_#ICr,>'ǦC8x?*`ŁϫE{zyTDzpQϟFZPcv@Cm<ۺ$ kNĖRt/'wz/, c^Ւ;&=#tF 4x (o)-#1!ZU#"!rqVC.iV? eC-]|c=JQáB^V iI+`7NQvZ{LV)|yj(~ωA` ls?֢me `01!8p]4*B"^OEP6W"c4TNÄ-<# ōFLUܶ5?颜$\v*R|S}<L|R }9]7ӫHxc4/"&sqӂ[1j,ԛo[TqO1iե`׼ou[L½L1_4/QP,ϱ BnMD}%߇GrD|D=k>O `2wf v`` ߛyw~R!tp_ ͩh&6zE9mdu5 TUe+{wGC^+mP!7uʛcs%0gh2GW qfT:Z*ޮB:%zʄh^('B ChɇGhnG?̹~ #n+=!EXwؾ?(Xčs!η,_#q>^(E8fFeV]7|.3\r2=gc x%O=a8bndV)JR&`>z!f>?BffALtr~BBT5Ԣz[6d*IF{u_4. ŇxU#gnL9ByP䊢nQn oz%d tCm'QP7X4q;ڻSEY/7bafR=l4zƒe_: ;ktߏ..ʛF*~ &Yy޷Dپf_Q?+_\@ޗa`NH(slm|-wo,/p":*8y? j"0rV$DRl54eI^e:|L}cCJ9 ? qhq cC1mG4&,=avx\,]jk!T` XQALOPr=4[5pڴ\^ pd Qv %Ҙ~I4ndt5ɐ5yLDc({`L[_YiXwW`CxlXջL1)ʮɤlIQc"NFZ~$j(cN <C_[IհzI(,ƨg "SrFHJCJ⑛sHVyK]*A:æσPPy*ATBKe@.&<4>^A!ʽsF> DtC'ȵ~`wߡrzPT{A{(|/7"7OºB,zvƚ H\;עD0X6t0QɢO Y I Az.qW\"ˁA? F!&V~^Y&S5r4+(\e_Mn { 9¦/FЬx2p S3BzGsp,rB;O^\Q@sמ(Zҿ<jړ<snr1gQsJjrD{Q.ʗiMY{2|;Z ڑ'Q.Dy3Q^{2|JQ @מ F(?rlr<ܕG\u(rS4Ey5Oӱ\.(ۧ_Zݶloػߨ0:vJz/ZihK-;H*r  J`"TIlDCP/!¿ʕ[ oOfo\fe9y[cc HAeVT,o]yC之o;?RJ)&?+%ěLU܊_q,|ծRSgGS(7o/~RJ) q`?OJ|3& C?{Y+Ttn20ٰ='FGF/zOor 7gyJ)RJA{?HGI\/q&ĝT&PhnU66qiou]f;O8;[.Kjpcllw>)RJ)q$ĕgM܉?q(ťx:(nG([_^2cvUe^6RT4j~k^uۢX⥅޾*{Q:qcɓg:k{nXy}߸RJ)RGI\/q&ĝQ\Oq*^ŭY\z;+,c|^ޜ)XnAAhqŠy3KeцήXJSlZ޴䩳KWAw굃RJ)R>G'q%)9ğ8R|S*nů8Z|VWŠrkr6sR(񹹱ǞG [VtX3dO?*qhRJ)R>G'q%ęxwOGqiGY\oq. ʧ(3Rڲ,.N{ 0_@}mǎ>҈RJ)R>G'q%ęxwOGS] KI9&|Yמ`'gk`v[=O6u?8?8#f!>3y?Wt9#=C 6d2~u/hajs|q8㼏@=10/y8H_wGɞ< Ix[>`{1kB 2G$h8#$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I78iIENDB`kbibtex-0.8.1/doc/config-general.png000066400000000000000000001165561331300026200173070ustar00rootroot00000000000000PNG  IHDR[5IDATxA iKmar0Np'Qdl9%=|UNCq}>s8⩰x _^¤@ OY/{&ei S60ZH:Va$j> O2Z5j^y2#wgDSFcFq>q5KGg=1~f.~C%-#|yOGw|ψ}>a> eMshnz\ђ2eDz'c9K+yo*>~VǿßKOQ%Djaz:SJ[@K)rF r1^00~~}99ݐ8y;ϑxWK6έG'AnO=n,x7W|y,[%RJ)p$ĕgOG|T?xqn,XXƯg =g*URJ)F GI\/q&48ǡ܁rt'n.\tsZ*Wra#7z3NJ)RJG'q%ę '|Ja|na1_\XkMWO'+k~k=NJ)RJG'q%ęxwO35wNJ)RJG'q%ęxw0ǥUƒik+|r=<D ׷xZȴr'^sy|,z_ӻqRJ)R ?H<+%ěPTwWWS^Wߚܢ&//Yy+Kܵ`:<ƈ#F1bĈ #<> _3N'<> /Sl9S[ubDwVK%5 iO=[7?%6ghx0]B$P2ǰP a8dFBe#\4`\71j)ȥqqy,!vDҸe\sFČ2,g84M1:Cf0}. B#Хfx$|^ g7Ox(|40[ՖGy Tʹҕ_: B;EYI=y7/s5/|ɔaqn_.59 lil 7Ka4xYZXZ9xX4ZXZY5] p d.h'C@r$ w$8ONؓ IxX.J&/3'nb KH4T20>|@.}- FN] ,^mWhg1 u,-*mxiVi 7'@!Y4?0n`iD^SϮ~$~ τo;P(~ O _RՓ3]WtJWp+.E,cO)[y7*5@S S\Xjio8z7QnTq9ƁNMpq ,1.R V 6^9::ibaJ;D%Bv+KO<1t )1QRYEeJ&Yp˥ܤ ܸsRbBElDʥBn\];lTQvjpie~ ijmT^Vƴ6e/f T LĆ'Kx&| GUO[X3Z\r'/ϜOQ`4WS+?]z߿8}YBMФ< asӂ.t cG?L* nr 7-ʸDMܴ)!Be+Β;LgtЫѝSns_B g=R)G `;BbKawub_^;V̡ik^9)R)/-.B Xmy^'[_czÙ5ʹ9Y%2I@믹f͜I%[bp=TPpq#o \-q0h"3nBƭΎN._/lrt2QG} +/8J6ΗH䨻.)* `(vMe06.6}чxߵxkW}F[򁘔Uf~ U1ߜLn%e]LMƺ ggurA4 ɭݤJuʙ Xce,11Or19297/rIg!h4G}G\ߘgoaa`BL\­qIJDdq o yT K~6 x=pS6|\A#54"!G\sjll43TK C,]Wڝͯ)n7zǂkakj2ɨǎIRcXz=q5mHMwmg}LݹEz~4+7Rkirjڿwz r<35٘y: _5֐@ћB`q4 q4ip]hIoEmxhahx t-M;UEh%@s}Q3I~N^8Y OFu`H}rM:!g[e/)S8nt#=2adƙ;a3ftel&[ؘ*0~u4uN: {nvm+@?s]]ѠDoc>7O/3"nХ|Vp.?&`Ӫ7hvNA3O ěYC'=JK Mcq ġ;":DŽ]'wqq0y/542&ʼJuAqy/Aƙ}@3X t ׫ǽ[n6n ð?9N5kcJ5o ņŤ )ЗyirwQNTΜcONZq,yd-?mn55ҎIATWQrOl$[uo:_ZwϏTSY6bbs1swHܸX#Kgt d m-|QF]jooG6]o+Ԕ3],ײcۋf +B}lܹl|ֶ57]{nSnrUw\wa[.H"$"n\{-q`\eB$2nLȽ!y{Xo/έ cӶ-qZ9\VU+VUIeb#+J|1`KyU%Y;d F??0%0N&AK.x42Vy[\@\..foe)u?=F%%-j à f3e3:ceZ!Zol;voٶjmҥ ާ)iqnMkS@RzKSoXkm $XQ ߸b$EPå#\ 8z{C96NsDi*^PSUR&6SOx:^3 \^gr쳘V,xLl8\+T'Ւ̌ S靷Pyi 9hD}s:GƍTR9G+eʘ\ N\IpN+[̶gs%[uHOԫsUUp8;Pzc_cR^j+*wrYxlQ6K>lni˙}wd7眣cg`'N9smV3yYR0n˦Xc1sN1)9o [sea< Ef$QȺD!˸/|-U`n|5N`P6Y~u5uxQ3Y⬡wSֆKg˲BRg)aWwe=-伲w~:w޸39t8몰_LOӎ[)?eRz()r߾50a(ϚGyX.t.)wgM:\+u"y2N!vg |l`!m6xmp%ǶLeʶj1+(I7oyD9D^#:,Ȋqoe1~)>r開\pȈ7pk'TqMmњucՊmfh26fʺk>X~6 SKC])cRnmOEtٵù3?7ا_YE_]GLc>c$V,kn%rnu\"t`\ЭtRMȺD؁O*|>OH\˷y9:#,>+nGTE<:th*X2~~*υq$ /H|3>ir<𞁘[!>Fch_RX@92)#-֚›$d1xtIs 5}4ρ9m,bHFNE:X{y28~HE.z\z蕠Oy^C "4ٖɶ8#ے~{{ d[Wx/q g v!M8h KLtdѹt΢ŅڏȾ4hҢBʤx4˵~"JቍWi 0~+BY-,`UH@? ATT'wr~p~ G[9xhs?# "ݏu v wwO^x{{c4?eG ǏJw"iDy\|]'#s tszh{)%uvwy渦Vi|S.!^?'øyw¯B`siY O4S)>x؋Dy| q^4#p3ҽPX`hc\iF556G7o ~Qi!o˖C<1(O|@St#P'Suuh$px{~$앰MAO 4!OÏ'w-<uG;w xx En$ <3D~ )6ϩx߷Dy@zāisGuGB^4ƍ6Fޤ9995/ 97 |]DyK)z{'4qkԋ4~~FvNIw{x.|x{ixB}Dy~#dDz{=UcQsG#Ƽhl[[ۏo=+(FxoDks'gZ0-_׾!bnKMZۭswe6kg\eɟzU;'Rx x$QX||ja{1Xk+l6sK*}.֮&J֦E9R!vNZwl)n?{0գ]oE6}+ѭ5JoâE q&ʓ?"S|*s߭n*[k2\^ ܯua<C-B!-hBdN1tǡㄓ,ߊr uzVn~\&ʫ{L0Ϲv+he)c4){wg? #)6[]H? $bpv#-AO0u߉T 0=M[8A?'Jn(7Q^^@zҟПx4 8wtOѬ' :޹ߣAϯupP{:='%L(V-` ER|ymqpy;V߂+D7L(fyb?E]xﯾΏ[ܳ9gﵼ@"` 6`` 6l09`AB"sAH(VPK\Y6*V a$UOa9fy4j1(^w_z7~ ņYxj Yϔ_O@o*8‡Gѷ-vv/4>?*p1Sٗ[3y\8{/PJ{n7Gd= OEN!h> z2,^V O?C“^4 DE}'Aa,< 8v|uvz׿i;JUFzgFû;8Fr'Oټ/9Bn3q*qkFrNnOw%^nCW ^iVHdX-G3V,"5^C\_R~=JfF% mg̖x}Rf[Ψ͟hb)pX;n+fsL\ VNdr FmK:nt6~zvƮsd_lZZ/,^9#ӹSgzǒk\krQ||]i-O1^d ^_˖rsSV#)ϰ,J{zz_{':wFR|wEZx"o,x6_oX/-/DM%@V.Ub"8~LJS~%"̎6\\mCo5gdӞ@Ti^(S+l6>qX;>÷s4=ĞR.sw\kN0wל&"^f0I^?m:ΆPRz )RӠEQDO^ݑ3M\IALr,֑b>k2CXm&OnEro[\z9|#asw+a; R['eڏ49!jH̞MwߙKmmm֔K8_To+=H'0Ds2o&8t֝UG9P7Nd㫻χdDn S}ݣ=llhOG%Ӵtsާ,9vv;kdV`FH~2:cIQt{ąoGУ=c".OFi4!noˠs7*sp:;/f\ ܭMǺz\WȺz0v/i)f܋I2KR?k.Yu0$1)d֗$>ڼ\jY58')$?%fZ~)%!f"S/iHo GXUfNo$ofAbNƕs nTeZ1#)OV"Zvu;GmpWVDr}"w=~ ')d2W'~fM'ŋZ)Oj=R^S s@B_HSQUmfj$ /$$ i=m(܊xoOEm}瓜,95^5(z@ZAڥn9K5!W;~$e E𖈥"O+:])I$%Yͳr-ABQ]IO$$7Nj&Ix"K$5Fs%9I?kV.PUFֆݰ@֝âc$Gp"źRTِds+!=7˥l<[-ci))O )>jϙK zyyzᢚMd|ꖅ|{d+^7/Ozz:<jىHH7h_އa4՗X+`0hpg ~M[C257 1?3%%-r$R[YREAC>%.(봗,n`ybbֶV]Ԛhݾ@@LM??)JMϔ3Ԙj,%ڗ5,+L><&+Ŷ<˨򿮔& $'FH>np& - q;g゙8N/tuae&a]%u1|\ƔHίiߝIqM+z"* b<>uq"+1@n8K2oBǮRYBi}?+COy!\ ŧ߳^ !%AJ߼L R.RdNGFunG}ҝ ?1{cg`Gӥe:XV ŎT<8$ω0@un^uχ3R%2r/%<<_ss6bn2(+lKaTbwYFC+H޻^ ,$" )jÆSL1_7]'O+C{jc\8`B9(ox/a:M$.uew>5p.M3}yk[Hl7ƿFFI{&Ӝg_f^Rss4Rfy={,}tVyPDr~AY-""!#?Ǧ? >ۭ7ΠX=Ry\S^Iw;"tԖ14X"3rnbC2q=JM@M秏cL:Knu.& d:j+ȼ #!R. ""-Wߑ#W)aхEAq@z~ՕFz^k&UdޓG R\fńc&' d w=:}1ٝ11b$cHz|WLj =8k/!Tkkݖ)@ W'L+=ku,j; 4Ⱥ!>))AR^&RRQ71.Zڤ?~JT<>KBj! V} tgյxn< ]k߉>#' QKэwq`6 LXk!r qY8g{l3yqd.ǧgמ.=yHxۭ;CgjF$+w" /2AҲrrԩL&%ڬx"]!J=cR>0}u~K"  R.R 7&>-s  PK{d*)A?rrr rAA)))7g!Oz@%߆`EBB\A))/IyEM %%Բ4o8uk`;2+P\H  P}&`MhCN|\L&̖ͥo1g':b̼݄jЮ;]miGmR~' "&wK[@EK:R~(\3]YO.-[ƃzP RVt'qC&>\k D.w=UP޷1dyRڔlpJL4LJ[>ޔMˆQwr]g^B>oþ€ 73pN,B\PfjЮYBi}?+,HykCADEʛHdM$A<̤R`jӹBߧborn}4j d֏Γ-QW#ؖZèJwD7Ҧ; ,#G%);'1M"2iԠ˜u.e$zjneWZ)eŐQ0S>'Р]C$9d먡ՆH  7'kc`q ' eBMu*n'Ŀ|\,qgfΔV1(45&WcKR`$OXrc[R'wvؼ7o6 G}d~%:G/a: ۭ4g[*E[ItDa!AA+uϞwG)))] q2IڗH2c#or͠"}7H89<ȚrCcߋΔ[OG?Gefo;~ބurSA,X~ 8aM5);g?aZC90?CWDb@E%2x6|SK2skЮ.%_mZ|!FYז3d'"A '2"ښ ֏gީ{ھWHHy_F'%O '##>ل1j:E/7Nؑ=>>Wtad_zUۧ57Sn2qdm5yZ]ҽm{2rz.aVzUizwՖ2㵜`ކl6Fgͻhfg73b.}Rh@xۭ;*Ylւ ܻKii)]Y}iNZnQZZ """#*(GWZ*I8)W"33 Dب.xӖCis#юW2xgQ T&q3B֏^ R.R^LR|, 1QV֤\ 0jTVV",:R~PHfDK`H,HH4[ʛ{ <ʄJhh;^ WBW6;n780S؛:l?k=[C9q%Ef251jf\sa|FŚ{Y<s}]j*=TEKiHHgI|}=gg|?=r 8u;a4ЖHH=:n$ާA^kos[΍t㸱i"#7 gkpח·ӿoޚ9a,HHyb|՜oSRn%ه߿ݻw+?~Su~yJJJhGORu2PGx G0t9#Թ|=iqf ~^lo;AHt}n?< >û,{l#U}x-@8{';nj\%,\Ht/g[ןa ƭBt ;z` 7Fν{u4]p- a-}8Nq:,I#}| .O8}k:]WUx(C9U/fR5I>׸geC2cgTwX6CPǖhDf7ߊ*;cr$f&7zn$%kDPWz܃e{Z%R.Rn]TUUj*._͌͌Y,)++\uuX)r0z!Lf|ϐps!1فk}+߷zJY./cpFz )o$S{{\T=&R>V>3 zَNpM Gjh >1- ggg {|'1NPM^C}^ǖµ[3Vyܭ+J)5od ,Iy^nd/8Nbv\O;1c$ a(ruאQPiVcCOUۜ׊X? (1e>>C>)rA\\\͊8q7nhzaN`:ˣnӍ郱 ֑2i[/Qaug-e8o5|t h3!wJyqe ?x2=7]k[ n=8Y8bL&6~9g˹2HVL⁖/ &F}3 iZz*kz<J&?| 7Ӑ Z<\~7k/W~&֬V5e\DEʟ6pE-YQRKDD&rc':0yE *0Vrk?0]rg#j cW k+?ϠFy+8}Ȉ |.qN37mImRo4L!34ħy8`z)<*)qp1 >\'WVԯWW48gkZ08/ȻkdgI8ǔn>tЉ}3qߌ#ۜhg'|z299vR;l&+#~}P91ǘ:|l.n.&gJs%Z)DEʋRn^Ƣv[Q2fӉW[-~1mk݂C#-I\-45{6d18h 5t-FhoŘy ՂF.c^tiOwI,>?Է/.6vqbꢣ$G{Lqꂝ-dڿ+"nsl[vP;j5FGqeۧL؝*T:p/~zo]$K_ƾ=C"o )W_d0{:v{x>0ѱ ;td9Û3Sny<,\cqt1WqQ9k<`O6J_t›_,fDNY'93\1Nd/?!-3;_g N{uVP-iR.C|t՜?ն\msk.&䅅}E5S D콄UP޷^cF:1qiK1r+\q~aTr`nO^+HY;񻯧0 ]p]@ Їـ,Iڈ>ˈ5oz"<ülpl=ƊO/jfLyuVLyTxo[I\+2gsN2퍲8Sn9=oP? 2//uh62f])ж̔ s#Ǐ!bcb(119tP;u,P{zJy WR=_S ^2EFJRiwytu 94nu߸8ojz%2x6|SK2st,j; 4Ⱥ!>Ac}(΄ L)_6Y{ "X[S,=MrKm s#62{o#lq#].ԽRLݻ%DʋZDEbEϞ=HʭxYP>M?t9,b >^tM7]ml4w2rwٶǾ0[L{1<&8v}'FT*LŐx;v뎭J: W0tDnv+qY8g{l3yqSS֤[hHBLd8!AܼvoBG+uԽk $T>}Z[Sv^Q3m=} b+O)kP'Խ R.RNk'O>r5SBMg5` d~.Єt rAAxZ)/.*))Px^zU[梶=;xڦ)Ar"bEU\~{i3-"Q/4 2R.R^&0#]~&"2  R.R^^ZCk9y7vj)Ar`ϽY$_ 9M QE|ޝPH  XHHy]]ENIzz}-vagӯh a}p 5H7AA))7֐x]m*SU OmNwR$DA夼\^c"yHDY-t)wURJeA  @ʍ]^ajӞNX|8 }Cڷѳz1fntzd`mb/;[/ZIu^OW}6. Asѯs{:vзq#ht<{t®)cB\N^hA!A'*|t ש̉A4hL5U-/p>0>)Vgr: 73pN,B\Pf _b$8["SptIzucmFS{S7 #F]:WW jʉ]7 7r7SOeq ɷ$ArC$9dsDzb(v)&}N2ESa [1]e 䵾V-10@y4KF5 s4P "O-"充$Dn5O.=Om>{!~po G-9&Pz-NgwiRݦght)>[nuTO %| zwnKu1y2+Dʏ  ()Jyqfz$;1<]%GUrr 2//u:C? vs`>g,>Ivi%ZdbLrAA))/hR^kRrr ɻARd(%u}0RSSK@J7­U`2 .%_mZ|!FYז3d@*ITtDnvׄ9}x9#9^˙> m86nc6Sns+ڽʇ;C)mB/V HHyT}JtWTQQY(e Jʑ)ADʋD_|)/,sA1E%z JE yaj$$DA))O'!5˕?%7d!!!R. -H,_Qqf/$9A%'&!,bK&1Yمښr6"  R.R1>&p^%$RR~'/4 BR.R^P@\t$1aHkӦ1l0{^| \+qWh!RB# ё䋔R>ՍӧSČv\fFWnPYCEU UZ99$-crAA))V:؅9fSU]˞ W>0iU^U˜{>ˀnر.RRrJ^߀,.R. "/j)4po|cM-/ GMnF_^E*-*c1I(XYDʽcst2Sꤷy})Ar+/s ^^\v kbޘ>"]f(R}K/1['PUe,Ο'qē]7?FةCZǍ|# k9[b1Gy + e}7.>}zj2:Хp>XQu}&W/_ko݂C3ܘͯ3jQa,` cg"}Q=m܇ _!;&1 ](3n#qp^c-R. "/v l ??k©#MFF^)<hͺ_.tP˫X6tĕ N/hj(7e|)0bԥsu;.ݠ2], S>}i D XGЎ)8$@ W9@X~ۓ+T۴ui^B* b[5S^#WeP10nRꗽϬoþ€ =]p|{v?,@:!"+-?" `n)+kVwWw.^u~i90edR;rU$MpB6uJSMv-ȾtҟW?+ٍ_n7}UϾJa-P[ȵL>zcCQt5:2i*<%n#ٙfn:u#4]}jZ{_׵=^U 5Eܜ?II;+ћbnGvr~|:mUu; ,cה7EAAŗޙ=[wߙKmm-F>}8UPe& cY*Q]|>y;%MHim&q5t̙5bt.4?I?[Ř&Sܧou&J|8T$3Y r~4L7{r_Z~EAA~S {b1VX+Lu~]@$c-{2ęc$۝Aܠd(j8{kOV73{7SʍYxLrd4ROfا֗caL"uPԟX7DADe=^}`bbb&YIuSe,./{U*IƦI8މm0>u)V'캙%N O|Tf('yJ*8ha>5=9 W텰vf)7 nCWSDzq;+)P֔/Zskkݖo]}(΄ LЂcJ\ADE FEj5N>{)֥+C\\5=AӧO?za}Ό:L+c1L]gJv}JΧWKL6pg1Z6\p˛#`rwٶǾ0[aOVv t4ӥp>0bݚ,<&K<} g'W:ɮ7?;LqdmĩƤܤ#rtط}7c \>FA"()ѥܮ-4vI^c6E;׵ŨJ+)Ar>{ӣkWfváO_qކ6(Vo:KdCn {guiDX[/  R.Rת<6&/?w.\ȢEO%^у6ee{ՂHykrAu#R.R.!!!Rn= HHyd8a!ܤ\d{.nj*oII  AAx 0/W<*,jڢ+}TPB9!R~' "<@\ڸ~:* 𠴼sʢ\aAEuRT^]H ))/ Ky?E^OʁQ(.~)odO^}oFK;6;ѣS?Xɨ2j- n6Fr}acg:w¼]a~<[W\AhhƏ'H߳ҒGRVRb&KdovҪVˉO˝"#5h K.e/̚eDx~]WDAHHy.aD[͹ڮk򭯪"vlGƠc0뭗0^fzcdch$L"Y,Q4b9:6$p|$vS%`z;]miG/1g-䯭o2`+;B({8GwǶT?O[Cm܇ _!eH1;A"- jc#ˆ ,j&\i] ONfzxh*Y3Tnl6Rn#wY@Rnخ0~OOD.w=UP޷1dyz-9 dO FxT3R~ʉ]7 7r7SOeqx[#0~ 嗓upޠԜ~1y2ÁJC|X\_Ρ-7x?Ҹ;Nj" ŸHyHHHyUe)(֭wqaWg||sH֮)O6z,bT;N`gReihl|<d^^g },ϔ"R. ZDEE+WUQ]Gu];0E}m9)7qsg=MQw_-q2 >-3{1f=jWR)w[@Βs-Jk2~>`gy{E)'vPfnチ|Ѻ&Jyv0ӟ+"1а/" B[@\<7P"CKyeFqgjTŶmۨy-S޾}veJ}ʭ]rQc\wmOF^8_6LpbJo*M͐r08p6gB $ݺc۾}b" 3@\_S3mSN^^wܡ5kjK[$)Arr5DYM[7o QQޭ<66իWknTkOM s>{ӀI/W|=tV\Kzߠ-0QwE E*?NEjQ\G窍r3Q>EG(,)l?|$DyGI :򟿈rQn&7 Q(f'E)ߧi1B-򸏸(D(G|H:˕(7ONdёkrQ.E,(7,:Rr3Q\r墼2mrL(i.QnVq'P4rQA4()E( EL(fD(Gdu3Q>EG(ob^M(_6qq'P7?ooG(fV?:OQ>e53Q>@Ѣ#?6rQlc.&lEҙ(;rQ^L(1'QDyLdёkrQ~'DkrQ>KQ>f53Q>@Ѣ#?E(Q.ߥs(;EG>4rQ~suMDJ)E(o D(7 Emi |L?}wE{7LrQn&@騚DyLǝ@R^7rQ(D7ͣ\ߤ(((hQ.D(fD(GJ(_:_ǝ@&WrQHQ>=Kg<#JHQ~Q.D9rQ~w}U-)lf&=(Ztݵ(eD9rQ>H&f E$Ey3Q\ǜDyLǝ@#oE|Tf-DG^rQn&Q.D9rQ?G䪍r3Q)DG^]rQn&)Q.D9rQ>I7lI}ĝ #o>rQn&z\G{Q۹jL_(fL(v(7v`>HQ~8Ey|?KQ>E(;)DcznzԽ\):rQ(h{-E(`rQ~)D9M Q.Dy 墼6Dygh0(8Ey;ը{Qn,>N~Wr3QI E(Q.E(@_5Dyzi/Ey{7Smn@-SӣrF(o ⋋Q.ʯRORۭЏ@?tv?IO+};5>ST 2T ~Ew3: 魩XM(.j@Kj%]]pYmNR=䓮<1if2iSО\! ]ʴN ;*aqDP!'آ7x蚲pCihҝ4PoqìW:l^뗇,0O_=Q>3X, !eQ[g)~dY9dg0LltPg٪O ~CŎ`4r;w.p<ۅV&wkUm u.>wQqp2-{ɻo3X$) Q[[ADDsL/ޫ+#3wUps1Nd(:n?(]w ;%o:t3< {=ŎP (@(< x(OT!g~9HLڙ4V)ސPYb5YJuΙJ%ϔB+ȩ-*U!:QJ^kޔ½o*R+ ~k.bܻV ȫ!p>L7~7z:s81Fa'-]j8hD;:;1K;ޥvʮe1XPyΗ>@n@ ;{DHph[h[~˭ĐloO}o/vLAп$B rn%S-8E9+E\ EyD9\P;ʴ;/.;3>2(*0,#3" (`e@/i6m4m&m}o&KeP}ts:E,|?侯ʹC 2b5GWg82L3QNx-f ?cPW2~HIoxXl :(u*f(bhGWgw"ij0dt oueQD9IfqGN]#;8vĝŖ` N+Xc='N 䙺鎄^ɞI ;یG ;̎!;(gܢn2ӧ`ěĝğV`_XW#"$u \ pZ~i uHXqr&er=rǎ{𡼴XL.bGִ q'!'O78MNbnlTerkGsCAɾ= *ֹ0]ѕD9VEb<o\O??9wY=w>?/p/.\Hִq?GgHƼ^v]wYi G^ןɳ.نQ5b`0ZIv ߳>ub &{'1hEW2w1"C(Qs8}Qd,)1]ar4Cb)/ȿ_1e.^H֐ב 05`k(ƔDʩ<|tJԩqBq5.Wϥcp051Hwqc`0ZIQ90%uy=Z$?:ANbu:^ ".7B#9HH=DȻwq@Bn(sĦ2z-B(Dys#7ZEBg>L1~yA_pA/]%/ /Ô=гgooy0wcث yTaw3Yd}M9cqaxȭC%xwHX:\I<j_}.?_Mք-Px:mU(z>F Z쥸6c*K^CsMmΛ:>t_Uڽ8 5s/LyQ<=w6;\;[qBgs篐ݏMJ:kaYyR`0Qޙϯ¬U9t6#tȩc^\&B1I #rVQv{6QWӆentPif$l C'$k $")l(λZE9yv?jQ=eG~ `RAp6>S-YV:F>15 Pg"Ũ\׏1eK=A*2⦠,{-$ٻ|T;cq;.7Vcxlp#!2_}y | @& VO~X4\ r*F>}Ÿn@7a}˧Wtxw30zW@ֱss{KBX_pPrZ*^3Lܻw/T#mKDkw!grĘP~On)bQ^:0LGR;r|' qmƝ.'΂ tL?_1c DcJMWLةBOhI>8bЙHq9+"Jضe3rیl&$of1j6B d#gy%|-snEPK HUpz(ڪ!I9C.CƨK5c:yHa$7Ga> ӡGLŀ>dM[hLK7] =5} EzAԨ9ئjZd1>o`,l,^ZD~&o(?:*2V1k$6bm1?wFE=M7rOV:U^ ݚ2c&'B%^a¿Bu4I= }b.(ãMW!Id8RbPeh@vG1An*Dy0(0g,ITE[䐛XUwwHqˁ9kґSD tX3C[aF5~#=(7;旯'qLa!W,:@&o(on&QQ |_y}*Nq:_4| ^FR(oq'ANk˰|lԸכ0>ETzhC- ]ξu,yGEOEMPm'cC-i)3p~حA[(u.8df i8f$.s@suꄼǖ`PHk2^nC^jI*;Ev"vk!xJ؅ η+ӢǢ^OyK]zEa܆')Em&1~+8~L\}hR :8ڷ[+XR 2B'ɄLk0AaV6T{E| V'<&/CR>ЊH֭"0j2s?2ikhKXV#{7>x&M^O<1 y{&_J4ӸZgꢜ@-)\8̳e|d^q7h݉¥wf8+|LpP޷CtcQh;oƳCEl$>/z2Ɠup]c}m!=mžZ{J6aٌQ}7<=Ԣ_! X6Q@][;9sbtO?sv-.Gu.jfB,뱻܄Uy2 Q3z{.l @4YN,ߒ=\QZ0cN(j}dxy($q=ۂCB\F!>nmU6^ܬ dZUY!5jH"*P,CEBʦ 렯0B1WMUp:6"sa}k{wb@_Cn(WcA>яg nL|dڑVN31i&ȕՑ5) j29iNJdAg y9l(5!ӈ#8 i)'ERH UWDm.GAF2;dPc6cUC*uQ!63<Va.} pFZQI2 B] Q㿡vgwӦi["PoјAaZDŽKb=j ({X> MGxa>㑹|9,  s1r*5! Y^5 CD1âH/AakCi/1XV>/ }_qc6 ~~_koϞy1ð^ip-[^{u5DZx=&bX_yzhE9V>]Zhœ ,P}wQ0Ztyș$Wr6Vym'W[A!ʯּ^2^ZE6dVڍB-Cjh!?>qp羍i2#Q,'C j(wٌPB,Rk`Q WZ{q\a&Z8*H3RSP I UA%p[y"9eV-TyBkHO!#oiS [~/Ƚwނm 6'jpD٭?Gn[5rpYP`(Qc13*ވEU(Ԛൔ P"640QEyA"qعwH{zi+G_¿o;n.4z5HO޷9[~0);J8}U Yx6> =3樂|7boaBL&=H(kF?bcK/$?GjM|[VGLг˘E>?kyz VfTGޛjQNl#Nh=XwjPA^EL5 .(mFU"VN: B_M!*˶z]-}y2%JR`F@g/ ~z2JDmؚds=:˳kkɏD])I HKyu}w+2WB?E0+Qs nuJe-= B_FÜ LZK ZQn7믚];ⱋqkVA,%cc Fy t0)E`zEy9޺o^[wF7bt]K\J×_^—_FW(F0jU}1hEy'Si)Ė`PkyH-ٖ.A\e(?t6(+B*'Nh9y (JW-w=~O}9bt]Gegb>PQit//o #8_[a7}7݃sD!!nt2VrVL,G)Z܀~w4;APЋZJFjye> UTzsYג]W#u v!cd+(iQZD#(VNYe 2>ű /䣓rĠ-hTc[23VZO|7LI ڭ|rini ˊM M`Jh;z]EUJKFNf:7'pq"3=ğŖ`h0 ]i| R-Ob;Nbgw#gh76:>[hl 4ճcbBzr7oH(fС\Tlٸk^a &q''y9be08htR:,k1.|j:)x{XMF8xֵz_S s%2KČow#[*9CQI[ #+y5SWBY"L"ft[}(ojl@- .sg^8Nث`XtQD1N0#1qLP)* ȊBWlF>B;O^\Q@sמ(Zҿ<jړ<snr1gQsJjrD{Q.ʗiMY{2|;Z ڑ'Q.Dy3Q^{2|JQ @מ F(?rlr<ܕG\u(rS4Ey5Oӱ\.(ۧ_Zݶloػߨ0:vJz/ZihK-;H*r  J`"TIlDCP/!¿ʕ[ oOfo\fe9y[cc HAeVT,o]yC之o;?RJ)&?+%ěLU܊_q,|ծRSgGS(7o/~RJ) q`?OJ|3& C?{Y+Ttn20ٰ='FGF/zOor 7gyJ)RJA{?HGI\/q&ĝT&PhnU66qiou]f;O8;[.Kjpcllw>)RJ)q$ĕgM܉?q(ťx:(nG([_^2cvUe^6RT4j~k^uۢX⥅޾*{Q:qcɓg:k{nXy}߸RJ)RGI\/q&ĝQ\Oq*^ŭY\z;+,c|^ޜ)XnAAhqŠy3KeцήXJSlZ޴䩳KWAw굃RJ)R>G'q%)9ğ8R|S*nů8Z|VWŠrkr6sR(񹹱ǞG [VtX3dO?*qhRJ)R>G'q%ęxwOGqiGY\oq. ʧ(3Rڲ,.N{ 0_@}mǎ>҈RJ)R>G'q%ęxwOGS] KI9&|Yמ`'gk`v[=O6u?8?8#f!>3y?Wt9#=C 6d2~u/hajs|q8㼏@=10/y8H_wGɞ< Ix[>`{1kB 2G$h8#$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I7rfϯ\IENDB`kbibtex-0.8.1/doc/config-id-suggestions.png000066400000000000000000002210441331300026200206230ustar00rootroot00000000000000PNG  IHDR[!IDATxQ Pf_p>pG>p87kK$I?#\$IFz1.I$uCR+&I$ Iyqe$IR:֯8ΫC| =&I$@ ok>u%IbS,ӿo;C|<$I4ozK_}#|Y{L$IZH<Ϩ1f^zۨ8US۱3/v|qqbǹĐĩsi*- hKB (@EB( .BH|cxft#Gf&W:5=yRJ)ƴHy bc"<ws["15NJ)RJK[]k 0\ǓnJ)RJ]$cJ|in>0R q-cԵX.f3^RJRJ)e,+Evr~5`G욊~sH:I7K378)RJ)#$ė~q[k<v:pcp =Liɗ'f+׳qRJ)R GI\/q:ġxNDŽ:΍`^^ϔz-'SsqRJ)R GI\/q&48ǡ%y0ʃ@n<)ps1܃i6cb,WoʭVVJ)Rj#ē_LsC<(<f:|,?fٙ*,-OͶWDRJ)(G'q%ęxwO35yȧAk+++O@/{Z ;nH6ƖS{RJ)(G'q%ęxwOGani)m~eagr{xJY!Z\X6[{tnwRKl{RJ)Rq$ĕgM܉?q(V sKH(2%7k+ezvwrՀ[ d\/;anl譂RJ)R#q$ĕgM܉? q)>ũx5!rJnV+Ky7sɬ0o/yTyRJ)Rq$ĕgM9.ŧ850OP~nJ>¿]Ygў-2۹;8'VNNwO>)RJ)5JGI\/q&ĝQ\Oqːiy(Q>+Sr¿^YOTZJk{fa*|R/^<~mRJ)%#$ė8oNC(.ŧve`Z%|o)ymӰl4{<%Aq}|xEo_9畳WvRJ)R ?H<+%ěPJb&g8I4ImmiJORKH:KJHvm(}T2Y6{?c"clh_t;]ݣHZI|=m|^Qgyg#ѓJ%:DCѣr>[~#,Q.+X9X}Ug6k}~ϯzo{z~/l887bZn3hҚX") Eni"rD^>p#T|&fii4XpzKX\iKXZ6ao6ܯ}J>0aEL$mz>ч>.> b@02  ãE!KEf5+ܨk ѱXP s 6VV6ٱ>{3WVhZ=DӂS \- l™[f Dfrz+L4vy;Y>z]Dg7ѝOt(z]>EW&yϓ[Wq0Ã!{vO=|3@On7?q{x#h۳GmtWhe"51DV#]dJ:? =U܃#!h|W0cȸs3nZ9v vX w:ڡk!6;OtwWNrӁ~zrSv' r:+{ Jon:0 a9(g\c@ƴ%2= iD48DH2eKŐi$S3,rGh<ևLF$%G:be% t)z'<-j­C~ 7u&C>Am+$G TU8uF^Gpr^W2Ƃ,9 ny]FP~Ayw)5'3UspotRK_<_7/׾Jl|NKX7R}W㼞jjjK'[ "|\B9UsVM9ȭ7H ϧzKb}tzۖ/'GD#WǸ8 GDϖnՙ멡O1z<|2zwә-M l} uxc cZVO߻6ߦ 蕗^dP>a+S(_5)Ǟ驭0QV@ý鎿YT⥊j;A%Ϩ(}QSQQ]R|=aQjcI΋?|okt|% o2iO P5Mx?-7_ g.Lʵ8bv^ԙyJ^ZR,?\c4Ure̹sخs@DPØV:M7SJ߾-`,XˊZ[ԟʏV=QBy8FȪ=[iIȣҋD~6=5mg 궏 $_w;8!A?=rX=:ۅ-;m$q4? uYH7=B₽MX>}c~-Qҫπ-Fj1^Bxe]FdA`ːI_T3l `.$>Ǧ$.u1Xa=F2ґ $f!]WuP:z;d')lSPO^{'QU2v2֫ީ͍m߲y3;?wVv$W^~n&XCX=QH|BϜ_r ~FW0~?">ZZpL2.Fķ*F~ 2&FjP |{d-fPB9,_H~D>}Z 陚23i )<^lzass/8v |(ctsxoߦR̳WQq}lf`#<tm;oӶ Ƃ8 S$Q] ?. 8nM P.Q~֞KCm3n.-Ňh}(|r79BC馽f9omC馠U wjj~A OF#v1s _P07 Av54ǃGw JH FyRbE}q wwg<}GVړ%_ V: r]Z}Gqڱ[Cy,r(շat9uRuk=e#b *ؾ8@M=Tz; Dh,L:a|ʹ?g곭ZuQҠjܟ|m- .Mjj(j9!$V>[`"bzXluA_'e@ ""mg{rcվ5V/@V~:Jp(5z"< 4US$_ǷpDZƇ0-)셛[R [Qz%/"cms x ci|m.ZJWMw/=cyg`G7|UoxrWUџV~Ƃ:ϟT[V*_>H,_F-u)ۏjZ eɣM'QC9%aʩ:E Ty4<OA~*˨K^.-¶:\ݬޯ=@a)#\z߇tDu\ktH$'\I 눮IbPiW.B0~2:3cO 3^76P>44sw= 73hsѻKIȄ" ۅq#"GD GѾr4_139ҨZ0Gbc3+}ʘ#VNxQ;G q`Jn֔NJ7&+ZVOw>za+m=sPn?T꥖HWittJ\TXKMNg|J?yJ**/qqI9ڝCT9`i6i`s'k\·l[z.P%@: vv }Wl_otK- 1kxDέi_`i'u&?'OM F-qUqdfK8b_@eܙ\vl3.]}.΍ ?]; [^PM<+y킕8L6 yz۷nN~#+@EN*iPϥ!u=^L6D|z=wA\0[ o,odg)REy4)sxO~ǹ#`0O9s*_=tHc<p>XOݥK#?D'O X==QzmX HnN6=/s[nyOY頴[hofyܕTU 38{ʔ.e?gfc~2 YI;q A;ҶR73۷*+L-1X' VcrV$@y QiK )'dW5\CX&}+};mXȥ2Sߪ_ϡuv87zLj9"׾j> [Zs^s#."]>Ma;v$fbbƙN͔lb7o{#:yqp=㳪UE~u\ZEڽ+6[׮;wE%;tՋ3n4 RG1zE#vZI)ۄrN9) Yj7?ҿڸڴ_q۱㘹RUs[[Z\~u: _Eg]xK:v$I\&SbfsLyt6oGD_ G.^GPlUL^筡£*7+F+0^x(zx3G4?ޚj*73!)ǰ7.XdK */s+nkKO(]&$6!1}]]5Йuϵ`-Z3k#>G# M͠qtk3?HtH7J<1Q1,uC2S7\eׇ5!%-,cqjn"am~q m82hrMkkf7x/"";,}*;jwU;UEMڇpV9*Yn~md?ۉXңDnzioK7҅=:ԡ:v(v9Xo~okI<|[%}\J=pyܱ/s\}[_~c]J'瑎p.pHt:_e3uhOڌn:uG pF8@ׯlq¸ .aŏq.1(O{K-}taB݋w2[2%c(OZڢOz:w|[o?_p ć!NSqJK'98x8Q(|3 ν@p3oXn;c^:r iF5ڏmFo? opB1z'݀􈑾T]hB$썰J#[÷>6~6!\9OOC݊t*U`/~3uȯc", Z ?I[C'١`AýGJtA+-@LMz2GlN3]sޟ w#1Oݝq#}j;3θwNsZ07{%Ch;?Ϗy~}f 6;-`Kn-?IU7?%Gn"\rGbo¶VDv1b1튯(B~t o/cj­1U,s Ǐa4ifK.a3g h&o1釴P am1 դ&`Iuݟ鄚D |nTCKZviJeVpVȠT2M/B@Ĕ#b%]S AJ&;›j1SRpzX'X? /G7*3Gɤy֫ﰲ\ f^e0_x܎/ߎOVϡЂ:?\,xv{ #Ża 9vkx ‹k~dˏm~p!-8?凸\E9EG:{=d9]]F" n>ŕ \k0? y\x'O`lN[O?ధ\`g C@*=y+3gD4IVޡ77cci2A%hig}lV*[W̱yXD9X[`fbF=ooXI%?o8%m/)//M%9i-I w+o!o\|@֯ LMMi׮_:"uٺy12<\ lR.\z Qbh\׮bڶ a\]1&=sIJ{:^[g0:>>n ĥ&椋 FI4GsQCJ^FM?LУbs\Y!VrǶ?Cxz1,~͈ä>m6eS/o'-"9e4E2[%I5gݮ/ p#R05acNi<_t4&jz@]Z+"I5T#0uI$Im uI|aR#IWA}_$}ԯ^!iy̙tB{׿}߶m[:t!CXp?+OJ˖r![7o{.޿O:cv_Lcif@GL oEfSrn'I|*-n4A|n;tAqϺ]2ՙmoN[8zDL[s@55Zdv45#vy3KBq}3GE;-2h|~D³:u8)-fR$׶bMGڛE2|\}I[szOe5tRL-uƳ@;`SkŷH3#dgjAJC$5pK$x6BrCHp@ff&dddR !LKDxH RrPw&ҨKz zUUUaDpB=Q>N%5'xU\2Qe{^$љe͔I$_t~C}~mqׯ} ЋJCtb_[|Hu?()KyRG~߈d UvtJ/ʵU}ЦArxjǣҎFxt}1~$7fXQZ bxIkX""PK/K>W?;  P+QH=:1=:4$0R_o/iE h)fw %%% ??E#Np9gl8{0$e8[PXZ>LqJGcHKci(ΦW}UǗưI/(GSUٮJ\Hyr wrv;6Kl~:H ðjj$$YgqwgMz՞{$HL:E{}yuJ-?Hf&I[sG[cRSSS#*OVj=@SJp55$^cp$?HPHq"y\BʍCvVeL(-ۘ3HZS֔ò'!ƅo?˶W!!^F1mC׉GHaVMzc8HZ / [>x3Q18.[WsE[sN$jJw棶sh1x]ŊʻpOyX:xi WfuoC;毬ǘkk3he¸^|^wL}m`<-WM>-X%_FHwKo!߂P\n >>t֥Yrs#B^O_!B_ !x9~Hd-(~-c.ػ3+O7jm0w7t0Ŭm;:vop=JU#?jWya~r ǺnoYm͑FjRwSvi[,:`t:QOT䰉yn3؍/ףHd11-ҿS;L_ ze~ʰhgB^Cj)oclx< )/CѢ["[ȷ $>>$&&T*pw޾BʅGM)"Zh)A] $Ok'x$I?` c XkR-W"ĿV,V*Ƌ@ݻА/^:)R\!2$^~+p3XNB=.D6 yBkjb54LYxnamXO%T-N7WW/z)Y)/**$)!8A[gf R.}7hHu`!z[bnbF!|0~j#j^AķX"?PnW@ +Iy$o+r!兒IP7_+*+8(MR~" !juI#P7Lˑܪ$,jvl6HqN $79Aj\Hy[%!!5 G'ƹ Nof,~)Wo)FB3!an-[ vNry˗r!B}|Yh4/))QXTȎL>_@l)QeqlA#\HkCeֈՑBZr:$[@p%t311Қr!B[{xܥJkU*+t_syQu*?.e⹉TSmVi?w\HKA&@nR-D[ |F1\ppR.eKkwf0ltR^T\ā}2e^4 W.'Op_~_sFUB5tno]M15ƨyG*2ۍ~ʍJ1fe_b3:i*cͨʠD uhYL^y1YjY:.Usah-ҡPngR!vf e6t-YRn<-Z|!-@[H G\&q႐r!-\מ1i*_WtOx|~sQ=ꃊDG`70A)Qrey엇PX]D*{FKYuQLLJ4d\K,mWj1dE4%#_UFYVǿ2c[l; .?D<;.XHyq4Kر#ӂ9i"D4 T-+Gȵ@ D_l&)R. 600F^Jy[8 t>PGݟ=u|ӥ{kכuETSql8ߓkߣLY IiQ>jݹ?6|b;%5Ԇc&뭇/<bF'lv)"Z/, 9a!Az:ΟclyϥpwuYd8X!B[>T&_w7 +ȣ|5$;Ρoi.+4lCQ"_ϰGXETYL3?O31gT*C3+QVי)|v\?H>.Fr@  )uspp V\n;ݎ)?-\z'TBw,T{GoA Д{CV].ФqN+S`U<:?];1D*4<8>]#46ӏ]NyvnMuc@)Aۙ']kהECxr(הk=|/\Hy@HyrMLW5V)厎TUUQZQJVAǃs_).+$ʤ|S]16{?q60ocJLY55QEllBV 6C;u9mw?MumL\~eI1=;F#eކ]0+Rkj@'̤ΎYhR.'@ HO~*,R.ܸpvFuuNYrr(./FSї*] >e8H@ Bʅ )yӝ]T*חUC># "6@ R.u]ڴ)GD !BʅR.r!BʫхkSRHhV!BD3I@ BʅuR^VYI|~>Uܓ/'TxGsuo 'a EYU Br@  )EFl`3.Jy䒠͍۷㷭D{dzwM}GE/lQ;f8K@ Bʅ )E *j5nyn{zr;op`ŹM02nʷ#zб];ڋqWQR!'X`i DQXe8Yʅ @ \HZI|h\8*)!Q{l}f\vi>jp'++!]!=Mj!U ~q ^DOkARZ"cE_;VN8/[!/j^)R$'@ $ )RVSG+Nx4] zΟOb;0OPRVBvnEi䥬'D"*kdl`Te1ՖndaHݫK8]u77ơkN lq%E:s0,`bڙA_n'[S{PlfY`2K,5۾dhWSLͻ1jQ!vf e6t=Ub(jR.'@ H@ʅ=R~6i,_ w̵/.uxX#SI~_N Cv"N'SAS-#U5Y~HljЍ931ʈ= zTLy+c<:}k=(x8-Y~!@ 4 )o2QUA^)'>6~4˥ @V :ϝ vf€J-oo&6JZl)@H8dl@{.)L*^R!-){|MaJү(gJ_`|b;B})mzm`A# f_B!jƎۀWv)ό,[rCھ..m:N!&40 >>@=ڼEw|ݾDew1T6gTH+A  9 YQao)_ )ä1]~K=?)y<,JJKJ(.*|KHu ]u!Hy[#[8!={5j41SɽDb̉މ]0o`XS kS^]a8l۷Ŭ5Gi+FίDN01ʰpKώqɝK4EK L6ml3%2Z}t]rU^M1ΦmL1t<)%_W:a& ΎYhx;\!>Op {K=/so_SPP@II1Eo9Ғb \HJ < @z>w|* !=ԎB#-- "Cuf҇\xK=/ !Un2q12n-](,o8g.u_k!>B>)#A:6XZT*LD)xxxD"w"Ј8Ôzh|5RQQ.]Rp*]o0£=k#fv>IteH);Xx$>ɧ?_Gt'uŬx$7%i^)R.dt>9;eg8ȊUzwt )m戓!vtˑh)Ntv"<5HyK찙.}GY)dZk^(Jynfv\Ki-s@llo( 7}ۇ:!%*mlXt6(|ٽtnM[(n`=y3מ{5v4f/\ EՍ_Y#c[!Fr%O28sY|ww:|w~_ `'ͽI,!߱.d \FΛN•w vl⊒,);,1ac<l4 )R.-)Lנ .8CRj 3{T2Uer#ˁj阆QcdN_,Ob3"V9%Hʷ`j_}o){gz)Bl /P;˖o?f`Ɉ/Vq/IR.[nm?zweIlo^F}kv;:m4~4}llDl7ȚڞC8/{WdxC n'ūHR]7'ag=hqmza #L)|rgcTN%cl;c I⒋ YiTr1EC/2z >&rð_Ykɝ?Ĵm-bҦcjzʈ ?BߏcEcz$ݍP@H!Z<ϛ;[ϻt#sۜ].73Ք 3=c-?-r$'ò541C18<5h)oiRKzٴ(w|/͔gKGKˆycޔ݆1e{I `l 쑗7znbX?g4u2eowb*|I߮[`Ü+Wµ?LMh3pWhQ?/6.)斶 _xuyKf S j<"Z6k|ArO3卢 :-LlGr.HL o9^Xc4gL5$CrPr Fz'ltRd=U+ drHrEGpS>Y̙="&WzDkѷ:;6^"(*h_'v}B[lmϙ_ukƛsLY;Ar=Φsp w6pfPO/$a\3z۳=}/tukʯ?_Sow|CA"=_+z8y4(R]C=b"u22 런֞Oz_Gq'v,n.|o!$9?e2kJmjknTKR~Q>^NPƾR.HRXfqrɏ2IzĖ\WJ#e$ʴF0p>ϻOw)_.!,;XX0*sn[ovݛfV,[#-B>|6ǂVSbߋ~}Wp4h6?ߌ`4 n ) we׃i.kvb@c9٣lb]Q.[5Hz ݺw>e fy;:h}ts%iyU?VP1ɏ?,eѼ~/˒Xh~ %9o ,7z0)oRnLHR~#AJN~!wl<~EgQ Պ({FLbG^>“!|c*jX4V~LG8n#,mMNSjzrS`Sd W_|lt nѼB)W,bnfpE܊4"o4ri)-su_/Kۿjb:kT=Hi$};& =.Bʅ_Q6&φ>e$e|w8 /yoCn23~--В-~|$_2ǦؙX^Ȟ(f |f7N^ageoeHyu~X}7PtKD.FtS !\#c5lXc'''Z*('I6Ǐd놵ܺQ:Π_sDGd=No¸cB_v/4h>)R.)A6LnAj~:,3PkEr[ǧG~.~J7,'37QBBbٴf<Lű`7p"s~X5/݋1~A,ԯ\M){y'ܘ7w¤3m>6?Agbm]\x zeGZ؟nS~ggw}Mza0w|Cc[6oKlO>cBH":Bvr?"3! *R#mKOxmK#V-wn\uo !/,e麐W"BXiq")w)nu;'RŚ/I#؛AZ|Xg a],_Qvt4ky+L^*j8rzKqL^zB#~ ~nj[CwJeOsoss>Kfρn\y2sgsЭS{ɒ6 }aEou5ػS#FS|WNʥ}o6@'{~sKb,68Вgni1Wc\>HKKϺxų,< EY(7{vkjiq80 CyEyr O[!`x^8Er;Έa~CkA h?V<_Y=Ll5.'ZmUTTpI?αc8t萰Օsq%_Nee%/ij.y웅r+ܴbI0K(//'%1^|cRPV;ĴΊl便[eR7gY(gƍCpp0$&&A^^%%%TWWSSS#`]y._RIII(!.uP.ʉS%?(/{),' UI.RRQ ʅ9DիYhgϞi& ڵk&.U |x`޸Fi^Մ* ?Mܹ&}ƶiW$*NO1ؐ&\XBG}x=wI Ez-Z `bμK2~\͛J4<:::1E"hȚP&udc9-Vi;\dm vb͹PrVz_CJ)S 6I(~1P.iTmӥt}z#t7}̥W_s}e0&Wf$\|gelH3rQL|L1D_1S$~P.UJ0x4y=0YM23gzQ6jH2 Y{USW̍7o$ ݸqJERRXFˈ1) ~K$jFj*$M.wa[! &iH zʐ|=u(u b_a7y?~x7Vʙ5%7xRԈVζ.*iluiYac3~CmRI(ONPb!"(0JU->^SKT*1xP:ByK9&݇ڜPBxPn*dy4|D2sݦl5q͞zYWk4N3r-y&c?6e-Sto2ko4TK<3S:s8nϪT!ͬRڑ9d ʙHU-vȉxQ3{m*ޜ!8/@k=fa/R-ři)ZbbFFU]%zZ1xAy6CyY) q$F[νur}/~wx@SqUl;`3& If}$j)jXPӢ~?qt-\Q[tU#2sW$&@q?:1yH؏@J-:evCYwCq]jK^f:RwN`ؼfVQ$}V2} 3nURg:L[;h$7F ǘ=hsI5FF E9S/ޞTUVQWS]UѮ;[d??I#?VSZV ƅmH )W&QK RðX".1V}u3&#CmGLWfA)z^uʵw~@QC՟؛.V0r.zЩz*`k)!=ut{,m/EQżoӃLjM~ӂrfvbKX5Ӂ{]a츝%f: }Pʓ "峩˴D 5T'] ԉp^z1.hP.&UQXXF-M\78b3k>kbϬA3&#Cmr#ZlI$7v^5W9W=s˗/9b%Rܥi b) 3Ӓ 6c"¸x uT;_|QYAq1%S^QAee%UUTUW]IIM:ta?xmɹ:Ա[둒P835`CP^^V|K JYUVֻ4;nﶢkNLI&Mכ}'{2RV7ձr +.%J55t^uI(뒋]<=<>>IbbNy^^%%%"$~ XW/%*IByV`CP03Fk*3OggNus.7o$;;sgO?LkvNNgzr(fa(3<my]ʸArщ q$F[lˡ\JrK)S#G({zj-ZD~ٳ'...lڴ 777”/~JIIP uP.5ƅP^T,[Hl&ԪQ'FѵkNo$tҥDEE)S]Ξq}z)טf3 S7i7kIFiI1.oWŸC:YB3RcIpvfQ\q1߸%έpsz[+ʴ II(2 "*~yEV_\KQbJKK k[NyGts+6 ?vd@tڗQr%]K=fOVtm;zK/) 1Qbǡ<1Nqzr'<ϖP.W@ya^NӮՈy5ըbҥ -_4krSO7S }+D~_֠tC9A?3(xyzQ]q!Ƈ'vr|,%_u(..T4x_i@UESHm}#&D)cJRrʅĿlE4<::Z׮"(+h75*L2sb[݋+;>hPec 6cwQ"X;E#6RoC&&[r+-  rڝϞ>P\Jyowo+V( ":>gO?ī(Ph$܋I!+;?K^SX8d$|7UϯK(o oh|D-nQ'NJ2}pM`HNtԋSb]Kޫk;bw X_^2299YLoiגw}Qdf-}c5pwGۙ]1~!TMԥlf̈Iy|' #FKU> Se>h ^%Zc721CBT4+]>$%<%1Vذa!b(lw>z!pHC>Sg+Gg}7PL[{6n_v}zWګ9&r#Q9ܔ]4A:ѳ>' z/[?|`ף#z7c}{t]{r %ʇmlFAu-&6Z]GuM8V1C9y'c Zxάr|yN[.|0o*iBHGuj&̽Da)cvK45FOM 羝}taoϐ]mӥz4=nPn$q6FOھr7j%׋&w;S<]RRs2ڝ]O;XjjS"vx{{6~]\BWйa)o޸%atgrq7Ɩ?n_&eS6G ϮB{Xū{Z /N^F[[Li8x8UCz>9NHK'tbAZvwZj8;|$¸1ӈ7 l{o 3BR5'384]79 7c FAͣ41%uO_iC_P.t %b$&f}2q2bZ)>o>tXw/gƒ̶ʕFzXwuVI#HeA::M DCpn/9Sw>E~3DUǙ!') †Ʌ i-R'VhPΓjhl"$*7m"4(u*K63gtԤca܁Nqj.ՠSkH3 F=gƲ}H"5%<9!FafEEɹӧV~Ziiq8A roqzwpH'^oZ866]ѵSg8QREWNy OfELD,EĬ݂DQW ͷ ?>FT8_mr8r# 5@M"wb{raN9<ؚc sʉa6bι)w!#Yb?) /_s+f#RRRʍ<<8{wuq`E'&i]|PޫGOF wP|Sv;ޚ+]I\"v Cw{}\<>S-/\nIJB,sa =˯ރMUG^ ش*4hrd ĠABB*W]RRʣ _6I(e,\ByIqr o? V\ɷ~۬_o;}RËhݝ2qabTM g ʆAǏW3t!⵫9啕ZP-lG.lH3%KII=K(gƍ+IbbNy^^%%%b;W򹔒P.cW%Fa_MZ+\@@Yȣr )S#G({zj-ZD~ٳ'...lڴ 777?_vII(;,>qѦl 墜(ZZ:)6ʟoZhڜ7oII(2 "*~yU\y_,6(-%$$D]n::g#[NRN/|j+8ۑ];Щk_FZ˕ZtJv-b=};[ѭ-ARRgAT+\奥N ,P.R/ JU؄%yyJK)׻ryzPnPDãZĔJ,111-Ԁ0#ωmjt/ ;;>hPeCz@q- :}320˥$GPFdh0ү㠽Acw&C:j5ǏSQ^NpE-roҹ{F":gATҲ裖lӍnG`M 7qi,~~~ HMrrԒw}Qd*Rn #F+kcCD;ofƌ& #FKU>ŠnVt܇mDڹi=ڱ s4^@)xحCk=E+ccPUWP/Z@ _]ΌXpb-QS jjPe-"• q ƃ%? 1Vln]b1K(E\d~\DU*u@ VVTrD^"ڪLOi/ G%[&m.&]@ډuñsZj82g#ŠVY>Ğ53jТ u7~sSCQC@dnxգh)CGsP؁s3384*R~gݸqCIIIseeĴ&R^ć}M: Ի_5`T5Ճ JF*Cԡցo*L&Et[wx))!~:= tGP)l!7C(gK>]lTnцqJ'<3(PEld~PRr-6BFC_ٽ;%/jX4WS.נkyT҂9ud]q[U6>SzQV&F7{sqrXE| eP[$@ES!5q͞9p,yZ0H36daw -z,r1&5XBSu)I`7ϩ[&N%C?BAnϪT! ʫ9L)/soWsʥ$ςHPsM@(gKDHNR~畕KK q!Ƈ'v- (L,ꊊ:yښTz駄 ,G%[8|(vZJf_RCމ6_NkD/}*L@#U'Y7ot  i0YeUr)@ZuZ>1DZ=NV@9uy{ͬ^[CI;V"ZrХ !|0Q2+.kBy}&d.?rUʜt|wWY0)hh㹹qSH^-g1VVtя+#$~P^(P.NiUH\޳cÇswo.M[孏J*L28W}4sD9V׺vjLEʿ%/ߐ#} CMH9t'QՐw#<*dhW4s<5$nks7j!3[3r},LbzJ%V^Q"]>8 )) s iCW˩7((( /%?x@Bt$a:ٶ$sx&Έ qqbKss̙]ˣ-R*o1[tҗ1~N/o7tri8}wKwkt%I3dz'8˯h<]ҽVT3?\}zzwRV_@$M+b=L\~dNSmyQPn3R(xͭtc2)) 7y c" qaC1r~DrE/ '(?}_o?C;ILKFQu\c$RRycFІwW"SICq&io\ KI! >qߝ!,9#`7'BE)x3q/6X7v|0oCvJ;Hѿn /uub\!I-8Ar 孟RIv׮ 55={doߎVE9u_4u.b*sop HIIX(2P^B}V [> Q4{O>!z }?יtĜG.GC)H[Ql J7O^!& ϴe;q*:Kˏ?p5z?fnI9l$Օ1þ;-:9X.Ͳe0r͵!A(tv15͛-RRʍr``1zMxJܬ=e AG$>NNdս;~|Wj39iYIn5fmEw޽?^6{QD;"SlrK3"3ȉ<) \r_K(ILD~"4qq<8tH@ybb"6mRXI= I(2b+a9vR,^ȹf_/W6zy<47هPBe3G_\ST.}M;z{wޱzo?h΄+LȍGiY3~Y0˚{β#b(O dh|h6oI]Y@b|qZK(P^^^qxxKw=R>lܸwwwe)T)ˣDl/nrKIII(Lw)zpg6Lcwhw-K=ɲ|63vD"im@/E&^_|dk7b'_mx}WW\By1,KII(&#GQ"ǫWfѢE׏={͍0v ))9PJdhcP.lEOCPgKxpN(Pj9Zqz W?fب&py<&X{. º^?Y|=:ѭ &~;^ )Λ76(PALxžvABI(pg5ʕ/l++jPHHXܢu;ZuG}r w̝빪 U4oѹs/Mm7ҨͼеeԬ\ɬEdג}o+ӷz2y42/k<#]n"@yx(!rQϖP^SCfZYR$\BkB7oTцhŔJ,111-TxYƘ~NlUkQٗ;^iXs.mW7D NrT 4!vMF=`ق8R^Oо xV_`51aEYy $DEҕ{gyKz ~{:A-鯺's Ŏsѻ=L䇛)Ϩ>d6~OF{ !i#쇰hՆl _6qI7eaL/&ܭ#=g?d`B+B3呟ebĖlrsĸh/P.AqQDZ?%KIr|XLrMb戩64EP^@ѝ5?5 hxJPKv' (_M]YWae:eqi(C!CdpWMVV&'/E}q5bOFJ bRb/ά9r̈(nXS jɂ>7Ou|q:tiCkի s#JM֕ : YYMy؍z3Pn񵛨\jH2 Y{W7Bҏ'p*W6_k4ĮwDgS"(rQЛ TUUør1.?'ƅbq%N '::~דIkꄄ8NC1.hG>3(PNtX6 RR-|ZyЍ7=ln6ϕ×c.R޷Nz1H: ϛ &VocKn(|m]U4Rrt|Sf36M4+ rSu-;Oص<83darZ-* ja=yleז_:̗y/c5scJhBR6:ō3QO7m*(L~-^z~=-b 2_&\-`#ڂsL_V> f"cD?<w\|Q5br @Br)ZjZ,v(iQ?Hr8 F dHTMOrH9aYEwZE ]0,aQ,ʺ;T5hQԖZ@ML/FRj,eLȌ]~䪔yA-fxRբ) NtYAıPkWG~4Rjѵt\QCKPJ1|#*-1tРyʑpXg@l{n 屑b# 6C('KKP.\tblD_dBr BX\!<])«s.))KTMLN01&xPLxPsPn)7墜(/-w:6BBr)ʅ<== T"/XRRR>KKK(P.%%B0;vC)]]]E\f_/DJJUac(7P.--\Bz6n܈;>>>IbbNy^^%%%b}u\JIPip\|44@/q>\By(QA,KII(&#GQ"{e,Z~ѳgO\\\شinnn-8FJJCyACyDqܐ&-`,6**׽f?OUubC\(5taCw7辝ܵ"J%2M#_͌#5VPZ\JwܸfAY:1.  r RR9xi2X}E\tv"k-GЩg ;k4knf{ΠA:7 ?zT^41%uA*Ӿo:eZl<691|M-߾\ÿ"Z PKv' (_M]YWae:0[A,FIG*d)N*<&vpl&p bĺFc hk ? d7ګ s#JM֕ : YYMy؍e}/>6LaL{?NښJ2NNf~s='RRZX^V 1> !DZj f%%<"dr1uE,(*sŪ+&ǰ/3vn@GvzjbY5Ԗ%G=I(Pؒ⚧iҕfRQ-r*q`^cotE51zİy5Meܟg3h͵ t{hf?vV_\rۊ2Qgk=7!+`ڠapNsoߋퟶ u+L<@ǡ<\{Lbeu^gN5!C %KII(qㆲiPRR6ŪbT|*-g^8_"Q0R#U'Y7ot  iXx!zPw@7Xr~,f"yL5ʵ~Mߤ?M:MèƒJ_])jD/g[n4o94q`4SDZ[{k{ase^(/}%L ^zև_}LmεkLĭd鯚+ʋ  UZh f$%gP.@\шu[5q~"RސEr':8 dh5\58 CTt94D۳j,Uu.h*dkqsOM~mvMkGdu*Ė SI;OЙmk֘K|M+k}~PcD͕yPnXGʣÃGlH3rq/( 7wPf߮=~Ãzp.K^ 9x?Q;tzH|u[xY/s? (B1NZ$?'r RRZjZ,:(GCz>>FTIu%׷sʫA[tU#2sW$&@q?:1Tu$KGs Q2p^z~(Kmh=Z>1DZ=N\uy{ͬ^[CI;V"Z2PU.e| 5a6s܃peδѨi ֿ_p}lh}lP8.:`CPR;%%!sv1nAVŪ>}wz /1b΄+Lȍ^o1e+w"H b?I{@CW՛4ɸ.ǠV.Y h8Fuԫ?1DZ7]:3`\~(FLEvtUG2 oeH}c8ke֢z^Zb|w/}tm=ngRk!ıޮ#]_¶u$N|[3u+I ] />6LLs_j =OWb^=^,~WG?>[|񗙢ӕ2 %I/o_>+(WT+m ʥ$_|Y)+X)T>80=))aJX0 iCyvFKg}?fƏI\\e|=lp烵<#8sϧ{i6q9sLy☋z@h)"g# $?(&"8byI(P~gP~E[)H:Ա[c7HJJBy&<`PgK(LK~iݜV忳pKv >͗8K.NƜW?[,S~ݡ_};C~6䧽(㤵zBr)) b]r\w]t?Pԋ ű,r )/### '<4?wƚ=7#GE\L3-)LԵ %91hSl:+o ,~ P߂ŷټ8[}Gؼaˁl9|_gɫI.e_g~nʕςA(gK$ƾ2/](Pj{oi=wvRxb|qjGI(P*JJBeNҐPH2YF_`0a&Alz%=&{Y JKKϺkR5=CDlHʓ_kړ,zgW/K(%*4 K-ܬ$[dkJqҐZHZxׁ#\t{wt"G=6Åę?oq?ce,wa[OZǴYϼxΥ*!>Cyx&ܧϖ ?oΜ<3R^% o?_8um%uY4rssĸCV[pgyۓ$+^N t8s<=ɥZFSSKQi9i9$< !Ŧ2!pukVM_ftSw>s-k5gy]{2~.dԋYϼxCyAtb9W,# }Zȓ6U\8{F 1> ʟo%r)SCJE|z*I!>!ќwǶςcy9 ]Φw2Wo I+/S.|:o^ y "\,--ug@BaÆA†4c(L~sC:~x<~MljcGxB69*DBWTRhHВjz;Ǐʪj)W<*%$(i3KtHNF}~?ͼVi`O4 UD\ߌˈ~thEO|q$<}bgŇaTנ F^ 9Պ:a9U m's&u\/4q"!YZZ<P.VfvGm&֮^%zZ1x㢽@rщ!A[f $%ܲgʳByucNh`$QQUMAqa?qVcZh80П+#_?x0|?uaW~Yz)TQgQ$ mYz%z3jHّA\UĊn*frfX>OL>c1e/EJK[3tޟDT:3 g6C]?KK+PgAP l0Hؐf 墜(o⋠]J_1ĸh#H(o;=@?K-ܬ$YdJ!B+@/N.a[H|y-wq _ ͦ: i)Og26zX~e>6fɷtCbr yp/ʐ.l\iư3mrc]'5*ؼy.6_r$:D=|:;kEzx3?ܯPgb.ZZ1GJ(P JJBy1w4$7Qج_FUDSYL|QZ'YOJcobd^8l#Ҹzb y =fͥʲ˩D̎mqilTV_?d)WV_ٍO>??r6 euħr zYϼx(#q(6|Sؐf 墜(/-:2XBWPRʿ--SM|Y=if}eʣ8rHة8w;pFl}~Zԑv%9*^alՙsZ!|<n\]t޷Ae=v3rΰdPԁ:~*FUs`;t`Ew1=\ȨKKKg]v/1 A~&r({PZ\DQAkqѾ\B?>9WP.%%gJ@K|QŒzk/0.^]{|"zݏdLz#䋳L(cIӱ+cZoiiig^<܇ 'פrf>[D}\8}RP-f==g!zL?@i{sGZRq!Ƈ'dI(POžb ʥ$gJ@sR_6(|,NT)WS,~+{"࣋ɢђRn,G ׷$T˕Pߠ#&W˷AE6rBGu4]X |0]b#U:MРՑQ0'-|,űg_@,lr~{TWUl8iÃȓP.U|u!ɻc[-Ǵ\SA |E:bX,֑{}Y;uTYKPi>^2(nd[ZZ}s7䲻/EUTkI*bg:kn1{_' r]}a9Zr'EK"Jg8-j$jE-5KKٍdցanl&eZvvٿ&=J[@be*2oa`=)_2---u?rByX< iOBy-^z(?rJޙz_z)+,+S'r-N:=л\)˺dc^_ (B1NZmy%Pr|UW1}Ƥ[ZEXV [Ǵru6!Eu)Ѥmb>߯ڧ^% 8=X:}):hYk\Ψ "M eY_iC~ {Npm7Q6(?(퓀zjIû}%:3X@_MԳ}4ߧ---u?}iHʳSڽ3R˙!9ļveu\C{c@㰛r4%{bMT5>g4c]ʴl W|5GʛHLa\/ [).+5SͦFJ*Xv_={KKg} ;]T{oq'-a\=ʌo]gz#1yD<vm&sU\g#<1'_˻s7&K24 dg8a wK(.0ԑzI9mWW;(P'[IJBϔʧ*eJ\V5멿^A׀d&l>/,wu#}WGnW_c[_^5Ԋ̔5c<аaF~|-Le&͖Ϻx Plo ʍ7ӟ'ByjR\?fƏY_gƪL :Ɛ_`gk~P~)$8 ϭHq~ 5:&犾\Jq>[>Gq23Ǚ9d*}.xt΄ĹۥxB1NZmʟm%r)OQ4 ߮l֓B)$|^Y*jA W}Gu4jϿ&gzjpW5;"OŝZ6A>]pSV]#xϺx P.> GrQ?O=V䄘v :JQK0S;8 %'=;M'2"|`<nݔG\K{6 pLF/-R>ΛCG_~nc88ކ.i^L籴vi1ĸCV[pdnr 寠$O^eLUެ'|!'2vYfީbFk$ Z-kV }kQtnrVZU:t:*Zt|Hit e'hD{Ԑa|';ۨ}Ŋ/76[R> Vi2=QG~i; TEd-M頶=`R&]/k6R攟K`Ƴ"v5qs{uKKKg]<&]wXp<ҳe`_%lБbkh«==*Ǩ855Ip1i5ȨvV-rjʭ7zB,'*dViU5Ri&T :j:MHIY,1nutT5QZDϝ) _*0L ӧNq!Ƈ'ȜL _qII(gƍCpp0$&&A^^%%%TWWSSS#`]>$9~DǹzϞ3OZ?ʅ=n};rHssv?ϘH< ƃb| (PAA>ZBYII(rs#G({zj-ZD~ٳ'...lڴ 777¸vRu 3lTm1/N \Yy.W@= i%}W9vp?[6)zZ1xB!K(PKJB?///rssQR^^/.._gx~p/4qͼеeԬ\ɬEdג}o+ӷz2y4H(7woqΟ>!zZ1,r ʥ$ ݼySGGGSWWLkSV?xz]lPū* ;>hPec 6cwQ"X;ESUVOо x }_iq cAr?=-r3Pn3eʍ rgvv6KI̊ XwH~|.[)oBy6|r(ub-Տm;UPWw:=þ_0qpwOoDƶG1:aG[*6&m(ݷ3cCDE͗ˡ+fۃ0i1Gx\u)3Gkx6/)4ɸ.`徽g?da,G=|v}H)x=Օc݇Lr}lrB'!~rҡ~dH(o3!IJBϔ9(oll)@^VVKC;BDq-a:l!W5Ptg fͭ,bϚT5hQbU&"WGl8MLI:%-Ӿo:eZl<691|M-֒ WSWqXBuh'/P-&l4l5ېA,FURUf̞GCz>9N#%辙߂{d?MgٗBb/ά5˙ Q/j}@8~xB P.ʉC$?+(O'[+b_9{$KII(?e3eʅj36σ&z&3sqV;@V5deqϒ{d?Mgؗid[X)7j%׋&sTv=B} P+[[-ٯK(P.t T*III:vS*ޒ/zS^%#5Ryu&NzۻѭPV=^GeA::Me:Va7n&Vo-ʛ.LvdPJQ#Z=:ۺp=f~ 4qq_:^Fsʧb||m3#`3C&&ABd 3^6(P.@\шu["D!sO"OuqȬѨkfS-kpLcx3"?ܞUWc)CtAS &[Z)O`Z̤[&N%C?Bg̞GocMGo=_}_VQsgS^)P.-K/r[yiq88ׇt mrMWֹl ʥ$gP~e1\byRUl;jڡuէ$Hl*(2})ˡ%O0?_1ź%KII(x-[$حqVD{ۃuش*4hrd Ġ钒P#ޞTQC^vkjq8A ʥZ) b]r\wyt?PKj/fuwv%Q5aNRo]D~nzd(ZONFx/:?7[1.$K(j$ yzzD̟&))) w9s2u!;=m^xzXh f$%gLP^QQltq;ơC׮"rl/WVVKJJBA>r}=("3-Nc0ME7ЕxP:_׾}q5E! q߅νE;?B1NZm S $󞥖PnVRY格7DFFSGIIv_)`]>/$#dzuPnm=|S<#%r.s<y')[:"1XHKdyl;ЩSoϤVr-{C=i=}b|qjYi YCy2K(7') >S&#GQ"{e,Z~ѳgO\\\شinnnYOҙ>ݪ++ؿ3o{ $%|T PhAiI-wB廘|V+9EG`oGO#WQ̸-;ֻ粠lb41~79y>#d͍0R[X \ {ӦkP.ƅbA K(P.ϟˋ\eZ˕Ŕ".o;m^/kqWؖkj=-i b'w;#7oʴ<+8ۑ];Щk_FZ˕ZtJv-b=};[ѭ-AK ) -rN&k E'i*9%`} _AhK})4( OF=s)TyOr-v}]Nt9m^D{bPNzsV~Ϩ'ϕo2.t֗s6p#,48c|x3u=#SMA9ߢK8L[(4N3nnCP.\JBI(y N"(+hAX]vUڒPn=Mex|jÊ$S_N̿T>cӇU l|vCwQ"X;ESUVOо x솗ʓ[tifnAz/+rޟ@BxS4_"0qUbxͯ찞WB;ǖe/\_`wS7Bzvs+kԎ%"\;9WF:#,N/ '!'W~1B;D;L3R^(P.%%0O+?INNVX"]M gVL[Gzل*j?lP &-[?=;Zv Nš4d 4z ~{>U>ŠnVt܇mDr6qn};ӹk?/>D\|9ڹi=ڱ s4^K̘?X#$aH~Iј_ٹux+]>y'c sm=5_&yxP=5bPce\̱G٣ten!!*N>)<16EN! r9PO{ L{.`)m{3Gȼ;tIq>H:2_ OwC0QCr3LK{6 Ő{?U udѱo1Cʹ8='ql0v~&5~kK(OK%,3&\JJBS?S格* /++S^WD^˥!GGl!0|zʫ(GV hg sqlޫ#6_&i_q7Z-ZU6Ћ&k:N=@P$.Moߢr8Axmm1aat!NCYR!88'L=}r(1J"9>}6S|?mc3PB\aωRb/άE˙ Q/j}@8~xBsz(n%}}WQZTDBtxxֳ^hbY5Ԗ%G=I(PhHE=lthu&#Ʋz.1kb4ErQQTni{İy5Meܟg3hq 0!s/a~ ~6qfrckF IW$qt󨼶Oھ_rHk?0oЩNe :(7( >( }A;Bq7AM( M-;=L:q6@:< g[[1j|~!?{;WE ɯw,mQz=Gt_Yx#k'{o:b<2f<8"A'%KII(qㆲiPRR6ŪbT|*x o䋞}{ԯDHTEdݼ 8Ӆ.lt+4+iUQrt|SU/gQ 61ϛ &Vo-5}˙.XrCWօ[%gs[pO{>6fPc?fPW+s⋟1a@t[wx))EZu{209 /'F[po ;Tt2c(.Kֵ7,L\܆SrOiJ?~~%mlq~.=EyFb7m5n'"{Yigx8Fw|0_;Y*A!:`Atklpĵ' 统#k3Ei.}P*P.}w,ܜ$[LY5XuP."OD2(R.^$]f6Ւ!_aT` Dp{V]M%7l-kK<#s2Wk+3f |>eT91/*tGqhN-e,rq ߯| ښݶ2dPTɾˏ\2ߝb=d6_0)hh㹹qSE$p@+P/TBmA]4|`wQoqȟ+93"_XArщ^pf\JJBTKի(ofAʪ)]>xQq=F WbcoXufȹQV9. %Z oeH}c˸E wb޷AWѾv&iACZH״?Zp~:KŊ}Gp6(Q`,eeLO2=IEo2 ]tw!Qv53ѯs:u~ǙVNɮ!,ݗVV3ÿD攋ς@VB^wP_r",rnʂ;Pߨd]"ϾMN4Rp_*<{l\A4N'--VB1NZm12Rʓ ž|I(P~gP~e1\birUl;j^OIE<[&~{ݹD|tEwss]2' _~%hҮ?/D1W_[취-A\Xֽ/gE/ߖK?愘ŸCr RR/^hr"K:v+cۗQzUql~4B92wkb :Am.d`!ݿv2ׯ\Oεܻ~ /J'DGɩ?q!Ƈr 孑r.CLey;cćS奔ަj/fuwv%Q5!zAW8gG'<$̴TYO3<8 ƅ%N e6 RR-z,r!OOOԫ PpEͦײꛯ_O/Ɓb\&.P.\JJByEEa9vV^*s;_^YYrS`~O?G_O/Ɓ S E'xKmʥ$[L5 lܸwww|||&22DecӇU l|vwQ"X;E#WoC&&v45*L2sb[/Pm{ؐP.--\Bri,~~~ƕHMrr2jR8b:ңh>xG&TQgc'bP7i)vQъ޶SXu*uQڞFuYa/8;]zOק7Jwcǣ͊N0-xvOT3n e: ҕc݇L\g>7hF #FLQ*iJFnf̈Ij0b$hL_[>2nN¹o`ߣ#]z23jtFˡ+fۃ0i1GLgu(vÈޝ1`"?L!p|F'ѧ'e}/86$KK(Ol+K(߿}$KII(χeϔy(ollʦAkriyG(8#C-a|ѬU@:CYs;-`\7@)i:bibJQ }QtjhUxlrbB/ʛm1 gn"?]ΌXpb-QS jMG[8+nw~ԕ%qypVP3nCeYtjttBട23fvzuñsp=3bP'/P-&l4l`^k.΍*5YW3@&lCfe5a7w2;UixfP.> VKKߗP_[q]&lZ&teL7i|.{ 6^rQN;---|\Br7n(%%%)k[ fMŧqޒ/zS^%#5Ryu&NzۻѭTUQrt|SU/g<\hNTO jyqfȤ<-ˈQ͇}M: [ivXrC+Ehl­Fsf:M3͖7ֶk5|^|}l2p*i:f4"_J(ZixP*(&P.\JJBX\V[h]Lj*$c|Ny5hnj@fDY>'QՐw#}c2c*e1;+{l@iuN)FES͍*"O³$.gLqlvuwfJW4:h5ֿ _h>>IbbNy^^%%%b}u\JIP~GKZZBr)))?r ߻w/WfѢE׏={¦Mpss#,,/~Y>1RRr\MP~錫_>wr RRETxyyQ^[[Kyy򾸸RBBBm+_%wk b'w;#7oʴ<+8ۑ];Щk_FZ˕ZtJv-b=};[ѭ-A_9hՙ>nX˺Ԍ{Zgϲ{U2tɵXVGwizw:l"W ʯ]:sgpK$JK(uaE/KJ'_*D PޱqCU6>;ĎɨT,["[ 7!yP&udc9-VEG-oEmĬfgM~}C#Nt*ďkQ:Pe/|N=ʞs+/ȤG>P.\JJBaq%R.~fggLoDάu7-ѳ U~XɡMZݷ0T?zvVC]D$Q]cط &N鍨(uS>h ^%ږ*\q.2ݕ|fb9݉&wgT~2}i|P~aGaA>^JZ} cGNP.\JJBycc#T6 @^VV&^WKC;BDq-a:l!W5Ptg fͭ,bϚT5hQbMH/NSRNI aᴯ8NY*MN _EySK<?a\_0YSs̈(5> l?@y8+nw~ԕ%qypVP3q^}UNj`B+uʹ[Cz>9N%hlm1fƕsx Zuñsp83bPc.΍*5YW3@&lCfe5a7w2_,deQZRBc>ʗs2nP.\JJS.Xmџ,} +%]mzN}p*9jY?b,S&Fc TMaS/Qh <ՎyhKX8Yo"em4:̸ bT|+MF7q䰊x~M<6=nn+b\xxm"C%KI̓nܸlMn 0S8Mo=©_/FZ<ɺypx ]VHi(W2 _OJn2^͔5Erv/͠Vt?c b5682S>{S7Zu{209 +ueeĨQ>oV&Vom6 孪3QGc17f1ۭ&(ua3Sh\Ʋeč+3r̿IK?f ʥ$ h4bAf>)oӢHxto2kot\4Ւ!#l @p{V]M%7lm8RXRty Љr|Y甗S~j2nS$vxNj|L^ki{WڂsL_V>Qq3#htq)&kLEʿ%FBy---\BrZ ~?>FTIu%gbޯڢ[1"Q5hVei5_Lj!#Yb?)( eݝCq]jK^-rцAHmM n[p2Ciu(d؁GJN2Pʯ]wRjZ48۩"yuZ>1DZ=N:RwN`ؼfVQ$}V[SO̽Ғ{l? J# žr>51kc8QblEqxN6cf\C6IU}=UYq *5? f"q)w!5hii ʥ$_z,HY!c8eGūߏaT7jHs{Ū3FWbTnwaHXzzĴ:\ё>66*)ky7H< SuX՜1^[GM9FmgbZ :%k?`t_[Yѳpf,ۇ/sͭޢW5݋yߦ]E_o3Y5sJ33fDxRȕ8EF9ԉA]w 7ncoD8W5PpW>۟:3arQ<+Ǯ{GtfJW4:PVKKK(P.%%bNXyHvF&%U;N#דXrW_?(P.%%ŋ(q:W.*i7.g-Af0da$kK"fgLVzZ3i %KIP9}?J*Pi)Y$$qeqL]S̉՝ƳhڹSϯḵLJb('V捱gn:oNQZ/[Xu|跍2]ۖt>lĉAѹFݢz?p>u… i+̜yŻfpQ?{0m<*LS}}\oD|nnwK/k}y 53}(}׆UGZ3PS3X98n9TuW6aĀ^t;OGPbȫJԪN>Ù,qUkĶط'=F2޻2x̏^eű-r{w G9r RR_ane/8ꁆ GFPv~׿)1-t~eZEXjr9Oy.Ƽ%uIJ`\ PMp|8[jqFmiccWҪV"pf~H/_MdN~aPD}9Q|8m {S4,7pY}+3u9lN_Ê{5\8KnYԂ~+,g OOf׺ [APknZ,m3s2\e>v__ri1lY>p~ ƜTRb+ La\Sʹe>6_]c[17[^EԬY( W~ c[@._gwxkÓqf/>۝_PX.7z>>;|!;E3ۙz2 Fu-˗~JL;(1ߜ03 GM1 6'8ߗ07 i7.?ˊ' _Β|[Ҳ~ Oe?(_@ ~sAk6}-haTp~3߂1gf,7{X]츞ԧs8~s {e%K?faK\}Er RR `."үEri ZO2RR/[_KKKKKKK(P~iҒn@GAccclҪЪi;]Te3Oge1s{^,ZXQ?ݣgrn"p8?/rn*i5c3̤ͩR&$6=p'F9`3(gw?wd3(g30|k*\;ǃSʹ>׺RޫZ|>tUET\|s{VduMꛧr̷*zgy5*j4}o*mWUgkr7)W5*ޭfqkaҨ;vߺFlC $qUrf,:jfrc8OrgJYGOM/ U4qz>3z7j;|;z$\̓ \{Jdto@OW o_ IM0MV"ApFEEIr?GS zwLYc34llӼC"2,Yko+d2Y|ld!E g;3 #0[&d9 9}u 7}nUxѸ]1k~T;Eߥ_ѵڻQgc&xǝ@sLo -0)!fc% A!pB o+`^y>&{w</PtEK\(&-d/lzOy9f)W KySʕ+(JyK9JRRg$H杹w|G5fp>7O)h)KcY/bZ~t5UwvG̚f(^OQWeY|w:"N+ӣ<zz|FG2={d l1kqYdNf쾡r| 79A?{$OԿ^ 9rNwQN9gOEY?-ʉ/_&s;?7C&3yJ0-8٧#u HdAxj%u||rs|Ǣ>=5rppP`}O W'yILJ>&WqZ(-i%w\!#y#?q$,(;8SIIhz=P؈O=Şm(ۢB=w v1~EV_t◯\W9cŘֿ;z"1uFd9pv]^ b^-6G[ Tt,PrxD_:,^Kgĥ+p7dy,& ƶ NpJ5bx ]馨QrppPkRN(1袜`z!}¨Y74|Ypn}ԢP&샴6:-zHiW\j ar$(wO&CP7b֣yK,$?jzv84nyJ|[~,4|2:$ő6Ug`g(?q.3{-)*`Prx-V 9ݑn8TL ~ ?Y谉p2h2JPw G!NqәNL՚n?PӉrxGpe9.] mpi6>cy'д^EY CQD^u64~lcNrpp`4?jQKw1fz^xkb5t*vh`,ìxƎX3"J'(Dm6IӨ?aB=c(/Bj5pksP#0hE?{Մ kأмZt*x+J`\ӈ/sV Ǝ9\hTa k/9vjQΉcMTdMC%oHH|윏w6Vc<@o>z}{Ec;D~Ԏ0$ðL[y4c>};!qzoПjDcCоϢw5s#D8~Ylv} 6bAY 5UkVƓ2l=2_xtݣ0=G  YD_x#AO59lT'BU8ۯYs1%<M+EkrAkرG-; : Z eȐ9Yb0b[mC0- 58z}I {ˍ=3o%EAR m~V{V(/a=uHNUF ::Dc)-,>KUpl (! 'ٙYI`ۉ(7 X[2J3;F(^Y3Q oa4s*3gB:eO>d-[^tfdp>z"t4n[aϡ_>cGކhbι~"1W)ܷ8orRsDINmQ57Ri49cgI?7aXyV}\βP;tPf8ޢM8ɳ [`xi-𚫑|8F,/Mb؋ƤH(vQc9Gu,pϑq^SjHN($U3:#SyP? I`RdW7x㣪T sZ8JSȍ{=& ,j4[gk@r^Cر7bSj9^^qAc`i|.vegX[-@mֱIψ:g3Aw#Al c?#^bN|Z7ԔEHMIAH(@~n6;n1hoȕ:zuRivh[(̓hXB,6U`2ej@( \vz2 j4p_\Brڨ@)sP;2!!Plaǚ jAY2q}݃>Ϣ*2̡o/#~#뉐^`t|CbX!4Pkozȉ-Z(ox9NW\< L, g uR\>oבHV|߱BLe6]Gf>MEwT"fhۮۛIv_1:bya} bnd#ɘЊrx,UGϡM-'P?nSFÑ3KgC5Z`ˤH,T-j;W~50@!,[Wcs1eVK;,.=F>Ueãv<T0>bzChfaXLLZ;-jr:i-JEP !Ԡ5U+wCY'm֠ c| $g#yPoc.k@\ä@}-ܯzfvC@CY.F}H{<Ơ ؟~IDމ&=s1:7B"Mb 좜GmT/=qybǡ,IęVyqx xv 8g/mS(mfn7C N<[KnWbXKfxVCk4jR0a5_z=Fj?ƱTro~7R|TY5ԢYa"AMb7U iRJFNL>eP䊢7>`L(-@!7cΆ h ~q< u7 gj(St}]DLM}CO2ѐZx[?(v/#+#DKjPR,BQƯ6] R?"zv $s43DXb+QX,ſЊr=hRyuA]!  icAͣ/3bazMl4z‡a_9e_PE9'ʛ\*|'೦i >tvGŞꐳĥΡb+` #̧sDd H;!SB_EwaSBs r-<(  T]}EW,Ec 6±.f80}_Ua-zvƞv{x, :k! W)kYaoDPr?f498 L^p[PQesѬNAb/Z[Q4 L9ȝ"&'Vwm~"Wu喃#pfʼ5L̈¢meX CVĨ&!.Vʼw1%=Ie 6ԢjMFj S>jؾ*?㩡EHSqTE(VBrjX2H (yyP6( f2( gLG6#-j -#ȝ܃ W2"=d~[ѡS= ffY.֭@BO|8C͆HEǢHS_֠诶rN{f*,'vdCQY_¿o*S06a:L E;)^4 RoAy.^ 퇾cx/v;ݸ"]+15(,y'c`-ۆEcoa/e[ը4zW1 ɫ13?ص4 "M('c"po7mZ&S zh'C JX{=Y8c!7 E|G[«3aװ)CUKA>YbMtPŬxW0wjٓPZϏB Sr^u[$!#Թmk,j+C ?KԢ0|3DAQ94kTv>be f}B\jv?0uA# AagߡzZؤUP}{d|/3" χO1v =qGc*Ȑ` qBj:8Q~Eɟ)v#.N4\<._oE]4}8fGLZQ~aѽn Zx̕h4UA%^ M_Un988k5u!f,ӡ }ZtDfyܖXH؝ASÊjNC|K0ZQw`׽C]g{! ާ殿.ćrsrNzիWpo;|sG%:L#B;(gp["pZtrppא^eG򄝥OЉ3`(~%"ȥUΡFaN.*;*!Qog=&ٷq?| ;Dڡ 1ɿd~pZ8L@AQ sVRΘ[^xy@߃e=wԟ"pe1132 pkuY $w|)>}=A o2FloUWt&QΉrJ|i?y9,g> ٰ?ɉ3 HH=P#rppp1<#[()j-ToB1,9΄n'Xp;~u-L#'uj喃56/oM Z[,GIEfj |{3rN @nf:ǖw7r2|:܅q5\Nޝ۱y;:lj;/ʩZVR1J_owX#.4*Ʒ# 8nɓ;:NJ-(SDJ AS#.4 D>{(FNcBUq_ݍ7<]->?;l]]G9EDqTGyIQir(F8r|Q$*ס(NPtdIQksZ-*f+YzR|h( KO`i+ʫғ<&Dyw7ݬDy4_6+Q^ˋ|'Q<Ku:h?49e?9o728aKVZRe;H*r  J`"TIlDCct_Dtʵqe7stx꠿76o7缍DJ(:~zE}s57קGZ{eskVcbQIX -ݶqswz]yՐ:wꋷ]wRJ) ?H<+%ěP9(FgdQ>b̺ڢXCcmf΢態KɊjְ2u#8{o{nX~ׯTJ)R'#$ė8oNC(.ŧ8Vc, =ʝ_h֤HY|Zfji͜--Ѫx|FhKo_ ,W6-o|xt^Ϝ[KG?A)RJ)#ē_ڔwOGq)>ũxWgq-uQn+aE95}YEQXYc K[#R=W mM=n\wϾɮ'_0{_PJ)R'#$ė8oNC(.X̽^UbF|RJ)|8OJ|3&ğK)NūyVWhRWXr-V[c5s =,sh\S8 qq^ z<Mp$z;ȣVdOcȃÍ1 Xt I'_]NdJ)RJē_LtCh05/t86@xei"S<7z?kuRJ) GI\/q&48ǡ<a 7qspAdLVjM()RJ)q$ĕgOLagLC@n׮,׳hӁrosL$~v{ûWǥwRJ)RQ8OJ|3&ğ8R|SXFLc\ze~ZWVZ}?_;}x]}߸yKWRJ)q$ĕgM܉?q(ť4Xc%(bb~Oòm=TޝGU{^in:Rzi{QEiVqhe QaIH̕!5T%TeN%$!s{>ggɩ[YZԦT*ڵk7ޝ₏'쫉-Z~W;o|+VXbŊ+G“p%| g›p' £p)| jrm'h_%1K\r,K WOy+_y{m?]r_osx/ G~s ހBn0eLD]sCz]1uix!"bߐ]q,iи4l`BkTo&tް7>}bNEC# O•% o' -֖G sKW.︂-g/$6p~,~箝Y7̘;ﶗ?|%8OkGHΨ |n'5$;X#w-Z-l>Zudk_MVvڌ@MNԁ 0SPuwwQaMzrcRߕkO`II'\&'COb pO*Oƌb !+B&C~&Bѫ7z @nԍtF](϶1;: >j ֦7J>6Z3_ 5Iedޑ55 !wd#s k!T#s6 L}kO•% o' ¥) ­+%Q'v]Yw%",3zPY+soQMR^n<Ƃ:?N{}s4ԑ j.rm*G0G:g07-呏#/HG^4 (oajC!?W;jCfЎ8ˣuu"!hG=ɡ]ʓWW9si? \HQfˣ t݅ƀn1&t{t#15@ !2tҨYiZhY,7f0+XvX!<2'BvaGps|%"q|mUTZRDUdoGVίT.Q\<ʑhF>#S(GPQx[v0fgӻ̑A :/1#e .82Z?AB@.rs G @.(o2&3(7P.ryv٨U+pa(ijlUTVZi<6N۔A  TKac<$\ _™& ¡.aSU~cu=oP:3X`izg؛>w{K@v_  SJ2)2lŴ5ŧCyTPUǩL<,$8ٙgVKXb01G;Z@G5$%- p4(2hxxA92?K^97'[9ٙ4֜pxH[a<W1C׬#u(?p >H&Oo\E37J ~f^1 (ϤRχowGgR56[_2az$phz<ґN:@#?Nk{viǎy6k?ȣw @N9\N1g3N;U,cȃq43*ʱ왴xv2vzZ k0wuaDy }^GC[Uj_Nepy^6zg**̧vo:W\[[mXsט.Kgl}4믣ӧSqQ䖘\=p?aM8`[.p !όKcqară|,[Q5E9rO>sO_0ߘLu>M^*Kt璿ѳ?,|"{CY-qf!`;vrl؛q^ǯ]&vz'kv:/7\p;n+pi=^{D;v|FL&6ݨ fjЭKid9ۮ9tȮr]s$f>M3X9``$f̦ TUyuf=`v'o[oI}ܻ)n:vXV(t]3?VflPޫi6Pg#ԯvZv$yh -=-h$!QUy)%'Jng٪ʹҹB||w+pc0G99[a.Npq> V<%c>O>? χt~Kyإά'Mtq6pHۏ%z*Q@}~hvٜٳiE0Э$f6);+K|>o GuGbc"#IK܇? rϿ<;54-jgXVY rd,R1<³3TYESy {F .KZ)͘~@uUasvgEi1+b/ʲʲbYω۩ \!gG&8ؤ8|K^B\hRVù.A,ƺu/sAb |}FXg֔?'k13ǘ03ft.>_+?n;ymkUܖ.^>YGt:5oŸrKO8&k;1/K~nƺ4MY8qpI dI }f%)KQ[136k~P]q {󨬤PjÌbu*jmX>NUQe SC2KiՅ$)jlwl'ΦQiI>g3p畗njk!w Hb[b0_8[Ϲ8<t$: HB3eL$X/ ~cGIx<;6s(oiiN }suN?nL3~}mSF|rG@Ypa}qc< XdD}A|e[ r8sd*ؗG8.S͍]SU Oy]M7$aX޷ְۊ7~&8+Z8l񗟫UUV}AsgaGy %RJ+ϧ2g嗅NfсTZ~46CqvRzY:r1~:A[63⹙飆6mXFQa 57u-=?Pd@]u1؁[عᆱQ2;o#kx(?9t"`0ߟwwSCpe>i9p<Y#; #>kn=g#?{n=ЭGxݵzhڣбGW⑟Q?;/WnC#ZٹbJT39lw8p M 3JإZIa̘XGGy <1 =v=B="o\jnөl:YAe _HOҶ)/,eRcz0)qq8z~pArlt4Ksq%3 /V.[Bv&Rrԏ~Nxۤe G`|.i9 : <ҭ6kc(`ol )=6/.ȧt&-qZ|_v,m-ك{۶aY E]E[ K?4K8q_ ;Xs^z{J}yKykmC>RMCq 0 ΫN]s1k@94N8:CbK`c>Zµn)k?+q8`|Uqyv;Soի~N=9ޥoӭҖ]NFtz\vhpl/{Դ?)?;{M.,MZz ^=wnϻoֳKT,疆s p>s/H'ou3uh/{th n1 q@8@\XG! n'`V`? vDz?ut35V*es]G/Ǐ{~qhet !|{<¥k8!89XfzЂ B@y* tKe"]P.]@;5mZ3vz#k-[7|-[#ܚ!t+Wuĺ?p:zh:Q 5|.nf|q#G'[qr$ (a}fp_t-%%%KKƯGпa4l׺}&B\ +z>Gcj\e4EU*ʪJ͜ U耮U;HKko4Av[LNjZo8I,uc 6p+_>.\$ l`׺jj&1|Btއ( {JH1;MZŴ٭Xˠ+=gK5A17\:}#?O>@M{9ob:-ys)pu{b;wx'hT0irK7~kc!Q1_GDD9c'ػ﨨΅w޳=9{rr"e,X4"*,^FF{ &^D,(]D^)4j,G57Π>w*?;"+^TNc{}nɷHE2:=v'mtn$ER(We]V]a$(7QnILG!_[gy3X FQm#m|t ߍ E "Op㪿?7먪b ycd58홯 }!nX;6&02Ngv|M.< o,lmdȬ2paK^N޳ae9QJUc9|igCӖ#ּD}2[z}"i+ dDFʐ8wD&kd)0>䍊,/}eILQlDT7p`K*WvG[``ͩ;Ev5ʥ(܌8bu|}|z?laO]+c&693*ڿXmdQpoOS ySIg\;=ESU-< wK,@?H~Eq#3Mhb>b<.$?Qآӣn7 itϕ 5GּKȩY{{^N]Do&r)h(yur.룶G"[~]&ǐď3T A0;wgϾ4ݝ\O^-#Qdg|DQiFڵiMTd$m[ٲm_C#)7Nrɯ$((vI~?jl;NwȾ-?jhwNhm!MϴWGoYk{:q B}9.$i\Q#;#pJ4]c|RJ_(X{ (O&zZac7=72ȫ u2[321meR9˺ 6_s!E uďm6]WE4.ik1\R2 pΧjר#qe#^ŕ:'3ؾ62ZwtbK,չ7EOfa۟6fXv9dxmdNʺ FahT+kj ,x1[nTP\PfgrQ?~Lii)bx =ݶ'?}?? h%7kb bpxWi?ka(Q]~k8drZ̅l@ىO?LDj$љ[2 Y@3^ڵ)Y xKkjE@{@h̎N#嵏USg ˫Zn0Rn]DOmn )[JC&!n%'{+Q).*a߿MFgAd?8}ccSMFc]9}$$K4t(oߺORߑKϟ?е l9IPf,wsH摦S8y *urcd f=Yw“1i3o[_Zn},rƇDa4[xc:θ^q[Ç%]D]9ѕ;ݱʷ,ƌ{ŏTv[3ݛfB$^1>Ր MWOp }ܸհQRwK*x񼈼[;ݾ&z3n-ye3)ʍX_wzj!QFKBϩ>W׌edVBsѶM oѳl9450Ҽ%C̢kSmwE@>pDf|S7{?oOθE[xb0zsoue[o "ukss(֖8XWbfmap&c^#kJj[92Jl\m||ooljszr`sz,Xp%%FN@mlX˺Е YULo.]?/OD²”Iܒ'rW*++)))!)_μ9p"{ Vz %1=h/@V:kyWjT> o}'Z(Tro c4%YsĕFjhy+5b˦vLBҚٯ%)G\ĜS}2KLl#u^nږid8ӡiKĦx ^V+'ڕ~67s ; Ҥ}㉸z?NN9.ұB)-IIL܍ k-[P3跺v۲:x1?gY ˬ8Ouw&:6mY7$`2s58rt<(7'z$; pïd|8C z ʥpڅ6ڰlUYDnH+s]f$$E*=vx4WJ?<3{3cf0]sϵf kCp̆E'҇)\DF2U ++`"U S<ɺ:ΖMh7ڍT>UN~LI6 *α-Q[I]i2Lo&eʭ>L׾v gEN%`(Gr.ʟ1vDt>CDy}(xw9Zcٴ cpKEx Γs0 MmkɈ ~N??<rӁg(*,6P"KJ4䨔zk(7xUU~-|k["k#R5${(B%3E[dOdIԿAS Hy(+d78BV!&*ɓg&~p38o o/[q*%WOf)//gʔY1LzN"M)q*8!NI_[嬈ډ_ֹv3%~Ux3qr5!Xdsj3!QQL>z)I32 Ӣd|2cN8Eų 4/GKϜ"ä甫R(7MxJ1!Dtt| @}ٗ/sRE0~'U: ߎ%_Sdde ?3;ϥuo&g6l˥\ q,PiUsLE/W>_ʮs ZZ $Ű|*EB塼nHq"E(Y\ӗ]ۘ(zVė(x. ҚeѿHdr2V>u>;W|C6XYqAes#ٛaKRqП!ݜXQ{ǶYT:0b=7pV`E&]a\U8M 99xzuh(dZv`hֶVңHivS<73Ա=d\͓ aUK7¹FDD %'!Vk1zzVin3$JQ.Dy`3W3kc/e|yKsn0k C=2x8v8 bŏ3}"58fvck ɩlՃN"yaGzls8>>sq^=Tܧ\<[Gzs}х=h? Obt^o9~i$[ܓ/2XYMόN/E)>\Z>rcc^ׂVLb AZut]Z#!\D颼(.׳?hπsq<9G\Лva{Жq{.'N.Z6A&댳#kg0{jsbӻw('=}Ͼ4i#˗g~s&Pf㐞 La^\Pgט^|=v"b}nҭgVS,*Lti7= |ӥ3p$~m4xDP sEVFƸɣXDy\\)Vm?Jϳ=Od?8 N c=%]- b|a-[3dZfX5y(v&k+~a8GgjLekb^   [B0-᱌5- em?mD_qN>#ؙ5}ye)}3i`:yL9iP.EpAh(Q.rvɓnwZyZtq)͕*}촱Pȡ=3~,.HMXyZwUtq^8NYv{Vfq ȉ|V 12'sRڡsou!x79 ^j:i]J綆ɟpr:vr5Y&o\AD(Q~!󩞛yJKWxKxG=j^;A\iMB qBCCvV è=tc%쌯^d6 ph ZnEٜ,~lӖ;ոPs6>ӆЮ f8N;ή?>'d<֖شwyiqݻ'VεD=iP(OAAz򓦸HDڣTjRxKWŋ1J|QIҚVO;F0?m \A0 \DIp,O|B+iPGî3h=ok7ZD  \DRq0C h9.}ҶFOg{ .rAAQ.\D/y\!?6,A_YJ  r"kUU膛cPp3VCѣb6 D*+^"o;**D "\Dy_._@YTċ/Ycuŋ-wyJɃ2>G 1D r&:^ƦDzzx#ϦI!Ϟ>AϏ-[6m&Rn*3̟3Cy^ZIMGq7  \D,_d*xR ׯqÏ]#6 M{訮tug}3o澶A d$!@D B[M6`l 6`ml0`0`$D rV)WVԮUD.J @k}|R~gG2zJ~ŬtyDLEcy\Pj,S&tC5:Ks!\B42Sɣ?*(7[ +L%bfYM؊X7l(/$&QG/RƔW`/knƐޓX!_bԏ J ?N/PhGӓII#vt XZVĸ4jK(c fFjnmP~X#E|/'bs?ۿq|Fz-*#ꂓT.lG(YKYT1x9ݪЂ;zї :Ai3_ftooL0[4a)0=86 AAv/2\T=dXW/:`GYQj1gWƐh׾#8kjfu]|CX7 uBySGbSxT&SSG_436ΞOʀ2wd' &aǕ,*&L<"V3`E,:Ǵܶ9{yZd 4*8:oRgujWIJ?ó7)brA?~d1W=s<%1Ąx,f3:N,bkEE%K(wʛƲM$Ɍ>W&SZP`%X.kSX(rh-T]SqE.)LjC#8`!:'(mʱ=ЄkBW/1#d*sG/6<</l?߹]3{X:}$/y?a%?P.;W& L"]ٝc]̢|q?m+[ZZZĽ/ԤNYߒqxes>P)˔.rʵF8ukyo8>$(_ Ö;WtI|2)5`K>>FSt^=wEne#(,/ȊzB}sBOtRRRPސK~ jk_ o_5e%Nx4coM)oFss%K(w[Ln/)ڵdz,e?b;~7<=jr++R\õo/c6]ʡh6{>[ȅ?>"Ze.w)wXײTr>:4 )m4V7F~XzƑ]t}s}iYېSsN}e׌> Z!G&b4Pc…īUdzDWb0i)\s(o 0~X};Ӌ#Ys?wRѹ{!OfKh%ME}gk(O/27?5.bsܝ|]RRR-5ՕvvddWhJoyvxRc ڡ;)-c k:(W^[_swxVLITwv+I?'ƗGV0kysXw:)3K5Snզ=øHs5ǺEľ叴k8vc|6hG!3:<V->gj`q6(wonb5D?-ջ[P~Eaz_EG |'oZCu:'YNZ}AWkn\His’P^]UHfOXcm]O1:og?> |C8ߴr p !cU7n $bD$e[X}8D %XqkU|EA/:(\򋽺dac').4ʝ|]-,)) UԿ|!?af֓w :y W`ǜtlGAt5z|n[FABj[ Y"^х⒓ '77J b$vnNJJBwHʝQi/^u /:FPܿPj$?&rC z*Ue-=:7__[Fˢt={3TbY'y8[(Khg:sh~~Ŵ|ݤxu˹ػÃYVK(PnϛGС$͞MG{\mn|)N:ϕ_oQUUdBS[4(_US^r@q#e*kftoqWxLފƬ婼tf^W3?uz-w/)[̝RvI"{4Eye0u1w)YMPV*oX<:(P.;[b(L(o~\Ȋ&ysVˆ>|]͗rWǤX8ż*b%7"#zw\b)j(3oe[gr9'a䮴< qRyCr9R}vHMXhoݺuSNrJˆr) RRRRK ?p̛W"{WϽƚ ?\Ffnw.nKnx%C{tqry Cr bTŋ5xSi.//7oЭ\n*۷Gҷs[ڶ̀9lB?On|A&,qCy i,bb\#==]4N |4>I(OMtp?-mK؊XK(P$@\ՊyȴHy}F#ʲVgdnw7Hbˇ[[L@9k/a"ZW# H)ABOH.w+BV7=w㢐֣#uu7r@Zndb:B*MfÎ+YTMyD fTY45([ qCSnFJIByFrdNElE\B򖗘\ш݀r;S0nszW9X2g%?]ϢJoXu! ߂h%ѐE\h/ 9JˇYf"+1F.e`߹k0wS?>Ӷs;.G)T)>2GPi,DNc܁"Lw㢐֣Kfq6fqb:R*B" iO נS^/j5f ,HINI(opZRR@ [0ӒSǎn,0ރ]f_=yR6xy$xrN$UʞkV|01ҮX|UKϙ/Q6hk#1b 40n>ҴVLVJߡr=R3&O Ĵ)Cv))29V>׏=Ҟ܃r,0fM<V'VRRŽ[:SB򇥣Gr+b˘ W.zk5_eLL/RmmjZ(B:S* Yx,ZI=5ܹ!mRۋ;:VZ$KK(P.w\:XeZe>*?qPoͥLˇunH]5)*b+HV+)29A~XzƑ3^t}s}iY?Hړ5=E=B:)jZ^RRR%WWUJ(PU<#"",N:ⷽ>޴(?P.e~x}J1setik-YӉRDɩh'/bכG?Hړ5=E=vY&>}EJHBr UUd&$w@Ѕ ~}\IBwʥLx牗Vn+[%W槡V %%\,UX8h!IIII(P.\W[AU[+wo<㒒P.Ug_P= RRO$$đ""% ߶ʯG'in)ݽt>ɒP.%%%%\cjrjujr M[K@OM9Ć+oA)%$p kbj0%\Dc-/)) IqIl6jPնElEEE%K(WbϨ/MXkwiz&;kHI(_Bk/R[SV,-b,b-b<(|`(P^Ԥ8j.2k`F[Pnjfu]|CX7 /ҵwcĻ?4g(xup1޷#=.;5Xymw8}Ǐ淋5UF[dGKZVE0w7꜎m~֊p&UZ]HBƒĥ𙺍r9.M@Ýц\c:[QߜK@ֻfS!jߓϐSSGO l#׎񝾝/%GH%?钒P^Uz gB?66{xоc7<]1T ++HI"51m8rSr7Ol ]? (b8pj.3 =,>ʊ i xy<^{V'^2nʇѽC<_4#)~\$R9AƒP aSNC1;SzSzRx#y#J"1@&w#8QnAZ^8ٰOYݨ|pwgkP$%1v4SYQxkr߱e6!k+ (1wGJ(F Dn83%̆,#ea^Y[L@9>4=&~xP`7DX"ŵZT'~ *I(W|r.*D1Ns l'rZeV_oTa[]OhҵK(%%:4|r6a*!~9/%pPwkO ss=Ob^t98UIlfɉt^o^;>vxw!䃭DP|S.$*Q8p ȿ_+Z[QURRRIyQ>wclҒ<]d&"'b$x}J &-Kבց#?}Wrj1tRαyB-X– =V}8>3t[KsH]5)*b+HV+#ZW H)ΕDc뾌ܖɝEJ?+_.EN#9#n=>P*+q˩{pa`=a6G|[6'؜fsͪ jwMάSÙ,]LIV4VwZb sbLB6EW~'qn-8HlbwJo Gv&;'7h1l.oLɥ0,&b⛡w~{m~܇YBrEաg{,:,+rLw]:_"`u%L 삗G;z ڈrL8d*w2Ƨ#E|PnU.ms3%ڷ=ygpHyC/ %K[Kl΢~$\AHCLm*ƞW$ Js)Qշo&ohN׎eI6;wu䔻+%%dAyYi[>DϚEI|< ugwSkGN{Lo(˽|w<].83ɅҴÌ5C|'p܋|8 /UxkCjn [Goaҋme)<ŗ1[c)VCi,\B2Q]NNT+r!6퉗wG֪ AE2?[>mHRP|t}0^=u0og_q!VJJɃҒBo.5j cǒ>f ٶyM?R*יy>Ri\KVV  g"O.cm;[m9ި[yq{|3w<)UCI P^CZ ETh ]Zye)V RRRRNP^RT]Î=?|36_16'ڜPrr2DgLi_)&G\;?7rm0_^!xUkGH/Ϻ܇fYB*7_EFN itEjK;UtHJB¼_sZ} K׹b&xT2yy$]<ڹ|v3+%dpoC{f͢d1;<џLCӯSBrE8*-"R2 IL/,&N1٥W*KII(jUP^Xxz'S!b|:ݶ==M|vA6_tԛgoJfNCC.d6O>4:7K(AL3%1mRR+}obQTOT0pSmiiiiqF (wyO(/~6 ""n`Cr %'yDq{|9N'ym>c8V#%D@wH@s*F/:ݴc,1X#r+_c:FRΌs*.1~;fػŃɉTUv(P>0 Ijid]G35Mޘ)e' (t)ky9Q-3+n9}z`lŽNĽOʏt"1I )]yYI"[3`ƴ-l;{ Ų#,q|rq8GIH}{$};m Ƴ*Wu;c>Z5?T:޾_-z2 Ϙ$---u'}ĸۜ=}_Ғsiu5=r ')b2[08 28,&i Xq{loƭ9CFYއĩHBo(57.utrd j nx늁Y6uȮ *LV2KL|z^|([gT`Lf+y&p+<'VjK̬_G,DE 6>x.*Bcl(ȞR fqѮ8ô׽ 7ʁ}9w7))TcJ|X?SRٷ{ϟ;34S;חɡRn*a1/yUj %jqJ}BeFW3^dk2aXЁAĚKg?iEwّxy#[^28H;Ub~_`AJEv*yq՛ Wh?ƋdphA=˄Z]P69ѽ<#Z ֏C0H3AEY=+tyE, Uz\1 TVʯxVJ c+S<_-rZP]c+뚁Jh7x=sx㪞o-iԯ2#]l1EF LJnֳ(L(A/-WԳQ$Wzbs!ZZZZ=IPw.ph^K>_,-b+b,b-bA_l_U*-nDEٷO<;ß'L$]a0V4w*űbc^]~ZLVg ɬsq%J : u*C.[1fo% {r+@'~wS/'o!Ѳ"NLe˂'KK,۹]nk<$kH.u Ç$I+6RjT[6vb17A'EHCLF1&:|f'Ae~,P>L}he= [~05n]ѓ7mH7ϼn$O[KEΟFN@ħĶiL,mԯD caF,|w8CNFqJȇiiiiq¦=Xh/s M 9-êt)u,fytfV]jT~IGm\|Wۭnlj8gVj2p7Xg;"^7>Lʝ+,-b f3On7_b]у_v✦J}e*^gʇѽC<_)'!ά:q\jTzV@Q $u\A՗(wBZ=-sܕ<&sSUc0Y:>Vsu_Fn{"V7A>z; }jr{CGܽPn*d_?撽sA\8}FʵFr@+>b*ƟS3\5vW_s-T85;-1%Z| 0SZKvkyUÞ<g븤p*grA]c cL{yˬx=nŽNZKK(t}ObwLL )))$'l,Hh߶8~}/sV,&5\\-عM~Xz&z[K 5~3yï/F׹hHt~o"€Any}RnϑW=c'q*mvN̜r+[%p Rt.G.]7vb5%)_sn/.G]M,aK+@?8^'+sDEgsa}ck٘o& Z)Y1k4HJJum=k8~f(Dd,;m8872`;:MJKK7^'yP.-\BbjR'rpS=złA:0dPʪ'Kmݓi9gp@SK /O^ż71>*0r/OI5Ie`zyy5Y+b}I}Rn1ރ]+rʫ 7V`v@zݍE r{f_iG=o/ƳmøH宠ܪ&q](}Y@[C;$<\ʈ_ʞOŽnϥ'\ [ӒT?P.};/ڽezv뎷W{vy;ϯF!x2Rrkw|bF+aJY̹Xł,aut-!I͞T ?ej9#"_ϵbˍT֓[kDkhhK@ĢTkFHJLNPro[5ѵϽTm]vU:^NaiiGKxɧKZKK(Pޣ{w^ԉ^6_f-;ƃoӾѴUHuH,Ӣ-iX =@Ƹ*޿"p >Ֆlmj % >P.V??Y`??h ⋴ Y.x޻'F[}݁H,<풒:q>\ZBr))) RRRRCr $v׏ "C͕Fڵk\|I %(WI(Pw[:-1_uBҗ~:uRR̀rr))) ELi% . TRo:YǏ*,ʶ*++ޞ\JJBri -0'~٧NQѐkUUWWߵ"; ΐWr,GhNj=J'a߼]DYL@.ywku'OP.%%%%\ZB' ʫ+*G&_۶ښʕ!Њ: _'x3Nz%\CUks@R_lT~b j RRRRʥ%V(/#51} vNNh5Z]k4!k9&#]A=cF Y4a)0D)Slk38 xue‚djw\~n53Ӄ.!,ܛ> (P.GRlnP.Fj @^h(gtY#. 'x9Ti ;m NmAY K3u1zlڋK؋ן֛`rsGG |'oZCu:'YN$ Xn6~ưczo>OBDTI(P-Р\ByJB11Cy(o^O=Pf ٳFu(j 'NݶCWOZ,SS/1o7)7%~#!l1!_UcFTsO] aS0fGpBu6|yR՘F{.ŁCؘm9}&ʻdsN}ldxǢO+|$KIII(m .7_ P.``0`41RgzUEEd&7{&NO?5/YTH'Ć;F"FYFJGQyjksq\v=,>ʊ]\z-'E?%?jIIIII(PP.Ah0>w͛TTptFv.]8wds_[Mp*)WGpr0ҴVd]hGAXQ^&q](}YpcB >;[b(A+h׾;%]E_+|$KIII(--8RUV*\ByWt99oO_BNLOgݺuL޽Fuq*r?4- I*o=$ۄRԞ hifyG'ђ5\r w}gտiW>|?mYD:DrQ^?x(t:UUy/?ƕ:?oeaDyrCyoت(QAnfYD(?G/r r@O勎( iQs<#!QZ#NrK%E{Q.A>MO1Mwn(HnH< [=勉xxY G‰GN' r@Z>(hq6MFŻyQ<#!Q7V~Q./D(z|0D9rՇrQ@ۍ|EOQDyvCÖ>}/E9r%嶨WD'xX8QI'7$Q~uqv*E9reQ`D}|柯򋷢Z@r;*zr!Q.Etܚ o7$Q>h,:RrDMiDhP8QIg7$Q>|VwQ.ʯ"cF}77A}$7$QrQ@(!Q~9GNC y(EG.$E[Q~} D(\PID_8QIg7$Q>|Vw( &Ey1‰rHkHQ.k DrQr!Qn\t+($ʳDy;(8?m<Q_rQ.ϚG(?(E{DyrC|(sF\@((&Ey?[oE9̍o(Zw0D,"E,|(Qܐ(DyEDyD({zR͆{҉rHNC r@aɢ\ģn.QsD9 ʷrTrr(QЄ(Ǣ\( Qn\"wK'!D9 w"_5rQ^d3Vݭ07>Dy:\(X&Qn\(&E(Q E\#;[DyrC--k(|'ux(OnH|Z㣦Q.O"G҉rHzJ|-ff&$7KKFG{#\Fr[~ ŲEWlDDy$-NSRu.vNv$wYwXɡ5 ߊy왪Wji(G9*AQR$%9 SL䬢pi:+*JGR;9IU3ħIىѹqg$S43i4kg~&WsS0zMZPwپ йyyit4/U4M7ߴ9vtum.:ԖBAc_ӿQ:0Nte4{Ni4MOw:+? 00#/0:T L+lK9v"?í30z]wnvb ؙ;ة=@幝mlp9 =mi7==*.c]9y5j&7T[WZw[ uldvۣ7U:D-L]epP 캒B=;"쎻Wn2~v76xϴߴ,,?XYʉK9K9K9^ϔR.~4O.x$c["zI&AOzxs)g)'R*hp'߿~q}y{-q=»%NNRZ=i4=}{nekпa+wV?;ʢp/?;&lϝ;^\E)BQd/-P(0,7MӴi}I&M}_}\QgwJ"O4'o99joA{k3%NH̙tEW(+(?8w/*gq/^Kp/,իd-rq|ԟ#=e:?ðZ9V o2lb8`ZsZEࠟ5 .b|+mǚ8wϡ~3+ts@2hCsϡP^8]!*;Gy䣿6(+1E9_իd Y35k&)v|?|HH?#Yz.Y K@kkWݚkQ3' }m988gM0 ع/ ͉?Ak38,Tw\!L#u#q$,(/[83IIh~PHL(mwZs|JŅ8N1~eV_rW]5ׯ5sĘ1' }"1}fdqv_ b^mVdmST|"Њr|D_9,^+^Ǖpɽ6fE:*ƷHhK=bx 3!]Q rpp`ТgrM(qK\ ` y!ܘ9s6~qrP,F-}mr׻tӐï}9Q+|3< =وmCIд) ;?oX4~cȩxi9QEǨhqגq%G#aplIFBUϵW_߹E քf!jh$v1Q 視ړԟNd<+q \j_s^EoȻ Xt,K[k}T <_]o~-Ģ|߹"D?jv0":6O#ĸg_!xinHn;>% $ԐF#w gz:f3oaN{S93֛g&jLz+?(w;,~Q^"[ $'ANVyNmf *8;|UP,$0D uPpwV/ڨK:g6*C´t12a3hX{+~n(C7{6_D)GEaVoC'Bb Ш8(<m0( u;ЗV ?EDA{KY[A3 Y|:շ`-5Gʆa|<+ʋ s C7 e6o{&#C h6#ģLcT#1je\nVצ,FB6zl|ؽ}sG +ñ1GqBj'~zD9}$1TN MF`|P5+aJ Gɾ`jx$E}} Hm9880k`XlI-NjK2|'k7<~b_x{xr"Jň8ux CGl#T67f\,BjJ2Ffv^~Bױ4ˠOvBPG,GYn#\Bk)PzNcEVЙ 0PPu4AHS+u(DgN4tjGC<,1E#:ac"piTE5Ez7Jkf_܏иI [F!|FJXj۶㢜m?IyTd /N+f||.gY'zv,"Ѭ( s[R&>MG+3j,ȭM&G.Eg/Z  ^6_2{y h!6*91 rIA7Ze`\26N%=g(ΖhM@{~G7}jM;t>R,Z}@>u,ڞX91X6,7v>[3#^Cye]nKfMDVw4u^2Z>Ej&91*fmue: @I TCRS ڽ*:U!@X yoQA BoGQR3ޡ@_ @c"J38t%?ZQO2z@|n !̚ wx8,HmE^P|]ycã7fcj~)džш[:?E9'[v*bR \lg8F⤠h}gRgy &3&Y s}6 C7%&oG/d1{3{? }Ad9Iֿ7 ~vVD!rp_ ͙r4=Ԣ61ҬHw%~_+bpK8`*8UKf= G7Cף& leJ]o|ʿ50hZ\b3tg.*ێrwVĥ(綈bdRT;Au#rc6F!1nFA-$OhEì&/' ٙ験֢T\E B2I j+QSU~}ex($Mj4d^iCP ļ7QFMk u1а~5TհtVӯN~}^8Ũ]ۓ!(?OEF_dE߁]]sXԍ{!η,_#q>^(%8fE5o+L9 n.v<߹ybvѩ0Rl5&G p39<L~#('@thV?b3=)hM0nI_aS\1fEVQde rIMJE(*qPjiV0+=j` A|F]!ZOD*PP2(_C @7zߠI~]l&-rv rN7;T^>2M'ͳQ8艊}.gW/Â0O3"a\L }EzaUY E7t,b5pq:b0rV,R6-ti_lNc!cCF%L phq(cžC1mG>tl?a~|,]Z{! W)iYQaHЊr?&4up;L]MpYPQqLeҘ~Ijڹ*?5BW<F/ lT+`J!JCna950kdfAPZȭW@e (lgD6#-j #݅ W82{"]d y[Ӱ3 &&Y.6BBO~iQ)aѱ(RhЕ"u6mDyn}K#y#8qd oDGm t׿ڊp̅Uvm92SaέaZ)BqT,unC6z&I`HG՘Fb`ph;bq70_Ċm~|FTng`M iZ̎v//:8ϦZX1t>phԣXNcl;w};s 96rPg_}>ܬ!<{O}[2Xs䣑- 9 VZ->g#11SbZQn֩~i)IH=:wlE]mugT>~ 4ZPS|fٙ((*Zs#χR]n,|^! g{|G{Pq=*|nT21L,YC[Uo g'a]}[ k'#2$C"Z&چNaQ~'r@Ӫâ?; W._y)y()af3IV޳. MZMh2VA%^u_Um988;k5}1f-Ɠc:sBÉ8ʈmVw 5hH?Ԣߞ%ÞǺAr݃wCG'n$r]K;-:pڗ믽D?xfZ!Zgj4p$prpp~֐YmW]hNPsg`P+~%"ȥU^FaN.*?*!Q~hE^= np?=!> NwQ fmW \vW7_XQ-zi%Ҏ$iI&mUhmvx[ G{D!Y! Ddm988gM ΂uDhQSrȀB{Ӣe'73g`G#6 y꺂]@T @$w2¬WNwQNPJjL8lV=}ʽ:lfdg>p=jD['Fm-^WNn v4'ʻ(7468'AMNOԖ~p38 w-oR'R/~gw^=e)D(e &u'ztkA3kbb5b6p:}(?AJ@ѳ nRimC1*  2SuÏx(6&?tF5`]^G9cDy1Q=)+}n|/w'+\]Q@tkF(6(@tmm=E9DGFOVF(ёѓ2ʻ}Dy(6mD9@1Q=)+Y(&KQ^(E>(r!m$ky2<<͛~WWJ)RduIOÕgM܉?qh"*nů8>Z(_k/Դ8ʇ?[|x?J)RJ{I\/q&ĝW[[ҺiM491;2rko|+wpo}xbJ)RJ?q$ĕgM܉?q( +O%3P*]Z42,vygq¥V];C'i}W_5\qgoݏJ)RJq$ĕgM܉?q(ť>x:((g|^nzvq9eYP^UݜYMK"KF; Zo*|bGŚ}}k8yfɡۆ.놮s~mRJ)|8OJ|3&ğ8R|S*nů8Ir[aqQ YYsBy%gԄ5m7_!شnѡ.9x²/]i?G>)RJ)q$ĕҦPo37+>Kسql܆U=-;<5Pn'9MOaRJ)RGI\/q&ĝQ\'~űx[wSi.}?LZa)lXhr# =Q{:~dcvze'RJ)#ē_L;MqiG.R{+,ţ+,6-Ϫ< m}xP޽{_՚gxaRJ)8OJ|i ǝQTꮮE]^Qlf|RJ)8OJ|3&ğK)NūSJKiE*9y94Hj8LRJ)8OJ|3&ğ8V)N Ycq` aٞW  OJ)RJG'q%ęxwOdOmܽYcqa+vyX8c WՄkZ|RJ)R ?H<+m:7q'tA7.Q8tqn@wRJ)Ԅ3Sgj 7'MɹݐNuRJ)rięd1CNiS4@2mR(DA =$I4ԍc!`o%I$ F61+GGw1I$ь/;䡌<ڢKI$I[3jh4}J JGD, !Ă oFf.AƵ'~I$ͤ~b_S1ӯH$I zsLPO1e^$I4D#1Aa>Ox,g}s$IM3Dz2ӧ5d_ |~^$IEԒ-C'<2ab< Xr =ss/C$I MI_F}`yb=tÉBtaeu\?ј*7NB$I#I3@?Pz4LG >qn,Qs`M빥V3l7F!I$ё$]I_ҙfth|jyzy4IK\ W67lխaH$I#IOҕ%9IyJDxOӂ<Ћ񕵓哧zYWO?}68s>_\$ID?ґ$]I_ҙ&IFS0iyJDӟ7[`8BExB7ѽѽкx|{G$IHGғt%}Igқt'Iң0[cLI_c)yX[}eN<)gکfr '/_)n^-޻}FyMI$i#IOҕ%Ioҝ'JÜ^[CXrZShmLNe9b򙫷Jw*o+w߭J$ICHz/Lz?0KS:^[iy2~JV+Kf+=n6sr{PyՇOk{>$IA?ґ$]I_ҙ&s>Sհ2(<¿]Ygў^.\iԹqr}ou'5n;x$I$ ~#I3MCQ>Sk,cGk+%|}Ҿ w|Ը;_l7m=~aHD?ґ$]I_ҙ&Iҡ(]J5Ĵ|]t)k۟>W߼|w?8I4IuiJNRKHKJH6ul(ζmt2YK?M{Ed;Yg[VqM͍H˥RIu>uxQgy#ѓJ%:DCѣr>[~#,Q.+X9X}]O{Ͻ?_~}^/h\'~n6;idlѠ6qDn%[4y qE_5=Q#p_7 F 7.7 f0IlZj1b1R< R+dJdVL$XD;kF{>Qv.? b@02  ݣF!KEj 72ª,4Vhjڊ[r`ɅBZ ì oR3P1a'  ̕9O6l+sdi 9GfqFc6th8=Ll=D_3ћN':=.ESѫ|2rQ.Γ+ ۸G=K[Vū;W>?~F?ūѻ(^ngL]X")eM㟎|\&PT/1d܏7TL` m`'3 Ývh˝W7'OtOWrӁ~xt6 r";{ѽREwXdpϡCtôStkX+`@Ŵ"" i i]@#jˎ%3HdX x-aHx_t 0}.[v^#mJ%:DCѣR):U;¢laasy غSObLֿwTeb~s{]Qnet\਍ghYTUZ[ۖiB IeO%UٗZ,!  j=[^ɩ'ԽoTR77zozѺw><3g?7<"pµ_\uow 'Fz:(ۃmhʑG9"iE:(GrrDD*`nHbQ>`H[ct1ZtwXkqBd UpL[9|OSCe+AGy8.[[ȧ#Wֶ`){Y3`S,IK00< W—p& wŸp(<8^[W8W.^(g\):S|)4Of3*f玗?^~H"''5״I{zwN?f㏍^画.R<ʪ|#Q(\-?98U@Gƀa@ WP`1yVUrD9*9J cC^@r.{;Atn3)yw0w\+Tƛ?fܓ_™& ¡(\ ©{Nk?I>dʽ ToB*?J\*y:}rT䊓?NfHh']guu’a>0OzsZ$@GC];'yfNq~Jc<r@XhhuQ Xk5xcx8sTWV8L[D9 pe WA-k(80^RAO҂u4/Czg_P)mYAFFd=`2^-O6sEUs8WtJ:@t̠'&+;8upn19MFy ȓJ,P]Yn2G8,^ XL樬({Uexc8]^VcZc7ּ.ΝBm(&{U] <}Hs9 в#zmBwK踳$!ʛ멱=cfIqnW-45z˓Q>`ھ9+ @#7]͝3Kb}hvۖa,'p5GreqqDq~9"|ڴ(GOwScnW}%khhmiJX%GuSCܾv0eao>xލ֯]M/>kn~qokQt>J:@Dcm_fҜ']={ן[^ g#\9m*Wv^ԙyJ^ZR,?\cr43@*6in@'; nwY aLL+ͦ~SJ߲9`,Xˊ:ۚU+=S(W`;7ܵɑGov ȍinm7MNz` C1C^:t~"tw 9UvMۂ=]IP~t(豐^8,'{ 3 MȜ>yH9CFI?kD.:2 CBr 2 шX7~Δa1Q3"1I H;&@."`=A:2Dd fˠB)@'pvM7-LG 4 _o*+FᡡIcgicG}tmvV26НMϙӧ `BAz8嫣4G/)7;[3Hx Ϗo$bd-q!8L#[H2f瘝.d,h- !ysDȠ91os +79!$>W&3W$HA~LsryOwqޮa8XEggCvfi=}0svm7ߤnfJO$aKߣTu/~sv8W%ـ.Uw$ccQٺuZC̟O+JHsc37vr5pWqqƿVqqGg|Gly{onJ1{hǶt[!V{:b{ځTܨ>}j="$AK %^9h%Eފ+X Ƌɑ%K0G{s5x:.yJb׎s~M3{aL٫y+ ^OtmOjӲLsXUezJeE=vP^m+4/^.?ẹvSE48 Aʩ>NsCTky Xާ ?jʨMn)m¶fܯGxNa1Ü߃0Wιz:qHDPC"SukQbPi[.B0>?) ƛ6ʇ߉k{Cz0/wdм9%|#bxGT/]u#J n3U3g9?|D GzѾr(_3GyLsQS}`j +}ژܝvNxQϻ;܇ dk8`%\ckc J-#9ǣ`~u߽Z[یmGy V*kwS[+e҆*sЅq'h[q>K**(R4HߪWmIpIs~#< q>lZȘs@G) ]Xv[o?n7D##s _uS}8Qot>|Zg|>srա.7 nለpWXGC\O N Q(m1ͱӏ!c-@4҅؇1ܨ@:ŹpiIJY)ivJ|iL>/!mS|˦mGy QQc9°/z&B>Zk >LN?.-m/ / ޽r4-ݻ03+9$9rs@Wt>X.E;p+; Pzo-ZW|~:vPxXK}}azg~.yv$7'יtˍ7G'ho>yWpO82]UO r$r5o[]`D͵-XErV9 m}8sۏxnQxz/*U't¥cT3w.|Ve6m]rVQuϜ$ǩT}c{fF:a<'?̓jܽQsE@gF:݅_QaI|q)ީX+uolG06c/YmxhSۤ^07a<>%-2Rt#W( #Ά8~gc|~'[xrU%KÃm/K[6*XK0cL6bx@h\;,$@TVGrNPykp`q1z-v :7ʴۧ='Vk۱0^L:_4li *tPcv+y&Q"Ұ%p#|xs|!@z3>M[UTTŠUA;Ӻ+ccͪcVݝ~b $_(6'F+9zPW0?*  eIGO+nc;c|T\}K8WX=g]%G5XG<'%Ny|Q쨆#1WRW$hUWAx 8ߠycgUxCT9G ?Z*<\|<؎'v+?73)G7&XdMΪJ(?lj H-<_FOg"(XY0nXvNOv ܬ;̳W5qqq!qrG\ {ҠU=-]lC=zdN>{D^f@ jvYf[7<ۼwp+V;mn ο.ڂG4׌w1uk.YrGy 8\8t ]@HG@H7@}J::;|Ϗh>f\!0rGrG8=t =) G;Ft"0#`o p)x T19~G:|;; 6|x8|!OWTQ'9qS8HCcv>#QM7R}w#;r9ڲ|K t):Qny G5.`G7~qG84C|O%qǸ<ʏeG=I`q9sҀ08 'O0J:˅wtɺӥ0Ѩ m3su?M壘B7o UA<=' m۷ Ṅvke MI4aPJ MH`\;  [鱀.aKHCu h'cް:YN%k>!\2o q$;r?=>lKLctcK)  q?wʏO@NF:>IqN:R#^|-Ѥl6q9|N?'|S!ދq?w;W?"F;ƻVJ6aV`lэ˖o  zw{r">>iE띖HFdk0hEJk&qCx1bPIyk`AU46 \=' `jӅ+= kZY<\!ep,BMICBk'A LZ?q,|uDGZ:#ccp+;ZѮ}l\A7F|ca4%;™OrG@ǧSumU!QySŠl-N[JYdE8"!?G܋#.A_}|ccs.4cKKe#T_ /TpctcxO5'#\a;Ļ(wonoz']WWo;|ccnʅڗat- vrG|CcnN޷Iɍ_>)N$/%ch5>QicETT.[ܲ+̥7n:\*Ԩ!4jʾh"ͽbBX5/ ֑1I/xRKIFmd#s&?ɠ@߯]|Y^imW׷uz/}X?'\\ p#;R +,eQqM67hȇw,|?pQPC{uuFˍ}>{}/Ir"j,('&XƒDM̱DXbw,({ET`8<^e3w}9?8ƢʼnM=K.Ɲ"$&ľ]kڶmO-r-3J~ha u|RFӋqyoLez)[_ 'K)ۀM/܍"ݦK>d'UHxJ&&ϗ;e Ej/#\HyB]?57egɟMT^-eMϦYx䝌se`T||GBHFrNM?ݴěz<|$\alҺH'ڱM tSK[_pF練 B_ ۷mARUU%SKaBQP(FFWT*5HmR?B&)}7oxP;ܯ_;5Ώ0|B>ڿOd:OJC6Lf,':`T*Fu!wdGhxAssdvnK[. E^{ foKs \r0V{pd-܊Yy{ZmͱnX۱izX:t7&Hi$ltĶpMR D>2c;܎Oo!Џ#Z|ʿD|-)oxHu Df]IFV3n#B[?m庤 Ru^(-Iv6K~+KPR\,R\\چ(59~˗.܌` Qpt7smd3|{n;g}T>޿3SKK30"Yv~ɀv5S)۩ժW}ݓԱ \n, !7}߸/mfK8d?+5?>)b3 _/$)6:Y ձ̓"NdՅz`r?d'un6mc0=GTSL#ZfuUk,:o<~>@ol?8c힦drg7|ڿ;X}7WklPmmnu/˓2MѸ{jlC^pK(6-Bf)WJ"w 2,'B'QQ^NDYFHyR45)޸NyKK3New>B@LGp66 O2,&2+ n d员ƫ)&Wʿ}J^zeq`ar}ݗk_B8h/ߌMWV/`|L\_}H_CȂScubj<=p;<ժwY=4FrnXn&'SL_$9߈?- \Ys+\x*$bA6nkǂ#$$Dy+>MibvGuujDt2oǛq'%;!5}Y4rXc3K;MH\H-pYvLk2B8L^Rh]PV 28Q]#!:"O3JwMqԒVHIgVheF[OJ%=h:ᷰ[qSKFc=M|4][|gJ/V .fiחտ_n`4&_vkeDO)9NlGI}ڧs0X`\'oFn'eE9/mΪs%Tjɋ%KTWF7+oQ֠|XRb<4HI3ut`܈N~#-լ{ڤvimѓ3kkژ[9dn.!2@b.BU~ckGԉ5X6M'ʦIm2JZ}IiZٖH -F[$B%W+KJH(:t*ݹ9F#HyI焔 )ox+I;!%Lg& yDk: tTQz%9c+gnΣ * &seKt܄7=dbvXHba?[v1D`)O!4i:j h#\)O t0r/j\ލ\Nf©$b/}e+Y-=Xp% C1Ly7Yh~~ L=%aw2}^7 JW5c]mJob648?$I*2(dH4p6-[ ɴ3J/>MdYY;`%y ~qIk^RZ6KrƊv'|s?O ~b8OJ h>!BHy=:(#uVdR}q1+=gs",ш 5S;can벓Fq.Xaf ۙ\!K{N)_z.ZudN5@ \,|9G>3֍]trݗm> z4.=kr=4^7i+OTSc 8z ˎ2M#H15>©Ckښ=O:kx;m4w,~thi72 Eyp'^i6MːZn--[TVA -C|NZ,I$Ϥ!yw)-yD&31mO[[֭ƍDX/[4)Y)W(JIKI&%)~47+)Ϧ!BH#'Y|:)lI{)Hz&?ĦA JyE31(( J$pμ.:wE8|0ǏˋׯqݭQHR.T$R UJZq "DWS1$-ubR^tA&eI6E+'5y$2#fnM7O~իof)[[ʋ;YXPs~cs^ҿ##BK*) ' N9èM͢z%8Iu#!三EڸP|ݲR.vZE/Q;aG'x߻х\Hr^^tMɏ-) )ULuw0Xh)Um>ZJX)ktʳ{Pb^ HMzR-D[ \z~y9幹e>T>U4k)Q$pa΋(*X_xZ[%&{ .< gGٺcKUQ [$e(^g ͭ"7u(Oy'SE2bW0aOLD)WFg/{Q֠ D+x!e^In0!pmJy~>Εnח|M/Bʅðcϐv Cι#둮tӑy1~R=Zv`E-5QϪ-]Өzr1.U}t0o0f>As4͇bM.n0c4ON{S2/cX<]<ʴ:/!fNs|2mthvૃw{ Eʅ P [6#8g呔]صW!z)/R.VB}˯i}?^K^^kΑr5(:_X1{d tgQd鐙+Ң-tDebrxe$fES*}8VW}y3cK)5%HKr0;YСDֺg凐r!BAKǛ۶eOyfGvl k]V )oR~ e2x??''?R)W~z6}oQ Pfi0e+4ba?%Z*8D:+cz1JFNJnJbbˍY2ruNJy r{~MB@ R.;q4 %E,g;t9`N;22P}?X ©咸}}'JM9yqؽd C1pOؕ%!NPvЃh :w }r<P9eE$JH9eDrq!"6aYSdI,@)᝕9_Hr@ !//Bʥ(=79!޸jyR~y;+-@~j? T&SQQ!mංj_]Y{'seKt*D5^3﹄2=}o6%B}ʭ-KĢQ8Zca݃P52m9`-hyH$_\:`!͵~EJsF#SiIr!/IK-P(@RX6}hx|#O"@Hr!ׯs[6uTzdG|Ar@ ZBʅKl̬3Br@ ZBʅ!\ -!Bʅkq­1_$q7ϻÞahՈ!!!Bʋ:)"jl3˾e(r)+D!@ )RHiAa= *+$%)k׮q~ڶȻlscQФ߾e~M^H@ Z:Bʅ )"`EFP (T]=W9e ӡ&r}t=QV.)Ր쭰З{#(n< )oz@ \HyRIyDGV/'J񚤴,ŲY(⹸~ъW.Bch@ HKJ1\HyJRIJ3>re˗\?O?+vRVQF^a%,72Vs0DKdohT1ёObLݵeI^<^̱h'I6Mu{ byƢliSs4Kr\"՝mvxisLwʖQߞ \˳P? ܖ]:w猫!FưX )@ nI#HGʏs3Vt?r֖+V$5)Já<E*b!;h(#Y<5* [AEn>NߕQ( .uۛc?Qy* Mdžu쯒1kIBF:WfyQX]ΦS&9Sc eHQAVWzMC#%.,ryQZqkٳ=(QkPfr|/!r!uvTWi&9&}“,*T*-P]#AU?"w}ɓkTUc4Jq,>~-U ]TVRkrD能sB*牻4)O]Q]=RyIXͧ]-}J-ce {FM`wTWSm!"9sxZ )T$oFI/RSN^-v/YB`\E$˖Nb*MﬤoBzqёDGER]UEyYJE[t k!]ڴX R.䭑r)) RDFb-q߈9cIrf<<gK0d%^n};Y`iՙ-$Z߾ k|k7k:$>z(СC۷OB>}:Qz*ň@)ϒFjKC뷒g4l*N 8"/>9LplM[NXaD?Ǧ 8/B9Lt5vIYg{ھ}zL707lho~ҝ@bc_4e"g ( )/˩E6?I?hG&_L$O.BrGtwYoKe͏@:w~.$'JE~Nt#!m$)t^W H?R:r!J֮]˭[@åqyUÇQZZJyy,ҍD"D4 ..d׭Jr~F[hM.Ys;Yykp7Z>kna5eW {uFҷ56p#"Hy4c帇FCoRiJic3CY^c\Fq#U!ǎ Bʅ`)VϜ9ݡRnn씏sss'((ԗn嚜;2{=۷M873ҬC/ M(BïUO{0bcHCKuWÕVʯ2i["1ijr/+1&P)~TC&gURK5 \ #|}?yL[qmoù:3c=IWg?$Y#c. AR.)R^6J>EmEqi\Ibb`9Ֆ'qa2]+vFUd1xh-K¡ ` {9080t>" [޿ 6ftpÒc1( i#%qzz3Ǣ$I{ foKs \r0VEcW]R.W"5aպ  R͙+&]p'nE ku l]>{GQc:CdaU}wH=#H}7tR[CA^:o BʅGbltiR.msw^y;DI WJy]pz *rC80mlH:û3zB3Kh+eDrqa"!/;3Y^AVWzMC#%.,ryQZ@žXFZ2+kVܔDt>u(O7qB+T8]61vKFtB'C9Ƙ0xBUQZ*U*H5? %!NH[,uTH+Ryvvk^^^4wt5O2mOPxwDI{$?sڠo-Ӎ'C/}mZϪ|g7De,WXArynK+y 5urቾWm'>&Bo_:Ǐ77>,)|)/nRB !!AڛrKq,G7{E]dž؏8A:_1{1( ?ʩpdA^Y랍m$&Mr3rqQܾΕ)-)eTy6\<N65j@ \HrIʤ}_^ʥiruNJyB[p[1)41®x.~C9dTWuk9=&R?kQfl|1妥o >ySǏG~^[M\\,'tmބX R.\HR?|Y)pO;DD U^v6S绯q? ixm=`k7>B^kE{}vN8~~|i9u-W}}'JM9yqؽd @ɲXJS;+s>+@$U5SS&_P9eE$JLK>)#S'u֮^V#]ZH$>Z ] Eʅ'%đ]o)t3)Â`-hy_plO:iu7\jFt(ckWl0E0GJw 3;gڟl/׭M.>;2ʾfm8-ThC̥RY)䙋FXA։nY{c$pb(ͱEI(ӂI)71vːr# '׮H@5y@ HR.… RNRң2uV_a\rA#>&Jѷi@ \Hs=riŅ"u[/SFYN0tyyeE)॥@Hi_r)r*KR"eDk,1D)Mh.R.r!充$ǒU_)ݻ+"D4D @F8R.EJyyY!#r!%9Ksz;J]B_@ )RvoܿɁI eD׶Pz#r!aWRA$ř: w?ߴazƟWy,+\)*D)o@ )RaETt_9R^ Fckr{(PHR*?'IM romdz.ؘa KŠ|2Տa2;eGZOA<vXtٷ[9;׹Ulޥ{5Hm0pmgOTw~֟Vfiۑ~7╧_sU&n?~BNmQjCHsX}8o/AA$%% rp^|ުϥ@$r)4<IwQeGzKXU/Hr4JY_h@[]5e  EAjkioDКCM}yG}DSKowC|2~J5kRPAs+N(('~c>ى_UQ"nk4A)N8FXh%%TUU UlR.%bo, q,%]+Vdz`~KW4g7Dm0jЇ )ʅ'QwRC`wO(e@vUb&o`)qo bAC9`olq 1?x& I, B)RR^P@R\ ёuSw=+ 7wX|ccG"L%GY9uΝ,k"kݳQ״}Z1{jI urz{맊⠽|37]ZaR>u˽" R)SqdY bB.u,9{7}m߿|_a.W/GVv)|}ze iު[@H!oe%PM'P({ZIL`ĖǨ r{~]r4Kc?Ɠ As0<']^,[XR+!zPNuR.V?| ֭cɒ%,Z tR̙_|A4') )oR^ }p Q5TUUS(#v ʽb*5y \C"eKws'wVҷgMZ*]ڗwKh)WUI@ 9e {FM`w:oçxTFeSX+걇eUk,,:4[usa kuK+|ڷ]F?[b?gr|Ku=9X\:Y`iՙWs90FK 6RRn+6m/6s38wœlkUaR3HNXYuaB"~7z^ʍ|mrC[C2]^vNxc6zХkƎˡCP*lڴI5kΝ[c*2y22|{\ R.BMNN)ʲ {TVjj#W(ʩtȻ\[?ִmeFT5e$_\:`a~S3 5g\FٷR*8-Th@ʵ Nu+dan ϡ!J&l9퇳p.+teD;w_'j7R)8ŧCuCC oCEմk6pn ѡ^\X5.=h=}9OvҦnRnb|Gssi_Ưn~k#g"$uʑ~=]Na\W|uhfƏuiMkj;8/Hmk}֟o M δ1*o79fƕ+y2d'N$&&F^ .B.ݐˈ#x䣏*yHKMɓ) )IzDaJ*Tj**(.-Gě"}%w/#zOJpM;ח`(I}\^ά<tt!Yۅ5c1tRz:͐gun,/RS [:w͏r3zM7zPM|m bO:}mJMو~ ʠA7niii5h43j(LEXXm1 HG_]))/|\HyAGO(,VRV()T#M |z53:ժ5mڴVǕ1~3®nRnb|KZLG+]{}{X#{䜑3zM7zMϷRnkS3~cw7MHMو.]ȲH=dm&ɸ$q̟֭'XmÄc)**bQX[-S.){ҭR-d_ɖ$Ε#~]m Mo|ݧ?=CvZAЯt&ڛx/xR>+oRw^y??OH+ wvvUSWQXicG=OEtGf<ёCB#P1 )IN{rNocFs'$<:u]ꗎO\e_)k|{oWF>X7OJr@?pQA_ϏJ`rʯ|@)[Y?S9LKќrʁ 7}M7z4eoV&"_*/#&sʍʥ\g?3O999e„x{{ᘙukV|úu@ \HtbM\Jd~P|~j݆vԬeNߗlڏniש.\L?ќ #i:cFmb|ĊI w "J?g#s [g¾]ucMGoڻ2xF}Fx/h\ 딜{yZDC)V,1z2r90;ˣ(兴x7|4v5G) )pĴ)STWz8 AyDHR]پ mڴi켙A\l`䯯7|)ק 4~\^3Aݬʠ)?r% \*kFlT$U4IT.#zXciݍ_'JQEuUt!@ \Hy^޽z3IhQ<(HU7yYey%JR] #vt 4BOoPr2&z*};:9˜=?Җ]ew_IĢQ8Zca݃ ri RY_릒rD 7( rRnւ2{[X[XrС?I__]GZ^aoZH@ BʅvJGdM?޺ضm&=|miaB[n @ \Hy^n8:}=-Zŋ˻?Ա#)#RV^k!傦.p1N+F# ÄSZR"=B!!A:zE}.H rsKʅD՛ ?G}پ* ý^Ԏl* ˴[yK?'>S~&[kys EH~ -# )7, jdyy?NIy9W!s(*(PR[_W2ɳ~>)d毴nìm-lptϗ6Eh[,1^|._8Znz)Ol>|4o!W.{N \Hy.RJ<3FLʣw 5JbgH1R[iH,<.p5_kP^%%#Qrahd|ܥ$@ate2H}^<ߦtݦf}S9%IyӨ[Y=>q#HBHĤD'|ºuXd Xt)s/S BʅGgV>c䯷(?_^%1/?%ϐrJu_pxAjk5j|fG"E+} 5VR˵J<SH}˵xǩYPV뤶 122^=KKDgx{귭+~,M\)¶qhv>S.@nWS~Ul:a¥W7gV7X;B,[XXti7\f4ٵú%~~Dzdpv uq0=kϾoO'lڴ`fo"4UZRuʌU0ëOoԒWߑŹ5p r{s[=q8?Ga_>tn*NnlW|yVjWSk+:?¦V_`7i#:'C?cs~MUߧuOd'~]˅/5)$Gl'fF|!A;ۮ׎TO<9R~Vz䑍!BʥALxhi)R>ͫ<pB!˷ Ȝ8,33J2);'5j6|[j j{&>Ż#ZJcXްyJVei)W֯/T8KlZkq}{J@cnO'V]x.nԮܙk.7^Zw3g\\m3X^ۍn 5~RNýw6,s3u~%J_V{;aQ[s 5&k_v;Ⲕr+|ƻ'R)ʅ'UwRޘؿ?_ CeРA74k4Yȋ5jNNN˿ ",,6ׅkA{"#"^/ohR.<.*B޼N)+vGA[I+**P6*+#w<ҭɻpF֞^ P2iyEѝ/b=>jBocߒWCBzTiX݀yzs36+,Sܻ\R/ca߆x}vY5gSU!?#KWVs`< jYʄϤ\9yH28B'x'Dr{Wjsv#d5(c팷3V>ܰ/s|>Ğ.V1Mkv#<pf_Ot7ond c^hknmd-n\2%cW>X#+A{floZwi޻@a]ot~_t"˶#=z-ɸ$q̟֭'XmÄcҎ= kx޾ܜr)MIzB+Bz[?_e\RQYYJGH9w%u8*5W9qU_g*R$kXw˸+ |5)j~`~B9|yFW9rk Rq#J-e"L1޷s\^%*a{r{v^n>rsڅ][F#Y)_^ߚFZj3ϱ70ݼʐnk|~}l|v02}3.1 ;<_ǦAFj$)Jyy ;bɥhTCu{{k|޽7 Vl.?L]lǎR.xc_%8R~s՜kwS{iT~i傷i]rNq)?t;{͍ ogX\O=5/O~r~|АxGR)NO\Xcྴ?s=B𹸇Ufrh۴۴CDPsxZre {F%j GeWʥ8{,??OO}_&L|\>f*Y7[I@Hr!= )TWVQq#EڪOC V>ƹ$\V>鮂5qd8s 0F 벫ϩ`w :FEJKN D 3t斳N1Qp(G &Ȭ`o 0'DòJҕRSVߚc4ַUUSdngs()gID=OmAD3X>G/˻2tܞ/iJ_l-[ӮS>Q k!Q]]-\ )!.2谐zR|gpE/*L zf"/?na[1n¸ ȡj)SUE5҇),a j-UUdTsĤ)рyJސ%WjM5ʘiy_WТj)*Us.5e&рV-a4G1[n??QhLPT'3Uc? rBn;sWhZOcrK59goZP es!ץ(3nK{Uq,RNk+ضk){>bvs>ąאQ`8H.6{;$xjm t=/廱Ċ%%YR~Cp"md*2Z { rEQ`+ܠU%]+ _f|+?|}?>r3Q ʻe:T6D j)E2Q\S/fDe&3ZtQ./tbVJ[f< 쬒(fD(O\NKgg" T-:RwLQ$;U(D| U;[L(qt|ZJ[f< ,:}ty:ꤘ(Dj)E(o D(7 E}e٤(DlU;]rQn&\rd9kֳq)Qnx'Pm\E(}q!QL" Td!E(rQn&@i:ꨘ(Dv(]D6Ej:*%-3QjMQ E(QSOFDe&'#Ztdd Q.D9rQ>IG喛(@բ#n+rQn&@M:r2,%-3Qjy/;Y(DxUL\rIQ>ٙ(jIQ.UpPFgg< l%ʻOt~)Q>T-~ܽL(Q~%DyKQ.D95|_HggU[Sj8΢"E WJggU/.n./F(IQHQ><fg)@\<LP9Q~}Qr3QGea~(DyUDt~:a)QCZt(f\_6tI(Dy\r3Q@D(#ΏSٙ(?:EG^]|hC:Q:ץDyv&ʿrQn&\r<8KQ>NG-"ʳ3Qj6L@l<8qu)Qklp(fDL Q(f<D(7Lk<{u!Qx'Pi_w1QJL@զ(fIr3Q\r3Q(|/E(=L\rD(fD L(fD(fD(7'\r\@t(fHr3Q\r3Q(x'E(=L(L(f<(L ߊrQn&@(x'D9rQn&`D(7 E[Qn&@r3Q\r3Q\rxQ~.E(Q.D9߈rQn&[Q.D9rQ~]2Q.7WIx.~; Eyq(e0=u_@]<~1O\3Q.@rD(`D(r]\ E9{&E^ A?/ B:N]=ňxo&ju7hgܮ;6 sah.} Z[Eu>FF>YRͶ|25'ZxI[2B흨g]ym\ m:y" ޮyL{Fԩ:ޕ6qJ BU:B}rvOHm{k ;m@ޡoX: rؼ`!\@M7VonQM[c6[oesfÀhd!7[zVn?ۍz*c/F@6=A[`ofoo&[z|{7jsqnn% DAztzU@DDIq}fRn^|4o?7m0a f OIn7qK &Z4'ӣ=釳Md}®T:3I/Y/g^z\e )h!YܳƊ|l4Xv R5R'FJ%~R橔M&vqՎߴjQwRbg;9{ƹ,|RrD?NkEy4Лh*fogjߡZwJwʃiM?VCvw5<B }'I=: @Oe_ooo+#0-7ua=·W72obIo(ojG y/Sώيdw؉j{W\*~ǻG SU(Φӕr8\)@)W8RJ+(JyxJ)m.i|hdޙ;Z [8?&sьf͔|whrȼk,J,n7}ohLȼ3?a;-`L۫1#ȜܖovJR65e{eo}E EH J/ " `)$d2$^fR&3K&CB_kQX)9E"q9y=|y}{u'2<u9PV\SZ$%ďAN uYN5p]|­btc`) Gdh/]Vgկ7 װ,l?9ڄFJ'7HΞc3r&uZ _y=%E|/s8.ŋW%K_s2&s'u EBG!Xj"a)sf+96ʇkpy>0ٓͿ2 ^zpg#dm`xɇE=h̆t@T틚^@о61]QYD9䝣d|_qdW9AӢs2̽aI] C2]?3=}7RRԨ*;.^so7ܜGP }n E-F;rt>і$|hntY|f|q M<7?g|wj«pNtl,{Pp6 .z-BEyk wYPs o.]E˗y!~U\v9Szٞ=ѻw z!lBJ 'i"Zn ~8%BG} (GDkո|M\>]y(`\orlapOQ#gzo3}-N>-5CѢeX]AcA9f<ѳ)ԢcohBSA,*38hEQͧ Ye9m; .(u9ꑟ)x=8C߀ASѰ1K!+oX8n(a)x G[i:(䱣T49 /fmCu^= @P͸7:[2sl{'ݷ4Q/EH '(Fbb354kx̧pɏB \<[\|P dz-;̇@{q?\p.7 | z1]>q^¨9/r`0|k4;2kQH0vn+:lvht[ϋ쀑xŠP39R Nx'(DiQ)?aO=ߥ+H F :fS"?3zOQrq9ݻCu^wЬQ]R=4K59oeoa0̩EC bm\j\N(ԢxK#Q#  |l_Kw7Vc|(Bv}{Hٞc{ԶǝŌX둽y>} + wAjw-.aՀTl; E>1z&MNϟyX۽f,܄yc@g1(pƔůJQNOƉs q|ឋ3Տ˜#,m '+>9\7AytsQ9SPbڴPʫ бsa^oEu4㊐\e -nY @LORXxLI2# {ƌU<5z~ZQ@";+øYF\(jתӨPW[Çb)c/@T TB%m6K3*#'= i)Iaۉ(!4j@@R{U/Y(EHGqTǛ!0̚YMx5S'Ŀ/s)}ۗaJs߻/B#ccFs\!X[79{iYLM TnUX]gͧk9V݄5x_?s(zm6DY;71!xvlAֱ1; Ejr$+-I!!"9// AqK,*;UXG/DeֱI#{3AsBCjo 5#_J|Z7XKHN]H4~ܤSߐ+jyj O;w@UWMT, p+ &G^j"r z8 uAT֞!֤(9*8>"rZ@)ʽs!Q9*o ǚtPrܵt>,C1:Y}EYH C^FBF1|^iLe;0vHMDa ns2n@՝9(gg䷟A$y_yϥcq0Un<&Rj+w 2;D`v4mvW(.-m 3L~~PG`jQ詉[^Z,ғs`jCZQ*i(2BQ%f٬B( X ȴv9 t&J{j#/E Z#B[9ЊrܭJ#cppkP {$`@6r wCRG97z=1,IjvCbZsN]3QQ[B+&' zy@8?PNWy)!0V#7;sltP`8Vū#Mo&>"5^pDg?̻I ,۱bbB';ywZf"dP M)h$6zE9m<[}:d!- vWBɾ~ X2CpxN̄3m$F fjӱur(p+o2 u8a fX#/NySnÛEX+ #kK c%X>"Js3A|7"&r6M;Eݤ&+=i)IUPyMDB,/EEY ʞ]QPTKcUIC~}\ a&#': !ȆZOkBUP!QfD6ZQUp;? a/=AC>b ߳ M}hmCqxEj6f#s拘SJ\QԵC}[^3uZ xyfb",U≡snwWa UYEֻB0ޒ"uy[r jQn֫&9!I Q^Z rܱ 52/C[,J(ҐS.I#85ŨWä,7j/=# J:9di]$W1o9Hv=Eœ]{p;x J(vCVcLT,Ѭ*WTO'nv>vӠbc"'Wî-D{kQ^Dy'.K!nc8I$)@ǐu4x׿CṕZHI9&S~O?x8&[CJ4gh<Q3^b)V>qŚ6ꏬ´@Bch;%2GlmwgGI  [Y؜Z lzE9OU 4 qTgmQ¬x11ZPc]=e05Wg-ǰ)asp|RӄvhL\!\o? y) $V'i<#^L-MZmsTWxKS A kfͅPP(F6CKe@!*\>^A!ʽsz9<0DuA 'uî.Cuʠ|-{QpdEl-o%߯7zfeHX3 !~7"E0Z640Q~E)ʝV=vD\\D~a۷*φQ?'V!&Vg~tӢD.c) ePJAUW[Akχi8s'EAmNGnTA].@^׬:z/v;<ZNk]~~h;B|/Lw.Q0k"+=׮]ŵ_o 3mSsh/TrX jQp4A0a7i~ue05l,QgtiUEi2rP#7=r%E 3kog=&ݿ?AdZ =Gޣa#ʳ3pyUpaF2^ o (^|vJ0hc|+47qԁ5>2 T9?IK]%5)'('~\dKZf\N;,j$͘}`Cb[Gկ/#6ή+(\8/b+$IyV:iIg }O`45Fnv/jĠ-`q N<6nQRݬÉcTo:B1v1QYD9A!@zr2R`ZpIzǯv i)$FDn 5^:>/Go :Z<ǚՠU#%![;fsr}}JM_owRV[AkXNľ];e۷ADηu1Q~E9U#DE"!㗁.`փo97G"ɓoEf&}/ʽQ3~HYRn 5ܲ3Q~DF?1N0#1qLP)* ȊBWlF>B;O^\Q@sמ(Zҿ<jړ<snr1gQsJjrD{Q.ʗiMY{2|;Z ڑ'Q.Dy3Q^{2|JQ @מ F(?rlr<ܕG\u(rS4Ey5Oӱ\.(ۧ_Zݶloػߨ0:vJz/ZihK-;H*r  J`"TIlDCP/!¿ʕ[ oOfo\fe9y[cc HAeVT,o]yC之o;?RJ)&?+%ěLU܊_q,|ծRSgGS(7o/~RJ) q`?OJ|3& C?{Y+Ttn20ٰ='FGF/zOor 7gyJ)RJA{?HGI\/q&ĝT&PhnU66qiou]f;O8;[.Kjpcllw>)RJ)q$ĕgM܉?q(ťx:(nG([_^2cvUe^6RT4j~k^uۢX⥅޾*{Q:qcɓg:k{nXy}߸RJ)RGI\/q&ĝQ\Oq*^ŭY\z;+,c|^ޜ)XnAAhqŠy3KeцήXJSlZ޴䩳KWAw굃RJ)R>G'q%)9ğ8R|S*nů8Z|VWŠrkr6sR(񹹱ǞG [VtX3dO?*qhRJ)R>G'q%ęxwOGqiGY\oq. ʧ(3Rڲ,.N{ 0_@}mǎ>҈RJ)R>G'q%ęxwOGS] KI9&|Yמ`'gk`v[=O6u?8?8#f!>3y?Wt9#=C 6d2~u/hajs|q8㼏@=10/y8H_wGɞ< Ix[>`{1kB 2G$h8#$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I7+)IENDB`kbibtex-0.8.1/doc/config-saving.png000066400000000000000000001465701331300026200171600ustar00rootroot00000000000000PNG  IHDR[?IDATx !)oUUuہj0Qor%nm?&*BI 9;|pPN 8I!Vx-pVy9»ީ+(Eü?  }1nIZr/>& @޵o ,ƣRdz3KK6SRwI}5JWb|aU`i&ZBq^My1/~hv@ؗ)q0i+A>,?8~#cOƮ= 0o Ox!O3x~u{I 8DAAfED_y/ &4ֺntդ;'=cY߰?yT$78a7ȹ|,BaL\YX 2 TJ)R%H<+%ě(.ŧ`n}Jy4IKqnzZ#U[|RJ)ԋ‘xWKP35w&I)RJ)#$ė8oNC(.ŧ85{ZbՕp _,ٳ7go4O*Ëhr^߅o4>'I)RJ)#$ė8oNC(.ŧ8:)Zaq<%9 >Oò==<%&Wڗw?vջRJ)R ?H<+%ěP7xS+@|93tCf:B鐥ӝL>CI $!,06Khv}.˶ɒ} ԯuuKRvs#׭Y*z뭷={_E]Ÿ9.%3\X0„.F䌙Ɣ)KH.ψ+WsEʏ!vB b♲I}&LZ„ 9B.ɹL1;f0\%SE5nx$|^ g7Ox(|42[oXEr37 bZ *}!QT~8:հ8Zyp㋮}pW^۟z#]Nq%xM^a.~@KKw4@Kꍤj鍤'L.}b@?e ~!CB0DC4"dFF)H`Q`c ӌMs1 ;$}QpL!A=$T+Ydr(?s&04DcTejF&fT#1`Ha0Dn G7D.= ,="tt j|*HttE2#_$^ !:#hb L; ({ 'Kx&| GSx*"XA⥜'פ+]8E٫Y㾿GG_߾޿.XhO8Ύ6r,w3 )!,^øBxX:Y<_*{T"$$`OW3.v?qH;Qڃc.9$wŜsI\.@,̞\Gy1IL%=f ``FHdZhHwt@C"ҠK,ҀhDN3E"Ką1<;E+Yabc)iKx&| GSx~ &l]yRI9'[OΔ\3];-\{ӝhW~<,N/痮G 6D8>|[s#VSsS#9:eeIY6#)/21H9.RK9*17-)r)K,s *AɹyA1uLE\*@T0>ۄȂkBn^%B,r rR0+>sR3! W*ƅ\"n65]1ƥrJyޤΖ\.3ASD=Hj%"n:3.qxJȓ3KLd+䦤\%fɁYrmuU%~w} D;ZJyn@[rS>TV#v4WSd`?tk6/Mx' O[GhW#²"ٵE\EVxc9ъ*㴶4QIqvcΊqtKΓ֜t%,ly1<\R"t0)u!Sr\t(o KT[.)!|fi.+-1%EaBa--)`.^Ep+=L[r?ܩP@Cd}M/[Ko*>#ʂƇu燍 rpʖ+\[2/`Ā-ʚ[/ݸ IsgyMw n 7/˸D])!Be+Β(*gvѻKKoX'|A^\|s:b bKavb\R)OID;mlZyl*}ͧvZz$M ־DKR^[]IU4ߏ̫(/ 5Ud+cr1 3k.ssaLer3-Z l9_?B55 Ǎ 1x%Bc&2&d8|2>B>kV8)GMwMu%(cYr#ҥ[o2΁ 5,9k*3#$ bKaス>]{87_E<&q/=bzziO U1ߔEm^e . *,-&G=љϞR(N!{=Tg;0+NA'ЩJ7j*Hs#YQyp#YLwZL/{+e8˒ů+/>,D9wN{v\ecuñZx'ף !Kvۭp[!R~,VAպ[TC ,9A_OOU'c[ix'3 9hnqu.TsZ<1b&#b.^Ast.uCb!=va_Qx?rD]_XP@zZ`L8ho6ӧ<^DYb:E,HgpܻBNʷ\p DEܘY$˄e܀ qr_e[sitTqW55 955@R/zv!S2o?rpr:ؙ+۳6~E?@зmI\ ,dž[n}1؜SRniTPM򾧃稥K>?])VE9=dhͱtnjik45;գƺjP̀?0MXS}zԸW M` 0Y d1\pJ^b/u/ ů!oxH\zr30f^-uq1(Ø>H35>1C#9i^Ffj± ﯕ0=wϡ>,}|a.{bph]S,f^28f^"~ ^㬌wHKR%)>3%)Rn=jbG8EijyGFF_^zǨ Y3p8{gk felOzr&6 YB-Y)--GG}>Vc_SR^:-;88Hvm9AIʩ砬PdIOy-U"#Zl}23|VPuE C}m%7P[^݌[[)YGVo1נV̭sn[ _ЁPAР򌙓ud2(EdڑaFYk0/ 4LlfR_Pvis`J(1Q# q`["3$m GrY}80~x 9@ʡL9ucTSY9G2:eA.vks -O@6seezq:+l[Z, Εl1ykV}M~E|/9O' QC)F} mMۤfˊ`o6yx>6ؤs1d̚@zg-t)2!D֥"\,U{x +xfY}n>O$Ӂx3v{>UWW!.o|pX ^ĭ͊XƁyO|v=gSK~z&_@<_ZڹvJW~ܳB.(w܁x#b21\^ΒYs?ssnE].RaJ;V$Xljjoo"ӽJvчӧN $\N/ t7i׊qy0Cmxǭ|dgӨA˷YP͋xfxrf%*#rjG\g7~ r8瀟ݡ0s3 "rK]ɘ᳃l31QGK;%r'{>w?R`0H]=tVR jXVa~mztV^rr()9}|<O~1OyךY΁rn^ЭAKryFݔť8S'w$‹^hw6ogf"k봹&kA,3׊2ת.1]BQ"#n4) Z r BZ{/\;츠u!niJSt@fj9\<']3F,Vx)OI&KPn} QS~]y.lXlMN| YCyVMq<& b,ggSI B$%jQ7 2aK;]NPhFcDJPĈ\-o\.E/1"n[bEv"94Zzs9[7oBVK.j\9[^ʼsL-sRcJ)g2r1?^M'vh56:r8S׭TZG,c1O+57WҒx9 {. :0.VI:X"rY7) (w)Ac&QF0,dD.ۼKQ } q[^_"ώKA xUE=zrv3YZ2~!,/e\_QVJGgA2Ʊ8!+=6g4%VHy=>!)}ks#TVPB*#1ihfx8x\,&.{^FzCA 9?g \MItMXAI]QTC GOݘ#e 3ȄZ 6à@!6%nmuGfy-@m9lK3-'.nQ/qehOqM}ōpEĩGM`Siq]n#hS[J 0?X8O.#X(f~F)VރЈ)5y3sA= 4P6XD?O:Hklj"H_.w؏joMFs҃N`4{.Q(0H\]\bD:z @Ýcފz19)UixƏM1.@(Oqos=~ Pj~8X{ݶ>8nO#^Zmtp#WIﰳbXPzy쬷Ͻ~ok}#uop+w.\]p>xt~=ӻo%:+Q(o=#H]|=H@H@HPPX`hmnooH\#\C\ \@\G⑀8xvqT<1\k-|z 67>Fck멸E%T%s잷t5999%ix{Gxbtt999xWgLCZcۂoCnT~O'9=)F::{4s=xzs$썰-IÛM  L'?N9u݄t=IO999KHxfluzxC|znDC~Gr]=!Tǯk0KtRDcz\ ֯4^jht$.ȨJ7lQ< O0euH\l$.T.7^n*&.gK*.k=V];y#rd|=zHPP499!5u\t^mFCBy&4FmF)xoj Ϩ}ܳ(99#Ŝmms͘`ɒsPEA9\*(A1>Zk[jfOVx>) OnG{e-ަ;'}}ݽCs&3_e IQ͸䕇^hbm1B)'!a~Rw-Q6JGD8|Ĕ|9[bJpK.~Nѷ*?:Tʩwvw!&|˳ pO }>f04NMJPі{ q% jC! ه&*T=t*XȷwLw,P;뉼R/gy_O97MlT(\pK.#)cX/^C}7<|#ۗ|~p!mI۶nRHy`@a` $8Í^puaxx Vv2b~+5*ˠuv/ô+ap<b9hhEZ}={.U`9M2rRzm{B]EM P, >M`HLp(dYJA!#z< #bϰ~:TԢ MhTƻՃU5boazZ^Ec[ʩ8sԦMELt4TLƅsn20 3q j?"$~i1xルq N1}o5c3b+jd8QrQRR ?'3 kΗfVN2 ꘳brBQ 1GG 2m\+`00_%s`crg57%C0gjK., pǮxK.TRנC#âU m[lc{RNIs$f()Ɔkݸa=zzz ID' 6- OC=(@ji.BanBvE1y>?AQ4Jr1+'"Lߐ"\Xwdc>1ŞP0(sl$19p2]s#`rSLtӟ8s8Yjn,;~"hIOֺWHOijE!#!()Cꓹ:Q JyZJR0i8+",PBA_x QxK,'S)!/:G8!^_(,DicǤg"}&2z|!5?ԬDx0RcWtyqS> rk|a[)9{OM@2}d#t唝(#aO/>7M؀%~_$!!o2[Ao :[DyBFEM@GV\5VˆwwϧήnttsrID9+gJrd%hiiGzn6'̈GFy!^'Y卢 f%hlmAj},zY.QRޚX:־5 `C9 C)R~3 EA\5V=ed5H䉒+NV}3 &Ao/l IX疂4Rc ܉$H0OWHT'{t1I7bI^ ~B&Bx}yLq؜\N1`yd?+ԹNa5X)œw_(Xjx%-9%i5mxqy~墸x:;Bgb0'2f 'ytKc6/3 y_g n.P\ ŒR lU\ 9#F|SQ+jJfJK{Wk^9C_Ogr*#jDr+cVQ[[h F]K#~1⶧ b"V̫5]Qԉz]z#ltt*#$NGо9 q]:睺SRN\z$'oX'PinD@)Ail1 d&K'h^>ӼMsd3)Me<{'$kV7>&+/K(lr< y*]O 1u4 GcI:9.R>pl#_W0C~gQLdBH926r:JAxd#NmMT1(eƻx:)Iguw:"rFĉ_X닶={Uo*M ,YK/AfIʪR^P^JҖAVF)RNs3%W]瑾77ATv2>4` *7HLC^OA_F E"tl$ndT&v0:--g(/R>`u0du[z(]< y& gLb~!(P*33V-"Mypy=289¶R0tΧ&xr>2Arr4Q3Fҽ^M p5"KTάcu 2/nHIf/#1)لQPM团E 2}DnY͠!ℬjdW1B155S)yo MG}cbsyI, TʅW29UT5e$(OM69KP/ )/bd(00RHKvYCz([^F\@zM}:TttubL *I)Iqm1[WȨodVqf$ck$ T?ߎM$q|s;lu '-:ӱj3rHW }w.97 đ'J~`du\ ed̙9kTP:u*%)RH<yٙc6^AA}$ T 6߃䍌q `E7'?g0H eQQR~␙)t0JJ}mV^##T~*)OFll°xL1m 侯S)R.xAwo7'b<<,+b_,pZ^J(ݨeFKq#=t}áa==6"=iut4Tՠ/pss˗/9fH߀ٲB-[WʩS)ww• [6&܌93O~9^I& =F4Y`9MӳCJSp <>v'[;@)fMsiHt_)d-9x! ϐ+I{n_ -Ȫ1ۚgΆD(Z⏳a'] 8P(][;# *#^2ƧS+&k@%B8 SA[]iPRP`V/'Oppp954vsgbr*T;łRX76.’K0|xNO%Yp;LLwMI>ErX`b7& n{a7MH7نK_!l)}@7PT`wa_hA3xnj>+V5av澜'Bg Um ݵfTH+ 9 pد ]h.#5<%{EX)sg1i()CmTF]]c<|y}ܹs7nիWqi` d'I3OQɉJ9a|f '0}f0pP{xyRoL#M /8nf;akCR4!ytF}.]Zl b [40ĭEG X#U˺!-̇i3]M -<bd74ƒSPP(ϞƯ7cpa:t9޿?7@FOyrR.a\̜o&=PtO<_8x UUUO%Z)w:4(+'"_0C>ʋ>IpO5֛`oSq`F6[UFZ+R {~}. !Q&n~dG[;&Seb|+ ?SLP(Tʩu)%UŰ{nq$_Xl؈zRW=(|pۄ 5.1̰̤Ø# +t<]c[w|[}z sz4R"5 Y+坅7+ a͠ABP(*TG?hnkFE]}@njhoo'ObaJm-W"ltt*#ڄOU '[,]f x< jT0a1Ѕ30mTuy.hF#y*~U̞r#h)G xMR6IxvpOyS*w,wR)RNP(X)oS)'H77+Cbƣx===hhEeC%އuuƠ)#_XN{ i8GrR2P\~h zP:lKeCi0Q6l% .{AOa"d`3ZzI&λfBSN Ӧc+'T$W5T.")H BP~hȓ꩔S),^v'_DěYohi@mS ۛ%N׏.?['2T) BRN'r_}5,Hݯ=awBP(Tʩ K)iX ABP(o r*TiP)P( J9r*彽`ū $ 85'\з T) BRNnף)H7oq%~ZTيРABP(*TG^|3I0{YhC{K-r2s3H 5[8m GGsj_8.CHRNP( r*TZ~,)h@7;:y~ ܴCsmpt Zʓ&a"~%]wt!b-wS#AXʩS( BJyNr3%}|Iywo7ʺʐRq|O+xy:Eee-*J&t7[7' KevF߇mNR_8_L9so.T3) B)Bc}hH9,dKxrת~ot 7_ ?o;lFOwx<&#fr|(-E[{;)A/bހ]:_To"X[z i8`b[苎6Gz+KJSW e](pJgp}vEwDWlw"ydHz`g*致S3NLrnq3+P5lM{C]l&tcr BPS)Ǒ}AUK 1ut5!hB@::Q~HIx-u "ekdI04 :t lGpU+ʞ΁PJ}>.,0L_AJybss,VN&LߐӞ=n7qllLR@O- %+tn R~r(s@>RN|KyrY&\s"߿g>D$z+Е/_ mДr\]C) O{[D~gKRWt4%7xKB*clt!]+i8dl{wC.  Z]Jy"% a?S(F?CinjBsA*Tǩ7悃\'ΨooCfz:;AK *>8 ыY[ah@CQ4>, ݌#F!{^7=S.i]SYF4W oP$4B29nN.=C{'睺S&u{5=B s2ӆqZ@fh-D6Umo&ָM8x6kՂc0J9BूMEOw7Z[ZC!y F~)~~s^$RSQRR"(EWRԾ rȍ? 455 c(VjPbSG^Sے0 XY""I]^ޔ a2 Ҳ0cyˊyXteK5E ǰT_R1Ygv_ڤt5vBvˀ1*qc (BNJqٯm?mA 6U,g*хQ)JLT҄B)")҄zxr*T{@qq A?4(?0Q#] Gii)hРR>J$<T&`kHb׵E{r,cQgg'|ɏRNyٙHq'$zt0oootjP|$e_4'HxO =VBEFS`U/γOR,; q-Y?ؙgg>R 0&DdkǞg W/V )勥>v6׹g3SXpsN>s?הL4Q)R.A$ލ3u+2۶!FOvӧp O@DDqP[[.1[[hzRCꛝ0ӘO!)% I.{)'eڳ#)GgCBRŷe!mRv9YYZOjsx\*@AY <@{~HūK`>M SLPVK89.Z)P֘ W^\ G}Q#iJ%R/?/Ƶ a yh[m]S9v̄ զcX4w2^j ҸYʩS)RεG*.DѣG؁ׯpDFF!33\. PWWnРդ<=kcIy&!͗1"G %yGd29>hdIZ7{8 +*W g9ڊP*\ /d_\8 Pf`21%׭iSayF<ľe*fndXo.ErkgVDb6FqCdBM4X> 9S_o3Ä/ *Xu5IG 5UB`;i )8|1Wh{#许М2T MGM)6ޒO+ƇX<{%CŌ;YZT *h)hbW"J蛟AJuM@AyJRqt{/~Ũ,BЙq$2{4Ȫa";hj 55)ɉPǪmS)1<7;V2Ɲ H#;_ST߮"w#(_&X./2,Ȫ`ʪs`E,n R L@d/-k8eTH>鸒TY9;adL77E^n69,Cud$&pmB+J9rɢNB@@2dfe hmmed1 _U9ϱP{Nj(O6 L KXlo@n4-q/ǔe>uKpl=9<1\DA_q;˔ gړN,oSա\V3o7Ϫ]OzQL7)O> kMxKHo&X( YqX+97 pj0`#qs$A!&;-CCR^]AHtÿ L8 To{zvdڱ`2T_|KZ}'AFgEz}ۋ{͘>>PBy6PVG`?kkmS)R#?xY u<PRRҥKqi"!!<$zt7 8|7\#2̖1ǒ"6҅$HIbPR.u|y)<= OcHdf_':Sm `7yd&Ji)s.>{$h#*Ab#˅{cz..рH˳t09 _zӣt6lݑ_t KDCc3D)aK>#,8װ ˷|(/ぅ:s3\q4.P|E~nGDt~ 88&e0.C^?ny!x{aIҘc-'JKD_L UͰiEp㉠GJ'u? '+gqq1/Tʩ8R^?| MMM"&X[:. v{݋ΚL (d-xl`/| FC# P1XSėHHǦR|/)'eJBZz*NUQ wx Q!%P!olǛ׮A>'~RNGr"---9#r2Z),^)5[&"}] Y_)[Xڅ! a͟{B4Q+:r Ϝɡdd)\OS)<jۺQ_+Йƣ;pZPхrhAVYo{z=AJ5/O=-oG0Z{  jEUFn# @S*w,w~dl7CNzE)O=b5E"H*1r KELd8^=wqc?99 U1#TGEs2ΓE\/ 4]3)'iӱYWzPc*hzIx DZ J'brtU"Q -_!zA 6U,)3_ A)kR+Lde<)L6uFVK/0{|Hr KERB<‚sC!y zrS)pssc'Wam~mRNP2ӸD~r(s@*TP)wuurR>) -9xF&hCP(*u5Tʩ! nJ2P_ʡ H}ҎQ(*?jBSN+htvw7b ͥqp>y&hCkq@fdm1LƣWЏDlubsjDбv@q|$v?شpF䣦 ]M:m MVd.Q '>ABs\Yxz=>CP_TW}6{8H{A_ J92H-h+)`oCQބn L7NEװ5n +8uACH,}[;ekdՕ<Vt'R8lj`~P)'+&MiiYLV5{p# h L %<9^<|@w-D<'ch|1%ipgTW~L^ltvt: K9d!*1|gD{""]#+Hy,.@D=|}8.$FC# P1XS_9A7~᣼$:×r0X?ݨ= &?a #+ z|AP)祎Ο'зp:fq=19˜ia`9zq/{XjvX9a8QֆCRZ\6s('[7'|P(#R^Wb8OQ5 Lz~FGUX@z+~OJD`9Ggkh%)_l s`΃_y(ohGWSڤr> '" λ\rSe!'? Wq)`]k6q2qo|O>V1;=6!,:kq#+ky1^8aEW5&8RO*fv )q;HF.6$ʪxpH^  JҐWĜ9rR\X#(Zb/<&̱|tss%vĽIÖʏb(/æ !47Ciixr J9q!=@ssjPQQ%%]'M: ՁP\ ˓ihThË^#h?AhO;_R1/:/WtMD95B{'WiNM8/qN& 5PuϱbsA\b"3,{x<{9^ 8P Fݐ^Y닠!wc|I#O{.Y"1KO?~(˱#!PGNN*?P)PF*T:c#[k> r=ņ"gZS2i gQ.hۂ\XmY)JtA]t!G-_!z6we)&@J ̒0ع.TxR}EJMd9}fj:y8&*WpHFcϐRN~J'.CSO/OYPmܱ%^߰6܈7$}1<߂Zj+_UC70ָ=Ɉ õ|'V}~y; ף1wS>sԧcpq~bsr ×LsH#wd%ED?$穔S( r*i9Q[߄ֶw AZ)>+vB (g(-C!3={ʹxX#㊭KMRR>W ms%yA!bW|ݡ&c,]OeK.y=<#Ϗz-=`O2\po̘so@EQ95jy7r Jy-_kCjN\$Dk 4~=;.bV|wYbP>fȕyK9C6`H"¯̇i+M,ްWʏHR.˚Ixm:Dr=#fj Z-k< WaNEGJ&DR.>?[y%R`#3b iS^!M$-)P(TʩT!ejJ|P֖U+у}JRO9CFCӡowMG};<:݆y,Fж=ƐŻOB)'+f`| TT1gnx'ّiY,{~H*L@l<vPE *X+$Ot'~ RhiMJ(-ՆaO3-1O_<1j9qO_s&wa"'Ictf5 I'|I ~\ļept3bҥhhD渱M]hiF[G7:z i;(Y'y'%J] "-= Oy#4<>& ϜSdfdUfdҎBJAĔwcbduk֢?}x@MCr J9FHpRRя>/]ڦ6 @KЊ|kFEMKڐɌ-ᵋ (/Xn UiM 3029ǜsRd:Zw2ֲ=yyM߂u Iñͳ EUK,:xƚD9a[@o&#i(+,I;Kv0]niv3FCNA[#kljR; ˙¾[a9+ \W ,얯$ %=5Pz>BRN8e~tunJ*pgǾ8ykH]҆MN[i⯗p_<- lud5]z..τΪg`t#,?S ;;\amikhZeY;Og9]i q/>I8\ʂ?3һpH䏗U!#r< 6Agal~ 3Ǚfe})O´%}~%Ëi[{La@ۓHC}#'5_T.i_cG,=hBP(Tkƶ+gNڴɸp?"mhkja|@J*Lȭ@Rn9sʑ̇%mH[qx?@] J:0[}bEI85\h-ë<~Y^9..5xs0C{!qk8,#:pg$aD 5Ҟ59 o5v/7rA \^g s<<&8pS3|k06ڏ{6] adSδWsf-Z4vBP(*TʻaZLqz kOGn[?o3WHvMB*N 5xI5m,c) -IHUrJaGcKq")a :c#0DžIn 63y{r-ԵZ[[b MW& xcL) BRNг ϟGKK˰-i3sD6$r\JsB$Qb\o`IĎ_Uat6 wXCsY0]a&Α1 =Uu話0I}6?S1?67K׳p~t sƹC&b ~y}00GE^%9(}k>Sqץ] pbVvc.Qhӂ8871Wyނ;IJ9BP(TʩIL㒿To8_E]ҚQVT óg`l`lOqss A 4 mH[qe,eeىSԂ1S;a I2PҚA_c!N HL mi¥Dk:ׂq9Iعn&IC~tszZp&؜$/!Ǔ9{/& {ʕskf?(S _쇾#iXb Л*Yy mx MIؽqesӍp)qxp &BZ}9fLlrrP( CEMU(Tʟr.4Tՠ +G}1Sw%'i;x{zFq!Sbas( 8_E) B%'"%! Q_ iORN\lNF1XnC>!$/ԂƖX8Jt0LR~4{ɍW=A+ BN㦢m mmlh'ƔS)SRӌ[pHhźdc޽ؿ?7ĄE%vJ̗诺#H%"&|)?s-NDll(J9B!_]ܿǏ O??q]<QC$%ըŐ?/JywCĜSx5S(0w0P(?ᡡxp1ab 0ߜYC9c6I x_J JmM;J9/)IÒoK4aAc8A@ 7r b" \GGFS77hokNJ Aso9߸"imm%GtfRQSqJyZJdS)'=0**VRq rrHr?Q1Ws&G^'|i%L'AZyS/+%*IYi)9qx|ˇR/3456u 5iL];xoAK=J5X<6~VoLduSm> ״F GJ х~GHG*fr7=Y# ҷ|~bR), p>gfB^Jh^`ЀFϡ-GбNVyO'*2`fZ_"-\ehhě3GkR>\kzs,`<X/?bx۰_duIU< 0Ƀ0[K r0[3oE sϒrߛӝ! Z ׂAĽ=Xb4Jғe^,O,T9˫zy% '[NTL_yox_8c~>V}y[䚆9F.o4cPsCU,B/ͅCcswJB\K n\wPW hDCCHY?5xxiGkkؒr*K!HK:F;:v-gDKs3Anɥ\5[&Q؅2y_/Xѱcićyo ʼnUԅgmϹ2[BiTtmaz^SG0V{1N,Tȩ;Ih }q+l bܙr-K<Vd!+y hOSF_L??3q}`zX>k5j֚JgQa>2̌4dKEjJS})'IN&wԤJy7G[b~R>lDI9 x@hoiA֭(TP@@S0}a淊ߚREz(v8p3a"bA 6;KgkXVaM {C]l&t__5M-qc<5\5x䵚nv e&f y%)'/>6ds\p6`S8e.1.GLOԧʳ> _.qI!xHn#50_ \+/Oc &AEgGrpP?!ll T&@f r-V!]&$9L{1 ma2_sN#3HCkܑkpBly$@ rΞ97C'ADܜ,pbHDI2J9Pʉ>mhS=r6nDE0W%+*s.p%])'ɍ,p=*wU({:FCQ%yb׉hHvıa2U*KqʷS_8آoʑK "*!B(Ey M,)!vXp^S(Ky^vSfE<9)rO BpP;L-'UTʩDWvvv) M񨨮͛xdl**pq9~~ Rޅ20XI7%7xQ%3M`3y_gHoeiCia ,adKrP)Wtb98M((S98i c.tWc%Ⴕ65"~߆ 1! Ah+Mp Ebs[aO87m&hx1x7cHcD}ts$@VI)1W)AWXǽbDeAlYzt^Y}Q) r~4gΎKv_?AE{IcCʩS)o'RсN>5Ρ.%'L H|!zzzFO{1 awcL\Ik+=5٬ +mDsU"] 59JBsf1٫]ՎDfOT4@S*w,[e9+Vd5[}߂zқ)JR~'HǸp H9?{xdTʩB}mmA"7;W\AWWhc<>|K9gxT%GߗBF/+gpd Ym@=348=cI9?wvb":J=OwDMM5#x1G NO#CP[] ח/HݣTʩI/ Ghh($&&2OcAclI9BD"*4q\'0B.P8?y O>H3ǏH_ؑr*I&q$/xRNrΈP( %%!aApKp/'H#΍xdNJQr*[9C!%JȥL"/)ዾTi+圸@PBP__ZVW~?`;E!ﰜ, ɤΰڍ롌P_WGz򒨔S)AJ9%l4FsHƛW/сB |`3 ~̒eb3dו(1r=qEG{;sJA *T~Ť |&@FFVkqu^':Ϟ>A[[+V~Pgo1I"yeFrP),ӠAf'E92T)CHyk+> d7NE~$ei+`;/"Mdcye.8 ҐG^,~Lr^BYPݮ8 /49+z%+B#Xe eiLѝ]BP'ᵒqʙ-yhYn\T 8',7X'nɀkF9x\;ERgвDNN<'T9HJ r4Iy\߽B {(Qۘ5.̹hDB]~dea4'F G{6MvDt<D?;; u,> 1qYku#E$߯4X; A(ىņS$= *3爉g]_+14ơq XL5yOs6xT,4LԫP$㍻d,bas^9l}EN}v5I|k̠!/ X/ 11#e%B<@g.|@:K/! 5E>TQ )twB63|b?sHX;o#G!+e9x}p:ּBV1e91'?~z(o5VosEO{][X/ܶ߃Vk%HCkUscyBN#XF<`1J1[xhk(haŲ%6),ȏ穀XMg]J>*4hrB k8~:Ncs;E'Xf'AXd-v@xi]КkGP}[6HiFrB^+MQG#N.PѶ%uÝNKAdtܶ:}ap]Y|  8<]ˌ' '7 ~x~M ><>Y uOEa,/nΣ⸩6= AW AOl>axEvU@8pn dYH}ILw,О LXHNv|tnSa9< Ru|5&;1uN0XKh3s>K_@XbJYHtd\xT sYV^E0x+H aRSq116Y&H2Rafl)nC'~nKK\})AJ9rfOEsؿ &):f믄k88ۈV7ɿBGG"9L){23o\cӥ0]x1~9KK.ќǶX4xjf]:nc^b1 'X뭆+G|{vNϚ(/ y {=ϱY=LI.EBVX;oq_Vwly[l0 2R>*81#iCƐf_(v ҹ)7g6OmƄ?y)INʩӠAGЛqbȹhD<=P>!R)Ge"J0h"Hƌ 9Z}Hضe=n3"p:ogl4A1lU& 6pjBl<1*sF]ٸw!}w|HyIAOBcdaFd?K-g#ay?~m|@a~𯛌#jLv>cvLib1YxƺNIrErtsމ9FF>9=?|!dqrt$_3X1!h44ԏ/)RNr*Beӿ66]~$RhN RN~zbA)ԜA1•gTJ9kp Zx~9O΁%G⺕6Nnƌ9W;ĒJD;J4pbuB&SC1t.r^ref! ,9aI!)nۂw$vn?dq &|)#m%VָC'+gb lH!#ʏ8yoFϝ9jtʏ'dϠ{G RC!>B?'E- w+. k"#WiB^M(w0{ʙ!}{?;?d {GDˢ*~H=\M/iK/<p0 $0glx^#>&aH`fP o?~wSLƌ3^H`àsf[`'̘!no6,? q%`;F>!pݬ E*̯0{EgGf Iy'(ρ{Jy~ҐWԄeO`" C=R;@W 1E{6>KMү`Lm܁XYJP}LCN B` I"vA.3W|^L<[m- xTW'G~^l_IRN *Tʅ{'@z<4͗ij`$ 6fRdh9r-a,ye}8숨*v !_=G#Q1%O9)T3ᝋ`&xɌ5')Px^ނzdf8{!AuUv%mu $n;`DV#:O,1o'9'{ҷkIC^wE^>I/pv &Aqm3 I&y_ 1Ō?}>fr Ug,H9ݾ2ZR/ H*4hrre(!) VcRG ndEYY٧?FQF ) i驰;ㇴq?0%>RN)AJ9l[Ǐ,`: {gՕ?j\@&.Ѐ"FEEGfLF$*$$㘸h2.-KȂi/hLM2QD8h2IiHnsAl߷)iKNíY,g=R]Ⱑ2.)hE Di)O~y`\>rW/aRNi2;l|駸v*!g|ܬ,?>yTx#B~C)g5)BAÊjtn&vF b}HJ9QC)'bn3P{B< WC).:~B)7 ̻!ÆA7G~~yRN)\hvjR0rOB!R0BR~SL6QrB!Dx}rJy;a(B$rSl-3R4B7R0@BR.x_/ra(x' !r^HK9SLxPʙB)w}BkpG;<*,),}RG?@ᑔrJ9PBLu58z \.'>o%bGBc}CWB(r0 ;f޼aO?&I*7W^'!rJ(yc_* C)[À8R" aF7n`% B]mRNR겣7[Ja(Wb:RN(mrJ(bӎf[PFEmMz γbIܓɯI8X%mCCG΃cq")vJLB, R>,L?>fk2a͔8ml c(7wIH/4]bFQ?b̤ܷ6_]m 2ĹvMcd-V{/^B 4^7G a]. 8e:Z%#j% }+R5řr쵽Ly4)O&nKJsq֐hl8X M:d>魇͈q^LyA};IHٚɪ^gst+]2$Rf/>ƎÝ۸+J:bH"SAgrt#֭[_˃Pʭ-P).UJ9#NO l껥7FQ^.]7- ;o _v8gH!nB)[ZEURn$XcU%FnW<[\ߔ#îqqбK-_ 6!=ĶI^A! )]w(n}4UO?\{~cQfxS=gD(or3Q^ {Q.Dyg E(Q.'2ѳQn&GebQ9ELjL'[g<$kp(x"(v&ʋ@\O(Lw(_rQn9L(UDH$[gpI༊(墼9l8H&g<$kpVD(7M\r\rD\G#AQ: c(ˈ2JD@Oe(OӲLDyITr3QD(7y@?D(](Q.W壈L3E?k(wE%D5h:ay+ʻGm< $(&Or\MQ.D9rQ<,${!ʭu<$k0L Dy(G'2Q~0k$k0+7\O(7L Q~+E(o\ ʯEy(olEx-ʭm<$k0-6:zL[DrQn&ʷ D(7 E(7Ս(f|[@r3Q\r3Q@ Q.m'@Ս(7 E(L(L(fD(_r3QLorQn&@rQn&kQ.D6(fD(fD(7 E(7Q~%E(QQfD(7[\rJrL(L(fv2\ E(n(f:L(|oQ;rQ7__oB=4w?%<q(q~u~^]~,ޟuW Ey^ 5whQ.@m@rD(+Q.|vl+3@zжiq@QAA;sT6礎+/\ֿ W`Հ[tV-y1pV"V9 94B|t`ᾕUj.k'=Zwk})];;(d#۲' ;v+.v6m`Clg6.[>*kAv3*{F9m{]vWAZsBv#!l ̣d@ù`zy|h@5&OJQ`l:~3`~ۛ3` ;*M'>} ah?iFoEo.+4v-CAEL/lh&]7 I;q<$L;uB#r l>'y,4Ɠ'-~'nG[ۥ;ZOxtt qyp;a~K}ŭ->%n6n{ mzC+5=".fkw`nP*o%@A#rFWea(TP֚!b?qLkto9gw~=z@)_j)(N)WPʕr+RRR!S7Y'^4"};-`֌<~6~ěMzosT{?0kો,=?>sTD^i|I|RUW/yxK[_\зVeBȾKEeAD\ad!{&I&2de&$$D.iG|_=:6W|9>s_ܞku7O*`%yKĉ5򨈺+>DG9\w&\e[CTC՝wRyw>UWTwQrq(+<(\ܹsbXь7i׀ɔc`3>J?"ңy}9ٟqTcMb}F***&6nKs ͉_!=s=NLnW 2o{w'쳼kMsa%O)1]"gZ^E*!?7}$PE1~!Ϟ=+9駟5!srVnу={3z5d}WM{LqEYQ.O򳯯@9c=GxfN()c_ܾ^G A~3c%EVbG>JSc&ڵ}zsh 9ZhyGFsnOZGʮc8T*^nAR4ExWC9i: '-=S !n4YMuF7Sֻ'i|j %*+}2ֱ`PSxrmk@UwqQ~a)Z\5/;Sd[CUx.^{+)ʧ}g?kBg3=zE~H#Mrr^ZDXyUfJJBx/Ğ:?(JDt9պGpm 'ୢ8~5컉}_N atq7h3G5oL XCh"T[Yv+c1[,ޚY%6\ػE_KSGvsF2~m64X#tz=VuWsD|lud;zӧ`~` b j&"=ѳAζg7ã}G=JJ#-eQ~q'湜W]!y )عjRwq1P# Sa͓a)zsDVa5UQQ5rl޾^MvKyjO ~y[mhgD3#ыF񓉙3WrƏ*/m_Z(ӳs62S;= {vTSfn5SS]ɾWvKvO%܂\CFT %z2SINLB_P'$WvZ -alB vXUy59if0>Nh@R-}z4 =56,fJ׳Qi<>5=o` _'p;0VECrUF)Ĝ2mq2Ra779}R,mܾLMj )R~,lUJ\M7e2 i"P)>>B=w X:lS*h/_ /(Qyy x]Cum#n❒q8am%٣*r7L$:v%zV5UQQĬl~i/CcB{t"7 neиE,ޔfMoq= 8tÿ~`} 1P ؽAFޫ4OĄ(o)s`::-iOk+5U+ 捘k*)HK$(#+- g$; })vg UdtE&dZlnT2.|.]}ꕮ( Шa5bäyxǏv_q}n$&}yΛ@^O = Qbuln7a Pv$fđ_SFT|Ow*hQv;# R$'[p^-Wڼ]qKi_9旮ډ|deLgrr_~g@y牑citrx4bq8*9{xׅwGk\dxO5,p] A^^VB^,m,^k YID*}J*f˗k̅4XV9h S:mr*pWYQV5~T믤G?Q߻,[78˺g)*k$[43V''Bh/mblp9wFUwqQO4?5mm#+*8Gm fR 7N"y`йiLlwGeca]Q.֡3؊ibs, Ÿiyya}_!Lݐw<493Fza/ ,y4%F> )0ENEZqTo#w1jSiK%^pxr=ͺ)J97D_;>UQQ:o%ͬ5I<[JenFf'g9L\z1 ϭrU]Rl{/{ȾU$$>{+ H|r$?5{wB綦2ޓa҃x%DW<^ 5v/gZt{lOEŲu#Ɖ`m Xn}s>_k'1ma3cس##r &U >[iQ.)pW詢əGMas2=7]V"Ozt#f:z#Q} QVEE%bFp%5巬MDVJ*ed(NNL$3B_C܎ 4Yԉ៹:#[ݍWRr{+rO(] Ob՗SĴ*k$r0%<)~K؀^=cDV_;_5J8b1zwm$E*_c.Cxo+.[m*6^C]4:K0\ԿKmUTT"?k;m!ѳrKh$v9!-ʝoWv_qa(-sF_,tyGVݳxPtӕAnr ݯC?媟`ŕ"FUuE(o"=%O?=ϧ??$su\oQ6FC\*ҢkS8"#D_S{rp]<]&?G>(Q$ֈ+VEE%F>I4+qn?$/u&b\%)9c4x~歭$~ 6^ ݯgS>¦"u޺J\L Q&!Sh;ud:BPiiΛ'+#]AGz"Q[YŗVn U{zUI7M(WE%'y9qKSqqJ( /,!!R (̠C, Ĕ!HB>$&ck54cT !)?~3B9'-/΍~w8`CYcҞ~ 1si󳿻r ϓ6;MQN!4Mwu歹k;rcl5~cUiNN_y@whޚƎ-gp é>4@߸|>QNzмYlQN߉rcrv(WO|a&z$F|"Nu\"N;dYYq]ꊞ7zR]Tg7՝Ouz4Sg-DQ*ss ֋ͅťk\XQ~*]Y^{#U!0ueR}To;Ft(WϮrEz}eGOl?xLQً%U5յ{k\{sNޑEFwx;wWq&28-LE0eR^%-`Q.5Vc_VE]s;'vsI~3}xWK7q'ġx_QgS(אָ L;KW2cՕlF~nV\ܾ?Dޣ*?^WgRJ)~đxWK7q'ġxFWpk \:C(;(P{8?KCoW{&oW7W9x8œOP}/ϕRJ) ?H<+%ěP9u/yR[ K =mt$L{fÕ5*WZϭ{»-m>I)RJ)#$ė8oNCSrWq4ٞDan(OGr>D 7^;.W |R>~ zPx$}RJ)R ?H<+wOGSrjӆ8ȓrw<7p.|Â햧 c5?0]̌c쥕u|RJ)8OJ|3 Q%ǩxՙƔr,̳ÍVg`*K\80j8LRJ)8OJ|3!$4Mk+.' r'h@?)RJ)'q%4Ni ǥDN]y[|9y*1i<,Drp/RJ)RҌiǟ8{mA 8쎙obIENDB`kbibtex-0.8.1/doc/config-user-interface.png000066400000000000000000001350761331300026200206040ustar00rootroot00000000000000PNG  IHDR[IDATxA iKmaޚڪ8צ!aCȁ$HQ4thNQ.B/pw\eށ4}2YzH'@=R =!xp;??8O">#+yAO?TB(Od?OyB<M[dyt܍h+ ьD#8OytCKŹ)1-ңq?5 c"|! \(Fa-imisgw<.oT_Z[{<6'+m2ƸEx&)- C"0 kIu"ݍsOJ 򴭩1n!nN/|yfLxB|t\TBTW/ՙOuzԦ棇t\7q0SZv.5[su`HR}ToZCݩ{( rIA7q\xv):z3[IՑIuRiqT<>Q>S 鸞_^Ȕ76ì{'^P?#ՓJ:ST<.~Zb_Y?u?t FT{0›z`a:8 IՑIuRTw?աh۟?,qk,c;%wVq\=zJгlus[ާ:`Q~4=8[>:/v? $~TG'ՕKuzSݩTG0W[-5G7%UW-uk3n2aoΊ;eiɳb QTW/ՙMu\]>UWխ⛖{|䶶j~ClA>t)^N^qqnͫwIՑIuRTw?աQuT]cL2_\LmmEzՒ} WV:0_TNk?kol?P?#ՓJ:STCգRD1_b(W]͖n#<my{gEs{dTf\G8'h,^u׼k'N8qĉ'N8H$~ τo;P(~ OULm҉ETۥ+J-yH] uM::USn:UݠKޞnMz{K}}ԯIQ@  A0xs 9I3rş0i ih'1KXE"N2y9ϠiKX4Ec@fp4 ( !@?}zA&>~}vw'Kx&| GSx*|N,\ KK9[Ot]Q+]D͸>l(M.7Lvcq)8ԀGiYN; b"˿~/^ 6 |/tNK;@"+@ < ]xu|1\,֣3||! 7nqfO, KwH ݠ{LRjL[ HV#rrN 6UU:1fy9gV%,ln1r1a9/P$b#bĺDž2!ƅ|fɛ$i.y9aBa˵g0ۣ+vnN6tVxe\R)%-8E'{Ы;WтǕ8Z2+3:f=ag)+#glDkkˣ_2IYsܸt$t&~}@ލYQqe\,oՐc! ygɝ dg2r:9sI/qLV%>1؎HbgfZx]ոǎKeR>(f{#\FKmWLlidgtDzY4e+t8/M(TZRD]]8@|:[V-2KxskAYs̜Y.t4iTVZ%CEE [ƈ6x%D3e8~2>B>^Vx)GMwYi1EчPqa!=oˌsdl0K벒bK|cbUWiņc"ΡO>o³c+R>rK|Ꭿh7٭_Y7_+^>n[Wzۅ]YDdonsv@i'oKz=nYNGMR/c7(9˹qAK8!Dm>"?5~[ /E\\:eʛ:Be+ȒN;9^ܔ}W8HO;l#K.9ĆHchpJeŅ a+LAWה5Wc"J5X{s[l ~D b/q)wرp,~֥л{3[>|\"=SyH5q6jq9UF[-ݽK>9lx=νwwxͽ?|)>^yzD-] =v͘$R]m-[=DHy\ԥdA-;<]>*wӱ<ڞw֞Nˎ$?m!M +䠶RS~"lUOly 7o]?R]u%vظGḾ5b99^91I΁N9 zLA7.:EuH,2u4GawtYt%gNѣӦAt\ɺ ~9U_SesfϦ%Q 뜲)Lst-+ +:ܸ'@,d$ze\,@,:[*{!wn}m V9&q;mٔsUl5ժBl5UT&63N>5*$=o4#,KͺR ?+8>Ȃ~W+"0\Xt|Ec8"3<..|dQ&WҎյI饳:m+=锐~yP"}q,k&5UCv쳺Ζ2 WSY&5j+ `l;0X `]qshDXbRWAJ! (sk9XK\@7{ 3 ,@"d)OQyY+:;;12<`FINRMRKҩ[u%&G2JhIJ74wIݓBg2J*ˋyU%X9աEu薊x;E AzA:E}gИ&ߐ2e\}$( 0/ (4kߢ_yn]wݖ4'70$`G0(80A-qEE5 >z4|e92U#az*+#Gr}{2in.v}mI>FZ.pN+[̶gs%[mDOs55p8;zc[/q)/UPFUU:._.:]K ҩ{[iDtj%IygH)j#:؉N- xAN۴a=acĆbϚseAs@ H .uCn;q[x7LR\|&hc#QO䬴ckl11fy㱤E\sn Qt`\Œnu]u;E@(G@D tXph7pkYqdN-&ЪKUcŲeF("6fҺ}}\w%wBW23Rr6-Åit$.c}{7U++irNjg͍D_΍gyt3%@|u]~1} D^ЧI@˷qX Qq^ƭώ @ xIQ8W5ob?/C8P_TOB4c9qBn+Y3`ǥ<h ДMˊ(L6eeJ}ZxC4}9B?c ^ zS=:{nKgp^Qd[">l kV/qЦWoOqEE}pbC永$DMw~^ʤ:[Z(; @𐆺*/)l<-?b\$:dAl<.1O˹ۈ?{w۸DQx[ Ʀ%?L9e5yQgR*Vq'HQ;w7oo&|H# e>c<W ֕D RoDy|['#s t:f.>s!99 w㚃[A7YA\`\@\`Dy{G/vջ%~բޱv~Ҍo`OuQHz;eo޾vڿs ~#ov+w.T]p>xpTkϺ7_~abWg=ky$q.puK  rsssK;C[<Q68x$ 0Ǹ.1(O{K-}@4Cc݈wz v:sTN@ SK's6G~sssg~| @\L+*/Q(Os?uG;6G7ķ#\O[ODy\sz΁.vO]H,5GC}(|?ViB@܎Dy=Nq,/X 9FJd,ɓcTr; nGKoѠN4Ve?g}Qqv 3xOn.nX.jըNVzq_p#|z~P?أpaԭ?Kӄ])T(^0x{ ?5k( 2ͪ Fnߤ jۍ%y٤Y}vթRxRX르ɱҪ[ B̺}O' h3G#C=C=PX`hpx65ȚxFn?U+oGFDy>q ]NE#{iרyQFzn  J'3#GmA]詺륞=055EC67~IA7rpktkx ߑKTQ%Dm~Цu.j-6mV-DD9.f`4469oy&E8';}‡T_p"qD(xr'ȓP>74_WU"-ܑAO0}qTٔ!?Q=#CCGةQ?^sça =rD?Pj;C!FRI-BlM =C|#"=#gP[GE} }uxY=}\W.(; `M4DhFFM4bP}^@ yg萹``g1.0f)R&j)u/=kѾ(sλ?fر)fٺ|5hKʞϿ$Z%ńr'ir\-zN# GNtʝDqoN)m&yddp[,m m)P[b=8k{W6nr)xzxp;{{t| 7c ߻ }.Z7gWFCQ_C}6-f6{alt1K7 xYBu]85Vǁ]˘bkUWԡJsF3ggu˨wSRAywi s 7IF|ٖH|5fƞVY?zx¶+]{:'l3#Y\V%(I͋wWA%^e-7~^# y䀛D{#%.ZJyGrq QZJ׮ҽKgl}Ķvz_K{y78C.zKý.LBf*yQ*Iњ+R2lAsh UT٦ NF[]@w=Hfm/;Pq/%Vp?j-ZU&^[\qZCI(喟X㚻o,wv2ƞq[4%̜ o BtzG|3u:ڊ"5dZG)-&5d<4EcIynҍőyc[n՟&b_DuȻ|R۷غy3#(0e<W.5IH`qK~{lǃ9g˝!6>FF~6IYMQ<Ǚb\:SOJ`QӨ{|.lhc;+x/f;EHkl-BWlĨwH)`FZ%^*6{J5k. 3i1ڱһ{w^[HofV]'u l 3Z n w}hN׶(3$0G1QS ;"n8ٟ3!(>9Fݰ=I~/sFlVd=cږK(܂ ޖ˷pIjrG, 0~y_^)G+ oҴDq9jVXpAv?Xz,qFr3FYo|>s8{vk(}rszNkg|#ĚO˧v]ݖHH&/[!w2 6]p|7]͟4lťUon>n '"lM2mxAA:L2ŤHociWrn8)<8PKl]"L)Šv@jod7'Q>;-ƒm|ˇ6 bfKHm[DLIiLҋ@_$H*GAu~2 j_'~h ~UR۵+v젲K#>'ʈKI7 yPs3MQE)r26I`ߨRlP\EۜWj\/}U,8 c5%Ĕb,)TZ*FV6-J!7Y83zcWVX\=ʡaI{#1^71GOEz 4'KzBcɼh~ Ɍ94}L3ij?ӘW@è2zWx=F⩼dg5}jyVk# 鏒g2dZΣMYL[.U-_ی|\T$P 5%YY%K)R"ʬT*F\񦴲tί8p ApB]]Jx)\U-u5e(Mx Ν=紆)ƴo']bm$RRVi!yK.)Bc ")N7W秐'Wʥ(Rob$YhZT*Q8SD^^ƆrQq5o:3Htb:?'Tx^4^ܝAc=C -y70wh/dO W;42zn.t5#aϤ"=W&Vn\#!I 2!Ex'< a5@pR+VZFir۔DOc^!d2wVYlI1N2wzƕIK:,/%Ump6-<,TbJv$ $ yR.?Q狊~x g7jF@Rˋ!Hpg==;d' T&tư7OBW d%yKw~tߘDb>|{zKusknh`gGFҖHI y+IW1/3B7Rګ$sҸ^"&7)߉[D<)1+>>8}>,l'I5J 兑atK-I &i~TgGɉMһƔR.0|bOl(e(KB2d)otJ%3.d֙ݬ<|l8NHBrtzKc`.X˰ q-ҒݟVȁޅ1v2v@(o$וf$ɬ7#iJoy>]٤n>+D^iMK's9ź6c=C>?[Joq{$Rc4}>$D_?CŢ[[ʷ$5*ĻTQ0"[R-hRc"CF&NwҚaj9/LIhSҞ6%ղ-H-[b"U'~ pR.<\ )喐Ҟ$r/I{О$(p ڕxK$rEH KZlKr)VU SSHMNv%UyX2&DR&y25&Ii#9RR|K C"T槐O 2 h񥔿 )RLjRR^SW~R4dH)OKN2d92:4?KJK$lzI I0#<.(Q)qJ2P]]RIm"寔F*_`qxd?fQJy%X N썤$H._%Sr(-D]Ym着jjh4uQ^^^NFjjr)R}|t< qyUU@[s}{#ґ[VJ6#YS:"/vJʋ$Ca*זKnD'fBAS_Ue5e)Rz)ww^˭QSS#pytv4nKϙyj&:tmeyk\~])R|>D)I{$-j)IZZ9W2*k)GK)ڵ[,2MAUjcʕ|.L앋my-ynk4b1'*ro;ߝ=0q!Uor#Q?,BKA6t5i?:z3IՠL ^^}J1'qص)Xmo]U2g].0k)΢ݥ3}fT,z?[y(n_))IJZ6ye<.(uF|m*wGEn^ʥK)_w[f^ sm\wo^闧3<\Nǹs-!.+橢Ǖa FSȕUN8 B"z3*̽*f]yLZ.Nuf\ui*J(78aa" .ȻCAiN6]_vE"*G|~t >:ujQgpzz*^rH)2/Ij$JK%I\JQYYCiyX1o u5E%*JU嗾|K)o5aО g]q9Y&\KiG\{/Γ￟n]X2nxJ`QӨ{|.CLuH޽"B?f{i w(Ԗ`$B+*Dz?Q3kjixNgky7.8`f)Tfˏ'>WE)KHH$QQJ"SyYHQJ[]rUej I{X@dd2/RJO<=?w:~?~/6{nb9aJ_1~'5lG~.'_c3șnԩczЕgjY3|i>j|Jt9q| 㖚rLٍ×GdI8ϰlvˣRʥK8K$I*Q(TI%<:ШD"I%FL\nB|!\JgxTs]76#ugߢ D] k8ů U|;j"'4 ruL_D+l=N3_ύXxbSޤN4ln|5qUgU,kMVk3~17j<7%1b\u<)?2TTQP^ 7 *CZ}ckɽ#; 2;=:wgEvϠZGCSCנ+cm#YM6mFa[WșUp3W&RdN6ItCztW1|d<}Er{u郕uvzyCJxH$DwFTQ^&\Jeq5t:oêxye9%b5:Qkk u>}I'P+R%D"R.\J;n\~Um%&gsȐR.H$IGCJb{IйsIC )/D"HK)R.CJD"H$RʥK)0ę[0u7D[[R%D"R.앓:RʨgOq4 O_m?vgW*2K$D"\J OǓ˗DUI)R}6۷oc[w8ď6 3u/D"H)R.\ !aMUm u@de-t'^[G)K4%ڕ~\JJ3ESQoA/YʥK$D"\Jyr") q᤼NWG6~9m={oQPPBޣPBYAά#c[콟FFCYF'[BIic,ԥ \ݺK8D"H֤''RQV*EHyjr" qR\s\?lOƍPY]IaI [>@4=f}]W3֫ V,)Mfuq`2Zcgv2[Ҿ9CfHtޗQlǧPklg;_}VXĴ/ΐRYro;ߝ=0q!UMc;FwqS;D"H$gn e,gVs\4{8- 5TEAU&ĭ;H(7}K3\6W'=LDA5yw#7(PJikt~t4,NM9)eɬOZVWPRЮw'-8B!.eT"= [p5DryU(:q\:tkB8IK)H$!\JyiuZuJR<ʢZ%LrS!uAJǷR_iFl+82XvFMϸ:!DJ[SwxNgki>4Qc]!B})N+Qm$"wf~ ɁZFm/LpIU l9_= QT[dpO|:mH)H$DJl$1i~R:uPW|yx?HHýݧ"e5׾hWMݯq2q| )meݠ;@KήL*OLf"Jum_) gg`Ntyt?l3g90s0FN]O:t:ʣNa$Yg\6Q+ H) oQOԗ&H)Rp)i$-'C$BCaO7AoQyUO$_LO[S>y7S^jӕr6pwgHRྚ .b?˶T0\S[A[/fzx5Qolj<,na?HCAyM 9ݺjb֏^.Ԡ)0wYcºD}1?~AB*P&w؃aDaq86 Jz؈=;F!(gǨJ*!e$F,܏F95* =8f 1*qU1Ihd{o`ЕR$^RC]]ҒD}No%)R_)7~:5ԟ~BDlL =j(֡K/b/ %d^QK|0~ 甿suY5 G.XY1si<}łf^ճpӕnVpw9́9蚖ކ)Fzܡ܅l~&؉2W*)*-LE4v3֙ɰ+9xO%2:H3nGtnh4HNv&3NW+h/iD@yr)Dgڍg۬vra#'PzexDߧ1WM1?1NlTlsNX}ڕ/Ohi]‡_bd?+zw7q+\\┦z?hB}[N֕vX b,|?e B>vHK$Rʥkpg"o _XAˤǃP*$$$PNii}dȐRdAL|׽CkBma`ˆ= Q';+b7{3" كpZqpn/_|I!h8äŵB=0)*Ks6;Ӝ{>aa{d {r?ºx~39s7d(×\ *jr\<=+#RMy~D4]߬<6ov ).*xyR.H)R Vs,cI1d}4ϟ^o޼IYY2d<I܃lY2=k8ܰ<g1nAn0g6yF=+XaK|JO[< ‹!S9fM\hSҨ<$SD618sG}-qi9t&}ٜV{WyX~i:OclڢݷݻtӉnT_-e@A|ރSYuؗ8gn燝?vtý[7ѧ+W(--R%)R۪#GVڵk0`{fܹlٲ777ùqeH)t|VwB4#[ɪu?嫝6~6ў7wuc!Ǧ3? Mh~̶򨛬tn&uR>]bs+q R8̇LtLfP~~#AR.H)RfU .c8PVS]]-p]PP@QQY.kI Fn68X/R}ߓR._w !6iJy|;b7ne%˯m1 ׇ[Le98=gOn[ JE8'Vdr<{&}z2|ӕ*EH)HK)on߾mX 1(-+BQ(iVʵ81ݖ;\TVSBz9}9*CH)Esl=LUz9q[ck诩ܒ9zzuW%ڍ/Ћ]u]85:scK)o=D+ɡ0ǹY֔Ԕ>C eFĹXD^JD"IqJR.9 ! !/..+9\pXxȂj 9N?nFk392y7]!"R)Dlj߇(//key5){\ 9j4ʼn\YP*t:φc{:ZY!޴5QnpDWEhun_;eFy qU um'r山W]"R_.A6s S;}x [$>>3'Ov}(H)R^֭[T*nouE0gW1J}ݪ:jp6)GyTkҷ%YP>k r]O:fNØuGdI8ϰlvˣmn͎-B$I2~\`8Na0N.Ƹo['H Þ֖kH; QNxYC PŰx'VCW>cuˇ`r5fǬ#D"°e} jZrcK)H$IbBvzS"R^B\Jyrb>9~:ae=i]긣pH.]0U{2ѮxNteUgfo/V[W2;=:wgEvϠZgxR}ϻ.}eӫ-Lr\ZwMs$rf4`emUIARn~!}F"H$)R_T\rŰ\"V;zԤ먍$TX.CJD"H$Rʥt3)+.Tls e~%aY0u *[.!\"H$?-%Rʥ璋O2lepQ_AL`,?BUby{ )D"H)R^RBrB KHdX1a!CJyoD"H$) q/Fʥ+)VhzQ7gBXrY!^K$)7&R%DҁR.K聆1ec@nǷqmj%e9ɇUL^{R%vH"eTa!-!\I$Rʥ%լ 6ɭq?+{"ʯmQ $Rɬz}/{3rr!$;!.jRD}՛/DJr`YPm<^P'#׏%YPcM^!Z|tUֲMKq>*FϒR.#b#QDGQW⢂D}NM"R.5MɃ*b\AI?4$[OP-IzvߦM$V׳'Kįw*K$!gf;!/?IeeSTj ehoDJy?- Rd_Q> )@S"AhZb:4:KaӺ~yTON-htdh`GH:24՚XBF):juP\D5KDc8GM<[E:꠾^Gn ɭZV<,}*YT;$QMwzX0l6KR_z)scԟCY a0uc>ؘ(nݸfؖRTU#~ܽԔ$jkjD{OK$俯K)ϧY6gJ&Oq8V@cX1} U:bY[?ҲIݵղ=%xa~P_ƀ*X(fKZ=%Zm>_Ks0G\Gq&~U,G԰aײ# 3lh,V3^rID{u:݀pb#e2zXh4GJ$R;!z͢p?JeՏxp焸g~$Tױ}*t%WM@% ew 2[!R˷ h9ؚW/gR? bD Oq֏j2߫9wKKZ&\9Ӽ va˺Lu oP'>6?}Cn=p}Ʌ wH{;c;NĘ(%aVX.4>a`kO}6," Uul5o&oy3(;${l; U@ L۸z?eW6NvFG:!ZݬFyȈWԗ`'NɃү (8\\&JĘ9};&;Ǐfc 9M\Sw 6.'>ɰjxPVnz{xCkWr;\vE]}{{r#\guݟ-֓y)FΥO̙wÛc {#Zx,u{[r~0q,ޱXqo^?_K$Rʥ;)^)ysRQAj^ٹ<"EEnA)95Ndw Y^G>M~z[?5g ybnf5[r>א]Yj'}LqA5=)_#}h&J˷fr01D :Nsc(L~}Y{eQq0ڧu"jяbwUd[)SoZ(I4ʀbv6Քl >, lTxvS x#p0grQ:^h,NF7/ф_ɁgC>Q&:0gWu];n6ͬD,bY9g ^A_)|7J[#sٽsAǏ-~nwU6ܿz2%E@JD"ՕwJR?@]YMuujj1/-bkXh"3ؙVKz*IS:,&B%NCQZQ˥2f?í 5$U/D(Wau`T}{|\Kt{̽ő(*E{P'WncP>'Nv}3}K$$RʋHS"o̙QyuGwOzQWi!CJ"Z"b#y{gN]|a}zh'7ݷD"IScDR.| o͝K2#ZTUZ*5uTQE md"*x~ȐR.b}{ܹqED=Q_ D"Iy'[z߉GnQu{4:QЦ{GjӍnlp_=ZH|EY&A9R%I\L^b^r)Zʇ;棭GAAյjPkuE}ĉqj҃αωVɕr/\"H$)R==)3D2Ї_)(evӫsjZǭ=;Rk8s 78nP\^\K)EH$rj];vPYY,E֮ޚɒa=fsJ63{!f2S 2R^JjQsi*m8R%D"1AJ<}q3@DDG(JzInE=C[FIt|~A ަSlNyuNW:(qp\CX鍉4SR9s'P̥zER.|ݛ!z߹c'6ֽҩ3?4p)t܅X칆20,:H)o/s-#̰J^VZb9YqW~5Q*(++sf'r)ZdժU^IMF}Q_AL`,?BUR\K)d =D΍W 0JdevѵΝnՇVp$%O"iZ5׏)}iSąn $^Q!0|YR ĽGmMK1{/R.\_ʥhn,Zqnk*H_c|nhmC?C'ˆCnDEUnmh))*0]/|(+0jQ`y=Aaquΐ,un&:LBnh4b.6EJre qёI ZM`` ~~~B\!<:R2 l'`.~7_r/|]}8wvU"ԗ{v;q5sk BxAʋ IlK7+L 9x׶B uALYs3=2=e6&NAxj0'1拓Ǣ%":ɲpQ4i9H1K)QRiTʅh7<=\ܾ}RDis{JL*X '6|&饩\-$¤/~Ы={ avk(F#׌Ԩ||DpB`͜ +>8a:؅Mkcm/`ylH/v́wdz+dN3n<5~?9oGn]c;_&, }o=8 \^G~w`Mwz'op8w_n DpA/I,iM{r{ #1&u ~G?$;ރ2j/!a2H'''y;gGqhg qί(s92?܏ n =6F̥s,td7jsqH wc똁LXKD5.7Oɯ #iv\ ӹ{J0nk\p-<ϋ4QOΟ# ϽscWǃ3 fڿy)1rY&{L`\/) 9Cgö1SdMk\ưQ<:}oMGrq >BRB^bQN#z_LH)okK)/z\Ϥ߾MZM㔖P&(-}JRnzkz coZF5?.w ?¥ ͝ nm3ESQؿ%urDzaW;gݾa%1#!Y:ԉnF1VѮܙafE{p-l7?l1z8䃲qe) 6l'; a @aQxa;x ޏx,~4p ]O"")e$:/Ss1G^OFbW8|w{t[g=}7'3lf#*S9v{`$'1}dl{q|6R)RʥVɃLd>,zFEy9eeF)o)MػaIy}-||ʸT{Ta4[ףT'ۜ"܈\)ϵ3:~M+4j(SLe)fڙktd4=x=zvۓPtdiMEGpdίQ_`79 f *> 7O8!bhރ>SWr1Gtj,1smGFo0S/wr.2a6& gv=N+Mm|2_EYlNIhb'1pDqQ;JV8u&K)osK)'A-l)[KK 򭮩!aB&LRjr)o]'F6'ZONc\7C$+Y`?YŻydί^]gI=˹c;FwqS ci2یם}\H*΅8Z[k&8Q?5 RtPT.GH^&'dx &qQ]vVʃkX)IK +~+M(,s㣽 &&*>& 4"2F 1a BZ7Jߌך~>Z12GbV}_'*,AʫyH5fv“J:SMk|1dĸm[\ > 4omz`,3Q?җ?<|Wv>H6MD79&_%l;oߺE}l]7cDx!bFEXHǖrR 2%sgO6\WUUZ)זggɨm^9gⴂsH6Sz3p>͞mAQnpDTS]Αw0r8φc{:ZY!$V|}H>!0K4[?n"i_6]_vEiĠG4х>R!y4ZڰR~c,{Ixݻ l⊏}s"˴-uvf32|yC;C2lO9cջ:"[{V=a{C4"6ܝvL:=hfαݕt&A!D؎03g}">BʃijcBl`ܾuGTx %p92{mZfBT^5aoSlrU8;N|ָ}5\f3~S5ϗges+嫉Q_M:߼i"fY)7iFY)7"AxW5¼OLE¢:)W#mOKϐӒI^NY\J)H)R.\#Z=۷S;NhcGR__\E7p{b+-?}a !Y yp; o"Q3OĬث]ASaS>5*_;l ڰUFac9l<^l}H6 y ΩL)LR޻;F!(gǨJ*1EJضbK?WǸX[`;KqKO3nۭ\|2K̥|K1mH)RO|LpKRtp q0oق"ccٿ?uuu>s;w@gfSn開zU,W©OWYgMg4lr#[dB}g/<@㡭Hr#3sN'ȐzkP/N'B43gF\.JxuB"U;tфuS#~ܛBbo":ut0xaoa6ǰ6bar $'lnr :ץrN 1j,k\DϟH =}D@TG1L|WDwMU#M ^@ D 98֨caNs/Ś@#q!4-gЌ3;Ua{q)T:I!/?4qLa(O#fi > ?&I З ٶN|¡@1[B %x:oL% ?K2LeS&"!lVq0s9"@r7Nsk\_vL㝚~8&R5ibj&qIk ?Gq.T2t|h/Q@)C}F)AZJXvQ,3qg֞kC[\ A7 *+,34>٘R,EtAu8Mp!#d(;}1ֻb&|M8iWLi"'rz Vqa;e1:;aI{}-@,-AiɖKs&Z-IC#&h$Y >-ȌTymn>u򏡛v(U$⌗2廡Qɨvurqg؛>k>[#(!9EvUln|混9qt>٘^'CYf{(g؟0 Z8c1ËOuNY{̩Qcq!2}7K/?`>EUPKwwtT5B#D#boAvXbo!m'B7?<{Lc6ނ-4~Aq(>9i{Hl|^27T5BVMNs\'}HqehCE)^n 5ЄX$†Z1e=1SSمl|Nr g p>ahg)sZRV8:%K'sWϞxdbd]b=>Ϫ'x34B9NyO r'|XJ egcQBLEOOn[+UKä?xk<׀A ;t|*ߩ9/kI= P6vP%ʟ?&>2J711yCG%Jwc JU<>X:hP&/|:tEꟳ{|4Y\S!@z Ԃ# ]h_noO&5pV;*F)O_Fk2l5c]ܕ(J#-kEN{ʁC ^ S/eG!m9m)j%$~D\ 9ArÛCW{ ~^(D2\' F."KT"=F>33w`։[IF&_!V>qV"xK!Hﱟڙ6qwCž0,GnB8JB^Hz HnE gc޻jć/$`dѬ}IH- QNė;<1ٳJf:}Fz493"vA(3G|e/57UFj1D กh5n;H9,'}8Uq`Y(DpI,MXŶ(h 6)M+֥/8nMx;$ <7I_) C)'Y&e% +IyΒJ yWR0r !vbKOH.nLFvB)O' en?9VV5e3öJ9W7s`( 3Mk~Qxi#]Cd^9>2^U>EybNB&xL:%]NJ9a(峇R~qr@h"s #Hwp|E}d6j2ER.C1kq?FѽAde#7 ?mn[E=|f[ hJIP!qޝ `fn=9xzkw:nrQn&@GޯG 3 |(7@Eq$~^'6͆(D(DG~J=){tԶT6Dy ULP Q.OR/B(7i%ʻFy|yyhL;$E(Q.W阋tygL/T #EyQ$D9lEyOQ~p^(fp^3 E(Q.㈿/\x'UȏGQ=1QgDyv&gUHQ.D9t%E(Q.W)ʏRB<;f)E(rQn&@v}NKL;(z]<(D叢{?(_(Or{feBr3QL(tI)QIlѦ(}Di(Dyi'Q.m'@a٤(DlR5|zLPQ.gR<;cZtÝ(D9rQ&h6.#ʳ3Qj)Ey|:.$ʳ3Q>@բ#W\N@r3Q\ߴtQ)QT-:ru+E( D(7 E|^LFDyn&@͢#D((Q.OtaQnMjD(f3L(a!Qv2KQ~+;Gybq(Dyq_Q.o1M)Q_>rQn?Q\ߊr3QZfD((5Dyv&G TxFwds4A)Qx'PXr3QM E(Q.E(@&E$ED*cea:ꠔ(Dqq]>E"E|8(%홉(w5[rQn&@r3Q@D( EuqfP(f #rQ~٤F(߯DGrQn&`Q坣<>cΚ2(7N\ruD2E(E~l@t(1Q_F(]3LD(7 EyMQ>MG-r3QjЊrQn&?Ws`=*r3Q>xU5h)/w>E(Q./E((f<D(7Ps_Ql`=U(f4D(@rD(:KO[ 8 \ ! 4Y|dcS}/y߽G(߯1u`^AM#LV>_ҽoֹܻZnV{kTM%M LI42^hV PTRd^WA6GAӞMb"J J'J|Hx;2(B EtVdz P/dz;=vn% vƐ]+紃ەwoa*/"k+ӓZ7;S1338hml|lFprv>ͬ"Z(#&'rQvwmf]Ȓݙ]1L{=df9assOZ-@MǛ[jo.oOXDБَV,`/vg%*cFʢiSՑ\[U}BBrd~Vt 0?t(AO^iΔel͝G,Y`(1j91j#YNGc{`j'T3c/j0UY˹˙k ;Zk9lW-ްh66NJlp+`g${?Z>ޛzLY1j%uTS2Գ$ y g/g) MQ[R)k'SWUMɥ.si_M*(M_j j֯wxm.x-;.r=\U0]W ؝#ȰCv搂Q8<۠8{}s{{t{pA nQƣhow_qkn1psQx~{\puB {[S.K 9LYXW٫.MO΃rr"""""K33C9C9 C9CyPNDDDD DDDDC9C9P>}`ޘgKD5'{7i\<1w߈%çO$Q@sjsP(VU^.3)yGY[_,kDB)EzҋtXJ 2L2ɤLɐZD}sH\F o^yss} @YqOi?2c;W5:դqw} Ɗu叁t4t%ZU2 ^zddkZɱ]<ed>E8鉾cHR8)j:, FޣaMt]FX1FFPV Muxԫx/τtG]6b6hsp?dnB&HDG~OQroP$u#|F@SOOo'Gp/ė~eG`ḡ#2m dǎR0ׂqG!z0lG@Y67oϱy ;wҀF"tH("6X1Ql'P1JSǓ&? +pr\l]ssAI/z0~_p_Z߀(14t81{ &#pvh>-5A`@JȬE,#ؙ(Gi%Vm>/F +NGohDC K-8mngX FByRB<|"E ̾[MlmG+ʽStס{m6{wAF wI!{rx.rtKz°3 4ԋq-|r9Ԣ-TFNGiv2 .|$dC}.}]܌?ZmL U|w!g{m#ENPnwB3R`m>G|7,~~۷$VRm({} Y 69=}fDZ{bY FƀbP)_+=:=g1!G>YTOu cuW|$s8o(sxUVs&iȕWuAn Ec +ފ0i00t6![36:n遘±&#dF7$0>x.bk,hre7{EqEvVFq^PBUCQR6@_&مJ8l:gPU&FNzRR!.dQWC"Ai2[" #?F(^ٳP%ߏ^͏7sW C`5 Y 2jNF_2-+,3S48vS =0/Ôпw_.%G0ιC`w!8orRsD)&( ZH<ػ?ΨOr k~ťxQ+ۚm(voVGcB"Hقc1bv&H^1#Wy&1yxc"D`ulAΦ/uxoaEP6W_SlN(4U5ڧ㳣yaǂϫuç0P׏FN4[k >ۡrݢ6su]}[^Cع/CE`sB1^^;qNAbYT&v űjO_Jc2G4g &,!6jF 4x (o)bٙiI!WVTA^-ßv.EYW 73SMDpP#ND =CI}Qr*Tp^\{}D@2b@'{c½(Әwv1 jaFz dl݀;t2Q~Eyk-no?ǿI*Kǖa> 9x|ݺ WάuĿ5bslӸMWhѸQPDm9k-&u,&,Asi'c*׼+<8Z5dOTz41Jb) r?ʞC@px?( !8S8U<qk5ϐyH3߲6s僺`< &nKŪB-@p,ZcX/-ۑ^o.93' x3a*O`Cͷ׃Eâ&.&Jnnyij䊲 HOF́}JZiE)j];˨c["E0g u4Hjvc 3 $Й(Bd|hO mAfB-ʽWrn(íQB1 98q- I=xxİP$m? iҮ_>djm;yvvQDyFEbx\lY Ǘov<5tB9_5.QXLϱBnM@[60k ׀{=$2&1,oNJAگ ɟ8C|klA}00h 6Ԣl鐥@(_ %SW)S` E8U0δ8>5aM!X[sr`0|kEb5.oD$cɎL8uL] oaŮ,,LBs/)m`P+~L^r0 z4?vT$ZVBI5U Ve%+{vEAQ-mT.' 51sM69Rܳ,o8#j=]5oWA)NFAaNr`.Ԣܛz AC]Pi> {LΗC1#l4zƒa_2;?r&&*z'ƙq,>@އb_Q?_GɞWq NOIH  (sl]&<woâ(pB2jx?-"B1bfD2%V %Z %1\, RpRc`lhzX9{Cr(h$vk7@P&ݪ"}FSC-ʉheqy5iC. Cn0CS}<"ۆfըm.G1%?Uk, wf, OEX 7CC!V2f w1`%Q=I E *ԢܬWyMrB<BA/eعcje^ƫ<Yb) ƕP!\Fqj"2sQI]Yn*0_{FurȲH$c@-ʽ3 {~'B r'ȕw>E~=Pzo2bƘؑYY cU&ׯDBO|8AE O][֢\ﭶr&]6#{CpxݓH~'RM!eh|}74%ʙKkvslMg{pL h\ іyx5?=뇡fRX| ~5m:Yiķ7b;7sv,K~#ge,fZ͓ԿzhSA_Kӱ9Pr={NS-5h4* 8Y!c~cE2&zOȕǺzȽr`0|kZaS^d V(( 6@C~RIcOByxF>?5Z"1> Qm,>4P jU%r3PQlni))+J}ݗ.BCl}U6}Z{/ryaN߇]]~ `A[P |Z(K_o<4k%0[)M5ːfB?oD`zm`.S?S;z*f i\|oDU ,N>FCL(^ Es%\R4ʠx* ÷!p"<0 )OPrFq9#8Yy13*xQ-Wi\Q :C+ʽYu^w(y >|/dݻBw?ޅ_+:(gazEVz2]kWƷ~A+8f,ۦ^2ϱ܇Pi`nr`0|kH/ٺ3YY'DЫ?1jeeΡ,Gnz&J;2f zEM"~.p=<zG#6tELgg87eŒd\zwQ=waP$VinXKE|(y!E}:en { =wx WH N tҒ!"A,hj,RRԈ[z m.lYxlݤ Yǚ4;tc,rBZdn̩/(=)ʃQ̥y6'Ey0?P;c΢<<Uo_?@)RJ);ĕgM`}%~Wܴe^`aӁ#{N$^9qZkZn|>#RJ)"~7#ē_L;'ţʧM#s5(FgQ>0'dʼXMmivּEK }%7U>fur_3Z',:tbxݰ'7^q'RJ)#ē_L;'ţT[+ų6(wVX"9S"E܂f44DY5 ۣ ]7^!شiSgyX)RJ)#ē_q'ġxԦ8VW( K,⮰-,Ƈ\?:M]=s^)El-۫{Vܹ0RJ)OGI\/ Pẙ5B'6s,+RJ)~đxWK7q'\Oq*^2%϶BSBn9_K'aC䩆TJ)R'#$ė8oNCmm,SrՕO˝5<ꀝyzxa*RJ)~đxWK7q'tAJ?-wv˝X52`%{O<rUMK)RJ)#ēҦxwOڊ{OC<-5"1\oSs J^YcRJ)R>!$4M܉?m?C6-s[e yzr^[jC$RJ)|ÑxWK8ğr\ >S 9Aǟs ]MyzeHJ)RJ#$ė.'<(ۭ,\7sz80^)ҕRJ)'q%G ?4-sL3+RJ)o2Sqݲ:KgY4j׎Q#0"@"'l} [2W:|~q~q=F:̊C|g+ /r=Fz@l1e:^!r<@$ q3yy1zc/6a^p$7<1 Z5Γ=yؓ^08}c< ۅ~lZ!eI&D#hnL$I>%Iy$I4d0oIT$Iڒ ɱ]I$)X޻%$I5;Kh1$IR}ɐ9X>/=K$IR6#s?_w$Ia^zۨ0U۱3/v|qqb!!!i*- J/"T X X >?JGS=o3t`[SlP/mRJ)2 I@Мm8{fmef[h=׷&zǥD)RJza@, !FهΞ {}!](yaE4rdVNYypzPJ)R~ bBl"fL>mO66;'3"S\4s$ &Ć1$ĔN6Wg?36ۉ_Frͽ ӻ|vt4>2 L0GaeŞ7J3f|ɘ_L"sŒZHU[ɋEP/ 'C~p-dlR!(gɌ?1Y/ܘcFF0T6>vgbמtڒ8+eu,pҬ43a8C`i:fpB4J3ZϜZs9wD цhD"툆DK) 3oOӐ4IjǼ nמr2G/̻\<ٶt>4\)xh>G-W^i.*!)t`4 r"܆w.ڒtJXdXpd\a ezsEÚ 3*wr@{b,S滊f"00Ra1C QkOWe@""v]]g]1r--lVUA+LZ5RqqCфhC4"Z͈vDC%lyY@ai<8>g1 [Ǚ}q-Ň-Iuly{ݍ-[m9zȖDn#$$$[af89@B ױѻmV͖htWu;5ݟyU=?ܷk~\ko#MכXёШv3N|Z(Nh(%p>8Yΐyf:8C\Y8?xmV!RQ[ZQò!80?hf94[g f-Ly`f<`fqώ8 @ݱ( 0cpGLŢXk Y PX,ec*諿}} `D"5`J%) o S40|cȑ<$r\𻍙 5^r=E_Rϋ/:|nN%W::[g:8C28[:Y$/R筥榆u߲g g袎VggA4A4M {p(´,ЃjV d&p8c(=A@Yh=T(Yevaqey>YAyGb:0k2C=4C>F[E.y?^gߡ^}UZ6ۧI ʢ.i3mxgR=c%ov)Oy֦ѯ_|vsnśߣwSz<=:(r^B7Wt{ʿsۗGE ' <;-X3:iy)uEl$Yz6VZ8 p+p~2DgCC' qUH=/`NcE#%Giw6@n&Ye%cccCy=yQp*K- Yf&yv,;e`.}?^(qAEy)"Q& []b;OcĔg.eml3CXhSSnzOvsW~AoS0^= Z2jtu(ʤ@O:!ں?~b"!Ih8(uw/`5xm>koZZhW\+G8Z$2VEF8OP/´<3=80@r ?MRM7mL B,JKO)q%Ƿ]Ź&Sz f:z ヒBZcbO~OMYi?C82sr8{.zcW~224'*4>>XDп<,F+K^BV]tDKϝfoˢ[n23 Yav{zzӋ`|+u胊Z9 _RROadv{Ӧ}vb7ϡOJvЪc(6O(:Q@{+3J@gj7H谅 O%ن6l>>pB3/Ia֤|Vb1lRu&p' yM*ؿߘQ^F?Q&gYc۱G~`'P.)|r85<&뺵ȼv3^rw#CfcjMc_W~7{#x;o~Z,QVgue[24xm28z܆f1= CtǶ,Eへxi b>S瞡O~K]CA3 sȦC07 㻞Q}`^eV9I]B?59G:6Kz9 1M!ڶFu2b@|~TlFe{($̣֝H0U6~ŵ4Q[s \;ZSXB'7uVQCYV Z+L\35h+ C\ f-A3 pY.yBA#T I`}Nа$@=j.)2hAc\ `z+I,5$FFX Pu,!e/M7̉)LJ|v#Tq73\X{JtL8772BP3qIV瞝 :fC;by-7sHڞǙ?8l!78$ñ\Z(9$a|@%B5a* 0$!.EDsxmYd p `, 7U=S0}͋/[,8@p'^q{5wXgY'i]wy9d{s)`Kث)(?xxJXn3ܕt= ޡVtbo4s4+:@4Rl)d-Me^QQ΍1c}n REH1L_ETS}Az@ՕN:XdC􊺯ײb 3ݢ'}:3}*: !+=@K剆A,C pt,/=%4G(v `+&q XeeQg&lg 3 !ևЎXv=0>SmGeH"[)Cu5{͕Z0[0CL6$Ȑk"n8TȸeYT_+s FqA9v(f'~[$@v 7;E3}\8ߖe)j*2dm!lw Lkvfɱɽ|2 ڔ9*(6f<.9g|)Ǡ޶%JuY{c8yK&"d:mӆNԙG MY x62JMJX) C.>xlFz{yi~)h/vb9ro ;n؁A[8Xa u`YfHjhptyd.@t\Ϙ ?7C)Q| ́24OCVX @,Ą$ gGh=8:a$665M ]DvfSENJO1re ێY̗W~=<{ ih mΡ) #` ?rX4ֱ27L-:l,|ZkxQa?!m^/c*Z+MO,rQu M^/d!>ۦ˳ƨ !poG@d- i$ e-<2 <̽W9l>l\MU%m̠sY)B3aN%rv*bs`G"%[38]+ m$8sź4UхTl-5j~c4 E ѿ8WKzj ߓONV>u쨱i>{Vpf5HVX=o,Y˖=Ֆf ۳hM**0լ]CA\QCֱ1ŚU̱c;PP͂yhb%El9 yDzzcbv٢0/= I_f5_%ʬuj`g}f֚V Yh] NC54iՠo4P M(X YBV:o#,YCvF`oPC3{% >/)>d֭eVm24,]ﭥBlQ9B*`N1^lgd){t"gBSJWD1;=<; @m p M!:t/+0b5C 86A2tNoV~XŎ1YQLy]W[CJ,Q擠%f(WFt<NTЉ mD0` 82#9ʑX35Gs9Γ%*w/M wV!fVZ8:~[]]Rn) KtոkB>jg; M7"۾K󘶳AmW[8{=Wӝ|f\'ZߋlGLCFͦ0bo;j,|W1fP'k lֱ +Pc3yd(-B s^ Hc.Qp4&d3upktM +7֪ b:Ǿ@ȡH^(C ù{.yY*!ZVZj~#z'2mVЖj?Y$bcjf]^6ہqp}7ZmGįzK+\n0I8'@:a]X#"n}wo a14 2 #PVI_P,3"W|}圮| nݼѭݸmZnonosV>|^ֳoZ:v oNf U(f aHvᐩrAV7޽{M&g[Y8Oկ{,{ڵwt;;!eYmuO<.O} ~[|O <Gnow7׮!dzon}}]~gi/{gՕ,IURI?Y|#*TDA@AD 1jL4<0I&cԨ3IL⾠1.AE@\P/ . B"ܢ3[-޳=O礥$S__Ou* 66Jp2\xf;SS{6:N|d,m>?q/>FC]]tXA h+g0u GccޓV. ܬEDN:G箝~6ϗ/hSEUeE-?營vmʦMoۺ_w /eEDD8Kp&7+N8qN"{ܖ")-%h6טǢ&$: :'c)y)t!UL8[>G$gGrwԥtD_tT󕂇`AxۼtqN $Ztib>@bB >HwX08g Q6iե%,_Μ9ŋ!99 99\-,MJna:ԥ#VQM&V?(,9̳pDOȼLuʁUweF.u""RSuta^zv d9QjkklԉrNӃ>upaͅyW2г1=1!&xr$9GBAJ0c}FZ \P޼y_/yaiiI>}2e ˖-#8(DGښF%8f^b4{|vDtG8US镋ۋr LL7-zvor?O"SN$J+=%%u >`.'}q\oZ> 3֓Czɢ/Xo'뾿?&}l& {7I}XD[ZC966si\Byy9UUU..&;;+^)̙HEG'%8Ō?f܃$e6\9O]%x];nd1>p`(Oʕ+Yd ,^X2-X3'@7 S?"X,"3nDEoga|6ΑC~B?>4jځ;vxE~~Q!"sX[G{y,z09v9`~fħ!Ms\GƒJ"6WV-ZHXw<\0ޑ&UYߓ9pIIEEEa5 ooovء,fe^brﯤ0%ԃ)((#a=pЛ Nx!ES!pA 'js|L\-{ [֣/95 wa9=:jr>; [ Κ6y ={VDj1Y+|RIKI2'%8 H7ۅ%j|!VfX1fJVݫ'= yOS9𯝧Ipnci[&}㢵ⳍ!D5qn4[}031eBR+h@P3٫?.3MdBK٘AF7F,\}#OǞTptt\¬7š7~@쪒:|8nd̘1"ql``W-iԩ 4Ph}Ϛ}|""Li~.Pb|W{ZuczJczJSޔn>j4\ubj;6u𽄶4 I:nҼq]>O$8\.iKn~/dfd)+))sHkU]>S&1z0I %Rt ps2]G81wFX,g]҂gaY]zm߾7nPxXOZ zb._²?F8e#Vo'>6mg bM?;PNVF;;v/sb݅{P88 U)|9• zo}RsU!ެ'd;hC0|;IN'3q@^w@o;f(lR+skO]NRR:VVV@lggk]J Gk/һWO&{{Vi/NuT[e,'Rxdaߤ{F[LVJO$F0a&. |,"K$8 P ]hZٿCաը>oo3&Np/O,{>BF6qQ.n[lݳ%ל (fysV=0N@q,>_`l58j߷r-iisa[\5WQYmu%8w-po:k;qT*sI69/!Z+Xl7hjuT\̞b\tG4pO Z ]ٜyCsW`;cQ*)sӛlԀe%%+«,%^T|gNΎL2аP}5/_D}}}  "έ[>u !,; ([pdV#Tl̫og'w=gy bE7{vΩݳ X]?Ty ]dzr 87D0iL.7W녝 6xAU@S*~|>&&xشq#d)>`ڽΡ i)\z7w?V P}f- q[F멬`sުF ]ZRRmL`<>?W9>K; Ȝg [:>d񲿡^LPߺ.mׯhRSطwwYVZepmm~,Ys1}+S;@'vHBN^G?F֢5} g3-'[f$h- ε= ! y|Cp~pΓg@GTx3g3g 8@p&8`|g3cb(`>h?.LpBFc[t i?/\@p&83nVL1)fѐww-F=`nӾh'ٗ83[g38  /69\O$xC3yMObխXcы4 v4]Uk\N3wY6o2:uh'ٗ8ǘ?[Cp,8S{YD\ۊӪ֪5G~2 JlHVWo:Uvd;qEń Q} d_c&z茉Lpz甊C,+?G?MPnR3D!`p|=TrkS]z,&3ۓ"/asLp~Pp %#?TliQ]dž}yO΢C|bqլűmϯv)Fڼ[Cńƽ'?%^Q\73|sbDeA" ȢA\fp11ƸbD\4$Q3.FDQdAnPP}WPhbHИ<_u:TY]߯<{{o}6='n^سk';wT|dNMy&ǰrq"BBβp~yPWˋ'3ؿ"#Euj7*Ρjid^\JK454fsvS71`s4%K/ƾ`[`U.?+u .322 'R`g`M0s|xc黋Xv5{|[.\M53Ic`;>$'У4P矟bGY//k+xy6\8q<=u4[\_a̫rY2i\x^.Gwy* ?}sEuҰ I32c3f#X vV/W-O5ZEzZ ヾ>6S=S{*gB498,@^3Fwv ۥmk$֖9e+6z%l'!oK3.1{;}b].Ve_=꒏oq>2!aBƃps)@<GtӃoLdhG^6V{+ kcY8>g"yFA6ɹ,J(܉Ӝ-^kFwQ ߟB8eܙ0irm)" &:$}UUQG;[5d: jgB% GQi-)f^-9%Qg̖1i&L X~ %ۙv&<ۈ IAVcDdvмظm[ Ǵ؟X*}U$X[NTwE6_xؘBmW3:w\QJ‘ak>]|K mGF:Fq͋d`rr@4>rz۴`yǐ]n,C8xFU. ٱnF>B19@;_ݡQw!j:Ո? fw,\L-q{uu ӝ&vqY 12[Q_N4ړ(iBw[- 07V&$67g`3X*r5T+G-X2Vfc1R>Ki\Anne{ow1f +^s=q)Q9٩.Hc4qƇ|:C̞^kYr@~ap]*a<">٨*/Aa\8| E]| {.O]@|+{wmqa!GvATE>wd}u+ LH8Y0p.2+FffHeWp|WGiFcOhdD$ S0kiBI^npf ٻm+JZu(m~SE3ClZ: 1uocBtMoJ"%k7V&$}>FLdH 937*b6BV4+>B&\wd1T0pɓ`3m*jb3Adޫ8+Dg-rXQ|cD **wOA.Mg3N8Jʝ=[Wd?]?Ƌa-O>|p?N &!-sYќy) }}$TG$pIJ s5zF&βpċ3aű#`a'+/8yvވKo gKsٱd_Pm`.ZYfƒ"'Lʔ+#`4D%6pNJq#(>>W,P&j"kfxs 7`6Fz^£ss8qz :qBJz]1s!܃1`^ʔɅ榫2{vL}p)K;VG瞮N^ δQ {`ovutj#?acMs#q mչ8>o=+z3:#lwW4{gC\ՈΛ*\ܿ %$\`t/ES[+Zrqf,~131Ww P8}ƹSeŌ+h^ןXUNm7[Y2&b䇭r(صt$]W?|L2_Y/NuGsaO?< Z,}8a8)PIF 6<0y3a~p6KP>|J]|1B?b1:Yv5 Xu3oBmDhZS]M![7jF$pKU  x#*U,i;[$^ ]QU_qV={|@5Y;x3 P^"$>])JLnn⫯Ǔs?13TS66@>}#qugRgLh(%eSane!ey|%󣱟^ i 8 B^W|+LW.œ0ޒ|c+}qD3-~tuv==4tr|p+#Pv4`TXa76q^vC{WcxL0 4a}u7n3 k䡱l-َ%NV0K}>;nAo1[ m7*Nf0ÂM'@4$[wJذv"SP^Z+bjX])FyQ7!]i<^ھ8yǒ8kP.~H/aޗ$` JQen%a?XmghJ9+mh?% ?rTs}G76OQ]$bc4plErRm#{PYY  D[K7dʈd|+FVFd{"t.*~tn5X7\//8" ,,Uz ,#e%(<=Y `fٌH8pS Kai6S 4Kϳ]|%#cpŲ7j$'bgA8| 4}1̠$r֬~7RuβpVE0QAyFThJ'Tf='xÏ$1pnl'?.4)pSUsmHeu?> Mu X.N9/ܿuuwP]!Q 9F_ 7_m[`@$'%w gT I:13$2Y8~ozTU ~{'?x=#&wQSS'+g">4ܼĄrvښ}^ nF'*KլV[@vK>2'-[ivDEbGtLno^88w!wōnEy]Arq٠G0M8x*Z QkPQH9gg҅T贶or~w\pznArq΄8TWUjK|U"k&)!9s44ΤhS]'D>zIiQ2wܶ"99晲3О`0.75(5C=9g7qa쭭FjRg@.ɉ/iҬY{ #}P V&㣬dn߾eErr3{Wu CL 넺:ju2Z.?ƙƙ1oR+ W.7) Q[Sl>}:N*}xcΫȰΗ~g`atkLmQW-P444jLq|I!&V}ImsŜ9s0o޼6۷m^je qv6 | {YybsawqV~vR9gg7@|B*hhmٲeXdmvA+}{jX{j> ٝP<ĭU(O{qnZLL㼿*=(w:S uL#Զ _-dߧY֧Bu)؊Ogow0qNK+[mCXXV\)U /͞}Q[Sf{u>6{KoHWX}szW]ĹҸ!ԧ7'2QWPAԇ/ 5ϼY9kqqq6#{(Z ],[ZW>{WIPxdPEI Y:߉מo`Ace!bc+ѰOR) /SHHۆuaڵJ_u`61{0mk'$p>*E{ ٝOD8Mz57|fEf}?DseeQ]WZM"~ǻȮtAPI0FZR3vcӢQh':PƙF(joܸ!M('?Wgbɘ@|YX) C蘷S0 XZv7uʶ}L&iN*ayȪtr|NR@.? AZ{VX˗K+}/7'ai8|h?OAPTX2OP nN J:"4} 6Tb_z5t,({ ?xgzgsU_G!̌FUAm٨,h(uASi3:szWhi81vj}B|ηա2K9i$> ! nS@Ο; AZ{.\K+} RD"#0__ؘn?A`QW9AҾcS=r*>V.3{'˪w9PƙƙƹϞ8FD힖 +&SG Йаw7aM;sJA ̘1ӦMV5ն_ɟ~簀AL^ S{⬢C{PcG(!Sѻ]x/ kj\{ g+in0#ky-2U^㌀iu:d} cm-j˒> \#~x>jPSc*?O(HA֞@H+}ȇM&)&NY@qqvE5γFMRl_{OqwV!&G: K1UPc_ Ј=0ǚo#|:GLAwxi~nhF x~ѿ_U:5Y_y7yxO[aLg87@u)c=+x3+HAooo }1,`VFE +Gsf߫?u3AL܌CbX2{j3A/F0#CDimw[$%  O;Gyƣ>G:)H.c3X@:,(鲆鱺ǠٌNex=gcǴObHXj:qT!ФիkHw'%Nw0h uǠqq>㌳|P@Spi\8w&䱥dh+ )+mr92.oG|,өS'%?- =`Țq~0ڧ@wm0*:`s33iEa^2SqE)")ՋիW"HNN HsS Fs%gҭu2us44T ĸklĥJcccvH rhmݻWwmP9gg@kQQ^8Xs"sKk,&uZ>׮i0dm"kcBcPhi Hń"Vrnጺ*3,:T"k#_B#974.S_SV,}4ڹ9}!Gg`ڵx44΄B!=ggB!BLL!B<87u887[s^S2ՕHIgB!"Y Ahh`IlQy2_ oݒ\Y"מ`0dL21ski@^4sJ$g8q7 IFI.rE4a 3.&"܌=(>F5=331`e v#2ЕQcoNȁ}5p8&5\} ~>hOث"D,jdkm/?jn aaaXrW/,*sU3}}+/)X@<=3 Ͻ scB·"#ju{m9_#ĈJ RWM_(}Pe\]c{ 3'PWE<۶UxU-JD9 |2.S~-0ξ㱥6sێ}c]T$\K&/+ O4f>vW@Ο9 AZ{VX˗K+}/7'ai8d-"ӧLƠ^(*,@ \S_ xX苉@TIXұtL VY'Jm zѲiZ5Ǡ88{1o"d훒Θj !No7_)bpD]e>}9[>2v Rg…?W|k#籀tq&5e"|3{f 4յNuPAU4u1<,hi/L,Ԗ!bH囦#`fTZ牳ءQg}:`-X:3+HA֞3f`ڴiJ_u=W.7a͗m㛯υt͂ƙ(g㬦k,uхALLYS#0 0RP$d$lӚQ݉u;y3cW0uU"*P]^נgy=+ z՘Pk|Md'')HA֞@H+}\indf, gǘ~_aB]EbVN_(n}&ﹰ+qV7jR9ggOHoCcpZhힼ3g1b@x Aw|נ:s >}, q|J.Ta/⓭mOMA x{{cJ_u0:vAԙQS,䏧>aչa|2Fe6/Dc0GT 5㬢.k,uAqq&nǎ(HA;r㰀0h:=ƙƙxB9qBIoW`]C x.Yt~y ƙP{ ggGܿ u5.S[iFrBgwKzzկKjR"Μ>sgNڄ< mE!|@>'4[e2_He:ub1]i)Ӟ`0d͈'ݾMtPZs\E| 33iE5?{72Rb-"B:_x\mdErrZ@.]B{ht[gBkuƙƙS Vv`_c#.]V#Zr\Xݻp% Y+{mk'9龺WOs=s44 쩩q1aD)$9V ЗipW[Zp=0Bֆ<ɓ85Se2>QP9gg"Ri@Ia>we9۾x8l =!Z1yH{:GLLjr"x΄B#ك#[j4!9!V !Bȃ8NJk~h8CCmZLHץO!B7ăk~h8S'jr IYB!#Y_$1h475=`ȚIƙP.S\ q&u͛7tQ!F $$6$MGY|ٯ3ܺuKrqzcg&Ν;hO0f2Ӓyh{ 3s!AgC!&MJm:uʶ} ?UdXK<AL{=3s TLـq1bGc^v~y2"p؟PK|\pN!&|emsŜ9s0o޼6۷lHNyt"XPd <{Qu<>nd:ju2h8`OuT k3謢9 ǏPg]T'.W0 eJF9< .;b m-[ K,2_S]iw;RK\$'<3RX@,(Iztq:}j#uAXexK8{q!_c#MoqXb83; $|2 KY#R#u8|l<^^C0u5W0cT_z_i:|aՇYԚ%_f<}zc.*1Y%vgO+[mCXXV\)U qFbjb6w^{%e ƹ qF@Y9 @> Nӡ>T. | {2A Tj>q^E BtM`88'hː`4251΃!pP,x eP"0"`Ms>a/BJIJa,۱+ |! :T#1fA,LU9W"ֵPni[N,ǒMY0M0eWS5y*sU ȹ3'R--ҶaݺuXvW/  oc۶oo=B`SިXnda8? ,z5⵵H.ԡX0<( Njx!cH6}$IY1<)hi/YsC]E2jα1k߱le?qPl*JbҰ ?slrO:z2 ־!-ύ|S`vs5}+UU$1mUXZe1Y5Oe}Kk9sꄂiYb/_.U ܜ O6e2BQa.^8̕"HNy0:VPuz_x] cHQEVeD(g߇Ǡ9"91VYg.3 $v\.U'`XpLVw^ O>^x+&9W|UDMÔEa ~Xj1Y5jrOS = .󥕾|K#*2Un?g?AܕUu}rqVtmD?uiAL| ueLH!]U&"AgN&PYDj ó>2x 1sYYg.#^ƹ #6V2UF8;S*zL(e&@,|4S>h ߾: ^d*}y%,ǺY>x7 f+qF1KQeA \4'L s0&x Ηo~ȌbTu(0U~予hMu)i:ߑK0Ll\) c, $YC=GSt:C:g:W-cV#m+PYl{3.N}V}{ qV֙48w,3*?(& s* },Z>4>l?-F1 f(7"W0qPY,_23Qw!w1s xɱmRS]Si|g;sOnda88+&cD'-n2VSӧ7S5|0V}V5=@ gn1d=4GrA)#G裏྽w3Q`88{, GPH24)?/~Mz1XאO<%v2㰀0h u=3jymTg{DKRBΜ:3'ۄ<v.ڊB r}Nh4Jgsd_9Furc/?!F $$6$MGY|eO!ugܹ \FT]aPhiBi&NDli v]HOK߶ 7{ 6ٿbq܉ oZ#1:q^s&G٤l>}:N*qo= 2j; sPW444Ξ`^ oQf̀W-ƶMrWgOHM߾ᯬ|7ߛwc;OguʾrjWa6w\̙3k}󆟑Q}Sw8g[L-s ]A| sgC1#8.J1yp_iv+2fPx .:Ke[sOHKIBCU#T qoOh3)}) tUSf۲e˰dil߿F+.O!ug< GQՕBuƍNי 44yAx\TٶW|k |^|1iW*rqXϹ4|oXA | {2PO; șS'l$Ľ{og{I e GTfɠ0ߕmj~Tsm ʕ+Gܓ^ɸ>ޝ4 /I+fWo;CD5ӲkQW g34N OTg>vis:V=O7 RϐXPSA4>c WV#1WJ].?A ys}r1);!!YK(ۜmrd DC}m޺ ЧQi6+sՌqS--ҶaݺuXvWXh{qV+s)2#&[sI26|ier(N~#KK++@W_mYg?d_8/7'aƴ)hŴcP/ȸ2W "9/?A X˗/V ?D8-(:ݿĹF6fU*Ϗ~ eѲBuNuB]ii\ᩀ.zƌc1/Uʘ̋t ,۷x {XBra; 0KHUʾr {/QЯBlLljJr<… 1|i:8 㬪WN()ޘ^O㶗eԵ+ ƙƙ .+FKS7u8OS`#l$Bw?i];ZP󟐐}4]5_oJ>qq+q3f`ڴiJ_u~Gcq7T8˾oǛ?$D р1G]˺D+MNxX0hiiU4H~kf!@ SƼ WLpY ^er8OGq۷!qB~PJc8EM&4_tq+q@H+}ȏƹ闊^J5Έ)?q.&%K /i-V,T.]ȗ^B<1I)ɨ2+ql̮h qooo ?8.(r鱺 ZwTqL33Pepqg@$ƩSpDEHGL'OH.}-=bF w-2O/va~ ɉqu<*rMur顺 )YYgR+߀ILL`aWZ*RweA(Y<Sm6vin|ɉtdv*9óq9gtAqqzlfΟw+{bGd tDܽ{ &#v>'=XW9g0ΧQk1ʨw qQYAKE9>c"sKKwOЗ$?{jp _{ڮ*5(+}Nz0s9B]F;sƙ,":M1r2Vrnɡ'ThKPV]I@ZhtPhi4D݊{B+8{q6Qeл q6,}7@!Bn\.LXӝ64h]B!ƙƹlDA22ĶgB!g`ڵ_ sWS15Z.c(/EldxqB!Oq/֮j,FggW Bq>KL!BhiOBɀ qB::9נ!PQ]՘iiɟ^J \n7Z[岜[.qHL'-[ Qضy#rzK{ls44n sZ4"sKF75Jse/08x!ZٲWhs{M{:y|$330' Mp.]8p%Arqc҂wY3۷uP̮8{qզv}hVb!cy)blBpB椴.>_7K.MM`0fd{P91ċIeggܸ~ ϞRȬ> Ahh`IlQy2_ 7n;whGȚS҃qBcPh=8q~HP=}B!&MAl>}:N*^{, FV<,{Q44XmE_2eD،{6 |3q$^ݔ ]M1/u[.ur1m͝;sylȨ;Err3)Ci|^KQ[j ]w?=uNuBƙC(} AcwY붲|2Kc ro )[cnmٲeXdm7Ԛeҷ$k5Ꝏ+t1kA}cf%x;4=ƙY/OI]8_>)¯3by;Aҟ2QWuI0h] U4]b zuZї &&TIAk1)'(X<:k34~XP);L&c)3c L6MZη3Xj[Xo%[NyeatPg\k &%oC!.Mޔ'ʩ'ʢ9*IM)/B 1e$cǠΉqv0r23g]1җaO̓?7#QE~Xs4p|/ާ0)ԯ}{ HkO`` |G.^8$q_a5{ 44;^Tt 9DbtoЪ/*εHE ؒm+DΆ71$Q$49i8y/ՠq>`3,w<^бOيy?~2޾ |NA x{{cJ_mq?ga8Eh2oDqL:,.x|Z OK.?:qZyHm5Y0Tƨ{] gTˌ Tt0\F_Zm"Tw?DS PWGyƣ>*w>H\$'z1D'`3/QVZu|3aml*텁!9{ 3s* c{{0PH\EͶe˖aɒ%Ҷ^gJVX*}s0%IX:~yBږUX+o/HAaH+j:;9uϳAL|(ZJK\Q[mYvl}'!*%GcWo;cͻ ͏Wch8xE)Xdx?~B".uBf~ `P," ER-Ҷ!,, +WV_aЕٮg^Mr\$'<;X@,(;d O͘nըYŮkZTm!d;ݏǠ)qvԑ'88?p\ ]N'Y[0ٗxB`̟Qh3HX4~3>Eܮ^;ύz qy~A$Oqxx4TơXgG|k?? |'?!1-:Ǽ|8."އQ =+V˥|#@~>yT+00 qae HNyGGt0XP>fOLĸ!^(Z iZd ,q<3bƨ>n;uAs@uIWf]Ͽ88w9*B]m+0? z}loTؚmO/xN)0mP/Z ȁz)ڳpB̟?_ZW8u"#0__ؘyTy, 80},6+#6#CW"q<V8Jr='3s)Y(";'b3d+O@N)PC̟4}dZ)3c L6MZηSXj[pI9, eu>W'<|X4zr lcQ^ھP[ AZ{1x`i2 uU8zh\nba8?Eg|ԓë&~H΃^ }zolEqVOy@Ncxb88kKQ)vmb]OCؙ@ϣ\+SmV`߯4G裏ʤw>(Drrȳ٣PԹdc*oѤqLZ *4E.-̳^MbZħgCOQoC`ϫ\) U&$Cy`]C z=os2H\$'<;X@,(=Y[uAdc*/q*ljLYa"[s1|sDoߊzǖNE[QH1_An# q̗};R<ۃGrǭ7`'n޼)O3ޭ[`0:sbŃ)U8ALLl_8w46AoO!Pz?{q1ђ䴀?w F{3=8:Gч8Ll߸۷ j+mfArqcjb R VxꞱsǠu8qq";#759[r\X4T+t"޽ g`hxUFm͔e>'ݣ1ucs")+-6,}apd!391QnE)* 2P !V4y9IO=B,L]ƨhiɟ+.DyQ[svDL&xcˁbՍug9|A!&>]amsŜ9s0o޼6[dXC3~o@}rFǢPuU{aHs~:GLE˝྽ )Tٶl2,YD6+ e2_SZRXYI!%EJAs~<gQ axwˈve\5aַ(sr^7 336' k^~18)sÓΟBkvNF0qgؙ%c/cOxa v i+WJ+}¬3 mg(^=K q9k`}Fʱ6n~!zw9{,444λhOQQN:R]Y!R9^ FzŕLޅҜ$D|8ˑ}ٷV!"m֭[kJ+}B^!ރcֶͨ+E1|Ԓ2As^> g\ȄtUW+^ ='3R)'.S*T׮]~>qޚ%Oc1g|6?=}u&N~.mʱ1+8bbsZu)xYw3۝uX_ AZ{VX˗K+}k<7'aI0鵘D |~'(Drr3WkqС b%%Y{qciRVc9=>JcP8;Ygi8>}Iy.Szի6Qgbo(6emmXΏlWrY쭫T = .󥕾|G#*2U0m3s\$'HLs6,'qU8;3Γ?9mx4V+=5{j, Rgƌ6mWo|C֚/Wۊ7_%ߖ8AܳBY0w"0x]`t(>ALL,d"f?O],mBؔ;q޽ /P8g)q5 ]0ʤ AZ{ U;r)M8 ƹ]0hd$s6,  %Wmܙ )x~!R444N_ldwVaޣ0[>UÙd fy=>Z9V8|5m1Ͼ wBƹҠ AZ{1x`i:ߑ*#, ` 2 'j5-7 `887R@z)Jc9y>(LR; YBc0hi'*N!ФV8q79 M[Ąx qlJ kd/?awZ2oct-uƙƙl¹8a- Gp'rN9 81;=&P`]37k>'=Zu#sCbɮDY9rp_Ai[6 W[Z;U!D֊B}Nz33"4yو f 1Ҫ|uYs\$'%byDcbcBD0Ct542#*(΃1[1wܛeju4Ik}UIC>QHV z{B1cTܹsK2VWc҅oĒO硥usX'g6"Y 'bAx5 ~SA $ YsG%?a6c˖-Ò%K|rD%_;p@88 Nc+FW#Yo>o^/9?88qW0SXy/s$|_߉<L;ʬ ^_U!iuNU^L x ]sB>UjҠ@l߾[l|Fg:ƺ"v Ԙ1kF4ƍqQ2q%wO lOӝn X@Xq y86F (qvq@e8(6b8'mXJPwk4Bto=A 6lyyq+X },W1j>^WGXxrM9;p|N&jG\\+ܺىΦE!3#7ڭx`M0/l1s o&3aL$|1H, 뀖Gzh`Y.@ƻsP)Hz4]>uu3APdC+">۟& e5sg*̞&Xw+±7G'0jhB֚yaΜ9R_o;xGqܻ}gO l/^q6XtN>G`{q@&; V*o/"UjH[ Mb#}]s9KYqfg6]jg`qڣEY _ M_%❣&⣷no+v;*Ҡ( z!$>F#ؙzpވ"TО=K#M-I44W Zk"""F-=yx.{'gjPQ(qFP)Hr~)wc;&ȄɨC=ٖY]aa/՗˜ &Z՛qVŠeV2?CpߌXilg=ǂs'g6}E t<>ʽs¯Pf#k7bT-pN|G*Aƺh(j!i|D_ !H:ʥ fR_ߓjt]8O T[4S50m{mV{}>M#+V!]^v(=m09ҪXasߵ7,Õ*(?̓IXNpa"w jqαqfLt&r +aRc̰1sl8A0fIO{ zaX3gaaag6Νlaqƙ_aa6laa6laa6l83 0L$!__ZB{S ߁aƙ3?Ӕ?99t*~40EFYo0ut۩=T晍3g6L?VUn7?z33R zd:'ݻ~Yz(cWٮ@}kҵj2trjXwαqf8aުP|G̘6F26w\R՘t(S qgF"rhvBz̵VDYto%P]+5qVr/]iiiQ*SDjj3v\98[cY U쁱\0!8r0EX}3|&K ®mƖ-[%K`6?9Kw6C38.}.ǸQ7@ k1 #^B/Ł 5̢sug2 Oj/eDM#じ@lx oCOk8Y8=.uwu׿qbؓ'O4&?oq:ƙxyEcL%(:^xt2 9<H ?flXf 6 唯t* 0Iz!lN-ҖҠ/@u/CϤ-zT31 >!;r)V.aʔH_Cow>k#- ‰ &4y/tY#|mܹsڽr nݺE}| Z[[.ggg67R>̏sV@Jx*fVz>Qx`ǚ ױ6- Dבp7VC|L!6]\"d*$=kڰc6cw f)WY݁;WV{NxTY_ 1#:f"FV/_=^P(lzF {]0?/~a4hl%(cl9q&]l7b_IQ1dcG8H> I\|>qp|Ly'&-؂4޾.)>G]L[9!-I0HtLpmuZk DbŠUbMS8vGw)ڀ+͖ !0ƍv횒2 ƙu3g),RqSnDtoM#H\|UX߹;f+/Ls<࢘,vLNIW"p1J5N`!uK|6Pۊ{ raJnՠ 1"?' QkáC~j/'jWc&\.՘ xO4*l9qu)uI& tMIG^)'1簍k.1BEq -CТ0#. 8c9$#S#cG4cҔpXY &ӰT,@17,+DMj?+g%\£GSBޖֆ}Zmgy1mScÀt05άsl8?l)HR/3|q淕 !(jӝƊB%k#^]TE0= fƽq(vƛVm S=m2zƙ?۳܀ԉҠ@FZkoߎ-[PK}a>q zc\;kj5#Ƹ(踒ƙcg.${Z&bc+^ɶLYe<#.pEWW]ܻ{WV/47; JiAg:ƙWÄLl%f{"'m(_Lp}F FObc);l>?+ǂ~|dyBajG\\+ܺىΦE!3#7ڭ8s łg&پI3ʒwpz`o4=L-8fmiH:aӴ,:*K ^WGXxŢK28u ǂ#8ն iUGRrEYhhoԾq5M-r3yYLY4Ӿg Ө]6C98q%qb3Ad40Ie0T~g MI\2عV{M df޼y3g[sN7>,އ7{q{}0g{QEǖ!ȇD6ۉi~{+±7GGsug9ʘhYpmu"BQ)-56[j11BlP_G{o L[4jb;;:)LиV][:ƙ"S5 S5Nn{5*q(vK,;GMGoyͽƹ$'gX?O|}mcg^8~m8[hPSDO?j4W #L5 <M;ƙcH>U@O՘8ۏ{\ ^5I>6!!e*` ŘJ8f"{C8foDRV* jhes?fLՁQ\R8;XXkL EH7כqwqͿЌ+Vi[FKK3A.y?jT.l8x%ØQZ,;JJYobH ‚wEo:a:Xv#&qYT dŬSM^=d8@FZk<==A-=iiFgގqq.9 Bc8ܛ`Bב1!(?̓IpLd ۄm6G=т29=4GWD#h( [#ֽ G@7UQ;:ڌk7o/zg'hmjj@yo*78qƙ\o@jM d4K2/2j$ƙcP3úWg.yrr&4ֹ5U br0h8 N6=9wCF Ƃ&hM y)?/]{%X^C aEv3gf0uo/hrOt&4Δ3qfƙmH/W7"]C3z2&SIv/BYf{}SO:"XW.S-gr~dI =\]P!sjUy)zB>v Mč[ so]KVy-w+ Z/6jb:ƙ3 gSp -y \niHK=CPMvGOTt^LBN0ZбifCĺF`0 XO5(͹=ކ24se_KSqtMMQZAISv!Zbelsfo4x9ss){qcI gY%wÃϽkUXTTVv'pg pg pg,pnLt8/Y8g,,(T8 g p@8 gp@8q gp@8 ·Y8pg,p>=΅ 3Y8O>,s1g p9@8 gp. c ٩\9gvne Zs]߶9}+x0,XYY8'cٓ}5vii-do/fR{K-6r84¹Ubûxi<~0ܿ@RkJd,񜭭b Rs ,Y%k@7w]}zpb'u{=9'(ńŤH#!AkSI?3LŸqcpMVe;g6iIQӇ8 q6zࣛ}Q˝o̬ v *EW-g2 U q1on~ҤI/zK~^B/Vqe?[7>r2_b&7N>+|_H%{Q@ xMo#y&L@BB<'N$?7 ̼ysmMpW l>un_ן[|t8_U>tn7뻎G.lX=LN"9_Or 5چ6BG Y3/3X6mm5kj51c:v }c{X1sc7%5q/͗;di~<烉s '7~Oc]>Y{Dw:^y,Ƶ+_@qI!9Y#οhnjIO僚~1H-QmXLRh@38JI GCóNB^Wz:11{;wm[1h̜9W~K>&־͌I(R夳7 drzCGA5PGLYÁVu/Ò4CZ8_iS4c[رs{K׿t-gΜGz M5_{'D.(!qR41sHF5'Pu1x;}jX`TdןDr{c޾9o5qa/0zHBc^x>`Y8G<Njal:Yw9Ѷ״}iLVoWʞ_!@^O8^}u9-dޘT^5fmakVN_8ܽzXtIǵ19J] 1yF+Rit}9J'퉏+qn:Rxe$޹=m}(/{ӶYi3ͧN,>?lć'Rݿ 3w.Lgyiv2*{g\;9g!?+qۉAȱcMGD vnK(9|0e*Dq_{oۋH ~Ilt94ո{'ϥ߯B)-N;'2me|CFҊ,4KXL Zg gkV3NOix^&6i"U}f&O%eϱg@ D5a~W2&3Y8 j9Fۻ3BB5SZSEd*=qk=n㞺iG5SEJH.teƽ¼ҽs?p[},SMDIE7.Syp+90O<0Y$݁j|rcشe M-ܾ1qZ:;(,Rsvs.aTY>$AVˬȵ4u܍OK7lFwyόXoҴx)obKy(fscYba5jm};ӣ"0Ev,Y Okɢ^Ss5'xi97ɹIIV&zQ:j5z٣=ż7i{!["~yn7&1%4UzxNGrf,ީ&3.psSypY,ޫ72+<||mΪL~~k/C]8;ÂjfP(j?_m۲۷g~p.k9oMz_{(+z$LCql4f.w۰WbkR />Ϙ8v\Rэ>TmmIb<<͝CQO,'5dlcvվkβ:3~NLn~pMɹ~5чzxp]B PqLYscoQvSPԒɒ)~B ~ PQwd!sR8̝̩IL_Axh~Pg!W:m~c305deeb¼Lz5nY~>WY $mnAwv. 0<<'DrٲoQoƽxO^ifV1"/j̈վ_y 15uj-l||B^2|tï,MI'ᕒ.^>eTgiQ]VoejG_i7Ȩa, qZɖWPlbqEugX1e]y?cH@ Kk$^fCR˸Ev~+ .Ű˴L(lf̚ϩlcnؖe+=1LY&5}ER֮(uo$,qJ-}%7Q/KuuSǓ˞ӈ & fVj=.}[4ƍÜ.uzcn# fq0s4,wlG;̞y15'^ugwY.RJˋYq֮_R(gP_LR^@q]6HޖČA9o`4۩52"x%cB}:X5gFOd~ͮFG3 &L]2?/N!@>,vfd]cH`}U<{]Y7 >2fڏzo{SHƆeӱrvJPwsBGYb vzhyD1*$ג 1Ingy6F'|os:vf o.9uzz/pF<719X2߹d2/~W4SN3C]8FYTkJHHXKF96'ph CVztvwe @ Qea4(IJtØ6T1 àW C\8;zYpi,]5((ıM)X3 MQtGY 2jltoce,o^}i'6O YsAv&uUO;ÅdL6_|~Fi @ Qe4i"~̴MQknJQQӇ8 q6\.-0;o¨UΉ8{8F"LS\'n2W P׳f2Tu2 DM,YBXOVr2/۸u󆗏d[ȼtQZ'i䯯@ DMסW/BI8h&RG;;bH"NzZ[@ (5}(gA@}e9?1uGH@ !PӇ8 qajoèV 0@@ j`􀋳!@ @g@ g!@ !B@ B8y@ 8],Y @ Y }[+ S@ 3w=/C1s!8 qfOn_g tן}zG/iT@>v>O큮zuiḓ(B*&m;gMCI/iޤ Lqqf=o^yWA~4o ='B_8 qn;[ܾCczwn5ʦc0}L5ks5K},KB?QAf%M$7z풉^ i5gJAY~>'h p֚&\Kw'v?o{(v3+ϼIgo@vJmW:D(;s:l$8f -#G:q"-CѿT!",Ĺ,}&/3ܺqUiÇs:d=_|OgҚ‡׻V|_H',g-F>K9t[߼|8F+p;׏KCyN!f#'͛4<>=:{as'7OSڽuL g;asjOAq,}I8Íxxh߹Wm~#W;f\./Sm44-^ZQ4hZ(Ca42SSyLIiErK08MmdRX)7bXMQuRX܄&{d{d8S>!m޶C;j4W-6{6~|0i6 :QkWrL.A\:>!#xiajuwkH-尢Ed*-t[~w+́q.Bv;eQ}I,Oc)G5}gm~pԅtdV">iZN_lNo$_/B5lA׿G{yo`۫R(oʦYc瞼+TZ_q@-IX^`.IXqc'x[?g#^rM"Rjn%>,*36d8AAl2+G8;mFٜ>y gl]M*e Ņyfs-47X_CSV6mS_؀깷jh+̤\7RMWS["3,P[,ӣ\d_Tό (֩QByñFrヘ>y/yÞ {o5?u%I1i;Mą%ݫ9K uqEG{M5^%|O-'Wrb(o$LyiCŻ#YuIs! '{Έ%dnClM!ǎK {B@ lټ91YI9L{M`!kRx+9g_ZBYyrޚYnQb#VPg{Ɔp29BsHO䊳bM^Vhijek347PWC}mRSP4mVIYfm- so7v=c-d5ʍ5K(oaRR_'zH'MΓr9!?Ea$i>JW=o1o39oa+ǚL{ z߯\cq[8|6\qyXTyhbokplף:*_foگ3W8[Ip 稫L~nW8=Zk׎.FLQfRTĢk$"9ŗi׶c6TA~e f$j%MPTe{pB2=2񍿦#͎ǿq4qQ=C7'!60=49z9۲o=/Ͱp`~]&+C,<6# KCRC_IMeD2,a&/v.Nk+] \dR$XUe{7]DN߃Be ͨ炘0m!/`{54` ؕт<mf1yI")rlqJmUXA^6zqX 2QZ/9T6{ ѯM8g!z/y ƭ7|4U\v .&$5n{^lQA @ T@"QMRPH505 LH4Ұl>t>'FGIWAcmZ5Zg"Oŏ//n/cS{+7Kknpb'i s?{ >3m-MqrL9Γy`a_2fӎ;Ki\4d2r!ἐ$W+Ecz:v^ Vm.~>tOOWgNmo9Y$[, مmiy9p^p^rF5KL8/&gp@/I_%gmÙp^H gPgp.d|p 繙 ήg5lΉQs\ @/I(l/#l/BYG8[s,4A8PNζ<"] Ħ„m8O] `:2Sm8{}Lf'V缼 _ἳ J+9][XiUzs,IJLCo)P-&TՊ?RmTk9p.;^W^n(:ㄳ^Yښ],+\|SՂjBE8Sˏn*8Tu:OQus;%5hv|巩7Fm4Z3{fq` @2ZPQ @͡0m:f*Egv\3_'zėey잕'w~sr}+W/0ÀXbC18#RLXRbssk[ӗ=;?g+#<J)Rʟ0|bAL 1"VČCb'bS x M}өp&3kOlM-tf!j{7&˷w퇿0?uߗ}RJ)'0ÀXbC1#vĐXSbK51'T_6O mGRe(ަι>ܞ(qg>z?z2WJ)R~Ц#bË1$ĔcbM̉=1 g[ӈ*+5UwK:Z+#8͉@p{J鵁+r~IaSWnc\@)RJza@, !FĊ;1&ĞbҨs? kOԙjo싌w|歫~7/l*RJ)0|bAL 1McpMc? t8}HpdJg~y~hywY{}RJ)Ra> #bEhf,)5H9d]#s5Թwt%-pV s]ҢX#㢔RJ) a=̇0M!F يFu> ϶̒7W!zظRJ)'gX~fL 14ٽN̈>$ tfcD#*RJ)za@36ĈfhOx]@/WJJ)Rʿ~3FĊAsS\<۵ Έ h RJ) a>k9n349S0<۵ fσRJ)0`XѮg9lV7n7DN*I$]Us.k>СH$I+5OhlEu$IEcS`se$IW3ђ$IR#-I `e<IENDB`kbibtex-0.8.1/doc/document-open-remote.png000066400000000000000000000015201331300026200204550ustar00rootroot00000000000000PNG  IHDR(-SXPLTET s2;\eYdET%PT;QbnXk vv?` }2>5B?[0:JuE_833221101=P~P~R~T~SeO[tIr팵钼H[Ħ׶xntXmgz=cXAiz~uJrPt3Z/P<]f8F/QytT0?K}([ Q#I\}n+JqbFu(G^|@z%d%^Mfŏ%EjO|8b0:9uυms)s(lXzҏ!@c9h2]-7@ApkPoolbPDl9ZI{Ix"s7JqOvꆫڂׁ׀׆H]xPy}~ւ؀؂؁؅I_{QzރڅچڄڇJ_|9gBwAuBuDz'DfX݃لمقوPd~{|zv|xC#tRNS#պuGv˹Az{|}~BC3IDATӕ Pw^>!"QLbaMbR gċme$)-1-n`ϔ~?9P䚖op`DAZ4<k>8F'X]Ч#^򚚚7Omh0R{+KqF]y*Ks%Fj!Cm*J"Ad4^19[EֵÇOvꅫڂ׀ׇH]xPy|}~ց؀؂؁؇I_{QzۆۇۅۄۄډJ_|9g@v?t@tCz'DfX߅چڃڊPd}~|x|~~yz~؁zp%tRNSIK=ɖպAz{|}~Bǂ@IDAT=A@m$"ps bĢ<ȁxc!Ph<%95,6d.+M $r!*ds~AGVX!GrX @DO"V$"^76AAAAAAڵklE,W jڕ»:k\k#u͔t뺡v\a]V8L:2WpEj.WnK\[؈^[ᕌ  f(K8C@t@,/lZiQX!M/> %6 ҉gKg$R:RIcFR4a=HPu 9au#tm {#c$~Rri֩֞#--eu$Je$$ 7 1%&DMEÃIQh=9ia@Z$[H/2@`25YbOyQ F'$$ڍ$ї"\rD`TE:Yz*1v稛mKn锑DP!y ȃy ƯC$ME8EqG31*,g my=N6V(hcOB01rVI,*cA&2I1Hf8#8cD?Ԅ~)"AeWRgBubVK]Z$]]]և«|{͗_U83얏E\whsʬ 1f옍AƟ%QƜ)7ƈ4I1fz$Ih~>q,~d1BK2%- e,].^A0TES |n}^>puOuXcj&z/_6޿ŝơ.?y&V<+;ڈX{豖,CerG;aQz څc!5+b G_d#5yMtIDqsŠX⇖#dƖ#KEWgiLY2wSȮ3ܱ :X"z/_2`"áFك`&vIӆdoQ˔?+Ə1n1b sr1Œg3Fv6J "]\BdI11Ŏ,Fh99 .~t]R OSCzV"Xx9V>"<͍LokEUۋqׯY+`ӯ.\L;xjXxqy.]<?\~usO`N]g"lb}t~1^8T$'Pw?'<vH3 /o,/wʱ&l{EZ V>4ލ îP6YwQjlr?6󰣪JwwX8 ϷUmłㄸGR1f AfCÌg@#)^^#N3/!:-^;7HX⇖=ewpY?˥KQ((D$u8Ӄ._[!"⊮kj,:{t21#Bmz7QԫX<oı-b7iFJGrsPj;>nl%h2_w.y[ۆFT[`m}=޻l7:+vT#Ƈ1kpXEWpo4>߹ %wdH=5K؁o['9~zyK++lfьZ/ckN!E4H[/ƼMCf|/&P(K_8ЀHn,llH6mx --&!9T\&*1$LH$G]&5 Hő9uF*S{ҬRÊDTn1RiCIv5FHHHG 4-j$$BXIc/۳kg Nhw/&?p7~-_̜]U-mU۰`&|ҿ|sߊ&lB?M/ +Jzs˰ʝ+PfG]7zhުi,։ۛ0wyjFP,}g^3DE,>\[WßYcsU>u{Y+AWO+ia+c0bl+aYf8cIClcd}8V$,FdYZ$b( . .+R5f\wz'uC55ۋ[S!ƥeb$̀=tODR|\oh,}q3EwTK1kyL^ocuR}_w϶؂ucM8Z*^CUc݌/xc1?$3e0+\g΄PKCm[{+.'ŠWG?3[rvpgTt)cmяӶ'>6E}f>6E}NW3vgƥ}bB;`fm\t,!pM<#Z9 Z5b\/W^_E/G՞xx󱵝xw嘹tε;KanƒPۦ6FYQEAXa(ϖ6q4~g89cNXX*thg썭--,|t) 7|EұT6g6)GEU߲k.\7ߠgi?]vXN?;1}FLۃg]3^ٛ?|Qj*O5-^?+wUԧxmCP0 UYkv:yQw=M8bf͟sx3Vd:-fŏJag ?65-qy4~,}5jC!ƜddVGD3[i$aVܔv9%ΗgĕL?e}d0gVбskGo:^~==cui~R$nܸAt.cq&~x ,y;Ҡظ&aĩXU|,wWgWbV1q6^} ї#ޢ"_©'%û0eZl}Z}&׀c[WbH%&Y/,sEPf ƒڎqW UNmC, PT)baB"laGߌHw1 /^,f(L%)5J$bֈ=D32Z.X.QcݷG5fBp cw=TQ 0E'A2~fthDhBj`+|1$F*vXMF7?J -b\~KE~>o2V Qf}hVFcm0743"+e}h[V?Tp) 0EQAff836!!zQ&V,qJ.ʏ+~`Yr~lR`ec>qF4fg҄97H'V 0"#^(WS$jV?sŌ+eE-[FyEE+}U?>-cF8O=? tEF Ce`9l|24T#;?J% 8z=OQzݸ|I(?qfupCl3D9 CTbYXȲ!Tl)LQTf ilZ^Bpc + IȐf0?Qŏ;?Tl)ؤLQT?[F8!xƈ5-dNb&iAج K8(}ň,s-E{=]p5; [V{4{x?}crwQ{(P8͍:nK4rXY.cZ}+,Z(-i1ks48b-z|-EQl)n.7nܸҥKn9>ΝDU : :sgOmxcz^?}XS|.F<-p^ݝ;uoխ/Pq"E$(cq cA10cA JAD H݄C7`3bt7v:eUZ>kMzv$ BU,&:=|lnSQ9V_eϗ|·:$󖄒S MB[l5;7 r]:mUPPPPPPPPPP<ʹϋ/ S#/EnNdǬ;Qh}2w bUylٱ/#N~["?bҬLz~=Àp]C5h]ec.dqv//-&Vٷ^b{tZG{?:[/~ɢUhV2`0'k"eڤL1bA_x.!1&ϛLdepǯ=c6bHWs=1?| \TIXmێ6Sr(үŇH4\t?^ԥsj;tơ;ߢJ.S|z٢Dhy5se_0tQUMr]48ѿۇ8㤩mx?mr6$K jYXsST=w=.%Dl0MvQe$B xXb"aKg/ +c02t ٙ=+_ֱl:ľx;G"9_E wdEuycǻ2 q2ToوoR4ϕe4ٳw1ć*}b[OZ:ICs^\@q\eP/"McC6fsu K&r*D[M%Lp哌:{fc"fޗh2jVG?$z"y_+(((((tgC5XFn1.ř|oc9~0a&Rp0fna/^˶hn4ٍ 9A(Ri[h$ĥt5ͤ8D}V$]k%6bԼtXV-nf x?n`š xjv^3&N -z|)a\ ՙ!^I&m9ps"}Kwj[cos3OYр.gg c}4|йܩ1Y-_:gђ݃݌9WCA^>|Fs9\q9~1MY4HtX΋/M=92 +ELEu.]Valmkꤚ;v&n#پg ϸGHW﻾3^½5Fz:WB{>F6$,f$j]|k<zLjR׌x.ceF{f{Meq[Lv}Zo,ayJ E/8 &3x 4?=#PcC9tN#?<'s-h47,˷/Ɖx7`zF|m?/9SĮKyM,gKS6=eo&%8΋i5gU,iZB̪<>̾ =k$ 7+=CetӜ>gLIs$3y8J mMձL!ُԚ֘s<_f?៑c*qMV5٬>|Cxoa"qy=mИ$d3_ɱǺ;cbOۮ<E5KM*.ܑjp>)L+#V}u\2'jnF ANxK|>=۶dot˞]>{Pn bg;*-j(=5dn(Z.XsT%c&۱r;N;C[r뎣rs;ՕrFwGx$N&[#j}?  y<)(q^rr? YQjG.Ӏ%0n:w;Hw#:)M(gKS|Cٸˤ;\8z-̠x:QKk4$pJ%}?cY ItI' 8c0N#,,DKdg_R$6b|HnV}I.Zƽ]Qڵ:.|ug2x&\<8[/a3_\-{[e:Xx4N Lf, u>RgOmK/3q־e~* g)A $gȄwhGuk Snx=*{08t:scqqu]kԼ%:;[cJ躈L*[;w@z5FC}3|{n%&Э+|o7=w#5嶹Ick2d΁_= s.z/t8 \Nv3RSTZLնߓ%Ҷ#8Mc~T:'굩.=w-O9DW<97Q%ul37>ko=UB 7Qk08:оm> cE6m)#ƝP+|uOOXP| oajO" ?)m^Oאowglk?#Qmh1o(ѯ+$k(KT3s.R{W^GAr<&s$Оx:‹=vi%4$D3k6`F,&T\yl pka Vήvnw AQ5Av=7 h}'^d(Jgl5q) ;G78벬Z:hI/{,]']bwX>j]:pc7m=׫S(l+s=?\0u:<8qVq &f{F|Fg~]ezk` 2+b0b#^N6)(((((#z0cog3굲tjvGVXdf=oﳴs qȮ'߀5vy[&Щ1zϸƞ|<#ius{+^,^ŀZuUeR3`zFBLu~ ,"VhITUU޵M]$SqrPLclM;܇5g?h/]w UdɰyahA>M!56+((((((45m׀t p^tnYk UMtX(MVmn,/&~vO9#߰_x`,`t >1mn V)1O2>.F]&>~{^ʄ%ןٴqj1}2` Uwٺ'{ 88៥bY^|=(^3Z^גm34FRhV2`2ҩQGg[F*_r%~ȟ:泵qb!ݻ֮++)"N 7b-jdziDϯZ|m5Xŀohʹ{|>zXzdT MAAAAAAAA1_'D8{bun3!l -euCH|݂f6YƘ1T@pĀr*J, RT/5E2Y*'ãa8a'Q(~V V}+DSZ\LJZm8 wkhI(((((((((((q%4TYiZ :>M;qq68GY0kbh}bk-HFG[ ͪr}ҺVa~-YAdV,4 R^Ro'طg{88Ë-﯑i5Օ?ɲI響VbU4XV%V'*F R4D 2xQR@f\2}td{ѫzfdzNZy߽}ΙǏQjZEg%~Ziiixfdz;רhBۄ;{uS0 0?޿UDؕJ/=m?p\{x;èyU1(?}z0 uaout}`τh:vv9M0D l!9@ 2u0ng%:] 0?U r[xӖ㢆-,L&86udD Oob c1w2x۵xJt y왻X/y̫:mVUW]:0,,Skaӷ_|33Zfŷ#)`< cQKsџ{r_٘6[?(bff&v~3 Vw=?`~lo|$,5n1 08ӝ~#>~wu3{2sGv̌A?r|&˱;qz+{OD|Bt -Z?i{`D|?xn{&qC}xǧv?흍hpe9e\s ,cy~ }+a[  ך8!ֱ1t/khϜ,`KB~kѷVGӜ97w@< - B Xw1x|B,-Ł;cL`m)^qgT<;o,S/zv::Kحdה vv8|]@|bׅY^#;<o7>q|a%Ny:97`*6lvv"oZ0,, <0GB0 :eѓ5!}+8h9{sgѯCQ *SC.Es)=C9Rx3{׼^2Fyu߉fl<;gx͗wƁEn}8 `ܾtߋb,trIn[[p#V_A77*2Cz?"ߵK:<þuZITQ;魝 팑߀u矍l<;T퍵8#~c\w<D0mc$(VWauߊ+ox8덥roCվ澏Ƕ[=$GڼCKB9 (P`XZӓ`C"!$|vb`]-H_},Uaӎ 0Y)bk+L-ђ`[J{7ǙNXoRߎUoЩ:Ks[~ծ9]onOSzO i{&~VxŏRG8 ðp?-QB(M,$5@$ 5JEG)< a:}WaY\K/1֔̾<1}i>:} Y#y"> ֖b}OɅxzt!uGܼb̬9N/<?\Ù'{bnsW{ Kؒ{oaff#$l8EsG8e@S {,! S)QO`(\e=X7nĘf[NZS`>({ i-bJvWC3bgY$~ J6R3/SdITTYax ;}g<2;+0Jn7`W^yel>3 lXA|Q{  CČ14^4,n]{;a,ͺTa~懺K#8,, <1{,FAxUx#qv9 0>܏[0}>)= ̰Puyߪ!oaR|yV}1fG<מ?x`-?pG $u|fHAi&~M~(8ϵ^k{Ymj_ː7` a7G`-~Ͱ|Ͻ}1k,D0,(ǃ 0}/ڍۯwcnMfP|C>+Fg?C7I# \0{h3g)Ҧ'y= ~/yH`c9$AÆggqz0,Fce9prXl/]~m1- jp0r_[9F~΢I~ 1~`@5}幒pKӷN')lǥ!Pma``mQ)ob{^9Ⱦ`G- hɋ`JQ|ц|nI2"flгSb-q ()mK9߲0 nn' 75;za>H_]mi|9shi3uHj?՘:u25^d2پ|kI~RzFrH3הQO$K9gC>[}Y;[)Ն2yվ֩#˺Pk-- hIC:DD{}.Tvm \ ߳j-*=qM3czNkl8² 5~aYtVz]hsmrӕy}ŞrYa zq\ǘkYAzqA9ϸdc~h:@d]eb c3^: >GrmڒþɎzAc 7,I7Rڳ/yk|O5 ,XNpw^> u>!9DM{eaY-wbyJg\ж6YCK ѳYƘ1ǽb_]d=('ՠ}9S՚ԾPy:ْ g k6b1gM9-Xgs,{))-+ t8DC~W1Ø{i;U ؋Ԁ[b|=ת^3?Y ~4@{0 VָXBX[.*VuNUkSݹ߼eo)sh\ 1si9N#Ao<',Z%n_Lmʛκ'Aێz$.Nk}RlecΕCj ", 0 ð[\pVy)yr)W_cXͼ7cmA'59Ϛ%wPm.@sHo=^e4s>}R ,R>l+g5k?PLQW.W{^Z)qԷ7jLG 1us`}~aa#$gj.2ƙI[-jj~6՗m:~71~ٿ},=r?>2mus69&Ϩ,n;+~.t-⹕j6z3.iVaa.bndVBj1)cc0sb񬌵Z4Oj}5ƜuT3\jK;OI;vٟOg_Msqtgk&獘ـGWu&/d_|u_-kOZ7ا)9=kȹ3/[%FɽH}EYaa631f 1]qf"hu hiߋWms3.`\sM}q9&><;\c%yib7- %n4̗j'_N(^\zSrk e&q[ΟmSΛ", 0 ð?Ssyd=Ys2.i8]Mh_ռy=7ii/,/981|rl}\Zӽ=+Zkg4[Mك0]>~نk}I", 0 ð8{DLVdoc^2cK<830NR X{BcbNbW? VY>WNIzk׍lY;k}:i/=2rq~$Rj`lI I{TX<\Xaaƨ 3q>糍2g$Zlrfr>̖kӵAڠV4_,k|{--e6vl[ڗ8r~'s68)k J]3 0 cϽ2>6?0F N!hAUe~CLvr8=%K?GbH3ɽ5:XGRZb|ک}g+J=W\GבsR>–ZmO| ?5w>sNg'sSgKRI\,0 0 ɣxf -58Ź4Tz>kه} A5c ;-d] GP?/Lkf3e}q0&5oArhes$rI^#zm_9º5QH_u`|ڇ3>O;932c̥f~E", 0 ð;uc=OOb]mXV[QQqJk)K\a|f S?5Eseٟ9'Yv~&[uĄ9>Zg_JOb^Re]َ ̝̕ϗkk̽ݧ6offa GU{[+ӌ\,0 0 s*W< σ)IH_Z<!2Pb}b\1/'H.5~6y9數z$ύٮ!\ky K}Cڱz}-H`5&/Z0M4M/đ~1BǰG_}hyy@Kh!(2Y#Z01~=>Ď6~AS>VcgX7[H999<'~=Ԟ}c(aB{:iy1\ø͵$FΡ>Q<[Ie֩P\e}7k`n5]Y'p-}[P5#k:f-< ا{ ՕtXA{icY:߷ii^{u@J~k9gvj۲&)Zsd88\ש}jPwΑ& }R̛S:&3a/Q\+,T]V^i;c_^.WA+V}ks\x҂u|%y%"@WO:Z_v'SE^({y4Ymgk{s]5~o#gʹ|߱/y4_%Mؼ@ Z#-,L4M壿U}'_)kgb,kl_~fu1eL?}Z|'-1h>ԭ6R+a>٦=pI5KH1Kgs 5O9 \+9ɾh~>|ޥ-㤼X%Kl{>{؋cOŋo2~jj?Mcp7Wc >y,d-uK5j -Jkci.ۦtm+׾ԡ1,Ɩ~O5FG[y}@-\V;$TH=itͼt?.>t=effye| |?;p D 6sl_TzLc}ت?cЏ9O^l}ک}.֠gɚ@01?Xcir6hv3/;9Gny],.Ⰿ`} mqpq}-εxEqf)&3wNNsrv7:P1bč1D:ۦEA[DACނ G<~[e?_ׄv{>~VWfV .Yf:#Uhݧ7!]d7{bg'16Rp6ߌGG~u_"?j{bgCLb=>jt ԋ?ނ.σ_΢ֶ5vXynA߱"eUl"*}u/czhqU/a')3N4<<}-VRGx&cc[ҧXT\6Wɼ3X.ʟU~ |R86)j]4ǂExo~zARU|v)[ؘClx|d:[6g.CBR j_5`-yHJDP-&9>1z|ʰg<bҞJ ]iD}5f<(.j;cTlIGrDzJFĥbf½7ʄFF`B</c:y?gR9~E>;a >O<7E zK{:1/oȅ-?ފ516Y˳á:<, .q;:G׽/j9U8ps?V-2ԣޔW{F&1]k!Χh5Jr;9Ȍc|N+pkҮhiL| EM ff1of{Pg+׽b "#߻uBDEm{ L/HK^$Ǯȴ)ʯ){ȗy^Z.edVb%Y!~O#Š䔌Or=,+;v~`~g0ڵ5('6'zQ^*|+=ȇ-l5Rő$sDNgZ|x )9+hȅ,nþ?BR:] }λciv=O}p%@E@¿_@Ny6bl?җ"%t\MDjspl cnGw}|̅g?Mǘs"C彌COX kctҎyԶTFZl; ;>i+5`87U#\w2]~ϫu%y(iEik.mEμE٣~_+ul:|<фK8w g^`#Wݭ]6`( H \[̾0ⵛ)[]vD<ӎeEX?.-<$DhsՕoK7b7a]֌;Ui\^xyUY!ǜ8|??X`㹋ٌZ]sa^oאW9N@ijz{Ƿ\zc|NA٩P#9v4>5`OaEqJ_`A1M䏰S(}t(wj^JWԅ֮H*ҦGgZ7ɲ/%jHa|T,<+EJy\K i7`, #U'R|dtwe>Vd3?e%󘟿hiPwk]>/׸6R/Retzrk(^aNI;?4?U|Rɓ@)i+zjUe ccQ&֤h؅S./n<-e i;ַ y$p:ɡ#轷[3ٌ\oTaS6ףػ?BֳG|-S?eQ _W| ի]h۹<|欂na C1Ob)8Fޯ)Ks>GO UDo?y Koȉ{ªq/:#"/BI">XEG+)yc8׏Ɔ g|҇Ȕbn΅/ok4ȧ1ά7wZ?}M yc ז}Y}υy.iwvn|n8рqƘ^Y}naQuAg!vp 1A/l I d KsJrb'[G7'$}O߆O#&l[4Tnm{2_<%"3z_SZs,6ajjd)G0cZ#Cl Ao1֦1zyjݍ :INĹ`#JYķqi!z#dz=mF4a.=O O| !+ZP7РW%P-3z\ϡ6ն#z>m={[yEǯ<8˫9IH7$#c{BV'oԯ(zu&:LIFT *l5paBVn}+!1ù1\d X%?J6a[/'dW|䋁^\˰8u3Scwve?ăUӱ+(}/"B?g|QQ{B)('+X\D~l(|-CJ/H_\Fmz8c-LJo? pe!z͘ӯߘXjҗbsq="*{MƼW-noEUPoלh4cT"k?rgbnz {5=:|e~1MkX9gzw`oawu6`SFt,EK{ :&bױ#v.HSe kZ0tnEi<:Tc.&"gϥto ;9K2QG!g$:$o\CNڒF^c/MM:H^R࡭;Q7JG,3/Zmr\cͶ&5xoy Uёc#Aʺ 녇7/`蛵#6/NA|v #BZ5GnG;gWCAnh6MCf"*Aa٧t3^Κr ܟd^D~4pzquХ^r]%T}ø?7644`An3vrC 9ь#>1Ǭڸ t_P<1iG7~?Y"GykR|jw_\HY}~|LsiDNi6'&15q cGekrQW96}h۩W{y}r 3V;SQs䥬~ζa7]3ek޾NGBwqce1Dfrߌ2=ޙEu}?1o_S53ݷsKCߩԽ9ns%v = ,ށV D&==˟=N×y5iRwt0pfdcnQ, {*jzm6x--3+ſautT/gL^-caŻZa<`ńȸ#Щ rbL m0a000aaaXXaaaaaaXXXaaa3RR* 0 `0 0wcaaa000aa`c; aaaXX0 0 0,`&0aaan,`[0 0 0 V A/,`~aaaC0 0 0 t 0 0 0   0 0 ܽXaaacccaa 0=,`~aaa;"`,` 0 0 ðQ aaa aaaMXXXaaaccaa߰M`ga(m~oCdQ!橍pM_{ azmH8Ć;0; qa+QX شiODB%":uMT*bb"c+30 C k w,qwYcFVy#xW'NCo+?~1o7P_ +fg.GKx;TJ 軠?"_83_0!n 0A/IbHļm?9Dj a==04oji 軠S&38q 1GQ lQ\U/+9Q1):RXOe_JKKG|1 |1ZS/}7wqf1Zj~y˗Q FGqV,t.E(ؒ%Pt< ܋#o,< }7,`8 X0Kwy.:b͗kp2)M| ժ/i%GdX0NXz{{aX XD\r x[h zK/dC|Q*_Y/qGlB[Y0N,`,`|'(  { ٢G8HH(OBFuTf|ςw-`i%nQ/#R0}v^B._宱8{2_sHnj_ nP1Xw@0G$4دB38vi?(֠_Uؓ?v aȭ1c@Nk8XӍXD!2v0QΡa?f+n}eD15#d8gQHc_ϡEh}-iNiBߠ$fpeF`3@hMCbA6N|[=G{;-zOMNxH|GsBY^w<:<lKkF}j*NXONǚztS櫄|U^c;vp/ O7T+`jWk)Oznan+fuZQ0jCitfŬ*^hÝa|T}[شGL=uZޓ^O8W!N@^mX<{dڌ4u8wzd 7R"`$/ɥjLrc D1q4oCFT8ڌ2NhDb;SP5(3oF,}aҡe@qE>Q9gQ5,^٘+zjgDrh"BnXus a| pY~sq;?jX}*xI  Q&p:*ZGa.hm>P#6R< $_in./Ce% ̽GvX>iL4&eY#1:$F=sꆄm\UvO~ 6GbE-[;ѥhZtٛx"Y<%Qي0qb\ls5c>ODiFIXt0u-(/5J:=4& wH'#`#6ѝ1jdh(e))U8Ge+44;gNdD8O!> V8u(LP6w )*]!d~g(߷ XF7 lI2Y*xcx`$vǴ`լ-$C|G)[!kHƌf!u䒪N¡J|,ڇhGOAxO9Hoz6 5tZ/PU/%/\uh^H?_KTԮc~ J+`Qqu`D)գB\+%{ Pi\OvIuY͸ܠ:殕0?Eu9̈@Wbvlu(U2{ӑ%AYVB2#;"NX(y[&b8)3A%* 7N%T| Gyr45ڥ\dg"^5~.֠ Hcג71?> 1F\9c$}~ϜuvkdKp}tQV_M)pU֐< FH|'xo#0H8w~P)4VS?l԰vcM/QD -/\$Sy]}䒪\;ߧuI(&QL"tZ,l~m˾rl2;o09J> ^3]:Z\V%2jo9~lq<Rb]*s3VT7YqX,>G/VW>.[%UmH58oy,@4APPy² q8؇0qqyU->|͍X% *-Kk%K_uEJ\r9S\ .hO>uנ6mCokCҙ4t9++`j)ʄgUՊ.F}#O#O01|-{|)AXSq| l&߷ XzTxKGK2'W)ڊ!b[&HͼHK]uUm#Eڏ4V@0000F()*qH ^AD0`wR,Iɛ$c>vl>tatZ*`O%הӵw#bؔ^ r("!}.slBP-v\1ai+oFOOقqX_mu_ys$ Fc2Z}Ccy Es0ec.{}lU5-T\\n<,*N'0z*h  ʋGfvz_"bL'ߧbyL7SgZ&&Faǘ(:73he-'`!%HJLD*^:;Cdl6*5vk`ih"$! ì^MB'e]}#_Kd$ۿ| )Җ &crʑ8btC5&Hc:Q_OTw}z#XFwWݬU7Y׸{adhLoxci`XEL"(LTQAAG5A9 vj{`f7y̙3Tw~z})6_klV\ga<U˹eu'޲¥,wo/R[Z/Q?rcUmwyuL0KqwRd9l+~+bLG]zD77wsƜܳFGG".:W<90^$A [K-# w03m=zI<Lg}>}} 1,ۻ&(y^i_DE"b0cAxt˞L+`߿1_YzK1Ebh 'i[9߻kR @1 IrkX4>m/Gh)EVεڥPd@Dɪ5i?ci`tv#4 0#4_쮀iC"+Wtss`3`ZXV:X8"jG 0Ii`Ɨ`+nU,=~̥86-t̊gg}薷ԃ~w`;%7B}KU/JKnލ/}΍KE̙ .3|6Mu1 ~e ~0=ZombgGe+V8ׇutbmɒZ P)iP`]|vI?>p*-laliKfSx|i *e[:ۈ٬YLj9iE=?;wꪳ vV!A`,Ly4Z,,իW;+^ slhb'ΝVd͟@klu{G?>ꮂeR) 0Ljs{ڀLg[خM5F B `RƳ}>R?} x/6|Rd+WjڥO0u{[j.\Xv5,kVUSv:.,rv7%Ka a ǎǪkrO/\ع+}0}Lx,gBe,نm S<l-#)SRRRRRVwK'}0$;{놶o Od++;2(APBh!RJfNs~_رc{ li*޳`:Ql>/s.}31BH;QX.v-۰0%%%%:_Bz:;=i`(P$$xxP$

(e`rxOc98"q>޳^xN{ vw %1gH\,~O "bG6^iW[`c}oK U ~h -7/ԴI0` xG0!PZ($ UY%P%$+ KГ{AJ[IzYIx!p,Eem&q ɜZ )S8I&b{ov!65y8kc#`5˱s]KHKOg;`up\av5-Ⱥ0%td,6E 3=\Idl9j촰GLKVE/ڸ0%`5B (|n'qc4c|ܰ!=[kv%ƁP^^Nqf֬Yd]CumlRr^)bIb z-0YWŶ/Ha`)D-9ܜgjr/גeQ@N֩ lZ69]CoxӰaB">: /pUƲa𴷆E[7DߎOh~ٖ6OyI::.main {0 2ʟZb{ r3n<5{gdJ<>zEINL`ja G;kn?9#h ];N=159%z#|g&6w4tq3(69 \n7nݫØ?8m`nA=1e-x|;~NՔ;K3v IwE ~z^={%"Ϗ&a>~~3cG҅PP5:@{n̼l|L;')3PLb|Rx<J3;b5Z6(Ρ /FBH`›xC>IMc\IF/y.m[K}ɼZz`m 9cH"c cmcs?0|]5ht] 3Gtqz G]Ba^?˳j<fz֓i `M"!< .i /$P+F1zY]βOEYZ驁p2`s-`dl` a l+6c2臅/u`EjQt{ Bltus˟Cn7\o]~ Xa R9qtW#]agbSQXp; ~wf.z՚Ǜl#%!Q{yNlGX=aUʵm  "4RUhcPlɬyvwΐog.*IǑU3&/ރ bXYuK#4kL`fosv{wDR.z$f, K7d0 ˚-(`$ CF#3q\:x(}X]%!z(i#:x/@& Ud`%R](ֆڡ0e*3*ߐP[nI$廸S*{l/ i]3wDŽke'l"hP8Mh{aHLkᅉ~ q嶆ߝ:_=`+EAy׃B<0O4TXƝdI0` Z0 G Q. pC0^\xĻEdI=\p7&`@xd19mR98! @Ɩ瑱<)&p_<Z~M.gm#blUנ86p_{5І/w?LӊZ]9Fp2\ #y8 OquKVΣ1n%5 ?3mH*AYI6%l ީR!05}=,:_ik;C|{6ʇX{w |Ye,ͽcjaȫU:M6{IY` TVYr }z9;GOQK@$aҮzeڬ9ؓy$,CPʷu$opcYUQ*X͊ @;{g5І/b_Ohm{l|Ӱ߯Wץ]7C욇(瘥=[iw.M zM̀h{yܣ3grDEzdǛ;Cw|{6v~^p0}ݻس.C)W̴oGvh}sX0W_|NniM§0`'W#hFD rl,k%$)ϖ["Ib I]/'Q,pc?m"i'6ɵ#k8>גZ0I9޿OQqvBBJnD}/@Ul63E&ʳߐ[0yvΖV03o- ekؙXs{=CكC_8\,anȁymFm"\lanb6pT׶NFRl-,9=3oN 1shhzj;aM]_=`|- [ Z3j~i5 5k6fhgd&-,m[[ŷ?p0h}K|? ݾA)C0H Y%$DIK xioQ1$vOLS%Q`N]`rqjuLL-aıqd{WދfMCs xqA[=M(`$z #N {_;})'{Zo,ohWJحI`'P?3A.YD bZvf:Bv3gI'/aߘxxh d"t QR6|(SRRRRz;RIhbθ l=0-qHtFBH<N ypjp+Fs4͸Yk )RVSJěDH蒰@-\IZwI5]_EZ녢ILRkq,$aVQr-+KC˸WeNz| ύ?i&_|omSvWZԽERVro³xd6]!IPI|^ c{ֳ\XC^EQI "ШLIIIIH>ѫ[ObDx\;'{K2صk1zh7铦X6),\obI;v.]LCزn ޏ;`_1j 1 Ӧτm[|'/lSvUPwn.LrP& ݒ0@X WǙc0{ln`;z,9?/ZjLz\xrqԻC#$IwŽ6@,!{v@^\Eo9&NDZ`'էC6P!=fK%ݻ5_OB K"d,/IM/%#Љ]9d7CymaLaU(*(Ā~-0r ꟗcص~n]Ν:qL'LA_(#z G,Li:RGN̟=FMM >x3g!77ׯЕyy5si^RΧ`]:e Q8q͝{_$<%e NkSFhuV'JQ/gtlܰ;w&Θ0'DDDbq4h0":Mهrz˔LXd'I:x5].)'Y&FPhnLqNֱg/ y8=aǐCΩ&cۦR-2@|wY nlنE('Fgvx,ܚj_8t; `zS[ɿ?Daym WY^Q^Pp}4|r>VwU;osVo?*oTbk0U!LRmҫqw\)y+q[ %6877RF5#|ͷݑaqů3|0Gr>I Hx{|5CG$$G$zz逬=:"](]Ѹa#΅֭ZPVZƿ1pI,_/ŢŌ ^>CZ,]$<%e )C GHKc^ $ 7I$ `IW8. DYN D@Odm:{$MWa<*"~:t.&L؁9(Kęж*Yau l{R׾'3n;~ykSci(=CaFO\+~^H+C3=ez grC,SB\\`[=hHɻXxaq=_OyW!t 0Ν 8[Tgw13C(E%1:l"0~&>p<[U?,0m>Y+ӎp ?oވЎZKpz|1V#O iGzHǢiZ*(=Q7l5LEao@+&?7?{N.rW_}F ¨16n^5A׎h m6yr-łKrZVcŊI=cNXz `iL0`uyЃ% #YX$ӡxd}$ȒkY%^.%@EZ0>^%%- _j^;-ؙ83㯖17~k]sE)Hu'tpsYzʋ}q~ 0wP?wȽA?ZI.Ļ"tY|ml">.-[ԍL0`!PECt %^+, c䘬&@ă%p{-L@PcE™QwNBY&iMD2VdWlATed(zv*1 ld2_iz7N׈e}v}̇y1f.ʩ5 `x{1hC ֤"m0ݻzz"&^Cqm!NCa}k*pX'.BZI-j{?OS^=0.bAk+?+ %{ػ<`f3Y3 skU9{rv08"ŵ;1~byX} rJa;m:KY:8,~n* OX2nAXtspD).נH3{kSO}kc+Da}"GR016-llx|=Oa鷰3og+G|WqU$'Ukqn:[` ѣǠun@uHUݜ?>m:w~ $cH0D;։JS^_VrCBq8V膳:ЊuBdǗ$ LS ^coM .苈!pE}-LbhC m[)ۧ?m/f%SN3!22cع3۶@XXΜ>"22{n^Md%e k=|2UVY%@#agt8F@b_(L2'>l#I6^>(?Ŷ5}`jʰ{ftK YwUòRlU^ AIbA.Fلi}+Ð7R욳 O#xzҫ^S7JT?+)[1&5Ⱦ:S^_V˃ V޾!w%*Fxx`GȽ ˞r\ wMDгbnk tsO$|R@ CGxVc?3ڮDZnXV2 {2 aD_X< vƹ{(c光\;QXs^[do cdY./[xTB:"~e=TH[(ӾwP[3C$Y%RFxjcMt>hy+3]]0pnZۗz-G^S.QvHI:Q$u/zF܅2 UcLy3sF5H?~aCWdL;.8]L!v!boXQjx\8C`/Aհ.Sbj+|oj!J$D/v0o,8P oGkX;Ea}zMhbY2Dctjv~ èfTn8&A{FV{Sm0u.DI}6vA`:ąb&؃ 1ЈAXg:><qmaaf!Cv$=@GX[5f"+s)))aCkn=z<,X+`8} ΟOpd>Dff& ''w3!磸(**BVVn\Çn&0d0—$ؕx()Sv1*x`{Šx\(YEbl, 8,')SRRRRzkT =1x0L<O…trY;]{{~~Ns8p06n܄Mb5Xx)̙go~hٲaO'`ׯ\+`o~WR^6O͔)B=]0׋qX.!* {&`T F 1]{aԨ1: 3gŒ31wd>`SJX]#` () Kڤ dL#l_,5`/ )SRRRRzL oӁX3 Ȅ0 D-< :G{!" Ź#jhݪ5{[Wq%c{>$b>0)JC["$`cg;q$㶀DP梅@ ;w@[g9:LFv~Fiּ3β~Y3UUXC&  XaErQ XT(]*|Qưƣ(ȋ11Wð>.nG !06';alˎ9j}}'D g~;3g\+>;ue>mٜ555쟅$`%/ۿK$`)/@wīCc Pa.~ϡw(67ǒS07BqF^EOC7-xD!rq$Q&Aئ7Y.wva͍Mnw kxZ[ltt|0LQgg?1{[o΍=ܹ;9blz.6w ݰvlb<ԓܠe޿{Zog9!`'`8@-' w ?$^!g[9(lA2~HC 90)c 9O!U^mʪ]/GU[SVg7W*m;_wq."Ln䩴ʹryo=e"ȫُ9F^e{Q,KB <%hJ1y]%,`aLVĂ  lG0DKq w`( w ^]1G"F7^#}0<3B#As!]QtA>$N`BH@YPdPԪ8I$NV'6 (=cb GN].:AH #/1DmeR|A? /BtDkX!/ 1?wb, #X9!kXI c NtG %lC(N/H 'I9H(_ϝ7FBw.*eޮrIR BV]UPɠxuLuƯ s/^CH$`0_ŋ- #S8 Ї6A2J ,Qxqȅ8 1 qp' ,B!$`oX }oI$`EѽxQ>`?ᵘ'=E&Bqq]w#O aL&qvNXO晃/ XzBH6mzAQ/*lG)9‰F[LJ0 XJBH6oJj)˜rq%`**T!mٲն0 A{%'`׮"c E'`_I$`*0!AmSQ!I$`LߚL!gپ"(5D L$`0 XD_^1X<_x~A_Gp뗀 !Xwcc~MxaC;؇g`^Y+0$`0 X%7E1s]/ͼ(P8GI A˟|͘,=B!$`M-x}q~Y9B9sE_sM]I"I$`bOr|.L]נlsYkKR"BV%+`L&[:nN/>19B>G1 p41'[dBHr8([R$aLVd0 X^t)\8P:1baď$`B!;sXkk;d{qw?k9޵cþϟ.L&[PQ\څ w|A9 [8%K,=B!$`Ǐ:رٹFFO.YC vϝmD=Sv}{W7q^=9%'`f' c0 R BF <b@rw`@PlJ#Bvq[S=mOŘ8'EK0$`0 ]*'t"kDnfh˂HL!+趮\YZG=W^AD`I"IZ(5aLP8'&`$CY L !(!W_Gqnkmn;w#ŽlZggΞe]xò{Z.[q6ZG{^dmMҖqqknjWi1{ܨitw6<|]=Θ#GKl`p%'`ӓO$`*0*^` зV (G~GL03w; XJBH_K8w59F @tqƒ~ `{hnٳN,%Rqr5u甜}v GI$`ŔK3|(@ 1EWh>J _4P17&B!{ Pϋ78G9H ا0$`0 ʭZ$`B!$`\H$`0 L!IJ#pM;$ O8w ω /5܉rz0&J"KB J' _~~0&IT$`!B NL&S !0 [$`*0!0 ص+$\_v'6Ӿi )L$Aղ$oґ5 _3vu{ ^=`l`/˞M 0333`0@C}9`ϳs Xz_Gj-&`ff&{0X W{cGo`-fff m'FgXxyk/[:w;Q)b)w) KKC,-Jg#7_\MȖbZ]&`qsy1kըUoڭRܫU_UY){,` fff'`xXݬF=v[xٓjK?`sLlRݬn6bkOwڿ/=`L0L` ` ` &&i%0&@ `S&0&0&@ &v^&0&0&@ c&`L 0`L`L` XFD` ` &&0&@ 0&@ 0L 0L 0`Ly`'L 0L 0`L 0`L;M 0`{ĵQvfrIHi9(XzxC^ "U"@IH+&#=xf={w]3{X"`T{r^<4/BV;S9g3rNH1:jM+FoMT F"? È+/b?/V]3O?zY1$oY"`ˑ854~karv^=(LRc8]$mٷ#=TfqO x?z1Ʊs_L1f?^/V]88-f0YLgg-=t㚻L7\ 9! ffHO>qqv6 ,Е&*W҈*RA-* 1f}oxP|c0zYbm0&srrݛ (XA.-Ź[\PҘyvP[N{gڶfĿMݷ'XYV߂1/j{础,ǘEv/z s)>N M{Vt\8h>6-)uLIjTSP 0ݏ#ӯE,fGmD} 9̃? oGQf@8/13 !Ǧm5JKceo ,ض1 ݘNcC2 m 6=M&8E2NmppI[KZ|?|=D(LJ >eb7tU3Sh :1F:&zL}o /A[Rd%eYsn+T1K5B=яE{Bq, A, ߶]3@YEg?GɷXsMr|+X {s!3ul]Q:$H5ƏXuW̌#B?\:$ x["` v ,'H柟};Y(=;BxEFeG|+do$e&)XFټޟoÓKBeIdпVQ$`,1M"`Ϩp6xB'`YŌMFlӶƺ#9va3Z1W2 Tq(f$Vj!f F'i~NN_DtɼsTx>[`ϼuxSlze.~?28\EMctgG5@Y@oԻѾRXJ#1 ¶KM;XgoK0|0*N`. 1 5a|.8 kJ:ɾvkI:Nڂ/зMz̮Xcj`. ;%G_68߃b\Z ;iCZL򣾳Ӊ4s/n۪.0yLmF@<Ԥ^Jm_ߡLj)&$V{6]-8yQZlj}s(]Rk'IL߉hBb $Ӂf=C&pz|gv"_t5@w㈒?6_D-f0YioÿZ\彸j 3ekl&Y~bT=VT8Ē|SS$`\Na4 Q K J;ZRHzPq!9S{7c\1)=p# z:jǠƎ剫oz{j gdTGɁ}* e[ϳ$vtX]F<<՟i^NmB6']f#hh2C;uQWj1|ͷ(JeƐg(Ú\5 \ ۳NQ/ۺnD7 #`|ڍnM|Ηy`c zqDFzuAY]tCcnj crW`~gU;/"&J\Xĸ(8%a_&:C2_܇x]9O_=[t퍗ټzC~O\MnrQ@\OБE,f0yk_}o׾6Tlk]~W+C8귩Omy򖙾sX?TVidiHjub߀ 1_oE`,tr(K=88 >X$0r.ȗ1~Ê5 Lb/Rv;fTמcB^һt@9IUd$ u,B܋1(Z8gT9"'o'0\iP+΅nޟ9B8݃}տ\EE0?Hv ?\s= oY"`1{",akQbTs /i|q'RIa·`gs/CL]} Q}/cmw=hVZGlOG [7jj%;Iq[`TFSS !u#wJVr(hgc`e+j܎,ccd-q)G8 RhšM8} +T[)qeS4 d뉁݄7/tp nk[|4/bF]v\6~XT;gYuze$qLDMb~&FBǗ#oY"`s T_O+Lwm IpeJf{ ]11tWnd¥2X8RꞁBIWD;,S ?xi|L7*qz=8 `$0{A>k0c9eh$P:2v {i(^cwVs^UG$ԾO93T[)qeS4 d7/FBk&xU`iuzFbc>E(giL݉r~,*r[HMn<_$b0E4$h7nl4On}b+˓:\9Zj&yQ1%E }[{A.`HM*@o].VP鏏uJ.7i Ž-yAI4&Xec^WSԛ#m{ge^YCfz;=ecdu:hB%`$VJ\&z>%ꚹ=Z6ynġA\lG+@/Xۢj>腎/YG;E,6)0ܜh5Kobfa_`yԗ Piz64@~VD~d;t>Fc$`P(!;Swтp%\}K\עM4# 9P| $Dl\?ѶX ݬ,gPvŵ_D],v6AT!$$!߽t#TuiK?TE?J*HRV O.a|h$I(k~ ư? &XNb$[ י?ǿȟ]wQcTjS*p}LZw;ǤG`] Q}L111 -/BIvT}{c|BQS%JhA-Yгi@DD]@ ` ` `D$qkFsM+&$ز11<s8P )!>y2q993/fV98\ E%^ۄ{o^ZS *]lAV9QK4Ϩ p}Fx,} !h^9 MZC)..dn6Gf,>p U8E=?]T:%ݡCGgesJA= S ěP2@6xlB4nP^P!½Bȅ&ۯߗi_t|OZ]Ȍx<O (o(KV?>DԵ~` `Iu5ad7Z e`G+C' OtϨpw:8C I1`gL]Am!#A#XV=p݉TQ_Pr)~=>I&?CR3}rccA}Ne;ADD `c{1 ` `5zؘZbi|q8=*tӒ 9Hg6Ŀ+c"e}d:J Jxs]8Yh@0t09oap}4̟L#f `ReD/o܋ч8Q2_&߿F@PFl֍̍Fn}L;!Iq[Ḋ3O>d=R~W'')!.)7c(,z1e`sMAu*zx脴:o'1111~(PZr=nŵgphj@Ո23 Z*<"?t*Coio'0rKҦv8'fEH.KPFLM!Sg6?C\Iz O垷}i܇BCi®d4Z*ŒGTG$""000x"LD<4ىorܖ:o'1111)>v]Tn%[Fv=E+:V}+% Hdcch+*ӱ bv q6#Yft2}z'rP_jt)ȱ"͏:>P:pxR& i #5~~^2 [">#3#vQL0111x~$Sȫ'qI6\z>{͈oZ%i?3i-ROրƧʘyD}rFt ‰40uÃSx#E:~3R|lUeZ8)Ia4FܢFd`4lIE_ Eψ㌅먾DD ` ` ` ` ig(c Z'!d/Nwh>'hB'gKBυZdB!c;cw6K.6\#V'hKJC֖:r ~Ζ8=T{L6q 2wÆo{sf7RK0o<'؏-\i@e)z:=ZP؊ijɾh9\< DA7X~nOSO., #٘kl>"kTVHcDDDFAJy/ """0000ߎ.\2(L{hc[>00"""""000"""""0000"""""000"""""0b)| ` ` `DDDDD ` ` `DDDDD+0""""lA{eQE c64~PiYWѾn 9t)xx 8DDDFd'ܴT8p5{~48DDDFt+'TqC?św1wz)3'ěsCHい% ),~Bh|fiubPf&M ?mۄ+=(}7ǃun~sڤLCD y> LۈS{mDvs~k;>?411}.M4({1YSo=LF=z%}~ţW(,ǏM- H^VngkwęM#64=T#΄'a_MivH hwcQ]7LiLDDDD `K{Rm\8Xq^ޅ8;)c< y෣hG{{8b!v$T=D vu(fVڪ6U0/B[ham;T_k#J}e 'qWڭ" rE}ҿ8.aݟ!X*(]OV\c} r ]T\3GUv/m5̻z13gZڂ\2vR2,UnOhmngl,maO0\į~q]&-D51 X7tՠKǷcADYtG̯䈃I;P*avﺋg3x`A-nxh-ܿDf!""" ac1͠зL!سKכő7D?| a`"MWߣAGSȼ9On_g_PB}0VR،%iv1111]ϰZ=ϧQt߼L78>GX!$[w:CڻƗso**~}q{؏%n'y_!)_yf+㏑% 111 c""""V0"""""000"""""leac#""""bcc#""""b[fXӃ"Sz<'?t ըW>qٽ2`nlk|AX9ɫj"S}`ʬT$hY}ʸyzʑ}XmF$fߎn:ug8wlh `+>1I;ط8^E)?@d7DXu%:~ܩGnR{,(h~x\Kx .9lxdi[2!kwJ2a\d| ?"T7~'y׸X g>~|L {6?0ފBX_'9:pl# Xcن.M WD1 <\L 0f[qr$0ք\r#1M`H@iv5?tB[ k?x6 5BpH 0PBۉ/~qra0ok1bu C9HZfR?(ɬ~e+˫pDeZZ$梮 a/TIPG0Z#Ӝת# T{`#}-OC Us1 q{jm`n'Z+0<3GVeo?wĈcp}m 8IQ0jl>Յ)/޴`Ooc!9߿VJSPgYGz/+6T$F됙wCP&Qs Cq,%w ɁEF{8cM8mTDm {E))(9vm5Xoދ Az~n3N)5!#Ѹe-t3%1 o.# Ό"vsXZG ? k_o/  [rw2юLcn*Ʈ!c=dhs k{ qњsA6%%a]^4 ;q֡civnmwS9;bO9ޅЭf#"غ8- O"Pl3oBS>z/^_G #/@phY2rbtڎL?u6-TWUd`>H*?Ǵ<w #w/6}R+OcOƣ`68Qm_yQdЇ*ч 26lzGhfGyhz]Ud=NG6R6v!A{ TCAK|A~TG[pg AD\E%G؝:ض€O6Ì?Ĕω 0*aOL`JLs Iy ;GgAG lFD ` 00g݃(jư_<'&-:i"1t1Gvbwp 5sq--xFBg1گ6a9/l.TfV[LiǦ sDm ۣ[ĺ?XX `W0j{ֈ}]{Wh6cׅN?PX"_!߂xYpx%Җ CFٹȯniYpk]˕,~1Gh9Ρ0#Ƨ?]A<C6|gFD `0Cr2|֜(lA2<#'pԄSMG-,y $tݖt]C(rdT)5ƒf/߀5$“!ɵmހΞczw'8;O޷я=`5Bac}G`RZrY騙}DoS^ŘC.'{nӅ0m'O%ha'M=֙y "1}z Py(V[>ę o ?KDjq#z4щ*lm.Da~lێSn[c. {=Ptߢ؜ 6ksqyh:l9 *fڃFPPlEmR`I: B}L 'R]ş+mҠ7XIXgo GжĭozeAƺB Fo}H6l]rá6ِ[~] X؉}QrنO3 _\zzD]L'Fl0 >!},}>qL\|GKλ8R\^2l?LAxN!z~͝0>gAdr^ʰ)>c@qM?>s8끌_`Z.F[5x!Gn)/{0bb3n""0000"""""000"""""le`c#""""bcc#""""bcgն?ac#"""00_%S#""""bcc00""""bC31-9LEbc[v a `DDDD&>wfc[nSw/M# IN&!(-mբTEqע˂Š.xсյťX/T"Z(bCڦ=vvg>n=M KyX9yNf۴cqL`|VAY 0~lppp@`9`}?` 6*w0߂H]$ & F`6`A`0#0#0 F`F` zZEtM3Nۯ _4HcI{cmA^ZϨ)Q}ZZw#q?F`j:}rn͏6Ú#z;%wz,7==[ Qmg+h#BNl]?ג>ٹMF`X{\[$zΌ]̹u粵:xv,g)Y.=O}"Z[{XgG'swaCB >ݭ2WIf,TVfq/s g}sus}"isa!%V{{A=Xtfd=GƼ<~[o{"{t䇌G\y-;~^+#r*3=w74TGNk2ԧڐ*mKicn]=-3?ѧcЧ}IFh۩yy7kb*]תoSchߥj,BKбsCn;̜>3_Ý`*˴#wSgp籟'}?*T~18ͪ'e=/k!yRmhH5Ns^q}^SZK_^vswusF`!Z#|s&Ԇ>ѐ*`Vȹꈣz4x;ZQ*yQ{]Y:\9Jnީf5?$JTwc\UW&-wBhnsZr>T}tz;'yx͛?Uj7n߈snyyV/okMts#u[ׂ;[.ۢaמ^=nɸq{/cy x_%5׽x @͛9]Šm`'^n:'|n~n׽!~$h.S2WjCmJF*S^yyߚ rx_ýJf||ՑqFԞ#uk6vׂܡ4dgJ8N{Xu}>kڞ=3jqF`:Eh^l\XEZgA9/*+~Lȍ٧j'oi"Eҋ/(3tgqXUϞPiz:14x?AEWӱxo;}Խ\WKr59v{sZnyy]j3޷tL[o۸\ ݯDxwsuƚ7-}e߿os`Fy2>P0~SJ:A='rLݕrp~B5j=?IsVۋV?m-0V-ZP0xk}O!Txjx^I'P'`ydr@jz\[VN<3cguΈ"U[oޱ_?5}D{8Ku_Nm[TNL|2$#u_Zpu|]L:=`7Os̞V{|xg7>#03X]bNPx8vZGwEu劆Ih?tZVjqqHekv yo\'^I;T%ysJtǡ}z:xdP{TƵsZnyy|}??6VH9ߺq-L{5ǵ`_}}yif[^k}@`Ѫw.Xv#CA `X!0#n `F#0 0c0#`6F`@`F`v#P8 0 F`F`0#@`F`6@` |`~W#M%{ 0O0J ?^`fx '`}pS @``M:|_{TS]ԩsNW/IKbb E T4(** (<ÞfO`mf6OgUj˽֯޵'`%,`,`aRkHJ0|+ 3hwh&z0accczfFKV1&b !|'.D_9%Pui-|8~Z7j؇>,`$_@iԱ2L f ^`_Z Zz`X0iTX:q..TacU /u!Sba )00000sR'7 ^%cPڅ#0hD@(F)5rB\ő5300y ɪV-Y%ZK9N7^ c=@C vbOUP(O I!h_LGY[;W@]9RD s.Oߑӱ+J7sD'cc0ac{6  37Vi7B׾|&!DS틾G^ .݃B- Ib-={⪍4ڏ"yt)YCKƤk1}*B.墢MtaX\1s! 0000囧CB٥e) c,x~[ ]2|/GΏs#Nc,oU^Y,hڀ G@ĀƳS6Eq‚I4V'y9[+MXsx`И_Ba / /ӭѱt s./@Yak*O+Zb,`/^Kv.\8Oղd0o|3`2/ZV/XH.>RU{Q*ke-_j}`Nd*:apF\ A֑> ̜3E1|O[YpRa*V C%Փ>HՐ:1[)=T֭t[p+#>qu' r~TUՐEy߂-Ɓ; h/])QZ8%67 ѢB? =T jTP)'gcoE@ }"f92L>0] vyNDPR%bo2=S?ʉ3p8Ot9>蝧0a$̍_!}K֐>12D)Uo3x `ؖ,FǗ^gzxwoز% HHecŰI#PKG|1/J'F|13".Of=Y6_:_rܶ'݆/_BmMŢ/pspW>GM 7{Gp"DNŀ]1>-'~l 8L~bm\:&Qߌ;Q7\9rױTDѲ04 wfz0M-#Xm¯=0/17OByF_$_" خ݂HFj3cNrv77ˠ3MfWIYV*MlpMrsKdcz`ccccc(.a#^kmn/$rESS#?Eփ\l6(om2??utBdCa1%,&`T[}T::`ڀC4h*aj2ʴ]blسz6BوĞDg%t> u9]3 V,GPZpf9TuN~Wط~n9h,`,`,`,`,`GcN; ]aέU珟dn5,I/(~E7CB±żljEp+ժ>ek_+76Xjӡ66M:FYc~1~KţH')b5Hxt"V#4 E>`mO-tI iV ^=)h)P|>&{mn1.!ɍbkkW pwZ|.}x&FEbbY2 njGQ/Gι,<]7@eBzq`hkq\n6jСDʷzzo{I85h3X\ XmX t+KW~ͻjnͩmXQyjmkSSԧk_A9}B^K(|-m:ar*`";D<'X04`2!O^+NϪQ[mƤ3^w2+I?aݮk(lAM2Q]rCsM &= p. aHkQy+`6:U*i}l,`,` Xe)  üX/+*tWӤ "Dy(A2irvsu[IHZC+T8Pk_Peޝs-b+-Cƅ8LDI@sPIFhKI,WnprZ^$k +Un ͝5mExZ+ fdE[6Dds(֓.ygWE(ɔyW 9& l:Z5f ntQ"L" [_ p>,`,`,`,`,`o +`t!VmjHh_ Z+XDi~6flDQ 6VҤ "*Q^:tdamVEr e0~F2D/hn5vPWAqb,CEMYiK\D[ ]gތ=r#@99-|?WA6#w~VNـ[ˠ!Qߕ9iMFse6}) D SYa_0E}+ɗ ! Q|CWD4h`2*Q4E3d%0A^S@Mv/[Xz+F9k0 (ˡzilRVZ%T9 Leb}%2cl⊵ڨUE)Q\u96C+0镨L߃Cq7 QG.h/ }35e&|H!6KǤں^!9N'@_ʄLz^YXXXX~}WV$^Bd^!B>b^՟)e< w6-'Ǥoĝa݊XBnv-C(vlq wpbg0V,0D_·ܻ~=n?\=& n~Yw#81iS̖#(lB'YsXI7@$aE@g-1H|2' !00000ymXfb$#ėrʗ(`GS\70L_CTս|߉ ׎2snh O???ډy1,`,`,`,`,`,`>>ʡ.` ưI_zͨn bo\K1 ~<= SE 0kbp_&K;c·1gBwL)Q7z/gGU3}Qc؜QJ$jc WF{G싈N+ȚJ<<K`Qp9b 7Njs꫟X9ḇp{/'TCiBc,Gl7ư 'wo:*J&iBi[3J _ 3 , .$GPal/D1ƒbnQ<ĢT$sRWĆ,LϗD 9:fGEJ˫1~j Nj Jdxae|Zum1}n ¼S4[: 5JZN&OzRT_9c*(j'ai^jGؕY^ʛ⋹Qc0,`,a",`,`,`,`,`,`"Qڗ߃$?䈲]1M6zņ}cc"{nB_C+9/?T}'c7ԼOjh+a޼X>69J/st7n4w$ ΗF:Qg7ؾ{r@= Y`?Ͱ혙kQ)pl3f6ŝ(Oz#vod|' F7q 0aXXXXx1s34o@qoxnq ÿacc,ecP d7sZշѡf(.a#d0     +ǀ1FSDrѽBN?Ǝ;0 92|Q0[a00000J 0,`,`,`,`CJ ð1 _T@J1&U ,>,`o/     ð=ױ8^a~o,`C  ,p#֦~ 3(g!d{{aXXXXXn[)_F2`B30,`,`,`,`,` &i$üXaXV_0_accccS>ąV989OUNr:2da2a^,`C% zl&Jmj 6TaXXXXX¬9^ }#e2(*`*aKU3}Qc+tMm' WF{G싈-քƴ=X4#ħyQs6Hco[K,}.b#ᗫʧji\c &(p'TB+P~.tHLۚV}-? XdnCꊙؐI*It#̎ eWcj;c|O]Pը-%:1wJ_rܖ7F8^| e)1?G9Y*DkۄL#w.itk4N_̏tB鹣 ؐacccc`|\l0 ynQ f} 85o"aVüy(K畖Nڎ+(f݅Eȡӧ"R.*0s-o:,`//j,U#X-[ Zs([g:jA^ĶfG\4Jq(T 4N9mrm ե6 V k6o ,`CL'⾼{_K0}=k&Lނ9!^Xd^'ȱK:,IƁUX5bZhݒ*J瑘xX.*5J?U\`f h\ ԧ$;X%,;0$]P߲|,g>vL%ar mOꧧ]L, lh°Vj 0oz(k)j}`N$ ~|!t.a8#]mYc$fNOX%q^s0\}O]%vo0|U V hž4.$5rܗdG'=L:]Xz#%P?/֧vn>i,DB{bHVAl6؇B4gB8=Kjl6`XXX*JXX^,Gf4xV0::V9aMl?yu%9AIh.A0v+0]|Д*jT،);@HwΜ*~1J呚o^X۵jj Va/0b2khњ^WKФ 5&(Tg?Zr$*G.>Ɇ_? R\\(z#ey0 1rm]nM} JL}S (ڱ=QbItc/r;w{Ck+TnvTʕmճy}+@lig*] WD77;(VK5lZjln0,`,`,`CV-8+_ #Ȓ n5܂*KZLh>‡!v|&03Dxx.ǁ9+b#FzFE$Dlٹ}nzw1mKQ@|n4`ظ>NzZ#IkE  r)K9~~~%0L>IBraVbS6o[)[yz$)l1$d"8d=-%\$ϡ/cxAHt +h|3J56q|bZ ot:=rSQp#Tn۶ .fyCɓ8CjlT-~0    c@qoxf s$N m)?,FZ_zo&ðqf12M8Za+GSbTd6p I($}mZokICRzIҒNIyy RⰑp}\/uLiemq}m~+}]O0Iŝ ]DͶ=P\CJ+@O^rOH 0     e%wĿq5ağ5b|W{ZâtL Wᇬj3<ǃqI pI^π~>E}[%'"$ijo"H8.Qx|.!ԟrڥ黩*wtGhvA+L+zixD\:|ҾEcqS-wd6QF'Qzz/-Y{Y\i5ڟ~f^zx+}hRcnði :y$0;`1ᒬ^ON Ko#מ2G1A  c.KͥcCl1Kb vY=pf$ r:HSsrGN-xs\wsSe,\fymn$J]s}x^ۢؖzz~Jˋi=A@@ނ}Ajln0,`,`CAXXρl\PԎ{JiWBl\헀{5 v1s~ӹԧMw06TN &=čĀVbؖ'繭)5Jk pZ 'ЩHl21zl}g9d';"zorU+I.XrؕewŷNBH|ΰ3aJ~P?3݂aXXXXXEAC L w>O¦_ݎu."A"$]@xKbGaMDڄm[zڟAHOOi?P |. = ð1 ߙ߻Eg'uJX >K &Gmk)擁hȣU0,`,`,`,`,` vnC5 t|s9c;+| |0ԗr ~U0,`,`CL*JXX܅aX>{y1     ð-:{y-1    0ь)%q^=62kaXXXX|}}1q&cÍ`[x]y-1    0Zy %_ q{],c#4q, ð 5y; Da.}Zc00000 Rb1t{ ( Xl1 ÿacccccXa0,`,`,`,`,`C a0      ÿacV&1,`|Q0,` ð tcK<cct[wP[GgX ðFLA[˱|TxyJEA٠>Ky*X_Q~pl9_Rhؖac+ 0 #b*lOEjUwB-Hl6,46`sY{b5yD &ݽן(%겦Ԝ$WmTE0d0     (>g;&, D|#qd0n1.!ɍ. 3 njGQ/Gι,=qc>W hO t CFgijͦNj6a7#FحI_ih4^އU5]ǥDXkhQt.i-&WUa0,`,`,`,`,`{۱D1 K±j d7 X; 0t%wSA"9a'NW6b ]@h:l,hK #l2$5~}5 3yh3ZA,Ҷ#<z5]ǥUԌ6h 4װ%pޡ.oE%oaXXXʋAXX6`_9" OUC۽g( Ew% 1؝K!? 6bWnprZ^w@JuvX_p94ERQcpUN݉1"XКjtMq9-Cƅ8LDI@sPI" _T2 Va0wkF!]7[̮b,CEVJ+pT qVA:,tdRwFh&FOZ)l{yUMqWsҹhj/,v=B4B* _T2 V0KQPI7w2}6&Ȫ4Y ʌAвu+׈qj~Zj`z9`^0ei-}(Gy&ec9T+`jIZKIg*Qa0,`,`,`,`,`eM܈˖b͈ٚ>jGSݫ~'&}=nXv+%@Ig7W I5$cU]/(vl({KmUK,0 ї!wk8Daw[*=Qc@H]ij<+8 0V@ 0G9``L 0l`L!`+`L 0l`L!`+ +{7#52G%`+M 0&Xo 2_" Q 0&XvW?[_Dqc|]x`LJ`L 0J`L6L`L 0J`L 0J@ 0&G% 0&G%ɳ`LL`L 0J`L 0J@ 0&8*V@ 0&8*V&`[&`[&X)X `L 0&`0&L 0&$ 0&e.X &`L 0&`L 0`L0&J&@ 0&>L=ۻ(}_yħbĠ`bObp6 UhqYTQDQq0 *J+ʀ@tw}kߣjj-U{ڻj^HF ` ` `XoFDDDDFDDDDFDDDDFDDDDFDDDDFDDDDFDDDDFDDDD&O7hƍ7nܸqzX|6111111111111111z"""""0u ` `DDDDD ` ` `DDDDD ` ` ` `DDDDD ` ` `DDDDD ` ` ` k:Lfh0h)ƢE(nAoBDDDD ` ` `>A΢D쾲~^Yr=DDDD[meZ{Υмԏz'\ _:k Рt|z!LFr| &DMԹ˰S5xhUÖ%HJIEjj2oɲhcb ̌sQבc*fN'2QDBzz *;߄L(Oۄi10ۃtS_0{_`155ԠaCMכ'Ȝ;;KZMCK[v;S_ i-;43h!*pj.؛d|5; Upz̚hY.""""b{01i͸l,/hKO4sүI|UCKH6!}8SD`S3g7R/Ei+3H+DDDD `3b8Oʞay8ZCʹ\Ld:R׋`rh1MKªG{jSQhR\>}{2cT̋AdgR,כ40""""00 \0r-Pc"%a%{~Y"i#!(ih+?Xa>܂" %/Ywis6ECW27 gk/B͗|`F99%{Q:3499p(e!~u |'<GĦm股""""b900włOqd ,b#z8UR6GjKN`Ull-|F{%;VK8aּx 'Rpf `zbYHϹv'5xp ~/^>׉+M.\jnqX|Uc=DDDDc ` `,5HX3g9 (> 97#DEMƴ58t9r-_C`i^}4MD]xGx S#6*b⑴*w#lہIq$0"""""000"""""0z 000"""""0 `DDDDD ` ` ` `DDDDD ` ` `DDDDD ` ` ` `DDDDD ` ` `DDDDD ` ` `DDDDD:-.R `0~ ` ` `DDDDDfأT{?000"""""3Q96;6ܭgm\ޏ;`e li52mء;kz0VYϜžعg޲{lľm[^۲v000Va)Gj.l)ccc#""""2T60#0DFA3,HLm|^}cyc{] 'æO=?>jo(K8tS=T}ыM&g3Կ/AiM//q`ccc=7>[0joă*pn4Ccc{Kn/ozqCÐ7_ЫXQǖwW1)ac;ǎ,Gd rj;m`4 ^#'`iWfJuܶ80$j): ~!=0[`/p Ao>p5iX{.XI5g!&}?*Nx|R?P'P/`H_x,ܶaz>+&v DzvQۋgaJ|26^|L,Mx<}16Åm긱6cr vM:UKB=ǏiQc ')ܗ źL;9;돾6}G1aN&4<JR }R?mRnkkS N7?eۋV, 11 Еyxbm_#0h1JL345x\67bjMXkQ9 i7aՄcŐo%`̜hʰ:,'-ڭ(?a(jٯF.<5 q,֌"x<RyÃ,QN > [2\_nXr\ώ`9(lih͸{Qp˲F\Gj} zL[e˰/'GVE@ BZ+#9Z#.i6ĨٗШm|9:zsΈ]=L$պL;5פkGOu.naޘ6e䎱Z?P_I}Rͪ}ڤVcLB&׫ `Jܴ]c}竈9*\r8~JıAEGL?ng|>Ikz휾޶|Lxl?*e9<(ƥƗNB̝&/%ckO(S/ sD.&0{E>O:<ĺ9ߝk-ގEc"b7~㡼.!^_}P(!ۄ~=VI3^T;p|,֬LǶ-QW[ҢۨAƦMXjeGy.i ` `L~ZԘux`C*;v链CIC gqV1f#<]c};Hu-O꿁[YB-\_nXgP/ΠY>;)-m^MP){K/ڭ0fjWW_$i.I{m.׬,DIL$Ωtu5]Ŋ)z ZΏ8ot^i 3+]y</#}b&eBMy)~FxcΌ-Zk͸wdr2 a??&VUa ͝HD(Wevu+~ r!FkP8V#HOCHCBf "{0?߃ C1mwjǚI_ڭ0fj9.&@N lZ;*FaL 䶫[MsI XpE4l(:7aդ>He%q(eb?JQߌGz` -̛nLE"!d|}uMpv6}&_Bg7&UUVJKQWWJ0/`chh)ـpo ܯvo!3.mcuc>S7fK{ǖ"v?󗰟=g}WAx>W'NԝOǔ^_ 5?!!ԭw7C?kr*9<;9Ls9Z.a@ 8$߈1C_p5i wmڭ4fre1!a mۤx͎ 9"vs7=L$Lgb=ѿ/;}W5naޘoۺ^hh,T;ͭxK~חd?}A?} yac>c]E751]#Cv_~Y|8̋#s `o""""b{x;A|1~>CB|pz DP>m>O ^pܞ^|OT'>||kG}~[T uaJgZ8 -^Z7.Z~Ο>`۞eazdf|싱sգ>q-L?B+xV]ůub .g9 1A~ۧUyupǡ!QKq։\ϯ`͔ 7Aqpѥ5iX{.pBN^|?#S⓱S4fbiB鋱.>q"prD .n;xzo/NӞ}vOH2&DY&M0.RĹg|}c1o6@|IՐqc1&l ƭ+&op$ҶDX=k>."=Xm^O~ 9`WdZ,g!'!k G ez1ud.=]>7h)ļXW ݊G9)4ll__ f?JP ̹F fō䱘q5ZeBxMX;˚P8{`kcshV"#PC `^hukrA~.F簼o+__#FR mqen(fy1N/~=&5zR(-F]}m[O~.<8şA /q6~4f\hKGݣ93ܳz?w `}mX7`e|vt Xk1O^$e(is!%zںnZC."EfnZYD R} 5.qٯ[ΐ0~q,e78[Wbh6X m$XL;a> 眺~>p};*ps=棰E_<]ϛxg[:bfU#0:jy{aDAT;p !0/Y5; ?_`^BaK5b$Mж",N=:?=&>vT@GJsCx\y?[ք~-b;"{6ivw ` `K`ΜFl<ZO86#~-$+1pr ߒSv1PgG.7Bt>yM _!}-ގEc"UO`> " `B a>4gE1+>]~>aѸ=,V+9 g~yފu};"8W+. nD,>o#?!mϿ<|9y>9,ۃ׈N}cUVluM'ƺ[k\ͱ)YpVW ApBگgg `oOpg-w16le>ǁNHݫWwScA@AD zܾnɅܙI.>" @'~X2 ;b<(Fx\|>LαB_>NV~u&曑XœpT"sk*'Q#iFE Cn{@Ni׈WEWx !=f'iXnx~7P)ďY͚p]>… oUXo`+êO|ʂfzVwwvOǸ[ P,F}sf%`dBkƵP$c&!8G<)0>.#b7S#l EzI+$T֓L7?t46leHs\LȝشvTș\7&,֯a$ס2'P 7y |}z>t8fy|p(fͅ5OcͤcOZ3n$!!` Sccc;֝~lt َ H_;²\]9֭gŭxj/΅ IVU|XIRAǵ쪃E-PJo/qsry?̠UŲȵƶ±¦Ǽ'!tRNS9:tP5? 8VIDAT1.DaoaDpgйZ%Q۸^/UB֌"UU(eQ*4մ\h K1] dհ<_+popü^l7c\Wy~֩Sz=sg]-]|T*ADIENDB`kbibtex-0.8.1/doc/document-save.png000066400000000000000000000010531331300026200171620ustar00rootroot00000000000000PNG  IHDR(-SSPLTELKK$""%!DCDB@AZYYecd@>?b`aϝϝϞП=<=^\];:;[YZ978WUV񋢸756TRS533QNO201MJK0-.IEF)&'&#$+)*B?@?<=(''FCD&$%;89412(%&A>?ZWX-**512+()! 634QMN# !uuuxxxdltRNS/XIDAT] Q@{ǰ/">ե AÒ$៸m|lTpv$M NpETpE2Q$ E4jES$!N,t,av[Ϋ@҉NS-/HۓRIENDB`kbibtex-0.8.1/doc/download.png000066400000000000000000000016051331300026200162220ustar00rootroot00000000000000PNG  IHDR(-SPLTE~}~~~$Uz &K< wEOMVDP6Cws6?2?n(1*5 u z~*3'70;&:SN$U|'XB'p@8tz >u 1h&V0_/\x!3(go,Ey %L %L2R:Z6 C|҅ "D*'"!N_jGUv|bvMfF]aiጲEm1YA^{@Pcqt#_$[ PQuԎژwL(k$]]Kta93+y&id#>5f>_};-+t5b+JŜ~DJϨ&Ndw҄{7\WѫFm^z`};hIgUuDc1Wcg&$"4$46E?KtRNS@ΪG:GԾ43ŬzNPIIDATxc``dd`bf!ao_?QXxPpHhX+/! V % /(,*V (*WTVU(30107465UhkvtvuOң=IgӦН9Kg7=h>>---,,,tRNS3#ֵلIDATӭ=ja&YP^b )BAdʇa{fOڅ1ϠMu7+/\rZ1L1 R w * ef2P,/&74IENDB`kbibtex-0.8.1/doc/edit-clear-locationbar-rtl.png000066400000000000000000000010531331300026200215130ustar00rootroot00000000000000PNG  IHDR(-S5PLTE:B:=>;=><,2,01/ $%$ ccc=>;[[[yyyuuuqqqzzzjjjhhh/0.SSS􊊊!"!JJJYYY󮮮NNNAAAKKKGGGTTTPPP???111:::777""" EEEVVU DECNOMAB?VWTddc231''&JKHXYVdfbjkgfhdMNK{tRNSʸ.?TeeT?. 24IDAT1AؙYB!Q*4z:(XKdы?#5JCNR p5ّ'{d02{Byh`""""uu'`قYÙ(fC{ҞvO8B4bىJ&3;88kݧtr<Ͷ0;lN箤||zOvPkB4$ fe TjG&%DDDD OOg!ms‘J+E2GzñXnrOEcB""""ZOͧS-ՈjE5ϯ=Yoz`PL+Sz-3Z榦zj>P-&V+ŎgO8'E̚va?tqz.]7ҕFc`bn>QSԀjA h5ZxsIl+f8'gc37Ymn/e+Js5QSԀjA5PhsRōfݲhw0yP|Σ#""""zj>P-&TvTC%Քv?Y;O4I{[| Mzx[V|T=89wy,QSԀjA5PVT3ՐjΓ ܕFl'r|XߎuViM|Z_~3w'/GDDDDT|j?5ZPM6T#ՌjG5lt _piؗ4f[5Aw4I^-zPz}r6׍a_~on/^|QSԀjA5PVT3ՐjI[[gFFims>Aï^.|ϫ3w,Taǿ`% A6Y@A  4L#1 D?*Lw]utSݧΩSB9Տ??gEYVeQY^!eB|bbrrRh3Ffs̶*:[p?xQ^u-k۞Flmse_٩WSLOTyd҇^&gwf|h?4 ZM6D#ь[g:7^}_-Өuu^k46&Q L# Kg-X L`Y,gܳymCBgIV_h +Xv ֫Na0 SXGQXB '&"e${^F9fԔCX  iC"Tq% ް錁J; S#"*DB B.6>cՉ|,e<r9a]=6,rlgZ46hXm JgmF&h)uMt3\7y͇CфhC4"Z͈vDC%єt?q7mܘ٤v̫`6'w#uݼˣk?׺727 u.oO]L$sBe)&l8Xm&D=n3Q.g >L kG4!X4a c:Ka2XfeC/s4{) Yg>cY#N-y[ƁتpB!g;!ᒲ8oӜ8iZr5 6Nw1帎PAhH8TS%N8!bю _:sY<9,Do,˴( ,ߨc$ղ.ɘœfQH|6CXiyA"i3n=5Րiig#ΡiŮvc:/)WAjSN1֞ʧ6{3>5p@%UNgpNӁoɬ-l#yV<N тH#&@9JQQfsd#1͒(UY*Ji~yK%v6uU. z{Kio_Y<$*x T^n%p*Vf%J>RJ3HT<6EӸh]r]Rh,BGiUNCڻ]z2xxÛtwKhktSgc~ja;|x%筥榆_l{0y.jEg @C$H4֙I4$PiЃjVbqx2s9F.ȱh^ efd`Y=T(YeA~e0eMȘ碼n)lAgs/@4S⧦F |:Ozk*xZ6ۦIFD^g: <pzJ>RZ៌MO_8/H7G/\Aŧx{')Eg蕗_[ngH i햛i]wђ#q:[wSiir=888%Σ+q687d\|JO2`r\»Ç(=C\?C䧦D!}r}#?rb?O.\@ ƴٯe5ja^aYGMsRP7/ߗBK$!_[ R(n,wtK܊! u2>۲ uÃCV\i'4JAu8/sI'vQ0{CtC=iS>J;R'%;hձ]`_v(H( JE`Mg R;‚}6{Ӂ<0چ g=K8teՙhhHغ5tiXE DII;oIOr{ {-kvQX.)|r95<&뺵AyJāF:a.^wj6JN×_xo!ؾ~k1Ų:+$Cc- YfFϘ zpq_DwlBJ^Pt`?nw0pI!6O?^|jaKN'L90ԛ4;lG?s੩1>Yv%U)]C;scsqg=>ն5RQ`6:(uF(8C%9duF<)ړDm͍8w& uҞX׷D AgZt􊜉KL94$|'S 2hqrħJ Ip>'0,9k QsD1 S1h1`TBN0xL2a1H(@#2 .RʞHc*H51\˔/Y42'T0E(1u~ i) YuOV,73ܕt= ޡVôboGq7+@$~Rl)d-Me^QQ΍1c}n REH1L7ˢrRG>@^jk7PuBz-3\wL;c#'c}:3}f:@#lD1=u`| Ds4PC!]l:m^/=E%xv$w0CBq ,˘ef ֡fgȳ# 3%d 18KO7ߗ{΀jk=qeyJ2^YsͲ9Wkf$k+L* ,?ߌ^x9šB.S/̤Z Na$wcm,~E@rdQPNQ$ ~yqņOWD-atY {Iq(Ηl!gZ{޴REC 9h8RډVVHY%{婢eC spY[r]K ۾50+̾<-πUA=FPz p,8~bW])x0\)kg;t@]pHc+E[ ?8K_Y"$c^fa+Sy$ [onGG=HUntbǙNY,Y! ,kfEfiosU۲L /SMC-t-~`Yrldr/_ 6u2vMG%;T<- Wbxas,,#+yޒ)qlA'gK p:x[76MNZk5>DqS穢( a>rWƥ۽rVfZ< $yg?mZDki`Ze*"d0^CISɕd#vK֤k~5i,.'~Y??l]h(Y- G!{J ss0Ԝbȸ ȷؾ(K~b%6Jb!&qĶA,uxm:T}U' QO#TF7; ci?n236ѮTQAғ8ulZ֣}gv ë/s> >_=ZD[()ҊdN%x2/f9Lyv󘂯u6ӒǩEJcQSv,2/1E|׉ۉː\,6 a|ׁuS@1ڄ~KYOoG/ [K/t0g 2r|ظJښA9'ϳjH(UKTvEI3O{? v}$Ķ]̉u!ih [l-5j~c4 E ~?q৖ڿ'lԱt?+Oc۶RLmV3 6dkhD&z$Z-:dL$d\Y7-2aΤ9d|.d"&Lc"u=q}e "\L wlϢ5i VvwU89QLQֱ9ŚUαc=J;"JZgxJ6bÕԱ8sy>- .鍉e`sqSv5itLڋ[W^-?*߰YfmDKKDLںTI rmxL(X $YC28o,YwvY0Zfk% >/)>d֭ˬ [_ eiY]ﭥ!Bl,sT,O1_lgd){:gxdM ceǰ?8g A+_ugy2MR &5PKu+aB)j)j9*%әUK(ǘg,-Djw%XAK !Fmr*]ϖÆxvYf|% >W;)QFa Hܲv;u VNL)4I~8W_qŻxt49pN4yIn3it6';+|:^ 3sS|,Los_ Sf*Z5~,JsCB'#: Ҍi?k5t@>F~ 3󡜉e.?u> 9po?v|1彪vZvۯ~0nl)W Baj;7FT|˅Ȧ˅/q1xG ݩ_P A GE 0uaw=SS1_k0|~_Ӯ[a]paئ\S[[ɭ[ڿaypt h ѣ1oF$!Z4ĐfLQͰf\эݺn įaF1XDZ d Y剱b9_X5,`^烹s9tڏh}iu*cZj5[6{1| bƅc:ir.sKss̀NC:nP3֌k6cڝ?/rr7b샎c?C9F}mnH m]U&֯bbwLJaka{qq׻fAbPuXN{\O~ŇyPAC~h/r?m^>?;L{zw\ب\pڸ#tKѰC<ܐôjZ 44c^9n(æC7^رy9eEs\OTiTZ4AT ^S0Ou 74ԩr6c?].0 @ڏit:4c':uT\+7>P'[v0Qlc>If$49iS,t9 sM 6`j:u`k >ۮ[~ aXs S\Xr\Sh@tdH/ jZ5M!*mꯔ,b8F /əPXr_!:a|LQz z=#{5?b9ozokF :u@Gr>ʅs#C+{95K5[C4l^aqt.jK5a뙺h55/ IvVhҾc{@c w^6J[ߑ<@ٴ'a_r^O sݲ!pp)vbA=@`MMF`# [~Qc? Ƀ ތua\p*D'L!c&~PQ jjpֱw5AarDZ0I֑儩ra\p.D'}Ǵs:j0cZԤ~b:~ HCP\P., ΅HCj?I5p Fnn4r  2>9㘁 SdP8%( J|H'aZNA a-2uhf3ϱaj*[ :~ 9ɋ2( mm%&2x{-ZxzqM3$ M6/+liifH ak6AƭmA5n|Zjz++)\pvOsLA?n!:6o~z~~s(c f #rC$zÛ?~_΢|pۯHwAM]{vzigi;Ӌ hDPQ"jZ[zrZ۞V=m (j *KB\%^aĞ<QSqO'~>th9} B!,փ9# t&2?cxl~P*ȔJPh4Oj5ii 4̍BX HAq1 bwӃqXl,.{s98}*'?7'#&&R"hooCkka&6F #UfX#ik~ NO[Wb-MFߐ%B%dq[i<&π)R@WWELMMMM . I\QGn o 1䃏 ?gN",s;MgHp 缜;P(hokEkd"#cǎÌ= ԁ)$$ēIf&6F # KQ^"΂8q~ۯBO$#/q)!{CqN~^6^a1yyn!?!v8 x|;-TTTT.pɔ.NBXLŸ\Ee`@ jƝ|."ESXijg%b2R gL ;vlGff&_;w ??|>ee[Suhjl!5͚NF!1YDLY )\AYX2Iwfd tǂty`AziA,)9#":;;AEEEeiKr*#$_z`풇vgr.B₨9GDt@^" \<::ڡV)HHHbptt=BBB}v$'%_7q3cugGi#i ˥]Ш.9+gX'g !hB$rEX:=={BX~Yy!#[I9EEU[WO>Y3>pd 60aQ2B\qo're|)w1~^8*:`i4_L"+pV)rAA>Μ9k׮* hlh@ii PS]׳qIj O 8cQ̞W΂'_9 _xⷿtf6 ̴]9 O$R f+k.lݺaaaزe eڸq#6l؀I 8_Au(6B=8 u3DoInQDI:7 |գkx =8Cډ HMMA{{;c\ҒTVV ''[B>vSp~~[2'hL _!KƯΘe~3Y|l Pq7oB:;npn}oO䵰4 byڻw/3xܹ9gҭG[c UVTTi Ι}@o9lzE6+~FGRN N>lI+"~>.Y_DZk넀MGuye D#q.bk4 (?`uh28+CCq e<qdd3OV0.gυHc](:.:!j|CV f8a_p/8;V#e<`w(u)|ְwŒoNE.ZKválF4;LX{\+,v oBP -*KkgyƌUFV`DwH!?ڒ=~'< {o^;VgXN†ÅPvFΟOƨQb޼y @ `8611 ̋H ěo? ˖aڔ @H;zՇrf:p/_ p7u֥ t}^A[7_H3 ryaqD:{Ym(Ñ}O&1<1+,Jm xЕKC4=G X@tA5-gz rYӐXT"B.G}|8EL+4d ;OWdxpS䁳q {憥\كm1Է>9{j`kh=6Gz^$XsD,CSU,4wB0QdG Q:;,eҵ7db*d_q_]f-g"zѱ^, IM fgNCTSC1}qXh!Y`7$m]II[EG 86ن{G,{DG.8+-7d:e; UtA{_qz3B? 0Xt27Lk@Ӗcw= F9D^yx1g"bU"̜dxgeV##a;fC- 8WaKv1>*s`D `/sQt>EX 13MzlOɎGT0jUv Ŭ cU56s V`? RQTq\;7bYRt-6nZO7c_TT<6WqqX!6%ECI&/B>pFÃZd ( 1KAe91uH\D3.%$? S$Ʋ3^z%IUS]jf3g\*K^2Y3kpoRP( gr΢L3قFc,T/****5b#7T*fXBTTT,W ɉY,q(jJfYS#޽K8L\ KJ.Yٸo y\0+zjxvwCc "cXkW2u`R 9)1i) YUJ%6Rp<|~2SFJ$bȺJ@up.1XEQ~.޽mq'^O{EʺvچV&S[(,ƺIS'u6 v9'HMŞДIFuiR>JTHӟ!vflXtU,3kcb\˒|6QMkZ LNUXݯ`0~ A?끴cItyI!C藾? EkڴF3,3w=:CWl$hsx6D1,4 8@"޲5h]g3yw'= Es$\!8+m}$ү< g 8@p&8Lp Fp&8?SMIk/| *ےr,Z-*֨6?Gg2L&VR l&}zjW' ^1g1=xp%8WJPnhn5jZw}WsL<ޒc+2D_=AWֵf]@/:3j*{VjOcL{zj7%rG322Wyy4E"϶خ֬,/-*tmI`oG{gz.=tZDp&8<> KcldDJqL6\]}}dWcᇾ%^{y6\'-X3ShLF+ծ+rf\UРەsc/էxO"7d藍Aٌ.f<<@`UG _ޔ\s]tpyF έ/}Zgi)ty)ԕK86T,u >c/=+W?H s/<3bvS _^y$n"hσ~hq;5ܺ')3)/|}γ^:LȐ452чLpӴ1):$h`vCrTr?,50M,gϳ#r;޻Z, 5 /Kt;8 !m|]WSWkooUEepȬڇ8CUDPAu@"2Ȁ2#2$!!upTvmҬ\k&kV}>{Tr礄ÂOcmg5l:<w};3g`ނ@|򥔗t>X/g?%ԇ۷"+$Bׯ_RĽ?5gquC'r0ݽ:O>e&Or6(Hw\*7Qz7[&LC/~j\tyU&?I(]X9 BQ'Kxq UR9J V /ñOO{ -FmRW?k`p{r j%|wiP$̈́0;6[.1v||cI3f7'9S^Wa58c8v9u1e2Vǖ'ߟ[[7"-9?DREjR<ݿr'AJ!bI(-.h8߼y9@0ӣ_[ÇgL)II;.IEF{j4ӡֈk=#1~~$;zk5՝ wϖ /~&̔:nQ f,hD$C$v8*2X K~! ԳJpd'סLwކ(}5t q\%Wc8k! V. ŝN8< #3oHN锗t}o1c3cp PֈQSl?j?cp5H8|apGU 1R WueoCXj8:419&L`z=yX#o|8!ޡ!2qj88D"/T#y3ܖr \/\/5EE@"4 69Kry.B`j[ҍzi&vXwF@H8̯nv ޞ`e>;D?6|uv IիW,i~ ;YФAoy~$'!ʒ`h_b8쮽Iє? H.s?ZJ<݄Ɗ4 B}!%cBNg*sd5Jdzٲ?Fj완#(D:A )8UASD{ ".u<-u UG|qhܾJ<ȗAqXz@)kodR&`GwÇH ߋ8! _z c<9O¡W0W8L^"'ӱ7N)82_]3G.!+/Ǚlhop[&/w·+BC&[5"G`ߞH"Ҝ^]VRĒ{j.=_NLoa9xg@3q'ΦuB8|ǓFVVٳ%;$Cƛ^ a0_ f GhQ0jlu@?8z@y _^=vzT^ ^Hh˸mܱZ#SvFGK4ʼpx8EToE7Y c QhhX肍o: <C1тOm{1q9|\} *J?=O_1dy/T'G#f(?\&Dy9%iX`Y Ȍ<>l-܏?@^#gd00t q*w|+J2 cS Wptv}#vJv`,dI8Ʋ]xL‘1i}[E[-{~,?2\贪%̈́{wڕ&3h83uzRyW8_o׉ܬL`&I!D߱'*ޣNqn.iH,*w/BizA}kkzMu41>v} LI}P`WųҪ4:Z2tLBRVzE,;Y*3U[_Yv uhVB~;_ bڑx쥯=Ay} u-yc0O#N}pr"&3nemE6CE>X]:X6t6K Oq֢~ ::P:%>+AYdl'3k$C^ gB058b(.~C*^3-./ox}ysf"1.3d~L, BN^D[,R8ggå Hg4a4_bD;umL C{ GD0JzhVfYk(.KPn(TG8/I[xJy8õmwn3ڑvҸBY8 [ LgQVVkkk|,"9S^{~;rQ A1,qrh bY5%G}H[%)-r1^D"~2 j˒A{SB_6NQZTrFA&dd8 K:>m#V>A\ YϤľƞ)׫bk _< kwڋ?ry5Gs#.ه+n;Sx$d 'cYD<>0 V.g qfѿi4ӷx&%NȫfWcd9Ʋ<8e !܏M ![ܧUU@옺6>XY%WahU> 7 Q·sg@pB,d3[Va zFrb<ϝį2)D#1r0TK%]AMz5L\zL<`JUE}V}'s 憭%G+.;+Po[HI?X)8{{y1 8azL)ձ+O1~?B{,)AxYޟS>g58SC`LuKvB<+t~loc@x=c0Θ> C4ݪ7bHt_S}Vysp9zk1>:l"mWu" ?_f;w8^cR'ΝoƝ_O ̉?cskK3~g#i4H?>sĥKP'&|`{V4;;%S}JqfE bY֮GVf{݋7OFt+M{|839B'ZΟesVF;8QTZ)߇^um7 ?yFY'h~Cǭt4}`lB^O/Bi@U#cX- S^1٧g&$cFtX ,b@68q8_)@ysSJH% 9M\7qε^6nlXK:)70AR1$^!7F`A0x5ř}oqb"&ę )s5ix`&_l`Ɯ0DM3+@g36V }=s# o3qUEą}ј0* & u\8b{-A@q(HX  K齓@Ew"$J=tu:Sss Z },۔RJ)tĕpy?0ΔRJ):pf83u黇6IWrQJ)prι]ܾ%/d!+3gfF=9rȑ#Gp@ U g(Ry~U^Y%Jn74͈:H)Ry߻&C%Ù,Ҫ3x:pƯ7ז5Z1;3VRJ)T`83ƁÇJ]SWd Q5}o-&uegB!Vy3p>yWMڭɒpm=}߼MYlyxbCllj_'azVo-&u.)B!"%Ez/3e2VLaEr̘:'C[[U8˚YpU!0L/3/3YnUgO#'3_/Gz*הkd-h3a8סÀ&BFyV53ÙgɈ'ODOrm̓h0UU(RuZL~™\W Y͂pK5y5y)W gi0i'pf8SJ)2 gJ)Rpf8SJ)R¹| gw-j!봚 g٦RJ):(, &-6 gJ)Rd83[pRJ) g3u9lrH\GRJ)e83ܻtuypm]kMY@wؿ/i𙙑Α#G9rx` ۋg gQ-?N qWM=kʵe k4TEʞoiFןRJj)} c3YOсv1ʵe kJObHdSJ)Tkpf8ZŅLx:ڔj]y-YoMLC{k+B!mf83eg{,`YXx1}!66VFO/Γ0#k PQ/B!--.`8,7G:fl! s!`\GݳpnomVnbsK`վ+V !!AF|k^GwlߍβY:KΣ!₠=!, !*zo™쪁iYń o8<: "XM[xZzNRN :޳ _84) [z5f͚w EVu~J8ZdM,)d8BEA{4z^{k gN o[> s-M6 <%o|bm|eq[n͛e!狯ϙEb0o,ګjÙB 3ùue;V`p* 8B] 5OgU3^>7b;Xd spު8,X1r7^Q[e<)MsNرCFr x"*q?}3-ƓEl23!B [%Rb︩,GMP-_JM!ן- .7l*z:ێcSkQ /_kPJM6aƍ2Eyrّ#>e2VHoުrMApfc5*OBۅNw@!yʿwc5ÙLdzP"=kʵU4Ui+)Rܵi@e3Ùڭ*佧RJPG?r:rXCn6"73/#/RJ) 4i'w™\n YpqC)RJv߼) &-6U83j!k3β=RJ)R gi0i'pf8SJ)>2ΔRJ):pnf83)RJkpf8S컇J=kʵY3RJ guN;jmIla;ӁNn߾F~:ڲk8uۍ){ 9rȑ#{8`=;Cv4z^ksÙ(cZۋvWl\S-k\|wP_RJ): ػ{ΜÙvڇ tV̀ph}WFRR֬Y3`_":?\9UNB!'Y=CUZ3aCV7|,i:/ewHyS8g|TȜSu}ጦ_yNw9۰aejV&lbVβY:Σ!s~NОsz^KuCX59+7 >G;_&aDZQ7^ >u<;k*Xc}q|gvW];sY<2p֭ؼy=|Ϟ8`I3`xw} gB!dTa83uP;ϖ Eni-sPbŭ _O/gL7vT5Vv])kbd?k&s2 Zg[5Tg^SQ99k 7q%]n֮]+l5_|`IʴT gB!0rX%DCbBVp6o۹ ȮnWݧG WF/~Z*qbxj^ Bg}OJ arJ$&&(ڂ>E&?/¼lB!l̾pVPֻp[ᴘBbP,y6Oڀ,Fe%ؿY̍ۊcFS#\ g vᓷ֡ଜgk,k {w-\3 7qEAtth~PZhok t\ QB9/'h pVt_8+q?Gcʴ'w*8丨Gꇯ90u$|f!C+pbբ"Ǟ^M{f^8J aHe;!m0豞n3!20tpt^)!s3fϱcǢ6e8B!zp3+s[՟-D<?_㐼4p&BÙ\k[B/e[/'D<Ts*,'3pϾM+o@vu/-e/qt W."k_g7 R!/- *3ٺEOrmY%gpqktΝ;!"YO{;5Xy6XKH8KI Ajm$rƳi/;<]kʵd}ȮxYfѢ/1`K"콪H:lq@,3U آo=,zC8 5Glż4P`b]5zz',#7l:67+ H,Z^^,pg p瞅8&Ն6 m8/sE"s:#O6lx߷3pN -i/Zog,E8u8 @m8'3p,(ί/nyG]d[Wx;m8/(Ç`: g Ppg6usZd[gE8_^R8i g Y8 3¹wἊVG\Pu8OE#υp(E8 MԆ65D8G᜿|,/.G:ppN-i4p!3¹|\Ql$vlvjN{Up@8 yἨ-gwp^T*5Xj{m8v8 7 p'G*"m8\ΩRu;U8 W΋8<6Ǻ݆s,XEs,{@8 9G8dE8 95XjN{ɎY8gݏG ؆W:-&ǟ9(Op,@8 :yvmu 95XjN{uY8Q`?ap"SWw0mh_Wp2Xz|p} 3Y8 p,¹p p~sZ^pΏj᠙<6|x/ޥEjN{h<{O%( Z ڴ%1DV(9cC ?<1+( 3Y8Ppg p@8 # gù#3p,gp@8 V,¹ Y8wJg/.3Y8 spΙ,Y8g*=spg @,93Y8 3Y8 g,3pn, yK8 g,3Y8 @8 gp@8 g spνpY8 gp@8 gs#,2$Y8A8 ggk gg pg,png g pG8 3Y8pg m g P>, ¹.3@p@8 gbgm g g pG8 3Y8 p¹. M,pg pYΝpY8 gp@8 gs#,2$Op(pg p.&; ,¹|Y8<g p$ 3Y8g@8ׯ-ԓpvvw?$|Alyra.,-·_맽D >iIx0,M gm]Sg(GK+iifttxfb{m g][ko^;o@l\b ,¹z7@bsfM8WS[ ,s_8, 3Y8 s3@bY8ע>VW2CKPܝ;]8gq[t c3y6T=E݉;]8g[Z\f^{{_Jq yR;ao^~%~sQUۭm*z+*a0A$@@AEABB\+<*y:5T*B"28(}{^ojHNEb,zY9߇H}^\`Ss9)ōB 25Hs?;7SNAv9M!!<< VE }ShMO⬑PSVV?7|H=sSq'r4Wg Bĸ%86}>sL_~}txA5}Tę3VW)/W/=Jy?` zcŕO37_( BxM$wV䗲mӧOGBB-JV‚iB2ao}]88_x{ckPYGQq!? tX밡>{ӶQ3^%mu*#̈́O\!d!LP(>05?'&&Xwۺ߃F)Ctt4!>tx݃0f"W[^[iz7 m1ЭDDFs. +Cpʞv`aH2x:5ݯř@{# a4k.|o-T%ΝkWvxeI!HUࢻ%_ʃ:7W!qf$D 8q:bם6v|g,3&@ 6;c!.eL7Qo~zl`vaeT{ `˙؝D)Z!gL%A-s^_* #]?JE qqqxUXl)Hx`koGFI~ߚXe*\R=rYScĩxmu::,vw~E;OZ7nMfbގ}pXbaϝxmq2Z;Y:_y`?2! q*C˱$-J>($ G´98"2=XX3̍6"wG{(*SC\H75`xh -z9`+9Vr̋)j6q^g* 2\F& R);|o Vr%q~) {|,ꕹ;" ʳX.Ml=ĶH1M~> 8ҠuZjWa0u ê#} UZ:u.>䀗6кsY`Xߠ%Li7 @$A&}cf޹y~bj(dʘA= [Vu/C¬E5N[8뿋ǠNnF4v#LG=9 ᯌ8qy]DE4*y8S(pJ5("̠X^s&V4%4>a!n51,D7c .b wZ<z=%S1ow5,ݞݫM峓P`㼥И\9kR/J:$vE31oiB>?8Sqm^ZAoУRj=|6 Uf,uÝ:D6~d iӹ>3uN;nCt{d]}=t 7`Nh1n7? >^0MmM n\zSqP(_h3iTHU i< "='ێ=;*& 9"8ZzlSbuj=h=aӐZuZEOƮcq9 Yܘ~|%:亼im :ݐo}z(EZ`,;-7wq|B*@ l{y lob㾣S3 t/ IM1w(W"Z *&4[U`7&x5\M |]:s6U8k+iC JZİnDD[hy]cGYi>s$>kDřBP|ek"aS l,+XYۑ=5,]d[y2FcM܄y8T=^X֣Yˡ^Ye`1nAФ%qv#$q?JX۷Crۤ0gR*XuZN)X\>SLƢ .uc(F$!3$v6)BZknۋ%ՎtMw󕁋TG[f='lF-Q][?C,3|TlErd<.$bwN;UEɘ?%&LwѮՁh޳^ĸER~ftkpzWq8ibqL 26cyX &sVK:ww k}8S(OtMtc1H86Ha:;, تZM]1Xx52!aJh,cP9 ~J, f]}90C} 7/FxP&T>mdas4-cCҾ!ݬbCťN{CbwbK0+j=do} }}^_{m{"1;,5ݿřͤDsC [o"((˒ya5jHCYEPs۬å OřBPF5;ZQs,zq1XHElZK8Sq2jNTW#+'X֭EM]%N<NA#q Q!'xPqP({MJىy;CV\z=;gA GPqmq80߇^Ӎnkm@V9df8IN)!Bٿ 3*8\%3B^j"g "o1w4 *^j3gL TpU87 R<>uUF:,uSTE-rޡP(ޑ۰JHRhMqLv0/ż|XLF\|=hr+ BkiM< Lq8⬕K҄\8{wQ~dBO~FP(5Bk:gF!u2ʏ r_LP(>5Bk3g7:Z#CGBPD TG_) BP(g* BP(*T) BP(T8S( BP8Sq( BP8Qq B2(r4K(e|!s$s%sVe?@Pq⬕KtA.l7)hHD`e2M`Er'PCHJLNK- ۽@q2 ,TM4ju|,o{:n"L BQ@hs|W7=tGB\ɜܷUr\7o\euӑ^ E֍zs(TRtJ96>)n|z NdȺ! &BW:D$m%s&s'kౖeb'z@!٭OɺOA3gasn޸[7OrWm[cs$Ky=mBaR0) ⺴"˞?̝=Fĥ^;\pqс:3gT]0oؕ cs ~w1?>t f IзlŵKN2׺:S(Jn'þ{Wߒ5g-.+a_?Mׯ]˸zwXPɓ9af@`XAb\rP<8kJyyz1`ZqY׭͸%FWn 8_IyיBPrz"d=d5#==~KNC-O>p,M5[r>-Co{0Ⱥ#c@Ø1P,}n\>sWΞc>ȢP犑>~:$,A}XLř ",n_m_\a%b+ PտwܶZ$>ƺxa,&LyI[+Zao>32ZPq~{1a^b;>́a8c 25=蕜;sa_8_(N3O@-mjJrPX^Ub>t8LYe'`ݱ#4 Ə2v!wc/|?VGOL pK8Sqt':NjwqE >s0矃OyD6+ߚ?Y8Us[Mrރ Ӗ dAzHH0{}µnT)с#nGgGq kRymf& J GT$G`o @wc 79U{lQ'R趲򜛝y]S~IJЪaܵe).`qgF1cY&4o$gػN =M} ]I/ykg&p+Uع66.vg*}N\݅۞ O0ix ,\S[GѦpEN{'!|snsg-F݆~h"m=rYScĩxmu::,;}m`vaeT{ `˙؝$y,w~f t?'8S(g¹WԌAƀ)١xyRyj% )Wnr |)&{XgDc]N8ҢAV3 U+Q) us렭/BE`.f–*T悗_LD5NԖ!3`w疢 R= $/Gsx]{J:*fLny˗C]K4&`Y ٧ݒ|b.''#r.Tlp{F<?B^Ƥq6N #bLD&MGa-T?Go7':ryڒu .ֳc`e8ryjDsBQw,snSgŢDmpP{0!Q!90Р4Gߊu  B!v˝?nLry;{}32:Pq§*O4AN|t϶=>v:hwQi’9ʽ&{ox4TANiĄw{l4ΦDDLpn3ÙF)G <ݠQ4KE,.!ĝ||Nn "4BmCeq%TbbT䠤V]UW]WWC+rxFvhOBRQ/7iCсK8Sqr̓0?Ců`m /}Nsh=56]OOp/M*W-DƖGN?X9QG :gy+].,@qPQR [ROڛQYRSC]WpgWO): ? B Wгl1졡`‚A1O g78ymQUx I-|.D;>.Li7s,/ #K_¦cI`,ǥ5\ 6^=9 bPw}f`p͗₞"\Ÿl؞Wcrhv yvߠLT}٫RNbQ>VפAa;NdE ʄ&<:fj(dʘA= [V3x5x9NuhKWq4)-,/?vVC%Ž66}UhzsTPӥp1](A:-\{m'ʡrAUKN 8pgWK39, z3g4MC.BS@/E㼌cA /j=#}6=*м#-T/Oqm .t. ڻ h;.}7@p6 'yΥ+Emұx I-b>Nޯɦp愾뜩w {ϟ32ZPqur8tj6|y-H~ IP.82c ]==Jx\KMzOf /e"m-Bu%mKOKXSNٮC((AJ F"t(pQ4_R V-NZj/kZZ! >wqxS"?A铏sC0?%gW(f)F3Ůd-KsDp+al<_ V ͈E&bgg j#㷆GP;4w;.TV0aVnaƈ!.KDӉ'oX^y&z'gB_9P"FY;ӊQl?,&M9H[~Jlڐ+p#"BBQCx V>Ο32JPq֞P6;|5Z(\j b7}X5وKZQ@ZfZ!xa^CJ̧=83Zeg"7w)4dr3) ،a`cs0+G"T)Q3ك{b,4h/F춏P^JbDYV$O0mN"vqoWCv~ "DbGQ미A-9g}?h?:ۛ|ϥD[ " tJAhGeaQ/?ՍP(/T %E}|û8 VGz gEK5cA[a@PN ?EKxϭ,_ )r4gmDBJpޏCں-޼ARЛ8wql3ifg5lFvֵ@VƝCg e<}j3 ;RQ\-gq֩&d:~ZIȠhcW~=wOjZe&׮@/ #˸ƽ mA}q :Ģa]wq't8ԧBG gcк~#}H4U80k7?Xyfe0#?b_/Y?* XA|M/nýoz2wjYz j"JAnxpLr塪a\n3#8"`v"wiN'<Hq3goęV&Fcu߸~N(( n]d:Ң>P(F kUإ 7a߳ϿNgdd Y+P^Z~', iX >Dy1 Z6Ҟ! i'Lř hCa^6yz5zx u#G :BAPocmIկq,Wn} k_c3;wL~ϵ,EWQr=uj%3ɺiOG/'LY+ 8q$ xY/ndhAP(?j " 9Ml)#PCHJL殑˼ԲO?=R@։'P`sřy V_:~ dzQiPF*2 5duʇ2G2WfL&lGk}-je/uk(yu?g*ntr 21 :* ehLDٻcց gҫ8&' Ahs Hk mUUm~me:o5p|8pP8sk@>,}UA Ip. n ' 0m3pp. 혺 s p= { H\/>p8[oz\V8|¹01p8ICS p4ujÆ3Wq p^~nMצ\;ހT˴>ػߦ8 fcveݺN6 ۘGoL h(" .(! 0\HDMF41 q05/Wjо=Ɏ<=~.dy66>T\$^7ܞZ׽kO8?wlb`/xOEXJ)r_2?Y`|bAL 1"V gL-1&Ĝ/8o &Ć+bF!$ĖkbNY p68<|yOf&8*t? +ڽή5jx3unsfpy╕'^_ȭs}ԝ߻'RJ)~L!FĊ;bH,)%Ě{bP+͚SrЫڎ]z89<➔RJ)za@, !FĊ;0cbM̉=1(ŤNs΅?kԶ.7Sg}Sj[g,?-G7e={WܓRJ)xXa? 1!6Ĉfڌmk0 پl_1Z:`c{Xz纮éCG7 8;zό ytnisJ)R}a=̇036Ĉ1? O ϥv<TYͿPd,CtCTJ)R a>`ƈX?\Zhy6gψ4;,yiRJ)徰~_5gfҜΞ:ųym?QJC1ڴ)>w 2MOcЏ G4}E\ybQEsumn?Ӎ%s>=b"s0i_K:TfehdccUު!՜͈'\[]\VڳU@PN.׺ޤ $tRNS!"ƈ+Ul~7Q*ʮ<韸lo{IT_*4PTlf\\3pۗį+|4/i5='гuP$-IENDB`kbibtex-0.8.1/doc/element-editor.png000066400000000000000000001123101331300026200173240ustar00rootroot00000000000000PNG  IHDRgL IDATx[nLq/lj链HzyZVZ}֘e`cypc3iPu~ k\-_/|D!!BC{Cl_t:Z,˶ BQMRjӿ^&%=_vLJާ\Uz}+V&O&-=Oz ViZKg@l><<|ǟw=v7Bȳ:[з!4 :e)1l ։Ӊ)\iy +y#B$G1$ UQVh$-ErOŠ~Zehs9/T{I7 yQ"EW Α_̩.Į281e:(;3!A7yzѧdswBH{ esUi{ƞՙ3Ol)P4"nDAG|G $0 b*aHɢ,{f(;/8V́C)@$" M0hQ.q&8(!&DoeUZ'&3s%<*B5?odm @Y4@ %ApV*j M qPuL2M}Aw&ME(+Cc;C9h7_Nr y;XqePvm/y9|pLpQ.>d&)Zg^@ZXFb6XItE:-_]_& &*?"!1F,j1>$ $,ʞ|eM/O:s$ɱ^r ޼y2Zyo\P$ϰt5Oܿi1Msj.L?]#Mx8~o`PjP)\ x)0j"F@1צc,de6S$AՀ`[ BTr|>+<^%ד|VV\ٝ۷L0RLz&bKXQ lľFY5=oԣo)`g'c?`Zߚ; s{Jfh5n}R0)eրo䱖K^];כ}kw({Q8sVv8Xij<ִPsk 6m7 Ԙ8PW] [x0=h?2c.N\ IY)@UšWZjI6 V7ynW 5 7nAX1{88{kQ1s2M{p1rnIve'hRl=pvâ2{U?E"L-ś9VLLPEZN͕xqj^(ǦcIIƴ?}I_T¢?>ʱ7d* WYY6UskGnI+Pgۈ?w9']5{qmkbY>^^m} =#=QZB#p/Ie3O.MPnU:y"u=\tLuԝCuetT}thF+˙G+@%U2x/]Y_D_p”W3]43d lugs$W]Ez9\xLE =fVvPgu?TJ"3ϵx4ok)۲>Ӄ31kf_9F%_&n=g9>qraԷXM[RS"94略k|fGz^c Ŗ:w|3Y>% ‰КlX1$Ǡ&)6h#ǛP N9=%cK.)0&ClbL;ƜYWfkN^dqI-duFΑsY/oe\_11f/oFpy3|g=g2;`꽲Oϰvr|v)KǪRg9֯&{Xij.`M6~¦Gp'ngRƼeyrً-gg:7(NuSh 8"plBݶ՘?9L7籏͜7_AI$}o^ok#ǹ'?ڼ pZ 6_ kM?eM7=9s<%׫*61@}7gD6@Mp" m;-JOf@3F*᥏/|0x1ƈgD`;@iMM|8ʤrL0Nu(HgDIZAZ"n+vc1x9yK%]*v_.3ƀL'l&I/7E wlJUdk_Cg1Q;;㌈>7&ZB;Gp bD8#b56=7mMܺPϐ ~ܢT_‡&D #"M˦c o" X%5W&`D8#">pz@̵`nsU-cKt#"1' r -hnj `u`ucu|92ɅqXh:g/Q{7ρȡPSׁ#W>ma.m6v!4+:z x͹W|u])vWW%l []>^.pэNAx\oԤDա ̋(' W?wgΜ8wnt ^ųOXwFKs3㻾rLa;]qy `xi4Z1j~$09?ԅ(Ǝ10og(-M0z?rK:烚jH$݈͹/Tsf0uSPg|U-zZ ;NAx#D^w`CTWĞGTT㑔4梤X{wCx/++p TWvVGVw{[cI>!,. חY`eiGc_\>$n7lV"2OVQ"4$&-Ax,z0WyD"q> Ov÷fXQǗ}+mZR҉<DzGbF]@Y?G=s8y$n݊e˖aȑ̙3[pLJy:gJR9Nn(͹olJFQW{g|^l /3e%1ԅ!@> 3 !$3,YfMdvځf΄2\fNoD|&so3"4Å݉@|%F #a=g'[ɧ@c7vͱ`hMB4vD"u(D.sV_W#2Ss2nܸͨ;xG|\,rsXwJYc/_R-Co0atyWBGn(jL_>`MMYϢFtD"Jf ̙}a˖-ذa֬YÝA\b/_#?Y~(VsW ;32gpj.f hoxGp Sky6!hjCDl݌H$Rs1gu==O,iEmm JK~yRz=}(nmāwőre qdLƪ,iC 0*9b]"v-Lgt -Zl)Ao΄`"y6 {9#HdhhcԩpssCcc#<4˭qʃ!쬣7Yxh{1&kMaK:V(`^^zjJP2c@\|>}k=VT1;AEj;Rj0yJ;:gj(CU7{ pUpWittdhv! JbUјn%RJ n.!D"cqHœVWӧNxYMM J V^N6{ˢԸȻ-ޜ ֜15F+˧x[#{6-=")L•^_*e9 ;bQPvSgu,FJAQ0w! `ܷrD"]v})Ə'''ss # ;H+**O>iάYÙ4Iݻ=q_9+Fin.`hͻ`Y}*M[ [P"b8TwtRͮ05~" ń(=0>0j 2+ZRޓ&05"o9 GyzڕF/eBne+:e[T%s672?DZr "Mh1{~ Q$H}Dc"欦exY'GII jkkQrږӌ0eAJsF@w~1GmΜf%E=$IG'n}( ~ dGkrpfaAQ(~];Gl->E;H$uy%aggiӦE";Hrɓ' L Ԁ%ٷ\K9o}<ñB:_cig0]Wb0Mo"B$֧udiup7ObV4hV [*oCYlcX$Xnh0jb~.ʓ/Ŧ@UGxq:@"H}x>N"ߗ3g/+{ {UϞ=)T> 6cpn)vN XCȐw[̜: [Ԝyb$OegxkL&EyrtL tF=:@"HoG?a``q`o~y!*1u*wKTPW(0}\jSntA3%,kֹSpP]xx~[Iu=t#8'TL퀫/^@8.AfH$O9ʊ>99쏱{x6Ӧ8]L-u5v<W˽wb8j**#0@ Y|嬳9 DAw͑ZۃYhD"59;;sg%?/ Ɔ;ɮx3lɞcW2E05s&|s֜M%(OZ!:*Ch0glT7WΚd⥖zð`g 3o6Ay &9#H}}Qx[fأZEEvjq CUy<=xz\!HOgGɜ >s)`h .9<(*~UD;k]8z2h$-*''׿6b ,^+V.勹3g@EB"Lų'} CA~><.6*{&DbAw}NdP[SMD"1Zns>u]]EcaGmZnD"H$3()*dk9#H(6ϖ .6[sv-(O3hr JK՘ծ:~D?ZφH$}(Bfj r33 g s4x Ņ (bo`ucudu͙~5i$DgD! vq%56}}pQۻCՅՉՍձg挭$?'H' "l-MA얿 ܊VV'V7ہ0v+d3   vVnd   ȜAAA9#   ȜAAA9#   Ȝ CAAA   YȜqAAA9#   svE2))Can6r2>HXXY]   ̇5)`Θq).G]]-Z[[>HYY]s   svOxG:y9Fkk+jIuK:y(Fvf%߷W1ԇ@;`>^^st&j?dc,l*  )K֧o >F v\\徴/> Z[:K^9lii(-)"cXH^!~6(6>$qAdٓ+hinƋgOR~.jP\%,MLάW߻K~]+W%ԇ@;dٳ'Eq"; 4gWr"v$ R!yT~LMEx\p 6565;jAߓ>oǁc Ȝ=yP*~W|EE(,(Eb_DUe%|)^2Is&YLM tl3nCf 3XP/@Q:qښ_ ;=?7$Ҳ<ոqF}+8ti_4W/!/jǁc Ȝ=~p_*>T!UUS+\[[bng\γ}OaLBHaϷ!krL~'~~7m3(M En@YOB?rښ_gOK|TaEx{8_苰Q;9#~5gw٣R O3ër'sNr^ 1Er)ΜR$đC?_S_clXO<`mk 1m#|%[¿Yey"}q0g)ڇ%wx\pz4 cq,%g'AC ˜J3ݒ")9YMnˤ&vPz)w0jhh@SS[gֹp&X2ZBa &%VgVw'%t e p/-KVu^FWXk5UW _9L1a}D ~p>4jM_vPϞi9"ӗ)Ϗ40a5*ρpv6Xjq=c-1~X8NN1lY8giYgq< 搡6 '!>DxߊY{w681tvv"z0Ν>g8gXK.سskeH ;-`9C4al7N#1<ڑ$p'T;(񦌽}~^u3g{R뵫jRI3Rjj"v_Y{jMxD`/0/)-E0՟ '}C,?oYLе{@XMand|F~>}'!sG9Wד{m( W##d`o枡50hsSXX^ g,-#c 3Fh$s{/Ҽ sFdݓ0fz>-٭L.YI/+]0גQ+L1zUޓ_,)>V.r"pZy#-)u\Md9Έ%.G5 ^jHV +^ }qPSQ(u)]H0 5Q77"cX꙰V`>湆V.$Fy`\KR Mj-,Y:QO=I~Aʶdcb!ӳ{x̷) ɇ ~Q1RJn+1Gٰ!v2ĬM39@GGZ0sX3Ql(H`ܾ2/1` ns1:53Jj;G!JL3*1LwFPM|j%?|m00㮠ٍţG )YZG&Xx:csnLX ;?X5Сjfxw];Ǯ`8 q{]L|x4Bhψx{ ppiߟ-}`qOqqYo.lY3pԳƩs/'}" 2gޘR;(Q{{;g̚;0ա/?0gw'ϿhI/F18p/O;!P~{k.hw-Ӑ"1$-? a?Ck@\d ]҄{&mkሿ挝FtnHכ ^?!{O+?~py!&o_0 ,pzTƾIY ¼qfO6 (F~P_vMֆWvL&Л.z G.,f9a)/DFE!!VѴ*@ ÁW6||olf97bbp ~}LCC>:Y|o#c̾wx=YYcO|[365P\iLELQ|qƌ%vJ~ [ރf(lç8|} {v}ܭ¡sf=b3[6H$yX}# 1>i5v_!H419VZ_ 'B}2A9+GJɍ14.K6TTTx|}} ///q~\vOѺ'=L8>3e%1P3lGlRbufu?&7>w,Lbqt"l z?~ŔWqwM.a|0)(}ÍrCSl|xGuiQ*g϶0xq,Y]I4pXjdc/T(|!OBel/APUp'\~ayeݞQ}|g3BLB}$4x_:^щy4'g~_ΑnXl0 _|wf~{}m˜)) !*9k&:::p#7'3x呹=w5-f1_ 6Nw"Va8I ;9];݁7`-C_ ={px{ ?|y('K/:q0^Jr%2ܼzjPІ͌op20Rм|"'~ #svT*<ľn!WӁ(+-ay'S &j0sPű"'7&7aj!-"0 |*XD'^? l / &\D|wmJ]L9I#{Z ΁xΛYbXq,X$\@oVnWP#3b@CnT=mAV'Oqw律&%V82y ?> wJy ^\YiΘ()*x%*<ݼ,TTV"=v7P[qmvO$]ܾ:܄-'o>wuKL7gWa,rⰙ\dC ܙmG<|~uP('V$m[p;.FK~iz{+gohvG ;G"!^a'IaI_xb W/F2GE0sg@M;#$$#Gr|pϛ~VAv[}q2LE|eb=R LxqGa@c,g{8+iz/'K3_l3ckY߮իfJj eyX^IdW1ٳs/t}"3=Y;RzXKmϟ?ǽw=xm۶'odf#b#52IS=ao uv^Rɕ,xQƦiC[H.Eyl+a44b%C#1a9DF#>{giCMZ 7wHs@oVxGVy4&K\'#L,"g"Gy<R:He+grظn bݿ`yPߞ.Qf\Ye [a8+DvNJ#+g\3Aai_jW,]g֍p_S=vC |JҜq(++CEE_eyz8^cqeLLuG_zKsl]:KMހضp>"ztuHx㌵-}0YXp~W78~9+/bڼal^m[6و7`u`Zxب-eyd! gAgoDGGVe]c=M+8G RA`>rF9+-G9c6TVV?Fbb"֭[˶xdM)^Wյ hniCKkLZPUӀ7o/26"7t:n܆#b5 7l;G an 8 37’=1W 5u ~7eDbCXI}&Ertvuԑ,:(^FAǎubُ0 WY~Slz*,?go/w_Z{ױWpxxh foqō,.ab:}Za[=#>=+Y|3c-@d[B}7mGagkWw4,-#m[PǬH7/=!w7΄:1sĆ#>uSZ{ ݁?xzxhACeF8`~U|~Wۏ@W}8{4z^u;oþsڱ8ٳoY3.H\;e8[Bs/>lG2gĀٽ;%ok{3kO<5ߢ(?}ΜK%++OנM̠ͭɤ3g,K֘awZ'!V,_h6ػkr23eK *lڰ^ObXz{ybXkf>v$sFdj3gY1ferҥ7| qFې>ˤL)ϫP T-/*|9ҲX^PϞ8I˖"F -ՀhĸXݵkW`0- Ҳ<ոqF}|fa0BPõ8gFS~#jG2gDB欸%y"?;W.s[iQ@פt]Nd7# 9/GV^2sJHvˀew~%8<3'E?l?Ծ67z&4 3b ~OǾhG[ wau5OdM9i)ć3Am,C1 sV+l>auR&;*++D|@6ڀ6 !cVz A2g=1"  -u(|3   A]"7; 9Y2g}AAAd_|挭őu3[W   ]=~-oĕ9#  x7t +2gAAAd   2gDa^׆Oo  }YQsE^V}9c @+*GCC=) l߬ ݖ1)&.+<=pۋ˓%-iIKZҒKn[Bހ3櫤>g>[/W^ ώWXXY1-sFjj )Q   oiHMKsVMmx3uhjlDC]]">^HG}]3 BAA-+^d"쟿 kkx.xĖW6VV7퉚*\$D"H$CsVC欯7Z[[P[Ss5F0fX[[sXYYҒ-0o,Nҳ|E ȞD"H$D"ׯʜՒ9 ҷ欦%O`V3 +3sttĤIؒ+).¹_ (2g$D"H$~0WARд |IlP'0wnU1w\,XWΧO (Szg:Ptv t0dt$OLiby4AJASƶD^lq?/ `T ZJLfP"O? e__~=:!IZ gal܅tuC^W`-OYهu65L :cL!rH$Dz,Y &2Y~3gwāEHIrř[/H$}{\IΣ8\u z-.Uիj*n)~%o?7'[j\nH~3VV,dD{go(*_< Xq c=A^5n,75&юgEsY;qO^#:?FsƧD[=8qqkK1`leIunulGUcٍt0&H$N m`Μ9طolق 6`͚5غu+VX˗cysr-[̙w^7g9nWX:)yca*,GbH݃9 yS븥$;v`̖l]0=it";3Wi0sfa2g쌺4$C? !1fUv  NlL<;85<֬k0t JNbM:,Ka\S` U #LR!{`̈!:dC YGwσ0hrwt|uGp nܶ ܱfʪdqBW.* Ӎ }ϫ࠯ծ+ҷK1v*TFaz/6w7mYm4!-aX6m5\oCU7P!+ JH~҈֪bl0ņTws,f OD_MM x$EL2]۵ ]=j4@#vpydT".`+\4QtFsN">5%9 r3-U Cy]#.P]Lz]c#(klm)xEdm+# '^l47ŖGhG'D"Ο?ܛaggiӦ,8cV[[ɓ'ޖ9Ɲ|t][?Hg {aڰA$fTКf>9ybKI,Y %[JS]nq8R23g,Lo38ȟ $?̕ h|5֦:cT3 g{(iƐ$ub)>#]9s2͗0y!^U d12cx6gW{| r 㩸Y#ݼIWĜB̪x[^-Y'*V16gϞT7g&l([8MmqN :̜Y.A]lpaCOZH$?OwHLLċ/p;3fLG||<%%%Yn2B:H]*Z2nů/1^_*бm‘9{>3[l)1l0dS♬ޙ3YW4WϮT1p":?lEub%&j`]Chi@c8+A q0[| @n+Iؘ 68dϙ`hX`9l*׆0VWnDkok T58.X=N1 @Qs&n† ;APs͙p$0(O` Iݧ@iu#ܧ ܏{Ly q9QQzߜ zgB!BΟ gj3H8\%*|MrX[H8kmj!Vz4d즌i?{qQt:Ml}βxRJ)~*gi]]\%*|MrX[k Y4IHLJ)RJ)RJ)2QJ)RJ)e8RJ)R3J)RJ) g/RJ)2QJ)RJ)Y٠_g=N{4gʳwD)RJ)Yˠ3jjܼqw܉ׯ_g,/)FbH8RSlHOK5LKMaeeeeeeeeeeLLGbW(=s?3ZuEOOn޼T)ϖ%}p8\?RJ)\3dp n~ gjZZZTNܼщΎ]z11͖GvH맔RJ)R9K{mI}`8K|f䰶gT>:;wnU\tI&#F/Sx)FBB!BHkKpF;KOn6+1kT,\qqq ,@llT5'}_]҃bPniC!B3 ٓ|Rd焇&e~d[r%/_.U͝ `"_/{gB!0H8P3~F 6FCvD34>L_Z'잃Zy.s{n:lذ!d|oG(!Ba8 5Sڵcp5 gz0jn:M]uo͛7K lW^ӵJU>3=pB!f}R_w;؂nPPS%~1c927cM/^ǜYXZNzT<^~uOs>a/LDV!3X]ۍ,5YMg]hvE;m62/>_bnWȼ[sbƓSgԜDEz Pnـ@!Bβpfz.fΪ+QלJ͛!ʊ`Syf/~nfcwS䀯( ײ[PU,zb^$*U=Y8XZ*+?ϧ3䝥 W/+s!ݻw*c&"nA,sgkp^ &?> nMS{%I/SX g !Ba8#tݺ%\.9L/B3IjudO83 +'QQa{~ug6͙w P<qs^!q'cgۯ0ؕQjח^a:g͍ŮZ* و|&,ή]%[nŖ-[r܀G1~^b_`ccq [3W™"=yl B! g}f g™u֊g5,yYa`+uMYLw(F :@fή_TJؒ^x7n*cF$Ǹ1d=5c8{H!B! gbu dʜO,mLY$Ⱥ3,ğNhA:]tA)aKjoWZ+VH[[{`5 pB!Bə>\1[p%s4 BN4Y=s7eXe'xed,+.=3G6̜v aRP ǎϱ_ѿ_kR–Ο?111Rel?6=NK gB!<,LP12|Ři|T8b,hUX4 h3_9qf>6#'Ȝ5B[<5m1S׿pvwJ [R{;i$L8Q-x=hB!3UQs9b3Sk/ V)aoG1|G@#S™"=y0's !B! gY}f#΢o^yC rxmӫ&#A gB!0pV/3+ؗaSYvF*\/!V\L{](u&~u٧˵3*K^>s2/ !B!DO$Wz8k0Q += B^N:;;p% K Yj9Yҋd!B!$rpFe%HIJ@jrhnlDAz1/mӃC!BAϋG[8kb8OJ O!͖~'vTgʳODeEqݻB!"gv6ԚbÙO_tu$ÙJ R>^sYBt gjZZtۍOZ#^!=H/=!ARJ)RO,֜HIPLUZ u9eza[K2T GmEz 35)-- B!Dl=A苮ݎ^E-T,% ]]ܨ<ƬSpB.XR՜~u}vwwHO}fΝ; B!D3*M™>yPvA#g2wf3™de~d3Β5 yO, 0zxY;Exϒ,RKΚ*]xg綐cݺuذaCO|oG(!B! g0. ൟFAزv=KO^Vfk8[S2o`RCV~5GsL׼ >Zc8#B!-M_=|J|4ƌ)݁R'ԧdS-bԱ;a)ROάwqfߛuO1~L/ɄC_8v^;m62/_'­9B53yF1B!pvo:cw<5U\mU%̋'*B!p֤}n5{Ғq GU/빧;y,7Kق/X/?wcC?a)%l||tB˜e=/|~/WGƦ̖h˗.(%lI֭[e2/ߒ=c`娫ŠeOcccq YW{%I/SxYi!Ba8K3YZASõ^Ag^73D iIF8Sswav}LVMQÇaA/EY7l>jN-(O{Y9Fc⌧? Wޙ%{-}qF2گln7fҖ,?Ԑ}Τ) gB!0pd~.>8L+ OO_}\s` *Y\'XSJؒUVaŊRel?֖&.#}0B!pvuω(-V_ 1)?,ۑu!4G ?GNu8$񹧌3I8 U8?QJؒ#&&F-+ttB!{Uc=5MU2d]t@Ҷ`ɴq;b4[?|r.u8Uٌ5s&X +%lII0qD2o˗~tB!3Ѱpo*%l{.GyG*3B!Bή铚m0%ÙZ g F8|2bT^Đ!C>l6 ) gB!0\.7*ѥ_ g2#Ks*,#5 lȰ7+ՎPPgbY}j\I0ҿtыgκ9B!9Sf$I2=Wyhps9BtpfG"7+z@ a!K0ut!;#Ez 3'# ͍B!BHScVZ_A3WkF86h጖Fҁ`KJ@]m`8U ) x`nzzz@!B?riN9[ጟ8[B<^h*ϔgKb<*?:Zq]B!Bs{[+j{8G{ћJuU $! "h9glq\Il@"IoW/Rgm)ny.-|5B[B%ooN=Ym[M _~G*~f2JA/WҸۙߥ0qvl= ?JgN8G4l?EtUU8ۨY\8lz6Y8{<),*ܶ7s H8H08Ygl |f_n98;gggl:Q*Ί U]ضoq[968k:g@8*[ @q8qT3C.Wq6`>U]*%YIq Ύ8[q6L9ήTqVl4UW&g[9nq$* fgUW嶕Z$Úɠr!RU83q*qgaͤ?g@8}Un[9Ξ>g 8{n8jޕw""΢$W3q/79Fq/*ΊgUW$;~X-$y׌{*Ξ[3fSn9e=q6gYg96sqh&Ί 3q}Un h!qIafqvbk@YtUUmN H$ΆyՌ+!8*.F_[QCq9qx&h7rq0!s[3"΢kllЫ8{bk@YtUUݘ3cq8;q6cfr|BU83qZ @mi ;݈g>'"΢mcg팳A/+5# fUmmq'Zg{ 8g%q_JMi&Ί f/WqnkKCUq |8;}Una9vgQj<_hq]}UnSq @~rMo1*Ί fgUWxO+2qx f3qv^v#qЪ8;q68n* fgUW6ym:I κ9Vj 9ޮhq]}Un^Z=lU~[U-0*ފ*gq Z @|8qj* fgUWqvSjŚ9UqVl48*I7٣Z8[B/CެlTqfU8[gYk3q6qNgr f,9kq/r/]\"? fUm8hUt @"v88 q g q 8y38g3q8g(" 3qp  @ }q @ ,lW3gK @=q 3 @8g @8g=q 8g_D38@3Ng٣8g3q8g3qqvW3q8g- y q g q ߋ3qsOg- qV ν q g q yΩ8[g -8{xW3S g q6q n3q: @=+@K3qv[ ę8g8g ك;߈3qPgw8(ٕAڜf&ژ誟g݅ҟ߿>K7&Z>,.3qVsoo.]yBKGOt:Nt:ίӥ 磧֚?κ.:OQSU'2?4}W/5 ): Y]23~F8gCq>qv[}Yε/g2^~s{.m>wCGN:{=zq[NnxO?|m{\qֹe-/=N{;iw-%Ox_;\=}8/݇iAz$}Vu# 4uҽ۱~B/wAQ^ݺVj>ܩ[7&jPѸ 4BTTQ4(w# t;Hw3Nɝ;55s}4ږ2y>s{}N<Љ B|)I믿p̚5g >XPdZE Q| O(OL)EWro F%ýw (+?9C$?R:WB!gynD$&;su\O6:drE(Owg7G3o#+JOTVǏ?/\P [ 7?=2E=#Bq(n؞`?:kG`6zK9ȈK {:XorB!ynYi1bbYؾXUV :: z ii9^幗?s0cd IGgp}竎}Oro~1q0-.^3Fu\1gPAazrN) (QS[ ^}ݷwuf5ajFg{S}b榠Vk<cW{cRyh62:sr{B!y5:SSSׄGuk?brݏ֏=7賚'ũm~9KXlkz(@j^_=x18pĶb!/ejy7wq62h}nB:}/v܁ܽyxkȕ2­76.V,Őŋ zmEHB,?L2 O@g;\!'ɜ ]s܅)AHx"c ‘}kěw0 X9 &m^<6l6vLdkPHnb !B\r\5~;;Xt rv`ǘ"nK q챧mS2r A\Yoo,,xFcaK.lOE}|0wfk.lA_[>VEơ簖쎌mdG`V ef= E\v5O֓{s?X]Drp* kr T[ b lA.ξ@s7Aȱcۇhܺueeq`k>,Erm[mFH/@R~e r{3,OƃФwwEWvx ίeȾ 0hf@x1Y18|,'?Ba츤/IonKz U˗ycN!B|r(,3ʦCqq8s]p:D#$=M^kP>`Όk! GpZ%qm;. \‚ّ.aEgfΊ18`̚6ELdo/DԆ&Xskǵ7e!r8W-~MYzPyN=3zVtZ5~w.G`֭;ۋ3h^G[xi\5KF )@A\X& OѨug͡(hVp̟b1nS!뛐5/Tbi1V%ezDa̷a2=C'B!sս"Kݎi9w2Ps#8i9ܦ\ЂmQ?ʁd!1Ct["/к_M֞t`1il@J(K EeL9Mcu9vYbao5\9LM 9lR1mo8Y b^N@ _b۶falT<}-mօX~Qć6d"Ԫ. FqE4ܧbx􍇐Œ$(=: P)~HMJd E>u 2}|X?tB!>K%NR5W*ή鼦ȡ[^~ajڂ2hbX3 Q`uB~:)g2J$ Ánc^_w.b֡]ˎQrZ+ G~1nFlZfӽnW q~Own rhǽۣB!f űȓ}.M"NA&'Ay0<,9'8Wmh#^p\Wy}(MŎI <,? R 49+{X]'xW8z"Bm/~ /@p fv{h7"2`1*ۡJ!܅A sߙDGzf\]qM \:%ӖyS0C#; M5йn6bkzD{jͯClav1|oc !B\Њl6uVQrT`8l+FZi r K{[y,:Ii٬DM)Cn^4n6 >I.4vF?;[lвaߡpݗ'93g0ib2pA>F , 2D"$3ȴ^.zGZQ^qOKي%g`){^Y9쁮1ϠgO7B!/LZG.),_kׯA8vz$ !By.7Qy+>"A&rg/adxG_ EŅ8[|%`>2c|gTf5bhp9/C'B!^^J9#bl7$/!O8S{pUp-o\Jp!>u*;\ɞsns$B!^Iڱ~*Em^% wqu,*Jap(+JF}/J1ĜB!s_Wӽ*T![QQZg׎W a΅9朘r9CB!Byto3W@{cT]z\qB!Wgj*q+(@!Byt8}qF!B!{TB!B8+ *!B!3B!BgD!B!PqF!B!3B!B2$[O8#B!Iu*~}.=-ñ^/1bbK8J}B!HLǏ ;wĉ7&~/:[솣8J~TDB+ 9~-ާ)>B%~K߻/[{0b0Ulo (1/q?CӾ(Z"aX Em,T-68sT_?|7F0:ts׏8WBHL?B pՊl/K E/hBHK?'}cK=nL8"?H/OIRݵf -+APq6c"%1؁V}vjg'8s~Pߎ,ΘR+ě9<<xM GXT^"Y)oIl;Kۡuvx~g]{ob5J_z_e|c~-EU/`Uz2 ј}u<,:q9#ٻ,]tLDOWGWOMOtwJd$;,h#"U%*P%Ba,BI;$IQKOLDOLDzXp _{=s[;Q +Itڙv:\ɈXQڧ"`,_AO_8m^SUP )`=ʩ_(6atfaKA4ʔaۺ$x o'"6z`j/Dg]v|zI Zr8_.Fhw49c#gߋLO1TcT 譈Aё2S2Ŕ6 n){bBo|C=j˽uozlOa9!' w`_7,ߧSz:O吳ǘ 93+n MVgUJ̓ 4f@wJwŅMȪ^x\eЮPxl؈C׸n r ߖ mix*ge9AO*Z^>Bs ԢA4)u {p/Ž5`iTE._ N.oB`= t=M?Czr*9[!>N\$,껸tҎuX%z%Z? o Tquנ(ѾJd8XF}mK}TH)2>#8Tfy|{&3\ũx1 SٯnĹ` 2{ڭ< RNoM}! ;;gΙQр;DpCfa'[L6{1G+WPW2u1?}i/$||)y?ArEWa\G983 ruKb_J6<(YH\4ࡱW7#$W W%h+Gz1_{k:Bobx[o{~0϶x|%.qy4G  g+-?㑵~hΆ?9x8ԉYj}kokE/>؄ |{Q^!LLx93hrt;t(_oN79ؔP߽hR= +CBQ|깮Tu!? }.اAj=~FNey꟎:Ǥ׃=R$}3~jE_'&v5t.A Z,@97~{j;^m~}cB^%ޒǖ jD] pY` B]gz/@sAOyZ=~5zPwv7"e0RcPr0gf͏Af~&(f?6^;?vm'c1ՏW3 '~ 5uƼUpo!1BȾ\rr3aUD_lbW]v} ոnُK7dGxgOWn,v@Sw/AL~t[ck+r%z &Leul ٗ(3Hr4څ+}עuJ 2ċǩ:b<-C)CV 6y,Ê`m_Z qk/9*q $w{4/?Qd—/\vOxX=;Vá[%Q8rK)x?> HON9 hI/u. G_O/ 9_ m<-}'byq\<_kW^N55:9Kτ;c➰ yծtn!*d8kr#K$g&F]F݈)݄bd)vcS)wfc|߻ֺۮAyIwrY1t'_l率j/DIT8X Z{\p}MZq8<&+rQ}w\dD۰evښXT V{yn|9 _c#ޏn?1ke|7K:;Cƭ̠șQmk~V rA$/@}G]Mb gUf_12TGQ =?3B7Pj2Y~ly Zo}UpUg!ȖUE/z%JC*~z۰4vn{q&`7~Շ! ~oG^dĒe瑧dX}P"(v*סSc`V^ w9N(;?v2$ۼcH1冀u zP{ycYD$v=aa\/>9a_C1O[ߌqm`;~ha9G¤q^4 238.ˈk(4lmY63a"go X0i7s~||]?¤$tœl(Jrm͜-ZUThe(( E!&lc;+kbK!gVLO$FugaVlDɻӨaAA&x|A_9vKpyj3} Tbs9lif%FrWtJ>GvYaHs|1Ex/% ~x$Ȩqi {\Ny/ 䋮' @aA~d\[k^?yk(ƽ΋\wV7 c:gk.&r`l;."d RC [FCw>ͩܦCl+X8;eh¦+ɛtV+H4vjCh`?EƒAL،`Iau'1NJsh+usrW5$-Dp'FBu[? kgGNPsuVBͼA'k \o܁e&g,̘ip*+U{ 6o%YQzjO?,NO&@}#by޷|IjKR[vC'&K`W6Z5H9t!h(?Ħx+n@?o^+Y|4GakZ7y%CG1)s4IKkڞ&g琧d 'apG&GL4\_@\/uZH;?v$@?΋tk+']/{ %yѻŸ}1Bz !\4/?H"]4tU|/Y!0$Jm%6dmd#+@øC7w@|\B[|L gO&p rNh \b<j^׳熹:2"qM,,MphPq# U0I :oH>%D{CԊ!P ֝onsMXkY[T6˲@mwM[A(R^"`C?R6<@,Ic9{>'9B훨*ukmma߹/dK\ +C™z  a}O'#‹Cv o&Qь=qx/7*eE wκəag g9. /O O-oi dx)<}M0<935PvQu $v|{^Z_}w 7]G\!nL=OLߺ}˓)mMb_WKjiߎo;QهߌkR a$%6hl0vD`5ke-it !y˼GI/틷6>}ڿgwۈ~7ު[/oͻmtXXgm8;cо[mmzks3~Etmm߬eEެq@tXXgk@Xg9i zǏ?<0L>G%ŕO&Ϟ|..D%E?~,ޛ^\4?8ײTG%%dtvfˍQ2LIU>M=IENDB`kbibtex-0.8.1/doc/external-tab.png000066400000000000000000001464551331300026200170160ustar00rootroot00000000000000PNG  IHDR*49̸IDATxa 0XP73y; ;9`$I⯡,I$<%IKT$IUS8Kh$IRz>k$I4F(%Cyh$IRW-dHs2X^z$Iֳʈ.|s98I$i;C:}˜ s(ٹ68 ev_vq.1$\J ҴP A*T!ebgg9:eG7lb)RJ)>@q@ـ&lNy^/SJ)Re@z G8@,[Hn$iyRJ)n0AT@4r"(d|nT.RJ) À߲ As̜dX`CŲX&S5_Y.K)RJa=̇0h G,٬o<#(3Be+Vgk7ERJ)RXa? DcDxhWf*0FP.UF=7f3MRJ)^Xa? 1ahh!pAs23v?ȅV+Qh% vn+kRJ)Na>`h8G|mAs23`^XZIWVYnuJsTmc;U(RJ)wxXa? 1!6Ĉȯa''\FD[+w>;dnҍ}N_)RJza@, !FĊqk!'^ ܲ03˫q$z+3khs89NJ)R a=̇0 Ą#bEhSbK d#s丛;&w4f\ۆQ~$=:-l߽Wr*RJ)~ bBl{~Ts|ƃ/_~˟:O_NJ)R a=̇0 Ą#bË19[C8O90_Ұn7>;oAQ?O~e?6^/_RJ)uxXa? 1!6ĈX3bG %l:/lkDL6ͣ!LK?G߽Zw~swHq=V"6+([((b`6SFp}M"bwysy~HN3̙$fe!<=Ϗ)fQUYu)OP~.4E# m+=Jjrs膺s5^TDWm'tۜD٭Wv*Sdu>UvY ٬(?h=4 D шhE4c֙:O׸pf4& N>,Ʈ:?'W߼?>wc4j]ךr~zMITBg-eY 1e,X1lk[,GĮ6#浹;YR~,Z S%: :QֱPDD‰H^Cf 5PjAC|_GǦ,lR\IC?lb iCNBTĈ 9䳍ϾXu"=K\pXn{a gY l3VۂfѦI-tJh(e47͝4i*BЀhA4!VD3ѐhI4%ݰk\~8fv?A6i*&͟>y'__y;wϵ̮:cO]L$sBe)6l8Xm&D=n3Q.g >L kFxVWч39 yT pFp3bn3G4hGoekaZe5񿜇hFtpD3b͈zp)O 'l_ T̎Fx|`p#".jkmP'1b)ZhF=f@9bc1x\5їaBFaFޮK”% k}@)ћ)2h)Gsőkz_sϊb1:m;xigDΈ:U3s3"Yh59U(zrX֯0kF6#fDf8͈j:m낓Ǣh.)X4 gmh9b;>c;x_wߊa@X& aDXfaHXRg΋߁7M8Wkj$oxK)߳]E@p|5xě9ސEiǛ;ڮ:?xe\_G-͍ D g=9gVW"2DsHK~CӲO=Ƶ:x.'p c1kia\qُJW* X֫˘o_}%zg[}of}02#ʿ;5=hvE5HM zz/ӳ<# m-A6[Y[>6-pIg:<) +50+7lmG>ޚL'ݐSp^V=e9ۧ}ٯYx.AZj ]_u+ݴmR<֝\QvЉiauhpI+ʏQ'se#g z1@[8`+8+jw8 }#(ŋqpA**,@GXV҂&* 1q:66Fw߹=bmף[ӟ9-hH-Lwʓ\ׇso$TVXFE5YX ~alWq,K^T@?w));iYZnǹtQnNv!-+g=~k+>(pe~7eJvm ;)68OL+m bHqJ4#6*ٽCIy`c|{wRWg읞Iفm8P}6lXZ] :=s*3qq%V=1OHQ/P]տ\{0,Ǟj:x.>9Nqv +5ߨ8x-,؆ u6 |~a}L]ok.Ug@-W~w[؎ۼiʲ T8{F3҇@wۺnfMp.g9~ģS+Oӟ2c3sTo4#~0vytŏ̭_m^{𐶕M2V~{6|9 8RP]{@9ub >;D-Tn=M.쥡 Qց|zh!uEC| iBp_\Gk34 zg[p<6L=.^61+|'NIB+_ %g@He09CVxR^OOPbD\汹j!2<%"X2ii8G- ԟOBU yR`zʹ $ԠF(8P=32HV@5oiI4*'JhMc[$xteV{ny!՗-8CpNGbRjWWa;ZLklN?uSIΌ1PRa!=3DFZQKhcH,KSmZj M{Kd_?.BGfXu_reuZ]>1mPG,D#cfG#搔US.v{ NmëӸML"gC؊i8n4/ry1Lqe0FЎʔPɟz)GΉumvvS]:}9S{eI^pÌ(*/e%Y]EF.W=(K$b99Pm)ϻM;j|_Ds v D <~ll8ұ{.YZڗ{{{7csp[oZFGGJ]4v~:N(H>}\rl'WSOcȃ8mhUk<`MsUQ&9͊y<#gxx2Y;42D@C4ҀW"%OQVf ׂXVT5W^p:QjDkL"ۗ(AAbkOi6+ߎ3H `x#Ʋ$Vm Ee?UY]tۭtTl$t8Ks8hC}x`zQyȯ~I|~`ga1Nm^!l Eu^7؁0ou*<7k6lˎVV<̈j4ttEX]% S2.NfE-&%X  D_3N9 ^OoՇig ʓ*wt}T䥶N 4Xڏ㢜 uK}Tv("7ec\֗N0.^y<3x1hh0iuk*G` $p˫Ӹ[K6@~YksDb9-!_֥h8_ri |"v a|ח~|ya,`=a;gpPv:u P6t& 0>X̲֫VWƜl$ >r LNWu[ߢ-뉪'|lgs7f%qlᜆ3OSe[=}>~jít<48hMC5п8UKV ڵlء.̟}*]boψ<;P}Z=JD3VCWM gRʤ};TPf.vQ#+7d}(cC,Ʋ^|mP`A[p\Z%.XqOTqH/O AjL:c|<֎h$B al{;pcJsχtC}ql.= F_z][L%䯯|>7*N"B)H#9LAjdRjh+@&QCXbdBc@V!@2rA,l ͷeьƀ`qi6/{,Y௣ؘ(8%lbc%{fblᜆ`9qJ_<Ŵ5? >@;Wu"=ePOTp.8x.@8:֘6ZZZZC[{s}z(V08Y#9ʙXe_YGs9?ڏ8L˺,VHv¸E qX7FTRV<_vӗ V /_0 5q1 7{Yrٷ^iEFbGAV]bX_;ϪZ0|I_c[e]pe;١\#p H7de=DOK1'5'hi45G5G6GEHcXXØ"Y&̡̱< ,n,E5Ge}>[`.8+@OFdHө445G566wn` e:Uc9\`.8p855s>(DsHgajj kklm38E4e_9@F2ra9s$a.s[w{ox߳|>>[; ;Y>@ԏ>_6A[8j5,@vZ?ؿwK Zu3|@y|.֋Up~wzz{DZQ〶n6"l31Aͷ}pXC;<1 6Øo@Fb,6^x|墥s\ODti|*1qP' O|*R1s 1XƑ̧>('N݉et\p.8HSh?Sii9&o}U=na bb 95$Y"YL6U#L\p.8iݟypPSTsXs`3dstk|-_gbccd$C\sY !L PsTI5ǵHo vR,, , EțAr>i,t\pN?·t>999fX 2#tqf9yPΟ* vOZ^i_ڿgZ&wM/]ztkuGvNFwQQuU'm-7uA tžc@c F+uǎA#=ɠ^K؛,φ\p.Dl6\; ֠\ְM~hs6 [^?5U#1DZɃ 2ro\p.8 |HsLɴ~TIhûDQ$@,P,&n'9PΟ* Bt'ҝNO993H &Nks"#喆rP\NAڏit՛Q &آc[[4Ui݌!,9eG89XYOH6Cq\X.8+F!i=v5shspssov]Y#pkØOSu(s{=}`y緺z8-o7az^!n\u;a#.@hr5y#dGO}M;Kj ׶]vRk0-ȺƍUoe~ ,yHCڏvKzqn0X fvrwi~-Kg{@nz|/3f7{EwwgE$`% (90T8P "ED$H%  :LnwϹ^~W_իzTu/Oo=G8S̓p8'={Al[ q#Lu*,ՕۅG Aڬ':fC wn@bb(99Z9f~(_F̒QVUa昳 #5I`՗i;@٭?:/_s쳧FcC=je&\ppiE"0 w&'y~5>>Rܣs rΤ[`W#w!=.gƝE\fP  8?2ش)bI ]EHܽ}n_GsqQgI,Hf/g:#Nޏl'=!PDfH~ύwحGgbB>xn y~U675>RܛsAsxN63 ˩՞%\8#nc␾Џa_(k`;NuL!HRfyͅDZ RPl{kB3a iw>:'c S!zpXq_=a2X*C0}o0J.}C ࣹ_fvO*̫puzcIIJph&(bЊ:,Pj؈Nm#11LYUUUŋx,@7$ 2#qd.,^ z:'_ W/E(qr^ "XS`Ό`S,<֎$- >f6[9BaWdZipb|RWpد61k4Rc{m9Z3* Pf{Z/PV\]U%:ufd*+-5Bf܅3I+ĩKa 9p\Hj WT6O8@ =FZMār8xA:nJA{}666pvvFZZ ߱bވTZZ ;;;|)NN ha4ӧAT8AQ(*p|4U1P6&ħM!A*Bcy]a5mjYkCz^6GXƋX磼>a A [z%7"#tϠj:3_ڀ8 m)mf1+a` _"K[!HQF-"b)FUm̟,;_֢2~ݐ~%Xn @au-^ܝMªߚ=(hjO;/<x\i8Ǻa0 b^_ۣ;L;.C^W~,*˻8qrQ]UŴT\Ad*yh@jJp8+µG njS. ^%9gG1%bŵ)pr`™8"אRֈ6Hj8.$¹* FK&kOXo-=}ptN?`jj [[[9((( ܉O._066Gp!!!C (++Ay\( ?pЖw0t5R$qk,f@k9f5@L0ɵm ;Hi`bM6qEz6MG~#X`c3;^Dh^#OfS+`խ0ho+ Ƈ0éfSx6HY"Ll7eڞ{H.v[j~,++wqsϻ͛7xY\L'M *s9qϡ>d0,Pdž~x˒p¹™<ӏ(?7[̋e8AxpD?[8O8DP}tapl7vìrB\{鸝*EO7|aÆb===hkk<|WM 2@PYY qPUА`q{|}};&~ EaeƔ u_Ub!4TB;/Ay>6-72ğvP-ڇ 8_VsŹ UQ+0r} n8$2&\eI=ӆ|G+=/PX8Kge]8WɅ7o\GMM RRqWʨd}@e8vB|,"II_^Pcmp+*cPs jH/T;q!~NzPv!>`2lc Sq8{,ro XZZ.RLV''=x H^ [8Y ^rIalOhD\]vE9k Ge[*\}RQR~+ZqR:I^A,Q|w5,q2IH4Cfї/@s<ƙcsR-W9$p.݊3"JK>ārHѺ+r>eKB|u$+3ѰT<Ԕz*ʡ¹ g@8&J/Vv}svZ܎H|X.$Kn`jVh n%$QLs8xnJAѣq-/?>Ctt4޽{'Q8qr~idێh޻{wO~HDl,yD8Ge8d^B#`>Vǵ&a!ױQʃHbev:-ɨE t͇gN= ̓}jԣ΂fpX_ukݩ'MUd .8$p#f{ -+fk|{* pF#rѬx\Xm:n7xRqy(p./{'^W̌ Kevy=\T8,_L:&>Jbqeu^8wB‚60^6@<[j;bMr+i@6Jv9U pė_~> ܨd7v L͌1q#0wh ^e9sv,>y p98X6!Vz PJ~̓mpWR? UOF[zVk.SeVՆ'HWs UX޴w=& 0ms_s!W@M׾۝sٛIDM+wd΂j5`*Eʒv/K`/lnEj.3{p¹U |p_pn+}H"irj/`*(`=\v煳R8N4Z1OׯMtc(x/&oċs^zJAѣo**ʰ'牘;6/Y cl? r@8E~Bi'D 6E7d%/Z oV8KFFz]KUKCG."pYvR3o}E V̫ƽޤT8S(R j0"T;\Y-f%#)9Ғ>:S))?`bsd&s^pu𺆬 ff*#+T8<%'T/V8_Y@SPPU3{Ȋm"}=%enVbc}N;n;{I_HHHp3#5b)$+zCbBEG&%ϩI x8<7I {p™.ʞ n)))3 $} g* sӽduL3 gJJJJJJJJ*k.p!wmz)))))))))#*p™ g*)))))))))p™ g*)))))))))p™ g*{7))))))))p™ gJJJJʜt5)#%?2cMII3Ο,)))))@uu5;Iʚ2d<9Ɯ g*Ǫ]١vycԔd475e$eeE9xq> A^*p+ҭ:ЕjgJj;ϢPYQ!LIƑ'W yp¹ʐdҥ&'Eo ϽVq Ȫh_|HIVɸ> eAn6jM8S% EϽVq 2RqM4ף9/2d|O g*e"+Yi)b =ꥋR&y{$W$Ȉ )?;w<aX,*S'sv;oHOҒ<$o¹3+H3Ν:-9Q,/y8y#)<)ϣri7|Gp<H'dVcPX,O8_&IZ78ϨHILMܷ ~-̮ X*pNM ΀}i)23.dX='IޞH'>@>OO#?Rn8O?)UqXn߶ŋ`aev6p0S9c֜=&?\FҒ<$od=8h_4yF}ok,o\  X*pNK3'A%,/G*rwUXVUVG'y ӴgdːxI?$jB+NFUD<=+u.n;y=vksj+Sp~!۷maŚ-La3z9$ p= "F_tO[ݎg̿s{ݶ<G< Nu]RLs\& QˏBl4`,{["o`"Ttn?.$vIm~Y{ eա0}!vPn]oV0xA\"ܧ`qXcP,nٌRhhfy" $%yH^̸v!>^Ovtn[78{(>Ν:RؘԤxUģ8>޽U8SX>~X<uuu䘄gp3,FK\aQ'm? B4/@quu ᬥEWC|q`|] `8*nk+;ws=A7qn%4M/Nv^nm„#nc:T}1(_@8P&I0WW0ԥe}[VS *CqY"UFTjY u#elb MUE()餍~}?yy1L4l7" ǏWut~oٸgN@pG HQ8{.eKI_=}:x.{™ Gby! B43"ZϔAEvS= b2jBY'N,!̝3(z%xx.&? /)M ߦe➐8Y+S`*n3sxq0–5`=B*Jn< ۮi{O=w%CEm8lfmǝbb㏓` G7D 3<D%OC" $%yH^O9a1|=B`l%wt%/Efa{]3B1.MGAvAr/brI/fCw"Œ(tH+l?aϳ{8>zFkhAx(x)}-,\AZ#/_vޏ?}{pτ(a #%zRf}"?yyii*L{p g, $Q[S#'dߗ\sA1` m8۩ ,7-<#Pg$L&> 8g-SyfXi9|@Xe`h9o< Vaa$MhCs+Bs:V <._y 5+L teWn0X݇εQ~v<c^ǙM\p/LJ;)``<ݱ~ ]BDs"Ck\c8j!n<$bHgl;]! dܲy}_0@& **$%yH^Lc=vMcp{> C~;Z|$PY!Xklag0h!3  8bIG|tb mw_8_<ᘺ(n1#(2AqaXnm?|װ렠:t}ׇē$+“Ti~ZΘk l|0iH? P}؏`{N7U|~',pЏ=eriմ¹pcմNwk!߉o+5m;_?{~񣇰lJEϢ%p&} #83]jf$-vps_<+3QY؀xIψ{8b3|Æ=B!CPDDžs4 pu֗3v#0=ĈC`pm$ssΖArZ0_Y#v!8g4|[=#)ן9Zq1m]܊L7D l]<;;?_ r˦?__x!y3Ncp2O邛Hgw/E(mC1ѧYzX~.q)(`~c4I|CrMv'5%x⢟ '3%oPRҲ jxxO8ˉ&TBQ |B>=# <K E|X%5 Q+7C'9im_(W6  %ym+}ogsJczIVEC伸dUfxhbO0Rڹ >[zEGi#+iR4lz6wz 5b 9dB19ρq=<+fN a# ֻ5躎SzYϞFJbL*",ZÇaCwoJH\ig*x}yy짇^aՊe%y##q} _%~k'a$Ӹ 378R~'(r+TTPČCDP^' Fژs1P4h5{XFL7~9fǸp3ZMPl7tuD 'vp=wQ/#wQxnr¹{9g{9Lk`2T rPXNۊ;Ca7qh Otd ?Bpp>hi+Œ{nuFOV92b<rc2AA^X9|YYDKC!yy2A@]+y Z(7,}=G^b#V,[eK[5]mT'?޹MI_EGEb֌HJL$o$aT86<*R,O;"Ԅ2456իWE Q(I)rq?1)VuDsDYgk,^0QB{4:9om9jjxK]coH\ssJj+1 _ߣI| 3+.=NPa02 U:d@H*{pȐ8{8DDyyzt)5t X*p&OMJ@Bܳ^eEu$ڙڪ } w$/,!JƗ+pp¹ ifhll~RRRRRR+?RRgE4XsٙHɉu EE+E IIIIIIIIIIj-򄖔D"gg3ΗΟ#D3%%%%%%%%eqa>*+*4*ST8g&=3Y())))))))ɪ3`Dup¹s+7oBIIIIIIIIIB4b2 g*ۅsvFLcu]8cJJJJJJJJʏN"#ZL|yT8S+ g*+[8SRRRRRRRRRLs̓H\<Gp'~OI?'紐YDGQ[Ϟ>}o<{99ٔ]dأظ]/aX]?DVVG^G}ٶ1Op [7!%9 5hiida H#Ԧya3P폁cz-lPx;br_(*bV-l@[{BN``][rkg@1si63D2( ۝B8L"?lAHz}F8۬z50|'ڟ똿5:V'IF~rc+>[!O;[q: ĵ #c̞9 MͭpO q! IhmmcӒ<@4Niv|h1zՕpO>ELL Q @TT9&dWXAM*t/M(8j i{LmܛsoO}ʩqy!}(xz{F(>zcIIJph&(Rj\K[^J :P/(Yn 4c#~KGi]j_FHh*Q#0h$yh!x:&}X9oQ\~kĜ};w5s\N---L2w+\\\rJlذ/… 1Tb8WH(3"#EQV7)^7"a,)'N?$7f[g/?kcdBkGbC=dZӧNM|41llgCc3Q[߄F0$-C3'p&[0>|8TWWmd{LXXXp ҐxQ8wt uՠ-%^6Z4LhH '(u%( kȭoDamU cb$7 ~yð6_rHc 4 ?a0 Tz5M"XS`>tbԴX4R`xcz&ysf4U6 =#qjRiBiUU"[[]n5(bz/ֵA0nZ8}+BmVDǷof+@٬샏a⋾;1r'#"yut-&4.wc<0E`fl:awfݥ +0x%,?mBb(3w:3SB_OS'׀J!VԣeUuxWY7<™T8ʄgg`tbb"ҜI &==MF -ZJw:gP,Ê3+bH(m@Ci<.҂4I/qS&r\p~Ucrr3Йul 坉e+ jBu}uĆK)8䝃IBV߽pKK a( Sf1,d͝FyZ\d7Z/GG0a1L\},_>zsY5s6?\OcPO=~] &Mj|9E.'iInp™ 9rGBVMp㿲3lN E;o)u\cQWid:;4ϊfrO=?Q0P0݅18h&'`/y6#\z̾Ob'Lc+E܂H< 1|sLuAoCU ~-+vNww t1HgL*v+OLXwiQYqo0l0VA[[Çg/NFz=_kkDÏ?ar<ȨÀ< +}-"ƏG̘1H7ٌ/`Y[a*A77:[Й#Ǹ՗0:Um O;euIXzoX"Ra 7`[ f `Lꏱkndi ݈(!q,dg7Vbcca߿gil߾] `;)BӦL&+QXP=sF I%*: p/-<{.Oxk~uy: HBk^o $ʲ"涸߉1稇4l4)j+΂Җ6y!s:I+I8 ͧ^`W1!,'%FVEmaWeo+o- EOpxoG#ﮆ3N& fHq؜T aa|q"|ۻEp{]\Od={]A _|,--ry|;d{BbZ/ ~Y 3+q?JVvxeb;m }FM[Yq.2dcb0# 2;qEye td#,a]Li;0q/_` txu ]*[ _ϿĂX~4+`BWϕt> acc+IܡjhDɢ݈֫3DALVd;Ǔ'OȾf`aX P2,-PQ^.`ifa? AJrrsm"XLN@ 6Lql$5,fk|{=ε +`b}|= 5GB]}(^{ ҈N!,: 3Q̽Нz1TEGGhI<.Fe8dטsU6ꐺz;$c:J%9hy!#?j:d/,xvdB,Y]̩GDE^o7g.*TUb^UM85j&Koj@a3;u;"rޣG]i: ]">>~yqg׸w!I&N81)#i$?`z;b liײ, v0]w a=c#z2Ÿ0+էr6KGqm[u⓳TT}E ʫ_Sq|)[d`DU zVV !?Ҋ7t3$ ɽ[j*PV@ґ;1t0 p9|"nwfcJ:LKAc5 5pv!+mjX$xp(m慠l۳pz PRՆ'ΡSo`՘(`:x6W9qhÆ xV9cb_(L7/jD`X!xd R L#x0W0!U_s!W@!LX>ĆܜW"y7`E$3{0JnI+OIB9Ǘ_~ KsAc`jfs@c0"E1nM]?w3tc(=|"؄ { ;: n16\H]'=y/ʖ }Yk t؄ ٭-a܂3Up&{ɝÈ&B+Ԕzg>+1{M;A1_?VnmHd|PQQ(89Ox_8=cg?O`.>ȧ(-6Bb>z:ml ۰+?.=0E^I yJ#Y|'KByutYU%e1452fND>p v={(((7P߬?i&H;u+;gÍOr,C(n ݎOٹ׊p\s^룄EŐ7>߼b^ĪSqKKt540d@h2}?ccol1vPi g*+;7p(ݯ"]ʱɪt8RPPPLA\xfc l Zv2׳c䁉&>?a0C@A IZK8wp&h1Yzp¹}g{VV!ٳgc¤$aܠc@AAAW/kk8PhHFMgp/qH4x5?Ƃ >WBj˾{!oU5@o {oDCqWUWiOvvFum3Hk磮 M-hbޜ$ܠ966}v]]}%pػwPUU~'a$M\\>`i9e= ]xB-@*%Y3<<1 53QJK/?cAX7߃77o. %Lb ۝B8L"?lAHz}F8۬z50|'ڟ똿5:V'IF~rc+>[徲=gw(zt@<ˉk1u t&FƘ=s[$B@<V™T8\XXȾ((( ,KKKQVVF BM(8j iVѶOOpEP\cֆڄҚQ؈'c3Rx6%™^8gdSLݻʾYnʕذa/^ b7t+xqoԍ}( މqn/w0us-XV쿎` 25 \ #!Y2z-] BW`h`SҊ&>6u ͨoBMm#jO>\eLsEr2Ґ,5Sp:+;Lw pNLLDff&Y|FY#77jACx`(;jPVP\HEX.7֏t1arcI~- >f6[9BaWdZgE +< K!*6 N}' `x΍xHڿvZP< ok,)0:ʃMtjZ!1_8 P :LpK4}˻Xc2{cJEVM ,ИC&ZU]I.Z~sաƋetR@R։p`4UAqO e|iːoo2pb|RWpد6@syva`(+(c4/A]sqc=Dm.S$;a=G'Q8sCz1v[c0888طo+۷o $ A6+1cXN!ȯEh^6]KɆ (ͽ 7ngbѪ; +1XasGw) z bۅ ?Ldɨ5R5(GYUUM9%y8GD-&v#ZST8d3YU&|-իW1٦AVI7oްa7%70`b:A [z%7"#tϠmz-RCg;K_34a-@{~%Xn @au-^ܝMªߚ=(h3íEcy]a5mmA ld%./J+qnGk}ן8U }s=XOs/fx S16ԁ6e4a0Rm/5HG "cVU&cpI98(o+Bnk/GEte7S3#'0K ;P)Kƍ[JdB$X]t7SElü`|8K1cUsp뗹\~/35lll쌴4:͊斖ggg/Fr1nlu`\H.L,^iP[K'6\J!L}][Z F1e0a!hu kaP0sA_h1WU0qq_G÷:svEtdxi,? p=gCY?v~^&t:4a"KRX^ O%y>mLs"/_ ~C Y0""l!b:''C+a4- \Hl"t'O+,l7+kVyC9~c2lN6Amk.:k.؂Ֆ=Zq#FԧcN/>,@Ӱ5݈zBJt#YPhxC60Yj<]1c<6έXm`폂0 77c0Uwy@L0ɵ=G8sS|9f8%d1@ =i@ֽ恗‚M sŮ+qy^Kĝp؆>\-ajj [[[9dK"퇬h&% &s4LŒ3O`7}VwKoٗIX,TwL}V߾['#a"Yñp?\Bg|5.;N3ԂxER 0 rKSD$-C3'pnL I4YU&Iq*dkABX( "" mx4MJʽ /'q̔5mw{A>Ax1mk}9&Pdlϴ͂O!~q H}Y0} %|uKUEh1Č0XRWT]8LE`Vf;;``'se5b\`Օlxc-z~  ߱gv/gyeO|hSSy&z:>8Xqs'7pa./vH=v|  b===hkk<|0̄:_5~I[mq%_Sa9d&lƸe%Rw<„r[܆ *@|_H.K][B̋.VFօT} Ayߊ> hJ+f=z> ꓊F[I~أ3G;ŗ3\3=`I+%Xg=;?Dm.pvrc0.!?!}ގNUgϲ+ȟ9/%L! E,m %7cz (~UbYPݷr+nc~o;/0jzȊspi'C_A 1f0aމ,+k%ab@L|a nGgprPj?}%1Xq<>6|d?oAVhP, p&7ALB1N&9&{jjjaBa$&$@}`@Ey9޿/0)ɐڄ0bZ$o1KYֈƲxv_dBFF Y'Mze㔫+ybF <q_;L:&>Jbqeut!alSO"u]H}14`'$#k]moB/<ؕ0?>AԶp&{bu{3 a3'# QԄѸc3RyRYzTf>j_G](a™8$v$lmcN{Ұ]1yD8]cMrUUZ m=yمsm"XLN@ y,㶍vt^~ULح˻g$=#hW,= oQOBWPQ]5(+gOatlgW3jYqN>[[[!+ԇkK+BVː3ӑΐ|'$j)@YqIGP,p&W&)jq^^T䓄O(: " E*pbQee%&: U@2ꑾI,\sT,wbsKA hh6}WmM!p9z+0۝a2X}3i3v$l7(k?^b6r䆶9QM+(y3bl>y<ǙN68A'aV9T  حyiV2_ cԳJEǹQL¹CW~<aӎNm?(W%)+ y :Dc6bwvz8GFDk5w_YxnҷQS [CQ3~uEo**ʰ'牘;6/Y cl? 4ņ@XGOGSS3ma1uvzۅ&&ߕFO1N+0 ]%߼b^ĪSqKKt540d@h2}?ccol1vP) g* f3,5cjJ™h]ElmO%™bӹ0lKt9ϵ 7dg)8kyz:>x\?VOg#ҚkLǿL?T+5tP|m͐ׯo; III}p™L@b_y꣺GQL@37oޠ u'(*YP[֢Օky5~H > g*rhCe{ =3 b_~JJCχ(HQwPRE4SOT8AJKAzrL{͓޾z,--x_FS5.fٌX5שE &C i{9)7L¨xtCHsd#QD3ԁjΞDɢ݈#u}J™ wAo\(؍K`v_ezj8Bi{9)]QXgb Q&|T8 g z|#p4{ |;]Nq*#(8}8#(_NJnL}TI}ɖ g¹m oߺ;W-y od9]lQ fLP(݋h/"iX`ޖ=E.`rRJ-;]%y0=`=^G($ KuejzACh8qqH,*ł %z9)/]u g qK1~)o| ;Wց؜0a/9}}sq*^%x=>];BSQ#C49vRH%T%98&q"ǢqqH\Zfe{،rؘc= L,YT8y_a9X: §ca ,{2 s;`^#\bb| ? k-Y Oqnk6g| ¹KPRߑ 'z,=?&8 Tdw5^Ofϟ=03Efz*3c# acc-ST8AJKf5Aj&=cvӉ 璗EOXy>ƴ 6GbrH,~쌙c{s0^R:Cu:.(pL+6鞎0t"8Nv.'6ƓT&w| ekt¹KPRߑylw_8~a_(c8؞O߽E`@(~,Sao7TUL.裄s$ Dɢ݈֓p95I R3)\Wa:QrW|3Ϟ?áGg'T~׿`~&̢3A(ƹ< *#s)s ;ervRH)T%wMDEt$?FIqԔzp}@8w#ZL&햕*7Ls&3iI R31v,1Eo:,PMqs{ Y(^s`s0/2b)01 }ʃp?夔Z8wJ;b6=BΑ0p ')(@J'-_r)UrɊ}{XN2DsGڊgEWi g* (a 0M s},OC"@tN2Cp|%4Uc)fm+M;O#i{9)];`l豘X5 BUQ &cpq(G|\*?{g̚Fv+ZJAP:twhaM:ЭҽdP dd1ń Ap"x\E?(0/[$<~14كA\(ypU8_$r4: O?B N 80 ùR9Q@"'?Ň{||/}Ic늇sEwW:* p%68U]S+<n0LnR  Rcs_őn5^!t4S[I8KInzWyy:², fuXB7M-:j# fb8 Fǵk% gpwb_B߈w?%CGmQv8;4J1a4w!D|#8~ΡA ll6f~;z$`45I9s1pj)ܾ]ZUգ~wzj7ff (3p '){;XLG;53pNڪsb-p_p>ث>pI[E8GE5[O/_g|<g,p71zW>9m᜶Us4XXK}# gօ>; Y[E8GE[p^V8p^̪  g픵UbM'3p@8 g y9(:b<,Lsz'9ioŚM8 gUp,_Gzo̧՛'p~:m᜵Us4XXC^g pY8 O\8ˣN7 ~ | /dmu$-VZoQp"n ٤r}89M᜴Ugpoz% ϻ[%g͎svw:sSV}8G5ۭ? g p8>p~VsVu\h|#; I[aXK֛p~*3pyQy:lXL]S8紭M4XXCY8(g|t\iXpN@8gm -n7i iyQ>p@8gmՇb-Vy&s pΫ ΓQ#]T9)m>ŚB8 g,3Op^,I;Vo2ΝCsv9khhv;XLp^,@i Y z53p*9,ZY8pMv6p~]Iu8O:ΛMv0g"Y8?/_y1To|$k@8G;mՇsXS]rC,3_[{K g<-<To]>pY[E8GE5ۢoY8g+': pzO5ΏK8ʣToQ>][8笭p~?ZTC8W| NFc}\>][8笭"ZO5ΓÝꍶJ8)sV`bMO5s @8MݳǏp^ ,pGݮhk|"pY[^XSMGY8Y8 g, Y8G`zWһ? g픵Us4XXSNFS,W @8 6~ -sV%_na ÷g|(N{8?:A,Y8g,p~TyTygz53p*9,ZvK g(<٪ް|}8'wm ӶzS9,Z g<(Yƍލp?_|V}8-nÓ,3p@8 ÇbXy{z53p*9,Z⏤Op^,ÝnQ~]픵Uοkjh,W@8 3Y8 g,3p΃[ )sVo^\ZA ]+-sV}8-nY8J8֫S>֙>pY[E8GE5۬c,W@8 xpΫ N (n2pkj٠,W@8 %7ˣUoW}8ݵ3pH8np+ hszc}؇sr9khhvp~$ pA k۾^}8'wM pkjΒY8ߨ.9|psY[hvlp,Oy8Y8#Y8 g,'%7U>}8'wm pkjI %p.8*~z[J8Ӈsr9khhvl/1Fyۺehp@8gmՇoŚmQ g p gpY8 g,K8K8֯WoW%τ3@m8G;mՇsXSn ֮Uo󫿔?gwm 7bM6Z^8 g,3p? gpY8 g,Oy8Y8g,pp@8'39#̈́;Y8Y8 g,pN\8 gpY8 g,Vp@8 g pigpp@8  gsN8 pY8ggp+ pY8M,pY8 gsF8 s,3p@8 Ny8wpY8g, pNgsF8 ηp>pY8߿p@83Y8 g,3pηWp@839'M39'9 pn$W@8N8 Y8g,'&3Y8 g,3p[e8 sFg,pY8{@8 g pY8 yY8g,pp@8'39#̈́oNZ8 gs; pΗ/utY8߽^ݹ[ypt۾q{pNwJ3}>s/t_ۥ.uE3333;h_h>,Y~8Yp63333|̄p63333,̎,ϼNn6٭Ywx0$p޾~tl'纟^_\LKs.? -vRY8Ǯ7{Dqm6ZhIm P2Bt"Q&NI\ x߳}/At<ϻ\,*˓pOkZkb>^ vue}[-9nݛxq<|p?ݽ@ s940WedkesY80f8.,oΫK8Y8 3Y8 G9yZO},FC%?[@D¹EG2~#寓jڟM7zӅsyc>X~+͒w^Wo"Ӆs ya缣|ww8ٻc]obb# Dl C0X 齨^P/ь@ vd7esϝw噑Cwާ<|5tw|Hqk.L&&7{_S = yl@xT{ϟ}Yf̈f„\tcS)eDEEj+͛K勒] fCI82 <:v#Ws7#+;w+:@ y&/\q)Sx_ . Lp٬U=t>qGB~n_0dzbmg^@ :9}8%EۤIHHXɓ)a5`G;\,_Hk{Ž}{M!pJycG}}7qLRU121I$h7YRa,̙Fl,غe6gll2kLf='zsX={BB0-/6s/ȳ[;ŜCn~4D.\E[:  纞US>3|5u"ηn\X:JJwnFzt9ijnv;%R]e$En{ Kv A־}9Ο?k[:tj%gϖ>HovMw̚b]:;J9k+`λPk\j&U@ X6缧m?sÓ2B8]|zW]ւjb;^2տѩ9w>Cj)X47NLi Z}n+%qJ {V2{(FQt1tWmsz^{j9)i#:EΠp<>OlL\G| 19ls=NY3bx['6/i2r+s`Ag$S%@||)ٿt&'4CÍ~>Dw{0kHF˫Si5\rrv%Gp.:SxeV}x޹3vy/OysӾ91h7ޯhN~}<E$RwN yin2 k3G憱bj&!p)}=_tZ5OdA"cfTvp·dee*kؑkثY5KC^iޠ>RYUp2i21jpOO՛fy4—R/IJqouNuu#"݂ؑem%iI"S&R>d0u$V._wp LծEreEoTso&z5z,Ŵ&F2$ٞh"'S9sbØ'ư#KA] Q_VrǎLxa, .I\fn^ѯ c߇n޹q90脗H<+ Β,=.?]όe4p$'ǖMc.fixe~vcQmbH8#2-; 4 f^;vzSbISۼ^C xZ͖xh-*==~j13qWyl&m34E6}Y OgAUyy%KȽW x&z5l쌞мQeAԛ4Z=Q3H $%pZGiXŬX;dG2b`Pl:oT!/c[7 {90u$6T^p¹e. ـbF&_P*__ܾwv ?;gZ ޚ!{q7ύ=RySeGf,6,X#)G2."2>ՇѣH_1vh4j^ ,'3ѠognW˥3k/&7a!OOj9ޙ?ݲq yGn3G`yدPfOe;e;]z M[Lqk˧%R^ΦK(Y.6Ǧ楢r oo)\ID맡.pi QN";;ȨH&#uga*qٍsF6v L>7hR[ ޼̎zYJ9~mdKd4)zٲّbzu(72=uL_~o||"^5KEy9>Pp@ LtZĥ&YcR JiW2k.8T*wpP/,"敹ѳ8%`+͡ϳ!r"˱:N>OdY6iq,?y 9._sڇK|LQiՙE4/熱t 4PB8w9L7>dm4xc\ IolV#yBK]vhwsoOw g9 sY_L}AΩ8ŊXR\[û̝%>3+?yC-]6_8-zj((aW͆Mdm$E!L;W}hr4;5>Q&0T<~k{19FΣTs?'ө93kxͪE2&M_̞V~/~sgAG D/&}D}q'zMmq=2F2Zo{ؐ֓J gfX+X硱[56c#y-v_bKD-=q/1SjɡFmkN0qΈG15vG*t흩Syy_%Vo=1LK:YgUdfk2vX&-8,:)&xw/bt>wm@ 1}ɉMNY5Ø&sO0IfGyc!.pv~QVVȥ+Xb֯'a5$p$>l._A@ =}Q2sW8kzaŭ'y358@.oN8dq:=._Ki繜vt?AuH1.;7H+Y DߨTDo_2cD!#07%P1ӇpYsҢݽCoBSGpz, LeӻSR/=/~@ L􍢣VҮ+3}g!%M d_&7+۷<|'sGDV9I˿g+9Q g!&F8;i!7#GR8?1s׳1ӇpٻQt4PUAeQHG!0b5,CG;zO !Y C`& LpY @0Yg@ B8 @ pY @ @ !/,@ @g!hhi@S@ =;eK>z5'4PB8KѢO_g@ǟ~zOԷ E@ {v'Fɽ;>+ܺ)KXsgME,V!àW|1>'_RߤyH =[췒O{on>ӏI"kNhI8 j>޻;v+6GBn"Y"KB_@ ܳfOzRȚB(u y_|t/ZG* qK[2P~}#?[d ]b ƺm|tWISg@ wo%['}NA|r#ʼ}kC$ƍu(&OujWVH>j ,suI8=t>quhI?܄>'b-|1|xK_\sc49t.o}I㓏?ȱT㲛ǏSEEnF#'MGQ=lyygٳt݋26JOUԻpZY_HnǛGÝ l&ؓn6}NCSk;+X,w3prK gg:9فh1c[NV7tۅ`b36dcH.7COiޘ1e&nw}~ k.#lp =N|+d`q>rtP[H)_sxI;ws`MT4z\:wZJ[RpgOb\Hf'%p֍k~є4]ooo]˹W7-cut4qԿFQҗ\^Fbjy77T,$|A4ݒ-({߀pM#߳CC2jXwYKwMwNb$Zۂ,hm]t^Hw|o} na1h8{$$._;ߥ(uGwm6%幅moi6Pqu;!Na\zv&aj]WKpwbJ[HԒ,9m~n:qfsgNlתiTZx r(nRcjʣJs[~b8K340tgފ~#l7&'^6cF",uN5{#}.99q1xHNZb !p)}=~є4?S|v-8s;ԟU~ȓ.il~!Ox%c!׶|ҹ^k{BYLKJZmXOiD/yof}D;[pBM# !@ g LLǞWQx>t^u)k!ͦE466-Q?d՜&. ﱳ9nJ1pjE)/C,ݤSy>iVZ= omÇPW$:7ހS@In >9eW+Gg0VEQ&=T8￯f[8J'NqF"߽cutfUXEɉo|QSpYc@G5iFYD;VNc|W3RPfd{XLUns9v$-!׻~Qs)L`*Gc}mySp=qʢDlSOWW:s[1pms |+1rJ.negL,YDI}nfKay4̕׽ث̒/0p>)qY^&HQI;YebV'r[w("_jm, ncQ"ر cG^8~ gE7ΜDέF!o(tΜ:zji~!fk[E5b6*ڋmeЬy*ЙKYm쵔䕣5JqZ95̎$R(Q8 pED` }m~=Iڳߓr_o>էh>SbIS Yć'YlASK<ąsl3Hk*9JN]'NQ%7[Wpr)άh.mEGӌḾQPpXIJq yGn3GO˂(;bzq$"ٝ!K+uG ޳}ֶdmaɶ/725Um}GX[iI3J-V;ΪEM_̞V1Yn{19Fzp x{ļeo1%k|-gU m$E!L;W kQ^\Cvyi-MZ堸r,/z#Xx-M+ yYT0J(ȫDj$;B Ƞ**Xy(T[ )sk!wK-uþACmXPmԣשuHRZo{ؐ֓OGǥM$K~/Ų}̞"tF?[[56c#y-՗pi]Z%F\Z: u(+Ks"Y g;,:bt ? rFo}gF1h.?%N>-8!HR_B8q0k7jvF9vF,߳= ևpC*WYs:x()EEUy4eykQ] }?=럾| }CI1R_B8Q\MwnhųG,/: ΍=R. =;HzI;fJb𱒙vKydYtLO arڤI} ʚ(ZI[FްI=JI> ~ !zeŞ?~zG!ݏ))̗'Q `!|bln_a~7zt~FݬfQmלN]h!pP45~ܬ V wnрGq[Mde\&O Ğ~%'n tGVM Rߤ5״CA8;i!7#GR8n>I&O Ğݗ+O==?@/ooŚ#o]8 c#hiʢ>I hlJ1Jwl;ٻc(7 cM1&iklME;+>;8 :\*~!93 r>_3wv~Fs1[ qppp·!vup Ip.u<OӮ4v΁Wy?nsppMi8 ͐Z :s p,@PHz\N8[o;\wF8 |¹0F8vyqE-KyS#:/ V8B[Mz{}Υ<-@ػ&? +ul]׮[(lcgLA4 QD (Q hL 1F <3qz䑧urg={9xg˕on}4Ss}`ւ`x?bsgjcCPW?w7?}ga)RJdM[ƱĂbD8Θ[bL9[p^q,G>{_􇦔RJ)UY Ï`> &ĆsV53ѭ'Iwk~.{c_?8RJ`vod0ÀXbC1V5fX &Ć+bF!$ĖkbNY p68<|e2On.8&p?MK:ɗ5곣x3unqbxq셥G.^^뽧7;wOJ)R a=̇06cC1#vĐXSbK51'ĠV85 yVn˲vE`"HM괿kCGu:*ut{RJ)Ra> &Ć+bF8@51'ĠX:ev8@жQ߾LY-NKn|78ܒ}/=g{_qOJ)R a=̇0 Ą#i3viaemٶo`>5u#${+U =;чS6zG''RJ)~РbDʹKbJ}ipγX5SS纖qȲ궞>gF|EX}W`=C{RJ)Ra> !FĊ;iyMú=a\x]6uf{)<#2/`U>/fHnA RJ)za@, !F4+CbILgڜoMa:]gvOm$ƁLN챰Ρoq0ݓRJ)xXa? 1!6ĈXѬh`H,g\Ζ E0gon#zp=)RJ)0ÀXbChEuEͅf†eeÊgF쭰mϓNr8;zό ytnisK)RJa=̇036Ĉ1? OK v<XͿPd,CtCt_J)R a>`ƈX_\^hùɳymgDѼRJ)RXa? `34灳yl^7;wP a6-xAj(Co8{~c! @_}`gT\]tc {DO轈oyh9}y+#9]##['֋;<\lék }e _~ߓ{wxooݍ߈zmnodabdgz_ZQRTUYp\7?EGKZlv,-!'1@RoF&0    ۩ Vٺ@tRNSG2@̇*g0/PZt ->&/O!"*89jIDATMNQA @MN3؍^;fv k026wp?F 9ȱMQh&Jy 9Wl{4'gf{S7v+kSA! j'y HNMMHwT;.'EIENDB`kbibtex-0.8.1/doc/file-settings.png000066400000000000000000000400421331300026200171660ustar00rootroot00000000000000PNG  IHDR ?IDATxWSW//yT00P>HU@VEZ 3! C yP-s?w{Z>?}wu}Zi>f}"*d&ra ַzDrBğ& ͼ^vlo|h֣G}]Z)Y!|7$}g{[T$jnk]RX:jP^!GR!j*crPkTfNI~!aPՉ<f>Gi."NR}ՎRp?;H>Z^$1n yI|U g|ņ$IGlq;f ϤW~Neќlĝ]_# ~:C*D|& `\|NuSΟ>E ihɓ2VVs9cBwDܾ _MzIT 9 m[w+vΨH6 o2A<2D*,P#~#TC7Ho4|XKtP܂ws%ɝC }"0m_H0]ERp Ng{;:{1c/M'hDeW(6Nq),OPܔ]nζ6.ޡ/3أ{4h4~虋Ǔ~=bgyR_{g.Cb\6mhiF#pkReK/ǂ okmWDSΔމ0WȊ.aڻ߬Wcvww.‡.twin^4]~cQN2 ?DҋK0XYaM5MF:[}B[/6dP8"|z }+pKHN5 r2_w{h7:Y&gќ^PppyXW槆RYgxRmE}39BIW&LIOqx2~˝Hz^>fj~rzt/GCiH^N=_^-8`cvrwB'¨nv)AQɷkgbb[ykU*֔Ћ^24k_c,_=iluW|_y2H WJ/D#V|uܤOZ+x<8_s߯nM9Iqpp;[)d˼zG IHz@Hz$=6jT)-QL5>oOďN|r?x(ěWSPO SżLiSϧOGE29䀓Î S4ֿzrًx53r$=܏+|U2quigjwж5 <+TsYm\4ז =1|/ b/_/ڟoaWaZHN s飄БJ ɨY Iz^\V>Zh<dn~9οP%Jٟr[I?1>l[CϕǤ:ۻbTw X?^~vW==,!7d3%/Gx5^Q CP"I{\8`kŌTHsD98ɍ tG;R,j<˛b? υse"*ehȈKIey.+l?4WD6o6JT _3^v!/rR7Ւ\g6$ˍ 䨇ʼnݵ.͖e"/Ͻ{bW~$Nz'=e\J-K24I[>iֲܓBRȯJQΖ_/Fy' >M]읖$子>;39;\7oGͺ+b|"Jzɏ HhYRw*0To*SFfu헡Kbvk;K=(s[on~5$= :ai-%\\zwqq"|PY}*~Zl(O ȘWyV|2kg֤1WcCf]>u]s%CKItOM {j9Wa~W76m۴vl>A;WyT,vvli;G]ϯ$:/-*/,lIe,Gx/Ile Wߌ ʹ>~DW=n]F;دn%{^Cr]s ͺoGm(6_ %\\2ⷊ2'IuUEu^duN4N_ciNoy+V+%pL]EeWus%C4n^Z~+<\}0#MG+U.''4{h[դro˹>;i:j+$otK+ I%&BPsg[ZQ_ɟ[QΕ7 ; Åuzr{faGsѮ-o_H3w4?\:`O(yޒ*Zqh4֍r(|7)W:R'*˦v]]¼>;ZY~ow:%z^h]$= : i$U g[g߸ޗ^1{5{Ee[キQi־@/{G7Y_hG;1>b]$= }]D#V> >$= oOZ+x"b/+,x<>62R'0:hlv$= -gXn4TUTNM>Dt#=&_pJa'X@G'km~w [ 9?#Ypr$=| jT?cQL59Hzta/4ԖGE29Ԉy@gKm4x@Hz@RT$Ydx: :?xKLOGͫ)2HU$=gĚv~=|ĚEGIJ4ֿzrً׸WO_M=#Y@үaE5:~=f6cؐ6=+Ed'WeaT&)i¯J4 ۛ .pwZ1e[qy.O G)jwymr+IdE{QClp|Op\{**LRoUʤby}^CUBfH]F[+mLeЏKߣUw5v:u{PfnjHzb^ɻs!8:zYNz+  ߞFs6;|2kIc;TSssucVJ9}:mHBՐ_սReK/ǂ皤t\hꖂֹ^͜-Ƹ}nFMl79 $l'[겛SDVth Ň}fru7#mguoHאʠ~ ^VQ^D7|>a*lU oL2\ Gy+^ hM,* s2Ņ~O('Z=R]Ee_Z{>S3Ƈ]Ys%v ?x HzᎼ{H%2?5:#szQ~LPג^L;N/yX7 O| jmQop~ :d;MIŔEԭs/[>7 %%z{ɣw_A˅O&Q6R݃oPZʦ9luZ*iDYmg-v%ߧq Ndžy;:yDݪl_G+n||דv:QHF;\*Te >~g8nwV*93}֩ާ<=ډk"릿AZ񗾛3IߧS-%mlo^PY`&~{28ڮ5yOHz$ ,>zW/Fy0)_~җ<v)׸Gc#dHz$_[h圏 88Ɲ,kƒu6ICUEey5#=&_pJȀɰq@êZ+*=mx΂dd8kHzX^.EndyEGIJ {t"#D /ȥ6ɚA Hz$= IHz@GKR\9GI Z%7$=|59z a'r"i$=|xS_N>{1|&zFN>L%WOO}6lv+y%mM[r"TW"w37ں“/kixaE냿?: ++%y~dԬf7=%_-mՁmD` _8RPZsrJzIz8 6ikўj>,'ƇzbhՍn'{)l?g[g hNjHM򳻂)a } CP"Kzy/Q7%oiDB6G/v¥zԜζNAGrʋҢ\ԫ@HtP܂ws=\8`kŌTאBl0rZƻۮ ^"H~-l}2+Y^͌Tr(&A3}eOdC>9`ulb4aMX/fj㠩o&ntI 1Deb/7(u]-y~5}s |3.͖e"/Ͻ{bW~-E \ɒUI4j2(")2r|޵h/{ћnv t@zԙ~GKiN<ff'=e\J-K24ImϺ>o*0zGL[/gg&YTpy_,'~Q={4%lidAwhT0`;tE7)s#m+bvk;K=(s[on~5$=|}I/xMR_R..N1@TV A? pMmGPsov`ĥ)~3=}UٓhmcItw"l f_._֒I3Ԥ1WcCf]>u]yАu}3%]hJLMmq-k~=tU|nFMl7DU:xX*;;PbG#. yۋWC8?`qNo e+آ[dACr]s^VQ^D7|>uzjOKEaū]py·<uޡy-T 5[߯[Y1WJ>$ʮV^v qXe9LF+ov4ֳ  a)otZAMM *2**j|q p}\|T'=tエ="DA1gemeŤW+iu懫_4SEQV)g^vr/;:K4u7m;:8zEҢZh2NTMutd:wmk}}HzJOz2^#*cGskݤie܂ӱaކXNUپ֪T6aI] Mlm=(g (;/&)WoO ~-Io'k_ce*M~>wu&zsl]Y}"X+^}N똲Voo ~Wx|/߸ PP,eF]J,F{$=fVPO{hJr\&i,/|6: F{^MAN>L0^QA~Oos<~G >9DHzr-p#̳#|r ȉ^.hi-/OvrN#$i$=I$= IZ.UJErA {$N|r?x\o^M?{Hz{1/ksv3B 9; Hz/|cC/z53rA$Z"V$XCUեoM<2A4h>?ߒs´_R^Tk+Efnvu'_.?J oOאΕg5[rZHH~;}ERya"ӓ G*Jk]N>X)♒~b|ج*5<2 supJ-cew) s 2dC#gwS}C>AW3HOdi;X]\ixD678VChcoʊ=S5`@wٙ},w[7iqCR!QuRUB$= +_ĿmmeҺǶ1](TtcmmdՃ}g ?FUnˤAG2zB(цNT/7-!5,ofc'<$\KڪsN0($7'wsq=|p`w.vtb^*~шʮgyFˆKIey.w `6 +c|"NGn57bc:wܝ\#wÃr ~ᮖd䚾Qc.ΞqVguú ^R&~۷9UB@XLҶ!ٗ~H77^T䛝14ovhD.xy;;$= M:w3QXH:Sh)͉1҃*VmFd˾ZVHAC*$5lObRܴ9'ꞋBc>Mն;-WQa=Wdy.bAJ߮\XJMU)yGU &Ϟ2._%斥QgT%}vfrMwGbLҿ7뮈geKMÒ [} * IJt cՌN]MMƔ[{}z*z̛m<ʒtmtGCw~C׊ڱ 64twuzRn ۭ_ IHw`gu|^\Ycn W))k [so1wmܭs7DmMQ~~mъg:QV 7pa&ɾn^-vDӜ/Jyȭᶪ F4-%H|2kgFRt_Uҏ uGDu'hJL8U;) Nji5oGpcGE[] v6m`%ؕM,L]{))v?m6vHo;4w_C,ohh=yT,vvli;G]ϯ$ܜ>t +2G1&k0p 7DΛjQa"k篭RMK.[1mչ; ouf+w"/Ly"-X+$҂0L™ƩȊ.aڻ߬W.J+_H,%ȀL[îGtu"_x>آӏIC\gz$ylѿHCr]s-RWܟyI]PGW=n]F;دn%{^_#x4e}Cԋ*˜(&UU'A~:1;U#.9`e[n0+8`2L9""\HnopXuags jIk, 蟖Ӌ׋ZB\ihe].l=Ƞ'+&9JI?ܧ3SDQjw̗RBݧ3XPGyKv@-uO[jaF @ѧW\NNiil=Oɨ*T 7:C4n^Z~+ll:v$IF:yZ[~5y7勥_t͡m;N+iV D2=1e&{ u[dᇭYu%SpFJ!ncz|a5\yɰN8\(pwqu<|EhW i[a"+JT$|а.zO9z۸ߐeye0<CosIW&LWN?i,nRhnBwup{=P;{Ԉʲ3 w1,{oc7;O$}z1?6#ewЁir~N2xF;\j/эqi~ksNX{IH@֐#_+H|O IH1\ z ESV ^qHX.  {֌<!I_{l"ֿO[ט NǗz孜󱡞иMPUQY^:5lta |)+!爜)8ᯐ6?̻WTӭ{k㱧 >9; Hzr-p#̳a grv9^.hi-/r^t\nڡAI@$=|2jT)-֐wn$=K$uj뗓ͫ)RjI-ebMO<Kꐚ> Ac˩&Ɵ -o/_܏+#HWk7n8lfn?|F4?Wh+||7s-]P'2Z{2ZtPT@,mK9bX%z+W"7֧RoUʤby}^CU…Id'WeaT&i>;39;\^GmVZjҏ Zt6$yg___~nuNoeO ~S\#T-И=4d8ƜUSA%?ť)~3ԍY*ɜX\Z Ȃ-iΉEE45VR8yr%3SloY\Y;S5iLH* 7jV_gJz2wtȲ.ejr$ Nr)Y.kIomO ;m*/֙w" ?ĸl۴nۍFNxX|Ű8WH a>M i_!]8swaY\M8-٩jユgx &|SZ@J8#XrZ[ۺS_+I?[.:\# VV̭L+aӒuzqq2zzQ+_4Mk܃ q4~YsI=دgm1}-sysG]௔ L+[xjk.|a5\yɰT8\hX*~7LXVPӬloe|{cDPsg[ZQ_ɟY*^vmLw+eR^VAa{$=|rWx|/xUHV6ICUEey˩gZbtSczKR@j_rdžzRCV Vfet6ASHz$=XFBBV~9oi9}$SIN(>Hz#h9OjC;iۛFYj髩gS q3L\]Z<=#mM+PV}7_=N%'Ti=~~On@q~VPGlg֙F"̼~Ih!VK ɨY 3^r%ʊ=P-9X@[w"<͓~֤~L}^ I7ZOV"ÖJcڸ0d4}vo;32|`[qL++Lu׀ϰIs_#/0hNjHM2{jm THTE*TվI_& 4-ԈKicۘv[t@j-3i(wsq=|X.7#*Jw8z.Ջ^8`kŌTXʹ'B*҅#U眊axQw)͒nm܃E!5]/ ˃_1ٻ#Ӱ,NN^Q]":mfĥzJHhԨeo]Qoе"avl^ީ+R27`kϼ:2s`Oc=+dKM%' z<f;#i ]:$OCtFѢ1N7[A^Azu!˭S\#T-04/ BݘRdpAbn.*Jyȭᶪg'ϴUV FlKUxe{iʼnusN_4$ϠyRsAϽنN?2+jYe[<$߀ڙդ1WcCf];h*m\8< pw~W鐡~76m۴vK<]hJ}" uʣOTE՛+X*w^J{:lh8;v85E=X{iʞZxT,vvli;G]ϯ@үp~^??[S"+p4j>~8 MR:SN$՘mY+rX#r{iAzBe! 9VW<8R[W;'Ë^7#z3]wlIlRN?W_#x4E7|#{w)':M/DA~D[JDWw,2o_x>h"y^PHH~u`~ZjmZK #ԋ*˜(&UU'A W# VVx7Ʌ͹TTd}I/\.c.'ө*Lt=3lUIom_,~ŝ {gyTVwgYWJ> e -\_ާWw .x!oi,m”@ZuHtd5?l̮V%QTcڮK RNπcU>c:eҰ~0m!D~SWV/-@uX<5lmfՐ/~5y7勥HU'BXVPӬloe|{c!` :d;aQΕ7 ; +ٌÅr{'= oD3'3M(zO9z۸ސeXw[Q~Lw\1Di{:g t6@dw2Wک5o`c#@gjgeS ]Tt p`i!ԨU砲(Jiyh +ЕqWœ!(o[M=jŽ4E[7jȡ~u8罆W4o;nu6l64G,1w#E W2[p:6s# :VeI;|(#|w[I%eZ)'I5]9H;U틕;ϭ쎼*MshE/WNzz81v=2߯z'|:$hF)7Y|=NX{IǿuQVb$֊WzߧS}\g~j:E;y5SVBN(9I`&km~w [ 9#YJrB@i\*q1iX#'JrB@Ⱇ ZjjKa"D<IViRu) 2I@$= Hz$= IHz@IHz@$=$= IG IHz@Hz$=$= Iq@$= $= IHz@ IHz@Hz$=$= IG IHz@M.[loqL'N?]F\աtu5 ;HmiKNL7qU2$GzqsR*XT2yeCSXHZx6@_j?AXHLY -Y&IENDB`kbibtex-0.8.1/doc/filter-toolbar.png000066400000000000000000000074621331300026200173470ustar00rootroot00000000000000PNG  IHDRtIDATxytSUqz9l-b%,;Rk9()3e^B@Jw閶ٗI6N"87K۴MҗmZ9ܾ{͏}|]"gG D0 tP)"?i㢏UTow2;_0.Cpi=`2˜zrM,p2p>S%`(<I_[EۿD gϪU* BLխ岷o߶a㺱;xeO[ ˞?waѫJZq#ZTV@&AUX5JmoӨNv3DŐZAHNE!]hBㅥSVhЀ|zVinnۺukFFw={߿ݻvz:h'^ԗ(MNa9FT8УT R$fV0EBjBWϳ2vvJĎNJNQm" 퇘Kbhr ׋j93/yMܑJ^VX>/jQ3_2}i jQskJ;NN7";x\#ˉx6tFaףj$x0CmQHD"5Kl{8`Qq̤,!HK͛EmшNy'W'͛ҨT*C"dx<~z?j nf=T(7r?`q{iIa~0qMP\ I^}6%tFi.VW*pls}rA`r@T}!7 Rj_ <حPwDg6vLP4>vGo\(:.)S ld${^hܖ r4fИx\b@1b F\./_8%1_WS]jlнUtI`(ºJ jSI^g\,+E *y)23{oݒ_N$Lyy'Wߜ8#$''wtt=00_LJx5s6P/J ozӹ&N Dښkѿw*܊{6lE-Up N"%Pش%?'N`H;c^-Ó\ݑQ#C:)ݨKPm]-Exa~hLA<ΦkkgNg-YBNv6ҘQc'tG%HC;CEqJYiF%5W"fg6FJ,fI~q^jjqV c=b !!!8}ז ?jϟ?Μ9s'^yA_^5, wjR."{=xg 1jL7 !mK{>spx+vEKcHԓ/ L!KBI\?RV{SHYdGZj26tM".!1Gdt'tG%R慗WQ+N}jMoD)e%GޫWWx}Ǯ.'a+^}z}Ѩ(ܯT*{zzQ ~~i^s/MmkE~2GT.af$ elsGO6 taE.\Gk:)k vwOVcHmfM>2у2zNУ "k[V.[nNh1M?dUE5u2Yu'$.qHǶG_i.K:G"{b"S=P;whOU~#`+^!~>w}{ץRkWSSS\-y.OrKY%{7Z#0U~ c x~00ݻr~ZN;~JyBNE))`^ 8~ 7lTc.{V)-&ٳgGFE⟏ M}!r;^{f Tx=\@bjL\Rr ~F 't]b" /h,((@'9,ֿww V31?śc7cosԎ>xe~.9\W_G#:Q!3lQ/'5UyN d׮]j|rK9JS͠پ}<  (ܢR?73s8~c L*CAPr ]ԶbXT@3\Ewuu0BTgآtp٥%b"ꪊ.`*BLk*H``Z,:biNS).MN[J$0BTaQfWSulΝ;6X Z}]]Fij 1t\`AСBTaQfWS;yA.T``.A8hQ[[26Fڅ'9~    Dey5ڏ4o57h(NvۼϮZ_UQ` nބ¢Lw^8L:JFP (3+~s\Ϟ<ɾ`IENDB`kbibtex-0.8.1/doc/find-pdf.png000066400000000000000000001600771331300026200161130ustar00rootroot00000000000000PNG  IHDRߊ&/IDATxfR(R5_p'H%9. K)0& 0X!82~q'&d4:̨Zay4Y'<86/f.>zV=x2|RJ)TD#a%̄0r0`=#s^DqYL!2{LGO..^|8RJ)sa$R [a,U3М||4G漌j ;Rwr棯^럻E)R*a"lfN Ka*lGcz9ܾ4wf5a,˫A{}~Bo}qzg?qWRJ)TD#a%̄0T ca-̅մ/н>6w3ё L'ݴNq..܅""܅p7*;ep!Ѕ]8}Kn](δC!m48Nܹp:̴朜O?>?(N(v잆TxSa\_W[GE,bO%$MJҪ(WeWխܷ.eBzD7ōvQw a?3݌]۞W0LRGJh& -B[Z;|es[q'`~g3_y6{'//=}~}0׿00[-,8 ? '9e=6ڣ 4"#F0Fkj=`/8j|\)\X7>g1bՈcM¢Ʈqnb}`:Fd y3fv0ҫTҬJN*1ڄL*G#Lh'4Z MBc\h/4߁^[>)^w˖ͱ S~ml_xtdg}zZ/uXxN .sd8{xٔQ]c::3$`ZVf9-Xr @G(;D¦Jw[l0PIG%a#L2"!"$ffBrS3$$]XC,/GC:-h D88dz!)6։cTУ٘B1c2f`Z;;.bLh'4Z MBc\h/y}9Nf}#p}&v?=l=7:9o{gڸ=͞4Mĉ&MR禽YK4SmIz ^Xbl0x!H,$!Ă b₝'}=yrx|4y2y嶟|UY5,]~?|@Q{N-~gePЄ ɠpbMH hB:@@S#l*@:l;³6!5lZNtJ2o{zYV2nT@׳2Ue MdB2$ 2ՠ9l 4Ր ɐMĮ.h.no;]q&twW:(Q_o/˖l={D\>4'z{Bb] 8:X vCT`+0O``10Lj!h# h+%5Jh.{ׯ=K?l?W?sh*`H: YMSčnj ɂ,pǎ)CPP͙ 4ᄸ5д9hB栙P؜~T;괺>:Tjs3 A&dRZ\yI %̈́2h q Q( {?\,ccT]UɎ!xЄԮo9 S:w75:j)xK(=C%W j`&ԟ.)9) oCww0ƹ; %K95MֳGc\p'EL-歟*% !ErW~E8Zrm;z>G^Wa,>Zl A9F#}=e #w^>ܙA{e n@DcBcwl,̋ 2$χkE(hځ΁t&*\_/N)>:i<]tIZ~RNPl4֝G#)p*!<ǐKG3_7j#i+'j@eCH e2`0א BGnTX֐QhXV8Bc0B/ыF̈́]2pJ,8]ex'&R&*@g$x8?ߐcJE NKض &A)T ٝXa ccH @' >)zy hMj*>Zsh_r%>lrzg'eEwL $\3ו*qwL̀2%HH$AIsq40 d4M<$*$AQC\LFj20]- 2xڙЖ(0x ;l2/|jѳ?)Uрш8mwTvL㡵u9=E.!ˮ s){C]O IX$H CQSzN@ SOAQXO{1T2p … T*IBM{)@#-åݼp*]],o*1;` u)iitϝwmۢ92XJ.[ Eq*=ǭ?LKmn SKSiHV*޼ POWf;J.Gt@>u}Rlzaڟ'y4y G?_`!FdL Eu eL:2~CWm-}B_tK_G;''N>YHWWUf6 ϫߥv˼l4 u#Eu(tm,͡B._fGy'B~7%dPW|l*<!g<iXN0,w&6gX zs,i :cNE]xx'\XA͑ac*@$0n% HO N4` ̎ k46B}c3y0qLu}Ku*<.pPt&dLcaB3&ȄKKLhFz:4Ej+D{h !9Qv @&gXʶ#-Ћ Bl4oy.3C!lgeZ P;뭯(kRdh\ޛ s H܇ҥKTvRI._FϦG)9\5tzL E ùu(vHʊr8^ N ɰhיxwS'pjp8!pN˩NHN d<OzkRJMI1܏uITɒEsJ[h~]=Tz=Іs̩x M# J3wDpzGÜW,_zsF/?(fwze"󽦺9v,>P,Upy%v^S3ńL[Gs8*iϮQh}L*[DAJ`-*dBӎ ڳ32F)~:32Fgl'"0Db6RjLe<aGeeܾ obۻl8i[ylt(? fhBF;䧓hosGгhSc P8/Re7[nN6f+Lʶz'ю5sCz@&SV:WC Xjq-;񹗐u2рau.&$r~.DQ\+U6!8}m`x#d-Fls o 7q<^hmi?X`}lR(2ozC{1g4rۏֳ@I:Ts˫,p _rʚkan*<`P۾ݙડZevdfT4$4w7-FLpBց3iTç OP(12Pl6yRl}Ш_QTpHS~QC8o쇲T\_UජN✅XoT2VRk.uhS#d +#\Up@{Y#}9k,^[S>Vh쇴sKczxgvx* Sl&ݜt({N.~t@'O=vPH]Yթu&JJ]Uս'́RSN]Kiq .^irYҐDUJM;icJ2hM۫hzf=䈅6ٳveІuT-F؎VA&9z" X>}659)j)l=RHm3@3aDCr;mPEbkø^iC*m|mژ hP 2gi=iH˩:*S?|Bq@D u-AjEV4a Rk^3 ) 1HNj bM15KK12dr}t7"(7ؼ) 8x2y0.(  vtjP2Xr12c;rs@s49,jR D6uZrSO?ŨS l&$8g˩:!k)VSG] D0 M(Tq˚P"qLƜVjq-rSL.>z{T9k1EI4ZLYФuN<ӨLqm+\7f7wcLsC5ᕔj8b]2drƂ E %:TDn/ uTM_ h4鰐;P4ͽޞiBa\AWl`>3 |>3 {`4趖1ÿTCs%,{98!C#xb|. P"(PAQHzPbTzeK0a\Z ?0aӚBwJNSNN5<1>ybbb.4 :AQWK=.5K90+\1G<012Π9?ؕ^a[Imn)v>q=<o={F,ObJ'}(tuBgd$K 1j*RRڏ˼)Ahג|SJkC-Қ+o ̀fRsyx0>1@cA*N<cAQ<,hC\V\a\0M8ApꯜSቧ'FzD1i\xbj9?.101.K̂f h4T]9 kyՃ?RcQHI 4(NG.cq=.Kc`4ʩGDzxꯞ<>ŗP=F1L FzD2II!(yTJbX\УǥڀTCz eJD)yGܼi=9 yjudK*TmD}.qYHI=&AĻ,<,qɏ h4 tZ^=>=#TQGk %zǡG$YTkX\K ̀zCsWN=:TtO=>1@;! 0*F)*PzU <(-J=*Rruˀf@3'ޓ~C))sZ! A_)wkX.@D<&TPp ATR=VAA9xT@Lj1 @P @)CXWK?.$Ak9[6JK)t'><@(Aշg$QݔڗzeUo*ܣ̕OIN djL ~ h4O?Oz2ֿZ `'}i5GHՋcoT:`]q hǾݫ& aڋ)^Oo!Сٺ4"8xD^yxP ?< .;I0pYeYe%J K&|m-7ׯZytB,W%S_liP_3딛#4 M=o>v@}˝RfKGG MB3< M88+4tW3y~۳6"H"g 60g`p08`Ml6s@%$P@9KݿoZGiqUHfsUު֭nUu'iz%E4m6>}7 ؎Bh( %%3UD3..h uaFTb-HPHKnؖdݶ[x67?>g*SSǏr7;p8|c>}1%h;v AuU5Ԋbs n+bjЧ牿y=zD)[)g滌z,W鶈j)[|ocDє/7ɕëx偡9nwdʳ+9]ѐrѣmh|:!Y~r |Nũ)˜9Z/oۑΛ0m3lj#U];Ǧ X߉?DSK!Bmv;qo l[Px%%%bbP^Vǀ||EFZT#1ڂh拦d? ěl:N{y?MmkنFi ؋OɄPf}Sܟ.fݞDԹlEĮAu[]}fTNסP)ܾyV,1vJٶMK3E3ESëv%S:IYYR]2vR鏀p6[4bg/25;]:t̓lHk<2( 2/p͊1wg:w$Z>cBDh{[ 4?%&j!/G:#IqH~{hpu cG+4Ylq,v}e_>ޝ><$7p1Hۀd?i^ |,yu2ws0l/xi8_0zu{;3/`bzƃ,A y9`}B,ڒF]n?yh˓C']IM΍y3}L8sVye[ `ac7S_! |Vrs)/ I SP(4:HiI יORUUEYiSykB zN?4 8NscSFdMM # 6_4{v`S/99z*1kw;;w= Nlןao"V =Jl0m#H,ŃFɷݭDFVY';<Se,O} '.SЬZǏRv$a=9ұ$]Cl WEv4b՚ ogEF꒡>@cؒlڜ^du6~X@.3}Z<zy9Gy9ǖ xcoun [A[}TEX&;w#KŮ }jqZ\''5#Gg_j8>wO:`8L˴H4^yvs`Ds`,6Ս{JgrBRm1Hۀd?%By/fen5yD,mhcq :~0(y9Gy9Ǟʢa<xhwZ&DLJ_FۛհRW1{,6^v5%æp=3emxt0[r)/ mMPi>̋DSl%fCT\4(vS?? ||@TۇebJ*9Sg4}ILx PsP92{ 3v5NGX*)3dGs0ol$ʨ:`8LVf/Y8e0}I;[m~uX8Ÿ]5;;?r?DzZm@lh6Je'oü`,7{;kLS[ɁSǖяwC&o# LKVl^1 -7+0f(hf]w#͋̀d:ʢB la_6)ݶүFz4M.B4Eں:VMV#@fmzT4ϷZi<2so?R.Ƀi fBqܨhQXc*u.DsVbҀ9ҸF#x+j 4y=1ۀ|?e).a9\#;&F4_mhc&DS^A Y9ǀI7a؞ג=C&i#tq凅0Iɼg4#nP#(g0%͊,mVfCf deTb^4h rrn7|N׋TԈe3VU!mѴ%̠hd9!03 E[Чw/lGC}/:2qDӖdα0 e'uiy=" uk*.`բE$[mc1/~ʎӝژ<sl~?n8m#!gg4#Lfhc&ES^sBZAǚkWq8 f[ݍm fΊayk MFd鵐>,>!y|9K8JNolx\2;FօY4h alz=nKJH)/͝4MG7t1uDg%wM3)6iَ"e 2h `>r!pe-'>ZqM4Jv/afxw:tqJFht&[M.!t='okI&vKH'F/㽹8#[u 6+Oqo٘>^D^l cD3E4:йv_6&D99'dd|v|#{Y[\z^>Fh"R-7I-@t o=mf_O=1ߣhtoУPfƢHCE0h^~|cKQV\H%فЧJ()*Y"ҵTˢQ6 ݋SN/>[RPi 6M^fY8}  qPB*!WER 6#J4/iJ'M‘QQWGG_8kp].h BPY^ZLNE=r'h)lhZry)0fhՋ*mtAye%r^VFSO?΋ݺQf h( Bf7.DDS,o,'Wf+Ef23FD%F4lF2f G}^uu58_*L{)l( BAE)ҙvKYJ4[G4Z*[. fQoQn岤ݎRUŕ7 _;&M\NN&\DSP( %J4۳hDStűdh\6Fuz:3f_+3SyT!8s BP(h*lp~( fGQlNdo:?7>ɤ\HZz:lh^pD.]Dqq1 BP(ڣhf葟<%mDKۯ~bXV3Wf"?zӧs!=ʡ#G8u$g8珄rYUU|( BhG@)lOxD^N|o\~k|۾| DWw9tތƇxVv?1ر'C'?ˊy8}??z#B:qwH=,xźo_}cO~6|7o¹DS,kh^ʼG@)lO)BcV+?lV+bY"N8۰ai4߸}\ǓYE[h\4odۙ6uG¦I>*hjr` I׍$g}1|jçDڝd{1gE6%J4hbө͛d޴:rzuQEuKy 6|׽{^Gӯk;MԜ8Zbcе/?'}q{wSZ?cTtڗ/n#d`z͋f3"q9#Mp\aQ|咗ǀSߍνQ~ B6E[Ұy_aDTNs,<9t2ߕhȏg;uo'ϫxyӊY|du@aL{u;vQ#(59'sʇ(i#َ$V(jnH=Tʷ-?oem{$ߗ>̰^wE֮nsA^.)M%J4V+qqq?~8qD SNEBhjud21+ h6_lCss~T5仯#<>Y6LSCshY C?JNۑ[OBgyϹ Ob4w E6\UP"^:d=@^lןaGv ۼh~U_ 慳||X>GDj}j).d^{ssk ZeVE0s=͈?SiA {p lj2黤[j%C }x6p?-I֜)w>cһ;ϯCa@~.k?Hnh>KMmy+iC|SmggF,CnЯ}w.;?%u!k3۝콎R? ▗[II`bL#@)ѼEM"yFcތ]vkuR|Շ&{6wWiϡ_i9Un|>W;2X:l-~ȅ؃lϰkr`tbc0E5O`ȼCTyo d"Zр=Exf.[_˄ȗIXI\8+6MYFd4+r1"wGD26(n.;Ɨ/d}n1JV~ގlos->ۍ .@ \q8FIJCIަqhneIɷ-=ome%6_θW_A MVn~AҮnsA^.)hf] M%h؆bя׹KԤ y-rq4шފy/h?mD1/Ә˟2F#a]ͥ1 ~(5> oĸlג=CەdAta9\#;i[qM,DU F.`$UpU$q^FϨl,CDn XhhߐW"_@Tc0F줿I胟s`=C.с,$͎Of筤 /c{fօq۝Mwi[10\rM/x.H3d?%׿^񓓁kSD3"Cfu5Jv/afxw:tqJFhA3hu {a vw)w?~tg=E2KvϪ+>;?Ñ,֏_a+$۝\#^>Fh"RfۏEt&:oeM"[Cay5ӶEtm/Md`7ywrvc$o0%{;O?1s|>$hte)ϻG3$.z`{4eۖ6ۃY4_؂v'+v%tSOe//7y kW )Lo_䢩{GFjA4D D`^cL; oQy_YC.[NN6u*'(w\1L;S YDS.X o1xEw:o %J4h *$7_ƥ][͌4DSBP( EESP h*T( Bhh鑝y!yJ4h* BPD4SE3 D`M% BP(!ihkDMBP( %J4kAօ4qSDSP( MR "/k,"iǹw%J4 BP(TDSP( E;D iC@P( %; y!EDLyES38ZO4hfߒP( B@hT+TnQ( B!h*l9 BP(h4J4h* BP(TDP( 䦢͈% BP(h*Ѭ&%l>}Ǐ7+ĺ㡾J]]ԧ|oﶏMɉ׈aMά\xM% !qr{nZ Y/++bibX.HoihZ%7#G }V.3TUUVR폚*!ٿ\qcnJKKq:hJ*ŧ>-.Hv]PP} D3-YD㗀ڷh*TMF_SS]M@(lEʕ+Hjɰ۬$W#UmfO'rWhmDf PDR<3~E3ID㗀ڒh*TqcDFJ[}=9z4vM D#3,Wq_爭KK2SO2,^_߲0_^7֒ mXHc8͆O-]m_4p[9bcV[߾DSxGڍHgqhV߂DS[B(]@̙Pu>p82hKE[i7KeTt~?^G L>9͌;m;}i|>EEETTTP[SEYIQCG6;^pݎ`nU}ES_ytԑ{Metl^I Wugsָ\ӹ2/byhӑSYTDSfeR<*?NSOۭ;wb4 SG@ʽ< O0tpU]W"zW3R=eN1OOfm4M#--zK(-.ԣ A21l 4S^V|;ioccHtHdӣ}rw =fmhrLg/4yI(/güPF,MNCzŸAj : oyx3)yRlzly%k+Cne[>!x줿ŠhH?>:VշTlɼ8d(oˡέa+<˶e~鄏]MیhMs۠׆1nE`=,#r7]43ҒD4Z+J4h t\Wi)u7t8'Ogr]|V^ĵyrѯc:!G͗nxJw25ER`91V+g([B£cZxs9ss0EswKG\\,vMKbD3rk$3zxEu f@y>:{+ؒy}ܟ9^X4w%E3QD[yES38#J4nh*oDGGPwIcmܰACR#s>/`#pX=-Z ,Dۿfym |a#ui$Dr Weg4)HYA $TW$q^(×$c'xzy- Ӱ]o!Gy%o+ڍ-#X_{y0-~k*EM}}7vҗ '|ϩ^6+g2jY:vk2o#U4;GfX4چCw%x'vc^4 :m(>46Z%-Gu%K^~j;v O>1>.G+=gWh*8i{Ǯ( lb=-˅!QG?nٳW s g5+JӉo2XBugߑ<' 9ksD|le2{v[0L/x! !ohvؙ{ c{4(?L](mҋn;;| ?Yذ3ٶp;nunuy]'t-+._]EK7qEx5=˰1kȯ FaAN͋&^j!J4[M%n7%ӧSq#|;uuuu|~[]ѲRSS7;())y9MFyIq1.ҵ~NncT}+T}+4wb{8D:SDq1Rii]+4E3##e˖oEuu_Oyd]HeExTn~93.z:SyӟH+c/;DU U oqŎb (OT~=zP7Urh?KXQQӧؾX(ԧo_mEfJփ=0ZFBw{"8Iǎ}2.'f#y#UJ4[,5WE3#-t(TQmm-.\lۺ5V矉O}Zzb}ooE(;RoL4E:ӎDSBܯDopbeObBշB͆h*T(xO7BշBշBf͖ id&%7BP(h HMLL;p#%J4) BP(LOIڎh*ѬDSP( x_ SDSP( BM% BP(hV+TپQ( Bf@J4h. BP(hB@P( " #"J4E!f BjPy3P( Bh%Ƣ)ҙvVM%\HI2J4o BP(ޑoqUWV(lhVVrEF||Bs\fN%-BիB?uLM/2O')݆D7cǎ!Z55Xvr$a׭#?ZuuX-tqQa}#ߚ OɦZ뱗[фNF֜5wLc8Ul^|O&2b4L#ߞyŬۓȕ:U3|w[n?}SD {fTNsz\LK D`^{M%^D'wo^."@ԩXNJJ(/-%a*++i!gEs(~"SúӥCg<Ɇt>Ȇ( 2r5ѬXzws׾L|qM1f0/$X>ͷZ|XξعSy^Gӯk;MԜ8ZaS?e|}Rȍ}8_0zu{;3/`bz&Ϟпk7'Q||v QvKH:7W߼:A;й{^N/Cy:U/֤ #kSybcC4Y91c0%=f dߞb|nt5M̗i{(? G! ̢-i،/j8f}_z]qT顓212_>9<x+l3lf4"ߞ 2CLgAb} 9mxγ~ [ e(@y׹)cDƯŸI;yowνc0%=@ }j).|ȏM.dKA7: I5DОQӌ+.} j=4̢(L EKᧉU<kO/^xf'Hbq}}zvc. _DV2=Do)т&'ٟ0hbl.Dt/ȾIo2Iυ珼Lmv?z$},#3tk_i^k#69LM<Dž@浊hV}T)~6K[m-wd|!Pp嗱梹ݺXWT!F3-N:ÁClhRϵa>X&;w#KŮ }j_io5Ǟ/3Z?&c55:iϑl Z&DLJ_(55\}Uo#"G&q$oHhVcD8"E헱1 xUz@]5lwDq ƼǬoQl-LL4%ɞʢa<xhrݝx2멯U^7u]%ŖCfQLؿæp=3EݛA=>NY>y?Qo0>G:~-_igKbuv)ɑ IM~~d'?珬LԙHGia~$i$%>5yM+cjz=#"+k%J4[,Wo Ir)ڿl >pj*YgPQQAEe%UU©\4%|:54@1lUsd@f*l':ڳ_p`tw9=xcKf1J b`{}VNƚlP}Cߚ#G+!d+>aWյ6~ξO#!wC˸oC)3eHG9o~di$[5qM+MgDV$e݊&J4*. (ز~Lt6JE4B$u!F7kDZ]6E8ZQ40vNM̛ѷڌN|[F+dPf#S jW:E?R\Bb4}.ad$gPES:#F ^efjXv/q?LiKx \тM{Ȩ|<&O2`KY1E\]z^Ƀ9+E@ D)o e_T)3MnA(ZIlZ{ h&9P^f3Uo&c~ϰL+Ez=gPW l'!x^Y~lXs?3֜^^|OseɚkWq8 f[dA_*%=E?p(n?z*ZHrackc5osāLsW=QC847uY3?;AW_[Kq,ҿ\^6e E}sZ6" uk*.`բE$[&[~DgH~;2_!dFIYM yV )k,"iǹBUEy[M%B^ۭpBʿ Esz"MgMq;]kYId&$gSo։70-d}Ak2SJ<=^cCPi^tݡx㕌x>HB-O|'bG f^WUo++o2z?Hp^֍5k}UoDP( %;5!T4E:s155ESfZRhhĈHfz<@hϫgk@?4u9tZ7%BP(ޑd8X4E:ӎ#ܨM!b$SD@4Yilt,)-fxTUq7HIt8I~=l+W*T( DSfMMpn7V8 &٨NO'{ %|f#JV~>YY\|<gΜAP? 8◀nDSUln#}De8+O&'r"id?yt(BPx.mO4h 3I|%05lW?]@_,+f9rБ#:yqqGBB9~b|>nw BPORYhƊ_gdS%٨ܜΝ=˯wzr1ykJ 3BkiyzBP}ȏM.;ݘhtfGQEYM%vMͪX/^$oXꨮDӧOJߴiD2M7f|yy7I4ݔc󮻸wtؑk򘝙,܁΃4?:uC%x1z/jbXf7f6ہ#Б_.|t9j;g?al<~,d`Xnw&_ZoŲ$+>y9ȐGkm;=~)&!?P<֎;)뗵׍$g}1|jÇe"m/ =xZ|΀-:]aӤLpYN4W59gv$aɺEԫuu jcVALihu-J4ccc1Կhle^djXwtL'ِn3FD"v_>ޝ><$>G_ˀ~_4Y918 9."`F$sH"?:y0mh>{q/Q,ǭ 6Byhr0,7ѾYyFu yp/^y9HȰrv͋uQwbBeQy"3m1\4&!i3G}ب7IZ~xS8 ̡* 5]Yϸoէ(81+hs0t4 4Id>/# 61(b#F#ZֹOb4w E6\UP"^:`'H'܉r*kh>K #K6$bW[Ǚ">wuѝqN|M|]#Z[ I!jʃ=Y 3RIy_.;KQxzwŴ?=$cu6mT!l.Jcؒl.`#_$W|wCmʮBrgp2UN ͚ϡe1 }(`3s퓭+-c90DtSaX#ܨDSfR)LQ4&Dvz>Ĵ01 `QndQX#Yhy} Cp 4>/U0d臭s@3|#fwg4F>+-HĖ;<̈́gP5S'm1\4f!9{FyYZc|LFߍ0቏8X6|`#;&0dQjɼ2|:\_$ZLG _2b9F?AVήgJs0:kuB46#Y[Mt"Gs?ܕDmfl놙0b:_^E>G-\dJ؀,)#쵢x_DS38*JKh*є`eVXnq= VY;;?r?zNחx͵iሦ@S=򀸵'ViXHӟ'hّDM*_^:2l V3(s.kp+꣧F‚WI)8!s8syCgs WFhOg@F}y+o6̕,2>]?7qmk:&O%m1Z1B(@QIw4d{xY[Qc\5F4ݹ+#g4yFS+Ih#x!7M4h_3eȟ9R<4Kr,Y;1;L˜9YEy9HȰVݶhnĠRň㒧1 q,q6| ҎcY%h2}O c 8X:B _ qiC'H'bަ%L)d[g2[{S#6uM~?`VLבׇbя׹м+ŤrQlh7ͳE4~630UD\M9vߍ$9SKVOmQV<؏wӰ7yfP4knd9.?ːy+9[GV-ZDѳ-7TUyyքD>cSwoAj:/f5BS MMU;i?DZ 3sƇ=c1QFǯ`Rp f;V|r( WVGxKItplu\4E:#ܨLfESzj_4ř %7BP(h 1:NjBͲ[P4 BP(ь eA4yJ4h* BP(TDP( ؓ" ׶DS9ƚ %7 BP(h{ 'DDSgSGQYIQka&5J4o BP(q)lu\4E:#ܨDSfq1)~<k2h BP)[ES38vDQ%J4[BP(J4?|w)I J4[.Eh* BPy/ Z*bOSWWDSfDP( %gNhO`^ۺuDPϘ %7 BP(h IhxD30 ':[oTl>}Ǐ7+ĺ(Z㡾J]])|# U U %t\fiqϒwd(48KJp^ؽ{7]aX4 @|i1_,W$U Um%;Ν. /Mδ':DSqUoJjJQSUE??+n Mii)NMscQ]]IUe)noEhDuDSf_{769_MMu5"jjD+W#6&n X_]T}M,g>XM_շBFڋhko[J4hTV꣙gƏO?nޘaR[+Mf!ÏF0k@nzcPEY4zVUMt=wy':vw(f/fFESfM.z2#sh6щJG4}ugX91⾲ɑ[磽!.(.e/_%Edenw=Y"[ean%۰q [۾hsr Ƭ i0h ) "tl[b:#%Fy´7*ESMշ"P3) nV}peR>跒)oF1p;w1>˨>]~=d|02/rhw4 591vd9i|>8x`CҽKg 衃,L43xzt#yr mtͺ/^b^tԍ1OՅcTD^X vHÚaRh;Ct7$- @pd/}HOM%{dܨh*ѴlL@))rubN_~zx~[G"rbJ$QⳓpP&ҧL)=Ɍ\iRrŅz7Hf BqᕆuJp9"`'a ~lɕNlz/]ntLB YN % 46ҖF>o= lʈiHO3;HtCV$-Ov&E>OMVq/w` Ggݪ- }9Թ5lgٶl i6#>9sMYin0ƭȡe䃿P̀{t^#5;ongooq(lh [Of|isqâDSoJKۼÁEEd=g?<}:Ⳓ0&ÍM~5 92xghuSQ/j٧y$Z9gFG~pZ ':Lϝ;ǣ!?E&rǐ:EzBH獨sQ] BCD_6չYa~hiaAR0_PsS9t5=<⢂:f Q<<5 AF"̤9k;:H oyx1)r!6I=62ҴN!mDn{}Р霬ZjO0s,⮖o]>2auޡuӰ <&DSn̵Ao%Ƃxlɼ>MO?\ƶM|y#mo&~fD_NM%j;i6oHJT~vP{lKdzPk"rv=4g9'e2m( vQ5$!!*Ju!.4I ))) գLd ҋ|99MYmoja1`u^շ) *畬l7b2r(J΅ ފL kn #ܕ]ߢ속 ~cֽCb_|ktܱ_n 1h18naTD#?,n2\HKcʕ~ž&#_,I5qt"dny5REӯϽx +b>&o/sRHff&/5պ}>U."\(?dmd%ppKb/>óŏ|MRh |OݶN9kcPF-K`Mp$ fی"KTVqh`OsESnL&Z![ Ʋ8F(T) 1I )9e2hֹ#7.](zev؁ ;3O>_Q]gDFʧދԣ|//0QD,WևD3BU(//gϞ__(mՕkW#H:e共vHϾ#yO>s&dDaL{ev_C^ I}CRߒر3thJQ~^˷Q<8:vw~agm8Bw>)}7sA׻:rO([+W\@ӻ̋nG+Oka{ac֐_hOM3C^#MMq7&"YI:{M%n7%ӧSq#|;uuuu|~[]ѲRSS7;())y9MFyIq1.ҵ~NncT}+T}+4wb{8}EVM%cǎ!pbOKlZMs!,[L]r~͛&E*+ěbtC\|ħ~93.E:SyӟH+c/;DU U oqŎbDS(D63LMhqq=j *׍g +**8}۷K~~?[b=HRM=D(nVxq2we\pDSxG Hgq\QrѼ/LQ'MME[r<[Xj%_|bX.kEPVVhlhsFJ4h*RHxӼ3/O1-V# U U %J4E!& 8}d(TzxO(T}+T}+ޑ{ksh*T( BDSMBP(%J4Ns DP( MoH4E:#,*WDSP( EDMQJ4 ( BPyEfESbS'L͛BP(J4wdEyIUDSP( M%J4 BPKh*Bs\fN%E![M[y]Um4y^"t⮞[DS v0Ճ(F1>jO>À{E")Gq!z~uf҉F2e|f,@r5_.7_4a\$O%gG:vϲbNm~pf0>Ń-M%'ztE].$ YĽ6.jaOgoBCPZZfByY65 "xYOg#z- GJ4h* ({:>]4;s)<|\ǓYE۰Z3>J3o\6MϔUDsUsf˟^H[I=3l*f10A49 sۺh*$:{zuNpRVRByi.]OWYYODG@8-F֝.:?I6e= ѬXzws׾L|qM1f0/$XN\zAD^yu/:>{߼:A;й{^N݇\"r5O<<~.43'NgjDާh޾)* 1!Mt)hX_駟yI=pnXDj˩H#dӀp|/=;0MМ_=И56sדPYφyN&h0iУL;`8at WM&>}t+%C }xγ~ [M.! 6R*\lɼ>7Pְı7I8$As[dUu/ %⥳X|vR^dR!QU7)ۋ$_˄ȗIXI\8+6]F$}\ۡh*<LF3Emp!"\n7EW^^Mž}=]6,*** =X8uqN]f2k蔍92{ 3v 6m塁SD~F j17dX"LA3yoO ۛ}uqGBGz~#,y29G7t6G xe\Vy-?y~hZz5v5<ԞSӧtC 3u/C޾?&{9P>>,g'b؋2|0ϟg%u-31 2~fe$O'/oi}: t^ pWewBo[]PAZ "-ţjD֧մh 8wEӼnTESf@2Wer[/єnF_yh&BI!"fm]H˦G+)kjތ՝AX3NGuMoK?&sGOwD_E[Qc\O9f1t򏔹y mZ„Pa9x-r1?F ^<%u"kG-_#:Z: ĢS)sy[I {i&\^$pNӕwed $e/kIݚiW-[&1Tyy~a]i4{|qWu0,j8Hcesim 9Jyƞג=COr0էKʵ\aQ<)u5n<@=(#ǣf VC:iKAѬrC`gxIpHZM[³Dl|d,"졕٩ϩfCϾۊן|3շ5ό5穨װc:'5pf.N% ܎tX[ɉ:5j"E[Чw/lGC}/!lN6y#xԉt KXFLk[̒}W*:؎yMRΦLK}sR.eյnʹVM"6>$.}LݛH'MY}L1]Ʒg.SԨAv"{!p3nLY1,:o֫8$}\oX4 inD M! Y_8rsI !_s|xai覸.济h~2nwҳy7[|}2 F}vz ӆ7o^:^7o&[Dv@nV.[C;l"/}1g'wx8C:7j.=TUrN|$CE,^{sq%`mF+k9=0S~GӯK{APNdkKRǒ6b]Q{ 3ûۅ;x㕌lGZ< &)gy59-is҄I^Rג5߮L{4CBg6|Hx>]RhܪD3pTduBֿ+yضoh=N>/fYYY@4@2YɲLgiBOE\eN6J4o#; BP(<c7(=G *D3LB/hܓ:r$~w.=FOx< BP(oDp4fCx>^iӦK'a"cV.b~?by'޳#;dgY?[ ~P(TDSx&F/V,جV]4ųEE/uyyyxVM9I1% srH<ڨ>SeÉT954k>0T{M\O |j64g9WO%4f n;oG6o= NY?^:0svI !Ȇ";_JKg0n;;7?lןa9c#uPB^G|xǰ%)gĝqN|/bBFJ ;/cY >>g#"f5y훕E<9qiFd^{ssk ZoگjBA0A49nol%-MQN9h.$^|.<~cO2|V_r/"#f7y>ǰC_!"8x=r$r}L\,6Ս~ȅ1na;w#h,fen5H^Aq˗f2nt> O|bw/bk'0d!2e{dk2 V+ G0%^{*̆#\(]ۯj*$CwdqEy!V%%J4 " g]i{=% O;pR!=&.|$X854@1I;;?r?`za@q!5C]fKĽ5h&)گjtm(h*T 8. ,a:E?R\BbL5q6O~98crDoEas:mrDH~'zX=ǐ xt`8  -1sV _iMū8YKSxx ŭۼگV&h.y/p鸭DKޝ!;t/|ѦF>l}~4нvrN|$C%}\>3oa [ȴE4:й?#>'y?)N'fjx–gcУ~&gk~#}K[;h@o^>Fh"R ^tiChmUWߖOi%;A49WJB=`6P"/c`6hQjCBz3{e\j*hlh3J4hf( BPDSfDP( M%WCBP(!;A49z̖La~ӡDSP( WnL4{M%BP(h*TP( BDS( 8qhPP( f7&79hhfE7J4 BP!|DӼmE3Kf+A3J4 BP'|EӼ9ɺDSfEP( M%hP( BDrM%BP(h*TP( BDS(Sr>ӡDSP( MMWnH4{ؖ͌ a^ӡDSP( ͽWnL4{[K4h*l6O nmm--GxjRWW'>i1_[GM% !qr{nZ Y/++bibX.Homh*T8r ҷn?SQXH^Ue%7ӉZꨮ\|dz U U߷yfxQW[:,(nQ:X{8htKqq16MUHCgZE:|g{?qםwҩcWzbƓٙnūDݜ߭_>&B}~ 4%J4h*ѬхV_OƼydfx!:Q鈦 #'7FW6099b|7ҥlekTӸ';;KWy׷NSywM:>ܖ|N+T%J4-WߊBgΤ $[i!IE\\(JNclؿ_e`.tk:^pfȩGnf\l+|ؑM(**ښ*J} H.2(^2^Ӭgd щ^3&"l4xzѽS7~I=v ou؞׷;gx(n"}zԝb㟞E)ihFZZ*.>QZ\GQA~@2b!^iXө/ v6\YȦGF{:1$Мį1_Bc#mi$֓PO_φyX?J>duH;A^0_ߍogRdJVݜT;5<|/CGI7A 6А~}tۭoْyqPڗC[Vxm˖f3# < єfAI c܊zYF> h*TDSoJKۼÁEEd=g?<}:Ⳓ0&ÍM~5 92xghuSQ/j٧y$Z9gFG~pZ ':Lϝ;ǣQZ\"˥123E> #7b2MwjFot3c>}(V>gcFj^@Ry}|}_CqfnN=6뼒~ȷ_>c=Q1u_~d?ox-"6B ;?[f ;ԛ-o7&ڠ;J FK#y@%^DS楋 TYro@Zz,%\Ce^ %)d0qbm-ׇ ȏÊcn:!tp'Cqr_ƒ̍˱#,|I,=cվ[B kQ>}`8/cB4LVra,[ǖ͖DS}#::?>$>N#h R<%{l)Ԛȧ]M`DN2wLʂ-o3]{n=IH'''ʲR!z MRb"#E6HfJJJ@B(//"fhnzDSqۛaXL#hzC*׷<-{Fs Cg+Gy%o+ڍ(sb7S[È;we`D}׷(a#6*qN ESmC+Ĵp\4H븘S?C%J4h)t A[ Aee%Xr_'x5z8KmM\(]d>9[G" k^{+FѶs/6^ACʆۋ"Ç75DmMwGmuյkk8|蠞^#K#&\*ج?LFʒo Ÿ"B$;K oyo"6~4ݎy=+y[1nlI,3؋ϳAtl#_T)m_/hl8᳿xN-Z=9X9;QұXy5ɬ¥)<6#̟56U?+єSViCy,Ѫ(l9J4խsGn.]PT;رAvf&|au9Z_=㿢@ΈVɕO3%;vGd_.N_`dcoY.g>qP^^Ξ=PeETWV? _QVJnnN }ܖڭ#=?aLY#_d+ܳz1md}i#mI}˿Gco ߣ)Gye"/ٞFo^t؉XjƆ5Nɶޑ^vQ߀ϕϯˣ]=xl\qGO2/^/z>cn~%YYC~U6 ? vj^4RsτyWrh*t)>ߩSꊖ=Ǖ?AII1e(i2KfvE]M;\tr[[Qc@)TyAMرc([VifFF˖-Fo9jdɺxʊ2韾_Ō l+t'γq~(QobDշBշ[}#gX(q'ސhtEM%/?~G N>&Efmƒ/FAħ>}VjXO/ҙܐO31{ `sIy[X׍ﶏj7m3اĸ37$"M% E_jkkp`-Y/>L|i1_,멋ooMżh%߈ht7$J4h*䨯4/(( SLHBշBշ͌d֭lh~m}))TPxO:(T}+T}+LM8Ͼ?q|k9o)h*lBP(J4EdО]z6|ɎW/c_@'dQ4J4h* BP)"#%+).db=(TP( BPD-P( BfM%BP(h{%J4 BP(ZW4o?W)lkqkBP( %oߪKf vتDSfP( BDw/Df-% BP(hi'+)Hiq1iV|){AM( BPi:֭^EIqg9vbU+ټqY4m6>}7 NBP( %W󨬨c?w8J4ocьx>Bs\fN%BEP炪V7?>ovn~MmKrwadYѼD͊cTWUQS]M,v;9{0֑׿R_XXH]m-ֺ:}οW?_ѣGM4f(2"}\iձ?&ua@y>&]tތƇxZpJ4AklKJ4ہh (df۸͆?e QRRBii)6M?, eeجր||y f=9 4A6 ܮEM̰kIY)TihKJ4͢DSëv:IYI 奥d:v=]ee>m!lh^djXwtL'ِn'OoEA͊1wg:w$Z>cB5ȴ=|48бDpaHyswg>_$;^'HSߍ=G]$7Ьw{wSZ^ ~`}B,ڒk8J^g1ځ?cTtݠ\zAD^yuo ,yu2ws0l|4݆ed %i'󐔓)LC,>/# 61(h/J,ZPw~nCލ#28M_RZg~7}9X_NL|[ͬ iJ4ۺh )hX_駟yI=pnXDj˩H#dӀp|/=;0MМ_=И5e;;;w= Nlןao"V =Jl8 <>Y6LSCshY C?J7ߝdu6~X@.3}Z<zöoSHp:zl{/離F}I'1 "|i(/kblɼ>7Pְı7II:N>5IV$tL4%A {p lj2黤[l.J<ǰ%)0Y#d%i'AiLF줼ԝx(viw9"gEvz>ĴYYLfauёIwKbT>L/t|{ɶ܋WuƱac?Sg|F'۾;2X:l-~ȅ؛/{*̆#\(!hU^ǎ4^ɚNNnވf"Ѭ̭'@}D,efGd%o'W*Sg-s|ilCZ4ql6㔥7uFH?Iuڸ#lD%J4[C4(vS?? ||@Tۇebѿʪ*tNgcjMC49^Cc&:C_5GfdƮrP{KNLw!=/tq Z<$?h ߾[b}uqGBȯP%qogz {{JpO:塁S4}uח- :6y#g %k'$hA#,y29G7t6G xe\VdyinD4qf44KGIubVi%t^E˅l~l&FGSm_i!B4E裛uuzZ!"(NlF|uy|x-ւN ĢS)s![IX4볧bDl߈x+j {D?KͰٲ"((#ZgDǫLձ6ay9C~ۉ1h?fO9f1t򏔹y mZ„Pi^Z%e#Mmq쏤Y7$0jXm[آD-(T4d 9tp]zPg~{?ikj*hyfP4kAF*\s0453g-4$8%>Xtυѥg+< `zEgc2o%'rT\8EH6Qd^[ÙU4;0,9hWl5~MR$6yFg4GJb׊g4kxF3!2ן|3I!2y۰֡q̟'кdr1KhmC޽! +GһLV&Ӽ~Vy=\4ͷVs)-3H?Ym!i6g4'M>ul<[6q}:q B^ۭpBʿ Esz"MgMq;]kYId&$gSoՉ70-d}Ak2h^tݡx㕌nMֹˏ_s'ڝ.!5Q>;?Ñ,֏_/*Hyll~.~C{8B䬵e:yL"zu:˚Fo_dKح `K[h"c \y"?Kl09\\Yˉi^Z}[.X+׹㔗|dj6nx3yv {=~? u(TUv ".]MK/#;#]uDMMc4&P:iD4G:lee=~{=Y{8ßrIDVEP( 7ϹĹgɻ|u(]fq1jУ =NO%w+OWYlU`q/*.%HHIuykrqkT,y>B *T0%'#\J4o#\} .Ǧg:( ĪGbEɬC=Ns:󅵜;w޿?F?{eqU;53"V^ ACA $"^@ҬTDE15/iyJ*B(DD00 0\@Rvɲڻ>>9Yk85{< ܐ2XZ#Y UWnvOj^~qtz"89mp?qJ4 1+q}5?!N9_GrQ^D/ކQp0⣄|%"""03|+j!6ɦ<~\I!2- 4DDDDdh՝[ MfDDDD MU#"""&C$"""bh24e M""""&C,|]dGk7 dh֨q_{?pO*{s M""Tշ]K&{ʞel.;CIDD$/+?}5 {7 dh(.IM|sUUٳ]f{+}5o"?q"Orz"9gXǹw%4odh24H /?/o>v* 8:y߭ןe2>cGncYhܺwW11hھ%5xŕF3n$"";Jp=qSPkP K^#&"2Iۆi7Ȫ7oAKa,2 SpG\>=P-v iÆ!g=gDhW@emgr~Nzæp㶜{bYch24Bl!? S7vf4D-)hj&5 _}*{A^7!c'Ym;Gٳq;;J\AҷQ84elE͙Qjg93Y%! d\cz&ٛ0m>^(@CSJSpt:\O ͻdhCͦ.q8cզ+*Tp_GI۪F,+íߎ7*n.|&Uy_ 3k0{bq_q?k!rm2Ŀ<74rk :$#?p.23ISi@Ci^4N#1j B |a8yh{GC9ۍ8y>^.>xweԷ߿-T圣+f,FQ=0c M""bh- cNf`z~%6@WV0n GsyRٟᓗ\֧c4P;oUFr%p5t%5ˌw)H-c-(Q"qTϜb?o|Y$:D\ӉLI;skף6Lϒs>/g{L^z٪*֗!{lxGQC6_x.*4rpfFʹj (+W RQoHxh24!C7:-X4H}ekwo | ~|r.|g2;wo{ Uq9z"]'klwlLנU?1.!s7m_BcY!U%(9hGȝH8rMgbB&JԴq<_yAm)*߫6 o`_AoZc0' W VBΌ[~h24Xi+G%`-?wv#lYL6Ɵ%cUt"VFa7y[^8Vpx/^ w dՠEuq?J4x4;nllP3|b$2Gi_$ט47H5?f{bؿjvwKyM m1m2$dS4s!.JԏxUaܻݿ M&Yahh7s);qx{{~6c]ȅi]o}> rchxTf;$4D*\Aё0ho<%'?pn8 BSOA ʘ^Bu;"gpU5g⁅tu^Xs< L5l7eF̫pMcrz_ޗw*j {b$""fS]U.YCq?LGxt6lQD8Dfɾ=uy(qEVY3yoblhujh(+/"Ⳡ֠0 iyw zeo_+W$_+Fuf,V#Sc|NdhCVHfۼ{.)9#R$v=B}\0_WQk8:#qa%Ǘ5?DG]'1.u?p _L%2+lz"3q=eM(wCERZe+l;]@5 [w`[e|AkNx'2ښHf0aBlBM}:C.C@hhI]u#x3rdhv sH/Tk6QʋhZz?WzY+Xk M&14tGRaރHLL&BӼ~MOơ(RsFZk M&14ϟI7/x_K ڤǭ-w2[:f嘜{l3qiz M M"""MI!2R/ %9 Z CTY%v~[\<({R!LDDDŹ9,$&_R |*$=9n6w&׳3qT>]lhG٫Yιt[dhc4*r.RrE=^eϜK;CCH~w΢92w&C|DDDD!4_lNeM""""p_`hwZS!&y$""""i[M MsCUBP474o>DDDD$m$434jQU^>X""""6Fbh U M"""BSifh*DDDD4Ck+M""""q 5CД!j M"""":r`_""""*-~inhCJDDDd4%E&/*COAm9tXϗlG0dQhM3g3]9:xוO~iR3c2 1.^csyy$辴444á) &-&M&m&f]9si i|ЌNɘy|^[Qؔ/?HJLNPRV?:znS{\GF{lLL~4'xn Kך~ q -tLi"i#i$i%i&i'i(i)i*i+i,KBG_f۱c_;~A_q:sg`S,sXyHxm;u ETU+DDDDLHHIZIIIJZJJJKZKKDhno;4-4_Cz{ծCGk'8z>x!sB [5:xװ=Mp$y,Tykx9f=0i㓷ƞYxȚIII#I+I3fJKISI[IcIkIsI{IIIIIII=ͻkhTy_sffffa$X Sa+bksVܵy@31d/Q'3~^g%ɂk͙a"lfN Ka2Z {aif۵9-w}~Tx8wfAߌz+`Cy>߂Bf͙a"lfN Ka*lW {L3˟j&W 6Q7#^ X^E#`V06HX 3a' 0UʼifTs@OSl2e՘nq͙a"lRL11T)2+yfL3jz|hM5{!sPsffffa$b0U92ϘfMBȭ،MTy>3Gs333ee -RYlΦÄ333||N8r`7jlvYt6"*C}<-gdE\lfEpV梑Yfp(]̐Zr`% "6De\(> =8o=C Zs5IENDB`kbibtex-0.8.1/doc/first-run.png000066400000000000000000002415301331300026200163470ustar00rootroot00000000000000PNG  IHDR;CIDATxYoUmaH\@iK2@9%`{'YY~9I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Iԯ @!DBh#<"}w5? 0}CP4Cb.5GC1Q5 D#`i8j2js#Q}0:2jcF2h?uGѨ EfC3=TtkleCQ&9Vo$Zr|Z\;^~cO6oܚ865odޑ#Gv!EʕQE}=+hy#+ZNơǓwfvܹȮ}#;G?d.}$;I}0*.97zUT}~V׳nUUΰ׮]6ugW=hÇOmkdΑ#G CdNRdO)Q9ڷy]T|;kVe1+CQִeeaDN/xl[_/j dȾ#{GvAd)Q&OdO)њcQ |;m[XUk'Yn>{sί߮G>=@dȾ#{GvAT%MdG)Zp]0},_Ǜ!Zrp͗o?xi?n>~m]#Fv=d]$Hv%Mԟ5\}cQ?ծ|;q<{zvp7n?l7ۿs?}_hwQ{{]ֹ\VDEǶA{V[mmQ<2iADB99Y[ώ;dV=7yaߪP;]~7v 9w`{v#I`71GgF$g@V9UTXtqӿ7G=6?3?8Ǟ9GQ3҆{vA`>{ v'Q3 X$Wd4\GX<\ĩsΘ?WwwNXY|CP<.n'x\TMƘx;)u tGT YdF'YxB$<բ$)j!:AT/hBL$II<&!jLjbJ-&'AI>>ɣ%P4!IJ> <u1bP[$ AͽAI:#Y䱄+I3IOԔ$ZiAA$;J!XM)|&yiyL.>;#BW( C`N Cij X$,nmYςo㳇3=_񓑓75? qkԃs߸%ˏ<-u7JP4."zF}|4& G$) YJزa"f6ELPSE|c6cbX6w3,K{`UĆkMK} 6nÝt[ng uu͖"?,u ;#.ҿv24Q)#(pDGpf;> gԢA8-Hh%D(֚qHg*"E:`]]ضXıq—v+_|`>@i|p%NMyƢ⢃PTXMMb> k|>1>EGCb,`` #Ԫ~ʈFCp$G$Hy̐ʉuy# m] oO.͜X= eda"t>IDDʧ<!z$PP3^(ccg˶]U^tw/TgÏ̗Ϧ_j% 9LXmvyY)s)<'}Wg#GBmE^p!,Scc{7voܸ{:FY˗K/ Yz|>#Mx(*+q/v"E;- b l-˃y͝kaKM Bu ˶"TY^ >7TW nopqp;X3`,GC4%M}-# I!7"#t1yLBp0d\@=Cp(Z~~~4kQip]wHx K_BD%jM$piNQ(l QYb(؝v Dv=z$krMgr;3c1=mp騋IM#϶+/u>Tг{ec/(-.Li۸9Xı {=cu!cհd: Yal( fBMm@vU!Zjո [Jذ~ˆ(*ȳ(->(VV\dvclN~2JsB e2' BdSH2C֐8} X5Lj9B;BpdhOqC<"%&yT221pXKN ],G1^b,2}EX 1D>OqcXG FɢP I!Ԗ8QBRt_ЗH&ZO ɧPiA/H}2gDMC ǘ}vMe~꯯H5ƩPO&wKo E^q/':3>q,*.(95c *̅0{rXs=,b {v˃۰rTîa s-~|>weZ0B}P#d~F( (y8G#H8tz uPc0%Xp:dKy%&̆zc{ o7 ۛ9cx!q0n:iطwr:.~  QwaC"j$J<)DHI$BPZBCCcgη~H>킼x){ކ yuF.|S~E+]U(vC9j /@UM ecc#|U/fd<B `W;:?k2|<>weT0B*! hOI#F*ÑxD HDIۤ0'z |X03|Za*߼uX14xa7w2W𱒯Cr1ɣ5 )Cj)"DH4𧉐P$DSOl F 6q"WlcX$ܾ km1P{{;6β؟rvl6Av27~?E8|<>wq0SFHQE#<GC~}PuQIK8U&\ԩSg# @uqQxjSd3~~<$:.zP6[(DV*):}HI$H4vCc)x1X!o(?_X+V\)9q41w s_Y6}i\~: foqVQ`P)F24Fb8F# = H$$BLB턨$hOCvI!A(yRq"B$"Drși"Ӆ81}vlcX<.ؔ (5Uu|z㛾`X0.^ucCӴF#=i G~= "!$vSӡI{RKQB<"臜4c>;#ͱHW,Rr@MU*<yžx?>1 F2ʀh5Hj(IP5(6Q;IKY-=ɢ0N D5˨HCc |X914) FHOG#5+HrҠDK=MmT1V=Qc(!@&HD1ƱHU,XĘZG#$FQOG< H$$K[U^[%* @$!QH!H>EP3 Ws$ⵉcXαHM,rH1̝/-<.;y)XDA)_.dY ӂ"U( v.SV]mOhwuj0D7X!*5II"aDIZ푃DVULKO͂V߯9H=ϢMJH@RB HdH"!iAQ-(НB{H~'OB;ޞI{\$>I521A818yG#DFp"Iԇ#<#%= #=$bjED#i')k  S =у= ) CHq‚qH% 1yG"đ1Ʊ(ccq4?m>ѧ4#5 #=$c=*ؤkmJӬ21 !@#cq,XҋFQpDGZDIQZYjMd$? C "=f1"E1viq,$~y퐂)8mm$YD6TK]T;!$D"ItbHA`_$(X\IP=R4X{2D_: R| {>UOsyL.c :8q,beR4Bf4u5hHa8"qz5$#Hk@G$Y1.Rf&NQg#G!=aHu P"DDb$rv2<q$bq,XTns|Zי=dTN!FZ‘#H! !1 )H$BPBԻĒEWGA !EQQSC!݁TMq$bq,X339/̸^~-?( zLz*(Bmh4p4#SG} H $ZD$zLRP5ktz@jB-)B(DujHC6=! )"D1EĈ/4T7+ wÖRhXxڈÑx0 );!QT=S"J@DB(P2aHs@SD1E1չaȡ0lEps`kiOGE~sJJn+FO/9\1dNX}Nwx)0z8I0I%zt7l (we,"~_*x5G\ SX9cFpuqlh$1")I$zPBQzzhRQ-VuէBJ~t-RMDccǢ2yjx)a⃟@Sdт_O.MCئy~|wpT/gc Ra `kaT޼0 Oe_ŸǍGWdCiu%~o?9g,"Qlu\TPU[/IOlJ 1Gڧ#]IAD"$zLBIՓ*@QO,ԥ^ZRBuDA DBÐ8zcq,<.8k'Y0>+&Üm7Ls=p#L59w4\g<|I?D)܆_2]>7-0sU0wș/eaKag^1_3{d:/^yo +Wa̔WaU sw$6hy=zz q͢ۿ[/fΘkw@uU |Qr=}H5.}>l1_h򯛡Rq8 G~ IuD$BL%\XZ0S4RH> DADBji!aHiBbx"Ƙ:8U /OcaCaU+*G)z|890Q0a2 =??#?0|;FE5.o{5v6+OO> ׌nQ9K['s-qIߝ i wBÑx$#IIO$⠄© $JLB [\HqB'!MgZHER\/q bcQ"j5Ô+R22 i H)$1IQPBAZXBaPڢD'j{%H P1Q>-5 erc8y.a*l(k37A`Zb^glxz iS#=?g/71UPH,dO,('F%ªjHRA5B{t򂀌KPo+)}2)=exs۝;Hi31|D,'z~8Űutnq(9Zcp?$H@RPDI( !IDKؤZxQ=8Tj! A<9 )CNqcLEcR4$IEH$A aIi`RG)G}졇eԇ i RG!=aH}r9241"E1Ho@!IILRPK ]V@  ~A(. B!)B0qhcq,Xα1 HC xM(!_j  P_ gʫh"yRW2? qb±MM,X1Ƙ=?rNWgtCV^@J<"]›::!oPB>Y^l`D\$> wwN24O;19q,b1HZ"=$IQK_PM`Sd4ON?}Gq !Qc81$Υ & JGΧN0!@1ylTÏ4iAjcr(a18q,b18 BBNBHK@< |oi#HA9ڴ!XıQSf?~|\Bq_>qqc2ByI1|ql\.?Ņ=˜ՕPTpɁ}{\*/〤>"i Iȧ/( JyF@9OQcr++B! A DBccǢ=ٻaͪ,z~'0ydX\K**O>x (͈?Ǐ:XbF%55ٯ¼s`0wdzῗ.;1&ɷG$Hc=(s'/GƥiA:c)!B1ƱcF@0p‘ZF!ZW Fhljhc㷏]/Ã{}mx߿-7>mjK/nG::b>ѪU%GU_|uظa=Ab(?[6oidqD$S%syIէ|8jA}8 1"E\j Ep"꠮^*x ~#06i$0~$xy^|3hÏ]mZ/,˃&p:9G:775A0|Xl:y>Z>ݸAV(3&0-_!ƒçl4^_0%|.ƘY?\ OpZE~y(~pqWOVucQ" E8MdZZ[5nڑ5?}Sxp?τ?k?>_S°CqۃִWiVW,:z(X[! "x d^ W}VpǬ-{9͌䨮@E(ڻGw-Z4crZ&yUr'Ɠˎ#b!Sc"!577CKKb|/9?dǼ?1n{Кp^0':cQ^H$%âE@(UkিeS\XU݌mfch[o¶[`a];w04chk9E&Jr֤S YA~9qHʰdrKJ0QGq !cicDE;:g?ipTWvǻ&50UkRۘ hd06 6;'  1-ZZڻՋZ$.jR^u T.^hcEs>w}I[Ps=4,q a:ز~5-auX5JE.]( 4^@cGq2J3rօg^Fѩ~<"VlΜV|wFYZj*+-AmU7> u\ 8t?&#,fR؍^P>G莆 $ iLO:&n3sPs""D^,"YtQ?^4HEɒ zXؼj~Vou*D\GkTXkY +MBX] v-a"^GEqhϟĉ|7o+0X{ x-^O1\ O-ۆ4q8vY#r va:ZD0y=8τvqQhG;>;_b̟NePge"1 Ju}L<=zG yڻ^cͻl(au+W noBT9⟞8y3ntC!6KAO"ɢ[*PDl.,꬈D):T5*MkhU *Uݻ+,Z"4/ qOERD[1CBm3akzQxv={dhH,̸$#^={MM0(++CqQt:tttpKxm|.;LCɑQv<ܡkJ|F,}x>"V_{{;ux,;2!zRQZ\$Pyi D0rYEO'B ssĽIpy\SA6ސYwêHiәpVxIZX[ I3~ 9P24˟ A H.͈~ܕ ?$ Ea 3Q,$|W\CU_ZTY5YTfxFmDu_3ZE> ӎznt:kQp'y [瓻б7~ ZE"?.^`pY?EՕK+CG5ވ|eE̠"!x3ݨdKBloDÎu|v.{LOE2Ur;ǹ ".D"N:iHN}wBa؎g&?<~?([irՆ5t1ԷORּ#f `_[">\t_4w P߀:" 5# :32 HGEm'~eFdQL(k4*a(!#zl^fOegfѓ."*Qe6 OE_ǣ,赅EEXjyeBh V-4RXjiOD");)I,6 4 N$nA$H)Ŭ刢P_+_"a"v݋n)wD3Ȣ_-'`S,ڶlrlaGX$ёV[oGŚwkfKWK^_<<ASn8P9(Z67xg !B"e]$~cihxzHCSdQIHY׍ԆN䨳Y$GqQ$j)8FyD>EՅ8H N7d݆MVXNʢ\  t}7ߏT̂йiC'  H, z&(h$"!Ϙ  وgcAih[18m&$8z7 c}r$OG[G/ƖY/~30 #dHNN?R,p={ۑ^ {m^ 4m2 mS<3-EmGmpKsL.m=//G<-nr ě X7Jaě$6&!xF,Ɏ/ d5)yuԿnUo![an,{ݨY54y׉q_*96#x*YEGG* 2kyqPD무 \KN[(s9#ʉsg7KOAvn10Ap"HAɢ R,RDyY*)(زׄx_H8FI:-Z4y'qUzw(4>q.Eky,6h>_33غS`Gc?c~cʼh?YVnڎs#OR!!r䣸HR4ejQ# <AAA$H](N)DTiRЂuWW"zzlVg[,3D:>8ˈTEÈXioTg^8ZC\pa$$PFzrs\q9#D?+3CYÅRט㻼    Z,B*---bf놵_EQܞF<X"kװvkkZ־c룚_{Gr0Y\)QFpdĸc*a~v   dɢ 7%( %f;օ½cE%0y\ #`X6F?4H%eoE9۱.q|~fzOGRHEEDhm>ʿEAAAAd?^`06pTbv:Ǝ]ةYn-s Fq8ۉ10wu8\0UwQ\O[}VUg rl096&`rF(眃f4yFs{YfJ͌ij~%u^W[[wm_ """"""E *D`ʲ~_\%aX 6~ 1~e2^_g~ڰo։mwKLl2a_T.~-kkw13hՂj"$D6""""""E #"""""""bXİa"""""""""E 1,j렑B]_ EuQח:٠+x"E-:-t r|)kݷDDDDD=B\_~ t4ԯDDİa.o1U/G^XODDDD#G;H"EMx>ւFA|/f'QbXsOE?`DDD1(4ԙÜFmmbx$Llӭu,q)?uX3""bXİу*.ħO,xv͋C+y#|Z6S6#] Dz'Q^+OA2 z˻+ :g2`][ݷghsj,q)?=`XDDD ^X\ H|JP6y z/*jm4LS`ڔɘ6y%i3msũ[1s-Ξ9wZ,cװ1,ҥbFpn)[l7ƲF=\6GRCSW}BFY-s:F3}[qޙn Ǽ}0I'l tΚ}-f1ڸz'Q) Sw#Fu!.m߀"q"""?ylgv>ٳguœG}ߋϞ=Ű!62hbXDDD kX$oeO/$݂u鱰{K>\ CQ\"cE`ojvDӧO0g֛/<:6eb"ϙc y3c-gF;De,EDDİ_EZЦ,]EЧò!pl`cc2 b;ǁ}ވC2 ]E3a6Ӄ!Ym=wKDDDӏߋظc0.>cŝAΌ%vzi{x2"""bX"{ʫ< 'Fic.ֆ`\(4(a\tlwRuV#2xڿї_|_~ 3;Q;=6_|c8}oyM{)ӏdXDDD G*.OOx6+lhhU i[FEM]!8Xǽ}tX Ko2 tba D0GߊuN%;#""1,jգ,an36bִjPmB<A<1Bqa-{EqXu7D>VOgcfen港=c9.HWxD-ih爈>zӟxPO"""bXİ衩Eeq=y$^EDDDD$;񈈈2,bXDDDDD a3kb="""bX;"EDDDDD a""""""EDDİa"""bXİa1,a6QЎ#kmUDDDDDKaѽH'E a"EDDDDİaâ^DDDDD aâ_~:EO?OI㑦WÀӋ? b.}i'#""/ QX$FH 9X- h&+^Ҽ- ?"""bXDDDİa_0Ņa:aHQwg 9"""EDDD VVZmSvn /1Xw;g"zXwoE%m=¨1 KL/Wha07 v4<c=c;iz ˏLd}אtP"u6HܱA F@<S2{x3j8e.r`h3ADDD 1,JS)4ҝ{0b^@Z31\Di3Fi[/؏zpx7h[m#:c/Ҫhj٥aX]}1uhy\j C2#!jm NAη۟q؃:5Z ;{QżXJk4PY|$"""EDDD Z{ 3#g㚢EqPdnkoD8\d\ 4@w Jp1|c9$e1t0LĻϻZa0E ~ƒV<׆ʢ|<}w[~ۘ8ivcaYXT4Z՜@h7JZJwbGgZ`](;5_w,:,Z&p ۻ1_reMߧv5f-jBDӈu!"""םS\xDDD"`Xo"Of`< 2`/&MEcu w7"΢SES}:GԺ,עlh؅; hnԠ!Xk#(6²c-윇@_nm|ѮÉ%A0;luX67u"B<r(;3½.Ƌ-WkjcDDDİa"""""bXDDDİaa"x#YZoƝEqPk4/# |W\×@kZ`Cd 5'0.|!4R|XN, e]Sv [&axgtp`Ӧ8 ie=ovN&BT)|EDDD 1,r-e;Fc Ev,K' Ii,5L z&%ah2b'cL J7۝W>m!1CcHD{N˺aQυE ~6ELż/EO=ۘ(bUyp4,E8FK/ڭp,%:XM%;wkM:gkrge]΢bp:K0|mI˫rbHa񈈈1,bXd;0@~vFN]aFb(z諒qtܽyodi`KÑZ yl;T@Q EE] 9*cۤBPM߇L>:Y:!,RaAH4h\ǭJp=F W 2m䨭!"""EDDD=1,bX$ /2XI\2 Dz{0wGco"VԯEQ1²C vC=[/|0ҪŇK)?/9"|dEI1HЙ>I0#-r6_Aqaѿ4,bXEDݨxL"E͸ފ| {JNq胥pmr\81;FGۃlfӪ-5 >a;FM"Kw$.;uq"cTDkD~3m^uhogN̑qhPsv MU0G~|l)0HXzeZP 0!2W n` [:CCyC> W@U1o1,bXDDDDD 8nXB1eDN U۳>0j jl黑R>g"bh" ߍDH.7m+Ņ됯mJ EдȬQX k2{xF̚s(oP "ny+(=1Q[GEc7,š3 !qpFuӨBř9m`HATE2Hρژ ݰHݣ3A NLQm⁄=Eh|ޯQ!䎈I!jh-"bXİ@DDDİHc6*Tt,19jTu53UY1Wb ERƅ/D*daMx4vk4X%64oǨeHFBH?'a Ed؜"|X3\q+Pi!X+բ,<(vƸ1,bXDDDDD :,'0!h2.nG}R17 'j=nch"x4X1b۠ܖ؟65L ucEc΢[C$;49?mcMwgW8u2i.6ǷƋE Hm91e&-_[/&bXİp>1#6&5 FC&.p\k{ g,Rwu'Rk~[XdN8I|쿳H627,FjhE,Z΢lwĉJs_P qrm% 7p?_ "Ed7΅^Ņ &dy6ydޘ~Fz%F#lN$hPA{{/C򿿳`c$4KQ!Y΢!jkS:ZD6"GsTbAp4童cr<ǟDE>2S< ⿿l;<7TEWPBpx tE,?C"d(RhѤ@0md)h=#\6l:UKaTI9l˵44bXİH!2l@YֽZ""""EDΗqб\{C㖼cL_s |g`q7OC+ƹ pۓr1FZڏa95Yil@ޖ |Ex`H΢8Հ&'? mp]|9>3Gu=}1j2V g y͖t?9qg81,¢bޓ¢_ //;?]rDX|z/c),ס=17~ꁰaw[pyx>Z /ML Er*'E ^H\z*y󀻏i}Xb* ȹ -1t~-3"77DM݈ZE!+E46QF 48n' sw@m1].ov݇a=nKҢF5 ^2 356"""zNq)C{b<"""o fXԀ5*x.xM:tΆE2;Z,DFE5H=#wB'ړ0g[F>4Z4)p흑uJ㰨E~GXe16M$E`cg>Qw#4y5P[!Oi [F"d.TšX,Ұ88k@B[v֯Da"E ƞbXyj'"/׾7 t<'!&l`EKS6#Lrjhg>A Ej-Xڛ>¸Vj/#B.:"""bXDDDE )najPnwj Ap.,'nbX2. {h*q~B FMD؄Ө7884p4di1oi`݌Q:C'`r4:{N,.1,"""bXİT,AJX\[ڛ+??ߙ`LCTj*4 h9;cJ*!s .=IH/}gQF2URDDDG0,"""E ΢U!,QP;VA'H_L}r;8:/R((.wty@xLsjc`FysR 8UhE#4e]DFwm;pF ػ|)L iX|'k@ՕՈ vh1,"""bXE?0,ꤥ AZVec)?/>B ]>,/ C`]aQ`O EwS`wL*`}LňنZ} nAywihEdD'4*1 S=[ 56Zh͗d&DDDİaâWFѱ݃ ]w"j6`ԪU*^{e8Gİakkx N7%""""E$nmn3~םua-9"E ^S_ |?""""bXD: z#O=QQQQֲ#bXİa9PWU /;>c2B1v>sWGQQ^!=5ɰVTXoRlG1,bX$܈{m(/ãb*"""""qYnY~@ܑ_;~{oW_o}=)'P!+e`kPe>c>NRˍg1=t۶nے&ÿ<,bXDDDDDİ RWqS LAhA@T'`V'1o>NR˄w0y_ʹ??OTZ+0yG-ôݥXIOW),bXDDDDDİa}㔢||w,!Ϧ_~1xqt="L({"W ?bHX"98]zGt ےb{N9wqOoע議1,"""""bXİovJAAN怒!n?cP W &(o=bz@֎Ă6|iJUw"6e " 5}/jzyϦ:?}xAWc)-O`z+HO?C4;[MEİa/ĘnpN@B{)n`b3""""E KC"KP?OHD"wǜ~x7:¢@SXf;5z< 90]T=>3"}=|0=|1vɇ~9}V]qXԼݗ;b4>5/ޏmP>8a{[o"QC],"nfx{_"mF(_oזDLƽ/ѝoawxxasP?u_ky ox#pb{oD{a1,bXFͅ0gbXx>N*k#)M%> )pH,t@ս1,/c,AQDG~WӏOCV'_߅?)Ek1w^@lq} ƇD zM}5kM6⫯>Eq5L1jm1ENbW%h/l?~5-***B^n.Ґ?/c?.ꨱ l<Ĩy,?BEc|RSsJA!t)7>OP~lAߣ?GİaښP^GŨ&u5b&`Ǖ<( P]Ñ+ _%&& I.KQ;C]o;P{ן: %R4_Sr#RI!)?O r͡PѽEẻy i^Xjlǖ~_6^Ĩ~.YxISև;&>mEh,-l}%7Ez.1ϳ~}S;t[!oСN'>ǿ?#2oND]: zEXZ~QPQU[*LQ$n鑰aɈ{M(/"EJ\)$mhnGK)gFQ]~cl0Gr4;݅#x% YFR\~g ba0YEc{swq8cPܺI2Üwҋ6c[KS}j#1hRڭ։7;l0G`"S=ZJ? geF$]惨)z-]؎ϱQw9 ^2 NJCH}P֣0HMi?uJNvx?` lDi!8nOD]ʃ\GÛCus h3Ek*ƭAfĔT̉Lm ֎~ľ&MGԩ7jƿa4-04"W I-hAI[='+ ]+#qQb|RT>x^ iԯ-SCaϗs?G״7XXİɈ¢fE )X6'b9W"pnU6@WS}:.o@ZFU9v& pNiܑ?c2m'ɡ©EXtKFVuq<#4i;JLpnZ(Йha}mGZgowK<8QҡcqqZ*5B\7/Aw48g((?ɃR[l}DDD$E:j%RϞ:%'+^f-usH__ñ۳;s 8]x/f Nk792p}B(ڈӮy"uZN| ʞIop[5nщ@O=۰d뱟pgZ0_3h< oTohix` ֢/zsD}S[S#~"E4IJ t Be`+F-AR bqBcioH X=*"!l}cpTWN?eVEaWF^|g0DOZ h28 amz.?"1-q ! +B-Gc1,}S3,)( ,Xm?#sݖA|C4]Q3ǨB/ [ބ'Ty G֮Fto?ň0ĸ3NX6'colъݷ۱+{LvKf<[ 7"6`*>Ph3ፀ(l.ng-Yteƻxl,y9ek6=|G xg&&]Ƅ {wHMEO;Ydz8YOAР!i'c ays,L=G!|`O;`>v7 W5\""""E >})ig]EO<\.N'{nĔ mA5yէZdXA^(x|?b}°ݼz |pX~Wi xH_7gy= 9.76avPxoLрG0E _[~5wvGqlfgΑ@ +qab.G`ﮓnE ő3aK8+؎e;\ Ze]cqTwm;XFMU`'V "htgVADDD ?pJfZ]E"\WWg^gE듬e ~/Q^mZbZrל4>aQg "-T)0 CVBYt]!ةj* "be 4,: ӶVa-Zcϲ%Ȳ}7XS Mn~/Gcw#,`+ uj54qdܽ_|gߌ}Ȩn:f!jMu=?d, s ҔƱ!S hq/Sr\ͩN+GťU 1,>=}t)i_eX$ghp04O_ݰؙw 79 }vj;)&-rה)Ai 5pE YAs1;f8]e2f@hoRdآ8?)}|o0^zvM9nmpqotl$:cIY pu*c%ǵAM,9^2a֝oGOC6 V=>Ϭ¤ O0 ߎQCD{ z8Ǻz~ü.1.h끈u9,jib=iɷgϟ9ǹDP9,'ϜF{K$<?pqS|3QQ^ƏClю7۱uӍff-6;L_w'?{/asD}a"QFQ^S??u;lJ{mb>BOHMuZIƻcr6M}^mbORZNw?8GİaQk-M(+{hk{ן:'u5u*n߸|7VSn^&"ZsD}@1,rt% ajT!u|tuua-9"E GDDDDİJ^BfeDD=D]X˾saâ"Y:'ZsD }F),jC^ӛu5xDDDM honDY~.mCNӫuס=1Qk+1,"""""bXDDD ]Ä$ձDDDİ鰨ŨG=&^s& !chf=59ږОр1,9y1wM@`(T2,""""EDDԷ{0,bXC[e9RX*&ERe0>pHL_2!2{cC(DvUhHَ~xcw2T_%sO, Ŵ5=DDD$E9:-npDzQst뇈H HXİ),joCVQdmDzQ^= J+C8eR)S|2*v5 T]ãttaՙ( P]ǑˑYg==hE=~c$OpT C߻6Zwm}VE`Kj V۾לD$E1,bX0,Yd9 [2\S"4 >ڼ- ]lb|4!~;O`z؏16~QwB6"\0C0}FىZ,l59 ޡ64n_iػm 1q FVIL eNycp~흭 [wEa͈cۿf}l{?g"bXİcX$#1p"źzw9lƿyKBG`;AԣrCFqDDDİwZ;s!pȬKw`ףL݁Zh*qraސ:n@ĭUdjM]簯eAs!zE)RvE@*<5H_[rnAt T;w٫C4S'%;;/_@İaxKxs~{?"۵e92NEP;(hj"S?rho/"V܁Rj|]I, [nCmwb6\*FU +4z]NaQ]Y&7PLݝ kz!bXİ{SZ6Pm-0hH\wOq5oz$,bXӢр<),R+{eH 5W̟pU"""bXİ[iQ=*ά̈!rlHBc/@c/'k#/'"""bXİHZ~1ryJ.mplH_Y"E* p:z*' t)TW{l#hx]Y؟Z0 _? C0x0i5 Mgc;ܽ:8Cy[вVQ kd. ePb畈"EߠIFk^ ]3H-, k">tkM՗0S?K9{\Tm}lm(Vmj^4Blí*+RqbA\\e9^V گl_vN[+(+Og^QEU^ 5&H\wJaGǭ*-…'q||N~xT߿___3'QUV45=1,jԩ"EښE@T_x\Z_y]-ĀYݩ]r:]Y ԥ`MxvYڵG06l>#p빉mlHz휘w]cOYT e=),ס=5fuy .=בFDD}ĝ[q)TWԿ=1,Ҫb¢fU H-,űk bL\WHUv몮`h2]ڶzN!89ݜJ{zj,†'h<֟*ڙZW,#"">^=6W hDDGYi)Hvh+"E,'xZz9;&D#`'`6"Fz炞z~֔5(>R"""(5UDD}-~lX7a) Q&> |ðv%tb]59j)SZN9TjTŋV;E1[Xd+.J-GD;aQ7d$A-g}""[gXİE5OGLSPYD{12/ǏxY)qm,{ QS,(ΆEvYx3oe5rĴP6S[aEFp7Jâ%g#E;9`XİH),R&""""NaƔ¢:XU]x,47}t^EݡmGaN*md.n2<\S*sv8?UXR1^^{+C2h{{l<}Rlw*ۯHm:),a";a=vCﺶZȋqy< ɕjQM\WbaQy^!,ܬaâ>Ms&!zQ#ZK?(x]Yؗ< +?NS#b *s]ﰸqp;W_|u(?'PtP3;9qXz J/uvW:Kϳu󽣻{aQij|FFJrq:WNq)C{f̎HU_˺JJT#hOيP!_pu Ҷ^2ރ;vum!# z+ EU9v]@umUY&3?AV|J #0jIr9OAPĻȫsb.ޥmc͊솄8j(_Ų #.dRk.8Y!=e]oJAS\k3y"V܆NlqoaA`V@m}eHr~.}3?vR՛â:F-"E")⏰d Z:i5Ҷ#QQ][vqХ$ƇEj/喾 8--c-g]{wAŁ=ܶ [zl?a|5qm8Ig,z$aYh$vdX)EȨ-aZ}- ]gQPe.}ݟgOz8,1,"""""wU^p4dd%^ vz^߆A>ԷJ/;=y~c&~1c:ܩ]މ!=ܝE2iݨ6 %4)'yOǕrLcqDX5u$†'h<֝̇G";K,1,aQM2Vny<$K'%"P\zߝ0 cFgOx=}qb17oc;u( 'Q\&ƸQaamf(+ǐ;;JIC5,Exxf l[qX&Bץ?fn)E} ,F F-JrpIܶ٫uס=5fvmkaYWyQƼlc6y$BlR(啨H9"xVo 2ӥ84^e\c  ½wѨUuj"$0oLjvsCOCMɕ*YuĮ91;P$2^?/H]);pʒk;y—݄h~nb-VlW'(-U3;z8]EE]-uj|u;yvn~z9Fa";~5jPr- we.DDDD,E&B\&=ȩxT#LYab+Xq3b#({G{[+>yS?~{m}QY۱=< oƇaʑ8{ ˙T"cIFcXjE[ F#Cw_$,؋)p:,rV9SC;>~R:Z|;ao_AyfGjq546˃0y3y"B3wTĂX˯;_'u6Aw#Ԯ)ފ:[-k` V@M]-r/KZ މDDDD a"eQ<,@=T1-|Εv^ vX,3iJO#7:- ϷYՖGTƆ.D3VGagvu! j(ʫocYhgUY5d>lOg09p w|N7֊6cޮ3H/rH\wJaQ)w.LMy&0T$@ ŋԮ"r*ޭUR/R-K)#D.r! $Pݩ`GLٜCb1 qܔ͜?ΙoB W9fiE?SE,0AΩ8L"`vjM}hBuYa뽨ZV$r5B v,"S߿ ~m=ILC踎Ss%ĹKJB!qW B!-(7 }>v(JݍFFMV!\VBDzR(%5']Į0eZ6nLcjoECO8$e~8C.x.6)ܤF dG"bؚV.8׏, 9{fiU8U-Qe~B!a,,?%|a΅^YķA^+B!"94R5_1 P>HY)Y3f|aAM{ 3 !B!s)>FB1 Pfqn#~YDYD!Be0 CYDYB!"a=O19<ϗ0﴿V!B;O94R5wG,b,\}`E?G,,"B!a,,"B!a,,j!Be0 CYDYg&$Y94c؛֩7ه_Cnb,bU^ B!S|C#U3e0 ej BYe(o!! N"CTi8:׫zLޛC]1'x)[(!BY0 PQeQR*vր,{؟ =nE qvm2!XB!E 0 ee">uȢgsLGey!vNIX1j\-ϫu8_yXoۉ[]h=[Li?;8jqP*wm-ظq+v3q寇[2!?/?ns>/Ezd}"!lX%^+- ׎e pI, GWRɾclnXd%@cVܫ\ qB3lWGzVkn+T ؜7: 9B!E^<ˢՌ~Y0 CY'}&'ZE~̄#TqQq O>/FmU}OݡHӝư1H*#͸^إ&<>:ls.MGFi_H=|cfeˈt^Ciq0 vL=5i긄1hVfb7݄#ŊYS?NOl_>4Ρe#;S^yз5Tf0O$NByCP1 0EEHȉgOH ^ `MxƬ+I9;bwQ{){D- _֚E fϾ!Nedw=C6{ODݐdnGv=.^9=kl=50@:J 0=(Aޛ~{h$сJMk#m8գ0 \R_BY+e;b5w?jY0 CYpU#IYDY & Fvu+CEh5q{S}2E :({Q˯%X05/!" AFQiP8+|ey$)c<}JG5B[ZcTg#cK6k !̄{OD!6(a"ʢ\N,yeяvсWZ]FI}(1Rr0a{yܬ3䪽+kiqysfQٳo@.YBW7t|c 25aBv5שH/0n4a.5%}qlv`H{FI[B!G,C#Usa&ew|UEE)-Y*'=l {/6h`ЄO%A S@]|c&8ƚI6LK0XE400;ndj251?VQ3XUw{`Y 7uqL&2lcwTǴN}O94t!1M9t#蒯G!7 e0 CYDY4nL yd"v!:Jɀ1Kd)Pm:/hV"T »S-/no;Kcdo3l R6A!I"}Z_y\NԕfMjUz Ak`rӈ}%C҇H2Aa rA6bJkU% fnv۸8_{zqc$n$JMΐRRl!UձM48Xԉ$$Xd,dr'm*;3C~^~6:O=IF@9eEX( E߾f,$cXO_C{o,@d,2u-I2z,V1VcQz_C+g$cQ{>Xd,*qz8mV1VwgzwE5g$cQ{cX!EЪ(әƢN$Xtd0?Xd,c$Xd,c$Xd,c$Xd,cQ$c(EshU=wh3z,$cQ;Xqi,2.c}eL}hUzw~\g$cQ{ }E`,$E`,$E`,$E`,$E`,bd,2mEf1ykHL5IXT8}_ Z{b8"zG-Ef,5E?>IOڧ{*Q$E󫋸V1xqQ?0_q[;X$I?`"cѷ {|~xe^ Yo: Mc$Xd,zm,J҅[-nnvUzgE(X$I20IE"0IE"X_sa $!eATmKEA,dgIz(oV=lc"hς;*INb#UȒvɒd~g")ZpA4d9%Q +>\t2a1YD ,"H$Edz~F ;}ɱ &a'J6¤r=*QnI%4voB1<º1% n%FthDb%{afQKMA w{ٸx]Ÿ:,IAҾ{Л[{ݓo_3Œl(ƜPaEf4<ŕH Exx U`p㢵|M8 agヺ~8'|}.!}k8"cd8zs^uؐYDAYD"HE54#?G_2{x=jX | /c#!)An9qWMAƇ5tM8$vct3c6]doKǗ9 ٫hYi >y[{B^^zܦ aA~* #1Ґrf󟟷)k#=oG?ۅ9~&|+y2cyd;DyѼkc1)#*v P f9cӽ($BYM034 j.B? l," ,"H"2ƇMhYmsS C#@(킕'c&fA16zڍ`G{ Kr`ę{ĽsDo =[*]sy_{0>  dJBs4 5zPcD⪻0;>Վ"qzߌ7`Oqhg9c~Pz[ŎϹ6UBJ:nf{^YDAYD"HEdMX?F^.4}C}ɢh7C>30ݟ˰>f*GFR :M쵼ͧ;!ɿ k(Pex5)o"s;&M-8[ cYOF-LD~<*chAVXj%"mV յGvϽ1p=yXnHvyLۨ|n[8'E|iS=Ǔ^*piR#VZM,;ӉkgeCfAD D"HdY4iPe،*<}G":+fjQq vaxѣj ٩fX{`bU@ȈKGB/kX > q~%Z+t]N\KۆFaU6!ٟ{#+2 -DSF 0}+'ȓV>O=ʄaLY`cm-EJeRksc8Ṵ7Ds_Z^rjfmodI8_}ډo\9O~VκzKkI'!שŔ t2Ϙ,EA"D"YDf?'r<@ *xjr=c3@YwBD ]_`mzt_ʁ$=qy&uP{l'īVα^݃Z^a!aKBs׮ǔkpn<8Yt"8I36.6 [{ Jĝ(;=o{ ͗cwb"z~'l<ϾSOg0&,VFb2jiqW1}OďVO/\~?ٖT-ZMϵi¢hIaaK̢KUjRót͏)A-u9zu5cqܞxJ_x k:>Wr+pT*w9T2U↥(GPqS ǢP_wt,p"== Vt[ܶ5#rյ}%:7M ^,WT \#լ2䝔ȈWoԓ-om~vlj{eڼaHze^[ꒋ]h]uZE@XDX3Cxo+ev9zpL=Ub>XOW8aQ2_:Sp\v^r;}z`Uzxz~ӬO7Me&T+uJN]oY-R+Rwh\Cpus^r*P|q+aPJ6>[~|RW+oTJy~9fֹ&E2""",huls"^3rX_?03zh]sK[wk Zk2E@X3eOߦ,fzܑ3~'XD%Yv}(uxbu\ZIpWꍅ,/Usg׼/=/q˦ VZѵWk֠ 좤k}ߴfj6Sw[GkM&Rkn\ _(V钫5mRJjw7ʞ>4̢k5ƥ~ g%}¢$N[Ӧ.Sqj%TsW\9ˋ:T|~x56/q維ϴgv>|HԞۭu;n9Z[ݑZn6aѤ<9.M7?o;4ҙBj)MWA}@#QRz#iWIVZNj8ݹ}4כE ""s/ymvo`_׷ԜoSQKZӦNJmv)[y^Gu{d@G]OX|Ԩ'/M~;2ewX5*,6 g:qj/u$, t|kGwբ\夭QzZ*VqӼμȒX)JZ:_yk#2UUowP-5O73TPZpl}c̶ U[яå|:_SM4 /nخ.Grj"{^JA+/Q]="""կ`p@[OXt:@XDX-TXը`(6˰B.U5喽ȦJM{ Q1}bי׶5.W5ƞCMeHfT jow:+SзUP{}SE9Ԍ]g^gd[3.&;KM ׫0XbUv3lij_zƱ/|>S+RvM`vDF q\yeRUV3ܢ4i}Nۃj*[ٹ EօV lji(#Gp=v]5cloɖ&bL[#Vʳ ߼o)Pj;>_IcG|̢c9XB[{DDDu04Ե*U{EE9HKѦCXtJ ,2kxaѩ v o1JT+o0:TeV}-# e6Ya;_lj/̰^U<-KM-V[bn9rU싮gn^|ŭ[jUvnArm*np#f(6ǏF#vk@ E갈#V*Kdw:xw2KY 6ҕUP!oWm-Mj(HSNYLS i*nT8i5(ͺ7MHsu(G-fM<>9+K0m^2SP.׭GawKWōjgЭ\eg<ݼ6,*k,HSn]S31jTz)W~F>+ƥvq (k˦mKX4,jk}t"¢7Fe*˵)Vbݞoi8K٩V `e=Piv#32T^Yl}&<2!ׁK_XQ6+󕟑"[Zef媦icƚ1|t,Wm{Fg(S#״!"""Owlݢ۶ixڎNmh;OmhEa4%Oy_Wk␽\jTp'"""bk܎ mE۶(s &pX.AA-Ns9"64¢N+7;C65ΘEDDDĮ0L4כEmh),2쪯Uzjga,7 dɒ%K,YdybːߧԷVKsi7 ݆vTEEAKMՕL]N˗-z\WKsIX$,gSE#wcjJT3&EE@X4Aâ!W>&C1!aM䋈HXEEEpâEEKDDDD$,""DDDDD" ,",BDDDD$,""DDDDD" ,","""""aI5Tj/j+/W^2 ,Ydɒ%K,YKZukhEj5תS[n""""bCM՘-+WfZ9 h"EiZ?4I,""""v}^cԶVOUH#,¢f,Q*/њ7W*73cm>$,¢%jkLP4bS]M[h;a),8X~Jgad fswn[.eg)ej" ,",(Ӗ];wʚQTR];+#-EE@XDX%,1M4Aш>K{#w aaLhWA'3B-^ aa`vNc?XY(!&nH̢uݧ3hǿٛ\_x>Ǭբk۟?_Wj_}۱Y4mE_ v&,Eb͸MTh,oϵ}<]}>mP xfc֯,"¢Ot{_/\7OEϴy`җޮk.9O{er[fJE/WH?l]:~S_Kou]J{Z tSȇ~-]pE?˾ fU$YG{+o_֬ 0wяU,J3_hߑ ?g??ξPWr8wod1CޟN݅zs)gWRiLFE%n#,¢٫›-˶P-a$j:=Iqԣk>Uo-4J[.?]X:wS_|wuMBg5)T6@@\?O Id~/VnTo^7|f՚0]LP>=0v>Fڕs.`7}[97#ez8}/?*՜G=9v}AOY=Gv.ßkJ<&0iâ%,¢I}qPt*5 } =̽Oٺaf}OwXCnR=_n@m\G9 bD>"FxѾ5oiuf]LXfP\s<~#J7,S l?ZaKro,Vю-Qcƺ NV7^rR}g|ck%1&@X+a}i[tYE_3uw{tM$_Aܤ@{u-R?8a{rusu> 3uO\{ >Etmz|}7ݦwU xh6>VOgW++_c^n}V3O[~1>@U~ֶuc7Im$֡c7,j = j hEGFnϡ4gayg#u3nSˁob#&m~k]֯:̚6vou 3t;v}pt/ݢEo#zl$jzq*nxȩ\+oiu/Fxʽ}~цt#ZGn-qw[~1~4r$@Kl;G3/3&}ҬgLM9zkW'ǖeKK'&Ҷ7T]Vv" ,4a7+x }8wuW;~>zL{e=돲H܇[tP>\GUw4w2|%٭?vEW=vs}uVkVGF~'-seT }U+\i?u_jOtO:8om#G[B.>_-qcy&Q?k++;gisóyo`Glc0,*/ʳBvYViו Fo*5+3O&MXF=}rʅSp^_k_K9C\Z&eX i+/LC͕JOYeիahP*z]oE" ,$a' Wsx`\E~FY)o87C~ 2шݝ ܪ*WQM+^~au Ue?3,zTjE%yYj nGmaYj͊W h[,T#gk@mݢ^aaL氨0W>gK &IX4VOH'[ ,2חE@X4âR o,7,7;T_^JXE9,r7+qjǶ-¢娭aE@XDXdqsQ]!GMOHsi٭NmXTEE'_DDDDD" ,",BDDDD$,""DDDDD" ,","""""a %,""DDDDD" ,",BDDDD$,""DDD z\r7qbL a!""ND_n-my{vjkK[7o2dƋ1d{BXEEHC~SwMCڴ~Gь]f̸1I' Uzgzm8CIaOΦz9EoCC=f͛fN˜daa""0PQNuuIYWS7V?۶(?7l{ںs63nfNʘ׾^b[kȲ-lk8'E@XDX8aUm[[4ߝy9Y{w٥{w[ݽS;j{s 櫴hB&tЌ73~'eLR׾=v[xo2L''\X3)RXA{bDfNmM r&`J~U*ISFjr i# N+/+ }q Z&,2ۚ> t44G9*DvoP}"QqfBݣ,mo)mmmT{RtS;~ a!""Nh#)Wxd^];eo,7 /a@3 Ufd>jǍIE'T_03FXwn,ͶwȕoSQSm ר;6N3sL~uɩPkױc̳)fw aD!""u%}@f -AHX7Mf*/A*v(U\i޷TB姛2i*,WkGLN;^PRP6^WUvNiO$â 6dB63CkD>m[4m۲lk|wfd66U_5̣Jw ǎmW& >'h{gsJӔF9n;grY!N=e^Rߵ.O KUaw vmFXDXx¢ގpRR$ؿg̬=;[ݵZn{m- <]{ݑ[Ǿv[* YSAVmNQVaC. mʫt>pMr F5e(̥og*iikQ.G9jk73ɰ(zV\7P7Mڼq>sm*lP P.-VUY)ݫtUz#wykUq>D}f^utYYPkZNeߚ`}u>_ s*6+YG?$,""DD u/?g~RڳkܴaP}R_Oz;٦?ݵg>n}IEj1vgiW*?DfUge1=X¬"ꟑ%W0SQG'gaQ~iz5m@YmMuMj,U^zl*('j8:^6f+QVOB J41&܏9o.UeT^ߤ`Яga($Jˑ/|ܶ \ROBԩ->N1HXEE:,j $s<%zu_Ozrc}:qlo@ZШ {}#ڽ*RK0>P⋶o¦@u }L[u*܅6:TvaZq9WA{r2 &: 'Zr6s3KŶ; qBEmAoRfeج𧾶zĆ]4o\CbT8^tU9ݲiiPaeTר45)l2Sj45R#\ByV+pD]" g|ͯYvu{dym-ղGLoTyQ8RVv]e6UZ!Gaom};!g3rUٮ̜d9krZ7YaQZ#+iK]aa""ZJO 5Q==2[A#KbB$%q*a!""NȰ(7#M]l'¼,+0FߏɴM-N3nfNʘk*l#z)3=Մrq~k4ۙ@)qm" ,",BDDN+7;C6NલBYe)0FߏG,-@W[@ooRn͌dt҈'E@XDX8at*=ePC_ }l/3nK~OqT]5z|3Nf̸1I&@XѦruj""F$0r7֩D%y9E3>fx1\oNsiCeXEEmrV)q{t1q0',ߓB^j*?~" ,64&ԅEzQS@C}܆3,",23%OcUџ="""""VPiPOZ[<1,"¢ v[㨯6ZS}=jh?aAEF@Wh@I\g͓hdEcnRuqBE@XDX/:[ãf'SXEE80Qܻ{ר'D;GD" ,a^M'׈u@XE",q4Q[I}5""""^j`?kXEE>Z\vk_ vFDDDDlk#@wUjq6aaQ+{M:3\̜""""jZ Q[vw\E@XDX[w4QnY?_QG4ס1,"¢֐SsqҸF7\>OėύJ[ayԀNymM3Z'Z\wOs:" ,",moM] +mW@s.f-YQ.XBSв;֏/yWޣBP³u]O)AGrُ5zXIҕ7?̊?֌)r{AzvΥ[Z$g¦;߭p(TVx k>* ]qReGjj#)wjEDDD\߫ǖX~¾Վm[uO?L7 i}_ORkxV]rK~kڢ jԹ5~n@#3֫UΑP -|i%ϑS%`?^9ի}]pewﵦ[PZ8nDCKg/1#[LJO[5cMVDDDnk7 iOբ[nZ0_X wvlەT-:gܣswi",9,bf},2!JgĮKu~kuйg sQ/?gt]͇h'TJS.2|tYm3oC0>3;"""",huls"^3rX_?03zh]sK[wk Z&dX43\E$,rd736&ĵE;;~Ͳ~ DkhkXLkh0,2Zr-Z*[IF^_ܧxaKMwoה9N uzcv%QϞSoW吧"UrhklTCuōK ,?a"""m[giώ:|<=;[vlrbZ#6 YZfݎmV-" ,:"]FN.8\]2&=Z픆E+e{3&vt"-}Px4GySugj蚛ЊR0d9qr?.՜gYEZq9:iqܞ!"""wk]F:dךa!""""&tRE@XDXHXEEimHXE,BDDDD$,""DDDDD" ,",BDDDD$,""DDDDD" ,", z\4֜'s<5""""a𡧣M}t@>|CtdΗ9o\MDDD$,""3"C>S߳K&T;駟fΟ9c"""aLha) LmΛ9<2K[E@XDXhv87 ilj姟|b?scg>tHC}(3Q-DDD$,¢>,2&rl):ty'&3ϜYbzh7[8" ,",zgz`ƆEZ<'IQ\ɜYR}NV BWQ3I6p׌ V~]I@[knM@Z% 6.]>6q"xO.j8}S{K#%ZtxCGW;GAvΌ§0$K>hYo>=Ϥ.AhcCG`z49xnId^c=EEbtGOz j q`u B}k/f-܈\z4Y _x}e-z& e!BY0 PݷlOE;,F'2QԘ]]笕kmӆ} N Ǿvɺ Y6160,n89G b|%pPCr<9#/䠦фbgH5jn47oWQtO@!\y|+BSM1nӨ5_.~t7yBۿ7o_ >AC~կ zR?,4YՎaxT\ H,, F g R:eR셦t<Wia$o[vM3EBe0 sʢw,,pc,r)#'^:rz WaMyX DݹTDʢQb-X:{taE|e"C[яXqs0veFS&MI"}_Z8Y'/ p䅯{ ߜ{_kѸzoo11ZU=U?Zsez^D9]k=GyuA]VVŇa]E0>ܿB,ba((Nwq(3 Mu)8XAiX S`}DMfMG|zLV :{&DU0.m ft`Tb2[#>V Z DB,)jsR8z ~sƦ"چjw+ GDX`̢V)Y$+/-F#?0}g?#4Tsl, A sPSݿTaG4*TY"54B!_(a"ʢ67!})_#`LŢ_xS t:׭įÔX(5V QÎi*t׌Rtd+PicI=p?9h?`{,E4HhY]$>2sÍFKK=Вh, >CiYT/⤌F%>e+q~SWU "\bj!NxWbGc)^xE8a\W#<9$Pg㩵ϡLƲLlEr(!Aa,,o4ZxEws]7'b&N97!_|B\(a"ʢ 1dQׁPB!EWa((Zxf ǃKZ5rE4k%.U0w!B(aN((ĩ ;_+s++z])0 PQʢ-3!B,ba((!B,ba((!B,ba((!B,ba((!B,ba((!B,a蝡'+jbu{?zֽ$)fH^q \8(O ʌ2D!dNU$_z_uB +Nk:;,]8^⸶5UXiB#W586qn{0VMx$5;c6bl2rgN@T)YD *T~{,E^S(E2Rt ~;"LuL2jĠMJZd@"AR#19 gڰ}Do}_1Y$wu%6߈QJ"*TPB"Jp dq˛a+xdѡرG$+"ɺӇ1hZp)RG9Yl8`xރraM}md{ 4`-Fcem11E,ba }k=_9Y$NJ8c9T)YD *T(YD"(N ?)xz9P_~s<܋OyJdJe4~hk /IYGTPEM~M%aFE܍1=b*kՈbH)Y;6o$MvrQҁܤbPD"p f!Q F[Sx$ƶasӎ=2"5]#'?ډ#Z$(Pbs= b&٪cQG8m.=*ߥFČzeƧ|F$3r4G4(}cK?oQiXwCo}{\h|#W&H0[, ETFzMnC<l3ӷ*Q 5 6ه;10Ph#a~=f'"V@tb.ݝe%,`92?1ibw{'t}E%V9C7yH:p@TTOB~\u숨56py C7XJ @u2qeß- VDpbH[.7gZgC^Aۅ~;ua1=^)@*%PB[JQȵD5?{ ; ':v v|Iu*գ3 }9u.UK62&4 bxw})ǯabɇiF,:)`h3bF!t9]04#ٱА3w0gqb\˟ U}/Xqci}ܖ 8v0:~Ὼxa]:3@XcUl\x3bXrt:1ӵ /@ z/-{<ݲ_.d  }K6'{6|w+Ӻ(J+K Tr *TPE+fцi=ITANBaY;^Y!AKF?+1MdT`,< i4g";I'+gB;}Fzm]hB jM?^)-Q&mDuE{^_GMQ 2ὄ9^`y+a3_xׁY$"!`KY7nEU+ڂw>}pn}pϋ{fQJ"*TPB"JdW足+ѤŃ%nt< ǟE;k3M#I,"bm V:uB,PY$ 18O پ/̍v|;tcDͨ0Q`"J%];Ho$|e^rfQ.C7|0'1 g}y ""h1g z/B^R?H_O^d<@Yq1L 6YQ:'"E?pݺ6Z*UJQBʷ+,dc u?:ar`ڮәk3Xv};ڋqTR<$X~GZDi0f ĵvBMd>2S?,hSEe u1:gU;#ȔJy0YN FEN#&[ӡ17 5㨯 O' pXpR u8IkVLN 6W8kKN ǡ5fBM| Nƻ-ýR7v%QQ2(:ނ9x j_c6/: jn V >Yl8`ֲxkOWF^ 12Emo;hvI~(WFXw,Es&ÿz탰IXʎ*%wؔ]9WnzY QYD&{x(vwmq׊?J,]Om,rb}EC6#f>/shy\{lLEA^zj'U,B oB(YD"WQSC\ *uN6b!p딢H$fpzzЩ++א?n j(>ATt:*nI'Idg2Jqz7#W[lǎ 8OWGJY$RAJܟasMihxVbs}o5KERÌFs"P xZD֜$a8Vgt--B 2&NߘêIyqOtc_rT"U_[0džF< b>OC`nNg#sDޢ(tqbU]򡧡ݻ3Y >\94}yY=oٌhD  yo V'aIg:%uԇS"sL4}v|W8 -_< H'Hn[ N(e z 8 -xSbՎi>w}Q&}(YD*%PB %Шn,^A^,{gLN ʩŪ#󷲃*U z=m}49lqKB{ʴmN]*UJQB JQ,)wadǚ5zO&B_?Cf'U6#)S &R7Vl~;۲-CW.J*UG i*0I$X=_oX`,2$I7.E?="E"I$0$I$CXd,$I| ch⧮*/hlMkjlt:N̖R9->@~EƢ>RQQj 'u$I'GE٦h14u,ӻ"c5O[+_ "Ɍ:I}Q]QchEj*s0ϞʜƢXX4KҢ`ҰJ:1N]}vn&7Y]u5"EƢ.X`,Xd,2eY="Y7 =)6?,25 V<HT}/xަۣDG⮥^XFE"cQQAZBhg;b}zwgWω+7^'bQc3/Sf֕njEc0|gX:$^}幩mm%!colVŎdGrt[Tϕ]?>c`,Kg,2͢{=yRLqM)*ZՉ{=S経EcXڥKb,.^h,+1eE?cq{"EƢNn- ;C 188GW0=lkǹ3gL&rd#''"E"M:5҉Q'I8EXd,ӻ?I$I"E"I$XX$I$0$I$c"c$Id,Xd,$IE&XH$I"rc,2I$I"EƢq}`6uJ';#osgGL"3ěG/OO&EEHuFwGkN$){q0ue(2`,2I$I"E"I$XX$I$0M菿7I$XE$IcH$I2`,2I$I"E"I$XXt*/hlMkjlt:N̖R9-"E"MRQQj 'ߕ$Iu'GE٦h5`,2)ZZ 8^LF$ie#rcƢkXDy,-.wMey?w.ٳQSy=EEJODǢ)5a+vnv\]u5XX!VΞ?~"c"cFݪٱhhZWWm\ƠE7D>$_P,)Ӧ|#n]@3^/=^1wzAN5|gќ^{rE30 oix2"EƢEנTn^[;{r͡nOgN퉺gJcւu֓}Ng᜘uO+n:~~bG{W}=E 87.DjӲW!96w6FXƢ ccKAױQ}^&~0Zw}8v~~FI{i,0`,2wOlZR}CQWKbޒƢ~X>램;D,0`,2cIWwh)_d);*:z>7lg^ ;9E~h80Ծ~Ak/=tGԮwo=;/tK${cذbFuf뻢/!3~gѳ+}E~KEEzdN|޿{<]ݘ_g 7M)[G֬E3Ԓ3mrL)i}mٗ5qdOcu XwE"]cѥK`,.^h,Xd,DN*ϱcHC_h=RyaG=|(2q5ȡ c"ct3m-8wL|D.2L=AydXXЁTgtwF:!I4SW"c"c$Id,Xd,$IEE$IcH$I2`,2I$I"E"I$X},X$I|XX$I$0uDUyYVGcîhnj\ScÈt:NgÖ͑lo1`,2i"hWc`x<$IҨ8q<*6EwGcHbı…d2$I.{1phTW0XwEl5qܹgFMcѨ{ƪmc=ѽbV& &7jEFXtb]뢭g豞/CɳXh E=h=bUyѕjO,LoƢD}g纣wXs 񍛢?ݟ\Oҙ%ܓ+➙QxSiT'o,0`,c?]ɆذXWOs[ջ;`ǶظzN_]T+??+T*vNEE1k +: gG#c`,Xt[TXӕQNno+ OFˆXUo+d]M~ _\skJЌYfoRS>oeGE5(x"LZ{ E9;toѮjΗ)qch;XT_]ⳋtk}w@ʎU>9mуKrdb PgGdEQ>Gjnzd[@  0Kaשz=r}o^x>% Rpl{YumcwO+sx볔*[+2Qk`=mi7_3*#߽j14O_(tzhN8!}b:"""b,b,jо״0>>+FU8*r:*C[];;Nkwھ=VUJWMq?mz".Q^mX;cRD=ؼ3jV)yRgx5_cHo]lez,frig}=|0ylE>quF:;-H ɓ:uꔧ&{,EDDXXd\S_rX3kןTvͺUvO⧀iWݟetweJ3qeMEZ}W{:]QNR\x¢3[uXnEDUEcv옎?>c`,""""Ƣo-VAB^<ύ%*Mi+-rcќW]YU+㓴m7ȶʢQ۵Nw,RraUS#7=JGM,^ܳ(eApch͌Ƚ}14XDDDEEvY7fɼ`̮^st[d=ωPpǢ~Q;n*ѫّJ\Q6rϢUI*T&tʶm]T^?%̢12EcU+,_^:{]ho2tzn7o<2h[AţEDDXXt 1]|Y7k;***եK`,""""""b,tn^mPiF]/Nh,EDDXXt C*ףS7k! jNtXDDDEE08l4u_*#ҿҟ?;tZ"""b,b,:XQY(Gkd{wCEDDtˍE0Mɱ`,""""""""b,b,`,""""""""b,b,`,""""""""b,b,XT[XDD4":䯌EEWV:wM-uEEƢ:u#""Q.XX? _vkCNvU6iviu B&% bb1B(ll怱).6?7[29bI"b/HP])sFξ1t8?O~$7o|*˜W.˅s۷E"b2'[0.d{Kj*p_՗O}K9,UR{Njl%P+JY~|XD,"bpUW`5;Jew r~JyUYD]ͷh0(դ./XD,@j:VR,56|)]+eɿJpq2XgKT:륧1NgmYTj-?×_«"bRX,eE7^_'{{2):sdo<8՘zLԼɲ ,-)ךsoKyթWYϫ*y2:yg8 <ޕl-/kk|[ʋ __-cRey_K/C:ͱX" ZFMub:Fc'$|lR+qt` Pޘ#~1YTm|.kz}.Y2tWYϫ$̫k^e^e=? Ϋ󪽝-Eˌ0.\_7Da~+{;7,#C"bh[72moynR\ʓK5YSVSiTQG2 xӒ3gxi%9MʼϫUyUJe^U$ͫr^U4@GKF(&xSZ_3b*'NEilUW]q:J)ȍƢwQ>,qE3&Gbsd6μrX򹦭X>MbO̫U2/Ƥd^eW%2WBWڌ04GߊVYzCbz;_3B+kzXD,:a 63646s X\CA,mG637|3"T뫕&g?456Jxc]XD,:q ]WA)/+G;gbCߖ@unLv&t4ʫH^Q7&%[tv>vIyuy_yDBk4y[5ZpAnUI_{)u^[->o뫉K?'b)A,RG`޹qFn7tӿ*ll ZDž"F&FMx}zۯNE"bE)\`UEtkN{t56im4'p*CE"NjO`?& i-ڐ͐lG&5YyMbhbtXƇ@/N='znLFz.ֱpE,/ec=hq[\ sĂ@ÉqX-{¡u}L%+bhCGdscU^ \8ElVbQ IyurlTWXc>'"bM>Y{uO{I*=W, $@glHh=(k:2B*"KƦ"X66&.]6X.eUV+*ڢ-ڲZI"q?@x(9ΑŢ3k%_sї;.tS…eNs*9fXDDD YXd76 Ozz_8lfdge #*l({wnKEFDD$=-/ȓ@NDrr293gb_:F}~m8 a",y~NO09b~9YZa6uhk$]DDDD@gt+GLǁpQfO>۷qM,%%EmEwW`m G7>c1 +E #VZ\bحIqa>r3~N3EhTX>Zbܜk&Gk ‚*VĞ={peܸq_||w;ܹ4Vy7]8y fM)0g6[h2íK#E5]"E]iEV54`liBksZCㆿ(1, ""bX>E|vؿƭ[_' ?o_BwD7}&\ZGU0;qljKHٺ }W5ˡj2,"""E>,j˗ zi+ѯ'`5(*/v]0jQ Uf:T׶EFǓWIA:/(C .;h5R4P22F&+h\# `tJeJ),"""bXtz"EyxWaW_H ϣHF5G =/HBMGaS4l~{ݚ/ClDDDL(uuA(ŚD{wHBM T`~`̨ ;۱2~*&MAb7xʄ=,"""EXİ|(>._:' *uZHjDNf:Ο}nq]-(SO:|h+.qYRl:f+U(lOdӑ@ :=p:srTP\gA׽3^fXDDD.nw+rصkz{{E$Bp)_ƕ+WUFF_~%^u7f\XӠ3:07`ֆӨjsY0wGD[o^YĽEM(N^yꋱf$ov/nHc|d.f=Js`LwTc߃@34" ~1,8J* ϟx5UUK*5(ŕpX Tu6IK>VԨsPU_p;<5 6PϡGi^ǓV -kyhu 'P*|EYsՠ$6 54-mN1EDD v*7#hbxOPX$u!11Qe~^;q{߱{y8c%DG"jj 6A&f鳤C,OW~G&Vق:Q.D\2ylQ p=`hq_* â񏈈a"RHz]5 ʑ^h]VRMY-)*3]sg|p"|ɇ1"mtЕ 'Cz Ɍ9Ċa#ddeBJsiڂbzQx0,w({.E4ǯkWBDD֯_n^;y8^ت:K 9~c<0AӖ)x)?f bcYqIдG$:LE"E ^U|uۃ=ovTzwP)#qp^d\M{؎fh*-m?)XPWcx M(P!GXY&0X%]y}p|nS9 QRnK+ǰ„aQ_GS'c۶mW!!!&Lo~)Lo`heю;D_1bL_ g೻{.|{wޜW4hs8 \Ʋ$*NϞ8ep OL?1,r;,nivlGMu%t˭u*:6ݬ`\,U+DIvu(jSP]QV7(ED3Z5K`4Kp렯( ;&>LKJ1-h(AiU-oEDD z:]d\ 6h4wI$˗#)) ۷oK}2ӯQ"H Kz|o-Ach66.Ĭ珢 6wno/؛YOK'*V׊ _se-m*&jre`X41,bXt}"4b|]zuKc͍0kqhޑgmBSe s3rsU(jצm23P 349Կ"BЈvcY(}gQ\'|ga(D涇EDD NE,-lܸwƝ;w^r);D764gIqxjDF=@zڸQ2F!rd<;oRkz;Wwcu'cG(f)JzJ z~q:\{c9MFxD^2e """bXİj\45bjA^C 6E ?""" E]^bٙװvZO߽{W "w,jh+4 =""E neRBT ZTW7ېQJu[GԟaâNM1ˊoƚ5kğ/wHlţgEh+4 3""E Ueqrx*=o%F=8w!ңn(>1:v:ĵbX4zDDD@9u:e_ / B7oFJJ RSSuVQ&D_lP4Íb7DD 9L-*+Fa n粏(fl Iԍv|tcq5Q"""V <\`$H"'+6 b_:LJO%b\3,O1,Z_̫Ҫvz%7oov[]H\+PxD=5sz,=-BNV4{E "Es+uZqSH=rqMĵH\+P=""a@8i{+yH̥ӡ{E"E~m\m%AJ 4E4k" """ FfuTIsiw^MPQFDDc"Enՠ<فV\9! Ž@wq[hVEDDİh>&!o׊ #""""7ja76?6C#""E V3|)v"""" I ̍z tue5#""E ~?ݛN4gUGH_6uZ%"1a"AޞGHgME"EDDDDDDDD21,""""""""bXİaâ}9>쳠gr462(<[n[nv,ADD I;_+(̮]"[̻ߎ/nƈJ.O9LDDD3 ""E ԸQCa-{o^ƈV.TQ_8aâf37l0|yeeᅦi1麈0Q_8a"[k r2@"![t9hFKDDDDDp Տ!K{v*,rh"EmMj.aYo1 Q](lkDgҜǡ"n$DLEpB>Z:aQ>5V.EE| aXĕEMjW ԏMh 8i,}U505(760g s9kV>QD[V&mؾlıb1 ^ Ndin# aXtcaQ8"s^C$E/D6TL"|sL)ӑ5uפaUUw#T:=CXӖc 8|wSaETDN@l&SBr{~ kTLy7B+"m2[ &r"""aڃ(4EÙÛT|ӖIߣ݀1Ɉ@ll:Yy aE|gQ,J|h_]3VQfI," aԼܧ 2,Z:. >TL?3iCX9w«3f#ccSR~[ܳxkamw95xm"\nfoA3QOLŒW΢ՁU'!nIˠq+DSJ"f=@}׶œ%vʜ׀?e>Du=?i`| V=&Ox<1Lz|CcSu..JDlaT7(OB)#ڠzHSƬ\53MƴƹRDBE>yEx>> av5VůBEhS1 q`e\P}2hsk|5} [Q?_YwĂg#55I#(l>kV&lFk|Z=?qWcO<2U0,""""""°a$Oˢ#G|ؾAᴦA"$AUıcɕ)8_zC.LѲzs}ZfZ~b_@a( )dXtKRZYt>EieQ'U,@2eJ~LH7mP:kAKކSx>x5cL<9!P'bϷ|%´Wz1,"""""_.E ? yWEU|XT"Lz -Q 3~C6 2Ԅ6}12-DdhgƦ7.)_&(t qztDLok[!H Ki"!%DBEmPګ&wqufɂ*S/ϫþ'FdkPd<{fW;[ӱ,>ބ86#a~4aâBO!c@mU.ƨEN,3sVh3ˌonlY''?)QO#qN|Xшv(۟1i82 =ۛ ƹ'g{0?fPunΜ)|fZ8 nCFg$Ƭtu`->1spڅ뢍㖣oL\_Nr]Kø+{A\-3D%I_t.yZLmr\iW1y.f=JN=rSQ1,""""""aG} j,ϡCwuc DxZ7d4ILgG wcM h;g2%uf,_ u+ds عbȩX T.|t]x=púS9q[NcIl>ڿsOF9%O""""""E,;ڰaэn `Z}ϡB >g<ٯ>1CE?5F""""""qE"  ¢"U h/%~# oLE:n{xX۟İhE"eXİ,tU2|ށs-AQ`~eby>m9"{"EDDDDDD/,9("E=>\m&iR uPe^CQ7o>\gq7PVy-{ jƀ~:a h"E~{(,r[Ѩ"/+=)1*W̳o1﫯׻/%׿|o:xu6,bXr E#suUTGBKC3t)ݗa -SR t, Vd ED%Bj"TIF#!Ȣ_Wb4'/i!=/\}<>]PNu5W3EbcQѩƢ7rO;-(T_4/㿼X4XG|ĢT_ ?X›{Zhա?4o }-GbQWWX4o >wOĢ;.kܻ{ɟl{~ᵿod0###$=$]$}5\hM#C Ǣza׏^_~_К׿}tttq~ m->g欝{{nyཇ_K端p@+ogpkosw{kh*h.u-XX:x~ \k+,膛57xpovѬO4towų|M !"#$%&'ljE#fR%MhX}Xt)3=mz,횽lEk-^w^߶c˯Z 7,dm+u=ǟ|r՝Ǘ:;{g끣WVm쬵an/[zw׾wYw#p᧚ ]#}#####$=$]$}$$qttt2=bQ6z,*ڼgEys9~u$]z?}7xoltttttr( ډ?n]EY{ĢwZ͝#TNes'o`4rko[v-4MFF:GzGG E!"#$TQI:J1\E^E+vtќ+ =6o-(Gx\x{m;htttCEGIKʩ+h+h-x-먿6ܱK˝۱h ͇II˃N{x}W\&]#}#####$=$]\?K/I7I?IG9UTw-v6ܵK:Z쥫AFN ^uG;qJmhtttttr,$T _AkuJ0J9QcNjh91&]#}#c$mLHII&*?]3*Ѫ(Gr'/8SF#h00?׽bfIHHH(ACEzЪo՟*jE:Z)`xy2h@*[>b4MFF:GzGG9M.OgM9UTbQy(6TRJ8:oZ)m##DttFQ}(ZƢE5(GJ0陓zVѓFK(V>"@Sosw{H.RBQzI}(:&)ŤS"xEe'┊S!S*&?Eu'O4-NG&pF:jLq`(:jT&`'β@$Cfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff$Tѹ/LIENDB`kbibtex-0.8.1/doc/flag.png000066400000000000000000000035351331300026200153300ustar00rootroot00000000000000PNG  IHDROc#"gAMA asRGB cHRMz&u0`:pQ< pHYsodbKGD X-IDATHǭyPW+)QS 3AHBmED(р **E"EEn9Z*RZlgvxmK[{QTX!Ilc7e*w Su.9 8;w6"8t"׸: GH@%NF.nRElqKDw3W. sEtչKy&Z[ `t/foϕ͊J]j!@EJMBR$3'枨{%~?ƺӱn wK{ѧ 'e~a.q2ܪfV@)`׿UՖ_>X֬yGXdیꎵf.f!Xb]S>[ɽg3,]JԿpZu.aas9R;ŁܠY {wJl:ܰG<_QFu`.㘢PI5xw2VE> »xfX)1,q];uņ:ڏm![^NI4& #" *9D18CRk*G1$@i]Ogl%XV*Aa.Qοu|̼4VݛW{ؠ|!qݥ՛'>ziiMVC#IV̈́YE2խgՅ^'VfB~ؕŃGGUH=jM.q}57E~--w-L>4y%JF IM*vF XFQU9)yf[zwIu;'|r<|) ӏ<|h *'b*b\wtYeBO޺1b|Lnr2 =珇*K6M|Ue wPm -00rWPb '&l[C-,LCz 2TZ3 Zd}M^k̚^8cD!Vku<ֶӚO/)iZԚM?7Rjm@У{B9}6#%tEXtdate:create2013-12-29T16:17:05+02:00L%tEXtdate:modify2013-06-28T20:09:20+03:00ED \tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/doc/go-down.png000066400000000000000000000012071331300026200157630ustar00rootroot00000000000000PNG  IHDR(-SqPLTE0]"R"R"Q!P!O NM NHHB~C=t'0',       NH}~~B~nop<6h@3c/]*T &L !D>ʈYVv6cЇ-Lvn~nJnuy{xsKh*JwfouxvhSu8Y1Y0Z8WPsY}`b_ZOt@d*K{'I 2  gnoi(J(M %I> s}v !B /zҊ䁥 "D%G▸ꂦ $H0]|r "E6e2^-V(Mc2w0tRNSHDql1, UDv  ҳ@IDAT*qﻅ,$;`^@f$ W)n0&@\mA`uO}À^18bA˪jCvVzGUUݿ_TUu2NuUm8{aY3L`;W`yg0rq:T.IENDB`kbibtex-0.8.1/doc/index.docbook000066400000000000000000001764601331300026200163720ustar00rootroot00000000000000 ATEX"> ATEX"> PDF"> EX"> teTEX"> TeX Live"> EX"> biblatex"> LyX"> ]> The &kbibtex; Handbook YuriChornoivan

yurchor@ukr.net
20042014 Thomas Fischer 2014-04-14 0.6 &FDLNotice; &kbibtex; is a graphical &bibtex; editor and shell. KDE kbibtex LaTeX TeX bibliography Preface Requirements To run &kbibtex;, you need to have the following components installed on your system: &kf5-full; libraries. &latex;: high-quality document typesetting program. Most likely you want the &texlive; (or on older systems the &tetex;) package, if you are on a Unix-like system. It is an optional dependency, but without it &kbibtex; provides very limited functionality. bibtex2html collection of tools for translating from &bibtex; to &HTML; to enhance &kbibtex; entry previewing capabilities (optional dependency). Most of these items as well as &kbibtex; itself might be included in your &Linux; distribution; please refer to your distribution documentation, or refer to your installation &CD; or DVD, for adding these packages to your computer. Intended Audience This manual is intended for any individual, regardless of her or his experience with &latex;, &kde;, &kbibtex; or &Linux;. Advanced users are not likely to read this manual, but all suggestions on documentation will be considered. If you would like to contribute to this project or the documentation, please consult the &kbibtex; web page. Introduction About &kbibtex; &kbibtex; is an integrated environment for creating and editing bibliographies in &bibtex; format. &kbibtex; gives you the ability to use all the functionalities of &bibtex; in a graphical interface, giving you easy, immediate, and customized access to local and online bibliographies with ability of entries completing, compiling, previewing and searching. About &bibtex; &bibtex; is a program and file format designed by Oren Patashnik and Leslie Lamport in 1985 for the &latex; document preparation system Lamport86. The format is entirely character based, so it can be used by any program (although the standard character set for accents is &tex;). It is field (tag) based and the &bibtex; program will ignore unknown fields, so it is expandable. It is probably the most common format for bibliographies on the Internet. The &bibtex; program uses style files, a list of citations from &latex;, and a &bibtex; database to create a &latex; file listing the cited references. The idea of style files is that final copy in any journal-specific form can be done automatically. An example of &bibtex; database entry: @article{PAM_doi:10.1007/BF00048294, author = {Streitenberger, P. and Knott, John F.}, doi = {10.1007/BF00048294}, issn = {1573-2673}, journal = {{International Journal of Fracture}}, number = {3}, pages = {R49}, publisher = {Springer}, title = {{The calculation of crack opening area and crack opening volume from stress intensity factors}}, url = {http://dx.doi.org/10.1007/BF00048294}, volume = {76}, x-fetchedfrom = {SpringerLink}, year = {1995} } &kbibtex; and &latex; Editors &latex; code can be edited with a wide variety of tools from simple minimalistic text editors to powerful visual suites. For the comparison of &latex; editors, see this page. &kbibtex; provides out-of-box integration with &kile; and &lyx; though it can be successfully used with any kind of &latex; editor. &kbibtex;'s Main Features &kbibtex; allows you to do the following things: Enter a preamble that defines how special text should be formatted in your bibliography using ElementNew elementNew preamble menu item or Main Toolbar. Choose an entry encoding using Encoding item in Save as dialog or on the File Settings panel. Enter comments that are not taken in regard by &bibtex; using ElementNew elementNew comment menu item or Main Toolbar. Preview and save bibliography entries in various formats (Source (&bibtex;), Source (RIS), Wikipedia, standard (&XML;/XSLT), fancy (&XML;/XSLT), and abstract-only (&XML;/XSLT)) using Reference Preview panel. Additional preview styles become available when bibtex2html is installed. Search for the bibliography entries data in online databases using Online Search panel. View local or remote (online) resources (such as files) linked in the &bibtex; entry using Document Preview panel. Find and fix duplicate entries in bibliography using EditFind Duplicates menu item or Main Toolbar. Import your Zotero library using Zotero panel. Quickstart Writing a Bibliography File for Beginners After the first run, &kbibtex; will propose to make it the default editor for bibliography formats. We recommend you to do so.If for some reasons you will decide to reconsider please remove the strings with kbibtex substring from mimeapps.list file in .local/share/applications folder of your home folder. Then you will see a window that looks similar to this: &kbibtex; window after the first start &kbibtex; window after the first start To start a new bibliography document press the New button on the right panel, the New button on the toolbar or choose the &Ctrl;NFileNew menu item. Now it is time to add some entries. Users of &kbibtex; have two choices when adding a new entry: they can use the Online Search panel to find entry data online or they can write the code by hand. Let's try to add a book entry manually. Choose ElementNew elementNew entry from the &kbibtex; menu. &kbibtex; should open Edit Element window. &kbibtex; element's editing window &kbibtex; element's editing window Choose Book from the Type: drop down list. Enter Lamport86 into the Id: field. The Id is used for referencing the bibliography entry in your main document. Go to the Title tab and enter LaTeX: A Document Preparation System into the Title: text box. Go to the Author/Editor tab, click on Add button and enter Lamport, Leslie. Go to the Publication tab then enter 1986 into the Year: text box and Addison-Wesley into the Publisher: text box. Click OK. Choose &Ctrl;SFileSave menu item and save your bibliography file as example.bib in your to-be-written paper folder. Using the bibliography in your &latex; document To actually use the bibliography in your paper, you need to add the following commands in your &latex; file (these commands are usually can be found at the end of the document - where the References section to appear): \bibliography{foo} \bibliographystyle{plain} Here, foo is the name of your bib file created with &kbibtex; and plain is the name of bibliography style. There is a plenty of specific bibliography styles. Please consult your publisher for the one to choose or try and find the one that suits the best for your purposes. Below is a list of some generic styles available everywhere: plain normal style, listed in alphabetic order and labeled numerically unsrt same as plain except entries appear in order of citation alpha same as plain except entry identifiers are used abbrv same as plain except uses abbreviations for first names, month names, and journal names So you can use your &latex; editor's capabilities (please consult the editor documentation for this) or just enter the following code in a generic text editor then save the file with tex name extension. \documentclass{article} \begin{document} \bibliographystyle{plain}% Choose a bibliographic style Test file with a reference (see~\cite{Lamport86}). \bibliography{example} \end{document} For our testing purposes, let this file be named example.tex. Please save this file to the same folder as your example.bib. Now that you have the basis for a document, you have to run both latex and bibtex to process it. First, you should run latex (to create a foo.aux file, which bibtex reads). Then run bibtex once to get some of the citations and create a bbl file. Then run latex again so that the cross references between the text file and the bibliography are correct. You may want to repeat running bibtex and latex on the file to make sure that all cross references are correct. Be warned that adding/deleting citations and sources will require running bibtex again. Thus, the following commands can be used to compile the document from console: latex example bibtex example latex example latex example If you are using some advanced &latex; shell like &kile; or &lyx;, there is no need to worry about running all these commands from console emulator. Just use a hot key (&Alt;6 in &kile;) or a toolbar button to see the results. Now, you can see the results as a &DVI; or &pdf; file (the format depends on your configuration), stored in the same folder as your source files. Congratulations! You have just created your first document with &bibtex; bibliography. &kbibtex; Interface &kbibtex;'s Panels The main functionality of &kbibtex; is available through its nine panels. It is possible to rearrange these panels or even detach them from the main window by clicking with &LMB; on the panel's header and dragging it to the new place. You can make the &kbibtex; panels visible or hide them using the SettingsShow Panels submenu. It is enough to check the panel's item to make it visible or uncheck it to hide the panel. List of Documents Panel The List of Documents panel allows to switch between the opened bibliography documents (Open Files tab), open recently used documents (Recently Used tab), open your main bibliography documents (Favorites tab), or browse your computer file system to find bibliography documents (Filesystem Browser tab). To add a bibliography file to favorites select it on any tab except Favorites, click with &RMB; and choose Add to Favorites. To remove the bibliography from favorites select it on Favorites tab, click with &RMB; and choose Remove from Favorites. List of documents panel List of documents panel List of Values Panel The List of Values panel can be used to easy up viewing statistics on usage of values in the entries fields and batch editing of these values. The upper drop down box is used to choose the bibliography field to display statistic data (a count of entries with the same value for the field) on the lower list. You can click with &RMB; on an entry in the lower list to access the batch editing capabilities. It is possible to Replace all occurrences of the value, Delete all occurrences of the value, Search for selected values using the Filter Toolbar, Add value to selected entries, Replace value of selected entries or Remove value from selected entries (some entries should be selected in the main entry list first). List of values panel List of values panel Statistics Panel The Statistics panel is designed to display a comprehensive list of statistical information about the current bibliography document. Statistics panel Statistics panel Reference Preview Panel The Reference Preview panel is used to preview and save in &HTML; format the currently selected bibliography entry. Reference preview panel Reference preview panel It is possible to preview the reference as Source (&bibtex;), Source (RIS), Wikipedia, standard (&XML;/XSLT), fancy (&XML;/XSLT), and abstract-only (&XML;/XSLT) formats. Additional options become available when bibtex2html is installed. When you click on the elements of the reference in &XML;-based format &kbibtex; will apply the corresponding filtering to the bibliography list. Click the Open button to open the reference in the default Internet browser. The Save as &HTML; button can be used to save the reference in &HTML; for further use on your website. You can click with &RMB; on the panel to select Reload to update the reference according to the latest changes in the entry. File Settings Panel The File Settings panel can be used to define some parameters of the bib file of the current bibliography. File settings panel File settings panel It is possible to select Encoding, String Delimiters, Comment Quoting, Keyword Casing, and Person Names Formatting. By default &bibtex; will lowercase all intermediate words in sentences. Check Protect Titles check box to protect the case in the entry titles. Online Search Panel The Online Search panel can be used to perform a search in the Internet bibliography databases to find the needed entries or to obtain the complete set of data for a manually entered entry. Online Search panel Online Search panel The entries can be searched by Free text, Title, Author, or Year. The number of results shown on the Search Results panel can be tweaked using the Number of Results spin box. Click the Use Entry button to fill the search criteria fields from the currently selected bibliography entry. This way you can complete the existing entry with the data from the Internet databases. The Search button can be used to start the search. &kbibtex; can perform a search in the most popular Internet databases. To select the set of the databases for your search switch to the Engines tab or click with &LMB; on the change link on the Query Terms tab. To visit the database homepage in the Internet click with &RMB; on its entry in the Engines tab and select Go to Homepage. Zotero Panel The Zotero panel can be used to import your Zotero library. Zotero uses specialized browser add-ons to save bibliography entries from Internet pages. The data are stored in an online database that can be reached from anywhere. Zotero documentation can be found here. Zotero panel Zotero panel Click the Get Credentials button on Credentials tab to start the Zotero authorization wizard. Follow the instructions to allow &kbibtex; access your Zotero library. Then the Load bibliography button can be used to download data from Zotero library. To access the downloaded library entries double-click on the corresponding item on Collections or Tags tabs. The entries that satisfy the chosen criteria will be shown on the Search Results panel. Search Results Panel The Search Results panel is used to handle the search results obtained using Online Search panel. Search Results panel Search Results panel Click the Import button to import the currently selected search result into your bibliography. To access other actions for the currently selected search result click on it with &RMB;. From the opened menu you can review the result (View Element item) or copy it for further pasting in &bibtex; format elsewhere with &Ctrl;V (Copy item). Element Editor Panel The Element Editor panel can be used to edit the currently selected bibliography element. Element Editor panel Element Editor panel Click the button to select a suggested identifier for the element. Enter the respective data in the editor fields. The field data format can be switched between Text, Reference and Source Code using the drop down box to the left of the text box. Click the Options button to open a drop down menu with two items. The Show all fields item can be used to show or hide all empty fields of the current element. It is possible to switch keyboard focus between the fields using the key. So the second menu item, Tab key visits only editable fields, can be used to switch on and off navigation between editable fields only. Click the Check with &bibtex; button to preview the editing entry as it will be shown in the compiled &pdf; file. Check the Automatically apply changes box to have all your changes automatically applied to the entry without the need to click the Apply button. Click the Reset button to revert all your changes. Document Preview Panel The Document Preview panel can be used to preview pages or documents linked with the currently selected bibliography entry. By default, the Document Preview panel can be opened by pressing &Ctrl;&Shift;D keyboard shortcut. Document Preview panel Document Preview panel Click the button to toggle between local files only and all documents including the remote ones. Click the button to open the page or the document in the default external application. The address drop down box can be used to switch between the pages and documents. &kbibtex;'s Toolbars &kbibtex; has two completely customizable toolbars located on the top part of its window. More information on customizing the toolbars can be found in the corresponding section of &kde; Fundamentals manual. Below is the short description of the default buttons of &kbibtex; toolbars. Main Toolbar Main Toolbar Main Toolbar The default Main Toolbar of &kbibtex;. New: creates a new bibliography document. Open: opens the generic &kde; Open/Save dialog to open some existing bibliography to edit. Close: closes the currently active bibliography document. Save: saves the currently active bibliography document. Save as: allows to save the currently open bibliography document under the new name using the generic &kde; Open/Save dialog. New element: allows to create the new entry, comment, preamble or macro in the current bibliography document. Find Duplicates: finds and fixes duplicate elements in the current bibliography document. Send to &lyx;/&kile;: sends a reference on the currently selected bibliography entry to &lyx; or &kile;. More on this in the corresponding chapter of this manual. Filter Toolbar Filter Toolbar Filter Toolbar The default Filter Toolbar of &kbibtex;. The simplest method to navigate in large bibliographies is to use the Filter toolbar: &kbibtex; will filter the displayed list according to your input. If you are searching for some element, but you do not know its exact position in the list, just type some letters from its data in the Filter text box. When you enter the first few letters, you will see the list changing. The more letters you enter, the more reduced list you will see. This filtering occurs immediately as you type. If you look at the right part of the Filter toolbar, you will notice two drop-down menus. The drop-down menus were designed for you to be able to quickly tailor filtering criteria to your needs. The first drop-down menu is used to define matching mode (any word, every word or exact phrase). The second is to define the field where the filtering should be done. You can choose any field or select a field to narrow down the list of the results in large bibliographies. There are also two buttons on this toolbar: Include &pdf; files in fulltext search: allows you to include fulltext &pdf; in the filtering. Reset filter criteria: resets filtering criteria. &kbibtex;'s Menus &kbibtex; follows the standard &kde; menu scheme. So it has many menu entries that are common for all &kde; applications. More information on these menu entries can be found this help section. Below, you can find descriptions for &kbibtex;-specific menu entries. Edit Delete Delete currently selected element in the bibliography list. Edit Find Duplicates Allows you to find and remove duplicates in the currently opened bibliography. Element New element New entry Open Edit Element window to enter a new bibliography entry. Element New element New comment Open Edit Element window to enter a new comment that are not taken in regard by &bibtex;. Element New element New macro Open Edit Element window to enter a new macro. Element New element New preamble Open Edit Element window to enter a new bibliography preamble that defines how special text should be formatted in your bibliography. &Ctrl; E Element Edit Element Open Edit Element window to edit the currently selected bibliography element. &Ctrl; D Element View Document Open local or remote document for the currently selected entry in the bibliography list. The link to the document can be added or edited using External tab of Edit Element window. External documents tab of entry's editing dialog External documents tab of entry's editing dialog The Add button can be used to add a link to remote page. The Add file... drop down box is used to select some local file and add a reference or the whole file to the current bibliography. If you click on the currently selected item will be cleared. Click on the button to open the document link in the browser. Click on the button to remove the currently selected document item. To rearrange items in the document list use and buttons. Eventually, the button can be used to save remote documents locally. Element Find &pdf;... Try to find some &pdf; documents for the currently selected bibliography entry in the Internet. Find &pdf; dialog Find &pdf; dialog You can Ignore, Download or just Use &URL; only for the entry. Element Format entry ids Allows you to format identifiers for the currently selected bibliography entries according to the default formatting. The default identifiers formatting can be defined using Id Suggestions page of &kbibtex; configuration dialog. Element Color Allows you to select a color label to the currently selected bibliography entries or remove such label (No color). The color labels can be configured using Color & Labels page of &kbibtex; configuration dialog. Element Send to &lyx;/&kile; Send references to the currently selected bibliography entries to &lyx; or &kile;. Settings Configure &kbibtex;... Open &kbibtex; configuration dialog. &kbibtex;'s Configuration Dialog Several &kbibtex; parameters can be configured via the Preferences dialog. This dialog can be opened using the SettingsConfigure &kbibtex; menu item. Below you can find a description of &kbibtex; configuration pages. Click the Defaults button to reset all items to their default values. The Reset button can be used to discard all current configuration changes without closing the Preferences window. General Configuration General configuration General configuration This configuration page allows you to change the default Person Names formatting which will be automatically applied to the names entered in the Element Editor dialog. Keywords Configuration Keywords configuration Keywords configuration This page can be used to edit keyword list. The keywords applied to the bibliography entries with Element Editor are useful to structurize your bibliography. Filtering by keywords can give you a fine-grained results by topics. The Add button can be used to add a keyword to the list. Click on the Remove button to remove the currently selected keyword item. Color & Labels Configuration Color & Labels configuration Color & Labels configuration Color labels are another useful way to structurize your bibliography. This configuration page can be used to define the labels and their colors. The Add button can be used to add a label to the list. Click on the Remove button to remove the currently selected label. Double click on an item in the Color or Label column to start editing it. Id Suggestions Configuration Id suggestions configuration Id suggestions configuration This configuration page is used to handle identifier suggestion schemes for Element Editor. You can add, edit, remove and rearrange the schemes using the respective buttons to the right of the suggestions list. Click the Toggle Default button to switch the default id suggestion scheme to the currently selected item. This button can be used to define format for the Format entry ids action. User Interface Configuration User interface configuration User interface configuration Using this configuration page you can make &kbibtex; show or hide comments and macros in the bibliography list, choose bibliography system (&bibtex; or &biblatex;) and define what to do when you double-click an element in the bibliography list (Open Editor or View Document). &biblatex; is a reimplementation of &bibtex;. With &biblatex; the formatting of the bibliography is entirely controlled by &latex; macros, not bst files. It supports subdivided bibliographies, multiple bibliographies within one document, and separate lists of bibliographic shorthands. Bibliographies may be subdivided into parts and/or segmented by topics. Just like the bibliography styles, all citation commands may be freely defined. The &biblatex; package is completely localized and can interface with the babel package.From &biblatex; documentation. Also &biblatex; can use biber as a backend. With &biblatex; it is possible to use UTF-8 symbols in bibliography entries. So you can use &biblatex; to create sophisticated bibliographies. Saving and Exporting Configuration Saving and exporting configuration Saving and exporting configuration This page allows you to choose a &latex; command (⪚ \cite{...}) which will be used as a wrapper for the reference copied with &Ctrl;&Shift;CCopy Reference item of popup menu from the bibliography list. It is also possible to make &kbibtex; determine &lyx; data pipe automatically by checking the corresponding box. When Detect &lyx; pipe automatically item is not checked, you can add the pipe address manually in the text box Manually specified &lyx; pipe or select it using the generic &kde; Open/Save dialog by pressing the button to the right of the text box. Eventually, you can configure backups here. It is possible to select the backup subject (Local files only, No backups or Both local and remote files) using Backups when saving drop down box and the number of backups to store. &pdf; & Postscript Configuration &pdf; & Postscript configuration &pdf; & Postscript configuration This configuration page can be used to choose some options for previewing of &kbibtex; entries. You can select Paper Size, language for babel &latex; package and the bibliography style. Advanced Usage Cross References Cross references allows you to save some time by creating links between parent entry (can be treated as a proceedings or collection of articles) and children entries (reports or articles). To create a cross reference just add its identifier in the Cross-Reference: field of the entry's Publication tab. Publication tab of entry's editing dialog Publication tab of entry's editing dialog You can either enter the identifier directly or click on the button to choose it from the list of available identifiers. Macros Suppose your bibliography contains many references to the same journal and you do not want to enter its title over and over again. Then you can define a macro for the journal title. Let's say, we want to define a macro efm for Engineering Fracture Mechanics. Then we should do as follows: Choose ElementNew elementNew macro menu item. Enter an identifier (abbreviation) for the title in the Id: text box. The default identifier is New1. We should enter efm. Choose (Plain Text). The other option, (Source Code) can be used if you want to insert some macro with &latex; commands in it. Enter Engineering Fracture Mechanics in the Value: textbox. Defining macro Defining macro Click on the Apply button. Optionally, switch to the Source tab to inspect the code of the macro. Defining macro (source code) Defining macro (source code) Click on OK button. The same procedure can be used to fix the titles, author and month names, &etc; according to abbreviation rules of your publisher for the entries from online databases. By default, these rules (macros) should be defined in the bibliography style files (bst). Integration with &kile; and &lyx; &kbibtex; can be easily integrated with common &latex; editors, namely &kile; and &lyx;. Integration with &kile; &kile; is a &tex; and &latex; source editor and shell. &kbibtex; is a default viewer/editor for &bibtex; files in &kile;, so there is no need for additional configuration. To add selected citations from bibliography files start &kile;, open some &latex; file, place the cursor there you want to add the citation, then switch to &kbibtex; window, select elements in the element list and choose ElementSend to &lyx;/&kile; or use the Send to &lyx;/&kile; element's context (&RMB;-click) menu item. The citations will be inserted as \cite{element identifiers} at the cursor position in the current &kile; document. Integration with &lyx; &lyx; is a document processor that encourages an approach to writing based on the structure of your documents (WYSIWYM) and not simply their appearance (WYSIWYG). &kbibtex; can be integrated into &lyx; via &lyx; input/output pipe. First, you have to configure &lyx; to use the pipe. Choose ToolsPreferences from &lyx; main menu. Open Paths page and enter some path (⪚ ~/.lyx/lyxpipe) into the LyXServer pipe text box. &lyx; configuration &lyx; configuration Click Save to save the changes. Choose ToolsReconfigure to reconfigure &lyx; and restart it. To add selected citations from bibliography files, open some document, place the cursor there you want to add a bibliography and select InsertList / TOC&bibtex; Bibliography... from the &lyx; main menu. Press Add... then Browse.... Point &lyx; to a &kbibtex; bib file. Click on Add then click on OK. Then place the cursor where you want to add the citation and switch to &kbibtex; window. Select elements in the element list and choose ElementSend to &lyx;/&kile; or use Send to &lyx;/&kile; element's context (&RMB;-click) menu item. The citations will be inserted as a reference at the cursor position in the current &lyx; document. Credits and License &kbibtex; Program copyright © 2004-2014 Thomas Fischer fischer@unix-ag.uni-kl.de Documentation copyright © 2013 Yuri Chornoivan yurchor@ukr.net &underFDL; &underGPL; Lamport86 Leslie Lamport Latex: a document preparation system 1986 Addison-Wesley Publishing Company &documentation.index; kbibtex-0.8.1/doc/list-add.png000066400000000000000000000010121331300026200161040ustar00rootroot00000000000000PNG  IHDR(-S,PLTE|p@(C'ِWHkRbbAA|aۀX1O*@"K&V32-'َֆ$ކߊB&|~<#st7    yk{l07@#I(hch`g^h_macSeTudwh~tke]SFBJFOI]UbVWGZGjY`O9,*#;0 C.N4 (/7E-V5@(X5 *?& qGntRNSjj}+ZcqIDATc`@P Y,qƗdff@Q`gQn0~adUgDXxd1-e-ĥ;xN)V"^"mIENDB`kbibtex-0.8.1/doc/list-of-documents.png000066400000000000000000000352461331300026200177770ustar00rootroot00000000000000PNG  IHDRNTO7:mIDATxwtS级w֜{׺wܙw$&@ k% -t%7ܫ,[rlKdI".[ܻ[.– g=G'ǟ؃2RU&D Z-C!S͕2IG/9Q')+-ѕi!BhRrҧSRR00;3C-B!E9ŅTdY"mIOM֤ !UJV+$]xE;fk2HQlOQK |>BJ㒱0i7t*;)}fFzThHA^kr-3l%<BPUJyj tU"9;fG*;*?(K znm}׷Z4)`釽Rj?֐!>x/(NOޟxB<RIrs,q"IJWiz;*3'Oƛx8maG*;*{$nxJ%O r9 BmyA"_tJUW⭒ҭM;kV475kRU=wn'<:~G ~¢mb*[i2΍-&2be[d wKtky쥅TVe 9 {w/dnJ8{CG~<=牵3ߧ ;ǵz|`'>y_ LLn;'oZ6aCs$6?*!MWװbz]yyV~S5i*k?-gڑ.+.#?iouǗ(gI;JryԳ_2aY?L)z쌝~ݶ//MRW$͑XQg)Dv܈})ṭ ,=SGhIr|ЭLYۗLg*)qَQnwdq~*7,MZ&qZ1NSsgNggfde#4unn·LG`~/Qz㿽8$FڛwOud;>wNRJ.zbo:K8楷w_,-kvy^L,Rco,)Hfz3`Xeۻ ܑBfK.*|7/9tSNfF;7O?[Î/R}0I+ߏV\zꉋDݲ5}ԥS p緿-^[Cy{;o yu2OI2?BwrʶM /^0&|&]+=#}lۿmM_d1OȾ.q[ŖB屗N^y_~(kz=MhF~jzW]3^Jo^B[T_YYF=sٟP2Ҫ* 쪽+7nxtn0T{ѬTzN^v&{]-mz)G>q,19=I3υHҦ8p H7ק[.w$ t9q9$i=J?}ʓQQ{8tJ?^ +]0n(kwl5'y )Ąg(vW+3-EI&'IUJCEE}}c>>@Cd.!p`JegJ\S2LZ__///+-Օ564,\OZ)$ IKiO+/UzaL^C{V+YM?Zy73[MQW)}-)=P_OsE3FH]]!Rӫ>iO+/ULeݭyOY^КU )r?cr}xp_.+p?ӊn,}^N6^[W*}=KCC%_=|6d.Ǫ#n9 {vw`0aJ?$"aLÑJnn`qGh^|rQD~]Kq@WAy'̽EHӊn,}nv:9uu ,uV޹s6Mۿ!p}MK|zY:b쬵ǟ4 ߨe lٛL^^JMLvQ*tsOIIIb877Wחs\hX}F_:nwyysӹY׍%^|Bᎁ8 'K?kz_Zge;j.yiJzĮhnO#/Fg4E5g f UdsM}TZ(S''½`0TWWVK4o"+++!!ɓ'dewW*o5lӗlٓeLJ8n#ܫ;pIq]67*pX|XxXp*@x_f•$ջiȗ~,=<~L/dff/uL7 [;f9g-4Fjr^c᥎Ol&p-{݂Y,mygv\PW MMQr8O?ʊ˾UWMjےxwU4'g}1#xɖQ}:aGͅ%ƏOvsrw4f2?-7Y<~Vƌ:Kv\ Qi4QԄ(sSSCBBic TWPPripK#\/<~-]^߱m3Th_}ةEĨm,t44hXxෆ'5K%¯㽿W>/ '҅sC<7㦽g:=:rMnkȾ+Wqpc|^l7uOkyӊn)}jDHpNF)Ktwٚ so4}ИS U)bir$I[0c˨ a[q[4qOȖ{:_8CA{'p|B;j9C[n]5僑C7g?==/g1ۺ{֘ g>%`I]yc!cvccƼy67KN~34z&OyYCy?ﶟÆl-ȧ[fLΕ>p;rbC}5g»G;vW'9:Tz{}~KS1Rl6*i.zxoݣt}A(:1So^:u>d/N6.~7bWuyySL;B;F{i\s֔ݹ}ywd}N}[,}{g141)Y&O >"ѺJJݘm'jò]-tROD9Q*oKIN1B̄ߗNMfͻjڞ%}|J8ݝߧ_+ptw ֎~q%evyS0o&5YVVNHY[GxfUXZZ*^ew!iA0];n>c ? x S6E)vK rufft䑃ǯ=;(&сyfߣ =f'{]؍{k/:nn;d,`,Zo,78 W W Kv7Lܳ>[noИ߶Njh7 0cx{ rnMbGS#6o}ƭwx_\t-:Ichҫ+҃D1AK&>dEZ|N7LZx+624';rs9,_=+[~?²\ĥ΢gqk"E̳SΪΪ*g΂/v2Wwl]['}4YPn4`U̺g 2˵Q̝cm tb+>\<8~u yYqnҴC#vOO8ݼM&gKی-_' X^|"2_M^I+r-|cĩ?=Y7pc~43upcq&>wX]wn/«D1YW|ا1fM/re軳:m7>}+GΎ']Zر&+Ǘ&JUw͜Hp_6i\L3'''JURRR^^)UTPiO~oOOۤ1GLXuSf :8rvhyw K,nG<4sA_N<e~z.[y,?-kiųv[eע #2+)g.> ]_ݶ|֘pgOyR~LkZV_ߌ53_ %."އ]ڴԎNx豳6Iǹ=j7x&u:ax?^P~\TXɾOJ@8Kѿ'Ta=ָ骘ƼD(uYˉk۾O֐ZsQ`iTx̳3F¥.[|Yh_(}ӪNV@'wg}樓'A#NǞ:z阓[3ޓL}e`Sj|tdw2R۷o) FqrD,8^8{˓p2y)Zy[aP=o{k->f'+9i7۟f~75Vt g*s\v:}L誡nO4q77M[xއo;?Iw2B/cC2"*"}nLs7e㵕~@Pz>M {~ŕHC_V$]q6G?j{J>'0癛+}A^OBl`{rB.]8ic폺lwAv* f>|ҧg b>~XSSVaP+AZm$^_444yLΛ& TviՙD_h\A!S G!¿(=BC!WzX}`L !ڊ?%2?Y_ςnyB!Rs=:bY ٙ*/OWy:Ǯ:qo龏Ba?JզvSL5=-}F.ܕSIBvy@_eNY;X\^򅳔 !=۳`[ƋK?-蚝MG*+ z`0YEVVUU5J2 Z&d4ͭ%xS &UMm7F׸n*LW^^ZZZ՚ҕ2i[`1ch/Ht4L]`WBe%-l\oHy/EEqqDo3y2D+]p҅況)-(h50quwnlѷV[ZZK -D`wMW;~5XM{Y!0>~}h7Ko_R)yyyү[XO:OyE}W 7FB!jS->-}&=E^u܊KyLgΜ1>##'555==EnY93nf[2W./pۈZ!TmjgOgJVs2S2T\~ayzmEEE]]]ǚ. ͛w9iݙfpGsg 1绯k B_RmgNeS-~MK^kL yiM_SS3n8^OSWÒߑ׽cƌz樓'A#NǞ:z阓[#OUC!jSPgaWCҗm۶[ѳ7uO]o==}k?ѫ?="ៅUZW55;FTxt\ul4Ba?KզvAkrAӥ>}t޼y3Ow~T7nܸrd,KTt4-kߐ$sssz}YYYp0oJk~Y+74심1txedۑy/w>X_]??eq:D !oTmjwJoT&bΕ򺺺ښ >/77I&ez^^ee5tUL *ʠRiKEEEVVVBB“'O)&MN~u2S|}/yX66G׏3!(U݇ү,S12SzZ~}j }z뷛7SoNv\>"zt#->5'94-ƶu}Լ;j..ȴQj:HC ەY _Dh6-}*\ϳ0m7Y~=@!TmjwJ<@*X?JoJ{?zH(B^OK|jVJ5}*W(ʧ]rgJyjNê GB2-ĵֆ#JfgI]Nnm6+MEʺ##ihn -1"ç}QElj:^hmq+V%k9}91U4[EmZ۽U[X99ڶ(ú_nZM>S~SXo|bzw>jvaZcMg / !MCkWK%UUUEEEeeeYϲt:13Ks_x@p5ZC' t9JI UZgG]8^%e/Jnd|40Wnۏ̭i-ͭ:RSUcH}1`ltSa̡̭΄'ٗ;QJdlo7wgO\Z9sM-Cߣ45Է2;'*IgxT|qԢȪ:lp~397-$ R6_⯵қbOkjj Cy9gcqqK\\\222(4NI 99QhAO_ dff_v% }7+vg5D+2m8f0-+ٵﶰnc?fq9HIP"M4b+ḯfv8'D}=1se|X&[޽9M-3{ml4jj3؍7s:DKaIv=r~%ǰOZ_¼Kqo6}h?B[K> LOKNm+]P>`e~yMP+++gVO]|%>>bouN/hAv…M u5Lx1RiZ_}Slxw>lFrcsDEu+yiz/?TʎdGxǡkھOo~SoN,#BSj[%u;3 -}[ZLoMTDfSY3.64G) kw)!776H*VXBa_jSM7gJb}KMVZFӲsҒBIRB}UUuSS.ӊޞxtB$u[iVW9=nh !vjSP>%KʦRٰwľմvt%Ŵ^dׯ_ˣNE?%\Z ›7oeҵ94lÛpB_TmjwJxvʅo }u+//.*T$jH$j{ZWUeJ[oӀt6B!G>~w" u<̒PQQ^VVTXHפշo R(HNN89ݿqn⪊A!jSPy^ K' TjMi{S˴‚8,Im0㽼>}L誡9!Tmj'9Is={L<׶}UU@kB*0.!Z\woꮤT+"D_R! 3ASߩU`DJ?=oG<ϒIxBMiYePcn)kHWY4%<-}Z)(=`ۥgNegJҧ$5ijT@/)Tv{*J@0 KdKRH$Jx陠S+&+yAT"QLm :NG6Zz5[TE)M#QzKΔ^(=Pz K/$QzK2@`OBSBlS٩(=,44/5Y/ QzKN}ʣ_Il镊8]z6TvIW+8lQz_rI\,\tSЩ(=K/k/0D.=Pz]z%[zR.ƊQzKo --}bhJ$Ɛ(=`gNeSQz^R$1$Jv٠S٩Ty@`^!pDhlS٩Ty@`ۥD$Jp]MAQzq{H3Ao/ҥObPzKo z [z9JK($bHҳASߩ(=K$M$QzKN}G7!~>IxқNei+-LIm :)PznEl#H3AJIbJYb\T6]zSЕl(=/}BR& 'iJr陠S٩Ty@k.R* 'QzKN}gJ/k/02\6^zSMo/=D/=ǣJ"aD.=t*;SzJK/s|bAD.)TvPz@zKVHĂp9llЩw<>㥐a$Jx陠S٩T%XpM7]ޛC!Vm7z)v 2h!ڊn*&/ J5#B!<|"^Iy0ҋB!i5iJ95N}JŇ Ä|B!iuO(aPb0 ScB!]tOtW&$)e`w$ BmZy?_)#b(|= B!(ujBeSқb$NHIr!ڮTsD$ÜIENDB`kbibtex-0.8.1/doc/list-of-values.png000066400000000000000000000332051331300026200172660ustar00rootroot00000000000000PNG  IHDRNTO76LIDATxwTTWsuw׺w{7FiһQ5jMhlEf g靡o@ B'{spzQLJ!rXTZr"""QszƳՕr2B9Y˦,+-"5(}N.qHGy9¼> `ɖDy2B r "ԤgdOQs2iO&㹙4M|?؎ Q4/K*ɦ]YhS|tA`fǚ,jNL@}/p,1JfUϳu7X 7T9kWӱ =OFtB]mLKL[Ry V j_m;K ;m#9/~z>H,LNFfp6_ }n"njk;<`f/+ RHٷkay܎agѧH ?8Zz MȔ8NlVR`,I.hmmxBmmmBBUe)HN^]Sǧt:UNm=U_GwiYs@[Ǩygsmr637xoOL#L`OiBOs$OM6~ɸ"AO_:4yˏ:(J =v`{COD{0Ey5UFy>2ߙL-.'qىazSywɠ`z!M0}A~D19vM;x#H_fFg_ddg0V {IOA65  c'aAw7}QAL"" SS]vxSO6׿EAdRSUEN) 2>BgΚ/?~<{.מoaAAqqq¢1}{mVEKJXmJmW7w[om=]\κarH&öfk˛IZ㹇ͶT@AE"##&Lx+VDĶ 'uyyTu_d,<ٳ}fXL*3{/^}Vvb}|՛Ad}EgICuJyItR+U&e9΁pX  #ׯ_/{{ Ο?#??h__UpM1tk_UqbFS_7v̚=m߹+ MnoYai0Qhvy֝}nں  "III?q^ddsm=bbcYgy5|M Az :/_Ϸn۴qbׅo>hd*%AdRXXhllgʁM+ ]@Ad͛Rަˑ=U>K,$pY쬆zAAƂ4ʲyl&%tbv'9L&-d`@-఺lL1o,sD΂0=`z|PRn\r3ϟ"G<x'>_BKKf3S y`"{FF{>Wi\H@ (*͠<|@"RJ5@&-c#`!R&j%H$ y|hHߗ ;,3,1Y_q>"{PeYOcc rB>!^˖ 9gY{_gT}os "az=Pazzz`#scczv﷫Μ:ytE_ ߛMjxl&Qs75Â^mى߉U/~iK<{7aq˵t0 Nޭǹ~on]λnmGb|m3GT[S9=צw/rOӟ?mxϬݫD/-c.$X|f):So>cZcM t]s$LLdD%S=Ie{N}_ 'l|.>^YnJ̝ |e>zJL&gky$)yi`G"j"ggMWw7X:Ә+ ScRSlQoz#5YIDTR\0oT+{N;ߤӫПjӻ a5Ϲ6V;3s/Mw]aqٜg֛nɹ q8ܧ?oyAq^&--#8  ˖Zdgwݿ-271^9_/=XqO0SysSRPuʻUOaٝfJz/sE< w;S'8Lu8ĥjiw,53ԟ3q{tb,P|;k|ܑ`$ɖɊ {ݿVXXH?Ry׿Y5ww>yf|3C}96K{JL/?x/TUUji} ߫~:rOHKҞXƀ{Qe鳂ܬl eٳώaG;UMߗJ R#R&j&sXL%&(bIKҞ=Qaz@o`|f,sRc:vWݩҸS9͘ߪno|^sC=m]m~v⩍3tugԹ*yrY&چ3tdwګxZl!  s9LOj"Kgյ,R46~GPѢl՜sjƖleַYWHb{uJQ+u1q:_Nyss9o1|qm\x˛ /ftph}9}[]Aҙef. 0GA"B~nU{Lo9K_ڿ8>k(6Iui/-Z Wmz5Mc\iAu5ק}kMjy_)~irc4Oy^GCwpA~KEGp TqL{k43WLoA*L0i'&Nc ky|Y(,K鬯Iԍ}V[w1f݇BA2}TD΢oz;=Ӗpg9y oܙ^lk6bNߜ^0= M/$P?GjL/NϑB;<F˫nn{U@FWVNW;E{+[r-Y)U[Sw>`2q M5mG[ 7y;/uAnƀ*As;K<*v3='f'~'(G*NQ!6}{sa=u&qYw'd6[C+-NzAf5i\eay RR^__rvJ;"azrW/^ȻmFke!憢;S]&~c^9HeVʒ<ͷ *kh痙οS 3`'s%%:37ԶTq8UKqǭnjf}keJ,B5B*i,Ye4 tژM>M=m?Y;+YcY//}MWFT0v[2v -7=r7S,H0M"Hl „GgT+a#X^|i‹6/x{+ P;vͧZz(hhVUp/U%MJ?f4ŮziZUqNk[YQ"b|E yU3LzE<b7I{w>K*`3 a7^_j!.gNW1%{b;jʞ n|ܵ@2Xtf4=^xw[hI}=7˵~]gM5N. ݶ'75ƃÂ>N-1k=%Vfk.KjJ2cwN_sc[PH>懲ͦ IS5M/ӶX.}C YӍ\nlϽ8}Ƨ7: 4Yz/w&3 Ԣ=*[m染q5750Y_H{T%qsל)w$8Z}M^Ycٻ Y8Y$!m/dump㋸/,`zcn[^ee/A}AZ=f,)$D߽o*{zƍ鉚9=Lٗ.ӓ}x3rDKkƪ+:Ʒ9}Qcz>;M"dҺL/di=1􂏲DJK%|V&FYFw3 iO̮0Ɯ B׺=Uqbz>AZ0}kk[AAFA3=еnOazA/g Ԣ=*4T$#X L  DlFFy,:Z'P.ӓ=1;Taz >Ziz&# Ȩ3=w7=;3H{飣GifzYAD4;+C5=/&pXq0,}<1ױ,M.&Mnu(Xf0#tAFQ,*LO\!`){ClE=_59dӼږڂ􀣇 0= A}o68s{U|+=YiQߣUO֛j2^1E~ݐZ:礊Ljb;ՓtooڻT_pS]L:ǔg|P[yME U寇 7}f@՘4$9}bNar{}gU3J[jd)r}&~yUmm E ']l7%UQ26~GPѢT\||/tFa[TZ㹇bFamCazAΦw3}:ϢQPnO'ٕ$Q>[*2:YYMCN.Wz7*{q|)&A>o*,jL;K]~S`zAO5=49uezҒV^0@izIPsv29O:e+FUtgJM {]ykwY'(eE\5ɞYE]2A >4EfzF:w)>]azW䦻oӓɺpai]Kۛo*.5ٙ&;sgNNo: A1m4B=Uӿ}S3uSW_?=<{Bqֶ]zF\xs^EKKlrlߵ?(U~q{爓Ku^f:zH0|Adm{=cOaU{#7~+, u-۱]. ܽXOpgfak`/0^\ͧZFYSߧ!D}zA 2}`MO#P?CjL4=cAA_:MOcҺ>b7ӧ)# Lez`zAWgR ]szb(Xa0= 6A33>bIKҞ] # 2}iIQ_ӳ驤GA1oz#rXT.FAK\ # X5=q#!UR<pϞȡ?#-{aL,0 wZ!R&j#v⇃Gd؏/)11;;;iI+L4}HȦgaz`44}M߻o P{bzҒ/O4]RL?dFؓQ N@ChzNPm_[{lz(1=%Nӧs3iF/"]`OPLU8kdr+훫{Xj W{̞9K~Ϣf"gX5z`z0}_ӻ`k#,]_ZAecM2rKf}hյWVϱ?Ȭ9a  izZ:}mO#f'~'g8Tj^Wsm]{MM_,?2R6UTͥ2*T 覱7:i,Zm|=_0=$*B*2!p˓&Ͱ_w>_ƙCAsN#ى߉G0=LM/13R 0=0LOͦghhzҒ'f'~'[[[" 2 B/3-ob~X_KgyTڹzں&.j=߱:b%z#>N?WaKKcM7~eN3+;ӌɓf.vfx_APORى߉G֚qǶm EIgwŔƁ |H'hi>'f'~͗%Vwt.jMVÅu-mo޾x=M\xi*qTlXszɏ*io+ni X5p1HKf1}k59WX[LtTֶ]zF ӷVnknK6m<՗jeϞP^o9fԂWmM'>~oYxAdz"hƦ'-I{bg+M2R L^3…b.hkO3wwBSUmeчWXjiO3[K Ljkk-W>߻ S{ydT[p;o+OPOkl/~-hnW3vعV p;۝a~L'-I{bvM^ZQ'  j"GCӓ|ꤙsEtAA>eb'-{4=AuO͒\9wU ~$ٕg 2L%2N8# 3= 7G!7] q=[7t;- iC5Ad#?/.zQ/,E<=% GAd@уB4=|?okinHM8Ǧ<%3~{%bvwby u~W.x3}xXQ?޺E+#<]owoFN0=4M\- ܻP[}oZObj͝.z3m<|W9LhmڇV\][~ejL_>dcu:_[_YW cm'IHlMuKՙ{lo*oT闙90 Mr4gt鷲 L:}5;YTzg}j LO::^uߐuaUBVG(v'pͼ^|i My/sjqאw7+Osr LߧGW &~2iO>֚𱖑ǻ/3AS}e_=vDqf;߫ӧ2[L15/ȸީ9=\!'30_>+חZo+k`ܙ4=MKJ$hxulezIM]Is0| Q=N_#mg^7V=F_fB"AwxA:y]Y_}3+1,F镎 3hj^Wsm]{Խj3 >Wqw821oÑ目H PxvSC=ɳ)m[iW;mYr[m~?Џ LFl!@#IC9DD͔1;;}PvqUMq5sl0k46Р^^WTY7/2ӟh70EƳfwc78:'MD J$ʊTr,_^ۢ{xx_? ov䧉0PRhiNZh);P,hPb H1roy3)i&ކs>y~b$NL0Y7We\eⵐN1+Ku^|~Ib0v2zxRJ)R~ a#0vPX Sa+0j?jz_m_3Y^FDq:-N,d֖D&vS3/ovN>v>*RJ)D#a%̄0T ca-eNhVMh=gYǷɌyWCFɗ{c(^}v<>->~i˷7N~W)RJ)&F +a&섡V ka.eVMǷZYϟ͚o3̋,2&fw۳_OwARUwO6?vSnVvUQ!>0j` 8ºH R h|dU*AM$pzs\>usҫ]x"q1SoOO^IzU.3'.C  fdSp3f_&WNx3q+8\FX]On8\ wCTp+8\ )+Ъ]4jjeX \cj*9cUw%Kfptxl2-<~+i8+&l&- vrKH3#wU] Zp jH+@ZMU!E;h2" ʉ(`V yhQ *2*ʂ_6yJN/d%hK8#ɘHE[$$(H$S}O*a DE yPm9 *(R(üЫG(w]&N{޸E]FGq/Zl \ wCTp+8\ R+ViH4gbocy]̫ƌQfmo9s5S-AϿ<ڙ]6ѩ_4Ų)M9S4h y&Pe]N6Ţ ĢͯlX8e˃%JK*)ʥX0VYeWM2DRLhJ&(\20 )͠hD'#FX4Œilt)_2 <6cO$.Lp'8\ Nc)p/8\ N7i-d."MU,{դ|+'ݔ3uo˛mصnzTv?Aه:GZUYv4ZVWhVSB4h^4j:i&PMpg8 9`)fl&%S,LPl&0Z6Mx{Lp'8\ Nc\p/U/ͻ؍+!r!Xp>dq7e,56eseӨ).K'藐O1 ӈdR, !KqӔaL /f6,58ڌ&`)WH4utS[򺮥=BC~ha\g ej4j MНpF n )O r+?yxW.kxb)!:tDFddH4jhAXƍ.-|g䰷ctFuMS4[tΪ~ior?Sþ̊MOittmuUPG{;:b!hgי2hs5RB TDs$&M5MpJg8$$_鄬Igx./-ukr2_eK9P_GI55bIbĜLLbH?9l\BTE.Yr4Q{rרr߰mK+84CXgr7:\ߊ4KhM,A_8%ENȟ( :;;i=wӡD}~:`_V xV[fVkqP 2b)/YHfi̚L8;,{RY*Dhq35bk:p&k* ޻;k[^S|9yr{ FUqlS4kO}WQר<K_|\/q99MӇ{Ykon?SKSwakBg̅[BkʦMd7%i©NiO 2{#-E&$?ꩶ&G5է̙Z%8js }gHG?BMMF28n ./7Ȏr?+{XAϛK7|^>^EEi)IOv3X\X0d ,`N或Ld)Gc{N*#ZrEnhAE y%szg 3XplknL[7͛s~r:ϟ5sFR2oz}8)fCc3 &[hJ]L8{}NӢyn" b=>}r;[ZEɜәYё|g7gS6_VMKj岜 V|NxB%G~weK ToA7\w-W2VjEDm߶fθ'W=APqر'=,z_!8Ύcmműۿ ݝOM> s6<(betbś~z :yIUOQ,]|RYg1_]֔LdV8zn7҆x-/F}p6=M>6e 9Zl6S__tnrg7n`3V<{QY\h:HRAד`L2!eǶU͍,6;Ś jKאzfL%EK G wS8y<9qx5qfVǗuO6~2^5])"D#P$GJOpM:N%՚͛6ܖͯ>OOӯ׬.86xzV.{1rY)=Sl/{bhE4];0|yF\7@zf SL4GGSç5ԂEf\MEҌQ2M}DPǹڪcuı2\GL6PX #+o@23=#-ΌnqSc-ಞ:>3'5tg^'>JB4 hL5 15ч} SLF+,AW[KP}^Lea8S)RQR.rH:y2lCpc0q͛KqvFkӏ/~57Z XBc?n->^A}V\.m~ ^CS7bG\fr[4d,[S?eEQ!h͸׏L3e @_l'" gp؞ )/),-T<@dkX2g6e{wщǙ`-+>}T /l/]JK"9shO~5D!P(%}nFi 9l2E{XTk/h+=}E*U% xw%}i{&M7bl@(%Xb)!^@,@6)/b4%q4cGhz=bb^&cqlE4EMS4uHǏ͛^oS'=tGey߾m+ڡ=61eM` /2)_^+!ҥ̧X@QEGG;X.ե(`2qٙ aJO<<ܹOO{%O)^-P{? {~뀘x} @• q q-D],Lt)XiXeA0t7iJWfm6E`)_c~!zcz w,pߟvws8vL&?owu!gzkM?9}Pk?co~_U-(JΜ͞>N4i3)NO|BM,}nz:UVZr-s-&mPc .m`ڸ`1٠)'2M@h}mAL5~ZDӏ?oJߧ?O<{B^|n?NN> Ag ezLd5Ō/sMۿi/~M_yY.Mw7{ ΘjɧDM-)FSV其8 l1AJK> e=fSȼڂf<4t3)g<:3O)F+[ǚDe>|j%3 b*%h 8KNj3P&FJS-{"7ܭ:brцW+w׬mn2vsC_n7lvn]ovw6̗h>L3=6c=v{k~ 'zb|rr"rrrġH!1AQ SKG\O/LRNN t(Ghc7wfB%pxE)AS,Sjpnn_Y8YQ7ljݖ-JCi. ʔhj@Q^>9{O,E1@9B9D FwF ztGDBH`1dxXO-qyIKS E4:On9@)B9D9HJ9RV{,Er@rHrLrP:=(X ^*)h*)'Gg"xx^>9@9B$b4goHSB`4hRDɤ &9(/_KM/U@9 g,>9@!j0JSS>PNέ15䠌Ge<,eoRZ7/?Bzw>AŦH֧q3Uk~c <Ԗ5jNjZMnj^A.I<AѦSS$A`ܦLWW[3nTVF>%S *{w+YRj)h gΔ3:sy-tgƧ?@9B9DS ?L9XQAD78R@LCtPT RB'v `PP:()?TUchT4 &%TT2~j)\*%h $tRP֬DF0tA$$Ǥ?(ݦea2X򌔠)h*%tFӈ`IP0 MM5Vr5F5GL&]1 @ tERTJ4 xĶ '~#C`hPjh暼õg5f|JʞR*MA3ܼs)tvSY԰יp0}<\io| H3ո *@W+ib6>xcїj*[ HQ&,H vSqvp2$t[lT)h )pOP;HDF)H9L9Tk3EG HF$eJJ/Xxò߸TJ4aLȢ0?1S5SS5E\A@X$EԩrA\Ą$$-AB [s?&/tyi sE'M^+}-J+XO,3((\JYTC'@sQFcyD$L e_," yD3H.J(fki (򋨹z_L5%C|7ec( D@9Q2IH$P]*E,ADSD$i%L:99i3A{{u%M#þI FLQxZ9(?<96xZ%\LH`5JJAUr(9887UkDEw!v\c ^lsw8JuC@"ǏU"'4#D2$ȅ_(E*hhB&oߺEj2:u]ɉ naؘv ɑ%ZouvE_>}T_[Z\TT}jaA\.Q_,F޽#Db zV/2j,<O'|RllN B$'xdI*H  )́x=}J?~9]v~nFI*JH>xbxghǡ#%3_5~Dr& ١}|s.$O$:Bc(pY(";V`9~ Aa DINGD4e&fg']z&SSO4J۞Hg!J}BRL\G%&M\H$Ƣiɨ.;FIئaFvy4YuR!Y̛WjmEh %#Y?:TqUAy:]xQqlJj!Lŵ\GT2}єuh>$xP/a'.7p %Q,x_/ >VZiVPo,Jˋ FeS6*2#q$mRED4[M4ùMs b*hbkzޮCtJdV4ES"ќ?Q+r^ b7Xi+ M"_eE)Zl6# >[۔^J+g_W/ӧOt_^1 ~Cl фLޟNj=^/k"ia~FG1}VGz=^)ml~LV4͑D{hD"i((K)y#Qq5'9rVWTAVٲ^ĝA_c,C{YU?MMT qf&34]1gàT vX"l0V37;۰`'CH=6U4%a4XJe~; l:{%E S?~>H؃ϘwٷohzjBͼC0@E4Ϩhj(H74=5e_ík{s H,]I4vXIލ" 齀 E:HY/G!Wy̞ٳKae3s;ٱ'rV1؎T\Si>s3Ai2..mӤSlR{Jv YoǡQ^5ՇW:0)4o24cwfxu2eh$^#n"A33['K-xKnz_jE4Ӣd)"IM7S8{Q4=Ս<_FZzr=qn$>T}8(ORvD(hh^Lg7WWkO}bėj9v44p{r23D#-ʢxudD;\\>OjWb)5hxD",zD7rE?iݳ\M+ tdxöc7o(t3kS ή 4Ԃ5;L$gSLj( vX342^]1f6Hik7D4?pT>&&"LnnxpNS"y/,j> IOIo"5[2D4#9iҡ{ .=u[GXZs1E{i?J":ER77mMZNZx2ør0+Hj>smWI<=j-l-D|b1z "?[?O00nE4qO d,k?;c5jgHί ə ZΙqW&6sչ֘Z0gcTo^"VKcʷ6:>RMO 6[w Zc FI2ՌR]Q@6/,ܷsaRc.b *(f}4Ro+rvà><+&$$ LNR*{DR\=b:0pc6U4$[\Ɯih*d10Y,'m36[Jt.Xz$gOݫ wqIM6vFRj{cnni~he0:[ƛ6σ7y򤀌eԃae\p?/Y6p*܇rK~ ~w|fYו)w]XrøqGG}痹S /&o *{|?ӼZDq1 ~73[BvADSDS7A2ö0b8{.cjn$ d vw8lߘ 8h tlveݧƸ2ߏHJjLӾilIDO2'bۼET^[r͕qhߣ]: L5C-<9Poo֞š6;[I:qMވfObjT-V zJS2J0U#/Gll[#|80J!5 8qԩY"4i<(ǓH#Qnf0|o7.?ʿIȶ{l"AS՜0j(˾Hݮ#,CH)ٍbY>Å溎b}p;p?~6|b3%'y'ʽJ=p8)o_4AngH_MyR36ϡarNALlmF&iL6x-MnO8=]349KkF3#jM45 s]+D6ɚ̀d<5~< K R;Ǡzenw~ 1C%L4>-}VQ(l<8_d6)(4heIKﱓ FQF綞"5OaG*3oJD4{TP7rhDi]᭳ ŵv wo̺ܗcf?凩9~npx5C?û$ SٞxOi[hh B1{^O&mXtf}L?[ qe棚CyFsy3e1=lڛL|5T=qssg4_kL߸l>l6DRWlF/d@ 7ǯ3㝠'rg4φ&ޟ૴%c#%xe͟Nyo+_,>ܙoimhQ4Kcg྇:J$,bnb +,ix>qIhRIAMBpNUuBJǦIu.=m3֝%4mvah )ˏt3 E4)'m~g3+I)y5HT"YX@7/e1 {7 >~ˈnA6Ab9/߼˽4/_nC=vӻW7r .)w$@&: !͠wZ=s)&{o~$!(G{Lj:#); 1҃iˑ{ű账m;0ޗ_/QiEo ]rX]ESs+9ՙ>]?{O>nf9$.15oUS\0N2f[p 8%{IM|]sbg⭳HT^2]3nqJaMz=Im M⏌r:Ih YThB]M/U.t3gC,V7MgEwv֧yPQ=IXX/$ M(M,wStPl@ƷΞ_6~=7^D%"F%^> }nXɆ[ ǡḽD4=}JGN@Ƚj޽H$O,ϝ&=6 Y“Dž)pF?=M᭠yE*ތqۍnLq+q%Ìާ\K{r^dR?YsTG=;J޵H$ڒB5Qzj2׮rYyP$RG,).J:CykyIf+ BR|,ᡍ۔PWfS"`@5)>&ǎpanP!-5#*uSCM߻m6um٨~UٷgQaJ4!%1cc( ʵ%51^QFZ a78u7ŪU:)RMp.=MDD魲skCPΟ9MLd  ,%U*Jzi$CMSǏOqQ555rq e}>2ANHmV y3U'N}Ȣ)y}t~y3#- 14RNirw&Hs'E4AAxKhh^<}B_4ֆEWs)}ƙ_TAH䃩@AADSD/W}i+/sHU]Y~Ħ{ [2#dЮo-%ۘdaԝֶ4p&Zq | מw;/Uk7ES")  )YRvD3wLtTJ"/]dX| * y_-MTߢG_>XLNDn1])ҺW{%a7i 9ETUSօ I(Qoєh#  )ZEYWv bխ 7_uV]K֪ |ɹ#n1kK9&gГ~f0d+U,i:C-ӵ>];:&MAASIMJ !6FAR/M"G"h 2e{8| GnCUW__^W&5SZ*G V?e KR$""mO"h 1j6S1߹:~O9:DcZz=ĕK٫!((S9gaDDSca;g'6xLXKd|״;6Ǝ//kT_ɨQ>mۿF$:ӳgNgOu#ϗ&Νjݰ쉺3JR ""M7M<%-5w$"*HBeSOg_!CDѬ"{ N)QMim}}袩]"cȽHKOrqΫ`訢)AK/BG"ٴ>kݱulfVFzzS^y8|b@7>[qZ=KD#ͩq,p_] {:q%bSۏ?s~C˙[ -ZۨWslܳ+z1pZ}-RZ~$pmGӧt5a OzL$ru艱0uHLf27kֺj |0ŹF]:cbƒɔj3?fa h;7˲;]`>=)ԡ+L_5Vr\]=ڋw_RsmGsaM:3n{9]3{8r&~uBe?~ Tƣ̙}N?=`ɥ 6N^jU/|na'4{}Vi7wϕ_1ج;>ް퓼(;[c}[2|nb y/NWa6+Aո;-!:.c)&z|b5;opP3)Y6^=Ŕ6r@ik/޺hhhhTnZ~,_8t)?ݵQEpT&|-bHtu[ORÕ֘XxNۈ>Obq\8CJv/wiٻ!hh(ob') +8CJe}eW'Xs>$[13%aFSfۏ=WM-O>8̻@ & G|NHf8a31i9ָLd_I :grE{6E:l N]4KkmblWSKH*lgI,uj~bK( z۹\id,g񸢚;r~ZOj[;~ݱ{T>8,ο ܘM)1繛" (Oe`OvdWR}C-qFYomX=ϸ|w|cl[_W_{ᆴMnhˈZC5<~KxWzFNr>.l IRښG>^~ʶX٬4~Rub;K9ָ|keƔ &]$/$^n?OPͲ$Z2suRKAk>nʫnrAں'~KD1-7#gPXύm9M]H,~g'CqBy.L'ΰsG:%0:j>e\(̗>ë`.6-7Cִ[xG ZͦP|L7Xʟy/PUۇJ~Jz+7).z&)ПμhToMʮ/M۶q ݌SX*vWDDfZܭpAh1b "ET'Wͦv .^g ƃvcA4_* Z-M" diU']a9vU&uO>Q EѤ,4O 0+ylW_"w0o-Q_t6|p&HKGtQ= #|80J!5 8K);,x2o_kxQYngh@FZ)׫cU^j"|nd]f0f5.eIs>ތʥf2e5kf ?81\>1g8.dܯ'-,0|b3%ǒ'^uS3v#2-|+&i)mh3r8g1r4*7]oaE.cGfxofdi}!kݱETjr\ ۤhf4/_`fFHE$\w3dn}cj_e9"s]X۹hS='ZG~\eߦʌfS_~KqF^`%3'4*C3ҮX[%5࿿bcu˥D(i6ȯ48KOMC?Y C\8XjmVLW_k]y2?۰lETBmE}<r W-OIZb 㐧c&{pFksTʢ[}FSv}Q3}QJb<Du%,si]Ag4nא|{gFy^jgsvr~2GF #$f–< 7Ɛē pϝmJ[CM~Jޑ%) h?qܴZͳmxn*3*WDD358z*NYr18 8Grh3v3ϒwv hjxF2"/IXd'HL$1>kfZז`=j"II%VN1:fiX:'Ns^ڴQ4g4GBX\3kGayx%s\%6)y)ftswI1쟅dE4vD4v{[Mcf{Fm(L7?$ǭ?ULWgTPx^Y4:g^ +,cds%QJ{ͱԪJ$"FFl\~x7귔;/E,ǭ?%6kihK67z(!/gzcls)"w8Z}E`c;7.Es//Y;g6Ǥ#L4E4E4)#e#6*ey\_\W$S 76fnꢩ~3NXB2)h$DE"9c˚b?d,=Msâ0xZ%7'sPlMfb+N%pW:XOO}Ѭ')cK?gF?=z;bn_Suh.4n]3nEf7[a{%oa;giÏkgʗᢩk55k[0C~rR9!*^Ҕ=r7ŨK?]a;_϶22.sG :i"P}=mUx{RXw߷~ln mFSIu3Ԣ;]cNawukZ|B4mv5zG,b}%$uNtnE魳 L{WkV]U"|zNu 6s_ӮHw?{Ďo|ko=/r5&6,ݰ{c1&i^&~`} q,L$1&rqT<,覴;gpt0ԼMүp N1_/qNom6DfT`oQ\z|"s5h*o*|tV;9*vI{VWM ZFŻvMXWWy+")ND"D4>y> dhܫFLjh~Б<}XgLMH4ܹsO&΢hJ$ʵfJ2׮^Ғg(..|Tu)~JE4E4E4%MAߒMdhٙS'"`*kLb\Nפب=̱ÇHKMQa#(uSQDSDSDS"=I1DG%FQ-:_n$~#Ǐ?YANJ)P)[id&M#Q}!һWF p39ARsR'^J(+=MDSDiGХ>=z;2UL.}9m׷D:E4A =%I'AN]|&)͂SiC^M*aD4%"  [4E4E4RMށX£<eu,΋~gL~-Z[igZ9Lۃ%280V=Msug6|Hu/NI|ImSn0/tbtRrVrJv3} ;PX>*Av{/WYw3M]-K܁5׿nM "  ""m{!P}0H((%i="hvޗ~Kih5XLhn)Oӹ RJtMc\^!gзk!Y1Y'&a'UdwfvR& }uj~bK( z۹ hG2k{x\QMuVc?-':2R~qrnb_O3RM~9`5uƱoJϦ~dD4ugCAAq"MMM:X= dX"ʖ*^*{ I)WSXfhBA-Jw0-|14sc[NS}kqerA /Ri]EiSGތp8z؟Ch}""  *OE4E4aF3sHlp[ 'i"ݮhj,gB4f]:THՏna'| :zP{P[h  hhO<8 q<ZA}FSKO"5OaYN9[ ԎwXQESa$*‹ 3QG9g4uAAѬM̥'QRa1q7T4<$NXB2)h$x~}=ªj80 M*0I[)T_.\H.σ1ƕԵE4KceRlWSz/C-j6=K9y/ e$Y6&$l~yFSDSAADSD9;^-|f]M/U.t3gCzecp0kx7(mh4eM1҅CYa;_G47MgEwv֧yPQՕ~ :ٸ-oAsu[یfa ot׺uV4vAgtfʵY#  fES"weUDDSAD∋TPԫ#f}oL%=%\8%?$UϒQʼn#y3!`þz:#8r|U{o={JפXn$SRRL <~-))Q77lO"-&at<̻ѵ["`hƞg=KErS/ͷʥgZ/UW2*i{׮M+lC=Ms#KlGǺ{&{dNw5v,DTiTԱf]3co>d< aGY6DDGqLJ\Ӹ8/Fa鴒ʺ("J3o*׽mtD,3+OZȼ|N7|FWb)ܨxudDMy>WWkO}bĿ|!J{Cn0/tbtR7˺ M.tdG,S?f,i5k .1ddJk#٦FNDЖxpi 9 #6p#1ث;X4ʞ>>{o{~텽>Fq?¡΂ց_Ӯvŀ/8~j@WÞ~Qml+G0wgKֵD{m[9*׾Mrݯ$ k';װ3z=pl @E-h%>5tA|w!h졎E xZ}/ǮXV<͜k'ztKmsey+Pr[W6fd׵tT}ٹKD4ծGIDݸanZ(,íFq܅+1ج;zx6l(7s`cO7c EtC g 50i+z3)a~̯9-&^>g)&z|b5y;B-Ќ~2ťr4e? @ik74Ա""mv˰SDuZ)'m36[Jt.͍ʸ 3XXIdwfvo& :>f'&yaᾝ;_U4KIZj终) ݟDJQ?V}&0چ=47C+TDDS!w8RLry7~cL45#%ڗa3nɚ~8k\<>ۅD86~~/cLGlH !'X37s~X$]d˗V~ydkZ~~O3w|-Uk(fu1|AxQh\Zhʵ8i^jKi<}{Q_BBn̦ƔD}˘MW\v';R=vyZx,BNQ)Lo> ZCγbNLO5DmŰg˓)ުW徧}G"n\iͫ9\8iRذ_! oklח~ [xxO0˨C)<';|km'ɿDv,;Jw^븚C~f(f0* ADSD&ٱ` tð9C^˵|9ѕU-K^7U74sc[NS jqe:+} ^#,Qh'+[r^ w,Kb%3\'5$"_r(>bK\]5y[K ݉$.> Ill \0˖q/J%rkmS60f*c jƜee_&7#IUѬvyRhj_TZu_țI(}{ѿ;;t%saG>!p;U/x iñ[G4̅\c?ei?6 p6^ֹB$"F%Ly773!i;̷wfmE~7'g .';?xF&=?KIXӄ&e \0yC|[Yn*E4E4;[gx8 C@q8㭆İ™#ͅ#?t㑄fcHDk(;Ip1rHdFS!C#1;⦒@Lhix3-q: 7;n~4Gѣ]:ө hT7ӿ1g 6t YmYuZԮ*׾{A+~g;7SNt*j7t#|80J!5 8K);,x2o_Zʱ[GoO*Uk+E"AnܺPo5.?Byl >Jf}.3j2Pv>H?g ?X1:ќlױKWOY~a;= ڋG{'}KS3ADSDIkGdWN9[v߰h6)庉h//-\8X"7f?e؟W[=Vf4c1ڂCJ[g뉦3mqx~m793PfoE "uELD~uĿٴTx)Ck_u_yd~a$*‹ 3W_^=>>ʒc'i6+::C9~q̳Zԏr?΢[M|]HD4+*xp?O72/hDi'Ov̳s⏨r#,s%ph;K6nߤMko#rOk ;1id/}?7Vo]4=lh13-ɉm (fDXO*zMzO,ls3{e3+I)iM*0I[)T_.\HBzMJIXbJa%1 h:.IT-c+3*{YTV翔~ֳE4?Tl"B#[-'{bvvsSs\X|)Qjnɜ]w'XK_g4{ZŹhCNǨ>>C7.X#WHJ".V|"ϯi<ŷ,# {&hFi#sK}w_tèVUSŁf+Ck_uUW3ʖ>gEqh%]5c{{Q :6qtZIj9PƺOKحj穲yF77eIZhתv%"gTGIq1:~A4Ս nτh mkIYI1}pKvCmⷺѻg$^:ӫק CM/tH2wdwrVӸ~K?n؎[4$%(̙ 1/"J:CqgOhh n_| n}p w*k`oQ\/W]@ Nv:*߬hB]M/U.t3gC,mc։/֕yv9;`i"PͫG"3~hɄj37x#$!g2̢;̕/~>%ΎYWA3(o3a$?!1-oR$g3C΋,YN"6dQt4eM1҅CYa;կ}MVW_卷/-eu}f10@3Wi>jy% I,BeGhUcS_~Z?ȯ~l}Y뭳ʛdM{VwZu|HD4s 7~q섾^7,ܦT^+vݻum3beCfl"wĚ! ˷CaoM't^W8aى8r_v` #)NX~9cR[M͎%QQ`D TɑUCڥ?jf4*:jd;Q"|e˽j"""{$MǏ=',t͑{մ=_4%CHKMQaBjj WO^4J$"IThoAڒ(51@9kYgANJ)@|FLFZ iɉmcs_]41ڎd4JkE4-WF glT~׸|񼠂R'^J(CDSDQ fcp=g<˹_X">h ȓR'MD4E4;h=Ɗq iME28'6ݻ`ݒ?!Rּ?[Y7 LFWM8¨KgL,=Yx0Y3*h  hhv<,M``NWIK|1TD[Hh괭q,f&Ƿaw6Eϫ)͍Њ%$Б#AA|BFj2iI m©c+ԙ8V ~F)OGWT"UٛpwXHJhm75ڲ$Z2suRKD"yLAAxPMԈhS4Vc(M +Yj(;Ip1r J$"  ""Mk_hͲf)К|m[KqEB)2MAAMMM(]xPTUEPXd) K찘J* ct\nII~܊c*_J?"MAA-D4E4;h_/L1jQ,99ue79`(Vݺ`͜ qշ꾭f2.sG :i"PMGDDSAADSDSDG"AAєHD4AAHI#16pANJD4E4E4%w A d]=r#W*_|}on‚^隤SZr%%E=UPDR7MMMDD@Cٳs;ddQA"#ٳk;7tͤ㨩g Jz)uS'فDS)bzj2I mDDh G"̿‘CHE"\[bb8zNפ={FiIqק:"(uSV=}XD$RLMEt֧GoGF| hJD4M2@9~O<"H$O?V5#e63 QWCx^UOc;7l꯭WiC^M*}f4%MEƌǝ }#LepR'lڷp)D"ikx(!&GSYQDžqǛ&&;cab@7k&,;NTvqDZʨ}1Mm@v`18}C^ ;>QqKJOUF=lO8wnahY{==q?2΅y6V0j: 5K#= 2xDj ۬ʝMcD4)DDQȾa\nZWyO\ִ~ 6N glflD߹ϣP:{݆$la@/Wv$5,G'"sH?3;b'qKcpn r=A9J[!)M]I4yHDkmSB[KfNj~ 5}ckN?I)WٺGތp dwĖ7υWQfJ?Wêr*G?p"\"<:o=D$(DpyÖpZ87γ\hw4!;ˁۮW4ꂩrNFx#z04-K8g[c>Gux ZMc=>?~Xz-8!_!Jx.̴̫xLyJ cָ,Lc0{lD",|YOV;o$iMr7oSа_!?b9v=9ql_pm/sI;^F=W<[kk;Av]_aO Q!j+6ⓘŽ`ϴa79vADSho;K(K' SLlư}˓ª,rbj؉.)/$t6^)LRHMi?:HM F.t>xL\drf8;cQXQ4{ٲ'e{b\lbT :ͷ6>'z"i9:c?h3wLvz2ǐxmtƙ޼!"D"=ȼxo5qa{ݦ}rgQ_ˋv ɹG\&V^"G3qxƅqLNauXՆS$drrXºfOoVM@4;8 q>Mdl*"ff"|}={یќa=f3geZzR1 /jH$ywuy+"yi]~ <-GsS]-?9{xuwVn&As˝G`籇8xX1~y#f{lV_r=S:9%:[i[}|,)I[?Gs16u>G̳v~TY}1 e-u2ƺ{}?]a10ٌ&$K,Xhq7/,4u6S-2Q1e$3'm1\lcBh.&l.>N"OެgʐeG i 143Glp$mdg慙X4~͈Ojh*h%AB\wi W9Lp`ťHR g4":j'7^e 7"DD^mH; <+ńfi 6X $\1}pͭ,b7wOևq'Sm䮲Mo^ɠrrnsb>V_◡A 7lʹdn߾IRa~=cR[M͎%dVd4Q< ==C̜?S/!x۷ zԅKpLN6[}Yo'1pڛ8bϭ`SO5ϴj~؞MYw俼u6hj&3MAA%""tb;uVVRYI=[~F46lϨuDR}?R~yFS"  hhԼ vvL.|[gו~ :>g4kЙn=r-n,A"AAxhh*/yS'NH@"AApES)bZb_|a5)62Jx־גb^J}#51"hFΡbs[PfeHf+LPs&s9M!$:o%227 BdD8wlFuIqQPSSCiI1EϞ *(uRMf#ބ"}Nă"n`S=;ӵ{_,e]t)Jk1o[>b$"‡áEqQEADGrx>IxYl泧uD())RODlg7U7@NW_<㺅3uӴ:FI")|8={m쫃E":sO*ZO+"TUU)S(ٱD36^py#i! 0eI޸YggZWn\b8WzuCX^Ƅ53 ƚ>f,\9&b2qr]cal1I𾭴 7*"ѯύ}x*E_c먾8-8ITf]lc9zAqXc``g"1;uS+pqʶȡJ߅*}+}ף0>@EE t#Ǜ/&ɮ:>~cI-|؜=VѬ"{ N)o-2ر# E5烫86*ۥʮ\R:2hh&od E6f?Y7{`ᲈ+AgY҇k}o^fn jX>; O j).r:$i}Y`<{wð{o,gp!akk^/cml۞Ӯ}jEiEe[s{ShVa-scKZ) ͹綣9Y[8߅<%uG.bSܯ-}=ͫ̕ĭ:0uWUU]{1pNGwI$"u%,siSxZ-M3kAf11aۇ9큍xNd= s?g~W~&{=nȕ[D\gL1Kn vf\2]1fS MvFsꙌToy_u%cc!FV73vBDD] 4+\] VM 8xEP"TWc)6-0X Ѻ*SZlj+h++?8b9| GpS-z80HrG "aq||#_ۨ ×q?eDiEe[sӮhUB1 ‹ORK_Tјoqsɿ1*ˀTdGvvmKר'&L2yy2eڢ-dwfvR& :P$͇yqA43g(l#D/̓2 ˱Kn7;?n׷δgx!yz`en g]v5fXY0&'O-,"Vb3w2M b߷8|{{J{PYY!DSy5%!NʹhYHL.f^,kxk[nfoNq*4}WuU.k?c=f׾E[|_q:DSDm׋& z.Rlr↲vO=D뷛Shڍn{6v{|N1ցe⯭e$΄ja>sjBbc;Œy{_~=mGE8[ɹ0m>iI4:Yv1n)"J:# f/RKe-bnn)K|Ɓ`Mf0<-].:7˕\%}b-f6FV耼â)HVG|1q6eFӣ7ì1k-El)vu|mB3ܤ]: *~9Mo̝"f } ] hEe[ĶfI2+WMpF%ğwյ?cř ꀺ'\`ŨԪdSt~%AO:Yd,-&3ʅnU}/;ДKDVߪۆ3G_h?C1ƞHD4Ͻin1i0Aij|\Ju)'JZ}Ǚ2QGc33ao;QrÙ᳁ǹaiW>΢C?ޣd2T3v-fބhhfK4&4pV+cW:"oT4E4^Α<9~.?s׸7a1pe%xcy> qAfC8vom'\q\grИWmz)a/5Rjx gN{g4BfjZ;I]̰Yay`d`jݖ4uFSeT~vȁj^5fԿCD3nnaӚ&cӴ5d2ǮkB3^ ]AoQ|;^n []$dEÊq3k/p&G`oҕ?"3F4+ul{FoL4E4cIj3Oyq/mcO\1[߈hh8ڶEFG^7wsqA |2̙eC-'? >̗NLy?fp5B3  !VM#gXy1̌qޗyu_8JaVݷljԮڶm/ppjmle:6qtZIR tg}zzߺ>_XIea&,IMm$s &m!8r S}ٺp! %DDqQLF4ɽ)4BJX7'ndh ks;>qid]`>8̽LFC{ћ\u!N'r={~ Man8eZʼndJ!<,E3M?7J% k)cR[֙& m{F D4{ѼYʖgl)bg ;bج|MVHD4=s`HQ$7v Pӗi_…7m!SD {4[\%AǁEp۝n`j- =,3= ;\NTE=K探ߧʛb{*.ވpm>D4IYۆ,Q4IXX/$L39ܖiWQM0?6ݶ*o5cA:&oPtOo)Ρ7DDNvn$3yI9n^e7쮇ax|'/۳Wdb) ˙Ğ5id%s>cL03($12"9b̍覴ddiImYw*+ްhhh E6)R^E2/gRS+*f.3OjBw{(YUY+2NJ@Td4Q{mK[$۸G"TVVhx5׏D"LWvXT^z6R$.9rzGES"(,'"?/69uDϻK^]~"I4X̹/r}h*?m^hSZ?a/njS\UFm[\ )66#)|H.k>ٱ=r#W*_|}{wg6]}k"NI񼪪Vגb^J}C{)1166hm 3sަ5먲N"MgGc&"#H DDsftM !6*jJx䱠RjnJʽ# fLqmk;{FDaf ͇GTW>!;(G|IES"QGwAؿw7Q7RFAP-ёػ[k={JQ=OP\_gO*{+(W}ҙ_WT~8ߠhPuk=8}عa>^3I)f9w f]˅݀r,u1S=ZJsugGk/NI|I--$Ϭ<{\G+i?K:GZXum!as/tғ)m%"Bq`@['NH$\kTGa78}hß*Hy5J~JE4E4[NtT=?eI,d,g񸢚;r~ZOj5wj~bK( z۹eXMG|aq=#ESjSAzwl&n'^)orz= ")n%a [q;ETko߫lkX\k{gSXBR P4;Q b%=uRE \~%PmHxZbr ׍[2#;wB!߲F6JDeER?""',4a~kx?{$j35MOa9d9g?قkoESjrkqeٱ` tð9C^˵|e maY m-:% M_FD .8-J\xˑHD4޿wf8e_`xۢMH"ڊN<4Lb*eeeoOgE`p[L ;?l za'ş\8np|h{vŰ[/ܧЈ^~Hhyҥg4_7fy2?۰lETBmE$I8gI]?Ү~|Si ry=qDh /Šij6OmqEB)MD48x:~k%6Ff[#׹n8ۍ~\s\b.z.@"gpS=BxñsK̆-hC>7 |fVr7؆u3}<+v&0$ըmE?ǿyi"5z`q=\ape/ES8S?;! 9pd_>뀹k~D:l 뛱.KST3S۵V󬘬r*ͶF=q7Tİg˓)C"߈hэsָu#1ٚv=,nzb&I[,Մ r.>8.%+73tw y$@/ ٥,/۫dg0ʊoŭ l]8t Bqzo\adUu.]:[+[hšٖt5Q(%g{GJ* އQۣ),?0z|$s &m!8r S}ٺp! %ߔݬUIE5Uϲ Xŀ(_i3m\ٞQFiר5,I`я[OLeuyKg=[D)"ǘicM7p/fќ|5-o M i:NVS9|Xr>e{ڕ{A8>Qz2Sdl-#Տ2o4m}ϖES8 > R}|72Z /za7'ܺ`.jg^}sie[~li?63GRA"hGD3Nna?gor>lմO/sl&4府+o-sH0 q'Iˎ0;>c,#);cBr}WmmΗcJ{g~oݘx}_>hv@,xHb#ڌh5MoL3j_ZtB]huiN_t̴kqRGifbԥˡ,ذ/G+]i:C-ӵ>];ŬՍnͧz0+p:t诮c։Z]װ̳e)n2R? a%#6zx?fvZ?ǭN먠^6[D 'X1b]T5DсV}#}1bDH07ݜ,H>dhl%2|R}0r0K80KO.&p.3~6#9|6#8~oGs2V>^cciWzXypY/owLh>(Oc{;bD4;h*/yS'NHwJD41æ^ QVGi͒sM7s g䂔c+e\jޢ|)|miδuG"*닡ѿflyV3Ái[E'ļxWx*h"S?3̓xxXz*/|M۽[Y; =ܭe3}&%Pyt }qZO"hdF l|rvZ$GS_lkGRdgY;7/ОJ_~jBL!~  ᖲMf%~hSNTO"p+6s* cx'hImYw*D4E4;hk:ڭ3wXRq5h* ֧;`j77!<5DԎ4oU:q9炚3&8Mvz3` *T6|3elzĤ qMPwl*'ZEL |H[~:zCβAchl͸sr ,uAO#\Q,'enB*Y}1 euH$"qNb:/pE s[W;7j~/؊E icglǪm㸾}.mM03H~:JƋcrhfD7q4K=&e쐢y6saE#G"<̿\ߥwa<\u 3֏-z!*++ytV;9*7N䃎r9uL JeܺMH hhHD4E4cmg@~?8" ^єH$'8*G#//6i:"&7R?'QĆ&l<5Lq]ϟO?륳 FDG"(ז؈p.9z= S>qgOɽld*:yR?~P+,FDSD3>*6sVE4r^?uƯ6ݡܠL0wbU| u"[Mg]w\!)>gOP[[K[#H$ʵٓ$6\cBtM eߞܷԔ >TAHMIf=Jݔ{G|t$E4;h^n_W|\[X+Fy@5<83q%MAAZ͐\pǏ (uRꥑL͎%G~$JBCf/j8V ~?4Vc(nha"IKy5A!:,`No{!E3""^`S)++{Mf4gЖM OY^%ͷ  K}͚{!Cm!c,3cV3i-ìI G[xV%[|>%MAAMpbnuѼϥyQl KiU `֏q>N>MaU5eQnF Ki 괞3y/TƱo9N˒({>%C4nw  (y/DM+uѧ笹rYuBˡ,ذ)+!iuqKoG)s^V}J$"  "h*ʇYGh#w*D򪢩̿w  ĉhI SfD4%I4C;AAyODSDSDS"ADSAMM$*  ""Ef]4evR>SҁE׼N DXP*JzO\f6 aE7"joglq%MAvmf]>tG7pW*_|/{nvnۂW&)ųO(/WA(*zKf{oM4rv|DS"6s7NFF El߼>Wt&FUUEO@AR/nJޖh>Xy.uJjjjGy՟8}'%mJv3} ;PXݴ;7˲;]`>=)T arq7Sԥ߲tYC.|4J$"‡߻vNqQrAx(זpک5<~Ǐ(|x_GO)uS'ّDS)blDQmF?´L4Ғv 2׻c3q;J|| qXIq4Y qE5%w[j5ՌR]Q@6/,ܷs9@)8b9i7TDO3RM~9`5uƱoJϦ~%7+mVpmg5eYzw4r^H$\kԮG8rA޿'"J:#62y"M46<_o5AP4sc[NӘjqe*πj/VțI(a6jڟ1r, cJ'lm6Mz~9[p-)yDsPq^/TZ+ͦ뺏ʺ@>оH$ EETGA9we<2#;wBlQ^^OfQ'=TwF8 =>]:THtY ԰]>jQM-=V zJS2Be@mW"yGD B$)"ËfYY)wt#-p9q9/3?跔,e݇fG0nuѼ|R3YCmmm?YN9[Wf$mXx6Jk"uBeQkFyff4uMmW#DZzw1O7 0_bsl9t NcqZ|7d'}I\~-YiCoÏ100vLv^ hy<4c[:KQ|ޏ>ztԖ3Tӗ"Nq`l`hlɘ{ 3[W9o]讇a A:}TR~_D4%[TG9Q4F{p1i]nQZzq9Uno?Oa`ҰmnzۿF v37ҳgB2'nٰ?IELp셱=,1{/9q܊Q8슡a/ܦƵ,(//SQgL='١D?.^DM*0I[)T_.\HBk_+[dS{QmIWcY{/0g)(=V_#o<MIGM#=._¯_uX@e?γbzy%&Z`=q7c_u_rO{7_ gc5r3!2cs?r2\7 ×qiˆ`Т,qj fsao8Ønr+ ]ġ ۯ=PJ=lGDS"tTѼ{;K7RNi7#v6~#"SnŔ\KN~\o߸Jfy֍|oopmCvFrvide9~yf\!#2XZ1@ ܌8˦p-U?eXYͅdn%\ct짟#-GioD4;hJԍ6sءv᭳oPtOo)Ρ52ƺ;b0sman3Mo3];ӽ _uV~K80۝әi+f1$7,~Pݮur]e;C̰cij|iޛϖl䅫D!zZ_iZiWyn`җvʖEyLfiOq~9=PJ=:7u/)Hޒh+/ENvn$ij&ZRS{o'6l' m:8[Aj;LR}c$gFo-~3c95ڞ⹓zYf|a#i>|gĚഗr2nr${G;>f#weU tT 3~=MO2 `֟iۻeإ~f_cxUƣrnCgOu>[սgP߁P?O: MD!E[7u#8s6q9;-u#a77$#-q2ٺ >b0|nc`ncHǦJŵ]a5!S-\M<4lD4;hƄy#͜ߊ$UϒQʼnF#kF>}uƑ箫rKl,G}_o_?Bn5}+Dž>/ S2Z(3Vvt TӗVS~-uְiFEIWԱ7^c/DʋTG7fVFnc 5!nא9'? (FD,D&Q 1e00 D EK61Iv}MYs<(0|?|;᎟;#Æ(2v?]wӰPo6#sL<)фKAXvb#1|݅znro6GTc>bG1Z{ gh24ݗ!!`&"a%2BYʏp;2*hnBSx{EZve$ގ:6 V貱)ހ |]_^ߕрFY>[-?'HO'(thVd)amZmvdhЬ.sfm0|ZE9T()3r M߁<:wh Q! 7B,G[[8Xnu# 3Դv G Jwd,O{3k.4~/;iMJlp?U-~͹!"]})wB7!oC7"KF]1I- MiBNNah65دz /^mK1K|#x-ǧJh֨Ad, [j~-'0_shڼ_ "r<]N0ozlc$NJz;\15oEsn(é2Y|l0ܕy(q[b?$WO9\Wo@b;xi\QQ܌Fmv`3+p 7EYǟtoE|Q:nE R^5/*"lrj;w :#cGO@&Q؝Bo1I/yP14BR;!Qo/7wїtCG M&!|)C?<!8?~lshgeѣw&}1 /{u$YA/e^b\mm“'O0Bȓ'EGK#J$Gm T?#5#<ӏ(),'ښGoh24 ! MKiVm =W??B!t_m7cujIYi~w||coO3.y'q&C=f7ۧ3&! M7?*QNQFI)ê8456Z P ;=G>?=vHH<&o$75;0XoN04_A)z9Rk+PZ'!$KHdhBRJ)mk0xyr34&RJ( MfTICH)R:mݣ M&!iRJ) M&!I)Rdh:04)RJ =BGsF',r$Y/)RJǜ- M&!" MJ)R&C@hթBRJ)t8BIahRJ)ŨC^Z.!$拡) CФtUɪz,23Q|#ҏfe#9kk^$j[ ~˿$?bdh|T]W gO n}M)j{{+RΞF^ccdjԀB1T̓/1obF.404&L+m_J)VŹEffjM$EM%~x=o6MsQ ͦFԩBfyU g&c-NK?Bq?8HZf>6E?1~{мԈz}:Shд|H\Sle*$;X_k1Q*!"$G: ?Gf_M39~&Lyɸb)M̟GGwCs8B)4Zʢ= {,IpwD˕| aqTxuޗ q`w(v~DNwib4gҕ܇>eܦ"z+u/-<ZwxL Ų7#m1N%EӡBUU1pڏ28^[J }1lY8q2L|bM6 /C℡͝m MYlݽ\\~b;Ͻw] "47}*슌Aukn>Y^3pϼ|)fF~ C_[^)s}fv.iY|eMa2404GBCK R&M%.o ߈m֙2I' i`(ɫQDn5طa0D٦p߆J9jspteBVBg|T@-O&VcQ!ߊr989 E*^µ9еY00WT1k](ZAօ#hih-݇ -/߅ug ͟qWe1ǣ;M BB]I(ty\'Bx.hDDl/LCBJnߺ:晗LsA ~P6fi}8GPv~ *;Ui 2|-;F4 MBCsU:K=^"4#qJa)l]5>X4+h`|Rͪd Aƴa\uB%BS?NCO2VsP,Vc&0, E鹲z%D` z KΗIqмs6B8lL B#麯t{ UwƌkBP, D-HCG_Jn`>|ꦫ55<뻟|aˎ9 CSLv$iBӎsE\X_onB D?돗bV7dlY/E,<^or\(nUHǠuδ⬌x|IyJf5jyVK̗^$04s%GZ5C֍((_G#t!4<^1tL!ġ}Ⱥ˘0h›3Pg࿠@!o,ыQmӅF,¦aJ|ldןb?yq:Db<:$Z͕mkhѠDͩ !W4Y5oiw!kF%BSAayM+S \|6vJJgRV: M=Zct[Zj$~ MB]ٞggjDB[.Z9Yt]z7bB fZ1 }A,^иh2 5.Kǜcq WPa 0-__GL( zuv[$Pߺ}狁HP`{"aT(*Rq o{ϵ6^~ ըQsf5Bq# |FsᮧܿI0_K͑Zi2x'띕ȷطqX(G@Ͼ3*P.3rQ(W$_fs(GjhV+Q_-> ꅐm+%GhjMs}MZb$~=\t!6}QV촋)4ovf[.ǡK#dG#0|+,ڂA_rmj,#|} :;PlOC Ebڴ)sL^|ȩ3>D)4;6v dՊY$lyQ̣Oz>dhBdhT:lن6ƏA/ba']&;$NWqyޡرn"Kj=(Qii[1gRrF)lVLw:ķZ۬)s)u6˶C+gC9pğg+f 'ycOG]{]O59k[˝69mjz, wТ{pZy s<0Il\]2tvYԲ+ M&! WW˸R;!o/_^/)CS&!Ф#?<~ GA!H7ܦF魯z;bFWh24rIahۄ^ C&iEq1BȓmFq<55(/Ca~)NdCdQ?b /G̟GwVv&C@htvTICӠ{TCY]ζV?Ǔ' {璟t1ܦs.Gttuv}y꼆T1obFZCsxBӈ^*4 ahjGUuP˪(tXJnI S|c*'1_bF{s,@\o6hөB˟#(Rڨ@ETB1ObļHV^dhBRJ)5lԩbFw[g&RJ0[g&RJn?L24hk)BfasRJ)o[g&RJ0iuau  hkթBfI)R*{ M&! MJ)R&C)4[ ⫃әBsRJ)24)434 ! MJ)R&CJ&RJ)CYo@NcN04uQ!*#T⻈*^G>|c]ruo6z CsBS&n+ s"4 ah抿W^JEdFzpQ&Rq.rq;D14%4$04)}@~oLJ)*zdh⼡I:OzR-Ew+Q&Rq M fY39~ܧ"<=-Es7$+,Xa Rv+aWk*260[2kS # o[&!@hh MfK^>*4 ahu0WO,kŲ \0[P6s%B"k3e/omz*/'FG1MZ:Uhд|!?ٳu U07uZ懨(e)PKX'~pw'/D䔉ps{P,W 7ϙ,xO`3щ#G+8wV)+p5jX MBah{G9,:{u$iǹYe%5`eJjNc_a,ޅXEHQZo}m;ak+O ^[{ ڧ]h0E0$lEzI U8?>,벓:zy6E:1tSI! MՈjύ24hNtwE Z%'2bh |95; Ɪ3lBT {%gcH !ccVȭ{qh6jq!ehG,RI!i MBhZ.>H8R6JٟV+>1H$|lؚcaqx:~@q[DhjPM$`k9V)CBCӑ04 ! Mc^̜4W%]'EPbCsM˱ $o,Uk7tW <1$t MBCS]Zr¥D_U#>`.WB_q{x#tM:[L،0e>V W4P_|!k#V͑ؒS;6oehBah24:qݖ;Ehv/*Mf^maXV 1J[^/m a٩y)_RJZ\]|J= MB)lۮFRJŕLD&CIahRJ)dhIdhBRJ)y$04RJ)$04)RJ MB&RJ)CghBRJ) M&!I)RdhB$4)RJ M&!I)RdhBRJ) M&!I*+/Eʙȼ<-,EG>Bq޾pj+J04 ! MJGʺ2;y uQ&V;y204 04_)M=m-_ɓQ&RqnoiFڹ3.4wnhBWX8ϟ~ ~'B|>y MBC32Ί"X.U\w 멫. ?4g j댃g*9?nS.Po\kXQg(;#኉<˅V=BUw kRi웛1!LC BCSZ#BX26{=}HG/VFc})se Д>ne>¬uQT!A^s{e5WWm MB! M&C֡jGmDQuGycB/B4do}K550wV*llK^)6wN1d{(v|1np؟" 1Sd+.(_pu₱l5ZLI!dhBBE>Bl?ٍJ VVW my fȅ^⊦:7̀o&MEvGyaf~dTa><^׼m*A[v{6]9@hCmAZq5tb?Jm帆,kn]ycZ&!04 MBCW>O2 J`AB3^GX*|W#"N`räIވ]gJj?S#v}FD@^vP(?SBsc> \f1s[v":)jICBC$ooNT(>)CɦDMyϱbY b}IӸYHV@_QچrcR:888Lxmqp?L?U\řMO<`lͭg4 !8oh24~F3`V\Ʈ阿_לs#|Q-<:P1+Qw k#Nz-8㍹rQ3oB팡I!dhBؑ;9!'K_#P T#/)qB^Z(N`[“ҡYRjZ:w:9؂2?=;+dU`|oIs#C&lBJ8fo h*k_ 0l,ڊ7WBqdh24 !fU />}/Yx*b3 ^C^sd,~ E-Cٱ"S&ۤiG d oys k/pe R6/F$LܽneSbaca`Bb@8F8R*-h7uB,k;NJ"F7}B#J;vt)~%>;Y\^>0>f)ُ?2VVfLh Mi&4y_͵Cgn ;f&4-뫱`)~}ߣQh4?O_v]|?Y_f&4!fm5-ߏ23|~?M/243 4 M|BShBSh M)4 M)4LhMifB f&4fB@h ;43 \f&443 Oh M3BSh!BShB̄&@)4LhM)4̈́& M B̄&f&4 MifB@h M3 43 @h M3BShBShf%4 M)4LhGh Mi&4 M3%9B̄&f&4LhMDhМ 443 4 M)4Bf&4/B+4 M)4Lh$B̄&BLhM9f&44399)4LhM)4̈́&]ifB?MifB@h M343 4 MB̄&f&4r MifB@h M3S 4 MBShBSh M)4;B̄ܯ43 4 MlBShB̄&@)4Lh$B̄&f&4f&4B̄&f&4"44BShWB̄&f&443 Lh M3BSh M3 4f[hB̄&f&4o)4LhMifBFB̄&f&4f&4MifB@h M3Ʉ43 4 M)4 M@h43 4 MM)4̈́&43 4 M)4LhdB̄&@)4LhMifB f&4fB@h ͖43 Zi#)4LhMifB`rBShBShf-4 M)4LhdB̄&f&4MifB f&443 443 ͦf&443 0)4Bf&443 4 MdBShBSh M)4B̄&f&443 Ih M3 B̄&f&4R MifB@h M3BSh M343 4 MM)4̈́&-ifB@h M3BShBLhMYQhB̄&f&4rMifB f&443 Jh M3BSh M3 443 oh643 4 M\BShB̄&@)4Lh$B̄&f&4f&4Y5_MifB@h M3BSh M)4B̄&f&443 Ih M3BShpwCLhvBShC|W;3uZAL?vQ zUlЭbDtMYlVv^܋K?sBShM)4B@h M\h M)4BShM )4B`\BSh=Vhn7[A9 oN _]-5vIhޠ,F<؏WoA9r&Zk^9 rǵy'rЋA}3(gQΤMC sǺvB394ז`Ћn&Wq8薳I}rX}½\h&Zۋ\qrl| ޹?5u}?Pc1ECXEEj-UyE "( r CBdsz̹ߓ-`2ZəaggZϬ>_cF  $p5pn_sYQ/V})}d?96xw6nCJ^;rYۿ!IADj"/TC)7lBR1|:kñ"qͥOIE) qѐ)}<^)hvB9 }+쁑@O$ AA   >^x vC.† |":l/"M}zo|>UqEZ5NJAl*ޅ5#0Ԥ@]oLFMy!ll2J^Wdwl4PGG* Nzrȯ`?Ue1{yb}x!Ɂ9G>gNYO4 ?WAox1eц\E9gO].>; P# ~JPt3z? ϵ7+NC _w t`pd>[˦hpE712wV,4%  \ͧǍxd^c<щYGq]Dž9S]LE>iPk]*4~\z5*QOZ`ɕipdǴZ4Xc=cY 9;LXc&`uz]9_3 w0T[PCRuOc!';';C"u/J"ƵAXmp Ltu1 '˽N.K/>+$= [ kƙ a*{tBo 4hlil>'`nڅbo$AA6[&ʸ:7uoR/˥4y3uM|yÿ\X_N_bo   \MdM8V$f9{Asyc- Š9?'EФ)262uhja/??64{"F_*AA9*b\IA7dMwU[bOH  BzWƱM /8hRdFOkیL   \MZsS/)hi0'}J2 q"c%E RD)\ќ@h"}R`'# Y߇C\/=Bkz1T\ܥ׮|iBi M(4vMݶlZhrFכTͧ_(Ff04JhB37 fS-&!4s# `h}Z 0HЌf?D 8/=+ M7Uм)nǼHi&(~ػ(:)L)_NZ mB")PPD@DmPB(*HHDMd#B w.Е+7Η7r.vO~y)4EhVUZ[AeCK4w ?01=6uR7}Fo<`K6DO_J ;a(,Rhb0,ɰF4;!vsb?y;~mfffff_^ #a%̄04sΖto)hlvp߁'gZs{#W>/~?y?կ?š˿dboM0VL Ca)L04{# A3Qѱi`SiTUNo=rirsG0`Kz$Գ>>m{kFM|ziWz0-܋cffffffa$R [a,! L0Vl 4WdB3@U]T u;*v}kla"lf R [a0^,cm6~fvhl*] ϾjV}gw}h$`/&Uo>patu3q a#0S@&T ca0 FfZ>hX͜jݷ+9VSMrx{s\p533333ca$R*b-̅0XifYZj^e(o@7^ʡ̂MF|yp.N898FYF +aL,2Vvdf/a ၠeQpWU3]Dg]=hfffffFJ) LLށ̂#3s^ݥdcifffffFJ3^]$3e5Zv(vmO/Xj,q #_[$R Mkw*2iJX3> (ã̴*Ȝ"6Sp}pFtFxpee #<Yl݄333<_@FK#M0Mfs56qF,3Pe ̦̩bΰOν *2ga:k!37k\/0̖O{uPA0`鏛IVɠ#I*O$eO$I$IX$I$ ]l!IENDB`kbibtex-0.8.1/doc/main-toolbar.png000066400000000000000000000241421331300026200170000ustar00rootroot00000000000000PNG  IHDR[()IDATx]\lIGMLhAzET7ņbAQ{;^(+}S|;qvvvgޙwp~A1V1`<ŃJ&մ2  C0aP>XU`Fǀ!I0GxaQN C>[U2'SOE%%ggKJZ$ͬOp"aDrQҕedRDsCQ ^QIO1oW1hEyYYiIiIi,vdy%hj)Dˇ- +*!?'۫;`Nvf:V9BqA݁WaU:0&Ϸ8ޝ2A;CۥŅBs xi |𶽽ʦݢLz1)}(' vӾN^4e$ٍkשjãH1$R4Q1ب81ahX^r!$+f̝Em, 8x(uN#w2"o egutt{})2D* n޸i@ /Ga'Ojkk>}ijMOQW>_}~> &lɮ+|789‡|WP6={|_;~d[>_27lrp'꣢.#M.۲sĈ;FMcÉ0xVUEx{u/_kw޽Pغg;h,[J zCe+V4|/xe(E4_3Û+3 ̋R.S&$8 uJKBI:^QE|wW?B3>8;bU` /Xb޿|k8kom~X39%ְ,ª[ա$z RR#FNr(7Mݚ?MgU­60zM;QFP>yRR\,jl&v61;嘴 ?m-gͻow፫>{t5Gvv\ Qy~$'9fRp 9UQVV߾uۃ(}"Ç_2޹cv uu/eQK/WΝ=z9椥sեY TEu ]w`Gxׁ:%$c`.~p()*pqvruqvsuvs鄫 ĩV0fDBGH͌b궶6L}-a]u"dƮmpp[~;_q[tGk5"XsE0bI#ȨBqtD^<#_|-! l*&=Ǎ88ГzHy6:nVv=4MZ/eJ:u?lR\6{,t Khip&RCwx _o/rW=xV>W@0zut꡷ovݻ !w= ߑo$ { #TuDP|M l '.(޽14b|Se*YFP544h4wwwxfBCoc rFLJ#T K;$T0Ԓ"Q/eXMc3J^#扵U vT8߂CksEEʪUE#n dp!4l݂yfI)܎-g0RTPؼqӖM5jƨuUm3e>wSST5[X\uO u( @ $.8qq,|4w* -FO 7m. r'ɑE3">$;y" )34PaOx-0̈`fj9ŧ͜ 1M=6G SZiz=l}n~C #TuI"d;{'ĻM'CƧ>oi.xe5aFNE-R Eaj;YVƙhjZsz^· ֬ޅ_.UĞ(z.l"A,N `A o8$gX0#u[uIEdIz(<ޣׄʓ Uܨ6#H,buwtCuʮ@sԒЫJƞoG U ZUIkJrQs&lWH&[x0Fj {௣LEYiuBZa~8<gtV^Nnúo|ًMxUW -/_5>ke<~iFxRﻕǟҐ]k^T,O y|Ǯ(XB» ӦMb- ?jJRBVye6(nP/'H^윱jý:FF--uy~NwWDk)W#}~'t555/z} ěx!YL($\ۧ*F:77!¨*E>*j oblˈ<Պ.]p7z~R›j*2PWɤR8ZLc$i[wQnQ|-ख़z #d[X3E089@AB\]EHB`x+ʼ$H Cͣ|K뾸y*xQRòQ@q\L_j~ݨn,% J[%HݦvUA+/y2đ5̚ \3\@Z*V/~; ?ލLܤ7Az^ջY%GּF2+V@T֖{ QƊQ@A/++b2krnHc=[٬)mZ*/>VMR8" J`o<y&RQ|9SnJEۋH4q_AMLv]w,d<bRlW}yULZ*e;+a"8U?$NՍ]e(B%EK`L5*֫XO#q@~W_YUUU Va`kkyˆیQ_R=25 J&nV9?;tF>^wtO6]ްILR ((WWWUq oieCW khO,4t %<1e )IZCĬ6Kd7;rFuԽ{uϹ"Ve-pxst1dWVELfE4kCVKJ".=k*N8j(`[F(~PtǝHJ@^"E`A}gWPBnr.ޤ3RZ65Υ49]>ˆGSBB(ƂPa;A@<$e $E?mX dN P@$PTկ0ʩeAɫou̧r,τ<#A@Vf~?2q:Uy@Y/RA*\j-=u)GR+ )kp%NjeD%~Tq11eˇ3놞 -GF 3i3q~F+܂Hl-V$] ?}㧎,|RY477FJJJV̘1H$Bۯ0>(\ .큚~{fm ׻Yjtl6Xgc%-+k)¼¼e.v&lY+[ =6))mˬRv)maȲjYTC> G #j%DI@(/Ⱥ Nۺދ]J".ADF(L@My=1 :ok5-ED'gbECȣn%Ri6FYgHJR`A@ft)!%T9-v9BۡbM-I 89cL+]y\S~/M~1Sܵ^mjH o8tDuu,ۅjCJ/ʺ -GF'gM 4IQt+DíBϪV!R"V!V;F< sj\dd |{FY~`WAu##8i{M(x}J{hsU]szs{, 喜 *vj#{s4w^H m c^jw7hypϯN5JPP%- Jq==F\<[ڿ{p2|͚4}tX k5TCK#_qXL%Zjkw#u݁QD:'9Rڠuoa uz^je`>_:Y* 65eI(sIDӒN,^ZBZ:i;WX]!V] L <t'$^e;љ\-+a$)1wA@ZJチ {)J-2OpbBIYKBh:]{ )&3gЫy/߷7X$U?4?iD U5 Ud|0䟙K^ 3[Q?ϟ1An_F"!-e"isRpRaJ!Boq0쨞œB_a5t7_*}5%DDd Y +MS[X\.'m3[6m*$*FC AC* gz(aϰfH:I_d@/Uˇp1#i4UE) ll F_M0?IO0_h1<PQQ*%)).&o)|fڹP)K}@}dHw'8~5R! c0FpL&RN 4KNIoTPFp۴ CkGx>px]ۖYҦ#\݋赬Jp^5g 2G'T3|U}(}}\w_DRE,хٙ6 ?0<TyG?H!8H?!1uhәmp8wO]J)҂ ¯ \qBC~JAu9;4Srnq#ƍKddUHgE,BPCM]wn6Եhj,B -eHjfgCU$#>G?O2;%+G2ZrR3&қd!h>g&aTC3уLnݺA..tqv259i}, #~2'F/_~a˛?[_JzfvǏ}<=\ƆNYLSqFwuMsEEEE]FPns33stxx:nAYH&Z̟uJufw11hIqc_ as@"H[ W p+ׂ$u@ $3&f57q<;{U5ѪJrj]!!! &HS]c$,@dl,!2xoPIp!? #)^=<$q?MEbEMLDp&~fD$DI'Ѐ (.̇oSVX|$[ $~XE+޽ f[=yOt~gkPUJ~-8BP q8c\1α68@vq kV"YM;:<T.?(#G_#A_@G sE$\Q\_I376p<+4s(E9yYi%yT:DDDĠKJJ̅%7]',$ķ.OQSEcq?7n@~Iaxc~4V.pXB⃳H^;7o}w. tIa*/D566pan;D$=oy^[[[R\|mx6.V]Eoa~}ut̉<ĔZE/:D(QǣBrP` G-98 C]8է E^IdK@;|~8߰>/+IsR I$s<;kRB@0<1y0ݝjk+ʊ’˗[$?[zof́ɍDIx?~Axs&߹`>{Y3wtӼwObT'a¨/Jˬ_vJE9Yjyѳg8jלBSS&x+mĪ[X-555yy𬯷VTu` #x*66.==Fb·ڄT!6V_bڂm|vͷe\` !;#t8mQ`iv"$Hj[i]mzb,9W5a=gLPjkCD[kkӳg?`ammmu떫VKB&'BmRbQqI->ncWv}yEcK[M/l3V[Mm]nzq. Ǯ춄E&}GV^QF).HM()̧QnAAvw2\vHSsh "91Ǚ;\# bHP_#n3}A.*pqr*sQ 7;nÝ$0€ah=rakV0`V kWWV 0` # j3: 0` 0`a؂qIENDB`kbibtex-0.8.1/doc/man-kbibtex.1.docbook000066400000000000000000000043711331300026200176120ustar00rootroot00000000000000 ]> KBibTeX User's Manual ThomasFischer KBibTeX man page. fischer@unix-ag.uni-kl.de 2016-06-29 KBibTeX kbibtex 1 kbibtex a BibTeX editor by KDE written by Thomas Fischer and released under the GPL version 2 or later. kbibtex URL Description KBibTeX is a BibTeX editor by KDE written by Thomas Fischer and released under the GPL version 2 or later. KBibTeX can be started as a standalone program or embedded as a KPart into virtually every &kde; program (⪚ Konqueror). Arguments An address or several addresses of the bibliography documents to be opened. See Also More detailed user documentation is available from help:/kbibtex (either enter this URL into &konqueror;, or run khelpcenter help:/kbibtex). kf5options(7) qt5options(7) There is also further information available at the KBibTeX official website. Authors KBibTeX was written by ThomasFischer fischer@unix-ag.uni-kl.de. kbibtex-0.8.1/doc/media-playback-start.png000066400000000000000000000011471331300026200204120ustar00rootroot00000000000000PNG  IHDR7gAMA1_ pHYsodbKGD̿tIDATAKS;ڡ}.]ёw>w$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Ij+&@D>C-u Q@T7 ]n?1]#r1 E8g 7jƣhf 2\Q7 ^kH?:5^kCg;gf'le(Qh|e4HCQsC3=Tt[le<*E5#Q*PLl#GpT35F5KHTơNgRgi~||qb[#{Gv2UGri4(WU CXynV@TơљնȾ#{GvpT*|CQ嚨%-?NơյHwycdʾ#{Gve8.}$;I2:`zM%Dơ [;ۓ;s[m}#;G?(HʨQX0k`eQ+#Q~Y,t6&F;{d(Qv#ʨy0ZpU0kcF:׮~̵7xj;m]#Fv=d]\5 F-.jx~V|卬h9ʲvtOߝ=7s~w&F;{d=$H$QuhgݼEyӫa]mrOvvn܍G>^y~cdȾ#{GvAd>${Iv'j.XThWEY8Mm==;w|׿΋|{?m]#Fv=d]$Hv%Ms뢆FcQhoSe%cNݽ'9۽PYٶo>eο}u׽_9UhD0 8 c}n8Q[VQ] * HCCU* sYU;O.EZJeSJ}w?/:z㟘6 !B!8_!579;=?ACEGIKMOĵ#Y廠kw?? 0ǰ?t\g !/N<_}=]}8]]~W4۱Ȱ ~4* _uа(mhī0v/~aƀ[zb=/2 >ȱ֎hBH SOB"NJIVC[4Y,..Y}\XO dfbhԐ\QC1S=4鎥 MpT 4CSJ-)JmmԞRQn:{xγ$.Ci3tq<bEkU`I?Liq|:uu:tI:tڡ ZMA+i^9מt3Ccd ΪO֠){%hbFQ( %iEB@:?[> sOx 5sw{GF3H_x4]а7F/q*L{k_]Ycfoo*~[9E^w-:M!GRO|BLT#JY'0F'E'3ExKҨKu =41$!$qbEPIIƘIzAr`dFpd?N;C A֓1$'[  6b4ۊAxI5EÎASKxb:ui(jwX'l&h`h ^#^[mw{f<*nQV"ŭ+Q W7CwA|ŕ{2am^}wxiɲOqUO\<ՕTR|*+q+r|B F~/d,b#XLXXXc"0"Q+1bXǢt(ڕE4rW;nZݳN["HvQ:SCz(b"F(C+"}Ev,J=2EP(P$پm>sw{転-2[Z},\$uWt?o<p¡~sŭc5]]z__{b( y*.$^=tTѡ73OgN7+MЁ/ȁX-EEXX汈3]ԘExш1iGp2dF N1"#,*TC#1٩"P>U$!|΁muSb:z: z E,2_:cѤ- pb⽔_YDgekh԰^|k*` c=q9)ػ !dWܟ.b # FYY#8 Hg[6B0,cwDEdHvABsjz,,zĢs|].@ ӧ]臣?҂+ӟO- ={ςx1O-~Ax!'KCC=ڎ!#.Rvr)A{/Q)G#~8b#8e>] ~#juq2Ou$֜Ew?SVLI(Jr%)ENoL C}/ΧҰ^~fۏ7gФ햱!:\tfk ;x`~N^d"`dk #hu~ʈFPa epĈGiIfA ;{`~^a[mz=4yD`"Iސn;'"I<}"'\Y ӬW^Nz,_y/7IďDi"b5r?/),*X$ۮ*/stۏ< ނysw-HU,zwh3ig7~L-}k5C4f}tɫwen%]zv+ 6M5[7io8pWo4Po9E;#G6ez4p Gxdm=ܸBM1*ЦBZ^5ٸܰfXU=t㪴*Ki?CՕe=E=.Ǜ? ?//Dh HQL2R{ڈ?qƉ#\̟G+L4)i魄a%1p`kKLs۽~Z<8mgڵ*'{D;oNGD$\kk+͛3G4LB|͊ϗcJ 9)%HUA =磊!i}V%'O6O??E`w3D LB~&柳[nFoJ*yfY^%4d@ںe\XP~?F 鹧uXXb-փ0}k 6Xkigu}{x-'E:yk[VP?ReY }bUy*;z8 (-NrT؎4'nnA6o7PS4 ) 6"fšXH\.Q%3Ƥ$1s 1:WoJHM4"$2FIԦK5Rhkf#5D\GILH]S.lߋ۶iS/~_ހ~%M ЂH~O.NK^RtMǎ5"qZG:yk?MVP55 ;c7O|Bw )566tlP/:փ}89>̵1OV3ͺ3D! Q!1(:1DJG(cP.)c 2% PL0_N%`g*d7Z tΫsuW9i7јQ#)S}fmW"<^ _za+/iG|zOPiqQמl"yIƿ}kiɦU`rVq*"^Z]ۚG+'_cvUUUm߮= >XPʊhϏsylGa vgu yJ$OA %)`3.k`>v!ef#hvf#hzG`LƌI^;n#|CRʉ$m͛N8rj&q+Fz=ExtC,O@_ӲZLZ`5jkkR kEt,V!udzB 㨪RMLQ;g!huj̮AKZN 9kXM YM մDr2oԗ 6|:K]SY}v T9lۘ 4Nډ~oЈKQeE>h|hzۖXXT\]BRiMMM~ؿ;ۨ<9۾k=mbܵմ}tGp??$A``hu0G#H?e*4 =S]fR(s<8y+[b=أUK?' -8M4ޭm7.Gcn/DHd*ًDT$s H%ȗPP$1/ >gjnާ {]ywm>\%e>^+Up>m/=@?׏K-QUM5EQ:v,)Y'2qӊϗu>HwnMhW,_@ Fg8~hĜ4i#~8r>X a&@Ac"B{up;z&oL&:LÉq톆6m׮Wu>p)|ۢo]1~vIKw.4~QYII>0F7 v{=}<'i .?o.n[| a8D?Eğ$r>e4XD"OEH$HVm"%nl*b"rzw˗ Z蠺VVH[ اڝ>*K?[B ];(&ڱy=Z}\ْŸ!$e2:gFkW5~I,?P~WvV*.-%_B!(h}*wlJ,9r%:y:7_9]U$ F`#``(GwMid8HI8F8b#w)vs:{#NE:iԑJ{*mjRȠ0ďC@tLA bF"@_(Ww9S0Md7<ĽOBv>g"EƢ|)"WMWH/?.8}\}!N욦*8He8F8b#nkďHi[NE:z7Rj!~!neO1eOD]dHCV$9뮥 :Rt w+r|Br(EM}8rr) Hd,kfx!A" ) C@bWDDlBݶX$HLe4i~H}8bNGl7"1y:M?ďA4C!HM"HX$Sb$?E1m>Gd#"C!&A[&k3מ#Ri5jV~ 2!{Q!1Ef5$D !ÙX$C>wmJB}M6O7_`x{ KH/' hgECdTBT(b&K53KTZ}FMZ`3Dt)T) j$L$ki1j+b%s\Y2g2 &\4J$I,J8YDg@qz2JG 3D~ 0 ?743X yun?x|:wm:B/EKBH4FFpf"9:u8Ñx1 ZXZmjm ~F!'0#Q*Y9 D"@@ďD>$ !$I,B>F꧍G#1}HIďJďMًiQSCz@pH"ѯBb"!6]$QF%~T&sY} X;H}p! Djv5̈́:E:A'}qi|}96X!FvfkE!"ڬ!fTg{QmyD!*&q!Rd'~'Ґ& 5#MC4YcG'/>m(evV&=ŧ=\l^!k["EBFG#eG_3FF·#xG]C8r>H8J?&1XO)llR{S? QQHuT8fcl ^ u H$X$[u} +¿}r[k! J`,:ez@vC?B(Ę2!Ԑ8`zH] ʦ)"DBE먏虽}XT޽i4/iWQ*h?ߧ6:$#N@r~6~D$~LG%^X&]ïL=pC1Q]!EqHL$X$bBVx]=| 4w.m*9gQS>|:3? q45p[ 1d9Wndz;h4dwєa8#njZqChpwͽpK yJ2t_~Gw:l[fdt(J?<«tm;WR)#hXT`,?/ UƋk/Hi,6#5c+GxO$i0?9QXlN# ecR/RD2E$PFbĢ2ʟu M>/,[GI~GesJisiy`U޺R`L1+\w@eh ]r E?ӏ)hwUo՟6WBiݜi5s:sE EӞ9B63wC=4w﹌Ϗu廨 I[Je,b/ZTG )mJWQMG?"C?&,5paԱB?? C㐺! DB$I,IŚEGq+mD7O|6%K#=5&5jOy_y_vW4[Q!yt_ qomcfcޏgoclZ~m''|A ssII׭N|Aqiv 􉧛 ,z|=z k=S=)jJRgI%l*(NWDmiY;?cJ֋U_gW$X©EΪK)d.4JGFc0"xyz-`ƫsuD>lzu,I,2it ]az!:j߿c4HeGˏE>}eؖy}PMEiŋ7Salz-**]6={u4q@6VzaYf,N}n8ƿ}pvyH`HďIG%?:1y2BNG!`D!{aCCN""$og&OVXoO&-RO;N+E3q }jm6o2~,ҟW,r%-•IMErud#SG 7 1&G$Cc"QM"Uؚ!9!d?9C00@Bb"Wz]1}6?L5եtx4hSIc tIsx@oONv+]CNB󶗒GA,x-}Q{yx:Z^I5GvҪY7ةo*l~ c(m~r Yteg%h擳m}M9Ef}MG@n.qfj#1xJd#:3|<Û ~ !gBÐqqHe'X$K~Z 6G@f-IU`M Lm!M8hZ[L[fJ.e}ۂLwūѠG;z,nm2(L=x G_6tXL;a%Y>q( |'~re,&|,qz>Zn|YV͸]+?9O!?!1aDz++1vdG'H:^v8A?! >BC8Ξ8$IBE:$-:'$ H n1IaPYJɗ1F=| @ BB!wMTSyIqGe䪮L&<\rnpg)r)r)y^EvfzHq~>}ڬ'\7%>dR2ÿ礌Ў\]FE,*7n7{ `nBQVYrq*CB-Rlif_*ʐpqRAI(d t8qĉ~7<~>D"mBچLxܢȉ}p `QB\,]]ڥK.0n ";؉iImHc|n92omٯW\!P/=&a@̛>}`MQm8K=qUkϞ [c"H-NXI+$'!-5)ɬ}Vi/!:wn%  ?8 |~ Gph8BB#1BXx$2\R7rIq4J<hjlijg:L8qD+9Yx\HMF#]xiFvf >8Xɰ 8KQ^Q*TUWuuQЀj u H]0ÆaNcPfCK6 F|Ԅz'HLLDzz:<\]E<x+W, ~!-C5|T Y[o`\(8DndDG]m b$UX $%^?(%ŨT窭fT^V`~pn ǃK K646Y=GOgx7T߹+8vF\$R׃äNJA<_ih@ggqyz+BR'OH[6ڑSj 22]"e++ʻo}p3a-ڙ7 ZJTVPTܹ{3K/,YUb־ 7֢X&X^~+fA^zP(+-EFz:Sf>{Ϗ$;Z(Dۗ.U/䕻"JN# }Oj#2$"ŷoC"`g'Gam|h5Yـ4'r@[ٷ?o22o(m·߬Ǻ5k1`b,unЭNQQK|U_Sx :83Ξ0`hX_cܿפDѯHuY;rFdD8Qe%-UP "w.,`E$5HtFx@Or_rN?oLjWgO q Ĥ͟âG1-]/Ά5U+`y8by~V2o#qŧO B)Z'iYY'eX+=zn;w$i8.69PPD`SEz7^Uw\𪒤#&(TWǕíH6⛵fj2@$v@%"Eq55v/U`|\#?Uvej uhj7oX}m-DnnhǗ7P[V:`iu y{yv}(qePt"we QSSݻޗ{:NmK 9~tF+Q"ZdyFW%pqu.z_!HՀH&E̴>} ݺ? ?: 7oCѮ#n!wVHlA&( κ:$}j͆@|sE$UX愥.?E u/@!"6."FH/( ]z~f];w"֬YjMn),bAQhfHD^[w|1( d=OQջjZ= {âǏ3bagdqkD`@P^\ G+t6 "Y.] 1l`hbuD2ts`ݷ/\) ))n]|]n~ (ڹ>6"s ڂȚ3~#s=zຽkwi+L A0BχC({a*loG`; ݑEd[7ɹ6a,'|7;؞;s׳!S~˿ʯV0<~JT~s;p􅴤_-[ԡug0ݑ0gk7tѽd8h <[@^/ mp\AYu 38cD¢`J(GOvm!dVNi LyU-.OQP׀e ZܭJ)8˔Gg g?=LAEc>bJyi EcʥB{ Z 3_si3hG_$>/ 9d04'h`a)u۾ x(tdj̘Ae><=]W(3kliiɀ#sssfח9/;>ȋUTX"?"DZHKPA C)hyP`m?Yi> )L:,7V; W3_ab2p E.|&cg.Yn`kLiAQsdѯHJD|Bhouu5$b1"8;9ŗQ$+x:xޙ(z/A*b7c&`5l04b\)ۆ&ж:4'cdtoZEp(C!{|oo`f%[If9(zHSaS=?>(4yRl>3K-K )EYm"Pj|5t>]V 0X JĈ2 ձa(&F*40)Qty bO쿘A 3c@ѳgϘ9&&&u}t=,`;(bA#H?G//(6'( bDAP#E i*.3ķ6sF;qM(EQ=-C@d+c TTxHi?auU+6Mӽ&44AeU5n. ZFix1r Zɀ%Cr bgT0}r2X#]ڶԇR9Hz?!* :>} "[ W7=zo!S (,QvDBfHx*Iݜ1ϋch~cxKH"Du_' ag¢GƚэB.jU/-K <)!ΰ=o+ZRdD)pC$^p jb+ ҂\$ZR!~p@cwcF¢  oWQ$M3ra( }S"cPި ƎUՓCƬūq~wU"g'&lAt^&`HH8dk}+y~$A\ϵG8NXB|v_ua*Ο>ihǒ&=ߖ=ip!~\n[ʼnamln8㌳ױ:MCdY򛗍* f<,Sxđ>  >VsrL[!X3ŵ(F̐YAW)̬ Z2'c'RS`5e6~)H߁)!˔` |e592O[Ϡ5 ~1FLy}^0՚G.r\t.BC1|,75*CI=y#CX_o.6_[?(e<PgiqKE<=} bKٳӧ 1sLL: ,͛7$y%?Ed dSSSW^r]8X*(;<(bA9TRU@3F@zD_R?`/c &ի9X9򥇠 chPa500ڏȠM0N":h~@?,,b|_QЈ \vk.] \u}pN{nF8,caH[h481e`6[g 9֦.溳a:ΤClp3xS}HA`@AWЦHV2=E UhĄyɐ2/8p.u "YpL1K%b.Xs:7JScSXȑ!k5܇B7~w_l AfA9dȤŞO_Kp.̡p76O"/X<^s#8rC;ب7{"s_Iao.i(I}ugV_|FVf&m.ӑE-m컚N`QgqVZZ o//DG3rӰJc ju"6}v84o׽_yXKSFQ )s,6`dsdIl R8fWV͜S')Eŭ||yOjeO2\]\ hTiڱ:ҝgQU)uþ~PXqU]\-h5C~=XkO>&t9sDD_~ѣGG"=_̚(jѓG8~844;7>I dL&jB33a5LN:D ݻ7>CLx "xrG/|f3-pM OG5I_vF@l*Ē?NRʰ1X&c(55!#=5YN~uĚI2 -e唿ݺgh[^yBw y>_SUَ>.wEϞ==KNNfMLJĢE rпRE+E[lHQ*("ozYhISpe+ C:jڦa qJKe9b:nqy{a+QseN `FwW#Hz9c$L}w+[+\?%܏Ƽ:l>a \0 Z*0p .0 \΄Eb!]DןBh:=-~oEҠ(fB6F8N#dH7w ސdj{q3@9r> VQpC0nǑ]uǚsRc>#Ll@̙ C#,ZaaXn-F$PC5u&,`"vY۠l,TbaqԷBGheͤ̾9C$e}%eŜWe?_sG _O^so3kߣ5ꄙAQ.mL^b? JBP! kݢ>sgN?W~CԦ $bXYZ8$>OwjU1}T|Kgͱn:tG|ۼ`Shhh0s% #H}=}&*LK#ks"aAagqYME!X@^>x,eq0@v*q}ß>-@===AGPQVF 3aEX~ 6-ٟm2L] 8Xty\/j3yPDʑAZff&j DExQByHqSC`IZ$e7#:].þ=.G|ĉ( FM5$%?Pn 4!TLyBLiё(,za2`JKMaR߃4dL\IÇv e&x*[Wa@(Տ.wO?k׮ERR#쉋⅋`h0#0ЈaNNAu2,38X$UW+8Pf\;v gIEwrBSq1y<%/yxVFFI)Ν;;>nu ,`! ؈E694,:)7)KqaZ}>D$UX b`q?vDi$X_"ܩV쓅XP ?RG\.b(AZGhn6ebf5E=؜g}_mHVd#ᄡoZRB*0- )DQסw"Ҋ?dZ[ Y?$<PQ^%|qjEYYi+f\;vAd:"3uJ>`tHٰEd*"L^RR"|@C;L)B0ew& :5Yt"Dtf5MQ u;?ȓHCAZ;׿Qp&ۈ\iIdnښ*ĄI&,:zĜ$""@)e$j'!Z,bcȈp2팔'嘔v]- pAb0a@ :" nnnr `kkI3UAk̞> iqg`Dm""HԄZ%q0^S#y:q]`)xxr?}Ѭyc:ݼ55;nќq{k\&uwK`07WD#W/Sii1ъܣTTqEILp`y"pB,jB ~P MDl"wn7INQj9 Npws3˸t.\,t} jicQ#0zH|g8*.6 2ՑgqF+d*~\lt!AV|<XZ%'XWWFv| >8X$^!n;0?`\좵>[i7cl>Fn:].:cӤn HH`rbWz' HUa*kkt BΞFµX|rNGeY)cIf9~?zo/|͈{{yӣH];w0":[4Նy?vS޽ľ}w^,}vy`sޙxEu{?y&࢈, Ѐ bHQFP&.OSK(.JhdKΙ %ӝ}}[~U~U~oU]'kɧOnlS]f N߿E?E"1:_!/f!@gN{ěL}"|"|#|$|E?İnvbɺXv;ކ`aV_,Wnl+sw1 |k;8l8(,)skf1#ꪫVR[Q5 F׈74hox}Дy!چz !x q]i6ꥮCciQUy %E>> "/Euz-B!~0nD~$~T7x^ "X:=p;B!B(XDi`7˃B!B(Q,"B!BXE&M54VkP{B! i+/ˍ!E,ZںDw𰧛B! :;mI7B(Q,Ѣ,n1hVhokB!xѿlow~Yx6!"HcbQzuldB!jlVG[JCu%ZB"Z\]b+!BDbWUhJU˯BP+~S[)=H3 y|TBe`ۡ?x~OE?P,ȢW.έN?B!T1j6,b&-%)Ͽ/ * {K‡bBŕ-u^(C}KȎÆK u-:qDYڈ  XG"RW~K.V[֚dDAPĤ.#e0[/d\B!b)^Mɠs]ikem9hBަNoaRDS?E?tK*94Xo*ᏁODZ(2bv}c|F,2W೔pL0Pqj7ֽB!z :3gLYx#}&ޘ|F=nX-Rl32ޘ;/#-V-/EJ[&HCױqؘ3qÇ $l2Lď_ǚb5nmX!ĸQ.BG 9t"c 1?΄(ڑl^;DP.م2ȏD~0rBvw?]N@ H ^*Cg~FIzx0O{ ȋ~Rî/e)L_ ezG G1=j& 4dofd Ǽ`_ŅB(rq'"EӘ-φgh!όCx` kMIđh F4]0#"Sgalk\vc9W#~PrBo}]5B!pN)=w.s33\O]=Nʖv6Ӧv{{zD-ϋEzO98Q`/K'`[@$d&2ɫ;~7bDůGIVvBs""1恎,Rp$oaYHH ";g+.a=_u&D~2 MDe8tgP2tsH]@d.aI=9/m((Ξ[hc}Fd}F¶Y0e 4f4d 7Qr$I@v~%孹V Dߞ< O|^MbYT"u>\h*Ni +h2aӕ?%"P DwK} tf#{(4.J!j&|[X9(cF!loݴA}v-݆]]꾭yފ7lmF"lH]&aKZ,_PU'aKz.Bt=5^ǺY[ISx5Y+t"LxH-1D~ %zc"V&< H#=_b|c'aO=ɋ?D[\#ڢ᩶#]Z;$$iHa\"ґW(%6Vc8~ Cq>8v0݃ƺS,X$|mKӐ86B‘B2QG`'pJA /veHwEOPeHC&B4:>(c8t?x t }hsdQ?44Eh1^,CW7ӞRoCר? UXfD@HC2'Ke1ay)޽{xzjۋXDȉaށmfuĩRI6X:Pl\EصB!'Ə?~V*$!)q*twnIC߷OwMiv~-Y!2>Ʃ4[th(y.CVB,%BF'`kz8װ;5ufQ'Tf#>GY$_ M1r,vfB`y'?'pxD>^R{V]/hs0&u(l֡(|`>&aHtӁD"E?nS "hox,-XJhn,7IAdfTڳu;h (*9K3Ե,@pytB@jr1*Ť QG+תE隉Eg*G~~JصB!/==/z?3~'1±t?¶~W֝ޞnO֖w}\Ӊ,jr:0UHW`nv?Vⷼg77/i~nǹ-3/"2(=qLx<6F#v,ϯŰPW5 Fx_½XpχR]WK jXcڒOqEgvO[Z;AHaI`NJ0z1ofbŢf*KFaWCҜ*bM_\aXMH'@X#n6| 6\ppe&oCk.!BކG=bm!ے5g`B$BȻbQݦ*^q]{Eu6zct@ 0 EQ+c71{2303I9=<OU­ɠN=.GA.Xgnd0ufRJ騕BcccQՂU(8҄`bQxlV s 1"y[jA ډ㐰0*p|aǷo'vMFƒ5?UiXUgWTH^r F Otcc1qlA6>[Q R]z_Yr6t,cu;aFWpíoSt<IJ=޾gYQ*<~ ٦RJ!dtXLEcQ("['OpcQ4\6: JEx޸ jrKjڋkQ}q8`{ONN3֧g%u6Anq 3WQĩ8!̟#˟ ֥MmUQc`\Lڨb ?F)R"Be0|~~%c, X$li;_<[Y,>k(rRL*ł c6^@ߘ*2HH91"땿6KocSxLH)Ķ+:t 8'OB"J)Bc/ן_Jn,b,^=O/zZ]w3Qa{ZY3qq/3p!џD9>]ҾœEkP}Ħ\nu)Z'}O5:'Vcqʷ^0K|uw:QmcoЫÅ,jp]dž>+G)ґ>4p<4!r+X$oXX$|a!&ی1Ӏ#SQtf]N/N@DLH|fGPipkx$"kcx|wiT-܇F3:;0W_škPmٷVToH}fC̢ Xze^/XojxֿN^ m77 \|dmhnСdcPJ)BF3EEEBwO*olF-&$O=0-'ķmoiCEWo GBuNeHQ3+CBDT"f4p<4!"t^H"1OccRJ)EB(RJ)e,"XXD)RJGEB""J)R:2Ba,b,꽈/{y?³:{(RD\mgW`z\8bPJ)(}/=0B:A"1O}7cQ"o &Z\Qg"lL #&1-9kCәu6ѪK+kYJ)Bc/?TjZ*>Gw"9k((X;Gy=^dU26݂ѦEɦD=RJ)e,"X$ccq|e!?'fbȊ Ct4le{"z:6o6l#"2+N?݂!gb8GL´EQi XWb}3#;K6؟3BDtf>FGzjHi!GZÑQBj<&/±*+z/V8o>N'L׶ᣬIQ | ':Ux:78|c] ?)RXD!lBt|Ӏ`bQxlg"1"Ӿ Mg@.{!~!S1VToHECx?.1Hvcxөã3|Z|uKSp޶X`:8NZJquyb=fYQ+<~1*mRJ)e,"X\(7. c0xh.C .DE{2p)aA_d ޭ?PmϏ!>1֥e`C6Fnjq QEG[cX %n} Ruh-Uqb?e(=GUI)R"B!EEE2O4홊RZzo>JL2DarL*1^czoLA౤1X<1ĕ +^erswǰyT?R r+:7ēE7 o"J)2Ba,b,go,zӅX/?hhB-X7![&4K'Яq8m{詣3sqũdڥ'ߓE1޼Ǥ0tk:dhwhqE}ף~E>J)4}hxhB!A"1OXX$10_6#?x(K{'% "&X= |'vx+pDdmzv4잊{Q`BS\V}jET$/8Gc}fQpvXdҔl[m}kvxVnl@sTڔ\?}Zƛ0صQ#}2RJ)BcccUCS"Yu˦oRaz:V>>Y>~M_~uv(ٻo G|B\WY,v۫DY+Oc(AY$(?^ w"%r,T1J(8o 6aaz "Ķ~]NO[ymhb"~vO.0\݊&"Z53C8< ~'&iQ92)^SJ)t$*; '.G!拾6cccURuVu82?4Ũ^tmV1͢#xbFτz>8|:s ~ 7LF`9uoa&h:PbFn= ΡÂmHMf c-ϊ2Zp?XQX`å؜8bTY0K WP.B`"f/Š s6;{_qn\Ջ0$`{ _g{õz98Xowj>DqJ-&td4\u>Jcƛ<[֥RJ)c!""")%!`f'ܤ,]v X93czbfCw+.VcExir=5x;acuL̒Vq"񘠙1`'(RXD!'DHQ-K-|%aHi=z^]sOtޖSȏ#UQ}cc,z8x5XzRAfhgQJ)Bcc?ɺ,[QE*E:|39Kat8l)?Er,ON}#ys5"ۧLAڧa#iM:Z˰TCO3f ygyC|fѮ\-؃{x\+/Uxbn5{qZ (uBfBJ[-p&xyM)@,"X\"Ƣ3~0_[yDY+>#Nh yXk&Dis4Q׻ϤX}:j?'o$X̜]hj1jlD*foCÅ t,д3'oy G|BT xnj0=b[|lWlō-EHQ!"F[.Ξ*RJ)c!"ƢXk$qoRJ)e,"2bQ_~z.}""ħ)c8p`}  {_c+PN7"#6 )XڝɦRJC!Ba,KXX/k8_{z$ƞհ̰ĉk,/hE(R(^wոuԓk+>kiLhDIؕ9!SJ)tD*; ' d,aaEEE^^t{\En@]Rܳ2v+HR!"* +n޹QTGOqƀp/׶E1S?ۏeazB$"bf1GZ;?2& -%a߯kc_BArʍۥ YطCL8qzZr~՜ǎHXd݂[:w,]_/o X{쾵AG=N`}4fGuהRJ)ycQM0N!$4ԓߞRc̨ݞ{QdSg"c]>?;:3  Of"h7Jz?QiRo@S>X({m,<2?Y.^x\#7a19H*L7i~CP []T'&cT)yƼ? ?c<4הRJ)JH܇B MwH{ww0/y2Z8- k-Ҙf'rV Sp.m]F22rp*[-c98(+%s^!֧ea_t->(-GqA.Xllx|RJ)e,"X翼z!c,c 1\3:%C=uD,<Ć)8`S["𢞎mi4GO=YdyuZ^Y'}ˌkXz2kH8EҘd~xM)R"B!:IOXX$.бH耵l=rSXlXn}Il7qq 3vf8%82/e+ 5rY3wnm\_+XA0fB $\"y?ow^CP6pD ̢PgSw& kCS9cY/}fN-IBb,2+{qJ-#ZCf?oC3|;QtQJ)Bc߆'1u^t8!PE6l cYƢ K,b,rĢg=pFs^{(?PihcmxT}(o6|#>7o7A{~ NºsupmR,ONƺ+aaQ뒱Lf4i>PHRJ)}LE !&o\,|_,+ccUH"aQo kS(qTxbT]?!^B/lCh%T64bvs3pG0u4RJ)oY"B!EE4,27H;&~ s3pk@2m ),[`*= }B8b5z8e'FRJ)c!"Ƣ/cУu!1PO)Gg25svFv.Az"<4(XE%ziRluJ)BcQ7Hf,^>aR̹miƣ#󐜱5f1ֆk5PId32֖P=`:=;dJv.\{ M KN3߆VxN^GRJˀX8N!$4A"1Od,b,Y4qH)mx˦!mg _ Vx.?83_߁֎߭D G|\|yNyZpelŨyCgRJ)e," =E$X J)RJTwc{8!PEV8AbQ|,2wzEt9ǢnxVJ)RJߪ/{0N!$4b'wR|y7RJ)c!""J)RJ!01QJ)RXD!RJ)R"B!8=nIcیE뽈^^7>˞.J)RJߪSqB!Ebu;yXbcӁ7fRJ)-EO}qB!0Ǣ@b'拇a"Ƣ:f']q}RJ)EB"b(( hq>ȘϘ~}0$ - +wi6c?Bk(RBcc5T9 JF-~ D och:[qNsUl5p.G)R"B!EEڀ0tҸ -Zx:xGbq`LB*9p/0 M5cd*f?? {~Dh:>ʞ0#0ZG7JIE*Rgb FuRJN,r;B M!X$aiXbc; =a6" īl~_ [ [Xw0;i:n6Ev,6/(o}k_{t>Zhzq2"UXvy(R, B MkHsc_FV,꭭M_ÂLdEȈ CԤ\=S[_Cfx= .&ũLڸGD$L0*u ۫qac!{>r?5p] سcL@D aוIJiDqcFS$tP^& Z(D‘o}nC0}D!6iVv58 Ux*v>̏Df@qtHSJ)EBz$Ga,b,܈["cXEZsO[PsrOBz_7$glEu[{"nias㑹}kQ59;qi ̍}~m*$}rA^iA ̉Cƚ0(yF{KS68ݿʯM'Qһݪӑ5r?Wkx}{ګU(oUrncqXK}Op_˛aRJ)e,"XXd Ep ï 8<-SC]olIpҰNڗW ē9ROހc:,~N{XݏҘxehUQzsW~=Wᵉm筻UD,#=مN=I(y-z=Oe1ksXۋZoxd ZT~9)sG0س|Zd-k3VI)s ,C0 ;a6v_|^6#ZP7k8z 3-zv\.jdXԪ:.}$ ik.Iר! Rt%RJXr 'b'{lE#; ؛Utx; {8g"U*LH_@nB(>C6'bxmt\#LODĸpeŗ?ɨ, R|*#UG eС&|51a*GJa0*Ǣ M [g"9r,߭'b^jtҋX^'1 D#r\&DriRJ)c!"").^,OjPJ)RV"q8N!$4,ƢgrH ˎGnjRJ)*; 'ᶙ{cXXD)RJ!0|&XXD)RJ߹EBfxv4T>BRJ)ҷ>4pBHh"XڂEbƢ?XXD)RJ!0$ccRJ)2BEE#_J)RXD!?ᴚᴡܰۨM0+17~ubLhi-#NJ)Rq)?}h8!D 0|1OwYM3cQ"o &g;trQgƢֻX-7`l1Qu 顽1'dhƓ+P(U8&D2(RXD!EOϟ^< ⒰t%bXrGDD->- uOp~C!&a1壝(m XWB&vo#3=p]֖R_:("P1?`QI6/ƂSUElynÔ9:+ŶHdnZ-uhdKDL >~CvҵѢ,HѪqM@߮VEBZ|cƊ i&7ҤRJiOB MXӋnI؀X$. ccQi%`bQt8VFT[|U}r[P7j,vf^ǁ9q,v߾xK4Eqƺ^Aڒ"K IXeϫe5H*ډc\8dk\ӳ7QX;5;n 8p'8p -Z,.=F8_*-óUh>!2gECsbf',qkR3P[XE{΢iJ2b?v*&c#JJ)"qB!0A"obEXXDX$}{j}Ĭtsb l{=e5DI cQk"-mJjKԈۻN?m*c(]xxn&#V=IdхZ?l}#6iJ)BcѫݒE(9,Fx A?ǍƾזXC~4."FT\IU`j} Z<)H2>dQYK;XOZWր't 't>x>kK-E<&ZƊP SпVf`ǃ桏t݆ۛ ?!S{nķ,^ѷCY$7ҤRJi?qB!` 2ybZ45r͞Y;Qۊ8Q"EQc?w76P{#c-ߌGr2+\}X %gkR6[J쟚fj>'}M 2 '2Z#&B.&TlHzWQC=|u-ʚ厡`M7jWx) FԜ[t'").:\I*RJ\]Fj`0K)2Ba,b,2qXQ=nX#dhk-uۅERaBb.mێ)b>z-~ķMĴEY*\C%F"b\2`who_{8$H""1c~<C>o֊ӫPe2|&Ksaiw# -y(Xw[#_}%[V䜄mMx|d9 5ш?Qٻ; 7{p{h/v7V޴H*T(*EDKB@a<~~g&3$ DB _c4'^rt gN{89tz>$mֿc,6p,XE$IƢAXd,0IEwEV1Χ[$3U-p,*"c`,$EX2|Xv.N2WΕX4y=I$3Q>Xf=}d,2`,$=cQ˜Xd,:Hf-mwisio{+8w3Ρ$)Ɣ(3e,k֌E"Hd,2Hd,2Hd,2H搱TǢ3EX4.ov4WΕX4q](l,^c8Xx,<1*yl,suIR>g@}X9n,,"cQ5]&Ƣ<X:r]P/Ewu+ٵcQ!}Xd,1E$c趱3IE"0IE9Mևcx,oV8WE#%I,Ƣ/֍EƢX$I26lsiK\@;뒤|πZq}X9f,7oE3Hd,2uE$iQ3]E$I9n\E:c$Xd,URJcV/5KsqgC'KY<j'⾸6n`,2JZ9;ʹ|ʹMRa ΝqsuIR>g@mcX42rWkGǢhcQxV{b,MRaX4y]P=XEƢƢE`,$EXd,X$I2]dE"EE6Nk,S=1 sXn.Ig N6}qZNEƢYX$I2JnǢ(Ĺs<5\$xT 'VX=0IEc)E?nKÇf 8N^$10!̟FJd,1XC/}&u$cND"cQeb,m\No'WGC7$)ų~XqcQ+3EVtٴ\@;JZzѫ$)cZ<N8oWJ3EX("6=I2gE"|E_C{?IE~X4~ Md,kcEX\x,s񯡵$x6TN8}qRJ3EbXZam Νqshem%$x6T֎E;#7 2kGƢ/oKEƢUX:W09M^$xT֖O8-oñ覱XHd,20Ir2eEƢEHd,2Hd,XobcQ:OEq.Ig (O޻9n,fnh,2 ۬}9mSu}e ΝY;r]P^t(an|E$IƢ{_10IE"c"IhogX0IE"0IE9Z|\6jVXס89XIXk7ZXM Q\OZZ^Emc&I"VY[I+o_~?U7SyR5$IƢc)EK.0̕VMΦofCEW2ƢvɗΥoxf"Η.7GCQq[cOd,2E!N3isfuPNd,>ɌNi,z`a$E`,$E`,$EÃ׃\z>\)|&իW^X4=I2NXtc rə_||=X-ݹQoOcѴ$X4\"cQ1ߥ?uko~|&ggݻ{~z>D0IL2 EwNݻi%rާ߃.L^yٽ{]-MS_xx`,Z$Xd,*.^ͯGgt[|3S0Ń!B&I2عtKÓ3;0pϏ߹xf2"91IEƢ;K;\ǟL/B_JO=Dy?Eu6?yHa HG{&QCE {aa) ,ݥ#)̼̓;~$g g3]k<^9l4pMi1KȅpRE8SR&x (=8QY-Ӯ:{"`4s~iMzT^ (NB!0,bX$BYKG(ۖR1>RKyqvR bh>6O` cJEdNyƱq~oM :vץbPxc "Wr&ʵ&ʰFRBOaZ)oD"Ee(; |gyT`]r*T}LW$Ϩ pxUN䆈US^!Ʊ܇Po."\19THYʼngQ\x?;7Dγ%n؞C8%30}.މ+bޏ!ɗ ,6` %kϡ>Z?LCգ7w_f|SP.f:NwWD;bE= 8]֢XM75Z-F"J)BAذH*3=dX4¢sX၍ǯ ڴ饲e,Bz/x&R~ jY[sj9{Xʬ[}1g8 '?܀VEX%E<ngac/.@xnCYE)c+"R0< wRnHK GT>B}!1!`Q$xEDWX_]FEEKӑ NBz:N\5Ho2*\Ƅk.Qkuz*ž%p] 6Y{Z.&bYlM x! Zkvb@W #ht8a\^Яά6QJ)%2)aXЪ-M5 wDf^ ̷WWawfTUȨ؇SR+ƨ~ؕQn2-' *Mu/lGG# [|'B! ½!g/RXC~.ߢ2 |qyIW6U )+Ϣk!g)mq-`OsC3(nF {F#ulY6VFJo՝sett˵W֞M o|ޠGgmNo߆6+ʸȫmE~ e~{˰RJmCB!E T򖧘VJT_܋-qAqg>88y8_:)Tny0O J+Ɛ_*_oa[2S3:v&_r,oM| ;o'{Ov><1a񸛮;X&]f\э'gDmF~l[k1 ;ڌ+b' HXӶᐪc,"J) !LB1,ȫaHSZYV:z.EFb~ތULWɩ49 *,ϥ @sUj+P]&?Ǩ<8P+ʚ!tsU7WYY2KSכU&)q^H8;5Vxb4W(ѤAs1ɬ5]׷&=V؍2\Ea4v:LAMa` }8&4sɵWօ΢رdfN 8X~+vdc" 9mn_2,RBa"q'gLD_}H]! hyveQPJ(Op ʫr~SѠ Wy<DNE5^ײ(BKm 2v}rhB~I"c ܂j}[<U9cx@֦UFC3νB<QNJX#s1v(\F#O)w^ľOM{iSف=qkd}=V%ދ왮p=KWI}1,"ŸηհHBHrE8YXګ5952a5 bB[-_=>㏽yR{kM1q2OX}HpFu0/YCn΢}g*z~N[ˏ#8Suh)=llƎe6e ANi$(bq!/ cZt pA2R??~GCu,"4\ֱ>cݟ& 6tKۓǏh▶w(,"°,j)܏H"~8\Tk3~j_fWo#^Yd}ǚkqqBexo ~ f\_h(Ws ;g<Ӎ>(SJ)ﲷoVS`йU@"_۳gE{6sgoBâ#8,bX$n6GP $W@۠BMi$[lgY+WBM2=G[%=BY1Få%X{R/K}Ay(sf8#$9-(O$RJ)}}x/~|p?ܹr}ݻ?@ԗ({pW !0,bX$|q|Oה m_"f9H:&Vmƕ(f ;lύȫR$9{agvi[Қ/GsD)Rߩ?<¿C(to/EB }cXroQJ)RjTXD!a"J)RJBaXİH|E=RJ) !0,ERJ)2,"â-{g"ERJ)a!EׇɰaRJ)eXD!aѠŰ1,RJ)a!E (RJ)eXD!aâVZu 4*%RJ)8 !0,z"񗺾Uǯl|+_W^|@WBaXİlXE[ ~xpޢRJ)R_LEB^&,u}Po J]<n߰! W{%ab>*\o鐹ZwJ)Goу;-ͱ$7 4]8e02a=9RJ)6֡^Q1,"°¢w$}rM;QPbuZ[N,qGЎR$xŠSj|xjSu> ƒ(l^v[u@||bND_nG {/Z{e{Q~|"@; 3?p_rW/z 8L|>>@=R/:GZFjT!RJ PxIS\^nXl_)]K:1ueH NlX4dc"q>cO ܅~ M={ V 'RJ)Եpqt@ۛ1?& Nh4ǷaXD!"¢"n=yRJ)}p{defad^n.߽%?"B!/+2,zaѵ=$rev|Uv];zZʑ7P>(EP؊,| S7ThB]L|.Qk5ַ#s4P$$#O5Y {?BEkEur('#[ՈN-ZJ-Pfo; `] bcQqb!QW/ޛY9JL/3>Gq6p yemr/"\CӾPG*''RJ)?=/5ENݗa!u:?dXâHv6l,ptЅ|}Ԇ0x;(m}C_|Bf3°y~yD"Wk^A.IucjGW?:z} 2?ip Z9Z?3XWmӘ3nBWhF|&iNqpβlD;J Ƕ0G]5Rz!b_!:P3hw +pMOJ)RJz{z cXD!uE6 Em6f#ʓ<MI>W {"$)Ihq?EBx E=J)RJ'DEBx[e\NÍæv봔RJ)8Ϝa!ކư_"qsyPFRJ)w{;P8TR+Z̬[)).VfmIoYtsISS%DDAEETEpqA0pX|;CgʡRyϹw9=?_C cqniŲ%:!(pv#G9rȑ#<᠖-Yl|4>g7:0_C"Ƣ݊٤KB54m^EDDDDd|4>W/ϙEEyYFct)Ƣ?h,2۴5j6YMDDDDMIs91:4d96k{fEf) ODDDDU).#cc1#[1䱈b,01y1_X`,:a)cc)"x5%KtD1e_(O޷XX_&kɢZFUU:vPU Ӓŋ~0"cQ-:1hCDV-_+*W;hcd***rREEF0+cQyY.VW+e>c(2;*1+cJOKu{Ϣii:Y9c(/njQ }ᚮ xOW呧ȹ,-_E"Ƣӿ,r+د^IR/SȠOo54pNUx\og1~"c-/XT|EE2QO *st9eNL֥VРS h65x\/gu4NjlܳcQcQ8H#e-<٠6kKt!U^GL%5~)f 6Q=ح %W"b}NK缥'c%GUVM}^<$hkgiTFid9t!E |aJK:W)Va9e/Ԓܢ}i*u\?wݦ;o]ww_O~G-5jVhuu0{K?.OמW"5@=zo7=39J1jfjtvY>N/hǸ }g]z@_xlUv5Օ;6B_z{/ \g~Acxз:(_{5tfYlhNaCKTpVu%J]0F}F|yE t]l}1h;5$x6y8CRm?^.Jjc__ۥb_]V~gNב:uAMW+}Ra]_W_w]=i ;:sPSU*e-'/6<_c1|d,jW^UQY x])[l;%^h]_WOOԑZw_ cc\꙾PFMA?eZF,9FfQGjdy;@V*]7^C;-ƹƫt9$YN8%VQA1E֔ZPAαcjʨiyz{Xߑڞt -958"cQ~cQ֏5${T+~S.e=&\WPf*sah|̲^}]wM~ݡ]wq?,u_O:m:yo965x<Ͽq4Nqee{c|H;1@T|9[Q_zw:yg*o_Ro׏͞^OyǯW]U'VPRHX7|o,rtijS(;q'{m^խɮE5h1WA}YPOrTeg\ZawUw5T,y'<:p諡r[1y*T4&࠯g6^.QKUP*8Z{:6 iS Tɮ׾QgV\"%K[+(`y4)lTdÂiʳd12\cѭ:^R~z)ZA儾zR/<IRE}R~wXvm:I[;/8z~;9R9 rԖ(#m fQ5#Ls y\&duuіs>׎2g xIZdp=WGΡB|@}xQ5ܪazwo=LQ7j^Z:ZiSj> =F\z9Z=܇2_TMm<_cQ(}>?ڳ{szZ8wV-]|-'W{*1af~>]1E"K3bcѭ;٭~ʦ{*!CciB?~zkCRί@Dh緓4qczJ|AF:W4g0[ݻ?~!ҼrϞGsQܞ9hG4.XM24|zr2k[^NG}ߣwߧNЇb")M>Z{:n6Vp*n:s)tj;3)N-<_cܙ_*t\%ծx=p߽>x֬Р@=w&&h8n}5cgƢNfChM -9B+)&rS(|MuHKQ(mӢ^EVKV1"̛[?W. Xd|,jjXeZ;_9͙=Kǎ:"H-_wEƢŌ"+P /q]c,N<9|1uX`,:n1c,co\L3&XXXmXXƢ[hNXd|d,0uh[ ޱ`^Fo`,0u(aGwIƢ$ݢĸ7<g1 cq݌EfcQ[6Ղ#4EfǢSEXDDDDDԉ1`,b,"""""b,011|`,Jb,""""""gEEDDDDDE:d]EnXDDDDɉ{vlsǸN\S cFDDd[ut~}XXg\'zqM99a,01u+)aD^rS|ȸ^uRG~NEE]+""훣ušE֜c%SbWNy r ה|焱XXu""":'^Vt~u&7hڶe}3GVtҦs9uҸnkj[͝3[S+`Cifs[焱XXDDDeUjYٔs,CYYEYJϝbg%gt;6t { I `B2K[}ZEd[q%rxSHeeQ!S[Tr)Z[- ?n"V,"dR/O| ?=~0|̑'E 0,BșAYtokuEDg3DfȝrQ}[*PD0iE8,)aʢPQB!g"ƣn~._R]/ߡJɣߟ!#N]{wޠ–ׇՖW]YԚ7>.wěp?<VʜZlMvp0h#D/c!bv6];h~[_0w9(Ea((QBYegD#b*2f\K +wn˼SֶaD<,BF~׏|2 )Bd;v:}Fr7po6DԷ ]Q̖k+YHDZSdƳoo2uUlhtich_[QwGh lu=Ȼu?ά_M`+wu^_Bc*JX]mlg"I2~e0 CY?OQB!E{:>HH k)~~> ZVVFӨMW.{ڝ**AݙˈV`96NňjVʏ`$ Ӟƽ+fLÚ:MX $:],\?pM|csi|职9'mr#,7( ;FmƮXBЃDݚԣZRe3}}$]rb Nʈz0ۋ$"伒u?Fq:~qYN1 0EpFB,vm->e,zLm?>n9xO2V机. aݳ ˍpluZ7ضI=t-x&+FknwA@5Vn%P83`roY0 PQB!Eŵ›oX j"MiKxzeN>?JBLm@>2.(ӰUz{ueœDt|H.Uכ 2gc ?]Zf[κz,bʦFD2Os{SkI$#~ n/Tl5koV#H=خ4-H1 0EPQB!g'ZM-|#tZnQRTȡKT_vM=9;kkȠ%VY15viOv厗ƴ/Zܦ,Z.sA0{0,U/$|nKp?u"nl0S>"9[yŀ]! akmNi <-\9߲a,,"B(:V'NeR|6ynٞH6*ÛEkͽ_Zm e)Y0 P=xt?CQQB!g%fM DžAM .?y~[)̧_~ b7[DkodxrU݁8"-kCH pfmz"')J,>vWr(;!2z6s[+c^!ytzQDRx=>wX?ZF d7_hF&w{2_Bk6_on['矍Z<,ba((!s+fU;o-ϝYr)U|ϫHeC]Y̚&]Hn+p񝷐MEj޺le+ ,ba((!+~(kegSSdضTȊh585?;d~M/K^{/b3D[ G?.WB(a""B!\ʢׅ8W'J(a]}s/ MWS \|-Y)w,o'BI{}r e0 -L,,zB!r@(G1h[~ލGZX-/6>>`б}|nO3D<,ba((!sC%gzcxpxx1 v[%ucM.>O(a]Y""B!l VpkrmI%ucMyBY0 PY F6nAa! Z>T|AIŚD7{)ןrJ"aA9 ^FiH'B!ĩW,@ÚeϓNǨJՕE 0 e&ŭdR}"B!!כTV}~ a9ULYDY$9 PgPJNB!U-*QT/dp4DYe0 CYDY4 PMw塃B!Iªq?B;a߅xːEERĩ,:#<B!BL_Zo-BBa߇ʢEBpM!B^:((a Y4, /MQ5j(v[|5!By<<èB%Q鲈a,z82eeQQCRD1~LM!B Ӭg(w,:UE 0 eeQ4PL%oYR\^̼B!8BWhD߱PJ'5e0 CY*(lS}ߙu終B!Ԡhj78uSCOE 0 eѽ)/SQ3Mܓs{z{z1" FdATEDĨQcbئiL4.A( Ⱦ0 0̰"QcI3q!||,x3`0:88N1m6(`ބB!BQBԈZ ZR;O9a,?PQq8!zw.tw M[AL?<l1af-=юNYD!To ^Dfg36cA\X[A-^OYQKJ9t@Y0 PuxoeeUYҔxx kKaNҤ2 pF]-VN]Xp1>YD!"z[2 Р@,Ȉy,iWɞn1תZx\ZBc]qeѽ0 eh"m!\~5_9;Q5K_1v\Eb{Z ;X'C 4vv1cA 52r&+pdqQя{&8wnb\z[-,;9~Yػ:ƚ=dL 2B!]Mxx$t.Z/>/'Hnt4ZUKqygY5,jݧa,,8=#_ f)`'"- u|̆b&id몕ϰM8WڒT\ B g>gߜ'dӂJ:e&D+b/ZB+(VO9rx}F5,MW!KiG!2vuTo^mٹgMoUܙӦcc'nU-Z?{4L)IuŘT>E 0 eeQ+f!_Ka")!,PK㆒v 2ȊuTDybkv4/xS I%Y+܇c]0;r-;g(މH)Ŝ}Z8S`TlΒjJ&B\z >2 O-FWbҥ&ɹƹK-SJuŘTE 0 ,΢e;D9G̺x|X}ԌCF t%xP،"5$pg{Dk4.dZgB! E/AXFK_4]J VA'} p\W|NEY0 PDYtֺ3̢Eǫ*1vH;y!H*<X0J˔v EZ,,"Bp䃓Nk$faB $vY]/@|\X/}M=?}_})բ,ba~jYӃ/(TZ?вOC6= ma4AE⌡hL ߈bQq-lY ɖ$HB!a,ꔠ, d#$t*4R o_F7q}.1]B,ba( ,,*/E_WE# ~">rwo=Be0 CYDYTWBVZȂ\rصWq zCOH#[B`AY0 PxCGYS"k"5)W\ٿa!rV4%rB,ba((^X"]b{{k B(aʢw{:$,,:= ^T6j Z5ƟR?{k!B(aʢ@Qvu,,*ӔL [|\ǹ:?^2Ĝ(EBe0 CYDY}cΝX#֊24.i#N{ :-j-Ɔw|6c1ża,Rݚr|[Q\9cq? m9AU*EBe0 CYDYtB455/_ 1Wk:p)J4Qn>ѣG =9ʢZGQ3mnmƍ+g=?'/+AM21WV>8 T,%Tk(B,ba((z[!v ]t "zsX#J,i¡pwӠ[onxflA^Z׿YO`c`g7lG\7iNDG{"٢, B\ehKܓM2\m>?O\jz7. pg~z:6s|=v @b;u ($xF`;y|?EIB?a"W4gQӲGgU|nϏFrA͕x 60uoI\CYD!P1 0?,j3nwo(eeQwks?VI,ѥaG0K!ENII,- ?K㝚]^By?vU4He Y։v-ÂJtq{w=S[*LDâ>٦9x~_MBb܉,,-)X;_>o:~3?3!DwťhLe Pf*3Nt|_ıR1'Ϻ=<9PǶ0'L'U5>}yPKxʅ*77ؑ"(asO#`"B!a,d8"ʢ֦~ܭ,jY4,ڣej OolEMbe.Nc1~ܣFQ3!b\QkEC^נC V(KܫIi7>5?>'3Jy"Dꢽ~o߶?|K N=nK_3;4ߍ`,|U$݁@@E xGPc]US&Be6|)Eb+\( eṞ*!"aʢAE-3Z4=JtHoCllצ`{ Һ՛t FfZxSiBĘZ7ŒYPKQ,ոI}ֵ%uL\ %ȯ},(8<cЧw\=⛮\>+NJ]uI5 ; J+؋n3g1AҸ4תZa=Y5(K0?L4ڑ#EBe0 CYDYЏqqw44MA=2m`p,za}bN}!^mi5T7`c2jD bgkK8R\Zcȫ5F\ JfæcuzAqדhצ#j$竍k9<< O'#+d*:q qރyA|f|}W[Н+/"/ȝ M+Jij>=R$k~_CAO`S-b<%4%E(:@|{}=?ǵs/~~/ZQ@lT0^޴iPKhPd2)x 3e,V2szħ,E.O!Ŵ(.ۀgC]]MY$!BY0 PQC ޜA꿄 `MD{#'j*JQ,AAQlوOaw3kxm8v4\1_Z+K xfQ]kiM>#hp0NSyLs ;\kՔe2?-{.6HFiS#g;15veB+r?"B!a,,:㲨^?d4nCb*봨7oHˢ;e{B}]D)$3ʊC'xa]UvN*(B!a,,h2B :~Ctĉa悍H_A5B,ba(Ntn0 ,,jՒ,Ө dt"B!a,,Rάg[۝_vg6v6&)*~)@mhQ H7xAՑ"P{efQ|ݍݍ؝qwvl&ESr x"ʓo<='8oO+GiA >Ic]WqD"H$ĢwI,&$)p|bh#HG:ґtrG@bіB"\D"H$@ X)$(HD"H$$"H,"D"H$XD Ed"D"H$$"H,"D"H$XD ~$B7H,"D"H$XD /H,NO"XX侇]uΉ̶2|An5> u`!qnBve/xÖ "х{m{Q>?3D@b?})ĢL,ZBd8b QRE?;*HNtlׄfI,ڲ5(JD<^l8Yjl8u08-tZ )04U"dkwX,4׃] XD@bEf\.I>=Xm ]ė5x&hD]x~k`;[qѾd,|\}Ǣ{;pJSXEN8.̓s:0&E$ˇ|w\,w`,`Ҧ'I,"E*D2XDb{%-FAb $WƔuygB^ .y]\]T*HC\`,3h@d36>ϿZBg-3^P.,G\?uI\-\!ل(bb@+&!"! \;PwoYQѧ%X:Q=)h(U ͫd BY2 Q{6yzp1Hك6ZxK;1q-@~tOhL tĽ.O݆Y1L}c\+DƊo䢺ްH;1Y &emd2S|sFh3 gkP8Cbd.ߛ!LVs j'/7`~*uZħq]/k" "!9\8_]/6<d Aǁ[nB݈s^\ QމA^,sߍF>nt+kp>w ܿq#Nz"Pu!/{T pH $@ $XAOq*Z`K f;򑽧 s.tLF]LuC3j\7A|Z1haOw77!sIJ68фjOc’`R `Si׏mυld8)/lø?:zmQ~F#n>żWvWZbڣ& ko%2QH~ "M rpa5qym|3ri8>.Vz`3!.Wa 2kj9 F|#EHhYs H֣S,/?i+">5pR,w} 7lĴe%Es;naO$W݁׿WMGs%y=B,[<.˜_e;*gڶ~]<^"`BŞz;~sǰs^/7QoޘZY)g.rgg [\k4H*9,gx?S]S0Ӹm@E+QH? 'G"F]yώ #D36XʉC؟[]k1cH֍չ)ԗe#=N#Ǒ%}|cP2?˖y&5r{q G)",e6:1ȳrMQqW$^θ?y)!׳%},"I,"O"2I,ښbQhtut8MzVSV_l#|ƶl9EE,bb%~G`2ʑ ,Hv"Fd:tN워#<|HyX3 d}k"*DTNNXZxQ[YwsȢƵ F.q&Ȣq.&f}h>ȇ6Wԏwgb3kD/Hǁ8"X$G"lyo^$S!,ՉSuED"E@ 8Y3z "]O.X_,Ķ'1lc& ?B1-rZX7m9}r%GƢKɩXĮ۞ Oe)9^maY49)+^λl@Z`΢m_Uch64L-r"#4}[#f/.#>$`G)YNjp9m^}& %f,mޮrD"E@ /XzKH@=M]*QKQ RͧY\7}E8Iy4a gԋEO|봈K2rޚ"v].^omL{pbЂ%594Q QN,/ MҺ ^m'qxgRtfC"L%cnha}p7be74cu#Ɂ_NySY$S=Nnh= r#AM\82ł"_|XDTXD Mdn]>C#.|"wG=E914YuL<\ 0] ~ ~ꁮՍ'^}ܮ@a"$@ $ŸB,"$g 0mua={Raj'ыE Ձ1'?oƃyDXs^҂$E57w8WEmAI,"EE$NLDI)(>n#Qށ}b/= C}}8CRF>Z"nW?dDQHH@TшDS-j6MLmjLR&]&!RrG. 3 bDi7mw{Ybngϙ1u<:#2sf FCX`,:ǔccccX٩cfEEDDDDX"^YXXDDDDDEƢ6""""""b,EEDDDDX5EA`,""""""cɣ]~}6"""""cfgmEGAEq;oCW'118ye1&ƢN_:c6pcc64N11oC """""""ކ`,b,QCm򲷫RUV(/ȑ#G9rhd<ؙCjކ6LیhDƢ2}#r(gr;uCթYjmh# ~9cc {r?.](;䈈#d6cѧ'B }} 畟Xw11|l-Ga~Ebkv]zU0O3B FƢEnQ111$kK4?&JQSY/.VHEEݫe4&L:Gs[?SWn<oCEFXXXdTWTzMԌ VϵO%//T 0?pkKzZ> -mOs?0h|eEW\Q0._X coDE8`;{XXD#79ˊqM^Gp[񼂱Xcc݈\v8^]z׫_!XXDck9""""yDE4s"""""EEDDDDDE""""""""cQXtdiEƢSG;0~XDDDD4b,09N3mEEDDDDXEE5V+/{ ,*/+UeEA9rȑ#GF;df, XeXXt"G}r SO>䈈]ٞ"@cѩc]fEEw!ڕ]GtEy!GDDDdcūc`b,b,A{ A^mЎ+ezUڲWUds2"@En3""1 mh |A\AV%eAEE"Ƣȱ[/J֦2yZBv"Xѱیh(1>ia8za_|`,0}zm]cvEEE?[QI\ \"cQ_sdXXdXdTԠY.UWVf{iU*cی?">P '(bOCkR+O*=v&GjFro+P5`,06c,b,\`\|XX4Vb,:Y3E"ƢU@nVyEcWǻ;{,h#*{mz:W׼^|>||nc,01hêlDDDDCx0 "cQYhEEDDDDDEƢ=fEEDDDDX`,b,b,""""""cQ_6EE[Ƣc'b,b,""""""cQcc1B,b,"""""b,p""""""""cc؏j]WEy٠G9rȑ#G#U3B䨯QvwωS9۳X_X`,:mXXt]uD.^%"""rYro{,0n3mEE2[Ŧb }}ƅ畟;cmZcc9 pE%U#a.E%-za<(-z,0:6 Z hvZ E`b,01>Wچ=ؐ;1m|]1zcJ-@ʓzЪs4sJe,0 cLQv6w<Ծ<%-za<(-g,CXD(u:os荴$w"X1Qs֚:8ՔBsGvX)#uҖ"\U&遨pM4UɏܺƯekQL6Lc55][EXt}3mEEE/iCTo/sN/?K6Ȳתښ51(Gbuhx<:j<`,Xcc {.UjtR_oy /}DXAc,:iXXDwk 9yDơXXDDDDDX`, c1>1hƢfEEDDDDX0c~XXDDDDDEc0:9cc1EEEDDDDX`,2c,b,"""""ƢuXXcѷjeoWaEe(UQ^6ZfcޙC`DDDX`,b,b,"G}r SO:=K5.XXXDr?.](;*O27x#dJDDX!c]fEu,ekQl,8Jͻ/Rcl]hCSEE뱥̅畟XDDDXmX4 "s v1\X(Y:1FߣMӤJ~x+}Ƣ;{*mիW :R?_o꺤ojVjM7Eףa ~YX1 Cc%4͈Ӛ-{JXdtj(o}ש9"(fcGg+)ii:am_{ʣlt-__}O<ɑjnjb,"""b,("ƢtG/e3cshE?Gke}~Tk Q_;[R*NvVhNj2=RQQ*m٫*=dm|iD)jvzfN WԔp[;^5ԟ6[Z?¸U`PC z|i[r=;cwx,Ihñj;^s)ўM/ }}}6GN#k1Yud&jX=I>UVjQkZ(~Tډuiz+cwUf. ^Zwkkf2sp-Su -̪g57g-ryeсWW;}Vmjr:J|z\?LyT 4ZMհX?o%>Wb,"""b,(""[ToѣGuʢ9)U83( U02yuJK\Rq=zaV6z$P}msڲ$fOF:͙J@"=f{\?[rcʪ])ر(sXtKߟ%D˓V}I'9s&#g,2^S>UkweXd_;OyεC->ia8za_o,뭮23"CYzDetҨ&z~ifMi +Xts+W*^#I=;{Cv;O9NVmּE^YTI\ dۃeэؤW|w\ zZIqO>ߣyn5sߝk=R Ќ)~̽ Xt_'vnc,mcQP#)e`p荔赝;Rf(*6Ǣ艊YAuy1J~"ER^yeujkɾg6Y?%̪gg\A__(]q͢\5^.U-.=+)QkU>پAgG{V֦"L>w*4#_Mih+Ќ XN滰榦iSuI""""Ƣ1 :FXd,Ҧ(EDu}?>ߧpM56(v_Yd~Z|CvOCkR+O*=v&GjFro+~WH}=s}2Uϸȩ5+o\VUMVq_*hѵO%//T r,2Fk KRsMԤiZz4N}"=)"պ'""b,"Ƣcѕ+W4ZPQf%ź˗/31Fccűg5mP4sg01@(c,׉NF0.+Vǁ6y=V^WG{zt5݌V߿S""&pg]!l1Y5P<*#it(O!/|.sRs~g,$EF]BKvMx>0AiDz:5PEk=7HXDw}.E"c$I"c$I"cp$IƢ۾;10IEXd,X$I2(E$cE$cE$cE'IƢM{b,2`,$XX"IXƢ$cXX"IX"IX"IcQ$I"c~X"IX"IX"IX"IX"I7"IXtm,X$I2mWM[/xXd,c$Xd,c$Xv69Mn,2`,$EY&:0IEsE`,$E`,$E0X$I2"c"Ih&W0֋gQe8>l\4S;P] ub,$^ٻ|MU?~]5ujNuܙN !N`v$!4$!$$a_b̾/}enIdْwy1n tv@$"l؝[#y#%9G0,_U&#Ο+.K.Ņ峑 ~qeܾ֭.׮>}˰bX5ۜ~ưaY_ ׯ^¹m8܇|&ׯ]H>܈?޾]tHSٷX,mXTSiVX$aQG;"_Eٙ8юhk|V'ΞnY !""*+q\p汵67@ElXڤOŒ}*d3,bX,wŰ^csE7o\w 乽JacX㰨B_rCX Ϫg>MQ.x\8{ ر6lMk.!MdYW"v. X,bXjopEgڛ 57T;-hmrE2a"<6* W/G[S}lCF} V{BH>#z|"""" [_^; Xv-6o шV?/^DGG(Ⱥ2Ft, {uKDzX,롰L[+ގ=; 4Nqe|yI'О8vhcXԛaQے㐚 S"1>ёa?WT{s2oID= JՃ |ʕ+qq:u oƷ~_w#._`YWxZ21iG{4%,n< X,ހ >;a϶ ݾE9hm]޻ Ǐ4OzE57tKa^"N"*>̴ǛրTu<,^s^_9EDDD ΞjJ]u%֮Y7Ӹ{.׿@ ?Jh)yǫU0Tc|oe^VsݦF mItuhQ*'qZ-WP!>u^mMd(brQafB.qZت=wReQ^%S24)HHGM'aâNt6z},AIرCie$%g}Od84s VoA[˃Tt4_V4W |xL^Y&]CrlP"$ncP'bg0*kpJӆM1v6dsrڲ??n~hMV5Ak6D]zaWbX aQ/EՖcLjiɈFHlUdwV)Ky#ڭVG!3uYƨQ`pYtHIA\rmZ'* 땶h5+\^9I10+aNW#\声aQ{sWV~\&g }aENXt)v/m۶M>rfS -Fa0zg˪fcS߸kWOW#=5Y]HK~Ŧ n*-ШUЕwi.DBL LǔR8U-g˙EV!g X}k~s HOERj=EDDD ZcVY4qD 0o038,Z|9l܀yHr!i(X`op/;Z诌ż1똕'cG{j"bu',HNDXqEG1, aRX*J`6d(˗!;+yZZM&֯] KZab^2Rý1r#Y*Y\Lsὰ,0iԈMʄxߢυ.=~LJc0s]䵤T?=gE 㣐Ffq""""EMV1ӷZ1`t}3 1 ΏAcqW&Xj K{T8+Ԙ7Znׄu`3RJQg@xgȱ[M7,bX,â4 r3|1,hdXd5mg(7.)̇_{P0rhR30_\"NZ U($ 1~Lظ/dߤGwnc'?o-U5w X,Ű GDڬL yaN1,4mú KQf(ANkWuYJQ|Ttco""""E 5E… T!9H!G,年jYW_E,6,*EHIL7Qc19_!9>',aâa)+MДHAVF*֮ukA^Iqw(,"""bXTo3{j7br"$MM$,3w#ðbXކE񱈍-G@Tk1)mft >JIDrB\ Hࣇq:;BK:HMuvce˾~dXbX,E[-؋>E kr~B9k m͊S?KQi.GgH:*u5ոp"^+"Be>}ͰbX"1,b,EVuD(ށMD>=Qu= =; s/e:]AXbX,E 56h2Qc1Znp, tHCZBg㣠@܌4'Q)r"Ǜr)ǟrʰbX bXTkCIn6*%\wT+>!w.6e(ѠabnXy.Gv.}x8G }1 bX fX$P\퓯b'"""")APzXMFE,bXԗ¢s"NmmW8O+אM"""""9,iQa(AybX DYq܅B. z!,򸹮t47=QDDDDDr)Ǜ"bX,E")VBƢG{(bVXDDDDDsbX,"qYD"&*f}f*-:"B .:1,""""_b1,r_@(,8*9q( R_˰aX,aN6.S[s3:Zxnݼ_}K.r?#.K.KER,ŰȝKΠlV"kϞ淡VXi>C9x߲2|mLeGܹsG\чab1,Ƶ+F'_̯Ͱ(%NwnoDrLQs]߲ߓeۃoj,&#"Ozb#"b1,X/W0,ͰaXcw_uUGۿE\J|X,1,군\Zp%(+-r*[{}_oPfDDDbX}1,>1"4Z$gfàKCjH>]b߶>SXd=ư5xssxvNQyg!5O^}I8=cńWŶTKo{eXDDDİbX0,:拰aP(fpv7%G1i <SX uv13?z>ٮYOC!M}aWGo 3aMCNv~2F aύǢ>Ô~xZh-#0l 5 @<5U{`-m%mjlrcDK+])X%4I1sGaP+`5(6Y>ڦ7"""b,E^#ۓrâ~iD]LgDb18X;pQe/{y& 76!:%IZ7 =OBc0zF5(N?F`$DzjiQ.Alv¢ZP%hrW<Rx^y/bo;fS~M~%4Ip}8Q]պ2yxg-5_%or7^WPl^4 ~1xpLYFSk;xE᳕lGĪ`G=C} QXSlEm\ A~\ٱ 4x Ee{gQ{:.sm / ?M/:!^A" Lq5;ex{!$j`u),jms* Nx K7¬ KSxngw!Ԃ&gc̴0=i^kBQT};l\6%k)#1{Qde/$Kp N*[5*v*&^k7݃)E'#`;4g#2pt޼?Q3mׯƆ5=;?DDJصu321,r Yۻ>g O;v6/^h,7S䵘P{?MKg¢33B][3rϭJauy$1MH7|sghBa&fFY7ա&m'~}YlWޤ{aZ5ǰo*E:%]A;b[ܾn}ىKOnঃUʿkӒ IX`ɘ7gUQ mXdY %PU#c7"S(/CAؼt ̟~1%DS6@S|xgD%B}}ꐸ,c^یm>ʴع`ߟ[ Jt G23aQ{r:a91Djot @\ۼy~\'#:떶hYW c *jbw7b#^oM6VM|;jϋ"""PA\PX?..=K:پ1Ф$ 7#NMBxFq^ƍ?G^a{2aâEw|A(τSuDmXCo{a|?r[3GAOc1uG8^2/3!e,=gkpEqؽx2F M+VEوUGX8n0kkP!x1,:l+1>v& SV? 볬hulI?f2lqm23E ܆p叭M:QHA`?S[iƵ+%,R$"}"= aQ* f-ѰRoa(?7u{S-v\vUCaѕ穏`XDDD76֣¬V/x}r0%,:f&S]9]=-~`w{aѮmHP* "wRr?Sg(Aa= 6j2*̴?8uUOIPto"[{ڥnI d'ܸv-MvuDʊ ݼq^T' aQK}c vO)cP?a z5UzB~ jt:[7o*n~Zry qjg߲] _u^sŰoP_pa ;649"4L.#kiAs};İa¢&o{#_=SQn!>'FSm5âE3,K‹á5p#=a_e~-?ݹ/;A }y{/r/o@n桯mhiFdH0ގ7]F-*5N4IDRNz2c8`uZt ZSoE+âEr- uLCzb=Y_e:"_DDDwC_,(Eș>F'ge$MbG';+#!C 4Xs^֛a6E= *aJcQAOXeאH􃳺xΜP|*4RcUNN6%HQ't~{@aQO"k\¢^G.EDDR?ݽwqvOu^\~F'Qy2ζGA]5/CqXd3yPADDDDDDD^J{E= KPDDDDDDD_ɽtiʲo ^X/W y(,1L\րp7<֟|qohVI'"""""""R.A3d^Cr?$Y\_`QI`$3wH! ߰fK~;~3O<޶kN2Xn\Wuq΀k<#א|Cr;$CrC$|Dr?"ˣ¢} C'?򿌝/4O/7ELݛW:;d}5w/u]_۩];~8qb\9qi MBJ\%bA -*"*H1  >Āχ+Z-Fg7?ÿZk579;=?ACEGIKMOES{fEfgۍE/L;Օ3g[?'ΟBƭ+ʍ~̝/}ݍuqY7??ottttttttttĢrE~>>?57⩉S^3O==ֱD;s䪜.Z;/oWGy?ٝcZ]ΑޑQNԱ\AX4crљQy|ijj>r{mO/\zҕ^:y>o?|c^ywu @FF:GzGGG:HzHHH:IzIqttt21(cсn^E;qr9]/ߺrA0wx+os޻]zo]Αޑ.RN4q:e5-7s'ϗ`tr:}Rνu @FF:GzGG E!"#$TQI:J}形X4PWh_.Z<Z/Aͭo]/(Gs_{_]wVn5%SE_+h-x-itQإ]uSaRS x˛_r>d|tttttr,$$$TQ*ZEkug/0<ꔏo6>Զ|̮HHHHHHHIII)MOZN ZN`rVǜRr+0=cv @FF:^$.RYN.j~g:Zr*wS9e6qkW ]#}##&JIICQ}[EtQVJr/7SFX˽ޑ'6Rsk579;=itf(*_uTQ{,Qy(6TRJ8z`¥(m##DttFQ[(- 颶`T%M-h{|G*ttCEJ(J/iE*R0 u4bWosw{ԑ(]$}俄X /iF4|*79;=Dg9QԁXtQk0*ZֈF9vVQ֑ьD#_CQNZZ#)(:E>`gQQGkgEs0:pTQ֑шDH4l(i{è)Q G%PDьDoE6(&4Qs(/5Q{8>@ԌD+GL #hxCQQ<2UD1kF1ph5~\#Q} >FZTF; `,#qG NpCIENDB`kbibtex-0.8.1/doc/online-search.png000066400000000000000000000412151331300026200171430ustar00rootroot00000000000000PNG  IHDR ˄BTIDATx\Siݻw}߽wBU)wPQ+bGA:+DFBBB);:}ƺ:ř]ef B|?<'9|sB&4(d:B]-`2 Glj"'bΎw.`< M R>G!V)8VI[ HRޢVu9,DH,?E0[밀獆 6+[5bY@/dW_lmjhxR7ҰN~X~BG˨lizg/Ȋp >~9qD]mkU"VJKЊܤ"!1;; ͍[*Ǔf8S|3T&}"unkm'0=ʅ ͽ%ZZXMT 7Ӷ$zؾ%i2T9lZ)szS׺|RVT28zI gYxΉ#Ι=w0"o2@T0P#Ιa٤7# G2u*5MD"x33Ha6k{czC5 ҪSk"IA%0chSpz#1.TKkk{IIŝ}NsR{FRhec1/5VnyςmuQ' n\vqbu~RWgkuW'#B]dzQCLɣc=! JEZ/YQ׋E!4뭩26yDU#!G廃BW/?zl=Y%b^Xv&kvDhvrZy *zEle𕼢MʅF'lxⅿݽ=%lG|Ф7]Lܚw.a!ApI.S&z Fdzhڴ^f-op!@=^ 04WS\廣B+Wz~x)ؙ;!se1Mk _\{#`϶rУz'6MψO>w./??#,4!>ӏ>h3Pwn_`u=B# G/3wzҼGgb̬,̭,(ZB &'тij+. qsZP'H}庙3z<_޹}Qw>48(48PwЍ 5lըt_zMCTDX{c#?nu4~Wȥ>#7>w: !c G4=A;8b5{ƣ*#Q^ cljkciX˅&YSmF:^)^[1H-5pAܯ_mO{O?;rbksjh0^f e`L0=`zfz\B.x2#hzb/-~՗d% 2J&niP}Wŧ?ɒ$sB - ،۷?=W?,I<y7` ^&./';? OuƞakZQ6'R=AS^y!zWJz>O{ńnM鋟_M_L*i {\ Bqy&2}wG``Ν;?Z>uROBCwFEgJJZTQYnuQ4-B_sq^Ti5}\HY4'=^߶xSsUҢh]f9X;M[UScN#@} ~S)nӓmCgEh8߿o?~=~qOMϿk}WG-!;ln0=-ӿ:"o2d׹\.pH5RyH4˽3$M%ދhߪ/|tW#9{Wyzm Evs״4NmK颀C>>uwfIUҌ9T g*l&qXG457nHQWyÑ os>N/>@ ?^.:QY-Dlr'燒.V.wUw nUk1P;bU1pNr>WM3,-\Ҳ2}W[`Fk!ͻTE+pP z5WAW)=h+85;,cԓ~ٲCf=>{N˚틊ۑn3zr'-a_G>Ahz2g' _^~㕟r=?ܩTN>vnsRs˪esS]}7UCennѩ,I]QֶL!t{jIUΛqn^q"uv"WaIK Y0=_lkhM?Euӟ7 tMZTnp]UlG3+ s+ 3pmyoReVi\Y 겤آ~>?%3#29K>|Z^Wd\ 7[}k"=[ןKݤ<жa 3N~ktjB]Bϒ2}HNba*OԢ]! jH2`i0=O?IN[ ᅾ^3NZ.* fu5/).+jvխQIKURд]ܲİ71w {]*Yv"f6ӋxC('?&p[2mmϋf_6L-_+Ņ.khsv,P>p158 F?!nOߺ2ʁtD:`lq0O2{RyHΖҤ]FBu׆P{_SԮ"F,*Ls^ZG[fm/Զ6*=+W+;h 4rOw L,Q GMLs]%I+:~Uzg={{ro5}Rv]_|/qS*h[޾xtGܭ^ᳵFW.-;y{ Ϯ]R|/b/׹l`%"oSOOCkQJOhGe9}嚆KS(hVl1ey!pۂ4[K+gY[O:3h{P澜l7Ǜzo7*gf ]ڤ#^ʭK~_޿mB֤)*5L= bRX,7d!Jg֜{35~aAX?k'*$<&h7L퍚F5TIO][2u"`B.͉Kew<Գ,m@dtgܕ]c`aӴ;yx(_* eF{QIWerOe󣉽+q|&J+}s9?LJ8, Μ8s: j) o ZZ?Y 2}Fl_iJFMXNY?g)\su5kUvDNJE0=~oOb }~2DX]2;ؙjc398vs!Wkhgԟ-z~F*~=`L^eμ7X:τ,OT%K3;-l+!뽞st;ostM[;͙J}Cj$ᾎV6Rszߊ:;P])kLQсM1HL@0#i${{rf^FDCd@ߘh̬SBe0u5?"~Ɋ(2fΖPT-)\n>) =@zXX9yEQ+LnenfeelkcanxZQ1Z*66k!+J׿R\{W5弢x'ksн^ч4 A49ewb)noK8,L9-~W@hfI=P-ַ畽|S=rSGswٛ=f,N{ q L}Wc`7/%ڎVJ427f _.dJrWL^eeT'lW<qR H%{xz)/0]hD4=oԝAossBE^Z;)tJNcJ26yDU#t鱡dzaٙ$?,ivrDZʵns|%(cӪra_y;z1(5R3d(lpVzQ1n740#QmձRT,g^V&42Z9gUWPakN]S{NҒhiwځ:֜&35x%XWˉTbSZنrWyY%󒼭&R]VvR{J!b%{ؚYz%;ht])<ܢu쳻g8X`c_V׻ᕟYN5kz+5- ,Jpl-U yeTq+=Zii&YX8Eo+b86,c>:X>W+\9.G,a4+hл6ثֻ~WP 5a+[xh?iN$LX(њ{ O;E9߉jk2w]SCd$/G۫g\U95w;&^'2ˉ Vyl+ us{<5` P[" O}{GS640#Q wiLz}g> S}u&D%rM )6>[`phI4ˡMhzwH{>RH шl%&v3>O<7ލBؒ)KKb&J7RVy/[Uyah3K9ǗnyQFJ_; g 1p K 55顶CGM8<@r]nkz{~'[GzOsc'G~WֻyW-R `[(iɬռDyhD+a5BՂg|ϖh ҹH<} @?Ӄ1-aM7,+Hv|-? d-kyK<(# j=f$'3zr6Йuӫ}M3JcZ?Pn>;J)[&;x2z-L_ɝ[ jy_+dBYݐy*̬*kejq>AEyr^a4cr!Ħ%!IVT)QW{{oc##iT KG6=^s[v|e=s֜ǯ1e5V#*bmi;;v#|ơ3=;jS&yzs3kk;iqozrHjݵraMSͭ=8;'*8&:ȉJMHE[3HjRL._߷0L\鏭 {1[UӺ+sgt)T K;;GwsncK(iĥMSgLf?cSC8e@ڤI6k KI SG]6w)ѵO񩵳m,?'[Aԃwߕzֳ nc9n&lEjZ9 LA_^{4ps \Vq=+yaG+F0F"ٲ_z?$ZɧKЏ:L0=L0=`z`zӿnkX9Y' *+U L1SL1>%_:%`˦|ؤR/a]hns==|A#}fGSqB$ub˖ )k(NWL0=c a +'dQA^eE9PUY)b)ç⋳YDL?>s'[/_~0V ӏrOA1--y, Ȋp 93zsNGU+KKX\"{A_6ۘS_{/cljkciXiCA`bcEAF{7_& *7]zUÇjA&E|Q BsÝ[~ IOO[7;;"L?>%\\LXC)u LL0=`zKkX9Y' *+U L1SL1>%_:%`˦;ge>mRP3!A8#3dVP8:+$}\ ȣ>+DrUyrrj)azAjjaGYCR0ϰCј^3Ѵi9r^f-`9APjkw] 60)UT:Wfg6dz1W Lpv{=-ȹhSwTKvOzV$(bKD9 |v5#\/YNV\#T^+0= ?-|ݗynbIm'S,]Stcz9lc9nQ`kI`zAM}l Ȩr=~ܘkdAQƵ0#_7X" &ÇM*%1L?օ;nӃA1۷nv45w(D~|P'Kl R,x0=`z0=L?ְrNUV3* Ub)b:|J 8uJa1M?yShok̐p08 7t{[oAABҜGςY_޹l@AF/o&韐7{ĝݕJN񝾛'{.*+{6YAdT!?9)5R]i 4/A_8̌:Gq1Sk"IA%Hr wFR6G[.ȊpM[;͙J L?ƨ+Y:}WT/40WWr Ļ{k{JbqL \kz;KڼݥF'~WAe ^u^ 0wGH/3T4s$k~Hv'Ւ`zA*SvVgb̬,̭,(ZBHsR9Q-(-&yzA ^*\mGA~l^ cljkciXiGGl7lrAV 6 0xϻ"uέ[?`EAM  'O̗pr0b X)0=*0=`z`z~,!ad,*ȫ(gTU*+^TygN8,3@eOhoo|1B{[+d<-٧Z~M ϿƆ2RNL{Ks= k`zdE \D7Nleeg_T~v֗wHKXΊ藷o'7 r'3HaI^^r9ᳶ򬹙57*OXە&ZO}Jdp. 2*W/7=p37$&~\Ssx y4'31fVVfs-v:=;~&6M_W#ʌ-=2Ն櫐v rvp [wzvcz2<+O?2gEJ;:;Ůfl o$zcGqhcAU;ϦWr!'c7m~ȄWPC7dx*L_6iN)[ϊ3{_dY8l?*99o8;O9%,.jv~rwZԶ<\Ίr _^+n2>7sN#jQB7%ᵪk[1qOz}WW${;`s%;ʥm'S,]SL]{oENpg{3gW[K+'J#xQ#*<{]"iWHk雯8rzGmd+Lxr^0w󾥤Q~3[o*:XX;.>TߧI6Vys|WsfʹR)-;x L^8#|Q)/+{`z1~zy~#q*L0=x*JU=xt^? )aJIiօ;nK q[7;SRX;Ӄg@/<0=`z`zL0=L0=`zL0=`z0=`z0=Ls5Z.UIErY\da묰!22hzRYo\p:#L }Yhd=/Yae*XS'u&BYhdёwͿ "#t哏.xbv]fϞ[lIMM}Cr%!Rӫ_ۦ屬Huj*qdl=3&*^ӳ6mڴ}v\_rw%wmF"Hoʙ5O(#c{Lo^Z"a޶MjQA=hh!=O4~K7jjݺu΍7꫻w~|ͭ[>Ì RT3ûEo,rZ;F.=P${gI;oȑ:e+  Ufl{3pme16%e=<U^ۚ56nLIIyܹ b~}Yjj*F*36{ĶgԀ/PL+7`X6BV%M[LXNr[{yI[K^:+h5fJ}Α(ڽ|-J ?o~׶V;=>7#*G}a3_L/wE˖-STo&''#z'm컻I5RYO'ma:ӴI-xKP#>0tcmĮ.s"u={ ")g#'fo:%zVvNtL2gkg?:-۰XMnUMJZk †/BBmAWl쭦5J-#.^W'&nٲ#c~_Y[[ϙ3… <{nRho-Uչ!o3+=m,(潣о!i(43[# ??>Ѱ1mmMf_Qiq+R vTo7_=PO YiT\G<ԯZtD`i 5#EV6ؼWyK7;.]:xLcaa?|uɣ+W$GwQ =E|dEZܥ wsci\G6_ȘڛFD]S)Rr:F_[&AE {Pr6xGo-ն7vPJRIL+`K[YR^={vygZR?g}~-~ؼՔ$xQ]4Լw$=&:puY)nz;jsΕd7o|zDDDXXB?ʕ+Zv)=KV-^Q4jU­;%͆=)YNI%4{kJGMqI+(Um8j2MFLO m:ӔEo4^h`7 vZX:8ߘ!i>ԢX3wfYaI8mtmomYTF =O?T-io TmR#Y٭UبmC֕5VnggΜg< 8IooRoj}7%7!j>iY~0>L/#۷$%%uww߼y󫯾"'+WlٲT?TjnwM}[R|B\u'}G5jWa*V-IX.9Ll1Enq[#FArB0$sF֐?!-EΒS8J9#S %ۻR_,RZ' ۜ,5|لBm&9 Wr-8=;A\J/Z]=θQm^*'pGan6aq djrDd[Zs<RӘӐHLrبQ$\zr$jzDhj#Uh". ra ˲ jy ,t  ~/v3PWp,,m-~3F2pZ/|$e -qΚ2dOJϠ%CTJVҳb+a#@ҳtɤdA8 Ixē'N,(h[s*PN܌KM<1Qo4E q;]$D2nc-:@H aK9S[½ K'@[FЈLH@]FJ\uavڶnŴk>R2kKPeP=nyf;H= dE{X̨ܜ͸]վ:]DQ/R6 !:b* r a~AeTeSXJW:h! 53I' 'H>' _^&ţ c^n ,o) Ttt,j[)BazҢBEc, C5ZdxKƂ8e " 1b׏\nXǒr}2בL: e :q`m>'bEy슨x-"הZGsoUiğֿp~R,-1'0sSz\QbQCS0mr@Qjv7BvkKdLlt:zgf~)[I:z==6ٌay, -#;uvѲE)._+,6!gg#V:Ok1ջb:}@Vؕ|$˷c^~t*,JǫUT>t~B)ҳlJUYD.RK 1e_"r#l҅G:NL~r?:)FĽcCJI%9+h#ڒbmiQJ SXܙQ Džؔ4oDSR (S1,lZz=56iߪߺlmhԴ[=2ʨ/!񃝇QMP4e|U%s p*W a 3gMSPT~IeUzF&ҥ.2;I],IB'&=/ Ix3a?9)Tg?x!,Zj-%^)æCKf p y/@$ޞ;68E}>>2CfT'&6)Mgaޞ٥է heU5xGhtɗGP?o!=h6ٳP򻷱(}a=ԠߺBr1umTrTrz$H$UJd4tY%}zB4&WB"Y.h|7*:FOl"4c"֘8 ,GL}NQH2±L纝:aπ7믯ct!DT_?bc]֏]H"jHBq˨@Å&,ew`NQv *\SVY_;Γgd g֧ô Ǜ37EAF)ǰW9b,7=՝GȨ`xv7S6QFc$,(~@rSX>S r$R/JV.TqseG.tKh2&pҥS@NOđIeC-|m-y-;b[1Ǻs玐Q}܊XCF}؎Bxqތ[V`&x&?;rnj,;R%Ӱ6AFIpZT{w"hǪ;'݅|$px z.\hLGO- p8:"Qu$0È'ftb>11 Z ̯yqʃ v P( BiGȯ[j:KjE*WUH?߈Ny^㰠t}Վ+P낍1s9@vzglpjYn%Zu8 /pxn! _&#q6wFp6r65'ڟ It5q5б" ᅵxw( {`_i3cˊ@|V,d`?-ˏJb BP(AnQa䧽/G wD̨g}3wzYH BPp$ҎѸ}Eg;y".zv)13im&=9C]ՙ^a5Z/>UCO6 C1z$`jA,APgoүs!ŐFts1BP( esCCWٙi_N? {r+;]pA'ؙ^YKDkOҽwsVb Zc YCҥ3aiY_+Ί>sHo#$_]C> rUm#=rˬc ƅ-d_P_gpҘ0~f͈X^)pҌ+EG|Biih6U—FEQ!N5G+;⪯O!v:ʌB2Wqԁ~a$J27 :jOb!ENz>'b2g gj+)0mTy͹Υ0%veH|'JW%!*k'rúhnx % 8$_ ᥨX~ᡶ$OS}!H Jr!$fbTKaԞaJRxqXjc*YO>qL83oZ NoפD>,Yd6S~^f㞡2Ƥg]^Mb٦q}#.Y ~1gBccmM?˾mȴߐw wHgr?r\<◑d1*9Fxt$39U Ʈo$>yL26])|/lȫdf6% 8;^fEQd1[<ʮ_HաEmzؿ[ȣЁ &׉>bԑ4Tscz=;ҥtyIte? '7L!"z5EjF^EA_z6RSSI [f"%1j㗈Q/m֌:%3cx4v1!ό:︺o`=H{#.EQ.F9(W_/q) 腣̌a~v ÇVXH3Lqlqcٽ5]+`ml5ʨEyu[PM#f"e4gF?o;3*Su88)v[/uƮi93>qLkFghUGR6xu q{QEQOR1z$ aj9g;g7Ny-Mg F]ٲf=T8Y80⬨/YUxűfϴHF,ɥ]ɁE QiL즏Ly 7,OHR n+G$((*F5ښ[82; ц˜l:=\ݩ$G1sq ";вw6^] eꇇqxiAW1G6k^H""3!S͎rWO2ADes+୯2wW{ kqkbTlS0?4e0sEeÞ͂τy1镸:8<}41en<;mTu5?N%TyEQEQ1ȻC;{$ȪLbwEQEQ *FEQEQW~8uQgZo,-,EQZN o>*CQ{Eh4fT1z [W϶ݽwy>Fk/|DnѼUoߜ@\XWâ=ܴ̰ozz{F3iלk@@/ɴQ;[mXզ'z_|MBt ](rbTŨt3x5ۏSqc("y91_^G]yNg0+pO \*˙,2nطTiO&~Akcj_i((*FqdlJ$Aae7=8~%}V2؍ɳTv6S>06U}w-k|^)pҌ+EG|BiPV=4Mi(͌PǬ=[ۗF԰mZk%vLm(QGYxY\U#Ď]Gafjc*YߒF,s?+!spSFWgwbf\ bRFKMX©*!yT=SFM1=|]&F}K{nӢ_V-Xhӿ6vqF1;EQ5շk]~<ݿd˚r',7 .~ZV-3¬P/ I}\xe{\&ƒSY8e\A煲J6?.F-p6ƿM,*f;53ZĂdn8@Q{EŨ5Ѻ̌a~v ÇV6p_b ̌Ƕ*mYg Ek<3j؈Py.# gAv6fZm#AiPf/N!.c3v]43*S~n_[g/)l(u-wr4ϳoi2={Z:-KrrWr`Q=BQ9I~+3N\>]0N~*A,ɯ{v{q&'Ё;#S%SC*sa럑_ƨȉpDov໛OAgFo/6-^.AQE(9t{v!(,'&9;K>f7Puc IDw&d`*s6Dw"vKsL9`llO['63Ć׍naĦ<+1NˬiYb/}=93:!7c'C#5u [7boT|ċؙxcw`\G12r >Mj~G3gPCcO8RQEQT8W 1ڈ$eS" #.u9iboϰHb<`WNb֖s1-,H 'k0|[aRLcŢ錎Ap8ɢ̸9erLlzc" vz&+ pxe_˶_;~%}V٬?"1H<CHaQ.EQEQ1ڬ5w1#kT<>}ر(3d1zSA֝E{(w8c/e{]Y6ɡUC%o!|t;^7g;"è=67 :jOb!ENײjc*YofyWQ^wϬ8c]ۋ((&F/YŸ9E1W[r&&J^Mb]b爫UXk*>71iY<וu Б6T5ʶ17>K<ע~?/.\&GX?ɠO@QEQM??i\ (F -t@@ӆPse1*s2ɖƾfQRq '7L!"z__3ߗ̌ 'J9)T_˶mMy͌x͌ ?N0@QEQQ1Yk^՝5(F23:%8 ދ[I"t&R^— 7l_N1j䭗fF[{e6fkF}8$.mfF_˶_Όp3mkFltH1Ƿ((&F*F /a ՕX~xWlG`lM/HL]M;4[} cnOObgPuh!Cڞ3jg(b:EъL9x`c!>J@ Dd8˧>PEQT*((*FT*((*FEQEQ~9׃4~,-3V;?}m[hԇ?w|NX!}Q. M?,:Fѕ¢%FzCUnz >f :wXR_cn׸sf"F[(Iati~).snߙGnWu㾄qKޘONt ͐ x  v+ g4|͹d6 x ąu%8,onc=Fg/-}).i}bH~bo`bYk=EG >*F'Fs|2-B5k~ KF_x8:/?Pǭ҈}˟H_Ng/?9AˠK#*sgNC~+҉ B__g`J;9a7Smr0Ʈ:gB18i 1_^G]yNg0k!,r֟ ;bT>3DŨ5tguE?!uv 3o/_Gr=ǖXh:#zl#ke!;u}mm7ytܭ )>[6; #Ϭ$eُiϑs1d ecWq{Kڗ. Lcb\^b -m>VkG^D#mjxhQ1nba:Hm҈$eS" #.u9o'S{4h4*MƏYYkgBۍY3"W ZpHO(5,!筊52"_Oo3_ozf%}V˙؂?͖lz63=@Ce]%=u>q)FC:1 sJv1us.{qs)r/;ɋPvqǰ ^©˒_~b#8cֲ{ y,ᥨX~ᡶ$O^bWĦzJ/BTN.yݴ^A~.m\S\'YX"\d-*_Ojky*?傫C1DŽ? 9ɟÐ9[8S[Iᇩenʴs7l>,g=-x< mA8!bGM"$SdXHkľ_]c?aџ6eG y>H`}ydgqWç;vyJQJJS3!~|njE__N1bV"~z=ҿg ];':NYOח6b}df jc*Yof yMqF1;{Unfnsa)Fcma?zaLZ}O۲$9 ӂ^hTZQבi˿rnV/"mv>ʿ?d\$: \*y6fzB|?4 繖z#8'o&=s):? 'Ÿ=[?A63/Ewcn|"x0iw?/il7se[qa/Fuskmٞ Cf[w1.q;)X2lJ.qv!2ȫ|-)O=IbN3{g@bϚ_?:*pmmƋV>Kk?ɠO@b4"}5\f/"3d%k5h5=b7& r?-kEy&z!ϙ1nX,Jbx0݂ld$n_lO6:ݼQQO\CFp?&GgE 3ٳ#]:=@:б\p=ųtoxq`O~vz0(w:7r>SM[~6aeG(m,{KD+4w 2GӃy=~euB_ؿ[ȣpŶ+">ٟ}}Ս:}o$/-_FRs)|-)O<3j-F~l) .)z}+>\r ?N0-6['3-U>. /4yfZf"Ƨu*bYYq}=hcIPh6&+vI|֜q\?(F? =͵x=~0gF?nfT ksq8U~u熒1w=Kke2pdW 'XN| ̌ 1Hy:?/623:%8 ދ[I3k[Kئ?)2厫%Y,ǡ D?Ahdf0^2gF<~ٲf4"ż{Wi%:vֻ#K$3//I®KXVxw }vxFeϢ/gw{6Ayw_؝WA2cj=^";3".zꮉ6_wm'wPeh?,FqQBfZyp=9>s[{pp(!}$qǼ9I~+3N\>m^ 3"q'.81]>dPdV:/vN%f:=>PS)g!^\ׇ1\uEHZE6{1~y̨*%gX"/RӶ8ɵ>Ͼi)w^ 7FENd#xkgR)[]q)I_[a5F֟K"|ֽǖ希ksSľY!Oh!K#sHF,ɥ]ɁE Qџ_~oʻыM?#vmZ2wW{ k% 6C{t"}F>g}8nf?2g ,1˖ y7᭞+CFSfz\_U4Z-DZƷy,>@d*R]!ZH'O['63f=cd9~"ǡsߋrt'S6"\OoG`4wK7o -d *GbjJ [*FA(Zށt Ebnb f.z4^Ըg)t'qmPEۛhvGxV廾aA}GbTrG>M`74rppV9EQbǎrH_՛Jm (q[:8*;%(m@QEߛh4Uy((Q+,-Lk ڧ}Tˇ((]-F~*ٶ}.ϧյ{ "ȭ29 JpXBW<@ph&-s y23bR]ZCI0w!*( ufq*<v,Ed?9o\;6f+ocIBYc%ΰUE|9scWsk>,ǡ?J>M#&((ы5{=!A}I\0qdlJ$Aae7=7?: X9->}ر(3EI™J ?L%.s9=عRybpJu\!}Ԩ|FDO%yQïo;̏bvv)nEQEQTZIw^/F8±+,ѶyK6i]~NI9`o&= ]~1o cj'kx<|lё$Xrjw1 򽌳M PV]2lJ.qv!2s]bbV{?ɠO@f?+(bYk^՝U~\&GkmU<ߛ" Bӥܵ-mHN偎tR_NnBD</L`NQgF`w\70Fe$=ȲfV&xr_w b$QEQEŨݟb/rftdhQfF0?{q+iͲ6׶:mU>,̌16FkF=mˈ~Y]ںl]/1x?( )elfFeHa{EQEQ?QaHF,ɥ]ɁE -kFz7eN6Ğ] 牥Inf܉ֻXB ʜ Ÿ?gsF#T2,OlhgC1-Zʼn 3ӯÈMyvWb @ YofgPuh!CnxΨW<SWSj((ZVv;G 9Vps7QhE&C{՜UډZq L9֍|((뛵fkĨ((bp((h,R1((\Eb`;ug]{/y=8^g˔qݛ7τ7i(mo"pEbg7IJ}??^2vq@^QU<&. }2r}sqa] b[h>Űo0_P=k5;!dEM`Q'^ZPumU巉#}yw5yzryb>E:^\K‚|,='t4ԖoiDyC=8XW,cyu9mL8韝h俓63?6p/gc*)%ڞlҝ+/Wz@nOŦ2\ojsowI]>JIZaN,|fydWudС,29ry.&̸!,v *3V'`ؿ㍔~cx̼%@mZgfbtFG 8FB5"'=Х~ZVmw,!kh_Bt&,29wY61]=?ɕ8zF5[|0Z+~]͂4-*-xAA(k6?Kr^q) oqF{g"Bt A1*}&m2RWďҚӠl—wyVMϳj9+\zk(*F}Ng0dVRa*qۨe~\ bRns3u'y.NK8uyf ɡEÈyb>YQ7E3bE -QqbǬe\+e(3,V"I^.*]Z^'d@ <9/~O1h Gx)*7ex-ve9sS0)+++Rؕe#~pUvrykuo8x> ^' JЦbH^3 'B\I5pzC>=@#z짜3`վ83oZ NoפdLTKCKKƼdl\fuד 7 =q#Fڏy=%f ;33*}fF`w\70Fe$=A *ϳE,O憓8 ڋbǏ_)<}fFc[﷕cfZf"ƵS\fTf/L_vjٟؗރ<8I,V9so9ڴ0΄vɾ\&[~ZmobGH?3QA c^CA*3_TWhsT<άETsd}q#?g1otqB ;ar5}w@qjftFeWK J )el*yfΌ k)P6bԚMz1ZÇ~-QL[ٜqzpH.C%1*A,ɯ Xf "qqZ;yKK@Rm"24;iFeB?؊lYS*,JH-Q̺li%>4ܟǠU۝GxurN|;:=>PSlݙic\t]4A;Ĩ4慾6edd}yw%v3g4pxBO4[ys*1#vʽ3g!^\ׇ1\uEHZ`bڇ>2]r+ܸ+=WT}i6.a~'z'kq\cnfS1TT 8{[8U]S}d+U?}(RT/TQ{sJagQUvF/Eiڧ)=oT}ަzR}1ڤ/h _)%_xukPoL^3M3_) g4|͹~9]Oѫk'D [eXKD!B?[0bR]L_ڔ) 6XKRl/snߙGnWr=q\[lSm ,;^_136 s3KQ=ҿg ];':NYr> Gx1!x1 Mb_e78(2:OGIx|#(fg(v1ZS}^b4<.46Z\R=s-W|2fͤ=CUXvjD^w1.q;E dڊo;YЦB0&>3,ʻI{gm.lcɩ,g26LL/)qC|j;d{+ 8+@MCåb6N Wƕl+۫h #˭2rwY/il7B?6~J9Br,8ض/:Э_:>68,^1' ϊ(*FMyUwVV=>~BJEг#]:=@:бm1zzh|o\iji,Jbx0݂ld$nܦ00y11*) NJ<5[m"5ꊘ)xNYNu]` 0;n@~#yi2ȅtyq`O~vz Nč\hl5"W5jZ3L]ЦS8 1jhXjy=%f a\[nSp/Kn1p(kbԚ?bܨqlZ7^QfF0?{q+ioІC70w8KmcfZf`|_0& Qj!%}6/د`x$2UU qp ŭS،Al\F΂ <'~'XN|_ΌlEg?R^̨G#E cI7^la\[nSp/KvˈH1Ǿ(rQW!gI~-^qR8g0oesU˧NbYӶ8ɵ>Ͼ\vWg.'N̷:۾{l9Z˸5OE>jvGKnw $}m)άY_R|G6cw{1~y *%gX"! B#{3+9WH|:LOfe/-3riTbFF!sHF,ɥ]ɁE ֌ ƷOMqD>1x%Xb' ůQU8zBfcp$ًF3qmM!½,'TE/*F]r> 2O{XB ʜ vb˜l:=\ݩ$78m#( C3Y ;(F]qu0(*FMyUwVV&ez4W FEQEQZ C̽O*((*F5r((#FTs\Eb`ݦ<E}-pvmմpPEQ)F/Xwŧ"U-s#1DUrF^e;3-H#r_G}ɗ19~Aԛ!L=>/wy>F0>ozhz{F3iלk@BnS`;oߜ@\XWâ=cd5~"A8Cdܦp=o`WEQ2>x@GŨ6o9.΋%aq4b'"Rקl֗zeP[9 ?NC~+҉ B_ϋOƚǩpz8Jرd|`J;9a7Smr0Ʈ:gBs?mc6&aXh/B. ד$.iUEQڈQSk_|%˧Ѓ];[+1I[cŢ錎Ap8JY6%Р02^_Kڗ. Lcb\^MRxѾG#9Ü(:˦7&`gq>JVNKO`7'bSxrT,oeoeI3C4>f.^0371%2ܴAs)EjS퍳M$!W=4M_cVq#Z?v3#+- _$~'cYŨ2>eخfSEQѦ|M?5_XwaSz-"2Wqԁ~ydgqWç;j>tz^^W %9|bf^7g;"7BW'b2g gj+)0mTyb}qտntqDsrCNu.F]Tx\\⭼;9pDd6"_?AgEQEe1zGsKbk& -t@A~r=_˂$-FOm SG`Pt'nerd{iYֳ#]:=@:бC gXl/1D|γyw,17Pf,i5{qM8e;c7qe{D_GYM!-xq`O~vz3;n@~#yi2HkM!~RęQ1b)m11*) Rxh b$EQ~"ڬ^uGŭ i.|^ݲ$>,鏙Qh5'XN|оѡV6-3k[ϬŽ:#l`ЗB7so8 +\:]6IqtmV۷]/1x?(5,Ê_~{˿`L6H mV 㥽kF#R1(X9}ޕM+;+F]m\; [LϞ7r=^";3".z6nz/vN%f9u{0}̡r7g ;V- p`Ӄ4O5bzq)_rI""i%g<7[sD-I$=TxoX?/o50\,Kİw9 EjSg2(|2+ xiAn+G$a>ײτ #S%Sj?5q0rqm|y*Q)Oh!VEQ6bZibT!sq ";wӟM'guX䈛^OƷy,>@d* uLsF1wVd*X3ܫ+Lpnz1ּDDpgB2gyZ2؋sM!Œclu.Nl~Flʳ|C39~exbC;:Iolc9FVg/R*j)^?pPG|R?e۽_oS/)>C rsF} 摘a(Ѧ#?wGwhE&C{5ϴ(bwGxV>qu0(*FCh-F~(<+M~G1((mҗZPŨ((bTQEQEcڊ+9MY+yܭ-?>e7nab>!r_km}Tˇ(bԚMֹgTS/>U&ܩ((m`.\] }PT gX*(=(FMy[ĨQit Ɩ6o+ @6?cŢ錎Ap8k~/˧Ѓ];[9lUͲ):ߜaqx۸ߐE wҏ~ucܬM؍ɳT 9Fr_,gML6X;Ӻ_Kڗ. Lcb\6}lm2)(Q3LKʲNJ/BTN.y)FC:1 sJnJ ֝E{(w8c/eG֨,yW}?|cQf!1us.{qs)rW jy*?傫C 3ܼM'b2g gj+)0mTy21F7u,Q3r/E %9|68c]ۋ(ܟb`._)bucX*9j?O -9msp=ջ8Ky^@@V6 $yş#bT>> fͤ=CK.c$ź}VĨl1j/fL[ y'px|\?ɠO@{z (bYkʣ-*F\)u2ɖƾQq9)Fo]g`n!{@tY SGqfFeLlY͞<БL eBD[g]6XHmZLM%1KbTUY_̲_GxurN|;v߃*(*F5.-?w()/S9l.o}뫌ݕ^CxfFEܢ2?Nb.$_׆AW1G'nǚe>MEx_8{[8U]S}d+U^OQEQT^W?mŨYl;:8*;%(mPEQEh;@ٹ"FEQEQłϡMSۻEQEQTZ3?e*F2vq@^QU((*FUg/?9AˠK#*sEQEQEh9W \|sbE8&vtz+{'1wk%x&߽G,HТbܘeC4>f.^0h(`v,6y01cŢ錎Ap83Rzd:QEQEϛf$bpn6}=hXwaS!F snc溷Hxr:FW)GO9g((MYky$ؒ6]0;YȬqx .W${("Vrs((=nWb`*zw%YQM?#vomy5/$ܙP{ğw ܉F=wU0Ք((aĨ5&A+FaA>EQEQP1ڴȻR1((m֚߷M?|y{w_A*((*FMyϋQEQEQEŨsQQ}~w`BX!}Q.((=wLk1zR^1 x62Ň0|-l}SlډGVf4 ąu%8,on܃\&az-|1).Py:6 )t((rbԚM{T^3m3;9yX8NG ;"27 }m2QWƄ9 2k?J>m{mWQEQ晠fydWWI6˦DF\|sZ;HGHp?ƿ$؍ɳT\c YCҥ3aiYo3OjsogOt57Y3"W 4PZ/ȈדVXoʸg:aZEQEQ'F~8=~\;@Ce]%dKr5*wU_>Bu"I^.*]cMkbB(v='spXb_Cu 3?6٥((XMYk;ᬻQTb\v^/%s-F0RSd6mzI{BY5i+!dϿzaLZ}kx<|lё$Xrjw1 򽌳M P&Pw|1ENcWTy t}((rbtϕMGFke\d) -t@jKt29M-e=;ҥty#;ԣ,Jbx0݂ld$nppr"Qxq`O~vz03NR&,f ׫:d~Q7"'sI((&FMyh^Ν-0gFc ;g0|x/n%\<3͌Ƕ*">$>bN?͌16FkF=mˈ~Y]V_bPZ/X%5)l((G1Z ^g'oI"Swq 8 x;vٷ4=MԼf=T8Y80 'sV6g\|ڼ.yWg.'N̷;䇏3>1.nX2bp6[M/((JhÀ@˖ k\gIمxXVưg /=3a{ o5uc IDw&d`*s6;}u6ŇH,]q}QyH6U6- ڙALzcsBgPuh!CnxΨW<SWSj((rŨ?f/|Ejܳw>E+2;,0݉Zq L9֍|((ܢm=ؽsgŨWS8GREQEQEh\G12r >Mj~G3gP輛G5iۿ6ROJbz(狉6y3zZ~K=cSۺG|&#R'1jj̓{sĨ\O&^G+%'g̃ߩaTj}9bW+;[|+~]͂4-*-N0V,ZYF|MoL$nWσ}re/@#lM$4( 'KF>aX뛍݈$.Cv{$n@{0* -m!M(ދd?ͣ!^gl=|.-y17Jg? |CX6; #Ґ=r%) WvA.l%}_H w w,!kh_Bt&,29ͳSgxm\bۘ-ϧ^fĀU(u's!M"$SdXHp5*wU_>BuƊGJN>e|}wXwaSL,^bWwrtUvr+E@lzl]Gx)n_79τ2>NT«lhpSy2&-c26feM2/u.F{LԒ{$wBn~Ʊ<UgዚU0⸮fT,ol?P['f>AsKGk=]k}".YVƮAfpQ^_AQ=KVt璵1/ wqF1;W*}hl֚y{wsO5ױ'aD6 .? 11iYʿ?d\$:D[?Fc>D>,pSw1.q;_1JEN$`Pߪ__WUmcJ}&blҵ?h̿G>Merd{khg4_/=/yIB^&to {u8`q,$y/#)^#Y$zr-kQN0Ĩ<Τ`&?=c*\4,E]*.F]lE*{Q9φLuVu1/[;~$>L2-<Бv SG[.Qߍ01N1:6:۴s1jyؿ[ȣЁy=?̌>Ca`P߲_$_gg}lii%"3s}۔) ϐIq|&Os3N[GpgF7_/k "39Vƒi{@'ڸ,Jbx0݂ld$nd0~w Gfh"Spv̺2v V5qn-"Ig֟KǼ$w!ƒk$n.Fe-Q8`"Cn<vZLp-wr4ϳoi2={o7gdzgxNjPﶋQg :6/>EECK^bTnӪŇmG>ʇ{NSqk|B{٪ky{Ƙij34M&-I$z..yq1ڲf=T8Y8CxjLdĒ\ܕXвfr܅4GxurN|;. Oq Ɍ9<4Ԝf_Sg<=m/BĨ`AfE ЛikYǭ?~c^uYM/ǂ5)FOBDޞW 5}~?1sq "[vZ0(9ey5/$ܙ`*9猶)kDsc2wW{ k%M/.W_3ܫ+L𰹛2?Nb.Ww >t5}}:E>}}xYć3O@H "R油Xrm16@Hd^\^=glŭ/V.6rs.嫹iDL`}IifxKga@` FeK`y,afAJ_zg¼n~##S~+ ؙ-]xNHcWǩoX|AɲUOyZ{wܔ|gG٥=0ⱷe|=m/R1(g~lUz$̮K>K֟KB?1/G;r]C rYr>\HL]Ma]Z6b%1\dh@r(zGㅯH{KCQMLLE/J,=zǓ8.\f.aA>~1z1zݳ+9*FEQ^1<;mTu5?N%nOS"M%(A6k{T*:8*;%(m@QхQTCQ1((ȠbtNrvl⏲HL0s3^OÝ}z=x>Cr_1.۠4B&0"\>bI_6k=8/)rwR]GpB?lY$yC*d>n.yb!/O>Y~~Dб1)7'֕(& ن};yl0ͤ_s|ʪoвsZQ/FMgg1\g}b8 zȁO.S1zQ?]nmyb՟.΋%)1wm8WFΓ3b<__h('^4sas`uԕ1vNgT"9ΔT'FmOjaX4= n-)˧Ѓ];[+=kGYN#<()Ȯ47+jzJ?B>J_>f.^08"`yLȾy : X9->3%"q|z5{W>o>3}QPjH)^@䔕P{ )rS}+c|njV[5i1OPP=SFM1=e)8c]ۋ]6k{vr掋X[j sy^@@VӶ,<.4䚷M$û%ovq/rNg}Vy˼If^閾ͷmcBĨ1h]Ofi׾g(tmH1燸mJ1s+yc-ջ8_@e8Gk4:? SG6Xi쫡OvEu29> } ?-Z`!׳4MHN偦WBq-#H.)|޸M<ߛHqo6- L Y?'.AOϻ/RN'zFL})`~"?6Ico ߈_236+16M Ǽ#fF`w\70Fe$=1p_Z9 1)F>W~yU1rSR^kZQçm4yfZ27;愈km2sVj0+;7gC̿ΆEmu1a]1gֆc[udKq&ό~@uGŭ 4 y&ov!r?F"mO8!هlĨ`nЃq{knpm3bQi| |kFghUGý\:ؽ-ɈH1QE]۬5~#(F/ Kaav|,si> y~Pe"#9?# ^*wqcb[3wGKnw $}m)^ 7FENd#x>8QEQ1}뫌ݕ^CxfFC{t"vaq|  2\fJ`1  dlv[mS{ؙ7U=#/WwUo`qn<&$_˻eI"Hy5/$ܙ`ƶ,pIC6e;\HL]M1zJ?>E+2;_wr}~n"ݿmV"isC[hqR躇߹C;ѣw}${֏mE-{@nOŦ2]!F4rEQEQ*FO?rvlcw[~sb/Đg J?N l-l$C K[}v1s[$Oq=s?+!spSFNNxاQCQEQMYkB$gwW u1fcĦnsS_<˱{b4"mv>ʿ?d\$6Ofy=}3qPgQ#cEQEQ?5fmQL4-v)rdKc_ ר˸ Ũ&Α<БMo*3N'zF.4(((992>zX6gF׋3LSTR^3}ɨQsft8dnh '0((D1zbNOH`0CLؙic\t]4A;m*>4brGH֗gp_`_ kI$Wi..Q睚riTbF((Q.KT׋ܴS_ s)s\k쯞chN4Db`*zw%YQuc IDw&d`*s6Qa65" /m*GbjJ EQEQT*aA>EQEQS1CŨ((bTQEQEQ1((($1z5"{1܎l=EGY$ [XlCӹvM o>*CQEQGĨy6hlˎ:ZwV6 x62Ň0|78-cGuK7t2>뾾wy:6 )t((E1ɻY:aˁZ^ L`i ma8Lj%]bK]k(5*ALPAN : X9->˦7&`7yreo@Jb<`WNbJ zJ?B>/$٠侘Xh:#zl#ke!N/[XNH`lih+~]͂4-*ƍamMn]AzDΛ!uv 3o/a`߱} ҙ4o9 V?/CyTCs0R wk[QEQ? GaE>KcYϭ4ϊaȜ-T2Q끛 DNYI^Y ^"aI^r_iΒ"k՟2Eܓ֢3?6٥((rQSu4N_qk0`7 .c̍OύWUmcm"yzf~ȯ47X6Œ9ͶRvj'NENOzaLZ}fˊo`0j먁L[ y'px|?R=ghMBO2A((w|hϊ 7Im(frܳ#]:=@:б-zi쩖Eo۟m5{huf?'ڴANnBD<řR|88ol7G#kY05`I>/r8QQO\k1p((w^bsCɘ;%03:t۪|7p3Ww~93:Rvp3yx(4Fw$:o>3ھq/r$>bN/Rnџǒ!< rqn."U>EQE*F+FŋYbQL[ٜqzpif\^(? ͦʖ7^cVqփ((F:O1b2 ֏"\j}I™J ?L%.sU^G֨,yW}?|cQf>p2Wqԁ~a/{'6a 3oZJoפiqf } L}o$/-_FRsq((E\KDDgFc[;g0|x/n%m̨so8 +`b\[:t%BA\:ؽ((nE Лikь9I~+3N\>]0NYӶ8ɵ>Ͼ)QuǙ B^ZaLy 7,OHR yyF~"' uXs+(NC5>'뒯;ƚLTl(Ϧس AaSPejr}x*3gY촳]Ls:'?ٹw`(O"Aŏ )ɫB*8;ct1z;Fەh~z}+},Qb1 b1 ~q;Sg jEhD@Fd<C43G@cI( (rCDin#IA~֎q?V~ϷOj$"XXP%‹<Պf:nM_7o>~QOi||ODhQB!Ħ-r5ܸ#>~QO=0*BPVon\ͥJr2u*Ί aa^IO FOɫO(B!".li?-^+9lټ}eS. a^LS󯄾c}c),[<CGO3<; ;K^{2Z%B(tY%C䆣M-'uo@R)MPgoi< ^ ؝݌Nc9wN0֬~ϑUk& xl/;3jNeRVDNF`j|S˝l7H %Q(Ӌ+5L) ]jX XÏ(!20ze]2c[e ߿SN~w__FfŒEGmrޱ؛_Y En$a[lAWS͠ |k>{'O/`#>G #ΌXҀ## 6tZ!/WAU+@$:yބg f} /rv)vX)BCa벉?seߐ>|g0ϳ_Q[FmmFB oDQO*#;{.At7DD!:fr#d+ܧ#l^ױuy8g %[JN·;f`eǸ7OGGC+Ό\Wwo#Oec$v9>:7#_f3AQcP-AAHэgPeoƒtpl8\չ3Dc^tNR,9dkFW!]}? B.7`|F`߆BF>wX]r\88ڤ6om:U8k9^ {QqI sHMBG0Q3 (+an@Z? OvI )H!7|(OYo;H~0&jq^vfy!/P^⴮)H=S^"6 `ih T: EC_Aҏ^1+3t|s{X:z` m&+4:3ZTz{f\[Ep:ͷF$*'3F=nىyJ+זaSa# X5Rk׭-鈖IJ= l//?_ -Fh>ĵ>X}0_`huM?1!^e[ӨoU!&p%*547ҡ2 k&9rEZXFHmb3qQβP7(R9k!3OɠY/hqw>+/A V TM2!B(ZZ.{- o߁څv!|4*ߌ"]CB~ k)lP 77DP [!Dbq8u8n798^; l//_ooƍ ; L%
)ڏ RLuhl>Qy19`%Wc?9#Gc?'K.F;MF ! AabPs۞ ͧ(2Ao(b3 wp^^A&W$!#q_^ip^/#0;+(, @Ju9CuBAJx*A!`}qE|we{yy͘Ȩ1ag繙%Aa+W!6K/ W(` _"}A2\L PE,9%4dE[(Wr|sRwM ]9;Fabr(!!(ڔ\,kSЍ`o'}vj[:^Q؝U Y۰k6><#sblMF:Y$x!hl5qav :MK!5(U,@%s8pQ׌6d2]]LGG&e"Ό\WR( ː- ҝU -gZЪV@]C+}*9%D52x6sg$.jQA(mqDr 2\6ajh B!FV.JqHOͳPw\gMh8>`fa˱zS&b{SBMt__+Z5TMZ>p03c2h4Boroxm D a!O1t芀Y6W72'ضwٟ6y ܦqQVMaBFT\T ۷#{<}yN"g>d? oSӦb'|zL^ѣGxcbxe',w*G5[) !PLGWe\n܅$w k69&n^39Yo=}{r'˟aTҌV BW"#+J?Fޞ+6WG(~yQ0`U_B!աN}عm3F=%D?(NB$5*Ρ07`a}bkO ?];F0BnD́nɱ5~֣xؓ\c@ $I6tPB.wIENDB`kbibtex-0.8.1/doc/search-results.png000066400000000000000000001513541331300026200173660ustar00rootroot00000000000000PNG  IHDRg$IҳIDATxA 0 EA߶BTLo`sT,ۯ`ʣE+FՈ%+GQ #8.~` A(>=2e8-՛$O_S*-ң"It3jc)nb@B@7Iy8NL3㞈Xru;*̕71LIS:EScû:KI2k4.R r&Cm(m06 8uӖzOL'#l}7RL9ȬAf-eQ?4ˏo~jHU qᇇ|ʣE+FՄ&)'bѪxDxCbjC1j0*>k/5!ʣCKMPNzr0kTW)_k|GjH HՒ 1tv9P C2 TsE42W:E*8kû;('!H9 * r"a9CA w!3$_7^~;ɤ6tuWWG?QUVSENnAڲRT:˿\w^t>FBəkym,B^Qҏ =4}CҴu QSpHZ755~Y#/lDHac6M.pA s|B/r8d˖L%/1I!0f=n!dBF(!3 \ D,ѓ\ii5D"6]Ӽ}S׭T%K?Ժnc{J4&KUZqTi 9mk&!&y JΘPiFpUAo]c6ic7InXwd>%J _%%E-`  a"UL˘~q YV2EPvi1ZHMO ӦbF`9fmvuboY3EN[/29̌MJW4_/B0vdw–wNDt$XS_  >7 L‘Gb^o^Kidl^6&E<* [}\/IJʣ; MQyl9^J|QQ?3aso21_|FQ.ۣ`wї3comFqnvRoltsF+@@1?K~\1`ǁKvOЩ1`w%v580(uHV3H^}E||=at9TmW^MϙóDa4T$ꃧFʫxݗn#17-݃B5eVo"A!ֱeaɰ$Z18PUKX+A`M^vU?o~5rkvR$y+JNQoU5561KN.qLB v y2Đx(/~  ocm11N!kBPyF]ܿ_h5ZҦLk/L#ۮhif‹f6Ki"/.93n$g1x'4z ?&e xgb<驥ɗ.|cxq%k"*edL ?{ 2⑶Hy!GWaX=gC6,řiH퉽0hl|enJLȞ3oX1'IKIo#qpT GokaqX?h,K 66#o26b>nM;z"1]O"'яVtE^ZiCx.Ͷ;s/ruaB NC=<ێn y-;xy}Ȏx|=h{ o t^Z^_+A?4O~LP fAM.prIAa nBE$%>xI䋐}1"ܐُtrһP(x/*!0 7tv'>IK9K{xOݗ &]kD钏ߕP͇\ tKx3t>P(9 Bɚ\e_،6#čh`8ıIO^gy&(˖Dċ7^%1)S(_ fu)i7.c8ܕ+^^t d-t1#x 3^Ĕ)a)g?*9 FP&/n\'>)89B(u=4&@>Ί2eE!]/`#aJGəBd_[٘U܈fHCknx mu6զ{RtjKӦ{sJLwk=>m_MY_/LoTL;}>IIS벺ߩ;m߯_>r&%]ʲR=.]89WP(7@^.9l|nt[&cuۊ.ɭr"muBոq_U奿3@Ν>YW`iGPx\ [ˉ+iu;XÄ:pPˊ[e,-qq)95͕Ο>i]<{r(pkmnx4&xZNw Sou]!4 7;Թ[?B EXCD$aǁҢBvNήdnLP(q CyW8waECgKp RP(ȕșZbY|8zrV} S"ZX<,(|DD>UQLg05f".xZxeAg}A~O!Ŵh1Z @ b2t1L7*Jr2I̚q-Q耉zha\Paq/ FÆk4_t: ^fF`jx1T(CRM';u,P,K\nC(=T( Ms<'U%B 1>roдuOyv,eˎʡVnM[,u|k<>M-& _"K$ǣ__LUڀm0! yR 췱kR^?^PbrVx&HΞ:_~gN;wU9-S ڑfyU0e=߂8 l/|cq.֍UKcDwX,>sf!{<><^ZW;<WŤ_gUpSZTP303~2(:{ʞQFdHy{rTiyuCA۬o9;!}"$}E:s; a|tD(3xyԥZu|o~ԢՎ^X&gx-ױ{@d!`,N!ڹOi?ȅ[y cBtZz" Mڼt2/m@0^|)&$F봠WcLuLs&/Xdl^nJl9Ӣ. bR;\dZ`<{@Җhc* QA;xebRuאkcP,+:J9ıi[ؒ]| rN7q^ aq?_I{ moƮ߆\S܇(l~k^=ѫw?$N'J<9Sǎ྽}W|wN}s6B̄Ɉ `/ľyC1|uz#iAܪ9c?]]3yشp Ns.KŐum;P+ 0fU4sFCy'؀K%&J2h$. K^ގy94m43tG/_|GĤmCf[<zJo}z,gzpj8ʳxOT#{PX:%PMc (rв>6r |߇-MWP{Åe)PjļLPō;j bB8W O`G, /qsr \JQ(t:&d/z؈e8aVb{P,+8p&K_ZE]6A?r-ZQOׄˆ!vF\i][AnoI'#er0kl7qhxLԯ^?[ɶs?!efmX^.y6 Qv@j,f+W8Pha<1zX q #ZG3JcvGjc._<<*[| ́/h؅2^G`RxݭBS<ۅ@UhGu q/.+/ h{sT0#*/‘WE5$NݍrQzl%ݦϝ8MOÄ׏ʤY]v5cC/yIQ-gU1x'4z ?Q$ ym198Kplvf*Fm,NVTcU|)t.hzlp&3ԡ<)~a!g ǏxLMǖU~>\ڶౕ s $L؄"ttz6 Daa|[F*Ƒ)~ԟUG"aT:,gmzyjJJUXC,1ʿ}ɏ~8<%[%at/0[/3Uo`XԭN1#_-μH~f86Y V:K>=4gO&9ӏrf%#Fcmd]eqB~ 5MM[-gu0_{ÒZap:sAFQRYAb,Ps!ٵXClHR_<[[Q˙h+o5]E(Hێxa ţ܅snyL~ntn{dcES3#ZбRr&yϠqxweTr:.ُĸ;Y9CgpkPu jL:W5F\6\) ˖)q6m=_%֡1g6J :+Ki̙bY֒6)[f>Q]tuntd=~Gţ W1f _t呕m+E֟g vrܴ}1}\?-3Tz YpĻbj*_'to%|VQHxLU s0~s>\d`+:miш ̟io +<Иބef~YP=H>?,(5'GYiq9N[.6j~V+ghyAHk[ݫx0ӒXIQvߛk.`nlAKYx#}3A$n1i=CƜ )կ!em%Š7`sJSymB֊)$"<vT}bb#$ok7 [pvIy5}(DGDZP/l1);G|:mE.Ɇ@DD$NKpK ΒX8SVkz~9ݺ:(_륷1|Jܲ9`ڈ7G @TDnj;[D"NZ1g!L)MLyȿa[~w5k)=E_hbb!>Z(Z]rvڎNi5|]v &Nfa7BP( BAD >}=?7.9t`6^-ւ~ l/g$`Q@Dij:liBκe(P( BP8r4F읉_T_%( ~rQ`AEQq5-ӴrѴl]K-M[ʲ\rgqADdgF|.8ߙsz={sy"nqk^Ul߹}۷JyصTôϜIJJJJJJJJJJJJsVWSVsvMe>%ݻwijjj╬eΔG3g?|#))))))))))))F+Y5goPx7 lݧgήYF$$$$$$$$$$$$$╄Lsf9BL81$keZzHH %R/ 4g-?ütQj:yֱ X{=`n]CKiV3$={?=eގk$.c_^Rڏ{YʪuWsLl]!-D}FNS\7][ g_?m|  7>=7)kRalV۵ ~sxK9YdΔxJ3rYcp|+|JyC_zT ԣ-C 3:_FAГföޠSY&z؆.WD{*.rH|`F~̹2|2җ ߕasq?ɜ5ݛqrŽ7᪡پo(|4XoO$|K7/dxGagfGw0ψ`pOz%|4YZ-QOC+"'hepCL$Y7<2kk&+ii,ϵS熛G,]\DzG/o-LdAξzG٪A I#=5k@'y7Ä^?[G Ѧ.e6 k+uʓS^qWou_G}zH=:~34`D['1_`]`Ap n:PChn7 ӕ^#yiaL!!!@s`Ãx-]6|LŜ]SH欠%Pi wW1Vc`V样 x;w9wimݤ1+H:m7*3gSm4ashgI\ugy)`8_4a39W XM84~8S}#F\}1GpHVhs85pjnq c WgzfכfzH=7OWF4$lވK\]-g3ۘ.\ŖƇsȀ.:L!!$Hc ~3Ls6ԝa_")Zg|3l͙R9]KjO1O8$c>uy->=klKPWphW*n ?H}#,M4ݻ=§q})\~JMwO>{X9}8!Ϻ' 5o_w&:X#gh 43Z4Ϯq~gV!({qy|f@t-ǿDn"om"6v%bvcs!˝a3 ݁L9zHHHtZܧ$h4]K :+ 9S2guj I^CkǨDW!oH` xһ,8r) *19gsOY>E3L6=^5,9[sӄGG?l=4ןgf@ĸmiT3a(9޸{9`Y ds5n]`sQ(YG'{vjJTWjK2h9텇#cݑ"gAίGajhܕOh oiC_ :x[<q)eo| 3~ڔL2 `Zf EꐠChqf1-`,iœ6g|;)n3@4c5Hֆn+$$$ A!!!!љ͙2wOw= -MH8s?"J"!!!!!!!!!!Y|8`0^H炄4g̼q@e>̙qe@ʅ*GJJJJJJJJJJJJJ?_x&whi .yZ}3%=\Zl$s<#|uL&>VRKI쯺ewZJَ**i$>)1w,_^lw&ڟ|3]{>>Aܿ5}?F=30u$;NJ>$]Ma 1 F~$>[ 7q&'gw=4n%ʣ6[VL¿ a?21u>@(+R?|xhӜ]+df}3Uݹ[,80v(۝qR_d(/w|O(78u-'x0UY'Xܬ`T?~ϷyNÈYi%UM̚+l]3AC6r#n<Y8̏o>ut@E)+C!)).n*E欮9kٸ9 Usv]WGo?oܳCb:SǬ_]K\ z79rJ[kO3?5p$/gK+8aokg>NP}= Iz$J=zHJhGDhًo ̐9j_%;xALft1˖9Қ9S)VW[#6gGo{3 I`S]ˎ! m̛}[!cW~qcs_E?oܗlPˑRM`-|sU ?Oy, q; \ӂ$oS IplȽYK87ri$61s.vdy\=WM-ezN9H D{ aǢPOe~Z{NW[yfk`[K􆶼HDK|Rޛ°56EKlX=??y/V'2~fHl_r@{%Ә bƞ~j`9,<ދ9&ٛ[ۦ38jgvY\RέBJ=~ JN?ާ878@$;57g}D$>LF1V ?x3l)cW~fiYڶ?ȆXCDcET{=;ڲ}U#{߯[M8ū2q\Gi[wD-`[߬D0ACy팮M >%|iC:+BM:T|]+ 4s~dGY9='Ͼq('=}_fugçY/|P\,?}'_$Wum[E,k.4<(ߌ?2H bm{>@ܞŔztZ=d@P=$%q]T퀈-Vb%YLJ t6gyf^Wٺ1sՆ:Ee)Oχ mLjMlɜűۇgZOǷ63~DN3V _eA o fM~1ӳoW"ޣ~qz.[uյ.-fH=pKB)V:ۯIH'GѯgX_U~KxvXWK~g!cV.%?=7w񳵶`[q2ztv=d@P=$%EA]T뭭؁4IvOޜt'=[~g31 OԪ٘{>YW< j Ng + Ov Mb^,>yHe_Ldq l,<];N[gǺ be8WS8ãZtn~D\|Y/7gŸ|ݚߖuN㌖WY̸7?'r;.:|R||_L kHoۓ qSѹO@uQ-z`czlyf^Wٺ>sreg9/E^P+`ʇ{$xJ2{csy9ܛwβ#=0^J|s)ޗLOvUN{Nϩkc<_۟w}'d**>{=Y{Y,[O-fÊ 5ns^zӔJZZl&יִ_^8Tɷb:€ _qR瓙?~^'G_ jrcZ2^OU/ϾX1gK &lMc_e֬glyPޙ*>sjuy$ :X.YϜ }&{s*ٶ{9>Z`[I\}[|J=:]<{(쫋Zxu//ǁ4IvᾜZ3S#3%5g5V׹:3;DdMiݾG2| yq.h[ײ׭ g7z{dgurKx ½Ϳղy2"|讜sq?yNy141?+qx㳳V tkIy>ax<_XIK VM=;Y5gHHHHHHHHHHHHH<+=fsV͙6qcH ÝF~^H7{IMdz K=$$$$9S;nOq@(2X͙XG;z卥!a|^}`,X͐r";'lpzУq NKk]q|c?:Mu}=\3: v}=uw6 o3FJNlww6sʄ Sޛ@HĔG0awT͉gx~)M8n/*TVgTٺϦ99S]3j׺FoFcteG@%jpvG!/H΂E:L%Mpʈn I߲rYcpB}7_G' Ԉ]_z,̋+/Y$$t,'(PqoE;fe&e&7cΕ0哑L p9/! $/Q4欶Z/Y+7Tpkoü#ٴEsǽ@F-Նfᛳzg"Ϻ'Y[36Gw0ψ`pOz%|4=Lao6\7{/ o~UC4 酇;sؙ٩\ȗr3+:XƟk 7 9Y&AaZC8W[SCP?hIH̖ D2? ү ,OOWz䥵V돠,LT}"Յ>8}G壹z{'[vSa:o XWzH=jj\f|j*a}zk`,+~B҆lf#(ߎ_RKѽ@|_C 0<|Y:ke 8/9h%h1~SL7zxp}|†I.Y#8P~,ĄJLN9hΔxJY3"N~of4g1p2*+9ݛw.b欁#Lzp a*3cTMt7'i wӔƎ [c\񛻛2=&ci[Fg3A8/Zʾct $7F~Mm$s2?- &dQ*fQlkbv?^\ɢԏǎ溳0o0Ȁk: fzk{P4,=Z²g?G o4+qsSyfGکev8jiFA3W ʍF]ZmU͓X2ugs PT{ִ@|_Uѵz׭'iQ(cv5V#ɜ ,:H4Q}eǴ']sFq툊_ MΞ4f˝vόz,欕y*;hΪ)RNBᜳ=1dr~@3vali5m"&t y 6g y,dS=;B_%[8M Y梶s+Ht4yvn8 hiP壉Cc|f!UaCN } mLx%5ȓ|9c5W?wgql A16?1X5M`UeQE!.. C.5/.oo+RJ|eߌ$hqjNL#[J=U5OB-ZPo3xmoGj)BeSL ɟU;:^ȯ}G3gD1˿ Ҙs09h m25񜭣 ug뗨qxS!썟\{{9F}-))'3!sv%?-Yj̑9cV WkiC)YLWY}RZ| zvX[ ϭIyLP.2&1PMiw{OSf#z8V<v~s& ),gSy":/{h% C|ٜΘa{NYݔV`q/Gbܶ4*0]`oܽ;1h.*r2f*Wc!;)154}3ggjQ,^LN6aZI.Iש1ZU`~@6n4 c]1>O}3mh֒27]%U!!]sef-(@鉕+ X.JskiZu-:RV_u^:RuS &&qWDeV~A]:?$lE^ n9jjp]6˖I-JO>vp9zfy;=ޮՌbm ꘲b|M]?yego+IK5}G`fbZIO솋s.o(<]q!~^.+iLP.- aܣL8Qpqc`s;RY6aZIGn`A?膻 `]ԏǩѽB6EzK3k/M c~ޫf X05JX4><^IP7 کMoVy zH=k[}|if@p:[=qzy}z>ќ=UdZ!_ARˑ&0r+c&oґuя Kٗ 7grm!s/ֆnQCĤR?,? iκ$$WB!!!!!!!E3gҜ9 i$Ҝy5?We>{Y/搗i?~N[]cd;*^ILwH{Ȝ\Q~!u_{sS+>9$qBŁrZ]!,I3ꭤ4gUbs&S͚W& Ist(a]ݧNz eyJ^GC0fՃ=z4j.vBUOoky!j^ݻ1,ٓIK=bJJs&)a(?æYQxt?L(ez;jzS =|5#? s&YmE@U;|>i:9K3C꡻ΑA.ުPWS{XЖe݂L=I2u̵;諯szC~÷pU sViiβ[3 ͙& G^>/M^{f{sPɖuυf= :.Bw>MZR WސC!r*~+=pgx!n.ۏqV#oG83cuMk?rfa==' GUQ_́">FNW  ^p*iu KThT_;͗+^%HI[c׾Qfyz|Geo^I_f\(mf2;Go[mOrB}yӋQw;ZIzh} F+->'Y6htf@!͙dfV:g\'h?Fop~,igJcTLRV4iPbLNYE̙OY&7"pN РEd9Wubw9ܱLI=bJyX I^ľ>;m459QMQC!UY!W:ߞq 54oB~Ony,~Xgq[GI"OlβQ͙9o9%Ad;#&`G7\~ЙxAX IC/R8=vS2JocA#o2X|NUXC _L\ҪN#jv&bYs 4 Zy5LDoj"mNb~7wv'h?Sw.#vC^}zH=4)'r}x:sҜI m7g˟q|sEYt|@Ȍ? f9!s #,.f+lзsYڒ|'o%f-7ϳ} BP̖$ltEdvsSQG x֋mW\6gدcA99ICQksfߩq~prNa`=Ѣ(lH%WbY5) R+q*Ip,~=j_>`xx0scu%t#}zi|kdl&셻rΰɬ=\(H:Җ[9 ̙(v[eidC 'Gy"n-է{:{*OzH=j:^z<@N~btvUhO>q]Ooj%Lj <3 LLIe/_VEA1J>9JzQpwo; "ų zNjp35ڥ-L_AI ݬ%)).ZYRICRRR>sxLKsv1[a}͙OJL՝~X,.\RRɬJ'ڒl<%}鐔zHJJJJJJsQ0g%XRz; ҶbwO(gMuw+:A+}"r= 9V$cQf0Qm~#?\CY>˄0VoE#E[f6zu +T'mA#3`yLf F;R_I3 CBBB3gQg9Ӳ3%B9k6\7{/ o~UC}Od>Qlh.ޞI o(_M/<\<=(a>.pK9Yis֒>?-l"d~:XIWѽm-n1ޙHnx e MVXƟk 7 9Y&BS%Gkke #ٴEsǽ@F-Նf1Qq}OoWhXEOb`.Mk*6|L%T&n͓/K0. 8]7MvVJCzzvi{RdicnڮhuʵmJf@ z!!!؜] B svQusW|L '̙ܕN #Ɗ4vLL3/W|#.ʹ󛻛2=&|Qܨ2s*zti=ĐpQlϤxT sڛ3%?/sp%!l.+HtbP R~9Nf)Z[ tΊǦM)ޏǪizzyhcyh$ +gUPąFG6I~ɞ2Ɩvim,DLEWq!Ł^tvnarv]g&Sw~Ok8I.7"rү$F,$WW6&A}lgKCv}yo&r.n3 )hsK=]r ·'z!!!L}s3c?]KjO1 D.<#ԥn@>q+~1p%MV@TǾ2}Oӽ3-|gtO>-dWU}3rpBuO@"kߦa19 x>M׶ޜ?76C1;b9S}q}3pQ}fv!+ztqq>:H=bHHHt؜e*l?Lg9NvzmsfMZ8N4k@amݲȥ.&hXyS3q;Zā+h6zq3 ·f@CBB™G9S<2R3uFLĿAv.fB9CO |o+r2<,tEh7O}3mh֒27]%gJ@$ۮi5lm8IIe^2cw~8A7s{*/edp2V;ͧwrr' {wcЌ]du>p]6KlDA5wMJO$̿S&-9ۧ{Wh7V9̫$WǷ'~t4Qu$g]3'U],aʟU4!,`^*حq:,8vBԦzH=`%ʛoD_?ib˜]Ti͜)3;hΚ௬Һm̾EtӇE{lhn[7o'ՕQ,Za>3Lm%pwi9LٽB6EzK3*+qu~g7\lD̫-j l(^x109)،hyqhK9f+Go- r5-e.V]x}pW>W`JXT6&Gߝ@+^L~TXYNP1-`,橩09U ꃕ:gϫ Vۣ_3|P߉ tVEf+l6FNC+A,cppR1$$$=~t9S6lZ r N: Jt*<~HH=d%+R 3e^B{ZxbLBww?9@;1m0!s0 !xJ=솄4gr3_Qg9L#+-EjΜ i_!Aľ9&$zHHHHsxL3\Uٺ!sSfSq綅9H#BBtz$%%%%%%%%%%%%QJgRSz90ʥ2gJ<%~nF:]ɜU$'2-ί߲mH=$%%%%%9+{?}٬ p=mrk=` ϯujڑ,HeE>F]ϩ[ct~g<^='IT Wge՞'qo;57RPty3 p/M^No!l\;{Be_$[ֽJCn v:.Bw>MZRpI! C~UV{C{Y9RuW82̋4XIVO$Y73k3*͵BT|5/xw>&j=i7:Hf"+[uWJ5:eBcvR[)<֏J`uͲ2xU*ۂ@>$&l Umv18u+&Yz ӟL#=a0>6v_Gښ9|9178B8Z w7 ]؜I=$%%; ?3;2gy9*3%?Ǫ9K@fj|Y񝴅Jαm B]^sH/hlۧ*$m'j#WJ^yܮb*Q=ql,?Lv]ӢX9YnP¬GYc59k$~ƩkUԗgsࣷȬ<🼑Ӆ-Ǖe@YTC 43Bi71=zۓvf đT%1;0KiCɏ |*qˏ&T(%['2q/zqyӝ^npug`h}zzszAq =r#b/ܩ>)(C)h?ricu)a1pV}yOLtjaףWP%#V͙CRRtRlϤx$[,[5sS+>v#t `:5\ CYcg`$_]YWqd嶲4èy7Wq*:aSA[t1[rN_|~5}H_+?Ff,g*D^fsl4=7GIR'NeWs3HؒsT5ا;>t7X;qq@VGH[S>.O~zNУ+W( %]]ܜI=$%%K+0gy9f^ViLԌxe8AO;YCGMn>C16Z*a/7ih/R8=v{YYԖ$l!5HmP 71|]"\?qN-C 7bs4}(ϧ\s8t6=Vq8,ea甏*'GDY*n]H+O>ij<"Dz>b-P'Wϣ#XR%~P:L>4aj#,y3|4;3;.mz@[3 |S3H=УW:i$RO$|J9K"-Us1KusvV93V$_eZogA,I$lKD$. |0gVT n 7MDy/s#R9nTS{y՜q9p*ϼJx6[NJeٲ--V$_VŠm)N_e \ϑT\>Ʀiw 4(?!"[v!6_q[quj4oVYW@(OԔdql+DÌjr@!dǕ7gwZ6RHIRhaZ>)+nd{A,OW=`555[;?\]˂uvX8^wk90}hK|6$גUǬ&e!CQPj%nC%ů3xZǚ7+֨+ħ 7FL_kp*) n.x `;?sNjLv;YYYRHO>o9&1w Z-R; ,cgjϤxsYif^PigaΔxJ 7gʆus;%g,`m+R`|}O Hɉ-1>j\}U&T*8Bg =JNoi;\z0}jxM,@?7z0zgw5Qn13ս;e蛞 O8&rLBBEoΒ[)̐L+}"r= 9V$cQf0Qm~#?\CY>˄0# w<}JLJb"y8cfo=]]α:zHs&̀4gҜIHH8i,9;GVY^vJ9򒬼Y ߽G@/W{iHx{2bGsĽOɷ}C|BhzwviF}tt[_§J%}~ 1[ (E4t(({YRw9DŸuãO(fm2\;H<3ld隞ṶM0A$ -0gY 9N$Ru<^4Ur$яVp+V終:mwkB>f/ZL #*~%.h6dvg=\=ςQM>PҿDmB͂PfV꘨NY)c9D2=w7NAs7\Ā%DJt>]@WN0#NCLoIga6R.iz̙Oo6g՜5\dIH$ 7;p0~*[RB_%[/(TEcSߏc4a==<4<4Mj8.UaCZV9:|,2oBAunklm;XD%cm&w.q5 gG|]| ,&skRDŽuZ\|sLdK&G5Ү6m"&tRO, W?H=NOf@\W,4!\_CBBѱh0gɤYt-m=X?S>I$Ȁp}A'5%\P+84ޏI+ij8=v&}ݞiӸ>.O?o}N*Ss4|:tk/J\})74:MEiqEt/"?D 8b|l |H=诜(`ztU=ĐpXTl3T{Ȝ)R9kLMj <3'joکi8QV${}u˂X| 2eq&h=7MO*Rk Idsoݔ&sV-3ԉg G9gL:X}(:y=d7gZP\"W!Rz8_uz3 GqKC,uRH=bHHH8,*6gg9˼Po3d^HnzWat+4AۖF= ㍻L|@VQH} }UȜ+o ZRL^ d#Ͷ札 G3i3ɷ ܫS柬2.W'hfs@奣lYl{s$.&-9ۧ{Wh&ʾyB 4>g^!'qf-ϯH}i&36ӧkREɄ" G5Lŀ%DJp>+z _Wg#N?rW9N$dz!!!,7BS7g)I?k̙mfe-+>/eCs2y;=ޮՌbm qao+IK9}G`fbDo)*3tVH@a:r?I߳.^WkuU ^ږi}FSg6ao/<\a[$.ss̀iz8r {w~ =\oICBBcQ9S<;n,iiΔxJ|ezv2g|;)nDBBk/ ,7yߓzHHHHtJs̏ӝaϱ9CK] XB!!{R 盳d3 Us֥!!!!̀CBBBBBBsx3ɜ)I3IIIIIIIIIIIIvTmsj6Y1gp98IO+FZ$%½/1W/YߤΠoH=$%%9SSG3gJ<%~FJe7欳wTK_m6k\qxZ{''SHASs4pz }4Stm9xzгOVFp+ t=V=zCa*N?´tk2XGi48uQe%:=؜e*TLa>,Y1g%\Ki-YmE@U;|>A~,`pN_2W_\#TQ[K#"sR'͈9YTMmq>̓kqJ%M$ l*O5e1#K=e%xMzH=$%%;QlS铏hN*dғϑg93wH{ˇɫ1W=kg3bpOܽ9]d˺WSՍQ؞YЪ.Bw>MZRiI! C~UV{C{OuW82̋4XIVO$Y73k3*q܇Ą-!Jًmp֭DW< g\N2>H>V}Fh>Mc&`4SoKq[zt-=~{$z)))؜u̜)ӓ1g5uj6-"Ns60m'wNӪcxQٔW*ϼLp, Sn;LjHzH=B)̈́ԣ!d?Y44g-;϶RoY5pcy:8ПHƝZ n(oA\['R+Nfhvf\&bYsVm<va AΎ '9僠xb]ێnWwFܖu_qzt~=deI)>ԣ!ǏbsvY7gYTZ7g+/n[7IK:KJKBќ%NJZogA,IuE-QIxzEg5k0^d^%*Zj ˾xx:O-׷G4/*o ~G)9g٫LXj9$+9%rjJ3cH|+I(?!"k;|sRNR/]ѶOMhj:~Ω8a^Mg(\\>vXGk;jҗҖ$>,=s쯟$<۷cZI=с{q]S1%%%?~Ӝ) sv1JkLO4gF9e93F2JvMĢtӛ vpf&s+s+}}cYn#13 n-Ƽ-zsVφZU֤, d: Jm$ñ|/[5X&xx0scu%t#}zi|k>u y<6퉫vje}B,իC r˟C!3qQ³h)/UĚ맸- 0R'+|S,dr\G'CLII '4gw:œ(l9S);h^]r`-LKI93՝~X 4g'9C,;=Ea[YJ|[%7*))))))))))))YXF$$$$$$$$$$$$$,+MȜ3gƅsgH>}̟3m|ǐi뱄CB%LLw:wҜ%+lZ9S)/ߜu X{=` ͯf#%'`++P#~fWPa{Ӄ}(v 9-%W_|l ͅ}4'4 oX91A=x$]BЌgޞ@nGķH3OeR-''s~q{zH=Ľ묏 eU^C[Rw!S8[bHg$~ԣ!Dz7g[R%͙!g)a/0+ 9̙%t,'(PqoE;fe&e&7cΕ0哑L Zp_X3)I-F &CyTyK$[+dA]]#bNЍԣ-C 3:_FAГföޠSY&zHHHt/Ν<9KKV~}9g(-.ztslwo^f*}\b=q@-eP>_1^x=yzQp|<#=]֗)sdgjIH̖ D2?  +^OЬb3gʬh?N!n6stMNy\cpAn ^KWK}|†5ID=o AL_ +Х0/m>Fdo* ~7M]imk[N}#xc<џޮ.ı:Ҏmg+zt0`D<.L'1_`]`Ap n:P|ݟ ,OOWz䥵3G燄cٮi wW1Vc`V样לy;w9wimݤ1+H:m7*3gSm4ashg );K ݌ ɹfzzy#Lzp,3rhm#Vq՗iQ0!R6?k'^&|VQhj;Wf{x/&:ns}C{ k/3q9JJ(솱+$!bAٸ#^xOPgfˏRhB3Wc;\|-GA3``zk81!65ԟEHo.?a P4w,=zw s&p>$$$?u9K={SP`.$$E{YL^AC[jz8{?-f)6!!UMɱ)|zm~cjaX&9[*l([~~B_#$oMs09hm=6xц3KT˼cZ4)z캾>!oL~=A=&0«<9Xn|sj857\1᫳76 ,οT>*]_G̀ӕ8I.7"rү$F,$WW6&:lOJy. bKQC9d@s&p2$$$?3;ˆ9JSi͜)pF;sl=xBa˅mΔA_9|FѵUzH=/YoiA؜v)j_13 ݁L9zt:HHH8,+6g_ٿ=dβҒ_Ju9;fz47o>93z&y &5mEzGbe,>KD4Ub93}hϧ|e&6Gޜ]air.%?D6gN7tnJ9gGsJ7f,ڛjЦ0ꜳkF2ΗoP+gkkq=Jyt9!֋ڱEmZ^w!pfxc}U1jy?7*c K-4mbȀ.`Τ΄Dz$3s.l73dw2*r2<_!tEM7K 7o7pyǶZc6oSWh00Tۚh[l oS]3kq2_8Fup-C1nYnK8^YqEɜ5k4nX4ZPϬQKlDA5wMJO$iyiQ{Rs6Qu$g]3'U],aʟU [X>.g]ߌ]d3]u|e/'!cY3u)i7(ۆ[4 ?OW=}_u$y;=ޮՌbm qao+IK9}G`fbDo)*3tXBШ VY۬#D=e{_W%*`^mWk4UpfFōϱHf: 7k۞wˑʦִj+ !__~xл_0o\ @|}sx%?Ɛ0t,R{_g ׾c u5t9)eo| 3~k)Ke&Z\ϬQK4z]{x&Dآڴ-ԣ+a_ٻP1>09%:~V`zl5gRo$$$?},,MeٙS$F]ϩ[u~g<^='IT\]r5Oɤx]v&jp'fr@Ktpف#k!z))),ʿќU,I[H*& "tj5g^Zƶ};H*B_[L҆8|6rUᅸl?Z-EPnÔg i_A,7(a#ثY&3N]<Efq5}䍜.l9, OV%1;0KڌbCɏ |*9E^ ƾ"7r+uLTcw)9,kcn ds{>) _N W-Σԣ x%*_D4T((:/B3 .Pw3l+I}=O.mMSչ|ztq=ĔtXsz܌ *[gΔSq13t `:5\ CYcc`$_]Y<}ۿ;6ʘIÔHo(ѷl~o`aj2Xgj8.lVo<'ysSR1w4; DLԌDp+uLXu;O;IwG5C˟:xu%eԁ ( qJg*|O;2I^GMn> 1-Bs`ܤo2)Ջcw:tL py)5O檣cueo X1Qױg{3o"MAPWqlM3v[G oj&a׵+콿oߧ1Sx39:ЋX GCLII3> sҺ9C|(6gs̚w$6>8Ξ5iܸS@͟'4g>DǪ7Gޜe,,ZI7Z}?ﱬOhWlg1b NdzZ@קs,(o^>FtVѵxs&?rylaWXG|Slצ/#rfr3jI*=zty=ĔtXsv܌7gINp%ȜH[2f-7ϳ} BP̖$l ؿ|pqc`4>5:\M]Pcz`^oOW^L|CTo w9sл<ٟJ`יX]FP;X%Y>=7ڪ3bN=[RtV-g!ğ0|]6ujr>"` ˾:]/e7yaD$rN}[tR΢:`2RϙҼ ?as w$nn]=IRR_G/)C{#-'bVfRCRRRRlt sҚ9S)NōkO-cy~WwNc}9IIIi$]UTS[rYiBҜ1{G<9;W`Ӝ&)))̀dCqH:=9s^K?&nˣV|I4g)NKVٺ~sv δ*T.؈Pt͙O ]BL81$keZ i,CBBBBff%lg9S6u3PNQw,}.F{''2 ]k uץmN4>x>NQmr8v]F$C4)>cB>Fw(puqPfˏ4I38GOcތ LWyVIPG~CBB3ִӜ)ԟɜ)O̜rYcp|tլ#g8}t8ߦjKɯǽK_socr<D[@LJb"y8cс2hjDw;;?s4K3 N@z \4І9>] H=Dk>sv!I#cvf{3^Ґ7\54IŖ{o)9kHq|<#=]֗)sdgǫ%}~ 1[ (E4t(({YRw9DŸuãO(fvSk,ϵSTȣ?|NNjF~zWp[}X t7]:Fp~O$&l]g|Sjk7T4La ӕ^0 npoKk7 t^*q#lTXVv W͚5!p]יvsV]_e }lf@c9ӓ2ߩ_^aXƎ [^s}Tޥ}~sw^dTVgo6Tf3ש609n43OR#~GsY^ 7MnfdL5# f&sC&OgyD0mɷZO YDŽ&kIHEzRGT13 _w~ftKd7_owxՃ!,˨\zEvG$B'm4LgBP~̧7x? !塑l*Tq ֢v|?qcލ:ZΘ#8nJToztJTgj*}r3VP}j?S^je-#yzcM9ScT=RyCǫ͑7gx+|{nxh6^aXVs8^b;>DO}$͏9\[bf ,L>9g_&`B}S35\}S!z|=]L^a]Hw[8_AlMgmRFQ;*ZT`2a5-G5߹̩ ' 4.ГV0~/|EVRY춘d5cYf=25] it C8E#>8/k"zHHHc2g)gU>6sQ]2wO岺 S3̋@oWWjFh68`0q$ݥ圾#Xn317g :,\Dh m֑I"pZ㯫 üZK2h9텇#cݑ"<2;\bE3֤# vݣ/GK)뿾 tqkfj` 䥓5mww`¹JC!_-Qy5.x`暏;T]ǘ_7b=Aq 8[G:qM_ 1:t9bۜq_KSF$$$]UzHu]ʖmUv0?R NzИw CKXza]eռh{?=c6G0s:6@~ԣS3AݱvztY=$%%t*җ;i I%5ԕcۤA.@_^ZضO3{IEUkIOFj37]PUz bsf,?Lv]ӢX9YܐG 1%y~VNc u[b7W=UIkKje8/նqHЌLN<( f]aSA^%\ճEWmġziFGף+WgcyOztm=$%%tqs|Fg*N3Q3喃W0 NGQqvG0O?k c5L& ecS2u\>3OSjೖObZJm&)\ܡ3":Oah>NӪG~sv}#_&]f#GFq`ztq=@%`RIR.|s&~s̚֎w$6>VlSŁC7b04p'Fy?0}(ϧCtξ"kU;cGޜe,,Zo|+Nfhvfڎ\&bYsVm<va Apq⯔B}SiMtW n#F?A_Y{OTwc]UIII;Q`Ο:9p3ڛ3%^99giK𝼕䛵tdvZq2ρR%<ϧ<ۈk|=]ّ{J>qoK=:b:w1svjn[5gJjΔxVmΌe׺2]h<]qf]䪫ܡJ_XH̨2½[9}1Dޜ_!:b5) R+q*Ip,~=j_>^!ܘl}F] '>H^x10bO]c~3Pơ=qڎ\նW9z&~{V-Q2g͙MWwNc}p())Y;~OzI5%g>yK.Pi,,;-g5^UKeoV!}-6~&BJͤ:m,{ģ@BzY!)))))))͙‚K9l?͟|ٶkf8xJ!< <@KFA*jy2Z[O?"'@fǿF 6Fu9v_f 9K xY,18|>L%Mpʈn I߲u0 ^yaȁ"2o1 H_&|W qi1Qg/o,{ܫE<6&u f@>z8N_ `*ѬlDAO΁r3u5s:on4J==zHHHt1췟pތ#+4$ W V:bGsĽOɷ}C|BhzwviF}tt[_§J-R@(B槡CxEA[)zg"Ϻ'Y[36YIKcBd?7<3ld)Lxu SP^U0o t&_tЧ'lnDWUrhgeq \ά(vlO$&U c@sY8Kk7C8>E }4q,"vLZ&64\buX8\k=|kJ=DwuW<—s(:%6 4W%o":]_ !:qs/:vl݂؜]zTs'we0S ˆ"S2߹ȩK3m&Lɨ6m7*3gSm4ashg ٨;K ݌ ɹfjzy#Lzp,3rhm#Vq՗iQ0!R6h,fLj^,%(OAy5Q}eǴ]sFq툊_ MNnV rCY/_$lz˴ ui ;ٝY:u yo)CH #}6 X~F)]ۣYR_%$z+7d#Azt=_w2>M>noNe#LNԘ8Iћ)2OÉcTYK^Ř۽k;`.$$E{YL^lPO~4'A3ow*zfc>6?1X5MXM8 y,dSZ6gUP'.5r 8;ؾ(AsѾY^Ms09hm=W25񜭣 ug뗨KnìKD4t0bKZMTş3|{g.^eg_s^u"BRP2@ɇX/a=28P+;RV룉oF48M@S5'-L̀v$hR.+u 6qو(S9N=zcȄxլK=b8s9ufCw`o1o7gJF's6Ԟb|z7Cܧ.u;2g7\~Љx_~L:\ISU'4 鱻 l7tL py)5ݏ4VsdH|cwR(NpSs4|m-+ǟJX>b_"Koc9>mWZ/{Q8pgF2}o%! 5d cL=ݧ>s+'Yw$m-s9?TD~/> XkGv+z8IaP4vsQhe#LNuyR?oSBBicG4gM}ʞ/wQ^V)/;ٴSc6g[o$SqHoH]o@.ew15AS!Foұ?DX~(3ټxu`țK>=7Mh>~]J~~!>ljWnݔ`Mo IrΌqEIjy"1.xX!P=j2rrB߷͵~^/rhWʨv+z8q~"S4LpliթNnלIHH8ql/bn"qS'(k|fzW;mw[ns"=@ >ĸmiT3a(9޸{9`Y ds8n]`>>f7:IK)h^d\y 4>g^&Q] Gf-ϯH}i&36op˿$SC%' _}u B𛱋,s`~^z%[8QP]+ ɯ«= ~x=omG'Y8 `Kk7^@f*?l8:p?'ږzQ4g%7$쩇_8wʖ7[2gE+(ۆ[4 ?OW=}_md>o'ՕQ,Za>3Lm%pwi9LٽB6EzxfQ(YG'{vjJT7ZK2h9텇#cݑ"͎Í?7 ޟg{tk`VsXI[^o;V,Ϗd 8{ ;`y)^Tcmi1ߝbGyw8mGC _cGt?81k6aJӎ3􏿌:|*8(%?׍8'[=Y,&YjKaqtc=>Y@1zIq?gf/bTavԟ?N;8'δ ("={gDmY@1,Y"K KT,WTe , AFtR,9J|9SusP9N%(Din&3iDDDDDDFD &dG߂]u+:ǙE$Ec׶-fD$gySq!E2ƙ+fq1ػs}w|안,8a'⁈<).OdO td;qx΄D^nب?3HN@fJ""""Ԅ ;88++CRl */˾J>ۍ#'W12  gÕI;H-TlSfF9)ذ~c8sg9Y<H˱.qv4ApMvuy!rڏdu{(""""N=sa!s7L03*--OLIύ܌4 )$Z q|N'$W\ EWUBݿ2kC{Nk69f&2&,|G:_yB|\G#!*9(ꡈ(7~o.!I8m¬a5i1m2+| ugG")(+CQ~gNK03k>3.6'gqfmkAmMrbIqT9#86=f(ftNE $)lL*NjCXZ5[4ɘ&eNW&(蜯:_K8_%B)=71&syˢ 3,vf'OG{KgN8lRN..2K4ޟYuXMM^fnqFDDDeqfiirae`Պԓcq/tۋ>{息6q&oEYZ@z]:fřbva\tuGřpZ1<4,WM?aiGTi :谘04ЇA"/14niCdx(N Djb, 2<#""""MOAJB춹fv{%dg8fj-ZQZC䉭@WͲ!SZ.2ms6__'ǩo8[oWFy%~SbC>CQ^^<ؕΟ5!ԗ oJ~j* z0""""Cݪ㌈gDDDDDD^g;㌈qFDDDDD8Ca8#"""""b*P]V|!GDDDDD j\Ía|oy+Z2GDDDDD՗JQ[Y/ozU\>55Վn͠(]^vmtxܽ{?xwo6ƿ>eG5eѼ\*Ejb+֭[ow~8Sܹsg"־Ƿ~۷ocltD~pclXT֖qFDDDDDYB9 >o!Q40 5%믿8FFFpu_*?76:,k*k8si7 v===WBmxxX!%t:c&_Gv?d x,3""""auuX歼EEEhllhT477U%c mMM t:6jlelqFDDDD3oS \M? ;ª |1^T_Ş:Ǿ꧟Eڇ'qͤh-Dux1,Y ORi].=$=`ugDDDDD86oK o>ٳz^y c{{;tvvd2)oilزe :q.4޻xi{$.7ԣ2LD]QlEyOQvX_cork^K,Q9,;9x*>{{ Vmϔ{cX jXn=dX5s2oŅy8rqadee!.I:ICzzq1dddoy:De_ʘחLc\Tƕ_BK[řHuu,0VU#""""fjհ;w"&&ccc`b6jŦMS[8D^ruLWbo.C,6,ʸo-_7Ӹ:WZ qVuNe*qFDDDDD3K[üU)q?|t C /i(([S7`)pP&`Dֺw:v,Uj+?@qbߘ-+V"ؠdunu~T5Τ8f3"""""b[ݢONݟgջX?h"xq_|wͭxec{_rsaWq:udVT"|`V=/#b[pㅿGܢ6=U0..qVu*lm-%Έqfjs[[c-c" >6-eMT7bHJr:u쒕8/7x≧ozt| }1,zr ^{?XƵ޻~_1ul^\2g-,GDDDDD3Yk˛Bq"[9n^e ޘJřH&=ƙ8kX ~[^<7@Ei:HnZISqP8#"""""8KaԴ0Y/vUh?+Yqf37n5U㬭n*Z "2H%Z_/lZI~۶C?rf ]eMemZ SqT[:8#"""""Tsgvw)ёZʚJIqPSɋN*Pȳ,8ܧhHDDDDD |e!]H5 3دx\j+R>Y;5{qFDDDDDDchDDDDDD '҈Wqƍ7nܸqƍvk]x#IENDB`kbibtex-0.8.1/doc/statistics.png000066400000000000000000000312521331300026200166060ustar00rootroot00000000000000PNG  IHDRNTO72qIDATx[I7K6$9'眰眳=8acs3q†ٽ孖H<6|系EUuU [_}5hg1rF&Q0'in5F+uz?˿ ?^Ifh`l)dCf#? I~|+Dû7Nt{=?d5dc-IEg`Z3^VJ}^/!s j;y Id'N%o}=ӏx5J)IAՀ dW %4$NW߿{#ӏO1(8&9Èp):8FWl}h>nQf'Ao[z_ל-&%Vu -ӧ=;shH;Iy'Io\O:2oܮI+y9Y r=h6q:7.-,׷rW.~(uK/T#50l5q_`XW.bмҷ]o3k]Txm?ڛ/0j͹F㠣 3WBz_~yŲ~z٧ Ɇ>iAz_lwkz唐}ZAwVgmRէ5 V= :!oh`5uepq{(]p^t=:?{{I˟D?-;oEC*_ӏ 3.@}y%=܄?G*iz"m#/=^}9}',4({HZ_XbMVɏ~|ECyRewHNΧSYeԤm ͥٓOreɜs< Hz]bvFfx0?~%m l û7S e7C.lv~yy$#?2 vM5 V~>;Fih Ǖ!o_NIJ'?㯶U߾uԷ'=ܹ}?.K${{t%ݮՙުc鬤bK}زk{5}fvǽ, = oRkQzEߢ=CrZ@4tX7|t|oI/??oN% įLv]7$NΒ~ ~rbK&{<pҒ=$v G'IQ3O-`&=f+Tm4tr4GIWm΍ ;hp,w"}z%=)$3d'I37#p$= IG!k*z $;o^#?~ՀuT235z o{Cp׏_.Ia$>_(~X5iT:΄ ',@P aoM\P:8^Sʬո}٘Hw$ GSb,"jRV/90&; 8e׃KcA{3V$.],ÝO//J^{M;rİsצ'ې=]|LXNCw\ONlb|\n 9QE |VzVc?I^* ߸Fx{i(=8eCZn ;(d*%[dz=&=X|Ē"EqwK$gK!Z\?4y盩.-l krcp9)g,%Mg3 gE)#5;F曽;t.GK~ˇFHxĄ7n2Hn-^Y0a2jE;|pd;`95sO&Et {ϏJnfFmj+49|=*`ߵH*r.ӻIhtWbAkz-"/Vt5ql]_BK(폓I{$hmj#J5PfO~ƄE m>+u3Cc_hzڦ+Lkҙ~4X!]T?YtޕD~ʘ?8g ~tת87odZ5ۻD1m#O%bS o $= ntO`ړݛW[[3d'I$= &![ҿ=:մE/95Ǜ1pIv*_ͤ'0xo|9^ײ3s^>`:MH\NcH?!-(U_U}퇉It@;/$Gokј&ߤ_}rWaLw@P'R۩5o_Зj4܉tAלmU14ܡ5i~IA85-"FzOk8Βv㛲 _sM=8I#ȭzc1h^iW $=~%}RQ[uf3|v<Ԃ[KB{Jbvi^5KfI%!T'ھ fy۝NQbZ{]~MXd[K$E-\`uM;he KA}^زlǤ_m.!)L{0kd 5qM68g{ޓdMߡ3ZwF'^]a2޾k[5q|PsOu6Q6{]3/iKU-k;c~j]_;Ξƞ 9gjAXsuMvx,"՚WZǓ"UMEó%[[.ުnZ|zNAo|I{S;ບz!5բ;멤w5;Ez7;Fk{IrvQ\urM:x%G{LD〶훢T?Yte+>91onQ Gclu]KtR]xΡ|C7|"5Y]?{3h1g NH IHz@ IHzϦ|A}5҃H?t\]p=|Oν0M4^Ms-fbFpW\^Y<-K+^ =NLmIJAAwo 2',VAmnlI ²\Q&UK6Bc\G̨ݸ 6fR*bjv;$:SD1 IںOr6TkG:z,FlbWLܘ>~OjL>ޗǗ0imfѾe1 h^i%u4Lf1$I{^+vD0 6FQuYapgИkJ]FҬ4`ƟIyժuw(:bo|*Ӥ?[NՙeiU򑫍Ir8$s4+D5Wi>8]5#ᅧjJ*R@]S/.mS1d5[9Y;.~%42L^n>]2tc!=bM ru-jgQjP>ʏVj4x3K}ұIӴ#*t[vsho36K6WX4B}ZWqIxQJ!)=f)\&}XF552ƒhs[4FfILE2ǚ4)?- =o96$F-wgvqt32u]^ ~&ٚE30|Q `ʭ[bb2of8Kz Z|yygtU0J9l-+` @ gsmsz(XzNsZWWM]SpzY"W=׌~ $[NkTY]{~s}VZ$w\,>Gf2g(m'zh N?H_ZίW?{?Rf܆E4|fʖcB?&:ɽylm~XҦ'u·)O_9:W2Iv$;o1vds8a~4%GtI%Q :).iFLd'NR7.[c 9[|llĜڻ,a/rJ7HCGCj:YJ Lzw]05ZrAkڍ\M \#jkE' ulC%}WI^$=I1MI7x yfzR/PNKI0hyrW2Wm] OVszqMM/H2W_n)-FEǾhV^^|VNell:TfcK3 jN0ѐ/Vf-h5&E=q) d,{*FŔG)׆w+SeON^^YJ{!RPsKe5tM,jU%$_;,fN|bҨvqtuo#74+mu\U1:U餓II?އ06fbtF4vK2T+K֟{Ɠ\L{s+}ʮIzgkz@XB<N8Z., =o96:UCkzrd*NmNgRW7jVUWsqb@v{}FXѓ (a'T:_h~0U;j>nVsv։[I_YL}*NA3zJ\Ưܚ^հ-]|^(S zVzh N>TvJ~y v=t=Wlu |7ԵrO=PiTgg54YxA 9Z{IoTvM(UE=^^UM ͽg3~D*}+1iԿڨSEӵMl!.v(Te3*Qd#mGw'ky/J Y|^^?ZTwgq~էz睌jl_@g&=:2n(4 I--OKtx[Po1:zY#t2_N<9};'A3X{KEJWI?_ :޽E$x$_9Kr'0 jKAA $-_:;޽H|')@Ì"KTI?dKz-L/#=; ?2 WMʟ3ӞCO$, R_>0!jO ;kϝ`MiMz*_95j9x.sK{t("(XʸXkeG=wUUk9xjFoM${`Z6xMe,N%ٕ4xr-`NIJ|}w[rThIauɖcyZ[^aiM8DJޥ ϹB=k1 ~N?EKXuzNddjq):TH;^ɠ{su.^cR>ܕɠwEj@f[tj $mIojjKV $;V$4&$= IJAfߨUg N}JzaKz <m$dT~Zʙ?xK0?cғ&=>[.k@ya\.}t(?$jO0IQ]} a׻% ["e}uK/$uatOh܊u"> W+2$侕)!t:#}Bj:Q9ɸp$ޮ4jj$=Jz-d$/6F$\R#4HFc[ڍ$4֪5BxZXܱ@lx]B Ɔ rp} \aA'!d籟: #UzI):^ޱQ| GIv[қ%A+%zL+ Mt+|8{\yshsmm GԕpT.p{$j }Youj>xZf?Tқ I깗sK7\"]ON.aNڕl_}DX~|H&+%iA IV+c=l=G|)SʵSb|UK%Dh"A퓛7Ջ>kHD/>j#9LGw,Hz%黵cqT?g'o߭ Xp 7}WSqdEj?'8fCI?9C|HT륅 ^FIoIzx7"0Klko{oիH|G I32 }-z<Iv$gv fV (kxL~7ْj+埄0+`#hd\ i=|4"r>,]-`U9/|rEy/ v^1f$;ZtJ'!ܘ^vK3Zi}~bn";,7G2ieIlp{ bH\~N0#'G&zI,v>)eт7j3i %CS=ۗF E2i|yp\Qbɍg v=᫇c;/?* w"m3'vƎ}b`:6)+4hF[W}~Ya;5SfsqYդbN\O.?[:wg΂W`XrѹRKy#ŏqIDvM}\@һ^bH?٬r3|botW B|%nmk+ ;Q-TtWRNu"l;f=;r^|]h_W;n陼 N rCDµ~><\NtU_-|y45,htɀ̒R[;Ng|mfӕdmv(>~[Fҏ;ܦ6RpGre2!(?pvpxvЕ,>_Oſsq]դ>p(qm}Yn\Xg5^~E $^?IP}o4’ë΋n'55}UiT\YXopWtb}ۡ wsR:vxYt)duB,<{8 'y] z~lNilDx:vQѧ|XlE0=V>m>dMP|A0䅜_z ><Г>ϯĦIcWeܠ-e Mű!7BqsyYiQ߽~u7'5+x9Y'Ϸn>\^Mv!I/p5;уUa4Zd=I1N G0c 'q^ן쉮ʪO[@KtHbI̱wa3Bp'ѽ|lP]'L+>G?dUQ]bR^RV-oLz&5+`>r~ՒmT;j׳#/n ^QzN.jKA3 ڒjKz}_{ˠդUH3d'NRIٚ}_[ˠŤK3d'NRI$≠tT5r> MNQW&-|$IϘ'?wMr $EIDފnC33/( gB}G^?gyRHiM e7U(Rr:ЛUR')ןN\Dg̐ bҼ#KhAwؤ75dI;RɞĨ*xoƸQs8 oE %TWȏvRks([C/LY{/DrwGN|o_ ˏVsG}|`::vD5$? Aƞ^Z5I֕)'ثϏ {089;ʻG6~WřMg/?D$u0*# nX TtR,u~%m&|4ɮ/J$|&$gbWTH?ޠp3|b~~9?wQb鍶ޞB[yA^vdOEVRe1}ؑ gj-lٚ.zjrz|:7D6elhj&՟L;-K]y~-_ ToXrO3aG3Ӗ>yOwJxSGd$Lf:H(nyXVZTs><^'瑩]7l&v$ſL+/D.Kָ#%ckR!7;DP}3=(Ќ #7 #6ԑ0ŶrU{Yj~PtYϷs5ᶮ&mtzn尗j]yqeu7+kx( ]B֜U֫rV <1?G}21ҟ_LF^;㒞؁ ;I?ZpH~3ҰNf <1{\yshsmRhR48eDWEF\[=VY(|rxC 3>6?2GqFB|v4?.rO 3}- gԾe6ֶ_^{lKQMwd3$۪-Q)^.!tGdll/kxl,8ȷ77 kZXͯ,;"p1FV]^Ouhz8(W|YwO!:+Fp4\HFK6G2Wvz%؞yN/ 3%yf&Z&콖Sc?QEG GNzy_vd]OsIyM>j얉}U7mPu-,x'OI=R! yO׆1Kn Dq룲U3qwD2>m7+'#Vlt~MLy{Kse5ŌD{+h;GL:NzmokˀɨOL%"ckbhC7?l+6^waSxJPH7Q9rq~D5ܽR3p6Kʪ%;Iv$gL~C7 j>qIvHz?@6 *<IْhPIDHSIC `&ƖzD$-5Hz$= `%IK%ըW')W6Y:X$;wHz$= I_8[R$@;ƑWIo%j$F^@f^klI)| $٩ <; UwKE yH|7 $=|٤W,:\@;IyFN#p3d'NR~8:L`F I36jUoK^) x2>f;$IʤQ\S"fF^zJ佌IsmnQJ!Yz^W[oK'`V#ijt +) =IֺH4s{H|')O%=MZ8d5Eܬȅ|{Nm>(iIENDB`kbibtex-0.8.1/doc/svn-update.png000066400000000000000000000014441331300026200165020ustar00rootroot00000000000000PNG  IHDR(-SPLTE}}}===;;;MMR1- ̖qqqqqq^^^YYYGGGqpoIdjjjDDE5VJl4751 (f/K* 5D5<ղſvvvsssiii}}}^vczzoood{ĐKnbbbPer=febBktTl{*>\TpUtVvTrOkE]~W]f\}b[|EbAbjp{A]zpJ HC=tRNS]ཁJ)pttvrw/P\#8؏Wc^IDAT=JBA7댗1ʝqBPY+6m$6眏$eD:#3^PXͺ?vN&A(dr-8%mDW=^amv7+T; ak=׉$TSQYhܰJ\'2IENDB`kbibtex-0.8.1/doc/tools-check-spelling.png000066400000000000000000000015451331300026200204440ustar00rootroot00000000000000PNG  IHDR(-SPLTE FFFIIIAFA3H3$MKI+((('''(((((('''&&&000......111111000...///000777999999999:::555888888999???AAAAAAAAAAAA@@@AAALCLGGGJJJKKKLLLLLLJJJGFGJGJQkk1@1h``>K/x/c٢##921ba ˊs 0,tY X UMst"ys]QCO PBs]v%-onMwV)v'*4$j#j>H%a'bFL&[(\RJ%SF111LLLZY՚̊xuVTÂ}{qWNvm|thVlYiVzkfGfHgMkKhHTLD DI^V`|*ewtRNSwe-گc wUZg(̟=)rN8SRMMIw j^!IDATxErnm۶m۶f撛쿅(x%.>!1 HNTH#= 3+;ܼBDE%Q^QYjFh ZZ;10 F8#_c$LNܼlABoԛ[;>:h:9lHN-~wG$O/{N,IENDB`kbibtex-0.8.1/doc/view-filter.png000066400000000000000000000010371331300026200166470ustar00rootroot00000000000000PNG  IHDR7gAMA1_ pHYsodbKGD̿,IDAT(cI4`yRwzTXfjǸ@-_{_=w{kRF?CƲ5?&~FӋce &g6h>{7ں1(g}pu0Ag TYn|+{& ]* 1˞]+I?rd1T9_ޞYnSWgVY$VT2Oά­`u NV//i ,xE;/:%tEXtdate:create2013-12-29T20:39:41+02:00W8%tEXtdate:modify2013-06-28T20:09:20+03:00ED \tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/doc/zotero.png000066400000000000000000000207031331300026200157350ustar00rootroot00000000000000PNG  IHDRhdPLTEۏ|lҦΩ̳ɩƤǾRÿÿ¿¿ξƿſľĿĿĿĿƿſĽĽĽĽĽĽ¼ļ¼¼¼¼ļ¼¼¼ļļļļ˹ƽųxϵog|VyD|xvzvszvsit~|rlr`CebT7F45HN5IJ4FA3I,,??+%'$'(### +H~IDATxOL[Wcv1ƙ:ɋ:RƮ*'2DdV*,E L{7yU  #yMdUhCq#1} 6濁9׾IHr~Ε;tNH[Q=k Mu"RTdZV/J(Z9֢@FOP146ޚh*tJO@Ն3Rz}nJ/G ,)}صNl)Лlʲ O&db+d7f>mHOëz}K+Tܔ:+Ɇ&me-/3 X2w|)8qZ%S d L)T2JA'ԗ)"F=qJ)"xfxP s\Vp"Bɕl2gljo3W=`1I+q1P(E7Фq["ljoDZ_h24Nv+4x$Yv]m0o7 L' !*LN ߊ ̲3$FU(@2͌x +`I" H$B 2YFX\۲w򛿉}87PEU 8cJBC\w:6PQ4h$C.XǑmGo,I*3K?%w>8q{'z|lǨd{xXe3m 9V l46/Μ dmIC8 9pRUL*U:pB<㵍eX)WWЍXH]廞kx { )# "µkN[q fpo{3(e +DJIeGd5?r\%dk'aҿ[5b ߸C)k/WT ֦ZbT@׵ i ͏"bD2qr$>9o{>?A+1=:E-*4i%93:OQ+ "[ά;lDF3!|4ib<٠6rk,?$r7$n?֌{ʵm@dkV,9 d"'atO8ONO|@kOp\S:1S,rG[r'!kKxFNPCrQS2򤰒&803\Nݩ}.7Wqҽ5Mz`t4 q%SM,|; W IHN%7d}zĤ8'q૾E(揹vp!ޔP$nAmwɃdĵGéf9 25,cY*$#ȾCCR? wW7?Mp3E8t::}T(?%8Be9ᤋLP|N$ ?9jJ9L*$Q÷jEdbYv.X'b.c/&8%+il̎NKTP# ygR#]FW\\'_D +$KC Y=CSR\\U)HArH~( 3Oы {#/8z~2Gv"gt- 2Jߘ "7$kKR-+d>ȂJ3"CG3!?h4%s<~s! + "up0Wh "|H b8[pa $Ƈ^3(Ddw-zpkڄck=D2P|lކTd[އ&\"m$) ;d`'AL"XQ^>, tU |J61d/m@JfLߛ$|ǥAFr\35p=YJz x z + )`0ɝT}8K&`Mߊ+Vz5}$ z"2.2 n͒ljJrɕljAf̜dӃ8z6\a3&AOnXv]ɔǒ\ldMdUξ[G$O>_SdېA^A a$m6Jo5_2D%kwgSDl. ڢJP*B%Sd*:[}"*d(JA!Ǎ Z3Kؗc 6R_S|ի;ŦHwP yC(WK'`< <)brJ)T2J[HE #J tWߤn/;_}$tClgǥTγ(_XrPR**fK% 49RE)RFAHr\^!WwZѲ^ZylZv AAj4:+hI~0 .wz[~K'm>T= S۹?HzƖl4Q0xM]/ F08DjJ W{ Wh+7rW!7ewxzG^4 ~! +O%l jFbʠH&6X K򇷡@D%In}DF`w\4y)ygydN6"mwd*9tQ䭜Ncx bJ+y"#C2,pIFx{ut%G85< ĚYdLo%#_@2L$BwJNt@[}&OjZQ!P@l^߁A]gN(ju5JVNmHn+6Kϟg k>^o+8_SHFH Wu 朆P˼uP9߇RJ ZV# L C*"!Qۗ" N$egp)Y : J :S)}(\(dmJ/".f ^e(4T2L)T2Jư~:)dK^(dy-뤚.yKn[J+!+跽7ć;RUrTqr7KF{#>Tr9Kfr#WxL>q,YKOx-=\8%a-}iHFfIvR$_(*|(T?`@2 wKcNjxEw`P(sXZ +<%Q<, 0X5XzFC5OkICKNQD"4ݶ\b{ŧutX@0>bkH-w!UT-Ai%C^? 9D*.Xq8SV^n┊|h6))?SJ_,ۅ;X[H;;WE-'98[;a緵NV=m} O5UI' `[W ԍoTE\}bjWjDE4Uv#*~{|\%kA@,l~Jd11 }NX,gbϙ# >]c>=j=Zycx/UsC3 V,6M!d,&IgG-0Yy.%DǡY#*~GT3*qVr.zV~Jggaf4P֚ހ&n".{eQk^נ52s54@f&C%Y4#MM&h r1bPb毼vHy  %HmD%Z UꜲavArB'P`,=Y9|n a4J%!\ h I>pIf `o>?vOtKv $0dJ= ؠ&@k$u$7% IfWrUpn@qWrK܌V T퟿($HK. E!Y tRWIHɒRJ*YITKwBRrY"Y򋱸|?,/$ܸdIsy92gv1 5$H*;|bzً=w]9`ᚒ%nԧ\Ͷϣӡ#t\zFH =՘O<L$K+Tq^ +"q^d)9!^ޣ*MyAi'H7D% &hXXHQAO ݴH@"p\lsB۫Ȃ @JU)6x_boY%^|ְVJٱ$c,y]RrZ@\znaDuTt#޲ |p ea|i@əKiɚ:p{[Ah7vHc3&D\?=mH X1smRq2A9]#v([/cfq!a4_`&on6C$3lJ٬)KPYK0ɏ#9A䟸O,9w/3p=w=cvp~.ී u&6áC.kJ_]ج4^͐B(؝ =B.O䒏?A~+ ㆖ZoPrs7=ݿ,9m!:w0m\ag+"\0VTO,`ei[1I2JJ%O* [rcm(2$%{5ªPZ^{:}ϛ$r}Xk5w|{7ó%T.]SA$%ȹ{;7:;ڝ~by?yKk|ɳ5Ыr ۵708 ȗQ*uD1YAF~x6GOzT }7 )v4}E:&IFߺ}[cjw#8@wa7 g\oU:&IF>wcNvC pJt'ZBahWW >cd(rxDb]>DgˍDh{٣=~P4?ajx! Z+4tH$%ilrW;(MևAQvP_cXt,R;k6l0(肞?$%OjdrSy:7'$iM8UWgcdӌqd`Tp4|&HF fiQ@U̒%KyK0#̣,$g$ERe d/,z(4g- Qd%#(%\F aw(9[|~s䗛ϋYd*~{} n M׎m@m!lMbBdМ (6H/<#ͥb[Rs;C$Il /\Gr|EMAie&2 echo "Format C++ source code and headers in a git-controlled directory structure." >&2 echo >&2 echo "Options:" >&2 echo " --help" >&2 echo " Show this help" >&2 echo " --verbose" >&2 echo " Show verbose (more) output" >&2 echo " --all" >&2 echo " Format all .cpp/.h files, not just those marked by git as added or modified">&2 exit 1 fi } parsearguments "$@" if [[ ${ALL_FILES} -eq 0 ]] ; then # Format only files seen by git as added or modified, # filter for .cpp or .h files. # Trying to handle filenames with spaces correctly (not tested) git status --untracked-files=no --porcelain | awk '/^\s*[AM]+\s+.*[.](cpp|h)$/ {for(i=2;i&2 continue fi TEMPFILE=$(mktemp -t 'kbibtex_formatted_source_XXXXXXXXXXX.cpp') echo "Processing \"${filename}\"" astyle -n --align-reference=name --align-pointer=name --indent=spaces=4 --indent-labels --pad-oper --unpad-paren --pad-header --keep-one-line-statements --convert-tabs --indent-preprocessor <"${filename}" >${TEMPFILE} # Astyle has problem with 'foreach' statements sed -i -e 's/\bforeach(/foreach (/g' ${TEMPFILE} # normalize SIGNAL statements as recommended at # http://marcmutz.wordpress.com/effective-qt/prefer-to-use-normalised-signalslot-signatures/ # astyle would insert spaces etc grep -Po '(SIGNAL|SLOT)\([^(]+\([^)]*\)\)' "${TEMPFILE}" | while read original ; do normalized="$(sed -e 's/const //g;s/&//g;s/ //g;s/\//\\\//g' <<<${original})" originalregexpized="$(sed -e 's/\*/\\*/g;s/\//\\\//g' <<<${original})" sed -i -e 's/'"${originalregexpized}"'/'"${normalized}"'/g' ${TEMPFILE} done # correct some astyle mis-formattings if [[ "${filename}" != "${filename/%.h/}" ]] ; then sed -i -e 's/^\([ ]*\)\(:[ ][a-zA-Z]\)/\1 \2/g' ${TEMPFILE} elif [[ "${filename}" != "${filename/%.cpp/}" ]] ; then sed -i -e 's/^\([ ]*\)\(:[ ][a-zA-Z]\)/\1 \2/g;s/\(foreach([^)]*\) \([&*]\) /\1 \2/g' ${TEMPFILE} fi # In const_cast operations, ensure space before ampersand sed -i -r 's!( : const_cast<[^(;]+[^ ])&>[(]!\1 \&>(!g' ${TEMPFILE} # Remove superfluous empty lines at file's end # http://unix.stackexchange.com/a/81687 # http://sed.sourceforge.net/sed1line.txt sed -i -e :a -e '/^\n*$/{$d;N;};/\n$/ba' ${TEMPFILE} # Check if copyright year is up to date head -n 5 ${TEMPFILE} | grep -Eo --color=NEVER '20[0-9][0-9] by ' | head -n 1 | while read year rest ; do [ "${year}" = $(date '+%Y') ] || echo "File '${filename}' has an outdated copyright year: ${year}" done # only change/touch original file if it has been changed diff -q ${TEMPFILE} "${filename}" >/dev/null || { echo "Updating \"${filename}\"" ; cp -p ${TEMPFILE} "${filename}" || echo "Cannot copy \"${TEMPFILE}\" \"${filename}\"" ; } rm -f ${TEMPFILE} done kbibtex-0.8.1/icons/000077500000000000000000000000001331300026200142515ustar00rootroot00000000000000kbibtex-0.8.1/icons/128-apps-kbibtex.png000066400000000000000000000304771331300026200176730ustar00rootroot00000000000000PNG  IHDR>agAMA a cHRMz&u0`:pQ< pHYsooFs9tIME-/bKGD0 IDATx}x7޻dUY$mIh! -熄@!IHrI&$; ظw[{jw~ߙgfgW+Y6)2{|` ` ` ` ` ` ` ` ` K {?qt ܽ[nø˸q$m NE|kNN3-uph/ A\"쉻CG7̿C@%hʦimQK{dFˊ(U WdڹKnynm@2Ba"q{0$~ [ќ%|F?up iUB]d.ҨEN/" ]f2 o!~cm5s@є\v]SzTZ_9% >{ouW@FboY{cg 6&nuoF%ãA\Uq&&" Ec9e:~^A{B$hf6C]{3%7!d# &A wǭ$)6.[C/F0& $臚)Qikddhj׿Wmd@C0$%^-)3) <;CXK\7  \Iڹc*a /4Kq -DCo Y޲3a= f PE!z~8R6*̎Gw.{lx}:7 f1+"_6~N 7|.Iiz> ͓_̖M0$ NW< e`dХB I 祁KQ m0(*E0rUGlυ$6=s_V& \y*|uBhzAnVYX56yeG iY:b#F>uiokzBv7~58 xe{KQBuahu{$ \w-<&2 ADedp# ƴT"4@aR&%eΪ#3pǚ{}5QM$&$eaUWEϱ?({x$@-0?%Y2h[B0-k7<@#0?",ʟu'ZjUC~/ e׹* ECee'@$]eh K&Ql$cGS^} '!$*I;\lnED鉉>E . A2o( bbb T0}L]T9 IȮMU9'p]z|UX}nd݊|x@b`.}r$ݲQ[KF$p ;!/> [U6 }P,sJrL<%$AٔH% M$8Ĩ8(H΄ ?F&'%ChH(Wu=%!{Y?DIUsJ _':gTn ֔DWH6p ύzBGaxf\&p:qM̀>\<݈}AjL *ʃF=TY pvAB뾧 f{A Pg" HR (;3-H I:ؒ $cl L\}'m7?x]Yp5^N: {:YbzHL!g>6$aXD?~"59z{z{z5:~q{l!?+'fE't\[pKڢoغ;\(){t^a,{ h|eCDKdH Ȑ0 nƥ'}zDO|!6;c mU&&};zn_R7tOx;`HpU SUEt D&MnhAg{ NK;R HҨp?"Ħ}:IDL']r\r*J!",cK(fu` HMf6Uۯ⨿nR[:TBmC=rї (F"$(4 `놜x h/1*˅6WGqńFH?\xd?W|=A"2JL:G=S`ܻH &L>?_ǢluU`j}}p qav'tTɒM]?9. f(^פ"OPj ;߂WLH~/BFȚ粄/@g G .⍖`ڑJT ,fd£iQ.g,Ms/Olҗ}%asVJ:-V5ޛlml=T} vaV>ydQabžT&tufd_G;LE=?C!O1~GX2)"ƍCJd\7T؄RGΕE^z}_}$E4bDNgNEW/WD㵌YW|@wU28tBש=aaHE$Fˆ gl!׆l, D'@%e\9ˠQ}hG ȗGPAAg# ƕS]~ (#P[&bK|W΢\iU7)҂WdA,fq!7EAAlLKʁ[+\3#VU0ԗ\CVD$D5. ŽE|^MN!n9)hgbtݭ\Τ)xO"X%K uN6A<Ѕ@7;7JV'}tȎN0J `4}N@?}cRZ_11/)򳧶h`CDGݺqWf˟kD^ZVe]$d#NHfQ}ϨfVބ+`m"(HQX1ʡe5`[Wl/({HȉI!6Q-?ȗF?_׋CKq[g. ㎼H{Wf%dK'z$/R>>~嬅Ґ,1ˇx%s dnstQ%J^h3 @PLHC{xԊp*GSu`Q'ȉM |Yup-BX^:poV WL(ծgOom >%²yL3 b' L^NcmW+4fC!dS5v04u@J! {BaDe#hS2`j|:{F|C\CG#8߃#f!2$\~fӻ5ܸF_5h‘p7W9э@$Vy L{mʾ bfw x Beob(f+\P/t CTYJ5F>,jTONy?̽ Jf/.< , 0f/HOYH|T}_[DT 0Ӛ/ /=+ &=Jp^gP]涙>?eW+$XG0 {u<'si7? , @qJ6!>=n- ?:2,AaFKSr./OV&D*#a[aeO>~̑3n5=Ǘ$#ȂY@N뙖% 9ͯIEYTùgX"$ɢVOԤ)lGc)(z߰v9ȂNs !M0S]S4PF9. q wmrHKRF>7ȓkPy@A>env{><ռR\d'jЈ퐓@-;>}+-#G?x~HdEFE7vh׵7{>ncI|~ϳ9y7.X 1GFJ0 ^{VF((ȕQ{³^ ;@d4ަ%Cf\ ; >\R +3J D;+U3NGGaafa˼/ks$<ӻ_-gx{3/MCշX Wm-cXop8+=m͂idS0JX2'<md$@ p`3+r`$>b*k_S ^pj+TpΘ#O|€¼YܽHR3!'m$5.8DEkV$?hx|D4ćGCBذHCi9 pKy+x˓p]6\YYl˒L+f÷39M"O~w8Q㪛W1w"3s`81b}jQmL)˞+Vc!V$bcŮcڲ76k5eExU P}guו,{+~Y %?ݲ{۵Ib[} |q,\IzUӈl3jA4';!]*<,/<,}m+L0^d/2e%1#~T}vͽ]pWoĿIu=}z-s {bvWW_7R xXX+ #Lv7Iƣ Y=>{%|q*{̶X~jmK=m<9-DehTob_(XeK~_o|d?=] ]k`Z*kYF#w=jXZ__` %Ӧ-T9F.Jxt'4uwiP2,j6#;Y\[g| tӟˡ<,X|0Y7!VېM{pWW$ %4TSOTFϛ*(?\{\zUG"Xn|\#^d?+s"e$HOĘ8^ JNU$825)]7ddSx. y!lM(h,jqC *' d$oc?%&X7cI@VgQ#9mk0""!'%%Ad[6#ܓAUԨH C%SSd<uɒd<6O-lA7]9 " )^TA`CI*[ص- -Y* Zx G>U QKtnC;=ܴL$\ܢF6" ϕߗQ"rm SaQ!o!+ԝmEp *oU5QE標CĐ^PSW~N[l: ozyʳ BBdaތT"b$;Hs!y+HoCBmv1;*6?V{CPt)$HUы4*V9 ުhsd;aUQY`bDO}nҞ: >nE0´tQ!J%@wm; 4n 'h/;캯}oOm{I*[i'Ou&ŁLsHg*v`FL?FD&⯗gC=\w<$템)mK2gHAȠtm9V؈(H*@*WQfτo¼i־WgEypM2s0sT4ozԝlxCJ4V}RIЂ$80&ZX@v :R#o]1h/E9ܴW-DtH&zr/[X*ghIQ%/(&rzoܬbǿxxR3CO~i\X3g1qEa0eN QraOIJc)t װUe[ZMU ,Sur`VOãYy (q YCrP/~%.o U{ 2*b @.?f_}>Y`݇o~g,lϘx׌*0V{ =71%j[7$19o4[ս\s |E 0+u}vZ>UHZOxGxRyK gÊi05y\E Be]N'vIyw$-0S'Д>x ^s^]Vl"C 4O:Vv#NC2hdo ~ $𷅋Ⲝ>!TH߃|6fpS#xjU@7J[d8zΑ>GMajmkɢEsZti&?q7=:~xgcA8a#wԻ]DžfPYh.d%"}vCö,Pm@.JA0>-UZE쉍;'>V,7_|}i~vm ?h`haf$fCErO9'{ds,cXssravb.ąE聺Aۣ mW7ܒ17)΁12 z`3b=Ȟ`)լJ{+f,XiYRC839+Ҿ=9F .*R aNr.!tެۧm#7⯓(+I031B$`VVoxH @UZl~c_8}2~f|;GG5?zwmTvv~NrÜ ?Ϋ< ;zOG&"¢S_ ۛ,$@"ڜZ.')іFcŸt'̍JU +\(h5pJLi#tV|*!=6ɫp{Φ?y4mnJB"`avT#`٣顜^ BXV 1^ZS5 $'p|i imqa"v֪Yj?>[$"PnbWi䧨n^U;w0M~Nh,| z,衕]mpv(` 2t"(?iݑ[L# R87{3%*R1M R( kyOIzf??fP#+8/H&*z˿kP'FY6*,X4e:n>~r?٢j _&G9XSKL24BJC;1p!]>oO҃_tiś[V6l Iz{Yýf&( nϩr= @'֪d22{JSr5Mx f"$ l zHgmL"NeXuG'#<>?C'*V]?B}&r=V|ICaޔb ^?NpRH@o? ۫5:[bS`aIN)[ D04`xxbcB9MTJ-u ϑ@]^@:LcaӔu'pq3~5~~ skOe dȱ1 ԫԁH$ x zG W~zmy< aםQH7X;ɳ MH}^z{ddl*"Fu#ɃXeme۟lQ+Ά90`csN—40Ņ:1zli6Kx1y}{3!IN튩sẃTK_oއ*c{ >O]yڐ Xϩ*bB-ϛW旱y~U #*Slq'jIP8%ԞbV^$,(CQ?4^} >#Hݮnsz}+ Υfu0G|O[c-5s%}$NɞbX0wχH^93O LdΑd,{aVz>*eYXdϙQzPȤN5{ipV a2><3:FrhTuh.z SI-m021G%m/+E S¦M"N"vjd>l-?F' u?M36u[ۥHCM/徸, M% NBbA&ngd\"z=؂-؂-؂-؂-؂-؂-؂-؂-؂-؂?(JDL$%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/16-apps-kbibtex.png000066400000000000000000000020431331300026200175730ustar00rootroot00000000000000PNG  IHDR(-SgAMA a cHRMz&u0`:pQ<PLTESzn?i2^Qxt_6a2^2^MusqPw2^2^2^Kt}3_0_j2^}_z|2^=gö|2^g2^>gv2^2^2^_ǼAi2^;eʾΒRw2^;eb2^3_Ȱīuyh_܇ykxLukYKtBmV~{fQy;h&W|OQwhСϻȲĭ«İʹǶս̲ĝIJ䅵Ҭξ팻ϹȰٯͿ􇹢ɱsԡóôDxQtRNS4;V:}Dh/0?vQ"s,OFU:u:1bKGD+ pHYsooFs9tIME-/IDATmP1Yzfb@$JbHHL N, N{$G sJ-t!vXAgT(eFpZ2e{eYX~gFaU ` G =[3 FF&!o\%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/22-apps-kbibtex.png000066400000000000000000000025651331300026200176010ustar00rootroot00000000000000PNG  IHDRĴl;gAMA a cHRMz&u0`:pQ< pHYsooFs9tIME-/bKGD?IDAT8ŕkLU7Cb1kf5iq5N? a܆, q/R ҖЖmҖЕB; +QZEHF5F3]$';{СPE; *UE{YFM9Yd }$3{Rbq-B颍H˼M^N~.*XxT-wp;*F:A7J0ID>դdMGKw)U۟_mFF#R{5#E\A4\:Pk3DXyz9R^SoY1  Kpgmهe3eLR Y \䓹ޖnc>|5Hm4'cФ  ge 'JWrq%)auPjw{y) _ ~]XazE IQF N,M{Wy`vG^؜Ծu2x2]RwC:;]N0m:Hz]Fh&L@ k:j0 y@Z 롃盝24ׂP\e‹.{a;Sg3yX [ْzd~ ~ 8ɁFEǀ4F&%!kKp,`2 ;SOo[[XpQwf0~q b_(!1y<:t:L&V+f6GU2*B6ܐq{7/@Щ#>V W^)sDNύ2>Ƨ&x 2 zH0reM8PAf(~<@D=AO5tpse[$坝loo#.Jg%l4h0d1K\va'>fط4'riʝQ\.l9[_GUIbY3\shH[3Ζp*PrQ9 נ1+nm&|؜/u-NU \'c7W.ſm/DtߝzEbWr&Q$c5%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/32-apps-kbibtex.png000066400000000000000000000043271331300026200176000ustar00rootroot00000000000000PNG  IHDR szzgAMA a cHRMz&u0`:pQ< pHYsooFs9tIME-/bKGDIDATXWklg~>݉ss8q⤉+i.m$[G:ZѪh @BCVH -lS;Fq]2+Iڌ\ܜK8}}||9Os5,AeHX$ QV@RQЈ"ȌL.V˾Yt=@0jEw > LQ8!3z zndf#}H< p^PS\`Zl 8x ,3t4U@KE =`5YcnCd4mnBEIaqbg133Xw((=Z V icbƋJka:ji@pfT)D _ Z 7fîĒODT14ZKUisq;DAՖrQPVHy)r"J/R9@,[±OBע5 7# ieNFTA0lҜ_# F $$pHgO#6u]USV)Ė$ cqu_g)5R%Ϸd8=&Q gKN1n{MK0|%ՎmU(+I8=Y(FY ;4*Je~})77 զYEx#G)ILSk`24ZaLQ=dr4]u"sCޱz6PL:/6(/IRAẀVe= {@R,JH`'@JGG* ^ m)$TڜK͂d!RFm!Rw)Hl,E j+0+HM1kOَV)FQħ-rHnP dga=?azVR:`$5ϲ!7ú}!1KX W[lnU"g8wJ0;W:nualaFͼ⭲N"i=8nDm *|~u ϶AsuLT2=ӚCU~gQlqJzV Fi1ERnG.)Aߢ8@eX[ĩysx`n(}ɢ|_ blv 45{-jVD'$c %YyBTҥ( `3t`U AML.q7/5-6 {'NjD'l􁧇g{7{ R49*P:Fn ry/!w2`?1*jyZ#[Lzg P"2}?#JG9-=k(lE^:aa$49~7g/gN>ˋfN޲AJ!XyoPIfZȎ#N^W=Z Hp0 @O]>*HM]P֕]Er)6MEU_ ; qc._v՜^) wc7qmZ C":Gj[w-GVGAz6d#R:qu't{nl{ٔZZoO8X[w9L?+]rTgܖ[LZ>nA%tpeKH,3 1m;ޙ,ͿJϒ`>4cIA&})jǂ%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/48-apps-kbibtex.png000066400000000000000000000071661331300026200176130ustar00rootroot00000000000000PNG  IHDR00WgAMA a cHRMz&u0`:pQ< pHYsooFs9tIME-/bKGD @IDAThY pT=rmd Ip" x"2"3ejNu/cکcT4rnD $$f}MLQ*toキ/| 7=ޫϗ1-1qhjoK>)^'@%OM[;8[q:p"詵5leY!~ ZfSAY XlmeL!]zON :3'l|LH~1I,HCBKgL%UىB+!#]EyậGOGx @[ PӬR6/B}If^K|Ccr{FbJ/ -{2~9v&*nf/N'¡1]B/|$X?QcZc\Es4CvzvJF)ڈ.dpy=Ni=^z\n);YcJ>"z;=ezm&͏HBN2tDH8\Nwa"IkO[Ip_-C3-zu5:<=P͇Op|D=k1/cwjp=B"@ci#&sȠbtF6(LEr#B?Zd+v>vQ2zNMxSҰ~K9Qvwd{¬!yu@ԄIǪ^(-DvrFYłW6Y+DrMtѝ[` ׋7jJFB/E%NTŲ34 Z@G7?.7CKIٮ UJjJz)8mKF,>:'P*P U a4% 鱃DQBvb)~5z<,.E TDte9 XJ]Bٹuɦa2=\~.?gS;UBá!&< hXF:ofwAv\r86MwHp,^Y0 {C67]K]xJ .mʈ0"m8:*$Qat-> E~T}&aKBw]~du_~aw( MRc 8y.;;8 0̈#p.UNNYt8~'2ɬfO[w_hGKVm0ъHP72[Iڴa0m"х L$ДG'鼔_IK{ك/ˎwS 4/VŶsLqR *M9s"O uOjk*4-ҥ Dy"yb`\Cy;A^Z͉xpf·51-P*ІVGn'`ܜTD3kE|R fibPi1Uh{ŻqȬe}~O|b{5OW7n:2RoLݟRk=i%?6g'%#24'k8 ىə9"sQ#4|foCXsr ½;cTmg r[Ϙ|?wvըj2 c$uG88k0egRc,`r@~Ƌ"49:)VLcOóWH;JcpH5&GX ٺJ]2Ƙ2p\'k eVH(")?9&!"<>,كHF`j+QEŦXc9)?ueZ,,&I>9 LM1Vѕ)Dw\T7"" {NcLE% NÔ#mZA+ǜC2?*4H?'fDSNûc<)e8 20̒&aP_VxP!6.`K(9!Ji0tN+{7Y&6 } 0k8P1gn"`&N Z9nn  G7sD&$KHOHMCcƐMN'^&)FeŤؑ@#tT3.8StSWuK('SQ(zbWUBkoYNEa&3%5gJp46nfynx&6Bz($b,xECVQv{856$%OX'_֯חU$EEgmhH\hKp;uf)ZNV hrء7EN M^WKUi캥yY%2V8F`4.G/̉tG;/>[ĹN>gּgqѳb,T_5*Ƹ1/n9 O%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/64-apps-kbibtex.png000066400000000000000000000122371331300026200176040ustar00rootroot00000000000000PNG  IHDR@@iqgAMA a cHRMz&u0`:pQ< pHYsooFs9tIME-/bKGDiIDATx[ytTUޫ%Z*;I%dE`\@[q{qEǞg\?Z8ӊhk""KAD lI {*}O%7w{WEAEp^z~~jڮqWOa3t75 : +F༣Ep&W[e2:WFE4wilBt;'";{@&o sk͑F%AScgdt~A/ޑA8&͒aubilQ 3+M5:ᜣ:{)j2 XRܔ*0Ry "_]s<'?: ^m8|Xi+()`EQ` 'I@LKjF4`pB^E*-d@E<_< W0 #Gwd'MdUwE@?, M`k & iTH 0xv #G|cM t_"cMG2u8F!x6O$}ǩ>C O`2T"}FIHDh5Zvϖ$E$|h.3x[L{,CD7=^ ?H}]c# 91΀"F19%DìO͂!3W?pk(CgG$}@ SωJ_^;zٝÈfDp~3@iaOJ_ :&L qPcoe%6ϗ筽 u8\%,ާ@#3"/O΅GVޅB}W+Av?)N:Ss1ixZ Apqr  |;>7p{ v 5'o8 gZ=9*^ˤKCQyr xReU"[ZL*8iq[YūZO` Da#)0I ڀPleOv c>l С0 _ FxzLfd:?Q8[*^,KQȡ_us;SjeR"y`T53|&{xɮ qm 2O"8 1M\iz$KԵ54iR+`: 7ʼn|(nPaȝ(G1 :SpMACJ|9>( JUdD5e3;)s2L `DgFQ4H(& C:3K'|Oϕk‚Fr$zDGM7?tfCBd#xRaAa9KE!!\ұ/]hc 1珳&"!|v(rH0EC^\Qs k\+XÂpo~Nk6j@%`~U۵}>˵fBU&T6xT;G&MEdD8QQ0:IZ ĥBNL:mdHJsVg /k =ð71B)rh|YP'M6̕S6y"굏=D }~ l^&f '6F l:?DuSFSg찴 %Up :^VɲH5̹qȴ`N܄4!̸vA*9Kj d.a:j> ng3~\ zR'^SI ŀac d"#ѥQH3Xѐ5^*G!)ԉx/;,fxO\{jG >7 v[ɒ6| ;×ZXMDU$QzL&#={ ܨ3GIX|C5Gd%^";OlF`gK.e"qjdrVRblkCTIJ2D\?3bޮꋀ0sxI&@Ę,@$K˒DK7ۡNJ{2t(8"{K' wg'>bKDHyP٬RB?'W =ʀ V6!7#xz wpjaӾ-{[d?3$奔l;JS94,KI]#gJN(%B®q1A -DU>firAY{!R*d#iM[ .*~y'k!BxBVSͷtK%*; K/r-!|ws785py@i\6Zay<Ccε3$*h3wsi>óî/Q1 2.]H D{=4vaӍC9F 8ݍW[%dD+ $wxW$]ڥݰʒK7,((._lq:p}qd1faM fETf)f&?Z ͽؼ fyQzP ו^3 h݃}w$-G{1t苓 Hk\W&"⁦_:{Yb"L.RsuXcZ.އYi= (># d\b]X# RşⳙS)ܢ"nNM: 89tO05 \)jc^!LLCN$ul6XXPˊMUMB$?x|!H$a0@@מk0cf#MMr+601[9ˍ vcnE5P~)H]z= k_le`Iќery,"z@Cj#>}y0^hJʂ{W'7nq^%gMlX. gyaxևѬ"%v{W`e|Wm ('ʤ];YCVO|!?P?‼+$DF_P(vT Zn^f!wMVᶳ⟿Me(VsK mZL궇dsxf._e3 z?dj.;8D?iNEPjɆ@ݠ݃ORLybeN(Ogd3Aq_S ^s4#enFo)y0' 耙xhk,1}$Ã=NrV\:TCI iGfd㵢54X> h3a[M]K`O~{U%`fNj;GAhaKz^LȉIvՎ4?yMt;w#+.1"}ؗ+י0:T&YoI6*.Aβ3?lCfFOl{7 2S/3zplJs`Az!'eW9I/{GKt"Nkgɠ {ߍ}r> 2 aQlVOE2 f9HS2dhi\'B{7{lTXY UiL0>{zHs_kkiO:!,d"FEP*r\l8^^򃗠 +ٹ6}c`ɌXI6N 8u7|z^^^"̊LˇermwS6BB ,3Kp^p=3JaiN'-vqӡ 8{YeyDđlo!"M|9Pf DdQ8_ `9bF"m/; 5/PFȶ?`U .)u9 {GZϢ7v31?XV`M,qM ~=.V7ֈP{ZiO|; c Rؑo5o^G+@I8rRca_a,lw; [rrr&:w""aF \ Ԟ^0L^)pvi"O}^L8b5?f($.0EK_I>Ks&T{BB%Ixpz\h']ʹ G~z%2 &"@!*L<~9ً1bҹ4ӳ7#3gzxbDopkse^X(Ra$?ށ|iHx;ef AڮjھY?+ZB%tEXtdate:create2016-08-04T22:45:47+02:00>e%tEXtdate:modify2016-08-04T22:45:47+02:00c.tEXtSoftwarewww.inkscape.org<IENDB`kbibtex-0.8.1/icons/kbibtex.svg000066400000000000000000000512151331300026200164260ustar00rootroot00000000000000 image/svg+xml kbibtex-0.8.1/mime/000077500000000000000000000000001331300026200140655ustar00rootroot00000000000000kbibtex-0.8.1/mime/CMakeLists.txt000066400000000000000000000003261331300026200166260ustar00rootroot00000000000000find_package( SharedMimeInfo ) ########### install files ############### install( FILES bibliography.xml DESTINATION ${KDE_INSTALL_MIMEDIR} ) update_xdg_mimetypes( ${KDE_INSTALL_MIMEDIR} ) kbibtex-0.8.1/mime/XmlMessages.sh000077500000000000000000000004421331300026200166540ustar00rootroot00000000000000function get_files { echo bibliography.xml } function po_for_file { case "$1" in bibliography.xml) echo kbibtex_xml_mimetypes.po ;; esac } function tags_for_file { case "$1" in bibliography.xml) echo comment ;; esac } kbibtex-0.8.1/mime/bibliography.xml000066400000000000000000000145331331300026200172700ustar00rootroot00000000000000 RIS bibliography file RIS bibliografska datoteka Fitxer de bibliografia RIS Fitxer de bibliografia RIS Soubor se seznamem použité literatury RIS RIS-Bibliografiedatei RIS bibliography file Archivo de bibliografía RIS RIS bibliograafiafail پرونده‌ی تاریخچه RIS RIS-lähdeluettelotiedosto Fichier de bibliographie RIS Ficheiro de bibliografía RIS RIS bibliográfia fájl File bibliografico RIS RIS-bibliografiebestand Plik bibliografii RIS Ficheiro de bibliografia do RIS Arquivo de bibliografia RIS Файл библиографии RIS Súbor bibliografie RIS RIS-bibliografifil RIS kaynakça dosyası файл бібліографії RIS RIS 参考文献文件 RIS bibliography 檔 RIS Research Information Systems ISI bibliography file ISI bibliografska datoteka Fitxer de bibliografia ISI Fitxer de bibliografia ISI Soubor se seznamem použité literatury ISI ISI-Bibliografiedatei ISI bibliography file Archivo de bibliografía ISI ISI bibliograafiafail پرونده‌ی تاریخچه ISI ISI-lähdeluettelotiedosto Fichier de bibliographie ISI Ficheiro de bibliografía ISI ISI bibliográfia fájl File bibliografico ISI ISI-bibliografiebestand Plik bibliografii ISI Ficheiro de bibliografia do ISI Arquivo de bibliografia ISI Файл библиографии ISI Súbor bibliografie ISI ISI-bibliografifil ISI kaynakça dosyası файл бібліографії ISI RIS 参考文献文件 ISI bibliography 檔 ISI Information Sciences Institute EndNote library EndNote biblioteka Biblioteca EndNote Biblioteca EndNote Knihovna EndNote EndNote-Bibliothek EndNote library Biblioteca EndNote EndNote'i teek کتابخانه EndNote EndNote-kirjasto Librairie EndNote Biblioteca EndNote EndNote könyvtár Biblioteca EndNote EndNote-bibliotheek Biblioteka EndNote Biblioteca do EndNote Biblioteca EndNote Библиотека EndNote Knižnica EndNote EndNote-bibliotek EndNote kitaplığı бібліотека EndNote EndNote 库 EndNote 函式庫 kbibtex-0.8.1/src/000077500000000000000000000000001331300026200137255ustar00rootroot00000000000000kbibtex-0.8.1/src/CMakeLists.txt000066400000000000000000000044731331300026200164750ustar00rootroot00000000000000# "Unity build" found at # https://cheind.wordpress.com/2009/12/10/reducing-compilation-time-unity-builds/ function(enable_unity_build UB_SUFFIX SOURCE_VARIABLE_NAME) set(files ${${SOURCE_VARIABLE_NAME}}) # Generate a unique filename for the unity build translation unit set(unit_build_file ${CMAKE_CURRENT_BINARY_DIR}/ub_${UB_SUFFIX}.cpp) # Exclude all translation units from compilation set_source_files_properties(${files} PROPERTIES HEADER_FILE_ONLY true) # Open the ub file file(WRITE ${unit_build_file} "// Unity Build generated by CMake\n") # Add include statement for each translation unit foreach(source_file ${files}) file(APPEND ${unit_build_file} "#include <${source_file}>\n") endforeach(source_file) # Complement list of translation units with the name of ub set(${SOURCE_VARIABLE_NAME} ${${SOURCE_VARIABLE_NAME}} ${unit_build_file} PARENT_SCOPE) endfunction(enable_unity_build) if(Qt5WebEngineWidgets_FOUND) add_definitions( -DHAVE_WEBENGINEWIDGETS ) endif(Qt5WebEngineWidgets_FOUND) if(Qt5WebKitWidgets_FOUND) add_definitions( -DHAVE_WEBKITWIDGETS ) endif(Qt5WebKitWidgets_FOUND) if(Qt5WebEngineWidgets_FOUND) if(Qt5WebKitWidgets_FOUND) message(STATUS "Found both QtWebEngine and QtWebKit, preferring to use QtWebEngine") else(Qt5WebKitWidgets_FOUND) message(STATUS "Found QtWebEngine, but not QtWebKit, therefore going to use QtWebEngine") endif(Qt5WebKitWidgets_FOUND) else(Qt5WebEngineWidgets_FOUND) if(Qt5WebKitWidgets_FOUND) message(STATUS "Found QtWebKit, but not QtWebEngine, therefore going to use QtWebKit") else(Qt5WebKitWidgets_FOUND) message(STATUS "Found neither QtWebEngine nor QtWebKit, therefore trying to locate a KPart for HTML data") endif(Qt5WebKitWidgets_FOUND) endif(Qt5WebEngineWidgets_FOUND) add_subdirectory( config ) add_subdirectory( data ) add_subdirectory( io ) add_subdirectory( processing ) add_subdirectory( networking ) add_subdirectory( gui ) add_subdirectory( program ) add_subdirectory( parts ) if( BUILD_TESTING ) add_subdirectory( test ) endif( BUILD_TESTING ) # install( # FILES # kbibtexnamespace.h # DESTINATION # ${INCLUDE_INSTALL_DIR}/kbibtex # COMPONENT # development # ) kbibtex-0.8.1/src/config/000077500000000000000000000000001331300026200151725ustar00rootroot00000000000000kbibtex-0.8.1/src/config/CMakeLists.txt000066400000000000000000000015101331300026200177270ustar00rootroot00000000000000# KBibTeXConfig library set( kbibtexconfig_LIB_SRCS notificationhub.cpp bibtexentries.cpp bibtexfields.cpp logging_config.cpp ) set( kbibtexconfig_HDRS notificationhub.h bibtexentries.h bibtexfields.h ) if(UNITY_BUILD) enable_unity_build(kbibtexconfig kbibtexconfig_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_SOURCE_DIR}/src/global ) add_library( kbibtexconfig SHARED ${kbibtexconfig_LIB_SRCS} ) target_link_libraries( kbibtexconfig Qt5::Core KF5::I18n KF5::XmlGui ) set_target_properties( kbibtexconfig PROPERTIES EXPORT_NAME "kbibtexconfig" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexconfig ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexconfig ) kbibtex-0.8.1/src/config/bibtexentries.cpp000066400000000000000000001126361331300026200205560ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "bibtexentries.h" #include #ifdef HAVE_KF5 #include #include #include #endif // HAVE_KF5 #include "logging_config.h" bool operator==(const EntryDescription &a, const EntryDescription &b) { return a.upperCamelCase == b.upperCamelCase; } uint qHash(const EntryDescription &a) { return qHash(a.upperCamelCase); } class BibTeXEntries::BibTeXEntriesPrivate { public: static const QVector entryDescriptionsBibTeX; static const QVector entryDescriptionsBibLaTeX; static BibTeXEntries *singleton; }; /// awk -F '=' '/^\[/ && OptionalItems!="" {print "<< EntryDescription{QStringLiteral(\""UpperCamelCase"\"), QStringLiteral(\""UpperCamelCaseAlt"\"), i18n(\""Label"\"),{QStringLiteral(\""RequiredItems"\")},{QStringLiteral(\""OptionalItems"\")}}" ; OptionalItems=""} $1=="UpperCamelCase" {UpperCamelCase=$2;UpperCamelCaseAlt=""} $1=="UpperCamelCaseAlt" {UpperCamelCaseAlt=$2} $1=="Label" {Label=$2} $1=="RequiredItems" {RequiredItems=$2} $1=="OptionalItems" {OptionalItems=$2}' entryDescriptionsBibTeX = QVector() << EntryDescription {QStringLiteral("Article"), QString(), i18n("Journal Article"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("journal"), QStringLiteral("year")}, {QStringLiteral("volume"), QStringLiteral("number"), QStringLiteral("pages"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("InProceedings"), i18n("Conference"), QStringLiteral("Publication in Conference Proceedings"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year")}, {QStringLiteral("editor"), QStringLiteral("volume^number"), QStringLiteral("series"), QStringLiteral("pages"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("Proceedings"), QString(), i18n("Conference or Workshop Proceedings"), {QStringLiteral("title"), QStringLiteral("year")}, {QStringLiteral("editor"), QStringLiteral("volume^number"), QStringLiteral("series"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("TechReport"), QString(), i18n("Technical Report"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("institution"), QStringLiteral("year")}, {QStringLiteral("type"), QStringLiteral("number"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("Misc"), QString(), i18n("Miscellaneous"), {}, {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("howpublished"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("Book"), QString(), i18n("Book"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("publisher"), QStringLiteral("year")}, {QStringLiteral("volume^number"), QStringLiteral("series"), QStringLiteral("address"), QStringLiteral("edition"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("InBook"), QString(), i18n("Part of a Book"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("chapter|pages"), QStringLiteral("publisher"), QStringLiteral("year")}, {QStringLiteral("volume^number"), QStringLiteral("series"), QStringLiteral("type"), QStringLiteral("address"), QStringLiteral("edition"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("InCollection"), QString(), i18n("Part of a Book with own Title"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("publisher"), QStringLiteral("year")}, {QStringLiteral("editor"), QStringLiteral("volume^number"), QStringLiteral("series"), QStringLiteral("type"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("address"), QStringLiteral("edition"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("PhDThesis"), QString(), i18n("PhD Thesis"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("school"), QStringLiteral("year")}, {QStringLiteral("type"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("MastersThesis"), QString(), i18n("Master's Thesis"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("school"), QStringLiteral("year")}, {QStringLiteral("type"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("Unpublished"), QString(), i18n("Unpublished Material"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("note")}, {QStringLiteral("month"), QStringLiteral("year")}} << EntryDescription {QStringLiteral("Manual"), QString(), i18n("Manual"), {QStringLiteral("title")}, {QStringLiteral("author"), QStringLiteral("organization"), QStringLiteral("address"), QStringLiteral("edition"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("note")}} << EntryDescription {QStringLiteral("Booklet"), QString(), i18n("Booklet"), {QStringLiteral("title")}, {QStringLiteral("author"), QStringLiteral("howpublished"), QStringLiteral("address"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("note")}}; const QVector entryDescriptionsBibLaTeX = QVector() << EntryDescription {QStringLiteral("Article"), QString(), i18n("Journal Article"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("journaltitle"), QStringLiteral("year^date")}, {QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("journalsubtitle"), QStringLiteral("issuetitle"), QStringLiteral("issuesubtitle"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("series"), QStringLiteral("volume"), QStringLiteral("number"), QStringLiteral("eid"), QStringLiteral("issue"), QStringLiteral("month"), QStringLiteral("pages"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("issn"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Book"), QString(), i18n("Book"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("MVBook"), QString(), i18n("Multi-volume Book"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("InBook"), QString(), i18n("Part of a Book"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("bookauthor"), QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("BookInBook"), QString(), i18n("Former Monograph as Part of a Book"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("bookauthor"), QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("SuppBook"), QString(), i18n("Supplemental Material in a Book"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("bookauthor"), QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Booklet"), QString(), i18n("Booklet"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("howpublished"), QStringLiteral("type"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Collection"), QString(), i18n("Single-volume Collection"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("MVCollection"), QString(), i18n("Multi-volume Collection"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("InCollection"), QString(), i18n("Part of a Book with own Title"), {QStringLiteral("author"), QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("SuppCollection"), QString(), i18n("Supplemental Material in a Collection"), {QStringLiteral("author"), QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Manual"), QString(), i18n("Manual"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("edition"), QStringLiteral("type"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Misc"), QString(), i18n("Miscellaneous"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("howpublished"), QStringLiteral("type"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("location"), QStringLiteral("date"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Online"), QStringLiteral("Electronic"), i18n("Online Resource"), {QStringLiteral("author^editor"), QStringLiteral("title"), QStringLiteral("year^date"), QStringLiteral("url")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("date"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Patent"), QString(), i18n("Patent"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("number"), QStringLiteral("year^date")}, {QStringLiteral("holder"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("type"), QStringLiteral("version"), QStringLiteral("location"), QStringLiteral("note"), QStringLiteral("date"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Periodical"), QString(), i18n("Periodical (Complete Issue)"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("subtitle"), QStringLiteral("issuetitle"), QStringLiteral("issuesubtitle"), QStringLiteral("language"), QStringLiteral("series"), QStringLiteral("volume"), QStringLiteral("number"), QStringLiteral("issue"), QStringLiteral("date"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("note"), QStringLiteral("issn"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("SuppPeriodical"), QString(), i18n("Supplemental Material in a Periodical"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("journaltitle"), QStringLiteral("year^date")}, {QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("editor"), QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("journalsubtitle"), QStringLiteral("issuetitle"), QStringLiteral("issuesubtitle"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("series"), QStringLiteral("volume"), QStringLiteral("number"), QStringLiteral("eid"), QStringLiteral("issue"), QStringLiteral("month"), QStringLiteral("pages"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("issn"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Proceedings"), QString(), i18n("Conference or Workshop Proceedings"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("eventtitle"), QStringLiteral("eventdate"), QStringLiteral("venue"), QStringLiteral("language"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("MVProceedings"), QString(), i18n("Multi-volume Proceedings"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("eventtitle"), QStringLiteral("eventdate"), QStringLiteral("venue"), QStringLiteral("language"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("InProceedings"), QStringLiteral("Conference"), i18n("Publication in Conference Proceedings"), {QStringLiteral(" author"), QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("eventtitle"), QStringLiteral("eventdate"), QStringLiteral("venue"), QStringLiteral("language"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("organization"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Reference"), QString(), i18n("Single-volume Reference (e.g. Encyclopedia)"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("MVReference"), QString(), i18n("Multi-volume Reference (e.g. Encyclopedia)"), {QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("InReference"), QString(), i18n("Part of a Reference"), {QStringLiteral("author"), QStringLiteral("editor"), QStringLiteral("title"), QStringLiteral("booktitle"), QStringLiteral("year^date")}, {QStringLiteral("editora"), QStringLiteral("editorb"), QStringLiteral("editorc"), QStringLiteral("translator"), QStringLiteral("annotator"), QStringLiteral("commentator"), QStringLiteral("introduction"), QStringLiteral("foreword"), QStringLiteral("afterword"), QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("maintitle"), QStringLiteral("mainsubtitle"), QStringLiteral("maintitleaddon"), QStringLiteral("booksubtitle"), QStringLiteral("booktitleaddon"), QStringLiteral("language"), QStringLiteral("origlanguage"), QStringLiteral("volume"), QStringLiteral("part"), QStringLiteral("edition"), QStringLiteral("volumes"), QStringLiteral("series"), QStringLiteral("number"), QStringLiteral("note"), QStringLiteral("publisher"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Report"), QString(), i18n("Report"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("type"), QStringLiteral("institution"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("number"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isrn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Thesis"), QString(), i18n("Thesis"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("type"), QStringLiteral("institution"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("Unpublished"), QString(), i18n("Unpublished Material"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("language"), QStringLiteral("howpublished"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("isbn"), QStringLiteral("date"), QStringLiteral("month"), QStringLiteral("year"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("MastersThesis"), QString(), i18n("Master's Thesis"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("institution"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("type"), QStringLiteral("language"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("PhDThesis"), QString(), i18n("PhD Thesis"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("institution"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("type"), QStringLiteral("language"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isbn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}} << EntryDescription {QStringLiteral("TechReport"), QString(), i18n("Technical Report"), {QStringLiteral("author"), QStringLiteral("title"), QStringLiteral("institution"), QStringLiteral("year^date")}, {QStringLiteral("subtitle"), QStringLiteral("titleaddon"), QStringLiteral("type"), QStringLiteral("language"), QStringLiteral("number"), QStringLiteral("version"), QStringLiteral("note"), QStringLiteral("location"), QStringLiteral("month"), QStringLiteral("isrn"), QStringLiteral("chapter"), QStringLiteral("pages"), QStringLiteral("pagetotal"), QStringLiteral("addendum"), QStringLiteral("pubstate"), QStringLiteral("doi"), QStringLiteral("eprint"), QStringLiteral("eprintclass"), QStringLiteral("eprinttype"), QStringLiteral("url"), QStringLiteral("urldate")}}; BibTeXEntries *BibTeXEntries::BibTeXEntriesPrivate::singleton = nullptr; BibTeXEntries::BibTeXEntries(const QVector &other) : QVector(other), d(new BibTeXEntriesPrivate()) { /// nothing } BibTeXEntries::~BibTeXEntries() { delete d; } const BibTeXEntries *BibTeXEntries::self() { if (BibTeXEntriesPrivate::singleton == nullptr) { KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, QStringLiteral("User Interface")); const QString stylefile = configGroup.readEntry("CurrentStyle", "bibtex"); BibTeXEntriesPrivate::singleton = stylefile == QStringLiteral("biblatex") ? new BibTeXEntries(entryDescriptionsBibLaTeX) : new BibTeXEntries(entryDescriptionsBibTeX); } return BibTeXEntriesPrivate::singleton; } QString BibTeXEntries::format(const QString &name, KBibTeX::Casing casing) const { QString iName = name.toLower(); switch (casing) { case KBibTeX::cLowerCase: return iName; case KBibTeX::cUpperCase: return name.toUpper(); case KBibTeX::cInitialCapital: iName[0] = iName[0].toUpper(); return iName; case KBibTeX::cLowerCamelCase: { for (const auto &ed : const_cast(*this)) { /// configuration file uses camel-case QString itName = ed.upperCamelCase.toLower(); if (itName == iName) { iName = ed.upperCamelCase; break; } } /// make an educated guess how camel-case would look like iName[0] = iName[0].toLower(); return iName; } case KBibTeX::cUpperCamelCase: { for (const auto &ed : const_cast(*this)) { /// configuration file uses camel-case QString itName = ed.upperCamelCase.toLower(); if (itName == iName) { iName = ed.upperCamelCase; break; } } /// make an educated guess how camel-case would look like iName[0] = iName[0].toUpper(); return iName; } } return name; } QString BibTeXEntries::label(const QString &name) const { const QString iName = name.toLower(); for (const auto &ed : const_cast(*this)) { /// Configuration file uses camel-case, convert this to lower case for faster comparison QString itName = ed.upperCamelCase.toLower(); if (itName == iName || (!(itName = ed.upperCamelCaseAlt.toLower()).isEmpty() && itName == iName)) return ed.label; } return QString(); } kbibtex-0.8.1/src/config/bibtexentries.h000066400000000000000000000057041331300026200202200ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_CONFIG_BIBTEXENTRIES_H #define KBIBTEX_CONFIG_BIBTEXENTRIES_H #include "kbibtexconfig_export.h" #include #include #include "kbibtex.h" typedef struct { QString upperCamelCase; QString upperCamelCaseAlt; QString label; QStringList requiredItems; QStringList optionalItems; } EntryDescription; bool operator==(const EntryDescription &a, const EntryDescription &b); uint qHash(const EntryDescription &a); /** @author Thomas Fischer */ class KBIBTEXCONFIG_EXPORT BibTeXEntries : public QVector { public: virtual ~BibTeXEntries(); /** * Only one instance of this class has to be used * @return the class's singleton */ static const BibTeXEntries *self(); /** * Change the casing of a given entry name to one of the predefine formats. * */ /** * Change the casing of a given entry name to one of the predefine formats. * @param name entry name to format * @param casing can be any of the predefined formats such as lower camel case or upper case * @return returns the formatted entry name if possible or the "name" parameter's value as fall-back */ QString format(const QString &name, KBibTeX::Casing casing) const; /** * Returns the given entry name's i18n'ized, human-readable label, * for example "Journal Article" for entry name "article". * @param name entry name to look up the label for * @return the label for the entry if available, else an empty string */ QString label(const QString &name) const; private: BibTeXEntries(const QVector &other); class BibTeXEntriesPrivate; BibTeXEntriesPrivate *d; }; #endif // KBIBTEX_CONFIG_BIBTEXENTRIES_H kbibtex-0.8.1/src/config/bibtexfields.cpp000066400000000000000000001157721331300026200203570ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "bibtexfields.h" #include #include #ifdef HAVE_KF5 #include #include #include #endif // HAVE KF5 #include "logging_config.h" bool operator==(const FieldDescription &a, const FieldDescription &b) { return a.upperCamelCase == b.upperCamelCase; } uint qHash(const FieldDescription &a) { return qHash(a.upperCamelCase); } class BibTeXFields::BibTeXFieldsPrivate { public: static const QVector fieldDescriptionsBibTeX; static const QVector fieldDescriptionsBibLaTeX; BibTeXFields *p; #ifdef HAVE_KF5 KSharedConfigPtr layoutConfig; #endif // HAVE_KF5 static BibTeXFields *singleton; static const QStringList treeViewNames; BibTeXFieldsPrivate(BibTeXFields *parent) : p(parent) { #ifdef HAVE_KF5 KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, QStringLiteral("User Interface")); const QString stylefile = configGroup.readEntry(QStringLiteral("CurrentStyle"), QString(QStringLiteral("bibtex"))).append(QStringLiteral(".kbstyle")); layoutConfig = KSharedConfig::openConfig(stylefile, KConfig::FullConfig, QStandardPaths::AppDataLocation); if (layoutConfig->groupList().isEmpty()) qCWarning(LOG_KBIBTEX_CONFIG) << "The configuration file for BibTeX fields could not be located or is empty:" << stylefile; #endif // HAVE_KF5 } #ifdef HAVE_KF5 void load() { for (BibTeXFields::Iterator it = p->begin(); it != p->end(); ++it) { auto &fd = *it; const QString groupName = QStringLiteral("Column") + fd.upperCamelCase + fd.upperCamelCaseAlt; KConfigGroup configGroup(layoutConfig, groupName); fd.visible.clear(); if (configGroup.exists()) { for (const QString &treeViewName : treeViewNames) { const QString key = QStringLiteral("Visible_") + treeViewName; if (configGroup.hasKey(key)) fd.visible.insert(treeViewName, configGroup.readEntry(key, fd.defaultVisible)); } } } } void save() { for (const auto &fd : const_cast(*p)) { const QString groupName = QStringLiteral("Column") + fd.upperCamelCase + fd.upperCamelCaseAlt; KConfigGroup configGroup(layoutConfig, groupName); const QList keys = fd.visible.keys(); for (const QString &treeViewName : keys) { const QString key = QStringLiteral("Visible_") + treeViewName; configGroup.writeEntry(key, fd.visible.value(treeViewName, fd.defaultVisible)); } } layoutConfig->sync(); } void resetToDefaults(const QString &treeViewName) { for (BibTeXFields::Iterator it = p->begin(); it != p->end(); ++it) { const QString groupName = QStringLiteral("Column") + it->upperCamelCase + it->upperCamelCaseAlt; KConfigGroup configGroup(layoutConfig, groupName); configGroup.deleteEntry("Visible_" + treeViewName); } layoutConfig->sync(); load(); } #endif // HAVE_KF5 }; const QStringList BibTeXFields::BibTeXFieldsPrivate::treeViewNames = QStringList() << QStringLiteral("SearchResults") << QStringLiteral("Main") << QStringLiteral("MergeWidget") << QStringLiteral("Zotero"); /// awk -F '=' 'BEGIN {TypeIndependent="false";DefaultVisible="true"} /^\[/ && DefaultWidth!="" {print "<< FieldDescription{QStringLiteral(\""UpperCamelCase"\"), QStringLiteral(\""UpperCamelCaseAlt"\"), i18n(\""Label"\"),"TypeFlags",{},"DefaultWidth",{},"DefaultVisible","TypeIndependent"}" ; DefaultWidth="" ; TypeIndependent="false" ; DefaultVisible="true"} $1=="UpperCamelCase" {UpperCamelCase=$2;UpperCamelCaseAlt=""} $1=="UpperCamelCaseAlt" {UpperCamelCaseAlt=$2} $1=="Label" {Label=$2} $1=="TypeFlags" {TypeFlags=$2} $1=="DefaultWidth" {DefaultWidth=$2} $1=="Visible" {DefaultVisible=$2} $1=="TypeIndependent" {TypeIndependent=$2}' fieldDescriptionsBibTeX = QVector() << FieldDescription {QStringLiteral("^type"), QString(), i18n("Element Type"), KBibTeX::tfSource, KBibTeX::tfSource, 5, {}, true, true} << FieldDescription {QStringLiteral("^id"), QString(), i18n("Identifier"), KBibTeX::tfSource, KBibTeX::tfSource, 6, {}, true, true} << FieldDescription {QStringLiteral("Title"), QString(), i18n("Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("Title"), QStringLiteral("BookTitle"), i18n("Title or Book Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, true, false} << FieldDescription {QStringLiteral("Author"), QStringLiteral("Editor"), i18n("Author or Editor"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 7, {}, true, false} << FieldDescription {QStringLiteral("Author"), QString(), i18n("Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Editor"), QString(), i18n("Editor"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Month"), QString(), i18n("Month"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("Year"), QString(), i18n("Year"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, true, false} << FieldDescription {QStringLiteral("Journal"), QString(), i18n("Journal"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("Volume"), QString(), i18n("Volume"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Number"), QString(), i18n("Number"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("ISSN"), QString(), i18n("ISSN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("ISBN"), QString(), i18n("ISBN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("ISBN"), QStringLiteral("ISSN"), i18n("ISBN or ISSN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("HowPublished"), QString(), i18n("How Published"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Note"), QString(), i18n("Note"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Abstract"), QString(), i18n("Abstract"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 7, {}, false, true} << FieldDescription {QStringLiteral("Pages"), QString(), i18n("Pages"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, true, false} << FieldDescription {QStringLiteral("Publisher"), QString(), i18n("Publisher"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Institution"), QString(), i18n("Institution"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("BookTitle"), QString(), i18n("Book Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("Series"), QString(), i18n("Series"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 12, {}, false, false} << FieldDescription {QStringLiteral("Edition"), QString(), i18n("Edition"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Chapter"), QString(), i18n("Chapter"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Organization"), QString(), i18n("Organization"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("School"), QString(), i18n("School"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Keywords"), QString(), i18n("Keywords"), KBibTeX::tfKeyword, KBibTeX::tfKeyword | KBibTeX::tfSource, 3, {}, false, true} << FieldDescription {QStringLiteral("CrossRef"), QString(), i18n("Cross Reference"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, true} << FieldDescription {QStringLiteral("DOI"), QString(), i18n("DOI"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 1, {}, false, true} << FieldDescription {QStringLiteral("URL"), QString(), i18n("URL"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, true} << FieldDescription {QStringLiteral("Address"), QString(), i18n("Address"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("Location"), QString(), i18n("Location"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("Type"), QString(), i18n("Type"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Key"), QString(), i18n("Key"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("X-Color"), QString(), i18n("Color"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("X-Stars"), QString(), i18n("Stars"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim | KBibTeX::tfSource, 4, {}, false, true}; const QVector fieldDescriptionsBibLaTeX = QVector() << FieldDescription {QStringLiteral("^type"), QString(), i18n("Element Type"), KBibTeX::tfSource, KBibTeX::tfSource, 5, {}, true, true} << FieldDescription {QStringLiteral("^id"), QString(), i18n("Identifier"), KBibTeX::tfSource, KBibTeX::tfSource, 6, {}, true, true} << FieldDescription {QStringLiteral("Title"), QString(), i18n("Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("Title"), QStringLiteral("BookTitle"), i18n("Title or Book Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, true, false} << FieldDescription {QStringLiteral("SubTitle"), QString(), i18n("Subtitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("TitleAddon"), QString(), i18n("Title Addon"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("ShortTitle"), QString(), i18n("Shortitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("OrigTitle"), QString(), i18n("Original Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ReprintTitle"), QString(), i18n("Reprint Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("MainTitle"), QString(), i18n("Main Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("MainSubTitle"), QString(), i18n("Main Subtitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("MainTitleAddon"), QString(), i18n("Maintitle Addon"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("Author"), QStringLiteral("Editor"), i18n("Author or Editor"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 7, {}, true, false} << FieldDescription {QStringLiteral("Author"), QString(), i18n("Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("ShortAuthor"), QString(), i18n("Short Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("NameAddon"), QString(), i18n("Name Addon"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("AuthorType"), QString(), i18n("Author Type"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("BookAuthor"), QString(), i18n("Book Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Editor"), QString(), i18n("Editor"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("ShortEditor"), QString(), i18n("Short Editor"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorType"), QString(), i18n("Editor Type"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorA"), QString(), i18n("Editor A"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorAType"), QString(), i18n("Editor A Type"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorB"), QString(), i18n("Editor B"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorBType"), QString(), i18n("Editor B Type"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorC"), QString(), i18n("Editor C"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("EditorCType"), QString(), i18n("Editor C Type"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Translator"), QString(), i18n("Translator"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Afterword"), QString(), i18n("Afterword Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Introduction"), QString(), i18n("Introduction Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Foreword"), QString(), i18n("Foreword Author"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Annotator"), QString(), i18n("Annotator"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Commentator"), QString(), i18n("Commentator"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Holder"), QString(), i18n("Patent Holder"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("Month"), QString(), i18n("Month"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("Year"), QString(), i18n("Year"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Date"), QString(), i18n("Date"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("EventDate"), QString(), i18n("Event Date"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("OrigDate"), QString(), i18n("Original Date"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Year"), QStringLiteral("Date"), i18n("Date or Year"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, true, false} << FieldDescription {QStringLiteral("JournalTitle"), QString(), i18n("Journal Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("JournalSubTitle"), QString(), i18n("Journal Subtitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("ShortJournal"), QString(), i18n("Journal Shortitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("Volume"), QString(), i18n("Volume"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Volumes"), QString(), i18n("Number of Volumes"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Number"), QString(), i18n("Number"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Version"), QString(), i18n("Version"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Part"), QString(), i18n("Part"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Issue"), QString(), i18n("Issue"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("IASN"), QString(), i18n("IASN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISMN"), QString(), i18n("ISMN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISRN"), QString(), i18n("ISRN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISSN"), QString(), i18n("ISSN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISBN"), QString(), i18n("ISBN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISBN"), QStringLiteral("ISSN"), i18n("ISBN or ISSN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("ISWC"), QString(), i18n("ISWC"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("HowPublished"), QString(), i18n("How Published"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Note"), QString(), i18n("Note"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Addendum"), QString(), i18n("Addendum"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Annotation"), QString(), i18n("Annotation"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("Abstract"), QString(), i18n("Abstract"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 7, {}, false, true} << FieldDescription {QStringLiteral("Pages"), QString(), i18n("Pages"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, true, false} << FieldDescription {QStringLiteral("PageTotal"), QString(), i18n("Total Pages"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Pagination"), QString(), i18n("Pagination"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("BookPagination"), QString(), i18n("Book Pagination"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Publisher"), QString(), i18n("Publisher"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("OrigPublisher"), QString(), i18n("Original Publisher"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Institution"), QString(), i18n("Institution"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 5, {}, false, false} << FieldDescription {QStringLiteral("BookTitle"), QString(), i18n("Book Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("BookSubTitle"), QString(), i18n("Book Subtitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("IssueTitle"), QString(), i18n("Issue Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("IssueSubTitle"), QString(), i18n("Issue Subtitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("BookTitleAddon"), QString(), i18n("Booktitle Addon"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 14, {}, false, false} << FieldDescription {QStringLiteral("Series"), QString(), i18n("Series"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 12, {}, false, false} << FieldDescription {QStringLiteral("ShortSeries"), QString(), i18n("Series Shortitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 4, {}, false, false} << FieldDescription {QStringLiteral("Edition"), QString(), i18n("Edition"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Chapter"), QString(), i18n("Chapter"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 1, {}, false, false} << FieldDescription {QStringLiteral("Organization"), QString(), i18n("Organization"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Institution"), QStringLiteral("School"), i18n("Institution"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("EventTitle"), QString(), i18n("Event Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Venue"), QString(), i18n("Venue"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("IndexTitle"), QString(), i18n("Index Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Keywords"), QString(), i18n("Keywords"), KBibTeX::tfKeyword, KBibTeX::tfKeyword | KBibTeX::tfSource, 3, {}, false, true} << FieldDescription {QStringLiteral("CrossRef"), QString(), i18n("Cross Reference"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, true} << FieldDescription {QStringLiteral("XRef"), QString(), i18n("XRef"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, true} << FieldDescription {QStringLiteral("DOI"), QString(), i18n("DOI"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 1, {}, false, false} << FieldDescription {QStringLiteral("EPrint"), QString(), i18n("E-Print"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 1, {}, false, false} << FieldDescription {QStringLiteral("EPrintClass"), QString(), i18n("E-Print Class"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("EPrintType"), QString(), i18n("E-Print Type"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("URL"), QString(), i18n("URL"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, false} << FieldDescription {QStringLiteral("URLDate"), QString(), i18n("URL Date"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("File"), QStringLiteral("PDF"), i18n("Local File URL"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, 3, {}, false, true} << FieldDescription {QStringLiteral("Location"), QStringLiteral("Address"), i18n("Location"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false} << FieldDescription {QStringLiteral("OrigLocation"), QString(), i18n("Original Location"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Type"), QString(), i18n("Type"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("EID"), QString(), i18n("EID"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("SortKey"), QStringLiteral("Key"), i18n("Sort Key"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Label"), QString(), i18n("Label"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("ShortHand"), QString(), i18n("Shorthand"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("ShortHandIntro"), QString(), i18n("Shorthand Intro"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("PubState"), QString(), i18n("Publication State"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Language"), QString(), i18n("Language"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("OrigLanguage"), QString(), i18n("Original Language"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Library"), QString(), i18n("Library"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("X-Color"), QString(), i18n("Color"), KBibTeX::tfVerbatim, KBibTeX::tfVerbatim | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Gender"), QString(), i18n("Gender"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Hyphenation"), QString(), i18n("Hyphenation"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("IndexSortTitle"), QString(), i18n("Index Sorttitle"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Options"), QString(), i18n("Entry Options"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("Presort"), QString(), i18n("Presort"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("SortKey"), QString(), i18n("Sort Key"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("SortName"), QString(), i18n("Sort Names"), KBibTeX::tfPerson, KBibTeX::tfPerson | KBibTeX::tfReference, 7, {}, false, false} << FieldDescription {QStringLiteral("SortShortHand"), QString(), i18n("Sort Shorthand"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("SortTitle"), QString(), i18n("Sort Title"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("SortYear"), QString(), i18n("Sort Year"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, true} << FieldDescription {QStringLiteral("ISAN"), QString(), i18n("ISAN"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 2, {}, false, false} << FieldDescription {QStringLiteral("Location"), QString(), i18n("Location"), KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfReference | KBibTeX::tfSource, 3, {}, false, false}; BibTeXFields *BibTeXFields::BibTeXFieldsPrivate::singleton = nullptr; BibTeXFields::BibTeXFields(const QVector &other) : QVector(other), d(new BibTeXFieldsPrivate(this)) { #ifdef HAVE_KF5 d->load(); #endif // HAVE_KF5 } BibTeXFields::~BibTeXFields() { delete d; } BibTeXFields *BibTeXFields::self() { if (BibTeXFieldsPrivate::singleton == nullptr) { KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, QStringLiteral("User Interface")); const QString stylefile = configGroup.readEntry("CurrentStyle", "bibtex"); BibTeXFieldsPrivate::singleton = stylefile == QStringLiteral("biblatex") ? new BibTeXFields(fieldDescriptionsBibLaTeX) : new BibTeXFields(fieldDescriptionsBibTeX); } return BibTeXFieldsPrivate::singleton; } #ifdef HAVE_KF5 void BibTeXFields::save() { d->save(); } void BibTeXFields::resetToDefaults(const QString &treeViewName) { d->resetToDefaults(treeViewName); } #endif // HAVE_KF5 QString BibTeXFields::format(const QString &name, KBibTeX::Casing casing) const { QString iName = name.toLower(); switch (casing) { case KBibTeX::cLowerCase: return iName; case KBibTeX::cUpperCase: return name.toUpper(); case KBibTeX::cInitialCapital: iName[0] = iName[0].toUpper(); return iName; case KBibTeX::cLowerCamelCase: { for (const auto &fd : const_cast(*this)) { /// configuration file uses camel-case QString itName = fd.upperCamelCase.toLower(); if (itName == iName && fd.upperCamelCaseAlt.isEmpty()) { iName = fd.upperCamelCase; break; } } /// make an educated guess how camel-case would look like iName[0] = iName[0].toLower(); return iName; } case KBibTeX::cUpperCamelCase: { for (const auto &fd : const_cast(*this)) { /// configuration file uses camel-case QString itName = fd.upperCamelCase.toLower(); if (itName == iName && fd.upperCamelCaseAlt.isEmpty()) { iName = fd.upperCamelCase; break; } } /// make an educated guess how camel-case would look like iName[0] = iName[0].toUpper(); return iName; } } return name; } const FieldDescription BibTeXFields::find(const QString &name) const { const QString iName = name.toLower(); for (const auto &fd : const_cast(*this)) { if (fd.upperCamelCase.toLower() == iName && fd.upperCamelCaseAlt.isEmpty()) return fd; } qCWarning(LOG_KBIBTEX_CONFIG) << "No field description for " << name << "(" << iName << ")"; return FieldDescription {QString(), QString(), QString(), KBibTeX::tfSource, KBibTeX::tfSource, 0, {}, false, false}; } KBibTeX::TypeFlag BibTeXFields::typeFlagFromString(const QString &typeFlagString) { KBibTeX::TypeFlag result = (KBibTeX::TypeFlag)0; if (typeFlagString == QStringLiteral("Text")) result = KBibTeX::tfPlainText; else if (typeFlagString == QStringLiteral("Source")) result = KBibTeX::tfSource; else if (typeFlagString == QStringLiteral("Person")) result = KBibTeX::tfPerson; else if (typeFlagString == QStringLiteral("Keyword")) result = KBibTeX::tfKeyword; else if (typeFlagString == QStringLiteral("Reference")) result = KBibTeX::tfReference; else if (typeFlagString == QStringLiteral("Verbatim")) result = KBibTeX::tfVerbatim; return result; } KBibTeX::TypeFlags BibTeXFields::typeFlagsFromString(const QString &typeFlagsString) { KBibTeX::TypeFlags result; const QStringList list = typeFlagsString.split(';'); for (const QString &s : list) result |= typeFlagFromString(s); return result; } QString BibTeXFields::typeFlagsToString(KBibTeX::TypeFlags typeFlags) { QStringList resultList; if (typeFlags & KBibTeX::tfPlainText) resultList << QStringLiteral("Text"); if (typeFlags & KBibTeX::tfSource) resultList << QStringLiteral("Source"); if (typeFlags & KBibTeX::tfPerson) resultList << QStringLiteral("Person"); if (typeFlags & KBibTeX::tfKeyword) resultList << QStringLiteral("Keyword"); if (typeFlags & KBibTeX::tfReference) resultList << QStringLiteral("Reference"); if (typeFlags & KBibTeX::tfVerbatim) resultList << QStringLiteral("Verbatim"); return resultList.join(QChar(';')); } QString BibTeXFields::typeFlagToString(KBibTeX::TypeFlag typeFlag) { if (typeFlag == KBibTeX::tfPlainText) return QStringLiteral("Text"); if (typeFlag == KBibTeX::tfSource) return QStringLiteral("Source"); if (typeFlag == KBibTeX::tfPerson) return QStringLiteral("Person"); if (typeFlag == KBibTeX::tfKeyword) return QStringLiteral("Keyword"); if (typeFlag == KBibTeX::tfReference) return QStringLiteral("Reference"); if (typeFlag == KBibTeX::tfVerbatim) return QStringLiteral("Verbatim"); return QString(); } kbibtex-0.8.1/src/config/bibtexfields.h000066400000000000000000000057131331300026200200150ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_CONFIG_BIBTEXFIELDS_H #define KBIBTEX_CONFIG_BIBTEXFIELDS_H #include "kbibtexconfig_export.h" #include #include #include "kbibtex.h" typedef struct { QString upperCamelCase; QString upperCamelCaseAlt; QString label; KBibTeX::TypeFlag preferredTypeFlag; KBibTeX::TypeFlags typeFlags; int defaultWidth; QMap visible; bool defaultVisible; bool typeIndependent; } FieldDescription; bool operator==(const FieldDescription &a, const FieldDescription &b); uint qHash(const FieldDescription &a); /** @author Thomas Fischer */ class KBIBTEXCONFIG_EXPORT BibTeXFields : public QVector { public: BibTeXFields(const BibTeXFields &other) = delete; BibTeXFields &operator= (const BibTeXFields &other) = delete; ~BibTeXFields(); /** * Only one instance of this class has to be used * @return the class's singleton */ static BibTeXFields *self(); #ifdef HAVE_KF5 void save(); void resetToDefaults(const QString &treeViewName); #endif // HAVE_KF5 /** * Change the casing of a given field name to one of the predefine formats. */ QString format(const QString &name, KBibTeX::Casing casing) const; static KBibTeX::TypeFlag typeFlagFromString(const QString &typeFlagString); static KBibTeX::TypeFlags typeFlagsFromString(const QString &typeFlagsString); static QString typeFlagToString(KBibTeX::TypeFlag typeFlag); static QString typeFlagsToString(KBibTeX::TypeFlags typeFlags); const FieldDescription find(const QString &name) const; private: BibTeXFields(const QVector &other); class BibTeXFieldsPrivate; BibTeXFieldsPrivate *d; }; #endif // KBIBTEX_CONFIG_BIBTEXFIELDS_H kbibtex-0.8.1/src/config/logging_config.cpp000066400000000000000000000024501331300026200206520ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "logging_config.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_CONFIG, "kbibtex.config") kbibtex-0.8.1/src/config/logging_config.h000066400000000000000000000026321331300026200203210ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_CONFIG_LOGGING_CONFIG_H #define KBIBTEX_CONFIG_LOGGING_CONFIG_H #include Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_CONFIG) #endif // KBIBTEX_CONFIG_LOGGING_CONFIG_H kbibtex-0.8.1/src/config/notificationhub.cpp000066400000000000000000000100641331300026200210640ustar00rootroot00000000000000/***************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * *****************************************************************************/ #include "notificationhub.h" #include #include "logging_config.h" NotificationListener::~NotificationListener() { NotificationHub::unregisterNotificationListener(this); } class NotificationHub::NotificationHubPrivate { private: // UNUSED NotificationHub *p; public: static NotificationHub *singleton; QHash > listenersPerEventId; QSet allListeners; NotificationHubPrivate(NotificationHub *) { /// nothing } }; NotificationHub::NotificationHub() : d(new NotificationHubPrivate(this)) { /// nothing } NotificationHub::~NotificationHub() { delete d; } NotificationHub *NotificationHub::getHub() { if (NotificationHub::NotificationHubPrivate::singleton == nullptr) NotificationHub::NotificationHubPrivate::singleton = new NotificationHub(); return NotificationHub::NotificationHubPrivate::singleton; } void NotificationHub::registerNotificationListener(NotificationListener *listener, int eventId) { NotificationHub::NotificationHubPrivate *d = getHub()->d; if (eventId != EventAny) { QSet< NotificationListener *> set = d->listenersPerEventId.value(eventId, QSet()); set.insert(listener); } d->allListeners.insert(listener); } void NotificationHub::unregisterNotificationListener(NotificationListener *listener, int eventId) { NotificationHub::NotificationHubPrivate *d = getHub()->d; if (eventId == EventAny) { for (QHash >::Iterator it = d->listenersPerEventId.begin(); it != d->listenersPerEventId.end(); ++it) it.value().remove(listener); } else { QSet< NotificationListener *> set = d->listenersPerEventId.value(eventId, QSet()); set.remove(listener); } d->allListeners.remove(listener); } void NotificationHub::publishEvent(int eventId) { NotificationHub::NotificationHubPrivate *d = getHub()->d; if (eventId >= 0) { qCDebug(LOG_KBIBTEX_CONFIG) << "Notifying about event" << eventId; QSet< NotificationListener *> set(d->listenersPerEventId.value(eventId, QSet())); for (NotificationListener *listener : const_cast &>(d->allListeners)) { set.insert(listener); } for (NotificationListener *listener : const_cast &>(set)) { listener->notificationEvent(eventId); } } } const int NotificationHub::EventAny = -1; const int NotificationHub::EventConfigurationChanged = 0; const int NotificationHub::EventUserDefined = 1024; NotificationHub *NotificationHub::NotificationHubPrivate::singleton = nullptr; kbibtex-0.8.1/src/config/notificationhub.h000066400000000000000000000047211331300026200205340ustar00rootroot00000000000000/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * *****************************************************************************/ #ifndef CONFIG_NOTIFICATIONHUB_H #define CONFIG_NOTIFICATIONHUB_H #include "kbibtexconfig_export.h" /** * @author Thomas Fischer */ class KBIBTEXCONFIG_EXPORT NotificationListener { public: virtual void notificationEvent(int eventId) = 0; virtual ~NotificationListener(); }; /** * @author Thomas Fischer */ class KBIBTEXCONFIG_EXPORT NotificationHub { public: NotificationHub(const NotificationHub &other) = delete; NotificationHub &operator= (const NotificationHub &other) = delete; ~NotificationHub(); static const int EventAny; static const int EventConfigurationChanged; static const int EventUserDefined; static void registerNotificationListener(NotificationListener *listener, int eventId = NotificationHub::EventAny); static void unregisterNotificationListener(NotificationListener *listener, int eventId = NotificationHub::EventAny); static void publishEvent(int eventId); private: class NotificationHubPrivate; NotificationHubPrivate *d; static NotificationHub *getHub(); NotificationHub(); }; #endif // CONFIG_NOTIFICATIONHUB_H kbibtex-0.8.1/src/data/000077500000000000000000000000001331300026200146365ustar00rootroot00000000000000kbibtex-0.8.1/src/data/CMakeLists.txt000066400000000000000000000021531331300026200173770ustar00rootroot00000000000000# KBibTeXData library set( kbibtexdata_LIB_SRCS comment.cpp element.cpp entry.cpp file.cpp macro.cpp preamble.cpp value.cpp models/filemodel.cpp ${CMAKE_SOURCE_DIR}/src/global/kbibtex.cpp ${CMAKE_SOURCE_DIR}/src/global/preferences.cpp logging_data.cpp ) set( kbibtexdata_HDRS comment.h element.h entry.h file.h macro.h preamble.h value.h models/filemodel.h ) if(UNITY_BUILD) enable_unity_build(kbibtexdata kbibtexdata_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/global ) add_library( kbibtexdata SHARED ${kbibtexdata_LIB_SRCS} ) target_link_libraries( kbibtexdata Qt5::Core Qt5::Widgets KF5::I18n KF5::XmlGui kbibtexconfig ) set_target_properties( kbibtexdata PROPERTIES EXPORT_NAME "kbibtexdata" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexdata ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexdata ) kbibtex-0.8.1/src/data/comment.cpp000066400000000000000000000050411331300026200170040ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "comment.h" #include #include #include #include /** * Private class to store internal variables that should not be visible * in the interface as defined in the header file. */ class Comment::CommentPrivate { public: QString text; bool useCommand; }; Comment::Comment(const QString &text, bool useCommand) : Element(), d(new Comment::CommentPrivate) { d->text = text; d->useCommand = useCommand; } Comment::Comment(const Comment &other) : Element(), d(new Comment::CommentPrivate) { d->text = other.d->text; d->useCommand = other.d->useCommand; } Comment::~Comment() { delete d; } Comment &Comment::operator= (const Comment &other) { if (this != &other) { d->text = other.text(); d->useCommand = other.useCommand(); } return *this; } QString Comment::text() const { return d->text; } void Comment::setText(const QString &text) { d->text = text; } bool Comment::useCommand() const { return d->useCommand; } void Comment::setUseCommand(bool useCommand) { d->useCommand = useCommand; } bool Comment::isComment(const Element &other) { return typeid(other) == typeid(Comment); } QDebug operator<<(QDebug dbg, const Comment &comment) { dbg.nospace() << "Comment " << comment.text(); return dbg; } kbibtex-0.8.1/src/data/comment.h000066400000000000000000000065711331300026200164620ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_IO_COMMENT_H #define KBIBTEX_IO_COMMENT_H #include "element.h" /** * This class represents a comment in a BibTeX file. In BibTeX files, * everything that cannot be interpreted as a BibTeX comment is see * as a comment. Alternatively, the comment command can be used in BibTeX * files. * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Comment : public Element { Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(bool useCommand READ useCommand WRITE setUseCommand) public: /** * Create a new comment with a given text. * @param text comment's textual content * @param useCommand mark this comment to use BibTeX's comment command */ explicit Comment(const QString &text = QString(), bool useCommand = false); /** * Copy constructor cloning another comment object. * @param other comment object to clone */ Comment(const Comment &other); ~Comment() override; /** * Assignment operator, working similar to a copy constructor, * but overwrites the current object's values. */ Comment &operator= (const Comment &other); /** * Retrieve the text of this comment. * @return text of this comment */ QString text() const; /** * Set the text of this comment. * @param text text of this comment */ void setText(const QString &text); /** * Retrieve the flag whether to use BibTeX's comment command or not. * @return mark if this comment has to use BibTeX's comment command */ bool useCommand() const; /** * Set the flag whether to use BibTeX's comment command or not. * @param useCommand set if this comment has to use BibTeX's comment command */ void setUseCommand(bool useCommand); /** * Cheap and fast test if another Element is a Comment object. * @param other another Element object to test * @return true if Element is actually a Comment */ static bool isComment(const Element &other); private: class CommentPrivate; CommentPrivate *const d; }; QDebug operator<<(QDebug dbg, const Comment &comment); #endif // KBIBTEX_IO_COMMENT_H kbibtex-0.8.1/src/data/element.cpp000066400000000000000000000024711331300026200167770ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "element.h" Element::Element() { static int idCounter = 0; uniqueId = ++idCounter; } kbibtex-0.8.1/src/data/element.h000066400000000000000000000031061331300026200164400ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef BIBTEXELEMENT_H #define BIBTEXELEMENT_H #include "file.h" #include "kbibtexdata_export.h" /** * Base class for bibliographic elements in a BibTeX file. * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Element { public: Element(); virtual ~Element() { /* nothing */ } private: int uniqueId; }; #endif kbibtex-0.8.1/src/data/entry.cpp000066400000000000000000000215431331300026200165100ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "entry.h" #include #include #include "file.h" // FIXME: Check if using those constants in the program is really necessary // or can be replace by config files const QString Entry::ftAbstract = QStringLiteral("abstract"); const QString Entry::ftAddress = QStringLiteral("address"); const QString Entry::ftAuthor = QStringLiteral("author"); const QString Entry::ftBookTitle = QStringLiteral("booktitle"); const QString Entry::ftChapter = QStringLiteral("chapter"); const QString Entry::ftColor = QStringLiteral("x-color"); const QString Entry::ftComment = QStringLiteral("comment"); const QString Entry::ftCrossRef = QStringLiteral("crossref"); const QString Entry::ftDOI = QStringLiteral("doi"); const QString Entry::ftEditor = QStringLiteral("editor"); const QString Entry::ftFile = QStringLiteral("file"); const QString Entry::ftISSN = QStringLiteral("issn"); const QString Entry::ftISBN = QStringLiteral("isbn"); const QString Entry::ftJournal = QStringLiteral("journal"); const QString Entry::ftKeywords = QStringLiteral("keywords"); const QString Entry::ftLocalFile = QStringLiteral("localfile"); const QString Entry::ftLocation = QStringLiteral("location"); const QString Entry::ftMonth = QStringLiteral("month"); const QString Entry::ftNote = QStringLiteral("note"); const QString Entry::ftNumber = QStringLiteral("number"); const QString Entry::ftPages = QStringLiteral("pages"); const QString Entry::ftPublisher = QStringLiteral("publisher"); const QString Entry::ftSchool = QStringLiteral("school"); const QString Entry::ftSeries = QStringLiteral("series"); const QString Entry::ftStarRating = QStringLiteral("x-stars"); const QString Entry::ftTitle = QStringLiteral("title"); const QString Entry::ftUrl = QStringLiteral("url"); const QString Entry::ftUrlDate = QStringLiteral("urldate"); const QString Entry::ftVolume = QStringLiteral("volume"); const QString Entry::ftYear = QStringLiteral("year"); const QString Entry::etArticle = QStringLiteral("article"); const QString Entry::etBook = QStringLiteral("book"); const QString Entry::etInBook = QStringLiteral("inbook"); const QString Entry::etInProceedings = QStringLiteral("inproceedings"); const QString Entry::etMisc = QStringLiteral("misc"); const QString Entry::etPhDThesis = QStringLiteral("phdthesis"); const QString Entry::etMastersThesis = QStringLiteral("mastersthesis"); const QString Entry::etTechReport = QStringLiteral("techreport"); const QString Entry::etUnpublished = QStringLiteral("unpublished"); quint64 Entry::internalUniqueIdCounter = 0; /** * Private class to store internal variables that should not be visible * in the interface as defined in the header file. */ class Entry::EntryPrivate { public: QString type; QString id; }; Entry::Entry(const QString &type, const QString &id) : Element(), QMap(), internalUniqueId(++internalUniqueIdCounter), d(new Entry::EntryPrivate) { d->type = type; d->id = id; } Entry::Entry(const Entry &other) : Element(), QMap(), internalUniqueId(++internalUniqueIdCounter), d(new Entry::EntryPrivate) { operator=(other); } Entry::~Entry() { clear(); delete d; } quint64 Entry::uniqueId() const { return internalUniqueId; } Entry &Entry::operator= (const Entry &other) { if (this != &other) { d->type = other.type(); d->id = other.id(); clear(); for (Entry::ConstIterator it = other.constBegin(); it != other.constEnd(); ++it) insert(it.key(), it.value()); } return *this; } Value &Entry::operator[](const QString &key) { const QString lcKey = key.toLower(); for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) if (it.key().toLower() == lcKey) return QMap::operator[](it.key()); return QMap::operator[](key); } const Value Entry::operator[](const QString &key) const { const QString lcKey = key.toLower(); for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) if (it.key().toLower() == lcKey) return QMap::operator[](it.key()); return QMap::operator[](key); } void Entry::setType(const QString &type) { d->type = type; } QString Entry::type() const { return d->type; } void Entry::setId(const QString &id) { d->id = id; } QString Entry::id() const { return d->id; } const Value Entry::value(const QString &key) const { const QString lcKey = key.toLower(); for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) if (it.key().toLower() == lcKey) return QMap::value(it.key()); return QMap::value(key); } int Entry::remove(const QString &key) { const QString lcKey = key.toLower(); for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) if (it.key().toLower() == lcKey) return QMap::remove(it.key()); return QMap::remove(key); } bool Entry::contains(const QString &key) const { const QString lcKey = key.toLower(); for (Entry::ConstIterator it = constBegin(); it != constEnd(); ++it) if (it.key().toLower() == lcKey) return true; return false; } Entry *Entry::resolveCrossref(const File *bibTeXfile) const { return resolveCrossref(*this, bibTeXfile); } Entry *Entry::resolveCrossref(const Entry &original, const File *bibTeXfile) { Entry *result = new Entry(original); if (bibTeXfile == nullptr) return result; const QString crossRef = PlainTextValue::text(original.value(ftCrossRef)); if (crossRef.isEmpty()) return result; const QSharedPointer crossRefEntry = bibTeXfile->containsKey(crossRef, File::etEntry).dynamicCast(); if (!crossRefEntry.isNull()) { /// copy all fields from crossref'ed entry to new entry which do not (yet) exist in the new entry for (Entry::ConstIterator it = crossRefEntry->constBegin(); it != crossRefEntry->constEnd(); ++it) if (!result->contains(it.key())) result->insert(it.key(), Value(it.value())); if (crossRefEntry->contains(ftTitle)) { /// translate crossref's title into new entry's booktitle result->insert(ftBookTitle, Value(crossRefEntry->operator [](ftTitle))); } /// remove crossref field (no longer of use) result->remove(ftCrossRef); } return result; } QStringList Entry::authorsLastName(const Entry &entry) { Value value; if (entry.contains(Entry::ftAuthor)) value = entry.value(Entry::ftAuthor); if (value.isEmpty() && entry.contains(Entry::ftEditor)) value = entry.value(Entry::ftEditor); if (value.isEmpty()) return QStringList(); QStringList result; int maxAuthors = 16; ///< limit the number of authors considered result.reserve(maxAuthors); for (const QSharedPointer &item : const_cast(value)) { QSharedPointer person = item.dynamicCast(); if (!person.isNull()) { const QString lastName = person->lastName(); if (!lastName.isEmpty()) result << lastName; } if (--maxAuthors <= 0) break; ///< limit the number of authors considered } return result; } QStringList Entry::authorsLastName() const { return authorsLastName(*this); } bool Entry::isEntry(const Element &other) { return typeid(other) == typeid(Entry); } QDebug operator<<(QDebug dbg, const Entry &entry) { dbg.nospace() << "Entry " << entry.id() << " (uniqueId=" << entry.uniqueId() << "), has " << entry.count() << " key-value pairs"; return dbg; } kbibtex-0.8.1/src/data/entry.h000066400000000000000000000213121331300026200161470ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef BIBTEXBIBTEXENTRY_H #define BIBTEXBIBTEXENTRY_H #include #include "element.h" #include "value.h" class File; /** * This class represents an entry in a BibTeX file such as an article * or a book. This class is essentially a map from keys such as title, * year or other bibliography data to corresponding values. * @see Value * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Entry : public Element, public QMap { Q_PROPERTY(QString id READ id WRITE setId) Q_PROPERTY(QString type READ type WRITE setType) public: /** Representation of the BibTeX field key "abstract" */ static const QString ftAbstract; /** Representation of the BibTeX field key "address" */ static const QString ftAddress; /** Representation of the BibTeX field key "author" */ static const QString ftAuthor; /** Representation of the BibTeX field key "booktitle" */ static const QString ftBookTitle; /** Representation of the BibTeX field key "chapter" */ static const QString ftChapter; /** Representation of the BibTeX field key "x-color" */ static const QString ftColor; /** Representation of the BibTeX field key "comment" */ static const QString ftComment; /** Representation of the BibTeX field key "crossref" */ static const QString ftCrossRef; /** Representation of the BibTeX field key "doi" */ static const QString ftDOI; /** Representation of the BibTeX field key "editor" */ static const QString ftEditor; /** Representation of the BibTeX field key "file" */ static const QString ftFile; /** Representation of the BibTeX field key "issn" */ static const QString ftISSN; /** Representation of the BibTeX field key "isbn" */ static const QString ftISBN; /** Representation of the BibTeX field key "journal" */ static const QString ftJournal; /** Representation of the BibTeX field key "keywords" */ static const QString ftKeywords; /** Representation of the BibTeX field key "localfile" */ static const QString ftLocalFile; /** Representation of the BibTeX field key "location" */ static const QString ftLocation; /** Representation of the BibTeX field key "month" */ static const QString ftMonth; /** Representation of the BibTeX field key "note" */ static const QString ftNote; /** Representation of the BibTeX field key "number" */ static const QString ftNumber; /** Representation of the BibTeX field key "pages" */ static const QString ftPages; /** Representation of the BibTeX field key "publisher" */ static const QString ftPublisher; /** Representation of the BibTeX field key "school" */ static const QString ftSchool; /** Representation of the BibTeX field key "series" */ static const QString ftSeries; /** Representation of the BibTeX field key "x-stars" */ static const QString ftStarRating; /** Representation of the BibTeX field key "title" */ static const QString ftTitle; /** Representation of the BibTeX field key "url" */ static const QString ftUrl; /** Representation of the BibLaTeX field key "urldate" */ static const QString ftUrlDate; /** Representation of the BibTeX field key "volume" */ static const QString ftVolume; /** Representation of the BibTeX field key "year" */ static const QString ftYear; /** Representation of the BibTeX entry type "Article" */ static const QString etArticle; /** Representation of the BibTeX entry type "Book" */ static const QString etBook; /** Representation of the BibTeX entry type "InBook" */ static const QString etInBook; /** Representation of the BibTeX entry type "InProceedings" */ static const QString etInProceedings; /** Representation of the BibTeX entry type "Misc" */ static const QString etMisc; /** Representation of the BibTeX entry type "TechReport" */ static const QString etTechReport; /** Representation of the BibTeX entry type "PhDThesis" */ static const QString etPhDThesis; /** Representation of the BibTeX entry type "MastersThesis" */ static const QString etMastersThesis; /** Representation of the BibTeX entry type "Unpublished" */ static const QString etUnpublished; /** * Create a new entry type. Both type and id are optionally, * allowing to call the constructor as Entry() only. * Both type and id can be set and retrieved later. * @param type type of this entry */ explicit Entry(const QString &type = QString(), const QString &id = QString()); /** * Copy constructor cloning another entry object. * @param other entry object to clone */ Entry(const Entry &other); ~Entry() override; /** * Assignment operator, working similar to a copy constructor, * but overwrites the current object's values. */ Entry &operator= (const Entry &other); Value &operator[](const QString &key); const Value operator[](const QString &key) const; /** * Set the type of this entry. Common values are "article" or "book". * @param type type of this entry */ void setType(const QString &type); /** * Retrieve the type of this entry. Common values are "article" or "book". * @return type of this entry */ QString type() const; /** * Set the id of this entry. In LaTeX, this id is used to refer to a BibTeX * entry using the "ref" command. * @param id id of this entry */ void setId(const QString &id); /** * Retrieve the id of this entry. In LaTeX, this id is used to refer to a BibTeX * entry using the "ref" command. * @return id of this entry */ QString id() const; /** * Re-implementation of QMap's value function, but performing a case-insensitive * match on the key. E.g. querying for key "title" will find a key-value pair with * key "TITLE". * @see #contains(const QString&) * @param key field name to search for * @return found value or Value() if nothing found */ const Value value(const QString &key) const; int remove(const QString &key); /** * Re-implementation of QMap's contains function, but performing a case-insensitive * match on the key. E.g. querying for key "title" will find a key-value pair with * key "TITLE". * @see #value(const QString&) * @param key field name to search for * @return true if value with key found, else false */ bool contains(const QString &key) const; Entry *resolveCrossref(const File *bibTeXfile) const; static Entry *resolveCrossref(const Entry &original, const File *bibTeXfile); static QStringList authorsLastName(const Entry &entry); QStringList authorsLastName() const; quint64 uniqueId() const; /** * Cheap and fast test if another Element is a Entry object. * @param other another Element object to test * @return true if Element is actually a Entry */ static bool isEntry(const Element &other); private: /// Unique numeric identifier const quint64 internalUniqueId; /// Keeping track of next available unique numeric identifier static quint64 internalUniqueIdCounter; class EntryPrivate; EntryPrivate *const d; }; QDebug operator<<(QDebug dbg, const Entry &Entry); /** * Comparison operator, necessary for QMap operations. */ static inline bool operator< (const QSharedPointer &a, const QSharedPointer &b) { return a->uniqueId() < b->uniqueId(); } #endif // BIBTEXBIBTEXENTRY_H kbibtex-0.8.1/src/data/file.cpp000066400000000000000000000340271331300026200162670ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "file.h" #include #include #include #include #include #ifdef HAVE_KF5 #include #include #endif // HAVE_KF5 #include "preferences.h" #include "entry.h" #include "element.h" #include "macro.h" #include "comment.h" #include "logging_data.h" const QString File::Url = QStringLiteral("Url"); const QString File::Encoding = QStringLiteral("Encoding"); const QString File::StringDelimiter = QStringLiteral("StringDelimiter"); const QString File::QuoteComment = QStringLiteral("QuoteComment"); const QString File::KeywordCasing = QStringLiteral("KeywordCasing"); const QString File::ProtectCasing = QStringLiteral("ProtectCasing"); const QString File::NameFormatting = QStringLiteral("NameFormatting"); const QString File::ListSeparator = QStringLiteral("ListSeparator"); const quint64 valid = 0x08090a0b0c0d0e0f; const quint64 invalid = 0x0102030405060708; class File::FilePrivate { private: // UNUSED File *p; quint64 validInvalidField; static const quint64 initialInternalIdCounter; static quint64 internalIdCounter; #ifdef HAVE_KF5 KSharedConfigPtr config; const QString configGroupName; #endif // HAVE_KF5 public: const quint64 internalId; QHash properties; explicit FilePrivate(File */* UNUSED parent*/) : /* UNUSED p(parent),*/ validInvalidField(valid), #ifdef HAVE_KF5 config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("FileExporterBibTeX")), #endif // HAVE_KF5 internalId(++internalIdCounter) { const bool isValid = checkValidity(); if (!isValid) qCDebug(LOG_KBIBTEX_DATA) << "Creating File instance" << internalId << " Valid?" << isValid; #ifdef HAVE_KF5 loadConfiguration(); #endif // HAVE_KF5 } ~FilePrivate() { const bool isValid = checkValidity(); if (!isValid) qCDebug(LOG_KBIBTEX_DATA) << "Deleting File instance" << internalId << " Valid?" << isValid; validInvalidField = invalid; } /// Copy-assignment operator FilePrivate &operator= (const FilePrivate &other) { if (this != &other) { validInvalidField = other.validInvalidField; properties = other.properties; const bool isValid = checkValidity(); if (!isValid) qCDebug(LOG_KBIBTEX_DATA) << "Assigning File instance" << other.internalId << "to" << internalId << " Is other valid?" << other.checkValidity() << " Self valid?" << isValid; } return *this; } /// Move-assignment operator FilePrivate &operator= (FilePrivate &&other) { if (this != &other) { validInvalidField = std::move(other.validInvalidField); properties = std::move(other.properties); const bool isValid = checkValidity(); if (!isValid) qCDebug(LOG_KBIBTEX_DATA) << "Assigning File instance" << other.internalId << "to" << internalId << " Is other valid?" << other.checkValidity() << " Self valid?" << isValid; } return *this; } #ifdef HAVE_KF5 void loadConfiguration() { /// Load and set configuration as stored in settings KConfigGroup configGroup(config, configGroupName); properties.insert(File::Encoding, configGroup.readEntry(Preferences::keyEncoding, Preferences::defaultEncoding)); properties.insert(File::StringDelimiter, configGroup.readEntry(Preferences::keyStringDelimiter, Preferences::defaultStringDelimiter)); properties.insert(File::QuoteComment, (Preferences::QuoteComment)configGroup.readEntry(Preferences::keyQuoteComment, (int)Preferences::defaultQuoteComment)); properties.insert(File::KeywordCasing, (KBibTeX::Casing)configGroup.readEntry(Preferences::keyKeywordCasing, (int)Preferences::defaultKeywordCasing)); properties.insert(File::NameFormatting, configGroup.readEntry(Preferences::keyPersonNameFormatting, QString())); properties.insert(File::ProtectCasing, configGroup.readEntry(Preferences::keyProtectCasing, (int)Preferences::defaultProtectCasing)); properties.insert(File::ListSeparator, configGroup.readEntry(Preferences::keyListSeparator, Preferences::defaultListSeparator)); } #endif // HAVE_KF5 bool checkValidity() const { if (validInvalidField != valid) { /// 'validInvalidField' must equal to the know 'valid' value qCWarning(LOG_KBIBTEX_DATA) << "Failed validity check: " << validInvalidField << "!=" << valid; return false; } else if (internalId <= initialInternalIdCounter) { /// Internal id counter starts at initialInternalIdCounter+1 qCWarning(LOG_KBIBTEX_DATA) << "Failed validity check: " << internalId << "< " << (initialInternalIdCounter + 1); return false; } else if (internalId > 600000) { /// Reasonable assumption: not more that 500000 ids used qCWarning(LOG_KBIBTEX_DATA) << "Failed validity check: " << internalId << "> 600000"; return false; } return true; } }; const quint64 File::FilePrivate::initialInternalIdCounter = 99999; quint64 File::FilePrivate::internalIdCounter = File::FilePrivate::initialInternalIdCounter; File::File() : QList >(), d(new FilePrivate(this)) { // nothing } File::File(const File &other) : QList >(other), d(new FilePrivate(this)) { d->operator =(*other.d); } File::File(File &&other) : QList >(std::move(other)), d(new FilePrivate(this)) { d->operator =(std::move(*other.d)); } File::~File() { Q_ASSERT_X(d->checkValidity(), "File::~File()", "This File object is not valid"); delete d; } File &File::operator= (const File &other) { if (this != &other) d->operator =(*other.d); return *this; } File &File::operator= (File &&other) { if (this != &other) d->operator =(std::move(*other.d)); return *this; } const QSharedPointer File::containsKey(const QString &key, ElementTypes elementTypes) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "const QSharedPointer File::containsKey(const QString &key, ElementTypes elementTypes) const" << "This File object is not valid"; for (const auto &element : const_cast(*this)) { const QSharedPointer entry = elementTypes.testFlag(etEntry) ? element.dynamicCast() : QSharedPointer(); if (!entry.isNull()) { if (entry->id() == key) return entry; } else { const QSharedPointer macro = elementTypes.testFlag(etMacro) ? element.dynamicCast() : QSharedPointer(); if (!macro.isNull()) { if (macro->key() == key) return macro; } } } return QSharedPointer(); } QStringList File::allKeys(ElementTypes elementTypes) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "QStringList File::allKeys(ElementTypes elementTypes) const" << "This File object is not valid"; QStringList result; result.reserve(size()); for (const auto &element : const_cast(*this)) { const QSharedPointer entry = elementTypes.testFlag(etEntry) ? element.dynamicCast() : QSharedPointer(); if (!entry.isNull()) result.append(entry->id()); else { const QSharedPointer macro = elementTypes.testFlag(etMacro) ? element.dynamicCast() : QSharedPointer(); if (!macro.isNull()) result.append(macro->key()); } } return result; } QSet File::uniqueEntryValuesSet(const QString &fieldName) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "QSet File::uniqueEntryValuesSet(const QString &fieldName) const" << "This File object is not valid"; QSet valueSet; const QString lcFieldName = fieldName.toLower(); for (const auto &element : const_cast(*this)) { const QSharedPointer entry = element.dynamicCast(); if (!entry.isNull()) for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) if (it.key().toLower() == lcFieldName) { const auto itValue = it.value(); for (const QSharedPointer &valueItem : itValue) { /// Check if ValueItem to process points to a person const QSharedPointer person = valueItem.dynamicCast(); if (!person.isNull()) { /// Assemble a list of formatting templates for a person's name static QStringList personNameFormattingList; ///< use static to do pattern assembly only once if (personNameFormattingList.isEmpty()) { /// Use the two default patterns last-name-first and first-name-first #ifdef HAVE_KF5 personNameFormattingList << Preferences::personNameFormatLastFirst << Preferences::personNameFormatFirstLast; /// Check configuration if user-specified formatting template is different KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, "General"); QString personNameFormatting = configGroup.readEntry(Preferences::keyPersonNameFormatting, Preferences::defaultPersonNameFormatting); /// Add user's template if it differs from the two specified above if (!personNameFormattingList.contains(personNameFormatting)) personNameFormattingList << personNameFormatting; #else // HAVE_KF5 personNameFormattingList << QStringLiteral("<%l><, %s><, %f>") << QStringLiteral("<%f ><%l>< %s>"); #endif // HAVE_KF5 } /// Add person's name formatted using each of the templates assembled above for (const QString &personNameFormatting : const_cast(personNameFormattingList)) { valueSet.insert(Person::transcribePersonName(person.data(), personNameFormatting)); } } else { /// Default case: use PlainTextValue::text to translate ValueItem /// to a human-readable text valueSet.insert(PlainTextValue::text(*valueItem)); } } } } return valueSet; } QStringList File::uniqueEntryValuesList(const QString &fieldName) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "QStringList File::uniqueEntryValuesList(const QString &fieldName) const" << "This File object is not valid"; QSet valueSet = uniqueEntryValuesSet(fieldName); QStringList list = valueSet.toList(); list.sort(); return list; } void File::setProperty(const QString &key, const QVariant &value) { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "void File::setProperty(const QString &key, const QVariant &value)" << "This File object is not valid"; d->properties.insert(key, value); } QVariant File::property(const QString &key) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "QVariant File::property(const QString &key) const" << "This File object is not valid"; return d->properties.contains(key) ? d->properties.value(key) : QVariant(); } QVariant File::property(const QString &key, const QVariant &defaultValue) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "QVariant File::property(const QString &key, const QVariant &defaultValue) const" << "This File object is not valid"; return d->properties.value(key, defaultValue); } bool File::hasProperty(const QString &key) const { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "bool File::hasProperty(const QString &key) const" << "This File object is not valid"; return d->properties.contains(key); } #ifdef HAVE_KF5 void File::setPropertiesToDefault() { if (!d->checkValidity()) qCCritical(LOG_KBIBTEX_DATA) << "void File::setPropertiesToDefault()" << "This File object is not valid"; d->loadConfiguration(); } #endif // HAVE_KF5 bool File::checkValidity() const { return d->checkValidity(); } QDebug operator<<(QDebug dbg, const File &file) { dbg.nospace() << "File is " << (file.checkValidity() ? "" : "NOT ") << "valid and has " << file.count() << " members"; return dbg; } kbibtex-0.8.1/src/data/file.h000066400000000000000000000106111331300026200157250ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_IO_FILE_H #define KBIBTEX_IO_FILE_H #include #include #include #include "element.h" #include "kbibtexdata_export.h" class Element; /** * This class represents a bibliographic file such as a BibTeX file * (or any other format after proper conversion). The file's content * can be accessed using the inherited QList interface (for example * list iterators). * @see Element * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT File : public QList > { public: /// enum and flags to differ between entries, macros etc /// used for @see #allKeys() and @see #containsKey() enum ElementType { etEntry = 0x1, etMacro = 0x2, etAll = 0x3 }; Q_DECLARE_FLAGS(ElementTypes, ElementType) /// used for property map const static QString Url; const static QString Encoding; const static QString StringDelimiter; const static QString QuoteComment; const static QString KeywordCasing; const static QString ProtectCasing; const static QString NameFormatting; const static QString ListSeparator; explicit File(); explicit File(const File &other); explicit File(File &&other); ~File(); /// Copy-assignment operator. File &operator= (const File &other); /// Move-assignment operator. File &operator= (File &&other); /** * Check if a given key (e.g. a key for a macro or an id for an entry) * is contained in the file object. * @see #allKeys() const * @return @c the object addressed by the key @c, NULL if no such file has been found */ const QSharedPointer containsKey(const QString &key, ElementTypes elementTypes = etAll) const; /** * Retrieves a list of all keys for example from macros or entries. * @see #const containsKey(const QString &) const * @return list of keys */ QStringList allKeys(ElementTypes elementTypes = etAll) const; /** * Retrieves a set of all unique values (as text) for a specified * field from all entries * @param fieldName field name to scan, e.g. "volume" * @return list of unique values */ QSet uniqueEntryValuesSet(const QString &fieldName) const; /** * Retrieves a list of all unique values (as text) for a specified * field from all entries * @param fieldName field name to scan, e.g. "volume" * @return list of unique values */ QStringList uniqueEntryValuesList(const QString &fieldName) const; void setProperty(const QString &key, const QVariant &value); QVariant property(const QString &key) const; QVariant property(const QString &key, const QVariant &defaultValue) const; bool hasProperty(const QString &key) const; void setPropertiesToDefault(); /** * Check if this File object is valid by its own assessment. * No high-level checks, such as on the File instance's content, * are performed. * @return True if validity checks succeed, false otherwise */ bool checkValidity() const; private: class FilePrivate; FilePrivate *d; }; QDebug operator<<(QDebug dbg, const File &file); #endif // KBIBTEX_IO_FILE_H kbibtex-0.8.1/src/data/logging_data.cpp000066400000000000000000000024421331300026200177630ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "logging_data.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_DATA, "kbibtex.data") kbibtex-0.8.1/src/data/logging_data.h000066400000000000000000000026141331300026200174310ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_DATA_LOGGING_DATA_H #define KBIBTEX_DATA_LOGGING_DATA_H #include Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_DATA) #endif // KBIBTEX_DATA_LOGGING_DATA_H kbibtex-0.8.1/src/data/macro.cpp000066400000000000000000000047671331300026200164610ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "macro.h" #include #include #include #include /** * Private class to store internal variables that should not be visible * in the interface as defined in the header file. */ class Macro::MacroPrivate { public: QString key; Value value; }; Macro::Macro(const QString &key, const Value &value) : Element(), d(new Macro::MacroPrivate) { d->key = key; d->value = value; } Macro::Macro(const Macro &other) : Element(), d(new Macro::MacroPrivate) { d->key = other.d->key; d->value = other.d->value; } Macro::~Macro() { delete d; } Macro &Macro::operator= (const Macro &other) { if (this != &other) { d->key = other.key(); d->value = other.value(); } return *this; } void Macro::setKey(const QString &key) { d->key = key; } QString Macro::key() const { return d->key; } Value &Macro::value() { return d->value; } const Value &Macro::value() const { return d->value; } void Macro::setValue(const Value &value) { d->value = value; } bool Macro::isMacro(const Element &other) { return typeid(other) == typeid(Macro); } QDebug operator<<(QDebug dbg, const Macro ¯o) { dbg.nospace() << "Macro " << macro.key() << " = " << macro.value(); return dbg; } kbibtex-0.8.1/src/data/macro.h000066400000000000000000000064411331300026200161150ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_IO_MACRO_H #define KBIBTEX_IO_MACRO_H #include "element.h" #include "value.h" class QString; /** * This class represents a macro in a BibTeX file. Macros in BibTeX * are similar to variables, allowing to use the same value such as * journal titles in several entries. * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Macro : public Element { Q_PROPERTY(QString key READ key WRITE setKey) Q_PROPERTY(Value value READ value WRITE setValue) public: /** * Create a new macro with a given key-value pair. * @param key macro's key * @param value macro's value */ explicit Macro(const QString &key = QString(), const Value &value = Value()); /** * Copy constructor cloning another macro object. * @param other macro object to clone */ Macro(const Macro &other); ~Macro() override; /** * Assignment operator, working similar to a copy constructor, * but overwrites the current object's values. */ Macro &operator= (const Macro &other); /** * Set the key of this macro. * @param key new key of this macro */ void setKey(const QString &key); /** * Retrieve the key of this macro. * @return key of this macro */ QString key() const; /** * Retrieve the key of this macro. Returns a reference which may not be modified. * @return key of this macro */ const Value &value() const; /** * Retrieve the key of this macro. Returns a reference which may be modified. * @return key of this macro */ Value &value(); /** * Set the value of this macro. * @param value new value of this macro */ void setValue(const Value &value); /** * Cheap and fast test if another Element is a Macro object. * @param other another Element object to test * @return true if Element is actually a Macro */ static bool isMacro(const Element &other); private: class MacroPrivate; MacroPrivate *const d; }; QDebug operator<<(QDebug dbg, const Macro ¯o); #endif kbibtex-0.8.1/src/data/models/000077500000000000000000000000001331300026200161215ustar00rootroot00000000000000kbibtex-0.8.1/src/data/models/filemodel.cpp000066400000000000000000000367511331300026200206010ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "filemodel.h" #include #include #include #include #include #include #include #include "element.h" #include "entry.h" #include "macro.h" #include "comment.h" #include "preamble.h" #include "bibtexentries.h" #include "bibtexfields.h" #include "preferences.h" const int FileModel::NumberRole = Qt::UserRole + 9581; const int FileModel::SortRole = Qt::UserRole + 236; /// see also MDIWidget's SortRole const QString FileModel::keyShowComments = QStringLiteral("showComments"); const bool FileModel::defaultShowComments = true; const QString FileModel::keyShowMacros = QStringLiteral("showMacros"); const bool FileModel::defaultShowMacros = true; FileModel::FileModel(QObject *parent) : QAbstractTableModel(parent), m_file(nullptr) { NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); readConfiguration(); } void FileModel::notificationEvent(int eventId) { if (eventId == NotificationHub::EventConfigurationChanged) { readConfiguration(); int column = 0; const BibTeXFields *bf = BibTeXFields::self(); for (const auto &fd : const_cast(*bf)) { /// Colors may have changed bool columnChanged = fd.upperCamelCase.toLower() == Entry::ftColor; /// Person name formatting may has changed columnChanged |= fd.upperCamelCase.toLower() == Entry::ftAuthor || fd.upperCamelCase.toLower() == Entry::ftEditor; columnChanged |= fd.upperCamelCaseAlt.toLower() == Entry::ftAuthor || fd.upperCamelCaseAlt.toLower() == Entry::ftEditor; /// Changes necessary for this column? Publish update if (columnChanged) emit dataChanged(index(0, column), index(rowCount() - 1, column)); ++column; } } } void FileModel::readConfiguration() { /// load mapping from color value to label KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, Preferences::groupColor); QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); colorToLabel.clear(); for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { colorToLabel.insert(*itc, i18n((*itl).toUtf8().constData())); } } QVariant FileModel::entryData(const Entry *entry, const QString &raw, const QString &rawAlt, int role, bool followCrossRef) const { if (raw == QStringLiteral("^id")) // FIXME: Use constant here? return QVariant(entry->id()); else if (raw == QStringLiteral("^type")) { // FIXME: Use constant here? /// try to beautify type, e.g. translate "proceedings" into /// "Conference or Workshop Proceedings" QString label = BibTeXEntries::self()->label(entry->type()); if (label.isEmpty()) { /// fall-back to entry type as it is return QVariant(entry->type()); } else return QVariant(label); } else if (raw.toLower() == Entry::ftStarRating) { return QVariant(); } else if (raw.toLower() == Entry::ftColor) { QString text = PlainTextValue::text(entry->value(raw)); if (text.isEmpty()) return QVariant(); QString colorText = colorToLabel[text]; if (colorText.isEmpty()) return QVariant(text); return QVariant(colorText); } else { QString text; if (entry->contains(raw)) text = PlainTextValue::text(entry->value(raw)).simplified(); else if (!rawAlt.isEmpty() && entry->contains(rawAlt)) text = PlainTextValue::text(entry->value(rawAlt)).simplified(); if (followCrossRef && text.isEmpty() && entry->contains(Entry::ftCrossRef)) { // TODO do not only follow "crossref", but other files from Biber/Biblatex as well Entry *completedEntry = entry->resolveCrossref(m_file); QVariant result = entryData(completedEntry, raw, rawAlt, role, false); delete completedEntry; return result; } if (text.isEmpty()) return QVariant(); else if (role == FileModel::SortRole) return QVariant(text.toLower()); else if (role == Qt::ToolTipRole) { // TODO: find a better solution, such as line-wrapping tooltips return QVariant(KBibTeX::leftSqueezeText(text, 128)); } else return QVariant(text); } } File *FileModel::bibliographyFile() const { return m_file; } void FileModel::setBibliographyFile(File *file) { bool resetNecessary = m_file != file; if (resetNecessary) { beginResetModel(); m_file = file; endResetModel(); } } QModelIndex FileModel::parent(const QModelIndex &index) const { Q_UNUSED(index) return QModelIndex(); } bool FileModel::hasChildren(const QModelIndex &parent) const { return parent == QModelIndex(); } int FileModel::rowCount(const QModelIndex & /*parent*/) const { return m_file != nullptr ? m_file->count() : 0; } int FileModel::columnCount(const QModelIndex & /*parent*/) const { return BibTeXFields::self()->count(); } QVariant FileModel::data(const QModelIndex &index, int role) const { /// do not accept invalid indices if (!index.isValid()) return QVariant(); /// check backend storage (File object) if (m_file == nullptr) return QVariant(); /// for now, only display data (no editing or icons etc) if (role != NumberRole && role != SortRole && role != Qt::DisplayRole && role != Qt::ToolTipRole && role != Qt::BackgroundRole && role != Qt::ForegroundRole) return QVariant(); const BibTeXFields *bibtexFields = BibTeXFields::self(); if (index.row() < m_file->count() && index.column() < bibtexFields->count()) { const FieldDescription &fd = bibtexFields->at(index.column()); QString raw = fd.upperCamelCase; QString rawAlt = fd.upperCamelCaseAlt; QSharedPointer element = (*m_file)[index.row()]; QSharedPointer entry = element.dynamicCast(); /// if BibTeX entry has a "x-color" field, use that color to highlight row if (role == Qt::BackgroundRole) { /// Retrieve "color" QString colorName; if (entry.isNull() || (colorName = PlainTextValue::text(entry->value(Entry::ftColor))) == QStringLiteral("#000000") || colorName.isEmpty()) return QVariant(); else { /// There is a valid color, set it as background QColor color(colorName); /// Use slightly different colors for even and odd rows color.setAlphaF(index.row() % 2 == 0 ? 0.75 : 1.0); return QVariant(color); } } else if (role == Qt::ForegroundRole) { /// Retrieve "color" QString colorName; if (entry.isNull() || (colorName = PlainTextValue::text(entry->value(Entry::ftColor))) == QStringLiteral("#000000") || colorName.isEmpty()) return QVariant(); else { /// There is a valid color ... const QColor color(colorName); /// Retrieve red, green, blue, and alpha components int r = 0, g = 0, b = 0, a = 0; color.getRgb(&r, &g, &b, &a); /// If gray value is rather dark, return white as foreground color if (qGray(r, g, b) < 128) return QColor(Qt::white); /// For light gray values, return black as foreground color else return QColor(Qt::black); } } else if (role == NumberRole) { if (!entry.isNull() && raw.toLower() == Entry::ftStarRating) { const QString text = PlainTextValue::text(entry->value(raw)).simplified(); bool ok = false; const double numValue = text.toDouble(&ok); if (ok) return QVariant::fromValue(numValue); else return QVariant(); } else return QVariant(); } if (!entry.isNull()) { return entryData(entry.data(), raw, rawAlt, role, true); } else { QSharedPointer macro = element.dynamicCast(); if (!macro.isNull()) { if (raw == QStringLiteral("^id")) return QVariant(macro->key()); else if (raw == QStringLiteral("^type")) return QVariant(i18n("Macro")); else if (raw == QStringLiteral("Title")) { const QString text = PlainTextValue::text(macro->value()).simplified(); return QVariant(text); } else return QVariant(); } else { QSharedPointer comment = element.dynamicCast(); if (!comment.isNull()) { if (raw == QStringLiteral("^type")) return QVariant(i18n("Comment")); else if (raw == Entry::ftTitle) { const QString text = comment->text().simplified(); return QVariant(text); } else return QVariant(); } else { QSharedPointer preamble = element.dynamicCast(); if (!preamble.isNull()) { if (raw == QStringLiteral("^type")) return QVariant(i18n("Preamble")); else if (raw == Entry::ftTitle) { const QString text = PlainTextValue::text(preamble->value()).simplified(); return QVariant(text); } else return QVariant(); } else return QVariant("?"); } } } } else return QVariant("?"); } QVariant FileModel::headerData(int section, Qt::Orientation orientation, int role) const { const BibTeXFields *bibtexFields = BibTeXFields::self(); if (role != Qt::DisplayRole || orientation != Qt::Horizontal || section < 0 || section >= bibtexFields->count()) return QVariant(); return bibtexFields->at(section).label; } Qt::ItemFlags FileModel::flags(const QModelIndex &index) const { Q_UNUSED(index) return Qt::ItemIsEnabled | Qt::ItemIsSelectable; // FIXME: What about drag'n'drop? } void FileModel::clear() { beginResetModel(); m_file->clear(); endResetModel(); } bool FileModel::removeRow(int row, const QModelIndex &parent) { if (row < 0 || m_file == nullptr || row >= rowCount() || row >= m_file->count()) return false; if (parent != QModelIndex()) return false; beginRemoveRows(QModelIndex(), row, row); m_file->removeAt(row); endRemoveRows(); return true; } bool FileModel::removeRowList(const QList &rows) { if (m_file == nullptr) return false; QList internalRows = rows; std::sort(internalRows.begin(), internalRows.end(), std::greater()); beginRemoveRows(QModelIndex(), internalRows.last(), internalRows.first()); for (int row : const_cast &>(internalRows)) { if (row < 0 || row >= rowCount() || row >= m_file->count()) return false; m_file->removeAt(row); } endRemoveRows(); return true; } bool FileModel::insertRow(QSharedPointer element, int row, const QModelIndex &parent) { if (m_file == nullptr || row < 0 || row > rowCount() || parent != QModelIndex()) return false; /// Check for duplicate ids or keys when inserting a new element /// First, check entries QSharedPointer entry = element.dynamicCast(); if (!entry.isNull()) { /// Fetch current entry's id const QString id = entry->id(); if (!m_file->containsKey(id).isNull()) { /// Same entry id used for an existing entry or macro int overflow = 2; static const QString pattern = QStringLiteral("%1_%2"); /// Test alternative ids with increasing "overflow" counter: /// id_2, id_3, id_4 ,... QString newId = pattern.arg(id).arg(overflow); while (!m_file->containsKey(newId).isNull()) { ++overflow; newId = pattern.arg(id).arg(overflow); } /// Guaranteed to find an alternative, apply it to entry entry->setId(newId); } } else { /// Next, check macros QSharedPointer macro = element.dynamicCast(); if (!macro.isNull()) { /// Fetch current macro's key const QString key = macro->key(); if (!m_file->containsKey(key).isNull()) { /// Same entry key used for an existing entry or macro int overflow = 2; static const QString pattern = QStringLiteral("%1_%2"); /// Test alternative keys with increasing "overflow" counter: /// key_2, key_3, key_4 ,... QString newKey = pattern.arg(key).arg(overflow); while (!m_file->containsKey(newKey).isNull()) { ++overflow; newKey = pattern.arg(key).arg(overflow); } /// Guaranteed to find an alternative, apply it to macro macro->setKey(newKey); } } } beginInsertRows(QModelIndex(), row, row); m_file->insert(row, element); endInsertRows(); return true; } QSharedPointer FileModel::element(int row) const { if (m_file == nullptr || row < 0 || row >= m_file->count()) return QSharedPointer(); return (*m_file)[row]; } int FileModel::row(QSharedPointer element) const { if (m_file == nullptr) return -1; return m_file->indexOf(element); } void FileModel::elementChanged(int row) { emit dataChanged(createIndex(row, 0), createIndex(row, columnCount() - 1)); } kbibtex-0.8.1/src/data/models/filemodel.h000066400000000000000000000064771331300026200202500ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_FILEMODEL_H #define KBIBTEX_GUI_FILEMODEL_H #include #include #include #include #include #include "kbibtexdata_export.h" #include "notificationhub.h" #include "file.h" #include "entry.h" class FileModel; /** @author Thomas Fischer */ class KBIBTEXDATA_EXPORT FileModel : public QAbstractTableModel, private NotificationListener { Q_OBJECT public: static const int NumberRole; static const int SortRole; static const QString keyShowComments; static const bool defaultShowComments; static const QString keyShowMacros; static const bool defaultShowMacros; explicit FileModel(QObject *parent = nullptr); File *bibliographyFile() const; virtual void setBibliographyFile(File *file); QModelIndex parent(const QModelIndex &index) const override; bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; Qt::ItemFlags flags(const QModelIndex &index) const override; void clear(); virtual bool removeRow(int row, const QModelIndex &parent = QModelIndex()); bool removeRowList(const QList &rows); bool insertRow(QSharedPointer element, int row, const QModelIndex &parent = QModelIndex()); QSharedPointer element(int row) const; int row(QSharedPointer element) const; /// Notifies the model that a given element has been modifed void elementChanged(int row); void notificationEvent(int eventId) override; private: File *m_file; QMap colorToLabel; void readConfiguration(); QVariant entryData(const Entry *entry, const QString &raw, const QString &rawAlt, int role, bool followCrossRef) const; }; #endif // KBIBTEX_GUI_FILEMODEL_H kbibtex-0.8.1/src/data/preamble.cpp000066400000000000000000000045011331300026200171310ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "preamble.h" #include #include #include #include /** * Private class to store internal variables that should not be visible * in the interface as defined in the header file. */ class Preamble::PreamblePrivate { public: Value value; }; Preamble::Preamble(const Value &value) : Element(), d(new Preamble::PreamblePrivate) { d->value = value; } Preamble::Preamble(const Preamble &other) : Element(), d(new Preamble::PreamblePrivate) { operator=(other); } Preamble::~Preamble() { delete d; } Preamble &Preamble::operator= (const Preamble &other) { if (this != &other) d->value = other.d->value; return *this; } Value &Preamble::value() { return d->value; } const Value &Preamble::value() const { return d->value; } void Preamble::setValue(const Value &value) { d->value = value; } bool Preamble::isPreamble(const Element &other) { return typeid(other) == typeid(Preamble); } QDebug operator<<(QDebug dbg, const Preamble &preamble) { dbg.nospace() << "Preamble: " << preamble.value(); return dbg; } kbibtex-0.8.1/src/data/preamble.h000066400000000000000000000052101331300026200165740ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_IO_PREAMBLE_H #define KBIBTEX_IO_PREAMBLE_H #include "element.h" #include "value.h" /** * This class represents a preamble in a BibTeX file. Preables contain * LaTeX commands required for the bibliography, such as hyphenation commands. * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Preamble : public Element { Q_PROPERTY(Value value READ value WRITE setValue) public: explicit Preamble(const Value &value = Value()); Preamble(const Preamble &other); ~Preamble() override; /** * Assignment operator, working similar to a copy constructor, * but overwrites the current object's values. */ Preamble &operator= (const Preamble &other); Value &value(); const Value &value() const; void setValue(const Value &value); // bool containsPattern(const QString& pattern, Field::FieldType fieldType = Field::ftUnknown, FilterType filterType = Element::ftExact, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const; // FIXME: Rewrite filtering code /** * Cheap and fast test if another Element is a Preamble object. * @param other another Element object to test * @return true if Element is actually a Preamble */ static bool isPreamble(const Element &other); private: class PreamblePrivate; PreamblePrivate *const d; }; QDebug operator<<(QDebug dbg, const Preamble &preamble); #endif // KBIBTEX_IO_PREAMBLE_H kbibtex-0.8.1/src/data/value.cpp000066400000000000000000000521241331300026200164620ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "value.h" #include #include #include #include #include #ifdef HAVE_KF5 #include #include #include #endif // HAVE_KF5 #include "file.h" #include "preferences.h" quint64 ValueItem::internalIdCounter = 0; uint qHash(const QSharedPointer &valueItem) { return qHash(valueItem->id()); } const QRegExp ValueItem::ignoredInSorting = QRegExp("[{}\\\\]+"); ValueItem::ValueItem() : internalId(++internalIdCounter) { // nothing } ValueItem::~ValueItem() { // nothing } quint64 ValueItem::id() const { return internalId; } Keyword::Keyword(const Keyword &other) : m_text(other.m_text) { // nothing } Keyword::Keyword(const QString &text) : m_text(text) { // nothing } void Keyword::setText(const QString &text) { m_text = text; } QString Keyword::text() const { return m_text; } void Keyword::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { if (replaceMode == ValueItem::AnySubstring) m_text = m_text.replace(before, after); else if (replaceMode == ValueItem::CompleteMatch && m_text == before) m_text = after; } bool Keyword::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { const QString text = QString(m_text).remove(ignoredInSorting); return text.contains(pattern, caseSensitive); } bool Keyword::operator==(const ValueItem &other) const { const Keyword *otherKeyword = dynamic_cast(&other); if (otherKeyword != nullptr) { return otherKeyword->text() == text(); } else return false; } bool Keyword::isKeyword(const ValueItem &other) { return typeid(other) == typeid(Keyword); } Person::Person(const QString &firstName, const QString &lastName, const QString &suffix) : m_firstName(firstName), m_lastName(lastName), m_suffix(suffix) { // nothing } Person::Person(const Person &other) : m_firstName(other.firstName()), m_lastName(other.lastName()), m_suffix(other.suffix()) { // nothing } QString Person::firstName() const { return m_firstName; } QString Person::lastName() const { return m_lastName; } QString Person::suffix() const { return m_suffix; } void Person::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { if (replaceMode == ValueItem::AnySubstring) { m_firstName = m_firstName.replace(before, after); m_lastName = m_lastName.replace(before, after); m_suffix = m_suffix.replace(before, after); } else if (replaceMode == ValueItem::CompleteMatch) { if (m_firstName == before) m_firstName = after; if (m_lastName == before) m_lastName = after; if (m_suffix == before) m_suffix = after; } } bool Person::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { const QString firstName = QString(m_firstName).remove(ignoredInSorting); const QString lastName = QString(m_lastName).remove(ignoredInSorting); const QString suffix = QString(m_suffix).remove(ignoredInSorting); return firstName.contains(pattern, caseSensitive) || lastName.contains(pattern, caseSensitive) || suffix.contains(pattern, caseSensitive) || QString(QStringLiteral("%1 %2|%2, %1")).arg(firstName, lastName).contains(pattern, caseSensitive); } bool Person::operator==(const ValueItem &other) const { const Person *otherPerson = dynamic_cast(&other); if (otherPerson != nullptr) { return otherPerson->firstName() == firstName() && otherPerson->lastName() == lastName(); } else return false; } QString Person::transcribePersonName(const Person *person, const QString &formatting) { return transcribePersonName(formatting, person->firstName(), person->lastName(), person->suffix()); } QString Person::transcribePersonName(const QString &formatting, const QString &firstName, const QString &lastName, const QString &suffix) { QString result = formatting; int p1 = -1, p2 = -1, p3 = -1; while ((p1 = result.indexOf('<')) >= 0 && (p2 = result.indexOf('>', p1 + 1)) >= 0 && (p3 = result.indexOf('%', p1)) >= 0 && p3 < p2) { QString insert; switch (result[p3 + 1].toLatin1()) { case 'f': insert = firstName; break; case 'l': insert = lastName; break; case 's': insert = suffix; break; } if (!insert.isEmpty()) insert = result.mid(p1 + 1, p3 - p1 - 1) + insert + result.mid(p3 + 2, p2 - p3 - 2); result = result.left(p1) + insert + result.mid(p2 + 1); } return result; } bool Person::isPerson(const ValueItem &other) { return typeid(other) == typeid(Person); } QDebug operator<<(QDebug dbg, const Person &person) { dbg.nospace() << "Person " << Person::transcribePersonName(&person, Preferences::defaultPersonNameFormatting); return dbg; } const QRegExp MacroKey::validMacroKey = QRegExp("^[a-z][-.:/+_a-z0-9]*$|^[0-9]+$", Qt::CaseInsensitive); MacroKey::MacroKey(const MacroKey &other) : m_text(other.m_text) { // nothing } MacroKey::MacroKey(const QString &text) : m_text(text) { // nothing } void MacroKey::setText(const QString &text) { m_text = text; } QString MacroKey::text() const { return m_text; } bool MacroKey::isValid() { const QString t = text(); int idx = validMacroKey.indexIn(t); return idx > -1 && validMacroKey.cap(0) == t; } void MacroKey::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { if (replaceMode == ValueItem::AnySubstring) m_text = m_text.replace(before, after); else if (replaceMode == ValueItem::CompleteMatch && m_text == before) m_text = after; } bool MacroKey::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { const QString text = QString(m_text).remove(ignoredInSorting); return text.contains(pattern, caseSensitive); } bool MacroKey::operator==(const ValueItem &other) const { const MacroKey *otherMacroKey = dynamic_cast(&other); if (otherMacroKey != nullptr) { return otherMacroKey->text() == text(); } else return false; } bool MacroKey::isMacroKey(const ValueItem &other) { return typeid(other) == typeid(MacroKey); } QDebug operator<<(QDebug dbg, const MacroKey ¯okey) { dbg.nospace() << "MacroKey " << macrokey.text(); return dbg; } PlainText::PlainText(const PlainText &other) : m_text(other.text()) { // nothing } PlainText::PlainText(const QString &text) : m_text(text) { // nothing } void PlainText::setText(const QString &text) { m_text = text; } QString PlainText::text() const { return m_text; } void PlainText::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { if (replaceMode == ValueItem::AnySubstring) m_text = m_text.replace(before, after); else if (replaceMode == ValueItem::CompleteMatch && m_text == before) m_text = after; } bool PlainText::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { const QString text = QString(m_text).remove(ignoredInSorting); return text.contains(pattern, caseSensitive); } bool PlainText::operator==(const ValueItem &other) const { const PlainText *otherPlainText = dynamic_cast(&other); if (otherPlainText != nullptr) { return otherPlainText->text() == text(); } else return false; } bool PlainText::isPlainText(const ValueItem &other) { return typeid(other) == typeid(PlainText); } QDebug operator<<(QDebug dbg, const PlainText &plainText) { dbg.nospace() << "PlainText " << plainText.text(); return dbg; } #ifdef HAVE_KF5 bool VerbatimText::colorLabelPairsInitialized = false; QList VerbatimText::colorLabelPairs = QList(); #endif // HAVE_KF5 VerbatimText::VerbatimText(const VerbatimText &other) : m_text(other.text()) { // nothing } VerbatimText::VerbatimText(const QString &text) : m_text(text) { // nothing } void VerbatimText::setText(const QString &text) { m_text = text; } QString VerbatimText::text() const { return m_text; } void VerbatimText::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { if (replaceMode == ValueItem::AnySubstring) m_text = m_text.replace(before, after); else if (replaceMode == ValueItem::CompleteMatch && m_text == before) m_text = after; } bool VerbatimText::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { const QString text = QString(m_text).remove(ignoredInSorting); #ifdef HAVE_KF5 /// Initialize map of labels to color (hex string) only once // FIXME if user changes colors/labels later, it will not be updated here if (!colorLabelPairsInitialized) { colorLabelPairsInitialized = true; /// Read data from config file KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, Preferences::groupColor); const QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); const QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); /// Translate data from config file into internal mapping for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { ColorLabelPair clp; clp.hexColor = *itc; clp.label = i18n((*itl).toUtf8().constData()); colorLabelPairs << clp; } } #endif // HAVE_KF5 bool contained = text.contains(pattern, caseSensitive); #ifdef HAVE_KF5 if (!contained) { /// Only if simple text match failed, check color labels /// For a match, the user's pattern has to be the start of the color label /// and this verbatim text has to contain the color as hex string for (const auto &clp : const_cast &>(colorLabelPairs)) { contained = text.compare(clp.hexColor, Qt::CaseInsensitive) == 0 && clp.label.contains(pattern, Qt::CaseInsensitive); if (contained) break; } } #endif // HAVE_KF5 return contained; } bool VerbatimText::operator==(const ValueItem &other) const { const VerbatimText *otherVerbatimText = dynamic_cast(&other); if (otherVerbatimText != nullptr) { return otherVerbatimText->text() == text(); } else return false; } bool VerbatimText::isVerbatimText(const ValueItem &other) { return typeid(other) == typeid(VerbatimText); } QDebug operator<<(QDebug dbg, const VerbatimText &verbatimText) { dbg.nospace() << "VerbatimText " << verbatimText.text(); return dbg; } Value::Value() : QVector >() { /// nothing } Value::Value(const Value &other) : QVector >(other) { /// nothing } Value::Value(Value &&other) : QVector >(other) { /// nothing } Value::~Value() { clear(); } void Value::replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) { QSet > unique; /// Delegate the replace operation to each individual ValueItem /// contained in this Value object for (Value::Iterator it = begin(); it != end();) { (*it)->replace(before, after, replaceMode); bool containedInUnique = false; for (const auto &valueItem : const_cast > &>(unique)) { containedInUnique = *valueItem.data() == *(*it).data(); if (containedInUnique) break; } if (containedInUnique) it = erase(it); else { unique.insert(*it); ++it; } } QSet uniqueValueItemTexts; for (int i = count() - 1; i >= 0; --i) { at(i)->replace(before, after, replaceMode); const QString valueItemText = PlainTextValue::text(*at(i).data()); if (uniqueValueItemTexts.contains(valueItemText)) { /// Due to a replace/delete operation above, an old ValueItem's text /// matches the replaced text. /// Therefore, remove the replaced text to avoid duplicates remove(i); ++i; /// compensate for for-loop's --i } else uniqueValueItemTexts.insert(valueItemText); } } void Value::replace(const QString &before, const QSharedPointer &after) { const QString valueText = PlainTextValue::text(*this); if (valueText == before) { clear(); append(after); } else { QSet uniqueValueItemTexts; for (int i = count() - 1; i >= 0; --i) { QString valueItemText = PlainTextValue::text(*at(i).data()); if (valueItemText == before) { /// Perform replacement operation QVector >::replace(i, after); valueItemText = PlainTextValue::text(*after.data()); // uniqueValueItemTexts.insert(PlainTextValue::text(*after.data())); } if (uniqueValueItemTexts.contains(valueItemText)) { /// Due to a previous replace operation, an existingValueItem's /// text matches a text which was inserted as an "after" ValueItem. /// Therefore, remove the old ValueItem to avoid duplicates. remove(i); } else { /// Neither a replacement, nor a duplicate. Keep this /// ValueItem (memorize as unique) and continue. uniqueValueItemTexts.insert(valueItemText); } } } } bool Value::containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive) const { for (const auto &valueItem : const_cast(*this)) { if (valueItem->containsPattern(pattern, caseSensitive)) return true; } return false; } bool Value::contains(const ValueItem &item) const { for (const auto &valueItem : const_cast(*this)) if (valueItem->operator==(item)) return true; return false; } Value &Value::operator=(const Value &rhs) { return static_cast(QVector >::operator =((rhs))); } Value &Value::operator=(Value &&rhs) { return static_cast(QVector >::operator =((rhs))); } QDebug operator<<(QDebug dbg, const Value &value) { dbg.nospace() << "Value"; if (value.isEmpty()) dbg << " is empty"; else dbg.nospace() << ": " << PlainTextValue::text(value); return dbg; } QString PlainTextValue::text(const Value &value) { ValueItemType vit = VITOther; ValueItemType lastVit = VITOther; QString result; for (const auto &valueItem : value) { QString nextText = text(*valueItem, vit); if (!nextText.isEmpty()) { if (lastVit == VITPerson && vit == VITPerson) result.append(i18n(" and ")); // TODO proper list of authors/editors, not just joined by "and" else if (lastVit == VITPerson && vit == VITOther && nextText == QStringLiteral("others")) { /// "and others" case: replace text to be appended by translated variant nextText = i18n(" and others"); } else if (lastVit == VITKeyword && vit == VITKeyword) result.append("; "); else if (!result.isEmpty()) result.append(" "); result.append(nextText); lastVit = vit; } } return result; } QString PlainTextValue::text(const QSharedPointer &valueItem) { const ValueItem *p = valueItem.data(); return text(*p); } QString PlainTextValue::text(const ValueItem &valueItem) { ValueItemType vit; return text(valueItem, vit); } QString PlainTextValue::text(const ValueItem &valueItem, ValueItemType &vit) { QString result; vit = VITOther; #ifdef HAVE_KF5 if (notificationListener == nullptr) notificationListener = new PlainTextValue(); #endif // HAVE_KF5 bool isVerbatim = false; const PlainText *plainText = dynamic_cast(&valueItem); if (plainText != nullptr) { result = plainText->text(); } else { const MacroKey *macroKey = dynamic_cast(&valueItem); if (macroKey != nullptr) { result = macroKey->text(); // TODO Use File to resolve key to full text } else { const Person *person = dynamic_cast(&valueItem); if (person != nullptr) { result = Person::transcribePersonName(person, personNameFormatting); vit = VITPerson; } else { const Keyword *keyword = dynamic_cast(&valueItem); if (keyword != nullptr) { result = keyword->text(); vit = VITKeyword; } else { const VerbatimText *verbatimText = dynamic_cast(&valueItem); if (verbatimText != nullptr) { result = verbatimText->text(); isVerbatim = true; } else qWarning() << "Cannot interpret ValueItem to one of its descendants"; } } } } /// clean up result string const int len = result.length(); int j = 0; static const QChar cbo = QLatin1Char('{'), cbc = QLatin1Char('}'), bs = QLatin1Char('\\'), mns = QLatin1Char('-'), comma = QLatin1Char(','), thinspace = QChar(0x2009), tilde = QLatin1Char('~'), nobreakspace = QChar(0x00a0); for (int i = 0; i < len; ++i) { if ((result[i] == cbo || result[i] == cbc) && (i < 1 || result[i - 1] != bs)) { /// hop over curly brackets } else if (i < len - 1 && result[i] == bs && result[i + 1] == mns) { /// hop over hyphenation commands ++i; } else if (i < len - 1 && result[i] == bs && result[i + 1] == comma) { /// place '\,' with a thin space result[j] = thinspace; ++i; ++j; } else if (!isVerbatim && result[i] == tilde && (i < 1 || result[i - 1] != bs)) { /// replace '~' with a non-breaking space, /// except if text was verbatim (e.g. a 'localfile' value /// like '~/document.pdf' or 'document.pdf~') result[j] = nobreakspace; ++j; } else { if (i > j) { /// move individual characters forward in result string result[j] = result[i]; } ++j; } } result.resize(j); return result; } #ifdef HAVE_KF5 PlainTextValue::PlainTextValue() { NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); readConfiguration(); } void PlainTextValue::notificationEvent(int eventId) { if (eventId == NotificationHub::EventConfigurationChanged) readConfiguration(); } void PlainTextValue::readConfiguration() { KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, "General"); personNameFormatting = configGroup.readEntry(Preferences::keyPersonNameFormatting, Preferences::defaultPersonNameFormatting); } PlainTextValue *PlainTextValue::notificationListener = nullptr; QString PlainTextValue::personNameFormatting; #else // HAVE_KF5 const QString PlainTextValue::personNameFormatting = QStringLiteral("<%l><, %s><, %f>"); #endif // HAVE_KF5 kbibtex-0.8.1/src/data/value.h000066400000000000000000000242121331300026200161240ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef BIBTEXVALUE_H #define BIBTEXVALUE_H #include #include #include #include #include "kbibtexdata_export.h" #ifdef HAVE_KF5 #include "notificationhub.h" #endif // HAVE_KF5 class File; /** * Generic class of an information element in a @see Value object. * In BibTeX, ValueItems are concatenated by "#". */ class KBIBTEXDATA_EXPORT ValueItem { public: enum ReplaceMode {CompleteMatch, AnySubstring}; ValueItem(); virtual ~ValueItem(); virtual void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) = 0; /** * Check if this object contains text pattern @p pattern. * @param pattern Pattern to check for * @param caseSensitive Case sensitivity setting for check * @return TRUE if pattern is contained within this value, otherwise FALSE */ virtual bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const = 0; /** * Compare to instance if they contain the same content. * Subclasses implement under which conditions two instances are equal. * Subclasses of different type are never equal. * @param other other instance to compare with * @return TRUE if both instances are equal */ virtual bool operator==(const ValueItem &other) const = 0; /** * Unique numeric identifier for every ValueItem instance. * @return Unique numeric identifier */ quint64 id() const; protected: /// contains text fragments to be removed before performing a "contains pattern" operation /// includes among other "{" and "}" static const QRegExp ignoredInSorting; private: /// Unique numeric identifier const quint64 internalId; /// Keeping track of next available unique numeric identifier static quint64 internalIdCounter; }; class KBIBTEXDATA_EXPORT Keyword: public ValueItem { public: Keyword(const Keyword &other); explicit Keyword(const QString &text); void setText(const QString &text); QString text() const; void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) override; bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const override; bool operator==(const ValueItem &other) const override; /** * Cheap and fast test if another ValueItem is a Keyword object. * @param other another ValueItem object to test * @return true if ValueItem is actually a Keyword */ static bool isKeyword(const ValueItem &other); protected: QString m_text; }; class KBIBTEXDATA_EXPORT Person: public ValueItem { public: /** * Create a representation for a person's name. In bibliographies, * a person is either an author or an editor. The four parameters * cover all common parts of a name. Only first and last name are * mandatory (each person should have those). @param firstName First name of a person. Example: "Peter" @param lastName Last name of a person. Example: "Smith" @param suffix Suffix after a name. Example: "jr." */ Person(const QString &firstName, const QString &lastName, const QString &suffix = QString()); Person(const Person &other); QString firstName() const; QString lastName() const; QString suffix() const; void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) override; bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const override; bool operator==(const ValueItem &other) const override; static QString transcribePersonName(const QString &formatting, const QString &firstName, const QString &lastName, const QString &suffix = QString()); static QString transcribePersonName(const Person *person, const QString &formatting); /** * Cheap and fast test if another ValueItem is a Person object. * @param other another ValueItem object to test * @return true if ValueItem is actually a Person */ static bool isPerson(const ValueItem &other); private: QString m_firstName; QString m_lastName; QString m_suffix; }; QDebug operator<<(QDebug dbg, const Person &person); class KBIBTEXDATA_EXPORT MacroKey: public ValueItem { public: MacroKey(const MacroKey &other); explicit MacroKey(const QString &text); void setText(const QString &text); QString text() const; bool isValid(); void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) override; bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const override; bool operator==(const ValueItem &other) const override; /** * Cheap and fast test if another ValueItem is a MacroKey object. * @param other another ValueItem object to test * @return true if ValueItem is actually a MacroKey */ static bool isMacroKey(const ValueItem &other); protected: QString m_text; static const QRegExp validMacroKey; }; QDebug operator<<(QDebug dbg, const MacroKey ¯okey); class KBIBTEXDATA_EXPORT PlainText: public ValueItem { public: PlainText(const PlainText &other); explicit PlainText(const QString &text); void setText(const QString &text); QString text() const; void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) override; bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const override; bool operator==(const ValueItem &other) const override; /** * Cheap and fast test if another ValueItem is a PlainText object. * @param other another ValueItem object to test * @return true if ValueItem is actually a PlainText */ static bool isPlainText(const ValueItem &other); protected: QString m_text; }; QDebug operator<<(QDebug dbg, const PlainText &plainText); class KBIBTEXDATA_EXPORT VerbatimText: public ValueItem { public: VerbatimText(const VerbatimText &other); explicit VerbatimText(const QString &text); void setText(const QString &text); QString text() const; void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode) override; bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const override; bool operator==(const ValueItem &other) const override; /** * Cheap and fast test if another ValueItem is a VerbatimText object. * @param other another ValueItem object to test * @return true if ValueItem is actually a VerbatimText */ static bool isVerbatimText(const ValueItem &other); protected: QString m_text; private: #ifdef HAVE_KF5 struct ColorLabelPair { QString hexColor; QString label; }; static QList colorLabelPairs; static bool colorLabelPairsInitialized; #endif // HAVE_KF5 }; QDebug operator<<(QDebug dbg, const VerbatimText &verbatimText); /** * Container class to hold values of BibTeX entry fields and similar value types in BibTeX file. * A Value object is built from a list of @see ValueItem objects. * @author Thomas Fischer */ class KBIBTEXDATA_EXPORT Value: public QVector > { public: Value(); Value(const Value &other); Value(Value &&other); virtual ~Value(); void replace(const QString &before, const QString &after, ValueItem::ReplaceMode replaceMode); void replace(const QString &before, const QSharedPointer &after); /** * Check if this value contains text pattern @p pattern. * @param pattern Pattern to check for * @param caseSensitive Case sensitivity setting for check * @return TRUE if pattern is contained within this value, otherwise FALSE */ bool containsPattern(const QString &pattern, Qt::CaseSensitivity caseSensitive = Qt::CaseInsensitive) const; bool contains(const ValueItem &item) const; Value &operator=(const Value &rhs); Value &operator=(Value &&rhs); }; QDebug operator<<(QDebug dbg, const Value &value); class KBIBTEXDATA_EXPORT PlainTextValue #ifdef HAVE_KF5 : private NotificationListener #endif // HAVE_KF5 { public: static QString text(const Value &value); static QString text(const ValueItem &valueItem); static QString text(const QSharedPointer &valueItem); #ifdef HAVE_KF5 void notificationEvent(int eventId) override; #endif // HAVE_KF5 private: enum ValueItemType { VITOther = 0, VITPerson, VITKeyword}; #ifdef HAVE_KF5 PlainTextValue(); void readConfiguration(); static PlainTextValue *notificationListener; static QString personNameFormatting; #else // HAVE_KF5 static const QString personNameFormatting; #endif // HAVE_KF5 static QString text(const ValueItem &valueItem, ValueItemType &vit); }; Q_DECLARE_METATYPE(Value) #endif kbibtex-0.8.1/src/getgit.cmake000066400000000000000000000130721331300026200162150ustar00rootroot00000000000000############################################################################# # Copyright (C) 2004-2018 by Thomas Fischer # # # # This program is free software; you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation; either version 2 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # # You should have received a copy of the GNU General Public License # # along with this program; if not, see . # ############################################################################# # Inspired by: # http://stackoverflow.com/questions/3780667/use-cmake-to-get-build-time-svn-revision if (DEFINED ENV{GIT_REV} AND DEFINED ENV{GIT_BRANCH} AND NOT("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "")) message (STATUS "Git information set by environment variables GIT_REV and GIT_BRANCH") set (GIT_REV $ENV{GIT_REV}) set (GIT_BRANCH $ENV{GIT_BRANCH}) else (DEFINED ENV{GIT_REV} AND DEFINED ENV{GIT_BRANCH} AND NOT("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "")) set(GIT_REV "") set(GIT_BRANCH "") if (EXISTS ${SOURCE_DIR}/.git) # Git find_program( GIT_EXECUTABLE NAMES git.bat git ) # for Windows, "git.bat" must be found before "git" if (GIT_EXECUTABLE) execute_process ( WORKING_DIRECTORY "${SOURCE_DIR}" COMMAND ${GIT_EXECUTABLE} rev-parse --short HEAD OUTPUT_VARIABLE GIT_REV OUTPUT_STRIP_TRAILING_WHITESPACE ) execute_process ( WORKING_DIRECTORY "${SOURCE_DIR}" COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref HEAD OUTPUT_VARIABLE GIT_BRANCH OUTPUT_STRIP_TRAILING_WHITESPACE ) else (GIT_EXECUTABLE) message( "No Git executable" ) endif (GIT_EXECUTABLE) else (EXISTS ${SOURCE_DIR}/.git) message( "Not a Git source directory" ) endif (EXISTS ${SOURCE_DIR}/.git) endif (DEFINED ENV{GIT_REV} AND DEFINED ENV{GIT_BRANCH} AND NOT("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "")) # write a header file defining VERSION file( WRITE "${BINARY_DIR}/kbibtex-git-info.h.tmp" "/// This file has been automatically generated by 'getgit.cmake'.\n/// Do not edit or modify it.\n\n" ) if ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "/// This source code does not come from a Git checkout or\n/// determining the Git revision or branch failed.\n/// Please consider setting environment variables GIT_REV and\n/// GIT_BRANCH before running the build tool (make, ninja, ...).\n\n" ) endif ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#ifndef KBIBTEX_GIT_INFO_H\n" ) file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#define KBIBTEX_GIT_INFO_H\n" ) file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#define KBIBTEX_GIT_REV_STRING \"${GIT_REV}\"\n" ) file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#define KBIBTEX_GIT_BRANCH_STRING \"${GIT_BRANCH}\"\n" ) if ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#define KBIBTEX_GIT_INFO_STRING \"\"\n" ) else ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#define KBIBTEX_GIT_INFO_STRING \"${GIT_REV} (${GIT_BRANCH})\"\n" ) endif ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") file( APPEND "${BINARY_DIR}/kbibtex-git-info.h.tmp" "#endif // KBIBTEX_GIT_INFO_H\n" ) if ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") message( STATUS "Source does not come from a Git checkout or determining the Git revision or branch failed" ) else ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") message( STATUS "Git revision is " ${GIT_REV} "\nGit branch is " ${GIT_BRANCH} ) endif ("${GIT_REV}" STREQUAL "" OR "${GIT_BRANCH}" STREQUAL "") if( EXISTS "${BINARY_DIR}/kbibtex-git-info.h.tmp" ) execute_process( COMMAND ${CMAKE_COMMAND} -E copy_if_different "kbibtex-git-info.h.tmp" "kbibtex-git-info.h" WORKING_DIRECTORY "${BINARY_DIR}" ) execute_process( COMMAND ${CMAKE_COMMAND} -E remove "kbibtex-git-info.h.tmp" WORKING_DIRECTORY "${BINARY_DIR}" ) else( EXISTS "${BINARY_DIR}/kbibtex-git-info.h.tmp" ) message( STATUS "${BINARY_DIR}/kbibtex-git-info.h.tmp does not exist" ) endif( EXISTS "${BINARY_DIR}/kbibtex-git-info.h.tmp" ) kbibtex-0.8.1/src/global/000077500000000000000000000000001331300026200151655ustar00rootroot00000000000000kbibtex-0.8.1/src/global/kbibtex.cpp000066400000000000000000000107211331300026200173220ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "kbibtex.h" #include #include const QString KBibTeX::extensionTeX = QStringLiteral(".tex"); const QString KBibTeX::extensionAux = QStringLiteral(".aux"); const QString KBibTeX::extensionBBL = QStringLiteral(".bbl"); const QString KBibTeX::extensionBLG = QStringLiteral(".blg"); const QString KBibTeX::extensionBibTeX = QStringLiteral(".bib"); const QString KBibTeX::extensionPDF = QStringLiteral(".pdf"); const QString KBibTeX::extensionPostScript = QStringLiteral(".ps"); const QString KBibTeX::extensionRTF = QStringLiteral(".rtf"); const QString KBibTeX::Months[] = { QStringLiteral("January"), QStringLiteral("February"), QStringLiteral("March"), QStringLiteral("April"), QStringLiteral("May"), QStringLiteral("June"), QStringLiteral("July"), QStringLiteral("August"), QStringLiteral("September"), QStringLiteral("October"), QStringLiteral("November"), QStringLiteral("December") }; const QString KBibTeX::MonthsTriple[] = { QStringLiteral("jan"), QStringLiteral("feb"), QStringLiteral("mar"), QStringLiteral("apr"), QStringLiteral("may"), QStringLiteral("jun"), QStringLiteral("jul"), QStringLiteral("aug"), QStringLiteral("sep"), QStringLiteral("oct"), QStringLiteral("nov"), QStringLiteral("dec") }; const QRegExp KBibTeX::fileListSeparatorRegExp(QStringLiteral("[ \\t]*[;\\n]+[ \\t]*")); const QRegExp KBibTeX::fileRegExp(QRegExp(QStringLiteral("(\\bfile:)?[^{}\\t]+\\.\\w{2,4}\\b"), Qt::CaseInsensitive)); const QRegExp KBibTeX::urlRegExp(QRegExp(QStringLiteral("\\b(http|s?ftp|webdav|file)s?://[^ {}\"]+(\\b|[/])"), Qt::CaseInsensitive)); const QRegExp KBibTeX::doiRegExp(QRegExp(QStringLiteral("\\b10([.][0-9]+)+/[/-a-z0-9.()<>_:;\\\\]+"), Qt::CaseInsensitive)); const QRegExp KBibTeX::mendeleyFileRegExp(QRegExp(QStringLiteral(":(.*):pdf"), Qt::CaseInsensitive)); const QString KBibTeX::doiUrlPrefix(QStringLiteral("http://dx.doi.org/")); ///< use FileInfo::doiUrlPrefix() instead const QRegExp KBibTeX::domainNameRegExp(QRegExp(QStringLiteral("[a-z0-9.-]+\\.((a[cdefgilmnoqrstuwxz]|aero|arpa)|(b[abdefghijmnorstvwyz]|biz)|(c[acdfghiklmnorsuvxyz]|cat|com|coop)|d[ejkmoz]|(e[ceghrstu]|edu)|f[ijkmor]|(g[abdefghilmnpqrstuwy]|gov)|h[kmnrtu]|(i[delmnoqrst]|info|int)|(j[emop]|jobs)|k[eghimnprwyz]|l[abcikrstuvy]|(m[acdghklmnopqrstuvwxyz]|me|mil|mobi|museum)|(n[acefgilopruz]|name|net)|(om|org)|(p[aefghklmnrstwy]|pro)|qa|r[eouw]|s[abcdeghijklmnortvyz]|(t[cdfghjklmnoprtvwz]|travel)|u[agkmsyz]|v[aceginu]|w[fs]|y[etu]|z[amw])\\b"), Qt::CaseInsensitive)); const QRegExp KBibTeX::htmlRegExp(QStringLiteral("{}]{,32}>"), Qt::CaseInsensitive); bool KBibTeX::isLocalOrRelative(const QUrl &url) { return url.isLocalFile() || url.isRelative() || url.scheme().isEmpty(); } /** * Poor man's variant of a text-squeezing function. * Effect is similar as observed in KSqueezedTextLabel: * If the text is longer as n characters, the middle part * will be cut away and replaced by "..." to get a * string of max n characters. */ QString KBibTeX::squeezeText(const QString &text, int n) { return text.length() <= n ? text : text.left(n / 2 - 1) + QStringLiteral("...") + text.right(n / 2 - 2); } QString KBibTeX::leftSqueezeText(const QString &text, int n) { return text.length() <= n ? text : text.left(n) + QStringLiteral("..."); } kbibtex-0.8.1/src/global/kbibtex.h000066400000000000000000000066451331300026200170010ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GLOBAL_KBIBTEX_H #define KBIBTEX_GLOBAL_KBIBTEX_H #include #include #define squeeze_text(text, n) ((text).length()<=(n)?(text):(text).left((n)/2-1)+QStringLiteral("...")+(text).right((n)/2-2)) /** @author Thomas Fischer */ class KBibTeX { public: static const QString extensionTeX; static const QString extensionAux; static const QString extensionBBL; static const QString extensionBLG; static const QString extensionBibTeX; static const QString extensionPDF; static const QString extensionPostScript; static const QString extensionRTF; enum Casing { cLowerCase = 0, cInitialCapital = 1, cUpperCamelCase = 2, cLowerCamelCase = 3, cUpperCase = 4 }; enum FieldInputType { SingleLine = 1, MultiLine = 2, List = 3, URL = 4, Month = 5, Color = 6, PersonList = 7, UrlList = 8, KeywordList = 9, CrossRef = 10, StarRating = 11 }; enum TypeFlag { tfPlainText = 0x1, tfReference = 0x2, tfPerson = 0x4, tfKeyword = 0x8, tfVerbatim = 0x10, tfSource = 0x100 }; Q_DECLARE_FLAGS(TypeFlags, TypeFlag) static const QString Months[], MonthsTriple[]; static const QRegExp fileListSeparatorRegExp; static const QRegExp fileRegExp; static const QRegExp urlRegExp; static const QRegExp doiRegExp; static const QRegExp mendeleyFileRegExp; static const QString doiUrlPrefix; ///< use FileInfo::doiUrlPrefix() instead static const QRegExp domainNameRegExp; static const QRegExp htmlRegExp; static bool isLocalOrRelative(const QUrl &url); /** * Poor man's variant of a text-squeezing function. * Effect is similar as observed in KSqueezedTextLabel: * If the text is longer as n characters, the middle part * will be cut away and replaced by "..." to get a * string of max n characters. */ static QString squeezeText(const QString &text, int n); static QString leftSqueezeText(const QString &text, int n); }; Q_DECLARE_OPERATORS_FOR_FLAGS(KBibTeX::TypeFlags) #endif // KBIBTEX_GLOBAL_KBIBTEX_H kbibtex-0.8.1/src/global/preferences.cpp000066400000000000000000000076151331300026200202030ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "preferences.h" #include const QString Preferences::groupColor = QStringLiteral("Color Labels"); const QString Preferences::keyColorCodes = QStringLiteral("colorCodes"); const QStringList Preferences::defaultColorCodes = QStringList() << QStringLiteral("#cc3300") << QStringLiteral("#0033ff") << QStringLiteral("#009966") << QStringLiteral("#f0d000"); const QString Preferences::keyColorLabels = QStringLiteral("colorLabels"); // FIXME // clazy warns: QString(const char*) being called [-Wclazy-qstring-uneeded-heap-allocations] // ... but using QStringLiteral may break the translation process? const QStringList Preferences::defaultColorLabels = QStringList() << I18N_NOOP("Important") << I18N_NOOP("Unread") << I18N_NOOP("Read") << I18N_NOOP("Watch"); const QString Preferences::groupGeneral = QStringLiteral("General"); const QString Preferences::keyBackupScope = QStringLiteral("backupScope"); const Preferences::BackupScope Preferences::defaultBackupScope = LocalOnly; const QString Preferences::keyNumberOfBackups = QStringLiteral("numberOfBackups"); const int Preferences::defaultNumberOfBackups = 5; const QString Preferences::groupUserInterface = QStringLiteral("User Interface"); const QString Preferences::keyElementDoubleClickAction = QStringLiteral("elementDoubleClickAction"); const Preferences::ElementDoubleClickAction Preferences::defaultElementDoubleClickAction = ActionOpenEditor; const QString Preferences::keyEncoding = QStringLiteral("encoding"); const QString Preferences::defaultEncoding = QStringLiteral("LaTeX"); const QString Preferences::keyStringDelimiter = QStringLiteral("stringDelimiter"); const QString Preferences::defaultStringDelimiter = QStringLiteral("{}"); const QString Preferences::keyQuoteComment = QStringLiteral("quoteComment"); const Preferences::QuoteComment Preferences::defaultQuoteComment = qcNone; const QString Preferences::keyKeywordCasing = QStringLiteral("keywordCasing"); const KBibTeX::Casing Preferences::defaultKeywordCasing = KBibTeX::cLowerCase; const QString Preferences::keyProtectCasing = QStringLiteral("protectCasing"); const Qt::CheckState Preferences::defaultProtectCasing = Qt::PartiallyChecked; const QString Preferences::keyListSeparator = QStringLiteral("ListSeparator"); const QString Preferences::defaultListSeparator = QStringLiteral("; "); /** * Preferences for Data objects */ const QString Preferences::keyPersonNameFormatting = QStringLiteral("personNameFormatting"); const QString Preferences::personNameFormatLastFirst = QStringLiteral("<%l><, %s><, %f>"); const QString Preferences::personNameFormatFirstLast = QStringLiteral("<%f ><%l>< %s>"); const QString Preferences::defaultPersonNameFormatting = personNameFormatLastFirst; kbibtex-0.8.1/src/global/preferences.h000066400000000000000000000056311331300026200176440ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GLOBAL_PREFERENCES_H #define KBIBTEX_GLOBAL_PREFERENCES_H #include "kbibtex.h" /** @author Thomas Fischer */ class Preferences { public: enum BackupScope { NoBackup, LocalOnly, BothLocalAndRemote }; enum ElementDoubleClickAction { ActionOpenEditor = 0, ActionViewDocument = 1 }; /** * Preferences for File objects */ enum QuoteComment { qcNone = 0, qcCommand = 1, qcPercentSign = 2 }; static const QString groupColor; static const QString keyColorCodes; static const QStringList defaultColorCodes; static const QString keyColorLabels; static const QStringList defaultColorLabels; static const QString groupGeneral; static const QString keyBackupScope; static const BackupScope defaultBackupScope; static const QString keyNumberOfBackups; static const int defaultNumberOfBackups; static const QString groupUserInterface; static const QString keyElementDoubleClickAction; static const ElementDoubleClickAction defaultElementDoubleClickAction; static const QString keyEncoding; static const QString defaultEncoding; static const QString keyStringDelimiter; static const QString defaultStringDelimiter; static const QString keyQuoteComment; static const QuoteComment defaultQuoteComment; static const QString keyKeywordCasing; static const KBibTeX::Casing defaultKeywordCasing; static const QString keyProtectCasing; static const Qt::CheckState defaultProtectCasing; static const QString keyListSeparator; static const QString defaultListSeparator; static const QString keyPersonNameFormatting; static const QString personNameFormatLastFirst; static const QString personNameFormatFirstLast; static const QString defaultPersonNameFormatting; }; #endif // KBIBTEX_GLOBAL_PREFERENCES_H kbibtex-0.8.1/src/gui/000077500000000000000000000000001331300026200145115ustar00rootroot00000000000000kbibtex-0.8.1/src/gui/CMakeLists.txt000066400000000000000000000071601331300026200172550ustar00rootroot00000000000000# KBibTeX GUI library set( kbibtexgui_LIB_SRCS field/fieldinput.cpp field/fieldlineedit.cpp field/fieldlistedit.cpp field/colorlabelwidget.cpp file/fileview.cpp file/filedelegate.cpp file/partwidget.cpp file/findduplicatesui.cpp file/clipboard.cpp file/basicfileview.cpp file/sortfilterfilemodel.cpp element/elementeditor.cpp element/elementwidgets.cpp element/findpdfui.cpp element/associatedfilesui.cpp widgets/menulineedit.cpp widgets/filesettingswidget.cpp widgets/filterbar.cpp widgets/radiobuttontreeview.cpp widgets/hidingtabwidget.cpp widgets/starrating.cpp widgets/rangewidget.cpp config/entrylayout.cpp preferences/kbibtexpreferencesdialog.cpp preferences/settingsgeneralwidget.cpp preferences/settingsglobalkeywordswidget.cpp preferences/settingscolorlabelwidget.cpp preferences/settingsuserinterfacewidget.cpp preferences/settingsfileexporterpdfpswidget.cpp preferences/settingsfileexporterwidget.cpp preferences/settingsabstractwidget.cpp preferences/settingsidsuggestionswidget.cpp preferences/settingsidsuggestionseditor.cpp guihelper.cpp italictextitemmodel.cpp valuelistmodel.cpp delayedexecutiontimer.cpp ${CMAKE_SOURCE_DIR}/src/global/kbibtex.cpp ${CMAKE_SOURCE_DIR}/src/global/preferences.cpp logging_gui.cpp ) set( kbibtexgui_HDRS field/fieldinput.h field/colorlabelwidget.h field/fieldlineedit.h widgets/filterbar.h preferences/settingsuserinterfacewidget.h preferences/kbibtexpreferencesdialog.h preferences/settingsglobalkeywordswidget.h preferences/settingsfileexporterwidget.h preferences/settingsgeneralwidget.h preferences/settingsabstractwidget.h preferences/settingscolorlabelwidget.h preferences/settingsfileexporterpdfpswidget.h preferences/settingsidsuggestionswidget.h preferences/settingsidsuggestionseditor.h guihelper.h valuelistmodel.h italictextitemmodel.h delayedexecutiontimer.h file/findduplicatesui.h file/basicfileview.h file/clipboard.h file/fileview.h file/filedelegate.h file/sortfilterfilemodel.h file/partwidget.h element/findpdfui.h element/elementeditor.h element/associatedfilesui.h ) if(UNITY_BUILD) enable_unity_build(kbibtexgui kbibtexgui_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_BINARY_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/io/config ${CMAKE_SOURCE_DIR}/src/networking ${CMAKE_BINARY_DIR}/src/networking ${CMAKE_SOURCE_DIR}/src/processing ${CMAKE_BINARY_DIR}/src/processing ${CMAKE_SOURCE_DIR}/src/gui ${CMAKE_BINARY_DIR}/src/gui ${CMAKE_SOURCE_DIR}/src/gui/file ${CMAKE_SOURCE_DIR}/src/gui/dialogs ${CMAKE_SOURCE_DIR}/src/gui/element ${CMAKE_SOURCE_DIR}/src/gui/field ${CMAKE_SOURCE_DIR}/src/gui/widgets ${CMAKE_SOURCE_DIR}/src/gui/config ${CMAKE_SOURCE_DIR}/src/global ) add_library( kbibtexgui SHARED ${kbibtexgui_LIB_SRCS} ) target_link_libraries( kbibtexgui Qt5::Core KF5::IconThemes KF5::ItemViews KF5::Completion kbibtexconfig kbibtexdata kbibtexio kbibtexnetworking kbibtexproc ) set_target_properties( kbibtexgui PROPERTIES EXPORT_NAME "kbibtexgui" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexgui ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexgui ) kbibtex-0.8.1/src/gui/config/000077500000000000000000000000001331300026200157565ustar00rootroot00000000000000kbibtex-0.8.1/src/gui/config/entrylayout.cpp000066400000000000000000000173671331300026200210770ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "entrylayout.h" #include #include #include #include #include "logging_gui.h" static const int entryLayoutMaxTabCount = 256; static const int entryLayoutMaxFieldPerTabCount = 256; class EntryLayout::EntryLayoutPrivate { public: EntryLayout *p; KSharedConfigPtr layoutConfig; static EntryLayout *singleton; EntryLayoutPrivate(EntryLayout *parent) : p(parent) { KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, QString(QStringLiteral("User Interface"))); const QString stylefile = configGroup.readEntry("CurrentStyle", "bibtex").append(".kbstyle").prepend("kbibtex/"); layoutConfig = KSharedConfig::openConfig(stylefile, KConfig::FullConfig, QStandardPaths::GenericDataLocation); } static QString convert(KBibTeX::FieldInputType fil) { switch (fil) { case KBibTeX::SingleLine : return QStringLiteral("SingleLine"); case KBibTeX::MultiLine : return QStringLiteral("MultiLine"); case KBibTeX::List : return QStringLiteral("List"); case KBibTeX::URL : return QStringLiteral("URL"); case KBibTeX::Month : return QStringLiteral("Month"); case KBibTeX::Color : return QStringLiteral("Color"); case KBibTeX::PersonList : return QStringLiteral("PersonList"); case KBibTeX::KeywordList : return QStringLiteral("KeywordList"); case KBibTeX::CrossRef : return QStringLiteral("CrossRef"); case KBibTeX::StarRating : return QStringLiteral("StarRating"); case KBibTeX::UrlList : return QStringLiteral("UrlList"); } return QString(); } static KBibTeX::FieldInputType convert(const QString &text) { if (text == QStringLiteral("List")) return KBibTeX::List; else if (text == QStringLiteral("MultiLine")) return KBibTeX::MultiLine; else if (text == QStringLiteral("URL")) return KBibTeX::URL; else if (text == QStringLiteral("UrlList")) return KBibTeX::UrlList; else if (text == QStringLiteral("Month")) return KBibTeX::Month; else if (text == QStringLiteral("Color")) return KBibTeX::Color; else if (text == QStringLiteral("PersonList")) return KBibTeX::PersonList; else if (text == QStringLiteral("KeywordList")) return KBibTeX::KeywordList; else if (text == QStringLiteral("CrossRef")) return KBibTeX::CrossRef; else if (text == QStringLiteral("StarRating")) return KBibTeX::StarRating; else return KBibTeX::SingleLine; } }; EntryLayout *EntryLayout::EntryLayoutPrivate::singleton = nullptr; EntryLayout::EntryLayout() : QVector >(), d(new EntryLayoutPrivate(this)) { load(); } EntryLayout::~EntryLayout() { delete d; } EntryLayout *EntryLayout::self() { if (EntryLayoutPrivate::singleton == nullptr) EntryLayoutPrivate::singleton = new EntryLayout(); return EntryLayoutPrivate::singleton; } void EntryLayout::load() { clear(); QString groupName = QStringLiteral("EntryLayoutTab"); KConfigGroup configGroup(d->layoutConfig, groupName); int tabCount = qMin(configGroup.readEntry("count", 0), entryLayoutMaxTabCount); for (int tab = 1; tab <= tabCount; ++tab) { QString groupName = QString(QStringLiteral("EntryLayoutTab%1")).arg(tab); KConfigGroup configGroup(d->layoutConfig, groupName); QSharedPointer etl = QSharedPointer(new EntryTabLayout); etl->uiCaption = i18n(configGroup.readEntry("uiCaption", QString()).toUtf8().constData()); etl->iconName = configGroup.readEntry("iconName", "entry"); etl->columns = configGroup.readEntry("columns", 1); if (etl->uiCaption.isEmpty()) continue; int fieldCount = qMin(configGroup.readEntry("count", 0), entryLayoutMaxFieldPerTabCount); for (int field = 1; field <= fieldCount; ++field) { SingleFieldLayout sfl; sfl.bibtexLabel = configGroup.readEntry(QString(QStringLiteral("bibtexLabel%1")).arg(field), QString()); sfl.uiLabel = i18n(configGroup.readEntry(QString(QStringLiteral("uiLabel%1")).arg(field), QString()).toUtf8().constData()); sfl.fieldInputLayout = EntryLayoutPrivate::convert(configGroup.readEntry(QString(QStringLiteral("fieldInputLayout%1")).arg(field), "SingleLine")); if (sfl.bibtexLabel.isEmpty() || sfl.uiLabel.isEmpty()) continue; etl->singleFieldLayouts.append(sfl); } append(etl); } if (isEmpty()) qCWarning(LOG_KBIBTEX_GUI) << "List of entry layouts is empty"; } void EntryLayout::save() { int tabCount = 0; for (const auto &etl : const_cast(*this)) { ++tabCount; QString groupName = QString(QStringLiteral("EntryLayoutTab%1")).arg(tabCount); KConfigGroup configGroup(d->layoutConfig, groupName); configGroup.writeEntry(QStringLiteral("uiCaption"), etl->uiCaption); configGroup.writeEntry(QStringLiteral("iconName"), etl->iconName); configGroup.writeEntry(QStringLiteral("columns"), etl->columns); int fieldCount = 0; for (const SingleFieldLayout &sfl : const_cast &>(etl->singleFieldLayouts)) { ++fieldCount; configGroup.writeEntry(QString(QStringLiteral("bibtexLabel%1")).arg(fieldCount), sfl.bibtexLabel); configGroup.writeEntry(QString(QStringLiteral("uiLabel%1")).arg(fieldCount), sfl.uiLabel); configGroup.writeEntry(QString(QStringLiteral("fieldInputLayout%1")).arg(fieldCount), EntryLayoutPrivate::convert(sfl.fieldInputLayout)); } configGroup.writeEntry(QStringLiteral("count"), fieldCount); } QString groupName = QStringLiteral("EntryLayoutTab"); KConfigGroup configGroup(d->layoutConfig, groupName); configGroup.writeEntry(QStringLiteral("count"), tabCount); d->layoutConfig->sync(); } void EntryLayout::resetToDefaults() { QString groupName = QStringLiteral("EntryLayoutTab"); KConfigGroup configGroup(d->layoutConfig, groupName); configGroup.deleteGroup(); for (int tab = 1; tab < entryLayoutMaxTabCount; ++tab) { QString groupName = QString(QStringLiteral("EntryLayoutTab%1")).arg(tab); KConfigGroup configGroup(d->layoutConfig, groupName); configGroup.deleteGroup(); } load(); } kbibtex-0.8.1/src/gui/config/entrylayout.h000066400000000000000000000037651331300026200205410ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_ENTRYLAYOUT_H #define KBIBTEX_GUI_ENTRYLAYOUT_H #include #include #include #include "kbibtex.h" typedef struct { QString uiLabel; QString bibtexLabel; KBibTeX::FieldInputType fieldInputLayout; } SingleFieldLayout; typedef struct { QString uiCaption; QString iconName; int columns; QList singleFieldLayouts; } EntryTabLayout; /** @author Thomas Fischer */ class EntryLayout : public QVector > { public: virtual ~EntryLayout(); static EntryLayout *self(); void load(); void save(); void resetToDefaults(); protected: EntryLayout(); private: class EntryLayoutPrivate; EntryLayoutPrivate *d; }; #endif // KBIBTEX_GUI_ENTRYLAYOUT_H kbibtex-0.8.1/src/gui/delayedexecutiontimer.cpp000066400000000000000000000057541331300026200216240ustar00rootroot00000000000000// krazy:excludeall=copyright,license /* Copyright (c) 2011, Andre Somers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Rathenau Instituut, Andre Somers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANDRE SOMERS AND/OR RATHENAU INSTITUTE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* Found at http://qt-project.org/wiki/Delay_action_to_wait_for_user_interaction modified/simplified by Thomas Fischer */ #include "delayedexecutiontimer.h" #include #include DelayedExecutionTimer::DelayedExecutionTimer(int maximumDelay, int minimumDelay, QObject *parent): QObject(parent), m_isEnabled(true), m_minimumDelay(minimumDelay), m_maximumDelay(maximumDelay), m_minimumTimer(new QTimer(this)), m_maximumTimer(new QTimer(this)) { connect(m_minimumTimer, &QTimer::timeout, this, &DelayedExecutionTimer::timeout); connect(m_maximumTimer, &QTimer::timeout, this, &DelayedExecutionTimer::timeout); } DelayedExecutionTimer::DelayedExecutionTimer(QObject *parent): QObject(parent), m_isEnabled(true), m_minimumDelay(250), m_maximumDelay(1000), m_minimumTimer(new QTimer(this)), m_maximumTimer(new QTimer(this)) { connect(m_minimumTimer, &QTimer::timeout, this, &DelayedExecutionTimer::timeout); connect(m_maximumTimer, &QTimer::timeout, this, &DelayedExecutionTimer::timeout); } void DelayedExecutionTimer::timeout() { m_minimumTimer->stop(); m_maximumTimer->stop(); emit triggered(); } void DelayedExecutionTimer::trigger() { if (!m_isEnabled) return; /// ignore trigger events if disabled if (!m_maximumTimer->isActive()) { m_maximumTimer->start(m_maximumDelay); } m_minimumTimer->stop(); m_minimumTimer->start(m_minimumDelay); } kbibtex-0.8.1/src/gui/delayedexecutiontimer.h000066400000000000000000000062701331300026200212630ustar00rootroot00000000000000// krazy:excludeall=copyright,license /* Copyright (c) 2011, Andre Somers All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Rathenau Instituut, Andre Somers nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANDRE SOMERS AND/OR RATHENAU INSTITUTE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* Found at http://qt-project.org/wiki/Delay_action_to_wait_for_user_interaction modified/simplified by Thomas Fischer */ #ifndef DELAYEDEXECUTIONTIMER_H #define DELAYEDEXECUTIONTIMER_H #include class QTimer; /** Class to delay execution an action in response to events that may come in bursts */ class DelayedExecutionTimer : public QObject { Q_OBJECT public: explicit DelayedExecutionTimer(int maximumDelay = 1000, int minimumDelay = 250, QObject *parent = nullptr); explicit DelayedExecutionTimer(QObject *parent); /** The minimum delay is the time the class will wait after being triggered before emitting the triggered() signals. */ void setMinimumDelay(int delay) { m_minimumDelay = delay; } int minimumDelay() const { return m_minimumDelay; } /** The maximum delay is the maximum time that will pass before a call to the trigger() slot leads to a triggered() signal. */ void setMaximumDelay(int delay) { m_maximumDelay = delay; } int maximumDelay() const { return m_maximumDelay; } /** * Toggle if this timer is reacting on trigger signals. * This timer may still send out trigger events itself. * @param isEnabled timer will react if set to true */ void setEnabled(bool isEnabled) { m_isEnabled = isEnabled; } signals: void triggered(); public slots: void trigger(); private slots: void timeout(); private: bool m_isEnabled; int m_minimumDelay; int m_maximumDelay; QTimer *m_minimumTimer; QTimer *m_maximumTimer; }; #endif // DELAYEDEXECUTIONTIMER_H kbibtex-0.8.1/src/gui/element/000077500000000000000000000000001331300026200161425ustar00rootroot00000000000000kbibtex-0.8.1/src/gui/element/associatedfilesui.cpp000066400000000000000000000332071331300026200223530ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "associatedfilesui.h" #include #include #include #include #include #include #include #include #include #include #include class AssociatedFilesUI::Private { private: AssociatedFilesUI *p; public: QLabel *labelGreeting; KLineEdit *lineEditSourceUrl; QRadioButton *radioNoCopyMove, *radioCopyFile, *radioMoveFile; QLabel *labelMoveCopyLocation; KLineEdit *lineMoveCopyLocation; QGroupBox *groupBoxRename; QRadioButton *radioKeepFilename, *radioRenameToEntryId, *radioUserDefinedName; KLineEdit *lineEditUserDefinedName; QGroupBox *groupBoxPathType; QRadioButton *radioRelativePath, *radioAbsolutePath; KLineEdit *linePreview; QUrl sourceUrl; QSharedPointer entry; QString entryId; const File *bibTeXfile; Private(AssociatedFilesUI *parent) : p(parent), entry(QSharedPointer()), bibTeXfile(nullptr) { setupGUI(); } void setupGUI() { QBoxLayout *layout = new QVBoxLayout(p); labelGreeting = new QLabel(p); layout->addWidget(labelGreeting); labelGreeting->setWordWrap(true); lineEditSourceUrl = new KLineEdit(p); layout->addWidget(lineEditSourceUrl); lineEditSourceUrl->setReadOnly(true); layout->addSpacing(8); QLabel *label = new QLabel(i18n("The following operations can be performed when associating the document with the entry:"), p); layout->addWidget(label); label->setWordWrap(true); QGroupBox *groupBox = new QGroupBox(i18n("File operation"), p); layout->addWidget(groupBox); QBoxLayout *groupBoxLayout = new QVBoxLayout(groupBox); QButtonGroup *buttonGroup = new QButtonGroup(groupBox); radioNoCopyMove = new QRadioButton(i18n("Do not copy or move document, only insert reference to it"), groupBox); groupBoxLayout->addWidget(radioNoCopyMove); buttonGroup->addButton(radioNoCopyMove); radioCopyFile = new QRadioButton(i18n("Copy document next to bibliography file"), groupBox); groupBoxLayout->addWidget(radioCopyFile); buttonGroup->addButton(radioCopyFile); radioMoveFile = new QRadioButton(i18n("Move document next to bibliography file"), groupBox); groupBoxLayout->addWidget(radioMoveFile); buttonGroup->addButton(radioMoveFile); connect(buttonGroup, static_cast(&QButtonGroup::buttonClicked), p, &AssociatedFilesUI::updateUIandPreview); radioNoCopyMove->setChecked(true); /// by default groupBoxLayout->addSpacing(4); labelMoveCopyLocation = new QLabel(i18n("Path and filename of bibliography file:"), groupBox); groupBoxLayout->addWidget(labelMoveCopyLocation, 1); lineMoveCopyLocation = new KLineEdit(groupBox); lineMoveCopyLocation->setReadOnly(true); groupBoxLayout->addWidget(lineMoveCopyLocation, 1); groupBoxRename = new QGroupBox(i18n("Rename Document?"), p); layout->addWidget(groupBoxRename); QGridLayout *gridLayout = new QGridLayout(groupBoxRename); gridLayout->setColumnMinimumWidth(0, 16); gridLayout->setColumnStretch(0, 0); gridLayout->setColumnStretch(1, 1); buttonGroup = new QButtonGroup(groupBoxRename); radioKeepFilename = new QRadioButton(i18n("Keep document's original filename"), groupBoxRename); gridLayout->addWidget(radioKeepFilename, 0, 0, 1, 2); buttonGroup->addButton(radioKeepFilename); radioRenameToEntryId = new QRadioButton(groupBoxRename); gridLayout->addWidget(radioRenameToEntryId, 1, 0, 1, 2); buttonGroup->addButton(radioRenameToEntryId); radioUserDefinedName = new QRadioButton(i18n("User-defined name:"), groupBoxRename); gridLayout->addWidget(radioUserDefinedName, 2, 0, 1, 2); buttonGroup->addButton(radioUserDefinedName); lineEditUserDefinedName = new KLineEdit(groupBoxRename); gridLayout->addWidget(lineEditUserDefinedName, 3, 1, 1, 1); connect(lineEditUserDefinedName, &KLineEdit::textEdited, p, &AssociatedFilesUI::updateUIandPreview); connect(buttonGroup, static_cast(&QButtonGroup::buttonClicked), p, &AssociatedFilesUI::updateUIandPreview); radioRenameToEntryId->setChecked(true); /// by default groupBoxPathType = new QGroupBox(i18n("Path as Inserted into Entry"), p); buttonGroup = new QButtonGroup(groupBoxPathType); layout->addWidget(groupBoxPathType); groupBoxLayout = new QVBoxLayout(groupBoxPathType); radioRelativePath = new QRadioButton(i18n("Relative Path"), groupBoxPathType); groupBoxLayout->addWidget(radioRelativePath); buttonGroup->addButton(radioRelativePath); radioAbsolutePath = new QRadioButton(i18n("Absolute Path"), groupBoxPathType); groupBoxLayout->addWidget(radioAbsolutePath); buttonGroup->addButton(radioAbsolutePath); connect(buttonGroup, static_cast(&QButtonGroup::buttonClicked), p, &AssociatedFilesUI::updateUIandPreview); radioRelativePath->setChecked(true); /// by default layout->addSpacing(8); label = new QLabel(i18n("Preview of reference to be inserted:"), p); layout->addWidget(label); linePreview = new KLineEdit(p); layout->addWidget(linePreview); linePreview->setReadOnly(true); layout->addStretch(10); } }; bool AssociatedFilesUI::associateUrl(const QUrl &url, QSharedPointer &entry, const File *bibTeXfile, QWidget *parent) { QPointer dlg = new QDialog(parent); QBoxLayout *layout = new QVBoxLayout(dlg); QPointer ui = new AssociatedFilesUI(entry->id(), bibTeXfile, dlg); layout->addWidget(ui); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, dlg); layout->addWidget(buttonBox); dlg->setLayout(layout); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); connect(buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, dlg.data(), &QDialog::reject); if (AssociatedFiles::urlIsLocal(url)) ui->setupForLocalFile(url, entry->id()); else ui->setupForRemoteUrl(url, entry->id()); const bool accepted = dlg->exec() == QDialog::Accepted; bool success = true; if (accepted) { const QUrl newUrl = AssociatedFiles::copyDocument(url, entry->id(), bibTeXfile, ui->renameOperation(), ui->moveCopyOperation(), dlg, ui->userDefinedFilename()); success &= !newUrl.isEmpty(); if (success) { const QString referenceString = AssociatedFiles::associateDocumentURL(newUrl, entry, bibTeXfile, ui->pathType()); success &= !referenceString.isEmpty(); } } delete dlg; return accepted && success; } QString AssociatedFilesUI::associateUrl(const QUrl &url, const QString &entryId, const File *bibTeXfile, QWidget *parent) { QPointer dlg = new QDialog(parent); QBoxLayout *layout = new QVBoxLayout(dlg); QPointer ui = new AssociatedFilesUI(entryId, bibTeXfile, dlg); layout->addWidget(ui); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, dlg); layout->addWidget(buttonBox); dlg->setLayout(layout); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); connect(buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, dlg.data(), &QDialog::reject); if (AssociatedFiles::urlIsLocal(url)) ui->setupForLocalFile(url, entryId); else ui->setupForRemoteUrl(url, entryId); const bool accepted = dlg->exec() == QDialog::Accepted; bool success = true; QString referenceString; if (accepted) { const QUrl newUrl = AssociatedFiles::copyDocument(url, entryId, bibTeXfile, ui->renameOperation(), ui->moveCopyOperation(), dlg, ui->userDefinedFilename()); success &= !newUrl.isEmpty(); if (success) { referenceString = AssociatedFiles::associateDocumentURL(newUrl, bibTeXfile, ui->pathType()); success &= !referenceString.isEmpty(); } } delete dlg; return accepted && success ? referenceString : QString(); } AssociatedFilesUI::AssociatedFilesUI(const QString &entryId, const File *bibTeXfile, QWidget *parent) : QWidget(parent), d(new AssociatedFilesUI::Private(this)) { d->entryId = entryId; d->bibTeXfile = bibTeXfile; } AssociatedFilesUI::~AssociatedFilesUI() { delete d; } AssociatedFiles::RenameOperation AssociatedFilesUI::renameOperation() const { if (d->radioRenameToEntryId->isChecked()) return AssociatedFiles::roEntryId; else if (d->radioKeepFilename->isChecked() || d->lineEditUserDefinedName->text().isEmpty()) return AssociatedFiles::roKeepName; else return AssociatedFiles::roUserDefined; } AssociatedFiles::MoveCopyOperation AssociatedFilesUI::moveCopyOperation() const { if (d->radioNoCopyMove->isChecked()) return AssociatedFiles::mcoNoCopyMove; else if (d->radioMoveFile->isChecked()) return AssociatedFiles::mcoMove; else return AssociatedFiles::mcoCopy; } AssociatedFiles::PathType AssociatedFilesUI::pathType() const { return d->radioAbsolutePath->isChecked() ? AssociatedFiles::ptAbsolute : AssociatedFiles::ptRelative; } QString AssociatedFilesUI::userDefinedFilename() const { QString text = d->lineEditUserDefinedName->text(); const int p = qMax(text.lastIndexOf(QLatin1Char('/')), text.lastIndexOf(QDir::separator())); if (p > 0) text = text.mid(p + 1); return text; } void AssociatedFilesUI::updateUIandPreview() { QString preview = i18n("No preview available"); const QString entryId = d->entryId.isEmpty() && !d->entry.isNull() ? d->entry->id() : d->entryId; if (entryId.isEmpty()) { d->radioRenameToEntryId->setEnabled(false); d->radioKeepFilename->setChecked(true); } else d->radioRenameToEntryId->setEnabled(true); if (d->bibTeXfile == nullptr || !d->bibTeXfile->hasProperty(File::Url)) { d->radioRelativePath->setEnabled(false); d->radioAbsolutePath->setChecked(true); d->labelMoveCopyLocation->hide(); d->lineMoveCopyLocation->hide(); } else { d->radioRelativePath->setEnabled(true); d->labelMoveCopyLocation->show(); d->lineMoveCopyLocation->show(); d->lineMoveCopyLocation->setText(d->bibTeXfile->property(File::Url).toUrl().path()); } if (d->bibTeXfile != nullptr && !d->sourceUrl.isEmpty() && !entryId.isEmpty()) { const QUrl newUrl = AssociatedFiles::copyDocument(d->sourceUrl, entryId, d->bibTeXfile, renameOperation(), moveCopyOperation(), nullptr, d->lineEditUserDefinedName->text(), true); if (!newUrl.isEmpty()) preview = AssociatedFiles::associateDocumentURL(newUrl, d->bibTeXfile, pathType()); } d->linePreview->setText(preview); d->groupBoxRename->setEnabled(!d->radioNoCopyMove->isChecked()); } void AssociatedFilesUI::setupForRemoteUrl(const QUrl &url, const QString &entryId) { d->sourceUrl = url; d->lineEditSourceUrl->setText(url.toDisplayString()); if (entryId.isEmpty()) { d->labelGreeting->setText(i18n("The following remote document is about to be associated with the current entry:")); d->radioRenameToEntryId->setText(i18n("Rename after entry's id")); } else { d->labelGreeting->setText(i18n("The following remote document is about to be associated with entry '%1':", entryId)); d->radioRenameToEntryId->setText(i18n("Rename after entry's id: '%1'", entryId)); } updateUIandPreview(); } void AssociatedFilesUI::setupForLocalFile(const QUrl &url, const QString &entryId) { d->sourceUrl = url; d->lineEditSourceUrl->setText(url.path()); if (entryId.isEmpty()) { d->labelGreeting->setText(i18n("The following local document is about to be associated with the current entry:")); d->radioRenameToEntryId->setText(i18n("Rename after entry's id")); } else { d->labelGreeting->setText(i18n("The following local document is about to be associated with entry '%1':", entryId)); d->radioRenameToEntryId->setText(i18n("Rename after entry's id: '%1'", entryId)); } updateUIandPreview(); } kbibtex-0.8.1/src/gui/element/associatedfilesui.h000066400000000000000000000046311331300026200220170ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_ASSOCIATEDFILESUI_H #define KBIBTEX_GUI_ASSOCIATEDFILESUI_H #include #include "entry.h" #include "file.h" #include "associatedfiles.h" #include "kbibtexgui_export.h" /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT AssociatedFilesUI: public QWidget { Q_OBJECT public: ~AssociatedFilesUI() override; static bool associateUrl(const QUrl &url, QSharedPointer &entry, const File *bibTeXfile, QWidget *parent); static QString associateUrl(const QUrl &url, const QString &entryId, const File *bibTeXfile, QWidget *parent); AssociatedFiles::RenameOperation renameOperation() const; AssociatedFiles::MoveCopyOperation moveCopyOperation() const; AssociatedFiles::PathType pathType() const; QString userDefinedFilename() const; protected: explicit AssociatedFilesUI(const QString &entryId, const File *bibTeXfile, QWidget *parent); private slots: void updateUIandPreview(); private: class Private; Private *const d; void setupForRemoteUrl(const QUrl &url, const QString &entryId); void setupForLocalFile(const QUrl &url, const QString &entryId); }; #endif // KBIBTEX_GUI_ASSOCIATEDFILESUI_H kbibtex-0.8.1/src/gui/element/elementeditor.cpp000066400000000000000000000613321331300026200215130ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "elementeditor.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "menulineedit.h" #include "entry.h" #include "comment.h" #include "macro.h" #include "preamble.h" #include "element.h" #include "file.h" #include "elementwidgets.h" #include "checkbibtex.h" #include "hidingtabwidget.h" class ElementEditor::ElementEditorPrivate : public ElementEditor::ApplyElementInterface { private: typedef QVector WidgetList; WidgetList widgets; const File *file; QSharedPointer internalEntry; QSharedPointer internalMacro; QSharedPointer internalPreamble; QSharedPointer internalComment; ElementEditor *p; ElementWidget *previousWidget; ReferenceWidget *referenceWidget; ElementWidget *sourceWidget; QPushButton *buttonCheckWithBibTeX; /// Settings management through a push button with menu KSharedConfigPtr config; QPushButton *buttonOptions; QAction *actionForceShowAllWidgets, *actionLimitKeyboardTabStops; public: QSharedPointer element; HidingTabWidget *tab; bool elementChanged, elementUnapplied; ElementEditorPrivate(bool scrollable, ElementEditor *parent) : file(nullptr), p(parent), previousWidget(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), elementChanged(false), elementUnapplied(false) { internalEntry = QSharedPointer(); internalMacro = QSharedPointer(); internalComment = QSharedPointer(); internalPreamble = QSharedPointer(); createGUI(scrollable); } ~ElementEditorPrivate() override { clearWidgets(); } void clearWidgets() { for (int i = widgets.count() - 1; i >= 0; --i) { QWidget *w = widgets[i]; w->deleteLater(); } widgets.clear(); } void setElement(QSharedPointer element, const File *file) { this->element = element; this->file = file; referenceWidget->setOriginalElement(element); updateTabVisibility(); } void addTabWidgets() { const EntryLayout *el = EntryLayout::self(); for (const auto &etl : const_cast(*el)) { ElementWidget *widget = new EntryConfiguredWidget(etl, tab); connect(widget, &ElementWidget::modified, p, &ElementEditor::childModified); widgets << widget; if (previousWidget == nullptr) previousWidget = widget; ///< memorize the first tab int index = tab->addTab(widget, widget->icon(), widget->label()); tab->hideTab(index); } ElementWidget *widget = new PreambleWidget(tab); connect(widget, &ElementWidget::modified, p, &ElementEditor::childModified); widgets << widget; int index = tab->addTab(widget, widget->icon(), widget->label()); tab->hideTab(index); widget = new MacroWidget(tab); connect(widget, &ElementWidget::modified, p, &ElementEditor::childModified); widgets << widget; index = tab->addTab(widget, widget->icon(), widget->label()); tab->hideTab(index); FilesWidget *filesWidget = new FilesWidget(tab); connect(filesWidget, &FilesWidget::modified, p, &ElementEditor::childModified); widgets << filesWidget; index = tab->addTab(filesWidget, filesWidget->icon(), filesWidget->label()); tab->hideTab(index); QStringList blacklistedFields; /// blacklist fields covered by EntryConfiguredWidget for (const auto &etl : const_cast(*el)) for (const auto &sfl : const_cast &>(etl->singleFieldLayouts)) blacklistedFields << sfl.bibtexLabel; /// blacklist fields covered by FilesWidget blacklistedFields << QString(Entry::ftUrl) << QString(Entry::ftLocalFile) << QString(Entry::ftDOI) << QStringLiteral("ee") << QStringLiteral("biburl") << QStringLiteral("postscript"); for (int i = 2; i < 256; ++i) // FIXME replace number by constant blacklistedFields << QString(Entry::ftUrl) + QString::number(i) << QString(Entry::ftLocalFile) + QString::number(i) << QString(Entry::ftDOI) + QString::number(i) << QStringLiteral("ee") + QString::number(i) << QStringLiteral("postscript") + QString::number(i); widget = new OtherFieldsWidget(blacklistedFields, tab); connect(widget, &ElementWidget::modified, p, &ElementEditor::childModified); widgets << widget; index = tab->addTab(widget, widget->icon(), widget->label()); tab->hideTab(index); sourceWidget = new SourceWidget(tab); connect(sourceWidget, &ElementWidget::modified, p, &ElementEditor::childModified); widgets << sourceWidget; index = tab->addTab(sourceWidget, sourceWidget->icon(), sourceWidget->label()); tab->hideTab(index); } void createGUI(bool scrollable) { /// load configuration for options push button static const QString configGroupName = QStringLiteral("User Interface"); static const QString keyEnableAllWidgets = QStringLiteral("EnableAllWidgets"); KConfigGroup configGroup(config, configGroupName); const bool showAll = configGroup.readEntry(keyEnableAllWidgets, true); const bool limitKeyboardTabStops = configGroup.readEntry(MenuLineEdit::keyLimitKeyboardTabStops, false); QBoxLayout *vLayout = new QVBoxLayout(p); referenceWidget = new ReferenceWidget(p); referenceWidget->setApplyElementInterface(this); connect(referenceWidget, &ElementWidget::modified, p, &ElementEditor::childModified); connect(referenceWidget, &ReferenceWidget::entryTypeChanged, p, &ElementEditor::updateReqOptWidgets); vLayout->addWidget(referenceWidget, 0); widgets << referenceWidget; if (scrollable) { QScrollArea *sa = new QScrollArea(p); tab = new HidingTabWidget(sa); sa->setFrameStyle(0); sa->setWidget(tab); sa->setWidgetResizable(true); sa->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); sa->setHorizontalScrollBarPolicy(Qt::ScrollBarAsNeeded); vLayout->addWidget(sa, 10); } else { tab = new HidingTabWidget(p); vLayout->addWidget(tab, 10); } QBoxLayout *hLayout = new QHBoxLayout(); vLayout->addLayout(hLayout, 0); /// Push button with menu to toggle various options buttonOptions = new QPushButton(QIcon::fromTheme(QStringLiteral("configure")), i18n("Options"), p); hLayout->addWidget(buttonOptions, 0); QMenu *menuOptions = new QMenu(buttonOptions); buttonOptions->setMenu(menuOptions); /// Option to show all fields or only those require for current entry type actionForceShowAllWidgets = menuOptions->addAction(i18n("Show all fields"), p, SLOT(updateReqOptWidgets())); actionForceShowAllWidgets->setCheckable(true); actionForceShowAllWidgets->setChecked(showAll); /// Option to disable tab key focus to reach/visit various non-editable widgets actionLimitKeyboardTabStops = menuOptions->addAction(i18n("Tab key visits only editable fields"), p, SLOT(limitKeyboardTabStops())); actionLimitKeyboardTabStops->setCheckable(true); actionLimitKeyboardTabStops->setChecked(limitKeyboardTabStops); hLayout->addStretch(10); buttonCheckWithBibTeX = new QPushButton(QIcon::fromTheme(QStringLiteral("tools-check-spelling")), i18n("Check with BibTeX"), p); hLayout->addWidget(buttonCheckWithBibTeX, 0); connect(buttonCheckWithBibTeX, &QPushButton::clicked, p, &ElementEditor::checkBibTeX); addTabWidgets(); } void updateTabVisibility() { disconnect(tab, &HidingTabWidget::currentChanged, p, &ElementEditor::tabChanged); if (element.isNull()) { p->setEnabled(false); } else { p->setEnabled(true); int firstEnabledTab = 1024; for (ElementWidget *widget : const_cast(widgets)) { const int index = tab->indexOf(widget); const bool canEdit = widget->canEdit(element.data()); if (widget == referenceWidget) { /// Reference widget widget->setVisible(canEdit); widget->setEnabled(canEdit); } else { if (canEdit) tab->showTab(widget); else if (index >= 0) tab->hideTab(index); if (canEdit && index >= 0 && index < firstEnabledTab) firstEnabledTab = index; } } if (firstEnabledTab < 1024) tab->setCurrentIndex(firstEnabledTab); } connect(tab, &HidingTabWidget::currentChanged, p, &ElementEditor::tabChanged); } /** * If this element editor makes use of a reference widget * (e.g. where entry type and entry id/macro key can be edited), * then return the current value of the entry id/macro key * editing widget. * Otherwise, return an empty string. * * @return Current value of entry id/macro key if any, otherwise empty string */ QString currentId() const { if (referenceWidget != nullptr) return referenceWidget->currentId(); return QString(); } /** * Return the current File object set for this element editor. * May be NULL if nothing has been set or if it has been cleared. * * @return Current File object, may be nullptr */ const File *currentFile() const { return file; } void apply() { elementChanged = true; elementUnapplied = false; apply(element); } void apply(QSharedPointer element) override { if (tab->currentWidget() == sourceWidget) { /// Very simple if source view is active: BibTeX code contains /// all necessary data sourceWidget->apply(element); } else { /// Start by assigning the current internal element's /// data to the output element QSharedPointer e = element.dynamicCast(); if (!e.isNull()) *e = *internalEntry; else { QSharedPointer m = element.dynamicCast(); if (!m.isNull()) *m = *internalMacro; else { QSharedPointer c = element.dynamicCast(); if (!c.isNull()) *c = *internalComment; else { QSharedPointer p = element.dynamicCast(); if (!p.isNull()) *p = *internalPreamble; else Q_ASSERT_X(element.isNull(), "ElementEditor::ElementEditorPrivate::apply(QSharedPointer element)", "element is not NULL but could not be cast on a valid Element sub-class"); } } } /// The internal element may be outdated (only updated on tab switch), /// so apply the reference widget's data on the output element if (referenceWidget != nullptr) referenceWidget->apply(element); /// The internal element may be outdated (only updated on tab switch), /// so apply the current widget's data on the output element ElementWidget *currentElementWidget = qobject_cast(tab->currentWidget()); if (currentElementWidget != nullptr) currentElementWidget->apply(element); } } void reset() { elementChanged = false; elementUnapplied = false; reset(element); /// show checkbox to enable all fields only if editing an entry actionForceShowAllWidgets->setVisible(!internalEntry.isNull()); /// Disable widgets if necessary if (!actionForceShowAllWidgets->isChecked()) updateReqOptWidgets(); } void reset(QSharedPointer element) { for (WidgetList::Iterator it = widgets.begin(); it != widgets.end(); ++it) { (*it)->setFile(file); (*it)->reset(element); (*it)->setModified(false); } QSharedPointer e = element.dynamicCast(); if (!e.isNull()) internalEntry = QSharedPointer(new Entry(*e.data())); else { QSharedPointer m = element.dynamicCast(); if (!m.isNull()) internalMacro = QSharedPointer(new Macro(*m.data())); else { QSharedPointer c = element.dynamicCast(); if (!c.isNull()) internalComment = QSharedPointer(new Comment(*c.data())); else { QSharedPointer p = element.dynamicCast(); if (!p.isNull()) internalPreamble = QSharedPointer(new Preamble(*p.data())); else Q_ASSERT_X(element.isNull(), "ElementEditor::ElementEditorPrivate::reset(QSharedPointer element)", "element is not NULL but could not be cast on a valid Element sub-class"); } } } buttonCheckWithBibTeX->setEnabled(!internalEntry.isNull()); } void setReadOnly(bool isReadOnly) { for (WidgetList::Iterator it = widgets.begin(); it != widgets.end(); ++it) (*it)->setReadOnly(isReadOnly); } void updateReqOptWidgets() { /// this function is only relevant if editing an entry (and not e.g. a comment) if (internalEntry.isNull()) return; /// quick-and-dirty test if editing an entry /// make a temporary snapshot of the current state QSharedPointer tempEntry = QSharedPointer(new Entry()); apply(tempEntry); /// update the enabled/disabled state of required and optional widgets/fields bool forceVisible = actionForceShowAllWidgets->isChecked(); for (ElementWidget *elementWidget : const_cast(widgets)) { elementWidget->showReqOptWidgets(forceVisible, tempEntry->type()); } /// save configuration static const QString configGroupName = QStringLiteral("User Interface"); static const QString keyEnableAllWidgets = QStringLiteral("EnableAllWidgets"); KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(keyEnableAllWidgets, actionForceShowAllWidgets->isChecked()); config->sync(); } void limitKeyboardTabStops() { /// save configuration static const QString configGroupName = QStringLiteral("User Interface"); KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(MenuLineEdit::keyLimitKeyboardTabStops, actionLimitKeyboardTabStops->isChecked()); config->sync(); /// notify all listening MenuLineEdit widgets to change their behavior NotificationHub::publishEvent(MenuLineEdit::MenuLineConfigurationChangedEvent); } void switchTo(QWidget *futureTab) { /// Switched from source widget to another widget? const bool isToSourceWidget = futureTab == sourceWidget; /// Switch from some widget to the source widget? const bool isFromSourceWidget = previousWidget == sourceWidget; /// Interprete future widget as an ElementWidget ElementWidget *futureWidget = qobject_cast(futureTab); /// Past and future ElementWidget values are valid? if (previousWidget != nullptr && futureWidget != nullptr) { /// Assign to temp wihch internal variable holds current state QSharedPointer temp; if (!internalEntry.isNull()) temp = internalEntry; else if (!internalMacro.isNull()) temp = internalMacro; else if (!internalComment.isNull()) temp = internalComment; else if (!internalPreamble.isNull()) temp = internalPreamble; Q_ASSERT_X(!temp.isNull(), "void ElementEditor::ElementEditorPrivate::switchTo(QWidget *newTab)", "temp is NULL"); /// Past widget writes its state to the internal state previousWidget->apply(temp); /// Before switching to source widget, store internally reference widget's state if (isToSourceWidget && referenceWidget != nullptr) referenceWidget->apply(temp); /// Tell future widget to initialize itself based on internal state futureWidget->reset(temp); /// When switchin from source widget to another widget, initialize reference widget if (isFromSourceWidget && referenceWidget != nullptr) referenceWidget->reset(temp); } previousWidget = futureWidget; /// Enable/disable tabs for (WidgetList::Iterator it = widgets.begin(); it != widgets.end(); ++it) (*it)->setEnabled(!isToSourceWidget || *it == futureTab); } /** * Test current entry if it compiles with BibTeX. * Show warnings and errors in message box. */ void checkBibTeX() { /// disable GUI under process p->setEnabled(false); QSharedPointer entry = QSharedPointer(new Entry()); apply(entry); CheckBibTeX::checkBibTeX(entry, file, p); p->setEnabled(true); } void setModified(bool newIsModified) { for (WidgetList::Iterator it = widgets.begin(); it != widgets.end(); ++it) (*it)->setModified(newIsModified); } void referenceWidgetSetEntryIdByDefault() { referenceWidget->setEntryIdByDefault(); } }; ElementEditor::ElementEditor(bool scrollable, QWidget *parent) : QWidget(parent), d(new ElementEditorPrivate(scrollable, this)) { connect(d->tab, &HidingTabWidget::currentChanged, this, &ElementEditor::tabChanged); } ElementEditor::~ElementEditor() { disconnect(d->tab, &HidingTabWidget::currentChanged, this, &ElementEditor::tabChanged); delete d; } void ElementEditor::apply() { /// The prime problem to tackle in this function is to cope with /// invalid/problematic entry ids or macro keys, respectively: /// - empty ids/keys /// - ids/keys that are duplicates of already used ids/keys QSharedPointer entry = d->element.dynamicCast(); QSharedPointer macro = d->element.dynamicCast(); /// Determine id/key as it was set before the current editing started const QString originalId = !entry.isNull() ? entry->id() : (!macro.isNull() ? macro->key() : QString()); /// Get the id/key as it is in the editing widget right now const QString newId = d->currentId(); /// Keep track whether the 'original' id/key or the 'new' id/key will eventually be used enum IdToUse {UseOriginalId, UseNewId}; IdToUse idToUse = UseNewId; if (newId.isEmpty()) { /// New id/key is empty (invalid by definition), so just notify use and revert back to original id/key /// (assuming that original id/key is valid) KMessageBox::sorry(this, i18n("No id was entered, so the previous id '%1' will be restored.", originalId), i18n("No id given")); idToUse = UseOriginalId; } else { /// If new id/key is not empty, then check if it is identical to another entry/macro in the current file const QSharedPointer knownElementWithSameId = d->currentFile() != nullptr ? d->currentFile()->containsKey(newId) : QSharedPointer(); if (!knownElementWithSameId.isNull() && d->element != knownElementWithSameId) { /// Some other, different element (entry or macro) uses same id/key, so ask user how to proceed const int msgBoxResult = KMessageBox::warningContinueCancel(this, i18n("The entered id '%1' is already in use for another element.\n\nKeep original id '%2' instead?", newId, originalId), i18n("Id already in use"), KGuiItem(i18n("Keep duplicate ids")), KGuiItem(i18n("Restore original id"))); idToUse = msgBoxResult == KMessageBox::Continue ? UseNewId : UseOriginalId; } } /// Apply will always set the 'new' id/key to the entry or macro, respectively d->apply(); if (idToUse == UseOriginalId) { /// As 'apply()' above set the 'new' id/key but the 'original' id/key is to be used, /// now the entry id or macro key, respectively, has to be set again, manually if (!entry.isNull()) entry->setId(originalId); else if (!macro.isNull()) macro->setKey(originalId); d->reset(); ///< notify UI about change of id/key } d->setModified(false); emit modified(false); } void ElementEditor::reset() { d->reset(); emit modified(false); } void ElementEditor::setElement(QSharedPointer element, const File *file) { d->setElement(element, file); d->reset(); emit modified(false); } void ElementEditor::setElement(QSharedPointer element, const File *file) { QSharedPointer clone; QSharedPointer entry = element.dynamicCast(); if (!entry.isNull()) clone = QSharedPointer(new Entry(*entry.data())); else { QSharedPointer macro = element.dynamicCast(); if (!macro.isNull()) clone = QSharedPointer(new Macro(*macro.data())); else { QSharedPointer preamble = element.dynamicCast(); if (!preamble.isNull()) clone = QSharedPointer(new Preamble(*preamble.data())); else { QSharedPointer comment = element.dynamicCast(); if (!comment.isNull()) clone = QSharedPointer(new Comment(*comment.data())); else Q_ASSERT_X(element == nullptr, "ElementEditor::ElementEditor(const Element *element, QWidget *parent)", "element is not NULL but could not be cast on a valid Element sub-class"); } } } d->setElement(clone, file); d->reset(); } void ElementEditor::setReadOnly(bool isReadOnly) { d->setReadOnly(isReadOnly); } bool ElementEditor::elementChanged() { return d->elementChanged; } bool ElementEditor::elementUnapplied() { return d->elementUnapplied; } QWidget *ElementEditor::currentPage() const { return d->tab->currentWidget(); } void ElementEditor::setCurrentPage(QWidget *page) { if (d->tab->indexOf(page) >= 0) d->tab->setCurrentWidget(page); } void ElementEditor::tabChanged() { d->switchTo(d->tab->currentWidget()); } void ElementEditor::checkBibTeX() { d->checkBibTeX(); } void ElementEditor::childModified(bool m) { if (m) { d->elementUnapplied = true; d->referenceWidgetSetEntryIdByDefault(); } emit modified(m); } void ElementEditor::updateReqOptWidgets() { d->updateReqOptWidgets(); } void ElementEditor::limitKeyboardTabStops() { d->limitKeyboardTabStops(); } kbibtex-0.8.1/src/gui/element/elementeditor.h000066400000000000000000000046761331300026200211700ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_ELEMENTEDITOR_H #define KBIBTEX_GUI_ELEMENTEDITOR_H #include "kbibtexgui_export.h" #include class Element; class File; /** @author Thomas Fischer */ class KBIBTEXGUI_EXPORT ElementEditor : public QWidget { Q_OBJECT public: class ApplyElementInterface { public: virtual ~ApplyElementInterface() { /** nothing */ } virtual void apply(QSharedPointer) { /** nothing */ } }; ElementEditor(bool scrollable, QWidget *parent); ~ElementEditor() override; void setElement(QSharedPointer element, const File *file); void setElement(QSharedPointer element, const File *file); void setReadOnly(bool isReadOnly = true); bool elementChanged(); bool elementUnapplied(); QWidget *currentPage() const; void setCurrentPage(QWidget *tab); signals: void modified(bool); public slots: void apply(); void reset(); private slots: void tabChanged(); void checkBibTeX(); void childModified(bool); void updateReqOptWidgets(); void limitKeyboardTabStops(); private: class ElementEditorPrivate; ElementEditorPrivate *d; }; #endif // KBIBTEX_GUI_ELEMENTEDITOR_H kbibtex-0.8.1/src/gui/element/elementwidgets.cpp000066400000000000000000001260011331300026200216660ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "elementwidgets.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "idsuggestions.h" #include "fileinfo.h" #include "kbibtex.h" #include "bibtexentries.h" #include "bibtexfields.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "file.h" #include "fieldinput.h" #include "entry.h" #include "macro.h" #include "preamble.h" #include "fieldlineedit.h" #include "logging_gui.h" static const unsigned int interColumnSpace = 16; static const char *PropertyIdSuggestion = "PropertyIdSuggestion"; ElementWidget::ElementWidget(QWidget *parent) : QWidget(parent), isReadOnly(false), m_file(nullptr), m_isModified(false) { // nothing }; bool ElementWidget::isModified() const { return m_isModified; } void ElementWidget::setModified(bool newIsModified) { m_isModified = newIsModified; emit modified(newIsModified); } void ElementWidget::gotModified() { setModified(true); } EntryConfiguredWidget::EntryConfiguredWidget(const QSharedPointer &entryTabLayout, QWidget *parent) : ElementWidget(parent), etl(entryTabLayout) { gridLayout = new QGridLayout(this); createGUI(); } EntryConfiguredWidget::~EntryConfiguredWidget() { for (int i = fieldInputCount - 1; i >= 0; --i) { delete listOfLabeledFieldInput[i]->fieldInput; delete listOfLabeledFieldInput[i]->label; } delete[] listOfLabeledFieldInput; delete gridLayout; } bool EntryConfiguredWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; for (QMap::ConstIterator it = bibtexKeyToWidget.constBegin(); it != bibtexKeyToWidget.constEnd(); ++it) { Value value; it.value()->apply(value); entry->remove(it.key()); if (!value.isEmpty()) entry->insert(it.key(), value); } return true; } bool EntryConfiguredWidget::reset(QSharedPointer element) { QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; /// clear all widgets for (QMap::Iterator it = bibtexKeyToWidget.begin(); it != bibtexKeyToWidget.end(); ++it) { it.value()->setFile(m_file); it.value()->clear(); } for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) { const QString key = it.key().toLower(); if (bibtexKeyToWidget.contains(key)) { FieldInput *fieldInput = bibtexKeyToWidget[key]; fieldInput->setElement(element.data()); fieldInput->reset(it.value()); } } return true; } void EntryConfiguredWidget::showReqOptWidgets(bool forceVisible, const QString &entryType) { layoutGUI(forceVisible, entryType); } void EntryConfiguredWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); for (QMap::Iterator it = bibtexKeyToWidget.begin(); it != bibtexKeyToWidget.end(); ++it) it.value()->setReadOnly(isReadOnly); } QString EntryConfiguredWidget::label() { return etl->uiCaption; } QIcon EntryConfiguredWidget::icon() { return QIcon::fromTheme(etl->iconName); } void EntryConfiguredWidget::setFile(const File *file) { for (QMap::Iterator it = bibtexKeyToWidget.begin(); it != bibtexKeyToWidget.end(); ++it) { it.value()->setFile(file); if (file != nullptr) { /// list of unique values for same field QStringList list = file->uniqueEntryValuesList(it.key()); /// for crossref fields, add all entries' ids if (it.key().toLower() == Entry::ftCrossRef) list.append(file->allKeys(File::etEntry)); /// add macro keys list.append(file->allKeys(File::etMacro)); it.value()->setCompletionItems(list); } } ElementWidget::setFile(file); } bool EntryConfiguredWidget::canEdit(const Element *element) { return Entry::isEntry(*element); } void EntryConfiguredWidget::createGUI() { const BibTeXFields *bf = BibTeXFields::self(); /// store information on number of widgets and columns in class variable fieldInputCount = etl->singleFieldLayouts.size(); numCols = etl->columns; /// initialize list of field input widgets plus labels listOfLabeledFieldInput = new LabeledFieldInput*[fieldInputCount]; int i = 0; for (const SingleFieldLayout &sfl : const_cast &>(etl->singleFieldLayouts)) { LabeledFieldInput *labeledFieldInput = new LabeledFieldInput; /// create an editing widget for this field const FieldDescription &fd = bf->find(sfl.bibtexLabel); labeledFieldInput->fieldInput = new FieldInput(sfl.fieldInputLayout, fd.preferredTypeFlag, fd.typeFlags, this); labeledFieldInput->fieldInput->setFieldKey(sfl.bibtexLabel); bibtexKeyToWidget.insert(sfl.bibtexLabel, labeledFieldInput->fieldInput); connect(labeledFieldInput->fieldInput, &FieldInput::modified, this, &EntryConfiguredWidget::gotModified); /// memorize if field input should grow vertically (e.g. is a list) labeledFieldInput->isVerticallyMinimumExpaning = sfl.fieldInputLayout == KBibTeX::MultiLine || sfl.fieldInputLayout == KBibTeX::List || sfl.fieldInputLayout == KBibTeX::PersonList || sfl.fieldInputLayout == KBibTeX::KeywordList; /// create a label next to the editing widget labeledFieldInput->label = new QLabel(QString(QStringLiteral("%1:")).arg(sfl.uiLabel), this); labeledFieldInput->label->setBuddy(labeledFieldInput->fieldInput->buddy()); /// align label's text vertically to match field input Qt::Alignment horizontalAlignment = (Qt::Alignment)(labeledFieldInput->label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment) & 0x001f); labeledFieldInput->label->setAlignment(horizontalAlignment | (labeledFieldInput->isVerticallyMinimumExpaning ? Qt::AlignTop : Qt::AlignVCenter)); listOfLabeledFieldInput[i] = labeledFieldInput; ++i; } layoutGUI(true); } void EntryConfiguredWidget::layoutGUI(bool forceVisible, const QString &entryType) { const BibTeXFields *bf = BibTeXFields::self(); QStringList visibleItems; if (!forceVisible && !entryType.isEmpty()) { const QString entryTypeLc = entryType.toLower(); const BibTeXEntries *be = BibTeXEntries::self(); for (const auto &ed : const_cast(*be)) { if (entryTypeLc == ed.upperCamelCase.toLower() || entryTypeLc == ed.upperCamelCaseAlt.toLower()) { /// this ugly conversion is necessary because we have a "^" (xor) and "|" (and/or) /// syntax to differentiate required items (not used yet, but will be used /// later if missing required items are marked). QString visible = ed.requiredItems.join(QStringLiteral(",")); visible += QLatin1Char(',') + ed.optionalItems.join(QStringLiteral(",")); visible = visible.replace(QLatin1Char('|'), QLatin1Char(',')).replace(QLatin1Char('^'), QLatin1Char(',')); visibleItems = visible.split(QStringLiteral(",")); break; } } } else if (!forceVisible) { // TODO is this an error condition? } /// variables to keep track which and how many field inputs will be visible int countVisible = 0; bool *visible = new bool[fieldInputCount]; /// ... and if any field input is vertically expaning /// (e.g. a list, important for layout) bool anyoneVerticallyExpanding = false; for (int i = fieldInputCount - 1; i >= 0; --i) { listOfLabeledFieldInput[i]->label->setVisible(false); listOfLabeledFieldInput[i]->fieldInput->setVisible(false); gridLayout->removeWidget(listOfLabeledFieldInput[i]->label); gridLayout->removeWidget(listOfLabeledFieldInput[i]->fieldInput); const QString key = bibtexKeyToWidget.key(listOfLabeledFieldInput[i]->fieldInput).toLower(); const FieldDescription &fd = bf->find(key); Value value; listOfLabeledFieldInput[i]->fieldInput->apply(value); /// Hide non-required and non-optional type-dependent fields, /// except if the field has content visible[i] = forceVisible || fd.typeIndependent || !value.isEmpty() || visibleItems.contains(key); if (visible[i]) { ++countVisible; anyoneVerticallyExpanding |= listOfLabeledFieldInput[i]->isVerticallyMinimumExpaning; } } int numRows = countVisible / numCols; if (countVisible % numCols > 0) ++numRows; gridLayout->setRowStretch(numRows, anyoneVerticallyExpanding ? 0 : 1000); int col = 0, row = 0; for (int i = 0; i < fieldInputCount; ++i) if (visible[i]) { /// add label and field input to new position in grid layout gridLayout->addWidget(listOfLabeledFieldInput[i]->label, row, col * 3); gridLayout->addWidget(listOfLabeledFieldInput[i]->fieldInput, row, col * 3 + 1); /// set row stretch gridLayout->setRowStretch(row, listOfLabeledFieldInput[i]->isVerticallyMinimumExpaning ? 1000 : 0); /// set column stretch and spacing gridLayout->setColumnStretch(col * 3, 1); gridLayout->setColumnStretch(col * 3 + 1, 1000); if (col > 0) gridLayout->setColumnMinimumWidth(col * 3 - 1, interColumnSpace); /// count rows and columns correctly ++row; if (row >= numRows) { row = 0; ++col; } /// finally, set label and field input visible again listOfLabeledFieldInput[i]->label->setVisible(true); listOfLabeledFieldInput[i]->fieldInput->setVisible(true); // FIXME expensive! } if (countVisible > 0) { /// fix row stretch for (int i = numRows + 1; i < 100; ++i) gridLayout->setRowStretch(i, 0); /// hide unused columns for (int i = (col + (row == 0 ? 0 : 1)) * 3 - 1; i < 100; ++i) { gridLayout->setColumnMinimumWidth(i, 0); gridLayout->setColumnStretch(i, 0); } } delete[] visible; } ReferenceWidget::ReferenceWidget(QWidget *parent) : ElementWidget(parent), m_applyElement(nullptr), m_entryIdManuallySet(false), m_element(QSharedPointer()) { createGUI(); } bool ReferenceWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode bool result = false; QSharedPointer entry = element.dynamicCast(); if (!entry.isNull()) { const BibTeXEntries *be = BibTeXEntries::self(); QString type; if (entryType->currentIndex() < 0 || entryType->lineEdit()->isModified()) type = be->format(entryType->lineEdit()->text(), KBibTeX::cUpperCamelCase); else type = entryType->itemData(entryType->currentIndex()).toString(); entry->setType(type); entry->setId(entryId->text()); result = true; } else { QSharedPointer macro = element.dynamicCast(); if (!macro.isNull()) { macro->setKey(entryId->text()); result = true; } } return result; } bool ReferenceWidget::reset(QSharedPointer element) { /// if signals are not deactivated, the "modified" signal would be emitted when /// resetting the widgets' values disconnect(entryType->lineEdit(), &KLineEdit::textChanged, this, &ReferenceWidget::gotModified); disconnect(entryId, &KLineEdit::textEdited, this, &ReferenceWidget::entryIdManuallyChanged); bool result = false; QSharedPointer entry = element.dynamicCast(); if (!entry.isNull()) { entryType->setEnabled(!isReadOnly); buttonSuggestId->setEnabled(!isReadOnly); const BibTeXEntries *be = BibTeXEntries::self(); QString type = be->format(entry->type(), KBibTeX::cUpperCamelCase); int index = entryType->findData(type); if (index == -1) { const QString typeLower(type.toLower()); for (const auto &ed : const_cast(*be)) if (typeLower == ed.upperCamelCaseAlt.toLower()) { index = entryType->findData(ed.upperCamelCase); break; } } entryType->setCurrentIndex(index); if (index == -1) { /// A customized value not known to KBibTeX entryType->lineEdit()->setText(type); } entryId->setText(entry->id()); /// New entries have no values. Use this fact /// to recognize new entries, for which it is /// allowed to automatic set their ids /// if a default id suggestion had been specified. m_entryIdManuallySet = entry->count() > 0; result = true; } else { entryType->setEnabled(false); buttonSuggestId->setEnabled(false); QSharedPointer macro = element.dynamicCast(); if (!macro.isNull()) { entryType->lineEdit()->setText(i18n("Macro")); entryId->setText(macro->key()); result = true; } } connect(entryId, &KLineEdit::textEdited, this, &ReferenceWidget::entryIdManuallyChanged); connect(entryType->lineEdit(), &KLineEdit::textChanged, this, &ReferenceWidget::gotModified); return result; } void ReferenceWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); entryId->setReadOnly(isReadOnly); entryType->setEnabled(!isReadOnly); } QString ReferenceWidget::label() { return QString(); } QIcon ReferenceWidget::icon() { return QIcon(); } bool ReferenceWidget::canEdit(const Element *element) { return Entry::isEntry(*element) || Macro::isMacro(*element); } void ReferenceWidget::setOriginalElement(const QSharedPointer &orig) { m_element = orig; } QString ReferenceWidget::currentId() const { return entryId->text(); } void ReferenceWidget::createGUI() { QHBoxLayout *layout = new QHBoxLayout(this); entryType = new KComboBox(this); entryType->setEditable(true); entryType->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); QLabel *label = new QLabel(i18n("Type:"), this); label->setBuddy(entryType); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); layout->addWidget(label); layout->addWidget(entryType); layout->addSpacing(interColumnSpace); entryId = new KLineEdit(this); entryId->setClearButtonEnabled(true); label = new QLabel(i18n("Id:"), this); label->setBuddy(entryId); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); layout->addWidget(label); layout->addWidget(entryId); const BibTeXEntries *be = BibTeXEntries::self(); for (const auto &ed : const_cast(*be)) entryType->addItem(ed.label, ed.upperCamelCase); /// Sort the combo box locale-aware. Thus we need a SortFilterProxyModel QSortFilterProxyModel *proxy = new QSortFilterProxyModel(entryType); proxy->setSortLocaleAware(true); proxy->setSourceModel(entryType->model()); entryType->model()->setParent(proxy); entryType->setModel(proxy); entryType->model()->sort(0); /// Button with a menu listing a set of preconfigured id suggestions buttonSuggestId = new QPushButton(QIcon::fromTheme(QStringLiteral("view-filter")), QStringLiteral(""), this); buttonSuggestId->setToolTip(i18n("Select a suggested id for this entry")); layout->addWidget(buttonSuggestId); QMenu *suggestionsMenu = new QMenu(buttonSuggestId); buttonSuggestId->setMenu(suggestionsMenu); connect(entryType->lineEdit(), &KLineEdit::textChanged, this, &ReferenceWidget::gotModified); connect(entryId, &KLineEdit::textEdited, this, &ReferenceWidget::entryIdManuallyChanged); connect(entryType->lineEdit(), &KLineEdit::textChanged, this, &ReferenceWidget::entryTypeChanged); connect(suggestionsMenu, &QMenu::aboutToShow, this, &ReferenceWidget::prepareSuggestionsMenu); } void ReferenceWidget::prepareSuggestionsMenu() { /// Collect information on the current entry as it is edited QSharedPointer guiDataEntry(new Entry()); m_applyElement->apply(guiDataEntry); QSharedPointer crossrefResolvedEntry(Entry::resolveCrossref(*guiDataEntry.data(), m_file)); static const IdSuggestions *idSuggestions = new IdSuggestions(); QMenu *suggestionsMenu = buttonSuggestId->menu(); suggestionsMenu->clear(); /// Keep track of shown suggestions to avoid duplicates QSet knownIdSuggestion; const QString defaultSuggestion = idSuggestions->defaultFormatId(*crossrefResolvedEntry.data()); const auto formatIdList = idSuggestions->formatIdList(*crossrefResolvedEntry.data()); for (const QString &suggestionBase : formatIdList) { bool isDefault = suggestionBase == defaultSuggestion; QString suggestion = suggestionBase; /// Test for duplicate ids, use fallback ids with numeric suffix if (m_file != nullptr && m_file->containsKey(suggestion)) { int suffix = 2; while (m_file->containsKey(suggestion = suggestionBase + QChar('_') + QString::number(suffix))) ++suffix; } /// Keep track of shown suggestions to avoid duplicates if (knownIdSuggestion.contains(suggestion)) continue; else knownIdSuggestion.insert(suggestion); /// Create action for suggestion, use icon depending if default or not QAction *suggestionAction = new QAction(suggestion, suggestionsMenu); suggestionAction->setIcon(QIcon::fromTheme(isDefault ? QStringLiteral("favorites") : QStringLiteral("view-filter"))); /// Mesh action into GUI suggestionsMenu->addAction(suggestionAction); connect(suggestionAction, &QAction::triggered, this, &ReferenceWidget::insertSuggestionFromAction); /// Remember suggestion string for time when action gets triggered suggestionAction->setProperty(PropertyIdSuggestion, suggestion); } } void ReferenceWidget::insertSuggestionFromAction() { QAction *action = qobject_cast(sender()); if (action != nullptr) { const QString suggestion = action->property(PropertyIdSuggestion).toString(); entryId->setText(suggestion); } } void ReferenceWidget::entryIdManuallyChanged() { m_entryIdManuallySet = true; gotModified(); } void ReferenceWidget::setEntryIdByDefault() { if (isReadOnly) { /// Never set the suggestion automatically if in read-only mode return; } if (m_entryIdManuallySet) { /// If user changed entry id manually, /// do not overwrite it by a default value return; } static const IdSuggestions *idSuggestions = new IdSuggestions(); /// If there is a default suggestion format set ... if (idSuggestions->hasDefaultFormat()) { /// Collect information on the current entry as it is edited QSharedPointer guiDataEntry(new Entry()); m_applyElement->apply(guiDataEntry); QSharedPointer crossrefResolvedEntry(Entry::resolveCrossref(*guiDataEntry.data(), m_file)); /// Determine default suggestion based on current data const QString defaultSuggestion = idSuggestions->defaultFormatId(*crossrefResolvedEntry.data()); if (!defaultSuggestion.isEmpty()) { disconnect(entryId, &KLineEdit::textEdited, this, &ReferenceWidget::entryIdManuallyChanged); /// Apply default suggestion to widget entryId->setText(defaultSuggestion); connect(entryId, &KLineEdit::textEdited, this, &ReferenceWidget::entryIdManuallyChanged); } } } FilesWidget::FilesWidget(QWidget *parent) : ElementWidget(parent) { QVBoxLayout *layout = new QVBoxLayout(this); fileList = new FieldInput(KBibTeX::UrlList, KBibTeX::tfVerbatim /* eventually ignored, see constructor of UrlListEdit */, KBibTeX::tfVerbatim /* eventually ignored, see constructor of UrlListEdit */, this); fileList->setFieldKey(QStringLiteral("^external")); layout->addWidget(fileList); connect(fileList, &FieldInput::modified, this, &FilesWidget::gotModified); } bool FilesWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; for (const QString &keyStem : keyStart) for (int i = 1; i < 32; ++i) { /// FIXME replace number by constant const QString key = i > 1 ? keyStem + QString::number(i) : keyStem; entry->remove(key); } Value combinedValue; fileList->apply(combinedValue); Value urlValue, doiValue, localFileValue; urlValue.reserve(combinedValue.size()); doiValue.reserve(combinedValue.size()); localFileValue.reserve(combinedValue.size()); for (const auto &valueItem : const_cast(combinedValue)) { const QSharedPointer verbatimText = valueItem.dynamicCast(); if (!verbatimText.isNull()) { const QString text = verbatimText->text(); if (KBibTeX::urlRegExp.indexIn(text) > -1) { /// add full URL VerbatimText *newVT = new VerbatimText(KBibTeX::urlRegExp.cap(0)); /// test for duplicates if (urlValue.contains(*newVT)) delete newVT; else urlValue.append(QSharedPointer(newVT)); } else if (KBibTeX::doiRegExp.indexIn(text) > -1) { /// add DOI VerbatimText *newVT = new VerbatimText(KBibTeX::doiRegExp.cap(0)); /// test for duplicates if (doiValue.contains(*newVT)) delete newVT; else doiValue.append(QSharedPointer(newVT)); } else { /// add anything else (e.g. local file) VerbatimText *newVT = new VerbatimText(*verbatimText); /// test for duplicates if (localFileValue.contains(*newVT)) delete newVT; else localFileValue.append(QSharedPointer(newVT)); } } } if (urlValue.isEmpty()) entry->remove(Entry::ftUrl); else entry->insert(Entry::ftUrl, urlValue); if (localFileValue.isEmpty()) entry->remove(Entry::ftLocalFile); else entry->insert(Entry::ftLocalFile, localFileValue); if (doiValue.isEmpty()) entry->remove(Entry::ftDOI); else entry->insert(Entry::ftDOI, doiValue); return true; } bool FilesWidget::reset(QSharedPointer element) { QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; Value combinedValue; for (const QString &keyStem : keyStart) for (int i = 1; i < 32; ++i) { /// FIXME replace number by constant const QString key = i > 1 ? keyStem + QString::number(i) : keyStem; const Value &value = entry->operator [](key); for (const auto &valueItem : const_cast(value)) combinedValue.append(valueItem); } fileList->setElement(element.data()); fileList->reset(combinedValue); return true; } void FilesWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); fileList->setReadOnly(isReadOnly); } QString FilesWidget::label() { return i18n("External"); } QIcon FilesWidget::icon() { return QIcon::fromTheme(QStringLiteral("emblem-symbolic-link")); } void FilesWidget::setFile(const File *file) { ElementWidget::setFile(file); fileList->setFile(file); } bool FilesWidget::canEdit(const Element *element) { return Entry::isEntry(*element); } const QStringList FilesWidget::keyStart = QStringList() << Entry::ftUrl << QStringLiteral("postscript") << Entry::ftLocalFile << Entry::ftDOI << Entry::ftFile << QStringLiteral("ee") << QStringLiteral("biburl"); OtherFieldsWidget::OtherFieldsWidget(const QStringList &blacklistedFields, QWidget *parent) : ElementWidget(parent), blackListed(blacklistedFields) { internalEntry = QSharedPointer(new Entry()); createGUI(); } OtherFieldsWidget::~OtherFieldsWidget() { delete fieldContent; } bool OtherFieldsWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; for (const QString &key : const_cast(deletedKeys)) entry->remove(key); for (const QString &key : const_cast(modifiedKeys)) { entry->remove(key); entry->insert(key, internalEntry->value(key)); } return true; } bool OtherFieldsWidget::reset(QSharedPointer element) { QSharedPointer entry = element.dynamicCast(); if (entry.isNull()) return false; internalEntry = QSharedPointer(new Entry(*entry.data())); deletedKeys.clear(); // FIXME clearing list may be premature here... modifiedKeys.clear(); // FIXME clearing list may be premature here... updateList(); updateGUI(); return true; } void OtherFieldsWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); fieldName->setReadOnly(isReadOnly); fieldContent->setReadOnly(isReadOnly); /// will take care of enabled/disabling buttons updateGUI(); updateList(); } QString OtherFieldsWidget::label() { return i18n("Other Fields"); } QIcon OtherFieldsWidget::icon() { return QIcon::fromTheme(QStringLiteral("other")); } bool OtherFieldsWidget::canEdit(const Element *element) { return Entry::isEntry(*element); } void OtherFieldsWidget::listElementExecuted(QTreeWidgetItem *item, int column) { Q_UNUSED(column) /// we do not care which column got clicked QString key = item->text(0); fieldName->setText(key); fieldContent->reset(internalEntry->value(key)); } void OtherFieldsWidget::listCurrentChanged(QTreeWidgetItem *item, QTreeWidgetItem *previous) { Q_UNUSED(previous) bool validUrl = false; bool somethingSelected = item != nullptr; buttonDelete->setEnabled(somethingSelected && !isReadOnly); if (somethingSelected) { currentUrl = QUrl(item->text(1)); validUrl = currentUrl.isValid() && currentUrl.isLocalFile() & QFileInfo::exists(currentUrl.toLocalFile()); if (!validUrl) { if (KBibTeX::urlRegExp.indexIn(item->text(1)) > -1) { currentUrl = QUrl(KBibTeX::urlRegExp.cap(0)); validUrl = currentUrl.isValid(); buttonOpen->setEnabled(validUrl); } } } if (!validUrl) currentUrl = QUrl(); buttonOpen->setEnabled(validUrl); } void OtherFieldsWidget::actionAddApply() { if (isReadOnly) return; /// never modify anything if in read-only mode QString key = fieldName->text(); Value value; if (!fieldContent->apply(value)) return; if (internalEntry->contains(key)) internalEntry->remove(key); internalEntry->insert(key, value); if (!modifiedKeys.contains(key)) modifiedKeys << key; updateList(); updateGUI(); gotModified(); } void OtherFieldsWidget::actionDelete() { if (isReadOnly) return; /// never modify anything if in read-only mode Q_ASSERT_X(otherFieldsList->currentItem() != nullptr, "OtherFieldsWidget::actionDelete", "otherFieldsList->currentItem() is NULL"); QString key = otherFieldsList->currentItem()->text(0); if (!deletedKeys.contains(key)) deletedKeys << key; internalEntry->remove(key); updateList(); updateGUI(); listCurrentChanged(otherFieldsList->currentItem(), nullptr); gotModified(); } void OtherFieldsWidget::actionOpen() { if (currentUrl.isValid()) { /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(currentUrl); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(currentUrl, mimeTypeName, this, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(currentUrl, mimeTypeName, this, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } void OtherFieldsWidget::createGUI() { QGridLayout *layout = new QGridLayout(this); /// set row and column stretches based on chosen layout layout->setColumnStretch(0, 0); layout->setColumnStretch(1, 1); layout->setColumnStretch(2, 0); layout->setRowStretch(0, 0); layout->setRowStretch(1, 1); layout->setRowStretch(2, 0); layout->setRowStretch(3, 0); layout->setRowStretch(4, 1); QLabel *label = new QLabel(i18n("Name:"), this); layout->addWidget(label, 0, 0, 1, 1); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); fieldName = new KLineEdit(this); layout->addWidget(fieldName, 0, 1, 1, 1); label->setBuddy(fieldName); buttonAddApply = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add"), this); buttonAddApply->setEnabled(false); layout->addWidget(buttonAddApply, 0, 2, 1, 1); label = new QLabel(i18n("Content:"), this); layout->addWidget(label, 1, 0, 1, 1); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); fieldContent = new FieldInput(KBibTeX::MultiLine, KBibTeX::tfSource, KBibTeX::tfSource, this); layout->addWidget(fieldContent, 1, 1, 1, 2); label->setBuddy(fieldContent->buddy()); label = new QLabel(i18n("List:"), this); layout->addWidget(label, 2, 0, 1, 1); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); otherFieldsList = new QTreeWidget(this); otherFieldsList->setHeaderLabels(QStringList() << i18n("Key") << i18n("Value")); otherFieldsList->setRootIsDecorated(false); layout->addWidget(otherFieldsList, 2, 1, 3, 1); label->setBuddy(otherFieldsList); buttonDelete = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), i18n("Delete"), this); buttonDelete->setEnabled(false); layout->addWidget(buttonDelete, 2, 2, 1, 1); buttonOpen = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open"), this); buttonOpen->setEnabled(false); layout->addWidget(buttonOpen, 3, 2, 1, 1); connect(otherFieldsList, &QTreeWidget::itemActivated, this, &OtherFieldsWidget::listElementExecuted); connect(otherFieldsList, &QTreeWidget::currentItemChanged, this, &OtherFieldsWidget::listCurrentChanged); connect(otherFieldsList, &QTreeWidget::itemSelectionChanged, this, &OtherFieldsWidget::updateGUI); connect(fieldName, &KLineEdit::textEdited, this, &OtherFieldsWidget::updateGUI); connect(buttonAddApply, &QPushButton::clicked, this, &OtherFieldsWidget::actionAddApply); connect(buttonDelete, &QPushButton::clicked, this, &OtherFieldsWidget::actionDelete); connect(buttonOpen, &QPushButton::clicked, this, &OtherFieldsWidget::actionOpen); } void OtherFieldsWidget::updateList() { const QString selText = otherFieldsList->selectedItems().isEmpty() ? QString() : otherFieldsList->selectedItems().first()->text(0); const QString curText = otherFieldsList->currentItem() == nullptr ? QString() : otherFieldsList->currentItem()->text(0); otherFieldsList->clear(); for (Entry::ConstIterator it = internalEntry->constBegin(); it != internalEntry->constEnd(); ++it) if (!blackListed.contains(it.key().toLower())) { QTreeWidgetItem *item = new QTreeWidgetItem(); item->setText(0, it.key()); item->setText(1, PlainTextValue::text(it.value())); item->setIcon(0, QIcon::fromTheme(QStringLiteral("entry"))); // FIXME otherFieldsList->addTopLevelItem(item); item->setSelected(selText == it.key()); if (it.key() == curText) otherFieldsList->setCurrentItem(item); } } void OtherFieldsWidget::updateGUI() { QString key = fieldName->text(); if (key.isEmpty() || blackListed.contains(key, Qt::CaseInsensitive)) // TODO check for more (e.g. spaces) buttonAddApply->setEnabled(false); else { buttonAddApply->setEnabled(!isReadOnly); buttonAddApply->setText(internalEntry->contains(key) ? i18n("Apply") : i18n("Add")); buttonAddApply->setIcon(internalEntry->contains(key) ? QIcon::fromTheme(QStringLiteral("document-edit")) : QIcon::fromTheme(QStringLiteral("list-add"))); } } MacroWidget::MacroWidget(QWidget *parent) : ElementWidget(parent) { createGUI(); } MacroWidget::~MacroWidget() { delete fieldInputValue; } bool MacroWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode QSharedPointer macro = element.dynamicCast(); if (macro.isNull()) return false; Value value; bool result = fieldInputValue->apply(value); macro->setValue(value); return result; } bool MacroWidget::reset(QSharedPointer element) { QSharedPointer macro = element.dynamicCast(); if (macro.isNull()) return false; return fieldInputValue->reset(macro->value()); } void MacroWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); fieldInputValue->setReadOnly(isReadOnly); } QString MacroWidget::label() { return i18n("Macro"); } QIcon MacroWidget::icon() { return QIcon::fromTheme(QStringLiteral("macro")); } bool MacroWidget::canEdit(const Element *element) { return Macro::isMacro(*element); } void MacroWidget::createGUI() { QBoxLayout *layout = new QHBoxLayout(this); QLabel *label = new QLabel(i18n("Value:"), this); layout->addWidget(label, 0); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); fieldInputValue = new FieldInput(KBibTeX::MultiLine, KBibTeX::tfPlainText, KBibTeX::tfPlainText | KBibTeX::tfSource, this); layout->addWidget(fieldInputValue, 1); label->setBuddy(fieldInputValue->buddy()); connect(fieldInputValue, &FieldInput::modified, this, &MacroWidget::gotModified); } PreambleWidget::PreambleWidget(QWidget *parent) : ElementWidget(parent) { createGUI(); } bool PreambleWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; /// never save data if in read-only mode QSharedPointer preamble = element.dynamicCast(); if (preamble.isNull()) return false; Value value; bool result = fieldInputValue->apply(value); preamble->setValue(value); return result; } bool PreambleWidget::reset(QSharedPointer element) { QSharedPointer preamble = element.dynamicCast(); if (preamble.isNull()) return false; return fieldInputValue->reset(preamble->value()); } void PreambleWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); fieldInputValue->setReadOnly(isReadOnly); } QString PreambleWidget::label() { return i18n("Preamble"); } QIcon PreambleWidget::icon() { return QIcon::fromTheme(QStringLiteral("preamble")); } bool PreambleWidget::canEdit(const Element *element) { return Preamble::isPreamble(*element); } void PreambleWidget::createGUI() { QBoxLayout *layout = new QHBoxLayout(this); QLabel *label = new QLabel(i18n("Value:"), this); layout->addWidget(label, 0); label->setAlignment((Qt::Alignment)label->style()->styleHint(QStyle::SH_FormLayoutLabelAlignment)); fieldInputValue = new FieldInput(KBibTeX::MultiLine, KBibTeX::tfSource, KBibTeX::tfSource, this); // FIXME: other editing modes beyond Source applicable? layout->addWidget(fieldInputValue, 1); label->setBuddy(fieldInputValue->buddy()); connect(fieldInputValue, &FieldInput::modified, this, &PreambleWidget::gotModified); } class SourceWidget::SourceWidgetTextEdit : public KTextEdit { Q_OBJECT public: SourceWidgetTextEdit(QWidget *parent) : KTextEdit(parent) { // nothing } protected: void dropEvent(QDropEvent *event) override { FileImporterBibTeX importer(this); FileExporterBibTeX exporter(this); const File *file = importer.fromString(event->mimeData()->text()); if (file != nullptr && file->count() == 1) document()->setPlainText(exporter.toString(file->first(), file)); else KTextEdit::dropEvent(event); } }; class SourceWidget::Private { public: QPushButton *buttonRestore; FileImporterBibTeX *importerBibTeX; Private(SourceWidget *parent) : buttonRestore(nullptr), importerBibTeX(new FileImporterBibTeX(parent)) { /// nothing } }; SourceWidget::SourceWidget(QWidget *parent) : ElementWidget(parent), d(new SourceWidget::Private(this)) { createGUI(); } SourceWidget::~SourceWidget() { delete sourceEdit; delete d; } bool SourceWidget::apply(QSharedPointer element) const { if (isReadOnly) return false; ///< never save data if in read-only mode const QString text = sourceEdit->document()->toPlainText(); File *file = d->importerBibTeX->fromString(text); if (file == nullptr) return false; bool result = false; if (file->count() == 1) { QSharedPointer entry = element.dynamicCast(); QSharedPointer readEntry = file->first().dynamicCast(); if (!readEntry.isNull() && !entry.isNull()) { entry->operator =(*readEntry.data()); //entry = readEntry; result = true; } else { QSharedPointer macro = element.dynamicCast(); QSharedPointer readMacro = file->first().dynamicCast(); if (!readMacro.isNull() && !macro.isNull()) { macro->operator =(*readMacro.data()); result = true; } else { QSharedPointer preamble = element.dynamicCast(); QSharedPointer readPreamble = file->first().dynamicCast(); if (!readPreamble.isNull() && !preamble.isNull()) { preamble->operator =(*readPreamble.data()); result = true; } else qCWarning(LOG_KBIBTEX_GUI) << "Do not know how to apply source code"; } } } delete file; return result; } bool SourceWidget::reset(QSharedPointer element) { /// if signals are not deactivated, the "modified" signal would be emitted when /// resetting the widget's value disconnect(sourceEdit, &SourceWidget::SourceWidgetTextEdit::textChanged, this, &SourceWidget::gotModified); FileExporterBibTeX exporter(this); exporter.setEncoding(QStringLiteral("utf-8")); const QString exportedText = exporter.toString(element, m_file); if (!exportedText.isEmpty()) { originalText = exportedText; sourceEdit->document()->setPlainText(originalText); } connect(sourceEdit, &SourceWidget::SourceWidgetTextEdit::textChanged, this, &SourceWidget::gotModified); return !exportedText.isEmpty(); } void SourceWidget::setReadOnly(bool isReadOnly) { ElementWidget::setReadOnly(isReadOnly); d->buttonRestore->setEnabled(!isReadOnly); sourceEdit->setReadOnly(isReadOnly); } QString SourceWidget::label() { return i18n("Source"); } QIcon SourceWidget::icon() { return QIcon::fromTheme(QStringLiteral("code-context")); } bool SourceWidget::canEdit(const Element *element) { Q_UNUSED(element) return true; /// source widget should be able to edit any element } void SourceWidget::createGUI() { QGridLayout *layout = new QGridLayout(this); layout->setColumnStretch(0, 1); layout->setColumnStretch(1, 0); layout->setRowStretch(0, 1); layout->setRowStretch(1, 0); sourceEdit = new SourceWidgetTextEdit(this); layout->addWidget(sourceEdit, 0, 0, 1, 3); sourceEdit->document()->setDefaultFont(QFontDatabase::systemFont(QFontDatabase::FixedFont)); sourceEdit->setTabStopWidth(QFontMetrics(sourceEdit->font()).averageCharWidth() * 4); d->buttonRestore = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-undo")), i18n("Restore"), this); layout->addWidget(d->buttonRestore, 1, 1, 1, 1); connect(d->buttonRestore, &QPushButton::clicked, this, static_cast(&SourceWidget::reset)); connect(sourceEdit, &SourceWidget::SourceWidgetTextEdit::textChanged, this, &SourceWidget::gotModified); } void SourceWidget::reset() { /// if signals are not deactivated, the "modified" signal would be emitted when /// resetting the widget's value disconnect(sourceEdit, &SourceWidget::SourceWidgetTextEdit::textChanged, this, &SourceWidget::gotModified); sourceEdit->document()->setPlainText(originalText); setModified(false); connect(sourceEdit, &SourceWidget::SourceWidgetTextEdit::textChanged, this, &SourceWidget::gotModified); } #include "elementwidgets.moc" kbibtex-0.8.1/src/gui/element/elementwidgets.h000066400000000000000000000205111331300026200213320ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_ELEMENTWIDGETS_H #define KBIBTEX_GUI_ELEMENTWIDGETS_H #include "kbibtexgui_export.h" #include #include #include #include #include "elementeditor.h" #include "entrylayout.h" class QTreeWidget; class QTreeWidgetItem; class QGridLayout; class KLineEdit; class KComboBox; class QPushButton; class File; class Entry; class Element; class FieldInput; class ElementWidget : public QWidget { Q_OBJECT public: explicit ElementWidget(QWidget *parent); virtual bool apply(QSharedPointer element) const = 0; virtual bool reset(QSharedPointer element) = 0; virtual void setReadOnly(bool isReadOnly) { this->isReadOnly = isReadOnly; } virtual void showReqOptWidgets(bool, const QString &) = 0; virtual QString label() = 0; virtual QIcon icon() = 0; bool isModified() const; void setModified(bool); virtual void setFile(const File *file) { m_file = file; } virtual bool canEdit(const Element *) = 0; protected: bool isReadOnly; const File *m_file; protected slots: void gotModified(); private: bool m_isModified; signals: void modified(bool); }; class EntryConfiguredWidget : public ElementWidget { Q_OBJECT private: typedef struct { QLabel *label; FieldInput *fieldInput; bool isVerticallyMinimumExpaning; } LabeledFieldInput; LabeledFieldInput **listOfLabeledFieldInput; int fieldInputCount, numCols; QGridLayout *gridLayout; const QSharedPointer etl; QMap bibtexKeyToWidget; void createGUI(); void layoutGUI(bool forceVisible, const QString &entryType = QString()); public: EntryConfiguredWidget(const QSharedPointer &entryTabLayout, QWidget *parent); ~EntryConfiguredWidget() override; bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool forceVisible, const QString &entryType) override; QString label() override; QIcon icon() override; void setFile(const File *file) override; bool canEdit(const Element *element) override; }; class ReferenceWidget : public ElementWidget { Q_OBJECT private: KComboBox *entryType; KLineEdit *entryId; QPushButton *buttonSuggestId; void createGUI(); public: explicit ReferenceWidget(QWidget *parent); bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} void setApplyElementInterface(ElementEditor::ApplyElementInterface *applyElement) { m_applyElement = applyElement; } void setOriginalElement(const QSharedPointer &orig); /** * Return the current value of the entry id/macro key editing widget. * * @return Current value of entry id/macro key if any, otherwise empty string */ QString currentId() const; QString label() override; QIcon icon() override; bool canEdit(const Element *element) override; public slots: void setEntryIdByDefault(); private: ElementEditor::ApplyElementInterface *m_applyElement; bool m_entryIdManuallySet; QSharedPointer m_element; private slots: void prepareSuggestionsMenu(); void insertSuggestionFromAction(); void entryIdManuallyChanged(); signals: void entryTypeChanged(); }; class FilesWidget : public ElementWidget { Q_OBJECT private: FieldInput *fileList; public: explicit FilesWidget(QWidget *parent); bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} QString label() override; QIcon icon() override; void setFile(const File *file) override; bool canEdit(const Element *element) override; private: static const QStringList keyStart; }; class OtherFieldsWidget : public ElementWidget { Q_OBJECT private: KLineEdit *fieldName; FieldInput *fieldContent; QTreeWidget *otherFieldsList; QPushButton *buttonDelete; QPushButton *buttonOpen; QPushButton *buttonAddApply; QUrl currentUrl; const QStringList blackListed; QSharedPointer internalEntry; QStringList deletedKeys, modifiedKeys; bool m_isReadOnly; void createGUI(); void updateList(); public: OtherFieldsWidget(const QStringList &blacklistedFields, QWidget *parent); ~OtherFieldsWidget() override; bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} QString label() override; QIcon icon() override; bool canEdit(const Element *element) override; private slots: void listElementExecuted(QTreeWidgetItem *item, int column); void listCurrentChanged(QTreeWidgetItem *item, QTreeWidgetItem *previous); void actionAddApply(); void actionDelete(); void actionOpen(); void updateGUI(); }; class MacroWidget : public ElementWidget { Q_OBJECT private: FieldInput *fieldInputValue; void createGUI(); public: explicit MacroWidget(QWidget *parent); ~MacroWidget() override; bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} QString label() override; QIcon icon() override; bool canEdit(const Element *element) override; }; class PreambleWidget : public ElementWidget { Q_OBJECT private: FieldInput *fieldInputValue; void createGUI(); public: explicit PreambleWidget(QWidget *parent); bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} QString label() override; QIcon icon() override; bool canEdit(const Element *element) override; }; class SourceWidget : public ElementWidget { Q_OBJECT private: class SourceWidgetTextEdit; SourceWidgetTextEdit *sourceEdit; QString originalText; void createGUI(); public: explicit SourceWidget(QWidget *parent); ~SourceWidget() override; bool apply(QSharedPointer element) const override; bool reset(QSharedPointer element) override; void setReadOnly(bool isReadOnly) override; void showReqOptWidgets(bool, const QString &) override {} QString label() override; QIcon icon() override; bool canEdit(const Element *element) override; private slots: void reset(); private: class Private; Private *const d; }; #endif // KBIBTEX_GUI_ELEMENTWIDGETS_H kbibtex-0.8.1/src/gui/element/findpdfui.cpp000066400000000000000000000545051331300026200206270ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "findpdfui.h" #include "findpdfui_p.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "fileinfo.h" #include "fieldlistedit.h" #include "logging_gui.h" class PDFListModel; const int posLabelUrl = 0; const int posLabelPreview = 1; const int posViewButton = 2; const int posRadioNoDownload = 3; const int posRadioDownload = 4; const int posRadioURLonly = 5; /// inspired by KNewStuff3's ItemsViewDelegate PDFItemDelegate::PDFItemDelegate(QListView *itemView, QObject *parent) : KWidgetItemDelegate(itemView, parent), m_parent(itemView) { // nothing } void PDFItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { QStyle *style = QApplication::style(); style->drawPrimitive(QStyle::PE_PanelItemViewItem, &option, painter, nullptr); painter->save(); if (option.state & QStyle::State_Selected) { painter->setPen(QPen(option.palette.highlightedText().color())); } else { painter->setPen(QPen(option.palette.text().color())); } /// draw icon based on mime-type QPixmap icon = index.data(Qt::DecorationRole).value(); if (!icon.isNull()) { int margin = option.fontMetrics.height() / 3; painter->drawPixmap(margin, margin + option.rect.top(), KIconLoader::SizeMedium, KIconLoader::SizeMedium, icon); } painter->restore(); } QList PDFItemDelegate::createItemWidgets(const QModelIndex &index) const { Q_UNUSED(index) // FIXME really of no use? QList list; /// first, the label with shows the found PDF file's origin (URL) KSqueezedTextLabel *label = new KSqueezedTextLabel(); label->setBackgroundRole(QPalette::NoRole); label->setAlignment(Qt::AlignTop | Qt::AlignLeft); list << label; Q_ASSERT_X(list.count() == posLabelUrl + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posLabelUrl + 1"); /// a label with shows either the PDF's title or a text snipplet QLabel *previewLabel = new QLabel(); previewLabel->setBackgroundRole(QPalette::NoRole); previewLabel->setAlignment(Qt::AlignTop | Qt::AlignLeft); list << previewLabel; Q_ASSERT_X(list.count() == posLabelPreview + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posLabelPreview + 1"); /// add a push button to view the PDF file QPushButton *pushButton = new QPushButton(QIcon::fromTheme(QStringLiteral("application-pdf")), i18n("View")); list << pushButton; connect(pushButton, &QPushButton::clicked, this, &PDFItemDelegate::slotViewPDF); Q_ASSERT_X(list.count() == posViewButton + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posViewButton + 1"); /// a button group to choose what to do with this particular PDF file QButtonGroup *bg = new QButtonGroup(); /// button group's first choice: ignore file (discard it) QRadioButton *radioButton = new QRadioButton(i18n("Ignore")); bg->addButton(radioButton); list << radioButton; connect(radioButton, &QRadioButton::toggled, this, &PDFItemDelegate::slotRadioNoDownloadToggled); Q_ASSERT_X(list.count() == posRadioNoDownload + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posRadioNoDownload + 1"); /// download this file and store it locally, user will be asked for "Save As" radioButton = new QRadioButton(i18n("Download")); bg->addButton(radioButton); list << radioButton; connect(radioButton, &QRadioButton::toggled, this, &PDFItemDelegate::slotRadioDownloadToggled); Q_ASSERT_X(list.count() == posRadioDownload + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posRadioDownload + 1"); /// paste URL into BibTeX entry, no local copy is stored radioButton = new QRadioButton(i18n("Use URL only")); bg->addButton(radioButton); list << radioButton; connect(radioButton, &QRadioButton::toggled, this, &PDFItemDelegate::slotRadioURLonlyToggled); Q_ASSERT_X(list.count() == posRadioURLonly + 1, "QList PDFItemDelegate::createItemWidgets() const", "list.count() != posRadioURLonly + 1"); return list; } /// Update the widgets /// Clazy warns: "Missing reference on non-trivial type" for argument 'widgets', /// but KWidgetItemDelegate defines this function this way and cannot be changed. void PDFItemDelegate::updateItemWidgets(const QList widgets, const QStyleOptionViewItem &option, const QPersistentModelIndex &index) const { if (!index.isValid()) return; const PDFListModel *model = qobject_cast(index.model()); if (model == nullptr) { qCDebug(LOG_KBIBTEX_GUI) << "WARNING - INVALID MODEL!"; return; } /// determine some variables used for layout const int margin = option.fontMetrics.height() / 3; const int buttonHeight = option.fontMetrics.height() * 6 / 3; const int maxTextWidth = qMax(qMax(option.fontMetrics.width(i18n("Use URL only")), option.fontMetrics.width(i18n("Ignore"))), qMax(option.fontMetrics.width(i18n("Download")), option.fontMetrics.width(i18n("View")))); const int buttonWidth = maxTextWidth * 3 / 2; const int labelWidth = option.rect.width() - 3 * margin - KIconLoader::SizeMedium; const int labelHeight = option.fontMetrics.height();//(option.rect.height() - 4 * margin - buttonHeight) / 2; /// Total height = margin + labelHeight + margin + labelHeight + marin + buttonHeight + margin /// = option.fontMetrics.height() * (1/3 + 1 + 1/3 + 1 + 1/3 + 6/3 + 1/3) /// = option.fontMetrics.height() * 16 / 3 /// setup label which will show the PDF file's URL KSqueezedTextLabel *label = qobject_cast(widgets[posLabelUrl]); if (label != nullptr) { const QString text = index.data(PDFListModel::URLRole).toUrl().toDisplayString(); label->setText(text); label->setToolTip(text); label->move(margin * 2 + KIconLoader::SizeMedium, margin); label->resize(labelWidth, labelHeight); } /// setup label which will show the PDF's title or textual beginning QLabel *previewLabel = qobject_cast(widgets[posLabelPreview]); if (previewLabel != nullptr) { previewLabel->setText(index.data(PDFListModel::TextualPreviewRole).toString()); previewLabel->move(margin * 2 + KIconLoader::SizeMedium, margin * 2 + labelHeight); previewLabel->resize(labelWidth, labelHeight); } /// setup the view button QPushButton *viewButton = qobject_cast(widgets[posViewButton]); if (viewButton != nullptr) { const QSize hint = viewButton->sizeHint(); const int h = hint.isValid() ? qMin(buttonHeight, hint.height()) : buttonHeight; viewButton->move(margin * 2 + KIconLoader::SizeMedium, option.rect.height() - margin - h); viewButton->resize(buttonWidth, h); } /// setup each of the three radio buttons for (int i = 0; i < 3; ++i) { QRadioButton *radioButton = qobject_cast(widgets[posRadioNoDownload + i]); if (radioButton != nullptr) { const QSize hint = radioButton->sizeHint(); const int h = hint.isValid() ? qMin(buttonHeight, hint.height()) : buttonHeight; radioButton->move(option.rect.width() - margin - (3 - i) * (buttonWidth + margin), option.rect.height() - margin - h); radioButton->resize(buttonWidth, h); bool ok = false; radioButton->setChecked(i + FindPDF::NoDownload == index.data(PDFListModel::DownloadModeRole).toInt(&ok) && ok); } } } QSize PDFItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &) const { /// set a size that is suiteable QSize size; size.setWidth(option.fontMetrics.width(i18n("Download")) * 6); size.setHeight(qMax(option.fontMetrics.height() * 16 / 3, (int)KIconLoader::SizeMedium)); return size; } /** * Method is called when the "View PDF" button of a list item is clicked. * Opens the associated URL or its local copy using the system's default viewer. */ void PDFItemDelegate::slotViewPDF() { QModelIndex index = focusedIndex(); if (index.isValid()) { const QString tempfileName = index.data(PDFListModel::TempFileNameRole).toString(); const QUrl url = index.data(PDFListModel::URLRole).toUrl(); if (!tempfileName.isEmpty()) { /// Guess mime type for url to open QUrl tempUrl(tempfileName); QMimeType mimeType = FileInfo::mimeTypeForUrl(tempUrl); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(tempUrl, mimeTypeName, itemView(), false, false, url.toDisplayString()); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(tempUrl, mimeTypeName, itemView(), KRun::RunFlags(), url.toDisplayString()); #endif // KIO_VERSION < 0x051f00 } else if (url.isValid()) { /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(url); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, mimeTypeName, itemView(), false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, mimeTypeName, itemView(), KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } } /** * Updated the model when the user selects the radio button for ignoring a PDF file. */ void PDFItemDelegate::slotRadioNoDownloadToggled(bool checked) { QModelIndex index = focusedIndex(); if (index.isValid() && checked) { m_parent->model()->setData(index, FindPDF::NoDownload, PDFListModel::DownloadModeRole); } } /** * Updated the model when the user selects the radio button for downloading a PDF file. */ void PDFItemDelegate::slotRadioDownloadToggled(bool checked) { QModelIndex index = focusedIndex(); if (index.isValid() && checked) { m_parent->model()->setData(index, FindPDF::Download, PDFListModel::DownloadModeRole); } } /** * Updated the model when the user selects the radio button for keeping a PDF file's URL. */ void PDFItemDelegate::slotRadioURLonlyToggled(bool checked) { QModelIndex index = focusedIndex(); if (index.isValid() && checked) { m_parent->model()->setData(index, FindPDF::URLonly, PDFListModel::DownloadModeRole); } } PDFListModel::PDFListModel(QList &resultList, QObject *parent) : QAbstractListModel(parent), m_resultList(resultList) { // nothing } int PDFListModel::rowCount(const QModelIndex &parent) const { /// row cout depends on number of found PDF references int count = parent == QModelIndex() ? m_resultList.count() : 0; return count; } QVariant PDFListModel::data(const QModelIndex &index, int role) const { if (index != QModelIndex() && index.parent() == QModelIndex() && index.row() < m_resultList.count()) { if (role == Qt::DisplayRole) return m_resultList[index.row()].url.toDisplayString(); else if (role == URLRole) return m_resultList[index.row()].url; else if (role == TextualPreviewRole) return m_resultList[index.row()].textPreview; else if (role == Qt::ToolTipRole) return QStringLiteral("") + m_resultList[index.row()].textPreview + QStringLiteral(""); ///< 'qt' tags required for word wrap else if (role == TempFileNameRole) { if (m_resultList[index.row()].tempFilename != nullptr) return m_resultList[index.row()].tempFilename->fileName(); else return QVariant(); } else if (role == DownloadModeRole) return m_resultList[index.row()].downloadMode; else if (role == Qt::DecorationRole) { /// make an educated guess on the icon, based on URL or path QString iconName = FileInfo::mimeTypeForUrl(m_resultList[index.row()].url).iconName(); iconName = iconName == QStringLiteral("application-octet-stream") ? QStringLiteral("application-pdf") : iconName; return QIcon::fromTheme(iconName).pixmap(KIconLoader::SizeMedium, KIconLoader::SizeMedium); } else return QVariant(); } return QVariant(); } bool PDFListModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (index != QModelIndex() && index.row() < m_resultList.count() && role == DownloadModeRole) { bool ok = false; FindPDF::DownloadMode downloadMode = (FindPDF::DownloadMode)value.toInt(&ok); if (ok) { m_resultList[index.row()].downloadMode = downloadMode; return true; } } return false; } QVariant PDFListModel::headerData(int section, Qt::Orientation orientation, int role) const { Q_UNUSED(orientation); if (section == 0) { if (role == Qt::DisplayRole || role == Qt::ToolTipRole) { return i18n("Result"); } else return QVariant(); } return QVariant(); } class FindPDFUI::Private { private: FindPDFUI *p; public: QListView *listViewResult; QLabel *labelMessage; QList resultList; FindPDF *findpdf; Private(FindPDFUI *parent) : p(parent), findpdf(new FindPDF(parent)) { setupGUI(); } void setupGUI() { QGridLayout *layout = new QGridLayout(p); const int minWidth = p->fontMetrics().height() * 40; const int minHeight = p->fontMetrics().height() * 20; p->setMinimumSize(minWidth, minHeight); listViewResult = new QListView(p); layout->addWidget(listViewResult, 0, 0); listViewResult->setEnabled(false); listViewResult->hide(); labelMessage = new QLabel(p); layout->addWidget(labelMessage, 1, 0); labelMessage->setMinimumSize(minWidth, minHeight); labelMessage->setAlignment(Qt::AlignVCenter | Qt::AlignCenter); static_cast(p->parent())->setCursor(Qt::WaitCursor); } }; FindPDFUI::FindPDFUI(Entry &entry, QWidget *parent) : QWidget(parent), d(new Private(this)) { d->labelMessage->show(); d->labelMessage->setText(i18n("Starting to search...")); connect(d->findpdf, &FindPDF::finished, this, &FindPDFUI::searchFinished); connect(d->findpdf, &FindPDF::progress, this, &FindPDFUI::searchProgress); d->findpdf->search(entry); } FindPDFUI::~FindPDFUI() { for (QList::Iterator it = d->resultList.begin(); it != d->resultList.end();) { delete it->tempFilename; it = d->resultList.erase(it); } } void FindPDFUI::interactiveFindPDF(Entry &entry, const File &bibtexFile, QWidget *parent) { QPointer dlg = new QDialog(parent); QPointer widget = new FindPDFUI(entry, dlg); dlg->setWindowTitle(i18n("Find PDF")); QBoxLayout *layout = new QVBoxLayout(dlg); layout->addWidget(widget); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Abort | QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, dlg); layout->addWidget(buttonBox); dlg->setLayout(layout); buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); connect(widget.data(), &FindPDFUI::resultAvailable, buttonBox->button(QDialogButtonBox::Ok), &QWidget::setEnabled); connect(widget.data(), &FindPDFUI::resultAvailable, buttonBox->button(QDialogButtonBox::Abort), &QWidget::setDisabled); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); connect(buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, dlg.data(), &QDialog::reject); connect(buttonBox->button(QDialogButtonBox::Abort), &QPushButton::clicked, widget.data(), &FindPDFUI::stopSearch); if (dlg->exec() == QDialog::Accepted) widget->apply(entry, bibtexFile); delete dlg; } void FindPDFUI::apply(Entry &entry, const File &bibtexFile) { QAbstractItemModel *model = d->listViewResult->model(); for (int i = 0; i < model->rowCount(); ++i) { bool ok = false; FindPDF::DownloadMode downloadMode = (FindPDF::DownloadMode)model->data(model->index(i, 0), PDFListModel::DownloadModeRole).toInt(&ok); if (!ok) { qCDebug(LOG_KBIBTEX_GUI) << "Could not interprete download mode"; downloadMode = FindPDF::NoDownload; } QUrl url = model->data(model->index(i, 0), PDFListModel::URLRole).toUrl(); QString tempfileName = model->data(model->index(i, 0), PDFListModel::TempFileNameRole).toString(); if (downloadMode == FindPDF::URLonly && url.isValid()) { bool alreadyContained = false; for (QMap::ConstIterator it = entry.constBegin(); !alreadyContained && it != entry.constEnd(); ++it) // FIXME this will terribly break if URLs in an entry's URL field are separated with semicolons alreadyContained |= it.key().toLower().startsWith(Entry::ftUrl) && PlainTextValue::text(it.value()) == url.toDisplayString(); if (!alreadyContained) { Value value; value.append(QSharedPointer(new VerbatimText(url.toDisplayString()))); if (!entry.contains(Entry::ftUrl)) entry.insert(Entry::ftUrl, value); else for (int i = 2; i < 256; ++i) { const QString keyName = QString(QStringLiteral("%1%2")).arg(Entry::ftUrl).arg(i); if (!entry.contains(keyName)) { entry.insert(keyName, value); break; } } } } else if (downloadMode == FindPDF::Download && !tempfileName.isEmpty()) { QUrl startUrl = bibtexFile.property(File::Url, QUrl()).toUrl(); const QString absoluteFilename = QFileDialog::getSaveFileName(this, i18n("Save URL '%1'", url.url(QUrl::PreferLocalFile)), startUrl.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).path(), QStringLiteral("application/pdf")); if (!absoluteFilename.isEmpty()) { const QString visibleFilename = UrlListEdit::askRelativeOrStaticFilename(this, absoluteFilename, startUrl); qCDebug(LOG_KBIBTEX_GUI) << "Saving PDF from " << url << " to file " << absoluteFilename << " known as " << visibleFilename; // FIXME test for overwrite QFile::copy(tempfileName, absoluteFilename); bool alreadyContained = false; for (QMap::ConstIterator it = entry.constBegin(); !alreadyContained && it != entry.constEnd(); ++it) alreadyContained |= (it.key().toLower().startsWith(Entry::ftLocalFile) || it.key().toLower().startsWith(Entry::ftUrl)) && PlainTextValue::text(it.value()) == url.toDisplayString(); if (!alreadyContained) { Value value; value.append(QSharedPointer(new VerbatimText(visibleFilename))); if (!entry.contains(Entry::ftLocalFile)) entry.insert(Entry::ftLocalFile, value); else for (int i = 2; i < 256; ++i) { const QString keyName = QString(QStringLiteral("%1%2")).arg(Entry::ftLocalFile).arg(i); if (!entry.contains(keyName)) { entry.insert(keyName, value); break; } } } } } } } void FindPDFUI::searchFinished() { d->labelMessage->hide(); d->listViewResult->show(); d->resultList = d->findpdf->results(); d->listViewResult->setModel(new PDFListModel(d->resultList, d->listViewResult)); d->listViewResult->setItemDelegate(new PDFItemDelegate(d->listViewResult, d->listViewResult)); d->listViewResult->setEnabled(true); d->listViewResult->reset(); static_cast(parent())->unsetCursor(); emit resultAvailable(true); } void FindPDFUI::searchProgress(int visitedPages, int runningJobs, int foundDocuments) { d->listViewResult->hide(); d->labelMessage->show(); d->labelMessage->setText(i18n("Number of visited pages: %1
Number of running downloads: %2
Number of found documents: %3
", visitedPages, runningJobs, foundDocuments)); } void FindPDFUI::stopSearch() { d->findpdf->abort(); searchFinished(); } void FindPDFUI::abort() { d->findpdf->abort(); } kbibtex-0.8.1/src/gui/element/findpdfui.h000066400000000000000000000050221331300026200202620ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_FINDPDFUI_H #define KBIBTEX_GUI_FINDPDFUI_H #include "kbibtexgui_export.h" #include #include #include "entry.h" #include "findpdf.h" class QListView; class FindPDF; /** * A user interface too @see FindPDF * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT FindPDFUI : public QWidget { Q_OBJECT public: ~FindPDFUI() override; /** * Show a modal dialog that allows the user to start searching for PDF files, * and from the set of found results to select (1) which PDF files to download * and keep, (2) which URLs to PDF files to keep (no file downloading) and (3) * which PDF files to ignore. * * @param entry * @param bibtexFile * @param parent */ static void interactiveFindPDF(Entry &entry, const File &bibtexFile, QWidget *parent); signals: void resultAvailable(bool); public slots: /** * Abort a running search. */ void stopSearch(); void abort(); protected: FindPDFUI(Entry &entry, QWidget *parent); void apply(Entry &entry, const File &bibtexFile); private: class Private; Private *const d; private slots: void searchFinished(); void searchProgress(int visitedPages, int runningJobs, int foundDocuments); }; #endif // KBIBTEX_GUI_FINDPDFUI_H kbibtex-0.8.1/src/gui/element/findpdfui_p.h000066400000000000000000000066371331300026200206160ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_FINDPDFUI_P_H #define KBIBTEX_GUI_FINDPDFUI_P_H #include #include "findpdf.h" class QListView; class FindPDF; /** * @author Thomas Fischer */ class PDFItemDelegate : public KWidgetItemDelegate { Q_OBJECT private: QListView *m_parent; public: PDFItemDelegate(QListView *itemView, QObject *parent); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; /// update the widgets void updateItemWidgets(const QList widgets, const QStyleOptionViewItem &option, const QPersistentModelIndex &index) const override; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &) const override; protected: /// get the list of widgets QList createItemWidgets(const QModelIndex &index) const override; private slots: void slotViewPDF(); void slotRadioNoDownloadToggled(bool); void slotRadioDownloadToggled(bool); void slotRadioURLonlyToggled(bool); }; /** * @author Thomas Fischer */ class PDFListModel : public QAbstractListModel { Q_OBJECT public: explicit PDFListModel(QList &resultList, QObject *parent = nullptr); enum PDFListModelRole { /// URL of a PDF file URLRole = Qt::UserRole + 1234, /// A textual representation, e.g. text extracted from the PDF file TextualPreviewRole = Qt::UserRole + 1237, /// Local, temporal copy of a remote PDF file TempFileNameRole = Qt::UserRole + 1236, /// Returns a FindPDF::DownloadMode, may be either /// 'NoDownload', 'Download', or 'URLonly' DownloadModeRole = Qt::UserRole + 1235 }; int rowCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; private: QList &m_resultList; }; #endif // KBIBTEX_GUI_FINDPDFUI_P_H kbibtex-0.8.1/src/gui/field/000077500000000000000000000000001331300026200155745ustar00rootroot00000000000000kbibtex-0.8.1/src/gui/field/colorlabelwidget.cpp000066400000000000000000000177641331300026200216410ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "colorlabelwidget.h" #include #include #include #include #include #include #include #include "notificationhub.h" #include "preferences.h" class ColorLabelComboBoxModel : public QAbstractItemModel, private NotificationListener { Q_OBJECT public: enum ColorLabelComboBoxModelRole { /// Color of a color-label pair ColorRole = Qt::UserRole + 1721 }; struct ColorLabelPair { QColor color; QString label; }; QList colorLabelPairs; QColor userColor; KSharedConfigPtr config; ColorLabelComboBoxModel(QObject *p = nullptr) : QAbstractItemModel(p), userColor(Qt::black), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { readConfiguration(); NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); } void notificationEvent(int eventId) override { if (eventId == NotificationHub::EventConfigurationChanged) readConfiguration(); } void readConfiguration() { KConfigGroup configGroup(config, Preferences::groupColor); QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); colorLabelPairs.clear(); for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { ColorLabelPair clp; clp.color = QColor(*itc); clp.label = i18n((*itl).toUtf8().constData()); colorLabelPairs << clp; } } QModelIndex index(int row, int column, const QModelIndex &) const override { return createIndex(row, column); } QModelIndex parent(const QModelIndex & = QModelIndex()) const override { return QModelIndex(); } int rowCount(const QModelIndex &parent = QModelIndex()) const override { return parent == QModelIndex() ? 2 + colorLabelPairs.count() : 0; } int columnCount(const QModelIndex & = QModelIndex()) const override { return 1; } QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override { if (role == ColorRole) { if (index.row() == 0) return QColor(Qt::black); else if (index.row() == rowCount() - 1) return userColor; else return colorLabelPairs[index.row() - 1].color; } else if (role == Qt::FontRole && (index.row() == 0 || index.row() == rowCount() - 1)) { QFont font; font.setItalic(true); return font; } else if (role == Qt::DecorationRole && index.row() > 0 && (index.row() < rowCount() - 1 || userColor != Qt::black)) { QColor color = data(index, ColorRole).value(); return ColorLabelWidget::createSolidIcon(color); } else if (role == Qt::DisplayRole) if (index.row() == 0) return i18n("No color"); else if (index.row() == rowCount() - 1) return i18n("User-defined color"); else return colorLabelPairs[index.row() - 1].label; else return QVariant(); } QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override { if (section != 0 || orientation != Qt::Horizontal || role != Qt::DisplayRole) return QVariant(); return i18n("Color & Label"); } void setColor(const QColor &newColor) { userColor = newColor; const QModelIndex idx = index(rowCount() - 1, 0, QModelIndex()); emit dataChanged(idx, idx); } }; class ColorLabelWidget::ColorLabelWidgetPrivate { private: // UNUSED ColorLabelWidget *parent; public: ColorLabelComboBoxModel *model; ColorLabelWidgetPrivate(ColorLabelWidget */*UNUSED p*/, ColorLabelComboBoxModel *m) : /* UNUSED parent(p), */ model(m) { /// nothing } }; ColorLabelWidget::ColorLabelWidget(QWidget *parent) : KComboBox(false, parent), d(new ColorLabelWidgetPrivate(this, new ColorLabelComboBoxModel(this))) { setModel(d->model); connect(this, static_cast(&QComboBox::currentIndexChanged), this, &ColorLabelWidget::slotCurrentIndexChanged); } ColorLabelWidget::~ColorLabelWidget() { delete d; } void ColorLabelWidget::clear() { setCurrentIndex(0); } bool ColorLabelWidget::reset(const Value &value) { /// Avoid triggering signal when current index is set by the program disconnect(this, static_cast(&QComboBox::currentIndexChanged), this, &ColorLabelWidget::slotCurrentIndexChanged); QSharedPointer verbatimText; if (value.count() == 1 && !(verbatimText = value.first().dynamicCast()).isNull()) { int i = 0; const QColor color = QColor(verbatimText->text()); for (; i < d->model->rowCount(); ++i) if (d->model->data(d->model->index(i, 0, QModelIndex()), ColorLabelComboBoxModel::ColorRole).value() == color) break; if (i >= d->model->rowCount()) { d->model->userColor = color; i = d->model->rowCount() - 1; } setCurrentIndex(i); } else setCurrentIndex(0); /// Re-enable triggering signal after setting current index connect(this, static_cast(&QComboBox::currentIndexChanged), this, &ColorLabelWidget::slotCurrentIndexChanged); return true; } bool ColorLabelWidget::apply(Value &value) const { QColor color = d->model->data(d->model->index(currentIndex(), 0, QModelIndex()), ColorLabelComboBoxModel::ColorRole).value(); value.clear(); if (color != Qt::black) value.append(QSharedPointer(new VerbatimText(color.name()))); return true; } void ColorLabelWidget::setReadOnly(bool isReadOnly) { setEnabled(!isReadOnly); } void ColorLabelWidget::slotCurrentIndexChanged(int index) { if (index == count() - 1) { QColor dialogColor = d->model->userColor; if (QColorDialog::getColor(dialogColor, this) == QColorDialog::Accepted) d->model->setColor(dialogColor); } emit modified(); } QPixmap ColorLabelWidget::createSolidIcon(const QColor &color) { QFontMetrics fm = QFontMetrics(QFont()); int h = fm.height() - 4; QPixmap pm(h, h); QPainter painter(&pm); painter.setPen(color); painter.setBrush(QBrush(color)); painter.drawRect(0, 0, h, h); return pm; } #include "colorlabelwidget.moc" kbibtex-0.8.1/src/gui/field/colorlabelwidget.h000066400000000000000000000037541331300026200213000ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_COLORLABELWIDGET_H #define KBIBTEX_GUI_COLORLABELWIDGET_H #include #include "kbibtexgui_export.h" #include "value.h" /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT ColorLabelWidget : public KComboBox { Q_OBJECT public: explicit ColorLabelWidget(QWidget *parent = nullptr); ~ColorLabelWidget() override; void clear(); bool reset(const Value &value); bool apply(Value &value) const; void setReadOnly(bool); static QPixmap createSolidIcon(const QColor &color); signals: void modified(); private slots: void slotCurrentIndexChanged(int); private: class ColorLabelWidgetPrivate; ColorLabelWidget::ColorLabelWidgetPrivate *d; }; #endif // KBIBTEX_GUI_COLORLABELWIDGET_H kbibtex-0.8.1/src/gui/field/fieldinput.cpp000066400000000000000000000301351331300026200204450ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "fieldinput.h" #include #include #include #include #include #include #include #include #include #include "file.h" #include "entry.h" #include "fieldlineedit.h" #include "fieldlistedit.h" #include "colorlabelwidget.h" #include "starrating.h" class FieldInput::FieldInputPrivate { private: FieldInput *p; public: ColorLabelWidget *colorWidget; StarRatingFieldInput *starRatingWidget; FieldLineEdit *fieldLineEdit; FieldListEdit *fieldListEdit; KBibTeX::FieldInputType fieldInputType; KBibTeX::TypeFlags typeFlags; KBibTeX::TypeFlag preferredTypeFlag; const File *bibtexFile; const Element *element; FieldInputPrivate(FieldInput *parent) : p(parent), colorWidget(nullptr), starRatingWidget(nullptr), fieldLineEdit(nullptr), fieldListEdit(nullptr), fieldInputType(KBibTeX::SingleLine), preferredTypeFlag(KBibTeX::tfSource), bibtexFile(nullptr), element(nullptr) { /// nothing } ~FieldInputPrivate() { if (colorWidget != nullptr) delete colorWidget; else if (starRatingWidget != nullptr) delete starRatingWidget; else if (fieldLineEdit != nullptr) delete fieldLineEdit; else if (fieldListEdit != nullptr) delete fieldListEdit; } void createGUI() { QHBoxLayout *layout = new QHBoxLayout(p); layout->setMargin(0); switch (fieldInputType) { case KBibTeX::MultiLine: fieldLineEdit = new FieldLineEdit(preferredTypeFlag, typeFlags, true, p); layout->addWidget(fieldLineEdit); break; case KBibTeX::List: fieldListEdit = new FieldListEdit(preferredTypeFlag, typeFlags, p); layout->addWidget(fieldListEdit); break; case KBibTeX::Month: { fieldLineEdit = new FieldLineEdit(preferredTypeFlag, typeFlags, false, p); layout->addWidget(fieldLineEdit); QPushButton *monthSelector = new QPushButton(QIcon::fromTheme(QStringLiteral("view-calendar-month")), QStringLiteral("")); monthSelector->setToolTip(i18n("Select a predefined month")); fieldLineEdit->prependWidget(monthSelector); QSignalMapper *sm = new QSignalMapper(monthSelector); connect(sm, static_cast(&QSignalMapper::mapped), p, &FieldInput::setMonth); QMenu *monthMenu = new QMenu(monthSelector); for (int i = 1; i <= 12; ++i) { QAction *monthAction = monthMenu->addAction(QDate::longMonthName(i, QDate::StandaloneFormat), sm, SLOT(map())); sm->setMapping(monthAction, i); } monthSelector->setMenu(monthMenu); } break; case KBibTeX::CrossRef: { fieldLineEdit = new FieldLineEdit(preferredTypeFlag, typeFlags, false, p); layout->addWidget(fieldLineEdit); QPushButton *referenceSelector = new QPushButton(QIcon::fromTheme(QStringLiteral("flag-gree")), QStringLiteral("")); ///< find better icon referenceSelector->setToolTip(i18n("Select an existing entry")); fieldLineEdit->prependWidget(referenceSelector); connect(referenceSelector, &QPushButton::clicked, p, &FieldInput::selectCrossRef); } break; case KBibTeX::Color: { colorWidget = new ColorLabelWidget(p); layout->addWidget(colorWidget, 0); } break; case KBibTeX::StarRating: { starRatingWidget = new StarRatingFieldInput(8 /* = #stars */, p); layout->addWidget(starRatingWidget, 0); } break; case KBibTeX::PersonList: fieldListEdit = new PersonListEdit(preferredTypeFlag, typeFlags, p); layout->addWidget(fieldListEdit); break; case KBibTeX::UrlList: fieldListEdit = new UrlListEdit(p); layout->addWidget(fieldListEdit); break; case KBibTeX::KeywordList: fieldListEdit = new KeywordListEdit(p); layout->addWidget(fieldListEdit); break; default: fieldLineEdit = new FieldLineEdit(preferredTypeFlag, typeFlags, false, p); layout->addWidget(fieldLineEdit); } enableModifiedSignal(); } void clear() { disableModifiedSignal(); if (fieldLineEdit != nullptr) fieldLineEdit->setText(QStringLiteral("")); else if (fieldListEdit != nullptr) fieldListEdit->clear(); else if (colorWidget != nullptr) colorWidget->clear(); else if (starRatingWidget != nullptr) starRatingWidget->unsetValue(); enableModifiedSignal(); } bool reset(const Value &value) { /// if signals are not deactivated, the "modified" signal would be emitted when /// resetting the widget's value disableModifiedSignal(); bool result = false; if (fieldLineEdit != nullptr) result = fieldLineEdit->reset(value); else if (fieldListEdit != nullptr) result = fieldListEdit->reset(value); else if (colorWidget != nullptr) result = colorWidget->reset(value); else if (starRatingWidget != nullptr) result = starRatingWidget->reset(value); enableModifiedSignal(); return result; } bool apply(Value &value) const { bool result = false; if (fieldLineEdit != nullptr) result = fieldLineEdit->apply(value); else if (fieldListEdit != nullptr) result = fieldListEdit->apply(value); else if (colorWidget != nullptr) result = colorWidget->apply(value); else if (starRatingWidget != nullptr) result = starRatingWidget->apply(value); return result; } void setReadOnly(bool isReadOnly) { if (fieldLineEdit != nullptr) fieldLineEdit->setReadOnly(isReadOnly); else if (fieldListEdit != nullptr) fieldListEdit->setReadOnly(isReadOnly); else if (colorWidget != nullptr) colorWidget->setReadOnly(isReadOnly); else if (starRatingWidget != nullptr) starRatingWidget->setReadOnly(isReadOnly); } void setFile(const File *file) { bibtexFile = file; if (fieldLineEdit != nullptr) fieldLineEdit->setFile(file); if (fieldListEdit != nullptr) fieldListEdit->setFile(file); } void setElement(const Element *element) { this->element = element; if (fieldLineEdit != nullptr) fieldLineEdit->setElement(element); if (fieldListEdit != nullptr) fieldListEdit->setElement(element); } void setFieldKey(const QString &fieldKey) { if (fieldLineEdit != nullptr) fieldLineEdit->setFieldKey(fieldKey); if (fieldListEdit != nullptr) fieldListEdit->setFieldKey(fieldKey); } void setCompletionItems(const QStringList &items) { if (fieldLineEdit != nullptr) fieldLineEdit->setCompletionItems(items); if (fieldListEdit != nullptr) fieldListEdit->setCompletionItems(items); } bool selectCrossRef() { Q_ASSERT_X(fieldLineEdit != nullptr, "void FieldInput::FieldInputPrivate::selectCrossRef()", "fieldLineEdit is invalid"); if (bibtexFile == nullptr) return false; /// create a standard input dialog with a list of all keys (ids of entries) bool ok = false; QStringList list = bibtexFile->allKeys(File::etEntry); list.sort(); /// remove own id const Entry *entry = dynamic_cast(element); if (entry != nullptr) list.removeOne(entry->id()); QString crossRef = QInputDialog::getItem(p, i18n("Select Cross Reference"), i18n("Select the cross reference to another entry:"), list, 0, false, &ok); if (ok && !crossRef.isEmpty()) { /// insert selected cross reference into edit widget Value value; value.append(QSharedPointer(new VerbatimText(crossRef))); reset(value); return true; } return false; } void enableModifiedSignal() { if (fieldLineEdit != nullptr) connect(fieldLineEdit, &FieldLineEdit::textChanged, p, &FieldInput::modified); if (fieldListEdit != nullptr) connect(fieldListEdit, &FieldListEdit::modified, p, &FieldInput::modified); if (colorWidget != nullptr) connect(colorWidget, &ColorLabelWidget::modified, p, &FieldInput::modified); if (starRatingWidget != nullptr) connect(starRatingWidget, &StarRatingFieldInput::modified, p, &FieldInput::modified); } void disableModifiedSignal() { if (fieldLineEdit != nullptr) disconnect(fieldLineEdit, &FieldLineEdit::textChanged, p, &FieldInput::modified); if (fieldListEdit != nullptr) disconnect(fieldListEdit, &FieldListEdit::modified, p, &FieldInput::modified); if (colorWidget != nullptr) disconnect(colorWidget, &ColorLabelWidget::modified, p, &FieldInput::modified); if (starRatingWidget != nullptr) disconnect(starRatingWidget, &StarRatingFieldInput::modified, p, &FieldInput::modified); } }; FieldInput::FieldInput(KBibTeX::FieldInputType fieldInputType, KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent) : QWidget(parent), d(new FieldInputPrivate(this)) { d->fieldInputType = fieldInputType; d->typeFlags = typeFlags; d->preferredTypeFlag = preferredTypeFlag; d->createGUI(); } FieldInput::~FieldInput() { delete d; } void FieldInput::clear() { d->clear(); } bool FieldInput::reset(const Value &value) { return d->reset(value); } bool FieldInput::apply(Value &value) const { return d->apply(value); } void FieldInput::setReadOnly(bool isReadOnly) { d->setReadOnly(isReadOnly); } void FieldInput::setFile(const File *file) { d->setFile(file); } void FieldInput::setElement(const Element *element) { d->setElement(element); } void FieldInput::setFieldKey(const QString &fieldKey) { d->setFieldKey(fieldKey); } void FieldInput::setCompletionItems(const QStringList &items) { d->setCompletionItems(items); } QWidget *FieldInput::buddy() { if (d->fieldLineEdit != nullptr) return d->fieldLineEdit->buddy(); // TODO fieldListEdit else if (d->colorWidget != nullptr) return d->colorWidget; else if (d->starRatingWidget != nullptr) return d->starRatingWidget; return nullptr; } void FieldInput::setMonth(int month) { Value value; value.append(QSharedPointer(new MacroKey(KBibTeX::MonthsTriple[month - 1]))); reset(value); emit modified(); } void FieldInput::selectCrossRef() { if (d->selectCrossRef()) emit modified(); } kbibtex-0.8.1/src/gui/field/fieldinput.h000066400000000000000000000043401331300026200201110ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #ifndef KBIBTEX_GUI_FIELDINPUT_H #define KBIBTEX_GUI_FIELDINPUT_H #include "kbibtexgui_export.h" #include #include "value.h" #include "kbibtex.h" class Element; /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT FieldInput : public QWidget { Q_OBJECT public: FieldInput(KBibTeX::FieldInputType fieldInputType, KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent = nullptr); ~FieldInput() override; bool reset(const Value &value); bool apply(Value &value) const; void clear(); void setReadOnly(bool isReadOnly); void setFile(const File *file); void setElement(const Element *element); void setFieldKey(const QString &fieldKey); void setCompletionItems(const QStringList &items); QWidget *buddy(); signals: void modified(); private slots: void setMonth(int month); void selectCrossRef(); private: class FieldInputPrivate; FieldInputPrivate *d; }; #endif // KBIBTEX_GUI_FIELDINPUT_H kbibtex-0.8.1/src/gui/field/fieldlineedit.cpp000066400000000000000000000530641331300026200211110ustar00rootroot00000000000000/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see . * ***************************************************************************/ #include "fieldlineedit.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "fileinfo.h" #include "file.h" #include "entry.h" #include "value.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "bibtexfields.h" #include "encoderlatex.h" #include "preferences.h" #include "logging_gui.h" class FieldLineEdit::FieldLineEditPrivate { private: FieldLineEdit *parent; Value currentValue; KBibTeX::TypeFlag preferredTypeFlag; KBibTeX::TypeFlags typeFlags; QSignalMapper *menuTypesSignalMapper; QPushButton *buttonOpenUrl; KSharedConfigPtr config; const QString configGroupNameGeneral; QString personNameFormatting; public: QMenu *menuTypes; KBibTeX::TypeFlag typeFlag; QUrl urlToOpen; const File *file; QString fieldKey; FieldLineEditPrivate(KBibTeX::TypeFlag ptf, KBibTeX::TypeFlags tf, FieldLineEdit *p) : parent(p), preferredTypeFlag(ptf), typeFlags(tf), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupNameGeneral(QStringLiteral("General")), file(nullptr) { menuTypes = new QMenu(parent); menuTypesSignalMapper = new QSignalMapper(parent); setupMenu(); connect(menuTypesSignalMapper, static_cast(&QSignalMapper::mapped), parent, &FieldLineEdit::slotTypeChanged); buttonOpenUrl = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open-remote")), QStringLiteral(""), parent); buttonOpenUrl->setVisible(false); buttonOpenUrl->setProperty("isConst", true); parent->appendWidget(buttonOpenUrl); connect(buttonOpenUrl, &QPushButton::clicked, parent, &FieldLineEdit::slotOpenUrl); connect(p, &FieldLineEdit::textChanged, p, &FieldLineEdit::slotTextChanged); Value value; typeFlag = determineTypeFlag(value, preferredTypeFlag, typeFlags); updateGUI(typeFlag); KConfigGroup configGroup(config, configGroupNameGeneral); personNameFormatting = configGroup.readEntry(Preferences::keyPersonNameFormatting, Preferences::defaultPersonNameFormatting); } bool reset(const Value &value) { bool result = false; QString text; typeFlag = determineTypeFlag(value, typeFlag, typeFlags); updateGUI(typeFlag); if (!value.isEmpty()) { if (typeFlag == KBibTeX::tfSource) { /// simple case: field's value is to be shown as BibTeX code, including surrounding curly braces FileExporterBibTeX exporter(parent); text = exporter.valueToBibTeX(value); result = true; } else { /// except for the source view type flag, type flag views do not support composed values, /// therefore only the first value will be shown const QSharedPointer first = value.first(); const QSharedPointer plainText = first.dynamicCast<PlainText>(); if (typeFlag == KBibTeX::tfPlainText && !plainText.isNull()) { text = plainText->text(); result = true; } else { const QSharedPointer<Person> person = first.dynamicCast<Person>(); if (typeFlag == KBibTeX::tfPerson && !person.isNull()) { text = Person::transcribePersonName(person.data(), personNameFormatting); result = true; } else { const QSharedPointer<MacroKey> macroKey = first.dynamicCast<MacroKey>(); if (typeFlag == KBibTeX::tfReference && !macroKey.isNull()) { text = macroKey->text(); result = true; } else { const QSharedPointer<Keyword> keyword = first.dynamicCast<Keyword>(); if (typeFlag == KBibTeX::tfKeyword && !keyword.isNull()) { text = keyword->text(); result = true; } else { const QSharedPointer<VerbatimText> verbatimText = first.dynamicCast<VerbatimText>(); if (typeFlag == KBibTeX::tfVerbatim && !verbatimText.isNull()) { text = verbatimText->text(); result = true; } else qCWarning(LOG_KBIBTEX_GUI) << "Could not reset: " << typeFlag << "(" << (typeFlag == KBibTeX::tfSource ? "Source" : (typeFlag == KBibTeX::tfReference ? "Reference" : (typeFlag == KBibTeX::tfPerson ? "Person" : (typeFlag == KBibTeX::tfPlainText ? "PlainText" : (typeFlag == KBibTeX::tfKeyword ? "Keyword" : (typeFlag == KBibTeX::tfVerbatim ? "Verbatim" : "???")))))) << ") " << (typeFlags.testFlag(KBibTeX::tfPerson) ? "Person" : "") << (typeFlags.testFlag(KBibTeX::tfPlainText) ? "PlainText" : "") << (typeFlags.testFlag(KBibTeX::tfReference) ? "Reference" : "") << (typeFlags.testFlag(KBibTeX::tfVerbatim) ? "Verbatim" : "") << " " << typeid((void)*first).name() << " : " << PlainTextValue::text(value); } } } } } } updateURL(text); parent->setText(text); return result; } bool apply(Value &value) const { value.clear(); /// Remove unnecessary white space from input /// Exception: source and verbatim content is kept unmodified const QString text = typeFlag == KBibTeX::tfSource || typeFlag == KBibTeX::tfVerbatim ? parent->text() : parent->text().simplified(); const EncoderLaTeX &encoder = EncoderLaTeX::instance(); const QString encodedText = encoder.decode(text); if (encodedText.isEmpty()) return true; else if (typeFlag == KBibTeX::tfPlainText) { value.append(QSharedPointer<PlainText>(new PlainText(encodedText))); return true; } else if (typeFlag == KBibTeX::tfReference && !encodedText.contains(QRegExp("[^-_:/a-zA-Z0-9]"))) { value.append(QSharedPointer<MacroKey>(new MacroKey(encodedText))); return true; } else if (typeFlag == KBibTeX::tfPerson) { QSharedPointer<Person> person = FileImporterBibTeX::personFromString(encodedText); if (!person.isNull()) value.append(person); return true; } else if (typeFlag == KBibTeX::tfKeyword) { const QList<QSharedPointer<Keyword> > keywords = FileImporterBibTeX::splitKeywords(encodedText); for (const auto &keyword : keywords) value.append(keyword); return true; } else if (typeFlag == KBibTeX::tfSource) { QString key = typeFlags.testFlag(KBibTeX::tfPerson) ? QStringLiteral("author") : QStringLiteral("title"); FileImporterBibTeX importer(parent); QString fakeBibTeXFile = QString(QStringLiteral("@article{dummy, %1=%2}")).arg(key, encodedText); File *file = importer.fromString(fakeBibTeXFile); QSharedPointer<Entry> entry; if (file != nullptr) { if (!file->isEmpty() && !(entry = (file->first().dynamicCast<Entry>())).isNull()) value = entry->value(key); delete file; } if (entry.isNull()) qCWarning(LOG_KBIBTEX_GUI) << "Parsing " << fakeBibTeXFile << " did not result in valid entry"; return !value.isEmpty(); } else if (typeFlag == KBibTeX::tfVerbatim) { value.append(QSharedPointer<VerbatimText>(new VerbatimText(text))); return true; } return false; } KBibTeX::TypeFlag determineTypeFlag(const Value &value, KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags availableTypeFlags) { KBibTeX::TypeFlag result = KBibTeX::tfSource; if (availableTypeFlags.testFlag(preferredTypeFlag) && typeFlagSupported(value, preferredTypeFlag)) result = preferredTypeFlag; else if (value.count() == 1) { int p = 1; for (int i = 1; i < 8; ++i, p <<= 1) { KBibTeX::TypeFlag flag = (KBibTeX::TypeFlag)p; if (availableTypeFlags.testFlag(flag) && typeFlagSupported(value, flag)) { result = flag; break; } } } return result; } bool typeFlagSupported(const Value &value, KBibTeX::TypeFlag typeFlag) { if (value.isEmpty() || typeFlag == KBibTeX::tfSource) return true; const QSharedPointer<ValueItem> first = value.first(); if (value.count() > 1) return typeFlag == KBibTeX::tfSource; else if (typeFlag == KBibTeX::tfKeyword && Keyword::isKeyword(*first)) return true; else if (typeFlag == KBibTeX::tfPerson && Person::isPerson(*first)) return true; else if (typeFlag == KBibTeX::tfPlainText && PlainText::isPlainText(*first)) return true; else if (typeFlag == KBibTeX::tfReference && MacroKey::isMacroKey(*first)) return true; else if (typeFlag == KBibTeX::tfVerbatim && VerbatimText::isVerbatimText(*first)) return true; else return false; } void setupMenu() { menuTypes->clear(); if (typeFlags.testFlag(KBibTeX::tfPlainText)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfPlainText), i18n("Plain Text"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfPlainText); } if (typeFlags.testFlag(KBibTeX::tfReference)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfReference), i18n("Reference"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfReference); } if (typeFlags.testFlag(KBibTeX::tfPerson)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfPerson), i18n("Person"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfPerson); } if (typeFlags.testFlag(KBibTeX::tfKeyword)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfKeyword), i18n("Keyword"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfKeyword); } if (typeFlags.testFlag(KBibTeX::tfSource)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfSource), i18n("Source Code"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfSource); } if (typeFlags.testFlag(KBibTeX::tfVerbatim)) { QAction *action = menuTypes->addAction(iconForTypeFlag(KBibTeX::tfVerbatim), i18n("Verbatim Text"), menuTypesSignalMapper, SLOT(map())); menuTypesSignalMapper->setMapping(action, KBibTeX::tfVerbatim); } } QIcon iconForTypeFlag(KBibTeX::TypeFlag typeFlag) { switch (typeFlag) { case KBibTeX::tfPlainText: return QIcon::fromTheme(QStringLiteral("draw-text")); case KBibTeX::tfReference: return QIcon::fromTheme(QStringLiteral("emblem-symbolic-link")); case KBibTeX::tfPerson: return QIcon::fromTheme(QStringLiteral("user-identity")); case KBibTeX::tfKeyword: return QIcon::fromTheme(QStringLiteral("edit-find")); case KBibTeX::tfSource: return QIcon::fromTheme(QStringLiteral("code-context")); case KBibTeX::tfVerbatim: return QIcon::fromTheme(QStringLiteral("preferences-desktop-keyboard")); default: return QIcon(); }; } void updateGUI(KBibTeX::TypeFlag typeFlag) { parent->setFont(QFontDatabase::systemFont(QFontDatabase::GeneralFont)); parent->setIcon(iconForTypeFlag(typeFlag)); switch (typeFlag) { case KBibTeX::tfPlainText: parent->setButtonToolTip(i18n("Plain Text")); break; case KBibTeX::tfReference: parent->setButtonToolTip(i18n("Reference")); break; case KBibTeX::tfPerson: parent->setButtonToolTip(i18n("Person")); break; case KBibTeX::tfKeyword: parent->setButtonToolTip(i18n("Keyword")); break; case KBibTeX::tfSource: parent->setButtonToolTip(i18n("Source Code")); parent->setFont(QFontDatabase::systemFont(QFontDatabase::FixedFont)); break; case KBibTeX::tfVerbatim: parent->setButtonToolTip(i18n("Verbatim Text")); break; default: parent->setButtonToolTip(QStringLiteral("")); break; }; } void openUrl() { if (urlToOpen.isValid()) { /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(urlToOpen); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(urlToOpen, mimeTypeName, parent, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(urlToOpen, mimeTypeName, parent, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } bool convertValueType(Value &value, KBibTeX::TypeFlag destType) { if (value.isEmpty()) return true; /// simple case if (destType == KBibTeX::tfSource) return true; /// simple case bool result = true; const EncoderLaTeX &encoder = EncoderLaTeX::instance(); QString rawText; const QSharedPointer<ValueItem> first = value.first(); const QSharedPointer<PlainText> plainText = first.dynamicCast<PlainText>(); if (!plainText.isNull()) rawText = encoder.encode(plainText->text(), Encoder::TargetEncodingASCII); else { const QSharedPointer<VerbatimText> verbatimText = first.dynamicCast<VerbatimText>(); if (!verbatimText.isNull()) rawText = verbatimText->text(); else { const QSharedPointer<MacroKey> macroKey = first.dynamicCast<MacroKey>(); if (!macroKey.isNull()) rawText = macroKey->text(); else { const QSharedPointer<Person> person = first.dynamicCast<Person>(); if (!person.isNull()) rawText = encoder.encode(QString(QStringLiteral("%1 %2")).arg(person->firstName(), person->lastName()), Encoder::TargetEncodingASCII); // FIXME proper name conversion else { const QSharedPointer<Keyword> keyword = first.dynamicCast<Keyword>(); if (!keyword.isNull()) rawText = encoder.encode(keyword->text(), Encoder::TargetEncodingASCII); else { // TODO case missed? result = false; } } } } } switch (destType) { case KBibTeX::tfPlainText: value.clear(); value.append(QSharedPointer<PlainText>(new PlainText(encoder.decode(rawText)))); break; case KBibTeX::tfVerbatim: value.clear(); value.append(QSharedPointer<VerbatimText>(new VerbatimText(rawText))); break; case KBibTeX::tfPerson: value.clear(); value.append(QSharedPointer<Person>(FileImporterBibTeX::splitName(encoder.decode(rawText)))); break; case KBibTeX::tfReference: { MacroKey *macroKey = new MacroKey(rawText); if (macroKey->isValid()) { value.clear(); value.append(QSharedPointer<MacroKey>(macroKey)); } else { delete macroKey; result = false; } } break; case KBibTeX::tfKeyword: value.clear(); value.append(QSharedPointer<Keyword>(new Keyword(encoder.decode(rawText)))); break; default: { // TODO result = false; } } return result; } void updateURL(const QString &text) { QList<QUrl> urls; FileInfo::urlsInText(text, FileInfo::TestExistenceYes, file != nullptr && file->property(File::Url).toUrl().isValid() ? QUrl(file->property(File::Url).toUrl()).path() : QString(), urls); if (!urls.isEmpty() && urls.first().isValid()) urlToOpen = urls.first(); else urlToOpen = QUrl(); /// set special "open URL" button visible if URL (or file or DOI) found buttonOpenUrl->setVisible(urlToOpen.isValid()); buttonOpenUrl->setToolTip(i18n("Open '%1'", urlToOpen.url(QUrl::PreferLocalFile))); } void textChanged(const QString &text) { updateURL(text); } }; FieldLineEdit::FieldLineEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, bool isMultiLine, QWidget *parent) : MenuLineEdit(isMultiLine, parent), d(new FieldLineEdit::FieldLineEditPrivate(preferredTypeFlag, typeFlags, this)) { setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); setObjectName(QStringLiteral("FieldLineEdit")); setMenu(d->menuTypes); setChildAcceptDrops(false); setAcceptDrops(true); } FieldLineEdit::~FieldLineEdit() { delete d; } bool FieldLineEdit::apply(Value &value) const { return d->apply(value); } bool FieldLineEdit::reset(const Value &value) { return d->reset(value); } void FieldLineEdit::setReadOnly(bool isReadOnly) { MenuLineEdit::setReadOnly(isReadOnly); } void FieldLineEdit::slotTypeChanged(int newTypeFlagInt) { KBibTeX::TypeFlag newTypeFlag = (KBibTeX::TypeFlag)newTypeFlagInt; Value value; d->apply(value); if (d->convertValueType(value, newTypeFlag)) { d->typeFlag = newTypeFlag; d->reset(value); } else KMessageBox::error(this, i18n("The current text cannot be used as value of type '%1'.\n\nSwitching back to type '%2'.", BibTeXFields::typeFlagToString(newTypeFlag), BibTeXFields::typeFlagToString(d->typeFlag))); } void FieldLineEdit::setFile(const File *file) { d->file = file; } void FieldLineEdit::setElement(const Element *element) { Q_UNUSED(element) } void FieldLineEdit::setFieldKey(const QString &fieldKey) { d->fieldKey = fieldKey; } void FieldLineEdit::slotOpenUrl() { d->openUrl(); } void FieldLineEdit::slotTextChanged(const QString &text) { d->textChanged(text); } void FieldLineEdit::dragEnterEvent(QDragEnterEvent *event) { if (event->mimeData()->hasFormat(QStringLiteral("text/plain")) || event->mimeData()->hasFormat(QStringLiteral("text/x-bibtex"))) event->acceptProposedAction(); } void FieldLineEdit::dropEvent(QDropEvent *event) { const QString clipboardText = event->mimeData()->text(); if (clipboardText.isEmpty()) return; const File *file = nullptr; if (!d->fieldKey.isEmpty() && clipboardText.startsWith(QStringLiteral("@"))) { FileImporterBibTeX importer(this); file = importer.fromString(clipboardText); const QSharedPointer<Entry> entry = (file != nullptr && file->count() == 1) ? file->first().dynamicCast<Entry>() : QSharedPointer<Entry>(); if (!entry.isNull() && d->fieldKey == Entry::ftCrossRef) { /// handle drop on crossref line differently (use dropped entry's id) Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(entry->id()))); reset(v); emit textChanged(entry->id()); return; } else if (!entry.isNull() && entry->contains(d->fieldKey)) { /// case for "normal" fields like for journal, pages, ... reset(entry->value(d->fieldKey)); emit textChanged(text()); return; } } if (file == nullptr || file->count() == 0) { /// fall-back case: just copy whole text into edit widget setText(clipboardText); emit textChanged(clipboardText); } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/field/fieldlineedit.h���������������������������������������������������������0000664�0000000�0000000�00000005013�13313000262�0020545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FIELDLINEEDIT_H #define KBIBTEX_GUI_FIELDLINEEDIT_H #include "kbibtexgui_export.h" #include <QIcon> #include "value.h" #include "menulineedit.h" #include "kbibtex.h" class QMenu; class QSignalMapper; class Element; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT FieldLineEdit : public MenuLineEdit { Q_OBJECT public: FieldLineEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, bool isMultiLine = false, QWidget *parent = nullptr); ~FieldLineEdit() override; bool reset(const Value &value); bool apply(Value &value) const; void setReadOnly(bool) override; void setFile(const File *file); void setElement(const Element *element); void setFieldKey(const QString &fieldKey); protected: void dragEnterEvent(QDragEnterEvent *event) override; void dropEvent(QDropEvent *event) override; private: bool m_incompleteRepresentation; KBibTeX::TypeFlag typeFlag(); KBibTeX::TypeFlag setTypeFlag(KBibTeX::TypeFlag typeFlag); void setupMenu(); void updateGUI(); class FieldLineEditPrivate; FieldLineEdit::FieldLineEditPrivate *d; private slots: void slotTypeChanged(int); void slotTextChanged(const QString &); void slotOpenUrl(); }; #endif // KBIBTEX_GUI_FIELDLINEEDIT_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/field/fieldlistedit.cpp�������������������������������������������������������0000664�0000000�0000000�00000074247�13313000262�0021143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fieldlistedit.h" #include <typeinfo> #include <QApplication> #include <QClipboard> #include <QScrollArea> #include <QLayout> #include <QSignalMapper> #include <QCheckBox> #include <QDragEnterEvent> #include <QDropEvent> #include <QMimeData> #include <QUrl> #include <QTimer> #include <QAction> #include <QPushButton> #include <QFontDatabase> #include <QFileDialog> #include <QMenu> #include <KMessageBox> #include <KLocalizedString> #include <KIO/CopyJob> #include <KSharedConfig> #include <KConfigGroup> #include "fileinfo.h" #include "file.h" #include "entry.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "fieldlineedit.h" #include "associatedfiles.h" #include "associatedfilesui.h" #include "logging_gui.h" class FieldListEdit::FieldListEditProtected { private: FieldListEdit *p; const int innerSpacing; QSignalMapper *smRemove, *smGoUp, *smGoDown; QVBoxLayout *layout; KBibTeX::TypeFlag preferredTypeFlag; KBibTeX::TypeFlags typeFlags; public: QList<FieldLineEdit *> lineEditList; QWidget *pushButtonContainer; QBoxLayout *pushButtonContainerLayout; QPushButton *addLineButton; const File *file; QString fieldKey; QWidget *container; QScrollArea *scrollArea; bool m_isReadOnly; QStringList completionItems; FieldListEditProtected(KBibTeX::TypeFlag ptf, KBibTeX::TypeFlags tf, FieldListEdit *parent) : p(parent), innerSpacing(4), preferredTypeFlag(ptf), typeFlags(tf), file(nullptr), m_isReadOnly(false) { smRemove = new QSignalMapper(parent); smGoUp = new QSignalMapper(parent); smGoDown = new QSignalMapper(parent); setupGUI(); } FieldListEditProtected(const FieldListEditProtected &other) = delete; FieldListEditProtected &operator= (const FieldListEditProtected &other) = delete; void setupGUI() { QBoxLayout *outerLayout = new QVBoxLayout(p); outerLayout->setMargin(0); outerLayout->setSpacing(0); scrollArea = new QScrollArea(p); outerLayout->addWidget(scrollArea); container = new QWidget(scrollArea->viewport()); container->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Minimum); scrollArea->setWidget(container); layout = new QVBoxLayout(container); layout->setMargin(0); layout->setSpacing(innerSpacing); pushButtonContainer = new QWidget(container); pushButtonContainerLayout = new QHBoxLayout(pushButtonContainer); pushButtonContainerLayout->setMargin(0); layout->addWidget(pushButtonContainer); addLineButton = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add"), pushButtonContainer); addLineButton->setObjectName(QStringLiteral("addButton")); connect(addLineButton, &QPushButton::clicked, p, static_cast<void(FieldListEdit::*)()>(&FieldListEdit::lineAdd)); connect(addLineButton, &QPushButton::clicked, p, &FieldListEdit::modified); pushButtonContainerLayout->addWidget(addLineButton); layout->addStretch(100); connect(smRemove, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &FieldListEdit::lineRemove); connect(smGoDown, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &FieldListEdit::lineGoDown); connect(smGoUp, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &FieldListEdit::lineGoUp); scrollArea->setBackgroundRole(QPalette::Base); scrollArea->ensureWidgetVisible(container); scrollArea->setWidgetResizable(true); } void addButton(QPushButton *button) { button->setParent(pushButtonContainer); pushButtonContainerLayout->addWidget(button); } int recommendedHeight() { int heightHint = 0; for (const auto *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(lineEditList)) heightHint += fieldLineEdit->sizeHint().height(); heightHint += lineEditList.count() * innerSpacing; heightHint += addLineButton->sizeHint().height(); return heightHint; } FieldLineEdit *addFieldLineEdit() { FieldLineEdit *le = new FieldLineEdit(preferredTypeFlag, typeFlags, false, container); le->setFile(file); le->setAcceptDrops(false); le->setReadOnly(m_isReadOnly); le->setInnerWidgetsTransparency(true); layout->insertWidget(layout->count() - 2, le); lineEditList.append(le); QPushButton *remove = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), QStringLiteral(""), le); remove->setToolTip(i18n("Remove value")); le->appendWidget(remove); connect(remove, &QPushButton::clicked, smRemove, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); smRemove->setMapping(remove, le); QPushButton *goDown = new QPushButton(QIcon::fromTheme(QStringLiteral("go-down")), QStringLiteral(""), le); goDown->setToolTip(i18n("Move value down")); le->appendWidget(goDown); connect(goDown, &QPushButton::clicked, smGoDown, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); smGoDown->setMapping(goDown, le); QPushButton *goUp = new QPushButton(QIcon::fromTheme(QStringLiteral("go-up")), QStringLiteral(""), le); goUp->setToolTip(i18n("Move value up")); le->appendWidget(goUp); connect(goUp, &QPushButton::clicked, smGoUp, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); smGoUp->setMapping(goUp, le); connect(le, &FieldLineEdit::textChanged, p, &FieldListEdit::modified); return le; } void removeAllFieldLineEdits() { while (!lineEditList.isEmpty()) { FieldLineEdit *fieldLineEdit = *lineEditList.begin(); layout->removeWidget(fieldLineEdit); lineEditList.removeFirst(); delete fieldLineEdit; } /// This fixes a layout problem where the container element /// does not shrink correctly once the line edits have been /// removed QSize pSize = container->size(); pSize.setHeight(addLineButton->height()); container->resize(pSize); } void removeFieldLineEdit(FieldLineEdit *fieldLineEdit) { lineEditList.removeOne(fieldLineEdit); layout->removeWidget(fieldLineEdit); delete fieldLineEdit; } void goDownFieldLineEdit(FieldLineEdit *fieldLineEdit) { int idx = lineEditList.indexOf(fieldLineEdit); if (idx < lineEditList.count() - 1) { layout->removeWidget(fieldLineEdit); lineEditList.removeOne(fieldLineEdit); lineEditList.insert(idx + 1, fieldLineEdit); layout->insertWidget(idx + 1, fieldLineEdit); } } void goUpFieldLineEdit(FieldLineEdit *fieldLineEdit) { int idx = lineEditList.indexOf(fieldLineEdit); if (idx > 0) { layout->removeWidget(fieldLineEdit); lineEditList.removeOne(fieldLineEdit); lineEditList.insert(idx - 1, fieldLineEdit); layout->insertWidget(idx - 1, fieldLineEdit); } } }; FieldListEdit::FieldListEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent) : QWidget(parent), d(new FieldListEditProtected(preferredTypeFlag, typeFlags, this)) { setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); setMinimumSize(fontMetrics().averageCharWidth() * 30, fontMetrics().averageCharWidth() * 10); setAcceptDrops(true); } FieldListEdit::~FieldListEdit() { delete d; } bool FieldListEdit::reset(const Value &value) { d->removeAllFieldLineEdits(); for (const auto &valueItem : value) { Value v; v.append(valueItem); FieldLineEdit *fieldLineEdit = addFieldLineEdit(); fieldLineEdit->setFile(d->file); fieldLineEdit->reset(v); } QSize size(d->container->width(), d->recommendedHeight()); d->container->resize(size); return true; } bool FieldListEdit::apply(Value &value) const { value.clear(); for (const auto *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) { Value v; fieldLineEdit->apply(v); for (const auto &valueItem : const_cast<const Value &>(v)) value.append(valueItem); } return true; } void FieldListEdit::clear() { d->removeAllFieldLineEdits(); } void FieldListEdit::setReadOnly(bool isReadOnly) { d->m_isReadOnly = isReadOnly; for (FieldLineEdit *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) fieldLineEdit->setReadOnly(isReadOnly); d->addLineButton->setEnabled(!isReadOnly); } void FieldListEdit::setFile(const File *file) { d->file = file; for (FieldLineEdit *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) fieldLineEdit->setFile(file); } void FieldListEdit::setElement(const Element *element) { m_element = element; for (FieldLineEdit *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) fieldLineEdit->setElement(element); } void FieldListEdit::setFieldKey(const QString &fieldKey) { d->fieldKey = fieldKey; for (FieldLineEdit *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) fieldLineEdit->setFieldKey(fieldKey); } void FieldListEdit::setCompletionItems(const QStringList &items) { d->completionItems = items; for (FieldLineEdit *fieldLineEdit : const_cast<const QList<FieldLineEdit *> &>(d->lineEditList)) fieldLineEdit->setCompletionItems(items); } FieldLineEdit *FieldListEdit::addFieldLineEdit() { return d->addFieldLineEdit(); } void FieldListEdit::addButton(QPushButton *button) { d->addButton(button); } void FieldListEdit::dragEnterEvent(QDragEnterEvent *event) { if (event->mimeData()->hasFormat(QStringLiteral("text/plain")) || event->mimeData()->hasFormat(QStringLiteral("text/x-bibtex"))) event->acceptProposedAction(); } void FieldListEdit::dropEvent(QDropEvent *event) { const QString clipboardText = event->mimeData()->text(); if (clipboardText.isEmpty()) return; const File *file = nullptr; if (!d->fieldKey.isEmpty() && clipboardText.startsWith(QStringLiteral("@"))) { FileImporterBibTeX importer(this); file = importer.fromString(clipboardText); const QSharedPointer<Entry> entry = (file != nullptr && file->count() == 1) ? file->first().dynamicCast<Entry>() : QSharedPointer<Entry>(); if (file != nullptr && !entry.isNull() && d->fieldKey == QStringLiteral("^external")) { /// handle "external" list differently const QList<QUrl> urlList = FileInfo::entryUrls(entry, QUrl(file->property(File::Url).toUrl()), FileInfo::TestExistenceNo); Value v; v.reserve(urlList.size()); for (const QUrl &url : urlList) { v.append(QSharedPointer<VerbatimText>(new VerbatimText(url.url(QUrl::PreferLocalFile)))); } reset(v); emit modified(); return; } else if (!entry.isNull() && entry->contains(d->fieldKey)) { /// case for "normal" lists like for authors, editors, ... reset(entry->value(d->fieldKey)); emit modified(); return; } } if (file == nullptr || file->count() == 0) { /// fall-back case: single field line edit with text d->removeAllFieldLineEdits(); FieldLineEdit *fle = addFieldLineEdit(); fle->setText(clipboardText); emit modified(); } } void FieldListEdit::lineAdd(Value *value) { FieldLineEdit *le = addFieldLineEdit(); le->setCompletionItems(d->completionItems); if (value != nullptr) le->reset(*value); } void FieldListEdit::lineAdd() { FieldLineEdit *newEdit = addFieldLineEdit(); newEdit->setCompletionItems(d->completionItems); QSize size(d->container->width(), d->recommendedHeight()); d->container->resize(size); newEdit->setFocus(Qt::ShortcutFocusReason); } void FieldListEdit::lineRemove(QWidget *widget) { FieldLineEdit *fieldLineEdit = static_cast<FieldLineEdit *>(widget); d->removeFieldLineEdit(fieldLineEdit); QSize size(d->container->width(), d->recommendedHeight()); d->container->resize(size); emit modified(); } void FieldListEdit::lineGoDown(QWidget *widget) { FieldLineEdit *fieldLineEdit = static_cast<FieldLineEdit *>(widget); d->goDownFieldLineEdit(fieldLineEdit); emit modified(); } void FieldListEdit::lineGoUp(QWidget *widget) { FieldLineEdit *fieldLineEdit = static_cast<FieldLineEdit *>(widget); d->goUpFieldLineEdit(fieldLineEdit); emit modified(); } PersonListEdit::PersonListEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent) : FieldListEdit(preferredTypeFlag, typeFlags, parent) { m_checkBoxOthers = new QCheckBox(i18n("... and others (et al.)"), this); connect(m_checkBoxOthers, &QCheckBox::toggled, this, &PersonListEdit::modified); QBoxLayout *boxLayout = static_cast<QBoxLayout *>(layout()); boxLayout->addWidget(m_checkBoxOthers); m_buttonAddNamesFromClipboard = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-paste")), i18n("Add from Clipboard"), this); m_buttonAddNamesFromClipboard->setToolTip(i18n("Add a list of names from clipboard")); addButton(m_buttonAddNamesFromClipboard); connect(m_buttonAddNamesFromClipboard, &QPushButton::clicked, this, &PersonListEdit::slotAddNamesFromClipboard); } bool PersonListEdit::reset(const Value &value) { Value internal = value; m_checkBoxOthers->setCheckState(Qt::Unchecked); QSharedPointer<PlainText> pt; if (!internal.isEmpty() && !(pt = internal.last().dynamicCast<PlainText>()).isNull()) { if (pt->text() == QStringLiteral("others")) { internal.erase(internal.end() - 1); m_checkBoxOthers->setCheckState(Qt::Checked); } } return FieldListEdit::reset(internal); } bool PersonListEdit::apply(Value &value) const { bool result = FieldListEdit::apply(value); if (result && m_checkBoxOthers->checkState() == Qt::Checked) value.append(QSharedPointer<PlainText>(new PlainText(QStringLiteral("others")))); return result; } void PersonListEdit::setReadOnly(bool isReadOnly) { FieldListEdit::setReadOnly(isReadOnly); m_checkBoxOthers->setEnabled(!isReadOnly); m_buttonAddNamesFromClipboard->setEnabled(!isReadOnly); } void PersonListEdit::slotAddNamesFromClipboard() { QClipboard *clipboard = QApplication::clipboard(); QString text = clipboard->text(QClipboard::Clipboard); if (text.isEmpty()) text = clipboard->text(QClipboard::Selection); if (!text.isEmpty()) { const QList<QSharedPointer<Person> > personList = FileImporterBibTeX::splitNames(text); for (const QSharedPointer<Person> &person : personList) { Value *value = new Value(); value->append(person); lineAdd(value); delete value; } if (!personList.isEmpty()) emit modified(); } } UrlListEdit::UrlListEdit(QWidget *parent) : FieldListEdit(KBibTeX::tfVerbatim, KBibTeX::tfVerbatim, parent) { m_signalMapperSaveLocallyButtonClicked = new QSignalMapper(this); connect(m_signalMapperSaveLocallyButtonClicked, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), this, &UrlListEdit::slotSaveLocally); m_signalMapperFieldLineEditTextChanged = new QSignalMapper(this); connect(m_signalMapperFieldLineEditTextChanged, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), this, &UrlListEdit::textChanged); m_buttonAddFile = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add file..."), this); addButton(m_buttonAddFile); QMenu *menuAddFile = new QMenu(m_buttonAddFile); m_buttonAddFile->setMenu(menuAddFile); connect(m_buttonAddFile, &QPushButton::clicked, m_buttonAddFile, &QPushButton::showMenu); menuAddFile->addAction(QIcon::fromTheme(QStringLiteral("emblem-symbolic-link")), i18n("Add reference ..."), this, SLOT(slotAddReference())); menuAddFile->addAction(QIcon::fromTheme(QStringLiteral("emblem-symbolic-link")), i18n("Add reference from clipboard"), this, SLOT(slotAddReferenceFromClipboard())); } void UrlListEdit::slotAddReference() { QUrl bibtexUrl(d->file != nullptr ? d->file->property(File::Url, QVariant()).toUrl() : QUrl()); if (!bibtexUrl.isEmpty()) { const QFileInfo fi(bibtexUrl.path()); bibtexUrl.setPath(fi.absolutePath()); } const QUrl documentUrl = QFileDialog::getOpenFileUrl(this, i18n("File to Associate"), bibtexUrl); if (!documentUrl.isEmpty()) addReference(documentUrl); } void UrlListEdit::slotAddReferenceFromClipboard() { const QUrl url = QUrl::fromUserInput(QApplication::clipboard()->text()); if (!url.isEmpty()) addReference(url); } void UrlListEdit::addReference(const QUrl &url) { const Entry *entry = dynamic_cast<const Entry *>(m_element); const QString entryId = entry != nullptr ? entry->id() : QString(); const QString visibleFilename = AssociatedFilesUI::associateUrl(url, entryId, d->file, this); if (!visibleFilename.isEmpty()) { Value *value = new Value(); value->append(QSharedPointer<VerbatimText>(new VerbatimText(visibleFilename))); lineAdd(value); delete value; emit modified(); } } void UrlListEdit::slotSaveLocally(QWidget *widget) { /// Determine FieldLineEdit widget FieldLineEdit *fieldLineEdit = qobject_cast<FieldLineEdit *>(widget); /// Build Url from line edit's content const QUrl url = QUrl::fromUserInput(fieldLineEdit->text()); /// Only proceed if Url is valid and points to a remote location if (url.isValid() && !urlIsLocal(url)) { /// Get filename from url (without any path/directory part) QString filename = url.fileName(); /// Build QFileInfo from current BibTeX file if available QFileInfo bibFileinfo = d->file != nullptr ? QFileInfo(d->file->property(File::Url).toUrl().path()) : QFileInfo(); /// Build proposal to a local filename for remote file filename = bibFileinfo.isFile() ? bibFileinfo.absolutePath() + QDir::separator() + filename : filename; /// Ask user for actual local filename to save remote file to filename = QFileDialog::getSaveFileName(this, i18n("Save file locally"), filename, QStringLiteral("application/pdf application/postscript image/vnd.djvu")); /// Check if user entered a valid filename ... if (!filename.isEmpty()) { /// Ask user if reference to local file should be /// relative or absolute in relation to the BibTeX file const QString absoluteFilename = filename; QString visibleFilename = filename; if (bibFileinfo.isFile()) visibleFilename = askRelativeOrStaticFilename(this, absoluteFilename, d->file->property(File::Url).toUrl()); /// Download remote file and save it locally setEnabled(false); setCursor(Qt::WaitCursor); KIO::CopyJob *job = KIO::copy(url, QUrl::fromLocalFile(absoluteFilename), KIO::Overwrite); job->setProperty("visibleFilename", QVariant::fromValue<QString>(visibleFilename)); connect(job, &KJob::result, this, &UrlListEdit::downloadFinished); } } } void UrlListEdit::downloadFinished(KJob *j) { KIO::CopyJob *job = static_cast<KIO::CopyJob *>(j); if (job->error() == 0) { /// Download succeeded, add reference to local file to this BibTeX entry Value *value = new Value(); value->append(QSharedPointer<VerbatimText>(new VerbatimText(job->property("visibleFilename").toString()))); lineAdd(value); delete value; } else { qCWarning(LOG_KBIBTEX_GUI) << "Downloading" << (*job->srcUrls().constBegin()).toDisplayString() << "failed with error" << job->error() << job->errorString(); } setEnabled(true); unsetCursor(); } void UrlListEdit::textChanged(QWidget *widget) { /// Determine associated QPushButton "Save locally" QPushButton *buttonSaveLocally = qobject_cast<QPushButton *>(widget); if (buttonSaveLocally == nullptr) return; ///< should never happen! /// Assume a FieldLineEdit was the sender of this signal FieldLineEdit *fieldLineEdit = qobject_cast<FieldLineEdit *>(m_signalMapperFieldLineEditTextChanged->mapping(widget)); if (fieldLineEdit == nullptr) return; ///< should never happen! /// Create URL from new text to make some tests on it /// Only remote URLs are of interest, therefore no tests /// on local file or relative paths const QString newText = fieldLineEdit->text(); const QString lowerText = newText.toLower(); /// Enable button only if Url is valid and points to a remote /// DjVu, PDF, or PostScript file // TODO more file types? const bool canBeSaved = lowerText.contains(QStringLiteral("://")) && (lowerText.endsWith(QStringLiteral(".djvu")) || lowerText.endsWith(QStringLiteral(".pdf")) || lowerText.endsWith(QStringLiteral(".ps"))); buttonSaveLocally->setEnabled(canBeSaved); buttonSaveLocally->setToolTip(canBeSaved ? i18n("Save file '%1' locally", newText) : QStringLiteral("")); } QString UrlListEdit::askRelativeOrStaticFilename(QWidget *parent, const QString &absoluteFilename, const QUrl &baseUrl) { QFileInfo baseUrlInfo = baseUrl.isEmpty() ? QFileInfo() : QFileInfo(baseUrl.path()); QFileInfo filenameInfo(absoluteFilename); if (!baseUrl.isEmpty() && (filenameInfo.absolutePath() == baseUrlInfo.absolutePath() || filenameInfo.absolutePath().startsWith(baseUrlInfo.absolutePath() + QDir::separator()))) { // TODO cover level-up cases like "../../test.pdf" const QString relativePath = filenameInfo.absolutePath().mid(baseUrlInfo.absolutePath().length() + 1); const QString relativeFilename = relativePath + (relativePath.isEmpty() ? QStringLiteral("") : QString(QDir::separator())) + filenameInfo.fileName(); if (KMessageBox::questionYesNo(parent, i18n("<qt><p>Use a filename relative to the bibliography file?</p><p>The relative path would be<br/><tt style=\"font-family: %3;\">%1</tt></p><p>The absolute path would be<br/><tt style=\"font-family: %3;\">%2</tt></p></qt>", relativeFilename, absoluteFilename, QFontDatabase::systemFont(QFontDatabase::FixedFont).family()), i18n("Relative Path"), KGuiItem(i18n("Relative Path")), KGuiItem(i18n("Absolute Path"))) == KMessageBox::Yes) return relativeFilename; } return absoluteFilename; } bool UrlListEdit::urlIsLocal(const QUrl &url) { // FIXME same function as in AssociateFiles; move to common code base? const QString scheme = url.scheme(); /// Test various schemes such as "http", "https", "ftp", ... return !scheme.startsWith(QStringLiteral("http")) && !scheme.startsWith(QStringLiteral("ftp")) && !scheme.startsWith(QStringLiteral("sftp")) && !scheme.startsWith(QStringLiteral("fish")) && !scheme.startsWith(QStringLiteral("webdav")) && scheme != QStringLiteral("smb"); } FieldLineEdit *UrlListEdit::addFieldLineEdit() { /// Call original implementation to get an instance of a FieldLineEdit FieldLineEdit *fieldLineEdit = FieldListEdit::addFieldLineEdit(); /// Create a new "save locally" button QPushButton *buttonSaveLocally = new QPushButton(QIcon::fromTheme(QStringLiteral("document-save")), QStringLiteral(""), fieldLineEdit); buttonSaveLocally->setToolTip(i18n("Save file locally")); buttonSaveLocally->setEnabled(false); /// Append button to new FieldLineEdit fieldLineEdit->appendWidget(buttonSaveLocally); /// Connect signals to react on button events /// or changes in the FieldLineEdit's text m_signalMapperSaveLocallyButtonClicked->setMapping(buttonSaveLocally, fieldLineEdit); m_signalMapperFieldLineEditTextChanged->setMapping(fieldLineEdit, buttonSaveLocally); connect(buttonSaveLocally, &QPushButton::clicked, m_signalMapperSaveLocallyButtonClicked, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); connect(fieldLineEdit, &FieldLineEdit::textChanged, m_signalMapperFieldLineEditTextChanged, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); return fieldLineEdit; } void UrlListEdit::setReadOnly(bool isReadOnly) { FieldListEdit::setReadOnly(isReadOnly); m_buttonAddFile->setEnabled(!isReadOnly); } const QString KeywordListEdit::keyGlobalKeywordList = QStringLiteral("globalKeywordList"); KeywordListEdit::KeywordListEdit(QWidget *parent) : FieldListEdit(KBibTeX::tfKeyword, KBibTeX::tfKeyword | KBibTeX::tfSource, parent), m_config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), m_configGroupName(QStringLiteral("Global Keywords")) { m_buttonAddKeywordsFromList = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add Keywords from List"), this); m_buttonAddKeywordsFromList->setToolTip(i18n("Add keywords as selected from a pre-defined list of keywords")); addButton(m_buttonAddKeywordsFromList); connect(m_buttonAddKeywordsFromList, &QPushButton::clicked, this, &KeywordListEdit::slotAddKeywordsFromList); m_buttonAddKeywordsFromClipboard = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-paste")), i18n("Add Keywords from Clipboard"), this); m_buttonAddKeywordsFromClipboard->setToolTip(i18n("Add a punctuation-separated list of keywords from clipboard")); addButton(m_buttonAddKeywordsFromClipboard); connect(m_buttonAddKeywordsFromClipboard, &QPushButton::clicked, this, &KeywordListEdit::slotAddKeywordsFromClipboard); } void KeywordListEdit::slotAddKeywordsFromList() { /// fetch stored, global keywords KConfigGroup configGroup(m_config, m_configGroupName); QStringList keywords = configGroup.readEntry(KeywordListEdit::keyGlobalKeywordList, QStringList()); /// use a map for case-insensitive sorting of strings /// (recommended by Qt's documentation) QMap<QString, QString> forCaseInsensitiveSorting; /// insert all stored, global keywords for (const QString &keyword : const_cast<const QStringList &>(keywords)) forCaseInsensitiveSorting.insert(keyword.toLower(), keyword); /// insert all unique keywords used in this file for (const QString &keyword : const_cast<const QSet<QString> &>(m_keywordsFromFile)) forCaseInsensitiveSorting.insert(keyword.toLower(), keyword); /// re-create string list from map's values keywords = forCaseInsensitiveSorting.values(); // FIXME QInputDialog does not have a 'getItemList' /* bool ok = false; const QStringList newKeywordList = KInputDialog::getItemList(i18n("Add Keywords"), i18n("Select keywords to add:"), keywords, QStringList(), true, &ok, this); if (ok) { for(const QString &newKeywordText : newKeywordList) { Value *value = new Value(); value->append(QSharedPointer<Keyword>(new Keyword(newKeywordText))); lineAdd(value); delete value; } if (!newKeywordList.isEmpty()) emit modified(); } */ } void KeywordListEdit::slotAddKeywordsFromClipboard() { QClipboard *clipboard = QApplication::clipboard(); QString text = clipboard->text(QClipboard::Clipboard); if (text.isEmpty()) ///< use "mouse" clipboard as fallback text = clipboard->text(QClipboard::Selection); if (!text.isEmpty()) { const QList<QSharedPointer<Keyword> > keywords = FileImporterBibTeX::splitKeywords(text); for (const auto &keyword : keywords) { Value *value = new Value(); value->append(keyword); lineAdd(value); delete value; } if (!keywords.isEmpty()) emit modified(); } } void KeywordListEdit::setReadOnly(bool isReadOnly) { FieldListEdit::setReadOnly(isReadOnly); m_buttonAddKeywordsFromList->setEnabled(!isReadOnly); m_buttonAddKeywordsFromClipboard->setEnabled(!isReadOnly); } void KeywordListEdit::setFile(const File *file) { if (file == nullptr) m_keywordsFromFile.clear(); else m_keywordsFromFile = file->uniqueEntryValuesSet(Entry::ftKeywords); FieldListEdit::setFile(file); } void KeywordListEdit::setCompletionItems(const QStringList &items) { /// fetch stored, global keywords KConfigGroup configGroup(m_config, m_configGroupName); QStringList keywords = configGroup.readEntry(KeywordListEdit::keyGlobalKeywordList, QStringList()); /// use a map for case-insensitive sorting of strings /// (recommended by Qt's documentation) QMap<QString, QString> forCaseInsensitiveSorting; /// insert all stored, global keywords for (const QString &keyword : const_cast<const QStringList &>(keywords)) forCaseInsensitiveSorting.insert(keyword.toLower(), keyword); /// insert all unique keywords used in this file for (const QString &keyword : const_cast<const QStringList &>(items)) forCaseInsensitiveSorting.insert(keyword.toLower(), keyword); /// re-create string list from map's values keywords = forCaseInsensitiveSorting.values(); FieldListEdit::setCompletionItems(keywords); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/field/fieldlistedit.h���������������������������������������������������������0000664�0000000�0000000�00000011673�13313000262�0020602�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FIELDLISTEDIT_H #define KBIBTEX_GUI_FIELDLISTEDIT_H #include <QWidget> #include <QSet> #include <KSharedConfig> #include "kbibtex.h" #include "value.h" class QCheckBox; class QDropEvent; class QDragEnterEvent; class QSignalMapper; class QPushButton; class KJob; class KJob; class Element; class FieldLineEdit; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class FieldListEdit : public QWidget { Q_OBJECT public: FieldListEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent = nullptr); ~FieldListEdit() override; virtual bool reset(const Value &value); virtual bool apply(Value &value) const; void clear(); virtual void setReadOnly(bool isReadOnly); virtual void setFile(const File *file); virtual void setElement(const Element *element); virtual void setFieldKey(const QString &fieldKey); virtual void setCompletionItems(const QStringList &items); signals: void modified(); protected: /// Add a new field line edit to this list /// Allows to get overwritten by descentants of this class virtual FieldLineEdit *addFieldLineEdit(); void addButton(QPushButton *button); void lineAdd(Value *value); void dragEnterEvent(QDragEnterEvent *event) override; void dropEvent(QDropEvent *) override; const Element *m_element; private slots: void lineAdd(); void lineRemove(QWidget *widget); void lineGoDown(QWidget *widget); void lineGoUp(QWidget *widget); protected: class FieldListEditProtected; FieldListEditProtected *d; }; /** @author Thomas Fischer */ class PersonListEdit : public FieldListEdit { Q_OBJECT public: PersonListEdit(KBibTeX::TypeFlag preferredTypeFlag, KBibTeX::TypeFlags typeFlags, QWidget *parent = nullptr); bool reset(const Value &value) override; bool apply(Value &value) const override; void setReadOnly(bool isReadOnly) override; private slots: void slotAddNamesFromClipboard(); private: QCheckBox *m_checkBoxOthers; QPushButton *m_buttonAddNamesFromClipboard; }; /** @author Thomas Fischer */ class UrlListEdit : public FieldListEdit { Q_OBJECT public: explicit UrlListEdit(QWidget *parent = nullptr); void setReadOnly(bool isReadOnly) override; static QString askRelativeOrStaticFilename(QWidget *parent, const QString &filename, const QUrl &baseUrl); /// Own function as QUrl's isLocalFile is not reliable static bool urlIsLocal(const QUrl &url); protected: FieldLineEdit *addFieldLineEdit() override; private slots: void slotAddReference(); void slotAddReferenceFromClipboard(); /// Slot for events where the "save locally" button is triggered void slotSaveLocally(QWidget *widget); void downloadFinished(KJob *); /// Catch events where the line edit's text change void textChanged(QWidget *widget); private: QPushButton *m_buttonAddFile; QSignalMapper *m_signalMapperSaveLocallyButtonClicked; QSignalMapper *m_signalMapperFieldLineEditTextChanged; void addReference(const QUrl &url); }; /** @author Thomas Fischer */ class KeywordListEdit : public FieldListEdit { Q_OBJECT public: static const QString keyGlobalKeywordList; explicit KeywordListEdit(QWidget *parent = nullptr); void setReadOnly(bool isReadOnly) override; void setFile(const File *file) override; void setCompletionItems(const QStringList &items) override; private slots: void slotAddKeywordsFromList(); void slotAddKeywordsFromClipboard(); private: KSharedConfigPtr m_config; const QString m_configGroupName; QPushButton *m_buttonAddKeywordsFromList, *m_buttonAddKeywordsFromClipboard; QSet<QString> m_keywordsFromFile; }; #endif // KBIBTEX_GUI_FIELDLISTEDIT_H ���������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/�������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0015430�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/basicfileview.cpp��������������������������������������������������������0000664�0000000�0000000�00000021354�13313000262�0020755�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "basicfileview.h" #include <QHeaderView> #include <QScrollBar> #include <QKeyEvent> #include <QAction> #include <KConfigGroup> #include <KLocalizedString> #include <KSharedConfig> #include "bibtexfields.h" #include "models/filemodel.h" #include "sortfilterfilemodel.h" #include "logging_gui.h" class BasicFileView::Private { private: BasicFileView *p; const QString name; public: FileModel *fileModel; QSortFilterProxyModel *sortFilterProxyModel; Private(const QString &n, BasicFileView *parent) : p(parent), name(n), fileModel(nullptr), sortFilterProxyModel(nullptr) { /// nothing } ~Private() { saveColumnProperties(); } void balanceColumns() { int defaultWidthSumVisible = 0; int col = 0; const BibTeXFields *bf = BibTeXFields::self(); for (const auto &fd : const_cast<const BibTeXFields &>(*bf)) { if (!p->header()->isSectionHidden(col)) defaultWidthSumVisible += fd.defaultWidth; ++col; } if (defaultWidthSumVisible == 0) return; col = 0; for (const auto &fd : const_cast<const BibTeXFields &>(*bf)) { if (!p->header()->isSectionHidden(col)) p->header()->resizeSection(col, p->header()->width() * fd.defaultWidth / defaultWidthSumVisible); ++col; } } void resetColumnProperties() { int col = 0; BibTeXFields *bf = BibTeXFields::self(); for (BibTeXFields::Iterator it = bf->begin(); it != bf->end(); ++it) { auto &fd = *it; fd.visible.remove(name); const bool visibility = fd.defaultVisible; p->header()->setSectionHidden(col, !visibility); p->header()->actions().at(col)->setChecked(visibility); ++col; } bf->save(); balanceColumns(); } void loadColumnProperties() { int col = 0; const BibTeXFields *bf = BibTeXFields::self(); for (const auto &fd : const_cast<const BibTeXFields &>(*bf)) { const bool visibility = fd.visible.contains(name) ? fd.visible[name] : fd.defaultVisible; p->header()->setSectionHidden(col, !visibility); p->header()->actions().at(col)->setChecked(visibility); ++col; } balanceColumns(); } void saveColumnProperties() { int col = 0; BibTeXFields *bf = BibTeXFields::self(); for (BibTeXFields::Iterator it = bf->begin(); it != bf->end(); ++it) { auto &fd = *it; fd.visible[name] = !p->header()->isSectionHidden(col); ++col; } bf->save(); } }; BasicFileView::BasicFileView(const QString &name, QWidget *parent) : QTreeView(parent), d(new Private(name, this)) { /// general visual appearance and behaviour setSelectionMode(QAbstractItemView::ExtendedSelection); setSelectionBehavior(QAbstractItemView::SelectRows); setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); setFrameStyle(QFrame::NoFrame); setAlternatingRowColors(true); setAllColumnsShowFocus(true); setRootIsDecorated(false); /// header appearance and behaviour header()->setSectionsClickable(true); header()->setSortIndicatorShown(true); header()->setSortIndicator(-1, Qt::AscendingOrder); header()->setSectionsMovable(false); header()->setSectionResizeMode(QHeaderView::Fixed); connect(header(), &QHeaderView::sortIndicatorChanged, this, &BasicFileView::sort); header()->setContextMenuPolicy(Qt::ActionsContextMenu); /// build context menu for header to show/hide single columns int col = 0; const BibTeXFields *bf = BibTeXFields::self(); for (const auto &fd : const_cast<const BibTeXFields &>(*bf)) { QAction *action = new QAction(fd.label, header()); action->setData(col); action->setCheckable(true); action->setChecked(!header()->isSectionHidden(col)); connect(action, &QAction::triggered, this, &BasicFileView::headerActionToggled); header()->addAction(action); ++col; } /// add separator to header's context menu QAction *action = new QAction(header()); action->setSeparator(true); header()->addAction(action); /// add action to reset to defaults (regarding column visibility) to header's context menu action = new QAction(i18n("Reset to defaults"), header()); connect(action, &QAction::triggered, this, &BasicFileView::headerResetToDefaults); header()->addAction(action); /// add separator to header's context menu action = new QAction(header()); action->setSeparator(true); header()->addAction(action); /// add action to disable any sorting action = new QAction(i18n("No sorting"), header()); connect(action, &QAction::triggered, this, &BasicFileView::noSorting); header()->addAction(action); } BasicFileView::~BasicFileView() { delete d; } void BasicFileView::setModel(QAbstractItemModel *model) { d->sortFilterProxyModel = nullptr; d->fileModel = dynamic_cast<FileModel *>(model); if (d->fileModel == nullptr) { d->sortFilterProxyModel = qobject_cast<QSortFilterProxyModel *>(model); if (d->sortFilterProxyModel == nullptr) qCWarning(LOG_KBIBTEX_GUI) << "Failed to dynamically cast model to QSortFilterProxyModel*"; else d->fileModel = dynamic_cast<FileModel *>(d->sortFilterProxyModel->sourceModel()); } if (d->fileModel == nullptr) qCWarning(LOG_KBIBTEX_GUI) << "Failed to dynamically cast model to FileModel*"; QTreeView::setModel(model); /// sort according to session if (header()->isSortIndicatorShown()) sort(header()->sortIndicatorSection(), header()->sortIndicatorOrder()); d->loadColumnProperties(); } FileModel *BasicFileView::fileModel() { return d->fileModel; } QSortFilterProxyModel *BasicFileView::sortFilterProxyModel() { return d->sortFilterProxyModel; } void BasicFileView::keyPressEvent(QKeyEvent *event) { if (event->modifiers() == Qt::NoModifier) { if ((event->key() == Qt::Key_Return || event->key() == Qt::Key_Enter) && currentIndex() != QModelIndex()) { emit doubleClicked(currentIndex()); event->accept(); } else if (!event->text().isEmpty() && event->text().at(0).isLetterOrNumber()) { emit searchFor(event->text()); event->accept(); } } QTreeView::keyPressEvent(event); } void BasicFileView::resizeEvent(QResizeEvent *event) { Q_UNUSED(event); const int w = qMax(width() - 20, 0); header()->setMinimumWidth(w); header()->setMaximumWidth(w); d->balanceColumns(); } void BasicFileView::headerActionToggled() { QAction *action = qobject_cast<QAction *>(sender()); if (action == nullptr) return; bool ok = false; const int col = (int)action->data().toInt(&ok); if (!ok) return; header()->setSectionHidden(col, !header()->isSectionHidden(col)); d->balanceColumns(); } void BasicFileView::headerResetToDefaults() { d->resetColumnProperties(); } void BasicFileView::sort(int t, Qt::SortOrder s) { SortFilterFileModel *sortedModel = qobject_cast<SortFilterFileModel *>(model()); if (sortedModel != nullptr) sortedModel->sort(t, s); } void BasicFileView::noSorting() { SortFilterFileModel *sortedModel = qobject_cast<SortFilterFileModel *>(model()); if (sortedModel != nullptr) { sortedModel->sort(-1); header()->setSortIndicator(-1, Qt::AscendingOrder); } } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/basicfileview.h����������������������������������������������������������0000664�0000000�0000000�00000004205�13313000262�0020416�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_BASICFILEVIEW_H #define KBIBTEX_GUI_BASICFILEVIEW_H #include <QTreeView> #include "kbibtexgui_export.h" class FileModel; class QSortFilterProxyModel; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT BasicFileView : public QTreeView { Q_OBJECT public: explicit BasicFileView(const QString &name, QWidget *parent = nullptr); ~BasicFileView() override; void setModel(QAbstractItemModel *model) override; FileModel *fileModel(); QSortFilterProxyModel *sortFilterProxyModel(); signals: void searchFor(const QString &); protected: void keyPressEvent(QKeyEvent *event) override; void resizeEvent(QResizeEvent *event) override; private: class Private; Private *d; private slots: void headerActionToggled(); void headerResetToDefaults(); void sort(int, Qt::SortOrder); void noSorting(); }; #endif // KBIBTEX_GUI_BASICFILEVIEW_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/clipboard.cpp������������������������������������������������������������0000664�0000000�0000000�00000026167�13313000262�0020107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "clipboard.h" #include <QApplication> #include <QClipboard> #include <QMimeData> #include <QBuffer> #include <QMouseEvent> #include <QDrag> #include <KConfigGroup> #include <KSharedConfig> #include "fileview.h" #include "models/filemodel.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "file.h" #include "associatedfilesui.h" #include "logging_gui.h" const QString Clipboard::keyCopyReferenceCommand = QStringLiteral("copyReferenceCommand"); const QString Clipboard::defaultCopyReferenceCommand = QStringLiteral(""); class Clipboard::ClipboardPrivate { private: // UNUSED Clipboard *parent; public: FileView *fileView; QPoint previousPosition; KSharedConfigPtr config; const QString configGroupName; ClipboardPrivate(FileView *fv, Clipboard */* UNUSED p*/) : /* UNUSED parent(p),*/ fileView(fv), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("General")) { /// nothing } QString selectionToText() { const QModelIndexList mil = fileView->selectionModel()->selectedRows(); File *file = new File(); for (const QModelIndex &index : mil) file->append(fileView->fileModel()->element(fileView->sortFilterProxyModel()->mapToSource(index).row())); FileExporterBibTeX exporter(fileView); exporter.setEncoding(QStringLiteral("latex")); QBuffer buffer(fileView); buffer.open(QBuffer::WriteOnly); const bool success = exporter.save(&buffer, file); buffer.close(); if (!success) { delete file; return QString(); } buffer.open(QBuffer::ReadOnly); QTextStream ts(&buffer); QString text = ts.readAll(); buffer.close(); /// clean up delete file; return text; } /** * Makes an attempt to insert the passed text as an URL to the given * element. May fail for various reasons, such as the text not being * a valid URL or the element being invalid. */ bool insertUrl(const QString &text, QSharedPointer<Element> element = QSharedPointer<Element>()) { const QUrl url = QUrl::fromUserInput(text); return insertUrl(url, element); } bool insertUrl(const QUrl &url, QSharedPointer<Element> element = QSharedPointer<Element>()) { if (element.isNull()) return false; QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (entry.isNull()) return false; if (!url.isValid()) return false; qCDebug(LOG_KBIBTEX_GUI) << "About to add URL " << url.toDisplayString() << " to entry" << entry->id(); return AssociatedFilesUI::associateUrl(url, entry, fileView->fileModel()->bibliographyFile(), fileView); } bool insertText(const QString &text, QSharedPointer<Element> element = QSharedPointer<Element>()) { bool insertUrlPreviouslyCalled = false; if (text.startsWith(QStringLiteral("http://")) || text.startsWith(QStringLiteral("https://")) || text.startsWith(QStringLiteral("file://"))) { /// Quick check if passed text looks like an URL; /// in this case try to add it to the current/selected entry if (insertUrl(text, element)) return true; else insertUrlPreviouslyCalled = true; } /// Assumption: user dropped a piece of BibTeX code, /// use BibTeX importer to generate representation from plain text FileImporterBibTeX importer(fileView); File *file = importer.fromString(text); if (file != nullptr) { if (!file->isEmpty()) { FileModel *fileModel = fileView->fileModel(); QSortFilterProxyModel *sfpModel = fileView->sortFilterProxyModel(); /// Insert new elements one by one const int startRow = fileModel->rowCount(); ///< Memorize row where insertion started for (const auto &element : const_cast<const File &>(*file)) fileModel->insertRow(element, fileView->model()->rowCount()); const int endRow = fileModel->rowCount() - 1; ///< Memorize row where insertion ended /// Select newly inserted elements QItemSelectionModel *ism = fileView->selectionModel(); ism->clear(); /// Keep track of the insert element which is most upwards in the list when inserted QModelIndex minRowTargetModelIndex; /// Highlight those rows in the editor which correspond to newly inserted elements for (int i = startRow; i <= endRow; ++i) { QModelIndex targetModelIndex = sfpModel->mapFromSource(fileModel->index(i, 0)); ism->select(targetModelIndex, QItemSelectionModel::Rows | QItemSelectionModel::Select); /// Update the most upward inserted element if (!minRowTargetModelIndex.isValid() || minRowTargetModelIndex.row() > targetModelIndex.row()) minRowTargetModelIndex = targetModelIndex; } /// Scroll tree view to show top-most inserted element fileView->scrollTo(minRowTargetModelIndex, QAbstractItemView::PositionAtTop); /// Clean up delete file; /// Return true if at least one element was inserted if (startRow <= endRow) return true; } else delete file; ///< clean up } if (!insertUrlPreviouslyCalled) { /// If not tried above (e.g. if another protocol as the /// ones listed above is passed), call insertUrl(..) now if (insertUrl(text, element)) return true; } qCDebug(LOG_KBIBTEX_GUI) << "Don't know what to do with " << text; return false; } }; Clipboard::Clipboard(FileView *fileView) : QObject(fileView), d(new ClipboardPrivate(fileView, this)) { connect(fileView, &FileView::editorMouseEvent, this, &Clipboard::editorMouseEvent); connect(fileView, &FileView::editorDragEnterEvent, this, &Clipboard::editorDragEnterEvent); connect(fileView, &FileView::editorDragMoveEvent, this, &Clipboard::editorDragMoveEvent); connect(fileView, &FileView::editorDropEvent, this, &Clipboard::editorDropEvent); fileView->setAcceptDrops(!fileView->isReadOnly()); } Clipboard::~Clipboard() { delete d; } void Clipboard::cut() { copy(); d->fileView->selectionDelete(); } void Clipboard::copy() { QString text = d->selectionToText(); QClipboard *clipboard = QApplication::clipboard(); clipboard->setText(text); } void Clipboard::copyReferences() { QStringList references; const QModelIndexList mil = d->fileView->selectionModel()->selectedRows(); references.reserve(mil.size()); for (const QModelIndex &index : mil) { QSharedPointer<Entry> entry = d->fileView->fileModel()->element(d->fileView->sortFilterProxyModel()->mapToSource(index).row()).dynamicCast<Entry>(); if (!entry.isNull()) references << entry->id(); } if (!references.isEmpty()) { QClipboard *clipboard = QApplication::clipboard(); QString text = references.join(QStringLiteral(",")); KConfigGroup configGroup(d->config, d->configGroupName); const QString copyReferenceCommand = configGroup.readEntry(keyCopyReferenceCommand, defaultCopyReferenceCommand); if (!copyReferenceCommand.isEmpty()) text = QString(QStringLiteral("\\%1{%2}")).arg(copyReferenceCommand, text); clipboard->setText(text); } } void Clipboard::paste() { QClipboard *clipboard = QApplication::clipboard(); const bool modified = d->insertText(clipboard->text(), d->fileView->currentElement()); if (modified) d->fileView->externalModification(); } void Clipboard::editorMouseEvent(QMouseEvent *event) { if (!(event->buttons() & Qt::LeftButton)) return; if (d->previousPosition.x() > -1 && (event->pos() - d->previousPosition).manhattanLength() >= QApplication::startDragDistance()) { QString text = d->selectionToText(); QDrag *drag = new QDrag(d->fileView); QMimeData *mimeData = new QMimeData(); QByteArray data = text.toLatin1(); mimeData->setData(QStringLiteral("text/plain"), data); drag->setMimeData(mimeData); drag->exec(Qt::CopyAction); } d->previousPosition = event->pos(); } void Clipboard::editorDragEnterEvent(QDragEnterEvent *event) { if (d->fileView->isReadOnly()) { event->ignore(); return; } if (event->mimeData()->hasText() || event->mimeData()->hasUrls()) event->acceptProposedAction(); } void Clipboard::editorDragMoveEvent(QDragMoveEvent *event) { if (d->fileView->isReadOnly()) { event->ignore(); return; } if (event->mimeData()->hasText() || event->mimeData()->hasUrls()) event->acceptProposedAction(); } void Clipboard::editorDropEvent(QDropEvent *event) { if (d->fileView->isReadOnly()) { event->ignore(); return; } if (event->mimeData()->hasText() || event->mimeData()->hasUrls()) { const QString text = event->mimeData()->text(); const QList<QUrl> urls = event->mimeData()->urls(); QSharedPointer<Element> element; /// Locate element drop was performed on (if dropped, and not some copy&paste) QModelIndex dropIndex = d->fileView->indexAt(event->pos()); if (dropIndex.isValid()) element = d->fileView->elementAt(dropIndex); if (element.isNull()) { /// Still invalid element? Use current one element = d->fileView->currentElement(); } const bool modified = !urls.isEmpty() ? d->insertUrl(urls.first(), element) : (!text.isEmpty() ? d->insertText(text, element) : false); if (modified) d->fileView->externalModification(); } } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/clipboard.h��������������������������������������������������������������0000664�0000000�0000000�00000004211�13313000262�0017536�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_CLIPBOARD_H #define KBIBTEX_GUI_CLIPBOARD_H #include "kbibtexgui_export.h" #include <QObject> class QMouseEvent; class QDragEnterEvent; class QDragMoveEvent; class QDropEvent; class FileView; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT Clipboard : public QObject { Q_OBJECT public: static const QString keyCopyReferenceCommand; static const QString defaultCopyReferenceCommand; explicit Clipboard(FileView *fileView); ~Clipboard() override; public slots: void cut(); void copy(); void copyReferences(); void paste(); private slots: void editorMouseEvent(QMouseEvent *event); void editorDragEnterEvent(QDragEnterEvent *event); void editorDragMoveEvent(QDragMoveEvent *event); void editorDropEvent(QDropEvent *event); private: class ClipboardPrivate; Clipboard::ClipboardPrivate *d; }; #endif // KBIBTEX_GUI_CLIPBOARD_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/filedelegate.cpp���������������������������������������������������������0000664�0000000�0000000�00000003717�13313000262�0020556�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "filedelegate.h" #include <KIconLoader> #include "models/filemodel.h" #include "bibtexfields.h" #include "starrating.h" void FileDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { QStyledItemDelegate::paint(painter, option, index); static const int numTotalStars = 8; bool ok = false; double percent = index.data(FileModel::NumberRole).toDouble(&ok); if (ok) { const BibTeXFields *bibtexFields = BibTeXFields::self(); const FieldDescription &fd = bibtexFields->at(index.column()); if (fd.upperCamelCase.toLower() == Entry::ftStarRating) StarRating::paintStars(painter, KIconLoader::DefaultState, numTotalStars, percent, option.rect); } } �������������������������������������������������kbibtex-0.8.1/src/gui/file/filedelegate.h�����������������������������������������������������������0000664�0000000�0000000�00000003312�13313000262�0020212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FILEDELEGATE_H #define KBIBTEX_GUI_FILEDELEGATE_H #include "kbibtexgui_export.h" #include <QStyledItemDelegate> class KBIBTEXGUI_EXPORT FileDelegate : public QStyledItemDelegate { Q_OBJECT public: explicit FileDelegate(QWidget *parent = nullptr) : QStyledItemDelegate(parent) { /* nothing */ } void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; #endif // KBIBTEX_GUI_FILEDELEGATE_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/fileview.cpp�������������������������������������������������������������0000664�0000000�0000000�00000027313�13313000262�0017754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileview.h" #include <QDropEvent> #include <QTimer> #include <QDialog> #include <QDialogButtonBox> #include <QBoxLayout> #include <QPushButton> #include <KLocalizedString> #include <KMessageBox> #include <KGuiItem> #include <KConfigGroup> #include <KSharedConfig> #include <KWindowConfig> #include <KStandardGuiItem> #include "elementeditor.h" #include "entry.h" #include "macro.h" #include "models/filemodel.h" #include "fileexporterbibtex.h" #include "valuelistmodel.h" #include "logging_gui.h" /** * Specialized dialog for element editing. It will check if the used * element editor widget has unapplied changes and ask the user if * he/she actually wants to discard those changes before closing this * dialog. * * @author Thomas Fischer */ class ElementEditorDialog : public QDialog { Q_OBJECT private: ElementEditor *elementEditor; static const QString configGroupNameWindowSize; KConfigGroup configGroup; public: ElementEditorDialog(QWidget *parent) : QDialog(parent), elementEditor(nullptr) { /// restore window size KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); configGroup = KConfigGroup(config, configGroupNameWindowSize); KWindowConfig::restoreWindowSize(windowHandle(), configGroup); setLayout(new QVBoxLayout(parent)); } /** * Store element editor widget for future reference. */ void setElementEditor(ElementEditor *elementEditor) { this->elementEditor = elementEditor; QBoxLayout *boxLayout = qobject_cast<QBoxLayout *>(layout()); boxLayout->addWidget(this->elementEditor); } protected: void closeEvent(QCloseEvent *e) override { /// strangely enough, close events have always to be rejected ... e->setAccepted(false); QDialog::closeEvent(e); } private: bool allowedToClose() { /// save window size KWindowConfig::saveWindowSize(windowHandle(), configGroup); /// if there unapplied changes in the editor widget ... /// ... ask user for consent to discard changes ... /// only the allow to close this dialog return !elementEditor->elementUnapplied() || KMessageBox::warningContinueCancel(this, i18n("The current entry has been modified. Do you want do discard your changes?"), i18n("Discard changes?"), KStandardGuiItem::discard(), KGuiItem(i18n("Continue Editing"), QStringLiteral("edit-rename"))) == KMessageBox::Continue; } }; const QString ElementEditorDialog::configGroupNameWindowSize = QStringLiteral("ElementEditorDialog"); FileView::FileView(const QString &name, QWidget *parent) : BasicFileView(name, parent), m_isReadOnly(false), m_current(QSharedPointer<Element>()), m_filterBar(nullptr), m_lastEditorPage(nullptr), m_elementEditorDialog(nullptr), m_elementEditor(nullptr), m_dbb(nullptr) { connect(this, &FileView::doubleClicked, this, &FileView::itemActivated); } void FileView::viewCurrentElement() { viewElement(currentElement()); } void FileView::viewElement(const QSharedPointer<Element> element) { prepareEditorDialog(DialogTypeView); m_elementEditor->setElement(element, fileModel()->bibliographyFile()); m_elementEditor->setCurrentPage(m_lastEditorPage); m_elementEditorDialog->exec(); m_lastEditorPage = m_elementEditor->currentPage(); } void FileView::editCurrentElement() { editElement(currentElement()); } bool FileView::editElement(QSharedPointer<Element> element) { prepareEditorDialog(DialogTypeEdit); m_elementEditor->setElement(element, fileModel()->bibliographyFile()); m_elementEditor->setCurrentPage(m_lastEditorPage); m_elementEditorDialog->exec(); m_lastEditorPage = m_elementEditor->currentPage(); if (!isReadOnly()) { bool changed = m_elementEditor->elementChanged(); if (changed) { emit currentElementChanged(currentElement(), fileModel()->bibliographyFile()); emit selectedElementsChanged(); emit modified(true); } return changed; } else return false; } const QList<QSharedPointer<Element> > &FileView::selectedElements() const { return m_selection; } void FileView::setSelectedElement(QSharedPointer<Element> element) { m_selection.clear(); m_selection << element; QItemSelectionModel *selModel = selectionModel(); selModel->clear(); const int row = fileModel()->row(element); const QModelIndex idx = sortFilterProxyModel()->mapFromSource(fileModel()->index(row, 0)); selModel->setCurrentIndex(idx, QItemSelectionModel::Select | QItemSelectionModel::Rows); } const QSharedPointer<Element> FileView::currentElement() const { return m_current; } QSharedPointer<Element> FileView::currentElement() { return m_current; } QSharedPointer<Element> FileView::elementAt(const QModelIndex &index) { return fileModel()->element(sortFilterProxyModel()->mapToSource(index).row()); } void FileView::currentChanged(const QModelIndex &current, const QModelIndex &previous) { QTreeView::currentChanged(current, previous); // FIXME necessary? m_current = elementAt(current); emit currentElementChanged(m_current, fileModel()->bibliographyFile()); } void FileView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) { QTreeView::selectionChanged(selected, deselected); const QModelIndexList selectedSet = selected.indexes(); for (const QModelIndex &index : selectedSet) { if (index.column() != 0) continue; ///< consider only column-0 indices to avoid duplicate elements m_selection.append(elementAt(index)); } if (m_current == nullptr && !selectedSet.isEmpty()) m_current = elementAt(selectedSet.first()); const QModelIndexList deselectedSet = deselected.indexes(); for (const QModelIndex &index : deselectedSet) { if (index.column() != 0) continue; ///< consider only column-0 indices to avoid duplicate elements m_selection.removeOne(elementAt(index)); } emit selectedElementsChanged(); } void FileView::selectionDelete() { const QModelIndexList mil = selectionModel()->selectedRows(); QList<int> rows; rows.reserve(mil.size()); for (const QModelIndex &idx : mil) rows << sortFilterProxyModel()->mapToSource(idx).row(); fileModel()->removeRowList(rows); emit modified(true); } /// FIXME the existence of this function is basically just one big hack void FileView::externalModification() { emit modified(true); } void FileView::setReadOnly(bool isReadOnly) { m_isReadOnly = isReadOnly; } bool FileView::isReadOnly() const { return m_isReadOnly; } ValueListModel *FileView::valueListModel(const QString &field) { FileModel *model = fileModel(); if (model != nullptr) { ValueListModel *result = new ValueListModel(model->bibliographyFile(), field, this); /// Keep track of external changes through modifications in this ValueListModel instance connect(result, &ValueListModel::dataChanged, this, &FileView::externalModification); return result; } return nullptr; } void FileView::setFilterBar(FilterBar *filterBar) { m_filterBar = filterBar; } void FileView::setFilterBarFilter(const SortFilterFileModel::FilterQuery &fq) { if (m_filterBar != nullptr) m_filterBar->setFilter(fq); } void FileView::mouseMoveEvent(QMouseEvent *event) { emit editorMouseEvent(event); } void FileView::dragEnterEvent(QDragEnterEvent *event) { emit editorDragEnterEvent(event); } void FileView::dropEvent(QDropEvent *event) { if (event->source() != this) emit editorDropEvent(event); } void FileView::dragMoveEvent(QDragMoveEvent *event) { emit editorDragMoveEvent(event); } void FileView::itemActivated(const QModelIndex &index) { emit elementExecuted(elementAt(index)); } void FileView::prepareEditorDialog(DialogType dialogType) { if (dialogType != DialogTypeView && isReadOnly()) { qCWarning(LOG_KBIBTEX_GUI) << "In read-only mode, you may only view elements, not edit them"; dialogType = DialogTypeView; } /// Create both the dialog window and the editing widget only once if (m_elementEditorDialog == nullptr) m_elementEditorDialog = new ElementEditorDialog(this); if (m_elementEditor == nullptr) { m_elementEditor = new ElementEditor(false, m_elementEditorDialog); m_elementEditorDialog->setElementEditor(m_elementEditor); } if (m_dbb != nullptr) { delete m_dbb; m_dbb = nullptr; } if (dialogType == DialogTypeView) { /// View mode, as use in read-only situations m_elementEditor->setReadOnly(true); m_elementEditorDialog->setWindowTitle(i18n("View Element")); m_dbb = new QDialogButtonBox(QDialogButtonBox::Close, m_elementEditorDialog); QBoxLayout *boxLayout = qobject_cast<QBoxLayout *>(m_elementEditorDialog->layout()); boxLayout->addWidget(m_dbb); connect(m_dbb, &QDialogButtonBox::clicked, this, &FileView::dialogButtonClicked); } else if (dialogType == DialogTypeEdit) { /// Edit mode, used in normal operations m_elementEditor->setReadOnly(false); m_elementEditorDialog->setWindowTitle(i18n("Edit Element")); m_dbb = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Apply | QDialogButtonBox::Cancel | QDialogButtonBox::Reset, m_elementEditorDialog); QBoxLayout *boxLayout = qobject_cast<QBoxLayout *>(m_elementEditorDialog->layout()); boxLayout->addWidget(m_dbb); m_dbb->button(QDialogButtonBox::Apply)->setEnabled(false); /// Establish signal-slot connections for modification/editing events connect(m_elementEditor, &ElementEditor::modified, m_dbb->button(QDialogButtonBox::Apply), &QPushButton::setEnabled); connect(m_dbb, &QDialogButtonBox::clicked, this, &FileView::dialogButtonClicked); } } void FileView::dialogButtonClicked(QAbstractButton *button) { switch (m_dbb->standardButton(button)) { case QDialogButtonBox::Ok: m_elementEditor->apply(); m_elementEditorDialog->accept(); break; case QDialogButtonBox::Apply: m_elementEditor->apply(); break; case QDialogButtonBox::Close: ///< fall-through is intentional case QDialogButtonBox::Cancel: m_elementEditorDialog->reject(); break; case QDialogButtonBox::Reset: m_elementEditor->reset(); break; default: qCWarning(LOG_KBIBTEX_GUI) << "Default case should never get triggered in FileView::dialogButtonClicked"; } } #include "fileview.moc" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/fileview.h���������������������������������������������������������������0000664�0000000�0000000�00000007440�13313000262�0017420�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FILEVIEW_H #define KBIBTEX_GUI_FILEVIEW_H #include <QWidget> #include "kbibtexgui_export.h" #include "filterbar.h" #include "basicfileview.h" #include "element.h" class QAbstractButton; class QDialogButtonBox; class ValueListModel; class ElementEditor; class ElementEditorDialog; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT FileView : public BasicFileView { Q_OBJECT public: FileView(const QString &name, QWidget *parent); const QList<QSharedPointer<Element> > &selectedElements() const; const QSharedPointer<Element> currentElement() const; QSharedPointer<Element> currentElement(); QSharedPointer<Element> elementAt(const QModelIndex &index); void setReadOnly(bool isReadOnly = true); bool isReadOnly() const; ValueListModel *valueListModel(const QString &field); void setFilterBar(FilterBar *filterBar); signals: void selectedElementsChanged(); void currentElementChanged(QSharedPointer<Element>, const File *); void elementExecuted(QSharedPointer<Element>); void editorMouseEvent(QMouseEvent *); void editorDragEnterEvent(QDragEnterEvent *); void editorDragMoveEvent(QDragMoveEvent *); void editorDropEvent(QDropEvent *); void modified(bool); public slots: void viewCurrentElement(); void viewElement(const QSharedPointer<Element>); void editCurrentElement(); bool editElement(QSharedPointer<Element>); void setSelectedElement(QSharedPointer<Element>); void selectionDelete(); void externalModification(); void setFilterBarFilter(const SortFilterFileModel::FilterQuery &); protected: bool m_isReadOnly; void currentChanged(const QModelIndex &current, const QModelIndex &previous) override; void selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) override; void mouseMoveEvent(QMouseEvent *event) override; void dragEnterEvent(QDragEnterEvent *event) override; void dragMoveEvent(QDragMoveEvent *event) override; void dropEvent(QDropEvent *event) override; protected slots: void itemActivated(const QModelIndex &index); void dialogButtonClicked(QAbstractButton *); private: enum DialogType { DialogTypeView, DialogTypeEdit }; QSharedPointer<Element> m_current; QList<QSharedPointer<Element> > m_selection; FilterBar *m_filterBar; QWidget *m_lastEditorPage; ElementEditorDialog *m_elementEditorDialog; ElementEditor *m_elementEditor; QDialogButtonBox *m_dbb; void prepareEditorDialog(DialogType dialogType); }; #endif // KBIBTEX_GUI_FILEVIEW_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/findduplicatesui.cpp�����������������������������������������������������0000664�0000000�0000000�00000073551�13313000262�0021503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "findduplicatesui.h" #include <QApplication> #include <QWidget> #include <QBoxLayout> #include <QLabel> #include <QSortFilterProxyModel> #include <QStyle> #include <QRadioButton> #include <QMouseEvent> #include <QKeyEvent> #include <QSplitter> #include <QPointer> #include <QStandardPaths> #include <QPushButton> #include <QAction> #include <QDialog> #include <QDialogButtonBox> #include <KActionCollection> #include <KLocalizedString> #include <kparts/part.h> #include <KMessageBox> #include <KLineEdit> #include "fileimporterbibtex.h" #include "bibtexentries.h" #include "radiobuttontreeview.h" #include "fileview.h" #include "filedelegate.h" #include "models/filemodel.h" #include "findduplicates.h" #include "logging_gui.h" /** * Model to hold alternative values as visualized in the RadioTreeView */ class AlternativesItemModel : public QAbstractItemModel { Q_OBJECT private: /// marker to memorize in an index's internal id that it is a top-level index static const quint32 noParentInternalId; /// parent widget, needed to get font from (for text in italics) QTreeView *p; EntryClique *currentClique; public: enum SelectionType {SelectionTypeNone, SelectionTypeRadio, SelectionTypeCheck}; enum AlternativesItemModelRole { /// Raw, all-lowercase field name FieldNameRole = Qt::UserRole + 101, /// Text used for inline editing of values UserInputRole = Qt::UserRole + 103 }; AlternativesItemModel(QTreeView *parent) : QAbstractItemModel(parent), p(parent), currentClique(nullptr) { // nothing } static SelectionType selectionType(const QString &fieldName) { if (fieldName.isEmpty()) return SelectionTypeNone; if (fieldName == Entry::ftKeywords || fieldName == Entry::ftUrl) return SelectionTypeCheck; return SelectionTypeRadio; } void setCurrentClique(EntryClique *currentClique) { this->currentClique = currentClique; } QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override { if (parent == QModelIndex()) return createIndex(row, column, noParentInternalId); else if (parent.parent() == QModelIndex()) return createIndex(row, column, parent.row()); return QModelIndex(); } QModelIndex parent(const QModelIndex &index) const override { if (index.internalId() >= noParentInternalId) return QModelIndex(); else return createIndex(index.internalId(), 0, noParentInternalId); } int rowCount(const QModelIndex &parent = QModelIndex()) const override { if (currentClique == nullptr) return 0; if (parent == QModelIndex()) { /// top-level index, check how many lists of lists of alternatives exist return currentClique->fieldCount(); } else if (parent.parent() == QModelIndex()) { /// first, find the map of alternatives for this chosen field name (see parent) QString fieldName = parent.data(FieldNameRole).toString(); QList<Value> alt = currentClique->values(fieldName); /// second, return number of alternatives for list of alternatives /// plus one for an "else" option return alt.count() + (fieldName.startsWith('^') || fieldName == Entry::ftKeywords || fieldName == Entry::ftUrl ? 0 : 1); } return 0; } int columnCount(const QModelIndex &) const override { /// only one column in use return 1; } QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override { Q_UNUSED(section) Q_UNUSED(orientation) if (role == Qt::DisplayRole) return i18n("Alternatives"); return QVariant(); } QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override { if (index.parent() == QModelIndex()) { /// top-level elements showing field names like "Title", "Authors", etc const QString fieldName = currentClique->fieldList().at(index.row()).toLower(); switch (role) { case AlternativesItemModelRole::FieldNameRole: /// plain-and-simple field name (all lower case) return fieldName; case Qt::ToolTipRole: case Qt::DisplayRole: /// nicely formatted field names for visual representation if (fieldName == QStringLiteral("^id")) return i18n("Identifier"); else if (fieldName == QStringLiteral("^type")) return i18n("Type"); else return BibTeXEntries::self()->format(fieldName, KBibTeX::cUpperCamelCase); case RadioButtonTreeView::IsRadioRole: /// this is not to be a radio widget return QVariant::fromValue(false); case Qt::FontRole: if (fieldName.startsWith('^')) { QFont f = p->font(); f.setItalic(true); return f; } else return p->font(); } } else if (index.parent().parent() == QModelIndex()) { /// second-level entries for alternatives /// start with determining which list of alternatives actually to use QString fieldName = index.parent().data(FieldNameRole).toString(); QList<Value> values = currentClique->values(fieldName); switch (role) { case Qt::EditRole: case Qt::ToolTipRole: case Qt::DisplayRole: if (index.row() < values.count()) { QString text = PlainTextValue::text(values.at(index.row())); if (fieldName == QStringLiteral("^type")) { const BibTeXEntries *be = BibTeXEntries::self(); text = be->format(text, KBibTeX::cUpperCamelCase); } /// textual representation of the alternative's value return text; } else /// add an "else" option return i18n("None of the above"); case Qt::FontRole: /// for the "else" option, make font italic if (index.row() >= values.count()) { QFont f = p->font(); f.setItalic(true); return f; } else return p->font(); case Qt::CheckStateRole: { if (selectionType(fieldName) != SelectionTypeCheck) return QVariant(); const QList<Value> chosenValues = currentClique->chosenValues(fieldName); QString text = PlainTextValue::text(values.at(index.row())); for (const Value &value : chosenValues) { if (PlainTextValue::text(value) == text) return Qt::Checked; } return Qt::Unchecked; } case RadioButtonTreeView::RadioSelectedRole: { if (selectionType(fieldName) != SelectionTypeRadio) return QVariant::fromValue(false); /// return selection status (true or false) for this alternative Value chosen = currentClique->chosenValue(fieldName); if (chosen.isEmpty()) return QVariant::fromValue(index.row() >= values.count()); else if (index.row() < values.count()) { QString chosenPlainText = PlainTextValue::text(chosen); QString rowPlainText = PlainTextValue::text(values[index.row()]); return QVariant::fromValue(chosenPlainText == rowPlainText); } return QVariant::fromValue(false); } case RadioButtonTreeView::IsRadioRole: /// this is to be a radio widget return QVariant::fromValue(selectionType(fieldName) == SelectionTypeRadio); } } return QVariant(); } bool setData(const QModelIndex &index, const QVariant &value, int role = RadioButtonTreeView::RadioSelectedRole) override { if (index.parent() != QModelIndex()) { bool isInt; int checkState = value.toInt(&isInt); const QString fieldName = index.parent().data(FieldNameRole).toString(); QList<Value> &values = currentClique->values(fieldName); if (role == RadioButtonTreeView::RadioSelectedRole && value.canConvert<bool>() && value.toBool() == true && selectionType(fieldName) == SelectionTypeRadio) { /// start with determining which list of alternatives actually to use /// store which alternative was selected if (index.row() < values.count()) currentClique->setChosenValue(fieldName, values[index.row()]); else { Value v; currentClique->setChosenValue(fieldName, v); } /// update view on neighbouring alternatives emit dataChanged(index.sibling(0, 0), index.sibling(rowCount(index.parent()), 0)); return true; } else if (role == Qt::CheckStateRole && isInt && selectionType(fieldName) == SelectionTypeCheck) { if (checkState == Qt::Checked) currentClique->setChosenValue(fieldName, values[index.row()], EntryClique::AddValue); else if (checkState == Qt::Unchecked) currentClique->setChosenValue(fieldName, values[index.row()], EntryClique::RemoveValue); else return false; ///< tertium non datur emit dataChanged(index, index); return true; } else if (role == UserInputRole) { const QString text = value.toString(); if (text.isEmpty()) return false; const Value old = values.at(index.row()); if (old.isEmpty()) return false; Value v; QSharedPointer<PlainText> pt = old.first().dynamicCast<PlainText>(); if (!pt.isNull()) v.append(QSharedPointer<PlainText>(new PlainText(text))); else { QSharedPointer<VerbatimText> vt = old.first().dynamicCast<VerbatimText>(); if (!vt.isNull()) v.append(QSharedPointer<VerbatimText>(new VerbatimText(text))); else { QSharedPointer<MacroKey> mk = old.first().dynamicCast<MacroKey>(); if (!mk.isNull()) v.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { QSharedPointer<Person> ps = old.first().dynamicCast<Person>(); if (!ps.isNull()) FileImporterBibTeX::parsePersonList(text, v); else { QSharedPointer<Keyword> kw = old.first().dynamicCast<Keyword>(); if (!kw.isNull()) { const QList<QSharedPointer<Keyword> > keywordList = FileImporterBibTeX::splitKeywords(text); v.reserve(keywordList.size()); for (const auto &keyword : keywordList) v.append(keyword); } else { qCDebug(LOG_KBIBTEX_GUI) << "Not know how to set this text:" << text; } } } } } if (!v.isEmpty()) { values.removeAt(index.row()); values.insert(index.row(), v); emit dataChanged(index, index); return true; } else return false; } } return false; } bool hasChildren(const QModelIndex &parent = QModelIndex()) const override { /// depth-two tree return parent == QModelIndex() || parent.parent() == QModelIndex(); } Qt::ItemFlags flags(const QModelIndex &index) const override { Qt::ItemFlags f = QAbstractItemModel::flags(index); if (index.parent() != QModelIndex()) { QString fieldName = index.parent().data(FieldNameRole).toString(); if (selectionType(fieldName) == SelectionTypeCheck) f |= Qt::ItemIsUserCheckable; QList<Value> values = currentClique->values(fieldName); if (index.row() < values.count()) f |= Qt::ItemIsEditable; } return f; } }; const quint32 AlternativesItemModel::noParentInternalId = 0xffffff; /** * Specialization of RadioButtonItemDelegate which allows to edit * values in a AlternativesItemModel. */ class AlternativesItemDelegate: public RadioButtonItemDelegate { Q_OBJECT public: AlternativesItemDelegate(QObject *p) : RadioButtonItemDelegate(p) { // nothing } QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex &index) const override { if (index.parent() != QModelIndex()) { /// Only second-level indices in the model can be edited /// (those are the actual values). /// Use a plain, border-less KLineEdit. KLineEdit *lineEdit = new KLineEdit(parent); lineEdit->setStyleSheet(QStringLiteral("border: none;")); return lineEdit; } return nullptr; } void setEditorData(QWidget *editor, const QModelIndex &index) const override { if (KLineEdit *lineEdit = qobject_cast<KLineEdit *>(editor)) { /// Set line edit's default value to string fetched from model lineEdit->setText(index.data(Qt::EditRole).toString()); } } void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override { if (KLineEdit *lineEdit = qobject_cast<KLineEdit *>(editor)) { /// Set user-entered text to model (and underlying value) model->setData(index, lineEdit->text(), AlternativesItemModel::UserInputRole); /// Ensure that the edited value is checked if it is /// a checkbox-checkable value, or gets a "dot" in its /// radio button if it is radio-checkable. const QString fieldName = index.parent().data(AlternativesItemModel::FieldNameRole).toString(); if (AlternativesItemModel::selectionType(fieldName) == AlternativesItemModel::SelectionTypeCheck) model->setData(index, Qt::Checked, Qt::CheckStateRole); else if (AlternativesItemModel::selectionType(fieldName) == AlternativesItemModel::SelectionTypeRadio) model->setData(index, true, RadioButtonTreeView::RadioSelectedRole); } } void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &) const override { QRect rect = option.rect; // TODO better placement of editing widget? //int radioButtonWidth = QApplication::style()->pixelMetric(QStyle::PM_ExclusiveIndicatorWidth, &option); //int spacing = QApplication::style()->pixelMetric(QStyle::PM_RadioButtonLabelSpacing, &option); //rect.setLeft(rect.left() +spacing*3/2 + radioButtonWidth); editor->setGeometry(rect); } }; class CheckableFileModel : public FileModel { Q_OBJECT private: QList<EntryClique *> cl; int currentClique; QTreeView *tv; public: CheckableFileModel(QList<EntryClique *> &cliqueList, QTreeView *treeView, QObject *parent = nullptr) : FileModel(parent), cl(cliqueList), currentClique(0), tv(treeView) { // nothing } void setCurrentClique(EntryClique *currentClique) { this->currentClique = cl.indexOf(currentClique); } QVariant data(const QModelIndex &index, int role) const override { if (role == Qt::CheckStateRole && index.column() == 1) { QSharedPointer<Entry> entry = element(index.row()).dynamicCast<Entry>(); Q_ASSERT_X(!entry.isNull(), "CheckableFileModel::data", "entry is NULL"); if (!entry.isNull()) { QList<QSharedPointer<Entry> > entryList = cl[currentClique]->entryList(); if (entryList.contains(QSharedPointer<Entry>(entry))) // TODO does this work? return cl[currentClique]->isEntryChecked(QSharedPointer<Entry>(entry)) ? Qt::Checked : Qt::Unchecked; } } return FileModel::data(index, role); } bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override { bool ok; int checkState = value.toInt(&ok); Q_ASSERT_X(ok, "CheckableFileModel::setData", QString("Could not convert value " + value.toString()).toLatin1()); if (ok && role == Qt::CheckStateRole && index.column() == 1) { QSharedPointer<Entry> entry = element(index.row()).dynamicCast<Entry>(); if (!entry.isNull()) { QList<QSharedPointer<Entry> > entryList = cl[currentClique]->entryList(); if (entryList.contains(QSharedPointer<Entry>(entry))) { // TODO does this work? EntryClique *ec = cl[currentClique]; ec->setEntryChecked(QSharedPointer<Entry>(entry), checkState == Qt::Checked); cl[currentClique] = ec; emit dataChanged(index, index); tv->reset(); tv->expandAll(); return true; } } } return false; } Qt::ItemFlags flags(const QModelIndex &index) const override { Qt::ItemFlags f = FileModel::flags(index); if (index.column() == 1) f |= Qt::ItemIsUserCheckable; return f; } }; class FilterIdFileModel : public QSortFilterProxyModel { Q_OBJECT private: CheckableFileModel *internalModel; EntryClique *currentClique; public: FilterIdFileModel(QObject *parent = nullptr) : QSortFilterProxyModel(parent), internalModel(nullptr), currentClique(nullptr) { // nothing } void setCurrentClique(EntryClique *currentClique) { Q_ASSERT_X(internalModel != nullptr, "FilterIdFileModel::setCurrentClique(EntryClique *currentClique)", "internalModel is NULL"); internalModel->setCurrentClique(currentClique); this->currentClique = currentClique; invalidate(); } void setSourceModel(QAbstractItemModel *model) override { QSortFilterProxyModel::setSourceModel(model); internalModel = dynamic_cast<CheckableFileModel *>(model); Q_ASSERT_X(internalModel != nullptr, "FilterIdFileModel::setSourceModel(QAbstractItemModel *model)", "internalModel is NULL"); } bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override { Q_UNUSED(source_parent) if (internalModel != nullptr && currentClique != nullptr) { QSharedPointer<Entry> entry = internalModel->element(source_row).dynamicCast<Entry>(); if (!entry.isNull()) { QList<QSharedPointer<Entry> > entryList = currentClique->entryList(); if (entryList.contains(QSharedPointer<Entry>(entry))) return true; // TODO does this work? } } return false; } }; class MergeWidget::MergeWidgetPrivate { private: MergeWidget *p; public: File *file; FileView *editor; QPushButton *buttonNext, *buttonPrev; QLabel *labelWhichClique; static const char *whichCliqueText; CheckableFileModel *model; FilterIdFileModel *filterModel; RadioButtonTreeView *alternativesView; AlternativesItemModel *alternativesItemModel; AlternativesItemDelegate *alternativesItemDelegate; int currentClique; QList<EntryClique *> &cl; MergeWidgetPrivate(MergeWidget *parent, File *bibTeXFile, QList<EntryClique *> &cliqueList) : p(parent), file(bibTeXFile), currentClique(0), cl(cliqueList) { setupGUI(); } void setupGUI() { p->setMinimumSize(p->fontMetrics().xHeight() * 96, p->fontMetrics().xHeight() * 64); p->setBaseSize(p->fontMetrics().xHeight() * 128, p->fontMetrics().xHeight() * 96); QBoxLayout *layout = new QVBoxLayout(p); QLabel *label = new QLabel(i18n("Select your duplicates"), p); layout->addWidget(label); QSplitter *splitter = new QSplitter(Qt::Vertical, p); layout->addWidget(splitter); editor = new FileView(QStringLiteral("MergeWidget"), splitter); editor->setItemDelegate(new FileDelegate(editor)); editor->setReadOnly(true); alternativesView = new RadioButtonTreeView(splitter); model = new CheckableFileModel(cl, alternativesView, p); model->setBibliographyFile(file); QBoxLayout *containerLayout = new QHBoxLayout(); layout->addLayout(containerLayout); containerLayout->addStretch(10); labelWhichClique = new QLabel(p); containerLayout->addWidget(labelWhichClique); buttonPrev = new QPushButton(QIcon::fromTheme(QStringLiteral("go-previous")), i18n("Previous Clique"), p); containerLayout->addWidget(buttonPrev, 1); buttonNext = new QPushButton(QIcon::fromTheme(QStringLiteral("go-next")), i18n("Next Clique"), p); containerLayout->addWidget(buttonNext, 1); filterModel = new FilterIdFileModel(p); filterModel->setSourceModel(model); alternativesItemModel = new AlternativesItemModel(alternativesView); alternativesItemDelegate = new AlternativesItemDelegate(alternativesView); showCurrentClique(); connect(buttonPrev, &QPushButton::clicked, p, &MergeWidget::previousClique); connect(buttonNext, &QPushButton::clicked, p, &MergeWidget::nextClique); connect(editor, &FileView::doubleClicked, editor, &FileView::viewCurrentElement); } void showCurrentClique() { EntryClique *ec = cl[currentClique]; filterModel->setCurrentClique(ec); alternativesItemModel->setCurrentClique(ec); editor->setModel(filterModel); alternativesView->setModel(alternativesItemModel); alternativesView->setItemDelegate(alternativesItemDelegate); editor->reset(); alternativesView->reset(); alternativesView->expandAll(); buttonNext->setEnabled(currentClique >= 0 && currentClique < cl.count() - 1); buttonPrev->setEnabled(currentClique > 0); labelWhichClique->setText(i18n(whichCliqueText, currentClique + 1, cl.count())); } }; const char *MergeWidget::MergeWidgetPrivate::whichCliqueText = "Showing clique %1 of %2."; MergeWidget::MergeWidget(File *file, QList<EntryClique *> &cliqueList, QWidget *parent) : QWidget(parent), d(new MergeWidgetPrivate(this, file, cliqueList)) { /// nothing } MergeWidget::~MergeWidget() { delete d; } void MergeWidget::previousClique() { if (d->currentClique > 0) { --d->currentClique; d->showCurrentClique(); } } void MergeWidget::nextClique() { if (d->currentClique >= 0 && d->currentClique < d->cl.count() - 1) { ++d->currentClique; d->showCurrentClique(); } } class FindDuplicatesUI::FindDuplicatesUIPrivate { private: // UNUSED FindDuplicatesUI *p; public: KParts::Part *part; FileView *view; FindDuplicatesUIPrivate(FindDuplicatesUI */* UNUSED parent*/, KParts::Part *kpart, FileView *fileView) : /* UNUSED p(parent),*/ part(kpart), view(fileView) { /// nothing } }; FindDuplicatesUI::FindDuplicatesUI(KParts::Part *part, FileView *fileView) : QObject(), d(new FindDuplicatesUIPrivate(this, part, fileView)) { QAction *newAction = new QAction(QIcon::fromTheme(QStringLiteral("tab-duplicate")), i18n("Find Duplicates"), this); part->actionCollection()->addAction(QStringLiteral("findduplicates"), newAction); connect(newAction, &QAction::triggered, this, &FindDuplicatesUI::startDuplicatesSearch); } FindDuplicatesUI::~FindDuplicatesUI() { delete d; } void FindDuplicatesUI::startDuplicatesSearch() { // FIXME move to settings //bool ok = false; //int sensitivity = KInputDialog::getInteger(i18n("Sensitivity"), i18n("Enter a value for sensitivity.\n\nLow values (close to 0) require very similar entries for duplicate detection, larger values (close to 10000) are more likely to count entries as duplicates.\n\nPlease provide feedback to the developers if you have a suggestion for a better default value than 4000."), 4000, 0, 10000, 10, &ok, d->part->widget()); //if (!ok) sensitivity = 4000; int sensitivity = 4000; /// Full file, used to remove merged elements from /// Stays the same even when merging is restricted to selected elements File *originalFile = d->view->fileModel()->bibliographyFile(); /// File to be used to find duplicate in, /// may be only a subset of the original one if selection is used File *workingSetFile = originalFile; /// If more than one element but not all are selected in the main list view, /// ask the user if duplicates are to be searched only within the selection const int selectedRowsCount = d->view->selectedElements().count(); if (selectedRowsCount > 1 && selectedRowsCount < d->view->sortFilterProxyModel()->sourceModel()->rowCount() && KMessageBox::questionYesNo(d->part->widget(), i18n("Multiple elements are selected. Do you want to search for duplicates only within the selection or in the whole document?"), i18n("Search only in selection?"), KGuiItem(i18n("Only in selection")), KGuiItem(i18n("Whole document"))) == KMessageBox::Yes) { /// Yes, do only search for duplicates within selection, so copy all /// selected elements to a temporary new File object workingSetFile = new File(); const QModelIndexList mil = d->view->selectionModel()->selectedRows(); for (const QModelIndex &index : mil) workingSetFile->append(d->view->fileModel()->element(d->view->sortFilterProxyModel()->mapToSource(index).row())); } /// Actual duplicate finder, can be given a widget that will be the /// parent of a progress bar window and sensitivity value when to /// recognize two entries as being duplicates of each other FindDuplicates fd(d->part->widget(), sensitivity); QList<EntryClique *> cliques; bool gotCanceled = fd.findDuplicateEntries(workingSetFile, cliques); if (gotCanceled) { /// Duplicate search was cancelled, e.g. by pressing the Cancel /// button on the progress bar window if (workingSetFile != originalFile) delete workingSetFile; return; } if (cliques.isEmpty()) KMessageBox::information(d->part->widget(), i18n("No duplicates were found."), i18n("No duplicates found")); else { /// Duplicates have been found, so let user choose how to handle duplicate fields /// Why is a QPointer used here you may wonder? Check here in case the link still works: /// https://blogs.kde.org/2009/03/26/how-crash-almost-every-qtkde-application-and-how-fix-it-0 QPointer<QDialog> dlg = new QDialog(d->part->widget()); dlg->setWindowTitle(i18n("Merge Duplicates")); MergeWidget *mw = new MergeWidget(workingSetFile, cliques, dlg); mw->layout()->setMargin(0); QBoxLayout *layout = new QVBoxLayout(dlg); layout->addWidget(mw); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, dlg); layout->addWidget(buttonBox); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); connect(buttonBox->button(QDialogButtonBox::Cancel), &QPushButton::clicked, dlg.data(), &QDialog::reject); if (dlg->exec() == QDialog::Accepted && MergeDuplicates::mergeDuplicateEntries(cliques, d->view->fileModel())) { /// If the user made selections on what to merge how /// AND the requested changes could be applied on the /// 'original' file (not the working set file), then /// notify the world that things have changed d->view->externalModification(); } /// Clean memory while (!cliques.isEmpty()) { EntryClique *ec = cliques.first(); cliques.removeFirst(); delete ec; } delete dlg; } if (workingSetFile != originalFile) delete workingSetFile; } #include "findduplicatesui.moc" �������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/findduplicatesui.h�������������������������������������������������������0000664�0000000�0000000�00000004502�13313000262�0021136�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FINDDUPLICATESUI_H #define KBIBTEX_GUI_FINDDUPLICATESUI_H #include "kbibtexgui_export.h" #include <QObject> #include <QTreeView> namespace KParts { class Part; } class QPushButton; class FileView; class EntryClique; class File; class RadioButtonTreeView; class AlternativesItemModel; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT MergeWidget : public QWidget { Q_OBJECT public: MergeWidget(File *file, QList<EntryClique *> &cliques, QWidget *parent); ~MergeWidget() override; void showCurrentClique(); private slots: void previousClique(); void nextClique(); private: class MergeWidgetPrivate; MergeWidgetPrivate *d; }; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT FindDuplicatesUI : public QObject { Q_OBJECT public: FindDuplicatesUI(KParts::Part *part, FileView *fileView); ~FindDuplicatesUI() override; private slots: void startDuplicatesSearch(); private: class FindDuplicatesUIPrivate; FindDuplicatesUIPrivate *d; }; #endif // KBIBTEX_GUI_FINDDUPLICATESUI_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/partwidget.cpp�����������������������������������������������������������0000664�0000000�0000000�00000005104�13313000262�0020306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "partwidget.h" #include <QLayout> #include "filterbar.h" #include "fileview.h" #include "filedelegate.h" class PartWidget::Private { private: PartWidget *p; public: FileView *fileView; FilterBar *filterBar; Private(PartWidget *parent) : p(parent) { QBoxLayout *layout = new QVBoxLayout(parent); layout->setMargin(0); filterBar = new FilterBar(parent); layout->addWidget(filterBar, 0); fileView = new FileView(QStringLiteral("Main"), parent); layout->addWidget(fileView, 0xffffff); fileView->setFilterBar(filterBar); fileView->setItemDelegate(new FileDelegate(fileView)); fileView->setFocus(); connect(fileView, &FileView::searchFor, p, &PartWidget::searchFor); } }; PartWidget::PartWidget(QWidget *parent) : QWidget(parent), d(new PartWidget::Private(this)) { /// nothing } PartWidget::~PartWidget() { delete d; } FileView *PartWidget::fileView() { return d->fileView; } FilterBar *PartWidget::filterBar() { return d->filterBar; } void PartWidget::searchFor(const QString &text) { SortFilterFileModel::FilterQuery fq; fq.combination = SortFilterFileModel::EveryTerm; fq.field = QString(); fq.searchPDFfiles = false; fq.terms = QStringList() << text; d->filterBar->setFilter(fq); d->filterBar->setFocus(); } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/partwidget.h�������������������������������������������������������������0000664�0000000�0000000�00000003401�13313000262�0017751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_PARTWIDGET_H #define KBIBTEX_GUI_PARTWIDGET_H #include <QWidget> #include "kbibtexgui_export.h" class FileView; class FilterBar; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT PartWidget : public QWidget { Q_OBJECT public: explicit PartWidget(QWidget *parent); ~PartWidget() override; FileView *fileView(); FilterBar *filterBar(); private slots: void searchFor(const QString &); private: class Private; Private *const d; }; #endif // KBIBTEX_GUI_PARTWIDGET_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/sortfilterfilemodel.cpp��������������������������������������������������0000664�0000000�0000000�00000033411�13313000262�0022214�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "sortfilterfilemodel.h" #include <KSharedConfig> #include <KConfigGroup> #include "bibtexfields.h" #include "bibtexentries.h" #include "macro.h" #include "preamble.h" #include "comment.h" #include "fileinfo.h" const QString SortFilterFileModel::configGroupName = QStringLiteral("User Interface"); SortFilterFileModel::SortFilterFileModel(QObject *parent) : QSortFilterProxyModel(parent), m_internalModel(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { m_filterQuery.combination = AnyTerm; loadState(); setSortRole(FileModel::SortRole); } void SortFilterFileModel::setSourceModel(QAbstractItemModel *model) { QSortFilterProxyModel::setSourceModel(model); m_internalModel = dynamic_cast<FileModel *>(model); } FileModel *SortFilterFileModel::fileSourceModel() const { return m_internalModel; } void SortFilterFileModel::updateFilter(const SortFilterFileModel::FilterQuery &filterQuery) { m_filterQuery = filterQuery; m_filterQuery.field = filterQuery.field.toLower(); /// required for comparison in filter code invalidate(); } bool SortFilterFileModel::simpleLessThan(const QModelIndex &left, const QModelIndex &right) const { const QString leftString = left.data(Qt::DisplayRole).toString().toLower(); const QString rightString = right.data(Qt::DisplayRole).toString().toLower(); const int cmp = QString::localeAwareCompare(leftString, rightString); if (cmp == 0) return left.row() < right.row(); else return cmp < 0; } bool SortFilterFileModel::lessThan(const QModelIndex &left, const QModelIndex &right) const { int column = left.column(); Q_ASSERT_X(left.column() == right.column(), "bool SortFilterFileModel::lessThan(const QModelIndex &left, const QModelIndex &right) const", "Not comparing items in same column"); ///< assume that we only sort by column const BibTeXFields *bibtexFields = BibTeXFields::self(); const FieldDescription &fd = bibtexFields->at(column); if (column == right.column() && (fd.upperCamelCase == QStringLiteral("Author") || fd.upperCamelCase == QStringLiteral("Editor"))) { /// special sorting for authors or editors: check all names, /// compare last and then first names /// first, check if two entries (and not e.g. comments) are to be compared QSharedPointer<Entry> entryA = m_internalModel->element(left.row()).dynamicCast<Entry>(); QSharedPointer<Entry> entryB = m_internalModel->element(right.row()).dynamicCast<Entry>(); if (entryA.isNull() || entryB.isNull()) return simpleLessThan(left, right); /// retrieve values of both cells Value valueA = entryA->value(fd.upperCamelCase); Value valueB = entryB->value(fd.upperCamelCase); if (valueA.isEmpty()) valueA = entryA->value(fd.upperCamelCaseAlt); if (valueB.isEmpty()) valueB = entryB->value(fd.upperCamelCaseAlt); /// if either value is empty, use default implementation if (valueA.isEmpty() || valueB.isEmpty()) return simpleLessThan(left, right); /// compare each person in both values for (Value::Iterator itA = valueA.begin(), itB = valueB.begin(); itA != valueA.end() && itB != valueB.end(); ++itA, ++itB) { static const QRegExp curlyRegExp(QStringLiteral("[{}]+")); QSharedPointer<Person> personA = (*itA).dynamicCast<Person>(); QSharedPointer<Person> personB = (*itB).dynamicCast<Person>(); /// not a Person object in value? fall back to default implementation if (personA.isNull() || personB.isNull()) return QSortFilterProxyModel::lessThan(left, right); /// get both values' next persons' last names for comparison QString nameA = personA->lastName().remove(curlyRegExp).toLower(); QString nameB = personB->lastName().remove(curlyRegExp).toLower(); int cmp = QString::localeAwareCompare(nameA, nameB); if (cmp < 0) return true; if (cmp > 0) return false; /// if last names were inconclusive ... /// get both values' next persons' first names for comparison nameA = personA->firstName().remove(curlyRegExp).toLower(); nameB = personB->firstName().remove(curlyRegExp).toLower(); cmp = QString::localeAwareCompare(nameA, nameB); if (cmp < 0) return true; if (cmp > 0) return false; // TODO Check for suffix and prefix? } /// comparison by names did not work (was not conclusive) /// fall back to default implementation return simpleLessThan(left, right); } else { /// if comparing two numbers, do not perform lexicographical sorting (i.e. 13 < 2), /// but numerical sorting instead (i.e. 13 > 2) const QString textLeft = left.data(Qt::DisplayRole).toString(); const QString textRight = right.data(Qt::DisplayRole).toString(); bool okLeft = false, okRight = false; int numberLeft = textLeft.toInt(&okLeft); int numberRight = textRight.toInt(&okRight); if (okLeft && okRight) return numberLeft < numberRight; /// everything else can be sorted by default implementation /// (i.e. alphabetically or lexicographically) return simpleLessThan(left, right); } } bool SortFilterFileModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const { Q_UNUSED(source_parent) const QSharedPointer<Element> rowElement = m_internalModel->element(source_row); Q_ASSERT_X(!rowElement.isNull(), "bool SortFilterFileModel::filterAcceptsRow(int source_row, const QModelIndex &source_parent) const", "rowElement is NULL"); /// check if showing comments is disabled if (!m_showComments && Comment::isComment(*rowElement)) return false; /// check if showing macros is disabled if (!m_showMacros && Macro::isMacro(*rowElement)) return false; if (m_filterQuery.terms.isEmpty()) return true; /// empty filter query bool *eachTerm = new bool[m_filterQuery.terms.count()]; for (int i = m_filterQuery.terms.count() - 1; i >= 0; --i) eachTerm[i] = false; const QSharedPointer<Entry> entry = rowElement.dynamicCast<Entry>(); if (!entry.isNull()) { /// if current row contains an Entry ... if (m_filterQuery.field.isEmpty() || m_filterQuery.field == QStringLiteral("^id")) { /// Check entry's id const QString id = entry->id(); int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : id.contains(*itsl, Qt::CaseInsensitive); } if (m_filterQuery.field.isEmpty() || m_filterQuery.field == QStringLiteral("^type")) { /// Check entry's type const QString type = entry->type(); /// Check type's description ("Journal Article") const QString label = BibTeXEntries::self()->label(type); // TODO test for internationalized variants like "Artikel" or "bok" as well? int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : type.contains(*itsl, Qt::CaseInsensitive) || label.contains(*itsl, Qt::CaseInsensitive); } for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) if (m_filterQuery.field.isEmpty() || m_filterQuery.field == it.key().toLower()) { int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : it.value().containsPattern(*itsl); } /// Test associated PDF files if (m_filterQuery.searchPDFfiles && m_filterQuery.field.isEmpty()) {///< not filtering for any specific field const auto entryUrlList = FileInfo::entryUrls(entry, fileSourceModel()->bibliographyFile()->property(File::Url, QUrl()).toUrl(), FileInfo::TestExistenceYes); for (const QUrl &url : entryUrlList) { if (url.isLocalFile() && url.fileName().endsWith(QStringLiteral(".pdf"))) { const QString text = FileInfo::pdfToText(url.toLocalFile()); int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : text.contains(*itsl, Qt::CaseInsensitive); } } } int i = 0; if (m_filterQuery.field.isEmpty()) for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : entry->id().contains(*itsl, Qt::CaseInsensitive); } else { QSharedPointer<Macro> macro = rowElement.dynamicCast<Macro>(); if (!macro.isNull()) { if (m_filterQuery.field.isEmpty()) { int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= macro->value().containsPattern(*itsl, Qt::CaseInsensitive) || macro->key().contains(*itsl, Qt::CaseInsensitive); } if (m_filterQuery.field.isEmpty() || m_filterQuery.field == QStringLiteral("^type")) { static const QString label = QStringLiteral("macro"); int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] = eachTerm[i] || label.contains(*itsl, Qt::CaseInsensitive); } } else { QSharedPointer<Comment> comment = rowElement.dynamicCast<Comment>(); if (!comment.isNull()) { if (m_filterQuery.field.isEmpty()) { int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= (*itsl).isEmpty() ? true : comment->text().contains(*itsl, Qt::CaseInsensitive); } if (m_filterQuery.field.isEmpty() || m_filterQuery.field == QStringLiteral("^type")) { static const QString label = QStringLiteral("comment"); int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] = eachTerm[i] || label.contains(*itsl, Qt::CaseInsensitive); } } else { QSharedPointer<Preamble> preamble = rowElement.dynamicCast<Preamble>(); if (!preamble.isNull()) { if (m_filterQuery.field.isEmpty()) { int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] |= preamble->value().containsPattern(*itsl, Qt::CaseInsensitive); } if (m_filterQuery.field.isEmpty() || m_filterQuery.field == QStringLiteral("^type")) { static const QString label = QStringLiteral("preamble"); int i = 0; for (QStringList::ConstIterator itsl = m_filterQuery.terms.constBegin(); itsl != m_filterQuery.terms.constEnd(); ++itsl, ++i) eachTerm[i] = eachTerm[i] || label.contains(*itsl, Qt::CaseInsensitive); } } } } } bool every = true, any = false; for (int i = m_filterQuery.terms.count() - 1; i >= 0; --i) { every &= eachTerm[i]; any |= eachTerm[i]; } delete[] eachTerm; if (m_filterQuery.combination == SortFilterFileModel::AnyTerm) return any; else return every; } void SortFilterFileModel::loadState() { KConfigGroup configGroup(config, configGroupName); m_showComments = configGroup.readEntry(FileModel::keyShowComments, FileModel::defaultShowComments); m_showMacros = configGroup.readEntry(FileModel::keyShowMacros, FileModel::defaultShowMacros); } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/file/sortfilterfilemodel.h����������������������������������������������������0000664�0000000�0000000�00000005020�13313000262�0021654�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SORTFILTERFILEMODEL_H #define KBIBTEX_GUI_SORTFILTERFILEMODEL_H #include "kbibtexgui_export.h" #include <QSortFilterProxyModel> #include "models/filemodel.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SortFilterFileModel : public QSortFilterProxyModel { Q_OBJECT public: enum FilterCombination {AnyTerm = 0, EveryTerm = 1 }; struct FilterQuery { QStringList terms; FilterCombination combination; QString field; bool searchPDFfiles; }; explicit SortFilterFileModel(QObject *parent = nullptr); void setSourceModel(QAbstractItemModel *model) override; FileModel *fileSourceModel() const; public slots: void updateFilter(const SortFilterFileModel::FilterQuery &); protected: bool lessThan(const QModelIndex &left, const QModelIndex &right) const override; bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override; private: FileModel *m_internalModel; SortFilterFileModel::FilterQuery m_filterQuery; KSharedConfigPtr config; static const QString configGroupName; bool m_showComments, m_showMacros; void loadState(); bool simpleLessThan(const QModelIndex &left, const QModelIndex &right) const; }; #endif // KBIBTEX_GUI_SORTFILTERFILEMODEL_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/guihelper.cpp�����������������������������������������������������������������0000664�0000000�0000000�00000003745�13313000262�0017212�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "guihelper.h" #include <QPainter> #include <QPixmap> #include <KIconLoader> #include "logging_gui.h" int GUIHelper::selectValue(QAbstractItemModel *model, const QString &value, int role) { int row = 0; QModelIndex index; const QString lowerValue = value.toLower(); while (row < model->rowCount() && (index = model->index(row, 0, QModelIndex())) != QModelIndex()) { QString line = model->data(index, role).toString(); if (line.toLower() == lowerValue) return row; ++row; } qCWarning(LOG_KBIBTEX_GUI) << "Could not find matching row in model for value " << value << " in role" << role; return -1; } ���������������������������kbibtex-0.8.1/src/gui/guihelper.h�������������������������������������������������������������������0000664�0000000�0000000�00000004760�13313000262�0016655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef KBIBTEX_GUI_HELPER_H #define KBIBTEX_GUI_HELPER_H #include "kbibtexgui_export.h" #include <QAbstractItemModel> #include <QPoint> #include <QSize> class QPainter; /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT GUIHelper { public: /** * Given a model containing strings in the first column attached * to the root node, search all those strings for equivalence to * a given string. The test for equivalence is case-insensitive * and the role how this string is retrieved from the model can * be chosen. * If the string was found, the row number (0 to rowCount()-1) is * returned. If the string was not found or any other error * condition occurred, a negative value is returned. * * @param model model containing strings to test for case-insensitive equivalence * @param value value to search for in the model * @param role role used to retrieve string data from the model * @return row of value's occurrence or a negative value if not found or any other error */ static int selectValue(QAbstractItemModel *model, const QString &value, int role = Qt::DisplayRole); }; #endif // KBIBTEX_GUI_HELPER_H ����������������kbibtex-0.8.1/src/gui/italictextitemmodel.cpp�������������������������������������������������������0000664�0000000�0000000�00000007075�13313000262�0021300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "italictextitemmodel.h" #include <QFont> #include "logging_gui.h" class ItalicTextItemModel::Private { private: // UNUSED ItalicTextItemModel *p; public: QList<QPair<QString, QString> > data; Private(ItalicTextItemModel */* UNUSED parent*/) // UNUSED : p(parent) { /// nothing } }; ItalicTextItemModel::ItalicTextItemModel(QObject *parent) : QAbstractItemModel(parent), d(new Private(this)) { /// nothing } ItalicTextItemModel::~ItalicTextItemModel() { delete d; } void ItalicTextItemModel::addItem(const QString &a, const QString &b) { /// Store both arguments in a pair of strings, /// added to the data structure d->data.append(QPair<QString, QString>(a, b)); } QVariant ItalicTextItemModel::data(const QModelIndex &index, int role) const { /// Test and ignore for invalid rows if (index.row() < 0 || index.row() >= d->data.count()) return QVariant(); if (role == Qt::FontRole) { QFont font; /// If the identifier for a data row is empty, /// set the row's text in italics if (d->data[index.row()].second.isEmpty()) font.setItalic(true); return font; } else if (role == Qt::DisplayRole) { /// Show text as passed as first parameter to function addItem return d->data[index.row()].first; } else if (role == Qt::UserRole) { qCWarning(LOG_KBIBTEX_GUI) << "Requesting data from Qt::UserRole is deprecated, should not happen"; } else if (role == IdentifierRole) { /// Return string as passed as second parameter to function addItem return d->data[index.row()].second; } return QVariant(); } QModelIndex ItalicTextItemModel::index(int row, int column, const QModelIndex &) const { return createIndex(row, column); } QModelIndex ItalicTextItemModel::parent(const QModelIndex &) const { /// Flat, single-level model return QModelIndex(); } int ItalicTextItemModel::rowCount(const QModelIndex &) const { /// As many rows as elements in data structure /// (should be as many calls to addItem were made) return d->data.count(); } int ItalicTextItemModel::columnCount(const QModelIndex &) const { /// Just one column, thus suitable for combo boxes return 1; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/italictextitemmodel.h���������������������������������������������������������0000664�0000000�0000000�00000005567�13313000262�0020751�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef KBIBTEX_GUI_ITALICTEXTITEMMODEL_H #define KBIBTEX_GUI_ITALICTEXTITEMMODEL_H #include <QAbstractItemModel> #include "kbibtexgui_export.h" /** * The ItalicTextItemModel allows to maintain a list of value pairs: * The first element of the pair will be the shown text (should be * i18n'ized), the second value is supposed to be a string to identify * the shown text. If this identifier is empty or null, the first pair * element will be drawn in italic text. * * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT ItalicTextItemModel : public QAbstractItemModel { Q_OBJECT public: enum ItalicTextItemModelRole { /// Role to retrieve identifier for a row IdentifierRole = Qt::UserRole + 9672 }; explicit ItalicTextItemModel(QObject *parent = nullptr); ~ItalicTextItemModel() override; /** * Add a new entry (pair of shown text and identifier) to this model. * @param shownText i18n'ized text to be shown to the user * @param identifier internal identifier (if empty, shownText will be set in italics) */ void addItem(const QString &shownText, const QString &identifier); QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QModelIndex index(int row, int column, const QModelIndex &) const override; QModelIndex parent(const QModelIndex &) const override; int rowCount(const QModelIndex &) const override; int columnCount(const QModelIndex &) const override; private: class Private; Private *const d; }; #endif // KBIBTEX_GUI_ITALICTEXTITEMMODEL_H �����������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/logging_gui.cpp���������������������������������������������������������������0000664�0000000�0000000�00000002437�13313000262�0017515�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_gui.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_GUI, "kbibtex.gui") ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/logging_gui.h�����������������������������������������������������������������0000664�0000000�0000000�00000002605�13313000262�0017157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_LOGGING_GUI_H #define KBIBTEX_GUI_LOGGING_GUI_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_GUI) #endif // KBIBTEX_GUI_LOGGING_GUI_H ���������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0017012�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/kbibtexpreferencesdialog.cpp��������������������������������������0000664�0000000�0000000�00000020431�13313000262�0024550�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "kbibtexpreferencesdialog.h" #include <QSet> #include <QFileInfo> #include <QDialogButtonBox> #include <QPushButton> #include <KLocalizedString> #include <KComboBox> #include <KMessageBox> #include <KGuiItem> #include <QStandardPaths> #include "notificationhub.h" #include "settingsgeneralwidget.h" #include "settingsglobalkeywordswidget.h" #include "settingsfileexporterpdfpswidget.h" #include "settingsfileexporterwidget.h" #include "settingscolorlabelwidget.h" #include "settingsuserinterfacewidget.h" #include "settingsidsuggestionswidget.h" #include "logging_gui.h" class KBibTeXPreferencesDialog::KBibTeXPreferencesDialogPrivate { private: KBibTeXPreferencesDialog *p; QSet<SettingsAbstractWidget *> settingWidgets; public: bool notifyOfChanges; KBibTeXPreferencesDialogPrivate(KBibTeXPreferencesDialog *parent) : p(parent) { notifyOfChanges = false; } void addPages() { SettingsAbstractWidget *settingsWidget = new SettingsGeneralWidget(p); settingWidgets.insert(settingsWidget); KPageWidgetItem *pageGlobal = p->addPage(settingsWidget, settingsWidget->label()); pageGlobal->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsGlobalKeywordsWidget(p); settingWidgets.insert(settingsWidget); KPageWidgetItem *page = p->addSubPage(pageGlobal, settingsWidget, settingsWidget->label()); page->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsColorLabelWidget(p); settingWidgets.insert(settingsWidget); page = p->addSubPage(pageGlobal, settingsWidget, settingsWidget->label()); page->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsIdSuggestionsWidget(p); settingWidgets.insert(settingsWidget); page = p->addSubPage(pageGlobal, settingsWidget, settingsWidget->label()); page->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsUserInterfaceWidget(p); settingWidgets.insert(settingsWidget); page = p->addPage(settingsWidget, settingsWidget->label()); page->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsFileExporterWidget(p); settingWidgets.insert(settingsWidget); KPageWidgetItem *pageSaving = p->addPage(settingsWidget, settingsWidget->label()); pageSaving->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); settingsWidget = new SettingsFileExporterPDFPSWidget(p); settingWidgets.insert(settingsWidget); page = p->addSubPage(pageSaving, settingsWidget, settingsWidget->label()); page->setIcon(settingsWidget->icon()); connect(settingsWidget, &SettingsAbstractWidget::changed, p, &KBibTeXPreferencesDialog::gotChanged); } void loadState() { for (SettingsAbstractWidget *settingsWidget : const_cast<const QSet<SettingsAbstractWidget *> &>(settingWidgets)) { settingsWidget->loadState(); } } void saveState() { for (SettingsAbstractWidget *settingsWidget : const_cast<const QSet<SettingsAbstractWidget *> &>(settingWidgets)) { settingsWidget->saveState(); } } void restoreDefaults() { notifyOfChanges = true; switch (KMessageBox::warningYesNoCancel(p, i18n("This will reset the settings to factory defaults. Should this affect only the current page or all settings?"), i18n("Reset to Defaults"), KGuiItem(i18n("All settings"), QStringLiteral("edit-undo")), KGuiItem(i18n("Only current page"), QStringLiteral("document-revert")))) { case KMessageBox::Yes: { for (SettingsAbstractWidget *settingsWidget : const_cast<const QSet<SettingsAbstractWidget *> &>(settingWidgets)) { settingsWidget->resetToDefaults(); } break; } case KMessageBox::No: { SettingsAbstractWidget *widget = qobject_cast<SettingsAbstractWidget *>(p->currentPage()->widget()); if (widget != nullptr) widget->resetToDefaults(); break; } case KMessageBox::Cancel: break; /// nothing to do here default: qCWarning(LOG_KBIBTEX_GUI) << "There should be no use for a default case here!"; } } void apply() { p->buttonBox()->button(QDialogButtonBox::Apply)->setEnabled(false); saveState(); notifyOfChanges = true; } void reset() { p->buttonBox()->button(QDialogButtonBox::Apply)->setEnabled(false); loadState(); } void ok() { notifyOfChanges = true; if (p->buttonBox()->button(QDialogButtonBox::Apply)->isEnabled()) { /// Apply settings only if changes have made /// (state stored by Apply button being enabled or disabled) apply(); } p->accept(); } }; KBibTeXPreferencesDialog::KBibTeXPreferencesDialog(QWidget *parent, Qt::WindowFlags flags) : KPageDialog(parent, flags), d(new KBibTeXPreferencesDialogPrivate(this)) { setFaceType(KPageDialog::Tree); setWindowTitle(i18n("Preferences")); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::RestoreDefaults | QDialogButtonBox::Reset | QDialogButtonBox::Ok | QDialogButtonBox::Apply | QDialogButtonBox::Cancel, Qt::Horizontal, this); buttonBox->button(QDialogButtonBox::Apply)->setEnabled(false); connect(buttonBox, &QDialogButtonBox::clicked, this, &KBibTeXPreferencesDialog::buttonClicked); setButtonBox(buttonBox); setModal(true); d->addPages(); } KBibTeXPreferencesDialog::~KBibTeXPreferencesDialog() { delete d; } void KBibTeXPreferencesDialog::hideEvent(QHideEvent *) { // TODO missing documentation: what triggers 'hideEvent' and why is 'notifyOfChanges' necessary? if (d->notifyOfChanges) NotificationHub::publishEvent(NotificationHub::EventConfigurationChanged); } void KBibTeXPreferencesDialog::buttonClicked(QAbstractButton *button) { switch (buttonBox()->standardButton(button)) { case QDialogButtonBox::Apply: d->apply(); break; case QDialogButtonBox::Ok: d->ok(); break; case QDialogButtonBox::RestoreDefaults: d->restoreDefaults(); break; case QDialogButtonBox::Reset: d->reset(); break; default: qCWarning(LOG_KBIBTEX_GUI) << "There should be no use for a default case here!"; } } void KBibTeXPreferencesDialog::gotChanged() { buttonBox()->button(QDialogButtonBox::Apply)->setEnabled(true); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/kbibtexpreferencesdialog.h����������������������������������������0000664�0000000�0000000�00000003666�13313000262�0024230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_KBIBTEXPREFERENCESDIALOG_H #define KBIBTEX_GUI_KBIBTEXPREFERENCESDIALOG_H #include <kbibtexgui_export.h> #include <KPageDialog> class QAbstractButton; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT KBibTeXPreferencesDialog : public KPageDialog { Q_OBJECT public: explicit KBibTeXPreferencesDialog(QWidget *parent, Qt::WindowFlags flags = 0); ~KBibTeXPreferencesDialog() override; protected: void hideEvent(QHideEvent *e) override; private: class KBibTeXPreferencesDialogPrivate; KBibTeXPreferencesDialogPrivate *d; private slots: void buttonClicked(QAbstractButton *); void gotChanged(); }; #endif // KBIBTEX_GUI_KBIBTEXPREFERENCESDIALOG_H ��������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsabstractwidget.cpp����������������������������������������0000664�0000000�0000000�00000002572�13313000262�0024314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsabstractwidget.h" #include <KComboBox> SettingsAbstractWidget::SettingsAbstractWidget(QWidget *parent) : QWidget(parent) { // nothing } ��������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsabstractwidget.h������������������������������������������0000664�0000000�0000000�00000003703�13313000262�0023756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSABSTRACTWIDGET_H #define KBIBTEX_GUI_SETTINGSABSTRACTWIDGET_H #include <kbibtexgui_export.h> #include <QAbstractItemModel> #include <QWidget> #include <QIcon> class KComboBox; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsAbstractWidget : public QWidget { Q_OBJECT public: explicit SettingsAbstractWidget(QWidget *parent); // virtual ~SettingsAbstractWidget() { /* nothing */ }; virtual QString label() const = 0; virtual QIcon icon() const = 0; signals: void changed(); public slots: virtual void loadState() = 0; virtual void saveState() = 0; virtual void resetToDefaults() = 0; }; #endif // KBIBTEX_GUI_SETTINGSABSTRACTWIDGET_H �������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingscolorlabelwidget.cpp��������������������������������������0000664�0000000�0000000�00000050222�13313000262�0024622�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingscolorlabelwidget.h" #include "settingscolorlabelwidget_p.h" #include <ctime> #include <QLayout> #include <QStyledItemDelegate> #include <QSignalMapper> #include <QPushButton> #include <QMenu> #include <KColorButton> #include <KLineEdit> #include <KActionMenu> #include <KSharedConfig> #include <KConfigGroup> #include <KLocalizedString> #include "file.h" #include "fileview.h" #include "colorlabelwidget.h" #include "models/filemodel.h" #include "preferences.h" class ColorLabelSettingsDelegate : public QStyledItemDelegate { Q_OBJECT public: ColorLabelSettingsDelegate(QWidget *parent = nullptr) : QStyledItemDelegate(parent) { /// nothing } QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex &index) const override { if (index.column() == 0) /// Colors are to be edited in a color button return new KColorButton(parent); else /// Text strings are to be edited in a line edit return new KLineEdit(parent); } void setEditorData(QWidget *editor, const QModelIndex &index) const override { if (index.column() == 0) { KColorButton *colorButton = qobject_cast<KColorButton *>(editor); /// Initialized color button with row's current color colorButton->setColor(index.model()->data(index, Qt::EditRole).value<QColor>()); } else { KLineEdit *lineEdit = qobject_cast<KLineEdit *>(editor); /// Initialized line edit with row's current color's label lineEdit->setText(index.model()->data(index, Qt::EditRole).toString()); } } void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override { if (index.column() == 0) { KColorButton *colorButton = qobject_cast<KColorButton *>(editor); if (colorButton->color() != Qt::black) /// Assign color button's color back to model model->setData(index, colorButton->color(), Qt::EditRole); } else if (index.column() == 1) { KLineEdit *lineEdit = qobject_cast<KLineEdit *>(editor); if (!lineEdit->text().isEmpty()) /// Assign line edit's text back to model model->setData(index, lineEdit->text(), Qt::EditRole); } } QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override { QSize hint = QStyledItemDelegate::sizeHint(option, index); QFontMetrics fm = QFontMetrics(QFont()); /// Enforce minimum height of 4 times x-height hint.setHeight(qMax(hint.height(), fm.xHeight() * 4)); return hint; } }; ColorLabelSettingsModel::ColorLabelSettingsModel(QObject *parent) : QAbstractItemModel(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { /// Load stored color-label pairs loadState(); } int ColorLabelSettingsModel::rowCount(const QModelIndex &parent) const { /// Single-level list of color-label pairs has as many rows as pairs return parent == QModelIndex() ? colorLabelPairs.count() : 0; } int ColorLabelSettingsModel::columnCount(const QModelIndex &parent) const { /// Single-level list of color-label pairs has as 2 columns /// (one of color, one for label) return parent == QModelIndex() ? 2 : 0; } QModelIndex ColorLabelSettingsModel::index(int row, int column, const QModelIndex &parent) const { if (row >= 0 && row <= colorLabelPairs.count() - 1 && column >= 0 && column <= 1 && parent == QModelIndex()) /// Create index for valid combinations of row, column, and parent return createIndex(row, column, row); else return QModelIndex(); } QModelIndex ColorLabelSettingsModel::parent(const QModelIndex &) const { /// Single-level list's indices have no other index as parent return QModelIndex(); } QVariant ColorLabelSettingsModel::data(const QModelIndex &index, int role) const { /// Skip invalid model indices if (index == QModelIndex() || index.row() < 0 || index.row() >= colorLabelPairs.count()) return QVariant(); if ((role == Qt::DecorationRole || role == Qt::EditRole) && index.column() == 0) /// First column has colors only (no text) return colorLabelPairs[index.row()].color; else if ((role == Qt::DisplayRole || role == Qt::EditRole) && index.column() == 1) /// Second column has colors' labels return colorLabelPairs[index.row()].label; return QVariant(); } bool ColorLabelSettingsModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (role == Qt::EditRole) { const QModelIndex left = index.sibling(index.row(), 0); const QModelIndex right = index.sibling(index.row(), 1); if (index.column() == 0 && value.canConvert<QColor>()) { /// For first column if a valid color is to be set ... const QColor color = value.value<QColor>(); if (color != Qt::black && (color.red() > 0 || color.green() > 0 || color.blue() > 0)) { /// ... store this color in the data structure colorLabelPairs[index.row()].color = color; /// Notify everyone about the changes emit dataChanged(left, right); emit modified(); return true; } } else if (index.column() == 1 && value.canConvert<QString>()) { /// For second column if a label text is to be set ... const QString text = value.toString(); if (!text.isEmpty()) { /// ... store this text in the data structure colorLabelPairs[index.row()].label = text; /// Notify everyone about the changes emit dataChanged(left, right); emit modified(); return true; } } } return false; } Qt::ItemFlags ColorLabelSettingsModel::flags(const QModelIndex &index) const { Qt::ItemFlags result = QAbstractItemModel::flags(index); result |= Qt::ItemIsEditable; ///< all cells can be edited (color or text label) return result; } QVariant ColorLabelSettingsModel::headerData(int section, Qt::Orientation orientation, int role) const { /// Only vertical lists supported if (orientation != Qt::Horizontal || role != Qt::DisplayRole) return QVariant(); switch (section) { case 0: return i18n("Color"); case 1: return i18n("Label"); default: return QVariant(); } } /** * Load list of color-label pairs from user's configuration file. * Fall back on pre-defined colors and labels if no user settings exist. */ void ColorLabelSettingsModel::loadState() { KConfigGroup configGroup(config, Preferences::groupColor); QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); colorLabelPairs.clear(); for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { ColorLabelPair clp; clp.color = QColor(*itc); clp.label = i18n((*itl).toUtf8().constData()); colorLabelPairs << clp; } } /** * Save list of color-label pairs in user's configuration file. */ void ColorLabelSettingsModel::saveState() { QStringList colorCodes, colorLabels; colorCodes.reserve(colorLabelPairs.size()); colorLabels.reserve(colorLabelPairs.size()); for (const ColorLabelPair &clp : const_cast<const QList<ColorLabelPair> &>(colorLabelPairs)) { colorCodes << clp.color.name(); colorLabels << clp.label; } KConfigGroup configGroup(config, Preferences::groupColor); configGroup.writeEntry(Preferences::keyColorCodes, colorCodes); configGroup.writeEntry(Preferences::keyColorLabels, colorLabels); config->sync(); } /** * Revert in-memory data structure (list of color-label pairs) to defaults. * Does not touch user's configuration file (would require an Apply operation). */ void ColorLabelSettingsModel::resetToDefaults() { colorLabelPairs.clear(); for (QStringList::ConstIterator itc = Preferences::defaultColorCodes.constBegin(), itl = Preferences::defaultColorLabels.constBegin(); itc != Preferences::defaultColorCodes.constEnd() && itl != Preferences::defaultColorLabels.constEnd(); ++itc, ++itl) { ColorLabelPair clp; clp.color = QColor(*itc); clp.label = i18n((*itl).toUtf8().constData()); colorLabelPairs << clp; } emit modified(); } /** * Add a new color-label pair to this model. * The pair will be appended to the list's end. * No check is performed if a similar color or label is already in use. * * @param color Color of the color-label pair * @param label Label of the color-label pair */ void ColorLabelSettingsModel::addColorLabel(const QColor &color, const QString &label) { const int newRow = colorLabelPairs.size(); beginInsertRows(QModelIndex(), newRow, newRow); ColorLabelPair clp; clp.color = color; clp.label = label; colorLabelPairs << clp; endInsertRows(); emit modified(); } /** * Remove a color-label pair from this model. * The pair is identified by the row number. * * @param row Row number of the pair to be removed */ void ColorLabelSettingsModel::removeColorLabel(int row) { if (row >= 0 && row < colorLabelPairs.count()) { beginRemoveRows(QModelIndex(), row, row); colorLabelPairs.removeAt(row); endRemoveRows(); emit modified(); } } class SettingsColorLabelWidget::Private { private: SettingsColorLabelWidget *p; ColorLabelSettingsDelegate *delegate; KSharedConfigPtr config; public: ColorLabelSettingsModel *model; QPushButton *buttonRemove; QTreeView *view; Private(SettingsColorLabelWidget *parent) : p(parent), delegate(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), model(nullptr), buttonRemove(nullptr), view(nullptr) { /// nothing } void loadState() { /// Delegate state maintenance to model if (model != nullptr) model->loadState(); } void saveState() { /// Delegate state maintenance to model if (model != nullptr) model->saveState(); } void resetToDefaults() { /// Delegate state maintenance to model if (model != nullptr) model->resetToDefaults(); } void setupGUI() { QGridLayout *layout = new QGridLayout(p); layout->setMargin(0); /// Central element in the main widget /// is a tree view for color-label pairs view = new QTreeView(p); layout->addWidget(view, 0, 0, 3, 1); view->setRootIsDecorated(false); /// Tree view's model maintains color-label pairs model = new ColorLabelSettingsModel(view); view->setModel(model); /// Changes in the model (e.g. through setData(..)) /// get propagated as this widget's changed() signal connect(model, &ColorLabelSettingsModel::modified, p, &SettingsColorLabelWidget::changed); /// Delegate to handle changes of color (through KColorButton) /// and label (throuh KLineEdit) delegate = new ColorLabelSettingsDelegate(view); view->setItemDelegate(delegate); /// Button to add a new randomized color QPushButton *buttonAdd = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add..."), p); layout->addWidget(buttonAdd, 0, 1, 1, 1); connect(buttonAdd, &QPushButton::clicked, p, &SettingsColorLabelWidget::addColor); /// Remove selected color-label pair; button is disabled /// if no row is selected in tree view buttonRemove = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), i18n("Remove"), p); layout->addWidget(buttonRemove, 1, 1, 1, 1); buttonRemove->setEnabled(false); connect(buttonRemove, &QPushButton::clicked, p, &SettingsColorLabelWidget::removeColor); } }; SettingsColorLabelWidget::SettingsColorLabelWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new Private(this)) { /// Seed random number generator qsrand(time(nullptr)); /// Setup GUI elements d->setupGUI(); /// Connect signals connect(d->view->selectionModel(), &QItemSelectionModel::selectionChanged, this, &SettingsColorLabelWidget::updateRemoveButtonStatus); } SettingsColorLabelWidget::~SettingsColorLabelWidget() { delete d; } QString SettingsColorLabelWidget::label() const { return i18n("Color & Labels"); } QIcon SettingsColorLabelWidget::icon() const { return QIcon::fromTheme(QStringLiteral("preferences-desktop-color")); } void SettingsColorLabelWidget::loadState() { d->loadState(); } void SettingsColorLabelWidget::saveState() { d->saveState(); } void SettingsColorLabelWidget::resetToDefaults() { d->resetToDefaults(); } void SettingsColorLabelWidget::addColor() { /// Create a randomized color, but guarantee /// some minimum value for each color component const QColor newColor((qrand() & 0xff) | 0x30, (qrand() & 0xff) | 0x30, (qrand() & 0xff) | 0x30); /// Set the new label to be the color's hex string const QString newColorName(newColor.name().remove(QLatin1Char('#'))); /// Add new color-label pair to model's data d->model->addColorLabel(newColor, i18nc("Label for a new color; placeholder is for a 6-digit hex string", "NewColor%1", newColorName)); } void SettingsColorLabelWidget::removeColor() { if (!d->view->selectionModel()->selectedIndexes().isEmpty()) { /// Determine which row is selected const int row = d->view->selectionModel()->selectedIndexes().first().row(); /// Remove row from model d->model->removeColorLabel(row); updateRemoveButtonStatus(); } } void SettingsColorLabelWidget::updateRemoveButtonStatus() { /// Enable remove button iff tree view's selection is not empty d->buttonRemove->setEnabled(!d->view->selectionModel()->selectedIndexes().isEmpty()); } class ColorLabelContextMenu::Private { private: // UNUSED ColorLabelContextMenu *p; public: /// Tree view to show this context menu in FileView *fileView; /// Actual menu to show KActionMenu *menu; /// Signal handle to react to calls to items in menu QSignalMapper *sm; Private(FileView *fv, ColorLabelContextMenu *parent) : /* UNUSED p(parent),*/ fileView(fv) { sm = new QSignalMapper(parent); menu = new KActionMenu(QIcon::fromTheme(QStringLiteral("preferences-desktop-color")), i18n("Color"), fileView); /// Let menu be a sub menu to the tree view's context menu fileView->addAction(menu); } void rebuildMenu() { menu->menu()->clear(); /// Add color-label pairs to menu as stored /// in the user's configuration file KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, Preferences::groupColor); QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { QAction *action = new QAction(QIcon(ColorLabelWidget::createSolidIcon(*itc)), i18n((*itl).toUtf8().constData()), menu); menu->addAction(action); sm->setMapping(action, *itc); connect(action, &QAction::triggered, sm, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); } QAction *action = new QAction(menu); action->setSeparator(true); menu->addAction(action); /// Special action that removes any color /// from a BibTeX entry by setting the color to black action = new QAction(i18n("No color"), menu); menu->addAction(action); sm->setMapping(action, QStringLiteral("#000000")); connect(action, &QAction::triggered, sm, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); } }; ColorLabelContextMenu::ColorLabelContextMenu(FileView *widget) : QObject(widget), d(new Private(widget, this)) { connect(d->sm, static_cast<void(QSignalMapper::*)(const QString &)>(&QSignalMapper::mapped), this, &ColorLabelContextMenu::colorActivated); /// Listen to changes in the configuration files NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); d->rebuildMenu(); } ColorLabelContextMenu::~ColorLabelContextMenu() { delete d; } KActionMenu *ColorLabelContextMenu::menuAction() { return d->menu; } void ColorLabelContextMenu::setEnabled(bool enabled) { d->menu->setEnabled(enabled); } void ColorLabelContextMenu::notificationEvent(int eventId) { if (eventId == NotificationHub::EventConfigurationChanged) d->rebuildMenu(); } void ColorLabelContextMenu::colorActivated(const QString &colorString) { /// User activated some color from the menu, /// so apply this color code to the currently /// selected item in the tree view SortFilterFileModel *sfbfm = qobject_cast<SortFilterFileModel *>(d->fileView->model()); Q_ASSERT_X(sfbfm != nullptr, "ColorLabelContextMenu::colorActivated(const QString &colorString)", "SortFilterFileModel *sfbfm is NULL"); FileModel *model = sfbfm->fileSourceModel(); Q_ASSERT_X(model != nullptr, "ColorLabelContextMenu::colorActivated(const QString &colorString)", "FileModel *model is NULL"); /// Apply color change to all selected rows const QModelIndexList list = d->fileView->selectionModel()->selectedIndexes(); for (const QModelIndex &index : list) { const QModelIndex mappedIndex = sfbfm->mapToSource(index); /// Selection may span over multiple columns; /// to avoid duplicate assignments, consider only column 1 if (mappedIndex.column() == 1) { const int row = mappedIndex.row(); QSharedPointer<Entry> entry = model->element(row).dynamicCast<Entry>(); if (!entry.isNull()) { /// Clear old color entry bool modifying = entry->remove(Entry::ftColor) > 0; if (colorString != QStringLiteral("#000000")) { ///< black is a special color that means "no color" /// Only if valid color was selected, set this color Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(colorString))); entry->insert(Entry::ftColor, v); modifying = true; } if (modifying) model->elementChanged(row); } } } } #include "settingscolorlabelwidget.moc" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingscolorlabelwidget.h����������������������������������������0000664�0000000�0000000�00000005056�13313000262�0024274�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_H #define KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" #include "notificationhub.h" class QSignalMapper; class KActionMenu; class FileView; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsColorLabelWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsColorLabelWidget(QWidget *parent); ~SettingsColorLabelWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private slots: void addColor(); void removeColor(); void updateRemoveButtonStatus(); private: class Private; Private *d; }; /** @author Thomas Fischer */ class KBIBTEXGUI_EXPORT ColorLabelContextMenu : public QObject, private NotificationListener { Q_OBJECT public: explicit ColorLabelContextMenu(FileView *widget); ~ColorLabelContextMenu() override; KActionMenu *menuAction(); void setEnabled(bool); void notificationEvent(int eventId) override; private slots: void colorActivated(const QString &colorString); private: class Private; Private *const d; }; #endif // KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingscolorlabelwidget_p.h��������������������������������������0000664�0000000�0000000�00000005123�13313000262�0024606�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_P_H #define KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_P_H #include <QAbstractItemModel> #include <QColor> #include <KSharedConfig> /** * This model maintains a list of label-color pairs. * @author Thomas Fischer */ class ColorLabelSettingsModel : public QAbstractItemModel { Q_OBJECT public: explicit ColorLabelSettingsModel(QObject *parent); int rowCount(const QModelIndex &parent) const override; int columnCount(const QModelIndex &parent) const override; QModelIndex index(int row, int column, const QModelIndex &parent) const override; QModelIndex parent(const QModelIndex &) const override; QVariant data(const QModelIndex &index, int role) const override; bool setData(const QModelIndex &index, const QVariant &value, int role) override; Qt::ItemFlags flags(const QModelIndex &index) const override; QVariant headerData(int section, Qt::Orientation orientation, int role) const override; void loadState(); void saveState(); void resetToDefaults(); void addColorLabel(const QColor &color, const QString &label); void removeColorLabel(int row); signals: void modified(); private: struct ColorLabelPair { QColor color; QString label; }; QList<ColorLabelPair> colorLabelPairs; KSharedConfigPtr config; }; #endif // KBIBTEX_GUI_SETTINGSCOLORLABELWIDGET_P_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsfileexporterpdfpswidget.cpp�������������������������������0000664�0000000�0000000�00000016545�13313000262�0026263�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsfileexporterpdfpswidget.h" #include <QFormLayout> #include <KLineEdit> #include <KSharedConfig> #include <KConfigGroup> #include <KComboBox> #include <KLocalizedString> #include "guihelper.h" #include "fileexportertoolchain.h" class SettingsFileExporterPDFPSWidget::SettingsFileExporterPDFPSWidgetPrivate { private: SettingsFileExporterPDFPSWidget *p; KComboBox *comboBoxPaperSize; QMap<QString, QString> paperSizeLabelToName; KComboBox *comboBoxBabelLanguage; KComboBox *comboBoxBibliographyStyle; KSharedConfigPtr config; const QString configGroupName, configGroupNameGeneral ; public: SettingsFileExporterPDFPSWidgetPrivate(SettingsFileExporterPDFPSWidget *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("FileExporterPDFPS")), configGroupNameGeneral(QStringLiteral("General")) { paperSizeLabelToName.insert(i18n("A4"), QStringLiteral("a4")); paperSizeLabelToName.insert(i18n("Letter"), QStringLiteral("letter")); paperSizeLabelToName.insert(i18n("Legal"), QStringLiteral("legal")); setupGUI(); } void loadState() { KConfigGroup configGroupGeneral(config, configGroupNameGeneral); const QString paperSizeName = configGroupGeneral.readEntry(FileExporter::keyPaperSize, FileExporter::defaultPaperSize); int row = GUIHelper::selectValue(comboBoxPaperSize->model(), paperSizeLabelToName.key(paperSizeName)); comboBoxPaperSize->setCurrentIndex(row); KConfigGroup configGroup(config, configGroupName); QString babelLanguage = configGroup.readEntry(FileExporterToolchain::keyBabelLanguage, FileExporterToolchain::defaultBabelLanguage); row = GUIHelper::selectValue(comboBoxBabelLanguage->model(), babelLanguage); comboBoxBabelLanguage->setCurrentIndex(row); QString bibliographyStyle = configGroup.readEntry(FileExporterToolchain::keyBibliographyStyle, FileExporterToolchain::defaultBibliographyStyle); row = GUIHelper::selectValue(comboBoxBibliographyStyle->model(), bibliographyStyle); comboBoxBibliographyStyle->setCurrentIndex(row); } void saveState() { KConfigGroup configGroupGeneral(config, configGroupNameGeneral); const QString paperSizeName = paperSizeLabelToName.value(comboBoxPaperSize->currentText(), FileExporter::defaultPaperSize); configGroupGeneral.writeEntry(FileExporter::keyPaperSize, paperSizeName); KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(FileExporterToolchain::keyBabelLanguage, comboBoxBabelLanguage->lineEdit()->text()); configGroup.writeEntry(FileExporterToolchain::keyBibliographyStyle, comboBoxBibliographyStyle->lineEdit()->text()); config->sync(); } void resetToDefaults() { int row = GUIHelper::selectValue(comboBoxPaperSize->model(), paperSizeLabelToName[FileExporter::defaultPaperSize]); comboBoxPaperSize->setCurrentIndex(row); row = GUIHelper::selectValue(comboBoxBabelLanguage->model(), FileExporterToolchain::defaultBabelLanguage); comboBoxBabelLanguage->setCurrentIndex(row); row = GUIHelper::selectValue(comboBoxBibliographyStyle->model(), FileExporterToolchain::defaultBibliographyStyle); comboBoxBibliographyStyle->setCurrentIndex(row); } void setupGUI() { QFormLayout *layout = new QFormLayout(p); comboBoxPaperSize = new KComboBox(false, p); comboBoxPaperSize->setObjectName(QStringLiteral("comboBoxPaperSize")); layout->addRow(i18n("Paper Size:"), comboBoxPaperSize); QStringList paperSizeLabelToNameKeys = paperSizeLabelToName.keys(); paperSizeLabelToNameKeys.sort(); for (const QString &labelText : const_cast<const QStringList &>(paperSizeLabelToNameKeys)) { comboBoxPaperSize->addItem(labelText, paperSizeLabelToName[labelText]); } connect(comboBoxPaperSize, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsAbstractWidget::changed); comboBoxBabelLanguage = new KComboBox(true, p); comboBoxBabelLanguage->setObjectName(QStringLiteral("comboBoxBabelLanguage")); layout->addRow(i18n("Language for 'babel':"), comboBoxBabelLanguage); comboBoxBabelLanguage->addItem(QStringLiteral("english")); comboBoxBabelLanguage->addItem(QStringLiteral("ngerman")); comboBoxBabelLanguage->addItem(QStringLiteral("swedish")); connect(comboBoxBabelLanguage->lineEdit(), &QLineEdit::textChanged, p, &SettingsFileExporterPDFPSWidget::changed); comboBoxBibliographyStyle = new KComboBox(true, p); comboBoxBibliographyStyle->setObjectName(QStringLiteral("comboBoxBibliographyStyle")); layout->addRow(i18n("Bibliography style:"), comboBoxBibliographyStyle); static const QStringList styles = QStringList() << QString(QStringLiteral("abbrv")) << QString(QStringLiteral("alpha")) << QString(QStringLiteral("plain")) << QString(QStringLiteral("agsm")) << QString(QStringLiteral("dcu")) << QString(QStringLiteral("jmr")) << QString(QStringLiteral("jphysicsB")) << QString(QStringLiteral("kluwer")) << QString(QStringLiteral("nederlands")); for (const QString &style : styles) { comboBoxBibliographyStyle->addItem(style); } connect(comboBoxBibliographyStyle->lineEdit(), &QLineEdit::textChanged, p, &SettingsFileExporterPDFPSWidget::changed); } }; SettingsFileExporterPDFPSWidget::SettingsFileExporterPDFPSWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsFileExporterPDFPSWidgetPrivate(this)) { d->loadState(); } SettingsFileExporterPDFPSWidget::~SettingsFileExporterPDFPSWidget() { delete d; } QString SettingsFileExporterPDFPSWidget::label() const { return i18n("PDF & Postscript"); } QIcon SettingsFileExporterPDFPSWidget::icon() const { return QIcon::fromTheme(QStringLiteral("application-pdf")); } void SettingsFileExporterPDFPSWidget::loadState() { d->loadState(); } void SettingsFileExporterPDFPSWidget::saveState() { d->saveState(); } void SettingsFileExporterPDFPSWidget::resetToDefaults() { d->resetToDefaults(); } �����������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsfileexporterpdfpswidget.h���������������������������������0000664�0000000�0000000�00000004001�13313000262�0025710�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSFILEEXPORTERPDFPSWIDGET_H #define KBIBTEX_GUI_SETTINGSFILEEXPORTERPDFPSWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsFileExporterPDFPSWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsFileExporterPDFPSWidget(QWidget *parent); ~SettingsFileExporterPDFPSWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private: class SettingsFileExporterPDFPSWidgetPrivate; SettingsFileExporterPDFPSWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSFILEEXPORTERPDFPSWIDGET_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsfileexporterwidget.cpp������������������������������������0000664�0000000�0000000�00000024422�13313000262�0025217�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsfileexporterwidget.h" #include <QFormLayout> #include <QCheckBox> #include <QSpinBox> #include <QPushButton> #include <qplatformdefs.h> #include <KLocalizedString> #include <KSharedConfig> #include <KConfigGroup> #include <KComboBox> #include <KLineEdit> #include <KUrlRequester> #include "guihelper.h" #include "italictextitemmodel.h" #include "fileexporter.h" #include "clipboard.h" #include "preferences.h" #include "lyx.h" class SettingsFileExporterWidget::SettingsFileExporterWidgetPrivate { private: SettingsFileExporterWidget *p; KComboBox *comboBoxCopyReferenceCmd; static const QString citeCmdToLabel; KSharedConfigPtr config; public: #ifdef QT_LSTAT QCheckBox *checkboxUseAutomaticLyXPipeDetection; #endif // QT_LSTAT KComboBox *comboBoxBackupScope; QSpinBox *spinboxNumberOfBackups; KUrlRequester *lineeditLyXPipePath; #ifdef QT_LSTAT QString lastUserInputLyXPipePath; #endif // QT_LSTAT SettingsFileExporterWidgetPrivate(SettingsFileExporterWidget *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { setupGUI(); } void loadState() { KConfigGroup configGroup(config, Preferences::groupGeneral); const QString copyReferenceCommand = configGroup.readEntry(Clipboard::keyCopyReferenceCommand, Clipboard::defaultCopyReferenceCommand); int row = GUIHelper::selectValue(comboBoxCopyReferenceCmd->model(), copyReferenceCommand.isEmpty() ? QString() : copyReferenceCommand, ItalicTextItemModel::IdentifierRole); comboBoxCopyReferenceCmd->setCurrentIndex(row); const int index = qMax(0, comboBoxBackupScope->findData(configGroup.readEntry(Preferences::keyBackupScope, (int)Preferences::defaultBackupScope))); comboBoxBackupScope->setCurrentIndex(index); spinboxNumberOfBackups->setValue(qMax(0, qMin(spinboxNumberOfBackups->maximum(), configGroup.readEntry(Preferences::keyNumberOfBackups, Preferences::defaultNumberOfBackups)))); KConfigGroup configGroupLyX(config, LyX::configGroupName); #ifndef QT_LSTAT lineeditLyXPipePath->setText(configGroupLyX.readEntry(LyX::keyLyXPipePath, LyX::defaultLyXPipePath)); #else // QT_LSTAT checkboxUseAutomaticLyXPipeDetection->setChecked(configGroupLyX.readEntry(LyX::keyUseAutomaticLyXPipeDetection, LyX::defaultUseAutomaticLyXPipeDetection)); lastUserInputLyXPipePath = configGroupLyX.readEntry(LyX::keyLyXPipePath, LyX::defaultLyXPipePath); p->automaticLyXDetectionToggled(checkboxUseAutomaticLyXPipeDetection->isChecked()); #endif // QT_LSTAT } void saveState() { KConfigGroup configGroup(config, Preferences::groupGeneral); const QString copyReferenceCommand = comboBoxCopyReferenceCmd->itemData(comboBoxCopyReferenceCmd->currentIndex(), ItalicTextItemModel::IdentifierRole).toString(); configGroup.writeEntry(Clipboard::keyCopyReferenceCommand, copyReferenceCommand); configGroup.writeEntry(Preferences::keyBackupScope, comboBoxBackupScope->itemData(comboBoxBackupScope->currentIndex()).toInt()); configGroup.writeEntry(Preferences::keyNumberOfBackups, spinboxNumberOfBackups->value()); KConfigGroup configGroupLyX(config, LyX::configGroupName); #ifndef QT_LSTAT configGroupLyX.writeEntry(LyX::keyLyXPipePath, lineeditLyXPipePath->text()); #else // QT_LSTAT configGroupLyX.writeEntry(LyX::keyUseAutomaticLyXPipeDetection, checkboxUseAutomaticLyXPipeDetection->isChecked()); configGroupLyX.writeEntry(LyX::keyLyXPipePath, checkboxUseAutomaticLyXPipeDetection->isChecked() ? lastUserInputLyXPipePath : lineeditLyXPipePath->text()); #endif // QT_LSTAT config->sync(); } void resetToDefaults() { int row = GUIHelper::selectValue(comboBoxCopyReferenceCmd->model(), QString(), Qt::UserRole); comboBoxCopyReferenceCmd->setCurrentIndex(row); const int index = qMax(0, comboBoxBackupScope->findData(Preferences::defaultBackupScope)); comboBoxBackupScope->setCurrentIndex(index); spinboxNumberOfBackups->setValue(qMax(0, qMin(spinboxNumberOfBackups->maximum(), Preferences::defaultNumberOfBackups))); #ifndef QT_LSTAT const QString pipe = LyX::defaultLyXPipePath; #else // QT_LSTAT checkboxUseAutomaticLyXPipeDetection->setChecked(LyX::defaultUseAutomaticLyXPipeDetection); QString pipe = LyX::guessLyXPipeLocation(); if (pipe.isEmpty()) pipe = LyX::defaultLyXPipePath; #endif // QT_LSTAT lineeditLyXPipePath->setText(pipe); } void setupGUI() { QFormLayout *layout = new QFormLayout(p); comboBoxCopyReferenceCmd = new KComboBox(false, p); comboBoxCopyReferenceCmd->setObjectName(QStringLiteral("comboBoxCopyReferenceCmd")); layout->addRow(i18n("Command for 'Copy Reference':"), comboBoxCopyReferenceCmd); ItalicTextItemModel *itim = new ItalicTextItemModel(); itim->addItem(i18n("No command"), QString()); const QStringList citeCommands = QStringList() << QStringLiteral("cite") << QStringLiteral("citealt") << QStringLiteral("citeauthor") << QStringLiteral("citeauthor*") << QStringLiteral("citeyear") << QStringLiteral("citeyearpar") << QStringLiteral("shortcite") << QStringLiteral("citet") << QStringLiteral("citet*") << QStringLiteral("citep") << QStringLiteral("citep*"); // TODO more for (const QString &citeCommand : citeCommands) { itim->addItem(citeCmdToLabel.arg(citeCommand), citeCommand); } comboBoxCopyReferenceCmd->setModel(itim); connect(comboBoxCopyReferenceCmd, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsFileExporterWidget::changed); #ifdef QT_LSTAT checkboxUseAutomaticLyXPipeDetection = new QCheckBox(QStringLiteral(""), p); layout->addRow(i18n("Detect LyX pipe automatically:"), checkboxUseAutomaticLyXPipeDetection); connect(checkboxUseAutomaticLyXPipeDetection, &QCheckBox::toggled, p, &SettingsFileExporterWidget::changed); connect(checkboxUseAutomaticLyXPipeDetection, &QCheckBox::toggled, p, &SettingsFileExporterWidget::automaticLyXDetectionToggled); #endif // QT_LSTAT lineeditLyXPipePath = new KUrlRequester(p); layout->addRow(i18n("Manually specified LyX pipe:"), lineeditLyXPipePath); connect(lineeditLyXPipePath->lineEdit(), &KLineEdit::textEdited, p, &SettingsFileExporterWidget::changed); lineeditLyXPipePath->setMinimumWidth(lineeditLyXPipePath->fontMetrics().width(QChar('W')) * 20); lineeditLyXPipePath->setFilter(QStringLiteral("inode/fifo")); lineeditLyXPipePath->setMode(KFile::ExistingOnly | KFile::LocalOnly); comboBoxBackupScope = new KComboBox(false, p); comboBoxBackupScope->addItem(i18n("No backups"), Preferences::NoBackup); comboBoxBackupScope->addItem(i18n("Local files only"), Preferences::LocalOnly); comboBoxBackupScope->addItem(i18n("Both local and remote files"), Preferences::BothLocalAndRemote); layout->addRow(i18n("Backups when saving:"), comboBoxBackupScope); connect(comboBoxBackupScope, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsFileExporterWidget::changed); spinboxNumberOfBackups = new QSpinBox(p); spinboxNumberOfBackups->setMinimum(1); spinboxNumberOfBackups->setMaximum(16); layout->addRow(i18n("Number of Backups:"), spinboxNumberOfBackups); connect(spinboxNumberOfBackups, static_cast<void(QSpinBox::*)(int)>(&QSpinBox::valueChanged), p, &SettingsFileExporterWidget::changed); connect(comboBoxBackupScope, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsFileExporterWidget::updateGUI); } }; const QString SettingsFileExporterWidget::SettingsFileExporterWidgetPrivate::citeCmdToLabel = QStringLiteral("\\%1{") + QChar(0x2026) + QChar('}'); SettingsFileExporterWidget::SettingsFileExporterWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsFileExporterWidgetPrivate(this)) { d->loadState(); } SettingsFileExporterWidget::~SettingsFileExporterWidget() { delete d; } QString SettingsFileExporterWidget::label() const { return i18n("Saving and Exporting"); } QIcon SettingsFileExporterWidget::icon() const { return QIcon::fromTheme(QStringLiteral("document-save")); } void SettingsFileExporterWidget::loadState() { d->loadState(); } void SettingsFileExporterWidget::saveState() { d->saveState(); } void SettingsFileExporterWidget::resetToDefaults() { d->resetToDefaults(); } #ifdef QT_LSTAT void SettingsFileExporterWidget::automaticLyXDetectionToggled(bool isChecked) { d->lineeditLyXPipePath->setEnabled(!isChecked); if (isChecked) { d->lastUserInputLyXPipePath = d->lineeditLyXPipePath->text(); d->lineeditLyXPipePath->setText(LyX::guessLyXPipeLocation()); } else d->lineeditLyXPipePath->setText(d->lastUserInputLyXPipePath); } #endif // QT_LSTAT void SettingsFileExporterWidget::updateGUI() { d->spinboxNumberOfBackups->setEnabled(d->comboBoxBackupScope->itemData(d->comboBoxBackupScope->currentIndex()).toInt() != (int)Preferences::NoBackup); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsfileexporterwidget.h��������������������������������������0000664�0000000�0000000�00000004154�13313000262�0024664�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSFILEEXPORTERWIDGET_H #define KBIBTEX_GUI_SETTINGSFILEEXPORTERWIDGET_H #include <kbibtexgui_export.h> #include <qplatformdefs.h> #include "settingsabstractwidget.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsFileExporterWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsFileExporterWidget(QWidget *parent); ~SettingsFileExporterWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; #ifdef QT_LSTAT void automaticLyXDetectionToggled(bool); #endif // QT_LSTAT private slots: void updateGUI(); private: class SettingsFileExporterWidgetPrivate; SettingsFileExporterWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSFILEEXPORTERWIDGET_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsgeneralwidget.cpp�����������������������������������������0000664�0000000�0000000�00000010653�13313000262�0024125�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsgeneralwidget.h" #include <QFormLayout> #include <KLocalizedString> #include <KSharedConfig> #include <KConfigGroup> #include <KComboBox> #include "guihelper.h" #include "value.h" #include "preferences.h" class SettingsGeneralWidget::SettingsGeneralWidgetPrivate { private: SettingsGeneralWidget *p; KComboBox *comboBoxPersonNameFormatting; const Person dummyPerson; QString restartRequiredMsg; KSharedConfigPtr config; const QString configGroupName; public: SettingsGeneralWidgetPrivate(SettingsGeneralWidget *parent) : p(parent), dummyPerson(Person(i18n("John"), i18n("Doe"), i18n("Jr."))), restartRequiredMsg(i18n("Changing this option requires a restart to take effect.")), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("General")) { setupGUI(); } void loadState() { KConfigGroup configGroup(config, configGroupName); QString personNameFormatting = configGroup.readEntry(Preferences::keyPersonNameFormatting, Preferences::defaultPersonNameFormatting); int row = GUIHelper::selectValue(comboBoxPersonNameFormatting->model(), Person::transcribePersonName(&dummyPerson, personNameFormatting)); comboBoxPersonNameFormatting->setCurrentIndex(row); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(Preferences::keyPersonNameFormatting, comboBoxPersonNameFormatting->itemData(comboBoxPersonNameFormatting->currentIndex())); config->sync(); } void resetToDefaults() { int row = GUIHelper::selectValue(comboBoxPersonNameFormatting->model(), Person::transcribePersonName(&dummyPerson, Preferences::defaultPersonNameFormatting)); comboBoxPersonNameFormatting->setCurrentIndex(row); } void setupGUI() { QFormLayout *layout = new QFormLayout(p); comboBoxPersonNameFormatting = new KComboBox(false, p); layout->addRow(i18n("Person Names Formatting:"), comboBoxPersonNameFormatting); const QStringList formattingOptions = QStringList() << Preferences::personNameFormatFirstLast << Preferences::personNameFormatLastFirst; for (const QString &formattingOption : formattingOptions) { comboBoxPersonNameFormatting->addItem(Person::transcribePersonName(&dummyPerson, formattingOption), formattingOption); } comboBoxPersonNameFormatting->setToolTip(restartRequiredMsg); connect(comboBoxPersonNameFormatting, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsGeneralWidget::changed); } }; SettingsGeneralWidget::SettingsGeneralWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsGeneralWidgetPrivate(this)) { d->loadState(); } SettingsGeneralWidget::~SettingsGeneralWidget() { delete d; } QString SettingsGeneralWidget::label() const { return i18n("General"); } QIcon SettingsGeneralWidget::icon() const { return QIcon::fromTheme(QStringLiteral("kbibtex")); } void SettingsGeneralWidget::loadState() { d->loadState(); } void SettingsGeneralWidget::saveState() { d->saveState(); } void SettingsGeneralWidget::resetToDefaults() { d->resetToDefaults(); } �������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsgeneralwidget.h�������������������������������������������0000664�0000000�0000000�00000003662�13313000262�0023574�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSGENERALWIDGET_H #define KBIBTEX_GUI_SETTINGSGENERALWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsGeneralWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsGeneralWidget(QWidget *parent); ~SettingsGeneralWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private: class SettingsGeneralWidgetPrivate; SettingsGeneralWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSGENERALWIDGET_H ������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsglobalkeywordswidget.cpp����������������������������������0000664�0000000�0000000�00000013604�13313000262�0025537�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsglobalkeywordswidget.h" #include <QLayout> #include <QStringListModel> #include <QListView> #include <QPushButton> #include <KSharedConfig> #include <KConfigGroup> #include <KLocalizedString> #include <fieldlistedit.h> class DisallowEmptyStringListModel : public QStringListModel { Q_OBJECT public: explicit DisallowEmptyStringListModel(QObject *parent) : QStringListModel(parent) { /// nothing } bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override { if (role == Qt::EditRole && value.canConvert<QString>() && value.toString().isEmpty()) return false; /// do not accept values that are empty else return QStringListModel::setData(index, value, role); } }; class SettingsGlobalKeywordsWidget::SettingsGlobalKeywordsWidgetPrivate { private: SettingsGlobalKeywordsWidget *p; KSharedConfigPtr config; const QString configGroupName; public: QListView *listViewKeywords; DisallowEmptyStringListModel stringListModel; QPushButton *buttonRemove; static int keywordCounter; SettingsGlobalKeywordsWidgetPrivate(SettingsGlobalKeywordsWidget *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("Global Keywords")), stringListModel(parent) { setupGUI(); } void loadState() { KConfigGroup configGroup(config, configGroupName); QStringList keywordList = configGroup.readEntry(KeywordListEdit::keyGlobalKeywordList, QStringList()); stringListModel.setStringList(keywordList); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(KeywordListEdit::keyGlobalKeywordList, stringListModel.stringList()); config->sync(); } void resetToDefaults() { /// ignored, you don't want to delete all your keywords ... } void setupGUI() { QGridLayout *layout = new QGridLayout(p); layout->setMargin(0); listViewKeywords = new QListView(p); layout->addWidget(listViewKeywords, 0, 0, 3, 1); listViewKeywords->setModel(&stringListModel); connect(listViewKeywords, &QListView::pressed, p, &SettingsGlobalKeywordsWidget::enableRemoveButton); QPushButton *buttonAdd = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add"), p); layout->addWidget(buttonAdd, 0, 1, 1, 1); connect(buttonAdd, &QPushButton::clicked, p, &SettingsGlobalKeywordsWidget::addKeyword); buttonRemove = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), i18n("Remove"), p); layout->addWidget(buttonRemove, 1, 1, 1, 1); buttonRemove->setEnabled(false); connect(buttonRemove, &QPushButton::clicked, p, &SettingsGlobalKeywordsWidget::removeKeyword); } }; int SettingsGlobalKeywordsWidget::SettingsGlobalKeywordsWidgetPrivate::keywordCounter = 0; SettingsGlobalKeywordsWidget::SettingsGlobalKeywordsWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsGlobalKeywordsWidgetPrivate(this)) { d->loadState(); } SettingsGlobalKeywordsWidget::~SettingsGlobalKeywordsWidget() { delete d; } QString SettingsGlobalKeywordsWidget::label() const { return i18n("Keywords"); } QIcon SettingsGlobalKeywordsWidget::icon() const { return QIcon::fromTheme(QStringLiteral("checkbox")); // TODO find better icon } void SettingsGlobalKeywordsWidget::loadState() { d->loadState(); } void SettingsGlobalKeywordsWidget::saveState() { d->saveState(); } void SettingsGlobalKeywordsWidget::resetToDefaults() { d->resetToDefaults(); } void SettingsGlobalKeywordsWidget::addKeyword() { if (d->stringListModel.insertRow(d->stringListModel.rowCount(), QModelIndex())) { QModelIndex index = d->stringListModel.index(d->stringListModel.rowCount() - 1, 0); d->stringListModel.setData(index, i18n("NewKeyword%1", d->keywordCounter++)); d->listViewKeywords->setCurrentIndex(index); d->listViewKeywords->edit(index); d->buttonRemove->setEnabled(true); } } void SettingsGlobalKeywordsWidget::removeKeyword() { QModelIndex currIndex = d->listViewKeywords->currentIndex(); if (currIndex == QModelIndex()) currIndex = d->listViewKeywords->selectionModel()->selectedIndexes().first(); d->stringListModel.removeRow(currIndex.row()); d->buttonRemove->setEnabled(d->listViewKeywords->currentIndex() != QModelIndex()); } void SettingsGlobalKeywordsWidget::enableRemoveButton() { d->buttonRemove->setEnabled(d->listViewKeywords->currentIndex() != QModelIndex()); } #include "settingsglobalkeywordswidget.moc" ����������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsglobalkeywordswidget.h������������������������������������0000664�0000000�0000000�00000004126�13313000262�0025203�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSGLOBALKEYWORDSWIDGET_H #define KBIBTEX_GUI_SETTINGSGLOBALKEYWORDSWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" class File; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT SettingsGlobalKeywordsWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsGlobalKeywordsWidget(QWidget *parent); ~SettingsGlobalKeywordsWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private slots: void addKeyword(); void removeKeyword(); void enableRemoveButton(); private: class SettingsGlobalKeywordsWidgetPrivate; SettingsGlobalKeywordsWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSGLOBALKEYWORDSWIDGET_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsidsuggestionseditor.cpp�����������������������������������0000664�0000000�0000000�00000103704�13313000262�0025402�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsidsuggestionseditor.h" #include <QGridLayout> #include <QFormLayout> #include <QScrollArea> #include <QLabel> #include <QSpinBox> #include <QCheckBox> #include <QSignalMapper> #include <QMenu> #include <QPointer> #include <QPushButton> #include <QAction> #include <QDialogButtonBox> #include <KLineEdit> #include <KComboBox> #include <KLocalizedString> #include <KIconLoader> #include "rangewidget.h" TokenWidget::TokenWidget(QWidget *parent) : QGroupBox(parent) { gridLayout = new QGridLayout(this); formLayout = new QFormLayout(); gridLayout->addLayout(formLayout, 0, 0, 4, 1); gridLayout->setColumnStretch(0, 100); } void TokenWidget::addButtons(QPushButton *buttonUp, QPushButton *buttonDown, QPushButton *buttonRemove) { gridLayout->setColumnMinimumWidth(1, 32); gridLayout->setColumnStretch(1, 1); gridLayout->setColumnStretch(2, 1); gridLayout->addWidget(buttonUp, 0, 2, 1, 1); buttonUp->setParent(this); gridLayout->addWidget(buttonDown, 1, 2, 1, 1); buttonDown->setParent(this); gridLayout->addWidget(buttonRemove, 2, 2, 1, 1); buttonRemove->setParent(this); } AuthorWidget::AuthorWidget(const struct IdSuggestions::IdSuggestionTokenInfo &info, IdSuggestionsEditWidget *isew, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Authors")); QBoxLayout *boxLayout = new QVBoxLayout(); boxLayout->setMargin(0); formLayout->addRow(i18n("Author Range:"), boxLayout); static const QStringList authorRange = QStringList() << i18n("First author") << i18n("Second author") << i18n("Third author") << i18n("Fourth author") << i18n("Fifth author") << i18n("Sixth author") << i18n("Seventh author") << i18n("Eighth author") << i18n("Ninth author") << i18n("Tenth author") << i18n("|Last author"); rangeWidgetAuthor = new RangeWidget(authorRange, this); boxLayout->addWidget(rangeWidgetAuthor); rangeWidgetAuthor->setLowerValue(info.startWord); rangeWidgetAuthor->setUpperValue(qMin(authorRange.size() - 1, info.endWord)); checkBoxLastAuthor = new QCheckBox(i18n("... and last author"), this); boxLayout->addWidget(checkBoxLastAuthor); labelAuthorRange = new QLabel(this); boxLayout->addWidget(labelAuthorRange); const int maxWidth = qMax(labelAuthorRange->fontMetrics().width(i18n("From first author to author %1 and last author", 88)), labelAuthorRange->fontMetrics().width(i18n("From author %1 to author %2 and last author", 88, 88))); labelAuthorRange->setMinimumWidth(maxWidth); comboBoxChangeCase = new KComboBox(false, this); comboBoxChangeCase->addItem(i18n("No change"), IdSuggestions::ccNoChange); comboBoxChangeCase->addItem(i18n("To upper case"), IdSuggestions::ccToUpper); comboBoxChangeCase->addItem(i18n("To lower case"), IdSuggestions::ccToLower); comboBoxChangeCase->addItem(i18n("To CamelCase"), IdSuggestions::ccToCamelCase); formLayout->addRow(i18n("Change casing:"), comboBoxChangeCase); comboBoxChangeCase->setCurrentIndex((int)info.caseChange); /// enum has numbers assigned to cases and combo box has same indices lineEditTextInBetween = new KLineEdit(this); formLayout->addRow(i18n("Text in between:"), lineEditTextInBetween); lineEditTextInBetween->setText(info.inBetween); spinBoxLength = new QSpinBox(this); formLayout->addRow(i18n("Only first characters:"), spinBoxLength); spinBoxLength->setSpecialValueText(i18n("No limitation")); spinBoxLength->setMinimum(0); spinBoxLength->setMaximum(9); spinBoxLength->setValue(info.len == 0 || info.len > 9 ? 0 : info.len); connect(rangeWidgetAuthor, &RangeWidget::lowerValueChanged, isew, &IdSuggestionsEditWidget::updatePreview); connect(rangeWidgetAuthor, &RangeWidget::upperValueChanged, isew, &IdSuggestionsEditWidget::updatePreview); connect(rangeWidgetAuthor, &RangeWidget::lowerValueChanged, this, &AuthorWidget::updateRangeLabel); connect(rangeWidgetAuthor, &RangeWidget::upperValueChanged, this, &AuthorWidget::updateRangeLabel); connect(checkBoxLastAuthor, &QCheckBox::toggled, isew, &IdSuggestionsEditWidget::updatePreview); connect(checkBoxLastAuthor, &QCheckBox::toggled, this, &AuthorWidget::updateRangeLabel); connect(comboBoxChangeCase, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), isew, &IdSuggestionsEditWidget::updatePreview); connect(lineEditTextInBetween, &KLineEdit::textEdited, isew, &IdSuggestionsEditWidget::updatePreview); connect(spinBoxLength, static_cast<void(QSpinBox::*)(int)>(&QSpinBox::valueChanged), isew, &IdSuggestionsEditWidget::updatePreview); updateRangeLabel(); } QString AuthorWidget::toString() const { QString result = QStringLiteral("A"); if (spinBoxLength->value() > 0) result.append(QString::number(spinBoxLength->value())); IdSuggestions::CaseChange caseChange = (IdSuggestions::CaseChange)comboBoxChangeCase->currentIndex(); if (caseChange == IdSuggestions::ccToLower) result.append(QStringLiteral("l")); else if (caseChange == IdSuggestions::ccToUpper) result.append(QStringLiteral("u")); else if (caseChange == IdSuggestions::ccToCamelCase) result.append(QStringLiteral("c")); if (rangeWidgetAuthor->lowerValue() > 0 || rangeWidgetAuthor->upperValue() < rangeWidgetAuthor->maximum()) result.append(QString(QStringLiteral("w%1%2")).arg(rangeWidgetAuthor->lowerValue()).arg(rangeWidgetAuthor->upperValue() < rangeWidgetAuthor->maximum() ? QString::number(rangeWidgetAuthor->upperValue()) : QStringLiteral("I"))); if (checkBoxLastAuthor->isChecked()) result.append(QStringLiteral("L")); const QString text = lineEditTextInBetween->text(); if (!text.isEmpty()) result.append(QStringLiteral("\"")).append(text); return result; } void AuthorWidget::updateRangeLabel() { const int lower = rangeWidgetAuthor->lowerValue(); const int upper = rangeWidgetAuthor->upperValue(); const int max = rangeWidgetAuthor->maximum(); labelAuthorRange->setText(IdSuggestions::formatAuthorRange(lower, upper == max ? 0x00ffffff : upper, checkBoxLastAuthor->isChecked())); } class YearWidget : public TokenWidget { Q_OBJECT private: KComboBox *comboBoxDigits; public: YearWidget(int digits, IdSuggestionsEditWidget *isew, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Year")); comboBoxDigits = new KComboBox(false, this); comboBoxDigits->addItem(i18n("2 digits"), 2); comboBoxDigits->addItem(i18n("4 digits"), 4); formLayout->addRow(i18n("Digits:"), comboBoxDigits); comboBoxDigits->setCurrentIndex(comboBoxDigits->findData(digits)); connect(comboBoxDigits, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), isew, &IdSuggestionsEditWidget::updatePreview); } QString toString() const override { const int year = comboBoxDigits->itemData(comboBoxDigits->currentIndex()).toInt(); QString result = year == 4 ? QStringLiteral("Y") : QStringLiteral("y"); return result; } }; class VolumeWidget : public TokenWidget { Q_OBJECT private: QLabel *labelCheckmark; public: VolumeWidget(IdSuggestionsEditWidget *, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Volume")); labelCheckmark = new QLabel(this); labelCheckmark->setPixmap(KIconLoader::global()->loadMimeTypeIcon(QStringLiteral("dialog-ok-apply"), KIconLoader::Small)); formLayout->addRow(i18n("Volume:"), labelCheckmark); } QString toString() const override { return QStringLiteral("v"); } }; class PageNumberWidget : public TokenWidget { Q_OBJECT private: QLabel *labelCheckmark; public: PageNumberWidget(IdSuggestionsEditWidget *, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Page Number")); labelCheckmark = new QLabel(this); labelCheckmark->setPixmap(KIconLoader::global()->loadMimeTypeIcon(QStringLiteral("dialog-ok-apply"), KIconLoader::Small)); formLayout->addRow(i18n("First page's number:"), labelCheckmark); } QString toString() const override { return QStringLiteral("p"); } }; TitleWidget::TitleWidget(const struct IdSuggestions::IdSuggestionTokenInfo &info, bool removeSmallWords, IdSuggestionsEditWidget *isew, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Title")); QBoxLayout *boxLayout = new QVBoxLayout(); boxLayout->setMargin(0); formLayout->addRow(i18n("Word Range:"), boxLayout); static const QStringList wordRange = QStringList() << i18n("First word") << i18n("Second word") << i18n("Third word") << i18n("Fourth word") << i18n("Fifth word") << i18n("Sixth word") << i18n("Seventh word") << i18n("Eighth word") << i18n("Ninth word") << i18n("Tenth word") << i18n("|Last word"); rangeWidgetAuthor = new RangeWidget(wordRange, this); boxLayout->addWidget(rangeWidgetAuthor); if (info.startWord > 0 || info.endWord < 0xffff) { rangeWidgetAuthor->setLowerValue(info.startWord); rangeWidgetAuthor->setUpperValue(qMin(rangeWidgetAuthor->maximum(), info.endWord)); } else { rangeWidgetAuthor->setLowerValue(0); rangeWidgetAuthor->setUpperValue(rangeWidgetAuthor->maximum()); } labelWordsRange = new QLabel(this); boxLayout->addWidget(labelWordsRange); const int a = qMax(labelWordsRange->fontMetrics().width(i18n("From first to last word")), labelWordsRange->fontMetrics().width(i18n("From word %1 to last word", 88))); const int b = qMax(labelWordsRange->fontMetrics().width(i18n("From first word to word %1", 88)), labelWordsRange->fontMetrics().width(i18n("From word %1 to word %2", 88, 88))); labelWordsRange->setMinimumWidth(qMax(a, b)); checkBoxRemoveSmallWords = new QCheckBox(i18n("Remove"), this); formLayout->addRow(i18n("Small words:"), checkBoxRemoveSmallWords); checkBoxRemoveSmallWords->setChecked(removeSmallWords); comboBoxChangeCase = new KComboBox(false, this); comboBoxChangeCase->addItem(i18n("No change"), IdSuggestions::ccNoChange); comboBoxChangeCase->addItem(i18n("To upper case"), IdSuggestions::ccToUpper); comboBoxChangeCase->addItem(i18n("To lower case"), IdSuggestions::ccToLower); comboBoxChangeCase->addItem(i18n("To CamelCase"), IdSuggestions::ccToCamelCase); formLayout->addRow(i18n("Change casing:"), comboBoxChangeCase); comboBoxChangeCase->setCurrentIndex((int)info.caseChange); /// enum has numbers assigned to cases and combo box has same indices lineEditTextInBetween = new KLineEdit(this); formLayout->addRow(i18n("Text in between:"), lineEditTextInBetween); lineEditTextInBetween->setText(info.inBetween); spinBoxLength = new QSpinBox(this); formLayout->addRow(i18n("Only first characters:"), spinBoxLength); spinBoxLength->setSpecialValueText(i18n("No limitation")); spinBoxLength->setMinimum(0); spinBoxLength->setMaximum(9); spinBoxLength->setValue(info.len == 0 || info.len > 9 ? 0 : info.len); connect(rangeWidgetAuthor, &RangeWidget::lowerValueChanged, isew, &IdSuggestionsEditWidget::updatePreview); connect(rangeWidgetAuthor, &RangeWidget::upperValueChanged, isew, &IdSuggestionsEditWidget::updatePreview); connect(rangeWidgetAuthor, &RangeWidget::lowerValueChanged, this, &TitleWidget::updateRangeLabel); connect(rangeWidgetAuthor, &RangeWidget::upperValueChanged, this, &TitleWidget::updateRangeLabel); connect(checkBoxRemoveSmallWords, &QCheckBox::toggled, isew, &IdSuggestionsEditWidget::updatePreview); connect(comboBoxChangeCase, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), isew, &IdSuggestionsEditWidget::updatePreview); connect(lineEditTextInBetween, &KLineEdit::textEdited, isew, &IdSuggestionsEditWidget::updatePreview); connect(spinBoxLength, static_cast<void(QSpinBox::*)(int)>(&QSpinBox::valueChanged), isew, &IdSuggestionsEditWidget::updatePreview); updateRangeLabel(); } QString TitleWidget::toString() const { QString result = checkBoxRemoveSmallWords->isChecked() ? QStringLiteral("T") : QStringLiteral("t"); if (spinBoxLength->value() > 0) result.append(QString::number(spinBoxLength->value())); IdSuggestions::CaseChange caseChange = (IdSuggestions::CaseChange)comboBoxChangeCase->currentIndex(); if (caseChange == IdSuggestions::ccToLower) result.append(QStringLiteral("l")); else if (caseChange == IdSuggestions::ccToUpper) result.append(QStringLiteral("u")); else if (caseChange == IdSuggestions::ccToCamelCase) result.append(QStringLiteral("c")); if (rangeWidgetAuthor->lowerValue() > 0 || rangeWidgetAuthor->upperValue() < rangeWidgetAuthor->maximum()) result.append(QString(QStringLiteral("w%1%2")).arg(rangeWidgetAuthor->lowerValue()).arg(rangeWidgetAuthor->upperValue() < rangeWidgetAuthor->maximum() ? QString::number(rangeWidgetAuthor->upperValue()) : QStringLiteral("I"))); const QString text = lineEditTextInBetween->text(); if (!text.isEmpty()) result.append(QStringLiteral("\"")).append(text); return result; } void TitleWidget::updateRangeLabel() { const int lower = rangeWidgetAuthor->lowerValue(); const int upper = rangeWidgetAuthor->upperValue(); const int max = rangeWidgetAuthor->maximum(); if (lower == 0 && upper == 0) labelWordsRange->setText(i18n("First word only")); else if (lower == 1 && upper == max) labelWordsRange->setText(i18n("All but first word")); else if (lower == 0 && upper == max) labelWordsRange->setText(i18n("From first to last word")); else if (lower > 0 && upper == max) labelWordsRange->setText(i18n("From word %1 to last word", lower + 1)); else if (lower == 0 && upper < max) labelWordsRange->setText(i18n("From first word to word %1", upper + 1)); else labelWordsRange->setText(i18n("From word %1 to word %2", lower + 1, upper + 1)); } /** * @author Thomas Fischer */ class JournalWidget : public TokenWidget { Q_OBJECT private: KComboBox *comboBoxChangeCase; QSpinBox *spinBoxLength; public: JournalWidget(const struct IdSuggestions::IdSuggestionTokenInfo &info, IdSuggestionsEditWidget *isew, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Journal")); QBoxLayout *boxLayout = new QVBoxLayout(); boxLayout->setMargin(0); comboBoxChangeCase = new KComboBox(false, this); comboBoxChangeCase->addItem(i18n("No change"), IdSuggestions::ccNoChange); comboBoxChangeCase->addItem(i18n("To upper case"), IdSuggestions::ccToUpper); comboBoxChangeCase->addItem(i18n("To lower case"), IdSuggestions::ccToLower); comboBoxChangeCase->addItem(i18n("To CamelCase"), IdSuggestions::ccToCamelCase); formLayout->addRow(i18n("Change casing:"), comboBoxChangeCase); comboBoxChangeCase->setCurrentIndex((int)info.caseChange); /// enum has numbers assigned to cases and combo box has same indices spinBoxLength = new QSpinBox(this); formLayout->addRow(i18n("Only first characters:"), spinBoxLength); spinBoxLength->setSpecialValueText(i18n("No limitation")); spinBoxLength->setMinimum(0); spinBoxLength->setMaximum(9); spinBoxLength->setValue(info.len == 0 || info.len > 9 ? 0 : info.len); connect(comboBoxChangeCase, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), isew, &IdSuggestionsEditWidget::updatePreview); connect(spinBoxLength, static_cast<void(QSpinBox::*)(int)>(&QSpinBox::valueChanged), isew, &IdSuggestionsEditWidget::updatePreview); } QString toString() const override { QString result = QStringLiteral("j"); if (spinBoxLength->value() > 0) result.append(QString::number(spinBoxLength->value())); IdSuggestions::CaseChange caseChange = (IdSuggestions::CaseChange)comboBoxChangeCase->currentIndex(); if (caseChange == IdSuggestions::ccToLower) result.append(QStringLiteral("l")); else if (caseChange == IdSuggestions::ccToUpper) result.append(QStringLiteral("u")); else if (caseChange == IdSuggestions::ccToCamelCase) result.append(QStringLiteral("c")); return result; } }; class TextWidget : public TokenWidget { Q_OBJECT private: KLineEdit *lineEditText; public: TextWidget(const QString &text, IdSuggestionsEditWidget *isew, QWidget *parent) : TokenWidget(parent) { setTitle(i18n("Text")); lineEditText = new KLineEdit(this); formLayout->addRow(i18n("Text:"), lineEditText); lineEditText->setText(text); connect(lineEditText, &KLineEdit::textEdited, isew, &IdSuggestionsEditWidget::updatePreview); } QString toString() const override { QString result = QStringLiteral("\"") + lineEditText->text(); return result; } }; class IdSuggestionsEditWidget::IdSuggestionsEditWidgetPrivate { private: IdSuggestionsEditWidget *p; public: enum TokenType {ttTitle, ttAuthor, ttYear, ttJournal, ttText, ttVolume, ttPageNumber}; QWidget *container; QBoxLayout *containerLayout; QList<TokenWidget *> widgetList; QLabel *labelPreview; QPushButton *buttonAddTokenAtTop, *buttonAddTokenAtBottom; const Entry *previewEntry; QSignalMapper *signalMapperRemove, *signalMapperMoveUp, *signalMapperMoveDown; QScrollArea *area; IdSuggestionsEditWidgetPrivate(const Entry *pe, IdSuggestionsEditWidget *parent) : p(parent), previewEntry(pe) { setupGUI(); } void setupGUI() { QGridLayout *layout = new QGridLayout(p); labelPreview = new QLabel(p); layout->addWidget(labelPreview, 0, 0, 1, 1); layout->setColumnStretch(0, 100); area = new QScrollArea(p); layout->addWidget(area, 1, 0, 1, 1); area->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); area->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn); container = new QWidget(area); area->setWidget(container); area->setWidgetResizable(true); containerLayout = new QVBoxLayout(container); area->setMinimumSize(384, 256); buttonAddTokenAtTop = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add at top"), container); containerLayout->addWidget(buttonAddTokenAtTop, 0); containerLayout->addStretch(1); buttonAddTokenAtBottom = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add at bottom"), container); containerLayout->addWidget(buttonAddTokenAtBottom, 0); QMenu *menuAddToken = new QMenu(p); QSignalMapper *signalMapperAddMenu = new QSignalMapper(p); buttonAddTokenAtTop->setMenu(menuAddToken); QAction *action = menuAddToken->addAction(i18n("Title"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttTitle); action = menuAddToken->addAction(i18n("Author"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttAuthor); action = menuAddToken->addAction(i18n("Year"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttYear); action = menuAddToken->addAction(i18n("Journal"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttJournal); action = menuAddToken->addAction(i18n("Volume"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttVolume); action = menuAddToken->addAction(i18n("Page Number"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttPageNumber); action = menuAddToken->addAction(i18n("Text"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, -ttText); connect(signalMapperAddMenu, static_cast<void(QSignalMapper::*)(int)>(&QSignalMapper::mapped), p, &IdSuggestionsEditWidget::addToken); menuAddToken = new QMenu(p); signalMapperAddMenu = new QSignalMapper(p); buttonAddTokenAtBottom->setMenu(menuAddToken); action = menuAddToken->addAction(i18n("Title"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttTitle); action = menuAddToken->addAction(i18n("Author"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttAuthor); action = menuAddToken->addAction(i18n("Year"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttYear); action = menuAddToken->addAction(i18n("Journal"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttJournal); action = menuAddToken->addAction(i18n("Volume"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttVolume); action = menuAddToken->addAction(i18n("Page Number"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttPageNumber); action = menuAddToken->addAction(i18n("Text"), signalMapperAddMenu, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperAddMenu->setMapping(action, ttText); connect(signalMapperAddMenu, static_cast<void(QSignalMapper::*)(int)>(&QSignalMapper::mapped), p, &IdSuggestionsEditWidget::addToken); signalMapperMoveUp = new QSignalMapper(p); connect(signalMapperMoveUp, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &IdSuggestionsEditWidget::moveUpToken); signalMapperMoveDown = new QSignalMapper(p); connect(signalMapperMoveDown, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &IdSuggestionsEditWidget::moveDownToken); signalMapperRemove = new QSignalMapper(p); connect(signalMapperRemove, static_cast<void(QSignalMapper::*)(QWidget *)>(&QSignalMapper::mapped), p, &IdSuggestionsEditWidget::removeToken); } void addManagementButtons(TokenWidget *tokenWidget) { if (tokenWidget != nullptr) { QPushButton *buttonUp = new QPushButton(QIcon::fromTheme(QStringLiteral("go-up")), QStringLiteral(""), tokenWidget); QPushButton *buttonDown = new QPushButton(QIcon::fromTheme(QStringLiteral("go-down")), QStringLiteral(""), tokenWidget); QPushButton *buttonRemove = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), QStringLiteral(""), tokenWidget); tokenWidget->addButtons(buttonUp, buttonDown, buttonRemove); connect(buttonUp, &QPushButton::clicked, signalMapperMoveUp, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperMoveUp->setMapping(buttonUp, tokenWidget); connect(buttonDown, &QPushButton::clicked, signalMapperMoveDown, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperMoveDown->setMapping(buttonDown, tokenWidget); connect(buttonRemove, &QPushButton::clicked, signalMapperRemove, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperRemove->setMapping(buttonRemove, tokenWidget); } } void add(TokenType tokenType, bool atTop) { TokenWidget *tokenWidget = nullptr; switch (tokenType) { case ttTitle: { struct IdSuggestions::IdSuggestionTokenInfo info; info.inBetween = QString(); info.len = -1; info.startWord = 0; info.endWord = 0x00ffffff; info.lastWord = false; info.caseChange = IdSuggestions::ccNoChange; tokenWidget = new TitleWidget(info, true, p, container); } break; case ttAuthor: { struct IdSuggestions::IdSuggestionTokenInfo info; info.inBetween = QString(); info.len = -1; info.startWord = 0; info.endWord = 0x00ffffff; info.lastWord = false; info.caseChange = IdSuggestions::ccNoChange; tokenWidget = new AuthorWidget(info, p, container); } break; case ttYear: tokenWidget = new YearWidget(4, p, container); break; case ttJournal: { struct IdSuggestions::IdSuggestionTokenInfo info; info.inBetween = QString(); info.len = 1; info.startWord = 0; info.endWord = 0x00ffffff; info.lastWord = false; info.caseChange = IdSuggestions::ccNoChange; tokenWidget = new JournalWidget(info, p, container); } break; case ttText: tokenWidget = new TextWidget(QString(), p, container); break; case ttVolume: tokenWidget = new VolumeWidget(p, container); break; case ttPageNumber: tokenWidget = new PageNumberWidget(p, container); break; } if (tokenWidget != nullptr) { const int pos = atTop ? 1 : containerLayout->count() - 2; atTop ? widgetList.prepend(tokenWidget) : widgetList.append(tokenWidget); containerLayout->insertWidget(pos, tokenWidget, 1); addManagementButtons(tokenWidget); } } void reset(const QString &formatString) { while (!widgetList.isEmpty()) delete widgetList.takeFirst(); const QStringList tokenList = formatString.split(QStringLiteral("|"), QString::SkipEmptyParts); for (const QString &token : tokenList) { TokenWidget *tokenWidget = nullptr; if (token[0] == 'a' || token[0] == 'A' || token[0] == 'z') { struct IdSuggestions::IdSuggestionTokenInfo info = p->evalToken(token.mid(1)); /// Support deprecated 'a' and 'z' cases if (token[0] == 'a') info.startWord = info.endWord = 0; else if (token[0] == 'z') { info.startWord = 1; info.endWord = 0x00ffffff; } tokenWidget = new AuthorWidget(info, p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 'y') { tokenWidget = new YearWidget(2, p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 'Y') { tokenWidget = new YearWidget(4, p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 't' || token[0] == 'T') { struct IdSuggestions::IdSuggestionTokenInfo info = p->evalToken(token.mid(1)); tokenWidget = new TitleWidget(info, token[0] == 'T', p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 'j') { struct IdSuggestions::IdSuggestionTokenInfo info = p->evalToken(token.mid(1)); tokenWidget = new JournalWidget(info, p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 'v') { tokenWidget = new VolumeWidget(p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == 'p') { tokenWidget = new PageNumberWidget(p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } else if (token[0] == '"') { tokenWidget = new TextWidget(token.mid(1), p, container); widgetList << tokenWidget; containerLayout->insertWidget(containerLayout->count() - 2, tokenWidget, 1); } if (tokenWidget != nullptr) addManagementButtons(tokenWidget); } p->updatePreview(); } QString apply() { QStringList result; result.reserve(widgetList.size()); for (TokenWidget *widget : const_cast<const QList<TokenWidget *> &>(widgetList)) result << widget->toString(); return result.join(QStringLiteral("|")); } }; IdSuggestionsEditWidget::IdSuggestionsEditWidget(const Entry *previewEntry, QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f), IdSuggestions(), d(new IdSuggestionsEditWidgetPrivate(previewEntry, this)) { /// nothing } IdSuggestionsEditWidget::~IdSuggestionsEditWidget() { // TODO } void IdSuggestionsEditWidget::setFormatString(const QString &formatString) { d->reset(formatString); } QString IdSuggestionsEditWidget::formatString() const { return d->apply(); } void IdSuggestionsEditWidget::updatePreview() { const QString formatString = d->apply(); d->labelPreview->setText(formatId(*d->previewEntry, formatString)); d->labelPreview->setToolTip(i18n("<qt>Structure:<ul><li>%1</li></ul>Example: %2</qt>", formatStrToHuman(formatString).join(QStringLiteral("</li><li>")), formatId(*d->previewEntry, formatString))); } void IdSuggestionsEditWidget::moveUpToken(QWidget *widget) { TokenWidget *tokenWidget = static_cast<TokenWidget *>(widget); int curPos = d->widgetList.indexOf(tokenWidget); if (curPos > 0) { d->widgetList.removeAt(curPos); const int layoutPos = d->containerLayout->indexOf(tokenWidget); d->containerLayout->removeWidget(tokenWidget); d->widgetList.insert(curPos - 1, tokenWidget); d->containerLayout->insertWidget(layoutPos - 1, tokenWidget, 1); updatePreview(); } } void IdSuggestionsEditWidget::moveDownToken(QWidget *widget) { TokenWidget *tokenWidget = static_cast<TokenWidget *>(widget); int curPos = d->widgetList.indexOf(tokenWidget); if (curPos < d->widgetList.size() - 1) { d->widgetList.removeAt(curPos); const int layoutPos = d->containerLayout->indexOf(tokenWidget); d->containerLayout->removeWidget(tokenWidget); d->widgetList.insert(curPos + 1, tokenWidget); d->containerLayout->insertWidget(layoutPos + 1, tokenWidget, 1); updatePreview(); } } void IdSuggestionsEditWidget::removeToken(QWidget *widget) { TokenWidget *tokenWidget = static_cast<TokenWidget *>(widget); d->widgetList.removeOne(tokenWidget); d->containerLayout->removeWidget(tokenWidget); tokenWidget->deleteLater(); updatePreview(); } void IdSuggestionsEditWidget::addToken(int cmd) { if (cmd < 0) { d->add((IdSuggestionsEditWidgetPrivate::TokenType)(-cmd), true); d->area->ensureWidgetVisible(d->buttonAddTokenAtTop); // FIXME does not work as intended } else { d->add((IdSuggestionsEditWidgetPrivate::TokenType)cmd, false); d->area->ensureWidgetVisible(d->buttonAddTokenAtBottom); // FIXME does not work as intended } updatePreview(); } IdSuggestionsEditDialog::IdSuggestionsEditDialog(QWidget *parent, Qt::WindowFlags flags) : QDialog(parent, flags) { setWindowTitle(i18n("Edit Id Suggestion")); } IdSuggestionsEditDialog::~IdSuggestionsEditDialog() { /// nothing } QString IdSuggestionsEditDialog::editSuggestion(const Entry *previewEntry, const QString &suggestion, QWidget *parent) { QPointer<IdSuggestionsEditDialog> dlg = new IdSuggestionsEditDialog(parent); QBoxLayout *boxLayout = new QVBoxLayout(dlg); IdSuggestionsEditWidget *widget = new IdSuggestionsEditWidget(previewEntry, dlg); boxLayout->addWidget(widget); QDialogButtonBox *dbb = new QDialogButtonBox(dlg); dbb->setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); boxLayout->addWidget(dbb); connect(dbb->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); connect(dbb->button(QDialogButtonBox::Cancel), &QPushButton::clicked, dlg.data(), &QDialog::reject); widget->setFormatString(suggestion); if (dlg->exec() == Accepted) { const QString formatString = widget->formatString(); delete dlg; return formatString; } delete dlg; /// Return unmodified original suggestion return suggestion; } #include "settingsidsuggestionseditor.moc" ������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsidsuggestionseditor.h�������������������������������������0000664�0000000�0000000�00000010050�13313000262�0025036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSIDSUGGESTIONSEDITOR_H #define KBIBTEX_GUI_SETTINGSIDSUGGESTIONSEDITOR_H #include "kbibtexgui_export.h" #include <QWidget> #include <QLayout> #include <QDialog> #include <QGroupBox> #include "idsuggestions.h" #include "entry.h" class QFormLayout; class QSpinBox; class QLabel; class QCheckBox; class QPushButton; class KLineEdit; class KComboBox; class IdSuggestionsEditWidget; class RangeWidget; /** * @author Thomas Fischer */ class TokenWidget : public QGroupBox { Q_OBJECT protected: QGridLayout *gridLayout; QFormLayout *formLayout; public: explicit TokenWidget(QWidget *parent); void addButtons(QPushButton *buttonUp, QPushButton *buttonDown, QPushButton *buttonRemove); virtual QString toString() const = 0; }; /** * @author Thomas Fischer */ class AuthorWidget : public TokenWidget { Q_OBJECT private: RangeWidget *rangeWidgetAuthor; QCheckBox *checkBoxLastAuthor; QLabel *labelAuthorRange; KComboBox *comboBoxChangeCase; KLineEdit *lineEditTextInBetween; QSpinBox *spinBoxLength; private slots: void updateRangeLabel(); public: AuthorWidget(const struct IdSuggestions::IdSuggestionTokenInfo &info, IdSuggestionsEditWidget *isew, QWidget *parent); QString toString() const override; }; /** * @author Thomas Fischer */ class TitleWidget : public TokenWidget { Q_OBJECT private: RangeWidget *rangeWidgetAuthor; QLabel *labelWordsRange; QCheckBox *checkBoxRemoveSmallWords; KComboBox *comboBoxChangeCase; KLineEdit *lineEditTextInBetween; QSpinBox *spinBoxLength; private slots: void updateRangeLabel(); public: TitleWidget(const struct IdSuggestions::IdSuggestionTokenInfo &info, bool removeSmallWords, IdSuggestionsEditWidget *isew, QWidget *parent); QString toString() const override; }; /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT IdSuggestionsEditDialog : public QDialog { Q_OBJECT public: ~IdSuggestionsEditDialog() override; static QString editSuggestion(const Entry *previewEntry, const QString &suggestion, QWidget *parent); protected: explicit IdSuggestionsEditDialog(QWidget *parent = nullptr, Qt::WindowFlags flags = 0); }; class IdSuggestionsEditWidget : public QWidget, public IdSuggestions { Q_OBJECT public: explicit IdSuggestionsEditWidget(const Entry *previewEntry, QWidget *parent = nullptr, Qt::WindowFlags f = 0); ~IdSuggestionsEditWidget() override; void setFormatString(const QString &formatString); QString formatString() const; public slots: void updatePreview(); private slots: void moveUpToken(QWidget *); void moveDownToken(QWidget *); void removeToken(QWidget *); void addToken(int); private: class IdSuggestionsEditWidgetPrivate; IdSuggestionsEditWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSIDSUGGESTIONSEDITOR_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsidsuggestionswidget.cpp�����������������������������������0000664�0000000�0000000�00000041270�13313000262�0025376�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsidsuggestionswidget.h" #include <QLayout> #include <QTreeView> #include <QPushButton> #include <QFontDatabase> #include <KSharedConfig> #include <KConfigGroup> #include <KLocalizedString> #include <KMessageBox> #include "fileimporterbibtex.h" #include "idsuggestions.h" #include "settingsidsuggestionseditor.h" class IdSuggestionsModel : public QAbstractListModel { Q_OBJECT private: QStringList m_formatStringList; int m_defaultFormatStringRow; IdSuggestions *m_idSuggestions; static const QString exampleBibTeXEntryString; static QSharedPointer<const Entry> exampleBibTeXEntry; public: IdSuggestionsModel(QObject *parent = nullptr) : QAbstractListModel(parent) { m_idSuggestions = new IdSuggestions(); m_defaultFormatStringRow = -1; if (exampleBibTeXEntry.isNull()) { FileImporterBibTeX fileImporterBibTeX(this); File *file = fileImporterBibTeX.fromString(exampleBibTeXEntryString); if (file != nullptr) { if (!file->isEmpty()) exampleBibTeXEntry = file->first().dynamicCast<const Entry>(); delete file; } } } ~IdSuggestionsModel() override { delete m_idSuggestions; } enum IdSuggestionsModelRole { /// Raw format string as QString FormatStringRole = Qt::UserRole + 7811, /// Flag whether current index is the default one; boolean value IsDefaultFormatStringRole = Qt::UserRole + 7812 }; QSharedPointer<const Entry> previewEntry() { return exampleBibTeXEntry; } void setFormatStringList(const QStringList &formatStringList, const QString &defaultString = QString()) { beginResetModel(); m_formatStringList = formatStringList; m_defaultFormatStringRow = m_formatStringList.indexOf(defaultString); endResetModel(); } QStringList formatStringList() const { return this->m_formatStringList; } QString defaultFormatString() const { if (m_defaultFormatStringRow >= 0 && m_defaultFormatStringRow < m_formatStringList.length()) return m_formatStringList[m_defaultFormatStringRow]; else return QString(); } int rowCount(const QModelIndex &parent = QModelIndex()) const override { if (parent == QModelIndex()) return m_formatStringList.count(); else return 0; } QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override { if (index.row() < 0 || index.row() >= m_formatStringList.count()) return QVariant(); switch (role) { case Qt::FontRole: { QFont defaultFont = QFontDatabase::systemFont(QFontDatabase::GeneralFont); if (index.row() == m_defaultFormatStringRow) defaultFont.setBold(true); return defaultFont; } case Qt::DecorationRole: if (index.row() == m_defaultFormatStringRow) return QIcon::fromTheme(QStringLiteral("favorites")); else return QIcon::fromTheme(QStringLiteral("view-filter")); case Qt::ToolTipRole: return i18n("<qt>Structure:<ul><li>%1</li></ul>Example: %2</qt>", m_idSuggestions->formatStrToHuman(m_formatStringList[index.row()]).join(QStringLiteral("</li><li>")), m_idSuggestions->formatId(*exampleBibTeXEntry, m_formatStringList[index.row()])); case Qt::DisplayRole: return m_idSuggestions->formatId(*exampleBibTeXEntry, m_formatStringList[index.row()]); case Qt::UserRole: case FormatStringRole: return m_formatStringList[index.row()]; case IsDefaultFormatStringRole: return index.row() == m_defaultFormatStringRow; default: return QVariant(); } } bool setData(const QModelIndex &idx, const QVariant &value, int role) override { if (idx.row() < 0 || idx.row() >= m_formatStringList.count()) return false; if (role == IsDefaultFormatStringRole && value.canConvert<bool>()) { if (value.toBool()) { if (idx.row() != m_defaultFormatStringRow) { QModelIndex oldDefaultIndex = index(m_defaultFormatStringRow, 0); m_defaultFormatStringRow = idx.row(); emit dataChanged(oldDefaultIndex, oldDefaultIndex); emit dataChanged(idx, idx); } } else { m_defaultFormatStringRow = -1; emit dataChanged(idx, idx); } return true; } else if (role == FormatStringRole && value.canConvert<QString>()) { m_formatStringList[idx.row()] = value.toString(); emit dataChanged(idx, idx); return true; } return false; } virtual bool insertRow(int row, const QModelIndex &parent = QModelIndex()) { if (parent != QModelIndex()) return false; beginInsertRows(parent, row, row); m_formatStringList.insert(row, QStringLiteral("T")); endInsertRows(); return true; } QVariant headerData(int section, Qt::Orientation, int role = Qt::DisplayRole) const override { if (role == Qt::DisplayRole && section == 0) return i18n("Id Suggestions"); return QVariant(); } bool moveUp(const QModelIndex &index) { int row = index.row(); if (row < 1 || row >= m_formatStringList.count()) return false; beginMoveColumns(index.parent(), row, row, index.parent(), row - 1); const QString formatString = m_formatStringList[row]; m_formatStringList.removeAt(row); m_formatStringList.insert(row - 1, formatString); if (m_defaultFormatStringRow == row) --m_defaultFormatStringRow; ///< update default id suggestion endMoveRows(); return true; } bool moveDown(const QModelIndex &index) { int row = index.row(); if (row < 0 || row >= m_formatStringList.count() - 1) return false; beginMoveColumns(index.parent(), row + 1, row + 1, index.parent(), row); const QString formatString = m_formatStringList[row]; m_formatStringList.removeAt(row); m_formatStringList.insert(row + 1, formatString); if (m_defaultFormatStringRow == row) ++m_defaultFormatStringRow; ///< update default id suggestion endMoveRows(); return true; } bool remove(const QModelIndex &index) { int row = index.row(); if (row < 0 || row >= m_formatStringList.count()) return false; beginRemoveRows(index.parent(), row, row); m_formatStringList.removeAt(row); if (m_defaultFormatStringRow == row) m_defaultFormatStringRow = -1; ///< update default id suggestion endRemoveRows(); return true; } }; const QString IdSuggestionsModel::exampleBibTeXEntryString = QStringLiteral("@Article{ dijkstra1983terminationdetect,\nauthor = {Edsger W. Dijkstra and W. H. J. Feijen and A. J. M. {van Gasteren}},\ntitle = {{Derivation of a Termination Detection Algorithm for Distributed Computations}},\njournal = {Information Processing Letters},\nvolume = 16,\nnumber = 5,\npages = {217--219},\nmonth = jun,\nyear = 1983\n}"); QSharedPointer<const Entry> IdSuggestionsModel::exampleBibTeXEntry; class SettingsIdSuggestionsWidget::SettingsIdSuggestionsWidgetPrivate { private: SettingsIdSuggestionsWidget *p; KSharedConfigPtr config; KConfigGroup configGroup; public: QTreeView *treeViewSuggestions; IdSuggestionsModel *idSuggestionsModel; QPushButton *buttonNewSuggestion, *buttonEditSuggestion, *buttonDeleteSuggestion, *buttonSuggestionUp, *buttonSuggestionDown, *buttonToggleDefaultString; SettingsIdSuggestionsWidgetPrivate(SettingsIdSuggestionsWidget *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroup(config, IdSuggestions::configGroupName) { setupGUI(); } void loadState() { idSuggestionsModel->setFormatStringList(configGroup.readEntry(IdSuggestions::keyFormatStringList, IdSuggestions::defaultFormatStringList), configGroup.readEntry(IdSuggestions::keyDefaultFormatString, IdSuggestions::defaultDefaultFormatString)); } void saveState() { configGroup.writeEntry(IdSuggestions::keyFormatStringList, idSuggestionsModel->formatStringList()); configGroup.writeEntry(IdSuggestions::keyDefaultFormatString, idSuggestionsModel->defaultFormatString()); config->sync(); } void resetToDefaults() { idSuggestionsModel->setFormatStringList(IdSuggestions::defaultFormatStringList); } void setupGUI() { QGridLayout *layout = new QGridLayout(p); treeViewSuggestions = new QTreeView(p); layout->addWidget(treeViewSuggestions, 0, 0, 8, 1); idSuggestionsModel = new IdSuggestionsModel(treeViewSuggestions); treeViewSuggestions->setModel(idSuggestionsModel); treeViewSuggestions->setRootIsDecorated(false); connect(treeViewSuggestions->selectionModel(), &QItemSelectionModel::currentChanged, p, &SettingsIdSuggestionsWidget::itemChanged); treeViewSuggestions->setMinimumSize(treeViewSuggestions->fontMetrics().width(QChar('W')) * 25, treeViewSuggestions->fontMetrics().height() * 15); buttonNewSuggestion = new QPushButton(QIcon::fromTheme(QStringLiteral("list-add")), i18n("Add..."), p); layout->addWidget(buttonNewSuggestion, 0, 1, 1, 1); buttonEditSuggestion = new QPushButton(QIcon::fromTheme(QStringLiteral("document-edit")), i18n("Edit..."), p); layout->addWidget(buttonEditSuggestion, 1, 1, 1, 1); buttonDeleteSuggestion = new QPushButton(QIcon::fromTheme(QStringLiteral("list-remove")), i18n("Remove"), p); layout->addWidget(buttonDeleteSuggestion, 2, 1, 1, 1); buttonSuggestionUp = new QPushButton(QIcon::fromTheme(QStringLiteral("go-up")), i18n("Up"), p); layout->addWidget(buttonSuggestionUp, 3, 1, 1, 1); buttonSuggestionDown = new QPushButton(QIcon::fromTheme(QStringLiteral("go-down")), i18n("Down"), p); layout->addWidget(buttonSuggestionDown, 4, 1, 1, 1); buttonToggleDefaultString = new QPushButton(QIcon::fromTheme(QStringLiteral("favorites")), i18n("Toggle Default"), p); layout->addWidget(buttonToggleDefaultString, 5, 1, 1, 1); connect(buttonNewSuggestion, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::buttonClicked); connect(buttonEditSuggestion, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::buttonClicked); connect(buttonDeleteSuggestion, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::buttonClicked); connect(buttonSuggestionUp, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::buttonClicked); connect(buttonSuggestionDown, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::buttonClicked); connect(buttonToggleDefaultString, &QPushButton::clicked, p, &SettingsIdSuggestionsWidget::toggleDefault); connect(treeViewSuggestions, &QTreeView::doubleClicked, p, &SettingsIdSuggestionsWidget::editItem); } }; SettingsIdSuggestionsWidget::SettingsIdSuggestionsWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsIdSuggestionsWidgetPrivate(this)) { d->loadState(); itemChanged(QModelIndex()); } SettingsIdSuggestionsWidget::~SettingsIdSuggestionsWidget() { delete d; } QString SettingsIdSuggestionsWidget::label() const { return i18n("Id Suggestions"); } QIcon SettingsIdSuggestionsWidget::icon() const { return QIcon::fromTheme(QStringLiteral("view-filter")); } void SettingsIdSuggestionsWidget::loadState() { d->loadState(); } void SettingsIdSuggestionsWidget::saveState() { d->saveState(); } void SettingsIdSuggestionsWidget::resetToDefaults() { d->resetToDefaults(); } void SettingsIdSuggestionsWidget::buttonClicked() { QPushButton *button = qobject_cast<QPushButton *>(sender()); QModelIndex selectedIndex = d->treeViewSuggestions->selectionModel()->currentIndex(); if (button == d->buttonNewSuggestion) { const QString newSuggestion = IdSuggestionsEditDialog::editSuggestion(d->idSuggestionsModel->previewEntry().data(), QStringLiteral(""), this); const int row = d->treeViewSuggestions->model()->rowCount(QModelIndex()); if (!newSuggestion.isEmpty() && d->idSuggestionsModel->insertRow(row)) { QModelIndex index = d->idSuggestionsModel->index(row, 0, QModelIndex()); d->treeViewSuggestions->setCurrentIndex(index); if (d->idSuggestionsModel->setData(index, newSuggestion, IdSuggestionsModel::FormatStringRole)) emit changed(); } } else if (button == d->buttonEditSuggestion) { QModelIndex currIndex = d->treeViewSuggestions->currentIndex(); editItem(currIndex); } else if (button == d->buttonDeleteSuggestion) { if (d->idSuggestionsModel->remove(selectedIndex)) { emit changed(); } } else if (button == d->buttonSuggestionUp) { if (d->idSuggestionsModel->moveUp(selectedIndex)) { d->treeViewSuggestions->selectionModel()->setCurrentIndex(selectedIndex.sibling(selectedIndex.row() - 1, 0), QItemSelectionModel::ClearAndSelect); emit changed(); } } else if (button == d->buttonSuggestionDown) { if (d->idSuggestionsModel->moveDown(selectedIndex)) { d->treeViewSuggestions->selectionModel()->setCurrentIndex(selectedIndex.sibling(selectedIndex.row() + 1, 0), QItemSelectionModel::ClearAndSelect); emit changed(); } } } void SettingsIdSuggestionsWidget::itemChanged(const QModelIndex &index) { bool enableChange = index != QModelIndex(); d->buttonEditSuggestion->setEnabled(enableChange); d->buttonDeleteSuggestion->setEnabled(enableChange); d->buttonSuggestionUp->setEnabled(enableChange && index.row() > 0); d->buttonSuggestionDown->setEnabled(enableChange && index.row() < d->idSuggestionsModel->rowCount() - 1); d->buttonToggleDefaultString->setEnabled(enableChange); } void SettingsIdSuggestionsWidget::editItem(const QModelIndex &index) { QString suggestion; if (index != QModelIndex() && !(suggestion = index.data(IdSuggestionsModel::FormatStringRole).toString()).isEmpty()) { const QString newSuggestion = IdSuggestionsEditDialog::editSuggestion(d->idSuggestionsModel->previewEntry().data(), suggestion, this); if (newSuggestion.isEmpty()) { if (KMessageBox::questionYesNo(this, i18n("All token have been removed from this suggestion. Remove suggestion itself or restore original suggestion?"), i18n("Remove suggestion?"), KGuiItem(i18n("Remove suggestion"), QIcon::fromTheme(QStringLiteral("list-remove"))), KGuiItem(i18n("Revert changes"), QIcon::fromTheme(QStringLiteral("edit-undo")))) == KMessageBox::Yes && d->idSuggestionsModel->remove(index)) { emit changed(); } } else if (newSuggestion != suggestion) { if (d->idSuggestionsModel->setData(index, newSuggestion, IdSuggestionsModel::FormatStringRole)) emit changed(); } } } void SettingsIdSuggestionsWidget::toggleDefault() { QModelIndex curIndex = d->treeViewSuggestions->currentIndex(); bool current = d->idSuggestionsModel->data(curIndex, IdSuggestionsModel::IsDefaultFormatStringRole).toBool(); d->idSuggestionsModel->setData(curIndex, !current, IdSuggestionsModel::IsDefaultFormatStringRole); emit changed(); } #include "settingsidsuggestionswidget.moc" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsidsuggestionswidget.h�������������������������������������0000664�0000000�0000000�00000004143�13313000262�0025041�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSIDSUGGESTIONSWIDGET_H #define KBIBTEX_GUI_SETTINGSIDSUGGESTIONSWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" /** @author Thomas Fischer */ class KBIBTEXGUI_EXPORT SettingsIdSuggestionsWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsIdSuggestionsWidget(QWidget *parent); ~SettingsIdSuggestionsWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private slots: void buttonClicked(); void itemChanged(const QModelIndex &index); void editItem(const QModelIndex &index); void toggleDefault(); private: class SettingsIdSuggestionsWidgetPrivate; SettingsIdSuggestionsWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSIDSUGGESTIONSWIDGET_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/preferences/settingsuserinterfacewidget.cpp�����������������������������������0000664�0000000�0000000�00000014763�13313000262�0025355�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "settingsuserinterfacewidget.h" #include <QFormLayout> #include <QCheckBox> #include <QBoxLayout> #include <KComboBox> #include <KLocalizedString> #include <KSharedConfig> #include <KConfigGroup> #include "preferences.h" #include "elementwidgets.h" #include "models/filemodel.h" class SettingsUserInterfaceWidget::SettingsUserInterfaceWidgetPrivate { private: SettingsUserInterfaceWidget *p; QCheckBox *checkBoxShowComments; QCheckBox *checkBoxShowMacros; KComboBox *comboBoxBibliographySystem; KComboBox *comboBoxElementDoubleClickAction; KSharedConfigPtr config; static const QString configGroupName; public: SettingsUserInterfaceWidgetPrivate(SettingsUserInterfaceWidget *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { setupGUI(); } void loadState() { KConfigGroup configGroup(config, configGroupName); checkBoxShowComments->setChecked(configGroup.readEntry(FileModel::keyShowComments, FileModel::defaultShowComments)); checkBoxShowMacros->setChecked(configGroup.readEntry(FileModel::keyShowMacros, FileModel::defaultShowMacros)); const QStringList styles = configGroup.readEntry("BibTeXStyles", QStringList()); for (const QString &style : styles) { QStringList item = style.split(QStringLiteral("|")); QString itemLabel = item.at(0); item.removeFirst(); comboBoxBibliographySystem->addItem(itemLabel, item); } int styleIndex = comboBoxBibliographySystem->findData(configGroup.readEntry("CurrentStyle", QString(QStringLiteral("bibtex")))); if (styleIndex < 0) styleIndex = 0; comboBoxBibliographySystem->setCurrentIndex(styleIndex); comboBoxElementDoubleClickAction->setCurrentIndex(configGroup.readEntry(Preferences::keyElementDoubleClickAction, (int)Preferences::defaultElementDoubleClickAction)); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(FileModel::keyShowComments, checkBoxShowComments->isChecked()); configGroup.writeEntry(FileModel::keyShowMacros, checkBoxShowMacros->isChecked()); configGroup.writeEntry("CurrentStyle", comboBoxBibliographySystem->itemData(comboBoxBibliographySystem->currentIndex()).toString()); configGroup.writeEntry(Preferences::keyElementDoubleClickAction, comboBoxElementDoubleClickAction->currentIndex()); config->sync(); } void resetToDefaults() { checkBoxShowComments->setChecked(FileModel::defaultShowComments); checkBoxShowMacros->setChecked(FileModel::defaultShowMacros); comboBoxBibliographySystem->setCurrentIndex(0); comboBoxElementDoubleClickAction->setCurrentIndex(Preferences::defaultElementDoubleClickAction); } void setupGUI() { QFormLayout *layout = new QFormLayout(p); checkBoxShowComments = new QCheckBox(p); layout->addRow(i18n("Show Comments:"), checkBoxShowComments); connect(checkBoxShowComments, &QCheckBox::toggled, p, &SettingsUserInterfaceWidget::changed); checkBoxShowMacros = new QCheckBox(p); layout->addRow(i18n("Show Macros:"), checkBoxShowMacros); connect(checkBoxShowMacros, &QCheckBox::toggled, p, &SettingsUserInterfaceWidget::changed); comboBoxBibliographySystem = new KComboBox(p); comboBoxBibliographySystem->setObjectName(QStringLiteral("comboBoxBibtexStyle")); comboBoxBibliographySystem->addItem(i18n("BibTeX"), QStringLiteral("bibtex")); comboBoxBibliographySystem->addItem(i18n("BibLaTeX"), QStringLiteral("biblatex")); layout->addRow(i18n("Bibliography System:"), comboBoxBibliographySystem); connect(comboBoxBibliographySystem, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsUserInterfaceWidget::changed); comboBoxElementDoubleClickAction = new KComboBox(p); comboBoxElementDoubleClickAction->setObjectName(QStringLiteral("comboBoxElementDoubleClickAction")); comboBoxElementDoubleClickAction->addItem(i18n("Open Editor")); ///< ActionOpenEditor = 0 comboBoxElementDoubleClickAction->addItem(i18n("View Document")); ///< ActionViewDocument = 1 layout->addRow(i18n("When double-clicking an element:"), comboBoxElementDoubleClickAction); connect(comboBoxElementDoubleClickAction, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &SettingsUserInterfaceWidget::changed); } }; const QString SettingsUserInterfaceWidget::SettingsUserInterfaceWidgetPrivate::configGroupName = QStringLiteral("User Interface"); SettingsUserInterfaceWidget::SettingsUserInterfaceWidget(QWidget *parent) : SettingsAbstractWidget(parent), d(new SettingsUserInterfaceWidgetPrivate(this)) { d->loadState(); } QString SettingsUserInterfaceWidget::label() const { return i18n("User Interface"); } QIcon SettingsUserInterfaceWidget::icon() const { return QIcon::fromTheme(QStringLiteral("user-identity")); } SettingsUserInterfaceWidget::~SettingsUserInterfaceWidget() { delete d; } void SettingsUserInterfaceWidget::loadState() { d->loadState(); } void SettingsUserInterfaceWidget::saveState() { d->saveState(); } void SettingsUserInterfaceWidget::resetToDefaults() { d->resetToDefaults(); } �������������kbibtex-0.8.1/src/gui/preferences/settingsuserinterfacewidget.h�������������������������������������0000664�0000000�0000000�00000003703�13313000262�0025012�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_SETTINGSUSERINTERFACEWIDGET_H #define KBIBTEX_GUI_SETTINGSUSERINTERFACEWIDGET_H #include <kbibtexgui_export.h> #include "settingsabstractwidget.h" /** @author Thomas Fischer */ class KBIBTEXGUI_EXPORT SettingsUserInterfaceWidget : public SettingsAbstractWidget { Q_OBJECT public: explicit SettingsUserInterfaceWidget(QWidget *parent); ~SettingsUserInterfaceWidget() override; QString label() const override; QIcon icon() const override; public slots: void loadState() override; void saveState() override; void resetToDefaults() override; private: class SettingsUserInterfaceWidgetPrivate; SettingsUserInterfaceWidgetPrivate *d; }; #endif // KBIBTEX_GUI_SETTINGSUSERINTERFACEWIDGET_H �������������������������������������������������������������kbibtex-0.8.1/src/gui/valuelistmodel.cpp������������������������������������������������������������0000664�0000000�0000000�00000055344�13313000262�0020261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "valuelistmodel.h" #include <typeinfo> #include <QApplication> #include <QTextDocument> #include <QAbstractTextDocumentLayout> #include <QListView> #include <QGridLayout> #include <QStringListModel> #include <QPainter> #include <QFrame> #include <QLayout> #include <QHeaderView> #include <KComboBox> #include <KLocalizedString> #include <KSharedConfig> #include <KConfigGroup> #include <KColorScheme> #include <KLineEdit> #include "fieldlineedit.h" #include "bibtexfields.h" #include "entry.h" #include "preferences.h" #include "models/filemodel.h" #include "logging_gui.h" QWidget *ValueListDelegate::createEditor(QWidget *parent, const QStyleOptionViewItem &sovi, const QModelIndex &index) const { if (index.column() == 0) { const FieldDescription &fd = BibTeXFields::self()->find(m_fieldName); FieldLineEdit *fieldLineEdit = new FieldLineEdit(fd.preferredTypeFlag, fd.typeFlags, false, parent); fieldLineEdit->setAutoFillBackground(true); return fieldLineEdit; } else return QStyledItemDelegate::createEditor(parent, sovi, index); } void ValueListDelegate::setEditorData(QWidget *editor, const QModelIndex &index) const { if (index.column() == 0) { FieldLineEdit *fieldLineEdit = qobject_cast<FieldLineEdit *>(editor); if (fieldLineEdit != nullptr) fieldLineEdit->reset(index.model()->data(index, Qt::EditRole).value<Value>()); } } void ValueListDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const { FieldLineEdit *fieldLineEdit = qobject_cast<FieldLineEdit *>(editor); if (fieldLineEdit != nullptr) { Value v; fieldLineEdit->apply(v); if (v.count() == 1) /// field should contain exactly one value item (no zero, not two or more) model->setData(index, QVariant::fromValue(v)); } } QSize ValueListDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { QSize size = QStyledItemDelegate::sizeHint(option, index); size.setHeight(qMax(size.height(), option.fontMetrics.height() * 3 / 2)); // TODO calculate height better return size; } void ValueListDelegate::commitAndCloseEditor() { KLineEdit *editor = qobject_cast<KLineEdit *>(sender()); emit commitData(editor); emit closeEditor(editor); } void ValueListDelegate::initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const { QStyledItemDelegate::initStyleOption(option, index); if (option->decorationPosition != QStyleOptionViewItem::Top) { /// remove text from style (do not draw text) option->text.clear(); } } void ValueListDelegate::paint(QPainter *painter, const QStyleOptionViewItem &_option, const QModelIndex &index) const { QStyleOptionViewItem option = _option; /// code heavily inspired by kdepimlibs-4.6.3/akonadi/collectionstatisticsdelegate.cpp /// save painter's state, restored before leaving this function painter->save(); /// first, paint the basic, but without the text. We remove the text /// in initStyleOption(), which gets called by QStyledItemDelegate::paint(). QStyledItemDelegate::paint(painter, option, index); /// now, we retrieve the correct style option by calling intiStyleOption from /// the superclass. QStyledItemDelegate::initStyleOption(&option, index); QString field = option.text; /// now calculate the rectangle for the text QStyle *s = m_parent->style(); const QWidget *widget = option.widget; const QRect textRect = s->subElementRect(QStyle::SE_ItemViewItemText, &option, widget); if (option.state & QStyle::State_Selected) { /// selected lines are drawn with different color painter->setPen(option.palette.highlightedText().color()); } /// count will be empty unless only one column is shown const QString count = index.column() == 0 && index.model()->columnCount() == 1 ? QString(QStringLiteral(" (%1)")).arg(index.data(ValueListModel::CountRole).toInt()) : QStringLiteral(""); /// squeeze the folder text if it is to big and calculate the rectangles /// where the folder text and the unread count will be drawn to QFontMetrics fm(painter->fontMetrics()); int countWidth = fm.width(count); int fieldWidth = fm.width(field); if (countWidth + fieldWidth > textRect.width()) { /// text plus count is too wide for column, cut text and insert "..." field = fm.elidedText(field, Qt::ElideRight, textRect.width() - countWidth - 8); fieldWidth = textRect.width() - countWidth - 12; } /// determine rects to draw field int top = textRect.top() + (textRect.height() - fm.height()) / 2; QRect fieldRect = textRect; QRect countRect = textRect; fieldRect.setTop(top); fieldRect.setHeight(fm.height()); if (m_parent->header()->visualIndex(index.column()) == 0) { /// left-align text fieldRect.setLeft(fieldRect.left() + 4); ///< hm, indent necessary? fieldRect.setRight(fieldRect.left() + fieldWidth); } else { /// right-align text fieldRect.setRight(fieldRect.right() - 4); ///< hm, indent necessary? fieldRect.setLeft(fieldRect.right() - fieldWidth); ///< hm, indent necessary? } /// draw field name painter->drawText(fieldRect, Qt::AlignLeft, field); if (!count.isEmpty()) { /// determine rects to draw count countRect.setTop(top); countRect.setHeight(fm.height()); countRect.setLeft(fieldRect.right()); /// use bold font QFont font = painter->font(); font.setBold(true); painter->setFont(font); /// determine color for count number const QColor countColor = (option.state & QStyle::State_Selected) ? KColorScheme(QPalette::Active, KColorScheme::Selection).foreground(KColorScheme::LinkText).color() : KColorScheme(QPalette::Active, KColorScheme::View).foreground(KColorScheme::LinkText).color(); painter->setPen(countColor); /// draw count painter->drawText(countRect, Qt::AlignLeft, count); } /// restore painter's state painter->restore(); } ValueListModel::ValueListModel(const File *bibtexFile, const QString &fieldName, QObject *parent) : QAbstractTableModel(parent), file(bibtexFile), fName(fieldName.toLower()), showCountColumn(true), sortBy(SortByText) { readConfiguration(); updateValues(); NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); } int ValueListModel::rowCount(const QModelIndex &parent) const { return parent == QModelIndex() ? values.count() : 0; } int ValueListModel::columnCount(const QModelIndex &parent) const { return parent == QModelIndex() ? (showCountColumn ? 2 : 1) : 0; } QVariant ValueListModel::data(const QModelIndex &index, int role) const { if (index.row() >= values.count() || index.column() >= 2) return QVariant(); if (role == Qt::DisplayRole || role == Qt::ToolTipRole) { if (index.column() == 0) { if (fName == Entry::ftColor) { QString text = values[index.row()].text; if (text.isEmpty()) return QVariant(); QString colorText = colorToLabel[text]; if (colorText.isEmpty()) return QVariant(text); return QVariant(colorText); } else return QVariant(values[index.row()].text); } else return QVariant(values[index.row()].count); } else if (role == SortRole) { static const QRegExp ignoredInSorting(QStringLiteral("[{}\\\\]+")); QString buffer = values[index.row()].sortBy.isEmpty() ? values[index.row()].text : values[index.row()].sortBy; buffer = buffer.remove(ignoredInSorting).toLower(); if ((showCountColumn && index.column() == 1) || (!showCountColumn && sortBy == SortByCount)) { /// Sort by string consisting of a zero-padded count and the lower-case text, /// for example "0000000051keyword" /// Used if (a) two columns are shown (showCountColumn is true) and column 1 /// (the count column) is to be sorted or (b) if only one column is shown /// (showCountColumn is false) and this single column is to be sorted by count. return QString(QStringLiteral("%1%2")).arg(values[index.row()].count, 10, 10, QLatin1Char('0')).arg(buffer); } else { /// Otherwise use lower-case text for sorting return QVariant(buffer); } } else if (role == SearchTextRole) { return QVariant(values[index.row()].text); } else if (role == Qt::EditRole) return QVariant::fromValue(values[index.row()].value); else if (role == CountRole) return QVariant(values[index.row()].count); else return QVariant(); } bool ValueListModel::setData(const QModelIndex &index, const QVariant &value, int role) { Q_ASSERT_X(file != nullptr, "ValueListModel::setData", "You cannot set data if there is no BibTeX file associated with this value list."); /// Continue only if in edit role and first column is to be changed if (role == Qt::EditRole && index.column() == 0) { /// Fetch the string as it was shown before the editing started QString origText = data(index, Qt::DisplayRole).toString(); /// Special treatment for colors if (fName == Entry::ftColor) { /// for colors, convert color (RGB) to the associated label QString color = colorToLabel.key(origText); if (!color.isEmpty()) origText = color; } /// Retrieve the Value object containing the user-entered data Value newValue = value.value<Value>(); /// nice variable names ... ;-) if (newValue.isEmpty()) { qCWarning(LOG_KBIBTEX_GUI) << "Cannot replace with empty value"; return false; } /// Fetch the string representing the new, user-entered value const QString newText = PlainTextValue::text(newValue); if (newText == origText) { qCWarning(LOG_KBIBTEX_GUI) << "Skipping to replace value with itself"; return false; } bool success = searchAndReplaceValueInEntries(index, newValue) && searchAndReplaceValueInModel(index, newValue); return success; } return false; } Qt::ItemFlags ValueListModel::flags(const QModelIndex &index) const { Qt::ItemFlags result = QAbstractTableModel::flags(index); /// make first column editable if (index.column() == 0) result |= Qt::ItemIsEditable; return result; } QVariant ValueListModel::headerData(int section, Qt::Orientation orientation, int role) const { if (section >= 2 || orientation != Qt::Horizontal || role != Qt::DisplayRole) return QVariant(); else if ((section == 0 && columnCount() == 2) || (columnCount() == 1 && sortBy == SortByText)) return QVariant(i18n("Value")); else return QVariant(i18n("Count")); } void ValueListModel::removeValue(const QModelIndex &index) { removeValueFromEntries(index); removeValueFromModel(index); } void ValueListModel::setShowCountColumn(bool showCountColumn) { beginResetModel(); this->showCountColumn = showCountColumn; endResetModel(); } void ValueListModel::setSortBy(SortBy sortBy) { beginResetModel(); this->sortBy = sortBy; endResetModel(); } void ValueListModel::notificationEvent(int eventId) { if (eventId == NotificationHub::EventConfigurationChanged) { beginResetModel(); readConfiguration(); endResetModel(); } } void ValueListModel::readConfiguration() { /// load mapping from color value to label KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); KConfigGroup configGroup(config, Preferences::groupColor); QStringList colorCodes = configGroup.readEntry(Preferences::keyColorCodes, Preferences::defaultColorCodes); QStringList colorLabels = configGroup.readEntry(Preferences::keyColorLabels, Preferences::defaultColorLabels); colorToLabel.clear(); for (QStringList::ConstIterator itc = colorCodes.constBegin(), itl = colorLabels.constBegin(); itc != colorCodes.constEnd() && itl != colorLabels.constEnd(); ++itc, ++itl) { colorToLabel.insert(*itc, i18n((*itl).toUtf8().constData())); } } void ValueListModel::updateValues() { values.clear(); if (file == nullptr) return; for (const auto &element : const_cast<const File &>(*file)) { QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) { for (Entry::ConstIterator eit = entry->constBegin(); eit != entry->constEnd(); ++eit) { QString key = eit.key().toLower(); if (key == fName) { insertValue(eit.value()); break; } if (eit.value().isEmpty()) qCWarning(LOG_KBIBTEX_GUI) << "value for key" << key << "in entry" << entry->id() << "is empty"; } } } } void ValueListModel::insertValue(const Value &value) { for (const QSharedPointer<ValueItem> &item : value) { const QString text = PlainTextValue::text(*item); if (text.isEmpty()) continue; ///< skip empty values int index = indexOf(text); if (index < 0) { /// previously unknown text ValueLine newValueLine; newValueLine.text = text; newValueLine.count = 1; newValueLine.value.append(item); /// memorize sorting criterium: /// * for persons, use last name first /// * in any case, use lower case const QSharedPointer<Person> person = item.dynamicCast<Person>(); newValueLine.sortBy = person.isNull() ? text.toLower() : person->lastName().toLower() + QStringLiteral(" ") + person->firstName().toLower(); values << newValueLine; } else { ++values[index].count; } } } int ValueListModel::indexOf(const QString &text) { QString color; QString cmpText = text; if (fName == Entry::ftColor && !(color = colorToLabel.key(text, QStringLiteral(""))).isEmpty()) cmpText = color; if (cmpText.isEmpty()) qCWarning(LOG_KBIBTEX_GUI) << "Should never happen"; int i = 0; /// this is really slow for large data sets: O(n^2) /// maybe use a hash table instead? for (const ValueLine &valueLine : const_cast<const ValueLineList &>(values)) { if (valueLine.text == cmpText) return i; ++i; } return -1; } bool ValueListModel::searchAndReplaceValueInEntries(const QModelIndex &index, const Value &newValue) { /// Fetch the string representing the new, user-entered value const QString newText = PlainTextValue::text(newValue); if (newText.isEmpty()) return false; /// Fetch the string as it was shown before the editing started QString origText = data(index, Qt::DisplayRole).toString(); /// Special treatment for colors if (fName == Entry::ftColor) { /// for colors, convert color (RGB) to the associated label QString color = colorToLabel.key(origText); if (!color.isEmpty()) origText = color; } /// Go through all elements in the current file for (const QSharedPointer<Element> &element : const_cast<const File &>(*file)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); /// Process only Entry objects if (!entry.isNull()) { /// Go through every key-value pair in entry (author, title, ...) for (Entry::Iterator eit = entry->begin(); eit != entry->end(); ++eit) { /// Fetch key-value pair's key const QString key = eit.key().toLower(); /// Process only key-value pairs that are filtered for (e.g. only keywords) if (key == fName) { eit.value().replace(origText, newValue.first()); break; } } } } return true; } bool ValueListModel::searchAndReplaceValueInModel(const QModelIndex &index, const Value &newValue) { /// Fetch the string representing the new, user-entered value const QString newText = PlainTextValue::text(newValue); if (newText.isEmpty()) return false; const int row = index.row(); /// Test if user-entered text exists already in model's data /// newTextAlreadyInListIndex will be row of duplicate or /// -1 if new text is unique int newTextAlreadyInListIndex = -1; for (int r = values.count() - 1; newTextAlreadyInListIndex < 0 && r >= 0; --r) { if (row != r && values[r].text == newText) newTextAlreadyInListIndex = r; } if (newTextAlreadyInListIndex < 0) { /// User-entered text is unique, so simply replace /// old text with new text values[row].text = newText; values[row].value = newValue; const QSharedPointer<Person> person = newValue.first().dynamicCast<Person>(); values[row].sortBy = person.isNull() ? QString() : person->lastName() + QStringLiteral(" ") + person->firstName(); } else { /// The user-entered text existed before const int lastRow = values.count() - 1; if (row != lastRow) { /// Unless duplicate is last one in list, /// overwrite edited row with last row's value values[row].text = values[lastRow].text; values[row].value = values[lastRow].value; values[row].sortBy = values[lastRow].sortBy; } /// Remove last row, which is no longer used beginRemoveRows(QModelIndex(), lastRow, lastRow); values.remove(lastRow); endRemoveRows(); } /// Notify Qt about data changed emit dataChanged(index, index); return true; } void ValueListModel::removeValueFromEntries(const QModelIndex &index) { /// Retrieve the Value object containing the user-entered data const Value toBeDeletedValue = values[index.row()].value; if (toBeDeletedValue.isEmpty()) { return; } const QString toBeDeletedText = PlainTextValue::text(toBeDeletedValue); if (toBeDeletedText.isEmpty()) { return; } /// Go through all elements in the current file for (const QSharedPointer<Element> &element : const_cast<const File &>(*file)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); /// Process only Entry objects if (!entry.isNull()) { /// Go through every key-value pair in entry (author, title, ...) for (Entry::Iterator eit = entry->begin(); eit != entry->end(); ++eit) { /// Fetch key-value pair's key const QString key = eit.key().toLower(); /// Process only key-value pairs that are filtered for (e.g. only keywords) if (key == fName) { /// Fetch the key-value pair's value's textual representation const QString valueFullText = PlainTextValue::text(eit.value()); if (valueFullText == toBeDeletedText) { /// If the key-value pair's value's textual representation is the same /// as the value to be delted, remove this key-value pair /// This test is usually true for keys like title, year, or edition. entry->remove(key); /// This would break the Iterator, but code "breakes" from loop anyways } else { /// The test above failed, but the delete operation may have /// to be applied to a ValueItem inside the value. /// Possible keys for such a case include author, editor, or keywords. /// Process each ValueItem inside this Value for (Value::Iterator vit = eit.value().begin(); vit != eit.value().end();) { /// Similar procedure as for full values above: /// If a ValueItem's textual representation is the same /// as the shown string which has be deleted, remove the /// ValueItem from this Value. If the Value becomes empty, /// remove Value as well. const QString valueItemText = PlainTextValue::text(* (*vit)); if (valueItemText == toBeDeletedText) { /// Erase old ValueItem from this Value vit = eit.value().erase(vit); } else ++vit; } if (eit.value().isEmpty()) { /// This value does no longer contain any ValueItems. entry->remove(key); /// This would break the Iterator, but code "breakes" from loop anyways } } break; } } } } } void ValueListModel::removeValueFromModel(const QModelIndex &index) { const int row = index.row(); const int lastRow = values.count() - 1; if (row != lastRow) { /// Unless duplicate is last one in list, /// overwrite edited row with last row's value values[row].text = values[lastRow].text; values[row].value = values[lastRow].value; values[row].sortBy = values[lastRow].sortBy; emit dataChanged(index, index); } /// Remove last row, which is no longer used beginRemoveRows(QModelIndex(), lastRow, lastRow); values.remove(lastRow); endRemoveRows(); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/valuelistmodel.h��������������������������������������������������������������0000664�0000000�0000000�00000011065�13313000262�0017716�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_VALUELISTMODEL_H #define KBIBTEX_GUI_VALUELISTMODEL_H #include "kbibtexgui_export.h" #include <QAbstractTableModel> #include <QTreeView> #include <QStyledItemDelegate> #include "notificationhub.h" #include "models/filemodel.h" class KBIBTEXGUI_EXPORT ValueListDelegate : public QStyledItemDelegate { Q_OBJECT private: QString m_fieldName; QTreeView *m_parent; public: explicit ValueListDelegate(QTreeView *parent = nullptr) : QStyledItemDelegate(parent), m_fieldName(QString()), m_parent(parent) {} QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &, const QModelIndex &index) const override; void setEditorData(QWidget *editor, const QModelIndex &index) const override; void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const override; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override; void initStyleOption(QStyleOptionViewItem *option, const QModelIndex &index) const override; void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; void setFieldName(const QString &fieldName) { m_fieldName = fieldName; } private slots: void commitAndCloseEditor(); }; class KBIBTEXGUI_EXPORT ValueListModel : public QAbstractTableModel, private NotificationListener { Q_OBJECT public: enum ValueListModelRole { /// How many occurrences a value has CountRole = Qt::UserRole + 112, /// Role to sort values by SortRole = Qt::UserRole + 113, /// Role to get text to filter for SearchTextRole = Qt::UserRole + 114 }; enum SortBy { SortByText, SortByCount }; private: struct ValueLine { QString text; QString sortBy; Value value; int count; }; typedef QVector<ValueLine> ValueLineList; const File *file; const QString fName; ValueLineList values; QMap<QString, QString> colorToLabel; bool showCountColumn; SortBy sortBy; public: ValueListModel(const File *bibtexFile, const QString &fieldName, QObject *parent); int rowCount(const QModelIndex &parent = QModelIndex()) const override; int columnCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override; Qt::ItemFlags flags(const QModelIndex &index) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; void removeValue(const QModelIndex &index); void setShowCountColumn(bool showCountColumn); void setSortBy(SortBy sortBy); void notificationEvent(int eventId) override; private: void readConfiguration(); void updateValues(); void insertValue(const Value &value); int indexOf(const QString &text); QString htmlize(const QString &text) const; bool searchAndReplaceValueInEntries(const QModelIndex &index, const Value &newValue); bool searchAndReplaceValueInModel(const QModelIndex &index, const Value &newValue); void removeValueFromEntries(const QModelIndex &index); void removeValueFromModel(const QModelIndex &index); }; #endif // KBIBTEX_GUI_VALUELISTMODEL_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/����������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0016157�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/filesettingswidget.cpp������������������������������������������������0000664�0000000�0000000�00000023403�13313000262�0022571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "filesettingswidget.h" #include <QCheckBox> #include <QFormLayout> #include <KComboBox> #include <KLocalizedString> #include "preferences.h" #include "italictextitemmodel.h" #include "textencoder.h" #include "file.h" #include "guihelper.h" #define createDelimiterString(a, b) (QString(QStringLiteral("%1%2%3")).arg(a).arg(QChar(8230)).arg(b)) FileSettingsWidget::FileSettingsWidget(QWidget *parent) : QWidget(parent), dummyPerson(Person(i18n("John"), i18n("Doe"), i18n("Jr."))), m_file(nullptr) { setupGUI(); } void FileSettingsWidget::resetToLoadedProperties() { loadProperties(m_file); } void FileSettingsWidget::loadProperties(File *file) { m_file = file; if (m_file == nullptr) return; /// Nothing to do if (file->hasProperty(File::Encoding)) { m_comboBoxEncodings->blockSignals(true); QString encoding = file->property(File::Encoding).toString(); int row = GUIHelper::selectValue(m_comboBoxEncodings->model(), encoding); m_comboBoxEncodings->setCurrentIndex(row); m_comboBoxEncodings->blockSignals(false); } if (file->hasProperty(File::StringDelimiter)) { m_comboBoxStringDelimiters->blockSignals(true); QString stringDelimiter = file->property(File::StringDelimiter).toString(); int row = GUIHelper::selectValue(m_comboBoxStringDelimiters->model(), createDelimiterString(stringDelimiter[0], stringDelimiter[1])); m_comboBoxStringDelimiters->setCurrentIndex(row); m_comboBoxStringDelimiters->blockSignals(false); } if (file->hasProperty(File::QuoteComment)) { m_comboBoxQuoteComment->blockSignals(true); Preferences::QuoteComment quoteComment = (Preferences::QuoteComment)file->property(File::QuoteComment).toInt(); m_comboBoxQuoteComment->setCurrentIndex((int)quoteComment); m_comboBoxQuoteComment->blockSignals(false); } if (file->hasProperty(File::KeywordCasing)) { m_comboBoxKeywordCasing->blockSignals(true); KBibTeX::Casing keywordCasing = (KBibTeX::Casing)file->property(File::KeywordCasing).toInt(); m_comboBoxKeywordCasing->setCurrentIndex((int)keywordCasing); m_comboBoxKeywordCasing->blockSignals(false); } if (file->hasProperty(File::ProtectCasing)) { m_checkBoxProtectCasing->blockSignals(true); m_checkBoxProtectCasing->setCheckState((Qt::CheckState)file->property(File::ProtectCasing).toInt()); m_checkBoxProtectCasing->blockSignals(false); } if (file->hasProperty(File::NameFormatting)) { m_comboBoxPersonNameFormatting->blockSignals(true); int row = GUIHelper::selectValue(m_comboBoxPersonNameFormatting->model(), file->property(File::NameFormatting).toString(), ItalicTextItemModel::IdentifierRole); m_comboBoxPersonNameFormatting->setCurrentIndex(row); m_comboBoxPersonNameFormatting->blockSignals(false); } if (file->hasProperty(File::ListSeparator)) { m_comboBoxListSeparator->blockSignals(true); m_comboBoxListSeparator->setCurrentIndex(m_comboBoxListSeparator->findData(file->property(File::ListSeparator))); m_comboBoxListSeparator->blockSignals(false); } } void FileSettingsWidget::applyProperties() { saveProperties(m_file); } void FileSettingsWidget::saveProperties(File *file) { m_file = file; if (m_file == nullptr) return; file->setProperty(File::Encoding, m_comboBoxEncodings->currentText()); QString stringDelimiter = m_comboBoxStringDelimiters->currentText(); file->setProperty(File::StringDelimiter, QString(stringDelimiter[0]) + stringDelimiter[stringDelimiter.length() - 1]); Preferences::QuoteComment quoteComment = (Preferences::QuoteComment)m_comboBoxQuoteComment->currentIndex(); file->setProperty(File::QuoteComment, (int)quoteComment); KBibTeX::Casing keywordCasing = (KBibTeX::Casing)m_comboBoxKeywordCasing->currentIndex(); file->setProperty(File::KeywordCasing, (int)keywordCasing); file->setProperty(File::ProtectCasing, (int)m_checkBoxProtectCasing->checkState()); file->setProperty(File::NameFormatting, m_comboBoxPersonNameFormatting->itemData(m_comboBoxPersonNameFormatting->currentIndex(), ItalicTextItemModel::IdentifierRole)); file->setProperty(File::ListSeparator, m_comboBoxListSeparator->itemData(m_comboBoxListSeparator->currentIndex()).toString()); } void FileSettingsWidget::resetToDefaults() { if (m_file != nullptr) { m_file->setPropertiesToDefault(); loadProperties(m_file); } } void FileSettingsWidget::setupGUI() { QFormLayout *layout = new QFormLayout(this); m_comboBoxEncodings = new KComboBox(false, this); m_comboBoxEncodings->setObjectName(QStringLiteral("comboBoxEncodings")); layout->addRow(i18n("Encoding:"), m_comboBoxEncodings); m_comboBoxEncodings->addItem(QStringLiteral("LaTeX")); m_comboBoxEncodings->insertSeparator(1); m_comboBoxEncodings->addItems(TextEncoder::encodings); connect(m_comboBoxEncodings, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); m_comboBoxStringDelimiters = new KComboBox(false, this); m_comboBoxStringDelimiters->setObjectName(QStringLiteral("comboBoxStringDelimiters")); layout->addRow(i18n("String Delimiters:"), m_comboBoxStringDelimiters); m_comboBoxStringDelimiters->addItem(createDelimiterString('"', '"')); m_comboBoxStringDelimiters->addItem(createDelimiterString('{', '}')); m_comboBoxStringDelimiters->addItem(createDelimiterString('(', ')')); connect(m_comboBoxStringDelimiters, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); m_comboBoxQuoteComment = new KComboBox(false, this); layout->addRow(i18n("Comment Quoting:"), m_comboBoxQuoteComment); m_comboBoxQuoteComment->addItem(i18nc("Comment Quoting", "None")); m_comboBoxQuoteComment->addItem(i18nc("Comment Quoting", "@comment{%1}", QChar(8230))); m_comboBoxQuoteComment->addItem(i18nc("Comment Quoting", "%{%1}", QChar(8230))); connect(m_comboBoxQuoteComment, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); m_comboBoxKeywordCasing = new KComboBox(false, this); layout->addRow(i18n("Keyword Casing:"), m_comboBoxKeywordCasing); m_comboBoxKeywordCasing->addItem(i18nc("Keyword Casing", "lowercase")); m_comboBoxKeywordCasing->addItem(i18nc("Keyword Casing", "Initial capital")); m_comboBoxKeywordCasing->addItem(i18nc("Keyword Casing", "UpperCamelCase")); m_comboBoxKeywordCasing->addItem(i18nc("Keyword Casing", "lowerCamelCase")); m_comboBoxKeywordCasing->addItem(i18nc("Keyword Casing", "UPPERCASE")); connect(m_comboBoxKeywordCasing, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); m_checkBoxProtectCasing = new QCheckBox(i18n("Protect Titles"), this); m_checkBoxProtectCasing->setTristate(true); layout->addRow(i18n("Protect Casing?"), m_checkBoxProtectCasing); connect(m_checkBoxProtectCasing, &QCheckBox::stateChanged, this, &FileSettingsWidget::widgetsChanged); m_comboBoxPersonNameFormatting = new KComboBox(false, this); m_comboBoxPersonNameFormatting->setObjectName(QStringLiteral("comboBoxPersonNameFormatting")); layout->addRow(i18n("Person Names Formatting:"), m_comboBoxPersonNameFormatting); connect(m_comboBoxPersonNameFormatting, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); ItalicTextItemModel *itim = new ItalicTextItemModel(this); itim->addItem(i18n("Use global settings"), QString(QStringLiteral(""))); itim->addItem(Person::transcribePersonName(&dummyPerson, Preferences::personNameFormatFirstLast), Preferences::personNameFormatFirstLast); itim->addItem(Person::transcribePersonName(&dummyPerson, Preferences::personNameFormatLastFirst), Preferences::personNameFormatLastFirst); m_comboBoxPersonNameFormatting->setModel(itim); m_comboBoxListSeparator = new KComboBox(false, this); layout->addRow(i18n("List Separator"), m_comboBoxListSeparator); connect(m_comboBoxListSeparator, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &FileSettingsWidget::widgetsChanged); m_comboBoxListSeparator->addItem(QStringLiteral(";"), QVariant::fromValue<QString>(QStringLiteral("; "))); m_comboBoxListSeparator->addItem(QStringLiteral(","), QVariant::fromValue<QString>(QStringLiteral(", "))); } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/filesettingswidget.h��������������������������������������������������0000664�0000000�0000000�00000004425�13313000262�0022241�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef GUI_FILESETTINGSWIDGET_H #define GUI_FILESETTINGSWIDGET_H #include "kbibtexgui_export.h" #include <QWidget> #include "value.h" class QCheckBox; class KComboBox; class File; /** * @author Thomas Fischer */ class KBIBTEXGUI_EXPORT FileSettingsWidget : public QWidget { Q_OBJECT public: explicit FileSettingsWidget(QWidget *parent); void loadProperties(File *file); void saveProperties(File *file); public slots: void resetToLoadedProperties(); void applyProperties(); void resetToDefaults(); signals: void widgetsChanged(); private: KComboBox *m_comboBoxEncodings; KComboBox *m_comboBoxStringDelimiters; KComboBox *m_comboBoxQuoteComment; KComboBox *m_comboBoxKeywordCasing; QCheckBox *m_checkBoxProtectCasing; KComboBox *m_comboBoxPersonNameFormatting; KComboBox *m_comboBoxListSeparator; const Person dummyPerson; File *m_file; void setupGUI(); }; #endif // GUI_FILESETTINGSWIDGET_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/filterbar.cpp���������������������������������������������������������0000664�0000000�0000000�00000033303�13313000262�0020637�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "filterbar.h" #include <algorithm> #include <QLayout> #include <QLabel> #include <QTimer> #include <QIcon> #include <QPushButton> #include <KComboBox> #include <KLocalizedString> #include <KLineEdit> #include <KConfigGroup> #include <KSharedConfig> #include "bibtexfields.h" #include "delayedexecutiontimer.h" static bool sortStringsLocaleAware(const QString &s1, const QString &s2) { return QString::localeAwareCompare(s1, s2) < 0; } class FilterBar::FilterBarPrivate { private: FilterBar *p; public: KSharedConfigPtr config; const QString configGroupName; KComboBox *comboBoxFilterText; const int maxNumStoredFilterTexts; KComboBox *comboBoxCombination; KComboBox *comboBoxField; QPushButton *buttonSearchPDFfiles; QPushButton *buttonClearAll; DelayedExecutionTimer *delayedTimer; FilterBarPrivate(FilterBar *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("Filter Bar")), maxNumStoredFilterTexts(12) { delayedTimer = new DelayedExecutionTimer(p); setupGUI(); connect(delayedTimer, &DelayedExecutionTimer::triggered, p, &FilterBar::publishFilter); } ~FilterBarPrivate() { delete delayedTimer; } void setupGUI() { QBoxLayout *layout = new QHBoxLayout(p); layout->setMargin(0); QLabel *label = new QLabel(i18n("Filter:"), p); layout->addWidget(label, 0); comboBoxFilterText = new KComboBox(true, p); label->setBuddy(comboBoxFilterText); layout->addWidget(comboBoxFilterText, 5); comboBoxFilterText->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); comboBoxFilterText->setEditable(true); QFontMetrics metrics(comboBoxFilterText->font()); comboBoxFilterText->setMinimumWidth(metrics.width(QStringLiteral("AIWaiw")) * 7); KLineEdit *lineEdit = static_cast<KLineEdit *>(comboBoxFilterText->lineEdit()); lineEdit->setClearButtonEnabled(true); lineEdit->setPlaceholderText(i18n("Filter bibliographic entries")); comboBoxCombination = new KComboBox(false, p); layout->addWidget(comboBoxCombination, 1); comboBoxCombination->addItem(i18n("any word")); /// AnyWord=0 comboBoxCombination->addItem(i18n("every word")); /// EveryWord=1 comboBoxCombination->addItem(i18n("exact phrase")); /// ExactPhrase=2 comboBoxCombination->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); comboBoxField = new KComboBox(false, p); layout->addWidget(comboBoxField, 1); comboBoxField->addItem(i18n("any field"), QVariant()); comboBoxField->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); const BibTeXFields *bf = BibTeXFields::self(); /// Use a hash map to get an alphabetically sorted list QHash<QString, QString> fielddescs; for (const auto &fd : const_cast<const BibTeXFields &>(*bf)) if (fd.upperCamelCaseAlt.isEmpty()) fielddescs.insert(fd.label, fd.upperCamelCase); /// Sort locale-aware QList<QString> keys = fielddescs.keys(); std::sort(keys.begin(), keys.end(), sortStringsLocaleAware); for (const QString &key : const_cast<const QList<QString> &>(keys)) { const QString &value = fielddescs[key]; comboBoxField->addItem(key, value); } buttonSearchPDFfiles = new QPushButton(p); buttonSearchPDFfiles->setIcon(QIcon::fromTheme(QStringLiteral("application-pdf"))); buttonSearchPDFfiles->setToolTip(i18n("Include PDF files in full-text search")); buttonSearchPDFfiles->setCheckable(true); layout->addWidget(buttonSearchPDFfiles, 0); buttonClearAll = new QPushButton(p); buttonClearAll->setIcon(QIcon::fromTheme(QStringLiteral("edit-clear-locationbar-rtl"))); buttonClearAll->setToolTip(i18n("Reset filter criteria")); layout->addWidget(buttonClearAll, 0); /// restore history on filter texts /// see addCompletionString for more detailed explanation KConfigGroup configGroup(config, configGroupName); QStringList completionListDate = configGroup.readEntry(QStringLiteral("PreviousSearches"), QStringList()); for (QStringList::Iterator it = completionListDate.begin(); it != completionListDate.end(); ++it) comboBoxFilterText->addItem((*it).mid(12)); comboBoxFilterText->lineEdit()->setText(QStringLiteral("")); comboBoxCombination->setCurrentIndex(configGroup.readEntry("CurrentCombination", 0)); comboBoxField->setCurrentIndex(configGroup.readEntry("CurrentField", 0)); connect(comboBoxFilterText->lineEdit(), &QLineEdit::textChanged, delayedTimer, &DelayedExecutionTimer::trigger); connect(comboBoxFilterText->lineEdit(), &QLineEdit::returnPressed, p, &FilterBar::userPressedEnter); connect(comboBoxCombination, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &FilterBar::comboboxStatusChanged); connect(comboBoxField, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &FilterBar::comboboxStatusChanged); connect(buttonSearchPDFfiles, &QPushButton::toggled, p, &FilterBar::comboboxStatusChanged); connect(comboBoxCombination, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), delayedTimer, &DelayedExecutionTimer::trigger); connect(comboBoxField, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), delayedTimer, &DelayedExecutionTimer::trigger); connect(buttonSearchPDFfiles, &QPushButton::toggled, delayedTimer, &DelayedExecutionTimer::trigger); connect(buttonClearAll, &QPushButton::clicked, p, &FilterBar::resetState); } SortFilterFileModel::FilterQuery filter() { SortFilterFileModel::FilterQuery result; result.combination = comboBoxCombination->currentIndex() == 0 ? SortFilterFileModel::AnyTerm : SortFilterFileModel::EveryTerm; result.terms.clear(); if (comboBoxCombination->currentIndex() == 2) /// exact phrase result.terms << comboBoxFilterText->lineEdit()->text(); else /// any or every word result.terms = comboBoxFilterText->lineEdit()->text().split(QRegExp(QStringLiteral("\\s+")), QString::SkipEmptyParts); result.field = comboBoxField->currentIndex() == 0 ? QString() : comboBoxField->itemData(comboBoxField->currentIndex(), Qt::UserRole).toString(); result.searchPDFfiles = buttonSearchPDFfiles->isChecked(); return result; } void setFilter(const SortFilterFileModel::FilterQuery &fq) { /// Avoid triggering loops of activation comboBoxCombination->blockSignals(true); /// Set check state for action for either "any word", /// "every word", or "exact phrase", respectively const int combinationIndex = fq.combination == SortFilterFileModel::AnyTerm ? 0 : (fq.terms.count() < 2 ? 2 : 1); comboBoxCombination->setCurrentIndex(combinationIndex); /// Reset activation block comboBoxCombination->blockSignals(false); /// Avoid triggering loops of activation comboBoxField->blockSignals(true); /// Find and check action that corresponds to field name ("author", ...) const QString lower = fq.field.toLower(); for (int idx = comboBoxField->count() - 1; idx >= 0; --idx) { if (comboBoxField->itemData(idx, Qt::UserRole).toString().toLower() == lower) { comboBoxField->setCurrentIndex(idx); break; } } /// Reset activation block comboBoxField->blockSignals(false); /// Avoid triggering loops of activation buttonSearchPDFfiles->blockSignals(true); /// Set flag if associated PDF files have to be searched buttonSearchPDFfiles->setChecked(fq.searchPDFfiles); /// Reset activation block buttonSearchPDFfiles->blockSignals(false); /// Avoid triggering loops of activation comboBoxFilterText->lineEdit()->blockSignals(true); /// Set filter text widget's content comboBoxFilterText->lineEdit()->setText(fq.terms.join(QStringLiteral(" "))); /// Reset activation block comboBoxFilterText->lineEdit()->blockSignals(false); } void addCompletionString(const QString &text) { KConfigGroup configGroup(config, configGroupName); /// Previous searches are stored as a string list, where each individual /// string starts with 12 characters for the date and time when this /// search was used. Starting from the 13th character (12th, if you /// start counting from 0) the user's input is stored. /// This approach has several advantages: It does not require a more /// complex data structure, can easily read and written using /// KConfigGroup's functions, and can be sorted lexicographically/ /// chronologically using QStringList's sort. /// Disadvantage is that string fragments have to be managed manually. QStringList completionListDate = configGroup.readEntry(QStringLiteral("PreviousSearches"), QStringList()); for (QStringList::Iterator it = completionListDate.begin(); it != completionListDate.end();) if ((*it).mid(12) == text) it = completionListDate.erase(it); else ++it; completionListDate << (QDateTime::currentDateTime().toString(QStringLiteral("yyyyMMddhhmm")) + text); /// after sorting, discard all but the maxNumStoredFilterTexts most /// recent user-entered filter texts completionListDate.sort(); while (completionListDate.count() > maxNumStoredFilterTexts) completionListDate.removeFirst(); configGroup.writeEntry(QStringLiteral("PreviousSearches"), completionListDate); config->sync(); /// add user-entered filter text to combobox's drop-down list if (!comboBoxFilterText->contains(text)) comboBoxFilterText->addItem(text); } void storeComboBoxStatus() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("CurrentCombination"), comboBoxCombination->currentIndex()); configGroup.writeEntry(QStringLiteral("CurrentField"), comboBoxField->currentIndex()); configGroup.writeEntry(QStringLiteral("SearchPDFFiles"), buttonSearchPDFfiles->isChecked()); config->sync(); } void restoreState() { KConfigGroup configGroup(config, configGroupName); comboBoxCombination->setCurrentIndex(configGroup.readEntry(QStringLiteral("CurrentCombination"), 0)); comboBoxField->setCurrentIndex(configGroup.readEntry(QStringLiteral("CurrentField"), 0)); buttonSearchPDFfiles->setChecked(configGroup.readEntry(QStringLiteral("SearchPDFFiles"), false)); } void resetState() { comboBoxFilterText->lineEdit()->clear(); comboBoxCombination->setCurrentIndex(0); comboBoxField->setCurrentIndex(0); buttonSearchPDFfiles->setChecked(false); } }; FilterBar::FilterBar(QWidget *parent) : QWidget(parent), d(new FilterBarPrivate(this)) { d->restoreState(); setFocusProxy(d->comboBoxFilterText); QTimer::singleShot(250, this, &FilterBar::buttonHeight); } FilterBar::~FilterBar() { delete d; } void FilterBar::setFilter(const SortFilterFileModel::FilterQuery &fq) { d->setFilter(fq); emit filterChanged(fq); } SortFilterFileModel::FilterQuery FilterBar::filter() { return d->filter(); } void FilterBar::setPlaceholderText(const QString &msg) { KLineEdit *lineEdit = static_cast<KLineEdit *>(d->comboBoxFilterText->lineEdit()); lineEdit->setPlaceholderText(msg); } void FilterBar::comboboxStatusChanged() { d->buttonSearchPDFfiles->setEnabled(d->comboBoxField->currentIndex() == 0); d->storeComboBoxStatus(); } void FilterBar::resetState() { d->resetState(); emit filterChanged(d->filter()); } void FilterBar::userPressedEnter() { /// only store text in auto-completion if user pressed enter d->addCompletionString(d->comboBoxFilterText->lineEdit()->text()); publishFilter(); } void FilterBar::publishFilter() { emit filterChanged(d->filter()); } void FilterBar::buttonHeight() { QSizePolicy sp = d->buttonSearchPDFfiles->sizePolicy(); d->buttonSearchPDFfiles->setSizePolicy(sp.horizontalPolicy(), QSizePolicy::MinimumExpanding); d->buttonClearAll->setSizePolicy(sp.horizontalPolicy(), QSizePolicy::MinimumExpanding); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/filterbar.h�����������������������������������������������������������0000664�0000000�0000000�00000004300�13313000262�0020277�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_FILTERBAR_H #define KBIBTEX_GUI_FILTERBAR_H #include "kbibtexgui_export.h" #include <QWidget> #include "sortfilterfilemodel.h" /** @author Thomas Fischer */ class KBIBTEXGUI_EXPORT FilterBar : public QWidget { Q_OBJECT public: explicit FilterBar(QWidget *parent); ~FilterBar() override; SortFilterFileModel::FilterQuery filter(); void setPlaceholderText(const QString &msg); public slots: /** * Set the filter criteria to be both shown in this filter bar * and applied to the list of elements. * @param fq query data structure to be used */ void setFilter(const SortFilterFileModel::FilterQuery &fq); signals: void filterChanged(const SortFilterFileModel::FilterQuery &); private: class FilterBarPrivate; FilterBarPrivate *d; private slots: void comboboxStatusChanged(); void resetState(); void userPressedEnter(); void publishFilter(); void buttonHeight(); }; #endif // KBIBTEX_GUI_FILTERBAR_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/hidingtabwidget.cpp���������������������������������������������������0000664�0000000�0000000�00000012305�13313000262�0022021�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "hidingtabwidget.h" /// required to for QSet<HiddenTabInfo> uint qHash(const HidingTabWidget::HiddenTabInfo &hti) { return qHash(hti.widget); } /// required to for QSet<HiddenTabInfo> bool operator==(const HidingTabWidget::HiddenTabInfo &a, const HidingTabWidget::HiddenTabInfo &b) { return a.widget == b.widget; } const int HidingTabWidget::InvalidTabPosition = -1; HidingTabWidget::HidingTabWidget(QWidget *parent) : QTabWidget(parent) { /// nothing to see here } QWidget *HidingTabWidget::hideTab(int index) { if (index < 0 || index >= count()) return nullptr; HiddenTabInfo hti; hti.widget = widget(index); hti.leftNeighborWidget = index > 0 ? widget(index - 1) : nullptr; hti.rightNeighborWidget = index < count() - 1 ? widget(index + 1) : nullptr; hti.label = tabText(index); hti.icon = tabIcon(index); hti.enabled = isTabEnabled(index); hti.toolTip = tabToolTip(index); hti.whatsThis = tabWhatsThis(index); m_hiddenTabInfo.insert(hti); QTabWidget::removeTab(index); return hti.widget; } int HidingTabWidget::showTab(QWidget *page) { for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) return showTab(hti); } return InvalidTabPosition; } int HidingTabWidget::showTab(const HiddenTabInfo &hti, int index) { if (index == InvalidTabPosition) { index = count(); ///< append at end of tab row int i = InvalidTabPosition; if ((i = indexOf(hti.leftNeighborWidget)) >= 0) index = i + 1; ///< right of left neighbor else if ((i = indexOf(hti.rightNeighborWidget)) >= 0) index = i; ///< left of right neighbor } /// insert tab using KTabWidget's original function index = QTabWidget::insertTab(index, hti.widget, hti.icon, hti.label); /// restore tab's properties setTabToolTip(index, hti.toolTip); setTabWhatsThis(index, hti.whatsThis); setTabEnabled(index, hti.enabled); return index; } void HidingTabWidget::removeTab(int index) { if (index >= 0 && index < count()) { QWidget *page = widget(index); for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) { m_hiddenTabInfo.remove(hti); break; } } QTabWidget::removeTab(index); } } int HidingTabWidget::addTab(QWidget *page, const QString &label) { for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) { int pos = showTab(hti); setTabText(pos, label); return pos; } } return QTabWidget::addTab(page, label); } int HidingTabWidget::addTab(QWidget *page, const QIcon &icon, const QString &label) { for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) { int pos = showTab(hti); setTabIcon(pos, icon); setTabText(pos, label); return pos; } } return QTabWidget::addTab(page, icon, label); } int HidingTabWidget::insertTab(int index, QWidget *page, const QString &label) { for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) { int pos = showTab(hti, index); setTabText(pos, label); return pos; } } return QTabWidget::insertTab(index, page, label); } int HidingTabWidget::insertTab(int index, QWidget *page, const QIcon &icon, const QString &label) { for (const HiddenTabInfo &hti : const_cast<const QSet<HiddenTabInfo> &>(m_hiddenTabInfo)) { if (hti.widget == page) { index = showTab(hti, index); setTabIcon(index, icon); setTabText(index, label); return index; } } return QTabWidget::insertTab(index, page, icon, label); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/hidingtabwidget.h�����������������������������������������������������0000664�0000000�0000000�00000007601�13313000262�0021471�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_HIDINGTABWIDGET_H #define KBIBTEX_GUI_HIDINGTABWIDGET_H #include <QSet> #include <QTabWidget> /** * @brief The HidingTabWidget class to hide and show tabs in a QTabWidget. * * This class extends the original QTabWidget by the feature of hiding and showing * tabs previously added or inserted. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class HidingTabWidget : public QTabWidget { Q_OBJECT public: /// Negative value to describe an invalid tab position static const int InvalidTabPosition; explicit HidingTabWidget(QWidget *parent = nullptr); /** * Hides the tab at position @param index from this stack of widgets. * The page widget itself is not deleted. * For future reference, the page widget is returned. * If @param index does not refer to a valid widget, NULL will be returned. */ QWidget *hideTab(int index); /** * Shows a previously hidden tab reusing its properties (label, icon, tooltip, what's this, enbled). * If possible, the hidden tab will be shown between its previous neighbor tabs. * If the provided @param page was not added by @see addTab or @see insertTab, * the function will return InvalidTabPosition. If the tab could be shown again, its new position will be returned. * The behavior is undefined if @param page is not a value returned by a previous @see hideTab call. */ int showTab(QWidget *page); /** * Reimplemented from QTabWidget, same semantics. */ void removeTab(int index); /** * Reimplemented from QTabWidget, same semantics. */ int addTab(QWidget *page, const QString &label); /** * Reimplemented from QTabWidget, same semantics. */ int addTab(QWidget *page, const QIcon &icon, const QString &label); /** * Reimplemented from QTabWidget, same semantics. */ int insertTab(int index, QWidget *page, const QString &label); /** * Reimplemented from QTabWidget, same semantics. */ int insertTab(int index, QWidget *page, const QIcon &icon, const QString &label); typedef struct { /// the hidden widget QWidget *widget; /// the hidden widget's neighboring widgets, /// used to find a place where to insert the tab when it will be shown again. QWidget *leftNeighborWidget, *rightNeighborWidget; /// tab properties QIcon icon; QString label; bool enabled; QString toolTip; QString whatsThis; } HiddenTabInfo; private: QSet<HiddenTabInfo> m_hiddenTabInfo; int showTab(const HiddenTabInfo &hti, int index = InvalidTabPosition); }; #endif // KBIBTEX_GUI_HIDINGTABWIDGET_H �������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/menulineedit.cpp������������������������������������������������������0000664�0000000�0000000�00000027763�13313000262�0021364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "menulineedit.h" #include <QLayout> #include <QApplication> #include <QMenu> #include <QTimer> #include <QPushButton> #include <KLineEdit> #include <KTextEdit> #include <KConfigGroup> #include <KSharedConfig> #include "notificationhub.h" const int MenuLineEdit::MenuLineConfigurationChangedEvent = NotificationHub::EventUserDefined + 1861; const QString MenuLineEdit::keyLimitKeyboardTabStops = QStringLiteral("LimitKeyboardTabStops"); class MenuLineEdit::MenuLineEditPrivate : public NotificationListener { private: MenuLineEdit *p; bool isMultiLine; bool m_isReadOnly; QHBoxLayout *hLayout; static const QString transparentStyleSheet, normalStyleSheet; bool makeInnerWidgetsTransparent; public: QPushButton *m_pushButtonType; KLineEdit *m_singleLineEditText; KTextEdit *m_multiLineEditText; MenuLineEditPrivate(bool isMultiLine, MenuLineEdit *parent) : p(parent), m_isReadOnly(false), makeInnerWidgetsTransparent(false), m_singleLineEditText(nullptr), m_multiLineEditText(nullptr) { this->isMultiLine = isMultiLine; /// listen to configuration change events specifically concerning a MenuLineEdit widget NotificationHub::registerNotificationListener(this, MenuLineEdit::MenuLineConfigurationChangedEvent); setupUI(); } ~MenuLineEditPrivate() override { for (int i = hLayout->count() - 1; i >= 0; --i) { QWidget *w = hLayout->itemAt(i)->widget(); w->deleteLater(); } } void notificationEvent(int eventId) override { if (eventId == MenuLineEdit::MenuLineConfigurationChangedEvent) { /// load setting limitKeyboardTabStops KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); static QString const configGroupName = QStringLiteral("User Interface"); KConfigGroup configGroup(config, configGroupName); const bool limitKeyboardTabStops = configGroup.readEntry(MenuLineEdit::keyLimitKeyboardTabStops, false); /// check each widget inside MenuLineEdit for (int i = hLayout->count() - 1; i >= 0; --i) { QWidget *w = hLayout->itemAt(i)->widget(); if (w != nullptr && w != m_singleLineEditText && w != m_multiLineEditText) { /// for all widgets except the main editing widget: change tab focus policy w->setFocusPolicy(limitKeyboardTabStops ? Qt::ClickFocus : Qt::StrongFocus); } } } } void setupUI() { p->setObjectName(QStringLiteral("FieldLineEdit")); hLayout = new QHBoxLayout(p); hLayout->setMargin(0); hLayout->setSpacing(2); m_pushButtonType = new QPushButton(p); appendWidget(m_pushButtonType); hLayout->setStretchFactor(m_pushButtonType, 0); m_pushButtonType->setObjectName(QStringLiteral("FieldLineEditButton")); if (isMultiLine) { m_multiLineEditText = new KTextEdit(p); appendWidget(m_multiLineEditText); connect(m_multiLineEditText, &KTextEdit::textChanged, p, &MenuLineEdit::slotTextChanged); m_multiLineEditText->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); p->setFocusProxy(m_multiLineEditText); m_multiLineEditText->setAcceptRichText(false); } else { m_singleLineEditText = new KLineEdit(p); appendWidget(m_singleLineEditText); hLayout->setStretchFactor(m_singleLineEditText, 100); m_singleLineEditText->setClearButtonEnabled(true); m_singleLineEditText->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); m_singleLineEditText->setCompletionMode(KCompletion::CompletionPopup); m_singleLineEditText->completionObject()->setIgnoreCase(true); p->setFocusProxy(m_singleLineEditText); connect(m_singleLineEditText, &KLineEdit::textEdited, p, &MenuLineEdit::textChanged); } p->setFocusPolicy(Qt::StrongFocus); // FIXME improve focus handling p->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); } void prependWidget(QWidget *widget) { widget->setParent(p); hLayout->insertWidget(0, widget); widget->setStyleSheet(makeInnerWidgetsTransparent ? transparentStyleSheet : normalStyleSheet); setWidgetReadOnly(widget, m_isReadOnly); fixTabOrder(); } void appendWidget(QWidget *widget) { widget->setParent(p); hLayout->addWidget(widget); widget->setStyleSheet(makeInnerWidgetsTransparent ? transparentStyleSheet : normalStyleSheet); setWidgetReadOnly(widget, m_isReadOnly); fixTabOrder(); } void fixTabOrder() { QWidget *cur = nullptr; if (hLayout->count() > 0) p->setTabOrder(p, (cur = hLayout->itemAt(0)->widget())); for (int i = 1; i < hLayout->count(); ++i) { QWidget *next = hLayout->itemAt(i)->widget(); p->setTabOrder(cur, next); cur = next; } } void verticallyStretchButtons() { /// do not vertically stretch if using transparent style sheet if (makeInnerWidgetsTransparent) return; /// check each widget inside MenuLineEdit for (int i = hLayout->count() - 1; i >= 0; --i) { QWidget *w = hLayout->itemAt(i)->widget(); if (w != nullptr && w != m_singleLineEditText && w != m_multiLineEditText) { /// for all widgets except the main editing widget: change tab focus policy QSizePolicy sp = w->sizePolicy(); w->setSizePolicy(sp.horizontalPolicy(), QSizePolicy::MinimumExpanding); } } } void setStyleSheet(bool makeInnerWidgetsTransparent) { this->makeInnerWidgetsTransparent = makeInnerWidgetsTransparent; for (int i = hLayout->count() - 1; i >= 0; --i) { QWidget *w = hLayout->itemAt(i)->widget(); if (w != nullptr) w->setStyleSheet(makeInnerWidgetsTransparent ? transparentStyleSheet : normalStyleSheet); } } void setWidgetReadOnly(QWidget *w, bool isReadOnly) { if (m_singleLineEditText == w) m_singleLineEditText->setReadOnly(isReadOnly); else if (m_multiLineEditText == w) m_multiLineEditText->setReadOnly(isReadOnly); else if (!w->property("isConst").isValid() && !w->property("isConst").toBool()) w->setEnabled(!isReadOnly); } void setReadOnly(bool isReadOnly) { m_isReadOnly = isReadOnly; for (int i = hLayout->count() - 1; i >= 0; --i) { QWidget *w = hLayout->itemAt(i)->widget(); setWidgetReadOnly(w, isReadOnly); } } }; const QString MenuLineEdit::MenuLineEditPrivate::transparentStyleSheet = QStringLiteral("KTextEdit { border-style: none; background-color: transparent; }\nKLineEdit { border-style: none; background-color: transparent; }\nKPushButton { border-style: none; background-color: transparent; padding: 0px; margin-left: 2px; margin-right:2px; text-align: left; }"); const QString MenuLineEdit::MenuLineEditPrivate::normalStyleSheet = QStringLiteral("QPushButton { padding:4px; margin:0px; text-align: left; }\nQPushButton::menu-indicator {subcontrol-position: right center; subcontrol-origin: content;}"); MenuLineEdit::MenuLineEdit(bool isMultiLine, QWidget *parent) : QFrame(parent), d(new MenuLineEditPrivate(isMultiLine, this)) { if (d->m_singleLineEditText != nullptr) { /// Only for single-line variants stretch buttons vertically QTimer::singleShot(250, this, &MenuLineEdit::slotVerticallyStretchButtons); } } MenuLineEdit::~MenuLineEdit() { delete d; } void MenuLineEdit::setMenu(QMenu *menu) { d->m_pushButtonType->setMenu(menu); } void MenuLineEdit::setReadOnly(bool readOnly) { d->setReadOnly(readOnly); } QString MenuLineEdit::text() const { if (d->m_singleLineEditText != nullptr) return d->m_singleLineEditText->text(); if (d->m_multiLineEditText != nullptr) return d->m_multiLineEditText->document()->toPlainText(); return QStringLiteral(""); } void MenuLineEdit::setText(const QString &text) { if (d->m_singleLineEditText != nullptr) { d->m_singleLineEditText->setText(text); d->m_singleLineEditText->setCursorPosition(0); } else if (d->m_multiLineEditText != nullptr) { d->m_multiLineEditText->document()->setPlainText(text); QTextCursor tc = d->m_multiLineEditText->textCursor(); tc.setPosition(0); d->m_multiLineEditText->setTextCursor(tc); } } void MenuLineEdit::setIcon(const QIcon &icon) { d->m_pushButtonType->setIcon(icon); } void MenuLineEdit::setFont(const QFont &font) { if (d->m_singleLineEditText != nullptr) d->m_singleLineEditText->setFont(font); if (d->m_multiLineEditText != nullptr) d->m_multiLineEditText->document()->setDefaultFont(font); } void MenuLineEdit::setButtonToolTip(const QString &text) { d->m_pushButtonType->setToolTip(text); } void MenuLineEdit::setChildAcceptDrops(bool acceptDrops) { if (d->m_singleLineEditText != nullptr) d->m_singleLineEditText->setAcceptDrops(acceptDrops); if (d->m_multiLineEditText != nullptr) d->m_multiLineEditText->setAcceptDrops(acceptDrops); } QWidget *MenuLineEdit::buddy() { if (d->m_singleLineEditText != nullptr) return d->m_singleLineEditText; if (d->m_multiLineEditText != nullptr) return d->m_multiLineEditText; return nullptr; } void MenuLineEdit::prependWidget(QWidget *widget) { d->prependWidget(widget); } void MenuLineEdit::appendWidget(QWidget *widget) { d->appendWidget(widget); } void MenuLineEdit::setInnerWidgetsTransparency(bool makeInnerWidgetsTransparent) { d->setStyleSheet(makeInnerWidgetsTransparent); } bool MenuLineEdit::isModified() const { if (d->m_singleLineEditText != nullptr) return d->m_singleLineEditText->isModified(); if (d->m_multiLineEditText != nullptr) return d->m_multiLineEditText->document()->isModified(); return false; } void MenuLineEdit::setCompletionItems(const QStringList &items) { if (d->m_singleLineEditText != nullptr) d->m_singleLineEditText->completionObject()->setItems(items); } void MenuLineEdit::focusInEvent(QFocusEvent *) { if (d->m_singleLineEditText != nullptr) d->m_singleLineEditText->setFocus(); else if (d->m_multiLineEditText != nullptr) d->m_multiLineEditText->setFocus(); } void MenuLineEdit::slotTextChanged() { Q_ASSERT_X(d->m_multiLineEditText != nullptr, "MenuLineEdit::slotTextChanged", "d->m_multiLineEditText is NULL"); emit textChanged(d->m_multiLineEditText->toPlainText()); } void MenuLineEdit::slotVerticallyStretchButtons() { d->verticallyStretchButtons(); } �������������kbibtex-0.8.1/src/gui/widgets/menulineedit.h��������������������������������������������������������0000664�0000000�0000000�00000005460�13313000262�0021017�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_MENULINEEDIT_H #define KBIBTEX_GUI_MENULINEEDIT_H #include "kbibtexgui_export.h" #include <QFrame> class QMenu; class QIcon; /** @author Thomas Fischer */ class MenuLineEdit : public QFrame { Q_OBJECT public: /** * @brief MenuLineConfigurationChangedEvent * Event id for use with @c NotificationHub. * All MenuLineWidgets register to this event. */ static const int MenuLineConfigurationChangedEvent; /** * @brief keyLimitKeyboardTabStops * Configuration key in group "UserInterface" to access * the setting for limited keyboard tab stops. */ static const QString keyLimitKeyboardTabStops; MenuLineEdit(bool isMultiLine, QWidget *parent); ~MenuLineEdit() override; void setMenu(QMenu *menu); virtual void setReadOnly(bool); QString text() const; void setText(const QString &); void setIcon(const QIcon &icon); void setFont(const QFont &font); void setButtonToolTip(const QString &); void setChildAcceptDrops(bool acceptDrops); QWidget *buddy(); void prependWidget(QWidget *widget); void appendWidget(QWidget *widget); void setInnerWidgetsTransparency(bool makeInnerWidgetsTransparent); bool isModified() const; void setCompletionItems(const QStringList &items); protected: void focusInEvent(QFocusEvent *event) override; signals: void textChanged(const QString &); private slots: void slotTextChanged(); void slotVerticallyStretchButtons(); private: class MenuLineEditPrivate; MenuLineEditPrivate *const d; }; #endif // KBIBTEX_GUI_MENULINEEDIT_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/radiobuttontreeview.cpp�����������������������������������������������0000664�0000000�0000000�00000011662�13313000262�0022776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "radiobuttontreeview.h" #include <QMouseEvent> #include <QKeyEvent> #include <QApplication> RadioButtonItemDelegate::RadioButtonItemDelegate(QObject *p) : QStyledItemDelegate(p) { // nothing } void RadioButtonItemDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { if (index.data(RadioButtonTreeView::IsRadioRole).canConvert<bool>() && index.data(RadioButtonTreeView::IsRadioRole).toBool()) { /// determine size and spacing of radio buttons in current style const int radioButtonWidth = QApplication::style()->pixelMetric(QStyle::PM_ExclusiveIndicatorWidth, &option); const int radioButtonHeight = QApplication::style()->pixelMetric(QStyle::PM_ExclusiveIndicatorHeight, &option); const int spacing = QApplication::style()->pixelMetric(QStyle::PM_RadioButtonLabelSpacing, &option); /// draw default appearance (text, highlighting) shifted to the left QStyleOptionViewItem myOption = option; const int left = myOption.rect.left(); myOption.rect.setLeft(left + spacing * 3 / 2 + radioButtonWidth); QStyledItemDelegate::paint(painter, myOption, index); /// draw radio button in the open space myOption.rect.setLeft(left + spacing / 2); myOption.rect.setWidth(radioButtonWidth); myOption.rect.setTop(option.rect.top() + (option.rect.height() - radioButtonHeight) / 2); myOption.rect.setHeight(radioButtonHeight); if (index.data(RadioButtonTreeView::RadioSelectedRole).canConvert<bool>()) { /// change radio button's visual appearance if selected or not bool radioButtonSelected = index.data(RadioButtonTreeView::RadioSelectedRole).toBool(); myOption.state |= radioButtonSelected ? QStyle::State_On : QStyle::State_Off; } QApplication::style()->drawPrimitive(QStyle::PE_IndicatorRadioButton, &myOption, painter); } else QStyledItemDelegate::paint(painter, option, index); } QSize RadioButtonItemDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { QSize s = QStyledItemDelegate::sizeHint(option, index); if (index.data(RadioButtonTreeView::IsRadioRole).toBool()) { /// determine size of radio buttons in current style int radioButtonHeight = QApplication::style()->pixelMetric(QStyle::PM_ExclusiveIndicatorHeight, &option); /// ensure that line is tall enough to draw radio button s.setHeight(qMax(s.height(), radioButtonHeight)); } return s; } RadioButtonTreeView::RadioButtonTreeView(QWidget *parent) : QTreeView(parent) { setItemDelegate(new RadioButtonItemDelegate(this)); } void RadioButtonTreeView::mouseReleaseEvent(QMouseEvent *event) { QModelIndex index = indexAt(event->pos()); if (index.data(IsRadioRole).toBool()) { /// clicking on an alternative's item in tree view should select alternative switchRadioFlag(index); event->accept(); } else QTreeView::mouseReleaseEvent(event); } void RadioButtonTreeView::keyReleaseEvent(QKeyEvent *event) { QModelIndex index = currentIndex(); if (index.data(IsRadioRole).toBool() && event->key() == Qt::Key_Space) { /// pressing space on an alternative's item in tree view should select alternative switchRadioFlag(index); event->accept(); } else QTreeView::keyReleaseEvent(event); } void RadioButtonTreeView::switchRadioFlag(QModelIndex &index) { const int maxRow = 1024; const int col = index.column(); for (int row = 0; row < maxRow; ++row) { const QModelIndex &sib = index.sibling(row, col); model()->setData(sib, QVariant::fromValue(sib == index), RadioSelectedRole); } } ������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/radiobuttontreeview.h�������������������������������������������������0000664�0000000�0000000�00000005746�13313000262�0022451�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_GUI_RADIOBUTTONTREEVIEW_H #define KBIBTEX_GUI_RADIOBUTTONTREEVIEW_H #include <QTreeView> #include <QStyledItemDelegate> class QMouseEvent; class QKeyEvent; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class RadioButtonItemDelegate : public QStyledItemDelegate { Q_OBJECT public: explicit RadioButtonItemDelegate(QObject *p); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> * * This class is a refinement of QTreeView, as it adds support * for radio buttons for elements in the view. * To use this view, set RadioButtonItemDelegate as the item delegate * and use a model that respondes to the roles IsRadioRole and * RadioSelectedRole. The role IsRadioRole returns a boolean value * packed in a QVariant if a QModelIndex should have a radio button, * RadioSelectedRole is boolean value as well, determining if a * radio button is selected or not. * This class will take care that if a QModelIndex receives a mouse * click or a space key press, RadioSelectedRole will be set true for * this QModelIndex and all sibling indices will be set to false. */ class RadioButtonTreeView : public QTreeView { Q_OBJECT public: enum RadioButtonTreeViewRole { RadioSelectedRole = Qt::UserRole + 102, IsRadioRole = Qt::UserRole + 103 }; explicit RadioButtonTreeView(QWidget *parent); protected: void mouseReleaseEvent(QMouseEvent *event) override; void keyReleaseEvent(QKeyEvent *event) override; private: void switchRadioFlag(QModelIndex &index); }; #endif // KBIBTEX_GUI_RADIOBUTTONTREEVIEW_H ��������������������������kbibtex-0.8.1/src/gui/widgets/rangewidget.cpp�������������������������������������������������������0000664�0000000�0000000�00000015367�13313000262�0021177�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "rangewidget.h" #include <QComboBox> #include <QLineEdit> #include <QBoxLayout> #include <QStringListModel> #include <QLabel> #include <KLocalizedString> class RangeWidget::Private { private: RangeWidget *p; public: enum TextAlternative {LowerAlternativ, UpperAlternative}; const QStringList values; int lowerValue, upperValue; QComboBox *lowerComboBox, *upperComboBox; Private(const QStringList &_values, RangeWidget *parent) : p(parent), values(_values), lowerValue(0), upperValue(_values.size() - 1) { QBoxLayout *layout = new QHBoxLayout(parent); layout->setMargin(0); lowerComboBox = new QComboBox(parent); layout->addWidget(lowerComboBox, 1, Qt::AlignCenter); lowerComboBox->setModel(new QStringListModel(lowerComboBox)); QLabel *label = new QLabel(QChar(0x22ef), parent); layout->addWidget(label, 0, Qt::AlignCenter); upperComboBox = new QComboBox(parent); layout->addWidget(upperComboBox, 1, Qt::AlignCenter); upperComboBox->setModel(new QStringListModel(upperComboBox)); layout->addStretch(100); ///< left-align this widget's child widgets adjustComboBoxes(); connect(lowerComboBox, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), parent, &RangeWidget::lowerComboBoxChanged); connect(upperComboBox, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), parent, &RangeWidget::upperComboBoxChanged); } QStringList stringListRange(const QStringList &originalList, int min, int max, const TextAlternative textAlternative) { if (originalList.isEmpty()) return QStringList(); QStringList result; for (int i = qMin(originalList.size() - 1, qMin(max, qMax(0, min))); i <= qMin(originalList.size() - 1, qMax(min, qMax(0, max))); ++i) { const QStringList alternatives = originalList[i].split(QStringLiteral("|")); Q_ASSERT_X(alternatives.size() >= 1 && alternatives.size() <= 2, "RangeWidget::Private::stringListRange", "Either one or two alternatives must be given"); const int alternativeIndex = alternatives.size() == 1 || textAlternative == LowerAlternativ ? 0 : 1; if (!alternatives[alternativeIndex].isEmpty()) result.append(alternatives[alternativeIndex]); } return result; } void adjustComboBoxes() { const int minimum = 0, maximum = values.size() - 1; Q_ASSERT_X(minimum <= lowerValue, "RangeWidget::Private::adjustSpinBoxes", "minimum<=lowerValue"); Q_ASSERT_X(lowerValue <= upperValue, "RangeWidget::Private::adjustSpinBoxes", "lowerValue<=upperValue"); Q_ASSERT_X(upperValue <= maximum, "RangeWidget::Private::adjustSpinBoxes", "upperValue<=maximum"); /// Disable signals being emitted when the combo boxes get updated const bool previousBlockSignalsValueLower = lowerComboBox->blockSignals(true); const bool previousBlockSignalsValueUpper = upperComboBox->blockSignals(true); /// Compute a temporary QStringList containing only values from minimum to current upper value const QStringList lowerValues = stringListRange(values, minimum, upperValue, LowerAlternativ); qobject_cast<QStringListModel *>(lowerComboBox->model())->setStringList(lowerValues); lowerComboBox->setCurrentIndex(lowerValue); /// Compute a temporary QStringList containing only values from current lower value to maximum const QStringList upperValues = stringListRange(values, lowerValue, maximum, UpperAlternative); qobject_cast<QStringListModel *>(upperComboBox->model())->setStringList(upperValues); upperComboBox->setCurrentIndex(upperValue - lowerValue); /// Re-enable signal for the combo boxes lowerComboBox->blockSignals(previousBlockSignalsValueLower); upperComboBox->blockSignals(previousBlockSignalsValueUpper); } }; RangeWidget::RangeWidget(const QStringList &values, QWidget *parent) : QWidget(parent), d(new Private(values, this)) { /// nothing } int RangeWidget::maximum() const { return d->values.size() - 1; } void RangeWidget::setLowerValue(int newLowerValue) { newLowerValue = qMin(qMax(qMin(newLowerValue, d->values.size() - 1), 0), d->upperValue); if (newLowerValue != d->lowerValue) { d->lowerValue = newLowerValue; emit lowerValueChanged(d->lowerValue); d->adjustComboBoxes(); } } int RangeWidget::lowerValue() const { return d->lowerValue; } void RangeWidget::setUpperValue(int newUpperValue) { newUpperValue = qMax(qMax(qMin(newUpperValue, d->values.size() - 1), 0), d->lowerValue); if (newUpperValue != d->upperValue) { d->upperValue = newUpperValue; emit upperValueChanged(d->upperValue); d->adjustComboBoxes(); } } int RangeWidget::upperValue() const { return d->upperValue; } void RangeWidget::lowerComboBoxChanged(int spinboxLowerValue) { const int newLowerValue = spinboxLowerValue; if (newLowerValue != d->lowerValue) { d->lowerValue = newLowerValue; emit lowerValueChanged(d->lowerValue); d->adjustComboBoxes(); } } void RangeWidget::upperComboBoxChanged(int spinboxUpperValue) { const int newUpperValue = spinboxUpperValue + d->lowerValue; if (newUpperValue != d->upperValue) { d->upperValue = newUpperValue; emit upperValueChanged(d->upperValue); d->adjustComboBoxes(); } } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/rangewidget.h���������������������������������������������������������0000664�0000000�0000000�00000010435�13313000262�0020633�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef KBIBTEX_GUI_RANGEWIDGET_H #define KBIBTEX_GUI_RANGEWIDGET_H #include "kbibtexgui_export.h" #include <QWidget> /** * Allows the user to specify a minimum and a maximum out of a range of values. * Values are provided as a QStringList for visualization in two QComboBox lists * (one of minimum, one for maximum). Programmatically, the range of values * goes from 0 to QStringList's size - 1. The two QComboBox's values shown to * the user are interlinked, so that for the 'minimum' QComboBox no values above * the 'maximum' QComboBox's current value are available; vice versa, the * 'maximum' QComboBox shows no values below the 'minimum' QComboBox's current * value. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT RangeWidget : public QWidget { Q_OBJECT Q_PROPERTY(int lowerValue READ lowerValue WRITE setLowerValue NOTIFY lowerValueChanged) Q_PROPERTY(int upperValue READ upperValue WRITE setUpperValue NOTIFY upperValueChanged) public: /** * @brief RangeWidget * @param values List of alternatives shown in the QComboBoxes * @param parent QWidget's parent */ explicit RangeWidget(const QStringList &values, QWidget *parent = nullptr); /** * Returns the maximum value of this RangeWidget. * Will always be the last index of the QStringList passed at construction, * i.e. QStringList's size - 1 * @return maximum range value */ int maximum() const; /** * Sets the lower value. The value will be normalized to fit the following * criteria: (1) at least as large as the minimum value (=0), (2) at most * as large as the maximum value, (3) not larger than the upper value. * @param newLowerValue new lower value of the range */ void setLowerValue(int newLowerValue); /** * Returns the current lower value * @return lower value of the range */ int lowerValue() const; /** * Sets the upper value. The value will be normalized to fit the following * criteria: (1) at least as large as the minimum value (=0), (2) at most * as large as the maximum value, (3) not smaller than the lower value. * @param newUpperValue new upper value of the range */ void setUpperValue(int newUpperValue); /** * Returns the current upper value * @return upper value of the range */ int upperValue() const; signals: /** * Signal notifying about the change of the lower value. This signal * will not be triggered if the value is set to the same value it * already has. */ void lowerValueChanged(int); /** * Signal notifying about the change of the upper value. This signal * will not be triggered if the value is set to the same value it * already has. */ void upperValueChanged(int); private slots: void lowerComboBoxChanged(int); void upperComboBoxChanged(int); private: class Private; Private *const d; }; #endif // KBIBTEX_GUI_RANGEWIDGET_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/starrating.cpp��������������������������������������������������������0000664�0000000�0000000�00000024133�13313000262�0021044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "starrating.h" #include <QHBoxLayout> #include <QLabel> #include <QFontMetrics> #include <QPaintEvent> #include <QMouseEvent> #include <QPainter> #include <QTimer> #include <QPushButton> #include <KLocalizedString> class StarRating::Private { private: StarRating *p; public: static const int paintMargin; bool isReadOnly; float percent; int maxNumberOfStars; int spacing; const QString unsetStarsText; QLabel *labelPercent; QPushButton *clearButton; QPoint mouseLocation; Private(int mnos, StarRating *parent) : p(parent), isReadOnly(false), percent(-1.0), maxNumberOfStars(mnos), unsetStarsText(i18n("Not set")) { QHBoxLayout *layout = new QHBoxLayout(p); spacing = qMax(layout->spacing(), 8); layout->setContentsMargins(0, 0, 0, 0); labelPercent = new QLabel(p); layout->addWidget(labelPercent, 0, Qt::AlignRight | Qt::AlignVCenter); QFontMetrics fm(labelPercent->fontMetrics()); labelPercent->setFixedWidth(fm.width(unsetStarsText)); labelPercent->setAlignment(Qt::AlignRight | Qt::AlignVCenter); labelPercent->setText(unsetStarsText); labelPercent->installEventFilter(parent); layout->addStretch(1); clearButton = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-clear-locationbar-rtl")), QString(), p); layout->addWidget(clearButton, 0, Qt::AlignRight | Qt::AlignVCenter); connect(clearButton, &QPushButton::clicked, p, &StarRating::clear); clearButton->installEventFilter(parent); } QRect starsInside() const { const int starRectHeight = qMin(labelPercent->height() * 3 / 2, clearButton->height()); return QRect(QPoint(labelPercent->width() + spacing, (p->height() - starRectHeight) / 2), QSize(p->width() - 2 * spacing - clearButton->width() - labelPercent->width(), starRectHeight)); } float percentForPosition(const QPoint pos, int numTotalStars, const QRect inside) { const int starSize = qMin(inside.height() - 2 * Private::paintMargin, (inside.width() - 2 * Private::paintMargin) / numTotalStars); const int width = starSize * numTotalStars; const int x = pos.x() - Private::paintMargin - inside.left(); const float percent = x * 100.0f / width; return qMax(0.0f, qMin(100.0f, percent)); } }; const int StarRating::Private::paintMargin = 2; StarRating::StarRating(int maxNumberOfStars, QWidget *parent) : QWidget(parent), d(new Private(maxNumberOfStars, this)) { QTimer::singleShot(250, this, &StarRating::buttonHeight); setMouseTracking(true); } void StarRating::paintEvent(QPaintEvent *ev) { QWidget::paintEvent(ev); QPainter p(this); const QRect r = d->starsInside(); const float percent = d->mouseLocation.isNull() ? d->percent : d->percentForPosition(d->mouseLocation, d->maxNumberOfStars, r); if (percent >= 0.0) { paintStars(&p, KIconLoader::DefaultState, d->maxNumberOfStars, percent, d->starsInside()); if (d->maxNumberOfStars < 10) d->labelPercent->setText(QString::number(percent * d->maxNumberOfStars / 100.0, 'f', 1)); else d->labelPercent->setText(QString::number(percent * d->maxNumberOfStars / 100)); } else { p.setOpacity(0.7); paintStars(&p, KIconLoader::DisabledState, d->maxNumberOfStars, 0.0, d->starsInside()); d->labelPercent->setText(d->unsetStarsText); } ev->accept(); } void StarRating::mouseReleaseEvent(QMouseEvent *ev) { QWidget::mouseReleaseEvent(ev); if (!d->isReadOnly && ev->button() == Qt::LeftButton) { d->mouseLocation = QPoint(); const float newPercent = d->percentForPosition(ev->pos(), d->maxNumberOfStars, d->starsInside()); setValue(newPercent); emit modified(); ev->accept(); } } void StarRating::mouseMoveEvent(QMouseEvent *ev) { QWidget::mouseMoveEvent(ev); if (!d->isReadOnly) { d->mouseLocation = ev->pos(); if (d->mouseLocation.x() < d->labelPercent->width() || d->mouseLocation.x() > width() - d->clearButton->width()) d->mouseLocation = QPoint(); update(); ev->accept(); } } void StarRating::leaveEvent(QEvent *ev) { QWidget::leaveEvent(ev); if (!d->isReadOnly) { d->mouseLocation = QPoint(); update(); ev->accept(); } } bool StarRating::eventFilter(QObject *obj, QEvent *event) { if (obj != d->labelPercent && obj != d->clearButton) return false; if ((event->type() == QEvent::MouseMove || event->type() == QEvent::Enter) && d->mouseLocation != QPoint()) { d->mouseLocation = QPoint(); update(); } return false; } float StarRating::value() const { return d->percent; } void StarRating::setValue(float percent) { if (d->isReadOnly) return; ///< disallow modifications if read-only if (percent >= 0.0 && percent <= 100.0) { d->percent = percent; update(); } } void StarRating::unsetValue() { if (d->isReadOnly) return; ///< disallow modifications if read-only d->mouseLocation = QPoint(); d->percent = -1.0; update(); } void StarRating::setReadOnly(bool isReadOnly) { d->isReadOnly = isReadOnly; d->clearButton->setEnabled(!isReadOnly); setMouseTracking(!isReadOnly); } void StarRating::clear() { if (d->isReadOnly) return; ///< disallow modifications if read-only unsetValue(); emit modified(); } void StarRating::buttonHeight() { const QSizePolicy sp = d->clearButton->sizePolicy(); /// Allow clear button to take as much vertical space as available d->clearButton->setSizePolicy(sp.horizontalPolicy(), QSizePolicy::MinimumExpanding); } void StarRating::paintStars(QPainter *painter, KIconLoader::States defaultState, int numTotalStars, float percent, const QRect inside) { painter->save(); ///< Save the current painter's state; at this function's end restored /// Calculate a single star's width/height /// so that all stars fit into the "inside" rectangle const int starSize = qMin(inside.height() - 2 * Private::paintMargin, (inside.width() - 2 * Private::paintMargin) / numTotalStars); /// First, draw active/golden/glowing stars (on the left side) /// Create a pixmap of a single active/golden/glowing star QPixmap starPixmap = KIconLoader::global()->loadIcon(QStringLiteral("rating"), KIconLoader::Small, starSize, defaultState); /// Calculate vertical position (same for all stars) const int y = inside.top() + (inside.height() - starSize) / 2; /// Number of full golden stars int numActiveStars = percent * numTotalStars / 100; /// Number of golden pixels of the star that is /// partially golden and partially grey int coloredPartWidth = (percent * numTotalStars / 100 - numActiveStars) * starSize; /// Horizontal position of first star int x = inside.left() + Private::paintMargin; int i = 0; ///< start with first star /// Draw active (colored) stars for (; i < numActiveStars; ++i, x += starSize) painter->drawPixmap(x, y, starPixmap); if (coloredPartWidth > 0) { /// One star is partially colored, so draw star's golden left half painter->drawPixmap(x, y, starPixmap, 0, 0, coloredPartWidth, 0); } /// Second, draw grey/disabled stars (on the right side) /// To do so, replace the previously used golden star pixmal with a grey/disabled one starPixmap = KIconLoader::global()->loadIcon(QStringLiteral("rating"), KIconLoader::Small, starSize, KIconLoader::DisabledState); if (coloredPartWidth > 0) { /// One star is partially grey, so draw star's grey right half painter->drawPixmap(x + coloredPartWidth, y, starPixmap, coloredPartWidth, 0, starSize - coloredPartWidth, 0); x += starSize; ++i; } /// Draw the remaining inactive (grey) stars for (; i < numTotalStars; ++i, x += starSize) painter->drawPixmap(x, y, starPixmap); painter->restore(); ///< Restore the painter's state as saved at this function's beginning } bool StarRatingFieldInput::reset(const Value &value) { bool result = false; const QString text = PlainTextValue::text(value); if (text.isEmpty()) { unsetValue(); result = true; } else { const double number = text.toDouble(&result); if (result && number >= 0.0 && number <= 100.0) { setValue(number); result = true; } else { /// Some value provided that cannot be interpreted unsetValue(); } } return result; } bool StarRatingFieldInput::apply(Value &v) const { v.clear(); const double percent = value(); if (percent >= 0.0 && percent <= 100) v.append(QSharedPointer<PlainText>(new PlainText(QString::number(percent, 'f', 2)))); return true; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/gui/widgets/starrating.h����������������������������������������������������������0000664�0000000�0000000�00000012217�13313000262�0020511�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef KBIBTEX_GUI_STARRATING_H #define KBIBTEX_GUI_STARRATING_H #include "kbibtexgui_export.h" #include <QWidget> #include <KIconLoader> #include "value.h" class QLabel; class QPaintEvent; class QMouseEvent; class QPushButton; /** * A widget which shows a number of stars in a horizonal row. * A floating-point value between 0.0 and n (n=number of stars) can be * assigned to this widget; based on this value, the corresponding * number of stars on the left side will be colored golden, the stars * on the right side will be shown in grey. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT StarRating : public QWidget { Q_OBJECT public: /** * Create a star rating widget with a given number of stars. * * @param maxNumberOfStars number of stars (recommended value is 8) * @param parent parent widget */ explicit StarRating(int maxNumberOfStars, QWidget *parent = nullptr); /** * Get the current rating in percent (i.e >=0.0 and <=100.0). * If no rating has been set (e.g. by a previous call of @see unsetValue), * the return value will be negative. * @return either percent between 0.0 and 100.0, or a negative value */ float value() const; /** * Set the rating in percent (valid only >=0.0 and <=100.0). * @param percent value between 0.0 and 100.0 */ void setValue(float percent); /** * Remove any value assigned to this widget. * No stars will be highlighted and some "no value set" text * will be shown. * @see value will return a negative value. */ void unsetValue(); /** * Set this widget in read-only or read-writeable mode. * @param isReadOnly @c true if widget is to be read-only, @c false if modifyable */ void setReadOnly(bool isReadOnly); /** * Paint a horizonal sequence of stars on a painter. * * @param painter painter to draw on * @param defaultState how icons shall be drawn; common values are KIconLoader::DefaultState and KIconLoader::DisabledState * @param numTotalStars maximum/total number of stars * @param percent percent value of "glowing" starts, to be >=0.0 and <= 100.0 * @param inside fit and paint stars inside this rectangle on the painter */ static void paintStars(QPainter *painter, KIconLoader::States defaultState, int numTotalStars, float percent, const QRect inside); signals: void modified(); protected: void paintEvent(QPaintEvent *) override; void mouseReleaseEvent(QMouseEvent *) override; void mouseMoveEvent(QMouseEvent *) override; void leaveEvent(QEvent *) override; bool eventFilter(QObject *obj, QEvent *event) override; private slots: void clear(); void buttonHeight(); private: class Private; Private *const d; }; /** * A specialization of @see StarRating mimicing a FieldInput widget. * As part of this specialization, @see apply and @see reset functions * to write to or read from a Value object. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXGUI_EXPORT StarRatingFieldInput : public StarRating { Q_OBJECT public: explicit StarRatingFieldInput(int maxNumberOfStars, QWidget *parent = nullptr) : StarRating(maxNumberOfStars, parent) { /* nothing */ } /** * Set this widget's state based on the provided Value object * @param value Value object to evaluate * @return @c true if the Value could be interpreted into a star rating, @c false otherwise */ bool reset(const Value &value); /** * Write this widget's value into the provided Value object. * @param value Value object to modify * @return @c true if the apply operation succeeded, @c false otherwise (should not happen) */ bool apply(Value &value) const; }; #endif // KBIBTEX_GUI_STARRATING_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/�������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0014334�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/CMakeLists.txt�����������������������������������������������������������������0000664�0000000�0000000�00000004064�13313000262�0017100�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# KBibTeXIO library set( kbibtexio_LIB_SRCS encoder.cpp encoderlatex.cpp encoderxml.cpp fileexporterbibtex2html.cpp fileexporterbibtex.cpp fileexporterbibutils.cpp fileexporterbibtexoutput.cpp fileexporter.cpp fileexporterpdf.cpp fileexporterps.cpp fileexporterris.cpp fileexporterrtf.cpp fileexportertoolchain.cpp fileexporterxml.cpp fileexporterxslt.cpp fileimporterbibtex.cpp fileimporterbibutils.cpp fileimporter.cpp fileimporterpdf.cpp fileimporterris.cpp fileinfo.cpp textencoder.cpp bibutils.cpp xsltransform.cpp ${CMAKE_SOURCE_DIR}/src/global/kbibtex.cpp ${CMAKE_SOURCE_DIR}/src/global/preferences.cpp logging_io.cpp ) set( kbibtexio_HDRS encoder.h encoderlatex.h encoderxml.h fileexporterbibtex2html.h fileexporterbibtex.h fileexporterbibutils.h fileexporterbibtexoutput.h fileexporter.h fileexporterpdf.h fileexporterps.h fileexporterris.h fileexporterrtf.h fileexportertoolchain.h fileexporterxml.h fileexporterxslt.h fileimporterbibtex.h fileimporterbibutils.h fileimporter.h fileimporterpdf.h fileimporterris.h fileinfo.h textencoder.h bibutils.h xsltransform.h ) if(UNITY_BUILD) enable_unity_build(kbibtexio kbibtexio_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/global ) add_library( kbibtexio SHARED ${kbibtexio_LIB_SRCS} ) target_link_libraries( kbibtexio Qt5::Core Qt5::Widgets Qt5::XmlPatterns KF5::I18n KF5::XmlGui Poppler::Qt5 ${ICU_LIBRARIES} kbibtexconfig kbibtexdata ) set_target_properties( kbibtexio PROPERTIES EXPORT_NAME "kbibtexio" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexio ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexio ) ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/bibutils.cpp�������������������������������������������������������������������0000664�0000000�0000000�00000017101�13313000262�0016655�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "bibutils.h" #include <QProcess> #include <QBuffer> #include <QByteArray> #include <QStandardPaths> #include "logging_io.h" class BibUtils::Private { private: // UNUSED BibUtils *p; public: BibUtils::Format format; Private(BibUtils */* UNUSED parent*/) : /* UNUSED p(parent),*/ format(BibUtils::MODS) { /// nothing } }; BibUtils::BibUtils() : d(new BibUtils::Private(this)) { /// nothing } BibUtils::~BibUtils() { delete d; } void BibUtils::setFormat(const BibUtils::Format format) { d->format = format; } BibUtils::Format BibUtils::format() const { return d->format; } bool BibUtils::available() { enum State {untested, avail, unavail}; static State state = untested; /// Perform test only once, later rely on statically stored result if (state == untested) { /// Test a number of known BibUtils programs static const QStringList programs = QStringList() << QStringLiteral("bib2xml") << QStringLiteral("isi2xml") << QStringLiteral("ris2xml") << QStringLiteral("end2xml"); state = avail; for (const QString &program : programs) { const QString fullPath = QStandardPaths::findExecutable(program); if (fullPath.isEmpty()) { state = unavail; ///< missing a single program is reason to assume that BibUtils is not correctly installed break; } } if (state == avail) qCDebug(LOG_KBIBTEX_IO) << "BibUtils found, using it to import/export certain types of bibliographies"; else if (state == unavail) qCWarning(LOG_KBIBTEX_IO) << "No or only an incomplete installation of BibUtils found"; } return state == avail; } bool BibUtils::convert(QIODevice &source, const BibUtils::Format sourceFormat, QIODevice &destination, const BibUtils::Format destinationFormat) const { /// To proceed, either the source format or the destination format /// has to be MODS, otherwise ... if (sourceFormat != MODS && destinationFormat != MODS) { /// Add indirection: convert source format to MODS, /// then convert MODS data to destination format /// Intermediate buffer to hold MODS data QBuffer buffer; bool result = convert(source, sourceFormat, buffer, BibUtils::MODS); if (result) result = convert(buffer, BibUtils::MODS, destination, destinationFormat); return result; } QString bibUtilsProgram; QString utf8Argument = QStringLiteral("-un"); /// Determine part of BibUtils program name that represents source format switch (sourceFormat) { case MODS: bibUtilsProgram = QStringLiteral("xml"); utf8Argument = QStringLiteral("-nb"); break; case BibTeX: bibUtilsProgram = QStringLiteral("bib"); break; case BibLaTeX: bibUtilsProgram = QStringLiteral("biblatex"); break; case ISI: bibUtilsProgram = QStringLiteral("isi"); break; case RIS: bibUtilsProgram = QStringLiteral("ris"); break; case EndNote: bibUtilsProgram = QStringLiteral("end"); break; case EndNoteXML: bibUtilsProgram = QStringLiteral("endx"); break; /// case ADS not supported by BibUtils case WordBib: bibUtilsProgram = QStringLiteral("wordbib"); break; case Copac: bibUtilsProgram = QStringLiteral("copac"); break; case Med: bibUtilsProgram = QStringLiteral("med"); break; default: qCWarning(LOG_KBIBTEX_IO) << "Unsupported BibUtils input format:" << sourceFormat; return false; } bibUtilsProgram.append(QStringLiteral("2")); /// Determine part of BibUtils program name that represents destination format switch (destinationFormat) { case MODS: bibUtilsProgram.append(QStringLiteral("xml")); break; case BibTeX: bibUtilsProgram.append(QStringLiteral("bib")); break; /// case BibLaTeX not supported by BibUtils case ISI: bibUtilsProgram.append(QStringLiteral("isi")); break; case RIS: bibUtilsProgram.append(QStringLiteral("ris")); break; case EndNote: bibUtilsProgram.append(QStringLiteral("end")); break; /// case EndNoteXML not supported by BibUtils case ADS: bibUtilsProgram.append(QStringLiteral("ads")); break; case WordBib: bibUtilsProgram.append(QStringLiteral("wordbib")); break; /// case Copac not supported by BibUtils /// case Med not supported by BibUtils default: qCWarning(LOG_KBIBTEX_IO) << "Unsupported BibUtils output format:" << destinationFormat; return false; } /// Test if required BibUtils program is available bibUtilsProgram = QStandardPaths::findExecutable(bibUtilsProgram); if (bibUtilsProgram.isEmpty()) return false; /// Test if source device is readable if (!source.isReadable() && !source.open(QIODevice::ReadOnly)) return false; /// Test if destination device is writable if (!destination.isWritable() && !destination.open(QIODevice::WriteOnly)) { source.close(); return false; } QProcess bibUtilsProcess; const QStringList arguments = QStringList() << QStringLiteral("-i") << QStringLiteral("utf8") << utf8Argument; /// Start BibUtils program/process bibUtilsProcess.start(bibUtilsProgram, arguments); bool result = bibUtilsProcess.waitForStarted(); if (result) { /// Write source data to process's stdin bibUtilsProcess.write(source.readAll()); /// Close process's stdin start transformation bibUtilsProcess.closeWriteChannel(); result = bibUtilsProcess.waitForFinished(); /// If process run without problems ... if (result && bibUtilsProcess.exitStatus() == QProcess::NormalExit) { /// Read process's output, i.e. the transformed data const QByteArray stdOut = bibUtilsProcess.readAllStandardOutput(); if (!stdOut.isEmpty()) { /// Write transformed data to destination device const int amountWritten = destination.write(stdOut); /// Check that the same amount of bytes is written /// as received from the BibUtils program result = amountWritten == stdOut.size(); } else result = false; } else result = false; } /// In case it did not terminate earlier bibUtilsProcess.terminate(); /// Close both source and destination device source.close(); destination.close(); return result; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/bibutils.h���������������������������������������������������������������������0000664�0000000�0000000�00000005552�13313000262�0016331�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef IO_BIBUTILS_H #define IO_BIBUTILS_H #include <QIODevice> #include "kbibtexio_export.h" /** * This class encapsulates calling the various binary programs of the BibUtils program set. * BibUtils is available at http://sourceforge.net/projects/bibutils/ * * This class is inherited by @see FileImporterBibUtils and @see FileExporterBibUtils, * which make use of its protected functions. * Using this class directly should only happen to call its public static functions. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT BibUtils { public: BibUtils(const BibUtils &other) = delete; BibUtils &operator= (const BibUtils &other) = delete; ~BibUtils(); enum Format { MODS = 0, BibTeX = 1, BibLaTeX = 2, ISI = 5, RIS = 6, EndNote = 10, EndNoteXML = 11, ADS = 15, WordBib = 16, Copac = 17, Med = 18 }; BibUtils::Format format() const; void setFormat(const BibUtils::Format format); /** * Test if BibUtils is installed. This test checks if a number of known * BibUtils binaries are available (i.e. found in PATH). If any binary * is missing, it is assumed that BibUtils is not available. The test is * performed only once and the result cached for future calls to this function. * @return true if BibUtils is correctly installed, false otherwise */ static bool available(); protected: explicit BibUtils(); // TODO migrate to KJob or KCompositeJob bool convert(QIODevice &source, const BibUtils::Format sourceFormat, QIODevice &destination, const BibUtils::Format destinationFormat) const; private: class Private; Private *const d; }; #endif // IO_BIBUTILS_H ������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/encoder.cpp��������������������������������������������������������������������0000664�0000000�0000000�00000002617�13313000262�0016465�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "encoder.h" QString Encoder::decode(const QString &text) const { return text; } QString Encoder::encode(const QString &text, const TargetEncoding) const { return text; } �����������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/encoder.h����������������������������������������������������������������������0000664�0000000�0000000�00000005166�13313000262�0016134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXENCODER_H #define BIBTEXENCODER_H #include <QString> /** * Base class for that convert between different textual representations * for non-ASCII characters. Examples for external textual representations * are \"a in LaTeX and &auml; in XML. * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class Encoder { public: enum TargetEncoding {TargetEncodingASCII = 0, TargetEncodingUTF8 = 1}; virtual ~Encoder() { /// nothing } /** * Decode from external textual representation to internal (UTF-8) representation. * @param text text in external textual representation * @return text in internal (UTF-8) representation */ virtual QString decode(const QString &text) const; /** * Encode from internal (UTF-8) representation to external textual representation. * Output may be restricted to ASCII (non-ASCII characters will be rewritten depending * on concrete Encoder class, for example as '&#228;' as XML or '\"a' for LaTeX) * or UTF-8 (all characters allowed, only 'special ones' rewritten, for example * '&amp;' for XML and '\&' for LaTeX). * @param text in internal (UTF-8) representation * @param targetEncoding allow either only ASCII output or UTF-8 output. * @return text text in external textual representation */ virtual QString encode(const QString &text, const TargetEncoding targetEncoding) const; }; #endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/encoderlatex.cpp���������������������������������������������������������������0000664�0000000�0000000�00000134501�13313000262�0017521�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "encoderlatex.h" #include <QString> #include "logging_io.h" inline bool isAsciiLetter(const QChar c) { return ((c >= QLatin1Char('A') && c <= QLatin1Char('Z')) || (c >= QLatin1Char('a') && c <= QLatin1Char('z'))); } inline bool isAsciiLetter(const char c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); } /** * General documentation on this topic: * http://www.tex.ac.uk/CTAN/macros/latex/doc/encguide.pdf */ /** * This structure contains information how escaped characters * such as \"a are translated to an Unicode character and back. * The structure is a table with three columns: (1) the modifier * (in the example before the quotation mark) (2) the ASCII * character ((in the example before the 'a') (3) the Unicode * character described by a hexcode. * This data structure is used both directly and indirectly via * the LookupTable structure which is initialized when the * EncoderLaTeX object is created. */ static const struct EncoderLaTeXEscapedCharacter { const char modifier; const char letter; ushort unicode; } encoderLaTeXEscapedCharacters[] = { {'`', 'A', 0x00C0}, {'\'', 'A', 0x00C1}, {'^', 'A', 0x00C2}, {'~', 'A', 0x00C3}, {'"', 'A', 0x00C4}, {'r', 'A', 0x00C5}, /** 0x00C6 */ {'c', 'C', 0x00C7}, {'`', 'E', 0x00C8}, {'\'', 'E', 0x00C9}, {'^', 'E', 0x00CA}, {'"', 'E', 0x00CB}, {'`', 'I', 0x00CC}, {'\'', 'I', 0x00CD}, {'^', 'I', 0x00CE}, {'"', 'I', 0x00CF}, /** 0x00D0: see EncoderLaTeXCharacterCommand */ {'~', 'N', 0x00D1}, {'`', 'O', 0x00D2}, {'\'', 'O', 0x00D3}, {'^', 'O', 0x00D4}, {'~', 'O', 0x00D5}, {'"', 'O', 0x00D6}, /** 0x00D7 */ /** 0x00D8: see EncoderLaTeXCharacterCommand */ {'`', 'U', 0x00D9}, {'\'', 'U', 0x00DA}, {'^', 'U', 0x00DB}, {'"', 'U', 0x00DC}, {'\'', 'Y', 0x00DD}, /** 0x00DE */ {'"', 's', 0x00DF}, {'`', 'a', 0x00E0}, {'\'', 'a', 0x00E1}, {'^', 'a', 0x00E2}, {'~', 'a', 0x00E3}, {'"', 'a', 0x00E4}, {'r', 'a', 0x00E5}, /** 0x00E6 */ {'c', 'c', 0x00E7}, {'`', 'e', 0x00E8}, {'\'', 'e', 0x00E9}, {'^', 'e', 0x00EA}, {'"', 'e', 0x00EB}, {'`', 'i', 0x00EC}, {'\'', 'i', 0x00ED}, {'^', 'i', 0x00EE}, {'"', 'i', 0x00EF}, /** 0x00F0 */ {'~', 'n', 0x00F1}, {'`', 'o', 0x00F2}, {'\'', 'o', 0x00F3}, {'^', 'o', 0x00F4}, {'~', 'o', 0x00F5}, {'"', 'o', 0x00F6}, /** 0x00F7 Division Sign */ /** 0x00F8: see EncoderLaTeXCharacterCommand */ {'`', 'u', 0x00F9}, {'\'', 'u', 0x00FA}, {'^', 'u', 0x00FB}, {'"', 'u', 0x00FC}, {'\'', 'y', 0x00FD}, /** 0x00FE Thorn */ {'"', 'y', 0x00FF}, {'=', 'A', 0x0100}, {'=', 'a', 0x0101}, {'u', 'A', 0x0102}, {'u', 'a', 0x0103}, {'c', 'A', 0x0104}, {'c', 'a', 0x0105}, {'\'', 'C', 0x0106}, {'\'', 'c', 0x0107}, /** 0x0108 */ /** 0x0109 */ {'.', 'C', 0x010A}, {'.', 'c', 0x010B}, {'v', 'C', 0x010C}, {'v', 'c', 0x010D}, {'v', 'D', 0x010E}, /** 0x010F */ /** 0x0110 */ /** 0x0111 */ {'=', 'E', 0x0112}, {'=', 'e', 0x0113}, /** 0x0114 */ /** 0x0115 */ {'.', 'E', 0x0116}, {'.', 'e', 0x0117}, {'c', 'E', 0x0118}, {'c', 'e', 0x0119}, {'v', 'E', 0x011A}, {'v', 'e', 0x011B}, /** 0x011C */ /** 0x011D */ {'u', 'G', 0x011E}, {'u', 'g', 0x011F}, {'.', 'G', 0x0120}, {'.', 'g', 0x0121}, /** 0x0122 */ /** 0x0123 */ /** 0x0124 */ /** 0x0125 */ /** 0x0126 */ /** 0x0127 */ {'~', 'I', 0x0128}, {'~', 'i', 0x0129}, {'=', 'I', 0x012A}, {'=', 'i', 0x012B}, {'u', 'I', 0x012C}, {'u', 'i', 0x012D}, /** 0x012E */ /** 0x012F */ {'.', 'I', 0x0130}, /** 0x0131 */ /** 0x0132 */ /** 0x0133 */ /** 0x0134 */ /** 0x0135 */ /** 0x0136 */ /** 0x0137 */ /** 0x0138 */ {'\'', 'L', 0x0139}, {'\'', 'l', 0x013A}, /** 0x013B */ /** 0x013C */ /** 0x013D */ /** 0x013E */ /** 0x013F */ /** 0x0140 */ /** 0x0141 */ /** 0x0142 */ {'\'', 'N', 0x0143}, {'\'', 'n', 0x0144}, /** 0x0145 */ /** 0x0146 */ {'v', 'N', 0x0147}, {'v', 'n', 0x0148}, /** 0x0149 */ /** 0x014A */ /** 0x014B */ {'=', 'O', 0x014C}, {'=', 'o', 0x014D}, {'u', 'O', 0x014E}, {'u', 'o', 0x014F}, {'H', 'O', 0x0150}, {'H', 'o', 0x0151}, /** 0x0152 */ /** 0x0153 */ {'\'', 'R', 0x0154}, {'\'', 'r', 0x0155}, /** 0x0156 */ /** 0x0157 */ {'v', 'R', 0x0158}, {'v', 'r', 0x0159}, {'\'', 'S', 0x015A}, {'\'', 's', 0x015B}, /** 0x015C */ /** 0x015D */ {'c', 'S', 0x015E}, {'c', 's', 0x015F}, {'v', 'S', 0x0160}, {'v', 's', 0x0161}, /** 0x0162 */ /** 0x0163 */ {'v', 'T', 0x0164}, /** 0x0165 */ /** 0x0166 */ /** 0x0167 */ {'~', 'U', 0x0168}, {'~', 'u', 0x0169}, {'=', 'U', 0x016A}, {'=', 'u', 0x016B}, {'u', 'U', 0x016C}, {'u', 'u', 0x016D}, {'r', 'U', 0x016E}, {'r', 'u', 0x016F}, {'H', 'U', 0x0170}, {'H', 'u', 0x0171}, /** 0x0172 */ /** 0x0173 */ /** 0x0174 */ /** 0x0175 */ /** 0x0176 */ /** 0x0177 */ {'"', 'Y', 0x0178}, {'\'', 'Z', 0x0179}, {'\'', 'z', 0x017A}, {'.', 'Z', 0x017B}, {'.', 'z', 0x017C}, {'v', 'Z', 0x017D}, {'v', 'z', 0x017E}, /** 0x017F */ /** 0x0180 */ {'v', 'A', 0x01CD}, {'v', 'a', 0x01CE}, {'v', 'G', 0x01E6}, {'v', 'g', 0x01E7}, {'\'', 'F', 0x01F4}, {'\'', 'f', 0x01F5}, {'.', 'A', 0x0226}, {'.', 'a', 0x0227}, {'=', 'Y', 0x0232}, {'=', 'y', 0x0233}, {'.', 'O', 0x022E}, {'.', 'o', 0x022F}, {'.', 'B', 0x1E02}, {'.', 'b', 0x1E03}, {'d', 'B', 0x1E04}, {'d', 'b', 0x1E05}, {'.', 'D', 0x1E0A}, {'.', 'd', 0x1E0B}, {'d', 'D', 0x1E0C}, {'d', 'd', 0x1E0D}, {'.', 'E', 0x1E1E}, {'.', 'e', 0x1E1F}, {'.', 'H', 0x1E22}, {'.', 'h', 0x1E23}, {'d', 'H', 0x1E24}, {'d', 'h', 0x1E25}, {'"', 'H', 0x1E26}, {'"', 'h', 0x1E27}, {'d', 'K', 0x1E32}, {'d', 'k', 0x1E33}, {'d', 'L', 0x1E36}, {'d', 'l', 0x1E37}, {'.', 'M', 0x1E40}, {'.', 'm', 0x1E41}, {'d', 'M', 0x1E42}, {'d', 'm', 0x1E43}, {'.', 'N', 0x1E44}, {'.', 'n', 0x1E45}, {'.', 'N', 0x1E46}, {'.', 'n', 0x1E47}, {'.', 'P', 0x1E56}, {'.', 'p', 0x1E57}, {'.', 'R', 0x1E58}, {'.', 'r', 0x1E59}, {'d', 'R', 0x1E5A}, {'d', 'r', 0x1E5B}, {'.', 'S', 0x1E60}, {'.', 's', 0x1E61}, {'d', 'S', 0x1E62}, {'d', 's', 0x1E63}, {'.', 'T', 0x1E6A}, {'.', 't', 0x1E6B}, {'d', 'T', 0x1E6C}, {'d', 't', 0x1E6D}, {'d', 'V', 0x1E7E}, {'d', 'v', 0x1E7F}, {'`', 'W', 0x1E80}, {'`', 'w', 0x1E81}, {'\'', 'W', 0x1E82}, {'\'', 'w', 0x1E83}, {'"', 'W', 0x1E84}, {'"', 'w', 0x1E85}, {'.', 'W', 0x1E86}, {'.', 'w', 0x1E87}, {'d', 'W', 0x1E88}, {'d', 'w', 0x1E88}, {'.', 'X', 0x1E8A}, {'.', 'x', 0x1E8B}, {'"', 'X', 0x1E8C}, {'"', 'x', 0x1E8D}, {'.', 'Y', 0x1E8E}, {'.', 'y', 0x1E8F}, {'d', 'Z', 0x1E92}, {'d', 'z', 0x1E93}, {'"', 't', 0x1E97}, {'r', 'w', 0x1E98}, {'r', 'y', 0x1E99}, {'d', 'A', 0x1EA0}, {'d', 'a', 0x1EA1}, {'d', 'E', 0x1EB8}, {'d', 'e', 0x1EB9}, {'d', 'I', 0x1ECA}, {'d', 'i', 0x1ECB}, {'d', 'O', 0x1ECC}, {'d', 'o', 0x1ECD}, {'d', 'U', 0x1EE4}, {'d', 'u', 0x1EE5}, {'`', 'Y', 0x1EF2}, {'`', 'y', 0x1EF3}, {'d', 'Y', 0x1EF4}, {'d', 'y', 0x1EF5}, {'r', 'q', 0x2019} ///< tricky: this is \rq }; static const int encoderLaTeXEscapedCharactersLen = sizeof(encoderLaTeXEscapedCharacters) / sizeof(encoderLaTeXEscapedCharacters[0]); /** * This structure contains information on the usage of dotless i * and dotless j in combination with accent-like modifiers. * Combinations such as \"{\i} are translated to an Unicode character * and back. The structure is a table with three columns: (1) the * modified (in the example before the quotation mark) (2) the ASCII * character (in the example before the 'i') (3) the Unicode * character described by a hexcode. */ // TODO other cases of \i and \j? // TODO capital cases like \I and \J? static const struct DotlessIJCharacter { const char modifier; const char letter; ushort unicode; } dotlessIJCharacters[] = { {'`', 'i', 0x00EC}, {'\'', 'i', 0x00ED}, {'^', 'i', 0x00EE}, {'"', 'i', 0x00EF}, {'~', 'i', 0x0129}, {'=', 'i', 0x012B}, {'u', 'i', 0x012D}, {'k', 'i', 0x012F}, {'^', 'j', 0x0135}, {'v', 'i', 0x01D0}, {'v', 'j', 0x01F0}, {'t', 'i', 0x020B} }; static const int dotlessIJCharactersLen = sizeof(dotlessIJCharacters) / sizeof(dotlessIJCharacters[0]); /** * This lookup allows to quickly find hits in the * EncoderLaTeXEscapedCharacter table. This data structure here * consists of a number of rows. Each row consists of a * modifier (like '"' or 'v') and an array of Unicode chars. * Letters 'A'..'Z','a'..'z' are used as index to this array * by subtracting 'A', i.e. 'A' gets index 0, 'B' gets index 1, * etc. * This data structure is built in the constructor. */ static const int lookupTableNumModifiers = 32; static const int lookupTableNumCharacters = 60; static struct EncoderLaTeXEscapedCharacterLookupTableRow { char modifier; QChar unicode[lookupTableNumCharacters]; } *lookupTable[lookupTableNumModifiers]; /** * This data structure keeps track of math commands, which * have to be treated differently in text and math mode. * The math command like "subset of" could be used directly * in math mode, but must be enclosed in \ensuremath{...} * in text mode. */ static const struct MathCommand { const char *written; ushort unicode; } mathCommand[] = { {"ell", 0x2113}, {"rightarrow", 0x2192}, {"forall", 0x2200}, {"exists", 0x2203}, {"in", 0x2208}, {"ni", 0x220B}, {"asterisk", 0x2217}, {"infty", 0x221E}, {"subset", 0x2282}, {"supset", 0x2283}, {"subseteq", 0x2286}, {"supseteq", 0x2287}, {"nsubseteq", 0x2288}, {"nsupseteq", 0x2289}, {"subsetneq", 0x228A}, {"supsetneq", 0x228A}, {"Subset", 0x22D0}, {"Supset", 0x22D1}, {"top", 0x22A4}, }; static const int mathCommandLen = sizeof(mathCommand) / sizeof(mathCommand[0]); /** * This data structure holds commands representing a single * character. For example, it maps \AA to A with a ring (Nordic * letter) and back. The structure is a table with two columns: * (1) the command's name without a backslash (in the example * before the 'AA') (2) the Unicode character described by a * hexcode. */ static const struct EncoderLaTeXCharacterCommand { const char *letters; ushort unicode; } encoderLaTeXCharacterCommands[] = { {"pounds", 0x00A3}, {"S", 0x00A7}, {"copyright", 0x00A9}, {"textregistered", 0x00AE}, {"textperiodcentered", 0x00B7}, {"AA", 0x00C5}, {"AE", 0x00C6}, {"DH", 0x00D0}, {"DJ", 0x00D0}, {"O", 0x00D8}, {"TH", 0x00DE}, {"ss", 0x00DF}, {"aa", 0x00E5}, {"ae", 0x00E6}, {"dh", 0x00F0}, {"o", 0x00F8}, {"th", 0x00FE}, {"i", 0x0131}, {"NG", 0x014A}, {"ng", 0x014B}, {"L", 0x0141}, {"l", 0x0142}, {"OE", 0x0152}, {"oe", 0x0153}, {"j", 0x0237}, {"ldots", 0x2026}, /** \ldots must be before \l */ {"grqq", 0x201C}, {"rqq", 0x201D}, {"glqq", 0x201E}, {"frqq", 0x00BB}, {"flqq", 0x00AB}, {"rq", 0x2019}, ///< tricky one: 'r' is a valid modifier {"lq", 0x2018} }; static const int encoderLaTeXCharacterCommandsLen = sizeof(encoderLaTeXCharacterCommands) / sizeof(encoderLaTeXCharacterCommands[0]); const char EncoderLaTeX::encoderLaTeXProtectedSymbols[] = {'#', '&', '%'}; const int EncoderLaTeX::encoderLaTeXProtectedSymbolsLen = sizeof(EncoderLaTeX::encoderLaTeXProtectedSymbols) / sizeof(EncoderLaTeX::encoderLaTeXProtectedSymbols[0]); const char EncoderLaTeX::encoderLaTeXProtectedTextOnlySymbols[] = {'_'}; const int EncoderLaTeX::encoderLaTeXProtectedTextOnlySymbolsLen = sizeof(encoderLaTeXProtectedTextOnlySymbols) / sizeof(encoderLaTeXProtectedTextOnlySymbols[0]); /** * This data structure holds LaTeX symbol sequences (without * any backslash) that represent a single Unicode character. * For example, it maps --- to an 'em dash' and back. * The structure is a table with two columns: (1) the symbol * sequence (in the example before the '---') (2) the Unicode * character described by a hexcode. */ static const struct EncoderLaTeXSymbolSequence { const char *latex; ushort unicode; bool useUnicode; } encoderLaTeXSymbolSequences[] = { {"!`", 0x00A1, true}, {"\"<", 0x00AB, true}, {"\">", 0x00BB, true}, {"?`", 0x00BF, true}, {"---", 0x2014, true}, {"--", 0x2013, true}, {"``", 0x201C, true}, {"''", 0x201D, true}, {"ff", 0xFB00, false}, {"fi", 0xFB01, false}, {"fl", 0xFB02, false}, {"ffi", 0xFB03, false}, {"ffl", 0xFB04, false}, {"ft", 0xFB05, false}, {"st", 0xFB06, false} }; static const int encoderLaTeXSymbolSequencesLen = sizeof(encoderLaTeXSymbolSequences) / sizeof(encoderLaTeXSymbolSequences[0]); EncoderLaTeX::EncoderLaTeX() { #ifdef HAVE_ICU /// Create an ICO Transliterator, configured to /// transliterate virtually anything into plain ASCII UErrorCode uec = U_ZERO_ERROR; m_trans = icu::Transliterator::createInstance("Any-Latin;Latin-ASCII", UTRANS_FORWARD, uec); #endif // HAVE_ICU /// Initialize lookup table with NULL pointers for (int i = 0; i < lookupTableNumModifiers; ++i) lookupTable[i] = nullptr; int lookupTableCount = 0; /// Go through all table rows of encoderLaTeXEscapedCharacters for (int i = encoderLaTeXEscapedCharactersLen - 1; i >= 0; --i) { /// Check if this row's modifier is already known bool knownModifier = false; int j; for (j = lookupTableCount - 1; j >= 0; --j) { knownModifier |= lookupTable[j]->modifier == encoderLaTeXEscapedCharacters[i].modifier; if (knownModifier) break; } if (!knownModifier) { /// Ok, this row's modifier appeared for the first time, /// therefore initialize memory structure, i.e. row in lookupTable lookupTable[lookupTableCount] = new EncoderLaTeXEscapedCharacterLookupTableRow; lookupTable[lookupTableCount]->modifier = encoderLaTeXEscapedCharacters[i].modifier; for (int k = 0; k < lookupTableNumCharacters; ++k) { /// If no special character is known for a letter+modifier /// combination, fall back using the ASCII character only lookupTable[lookupTableCount]->unicode[k] = QLatin1Char('A' + k); } j = lookupTableCount; ++lookupTableCount; } /// Add the letter as of the current row in encoderLaTeXEscapedCharacters /// into Unicode char array in the current modifier's row in the lookup table. if (isAsciiLetter(encoderLaTeXEscapedCharacters[i].letter)) { int pos = encoderLaTeXEscapedCharacters[i].letter - 'A'; lookupTable[j]->unicode[pos] = QChar(encoderLaTeXEscapedCharacters[i].unicode); } else qCWarning(LOG_KBIBTEX_IO) << "Cannot handle letter " << encoderLaTeXEscapedCharacters[i].letter; } } EncoderLaTeX::~EncoderLaTeX() { /// Clean-up memory for (int i = lookupTableNumModifiers - 1; i >= 0; --i) if (lookupTable[i] != nullptr) delete lookupTable[i]; #ifdef HAVE_ICU if (m_trans != nullptr) delete m_trans; #endif // HAVE_ICU } QString EncoderLaTeX::decode(const QString &input) const { int len = input.length(); QString output; output.reserve(len); bool inMathMode = false; /// Go through input char by char for (int i = 0; i < len; ++i) { /** * Repeatedly check if input data contains a verbatim command * like \url{...}, copy it to output, and update i to point * to the next character after the verbatim command. */ while (testAndCopyVerbatimCommands(input, i, output)); if (i >= len) break; /// Fetch current input char const QChar &c = input[i]; if (c == '{') { /// First case: An opening curly bracket, /// which is harmless (see else case), unless ... if (i < len - 3 && input[i + 1] == '\\') { /// ... it continues with a backslash /// Next, check if there follows a modifier after the backslash /// For example an quotation mark as used in {\"a} int lookupTablePos = modifierInLookupTable(input[i + 2].toLatin1()); /// Check for spaces between modifier and character, for example /// like {\H o} int skipSpaces = 0; while (i + 3 + skipSpaces < len && input[i + 3 + skipSpaces] == ' ' && skipSpaces < 16) ++skipSpaces; if (lookupTablePos >= 0 && i + skipSpaces < len - 4 && isAsciiLetter(input[i + 3 + skipSpaces]) && input[i + 4 + skipSpaces] == '}') { /// If we found a modifier which is followed by /// a letter followed by a closing curly bracket, /// we are looking at something like {\"A} /// Use lookup table to see what Unicode char this /// represents const QChar unicodeLetter = lookupTable[lookupTablePos]->unicode[input[i + 3 + skipSpaces].toLatin1() - 'A']; if (unicodeLetter.unicode() < 127) { /// This combination of modifier and letter is not known, /// so try to preserve it output.append(input.midRef(i, 5 + skipSpaces)); qCWarning(LOG_KBIBTEX_IO) << "Don't know how to translate this into Unicode: " << input.mid(i, 5 + skipSpaces); } else output.append(unicodeLetter); /// Step over those additional characters i += 4 + skipSpaces; } else if (lookupTablePos >= 0 && i + skipSpaces < len - 5 && input[i + 3 + skipSpaces] == '\\' && isAsciiLetter(input[i + 4 + skipSpaces]) && input[i + 5 + skipSpaces] == '}') { /// This is the case for {\'\i} or alike. bool found = false; for (int k = 0; !found && k < dotlessIJCharactersLen; ++k) if (dotlessIJCharacters[k].letter == input[i + 4 + skipSpaces].toLatin1() && dotlessIJCharacters[k].modifier == input[i + 2].toLatin1()) { output.append(QChar(dotlessIJCharacters[k].unicode)); i += 5 + skipSpaces; found = true; } if (!found) qCWarning(LOG_KBIBTEX_IO) << "Cannot interprete BACKSLASH" << input[i + 2] << "BACKSLASH" << input[i + 4 + skipSpaces]; } else if (lookupTablePos >= 0 && i + skipSpaces < len - 6 && input[i + 3 + skipSpaces] == '{' && isAsciiLetter(input[i + 4 + skipSpaces]) && input[i + 5 + skipSpaces] == '}' && input[i + 6 + skipSpaces] == '}') { /// If we found a modifier which is followed by /// an opening curly bracket followed by a letter /// followed by two closing curly brackets, /// we are looking at something like {\"{A}} /// Use lookup table to see what Unicode char this /// represents const QChar unicodeLetter = lookupTable[lookupTablePos]->unicode[input[i + 4 + skipSpaces].toLatin1() - 'A']; if (unicodeLetter.unicode() < 127) { /// This combination of modifier and letter is not known, /// so try to preserve it output.append(input.midRef(i, 7 + skipSpaces)); qCWarning(LOG_KBIBTEX_IO) << "Don't know how to translate this into Unicode: " << input.mid(i, 7 + skipSpaces); } else output.append(unicodeLetter); /// Step over those additional characters i += 6 + skipSpaces; } else if (lookupTablePos >= 0 && i + skipSpaces < len - 7 && input[i + 3 + skipSpaces] == '{' && input[i + 4 + skipSpaces] == '\\' && isAsciiLetter(input[i + 5 + skipSpaces]) && input[i + 6 + skipSpaces] == '}' && input[i + 7 + skipSpaces] == '}') { /// This is the case for {\'{\i}} or alike. bool found = false; for (int k = 0; !found && k < dotlessIJCharactersLen; ++k) if (dotlessIJCharacters[k].letter == input[i + 5 + skipSpaces].toLatin1() && dotlessIJCharacters[k].modifier == input[i + 2].toLatin1()) { output.append(QChar(dotlessIJCharacters[k].unicode)); i += 7 + skipSpaces; found = true; } if (!found) qCWarning(LOG_KBIBTEX_IO) << "Cannot interprete BACKSLASH" << input[i + 2] << "BACKSLASH {" << input[i + 5 + skipSpaces] << "}"; } else { /// Now, the case of something like {\AA} is left /// to check for QString alpha = readAlphaCharacters(input, i + 2); int nextPosAfterAlpha = i + 2 + alpha.size(); if (nextPosAfterAlpha < input.length() && input[nextPosAfterAlpha] == '}') { /// We are dealing actually with a string like {\AA} /// Check which command it is, /// insert corresponding Unicode character bool foundCommand = false; for (int ci = 0; !foundCommand && ci < encoderLaTeXCharacterCommandsLen; ++ci) { if (QLatin1String(encoderLaTeXCharacterCommands[ci].letters) == alpha) /** note: QStringLiteral won't work here (?) */ { output.append(QChar(encoderLaTeXCharacterCommands[ci].unicode)); foundCommand = true; } } /// Check if a math command has been read, /// like \subset /// (automatically skipped if command was found above) for (int k = 0; !foundCommand && k < mathCommandLen; ++k) { if (QLatin1String(mathCommand[k].written) == alpha) /** note: QStringLiteral won't work here (?) */ { if (output.endsWith(QStringLiteral("\\ensuremath"))) { /// Remove "\ensuremath" right before this math command, /// it will be re-inserted when exporting/saving the document output = output.left(output.length() - 11); } output.append(QChar(mathCommand[k].unicode)); foundCommand = true; } } if (foundCommand) i = nextPosAfterAlpha; else { /// Dealing with a string line {\noopsort} /// (see BibTeX documentation where this gets explained) output.append(c); } } else { /// Could be something like {\tt filename.txt} /// Keep it as it is output.append(c); } } } else { /// Nothing special, copy input char to output output.append(c); } } else if (c == '\\' && i < len - 1) { /// Second case: A backslash as in \"o /// Sometimes such command are closed with just {}, /// so remember if to check for that bool checkForExtraCurlyAtEnd = false; /// Check if there follows a modifier after the backslash /// For example an quotation mark as used in \"a int lookupTablePos = modifierInLookupTable(input[i + 1].toLatin1()); /// Check for spaces between modifier and character, for example /// like \H o int skipSpaces = 0; while (i + 2 + skipSpaces < len && input[i + 2 + skipSpaces] == ' ' && skipSpaces < 16) ++skipSpaces; if (lookupTablePos >= 0 && i + skipSpaces <= len - 3 && isAsciiLetter(input[i + 2 + skipSpaces]) && (i + skipSpaces == len - 3 || input[i + 1] == '"' || input[i + 1] == '\'' || input[i + 1] == '`' || input[i + 1] == '=')) { // TODO more special cases? /// We found a special modifier which is followed by /// a letter followed by normal text without any /// delimiter, so we are looking at something like /// \"u inside Kr\"uger /// Use lookup table to see what Unicode char this /// represents const QChar unicodeLetter = lookupTable[lookupTablePos]->unicode[input[i + 2 + skipSpaces].toLatin1() - 'A']; if (unicodeLetter.unicode() < 127) { /// This combination of modifier and letter is not known, /// so try to preserve it output.append(input.midRef(i, 3 + skipSpaces)); qCWarning(LOG_KBIBTEX_IO) << "Don't know how to translate this into Unicode: " << input.mid(i, 3 + skipSpaces); } else output.append(unicodeLetter); /// Step over those additional characters i += 2 + skipSpaces; } else if (lookupTablePos >= 0 && i + skipSpaces <= len - 3 && i + skipSpaces <= len - 3 && isAsciiLetter(input[i + 2 + skipSpaces]) && (i + skipSpaces == len - 3 || input[i + 3 + skipSpaces] == '}' || input[i + 3 + skipSpaces] == '{' || input[i + 3 + skipSpaces] == ' ' || input[i + 3 + skipSpaces] == '\t' || input[i + 3 + skipSpaces] == '\\' || input[i + 3 + skipSpaces] == '\r' || input[i + 3 + skipSpaces] == '\n')) { /// We found a modifier which is followed by /// a letter followed by a command delimiter such /// as a whitespace, so we are looking at something /// like \"u followed by a space /// Use lookup table to see what Unicode char this /// represents const QChar unicodeLetter = lookupTable[lookupTablePos]->unicode[input[i + 2].toLatin1() - 'A']; if (unicodeLetter.unicode() < 127) { /// This combination of modifier and letter is not known, /// so try to preserve it output.append(input.midRef(i, 3)); qCWarning(LOG_KBIBTEX_IO) << "Don't know how to translate this into Unicode: " << input.mid(i, 3); } else output.append(unicodeLetter); /// Step over those additional characters i += 2 + skipSpaces; /// Now, after this command, a whitespace may follow /// which has to get "eaten" as it acts as a command /// delimiter if (input[i + 1] == ' ' || input[i + 1] == '\r' || input[i + 1] == '\n') ++i; else { /// If no whitespace follows, still /// check for extra curly brackets checkForExtraCurlyAtEnd = true; } } else if (lookupTablePos >= 0 && i + skipSpaces < len - 4 && input[i + 2 + skipSpaces] == '{' && isAsciiLetter(input[i + 3 + skipSpaces]) && input[i + 4 + skipSpaces] == '}') { /// We found a modifier which is followed by an opening /// curly bracket followed a letter followed by a closing /// curly bracket, so we are looking at something /// like \"{u} /// Use lookup table to see what Unicode char this /// represents const QChar unicodeLetter = lookupTable[lookupTablePos]->unicode[input[i + 3 + skipSpaces].toLatin1() - 'A']; if (unicodeLetter.unicode() < 127) { /// This combination of modifier and letter is not known, /// so try to preserve it output.append(input.midRef(i, 5 + skipSpaces)); qCWarning(LOG_KBIBTEX_IO) << "Don't know how to translate this into Unicode: " << input.mid(i, 5 + skipSpaces); } else output.append(unicodeLetter); /// Step over those additional characters i += 4 + skipSpaces; } else if (lookupTablePos >= 0 && i + skipSpaces < len - 3 && input[i + 2 + skipSpaces] == '\\' && isAsciiLetter(input[i + 3 + skipSpaces])) { /// This is the case for \'\i or alike. bool found = false; for (int k = 0; !found && k < dotlessIJCharactersLen; ++k) if (dotlessIJCharacters[k].letter == input[i + 3 + skipSpaces].toLatin1() && dotlessIJCharacters[k].modifier == input[i + 1].toLatin1()) { output.append(QChar(dotlessIJCharacters[k].unicode)); i += 3 + skipSpaces; found = true; } if (!found) qCWarning(LOG_KBIBTEX_IO) << "Cannot interprete BACKSLASH" << input[i + 1] << "BACKSLASH" << input[i + 3 + skipSpaces]; } else if (lookupTablePos >= 0 && i + skipSpaces < len - 5 && input[i + 2 + skipSpaces] == '{' && input[i + 3 + skipSpaces] == '\\' && isAsciiLetter(input[i + 4 + skipSpaces]) && input[i + 5 + skipSpaces] == '}') { /// This is the case for \'{\i} or alike. bool found = false; for (int k = 0; !found && k < dotlessIJCharactersLen; ++k) if (dotlessIJCharacters[k].letter == input[i + 4 + skipSpaces].toLatin1() && dotlessIJCharacters[k].modifier == input[i + 1].toLatin1()) { output.append(QChar(dotlessIJCharacters[k].unicode)); i += 5 + skipSpaces; found = true; } if (!found) qCWarning(LOG_KBIBTEX_IO) << "Cannot interprete BACKSLASH" << input[i + 1] << "BACKSLASH {" << input[i + 4 + skipSpaces] << "}"; } else if (i < len - 1) { /// Now, the case of something like \AA is left /// to check for QString alpha = readAlphaCharacters(input, i + 1); int nextPosAfterAlpha = i + 1 + alpha.size(); if (alpha.size() >= 1 && alpha.at(0).isLetter()) { /// We are dealing actually with a string like \AA or \o /// Check which command it is, /// insert corresponding Unicode character bool foundCommand = false; for (int ci = 0; !foundCommand && ci < encoderLaTeXCharacterCommandsLen; ++ci) { if (QLatin1String(encoderLaTeXCharacterCommands[ci].letters) == alpha) /** note: QStringLiteral won't work here (?) */ { output.append(QChar(encoderLaTeXCharacterCommands[ci].unicode)); foundCommand = true; } } if (foundCommand) { /// Now, after a command, a whitespace may follow /// which has to get "eaten" as it acts as a command /// delimiter if (nextPosAfterAlpha < input.length() && (input[nextPosAfterAlpha] == ' ' || input[nextPosAfterAlpha] == '\r' || input[nextPosAfterAlpha] == '\n')) ++nextPosAfterAlpha; else { /// If no whitespace follows, still /// check for extra curly brackets checkForExtraCurlyAtEnd = true; } i = nextPosAfterAlpha - 1; } else { /// No command found? Just copy input char to output output.append(c); } } else { /// Maybe we are dealing with a string like \& or \_ /// Check which command it is bool foundCommand = false; for (int k = 0; k < encoderLaTeXProtectedSymbolsLen; ++k) if (encoderLaTeXProtectedSymbols[k] == input[i + 1]) { output.append(encoderLaTeXProtectedSymbols[k]); foundCommand = true; } if (!foundCommand && !inMathMode) for (int k = 0; k < encoderLaTeXProtectedTextOnlySymbolsLen; ++k) if (encoderLaTeXProtectedTextOnlySymbols[k] == input[i + 1]) { output.append(encoderLaTeXProtectedTextOnlySymbols[k]); foundCommand = true; } /// If command has been found, nothing has to be done /// except for hopping over this backslash if (foundCommand) ++i; else if (i < len - 1 && input[i + 1] == QChar(0x002c /* comma */)) { /// Found a thin space: \, /// Replacing Latex-like thin space with Unicode thin space output.append(QChar(0x2009)); // foundCommand = true; ///< only necessary if more tests will follow in the future ++i; } else { /// Nothing special, copy input char to output output.append(c); } } } else { /// Nothing special, copy input char to output output.append(c); } /// Finally, check if there may be extra curly brackets /// like {} and hop over them if (checkForExtraCurlyAtEnd && i < len - 2 && input[i + 1] == '{' && input[i + 2] == '}') i += 2; } else { /// So far, no opening curly bracket and no backslash /// May still be a symbol sequence like --- bool isSymbolSequence = false; /// Go through all known symbol sequnces for (int l = 0; l < encoderLaTeXSymbolSequencesLen; ++l) /// First, check if read input character matches beginning of symbol sequence /// and input buffer as enough characters left to potentially contain /// symbol sequence if (encoderLaTeXSymbolSequences[l].useUnicode && encoderLaTeXSymbolSequences[l].latex[0] == c.toLatin1() && i <= len - (int)qstrlen(encoderLaTeXSymbolSequences[l].latex)) { /// Now actually check if symbol sequence is in input buffer isSymbolSequence = true; for (int p = 1; isSymbolSequence && p < (int)qstrlen(encoderLaTeXSymbolSequences[l].latex); ++p) isSymbolSequence &= encoderLaTeXSymbolSequences[l].latex[p] == input[i + p].toLatin1(); if (isSymbolSequence) { /// Ok, found sequence: insert Unicode character in output /// and hop over sequence in input buffer output.append(QChar(encoderLaTeXSymbolSequences[l].unicode)); i += qstrlen(encoderLaTeXSymbolSequences[l].latex) - 1; break; } } if (!isSymbolSequence) { /// No symbol sequence found, so just copy input to output output.append(c); /// Still, check if input character is a dollar sign /// without a preceding backslash, means toggling between /// text mode and math mode if (c == '$' && (i == 0 || input[i - 1] != '\\')) inMathMode = !inMathMode; } } } output.squeeze(); return output; } bool EncoderLaTeX::testAndCopyVerbatimCommands(const QString &input, int &pos, QString &output) const { int copyBytesCount = 0; int openedClosedCurlyBrackets = 0; /// check for \url if (pos < input.length() - 6 && input[pos] == '\\' && input[pos + 1] == 'u' && input[pos + 2] == 'r' && input[pos + 3] == 'l' && input[pos + 4] == '{') { copyBytesCount = 5; openedClosedCurlyBrackets = 1; } if (copyBytesCount > 0) { while (openedClosedCurlyBrackets > 0 && pos + copyBytesCount < input.length()) { ++copyBytesCount; if (input[pos + copyBytesCount] == '{' && input[pos + copyBytesCount - 1] != '\\') ++openedClosedCurlyBrackets; else if (input[pos + copyBytesCount] == '}' && input[pos + copyBytesCount - 1] != '\\') --openedClosedCurlyBrackets; } output.append(input.midRef(pos, copyBytesCount)); pos += copyBytesCount; } return copyBytesCount > 0; } QString EncoderLaTeX::encode(const QString &ninput, const TargetEncoding targetEncoding) const { /// Perform Canonical Decomposition followed by Canonical Composition const QString input = ninput.normalized(QString::NormalizationForm_C); int len = input.length(); QString output; output.reserve(len); bool inMathMode = false; /// Go through input char by char for (int i = 0; i < len; ++i) { /** * Repeatedly check if input data contains a verbatim command * like \url{...}, append it to output, and update i to point * to the next character after the verbatim command. */ while (testAndCopyVerbatimCommands(input, i, output)); if (i >= len) break; const QChar c = input[i]; if (targetEncoding == TargetEncodingASCII && c.unicode() > 127) { /// If current char is outside ASCII boundaries ... bool found = false; /// Handle special cases of i without a dot (\i) for (int k = 0; !found && k < dotlessIJCharactersLen; ++k) if (c.unicode() == dotlessIJCharacters[k].unicode) { output.append(QString(QStringLiteral("\\%1{\\%2}")).arg(dotlessIJCharacters[k].modifier).arg(dotlessIJCharacters[k].letter)); found = true; } if (!found) { /// ... test if there is a symbol sequence like --- /// to encode it for (int k = 0; k < encoderLaTeXSymbolSequencesLen; ++k) if (encoderLaTeXSymbolSequences[k].unicode == c.unicode()) { for (int l = 0; l < (int)qstrlen(encoderLaTeXSymbolSequences[k].latex); ++l) output.append(encoderLaTeXSymbolSequences[k].latex[l]); found = true; break; } } if (!found) { /// Ok, no symbol sequence. Let's test character /// commands like \ss for (int k = 0; k < encoderLaTeXCharacterCommandsLen; ++k) if (encoderLaTeXCharacterCommands[k].unicode == c.unicode()) { output.append(QString(QStringLiteral("{\\%1}")).arg(encoderLaTeXCharacterCommands[k].letters)); found = true; break; } } if (!found) { /// Ok, neither a character command. Let's test /// escaped characters with modifiers like \"a for (int k = 0; k < encoderLaTeXEscapedCharactersLen; ++k) if (encoderLaTeXEscapedCharacters[k].unicode == c.unicode()) { const char modifier = encoderLaTeXEscapedCharacters[k].modifier; const QString formatString = (modifier >= 'A' && modifier <= 'Z') || (modifier >= 'a' && modifier <= 'z') ? QStringLiteral("{\\%1 %2}") : QStringLiteral("{\\%1%2}"); output.append(formatString.arg(modifier).arg(encoderLaTeXEscapedCharacters[k].letter)); found = true; break; } } if (!found) { /// Ok, test for math commands for (int k = 0; k < mathCommandLen; ++k) if (mathCommand[k].unicode == c.unicode()) { if (inMathMode) output.append(QString(QStringLiteral("\\%1{}")).arg(mathCommand[k].written)); else output.append(QString(QStringLiteral("\\ensuremath{\\%1}")).arg(mathCommand[k].written)); found = true; break; } } if (!found && c.unicode() == 0x2009) { /// Thin space output.append(QStringLiteral("\\,")); found = true; } if (!found) { qCWarning(LOG_KBIBTEX_IO) << "Don't know how to encode Unicode char" << QString(QStringLiteral("0x%1")).arg(c.unicode(), 4, 16, QLatin1Char('0')); output.append(c); } } else { /// Current character is normal ASCII /// and targetEncoding was set to accept only ASCII characters /// -- or -- targetEncoding was set to accept UTF-8 characters /// Still, some characters have special meaning /// in TeX and have to be preceded with a backslash bool found = false; for (int k = 0; k < encoderLaTeXProtectedSymbolsLen; ++k) if (encoderLaTeXProtectedSymbols[k] == c) { output.append(QLatin1Char('\\')); found = true; break; } if (!found && !inMathMode) for (int k = 0; k < encoderLaTeXProtectedTextOnlySymbolsLen; ++k) if (encoderLaTeXProtectedTextOnlySymbols[k] == c) { output.append(QLatin1Char('\\')); break; } /// Dump character to output output.append(c); /// Finally, check if input character is a dollar sign /// without a preceding backslash, means toggling between /// text mode and math mode if (c == '$' && (i == 0 || input[i - 1] != QLatin1Char('\\'))) inMathMode = !inMathMode; } } output.squeeze(); return output; } #ifdef HAVE_ICU QString EncoderLaTeX::convertToPlainAscii(const QString &ninput) const { /// Previously, iconv's //TRANSLIT feature had been used here. /// However, the transliteration is locale-specific as discussed /// here: /// http://taschenorakel.de/mathias/2007/11/06/iconv-transliterations/ /// Therefore, iconv is not an acceptable solution. /// /// Instead, "International Components for Unicode" (ICU) is used. /// It is already a dependency for Qt, so there is no "cost" involved /// in using it. const int ninputLen = ninput.length(); /// Make a copy of the input string into an array of UChar UChar *uChars = new UChar[ninputLen]; for (int i = 0; i < ninputLen; ++i) uChars[i] = ninput.at(i).unicode(); /// Create an ICU-specific unicode string icu::UnicodeString uString = icu::UnicodeString(uChars, ninputLen); /// Perform the actual transliteration, modifying Unicode string m_trans->transliterate(uString); /// Create regular C++ string from Unicode string std::string cppString; uString.toUTF8String(cppString); /// Clean up any mess delete[] uChars; /// Convert regular C++ to Qt-specific QString, /// should work as cppString contains only ASCII text return QString::fromStdString(cppString); } #endif // HAVE_ICU bool EncoderLaTeX::containsOnlyAscii(const QString &ntext) { /// Perform Canonical Decomposition followed by Canonical Composition const QString text = ntext.normalized(QString::NormalizationForm_C); for (const QChar &c : text) if (c.unicode() > 127) return false; return true; } int EncoderLaTeX::modifierInLookupTable(const char latinModifier) const { for (int m = 0; m < lookupTableNumModifiers && lookupTable[m] != nullptr; ++m) if (lookupTable[m]->modifier == latinModifier) return m; return -1; } QString EncoderLaTeX::readAlphaCharacters(const QString &base, int startFrom) const { int len = base.size(); for (int j = startFrom; j < len; ++j) { if ((base[j] < 'A' || base[j] > 'Z') && (base[j] < 'a' || base[j] > 'z')) return base.mid(startFrom, j - startFrom); } return base.mid(startFrom); } const EncoderLaTeX &EncoderLaTeX::instance() { static const EncoderLaTeX self; return self; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/encoderlatex.h�����������������������������������������������������������������0000664�0000000�0000000�00000007766�13313000262�0017202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef ENCODERLATEX_H #define ENCODERLATEX_H #include "kbibtexio_export.h" #ifdef HAVE_ICU #include <unicode/translit.h> #endif // HAVE_ICU #include "encoder.h" /** * Base class for that convert between different textual representations * for non-ASCII characters, specialized for LaTeX. For example, this * class can "translate" between \"a and its UTF-8 representation. * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT EncoderLaTeX: public Encoder { public: QString decode(const QString &text) const override; QString encode(const QString &text, const TargetEncoding targetEncoding) const override; #ifdef HAVE_ICU QString convertToPlainAscii(const QString &input) const; #else // HAVE_ICU /// Dummy implementation without ICU inline QString convertToPlainAscii(const QString &input) const { return input; } #endif // HAVE_ICU static bool containsOnlyAscii(const QString &text); static const EncoderLaTeX &instance(); ~EncoderLaTeX() override; protected: EncoderLaTeX(); /** * This data structure keeps individual characters that have * a special purpose in LaTeX and therefore needs to be escaped * both in text and in math mode by prefixing with a backlash. */ static const char encoderLaTeXProtectedSymbols[]; static const int encoderLaTeXProtectedSymbolsLen; /** * This data structure keeps individual characters that have * a special purpose in LaTeX in text mode and therefore needs * to be escaped by prefixing with a backlash. In math mode, * those have a different purpose and may not be escaped there. */ static const char encoderLaTeXProtectedTextOnlySymbols[]; static const int encoderLaTeXProtectedTextOnlySymbolsLen; /** * Check if input data contains a verbatim command like \url{...}, * append it to output, and update the position to point to the next * character after the verbatim command. * @return 'true' if a verbatim command has been copied, otherwise 'false'. */ bool testAndCopyVerbatimCommands(const QString &input, int &pos, QString &output) const; private: Q_DISABLE_COPY(EncoderLaTeX) /** * Check if character c represents a modifier like * a quotation mark in \"a. Return the modifier's * index in the lookup table or -1 if not a known * modifier. */ int modifierInLookupTable(const char latinModifier) const; /** * Return a string that represents the part of * the base string starting from startFrom containing * only alpha characters (a-z,A-Z). * Return value may be an empty byte array. */ QString readAlphaCharacters(const QString &base, int startFrom) const; #ifdef HAVE_ICU icu::Transliterator *m_trans; #endif // HAVE_ICU }; #endif // ENCODERLATEX_H ����������kbibtex-0.8.1/src/io/encoderxml.cpp�����������������������������������������������������������������0000664�0000000�0000000�00000012756�13313000262�0017213�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "encoderxml.h" #include <QStringList> #include <QRegExp> #include <QList> static const struct EncoderXMLCharMapping { const char *regexp; unsigned int unicode; const char *latex; } charmappingdataxml[] = { {"&quot;", 0x0022, "&quot;"}, /** FIXME: is this one required? */ {"&amp;", 0x0026, "&amp;"}, {"&lt;", 0x003C, "&lt;"}, {"&gt;", 0x003E, "&gt;"} }; static const int charmappingdataxmlcount = sizeof(charmappingdataxml) / sizeof(charmappingdataxml[ 0 ]) ; /** * Private class to store internal variables that should not be visible * in the interface as defined in the header file. */ class EncoderXML::EncoderXMLPrivate { public: static const QStringList backslashSymbols; struct CharMappingItem { QRegExp regExp; QChar unicode; QString xml; }; QList<CharMappingItem> charMapping; void buildCharMapping() { for (int i = 0; i < charmappingdataxmlcount; i++) { CharMappingItem charMappingItem; charMappingItem.regExp = QRegExp(charmappingdataxml[ i ].regexp); charMappingItem.unicode = QChar(charmappingdataxml[ i ].unicode); charMappingItem.xml = QString(charmappingdataxml[ i ].latex); charMapping.append(charMappingItem); } } }; const QStringList EncoderXML::EncoderXMLPrivate::backslashSymbols = QStringList() << QStringLiteral("\\&") << QStringLiteral("\\%") << QStringLiteral("\\_"); EncoderXML::EncoderXML() : Encoder(), d(new EncoderXML::EncoderXMLPrivate) { d->buildCharMapping(); } EncoderXML::~EncoderXML() { delete d; } QString EncoderXML::decode(const QString &text) const { QString result = text; for (const auto &item : const_cast<const QList<EncoderXMLPrivate::CharMappingItem> &>(d->charMapping)) result.replace(item.regExp, item.unicode); /** * Find and replace all characters written as hexadecimal number */ int p = -1; while ((p = result.indexOf(QStringLiteral("&#x"), p + 1)) >= 0) { int p2 = result.indexOf(QStringLiteral(";"), p + 1); if (p2 < 0) break; bool ok = false; int hex = result.midRef(p + 3, p2 - p - 3).toInt(&ok, 16); if (ok && hex > 0) result.replace(result.mid(p, p2 - p + 1), QChar(hex)); } /** * Find and replace all characters written as decimal number */ p = -1; while ((p = result.indexOf(QStringLiteral("&#"), p + 1)) >= 0) { int p2 = result.indexOf(QStringLiteral(";"), p + 1); if (p2 < 0) break; bool ok = false; int dec = result.midRef(p + 2, p2 - p - 2).toInt(&ok, 10); if (ok && dec > 0) result.replace(result.mid(p, p2 - p + 1), QChar(dec)); } /// Replace special symbols with backslash-encoded variant (& --> \&) for (const QString &backslashSymbol : EncoderXMLPrivate::backslashSymbols) { int p = -1; while ((p = result.indexOf(backslashSymbol[1], p + 1)) >= 0) { if (p == 0 || result[p - 1] != QLatin1Char('\\')) { /// replace only symbols which have no backslash on their right result = result.left(p) + QLatin1Char('\\') + result.mid(p); ++p; } } } return result; } QString EncoderXML::encode(const QString &text, const TargetEncoding targetEncoding) const { QString result = text; for (const auto &item : const_cast<const QList<EncoderXMLPrivate::CharMappingItem> &>(d->charMapping)) result.replace(item.unicode, item.xml); if (targetEncoding == TargetEncodingASCII) { /// Replace all non-ASCII characters (code >=128) with an entity code, /// for example a-umlaut becomes '&#228;'. for (int i = result.length() - 1; i >= 0; --i) { const auto code = result[i].unicode(); if (code > 127) result = result.left(i) + QStringLiteral("&#") + QString::number(code) + QStringLiteral(";") + result.mid(i + 1); } } /// Replace backlash-encoded symbols with plain text (\& --> &) for (const QString &backslashSymbol : EncoderXMLPrivate::backslashSymbols) { result.replace(backslashSymbol, backslashSymbol[1]); } return result; } const EncoderXML &EncoderXML::instance() { static const EncoderXML self; return self; } ������������������kbibtex-0.8.1/src/io/encoderxml.h�������������������������������������������������������������������0000664�0000000�0000000�00000004024�13313000262�0016645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_ENCODERXML_H #define KBIBTEX_IO_ENCODERXML_H #include "kbibtexio_export.h" #include "encoder.h" class QString; class QRegExp; /** * Base class for that convert between different textual representations * for non-ASCII characters, specialized for XML. * Example for a character to convert is &auml;. * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT EncoderXML : public Encoder { public: ~EncoderXML() override; QString decode(const QString &text) const override; QString encode(const QString &text, const TargetEncoding targetEncoding) const override; static const EncoderXML &instance(); protected: EncoderXML(); private: Q_DISABLE_COPY(EncoderXML) class EncoderXMLPrivate; EncoderXMLPrivate *const d; }; #endif // KBIBTEX_IO_ENCODERXML_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporter.cpp���������������������������������������������������������������0000664�0000000�0000000�00000005003�13313000262�0017546�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporter.h" #include <QBuffer> #include <QTextStream> const QString FileExporter::keyPaperSize = QStringLiteral("paperSize"); const QString FileExporter::defaultPaperSize = QStringLiteral("a4"); const QString FileExporter::keyFont = QStringLiteral("Font"); const QString FileExporter::defaultFont = QStringLiteral(""); FileExporter::FileExporter(QObject *parent) : QObject(parent) { // nothing } FileExporter::~FileExporter() { // nothing } QString FileExporter::toString(const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { QBuffer buffer; buffer.open(QBuffer::WriteOnly); if (save(&buffer, element, bibtexfile, errorLog)) { buffer.close(); if (buffer.open(QBuffer::ReadOnly)) { QTextStream ts(&buffer); ts.setCodec("UTF-8"); return ts.readAll(); } } return QString(); } QString FileExporter::toString(const File *bibtexfile, QStringList *errorLog) { QBuffer buffer; buffer.open(QBuffer::WriteOnly); if (save(&buffer, bibtexfile, errorLog)) { buffer.close(); if (buffer.open(QBuffer::ReadOnly)) { QTextStream ts(&buffer); ts.setCodec("utf-8"); return ts.readAll(); } } return QString(); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporter.h�����������������������������������������������������������������0000664�0000000�0000000�00000004551�13313000262�0017222�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEEXPORTER_H #define KBIBTEX_IO_FILEEXPORTER_H #include <QObject> #include "kbibtexio_export.h" #include "file.h" class QIODevice; class File; class Element; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporter : public QObject { Q_OBJECT public: static const QString keyPaperSize; static const QString defaultPaperSize; static const QString keyFont; static const QString defaultFont; explicit FileExporter(QObject *parent); ~FileExporter() override; QString toString(const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr); QString toString(const File *bibtexfile, QStringList *errorLog = nullptr); virtual bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) = 0; virtual bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) = 0; signals: void progress(int current, int total); public slots: virtual void cancel() { // nothing } }; #endif // KBIBTEX_IO_FILEEXPORTER_H �������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtex.cpp���������������������������������������������������������0000664�0000000�0000000�00000070405�13313000262�0020754�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterbibtex.h" #include <typeinfo> #include <QTextCodec> #include <QTextStream> #include <QStringList> #ifdef HAVE_KF5 #include <KSharedConfig> #include <KConfigGroup> #endif // HAVE_KF5 #include "preferences.h" #include "file.h" #include "element.h" #include "entry.h" #include "macro.h" #include "preamble.h" #include "value.h" #include "comment.h" #include "encoderlatex.h" #include "bibtexentries.h" #include "bibtexfields.h" #include "textencoder.h" #include "logging_io.h" FileExporterBibTeX *FileExporterBibTeX::staticFileExporterBibTeX = nullptr; class FileExporterBibTeX::FileExporterBibTeXPrivate { private: FileExporterBibTeX *p; public: QChar stringOpenDelimiter; QChar stringCloseDelimiter; KBibTeX::Casing keywordCasing; Preferences::QuoteComment quoteComment; QString encoding, forcedEncoding; Qt::CheckState protectCasing; QString personNameFormatting; QString listSeparator; bool cancelFlag; QTextCodec *destinationCodec; #ifdef HAVE_KF5 KSharedConfigPtr config; const QString configGroupName, configGroupNameGeneral; #endif // HAVE_KF5 FileExporterBibTeXPrivate(FileExporterBibTeX *parent) : p(parent), keywordCasing(KBibTeX::cLowerCase), quoteComment(Preferences::qcNone), protectCasing(Qt::PartiallyChecked), cancelFlag(false), destinationCodec(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("FileExporterBibTeX")), configGroupNameGeneral(QStringLiteral("General")) { // nothing } void loadState() { #ifdef HAVE_KF5 KConfigGroup configGroup(config, configGroupName); encoding = configGroup.readEntry(Preferences::keyEncoding, Preferences::defaultEncoding); QString stringDelimiter = configGroup.readEntry(Preferences::keyStringDelimiter, Preferences::defaultStringDelimiter); if (stringDelimiter.length() != 2) stringDelimiter = Preferences::defaultStringDelimiter; #else // HAVE_KF5 encoding = QStringLiteral("LaTeX"); const QString stringDelimiter = QStringLiteral("{}"); #endif // HAVE_KF5 stringOpenDelimiter = stringDelimiter[0]; stringCloseDelimiter = stringDelimiter[1]; #ifdef HAVE_KF5 keywordCasing = (KBibTeX::Casing)configGroup.readEntry(Preferences::keyKeywordCasing, (int)Preferences::defaultKeywordCasing); quoteComment = (Preferences::QuoteComment)configGroup.readEntry(Preferences::keyQuoteComment, (int)Preferences::defaultQuoteComment); protectCasing = (Qt::CheckState)configGroup.readEntry(Preferences::keyProtectCasing, (int)Preferences::defaultProtectCasing); personNameFormatting = configGroup.readEntry(Preferences::keyPersonNameFormatting, QString()); listSeparator = configGroup.readEntry(Preferences::keyListSeparator, Preferences::defaultListSeparator); if (personNameFormatting.isEmpty()) { /// no person name formatting is specified for BibTeX, fall back to general setting KConfigGroup configGroupGeneral(config, configGroupNameGeneral); personNameFormatting = configGroupGeneral.readEntry(Preferences::keyPersonNameFormatting, Preferences::defaultPersonNameFormatting); } #else // HAVE_KF5 keywordCasing = KBibTeX::cLowerCase; quoteComment = qcNone; protectCasing = Qt::PartiallyChecked; personNameFormatting = QStringLiteral("<%l><, %s><, %f>"); listSeparator = QStringLiteral("; "); #endif // HAVE_KF5 } void loadStateFromFile(const File *bibtexfile) { if (bibtexfile == nullptr) return; if (bibtexfile->hasProperty(File::Encoding)) encoding = bibtexfile->property(File::Encoding).toString(); if (!forcedEncoding.isEmpty()) encoding = forcedEncoding; applyEncoding(encoding); if (bibtexfile->hasProperty(File::StringDelimiter)) { QString stringDelimiter = bibtexfile->property(File::StringDelimiter).toString(); if (stringDelimiter.length() != 2) #ifdef HAVE_KF5 stringDelimiter = Preferences::defaultStringDelimiter; #else // HAVE_KF5 stringDelimiter = QStringLiteral("{}"); #endif // HAVE_KF5 stringOpenDelimiter = stringDelimiter[0]; stringCloseDelimiter = stringDelimiter[1]; } if (bibtexfile->hasProperty(File::QuoteComment)) quoteComment = (Preferences::QuoteComment)bibtexfile->property(File::QuoteComment).toInt(); if (bibtexfile->hasProperty(File::KeywordCasing)) keywordCasing = (KBibTeX::Casing)bibtexfile->property(File::KeywordCasing).toInt(); if (bibtexfile->hasProperty(File::ProtectCasing)) protectCasing = (Qt::CheckState)bibtexfile->property(File::ProtectCasing).toInt(); if (bibtexfile->hasProperty(File::NameFormatting)) { /// if the user set "use global default", this property is an empty string /// in this case, keep default value const QString buffer = bibtexfile->property(File::NameFormatting).toString(); personNameFormatting = buffer.isEmpty() ? personNameFormatting : buffer; } if (bibtexfile->hasProperty(File::ListSeparator)) listSeparator = bibtexfile->property(File::ListSeparator).toString(); } bool writeEntry(QIODevice *iodevice, const Entry &entry) { const BibTeXEntries *be = BibTeXEntries::self(); const BibTeXFields *bf = BibTeXFields::self(); const EncoderLaTeX &laTeXEncoder = EncoderLaTeX::instance(); /// write start of a entry (entry type and id) in plain ASCII iodevice->putChar('@'); iodevice->write(be->format(entry.type(), keywordCasing).toLatin1().data()); iodevice->putChar('{'); iodevice->write(laTeXEncoder.convertToPlainAscii(entry.id()).toLatin1()); for (Entry::ConstIterator it = entry.constBegin(); it != entry.constEnd(); ++it) { const QString key = it.key(); Value value = it.value(); if (value.isEmpty()) continue; ///< ignore empty key-value pairs QString text = p->internalValueToBibTeX(value, key, leUTF8); if (text.isEmpty()) { /// ignore empty key-value pairs qCWarning(LOG_KBIBTEX_IO) << "Value for field " << key << " is empty" << endl; continue; } // FIXME hack! const QSharedPointer<ValueItem> first = *value.constBegin(); if (PlainText::isPlainText(*first) && (key == Entry::ftTitle || key == Entry::ftBookTitle || key == Entry::ftSeries)) { if (protectCasing == Qt::Checked) addProtectiveCasing(text); else if (protectCasing == Qt::Unchecked) removeProtectiveCasing(text); } iodevice->putChar(','); iodevice->putChar('\n'); iodevice->putChar('\t'); iodevice->write(laTeXEncoder.convertToPlainAscii(bf->format(key, keywordCasing)).toLatin1()); iodevice->putChar(' '); iodevice->putChar('='); iodevice->putChar(' '); iodevice->write(TextEncoder::encode(text, destinationCodec)); } iodevice->putChar('\n'); iodevice->putChar('}'); iodevice->putChar('\n'); iodevice->putChar('\n'); return true; } bool writeMacro(QIODevice *iodevice, const Macro &macro) { const BibTeXEntries *be = BibTeXEntries::self(); QString text = p->internalValueToBibTeX(macro.value(), QString(), leUTF8); if (protectCasing == Qt::Checked) addProtectiveCasing(text); else if (protectCasing == Qt::Unchecked) removeProtectiveCasing(text); iodevice->putChar('@'); iodevice->write(be->format(QStringLiteral("String"), keywordCasing).toLatin1().data()); iodevice->putChar('{'); iodevice->write(TextEncoder::encode(macro.key(), destinationCodec)); iodevice->putChar(' '); iodevice->putChar('='); iodevice->putChar(' '); iodevice->write(TextEncoder::encode(text, destinationCodec)); iodevice->putChar('}'); iodevice->putChar('\n'); iodevice->putChar('\n'); return true; } bool writeComment(QIODevice *iodevice, const Comment &comment) { const BibTeXEntries *be = BibTeXEntries::self(); QString text = comment.text() ; if (comment.useCommand() || quoteComment == Preferences::qcCommand) { iodevice->putChar('@'); iodevice->write(be->format(QStringLiteral("Comment"), keywordCasing).toLatin1().data()); iodevice->putChar('{'); iodevice->write(TextEncoder::encode(text, destinationCodec)); iodevice->putChar('}'); iodevice->putChar('\n'); iodevice->putChar('\n'); } else if (quoteComment == Preferences::qcPercentSign) { QStringList commentLines = text.split('\n', QString::SkipEmptyParts); for (QStringList::Iterator it = commentLines.begin(); it != commentLines.end(); ++it) { const QByteArray line = TextEncoder::encode(*it, destinationCodec); if (line.length() == 0 || line[0] != QLatin1Char('%')) { /// Guarantee that every line starts with /// a percent sign iodevice->putChar('%'); } iodevice->write(line); iodevice->putChar('\n'); } iodevice->putChar('\n'); } else { iodevice->write(TextEncoder::encode(text, destinationCodec)); iodevice->putChar('\n'); iodevice->putChar('\n'); } return true; } bool writePreamble(QIODevice *iodevice, const Preamble &preamble) { const BibTeXEntries *be = BibTeXEntries::self(); iodevice->putChar('@'); iodevice->write(be->format(QStringLiteral("Preamble"), keywordCasing).toLatin1().data()); iodevice->putChar('{'); /// Remember: strings from preamble do not get encoded, /// may contain raw LaTeX commands and code iodevice->write(TextEncoder::encode(p->internalValueToBibTeX(preamble.value(), QString(), leRaw), destinationCodec)); iodevice->putChar('}'); iodevice->putChar('\n'); iodevice->putChar('\n'); return true; } QString addProtectiveCasing(QString &text) { if (text.length() < 2 && (text[0] != QLatin1Char('"') || text[text.length() - 1] != QLatin1Char('"')) && (text[0] != QLatin1Char('{') || text[text.length() - 1] != QLatin1Char('}'))) { /// Nothing to protect, as this is no text string return text; } bool addBrackets = true; if (text[1] == QLatin1Char('{') && text[text.length() - 2] == QLatin1Char('}')) { /// If the given text looks like this: {{...}} /// still check that it is not like this: {{..}..{..}} addBrackets = false; int count = 0; for (int i = text.length() - 2; !addBrackets && i > 1; --i) { if (text[i] == QLatin1Char('{')) ++count; else if (text[i] == QLatin1Char('}')) --count; if (count == 0) addBrackets = true; } } if (addBrackets) text.insert(1, QStringLiteral("{")).insert(text.length(), QStringLiteral("}")); return text; } QString removeProtectiveCasing(QString &text) { if (text.length() < 2 && (text[0] != QLatin1Char('"') || text[text.length() - 1] != QLatin1Char('"')) && (text[0] != QLatin1Char('{') || text[text.length() - 1] != QLatin1Char('}'))) { /// Nothing to protect, as this is no text string return text; } if (text[1] != QLatin1Char('{') || text[text.length() - 2] != QLatin1Char('}')) /// Nothing to remove return text; bool removeBrackets = true; int count = 0; for (int i = text.length() - 2; removeBrackets && i > 1; --i) { if (text[i] == QLatin1Char('{')) ++count; else if (text[i] == QLatin1Char('}')) --count; if (count == 0) removeBrackets = false; } if (removeBrackets) text.remove(text.length() - 2, 1).remove(1, 1); return text; } QString &protectQuotationMarks(QString &text) { int p = -1; while ((p = text.indexOf(QLatin1Char('"'), p + 1)) > 0) if (p == 0 || text[p - 1] != QLatin1Char('\\')) { text.insert(p + 1, QStringLiteral("}")).insert(p, QStringLiteral("{")); ++p; } return text; } void applyEncoding(QString &encoding) { encoding = encoding.isEmpty() ? QStringLiteral("latex") : encoding.toLower(); destinationCodec = QTextCodec::codecForName(encoding == QStringLiteral("latex") ? "us-ascii" : encoding.toLatin1()); } bool requiresPersonQuoting(const QString &text, bool isLastName) { if (isLastName && !text.contains(QChar(' '))) /** Last name contains NO spaces, no quoting necessary */ return false; else if (!isLastName && !text.contains(QStringLiteral(" and "))) /** First name contains no " and " no quoting necessary */ return false; else if (isLastName && !text.isEmpty() && text[0].isLower()) /** Last name starts with lower-case character (von, van, de, ...) */ // FIXME does not work yet return false; else if (text[0] != '{' || text[text.length() - 1] != '}') /** as either last name contains spaces or first name contains " and " and there is no protective quoting yet, there must be a protective quoting added */ return true; int bracketCounter = 0; for (int i = text.length() - 1; i >= 0; --i) { if (text[i] == '{') ++bracketCounter; else if (text[i] == '}') --bracketCounter; if (bracketCounter == 0 && i > 0) return true; } return false; } }; FileExporterBibTeX::FileExporterBibTeX(QObject *parent) : FileExporter(parent), d(new FileExporterBibTeXPrivate(this)) { // nothing } FileExporterBibTeX::~FileExporterBibTeX() { delete d; } void FileExporterBibTeX::setEncoding(const QString &encoding) { d->forcedEncoding = encoding; } bool FileExporterBibTeX::save(QIODevice *iodevice, const File *bibtexfile, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = true; int totalElements = (int) bibtexfile->count(); int currentPos = 0; d->loadState(); d->loadStateFromFile(bibtexfile); if (d->encoding != QStringLiteral("latex")) { Comment encodingComment(QStringLiteral("x-kbibtex-encoding=") + d->encoding, true); result &= d->writeComment(iodevice, encodingComment); } /// Memorize which entries are used in a crossref field QStringList crossRefIdList; for (File::ConstIterator it = bibtexfile->constBegin(); it != bibtexfile->constEnd() && result && !d->cancelFlag; ++it) { QSharedPointer<const Entry> entry = (*it).dynamicCast<const Entry>(); if (!entry.isNull()) { const QString crossRef = PlainTextValue::text(entry->value(Entry::ftCrossRef)); if (!crossRef.isEmpty()) crossRefIdList << crossRef; } } bool allPreamblesAndMacrosProcessed = false; for (File::ConstIterator it = bibtexfile->constBegin(); it != bibtexfile->constEnd() && result && !d->cancelFlag; ++it) { QSharedPointer<const Element> element = (*it); QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) { /// Postpone entries that are crossref'ed if (crossRefIdList.contains(entry->id())) continue; if (!allPreamblesAndMacrosProcessed) { /// Guarantee that all macros and the preamble are written /// before the first entry (@article, ...) is written for (File::ConstIterator msit = it + 1; msit != bibtexfile->constEnd() && result && !d->cancelFlag; ++msit) { QSharedPointer<const Preamble> preamble = (*msit).dynamicCast<const Preamble>(); if (!preamble.isNull()) { result &= d->writePreamble(iodevice, *preamble); emit progress(++currentPos, totalElements); } else { QSharedPointer<const Macro> macro = (*msit).dynamicCast<const Macro>(); if (!macro.isNull()) { result &= d->writeMacro(iodevice, *macro); emit progress(++currentPos, totalElements); } } } allPreamblesAndMacrosProcessed = true; } result &= d->writeEntry(iodevice, *entry); emit progress(++currentPos, totalElements); } else { QSharedPointer<const Comment> comment = element.dynamicCast<const Comment>(); if (!comment.isNull() && !comment->text().startsWith(QStringLiteral("x-kbibtex-"))) { result &= d->writeComment(iodevice, *comment); emit progress(++currentPos, totalElements); } else if (!allPreamblesAndMacrosProcessed) { QSharedPointer<const Preamble> preamble = element.dynamicCast<const Preamble>(); if (!preamble.isNull()) { result &= d->writePreamble(iodevice, *preamble); emit progress(++currentPos, totalElements); } else { QSharedPointer<const Macro> macro = element.dynamicCast<const Macro>(); if (!macro.isNull()) { result &= d->writeMacro(iodevice, *macro); emit progress(++currentPos, totalElements); } } } } } /// Crossref'ed entries are written last for (File::ConstIterator it = bibtexfile->constBegin(); it != bibtexfile->constEnd() && result && !d->cancelFlag; ++it) { QSharedPointer<const Entry> entry = (*it).dynamicCast<const Entry>(); if (entry.isNull()) continue; if (!crossRefIdList.contains(entry->id())) continue; result &= d->writeEntry(iodevice, *entry); emit progress(++currentPos, totalElements); } iodevice->close(); return result && !d->cancelFlag; } bool FileExporterBibTeX::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; d->loadState(); d->loadStateFromFile(bibtexfile); if (!d->forcedEncoding.isEmpty()) d->encoding = d->forcedEncoding; d->applyEncoding(d->encoding); const QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) result |= d->writeEntry(iodevice, *entry); else { const QSharedPointer<const Macro> macro = element.dynamicCast<const Macro>(); if (!macro.isNull()) result |= d->writeMacro(iodevice, *macro); else { const QSharedPointer<const Comment> comment = element.dynamicCast<const Comment>(); if (!comment.isNull()) result |= d->writeComment(iodevice, *comment); else { const QSharedPointer<const Preamble> preamble = element.dynamicCast<const Preamble>(); if (!preamble.isNull()) result |= d->writePreamble(iodevice, *preamble); } } } iodevice->close(); return result && !d->cancelFlag; } void FileExporterBibTeX::cancel() { d->cancelFlag = true; } QString FileExporterBibTeX::valueToBibTeX(const Value &value, const QString &key, UseLaTeXEncoding useLaTeXEncoding) { if (staticFileExporterBibTeX == nullptr) { staticFileExporterBibTeX = new FileExporterBibTeX(nullptr); staticFileExporterBibTeX->d->loadState(); } return staticFileExporterBibTeX->internalValueToBibTeX(value, key, useLaTeXEncoding); } QString FileExporterBibTeX::applyEncoder(const QString &input, UseLaTeXEncoding useLaTeXEncoding) const { switch (useLaTeXEncoding) { case leLaTeX: return EncoderLaTeX::instance().encode(input, Encoder::TargetEncodingASCII); case leUTF8: return EncoderLaTeX::instance().encode(input, Encoder::TargetEncodingUTF8); default: return input; } } QString FileExporterBibTeX::internalValueToBibTeX(const Value &value, const QString &key, UseLaTeXEncoding useLaTeXEncoding) { if (value.isEmpty()) return QString(); QString result; bool isOpen = false; QSharedPointer<const ValueItem> prev; for (const auto &valueItem : value) { QSharedPointer<const MacroKey> macroKey = valueItem.dynamicCast<const MacroKey>(); if (!macroKey.isNull()) { if (isOpen) result.append(d->stringCloseDelimiter); isOpen = false; if (!result.isEmpty()) result.append(" # "); result.append(macroKey->text()); prev = macroKey; } else { QSharedPointer<const PlainText> plainText = valueItem.dynamicCast<const PlainText>(); if (!plainText.isNull()) { QString textBody = applyEncoder(plainText->text(), useLaTeXEncoding); if (!isOpen) { if (!result.isEmpty()) result.append(" # "); result.append(d->stringOpenDelimiter); } else if (!prev.dynamicCast<const PlainText>().isNull()) result.append(' '); else if (!prev.dynamicCast<const Person>().isNull()) { /// handle "et al." i.e. "and others" result.append(" and "); } else { result.append(d->stringCloseDelimiter).append(" # ").append(d->stringOpenDelimiter); } isOpen = true; if (d->stringOpenDelimiter == QLatin1Char('"')) d->protectQuotationMarks(textBody); result.append(textBody); prev = plainText; } else { QSharedPointer<const VerbatimText> verbatimText = valueItem.dynamicCast<const VerbatimText>(); if (!verbatimText.isNull()) { QString textBody = verbatimText->text(); if (!isOpen) { if (!result.isEmpty()) result.append(" # "); result.append(d->stringOpenDelimiter); } else if (!prev.dynamicCast<const VerbatimText>().isNull()) { const QString keyToLower(key.toLower()); if (keyToLower.startsWith(Entry::ftUrl) || keyToLower.startsWith(Entry::ftLocalFile) || keyToLower.startsWith(Entry::ftDOI)) /// Filenames and alike have be separated by a semicolon, /// as a plain comma may be part of the filename or URL result.append(QStringLiteral("; ")); else result.append(' '); } else { result.append(d->stringCloseDelimiter).append(" # ").append(d->stringOpenDelimiter); } isOpen = true; if (d->stringOpenDelimiter == QLatin1Char('"')) d->protectQuotationMarks(textBody); result.append(textBody); prev = verbatimText; } else { QSharedPointer<const Person> person = valueItem.dynamicCast<const Person>(); if (!person.isNull()) { QString firstName = person->firstName(); if (!firstName.isEmpty() && d->requiresPersonQuoting(firstName, false)) firstName = firstName.prepend("{").append("}"); QString lastName = person->lastName(); if (!lastName.isEmpty() && d->requiresPersonQuoting(lastName, true)) lastName = lastName.prepend("{").append("}"); QString suffix = person->suffix(); /// Fall back and enforce comma-based name formatting /// if name contains a suffix like "Jr." /// Otherwise name could not be parsed again reliable const QString pnf = suffix.isEmpty() ? d->personNameFormatting : Preferences::personNameFormatLastFirst; QString thisName = applyEncoder(Person::transcribePersonName(pnf, firstName, lastName, suffix), useLaTeXEncoding); if (!isOpen) { if (!result.isEmpty()) result.append(" # "); result.append(d->stringOpenDelimiter); } else if (!prev.dynamicCast<const Person>().isNull()) result.append(" and "); else { result.append(d->stringCloseDelimiter).append(" # ").append(d->stringOpenDelimiter); } isOpen = true; if (d->stringOpenDelimiter == QLatin1Char('"')) d->protectQuotationMarks(thisName); result.append(thisName); prev = person; } else { QSharedPointer<const Keyword> keyword = valueItem.dynamicCast<const Keyword>(); if (!keyword.isNull()) { QString textBody = applyEncoder(keyword->text(), useLaTeXEncoding); if (!isOpen) { if (!result.isEmpty()) result.append(" # "); result.append(d->stringOpenDelimiter); } else if (!prev.dynamicCast<const Keyword>().isNull()) result.append(d->listSeparator); else { result.append(d->stringCloseDelimiter).append(" # ").append(d->stringOpenDelimiter); } isOpen = true; if (d->stringOpenDelimiter == QLatin1Char('"')) d->protectQuotationMarks(textBody); result.append(textBody); prev = keyword; } } } } } prev = valueItem; } if (isOpen) result.append(d->stringCloseDelimiter); return result; } bool FileExporterBibTeX::isFileExporterBibTeX(const FileExporter &other) { return typeid(other) == typeid(FileExporterBibTeX); } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtex.h�����������������������������������������������������������0000664�0000000�0000000�00000005564�13313000262�0020425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERBIBTEX_H #define BIBTEXFILEEXPORTERBIBTEX_H #include <QTextStream> #include "kbibtex.h" #include "element.h" #include "value.h" #include "fileexporter.h" class QChar; class Comment; class Preamble; class Macro; class Entry; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporterBibTeX : public FileExporter { Q_OBJECT public: enum UseLaTeXEncoding {leUTF8, leLaTeX, leRaw}; explicit FileExporterBibTeX(QObject *parent); ~FileExporterBibTeX() override; void setEncoding(const QString &encoding); bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; static QString valueToBibTeX(const Value &value, const QString &fieldType = QString(), UseLaTeXEncoding useLaTeXEncoding = leLaTeX); /** * Cheap and fast test if another FileExporter is a FileExporterBibTeX object. * @param other another FileExporter object to test * @return true if FileExporter is actually a FileExporterBibTeX */ static bool isFileExporterBibTeX(const FileExporter &other); public slots: void cancel() override; private: class FileExporterBibTeXPrivate; FileExporterBibTeXPrivate *d; inline QString applyEncoder(const QString &input, UseLaTeXEncoding useLaTeXEncoding) const; QString internalValueToBibTeX(const Value &value, const QString &fieldType = QString(), UseLaTeXEncoding useLaTeXEncoding = leLaTeX); static FileExporterBibTeX *staticFileExporterBibTeX; }; #endif ��������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtex2html.cpp����������������������������������������������������0000664�0000000�0000000�00000013450�13313000262�0021720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterbibtex2html.h" #include <QFile> #include <QStandardPaths> #include <KLocalizedString> #include "fileexporterbibtex.h" #include "logging_io.h" class FileExporterBibTeX2HTML::FileExporterBibTeX2HTMLPrivate { private: FileExporterBibTeX2HTML *p; public: QString bibTeXFilename; QString outputFilename; QString bibStyle; FileExporterBibTeX2HTMLPrivate(FileExporterBibTeX2HTML *parent, const QString &workingDir) : p(parent) { bibTeXFilename = QString(workingDir).append("/bibtex-to-html.bib"); outputFilename = QString(workingDir).append("/bibtex-to-html.html"); bibStyle = QStringLiteral("plain"); } bool generateHTML(QIODevice *iodevice, QStringList *errorLog) { if (!checkBSTexists(iodevice)) return false; if (!checkBibTeX2HTMLexists(iodevice)) return false; /// bibtex2html automatically appends ".html" to output filenames QString outputFilenameNoEnding = outputFilename; outputFilenameNoEnding.remove(QStringLiteral(".html")); QStringList args; args << QStringLiteral("-s") << bibStyle; /// BibTeX style (plain, alpha, ...) args << QStringLiteral("-o") << outputFilenameNoEnding; /// redirect the output args << QStringLiteral("-nokeys"); /// do not print the BibTeX keys args << QStringLiteral("-nolinks"); /// do not print any web link args << QStringLiteral("-nodoc"); /// only produces the body of the HTML documents args << QStringLiteral("-nobibsource"); /// do not produce the BibTeX entries file args << QStringLiteral("-debug"); /// verbose mode (to find incorrect BibTeX entries) args << bibTeXFilename; bool result = p->runProcess(QStringLiteral("bibtex2html"), args, errorLog) && p->writeFileToIODevice(outputFilename, iodevice, errorLog); return result; } bool checkBibTeX2HTMLexists(QIODevice *iodevice) { if (!QStandardPaths::findExecutable(QStringLiteral("bibtex2html")).isEmpty()) return true; QTextStream ts(iodevice); ts << QStringLiteral("<div style=\"color: red; background: white;\">"); ts << i18n("The program <strong>bibtex2html</strong> is not available."); ts << QStringLiteral("</div>") << endl; ts.flush(); return false; } bool checkBSTexists(QIODevice *iodevice) { if (p->kpsewhich(bibStyle + ".bst")) return true; QTextStream ts(iodevice); ts << QStringLiteral("<div style=\"color: red; background: white;\">"); ts << i18n("The BibTeX style <strong>%1</strong> is not available.", bibStyle); ts << QStringLiteral("</div>") << endl; ts.flush(); return false; } }; FileExporterBibTeX2HTML::FileExporterBibTeX2HTML(QObject *parent) : FileExporterToolchain(parent), d(new FileExporterBibTeX2HTMLPrivate(this, tempDir.path())) { // nothing } FileExporterBibTeX2HTML::~FileExporterBibTeX2HTML() { delete d; } void FileExporterBibTeX2HTML::reloadConfig() { // nothing } bool FileExporterBibTeX2HTML::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(d->bibTeXFilename); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, bibtexfile, errorLog); output.close(); } if (result) result = d->generateHTML(iodevice, errorLog); iodevice->close(); return result; } bool FileExporterBibTeX2HTML::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(d->bibTeXFilename); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, element, bibtexfile, errorLog); output.close(); } if (result) result = d->generateHTML(iodevice, errorLog); iodevice->close(); return result; } void FileExporterBibTeX2HTML::setLaTeXBibliographyStyle(const QString &bibStyle) { d->bibStyle = bibStyle; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtex2html.h������������������������������������������������������0000664�0000000�0000000�00000004035�13313000262�0021364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEEXPORTERBIBTEX2HTML_H #define KBIBTEX_IO_FILEEXPORTERBIBTEX2HTML_H #include "fileexportertoolchain.h" /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterBibTeX2HTML: public FileExporterToolchain { Q_OBJECT public: explicit FileExporterBibTeX2HTML(QObject *parent); ~FileExporterBibTeX2HTML() override; void reloadConfig() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; void setLaTeXBibliographyStyle(const QString &bibStyle); private: class FileExporterBibTeX2HTMLPrivate; FileExporterBibTeX2HTMLPrivate *d; }; #endif // KBIBTEX_IO_FILEEXPORTERBIBTEX2HTML_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtexoutput.cpp���������������������������������������������������0000664�0000000�0000000�00000013352�13313000262�0022233�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterbibtexoutput.h" #include <QBuffer> #include <QFile> #include <QDir> #include <QStringList> #include <QUrl> #include <QTextStream> #include "element.h" #include "entry.h" #include "fileexporterbibtex.h" #include "kbibtex.h" #include "logging_io.h" FileExporterBibTeXOutput::FileExporterBibTeXOutput(OutputType outputType, QObject *parent) : FileExporterToolchain(parent), m_outputType(outputType), m_latexLanguage(QStringLiteral("english")), m_latexBibStyle(QStringLiteral("plain")) { m_fileBasename = QStringLiteral("bibtex-to-output"); m_fileStem = tempDir.path() + QDir::separator() + m_fileBasename; } FileExporterBibTeXOutput::~FileExporterBibTeXOutput() { // nothing } void FileExporterBibTeXOutput::reloadConfig() { // nothing } bool FileExporterBibTeXOutput::save(QIODevice *ioDevice, const File *bibtexfile, QStringList *errorLog) { if (!ioDevice->isWritable() && !ioDevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile bibTeXFile(m_fileStem + KBibTeX::extensionBibTeX); if (bibTeXFile.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("utf-8")); result = bibtexExporter.save(&bibTeXFile, bibtexfile, errorLog); bibTeXFile.close(); } if (result) result = generateOutput(errorLog); if (result) result = writeFileToIODevice(m_fileStem + (m_outputType == BibTeXLogFile ? KBibTeX::extensionBLG : KBibTeX::extensionBBL), ioDevice, errorLog); ioDevice->close(); return result; } bool FileExporterBibTeXOutput::save(QIODevice *ioDevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!ioDevice->isWritable() && !ioDevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile bibTeXFile(m_fileStem + KBibTeX::extensionBibTeX); if (bibTeXFile.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("utf-8")); result = bibtexExporter.save(&bibTeXFile, element, bibtexfile, errorLog); bibTeXFile.close(); } if (result) result = generateOutput(errorLog); if (result) result = writeFileToIODevice(m_fileStem + (m_outputType == BibTeXLogFile ? KBibTeX::extensionBLG : KBibTeX::extensionBBL), ioDevice, errorLog); ioDevice->close(); return result; } void FileExporterBibTeXOutput::setLaTeXLanguage(const QString &language) { m_latexLanguage = language; } void FileExporterBibTeXOutput::setLaTeXBibliographyStyle(const QString &bibStyle) { m_latexBibStyle = bibStyle; } bool FileExporterBibTeXOutput::generateOutput(QStringList *errorLog) { QStringList cmdLines = QStringList() << QStringLiteral("pdflatex -halt-on-error ") + m_fileBasename + KBibTeX::extensionTeX << QStringLiteral("bibtex ") + m_fileBasename + KBibTeX::extensionAux; if (writeLatexFile(m_fileStem + KBibTeX::extensionTeX) && runProcesses(cmdLines, errorLog)) return true; else { qCWarning(LOG_KBIBTEX_IO) << "Generating BibTeX output failed"; return false; } } bool FileExporterBibTeXOutput::writeLatexFile(const QString &filename) { QFile latexFile(filename); if (latexFile.open(QIODevice::WriteOnly)) { QTextStream ts(&latexFile); ts.setCodec("UTF-8"); ts << "\\documentclass{article}\n"; ts << "\\usepackage[T1]{fontenc}\n"; ts << "\\usepackage[utf8]{inputenc}\n"; if (kpsewhich(QStringLiteral("babel.sty"))) ts << "\\usepackage[" << m_latexLanguage << "]{babel}\n"; if (kpsewhich(QStringLiteral("hyperref.sty"))) ts << "\\usepackage[pdfproducer={KBibTeX: https://userbase.kde.org/KBibTeX},pdftex]{hyperref}\n"; else if (kpsewhich(QStringLiteral("url.sty"))) ts << "\\usepackage{url}\n"; if (m_latexBibStyle.startsWith(QStringLiteral("apacite")) && kpsewhich(QStringLiteral("apacite.sty"))) ts << "\\usepackage[bibnewpage]{apacite}\n"; ts << "\\bibliographystyle{" << m_latexBibStyle << "}\n"; ts << "\\begin{document}\n"; ts << "\\nocite{*}\n"; ts << QStringLiteral("\\bibliography{") + m_fileBasename + QStringLiteral("}\n"); ts << "\\end{document}\n"; latexFile.close(); return true; } else return false; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibtexoutput.h�����������������������������������������������������0000664�0000000�0000000�00000004447�13313000262�0021705�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERBIBTEXOUTPUT_H #define BIBTEXFILEEXPORTERBIBTEXOUTPUT_H #include <QStringList> #include "fileexportertoolchain.h" /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterBibTeXOutput : public FileExporterToolchain { Q_OBJECT public: enum OutputType {BibTeXLogFile, BibTeXBlockList}; explicit FileExporterBibTeXOutput(OutputType outputType, QObject *parent); ~FileExporterBibTeXOutput() override; void reloadConfig() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; void setLaTeXLanguage(const QString &language); void setLaTeXBibliographyStyle(const QString &bibStyle); private: OutputType m_outputType; QString m_fileBasename; QString m_fileStem; QString m_latexLanguage; QString m_latexBibStyle; bool generateOutput(QStringList *errorLog); bool writeLatexFile(const QString &filename); }; #endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibutils.cpp�������������������������������������������������������0000664�0000000�0000000�00000005611�13313000262�0021311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterbibutils.h" #include <QBuffer> #include "fileexporterbibtex.h" #include "logging_io.h" class FileExporterBibUtils::Private { private: // UNUSED FileExporterBibUtils *p; public: FileExporterBibTeX *bibtexExporter; Private(FileExporterBibUtils *parent) // UNUSED : p(parent) { bibtexExporter = new FileExporterBibTeX(parent); bibtexExporter->setEncoding(QStringLiteral("utf-8")); } ~Private() { delete bibtexExporter; } }; FileExporterBibUtils::FileExporterBibUtils(QObject *parent) : FileExporter(parent), BibUtils(), d(new FileExporterBibUtils::Private(this)) { // TODO } FileExporterBibUtils::~FileExporterBibUtils() { delete d; } bool FileExporterBibUtils::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } QBuffer buffer; bool result = d->bibtexExporter->save(&buffer, bibtexfile, errorLog); if (result) result = convert(buffer, BibUtils::BibTeX, *iodevice, format()); iodevice->close(); return result; } bool FileExporterBibUtils::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) return false; QBuffer buffer; bool result = d->bibtexExporter->save(&buffer, element, bibtexfile, errorLog); if (result) result = convert(buffer, BibUtils::BibTeX, *iodevice, format()); iodevice->close(); return result; } �����������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterbibutils.h���������������������������������������������������������0000664�0000000�0000000�00000003640�13313000262�0020756�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef IO_FILEEXPORTERBIBUTILS_H #define IO_FILEEXPORTERBIBUTILS_H #include "fileexporter.h" #include "bibutils.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporterBibUtils : public FileExporter, public BibUtils { Q_OBJECT public: explicit FileExporterBibUtils(QObject *parent); ~FileExporterBibUtils() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; private: class Private; Private *const d; }; #endif // IO_FILEEXPORTERBIBUTILS_H ������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterpdf.cpp������������������������������������������������������������0000664�0000000�0000000�00000023363�13313000262�0020251�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterpdf.h" #include <QFile> #include <QStringList> #include <QUrl> #include <QTextStream> #include <QDir> #include <KSharedConfig> #include <KConfigGroup> #include "fileinfo.h" #include "element.h" #include "entry.h" #include "fileexporterbibtex.h" #include "kbibtex.h" #include "logging_io.h" FileExporterPDF::FileExporterPDF(QObject *parent) : FileExporterToolchain(parent) { m_fileBasename = QStringLiteral("bibtex-to-pdf"); m_fileStem = tempDir.path() + QDir::separator() + m_fileBasename; setFileEmbedding(FileExporterPDF::EmbedBibTeXFileAndReferences); reloadConfig(); } FileExporterPDF::~FileExporterPDF() { // nothing } void FileExporterPDF::reloadConfig() { KSharedConfigPtr config = KSharedConfig::openConfig(QStringLiteral("kbibtexrc")); KConfigGroup configGroup(config, QStringLiteral("FileExporterPDFPS")); m_babelLanguage = configGroup.readEntry(keyBabelLanguage, defaultBabelLanguage); m_bibliographyStyle = configGroup.readEntry(keyBibliographyStyle, defaultBibliographyStyle); KConfigGroup configGroupGeneral(config, QStringLiteral("General")); m_paperSize = configGroupGeneral.readEntry(keyPaperSize, defaultPaperSize); m_font = configGroupGeneral.readEntry(keyFont, defaultFont); } bool FileExporterPDF::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; m_embeddedFileList.clear(); if (m_fileEmbedding & EmbedBibTeXFile) m_embeddedFileList.append(QString(QStringLiteral("%1|%2|%3")).arg(QStringLiteral("BibTeX source"), m_fileStem + KBibTeX::extensionBibTeX, m_fileBasename + KBibTeX::extensionBibTeX)); if (m_fileEmbedding & EmbedReferences) fillEmbeddedFileList(bibtexfile); QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, bibtexfile, errorLog); output.close(); } if (result) result = generatePDF(iodevice, errorLog); if (errorLog != nullptr) qCDebug(LOG_KBIBTEX_IO) << "errorLog" << errorLog->join(QStringLiteral(";")); iodevice->close(); return result; } bool FileExporterPDF::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; m_embeddedFileList.clear(); //if (m_fileEmbedding & EmbedReferences) // FIXME need File object fillEmbeddedFileList(element); QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, element, bibtexfile, errorLog); output.close(); } if (result) result = generatePDF(iodevice, errorLog); iodevice->close(); return result; } void FileExporterPDF::setDocumentSearchPaths(const QStringList &searchPaths) { m_searchPaths = searchPaths; } void FileExporterPDF::setFileEmbedding(FileEmbedding fileEmbedding) { /// If there is not embedfile.sty file, disable embedding /// irrespective of user's wishes if (!kpsewhich(QStringLiteral("embedfile.sty"))) m_fileEmbedding = NoFileEmbedding; else m_fileEmbedding = fileEmbedding; } bool FileExporterPDF::generatePDF(QIODevice *iodevice, QStringList *errorLog) { QStringList cmdLines = QStringList() << QStringLiteral("pdflatex -halt-on-error ") + m_fileStem + KBibTeX::extensionTeX << QStringLiteral("bibtex ") + m_fileStem + KBibTeX::extensionAux << QStringLiteral("pdflatex -halt-on-error ") + m_fileStem + KBibTeX::extensionTeX << QStringLiteral("pdflatex -halt-on-error ") + m_fileStem + KBibTeX::extensionTeX; return writeLatexFile(m_fileStem + KBibTeX::extensionTeX) && runProcesses(cmdLines, errorLog) && writeFileToIODevice(m_fileStem + KBibTeX::extensionPDF, iodevice, errorLog); } bool FileExporterPDF::writeLatexFile(const QString &filename) { QFile latexFile(filename); if (latexFile.open(QIODevice::WriteOnly)) { QTextStream ts(&latexFile); ts.setCodec("UTF-8"); ts << "\\documentclass{article}" << endl; ts << "\\usepackage[T1]{fontenc}" << endl; ts << "\\usepackage[utf8]{inputenc}" << endl; if (kpsewhich(QStringLiteral("babel.sty"))) ts << "\\usepackage[" << m_babelLanguage << "]{babel}" << endl; if (kpsewhich(QStringLiteral("hyperref.sty"))) ts << "\\usepackage[pdfborder={0 0 0},pdfproducer={KBibTeX: https://userbase.kde.org/KBibTeX},pdftex]{hyperref}" << endl; else if (kpsewhich(QStringLiteral("url.sty"))) ts << "\\usepackage{url}" << endl; if (m_bibliographyStyle.startsWith(QStringLiteral("apacite")) && kpsewhich(QStringLiteral("apacite.sty"))) ts << "\\usepackage[bibnewpage]{apacite}" << endl; if ((m_bibliographyStyle == QStringLiteral("agsm") || m_bibliographyStyle == QStringLiteral("dcu") || m_bibliographyStyle == QStringLiteral("jmr") || m_bibliographyStyle == QStringLiteral("jphysicsB") || m_bibliographyStyle == QStringLiteral("kluwer") || m_bibliographyStyle == QStringLiteral("nederlands") || m_bibliographyStyle == QStringLiteral("dcu") || m_bibliographyStyle == QStringLiteral("dcu")) && kpsewhich(QStringLiteral("harvard.sty")) && kpsewhich(QStringLiteral("html.sty"))) ts << "\\usepackage{html}" << endl << "\\usepackage[dcucite]{harvard}" << endl << "\\renewcommand{\\harvardurl}{URL: \\url}" << endl; if (kpsewhich(QStringLiteral("embedfile.sty"))) ts << "\\usepackage{embedfile}" << endl; if (kpsewhich(QStringLiteral("geometry.sty"))) ts << "\\usepackage[paper=" << m_paperSize << (m_paperSize.length() <= 2 ? "paper" : "") << "]{geometry}" << endl; if (!m_font.isEmpty() && kpsewhich(m_font + QStringLiteral(".sty"))) ts << "\\usepackage{" << m_font << "}" << endl; ts << "\\bibliographystyle{" << m_bibliographyStyle << "}" << endl; ts << "\\begin{document}" << endl; if (!m_embeddedFileList.isEmpty()) for (const QString &embeddedFile : const_cast<const QStringList &>(m_embeddedFileList)) { const QStringList param = embeddedFile.split(QStringLiteral("|")); QFile file(param[1]); if (file.exists()) ts << "\\embedfile[desc={" << param[0] << "}"; ts << ",filespec={" << param[2] << "}"; if (param[2].endsWith(KBibTeX::extensionBibTeX)) ts << ",mimetype={text/x-bibtex}"; else if (param[2].endsWith(KBibTeX::extensionPDF)) ts << ",mimetype={application/pdf}"; ts << "]{" << param[1] << "}" << endl; } ts << "\\nocite{*}" << endl; ts << QStringLiteral("\\bibliography{") << m_fileBasename << QStringLiteral("}") << endl; ts << "\\end{document}" << endl; latexFile.close(); return true; } else return false; } void FileExporterPDF::fillEmbeddedFileList(const File *bibtexfile) { for (const auto &element : const_cast<const File &>(*bibtexfile)) fillEmbeddedFileList(element, bibtexfile); } void FileExporterPDF::fillEmbeddedFileList(const QSharedPointer<const Element> element, const File *bibtexfile) { if (bibtexfile == nullptr || !bibtexfile->hasProperty(File::Url)) { /// If no valid File was provided or File is not saved, do not append files return; } const QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) { const QString title = PlainTextValue::text(entry->value(Entry::ftTitle)); const QList<QUrl> urlList = FileInfo::entryUrls(entry, bibtexfile->property(File::Url).toUrl(), FileInfo::TestExistenceYes); for (const QUrl &url : urlList) { if (!url.isLocalFile()) continue; const QString filename = url.toLocalFile(); const QString basename = QFileInfo(filename).fileName(); m_embeddedFileList.append(QString(QStringLiteral("%1|%2|%3")).arg(title, filename, basename)); } } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterpdf.h��������������������������������������������������������������0000664�0000000�0000000�00000005167�13313000262�0017720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERPDF_H #define BIBTEXFILEEXPORTERPDF_H #include <QStringList> #include "fileexportertoolchain.h" /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterPDF : public FileExporterToolchain { Q_OBJECT public: enum FileEmbedding { NoFileEmbedding = 0, EmbedBibTeXFile = 1, EmbedReferences = 2, EmbedBibTeXFileAndReferences = EmbedBibTeXFile | EmbedReferences}; explicit FileExporterPDF(QObject *parent); ~FileExporterPDF() override; void reloadConfig() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; void setDocumentSearchPaths(const QStringList &searchPaths); void setFileEmbedding(FileEmbedding fileEmbedding); private: QString m_fileBasename; QString m_fileStem; QString m_babelLanguage; QString m_paperSize; QString m_font; QString m_bibliographyStyle; FileEmbedding m_fileEmbedding; QStringList m_embeddedFileList; QStringList m_searchPaths; bool generatePDF(QIODevice *iodevice, QStringList *errorLog); bool writeLatexFile(const QString &filename); void fillEmbeddedFileList(const File *bibtexfile); void fillEmbeddedFileList(const QSharedPointer<const Element> element, const File *bibtexfile); }; #endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterps.cpp�������������������������������������������������������������0000664�0000000�0000000�00000017035�13313000262�0020121�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterps.h" #include <QFile> #include <QStringList> #include <QTextStream> #include <QDir> #include <KSharedConfig> #include <KConfigGroup> #include "element.h" #include "fileexporterbibtex.h" #include "kbibtex.h" #include "logging_io.h" FileExporterPS::FileExporterPS(QObject *parent) : FileExporterToolchain(parent) { m_fileBasename = QStringLiteral("bibtex-to-ps"); m_fileStem = tempDir.path() + QDir::separator() + m_fileBasename; reloadConfig(); } FileExporterPS::~FileExporterPS() { // nothing } void FileExporterPS::reloadConfig() { KSharedConfigPtr config = KSharedConfig::openConfig(QStringLiteral("kbibtexrc")); KConfigGroup configGroup(config, QStringLiteral("FileExporterPDFPS")); m_babelLanguage = configGroup.readEntry(keyBabelLanguage, defaultBabelLanguage); m_bibliographyStyle = configGroup.readEntry(keyBibliographyStyle, defaultBibliographyStyle); KConfigGroup configGroupGeneral(config, QStringLiteral("General")); m_paperSize = configGroupGeneral.readEntry(keyPaperSize, defaultPaperSize); m_font = configGroupGeneral.readEntry(keyFont, defaultFont); } bool FileExporterPS::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, bibtexfile, errorLog); output.close(); } if (result) result = generatePS(iodevice, errorLog); iodevice->close(); return result; } bool FileExporterPS::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, element, bibtexfile, errorLog); output.close(); } if (result) result = generatePS(iodevice, errorLog); iodevice->close(); return result; } bool FileExporterPS::generatePS(QIODevice *iodevice, QStringList *errorLog) { QStringList cmdLines = QStringList() << QStringLiteral("latex -halt-on-error bibtex-to-ps.tex") << QStringLiteral("bibtex bibtex-to-ps") << QStringLiteral("latex -halt-on-error bibtex-to-ps.tex") << QStringLiteral("latex -halt-on-error bibtex-to-ps.tex") << QStringLiteral("dvips -R2 -o bibtex-to-ps.ps bibtex-to-ps.dvi"); return writeLatexFile(m_fileStem + KBibTeX::extensionTeX) && runProcesses(cmdLines, errorLog) && beautifyPostscriptFile(m_fileStem + KBibTeX::extensionPostScript, QStringLiteral("Exported Bibliography")) && writeFileToIODevice(m_fileStem + KBibTeX::extensionPostScript, iodevice, errorLog); } bool FileExporterPS::writeLatexFile(const QString &filename) { QFile latexFile(filename); if (latexFile.open(QIODevice::WriteOnly)) { QTextStream ts(&latexFile); ts.setCodec("UTF-8"); ts << "\\documentclass{article}" << endl; ts << "\\usepackage[T1]{fontenc}" << endl; ts << "\\usepackage[utf8]{inputenc}" << endl; if (kpsewhich(QStringLiteral("babel.sty"))) ts << "\\usepackage[" << m_babelLanguage << "]{babel}" << endl; if (kpsewhich(QStringLiteral("url.sty"))) ts << "\\usepackage{url}" << endl; if (m_bibliographyStyle.startsWith(QStringLiteral("apacite")) && kpsewhich(QStringLiteral("apacite.sty"))) ts << "\\usepackage[bibnewpage]{apacite}" << endl; if ((m_bibliographyStyle == QStringLiteral("agsm") || m_bibliographyStyle == QStringLiteral("dcu") || m_bibliographyStyle == QStringLiteral("jmr") || m_bibliographyStyle == QStringLiteral("jphysicsB") || m_bibliographyStyle == QStringLiteral("kluwer") || m_bibliographyStyle == QStringLiteral("nederlands") || m_bibliographyStyle == QStringLiteral("dcu") || m_bibliographyStyle == QStringLiteral("dcu")) && kpsewhich(QStringLiteral("harvard.sty")) && kpsewhich(QStringLiteral("html.sty"))) ts << "\\usepackage{html}" << endl << "\\usepackage[dcucite]{harvard}" << endl << "\\renewcommand{\\harvardurl}{URL: \\url}" << endl; if (kpsewhich(QStringLiteral("geometry.sty"))) ts << "\\usepackage[paper=" << m_paperSize << (m_paperSize.length() <= 2 ? "paper" : "") << "]{geometry}" << endl; if (!m_font.isEmpty() && kpsewhich(m_font + QStringLiteral(".sty"))) ts << "\\usepackage{" << m_font << "}" << endl; ts << "\\bibliographystyle{" << m_bibliographyStyle << "}" << endl; ts << "\\begin{document}" << endl; ts << "\\nocite{*}" << endl; ts << "\\bibliography{bibtex-to-ps}" << endl; ts << "\\end{document}" << endl; latexFile.close(); return true; } else return false; } bool FileExporterPS::beautifyPostscriptFile(const QString &filename, const QString &title) { QFile postscriptFile(filename); if (postscriptFile.open(QFile::ReadOnly)) { QTextStream ts(&postscriptFile); QStringList lines; QString line; int i = 0; while (!(line = ts.readLine()).isNull()) { if (i < 32 && line.startsWith(QStringLiteral("%%Title:"))) line = "%%Title: " + title; else if (i < 32 && line.startsWith(QStringLiteral("%%Creator:"))) line += QStringLiteral("; exported from within KBibTeX: https://userbase.kde.org/KBibTeX"); lines += line; ++i; } postscriptFile.close(); if (postscriptFile.open(QFile::WriteOnly)) { QTextStream ts(&postscriptFile); for (const QString &line : const_cast<const QStringList &>(lines)) ts << line << endl; postscriptFile.close(); } else return false; } else return false; return true; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterps.h���������������������������������������������������������������0000664�0000000�0000000�00000004250�13313000262�0017561�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERPS_H #define BIBTEXFILEEXPORTERPS_H #include "fileexportertoolchain.h" class QStringList; /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterPS : public FileExporterToolchain { Q_OBJECT public: explicit FileExporterPS(QObject *parent); ~FileExporterPS() override; void reloadConfig() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; private: QString m_fileBasename; QString m_fileStem; QString m_babelLanguage; QString m_paperSize; QString m_font; QString m_bibliographyStyle; bool generatePS(QIODevice *iodevice, QStringList *errorLog); bool writeLatexFile(const QString &filename); bool beautifyPostscriptFile(const QString &filename, const QString &title); }; #endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterris.cpp������������������������������������������������������������0000664�0000000�0000000�00000022430�13313000262�0020267�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterris.h" #include <QRegExp> #include <QStringList> #include "entry.h" #include "logging_io.h" FileExporterRIS::FileExporterRIS(QObject *parent) : FileExporter(parent), m_cancelFlag(false) { // nothing } FileExporterRIS::~FileExporterRIS() { // nothing } bool FileExporterRIS::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File * /*bibtexfile*/, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCDebug(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; m_cancelFlag = false; QTextStream stream(iodevice); const QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) result = writeEntry(stream, entry.data()); iodevice->close(); return result && !m_cancelFlag; } bool FileExporterRIS::save(QIODevice *iodevice, const File *bibtexfile, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCDebug(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = true; m_cancelFlag = false; QTextStream stream(iodevice); for (File::ConstIterator it = bibtexfile->constBegin(); it != bibtexfile->constEnd() && result && !m_cancelFlag; ++it) { const QSharedPointer<Entry> entry = (*it).dynamicCast<Entry>(); if (!entry.isNull()) { // FIXME Entry *myEntry = bibtexfile->completeReferencedFieldsConst( entry ); //Entry *myEntry = new Entry(*entry); result &= writeEntry(stream, entry.data()); //delete myEntry; } } iodevice->close(); return result && !m_cancelFlag; } void FileExporterRIS::cancel() { m_cancelFlag = true; } bool FileExporterRIS::writeEntry(QTextStream &stream, const Entry *entry) { bool result = true; QString type = entry->type(); if (type == Entry::etBook) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("BOOK")); else if (type == Entry::etInBook) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("CHAP")); else if (type == Entry::etInProceedings) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("CONF")); else if (type == Entry::etArticle) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("JOUR")); else if (type == Entry::etTechReport) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("RPRT")); else if (type == Entry::etPhDThesis || type == Entry::etMastersThesis) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("THES")); else if (type == Entry::etUnpublished) writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("UNPB")); else writeKeyValue(stream, QStringLiteral("TY"), QStringLiteral("GEN")); writeKeyValue(stream, QStringLiteral("ID"), entry->id()); QString year, month; for (Entry::ConstIterator it = entry->constBegin(); result && it != entry->constEnd(); ++it) { const QString key = it.key(); const Value value = it.value(); if (key.startsWith(QStringLiteral("RISfield_"))) result &= writeKeyValue(stream, key.right(2), PlainTextValue::text(value)); else if (key == Entry::ftAuthor) { for (Value::ConstIterator it = value.constBegin(); result && it != value.constEnd(); ++it) { QSharedPointer<const Person> person = (*it).dynamicCast<const Person>(); if (!person.isNull()) result &= writeKeyValue(stream, QStringLiteral("AU"), PlainTextValue::text(**it)); else qCWarning(LOG_KBIBTEX_IO) << "Cannot write value " << PlainTextValue::text(**it) << " for field AU (author), not supported by RIS format" << endl; } } else if (key.toLower() == Entry::ftEditor) { for (Value::ConstIterator it = value.constBegin(); result && it != value.constEnd(); ++it) { QSharedPointer<const Person> person = (*it).dynamicCast<const Person>(); if (!person.isNull()) result &= writeKeyValue(stream, QStringLiteral("ED"), PlainTextValue::text(**it)); else qCWarning(LOG_KBIBTEX_IO) << "Cannot write value " << PlainTextValue::text(**it) << " for field ED (editor), not supported by RIS format" << endl; } } else if (key == Entry::ftTitle) result &= writeKeyValue(stream, QStringLiteral("TI"), PlainTextValue::text(value)); else if (key == Entry::ftBookTitle) result &= writeKeyValue(stream, QStringLiteral("BT"), PlainTextValue::text(value)); else if (key == Entry::ftSeries) result &= writeKeyValue(stream, QStringLiteral("T3"), PlainTextValue::text(value)); else if (key == Entry::ftJournal) result &= writeKeyValue(stream, QStringLiteral("JO"), PlainTextValue::text(value)); ///< "JF" instead? else if (key == Entry::ftChapter) result &= writeKeyValue(stream, QStringLiteral("CP"), PlainTextValue::text(value)); else if (key == Entry::ftISSN) result &= writeKeyValue(stream, QStringLiteral("SN"), PlainTextValue::text(value)); else if (key == Entry::ftISBN) result &= writeKeyValue(stream, QStringLiteral("SN"), PlainTextValue::text(value)); else if (key == Entry::ftSchool) /// == "institution" result &= writeKeyValue(stream, QStringLiteral("IN"), PlainTextValue::text(value)); else if (key == Entry::ftVolume) result &= writeKeyValue(stream, QStringLiteral("VL"), PlainTextValue::text(value)); else if (key == Entry::ftNumber) /// == "issue" result &= writeKeyValue(stream, QStringLiteral("IS"), PlainTextValue::text(value)); else if (key == Entry::ftNote) result &= writeKeyValue(stream, QStringLiteral("N1"), PlainTextValue::text(value)); else if (key == Entry::ftAbstract) result &= writeKeyValue(stream, QStringLiteral("N2"), PlainTextValue::text(value)); ///< "AB" instead? else if (key == Entry::ftPublisher) result &= writeKeyValue(stream, QStringLiteral("PB"), PlainTextValue::text(value)); else if (key == Entry::ftLocation) result &= writeKeyValue(stream, QStringLiteral("CY"), PlainTextValue::text(value)); else if (key == Entry::ftDOI) result &= writeKeyValue(stream, QStringLiteral("DO"), PlainTextValue::text(value)); else if (key == Entry::ftKeywords) result &= writeKeyValue(stream, QStringLiteral("KW"), PlainTextValue::text(value)); else if (key == Entry::ftYear) year = PlainTextValue::text(value); else if (key == Entry::ftMonth) month = PlainTextValue::text(value); else if (key == Entry::ftAddress) result &= writeKeyValue(stream, QStringLiteral("AD"), PlainTextValue::text(value)); else if (key == Entry::ftUrl) { // FIXME one "UR" line per URL // FIXME for local files, use "L1" result &= writeKeyValue(stream, QStringLiteral("UR"), PlainTextValue::text(value)); } else if (key == Entry::ftPages) { QStringList pageRange = PlainTextValue::text(value).split(QRegExp(QString("--|-|%1").arg(QChar(0x2013)))); if (pageRange.count() == 2) { result &= writeKeyValue(stream, QStringLiteral("SP"), pageRange[ 0 ]); result &= writeKeyValue(stream, QStringLiteral("EP"), pageRange[ 1 ]); } } } if (!year.isEmpty() || !month.isEmpty()) { result &= writeKeyValue(stream, QStringLiteral("PY"), QString(QStringLiteral("%1/%2//")).arg(year, month)); } result &= writeKeyValue(stream, QStringLiteral("ER"), QString()); stream << endl; return result; } bool FileExporterRIS::writeKeyValue(QTextStream &stream, const QString &key, const QString &value) { stream << key << " - "; if (!value.isEmpty()) stream << value; stream << endl; return true; } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterris.h��������������������������������������������������������������0000664�0000000�0000000�00000003772�13313000262�0017744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERRIS_H #define BIBTEXFILEEXPORTERRIS_H #include <QTextStream> #include "fileexporter.h" class Element; class File; class Entry; class KBIBTEXIO_EXPORT FileExporterRIS : public FileExporter { Q_OBJECT public: explicit FileExporterRIS(QObject *parent); ~FileExporterRIS() override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; public slots: void cancel() override; private: bool m_cancelFlag; bool writeEntry(QTextStream &stream, const Entry *entry); bool writeKeyValue(QTextStream &stream, const QString &key, const QString &value); }; #endif ������kbibtex-0.8.1/src/io/fileexporterrtf.cpp������������������������������������������������������������0000664�0000000�0000000�00000013457�13313000262�0020276�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterrtf.h" #include <QFile> #include <QStringList> #include <QTextStream> #include <QDir> #include <KSharedConfig> #include <KConfigGroup> #include "element.h" #include "fileexporterbibtex.h" #include "kbibtex.h" #include "logging_io.h" FileExporterRTF::FileExporterRTF(QObject *parent) : FileExporterToolchain(parent) { m_fileBasename = QStringLiteral("bibtex-to-rtf"); m_fileStem = tempDir.path() + QDir::separator() + m_fileBasename; reloadConfig(); } FileExporterRTF::~FileExporterRTF() { // nothing } void FileExporterRTF::reloadConfig() { KSharedConfigPtr config = KSharedConfig::openConfig(QStringLiteral("kbibtexrc")); KConfigGroup configGroup(config, QStringLiteral("FileExporterPDFPS")); m_babelLanguage = configGroup.readEntry(keyBabelLanguage, defaultBabelLanguage); m_bibliographyStyle = configGroup.readEntry(keyBibliographyStyle, defaultBibliographyStyle); KConfigGroup configGroupGeneral(config, QStringLiteral("General")); m_paperSize = configGroupGeneral.readEntry(keyPaperSize, defaultPaperSize); } bool FileExporterRTF::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, bibtexfile, errorLog); output.close(); } if (result) result = generateRTF(iodevice, errorLog); iodevice->close(); return result; } bool FileExporterRTF::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = false; QFile output(m_fileStem + KBibTeX::extensionBibTeX); if (output.open(QIODevice::WriteOnly)) { FileExporterBibTeX bibtexExporter(this); bibtexExporter.setEncoding(QStringLiteral("latex")); result = bibtexExporter.save(&output, element, bibtexfile, errorLog); output.close(); } if (result) result = generateRTF(iodevice, errorLog); iodevice->close(); return result; } bool FileExporterRTF::generateRTF(QIODevice *iodevice, QStringList *errorLog) { QStringList cmdLines = QStringList() << QStringLiteral("latex -halt-on-error bibtex-to-rtf.tex") << QStringLiteral("bibtex bibtex-to-rtf") << QStringLiteral("latex -halt-on-error bibtex-to-rtf.tex") << QString(QStringLiteral("latex2rtf -i %1 bibtex-to-rtf.tex")).arg(m_babelLanguage); return writeLatexFile(m_fileStem + KBibTeX::extensionTeX) && runProcesses(cmdLines, errorLog) && writeFileToIODevice(m_fileStem + KBibTeX::extensionRTF, iodevice, errorLog); } bool FileExporterRTF::writeLatexFile(const QString &filename) { QFile latexFile(filename); if (latexFile.open(QIODevice::WriteOnly)) { QTextStream ts(&latexFile); ts.setCodec("UTF-8"); ts << "\\documentclass{article}" << endl; ts << "\\usepackage[T1]{fontenc}" << endl; ts << "\\usepackage[utf8]{inputenc}" << endl; if (kpsewhich(QStringLiteral("babel.sty"))) ts << "\\usepackage[" << m_babelLanguage << "]{babel}" << endl; if (kpsewhich(QStringLiteral("url.sty"))) ts << "\\usepackage{url}" << endl; if (m_bibliographyStyle.startsWith(QStringLiteral("apacite")) && kpsewhich(QStringLiteral("apacite.sty"))) ts << "\\usepackage[bibnewpage]{apacite}" << endl; if (m_bibliographyStyle == QStringLiteral("dcu") && kpsewhich(QStringLiteral("harvard.sty")) && kpsewhich(QStringLiteral("html.sty"))) ts << "\\usepackage{html}" << endl << "\\usepackage[dcucite]{harvard}" << endl << "\\renewcommand{\\harvardurl}{URL: \\url}" << endl; if (kpsewhich(QStringLiteral("geometry.sty"))) ts << "\\usepackage[paper=" << m_paperSize << (m_paperSize.length() <= 2 ? "paper" : "") << "]{geometry}" << endl; ts << "\\bibliographystyle{" << m_bibliographyStyle << "}" << endl; ts << "\\begin{document}" << endl; ts << "\\nocite{*}" << endl; ts << "\\bibliography{bibtex-to-rtf}" << endl; ts << "\\end{document}" << endl; latexFile.close(); return true; } return false; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterrtf.h��������������������������������������������������������������0000664�0000000�0000000�00000004111�13313000262�0017726�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERRTF_H #define BIBTEXFILEEXPORTERRTF_H #include "fileexportertoolchain.h" class QTextStream; /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterRTF : public FileExporterToolchain { Q_OBJECT public: explicit FileExporterRTF(QObject *parent); ~FileExporterRTF() override; void reloadConfig() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; private: QString m_fileBasename; QString m_fileStem; QString m_babelLanguage; QString m_bibliographyStyle; QString m_paperSize; bool generateRTF(QIODevice *iodevice, QStringList *errorLog); bool writeLatexFile(const QString &filename); }; #endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexportertoolchain.cpp������������������������������������������������������0000664�0000000�0000000�00000014772�13313000262�0021464�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexportertoolchain.h" #include <QCoreApplication> #include <QStringList> #include <QFile> #include <QDir> #include <QRegExp> #include <QHash> #include <QTextStream> #include <QProcess> #include <QProcessEnvironment> #include <KLocalizedString> const QString FileExporterToolchain::keyBabelLanguage = QStringLiteral("babelLanguage"); const QString FileExporterToolchain::defaultBabelLanguage = QStringLiteral("english"); const QString FileExporterToolchain::keyBibliographyStyle = QStringLiteral("bibliographyStyle"); const QString FileExporterToolchain::defaultBibliographyStyle = QStringLiteral("plain"); FileExporterToolchain::FileExporterToolchain(QObject *parent) : FileExporter(parent) { tempDir.setAutoRemove(true); } bool FileExporterToolchain::runProcesses(const QStringList &progs, QStringList *errorLog) { bool result = true; int i = 0; emit progress(0, progs.size()); for (QStringList::ConstIterator it = progs.constBegin(); result && it != progs.constEnd(); ++it) { QCoreApplication::instance()->processEvents(); QStringList args = (*it).split(' '); QString cmd = args.first(); args.erase(args.begin()); result &= runProcess(cmd, args, errorLog); emit progress(i++, progs.size()); } QCoreApplication::instance()->processEvents(); return result; } bool FileExporterToolchain::runProcess(const QString &cmd, const QStringList &args, QStringList *errorLog) { QProcess process(this); QProcessEnvironment processEnvironment = QProcessEnvironment::systemEnvironment(); /// Avoid some paranoid security settings in BibTeX processEnvironment.insert(QStringLiteral("openout_any"), QStringLiteral("r")); /// Make applications use working directory as temporary directory processEnvironment.insert(QStringLiteral("TMPDIR"), tempDir.path()); processEnvironment.insert(QStringLiteral("TEMPDIR"), tempDir.path()); process.setProcessEnvironment(processEnvironment); process.setWorkingDirectory(tempDir.path()); /// Assemble the full command line (program name + arguments) /// for use in log messages and debug output const QString fullCommandLine = cmd + QLatin1Char(' ') + args.join(QStringLiteral(" ")); if (errorLog != nullptr) errorLog->append(i18n("Running command '%1' using working directory '%2'", fullCommandLine, process.workingDirectory())); process.start(cmd, args); if (errorLog != nullptr) { /// Redirect any standard output from process into errorLog connect(&process, &QProcess::readyReadStandardOutput, [errorLog, &process] { QByteArray stdout = process.readAllStandardOutput(); QTextStream ts(&stdout); while (!ts.atEnd()) errorLog->append(ts.readLine()); }); /// Redirect any standard error from process into errorLog connect(&process, &QProcess::readyReadStandardError, [errorLog, &process] { QByteArray stderr = process.readAllStandardError(); QTextStream ts(&stderr); while (!ts.atEnd()) errorLog->append(ts.readLine()); }); } bool result = process.waitForStarted(3000); if (!result) { if (errorLog != nullptr) errorLog->append(i18n("Starting command '%1' failed: %2", fullCommandLine, process.errorString())); return false; } if (process.waitForFinished(30000)) result = process.exitStatus() == QProcess::NormalExit && process.exitCode() == 0; if (errorLog != nullptr) { if (result) errorLog->append(i18n("Command '%1' succeeded", fullCommandLine)); else errorLog->append(i18n("Command '%1' failed with exit code %2: %3", fullCommandLine, process.exitCode(), process.errorString())); } return result; } bool FileExporterToolchain::writeFileToIODevice(const QString &filename, QIODevice *device, QStringList *errorLog) { QFile file(filename); if (file.open(QIODevice::ReadOnly)) { bool result = true; static const qint64 buffersize = 0x10000; qint64 amount = 0; char buffer[buffersize]; do { result = ((amount = file.read(buffer, buffersize)) > -1) && (device->write(buffer, amount) > -1); } while (result && amount > 0); file.close(); if (errorLog != nullptr) errorLog->append(i18n("Writing to file '%1' succeeded", filename)); return result; } if (errorLog != nullptr) errorLog->append(i18n("Writing to file '%1' failed", filename)); return false; } bool FileExporterToolchain::kpsewhich(const QString &filename) { static QHash<QString, bool> kpsewhichMap; if (kpsewhichMap.contains(filename)) return kpsewhichMap.value(filename, false); bool result = false; QProcess kpsewhich; const QStringList param = QStringList() << filename; kpsewhich.start(QStringLiteral("kpsewhich"), param); if (kpsewhich.waitForStarted(3000) && kpsewhich.waitForFinished(30000)) { const QString standardOut = QString::fromUtf8(kpsewhich.readAllStandardOutput()); result = kpsewhich.exitStatus() == QProcess::NormalExit && kpsewhich.exitCode() == 0 && standardOut.endsWith(QDir::separator() + filename + QChar('\n')); kpsewhichMap.insert(filename, result); } return result; } ������kbibtex-0.8.1/src/io/fileexportertoolchain.h��������������������������������������������������������0000664�0000000�0000000�00000004177�13313000262�0021127�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERTOOLCHAIN_H #define BIBTEXFILEEXPORTERTOOLCHAIN_H #include <QTemporaryDir> #include "fileexporter.h" class QString; /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileExporterToolchain : public FileExporter { Q_OBJECT public: static const QString keyBabelLanguage; static const QString defaultBabelLanguage; static const QString keyBibliographyStyle; static const QString defaultBibliographyStyle; explicit FileExporterToolchain(QObject *parent); virtual void reloadConfig() = 0; static bool kpsewhich(const QString &filename); protected: QTemporaryDir tempDir; bool runProcesses(const QStringList &progs, QStringList *errorLog = nullptr); bool runProcess(const QString &cmd, const QStringList &args, QStringList *errorLog = nullptr); bool writeFileToIODevice(const QString &filename, QIODevice *device, QStringList *errorLog = nullptr); }; #endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterxml.cpp������������������������������������������������������������0000664�0000000�0000000�00000023211�13313000262�0020270�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterxml.h" #include <QRegExp> #include <QStringList> #include "kbibtex.h" #include "file.h" #include "entry.h" #include "macro.h" #include "comment.h" #include "encoderxml.h" #include "logging_io.h" FileExporterXML::FileExporterXML(QObject *parent) : FileExporter(parent), m_cancelFlag(false) { /// nothing } FileExporterXML::~FileExporterXML() { /// nothing } bool FileExporterXML::save(QIODevice *iodevice, const File *bibtexfile, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } bool result = true; m_cancelFlag = false; QTextStream stream(iodevice); stream.setCodec("UTF-8"); stream << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << endl; stream << "<!-- XML document written by KBibTeXIO as part of KBibTeX -->" << endl; stream << "<!-- https://userbase.kde.org/KBibTeX -->" << endl; stream << "<bibliography>" << endl; for (File::ConstIterator it = bibtexfile->constBegin(); it != bibtexfile->constEnd() && result && !m_cancelFlag; ++it) write(stream, (*it).data(), bibtexfile); stream << "</bibliography>" << endl; iodevice->close(); return result && !m_cancelFlag; } bool FileExporterXML::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File * /*bibtexfile*/, QStringList * /*errorLog*/) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } QTextStream stream(iodevice); stream.setCodec("UTF-8"); stream << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << endl; stream << "<!-- XML document written by KBibTeXIO as part of KBibTeX -->" << endl; stream << "<!-- https://userbase.kde.org/KBibTeX -->" << endl; const bool result = write(stream, element.data()); iodevice->close(); return result; } void FileExporterXML::cancel() { m_cancelFlag = true; } bool FileExporterXML::write(QTextStream &stream, const Element *element, const File *bibtexfile) { bool result = false; const Entry *entry = dynamic_cast<const Entry *>(element); if (entry != nullptr) { if (bibtexfile != nullptr) entry = entry->resolveCrossref(bibtexfile); result |= writeEntry(stream, entry); if (bibtexfile != nullptr) delete entry; /// delete artificially created Entry from resolveCrossref(..) } else { const Macro *macro = dynamic_cast<const Macro *>(element); if (macro != nullptr) result |= writeMacro(stream, macro); else { const Comment *comment = dynamic_cast<const Comment *>(element); if (comment != nullptr) result |= writeComment(stream, comment); else { // preambles are ignored, make no sense in XML files } } } return result; } bool FileExporterXML::writeEntry(QTextStream &stream, const Entry *entry) { stream << " <entry id=\"" << EncoderXML::instance().encode(entry->id(), Encoder::TargetEncodingUTF8) << "\" type=\"" << entry->type().toLower() << "\">" << endl; for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) { const QString key = it.key().toLower(); const Value value = it.value(); if (key == Entry::ftAuthor || key == Entry::ftEditor) { Value internal = value; Value::ConstIterator lastIt = internal.constEnd(); --lastIt; const QSharedPointer<ValueItem> last = *lastIt; stream << " <" << key << "s"; if (!value.isEmpty() && PlainText::isPlainText(*last)) { QSharedPointer<const PlainText> pt = internal.last().staticCast<const PlainText>(); if (pt->text() == QStringLiteral("others")) { internal.erase(internal.end() - 1); stream << " etal=\"true\""; } } stream << ">" << endl; stream << valueToXML(internal, key) << endl; stream << " </" << key << "s>" << endl; } else if (key == Entry::ftAbstract) { static const QRegExp abstractRegExp(QStringLiteral("\\bAbstract[:]?([ ]|&nbsp;|&amp;nbsp;)*"), Qt::CaseInsensitive); /// clean up HTML artifacts QString text = valueToXML(value); text = text.remove(abstractRegExp); stream << " <" << key << ">" << text << "</" << key << ">" << endl; } else if (key == Entry::ftMonth) { stream << " <month"; bool ok = false; int month = -1; QString tag; QString content; for (const auto &valueItem : value) { QSharedPointer<const MacroKey> macro = valueItem.dynamicCast<const MacroKey>(); if (!macro.isNull()) for (int i = 0; i < 12; i++) { if (QString::compare(macro->text(), KBibTeX::MonthsTriple[ i ]) == 0) { if (month < 1) { tag = KBibTeX::MonthsTriple[ i ]; month = i + 1; } content.append(KBibTeX::Months[ i ]); ok = true; break; } } else content.append(PlainTextValue::text(valueItem)); } if (!ok) content = valueToXML(value) ; if (!tag.isEmpty()) stream << " tag=\"" << key << "\""; if (month > 0) stream << " month=\"" << month << "\""; stream << '>' << content; stream << "</month>" << endl; } else { stream << " <" << key << ">" << valueToXML(value) << "</" << key << ">" << endl; } } stream << " </entry>" << endl; return true; } bool FileExporterXML::writeMacro(QTextStream &stream, const Macro *macro) { stream << " <string key=\"" << macro->key() << "\">"; stream << valueToXML(macro->value()); stream << "</string>" << endl; return true; } bool FileExporterXML::writeComment(QTextStream &stream, const Comment *comment) { stream << " <comment>" ; stream << EncoderXML::instance().encode(comment->text(), Encoder::TargetEncodingUTF8); stream << "</comment>" << endl; return true; } QString FileExporterXML::valueToXML(const Value &value, const QString &) { QString result; bool isFirst = true; for (const auto &valueItem : value) { if (!isFirst) result.append(' '); isFirst = false; QSharedPointer<const PlainText> plainText = valueItem.dynamicCast<const PlainText>(); if (!plainText.isNull()) result.append("<text>" + cleanXML(EncoderXML::instance().encode(PlainTextValue::text(valueItem), Encoder::TargetEncodingUTF8)) + "</text>"); else { QSharedPointer<const Person> p = valueItem.dynamicCast<const Person>(); if (!p.isNull()) { result.append("<person>"); if (!p->firstName().isEmpty()) result.append("<firstname>" + cleanXML(EncoderXML::instance().encode(p->firstName(), Encoder::TargetEncodingUTF8)) + "</firstname>"); if (!p->lastName().isEmpty()) result.append("<lastname>" + cleanXML(EncoderXML::instance().encode(p->lastName(), Encoder::TargetEncodingUTF8)) + "</lastname>"); if (!p->suffix().isEmpty()) result.append("<suffix>" + cleanXML(EncoderXML::instance().encode(p->suffix(), Encoder::TargetEncodingUTF8)) + "</suffix>"); result.append("</person>"); } // TODO: Other data types else result.append("<text>" + cleanXML(EncoderXML::instance().encode(PlainTextValue::text(valueItem), Encoder::TargetEncodingUTF8)) + "</text>"); } } return result; } QString FileExporterXML::cleanXML(const QString &text) { static const QRegExp removal(QStringLiteral("[{}]+")); static const QRegExp lineBreaksRegExp(QStringLiteral("[ \\t]*[\\n\\r]")); QString result = text; result = result.replace(lineBreaksRegExp, QStringLiteral("<br/>")).remove(removal).remove(QStringLiteral("\\ensuremath")); return result; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterxml.h��������������������������������������������������������������0000664�0000000�0000000�00000004570�13313000262�0017744�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERXML_H #define BIBTEXFILEEXPORTERXML_H #include <QTextStream> #include "element.h" #include "value.h" #include "fileexporter.h" class Entry; class Macro; class Comment; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporterXML : public FileExporter { Q_OBJECT public: explicit FileExporterXML(QObject *parent); ~FileExporterXML() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; static QString valueToXML(const Value &value, const QString &fieldType = QString()); public slots: void cancel() override; private: bool m_cancelFlag; bool write(QTextStream &stream, const Element *element, const File *bibtexfile = nullptr); bool writeEntry(QTextStream &stream, const Entry *entry); bool writeMacro(QTextStream &stream, const Macro *macro); bool writeComment(QTextStream &stream, const Comment *comment); static QString cleanXML(const QString &text); }; #endif ����������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterxslt.cpp�����������������������������������������������������������0000664�0000000�0000000�00000010620�13313000262�0020462�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileexporterxslt.h" #include <QRegExp> #include <QStringList> #include <QBuffer> #include <QFile> #include <QStandardPaths> #include "file.h" #include "element.h" #include "entry.h" #include "macro.h" #include "comment.h" #include "encoderxml.h" #include "fileexporterxml.h" #include "xsltransform.h" #include "logging_io.h" FileExporterXSLT::FileExporterXSLT(const QString &xsltFilename, QObject *parent) : FileExporter(parent), m_cancelFlag(false), m_xsltFilename(xsltFilename) { if (xsltFilename.isEmpty() || !QFile(xsltFilename).exists()) qCWarning(LOG_KBIBTEX_IO) << "Invalid XSLT filename: " << xsltFilename; } FileExporterXSLT::~FileExporterXSLT() { // nothing } bool FileExporterXSLT::save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } else if (m_xsltFilename.isEmpty() || !QFile(m_xsltFilename).exists()) { qCWarning(LOG_KBIBTEX_IO) << "Invalid XSLT filename: " << m_xsltFilename; return false; } m_cancelFlag = false; XSLTransform xsltransformer(m_xsltFilename); FileExporterXML xmlExporter(this); QBuffer buffer; buffer.open(QIODevice::WriteOnly); if (xmlExporter.save(&buffer, bibtexfile, errorLog)) { buffer.close(); buffer.open(QIODevice::ReadOnly); const QString xml = QString::fromUtf8(buffer.readAll().constData()); buffer.close(); const QString html = xsltransformer.transform(xml); if (!html.isEmpty()) { iodevice->write(html.toUtf8()); iodevice->close(); return !m_cancelFlag; } } iodevice->close(); return false; } bool FileExporterXSLT::save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog) { if (!iodevice->isWritable() && !iodevice->open(QIODevice::WriteOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Output device not writable"; return false; } else if (m_xsltFilename.isEmpty() || !QFile(m_xsltFilename).exists()) { qCWarning(LOG_KBIBTEX_IO) << "Invalid XSLT filename: " << m_xsltFilename; return false; } m_cancelFlag = false; XSLTransform xsltransformer(m_xsltFilename); FileExporterXML xmlExporter(this); QBuffer buffer; buffer.open(QIODevice::WriteOnly); if (xmlExporter.save(&buffer, element, bibtexfile, errorLog)) { buffer.close(); buffer.open(QIODevice::ReadOnly); const QString xml = QString::fromUtf8(buffer.readAll().constData()); buffer.close(); const QString html = xsltransformer.transform(xml); if (!html.isEmpty()) { iodevice->write(html.toUtf8()); iodevice->close(); return !m_cancelFlag; } } iodevice->close(); return false; } void FileExporterXSLT::cancel() { m_cancelFlag = true; } FileExporterHTML::FileExporterHTML(QObject *parent) : FileExporterXSLT(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kbibtex/standard.xsl")), parent) { /// nothing } ����������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileexporterxslt.h�������������������������������������������������������������0000664�0000000�0000000�00000004325�13313000262�0020134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef BIBTEXFILEEXPORTERXSLT_H #define BIBTEXFILEEXPORTERXSLT_H #include <QTextStream> #include "element.h" #include "value.h" #include "fileexporter.h" class Entry; class Macro; class Comment; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporterXSLT : public FileExporter { Q_OBJECT public: explicit FileExporterXSLT(const QString &xsltFilename, QObject *parent); ~FileExporterXSLT() override; bool save(QIODevice *iodevice, const File *bibtexfile, QStringList *errorLog = nullptr) override; bool save(QIODevice *iodevice, const QSharedPointer<const Element> element, const File *bibtexfile, QStringList *errorLog = nullptr) override; public slots: void cancel() override; private: bool m_cancelFlag; QString m_xsltFilename; }; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileExporterHTML : public FileExporterXSLT { Q_OBJECT public: explicit FileExporterHTML(QObject *parent); }; #endif �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporter.cpp���������������������������������������������������������������0000664�0000000�0000000�00000011626�13313000262�0017547�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileimporter.h" #include <QBuffer> #include <QTextStream> #include <QStringList> #include <QRegExp> #include "value.h" #include "logging_io.h" FileImporter::FileImporter(QObject *parent) : QObject(parent) { // nothing } FileImporter::~FileImporter() { // nothing } File *FileImporter::fromString(const QString &text) { if (text.isEmpty()) { qCWarning(LOG_KBIBTEX_IO) << "Cannot create File object from empty string"; return nullptr; } QBuffer buffer; buffer.open(QIODevice::WriteOnly); QTextStream stream(&buffer); stream.setCodec("UTF-8"); stream << text; buffer.close(); buffer.open(QIODevice::ReadOnly); File *result = load(&buffer); if (result == nullptr) qCWarning(LOG_KBIBTEX_IO) << "Creating File object from" << buffer.size() << "Bytes of data failed"; buffer.close(); return result; } Person *FileImporter::splitName(const QString &name) { // FIXME: This is a rather ugly code QStringList segments = name.split(QRegExp("[ ,]+")); bool containsComma = name.contains(','); QString firstName; QString lastName; if (segments.isEmpty()) return nullptr; if (!containsComma) { /** PubMed uses a special writing style for names, where the last name is followed by single capital letter, * each being the first letter of each first name * So, check how many single capital letters are at the end of the given segment list */ int singleCapitalLettersCounter = 0; int p = segments.count() - 1; while (segments[p].length() == 1 && segments[p].compare(segments[p].toUpper()) == 0) { --p; ++singleCapitalLettersCounter; } if (singleCapitalLettersCounter > 0) { /** this is a special case for names from PubMed, which are formatted like "Fischer T" * all segment values until the first single letter segment are last name parts */ for (int i = 0; i < p; ++i) lastName.append(segments[i]).append(" "); lastName.append(segments[p]); /** single letter segments are first name parts */ for (int i = p + 1; i < segments.count() - 1; ++i) firstName.append(segments[i]).append(" "); firstName.append(segments[segments.count() - 1]); } else { int from = segments.count() - 1; lastName = segments[from]; /** check for lower case parts of the last name such as "van", "von", "de", ... */ while (from > 0) { if (segments[from - 1].compare(segments[from - 1].toLower()) != 0) break; --from; lastName.prepend(" "); lastName.prepend(segments[from]); } if (from > 0) { /** there are segments left for the first name */ firstName = *segments.begin(); for (QStringList::Iterator it = ++segments.begin(); from > 1; ++it, --from) { firstName.append(" "); firstName.append(*it); } } } } else { bool inLastName = true; for (int i = 0; i < segments.count(); ++i) { if (segments[i] == QStringLiteral(",")) inLastName = false; else if (inLastName) { if (!lastName.isEmpty()) lastName.append(" "); lastName.append(segments[i]); } else { if (!firstName.isEmpty()) firstName.append(" "); firstName.append(segments[i]); } } } return new Person(firstName, lastName); } // #include "fileimporter.moc" ����������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporter.h�����������������������������������������������������������������0000664�0000000�0000000�00000006267�13313000262�0017221�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEIMPORTER_H #define KBIBTEX_IO_FILEIMPORTER_H #include "kbibtexio_export.h" #include <QObject> class QIODevice; class File; class Person; /** @author Thomas Fischer */ class KBIBTEXIO_EXPORT FileImporter : public QObject { Q_OBJECT public: explicit FileImporter(QObject *parent); ~FileImporter() override; File *fromString(const QString &text); virtual File *load(QIODevice *iodevice) = 0; /** * When importing data, show a dialog where the user may select options on the * import process such as selecting encoding. Re-implementing this function is * optional and should only be done if user interaction is necessary at import * actions. * Return true if the configuration step was successful and the application * may proceed. If returned false, the import process has to be stopped. * The importer may store configurations done here for future use (e.g. set default * values based on user input). * A calling application should call this function before calling load() or similar * functions. * The implementer may choose to show or not show a dialog, depending on e.g. if * additional information is necessary or not. */ virtual bool showImportDialog(QWidget *parent) { Q_UNUSED(parent); return true; } static bool guessCanDecode(const QString &) { return false; } /** * Split a person's name into its parts and construct a Person object from them. * This is a rather general functions and takes e.g. the curly brackets used in * (La)TeX not into account. * @param name The persons name * @return A Person object containing the name * @see Person */ static Person *splitName(const QString &name); signals: void parseError(int errorId); void progress(int current, int total); public slots: virtual void cancel() { // nothing } }; #endif // KBIBTEX_IO_FILEIMPORTER_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterbibtex.cpp���������������������������������������������������������0000664�0000000�0000000�00000140027�13313000262�0020743�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileimporterbibtex.h" #include <QTextCodec> #include <QIODevice> #include <QRegExp> #include <QCoreApplication> #include <QStringList> #include "preferences.h" #include "file.h" #include "comment.h" #include "macro.h" #include "preamble.h" #include "entry.h" #include "element.h" #include "value.h" #include "encoderlatex.h" #include "bibtexentries.h" #include "bibtexfields.h" #include "fileexporterbibtex.h" #include "logging_io.h" const char *FileImporterBibTeX::defaultCodecName = "utf-8"; FileImporterBibTeX::FileImporterBibTeX(QObject *parent) : FileImporter(parent), m_cancelFlag(false), m_textStream(nullptr), m_commentHandling(IgnoreComments), m_keywordCasing(KBibTeX::cLowerCase), m_lineNo(1) { m_keysForPersonDetection.append(Entry::ftAuthor); m_keysForPersonDetection.append(Entry::ftEditor); m_keysForPersonDetection.append(QStringLiteral("bookauthor")); /// used by JSTOR } File *FileImporterBibTeX::load(QIODevice *iodevice) { m_cancelFlag = false; if (!iodevice->isReadable() && !iodevice->open(QIODevice::ReadOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Input device not readable"; return nullptr; } File *result = new File(); /// Used to determine if file prefers quotation marks over /// curly brackets or the other way around m_statistics.countCurlyBrackets = 0; m_statistics.countQuotationMarks = 0; m_statistics.countFirstNameFirst = 0; m_statistics.countLastNameFirst = 0; m_statistics.countNoCommentQuote = 0; m_statistics.countCommentPercent = 0; m_statistics.countCommentCommand = 0; m_statistics.countProtectedTitle = 0; m_statistics.countUnprotectedTitle = 0; m_statistics.mostRecentListSeparator.clear(); m_textStream = new QTextStream(iodevice); m_textStream->setCodec(defaultCodecName); ///< unless we learn something else, assume default codec result->setProperty(File::Encoding, QStringLiteral("latex")); QString rawText; while (!m_textStream->atEnd()) { QString line = m_textStream->readLine(); bool skipline = evaluateParameterComments(m_textStream, line.toLower(), result); // FIXME XML data should be removed somewhere else? onlinesearch ... if (line.startsWith(QStringLiteral("<?xml")) && line.endsWith(QStringLiteral("?>"))) /// Hop over XML declarations skipline = true; if (!skipline) rawText.append(line).append("\n"); } delete m_textStream; /** Remove HTML code from the input source */ // FIXME HTML data should be removed somewhere else? onlinesearch ... const int originalLength = rawText.length(); rawText = rawText.remove(KBibTeX::htmlRegExp); const int afterHTMLremovalLength = rawText.length(); if (originalLength != afterHTMLremovalLength) qCWarning(LOG_KBIBTEX_IO) << (originalLength - afterHTMLremovalLength) << "characters of HTML tags have been removed"; // TODO really necessary to pipe data through several QTextStreams? m_textStream = new QTextStream(&rawText, QIODevice::ReadOnly); m_textStream->setCodec(defaultCodecName); m_lineNo = 1; m_prevLine = m_currentLine = QString(); m_knownElementIds.clear(); readChar(); while (!m_nextChar.isNull() && !m_cancelFlag && !m_textStream->atEnd()) { emit progress(m_textStream->pos(), rawText.length()); Element *element = nextElement(); if (element != nullptr) { if (m_commentHandling == KeepComments || !Comment::isComment(*element)) result->append(QSharedPointer<Element>(element)); else delete element; } } emit progress(100, 100); if (m_cancelFlag) { qCWarning(LOG_KBIBTEX_IO) << "Loading file has been canceled"; delete result; result = nullptr; } delete m_textStream; if (result != nullptr) { /// Set the file's preferences for string delimiters /// deduced from statistics built while parsing the file result->setProperty(File::StringDelimiter, m_statistics.countQuotationMarks > m_statistics.countCurlyBrackets ? QStringLiteral("\"\"") : QStringLiteral("{}")); /// Set the file's preferences for name formatting result->setProperty(File::NameFormatting, m_statistics.countFirstNameFirst > m_statistics.countLastNameFirst ? Preferences::personNameFormatFirstLast : Preferences::personNameFormatLastFirst); /// Set the file's preferences for title protected Qt::CheckState triState = (m_statistics.countProtectedTitle > m_statistics.countUnprotectedTitle * 4) ? Qt::Checked : ((m_statistics.countProtectedTitle * 4 < m_statistics.countUnprotectedTitle) ? Qt::Unchecked : Qt::PartiallyChecked); result->setProperty(File::ProtectCasing, (int)triState); /// Set the file's preferences for quoting of comments if (m_statistics.countNoCommentQuote > m_statistics.countCommentCommand && m_statistics.countNoCommentQuote > m_statistics.countCommentPercent) result->setProperty(File::QuoteComment, (int)Preferences::qcNone); else if (m_statistics.countCommentCommand > m_statistics.countNoCommentQuote && m_statistics.countCommentCommand > m_statistics.countCommentPercent) result->setProperty(File::QuoteComment, (int)Preferences::qcCommand); else result->setProperty(File::QuoteComment, (int)Preferences::qcPercentSign); if (!m_statistics.mostRecentListSeparator.isEmpty()) result->setProperty(File::ListSeparator, m_statistics.mostRecentListSeparator); // TODO gather more statistics for keyword casing etc. } iodevice->close(); return result; } bool FileImporterBibTeX::guessCanDecode(const QString &rawText) { static const QRegExp bibtexLikeText("@\\w+\\{.+\\}"); QString text = EncoderLaTeX::instance().decode(rawText); return text.indexOf(bibtexLikeText) >= 0; } void FileImporterBibTeX::cancel() { m_cancelFlag = true; } Element *FileImporterBibTeX::nextElement() { Token token = nextToken(); if (token == tAt) { QString elementType = readSimpleString(); if (elementType.toLower() == QStringLiteral("comment")) { ++m_statistics.countCommentCommand; return readCommentElement(); } else if (elementType.toLower() == QStringLiteral("string")) return readMacroElement(); else if (elementType.toLower() == QStringLiteral("preamble")) return readPreambleElement(); else if (elementType.toLower() == QStringLiteral("import")) { qCDebug(LOG_KBIBTEX_IO) << "Skipping potential HTML/JavaScript @import statement"; return nullptr; } else if (!elementType.isEmpty()) return readEntryElement(elementType); else { qCWarning(LOG_KBIBTEX_IO) << "ElementType is empty"; return nullptr; } } else if (token == tUnknown && m_nextChar == QLatin1Char('%')) { /// do not complain about LaTeX-like comments, just eat them ++m_statistics.countCommentPercent; return readPlainCommentElement(); } else if (token == tUnknown) { qCDebug(LOG_KBIBTEX_IO) << "Unknown token '" << m_nextChar << "(" << QString(QStringLiteral("0x%1")).arg(m_nextChar.unicode(), 4, 16, QLatin1Char('0')) << ")" << "' near line " << m_lineNo << "(" << m_prevLine << endl << m_currentLine << ")" << ", treating as comment"; ++m_statistics.countNoCommentQuote; return readPlainCommentElement(QString(m_prevChar) + m_nextChar); } if (token != tEOF) qCWarning(LOG_KBIBTEX_IO) << "Don't know how to parse next token of type " << tokenidToString(token) << " in line " << m_lineNo << "(" << m_prevLine << endl << m_currentLine << ")" << endl; return nullptr; } Comment *FileImporterBibTeX::readCommentElement() { if (!readCharUntil(QStringLiteral("{("))) return nullptr; return new Comment(EncoderLaTeX::instance().decode(readBracketString())); } Comment *FileImporterBibTeX::readPlainCommentElement(const QString &prefix) { QString result = EncoderLaTeX::instance().decode(prefix + readLine()); while (m_nextChar == QLatin1Char('\n') || m_nextChar == QLatin1Char('\r')) readChar(); while (!m_nextChar.isNull() && m_nextChar != QLatin1Char('@')) { const QChar nextChar = m_nextChar; const QString line = readLine(); while (m_nextChar == QLatin1Char('\n') || m_nextChar == QLatin1Char('\r')) readChar(); result.append(EncoderLaTeX::instance().decode((nextChar == QLatin1Char('%') ? QString() : QString(nextChar)) + line)); } if (result.startsWith(QStringLiteral("x-kbibtex"))) { qCWarning(LOG_KBIBTEX_IO) << "Plain comment element starts with \"x-kbibtex\", this should not happen"; /// ignore special comments return nullptr; } return new Comment(result); } Macro *FileImporterBibTeX::readMacroElement() { Token token = nextToken(); while (token != tBracketOpen) { if (token == tEOF) { qCWarning(LOG_KBIBTEX_IO) << "Error in parsing unknown macro' (near line " << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Opening curly brace ({) expected"; return nullptr; } token = nextToken(); } QString key = readSimpleString(); if (key.isEmpty()) { /// Cope with empty keys, /// duplicates are handled further below key = QStringLiteral("EmptyId"); } else if (!EncoderLaTeX::containsOnlyAscii(key)) { /// Try to avoid non-ascii characters in ids const QString newKey = EncoderLaTeX::instance().convertToPlainAscii(key); qCWarning(LOG_KBIBTEX_IO) << "Macro key" << key << "contains non-ASCII characters, converted to" << newKey; key = newKey; } /// Check for duplicate entry ids, avoid collisions if (m_knownElementIds.contains(key)) { static const QString newIdPattern = QStringLiteral("%1-%2"); int idx = 2; QString newKey = newIdPattern.arg(key).arg(idx); while (m_knownElementIds.contains(newKey)) newKey = newIdPattern.arg(key).arg(++idx); qCDebug(LOG_KBIBTEX_IO) << "Duplicate macro key" << key << ", using replacement key" << newKey; key = newKey; } m_knownElementIds.insert(key); if (nextToken() != tAssign) { qCCritical(LOG_KBIBTEX_IO) << "Error in parsing macro '" << key << "'' (near line " << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Assign symbol (=) expected"; return nullptr; } Macro *macro = new Macro(key); do { bool isStringKey = false; QString text = EncoderLaTeX::instance().decode(bibtexAwareSimplify(readString(isStringKey))); if (isStringKey) macro->value().append(QSharedPointer<MacroKey>(new MacroKey(text))); else macro->value().append(QSharedPointer<PlainText>(new PlainText(text))); token = nextToken(); } while (token == tDoublecross); return macro; } Preamble *FileImporterBibTeX::readPreambleElement() { Token token = nextToken(); while (token != tBracketOpen) { if (token == tEOF) { qCWarning(LOG_KBIBTEX_IO) << "Error in parsing unknown preamble' (near line " << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Opening curly brace ({) expected"; return nullptr; } token = nextToken(); } Preamble *preamble = new Preamble(); do { bool isStringKey = false; /// Remember: strings from preamble do not get encoded, /// may contain raw LaTeX commands and code QString text = bibtexAwareSimplify(readString(isStringKey)); if (isStringKey) preamble->value().append(QSharedPointer<MacroKey>(new MacroKey(text))); else preamble->value().append(QSharedPointer<PlainText>(new PlainText(text))); token = nextToken(); } while (token == tDoublecross); return preamble; } Entry *FileImporterBibTeX::readEntryElement(const QString &typeString) { const BibTeXEntries *be = BibTeXEntries::self(); const BibTeXFields *bf = BibTeXFields::self(); Token token = nextToken(); while (token != tBracketOpen) { if (token == tEOF) { qCWarning(LOG_KBIBTEX_IO) << "Error in parsing unknown entry (near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Opening curly brace '{' expected"; return nullptr; } token = nextToken(); } QString id = readSimpleString(',').trimmed(); if (id.isEmpty()) { /// Cope with empty ids, /// duplicates are handled further below id = QStringLiteral("EmptyId"); } else if (!EncoderLaTeX::containsOnlyAscii(id)) { /// Try to avoid non-ascii characters in ids const QString newId = EncoderLaTeX::instance().convertToPlainAscii(id); qCWarning(LOG_KBIBTEX_IO) << "Entry id" << id << "contains non-ASCII characters, converted to" << newId; id = newId; } /// Check for duplicate entry ids, avoid collisions if (m_knownElementIds.contains(id)) { static const QString newIdPattern = QStringLiteral("%1-%2"); int idx = 2; QString newId = newIdPattern.arg(id).arg(idx); while (m_knownElementIds.contains(newId)) newId = newIdPattern.arg(id).arg(++idx); qCDebug(LOG_KBIBTEX_IO) << "Duplicate id" << id << ", using replacement id" << newId; id = newId; } m_knownElementIds.insert(id); Entry *entry = new Entry(be->format(typeString, m_keywordCasing), id); token = nextToken(); do { if (token == tBracketClose || token == tEOF) break; else if (token != tComma) { if (m_nextChar.isLetter()) qCWarning(LOG_KBIBTEX_IO) << "Error in parsing entry" << id << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Comma symbol (,) expected but got character" << m_nextChar << "(token" << tokenidToString(token) << ")"; else if (m_nextChar.isPrint()) qCWarning(LOG_KBIBTEX_IO) << "Error in parsing entry" << id << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Comma symbol (,) expected but got character" << m_nextChar << "(" << QString(QStringLiteral("0x%1")).arg(m_nextChar.unicode(), 4, 16, QLatin1Char('0')) << ", token" << tokenidToString(token) << ")"; else qCWarning(LOG_KBIBTEX_IO) << "Error in parsing entry" << id << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Comma symbol (,) expected but got character" << QString(QStringLiteral("0x%1")).arg(m_nextChar.unicode(), 4, 16, QLatin1Char('0')) << "(token" << tokenidToString(token) << ")"; delete entry; return nullptr; } QString keyName = bf->format(readSimpleString(), m_keywordCasing); if (keyName.isEmpty()) { token = nextToken(); if (token == tBracketClose) { /// Most often it is the case that the previous line ended with a comma, /// implying that this entry continues, but instead it gets closed by /// a closing curly bracket. qCDebug(LOG_KBIBTEX_IO) << "Issue while parsing entry" << id << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Last key-value pair ended with a non-conformant comma, ignoring that"; break; } else { /// Something looks terribly wrong qCWarning(LOG_KBIBTEX_IO) << "Error in parsing entry" << id << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Closing curly bracket expected, but found" << tokenidToString(token); delete entry; return nullptr; } } /// Try to avoid non-ascii characters in keys keyName = EncoderLaTeX::instance().convertToPlainAscii(keyName); token = nextToken(); if (token != tAssign) { qCWarning(LOG_KBIBTEX_IO) << "Error in parsing entry" << id << ", key" << keyName << " (near line " << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "): Assign symbol (=) expected after field name" << keyName; delete entry; return nullptr; } Value value; /// check for duplicate fields if (entry->contains(keyName)) { if (keyName.toLower() == Entry::ftKeywords || keyName.toLower() == Entry::ftUrl) { /// Special handling of keywords and URLs: instead of using fallback names /// like "keywords2", "keywords3", ..., append new keywords to /// already existing keyword value value = entry->value(keyName); } else if (m_keysForPersonDetection.contains(keyName.toLower())) { /// Special handling of authors and editors: instead of using fallback names /// like "author2", "author3", ..., append new authors to /// already existing author value value = entry->value(keyName); } else { int i = 2; QString appendix = QString::number(i); while (entry->contains(keyName + appendix)) { ++i; appendix = QString::number(i); } qCDebug(LOG_KBIBTEX_IO) << "Entry" << id << " already contains a key" << keyName << "(near line" << m_lineNo << ":" << m_prevLine << endl << m_currentLine << "), using" << (keyName + appendix); keyName += appendix; } } token = readValue(value, keyName); entry->insert(keyName, value); } while (true); return entry; } FileImporterBibTeX::Token FileImporterBibTeX::nextToken() { if (!skipWhiteChar()) { /// Some error occurred while reading from data stream return tEOF; } Token result = tUnknown; switch (m_nextChar.toLatin1()) { case '@': result = tAt; break; case '{': case '(': result = tBracketOpen; break; case '}': case ')': result = tBracketClose; break; case ',': result = tComma; break; case '=': result = tAssign; break; case '#': result = tDoublecross; break; default: if (m_textStream->atEnd()) result = tEOF; } if (m_nextChar != QLatin1Char('%')) { /// Unclean solution, but necessary for comments /// that have a percent sign as a prefix readChar(); } return result; } QString FileImporterBibTeX::readString(bool &isStringKey) { /// Most often it is not a string key isStringKey = false; if (!skipWhiteChar()) { /// Some error occurred while reading from data stream return QString(); } switch (m_nextChar.toLatin1()) { case '{': case '(': { ++m_statistics.countCurlyBrackets; const QString result = readBracketString(); return result; } case '"': { ++m_statistics.countQuotationMarks; const QString result = readQuotedString(); return result; } default: isStringKey = true; const QString result = readSimpleString(); return result; } } QString FileImporterBibTeX::readSimpleString(const char until) { static const QString extraAlphaNumChars = QString(QStringLiteral("?'`-_:.+/$\\\"&")); QString result; if (!skipWhiteChar()) { /// Some error occurred while reading from data stream return QString(); } while (!m_nextChar.isNull()) { if (until != '\0') { /// Variable "until" has user-defined value if (m_nextChar == QLatin1Char('\n') || m_nextChar == QLatin1Char('\r') || m_nextChar.toLatin1() == until) { /// Force break on line-breaks or if the "until" char has been read break; } else { /// Append read character to final result result.append(m_nextChar); } } else if (m_nextChar.isLetterOrNumber() || extraAlphaNumChars.contains(m_nextChar)) { /// Accept default set of alpha-numeric characters result.append(m_nextChar); } else break; if (!readChar()) break; } return result; } QString FileImporterBibTeX::readQuotedString() { QString result; Q_ASSERT_X(m_nextChar == QLatin1Char('"'), "QString FileImporterBibTeX::readQuotedString()", "m_nextChar is not '\"'"); if (!readChar()) return QString(); while (!m_nextChar.isNull()) { if (m_nextChar == QLatin1Char('"') && m_prevChar != QLatin1Char('\\') && m_prevChar != QLatin1Char('{')) break; else result.append(m_nextChar); if (!readChar()) return QString(); } if (!readChar()) return QString(); /// Remove protection around quotation marks result.replace(QStringLiteral("{\"}"), QStringLiteral("\"")); return result; } QString FileImporterBibTeX::readBracketString() { static const QChar backslash = QLatin1Char('\\'); QString result; const QChar openingBracket = m_nextChar; const QChar closingBracket = openingBracket == QLatin1Char('{') ? QLatin1Char('}') : (openingBracket == QLatin1Char('(') ? QLatin1Char(')') : QChar()); Q_ASSERT_X(!closingBracket.isNull(), "QString FileImporterBibTeX::readBracketString()", "openingBracket==m_nextChar is neither '{' nor '('"); int counter = 1; if (!readChar()) return QString(); while (!m_nextChar.isNull()) { if (m_nextChar == openingBracket && m_prevChar != backslash) ++counter; else if (m_nextChar == closingBracket && m_prevChar != backslash) --counter; if (counter == 0) { break; } else result.append(m_nextChar); if (!readChar()) return QString(); } if (!readChar()) return QString(); return result; } FileImporterBibTeX::Token FileImporterBibTeX::readValue(Value &value, const QString &key) { Token token = tUnknown; const QString iKey = key.toLower(); do { bool isStringKey = false; const QString rawText = readString(isStringKey); QString text = EncoderLaTeX::instance().decode(rawText); /// for all entries except for abstracts ... if (iKey != Entry::ftAbstract && !(iKey.startsWith(Entry::ftUrl) && !iKey.startsWith(Entry::ftUrlDate)) && !iKey.startsWith(Entry::ftLocalFile) && !iKey.startsWith(Entry::ftFile)) { /// ... remove redundant spaces including newlines text = bibtexAwareSimplify(text); } /// abstracts will keep their formatting (regarding line breaks) /// as requested by Thomas Jensch via mail (20 October 2010) /// Maintain statistics on if (book) titles are protected /// by surrounding curly brackets if (iKey == Entry::ftTitle || iKey == Entry::ftBookTitle) { if (text[0] == QLatin1Char('{') && text[text.length() - 1] == QLatin1Char('}')) ++m_statistics.countProtectedTitle; else ++m_statistics.countUnprotectedTitle; } if (m_keysForPersonDetection.contains(iKey)) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { CommaContainment comma = ccContainsComma; parsePersonList(text, value, &comma); /// Update statistics on name formatting if (comma == ccContainsComma) ++m_statistics.countLastNameFirst; else ++m_statistics.countFirstNameFirst; } } else if (iKey == Entry::ftPages) { static const QRegExp rangeInAscii("\\s*--?\\s*"); text.replace(rangeInAscii, QChar(0x2013)); if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else value.append(QSharedPointer<PlainText>(new PlainText(text))); } else if ((iKey.startsWith(Entry::ftUrl) && !iKey.startsWith(Entry::ftUrlDate)) || iKey.startsWith(Entry::ftLocalFile) || iKey.compare(QStringLiteral("ee"), Qt::CaseInsensitive) == 0 || iKey.compare(QStringLiteral("biburl"), Qt::CaseInsensitive) == 0) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { /// Assumption: in fields like Url or LocalFile, file names are separated by ; static const QRegExp semicolonSpace = QRegExp("[;]\\s*"); const QStringList fileList = rawText.split(semicolonSpace, QString::SkipEmptyParts); for (const QString &filename : fileList) { value.append(QSharedPointer<VerbatimText>(new VerbatimText(filename))); } } } else if (iKey.startsWith(Entry::ftFile)) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { /// Assumption: this field was written by Mendeley, which uses /// a very strange format for file names: /// :C$\backslash$:/Users/BarisEvrim/Documents/Mendeley Desktop/GeversPAMI10.pdf:pdf /// :: /// :Users/Fred/Library/Application Support/Mendeley Desktop/Downloaded/Hasselman et al. - 2011 - (Still) Growing Up What should we be a realist about in the cognitive and behavioural sciences Abstract.pdf:pdf if (KBibTeX::mendeleyFileRegExp.indexIn(rawText) >= 0) { const QString backslashLaTeX = QStringLiteral("$\\backslash$"); QString filename = KBibTeX::mendeleyFileRegExp.cap(1); filename = filename.remove(backslashLaTeX); if (filename.startsWith(QStringLiteral("home/")) || filename.startsWith(QStringLiteral("Users/"))) { /// Mendeley doesn't have a slash at the beginning of absolute paths, /// so, insert one /// See bug 19833, comment 5: https://gna.org/bugs/index.php?19833#comment5 filename.prepend(QChar('/')); } value.append(QSharedPointer<VerbatimText>(new VerbatimText(filename))); } else value.append(QSharedPointer<VerbatimText>(new VerbatimText(text))); } } else if (iKey == Entry::ftMonth) { if (isStringKey) { static const QRegExp monthThreeChars("^[a-z]{3}", Qt::CaseInsensitive); if (monthThreeChars.indexIn(text) == 0) text = text.left(3).toLower(); value.append(QSharedPointer<MacroKey>(new MacroKey(text))); } else value.append(QSharedPointer<PlainText>(new PlainText(text))); } else if (iKey.startsWith(Entry::ftDOI)) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { int p = -5; /// Take care of "; " which separates multiple DOIs, but which may baffle the regexp QString preprocessedText = rawText; preprocessedText.replace(QStringLiteral("; "), QStringLiteral(" ")); /// Extract everything that looks like a DOI using a regular expression, /// ignore everything else while ((p = KBibTeX::doiRegExp.indexIn(preprocessedText, p + 5)) >= 0) value.append(QSharedPointer<VerbatimText>(new VerbatimText(KBibTeX::doiRegExp.cap(0)))); } } else if (iKey == Entry::ftColor) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else value.append(QSharedPointer<VerbatimText>(new VerbatimText(rawText))); } else if (iKey == Entry::ftCrossRef) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else value.append(QSharedPointer<VerbatimText>(new VerbatimText(rawText))); } else if (iKey == Entry::ftKeywords) { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else { char splitChar; const QList<QSharedPointer<Keyword> > keywords = splitKeywords(text, &splitChar); for (const auto &keyword : keywords) value.append(keyword); /// Memorize (some) split characters for later use /// (e.g. when writing file again) if (splitChar == ';') m_statistics.mostRecentListSeparator = QStringLiteral("; "); else if (splitChar == ',') m_statistics.mostRecentListSeparator = QStringLiteral(", "); } } else { if (isStringKey) value.append(QSharedPointer<MacroKey>(new MacroKey(text))); else value.append(QSharedPointer<PlainText>(new PlainText(text))); } token = nextToken(); } while (token == tDoublecross); return token; } bool FileImporterBibTeX::readChar() { /// Memorize previous char m_prevChar = m_nextChar; if (m_textStream->atEnd()) { /// At end of data stream m_nextChar = QChar::Null; return false; } /// Read next char *m_textStream >> m_nextChar; /// Test for new line if (m_nextChar == QLatin1Char('\n')) { /// Update variables tracking line numbers and line content ++m_lineNo; m_prevLine = m_currentLine; m_currentLine.clear(); } else { /// Add read char to current line m_currentLine.append(m_nextChar); } return true; } bool FileImporterBibTeX::readCharUntil(const QString &until) { Q_ASSERT_X(!until.isEmpty(), "bool FileImporterBibTeX::readCharUntil(const QString &until)", "\"until\" is empty or invalid"); bool result = true; while (!until.contains(m_nextChar) && (result = readChar())); return result; } bool FileImporterBibTeX::skipWhiteChar() { bool result = true; while ((m_nextChar.isSpace() || m_nextChar == QLatin1Char('\t') || m_nextChar == QLatin1Char('\n') || m_nextChar == QLatin1Char('\r')) && result) result = readChar(); return result; } QString FileImporterBibTeX::readLine() { QString result; while (m_nextChar != QLatin1Char('\n') && m_nextChar != QLatin1Char('\r') && readChar()) result.append(m_nextChar); return result; } QList<QSharedPointer<Keyword> > FileImporterBibTeX::splitKeywords(const QString &text, char *usedSplitChar) { QList<QSharedPointer<Keyword> > result; /// define a list of characters where keywords will be split along /// finalize list with null character static char splitChars[] = "\n;,\0"; static const QRegExp splitAlong[] = {QRegExp(QString("\\s*%1\\s*").arg(splitChars[0])), QRegExp(QString("\\s*%1\\s*").arg(splitChars[1])), QRegExp(QString("\\s*%1\\s*").arg(splitChars[2])), QRegExp()}; char *curSplitChar = splitChars; static const QRegExp unneccessarySpacing(QStringLiteral("[ \n\r\t]+")); int index = 0; if (usedSplitChar != nullptr) *usedSplitChar = '\0'; /// for each char in list ... while (*curSplitChar != '\0') { /// check if character is contained in text (should be cheap to test) if (text.contains(*curSplitChar)) { /// split text along a pattern like spaces-splitchar-spaces /// extract keywords const QStringList keywords = text.split(splitAlong[index], QString::SkipEmptyParts).replaceInStrings(unneccessarySpacing, QStringLiteral(" ")); /// build QList of Keyword objects from keywords for (const QString &keyword : keywords) { result.append(QSharedPointer<Keyword>(new Keyword(keyword))); } /// Memorize (some) split characters for later use /// (e.g. when writing file again) if (usedSplitChar != nullptr) *usedSplitChar = *curSplitChar; /// no more splits necessary break; } /// no success so far, test next splitting character ++curSplitChar; ++index; } /// no split was performed, so whole text must be a single keyword if (result.isEmpty()) result.append(QSharedPointer<Keyword>(new Keyword(text))); return result; } QList<QSharedPointer<Person> > FileImporterBibTeX::splitNames(const QString &text) { /// Case: Smith, John and Johnson, Tim /// Case: Smith, John and Fulkerson, Ford and Johnson, Tim /// Case: Smith, John, Fulkerson, Ford, and Johnson, Tim /// Case: John Smith and Tim Johnson /// Case: John Smith and Ford Fulkerson and Tim Johnson /// Case: Smith, John, Johnson, Tim /// Case: Smith, John, Fulkerson, Ford, Johnson, Tim /// Case: John Smith, Tim Johnson /// Case: John Smith, Tim Johnson, Ford Fulkerson /// Case: Smith, John ; Johnson, Tim ; Fulkerson, Ford (IEEE Xplore) /// German case: Robert A. Gehring und Bernd Lutterbeck QString internalText = text; /// Remove invalid characters such as dots or (double) daggers for footnotes static const QList<QChar> invalidChars = QList<QChar>() << QChar(0x00b7) << QChar(0x2020) << QChar(0x2217) << QChar(0x2021) << QChar(0x002a) << QChar(0x21d1) /** Upwards double arrow */; for (const auto &invalidChar : invalidChars) /// Replacing daggers with commas ensures that they act as persons' names separator internalText = internalText.replace(invalidChar, QChar(',')); /// Remove numbers to footnotes static const QRegExp numberFootnoteRegExp(QStringLiteral("(\\w)\\d+\\b")); internalText = internalText.replace(numberFootnoteRegExp, QStringLiteral("\\1")); /// Remove academic degrees static const QRegExp academicDegreesRegExp(QStringLiteral("(,\\s*)?(MA|PhD)\\b")); internalText = internalText.remove(academicDegreesRegExp); /// Remove email addresses static const QRegExp emailAddressRegExp(QLatin1String("\\b[a-zA-Z0-9][a-zA-Z0-9._-]+[a-zA-Z0-9]@[a-z0-9][a-z0-9-]*([.][a-z0-9-]+)*([.][a-z]+)+\\b")); internalText = internalText.remove(emailAddressRegExp); /// Split input string into tokens which are either name components (first or last name) /// or full names (composed of first and last name), depending on the input string's structure static const QRegExp split(QStringLiteral("\\s*([,]+|[,]*\\b[au]nd\\b|[;]|&|\\n|\\s{4,})\\s*")); const QStringList authorTokenList = internalText.split(split, QString::SkipEmptyParts); bool containsSpace = true; for (QStringList::ConstIterator it = authorTokenList.constBegin(); containsSpace && it != authorTokenList.constEnd(); ++it) containsSpace = (*it).contains(QChar(' ')); QList<QSharedPointer<Person> > result; result.reserve(authorTokenList.size()); if (containsSpace) { /// Tokens look like "John Smith" for (const QString &authorToken : authorTokenList) { QSharedPointer<Person> person = personFromString(authorToken); if (!person.isNull()) result.append(person); } } else { /// Tokens look like "Smith" or "John" /// Assumption: two consecutive tokens form a name for (QStringList::ConstIterator it = authorTokenList.constBegin(); it != authorTokenList.constEnd(); ++it) { QString lastname = *it; ++it; if (it != authorTokenList.constEnd()) { lastname += QStringLiteral(", ") + (*it); QSharedPointer<Person> person = personFromString(lastname); if (!person.isNull()) result.append(person); } else break; } } return result; } void FileImporterBibTeX::parsePersonList(const QString &text, Value &value) { parsePersonList(text, value, nullptr); } void FileImporterBibTeX::parsePersonList(const QString &text, Value &value, CommaContainment *comma) { static const QString tokenAnd = QStringLiteral("and"); static const QString tokenOthers = QStringLiteral("others"); static QStringList tokens; contextSensitiveSplit(text, tokens); int nameStart = 0; QString prevToken; bool encounteredName = false; for (int i = 0; i < tokens.count(); ++i) { if (tokens[i] == tokenAnd) { if (prevToken == tokenAnd) qCDebug(LOG_KBIBTEX_IO) << "Two subsequent" << tokenAnd << "found in person list"; else if (!encounteredName) qCDebug(LOG_KBIBTEX_IO) << "Found" << tokenAnd << "but no name before it"; else { const QSharedPointer<Person> person = personFromTokenList(tokens.mid(nameStart, i - nameStart), comma); if (!person.isNull()) value.append(person); } nameStart = i + 1; encounteredName = false; } else if (tokens[i] == tokenOthers) { if (i < tokens.count() - 1) qCDebug(LOG_KBIBTEX_IO) << "Special word" << tokenOthers << "found before last position in person name"; else value.append(QSharedPointer<PlainText>(new PlainText(QStringLiteral("others")))); nameStart = tokens.count() + 1; encounteredName = false; } else encounteredName = true; prevToken = tokens[i]; } if (nameStart < tokens.count()) { const QSharedPointer<Person> person = personFromTokenList(tokens.mid(nameStart), comma); if (!person.isNull()) value.append(person); } } QSharedPointer<Person> FileImporterBibTeX::personFromString(const QString &name) { return personFromString(name, nullptr); } QSharedPointer<Person> FileImporterBibTeX::personFromString(const QString &name, CommaContainment *comma) { static QStringList tokens; contextSensitiveSplit(name, tokens); return personFromTokenList(tokens, comma); } QSharedPointer<Person> FileImporterBibTeX::personFromTokenList(const QStringList &tokens, CommaContainment *comma) { if (comma != nullptr) *comma = ccNoComma; /// Simple case: provided list of tokens is empty, return invalid Person if (tokens.isEmpty()) return QSharedPointer<Person>(); /** * Sequence of tokens may contain somewhere a comma, like * "Tuckwell," "Peter". In this case, fill two string lists: * one with tokens before the comma, one with tokens after the * comma (excluding the comma itself). Example: * partA = ( "Tuckwell" ); partB = ( "Peter" ); partC = ( "Jr." ) * If a comma was found, boolean variable gotComma is set. */ QStringList partA, partB, partC; int commaCount = 0; for (const QString &token : tokens) { /// Position where comma was found, or -1 if no comma in token int p = -1; if (commaCount < 2) { /// Only check if token contains comma /// if no comma was found before int bracketCounter = 0; for (int i = 0; i < token.length(); ++i) { /// Consider opening curly brackets if (token[i] == QChar('{')) ++bracketCounter; /// Consider closing curly brackets else if (token[i] == QChar('}')) --bracketCounter; /// Only if outside any open curly bracket environments /// consider comma characters else if (bracketCounter == 0 && token[i] == QChar(',')) { /// Memorize comma's position and break from loop p = i; break; } else if (bracketCounter < 0) /// Should never happen: more closing brackets than opening ones qCWarning(LOG_KBIBTEX_IO) << "Opening and closing brackets do not match!"; } } if (p >= 0) { if (commaCount == 0) { if (p > 0) partA.append(token.left(p)); if (p < token.length() - 1) partB.append(token.mid(p + 1)); } else if (commaCount == 1) { if (p > 0) partB.append(token.left(p)); if (p < token.length() - 1) partC.append(token.mid(p + 1)); } ++commaCount; } else if (commaCount == 0) partA.append(token); else if (commaCount == 1) partB.append(token); else if (commaCount == 2) partC.append(token); } if (commaCount > 0) { if (comma != nullptr) *comma = ccContainsComma; return QSharedPointer<Person>(new Person(partC.isEmpty() ? partB.join(QChar(' ')) : partC.join(QChar(' ')), partA.join(QChar(' ')), partC.isEmpty() ? QString() : partB.join(QChar(' ')))); } /** * PubMed uses a special writing style for names, where the * last name is followed by single capital letters, each being * the first letter of each first name. Example: Tuckwell P H * So, check how many single capital letters are at the end of * the given token list */ partA.clear(); partB.clear(); bool singleCapitalLetters = true; QStringList::ConstIterator it = tokens.constEnd(); while (it != tokens.constBegin()) { --it; if (singleCapitalLetters && it->length() == 1 && it->at(0).isUpper()) partB.prepend(*it); else { singleCapitalLetters = false; partA.prepend(*it); } } if (!partB.isEmpty()) { /// Name was actually given in PubMed format return QSharedPointer<Person>(new Person(partB.join(QChar(' ')), partA.join(QChar(' ')))); } /** * Normally, the last upper case token in a name is the last name * (last names consisting of multiple space-separated parts *have* * to be protected by {...}), but some languages have fill words * in lower case belonging to the last name as well (example: "van"). * In addition, some languages have capital case letters as well * (example: "Di Cosmo"). * Exception: Special keywords such as "Jr." can be appended to the * name, not counted as part of the last name. */ partA.clear(); partB.clear(); partC.clear(); static const QSet<QString> capitalCaseLastNameFragments = QSet<QString>() << QStringLiteral("Di"); it = tokens.constEnd(); while (it != tokens.constBegin()) { --it; if (partB.isEmpty() && (it->toLower().startsWith(QStringLiteral("jr")) || it->toLower().startsWith(QStringLiteral("sr")) || it->toLower().startsWith(QStringLiteral("iii")))) /// handle name suffices like "Jr" or "III." partC.prepend(*it); else if (partB.isEmpty() || it->at(0).isLower() || capitalCaseLastNameFragments.contains(*it)) partB.prepend(*it); else partA.prepend(*it); } if (!partB.isEmpty()) { /// Name was actually like "Peter Ole van der Tuckwell", /// split into "Peter Ole" and "van der Tuckwell" return QSharedPointer<Person>(new Person(partA.join(QChar(' ')), partB.join(QChar(' ')), partC.isEmpty() ? QString() : partC.join(QChar(' ')))); } qCWarning(LOG_KBIBTEX_IO) << "Don't know how to handle name" << tokens.join(QChar(' ')); return QSharedPointer<Person>(); } void FileImporterBibTeX::contextSensitiveSplit(const QString &text, QStringList &segments) { int bracketCounter = 0; ///< keep track of opening and closing brackets: {...} QString buffer; int len = text.length(); segments.clear(); ///< empty list for results before proceeding for (int pos = 0; pos < len; ++pos) { if (text[pos] == '{') ++bracketCounter; else if (text[pos] == '}') --bracketCounter; if (text[pos].isSpace() && bracketCounter == 0) { if (!buffer.isEmpty()) { segments.append(buffer); buffer.clear(); } } else buffer.append(text[pos]); } if (!buffer.isEmpty()) segments.append(buffer); } QString FileImporterBibTeX::bibtexAwareSimplify(const QString &text) { QString result; int i = 0; /// Skip initial spaces, can be safely ignored while (i < text.length() && text[i].isSpace()) ++i; while (i < text.length()) { /// Consume non-spaces while (i < text.length() && !text[i].isSpace()) { result.append(text[i]); ++i; } /// String may end with a non-space if (i >= text.length()) break; /// Consume spaces, ... while (i < text.length() && text[i].isSpace()) ++i; /// ... but record only a single space result.append(QStringLiteral(" ")); } return result; } bool FileImporterBibTeX::evaluateParameterComments(QTextStream *textStream, const QString &line, File *file) { /// Assertion: variable "line" is all lower-case /** check if this file requests a special encoding */ if (line.startsWith(QStringLiteral("@comment{x-kbibtex-encoding=")) && line.endsWith(QLatin1Char('}'))) { QString encoding = line.mid(28, line.length() - 29); textStream->setCodec(encoding == QStringLiteral("latex") ? defaultCodecName : encoding.toLatin1().data()); file->setProperty(File::Encoding, encoding == QStringLiteral("latex") ? encoding : textStream->codec()->name()); return true; } else if (line.startsWith(QStringLiteral("@comment{x-kbibtex-personnameformatting=")) && line.endsWith(QLatin1Char('}'))) { // TODO usage of x-kbibtex-personnameformatting is deprecated, // as automatic detection is in place QString personNameFormatting = line.mid(40, line.length() - 41); file->setProperty(File::NameFormatting, personNameFormatting); return true; } else if (line.startsWith(QStringLiteral("% encoding:"))) { /// Interprete JabRef's encoding information QString encoding = line.mid(12); qCDebug(LOG_KBIBTEX_IO) << "Using JabRef's encoding:" << encoding; textStream->setCodec(encoding.toLatin1()); encoding = textStream->codec()->name(); file->setProperty(File::Encoding, encoding); return true; } return false; } QString FileImporterBibTeX::tokenidToString(Token token) { switch (token) { case tAt: return QString(QStringLiteral("At")); case tBracketClose: return QString(QStringLiteral("BracketClose")); case tBracketOpen: return QString(QStringLiteral("BracketOpen")); case tAlphaNumText: return QString(QStringLiteral("AlphaNumText")); case tAssign: return QString(QStringLiteral("Assign")); case tComma: return QString(QStringLiteral("Comma")); case tDoublecross: return QString(QStringLiteral("Doublecross")); case tEOF: return QString(QStringLiteral("EOF")); case tUnknown: return QString(QStringLiteral("Unknown")); default: return QString(QStringLiteral("<Unknown>")); } } void FileImporterBibTeX::setCommentHandling(CommentHandling commentHandling) { m_commentHandling = commentHandling; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterbibtex.h�����������������������������������������������������������0000664�0000000�0000000�00000014363�13313000262�0020413�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEIMPORTERBIBTEX_H #define KBIBTEX_IO_FILEIMPORTERBIBTEX_H #include "kbibtexio_export.h" #include <QTextStream> #include <QSharedPointer> #include <QStringList> #include <QSet> #include "kbibtex.h" #include "fileimporter.h" class Element; class Comment; class Preamble; class Macro; class Entry; class Value; class Keyword; /** * This class reads a BibTeX file from a QIODevice (such as a QFile) and * creates a File object which can be used to access the BibTeX elements. * @see File * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileImporterBibTeX : public FileImporter { Q_OBJECT public: static const char *defaultCodecName; enum CommentHandling {IgnoreComments = 0, KeepComments = 1}; /** * Creates an importer class to read a BibTeX file. */ explicit FileImporterBibTeX(QObject *parent); /** * Read data from the given device and construct a File object holding * the bibliographic data. * @param iodevice opened QIODevice instance ready to read from * @return @c valid File object with elements, @c NULL if reading failed for some reason */ File *load(QIODevice *iodevice) override; /** TODO */ static bool guessCanDecode(const QString &text); /** * Split a list of keyword separated by ";" or "," into single Keyword objects. * @param text Text containing the keyword list * @return A list of Keyword object containing the keywords * @see Keyword */ static QList<QSharedPointer<Keyword> > splitKeywords(const QString &text, char *usedSplitChar = nullptr); /** * Split a list of names into single Person objects. * Examples: "Smith, John, Fulkerson, Ford, and Johnson, Tim" * or "John Smith and Tim Johnson" * @param text Text containing the persons' names * @return A list of Person object containing the names * @see Person */ static QList<QSharedPointer<Person> > splitNames(const QString &text); /** * Split a person's name into its parts and construct a Person object from them. * This is a functions specialized on the properties of (La)TeX code considering * e.g. curly brackets. * @param name The persons name * @return A Person object containing the name * @see Person */ static QSharedPointer<Person> personFromString(const QString &name); static void parsePersonList(const QString &text, Value &value); void setCommentHandling(CommentHandling commentHandling); public slots: void cancel() override; private: enum Token { tAt = 1, tBracketOpen = 2, tBracketClose = 3, tAlphaNumText = 4, tComma = 5, tAssign = 6, tDoublecross = 7, tEOF = 0xffff, tUnknown = -1 }; enum CommaContainment { ccNoComma = 0, ccContainsComma = 1 }; struct { int countCurlyBrackets, countQuotationMarks; int countFirstNameFirst, countLastNameFirst; int countNoCommentQuote, countCommentPercent, countCommentCommand; int countProtectedTitle, countUnprotectedTitle; QString mostRecentListSeparator; } m_statistics; bool m_cancelFlag; QTextStream *m_textStream; CommentHandling m_commentHandling; KBibTeX::Casing m_keywordCasing; QStringList m_keysForPersonDetection; QSet<QString> m_knownElementIds; /// low-level character operations QChar m_prevChar, m_nextChar; unsigned int m_lineNo; QString m_prevLine, m_currentLine; bool readChar(); bool readCharUntil(const QString &until); bool skipWhiteChar(); QString readLine(); /// high-level parsing functions Comment *readCommentElement(); Comment *readPlainCommentElement(const QString &prefix = QString()); Macro *readMacroElement(); Preamble *readPreambleElement(); Entry *readEntryElement(const QString &typeString); Element *nextElement(); Token nextToken(); QString readString(bool &isStringKey); QString readSimpleString(const char until = '\0'); QString readQuotedString(); QString readBracketString(); Token readValue(Value &value, const QString &fieldType); static QSharedPointer<Person> personFromString(const QString &name, CommaContainment *comma); static QSharedPointer<Person> personFromTokenList(const QStringList &tokens, CommaContainment *comma = nullptr); static void parsePersonList(const QString &text, Value &value, CommaContainment *comma); /** * Split a string into white-space separated chunks, * but keep parts intact which are protected by {...}. * Example: "aa bb ccc {dd ee ff}" * will be split into "aa", "bb", "ccc", "{dd ee ff}" * * @param text input string to be split * @param segments list where chunks will be added to */ static void contextSensitiveSplit(const QString &text, QStringList &segments); static QString bibtexAwareSimplify(const QString &text); bool evaluateParameterComments(QTextStream *textStream, const QString &line, File *file); QString tokenidToString(Token token); }; #endif // KBIBTEX_IO_FILEIMPORTERBIBTEX_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterbibutils.cpp�������������������������������������������������������0000664�0000000�0000000�00000004473�13313000262�0021307�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileimporterbibutils.h" #include <QBuffer> #include "fileimporterbibtex.h" #include "logging_io.h" class FileImporterBibUtils::Private { private: // UNUSED FileImporterBibUtils *p; public: FileImporterBibTeX *bibtexImporter; Private(FileImporterBibUtils *parent) // UNUSED : p(parent) { bibtexImporter = new FileImporterBibTeX(parent); } ~Private() { delete bibtexImporter; } }; FileImporterBibUtils::FileImporterBibUtils(QObject *parent) : FileImporter(parent), BibUtils(), d(new FileImporterBibUtils::Private(this)) { /// nothing } FileImporterBibUtils::~FileImporterBibUtils() { delete d; } File *FileImporterBibUtils::load(QIODevice *iodevice) { if (!iodevice->isReadable() && !iodevice->open(QIODevice::ReadOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Input device not readable"; return nullptr; } QBuffer buffer; const bool result = convert(*iodevice, format(), buffer, BibUtils::BibTeX); iodevice->close(); if (result) return d->bibtexImporter->load(&buffer); else return nullptr; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterbibutils.h���������������������������������������������������������0000664�0000000�0000000�00000003326�13313000262�0020750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef IO_FILEIMPORTERBIBUTILS_H #define IO_FILEIMPORTERBIBUTILS_H #include "fileimporter.h" #include "bibutils.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileImporterBibUtils : public FileImporter, public BibUtils { Q_OBJECT public: explicit FileImporterBibUtils(QObject *parent); ~FileImporterBibUtils() override; File *load(QIODevice *iodevice) override; private: class Private; Private *const d; }; #endif // IO_FILEIMPORTERBIBUTILS_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterpdf.cpp������������������������������������������������������������0000664�0000000�0000000�00000010204�13313000262�0020230�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileimporterpdf.h" #include <QBuffer> #include <QFile> #include <poppler-qt5.h> #include "file.h" #include "fileimporterbibtex.h" #include "logging_io.h" FileImporterPDF::FileImporterPDF(QObject *parent) : FileImporter(parent), m_cancelFlag(false) { m_bibTeXimporter = new FileImporterBibTeX(this); } FileImporterPDF::~FileImporterPDF() { delete m_bibTeXimporter; } File *FileImporterPDF::load(QIODevice *iodevice) { if (!iodevice->isReadable() && !iodevice->open(QIODevice::ReadOnly)) { qCWarning(LOG_KBIBTEX_IO) << "Input device not readable"; return nullptr; } m_cancelFlag = false; File *result = nullptr; QByteArray buffer = iodevice->readAll(); Poppler::Document *doc = Poppler::Document::loadFromData(buffer); if (doc == nullptr) { qCWarning(LOG_KBIBTEX_IO) << "Could not load PDF document"; iodevice->close(); return nullptr; } /// Iterate through all files embedded in this PDF file (if any), /// check for file extension '.bib', and try to load bibliography /// data. if (doc->hasEmbeddedFiles()) { const QList<Poppler::EmbeddedFile *> embeddedFiles = doc->embeddedFiles(); for (Poppler::EmbeddedFile *file : embeddedFiles) { if (file->name().endsWith(QStringLiteral(".bib"))) { // TODO maybe request implementation of a constData() for // Poppler::EmbeddedFile to operate on const objects? QByteArray data(file->data()); QBuffer buffer(&data); FileImporterBibTeX bibTeXimporter(this); connect(&bibTeXimporter, &FileImporter::progress, this, &FileImporter::progress); buffer.open(QIODevice::ReadOnly); result = bibTeXimporter.load(&buffer); buffer.close(); if (result) { qCDebug(LOG_KBIBTEX_IO) << "Bibliography extracted from embedded file" << file->name() << "has" << result->count() << "entries"; if (result->count() > 0) break; ///< stop processing after first valid, non-empty BibTeX file else { /// ... otherwise delete empty bibliography object delete result; result = nullptr; } } else qCDebug(LOG_KBIBTEX_IO) << "Create bibliography file from embedded file" << file->name() << "failed"; } else qCDebug(LOG_KBIBTEX_IO) << "Embedded file" << file->name() << "doesn't have right extension ('.bib')"; } } else qCDebug(LOG_KBIBTEX_IO) << "PDF document has no files embedded"; delete doc; iodevice->close(); return result; } bool FileImporterPDF::guessCanDecode(const QString &) { return false; } void FileImporterPDF::cancel() { m_cancelFlag = true; m_bibTeXimporter->cancel(); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterpdf.h��������������������������������������������������������������0000664�0000000�0000000�00000003550�13313000262�0017703�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEIMPORTERPDF_H #define KBIBTEX_IO_FILEIMPORTERPDF_H #include "kbibtexio_export.h" #include <QUrl> #include "fileimporter.h" class FileImporterBibTeX; /** @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileImporterPDF : public FileImporter { Q_OBJECT public: explicit FileImporterPDF(QObject *parent); ~FileImporterPDF() override; File *load(QIODevice *iodevice) override; static bool guessCanDecode(const QString &text); public slots: void cancel() override; private: bool m_cancelFlag; FileImporterBibTeX *m_bibTeXimporter; }; #endif // KBIBTEX_IO_FILEIMPORTERPDF_H ��������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterris.cpp������������������������������������������������������������0000664�0000000�0000000�00000032322�13313000262�0020261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileimporterris.h" #include <QVector> #include <QTextStream> #include <QRegExp> #include <QCoreApplication> #include <QStringList> #include "kbibtex.h" #include "entry.h" #include "value.h" #include "logging_io.h" #define appendValue(entry, fieldname, newvalue) { Value value = (entry)->value((fieldname)); value.append((newvalue)); (entry)->insert((fieldname), value); } class FileImporterRIS::FileImporterRISPrivate { private: // UNUSED FileImporterRIS *p; public: int referenceCounter; bool cancelFlag; typedef struct { QString key; QString value; } RISitem; typedef QVector<RISitem> RISitemList; FileImporterRISPrivate(FileImporterRIS */* UNUSED parent*/) : /* UNUSED p(parent),*/ referenceCounter(0), cancelFlag(false) { // nothing } RISitemList readElement(QTextStream &textStream) { RISitemList result; QString line = textStream.readLine(); while (!line.startsWith(QStringLiteral("TY - ")) && !textStream.atEnd()) line = textStream.readLine(); if (textStream.atEnd()) return result; QString key, value; while (!line.startsWith(QStringLiteral("ER -")) && !textStream.atEnd()) { if (line.mid(2, 3) == QStringLiteral(" -")) { if (!value.isEmpty()) { RISitem item; item.key = key; item.value = value; result.append(item); } key = line.left(2); value = line.mid(6).simplified(); } else { line = line.simplified(); if (line.length() > 1) { /// multi-line field are joined to one long line value += QLatin1Char(' ') + line; } } line = textStream.readLine(); } if (!value.isEmpty()) { RISitem item; item.key = key; item.value = value; result.append(item); } return result; } Element *nextElement(QTextStream &textStream) { RISitemList list = readElement(textStream); if (list.empty()) return nullptr; QString entryType = Entry::etMisc; Entry *entry = new Entry(entryType, QString(QStringLiteral("RIS_%1")).arg(referenceCounter++)); QString journalName, startPage, endPage, date; int fieldCounter = 0; for (RISitemList::iterator it = list.begin(); it != list.end(); ++it) { if ((*it).key == QStringLiteral("TY")) { if ((*it).value.startsWith(QStringLiteral("BOOK")) || (*it).value.startsWith(QStringLiteral("SER"))) entryType = Entry::etBook; else if ((*it).value.startsWith(QStringLiteral("CHAP"))) entryType = Entry::etInBook; else if ((*it).value.startsWith(QStringLiteral("CONF"))) entryType = Entry::etInProceedings; else if ((*it).value.startsWith(QStringLiteral("JFULL")) || (*it).value.startsWith(QStringLiteral("JOUR")) || (*it).value.startsWith(QStringLiteral("MGZN"))) entryType = Entry::etArticle; else if ((*it).value.startsWith(QStringLiteral("RPRT"))) entryType = Entry::etTechReport; else if ((*it).value.startsWith(QStringLiteral("THES"))) entryType = Entry::etPhDThesis; // FIXME what about etMastersThesis? else if ((*it).value.startsWith(QStringLiteral("UNPB"))) entryType = Entry::etUnpublished; entry->setType(entryType); } else if ((*it).key == QStringLiteral("AU") || (*it).key == QStringLiteral("A1")) { Person *person = splitName((*it).value); if (person != NULL) appendValue(entry, Entry::ftAuthor, QSharedPointer<Person>(person)); } else if ((*it).key == QStringLiteral("ED") || (*it).key == QStringLiteral("A2")) { Person *person = splitName((*it).value); if (person != NULL) appendValue(entry, Entry::ftEditor, QSharedPointer<Person>(person)); } else if ((*it).key == QStringLiteral("ID")) { entry->setId((*it).value); } else if ((*it).key == QStringLiteral("Y1") || (*it).key == QStringLiteral("PY")) { date = (*it).value; } else if ((*it).key == QStringLiteral("Y2")) { if (date.isEmpty()) date = (*it).value; } else if ((*it).key == QStringLiteral("AB") || (*it).key == QStringLiteral("N2")) { appendValue(entry, Entry::ftAbstract, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("N1")) { appendValue(entry, Entry::ftNote, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("KW")) { QString text = (*it).value; QRegExp splitRegExp; if (text.contains(QStringLiteral(";"))) splitRegExp = QRegExp("\\s*[;\\n]\\s*"); else if (text.contains(QStringLiteral(","))) splitRegExp = QRegExp("\\s*[,\\n]\\s*"); else splitRegExp = QRegExp("\\n"); QStringList newKeywords = text.split(splitRegExp, QString::SkipEmptyParts); for (QStringList::Iterator it = newKeywords.begin(); it != newKeywords.end(); ++it) appendValue(entry, Entry::ftKeywords, QSharedPointer<Keyword>(new Keyword(*it))); } else if ((*it).key == QStringLiteral("TI") || (*it).key == QStringLiteral("T1")) { appendValue(entry, Entry::ftTitle, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("T3")) { appendValue(entry, Entry::ftSeries, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("JO") || (*it).key == QStringLiteral("J1") || (*it).key == QStringLiteral("J2")) { if (journalName.isEmpty()) journalName = (*it).value; } else if ((*it).key == QStringLiteral("JF") || (*it).key == QStringLiteral("JA")) { journalName = (*it).value; } else if ((*it).key == QStringLiteral("VL")) { appendValue(entry, Entry::ftVolume, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("CP")) { appendValue(entry, Entry::ftChapter, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("IS")) { appendValue(entry, Entry::ftNumber, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("DO")) { appendValue(entry, Entry::ftDOI, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("PB")) { appendValue(entry, Entry::ftPublisher, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("IN")) { appendValue(entry, Entry::ftSchool, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("SN")) { const QString fieldName = entryType == Entry::etBook || entryType == Entry::etInBook ? Entry::ftISBN : Entry::ftISSN; appendValue(entry, fieldName, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("CY")) { appendValue(entry, Entry::ftLocation, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("AD")) { appendValue(entry, Entry::ftAddress, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("L1") || (*it).key == QStringLiteral("L2") || (*it).key == QStringLiteral("L3") || (*it).key == QStringLiteral("UR")) { const QString fieldName = KBibTeX::doiRegExp.indexIn((*it).value) >= 0 ? Entry::ftDOI : (KBibTeX::urlRegExp.indexIn((*it).value) >= 0 ? Entry::ftUrl : Entry::ftLocalFile); appendValue(entry, fieldName, QSharedPointer<PlainText>(new PlainText((*it).value))); } else if ((*it).key == QStringLiteral("SP")) { startPage = (*it).value; } else if ((*it).key == QStringLiteral("EP")) { endPage = (*it).value; } else { const QString fieldName = QString(QStringLiteral("RISfield_%1_%2")).arg(fieldCounter++).arg((*it).key.left(2)); appendValue(entry, fieldName, QSharedPointer<PlainText>(new PlainText((*it).value))); } } if (!journalName.isEmpty()) { const QString fieldName = entryType == Entry::etInBook || entryType == Entry::etInProceedings ? Entry::ftBookTitle : Entry::ftJournal; Value value = entry->value(fieldName); value.append(QSharedPointer<PlainText>(new PlainText(journalName))); entry->insert(fieldName, value); } if (!startPage.isEmpty() || !endPage.isEmpty()) { QString page; if (startPage.isEmpty()) page = endPage; else if (endPage.isEmpty()) page = startPage; else page = startPage + QChar(0x2013) + endPage; Value value; value.append(QSharedPointer<PlainText>(new PlainText(page))); entry->insert(Entry::ftPages, value); } QStringList dateFragments = date.split(QStringLiteral("/"), QString::SkipEmptyParts); if (dateFragments.count() > 0) { bool ok; int year = dateFragments[0].toInt(&ok); if (ok && year > 1000 && year < 3000) { Value value = entry->value(Entry::ftYear); value.append(QSharedPointer<PlainText>(new PlainText(QString::number(year)))); entry->insert(Entry::ftYear, value); } else qCDebug(LOG_KBIBTEX_IO) << "invalid year: " << year; } if (dateFragments.count() > 1) { bool ok; int month = dateFragments[1].toInt(&ok); if (ok && month > 0 && month < 13) { Value value = entry->value(Entry::ftMonth); value.append(QSharedPointer<MacroKey>(new MacroKey(KBibTeX::MonthsTriple[month - 1]))); entry->insert(Entry::ftMonth, value); } else qCDebug(LOG_KBIBTEX_IO) << "invalid month: " << month; } return entry; } }; FileImporterRIS::FileImporterRIS(QObject *parent) : FileImporter(parent), d(new FileImporterRISPrivate(this)) { // nothing } FileImporterRIS::~FileImporterRIS() { delete d; } File *FileImporterRIS::load(QIODevice *iodevice) { if (!iodevice->isReadable() && !iodevice->open(QIODevice::ReadOnly)) { qCDebug(LOG_KBIBTEX_IO) << "Input device not readable"; return nullptr; } d->cancelFlag = false; d->referenceCounter = 0; QTextStream textStream(iodevice); File *result = new File(); while (!d->cancelFlag && !textStream.atEnd()) { emit progress(textStream.pos(), iodevice->size()); QCoreApplication::instance()->processEvents(); Element *element = d->nextElement(textStream); if (element != nullptr) result->append(QSharedPointer<Element>(element)); QCoreApplication::instance()->processEvents(); } emit progress(100, 100); if (d->cancelFlag) { delete result; result = nullptr; } iodevice->close(); return result; } bool FileImporterRIS::guessCanDecode(const QString &text) { return text.indexOf(QStringLiteral("TY - ")) >= 0; } void FileImporterRIS::cancel() { d->cancelFlag = true; } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileimporterris.h��������������������������������������������������������������0000664�0000000�0000000�00000003460�13313000262�0017727�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEIMPORTERRIS_H #define KBIBTEX_IO_FILEIMPORTERRIS_H #include "entry.h" #include "fileimporter.h" /** @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT FileImporterRIS : public FileImporter { Q_OBJECT public: explicit FileImporterRIS(QObject *parent); ~FileImporterRIS() override; File *load(QIODevice *iodevice) override; static bool guessCanDecode(const QString &text); public slots: void cancel() override; private: class FileImporterRISPrivate; FileImporterRISPrivate *d; }; #endif // KBIBTEX_IO_FILEIMPORTERRIS_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileinfo.cpp�������������������������������������������������������������������0000664�0000000�0000000�00000042542�13313000262�0016642�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "fileinfo.h" #include <poppler-qt5.h> #include <QFileInfo> #include <QDir> #include <QTextStream> #include <QStandardPaths> #include <QtConcurrent/QtConcurrent> #include <KSharedConfig> #include <KConfigGroup> #include "kbibtex.h" #include "entry.h" FileInfo::FileInfo() { /// nothing } const QString FileInfo::mimetypeOctetStream = QStringLiteral("application/octet-stream"); const QString FileInfo::mimetypeHTML = QStringLiteral("text/html"); const QString FileInfo::mimetypeBibTeX = QStringLiteral("text/x-bibtex"); const QString FileInfo::mimetypeRIS = QStringLiteral("application/x-research-info-systems"); const QString FileInfo::mimetypePDF = QStringLiteral("application/pdf"); QMimeType FileInfo::mimeTypeForUrl(const QUrl &url) { static QMimeDatabase db; static const QMimeType mtHTML(db.mimeTypeForName(mimetypeHTML)); static const QMimeType mtOctetStream(db.mimeTypeForName(mimetypeOctetStream)); static const QMimeType mtBibTeX(db.mimeTypeForName(mimetypeBibTeX)); static const QMimeType mtPDF(db.mimeTypeForName(mimetypePDF)); static const QMimeType mtRIS(db.mimeTypeForName(mimetypeRIS)); /// Test if mime type for BibTeX is registered before determining file extension static const QString mimetypeBibTeXExt = mtBibTeX.preferredSuffix(); /// Test if mime type for RIS is registered before determining file extension static const QString mimetypeRISExt = mtRIS.preferredSuffix(); /// Test if mime type for PDF is registered before determining file extension static const QString mimetypePDFExt = mtPDF.preferredSuffix(); const QString extension = db.suffixForFileName(url.fileName()).toLower(); /// First, check preferred suffixes if (extension == mimetypeBibTeXExt) return mtBibTeX; else if (extension == mimetypeRISExt) return mtRIS; else if (extension == mimetypePDFExt) return mtPDF; /// Second, check any other suffixes else if (mtBibTeX.suffixes().contains(extension)) return mtBibTeX; else if (mtRIS.suffixes().contains(extension)) return mtRIS; else if (mtPDF.suffixes().contains(extension)) return mtPDF; /// Let the KDE subsystem guess the mime type QMimeType result = db.mimeTypeForUrl(url); /// Fall back to application/octet-stream if something goes wrong if (!result.isValid()) result = mtOctetStream; /// In case that KDE could not determine mime type, /// do some educated guesses on our own if (result.name() == mimetypeOctetStream) { if (url.scheme().startsWith(QStringLiteral("http"))) result = mtHTML; // TODO more tests? } return result; } void FileInfo::urlsInText(const QString &text, TestExistence testExistence, const QString &baseDirectory, QList<QUrl> &result) { if (text.isEmpty()) return; /// DOI identifiers have to extracted first as KBibTeX::fileListSeparatorRegExp /// contains characters that can be part of a DOI (e.g. ';') and thus could split /// a DOI in between. QString internalText = text; int pos = 0; while ((pos = KBibTeX::doiRegExp.indexIn(internalText, pos)) != -1) { QString match = KBibTeX::doiRegExp.cap(0); QUrl url(doiUrlPrefix() + match.remove(QStringLiteral("\\"))); if (url.isValid() && !result.contains(url)) result << url; /// remove match from internal text to avoid duplicates /// Cut away any URL that may be right before found DOI number: /// For example, if DOI '10.1000/38-abc' was found in /// 'Lore ipsum http://doi.example.org/10.1000/38-abc Lore ipsum' /// also remove 'http://doi.example.org/' from the text, keeping only /// 'Lore ipsum Lore ipsum' static const QRegExp genericDoiUrlPrefix(QStringLiteral("http[s]?://[a-z0-9./]+/")); ///< looks like an URL const int urlStartPos = genericDoiUrlPrefix.lastIndexIn(internalText, pos); if (urlStartPos >= 0 && genericDoiUrlPrefix.cap(0).length() > pos - urlStartPos) /// genericDoiUrlPrefix.cap(0) may contain (parts of) DOI internalText = internalText.left(urlStartPos) + internalText.mid(pos + match.length()); else internalText = internalText.left(pos) + internalText.mid(pos + match.length()); } const QStringList fileList = internalText.split(KBibTeX::fileListSeparatorRegExp, QString::SkipEmptyParts); for (const QString &text : fileList) { internalText = text; /// If testing for the actual existence of a filename found in the text ... if (testExistence == TestExistenceYes) { /// If a base directory (e.g. the location of the parent .bib file) is given /// and the potential filename fragment is NOT an absolute path, ... if (internalText.startsWith(QStringLiteral("~") + QDir::separator())) { const QString fullFilename = QDir::homePath() + internalText.mid(1); const QFileInfo fileInfo(fullFilename); const QUrl url = QUrl::fromLocalFile(fileInfo.canonicalFilePath()); if (fileInfo.exists() && fileInfo.isFile() && url.isValid() && !result.contains(url)) { result << url; /// Stop searching for URLs or filenames in current internal text continue; } } else if (!baseDirectory.isEmpty() && // TODO the following test assumes that absolute paths start // with a dir separator, which may only be true on Unix/Linux, // but not Windows. May be a test for 'first character is a letter, // second is ":", third is "\"' may be necessary. !internalText.startsWith(QDir::separator())) { /// To get the absolute path, prepend filename fragment with base directory const QString fullFilename = baseDirectory + QDir::separator() + internalText; const QFileInfo fileInfo(fullFilename); const QUrl url = QUrl::fromLocalFile(fileInfo.canonicalFilePath()); if (fileInfo.exists() && fileInfo.isFile() && url.isValid() && !result.contains(url)) { result << url; /// Stop searching for URLs or filenames in current internal text continue; } } else { /// Either the filename fragment is an absolute path OR no base directory /// was given (current working directory is assumed), ... const QFileInfo fileInfo(internalText); const QUrl url = QUrl::fromLocalFile(fileInfo.canonicalFilePath()); if (fileInfo.exists() && fileInfo.isFile() && url.isValid() && !result.contains(url)) { result << url; /// stop searching for URLs or filenames in current internal text continue; } } } /// extract URL from current field pos = 0; while ((pos = KBibTeX::urlRegExp.indexIn(internalText, pos)) != -1) { const QString match = KBibTeX::urlRegExp.cap(0); QUrl url(match); if (url.isValid() && (testExistence == TestExistenceNo || !url.isLocalFile() || QFileInfo::exists(url.toLocalFile())) && !result.contains(url)) result << url; /// remove match from internal text to avoid duplicates internalText = internalText.left(pos) + internalText.mid(pos + match.length()); } /// explicitly check URL entry, may be an URL even if http:// or alike is missing pos = 0; while ((pos = KBibTeX::domainNameRegExp.indexIn(internalText, pos)) > -1) { int pos2 = internalText.indexOf(QStringLiteral(" "), pos + 1); if (pos2 < 0) pos2 = internalText.length(); QString match = internalText.mid(pos, pos2 - pos); QUrl url("http://" + match); if (url.isValid() && !result.contains(url)) result << url; /// remove match from internal text to avoid duplicates internalText = internalText.left(pos) + internalText.mid(pos + match.length()); } /// extract general file-like patterns pos = 0; while ((pos = KBibTeX::fileRegExp.indexIn(internalText, pos)) != -1) { QString match = KBibTeX::fileRegExp.cap(0); QUrl url(match); if (url.isValid() && (testExistence == TestExistenceNo || !url.isLocalFile() || QFileInfo::exists(url.toLocalFile())) && !result.contains(url)) result << url; /// remove match from internal text to avoid duplicates internalText = internalText.left(pos) + internalText.mid(pos + match.length()); } } } QList<QUrl> FileInfo::entryUrls(const QSharedPointer<const Entry> &entry, const QUrl &bibTeXUrl, TestExistence testExistence) { QList<QUrl> result; if (entry.isNull() || entry->isEmpty()) return result; if (entry->contains(Entry::ftDOI)) { const QString doi = PlainTextValue::text(entry->value(Entry::ftDOI)); if (!doi.isEmpty() && KBibTeX::doiRegExp.indexIn(doi) == 0) { QString match = KBibTeX::doiRegExp.cap(0); QUrl url(doiUrlPrefix() + match.remove(QStringLiteral("\\"))); result.append(url); } } static const QString etPMID = QStringLiteral("pmid"); if (entry->contains(etPMID)) { const QString pmid = PlainTextValue::text(entry->value(etPMID)); bool ok = false; ok &= pmid.toInt(&ok) > 0; if (ok) { QUrl url(QStringLiteral("https://www.ncbi.nlm.nih.gov/pubmed/") + pmid); result.append(url); } } static const QString etEPrint = QStringLiteral("eprint"); if (entry->contains(etEPrint)) { const QString eprint = PlainTextValue::text(entry->value(etEPrint)); if (!eprint.isEmpty()) { QUrl url(QStringLiteral("http://arxiv.org/search?query=") + eprint); result.append(url); } } const QString baseDirectory = bibTeXUrl.isValid() ? bibTeXUrl.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).path() : QString(); static const QRegExp regExpEscapedChars = QRegExp(QStringLiteral("\\\\+([&_~])")); for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) { /// skip abstracts, they contain sometimes strange text fragments /// that are mistaken for URLs if (it.key().toLower() == Entry::ftAbstract) continue; const Value v = it.value(); for (const auto &valueItem : v) { QString plainText = PlainTextValue::text(*valueItem); int pos = -1; while ((pos = regExpEscapedChars.indexIn(plainText, pos + 1)) != -1) plainText = plainText.replace(regExpEscapedChars.cap(0), regExpEscapedChars.cap(1)); urlsInText(plainText, testExistence, baseDirectory, result); } } if (!baseDirectory.isEmpty()) { /// File types supported by "document preview" static const QStringList documentFileExtensions = QStringList() << QStringLiteral(".pdf") << QStringLiteral(".pdf.gz") << QStringLiteral(".pdf.bz2") << QStringLiteral(".ps") << QStringLiteral(".ps.gz") << QStringLiteral(".ps.bz2") << QStringLiteral(".eps") << QStringLiteral(".eps.gz") << QStringLiteral(".eps.bz2") << QStringLiteral(".html") << QStringLiteral(".xhtml") << QStringLiteral(".htm") << QStringLiteral(".dvi") << QStringLiteral(".djvu") << QStringLiteral(".wwf") << QStringLiteral(".jpeg") << QStringLiteral(".jpg") << QStringLiteral(".png") << QStringLiteral(".gif") << QStringLiteral(".tif") << QStringLiteral(".tiff"); result.reserve(result.size() + documentFileExtensions.size() * 2); /// check if in the same directory as the BibTeX file /// a PDF file exists which filename is based on the entry's id for (const QString &extension : documentFileExtensions) { const QFileInfo fi(baseDirectory + QDir::separator() + entry->id() + extension); if (fi.exists()) { const QUrl url = QUrl::fromLocalFile(fi.canonicalFilePath()); if (!result.contains(url)) result << url; } } /// check if in the same directory as the BibTeX file there is a subdirectory /// similar to the BibTeX file's name and which contains a PDF file exists /// which filename is based on the entry's id QString basename = bibTeXUrl.fileName().remove(QRegExp("\\.[^.]{2,5}$")); QString directory = baseDirectory + QDir::separator() + basename; for (const QString &extension : documentFileExtensions) { const QFileInfo fi(directory + QDir::separator() + entry->id() + extension); if (fi.exists()) { const QUrl url = QUrl::fromLocalFile(fi.canonicalFilePath()); if (!result.contains(url)) result << url; } } } return result; } QString FileInfo::pdfToText(const QString &pdfFilename) { /// Build filename for text file where PDF file's plain text is cached static const QRegExp invalidChars(QStringLiteral("[^-a-z0-9_]"), Qt::CaseInsensitive); const QString cacheDirectory = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + QStringLiteral("/pdftotext"); if (!QDir(cacheDirectory).exists() && !QDir::home().mkdir(cacheDirectory)) /// Could not create cache directory return QString(); const QString textFilename = QString(pdfFilename).remove(invalidChars).append(QStringLiteral(".txt")).prepend(QStringLiteral("/")).prepend(cacheDirectory); /// First, check if there is a cache text file if (QFileInfo::exists(textFilename)) { /// Load text from cache file QFile f(textFilename); if (f.open(QFile::ReadOnly)) { QTextStream ts(&f); const QString text = ts.readAll(); f.close(); return text; } } else /// No cache file exists, so run text extraction in another thread QtConcurrent::run(extractPDFTextToCache, pdfFilename, textFilename); return QString(); } void FileInfo::extractPDFTextToCache(const QString &pdfFilename, const QString &cacheFilename) { /// In case of multiple calls, skip text extraction if cache file already exists if (QFile(cacheFilename).exists()) return; QString text; QStringList msgList; /// Load PDF file through Poppler Poppler::Document *doc = Poppler::Document::load(pdfFilename); if (doc != nullptr) { static const int maxPages = 64; /// Build text by appending each page's text for (int i = 0; i < qMin(maxPages, doc->numPages()); ++i) text.append(doc->page(i)->text(QRect())).append(QStringLiteral("\n\n")); if (doc->numPages() > maxPages) msgList << QString(QStringLiteral("### Skipped %1 pages as PDF file contained too many pages (limit is %2 pages) ###")).arg(doc->numPages() - maxPages).arg(maxPages); delete doc; } else msgList << QStringLiteral("### Skipped as file could not be opened as PDF file ###"); /// Save text in cache file QFile f(cacheFilename); if (f.open(QFile::WriteOnly)) { static const int maxCharacters = 1 << 18; QTextStream ts(&f); ts << text.left(maxCharacters); ///< keep only the first 2^18 many characters if (text.length() > maxCharacters) msgList << QString(QStringLiteral("### Text too long, skipping %1 characters ###")).arg(text.length() - maxCharacters); /// Write all messages (warnings) to end of text file for (const QString &msg : const_cast<const QStringList &>(msgList)) ts << endl << msg; f.close(); } } QString FileInfo::doiUrlPrefix() { KSharedConfigPtr config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))); static const QString configGroupNameNetworking(QStringLiteral("Networking")); static const QString keyDOIUrlPrefix(QStringLiteral("DOIUrlPrefix")); KConfigGroup configGroup(config, configGroupNameNetworking); return configGroup.readEntry(keyDOIUrlPrefix, KBibTeX::doiUrlPrefix); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/fileinfo.h���������������������������������������������������������������������0000664�0000000�0000000�00000011236�13313000262�0016303�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_FILEINFO_H #define KBIBTEX_IO_FILEINFO_H #include "kbibtexio_export.h" #include <QList> #include <QUrl> #include <QMimeDatabase> #include <QMimeType> #include <QSharedPointer> class Entry; class KBIBTEXIO_EXPORT FileInfo { public: static const QString mimetypeOctetStream; static const QString mimetypeHTML; static const QString mimetypeBibTeX; static const QString mimetypeRIS; static const QString mimetypePDF; enum TestExistence { TestExistenceYes, ///< Test if file exists TestExistenceNo ///< Skip test if file exists }; /** * Finds a QMimeType with the given url. * Tries to guess a file's mime type by its extension first, * but falls back to QMimeType's mimeTypeForName if that does * not work. Background: If a HTTP or WebDAV server claims * that a .bib file is of mime type application/octet-stream, * QMimeType::mimeTypeForName will keep that assessment * instead of inspecting the file extension. * * @see QMimeType::mimeTypeForName * @param url Url to analyze * @return Guessed mime type */ static QMimeType mimeTypeForUrl(const QUrl &url); /** * Find all file or URL references in the given text. Found filenames or * URLs are appended to the addTo list (duplicates are avoided). * Different test may get performed depending of the test for existence * of a potential file should be checked or not checked or if this matter * is undecided/irrelevant (recommended default case). For the test of * existence, baseDirectory is used to resolve relative paths. * @param text text to scan for filenames or URLs * @param testExistence shall be tested for file existence? * @param baseDirectory base directory for tests on relative path names * @param addTo add found URLs/filenames to this list */ static void urlsInText(const QString &text, TestExistence testExistence, const QString &baseDirectory, QList<QUrl> &addTo); /** * Find all file or URL references in the given entry. Found filenames or * URLs are appended to the addTo list (duplicates are avoided). * Different test may get performed depending of the test for existence * of a potential file should be checked or not checked or if this matter * is undecided/irrelevant (recommended default case). For the test of * existence, bibTeXUrl is used to resolve relative paths. * @param entry entry to scan for filenames or URLs * @param bibTeXUrl base directory/URL for tests on relative path names * @param testExistence shall be tested for file existence? * @return list of found URLs/filenames (duplicates are avoided) */ static QList<QUrl> entryUrls(const QSharedPointer<const Entry> &entry, const QUrl &bibTeXUrl, TestExistence testExistence); /** * Load the given PDF file and return the contained plain text. * Makes use of Poppler to load and parse the file. All text * will be cached and loaded from cache if possible. * @param pdfFilename PDF file to load and extract text from * @return extracted plain text, either directly from PDF file or from cache OR QString() if there was an error */ static QString pdfToText(const QString &pdfFilename); static QString doiUrlPrefix(); protected: FileInfo(); private: static void extractPDFTextToCache(const QString &pdfFilename, const QString &cacheFilename); }; #endif // KBIBTEX_IO_FILEINFO_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/logging_io.cpp�����������������������������������������������������������������0000664�0000000�0000000�00000002434�13313000262�0017160�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_io.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_IO, "kbibtex.io") ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/logging_io.h�������������������������������������������������������������������0000664�0000000�0000000�00000002576�13313000262�0016634�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_IO_LOGGING_IO_H #define KBIBTEX_IO_LOGGING_IO_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_IO) #endif // KBIBTEX_IO_LOGGING_IO_H ����������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/textencoder.cpp����������������������������������������������������������������0000664�0000000�0000000�00000011401�13313000262�0017361�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "textencoder.h" #include <QStringList> #include <QTextCodec> #include <QDebug> #include "logging_io.h" #include "encoderlatex.h" TextEncoder::TextEncoder() { /// nothing } QByteArray TextEncoder::encode(const QString &input, const QString &destinationEncoding) { QTextCodec *destinationCodec(QTextCodec::codecForName(destinationEncoding.toLatin1())); return encode(input, destinationCodec); } QByteArray TextEncoder::encode(const QString &input, const QTextCodec *destinationCodec) { /// Invalid codec? Cannot do anything if (destinationCodec == nullptr) return QByteArray(); /// Perform Canonical Decomposition followed by Canonical Composition const QString ninput = input.normalized(QString::NormalizationForm_C); QByteArray result; const Encoder &laTeXEncoder = EncoderLaTeX::instance(); /// Build result, character by character for (const QChar &c : ninput) { /// Get byte sequence representing current character in chosen codec const QByteArray cba = destinationCodec->fromUnicode(c); if (destinationCodec->canEncode(c) && (c == QChar(0x003f /** question mark */) || cba.size() != 1 || cba[0] != 0x3f /** question mark */)) { /// Codec claims that it can encode current character, but some codecs /// still cannot encode character and simply return a question mark, so /// only accept question marks as encoding result if original character /// was question mark (assuming all codecs can encode question marks). result.append(cba); } else { /// Chosen codec can NOT encode current Unicode character, so try to use /// 'LaTeX encoder', which may translate 0x00c5 (A with ring above) into /// '\AA'. LaTeX encoder returns UTF-8 representation if given character /// cannot be encoded result.append(laTeXEncoder.encode(QString(c), Encoder::TargetEncodingASCII).toUtf8()); } } return result; } const QStringList TextEncoder::encodings = QStringList() /// the classics << QStringLiteral("US-ASCII") /** effectively like 'LaTeX' encoding */ /// ISO 8859 a.k.a. Latin codecs << QStringLiteral("ISO-8859-1") << QStringLiteral("ISO-8859-2") << QStringLiteral("ISO-8859-3") << QStringLiteral("ISO-8859-4") << QStringLiteral("ISO-8859-5") << QStringLiteral("ISO-8859-6") << QStringLiteral("ISO-8859-7") << QStringLiteral("ISO-8859-8") << QStringLiteral("ISO-8859-9") << QStringLiteral("ISO-8859-10") << QStringLiteral("ISO-8859-13") << QStringLiteral("ISO-8859-14") << QStringLiteral("ISO-8859-15") << QStringLiteral("ISO-8859-16") /// various Unicode codecs << QStringLiteral("UTF-8") << QStringLiteral("UTF-16") << QStringLiteral("UTF-16BE") << QStringLiteral("UTF-16LE") << QStringLiteral("UTF-32") << QStringLiteral("UTF-32BE") << QStringLiteral("UTF-32LE") /// various Cyrillic codecs << QStringLiteral("KOI8-R") << QStringLiteral("KOI8-U") /// various CJK codecs << QStringLiteral("Big5") << QStringLiteral("Big5-HKSCS") << QStringLiteral("GB18030") << QStringLiteral("EUC-JP") << QStringLiteral("EUC-KR") << QStringLiteral("ISO 2022-JP") << QStringLiteral("Shift-JIS") /// Windows codecs << QStringLiteral("Windows-1250") << QStringLiteral("Windows-1251") << QStringLiteral("Windows-1252") << QStringLiteral("Windows-1253") << QStringLiteral("Windows-1254") << QStringLiteral("Windows-1255") << QStringLiteral("Windows-1256") << QStringLiteral("Windows-1257") << QStringLiteral("Windows-1258"); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/textencoder.h������������������������������������������������������������������0000664�0000000�0000000�00000004310�13313000262�0017027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_TEXTENCODER_H #define KBIBTEX_TEXTENCODER_H #include "kbibtexio_export.h" class QString; class QByteArray; class QStringList; class QTextCodec; /** * This class is a specialized wrapper around QTextCodec. It will try to encode * all characters not supported by the chosen encoding using the special * "LaTeX" encoding. * Example: When choosing encoding "iso8859-1" (aka Latin-1), you can encode * a-umlaut (a with two dots above), but not en-dash. Therefore, the en-dash * will be rewritten as "--" which is the LaTeX way to write this character. * On the other side, a-umlaut can be kept. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT TextEncoder { public: static QByteArray encode(const QString &input, const QString &destinationEncoding); static QByteArray encode(const QString &input, const QTextCodec *destinationCodec); static const QStringList encodings; private: explicit TextEncoder(); }; #endif // KBIBTEX_TEXTENCODER_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/xsltransform.cpp���������������������������������������������������������������0000664�0000000�0000000�00000005646�13313000262�0017615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "xsltransform.h" #include <QFileInfo> #include <QXmlQuery> #include <QBuffer> #include <QDebug> #include "logging_io.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ XSLTransform::XSLTransform(const QString &xsltFilename) : xsltData(nullptr) { if (!xsltFilename.isEmpty()) { QFile xsltFile(xsltFilename); if (xsltFile.open(QFile::ReadOnly)) { xsltData = new QByteArray(xsltFile.readAll()); xsltFile.close(); if (xsltData->size() == 0) { qWarning() << "Read only 0 Bytes from file" << xsltFilename; delete xsltData; xsltData = nullptr; } } else qWarning() << "Opening XSLT file" << xsltFilename << "failed"; } else qWarning() << "Empty filename for XSLT"; } XSLTransform::~XSLTransform() { if (xsltData != nullptr) delete xsltData; } QString XSLTransform::transform(const QString &xmlText) const { if (xsltData == nullptr) { qWarning() << "Empty XSL transformation cannot transform"; return QString(); } QXmlQuery query(QXmlQuery::XSLT20); if (!query.setFocus(xmlText)) { qWarning() << "Invoking QXmlQuery::setFocus(" << xmlText.left(32) << "...) failed"; return QString(); } QBuffer xsltBuffer(xsltData); xsltBuffer.open(QBuffer::ReadOnly); query.setQuery(&xsltBuffer); if (!query.isValid()) { qWarning() << "QXmlQuery::isValid got negative result"; return QString(); } QString result; if (query.evaluateTo(&result)) { return result; } else { qWarning() << "Invoking QXmlQuery::evaluateTo(...) failed"; return QString(); } } ������������������������������������������������������������������������������������������kbibtex-0.8.1/src/io/xsltransform.h�����������������������������������������������������������������0000664�0000000�0000000�00000004077�13313000262�0017257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_XSLTRANSFORM_H #define KBIBTEX_XSLTRANSFORM_H #include "kbibtexio_export.h" #include <QString> class QXmlQuery; class QByteArray; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXIO_EXPORT XSLTransform { public: /** * Create a new instance of a transformer. * @param xsltFilename file name of the XSL file */ explicit XSLTransform(const QString &xsltFilename); ~XSLTransform(); XSLTransform(const XSLTransform &other) = delete; XSLTransform &operator= (const XSLTransform &other) = delete; /** * Transform a given XML document using the tranformer's * XSL file. * @param xmlText XML document to transform * @return transformed document */ QString transform(const QString &xmlText) const; private: QByteArray *xsltData; }; #endif // KBIBTEX_XSLTRANSFORM_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/�����������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0016114�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/CMakeLists.txt���������������������������������������������������������0000664�0000000�0000000�00000007760�13313000262�0020666�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Network library set( kbibtexnetworking_LIB_SRCS onlinesearch/onlinesearchabstract.cpp onlinesearch/onlinesearchbibsonomy.cpp onlinesearch/onlinesearcharxiv.cpp onlinesearch/onlinesearchsciencedirect.cpp onlinesearch/onlinesearchgooglescholar.cpp onlinesearch/onlinesearchieeexplore.cpp onlinesearch/onlinesearchpubmed.cpp onlinesearch/onlinesearchacmportal.cpp onlinesearch/onlinesearchspringerlink.cpp onlinesearch/onlinesearchjstor.cpp onlinesearch/onlinesearchmathscinet.cpp onlinesearch/onlinesearchmrlookup.cpp onlinesearch/onlinesearchinspirehep.cpp onlinesearch/onlinesearchcernds.cpp onlinesearch/onlinesearchingentaconnect.cpp onlinesearch/onlinesearchsimplebibtexdownload.cpp onlinesearch/onlinesearchgeneral.cpp onlinesearch/onlinesearchsoanasaads.cpp # onlinesearch/onlinesearchisbndb.cpp # disabled as provider switched to a paid model on 2017-12-26 onlinesearch/onlinesearchideasrepec.cpp onlinesearch/onlinesearchdoi.cpp onlinesearch/onlinesearchbiorxiv.cpp associatedfiles.cpp findpdf.cpp internalnetworkaccessmanager.cpp ${CMAKE_SOURCE_DIR}/src/global/kbibtex.cpp logging_networking.cpp ) if(BUILD_ZOTERO) list( APPEND kbibtexnetworking_LIB_SRCS zotero/api.cpp zotero/collectionmodel.cpp zotero/collection.cpp zotero/items.cpp zotero/groups.cpp zotero/oauthwizard.cpp zotero/tags.cpp zotero/tagmodel.cpp ) endif(BUILD_ZOTERO) set( kbibtexnetworking_HDRS onlinesearch/onlinesearchgeneral.h onlinesearch/onlinesearchsciencedirect.h onlinesearch/onlinesearchabstract.h onlinesearch/onlinesearchacmportal.h onlinesearch/onlinesearchbibsonomy.h onlinesearch/onlinesearchgooglescholar.h onlinesearch/onlinesearchspringerlink.h onlinesearch/onlinesearchjstor.h onlinesearch/onlinesearchieeexplore.h onlinesearch/onlinesearcharxiv.h onlinesearch/onlinesearchpubmed.h onlinesearch/onlinesearchingentaconnect.h onlinesearch/onlinesearchsimplebibtexdownload.h onlinesearch/onlinesearchsoanasaads.h onlinesearch/onlinesearchmathscinet.h onlinesearch/onlinesearchmrlookup.h onlinesearch/onlinesearchinspirehep.h onlinesearch/onlinesearchcernds.h onlinesearch/onlinesearchisbndb.h onlinesearch/onlinesearchideasrepec.h onlinesearch/onlinesearchdoi.h onlinesearch/onlinesearchbiorxiv.h zotero/collectionmodel.h zotero/collection.h zotero/groups.h zotero/tags.h zotero/tagmodel.h zotero/items.h zotero/api.h zotero/oauthwizard.h associatedfiles.h findpdf.h internalnetworkaccessmanager.h ) if(UNITY_BUILD) enable_unity_build(kbibtexnetworking kbibtexnetworking_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/networking/onlinesearch ${CMAKE_SOURCE_DIR}/src/networking ${CMAKE_SOURCE_DIR}/src/global ) add_library( kbibtexnetworking SHARED ${kbibtexnetworking_LIB_SRCS} ) target_link_libraries( kbibtexnetworking Qt5::Core Qt5::Widgets Qt5::Network KF5::I18n KF5::XmlGui KF5::Completion KF5::KIOCore KF5::KIOFileWidgets KF5::KIOWidgets KF5::KIONTLM KF5::Wallet kbibtexconfig kbibtexdata kbibtexio Poppler::Qt5 ) if(BUILD_ZOTERO) include_directories( ${QTOAUTH_INCLUDE_DIR} ) target_link_libraries( kbibtexnetworking qca-qt5 ${QTOAUTH_LIBRARY} ) endif(BUILD_ZOTERO) set_target_properties( kbibtexnetworking PROPERTIES EXPORT_NAME "kbibtexnetworking" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexnetworking ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexnetworking ) ����������������kbibtex-0.8.1/src/networking/associatedfiles.cpp����������������������������������������������������0000664�0000000�0000000�00000022333�13313000262�0021765�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "associatedfiles.h" #include <QFileInfo> #include <QDir> #include <KIO/CopyJob> #include <KJobWidgets> #include "logging_networking.h" bool AssociatedFiles::urlIsLocal(const QUrl &url) { // FIXME same function as in UrlListEdit; move to common code base? const QString scheme = url.scheme(); /// Test various schemes such as "http", "https", "ftp", ... return !scheme.startsWith(QStringLiteral("http")) && !scheme.startsWith(QStringLiteral("ftp")) && !scheme.startsWith(QStringLiteral("sftp")) && !scheme.startsWith(QStringLiteral("fish")) && !scheme.startsWith(QStringLiteral("webdav")) && scheme != QStringLiteral("smb"); } QString AssociatedFiles::relativeFilename(const QUrl &documentUrl, const QUrl &baseUrl) { if (documentUrl.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "document URL has to point to a file location or URL"; return documentUrl.url(QUrl::PreferLocalFile); } if (baseUrl.isEmpty() || baseUrl.isRelative()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "base URL has to point to an absolute file location or URL"; return documentUrl.url(QUrl::PreferLocalFile); } if (documentUrl.scheme() != baseUrl.scheme() || (documentUrl.scheme() != QStringLiteral("file") && documentUrl.host() != baseUrl.host())) { qCWarning(LOG_KBIBTEX_NETWORKING) << "document URL and base URL do not match (protocol, host, ...)"; return documentUrl.url(QUrl::PreferLocalFile); } /// First, resolve the provided document URL to an absolute URL /// using the given base URL QUrl internalDocumentUrl = documentUrl; if (internalDocumentUrl.isRelative()) internalDocumentUrl = baseUrl.resolved(internalDocumentUrl); /// Get the absolute path of the base URL const QString baseUrlDirectory = QFileInfo(baseUrl.path()).absolutePath(); /// Let QDir calculate the relative directory return QDir(baseUrlDirectory).relativeFilePath(internalDocumentUrl.path()); } QString AssociatedFiles::absoluteFilename(const QUrl &documentUrl, const QUrl &baseUrl) { if (documentUrl.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "document URL has to point to a file location or URL"; return documentUrl.url(QUrl::PreferLocalFile); } if (documentUrl.isRelative() && (baseUrl.isEmpty() || baseUrl.isRelative())) { qCWarning(LOG_KBIBTEX_NETWORKING) << "base URL has to point to an absolute file location or URL if the document URL is relative"; return documentUrl.url(QUrl::PreferLocalFile); } if (documentUrl.isRelative() && (documentUrl.scheme() != baseUrl.scheme() || (documentUrl.scheme() != QStringLiteral("file") && documentUrl.host() != baseUrl.host()))) { qCWarning(LOG_KBIBTEX_NETWORKING) << "document URL and base URL do not match (protocol, host, ...), but necessary if the document URL is relative"; return documentUrl.url(QUrl::PreferLocalFile); } /// Resolve the provided document URL to an absolute URL /// using the given base URL QUrl internalDocumentUrl = documentUrl; if (internalDocumentUrl.isRelative()) internalDocumentUrl = baseUrl.resolved(internalDocumentUrl); return internalDocumentUrl.url(QUrl::PreferLocalFile); } QString AssociatedFiles::associateDocumentURL(const QUrl &document, QSharedPointer<Entry> &entry, const File *bibTeXFile, PathType pathType, const bool dryRun) { Q_ASSERT(bibTeXFile != nullptr); // FIXME more graceful? const QUrl baseUrl = bibTeXFile->property(File::Url).toUrl(); if (baseUrl.isEmpty() && pathType == ptRelative) { /// If no base URL was given but still a relative path was requested, /// revert choice and enforce the generation of an absolute one pathType = ptAbsolute; } const bool isLocal = urlIsLocal(document); const QString field = isLocal ? Entry::ftLocalFile : Entry::ftUrl; QString finalUrl = pathType == ptAbsolute ? absoluteFilename(document, baseUrl) : relativeFilename(document, baseUrl); if (!dryRun) { /// only if not pretending bool alreadyContained = false; for (QMap<QString, Value>::ConstIterator it = entry->constBegin(); !alreadyContained && it != entry->constEnd(); ++it) { const Value v = it.value(); for (Value::ConstIterator vit = v.constBegin(); !alreadyContained && vit != v.constEnd(); ++vit) { if (PlainTextValue::text(*vit) == finalUrl) alreadyContained = true; } } if (!alreadyContained) { Value value = entry->value(field); value.append(QSharedPointer<VerbatimText>(new VerbatimText(finalUrl))); entry->insert(field, value); } } return finalUrl; } QString AssociatedFiles::associateDocumentURL(const QUrl &document, const File *bibTeXFile, PathType pathType) { Q_ASSERT(bibTeXFile != nullptr); // FIXME more graceful? const QUrl baseUrl = bibTeXFile->property(File::Url).toUrl(); if (baseUrl.isEmpty() && pathType == ptRelative) { /// If no base URL was given but still a relative path was requested, /// revert choice and enforce the generation of an absolute one pathType = ptAbsolute; } QString finalUrl = pathType == ptAbsolute ? absoluteFilename(document, baseUrl) : relativeFilename(document, baseUrl); return finalUrl; } QUrl AssociatedFiles::copyDocument(const QUrl &sourceUrl, const QString &entryId, const File *bibTeXFile, RenameOperation renameOperation, MoveCopyOperation moveCopyOperation, QWidget *widget, const QString &userDefinedFilename, const bool dryRun) { Q_ASSERT(bibTeXFile != nullptr); // FIXME more graceful? if (moveCopyOperation == mcoNoCopyMove) return sourceUrl; /// nothing to do if no move or copy requested if (entryId.isEmpty() && renameOperation == roEntryId) { /// If no entry id was given but still a rename after entry id was requested, /// revert choice and enforce keeping the original name renameOperation = roKeepName; } const QUrl baseUrl = bibTeXFile->property(File::Url).toUrl(); const QUrl internalSourceUrl = baseUrl.resolved(sourceUrl); const QFileInfo internalSourceInfo(internalSourceUrl.path()); QString filename = internalSourceInfo.fileName(); QString suffix = internalSourceInfo.suffix(); if (suffix.isEmpty()) { suffix = QStringLiteral("html"); filename.append(QLatin1Char('.')).append(suffix); } if (filename.isEmpty()) filename = internalSourceUrl.url(QUrl::PreferLocalFile).remove(QDir::separator()).remove(QLatin1Char('/')).remove(QLatin1Char(':')).remove(QLatin1Char('.')) + QStringLiteral(".") + suffix; if (!bibTeXFile->hasProperty(File::Url)) return QUrl(); /// no valid URL set of BibTeX file object QUrl targetUrl = bibTeXFile->property(File::Url).toUrl(); if (targetUrl.isEmpty()) return QUrl(); /// no valid URL set of BibTeX file object const QString targetPath = QFileInfo(targetUrl.path()).absolutePath(); targetUrl.setPath(targetPath + QDir::separator() + (renameOperation == roEntryId ? entryId + QStringLiteral(".") + suffix : (renameOperation == roUserDefined ? userDefinedFilename : filename))); if (!dryRun) { /// only if not pretending bool success = true; if (urlIsLocal(internalSourceUrl) && urlIsLocal(targetUrl)) { QFile(targetUrl.path()).remove(); success &= QFile::copy(internalSourceUrl.path(), targetUrl.path()); // FIXME check if succeeded if (moveCopyOperation == mcoMove) { success &= QFile(internalSourceUrl.path()).remove(); } } else { // FIXME non-blocking KIO::CopyJob *moveCopyJob = moveCopyOperation == mcoMove ? KIO::move(sourceUrl, targetUrl, KIO::HideProgressInfo | KIO::Overwrite) : KIO::copy(sourceUrl, targetUrl, KIO::HideProgressInfo | KIO::Overwrite); KJobWidgets::setWindow(moveCopyJob, widget); success &= moveCopyJob->exec(); } if (!success) return QUrl(); ///< either copy/move or delete operation failed } return targetUrl; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/associatedfiles.h������������������������������������������������������0000664�0000000�0000000�00000011110�13313000262�0021421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ASSOCIATEDFILES_H #define KBIBTEX_NETWORKING_ASSOCIATEDFILES_H #include <QUrl> #include "entry.h" class QWidget; class File; #include "kbibtexnetworking_export.h" /** * Given a remote or local filename/URL, this class will, (1) at the user's * discretion, move or copy this file next to the bibliography's file into * the same directory, (2) rename the copied file (again, at the user's * discretion) to either match the corresponding entry's id or follow a name * provided by the user and (3) modify the entry to include a reference * (either relative or absolute path) to the newly moved/copied file or its * original filename/URL. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT AssociatedFiles { public: enum PathType { ptAbsolute = 0, ///< Use absolute filenames/paths if possible ptRelative = 1 ///< Use relative filenames/paths if possible }; enum RenameOperation { roKeepName = 0, ///< Do not rename a file roEntryId = 1, ///< Rename the file following the entry's id roUserDefined = 2 ///< Rename after a string provided by the user }; enum MoveCopyOperation { mcoNoCopyMove = 0, ///< Do not move or copy a file, use a reference only mcoCopy = 1, ///< Copy the file next to the bibiliograpy file mcoMove = 2 /// Same as copy, but delete original }; /** * Test if a given URL points to a local file or a remote location. * @param url URL to test * @return true if the URL points to a local file */ static bool urlIsLocal(const QUrl &url); /** * Translate a given URL of a document (e.g. a PDF file) to a string * representation pointing to the relative location of this document. * A "base URL", i.e. the bibliography's file location has to provided to * calculate the relative location of the document. * "Upwards relativity" (i.e. paths containing "..") is not supported for this * functions output; in this case, an absolute path will be generated as fallback. * @param document The document's URL * @param baseUrl The base URL * @return The document URL's string representation relative to the base URL */ static QString relativeFilename(const QUrl &document, const QUrl &baseUrl); /** * Translate a given URL of a document (e.g. a PDF file) to a string * representation pointing to the absolute location of this document. * A "base URL", i.e. the bibliography's file location may be provided to * resolve relative document URLs * @param document The document's URL * @param baseUrl The base URL * @return The document URL's string representation in absolute form */ static QString absoluteFilename(const QUrl &document, const QUrl &baseUrl); static QString associateDocumentURL(const QUrl &document, QSharedPointer<Entry> &entry, const File *bibTeXFile, PathType pathType, const bool dryRun = false); static QString associateDocumentURL(const QUrl &document, const File *bibTeXFile, PathType pathType); static QUrl copyDocument(const QUrl &document, const QString &entryId, const File *bibTeXFile, RenameOperation renameOperation, MoveCopyOperation moveCopyOperation, QWidget *widget, const QString &userDefinedFilename = QString(), const bool dryRun = false); }; #endif // KBIBTEX_NETWORKING_ASSOCIATEDFILES_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/findpdf.cpp������������������������������������������������������������0000664�0000000�0000000�00000051100�13313000262�0020227�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "findpdf.h" #include <QNetworkReply> #include <QNetworkRequest> #include <QRegExp> #include <QRegularExpression> #include <QApplication> #include <QTemporaryFile> #include <QUrlQuery> #include <QStandardPaths> #include <QDir> #include <poppler-qt5.h> #include "kbibtex.h" #include "internalnetworkaccessmanager.h" #include "value.h" #include "fileinfo.h" #include "logging_networking.h" int maxDepth = 5; static const char *depthProperty = "depth"; static const char *termProperty = "term"; static const char *originProperty = "origin"; class FindPDF::Private { private: FindPDF *p; public: int aliveCounter; QList<ResultItem> result; Entry currentEntry; QSet<QUrl> knownUrls; QSet<QNetworkReply *> runningDownloads; Private(FindPDF *parent) : p(parent), aliveCounter(0) { /// nothing } bool queueUrl(const QUrl &url, const QString &term, const QString &origin, int depth) { if (!knownUrls.contains(url) && depth > 0) { knownUrls.insert(url); QNetworkRequest request = QNetworkRequest(url); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply, 15); ///< set a timeout on network connections reply->setProperty(depthProperty, QVariant::fromValue<int>(depth)); reply->setProperty(termProperty, term); reply->setProperty(originProperty, origin); runningDownloads.insert(reply); connect(reply, &QNetworkReply::finished, p, &FindPDF::downloadFinished); ++aliveCounter; return true; } else return false; } void processGeneralHTML(QNetworkReply *reply, const QString &text) { /// fetch some properties from Reply object const QString term = reply->property(termProperty).toString(); const QString origin = reply->property(originProperty).toString(); bool ok = false; int depth = reply->property(depthProperty).toInt(&ok); if (!ok) depth = 0; /// regular expressions to guess links to follow static const QRegExp anchorRegExp[5] = { QRegExp(QString(QStringLiteral("<a[^>]*href=\"([^\"]*%1[^\"]*[.]pdf)\"")).arg(QRegExp::escape(term)), Qt::CaseInsensitive), QRegExp(QString(QStringLiteral("<a[^>]*href=\"([^\"]+)\"[^>]*>[^<]*%1[^<]*[.]pdf")).arg(QRegExp::escape(term)), Qt::CaseInsensitive), QRegExp(QString(QStringLiteral("<a[^>]*href=\"([^\"]*%1[^\"]*)\"")).arg(QRegExp::escape(term)), Qt::CaseInsensitive), QRegExp(QString(QStringLiteral("<a[^>]*href=\"([^\"]+)\"[^>]*>[^<]*%1[^<]*\\b")).arg(QRegExp::escape(term)), Qt::CaseInsensitive), QRegExp(QStringLiteral("<a[^>]*href=\"([^\"]+)\""), Qt::CaseInsensitive) /// any link }; bool gotLink = false; for (int i = 0; !gotLink && i < 4; ++i) { if (anchorRegExp[i].indexIn(text) >= 0) { const QUrl url = QUrl::fromEncoded(anchorRegExp[i].cap(1).toLatin1()); queueUrl(reply->url().resolved(url), term, origin, depth - 1); gotLink = true; } } if (!gotLink && text.count(anchorRegExp[4]) == 1) { /// this is only the last resort: /// to follow the first link found in the HTML document if (anchorRegExp[4].indexIn(text) >= 0) { const QUrl url = QUrl::fromEncoded(anchorRegExp[4].cap(1).toLatin1()); queueUrl(reply->url().resolved(url), term, origin, depth - 1); } } } void processGoogleResult(QNetworkReply *reply, const QString &text) { static const QString h3Tag(QStringLiteral("<h3")); static const QString aTag(QStringLiteral("<a")); static const QString hrefAttrib(QStringLiteral("href=\"")); const QString term = reply->property(termProperty).toString(); bool ok = false; int depth = reply->property(depthProperty).toInt(&ok); if (!ok) depth = 0; /// extract the first numHitsToFollow-many hits found by Google Scholar const int numHitsToFollow = 10; int p = -1; for (int i = 0; i < numHitsToFollow; ++i) { if ((p = text.indexOf(h3Tag, p + 1)) >= 0 && (p = text.indexOf(aTag, p + 1)) >= 0 && (p = text.indexOf(hrefAttrib, p + 1)) >= 0) { int p1 = p + 6; int p2 = text.indexOf(QLatin1Char('"'), p1 + 1); QUrl url(text.mid(p1, p2 - p1)); const QString googleService = reply->url().host().contains(QStringLiteral("scholar.google")) ? QStringLiteral("scholar.google") : QStringLiteral("www.google"); queueUrl(reply->url().resolved(url), term, googleService, depth - 1); } } } void processSpringerLink(QNetworkReply *reply, const QString &text) { static const QRegExp fulltextPDFlink(QStringLiteral("href=\"([^\"]+/fulltext.pdf)\"")); if (fulltextPDFlink.indexIn(text) > 0) { bool ok = false; int depth = reply->property(depthProperty).toInt(&ok); if (!ok) depth = 0; QUrl url(fulltextPDFlink.cap(1)); queueUrl(reply->url().resolved(url), QString(), QStringLiteral("springerlink"), depth - 1); } } void processCiteSeerX(QNetworkReply *reply, const QString &text) { static const QRegExp downloadPDFlink(QStringLiteral("href=\"(/viewdoc/download[^\"]+type=pdf)\"")); if (downloadPDFlink.indexIn(text) > 0) { bool ok = false; int depth = reply->property(depthProperty).toInt(&ok); if (!ok) depth = 0; QUrl url(QUrl::fromEncoded(downloadPDFlink.cap(1).toLatin1())); queueUrl(reply->url().resolved(url), QString(), QStringLiteral("citeseerx"), depth - 1); } } void processACMDigitalLibrary(QNetworkReply *reply, const QString &text) { static const QRegExp downloadPDFlink(QStringLiteral("href=\"(ft_gateway.cfm\\?id=\\d+&ftid=\\d+&dwn=1&CFID=\\d+&CFTOKEN=\\d+)\"")); qCDebug(LOG_KBIBTEX_NETWORKING) << "processACMDigitalLibrary " << downloadPDFlink.pattern(); if (downloadPDFlink.indexIn(text) > 0) { qCDebug(LOG_KBIBTEX_NETWORKING) << "processACMDigitalLibrary " << downloadPDFlink.cap(1); bool ok = false; int depth = reply->property(depthProperty).toInt(&ok); if (!ok) depth = 0; QUrl url(QUrl::fromEncoded(QString(QStringLiteral("https://dl.acm.org/") + downloadPDFlink.cap(1)).toLatin1())); queueUrl(reply->url().resolved(url), QString(), QStringLiteral("acmdl"), depth - 1); } } bool processPDF(QNetworkReply *reply, const QByteArray &data) { bool progress = false; const QString origin = reply->property(originProperty).toString(); const QUrl url = reply->url(); /// Search for duplicate URLs bool containsUrl = false; for (const ResultItem &ri : const_cast<const QList<ResultItem> &>(result)) { containsUrl |= ri.url == url; /// Skip already visited URLs if (containsUrl) break; } if (!containsUrl) { Poppler::Document *doc = Poppler::Document::loadFromData(data); ResultItem resultItem; resultItem.tempFilename = new QTemporaryFile(QStandardPaths::writableLocation(QStandardPaths::TempLocation) + QDir::separator() + QStringLiteral("kbibtex_findpdf_XXXXXX.pdf")); resultItem.tempFilename->setAutoRemove(true); if (resultItem.tempFilename->open()) { const int lenDataWritten = resultItem.tempFilename->write(data); resultItem.tempFilename->close(); if (lenDataWritten != data.length()) { /// Failed to write to temporary file qCWarning(LOG_KBIBTEX_NETWORKING) << "Failed to write to temporary file for filename" << resultItem.tempFilename->fileName(); delete resultItem.tempFilename; resultItem.tempFilename = nullptr; } } else { /// Failed to create temporary file qCWarning(LOG_KBIBTEX_NETWORKING) << "Failed to create temporary file for templaet" << resultItem.tempFilename->fileTemplate(); delete resultItem.tempFilename; resultItem.tempFilename = nullptr; } resultItem.url = url; resultItem.textPreview = doc->info(QStringLiteral("Title")).simplified(); static const int maxTextLen = 1024; for (int i = 0; i < doc->numPages() && resultItem.textPreview.length() < maxTextLen; ++i) { Poppler::Page *page = doc->page(i); if (!resultItem.textPreview.isEmpty()) resultItem.textPreview += QLatin1Char(' '); resultItem.textPreview += page->text(QRect()).simplified().leftRef(maxTextLen); delete page; } resultItem.textPreview.remove(QStringLiteral("Microsoft Word - ")); ///< Some word processors need to put their name everywhere ... resultItem.downloadMode = NoDownload; resultItem.relevance = origin == Entry::ftDOI ? 1.0 : (origin == QStringLiteral("eprint") ? 0.75 : 0.5); result << resultItem; progress = true; delete doc; } return progress; } QUrl ieeeDocumentUrlToDownloadUrl(const QUrl &url) { /// Basic checking if provided URL is from IEEE Xplore if (!url.host().contains(QStringLiteral("ieeexplore.ieee.org"))) return url; /// Assuming URL looks like this: /// http://ieeexplore.ieee.org/document/8092651/ static const QRegularExpression documentIdRegExp(QStringLiteral("/(\\d{6,})/$")); const QRegularExpressionMatch documentIdRegExpMatch = documentIdRegExp.match(url.path()); if (!documentIdRegExpMatch.hasMatch()) return url; /// Use document id extracted above to build URL to PDF file return QUrl(QStringLiteral("http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=") + documentIdRegExpMatch.captured(1)); } }; FindPDF::FindPDF(QObject *parent) : QObject(parent), d(new Private(this)) { /// nothing } FindPDF::~FindPDF() { abort(); delete d; } bool FindPDF::search(const Entry &entry) { if (d->aliveCounter > 0) return false; d->knownUrls.clear(); d->result.clear(); d->currentEntry = entry; emit progress(0, d->aliveCounter, 0); /// Generate a string which contains the title's beginning QString searchWords; if (entry.contains(Entry::ftTitle)) { const QStringList titleChunks = PlainTextValue::text(entry.value(Entry::ftTitle)).split(QStringLiteral(" "), QString::SkipEmptyParts); if (!titleChunks.isEmpty()) { searchWords = titleChunks[0]; for (int i = 1; i < titleChunks.count() && searchWords.length() < 64; ++i) searchWords += QLatin1Char(' ') + titleChunks[i]; } } const QStringList authors = entry.authorsLastName(); for (int i = 0; i < authors.count() && searchWords.length() < 96; ++i) searchWords += QLatin1Char(' ') + authors[i]; searchWords.remove(QLatin1Char('{')).remove(QLatin1Char('}')); QStringList urlFields = QStringList() << Entry::ftDOI << Entry::ftUrl << QStringLiteral("ee"); for (int i = 2; i < 256; ++i) urlFields << QString(QStringLiteral("%1%2")).arg(Entry::ftDOI).arg(i) << QString(QStringLiteral("%1%2")).arg(Entry::ftUrl).arg(i); for (const QString &field : const_cast<const QStringList &>(urlFields)) { if (entry.contains(field)) { const QString fieldText = PlainTextValue::text(entry.value(field)); int p = -1; while ((p = KBibTeX::doiRegExp.indexIn(fieldText, p + 1)) >= 0) d->queueUrl(QUrl(FileInfo::doiUrlPrefix() + KBibTeX::doiRegExp.cap(0)), fieldText, Entry::ftDOI, maxDepth); p = -1; while ((p = KBibTeX::urlRegExp.indexIn(fieldText, p + 1)) >= 0) d->queueUrl(QUrl(KBibTeX::urlRegExp.cap(0)), searchWords, Entry::ftUrl, maxDepth); } } if (entry.contains(QStringLiteral("eprint"))) { /// check eprint fields as used for arXiv const QString eprintId = PlainTextValue::text(entry.value(QStringLiteral("eprint"))); if (!eprintId.isEmpty()) { const QUrl arxivUrl = QUrl::fromUserInput(QStringLiteral("http://arxiv.org/find/all/1/all:+") + eprintId + QStringLiteral("/0/1/0/all/0/1")); d->queueUrl(arxivUrl, eprintId, QStringLiteral("eprint"), maxDepth); } } if (!searchWords.isEmpty()) { /// Search in Google const QUrl googleUrl = QUrl::fromUserInput(QStringLiteral("https://www.google.com/search?hl=en&sa=G&q=filetype:pdf ") + searchWords); d->queueUrl(googleUrl, searchWords, QStringLiteral("www.google"), maxDepth); /// Search in Google Scholar const QUrl googleScholarUrl = QUrl::fromUserInput(QStringLiteral("https://scholar.google.com/scholar?hl=en&btnG=Search&as_sdt=1&q=filetype:pdf ") + searchWords); d->queueUrl(googleScholarUrl, searchWords, QStringLiteral("scholar.google"), maxDepth); /// Search in Bing const QUrl bingUrl = QUrl::fromUserInput(QStringLiteral("https://www.bing.com/search?setlang=en-US&q=filetype:pdf ") + searchWords); d->queueUrl(bingUrl, searchWords, QStringLiteral("bing"), maxDepth); /// Search in CiteSeerX const QUrl citeseerXurl = QUrl::fromUserInput(QStringLiteral("http://citeseerx.ist.psu.edu/search?submit=Search&sort=rlv&t=doc&q=") + searchWords); d->queueUrl(citeseerXurl, searchWords, QStringLiteral("citeseerx"), maxDepth); /// Search in StartPage const QUrl startPageUrl = QUrl::fromUserInput(QStringLiteral("https://www.startpage.com/do/asearch?cat=web&cmd=process_search&language=english&engine0=v1all&abp=-1&t=white&nj=1&prf=23ad6aab054a88d3da5c443280cee596&suggestOn=0&query=filetype:pdf ") + searchWords); d->queueUrl(startPageUrl, searchWords, QStringLiteral("startpage"), maxDepth); } if (d->aliveCounter == 0) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Directly at start, no URLs are queue for a search -> this should never happen"; emit finished(); } return true; } QList<FindPDF::ResultItem> FindPDF::results() { if (d->aliveCounter == 0) return d->result; else { /// Return empty list while search is running return QList<FindPDF::ResultItem>(); } } void FindPDF::abort() { QSet<QNetworkReply *>::Iterator it = d->runningDownloads.begin(); while (it != d->runningDownloads.end()) { QNetworkReply *reply = *it; it = d->runningDownloads.erase(it); reply->abort(); } } void FindPDF::downloadFinished() { static const char *htmlHead1 = "<html", *htmlHead2 = "<HTML", *htmlHead3 = "<!doctype html>" /** ACM Digital Library */; static const char *pdfHead = "%PDF-"; --d->aliveCounter; emit progress(d->knownUrls.count(), d->aliveCounter, d->result.count()); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); d->runningDownloads.remove(reply); const QString term = reply->property(termProperty).toString(); const QString origin = reply->property(originProperty).toString(); bool depthOk = false; int depth = reply->property(depthProperty).toInt(&depthOk); if (!depthOk) depth = 0; if (reply->error() == QNetworkReply::NoError) { const QByteArray data = reply->readAll(); QUrl redirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); redirUrl = redirUrl.isEmpty() ? QUrl() : reply->url().resolved(redirUrl); qCDebug(LOG_KBIBTEX_NETWORKING) << "finished Downloading " << reply->url().toDisplayString() << " depth=" << depth << " d->aliveCounter=" << d->aliveCounter << " data.size=" << data.size() << " redirUrl=" << redirUrl.toDisplayString() << " origin=" << origin; if (!redirUrl.isEmpty()) { redirUrl = d->ieeeDocumentUrlToDownloadUrl(redirUrl); d->queueUrl(redirUrl, term, origin, depth - 1); } else if (data.contains(htmlHead1) || data.contains(htmlHead2) || data.contains(htmlHead3)) { /// returned data is a HTML file, i.e. contains "<html" /// check for limited depth before continuing if (depthOk && depth > 0) { /// Get webpage as plain text /// Assume UTF-8 data const QString text = QString::fromUtf8(data.constData()); /// regular expression to check if this is a Google Scholar result page static const QRegExp googleScholarTitleRegExp(QStringLiteral("<title>[^>]* - Google Scholar</title>")); /// regular expression to check if this is a SpringerLink page static const QRegExp springerLinkTitleRegExp(QStringLiteral("<title>[^>]* - Springer - [^>]*</title>")); /// regular expression to check if this is a CiteSeerX page static const QRegExp citeseerxTitleRegExp(QStringLiteral("<title>CiteSeerX &mdash; [^>]*</title>")); /// regular expression to check if this is a ACM Digital Library page static const QString acmDigitalLibraryString(QStringLiteral("The ACM Digital Library is published by the Association for Computing Machinery")); if (text.indexOf(googleScholarTitleRegExp) > 0) d->processGoogleResult(reply, text); else if (text.indexOf(springerLinkTitleRegExp) > 0) d->processSpringerLink(reply, text); else if (text.indexOf(citeseerxTitleRegExp) > 0) d->processCiteSeerX(reply, text); else if (text.contains(acmDigitalLibraryString)) d->processACMDigitalLibrary(reply, text); else { /// regular expression to extract title static QRegExp titleRegExp(QStringLiteral("<title>(.*)</title>")); titleRegExp.setMinimal(true); if (titleRegExp.indexIn(text) >= 0) qCDebug(LOG_KBIBTEX_NETWORKING) << "Using general HTML processor for page" << titleRegExp.cap(1) << " URL=" << reply->url().toDisplayString(); else qCDebug(LOG_KBIBTEX_NETWORKING) << "Using general HTML processor for URL=" << reply->url().toDisplayString(); d->processGeneralHTML(reply, text); } } } else if (data.contains(pdfHead)) { /// looks like a PDF file -> grab it const bool gotPDFfile = d->processPDF(reply, data); if (gotPDFfile) emit progress(d->knownUrls.count(), d->aliveCounter, d->result.count()); } else { /// Assume UTF-8 data const QString text = QString::fromUtf8(data.constData()); qCWarning(LOG_KBIBTEX_NETWORKING) << "don't know how to handle " << text.left(256); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "error from reply: " << reply->errorString() << "(" << reply->url().toDisplayString() << ")" << " term=" << term << " origin=" << origin << " depth=" << depth; if (d->aliveCounter == 0) { /// no more running downloads left emit finished(); } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/findpdf.h��������������������������������������������������������������0000664�0000000�0000000�00000007677�13313000262�0017720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_FINDPDF_H #define KBIBTEX_NETWORKING_FINDPDF_H #include "kbibtexnetworking_export.h" #include <QObject> #include <QList> #include <QSet> #include <QUrl> #include "entry.h" class QNetworkAccessManager; class QNetworkReply; class QTemporaryFile; /** * Search known Internet resources (search engines) for PDF files * matching a given bibliography entry. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT FindPDF : public QObject { Q_OBJECT public: /// Used in a later stage (user interface, @see FindPDFUI); /// tells the system if ... enum DownloadMode { NoDownload = 0, ///< Ignore this result item (no PDF file downloading) Download, ///< Download and store this PDF file in a user-specified location URLonly ///< Keep only the URL of the PDF; this URL will be inserted in the bib entry }; /// Structure to store data about every found PDF (potential search hit) typedef struct { QUrl url; ///< Where has this PDF been found? QString textPreview; ///< Text extracted from the PDF file QTemporaryFile *tempFilename; ///< Local temporary copy float relevance; /// Assessment of relevance (useful for sorting results) DownloadMode downloadMode; /// User's preference what to do with this hit (default is NoDownload) } ResultItem; explicit FindPDF(QObject *parent = nullptr); ~FindPDF() override; /** * Initiate a search for PDF files matching a given entry. * * @param entry entry to search PDF files for * @return @c true if the search could be started @c false if another search is still running */ bool search(const Entry &entry); /** * Once a search has been complete (signal @see finished), * this function allows to retrieve the collected results * @return @c After a search, list of results, @c before or during a search, an empty list */ QList<ResultItem> results(); signals: /** * A search initiated by @see search has been finished. */ void finished(); /** * Some update on the ongoing search. * Just of eye candy, can be safely ignored if no visualization of progress is possible. * * @param visitedPages how many web pages have been visited * @param runningJobs how many download/search operations are running in parallel * @param foundDocuments how many PDF files have been found */ void progress(int visitedPages, int runningJobs, int foundDocuments); public slots: /** * Abort any running downloads. */ void abort(); private slots: void downloadFinished(); private: class Private; Private *const d; }; #endif // KBIBTEX_NETWORKING_FINDPDF_H �����������������������������������������������������������������kbibtex-0.8.1/src/networking/internalnetworkaccessmanager.cpp���������������������������������������0000664�0000000�0000000�00000026170�13313000262�0024571�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "internalnetworkaccessmanager.h" #include <ctime> #include <QStringList> #include <QRegExp> #include <QNetworkAccessManager> #include <QNetworkCookieJar> #include <QNetworkCookie> #include <QNetworkProxy> #include <QNetworkRequest> #include <QNetworkReply> #include <QtGlobal> #include <QApplication> #include <QTimer> #include <QUrl> #include <KProtocolManager> #include "logging_networking.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class InternalNetworkAccessManager::HTTPEquivCookieJar: public QNetworkCookieJar { Q_OBJECT public: void mergeHtmlHeadCookies(const QString &htmlCode, const QUrl &url) { static QRegExp cookieContent("^([^\"=; ]+)=([^\"=; ]+).*\\bpath=([^\"=; ]+)", Qt::CaseInsensitive); int p1 = -1; if ((p1 = htmlCode.toLower().indexOf(QStringLiteral("http-equiv=\"set-cookie\""), 0, Qt::CaseInsensitive)) >= 5 && (p1 = htmlCode.lastIndexOf(QStringLiteral("<meta"), p1, Qt::CaseInsensitive)) >= 0 && (p1 = htmlCode.indexOf(QStringLiteral("content=\""), p1, Qt::CaseInsensitive)) >= 0 && cookieContent.indexIn(htmlCode.mid(p1 + 9, 256)) >= 0) { const QString key = cookieContent.cap(1); const QString value = cookieContent.cap(2); QUrl cookieUrl = url; QList<QNetworkCookie> cookies = cookiesForUrl(cookieUrl); cookies.append(QNetworkCookie(key.toLatin1(), value.toLatin1())); setCookiesFromUrl(cookies, cookieUrl); } } HTTPEquivCookieJar(QObject *parent = nullptr) : QNetworkCookieJar(parent) { // nothing } }; QString InternalNetworkAccessManager::userAgentString; InternalNetworkAccessManager::InternalNetworkAccessManager(QObject *parent) : QNetworkAccessManager(parent) { cookieJar = new HTTPEquivCookieJar(this); } void InternalNetworkAccessManager::mergeHtmlHeadCookies(const QString &htmlCode, const QUrl &url) { Q_ASSERT_X(cookieJar != nullptr, "void InternalNetworkAccessManager::mergeHtmlHeadCookies(const QString &htmlCode, const QUrl &url)", "cookieJar is invalid"); cookieJar->mergeHtmlHeadCookies(htmlCode, url); setCookieJar(cookieJar); } InternalNetworkAccessManager &InternalNetworkAccessManager::instance() { static InternalNetworkAccessManager self; return self; } QNetworkReply *InternalNetworkAccessManager::get(QNetworkRequest &request, const QUrl &oldUrl) { #ifdef HAVE_KF5 /// Query the KDE subsystem if a proxy has to be used /// for the host of a given URL QString proxyHostName = KProtocolManager::proxyForUrl(request.url()); if (!proxyHostName.isEmpty() && proxyHostName != QStringLiteral("DIRECT")) { /// Extract both hostname and port number for proxy proxyHostName = proxyHostName.mid(proxyHostName.indexOf(QStringLiteral("://")) + 3); QStringList proxyComponents = proxyHostName.split(QStringLiteral(":"), QString::SkipEmptyParts); if (proxyComponents.length() == 1) { /// Proxy configuration is missing a port number, /// using 8080 as default proxyComponents << QStringLiteral("8080"); } if (proxyComponents.length() == 2) { /// Set proxy to Qt's NetworkAccessManager setProxy(QNetworkProxy(QNetworkProxy::HttpProxy, proxyComponents[0], proxyComponents[1].toInt())); } } else { /// No proxy to be used, clear previous settings setProxy(QNetworkProxy()); } #else // HAVE_KF5 setProxy(QNetworkProxy()); #endif // HAVE_KF5 if (!request.hasRawHeader(QByteArray("Accept"))) request.setRawHeader(QByteArray("Accept"), QByteArray("text/*, */*;q=0.7")); request.setRawHeader(QByteArray("Accept-Charset"), QByteArray("utf-8, us-ascii, ISO-8859-1;q=0.7, ISO-8859-15;q=0.7, windows-1252;q=0.3")); request.setRawHeader(QByteArray("Accept-Language"), QByteArray("en-US, en;q=0.9")); request.setRawHeader(QByteArray("User-Agent"), userAgent().toLatin1()); if (oldUrl.isValid()) request.setRawHeader(QByteArray("Referer"), oldUrl.toDisplayString().toLatin1()); QNetworkReply *reply = QNetworkAccessManager::get(request); return reply; } QNetworkReply *InternalNetworkAccessManager::get(QNetworkRequest &request, const QNetworkReply *oldReply) { return get(request, oldReply == nullptr ? QUrl() : oldReply->url()); } QString InternalNetworkAccessManager::userAgent() { /// Various browser strings to "disguise" origin static const QStringList userAgentList = QStringList() << QStringLiteral("Mozilla/5.0 (Linux; U; Android 2.3.3; en-us; HTC_DesireS_S510e Build/GRI40) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1") << QStringLiteral("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) QupZilla/2.0.2 Chrome/45.0.2454.101 Safari/537.36") << QStringLiteral("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36 OPR/38.0.2220.41") << QStringLiteral("Mozilla/5.0 (compatible; Yahoo! Slurp China; http://misc.yahoo.com.cn/help.html)") << QStringLiteral("Mozilla/5.0 (compatible; MSIE 9.0; AOL 9.7; AOLBuild 4343.19; Windows NT 6.1; WOW64; Trident/5.0; FunWebProducts)") << QStringLiteral("Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.89 Vivaldi/1.0.83.38 Safari/537.36") << QStringLiteral("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.5 (KHTML, like Gecko) YaBrowser/1.0.1084.5402 Chrome/19.0.1084.5402 Safari/536.5") << QStringLiteral("Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/523.15 (KHTML, like Gecko, Safari/419.3) Arora/0.3 (Change: 287 c9dfb30)") << QStringLiteral("Mozilla/4.0 (compatible; Dillo 2.2)") << QStringLiteral("Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/532.0 (KHTML, like Gecko) Chrome/4.0.201.1 Safari/532.0") << QStringLiteral("Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.1 (KHTML, like Gecko) Ubuntu/10.04 Chromium/14.0.813.0 Chrome/14.0.813.0 Safari/535.1") << QStringLiteral("Mozilla/5.0 (X11; U; Linux; de-DE) AppleWebKit/527+ (KHTML, like Gecko, Safari/419.3) Arora/0.8.0") << QStringLiteral("Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.21 Safari/537.36 MMS/1.0.2459.0") << QStringLiteral("Mozilla/5.0 (X11; U; Linux; C) AppleWebKit/533.3 (KHTML, like Gecko) QtCarBrowser Safari/533.3") << QStringLiteral("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.89 Vivaldi/1.0.83.38 Safari/537.36") << QStringLiteral("Opera/9.80 (X11; Linux i686; U; ru) Presto/2.8.131 Version/11.11") << QStringLiteral("Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727) Sleipnir/2.8.4") << QStringLiteral("Mozilla/5.0 (X11; Linux i686; rv:2.2a1pre) Gecko/20110327 SeaMonkey/2.2a1pre") << QStringLiteral("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) AppleWebKit/534.55.3 (KHTML, like Gecko) Version/5.1.3 Safari/534.53.10") << QStringLiteral("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13) AppleWebKit/603.1.13 (KHTML, like Gecko) Version/10.1 Safari/603.1.13") << QStringLiteral("Mozilla/5.0 (Linux; U; Tizen/1.0 like Android; en-us; AppleWebKit/534.46 (KHTML, like Gecko) Tizen Browser/1.0 Mobile") << QStringLiteral("Emacs-W3/4.0pre.46 URL/p4.0pre.46 (i686-pc-linux; X11)") << QStringLiteral("Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:47.0) Gecko/20100101 Firefox/47.0") << QStringLiteral("Lynx/2.8 (compatible; iCab 2.9.8; Macintosh; U; 68K)") << QStringLiteral("Mozilla/5.0 (Macintosh; Intel Mac OS X x.y; rv:42.0) Gecko/20100101 Firefox/42.0") << QStringLiteral("msnbot/2.1") << QStringLiteral("Mozilla/5.0 (iPad; U; CPU OS 3_2 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Version/4.0.4 Mobile/7B334b Safari/531.21.10") << QStringLiteral("Mozilla/5.0 (Windows; U; ; en-NZ) AppleWebKit/527+ (KHTML, like Gecko, Safari/419.3) Arora/0.8.0") << QStringLiteral("NCSA Mosaic/3.0 (Windows 95)") << QStringLiteral("Mozilla/5.0 (SymbianOS/9.1; U; [en]; Series60/3.0 NokiaE60/4.06.0) AppleWebKit/413 (KHTML, like Gecko) Safari/413") << QStringLiteral("Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16"); if (userAgentString.isEmpty()) { qsrand(time(nullptr)); userAgentString = userAgentList[qrand() % userAgentList.length()]; } return userAgentString; } void InternalNetworkAccessManager::setNetworkReplyTimeout(QNetworkReply *reply, int timeOutSec) { QTimer *timer = new QTimer(reply); connect(timer, &QTimer::timeout, this, &InternalNetworkAccessManager::networkReplyTimeout); m_mapTimerToReply.insert(timer, reply); timer->start(timeOutSec * 1000); connect(reply, &QNetworkReply::finished, this, &InternalNetworkAccessManager::networkReplyFinished); } void InternalNetworkAccessManager::networkReplyTimeout() { QTimer *timer = static_cast<QTimer *>(sender()); timer->stop(); QNetworkReply *reply = m_mapTimerToReply[timer]; if (reply != nullptr) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Timeout on reply to " << reply->url().toDisplayString(); reply->close(); m_mapTimerToReply.remove(timer); } } void InternalNetworkAccessManager::networkReplyFinished() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QTimer *timer = m_mapTimerToReply.key(reply, nullptr); if (timer != nullptr) { disconnect(timer, &QTimer::timeout, this, &InternalNetworkAccessManager::networkReplyTimeout); timer->stop(); m_mapTimerToReply.remove(timer); } } #include "internalnetworkaccessmanager.moc" ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/internalnetworkaccessmanager.h�����������������������������������������0000664�0000000�0000000�00000004716�13313000262�0024240�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_INTERNALNETWORKACCESSMANAGER_H #define KBIBTEX_NETWORKING_INTERNALNETWORKACCESSMANAGER_H #include "kbibtexnetworking_export.h" #include <QNetworkAccessManager> #include <QUrl> #include <QMap> class QNetworkAccessManager; class QNetworkReply; class QTimer; class HTTPEquivCookieJar; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT InternalNetworkAccessManager : public QNetworkAccessManager { Q_OBJECT public: static InternalNetworkAccessManager &instance(); QNetworkReply *get(QNetworkRequest &request, const QUrl &oldUrl); QNetworkReply *get(QNetworkRequest &request, const QNetworkReply *oldReply = nullptr); void mergeHtmlHeadCookies(const QString &htmlCode, const QUrl &url); void setNetworkReplyTimeout(QNetworkReply *reply, int timeOutSec = 30); protected: InternalNetworkAccessManager(QObject *parent = nullptr); class HTTPEquivCookieJar; HTTPEquivCookieJar *cookieJar; private: QMap<QTimer *, QNetworkReply *> m_mapTimerToReply; static QString userAgentString; static QString userAgent(); private slots: void networkReplyTimeout(); void networkReplyFinished(); }; #endif // KBIBTEX_NETWORKING_INTERNALNETWORKACCESSMANAGER_H ��������������������������������������������������kbibtex-0.8.1/src/networking/logging_networking.cpp�������������������������������������������������0000664�0000000�0000000�00000002464�13313000262�0022523�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_networking.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_NETWORKING, "kbibtex.networking") ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/logging_networking.h���������������������������������������������������0000664�0000000�0000000�00000002666�13313000262�0022174�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_LOGGING_NETWORKING_H #define KBIBTEX_NETWORKING_LOGGING_NETWORKING_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_NETWORKING) #endif // KBIBTEX_NETWORKING_LOGGING_NETWORKING_H ��������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/����������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0020566�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchabstract.cpp����������������������������������0000664�0000000�0000000�00000053270�13313000262�0025477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchabstract.h" #include <QFileInfo> #include <QNetworkReply> #include <QDir> #include <QTimer> #include <QStandardPaths> #ifdef HAVE_QTWIDGETS #include <QListWidgetItem> #include <QDBusConnection> #include <QDBusConnectionInterface> #endif // HAVE_QTWIDGETS #ifdef HAVE_KF5 #include <KLocalizedString> #include <KMessageBox> #endif // HAVE_KF5 #include "encoderlatex.h" #include "internalnetworkaccessmanager.h" #include "kbibtex.h" #include "logging_networking.h" const QString OnlineSearchAbstract::queryKeyFreeText = QStringLiteral("free"); const QString OnlineSearchAbstract::queryKeyTitle = QStringLiteral("title"); const QString OnlineSearchAbstract::queryKeyAuthor = QStringLiteral("author"); const QString OnlineSearchAbstract::queryKeyYear = QStringLiteral("year"); const int OnlineSearchAbstract::resultNoError = 0; const int OnlineSearchAbstract::resultCancelled = 0; /// may get redefined in the future! const int OnlineSearchAbstract::resultUnspecifiedError = 1; const int OnlineSearchAbstract::resultAuthorizationRequired = 2; const int OnlineSearchAbstract::resultNetworkError = 3; const int OnlineSearchAbstract::resultInvalidArguments = 4; const char *OnlineSearchAbstract::httpUnsafeChars = "%:/=+$?&\0"; #ifdef HAVE_QTWIDGETS QStringList OnlineSearchQueryFormAbstract::authorLastNames(const Entry &entry) { const EncoderLaTeX &encoder = EncoderLaTeX::instance(); const Value v = entry[Entry::ftAuthor]; QStringList result; result.reserve(v.size()); for (const QSharedPointer<ValueItem> &vi : v) { QSharedPointer<const Person> p = vi.dynamicCast<const Person>(); if (!p.isNull()) result.append(encoder.convertToPlainAscii(p->lastName())); } return result; } #endif // HAVE_QTWIDGETS OnlineSearchAbstract::OnlineSearchAbstract(QObject *parent) : QObject(parent), m_hasBeenCanceled(false), numSteps(0), curStep(0), m_previousBusyState(false), m_delayedStoppedSearchReturnCode(0) { m_parent = parent; } QIcon OnlineSearchAbstract::icon(QListWidgetItem *listWidgetItem) { static const QRegExp invalidChars(QStringLiteral("[^-a-z0-9_]"), Qt::CaseInsensitive); const QString cacheDirectory = QStandardPaths::writableLocation(QStandardPaths::CacheLocation) + QStringLiteral("/favicons/"); QDir().mkpath(cacheDirectory); const QString fileNameStem = cacheDirectory + QString(favIconUrl()).remove(invalidChars); const QStringList fileNameExtensions = QStringList() << QStringLiteral(".ico") << QStringLiteral(".png") << QString(); for (const QString &extension : fileNameExtensions) { const QString fileName = fileNameStem + extension; if (QFileInfo::exists(fileName)) return QIcon(fileName); } QNetworkRequest request(favIconUrl()); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); reply->setObjectName(fileNameStem); if (listWidgetItem != nullptr) m_iconReplyToListWidgetItem.insert(reply, listWidgetItem); connect(reply, &QNetworkReply::finished, this, &OnlineSearchAbstract::iconDownloadFinished); return QIcon::fromTheme(QStringLiteral("applications-internet")); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchAbstract::customWidget(QWidget *) { return nullptr; } void OnlineSearchAbstract::startSearchFromForm() { m_hasBeenCanceled = false; curStep = numSteps = 0; delayedStoppedSearch(resultNoError); } #endif // HAVE_QTWIDGETS QString OnlineSearchAbstract::name() { static const QRegExp invalidChars("[^-a-z0-9]", Qt::CaseInsensitive); if (m_name.isEmpty()) m_name = label().remove(invalidChars); return m_name; } bool OnlineSearchAbstract::busy() const { return numSteps > 0 && curStep < numSteps; } void OnlineSearchAbstract::cancel() { m_hasBeenCanceled = true; curStep = numSteps = 0; refreshBusyProperty(); } QStringList OnlineSearchAbstract::splitRespectingQuotationMarks(const QString &text) { int p1 = 0, p2, max = text.length(); QStringList result; while (p1 < max) { while (text[p1] == ' ') ++p1; p2 = p1; if (text[p2] == '"') { ++p2; while (p2 < max && text[p2] != '"') ++p2; } else while (p2 < max && text[p2] != ' ') ++p2; result << text.mid(p1, p2 - p1 + 1).simplified(); p1 = p2 + 1; } return result; } bool OnlineSearchAbstract::handleErrors(QNetworkReply *reply) { QUrl url; return handleErrors(reply, url); } bool OnlineSearchAbstract::handleErrors(QNetworkReply *reply, QUrl &newUrl) { newUrl = QUrl(); if (m_hasBeenCanceled) { stopSearch(resultCancelled); return false; } else if (reply->error() != QNetworkReply::NoError) { m_hasBeenCanceled = true; const QString errorString = reply->errorString(); qCWarning(LOG_KBIBTEX_NETWORKING) << "Search using" << label() << "failed (error code" << reply->error() << "(" << errorString << "), HTTP code" << reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt() << ":" << reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toByteArray() << ")"; #ifdef HAVE_KF5 sendVisualNotification(errorString.isEmpty() ? i18n("Searching '%1' failed for unknown reason.", label()) : i18n("Searching '%1' failed with error message:\n\n%2", label(), errorString), label(), QStringLiteral("kbibtex"), 7 * 1000); #endif // HAVE_KF5 int resultCode = resultUnspecifiedError; if (reply->error() == QNetworkReply::AuthenticationRequiredError || reply->error() == QNetworkReply::ProxyAuthenticationRequiredError) resultCode = resultAuthorizationRequired; else if (reply->error() == QNetworkReply::HostNotFoundError || reply->error() == QNetworkReply::TimeoutError) resultCode = resultNetworkError; stopSearch(resultCode); return false; } /** * Check the reply for various problems that might point to * more severe issues. Remember: those are only indicators * to problems which have to be handled elsewhere (therefore, * returning 'true' is totally ok here). */ if (reply->attribute(QNetworkRequest::RedirectionTargetAttribute).isValid()) { newUrl = reply->url().resolved(reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl()); } else if (reply->size() == 0) qCWarning(LOG_KBIBTEX_NETWORKING) << "Search using" << label() << "on url" << reply->url().toDisplayString() << "returned no data"; return true; } #ifdef HAVE_KF5 /** * Display a passive notification popup using the D-Bus interface. * Copied from KDialog with modifications. */ void OnlineSearchAbstract::sendVisualNotification(const QString &text, const QString &title, const QString &icon, int timeout) { static const QString dbusServiceName = QStringLiteral("org.freedesktop.Notifications"); static const QString dbusInterfaceName = QStringLiteral("org.freedesktop.Notifications"); static const QString dbusPath = QStringLiteral("/org/freedesktop/Notifications"); // check if service already exists on plugin instantiation QDBusConnectionInterface *interface = QDBusConnection::sessionBus().interface(); if (interface == nullptr || !interface->isServiceRegistered(dbusServiceName)) { return; } if (timeout <= 0) timeout = 10 * 1000; QDBusMessage m = QDBusMessage::createMethodCall(dbusServiceName, dbusPath, dbusInterfaceName, QStringLiteral("Notify")); QList<QVariant> args = QList<QVariant>() << QStringLiteral("kdialog") << 0U << icon << title << text << QStringList() << QVariantMap() << timeout; m.setArguments(args); QDBusMessage replyMsg = QDBusConnection::sessionBus().call(m); if (replyMsg.type() == QDBusMessage::ReplyMessage) { if (!replyMsg.arguments().isEmpty()) { return; } // Not displaying any error messages as this is optional for kdialog // and KPassivePopup is a perfectly valid fallback. //else { // qCDebug(LOG_KBIBTEX_NETWORKING) << "Error: received reply with no arguments."; //} } else if (replyMsg.type() == QDBusMessage::ErrorMessage) { //qCDebug(LOG_KBIBTEX_NETWORKING) << "Error: failed to send D-Bus message"; //qCDebug(LOG_KBIBTEX_NETWORKING) << replyMsg; } else { //qCDebug(LOG_KBIBTEX_NETWORKING) << "Unexpected reply type"; } } #endif // HAVE_KF5 QString OnlineSearchAbstract::encodeURL(QString rawText) { const char *cur = httpUnsafeChars; while (*cur != '\0') { rawText = rawText.replace(QChar(*cur), '%' + QString::number(*cur, 16)); ++cur; } rawText = rawText.replace(QLatin1Char(' '), QLatin1Char('+')); return rawText; } QString OnlineSearchAbstract::decodeURL(QString rawText) { static const QRegExp mimeRegExp("%([0-9A-Fa-f]{2})"); while (mimeRegExp.indexIn(rawText) >= 0) { bool ok = false; QChar c(mimeRegExp.cap(1).toInt(&ok, 16)); if (ok) rawText = rawText.replace(mimeRegExp.cap(0), c); } rawText = rawText.replace(QStringLiteral("&amp;"), QStringLiteral("&")).replace(QLatin1Char('+'), QStringLiteral(" ")); return rawText; } QMap<QString, QString> OnlineSearchAbstract::formParameters(const QString &htmlText, int startPos) { /// how to recognize HTML tags static const QString formTagEnd = QStringLiteral("</form>"); static const QString inputTagBegin = QStringLiteral("<input "); static const QString selectTagBegin = QStringLiteral("<select "); static const QString selectTagEnd = QStringLiteral("</select>"); static const QString optionTagBegin = QStringLiteral("<option "); /// regular expressions to test or retrieve attributes in HTML tags static const QRegExp inputTypeRegExp("<input[^>]+\\btype=[\"]?([^\" >\n\t]*)", Qt::CaseInsensitive); static const QRegExp inputNameRegExp("<input[^>]+\\bname=[\"]?([^\" >\n\t]*)", Qt::CaseInsensitive); static const QRegExp inputValueRegExp("<input[^>]+\\bvalue=[\"]?([^\" >\n\t]*)", Qt::CaseInsensitive); static const QRegExp inputIsCheckedRegExp("<input[^>]+\\bchecked([> \t\n]|=[\"]?checked)", Qt::CaseInsensitive); static const QRegExp selectNameRegExp("<select[^>]+\\bname=[\"]?([^\" >\n\t]*)", Qt::CaseInsensitive); static const QRegExp optionValueRegExp("<option[^>]+\\bvalue=[\"]?([^\" >\n\t]*)", Qt::CaseInsensitive); static const QRegExp optionSelectedRegExp("<option[^>]* selected([> \t\n]|=[\"]?selected)", Qt::CaseInsensitive); /// initialize result map QMap<QString, QString> result; /// determined boundaries of (only) "form" tag int endPos = htmlText.indexOf(formTagEnd, startPos, Qt::CaseInsensitive); if (startPos < 0 || endPos < 0) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Could not locate form in text"; return result; } /// search for "input" tags within form int p = htmlText.indexOf(inputTagBegin, startPos, Qt::CaseInsensitive); while (p > startPos && p < endPos) { /// get "type", "name", and "value" attributes QString inputType = inputTypeRegExp.indexIn(htmlText, p) == p ? inputTypeRegExp.cap(1).toLower() : QString(); QString inputName = inputNameRegExp.indexIn(htmlText, p) == p ? inputNameRegExp.cap(1) : QString(); QString inputValue = inputValueRegExp.indexIn(htmlText, p) ? inputValueRegExp.cap(1) : QString(); if (!inputName.isEmpty()) { /// get value of input types if (inputType == QStringLiteral("hidden") || inputType == QStringLiteral("text") || inputType == QStringLiteral("submit")) result[inputName] = inputValue; else if (inputType == QStringLiteral("radio")) { /// must be selected if (htmlText.indexOf(inputIsCheckedRegExp, p) == p) { result[inputName] = inputValue; } } else if (inputType == QStringLiteral("checkbox")) { /// must be checked if (htmlText.indexOf(inputIsCheckedRegExp, p) == p) { /// multiple checkbox values with the same name are possible result.insertMulti(inputName, inputValue); } } } /// ignore input type "image" p = htmlText.indexOf(inputTagBegin, p + 1, Qt::CaseInsensitive); } /// search for "select" tags within form p = htmlText.indexOf(selectTagBegin, startPos, Qt::CaseInsensitive); while (p > startPos && p < endPos) { /// get "name" attribute from "select" tag const QString selectName = selectNameRegExp.indexIn(htmlText, p) == p ? selectNameRegExp.cap(1) : QString(); /// "select" tag contains one or several "option" tags, search all int popt = htmlText.indexOf(optionTagBegin, p, Qt::CaseInsensitive); int endSelect = htmlText.indexOf(selectTagEnd, p, Qt::CaseInsensitive); while (popt > p && popt < endSelect) { /// get "value" attribute from "option" tag const QString optionValue = optionValueRegExp.indexIn(htmlText, popt) == popt ? optionValueRegExp.cap(1) : QString(); if (!selectName.isEmpty() && !optionValue.isEmpty()) { /// if this "option" tag is "selected", store value if (htmlText.indexOf(optionSelectedRegExp, popt) == popt) { result[selectName] = optionValue; } } popt = htmlText.indexOf(optionTagBegin, popt + 1, Qt::CaseInsensitive); } p = htmlText.indexOf(selectTagBegin, p + 1, Qt::CaseInsensitive); } return result; } void OnlineSearchAbstract::iconDownloadFinished() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (reply->error() == QNetworkReply::NoError) { const QUrl redirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (redirUrl.isValid()) { QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request); newReply->setObjectName(reply->objectName()); QListWidgetItem *listWidgetItem = m_iconReplyToListWidgetItem.value(reply, nullptr); m_iconReplyToListWidgetItem.remove(reply); if (listWidgetItem != nullptr) m_iconReplyToListWidgetItem.insert(newReply, listWidgetItem); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAbstract::iconDownloadFinished); return; } const QByteArray iconData = reply->readAll(); if (iconData.size() < 10) { /// Unlikely that an icon's data is less than 10 bytes, /// must be an error. qCWarning(LOG_KBIBTEX_NETWORKING) << "Received invalid icon data from " << reply->url().toDisplayString(); return; } QString extension; if (iconData[1] == 'P' && iconData[2] == 'N' && iconData[3] == 'G') { /// PNG files have string "PNG" at second to fourth byte extension = QStringLiteral(".png"); } else if (iconData[0] == (char)0x00 && iconData[1] == (char)0x00 && iconData[2] == (char)0x01 && iconData[3] == (char)0x00) { /// Microsoft Icon have first two bytes always 0x0000, /// third and fourth byte is 0x0001 (for .ico) extension = QStringLiteral(".ico"); } else if (iconData[0] == '<') { /// HTML or XML code const QString htmlCode = QString::fromUtf8(iconData); qCDebug(LOG_KBIBTEX_NETWORKING) << "Received XML or HTML data from " << reply->url().toDisplayString() << ": " << htmlCode.left(128); return; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "Favicon is of unknown format: " << reply->url().toDisplayString(); return; } const QString filename = reply->objectName() + extension; QFile iconFile(filename); if (iconFile.open(QFile::WriteOnly)) { iconFile.write(iconData); iconFile.close(); QListWidgetItem *listWidgetItem = m_iconReplyToListWidgetItem.value(reply, nullptr); if (listWidgetItem != nullptr) listWidgetItem->setIcon(QIcon(filename)); } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "Could not save icon data from URL" << reply->url().toDisplayString() << "to file" << filename; return; } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "Could not download icon from URL " << reply->url().toDisplayString() << ": " << reply->errorString(); } void OnlineSearchAbstract::dumpToFile(const QString &filename, const QString &text) { const QString usedFilename = QDir::tempPath() + QLatin1Char('/') + filename; QFile f(usedFilename); if (f.open(QFile::WriteOnly)) { qCDebug(LOG_KBIBTEX_NETWORKING) << "Dumping text" << KBibTeX::squeezeText(text, 96) << "to" << usedFilename; QTextStream ts(&f); ts.setCodec("UTF-8"); ts << text; f.close(); } } void OnlineSearchAbstract::delayedStoppedSearch(int returnCode) { m_delayedStoppedSearchReturnCode = returnCode; QTimer::singleShot(500, this, &OnlineSearchAbstract::delayedStoppedSearchTimer); } void OnlineSearchAbstract::delayedStoppedSearchTimer() { emit progress(1, 1); stopSearch(m_delayedStoppedSearchReturnCode); } void OnlineSearchAbstract::sanitizeEntry(QSharedPointer<Entry> entry) { if (entry.isNull()) return; /// Sometimes, there is no identifier, so set a random one if (entry->id().isEmpty()) entry->setId(QString(QStringLiteral("entry-%1")).arg(QString::number(qrand(), 36))); const QString ftIssue = QStringLiteral("issue"); if (entry->contains(ftIssue)) { /// ACM's Digital Library uses "issue" instead of "number" -> fix that Value v = entry->value(ftIssue); entry->remove(ftIssue); entry->insert(Entry::ftNumber, v); } /// If entry contains a description field but no abstract, /// rename description field to abstract const QString ftDescription = QStringLiteral("description"); if (!entry->contains(Entry::ftAbstract) && entry->contains(ftDescription)) { Value v = entry->value(ftDescription); entry->remove(ftDescription); entry->insert(Entry::ftAbstract, v); } /// Remove "dblp" artifacts in abstracts and keywords if (entry->contains(Entry::ftAbstract)) { const QString abstract = PlainTextValue::text(entry->value(Entry::ftAbstract)); if (abstract == QStringLiteral("dblp")) entry->remove(Entry::ftAbstract); } if (entry->contains(Entry::ftKeywords)) { const QString keywords = PlainTextValue::text(entry->value(Entry::ftKeywords)); if (keywords == QStringLiteral("dblp")) entry->remove(Entry::ftKeywords); } if (entry->contains(Entry::ftMonth)) { /// Fix strigns for months: "September" -> "sep" const QString monthStr = PlainTextValue::text(entry->value(Entry::ftMonth)); static const QRegExp longMonth = QRegExp(QStringLiteral("(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[a-z]*"), Qt::CaseInsensitive); if (monthStr.indexOf(longMonth) == 0 && monthStr == longMonth.cap(0)) { /// String used for month is actually a full name, therefore replace it entry->remove(Entry::ftMonth); /// Regular expression checked for valid three-letter abbreviations /// that month names start with. Use those three letters for a macro key /// Example: "September" -> sep Value v; v.append(QSharedPointer<MacroKey>(new MacroKey(longMonth.cap(1).toLower()))); entry->insert(Entry::ftMonth, v); } } /// Referenced strings or entries do not exist in the search result /// and BibTeX breaks if it finds a reference to a non-existing string or entry entry->remove(Entry::ftCrossRef); } bool OnlineSearchAbstract::publishEntry(QSharedPointer<Entry> entry) { if (entry.isNull()) return false; Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(label()))); entry->insert(QStringLiteral("x-fetchedfrom"), v); sanitizeEntry(entry); emit foundEntry(entry); return true; } void OnlineSearchAbstract::stopSearch(int errorCode) { if (errorCode == resultNoError) curStep = numSteps; else curStep = numSteps = 0; emit stoppedSearch(errorCode); } void OnlineSearchAbstract::refreshBusyProperty() { const bool newBusyState = busy(); if (newBusyState != m_previousBusyState) { m_previousBusyState = newBusyState; emit busyChanged(); } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchabstract.h������������������������������������0000664�0000000�0000000�00000016076�13313000262�0025147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_ABSTRACT_H #define KBIBTEX_ONLINESEARCH_ABSTRACT_H #include "kbibtexnetworking_export.h" #include <QObject> #include <QMap> #include <QString> #ifdef HAVE_QTWIDGETS #include <QWidget> #endif // HAVE_QTWIDGETS #include <QMetaType> #include <QIcon> #include <QUrl> #ifdef HAVE_KF5 #include <KSharedConfig> #endif // HAVE_KF5 #include "entry.h" class QNetworkReply; class QNetworkRequest; class QListWidgetItem; #ifdef HAVE_QTWIDGETS /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchQueryFormAbstract : public QWidget { Q_OBJECT public: explicit OnlineSearchQueryFormAbstract(QWidget *parent) : QWidget(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { // nothing } ~OnlineSearchQueryFormAbstract() override { /// nothing } virtual bool readyToStart() const = 0; virtual void copyFromEntry(const Entry &) = 0; protected: KSharedConfigPtr config; QStringList authorLastNames(const Entry &entry); signals: void returnPressed(); }; Q_DECLARE_METATYPE(OnlineSearchQueryFormAbstract *) #endif // HAVE_QTWIDGETS /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchAbstract : public QObject { Q_OBJECT public: explicit OnlineSearchAbstract(QObject *parent); static const QString queryKeyFreeText; static const QString queryKeyTitle; static const QString queryKeyAuthor; static const QString queryKeyYear; static const int resultCancelled; static const int resultNoError; static const int resultUnspecifiedError; static const int resultAuthorizationRequired; static const int resultNetworkError; static const int resultInvalidArguments; #ifdef HAVE_QTWIDGETS virtual void startSearchFromForm(); #endif // HAVE_QTWIDGETS virtual void startSearch(const QMap<QString, QString> &query, int numResults) = 0; virtual QString label() const = 0; QString name(); virtual QIcon icon(QListWidgetItem *listWidgetItem = nullptr); #ifdef HAVE_QTWIDGETS virtual OnlineSearchQueryFormAbstract *customWidget(QWidget *parent); #endif // HAVE_QTWIDGETS virtual QUrl homepage() const = 0; virtual bool busy() const; public slots: void cancel(); protected: QObject *m_parent; bool m_hasBeenCanceled; int numSteps, curStep; virtual QString favIconUrl() const = 0; /** * Split a string along spaces, but keep text in quotation marks together */ QStringList splitRespectingQuotationMarks(const QString &text); /** * Will check for common problems with downloads via QNetworkReply. It will return true * if there is no problem and you may process this job result. If there is a problem, * this function will notify the user if necessary (KMessageBox), emit a * "stoppedSearch" signal, and return false. * @see handleErrors(KJob*) */ bool handleErrors(QNetworkReply *reply); /** * Will check for common problems with downloads via QNetworkReply. It will return true * if there is no problem and you may process this job result. If there is a problem, * this function will notify the user if necessary (KMessageBox), emit a * "stoppedSearch" signal, and return false. * @see handleErrors(KJob*) * @param newUrl will be set to the new URL if reply contains a redirection, otherwise reply's original URL */ bool handleErrors(QNetworkReply *reply, QUrl &newUrl); /** * Encode a text to be HTTP URL save, e.g. replace '=' by '%3D'. */ QString encodeURL(QString rawText); QString decodeURL(QString rawText); QMap<QString, QString> formParameters(const QString &htmlText, int startPos); void dumpToFile(const QString &filename, const QString &text); /** * Delay sending of stop signal by a few milliseconds. * Necessary if search stops (is cancelled) already in one * of the startSearch functions. */ void delayedStoppedSearch(int returnCode); /** * Correct the most common problems encountered in fetched entries. * This function should be specialized in each descendant of this class. * @param entry Entry to sanitize */ virtual void sanitizeEntry(QSharedPointer<Entry> entry); /** * Perform the following steps: (1) sanitize entry, (2) add name * of search engine that found the entry, (3) send it back to search * result list. * Returns true if a valid entry was passed to this function and all * steps could be performed. * @param entry Entry to publish * @return returns true if a valid entry was passed to this function and all steps could be performed. */ bool publishEntry(QSharedPointer<Entry> entry); void stopSearch(int errorCode); /** * Allows an online search to notify about a change of its busy state, * i.e. that the public function @see busy may return a different value * than before. If the actual busy state has changed compared to previous * invocations of this function, the signal @see busyChanged will be * emitted. * This function here may be called both on changes from active to * inactive as well as vice versa. */ void refreshBusyProperty(); private: bool m_previousBusyState; QString m_name; static const char *httpUnsafeChars; QMap<QNetworkReply *, QListWidgetItem *> m_iconReplyToListWidgetItem; int m_delayedStoppedSearchReturnCode; #ifdef HAVE_KF5 void sendVisualNotification(const QString &text, const QString &title, const QString &icon, int timeout); #endif // HAVE_KF5 private slots: void iconDownloadFinished(); void delayedStoppedSearchTimer(); signals: void foundEntry(QSharedPointer<Entry>); void stoppedSearch(int); void progress(int, int); void busyChanged(); }; #endif // KBIBTEX_ONLINESEARCH_ABSTRACT_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchacmportal.cpp���������������������������������0000664�0000000�0000000�00000026652�13313000262�0025662�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchacmportal.h" #include <QBuffer> #include <QNetworkRequest> #include <QNetworkAccessManager> #include <QNetworkReply> #include <QUrlQuery> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #include "file.h" #include "entry.h" #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchAcmPortal::OnlineSearchAcmPortalPrivate { private: // UNUSED OnlineSearchAcmPortal *p; public: QString joinedQueryString; int numExpectedResults, numFoundResults; const QString acmPortalBaseUrl; int currentSearchPosition; QStringList citationUrls; OnlineSearchAcmPortalPrivate(OnlineSearchAcmPortal */* UNUSED parent*/) : /* UNUSED p(parent),*/ numExpectedResults(0), numFoundResults(0), acmPortalBaseUrl(QStringLiteral("https://dl.acm.org/")), currentSearchPosition(0) { // nothing } void sanitizeBibTeXCode(QString &code) { const QRegExp htmlEncodedChar("&#(\\d+);"); while (htmlEncodedChar.indexIn(code) >= 0) { bool ok = false; QChar c(htmlEncodedChar.cap(1).toInt(&ok)); if (ok) { code = code.replace(htmlEncodedChar.cap(0), c); } } /// ACM's BibTeX code does not properly use various commands. /// For example, ACM writes "Ke\ssler" instead of "Ke{\ss}ler" static const QStringList inlineCommands = QStringList() << QStringLiteral("\\ss"); for (const QString &cmd : inlineCommands) { const QString wrappedCmd = QString(QStringLiteral("{%1}")).arg(cmd); code = code.replace(cmd, wrappedCmd); } } }; OnlineSearchAcmPortal::OnlineSearchAcmPortal(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchAcmPortalPrivate(this)) { // nothing } OnlineSearchAcmPortal::~OnlineSearchAcmPortal() { delete d; } void OnlineSearchAcmPortal::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; d->joinedQueryString.clear(); d->currentSearchPosition = 1; d->citationUrls.clear(); d->numFoundResults = 0; emit progress(curStep = 0, numSteps = numResults * 2 + 2); for (QMap<QString, QString>::ConstIterator it = query.constBegin(); it != query.constEnd(); ++it) { // FIXME: Is there a need for percent encoding? d->joinedQueryString.append(it.value() + QStringLiteral(" ")); } d->numExpectedResults = numResults; QNetworkRequest request(d->acmPortalBaseUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingStartPage); } QString OnlineSearchAcmPortal::label() const { return i18n("ACM Digital Library"); } QString OnlineSearchAcmPortal::favIconUrl() const { return QStringLiteral("https://dl.acm.org/favicon.ico"); } QUrl OnlineSearchAcmPortal::homepage() const { return QUrl(QStringLiteral("https://dl.acm.org/")); } void OnlineSearchAcmPortal::doneFetchingStartPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { const QString htmlSource = QString::fromUtf8(reply->readAll().constData()); int p1 = -1, p2 = -1, p3 = -1; if ((p1 = htmlSource.indexOf(QStringLiteral("<form name=\"qiksearch\""))) >= 0 && (p2 = htmlSource.indexOf(QStringLiteral("action="), p1)) >= 0 && (p3 = htmlSource.indexOf(QStringLiteral("\""), p2 + 8)) >= 0) { const QString body = QString(QStringLiteral("Go=&query=%1")).arg(d->joinedQueryString).simplified(); const QString action = decodeURL(htmlSource.mid(p2 + 8, p3 - p2 - 8)); QUrl url(reply->url().resolved(QUrl(action + QStringLiteral("&") + body))); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingSearchPage); } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "Search using" << label() << "failed."; stopSearch(resultUnspecifiedError); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchAcmPortal::doneFetchingSearchPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { const QString htmlSource = QString::fromUtf8(reply->readAll().constData()); static const QRegExp citationUrlRegExp(QStringLiteral("citation.cfm\\?id=[0-9][0-9.]+[0-9][^\">]+CFID=[0-9]+[^\">]+CFTOKEN=[0-9]+"), Qt::CaseInsensitive); int p1 = -1; while ((p1 = citationUrlRegExp.indexIn(htmlSource, p1 + 1)) >= 0) { const QString newUrl = d->acmPortalBaseUrl + citationUrlRegExp.cap(0); d->citationUrls << newUrl; } if (d->currentSearchPosition + 20 < d->numExpectedResults) { d->currentSearchPosition += 20; QUrl url(reply->url()); QUrlQuery query(url); query.addQueryItem(QStringLiteral("start"), QString::number(d->currentSearchPosition)); url.setQuery(query); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingSearchPage); } else if (!d->citationUrls.isEmpty()) { QNetworkRequest request(d->citationUrls.first()); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingCitation); d->citationUrls.removeFirst(); } else { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchAcmPortal::doneFetchingCitation() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QString bibTeXUrl; if (handleErrors(reply)) { const QString htmlSource = QString::fromUtf8(reply->readAll().constData()); static const QRegExp parentIdRegExp(QStringLiteral("parent_id=([0-9]+)")); const int parentId = parentIdRegExp.indexIn(htmlSource) > 0 ? parentIdRegExp.cap(1).toInt() : 0; static const QRegExp paramRegExp(QStringLiteral("\\?id=([0-9][0-9.]+[0-9])[^\">]+CFID=([0-9]+)[^\">]+CFTOKEN=([0-9]+)"), Qt::CaseInsensitive); int p1 = -1; if (parentId > 0 && (p1 = paramRegExp.indexIn(htmlSource)) >= 0) { bibTeXUrl = d->acmPortalBaseUrl + QString(QStringLiteral("/downformats.cfm?id=%2&parent_id=%1&expformat=bibtex&CFID=%3&CFTOKEN=%4")).arg(QString::number(parentId), paramRegExp.cap(1), paramRegExp.cap(2), paramRegExp.cap(3)); } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No citation link found in " << reply->url().toDisplayString() << " parentId=" << parentId; stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); return; } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); if (bibTeXUrl.isEmpty()) { if (!d->citationUrls.isEmpty()) { QNetworkRequest request(d->citationUrls.first()); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingCitation); d->citationUrls.removeFirst(); } else { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else { QNetworkRequest request(bibTeXUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingBibTeX); } } void OnlineSearchAcmPortal::doneFetchingBibTeX() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); FileImporterBibTeX importer(this); d->sanitizeBibTeXCode(bibTeXcode); File *bibtexFile = importer.fromString(bibTeXcode); if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (publishEntry(entry)) ++d->numFoundResults; } delete bibtexFile; } if (!d->citationUrls.isEmpty() && d->numFoundResults < d->numExpectedResults) { QNetworkRequest request(d->citationUrls.first()); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchAcmPortal::doneFetchingCitation); d->citationUrls.removeFirst(); } else { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } ��������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchacmportal.h�����������������������������������0000664�0000000�0000000�00000004204�13313000262�0025314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_ACMPORTAL_H #define KBIBTEX_ONLINESEARCH_ACMPORTAL_H #include <QByteArray> #include "onlinesearchabstract.h" class QSpinBox; class KComboBox; class KLineEdit; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchAcmPortal : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchAcmPortal(QObject *parent); ~OnlineSearchAcmPortal() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private slots: void doneFetchingStartPage(); void doneFetchingSearchPage(); void doneFetchingCitation(); void doneFetchingBibTeX(); private: class OnlineSearchAcmPortalPrivate; OnlineSearchAcmPortalPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_ACMPORTAL_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearcharxiv.cpp�������������������������������������0000664�0000000�0000000�00000071172�13313000262�0025026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearcharxiv.h" #include <QNetworkReply> #include <QCoreApplication> #ifdef HAVE_QTWIDGETS #include <QGridLayout> #include <QLabel> #include <QSpinBox> #include <QTextStream> #endif // HAVE_QTWIDGETS #include <QStandardPaths> #ifdef HAVE_QTWIDGETS #include <KLineEdit> #include <KMessageBox> #endif // HAVE_QTWIDGETS #ifdef HAVE_KF5 #include <KConfigGroup> #include <KLocalizedString> #endif // HAVE_KF5 #include "fileimporterbibtex.h" #include "xsltransform.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" #ifdef HAVE_QTWIDGETS class OnlineSearchArXiv::OnlineSearchQueryFormArXiv : public OnlineSearchQueryFormAbstract { Q_OBJECT private: QString configGroupName; void loadState() { KConfigGroup configGroup(config, configGroupName); lineEditFreeText->setText(configGroup.readEntry(QStringLiteral("freeText"), QString())); numResultsField->setValue(configGroup.readEntry(QStringLiteral("numResults"), 10)); } public: KLineEdit *lineEditFreeText; QSpinBox *numResultsField; OnlineSearchQueryFormArXiv(QWidget *parent) : OnlineSearchQueryFormAbstract(parent), configGroupName(QStringLiteral("Search Engine arXiv.org")) { QGridLayout *layout = new QGridLayout(this); layout->setMargin(0); QLabel *label = new QLabel(i18n("Free text:"), this); layout->addWidget(label, 0, 0, 1, 1); lineEditFreeText = new KLineEdit(this); lineEditFreeText->setClearButtonEnabled(true); lineEditFreeText->setFocus(Qt::TabFocusReason); layout->addWidget(lineEditFreeText, 0, 1, 1, 1); label->setBuddy(lineEditFreeText); connect(lineEditFreeText, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormArXiv::returnPressed); label = new QLabel(i18n("Number of Results:"), this); layout->addWidget(label, 1, 0, 1, 1); numResultsField = new QSpinBox(this); numResultsField->setMinimum(3); numResultsField->setMaximum(100); numResultsField->setValue(20); layout->addWidget(numResultsField, 1, 1, 1, 1); label->setBuddy(numResultsField); layout->setRowStretch(2, 100); loadState(); } bool readyToStart() const override { return !lineEditFreeText->text().isEmpty(); } void copyFromEntry(const Entry &entry) override { lineEditFreeText->setText(authorLastNames(entry).join(QStringLiteral(" ")) + QLatin1Char(' ') + PlainTextValue::text(entry[Entry::ftTitle])); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("freeText"), lineEditFreeText->text()); configGroup.writeEntry(QStringLiteral("numResults"), numResultsField->value()); config->sync(); } }; #endif // HAVE_QTWIDGETS class OnlineSearchArXiv::OnlineSearchArXivPrivate { private: OnlineSearchArXiv *p; public: const XSLTransform xslt; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormArXiv *form; #endif // HAVE_QTWIDGETS const QString arXivQueryBaseUrl; OnlineSearchArXivPrivate(OnlineSearchArXiv *parent) : p(parent), xslt(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QCoreApplication::instance()->applicationName() + QStringLiteral("/arxiv2bibtex.xsl"))), #ifdef HAVE_QTWIDGETS form(nullptr), #endif // HAVE_QTWIDGETS arXivQueryBaseUrl(QStringLiteral("http://export.arxiv.org/api/query?")) { /// nothing } #ifdef HAVE_QTWIDGETS QUrl buildQueryUrl() { /// format search terms const auto respectingQuotationMarks = p->splitRespectingQuotationMarks(form->lineEditFreeText->text()); QStringList queryFragments; queryFragments.reserve(respectingQuotationMarks.size()); for (const QString &queryFragment : respectingQuotationMarks) queryFragments.append(p->encodeURL(queryFragment)); return QUrl(QString(QStringLiteral("%1search_query=all:\"%3\"&start=0&max_results=%2")).arg(arXivQueryBaseUrl).arg(form->numResultsField->value()).arg(queryFragments.join(QStringLiteral("\"+AND+all:\"")))); ///< join search terms with an AND operation } #endif // HAVE_QTWIDGETS QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { /// format search terms QStringList queryFragments; for (QMap<QString, QString>::ConstIterator it = query.constBegin(); it != query.constEnd(); ++it) { const auto respectingQuotationMarks = p->splitRespectingQuotationMarks(it.value()); for (const auto &queryFragment : respectingQuotationMarks) queryFragments.append(p->encodeURL(queryFragment)); } return QUrl(QString(QStringLiteral("%1search_query=all:\"%3\"&start=0&max_results=%2")).arg(arXivQueryBaseUrl).arg(numResults).arg(queryFragments.join(QStringLiteral("\"+AND+all:\"")))); ///< join search terms with an AND operation } void interpreteJournal(Entry &entry) { /** * TODO examples * - https://arxiv.org/abs/1111.5338 * Eur. Phys. J. H 36, 183-201 (2011) * - https://arxiv.org/abs/1111.5348 * IJCSI International Journal of Computer Science Issues, Vol. 8, Issue 3, No. 1, 2011, 224-229 * - https://arxiv.org/abs/1110.3379 * IJCSI International Journal of Computer Science Issues, Vol. 8, Issue 5, No 3, September 2011 ISSN (Online): 1694-0814 * - https://arxiv.org/abs/1102.5769 * The International Journal of Multimedia & Its Applications, 3(1), 2011 * - https://arxiv.org/abs/1003.3022 * American Journal of Physics -- April 2010 -- Volume 78, Issue 4, pp. 377-383 */ static const QRegExp /** * Structure: * - journal title: letters, space, dot * - optional: spaces * - volume: number * - volume: number * Examples: * Journal of Inefficient Algorithms 5 (2003) 35-39 * New J. Phys. 10 (2008) 033023 * Physics Letters A 297 (2002) 4-8 * Appl.Phys. B75 (2002) 655-665 * JHEP 0611 (2006) 045 * - https://arxiv.org/abs/1105.4915 * Astrophys. J. 736 (2011) 7 * - https://arxiv.org/abs/astro-ph/0209123 * Astrophys.J. 578 (2002) L103-L106 * - https://arxiv.org/abs/quant-ph/0611139 * Journal of Physics: Conference Series 70 (2007) 012003 * Captures: * 1: journal title * 2: volume * 3: year * 4: page start * 6: page end */ journalRef1("^([a-z. ]+[a-z.])\\s*(\\d+)\\s+\\((\\d{4})\\)\\s+([0-9A-Z]+)(-([0-9A-Z]+))?$", Qt::CaseInsensitive), /** * Examples: * Journal of Inefficient Algorithms, Vol. 93, No. 2 (2009), pp. 42-51 * Stud. Hist. Phil. Mod. Phys., Vol 33 no 3 (2003), pp. 441-468 * - https://arxiv.org/abs/quant-ph/0311028 * International Journal of Quantum Information, Vol. 1, No. 4 (2003) 427-441 * - https://arxiv.org/abs/1003.3521 * Int. J. Geometric Methods in Modern Physics Vol. 8, No. 1 (2011) 155-165 * Captures: * 1: journal title * 2: volume * 3: number * 4: year * 5: page start * 7: page end */ journalRef2("^([a-zA-Z. ]+[a-zA-Z.]),\\s+Vol\\.?\\s+(\\d+)[,]?\\s+No\\.?\\s+(\\d+)\\s+\\((\\d{4})\\)[,]?\\s+(pp\\.\\s+)?(\\d+)(-(\\d+))?$", Qt::CaseInsensitive), /** * Examples: * Journal of Inefficient Algorithms, volume 4, number 1, pp. 12-21, 2008 * - https://arxiv.org/abs/cs/0601030 * Scientometrics, volume 69, number 3, pp. 669-687, 2006 * Captures: * 1: journal title * 2: volume * 3: number * 4: page start * 6: page end * 7: year */ journalRef3("^([a-zA-Z. ]+),\\s+volume\\s+(\\d+),\\s+number\\s+(\\d+),\\s+pp\\.\\s+(\\d+)(-(\\d+))?,\\s+(\\d{4})$", Qt::CaseInsensitive), /** * Examples: * Journal of Inefficient Algorithms 4(1): 101-122, 2010 * JHEP0809:131,2008 * Phys.Rev.D78:013004,2008 * Lect.NotesPhys.690:107-127,2006 * Europhys. Letters 70:1-7 (2005) * - https://arxiv.org/abs/quant-ph/0608209 * J.Phys.A40:9025-9032,2007 * - https://arxiv.org/abs/hep-th/9907001 * Phys.Rev.Lett.85:5042-5045,2000 * - https://arxiv.org/abs/physics/0606007 * Journal of Conflict Resolution 51(1): 58 - 88 (2007) * - https://arxiv.org/abs/arxiv:cs/0609126 * Learn.Publ.20:16-22,2007 * - https://arxiv.org/abs/cs/9901005 * Journal of Artificial Intelligence Research (JAIR), 9:247-293 * - https://arxiv.org/abs/hep-ph/0403113 * Nucl.Instrum.Meth.A534:250-259,2004 * Captures: * 1: journal title * 2: volume * 4: number * 5: page start * 7: page end * 9 or 10: year */ journalRef4("^([a-z. ()]+)[,]?\\s*(\\d+)(\\((\\d+)\\))?:\\s*(\\d+)(\\s*-\\s*(\\d+))?(,\\s*(\\d{4})|\\s+\\((\\d{4})\\))?$", Qt::CaseInsensitive), /** * Examples: * Journal of Inefficient Algorithms vol. 31, 4 2000 * Phys. Rev. A 71, 032339 (2005) * Phys. Rev. Lett. 91, 027901 (2003) * Phys. Rev. A 78, 013620 (2008) * Phys. Rev. E 62, 1842 (2000) * J. Math. Phys. 49, 032105 (2008) * Phys. Rev. Lett. 91, 217905 (2003). * Physical Review B vol. 66, 161320(R) (2002) * - https://arxiv.org/abs/1003.1050 * Phys. Rev. A 82, 012304 (2010) * - https://arxiv.org/abs/quant-ph/0607107 * J. Mod. Opt., 54, 2211 (2007) * - https://arxiv.org/abs/quant-ph/0602069 * New J. Phys. 8, 58 (2006) * - https://arxiv.org/abs/quant-ph/0610030 * Rev. Mod. Phys. 79, 555 (2007) * - https://arxiv.org/abs/1007.2292 * J. Phys. A: Math. Theor. 44, 145304 (2011) * Captures: * 1: journal title * 3: volume * 4: page start * 6: year */ journalRef5("^([a-zA-Z. ]+)\\s+(vol\\.\\s+)?(\\d+),\\s+(\\d+)(\\([A-Z]+\\))?\\s+\\((\\d{4})\\)[.]?$"), /** * Examples: * Journal of Inefficient Algorithms, 11(2) (1999) 42-55 * Learned Publishing, 20(1) (January 2007) 16-22 * Captures: * 1: journal title * 2: volume * 3: number * 4: year * 5: page start * 7: page end */ journalRef6("^([a-zA-Z. ]+),\\s+(\\d+)\\((\\d+)\\)\\s+(\\(([A-Za-z]+\\s+)?(\\d{4})\\))?\\s+(\\d+)(-(\\d+))?$"), /** * Examples: * Pacific J. Math. 231 (2007), no. 2, 279–291 * Captures: * 1: journal title * 2: volume * 3: year * 4: number * 5: page start * 6: page end */ journalRef7("^([a-zA-Z. ]+[a-zA-Z.])\\s+(\\d+)\\s+\\((\\d+)\\), no\\.\\s+(\\d+),\\s+(\\d)[^ ]+(\\d+)$"), generalJour("^[a-z0-9]{,3}[a-z. ]+", Qt::CaseInsensitive), generalYear("\\b(18|19|20)\\d{2}\\b"), generalPages("\\b([1-9]\\d{0,2})\\s*[-]+\\s*([1-9]\\d{0,2})\\b"); const QString journalText = PlainTextValue::text(entry.value(Entry::ftJournal)); /// nothing to do on empty journal text if (journalText.isEmpty()) return; else entry.remove(Entry::ftJournal); if (journalRef1.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** * Captures: * 1: journal title * 2: volume * 3: year * 4: page start * 6: page end */ QString text; if (!(text = journalRef1.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef1.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef1.cap(3)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } if (!(text = journalRef1.cap(4)).isEmpty()) { const QString endPage = journalRef1.cap(6); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(QString(QStringLiteral("%1--%2")).arg(text, endPage)))); entry.insert(Entry::ftPages, v); } } } else if (journalRef2.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** * Captures: * 1: journal title * 2: volume * 3: number * 4: year * 5: page start * 7: page end */ QString text; if (!(text = journalRef2.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef2.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef2.cap(3)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftNumber, v); } if (!(text = journalRef2.cap(4)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } if (!(text = journalRef2.cap(5)).isEmpty()) { const QString endPage = journalRef2.cap(7); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(QString(QStringLiteral("%1%3%2")).arg(text, endPage, QChar(0x2013))))); entry.insert(Entry::ftPages, v); } } } else if (journalRef3.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** * Captures: * 1: journal title * 2: volume * 4: number * 5: page start * 7: page end * 9 or 10: year */ QString text; if (!(text = journalRef3.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef3.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef3.cap(4)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftNumber, v); } if (!(text = journalRef3.cap(9)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); if (!(text = journalRef3.cap(10)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } if (!(text = journalRef2.cap(5)).isEmpty()) { const QString endPage = journalRef2.cap(7); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(QString(QStringLiteral("%1%3%2")).arg(text, endPage, QChar(0x2013))))); entry.insert(Entry::ftPages, v); } } } } else if (journalRef4.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** * Captures: * 1: journal title * 2: volume * 4: number * 5: page start * 7: page end * 9 or 10: year */ QString text; if (!(text = journalRef4.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef4.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef4.cap(5)).isEmpty()) { const QString endPage = journalRef4.cap(7); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text.append(QChar(0x2013)).append(endPage)))); entry.insert(Entry::ftPages, v); } } if (!(text = journalRef4.cap(9)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } } else if (journalRef5.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** Captures: * 1: journal title * 3: volume * 4: page start * 6: year */ QString text; if (!(text = journalRef5.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef5.cap(3)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef5.cap(4)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } if (!(text = journalRef5.cap(6)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } } else if (journalRef6.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** Captures: * 1: journal title * 2: volume * 3: number * 4: year * 5: page start * 7: page end */ QString text; if (!(text = journalRef6.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef6.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef6.cap(3)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftNumber, v); } if (!(text = journalRef6.cap(4)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } if (!(text = journalRef6.cap(5)).isEmpty()) { const QString endPage = journalRef6.cap(7); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(QString(QStringLiteral("%1%3%2")).arg(text, endPage, QChar(0x2013))))); entry.insert(Entry::ftPages, v); } } } else if (journalRef7.indexIn(journalText, Qt::CaseInsensitive) >= 0) { /** Captures: * 1: journal title * 2: volume * 3: year * 4: number * 5: page start * 6: page end */ QString text; if (!(text = journalRef7.cap(1)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftJournal, v); } if (!(text = journalRef7.cap(2)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftVolume, v); } if (!(text = journalRef7.cap(3)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftYear, v); } if (!(text = journalRef7.cap(4)).isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftNumber, v); } if (!(text = journalRef7.cap(5)).isEmpty()) { const QString endPage = journalRef7.cap(6); if (endPage.isEmpty()) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(text))); entry.insert(Entry::ftPages, v); } else { Value v; v.append(QSharedPointer<PlainText>(new PlainText(QString(QStringLiteral("%1%3%2")).arg(text, endPage, QChar(0x2013))))); entry.insert(Entry::ftPages, v); } } } else { if (generalJour.indexIn(journalText) >= 0) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(generalJour.cap(0)))); entry.insert(Entry::ftPages, v); } if (generalYear.indexIn(journalText) >= 0) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(generalYear.cap(0)))); entry.insert(Entry::ftYear, v); } if (generalPages.indexIn(journalText) >= 0) { Value v; v.append(QSharedPointer<PlainText>(new PlainText(generalPages.cap(0)))); entry.insert(Entry::ftPages, v); } } } }; OnlineSearchArXiv::OnlineSearchArXiv(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchArXiv::OnlineSearchArXivPrivate(this)) { // nothing } OnlineSearchArXiv::~OnlineSearchArXiv() { delete d; } #ifdef HAVE_QTWIDGETS void OnlineSearchArXiv::startSearchFromForm() { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl()); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchArXiv::downloadDone); d->form->saveState(); } #endif // HAVE_QTWIDGETS void OnlineSearchArXiv::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchArXiv::downloadDone); } QString OnlineSearchArXiv::label() const { return i18n("arXiv.org"); } QString OnlineSearchArXiv::favIconUrl() const { return QStringLiteral("https://arxiv.org/favicon.ico"); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchArXiv::customWidget(QWidget *parent) { if (d->form == nullptr) d->form = new OnlineSearchArXiv::OnlineSearchQueryFormArXiv(parent); return d->form; } #endif // HAVE_QTWIDGETS QUrl OnlineSearchArXiv::homepage() const { return QUrl(QStringLiteral("https://arxiv.org/")); } void OnlineSearchArXiv::downloadDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString result = QString::fromUtf8(reply->readAll().constData()); result = result.remove(QStringLiteral("xmlns=\"http://www.w3.org/2005/Atom\"")); // FIXME fix arxiv2bibtex.xsl to handle namespace /// use XSL transformation to get BibTeX document from XML result const QString bibTeXcode = d->xslt.transform(result); if (bibTeXcode.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "XSL tranformation failed for data from " << reply->url().toDisplayString(); stopSearch(resultInvalidArguments); } else { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchArXiv::sanitizeEntry(QSharedPointer<Entry> entry) { OnlineSearchAbstract::sanitizeEntry(entry); d->interpreteJournal(*entry); } #include "onlinesearcharxiv.moc" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearcharxiv.h���������������������������������������0000664�0000000�0000000�00000004423�13313000262�0024466�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_ARXIV_H #define KBIBTEX_ONLINESEARCH_ARXIV_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchArXiv : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchArXiv(QObject *parent); ~OnlineSearchArXiv() override; #ifdef HAVE_QTWIDGETS void startSearchFromForm() override; #endif // HAVE_QTWIDGETS void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *customWidget(QWidget *parent) override; #endif // HAVE_QTWIDGETS QUrl homepage() const override; protected: QString favIconUrl() const override; void sanitizeEntry(QSharedPointer<Entry> entry) override; private: #ifdef HAVE_QTWIDGETS class OnlineSearchQueryFormArXiv; #endif // HAVE_QTWIDGETS class OnlineSearchArXivPrivate; OnlineSearchArXivPrivate *d; private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_ARXIV_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchbibsonomy.cpp���������������������������������0000664�0000000�0000000�00000025143�13313000262�0025673�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchbibsonomy.h" #include <QBuffer> #ifdef HAVE_QTWIDGETS #include <QLayout> #include <QSpinBox> #include <QLabel> #include <QIcon> #endif // HAVE_QTWIDGETS #include <QNetworkReply> #ifdef HAVE_KF5 #include <KLocalizedString> #include <KConfigGroup> #endif // HAVE_KF5 #ifdef HAVE_QTWIDGETS #include <KComboBox> #include <KMessageBox> #include <KLineEdit> #endif // HAVE_QTWIDGETS #include "fileimporterbibtex.h" #include "file.h" #include "entry.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" #ifdef HAVE_QTWIDGETS class OnlineSearchBibsonomy::OnlineSearchQueryFormBibsonomy : public OnlineSearchQueryFormAbstract { Q_OBJECT private: QString configGroupName; void loadState() { KConfigGroup configGroup(config, configGroupName); comboBoxSearchWhere->setCurrentIndex(configGroup.readEntry(QStringLiteral("searchWhere"), 0)); lineEditSearchTerm->setText(configGroup.readEntry(QStringLiteral("searchTerm"), QString())); numResultsField->setValue(configGroup.readEntry(QStringLiteral("numResults"), 10)); } public: KComboBox *comboBoxSearchWhere; KLineEdit *lineEditSearchTerm; QSpinBox *numResultsField; OnlineSearchQueryFormBibsonomy(QWidget *widget) : OnlineSearchQueryFormAbstract(widget), configGroupName(QStringLiteral("Search Engine Bibsonomy")) { QGridLayout *layout = new QGridLayout(this); layout->setMargin(0); comboBoxSearchWhere = new KComboBox(false, this); layout->addWidget(comboBoxSearchWhere, 0, 0, 1, 1); comboBoxSearchWhere->addItem(i18n("Tag"), "tag"); comboBoxSearchWhere->addItem(i18n("User"), "user"); comboBoxSearchWhere->addItem(i18n("Group"), "group"); comboBoxSearchWhere->addItem(i18n("Author"), "author"); comboBoxSearchWhere->addItem(i18n("Concept"), "concept/tag"); comboBoxSearchWhere->addItem(i18n("BibTeX Key"), "bibtexkey"); comboBoxSearchWhere->addItem(i18n("Everywhere"), "search"); comboBoxSearchWhere->setCurrentIndex(comboBoxSearchWhere->count() - 1); lineEditSearchTerm = new KLineEdit(this); layout->addWidget(lineEditSearchTerm, 0, 1, 1, 1); lineEditSearchTerm->setClearButtonEnabled(true); connect(lineEditSearchTerm, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormBibsonomy::returnPressed); QLabel *label = new QLabel(i18n("Number of Results:"), this); layout->addWidget(label, 1, 0, 1, 1); numResultsField = new QSpinBox(this); numResultsField->setMinimum(3); numResultsField->setMaximum(100); numResultsField->setValue(20); layout->addWidget(numResultsField, 1, 1, 1, 1); label->setBuddy(numResultsField); layout->setRowStretch(2, 100); lineEditSearchTerm->setFocus(Qt::TabFocusReason); loadState(); } bool readyToStart() const override { return !lineEditSearchTerm->text().isEmpty(); } void copyFromEntry(const Entry &entry) override { comboBoxSearchWhere->setCurrentIndex(comboBoxSearchWhere->count() - 1); lineEditSearchTerm->setText(authorLastNames(entry).join(QStringLiteral(" ")) + QLatin1Char(' ') + PlainTextValue::text(entry[Entry::ftTitle])); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("searchWhere"), comboBoxSearchWhere->currentIndex()); configGroup.writeEntry(QStringLiteral("searchTerm"), lineEditSearchTerm->text()); configGroup.writeEntry(QStringLiteral("numResults"), numResultsField->value()); config->sync(); } }; #endif // HAVE_QTWIDGETS class OnlineSearchBibsonomy::OnlineSearchBibsonomyPrivate { private: OnlineSearchBibsonomy *p; public: #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormBibsonomy *form; #endif // HAVE_QTWIDGETS OnlineSearchBibsonomyPrivate(OnlineSearchBibsonomy *parent) : p(parent) #ifdef HAVE_QTWIDGETS , form(nullptr) #endif // HAVE_QTWIDGETS { // nothing } #ifdef HAVE_QTWIDGETS QUrl buildQueryUrl() { if (form == nullptr) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Cannot build query url if no form is specified"; return QUrl(); } QString queryString = p->encodeURL(form->lineEditSearchTerm->text()); return QUrl(QStringLiteral("http://www.bibsonomy.org/bib/") + form->comboBoxSearchWhere->itemData(form->comboBoxSearchWhere->currentIndex()).toString() + "/" + queryString + QString(QStringLiteral("?items=%1")).arg(form->numResultsField->value())); } #endif // HAVE_QTWIDGETS QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { QString url = QStringLiteral("http://www.bibsonomy.org/bib/"); bool hasFreeText = !query[queryKeyFreeText].isEmpty(); bool hasTitle = !query[queryKeyTitle].isEmpty(); bool hasAuthor = !query[queryKeyAuthor].isEmpty(); bool hasYear = !query[queryKeyYear].isEmpty(); QString searchType = QStringLiteral("search"); if (hasAuthor && !hasFreeText && !hasTitle && !hasYear) { /// if only the author field is used, a special author search /// on BibSonomy can be used searchType = QStringLiteral("author"); } QStringList queryFragments; for (QMap<QString, QString>::ConstIterator it = query.constBegin(); it != query.constEnd(); ++it) { queryFragments << p->encodeURL(it.value()); } QString queryString = queryFragments.join(QStringLiteral("%20")); url.append(searchType + QLatin1Char('/') + queryString + QString(QStringLiteral("?items=%1")).arg(numResults)); return QUrl(url); } void sanitizeEntry(QSharedPointer<Entry> entry) { /// if entry contains a description field but no abstract, /// rename description field to abstract const QString ftDescription = QStringLiteral("description"); if (!entry->contains(Entry::ftAbstract) && entry->contains(ftDescription)) { Value v = entry->value(QStringLiteral("description")); entry->insert(Entry::ftAbstract, v); entry->remove(ftDescription); } } }; OnlineSearchBibsonomy::OnlineSearchBibsonomy(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchBibsonomyPrivate(this)) { // nothing } OnlineSearchBibsonomy::~OnlineSearchBibsonomy() { delete d; } void OnlineSearchBibsonomy::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBibsonomy::downloadDone); } #ifdef HAVE_QTWIDGETS void OnlineSearchBibsonomy::startSearchFromForm() { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl()); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBibsonomy::downloadDone); emit progress(0, numSteps); } #endif // HAVE_QTWIDGETS QString OnlineSearchBibsonomy::label() const { return i18n("Bibsonomy"); } QString OnlineSearchBibsonomy::favIconUrl() const { return QStringLiteral("http://www.bibsonomy.org/resources/image/favicon.png"); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchBibsonomy::customWidget(QWidget *parent) { if (d->form == nullptr) d->form = new OnlineSearchBibsonomy::OnlineSearchQueryFormBibsonomy(parent); return d->form; } #endif // HAVE_QTWIDGETS QUrl OnlineSearchBibsonomy::homepage() const { return QUrl(QStringLiteral("http://www.bibsonomy.org/")); } void OnlineSearchBibsonomy::downloadDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); const File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } else { /// returned file is empty stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } #include "onlinesearchbibsonomy.moc" �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchbibsonomy.h�����������������������������������0000664�0000000�0000000�00000004455�13313000262�0025343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_BIBSONOMY_H #define KBIBTEX_ONLINESEARCH_BIBSONOMY_H #include "onlinesearchabstract.h" class QSpinBox; class KComboBox; class KLineEdit; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchBibsonomy : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchBibsonomy(QObject *parent); ~OnlineSearchBibsonomy() override; #ifdef HAVE_QTWIDGETS void startSearchFromForm() override; #endif // HAVE_QTWIDGETS void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *customWidget(QWidget *parent) override; #endif // HAVE_QTWIDGETS QUrl homepage() const override; protected: QString favIconUrl() const override; private: #ifdef HAVE_QTWIDGETS class OnlineSearchQueryFormBibsonomy; #endif // HAVE_QTWIDGETS class OnlineSearchBibsonomyPrivate; OnlineSearchBibsonomyPrivate *d; private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_BIBSONOMY_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchbiorxiv.cpp�����������������������������������0000664�0000000�0000000�00000017212�13313000262�0025352�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2016-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchbiorxiv.h" #include <QNetworkRequest> #include <QNetworkReply> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchBioRxiv::Private { public: QSet<QUrl> resultPageUrls; explicit Private(OnlineSearchBioRxiv *) { /// nothing } }; OnlineSearchBioRxiv::OnlineSearchBioRxiv(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchBioRxiv::Private(this)) { /// nothing } OnlineSearchBioRxiv::~OnlineSearchBioRxiv() { /// nothing } void OnlineSearchBioRxiv::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = numResults * 2 + 1); QString urlText(QString(QStringLiteral("http://www.biorxiv.org/search/numresults:%1 sort:relevance-rank title_flags:match-phrase format_result:standard ")).arg(numResults)); urlText.append(query[queryKeyFreeText]); bool ok = false; int year = query[queryKeyYear].toInt(&ok); if (ok && year >= 1800 && year < 2100) urlText.append(QString(QStringLiteral(" limit_from:%1-01-01 limit_to:%1-12-31")).arg(year)); const QStringList authors = splitRespectingQuotationMarks(query[queryKeyAuthor]); int authorIndex = 1; for (QStringList::ConstIterator it = authors.constBegin(); it != authors.constEnd(); ++it, ++authorIndex) urlText.append(QString(QStringLiteral(" author%1:%2")).arg(authorIndex).arg(QString(*it).replace(QStringLiteral(" "), QStringLiteral("+")))); const QString title = QString(query[queryKeyTitle]).replace(QStringLiteral(" "), QStringLiteral("+")); if (!title.isEmpty()) urlText.append(QString(QStringLiteral(" title:%1")).arg(title)); QNetworkRequest request(QUrl::fromUserInput(urlText)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBioRxiv::resultsPageDone); } QString OnlineSearchBioRxiv::label() const { return i18n("bioRxiv"); } QUrl OnlineSearchBioRxiv::homepage() const { return QUrl(QStringLiteral("http://www.biorxiv.org/")); } QString OnlineSearchBioRxiv::favIconUrl() const { return QStringLiteral("http://www.biorxiv.org/sites/default/files/images/favicon.ico"); } void OnlineSearchBioRxiv::resultsPageDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString htmlCode = QString::fromUtf8(reply->readAll().constData()); static const QRegExp contentRegExp(QStringLiteral("/content/early/[12]\\d{3}/[01]\\d/\\d{2}/\\d+")); int p = -1; while ((p = contentRegExp.indexIn(htmlCode, p + 1)) > 0) { const QUrl url = QUrl(QStringLiteral("http://www.biorxiv.org") + contentRegExp.cap(0)); d->resultPageUrls.insert(url); } if (d->resultPageUrls.isEmpty()) stopSearch(resultNoError); else { const QUrl firstUrl = *d->resultPageUrls.constBegin(); d->resultPageUrls.remove(firstUrl); QNetworkRequest request(firstUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBioRxiv::resultPageDone); } } } void OnlineSearchBioRxiv::resultPageDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString htmlCode = QString::fromUtf8(reply->readAll().constData()); static const QRegExp highwireRegExp(QStringLiteral("/highwire/citation/\\d+/bibtext")); if (highwireRegExp.indexIn(htmlCode) > 0) { const QUrl url = QUrl(QStringLiteral("http://www.biorxiv.org") + highwireRegExp.cap(0)); QNetworkRequest request(url); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBioRxiv::bibTeXDownloadDone); } else if (!d->resultPageUrls.isEmpty()) { const QUrl firstUrl = *d->resultPageUrls.constBegin(); d->resultPageUrls.remove(firstUrl); QNetworkRequest request(firstUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBioRxiv::resultPageDone); } else stopSearch(resultNoError); } } void OnlineSearchBioRxiv::bibTeXDownloadDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); publishEntry(entry); } delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); } } } if (d->resultPageUrls.isEmpty()) stopSearch(resultNoError); else { const QUrl firstUrl = *d->resultPageUrls.constBegin(); d->resultPageUrls.remove(firstUrl); QNetworkRequest request(firstUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchBioRxiv::resultPageDone); } } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchbiorxiv.h�������������������������������������0000664�0000000�0000000�00000003733�13313000262�0025022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2016-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_BIORXIV_H #define KBIBTEX_ONLINESEARCH_BIORXIV_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchBioRxiv : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchBioRxiv(QWidget *parent); ~OnlineSearchBioRxiv() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private slots: void resultsPageDone(); void resultPageDone(); void bibTeXDownloadDone(); private: class Private; Private *const d; }; #endif // KBIBTEX_ONLINESEARCH_BIORXIV_H �������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchcernds.cpp������������������������������������0000664�0000000�0000000�00000012213�13313000262�0025142�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/**************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * Copyright (C) 2013 Yngve I. Levinsen <yngve.inntjore.levinsen@cern.ch> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ****************************************************************************/ #include "onlinesearchcernds.h" #include <QUrlQuery> #include <KLocalizedString> #include "logging_networking.h" OnlineSearchCERNDS::OnlineSearchCERNDS(QWidget *parent) : OnlineSearchSimpleBibTeXDownload(parent) { // nothing } QString OnlineSearchCERNDS::label() const { return i18n("CERN Document Server"); } QUrl OnlineSearchCERNDS::homepage() const { return QUrl(QStringLiteral("http://cds.cern.ch/")); } QString OnlineSearchCERNDS::favIconUrl() const { return QStringLiteral("http://cds.cern.ch/favicon.ico"); } QUrl OnlineSearchCERNDS::buildQueryUrl(const QMap<QString, QString> &query, int numResults) { /// Example for a search URL: /// http://cds.cern.ch/search?action_search=Search&sf=&so=d&rm=&sc=0&of=hx&f=&rg=10&ln=en&as=1&m1=a&p1=stone&f1=title&op1=a&m2=a&p2=smith&f2=author&op2=a&m3=a&p3=&f3= /// of=hx asks for BibTeX results /// rg=10 asks for 10 results /// c=CERN+Document+Server or c=Articles+%26+Preprints to limit scope /// Search search argument (X={1,2,3,...}): /// pX search text /// mX a=all words; o=any; e=exact phrase; p=partial phrase; r=regular expression /// opX a=AND; o=OR; n=AND NOT /// fX ""=any field; title; author; reportnumber; year; fulltext /// Build URL QUrl url = QUrl(QStringLiteral("http://cds.cern.ch/search?ln=en&action_search=Search&c=Articles+%26+Preprints&as=1&sf=&so=d&rm=&sc=0&of=hx&f=")); QUrlQuery q(url); /// Set number of expected results q.addQueryItem(QStringLiteral("rg"), QString::number(numResults)); /// Number search arguments int argumentCount = 0; /// add words from "free text" field const QStringList freeTextWords = splitRespectingQuotationMarks(query[queryKeyFreeText]); for (const QString &word : freeTextWords) { ++argumentCount; q.addQueryItem(QString(QStringLiteral("p%1")).arg(argumentCount), word); q.addQueryItem(QString(QStringLiteral("m%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("op%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("f%1")).arg(argumentCount), QStringLiteral("")); } /// add words from "author" field const QStringList authorWords = splitRespectingQuotationMarks(query[queryKeyAuthor]); for (const QString &word : authorWords) { ++argumentCount; q.addQueryItem(QString(QStringLiteral("p%1")).arg(argumentCount), word); q.addQueryItem(QString(QStringLiteral("m%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("op%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("f%1")).arg(argumentCount), QStringLiteral("author")); } /// add words from "title" field const QStringList titleWords = splitRespectingQuotationMarks(query[queryKeyTitle]); for (const QString &word : titleWords) { ++argumentCount; q.addQueryItem(QString(QStringLiteral("p%1")).arg(argumentCount), word); q.addQueryItem(QString(QStringLiteral("m%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("op%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("f%1")).arg(argumentCount), QStringLiteral("title")); } /// add words from "title" field const QString year = query[queryKeyYear]; if (!year.isEmpty()) { ++argumentCount; q.addQueryItem(QString(QStringLiteral("p%1")).arg(argumentCount), year); q.addQueryItem(QString(QStringLiteral("m%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("op%1")).arg(argumentCount), QStringLiteral("a")); q.addQueryItem(QString(QStringLiteral("f%1")).arg(argumentCount), QStringLiteral("year")); } url.setQuery(q); return url; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchcernds.h��������������������������������������0000664�0000000�0000000�00000003462�13313000262�0024615�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_CERNDS_H #define KBIBTEX_ONLINESEARCH_CERNDS_H #include "onlinesearchsimplebibtexdownload.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchCERNDS : public OnlineSearchSimpleBibTeXDownload { Q_OBJECT public: explicit OnlineSearchCERNDS(QWidget *parent); QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) override; }; #endif // KBIBTEX_ONLINESEARCH_CERNDS_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchdoi.cpp���������������������������������������0000664�0000000�0000000�00000020324�13313000262�0024441�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchdoi.h" #ifdef HAVE_QTWIDGETS #include <QLabel> #include <QGridLayout> #endif // HAVE_QTWIDGETS #include <QNetworkRequest> #include <QNetworkReply> #ifdef HAVE_QTWIDGETS #include <KLineEdit> #include <KConfigGroup> #endif // HAVE_QTWIDGETS #include <KLocalizedString> #include "kbibtex.h" #include "internalnetworkaccessmanager.h" #include "fileimporterbibtex.h" #include "logging_networking.h" #ifdef HAVE_QTWIDGETS class OnlineSearchDOI::OnlineSearchQueryFormDOI : public OnlineSearchQueryFormAbstract { Q_OBJECT private: QString configGroupName; void loadState() { KConfigGroup configGroup(config, configGroupName); lineEditDoiNumber->setText(configGroup.readEntry(QStringLiteral("doiNumber"), QString())); } public: KLineEdit *lineEditDoiNumber; OnlineSearchQueryFormDOI(QWidget *widget) : OnlineSearchQueryFormAbstract(widget), configGroupName(QStringLiteral("Search Engine DOI")) { QGridLayout *layout = new QGridLayout(this); layout->setMargin(0); QLabel *label = new QLabel(i18n("DOI:"), this); layout->addWidget(label, 0, 0, 1, 1); lineEditDoiNumber = new KLineEdit(this); layout->addWidget(lineEditDoiNumber, 0, 1, 1, 1); lineEditDoiNumber->setClearButtonEnabled(true); connect(lineEditDoiNumber, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormDOI::returnPressed); layout->setRowStretch(1, 100); lineEditDoiNumber->setFocus(Qt::TabFocusReason); loadState(); } bool readyToStart() const override { return !lineEditDoiNumber->text().isEmpty(); } void copyFromEntry(const Entry &entry) override { lineEditDoiNumber->setText(PlainTextValue::text(entry[Entry::ftDOI])); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("doiNumber"), lineEditDoiNumber->text()); config->sync(); } }; #endif // HAVE_QTWIDGETS class OnlineSearchDOI::OnlineSearchDOIPrivate { private: // UNUSED OnlineSearchDOI *p; public: #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormDOI *form; #endif // HAVE_QTWIDGETS OnlineSearchDOIPrivate(OnlineSearchDOI */* UNUSED parent*/) #ifdef HAVE_QTWIDGETS : form(nullptr) #endif // HAVE_QTWIDGETS { // nothing } #ifdef HAVE_QTWIDGETS QUrl buildQueryUrl() { if (form == nullptr) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Cannot build query url if no form is specified"; return QUrl(); } return QUrl(QStringLiteral("http://dx.doi.org/") + form->lineEditDoiNumber->text()); } #endif // HAVE_QTWIDGETS QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { Q_UNUSED(numResults) if (KBibTeX::doiRegExp.indexIn(query[queryKeyFreeText]) >= 0) { return QUrl(QStringLiteral("http://dx.doi.org/") + KBibTeX::doiRegExp.cap(0)); } return QUrl(); } }; OnlineSearchDOI::OnlineSearchDOI(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchDOIPrivate(this)) { // TODO } OnlineSearchDOI::~OnlineSearchDOI() { delete d; } #ifdef HAVE_QTWIDGETS void OnlineSearchDOI::startSearchFromForm() { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); const QUrl url = d->buildQueryUrl(); if (url.isValid()) { QNetworkRequest request(url); request.setRawHeader(QByteArray("Accept"), QByteArray("text/bibliography; style=bibtex")); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchDOI::downloadDone); d->form->saveState(); } else delayedStoppedSearch(resultNoError); } #endif // HAVE_QTWIDGETS void OnlineSearchDOI::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); const QUrl url = d->buildQueryUrl(query, numResults); if (url.isValid()) { QNetworkRequest request(url); request.setRawHeader(QByteArray("Accept"), QByteArray("text/bibliography; style=bibtex")); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchDOI::downloadDone); } else delayedStoppedSearch(resultNoError); } QString OnlineSearchDOI::label() const { return i18n("DOI"); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchDOI::customWidget(QWidget *parent) { if (d->form == nullptr) d->form = new OnlineSearchDOI::OnlineSearchQueryFormDOI(parent); return d->form; } #endif // HAVE_QTWIDGETS QUrl OnlineSearchDOI::homepage() const { return QUrl(QStringLiteral("http://dx.doi.org/")); } QString OnlineSearchDOI::favIconUrl() const { return QStringLiteral("http://dx.doi.org/favicon.ico"); } void OnlineSearchDOI::downloadDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QUrl redirUrl; if (handleErrors(reply, redirUrl)) { if (redirUrl.isValid()) { /// redirection to another url ++numSteps; QNetworkRequest request(redirUrl); request.setRawHeader(QByteArray("Accept"), QByteArray("text/bibliography; style=bibtex")); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchDOI::downloadDone); } else { /// ensure proper treatment of UTF-8 characters const QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } else { /// returned file is empty stopSearch(resultNoError); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } #include "onlinesearchdoi.moc" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchdoi.h�����������������������������������������0000664�0000000�0000000�00000004225�13313000262�0024110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_DOI_H #define KBIBTEX_ONLINESEARCH_DOI_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchDOI : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchDOI(QWidget *parent); ~OnlineSearchDOI() override; #ifdef HAVE_QTWIDGETS void startSearchFromForm() override; #endif // HAVE_QTWIDGETS void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *customWidget(QWidget *parent) override; #endif // HAVE_QTWIDGETS QUrl homepage() const override; protected: QString favIconUrl() const override; private: class OnlineSearchQueryFormDOI; class OnlineSearchDOIPrivate; OnlineSearchDOIPrivate *d; private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_DOI_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchgeneral.cpp�����������������������������������0000664�0000000�0000000�00000012736�13313000262�0025313�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchgeneral.h" #ifdef HAVE_QTWIDGETS #include <QFormLayout> #include <QLabel> #include <QSpinBox> #include <KLineEdit> #include <KLocalizedString> #include <KConfigGroup> #include "entry.h" OnlineSearchQueryFormGeneral::OnlineSearchQueryFormGeneral(QWidget *parent) : OnlineSearchQueryFormAbstract(parent), configGroupName(QStringLiteral("Search Engine General")) { QFormLayout *layout = new QFormLayout(this); layout->setMargin(0); QLabel *label = new QLabel(i18n("Free text:"), this); KLineEdit *lineEdit = new KLineEdit(this); layout->addRow(label, lineEdit); lineEdit->setClearButtonEnabled(true); lineEdit->setFocus(Qt::TabFocusReason); queryFields.insert(OnlineSearchAbstract::queryKeyFreeText, lineEdit); label->setBuddy(lineEdit); connect(lineEdit, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormGeneral::returnPressed); label = new QLabel(i18n("Title:"), this); lineEdit = new KLineEdit(this); layout->addRow(label, lineEdit); lineEdit->setClearButtonEnabled(true); queryFields.insert(OnlineSearchAbstract::queryKeyTitle, lineEdit); label->setBuddy(lineEdit); connect(lineEdit, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormGeneral::returnPressed); label = new QLabel(i18n("Author:"), this); lineEdit = new KLineEdit(this); layout->addRow(label, lineEdit); lineEdit->setClearButtonEnabled(true); queryFields.insert(OnlineSearchAbstract::queryKeyAuthor, lineEdit); label->setBuddy(lineEdit); connect(lineEdit, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormGeneral::returnPressed); label = new QLabel(i18n("Year:"), this); lineEdit = new KLineEdit(this); layout->addRow(label, lineEdit); lineEdit->setClearButtonEnabled(true); queryFields.insert(OnlineSearchAbstract::queryKeyYear, lineEdit); label->setBuddy(lineEdit); connect(lineEdit, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormGeneral::returnPressed); label = new QLabel(i18n("Number of Results:"), this); numResultsField = new QSpinBox(this); layout->addRow(label, numResultsField); numResultsField->setMinimum(3); numResultsField->setMaximum(100); numResultsField->setValue(20); label->setBuddy(numResultsField); loadState(); } bool OnlineSearchQueryFormGeneral::readyToStart() const { for (QMap<QString, KLineEdit *>::ConstIterator it = queryFields.constBegin(); it != queryFields.constEnd(); ++it) if (!it.value()->text().isEmpty()) return true; return false; } void OnlineSearchQueryFormGeneral::copyFromEntry(const Entry &entry) { queryFields[OnlineSearchAbstract::queryKeyFreeText]->setText(QStringLiteral("")); queryFields[OnlineSearchAbstract::queryKeyTitle]->setText(PlainTextValue::text(entry[Entry::ftTitle])); queryFields[OnlineSearchAbstract::queryKeyAuthor]->setText(authorLastNames(entry).join(QStringLiteral(" "))); queryFields[OnlineSearchAbstract::queryKeyYear]->setText(PlainTextValue::text(entry[Entry::ftYear])); } QMap<QString, QString> OnlineSearchQueryFormGeneral::getQueryTerms() { QMap<QString, QString> result; for (QMap<QString, KLineEdit *>::ConstIterator it = queryFields.constBegin(); it != queryFields.constEnd(); ++it) { if (!it.value()->text().isEmpty()) result.insert(it.key(), it.value()->text()); } saveState(); return result; } int OnlineSearchQueryFormGeneral::getNumResults() { return numResultsField->value(); } void OnlineSearchQueryFormGeneral::loadState() { KConfigGroup configGroup(config, configGroupName); for (QMap<QString, KLineEdit *>::ConstIterator it = queryFields.constBegin(); it != queryFields.constEnd(); ++it) { it.value()->setText(configGroup.readEntry(it.key(), QString())); } numResultsField->setValue(configGroup.readEntry(QStringLiteral("numResults"), 10)); } void OnlineSearchQueryFormGeneral::saveState() { KConfigGroup configGroup(config, configGroupName); for (QMap<QString, KLineEdit *>::ConstIterator it = queryFields.constBegin(); it != queryFields.constEnd(); ++it) { configGroup.writeEntry(it.key(), it.value()->text()); } configGroup.writeEntry(QStringLiteral("numResults"), numResultsField->value()); config->sync(); } #endif // HAVE_QTWIDGETS ����������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchgeneral.h�������������������������������������0000664�0000000�0000000�00000003730�13313000262�0024752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_GENERAL_H #define KBIBTEX_ONLINESEARCH_GENERAL_H #include <KSharedConfig> #include "onlinesearchabstract.h" #ifdef HAVE_QTWIDGETS class QSpinBox; class KLineEdit; class KBIBTEXNETWORKING_EXPORT OnlineSearchQueryFormGeneral : public OnlineSearchQueryFormAbstract { Q_OBJECT public: explicit OnlineSearchQueryFormGeneral(QWidget *parent); bool readyToStart() const override; void copyFromEntry(const Entry &) override; QMap<QString, QString> getQueryTerms(); int getNumResults(); private: QMap<QString, KLineEdit *> queryFields; QSpinBox *numResultsField; const QString configGroupName; void loadState(); void saveState(); }; #endif // HAVE_QTWIDGETS #endif // KBIBTEX_ONLINESEARCH_GENERAL_H ����������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchgooglescholar.cpp�����������������������������0000664�0000000�0000000�00000046623�13313000262�0026530�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchgooglescholar.h" #include <QNetworkReply> #include <QIcon> #include <QUrlQuery> #include <QRegularExpression> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchGoogleScholar::OnlineSearchGoogleScholarPrivate { private: // UNUSED OnlineSearchGoogleScholar *p; public: int numResults; QMap<QString, QString> listBibTeXurls; QString queryFreetext, queryAuthor, queryYear; QString startPageUrl; QString advancedSearchPageUrl; QString queryPageUrl; FileImporterBibTeX *importer; OnlineSearchGoogleScholarPrivate(OnlineSearchGoogleScholar *parent) : /* UNUSED p(parent), */ numResults(0) { importer = new FileImporterBibTeX(parent); startPageUrl = QStringLiteral("http://scholar.google.com/"); queryPageUrl = QStringLiteral("http://%1/scholar"); } ~OnlineSearchGoogleScholarPrivate() { delete importer; } QString documentUrlForBibTeXEntry(const QString &htmlText, int bibLinkPos) { /// Regular expression to detect text of a link to a document static const QRegExp documentLinkIndicator(QStringLiteral("\\[(PDF|HTML)\\]"), Qt::CaseSensitive); /// Text for link is *before* the BibTeX link in Google's HTML code int posDocumentLinkText = htmlText.lastIndexOf(documentLinkIndicator, bibLinkPos); /// Check position of previous BibTeX link to not extract the wrong document link int posPreviousBib = htmlText.lastIndexOf(QStringLiteral("/scholar.bib"), bibLinkPos - 3); if (posPreviousBib < 0) posPreviousBib = 0; /// no previous BibTeX entry? /// If all found position values look reasonable ... if (posDocumentLinkText > posPreviousBib) { /// There is a [PDF] or [HTML] link for this BibTeX entry, so find URL /// Variables p1 and p2 are used to close in to the document's URL int p1 = htmlText.lastIndexOf(QStringLiteral("<a "), posDocumentLinkText); if (p1 > 0) { p1 = htmlText.indexOf(QStringLiteral("href=\""), p1); if (p1 > 0) { int p2 = htmlText.indexOf(QLatin1Char('"'), p1 + 7); if (p2 > 0) return htmlText.mid(p1 + 6, p2 - p1 - 6).replace(QStringLiteral("&amp;"), QStringLiteral("&")); } } } return QString(); } QString mainUrlForBibTeXEntry(const QString &htmlText, int bibLinkPos) { /// Text for link is *before* the BibTeX link in Google's HTML code int posH3 = htmlText.lastIndexOf(QStringLiteral("<h3 "), bibLinkPos); /// Check position of previous BibTeX link to not extract the wrong document link int posPreviousBib = htmlText.lastIndexOf(QStringLiteral("/scholar.bib"), bibLinkPos - 3); if (posPreviousBib < 0) posPreviousBib = 0; /// no previous BibTeX entry? /// If all found position values look reasonable ... if (posH3 > posPreviousBib) { /// There is a h3 tag for this BibTeX entry, so find URL /// Variables p1 and p2 are used to close in to the document's URL int p1 = htmlText.indexOf(QStringLiteral("href=\""), posH3); if (p1 > 0) { int p2 = htmlText.indexOf(QLatin1Char('"'), p1 + 7); if (p2 > 0) return htmlText.mid(p1 + 6, p2 - p1 - 6).replace(QStringLiteral("&amp;"), QStringLiteral("&")); } } return QString(); } }; OnlineSearchGoogleScholar::OnlineSearchGoogleScholar(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchGoogleScholar::OnlineSearchGoogleScholarPrivate(this)) { // nothing } OnlineSearchGoogleScholar::~OnlineSearchGoogleScholar() { delete d; } void OnlineSearchGoogleScholar::startSearch(const QMap<QString, QString> &query, int numResults) { d->numResults = numResults; m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = numResults + 4); const auto respectingQuotationMarksFreeText = splitRespectingQuotationMarks(query[queryKeyFreeText]); const auto respectingQuotationMarksTitle = splitRespectingQuotationMarks(query[queryKeyTitle]); QStringList queryFragments; queryFragments.reserve(respectingQuotationMarksFreeText.size() + respectingQuotationMarksTitle.size()); for (const QString &queryFragment : respectingQuotationMarksFreeText) { queryFragments.append(encodeURL(queryFragment)); } for (const QString &queryFragment : respectingQuotationMarksTitle) { queryFragments.append(encodeURL(queryFragment)); } d->queryFreetext = queryFragments.join(QStringLiteral("+")); const auto respectingQuotationMarksAuthor = splitRespectingQuotationMarks(query[queryKeyAuthor]); queryFragments.clear(); queryFragments.reserve(respectingQuotationMarksAuthor.size()); for (const QString &queryFragment : respectingQuotationMarksAuthor) { queryFragments.append(encodeURL(queryFragment)); } d->queryAuthor = queryFragments.join(QStringLiteral("+")); d->queryYear = encodeURL(query[queryKeyYear]); QUrl url(d->startPageUrl); QNetworkRequest request(url); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingStartPage); } void OnlineSearchGoogleScholar::doneFetchingStartPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QUrl newDomainUrl; if (handleErrors(reply, newDomainUrl)) { if (newDomainUrl.isValid() && newDomainUrl != reply->url()) { /// following redirection to country-specific domain ++numSteps; QNetworkRequest request(newDomainUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingStartPage); } else { /// landed on country-specific domain static const QRegularExpression pathToSettingsPage(QStringLiteral(" href=\"(/scholar_settings[^ \"]*)")); const QString htmlCode = QString::fromUtf8(reply->readAll()); const QRegularExpressionMatch pathToSettingsPageMatch = pathToSettingsPage.match(htmlCode); if (!pathToSettingsPageMatch.hasMatch() || pathToSettingsPageMatch.captured(1).isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "No link to Google Scholar settings found"; stopSearch(resultNoError); return; } QUrl url = reply->url().resolved(QUrl(decodeURL(pathToSettingsPageMatch.captured(1)))); QUrlQuery query(url); query.removeQueryItem(QStringLiteral("hl")); query.addQueryItem(QStringLiteral("hl"), QStringLiteral("en")); query.removeQueryItem(QStringLiteral("as_sdt")); query.addQueryItem(QStringLiteral("as_sdt"), QStringLiteral("0,5")); url.setQuery(query); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply->url()); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingConfigPage); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchGoogleScholar::doneFetchingConfigPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { const QString htmlText = QString::fromUtf8(reply->readAll().constData()); static const QRegularExpression formOpeningTag(QStringLiteral("<form [^>]+action=\"([^\"]*scholar_setprefs[^\"]*)")); const QRegularExpressionMatch formOpeningTagMatch = formOpeningTag.match(htmlText); const int formOpeningTagPos = formOpeningTagMatch.capturedStart(0); if (formOpeningTagPos < 0) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Could not find opening tag for form:" << formOpeningTag.pattern(); stopSearch(resultNoError); return; } QMap<QString, QString> inputMap = formParameters(htmlText, formOpeningTagPos); inputMap[QStringLiteral("hl")] = QStringLiteral("en"); inputMap[QStringLiteral("scis")] = QStringLiteral("yes"); inputMap[QStringLiteral("scisf")] = QStringLiteral("4"); inputMap[QStringLiteral("num")] = QString::number(d->numResults); inputMap[QStringLiteral("submit")] = QStringLiteral(""); QUrl url = reply->url().resolved(QUrl(decodeURL(formOpeningTagMatch.captured(1)))); QUrlQuery query(url); for (QMap<QString, QString>::ConstIterator it = inputMap.constBegin(); it != inputMap.constEnd(); ++it) { query.removeQueryItem(it.key()); query.addQueryItem(it.key(), it.value()); } url.setQuery(query); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingSetConfigPage); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchGoogleScholar::doneFetchingSetConfigPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { QUrl url(QString(d->queryPageUrl).arg(reply->url().host())); QUrlQuery query(url); query.addQueryItem(QStringLiteral("as_q"), d->queryFreetext); query.addQueryItem(QStringLiteral("as_sauthors"), d->queryAuthor); query.addQueryItem(QStringLiteral("as_ylo"), d->queryYear); query.addQueryItem(QStringLiteral("as_yhi"), d->queryYear); query.addQueryItem(QStringLiteral("as_vis"), QStringLiteral("1")); ///< include citations query.addQueryItem(QStringLiteral("num"), QString::number(d->numResults)); query.addQueryItem(QStringLiteral("btnG"), QStringLiteral("Search Scholar")); url.setQuery(query); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingQueryPage); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchGoogleScholar::doneFetchingQueryPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { const QString htmlText = QString::fromUtf8(reply->readAll().constData()); static const QRegExp linkToBib("/scholar.bib\\?[^\" >]+"); int pos = 0; d->listBibTeXurls.clear(); while ((pos = linkToBib.indexIn(htmlText, pos)) != -1) { /// Try to figure out [PDF] or [HTML] link associated with BibTeX entry const QString documentUrl = d->documentUrlForBibTeXEntry(htmlText, pos); /// Extract primary link associated with BibTeX entry const QString primaryUrl = d->mainUrlForBibTeXEntry(htmlText, pos); const QString bibtexUrl("https://" + reply->url().host() + linkToBib.cap(0).replace(QStringLiteral("&amp;"), QStringLiteral("&"))); d->listBibTeXurls.insert(bibtexUrl, primaryUrl + QLatin1Char('|') + documentUrl); pos += linkToBib.matchedLength(); } if (!d->listBibTeXurls.isEmpty()) { const QString bibtexUrl = d->listBibTeXurls.constBegin().key(); const QStringList urls = d->listBibTeXurls.constBegin().value().split(QStringLiteral("|"), QString::KeepEmptyParts); const QString primaryUrl = urls.first(); const QString documentUrl = urls.last(); QNetworkRequest request(bibtexUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); if (!primaryUrl.isEmpty()) { /// Store primary URL as a property of the request/reply newReply->setProperty("primaryurl", QVariant::fromValue<QString>(primaryUrl)); } if (!documentUrl.isEmpty()) { /// Store URL to document as a property of the request/reply newReply->setProperty("documenturl", QVariant::fromValue<QString>(documentUrl)); } InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingBibTeX); d->listBibTeXurls.erase(d->listBibTeXurls.begin()); } else { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchGoogleScholar::doneFetchingBibTeX() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); /// Extract previously stored URLs from reply const QString primaryUrl = reply->property("primaryurl").toString(); const QString documentUrl = reply->property("documenturl").toString(); QUrl newDomainUrl; if (handleErrors(reply, newDomainUrl)) { if (newDomainUrl.isValid() && newDomainUrl != reply->url()) { /// following redirection to country-specific domain ++numSteps; QNetworkRequest request(newDomainUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingBibTeX); } else { /// ensure proper treatment of UTF-8 characters const QString rawText = QString::fromUtf8(reply->readAll()); File *bibtexFile = d->importer->fromString(rawText); bool hasEntry = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) { Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(label()))); entry->insert(QStringLiteral("x-fetchedfrom"), v); if (!primaryUrl.isEmpty()) { /// There is an external document associated with this BibTeX entry Value urlValue = entry->value(Entry::ftUrl); urlValue.append(QSharedPointer<VerbatimText>(new VerbatimText(primaryUrl))); entry->insert(Entry::ftUrl, urlValue); } if (!documentUrl.isEmpty() && primaryUrl != documentUrl /** avoid duplicates */) { /// There is a web page associated with this BibTeX entry Value urlValue = entry->value(Entry::ftUrl); urlValue.append(QSharedPointer<VerbatimText>(new VerbatimText(documentUrl))); entry->insert(Entry::ftUrl, urlValue); } emit foundEntry(entry); hasEntry = true; } } delete bibtexFile; } if (!hasEntry) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Searching" << label() << "resulted in invalid BibTeX data:" << rawText; stopSearch(resultUnspecifiedError); return; } if (!d->listBibTeXurls.isEmpty()) { const QString bibtexUrl = d->listBibTeXurls.constBegin().key(); const QStringList urls = d->listBibTeXurls.constBegin().value().split(QStringLiteral("|"), QString::KeepEmptyParts); const QString primaryUrl = urls.first(); const QString documentUrl = urls.last(); QNetworkRequest request(bibtexUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); if (!primaryUrl.isEmpty()) { /// Store primary URL as a property of the request/reply newReply->setProperty("primaryurl", QVariant::fromValue<QString>(primaryUrl)); } if (!documentUrl.isEmpty()) { /// Store URL to document as a property of the request/reply newReply->setProperty("documenturl", QVariant::fromValue<QString>(documentUrl)); } connect(newReply, &QNetworkReply::finished, this, &OnlineSearchGoogleScholar::doneFetchingBibTeX); d->listBibTeXurls.erase(d->listBibTeXurls.begin()); } else { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } QString OnlineSearchGoogleScholar::label() const { return i18n("Google Scholar"); } QString OnlineSearchGoogleScholar::favIconUrl() const { return QStringLiteral("https://scholar.google.com/favicon-png.ico"); } QUrl OnlineSearchGoogleScholar::homepage() const { return QUrl(QStringLiteral("https://scholar.google.com/")); } �������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchgooglescholar.h�������������������������������0000664�0000000�0000000�00000004201�13313000262�0026157�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_GOOGLESCHOLAR_H #define KBIBTEX_ONLINESEARCH_GOOGLESCHOLAR_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchGoogleScholar : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchGoogleScholar(QObject *parent); ~OnlineSearchGoogleScholar() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private slots: void doneFetchingStartPage(); void doneFetchingConfigPage(); void doneFetchingSetConfigPage(); void doneFetchingQueryPage(); void doneFetchingBibTeX(); private: class OnlineSearchGoogleScholarPrivate; OnlineSearchGoogleScholarPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_GOOGLESCHOLAR_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchideasrepec.cpp��������������������������������0000664�0000000�0000000�00000026023�13313000262�0025774�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchideasrepec.h" #include <QSet> #include <QNetworkRequest> #include <QNetworkReply> #include <QUrlQuery> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchIDEASRePEc::OnlineSearchIDEASRePEcPrivate { public: int numSteps, curStep; QSet<QString> publicationLinks; QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { QString urlBase = QStringLiteral("https://ideas.repec.org/cgi-bin/htsearch?cmd=Search%21&form=extended&m=all&fmt=url&wm=wrd&sp=1&sy=1&dt=range"); bool hasFreeText = !query[queryKeyFreeText].isEmpty(); bool hasTitle = !query[queryKeyTitle].isEmpty(); bool hasAuthor = !query[queryKeyAuthor].isEmpty(); bool hasYear = QRegExp(QStringLiteral("^(19|20)[0-9]{2}$")).indexIn(query[queryKeyYear]) == 0; QString fieldWF = QStringLiteral("4BFF"); ///< search whole record by default QString fieldQ, fieldDB, fieldDE; if (hasAuthor && !hasFreeText && !hasTitle) { /// If only the author field is used, search explictly for author fieldWF = QStringLiteral("000F"); fieldQ = query[queryKeyAuthor]; } else if (!hasAuthor && !hasFreeText && hasTitle) { /// If only the title field is used, search explictly for title fieldWF = QStringLiteral("00F0"); fieldQ = query[queryKeyTitle]; } else { fieldQ = query[queryKeyFreeText] + QLatin1Char(' ') + query[queryKeyTitle] + QLatin1Char(' ') + query[queryKeyAuthor] + QLatin1Char(' '); } if (hasYear) { fieldDB = QStringLiteral("01/01/") + query[queryKeyYear]; fieldDE = QStringLiteral("31/12/") + query[queryKeyYear]; } QUrl url(urlBase); QUrlQuery q(url); q.addQueryItem(QStringLiteral("ps"), QString::number(numResults)); q.addQueryItem(QStringLiteral("db"), fieldDB); q.addQueryItem(QStringLiteral("de"), fieldDE); q.addQueryItem(QStringLiteral("q"), fieldQ); q.addQueryItem(QStringLiteral("wf"), fieldWF); url.setQuery(q); return url; } }; OnlineSearchIDEASRePEc::OnlineSearchIDEASRePEc(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchIDEASRePEc::OnlineSearchIDEASRePEcPrivate()) { /// nothing } OnlineSearchIDEASRePEc::~OnlineSearchIDEASRePEc() { delete d; } void OnlineSearchIDEASRePEc::startSearch(const QMap<QString, QString> &query, int numResults) { const QUrl url = d->buildQueryUrl(query, numResults); emit progress(curStep = 0, numSteps = 2 * numResults + 1); m_hasBeenCanceled = false; QNetworkRequest request(url); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIDEASRePEc::downloadListDone); } QString OnlineSearchIDEASRePEc::label() const { return i18n("IDEAS (RePEc)"); } QString OnlineSearchIDEASRePEc::favIconUrl() const { return QStringLiteral("https://ideas.repec.org/favicon.ico"); } QUrl OnlineSearchIDEASRePEc::homepage() const { return QUrl(QStringLiteral("https://ideas.repec.org/")); } void OnlineSearchIDEASRePEc::downloadListDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QUrl redirUrl; if (handleErrors(reply, redirUrl)) { if (redirUrl.isValid()) { /// redirection to another url ++numSteps; QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchIDEASRePEc::downloadListDone); } else { /// ensure proper treatment of UTF-8 characters const QString htmlCode = QString::fromUtf8(reply->readAll().constData()); static const QRegExp publicationLinkRegExp(QStringLiteral("http[s]?://ideas.repec.org/[a-z]/\\S{,8}/\\S{2,24}/\\S{,64}.html")); d->publicationLinks.clear(); int p = -1; while ((p = publicationLinkRegExp.indexIn(htmlCode, p + 1)) >= 0) { QString c = publicationLinkRegExp.cap(0); /// Rewrite URL to be https instead of http, avoids HTTP redirection c = c.replace(QStringLiteral("http://"), QStringLiteral("https://")); d->publicationLinks.insert(c); } numSteps += 2 * d->publicationLinks.count(); ///< update number of steps if (d->publicationLinks.isEmpty()) { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } else { QSet<QString>::Iterator it = d->publicationLinks.begin(); const QString publicationLink = *it; d->publicationLinks.erase(it); QNetworkRequest request = QNetworkRequest(QUrl(publicationLink)); reply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIDEASRePEc::downloadPublicationDone); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchIDEASRePEc::downloadPublicationDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString htmlCode = QString::fromUtf8(reply->readAll().constData()); QString downloadUrl; static const QString downloadFormStart = QStringLiteral("<FORM METHOD=GET ACTION=\"/cgi-bin/get_doc.pl\""); if (htmlCode.contains(downloadFormStart)) { QMap<QString, QString> form = formParameters(htmlCode, htmlCode.indexOf(downloadFormStart, Qt::CaseInsensitive)); downloadUrl = form[QStringLiteral("url")]; } QMap<QString, QString> form = formParameters(htmlCode, htmlCode.indexOf(QStringLiteral("<form method=\"post\" action=\"/cgi-bin/refs.cgi\""), Qt::CaseInsensitive)); form[QStringLiteral("output")] = QStringLiteral("2"); ///< enforce BibTeX output QString body; QMap<QString, QString>::ConstIterator it = form.constBegin(); while (it != form.constEnd()) { if (!body.isEmpty()) body += QLatin1Char('&'); body += it.key() + QLatin1Char('=') + QString(QUrl::toPercentEncoding(it.value())); ++it; } const QUrl url = QUrl(QStringLiteral("https://ideas.repec.org/cgi-bin/refs.cgi")); QNetworkRequest request(url); request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded"); reply = InternalNetworkAccessManager::instance().post(request, body.toUtf8()); reply->setProperty("downloadurl", QVariant::fromValue<QString>(downloadUrl)); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIDEASRePEc::downloadBibTeXDone); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchIDEASRePEc::downloadBibTeXDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); const QString downloadUrl = reply->property("downloadurl").toString(); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) { if (!downloadUrl.isEmpty()) { /// There is an external document associated with this BibTeX entry Value urlValue = entry->value(Entry::ftUrl); urlValue.append(QSharedPointer<VerbatimText>(new VerbatimText(downloadUrl))); entry->insert(Entry::ftUrl, urlValue); } Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(label()))); entry->insert(QStringLiteral("x-fetchedfrom"), v); emit foundEntry(entry); } } delete bibtexFile; } } if (d->publicationLinks.isEmpty()) { stopSearch(resultNoError); emit progress(1, 1); } else { QSet<QString>::Iterator it = d->publicationLinks.begin(); const QString publicationLink = *it; d->publicationLinks.erase(it); QNetworkRequest request = QNetworkRequest(QUrl(publicationLink)); reply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIDEASRePEc::downloadPublicationDone); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString() << "(was" << downloadUrl << ")"; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchideasrepec.h����������������������������������0000664�0000000�0000000�00000004035�13313000262�0025440�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_IDEASREPEC_H #define KBIBTEX_ONLINESEARCH_IDEASREPEC_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchIDEASRePEc : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchIDEASRePEc(QWidget *parent); ~OnlineSearchIDEASRePEc() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private slots: void downloadListDone(); void downloadPublicationDone(); void downloadBibTeXDone(); private: class OnlineSearchIDEASRePEcPrivate; OnlineSearchIDEASRePEcPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_IDEASREPEC_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchieeexplore.cpp��������������������������������0000664�0000000�0000000�00000017477�13313000262�0026046�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchieeexplore.h" #include <QNetworkReply> #include <QStandardPaths> #include <QUrl> #include <QUrlQuery> #include <QCoreApplication> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #include "internalnetworkaccessmanager.h" #include "xsltransform.h" #include "fileimporterbibtex.h" #include "logging_networking.h" class OnlineSearchIEEEXplore::OnlineSearchIEEEXplorePrivate { private: OnlineSearchIEEEXplore *p; public: const QString gatewayUrl; const XSLTransform xslt; OnlineSearchIEEEXplorePrivate(OnlineSearchIEEEXplore *parent) : p(parent), gatewayUrl(QStringLiteral("https://ieeexplore.ieee.org/gateway/ipsSearch.jsp")), xslt(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QCoreApplication::instance()->applicationName().remove(QStringLiteral("test")) + QStringLiteral("/ieeexplore2bibtex.xsl"))) { /// nothing } QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { QUrl queryUrl = QUrl(gatewayUrl); const QStringList freeTextFragments = p->splitRespectingQuotationMarks(query[queryKeyFreeText]); const QStringList authors = p->splitRespectingQuotationMarks(query[queryKeyAuthor]); QStringList queryText; queryText.reserve(freeTextFragments.size() + 1 + authors.size() + 1); /// Free text for (const QString &freeTextFragment : freeTextFragments) { queryText << QString(QStringLiteral("\"%1\"")).arg(freeTextFragment); } /// Title if (!query[queryKeyTitle].isEmpty()) queryText << QString(QStringLiteral("\"Document Title\":\"%1\"")).arg(query[queryKeyTitle]); /// Author for (const QString &author : authors) { queryText << QString(QStringLiteral("Author:\"%1\"")).arg(author); } /// Year if (!query[queryKeyYear].isEmpty()) queryText << QString(QStringLiteral("\"Publication Year\":\"%1\"")).arg(query[queryKeyYear]); QUrlQuery q(queryUrl); q.addQueryItem(QStringLiteral("queryText"), queryText.join(QStringLiteral(" AND "))); q.addQueryItem(QStringLiteral("sortfield"), QStringLiteral("py")); q.addQueryItem(QStringLiteral("sortorder"), QStringLiteral("desc")); q.addQueryItem(QStringLiteral("hc"), QString::number(numResults)); q.addQueryItem(QStringLiteral("rs"), QStringLiteral("1")); queryUrl.setQuery(q); return queryUrl; } }; OnlineSearchIEEEXplore::OnlineSearchIEEEXplore(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchIEEEXplore::OnlineSearchIEEEXplorePrivate(this)) { // nothing } OnlineSearchIEEEXplore::~OnlineSearchIEEEXplore() { delete d; } void OnlineSearchIEEEXplore::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 2); QNetworkRequest request(d->buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIEEEXplore::doneFetchingXML); } void OnlineSearchIEEEXplore::doneFetchingXML() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QUrl redirUrl; if (handleErrors(reply, redirUrl)) { if (redirUrl.isValid()) { /// redirection to another url ++numSteps; QNetworkRequest request(redirUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIEEEXplore::doneFetchingXML); } else { /// ensure proper treatment of UTF-8 characters const QString xmlCode = QString::fromUtf8(reply->readAll().constData()); /// use XSL transformation to get BibTeX document from XML result const QString bibTeXcode = d->xslt.transform(xmlCode); if (bibTeXcode.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "XSL tranformation failed for data from " << reply->url().toDisplayString(); stopSearch(resultInvalidArguments); } else { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } QString OnlineSearchIEEEXplore::label() const { return i18n("IEEEXplore"); } QString OnlineSearchIEEEXplore::favIconUrl() const { return QStringLiteral("http://ieeexplore.ieee.org/favicon.ico"); } QUrl OnlineSearchIEEEXplore::homepage() const { return QUrl(QStringLiteral("https://ieeexplore.ieee.org/")); } void OnlineSearchIEEEXplore::sanitizeEntry(QSharedPointer<Entry> entry) { OnlineSearchAbstract::sanitizeEntry(entry); /// XSL file cannot yet replace semicolon-separate author list /// by "and"-separated author list, so do it manually const QString ftXAuthor = QStringLiteral("x-author"); if (!entry->contains(Entry::ftAuthor) && entry->contains(ftXAuthor)) { const Value xAuthorValue = entry->value(ftXAuthor); Value authorValue; for (const auto &xAuthorValueItem : xAuthorValue) { const QSharedPointer<const PlainText> pt = xAuthorValueItem.dynamicCast<const PlainText>(); if (!pt.isNull()) { const QList<QSharedPointer<Person> > personList = FileImporterBibTeX::splitNames(pt->text()); for (const auto &person : personList) authorValue << person; } } entry->insert(Entry::ftAuthor, authorValue); entry->remove(ftXAuthor); } } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchieeexplore.h����������������������������������0000664�0000000�0000000�00000004027�13313000262�0025476�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_IEEEXPLORE_H #define KBIBTEX_ONLINESEARCH_IEEEXPLORE_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchIEEEXplore : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchIEEEXplore(QObject *parent); ~OnlineSearchIEEEXplore() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; void sanitizeEntry(QSharedPointer<Entry> entry) override; private slots: void doneFetchingXML(); private: class OnlineSearchIEEEXplorePrivate; OnlineSearchIEEEXplorePrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_IEEEXPLORE_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchingentaconnect.cpp����������������������������0000664�0000000�0000000�00000044542�13313000262�0026675�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchingentaconnect.h" #include <QBuffer> #ifdef HAVE_QTWIDGETS #include <QLabel> #include <QFormLayout> #include <QSpinBox> #include <QIcon> #endif // HAVE_QTWIDGETS #include <QNetworkReply> #include <QUrlQuery> #ifdef HAVE_KF5 #include <KLocalizedString> #include <KConfigGroup> #endif // HAVE_KF5 #ifdef HAVE_QTWIDGETS #include <KLineEdit> #endif // HAVE_QTWIDGETS #include "file.h" #include "entry.h" #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" #ifdef HAVE_QTWIDGETS class OnlineSearchIngentaConnect::OnlineSearchQueryFormIngentaConnect : public OnlineSearchQueryFormAbstract { Q_OBJECT private: QString configGroupName; void loadState() { KConfigGroup configGroup(config, configGroupName); lineEditFullText->setText(configGroup.readEntry(QStringLiteral("fullText"), QString())); lineEditTitle->setText(configGroup.readEntry(QStringLiteral("title"), QString())); lineEditAuthor->setText(configGroup.readEntry(QStringLiteral("author"), QString())); lineEditAbstractKeywords->setText(configGroup.readEntry(QStringLiteral("abstractKeywords"), QString())); lineEditPublication->setText(configGroup.readEntry(QStringLiteral("publication"), QString())); lineEditISSNDOIISBN->setText(configGroup.readEntry(QStringLiteral("ISSNDOIISBN"), QString())); lineEditVolume->setText(configGroup.readEntry(QStringLiteral("volume"), QString())); lineEditIssue->setText(configGroup.readEntry(QStringLiteral("issue"), QString())); numResultsField->setValue(configGroup.readEntry(QStringLiteral("numResults"), 10)); } public: KLineEdit *lineEditFullText; KLineEdit *lineEditTitle; KLineEdit *lineEditAuthor; KLineEdit *lineEditAbstractKeywords; KLineEdit *lineEditPublication; KLineEdit *lineEditISSNDOIISBN; KLineEdit *lineEditVolume; KLineEdit *lineEditIssue; QSpinBox *numResultsField; OnlineSearchQueryFormIngentaConnect(QWidget *widget) : OnlineSearchQueryFormAbstract(widget), configGroupName(QStringLiteral("Search Engine IngentaConnect")) { QFormLayout *layout = new QFormLayout(this); layout->setMargin(0); lineEditFullText = new KLineEdit(this); lineEditFullText->setClearButtonEnabled(true); layout->addRow(i18n("Full text:"), lineEditFullText); connect(lineEditFullText, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditTitle = new KLineEdit(this); lineEditTitle->setClearButtonEnabled(true); layout->addRow(i18n("Title:"), lineEditTitle); connect(lineEditTitle, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditAuthor = new KLineEdit(this); lineEditAuthor->setClearButtonEnabled(true); layout->addRow(i18n("Author:"), lineEditAuthor); connect(lineEditAuthor, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditAbstractKeywords = new KLineEdit(this); lineEditAbstractKeywords->setClearButtonEnabled(true); layout->addRow(i18n("Abstract/Keywords:"), lineEditAbstractKeywords); connect(lineEditAbstractKeywords, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditPublication = new KLineEdit(this); lineEditPublication->setClearButtonEnabled(true); layout->addRow(i18n("Publication:"), lineEditPublication); connect(lineEditPublication, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditISSNDOIISBN = new KLineEdit(this); lineEditISSNDOIISBN->setClearButtonEnabled(true); layout->addRow(i18n("ISSN/ISBN/DOI:"), lineEditISSNDOIISBN); connect(lineEditISSNDOIISBN, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditVolume = new KLineEdit(this); lineEditVolume->setClearButtonEnabled(true); layout->addRow(i18n("Volume:"), lineEditVolume); connect(lineEditVolume, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); lineEditIssue = new KLineEdit(this); lineEditIssue->setClearButtonEnabled(true); layout->addRow(i18n("Issue/Number:"), lineEditIssue); connect(lineEditIssue, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormIngentaConnect::returnPressed); numResultsField = new QSpinBox(this); layout->addRow(i18n("Number of Results:"), numResultsField); numResultsField->setMinimum(3); numResultsField->setMaximum(100); numResultsField->setValue(10); } bool readyToStart() const override { return !(lineEditFullText->text().isEmpty() && lineEditTitle->text().isEmpty() && lineEditAuthor->text().isEmpty() && lineEditAbstractKeywords->text().isEmpty() && lineEditPublication->text().isEmpty() && lineEditISSNDOIISBN->text().isEmpty() && lineEditVolume->text().isEmpty() && lineEditIssue->text().isEmpty()); } void copyFromEntry(const Entry &entry) override { lineEditTitle->setText(PlainTextValue::text(entry[Entry::ftTitle])); lineEditAuthor->setText(authorLastNames(entry).join(QStringLiteral(" "))); lineEditVolume->setText(PlainTextValue::text(entry[Entry::ftVolume])); lineEditIssue->setText(PlainTextValue::text(entry[Entry::ftNumber])); QString issnDoiIsbn = PlainTextValue::text(entry[Entry::ftDOI]); if (issnDoiIsbn.isEmpty()) issnDoiIsbn = PlainTextValue::text(entry[Entry::ftISBN]); if (issnDoiIsbn.isEmpty()) issnDoiIsbn = PlainTextValue::text(entry[Entry::ftISSN]); lineEditISSNDOIISBN->setText(issnDoiIsbn); QString publication = PlainTextValue::text(entry[Entry::ftJournal]); if (publication.isEmpty()) publication = PlainTextValue::text(entry[Entry::ftBookTitle]); lineEditPublication->setText(publication); // TODO lineEditAbstractKeywords->setText(QStringLiteral("")); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("fullText"), lineEditFullText->text()); configGroup.writeEntry(QStringLiteral("title"), lineEditTitle->text()); configGroup.writeEntry(QStringLiteral("author"), lineEditAuthor->text()); configGroup.writeEntry(QStringLiteral("abstractKeywords"), lineEditAbstractKeywords->text()); configGroup.writeEntry(QStringLiteral("publication"), lineEditPublication->text()); configGroup.writeEntry(QStringLiteral("ISSNDOIISBN"), lineEditISSNDOIISBN->text()); configGroup.writeEntry(QStringLiteral("volume"), lineEditVolume->text()); configGroup.writeEntry(QStringLiteral("issue"), lineEditIssue->text()); configGroup.writeEntry(QStringLiteral("numResults"), numResultsField->value()); config->sync(); } }; #endif // HAVE_QTWIDGETS class OnlineSearchIngentaConnect::OnlineSearchIngentaConnectPrivate { private: OnlineSearchIngentaConnect *p; const QString ingentaConnectBaseUrl; public: #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormIngentaConnect *form; #endif // HAVE_QTWIDGETS OnlineSearchIngentaConnectPrivate(OnlineSearchIngentaConnect *parent) : p(parent), ingentaConnectBaseUrl(QStringLiteral("http://www.ingentaconnect.com/search?format=bib")) #ifdef HAVE_QTWIDGETS , form(nullptr) #endif // HAVE_QTWIDGETS { // nothing } #ifdef HAVE_QTWIDGETS QUrl buildQueryUrl() { if (form == nullptr) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Cannot build query url if no form is specified"; return QUrl(); } QUrl queryUrl(ingentaConnectBaseUrl); QUrlQuery query(queryUrl); int index = 1; const QStringList chunksFullText = p->splitRespectingQuotationMarks(form->lineEditFullText->text()); for (const QString &chunk : chunksFullText) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); ///< join search terms with an AND operation query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("fulltext")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksAuthor = p->splitRespectingQuotationMarks(form->lineEditAuthor->text()); for (const QString &chunk : chunksAuthor) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("author")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksTitle = p->splitRespectingQuotationMarks(form->lineEditTitle->text()); for (const QString &chunk : chunksTitle) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("title")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksPublication = p->splitRespectingQuotationMarks(form->lineEditPublication->text()); for (const QString &chunk : chunksPublication) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("journalbooktitle")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksIssue = p->splitRespectingQuotationMarks(form->lineEditIssue->text()); for (const QString &chunk : chunksIssue) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("issue")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksVolume = p->splitRespectingQuotationMarks(form->lineEditVolume->text()); for (const QString &chunk : chunksVolume) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("volume")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksKeywords = p->splitRespectingQuotationMarks(form->lineEditAbstractKeywords->text()); for (const QString &chunk : chunksKeywords) { if (index > 1) query.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); query.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("tka")); query.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } query.addQueryItem(QStringLiteral("pageSize"), QString::number(form->numResultsField->value())); query.addQueryItem(QStringLiteral("sortDescending"), QStringLiteral("true")); query.addQueryItem(QStringLiteral("subscribed"), QStringLiteral("false")); query.addQueryItem(QStringLiteral("sortField"), QStringLiteral("default")); queryUrl.setQuery(query); return queryUrl; } #endif // HAVE_QTWIDGETS QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { QUrl queryUrl(ingentaConnectBaseUrl); QUrlQuery q(queryUrl); int index = 1; const QStringList chunksFreeText = p->splitRespectingQuotationMarks(query[queryKeyFreeText]); for (const QString &chunk : chunksFreeText) { if (index > 1) q.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); q.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("fulltext")); q.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksAuthor = p->splitRespectingQuotationMarks(query[queryKeyAuthor]); for (const QString &chunk : chunksAuthor) { if (index > 1) q.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); q.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("author")); q.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } const QStringList chunksTitle = p->splitRespectingQuotationMarks(query[queryKeyTitle]); for (const QString &chunk : chunksTitle) { if (index > 1) q.addQueryItem(QString(QStringLiteral("operator%1")).arg(index), QStringLiteral("AND")); q.addQueryItem(QString(QStringLiteral("option%1")).arg(index), QStringLiteral("title")); q.addQueryItem(QString(QStringLiteral("value%1")).arg(index), chunk); ++index; } /// Field "year" not supported in IngentaConnect's search q.addQueryItem(QStringLiteral("pageSize"), QString::number(numResults)); q.addQueryItem(QStringLiteral("sortDescending"), QStringLiteral("true")); q.addQueryItem(QStringLiteral("subscribed"), QStringLiteral("false")); q.addQueryItem(QStringLiteral("sortField"), QStringLiteral("default")); queryUrl.setQuery(q); return queryUrl; } }; OnlineSearchIngentaConnect::OnlineSearchIngentaConnect(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchIngentaConnectPrivate(this)) { // nothing } OnlineSearchIngentaConnect::~OnlineSearchIngentaConnect() { delete d; } void OnlineSearchIngentaConnect::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIngentaConnect::downloadDone); } #ifdef HAVE_QTWIDGETS void OnlineSearchIngentaConnect::startSearchFromForm() { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(d->buildQueryUrl()); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIngentaConnect::downloadDone); d->form->saveState(); } #endif // HAVE_QTWIDGETS QString OnlineSearchIngentaConnect::label() const { return i18n("IngentaConnect"); } QString OnlineSearchIngentaConnect::favIconUrl() const { return QStringLiteral("http://www.ingentaconnect.com/favicon.ico"); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchIngentaConnect::customWidget(QWidget *parent) { if (d->form == nullptr) d->form = new OnlineSearchIngentaConnect::OnlineSearchQueryFormIngentaConnect(parent); return d->form; } #endif // HAVE_QTWIDGETS QUrl OnlineSearchIngentaConnect::homepage() const { return QUrl(QStringLiteral("http://www.ingentaconnect.com/")); } void OnlineSearchIngentaConnect::downloadDone() { emit progress(curStep = numSteps, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } else { /// returned file is empty stopSearch(resultNoError); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } #include "onlinesearchingentaconnect.moc" ��������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchingentaconnect.h������������������������������0000664�0000000�0000000�00000004637�13313000262�0026343�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_INGENTACONNECT_H #define KBIBTEX_ONLINESEARCH_INGENTACONNECT_H #include <QByteArray> #include "onlinesearchabstract.h" #ifdef HAVE_QTWIDGETS class QSpinBox; class KComboBox; class KLineEdit; #endif // HAVE_QTWIDGETS /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchIngentaConnect : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchIngentaConnect(QObject *parent); ~OnlineSearchIngentaConnect() override; #ifdef HAVE_QTWIDGETS void startSearchFromForm() override; #endif // HAVE_QTWIDGETS void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *customWidget(QWidget *parent) override; #endif // HAVE_QTWIDGETS QUrl homepage() const override; protected: QString favIconUrl() const override; private: #ifdef HAVE_QTWIDGETS class OnlineSearchQueryFormIngentaConnect; #endif // HAVE_QTWIDGETS class OnlineSearchIngentaConnectPrivate; OnlineSearchIngentaConnectPrivate *d; private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_INGENTACONNECT_H �������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchinspirehep.cpp��������������������������������0000664�0000000�0000000�00000007204�13313000262�0026036�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchinspirehep.h" #include <KLocalizedString> OnlineSearchInspireHep::OnlineSearchInspireHep(QWidget *parent) : OnlineSearchSimpleBibTeXDownload(parent) { // nothing } QString OnlineSearchInspireHep::label() const { return i18n("Inspire High-Energy Physics Literature Database"); } QUrl OnlineSearchInspireHep::homepage() const { return QUrl(QStringLiteral("http://inspirehep.net/")); } QString OnlineSearchInspireHep::favIconUrl() const { return QStringLiteral("http://inspirehep.net/favicon.ico"); } QUrl OnlineSearchInspireHep::buildQueryUrl(const QMap<QString, QString> &query, int numResults) { static const QString typedSearch = QStringLiteral("%1 %2"); ///< no quotation marks for search term? const QStringList freeTextWords = splitRespectingQuotationMarks(query[queryKeyFreeText]); const QStringList yearWords = splitRespectingQuotationMarks(query[queryKeyYear]); const QStringList titleWords = splitRespectingQuotationMarks(query[queryKeyTitle]); const QStringList authorWords = splitRespectingQuotationMarks(query[queryKeyAuthor]); /// append search terms QStringList queryFragments; queryFragments.reserve(freeTextWords.size() + yearWords.size() + titleWords.size() + authorWords.size()); /// add words from "free text" field for (const QString &text : freeTextWords) queryFragments.append(typedSearch.arg(QStringLiteral("ft"), text)); /// add words from "year" field for (const QString &text : yearWords) queryFragments.append(typedSearch.arg(QStringLiteral("d"), text)); /// add words from "title" field for (const QString &text : titleWords) queryFragments.append(typedSearch.arg(QStringLiteral("t"), text)); /// add words from "author" field for (const QString &text : authorWords) queryFragments.append(typedSearch.arg(QStringLiteral("a"), text)); /// Build URL QString urlText = QStringLiteral("http://inspirehep.net/search?ln=en&ln=en&of=hx&action_search=Search&sf=&so=d&rm=&sc=0"); /// Set number of expected results urlText.append(QString(QStringLiteral("&rg=%1")).arg(numResults)); /// Append actual query urlText.append(QStringLiteral("&p=")); urlText.append(queryFragments.join(QStringLiteral(" and "))); /// URL-encode text urlText = urlText.replace(QLatin1Char(' '), QStringLiteral("%20")).replace(QLatin1Char('"'), QStringLiteral("%22")); return QUrl(urlText); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchinspirehep.h����������������������������������0000664�0000000�0000000�00000003506�13313000262�0025504�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_INSPIREHEP_H #define KBIBTEX_ONLINESEARCH_INSPIREHEP_H #include "onlinesearchsimplebibtexdownload.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchInspireHep : public OnlineSearchSimpleBibTeXDownload { Q_OBJECT public: explicit OnlineSearchInspireHep(QWidget *parent); QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) override; }; #endif // KBIBTEX_ONLINESEARCH_INSPIREHEP_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchisbndb.cpp������������������������������������0000664�0000000�0000000�00000015262�13313000262�0025134�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchisbndb.h" #include <QNetworkReply> #include <QStandardPaths> #include <QUrlQuery> #include <QCoreApplication> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "xsltransform.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchIsbnDB::OnlineSearchIsbnDBPrivate { private: static const QString accessKey; static const QString booksUrl, authorsUrl; public: const XSLTransform xslt; QUrl queryUrl; OnlineSearchIsbnDBPrivate(OnlineSearchIsbnDB *) : xslt(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QCoreApplication::instance()->applicationName().remove(QStringLiteral("test")) + QStringLiteral("/isbndb2bibtex.xsl"))) { /// nothing } QUrl buildBooksUrl(const QMap<QString, QString> &query) { queryUrl = QUrl(booksUrl); QUrlQuery q(queryUrl); q.addQueryItem(QStringLiteral("access_key"), accessKey); q.addQueryItem(QStringLiteral("results"), QStringLiteral("texts,authors")); QString index1, value1; if (query[queryKeyFreeText].isEmpty() && query[queryKeyAuthor].isEmpty() && !query[queryKeyTitle].isEmpty()) { /// only searching for title index1 = QStringLiteral("title"); value1 = query[queryKeyTitle]; } else { /// multiple different values given index1 = QStringLiteral("full"); value1 = query[queryKeyFreeText] + QLatin1Char(' ') + query[queryKeyAuthor] + QLatin1Char(' ') + query[queryKeyTitle]; } q.addQueryItem(QStringLiteral("index1"), index1); q.addQueryItem(QStringLiteral("value1"), value1); queryUrl.setQuery(q); return queryUrl; } }; const QString OnlineSearchIsbnDB::OnlineSearchIsbnDBPrivate::accessKey = QStringLiteral("NBTD24WJ"); const QString OnlineSearchIsbnDB::OnlineSearchIsbnDBPrivate::booksUrl = QStringLiteral("http://isbndb.com/api/books.xml"); const QString OnlineSearchIsbnDB::OnlineSearchIsbnDBPrivate::authorsUrl = QStringLiteral("http://isbndb.com/api/authors.xml"); OnlineSearchIsbnDB::OnlineSearchIsbnDB(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchIsbnDBPrivate(this)) { // nothing } OnlineSearchIsbnDB::~OnlineSearchIsbnDB() { delete d; } void OnlineSearchIsbnDB::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = (numResults + 9) / 10); QNetworkRequest request(d->buildBooksUrl(query)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchIsbnDB::downloadDone); } QString OnlineSearchIsbnDB::label() const { return i18n("ISBNdb.com"); } QString OnlineSearchIsbnDB::favIconUrl() const { return QStringLiteral("http://isbndb.com/favicon.ico"); } QUrl OnlineSearchIsbnDB::homepage() const { return QUrl(QStringLiteral("http://isbndb.com/")); } void OnlineSearchIsbnDB::downloadDone() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString xmlCode = QString::fromUtf8(reply->readAll().constData()); /// use XSL transformation to get BibTeX document from XML result const QString bibTeXcode = d->xslt.transform(xmlCode).remove(QStringLiteral("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")).replace(QStringLiteral("&amp;"), QStringLiteral("&")); if (bibTeXcode.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "XSL tranformation failed for data from " << reply->url().toDisplayString(); stopSearch(resultInvalidArguments); } else { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } delete bibtexFile; if (!hasEntries) { stopSearch(resultNoError); } else if (curStep >= numSteps) stopSearch(resultNoError); else { QUrl nextUrl = d->queryUrl; QUrlQuery query(nextUrl); query.addQueryItem(QStringLiteral("page_number"), QString::number(curStep /** FIXME? + 1 */)); nextUrl.setQuery(query); QNetworkRequest request(nextUrl); QNetworkReply *nextReply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(nextReply); connect(nextReply, &QNetworkReply::finished, this, &OnlineSearchIsbnDB::downloadDone); return; } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchisbndb.h��������������������������������������0000664�0000000�0000000�00000003665�13313000262�0024605�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_ISBNDB_H #define KBIBTEX_ONLINESEARCH_ISBNDB_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchIsbnDB : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchIsbnDB(QWidget *parent); ~OnlineSearchIsbnDB() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private: class OnlineSearchIsbnDBPrivate; OnlineSearchIsbnDBPrivate *d; private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_ISBNDB_H ���������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchjstor.cpp�������������������������������������0000664�0000000�0000000�00000031033�13313000262�0025026�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchjstor.h" #include <QNetworkRequest> #include <QNetworkReply> #include <QUrlQuery> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #include "internalnetworkaccessmanager.h" #include "fileimporterbibtex.h" #include "logging_networking.h" class OnlineSearchJStor::OnlineSearchJStorPrivate { private: // UNUSED OnlineSearchJStor *p; public: int numExpectedResults; static const QString jstorBaseUrl; QUrl queryUrl; OnlineSearchJStorPrivate(OnlineSearchJStor */* UNUSED parent*/) : /* UNUSED p(parent), */ numExpectedResults(0) { /// nothing } }; const QString OnlineSearchJStor::OnlineSearchJStorPrivate::jstorBaseUrl = QStringLiteral("http://www.jstor.org/"); OnlineSearchJStor::OnlineSearchJStor(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchJStorPrivate(this)) { /// nothing } OnlineSearchJStor::~OnlineSearchJStor() { delete d; } void OnlineSearchJStor::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 3); d->numExpectedResults = numResults; /// Build search URL, to be used in the second step /// after fetching the start page d->queryUrl = QUrl(OnlineSearchJStorPrivate::jstorBaseUrl); QUrlQuery q(d->queryUrl); d->queryUrl.setPath(QStringLiteral("/action/doAdvancedSearch")); q.addQueryItem(QStringLiteral("Search"), QStringLiteral("Search")); q.addQueryItem(QStringLiteral("wc"), QStringLiteral("on")); /// include external references, too q.addQueryItem(QStringLiteral("la"), QStringLiteral("")); /// no specific language q.addQueryItem(QStringLiteral("jo"), QStringLiteral("")); /// no specific journal q.addQueryItem(QStringLiteral("hp"), QString::number(numResults)); /// hits per page int queryNumber = 0; const QStringList elementsTitle = splitRespectingQuotationMarks(query[queryKeyTitle]); for (const QString &element : elementsTitle) { if (queryNumber > 0) q.addQueryItem(QString(QStringLiteral("c%1")).arg(queryNumber), QStringLiteral("AND")); ///< join search terms with an AND operation q.addQueryItem(QString(QStringLiteral("f%1")).arg(queryNumber), QStringLiteral("ti")); q.addQueryItem(QString(QStringLiteral("q%1")).arg(queryNumber), element); ++queryNumber; } const QStringList elementsAuthor = splitRespectingQuotationMarks(query[queryKeyAuthor]); for (const QString &element : elementsAuthor) { if (queryNumber > 0) q.addQueryItem(QString(QStringLiteral("c%1")).arg(queryNumber), QStringLiteral("AND")); ///< join search terms with an AND operation q.addQueryItem(QString(QStringLiteral("f%1")).arg(queryNumber), QStringLiteral("au")); q.addQueryItem(QString(QStringLiteral("q%1")).arg(queryNumber), element); ++queryNumber; } const QStringList elementsFreeText = splitRespectingQuotationMarks(query[queryKeyFreeText]); for (const QString &element : elementsFreeText) { if (queryNumber > 0) q.addQueryItem(QString(QStringLiteral("c%1")).arg(queryNumber), QStringLiteral("AND")); ///< join search terms with an AND operation q.addQueryItem(QString(QStringLiteral("f%1")).arg(queryNumber), QStringLiteral("all")); q.addQueryItem(QString(QStringLiteral("q%1")).arg(queryNumber), element); ++queryNumber; } if (!query[queryKeyYear].isEmpty()) { q.addQueryItem(QStringLiteral("sd"), query[queryKeyYear]); q.addQueryItem(QStringLiteral("ed"), query[queryKeyYear]); } d->queryUrl.setQuery(q); QNetworkRequest request(OnlineSearchJStorPrivate::jstorBaseUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchJStor::doneFetchingStartPage); } QString OnlineSearchJStor::label() const { return i18n("JSTOR"); } QString OnlineSearchJStor::favIconUrl() const { return QStringLiteral("http://www.jstor.org/assets/search_20151218T0921/files/search/images/favicon.ico"); } QUrl OnlineSearchJStor::homepage() const { return QUrl(QStringLiteral("http://www.jstor.org/")); } void OnlineSearchJStor::doneFetchingStartPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QUrl redirUrl; if (handleErrors(reply, redirUrl)) { if (redirUrl.isValid()) { ++numSteps; /// redirection to another url QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply->url()); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchJStor::doneFetchingStartPage); } else { QNetworkRequest request(d->queryUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchJStor::doneFetchingResultPage); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchJStor::doneFetchingResultPage() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString htmlText = QString::fromUtf8(reply->readAll().constData()); /// extract all unique DOI from HTML code QStringList uniqueDOIs; int p = -6; while ((p = KBibTeX::doiRegExp.indexIn(htmlText, p + 6)) >= 0) { QString doi = KBibTeX::doiRegExp.cap(0); // FIXME DOI RegExp accepts DOIs with question marks, causes problems here const int p = doi.indexOf(QLatin1Char('?')); if (p > 0) doi = doi.left(p); if (!uniqueDOIs.contains(doi)) uniqueDOIs.append(doi); } if (uniqueDOIs.isEmpty()) { /// No results found emit progress(curStep = numSteps, numSteps); stopSearch(resultNoError); } else { /// Build POST request that should return a BibTeX document QString body; int numResults = 0; for (QStringList::ConstIterator it = uniqueDOIs.constBegin(); numResults < d->numExpectedResults && it != uniqueDOIs.constEnd(); ++it, ++numResults) { if (!body.isEmpty()) body.append(QStringLiteral("&")); body.append(QStringLiteral("citations=") + encodeURL(*it)); } QUrl bibTeXUrl = QUrl(OnlineSearchJStorPrivate::jstorBaseUrl); bibTeXUrl.setPath(QStringLiteral("/citation/bulk/text")); QNetworkRequest request(bibTeXUrl); request.setHeader(QNetworkRequest::ContentTypeHeader, "application/x-www-form-urlencoded"); QNetworkReply *newReply = InternalNetworkAccessManager::instance().post(request, body.toUtf8()); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchJStor::doneFetchingBibTeXCode); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchJStor::doneFetchingBibTeXCode() { emit progress(++curStep, numSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); int numFoundResults = 0; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (publishEntry(entry)) ++numFoundResults; } delete bibtexFile; } emit progress(curStep = numSteps, numSteps); stopSearch(numFoundResults > 0 ? resultNoError : resultUnspecifiedError); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchJStor::sanitizeEntry(QSharedPointer<Entry> entry) { OnlineSearchAbstract::sanitizeEntry(entry); if (KBibTeX::doiRegExp.indexIn(entry->id()) == 0) { /// entry ID is a DOI Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(KBibTeX::doiRegExp.cap(0)))); entry->insert(Entry::ftDOI, v); } QString url = PlainTextValue::text(entry->value(Entry::ftUrl)); if (url.startsWith(QStringLiteral("http://www.jstor.org/stable/"))) { /// use JSTOR's own stable ID for entry ID entry->setId("jstor" + url.mid(28).replace(QLatin1Char(','), QString())); /// store JSTOR's own stable ID Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(url.mid(28)))); entry->insert(QStringLiteral("jstor_id"), v); } const QString formattedDateKey = QStringLiteral("jstor_formatteddate"); const QString formattedDate = PlainTextValue::text(entry->value(formattedDateKey)); /// first, try to guess month by inspecting the beginning /// the jstor_formatteddate field const QString formattedDateLower = formattedDate.toLower(); int i; for (i = 0; i < 12; ++i) if (formattedDateLower.startsWith(KBibTeX::MonthsTriple[i])) break; entry->remove(formattedDateKey); if (i < 12) { Value v; v.append(QSharedPointer<MacroKey>(new MacroKey(KBibTeX::MonthsTriple[i]))); entry->insert(Entry::ftMonth, v); } /// guessing failed, therefore extract first part if it exists else if ((i = formattedDate.indexOf(QStringLiteral(","))) >= 0) { /// text may be a season ("Winter") Value v; v.append(QSharedPointer<PlainText>(new PlainText(formattedDate.left(i)))); entry->insert(Entry::ftMonth, v); } else { /// this case happens if the field only contains a year //qCDebug(LOG_KBIBTEX_NETWORKING) << "Cannot extract month/season from date" << formattedDate; } /// page field may start with "pp. ", remove that QString pages = PlainTextValue::text(entry->value(Entry::ftPages)).toLower(); if (pages.startsWith(QStringLiteral("pp. "))) { pages = pages.mid(4); entry->remove(Entry::ftPages); Value v; v.append(QSharedPointer<PlainText>(new PlainText(pages))); entry->insert(Entry::ftPages, v); } /// Some entries may have no 'author' field, but a 'bookauthor' field instead if (!entry->contains(Entry::ftAuthor) && entry->contains(QStringLiteral("bookauthor"))) { Value v = entry->value(QStringLiteral("bookauthor")); entry->remove(QStringLiteral("bookauthor")); entry->insert(Entry::ftAuthor, v); } for (QMap<QString, Value>::Iterator it = entry->begin(); it != entry->end();) { if (PlainTextValue::text(it.value()).isEmpty()) it = entry->erase(it); else ++it; } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchjstor.h���������������������������������������0000664�0000000�0000000�00000004073�13313000262�0024477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_JSTOR_H #define KBIBTEX_ONLINESEARCH_JSTOR_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchJStor : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchJStor(QObject *parent); ~OnlineSearchJStor() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; void sanitizeEntry(QSharedPointer<Entry> entry) override; private slots: void doneFetchingStartPage(); void doneFetchingResultPage(); void doneFetchingBibTeXCode(); private: class OnlineSearchJStorPrivate; OnlineSearchJStorPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_JSTOR_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchmathscinet.cpp��������������������������������0000664�0000000�0000000�00000024223�13313000262�0026027�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchmathscinet.h" #include <QNetworkReply> #include <QNetworkRequest> #include <QNetworkAccessManager> #include <QMap> #include <QUrlQuery> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "kbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchMathSciNet::OnlineSearchMathSciNetPrivate { private: // UNUSED OnlineSearchMathSciNet *p; public: QMap<QString, QString> queryParameters; int numResults; static const QString queryFormUrl; static const QString queryUrlStem; OnlineSearchMathSciNetPrivate(OnlineSearchMathSciNet */* UNUSED parent*/) : /* UNUSED p(parent), */ numResults(0) { /// nothing } }; const QString OnlineSearchMathSciNet::OnlineSearchMathSciNetPrivate::queryFormUrl = QStringLiteral("http://www.ams.org/mathscinet/"); const QString OnlineSearchMathSciNet::OnlineSearchMathSciNetPrivate::queryUrlStem = QStringLiteral("http://www.ams.org/mathscinet/search/publications.html?client=KBibTeX"); OnlineSearchMathSciNet::OnlineSearchMathSciNet(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchMathSciNetPrivate(this)) { /// nothing } OnlineSearchMathSciNet::~OnlineSearchMathSciNet() { delete d; } void OnlineSearchMathSciNet::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 3); d->queryParameters.clear(); d->numResults = qMin(50, numResults); /// limit query to max 50 elements int index = 1; const QString freeText = query[queryKeyFreeText]; const QStringList elementsFreeText = splitRespectingQuotationMarks(freeText); for (const QString &element : elementsFreeText) { d->queryParameters.insert(QString(QStringLiteral("pg%1")).arg(index), QStringLiteral("ALLF")); d->queryParameters.insert(QString(QStringLiteral("s%1")).arg(index), element); ++index; } const QString title = query[queryKeyTitle]; const QStringList elementsTitle = splitRespectingQuotationMarks(title); for (const QString &element : elementsTitle) { d->queryParameters.insert(QString(QStringLiteral("pg%1")).arg(index), QStringLiteral("TI")); d->queryParameters.insert(QString(QStringLiteral("s%1")).arg(index), element); ++index; } const QString authors = query[queryKeyAuthor]; const QStringList elementsAuthor = splitRespectingQuotationMarks(authors); for (const QString &element : elementsAuthor) { d->queryParameters.insert(QString(QStringLiteral("pg%1")).arg(index), QStringLiteral("ICN")); d->queryParameters.insert(QString(QStringLiteral("s%1")).arg(index), element); ++index; } const QString year = query[queryKeyYear]; if (year.isEmpty()) { d->queryParameters.insert(QStringLiteral("dr"), QStringLiteral("all")); } else { d->queryParameters.insert(QStringLiteral("dr"), QStringLiteral("pubyear")); d->queryParameters.insert(QStringLiteral("yrop"), QStringLiteral("eq")); d->queryParameters.insert(QStringLiteral("arg3"), year); } /// issue request for start page QNetworkRequest request(OnlineSearchMathSciNetPrivate::queryFormUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchMathSciNet::doneFetchingQueryForm); } QString OnlineSearchMathSciNet::label() const { return i18n("MathSciNet"); } QString OnlineSearchMathSciNet::favIconUrl() const { return QStringLiteral("http://www.ams.org/favicon.ico"); } QUrl OnlineSearchMathSciNet::homepage() const { return QUrl(QStringLiteral("http://www.ams.org/mathscinet/help/about.html")); } void OnlineSearchMathSciNet::doneFetchingQueryForm() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); emit progress(++curStep, numSteps); if (handleErrors(reply)) { // UNUSED const QString htmlText = QString::fromUtf8(reply->readAll().constData()); /// extract form's parameters ... QMap<QString, QString> formParams; /// ... and overwrite them with the query's parameters for (QMap<QString, QString>::ConstIterator it = d->queryParameters.constBegin(); it != d->queryParameters.constEnd(); ++it) formParams.insert(it.key(), it.value()); /// build url by appending parameters QUrl url(OnlineSearchMathSciNetPrivate::queryUrlStem); QUrlQuery query(url); for (QMap<QString, QString>::ConstIterator it = formParams.constBegin(); it != formParams.constEnd(); ++it) query.addQueryItem(it.key(), it.value()); for (int i = 1; i <= d->queryParameters.count(); ++i) query.addQueryItem(QString(QStringLiteral("co%1")).arg(i), QStringLiteral("AND")); ///< join search terms with an AND operation url.setQuery(query); /// issue request for result page QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchMathSciNet::doneFetchingResultPage); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchMathSciNet::doneFetchingResultPage() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); emit progress(++curStep, numSteps); if (handleErrors(reply)) { const QString htmlText = QString::fromUtf8(reply->readAll().constData()); /// extract form's parameters ... QMap<QString, QString> formParams = formParameters(htmlText, htmlText.indexOf(QStringLiteral("<form name=\"batchDownload\" action="), Qt::CaseInsensitive)); /// build url by appending parameters QUrl url(OnlineSearchMathSciNetPrivate::queryUrlStem); QUrlQuery query(url); const QStringList copyParameters = QStringList() << QStringLiteral("foo") << QStringLiteral("reqargs") << QStringLiteral("batch_title"); for (const QString &param : copyParameters) { query.addQueryItem(param, formParams[param]); } query.addQueryItem(QStringLiteral("fmt"), QStringLiteral("bibtex")); int p = -1, count = 0; static const QRegExp checkBoxRegExp(QStringLiteral("<input class=\"hlCheckBox\" type=\"checkbox\" name=\"b\" value=\"(\\d+)\"")); while (count < d->numResults && (p = checkBoxRegExp.indexIn(htmlText, p + 1)) >= 0) { query.addQueryItem(QStringLiteral("b"), checkBoxRegExp.cap(1)); ++count; } url.setQuery(query); if (count > 0) { /// issue request for bibtex code QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchMathSciNet::doneFetchingBibTeXcode); } else { /// nothing found emit progress(curStep = numSteps, numSteps); stopSearch(resultNoError); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchMathSciNet::doneFetchingBibTeXcode() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); emit progress(curStep = numSteps, numSteps); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString htmlCode = QString::fromUtf8(reply->readAll().constData()); QString bibtexCode; int p1 = -1, p2 = -1; while ((p1 = htmlCode.indexOf(QStringLiteral("<pre>"), p2 + 1)) >= 0 && (p2 = htmlCode.indexOf(QStringLiteral("</pre>"), p1 + 1)) >= 0) { bibtexCode += htmlCode.midRef(p1 + 5, p2 - p1 - 5); bibtexCode += QLatin1Char('\n'); } FileImporterBibTeX importer(this); const File *bibtexFile = importer.fromString(bibtexCode); bool hasEntry = false; if (bibtexFile != nullptr) { for (const auto &element : *bibtexFile) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntry |= publishEntry(entry); } delete bibtexFile; } stopSearch(hasEntry ? resultNoError : resultUnspecifiedError); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchMathSciNet::sanitizeEntry(QSharedPointer<Entry> entry) { const QString ftFJournal = QStringLiteral("fjournal"); if (entry->contains(ftFJournal)) { Value v = entry->value(ftFJournal); entry->remove(Entry::ftJournal); entry->remove(ftFJournal); entry->insert(Entry::ftJournal, v); } } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchmathscinet.h����������������������������������0000664�0000000�0000000�00000004143�13313000262�0025473�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_MATHSCINET_H #define KBIBTEX_ONLINESEARCH_MATHSCINET_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchMathSciNet : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchMathSciNet(QWidget *parent); ~OnlineSearchMathSciNet() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; void sanitizeEntry(QSharedPointer<Entry> entry) override; private slots: void doneFetchingQueryForm(); void doneFetchingResultPage(); void doneFetchingBibTeXcode(); private: class OnlineSearchMathSciNetPrivate; OnlineSearchMathSciNetPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_MATHSCINET_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchmrlookup.cpp����������������������������������0000664�0000000�0000000�00000012001�13313000262�0025527�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * 2014 Pavel Zorin-Kranich <pzorin@math.uni-bonn.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchmrlookup.h" #include <QNetworkReply> #include <QNetworkRequest> #include <QNetworkAccessManager> #include <QMap> #include <QUrlQuery> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "kbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" const QString OnlineSearchMRLookup::queryUrlStem = QStringLiteral("http://www.ams.org/mrlookup"); OnlineSearchMRLookup::OnlineSearchMRLookup(QWidget *parent) : OnlineSearchAbstract(parent) { /// nothing } void OnlineSearchMRLookup::startSearch(const QMap<QString, QString> &query, int) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QUrl url(queryUrlStem); QUrlQuery q(url); const QString title = query[queryKeyTitle]; q.addQueryItem(QStringLiteral("ti"), title); const QString authors = query[queryKeyAuthor]; q.addQueryItem(QStringLiteral("au"), authors); const QString year = query[queryKeyYear]; if (!year.isEmpty()) q.addQueryItem(QStringLiteral("year"), year); q.addQueryItem(QStringLiteral("format"), QStringLiteral("bibtex")); url.setQuery(q); QNetworkRequest request(url); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchMRLookup::doneFetchingResultPage); } QString OnlineSearchMRLookup::label() const { return i18n("MR Lookup"); } QString OnlineSearchMRLookup::favIconUrl() const { return QStringLiteral("http://www.ams.org/favicon.ico"); } QUrl OnlineSearchMRLookup::homepage() const { return QUrl(QStringLiteral("http://www.ams.org/mrlookup")); } void OnlineSearchMRLookup::doneFetchingResultPage() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); emit progress(curStep = numSteps, numSteps); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString htmlCode = QString::fromUtf8(reply->readAll().constData()); QString bibtexCode; int p1 = -1, p2 = -1; while ((p1 = htmlCode.indexOf(QStringLiteral("<pre>"), p2 + 1)) >= 0 && (p2 = htmlCode.indexOf(QStringLiteral("</pre>"), p1 + 1)) >= 0) { bibtexCode += htmlCode.midRef(p1 + 5, p2 - p1 - 5); bibtexCode += QLatin1Char('\n'); } FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibtexCode); bool hasEntry = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { const QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntry |= publishEntry(entry); } delete bibtexFile; } stopSearch(hasEntry ? resultNoError : resultUnspecifiedError); } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchMRLookup::sanitizeEntry(QSharedPointer<Entry> entry) { /// Rewrite 'fjournal' fields to become 'journal' fields /// (overwriting them if necessary) const QString ftFJournal = QStringLiteral("fjournal"); if (entry->contains(ftFJournal)) { Value v = entry->value(ftFJournal); entry->remove(Entry::ftJournal); entry->remove(ftFJournal); entry->insert(Entry::ftJournal, v); } /// Remove URL from entry if contains a DOI and the DOI field is present if (entry->contains(Entry::ftDOI) && entry->contains(Entry::ftUrl)) { Value v = entry->value(Entry::ftUrl); if (v.containsPattern(QStringLiteral("http://dx.doi.org"))) { entry->remove(Entry::ftUrl); } } } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchmrlookup.h������������������������������������0000664�0000000�0000000�00000004024�13313000262�0025202�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * 2014 Pavel Zorin-Kranich <pzorin@math.uni-bonn.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_MRLOOKUP_H #define KBIBTEX_ONLINESEARCH_MRLOOKUP_H #include "onlinesearchabstract.h" /** * @author Pavel Zorin-Kranich <pzorin@math.uni-bonn.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchMRLookup : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchMRLookup(QWidget *parent); void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; void sanitizeEntry(QSharedPointer<Entry> entry) override; private slots: void doneFetchingResultPage(); private: static const QString queryUrlStem; }; #endif // KBIBTEX_ONLINESEARCH_MRLOOKUP_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchoclcworldcat.cpp������������������������������0000664�0000000�0000000�00000022565�13313000262�0026357�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchoclcworldcat.h" #include <QNetworkReply> #include <QNetworkRequest> #include <QStandardPaths> #include <QUrlQuery> #include <KLocalizedString> #include "fileimporterbibtex.h" #include "xsltransform.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchOCLCWorldCat::Private { private: static const QString APIkey; OnlineSearchOCLCWorldCat *p; public: static const int countPerStep; int maxSteps, curStep; QUrl baseUrl; XSLTransform *xslt; Private(OnlineSearchOCLCWorldCat *parent) : p(parent), maxSteps(0), curStep(0) { const QString xsltFilename = QStringLiteral("kbibtex/worldcatdc2bibtex.xsl"); xslt = XSLTransform::createXSLTransform(QStandardPaths::locate(QStandardPaths::GenericDataLocation, xsltFilename)); if (xslt == NULL) qCWarning(LOG_KBIBTEX_NETWORKING) << "Could not create XSLT transformation for" << xsltFilename; } ~Private() { delete xslt; } void setBaseUrl(const QMap<QString, QString> &query) { QStringList queryFragments; /// Add words from "free text" field /// WorldCat's Open Search does not support "free" search, /// instead, title, keyword, subject etc are searched OR-connected const QStringList freeTextWords = p->splitRespectingQuotationMarks(query[queryKeyFreeText]); for (const QString &text : freeTextWords) { static const QString freeWorldTemplate = QStringLiteral("(+srw.ti+all+\"%1\"+or+srw.kw+all+\"%1\"+or+srw.au+all+\"%1\"+or+srw.bn+all+\"%1\"+or+srw.su+all+\"%1\"+)"); queryFragments.append(freeWorldTemplate.arg(text)); } /// Add words from "title" field const QStringList titleWords = p->splitRespectingQuotationMarks(query[queryKeyTitle]); for (const QString &text : titleWords) { static const QString titleTemplate = QStringLiteral("srw.ti+all+\"%1\""); queryFragments.append(titleTemplate.arg(text)); } /// Add words from "author" field const QStringList authorWords = p->splitRespectingQuotationMarks(query[queryKeyAuthor]); for (const QString &text : authorWords) { static const QString authorTemplate = QStringLiteral("srw.au+all+\"%1\""); queryFragments.append(authorTemplate.arg(text)); } /// Field year cannot stand alone, therefore if no query fragments /// have been assembled yet, no valid search will be possible. /// Invalidate base URL and return in this case. if (queryFragments.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "For WorldCat OCLC search to work, either a title or an author has get specified; free text or year only is not sufficient"; baseUrl.clear(); return; } /// Add words from "year" field const QStringList yearWords = p->splitRespectingQuotationMarks(query[queryKeyYear]); for (const QString &text : yearWords) { static const QString yearTemplate = QStringLiteral("srw.yr+any+\"%1\""); queryFragments.append(yearTemplate.arg(text)); } const QString queryString = queryFragments.join(QStringLiteral("+and+")); baseUrl = QUrl(QString(QStringLiteral("http://www.worldcat.org/webservices/catalog/search/worldcat/sru?query=%1&recordSchema=%3&wskey=%2&maximumRecords=%4")).arg(queryString).arg(OnlineSearchOCLCWorldCat::Private::APIkey).arg(QStringLiteral("info%3Asrw%2Fschema%2F1%2Fdc")).arg(OnlineSearchOCLCWorldCat::Private::countPerStep)); } }; const int OnlineSearchOCLCWorldCat::Private::countPerStep = 11; /// pseudo-randomly chosen prime number between 10 and 20 const QString OnlineSearchOCLCWorldCat::Private::APIkey = QStringLiteral("Bt6h4KIHrfbSXEahwUzpFQD6SNjQZfQUG3W2LN9oNEB5tROFGeRiDVntycEEyBe0aH17sH4wrNlnVANH"); OnlineSearchOCLCWorldCat::OnlineSearchOCLCWorldCat(QWidget *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchOCLCWorldCat::Private(this)) { // TODO } OnlineSearchOCLCWorldCat::~OnlineSearchOCLCWorldCat() { delete d; } void OnlineSearchOCLCWorldCat::startSearch() { m_hasBeenCanceled = false; delayedStoppedSearch(resultNoError); } void OnlineSearchOCLCWorldCat::startSearch(const QMap<QString, QString> &query, int numResults) { if (d->xslt == NULL) { /// Don't allow searches if xslt is not defined qCWarning(LOG_KBIBTEX_NETWORKING) << "Cannot allow searching" << label() << "if XSL Transformation not available"; delayedStoppedSearch(resultUnspecifiedError); return; } m_hasBeenCanceled = false; d->maxSteps = (numResults + OnlineSearchOCLCWorldCat::Private::countPerStep - 1) / OnlineSearchOCLCWorldCat::Private::countPerStep; d->curStep = 0; emit progress(d->curStep, d->maxSteps); d->setBaseUrl(query); if (d->baseUrl.isEmpty()) { /// No base URL set for some reason, no search possible m_hasBeenCanceled = false; delayedStoppedSearch(resultInvalidArguments); return; } QUrl startUrl = d->baseUrl; QNetworkRequest request(startUrl); QNetworkReply *reply = InternalNetworkAccessManager::self()->get(request); InternalNetworkAccessManager::self()->setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, SLOT(downloadDone())); } QString OnlineSearchOCLCWorldCat::label() const { return i18n("OCLC WorldCat"); } OnlineSearchQueryFormAbstract *OnlineSearchOCLCWorldCat::customWidget(QWidget *) { return NULL; } QUrl OnlineSearchOCLCWorldCat::homepage() const { return QUrl(QStringLiteral("http://www.worldcat.org/")); } void OnlineSearchOCLCWorldCat::cancel() { OnlineSearchAbstract::cancel(); } QString OnlineSearchOCLCWorldCat::favIconUrl() const { return QStringLiteral("http://www.worldcat.org/favicon.ico"); } void OnlineSearchOCLCWorldCat::downloadDone() { emit progress(++d->curStep, d->maxSteps); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// Ensure proper treatment of UTF-8 characters const QString atomCode = QString::fromUtf8(reply->readAll().constData()).remove(QStringLiteral("xmlns=\"http://www.w3.org/2005/Atom\"")).remove(QStringLiteral(" xmlns=\"http://www.loc.gov/zing/srw/\"")); // FIXME fix worldcatdc2bibtex.xsl to handle namespace /// Use XSL transformation to get BibTeX document from XML result const QString bibTeXcode = d->xslt->transform(atomCode).remove(QStringLiteral("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")); FileImporterBibTeX importer; File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != NULL) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } delete bibtexFile; if (!hasEntries) { emit progress(d->maxSteps, d->maxSteps); stopSearch(resultNoError); } else if (d->curStep < d->maxSteps) { QUrl nextUrl = d->baseUrl; QUrlQuery query(nextUrl); query.addQueryItem(QStringLiteral("start"), QString::number(d->curStep * OnlineSearchOCLCWorldCat::Private::countPerStep + 1)); nextUrl.setQuery(query); QNetworkRequest request(nextUrl); QNetworkReply *newReply = InternalNetworkAccessManager::self()->get(request); InternalNetworkAccessManager::self()->setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, SLOT(downloadDone())); } else { emit progress(d->maxSteps, d->maxSteps); stopSearch(resultNoError); } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } �������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchoclcworldcat.h��������������������������������0000664�0000000�0000000�00000005062�13313000262�0026015�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_OCLCWORLDCAT_H #define KBIBTEX_ONLINESEARCH_OCLCWORLDCAT_H #include "onlinesearchabstract.h" /** * According to its own description at oclc.org, "OCLC is a worldwide library * cooperative, providing services and research to improve access to the * world's information." * Access to their services is available through the developers' portal at * https://oclc.org/developer/ * WorldCat, according to OCLC's description, "connects library users to * hundreds of millions of electronic resources, including e-books, licensed * databases, online periodicals and collections of digital items." * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchOCLCWorldCat : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchOCLCWorldCat(QWidget *parent); ~OnlineSearchOCLCWorldCat(); virtual void startSearch(); virtual void startSearch(const QMap<QString, QString> &query, int numResults); virtual QString label() const; virtual OnlineSearchQueryFormAbstract *customWidget(QWidget *parent); virtual QUrl homepage() const; public slots: void cancel(); protected: virtual QString favIconUrl() const; private slots: void downloadDone(); private: class Private; Private *const d; }; #endif // KBIBTEX_ONLINESEARCH_OCLCWORLDCAT_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchpubmed.cpp������������������������������������0000664�0000000�0000000�00000022713�13313000262�0025146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchpubmed.h" #include <QNetworkReply> #include <QDateTime> #include <QTimer> #include <QStandardPaths> #include <QCoreApplication> #ifdef HAVE_KF5 #include <KLocalizedString> #include <KMessageBox> #endif // HAVE_KF5 #include "xsltransform.h" #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" const int OnlineSearchPubMed::maxNumResults = 25; const uint OnlineSearchPubMed::queryChokeTimeout = 10; /// 10 seconds uint OnlineSearchPubMed::lastQueryEpoch = 0; class OnlineSearchPubMed::OnlineSearchPubMedPrivate { private: OnlineSearchPubMed *p; const QString pubMedUrlPrefix; public: const XSLTransform xslt; OnlineSearchPubMedPrivate(OnlineSearchPubMed *parent) : p(parent), pubMedUrlPrefix(QStringLiteral("https://eutils.ncbi.nlm.nih.gov/entrez/eutils/")), xslt(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QCoreApplication::instance()->applicationName().remove(QStringLiteral("test")) + QStringLiteral("/pubmed2bibtex.xsl"))) { /// nothing } QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) { /// used to auto-detect PMIDs (unique identifiers for documents) in free text search static const QRegExp pmidRegExp(QStringLiteral("^[0-9]{6,}$")); QString url = pubMedUrlPrefix + QStringLiteral("esearch.fcgi?db=pubmed&tool=kbibtex&term="); const QStringList freeTextWords = p->splitRespectingQuotationMarks(query[queryKeyFreeText]); const QStringList yearWords = p->splitRespectingQuotationMarks(query[queryKeyYear]); const QStringList titleWords = p->splitRespectingQuotationMarks(query[queryKeyTitle]); const QStringList authorWords = p->splitRespectingQuotationMarks(query[queryKeyAuthor]); /// append search terms QStringList queryFragments; queryFragments.reserve(freeTextWords.size() + yearWords.size() + titleWords.size() + authorWords.size()); /// add words from "free text" field, but auto-detect PMIDs for (const QString &text : freeTextWords) queryFragments.append(text + (pmidRegExp.indexIn(text) >= 0 ? QStringLiteral("") : QStringLiteral("[All Fields]"))); /// add words from "year" field for (const QString &text : yearWords) queryFragments.append(text); /// add words from "title" field for (const QString &text : titleWords) queryFragments.append(text + QStringLiteral("[Title]")); /// add words from "author" field for (const QString &text : authorWords) queryFragments.append(text + QStringLiteral("[Author]")); /// Join all search terms with an AND operation url.append(queryFragments.join(QStringLiteral("+AND+"))); url = url.replace(QLatin1Char('"'), QStringLiteral("%22")); /// set number of expected results url.append(QString(QStringLiteral("&retstart=0&retmax=%1&retmode=xml")).arg(numResults)); return QUrl::fromUserInput(url); } QUrl buildFetchIdUrl(const QStringList &idList) { const QString urlText = pubMedUrlPrefix + QStringLiteral("efetch.fcgi?retmode=xml&db=pubmed&id=") + idList.join(QStringLiteral(",")); return QUrl::fromUserInput(urlText); } }; OnlineSearchPubMed::OnlineSearchPubMed(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchPubMed::OnlineSearchPubMedPrivate(this)) { // nothing } OnlineSearchPubMed::~OnlineSearchPubMed() { delete d; } void OnlineSearchPubMed::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 2); /// enforcing limit on number of results numResults = qMin(maxNumResults, numResults); /// enforcing choke on number of searchs per time if (QDateTime::currentDateTimeUtc().toTime_t() - lastQueryEpoch < queryChokeTimeout) { qCWarning(LOG_KBIBTEX_NETWORKING) << "Too many search queries per time; choke enforces pause of" << queryChokeTimeout << "seconds between queries"; delayedStoppedSearch(resultNoError); return; } QNetworkRequest request(d->buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchPubMed::eSearchDone); } QString OnlineSearchPubMed::label() const { return i18n("PubMed"); } QString OnlineSearchPubMed::favIconUrl() const { return QStringLiteral("https://www.ncbi.nlm.nih.gov/favicon.ico"); } QUrl OnlineSearchPubMed::homepage() const { return QUrl(QStringLiteral("https://www.ncbi.nlm.nih.gov/pubmed/")); } void OnlineSearchPubMed::eSearchDone() { emit progress(++curStep, numSteps); lastQueryEpoch = QDateTime::currentDateTimeUtc().toTime_t(); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { const QString result = QString::fromUtf8(reply->readAll().constData()); if (!result.contains(QStringLiteral("<Count>0</Count>"))) { /// without parsing XML text correctly, just extract all PubMed ids QStringList idList; int p1, p2 = 0; /// All IDs are within <IdList>...</IdList> if ((p1 = result.indexOf(QStringLiteral("<IdList>"))) > 0 && (p2 = result.indexOf(QStringLiteral("</IdList>"), p1)) > 0) { int p3, p4 = p1; /// Search for each <Id>...</Id> while ((p3 = result.indexOf(QStringLiteral("<Id>"), p4)) > 0 && (p4 = result.indexOf(QStringLiteral("</Id>"), p3)) > 0 && p4 < p2) { /// Extract ID and add it to list const QString id = result.mid(p3 + 4, p4 - p3 - 4); idList << id; } } if (idList.isEmpty()) { stopSearch(resultUnspecifiedError); } else { /// fetch full bibliographic details for found PubMed ids QNetworkRequest request(d->buildFetchIdUrl(idList)); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchPubMed::eFetchDone); } } else { /// search resulted in no hits (and PubMed told so) stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchPubMed::eFetchDone() { emit progress(++curStep, numSteps); lastQueryEpoch = QDateTime::currentDateTimeUtc().toTime_t(); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString input = QString::fromUtf8(reply->readAll().constData()); /// use XSL transformation to get BibTeX document from XML result QString bibTeXcode = d->xslt.transform(input); if (bibTeXcode.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "XSL tranformation failed for data from " << reply->url().toDisplayString(); stopSearch(resultInvalidArguments); } else { /// remove XML header if (bibTeXcode[0] == '<') bibTeXcode = bibTeXcode.mid(bibTeXcode.indexOf(QStringLiteral(">")) + 1); FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); publishEntry(entry); } stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); delete bibtexFile; } else { stopSearch(resultUnspecifiedError); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } �����������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchpubmed.h��������������������������������������0000664�0000000�0000000�00000004073�13313000262�0024612�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_PUBMED_H #define KBIBTEX_ONLINESEARCH_PUBMED_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchPubMed : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchPubMed(QObject *parent); ~OnlineSearchPubMed() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; static const int maxNumResults; static const uint queryChokeTimeout; protected: QString favIconUrl() const override; private slots: void eSearchDone(); void eFetchDone(); private: class OnlineSearchPubMedPrivate; OnlineSearchPubMedPrivate *d; static uint lastQueryEpoch; }; #endif // KBIBTEX_ONLINESEARCH_PUBMED_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsciencedirect.cpp�����������������������������0000664�0000000�0000000�00000032623�13313000262�0026477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchsciencedirect.h" #include <QNetworkReply> #include <QUrlQuery> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #include "encoderlatex.h" #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" class OnlineSearchScienceDirect::OnlineSearchScienceDirectPrivate { private: // UNUSED OnlineSearchScienceDirect *p; public: QString queryFreetext, queryAuthor; int currentSearchPosition; int numExpectedResults, numFoundResults; QStringList bibTeXUrls; int runningJobs; OnlineSearchScienceDirectPrivate(OnlineSearchScienceDirect */* UNUSED parent*/) : /* UNUSED p(parent), */ currentSearchPosition(0), numExpectedResults(0), numFoundResults(0), runningJobs(0) { /// nothing } void sanitizeBibTeXCode(QString &code) { /// find and escape unprotected quotation marks in the text (e.g. abstract) const QRegExp quotationMarks("([^= ]\\s*)\"(\\s*[a-z.])", Qt::CaseInsensitive); int p = -2; while ((p = quotationMarks.indexIn(code, p + 2)) >= 0) { code = code.left(p - 1) + quotationMarks.cap(1) + QStringLiteral("\\\"") + quotationMarks.cap(2) + code.mid(p + quotationMarks.cap(0).length()); } /// Remove "<!-- Tag Not Handled -->" and other XML tags from keywords int i1 = -1; while ((i1 = code.indexOf(QStringLiteral("keywords = "), i1 + 1)) > 0) { const int i2 = code.indexOf(QStringLiteral("\n"), i1); int t1 = -1; while ((t1 = code.indexOf(QLatin1Char('<'), i1 + 7)) > 0) { const int t2 = code.indexOf(QLatin1Char('>'), t1); if (t2 > 0 && t1 < i2 && t2 < i2) code = code.left(t1) + code.mid(t2 + 1); else break; } } /// Fix some HTML-isms code.replace(QStringLiteral("\\&amp;"), QStringLiteral("\\&")).replace(QStringLiteral("&amp;"), QStringLiteral("\\&")); } }; OnlineSearchScienceDirect::OnlineSearchScienceDirect(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchScienceDirectPrivate(this)) { // nothing } OnlineSearchScienceDirect::~OnlineSearchScienceDirect() { delete d; } void OnlineSearchScienceDirect::startSearch(const QMap<QString, QString> &query, int numResults) { d->runningJobs = 0; d->numFoundResults = 0; m_hasBeenCanceled = false; d->bibTeXUrls.clear(); d->currentSearchPosition = 0; emit progress(curStep = 0, numSteps = 2 + 2 * numResults); d->queryFreetext = query[queryKeyFreeText] + QStringLiteral(" ") + query[queryKeyTitle] + QStringLiteral(" ") + query[queryKeyYear]; d->queryAuthor = query[queryKeyAuthor]; d->numExpectedResults = numResults; ++d->runningJobs; QNetworkRequest request(QStringLiteral("http://www.sciencedirect.com/science/search")); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingStartPage); } QString OnlineSearchScienceDirect::label() const { return i18n("ScienceDirect"); } QString OnlineSearchScienceDirect::favIconUrl() const { return QStringLiteral("http://cdn.els-cdn.com/sd/favSD.ico"); } QUrl OnlineSearchScienceDirect::homepage() const { return QUrl(QStringLiteral("http://www.sciencedirect.com/")); } void OnlineSearchScienceDirect::doneFetchingStartPage() { emit progress(++curStep, numSteps); --d->runningJobs; if (d->runningJobs != 0) qCWarning(LOG_KBIBTEX_NETWORKING) << "In OnlineSearchScienceDirect::doneFetchingStartPage: Some jobs are running (" << d->runningJobs << "!= 0 )"; QUrl redirUrl; QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply, redirUrl)) { const QString htmlText = QString::fromUtf8(reply->readAll().constData()); if (redirUrl.isValid()) { ++numSteps; ++d->runningJobs; /// redirection to another url QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply->url()); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingStartPage); } else { InternalNetworkAccessManager::instance().mergeHtmlHeadCookies(htmlText, reply->url()); QUrl url(QStringLiteral("http://www.sciencedirect.com/science")); QMap<QString, QString> inputMap = formParameters(htmlText, htmlText.indexOf(QStringLiteral("<form id=\"quickSearch\" name=\"qkSrch\" metho"), Qt::CaseInsensitive)); inputMap[QStringLiteral("qs_all")] = d->queryFreetext.simplified(); inputMap[QStringLiteral("qs_author")] = d->queryAuthor.simplified(); inputMap[QStringLiteral("resultsPerPage")] = QString::number(d->numExpectedResults); inputMap[QStringLiteral("_ob")] = QStringLiteral("QuickSearchURL"); inputMap[QStringLiteral("_method")] = QStringLiteral("submitForm"); inputMap[QStringLiteral("sdSearch")] = QStringLiteral("Search"); QUrlQuery query(url); static const QStringList orderOfParameters = QString(QStringLiteral("_ob|_method|_acct|_origin|_zone|md5|_eidkey|qs_issue|qs_pages|qs_title|qs_vol|sdSearch|qs_all|qs_author|resultsPerPage")).split(QStringLiteral("|")); for (const QString &key : orderOfParameters) { if (!inputMap.contains(key)) continue; query.addQueryItem(key, inputMap[key]); } url.setQuery(query); ++d->runningJobs; QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingResultPage); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchScienceDirect::doneFetchingResultPage() { --d->runningJobs; if (d->runningJobs != 0) qCWarning(LOG_KBIBTEX_NETWORKING) << "In OnlineSearchScienceDirect::doneFetchingResultPage: Some jobs are running (" << d->runningJobs << "!= 0 )"; QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { QUrl redirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (!redirUrl.isEmpty()) { ++d->runningJobs; QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingResultPage); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); } else { emit progress(++curStep, numSteps); const QString htmlText = QString::fromUtf8(reply->readAll().constData()); InternalNetworkAccessManager::instance().mergeHtmlHeadCookies(htmlText, reply->url()); QSet<QString> knownUrls; int p = -1, p2 = -1; while ((p = htmlText.indexOf(QStringLiteral("http://www.sciencedirect.com/science/article/pii/"), p + 1)) >= 0 && (p2 = htmlText.indexOf(QRegExp("[\"/ #]"), p + 50)) >= 0) { const QString urlText = htmlText.mid(p, p2 - p); if (knownUrls.contains(urlText)) continue; knownUrls.insert(urlText); if (d->numFoundResults < d->numExpectedResults) { ++d->numFoundResults; ++d->runningJobs; QUrl url(urlText); QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingAbstractPage); } } } if (d->runningJobs <= 0) { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchScienceDirect::doneFetchingAbstractPage() { --d->runningJobs; if (d->runningJobs < 0) qCWarning(LOG_KBIBTEX_NETWORKING) << "In OnlineSearchScienceDirect::doneFetchingAbstractPage: Counting jobs failed (" << d->runningJobs << "< 0 )"; QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { QUrl redirUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (!redirUrl.isEmpty()) { ++d->runningJobs; QNetworkRequest request(redirUrl); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingAbstractPage); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); } else { emit progress(++curStep, numSteps); const QString htmlText = QString::fromUtf8(reply->readAll().constData()); InternalNetworkAccessManager::instance().mergeHtmlHeadCookies(htmlText, reply->url()); int p1 = -1, p2 = -1; if ((p1 = htmlText.indexOf(QStringLiteral("/science?_ob=DownloadURL&"))) >= 0 && (p2 = htmlText.indexOf(QRegExp("[ \"<>]"), p1 + 1)) >= 0) { QUrl url("http://www.sciencedirect.com" + htmlText.mid(p1, p2 - p1)); QUrlQuery query(url); query.addQueryItem(QStringLiteral("citation-type"), QStringLiteral("BIBTEX")); query.addQueryItem(QStringLiteral("format"), QStringLiteral("cite-abs")); query.addQueryItem(QStringLiteral("export"), QStringLiteral("Export")); url.setQuery(query); ++d->runningJobs; QNetworkRequest request(url); QNetworkReply *newReply = InternalNetworkAccessManager::instance().get(request, reply); connect(newReply, &QNetworkReply::finished, this, &OnlineSearchScienceDirect::doneFetchingBibTeX); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(newReply); } } if (d->runningJobs <= 0) { stopSearch(resultNoError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } void OnlineSearchScienceDirect::doneFetchingBibTeX() { emit progress(++curStep, numSteps); --d->runningJobs; if (d->runningJobs < 0) qCWarning(LOG_KBIBTEX_NETWORKING) << "In OnlineSearchScienceDirect::doneFetchingAbstractPage: Counting jobs failed (" << d->runningJobs << "< 0 )"; QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); d->sanitizeBibTeXCode(bibTeXcode); FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntry = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntry |= publishEntry(entry); } delete bibtexFile; } if (d->runningJobs <= 0) { stopSearch(hasEntry ? resultNoError : resultUnspecifiedError); emit progress(curStep = numSteps, numSteps); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); } �������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsciencedirect.h�������������������������������0000664�0000000�0000000�00000004623�13313000262�0026143�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_SCIENCEDIRECT_H #define KBIBTEX_ONLINESEARCH_SCIENCEDIRECT_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> * * On the subject of having multiple search terms in a search, * SciVerse ScienceDirect's documentation states: "[...] when * you enter search terms in multiple fields, an AND connector * is automatically included in your search" * (source: http://help.sciencedirect.com/flare/Content/qs_multiple.htm) */ class KBIBTEXNETWORKING_EXPORT OnlineSearchScienceDirect : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchScienceDirect(QObject *parent); ~OnlineSearchScienceDirect() override; void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; private: class OnlineSearchScienceDirectPrivate; OnlineSearchScienceDirectPrivate *d; private slots: void doneFetchingStartPage(); void doneFetchingResultPage(); void doneFetchingAbstractPage(); void doneFetchingBibTeX(); }; #endif // KBIBTEX_ONLINESEARCH_SCIENCEDIRECT_H �������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsimplebibtexdownload.cpp����������������������0000664�0000000�0000000�00000011232�13313000262�0030103�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchsimplebibtexdownload.h" #include <QNetworkRequest> #include <QNetworkReply> #include "fileimporterbibtex.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" OnlineSearchSimpleBibTeXDownload::OnlineSearchSimpleBibTeXDownload(QWidget *parent) : OnlineSearchAbstract(parent) { // nothing } void OnlineSearchSimpleBibTeXDownload::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 2); QNetworkRequest request(buildQueryUrl(query, numResults)); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchSimpleBibTeXDownload::downloadDone); } QString OnlineSearchSimpleBibTeXDownload::processRawDownload(const QString &download) { /// Default implementation does not do anything return download; } void OnlineSearchSimpleBibTeXDownload::downloadDone() { emit progress(++curStep, numSteps = 2); QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); if (bibTeXcode.contains(QStringLiteral("<html")) || bibTeXcode.contains(QStringLiteral("<HTML"))) { /// Replace all linebreak-like characters, in case they occur inside the BibTeX code static const QRegExp htmlLinebreakRegExp(QStringLiteral("<[/]?(br|p)[^>]*[/]?>")); bibTeXcode = bibTeXcode.remove(htmlLinebreakRegExp); /// Find first BibTeX entry in HTML code, clip away all HTML code before that static const QRegExp elementTypeRegExp(QStringLiteral("[@]\\S+\\{")); int p1 = -1; /// hop over JavaScript's "@import" statements while ((p1 = bibTeXcode.indexOf(elementTypeRegExp, p1 + 1)) >= 0 && elementTypeRegExp.cap(0) == QStringLiteral("@import{")); if (p1 > 1) bibTeXcode = bibTeXcode.mid(p1); /// Find HTML code after BibTeX code, clip that away, too static const QRegExp htmlContinuationRegExp(QStringLiteral("<[/]?\\S+")); p1 = bibTeXcode.indexOf(htmlContinuationRegExp); if (p1 > 1) bibTeXcode = bibTeXcode.left(p1 - 1); } if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const auto &element : const_cast<const File &>(*bibtexFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } else { /// returned file is empty stopSearch(resultNoError); } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); emit progress(curStep = numSteps, numSteps); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsimplebibtexdownload.h������������������������0000664�0000000�0000000�00000003657�13313000262�0027564�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_SIMPLEBIBTEXDOWNLOAD_H #define KBIBTEX_ONLINESEARCH_SIMPLEBIBTEXDOWNLOAD_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchSimpleBibTeXDownload : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchSimpleBibTeXDownload(QWidget *parent); void startSearch(const QMap<QString, QString> &query, int numResults) override; protected: virtual QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) = 0; virtual QString processRawDownload(const QString &download); private slots: void downloadDone(); }; #endif // KBIBTEX_ONLINESEARCH_SIMPLEBIBTEXDOWNLOAD_H ���������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsoanasaads.cpp��������������������������������0000664�0000000�0000000�00000010214�13313000262�0026000�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchsoanasaads.h" #include <KLocalizedString> OnlineSearchSOANASAADS::OnlineSearchSOANASAADS(QWidget *parent) : OnlineSearchSimpleBibTeXDownload(parent) { // nothing } QString OnlineSearchSOANASAADS::label() const { return i18n("SAO/NASA Astrophysics Data System (ADS)"); } QUrl OnlineSearchSOANASAADS::homepage() const { return QUrl(QStringLiteral("http://adswww.harvard.edu/")); } QString OnlineSearchSOANASAADS::favIconUrl() const { return QStringLiteral("http://adsabs.harvard.edu/favicon.ico"); } QUrl OnlineSearchSOANASAADS::buildQueryUrl(const QMap<QString, QString> &query, int numResults) { static const QString globalSearch = QStringLiteral("\"%1\""); static const QString rangeSearch = QStringLiteral("%1:\"%2\""); // TODO /// http://adsabs.harvard.edu/cgi-bin/basic_connect?qsearch=Hansen&version=1&data_type=BIBTEXPLUS&type=FILE&sort=NDATE&nr_to_return=5 const QStringList freeTextWords = splitRespectingQuotationMarks(query[queryKeyFreeText]); const QStringList yearWords = splitRespectingQuotationMarks(query[queryKeyYear]); const QStringList titleWords = splitRespectingQuotationMarks(query[queryKeyTitle]); const QStringList authorWords = splitRespectingQuotationMarks(query[queryKeyAuthor]); /// append search terms QStringList queryFragments; queryFragments.reserve(freeTextWords.size() + yearWords.size() + titleWords.size() + authorWords.size()); /// add words from "free text" field for (const QString &word : freeTextWords) queryFragments.append(globalSearch.arg(word)); /// add words from "year" field for (const QString &word : yearWords) queryFragments.append(word); ///< no quotation marks around years /// add words from "title" field for (const QString &word : titleWords) queryFragments.append(rangeSearch.arg(QStringLiteral("intitle"), word)); /// add words from "author" field for (const QString &word : authorWords) queryFragments.append(rangeSearch.arg(QStringLiteral("author"), word)); /// Build URL QString urlText = QStringLiteral("http://adsabs.harvard.edu/cgi-bin/basic_connect?version=1&data_type=BIBTEXPLUS&type=FILE&sort=NDATE&qsearch="); urlText.append(queryFragments.join(QStringLiteral("+"))); urlText = urlText.replace(QLatin1Char('"'), QStringLiteral("%22")); /// set number of expected results urlText.append(QString(QStringLiteral("&nr_to_return=%1")).arg(numResults)); return QUrl::fromUserInput(urlText); } QString OnlineSearchSOANASAADS::processRawDownload(const QString &download) { /// Skip HTML header and some other non-BibTeX content const int p1 = download.indexOf(QStringLiteral("abstracts, starting")); if (p1 > 1) { const int p2 = download.indexOf(QStringLiteral("\n"), p1); if (p2 > p1) return download.mid(p2 + 1); } /// Skipping header failed, return input text as it was return download; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchsoanasaads.h����������������������������������0000664�0000000�0000000�00000003607�13313000262�0025455�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_SOANASAADS_H #define KBIBTEX_ONLINESEARCH_SOANASAADS_H #include "onlinesearchsimplebibtexdownload.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OnlineSearchSOANASAADS : public OnlineSearchSimpleBibTeXDownload { Q_OBJECT public: explicit OnlineSearchSOANASAADS(QWidget *parent); QString label() const override; QUrl homepage() const override; protected: QString favIconUrl() const override; QUrl buildQueryUrl(const QMap<QString, QString> &query, int numResults) override; QString processRawDownload(const QString &download) override; }; #endif // KBIBTEX_ONLINESEARCH_SOANASAADS_H �������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchspringerlink.cpp������������������������������0000664�0000000�0000000�00000033504�13313000262�0026401�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "onlinesearchspringerlink.h" #ifdef HAVE_QTWIDGETS #include <QFormLayout> #include <QSpinBox> #include <QLabel> #endif // HAVE_QTWIDGETS #include <QNetworkRequest> #include <QNetworkAccessManager> #include <QNetworkReply> #include <QStandardPaths> #include <QUrlQuery> #include <QCoreApplication> #ifdef HAVE_KF5 #include <KLocalizedString> #endif // HAVE_KF5 #ifdef HAVE_QTWIDGETS #include <KLineEdit> #include <KConfigGroup> #endif // HAVE_QTWIDGETS #include "internalnetworkaccessmanager.h" #include "encoderlatex.h" #include "fileimporterbibtex.h" #include "xsltransform.h" #include "logging_networking.h" #ifdef HAVE_QTWIDGETS /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class OnlineSearchSpringerLink::OnlineSearchQueryFormSpringerLink : public OnlineSearchQueryFormAbstract { Q_OBJECT private: QString configGroupName; void loadState() { KConfigGroup configGroup(config, configGroupName); lineEditFreeText->setText(configGroup.readEntry(QStringLiteral("free"), QString())); lineEditTitle->setText(configGroup.readEntry(QStringLiteral("title"), QString())); lineEditBookTitle->setText(configGroup.readEntry(QStringLiteral("bookTitle"), QString())); lineEditAuthorEditor->setText(configGroup.readEntry(QStringLiteral("authorEditor"), QString())); lineEditYear->setText(configGroup.readEntry(QStringLiteral("year"), QString())); numResultsField->setValue(configGroup.readEntry(QStringLiteral("numResults"), 10)); } public: KLineEdit *lineEditFreeText, *lineEditTitle, *lineEditBookTitle, *lineEditAuthorEditor, *lineEditYear; QSpinBox *numResultsField; OnlineSearchQueryFormSpringerLink(QWidget *parent) : OnlineSearchQueryFormAbstract(parent), configGroupName(QStringLiteral("Search Engine SpringerLink")) { QFormLayout *layout = new QFormLayout(this); layout->setMargin(0); lineEditFreeText = new KLineEdit(this); lineEditFreeText->setClearButtonShown(true); QLabel *label = new QLabel(i18n("Free Text:"), this); label->setBuddy(lineEditFreeText); layout->addRow(label, lineEditFreeText); connect(lineEditFreeText, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormSpringerLink::returnPressed); lineEditTitle = new KLineEdit(this); lineEditTitle->setClearButtonShown(true); label = new QLabel(i18n("Title:"), this); label->setBuddy(lineEditTitle); layout->addRow(label, lineEditTitle); connect(lineEditTitle, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormSpringerLink::returnPressed); lineEditBookTitle = new KLineEdit(this); lineEditBookTitle->setClearButtonShown(true); label = new QLabel(i18n("Book/Journal title:"), this); label->setBuddy(lineEditBookTitle); layout->addRow(label, lineEditBookTitle); connect(lineEditBookTitle, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormSpringerLink::returnPressed); lineEditAuthorEditor = new KLineEdit(this); lineEditAuthorEditor->setClearButtonShown(true); label = new QLabel(i18n("Author or Editor:"), this); label->setBuddy(lineEditAuthorEditor); layout->addRow(label, lineEditAuthorEditor); connect(lineEditAuthorEditor, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormSpringerLink::returnPressed); lineEditYear = new KLineEdit(this); lineEditYear->setClearButtonShown(true); label = new QLabel(i18n("Year:"), this); label->setBuddy(lineEditYear); layout->addRow(label, lineEditYear); connect(lineEditYear, &KLineEdit::returnPressed, this, &OnlineSearchQueryFormSpringerLink::returnPressed); numResultsField = new QSpinBox(this); label = new QLabel(i18n("Number of Results:"), this); label->setBuddy(numResultsField); layout->addRow(label, numResultsField); numResultsField->setMinimum(3); numResultsField->setMaximum(100); lineEditFreeText->setFocus(Qt::TabFocusReason); loadState(); } bool readyToStart() const override { return !(lineEditFreeText->text().isEmpty() && lineEditTitle->text().isEmpty() && lineEditBookTitle->text().isEmpty() && lineEditAuthorEditor->text().isEmpty()); } void copyFromEntry(const Entry &entry) override { lineEditTitle->setText(PlainTextValue::text(entry[Entry::ftTitle])); QString bookTitle = PlainTextValue::text(entry[Entry::ftBookTitle]); if (bookTitle.isEmpty()) bookTitle = PlainTextValue::text(entry[Entry::ftJournal]); lineEditBookTitle->setText(bookTitle); lineEditAuthorEditor->setText(authorLastNames(entry).join(QStringLiteral(" "))); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(QStringLiteral("free"), lineEditFreeText->text()); configGroup.writeEntry(QStringLiteral("title"), lineEditTitle->text()); configGroup.writeEntry(QStringLiteral("bookTitle"), lineEditBookTitle->text()); configGroup.writeEntry(QStringLiteral("authorEditor"), lineEditAuthorEditor->text()); configGroup.writeEntry(QStringLiteral("year"), lineEditYear->text()); configGroup.writeEntry(QStringLiteral("numResults"), numResultsField->value()); config->sync(); } }; #endif // HAVE_QTWIDGETS class OnlineSearchSpringerLink::OnlineSearchSpringerLinkPrivate { private: OnlineSearchSpringerLink *p; public: const QString springerMetadataKey; const XSLTransform xslt; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormSpringerLink *form; #endif // HAVE_QTWIDGETS OnlineSearchSpringerLinkPrivate(OnlineSearchSpringerLink *parent) : p(parent), springerMetadataKey(QStringLiteral("7pphfmtb9rtwt3dw3e4hm7av")), xslt(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QCoreApplication::instance()->applicationName().remove(QStringLiteral("test")) + QStringLiteral("/pam2bibtex.xsl"))) #ifdef HAVE_QTWIDGETS , form(nullptr) #endif // HAVE_QTWIDGETS { /// nothing } #ifdef HAVE_QTWIDGETS QUrl buildQueryUrl() { if (form == nullptr) return QUrl(); QUrl queryUrl = QUrl(QString(QStringLiteral("http://api.springer.com/metadata/pam/?api_key=")).append(springerMetadataKey)); QString queryString = form->lineEditFreeText->text(); const QStringList titleChunks = p->splitRespectingQuotationMarks(form->lineEditTitle->text()); for (const QString &titleChunk : titleChunks) { queryString += QString(QStringLiteral(" title:%1")).arg(EncoderLaTeX::instance().convertToPlainAscii(titleChunk)); } const QStringList bookTitleChunks = p->splitRespectingQuotationMarks(form->lineEditBookTitle->text()); for (const QString &titleChunk : bookTitleChunks) { queryString += QString(QStringLiteral(" ( journal:%1 OR book:%1 )")).arg(EncoderLaTeX::instance().convertToPlainAscii(titleChunk)); } const QStringList authors = p->splitRespectingQuotationMarks(form->lineEditAuthorEditor->text()); for (const QString &author : authors) { queryString += QString(QStringLiteral(" name:%1")).arg(EncoderLaTeX::instance().convertToPlainAscii(author)); } const QString year = form->lineEditYear->text(); if (!year.isEmpty()) queryString += QString(QStringLiteral(" year:%1")).arg(year); queryString = queryString.simplified(); QUrlQuery query(queryUrl); query.addQueryItem(QStringLiteral("q"), queryString); queryUrl.setQuery(query); return queryUrl; } #endif // HAVE_QTWIDGETS QUrl buildQueryUrl(const QMap<QString, QString> &query) { QUrl queryUrl = QUrl(QString(QStringLiteral("http://api.springer.com/metadata/pam/?api_key=")).append(springerMetadataKey)); QString queryString = query[queryKeyFreeText]; const QStringList titleChunks = p->splitRespectingQuotationMarks(query[queryKeyTitle]); for (const QString &titleChunk : titleChunks) { queryString += QString(QStringLiteral(" title:%1")).arg(EncoderLaTeX::instance().convertToPlainAscii(titleChunk)); } const QStringList authors = p->splitRespectingQuotationMarks(query[queryKeyAuthor]); for (const QString &author : authors) { queryString += QString(QStringLiteral(" name:%1")).arg(EncoderLaTeX::instance().convertToPlainAscii(author)); } QString year = query[queryKeyYear]; if (!year.isEmpty()) { static const QRegExp yearRegExp("\\b(18|19|20)[0-9]{2}\\b"); if (yearRegExp.indexIn(year) >= 0) { year = yearRegExp.cap(0); queryString += QString(QStringLiteral(" year:%1")).arg(year); } } queryString = queryString.simplified(); QUrlQuery q(queryUrl); q.addQueryItem(QStringLiteral("q"), queryString); queryUrl.setQuery(q); return queryUrl; } }; OnlineSearchSpringerLink::OnlineSearchSpringerLink(QObject *parent) : OnlineSearchAbstract(parent), d(new OnlineSearchSpringerLink::OnlineSearchSpringerLinkPrivate(this)) { // nothing } OnlineSearchSpringerLink::~OnlineSearchSpringerLink() { delete d; } #ifdef HAVE_QTWIDGETS void OnlineSearchSpringerLink::startSearchFromForm() { m_hasBeenCanceled = false; emit progress(curStep = 0, numSteps = 1); QUrl springerLinkSearchUrl = d->buildQueryUrl(); QNetworkRequest request(springerLinkSearchUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchSpringerLink::doneFetchingPAM); if (d->form != nullptr) d->form->saveState(); } #endif // HAVE_QTWIDGETS void OnlineSearchSpringerLink::startSearch(const QMap<QString, QString> &query, int numResults) { m_hasBeenCanceled = false; QUrl springerLinkSearchUrl = d->buildQueryUrl(query); QUrlQuery q(springerLinkSearchUrl); q.addQueryItem(QStringLiteral("p"), QString::number(numResults)); springerLinkSearchUrl.setQuery(q); emit progress(curStep = 0, numSteps = 1); QNetworkRequest request(springerLinkSearchUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); InternalNetworkAccessManager::instance().setNetworkReplyTimeout(reply); connect(reply, &QNetworkReply::finished, this, &OnlineSearchSpringerLink::doneFetchingPAM); } QString OnlineSearchSpringerLink::label() const { return i18n("SpringerLink"); } QString OnlineSearchSpringerLink::favIconUrl() const { return QStringLiteral("http://link.springer.com/static/0.6623/sites/link/images/favicon.ico"); } #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *OnlineSearchSpringerLink::customWidget(QWidget *parent) { if (d->form == nullptr) d->form = new OnlineSearchQueryFormSpringerLink(parent); return d->form; } #endif // HAVE_QTWIDGETS QUrl OnlineSearchSpringerLink::homepage() const { return QUrl(QStringLiteral("http://www.springerlink.com/")); } void OnlineSearchSpringerLink::doneFetchingPAM() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (handleErrors(reply)) { /// ensure proper treatment of UTF-8 characters const QString xmlSource = QString::fromUtf8(reply->readAll().constData()); const QString bibTeXcode = d->xslt.transform(xmlSource).remove(QStringLiteral("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")); if (bibTeXcode.isEmpty()) { qCWarning(LOG_KBIBTEX_NETWORKING) << "XSL tranformation failed for data from " << reply->url().toDisplayString(); stopSearch(resultInvalidArguments); } else { FileImporterBibTeX importer(this); const File *bibtexFile = importer.fromString(bibTeXcode); bool hasEntries = false; if (bibtexFile != nullptr) { for (const QSharedPointer<Element> &element : *bibtexFile) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); hasEntries |= publishEntry(entry); } stopSearch(resultNoError); delete bibtexFile; } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "No valid BibTeX file results returned on request on" << reply->url().toDisplayString(); stopSearch(resultUnspecifiedError); } } } else qCWarning(LOG_KBIBTEX_NETWORKING) << "url was" << reply->url().toDisplayString(); emit progress(curStep = numSteps, numSteps); } #include "onlinesearchspringerlink.moc" ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/onlinesearch/onlinesearchspringerlink.h��������������������������������0000664�0000000�0000000�00000005462�13313000262�0026050�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_ONLINESEARCH_SPRINGERLINK_H #define KBIBTEX_ONLINESEARCH_SPRINGERLINK_H #include "onlinesearchabstract.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> * * See also: http://dev.springer.com/ * * On the subject of having multiple "constraints" (search terms) in * a search, Springer's documentation states: "Each constraint that * appears in your request will automatically be ANDed with all the others * For instance, a request including constraints: "title:bone+name:Jones" * is the equivilent to the request containing constraints concatenated by * the AND operator: "title:bone%20AND%20name:Jones". * (source: http://dev.springer.com/docs/read/Filters_Facets_and_Constraints) */ class KBIBTEXNETWORKING_EXPORT OnlineSearchSpringerLink : public OnlineSearchAbstract { Q_OBJECT public: explicit OnlineSearchSpringerLink(QObject *parent); ~OnlineSearchSpringerLink() override; #ifdef HAVE_QTWIDGETS void startSearchFromForm() override; #endif // HAVE_QTWIDGETS void startSearch(const QMap<QString, QString> &query, int numResults) override; QString label() const override; #ifdef HAVE_QTWIDGETS OnlineSearchQueryFormAbstract *customWidget(QWidget *parent) override; #endif // HAVE_QTWIDGETS QUrl homepage() const override; protected: QString favIconUrl() const override; private slots: void doneFetchingPAM(); private: #ifdef HAVE_QTWIDGETS class OnlineSearchQueryFormSpringerLink; #endif // HAVE_QTWIDGETS class OnlineSearchSpringerLinkPrivate; OnlineSearchSpringerLinkPrivate *d; }; #endif // KBIBTEX_ONLINESEARCH_SPRINGERLINK_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/����������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0017436�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/api.cpp���������������������������������������������������������0000664�0000000�0000000�00000007265�13313000262�0020725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "api.h" #include <QUrl> #include <QUrlQuery> #include <QDateTime> #include <QTimer> using namespace Zotero; class Zotero::API::Private { private: // UNUSED Zotero::API *p; public: const QUrl apiBaseUrl; const int userOrGroupPrefix; const QString apiKey; QDateTime backoffElapseTime; Private(RequestScope requestScope, int prefix, const QString &_apiKey, Zotero::API */* UNUSED parent*/) : // UNUSED p(parent), apiBaseUrl(QUrl(QString(QStringLiteral("https://api.zotero.org/%1/%2")).arg(requestScope == GroupRequest ? QStringLiteral("groups") : QStringLiteral("users")).arg(prefix))), userOrGroupPrefix(prefix), apiKey(_apiKey), backoffElapseTime(QDateTime::currentDateTime().addSecs(-5)) { /// nothing } }; const int Zotero::API::limit = 45; API::API(RequestScope requestScope, int userOrGroupPrefix, const QString &apiKey, QObject *parent) : QObject(parent), d(new API::Private(requestScope, userOrGroupPrefix, apiKey, this)) { /// nothing } API::~API() { delete d; } void API::addLimitToUrl(QUrl &url) const { static const QString limitKey = QStringLiteral("limit"); QUrlQuery query(url); query.removeQueryItem(limitKey); query.addQueryItem(limitKey, QString::number(Zotero::API::limit)); url.setQuery(query); } QUrl API::baseUrl() const { return d->apiBaseUrl; } int API::userOrGroupPrefix() const { return d->userOrGroupPrefix; } QNetworkRequest API::request(const QUrl &url) const { QNetworkRequest request(url); request.setRawHeader("Zotero-API-Version", "3"); request.setRawHeader("Accept", "application/atom+xml"); request.setRawHeader("Authorization", QString(QStringLiteral("Bearer ")).append(d->apiKey).toLatin1().constData()); return request; } void API::startBackoff(int duration) { if (duration > 0 && !inBackoffMode()) { d->backoffElapseTime = QDateTime::currentDateTime().addSecs(duration + 1); emit backoffModeStart(); /// Use single-shot timer and functor to emit signal /// that backoff mode has finished QTimer::singleShot((duration + 1) * 1000, [ = ]() { emit backoffModeEnd(); }); } } bool API::inBackoffMode() const { return d->backoffElapseTime >= QDateTime::currentDateTime(); } qint64 API::backoffSecondsLeft() const { const qint64 diff = QDateTime::currentDateTime().secsTo(d->backoffElapseTime); if (diff < 0) return 0; else return diff; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/api.h�����������������������������������������������������������0000664�0000000�0000000�00000011273�13313000262�0020364�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_API_H #define KBIBTEX_NETWORKING_ZOTERO_API_H #include <QObject> #include <QNetworkRequest> #include <QUrl> #include "kbibtexnetworking_export.h" namespace Zotero { /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT API : public QObject { Q_OBJECT public: /** * Maximum number of items asked for in one request. * Multiple requests may be necessary to retrieve all data * the user asked for. */ static const int limit; /** * Scope of a request. Can be either a group request or a user request. */ enum RequestScope { UserRequest, GroupRequest }; /** * Generate an API object encapsulating low-level interaction with Zotero. * @param requestScope determines if a group's or a user's data shall be queried * @param userOrGroupPrefix identifier for group or user (not username) * @param apiKey necessary API key to authenticate and to get authorization for requests on private data * @param parent used for Qt-internal operations */ explicit API(RequestScope requestScope, int userOrGroupPrefix, const QString &apiKey, QObject *parent = nullptr); ~API() override; /** * Add a limit parameter to a given Zotero URL. * @param url value of this parameter will be changed to contain the limit */ void addLimitToUrl(QUrl &url) const; /** * Base URL for all requests to Zotero. Contains user/group id, API key, ... * @return Basic URL which only needs to have a proper path set */ QUrl baseUrl() const; /** * @return Group or user prefix as specified in constructor. */ int userOrGroupPrefix() const; /** * Create a request to Zotero based on the provided URL, * having proper HTTP headers set. This request can be passed * to a QNetworkAccessManager * @param url URL to base the request on * @return Request to Zotero */ QNetworkRequest request(const QUrl &url) const; /** * A user of this API may receive a 'backoff' or 'retry-after' * notification from Zotero. In this case, this function has * to be called to notify this API object of the duration of * this backoff. Users can test if the API object is in 'backoff' * mode by calling @see inBackoffMode. * @param duration backoff's duration in seconds */ void startBackoff(int duration); /** * Due to high load at Zotero or due to excessive use by * the current user, further request to Zotero shall be * backed off for some time. Before a request is made * through this API, call this function to test if the * API object is in 'backoff' mode. * The backoff is not enforced by this API, but Zotero * may deny answering request during this time period. * @return true if backoff mode, false otherwise */ bool inBackoffMode() const; /** * Computes the number of seconds still left for backoff * mode (>=0). If the API is not in backoff mode, 0 will * be returned. * @return a non-negative number of seconds left in backoff mode */ qint64 backoffSecondsLeft() const; signals: /** * Signal gets emitted when backoff mode is entered. */ void backoffModeStart(); /** * Signal gets emitted when backoffmode is left. */ void backoffModeEnd(); private: class Private; Private *const d; }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_API_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/collection.cpp��������������������������������������������������0000664�0000000�0000000�00000023437�13313000262�0022306�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "collection.h" #include <QHash> #include <QQueue> #include <QVector> #include <QNetworkReply> #include <QXmlStreamReader> #include <QTimer> #include <KLocalizedString> #include "api.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" using namespace Zotero; class Zotero::Collection::Private { private: Zotero::Collection *p; public: QSharedPointer<Zotero::API> api; static const QString top; Private(QSharedPointer<Zotero::API> a, Zotero::Collection *parent) : p(parent), api(a) { initialized = false; busy = false; } bool initialized, busy; QQueue<QString> downloadQueue; QHash<QString, QString> collectionToLabel; QHash<QString, QString> collectionToParent; QHash<QString, QVector<QString> > collectionToChildren; QNetworkReply *requestZoteroUrl(const QUrl &url) { busy = true; QUrl internalUrl = url; api->addLimitToUrl(internalUrl); QNetworkRequest request = api->request(internalUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); connect(reply, &QNetworkReply::finished, p, &Zotero::Collection::finishedFetchingCollection); return reply; } void runNextInDownloadQueue() { if (!downloadQueue.isEmpty()) { const QString head = downloadQueue.dequeue(); QUrl url = api->baseUrl(); url = url.adjusted(QUrl::StripTrailingSlash); url.setPath(url.path() + QString(QStringLiteral("/collections/%1/collections")).arg(head)); if (api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((api->backoffSecondsLeft() + 1) * 1000, [ = ]() { requestZoteroUrl(url); }); else requestZoteroUrl(url); } else { initialized = true; p->emitFinishedLoading(); } } }; const QString Zotero::Collection::Private::top = QStringLiteral("top"); Collection::Collection(QSharedPointer<Zotero::API> api, QObject *parent) : QObject(parent), d(new Zotero::Collection::Private(api, this)) { d->collectionToLabel[Private::top] = i18n("Library"); QUrl url = api->baseUrl(); url = url.adjusted(QUrl::StripTrailingSlash); url.setPath(url.path() + QStringLiteral("/collections/top")); if (api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(url); }); else d->requestZoteroUrl(url); } Collection::~Collection() { delete d; } bool Collection::initialized() const { return d->initialized; } bool Collection::busy() const { return d->busy; } QString Collection::collectionLabel(const QString &collectionId) const { if (!d->initialized) return QString(); return d->collectionToLabel[collectionId]; } QString Collection::collectionParent(const QString &collectionId) const { if (!d->initialized) return QString(); return d->collectionToParent[collectionId]; } QVector<QString> Collection::collectionChildren(const QString &collectionId) const { if (!d->initialized) return QVector<QString>(); return QVector<QString>(d->collectionToChildren[collectionId]); } uint Collection::collectionNumericId(const QString &collectionId) const { if (!d->initialized) return 0; if (collectionId == Private::top) /// root node return 0; return qHash(collectionId); } QString Collection::collectionFromNumericId(uint numericId) const { if (numericId == 0) /// root node return Private::top; // TODO make those resolutions more efficient const QList<QString> keys = d->collectionToLabel.keys(); for (const QString &key : keys) { if (numericId == qHash(key)) return key; } return QString(); } void Collection::finishedFetchingCollection() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); QString parentId = Private::top; if (reply->hasRawHeader("Backoff")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Backoff").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Backoff' failed? 10 seconds is fallback d->api->startBackoff(time); } else if (reply->hasRawHeader("Retry-After")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Retry-After").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Retry-After' failed? 10 seconds is fallback d->api->startBackoff(time); } if (reply->error() == QNetworkReply::NoError) { QString nextPage; QXmlStreamReader xmlReader(reply); while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("title")) { /// Not perfect: guess author name from collection's title const QStringList titleFragments = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements).split(QStringLiteral(" / ")); if (titleFragments.count() == 3) d->collectionToLabel[Private::top] = i18n("%1's Library", titleFragments[1]); } else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("entry")) { QString title, key; while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("title")) title = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements); else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("key")) key = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements); else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("entry")) break; } if (!key.isEmpty() && !title.isEmpty()) { d->downloadQueue.enqueue(key); d->collectionToLabel.insert(key, title); d->collectionToParent.insert(key, parentId); QVector<QString> vec = d->collectionToChildren[parentId]; vec.append(key); d->collectionToChildren[parentId] = vec; } } else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("link")) { const QXmlStreamAttributes attrs = xmlReader.attributes(); if (attrs.hasAttribute(QStringLiteral("rel")) && attrs.hasAttribute(QStringLiteral("href")) && attrs.value(QStringLiteral("rel")) == QStringLiteral("next")) nextPage = attrs.value(QStringLiteral("href")).toString(); else if (attrs.hasAttribute(QStringLiteral("rel")) && attrs.hasAttribute(QStringLiteral("href")) && attrs.value(QStringLiteral("rel")) == QStringLiteral("self")) { const QString text = attrs.value(QStringLiteral("href")).toString(); const int p1 = text.indexOf(QStringLiteral("/collections/")); const int p2 = text.indexOf(QStringLiteral("/"), p1 + 14); if (p1 > 0 && p2 > p1 + 14) parentId = text.mid(p1 + 13, p2 - p1 - 13); } } else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("feed")) break; } if (!nextPage.isEmpty()) { if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(nextPage); }); else d->requestZoteroUrl(nextPage); } else d->runNextInDownloadQueue(); } else { qCWarning(LOG_KBIBTEX_NETWORKING) << reply->errorString(); ///< something went wrong d->initialized = false; emitFinishedLoading(); } } void Collection::emitFinishedLoading() { d->busy = false; emit finishedLoading(); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/collection.h����������������������������������������������������0000664�0000000�0000000�00000004510�13313000262�0021742�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_COLLECTION_H #define KBIBTEX_NETWORKING_ZOTERO_COLLECTION_H #include <QObject> #include <QScopedPointer> #include <QSharedPointer> #include <QUrl> #include "kbibtexnetworking_export.h" namespace Zotero { class API; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT Collection : public QObject { Q_OBJECT public: Collection(QSharedPointer<Zotero::API> api, QObject *parent); ~Collection() override; bool initialized() const; bool busy() const; QString collectionLabel(const QString &collectionId) const; QString collectionParent(const QString &collectionId) const; QVector<QString> collectionChildren(const QString &collectionId) const; uint collectionNumericId(const QString &collectionId) const; QString collectionFromNumericId(uint numericId) const; signals: void finishedLoading(); private: class Private; Private *const d; void emitFinishedLoading(); private slots: void finishedFetchingCollection(); }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_COLLECTIONMODEL_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/collectionmodel.cpp���������������������������������������������0000664�0000000�0000000�00000012020�13313000262�0023311�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "collectionmodel.h" #include <QHash> #include <QIcon> #include "zotero/collection.h" using namespace Zotero; const int Zotero::CollectionModel::CollectionIdRole = Qt::UserRole + 6681; class Zotero::CollectionModel::Private { private: // UNUSED Zotero::CollectionModel *p; public: Private(Collection *c, Zotero::CollectionModel */* UNUSED parent*/) : /* UNUSED p(parent),*/ collection(c) { /// nothing } Collection *collection; QHash<QString, QModelIndex> collectionIdToModelIndex; }; CollectionModel::CollectionModel(Collection *collection, QObject *parent) : QAbstractItemModel(parent), d(new Zotero::CollectionModel::Private(collection, this)) { beginResetModel(); connect(collection, &Collection::finishedLoading, this, &CollectionModel::fetchingDone); } QVariant CollectionModel::data(const QModelIndex &index, int role) const { if (!d->collection->initialized()) return QVariant(); if (index == QModelIndex()) return QVariant(); if (role == Qt::DecorationRole) { /// Fancy icons for collections if (index.internalId() == 0) /// root node return QIcon::fromTheme(QStringLiteral("folder-orange")); else /// any other node return QIcon::fromTheme(QStringLiteral("folder-yellow")); } else if (role == Qt::DisplayRole) { /// Show collections' human-readable description const QString collectionId = d->collection->collectionFromNumericId(index.internalId()); return d->collection->collectionLabel(collectionId); } else if (role == CollectionIdRole) { if (index.internalId() == 0) /// root node return QString(); else /// any other node return d->collection->collectionFromNumericId(index.internalId()); } return QVariant(); } QModelIndex CollectionModel::index(int row, int column, const QModelIndex &parent) const { if (!d->collection->initialized()) return QModelIndex(); if (parent == QModelIndex()) { ///< root node const QModelIndex result = createIndex(row, column, (quintptr)0); d->collectionIdToModelIndex.insert(d->collection->collectionFromNumericId(0), result); return result; } const QString collectionId = d->collection->collectionFromNumericId(parent.internalId()); QVector<QString> children = d->collection->collectionChildren(collectionId); if (row < children.count()) { const QModelIndex result = createIndex(row, column, d->collection->collectionNumericId(children[row])); d->collectionIdToModelIndex.insert(children[row], result); return result; } return QModelIndex(); } QModelIndex CollectionModel::parent(const QModelIndex &index) const { if (!d->collection->initialized()) return QModelIndex(); if (index == QModelIndex() || index.internalId() == 0) return QModelIndex(); ///< invalid index or root node const QString parentId = d->collection->collectionParent(d->collection->collectionFromNumericId(index.internalId())); return d->collectionIdToModelIndex[parentId]; } int CollectionModel::rowCount(const QModelIndex &parent) const { if (!d->collection->initialized()) return 0; if (parent == QModelIndex()) return 1; ///< just one single root node const QString collectionId = d->collection->collectionFromNumericId(parent.internalId()); QVector<QString> children = d->collection->collectionChildren(collectionId); return children.count(); } int CollectionModel::columnCount(const QModelIndex &) const { /// Singe column design; return 1; } bool CollectionModel::hasChildren(const QModelIndex &parent) const { if (!d->collection->initialized()) return false; return rowCount(parent) > 0; } void CollectionModel::fetchingDone() { endResetModel(); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/collectionmodel.h�����������������������������������������������0000664�0000000�0000000�00000004525�13313000262�0022771�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_COLLECTIONMODEL_H #define KBIBTEX_NETWORKING_ZOTERO_COLLECTIONMODEL_H #include <QAbstractItemModel> #include <QHash> #include <QVector> #include <QSet> #include "kbibtexnetworking_export.h" namespace Zotero { class Collection; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT CollectionModel : public QAbstractItemModel { Q_OBJECT public: static const int CollectionIdRole; explicit CollectionModel(Zotero::Collection *collection, QObject *parent = nullptr); QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QModelIndex index(int row, int column, const QModelIndex &) const override; QModelIndex parent(const QModelIndex &) const override; int rowCount(const QModelIndex &) const override; int columnCount(const QModelIndex &) const override; bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; private slots: void fetchingDone(); private: class Private; Private *const d; }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_COLLECTIONMODEL_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/groups.cpp������������������������������������������������������0000664�0000000�0000000�00000014766�13313000262�0021477�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "groups.h" #include <QNetworkReply> #include <QXmlStreamReader> #include <QUrl> #include <QTimer> #include "internalnetworkaccessmanager.h" #include "api.h" #include "logging_networking.h" using namespace Zotero; class Zotero::Groups::Private { private: Zotero::Groups *p; public: QSharedPointer<Zotero::API> api; Private(QSharedPointer<Zotero::API> a, Zotero::Groups *parent) : p(parent), api(a) { initialized = false; busy = false; } bool initialized, busy; QMap<int, QString> groups; QNetworkReply *requestZoteroUrl(const QUrl &url) { busy = true; QUrl internalUrl = url; api->addLimitToUrl(internalUrl); QNetworkRequest request = api->request(internalUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); connect(reply, &QNetworkReply::finished, p, &Zotero::Groups::finishedFetchingGroups); return reply; } }; Groups::Groups(QSharedPointer<Zotero::API> api, QObject *parent) : QObject(parent), d(new Zotero::Groups::Private(api, this)) { QUrl url = api->baseUrl(); Q_ASSERT_X(url.path().contains(QLatin1String("users/")), "Groups::Groups(QSharedPointer<Zotero::API> api, QObject *parent)", "Provided base URL does not contain 'users/' as expected"); url = url.adjusted(QUrl::StripTrailingSlash); url.setPath(url.path() + QStringLiteral("/groups")); if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(url); }); else d->requestZoteroUrl(url); } Groups::~Groups() { delete d; } bool Groups::initialized() const { return d->initialized; } bool Groups::busy() const { return d->busy; } QMap<int, QString> Groups::groups() const { return d->groups; } void Groups::finishedFetchingGroups() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (reply->hasRawHeader("Backoff")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Backoff").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Backoff' failed? 10 seconds is fallback d->api->startBackoff(time); } else if (reply->hasRawHeader("Retry-After")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Retry-After").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Retry-After' failed? 10 seconds is fallback d->api->startBackoff(time); } if (reply->error() == QNetworkReply::NoError) { QString nextPage; QXmlStreamReader xmlReader(reply); while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("entry")) { QString label; int groupId = -1; while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("title")) label = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements); else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("groupID")) { bool ok = false; groupId = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements).toInt(&ok); if (groupId < 1) groupId = -1; } else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("entry")) break; } if (!label.isEmpty() && groupId > 0) d->groups.insert(groupId, label); } else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("link")) { const QXmlStreamAttributes attrs = xmlReader.attributes(); if (attrs.hasAttribute(QStringLiteral("rel")) && attrs.hasAttribute(QStringLiteral("href")) && attrs.value(QStringLiteral("rel")) == QStringLiteral("next")) nextPage = attrs.value(QStringLiteral("href")).toString(); } else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("feed")) break; } if (!nextPage.isEmpty()) { if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(nextPage); }); else d->requestZoteroUrl(nextPage); } else { d->busy = false; d->initialized = true; emit finishedLoading(); } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << reply->errorString(); ///< something went wrong d->busy = false; d->initialized = false; emit finishedLoading(); } } ����������kbibtex-0.8.1/src/networking/zotero/groups.h��������������������������������������������������������0000664�0000000�0000000�00000003734�13313000262�0021135�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_GROUPS_H #define KBIBTEX_NETWORKING_ZOTERO_GROUPS_H #include <QObject> #include <QMap> #include <QSharedPointer> #include "kbibtexnetworking_export.h" namespace Zotero { class API; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT Groups : public QObject { Q_OBJECT public: explicit Groups(QSharedPointer<Zotero::API> api, QObject *parent = nullptr); ~Groups() override; bool initialized() const; bool busy() const; QMap<int, QString> groups() const; signals: void finishedLoading(); private: class Private; Private *const d; private slots: void finishedFetchingGroups(); }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_GROUPS_H ������������������������������������kbibtex-0.8.1/src/networking/zotero/items.cpp�������������������������������������������������������0000664�0000000�0000000�00000014735�13313000262�0021275�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "items.h" #include <QNetworkRequest> #include <QNetworkReply> #include <QXmlStreamReader> #include <QUrlQuery> #include <QTimer> #include "file.h" #include "fileimporterbibtex.h" #include "api.h" #include "internalnetworkaccessmanager.h" #include "logging_networking.h" using namespace Zotero; class Zotero::Items::Private { private: Zotero::Items *p; public: QSharedPointer<Zotero::API> api; Private(QSharedPointer<Zotero::API> a, Zotero::Items *parent) : p(parent), api(a) { /// nothing } QNetworkReply *requestZoteroUrl(const QUrl &url) { QUrl internalUrl = url; api->addLimitToUrl(internalUrl); QNetworkRequest request = api->request(internalUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); connect(reply, &QNetworkReply::finished, p, &Zotero::Items::finishedFetchingItems); return reply; } void retrieveItems(const QUrl &url, int start) { QUrl internalUrl = url; static const QString queryItemStart = QStringLiteral("start"); QUrlQuery query(internalUrl); query.removeQueryItem(queryItemStart); query.addQueryItem(queryItemStart, QString::number(start)); internalUrl.setQuery(query); if (api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((api->backoffSecondsLeft() + 1) * 1000, [ = ]() { requestZoteroUrl(internalUrl); }); else requestZoteroUrl(internalUrl); } }; Items::Items(QSharedPointer<Zotero::API> api, QObject *parent) : QObject(parent), d(new Zotero::Items::Private(api, this)) { /// nothing } Items::~Items() { delete d; } void Items::retrieveItemsByCollection(const QString &collection) { QUrl url = d->api->baseUrl().adjusted(QUrl::StripTrailingSlash); if (collection.isEmpty()) url.setPath(url.path() + QStringLiteral("/items")); else url.setPath(url.path() + QString(QStringLiteral("/collections/%1/items")).arg(collection)); QUrlQuery query(url); query.addQueryItem(QStringLiteral("format"), QStringLiteral("bibtex")); url.setQuery(query); if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->retrieveItems(url, 0); }); else d->retrieveItems(url, 0); } void Items::retrieveItemsByTag(const QString &tag) { QUrl url = d->api->baseUrl().adjusted(QUrl::StripTrailingSlash); QUrlQuery query(url); if (!tag.isEmpty()) query.addQueryItem(QStringLiteral("tag"), tag); url.setPath(url.path() + QStringLiteral("/items")); query.addQueryItem(QStringLiteral("format"), QStringLiteral("bibtex")); url.setQuery(query); if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->retrieveItems(url, 0); }); else d->retrieveItems(url, 0); } void Items::finishedFetchingItems() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); static const QString queryItemStart = QStringLiteral("start"); bool ok = false; const int start = QUrlQuery(reply->url()).queryItemValue(queryItemStart).toInt(&ok); if (reply->hasRawHeader("Backoff")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Backoff").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Backoff' failed? 10 seconds is fallback d->api->startBackoff(time); } else if (reply->hasRawHeader("Retry-After")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Retry-After").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Retry-After' failed? 10 seconds is fallback d->api->startBackoff(time); } if (reply->error() == QNetworkReply::NoError && ok) { const QString bibTeXcode = QString::fromUtf8(reply->readAll().constData()); /// Non-empty result? if (!bibTeXcode.isEmpty()) { FileImporterBibTeX importer(this); /// Parse text into bibliography object File *bibtexFile = importer.fromString(bibTeXcode); /// Perform basic sanity checks ... if (bibtexFile != nullptr && !bibtexFile->isEmpty()) { for (const QSharedPointer<Element> &element : const_cast<const File &>(*bibtexFile)) { emit foundElement(element); ///< ... and publish result } } delete bibtexFile; /// Non-empty result means there may be more ... d->retrieveItems(reply->url(), start + Zotero::API::limit); } else { /// Done retrieving BibTeX code emit stoppedSearch(0); // TODO proper error codes } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << reply->errorString(); ///< something went wrong emit stoppedSearch(1); // TODO proper error codes } } �����������������������������������kbibtex-0.8.1/src/networking/zotero/items.h���������������������������������������������������������0000664�0000000�0000000�00000004054�13313000262�0020733�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_ITEMS_H #define KBIBTEX_NETWORKING_ZOTERO_ITEMS_H #include <QObject> #include <QSharedPointer> #include <QUrl> #include "kbibtexnetworking_export.h" class Element; namespace Zotero { class API; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT Items : public QObject { Q_OBJECT public: explicit Items(QSharedPointer<Zotero::API> api, QObject *parent = nullptr); ~Items() override; void retrieveItemsByCollection(const QString &collectionId); void retrieveItemsByTag(const QString &tag); signals: void foundElement(QSharedPointer<Element>); void stoppedSearch(int); private: class Private; Private *const d; private slots: void finishedFetchingItems(); }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_ITEMS_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/oauthwizard.cpp�������������������������������������������������0000664�0000000�0000000�00000027775�13313000262�0022525�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "oauthwizard.h" #include <QLabel> #include <QLayout> #include <QFormLayout> #include <QGridLayout> #include <QClipboard> #include <QApplication> #include <QPushButton> #include <QUrl> #include <QUrlQuery> #include <KLocalizedString> #include <KLineEdit> #include <KRun> #include <kio_version.h> #include "internalnetworkaccessmanager.h" #include "logging_networking.h" #include <QtOAuth/QtOAuth> using namespace Zotero; /** * Specialization of a regular line edit, as only a specified number * of hexadecimal characters is accepted as valid input. * In contrast to using a validator like QRegExpValidator, this approach * still accepts paste operations from clipboard. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class HexInputLineEdit: public KLineEdit { Q_OBJECT private: const QRegExp correctInput; public: HexInputLineEdit(int expectedLength, QWidget *parent) : KLineEdit(parent), correctInput(QString(QStringLiteral("^[a-f0-9]{%1}$")).arg(expectedLength)) { setMaxLength(expectedLength); } bool hasAcceptableInput() const { return correctInput.exactMatch(text()); } }; class VerificationCodePage: public QWizardPage { Q_OBJECT private: // UNUSED Zotero::OAuthWizard *p; public: HexInputLineEdit *lineEditVerificationCode; VerificationCodePage(Zotero::OAuthWizard *parent) : QWizardPage(parent) { /* UNUSED, p(parent)*/ QBoxLayout *layout = new QVBoxLayout(this); setTitle(i18n("Verification Code")); setSubTitle(i18n("Copy the code from the web page and paste it in the input field below.")); QLabel *label = new QLabel(i18n("<qt><p>Once you have granted permissions to KBibTeX on Zotero's web page, you should see a light-green field with a black hexadecimal code (example: <span style=\"color:black;background:#cfc;\">48b67422661cc282cdea</span>).</p></qt>"), this); label->setWordWrap(true); layout->addWidget(label); layout->addSpacing(8); QFormLayout *formLayout = new QFormLayout(); layout->addLayout(formLayout); lineEditVerificationCode = new HexInputLineEdit(20, this); formLayout->addRow(i18n("Verification Code:"), lineEditVerificationCode); connect(lineEditVerificationCode, &HexInputLineEdit::textEdited, this, &VerificationCodePage::completeChanged); } bool isComplete() const override { return lineEditVerificationCode->hasAcceptableInput(); } protected: void initializePage() override { lineEditVerificationCode->clear(); } }; class Zotero::OAuthWizard::Private { private: Zotero::OAuthWizard *p; QOAuth::Interface *qOAuth; QByteArray token; QByteArray tokenSecret; public: KLineEdit *lineEditAuthorizationUrl; VerificationCodePage *verificationCodePage; int pageIdInstructions, pageIdAuthorizationUrl, pageIdVerificationCode; int userId; QString apiKey, username; Private(Zotero::OAuthWizard *parent) : p(parent), userId(-1) { qOAuth = new QOAuth::Interface(p); /// Set the consumer key and secret qOAuth->setConsumerKey("1eef4a961e819e6a695c"); qOAuth->setConsumerSecret("8bb22bb3262b5703d5b4"); /// Set a timeout for requests (in msecs) qOAuth->setRequestTimeout(10000); setupGUI(); } ~Private() { delete qOAuth; } // TODO separate GUI code from functional code QUrl oAuthAuthorizationUrl() { /// Send a request for an unauthorized token QOAuth::ParamMap params; params.insert("oauth_callback", "oob"); QOAuth::ParamMap reply = qOAuth->requestToken(QStringLiteral("https://www.zotero.org/oauth/request"), QOAuth::POST, QOAuth::HMAC_SHA1, params); /// If no error occurred, read the received token and token secret if (qOAuth->error() == QOAuth::NoError) { token = reply.value(QOAuth::tokenParameterName()); tokenSecret = reply.value(QOAuth::tokenSecretParameterName()); QUrl oauthAuthorizationUrl = QUrl(QStringLiteral("https://www.zotero.org/oauth/authorize")); QUrlQuery query(oauthAuthorizationUrl); query.addQueryItem(QStringLiteral("oauth_token"), token); query.addQueryItem(QStringLiteral("library_access"), QStringLiteral("1")); query.addQueryItem(QStringLiteral("notes_access"), QStringLiteral("0")); query.addQueryItem(QStringLiteral("write_access"), QStringLiteral("0")); query.addQueryItem(QStringLiteral("all_groups"), QStringLiteral("read")); oauthAuthorizationUrl.setQuery(query); return oauthAuthorizationUrl; } else qCWarning(LOG_KBIBTEX_NETWORKING) << "Error getting token" << qOAuth->error(); return QUrl(); } void setupGUI() { QWizardPage *page = new QWizardPage(p); pageIdInstructions = p->addPage(page); QBoxLayout *layout = new QVBoxLayout(page); page->setTitle(i18n("Instructions")); page->setSubTitle(i18n("<qt>To allow <strong>KBibTeX</strong> access your <strong>Zotero bibliography</strong>, this KBibTeX instance has to be authorized.</qt>")); QLabel *label = new QLabel(i18n("<qt><p>The process of authorization involves multiple steps:</p><ol><li>Open the URL as shown on the next page.</li><li>Follow the instructions as shown on Zotero's webpage.<br/>Configure permissions for KBibTeX.</li><li>Eventually, you will get a hexadecimal string (black on light-green background) which you have to copy and paste into this wizard's last page</li></ol></qt>"), page); label->setWordWrap(true); layout->addWidget(label); page = new QWizardPage(p); pageIdAuthorizationUrl = p->addPage(page); QGridLayout *gridLayout = new QGridLayout(page); gridLayout->setColumnStretch(0, 1); gridLayout->setColumnStretch(1, 0); gridLayout->setColumnStretch(2, 0); page->setTitle(i18n("Authorization URL")); page->setSubTitle(i18n("Open the shown URL in your favorite browser.")); lineEditAuthorizationUrl = new KLineEdit(page); lineEditAuthorizationUrl->setReadOnly(true); gridLayout->addWidget(lineEditAuthorizationUrl, 0, 0, 1, 3); QPushButton *buttonCopyAuthorizationUrl = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-copy")), i18n("Copy URL"), page); gridLayout->addWidget(buttonCopyAuthorizationUrl, 1, 1, 1, 1); connect(buttonCopyAuthorizationUrl, &QPushButton::clicked, p, &Zotero::OAuthWizard::copyAuthorizationUrl); connect(buttonCopyAuthorizationUrl, &QPushButton::clicked, p, &Zotero::OAuthWizard::next); QPushButton *buttonOpenAuthorizationUrl = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open-remote")), i18n("Open URL"), page); gridLayout->addWidget(buttonOpenAuthorizationUrl, 1, 2, 1, 1); connect(buttonOpenAuthorizationUrl, &QPushButton::clicked, p, &Zotero::OAuthWizard::openAuthorizationUrl); connect(buttonOpenAuthorizationUrl, &QPushButton::clicked, p, &Zotero::OAuthWizard::next); gridLayout->setRowMinimumHeight(2, 8); label = new QLabel(i18n("You will be asked to login into Zotero and select and confirm the permissions for KBibTeX."), page); label->setWordWrap(true); gridLayout->addWidget(label, 3, 0, 1, 3); verificationCodePage = new VerificationCodePage(p); pageIdVerificationCode = p->addPage(verificationCodePage); p->setWindowTitle(i18n("Zotero OAuth Key Exchange")); } // TODO separate GUI code from functional code void setOAuthVerifier(const QString &verifier) { QOAuth::ParamMap oAuthVerifierParams; oAuthVerifierParams.insert("oauth_verifier", verifier.toUtf8()); QOAuth::ParamMap oAuthVerifierRequest = qOAuth->accessToken(QStringLiteral("https://www.zotero.org/oauth/access"), QOAuth::GET, token, tokenSecret, QOAuth::HMAC_SHA1, oAuthVerifierParams); if (qOAuth->error() == QOAuth::NoError) { token = oAuthVerifierRequest.value(QOAuth::tokenParameterName()); tokenSecret = oAuthVerifierRequest.value(QOAuth::tokenSecretParameterName()); if (!token.isEmpty() && !tokenSecret.isEmpty()) { bool ok = false; userId = oAuthVerifierRequest.value("userID").toInt(&ok); if (!ok) { userId = -1; apiKey.clear(); username.clear(); qCWarning(LOG_KBIBTEX_NETWORKING) << "Returned user id is not a valid number:" << oAuthVerifierRequest.value("userID"); } else { apiKey = oAuthVerifierRequest.value("oauth_token"); username = oAuthVerifierRequest.value("username"); } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "QOAuth error: token or tokenSecret empty"; } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << "QOAuth error:" << qOAuth->error(); } } }; OAuthWizard::OAuthWizard(QWidget *parent) : QWizard(parent), d(new OAuthWizard::Private(this)) { /// nothing } OAuthWizard::~OAuthWizard() { delete d; } int OAuthWizard::exec() { const int result = QWizard::exec(); return d->userId >= 0 ? result : Rejected; } int OAuthWizard::userId() const { return d->userId; } QString OAuthWizard::apiKey() const { return d->apiKey; } QString OAuthWizard::username() const { return d->username; } void OAuthWizard::initializePage(int id) { if (id == d->pageIdInstructions) { /// nothing } else if (id == d->pageIdAuthorizationUrl) { const QCursor currentCursor = cursor(); setCursor(Qt::WaitCursor); d->lineEditAuthorizationUrl->setText(d->oAuthAuthorizationUrl().url(QUrl::PreferLocalFile)); d->lineEditAuthorizationUrl->setCursorPosition(0); setCursor(currentCursor); } else if (id == d->pageIdVerificationCode) { /// This page initializes itself, see VerificationCodePage::initializePage } } void OAuthWizard::accept() { const QCursor currentCursor = cursor(); setCursor(Qt::WaitCursor); d->setOAuthVerifier(d->verificationCodePage->lineEditVerificationCode->text()); setCursor(currentCursor); QWizard::accept(); } void OAuthWizard::copyAuthorizationUrl() { QClipboard *clipboard = QApplication::clipboard(); clipboard->setText(d->lineEditAuthorizationUrl->text()); } void OAuthWizard::openAuthorizationUrl() { #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(QUrl(d->lineEditAuthorizationUrl->text()), QStringLiteral("text/html"), this, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(QUrl(d->lineEditAuthorizationUrl->text()), QStringLiteral("text/html"), this, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } #include "oauthwizard.moc" ���kbibtex-0.8.1/src/networking/zotero/oauthwizard.h���������������������������������������������������0000664�0000000�0000000�00000003764�13313000262�0022162�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_OAUTHWIZARD_H #define KBIBTEX_NETWORKING_ZOTERO_OAUTHWIZARD_H #include <QWizard> #include "kbibtexnetworking_export.h" namespace Zotero { /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT OAuthWizard : public QWizard { Q_OBJECT public: explicit OAuthWizard(QWidget *parent); ~OAuthWizard() override; int exec() override; int userId() const; QString apiKey() const; QString username() const; protected: void initializePage(int id) override; void accept() override; private slots: void copyAuthorizationUrl(); void openAuthorizationUrl(); private: class Private; Private *const d; }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_OAUTHWIZARD_H ������������kbibtex-0.8.1/src/networking/zotero/tagmodel.cpp����������������������������������������������������0000664�0000000�0000000�00000007276�13313000262�0021752�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "tagmodel.h" #include <QHash> #include <QIcon> #include "zotero/tags.h" using namespace Zotero; class Zotero::TagModel::Private { private: // UNUSED Zotero::TagModel *p; public: Private(Tags *t, Zotero::TagModel */* UNUSED parent*/) : /* UNUSED p(parent),*/ tags(t) { /// nothing } Tags *tags; QHash<QString, QModelIndex> tagToModelIndex; }; TagModel::TagModel(Tags *tags, QObject *parent) : QAbstractItemModel(parent), d(new Zotero::TagModel::Private(tags, this)) { beginResetModel(); connect(tags, &Tags::finishedLoading, this, &TagModel::fetchingDone); } QVariant TagModel::data(const QModelIndex &index, int role) const { if (!d->tags->initialized()) return QVariant(); if (index == QModelIndex()) return QVariant(); const QMap<QString, int> data = d->tags->tags(); if (index.row() < 0 || index.row() >= data.count()) return QVariant(); const QList<QString> dataKeys = data.keys(); if (role == Qt::DisplayRole) { if (index.column() == 0) return dataKeys[index.row()]; else if (index.column() == 1) return data.value(dataKeys[index.row()]); } else if (role == Qt::DecorationRole) { if (index.column() == 0) return QIcon::fromTheme(QStringLiteral("mail-tagged")); } else if (role == TagRole) return dataKeys[index.row()]; else if (role == TagCountRole) return data.value(dataKeys[index.row()]); return QVariant(); } QModelIndex TagModel::index(int row, int column, const QModelIndex &parent) const { if (!d->tags->initialized() || parent != QModelIndex()) return QModelIndex(); const QMap<QString, int> data = d->tags->tags(); if (row < 0 || column < 0 || row >= data.count() || column >= 2) return QModelIndex(); const QList<QString> dataKeys = data.keys(); return createIndex(row, column, qHash(dataKeys[row])); } QModelIndex TagModel::parent(const QModelIndex &) const { /// This is a flat list return QModelIndex(); } int TagModel::rowCount(const QModelIndex &parent) const { if (!d->tags->initialized() || parent != QModelIndex()) return 0; const QMap<QString, int> data = d->tags->tags(); return data.count(); } int TagModel::columnCount(const QModelIndex &) const { /// Double column design; return 2; } bool TagModel::hasChildren(const QModelIndex &) const { return false; } void TagModel::fetchingDone() { endResetModel(); } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/tagmodel.h������������������������������������������������������0000664�0000000�0000000�00000004517�13313000262�0021412�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_TAGMODEL_H #define KBIBTEX_NETWORKING_ZOTERO_TAGMODEL_H #include <QAbstractItemModel> #include <QHash> #include <QVector> #include <QSet> #include "kbibtexnetworking_export.h" namespace Zotero { class Tags; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT TagModel : public QAbstractItemModel { Q_OBJECT public: enum Roles { TagRole = Qt::UserRole + 6685, TagCountRole = Qt::UserRole + 6686 }; explicit TagModel(Zotero::Tags *tags, QObject *parent = nullptr); QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QModelIndex index(int row, int column, const QModelIndex &) const override; QModelIndex parent(const QModelIndex &) const override; int rowCount(const QModelIndex &) const override; int columnCount(const QModelIndex &) const override; bool hasChildren(const QModelIndex &parent = QModelIndex()) const override; private slots: void fetchingDone(); private: class Private; Private *const d; }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_TAGMODEL_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/tags.cpp��������������������������������������������������������0000664�0000000�0000000�00000014372�13313000262�0021107�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "tags.h" #include <QNetworkReply> #include <QXmlStreamReader> #include <QUrl> #include <QTimer> #include "internalnetworkaccessmanager.h" #include "api.h" #include "logging_networking.h" using namespace Zotero; class Zotero::Tags::Private { private: Zotero::Tags *p; public: QSharedPointer<Zotero::API> api; Private(QSharedPointer<Zotero::API> a, Zotero::Tags *parent) : p(parent), api(a) { initialized = false; busy = false; } bool initialized, busy; QMap<QString, int> tags; QNetworkReply *requestZoteroUrl(const QUrl &url) { busy = true; QUrl internalUrl = url; api->addLimitToUrl(internalUrl); QNetworkRequest request = api->request(internalUrl); QNetworkReply *reply = InternalNetworkAccessManager::instance().get(request); connect(reply, &QNetworkReply::finished, p, &Zotero::Tags::finishedFetchingTags); return reply; } }; Tags::Tags(QSharedPointer<Zotero::API> api, QObject *parent) : QObject(parent), d(new Zotero::Tags::Private(api, this)) { QUrl url = api->baseUrl(); url = url.adjusted(QUrl::StripTrailingSlash); url.setPath(url.path() + QStringLiteral("/tags")); if (api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(url); }); else d->requestZoteroUrl(url); } Tags::~Tags() { delete d; } bool Tags::initialized() const { return d->initialized; } bool Tags::busy() const { return d->busy; } QMap<QString, int> Tags::tags() const { return d->tags; } void Tags::finishedFetchingTags() { QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); if (reply->hasRawHeader("Backoff")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Backoff").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Backoff' failed? 10 seconds is fallback d->api->startBackoff(time); } else if (reply->hasRawHeader("Retry-After")) { bool ok = false; int time = QString::fromLatin1(reply->rawHeader("Retry-After").constData()).toInt(&ok); if (!ok) time = 10; ///< parsing argument of raw header 'Retry-After' failed? 10 seconds is fallback d->api->startBackoff(time); } if (reply->error() == QNetworkReply::NoError) { QString nextPage; QXmlStreamReader xmlReader(reply); while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("entry")) { QString tag; int count = -1; while (!xmlReader.atEnd() && !xmlReader.hasError()) { const QXmlStreamReader::TokenType tt = xmlReader.readNext(); if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("title")) tag = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements); else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("numItems")) { bool ok = false; count = xmlReader.readElementText(QXmlStreamReader::IncludeChildElements).toInt(&ok); if (count < 1) count = -1; } else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("entry")) break; } if (!tag.isEmpty() && count > 0) d->tags.insert(tag, count); } else if (tt == QXmlStreamReader::StartElement && xmlReader.name() == QStringLiteral("link")) { const QXmlStreamAttributes attrs = xmlReader.attributes(); if (attrs.hasAttribute(QStringLiteral("rel")) && attrs.hasAttribute(QStringLiteral("href")) && attrs.value(QStringLiteral("rel")) == QStringLiteral("next")) nextPage = attrs.value(QStringLiteral("href")).toString(); } else if (tt == QXmlStreamReader::EndElement && xmlReader.name() == QStringLiteral("feed")) break; } if (!nextPage.isEmpty()) { if (d->api->inBackoffMode()) /// If Zotero asked to 'back off', wait until this period is over before issuing the next request QTimer::singleShot((d->api->backoffSecondsLeft() + 1) * 1000, [ = ]() { d->requestZoteroUrl(nextPage); }); else d->requestZoteroUrl(nextPage); } else { d->busy = false; d->initialized = true; emit finishedLoading(); } } else { qCWarning(LOG_KBIBTEX_NETWORKING) << reply->errorString(); ///< something went wrong d->busy = false; d->initialized = false; emit finishedLoading(); } } ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/networking/zotero/tags.h����������������������������������������������������������0000664�0000000�0000000�00000003715�13313000262�0020553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_NETWORKING_ZOTERO_TAGS_H #define KBIBTEX_NETWORKING_ZOTERO_TAGS_H #include <QObject> #include <QMap> #include <QSharedPointer> #include "kbibtexnetworking_export.h" namespace Zotero { class API; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXNETWORKING_EXPORT Tags : public QObject { Q_OBJECT public: explicit Tags(QSharedPointer<Zotero::API> api, QObject *parent = nullptr); ~Tags() override; bool initialized() const; bool busy() const; QMap<QString, int> tags() const; signals: void finishedLoading(); private: class Private; Private *const d; private slots: void finishedFetchingTags(); }; } // end of namespace Zotero #endif // KBIBTEX_NETWORKING_ZOTERO_ITEMS_H ���������������������������������������������������kbibtex-0.8.1/src/parts/����������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0015056�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/CMakeLists.txt��������������������������������������������������������������0000664�0000000�0000000�00000003723�13313000262�0017623�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# KBibTeX KPart set( kbibtexpart_SRCS part.cpp partfactory.cpp browserextension.cpp ${CMAKE_SOURCE_DIR}/src/global/preferences.cpp logging_parts.cpp ) if(UNITY_BUILD) enable_unity_build(kbibtexpart kbibtexpart_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/gui ${CMAKE_SOURCE_DIR}/src/gui/config ${CMAKE_SOURCE_DIR}/src/gui/element ${CMAKE_SOURCE_DIR}/src/gui/preferences ${CMAKE_SOURCE_DIR}/src/gui/widgets ${CMAKE_SOURCE_DIR}/src/gui/file ${CMAKE_SOURCE_DIR}/src/processing ${CMAKE_SOURCE_DIR}/src/networking ${CMAKE_SOURCE_DIR}/src/global ) # Creates kbibtex-git-info.h containing information about the source code's Git revision # (if source directory is a Git clone) add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h COMMAND ${CMAKE_COMMAND} -DSOURCE_DIR=${CMAKE_SOURCE_DIR} -DBINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/src/getgit.cmake ) set_source_files_properties( ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h PROPERTIES GENERATED 1 HEADER_FILE_ONLY 1 SKIP_AUTOMOC ON SKIP_AUTOUIC ON SKIP_AUTOGEN ON ) add_library( kbibtexpart MODULE ${kbibtexpart_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h ) target_link_libraries( kbibtexpart KF5::Parts kbibtexconfig kbibtexdata kbibtexio kbibtexgui kbibtexproc ) install( TARGETS kbibtexpart DESTINATION ${KDE_INSTALL_PLUGINDIR} ) kcoreaddons_desktop_to_json(kbibtexpart kbibtexpart.desktop SERVICE_TYPES kpart.desktop) install( FILES kbibtexpart.desktop DESTINATION ${KDE_INSTALL_KSERVICES5DIR} ) install( FILES kbibtexpartui.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/kbibtexpart ) ���������������������������������������������kbibtex-0.8.1/src/parts/browserextension.cpp��������������������������������������������������������0000664�0000000�0000000�00000003337�13313000262�0021210�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "browserextension.h" #include <KParts/ReadOnlyPart> #include <KIconLoader> struct BrowserExtension::Private { KParts::ReadOnlyPart *part; }; BrowserExtension::BrowserExtension(KParts::ReadOnlyPart *part) : KParts::BrowserExtension(part), d(new Private) { d->part = part; const QString iconPath = KIconLoader::global()->iconPath(QStringLiteral("text-x-bibtex"), KIconLoader::SizeSmall); emit setIconUrl(QUrl::fromLocalFile(iconPath)); } BrowserExtension::~BrowserExtension() { delete d; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/browserextension.h����������������������������������������������������������0000664�0000000�0000000�00000003122�13313000262�0020645�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PART_BROWSEREXTENSION_H #define KBIBTEX_PART_BROWSEREXTENSION_H #include <KParts/BrowserExtension> class BrowserExtension : public KParts::BrowserExtension { Q_OBJECT public: explicit BrowserExtension(KParts::ReadOnlyPart *); ~BrowserExtension() override; private: struct Private; Private *const d; }; #endif // KBIBTEX_PART_BROWSEREXTENSION_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/kbibtexpart.desktop���������������������������������������������������������0000664�0000000�0000000�00000006406�13313000262�0020776�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������[Desktop Entry] Type=Service Icon=kbibtex Name=BibTeX Viewer and Editor Name[bs]=BibTeX pregledač i Editor Name[ca]=Visualitzador i editor de BibTeX Name[ca@valencia]=Visualitzador i editor de BibTeX Name[cs]=Prohlížeč a editor BibTeX Name[da]=BibTeX-fremviser og -editor Name[de]=BibTeX-Betrachter und -Editor Name[en_GB]=BibTeX Viewer and Editor Name[es]=Visor y editor BibTeX Name[et]=BibTeXi näitaja ja redaktor Name[fi]=BibTeX-katselin ja -muokkain Name[fr]=Afficheur et éditeur BibTeX Name[gl]=Visor e editor de BibTeX Name[hu]=BibTeX megjelenítő és szerkesztő Name[it]=Visualizzatore BibTeX ed editor Name[nl]=BibTeX-viewer en -bewerker Name[pl]=Edytor i przeglądarka BibTeX Name[pt]=Visualizador e Editor do BibTeX Name[pt_BR]=Editor e visualizador de BibTeX Name[sk]=Prehliadač a editor BibTeX Name[sv]=Bibtex-visning och redigering Name[tr]=BibTeX Görüntüleyici ve Düzenleyici Name[uk]=Програма для перегляду та редагування даних BibTeX Name[x-test]=xxBibTeX Viewer and Editorxx Name[zh_CN]=BibTeX 查看编辑器 Name[zh_TW]=BibTeX 檢視器與編輯器 Comment=KParts component to view and edit bibliographic files Comment[bs]=KParts komponenta za pregled i uređivanje bibliografskih datoteka Comment[ca]=Component de KParts per a visualitzar i editar fitxers bibliogràfics Comment[ca@valencia]=Component de KParts per a visualitzar i editar fitxers bibliogràfics Comment[da]=KParts-komponent til at fremvise og redigere bibliografiske filer Comment[de]=KParts-Komponente zum Betrachten und Editieren von Bibliographiedateien Comment[en_GB]=KParts component to view and edit bibliographic files Comment[es]=Componente de KParts para ver y editar archivos bibliográficos Comment[et]=KPartsi komponent bibliograafiafailide näitamiseks ja muutmiseks Comment[fi]=KParts-osa lähdeluettelotiedostojen katselemiseen ja muokkaamiseen Comment[fr]=Composant KParts pour afficher et éditer des fichiers de bibliographie Comment[gl]=Compoñente de KParts para ver e editar ficheiros bibliográficos. Comment[hu]=KParts komponens könyvészeti fájlok megtekintéséhez és szerkesztéséhez Comment[it]=Componente di KParts per visualizzare e modificare i file bibliografici Comment[nl]=Component van KParts om bibliografische bestanden te bekijken en te bewerken Comment[pl]=Składnik KParts do przeglądania i edytowania plików bibliografii Comment[pt]=Componente do KParts para ver e editar ficheiros bibliográficos Comment[pt_BR]=Componente do KParts para editar e visualizar arquivos bibliográficos Comment[sk]=KParts komponent na prehliadanie a editovanie bibliografických súborov Comment[sv]=Delprogram-komponent för att visa och redigera bibliografiska filer Comment[tr]=Kaynakça dosyalarını görüntülemek ve düzenlemek için KParts bileşeni Comment[uk]=Компонент KParts для перегляду та редагування файлів бібліографії Comment[x-test]=xxKParts component to view and edit bibliographic filesxx Comment[zh_CN]=用于显示和编辑参考文献文件的 KParts 组件 Comment[zh_TW]=檢視與編輯 bibliographic 檔的部件 X-KDE-ServiceTypes=KParts/ReadOnlyPart,KParts/ReadWritePart,Browser/View X-KDE-Library=kbibtexpart MimeType=text/x-bibtex;text/x-endnote-refer;application/x-isi-export-format; ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/kbibtexpartui.rc������������������������������������������������������������0000664�0000000�0000000�00000002623�13313000262�0020264�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> <kpartgui name="kbibtexpart" version="1"> <MenuBar> <Menu name="file"><text>File</text> <Action name="file_save" group="save_merge" /> <Action name="file_save_as" group="save_merge" /> <Action name="file_save_copy_as" group="save_merge" /> </Menu> <Menu name="edit"><text>Edit</text> <Action name="edit_cut" group="edit_paste_merge" /> <Action name="edit_copy" group="edit_paste_merge" /> <Action name="edit_copy_references" group="edit_paste_merge" /> <Action name="edit_paste" group="edit_paste_merge" /> <Action name="edit_delete" group="edit_paste_merge" /> </Menu> <Menu name="element"><text>Element</text> <Action name="element_new" /> <Separator/> <Action name="element_edit" /> <Action name="element_viewdocument" /> <Separator/> <Action name="element_findpdf" /> <Action name="entry_applydefaultformatstring" /> <Action name="entry_colorlabel" /> <Separator/> <Action name="findduplicates" /> <Separator/> <Action name="sendtolyx" /> </Menu> </MenuBar> <ToolBar name="mainToolBar"><text>Main Toolbar</text> <Action name="file_save" group="file_operations" /> <Action name="file_save_as" group="file_operations" /> <Separator/> <Action name="element_new" /> <Separator/> <Action name="findduplicates" /> <Separator/> <Action name="sendtolyx" /> </ToolBar> </kpartgui> �������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/logging_parts.cpp�����������������������������������������������������������0000664�0000000�0000000�00000002445�13313000262�0020426�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_parts.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_PARTS, "kbibtex.parts") ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/logging_parts.h�������������������������������������������������������������0000664�0000000�0000000�00000002623�13313000262�0020071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PARTS_LOGGING_PARTS_H #define KBIBTEX_PARTS_LOGGING_PARTS_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_PARTS) #endif // KBIBTEX_PARTS_LOGGING_PARTS_H �������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/part.cpp��������������������������������������������������������������������0000664�0000000�0000000�00000147000�13313000262�0016532�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "part.h" #include <QLabel> #include <QAction> #include <QFile> #include <QFileInfo> #include <QMenu> #include <QApplication> #include <QLayout> #include <QKeyEvent> #include <QSignalMapper> #include <QMimeDatabase> #include <QMimeType> #include <QPointer> #include <QFileSystemWatcher> #include <QFileDialog> #include <QDialog> #include <QDialogButtonBox> #include <QPushButton> #include <QTemporaryFile> #include <KMessageBox> // FIXME deprecated #include <KLocalizedString> #include <KActionCollection> #include <KStandardAction> #include <KActionMenu> #include <KSelectAction> #include <KToggleAction> #include <KSharedConfig> #include <KConfigGroup> #include <KRun> #include <KPluginFactory> #include <KIO/StatJob> #include <KIO/CopyJob> #include <KIO/Job> #include <KJobWidgets> #include <kio_version.h> #include "file.h" #include "macro.h" #include "preamble.h" #include "comment.h" #include "fileinfo.h" #include "fileexporterbibtexoutput.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "fileimporterris.h" #include "fileimporterbibutils.h" #include "fileexporterris.h" #include "fileexporterbibutils.h" #include "fileimporterpdf.h" #include "fileexporterps.h" #include "fileexporterpdf.h" #include "fileexporterrtf.h" #include "fileexporterbibtex2html.h" #include "fileexporterxml.h" #include "fileexporterxslt.h" #include "models/filemodel.h" #include "filesettingswidget.h" #include "filterbar.h" #include "findduplicatesui.h" #include "lyx.h" #include "preferences.h" #include "settingscolorlabelwidget.h" #include "settingsfileexporterpdfpswidget.h" #include "findpdfui.h" #include "valuelistmodel.h" #include "clipboard.h" #include "idsuggestions.h" #include "fileview.h" #include "browserextension.h" #include "logging_parts.h" static const char RCFileName[] = "kbibtexpartui.rc"; static const int smEntry = 1; static const int smComment = 2; static const int smPreamble = 3; static const int smMacro = 4; class KBibTeXPart::KBibTeXPartPrivate { private: KBibTeXPart *p; KSharedConfigPtr config; /** * Modifies a given URL to become a "backup" filename/URL. * A backup level or 0 or less does not modify the URL. * A backup level of 1 appends a '~' (tilde) to the URL's filename. * A backup level of 2 or more appends '~N', where N is the level. * The provided URL will be modified in the process. It is assumed * that the URL is not yet a "backup URL". */ void constructBackupUrl(const int level, QUrl &url) const { if (level <= 0) /// No modification return; else if (level == 1) /// Simply append '~' to the URL's filename url.setPath(url.path() + QStringLiteral("~")); else /// Append '~' followed by a number to the filename url.setPath(url.path() + QString(QStringLiteral("~%1")).arg(level)); } public: File *bibTeXFile; PartWidget *partWidget; FileModel *model; SortFilterFileModel *sortFilterProxyModel; QSignalMapper *signalMapperNewElement; QAction *editCutAction, *editDeleteAction, *editCopyAction, *editPasteAction, *editCopyReferencesAction, *elementEditAction, *elementViewDocumentAction, *fileSaveAction, *elementFindPDFAction, *entryApplyDefaultFormatString; QMenu *viewDocumentMenu; QSignalMapper *signalMapperViewDocument; QSet<QObject *> signalMapperViewDocumentSenders; bool isSaveAsOperation; LyX *lyx; FindDuplicatesUI *findDuplicatesUI; ColorLabelContextMenu *colorLabelContextMenu; QAction *colorLabelContextMenuAction; QFileSystemWatcher fileSystemWatcher; KBibTeXPartPrivate(QWidget *parentWidget, KBibTeXPart *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), bibTeXFile(nullptr), model(nullptr), sortFilterProxyModel(nullptr), signalMapperNewElement(new QSignalMapper(parent)), viewDocumentMenu(new QMenu(i18n("View Document"), parent->widget())), signalMapperViewDocument(new QSignalMapper(parent)), isSaveAsOperation(false), fileSystemWatcher(p) { connect(signalMapperViewDocument, static_cast<void(QSignalMapper::*)(QObject *)>(&QSignalMapper::mapped), p, &KBibTeXPart::elementViewDocumentMenu); connect(&fileSystemWatcher, &QFileSystemWatcher::fileChanged, p, &KBibTeXPart::fileExternallyChange); partWidget = new PartWidget(parentWidget); partWidget->fileView()->setReadOnly(!p->isReadWrite()); connect(partWidget->fileView(), &FileView::modified, p, &KBibTeXPart::setModified); setupActions(); } ~KBibTeXPartPrivate() { delete bibTeXFile; delete model; delete signalMapperNewElement; delete viewDocumentMenu; delete signalMapperViewDocument; delete findDuplicatesUI; } void setupActions() { /// "Save" action fileSaveAction = p->actionCollection()->addAction(KStandardAction::Save); connect(fileSaveAction, &QAction::triggered, p, &KBibTeXPart::documentSave); fileSaveAction->setEnabled(false); QAction *action = p->actionCollection()->addAction(KStandardAction::SaveAs); connect(action, &QAction::triggered, p, &KBibTeXPart::documentSaveAs); /// "Save copy as" action QAction *saveCopyAsAction = new QAction(QIcon::fromTheme(QStringLiteral("document-save")), i18n("Save Copy As..."), p); p->actionCollection()->addAction(QStringLiteral("file_save_copy_as"), saveCopyAsAction); connect(saveCopyAsAction, &QAction::triggered, p, &KBibTeXPart::documentSaveCopyAs); /// Filter bar widget QAction *filterWidgetAction = new QAction(i18n("Filter"), p); p->actionCollection()->addAction(QStringLiteral("toolbar_filter_widget"), filterWidgetAction); filterWidgetAction->setIcon(QIcon::fromTheme(QStringLiteral("view-filter"))); p->actionCollection()->setDefaultShortcut(filterWidgetAction, Qt::CTRL + Qt::Key_F); connect(filterWidgetAction, &QAction::triggered, partWidget->filterBar(), static_cast<void(QWidget::*)()>(&QWidget::setFocus)); partWidget->filterBar()->setPlaceholderText(i18n("Filter bibliographic entries (%1)", filterWidgetAction->shortcut().toString())); /// Actions for creating new elements (entries, macros, ...) KActionMenu *newElementAction = new KActionMenu(QIcon::fromTheme(QStringLiteral("address-book-new")), i18n("New element"), p); p->actionCollection()->addAction(QStringLiteral("element_new"), newElementAction); QMenu *newElementMenu = new QMenu(newElementAction->text(), p->widget()); newElementAction->setMenu(newElementMenu); connect(newElementAction, &QAction::triggered, p, &KBibTeXPart::newEntryTriggered); QAction *newEntry = newElementMenu->addAction(QIcon::fromTheme(QStringLiteral("address-book-new")), i18n("New entry")); p->actionCollection()->setDefaultShortcut(newEntry, Qt::CTRL + Qt::SHIFT + Qt::Key_N); connect(newEntry, &QAction::triggered, signalMapperNewElement, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperNewElement->setMapping(newEntry, smEntry); QAction *newComment = newElementMenu->addAction(QIcon::fromTheme(QStringLiteral("address-book-new")), i18n("New comment")); connect(newComment, &QAction::triggered, signalMapperNewElement, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperNewElement->setMapping(newComment, smComment); QAction *newMacro = newElementMenu->addAction(QIcon::fromTheme(QStringLiteral("address-book-new")), i18n("New macro")); connect(newMacro, &QAction::triggered, signalMapperNewElement, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperNewElement->setMapping(newMacro, smMacro); QAction *newPreamble = newElementMenu->addAction(QIcon::fromTheme(QStringLiteral("address-book-new")), i18n("New preamble")); connect(newPreamble, &QAction::triggered, signalMapperNewElement, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperNewElement->setMapping(newPreamble, smPreamble); connect(signalMapperNewElement, static_cast<void(QSignalMapper::*)(int)>(&QSignalMapper::mapped), p, &KBibTeXPart::newElementTriggered); /// Action to edit an element elementEditAction = new QAction(QIcon::fromTheme(QStringLiteral("document-edit")), i18n("Edit Element"), p); p->actionCollection()->addAction(QStringLiteral("element_edit"), elementEditAction); p->actionCollection()->setDefaultShortcut(elementEditAction, Qt::CTRL + Qt::Key_E); connect(elementEditAction, &QAction::triggered, partWidget->fileView(), &FileView::editCurrentElement); /// Action to view the document associated to the current element elementViewDocumentAction = new QAction(QIcon::fromTheme(QStringLiteral("application-pdf")), i18n("View Document"), p); p->actionCollection()->addAction(QStringLiteral("element_viewdocument"), elementViewDocumentAction); p->actionCollection()->setDefaultShortcut(elementViewDocumentAction, Qt::CTRL + Qt::Key_D); connect(elementViewDocumentAction, &QAction::triggered, p, &KBibTeXPart::elementViewDocument); /// Action to find a PDF matching the current element elementFindPDFAction = new QAction(QIcon::fromTheme(QStringLiteral("application-pdf")), i18n("Find PDF..."), p); p->actionCollection()->addAction(QStringLiteral("element_findpdf"), elementFindPDFAction); connect(elementFindPDFAction, &QAction::triggered, p, &KBibTeXPart::elementFindPDF); /// Action to reformat the selected elements' ids entryApplyDefaultFormatString = new QAction(QIcon::fromTheme(QStringLiteral("favorites")), i18n("Format entry ids"), p); p->actionCollection()->addAction(QStringLiteral("entry_applydefaultformatstring"), entryApplyDefaultFormatString); connect(entryApplyDefaultFormatString, &QAction::triggered, p, &KBibTeXPart::applyDefaultFormatString); /// Clipboard object, required for various copy&paste operations Clipboard *clipboard = new Clipboard(partWidget->fileView()); /// Actions to cut and copy selected elements as BibTeX code editCutAction = p->actionCollection()->addAction(KStandardAction::Cut, clipboard, SLOT(cut())); editCopyAction = p->actionCollection()->addAction(KStandardAction::Copy, clipboard, SLOT(copy())); /// Action to copy references, e.g. '\cite{fordfulkerson1959}' editCopyReferencesAction = new QAction(QIcon::fromTheme(QStringLiteral("edit-copy")), i18n("Copy References"), p); p->actionCollection()->setDefaultShortcut(editCopyReferencesAction, Qt::CTRL + Qt::SHIFT + Qt::Key_C); p->actionCollection()->addAction(QStringLiteral("edit_copy_references"), editCopyReferencesAction); connect(editCopyReferencesAction, &QAction::triggered, clipboard, &Clipboard::copyReferences); /// Action to paste BibTeX code editPasteAction = p->actionCollection()->addAction(KStandardAction::Paste, clipboard, SLOT(paste())); /// Action to delete selected rows/elements editDeleteAction = new QAction(QIcon::fromTheme(QStringLiteral("edit-table-delete-row")), i18n("Delete"), p); p->actionCollection()->setDefaultShortcut(editDeleteAction, Qt::Key_Delete); p->actionCollection()->addAction(QStringLiteral("edit_delete"), editDeleteAction); connect(editDeleteAction, &QAction::triggered, partWidget->fileView(), &FileView::selectionDelete); /// Build context menu for central BibTeX file view partWidget->fileView()->setContextMenuPolicy(Qt::ActionsContextMenu); ///< context menu is based on actions partWidget->fileView()->addAction(elementEditAction); partWidget->fileView()->addAction(elementViewDocumentAction); QAction *separator = new QAction(p); separator->setSeparator(true); partWidget->fileView()->addAction(separator); partWidget->fileView()->addAction(editCutAction); partWidget->fileView()->addAction(editCopyAction); partWidget->fileView()->addAction(editCopyReferencesAction); partWidget->fileView()->addAction(editPasteAction); partWidget->fileView()->addAction(editDeleteAction); separator = new QAction(p); separator->setSeparator(true); partWidget->fileView()->addAction(separator); partWidget->fileView()->addAction(elementFindPDFAction); partWidget->fileView()->addAction(entryApplyDefaultFormatString); colorLabelContextMenu = new ColorLabelContextMenu(partWidget->fileView()); colorLabelContextMenuAction = p->actionCollection()->addAction(QStringLiteral("entry_colorlabel"), colorLabelContextMenu->menuAction()); findDuplicatesUI = new FindDuplicatesUI(p, partWidget->fileView()); lyx = new LyX(p, partWidget->fileView()); connect(partWidget->fileView(), &FileView::selectedElementsChanged, p, &KBibTeXPart::updateActions); connect(partWidget->fileView(), &FileView::currentElementChanged, p, &KBibTeXPart::updateActions); } FileImporter *fileImporterFactory(const QUrl &url) { QString ending = url.path().toLower(); const auto pos = ending.lastIndexOf(QStringLiteral(".")); ending = ending.mid(pos + 1); if (ending == QStringLiteral("pdf")) { return new FileImporterPDF(p); } else if (ending == QStringLiteral("ris")) { return new FileImporterRIS(p); } else if (BibUtils::available() && ending == QStringLiteral("isi")) { FileImporterBibUtils *fileImporterBibUtils = new FileImporterBibUtils(p); fileImporterBibUtils->setFormat(BibUtils::ISI); return fileImporterBibUtils; } else { FileImporterBibTeX *fileImporterBibTeX = new FileImporterBibTeX(p); fileImporterBibTeX->setCommentHandling(FileImporterBibTeX::KeepComments); return fileImporterBibTeX; } } FileExporter *fileExporterFactory(const QString &ending) { if (ending == QStringLiteral("html")) { return new FileExporterHTML(p); } else if (ending == QStringLiteral("xml")) { return new FileExporterXML(p); } else if (ending == QStringLiteral("ris")) { return new FileExporterRIS(p); } else if (ending == QStringLiteral("pdf")) { return new FileExporterPDF(p); } else if (ending == QStringLiteral("ps")) { return new FileExporterPS(p); } else if (BibUtils::available() && ending == QStringLiteral("isi")) { FileExporterBibUtils *fileExporterBibUtils = new FileExporterBibUtils(p); fileExporterBibUtils->setFormat(BibUtils::ISI); return fileExporterBibUtils; } else if (ending == QStringLiteral("rtf")) { return new FileExporterRTF(p); } else if (ending == QStringLiteral("html") || ending == QStringLiteral("htm")) { return new FileExporterBibTeX2HTML(p); } else if (ending == QStringLiteral("bbl")) { return new FileExporterBibTeXOutput(FileExporterBibTeXOutput::BibTeXBlockList, p); } else { return new FileExporterBibTeX(p); } } QString findUnusedId() { int i = 1; while (true) { QString result = i18n("New%1", i); if (!bibTeXFile->containsKey(result)) return result; ++i; } return QString(); } void initializeNew() { bibTeXFile = new File(); model = new FileModel(); model->setBibliographyFile(bibTeXFile); if (sortFilterProxyModel != nullptr) delete sortFilterProxyModel; sortFilterProxyModel = new SortFilterFileModel(p); sortFilterProxyModel->setSourceModel(model); partWidget->fileView()->setModel(sortFilterProxyModel); connect(partWidget->filterBar(), &FilterBar::filterChanged, sortFilterProxyModel, &SortFilterFileModel::updateFilter); } bool openFile(const QUrl &url, const QString &localFilePath) { p->setObjectName("KBibTeXPart::KBibTeXPart for " + url.toDisplayString() + " aka " + localFilePath); qApp->setOverrideCursor(Qt::WaitCursor); if (bibTeXFile != nullptr) { const QUrl oldUrl = bibTeXFile->property(File::Url, QUrl()).toUrl(); if (oldUrl.isValid() && oldUrl.isLocalFile()) { const QString path = oldUrl.toLocalFile(); if (!path.isEmpty()) fileSystemWatcher.removePath(path); else qCWarning(LOG_KBIBTEX_PARTS) << "No filename to stop watching"; } delete bibTeXFile; bibTeXFile = nullptr; } QFile inputfile(localFilePath); if (!inputfile.open(QIODevice::ReadOnly)) { qCWarning(LOG_KBIBTEX_PARTS) << "Opening file failed, creating new one instead:" << url.toDisplayString() << "aka" << localFilePath; qApp->restoreOverrideCursor(); /// Opening file failed, creating new one instead initializeNew(); return false; } FileImporter *importer = fileImporterFactory(url); importer->showImportDialog(p->widget()); bibTeXFile = importer->load(&inputfile); inputfile.close(); delete importer; if (bibTeXFile == nullptr) { qCWarning(LOG_KBIBTEX_PARTS) << "Opening file failed, creating new one instead:" << url.toDisplayString() << "aka" << localFilePath; qApp->restoreOverrideCursor(); /// Opening file failed, creating new one instead initializeNew(); return false; } bibTeXFile->setProperty(File::Url, QUrl(url)); model->setBibliographyFile(bibTeXFile); if (sortFilterProxyModel != nullptr) delete sortFilterProxyModel; sortFilterProxyModel = new SortFilterFileModel(p); sortFilterProxyModel->setSourceModel(model); partWidget->fileView()->setModel(sortFilterProxyModel); connect(partWidget->filterBar(), &FilterBar::filterChanged, sortFilterProxyModel, &SortFilterFileModel::updateFilter); if (url.isLocalFile()) fileSystemWatcher.addPath(url.toLocalFile()); qApp->restoreOverrideCursor(); return true; } void makeBackup(const QUrl &url) const { /// Fetch settings from configuration KConfigGroup configGroup(config, Preferences::groupGeneral); const Preferences::BackupScope backupScope = (Preferences::BackupScope)configGroup.readEntry(Preferences::keyBackupScope, (int)Preferences::defaultBackupScope); const int numberOfBackups = configGroup.readEntry(Preferences::keyNumberOfBackups, Preferences::defaultNumberOfBackups); /// Stop right here if no backup is requested if (backupScope == Preferences::NoBackup) return; /// For non-local files, proceed only if backups to remote storage is allowed if (backupScope != Preferences::BothLocalAndRemote && !url.isLocalFile()) return; /// Do not make backup copies if destination file does not exist yet KIO::StatJob *statJob = KIO::stat(url, KIO::StatJob::DestinationSide, 0 /** not details necessary, just need to know if file exists */, KIO::HideProgressInfo); KJobWidgets::setWindow(statJob, p->widget()); statJob->exec(); if (statJob->error() == KIO::ERR_DOES_NOT_EXIST) return; else if (statJob->error() != KIO::Job::NoError) { /// Something else went wrong, quit with error qCWarning(LOG_KBIBTEX_PARTS) << "Probing" << url.toDisplayString() << "failed:" << statJob->errorString(); return; } bool copySucceeded = true; /// Copy e.g. test.bib~ to test.bib~2, test.bib to test.bib~ etc. for (int level = numberOfBackups; copySucceeded && level >= 1; --level) { QUrl newerBackupUrl = url; constructBackupUrl(level - 1, newerBackupUrl); QUrl olderBackupUrl = url; constructBackupUrl(level, olderBackupUrl); statJob = KIO::stat(newerBackupUrl, KIO::StatJob::DestinationSide, 0 /** not details necessary, just need to know if file exists */, KIO::HideProgressInfo); KJobWidgets::setWindow(statJob, p->widget()); if (statJob->exec() && statJob->error() == KIO::Job::NoError) { KIO::CopyJob *moveJob = nullptr; ///< guaranteed to be initialized in either branch of the following code /** * The following 'if' block is necessary to handle the * following situation: User opens, modifies, and saves * file /tmp/b/bbb.bib which is actually a symlink to * file /tmp/a/aaa.bib. Now a 'move' operation like the * implicit 'else' section below does, would move /tmp/b/bbb.bib * to become /tmp/b/bbb.bib~ still pointing to /tmp/a/aaa.bib. * Then, the save operation would create a new file /tmp/b/bbb.bib * without any symbolic linking to /tmp/a/aaa.bib. * The following code therefore checks if /tmp/b/bbb.bib is * to be copied/moved to /tmp/b/bbb.bib~ and /tmp/b/bbb.bib * is a local file and /tmp/b/bbb.bib is a symbolic link to * another file. Then /tmp/b/bbb.bib is resolved to the real * file /tmp/a/aaa.bib which is then copied into plain file * /tmp/b/bbb.bib~. The save function (outside of this function's * scope) will then see that /tmp/b/bbb.bib is a symbolic link, * resolve this symlink to /tmp/a/aaa.bib, and then write * all changes to /tmp/a/aaa.bib keeping /tmp/b/bbb.bib a * link to. */ if (level == 1 && newerBackupUrl.isLocalFile() /** for level==1, this is actually the current file*/) { QFileInfo newerBackupFileInfo(newerBackupUrl.toLocalFile()); if (newerBackupFileInfo.isSymLink()) { while (newerBackupFileInfo.isSymLink()) { newerBackupUrl = QUrl::fromLocalFile(newerBackupFileInfo.symLinkTarget()); newerBackupFileInfo = QFileInfo(newerBackupUrl.toLocalFile()); } moveJob = KIO::copy(newerBackupUrl, olderBackupUrl, KIO::HideProgressInfo | KIO::Overwrite); } } if (moveJob == nullptr) ///< implicit 'else' section, see longer comment above moveJob = KIO::move(newerBackupUrl, olderBackupUrl, KIO::HideProgressInfo | KIO::Overwrite); KJobWidgets::setWindow(moveJob, p->widget()); copySucceeded = moveJob->exec(); } } if (!copySucceeded) KMessageBox::error(p->widget(), i18n("Could not create backup copies of document '%1'.", url.url(QUrl::PreferLocalFile)), i18n("Backup copies")); } QUrl getSaveFilename(bool mustBeImportable = true) { QString startDir = p->url().isValid() ? p->url().path() : QString(); QString supportedMimeTypes = QStringLiteral("text/x-bibtex text/x-research-info-systems"); if (BibUtils::available()) supportedMimeTypes += QStringLiteral(" application/x-isi-export-format application/x-endnote-refer"); if (!mustBeImportable && !QStandardPaths::findExecutable(QStringLiteral("pdflatex")).isEmpty()) supportedMimeTypes += QStringLiteral(" application/pdf"); if (!mustBeImportable && !QStandardPaths::findExecutable(QStringLiteral("dvips")).isEmpty()) supportedMimeTypes += QStringLiteral(" application/postscript"); if (!mustBeImportable) supportedMimeTypes += QStringLiteral(" text/html"); if (!mustBeImportable && !QStandardPaths::findExecutable(QStringLiteral("latex2rtf")).isEmpty()) supportedMimeTypes += QStringLiteral(" application/rtf"); QPointer<QFileDialog> saveDlg = new QFileDialog(p->widget(), i18n("Save file") /* TODO better text */, startDir, supportedMimeTypes); /// Setting list of mime types for the second time, /// essentially calling this function only to set the "default mime type" parameter saveDlg->setMimeTypeFilters(supportedMimeTypes.split(QLatin1Char(' '), QString::SkipEmptyParts)); /// Setting the dialog into "Saving" mode make the "add extension" checkbox available saveDlg->setAcceptMode(QFileDialog::AcceptSave); saveDlg->setDefaultSuffix(QStringLiteral("bib")); saveDlg->setFileMode(QFileDialog::AnyFile); if (saveDlg->exec() != QDialog::Accepted) /// User cancelled saving operation, return invalid filename/URL return QUrl(); const QList<QUrl> selectedUrls = saveDlg->selectedUrls(); delete saveDlg; return selectedUrls.isEmpty() ? QUrl() : selectedUrls.first(); } FileExporter *saveFileExporter(const QString &ending) { FileExporter *exporter = fileExporterFactory(ending); if (isSaveAsOperation) { /// only show export dialog at SaveAs or SaveCopyAs operations FileExporterToolchain *fet = nullptr; if (FileExporterBibTeX::isFileExporterBibTeX(*exporter)) { QPointer<QDialog> dlg = new QDialog(p->widget()); dlg->setWindowTitle(i18n("BibTeX File Settings")); QBoxLayout *layout = new QVBoxLayout(dlg); FileSettingsWidget *settingsWidget = new FileSettingsWidget(dlg); layout->addWidget(settingsWidget); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::RestoreDefaults | QDialogButtonBox::Reset | QDialogButtonBox::Save | QDialogButtonBox::Ok, Qt::Horizontal, dlg); layout->addWidget(buttonBox); connect(buttonBox->button(QDialogButtonBox::RestoreDefaults), &QPushButton::clicked, settingsWidget, &FileSettingsWidget::resetToDefaults); connect(buttonBox->button(QDialogButtonBox::Reset), &QPushButton::clicked, settingsWidget, &FileSettingsWidget::resetToLoadedProperties); connect(buttonBox->button(QDialogButtonBox::Save), &QPushButton::clicked, settingsWidget, &FileSettingsWidget::applyProperties); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); settingsWidget->loadProperties(bibTeXFile); if (dlg->exec() == QDialog::Accepted) settingsWidget->saveProperties(bibTeXFile); delete dlg; } else if ((fet = qobject_cast<FileExporterToolchain *>(exporter)) != nullptr) { QPointer<QDialog> dlg = new QDialog(p->widget()); dlg->setWindowTitle(i18n("PDF/PostScript File Settings")); QBoxLayout *layout = new QVBoxLayout(dlg); SettingsFileExporterPDFPSWidget *settingsWidget = new SettingsFileExporterPDFPSWidget(dlg); layout->addWidget(settingsWidget); QDialogButtonBox *buttonBox = new QDialogButtonBox(QDialogButtonBox::RestoreDefaults | QDialogButtonBox::Reset | QDialogButtonBox::Save | QDialogButtonBox::Ok, Qt::Horizontal, dlg); layout->addWidget(buttonBox); connect(buttonBox->button(QDialogButtonBox::RestoreDefaults), &QPushButton::clicked, settingsWidget, &SettingsFileExporterPDFPSWidget::resetToDefaults); connect(buttonBox->button(QDialogButtonBox::Reset), &QPushButton::clicked, settingsWidget, &SettingsFileExporterPDFPSWidget::loadState); connect(buttonBox->button(QDialogButtonBox::Save), &QPushButton::clicked, settingsWidget, &SettingsFileExporterPDFPSWidget::saveState); connect(buttonBox->button(QDialogButtonBox::Ok), &QPushButton::clicked, dlg.data(), &QDialog::accept); if (dlg->exec() == QDialog::Accepted) settingsWidget->saveState(); fet->reloadConfig(); delete dlg; } } return exporter; } bool saveFile(QFile &file, FileExporter *exporter, QStringList *errorLog = nullptr) { SortFilterFileModel *model = qobject_cast<SortFilterFileModel *>(partWidget->fileView()->model()); Q_ASSERT_X(model != nullptr, "FileExporter *KBibTeXPart::KBibTeXPartPrivate:saveFile(...)", "SortFilterFileModel *model from editor->model() is invalid"); return exporter->save(&file, model->fileSourceModel()->bibliographyFile(), errorLog); } bool saveFile(const QUrl &url) { bool result = false; Q_ASSERT_X(!url.isEmpty(), "bool KBibTeXPart::KBibTeXPartPrivate:saveFile(const QUrl &url)", "url is not allowed to be empty"); /// Extract filename extension (e.g. 'bib') to determine which FileExporter to use static const QRegExp suffixRegExp("\\.([^.]{1,4})$"); const QString ending = suffixRegExp.indexIn(url.fileName()) > 0 ? suffixRegExp.cap(1) : QStringLiteral("bib"); FileExporter *exporter = saveFileExporter(ending); /// String list to collect error message from FileExporer QStringList errorLog; qApp->setOverrideCursor(Qt::WaitCursor); if (url.isLocalFile()) { /// Take precautions for local files QFileInfo fileInfo(url.toLocalFile()); /// Do not overwrite symbolic link, but linked file instead QString filename = fileInfo.absoluteFilePath(); while (fileInfo.isSymLink()) { filename = fileInfo.symLinkTarget(); fileInfo = QFileInfo(filename); } if (!fileInfo.exists() || fileInfo.isWritable()) { /// Make backup before overwriting target destination, intentionally /// using the provided filename, not the resolved symlink makeBackup(url); QFile file(filename); if (file.open(QIODevice::WriteOnly)) { result = saveFile(file, exporter, &errorLog); file.close(); } } } else { /// URL points to a remote location /// Configure and open temporary file QTemporaryFile temporaryFile(QStandardPaths::writableLocation(QStandardPaths::TempLocation) + QDir::separator() + QStringLiteral("kbibtex_savefile_XXXXXX") + ending); temporaryFile.setAutoRemove(true); if (temporaryFile.open()) { result = saveFile(temporaryFile, exporter, &errorLog); /// Close/flush temporary file temporaryFile.close(); if (result) { /// Make backup before overwriting target destination makeBackup(url); KIO::CopyJob *copyJob = KIO::copy(QUrl::fromLocalFile(temporaryFile.fileName()), url, KIO::HideProgressInfo | KIO::Overwrite); KJobWidgets::setWindow(copyJob, p->widget()); result &= copyJob->exec() && copyJob->error() == KIO::Job::NoError; } } } qApp->restoreOverrideCursor(); delete exporter; if (!result) { QString msg = i18n("Saving the bibliography to file '%1' failed.", url.toDisplayString()); if (errorLog.isEmpty()) KMessageBox::error(p->widget(), msg, i18n("Saving bibliography failed")); else { msg += QLatin1String("\n\n"); msg += i18n("The following output was generated by the export filter:"); KMessageBox::errorList(p->widget(), msg, errorLog, i18n("Saving bibliography failed")); } } return result; } /** * Builds or resets the menu with local and remote * references (URLs, files) of an entry. * * @return Number of known references */ int updateViewDocumentMenu() { viewDocumentMenu->clear(); int result = 0; ///< Initially, no references are known /// Clean signal mapper of old mappings /// as stored in QSet signalMapperViewDocumentSenders /// and identified by their QAction*'s QSet<QObject *>::Iterator it = signalMapperViewDocumentSenders.begin(); while (it != signalMapperViewDocumentSenders.end()) { signalMapperViewDocument->removeMappings(*it); it = signalMapperViewDocumentSenders.erase(it); } /// Retrieve Entry object of currently selected line /// in main list view QSharedPointer<const Entry> entry = partWidget->fileView()->currentElement().dynamicCast<const Entry>(); /// Test and continue if there was an Entry to retrieve if (!entry.isNull()) { /// Get list of URLs associated with this entry const QList<QUrl> urlList = FileInfo::entryUrls(entry, partWidget->fileView()->fileModel()->bibliographyFile()->property(File::Url).toUrl(), FileInfo::TestExistenceYes); if (!urlList.isEmpty()) { /// Memorize first action, necessary to set menu title QAction *firstAction = nullptr; /// First iteration: local references only for (const QUrl &url : urlList) { /// First iteration: local references only if (!url.isLocalFile()) continue; ///< skip remote URLs /// Build a nice menu item (label, icon, ...) const QFileInfo fi(url.toLocalFile()); const QString label = QString(QStringLiteral("%1 [%2]")).arg(fi.fileName(), fi.absolutePath()); QMimeDatabase db; QAction *action = new QAction(QIcon::fromTheme(db.mimeTypeForUrl(url).iconName()), label, p); action->setData(fi.absoluteFilePath()); action->setToolTip(fi.absoluteFilePath()); /// Register action at signal handler to open URL when triggered connect(action, &QAction::triggered, signalMapperViewDocument, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperViewDocument->setMapping(action, action); signalMapperViewDocumentSenders.insert(action); viewDocumentMenu->addAction(action); /// Memorize first action if (firstAction == nullptr) firstAction = action; } if (firstAction != nullptr) { /// If there is 'first action', then there must be /// local URLs (i.e. local files) and firstAction /// is the first one where a title can be set above viewDocumentMenu->insertSection(firstAction, i18n("Local Files")); } firstAction = nullptr; /// Now the first remote action is to be memorized /// Second iteration: remote references only for (const QUrl &url : urlList) { if (url.isLocalFile()) continue; ///< skip local files /// Build a nice menu item (label, icon, ...) const QString prettyUrl = url.toDisplayString(); QMimeDatabase db; QAction *action = new QAction(QIcon::fromTheme(db.mimeTypeForUrl(url).iconName()), prettyUrl, p); action->setData(prettyUrl); action->setToolTip(prettyUrl); /// Register action at signal handler to open URL when triggered connect(action, &QAction::triggered, signalMapperViewDocument, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); signalMapperViewDocument->setMapping(action, action); signalMapperViewDocumentSenders.insert(action); viewDocumentMenu->addAction(action); /// Memorize first action if (firstAction == nullptr) firstAction = action; } if (firstAction != nullptr) { /// If there is 'first action', then there must be /// some remote URLs and firstAction is the first /// one where a title can be set above viewDocumentMenu->insertSection(firstAction, i18n("Remote Files")); } result = urlList.count(); } } return result; } void readConfiguration() { /// Fetch settings from configuration KConfigGroup configGroup(config, Preferences::groupUserInterface); const Preferences::ElementDoubleClickAction doubleClickAction = (Preferences::ElementDoubleClickAction)configGroup.readEntry(Preferences::keyElementDoubleClickAction, (int)Preferences::defaultElementDoubleClickAction); disconnect(partWidget->fileView(), &FileView::elementExecuted, partWidget->fileView(), &FileView::editElement); disconnect(partWidget->fileView(), &FileView::elementExecuted, p, &KBibTeXPart::elementViewDocument); switch (doubleClickAction) { case Preferences::ActionOpenEditor: connect(partWidget->fileView(), &FileView::elementExecuted, partWidget->fileView(), &FileView::editElement); break; case Preferences::ActionViewDocument: connect(partWidget->fileView(), &FileView::elementExecuted, p, &KBibTeXPart::elementViewDocument); break; } } }; KBibTeXPart::KBibTeXPart(QWidget *parentWidget, QObject *parent, const KAboutData &componentData) : KParts::ReadWritePart(parent), d(new KBibTeXPartPrivate(parentWidget, this)) { setComponentData(componentData); setWidget(d->partWidget); updateActions(); d->initializeNew(); setXMLFile(RCFileName); new BrowserExtension(this); NotificationHub::registerNotificationListener(this, NotificationHub::EventConfigurationChanged); d->readConfiguration(); setModified(false); } KBibTeXPart::~KBibTeXPart() { delete d; } void KBibTeXPart::setModified(bool modified) { KParts::ReadWritePart::setModified(modified); d->fileSaveAction->setEnabled(modified); } void KBibTeXPart::notificationEvent(int eventId) { if (eventId == NotificationHub::EventConfigurationChanged) d->readConfiguration(); } bool KBibTeXPart::saveFile() { Q_ASSERT_X(isReadWrite(), "bool KBibTeXPart::saveFile()", "Trying to save although document is in read-only mode"); if (url().isEmpty()) return documentSaveAs(); /// If the current file is "watchable" (i.e. a local file), /// memorize local filename for future reference const QString watchableFilename = url().isValid() && url().isLocalFile() ? url().toLocalFile() : QString(); /// Stop watching local file that will be written to if (!watchableFilename.isEmpty()) d->fileSystemWatcher.removePath(watchableFilename); else qCWarning(LOG_KBIBTEX_PARTS) << "watchableFilename is Empty"; const bool saveOperationSuccess = d->saveFile(url()); /// Continue watching local file after write operation if (!watchableFilename.isEmpty()) d->fileSystemWatcher.addPath(watchableFilename); else qCWarning(LOG_KBIBTEX_PARTS) << "watchableFilename is Empty"; if (!saveOperationSuccess) { KMessageBox::error(widget(), i18n("The document could not be saved, as it was not possible to write to '%1'.\n\nCheck that you have write access to this file or that enough disk space is available.", url().toDisplayString())); return false; } return true; } bool KBibTeXPart::documentSave() { d->isSaveAsOperation = false; if (!isReadWrite()) return documentSaveCopyAs(); else if (!url().isValid()) return documentSaveAs(); else return KParts::ReadWritePart::save(); } bool KBibTeXPart::documentSaveAs() { d->isSaveAsOperation = true; QUrl newUrl = d->getSaveFilename(); if (!newUrl.isValid()) return false; /// Remove old URL from file system watcher if (url().isValid() && url().isLocalFile()) { const QString path = url().toLocalFile(); if (!path.isEmpty()) d->fileSystemWatcher.removePath(path); else qCWarning(LOG_KBIBTEX_PARTS) << "No filename to stop watching"; } else qCWarning(LOG_KBIBTEX_PARTS) << "Not removing" << url().url(QUrl::PreferLocalFile) << "from fileSystemWatcher"; // TODO how does SaveAs dialog know which mime types to support? if (KParts::ReadWritePart::saveAs(newUrl)) { // FIXME d->model->bibliographyFile()->setProperty(File::Url, newUrl); return true; } else return false; } bool KBibTeXPart::documentSaveCopyAs() { d->isSaveAsOperation = true; QUrl newUrl = d->getSaveFilename(false); if (!newUrl.isValid() || newUrl == url()) return false; /// difference from KParts::ReadWritePart::saveAs: /// current document's URL won't be changed return d->saveFile(newUrl); } void KBibTeXPart::elementViewDocument() { QUrl url; const QList<QAction *> actionList = d->viewDocumentMenu->actions(); /// Go through all actions (i.e. document URLs) for this element for (const QAction *action : actionList) { /// Make URL from action's data ... QUrl tmpUrl = QUrl(action->data().toString()); /// ... but skip this action if the URL is invalid if (!tmpUrl.isValid()) continue; if (tmpUrl.isLocalFile()) { /// If action's URL points to local file, /// keep it and stop search for document url = tmpUrl; break; } else if (!url.isValid()) /// First valid URL found, keep it /// URL is not local, so it may get overwritten by another URL url = tmpUrl; } /// Open selected URL if (url.isValid()) { /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(url); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, mimeTypeName, widget(), false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, mimeTypeName, widget(), KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } void KBibTeXPart::elementViewDocumentMenu(QObject *obj) { QString text = static_cast<QAction *>(obj)->data().toString(); ///< only a QAction will be passed along /// Guess mime type for url to open QUrl url(text); QMimeType mimeType = FileInfo::mimeTypeForUrl(url); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, mimeTypeName, widget(), false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, mimeTypeName, widget(), KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } void KBibTeXPart::elementFindPDF() { QModelIndexList mil = d->partWidget->fileView()->selectionModel()->selectedRows(); if (mil.count() == 1) { QSharedPointer<Entry> entry = d->partWidget->fileView()->fileModel()->element(d->partWidget->fileView()->sortFilterProxyModel()->mapToSource(*mil.constBegin()).row()).dynamicCast<Entry>(); if (!entry.isNull()) FindPDFUI::interactiveFindPDF(*entry, *d->bibTeXFile, widget()); } } void KBibTeXPart::applyDefaultFormatString() { bool documentModified = false; const QModelIndexList mil = d->partWidget->fileView()->selectionModel()->selectedRows(); for (const QModelIndex &index : mil) { QSharedPointer<Entry> entry = d->partWidget->fileView()->fileModel()->element(d->partWidget->fileView()->sortFilterProxyModel()->mapToSource(index).row()).dynamicCast<Entry>(); if (!entry.isNull()) { static IdSuggestions idSuggestions; bool success = idSuggestions.applyDefaultFormatId(*entry.data()); documentModified |= success; if (!success) { KMessageBox::information(widget(), i18n("Cannot apply default formatting for entry ids: No default format specified."), i18n("Cannot Apply Default Formatting")); break; } } } if (documentModified) d->partWidget->fileView()->externalModification(); } bool KBibTeXPart::openFile() { const bool success = d->openFile(url(), localFilePath()); emit completed(); return success; } void KBibTeXPart::newElementTriggered(int event) { switch (event) { case smComment: newCommentTriggered(); break; case smMacro: newMacroTriggered(); break; case smPreamble: newPreambleTriggered(); break; default: newEntryTriggered(); } } void KBibTeXPart::newEntryTriggered() { QSharedPointer<Entry> newEntry = QSharedPointer<Entry>(new Entry(QStringLiteral("Article"), d->findUnusedId())); d->model->insertRow(newEntry, d->model->rowCount()); d->partWidget->fileView()->setSelectedElement(newEntry); if (d->partWidget->fileView()->editElement(newEntry)) d->partWidget->fileView()->scrollToBottom(); // FIXME always correct behaviour? else { /// Editing this new element was cancelled, /// therefore remove it again d->model->removeRow(d->model->rowCount() - 1); } } void KBibTeXPart::newMacroTriggered() { QSharedPointer<Macro> newMacro = QSharedPointer<Macro>(new Macro(d->findUnusedId())); d->model->insertRow(newMacro, d->model->rowCount()); d->partWidget->fileView()->setSelectedElement(newMacro); if (d->partWidget->fileView()->editElement(newMacro)) d->partWidget->fileView()->scrollToBottom(); // FIXME always correct behaviour? else { /// Editing this new element was cancelled, /// therefore remove it again d->model->removeRow(d->model->rowCount() - 1); } } void KBibTeXPart::newPreambleTriggered() { QSharedPointer<Preamble> newPreamble = QSharedPointer<Preamble>(new Preamble()); d->model->insertRow(newPreamble, d->model->rowCount()); d->partWidget->fileView()->setSelectedElement(newPreamble); if (d->partWidget->fileView()->editElement(newPreamble)) d->partWidget->fileView()->scrollToBottom(); // FIXME always correct behaviour? else { /// Editing this new element was cancelled, /// therefore remove it again d->model->removeRow(d->model->rowCount() - 1); } } void KBibTeXPart::newCommentTriggered() { QSharedPointer<Comment> newComment = QSharedPointer<Comment>(new Comment()); d->model->insertRow(newComment, d->model->rowCount()); d->partWidget->fileView()->setSelectedElement(newComment); if (d->partWidget->fileView()->editElement(newComment)) d->partWidget->fileView()->scrollToBottom(); // FIXME always correct behaviour? else { /// Editing this new element was cancelled, /// therefore remove it again d->model->removeRow(d->model->rowCount() - 1); } } void KBibTeXPart::updateActions() { bool emptySelection = d->partWidget->fileView()->selectedElements().isEmpty(); d->elementEditAction->setEnabled(!emptySelection); d->editCopyAction->setEnabled(!emptySelection); d->editCopyReferencesAction->setEnabled(!emptySelection); d->editCutAction->setEnabled(!emptySelection && isReadWrite()); d->editPasteAction->setEnabled(isReadWrite()); d->editDeleteAction->setEnabled(!emptySelection && isReadWrite()); d->elementFindPDFAction->setEnabled(!emptySelection && isReadWrite()); d->entryApplyDefaultFormatString->setEnabled(!emptySelection && isReadWrite()); d->colorLabelContextMenu->menuAction()->setEnabled(!emptySelection && isReadWrite()); d->colorLabelContextMenuAction->setEnabled(!emptySelection && isReadWrite()); int numDocumentsToView = d->updateViewDocumentMenu(); /// enable menu item only if there is at least one document to view d->elementViewDocumentAction->setEnabled(!emptySelection && numDocumentsToView > 0); /// activate sub-menu only if there are at least two documents to view d->elementViewDocumentAction->setMenu(numDocumentsToView > 1 ? d->viewDocumentMenu : nullptr); d->elementViewDocumentAction->setToolTip(numDocumentsToView == 1 ? (*d->viewDocumentMenu->actions().constBegin())->text() : QStringLiteral("")); /// update list of references which can be sent to LyX QStringList references; if (d->partWidget->fileView()->selectionModel() != nullptr) { const QModelIndexList mil = d->partWidget->fileView()->selectionModel()->selectedRows(); references.reserve(mil.size()); for (const QModelIndex &index : mil) { QSharedPointer<Entry> entry = d->partWidget->fileView()->fileModel()->element(d->partWidget->fileView()->sortFilterProxyModel()->mapToSource(index).row()).dynamicCast<Entry>(); if (!entry.isNull()) references << entry->id(); } } d->lyx->setReferences(references); } void KBibTeXPart::fileExternallyChange(const QString &path) { /// Should never happen: triggering this slot for non-local or invalid URLs if (!url().isValid() || !url().isLocalFile()) return; /// Should never happen: triggering this slot for filenames not being the opened file if (path != url().toLocalFile()) { qCWarning(LOG_KBIBTEX_PARTS) << "Got file modification warning for wrong file: " << path << "!=" << url().toLocalFile(); return; } /// Stop watching file while asking for user interaction if (!path.isEmpty()) d->fileSystemWatcher.removePath(path); else qCWarning(LOG_KBIBTEX_PARTS) << "No filename to stop watching"; if (KMessageBox::warningContinueCancel(widget(), i18n("The file '%1' has changed on disk.\n\nReload file or ignore changes on disk?", path), i18n("File changed externally"), KGuiItem(i18n("Reload file"), QIcon::fromTheme(QStringLiteral("edit-redo"))), KGuiItem(i18n("Ignore on-disk changes"), QIcon::fromTheme(QStringLiteral("edit-undo")))) == KMessageBox::Continue) { d->openFile(QUrl::fromLocalFile(path), path); /// No explicit call to QFileSystemWatcher.addPath(...) necessary, /// openFile(...) has done that already } else { /// Even if the user did not request reloaded the file, /// still resume watching file for future external changes if (!path.isEmpty()) d->fileSystemWatcher.addPath(path); else qCWarning(LOG_KBIBTEX_PARTS) << "path is Empty"; } } #include "part.moc" kbibtex-0.8.1/src/parts/part.h����������������������������������������������������������������������0000664�0000000�0000000�00000004734�13313000262�0016205�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PART_PART_H #define KBIBTEX_PART_PART_H #include <QObject> #include <KParts/Part> #include <KParts/ReadWritePart> #include <KAboutData> #include "notificationhub.h" #include "partwidget.h" class KBibTeXPart : public KParts::ReadWritePart, private NotificationListener { Q_OBJECT friend class KBibTeXBrowserExtension; public: KBibTeXPart(QWidget *parentWidget, QObject *parent, const KAboutData &componentData); ~KBibTeXPart() override; void setModified(bool modified) override; void notificationEvent(int eventId) override; protected: bool openFile() override; bool saveFile() override; protected: void setupActions(); protected slots: bool documentSave(); bool documentSaveAs(); bool documentSaveCopyAs(); void elementViewDocument(); void elementViewDocumentMenu(QObject *); void elementFindPDF(); void applyDefaultFormatString(); private slots: void newElementTriggered(int event); void newEntryTriggered(); void newMacroTriggered(); void newCommentTriggered(); void newPreambleTriggered(); void updateActions(); void fileExternallyChange(const QString &path); private: class KBibTeXPartPrivate; KBibTeXPartPrivate *const d; }; #endif // KBIBTEX_PART_PART_H ������������������������������������kbibtex-0.8.1/src/parts/partfactory.cpp�������������������������������������������������������������0000664�0000000�0000000�00000005465�13313000262�0020132�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "partfactory.h" #include <QDebug> #include <KAboutData> #include <KLocalizedString> #include "part.h" #include "kbibtex-version.h" #include "kbibtex-git-info.h" #include "logging_parts.h" class KBibTeXPartFactory::Private { public: KAboutData aboutData; Private() : aboutData(QStringLiteral("kbibtexpart"), i18n("KBibTeXPart"), strlen(KBIBTEX_GIT_INFO_STRING) > 0 ? QLatin1String(KBIBTEX_GIT_INFO_STRING ", near " KBIBTEX_VERSION_STRING) : QLatin1String(KBIBTEX_VERSION_STRING), i18n("A BibTeX editor by KDE"), KAboutLicense::GPL_V2, i18n("Copyright 2004-2018 Thomas Fischer"), QString(), QStringLiteral("https://userbase.kde.org/KBibTeX")) { aboutData.setOrganizationDomain(QByteArray("kde.org")); aboutData.setDesktopFileName(QStringLiteral("org.kde.kbibtex")); aboutData.addAuthor(i18n("Thomas Fischer"), i18n("Maintainer"), QStringLiteral("fischer@unix-ag.uni-kl.de")); } }; KBibTeXPartFactory::KBibTeXPartFactory() : KPluginFactory(), d(new KBibTeXPartFactory::Private()) { /// nothing } KBibTeXPartFactory::~KBibTeXPartFactory() { delete d; } QObject *KBibTeXPartFactory::create(const char *iface, QWidget *parentWidget, QObject *parent, const QVariantList &args, const QString &keyword) { Q_UNUSED(iface); Q_UNUSED(args) Q_UNUSED(keyword); qCInfo(LOG_KBIBTEX_PARTS()) << "Creating KBibTeX Part of version" << (strlen(KBIBTEX_GIT_INFO_STRING) > 0 ? QLatin1String(KBIBTEX_GIT_INFO_STRING) : QLatin1String(KBIBTEX_VERSION_STRING)); KBibTeXPart *part = new KBibTeXPart(parentWidget, parent, d->aboutData); return part; } �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/parts/partfactory.h���������������������������������������������������������������0000664�0000000�0000000�00000004016�13313000262�0017566�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PART_PARTFACTORY_H #define KBIBTEX_PART_PARTFACTORY_H #include <KPluginFactory> class KBibTeXPartFactory : public KPluginFactory { Q_OBJECT Q_PLUGIN_METADATA(IID KPluginFactory_iid FILE "kbibtexpart.json") Q_INTERFACES(KPluginFactory) public: KBibTeXPartFactory(); ~KBibTeXPartFactory() override; protected: /** * From KPluginFactory's documentation: "You may reimplement it to * provide a very flexible factory. This is especially useful to * provide generic factories for plugins implemeted using a scripting * language." */ QObject *create(const char *iface, QWidget *parentWidget, QObject *parent, const QVariantList &args, const QString &keyword) override; private: class Private; Private *const d; }; #endif // KBIBTEX_PART_PARTFACTORY_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/�����������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0016101�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/CMakeLists.txt���������������������������������������������������������0000664�0000000�0000000�00000002277�13313000262�0020651�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# KBibTeX Processing library set( kbibtexproc_LIB_SRCS findduplicates.cpp idsuggestions.cpp lyx.cpp checkbibtex.cpp bibliographyservice.cpp journalabbreviations.cpp logging_processing.cpp ) set( kbibtexproc_HDRS findduplicates.h idsuggestions.h lyx.h checkbibtex.h bibliographyservice.h journalabbreviations.h ) if(UNITY_BUILD) enable_unity_build(kbibtexproc kbibtexproc_LIB_SRCS) endif(UNITY_BUILD) include_directories( ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_BINARY_DIR}/src/gui ${CMAKE_SOURCE_DIR}/src/gui ) add_library( kbibtexproc SHARED ${kbibtexproc_LIB_SRCS} ) target_link_libraries( kbibtexproc Qt5::Core KF5::Parts kbibtexconfig kbibtexdata kbibtexio ) set_target_properties( kbibtexproc PROPERTIES EXPORT_NAME "kbibtexproc" VERSION ${KBIBTEX_RELEASE_VERSION} SOVERSION ${KBIBTEX_SOVERSION} ) install( TARGETS kbibtexproc ${INSTALL_TARGETS_DEFAULT_ARGS} ) generate_export_header( kbibtexproc ) ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/bibliographyservice.cpp������������������������������������������������0000664�0000000�0000000�00000025673�13313000262�0022656�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "bibliographyservice.h" #include <QStandardPaths> #include <KSharedConfig> #include <KConfigGroup> #include <KLocalizedString> #include <KMessageBox> class BibliographyService::Private { private: // UNUSED BibliographyService *p; /// Representing configuration file "mimeapps.list" /// see http://www.freedesktop.org/wiki/Specifications/mime-actions-spec/ KSharedConfig::Ptr configXDGMimeAppsList; /// Groups inside "mimeapps.list" KConfigGroup configGroupAddedKDEServiceAssociations, configGroupRemovedKDEServiceAssociations; KConfigGroup configGroupAddedAssociations, configGroupRemovedAssociations; /// Names of .desktop files for KBibTeX (application and KPart) static const QString kbibtexApplicationDesktop; static const QString kbibtexPartDesktop; /// Names of .desktop files for Kate (application and KPart) static const QString kateApplicationDesktop; static const QString katePartDesktop; public: QWidget *parentWidget; const QStringList textBasedMimeTypes; Private(QWidget *w, BibliographyService */* UNUSED parent*/) : // UNUSED p(parent), configXDGMimeAppsList(KSharedConfig::openConfig(QStringLiteral("mimeapps.list"), KConfig::NoGlobals, QStandardPaths::ApplicationsLocation)), configGroupAddedKDEServiceAssociations(configXDGMimeAppsList, "Added KDE Service Associations"), configGroupRemovedKDEServiceAssociations(configXDGMimeAppsList, "Removed KDE Service Associations"), configGroupAddedAssociations(configXDGMimeAppsList, "Added Associations"), configGroupRemovedAssociations(configXDGMimeAppsList, "Removed Associations"), parentWidget(w), textBasedMimeTypes(QStringList() << QStringLiteral("text/x-bibtex") ///< classical BibTeX bibliographies << QStringLiteral("application/x-research-info-systems") ///< Research Information Systems (RIS) bibliographies << QStringLiteral("application/x-isi-export-format")) ///< Information Sciences Institute (ISI) bibliographies { /// nothing } bool setKBibTeXforMimeType(const QString &mimetype, const bool isPlainTextFormat) { /// Check that configuration file is writeable before continuing if (!configXDGMimeAppsList->isConfigWritable(true)) return false; /// Configuration which application to use to open bibliography files QStringList addedAssociations = configGroupAddedAssociations.readXdgListEntry(mimetype, QStringList()); /// Remove KBibTeX from list (will be added later to list's head) addedAssociations.removeAll(kbibtexApplicationDesktop); if (isPlainTextFormat) { /// Remove Kate from list (will be added later to list's second position) addedAssociations.removeAll(kateApplicationDesktop); /// Add Kate to list's head (will turn up as second) addedAssociations.prepend(kateApplicationDesktop); } /// Add KBibTeX to list's head addedAssociations.prepend(kbibtexApplicationDesktop); /// Write out and sync changes configGroupAddedAssociations.writeXdgListEntry(mimetype, addedAssociations); configGroupAddedAssociations.sync(); /// Configuration which part to use to open bibliography files QStringList addedKDEServiceAssociations = configGroupAddedKDEServiceAssociations.readXdgListEntry(mimetype, QStringList()); /// Remove KBibTeX from list (will be added later to list's head) addedKDEServiceAssociations.removeAll(kbibtexPartDesktop); if (isPlainTextFormat) { /// Remove Kate from list (will be added later to list's second position) addedKDEServiceAssociations.removeAll(katePartDesktop); /// Add Kate to list's head (will turn up as second) addedKDEServiceAssociations.prepend(katePartDesktop); } /// Add KBibTeX to list's head addedKDEServiceAssociations.prepend(kbibtexPartDesktop); /// Write out and sync changes configGroupAddedKDEServiceAssociations.writeXdgListEntry(mimetype, addedKDEServiceAssociations); configGroupAddedKDEServiceAssociations.sync(); /// Configuration which application NOT to use to open bibliography files QStringList removedAssociations = configGroupRemovedAssociations.readXdgListEntry(mimetype, QStringList()); /// If list of applications not to use is not empty ... if (!removedAssociations.isEmpty()) { /// Remove KBibTeX from list removedAssociations.removeAll(kbibtexApplicationDesktop); if (isPlainTextFormat) /// Remove Kate from list removedAssociations.removeAll(kateApplicationDesktop); if (removedAssociations.isEmpty()) /// Empty lists can be removed from configuration file configGroupRemovedAssociations.deleteEntry(mimetype); else /// Write out updated list configGroupRemovedAssociations.writeXdgListEntry(mimetype, removedAssociations); /// Sync changes configGroupRemovedAssociations.sync(); } /// Configuration which part NOT to use to open bibliography files QStringList removedKDEServiceAssociations = configGroupRemovedKDEServiceAssociations.readXdgListEntry(mimetype, QStringList()); /// If list of parts not to use is not empty ... if (!removedKDEServiceAssociations.isEmpty()) { /// Remove KBibTeX part from list removedKDEServiceAssociations.removeAll(kbibtexPartDesktop); if (isPlainTextFormat) /// Remove Kate part from list removedKDEServiceAssociations.removeAll(katePartDesktop); if (removedKDEServiceAssociations.isEmpty()) /// Empty lists can be removed from configuration file configGroupRemovedKDEServiceAssociations.deleteEntry(mimetype); else /// Write out updated list configGroupRemovedKDEServiceAssociations.writeXdgListEntry(mimetype, removedKDEServiceAssociations); /// Sync changes configGroupRemovedKDEServiceAssociations.sync(); } return true; } bool isKBibTeXdefaultForMimeType(const QString &mimetype) const { /// Fetch all four configuration groups const QStringList addedAssociations = configGroupAddedAssociations.readXdgListEntry(mimetype, QStringList()); const QStringList addedKDEServiceAssociations = configGroupAddedKDEServiceAssociations.readXdgListEntry(mimetype, QStringList()); const QStringList removedAssociations = configGroupRemovedAssociations.readXdgListEntry(mimetype, QStringList()); const QStringList removedKDEServiceAssociations = configGroupRemovedKDEServiceAssociations.readXdgListEntry(mimetype, QStringList()); /// KBibTeX is default editor for bibliography if ... /// - the list of applications associated to mime type is not empty /// - KBibTeX is head of this list /// - KBibTeX is not named in the list of applications not be used /// - the list of parts associated to mime type is not empty /// - KBibTeX part is head of this list /// - KBibTeX part is not named in the list of parts not be used return !addedAssociations.isEmpty() && addedAssociations.first() == kbibtexApplicationDesktop && !removedAssociations.contains(kbibtexApplicationDesktop) && !addedKDEServiceAssociations.isEmpty() && addedKDEServiceAssociations.first() == kbibtexPartDesktop && !removedKDEServiceAssociations.contains(kbibtexPartDesktop); } }; const QString BibliographyService::Private::kbibtexApplicationDesktop = QStringLiteral("org.kde.kbibtex.desktop"); const QString BibliographyService::Private::kbibtexPartDesktop = QStringLiteral("kbibtexpart.desktop"); const QString BibliographyService::Private::kateApplicationDesktop = QStringLiteral("org.kde.kate.desktop"); const QString BibliographyService::Private::katePartDesktop = QStringLiteral("katepart.desktop"); BibliographyService::BibliographyService(QWidget *parentWidget) : QObject(parentWidget), d(new BibliographyService::Private(parentWidget, this)) { /// nothing } BibliographyService::~BibliographyService() { delete d; } void BibliographyService::setKBibTeXasDefault() { /// Go through all supported mime types for (const QString &mimeType : d->textBasedMimeTypes) { d->setKBibTeXforMimeType(mimeType, true); } /// kbuildsycoca5 has to be run to update the mime type associations QProcess *kbuildsycoca5Process = new QProcess(d->parentWidget); connect(kbuildsycoca5Process, static_cast<void(QProcess::*)(int, QProcess::ExitStatus)>(&QProcess::finished), this, &BibliographyService::kbuildsycoca5finished); kbuildsycoca5Process->start(QStringLiteral("kbuildsycoca5"), QStringList()); } bool BibliographyService::isKBibTeXdefault() const { /// Go through all supported mime types for (const QString &mimeType : d->textBasedMimeTypes) { /// Test if KBibTeX is default handler for mime type if (!d->isKBibTeXdefaultForMimeType(mimeType)) return false; ///< Failing any test means KBibTeX is not default application/part } return true; ///< All tests passed, KBibTeX is default application/part } void BibliographyService::kbuildsycoca5finished(int exitCode, QProcess::ExitStatus exitStatus) { if (exitCode != 0 || exitStatus != QProcess::NormalExit) KMessageBox::error(d->parentWidget, i18n("Failed to run 'kbuildsycoca5' to update mime type associations.\n\nThe system may not know how to use KBibTeX to open bibliography files."), i18n("Failed to run 'kbuildsycoca5'")); } ���������������������������������������������������������������������kbibtex-0.8.1/src/processing/bibliographyservice.h��������������������������������������������������0000664�0000000�0000000�00000004534�13313000262�0022314�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_BIBLIOGRAPHYSERVICE_H #define KBIBTEX_PROC_BIBLIOGRAPHYSERVICE_H #include "kbibtexproc_export.h" #include <QProcess> /** * To make (or test for) KBibTeX the default bibliography editor, * this class offers some essential functions. To make the association work, * KBibTeX's .desktop files have to be placed where KDE (including kbuildsycoca5) * can find them. * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT BibliographyService : public QObject { Q_OBJECT public: explicit BibliographyService(QWidget *parentWidget); ~BibliographyService() override; /** * Set KBibTeX as default editor for supported * bibliographic file formats. */ void setKBibTeXasDefault(); /** * Test if KBibTeX is default editor for supported * bibliographic file formats. * @return true if KBibTeX is default editor, else false */ bool isKBibTeXdefault() const; private slots: void kbuildsycoca5finished(int exitCode, QProcess::ExitStatus exitStatus); private: class Private; Private *const d; }; #endif // KBIBTEX_PROC_BIBLIOGRAPHYSERVICE_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/checkbibtex.cpp��������������������������������������������������������0000664�0000000�0000000�00000016362�13313000262�0021070�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "checkbibtex.h" #include <QApplication> #include <QBuffer> #include <QTextStream> #include <KLocalizedString> #include <KMessageBox> #include "fileexporterbibtexoutput.h" #include "file.h" #include "entry.h" #include "element.h" #include "macro.h" CheckBibTeX::CheckBibTeXResult CheckBibTeX::checkBibTeX(QSharedPointer<Element> &element, const File *file, QWidget *parent) { /// only entries are supported, no macros, preambles, ... QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (entry.isNull()) return InvalidData; else return checkBibTeX(entry, file, parent); } CheckBibTeX::CheckBibTeXResult CheckBibTeX::checkBibTeX(QSharedPointer<Entry> &entry, const File *file, QWidget *parent) { /// disable GUI under process QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); /// use a dummy BibTeX file to collect all elements necessary for check File dummyFile; /// create temporary entry to work with dummyFile << entry; /// fetch and inser crossref'ed entry QString crossRefStr; Value crossRefVal = entry->value(Entry::ftCrossRef); if (!crossRefVal.isEmpty() && file != nullptr) { crossRefStr = PlainTextValue::text(crossRefVal); QSharedPointer<Entry> crossRefDest = file->containsKey(crossRefStr, File::etEntry).dynamicCast<Entry>(); if (!crossRefDest.isNull()) dummyFile << crossRefDest; else crossRefStr.clear(); /// memorize crossref'ing failed } /// include all macro definitions, in case they are referenced if (file != nullptr) for (const auto &element : const_cast<const File &>(*file)) if (Macro::isMacro(*element)) dummyFile << element; /// run special exporter to get BibTeX's output QStringList bibtexOuput; QByteArray ba; QBuffer buffer(&ba); buffer.open(QIODevice::WriteOnly); FileExporterBibTeXOutput exporter(FileExporterBibTeXOutput::BibTeXLogFile, parent); bool exporterResult = exporter.save(&buffer, &dummyFile, &bibtexOuput); buffer.close(); if (!exporterResult) { QApplication::restoreOverrideCursor(); KMessageBox::errorList(parent, i18n("Running BibTeX failed.\n\nSee the following output to trace the error:"), bibtexOuput, i18n("Running BibTeX failed.")); return FailedToCheck; } /// define variables how to parse BibTeX's output static const QString warningStart = QStringLiteral("Warning--"); static const QRegExp warningEmptyField("empty (\\w+) in "); static const QRegExp warningEmptyField2("empty (\\w+) or (\\w+) in "); static const QRegExp warningThereIsBut("there's a (\\w+) but no (\\w+) in"); static const QRegExp warningCantUseBoth("can't use both (\\w+) and (\\w+) fields"); static const QRegExp warningSort2("to sort, need (\\w+) or (\\w+) in "); static const QRegExp warningSort3("to sort, need (\\w+), (\\w+), or (\\w+) in "); static const QRegExp errorLine("---line (\\d+)"); /// go line-by-line through BibTeX output and collect warnings/errors QStringList warnings; QString errorPlainText; for (const QString &line : const_cast<const QStringList &>(bibtexOuput)) { if (errorLine.indexIn(line) > -1) { buffer.open(QIODevice::ReadOnly); QTextStream ts(&buffer); for (int i = errorLine.cap(1).toInt(); i > 1; --i) { errorPlainText = ts.readLine(); buffer.close(); } } else if (line.startsWith(QStringLiteral("Warning--"))) { /// is a warning ... if (warningEmptyField.indexIn(line) > -1) { /// empty/missing field warnings << i18n("Field <b>%1</b> is empty", warningEmptyField.cap(1)); } else if (warningEmptyField2.indexIn(line) > -1) { /// two empty/missing fields warnings << i18n("Fields <b>%1</b> and <b>%2</b> are empty, but at least one is required", warningEmptyField2.cap(1), warningEmptyField2.cap(2)); } else if (warningThereIsBut.indexIn(line) > -1) { /// there is a field which exists but another does not exist warnings << i18n("Field <b>%1</b> exists, but <b>%2</b> does not exist", warningThereIsBut.cap(1), warningThereIsBut.cap(2)); } else if (warningCantUseBoth.indexIn(line) > -1) { /// there are two conflicting fields, only one may be used warnings << i18n("Fields <b>%1</b> and <b>%2</b> cannot be used at the same time", warningCantUseBoth.cap(1), warningCantUseBoth.cap(2)); } else if (warningSort2.indexIn(line) > -1) { /// one out of two fields missing for sorting warnings << i18n("Fields <b>%1</b> or <b>%2</b> are required to sort entry", warningSort2.cap(1), warningSort2.cap(2)); } else if (warningSort3.indexIn(line) > -1) { /// one out of three fields missing for sorting warnings << i18n("Fields <b>%1</b>, <b>%2</b>, <b>%3</b> are required to sort entry", warningSort3.cap(1), warningSort3.cap(2), warningSort3.cap(3)); } else { /// generic/unknown warning warnings << i18n("Unknown warning: %1", line.mid(warningStart.length())); } } } CheckBibTeXResult result = NoProblem; QApplication::restoreOverrideCursor(); if (!errorPlainText.isEmpty()) { result = BibTeXWarning; KMessageBox::information(parent, i18n("<qt><p>The following error was found:</p><pre>%1</pre></qt>", errorPlainText), i18n("Errors found")); } else if (!warnings.isEmpty()) { KMessageBox::informationList(parent, i18n("The following warnings were found:"), warnings, i18n("Warnings found")); result = BibTeXError; } else KMessageBox::information(parent, i18n("No warnings or errors were found.%1", crossRefStr.isEmpty() ? QString() : i18n("\n\nSome fields missing in this entry were taken from the crossref'ed entry '%1'.", crossRefStr)), i18n("No Errors or Warnings")); return result; } ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/checkbibtex.h����������������������������������������������������������0000664�0000000�0000000�00000003521�13313000262�0020526�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_CHECKBIBTEX_H #define KBIBTEX_PROC_CHECKBIBTEX_H #include <QSharedPointer> #include "kbibtexproc_export.h" class Entry; class Element; class File; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT CheckBibTeX { public: enum CheckBibTeXResult { NoProblem, BibTeXWarning, BibTeXError, InvalidData, FailedToCheck }; static CheckBibTeXResult checkBibTeX(QSharedPointer<Element> &element, const File *file, QWidget *parent); static CheckBibTeXResult checkBibTeX(QSharedPointer<Entry> &entry, const File *file, QWidget *parent); }; #endif // KBIBTEX_PROC_CHECKBIBTEX_H �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/findduplicates.cpp�����������������������������������������������������0000664�0000000�0000000�00000046711�13313000262�0021614�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "findduplicates.h" #include <typeinfo> #include <QLinkedList> #include <QProgressDialog> #include <QApplication> #include <QDate> #include <KLocalizedString> #include "file.h" #include "models/filemodel.h" #include "entry.h" EntryClique::EntryClique() { // nothing } int EntryClique::entryCount() const { return checkedEntries.count(); } QList<QSharedPointer<Entry> > EntryClique::entryList() const { return checkedEntries.keys(); } bool EntryClique::isEntryChecked(QSharedPointer<Entry> entry) const { return checkedEntries[entry]; } void EntryClique::setEntryChecked(QSharedPointer<Entry> entry, bool isChecked) { checkedEntries[entry] = isChecked; recalculateValueMap(); } int EntryClique::fieldCount() const { return valueMap.count(); } QList<QString> EntryClique::fieldList() const { return valueMap.keys(); } QList<Value> EntryClique::values(const QString &field) const { return valueMap[field]; } QList<Value> &EntryClique::values(const QString &field) { return valueMap[field]; } Value EntryClique::chosenValue(const QString &field) const { Q_ASSERT_X(chosenValueMap[field].count() == 1, "Value EntryClique::chosenValue(const QString &field) const", "Exactly one value expected in chosenValueMap"); return chosenValueMap[field].first(); } QList<Value> EntryClique::chosenValues(const QString &field) const { return chosenValueMap[field]; } void EntryClique::setChosenValue(const QString &field, Value &value, ValueOperation valueOperation) { switch (valueOperation) { case SetValue: { chosenValueMap[field].clear(); chosenValueMap[field] << value; break; } case AddValue: { QString text = PlainTextValue::text(value); for (const Value &value : const_cast<const QList<Value> &>(chosenValueMap[field])) if (PlainTextValue::text(value) == text) return; chosenValueMap[field] << value; break; } case RemoveValue: { QString text = PlainTextValue::text(value); for (QList<Value>::Iterator it = chosenValueMap[field].begin(); it != chosenValueMap[field].end(); ++it) if (PlainTextValue::text(*it) == text) { chosenValueMap[field].erase(it); return; } break; } } } void EntryClique::addEntry(QSharedPointer<Entry> entry) { checkedEntries.insert(entry, false); /// remember to call recalculateValueMap later } void EntryClique::recalculateValueMap() { valueMap.clear(); chosenValueMap.clear(); /// go through each and every entry ... const QList<QSharedPointer<Entry> > el = entryList(); for (const auto &entry : el) if (isEntryChecked(entry)) { /// cover entry type Value v; v.append(QSharedPointer<VerbatimText>(new VerbatimText(entry->type()))); insertKeyValueToValueMap(QStringLiteral("^type"), v, entry->type()); /// cover entry id v.clear(); v.append(QSharedPointer<VerbatimText>(new VerbatimText(entry->id()))); insertKeyValueToValueMap(QStringLiteral("^id"), v, entry->id()); /// go through each and every field of this entry for (Entry::ConstIterator fieldIt = entry->constBegin(); fieldIt != entry->constEnd(); ++fieldIt) { /// store both field name and value for later reference const QString fieldName = fieldIt.key().toLower(); const Value fieldValue = fieldIt.value(); if (fieldName == Entry::ftKeywords || fieldName == Entry::ftUrl) { for (const auto &vi : fieldValue) { const QString text = PlainTextValue::text(*vi); Value v; v << vi; insertKeyValueToValueMap(fieldName, v, text); } } else { const QString fieldValueText = PlainTextValue::text(fieldValue); insertKeyValueToValueMap(fieldName, fieldValue, fieldValueText); } } } const QList<QString> fl = fieldList(); for (const QString &fieldName : fl) if (valueMap[fieldName].count() < 2) { valueMap.remove(fieldName); chosenValueMap.remove(fieldName); } } void EntryClique::insertKeyValueToValueMap(const QString &fieldName, const Value &fieldValue, const QString &fieldValueText) { if (fieldValueText.isEmpty()) return; if (valueMap.contains(fieldName)) { /// in the list of alternatives, search of a value identical /// to the current (as of fieldIt) value (to avoid duplicates) bool alreadyContained = false; QList<Value> alternatives = valueMap[fieldName]; for (const Value &v : const_cast<const QList<Value> &>(alternatives)) if (PlainTextValue::text(v) == fieldValueText) { alreadyContained = true; break; } if (!alreadyContained) { alternatives << fieldValue; valueMap[fieldName] = alternatives; } } else { QList<Value> alternatives = valueMap[fieldName]; alternatives << fieldValue; valueMap.insert(fieldName, alternatives); QList<Value> chosen; chosen << fieldValue; chosenValueMap.insert(fieldName, chosen); } } class FindDuplicates::FindDuplicatesPrivate { private: const unsigned int maxDistance; int **d; static const int dsize; public: int sensitivity; QWidget *widget; FindDuplicatesPrivate(int sens, QWidget *w) : maxDistance(10000), sensitivity(sens), widget(w == nullptr ? qApp->activeWindow() : w) { d = new int *[dsize]; for (int i = 0; i < dsize; ++i) d[i] = new int[dsize]; } ~FindDuplicatesPrivate() { for (int i = 0; i < dsize; ++i) delete[] d[i]; delete [] d; } /** * Determine the Levenshtein distance between two words. * See also http://en.wikipedia.org/wiki/Levenshtein_distance * @param s first word, all chars already in lower case * @param t second word, all chars already in lower case * @return distance between both words */ double levenshteinDistanceWord(const QString &s, const QString &t) { int m = qMin(s.length(), dsize - 1), n = qMin(t.length(), dsize - 1); if (m < 1 && n < 1) return 0.0; if (m < 1 || n < 1) return 1.0; for (int i = 0; i <= m; ++i) d[i][0] = i; for (int i = 0; i <= n; ++i) d[0][i] = i; for (int i = 1; i <= m; ++i) for (int j = 1; j <= n; ++j) { d[i][j] = d[i - 1][j] + 1; int c = d[i][j - 1] + 1; if (c < d[i][j]) d[i][j] = c; c = d[i - 1][j - 1] + (s[i - 1] == t[j - 1] ? 0 : 1); if (c < d[i][j]) d[i][j] = c; } double result = d[m][n]; result = result / (double)qMax(m, n); result *= result; return result; } /** * Determine the Levenshtein distance between two sentences (list of words). * See also http://en.wikipedia.org/wiki/Levenshtein_distance * @param s first sentence * @param t second sentence * @return distance between both sentences */ double levenshteinDistance(const QStringList &s, const QStringList &t) { int m = s.size(), n = t.size(); if (m < 1 && n < 1) return 0.0; if (m < 1 || n < 1) return 1.0; double **d = new double*[m + 1]; for (int i = 0; i <= m; ++i) { d[i] = new double[n + 1]; d[i][0] = i; } for (int i = 0; i <= n; ++i) d[0][i] = i; for (int i = 1; i <= m; ++i) for (int j = 1; j <= n; ++j) { d[i][j] = d[i - 1][j] + 1; double c = d[i][j - 1] + 1; if (c < d[i][j]) d[i][j] = c; c = d[i - 1][j - 1] + levenshteinDistanceWord(s[i - 1], t[j - 1]); if (c < d[i][j]) d[i][j] = c; } double result = d[m][n]; for (int i = 0; i <= m; ++i) delete[] d[i]; delete [] d; result = result / (double)qMax(m, n); return result; } /** * Determine the Levenshtein distance between two sentences, * where each sentence is in a string (not split into single words). * See also http://en.wikipedia.org/wiki/Levenshtein_distance * @param s first sentence * @param t second sentence * @return distance between both sentences */ double levenshteinDistance(const QString &s, const QString &t) { const QRegExp nonWordRegExp("[^a-z']+", Qt::CaseInsensitive); if (s.isEmpty() || t.isEmpty()) return 1.0; return levenshteinDistance(s.toLower().split(nonWordRegExp, QString::SkipEmptyParts), t.toLower().split(nonWordRegExp, QString::SkipEmptyParts)); } /** * Distance between two BibTeX entries, scaled by maxDistance. */ int entryDistance(Entry *entryA, Entry *entryB) { /// "distance" to be used if no value for a field is given const double neutralDistance = 0.05; /** * Get both entries' titles. If both are empty, use a "neutral * distance" otherwise compute levenshtein distance (0.0 .. 1.0). */ const QString titleA = PlainTextValue::text(entryA->value(Entry::ftTitle)); const QString titleB = PlainTextValue::text(entryB->value(Entry::ftTitle)); double titleDistance = titleA.isEmpty() && titleB.isEmpty() ? neutralDistance : levenshteinDistance(titleA, titleB); /** * Get both entries' author names. If both are empty, use a * "neutral distance" otherwise compute levenshtein distance * (0.0 .. 1.0). */ const QString authorA = PlainTextValue::text(entryA->value(Entry::ftAuthor)); const QString authorB = PlainTextValue::text(entryB->value(Entry::ftAuthor)); double authorDistance = authorA.isEmpty() && authorB.isEmpty() ? neutralDistance : levenshteinDistance(authorA, authorB); /** * Get both entries' years. If both are empty, use a * "neutral distance" otherwise compute distance as follows: * take square of difference between both years, but impose * a maximum of 100. Divide value by 100.0 to get a distance * value of 0.0 .. 1.0. */ const QString yearA = PlainTextValue::text(entryA->value(Entry::ftYear)); const QString yearB = PlainTextValue::text(entryB->value(Entry::ftYear)); bool yearAok = false, yearBok = false; int yearAint = yearA.toInt(&yearAok); int yearBint = yearB.toInt(&yearBok); double yearDistance = yearAok && yearBok ? qMin((yearBint - yearAint) * (yearBint - yearAint), 100) / 100.0 : neutralDistance; /** * Compute total distance by taking individual distances for * author, title, and year. Weight each individual distance as * follows: title => 60%, author => 30%, year => 10% * Scale distance by maximum distance and round to int; result * will be in range 0 .. maxDistance. */ int distance = (unsigned int)(maxDistance * (titleDistance * 0.6 + authorDistance * 0.3 + yearDistance * 0.1) + 0.5); return distance; } }; const int FindDuplicates::FindDuplicatesPrivate::dsize = 32; FindDuplicates::FindDuplicates(QWidget *parent, int sensitivity) : QObject(parent), d(new FindDuplicatesPrivate(sensitivity, parent)) { // nothing } FindDuplicates::~FindDuplicates() { delete d; } bool FindDuplicates::findDuplicateEntries(File *file, QList<EntryClique *> &entryCliqueList) { QApplication::setOverrideCursor(Qt::WaitCursor); QScopedPointer<QProgressDialog> progressDlg(new QProgressDialog(i18n("Searching ..."), i18n("Cancel"), 0, 100000 /* to be set later to actual value */, d->widget)); progressDlg->setModal(true); progressDlg->setWindowTitle(i18n("Finding Duplicates")); progressDlg->setMinimumWidth(d->widget->fontMetrics().averageCharWidth() * 48); progressDlg->setAutoReset(false); entryCliqueList.clear(); /// assemble list of entries only (ignoring comments, macros, ...) QList<QSharedPointer<Entry> > listOfEntries; listOfEntries.reserve(file->size()); for (const auto &element : const_cast<const File &>(*file)) { QSharedPointer<Entry> e = element.dynamicCast<Entry>(); if (!e.isNull() && !e->isEmpty()) listOfEntries << e; } if (listOfEntries.isEmpty()) { /// no entries to compare found entryCliqueList.clear(); QApplication::restoreOverrideCursor(); return progressDlg->wasCanceled(); } int curProgress = 0, maxProgress = listOfEntries.count() * (listOfEntries.count() - 1) / 2; int progressDelta = 1; progressDlg->setMaximum(maxProgress); progressDlg->show(); emit maximumProgress(maxProgress); /// go through all entries ... for (const auto &entry : const_cast<const QList<QSharedPointer<Entry> > &>(listOfEntries)) { QApplication::instance()->processEvents(); if (progressDlg->wasCanceled()) { entryCliqueList.clear(); break; } progressDlg->setValue(curProgress); emit currentProgress(curProgress); /// ... and find a "clique" of entries where it will match, i.e. distance is below sensitivity /// assume current entry will match in no clique bool foundClique = false; /// go through all existing cliques for (QList<EntryClique *>::Iterator cit = entryCliqueList.begin(); cit != entryCliqueList.end(); ++cit) { /// check distance between current entry and clique's first entry if (d->entryDistance(entry.data(), (*cit)->entryList().first().data()) < d->sensitivity) { /// if distance is below sensitivity, add current entry to clique foundClique = true; (*cit)->addEntry(entry); break; } QApplication::instance()->processEvents(); if (progressDlg->wasCanceled()) { entryCliqueList.clear(); break; } } if (!progressDlg->wasCanceled() && !foundClique) { /// no clique matched to current entry, so create and add new clique /// consisting only of the current entry EntryClique *newClique = new EntryClique(); newClique->addEntry(entry); entryCliqueList << newClique; } curProgress += progressDelta; ++progressDelta; progressDlg->setValue(curProgress); emit currentProgress(curProgress); } progressDlg->setValue(progressDlg->maximum()); /// remove cliques with only one element (nothing to merge here) from the list of cliques for (QList<EntryClique *>::Iterator cit = entryCliqueList.begin(); cit != entryCliqueList.end();) if ((*cit)->entryCount() < 2) { EntryClique *ec = *cit; cit = entryCliqueList.erase(cit); delete ec; } else { /// entries have been inserted as checked, /// therefore recalculate alternatives (*cit)->recalculateValueMap(); ++cit; } QApplication::restoreOverrideCursor(); return progressDlg->wasCanceled(); } MergeDuplicates::MergeDuplicates() { /// nothing } bool MergeDuplicates::mergeDuplicateEntries(const QList<EntryClique *> &entryCliques, FileModel *fileModel) { bool didMerge = false; for (EntryClique *entryClique : entryCliques) { /// Avoid adding fields 20 lines below /// which have been remove (not added) 10 lines below QSet<QString> coveredFields; Entry *mergedEntry = new Entry(QString(), QString()); const auto fieldList = entryClique->fieldList(); coveredFields.reserve(fieldList.size()); for (const auto &field : fieldList) { coveredFields << field; if (field == QStringLiteral("^id")) mergedEntry->setId(PlainTextValue::text(entryClique->chosenValue(field))); else if (field == QStringLiteral("^type")) mergedEntry->setType(PlainTextValue::text(entryClique->chosenValue(field))); else { Value combined; const auto chosenValues = entryClique->chosenValues(field); for (const Value &v : chosenValues) { combined.append(v); } if (!combined.isEmpty()) mergedEntry->insert(field, combined); } } bool actuallyMerged = false; int preferredInsertionRow = -1; const auto entryList = entryClique->entryList(); for (const auto &entry : entryList) { /// if merging entries with identical ids, the merged entry will not yet have an id (is null) if (mergedEntry->id().isEmpty()) mergedEntry->setId(entry->id()); /// if merging entries with identical types, the merged entry will not yet have an type (is null) if (mergedEntry->type().isEmpty()) mergedEntry->setType(entry->type()); /// add all other fields not covered by user selection /// those fields did only occur in one entry (no conflict) /// may add a lot of bloat to merged entry if (entryClique->isEntryChecked(entry)) { actuallyMerged = true; for (Entry::ConstIterator it = entry->constBegin(); it != entry->constEnd(); ++it) if (!mergedEntry->contains(it.key()) && !coveredFields.contains(it.key())) { mergedEntry->insert(it.key(), it.value()); coveredFields << it.key(); } const int row = fileModel->row(entry); if (preferredInsertionRow < 0) preferredInsertionRow = row; fileModel->removeRow(row); } } if (actuallyMerged) { if (preferredInsertionRow < 0) preferredInsertionRow = fileModel->rowCount(); fileModel->insertRow(QSharedPointer<Entry>(mergedEntry), preferredInsertionRow); } else delete mergedEntry; didMerge |= actuallyMerged; } return didMerge; } �������������������������������������������������������kbibtex-0.8.1/src/processing/findduplicates.h�������������������������������������������������������0000664�0000000�0000000�00000006653�13313000262�0021262�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_FINDDUPLICATES_H #define KBIBTEX_PROC_FINDDUPLICATES_H #include "kbibtexproc_export.h" #include <QObject> #include <QMap> #include "value.h" class Entry; class File; class FileModel; class KBIBTEXPROC_EXPORT FindDuplicates; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT EntryClique { friend class FindDuplicates; public: EntryClique(); enum ValueOperation { SetValue, AddValue, RemoveValue }; int entryCount() const; QList<QSharedPointer<Entry> > entryList() const; bool isEntryChecked(QSharedPointer<Entry> entry) const; void setEntryChecked(QSharedPointer<Entry> entry, bool isChecked); int fieldCount() const; QList<QString> fieldList() const; QList<Value> values(const QString &field) const; QList<Value> &values(const QString &field); Value chosenValue(const QString &field) const; QList<Value> chosenValues(const QString &field) const; void setChosenValue(const QString &field, Value &value, ValueOperation valueOperation = SetValue); QString dump() const; protected: void addEntry(QSharedPointer<Entry> entry); private: QMap<QSharedPointer<Entry>, bool> checkedEntries; QMap<QString, QList<Value> > valueMap; QMap<QString, QList<Value> > chosenValueMap; void recalculateValueMap(); void insertKeyValueToValueMap(const QString &fieldName, const Value &fieldValue, const QString &fieldValueText); }; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT FindDuplicates : public QObject { Q_OBJECT public: explicit FindDuplicates(QWidget *parent, int sensitivity = 4000); ~FindDuplicates() override; bool findDuplicateEntries(File *file, QList<EntryClique *> &entryCliqueList); signals: void maximumProgress(int maxProgress); void currentProgress(int progress); private: class FindDuplicatesPrivate; FindDuplicatesPrivate *d; }; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT MergeDuplicates { public: static bool mergeDuplicateEntries(const QList<EntryClique *> &entryCliques, FileModel *fileModel); private: explicit MergeDuplicates(); }; #endif // KBIBTEX_PROC_FINDDUPLICATES_H �������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/idsuggestions.cpp������������������������������������������������������0000664�0000000�0000000�00000052441�13313000262�0021502�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "idsuggestions.h" #include <QRegularExpression> #include <KSharedConfig> #include <KConfigGroup> #include <KLocalizedString> #include "journalabbreviations.h" #include "encoderlatex.h" class IdSuggestions::IdSuggestionsPrivate { private: IdSuggestions *p; KSharedConfigPtr config; const KConfigGroup group; public: IdSuggestionsPrivate(IdSuggestions *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), group(config, IdSuggestions::configGroupName) { // nothing } QString normalizeText(const QString &input) const { static const QRegExp unwantedChars = QRegExp("[^-_:/=+a-zA-Z0-9]+"); return EncoderLaTeX::instance().convertToPlainAscii(input).remove(unwantedChars); } int numberFromEntry(const Entry &entry, const QString &field) const { static const QRegularExpression firstDigits(QStringLiteral("^[0-9]+")); const QString text = PlainTextValue::text(entry.value(field)); const QRegularExpressionMatch match = firstDigits.match(text); if (!match.hasMatch()) return -1; bool ok = false; const int result = match.captured(0).toInt(&ok); return ok ? result : -1; } QString pageNumberFromEntry(const Entry &entry) const { static const QRegularExpression whitespace(QStringLiteral("[ \t]+")); static const QRegularExpression pageNumber(QStringLiteral("[a-z0-9+:]+"), QRegularExpression::CaseInsensitiveOption); const QString text = PlainTextValue::text(entry.value(Entry::ftPages)).remove(whitespace).remove(QStringLiteral("mbox")); const QRegularExpressionMatch match = pageNumber.match(text); if (!match.hasMatch()) return QString(); return match.captured(0); } QString translateTitleToken(const Entry &entry, const struct IdSuggestionTokenInfo &tti, bool removeSmallWords) const { /// list of small words taken from OCLC: /// http://www.oclc.org/developer/develop/web-services/worldcat-search-api/bibliographic-resource.en.html static const QStringList smallWords = i18nc("Small words that can be removed from titles when generating id suggestions; separated by pipe symbol", "a|als|am|an|are|as|at|auf|aus|be|but|by|das|dass|de|der|des|dich|dir|du|er|es|for|from|had|have|he|her|his|how|ihr|ihre|ihres|im|in|is|ist|it|kein|la|le|les|mein|mich|mir|mit|of|on|sein|sie|that|the|this|to|un|une|von|was|wer|which|wie|wird|with|yousie|that|the|this|to|un|une|von|was|wer|which|wie|wird|with|you").split(QStringLiteral("|"), QString::SkipEmptyParts); QString result; bool first = true; static const QRegExp sequenceOfSpaces(QStringLiteral("\\s+")); const QStringList titleWords = PlainTextValue::text(entry.value(Entry::ftTitle)).split(sequenceOfSpaces, QString::SkipEmptyParts); int index = 0; for (QStringList::ConstIterator it = titleWords.begin(); it != titleWords.end(); ++it, ++index) { if (first) first = false; else result.append(tti.inBetween); QString lowerText = (*it).toLower(); if ((!removeSmallWords || !smallWords.contains(lowerText)) && index >= tti.startWord && index <= tti.endWord) { QString titleComponent = normalizeText(*it).left(tti.len); if (tti.caseChange == IdSuggestions::ccToCamelCase) titleComponent = titleComponent[0].toUpper() + titleComponent.mid(1); result.append(titleComponent); } } switch (tti.caseChange) { case IdSuggestions::ccToUpper: result = result.toUpper(); break; case IdSuggestions::ccToLower: result = result.toLower(); break; case IdSuggestions::ccToCamelCase: /// already processed above case IdSuggestions::ccNoChange: /// nothing break; } return result; } QString translateAuthorsToken(const Entry &entry, const struct IdSuggestionTokenInfo &ati) const { QString result; /// Already some author inserted into result? bool firstInserted = false; /// Get list of authors' last names const QStringList authors = entry.authorsLastName(); /// Keep track of which author (number/position) is processed int index = 0; /// Go through all authors for (QStringList::ConstIterator it = authors.constBegin(); it != authors.constEnd(); ++it, ++index) { /// Get current author, normalize name (remove unwanted characters), cut to maximum length QString author = normalizeText(*it).left(ati.len); /// Check if camel case is requests if (ati.caseChange == IdSuggestions::ccToCamelCase) { /// Get components of the author's last name const QStringList nameComponents = author.split(QStringLiteral(" "), QString::SkipEmptyParts); QStringList newNameComponents; newNameComponents.reserve(nameComponents.size()); /// Camel-case each name component for (const QString &nameComponent : nameComponents) { newNameComponents.append(nameComponent[0].toUpper() + nameComponent.mid(1)); } /// Re-assemble name from camel-cased components author = newNameComponents.join(QStringLiteral(" ")); } if ( (index >= ati.startWord && index <= ati.endWord) ///< check for requested author range || (ati.lastWord && index == authors.count() - 1) ///< explicitly insert last author if requested in lastWord flag ) { if (firstInserted) result.append(ati.inBetween); result.append(author); firstInserted = true; } } switch (ati.caseChange) { case IdSuggestions::ccToUpper: result = result.toUpper(); break; case IdSuggestions::ccToLower: result = result.toLower(); break; case IdSuggestions::ccToCamelCase: /// already processed above break; case IdSuggestions::ccNoChange: /// nothing break; } return result; } QString translateJournalToken(const Entry &entry, const struct IdSuggestionTokenInfo &jti) const { static const QRegExp sequenceOfSpaces(QStringLiteral("\\s+")); QString journalName = PlainTextValue::text(entry.value(Entry::ftJournal)); journalName = JournalAbbreviations::self()->toShortName(journalName); const QStringList journalWords = journalName.split(sequenceOfSpaces, QString::SkipEmptyParts); QString result; for (const QString &word : journalWords) { QString journalComponent = normalizeText(word); /// Try to keep sequences of capital letters at the start of the journal name, /// those may already be abbreviations. unsigned int countCaptialCharsAtStart = 0; while (journalComponent[countCaptialCharsAtStart].isUpper()) ++countCaptialCharsAtStart; journalComponent = journalComponent.left(qMax(jti.len, countCaptialCharsAtStart)); if (jti.caseChange == IdSuggestions::ccToCamelCase) journalComponent = journalComponent[0].toUpper() + journalComponent.mid(1); result.append(journalComponent); } switch (jti.caseChange) { case IdSuggestions::ccToUpper: result = result.toUpper(); break; case IdSuggestions::ccToLower: result = result.toLower(); break; case IdSuggestions::ccToCamelCase: /// already processed above case IdSuggestions::ccNoChange: /// nothing break; } return result; } QString translateToken(const Entry &entry, const QString &token) const { switch (token[0].toLatin1()) { case 'a': ///< deprecated but still supported case { /// Evaluate the token string, store information in struct IdSuggestionTokenInfo ati struct IdSuggestionTokenInfo ati = p->evalToken(token.mid(1)); ati.startWord = ati.endWord = 0; ///< only first author return translateAuthorsToken(entry, ati); } case 'A': { /// Evaluate the token string, store information in struct IdSuggestionTokenInfo ati const struct IdSuggestionTokenInfo ati = p->evalToken(token.mid(1)); return translateAuthorsToken(entry, ati); } case 'z': ///< deprecated but still supported case { /// Evaluate the token string, store information in struct IdSuggestionTokenInfo ati struct IdSuggestionTokenInfo ati = p->evalToken(token.mid(1)); /// All but first author ati.startWord = 1; ati.endWord = 0x00ffffff; return translateAuthorsToken(entry, ati); } case 'y': { int year = numberFromEntry(entry, Entry::ftYear); if (year > -1) return QString::number(year % 100 + 100).mid(1); break; } case 'Y': { const int year = numberFromEntry(entry, Entry::ftYear); if (year > -1) return QString::number(year % 10000 + 10000).mid(1); break; } case 't': case 'T': { /// Evaluate the token string, store information in struct IdSuggestionTokenInfo jti const struct IdSuggestionTokenInfo tti = p->evalToken(token.mid(1)); return translateTitleToken(entry, tti, token[0].toLatin1() == 'T'); } case 'j': { /// Evaluate the token string, store information in struct IdSuggestionTokenInfo jti const struct IdSuggestionTokenInfo jti = p->evalToken(token.mid(1)); return translateJournalToken(entry, jti); } case 'v': { return normalizeText(PlainTextValue::text(entry.value(Entry::ftVolume))); } case 'p': { return pageNumberFromEntry(entry); } case '"': return token.mid(1); } return QString(); } QString defaultFormatString() const { return group.readEntry(keyDefaultFormatString, defaultDefaultFormatString); } QStringList formatStringList() const { return group.readEntry(keyFormatStringList, defaultFormatStringList); } }; const QString IdSuggestions::keyDefaultFormatString = QStringLiteral("DefaultFormatString"); const QString IdSuggestions::defaultDefaultFormatString = QString(); const QString IdSuggestions::keyFormatStringList = QStringLiteral("FormatStringList"); const QStringList IdSuggestions::defaultFormatStringList = QStringList() << QStringLiteral("A") << QStringLiteral("A2|y") << QStringLiteral("A3|y") << QStringLiteral("A4|y|\":|T5") << QStringLiteral("al|\":|T") << QStringLiteral("al|y") << QStringLiteral("al|Y") << QStringLiteral("Al\"-|\"-|y") << QStringLiteral("Al\"+|Y") << QStringLiteral("al|y|T") << QStringLiteral("al|Y|T3") << QStringLiteral("al|Y|T3l") << QStringLiteral("a|\":|Y|\":|T1") << QStringLiteral("a|y") << QStringLiteral("A|\":|Y"); const QString IdSuggestions::configGroupName = QStringLiteral("IdSuggestions"); IdSuggestions::IdSuggestions() : d(new IdSuggestionsPrivate(this)) { /// nothing } IdSuggestions::~IdSuggestions() { delete d; } QString IdSuggestions::formatId(const Entry &entry, const QString &formatStr) const { QString id; const QStringList tokenList = formatStr.split(QStringLiteral("|"), QString::SkipEmptyParts); for (const QString &token : tokenList) { id.append(d->translateToken(entry, token)); } return id; } QString IdSuggestions::defaultFormatId(const Entry &entry) const { return formatId(entry, d->defaultFormatString()); } bool IdSuggestions::hasDefaultFormat() const { return !d->defaultFormatString().isEmpty(); } bool IdSuggestions::applyDefaultFormatId(Entry &entry) const { const QString dfs = d->defaultFormatString(); if (!dfs.isEmpty()) { entry.setId(defaultFormatId(entry)); return true; } else return false; } QStringList IdSuggestions::formatIdList(const Entry &entry) const { const QStringList formatStrings = d->formatStringList(); QStringList result; result.reserve(formatStrings.size()); for (const QString &formatString : formatStrings) { result << formatId(entry, formatString); } return result; } QStringList IdSuggestions::formatStrToHuman(const QString &formatStr) const { QStringList result; const QStringList tokenList = formatStr.split(QStringLiteral("|"), QString::SkipEmptyParts); for (const QString &token : tokenList) { QString text; if (token[0] == 'a' || token[0] == 'A' || token[0] == 'z') { struct IdSuggestionTokenInfo info = evalToken(token.mid(1)); if (token[0] == 'a') info.startWord = info.endWord = 0; else if (token[0] == 'z') { info.startWord = 1; info.endWord = 0x00ffffff; } text = formatAuthorRange(info.startWord, info.endWord, info.lastWord); int n = info.len; if (info.len < 0x00ffffff) text.append(i18np(", but only first letter of each last name", ", but only first %1 letters of each last name", n)); switch (info.caseChange) { case IdSuggestions::ccToUpper: text.append(i18n(", in upper case")); break; case IdSuggestions::ccToLower: text.append(i18n(", in lower case")); break; case IdSuggestions::ccToCamelCase: text.append(i18n(", in CamelCase")); break; case IdSuggestions::ccNoChange: break; } if (!info.inBetween.isEmpty()) text.append(i18n(", with '%1' in between", info.inBetween)); } else if (token[0] == 'y') text.append(i18n("Year (2 digits)")); else if (token[0] == 'Y') text.append(i18n("Year (4 digits)")); else if (token[0] == 't' || token[0] == 'T') { struct IdSuggestionTokenInfo info = evalToken(token.mid(1)); text.append(i18n("Title")); if (info.startWord == 0 && info.endWord <= 0xffff) text.append(i18np(", but only the first word", ", but only first %1 words", info.endWord + 1)); else if (info.startWord > 0 && info.endWord > 0xffff) text.append(i18n(", but only starting from word %1", info.startWord + 1)); else if (info.startWord > 0 && info.endWord <= 0xffff) text.append(i18n(", but only from word %1 to word %2", info.startWord + 1, info.endWord + 1)); if (info.len < 0x00ffffff) text.append(i18np(", but only first letter of each word", ", but only first %1 letters of each word", info.len)); switch (info.caseChange) { case IdSuggestions::ccToUpper: text.append(i18n(", in upper case")); break; case IdSuggestions::ccToLower: text.append(i18n(", in lower case")); break; case IdSuggestions::ccToCamelCase: text.append(i18n(", in CamelCase")); break; case IdSuggestions::ccNoChange: break; } if (!info.inBetween.isEmpty()) text.append(i18n(", with '%1' in between", info.inBetween)); if (token[0] == 'T') text.append(i18n(", small words removed")); } else if (token[0] == 'j') { struct IdSuggestionTokenInfo info = evalToken(token.mid(1)); text.append(i18n("Journal")); if (info.len < 0x00ffffff) text.append(i18np(", but only first letter of each word", ", but only first %1 letters of each word", info.len)); switch (info.caseChange) { case IdSuggestions::ccToUpper: text.append(i18n(", in upper case")); break; case IdSuggestions::ccToLower: text.append(i18n(", in lower case")); break; case IdSuggestions::ccToCamelCase: text.append(i18n(", in CamelCase")); break; case IdSuggestions::ccNoChange: break; } } else if (token[0] == 'v') { text.append(i18n("Volume")); } else if (token[0] == 'p') { text.append(i18n("First page number")); } else if (token[0] == '"') text.append(i18n("Text: '%1'", token.mid(1))); else text.append("?"); result.append(text); } return result; } QString IdSuggestions::formatAuthorRange(int minValue, int maxValue, bool lastAuthor) { if (minValue == 0) { if (maxValue == 0) { if (lastAuthor) return i18n("First and last authors only"); else return i18n("First author only"); } else if (maxValue > 0xffff) return i18n("All authors"); else { if (lastAuthor) return i18n("From first author to author %1 and last author", maxValue + 1); else return i18n("From first author to author %1", maxValue + 1); } } else if (minValue == 1) { if (maxValue > 0xffff) return i18n("All but first author"); else { if (lastAuthor) return i18n("From author %1 to author %2 and last author", minValue + 1, maxValue + 1); else return i18n("From author %1 to author %2", minValue + 1, maxValue + 1); } } else { if (maxValue > 0xffff) return i18n("From author %1 to last author", minValue + 1); else if (lastAuthor) return i18n("From author %1 to author %2 and last author", minValue + 1, maxValue + 1); else return i18n("From author %1 to author %2", minValue + 1, maxValue + 1); } } struct IdSuggestions::IdSuggestionTokenInfo IdSuggestions::evalToken(const QString &token) const { int pos = 0; struct IdSuggestionTokenInfo result; result.len = 0x00ffffff; result.startWord = 0; result.endWord = 0x00ffffff; result.lastWord = false; result.caseChange = IdSuggestions::ccNoChange; result.inBetween = QString(); if (token.length() > pos) { int dv = token[pos].digitValue(); if (dv > -1) { result.len = dv; ++pos; } } if (token.length() > pos) { switch (token[pos].unicode()) { case 0x006c: // 'l' result.caseChange = IdSuggestions::ccToLower; ++pos; break; case 0x0075: // 'u' result.caseChange = IdSuggestions::ccToUpper; ++pos; break; case 0x0063: // 'c' result.caseChange = IdSuggestions::ccToCamelCase; ++pos; break; default: result.caseChange = IdSuggestions::ccNoChange; } } int dvStart = -1, dvEnd = 0x00ffffff; if (token.length() > pos + 2 ///< sufficiently many characters to follow && token[pos] == 'w' ///< identifier to start specifying a range of words && (dvStart = token[pos + 1].digitValue()) > -1 ///< first word index correctly parsed && ( token[pos + 2] == QLatin1Char('I') ///< infinitely many words || (dvEnd = token[pos + 2].digitValue()) > -1) ///< last word index finite and correctly parsed ) { result.startWord = dvStart; result.endWord = dvEnd; pos += 3; /// Optionally, the last word (e.g. last author) is explicitly requested if (token.length() > pos && token[pos] == QLatin1Char('L')) { result.lastWord = true; ++pos; } } if (token.length() > pos + 1 && token[pos] == '"') result.inBetween = token.mid(pos + 1); return result; } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/idsuggestions.h��������������������������������������������������������0000664�0000000�0000000�00000006206�13313000262�0021145�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2016 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_IDSUGGESTIONS_H #define KBIBTEX_PROC_IDSUGGESTIONS_H #include "kbibtexproc_export.h" #include "entry.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT IdSuggestions { public: enum CaseChange {ccNoChange = 0, ccToUpper = 1, ccToLower = 2, ccToCamelCase = 3}; struct IdSuggestionTokenInfo { unsigned int len; int startWord, endWord; bool lastWord; CaseChange caseChange; QString inBetween; }; static const QString keyFormatStringList; static const QString keyDefaultFormatString; static const QStringList defaultFormatStringList; static const QString defaultDefaultFormatString; static const QString configGroupName; IdSuggestions(); IdSuggestions(const IdSuggestions &) = delete; IdSuggestions &operator= (const IdSuggestions &other) = delete; ~IdSuggestions(); QString formatId(const Entry &entry, const QString &formatStr) const; QString defaultFormatId(const Entry &entry) const; bool hasDefaultFormat() const; /** * Apply the default formatting string to the entry. * If no default formatting string is set, the entry * will stay untouched and the function return false. * If the formatting string is set, the entry's id * will be changed accordingly and the function returns true. * * @param entry entry where the id has to be set * @return true if the id was set, false otherwise */ bool applyDefaultFormatId(Entry &entry) const; QStringList formatIdList(const Entry &entry) const; QStringList formatStrToHuman(const QString &formatStr) const; static QString formatAuthorRange(int minValue, int maxValue, bool lastAuthor); protected: struct IdSuggestionTokenInfo evalToken(const QString &token) const; private: class IdSuggestionsPrivate; IdSuggestionsPrivate *d; }; #endif // KBIBTEX_PROC_IDSUGGESTIONS_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/journalabbreviations.cpp�����������������������������������������������0000664�0000000�0000000�00000010407�13313000262�0023032�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "journalabbreviations.h" #include <QHash> #include <QFile> #include <QTextStream> #include <QRegExp> #include <QStandardPaths> #include "logging_processing.h" class JournalAbbreviations::Private { private: // UNUSED JournalAbbreviations *p; const QString journalFilename; QHash<QString, QString> leftToRightMap, rightToLeftMap; public: Private(JournalAbbreviations */* UNUSED parent*/) : /* UNUSED p(parent),*/ journalFilename(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kbibtex/jabref_journalabbrevlist.txt"))) { /// nothing } bool loadMapping() { leftToRightMap.clear(); rightToLeftMap.clear(); QFile journalFile(journalFilename); if (journalFile.open(QFile::ReadOnly)) { static const QRegExp splitRegExp(QStringLiteral("\\s*[=;]\\s*")); QTextStream ts(&journalFile); ts.setCodec("utf8"); QString line; while (!(line = ts.readLine()).isNull()) { /// Skip empty lines or comments if (line.isEmpty() || line.startsWith(QLatin1Char('#'))) continue; QStringList columns = line.split(splitRegExp); /// Skip lines that do not have at least two columns if (columns.count() < 2) continue; const QString alreadyInLeftToRightMap = leftToRightMap[columns[0]]; if (!alreadyInLeftToRightMap.isEmpty()) { if (alreadyInLeftToRightMap.length() > columns[1].length()) { leftToRightMap.remove(columns[0]); leftToRightMap.insert(columns[0], columns[1]); } } else leftToRightMap.insert(columns[0], columns[1]); rightToLeftMap.insert(columns[1], columns[0]); } journalFile.close(); return !leftToRightMap.isEmpty(); } else { qCWarning(LOG_KBIBTEX_PROCESSING) << "Cannot open journal abbreviation list file at" << journalFilename; return false; } } QString leftToRight(const QString &left) { if (leftToRightMap.isEmpty()) loadMapping(); return leftToRightMap.value(left, left); } QString rightToLeft(const QString &right) { if (rightToLeftMap.isEmpty()) loadMapping(); return rightToLeftMap.value(right, right); } }; JournalAbbreviations *JournalAbbreviations::instance = nullptr; JournalAbbreviations::JournalAbbreviations() : d(new JournalAbbreviations::Private(this)) { /// nothing } JournalAbbreviations::~JournalAbbreviations() { delete d; } JournalAbbreviations *JournalAbbreviations::self() { if (instance == nullptr) instance = new JournalAbbreviations(); return instance; } QString JournalAbbreviations::toShortName(const QString &longName) const { return d->leftToRight(longName); } QString JournalAbbreviations::toLongName(const QString &shortName) const { return d->rightToLeft(shortName); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/journalabbreviations.h�������������������������������������������������0000664�0000000�0000000�00000003517�13313000262�0022503�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_JOURNALABBREVIATIONS_H #define KBIBTEX_PROC_JOURNALABBREVIATIONS_H #include <QString> #include "kbibtexproc_export.h" /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT JournalAbbreviations { public: static JournalAbbreviations *self(); QString toShortName(const QString &longName) const; QString toLongName(const QString &shortName) const; protected: explicit JournalAbbreviations(); ~JournalAbbreviations(); private: class Private; Private *const d; static JournalAbbreviations *instance; }; #endif // KBIBTEX_PROC_JOURNALABBREVIATIONS_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/logging_processing.cpp�������������������������������������������������0000664�0000000�0000000�00000002464�13313000262�0022475�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_processing.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_PROCESSING, "kbibtex.processing") ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/logging_processing.h���������������������������������������������������0000664�0000000�0000000�00000002666�13313000262�0022146�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROCESSING_LOGGING_PROCESSING_H #define KBIBTEX_PROCESSING_LOGGING_PROCESSING_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_PROCESSING) #endif // KBIBTEX_PROCESSING_LOGGING_PROCESSING_H ��������������������������������������������������������������������������kbibtex-0.8.1/src/processing/lyx.cpp����������������������������������������������������������������0000664�0000000�0000000�00000014157�13313000262�0017431�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "lyx.h" #include <QWidget> #include <QAction> #include <QDir> #include <QTextStream> #include <QFileInfo> #include <QStandardPaths> #include <qplatformdefs.h> #include <KActionCollection> #include <KLocalizedString> #include <KParts/ReadOnlyPart> #include <KMessageBox> #include <KSharedConfig> #include <KConfigGroup> class LyX::LyXPrivate { private: // UNUSED LyX *p; public: QWidget *widget; QAction *action; QStringList references; KSharedConfigPtr config; const KConfigGroup group; LyXPrivate(LyX */* UNUSED parent*/, QWidget *widget) : /* UNUSED p(parent),*/ action(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), group(config, LyX::configGroupName) { this->widget = widget; } QString locateConfiguredLyXPipe() { QString result; /// First, check if automatic detection is disabled. /// In this case, read the LyX pipe's path from configuration if (!group.readEntry(keyUseAutomaticLyXPipeDetection, defaultUseAutomaticLyXPipeDetection)) result = group.readEntry(keyLyXPipePath, defaultLyXPipePath); #ifdef QT_LSTAT /// Check if the result so far is empty. This means that /// either automatic detection is enabled or the path in /// the configuration is empty/invalid. Proceed with /// automatic detection in this case. if (result.isEmpty()) result = LyX::guessLyXPipeLocation(); #endif // QT_LSTAT /// Finally, even if automatic detection was preferred by the user, /// still check configuration for a path if automatic detection failed if (result.isEmpty() && group.readEntry(keyUseAutomaticLyXPipeDetection, defaultUseAutomaticLyXPipeDetection)) result = group.readEntry(keyLyXPipePath, defaultLyXPipePath); /// Return the best found LyX pipe path return result; } }; const QString LyX::keyUseAutomaticLyXPipeDetection = QStringLiteral("UseAutomaticLyXPipeDetection"); const QString LyX::keyLyXPipePath = QStringLiteral("LyXPipePath"); #ifdef QT_LSTAT const bool LyX::defaultUseAutomaticLyXPipeDetection = true; #endif // QT_LSTAT const QString LyX::defaultLyXPipePath = QString(); const QString LyX::configGroupName = QStringLiteral("LyXPipe"); LyX::LyX(KParts::ReadOnlyPart *part, QWidget *widget) : QObject(part), d(new LyX::LyXPrivate(this, widget)) { d->action = new QAction(QIcon::fromTheme(QStringLiteral("application-x-lyx")), i18n("Send to LyX/Kile"), this); part->actionCollection()->addAction(QStringLiteral("sendtolyx"), d->action); d->action->setEnabled(false); connect(d->action, &QAction::triggered, this, &LyX::sendReferenceToLyX); widget->addAction(d->action); } LyX::~LyX() { delete d; } void LyX::setReferences(const QStringList &references) { d->references = references; d->action->setEnabled(d->widget != nullptr && !d->references.isEmpty()); } void LyX::sendReferenceToLyX() { const QString defaultHintOnLyXProblems = i18n("\n\nCheck that LyX or Kile are running and configured to receive references."); const QString msgBoxTitle = i18n("Send Reference to LyX"); /// LyX pipe name has to determined always fresh in case LyX or Kile exited const QString pipeName = d->locateConfiguredLyXPipe(); if (pipeName.isEmpty()) { KMessageBox::error(d->widget, i18n("No 'LyX server pipe' was detected.") + defaultHintOnLyXProblems, msgBoxTitle); return; } if (d->references.isEmpty()) { KMessageBox::error(d->widget, i18n("No references to send to LyX/Kile."), msgBoxTitle); return; } QFile pipe(pipeName); if (!QFileInfo::exists(pipeName) || !pipe.open(QFile::WriteOnly)) { KMessageBox::error(d->widget, i18n("Could not open LyX server pipe '%1'.", pipeName) + defaultHintOnLyXProblems, msgBoxTitle); return; } QTextStream ts(&pipe); QString msg = QString(QStringLiteral("LYXCMD:kbibtex:citation-insert:%1")).arg(d->references.join(QStringLiteral(","))); ts << msg << endl; ts.flush(); pipe.close(); } #ifdef QT_LSTAT QString LyX::guessLyXPipeLocation() { QT_STATBUF statBuffer; const QStringList nameFilter = QStringList() << QStringLiteral("*lyxpipe*in*"); const QVector<QDir> directoriesToScan = QVector<QDir>(4) << QDir::home() << QDir(QDir::homePath() + QStringLiteral("/.lyx")) << QDir::temp(); for (const QDir &directory : directoriesToScan) { const QStringList files = directory.entryList(nameFilter, QDir::Hidden | QDir::System | QDir::Writable, QDir::Unsorted); for (const QString &filename : files) { const QString canonicalFilename = QFileInfo(directory.absolutePath() + QDir::separator() + filename).canonicalFilePath(); if (QT_LSTAT(canonicalFilename.toLatin1(), &statBuffer) == 0 && S_ISFIFO(statBuffer.st_mode)) return canonicalFilename; } } return QString(); } #endif // QT_LSTAT �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/processing/lyx.h������������������������������������������������������������������0000664�0000000�0000000�00000004203�13313000262�0017065�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROC_LYX_H #define KBIBTEX_PROC_LYX_H #include "kbibtexproc_export.h" #include <QObject> #include <qplatformdefs.h> namespace KParts { class ReadOnlyPart; } class QWidget; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class KBIBTEXPROC_EXPORT LyX: public QObject { Q_OBJECT public: static const QString keyUseAutomaticLyXPipeDetection; static const QString keyLyXPipePath; #ifdef QT_LSTAT static const bool defaultUseAutomaticLyXPipeDetection; #endif // QT_LSTAT static const QString defaultLyXPipePath; static const QString configGroupName; LyX(KParts::ReadOnlyPart *part, QWidget *widget); ~LyX() override; void setReferences(const QStringList &references); #ifdef QT_LSTAT static QString guessLyXPipeLocation(); #endif // QT_LSTAT private slots: void sendReferenceToLyX(); private: class LyXPrivate; LyXPrivate *d; }; #endif // KBIBTEX_PROC_LYX_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/��������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0015374�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/CMakeLists.txt������������������������������������������������������������0000664�0000000�0000000�00000007536�13313000262�0020147�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# KBibTeX main program project( kbibtexprogram ) set( kbibtex_SRCS program.cpp mainwindow.cpp documentlist.cpp mdiwidget.cpp docklets/statistics.cpp docklets/referencepreview.cpp docklets/documentpreview.cpp docklets/valuelist.cpp docklets/searchform.cpp docklets/searchresults.cpp docklets/elementform.cpp docklets/filesettings.cpp openfileinfo.cpp ${CMAKE_SOURCE_DIR}/src/global/kbibtex.cpp logging_program.cpp ) if(BUILD_ZOTERO) list( APPEND kbibtex_SRCS docklets/zoterobrowser.cpp ) endif(BUILD_ZOTERO) if(UNITY_BUILD AND NOT WIN32) # FIXME: Unity build of programs breaks on Windows enable_unity_build(kbibtex kbibtex_SRCS) endif(UNITY_BUILD AND NOT WIN32) include_directories( ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_BINARY_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_BINARY_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/processing ${CMAKE_BINARY_DIR}/src/processing ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_BINARY_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/io/config ${CMAKE_SOURCE_DIR}/src/networking ${CMAKE_BINARY_DIR}/src/networking ${CMAKE_SOURCE_DIR}/src/networking/onlinesearch ${CMAKE_SOURCE_DIR}/src/gui ${CMAKE_BINARY_DIR}/src/gui ${CMAKE_SOURCE_DIR}/src/gui/widgets ${CMAKE_SOURCE_DIR}/src/gui/file ${CMAKE_SOURCE_DIR}/src/gui/element ${CMAKE_SOURCE_DIR}/src/program/docklets ${CMAKE_SOURCE_DIR}/src/global ) ecm_add_app_icon( kbibtex_SRCS ICONS ${CMAKE_SOURCE_DIR}/icons/128-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/16-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/22-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/32-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/48-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/64-apps-kbibtex.png ) # Creates kbibtex-git-info.h containing information about the source code's Git revision # (if source directory is a Git clone) add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h COMMAND ${CMAKE_COMMAND} -DSOURCE_DIR=${CMAKE_SOURCE_DIR} -DBINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/src/getgit.cmake ) set_source_files_properties( ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h PROPERTIES GENERATED 1 HEADER_FILE_ONLY 1 SKIP_AUTOMOC ON SKIP_AUTOUIC ON SKIP_AUTOGEN ON ) add_executable( kbibtex ${kbibtex_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h ) target_link_libraries( kbibtex Qt5::Core Qt5::Widgets KF5::CoreAddons KF5::I18n KF5::ConfigCore KF5::Service KF5::Parts KF5::IconThemes KF5::KIOCore KF5::KIOFileWidgets KF5::KIOWidgets KF5::KIONTLM KF5::Crash kbibtexio kbibtexgui kbibtexnetworking ) if(Qt5WebEngineWidgets_FOUND) target_link_libraries( kbibtex Qt5::WebEngineWidgets ) else(Qt5WebEngineWidgets_FOUND) if(Qt5WebKitWidgets_FOUND) target_link_libraries( kbibtex Qt5::WebKitWidgets ) endif(Qt5WebKitWidgets_FOUND) endif(Qt5WebEngineWidgets_FOUND) install( TARGETS kbibtex ${INSTALL_TARGETS_DEFAULT_ARGS} ) install( PROGRAMS org.kde.kbibtex.desktop DESTINATION ${KDE_INSTALL_APPDIR} ) install( FILES kbibtexui.rc DESTINATION ${KDE_INSTALL_KXMLGUI5DIR}/kbibtex ) install( FILES org.kde.kbibtex.appdata.xml DESTINATION ${KDE_INSTALL_METAINFODIR} ) ecm_install_icons( ICONS ${CMAKE_SOURCE_DIR}/icons/128-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/16-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/22-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/32-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/48-apps-kbibtex.png ${CMAKE_SOURCE_DIR}/icons/64-apps-kbibtex.png DESTINATION ${KDE_INSTALL_ICONDIR} ) ������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/�����������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0017204�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/documentpreview.cpp����������������������������������������������0000664�0000000�0000000�00000072676�13313000262�0023152�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "documentpreview.h" #include <typeinfo> #include <QDomDocument> #include <QDomElement> #include <QList> #include <QLayout> #include <QMap> #include <QFileInfo> #include <QResizeEvent> #include <QCheckBox> #include <QMenuBar> #include <QStackedWidget> #include <QDockWidget> #include <QDebug> #include <QPushButton> #include <QMutex> #include <QMimeDatabase> #include <QMimeType> #include <QIcon> #ifdef HAVE_WEBENGINEWIDGETS #include <QWebEngineView> #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS #include <QWebView> #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS #include <KLocalizedString> #include <KComboBox> #include <KJobWidgets> #include <KRun> #include <KMimeTypeTrader> #include <KService> #include <KParts/Part> #include <KParts/ReadOnlyPart> #include <kio/jobclasses.h> #include <kio/job.h> #include <kio/jobuidelegate.h> #include <KToolBar> #include <KActionCollection> #include <KSharedConfig> #include <KConfigGroup> #include <kio_version.h> #include "kbibtex.h" #include "element.h" #include "entry.h" #include "file.h" #include "fileinfo.h" #include "logging_program.h" ImageLabel::ImageLabel(const QString &text, QWidget *parent, Qt::WindowFlags f) : QLabel(text, parent, f) { // nothing } void ImageLabel::setPixmap(const QPixmap &pixmap) { m_pixmap = pixmap; if (!m_pixmap.isNull()) { setCursor(Qt::WaitCursor); QPixmap scaledPixmap = m_pixmap.width() <= width() && m_pixmap.height() <= height() ? m_pixmap : pixmap.scaled(width(), height(), Qt::KeepAspectRatio, Qt::SmoothTransformation); QLabel::setPixmap(scaledPixmap); setMinimumSize(100, 100); unsetCursor(); } else QLabel::setPixmap(m_pixmap); } void ImageLabel::resizeEvent(QResizeEvent *event) { QLabel::resizeEvent(event); if (!m_pixmap.isNull()) { setCursor(Qt::WaitCursor); QPixmap scaledPixmap = m_pixmap.width() <= event->size().width() && m_pixmap.height() <= event->size().height() ? m_pixmap : m_pixmap.scaled(event->size(), Qt::KeepAspectRatio, Qt::SmoothTransformation); QLabel::setPixmap(scaledPixmap); setMinimumSize(100, 100); unsetCursor(); } } class DocumentPreview::DocumentPreviewPrivate { public: struct UrlInfo { QUrl url; QString mimeType; QIcon icon; }; private: DocumentPreview *p; KSharedConfigPtr config; static const QString configGroupName; static const QString onlyLocalFilesCheckConfig; QPushButton *externalViewerButton; QStackedWidget *stackedWidget; ImageLabel *message; QMap<int, struct UrlInfo> cbxEntryToUrlInfo; QMutex addingUrlMutex; static const QString arXivPDFUrlStart; bool anyLocal; QMenuBar *menuBar; KToolBar *toolBar; KParts::ReadOnlyPart *okularPart; #ifdef HAVE_WEBENGINEWIDGETS QWebEngineView *htmlWidget; #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS QWebView *htmlWidget; #else // HAVE_WEBKITWIDGETS KParts::ReadOnlyPart *htmlPart; #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS int swpMessage, swpOkular, swpHTML; public: KComboBox *urlComboBox; QPushButton *onlyLocalFilesButton; QList<KIO::StatJob *> runningJobs; QSharedPointer<const Entry> entry; QUrl baseUrl; bool anyRemote; KParts::ReadOnlyPart *locatePart(const QString &mimeType, QWidget *parentWidget) { KService::Ptr service = KMimeTypeTrader::self()->preferredService(mimeType, QStringLiteral("KParts/ReadOnlyPart")); if (service) { KParts::ReadOnlyPart *part = service->createInstance<KParts::ReadOnlyPart>(parentWidget, p); connect(part, static_cast<void(KParts::ReadOnlyPart::*)()>(&KParts::ReadOnlyPart::completed), p, &DocumentPreview::loadingFinished); return part; } else return nullptr; } DocumentPreviewPrivate(DocumentPreview *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), anyLocal(false), entry(nullptr), anyRemote(false) { setupGUI(); } /** * Create user interface for this widget. * It consists of some controlling widget on the top, * but the most space is consumed by KPart widgets * inside a QStackedWidget to show the external content * (PDF file, web page, ...). */ void setupGUI() { QVBoxLayout *layout = new QVBoxLayout(p); layout->setMargin(0); /// some widgets on the top to control the view QHBoxLayout *innerLayout = new QHBoxLayout(); layout->addLayout(innerLayout, 0); onlyLocalFilesButton = new QPushButton(QIcon::fromTheme(QStringLiteral("applications-internet")), QString(), p); onlyLocalFilesButton->setToolTip(i18n("Toggle between local files only and all documents including remote ones")); innerLayout->addWidget(onlyLocalFilesButton, 0); onlyLocalFilesButton->setCheckable(true); QSizePolicy sp = onlyLocalFilesButton->sizePolicy(); sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); onlyLocalFilesButton->setSizePolicy(sp); urlComboBox = new KComboBox(false, p); innerLayout->addWidget(urlComboBox, 1); externalViewerButton = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open")), QString(), p); externalViewerButton->setToolTip(i18n("Open in external program")); innerLayout->addWidget(externalViewerButton, 0); sp = externalViewerButton->sizePolicy(); sp.setVerticalPolicy(QSizePolicy::MinimumExpanding); externalViewerButton->setSizePolicy(sp); menuBar = new QMenuBar(p); menuBar->setBackgroundRole(QPalette::Window); menuBar->setVisible(false); layout->addWidget(menuBar, 0); toolBar = new KToolBar(p); toolBar->setToolButtonStyle(Qt::ToolButtonIconOnly); toolBar->setBackgroundRole(QPalette::Window); toolBar->setVisible(false); layout->addWidget(toolBar, 0); /// main part of the widget stackedWidget = new QStackedWidget(p); layout->addWidget(stackedWidget, 1); /// default widget if no preview is available message = new ImageLabel(i18n("No preview available"), stackedWidget); message->setAlignment(Qt::AlignCenter); message->setWordWrap(true); swpMessage = stackedWidget->addWidget(message); connect(message, &QLabel::linkActivated, p, &DocumentPreview::linkActivated); /// add parts to stackedWidget okularPart = locatePart(QStringLiteral("application/pdf"), stackedWidget); swpOkular = (okularPart == nullptr) ? -1 : stackedWidget->addWidget(okularPart->widget()); if (okularPart == nullptr || swpOkular < 0) { qCWarning(LOG_KBIBTEX_PROGRAM) << "No 'KDE Framworks 5'-based Okular part for PDF or PostScript document preview available."; } #ifdef HAVE_WEBENGINEWIDGETS qCDebug(LOG_KBIBTEX_PROGRAM) << "WebEngine is available, using it instead of WebKit or HTML KPart (both neither considered nor tested for) for HTML/Web preview."; htmlWidget = new QWebEngineView(stackedWidget); swpHTML = stackedWidget->addWidget(htmlWidget); connect(htmlWidget, &QWebEngineView::loadFinished, p, &DocumentPreview::loadingFinished); #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS qCDebug(LOG_KBIBTEX_PROGRAM) << "WebKit is available, using it instead of WebEngine (missing) or HTML KPart (not considered) for HTML/Web preview."; htmlWidget = new QWebView(stackedWidget); swpHTML = stackedWidget->addWidget(htmlWidget); connect(htmlWidget, &QWebView::loadFinished, p, &DocumentPreview::loadingFinished); #else // HAVE_WEBKITWIDGETS htmlPart = locatePart(QStringLiteral("text/html"), stackedWidget); if (htmlPart != nullptr) { qCDebug(LOG_KBIBTEX_PROGRAM) << "HTML KPart is available, using it instead of WebEngine or WebKit (neither available) for HTML/Web preview."; swpHTML = stackedWidget->addWidget(htmlPart->widget()); } else { qCDebug(LOG_KBIBTEX_PROGRAM) << "No HTML viewing component is available, disabling HTML/Web preview."; swpHTML = -1; } #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS loadState(); connect(externalViewerButton, &QPushButton::clicked, p, &DocumentPreview::openExternally); connect(urlComboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated), p, &DocumentPreview::comboBoxChanged); connect(onlyLocalFilesButton, &QPushButton::toggled, p, &DocumentPreview::onlyLocalFilesChanged); } bool addUrl(const struct UrlInfo &urlInfo) { bool isLocal = KBibTeX::isLocalOrRelative(urlInfo.url); anyLocal |= isLocal; if (!onlyLocalFilesButton->isChecked() && !isLocal) return true; ///< ignore URL if only local files are allowed if (isLocal) { /// create a drop-down list entry if file is a local file /// (based on patch by Luis Silva) QString fn = urlInfo.url.fileName(); QString full = urlInfo.url.url(QUrl::PreferLocalFile); QString dir = urlInfo.url.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).path(); QString text = fn.isEmpty() ? full : (dir.isEmpty() ? fn : QString(QStringLiteral("%1 [%2]")).arg(fn, dir)); urlComboBox->addItem(urlInfo.icon, text); } else { /// create a drop-down list entry if file is a remote file urlComboBox->addItem(urlInfo.icon, urlInfo.url.toDisplayString()); } urlComboBox->setEnabled(true); cbxEntryToUrlInfo.insert(urlComboBox->count() - 1, urlInfo); externalViewerButton->setEnabled(true); if (urlComboBox->count() == 1 || ///< first entry in combobox isLocal || ///< local files always preferred over URLs /// prefer arXiv summary URLs over other URLs (!anyLocal && urlInfo.url.host().contains(QStringLiteral("arxiv.org/abs")))) { showUrl(urlInfo); } return true; } void update() { p->setCursor(Qt::WaitCursor); /// reset and clear all controls if (swpOkular >= 0 && okularPart != nullptr) okularPart->closeUrl(); #ifdef HAVE_WEBENGINEWIDGETS htmlWidget->stop(); #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS htmlWidget->stop(); #else // HAVE_WEBKITWIDGETS if (swpHTML >= 0 && htmlPart != nullptr) htmlPart->closeUrl(); #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS urlComboBox->setEnabled(false); urlComboBox->clear(); cbxEntryToUrlInfo.clear(); externalViewerButton->setEnabled(false); showMessage(i18n("Refreshing...")); // krazy:exclude=qmethods /// cancel/kill all running jobs auto it = runningJobs.begin(); while (it != runningJobs.end()) { (*it)->kill(); it = runningJobs.erase(it); } /// clear flag that memorizes if any local file was referenced anyLocal = false; anyRemote = false; /// do not load external reference if widget is hidden if (isVisible()) { const QList<QUrl> urlList = FileInfo::entryUrls(entry, baseUrl, FileInfo::TestExistenceYes); for (const QUrl &url : urlList) { bool isLocal = KBibTeX::isLocalOrRelative(url); anyRemote |= !isLocal; if (!onlyLocalFilesButton->isChecked() && !isLocal) continue; KIO::StatJob *job = KIO::stat(url, KIO::StatJob::SourceSide, 3, KIO::HideProgressInfo); runningJobs << job; KJobWidgets::setWindow(job, p); connect(job, &KIO::StatJob::result, p, &DocumentPreview::statFinished); } if (urlList.isEmpty()) { /// Case no URLs associated with this entry. /// For-loop above was never executed. showMessage(i18n("No documents to show.")); // krazy:exclude=qmethods p->setCursor(Qt::ArrowCursor); } else if (runningJobs.isEmpty()) { /// Case no stat jobs are running. As there were URLs (tested in /// previous condition), this implies that there were remote /// references that were ignored by executing "continue" above. /// Give user hint that by enabling remote files, more can be shown. showMessage(i18n("<qt>No documents to show.<br/><a href=\"disableonlylocalfiles\">Disable the restriction</a> to local files to see remote documents.</qt>")); // krazy:exclude=qmethods p->setCursor(Qt::ArrowCursor); } } else p->setCursor(Qt::ArrowCursor); } void showMessage(const QString &msgText) { stackedWidget->setCurrentIndex(swpMessage); message->setPixmap(QPixmap()); message->setText(msgText); if (swpOkular >= 0) stackedWidget->widget(swpOkular)->setEnabled(false); if (swpHTML >= 0) stackedWidget->widget(swpHTML)->setEnabled(false); menuBar->setVisible(false); toolBar->setVisible(true); menuBar->clear(); toolBar->clear(); } void setupToolMenuBarForPart(const KParts::ReadOnlyPart *part) { /* KAction *printAction = KStandardAction::print(part, SLOT(slotPrint()), part->actionCollection()); printAction->setEnabled(false); connect(part, SIGNAL(enablePrintAction(bool)), printAction, SLOT(setEnabled(bool))); */ QDomDocument doc = part->domDocument(); QDomElement docElem = doc.documentElement(); QDomNodeList toolbarNodes = docElem.elementsByTagName(QStringLiteral("ToolBar")); for (int i = 0; i < toolbarNodes.count(); ++i) { QDomNodeList toolbarItems = toolbarNodes.at(i).childNodes(); for (int j = 0; j < toolbarItems.count(); ++j) { QDomNode toolbarItem = toolbarItems.at(j); if (toolbarItem.nodeName() == QStringLiteral("Action")) { QString actionName = toolbarItem.attributes().namedItem(QStringLiteral("name")).nodeValue(); toolBar->addAction(part->actionCollection()->action(actionName)); } else if (toolbarItem.nodeName() == QStringLiteral("Separator")) { toolBar->addSeparator(); } } } QDomNodeList menubarNodes = docElem.elementsByTagName(QStringLiteral("MenuBar")); for (int i = 0; i < menubarNodes.count(); ++i) { QDomNodeList menubarNode = menubarNodes.at(i).childNodes(); for (int j = 0; j < menubarNode.count(); ++j) { QDomNode menubarItem = menubarNode.at(j); if (menubarItem.nodeName() == QStringLiteral("Menu")) { QDomNodeList menuNode = menubarItem.childNodes(); QString text; for (int k = 0; k < menuNode.count(); ++k) { QDomNode menuItem = menuNode.at(k); if (menuItem.nodeName() == QStringLiteral("text")) { text = menuItem.firstChild().toText().data(); break; } } QMenu *menu = menuBar->addMenu(text); for (int k = 0; k < menuNode.count(); ++k) { QDomNode menuItem = menuNode.at(k); if (menuItem.nodeName() == QStringLiteral("Action")) { QString actionName = menuItem.attributes().namedItem(QStringLiteral("name")).nodeValue(); menu->addAction(part->actionCollection()->action(actionName)); } else if (menuItem.nodeName() == QStringLiteral("Separator")) { menu->addSeparator(); } } } } } QDomNodeList actionPropertiesList = docElem.elementsByTagName(QStringLiteral("ActionProperties")); for (int i = 0; i < actionPropertiesList.count(); ++i) { QDomNodeList actionProperties = actionPropertiesList.at(i).childNodes(); for (int j = 0; j < actionProperties.count(); ++j) { QDomNode actionNode = actionProperties.at(j); if (actionNode.nodeName() == QStringLiteral("Action")) { const QString actionName = actionNode.attributes().namedItem(QStringLiteral("name")).toAttr().nodeValue(); const QString actionShortcut = actionNode.attributes().namedItem(QStringLiteral("shortcut")).toAttr().value(); QAction *action = part->actionCollection()->action(actionName); if (action != nullptr) { action->setShortcut(QKeySequence(actionShortcut)); } } } } menuBar->setVisible(true); toolBar->setVisible(true); } void showPart(const KParts::ReadOnlyPart *part, QWidget *widget) { menuBar->setVisible(false); toolBar->setVisible(false); menuBar->clear(); toolBar->clear(); if (okularPart != nullptr && part == okularPart && swpOkular >= 0) { stackedWidget->setCurrentIndex(swpOkular); stackedWidget->widget(swpOkular)->setEnabled(true); setupToolMenuBarForPart(okularPart); #ifdef HAVE_WEBENGINEWIDGETS } else if (widget == htmlWidget) { stackedWidget->setCurrentIndex(swpHTML); stackedWidget->widget(swpHTML)->setEnabled(true); #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS } else if (widget == htmlWidget) { stackedWidget->setCurrentIndex(swpHTML); stackedWidget->widget(swpHTML)->setEnabled(true); #else // HAVE_WEBKITWIDGETS } else if (htmlPart != nullptr && part == htmlPart && swpHTML >= 0) { stackedWidget->setCurrentIndex(swpHTML); stackedWidget->widget(swpHTML)->setEnabled(true); setupToolMenuBarForPart(htmlPart); #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS } else if (widget == message) { stackedWidget->setCurrentIndex(swpMessage); } else showMessage(i18n("Cannot show requested part")); // krazy:exclude=qmethods } bool showUrl(const struct UrlInfo &urlInfo) { static const QStringList okularMimetypes = QStringList() << QStringLiteral("application/x-pdf") << QStringLiteral("application/pdf") << QStringLiteral("application/x-gzpdf") << QStringLiteral("application/x-bzpdf") << QStringLiteral("application/x-wwf") << QStringLiteral("image/vnd.djvu") << QStringLiteral("image/vnd.djvu+multipage") << QStringLiteral("application/postscript") << QStringLiteral("image/x-eps") << QStringLiteral("application/x-gzpostscript") << QStringLiteral("application/x-bzpostscript") << QStringLiteral("image/x-gzeps") << QStringLiteral("image/x-bzeps"); static const QStringList htmlMimetypes = QStringList() << QStringLiteral("text/html") << QStringLiteral("application/xml") << QStringLiteral("application/xhtml+xml"); static const QStringList imageMimetypes = QStringList() << QStringLiteral("image/jpeg") << QStringLiteral("image/png") << QStringLiteral("image/gif") << QStringLiteral("image/tiff"); if (swpHTML >= 0) stackedWidget->widget(swpHTML)->setEnabled(false); if (swpOkular >= 0 && okularPart != nullptr) { stackedWidget->widget(swpOkular)->setEnabled(false); okularPart->closeUrl(); } #ifdef HAVE_WEBENGINEWIDGETS htmlWidget->stop(); #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS htmlWidget->stop(); #else // HAVE_WEBKITWIDGETS if (swpHTML >= 0 && htmlPart != nullptr) htmlPart->closeUrl(); #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS if (swpOkular >= 0 && okularPart != nullptr && okularMimetypes.contains(urlInfo.mimeType)) { p->setCursor(Qt::BusyCursor); showMessage(i18n("Loading...")); // krazy:exclude=qmethods return okularPart->openUrl(urlInfo.url); } else if (htmlMimetypes.contains(urlInfo.mimeType)) { p->setCursor(Qt::BusyCursor); showMessage(i18n("Loading...")); // krazy:exclude=qmethods #ifdef HAVE_WEBENGINEWIDGETS htmlWidget->load(urlInfo.url); return true; #else // HAVE_WEBENGINEWIDGETS #ifdef HAVE_WEBKITWIDGETS htmlWidget->load(urlInfo.url); return true; #else // HAVE_WEBKITWIDGETS return (swpHTML >= 0 && htmlPart != nullptr) ? htmlPart->openUrl(urlInfo.url) : false; #endif // HAVE_WEBKITWIDGETS #endif // HAVE_WEBENGINEWIDGETS } else if (imageMimetypes.contains(urlInfo.mimeType)) { p->setCursor(Qt::BusyCursor); message->setPixmap(QPixmap(urlInfo.url.url(QUrl::PreferLocalFile))); showPart(nullptr, message); p->unsetCursor(); return true; } else { QString additionalInformation; if (urlInfo.mimeType == QStringLiteral("application/pdf")) additionalInformation = i18nc("Additional information in case there is not KPart available for mime type 'application/pdf'", "<br/><br/>Please install <a href=\"https://userbase.kde.org/Okular\">Okular</a> for KDE Frameworks&nbsp;5 to make use of its PDF viewing component.<br/>Okular for KDE&nbsp;4 will not work."); showMessage(i18nc("First parameter is mime type, second parameter is optional information (may be empty)", "<qt>Don't know how to show mimetype '%1'.%2</qt>", urlInfo.mimeType, additionalInformation)); // krazy:exclude=qmethods } return false; } void openExternally() { QUrl url(cbxEntryToUrlInfo[urlComboBox->currentIndex()].url); /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(url); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, mimeTypeName, p, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, mimeTypeName, p, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } UrlInfo urlMetaInfo(const QUrl &url) { UrlInfo result; result.url = url; if (!KBibTeX::isLocalOrRelative(url) && url.fileName().isEmpty()) { /// URLs not pointing to a specific file should be opened with a web browser component result.icon = QIcon::fromTheme(QStringLiteral("text-html")); result.mimeType = QStringLiteral("text/html"); return result; } QMimeType mimeType = FileInfo::mimeTypeForUrl(url); // FIXME accuracy, necessary: /* if (accuracy < 50) { QMimeDatabase db; mimeType = db.mimeTypeForFile(url.fileName()); } */ result.mimeType = mimeType.name(); result.icon = QIcon::fromTheme(mimeType.iconName()); if (result.mimeType == QStringLiteral("application/octet-stream")) { /// application/octet-stream is a fall-back if KDE did not know better result.icon = QIcon::fromTheme(QStringLiteral("text-html")); result.mimeType = QStringLiteral("text/html"); } else if ((result.mimeType.isEmpty() || result.mimeType == QStringLiteral("inode/directory")) && (result.url.scheme() == QStringLiteral("http") || result.url.scheme() == QStringLiteral("https"))) { /// directory via http means normal webpage (not browsable directory) result.icon = QIcon::fromTheme(QStringLiteral("text-html")); result.mimeType = QStringLiteral("text/html"); } if (url.url(QUrl::PreferLocalFile).startsWith(arXivPDFUrlStart)) { result.icon = QIcon::fromTheme(QStringLiteral("application-pdf")); result.mimeType = QStringLiteral("application/pdf"); } return result; } void comboBoxChanged(int index) { showUrl(cbxEntryToUrlInfo[index]); } bool isVisible() { /// get dock where this widget is inside /// static cast is save as constructor requires parent to be QDockWidget QDockWidget *pp = static_cast<QDockWidget *>(p->parent()); return pp != nullptr && !pp->isHidden(); } void loadState() { KConfigGroup configGroup(config, configGroupName); onlyLocalFilesButton->setChecked(!configGroup.readEntry(onlyLocalFilesCheckConfig, true)); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(onlyLocalFilesCheckConfig, !onlyLocalFilesButton->isChecked()); config->sync(); } }; const QString DocumentPreview::DocumentPreviewPrivate::arXivPDFUrlStart = QStringLiteral("http://arxiv.org/pdf/"); const QString DocumentPreview::DocumentPreviewPrivate::configGroupName = QStringLiteral("URL Preview"); const QString DocumentPreview::DocumentPreviewPrivate::onlyLocalFilesCheckConfig = QStringLiteral("OnlyLocalFiles"); DocumentPreview::DocumentPreview(QDockWidget *parent) : QWidget(parent), d(new DocumentPreviewPrivate(this)) { connect(parent, &QDockWidget::visibilityChanged, this, &DocumentPreview::visibilityChanged); } DocumentPreview::~DocumentPreview() { delete d; } void DocumentPreview::setElement(QSharedPointer<Element> element, const File *) { d->entry = element.dynamicCast<const Entry>(); d->update(); } void DocumentPreview::openExternally() { d->openExternally(); } void DocumentPreview::setBibTeXUrl(const QUrl &url) { d->baseUrl = url; } void DocumentPreview::onlyLocalFilesChanged() { d->saveState(); d->update(); } void DocumentPreview::visibilityChanged(bool) { d->update(); } void DocumentPreview::comboBoxChanged(int index) { d->comboBoxChanged(index); } void DocumentPreview::statFinished(KJob *kjob) { KIO::StatJob *job = static_cast<KIO::StatJob *>(kjob); d->runningJobs.removeOne(job); if (!job->error()) { const QUrl url = job->mostLocalUrl(); DocumentPreviewPrivate::UrlInfo urlInfo = d->urlMetaInfo(url); setCursor(d->runningJobs.isEmpty() ? Qt::ArrowCursor : Qt::BusyCursor); d->addUrl(urlInfo); } else { qCWarning(LOG_KBIBTEX_PROGRAM) << job->error() << job->errorString(); } if (d->runningJobs.isEmpty()) { /// If this was the last background stat job ... setCursor(Qt::ArrowCursor); if (d->urlComboBox->count() < 1) { /// In case that no valid references were found by the stat jobs ... if (d->anyRemote && !d->onlyLocalFilesButton->isChecked()) { /// There are some remote URLs to probe, /// but user was only looking for local files d->showMessage(i18n("<qt>No documents to show.<br/><a href=\"disableonlylocalfiles\">Disable the restriction</a> to local files to see remote documents.</qt>")); // krazy:exclude=qmethods } else { /// No stat job at all succeeded. Show message to user. d->showMessage(i18n("No documents to show.\nSome URLs or files could not be retrieved.")); // krazy:exclude=qmethods } } } } void DocumentPreview::loadingFinished() { setCursor(Qt::ArrowCursor); d->showPart(qobject_cast<KParts::ReadOnlyPart *>(sender()), qobject_cast<QWidget *>(sender())); } void DocumentPreview::linkActivated(const QString &link) { if (link == QStringLiteral("disableonlylocalfiles")) d->onlyLocalFilesButton->setChecked(true); else if (link.startsWith(QStringLiteral("http://")) || link.startsWith(QStringLiteral("https://"))) { const QUrl urlToOpen = QUrl::fromUserInput(link); if (urlToOpen.isValid()) { /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(urlToOpen); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(urlToOpen, mimeTypeName, this, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(urlToOpen, mimeTypeName, this, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } } ������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/documentpreview.h������������������������������������������������0000664�0000000�0000000�00000004642�13313000262�0022603�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_DOCUMENTPREVIEW_H #define KBIBTEX_PROGRAM_DOCUMENTPREVIEW_H #include <QWidget> #include <QLabel> #include <QPixmap> #include <QUrl> class QDockWidget; class QResizeEvent; class KJob; namespace KIO { class Job; } class Element; class File; class ImageLabel : public QLabel { Q_OBJECT public: explicit ImageLabel(const QString &text, QWidget *parent = nullptr, Qt::WindowFlags f = 0); void setPixmap(const QPixmap &pixmap); protected: void resizeEvent(QResizeEvent *event) override; private: QPixmap m_pixmap; }; class DocumentPreview : public QWidget { Q_OBJECT public: explicit DocumentPreview(QDockWidget *parent); ~DocumentPreview() override; public slots: void setElement(QSharedPointer<Element>, const File *); void setBibTeXUrl(const QUrl &); private: class DocumentPreviewPrivate; DocumentPreviewPrivate *d; QString mimeType(const QUrl &url); private slots: void openExternally(); void onlyLocalFilesChanged(); void visibilityChanged(bool); void comboBoxChanged(int); void statFinished(KJob *); void loadingFinished(); void linkActivated(const QString &link); }; #endif // KBIBTEX_PROGRAM_DOCUMENTPREVIEW_H ����������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/elementform.cpp��������������������������������������������������0000664�0000000�0000000�00000024175�13313000262�0022236�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "elementform.h" #include <QLayout> #include <QDockWidget> #include <QLabel> #include <QCheckBox> #include <QPushButton> #include <KLocalizedString> #include <KIconLoader> #include <KConfigGroup> #include <KSharedConfig> #include <KMessageBox> #include "entry.h" #include "elementeditor.h" #include "mdiwidget.h" class ElementForm::ElementFormPrivate { private: ElementForm *p; QGridLayout *layout; const File *file; public: ElementEditor *elementEditor; MDIWidget *mdiWidget; QCheckBox *checkBoxAutoApply; QPushButton *buttonApply, *buttonReset; QWidget *widgetUnmodifiedChanges; bool gotModified; QSharedPointer<Element> element; KSharedConfigPtr config; /// Group name in configuration file for all settings for this form static const QString configGroupName; /// Key to store/retrieve setting whether changes in form should be automatically applied to element or not static const QString configKeyAutoApply; ElementFormPrivate(MDIWidget *_mdiWidget, ElementForm *parent) : p(parent), file(nullptr), mdiWidget(_mdiWidget), gotModified(false), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { KConfigGroup configGroup(config, configGroupName); layout = new QGridLayout(p); layout->setColumnStretch(0, 10); layout->setColumnStretch(1, 0); layout->setColumnStretch(2, 0); layout->setColumnStretch(3, 0); elementEditor = new ElementEditor(true, p); layout->addWidget(elementEditor, 0, 0, 1, 4); elementEditor->setEnabled(false); elementEditor->layout()->setMargin(0); connect(elementEditor, &ElementEditor::modified, p, &ElementForm::modified); /// Checkbox enabling/disabling setting to automatically apply changes in form to element checkBoxAutoApply = new QCheckBox(i18n("Automatically apply changes"), p); checkBoxAutoApply->setChecked(configGroup.readEntry(configKeyAutoApply, false)); layout->addWidget(checkBoxAutoApply, 1, 0, 1, 1); /// Create a special widget that shows a small icon and a text /// stating that there are unsaved changes. It will be shown /// simultaneously when the Apply and Reset buttons are enabled. // TODO nearly identical code as in SearchResultsPrivate constructor, create common class widgetUnmodifiedChanges = new QWidget(p); layout->addWidget(widgetUnmodifiedChanges, 1, 1, 1, 1); QBoxLayout *layoutUnmodifiedChanges = new QHBoxLayout(widgetUnmodifiedChanges); layoutUnmodifiedChanges->addSpacing(32); QLabel *label = new QLabel(widgetUnmodifiedChanges); label->setAlignment(Qt::AlignCenter | Qt::AlignVCenter); label->setPixmap(KIconLoader::global()->loadIcon(QStringLiteral("dialog-information"), KIconLoader::Dialog, KIconLoader::SizeSmall)); layoutUnmodifiedChanges->addWidget(label); label = new QLabel(i18n("There are unsaved changes. Please press either 'Apply' or 'Reset'."), widgetUnmodifiedChanges); label->setAlignment(Qt::AlignRight | Qt::AlignVCenter); layoutUnmodifiedChanges->addWidget(label); buttonApply = new QPushButton(QIcon::fromTheme(QStringLiteral("dialog-ok-apply")), i18n("Apply"), p); layout->addWidget(buttonApply, 1, 2, 1, 1); buttonReset = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-undo")), i18n("Reset"), p); layout->addWidget(buttonReset, 1, 3, 1, 1); connect(buttonApply, &QPushButton::clicked, p, &ElementForm::elementModified); connect(checkBoxAutoApply, &QCheckBox::toggled, p, &ElementForm::autoApplyToggled); } ~ElementFormPrivate() { delete elementEditor; } void refreshElement() { loadElement(element, file); } void loadElement(QSharedPointer<Element> element, const File *file) { /// store both element and file for later refresh this->element = element; this->file = file; /// skip whole process of loading an element if not visible if (isVisible()) p->setEnabled(true); else { p->setEnabled(false); return; } elementEditor->setElement(element, file); elementEditor->setEnabled(!element.isNull()); /// make apply and reset buttons aware of new element editor buttonApply->setEnabled(false); buttonReset->setEnabled(false); widgetUnmodifiedChanges->setVisible(false); gotModified = false; connect(buttonApply, &QPushButton::clicked, p, &ElementForm::apply); connect(buttonReset, &QPushButton::clicked, p, &ElementForm::reset); } bool isVisible() { /// get dock where this widget is inside /// static cast is save as constructor requires parent to be QDockWidget QDockWidget *pp = static_cast<QDockWidget *>(p->parent()); return pp != nullptr && !pp->isHidden(); } void apply() { elementEditor->apply(); buttonApply->setEnabled(false); buttonReset->setEnabled(false); gotModified = false; widgetUnmodifiedChanges->setVisible(false); } void reset() { elementEditor->reset(); buttonApply->setEnabled(false); buttonReset->setEnabled(false); gotModified = false; widgetUnmodifiedChanges->setVisible(false); } }; const QString ElementForm::ElementFormPrivate::configGroupName = QStringLiteral("ElementForm"); const QString ElementForm::ElementFormPrivate::configKeyAutoApply = QStringLiteral("AutoApply"); ElementForm::ElementForm(MDIWidget *mdiWidget, QDockWidget *parent) : QWidget(parent), d(new ElementFormPrivate(mdiWidget, this)) { connect(parent, &QDockWidget::visibilityChanged, this, &ElementForm::visibilityChanged); } ElementForm::~ElementForm() { delete d; } void ElementForm::setElement(QSharedPointer<Element> element, const File *file) { /// Test if previous element (1) got modified, (2) the new element isn't /// the same as the new one, and (3) the user confirms to apply those /// changes rather than to discard them -> apply changes in previous element. /// FIXME If the previous element got delete from the file and therefore a different /// element gets set, changes will be still applied to the element to-be-deleted. if (d->gotModified && element != d->element && KMessageBox::questionYesNo(this, i18n("The current element got modified.\nApply or discard changes?"), i18n("Element modified"), KGuiItem(i18n("Apply changes"), QIcon::fromTheme(QStringLiteral("dialog-ok-apply"))), KGuiItem(i18n("Discard changes"), QIcon::fromTheme(QStringLiteral("edit-undo")))) == KMessageBox::Yes) { d->apply(); } if (element != d->element) { /// Ignore loading the same element again d->loadElement(element, file); } } void ElementForm::refreshElement() { d->refreshElement(); } /** * Fetch the modified signal from the editing widget. * @param gotModified true if widget was modified by user, false if modified status was reset by e.g. apply operation */ void ElementForm::modified(bool gotModified) { /// Only interested in modifications, not resets of modified status if (!gotModified) return; if (d->checkBoxAutoApply->isChecked()) { /// User wants to automatically apply changes, so do it apply(); /// Notify rest of program (esp. main list) about changes emit elementModified(); } else { /// No automatic apply, therefore enable buttons where user can /// apply or reset changes, plus show warning label about unsaved changes d->buttonApply->setEnabled(true); d->buttonReset->setEnabled(true); d->widgetUnmodifiedChanges->setVisible(true); d->gotModified = true; } } void ElementForm::apply() { d->apply(); } void ElementForm::reset() { d->reset(); } void ElementForm::visibilityChanged(bool) { d->refreshElement(); } /** * React on toggles of checkbox for auto-apply. * @param isChecked true if checkbox got checked, false if checkbox got unchecked */ void ElementForm::autoApplyToggled(bool isChecked) { if (isChecked) { /// Got toggled to check state if (!d->element.isNull()) { /// Working on a real element, so apply changes apply(); emit elementModified(); } else { /// The following settings would happen when calling apply(), /// but as no valid element is edited, perform settings here instead d->buttonApply->setEnabled(false); d->buttonReset->setEnabled(false); d->widgetUnmodifiedChanges->setVisible(false); d->gotModified = false; } } /// Save changed status of checkbox in configuration settings KConfigGroup configGroup(d->config, ElementFormPrivate::configGroupName); configGroup.writeEntry(ElementFormPrivate::configKeyAutoApply, d->checkBoxAutoApply->isChecked()); configGroup.sync(); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/elementform.h����������������������������������������������������0000664�0000000�0000000�00000003624�13313000262�0021677�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_ELEMENTFORM_H #define KBIBTEX_PROGRAM_ELEMENTFORM_H #include <QWidget> class QDockWidget; class MDIWidget; class Element; class File; class ElementForm : public QWidget { Q_OBJECT public: ElementForm(MDIWidget *mdiWidget, QDockWidget *parent); ~ElementForm() override; public slots: void setElement(QSharedPointer<Element>, const File *); void refreshElement(); signals: void elementModified(); private: class ElementFormPrivate; ElementFormPrivate *d; private slots: void modified(bool); void apply(); void reset(); void visibilityChanged(bool); void autoApplyToggled(bool); }; #endif // KBIBTEX_PROGRAM_ELEMENTFORM_H ������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/filesettings.cpp�������������������������������������������������0000664�0000000�0000000�00000005675�13313000262�0022425�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #include "filesettings.h" #include <QFormLayout> #include <QCheckBox> #include <KComboBox> #include <KLocalizedString> #include "preferences.h" #include "guihelper.h" #include "italictextitemmodel.h" #include "fileview.h" #include "models/filemodel.h" #include "value.h" #include "file.h" #include "openfileinfo.h" FileSettings::FileSettings(QWidget *parent) : FileSettingsWidget(parent), m_fileView(nullptr) { setEnabled(false); connect(this, &FileSettings::widgetsChanged, this, &FileSettings::widgetsChangedSlot); connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::currentChanged, this, &FileSettings::currentFileChangedSlot); /// Monitoring file flag changes to get notified of /// "Save As" operations where the file settings /// may get changed (requires a reload of properties) connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::flagsChanged, this, &FileSettings::resetToLoadedProperties); } void FileSettings::setFileView(FileView *fileView) { m_fileView = fileView; currentFileChangedSlot(); } void FileSettings::widgetsChangedSlot() { File *file = m_fileView != nullptr && m_fileView->fileModel() != nullptr ? m_fileView->fileModel()->bibliographyFile() : nullptr; if (file != nullptr) { saveProperties(file); /// Notify main view about change it its data m_fileView->externalModification(); } } void FileSettings::currentFileChangedSlot() { File *file = m_fileView != nullptr && m_fileView->fileModel() != nullptr ? m_fileView->fileModel()->bibliographyFile() : nullptr; loadProperties(file); setEnabled(file != nullptr); } �������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/filesettings.h���������������������������������������������������0000664�0000000�0000000�00000003520�13313000262�0022055�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/***************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * *****************************************************************************/ #ifndef DOCKLET_FILESETTINGS_H #define DOCKLET_FILESETTINGS_H #include "filesettingswidget.h" class FileView; class File; class OpenFileInfoManager; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class FileSettings : public FileSettingsWidget { Q_OBJECT public: explicit FileSettings(QWidget *parent); void setFileView(FileView *fileView); private slots: void widgetsChangedSlot(); void currentFileChangedSlot(); private: FileView *m_fileView; }; #endif // DOCKLET_FILESETTINGS_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/referencepreview.cpp���������������������������������������������0000664�0000000�0000000�00000044423�13313000262�0023257�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * and contributors * * * * Contributions to this file were made by * * - Jurgen Spitzmuller <juergen@spitzmueller.org> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "referencepreview.h" #include <QFrame> #include <QBuffer> #include <QTextDocument> #include <QLayout> #include <QApplication> #include <QStandardPaths> #include <QTextStream> #include <QTemporaryFile> #include <QPalette> #include <QMimeType> #include <QDebug> #include <QFileDialog> #include <QPushButton> #include <QFontDatabase> #include <KLocalizedString> #include <KComboBox> #include <KRun> #include <KIO/CopyJob> #include <KJobWidgets> #include <KSharedConfig> #include <KConfigGroup> #include <KTextEdit> #include <kio_version.h> #include "fileexporterbibtex.h" #include "fileexporterbibtex2html.h" #include "fileexporterris.h" #include "fileexporterxslt.h" #include "element.h" #include "file.h" #include "entry.h" #include "fileview.h" #include "logging_program.h" static const struct PreviewStyles { QString label, style, type; } previewStyles[] = { {i18n("Source (BibTeX)"), QStringLiteral("bibtex"), QStringLiteral("exporter")}, {i18n("Source (RIS)"), QStringLiteral("ris"), QStringLiteral("exporter")}, {QStringLiteral("abbrv"), QStringLiteral("abbrv"), QStringLiteral("bibtex2html")}, {QStringLiteral("acm"), QStringLiteral("acm"), QStringLiteral("bibtex2html")}, {QStringLiteral("alpha"), QStringLiteral("alpha"), QStringLiteral("bibtex2html")}, {QStringLiteral("apalike"), QStringLiteral("apalike"), QStringLiteral("bibtex2html")}, {QStringLiteral("ieeetr"), QStringLiteral("ieeetr"), QStringLiteral("bibtex2html")}, {QStringLiteral("plain"), QStringLiteral("plain"), QStringLiteral("bibtex2html")}, {QStringLiteral("siam"), QStringLiteral("siam"), QStringLiteral("bibtex2html")}, {QStringLiteral("unsrt"), QStringLiteral("unsrt"), QStringLiteral("bibtex2html")}, {i18n("Standard"), QStringLiteral("standard"), QStringLiteral("xml")}, {i18n("Fancy"), QStringLiteral("fancy"), QStringLiteral("xml")}, {i18n("Wikipedia Citation"), QStringLiteral("wikipedia-cite"), QStringLiteral("plain_xml")}, {i18n("Abstract-only"), QStringLiteral("abstractonly"), QStringLiteral("xml")} }; static const int previewStylesLen = sizeof(previewStyles) / sizeof(previewStyles[0]); Q_DECLARE_METATYPE(PreviewStyles) class ReferencePreview::ReferencePreviewPrivate { private: ReferencePreview *p; public: KSharedConfigPtr config; const QString configGroupName; const QString configKeyName; QPushButton *buttonOpen, *buttonSaveAsHTML; QString htmlText; QUrl baseUrl; QTextDocument *htmlDocument; KTextEdit *htmlView; KComboBox *comboBox; QSharedPointer<const Element> element; const File *file; FileView *fileView; const QColor textColor; const int defaultFontSize; const QString htmlStart; const QString notAvailableMessage; ReferencePreviewPrivate(ReferencePreview *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("Reference Preview Docklet")), configKeyName(QStringLiteral("Style")), file(nullptr), fileView(nullptr), textColor(QApplication::palette().text().color()), defaultFontSize(QFontDatabase::systemFont(QFontDatabase::GeneralFont).pointSize()), htmlStart(QStringLiteral("<html>\n<head>\n<meta http-equiv=\"content-type\" content=\"text/html; charset=utf-8\" />\n<style type=\"text/css\">\npre {\n white-space: pre-wrap;\n white-space: -moz-pre-wrap;\n white-space: -pre-wrap;\n white-space: -o-pre-wrap;\n word-wrap: break-word;\n}\n</style>\n</head>\n<body style=\"color: ") + textColor.name() + QStringLiteral("; font-size: ") + QString::number(defaultFontSize) + QStringLiteral("pt; font-family: '") + QFontDatabase::systemFont(QFontDatabase::GeneralFont).family() + QStringLiteral("'; background-color: '") + QApplication::palette().base().color().name(QColor::HexRgb) + QStringLiteral("'\">")), notAvailableMessage(htmlStart + QStringLiteral("<p style=\"font-style: italic;\">") + i18n("No preview available") + QStringLiteral("</p><p style=\"font-size: 90%;\">") + i18n("Reason:") + QStringLiteral(" %1</p></body></html>")) { QGridLayout *gridLayout = new QGridLayout(p); gridLayout->setMargin(0); gridLayout->setColumnStretch(0, 1); gridLayout->setColumnStretch(1, 0); gridLayout->setColumnStretch(2, 0); comboBox = new KComboBox(p); gridLayout->addWidget(comboBox, 0, 0, 1, 3); QFrame *frame = new QFrame(p); gridLayout->addWidget(frame, 1, 0, 1, 3); frame->setFrameShadow(QFrame::Sunken); frame->setFrameShape(QFrame::StyledPanel); QVBoxLayout *layout = new QVBoxLayout(frame); layout->setMargin(0); htmlView = new KTextEdit(frame); htmlView->setReadOnly(true); htmlDocument = new QTextDocument(htmlView); htmlView->setDocument(htmlDocument); layout->addWidget(htmlView); buttonOpen = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open"), p); buttonOpen->setToolTip(i18n("Open reference in web browser.")); gridLayout->addWidget(buttonOpen, 2, 1, 1, 1); buttonSaveAsHTML = new QPushButton(QIcon::fromTheme(QStringLiteral("document-save")), i18n("Save as HTML"), p); buttonSaveAsHTML->setToolTip(i18n("Save reference as HTML fragment.")); gridLayout->addWidget(buttonSaveAsHTML, 2, 2, 1, 1); } bool saveHTML(const QUrl &url) const { QTemporaryFile tempFile; tempFile.setAutoRemove(true); bool result = saveHTML(tempFile); if (result) { KIO::CopyJob *copyJob = KIO::copy(QUrl::fromLocalFile(tempFile.fileName()), url, KIO::Overwrite); KJobWidgets::setWindow(copyJob, p); result = copyJob->exec(); } return result; } bool saveHTML(QTemporaryFile &tempFile) const { if (tempFile.open()) { QTextStream ts(&tempFile); ts.setCodec("utf-8"); ts << QString(htmlText).replace(QRegExp(QStringLiteral("<a[^>]+href=\"kbibtex:[^>]+>([^<]+)</a>")), QStringLiteral("\\1")); tempFile.close(); return true; } return false; } void loadState() { static bool hasBibTeX2HTML = !QStandardPaths::findExecutable(QStringLiteral("bibtex2html")).isEmpty(); int styleIndex = 0; KConfigGroup configGroup(config, configGroupName); const QString previousStyle = configGroup.readEntry(configKeyName, QString()); comboBox->clear(); for (int i = 0, c = 0; i < previewStylesLen; ++i) { if (!hasBibTeX2HTML && previewStyles[i].type.contains(QStringLiteral("bibtex2html"))) continue; comboBox->addItem(previewStyles[i].label, QVariant::fromValue(previewStyles[i])); if (previousStyle == previewStyles[i].style) styleIndex = c; ++c; } comboBox->setCurrentIndex(styleIndex); } void saveState() { KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(configKeyName, comboBox->itemData(comboBox->currentIndex()).value<PreviewStyles>().style); config->sync(); } }; ReferencePreview::ReferencePreview(QWidget *parent) : QWidget(parent), d(new ReferencePreviewPrivate(this)) { d->loadState(); connect(d->buttonOpen, &QPushButton::clicked, this, &ReferencePreview::openAsHTML); connect(d->buttonSaveAsHTML, &QPushButton::clicked, this, &ReferencePreview::saveAsHTML); connect(d->comboBox, static_cast<void(QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this, &ReferencePreview::renderHTML); setEnabled(false); } ReferencePreview::~ReferencePreview() { delete d; } void ReferencePreview::setHtml(const QString &html, bool buttonsEnabled) { d->htmlText = QString(html).remove(QStringLiteral("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")); d->htmlDocument->setHtml(d->htmlText); d->buttonOpen->setEnabled(buttonsEnabled); d->buttonSaveAsHTML->setEnabled(buttonsEnabled); } void ReferencePreview::setEnabled(bool enabled) { if (enabled) setHtml(d->htmlText, true); else setHtml(d->notAvailableMessage.arg(i18n("Preview disabled")), false); d->htmlView->setEnabled(enabled); d->comboBox->setEnabled(enabled); } void ReferencePreview::setElement(QSharedPointer<Element> element, const File *file) { d->element = element; d->file = file; renderHTML(); } void ReferencePreview::renderHTML() { enum { ignore, /// do not include crossref'ed entry's values (one entry) /// NOT USED: add, /// feed both the current entry as well as the crossref'ed entry into the exporter (two entries) merge /// merge the crossref'ed entry's values into the current entry (one entry) } crossRefHandling = ignore; if (d->element.isNull()) { setHtml(d->notAvailableMessage.arg(i18n("No element selected")), false); return; } QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); FileExporter *exporter = nullptr; const PreviewStyles previewStyle = d->comboBox->itemData(d->comboBox->currentIndex()).value<PreviewStyles>(); if (previewStyle.type == QStringLiteral("exporter")) { if (previewStyle.style == QStringLiteral("bibtex")) { FileExporterBibTeX *exporterBibTeX = new FileExporterBibTeX(this); exporterBibTeX->setEncoding(QStringLiteral("utf-8")); exporter = exporterBibTeX; } else if (previewStyle.style == QStringLiteral("ris")) exporter = new FileExporterRIS(this); else qCWarning(LOG_KBIBTEX_PROGRAM) << "Don't know how to handle output style " << previewStyle.style << " for type " << previewStyle.type; } else if (previewStyle.type == QStringLiteral("bibtex2html")) { crossRefHandling = merge; FileExporterBibTeX2HTML *exporterHTML = new FileExporterBibTeX2HTML(this); exporterHTML->setLaTeXBibliographyStyle(previewStyle.style); exporter = exporterHTML; } else if (previewStyle.type == QStringLiteral("xml") || previewStyle.type.endsWith(QStringLiteral("_xml"))) { crossRefHandling = merge; const QString filename = previewStyle.style + QStringLiteral(".xsl"); exporter = new FileExporterXSLT(QStandardPaths::locate(QStandardPaths::GenericDataLocation, QStringLiteral("kbibtex/") + filename), this); } else qCWarning(LOG_KBIBTEX_PROGRAM) << "Don't know how to handle output type " << previewStyle.type; if (exporter != nullptr) { QBuffer buffer(this); buffer.open(QBuffer::WriteOnly); bool exporterResult = false; QStringList errorLog; QSharedPointer<const Entry> entry = d->element.dynamicCast<const Entry>(); /** NOT USED if (crossRefHandling == add && !entry.isNull()) { QString crossRef = PlainTextValue::text(entry->value(QStringLiteral("crossref"))); QSharedPointer<const Entry> crossRefEntry = d->file == NULL ? QSharedPointer<const Entry>() : d->file->containsKey(crossRef) .dynamicCast<const Entry>(); if (!crossRefEntry.isNull()) { File file; file.append(QSharedPointer<Entry>(new Entry(*entry))); file.append(QSharedPointer<Entry>(new Entry(*crossRefEntry))); exporterResult = exporter->save(&buffer, &file, &errorLog); } else exporterResult = exporter->save(&buffer, d->element, d->file, &errorLog); } else */ if (crossRefHandling == merge && !entry.isNull()) { QSharedPointer<Entry> merged = QSharedPointer<Entry>(Entry::resolveCrossref(*entry, d->file)); exporterResult = exporter->save(&buffer, merged, d->file, &errorLog); } else exporterResult = exporter->save(&buffer, d->element, d->file, &errorLog); buffer.close(); delete exporter; buffer.open(QBuffer::ReadOnly); QString text = QString::fromUtf8(buffer.readAll().constData()); buffer.close(); bool buttonsEnabled = true; if (!exporterResult || text.isEmpty()) { /// something went wrong, no output ... text = d->notAvailableMessage.arg(i18n("No output generated")); buttonsEnabled = false; qCDebug(LOG_KBIBTEX_PROGRAM) << errorLog.join(QStringLiteral("\n")); } else { /// beautify text text.replace(QStringLiteral("``"), QStringLiteral("&ldquo;")); text.replace(QStringLiteral("''"), QStringLiteral("&rdquo;")); static const QRegExp openingSingleQuotationRegExp(QStringLiteral("(^|[> ,.;:!?])`(\\S)")); static const QRegExp closingSingleQuotationRegExp(QStringLiteral("(\\S)'([ ,.;:!?<]|$)")); text.replace(openingSingleQuotationRegExp, QStringLiteral("\\1&lsquo;\\2")); text.replace(closingSingleQuotationRegExp, QStringLiteral("\\1&rsquo;\\2")); if (previewStyle.style == QStringLiteral("wikipedia-cite")) text.remove(QStringLiteral("\n")); if (text.contains(QStringLiteral("{{cite FIXME"))) { /// Wikipedia {{cite ...}} command had problems (e.g. unknown entry type) text = d->notAvailableMessage.arg(i18n("This type of element is not supported by Wikipedia's <tt>{{cite}}</tt> command.")); } else if (previewStyle.type == QStringLiteral("exporter") || previewStyle.type.startsWith(QStringLiteral("plain_"))) { /// source text.prepend(QStringLiteral("';\">")); text.prepend(QFontDatabase::systemFont(QFontDatabase::FixedFont).family()); text.prepend(QStringLiteral("<pre style=\"font-family: '")); text.prepend(d->htmlStart); text.append(QStringLiteral("</pre></body></html>")); } else if (previewStyle.type == QStringLiteral("bibtex2html")) { /// bibtex2html /// remove "generated by" line from HTML code if BibTeX2HTML was used text.remove(QRegExp(QStringLiteral("<hr><p><em>.*</p>"))); text.remove(QRegExp(QStringLiteral("<[/]?(font)[^>]*>"))); QRegExp reTable(QStringLiteral("^.*<td.*</td.*<td>")); reTable.setMinimal(true); text.remove(reTable); text.remove(QRegExp(QStringLiteral("</td>.*$"))); QRegExp reAnchor(QStringLiteral("\\[ <a.*</a> \\]")); reAnchor.setMinimal(true); text.remove(reAnchor); /// replace ASCII art with Unicode characters text.replace(QStringLiteral("---"), QString(QChar(0x2014))); text.replace(QStringLiteral("--"), QString(QChar(0x2013))); text.prepend(d->htmlStart); text.append("</body></html>"); } else if (previewStyle.type == QStringLiteral("xml")) { /// XML/XSLT text.prepend(d->htmlStart); text.append("</body></html>"); } /// adopt current color scheme text.replace(QStringLiteral("color: black;"), QString(QStringLiteral("color: %1;")).arg(d->textColor.name())); } setHtml(text, buttonsEnabled); d->saveState(); } else { /// something went wrong, no exporter ... setHtml(d->notAvailableMessage.arg(i18n("No output generated")), false); } QApplication::restoreOverrideCursor(); } void ReferencePreview::openAsHTML() { QTemporaryFile file(QStandardPaths::writableLocation(QStandardPaths::TempLocation) + QDir::separator() + QStringLiteral("referencePreview-openAsHTML-XXXXXX.html")); file.setAutoRemove(false); /// let file stay alive for browser d->saveHTML(file); /// Ask KDE subsystem to open url in viewer matching mime type QUrl url(file.fileName()); #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, QStringLiteral("text/html"), this, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, QStringLiteral("text/html"), this, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } void ReferencePreview::saveAsHTML() { QUrl url = QFileDialog::getSaveFileUrl(this, i18n("Save as HTML"), QUrl(), QStringLiteral("text/html")); if (url.isValid()) d->saveHTML(url); } void ReferencePreview::linkClicked(const QUrl &url) { QString text = url.toDisplayString(); if (text.startsWith(QStringLiteral("kbibtex:filter:"))) { text = text.mid(15); if (d->fileView != nullptr) { int p = text.indexOf(QStringLiteral("=")); SortFilterFileModel::FilterQuery fq; fq.terms << text.mid(p + 1); fq.combination = SortFilterFileModel::EveryTerm; fq.field = text.left(p); fq.searchPDFfiles = false; d->fileView->setFilterBarFilter(fq); } } } void ReferencePreview::setFileView(FileView *fileView) { d->fileView = fileView; } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/referencepreview.h�����������������������������������������������0000664�0000000�0000000�00000003721�13313000262�0022720�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_REFERENCEPREVIEW_H #define KBIBTEX_PROGRAM_REFERENCEPREVIEW_H #include <QWidget> #include <QUrl> class Element; class File; class FileView; class ReferencePreview : public QWidget { Q_OBJECT public: explicit ReferencePreview(QWidget *parent); ~ReferencePreview() override; void setEnabled(bool); void setFileView(FileView *fileView); public slots: void setElement(QSharedPointer<Element>, const File *); private: class ReferencePreviewPrivate; ReferencePreviewPrivate *d; void setHtml(const QString &html, bool buttonsEnabled); private slots: void renderHTML(); void openAsHTML(); void saveAsHTML(); void linkClicked(const QUrl &); }; #endif // KBIBTEX_PROGRAM_REFERENCEPREVIEW_H �����������������������������������������������kbibtex-0.8.1/src/program/docklets/searchform.cpp���������������������������������������������������0000664�0000000�0000000�00000050161�13313000262�0022044�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "searchform.h" #include <QLayout> #include <QMap> #include <QLabel> #include <QListWidget> #include <QSpinBox> #include <QStackedWidget> #include <QTabWidget> #include <QProgressBar> #include <QMimeDatabase> #include <QMimeType> #include <QTimer> #include <QSet> #include <QAction> #include <QScrollArea> #include <QIcon> #include <QPushButton> #include <QDebug> #include <KLineEdit> #include <KLocalizedString> #include <KRun> #include <KMessageBox> #include <KParts/Part> #include <KParts/ReadOnlyPart> #include <KConfigGroup> #include <KSharedConfig> #include <kio_version.h> #include "element.h" #include "file.h" #include "comment.h" #include "fileexporterbibtex.h" #include "onlinesearchabstract.h" #include "onlinesearchgeneral.h" #include "onlinesearchbibsonomy.h" #include "onlinesearchgooglescholar.h" #include "onlinesearchpubmed.h" #include "onlinesearchieeexplore.h" #include "onlinesearchacmportal.h" #include "onlinesearchsciencedirect.h" #include "onlinesearchspringerlink.h" #include "onlinesearcharxiv.h" #include "onlinesearchjstor.h" #include "onlinesearchmathscinet.h" #include "onlinesearchmrlookup.h" #include "onlinesearchinspirehep.h" #include "onlinesearchcernds.h" #include "onlinesearchingentaconnect.h" #include "onlinesearchsoanasaads.h" #include "onlinesearchisbndb.h" #include "onlinesearchideasrepec.h" #include "onlinesearchdoi.h" #include "onlinesearchbiorxiv.h" #include "openfileinfo.h" #include "fileview.h" #include "models/filemodel.h" #include "searchresults.h" #include "logging_program.h" class SearchForm::SearchFormPrivate { private: SearchForm *p; QStackedWidget *queryTermsStack; QWidget *listContainer; QListWidget *enginesList; QLabel *whichEnginesLabel; QAction *actionOpenHomepage; public: KSharedConfigPtr config; const QString configGroupName; SearchResults *sr; QMap<QListWidgetItem *, OnlineSearchAbstract *> itemToOnlineSearch; QSet<OnlineSearchAbstract *> runningSearches; QPushButton *searchButton; QPushButton *useEntryButton; OnlineSearchQueryFormGeneral *generalQueryTermsForm; QTabWidget *tabWidget; QSharedPointer<const Entry> currentEntry; QProgressBar *progressBar; QMap<OnlineSearchAbstract *, int> progressMap; QMap<OnlineSearchQueryFormAbstract *, QScrollArea *> formToScrollArea; enum SearchFormPrivateRole { /// Homepage of a search engine HomepageRole = Qt::UserRole + 5, /// Special widget for a search engine WidgetRole = Qt::UserRole + 6, /// Name of a search engine NameRole = Qt::UserRole + 7 }; SearchFormPrivate(SearchResults *searchResults, SearchForm *parent) : p(parent), whichEnginesLabel(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("Search Engines Docklet")), sr(searchResults), searchButton(nullptr), useEntryButton(nullptr), currentEntry(nullptr) { createGUI(); } OnlineSearchQueryFormAbstract *currentQueryForm() { QScrollArea *area = qobject_cast<QScrollArea *>(queryTermsStack->currentWidget()); return formToScrollArea.key(area, nullptr); } QScrollArea *wrapInScrollArea(OnlineSearchQueryFormAbstract *form, QWidget *parent) { QScrollArea *scrollArea = new QScrollArea(parent); form->setParent(scrollArea); scrollArea->setWidget(form); scrollArea->setWidgetResizable(true); scrollArea->setFrameShape(QFrame::NoFrame); scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); scrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarAsNeeded); formToScrollArea.insert(form, scrollArea); return scrollArea; } QWidget *createQueryTermsStack(QWidget *parent) { QWidget *container = new QWidget(parent); QVBoxLayout *vLayout = new QVBoxLayout(container); whichEnginesLabel = new QLabel(container); whichEnginesLabel->setWordWrap(true); vLayout->addWidget(whichEnginesLabel); vLayout->setStretchFactor(whichEnginesLabel, 0); connect(whichEnginesLabel, &QLabel::linkActivated, p, &SearchForm::switchToEngines); vLayout->addSpacing(8); queryTermsStack = new QStackedWidget(container); vLayout->addWidget(queryTermsStack); vLayout->setStretchFactor(queryTermsStack, 5); QScrollArea *scrollArea = wrapInScrollArea(createGeneralQueryTermsForm(queryTermsStack), queryTermsStack); queryTermsStack->addWidget(scrollArea); return container; } OnlineSearchQueryFormAbstract *createGeneralQueryTermsForm(QWidget *parent = nullptr) { generalQueryTermsForm = new OnlineSearchQueryFormGeneral(parent); return generalQueryTermsForm; } QWidget *createEnginesGUI(QWidget *parent) { listContainer = new QWidget(parent); QGridLayout *layout = new QGridLayout(listContainer); layout->setRowStretch(0, 1); layout->setRowStretch(1, 0); enginesList = new QListWidget(listContainer); layout->addWidget(enginesList, 0, 0, 1, 1); connect(enginesList, &QListWidget::itemChanged, p, &SearchForm::itemCheckChanged); connect(enginesList, &QListWidget::currentItemChanged, p, &SearchForm::enginesListCurrentChanged); enginesList->setSelectionMode(QAbstractItemView::NoSelection); actionOpenHomepage = new QAction(QIcon::fromTheme(QStringLiteral("internet-web-browser")), i18n("Go to Homepage"), p); connect(actionOpenHomepage, &QAction::triggered, p, &SearchForm::openHomepage); enginesList->addAction(actionOpenHomepage); enginesList->setContextMenuPolicy(Qt::ActionsContextMenu); return listContainer; } void createGUI() { QGridLayout *layout = new QGridLayout(p); layout->setMargin(0); layout->setRowStretch(0, 1); layout->setRowStretch(1, 0); layout->setColumnStretch(0, 0); layout->setColumnStretch(1, 1); layout->setColumnStretch(2, 0); tabWidget = new QTabWidget(p); tabWidget->setDocumentMode(true); layout->addWidget(tabWidget, 0, 0, 1, 3); QWidget *widget = createQueryTermsStack(tabWidget); tabWidget->addTab(widget, QIcon::fromTheme(QStringLiteral("edit-rename")), i18n("Query Terms")); QWidget *listContainer = createEnginesGUI(tabWidget); tabWidget->addTab(listContainer, QIcon::fromTheme(QStringLiteral("applications-engineering")), i18n("Engines")); connect(tabWidget, &QTabWidget::currentChanged, p, &SearchForm::tabSwitched); useEntryButton = new QPushButton(QIcon::fromTheme(QStringLiteral("go-up")), i18n("Use Entry"), p); layout->addWidget(useEntryButton, 1, 0, 1, 1); useEntryButton->setEnabled(false); connect(useEntryButton, &QPushButton::clicked, p, &SearchForm::copyFromEntry); progressBar = new QProgressBar(p); layout->addWidget(progressBar, 1, 1, 1, 1); progressBar->setMaximum(1000); progressBar->hide(); searchButton = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-find")), i18n("Search"), p); layout->addWidget(searchButton, 1, 2, 1, 1); connect(generalQueryTermsForm, &OnlineSearchQueryFormGeneral::returnPressed, searchButton, &QPushButton::click); updateGUI(); } void loadEngines() { enginesList->clear(); addEngine(new OnlineSearchAcmPortal(p)); addEngine(new OnlineSearchArXiv(p)); addEngine(new OnlineSearchBioRxiv(p)); addEngine(new OnlineSearchBibsonomy(p)); addEngine(new OnlineSearchGoogleScholar(p)); addEngine(new OnlineSearchIEEEXplore(p)); addEngine(new OnlineSearchIngentaConnect(p)); addEngine(new OnlineSearchJStor(p)); addEngine(new OnlineSearchMathSciNet(p)); addEngine(new OnlineSearchMRLookup(p)); addEngine(new OnlineSearchInspireHep(p)); addEngine(new OnlineSearchCERNDS(p)); addEngine(new OnlineSearchPubMed(p)); addEngine(new OnlineSearchScienceDirect(p)); addEngine(new OnlineSearchSpringerLink(p)); addEngine(new OnlineSearchSOANASAADS(p)); /// addEngine(new OnlineSearchIsbnDB(p)); /// disabled as provider switched to a paid model on 2017-12-26 addEngine(new OnlineSearchIDEASRePEc(p)); addEngine(new OnlineSearchDOI(p)); p->itemCheckChanged(nullptr); updateGUI(); } void addEngine(OnlineSearchAbstract *engine) { KConfigGroup configGroup(config, configGroupName); QListWidgetItem *item = new QListWidgetItem(engine->label(), enginesList); item->setCheckState(configGroup.readEntry(engine->name(), false) ? Qt::Checked : Qt::Unchecked); item->setIcon(engine->icon(item)); item->setToolTip(engine->label()); item->setData(HomepageRole, engine->homepage()); item->setData(NameRole, engine->name()); OnlineSearchQueryFormAbstract *widget = engine->customWidget(queryTermsStack); item->setData(WidgetRole, QVariant::fromValue<OnlineSearchQueryFormAbstract *>(widget)); if (widget != nullptr) { connect(widget, &OnlineSearchQueryFormAbstract::returnPressed, searchButton, &QPushButton::click); QScrollArea *scrollArea = wrapInScrollArea(widget, queryTermsStack); queryTermsStack->addWidget(scrollArea); } itemToOnlineSearch.insert(item, engine); connect(engine, &OnlineSearchAbstract::foundEntry, p, &SearchForm::foundEntry); connect(engine, &OnlineSearchAbstract::stoppedSearch, p, &SearchForm::stoppedSearch); connect(engine, &OnlineSearchAbstract::progress, p, &SearchForm::updateProgress); } void switchToSearch() { for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = itemToOnlineSearch.constBegin(); it != itemToOnlineSearch.constEnd(); ++it) disconnect(searchButton, &QPushButton::clicked, it.value(), &OnlineSearchAbstract::cancel); connect(searchButton, &QPushButton::clicked, p, &SearchForm::startSearch); searchButton->setText(i18n("Search")); searchButton->setIcon(QIcon::fromTheme(QStringLiteral("media-playback-start"))); for (int i = tabWidget->count() - 1; i >= 0; --i) tabWidget->widget(i)->setEnabled(true); tabWidget->unsetCursor(); } void switchToCancel() { disconnect(searchButton, &QPushButton::clicked, p, &SearchForm::startSearch); for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = itemToOnlineSearch.constBegin(); it != itemToOnlineSearch.constEnd(); ++it) connect(searchButton, &QPushButton::clicked, it.value(), &OnlineSearchAbstract::cancel); searchButton->setText(i18n("Stop")); searchButton->setIcon(QIcon::fromTheme(QStringLiteral("media-playback-stop"))); for (int i = tabWidget->count() - 1; i >= 0; --i) tabWidget->widget(i)->setEnabled(false); tabWidget->setCursor(Qt::WaitCursor); } void switchToEngines() { tabWidget->setCurrentWidget(listContainer); } void updateGUI() { if (whichEnginesLabel == nullptr) return; QStringList checkedEngines; QListWidgetItem *cursor = nullptr; for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = itemToOnlineSearch.constBegin(); it != itemToOnlineSearch.constEnd(); ++it) if (it.key()->checkState() == Qt::Checked) { checkedEngines << it.key()->text(); cursor = it.key(); } switch (checkedEngines.size()) { case 0: whichEnginesLabel->setText(i18n("No search engine selected (<a href=\"changeEngine\">change</a>).")); break; case 1: whichEnginesLabel->setText(i18n("Search engine <b>%1</b> is selected (<a href=\"changeEngine\">change</a>).", checkedEngines.first())); break; case 2: whichEnginesLabel->setText(i18n("Search engines <b>%1</b> and <b>%2</b> are selected (<a href=\"changeEngine\">change</a>).", checkedEngines.first(), checkedEngines.at(1))); break; case 3: whichEnginesLabel->setText(i18n("Search engines <b>%1</b>, <b>%2</b>, and <b>%3</b> are selected (<a href=\"changeEngine\">change</a>).", checkedEngines.first(), checkedEngines.at(1), checkedEngines.at(2))); break; default: whichEnginesLabel->setText(i18n("Search engines <b>%1</b>, <b>%2</b>, and more are selected (<a href=\"changeEngine\">change</a>).", checkedEngines.first(), checkedEngines.at(1))); break; } OnlineSearchQueryFormAbstract *currentQueryWidget = nullptr; if (cursor != nullptr && checkedEngines.size() == 1) currentQueryWidget = cursor->data(WidgetRole).value<OnlineSearchQueryFormAbstract *>(); if (currentQueryWidget == nullptr) currentQueryWidget = generalQueryTermsForm; QScrollArea *area = formToScrollArea.value(currentQueryWidget, nullptr); if (area != nullptr) queryTermsStack->setCurrentWidget(area); if (useEntryButton != nullptr) useEntryButton->setEnabled(!currentEntry.isNull() && tabWidget->currentIndex() == 0); } void openHomepage() { QListWidgetItem *item = enginesList->currentItem(); if (item != nullptr) { QUrl url = item->data(HomepageRole).toUrl(); /// Guess mime type for url to open QMimeType mimeType = FileInfo::mimeTypeForUrl(url); const QString mimeTypeName = mimeType.name(); /// Ask KDE subsystem to open url in viewer matching mime type #if KIO_VERSION < 0x051f00 // < 5.31.0 KRun::runUrl(url, mimeTypeName, p, false, false); #else // KIO_VERSION < 0x051f00 // >= 5.31.0 KRun::runUrl(url, mimeTypeName, p, KRun::RunFlags()); #endif // KIO_VERSION < 0x051f00 } } void enginesListCurrentChanged(QListWidgetItem *current) { actionOpenHomepage->setEnabled(current != nullptr); } }; SearchForm::SearchForm(SearchResults *searchResults, QWidget *parent) : QWidget(parent), d(new SearchFormPrivate(searchResults, this)) { d->loadEngines(); d->switchToSearch(); } SearchForm::~SearchForm() { delete d; } void SearchForm::updatedConfiguration() { d->loadEngines(); } void SearchForm::setElement(QSharedPointer<Element> element, const File *) { d->currentEntry = element.dynamicCast<const Entry>(); d->useEntryButton->setEnabled(!d->currentEntry.isNull() && d->tabWidget->currentIndex() == 0); } void SearchForm::switchToEngines() { d->switchToEngines(); } void SearchForm::startSearch() { OnlineSearchQueryFormAbstract *currentForm = d->currentQueryForm(); if (!currentForm->readyToStart()) { KMessageBox::sorry(this, i18n("Could not start searching the Internet:\nThe search terms are not complete or invalid."), i18n("Searching the Internet")); return; } d->runningSearches.clear(); d->sr->clear(); d->progressBar->setValue(0); d->progressMap.clear(); d->useEntryButton->hide(); d->progressBar->show(); if (currentForm == d->generalQueryTermsForm) { /// start search using the general-purpose form's values QMap<QString, QString> queryTerms = d->generalQueryTermsForm->getQueryTerms(); int numResults = d->generalQueryTermsForm->getNumResults(); for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = d->itemToOnlineSearch.constBegin(); it != d->itemToOnlineSearch.constEnd(); ++it) if (it.key()->checkState() == Qt::Checked) { it.value()->startSearch(queryTerms, numResults); d->runningSearches.insert(it.value()); } if (d->runningSearches.isEmpty()) { /// if no search engine has been checked (selected), something went wrong return; } } else { /// use the single selected search engine's specific form for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = d->itemToOnlineSearch.constBegin(); it != d->itemToOnlineSearch.constEnd(); ++it) if (it.key()->checkState() == Qt::Checked) { it.value()->startSearchFromForm(); d->runningSearches.insert(it.value()); } if (d->runningSearches.isEmpty()) { /// if no search engine has been checked (selected), something went wrong return; } } d->switchToCancel(); } void SearchForm::foundEntry(QSharedPointer<Entry> entry) { d->sr->insertElement(entry); } void SearchForm::stoppedSearch(int) { OnlineSearchAbstract *engine = static_cast<OnlineSearchAbstract *>(sender()); if (d->runningSearches.remove(engine)) { if (d->runningSearches.isEmpty()) { /// last search engine stopped d->switchToSearch(); emit doneSearching(); QTimer::singleShot(1000, d->progressBar, &QProgressBar::hide); QTimer::singleShot(1100, d->useEntryButton, &QPushButton::show); } else { QStringList remainingEngines; remainingEngines.reserve(d->runningSearches.size()); for (OnlineSearchAbstract *running : const_cast<const QSet<OnlineSearchAbstract *> &>(d->runningSearches)) { remainingEngines.append(running->label()); } if (!remainingEngines.isEmpty()) qCDebug(LOG_KBIBTEX_PROGRAM) << "Remaining running engines:" << remainingEngines.join(QStringLiteral(", ")); } } } void SearchForm::tabSwitched(int newTab) { Q_UNUSED(newTab); d->updateGUI(); } void SearchForm::itemCheckChanged(QListWidgetItem *item) { int numCheckedEngines = 0; for (QMap<QListWidgetItem *, OnlineSearchAbstract *>::ConstIterator it = d->itemToOnlineSearch.constBegin(); it != d->itemToOnlineSearch.constEnd(); ++it) if (it.key()->checkState() == Qt::Checked) ++numCheckedEngines; d->searchButton->setEnabled(numCheckedEngines > 0); if (item != nullptr) { KConfigGroup configGroup(d->config, d->configGroupName); QString name = item->data(SearchForm::SearchFormPrivate::NameRole).toString(); configGroup.writeEntry(name, item->checkState() == Qt::Checked); d->config->sync(); } } void SearchForm::openHomepage() { d->openHomepage(); } void SearchForm::enginesListCurrentChanged(QListWidgetItem *current, QListWidgetItem *) { d->enginesListCurrentChanged(current); } void SearchForm::copyFromEntry() { Q_ASSERT_X(!d->currentEntry.isNull(), "SearchForm::copyFromEntry", "d->currentEntry is NULL"); d->currentQueryForm()->copyFromEntry(*(d->currentEntry)); } void SearchForm::updateProgress(int cur, int total) { OnlineSearchAbstract *ws = static_cast<OnlineSearchAbstract *>(sender()); d->progressMap[ws] = total > 0 ? cur * 1000 / total : 0; int progress = 0, count = 0; for (QMap<OnlineSearchAbstract *, int>::ConstIterator it = d->progressMap.constBegin(); it != d->progressMap.constEnd(); ++it, ++count) progress += it.value(); d->progressBar->setValue(count >= 1 ? progress / count : 0); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/searchform.h�����������������������������������������������������0000664�0000000�0000000�00000006413�13313000262�0021512�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_SEARCHFORM_H #define KBIBTEX_PROGRAM_SEARCHFORM_H #include <QWidget> class QListWidgetItem; class Element; class File; class Entry; class MDIWidget; class SearchResults; /** * Widget for a dock widget where users can select search engines and * enter search queries (title, author, number of hits, ...) * * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class SearchForm : public QWidget { Q_OBJECT public: /** * Create a new search form, which has to know where to store results * and which (dock) widget is its parent. * @param searchResults SearchResults object where to send results to * @param parent parent widget for this widget */ SearchForm(SearchResults *searchResults, QWidget *parent); ~SearchForm() override; signals: /** * This signal gets emitted once the last of possibly several parallel * online searches is done. */ void doneSearching(); public slots: /** * Notify this widget about changes in the configuration settings, * e.g. to update its list of search engines. */ void updatedConfiguration(); /** * Notify this widget about a new current element selected in the * main list view. Allows the widget to put use in the "Use Entry" * button, i.e. copy title, author, etc from the entry to the search * form. * @param element BibTeX element, which will be cast to an Entry internally * @param file BibTeX file where entry belongs to */ void setElement(QSharedPointer<Element> element, const File *file); private: class SearchFormPrivate; SearchFormPrivate *d; private slots: void switchToEngines(); void startSearch(); void foundEntry(QSharedPointer<Entry> entry); void stoppedSearch(int resultCode); void tabSwitched(int newTab); void itemCheckChanged(QListWidgetItem *); void openHomepage(); void enginesListCurrentChanged(QListWidgetItem *, QListWidgetItem *); void copyFromEntry(); void updateProgress(int, int); }; #endif // KBIBTEX_PROGRAM_SEARCHFORM_H �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/searchresults.cpp������������������������������������������������0000664�0000000�0000000�00000021633�13313000262�0022604�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "searchresults.h" #include <QGridLayout> #include <QLabel> #include <QPushButton> #include <QAction> #include <KLocalizedString> #include <KIconLoader> #include "file.h" #include "clipboard.h" #include "fileview.h" #include "filedelegate.h" #include "models/filemodel.h" #include "idsuggestions.h" #include "logging_program.h" class SearchResults::SearchResultsPrivate { private: // UNUSED SearchResults *p; Clipboard *clipboard; public: MDIWidget *m; File *file; QWidget *widgetCannotImport; QLabel *labelCannotImportMsg; QPushButton *buttonImport; FileView *resultList, *mainEditor; QAction *actionViewCurrent, *actionImportSelected, *actionCopySelected; SearchResultsPrivate(MDIWidget *mdiWidget, SearchResults *parent) : /* UNUSED p(parent),*/ m(mdiWidget), file(new File()), mainEditor(nullptr) { QGridLayout *layout = new QGridLayout(parent); layout->setMargin(0); layout->setColumnStretch(0, 1); layout->setColumnStretch(1, 0); resultList = new FileView(QStringLiteral("SearchResults"), parent); resultList->setItemDelegate(new FileDelegate(resultList)); resultList->setReadOnly(true); resultList->setFrameShadow(QFrame::Sunken); resultList->setFrameShape(QFrame::StyledPanel); resultList->setContextMenuPolicy(Qt::ActionsContextMenu); layout->addWidget(resultList, 0, 0, 1, 2); clipboard = new Clipboard(resultList); /// Create a special widget that shows a small icon and a text /// stating that there are no search results. It will only be /// shown until the first search results arrive. // TODO nearly identical code as in ElementFormPrivate constructor, create common class widgetCannotImport = new QWidget(parent); layout->addWidget(widgetCannotImport, 1, 0, 1, 1); QBoxLayout *layoutCannotImport = new QHBoxLayout(widgetCannotImport); layoutCannotImport->addStretch(10); QLabel *label = new QLabel(widgetCannotImport); label->setAlignment(Qt::AlignCenter | Qt::AlignVCenter); label->setPixmap(KIconLoader::global()->loadIcon(QStringLiteral("dialog-warning"), KIconLoader::Dialog, KIconLoader::SizeSmall)); layoutCannotImport->addWidget(label); labelCannotImportMsg = new QLabel(widgetCannotImport); labelCannotImportMsg->setAlignment(Qt::AlignRight | Qt::AlignVCenter); layoutCannotImport->addWidget(labelCannotImportMsg); /// see also updateCannotImportMessage() buttonImport = new QPushButton(QIcon::fromTheme(QStringLiteral("svn-update")), i18n("Import"), parent); layout->addWidget(buttonImport, 1, 1, 1, 1); buttonImport->setEnabled(false); SortFilterFileModel *model = new SortFilterFileModel(parent); FileModel *fileModel = new FileModel(parent); fileModel->setBibliographyFile(file); model->setSourceModel(fileModel); resultList->setModel(model); actionViewCurrent = new QAction(QIcon::fromTheme(QStringLiteral("document-preview")), i18n("View Element"), parent); resultList->addAction(actionViewCurrent); actionViewCurrent->setEnabled(false); connect(actionViewCurrent, &QAction::triggered, resultList, &FileView::viewCurrentElement); actionImportSelected = new QAction(QIcon::fromTheme(QStringLiteral("svn-update")), i18n("Import"), parent); resultList->addAction(actionImportSelected); actionImportSelected->setEnabled(false); connect(actionImportSelected, &QAction::triggered, parent, &SearchResults::importSelected); actionCopySelected = new QAction(QIcon::fromTheme(QStringLiteral("edit-copy")), i18n("Copy"), parent); resultList->addAction(actionCopySelected); actionCopySelected->setEnabled(false); connect(actionCopySelected, &QAction::triggered, clipboard, &Clipboard::copy); connect(resultList, &FileView::doubleClicked, resultList, &FileView::viewCurrentElement); connect(resultList, &FileView::selectedElementsChanged, parent, &SearchResults::updateGUI); connect(buttonImport, &QPushButton::clicked, parent, &SearchResults::importSelected); updateCannotImportMessage(); } ~SearchResultsPrivate() { delete file; } void clear() { resultList->fileModel()->clear(); } bool insertElement(QSharedPointer<Element> element) { static IdSuggestions idSuggestions; FileModel *model = resultList->fileModel(); /// If the user had configured a default formatting string /// for entry ids, apply this formatting strings here QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) idSuggestions.applyDefaultFormatId(*entry.data()); bool result = model->insertRow(element, model->rowCount()); if (result) resultList->sortFilterProxyModel()->invalidate(); return result; } void updateCannotImportMessage() { const bool isEmpty = resultList->model()->rowCount() == 0; if (mainEditor == nullptr && isEmpty) labelCannotImportMsg->setText(i18n("No results to import and no bibliography open to import to.")); else if (mainEditor == nullptr) labelCannotImportMsg->setText(i18n("No bibliography open to import to.")); else if (isEmpty) labelCannotImportMsg->setText(i18n("No results to import.")); widgetCannotImport->setVisible(mainEditor == nullptr || isEmpty); } }; SearchResults::SearchResults(MDIWidget *mdiWidget, QWidget *parent) : QWidget(parent), d(new SearchResultsPrivate(mdiWidget, this)) { // nothing } SearchResults::~SearchResults() { delete d; } void SearchResults::clear() { d->clear(); } bool SearchResults::insertElement(QSharedPointer<Element> element) { const bool success = d->insertElement(element); if (success) d->updateCannotImportMessage(); return success; } void SearchResults::documentSwitched(FileView *oldEditor, FileView *newEditor) { Q_UNUSED(oldEditor); d->mainEditor = newEditor; updateGUI(); } void SearchResults::updateGUI() { d->updateCannotImportMessage(); d->buttonImport->setEnabled(d->mainEditor != nullptr && !d->resultList->selectedElements().isEmpty()); d->actionImportSelected->setEnabled(d->buttonImport->isEnabled()); d->actionCopySelected->setEnabled(!d->resultList->selectedElements().isEmpty()); d->actionViewCurrent->setEnabled(d->resultList->currentElement() != nullptr); } void SearchResults::importSelected() { Q_ASSERT_X(d->mainEditor != nullptr, "SearchResults::importSelected", "d->mainEditor is NULL"); FileModel *targetModel = d->mainEditor->fileModel(); FileModel *sourceModel = d->resultList->fileModel(); const QModelIndexList selList = d->resultList->selectionModel()->selectedRows(); for (const QModelIndex &modelIndex : selList) { /// Map from visible row to 'real' row /// that may be hidden through sorting int row = d->resultList->sortFilterProxyModel()->mapToSource(modelIndex).row(); /// Should only be an Entry, /// everthing else is unexpected QSharedPointer<Entry> entry = sourceModel->element(row).dynamicCast<Entry>(); if (!entry.isNull()) { /// Important: make clone of entry before inserting /// in main list, otherwise data would be shared QSharedPointer<Entry> clone(new Entry(*entry)); targetModel->insertRow(clone, targetModel->rowCount()); } else qCWarning(LOG_KBIBTEX_PROGRAM) << "Trying to import something that isn't an Entry"; } if (!selList.isEmpty()) d->mainEditor->externalModification(); } �����������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/searchresults.h��������������������������������������������������0000664�0000000�0000000�00000003503�13313000262�0022245�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_SEARCHRESULTS_H #define KBIBTEX_PROGRAM_SEARCHRESULTS_H #include <QWidget> class MDIWidget; class Element; class FileView; class SearchResults : public QWidget { Q_OBJECT public: SearchResults(MDIWidget *mdiWidget, QWidget *parent); ~SearchResults() override; void clear(); bool insertElement(QSharedPointer<Element> element); public slots: void documentSwitched(FileView *, FileView *); private: class SearchResultsPrivate; SearchResultsPrivate *d; private slots: void updateGUI(); void importSelected(); }; #endif // KBIBTEX_PROGRAM_SEARCHRESULTS_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/statistics.cpp���������������������������������������������������0000664�0000000�0000000�00000017611�13313000262�0022110�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "statistics.h" #include <QFormLayout> #include <QLabel> #include <QFont> #include <QItemSelectionModel> #include <KLocalizedString> #include "file.h" #include "fileview.h" #include "entry.h" #include "macro.h" #include "comment.h" #include "openfileinfo.h" class Statistics::StatisticsPrivate { private: // UNUSED Statistics *p; QLabel *labelNumberOfElements, *labelNumberOfEntries, *labelNumberOfJournalArticles, *labelNumberOfConferencePublications, *labelNumberOfBooks, *labelNumberOfOtherEntries, *labelNumberOfComments, *labelNumberOfMacros; public: FileView *fileView; const File *file; const QItemSelectionModel *selectionModel; StatisticsPrivate(Statistics *parent) : /* UNUSED p(parent),*/ fileView(nullptr), file(nullptr), selectionModel(nullptr) { QFormLayout *layout = new QFormLayout(parent); labelNumberOfElements = new QLabel(parent); setBold(labelNumberOfElements); layout->addRow(i18n("Number of Elements:"), labelNumberOfElements); labelNumberOfEntries = new QLabel(parent); setBold(labelNumberOfEntries); layout->addRow(i18n("Number of Entries:"), labelNumberOfEntries); labelNumberOfJournalArticles = new QLabel(parent); layout->addRow(i18n("Journal Articles:"), labelNumberOfJournalArticles); labelNumberOfConferencePublications = new QLabel(parent); layout->addRow(i18n("Conference Publications:"), labelNumberOfConferencePublications); labelNumberOfBooks = new QLabel(parent); layout->addRow(i18n("Books:"), labelNumberOfBooks); labelNumberOfOtherEntries = new QLabel(parent); layout->addRow(i18n("Other Entries:"), labelNumberOfOtherEntries); labelNumberOfComments = new QLabel(parent); setBold(labelNumberOfComments); layout->addRow(i18n("Number of Comments:"), labelNumberOfComments); labelNumberOfMacros = new QLabel(parent); setBold(labelNumberOfMacros); layout->addRow(i18n("Number of Macros:"), labelNumberOfMacros); } void setBold(QLabel *label) { QFont font = label->font(); font.setBold(true); label->setFont(font); } void update() { file = fileView != nullptr && fileView->fileModel() != nullptr ? fileView->fileModel()->bibliographyFile() : nullptr; selectionModel = fileView != nullptr ? fileView->selectionModel() : nullptr; if (file != nullptr) { int numElements, numEntries, numJournalArticles, numConferencePublications, numBooks, numComments, numMacros; countElementTypes(numElements, numEntries, numJournalArticles, numConferencePublications, numBooks, numComments, numMacros); labelNumberOfElements->setText(QString::number(numElements)); labelNumberOfEntries->setText(QString::number(numEntries)); labelNumberOfJournalArticles->setText(QString::number(numJournalArticles)); labelNumberOfConferencePublications->setText(QString::number(numConferencePublications)); labelNumberOfBooks->setText(QString::number(numBooks)); labelNumberOfOtherEntries->setText(QString::number(numEntries - numJournalArticles - numConferencePublications - numBooks)); labelNumberOfComments->setText(QString::number(numComments)); labelNumberOfMacros->setText(QString::number(numMacros)); } else { labelNumberOfElements->setText(QChar(0x2013)); labelNumberOfEntries->setText(QChar(0x2013)); labelNumberOfJournalArticles->setText(QChar(0x2013)); labelNumberOfConferencePublications->setText(QChar(0x2013)); labelNumberOfBooks->setText(QChar(0x2013)); labelNumberOfOtherEntries->setText(QChar(0x2013)); labelNumberOfComments->setText(QChar(0x2013)); labelNumberOfMacros->setText(QChar(0x2013)); } } void countElement(const QSharedPointer<const Element> &element, int &numEntries, int &numJournalArticles, int &numConferencePublications, int &numBooks, int &numComments, int &numMacros) { const QSharedPointer<const Entry> entry = element.dynamicCast<const Entry>(); if (!entry.isNull()) { if (entry->type().toLower() == Entry::etArticle) ++numJournalArticles; else if (entry->type().toLower() == Entry::etInProceedings) ++numConferencePublications; else if (entry->type().toLower() == Entry::etBook) ++numBooks; ++numEntries; } else if (!element.dynamicCast<const Macro>().isNull()) ++numMacros; else if (!element.dynamicCast<const Comment>().isNull()) ++numComments; } void countElementTypes(int &numElements, int &numEntries, int &numJournalArticles, int &numConferencePublications, int &numBooks, int &numComments, int &numMacros) { numElements = numEntries = numJournalArticles = numConferencePublications = numBooks = numComments = numMacros = 0; Q_ASSERT_X(file != nullptr, "Statistics::StatisticsPrivate::countElementTypes(..)", "Function was called with file==NULL"); if (selectionModel != nullptr && selectionModel->selectedRows().count() > 1) { /// Use selected items for statistics if selection contains at least two elements const auto selectedRows = selectionModel->selectedRows(); numElements = selectedRows.count(); for (const QModelIndex &index : selectedRows) { const int row = index.row(); if (row >= 0 && row < file->count()) countElement(file->at(row), numEntries, numJournalArticles, numConferencePublications, numBooks, numComments, numMacros); } } else { /// Default/fall-back: use whole file for statistics numElements = file->count(); for (const auto &element : const_cast<const File &>(*file)) countElement(element, numEntries, numJournalArticles, numConferencePublications, numBooks, numComments, numMacros); } } }; Statistics::Statistics(QWidget *parent) : QWidget(parent), d(new StatisticsPrivate(this)) { d->update(); connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::currentChanged, this, &Statistics::update); } Statistics::~Statistics() { delete d; } void Statistics::setFileView(FileView *fileView) { if (d->fileView != nullptr) disconnect(d->fileView, &FileView::selectedElementsChanged, this, &Statistics::update); d->fileView = fileView; if (d->fileView != nullptr) connect(d->fileView, &FileView::selectedElementsChanged, this, &Statistics::update); d->update(); } void Statistics::update() { d->update(); } �����������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/statistics.h�����������������������������������������������������0000664�0000000�0000000�00000003217�13313000262�0021552�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_STATISTICS_H #define KBIBTEX_PROGRAM_STATISTICS_H #include <QWidget> class QItemSelectionModel; class FileView; class Statistics : public QWidget { Q_OBJECT public: explicit Statistics(QWidget *parent); ~Statistics() override; void setFileView(FileView *); public slots: void update(); private: class StatisticsPrivate; StatisticsPrivate *d; }; #endif // KBIBTEX_PROGRAM_STATISTICS_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/valuelist.cpp����������������������������������������������������0000664�0000000�0000000�00000053146�13313000262�0021731�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "valuelist.h" #include <typeinfo> #include <QTreeView> #include <QHeaderView> #include <QGridLayout> #include <QStringListModel> #include <QScrollBar> #include <QTimer> #include <QSortFilterProxyModel> #include <QAction> #include <KLineEdit> #include <KComboBox> #include <KConfigGroup> #include <KLocalizedString> #include <KToggleAction> #include <KSharedConfig> #include "bibtexfields.h" #include "entry.h" #include "fileview.h" #include "valuelistmodel.h" #include "models/filemodel.h" class ValueList::ValueListPrivate { private: ValueList *p; ValueListDelegate *delegate; public: KSharedConfigPtr config; const QString configGroupName; const QString configKeyFieldName, configKeyShowCountColumn, configKeySortByCountAction, configKeyHeaderState; FileView *fileView; QTreeView *treeviewFieldValues; ValueListModel *model; QSortFilterProxyModel *sortingModel; KComboBox *comboboxFieldNames; KLineEdit *lineeditFilter; const int countWidth; QAction *assignSelectionAction; QAction *removeSelectionAction; KToggleAction *showCountColumnAction; KToggleAction *sortByCountAction; ValueListPrivate(ValueList *parent) : p(parent), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))), configGroupName(QStringLiteral("Value List Docklet")), configKeyFieldName(QStringLiteral("FieldName")), configKeyShowCountColumn(QStringLiteral("ShowCountColumn")), configKeySortByCountAction(QStringLiteral("SortByCountAction")), configKeyHeaderState(QStringLiteral("HeaderState")), fileView(nullptr), model(nullptr), sortingModel(nullptr), countWidth(8 + parent->fontMetrics().width(i18n("Count"))) { setupGUI(); initialize(); } ~ValueListPrivate() { delete comboboxFieldNames; // TODO more deletes } void setupGUI() { QBoxLayout *layout = new QVBoxLayout(p); layout->setMargin(0); comboboxFieldNames = new KComboBox(true, p); layout->addWidget(comboboxFieldNames); lineeditFilter = new KLineEdit(p); layout->addWidget(lineeditFilter); lineeditFilter->setClearButtonShown(true); lineeditFilter->setPlaceholderText(i18n("Filter value list")); treeviewFieldValues = new QTreeView(p); layout->addWidget(treeviewFieldValues); treeviewFieldValues->setEditTriggers(QAbstractItemView::EditKeyPressed); treeviewFieldValues->setSortingEnabled(true); treeviewFieldValues->sortByColumn(0, Qt::AscendingOrder); delegate = new ValueListDelegate(treeviewFieldValues); treeviewFieldValues->setItemDelegate(delegate); treeviewFieldValues->setRootIsDecorated(false); treeviewFieldValues->setSelectionMode(QTreeView::ExtendedSelection); treeviewFieldValues->setAlternatingRowColors(true); treeviewFieldValues->header()->setSectionResizeMode(QHeaderView::Fixed); treeviewFieldValues->setContextMenuPolicy(Qt::ActionsContextMenu); /// create context menu item to start renaming QAction *action = new QAction(QIcon::fromTheme(QStringLiteral("edit-rename")), i18n("Replace all occurrences"), p); connect(action, &QAction::triggered, p, &ValueList::startItemRenaming); treeviewFieldValues->addAction(action); /// create context menu item to delete value action = new QAction(QIcon::fromTheme(QStringLiteral("edit-table-delete-row")), i18n("Delete all occurrences"), p); connect(action, &QAction::triggered, p, &ValueList::deleteAllOccurrences); treeviewFieldValues->addAction(action); /// create context menu item to search for multiple selections action = new QAction(QIcon::fromTheme(QStringLiteral("edit-find")), i18n("Search for selected values"), p); connect(action, &QAction::triggered, p, &ValueList::searchSelection); treeviewFieldValues->addAction(action); /// create context menu item to assign value to selected bibliography elements assignSelectionAction = new QAction(QIcon::fromTheme(QStringLiteral("emblem-new")), i18n("Add value to selected entries"), p); connect(assignSelectionAction, &QAction::triggered, p, &ValueList::assignSelection); treeviewFieldValues->addAction(assignSelectionAction); /// create context menu item to remove value from selected bibliography elements removeSelectionAction = new QAction(QIcon::fromTheme(QStringLiteral("list-remove")), i18n("Remove value from selected entries"), p); connect(removeSelectionAction, &QAction::triggered, p, &ValueList::removeSelection); treeviewFieldValues->addAction(removeSelectionAction); p->setEnabled(false); connect(comboboxFieldNames, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated), p, &ValueList::fieldNamesChanged); connect(comboboxFieldNames, static_cast<void(QComboBox::*)(int)>(&QComboBox::activated), lineeditFilter, &KLineEdit::clear); connect(treeviewFieldValues, &QTreeView::activated, p, &ValueList::listItemActivated); connect(delegate, &ValueListDelegate::closeEditor, treeviewFieldValues, &QTreeView::reset); /// add context menu to header treeviewFieldValues->header()->setContextMenuPolicy(Qt::ActionsContextMenu); showCountColumnAction = new KToggleAction(i18n("Show Count Column"), treeviewFieldValues); connect(showCountColumnAction, &QAction::triggered, p, &ValueList::showCountColumnToggled); treeviewFieldValues->header()->addAction(showCountColumnAction); sortByCountAction = new KToggleAction(i18n("Sort by Count"), treeviewFieldValues); connect(sortByCountAction, &QAction::triggered, p, &ValueList::sortByCountToggled); treeviewFieldValues->header()->addAction(sortByCountAction); } void setComboboxFieldNamesCurrentItem(const QString &text) { int index = comboboxFieldNames->findData(text, Qt::UserRole, Qt::MatchExactly); if (index < 0) index = comboboxFieldNames->findData(text, Qt::UserRole, Qt::MatchStartsWith); if (index < 0) index = comboboxFieldNames->findData(text, Qt::UserRole, Qt::MatchContains); if (index >= 0) comboboxFieldNames->setCurrentIndex(index); } void initialize() { const BibTeXFields *bibtexFields = BibTeXFields::self(); lineeditFilter->clear(); comboboxFieldNames->clear(); for (const auto &fd : const_cast<const BibTeXFields &>(*bibtexFields)) { if (!fd.upperCamelCaseAlt.isEmpty()) continue; /// keep only "single" fields and not combined ones like "Author or Editor" if (fd.upperCamelCase.startsWith('^')) continue; /// skip "type" and "id" comboboxFieldNames->addItem(fd.label, fd.upperCamelCase); } /// Sort the combo box locale-aware. Thus we need a SortFilterProxyModel QSortFilterProxyModel *proxy = new QSortFilterProxyModel(comboboxFieldNames); proxy->setSortLocaleAware(true); proxy->setSourceModel(comboboxFieldNames->model()); comboboxFieldNames->model()->setParent(proxy); comboboxFieldNames->setModel(proxy); comboboxFieldNames->model()->sort(0); KConfigGroup configGroup(config, configGroupName); QString fieldName = configGroup.readEntry(configKeyFieldName, QString(Entry::ftAuthor)); setComboboxFieldNamesCurrentItem(fieldName); if (allowsMultipleValues(fieldName)) assignSelectionAction->setText(i18n("Add value to selected entries")); else assignSelectionAction->setText(i18n("Replace value of selected entries")); showCountColumnAction->setChecked(configGroup.readEntry(configKeyShowCountColumn, true)); sortByCountAction->setChecked(configGroup.readEntry(configKeySortByCountAction, false)); sortByCountAction->setEnabled(!showCountColumnAction->isChecked()); QByteArray headerState = configGroup.readEntry(configKeyHeaderState, QByteArray()); treeviewFieldValues->header()->restoreState(headerState); connect(treeviewFieldValues->header(), &QHeaderView::sortIndicatorChanged, p, &ValueList::columnsChanged); } void update() { QString text = comboboxFieldNames->itemData(comboboxFieldNames->currentIndex()).toString(); if (text.isEmpty()) text = comboboxFieldNames->currentText(); delegate->setFieldName(text); model = fileView == nullptr ? nullptr : fileView->valueListModel(text); QAbstractItemModel *usedModel = model; if (usedModel != nullptr) { model->setShowCountColumn(showCountColumnAction->isChecked()); model->setSortBy(sortByCountAction->isChecked() ? ValueListModel::SortByCount : ValueListModel::SortByText); if (sortingModel != nullptr) delete sortingModel; sortingModel = new QSortFilterProxyModel(p); sortingModel->setSourceModel(model); if (treeviewFieldValues->header()->isSortIndicatorShown()) sortingModel->sort(treeviewFieldValues->header()->sortIndicatorSection(), treeviewFieldValues->header()->sortIndicatorOrder()); else sortingModel->sort(1, Qt::DescendingOrder); sortingModel->setSortRole(ValueListModel::SortRole); sortingModel->setFilterKeyColumn(0); sortingModel->setFilterCaseSensitivity(Qt::CaseInsensitive); sortingModel->setFilterRole(ValueListModel::SearchTextRole); connect(lineeditFilter, &KLineEdit::textEdited, sortingModel, &QSortFilterProxyModel::setFilterFixedString); sortingModel->setSortLocaleAware(true); usedModel = sortingModel; } treeviewFieldValues->setModel(usedModel); KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(configKeyFieldName, text); config->sync(); } bool allowsMultipleValues(const QString &field) const { return (field.compare(Entry::ftAuthor, Qt::CaseInsensitive) == 0 || field.compare(Entry::ftEditor, Qt::CaseInsensitive) == 0 || field.compare(Entry::ftUrl, Qt::CaseInsensitive) == 0 || field.compare(Entry::ftLocalFile, Qt::CaseInsensitive) == 0 || field.compare(Entry::ftDOI, Qt::CaseInsensitive) == 0 || field.compare(Entry::ftKeywords, Qt::CaseInsensitive) == 0); } }; ValueList::ValueList(QWidget *parent) : QWidget(parent), d(new ValueListPrivate(this)) { QTimer::singleShot(500, this, &ValueList::delayedResize); } ValueList::~ValueList() { delete d; } void ValueList::setFileView(FileView *fileView) { if (d->fileView != nullptr) disconnect(d->fileView, &FileView::selectedElementsChanged, this, &ValueList::editorSelectionChanged); d->fileView = fileView; if (d->fileView != nullptr) { connect(d->fileView, &FileView::selectedElementsChanged, this, &ValueList::editorSelectionChanged); connect(d->fileView, &FileView::destroyed, this, &ValueList::editorDestroyed); } editorSelectionChanged(); update(); resizeEvent(nullptr); } void ValueList::update() { d->update(); setEnabled(d->fileView != nullptr); } void ValueList::resizeEvent(QResizeEvent *) { int widgetWidth = d->treeviewFieldValues->size().width() - d->treeviewFieldValues->verticalScrollBar()->size().width() - 8; d->treeviewFieldValues->setColumnWidth(0, widgetWidth - d->countWidth); d->treeviewFieldValues->setColumnWidth(1, d->countWidth); } void ValueList::listItemActivated(const QModelIndex &index) { setEnabled(false); QString itemText = d->sortingModel->mapToSource(index).data(ValueListModel::SearchTextRole).toString(); QVariant fieldVar = d->comboboxFieldNames->itemData(d->comboboxFieldNames->currentIndex()); QString fieldText = fieldVar.toString(); if (fieldText.isEmpty()) fieldText = d->comboboxFieldNames->currentText(); SortFilterFileModel::FilterQuery fq; fq.terms << itemText; fq.combination = SortFilterFileModel::EveryTerm; fq.field = fieldText; fq.searchPDFfiles = false; d->fileView->setFilterBarFilter(fq); setEnabled(true); } void ValueList::searchSelection() { QVariant fieldVar = d->comboboxFieldNames->itemData(d->comboboxFieldNames->currentIndex()); QString fieldText = fieldVar.toString(); if (fieldText.isEmpty()) fieldText = d->comboboxFieldNames->currentText(); SortFilterFileModel::FilterQuery fq; fq.combination = SortFilterFileModel::EveryTerm; fq.field = fieldText; const auto selectedIndexes = d->treeviewFieldValues->selectionModel()->selectedIndexes(); for (const QModelIndex &index : selectedIndexes) { if (index.column() == 0) { QString itemText = index.data(ValueListModel::SearchTextRole).toString(); fq.terms << itemText; } } fq.searchPDFfiles = false; if (!fq.terms.isEmpty()) d->fileView->setFilterBarFilter(fq); } void ValueList::assignSelection() { QString field = d->comboboxFieldNames->itemData(d->comboboxFieldNames->currentIndex()).toString(); if (field.isEmpty()) field = d->comboboxFieldNames->currentText(); if (field.isEmpty()) return; ///< empty field is invalid; quit const Value toBeAssignedValue = d->sortingModel->mapToSource(d->treeviewFieldValues->currentIndex()).data(Qt::EditRole).value<Value>(); if (toBeAssignedValue.isEmpty()) return; ///< empty value is invalid; quit const QString toBeAssignedValueText = PlainTextValue::text(toBeAssignedValue); /// Keep track if any modifications were made to the bibliography file bool madeModification = false; /// Go through all selected elements in current editor const QList<QSharedPointer<Element> > &selection = d->fileView->selectedElements(); for (const auto &element : selection) { /// Only entries (not macros or comments) are of interest QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) { /// Fields are separated into two categories: /// 1. Where more values can be appended, like authors or URLs /// 2. Where values should be replaced, like title, year, or journal if (d->allowsMultipleValues(field)) { /// Fields for which multiple values are valid bool valueItemAlreadyContained = false; ///< add only if to-be-assigned value is not yet contained Value entrysValueForField = entry->value(field); for (const auto &containedValueItem : const_cast<const Value &>(entrysValueForField)) { valueItemAlreadyContained |= PlainTextValue::text(containedValueItem) == toBeAssignedValueText; if (valueItemAlreadyContained) break; } if (!valueItemAlreadyContained) { /// Add each ValueItem from the to-be-assigned value to the entry's value for this field entrysValueForField.reserve(toBeAssignedValue.size()); for (const auto &newValueItem : toBeAssignedValue) { entrysValueForField.append(newValueItem); } /// "Write back" value to field in entry entry->remove(field); entry->insert(field, entrysValueForField); /// Keep track that bibliography file has been modified madeModification = true; } } else { /// Fields for which only value is valid, thus the old value will be replaced entry->remove(field); entry->insert(field, toBeAssignedValue); /// Keep track that bibliography file has been modified madeModification = true; } } } if (madeModification) { /// Notify main editor about change it its data d->fileView->externalModification(); } } void ValueList::removeSelection() { QString field = d->comboboxFieldNames->itemData(d->comboboxFieldNames->currentIndex()).toString(); if (field.isEmpty()) field = d->comboboxFieldNames->currentText(); if (field.isEmpty()) return; ///< empty field is invalid; quit const Value toBeRemovedValue = d->sortingModel->mapToSource(d->treeviewFieldValues->currentIndex()).data(Qt::EditRole).value<Value>(); if (toBeRemovedValue.isEmpty()) return; ///< empty value is invalid; quit const QString toBeRemovedValueText = PlainTextValue::text(toBeRemovedValue); /// Keep track if any modifications were made to the bibliography file bool madeModification = false; /// Go through all selected elements in current editor const QList<QSharedPointer<Element> > &selection = d->fileView->selectedElements(); for (const auto &element : selection) { /// Only entries (not macros or comments) are of interest QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) { Value entrysValueForField = entry->value(field); bool valueModified = false; for (int i = 0; i < entrysValueForField.count(); ++i) { const QString valueItemText = PlainTextValue::text(entrysValueForField[i]); if (valueItemText == toBeRemovedValueText) { valueModified = true; entrysValueForField.remove(i); break; } } if (valueModified) { entry->remove(field); entry->insert(field, entrysValueForField); madeModification = true; } } } if (madeModification) { update(); /// Notify main editor about change it its data d->fileView->externalModification(); } } void ValueList::startItemRenaming() { /// Get current index from sorted model QModelIndex sortedIndex = d->treeviewFieldValues->currentIndex(); /// Make the tree view start and editing delegate on the index d->treeviewFieldValues->edit(sortedIndex); } void ValueList::deleteAllOccurrences() { /// Get current index from sorted model QModelIndex sortedIndex = d->treeviewFieldValues->currentIndex(); /// Get "real" index from original model, but resort to sibling in first column QModelIndex realIndex = d->sortingModel->mapToSource(sortedIndex); realIndex = realIndex.sibling(realIndex.row(), 0); /// Remove current index from data model d->model->removeValue(realIndex); /// Notify main editor about change it its data d->fileView->externalModification(); } void ValueList::showCountColumnToggled() { if (d->model != nullptr) d->model->setShowCountColumn(d->showCountColumnAction->isChecked()); if (d->showCountColumnAction->isChecked()) resizeEvent(nullptr); d->sortByCountAction->setEnabled(!d->showCountColumnAction->isChecked()); KConfigGroup configGroup(d->config, d->configGroupName); configGroup.writeEntry(d->configKeyShowCountColumn, d->showCountColumnAction->isChecked()); d->config->sync(); } void ValueList::sortByCountToggled() { if (d->model != nullptr) d->model->setSortBy(d->sortByCountAction->isChecked() ? ValueListModel::SortByCount : ValueListModel::SortByText); KConfigGroup configGroup(d->config, d->configGroupName); configGroup.writeEntry(d->configKeySortByCountAction, d->sortByCountAction->isChecked()); d->config->sync(); } void ValueList::delayedResize() { resizeEvent(nullptr); } void ValueList::columnsChanged() { QByteArray headerState = d->treeviewFieldValues->header()->saveState(); KConfigGroup configGroup(d->config, d->configGroupName); configGroup.writeEntry(d->configKeyHeaderState, headerState); d->config->sync(); resizeEvent(nullptr); } void ValueList::editorSelectionChanged() { const bool selectedElements = d->fileView == nullptr ? false : d->fileView->selectedElements().count() > 0; d->assignSelectionAction->setEnabled(selectedElements); d->removeSelectionAction->setEnabled(selectedElements); } void ValueList::editorDestroyed() { /// Reset internal variable to NULL to avoid /// accessing invalid pointer/data later d->fileView = nullptr; editorSelectionChanged(); } void ValueList::fieldNamesChanged(int i) { const QString field = d->comboboxFieldNames->itemData(i).toString(); if (d->allowsMultipleValues(field)) d->assignSelectionAction->setText(i18n("Add value to selected entries")); else d->assignSelectionAction->setText(i18n("Replace value of selected entries")); update(); } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/valuelist.h������������������������������������������������������0000664�0000000�0000000�00000004222�13313000262�0021365�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_VALUELIST_H #define KBIBTEX_PROGRAM_VALUELIST_H #include <QWidget> #include <QModelIndex> class Element; class File; class FileView; class ValueList : public QWidget { Q_OBJECT public: explicit ValueList(QWidget *parent); ~ValueList() override; void setFileView(FileView *fileView); public slots: void update(); protected slots: void resizeEvent(QResizeEvent *e) override; private slots: void listItemActivated(const QModelIndex &); void searchSelection(); void assignSelection(); void removeSelection(); void startItemRenaming(); void deleteAllOccurrences(); void showCountColumnToggled(); void sortByCountToggled(); void delayedResize(); void columnsChanged(); void editorSelectionChanged(); void editorDestroyed(); void fieldNamesChanged(int); private: class ValueListPrivate; ValueListPrivate *d; }; #endif // KBIBTEX_PROGRAM_VALUELIST_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/zoterobrowser.cpp������������������������������������������������0000664�0000000�0000000�00000045306�13313000262�0022646�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "zoterobrowser.h" #include <QTreeView> #include <QTabWidget> #include <QListView> #include <QLayout> #include <QFormLayout> #include <QAbstractItemModel> #include <QRadioButton> #include <QPushButton> #include <QDebug> #include <KLineEdit> #include <KLocalizedString> #include <KComboBox> #include <KConfigGroup> #include <KSharedConfig> #include <KWallet/KWallet> #include <KMessageBox> #include "element.h" #include "searchresults.h" #include "zotero/collectionmodel.h" #include "zotero/collection.h" #include "zotero/items.h" #include "zotero/groups.h" #include "zotero/tags.h" #include "zotero/tagmodel.h" #include "zotero/api.h" #include "zotero/oauthwizard.h" using KWallet::Wallet; class ZoteroBrowser::Private { private: ZoteroBrowser *p; public: Zotero::Items *items; Zotero::Groups *groups; Zotero::Tags *tags; Zotero::TagModel *tagModel; Zotero::Collection *collection; Zotero::CollectionModel *collectionModel; QSharedPointer<Zotero::API> api; bool needToApplyCredentials; SearchResults *searchResults; QTabWidget *tabWidget; QTreeView *collectionBrowser; QListView *tagBrowser; KLineEdit *lineEditNumericUserId; KLineEdit *lineEditApiKey; QRadioButton *radioPersonalLibrary; QRadioButton *radioGroupLibrary; bool comboBoxGroupListInitialized; KComboBox *comboBoxGroupList; QCursor nonBusyCursor; Wallet *wallet; static const QString walletFolderOAuth, walletEntryKBibTeXZotero, walletKeyZoteroId, walletKeyZoteroApiKey; Private(SearchResults *sr, ZoteroBrowser *parent) : p(parent), items(nullptr), groups(nullptr), tags(nullptr), tagModel(nullptr), collection(nullptr), collectionModel(nullptr), needToApplyCredentials(true), searchResults(sr), comboBoxGroupListInitialized(false), nonBusyCursor(p->cursor()), wallet(nullptr) { setupGUI(); } ~Private() { if (wallet != nullptr) delete wallet; if (items != nullptr) delete items; if (groups != nullptr) delete groups; if (tags != nullptr) delete tags; if (tagModel != nullptr) delete tagModel; if (collection != nullptr) delete collection; if (collectionModel != nullptr) delete collectionModel; api.clear(); } void setupGUI() { QBoxLayout *layout = new QVBoxLayout(p); tabWidget = new QTabWidget(p); layout->addWidget(tabWidget); QWidget *container = new QWidget(tabWidget); tabWidget->addTab(container, QIcon::fromTheme(QStringLiteral("preferences-web-browser-identification")), i18n("Library")); connect(tabWidget, &QTabWidget::currentChanged, p, &ZoteroBrowser::tabChanged); QBoxLayout *containerLayout = new QVBoxLayout(container); /// Personal or Group Library QGridLayout *gridLayout = new QGridLayout(); containerLayout->addLayout(gridLayout); gridLayout->setMargin(0); gridLayout->setColumnMinimumWidth(0, 16); // TODO determine size of a radio button radioPersonalLibrary = new QRadioButton(i18n("Personal library"), container); gridLayout->addWidget(radioPersonalLibrary, 0, 0, 1, 2); radioGroupLibrary = new QRadioButton(i18n("Group library"), container); gridLayout->addWidget(radioGroupLibrary, 1, 0, 1, 2); comboBoxGroupList = new KComboBox(false, container); gridLayout->addWidget(comboBoxGroupList, 2, 1, 1, 1); QSizePolicy sizePolicy = comboBoxGroupList->sizePolicy(); sizePolicy.setHorizontalPolicy(QSizePolicy::MinimumExpanding); comboBoxGroupList->setSizePolicy(sizePolicy); radioPersonalLibrary->setChecked(true); comboBoxGroupList->setEnabled(false); comboBoxGroupList->addItem(i18n("No groups available")); connect(radioGroupLibrary, &QRadioButton::toggled, p, &ZoteroBrowser::radioButtonsToggled); connect(radioPersonalLibrary, &QRadioButton::toggled, p, &ZoteroBrowser::radioButtonsToggled); connect(comboBoxGroupList, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), p, &ZoteroBrowser::groupListChanged); containerLayout->addStretch(10); /// Credentials QFormLayout *containerForm = new QFormLayout(); containerLayout->addLayout(containerForm, 1); containerForm->setMargin(0); lineEditNumericUserId = new KLineEdit(container); lineEditNumericUserId->setSizePolicy(sizePolicy); lineEditNumericUserId->setReadOnly(true); containerForm->addRow(i18n("Numeric user id:"), lineEditNumericUserId); connect(lineEditNumericUserId, &KLineEdit::textChanged, p, &ZoteroBrowser::invalidateGroupList); lineEditApiKey = new KLineEdit(container); lineEditApiKey->setSizePolicy(sizePolicy); lineEditApiKey->setReadOnly(true); containerForm->addRow(i18n("API key:"), lineEditApiKey); connect(lineEditApiKey, &KLineEdit::textChanged, p, &ZoteroBrowser::invalidateGroupList); QBoxLayout *containerButtonLayout = new QHBoxLayout(); containerLayout->addLayout(containerButtonLayout, 0); containerButtonLayout->setMargin(0); QPushButton *buttonGetOAuthCredentials = new QPushButton(QIcon::fromTheme(QStringLiteral("preferences-web-browser-identification")), i18n("Get New Credentials"), container); containerButtonLayout->addWidget(buttonGetOAuthCredentials, 0); connect(buttonGetOAuthCredentials, &QPushButton::clicked, p, &ZoteroBrowser::getOAuthCredentials); containerButtonLayout->addStretch(1); /// Collection browser collectionBrowser = new QTreeView(tabWidget); tabWidget->addTab(collectionBrowser, QIcon::fromTheme(QStringLiteral("folder-yellow")), i18n("Collections")); collectionBrowser->setHeaderHidden(true); collectionBrowser->setExpandsOnDoubleClick(false); connect(collectionBrowser, &QTreeView::doubleClicked, p, &ZoteroBrowser::collectionDoubleClicked); /// Tag browser tagBrowser = new QListView(tabWidget); tabWidget->addTab(tagBrowser, QIcon::fromTheme(QStringLiteral("mail-tagged")), i18n("Tags")); connect(tagBrowser, &QListView::doubleClicked, p, &ZoteroBrowser::tagDoubleClicked); } void queueReadOAuthCredentials() { if (wallet != nullptr && wallet->isOpen()) p->readOAuthCredentials(true); else { /// Wallet is closed or not initialized if (wallet != nullptr) /// Delete existing but closed wallet, will be replaced by new, open wallet soon delete wallet; p->setEnabled(false); p->setCursor(Qt::WaitCursor); wallet = Wallet::openWallet(Wallet::NetworkWallet(), p->winId(), Wallet::Asynchronous); connect(wallet, &Wallet::walletOpened, p, &ZoteroBrowser::readOAuthCredentials); } } void queueWriteOAuthCredentials() { if (wallet != nullptr && wallet->isOpen()) p->writeOAuthCredentials(true); else { /// Wallet is closed or not initialized if (wallet != nullptr) /// Delete existing but closed wallet, will be replaced by new, open wallet soon delete wallet; p->setEnabled(false); p->setCursor(Qt::WaitCursor); wallet = Wallet::openWallet(Wallet::NetworkWallet(), p->winId(), Wallet::Asynchronous); connect(wallet, &Wallet::walletOpened, p, &ZoteroBrowser::writeOAuthCredentials); } } }; const QString ZoteroBrowser::Private::walletFolderOAuth = QStringLiteral("OAuth"); const QString ZoteroBrowser::Private::walletEntryKBibTeXZotero = QStringLiteral("KBibTeX/Zotero"); const QString ZoteroBrowser::Private::walletKeyZoteroId = QStringLiteral("UserId"); const QString ZoteroBrowser::Private::walletKeyZoteroApiKey = QStringLiteral("ApiKey"); ZoteroBrowser::ZoteroBrowser(SearchResults *searchResults, QWidget *parent) : QWidget(parent), d(new ZoteroBrowser::Private(searchResults, this)) { /// Forece GUI update updateButtons(); radioButtonsToggled(); } ZoteroBrowser::~ZoteroBrowser() { delete d; } void ZoteroBrowser::visibiltyChanged(bool v) { if (v && d->lineEditApiKey->text().isEmpty()) /// If Zotero dock became visible and no API key is set, check KWallet for credentials d->queueReadOAuthCredentials(); } void ZoteroBrowser::modelReset() { if (!d->collection->busy() && !d->tags->busy()) { setCursor(d->nonBusyCursor); setEnabled(true); } else { setCursor(Qt::WaitCursor); setEnabled(false); } if (!d->tags->busy() && !d->collection->busy() && !(d->collection->initialized() && d->tags->initialized())) KMessageBox::information(this, i18n("KBibTeX failed to retrieve the bibliography from Zotero. Please check that the provided user id and API key are valid."), i18n("Failed to retrieve data from Zotero")); } void ZoteroBrowser::collectionDoubleClicked(const QModelIndex &index) { setCursor(Qt::WaitCursor); setEnabled(false); ///< will be re-enabled when item retrieve got finished (slot reenableWidget) const QString collectionId = index.data(Zotero::CollectionModel::CollectionIdRole).toString(); d->searchResults->clear(); d->items->retrieveItemsByCollection(collectionId); } void ZoteroBrowser::tagDoubleClicked(const QModelIndex &index) { setCursor(Qt::WaitCursor); setEnabled(false); ///< will be re-enabled when item retrieve got finished (slot reenableWidget) const QString tag = index.data(Zotero::TagModel::TagRole).toString(); d->searchResults->clear(); d->items->retrieveItemsByTag(tag); } void ZoteroBrowser::showItem(QSharedPointer<Element> e) { d->searchResults->insertElement(e); emit itemToShow(); } void ZoteroBrowser::reenableWidget() { setCursor(d->nonBusyCursor); setEnabled(true); } void ZoteroBrowser::updateButtons() { const bool validNumericIdAndApiKey = !d->lineEditNumericUserId->text().isEmpty() && !d->lineEditApiKey->text().isEmpty(); d->radioGroupLibrary->setEnabled(validNumericIdAndApiKey); d->radioPersonalLibrary->setEnabled(validNumericIdAndApiKey); d->needToApplyCredentials = true; } bool ZoteroBrowser::applyCredentials() { bool ok = false; const int userId = d->lineEditNumericUserId->text().toInt(&ok); const QString apiKey = d->lineEditApiKey->text(); if (ok && !apiKey.isEmpty()) { setCursor(Qt::WaitCursor); setEnabled(false); ok = false; int groupId = d->comboBoxGroupList->itemData(d->comboBoxGroupList->currentIndex()).toInt(&ok); if (!ok) groupId = -1; disconnect(d->tags, &Zotero::Tags::finishedLoading, this, &ZoteroBrowser::reenableWidget); disconnect(d->items, &Zotero::Items::stoppedSearch, this, &ZoteroBrowser::reenableWidget); disconnect(d->items, &Zotero::Items::foundElement, this, &ZoteroBrowser::showItem); disconnect(d->tagModel, &Zotero::TagModel::modelReset, this, &ZoteroBrowser::modelReset); disconnect(d->collectionModel, &Zotero::CollectionModel::modelReset, this, &ZoteroBrowser::modelReset); d->collection->deleteLater(); d->items->deleteLater(); d->tags->deleteLater(); d->collectionModel->deleteLater(); d->tagModel->deleteLater(); d->api.clear(); const bool makeGroupRequest = d->radioGroupLibrary->isChecked() && groupId > 0; d->api = QSharedPointer<Zotero::API>(new Zotero::API(makeGroupRequest ? Zotero::API::GroupRequest : Zotero::API::UserRequest, makeGroupRequest ? groupId : userId, d->lineEditApiKey->text(), this)); d->items = new Zotero::Items(d->api, this); d->tags = new Zotero::Tags(d->api, this); d->tagModel = new Zotero::TagModel(d->tags, this); d->tagBrowser->setModel(d->tagModel); d->collection = new Zotero::Collection(d->api, this); d->collectionModel = new Zotero::CollectionModel(d->collection, this); d->collectionBrowser->setModel(d->collectionModel); connect(d->collectionModel, &Zotero::CollectionModel::modelReset, this, &ZoteroBrowser::modelReset); connect(d->tagModel, &Zotero::TagModel::modelReset, this, &ZoteroBrowser::modelReset); connect(d->items, &Zotero::Items::foundElement, this, &ZoteroBrowser::showItem); connect(d->items, &Zotero::Items::stoppedSearch, this, &ZoteroBrowser::reenableWidget); connect(d->tags, &Zotero::Tags::finishedLoading, this, &ZoteroBrowser::reenableWidget); d->needToApplyCredentials = false; return true; } else return false; } void ZoteroBrowser::radioButtonsToggled() { d->comboBoxGroupList->setEnabled(d->comboBoxGroupListInitialized && d->comboBoxGroupList->count() > 0 && d->radioGroupLibrary->isChecked()); if (!d->comboBoxGroupListInitialized && d->radioGroupLibrary->isChecked()) retrieveGroupList(); d->needToApplyCredentials = true; } void ZoteroBrowser::groupListChanged() { d->needToApplyCredentials = true; } void ZoteroBrowser::retrieveGroupList() { bool ok = false; const int userId = d->lineEditNumericUserId->text().toInt(&ok); if (ok) { setCursor(Qt::WaitCursor); setEnabled(false); d->comboBoxGroupList->clear(); d->comboBoxGroupListInitialized = false; disconnect(d->groups, &Zotero::Groups::finishedLoading, this, &ZoteroBrowser::gotGroupList); d->groups->deleteLater(); d->api.clear(); d->api = QSharedPointer<Zotero::API>(new Zotero::API(Zotero::API::UserRequest, userId, d->lineEditApiKey->text(), this)); d->groups = new Zotero::Groups(d->api, this); connect(d->groups, &Zotero::Groups::finishedLoading, this, &ZoteroBrowser::gotGroupList); } } void ZoteroBrowser::invalidateGroupList() { d->comboBoxGroupList->clear(); d->comboBoxGroupListInitialized = false; d->comboBoxGroupList->addItem(i18n("No groups available or no permissions")); d->comboBoxGroupList->setEnabled(false); d->radioPersonalLibrary->setChecked(true); } void ZoteroBrowser::gotGroupList() { const QMap<int, QString> groupMap = d->groups->groups(); for (QMap<int, QString>::ConstIterator it = groupMap.constBegin(); it != groupMap.constEnd(); ++it) { d->comboBoxGroupList->addItem(it.value(), QVariant::fromValue<int>(it.key())); } if (groupMap.isEmpty()) { invalidateGroupList(); } else { d->comboBoxGroupListInitialized = true; d->comboBoxGroupList->setEnabled(true); d->needToApplyCredentials = true; } reenableWidget(); } void ZoteroBrowser::getOAuthCredentials() { QPointer<Zotero::OAuthWizard> wizard = new Zotero::OAuthWizard(this); if (wizard->exec() && !wizard->apiKey().isEmpty() && wizard->userId() >= 0) { d->lineEditApiKey->setText(wizard->apiKey()); d->lineEditNumericUserId->setText(QString::number(wizard->userId())); d->queueWriteOAuthCredentials(); updateButtons(); retrieveGroupList(); } delete wizard; } void ZoteroBrowser::readOAuthCredentials(bool ok) { /// Do not call this slot a second time disconnect(d->wallet, &Wallet::walletOpened, this, &ZoteroBrowser::readOAuthCredentials); if (ok && (d->wallet->hasFolder(ZoteroBrowser::Private::walletFolderOAuth) || d->wallet->createFolder(ZoteroBrowser::Private::walletFolderOAuth)) && d->wallet->setFolder(ZoteroBrowser::Private::walletFolderOAuth)) { if (d->wallet->hasEntry(ZoteroBrowser::Private::walletEntryKBibTeXZotero)) { QMap<QString, QString> map; if (d->wallet->readMap(ZoteroBrowser::Private::walletEntryKBibTeXZotero, map) == 0) { if (map.contains(ZoteroBrowser::Private::walletKeyZoteroId) && map.contains(ZoteroBrowser::Private::walletKeyZoteroApiKey)) { d->lineEditNumericUserId->setText(map.value(ZoteroBrowser::Private::walletKeyZoteroId, QString())); d->lineEditApiKey->setText(map.value(ZoteroBrowser::Private::walletKeyZoteroApiKey, QString())); updateButtons(); retrieveGroupList(); } else qWarning() << "Failed to locate Zotero Id and/or API key in KWallet"; } else qWarning() << "Failed to access Zotero data in KWallet"; } else qDebug() << "No Zotero credentials stored in KWallet"; } else qWarning() << "Accessing KWallet to sync API key did not succeed"; reenableWidget(); } void ZoteroBrowser::writeOAuthCredentials(bool ok) { disconnect(d->wallet, &Wallet::walletOpened, this, &ZoteroBrowser::writeOAuthCredentials); if (ok && (d->wallet->hasFolder(ZoteroBrowser::Private::walletFolderOAuth) || d->wallet->createFolder(ZoteroBrowser::Private::walletFolderOAuth)) && d->wallet->setFolder(ZoteroBrowser::Private::walletFolderOAuth)) { QMap<QString, QString> map; map.insert(ZoteroBrowser::Private::walletKeyZoteroId, d->lineEditNumericUserId->text()); map.insert(ZoteroBrowser::Private::walletKeyZoteroApiKey, d->lineEditApiKey->text()); if (d->wallet->writeMap(ZoteroBrowser::Private::walletEntryKBibTeXZotero, map) != 0) qWarning() << "Writing API key to KWallet failed"; } else qWarning() << "Accessing KWallet to sync API key did not succeed"; reenableWidget(); } void ZoteroBrowser::tabChanged(int newTabIndex) { if (newTabIndex > 0 /** tabs after credential tab*/ && d->needToApplyCredentials) { const bool success = applyCredentials(); for (int i = 1; i < d->tabWidget->count(); ++i) d->tabWidget->widget(i)->setEnabled(success); } } ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/docklets/zoterobrowser.h��������������������������������������������������0000664�0000000�0000000�00000004472�13313000262�0022312�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_ZOTEROBROWSER_H #define KBIBTEX_PROGRAM_ZOTEROBROWSER_H #include <QWidget> #include <QModelIndex> class Element; class SearchResults; /** * @author Thomas Fischer <fischer@unix-ag.uni-kl.de> */ class ZoteroBrowser : public QWidget { Q_OBJECT public: explicit ZoteroBrowser(SearchResults *searchResults, QWidget *parent); ~ZoteroBrowser() override; public slots: void visibiltyChanged(bool); signals: void itemToShow(); private: class Private; Private *const d; private slots: void modelReset(); void collectionDoubleClicked(const QModelIndex &index); void tagDoubleClicked(const QModelIndex &index); void showItem(QSharedPointer<Element>); void reenableWidget(); void updateButtons(); bool applyCredentials(); void radioButtonsToggled(); void groupListChanged(); void retrieveGroupList(); void invalidateGroupList(); void gotGroupList(); void getOAuthCredentials(); void readOAuthCredentials(bool); void writeOAuthCredentials(bool); void tabChanged(int); }; #endif // KBIBTEX_PROGRAM_ZOTEROBROWSER_H ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/documentlist.cpp����������������������������������������������������������0000664�0000000�0000000�00000041244�13313000262�0020617�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "documentlist.h" #include <QStringListModel> #include <QTimer> #include <QSignalMapper> #include <QGridLayout> #include <QLabel> #include <QPainter> #include <QPushButton> #include <QApplication> #include <QIcon> #include <QAction> #include <KIconLoader> #include <KLocalizedString> #include <KActionMenu> #include <KDirOperator> #include <KService> #include <KMessageBox> #include "kbibtex.h" class DirOperatorWidget : public QWidget { Q_OBJECT public: KDirOperator *dirOperator; DirOperatorWidget(QWidget *parent) : QWidget(parent) { QGridLayout *layout = new QGridLayout(this); layout->setMargin(0); layout->setColumnStretch(0, 0); layout->setColumnStretch(1, 0); layout->setColumnStretch(2, 1); QPushButton *buttonUp = new QPushButton(QIcon::fromTheme(QStringLiteral("go-up")), QStringLiteral(""), this); buttonUp->setToolTip(i18n("One level up")); layout->addWidget(buttonUp, 0, 0, 1, 1); QPushButton *buttonHome = new QPushButton(QIcon::fromTheme(QStringLiteral("user-home")), QStringLiteral(""), this); buttonHome->setToolTip(i18n("Go to Home folder")); layout->addWidget(buttonHome, 0, 1, 1, 1); dirOperator = new KDirOperator(QUrl(QStringLiteral("file:") + QDir::homePath()), this); layout->addWidget(dirOperator, 1, 0, 1, 3); dirOperator->setView(KFile::Detail); connect(buttonUp, &QPushButton::clicked, dirOperator, &KDirOperator::cdUp); connect(buttonHome, &QPushButton::clicked, dirOperator, &KDirOperator::home); } }; DocumentListDelegate::DocumentListDelegate(QObject *parent) : QStyledItemDelegate(parent), ofim(OpenFileInfoManager::instance()) { // nothing } void DocumentListDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { int height = option.rect.height(); QStyle *style = QApplication::style(); style->drawPrimitive(QStyle::PE_PanelItemViewItem, &option, painter, nullptr); painter->save(); if (option.state & QStyle::State_Selected) { painter->setPen(QPen(option.palette.highlightedText().color())); } else { painter->setPen(QPen(option.palette.text().color())); } OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(index.data(Qt::UserRole)); if (ofim->currentFile() == ofi) { /// for the currently open file, use a bold font to write file name QFont font = painter->font(); font.setBold(true); painter->setFont(font); } QRect textRect = option.rect; textRect.setLeft(textRect.left() + height + 4); textRect.setHeight(height / 2); painter->drawText(textRect, Qt::AlignLeft | Qt::AlignVCenter, index.data(Qt::DisplayRole).toString()); textRect = option.rect; textRect.setLeft(textRect.left() + height + 4); textRect.setTop(textRect.top() + height / 2); textRect.setHeight(height * 3 / 8); QFont font = painter->font(); font.setPointSize(font.pointSize() * 7 / 8); painter->setFont(font); painter->drawText(textRect, Qt::AlignLeft | Qt::AlignVCenter, ofi->fullCaption()); QIcon icon = qvariant_cast<QIcon>(index.data(Qt::DecorationRole)); painter->drawPixmap(option.rect.left() + 1, option.rect.top() + 1, height - 2, height - 2, icon.pixmap(height - 2, height - 2)); painter->restore(); } QSize DocumentListDelegate::sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const { QSize size = QStyledItemDelegate::sizeHint(option, index); size.setHeight(size.height() * 9 / 4); return size; } class DocumentListModel::DocumentListModelPrivate { public: OpenFileInfo::StatusFlag sf; OpenFileInfoManager *ofim; OpenFileInfoManager::OpenFileInfoList ofiList; private: // UNUSED DocumentListModel *p; public: DocumentListModelPrivate(OpenFileInfo::StatusFlag statusFlag, DocumentListModel */* UNUSED parent*/) : sf(statusFlag), ofim(OpenFileInfoManager::instance())// UNUSED , p(parent) { /// nothing } }; DocumentListModel::DocumentListModel(OpenFileInfo::StatusFlag statusFlag, QObject *parent) : QAbstractListModel(parent), d(new DocumentListModel::DocumentListModelPrivate(statusFlag, this)) { listsChanged(d->sf); connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::flagsChanged, this, &DocumentListModel::listsChanged); } DocumentListModel::~DocumentListModel() { delete d; } int DocumentListModel::rowCount(const QModelIndex &parent) const { if (parent != QModelIndex()) return 0; return d->ofiList.count(); } QVariant DocumentListModel::data(const QModelIndex &index, int role) const { if (index.row() < 0 || index.row() >= rowCount()) return QVariant(); OpenFileInfo *openFileInfo = d->ofiList[index.row()]; const QString iconName = openFileInfo->mimeType().replace(QLatin1Char('/'), QLatin1Char('-')); switch (role) { case Qt::DisplayRole: return openFileInfo->shortCaption(); case Qt::DecorationRole: { /// determine mime type-based icon and overlays (e.g. for modified files) QStringList overlays; if (openFileInfo->flags().testFlag(OpenFileInfo::Favorite)) overlays << QStringLiteral("favorites"); else overlays << QStringLiteral(""); if (openFileInfo->flags().testFlag(OpenFileInfo::RecentlyUsed)) overlays << QStringLiteral("document-open-recent"); else overlays << QStringLiteral(""); if (openFileInfo->flags().testFlag(OpenFileInfo::Open)) overlays << QStringLiteral("folder-open"); else overlays << QStringLiteral(""); if (openFileInfo->isModified()) overlays << QStringLiteral("document-save"); else overlays << QStringLiteral(""); return KDE::icon(iconName, overlays, nullptr); } case Qt::ToolTipRole: { QString htmlText(QString(QStringLiteral("<qt><img src=\"%1\"> <b>%2</b>")).arg(KIconLoader::global()->iconPath(iconName, KIconLoader::Small), openFileInfo->shortCaption())); const QUrl url = openFileInfo->url(); if (url.isValid()) { QString path(QFileInfo(url.path()).path()); if (!path.endsWith(QLatin1Char('/'))) path.append(QLatin1Char('/')); htmlText.append(i18n("<br/><small>located in <b>%1</b></small>", path)); } QStringList flagListItems; if (openFileInfo->flags().testFlag(OpenFileInfo::Favorite)) flagListItems << i18n("Favorite"); if (openFileInfo->flags().testFlag(OpenFileInfo::RecentlyUsed)) flagListItems << i18n("Recently Used"); if (openFileInfo->flags().testFlag(OpenFileInfo::Open)) flagListItems << i18n("Open"); if (openFileInfo->isModified()) flagListItems << i18n("Modified"); if (!flagListItems.empty()) { htmlText.append(QStringLiteral("<ul>")); for (const QString &flagListItem : const_cast<const QStringList &>(flagListItems)) { htmlText.append(QString(QStringLiteral("<li>%1</li>")).arg(flagListItem)); } htmlText.append(QStringLiteral("</ul>")); } htmlText.append(QStringLiteral("</qt>")); return htmlText; } case Qt::UserRole: return qVariantFromValue(openFileInfo); default: return QVariant(); } } QVariant DocumentListModel::headerData(int section, Qt::Orientation orientation, int role) const { if (orientation != Qt::Horizontal || section != 0 || role != Qt::DisplayRole) return QVariant(); return QVariant("List of Files"); } void DocumentListModel::listsChanged(OpenFileInfo::StatusFlags statusFlags) { if (statusFlags.testFlag(d->sf)) { beginResetModel(); d->ofiList = d->ofim->filteredItems(d->sf); endResetModel(); } } class DocumentListView::DocumentListViewPrivate { private: DocumentListView *p; public: OpenFileInfoManager *ofim; QAction *actionAddToFav, *actionRemFromFav; QAction *actionCloseFile, *actionOpenFile; KActionMenu *actionOpenMenu; QList<QAction *> openMenuActions; KService::List openMenuServices; QSignalMapper openMenuSignalMapper; DocumentListViewPrivate(DocumentListView *parent) : p(parent), ofim(OpenFileInfoManager::instance()), actionAddToFav(nullptr), actionRemFromFav(nullptr), actionCloseFile(nullptr), actionOpenFile(nullptr), actionOpenMenu(nullptr) { connect(&openMenuSignalMapper, static_cast<void(QSignalMapper::*)(int)>(&QSignalMapper::mapped), p, &DocumentListView::openFileWithService); } }; DocumentListView::DocumentListView(OpenFileInfo::StatusFlag statusFlag, QWidget *parent) : QListView(parent), d(new DocumentListViewPrivate(this)) { setContextMenuPolicy(Qt::ActionsContextMenu); setItemDelegate(new DocumentListDelegate(this)); if (statusFlag == OpenFileInfo::Open) { d->actionCloseFile = new QAction(QIcon::fromTheme(QStringLiteral("document-close")), i18n("Close File"), this); connect(d->actionCloseFile, &QAction::triggered, this, &DocumentListView::closeFile); addAction(d->actionCloseFile); } else { d->actionOpenFile = new QAction(QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open File"), this); connect(d->actionOpenFile, &QAction::triggered, this, &DocumentListView::openFile); addAction(d->actionOpenFile); } d->actionOpenMenu = new KActionMenu(QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open with"), this); addAction(d->actionOpenMenu); if (statusFlag == OpenFileInfo::Favorite) { d->actionRemFromFav = new QAction(QIcon::fromTheme(QStringLiteral("favorites")), i18n("Remove from Favorites"), this); connect(d->actionRemFromFav, &QAction::triggered, this, &DocumentListView::removeFromFavorites); addAction(d->actionRemFromFav); } else { d->actionAddToFav = new QAction(QIcon::fromTheme(QStringLiteral("favorites")), i18n("Add to Favorites"), this); connect(d->actionAddToFav, &QAction::triggered, this, &DocumentListView::addToFavorites); addAction(d->actionAddToFav); } connect(this, &DocumentListView::activated, this, &DocumentListView::openFile); currentChanged(QModelIndex(), QModelIndex()); } DocumentListView::~DocumentListView() { delete d; } void DocumentListView::addToFavorites() { QModelIndex modelIndex = currentIndex(); if (modelIndex != QModelIndex()) { OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(modelIndex.data(Qt::UserRole)); ofi->addFlags(OpenFileInfo::Favorite); } } void DocumentListView::removeFromFavorites() { QModelIndex modelIndex = currentIndex(); if (modelIndex != QModelIndex()) { OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(modelIndex.data(Qt::UserRole)); ofi->removeFlags(OpenFileInfo::Favorite); } } void DocumentListView::openFile() { QModelIndex modelIndex = currentIndex(); if (modelIndex != QModelIndex()) { OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(modelIndex.data(Qt::UserRole)); d->ofim->setCurrentFile(ofi); } } void DocumentListView::openFileWithService(int i) { QModelIndex modelIndex = currentIndex(); if (modelIndex != QModelIndex()) { OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(modelIndex.data(Qt::UserRole)); if (!ofi->isModified() || (KMessageBox::questionYesNo(this, i18n("The current document has to be saved before switching the viewer/editor component."), i18n("Save before switching?"), KGuiItem(i18n("Save document"), QIcon::fromTheme(QStringLiteral("document-save"))), KGuiItem(i18n("Do not switch"), QIcon::fromTheme(QStringLiteral("dialog-cancel")))) == KMessageBox::Yes && ofi->save())) d->ofim->setCurrentFile(ofi, d->openMenuServices[i]); } } void DocumentListView::closeFile() { QModelIndex modelIndex = currentIndex(); if (modelIndex != QModelIndex()) { OpenFileInfo *ofi = qvariant_cast<OpenFileInfo *>(modelIndex.data(Qt::UserRole)); d->ofim->close(ofi); } } void DocumentListView::currentChanged(const QModelIndex &current, const QModelIndex &) { bool hasCurrent = current != QModelIndex(); OpenFileInfo *ofi = hasCurrent ? qvariant_cast<OpenFileInfo *>(current.data(Qt::UserRole)) : nullptr; bool isOpen = hasCurrent ? ofi->flags().testFlag(OpenFileInfo::Open) : false; bool isFavorite = hasCurrent ? ofi->flags().testFlag(OpenFileInfo::Favorite) : false; bool hasName = hasCurrent ? ofi->flags().testFlag(OpenFileInfo::HasName) : false; if (d->actionOpenFile != nullptr) d->actionOpenFile->setEnabled(hasCurrent && !isOpen); if (d->actionCloseFile != nullptr) d->actionCloseFile->setEnabled(hasCurrent && isOpen); if (d->actionAddToFav != nullptr) d->actionAddToFav->setEnabled(hasCurrent && !isFavorite && hasName); if (d->actionRemFromFav != nullptr) d->actionRemFromFav->setEnabled(hasCurrent && isFavorite); for (QAction *action : const_cast<const QList<QAction *> &>(d->openMenuActions)) { d->actionOpenMenu->removeAction(action); } d->openMenuServices.clear(); if (ofi != nullptr) { d->openMenuServices = ofi->listOfServices(); int i = 0; for (KService::Ptr servicePtr : const_cast<const KService::List &>(d->openMenuServices)) { QAction *menuItem = new QAction(QIcon::fromTheme(servicePtr->icon()), servicePtr->name(), this); d->actionOpenMenu->addAction(menuItem); d->openMenuActions << menuItem; d->openMenuSignalMapper.setMapping(menuItem, i); connect(menuItem, &QAction::triggered, &d->openMenuSignalMapper, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); ++i; } } d->actionOpenMenu->setEnabled(!d->openMenuActions.isEmpty()); } class DocumentList::DocumentListPrivate { public: DocumentListView *listOpenFiles; DocumentListView *listRecentFiles; DocumentListView *listFavorites; DirOperatorWidget *dirOperator; DocumentListPrivate(DocumentList *p) { listOpenFiles = new DocumentListView(OpenFileInfo::Open, p); DocumentListModel *model = new DocumentListModel(OpenFileInfo::Open, listOpenFiles); listOpenFiles->setModel(model); p->addTab(listOpenFiles, QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open Files")); listRecentFiles = new DocumentListView(OpenFileInfo::RecentlyUsed, p); model = new DocumentListModel(OpenFileInfo::RecentlyUsed, listRecentFiles); listRecentFiles->setModel(model); p->addTab(listRecentFiles, QIcon::fromTheme(QStringLiteral("document-open-recent")), i18n("Recently Used")); listFavorites = new DocumentListView(OpenFileInfo::Favorite, p); model = new DocumentListModel(OpenFileInfo::Favorite, listFavorites); listFavorites->setModel(model); p->addTab(listFavorites, QIcon::fromTheme(QStringLiteral("favorites")), i18n("Favorites")); dirOperator = new DirOperatorWidget(p); p->addTab(dirOperator, QIcon::fromTheme(QStringLiteral("system-file-manager")), i18n("Filesystem Browser")); connect(dirOperator->dirOperator, &KDirOperator::fileSelected, p, &DocumentList::fileSelected); } }; DocumentList::DocumentList(QWidget *parent) : QTabWidget(parent), d(new DocumentListPrivate(this)) { setDocumentMode(true); } void DocumentList::fileSelected(const KFileItem &item) { if (item.isFile() && item.isReadable()) emit openFile(item.url()); } #include "documentlist.moc" ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/documentlist.h������������������������������������������������������������0000664�0000000�0000000�00000007072�13313000262�0020265�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_DOCUMENTLIST_H #define KBIBTEX_PROGRAM_DOCUMENTLIST_H #include <QListView> #include <QAbstractListModel> #include <QListWidgetItem> #include <QStyledItemDelegate> #include <QTabWidget> #include <QUrl> #include "openfileinfo.h" class KFileItem; class OpenFileInfoManager; class DocumentListDelegate : public QStyledItemDelegate { Q_OBJECT private: OpenFileInfoManager *ofim; public: explicit DocumentListDelegate(QObject *parent = nullptr); void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; class DocumentListModel : public QAbstractListModel { Q_OBJECT public: explicit DocumentListModel(OpenFileInfo::StatusFlag statusFlag, QObject *parent = nullptr); ~DocumentListModel() override; int rowCount(const QModelIndex &parent = QModelIndex()) const override; QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override; QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override; private: class DocumentListModelPrivate; DocumentListModelPrivate *d; private slots: void listsChanged(OpenFileInfo::StatusFlags statusFlags); }; class DocumentListView : public QListView { Q_OBJECT public: DocumentListView(OpenFileInfo::StatusFlag statusFlag, QWidget *parent); ~DocumentListView() override; private slots: void addToFavorites(); void removeFromFavorites(); void openFile(); void openFileWithService(int i); void closeFile(); protected: void currentChanged(const QModelIndex &current, const QModelIndex &previous) override; private: class DocumentListViewPrivate; DocumentListViewPrivate *d; }; class DocumentList : public QTabWidget { Q_OBJECT public: enum Category { OpenFiles = 0, RecentFiles = 1, Favorites = 2 }; explicit DocumentList(QWidget *parent = nullptr); signals: void openFile(const QUrl &url); private slots: void fileSelected(const KFileItem &item); private: class DocumentListPrivate; DocumentListPrivate *d; }; static const int RecentlyUsedItemType = QListWidgetItem::UserType + 23; static const int FavoritesItemType = QListWidgetItem::UserType + 24; #endif // KBIBTEX_PROGRAM_DOCUMENTLIST_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/kbibtexui.rc��������������������������������������������������������������0000664�0000000�0000000�00000001302�13313000262�0017704�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> <kpartgui name="KBibTeX" version="1"> <MenuBar> <Menu name="file"><text>File</text> <Action name="file_new" /> <Action name="file_open" /> <Action name="file_open_recent" /> <Action name="file_close" /> <DefineGroup name="save_merge" append="save_merge" /> <Separator/> <Action name="file_quit"/> </Menu> <Menu name="settings"> <Action name="settings_shown_panels" append="show_merge" /> </Menu> <Merge /> </MenuBar> <ToolBar name="mainToolBar"><text>Main Toolbar</text> <Action name="file_new" /> <Action name="file_open" /> <Action name="file_close" /> <Separator/> <Merge/> </ToolBar> </kpartgui> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/logging_program.cpp�������������������������������������������������������0000664�0000000�0000000�00000002453�13313000262�0021261�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_program.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_PROGRAM, "kbibtex.program") ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/logging_program.h���������������������������������������������������������0000664�0000000�0000000�00000002740�13313000262�0020725�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_LOGGING_PROGRAM_H #define KBIBTEX_PROGRAM_LOGGING_PROGRAM_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_PROGRAM) #if QT_VERSION < 0x050500 #define qCInfo(a) qCDebug(a) #endif #endif // KBIBTEX_PROGRAM_LOGGING_PROGRAM_H ��������������������������������kbibtex-0.8.1/src/program/mainwindow.cpp������������������������������������������������������������0000664�0000000�0000000�00000060101�13313000262�0020252�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "mainwindow.h" #include <QDockWidget> #include <QDragEnterEvent> #include <QDropEvent> #include <QLabel> #include <QMimeData> #include <QPointer> #include <QMenu> #include <QTimer> #include <QApplication> #include <QFileDialog> #include <QAction> #include <KActionMenu> #include <KActionCollection> #include <KPluginFactory> #include <KPluginLoader> #include <KLocalizedString> #include <KSharedConfig> #include <KMessageBox> #include "kbibtex.h" #include "preferences/kbibtexpreferencesdialog.h" #include "valuelist.h" #ifdef HAVE_ZOTERO #include "zoterobrowser.h" #endif // HAVE_ZOTERO #include "statistics.h" #include "documentlist.h" #include "mdiwidget.h" #include "referencepreview.h" #include "documentpreview.h" #include "searchform.h" #include "searchresults.h" #include "elementform.h" #include "fileview.h" #include "filesettings.h" #include "xsltransform.h" #include "bibliographyservice.h" #include "bibutils.h" class KBibTeXMainWindow::KBibTeXMainWindowPrivate { private: KBibTeXMainWindow *p; public: QAction *actionClose; QDockWidget *dockDocumentList; QDockWidget *dockReferencePreview; QDockWidget *dockDocumentPreview; QDockWidget *dockValueList; #ifdef HAVE_ZOTERO QDockWidget *dockZotero; #endif // HAVE_ZOTERO QDockWidget *dockStatistics; QDockWidget *dockSearchForm; QDockWidget *dockSearchResults; QDockWidget *dockElementForm; QDockWidget *dockFileSettings; DocumentList *listDocumentList; MDIWidget *mdiWidget; ReferencePreview *referencePreview; DocumentPreview *documentPreview; FileSettings *fileSettings; ValueList *valueList; #ifdef HAVE_ZOTERO ZoteroBrowser *zotero; #endif // HAVE_ZOTERO Statistics *statistics; SearchForm *searchForm; SearchResults *searchResults; ElementForm *elementForm; QMenu *actionMenuRecentFilesMenu; KBibTeXMainWindowPrivate(KBibTeXMainWindow *parent) : p(parent) { mdiWidget = new MDIWidget(p); KActionMenu *showPanelsAction = new KActionMenu(i18n("Show Panels"), p); p->actionCollection()->addAction(QStringLiteral("settings_shown_panels"), showPanelsAction); QMenu *showPanelsMenu = new QMenu(showPanelsAction->text(), p->widget()); showPanelsAction->setMenu(showPanelsMenu); KActionMenu *actionMenuRecentFiles = new KActionMenu(QIcon::fromTheme(QStringLiteral("document-open-recent")), i18n("Recently used files"), p); p->actionCollection()->addAction(QStringLiteral("file_open_recent"), actionMenuRecentFiles); actionMenuRecentFilesMenu = new QMenu(actionMenuRecentFiles->text(), p->widget()); actionMenuRecentFiles->setMenu(actionMenuRecentFilesMenu); /** * Docklets (a.k.a. panels) will be added by default to the following * positions unless otherwise configured by the user. * - "List of Values" on the left * - "Statistics" on the left * - "List of Documents" on the left in the same tab * - "Online Search" on the left in a new tab * - "Reference Preview" on the left in the same tab * - "Search Results" on the bottom * - "Document Preview" is hidden * - "Element Editor" is hidden */ dockDocumentList = new QDockWidget(i18n("List of Documents"), p); dockDocumentList->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockDocumentList); listDocumentList = new DocumentList(dockDocumentList); dockDocumentList->setWidget(listDocumentList); dockDocumentList->setObjectName(QStringLiteral("dockDocumentList")); dockDocumentList->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); connect(listDocumentList, &DocumentList::openFile, p, &KBibTeXMainWindow::openDocument); showPanelsMenu->addAction(dockDocumentList->toggleViewAction()); dockValueList = new QDockWidget(i18n("List of Values"), p); dockValueList->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockValueList); valueList = new ValueList(dockValueList); dockValueList->setWidget(valueList); dockValueList->setObjectName(QStringLiteral("dockValueList")); dockValueList->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockValueList->toggleViewAction()); dockStatistics = new QDockWidget(i18n("Statistics"), p); dockStatistics->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockStatistics); statistics = new Statistics(dockStatistics); dockStatistics->setWidget(statistics); dockStatistics->setObjectName(QStringLiteral("dockStatistics")); dockStatistics->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockStatistics->toggleViewAction()); dockSearchResults = new QDockWidget(i18n("Search Results"), p); dockSearchResults->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::BottomDockWidgetArea, dockSearchResults); dockSearchResults->hide(); searchResults = new SearchResults(mdiWidget, dockSearchResults); dockSearchResults->setWidget(searchResults); dockSearchResults->setObjectName(QStringLiteral("dockResultsFrom")); dockSearchResults->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockSearchResults->toggleViewAction()); connect(mdiWidget, &MDIWidget::documentSwitched, searchResults, &SearchResults::documentSwitched); dockSearchForm = new QDockWidget(i18n("Online Search"), p); dockSearchForm->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockSearchForm); searchForm = new SearchForm(searchResults, dockSearchForm); connect(searchForm, &SearchForm::doneSearching, p, &KBibTeXMainWindow::showSearchResults); dockSearchForm->setWidget(searchForm); dockSearchForm->setObjectName(QStringLiteral("dockSearchFrom")); dockSearchForm->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockSearchForm->toggleViewAction()); #ifdef HAVE_ZOTERO dockZotero = new QDockWidget(i18n("Zotero"), p); dockZotero->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockZotero); zotero = new ZoteroBrowser(searchResults, dockZotero); connect(dockZotero, &QDockWidget::visibilityChanged, zotero, &ZoteroBrowser::visibiltyChanged); connect(zotero, &ZoteroBrowser::itemToShow, p, &KBibTeXMainWindow::showSearchResults); dockZotero->setWidget(zotero); dockZotero->setObjectName(QStringLiteral("dockZotero")); dockZotero->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockZotero->toggleViewAction()); #endif // HAVE_ZOTERO dockReferencePreview = new QDockWidget(i18n("Reference Preview"), p); dockReferencePreview->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockReferencePreview); referencePreview = new ReferencePreview(dockReferencePreview); dockReferencePreview->setWidget(referencePreview); dockReferencePreview->setObjectName(QStringLiteral("dockReferencePreview")); dockReferencePreview->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockReferencePreview->toggleViewAction()); dockDocumentPreview = new QDockWidget(i18n("Document Preview"), p); dockDocumentPreview->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::RightDockWidgetArea, dockDocumentPreview); dockDocumentPreview->hide(); documentPreview = new DocumentPreview(dockDocumentPreview); dockDocumentPreview->setWidget(documentPreview); dockDocumentPreview->setObjectName(QStringLiteral("dockDocumentPreview")); dockDocumentPreview->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockDocumentPreview->toggleViewAction()); p->actionCollection()->setDefaultShortcut(dockDocumentPreview->toggleViewAction(), Qt::CTRL + Qt::SHIFT + Qt::Key_D); dockElementForm = new QDockWidget(i18n("Element Editor"), p); dockElementForm->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::BottomDockWidgetArea, dockElementForm); dockElementForm->hide(); elementForm = new ElementForm(mdiWidget, dockElementForm); dockElementForm->setWidget(elementForm); dockElementForm->setObjectName(QStringLiteral("dockElementFrom")); dockElementForm->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockElementForm->toggleViewAction()); dockFileSettings = new QDockWidget(i18n("File Settings"), p); dockFileSettings->setAllowedAreas(Qt::BottomDockWidgetArea | Qt::TopDockWidgetArea | Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea); p->addDockWidget(Qt::LeftDockWidgetArea, dockFileSettings); fileSettings = new FileSettings(dockFileSettings); dockFileSettings->setWidget(fileSettings); dockFileSettings->setObjectName(QStringLiteral("dockFileSettings")); dockFileSettings->setFeatures(QDockWidget::DockWidgetClosable | QDockWidget::DockWidgetMovable | QDockWidget::DockWidgetFloatable); showPanelsMenu->addAction(dockFileSettings->toggleViewAction()); p->tabifyDockWidget(dockFileSettings, dockSearchForm); #ifdef HAVE_ZOTERO p->tabifyDockWidget(dockZotero, dockSearchForm); #endif // HAVE_ZOTERO p->tabifyDockWidget(dockValueList, dockStatistics); p->tabifyDockWidget(dockStatistics, dockFileSettings); p->tabifyDockWidget(dockSearchForm, dockReferencePreview); p->tabifyDockWidget(dockFileSettings, dockDocumentList); QAction *action = p->actionCollection()->addAction(KStandardAction::New); connect(action, &QAction::triggered, p, &KBibTeXMainWindow::newDocument); action = p->actionCollection()->addAction(KStandardAction::Open); connect(action, &QAction::triggered, p, &KBibTeXMainWindow::openDocumentDialog); actionClose = p->actionCollection()->addAction(KStandardAction::Close); connect(actionClose, &QAction::triggered, p, &KBibTeXMainWindow::closeDocument); actionClose->setEnabled(false); action = p->actionCollection()->addAction(KStandardAction::Quit); connect(action, &QAction::triggered, p, &KBibTeXMainWindow::queryCloseAll); action = p->actionCollection()->addAction(KStandardAction::Preferences); connect(action, &QAction::triggered, p, &KBibTeXMainWindow::showPreferences); } ~KBibTeXMainWindowPrivate() { elementForm->deleteLater(); delete mdiWidget; // TODO other deletes } }; KBibTeXMainWindow::KBibTeXMainWindow(QWidget *parent) : KParts::MainWindow(parent, (Qt::WindowFlags)KDE_DEFAULT_WINDOWFLAGS), d(new KBibTeXMainWindowPrivate(this)) { setObjectName(QStringLiteral("KBibTeXShell")); /* const char mainWindowStateKey[] = "State"; KConfigGroup group( KSharedConfig::openConfig(), "MainWindow" ); if( !group.hasKey(mainWindowStateKey) ) group.writeEntry( mainWindowStateKey, mainWindowState ); */ setXMLFile(QStringLiteral("kbibtexui.rc")); setCentralWidget(d->mdiWidget); connect(d->mdiWidget, &MDIWidget::documentSwitched, this, &KBibTeXMainWindow::documentSwitched); connect(d->mdiWidget, &MDIWidget::activePartChanged, this, &KBibTeXMainWindow::createGUI); ///< actually: KParts::MainWindow::createGUI connect(d->mdiWidget, &MDIWidget::documentNew, this, &KBibTeXMainWindow::newDocument); connect(d->mdiWidget, &MDIWidget::documentOpen, this, &KBibTeXMainWindow::openDocumentDialog); connect(d->mdiWidget, &MDIWidget::documentOpenURL, this, &KBibTeXMainWindow::openDocument); connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::currentChanged, d->mdiWidget, &MDIWidget::setFile); connect(OpenFileInfoManager::instance(), &OpenFileInfoManager::flagsChanged, this, &KBibTeXMainWindow::documentListsChanged); connect(d->mdiWidget, &MDIWidget::setCaption, this, static_cast<void(KMainWindow::*)(const QString &)>(&KMainWindow::setCaption)); ///< actually: KMainWindow::setCaption documentListsChanged(OpenFileInfo::RecentlyUsed); /// force initialization of menu of recently used files setupControllers(); setupGUI(KXmlGuiWindow::Create | KXmlGuiWindow::Save | KXmlGuiWindow::Keys | KXmlGuiWindow::ToolBar); setCorner(Qt::TopLeftCorner, Qt::LeftDockWidgetArea); setCorner(Qt::TopRightCorner, Qt::RightDockWidgetArea); setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea); setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea); setAcceptDrops(true); QTimer::singleShot(500, this, &KBibTeXMainWindow::delayed); } KBibTeXMainWindow::~KBibTeXMainWindow() { delete d; } void KBibTeXMainWindow::setupControllers() { // TODO } void KBibTeXMainWindow::dragEnterEvent(QDragEnterEvent *event) { if (event->mimeData()->hasUrls()) event->acceptProposedAction(); } void KBibTeXMainWindow::dropEvent(QDropEvent *event) { QList<QUrl> urlList = event->mimeData()->urls(); if (urlList.isEmpty()) { const QUrl url(event->mimeData()->text()); if (url.isValid()) urlList << url; } if (!urlList.isEmpty()) for (const QUrl &url : const_cast<const QList<QUrl> &>(urlList)) openDocument(url); } void KBibTeXMainWindow::newDocument() { const QString mimeType = FileInfo::mimetypeBibTeX; OpenFileInfo *openFileInfo = OpenFileInfoManager::instance()->createNew(mimeType); if (openFileInfo) { OpenFileInfoManager::instance()->setCurrentFile(openFileInfo); openFileInfo->addFlags(OpenFileInfo::Open); } else KMessageBox::error(this, i18n("Creating a new document of mime type '%1' failed as no editor component could be instantiated.", mimeType), i18n("Creating document failed")); } void KBibTeXMainWindow::openDocumentDialog() { OpenFileInfo *currFile = OpenFileInfoManager::instance()->currentFile(); QUrl currFileUrl = currFile == nullptr ? QUrl() : currFile->url(); QString startDir = currFileUrl.isValid() ? QUrl(currFileUrl.url()).path() : QString(); OpenFileInfo *ofi = OpenFileInfoManager::instance()->currentFile(); if (ofi != nullptr) { QUrl url = ofi->url(); if (url.isValid()) startDir = url.path(); } /// Assemble list of supported mimetypes QStringList supportedMimeTypes = QStringList() << QStringLiteral("text/x-bibtex") << QStringLiteral("application/x-research-info-systems") << QStringLiteral("application/xml"); if (BibUtils::available()) { supportedMimeTypes.append(QStringLiteral("application/x-isi-export-format")); supportedMimeTypes.append(QStringLiteral("application/x-endnote-refer")); } supportedMimeTypes.append(QStringLiteral("application/pdf")); supportedMimeTypes.append(QStringLiteral("all/all")); QPointer<QFileDialog> dlg = new QFileDialog(this, i18n("Open file") /* TODO better text */, startDir); dlg->setMimeTypeFilters(supportedMimeTypes); dlg->setFileMode(QFileDialog::ExistingFile); const bool dialogAccepted = dlg->exec() != 0; const QUrl url = (dialogAccepted && !dlg->selectedUrls().isEmpty()) ? dlg->selectedUrls().first() : QUrl(); delete dlg; if (!url.isEmpty()) openDocument(url); } void KBibTeXMainWindow::openDocument(const QUrl &url) { OpenFileInfo *openFileInfo = OpenFileInfoManager::instance()->open(url); OpenFileInfoManager::instance()->setCurrentFile(openFileInfo); } void KBibTeXMainWindow::closeDocument() { OpenFileInfoManager::instance()->close(OpenFileInfoManager::instance()->currentFile()); } void KBibTeXMainWindow::closeEvent(QCloseEvent *event) { KMainWindow::closeEvent(event); if (OpenFileInfoManager::instance()->queryCloseAll()) event->accept(); else event->ignore(); } void KBibTeXMainWindow::showPreferences() { QPointer<KBibTeXPreferencesDialog> dlg = new KBibTeXPreferencesDialog(this); dlg->exec(); delete dlg; } void KBibTeXMainWindow::documentSwitched(FileView *oldFileView, FileView *newFileView) { OpenFileInfo *openFileInfo = d->mdiWidget->currentFile(); bool validFile = openFileInfo != nullptr; d->actionClose->setEnabled(validFile); setCaption(validFile ? i18n("%1 - KBibTeX", openFileInfo->shortCaption()) : i18n("KBibTeX")); d->fileSettings->setEnabled(newFileView != nullptr); d->referencePreview->setEnabled(newFileView != nullptr); d->elementForm->setEnabled(newFileView != nullptr); d->documentPreview->setEnabled(newFileView != nullptr); if (oldFileView != nullptr) { disconnect(newFileView, &FileView::currentElementChanged, d->referencePreview, &ReferencePreview::setElement); disconnect(newFileView, &FileView::currentElementChanged, d->elementForm, &ElementForm::setElement); disconnect(newFileView, &FileView::currentElementChanged, d->documentPreview, &DocumentPreview::setElement); disconnect(newFileView, &FileView::currentElementChanged, d->searchForm, &SearchForm::setElement); disconnect(newFileView, &FileView::modified, d->valueList, &ValueList::update); disconnect(newFileView, &FileView::modified, d->statistics, &Statistics::update); // FIXME disconnect(oldEditor, SIGNAL(modified()), d->elementForm, SLOT(refreshElement())); disconnect(d->elementForm, &ElementForm::elementModified, newFileView, &FileView::externalModification); } if (newFileView != nullptr) { connect(newFileView, &FileView::currentElementChanged, d->referencePreview, &ReferencePreview::setElement); connect(newFileView, &FileView::currentElementChanged, d->elementForm, &ElementForm::setElement); connect(newFileView, &FileView::currentElementChanged, d->documentPreview, &DocumentPreview::setElement); connect(newFileView, &FileView::currentElementChanged, d->searchForm, &SearchForm::setElement); connect(newFileView, &FileView::modified, d->valueList, &ValueList::update); connect(newFileView, &FileView::modified, d->statistics, &Statistics::update); // FIXME connect(newEditor, SIGNAL(modified()), d->elementForm, SLOT(refreshElement())); connect(d->elementForm, &ElementForm::elementModified, newFileView, &FileView::externalModification); connect(d->elementForm, &ElementForm::elementModified, newFileView, &FileView::externalModification); } d->documentPreview->setBibTeXUrl(validFile ? openFileInfo->url() : QUrl()); d->referencePreview->setElement(QSharedPointer<Element>(), nullptr); d->elementForm->setElement(QSharedPointer<Element>(), nullptr); d->documentPreview->setElement(QSharedPointer<Element>(), nullptr); d->valueList->setFileView(newFileView); d->fileSettings->setFileView(newFileView); d->statistics->setFileView(newFileView); d->referencePreview->setFileView(newFileView); } void KBibTeXMainWindow::showSearchResults() { d->dockSearchResults->show(); } void KBibTeXMainWindow::documentListsChanged(OpenFileInfo::StatusFlags statusFlags) { if (statusFlags.testFlag(OpenFileInfo::RecentlyUsed)) { const OpenFileInfoManager::OpenFileInfoList list = OpenFileInfoManager::instance()->filteredItems(OpenFileInfo::RecentlyUsed); d->actionMenuRecentFilesMenu->clear(); for (OpenFileInfo *cur : list) { /// Fixing bug 19511: too long filenames make menu too large, /// therefore squeeze text if it is longer than squeezeLen. const int squeezeLen = 64; const QString squeezedShortCap = squeeze_text(cur->shortCaption(), squeezeLen); const QString squeezedFullCap = squeeze_text(cur->fullCaption(), squeezeLen); QAction *action = new QAction(QString(QStringLiteral("%1 [%2]")).arg(squeezedShortCap, squeezedFullCap), this); action->setData(cur->url()); action->setIcon(QIcon::fromTheme(cur->mimeType().replace(QLatin1Char('/'), QLatin1Char('-')))); d->actionMenuRecentFilesMenu->addAction(action); connect(action, &QAction::triggered, this, &KBibTeXMainWindow::openRecentFile); } } } void KBibTeXMainWindow::openRecentFile() { QAction *action = static_cast<QAction *>(sender()); QUrl url = action->data().toUrl(); openDocument(url); } void KBibTeXMainWindow::queryCloseAll() { if (OpenFileInfoManager::instance()->queryCloseAll()) qApp->quit(); } void KBibTeXMainWindow::delayed() { /// Static variable, memorizes the dynamically created /// BibliographyService instance and allows to tell if /// this slot was called for the first or second time. static BibliographyService *bs = nullptr; if (bs == nullptr) { /// First call to this slot bs = new BibliographyService(this); if (!bs->isKBibTeXdefault() && KMessageBox::questionYesNo(this, i18n("KBibTeX is not the default editor for its bibliography formats like BibTeX or RIS."), i18n("Default Bibliography Editor"), KGuiItem(i18n("Set as Default Editor")), KGuiItem(i18n("Keep settings unchanged"))) == KMessageBox::Yes) { bs->setKBibTeXasDefault(); /// QTimer calls this slot again, but as 'bs' will not be NULL, /// the 'if' construct's 'else' path will be followed. QTimer::singleShot(5000, this, &KBibTeXMainWindow::delayed); } else { /// KBibTeX is default application or user doesn't care, /// therefore clean up memory delete bs; bs = nullptr; } } else { /// Second call to this slot. This time, clean up memory. bs->deleteLater(); bs = nullptr; } } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/mainwindow.h��������������������������������������������������������������0000664�0000000�0000000�00000004625�13313000262�0017730�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_MAINWINDOW_H #define KBIBTEX_PROGRAM_MAINWINDOW_H #include <kparts/mainwindow.h> #include <KConfigGroup> #include "openfileinfo.h" class QTextEdit; class QDragEnterEvent; class QDropEvent; class QCloseEvent; class ReferencePreview; class FileView; class KBibTeXMainWindow : public KParts::MainWindow { Q_OBJECT public: explicit KBibTeXMainWindow(QWidget *parent = nullptr); ~KBibTeXMainWindow() override; public slots: void openDocument(const QUrl &url); protected: // KMainWindow API void dragEnterEvent(QDragEnterEvent *event) override; void dropEvent(QDropEvent *event) override; void closeEvent(QCloseEvent *event) override; protected: void setupControllers(); protected slots: void newDocument(); void openDocumentDialog(); void closeDocument(); void showPreferences(); void documentSwitched(FileView *, FileView *); private slots: void showSearchResults(); void documentListsChanged(OpenFileInfo::StatusFlags statusFlags); void openRecentFile(); void queryCloseAll(); void delayed(); private: class KBibTeXMainWindowPrivate; KBibTeXMainWindowPrivate *d; }; #endif // KBIBTEX_PROGRAM_MAINWINDOW_H �����������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/mdiwidget.cpp�������������������������������������������������������������0000664�0000000�0000000�00000032524�13313000262�0020063�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "mdiwidget.h" #include <QVector> #include <QPair> #include <QLabel> #include <QApplication> #include <QSignalMapper> #include <QLayout> #include <QTreeView> #include <QAbstractItemModel> #include <QSortFilterProxyModel> #include <QHeaderView> #include <QPushButton> #include <QIcon> #include <QDebug> #include <KParts/Part> #include <KParts/ReadOnlyPart> #include <KConfigGroup> #include <KSharedConfig> #include <KLocalizedString> #include <KMessageBox> #include "kbibtex.h" #include "partwidget.h" #include "logging_program.h" class LRUItemModel : public QAbstractItemModel { Q_OBJECT private: OpenFileInfoManager *ofim; public: static const int URLRole = Qt::UserRole + 235; static const int SortRole = Qt::UserRole + 236; LRUItemModel(OpenFileInfoManager *openFileInfoManager, QObject *parent = nullptr) : QAbstractItemModel(parent), ofim(openFileInfoManager) { // nothing } void reset() { beginResetModel(); endResetModel(); } int columnCount(const QModelIndex &) const override { return 3; } QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override { OpenFileInfoManager::OpenFileInfoList ofiList = ofim->filteredItems(OpenFileInfo::RecentlyUsed); if (index.row() < ofiList.count()) { OpenFileInfo *ofiItem = ofiList[index.row()]; if (index.column() == 0) { if (role == Qt::DisplayRole || role == SortRole) { const QUrl url = ofiItem->url(); const QString fileName = url.fileName(); return fileName.isEmpty() ? squeeze_text(url.url(QUrl::PreferLocalFile), 32) : fileName; } else if (role == Qt::DecorationRole) return QIcon::fromTheme(ofiItem->mimeType().replace(QLatin1Char('/'), QLatin1Char('-'))); else if (role == Qt::ToolTipRole) return squeeze_text(ofiItem->url().url(QUrl::PreferLocalFile), 64); } else if (index.column() == 1) { if (role == Qt::DisplayRole || role == Qt::ToolTipRole) return ofiItem->lastAccess().toString(Qt::TextDate); else if (role == SortRole) return ofiItem->lastAccess().toTime_t(); } else if (index.column() == 2) { if (role == Qt::DisplayRole || role == Qt::ToolTipRole || role == SortRole) return ofiItem->url().url(QUrl::PreferLocalFile); } if (role == URLRole) return ofiItem->url(); } return QVariant(); } QVariant headerData(int section, Qt::Orientation, int role = Qt::DisplayRole) const override { if (role != Qt::DisplayRole || section > 2) return QVariant(); else if (section == 0) return i18n("Filename"); else if (section == 1) return i18n("Date/time of last use"); else return i18n("Full filename"); } QModelIndex index(int row, int column, const QModelIndex &) const override { return createIndex(row, column, row); } QModelIndex parent(const QModelIndex &) const override { return QModelIndex(); } int rowCount(const QModelIndex &parent = QModelIndex()) const override { if (parent == QModelIndex()) return ofim->filteredItems(OpenFileInfo::RecentlyUsed).count(); else return 0; } }; class MDIWidget::MDIWidgetPrivate { private: QTreeView *listLRU; LRUItemModel *modelLRU; QVector<QWidget *> welcomeWidgets; static const QString configGroupName; static const QString configHeaderState; void createWelcomeWidget() { welcomeWidget = new QWidget(p); QGridLayout *layout = new QGridLayout(welcomeWidget); layout->setRowStretch(0, 1); layout->setRowStretch(1, 0); layout->setRowStretch(2, 0); layout->setRowStretch(3, 0); layout->setRowStretch(4, 10); layout->setRowStretch(5, 1); layout->setColumnStretch(0, 1); layout->setColumnStretch(1, 10); layout->setColumnStretch(2, 1); layout->setColumnStretch(3, 0); layout->setColumnStretch(4, 1); layout->setColumnStretch(5, 10); layout->setColumnStretch(6, 1); QLabel *label = new QLabel(i18n("<qt>Welcome to <b>KBibTeX</b></qt>"), welcomeWidget); layout->addWidget(label, 1, 2, 1, 3, Qt::AlignHCenter | Qt::AlignTop); QPushButton *buttonNew = new QPushButton(QIcon::fromTheme(QStringLiteral("document-new")), i18n("New"), welcomeWidget); layout->addWidget(buttonNew, 2, 2, 1, 1, Qt::AlignLeft | Qt::AlignBottom); connect(buttonNew, &QPushButton::clicked, p, &MDIWidget::documentNew); QPushButton *buttonOpen = new QPushButton(QIcon::fromTheme(QStringLiteral("document-open")), i18n("Open..."), welcomeWidget); layout->addWidget(buttonOpen, 2, 4, 1, 1, Qt::AlignRight | Qt::AlignBottom); connect(buttonOpen, &QPushButton::clicked, p, &MDIWidget::documentOpen); label = new QLabel(i18n("List of recently used files:"), welcomeWidget); layout->addWidget(label, 3, 1, 1, 5, Qt::AlignLeft | Qt::AlignBottom); listLRU = new QTreeView(p); listLRU->setRootIsDecorated(false); listLRU->setSortingEnabled(true); listLRU->header()->setSectionResizeMode(QHeaderView::ResizeToContents); layout->addWidget(listLRU, 4, 1, 1, 5); connect(listLRU, &QTreeView::activated, p, &MDIWidget::slotOpenLRU); label->setBuddy(listLRU); p->addWidget(welcomeWidget); } void saveColumnsState() { QByteArray headerState = listLRU->header()->saveState(); KConfigGroup configGroup(config, configGroupName); configGroup.writeEntry(configHeaderState, headerState); config->sync(); } void restoreColumnsState() { KConfigGroup configGroup(config, configGroupName); QByteArray headerState = configGroup.readEntry(configHeaderState, QByteArray()); if (!headerState.isEmpty()) listLRU->header()->restoreState(headerState); } public: MDIWidget *p; OpenFileInfoManager *ofim; OpenFileInfo *currentFile; QWidget *welcomeWidget; QSignalMapper signalMapperCompleted; KSharedConfigPtr config; MDIWidgetPrivate(MDIWidget *parent) : p(parent), ofim(OpenFileInfoManager::instance()), currentFile(nullptr), config(KSharedConfig::openConfig(QStringLiteral("kbibtexrc"))) { createWelcomeWidget(); modelLRU = new LRUItemModel(ofim, listLRU); QSortFilterProxyModel *sfpm = new QSortFilterProxyModel(listLRU); sfpm->setSourceModel(modelLRU); sfpm->setSortRole(LRUItemModel::SortRole); listLRU->setModel(sfpm); connect(&signalMapperCompleted, static_cast<void(QSignalMapper::*)(QObject *)>(&QSignalMapper::mapped), p, &MDIWidget::slotCompleted); restoreColumnsState(); } ~MDIWidgetPrivate() { saveColumnsState(); delete welcomeWidget; } void addToMapper(OpenFileInfo *openFileInfo) { KParts::ReadOnlyPart *part = openFileInfo->part(p); signalMapperCompleted.setMapping(part, openFileInfo); connect(part, static_cast<void(KParts::ReadOnlyPart::*)()>(&KParts::ReadOnlyPart::completed), &signalMapperCompleted, static_cast<void(QSignalMapper::*)()>(&QSignalMapper::map)); } void updateLRU() { modelLRU->reset(); } }; const QString MDIWidget::MDIWidgetPrivate::configGroupName = QStringLiteral("WelcomeWidget"); const QString MDIWidget::MDIWidgetPrivate::configHeaderState = QStringLiteral("LRUlistHeaderState"); MDIWidget::MDIWidget(QWidget *parent) : QStackedWidget(parent), d(new MDIWidgetPrivate(this)) { connect(d->ofim, &OpenFileInfoManager::flagsChanged, this, &MDIWidget::slotStatusFlagsChanged); } MDIWidget::~MDIWidget() { delete d; } /// Clazy warns: "Missing reference on non-trivial type" for argument 'servicePtr', /// but type 'KService::Ptr' is actually a pointer (QExplicitlySharedDataPointer). void MDIWidget::setFile(OpenFileInfo *openFileInfo, KService::Ptr servicePtr) { KParts::Part *part = openFileInfo == nullptr ? nullptr : openFileInfo->part(this, servicePtr); /// 'part' will only be NULL if no OpenFileInfo object was given, /// or if the OpenFileInfo could not locate a KPart QWidget *widget = d->welcomeWidget; ///< by default use Welcome widget if (part != nullptr) { /// KPart object was located, use its object (instead of Welcome widget) widget = part->widget(); } else if (openFileInfo != nullptr) { /// A valid OpenFileInfo was given, but no KPart could be located d->ofim->close(openFileInfo); // FIXME does not close correctly if file is new const QString filename = openFileInfo->url().fileName(); if (filename.isEmpty()) KMessageBox::error(this, i18n("No part available for file of mime type '%1'.", openFileInfo->mimeType()), i18n("No Part Available")); else KMessageBox::error(this, i18n("No part available for file '%1'.", filename), i18n("No Part Available")); return; } FileView *oldEditor = nullptr; bool hasChanged = true; if (indexOf(widget) >= 0) { /// Chosen widget is already known (Welcome widget or a previously used KPart) /// In case previous (still current) widget was a KBibTeX Part, remember its editor PartWidget *currentPartWidget = qobject_cast<PartWidget *>(currentWidget()); oldEditor = currentPartWidget == nullptr ? nullptr : currentPartWidget->fileView(); /// Record if set widget is different from previous (still current) widget hasChanged = widget != currentWidget(); } else if (openFileInfo != nullptr) { /// Widget was not known previously, but a valid (new?) OpenFileInfo was given addWidget(widget); d->addToMapper(openFileInfo); } setCurrentWidget(widget); d->currentFile = openFileInfo; if (hasChanged) { /// This signal gets forwarded to KParts::MainWindow::createGUI(KParts::Part*) emit activePartChanged(part); /// If new widget comes from a KBibTeX Part, retrieve its editor PartWidget *newPartWidget = qobject_cast<PartWidget *>(widget); FileView *newEditor = newPartWidget == nullptr ? nullptr : newPartWidget->fileView(); emit documentSwitched(oldEditor, newEditor); } /// Notify main window about a change of current file, /// so that the title may contain the current file's URL. /// This signal will be connected to KMainWindow::setCaption. if (openFileInfo != nullptr) { QUrl url = openFileInfo->url(); if (url.isValid()) emit setCaption(QString(QStringLiteral("%1 [%2]")).arg(openFileInfo->shortCaption(), squeeze_text(openFileInfo->fullCaption(), 64))); else emit setCaption(openFileInfo->shortCaption()); } else emit setCaption(QString()); } FileView *MDIWidget::fileView() { OpenFileInfo *ofi = d->ofim->currentFile(); return qobject_cast<PartWidget *>(ofi->part(this)->widget())->fileView(); } OpenFileInfo *MDIWidget::currentFile() { return d->currentFile; } void MDIWidget::slotCompleted(QObject *obj) { OpenFileInfo *ofi = static_cast<OpenFileInfo *>(obj); QUrl oldUrl = ofi->url(); QUrl newUrl = ofi->part(this)->url(); if (oldUrl != newUrl) { qCDebug(LOG_KBIBTEX_PROGRAM) << "Url changed from " << oldUrl.url(QUrl::PreferLocalFile) << " to " << newUrl.url(QUrl::PreferLocalFile) << endl; d->ofim->changeUrl(ofi, newUrl); /// completely opened or saved files should be marked as "recently used" ofi->addFlags(OpenFileInfo::RecentlyUsed); emit setCaption(QString(QStringLiteral("%1 [%2]")).arg(ofi->shortCaption(), squeeze_text(ofi->fullCaption(), 64))); } } void MDIWidget::slotStatusFlagsChanged(OpenFileInfo::StatusFlags statusFlags) { if (statusFlags.testFlag(OpenFileInfo::RecentlyUsed)) d->updateLRU(); } void MDIWidget::slotOpenLRU(const QModelIndex &index) { QUrl url = index.data(LRUItemModel::URLRole).toUrl(); if (url.isValid()) emit documentOpenURL(url); } #include "mdiwidget.moc" ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/mdiwidget.h���������������������������������������������������������������0000664�0000000�0000000�00000005021�13313000262�0017520�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_MDIWIDGET_H #define KBIBTEX_PROGRAM_MDIWIDGET_H #include <QStackedWidget> #include <QModelIndex> #include <QUrl> #include <KService> #include "openfileinfo.h" class FileView; namespace KParts { class Part; } class OpenFileInfo; class MDIWidget : public QStackedWidget { Q_OBJECT public: explicit MDIWidget(QWidget *parent); ~MDIWidget() override; FileView *fileView(); OpenFileInfo *currentFile(); public slots: /** * Make the MDI widget show a different file using a part * as specified by a service. * If the OpenFileInfo object is NULL, show no file but a * Welcome widget instead. * Retrieving the part to be used will be delegated to the * OpenFileInfo object. */ void setFile(OpenFileInfo *openFileInfo, KService::Ptr servicePtr = KService::Ptr()); signals: void setCaption(const QString &); void documentSwitched(FileView *, FileView *); void activePartChanged(KParts::Part *); void documentNew(); void documentOpen(); void documentOpenURL(const QUrl &); private: class MDIWidgetPrivate; MDIWidgetPrivate *d; private slots: void slotCompleted(QObject *); void slotStatusFlagsChanged(OpenFileInfo::StatusFlags); void slotOpenLRU(const QModelIndex &); }; #endif // KBIBTEX_PROGRAM_MDIWIDGET_H ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/openfileinfo.cpp����������������������������������������������������������0000664�0000000�0000000�00000067305�13313000262�0020570�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "openfileinfo.h" #include <QString> #include <QTimer> #include <QFileInfo> #include <QWidget> #include <QUrl> #include <QDebug> #include <QApplication> #include <KLocalizedString> #include <KConfig> #include <KConfigGroup> #include <KSharedConfig> #include <KMimeTypeTrader> #include <KParts/Part> #include <KParts/ReadOnlyPart> #include <KParts/ReadWritePart> #include "fileimporterpdf.h" #include "logging_program.h" class OpenFileInfo::OpenFileInfoPrivate { private: static int globalCounter; int m_counter; public: static const QString keyLastAccess; static const QString keyURL; static const QString dateTimeFormat; OpenFileInfo *p; KParts::ReadOnlyPart *part; KService::Ptr internalServicePtr; QWidget *internalWidgetParent; QDateTime lastAccessDateTime; StatusFlags flags; OpenFileInfoManager *openFileInfoManager; QString mimeType; QUrl url; OpenFileInfoPrivate(OpenFileInfoManager *openFileInfoManager, const QUrl &url, const QString &mimeType, OpenFileInfo *p) : m_counter(-1), p(p), part(nullptr), internalServicePtr(KService::Ptr()), internalWidgetParent(nullptr), flags(nullptr) { this->openFileInfoManager = openFileInfoManager; this->url = url; if (this->url.isValid() && this->url.scheme().isEmpty()) qCWarning(LOG_KBIBTEX_PROGRAM) << "No scheme specified for URL" << this->url.toDisplayString(); this->mimeType = mimeType; } ~OpenFileInfoPrivate() { if (part != nullptr) { KParts::ReadWritePart *rwp = qobject_cast<KParts::ReadWritePart *>(part); if (rwp != nullptr) rwp->closeUrl(true); delete part; } } KParts::ReadOnlyPart *createPart(QWidget *newWidgetParent, KService::Ptr newServicePtr = KService::Ptr()) { if (!p->flags().testFlag(OpenFileInfo::Open)) { qCWarning(LOG_KBIBTEX_PROGRAM) << "Cannot create part for a file which is not open"; return nullptr; } Q_ASSERT_X(internalWidgetParent == nullptr || internalWidgetParent == newWidgetParent, "KParts::ReadOnlyPart *OpenFileInfo::OpenFileInfoPrivate::createPart(QWidget *newWidgetParent, KService::Ptr newServicePtr = KService::Ptr())", "internal widget should be either NULL or the same one as supplied as \"newWidgetParent\""); /** use cached part for this parent if possible */ if (internalWidgetParent == newWidgetParent && (newServicePtr == KService::Ptr() || internalServicePtr == newServicePtr)) { Q_ASSERT_X(part != nullptr, "KParts::ReadOnlyPart *OpenFileInfo::OpenFileInfoPrivate::createPart(QWidget *newWidgetParent, KService::Ptr newServicePtr = KService::Ptr())", "Part is NULL"); return part; } else if (part != nullptr) { KParts::ReadWritePart *rwp = qobject_cast<KParts::ReadWritePart *>(part); if (rwp != nullptr) rwp->closeUrl(true); part->deleteLater(); part = nullptr; } /// reset to invalid values in case something goes wrong internalServicePtr = KService::Ptr(); internalWidgetParent = nullptr; if (!newServicePtr) { /// no valid KService has been passed /// try to find a read-write part to open file newServicePtr = p->defaultService(); } if (!newServicePtr) { qCDebug(LOG_KBIBTEX_PROGRAM) << "PATH=" << getenv("PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "LD_LIBRARY_PATH=" << getenv("LD_LIBRARY_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "XDG_DATA_DIRS=" << getenv("XDG_DATA_DIRS"); qCDebug(LOG_KBIBTEX_PROGRAM) << "QT_PLUGIN_PATH=" << getenv("QT_PLUGIN_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "KDEDIRS=" << getenv("KDEDIRS"); qCCritical(LOG_KBIBTEX_PROGRAM) << "Cannot find service to handle mimetype " << mimeType << endl; return nullptr; } QString errorString; part = newServicePtr->createInstance<KParts::ReadWritePart>(newWidgetParent, (QObject *)newWidgetParent, QVariantList(), &errorString); if (part == nullptr) { qCDebug(LOG_KBIBTEX_PROGRAM) << "PATH=" << getenv("PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "LD_LIBRARY_PATH=" << getenv("LD_LIBRARY_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "XDG_DATA_DIRS=" << getenv("XDG_DATA_DIRS"); qCDebug(LOG_KBIBTEX_PROGRAM) << "QT_PLUGIN_PATH=" << getenv("QT_PLUGIN_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "KDEDIRS=" << getenv("KDEDIRS"); qCWarning(LOG_KBIBTEX_PROGRAM) << "Could not instantiate read-write part for service" << newServicePtr->name() << "(mimeType=" << mimeType << ", library=" << newServicePtr->library() << ", error msg=" << errorString << ")"; /// creating a read-write part failed, so maybe it is read-only (like Okular's PDF viewer)? part = newServicePtr->createInstance<KParts::ReadOnlyPart>(newWidgetParent, (QObject *)newWidgetParent, QVariantList(), &errorString); } if (part == nullptr) { /// still cannot create part, must be error qCCritical(LOG_KBIBTEX_PROGRAM) << "Could not instantiate part for service" << newServicePtr->name() << "(mimeType=" << mimeType << ", library=" << newServicePtr->library() << ", error msg=" << errorString << ")"; return nullptr; } if (url.isValid()) { /// open URL in part part->openUrl(url); /// update document list widget accordingly p->addFlags(OpenFileInfo::RecentlyUsed); p->addFlags(OpenFileInfo::HasName); } else { /// initialize part with empty document part->openUrl(QUrl()); } p->addFlags(OpenFileInfo::Open); internalServicePtr = newServicePtr; internalWidgetParent = newWidgetParent; Q_ASSERT_X(part != nullptr, "KParts::ReadOnlyPart *OpenFileInfo::OpenFileInfoPrivate::createPart(QWidget *newWidgetParent, KService::Ptr newServicePtr = KService::Ptr())", "Creation of part failed, is NULL"); /// test should not be necessary, but just to be save ... return part; } int counter() { if (!url.isValid() && m_counter < 0) m_counter = ++globalCounter; else if (url.isValid()) qCWarning(LOG_KBIBTEX_PROGRAM) << "This function should not be called if URL is valid"; return m_counter; } }; int OpenFileInfo::OpenFileInfoPrivate::globalCounter = 0; const QString OpenFileInfo::OpenFileInfoPrivate::dateTimeFormat = QStringLiteral("yyyy-MM-dd-hh-mm-ss-zzz"); const QString OpenFileInfo::OpenFileInfoPrivate::keyLastAccess = QStringLiteral("LastAccess"); const QString OpenFileInfo::OpenFileInfoPrivate::keyURL = QStringLiteral("URL"); OpenFileInfo::OpenFileInfo(OpenFileInfoManager *openFileInfoManager, const QUrl &url) : d(new OpenFileInfoPrivate(openFileInfoManager, url, FileInfo::mimeTypeForUrl(url).name(), this)) { // nothing } OpenFileInfo::OpenFileInfo(OpenFileInfoManager *openFileInfoManager, const QString &mimeType) : d(new OpenFileInfoPrivate(openFileInfoManager, QUrl(), mimeType, this)) { // nothing } OpenFileInfo::~OpenFileInfo() { delete d; } void OpenFileInfo::setUrl(const QUrl &url) { Q_ASSERT_X(url.isValid(), "void OpenFileInfo::setUrl(const QUrl&)", "URL is not valid"); d->url = url; if (d->url.scheme().isEmpty()) qCWarning(LOG_KBIBTEX_PROGRAM) << "No scheme specified for URL" << d->url.toDisplayString(); d->mimeType = FileInfo::mimeTypeForUrl(url).name(); addFlags(OpenFileInfo::HasName); } QUrl OpenFileInfo::url() const { return d->url; } bool OpenFileInfo::isModified() const { KParts::ReadWritePart *rwPart = qobject_cast< KParts::ReadWritePart *>(d->part); if (rwPart == nullptr) return false; else return rwPart->isModified(); } bool OpenFileInfo::save() { KParts::ReadWritePart *rwPart = qobject_cast< KParts::ReadWritePart *>(d->part); if (rwPart == nullptr) return true; else return rwPart->save(); } bool OpenFileInfo::close() { if (d->part == nullptr) { /// if there is no part, closing always "succeeds" return true; } KParts::ReadWritePart *rwp = qobject_cast<KParts::ReadWritePart *>(d->part); if (rwp == nullptr || rwp->closeUrl(true)) { d->part->deleteLater(); d->part = nullptr; d->internalWidgetParent = nullptr; return true; } return false; } QString OpenFileInfo::mimeType() const { return d->mimeType; } QString OpenFileInfo::shortCaption() const { if (d->url.isValid()) return d->url.fileName(); else return i18n("Unnamed-%1", d->counter()); } QString OpenFileInfo::fullCaption() const { if (d->url.isValid()) return d->url.url(QUrl::PreferLocalFile); else return shortCaption(); } /// Clazy warns: "Missing reference on non-trivial type" for argument 'servicePtr', /// but type 'KService::Ptr' is actually a pointer (QExplicitlySharedDataPointer). KParts::ReadOnlyPart *OpenFileInfo::part(QWidget *parent, KService::Ptr servicePtr) { return d->createPart(parent, servicePtr); } OpenFileInfo::StatusFlags OpenFileInfo::flags() const { return d->flags; } void OpenFileInfo::setFlags(StatusFlags statusFlags) { /// disallow files without name or valid url to become favorites if (!d->url.isValid() || !d->flags.testFlag(HasName)) statusFlags &= ~Favorite; /// files that got opened are by definition recently used files if (!d->url.isValid() && d->flags.testFlag(Open)) statusFlags &= RecentlyUsed; bool hasChanged = d->flags != statusFlags; d->flags = statusFlags; if (hasChanged) emit flagsChanged(statusFlags); } void OpenFileInfo::addFlags(StatusFlags statusFlags) { /// disallow files without name or valid url to become favorites if (!d->url.isValid() || !d->flags.testFlag(HasName)) statusFlags &= ~Favorite; bool hasChanged = (~d->flags & statusFlags) > 0; d->flags |= statusFlags; if (hasChanged) emit flagsChanged(statusFlags); } void OpenFileInfo::removeFlags(StatusFlags statusFlags) { bool hasChanged = (d->flags & statusFlags) > 0; d->flags &= ~statusFlags; if (hasChanged) emit flagsChanged(statusFlags); } QDateTime OpenFileInfo::lastAccess() const { return d->lastAccessDateTime; } void OpenFileInfo::setLastAccess(const QDateTime &dateTime) { d->lastAccessDateTime = dateTime; emit flagsChanged(OpenFileInfo::RecentlyUsed); } KService::List OpenFileInfo::listOfServices() { const QString mt(mimeType()); KService::List result = KMimeTypeTrader::self()->query(mt, QStringLiteral("KParts/ReadWritePart")); if (result.isEmpty()) result = KMimeTypeTrader::self()->query(mt, QStringLiteral("KParts/ReadOnlyPart")); /// Always include KBibTeX part in list of services: /// First, check if KBibTeX part is already in list as returned by /// KMimeTypeTrader::self()->query(..) bool listIncludesKBibTeXPart = false; for (KService::List::ConstIterator it = result.constBegin(); it != result.constEnd(); ++it) { qCDebug(LOG_KBIBTEX_PROGRAM) << "Found library for" << mt << ":" << (*it)->library(); listIncludesKBibTeXPart |= (*it)->library() == QStringLiteral("kbibtexpart"); } /// If KBibTeX part not in list, add it manually if (!listIncludesKBibTeXPart) { result << KService::serviceByDesktopName(QStringLiteral("kbibtexpart")); qCDebug(LOG_KBIBTEX_PROGRAM) << "Adding library for" << mt << ":" << result.last()->library(); } return result; } KService::Ptr OpenFileInfo::defaultService() { const QString mt = mimeType(); KService::Ptr result; if (mt == QStringLiteral("application/pdf") || mt == QStringLiteral("text/x-bibtex")) { /// If either a BibTeX file or a PDF file is to be opened, enforce using /// KBibTeX's part over anything else. /// KBibTeX has a FileImporterPDF which allows it to load .pdf file /// that got generated with KBibTeX and contain the original /// .bib file as an 'attachment'. /// This importer does not work with any other .pdf files!!! result = KService::serviceByDesktopName(QStringLiteral("kbibtexpart")); } if (!result) result = KMimeTypeTrader::self()->preferredService(mt, QStringLiteral("KParts/ReadWritePart")); if (!result) result = KMimeTypeTrader::self()->preferredService(mt, QStringLiteral("KParts/ReadOnlyPart")); if (result) qCDebug(LOG_KBIBTEX_PROGRAM) << "Using service" << result->name() << "(" << result->comment() << ") for mime type" << mt << "through library" << result->library(); else qCWarning(LOG_KBIBTEX_PROGRAM) << "Could not find service for mime type" << mt; return result; } KService::Ptr OpenFileInfo::currentService() { return d->internalServicePtr; } class OpenFileInfoManager::OpenFileInfoManagerPrivate { private: static const QString configGroupNameRecentlyUsed; static const QString configGroupNameFavorites; static const QString configGroupNameOpen; static const int maxNumRecentlyUsedFiles, maxNumFavoriteFiles, maxNumOpenFiles; public: OpenFileInfoManager *p; OpenFileInfoManager::OpenFileInfoList openFileInfoList; OpenFileInfo *currentFileInfo; OpenFileInfoManagerPrivate(OpenFileInfoManager *parent) : p(parent), currentFileInfo(nullptr) { // nothing } ~OpenFileInfoManagerPrivate() { for (OpenFileInfoManager::OpenFileInfoList::Iterator it = openFileInfoList.begin(); it != openFileInfoList.end(); ++it) { OpenFileInfo *ofi = *it; delete ofi; } } static bool byNameLessThan(const OpenFileInfo *left, const OpenFileInfo *right) { return left->shortCaption() < right->shortCaption(); } static bool byLRULessThan(const OpenFileInfo *left, const OpenFileInfo *right) { return left->lastAccess() > right->lastAccess(); /// reverse sorting! } void readConfig() { readConfig(OpenFileInfo::RecentlyUsed, configGroupNameRecentlyUsed, maxNumRecentlyUsedFiles); readConfig(OpenFileInfo::Favorite, configGroupNameFavorites, maxNumFavoriteFiles); readConfig(OpenFileInfo::Open, configGroupNameOpen, maxNumOpenFiles); } void writeConfig() { writeConfig(OpenFileInfo::RecentlyUsed, configGroupNameRecentlyUsed, maxNumRecentlyUsedFiles); writeConfig(OpenFileInfo::Favorite, configGroupNameFavorites, maxNumFavoriteFiles); writeConfig(OpenFileInfo::Open, configGroupNameOpen, maxNumOpenFiles); } void readConfig(OpenFileInfo::StatusFlag statusFlag, const QString &configGroupName, int maxNumFiles) { KSharedConfigPtr config = KSharedConfig::openConfig(QStringLiteral("kbibtexrc")); bool isFirst = true; KConfigGroup cg(config, configGroupName); for (int i = 0; i < maxNumFiles; ++i) { QUrl fileUrl = QUrl(cg.readEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyURL).arg(i), "")); if (!fileUrl.isValid()) break; if (fileUrl.scheme().isEmpty()) fileUrl.setScheme(QStringLiteral("file")); /// For local files, test if they exist; ignore local files that do not exist if (fileUrl.isLocalFile()) { if (!QFileInfo::exists(fileUrl.toLocalFile())) continue; } OpenFileInfo *ofi = p->contains(fileUrl); if (ofi == nullptr) { ofi = p->open(fileUrl); } ofi->addFlags(statusFlag); ofi->addFlags(OpenFileInfo::HasName); ofi->setLastAccess(QDateTime::fromString(cg.readEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyLastAccess).arg(i), ""), OpenFileInfo::OpenFileInfoPrivate::dateTimeFormat)); if (isFirst) { isFirst = false; if (statusFlag == OpenFileInfo::Open) p->setCurrentFile(ofi); } } } void writeConfig(OpenFileInfo::StatusFlag statusFlag, const QString &configGroupName, int maxNumFiles) { KSharedConfigPtr config = KSharedConfig::openConfig(QStringLiteral("kbibtexrc")); KConfigGroup cg(config, configGroupName); OpenFileInfoManager::OpenFileInfoList list = p->filteredItems(statusFlag); int i = 0; for (OpenFileInfoManager::OpenFileInfoList::ConstIterator it = list.constBegin(); i < maxNumFiles && it != list.constEnd(); ++it, ++i) { OpenFileInfo *ofi = *it; cg.writeEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyURL).arg(i), ofi->url().url(QUrl::PreferLocalFile)); cg.writeEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyLastAccess).arg(i), ofi->lastAccess().toString(OpenFileInfo::OpenFileInfoPrivate::dateTimeFormat)); } for (; i < maxNumFiles; ++i) { cg.deleteEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyURL).arg(i)); cg.deleteEntry(QString(QStringLiteral("%1-%2")).arg(OpenFileInfo::OpenFileInfoPrivate::keyLastAccess).arg(i)); } config->sync(); } }; const QString OpenFileInfoManager::OpenFileInfoManagerPrivate::configGroupNameRecentlyUsed = QStringLiteral("DocumentList-RecentlyUsed"); const QString OpenFileInfoManager::OpenFileInfoManagerPrivate::configGroupNameFavorites = QStringLiteral("DocumentList-Favorites"); const QString OpenFileInfoManager::OpenFileInfoManagerPrivate::configGroupNameOpen = QStringLiteral("DocumentList-Open"); const int OpenFileInfoManager::OpenFileInfoManagerPrivate::maxNumFavoriteFiles = 256; const int OpenFileInfoManager::OpenFileInfoManagerPrivate::maxNumRecentlyUsedFiles = 8; const int OpenFileInfoManager::OpenFileInfoManagerPrivate::maxNumOpenFiles = 16; OpenFileInfoManager *OpenFileInfoManager::singleton = nullptr; OpenFileInfoManager::OpenFileInfoManager(QObject *parent) : QObject(parent), d(new OpenFileInfoManagerPrivate(this)) { QTimer::singleShot(300, this, &OpenFileInfoManager::delayedReadConfig); } OpenFileInfoManager *OpenFileInfoManager::instance() { if (singleton == nullptr) singleton = new OpenFileInfoManager(QCoreApplication::instance()); return singleton; } OpenFileInfoManager::~OpenFileInfoManager() { delete d; } OpenFileInfo *OpenFileInfoManager::createNew(const QString &mimeType) { OpenFileInfo *result = new OpenFileInfo(this, mimeType); connect(result, &OpenFileInfo::flagsChanged, this, &OpenFileInfoManager::flagsChanged); d->openFileInfoList << result; result->setLastAccess(); return result; } OpenFileInfo *OpenFileInfoManager::open(const QUrl &url) { Q_ASSERT_X(url.isValid(), "OpenFileInfo *OpenFileInfoManager::open(const QUrl&)", "URL is not valid"); OpenFileInfo *result = contains(url); if (result == nullptr) { /// file not yet open result = new OpenFileInfo(this, url); connect(result, &OpenFileInfo::flagsChanged, this, &OpenFileInfoManager::flagsChanged); d->openFileInfoList << result; } /// else: file was already open, re-use and return existing OpenFileInfo pointer result->setLastAccess(); return result; } OpenFileInfo *OpenFileInfoManager::contains(const QUrl &url) const { if (!url.isValid()) return nullptr; /// can only be unnamed file for (auto *ofi : const_cast<const OpenFileInfoManager::OpenFileInfoList &>(d->openFileInfoList)) { if (ofi->url() == url) return ofi; } return nullptr; } bool OpenFileInfoManager::changeUrl(OpenFileInfo *openFileInfo, const QUrl &url) { OpenFileInfo *previouslyContained = contains(url); /// check if old url differs from new url and old url is valid if (previouslyContained != nullptr && previouslyContained->flags().testFlag(OpenFileInfo::Open) && previouslyContained != openFileInfo) { qCWarning(LOG_KBIBTEX_PROGRAM) << "Open file with same URL already exists, forcefully closing it" << endl; close(previouslyContained); } QUrl oldUrl = openFileInfo->url(); openFileInfo->setUrl(url); if (url != oldUrl && oldUrl.isValid()) { /// current document was most probabily renamed (e.g. due to "Save As") /// add old URL to recently used files, but exclude the open files list OpenFileInfo *ofi = open(oldUrl); // krazy:exclude=syscalls OpenFileInfo::StatusFlags statusFlags = (openFileInfo->flags() & (~OpenFileInfo::Open)) | OpenFileInfo::RecentlyUsed; ofi->setFlags(statusFlags); } if (previouslyContained != nullptr) { /// keep Favorite flag if set in file that have previously same URL if (previouslyContained->flags().testFlag(OpenFileInfo::Favorite)) openFileInfo->setFlags(openFileInfo->flags() | OpenFileInfo::Favorite); /// remove the old entry with the same url has it will be replaced by the new one d->openFileInfoList.remove(d->openFileInfoList.indexOf(previouslyContained)); previouslyContained->deleteLater(); OpenFileInfo::StatusFlags statusFlags = OpenFileInfo::Open; statusFlags |= OpenFileInfo::RecentlyUsed; statusFlags |= OpenFileInfo::Favorite; emit flagsChanged(statusFlags); } if (openFileInfo == d->currentFileInfo) emit currentChanged(openFileInfo, KService::Ptr()); emit flagsChanged(openFileInfo->flags()); return true; } bool OpenFileInfoManager::close(OpenFileInfo *openFileInfo) { if (openFileInfo == nullptr) { qCWarning(LOG_KBIBTEX_PROGRAM) << "void OpenFileInfoManager::close(OpenFileInfo *openFileInfo): Cannot close openFileInfo which is NULL"; return false; } bool isClosing = false; openFileInfo->setLastAccess(); /// remove flag "open" from file to be closed and determine which file to show instead OpenFileInfo *nextCurrent = (d->currentFileInfo == openFileInfo) ? nullptr : d->currentFileInfo; for (OpenFileInfo *ofi : const_cast<const OpenFileInfoManager::OpenFileInfoList &>(d->openFileInfoList)) { if (!isClosing && ofi == openFileInfo && openFileInfo->close()) { isClosing = true; /// Mark file as closed (i.e. not open) openFileInfo->removeFlags(OpenFileInfo::Open); /// If file has a filename, remember as recently used if (openFileInfo->flags().testFlag(OpenFileInfo::HasName)) openFileInfo->addFlags(OpenFileInfo::RecentlyUsed); } else if (nextCurrent == nullptr && ofi->flags().testFlag(OpenFileInfo::Open)) nextCurrent = ofi; } /// If the current document is to be closed, /// switch over to the next available one if (isClosing) setCurrentFile(nextCurrent); return isClosing; } bool OpenFileInfoManager::queryCloseAll() { /// Assume that all closing operations succeed bool isClosing = true; /// For keeping track of files that get closed here OpenFileInfoList restoreLaterList; /// For each file known ... for (OpenFileInfo *openFileInfo : const_cast<const OpenFileInfoManager::OpenFileInfoList &>(d->openFileInfoList)) { /// Check only open file (ignore recently used, favorites, ...) if (openFileInfo->flags().testFlag(OpenFileInfo::Open)) { if (openFileInfo->close()) { /// If file could be closed without user canceling the operation ... /// Mark file as closed (i.e. not open) openFileInfo->removeFlags(OpenFileInfo::Open); /// If file has a filename, remember as recently used if (openFileInfo->flags().testFlag(OpenFileInfo::HasName)) openFileInfo->addFlags(OpenFileInfo::RecentlyUsed); /// Remember file as to be marked as open later restoreLaterList.append(openFileInfo); } else { /// User chose to cancel closing operation, /// stop everything here isClosing = false; break; } } } if (isClosing) { /// Closing operation was not cancelled, therefore mark /// all files that were open before as open now. /// This makes the files to be reopened when KBibTeX is /// restarted again (assuming that this function was /// called when KBibTeX is exiting). for (OpenFileInfo *openFileInfo : const_cast<const OpenFileInfoManager::OpenFileInfoList &>(restoreLaterList)) { openFileInfo->addFlags(OpenFileInfo::Open); } d->writeConfig(); } return isClosing; } OpenFileInfo *OpenFileInfoManager::currentFile() const { return d->currentFileInfo; } /// Clazy warns: "Missing reference on non-trivial type" for argument 'servicePtr', /// but type 'KService::Ptr' is actually a pointer (QExplicitlySharedDataPointer). void OpenFileInfoManager::setCurrentFile(OpenFileInfo *openFileInfo, KService::Ptr servicePtr) { bool hasChanged = d->currentFileInfo != openFileInfo; OpenFileInfo *previous = d->currentFileInfo; d->currentFileInfo = openFileInfo; if (d->currentFileInfo != nullptr) { d->currentFileInfo->addFlags(OpenFileInfo::Open); d->currentFileInfo->setLastAccess(); } if (hasChanged) { if (previous != nullptr) previous->setLastAccess(); emit currentChanged(openFileInfo, servicePtr); } else if (openFileInfo != nullptr && servicePtr != openFileInfo->currentService()) emit currentChanged(openFileInfo, servicePtr); } OpenFileInfoManager::OpenFileInfoList OpenFileInfoManager::filteredItems(OpenFileInfo::StatusFlags required, OpenFileInfo::StatusFlags forbidden) { OpenFileInfoList result; for (OpenFileInfoList::Iterator it = d->openFileInfoList.begin(); it != d->openFileInfoList.end(); ++it) { OpenFileInfo *ofi = *it; if ((ofi->flags() & required) == required && (ofi->flags() & forbidden) == 0) result << ofi; } if (required == OpenFileInfo::RecentlyUsed) qSort(result.begin(), result.end(), OpenFileInfoManagerPrivate::byLRULessThan); else if (required == OpenFileInfo::Favorite || required == OpenFileInfo::Open) qSort(result.begin(), result.end(), OpenFileInfoManagerPrivate::byNameLessThan); return result; } void OpenFileInfoManager::deferredListsChanged() { OpenFileInfo::StatusFlags statusFlags = OpenFileInfo::Open; statusFlags |= OpenFileInfo::RecentlyUsed; statusFlags |= OpenFileInfo::Favorite; emit flagsChanged(statusFlags); } void OpenFileInfoManager::delayedReadConfig() { d->readConfig(); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/openfileinfo.h������������������������������������������������������������0000664�0000000�0000000�00000013440�13313000262�0020224�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_PROGRAM_OPENFILEINFO_H #define KBIBTEX_PROGRAM_OPENFILEINFO_H #include <QObject> #include <QList> #include <QDateTime> #include <QUrl> #include <QVariant> #include <KService> #include "fileinfo.h" namespace KParts { class ReadOnlyPart; } class OpenFileInfoManager; class OpenFileInfo : public QObject { Q_OBJECT public: enum StatusFlag { Open = 0x1, RecentlyUsed = 0x2, Favorite = 0x4, HasName = 0x8 }; Q_DECLARE_FLAGS(StatusFlags, StatusFlag) ~OpenFileInfo() override; KParts::ReadOnlyPart *part(QWidget *parent, KService::Ptr servicePtr = KService::Ptr()); QString shortCaption() const; QString fullCaption() const; QString mimeType() const; QUrl url() const; bool isModified() const; bool save(); /** * Close the current file. The user may interrupt the closing * if the file is modified and he/she presses "Cancel" when asked * to close the modified file. * * @return returns true if the closing was successful, otherwise false */ bool close(); StatusFlags flags() const; void setFlags(StatusFlags statusFlags); void addFlags(StatusFlags statusFlags); void removeFlags(StatusFlags statusFlags); QDateTime lastAccess() const; void setLastAccess(const QDateTime &dateTime = QDateTime::currentDateTime()); KService::List listOfServices(); KService::Ptr defaultService(); KService::Ptr currentService(); friend class OpenFileInfoManager; signals: void flagsChanged(OpenFileInfo::StatusFlags statusFlags); protected: OpenFileInfo(OpenFileInfoManager *openFileInfoManager, const QUrl &url); OpenFileInfo(OpenFileInfoManager *openFileInfoManager, const QString &mimeType = FileInfo::mimetypeBibTeX); void setUrl(const QUrl &url); private: class OpenFileInfoPrivate; OpenFileInfoPrivate *d; }; Q_DECLARE_METATYPE(OpenFileInfo *) class OpenFileInfoManager: public QObject { Q_OBJECT public: typedef QVector<OpenFileInfo *> OpenFileInfoList; static OpenFileInfoManager *instance(); ~OpenFileInfoManager() override; OpenFileInfo *createNew(const QString &mimeType = FileInfo::mimetypeBibTeX); /** * Open the given bibliography file as specified in the URL. * If the file is already open, an existing OpenFileInfo pointer will be * returned. If the file was not yet open, a new OpenFileInfo object will * be created and returned. * There shall be no two different OpenFileInfo objects representing * the same file. * @param url URL to bibliography file to open * @return an OpenFileInfo object representing the opened file */ OpenFileInfo *open(const QUrl &url); OpenFileInfo *contains(const QUrl &url) const; OpenFileInfo *currentFile() const; bool changeUrl(OpenFileInfo *openFileInfo, const QUrl &url); bool close(OpenFileInfo *openFileInfo); /** * Try to close all open files. If a file is modified, the user will be asked * if the file shall be saved first. Depending on the KPart, the user may opt * to cancel the closing operation for any modified file. * If the user chooses to cancel, this function quits the closing process and * returns false. Files closed so far stay closed, the remaining open files stay * open. * If the user does not interrupt this function (e.g. no file was modified or * the user confirmed to save or to discard changes), all files get closed. * However, all files that were open before will be marked as opened * again. This could render the user interface inconsistent (therefore this * function should be called only when exiting KBibTeX), but it allows to * easily reopen in the next session all files that were open at the time * this function was called in this session. * @return true if all files could be closed successfully, else false. */ bool queryCloseAll(); void setCurrentFile(OpenFileInfo *openFileInfo, KService::Ptr servicePtr = KService::Ptr()); OpenFileInfoList filteredItems(OpenFileInfo::StatusFlags required, OpenFileInfo::StatusFlags forbidden = nullptr); friend class OpenFileInfo; signals: void currentChanged(OpenFileInfo *, KService::Ptr); void flagsChanged(OpenFileInfo::StatusFlags statusFlags); protected: explicit OpenFileInfoManager(QObject *parent); private: class OpenFileInfoManagerPrivate; OpenFileInfoManagerPrivate *d; static OpenFileInfoManager *singleton; private slots: void deferredListsChanged(); void delayedReadConfig(); }; #endif // KBIBTEX_PROGRAM_OPENFILEINFO_H ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/org.kde.kbibtex.appdata.xml�����������������������������������������������0000664�0000000�0000000�00000062171�13313000262�0022516�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?xml version="1.0" encoding="utf-8"?> <component type="desktop"> <id>org.kde.kbibtex.desktop</id> <metadata_license>CC0-1.0</metadata_license> <project_license>GPL-2.0+</project_license> <name>KBibTeX</name> <name xml:lang="ca">KBibTeX</name> <name xml:lang="ca-valencia">KBibTeX</name> <name xml:lang="cs">KBibTeX</name> <name xml:lang="de">KBibTeX</name> <name xml:lang="en-GB">KBibTeX</name> <name xml:lang="es">KBibTeX</name> <name xml:lang="fi">KBibTeX</name> <name xml:lang="fr">KBibTeX</name> <name xml:lang="gl">KBibTeX</name> <name xml:lang="it">KBibTeX</name> <name xml:lang="nl">KBibTeX</name> <name xml:lang="pl">KBibTeX</name> <name xml:lang="pt">KBibTeX</name> <name xml:lang="pt-BR">KBibTeX</name> <name xml:lang="sk">KBibTeX</name> <name xml:lang="sv">Kbibtex</name> <name xml:lang="uk">KBibTeX</name> <name xml:lang="x-test">xxKBibTeXxx</name> <name xml:lang="zh-CN">KBibTeX</name> <summary>BibTeX editor by KDE to edit bibliographies used with LaTeX</summary> <summary xml:lang="ca">Editor de BibTeX, creat per la comunitat KDE, per editar bibliografies emprant LaTeX</summary> <summary xml:lang="ca-valencia">Editor de BibTeX, creat per la comunitat KDE, per editar bibliografies emprant LaTeX</summary> <summary xml:lang="de">BibTeX-Editor von KDE zum Bearbeiten von Bibliografien mit LaTeX</summary> <summary xml:lang="en-GB">BibTeX editor by KDE to edit bibliographies used with LaTeX</summary> <summary xml:lang="es">Editor de BibTeX creado por KDE para editar las bibliografías usadas con LaTeX</summary> <summary xml:lang="fi">KDE:n BibTeX-muokkain LaTeXissa käytettävien lähdeluettelojen muokkaamiseen</summary> <summary xml:lang="fr">Éditeur BixTeX par KDE pour modifier des bibliographies utilisées avec LaTeX</summary> <summary xml:lang="gl">Editor de BibTeX de KDE, para editar bibliografías que se usen con LaTeX</summary> <summary xml:lang="it">Editor BibTeX di KDE per la modifica delle bibliografie usate con LaTeX</summary> <summary xml:lang="nl">BibTeX-bewerker door KDE om bibliografieën te bewerken met LaTeX</summary> <summary xml:lang="pl">Edytor BibTeX autorstwa KDE do edytowania bibliografii używanych w edytorach LaTeX</summary> <summary xml:lang="pt">O BibTeX é um editor do KDE, onde se podem editar bibliografias usadas com o LaTeX</summary> <summary xml:lang="sv">Bibtex-editor av KDE för att redigera bibliografier använda med Latex</summary> <summary xml:lang="uk">Редактор BibTeX від KDE. Призначений для редагування бібліографій, що використовуються у LaTeX.</summary> <summary xml:lang="x-test">xxBibTeX editor by KDE to edit bibliographies used with LaTeXxx</summary> <summary xml:lang="zh-CN">KDE 提供的 BibTeX 编辑器,用来编辑 LaTeX 使用的参考文献目录</summary> <description> <p> KBibTeX is a reference management application which can be used to collect TeX/LaTeX bibliographies and export them in various formats. </p> <p xml:lang="ca">El KBibTeX és una aplicació per a la gestió de referències que es pot utilitzar per recollir bibliografies en TeX/LaTeX i exportar-les a diversos formats.</p> <p xml:lang="ca-valencia">El KBibTeX és una aplicació per a la gestió de referències que es pot utilitzar per recollir bibliografies en TeX/LaTeX i exportar-les a diversos formats.</p> <p xml:lang="de">KBibTeX ist ein Programm zur Verwaltung von Referenzen und kann dazu benutzt werden, TeX/LaTeX-Bibliografien zusammenzustellen und sie in verschiedenen Formaten zu exportieren.</p> <p xml:lang="en-GB">KBibTeX is a reference management application which can be used to collect TeX/LaTeX bibliographies and export them in various formats.</p> <p xml:lang="es">KBibTeX es una aplicación de gestión de referencias que se puede utilizar para recoger bibliografías TeX/LaTeX y exportarlas en varios formatos.</p> <p xml:lang="fi">KBibTeX on viitteidenhallintasovellus, jolla voi koota TeX/LaTeX-lähdeluetteloita ja viedä niitä eri tiedostomuotoihin.</p> <p xml:lang="fr">KBibTeX est une application de gestion de références qui peut être utilisée pour collecter des bibliographies TeX/LaTeX et les exporter dans divers formats.</p> <p xml:lang="gl">KBibTeX é un aplicativo de xestión de referencias que pode usar para recoller bibliografías de TeX/LaTeX e exportalas en diversos formatos.</p> <p xml:lang="it">KBibTeX è un'applicazione di gestione delle fonti che può essere utilizzata per radunare bibliografie TeX/LaTeX ed esportarle in vari formati.</p> <p xml:lang="nl">KBibTeX is een beheertoepassing voor referenties die gebruikt kan worden om TeX/LaTeX bibliografieën te verzamelen en te exporteren in verschillende formaten.</p> <p xml:lang="pl">KBibTeX jest programem do zarządzania odsyłaczami, którego można użyć do zbierania bibliografii TeX/LaTeX i eksportowania ich w różnych postaciach.</p> <p xml:lang="pt">O KBibTeX é uma aplicação de gestão de referências que pode ser usada para recolher as bibliografias de TeX/LaTeX e exportá-las em vários formatos.</p> <p xml:lang="sv">Kbibtex är ett referenshanteringsprogram som kan användas för att samla Tex/Latex-bibliografier och exportera dem med diverse format.</p> <p xml:lang="uk">KBibTeX — програма для керування посиланнями, якою можна скористатися для створення бібліографій TeX/LaTeX та експортування даних бібліографій у різноманітних форматах.</p> <p xml:lang="x-test">xxKBibTeX is a reference management application which can be used to collect TeX/LaTeX bibliographies and export them in various formats.xx</p> <p>KBibTeX can do the following things:</p> <p xml:lang="ca">KBibTeX pot fer les següents coses:</p> <p xml:lang="ca-valencia">KBibTeX pot fer les següents coses:</p> <p xml:lang="de">Mit KBibTeX können Sie folgende Aufgabe erledigen:</p> <p xml:lang="en-GB">KBibTeX can do the following things:</p> <p xml:lang="es">KBibTeX puede hacer las siguientes tareas:</p> <p xml:lang="fi">KBibTeXilla voit tehdä seuraavia asioita:</p> <p xml:lang="fr">KBibTeX peut faire les choses suivantes : </p> <p xml:lang="gl">KBibTeX pode facer o seguinte:</p> <p xml:lang="it">KBibTeX è in grado di svolgere i seguenti compiti:</p> <p xml:lang="nl">KBibTeX kan het volgende doen:</p> <p xml:lang="pl">KBibTeX ma następujące możliwości:</p> <p xml:lang="pt">O KBibTeX pode fazer as seguintes coisas:</p> <p xml:lang="sk">KBibTeX vie robiť nasledovné veci:</p> <p xml:lang="sv">Kbibtex kan göra följande saker:</p> <p xml:lang="uk">KBibTeX може виконувати такі завдання:</p> <p xml:lang="x-test">xxKBibTeX can do the following things:xx</p> <p xml:lang="zh-CN">KBibTeX 可以完成以下工作:</p> <ul> <li>Preview bibliography entries in various formats (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), fancy (XML/XSLT), and abstract-only (XML/XSLT)). Additional preview styles become available when bibtex2html is installed.</li> <li xml:lang="ca">Vista prèvia de les entrades a la bibliografia en diversos formats (Origen (BibTeX), Origen (RIS), Viquipèdia, estàndard (XML/XSLT), elaborat (XML/XSLT), i només el resum (XML/XSLT)). Hi ha disponibles estils de vista prèvia addicionals quan s'instal·la «bibtex2html».</li> <li xml:lang="ca-valencia">Vista prèvia de les entrades a la bibliografia en diversos formats (Origen (BibTeX), Origen (RIS), Viquipèdia, estàndard (XML/XSLT), elaborat (XML/XSLT), i només el resum (XML/XSLT)). Hi ha disponibles estils de vista prèvia addicionals quan s'instal·la «bibtex2html».</li> <li xml:lang="de">Vorschau und Speichern von Bibliografie-Einträgen in verschiedenen Formaten (Quelltext (BibTeX), Quelltext (RIS), Wikipedia, Standard (XML/XSLT), fancy (XML/XSLT) und abstract-only (XML/XSLT)). Zusätzliche Vorschaustile sind verfügbar, wenn Sie „bibtex2html“ installiert haben.</li> <li xml:lang="en-GB">Preview bibliography entries in various formats (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), fancy (XML/XSLT), and abstract-only (XML/XSLT)). Additional preview styles become available when bibtex2html is installed.</li> <li xml:lang="es">Previsualizar las entradas de bibliografías en varios formatos (Fuente (BibTeX), fuente (RIS), Wikipedia, estándar (XML/XSLT), elegante (XML/XSLT), y solo abstracto (XML/XSLT)). Al instalar bibtex2html dispondrá de estilos de previsualización adicionales.</li> <li xml:lang="fi">Esikatsella lähdetietueita eri muodoissa (BibTeX- tai RIS-lähdekoodina, Wikipedia-muodossa, vakio- tai tyylitellyssä muodossa (XML/XSLT) sekä vain tiivistelminä (XML/XSLT)). Lisäesikatselutyylit tulevat käyttöön, kun bibtex2html on asennettu.</li> <li xml:lang="fr">Prévisualiser des entrées bibliographiques dans divers formats (Source (BibTeX), Source (RIS), Wikipédia, standard (XML/XSLT), sophistiqué (XML/XSLT), et abstrait (XML/XSLT)). Des styles d'aperçus supplémentaires sont disponibles après de l'installation de bibtex2html.</li> <li xml:lang="gl">Obteña unha vista previa de entradas bibliográficas en varios formatos: fonte (BibTeX ou RIS), Wikipedia, estándar (XML/XSLT), elegante (XML/XSLT), e só resumo (XML/XSLT). Se ten «bibtex2html» instalado, disporá de estilos de vista previa adicionais.</li> <li xml:lang="it">Visualizzare in anteprima le voci bibliografiche in vari formati (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), fancy (XML/XSLT), e in formato solo sommario (XML/XSLT)). Saranno disponibili stili aggiuntivi di anteprima se si installa il pacchetto bibtex2html.</li> <li xml:lang="nl">Bibliografie-items bekijken in verschillende formaten (bron (BibTeX), bron (RIS), Wikipedia, standaard (XML/XSLT), elegant (XML/XSLT) en alleen abstract (XML/XSLT)). Additionele stijlen om te bekijken worden beschikbaar wanneer bibtex2html is geïnstalleerd.</li> <li xml:lang="pl">Podgląd wpisów bibliograficznych w rozmaitych formatach (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), elegancki (XML/XSLT) i tylko streszczenia (XML/XSLT)). Dodatkowo, dostępne stają się style podglądu, gdy wgrany jest pakiet bibtex2html.</li> <li xml:lang="pt">Antever os itens bibliográficos em diversos formatos (Código (BibTeX), Código (RIS), Wikipédia, normal (XML/XSLT), bonito (XML/XSLT) e apenas o resumo (XML/XSLT)). Ficam disponíveis mais estilos de antevisão quando instalar o 'bibtex2html'.</li> <li xml:lang="sv">Förhandsgranska bibliografier med olika format (källa (Bibtex), källa (RIS), Wikipedia, standard (XML/XSLT), snygg (XML/XSLT) och bara sammandrag (XML/XSLT)). Ytterligare förhandsgranskningsstilar är tillgängliga om bibtex2html är installerat.</li> <li xml:lang="uk">Виконувати попередній перегляд і зберігати записи бібліографії у різних форматах (початковий код (BibTeX), початковий код (RIS), Вікіпедія, standard (XML/XSLT), fancy (XML/XSLT) та abstract-only (XML/XSLT)). Доступ до додаткових стилів попереднього перегляду можна отримати після встановлення програми bibtex2html.</li> <li xml:lang="x-test">xxPreview bibliography entries in various formats (Source (BibTeX), Source (RIS), Wikipedia, standard (XML/XSLT), fancy (XML/XSLT), and abstract-only (XML/XSLT)). Additional preview styles become available when bibtex2html is installed.xx</li> <li>Import data in various bibliography file formats such as BibTeX, RIS and ISI (requires bibutils) and export data to PDF (requires pdflatex), PostScript (requires latex), RTF (requires latex2rtf), and HTML.</li> <li xml:lang="ca">Importar les dades en diversos formats de fitxer per a bibliografies, tals com BibTeX, RIS i ISI (requereix «bibutils») i exporta les dades a PDF (requereix «pdflatex»), PostScript (requereix «latex»), RTF (requereix «latex2rtf»), i HTML.</li> <li xml:lang="ca-valencia">Importar les dades en diversos formats de fitxer per a bibliografies, tals com BibTeX, RIS i ISI (requereix «bibutils») i exporta les dades a PDF (requereix «pdflatex»), PostScript (requereix «latex»), RTF (requereix «latex2rtf»), i HTML.</li> <li xml:lang="de">Import von Daten aus verschiedenen Bibliografie-Dateiformaten wie BibTeX, RIS und ISI (benötigt bibutils) und Export von Daten in die Formate PDF (benötigt pdflatex), PostScript (benötigt latex), RTF (benötigt latex2rtf) und HTML.</li> <li xml:lang="en-GB">Import data in various bibliography file formats such as BibTeX, RIS and ISI (requires bibutils) and export data to PDF (requires pdflatex), PostScript (requires latex), RTF (requires latex2rtf), and HTML.</li> <li xml:lang="es">Importa datos en varios formatos de archivo de bibliografía, como por ejemplo BibTeX, RIS y ISI (requiere bibutils) y exporta datos a PDF (requiere pdflatex), PostScript (requiere latex), RTF (requiere latex2rtf), y HTML.</li> <li xml:lang="fi">Tuoda tietoja eri lähdetietokantamuodoista kuten BibTeXistä, RISistä tai ISIstä (vaatii bibutils-paketin) sekä viedä tietoja PDF:ksi (vaatii pdflatexin), PostScriptiksi (vaatii latexin), RTF:ksi (vaatii latex2rtf:n) tai HTML:ksi.</li> <li xml:lang="fr">Importer des données dans divers formats de fichiers bibliographiques comme BibTeX, RIS, ISI (nécessite bibutils) et exporter des données en PDF (nécessite pdflatex), PostScript (nécessite latex), RTF (nécessite latex2rtf), et HTML.</li> <li xml:lang="gl">Importe datos in varios formatos de ficheiro bibliográficos como BibTeX, RIS e ISI (require «bibutils») e exporte os datos a PDF (require «pdflatex»), PostScript (require «latex»), RTF (require «latex2rtf»), e HTML.</li> <li xml:lang="it">Importare i dati in vari formati di file bibliografici, come BibTeX, RIS e ISI (richiede bibutils), ed esportare i dati in PDF (richiede pdflatex), PostScript (richiede latex), RTF (richiede latex2rtf) e HTML.</li> <li xml:lang="nl">Gegevens importeren in verschillende bibliografie bestandsformaten zoals BibTeX, RIS en ISI (vereist bibutils) en exporteert gegevens naar PDF (vereist pdflatex), PostScript (vereist latex), RTF (vereist latex2rtf) en HTML.</li> <li xml:lang="pl">Importowanie danych w rozmaitych formatach plików bibliografii takich jak BibTeX, RIS oraz ISI (wymaga bibutils) i eksportowanie danych do PDF (wymaga pdflatex), PostScript (wymaga latex), RTF (wymaga latex2rtf) oraz HTML.</li> <li xml:lang="pt">Importar os dados em diversos formatos de ficheiros bibliográficos, como o BibTeX, RIS e ISI (precisa das 'bibutils') e exportar os dados para PDF (precisa do 'pdflatex'), PostScript (precisa do 'latex'), RTF (precisa do 'latex2rtf') e HTML.</li> <li xml:lang="sv">Importera data med diverse bibliografi-filformat såsom Bibtex, RIS och ISI (kräver bibutils) och exportera data till PDF (kräver pdflatex), PostScript (kräver latex), RTF (kräver latex2rtf), och HTML.</li> <li xml:lang="uk">Імпортувати дані у різноманітних форматах файлів бібліографії, зокрема BibTeX, RIS та ISI (слід встановити bibutils) та експортувати дані до PDF (потребує встановлення pdflatex), PostScript (потребує встановлення latex), RTF (потребує встановлення latex2rtf) та HTML.</li> <li xml:lang="x-test">xxImport data in various bibliography file formats such as BibTeX, RIS and ISI (requires bibutils) and export data to PDF (requires pdflatex), PostScript (requires latex), RTF (requires latex2rtf), and HTML.xx</li> <li>Search for the bibliography entries data in online databases (e.g. Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="ca">Cerca dades d'entrades bibliogràfiques a les bases de dades en línia (p. ex., Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="ca-valencia">Cerca dades d'entrades bibliogràfiques a les bases de dades en línia (p. ex., Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="de">Suche nach Daten mit Bibliografie-Einträgen in Online-Datenbanken (z. B. Google Scholar, ACM, IEEE, arXiv, usw.)</li> <li xml:lang="en-GB">Search for the bibliography entries data in online databases (e.g. Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="es">Busca datos de las entradas bibliográficas en bases de datos en línea (por ejemplo Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="fi">Etsiä lähdetietueiden tietoja verkon tietokannoista (Google Scholarista, ACM:stä, IEEE:stä, arXivista jne.)</li> <li xml:lang="fr">Rechercher des entrées bibliographiques dans des banques de données en ligne (par exemple Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="gl">Busque os datos das entradas bibliográficas en base de datos en internet (como Google Scholar, ACM, IEEE, arXiv, etc.).</li> <li xml:lang="it">Ricercare voci bibliografiche nei database in linea (per es., Google Scholar, ACM, IEEE, arXiv, ecc.)</li> <li xml:lang="nl">Zoeken naar de bibliografie-items in online databases (bijv. Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="pl">Wyszukiwanie wpisów bibliograficznych w bazach internetowych (np. Google Scholar, ACM, IEEE, arXiv, itp.)</li> <li xml:lang="pt">Procurar por dados de itens bibliográficos nas bases de dados 'online' (p.ex. Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="sv">Söka efter bibliografiposternas data i databaser på nätet (t.ex. Google Scholar, ACM, IEEE, arXiv, etc.)</li> <li xml:lang="uk">Виконувати пошук даних записів бібліографії у базах даних у інтернеті (зокрема у Google Scholar, ACM, IEEE, arXiv тощо).</li> <li xml:lang="x-test">xxSearch for the bibliography entries data in online databases (e.g. Google Scholar, ACM, IEEE, arXiv, etc.)xx</li> <li>Preview local or remote (online) resources, e.g. PDF files, linked in the BibTEX entry.</li> <li xml:lang="ca">Vista prèvia de recursos locals o remots (connectats), p. ex., fitxers PDF, vinculats amb l'entrada de BibTeX.</li> <li xml:lang="ca-valencia">Vista prèvia de recursos locals o remots (connectats), p. ex., fitxers PDF, vinculats amb l'entrada de BibTeX.</li> <li xml:lang="de">Anzeige von lokalen und entfernten (Online-) Ressourcen wie zum Beispiel PDF-Dateien, die mit einem BibTEX Eintrag verknüpft sind.</li> <li xml:lang="en-GB">Preview local or remote (online) resources, e.g. PDF files, linked in the BibTEX entry.</li> <li xml:lang="es">Previsualiza los recursos locales o remotos (en línea), por ejemplo archivos PDF, que estén enlazados en una entrada BibTEX.</li> <li xml:lang="fi">Esikatsella BibTeX-tietueeseen kytkettyjä paikallisia tai etäresursseja, esim. PDF-tiedostoja.</li> <li xml:lang="fr">Prévisualiser des ressources locales ou distantes (en ligne), par exemple des fichiers PDF ou des liens dans l'entrée BibTeX.</li> <li xml:lang="gl">Obteña unha vista previa de recursos locais ou en internet, como ficheiros PDF, que estean ligados desde a entrada de BibTeX.</li> <li xml:lang="it">Visualizzare in anteprima risorse locali o remote (in linea), per es. file PDF, collegate nella voce BibTEX.</li> <li xml:lang="nl">Locale of hulpbronnen op afstand (online), bijv. PDF bestanden, gekoppeld in het BibTEX item.</li> <li xml:lang="pl">Podgląd lokalnych lub zdalnych (internetowych) zasobów, np. plików PDF, do których odwołuje się wpis BibTEX.</li> <li xml:lang="pt">Fazer uma antevisão dos recursos locais ou remotos ('online'), p.ex. ficheiros PDF, associada aos itens do BibTEX.</li> <li xml:lang="sv">Förhandsgranska lokala eller fjärresurser (på nätet), t.ex. PDF-filer, länkade i Bibtex-posten.</li> <li xml:lang="uk">Попередньо переглядати локальні та інтернет-ресурси, зокрема файли PDF, пов’язані із записом бібліографії BibTeX.</li> <li xml:lang="x-test">xxPreview local or remote (online) resources, e.g. PDF files, linked in the BibTEX entry.xx</li> <li>Find and merge duplicate entries in bibliography.</li> <li xml:lang="ca">Troba i fusiona les entrades duplicades a la bibliografia.</li> <li xml:lang="ca-valencia">Troba i fusiona les entrades duplicades a la bibliografia.</li> <li xml:lang="de"> Suchen und zusammenführen von doppelten Einträgen in Bibliografien.</li> <li xml:lang="en-GB">Find and merge duplicate entries in bibliography.</li> <li xml:lang="es">Busca y fusiona las entradas duplicadas en la bibliografía.</li> <li xml:lang="fi">Etsiä ja yhdistää lähdetietueiden kaksoiskappaleita.</li> <li xml:lang="fr">Trouver et fusionner des doublons dans les entrées bibliographiques.</li> <li xml:lang="gl">Atope e fusione entradas duplicadas da bibliografía.</li> <li xml:lang="it">Trovare e unire voci duplicate nella bibliografia.</li> <li xml:lang="nl">Zoeken en mengen van dubbele items in een bibliografie.</li> <li xml:lang="pl">Znajdywanie i scalanie powielonych wpisów w bibliografii.</li> <li xml:lang="pt">Procurar e reunir itens duplicados na bibliografia.</li> <li xml:lang="sv">Hitta och sammanfoga duplicerade poster i bibliografin.</li> <li xml:lang="uk">Шукати і об’єднувати дублікати записів у бібліографії.</li> <li xml:lang="x-test">xxFind and merge duplicate entries in bibliography.xx</li> <li>Integrate your bibliographies with LaTeX editors such as Kile and LyX.</li> <li xml:lang="ca">Integra les vostres bibliografies amb editors de LaTeX com Kile i LyX.</li> <li xml:lang="ca-valencia">Integra les vostres bibliografies amb editors de LaTeX com Kile i LyX.</li> <li xml:lang="de">Integration Ihrer Bibliografien mit LaTeX-Editoren wie Kile und LyX.</li> <li xml:lang="en-GB">Integrate your bibliographies with LaTeX editors such as Kile and LyX.</li> <li xml:lang="es">Integra sus bibliografías con editores LaTeX como Kile y LyX.</li> <li xml:lang="fi">Integroida lähdetietokantasi LaTeX-muokkaimeen kuten Kileen tai LyXiin.</li> <li xml:lang="fr">Intégrer vos bibliographies avec des éditeurs LaTeX comme Kile et LyX.</li> <li xml:lang="gl">Integre as súas bibliografías con editores de LaTeX como Kile e LyX.</li> <li xml:lang="it">Integrare le tue bibliografie con gli editor LaTeX, come Kile e LyX.</li> <li xml:lang="nl">Integreer uw bibliografieën met LaTeX bewerkers zoals Kile en LyX.</li> <li xml:lang="pl">Integracja bibliografii z edytorami LaTeX takimi jak Kile i LyX.</li> <li xml:lang="pt">Integrar as suas bibliografias com os editores de LaTeX, como o Kile e o LyX.</li> <li xml:lang="sv">Integrera bibliografierna med Latex-editorer såsom Kile och LyX</li> <li xml:lang="uk">Інтегрувати ваші бібліографії з редакторами LaTeX, зокрема Kile та LyX.</li> <li xml:lang="x-test">xxIntegrate your bibliographies with LaTeX editors such as Kile and LyX.xx</li> <li>Import your Zotero library.</li> <li xml:lang="ca">Importa la vostra biblioteca de Zotero.</li> <li xml:lang="ca-valencia">Importa la vostra biblioteca de Zotero.</li> <li xml:lang="cs">Importovat vaši knihovnu Zotero</li> <li xml:lang="de">Import Ihrer Zotero-Bibliothek.</li> <li xml:lang="en-GB">Import your Zotero library.</li> <li xml:lang="es">Importa su librería Zotero.</li> <li xml:lang="fi">Tuoda Zotero-kirjastosi.</li> <li xml:lang="fr">Importer une bibliothèque Zotero.</li> <li xml:lang="gl">Importe a súa biblioteca de Zotero.</li> <li xml:lang="it">Importare la tua raccolta Zotero.</li> <li xml:lang="nl">Uw Zotero bibliotheek importeren.</li> <li xml:lang="pl">Importowanie bibliotek Zotero.</li> <li xml:lang="pt">Importar a sua biblioteca do Zotero.</li> <li xml:lang="sk">Importovať vašu knižnicu Zotero.</li> <li xml:lang="sv">Importera ett Zotero-bibliotek.</li> <li xml:lang="uk">Імпортувати дані з вашої бібліотеки Zotero.</li> <li xml:lang="x-test">xxImport your Zotero library.xx</li> <li xml:lang="zh-CN">导入您的 Zotero 仓库。</li> </ul> </description> <url type="homepage">https://userbase.kde.org/KBibTeX</url> <url type="bugtracker">https://bugs.kde.org/enter_bug.cgi?format=guided&amp;product=kbibtex</url> <url type="help">http://docs.kde.org/development/en/extragear-office/kbibtex/index.html</url> <screenshots> <screenshot type="default"> <image>https://cdn.kde.org/screenshots/kbibtex/kbibtex-kf5.png</image> </screenshot> </screenshots> <project_group>KDE</project_group> <provides> <binary>kbibtex</binary> </provides> </component> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/org.kde.kbibtex.desktop���������������������������������������������������0000664�0000000�0000000�00000010325�13313000262�0021750�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������[Desktop Entry] Name=KBibTeX Name[ast]=KBibTeX Name[bs]=KBibTeX Name[ca]=KBibTeX Name[ca@valencia]=KBibTeX Name[cs]=KBibTeX Name[da]=KBibTeX Name[de]=KBibTeX Name[en_GB]=KBibTeX Name[es]=KBibTeX Name[et]=KBibTeX Name[fi]=KBibTeX Name[fr]=KBibTeX Name[gl]=KBibTeX Name[hu]=KBibTeX Name[it]=KBibTeX Name[nl]=KBibTeX Name[pl]=KBibTeX Name[pt]=KBibTeX Name[pt_BR]=KBibTeX Name[ru]=KBibTeX Name[sk]=KBibTeX Name[sv]=Kbibtex Name[tr]=KBibTeX Name[uk]=KBibTeX Name[x-test]=xxKBibTeXxx Name[zh_CN]=KBibTeX Name[zh_TW]=KBibTeX Comment=KDE-based editor for bibliographic files Comment[bs]=KDE-baziran uređivač za bibliografske datoteke Comment[ca]=Editor basat en el KDE per a fitxers bibliogràfics Comment[ca@valencia]=Editor basat en el KDE per a fitxers bibliogràfics Comment[da]=KDE-baseret editor til bibliografiske filer Comment[de]=KDE-basierter Editor für Bibliographiedateien Comment[en_GB]=KDE-based editor for bibliographic files Comment[es]=Editor de archivos bibliográficos basado en KDE Comment[et]=KDE bibliograafiafailide redaktor Comment[fi]=KDE-pohjainen lähdeluettelotiedostomuokkain Comment[fr]=Éditeur de fichiers de bibliographie fondé sur KDE Comment[gl]=Editor de KDE para ficheiros bibliográficos. Comment[hu]=KDE-alapú szerkesztő könyvészeti fájlokhoz Comment[it]=Editor basato su KDE per file bibliografici Comment[nl]=Op KDE gebaseerde bewerker van bibliografische bestanden Comment[pl]=Edytor plików bibliografii oparty na KDE Comment[pt]=Editor baseado no KDE para ficheiros bibliográficos Comment[pt_BR]=Editor de arquivos bibliográficos baseado no KDE Comment[sk]=Editor založený na KDE pre bibliografické súbory Comment[sv]=KDE-baserad editor för bibliografiska filer Comment[tr]=Kaynakça dosyaları için KDE tabanlı düzenleyici Comment[uk]=Заснований на KDE редактор файлів бібліографій Comment[x-test]=xxKDE-based editor for bibliographic filesxx Comment[zh_CN]=基于 KDE 的参考文献文件编辑器 Comment[zh_TW]=KDE 下的 bibliographic 檔編輯器 GenericName=BibTeX Editor GenericName[bs]=BibTeX Editor GenericName[ca]=Editor de BibTeX GenericName[ca@valencia]=Editor de BibTeX GenericName[cs]=Editor BibTeX GenericName[da]=BibTeX-editor GenericName[de]=BibTeX-Editor GenericName[en_GB]=BibTeX Editor GenericName[es]=Editor BibTeX GenericName[et]=BibTeXi redaktor GenericName[fi]=BibTeX-muokkain GenericName[fr]=Éditeur BibTeX GenericName[gl]=Editor de BibTeX GenericName[hu]=BibTeX szerkesztő GenericName[it]=Editor BibTeX GenericName[nl]=BibTeX-bewerker GenericName[pl]=Edytor BibTeX GenericName[pt]=Editor do BibTeX GenericName[pt_BR]=Editor de BibTeX GenericName[sk]=Editor BibTeX GenericName[sv]=Bibtex-editor GenericName[tr]=BibTeX Düzenleyici GenericName[uk]=Редактор BibTeX GenericName[x-test]=xxBibTeX Editorxx GenericName[zh_CN]=BibTeX 编辑器 GenericName[zh_TW]=BibTeX 編輯器 Icon=kbibtex Exec=kbibtex %U Type=Application Terminal=false X-KDE-StartupNotify=true # TODO X-DBUS-StartupType=Multi # TODO X-DBUS-ServiceName=org.kde.kbibtex Categories=Qt;KDE;Office;Database;Science;Literature;Education; MimeType=text/x-bibtex;application/x-research-info-systems; Keywords=BibTeX;bibliography;editor;LaTeX; Keywords[ca]=BibTeX;bibliografia;editor;LaTeX; Keywords[ca@valencia]=BibTeX;bibliografia;editor;LaTeX; Keywords[de]=BibTeX;Bibliographie;editor;LaTeX; Keywords[en_GB]=BibTeX;bibliography;editor;LaTeX; Keywords[es]=BibTeX;bibliografía;editor;LaTeX; Keywords[fi]=BibTeX;lähdeluettelo;muokkain;LaTeX Keywords[fr]=Bibtex;bibliographie;éditeur;LaTeX; Keywords[gl]=BibTeX;bibliography;bibliografía;editor;LaTeX; Keywords[it]=BibTeX;bibliografia;editor;LaTeX; Keywords[nl]=BibTeX;bibliografie;editor;bewerker;LaTeX; Keywords[pl]=BibTeX;bibliografia;edytor;LaTeX; Keywords[pt]=BibTeX;bibliografia;editor;LaTeX; Keywords[pt_BR]=BibTeX;bibliografia;editor;LaTeX; Keywords[sk]=BibTeX;bibliografia;editor;LaTeX; Keywords[sv]=Bibtex;bibliografi;editor;Latex; Keywords[tr]=BibTeX;kaynakça;düzenleyici;LaTeX; Keywords[uk]=BibTeX;bibliography;editor;LaTeX;бібтех;бібліографія;редактор;латех;лейтех; Keywords[x-test]=xxBibTeXxx;xxbibliographyxx;xxeditorxx;xxLaTeXxx; Keywords[zh_CN]=BibTeX;bibliography;editor;LaTeX;编辑器;参考书目;文献目录; �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/program/program.cpp���������������������������������������������������������������0000664�0000000�0000000�00000013161�13313000262�0017551�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include <cstdlib> #include <QtDebug> #include <QApplication> #include <QCommandLineParser> #include <KAboutData> #include <KLocalizedString> #include <KMessageBox> #include <KCrash> #include "mainwindow.h" #include "kbibtex-version.h" #include "kbibtex-git-info.h" #include "logging_program.h" int main(int argc, char *argv[]) { if (strlen(KBIBTEX_GIT_INFO_STRING) > 0) { /// In Git versions, enable debugging by default QLoggingCategory::setFilterRules(QStringLiteral("kbibtex.*.debug = true")); } QApplication programCore(argc, argv); KCrash::initialize(); KLocalizedString::setApplicationDomain("kbibtex"); KAboutData aboutData(QStringLiteral("kbibtex"), i18n("KBibTeX"), strlen(KBIBTEX_GIT_INFO_STRING) > 0 ? QLatin1String(KBIBTEX_GIT_INFO_STRING ", near " KBIBTEX_VERSION_STRING) : QLatin1String(KBIBTEX_VERSION_STRING), i18n("A BibTeX editor by KDE"), KAboutLicense::GPL_V2, i18n("Copyright 2004-2018 Thomas Fischer"), QString(), QStringLiteral("https://userbase.kde.org/KBibTeX")); aboutData.setOrganizationDomain(QByteArray("kde.org")); aboutData.setDesktopFileName(QStringLiteral("org.kde.kbibtex")); aboutData.addAuthor(i18n("Thomas Fischer"), i18n("Maintainer"), QStringLiteral("fischer@unix-ag.uni-kl.de")); KAboutData::setApplicationData(aboutData); programCore.setApplicationName(aboutData.componentName()); programCore.setOrganizationDomain(aboutData.organizationDomain()); programCore.setApplicationVersion(aboutData.version()); programCore.setApplicationDisplayName(aboutData.displayName()); programCore.setWindowIcon(QIcon::fromTheme(QStringLiteral("kbibtex"))); qCInfo(LOG_KBIBTEX_PROGRAM) << "Starting KBibTeX version" << (strlen(KBIBTEX_GIT_INFO_STRING) > 0 ? QLatin1String(KBIBTEX_GIT_INFO_STRING) : QLatin1String(KBIBTEX_VERSION_STRING)); QCommandLineParser cmdLineParser; cmdLineParser.addHelpOption(); cmdLineParser.addVersionOption(); cmdLineParser.addPositionalArgument(QStringLiteral("urls"), i18n("File(s) to load."), QStringLiteral("[urls...]")); cmdLineParser.process(programCore); aboutData.processCommandLine(&cmdLineParser); KBibTeXMainWindow *mainWindow = new KBibTeXMainWindow(); const QStringList urls = cmdLineParser.positionalArguments(); // Process arguments if (!urls.isEmpty()) { const QRegExp withProtocolChecker(QStringLiteral("^[a-zA-Z]+:")); for (const QString &url : urls) { const QUrl u = (withProtocolChecker.indexIn(url) == 0) ? QUrl::fromUserInput(url) : QUrl::fromLocalFile(url); mainWindow->openDocument(u); } } mainWindow->show(); KService::Ptr service = KService::serviceByStorageId(QStringLiteral("kbibtexpart.desktop")); if (service.data() == nullptr) { /// Dump some environment variables that may be helpful /// in tracing back why the part's .desktop file was not found qCDebug(LOG_KBIBTEX_PROGRAM) << "PATH=" << getenv("PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "LD_LIBRARY_PATH=" << getenv("LD_LIBRARY_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "XDG_DATA_DIRS=" << getenv("XDG_DATA_DIRS"); qCDebug(LOG_KBIBTEX_PROGRAM) << "QT_PLUGIN_PATH=" << getenv("QT_PLUGIN_PATH"); qCDebug(LOG_KBIBTEX_PROGRAM) << "KDEDIRS=" << getenv("KDEDIRS"); qCDebug(LOG_KBIBTEX_PROGRAM) << "QCoreApplication::libraryPaths=" << programCore.libraryPaths().join(QLatin1Char(':')); KMessageBox::error(mainWindow, i18n("KBibTeX seems to be not installed completely. KBibTeX could not locate its own KPart.\n\nOnly limited functionality will be available."), i18n("Incomplete KBibTeX Installation")); } else { qCInfo(LOG_KBIBTEX_PROGRAM) << "Located KPart service:" << service->library() << "with description" << service->comment() << "from library" << service->library(); } /* /// started by session management? if (programCore.isSessionRestored()) { RESTORE(KBibTeXMainWindow()); } else { /// no session.. just start up normally KBibTeXMainWindow *mainWindow = new KBibTeXMainWindow(); KCmdLineArgs *arguments = KCmdLineArgs::parsedArgs(); for (int i = 0; i < arguments->count(); ++i) { const QUrl url = arguments->url(i); if (url.isValid()) mainWindow->openDocument(url); } mainWindow->show(); arguments->clear(); } */ return programCore.exec(); } ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/�����������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0014704�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/CMakeLists.txt���������������������������������������������������������������0000664�0000000�0000000�00000004342�13313000262�0017447�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������# KBibTeX test program project( test ) include( AddFileDependencies ) include( ECMMarkAsTest ) configure_file(test-config.h.in test-config.h @ONLY) include_directories( ${CMAKE_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_SOURCE_DIR}/src/config ${CMAKE_SOURCE_DIR}/src/data ${CMAKE_SOURCE_DIR}/src/io ${CMAKE_SOURCE_DIR}/src/global ${CMAKE_SOURCE_DIR}/src/gui ${CMAKE_SOURCE_DIR}/src/gui/config ${CMAKE_SOURCE_DIR}/src/gui/bibtex ${CMAKE_SOURCE_DIR}/src/gui/element ${CMAKE_SOURCE_DIR}/src/gui/widgets ${CMAKE_SOURCE_DIR}/src/networking ${CMAKE_SOURCE_DIR}/src/networking/onlinesearch ${CMAKE_SOURCE_DIR}/src/processing ) set( kbibtextest_SRCS main.cpp kbibtextest.cpp logging_test.cpp ) set( kbibtexfilestest_SRCS kbibtexfilestest.cpp kbibtexfilestest-rawdata.h ) if(UNITY_BUILD AND NOT WIN32) # FIXME: Unity build of programs breaks on Windows enable_unity_build(kbibtextest kbibtextest_SRCS) enable_unity_build(kbibtexfilestest kbibtexfilestest_SRCS) endif(UNITY_BUILD AND NOT WIN32) # Creates kbibtex-git-info.h containing information about the source code's Git revision # (if source directory is a Git clone) add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h COMMAND ${CMAKE_COMMAND} -DSOURCE_DIR=${CMAKE_SOURCE_DIR} -DBINARY_DIR=${CMAKE_CURRENT_BINARY_DIR} -P ${CMAKE_SOURCE_DIR}/src/getgit.cmake ) set_source_files_properties( ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h PROPERTIES GENERATED 1 HEADER_FILE_ONLY 1 SKIP_AUTOMOC ON SKIP_AUTOUIC ON SKIP_AUTOGEN ON ) add_executable( kbibtextest ${kbibtextest_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h ) add_executable( kbibtexfilestest ${kbibtexfilestest_SRCS} ${CMAKE_CURRENT_BINARY_DIR}/kbibtex-git-info.h ) target_link_libraries( kbibtextest Qt5::Core KF5::KIOCore kbibtexconfig kbibtexdata kbibtexio kbibtexproc kbibtexgui kbibtexnetworking ) target_link_libraries( kbibtexfilestest Qt5::Test kbibtexdata kbibtexio ) ecm_mark_as_test( kbibtexfilestest ) add_test( NAME kbibtexfilestest COMMAND kbibtexfilestest ) ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/kbibtexfilestest-rawdata.h���������������������������������������������������0000664�0000000�0000000�00000664226�13313000262�0022071�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/******************************************************************************** Copyright 2018 Thomas Fischer <fischer@unix-ag.uni-kl.de> and others Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ********************************************************************************/ static const char *bug19489LastAuthors("Ralph"); static const char *bug19489FilesUrlsDois("bart.04.1242.pdf"); static const char *nameswithbracesLastAuthors("{{{{{LastName3A LastName3B}}}}}"); static const char *nameswithbracesFilesUrlsDois(""); static const char *duplicatesLastAuthors("FlajoletSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickSedgewickWayne"); static const char *duplicatesFilesUrlsDois("http://dblp.uni-trier.de/db/conf/esa/esa96.html#Sedgewick96" "http://dblp.uni-trier.de/db/conf/esa/esa96.html#Sedgewick96http://dblp.uni-trier.de/db/conf/esa/esa96.html#Sedgewick96http://dblp.uni-trier.de/db/journals/jal/jal15.html#SchafferS93http://portal.acm.org/citation.cfm?id=159277.159281&coll=Portal&dl=GUIDE&CFID=89127717&CFTOKEN=92605832" "10.1006/jagm.1993.1031http://portal.acm.org/citation.cfm?id=159277.159281&coll=Portal&dl=GUIDE&CFID=89127717&CFTOKEN=9260583210.1006/jagm.1993.1031"); static const char *minixLastAuthors("ACMACMACMAasAltingAnglinAnonymousAnonymousAnonymousAnonymousAnonymousAnonymousAnonymousAnonymousAnonymousArbaughAshtonBosChangChenChigiraChittoorChizmadiaChristieCushingDasDasDurrEganFerenceFresquezGallardGallardGallardGer\u0151fiGrehanGuerriniGuhaGuoHartleyHartley" "HaysHerHerderHernesHernesHowattHsiehIEEEIEEEIEEEJenKachelKanapoulosKellyKimKnudsonKobylanskiKochLakshmiLarribeauLevittLevittLiLouboutinMaginnisMaginnisMartellaMeierMeursMullerNakamaNaniwadekarNaniwadekarNavauxNettoNollOlabeOmuraRameshRennhackkampRennhackkamp" "RoskosSandSilveiraSmithSmithStevensonSuarezTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTanenbaumTiwanaTsaiVaidyanathanVikenWainerWangWeiWilliamsWinkler" "WoodhullWoodhullXuYagerYangde V. Smitvan Moolenbroek"); static const char *minixFilesUrlsDois("10.1145/322609.32313510.1145/322609.32315310.1145/322609.32315210.1109/ACSAC.1988.11333810.1145/74091.7409310.1145/122153.12216510.1145/101085.10109610.1145/122572.12257510.1109/IWRSP.1991.21862310.1145/163640.163647" "10.1145/160551.16055810.1145/155848.15585610.1109/EURMIC.1994.39033910.1145/206826.20684610.1145/820127.820179http://www.minix3.org/doc/herder_thesis.pdfhttp://www.minix3.org/doc/alting_thesis.pdf10.1145/1134744.1134747http://www.minix3.org/doc/gerofi_thesis.pdf" "http://www.minix3.org/doc/EDCC-2006.pdfhttp://www.eu-egee.org/egee_events/events/edcc-6-sixth-european-dependable-computing-conference-18-20-october-2006-coimbra-portugal/http://www.minix3.org/doc/reliable-os.pdfhttp://www.minix3.org/doc/OSR-2006.pdf10.1145/1151374.1151391" "http://www.usenix.org/publications/login/2006-04/openpdfs/herder.pdfhttp://www.minix3.org/http://www.minix3.org/doc/ACSAC-2006.pdfhttp://minixonxen.skynet.ie/cgi-bin/trac.cgi/attachment/wiki/Report/Report.pdf?format=rawhttp://www.minix3.org/doc/meurs_thesis.pdf" "10.1109/MC.2006.156http://www.minix3.org/doc/moolenbroek_thesis.pdf10.1145/1348713.1348716"); static const char *bug19484refsLastAuthors("AUAIAbell\u00e1nAeyelsAeyelsAeyelsAitchisonAsaiAugustinAugustinAugustinAugustinAugustinAugustinAugustinAugustinAugustinAugustinAvisBN@WorkBachmanBalakrishnanBarndorff-NielsenBayerBeerelBen-HaimBergerBernardBernardBernardBernardBickisBillingsleyBooleBoraty\u0144skaBorodovsky" "BoseBoseBouchon-MeunierBouckaertBouteBouteBrokkenBrownBrownBuckleyBuehlerBurrillBurtonBushellCamererCarnapCasalisChatfieldChojnackiChoquetChrismanChurchCoolenCoolenCoolenCoolenCoolenCooperCooperCoup\u00e9CousoCousoCozmanCozmanCozmanCozmanCozmanCozmanCozmanCram\u00e9r" "DaboniDaboniDaniellDantzigDarwicheDavisDavisonDawidDayhoffDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe CoomanDe Cooman" "De CoomanDe MunckDe PalmaDeGrootDegrauweDelbaenDempsterDempsterDennebergDennebergDerriennicDesterckeDhaenensDietzenbacherDoseDoumontDoumontDoumontDoumontDoumontDoumontDoumontDoumontDoumontDoumontDyerECCAIEckelEckelEdwardsEfronEisenEl GhaouiEl GhaouiEl-Atoum" "ElbersEricsonFagiuoliFauserFeronFersonFineFinessoFinkFiorettiFishburnFishburnFishburnFisherFortetFreedmanFreedmanFriedmanFriedmanFriedmanFriedmanFriendFr\u00e9chetFudenbergFukudaFukudaFukudaGaifmanGeisserGhahramaniGhahramaniGilGilGoldbergGoldsteinGoldsteinGoodGood" "GrabischGrafGrapsGroenendaalGr\u00fcnbaumGunawardenaGutinGuti\u00e9rrez-Pe\u00f1aHaddawyHaldaneHaldaneHallHalpernHalpernHammerHampelHanksHarsanyiHarsanyiHartHartfielHartfielHatcherHausslerHermansHermansHermansHerrmannHillHillHippHirschHlad\u00edkHofbauerHogarthHogeveenHolmes" "HumeHutterHuygensHuzurbazarInuiguchiInuiguchiIserlesJacobJaegerJaffrayJaffrayJaffrayJaynesJeffreysJiJohnsonJohnsonJohnsonJohnsonJordanKadaneKadaneKadaneKadaneKadaneKadaneKadaneKallenbergKarassaKarlinKarypisKatzoffKerreKerreKerreKeynesKleeKleeKlee, Jr. Koller" "KolmogorovKoopmanKoopmanKoopmanKoopmansKotzKrieglerKroghKroghKrymskyKubi\u015bKunischKunreutherKutateladzeKuznetsovKyburgLaValleLambrakisLangeLangleyLaplaceLaplaceLarkeyLarkeyLarra\u00f1agaLaskeyLauritzenLauritzenLawryLawryLetacLeviLeviLeviLevineLevineLiuLiuLoLodwick" "LoeffenLoeffenLoeligerMaa\u00dfMaa\u00dfMacKayMaceManskiMantelMarcotMartinMarzettaMas-ColellMazzuchiMcKinneyMevelMillerMilmanMilneMinkaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMirandaMitchisonMoralMoralMoralMoralMoralMoreaux" "MorishimaMorrisMosimannMosimannMoslehianMr\u00e1zMunroMurphyM\u00fcllerNadarajahNashNasriNauNauNemirovskiNeumaierNeumaierNeumaierNorthropNuutilaO'HaraOliphantOltvaiOrcuttOshimeOshimePalusznyPapadimitriouPardalosParsonsPatilPazzaniPearlPearlPereiraPereiraPetersPeterson" "PetriniPinkusPradePradePrautzschPriestleyProdonP\u00f3lyaQuQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeurQuaeghebeur" "RafteryRam\u00edkRegazziniRenooijRenooijRenooijRevuzRiabackeRiosRobertsRobinsonRockafellarRohnRommelfangerRommelfangerRosenthalRotaRoubensRoyRubinRudolphRuedaSIKSSIPTASabbadinSakawaSarabiaSarukkaiSavageSchechterSchemppSchervishSchlaiferSchneierSchwartzSch\u00f6lkopf" "SegaleSeidelSeidenfeldSeidenfeldSeidenfeldSeidenfeldSeidenfeldSeidenfeldSeidenfeldSenetaSentzSentzSeoShaferShaferShaferShannonShapleyShapleyShepardShimonySigmundSigmundSineSivaganesanSkyrmsSmithSmithSmithSmithSnellSnellSousaSoysterSpiegelhalterStegunSteuerSteuer" "StoyeStrassenStrensStroblSudderthSuppesSuppesSuvritSzaniawskiTaalTaalTaalTallonTanakaTaylorTessemThapaThatcherThompsonTroffaesTroffaesTroffaesTroffaesTroffaesTroffaesTsaiTsitsiklisTukeyUtkinVan LoanVandenbergheVanstoneVaraiyaVerdegayVeroneseVeroneseVicigVicig" "VicigVicigVicigVicigWagnerWagnerWagnerWagnerWagnerWagnerWagnerWagnerWagnerWagnerWagnerWagnerWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWalleyWallnerWallnerWalterWankaWassermanWatsonWatsonWeichselbergerWellmanWhittleWhittleWilliams" "WilliamsWilliamsWilliamsWilliamsWilliamsWilsonWongYeYlvisakerYuZabellZabellZabellZabellZabellZadehZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZaffalonZagoraiouZelenyZieglerZieglerZimmermann" "ZimmermannZimmermannZimmermannZimmermannde Boorde Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Finettide Jongvan der Gaagvan der Gaagvan der Gaag" "van der Gaagvan der Gaagvan der Gaagvan der Gaagvan der Gaagvan der Gaagvan der Gaagvon Neumannvon Winterfeldt\u0160kulj\u0160kulj"); static const char *bug19484refsFilesUrlsDois("10.1016/j.ijar.2011.04.004article/Couso-Moral-2011.pdfinbook/Morishima-1964-Perron-Frobenius.pdf10.1016/j.ijar.2010.12.002inbook/Dayhoff-Schwartz-Orcutt-1978.pdf" "http://users.ugent.be/~equaeghe/#EQ-2010-SSS10.1016/0165-0114(94)00353-9article/Buckley-1995.pdfhttp://www.jstor.org/stable/2318065article/Peterson-1972-Radon.pdf10.1016/S0004-3702(98)00089-7article/Fagiuoli-Zaffalon-1998-2U.pdfhttp://www.jstor.org/stable/1402732" "article/Edwards-1983-Pascal.pdfhttp://www.jstor.org/stable/295834410.1214/aosarticle/Hipp-1974.pdfhttp://www.jstor.org/stable/2984504article/Dempster-1968.pdfhttp://www.ams.org/bull/1940-46-10/S0002-9904-1940-07294-5/S0002-9904-1940-0729\n4-5.pdfhttp://projecteuclid.org/euclid.bams/1183503229" "article/Koopman-1940-ams.pdf10.1016/j.ijar.2004.10.003article/Cozman-2005-graphical.pdf10.1023/A:1018936829318article/Ha-etal-1998.pdfarticle/Daboni-1975.pdf10.1016/S0378-3758(01)00201-4article/Zaffalon-2002-ncc.pdf10.1016/j.envsoft.2004.10.006http://www.sciencedirect.com/science/article/B6V05-4RM881N-1/1/385e96ea2df064e7\nab875367eafbf9f9" "10.1016/j.fss.2007.12.021article/Combarro-Miranda-2008-polytope.pdfhttp://www.jstor.org/stable/2984417article/Tatcher-1964.pdf10.1080/15598608.2009.10411926article/Aughenbaugh-Herrmann-2009.pdf10.1023/A:1014745904458article/Kozine-Utkin-2002.pdfarticle/DeFinetti-1933c.pdf" "10.1007/s00500-002-0217-3article/Gilbert-DeCooman-Kerre-2003.pdfarticle/DeFinetti-1933a.pdf10.1186/1471-2105-7-263article/Munch-Krogh-2006.pdfhttp://www.jstor.org/stable/25050444article/Basu-Pereira-1983b.pdf10.1215/S0012-7094-51-01835-210.1142/S0218488502001867" "article/Miranda-Grabisch-Gil-2002.pdfinbook/VanDorp-Mazzuchi-2003.pdfarticle/Fodor-Marichal-Roubens-1995.pdfhttp://www.jstor.org/stable/1403571article/Pericchi-Walley-1991.pdfhttp://www.jstor.org/stable/3689397article/Fishburn-1980.pdfhttp://www.jstor.org/stable/2346164" "article/Walley-1996-IDM.pdf10.1016/0024-3795(86)90319-8article/Bushell-1986-Hilbert-metric.pdfhttp://diglib.cib.unibo.it/diglib.php?inv=35&term_ptnum=1&format=jpg10.4134/JKMS.2010.47.1.017article/Bot-Lorenz-Wanka-2010.pdfhttp://www.jstor.org/stable/2984207article/Ericson-1969.pdf" "http://www.jstor.org/stable/213265910.1137/1037083article/Rosenthal-1995-Markov-rate.pdfhttp://www.jstor.org/stable/2238958article/Bloch-Watson-1967.pdf10.1214/aosarticle/Zabell-1982.pdf10.1214/ssarticle/Cifarelli-Regazzini-1996.pdf10.1007/s10700-004-4200-6" "article/Rommelfanger-2004.pdfhttp://www.jstor.org/stable/2983842article/Smith-1961.pdfhttp://books.google.com/books?id=0bTK5uWzbYwChttp://www.jstor.org/stable/687102article/Williams-1978.pdfhttp://www.jstor.org/stable/263276510.1287/mnsc.40.2.263article/Luce-VonWinterfeld-1994.pdf" "http://www.jstor.org/stable/2983957article/Whittle-1955.pdfhttp://www.jstor.org/stable/2291525article/GutierrezPena-Smith-1995.pdfarticle/Krein-Milman-1940.pdfhttp://www.jstor.org/stable/2683137article/Tukey-1986-sunset.pdf10.1215/S0012-7094-55-02209-2article/Hammer-1955.pdf" "10.1016/S0047-259X(03)00095-2article/Consonni-Veronese-GutierrezPena-2004.pdf10.1016/j.ijar.2008.03.01210.1080/03081070500190839article/Augustin-2005.pdf10.1016/0888-613X(88)90117-Xarticle/Pearl-1988-intervals.pdfarticle/DeFinetti-1933b.pdf10.1111/1467-9469.00075" "article/Walley-1997-bounded.pdfhttp://www.jstor.org/stable/2984811article/Suppes-1974.pdfhttp://www.numdam.org/item?id=AIF_1956__6__187_0article/Revuz-1956.pdfhttp://www.nsc.ru/interval/Library/InteBooks/InexactLP.pdfhttp://cgm.cs.mcgill.ca/~avis/C/lrs.html" "10.1080/03081077508960870http://www.mscand.dk/article.php?id=1449article/Klee-1956.pdf10.1007/s10472-005-9006-xarticle/DeCooman-2005-order.pdftechreport/Williams-1975.pdfhttp://www.jstor.org/stable/2268039article/Shimony-1955.pdf10.1016/j.ijar.2006.06.001article/Troffaes-2007-decision.pdf" "http://www.cs.hut.fi/~enu/thesis.htmlhttp://www.jstor.org/stable/2283728article/Conner-Mosimann-1969.pdf10.1007/s10959-007-0055-4article/Miranda-DeCooman-Quaeghebeur-2007-Hausdorff.pdf10.1007/s12543-009-0002-4article/Ovaere-deschrijver-Kerre-2009.pdfhttp://www.jstor.org/stable/2631295" "article/Harsanyi-1982-comment.pdf10.1007/s11225-007-9064-7article/Wagner-2007-Smith-Walley.pdf10.1080/0196972730854591210.1214/aosarticle/Diaconis-Ylvisaker-1979.pdf10.1016/j.ejor.2005.03.005article/Miranda-Combarro-Gil-2006-extreme.pdf10.1016/j.jspi.2004.03.005" "article/Miranda-DeCooman-Couso-2005-multivalued.pdf10.1016/j.ijar.2006.11.003article/Bruening-Dennenberg-2007-belELP.pdf10.3982/TE596article/Epstein-Seo-2010.pdf10.1093/nararticle/Rho-Tang-Ye-2010.pdfarticle/Utkin-Augustin-2007.pdf10.1186/1471-2105-7-239article/Munch-etal-2006.pdf" "10.1023/A:1016705331195article/DeCooman-2001.pdfhttp://www.jstor.org/stable/224275210.1214/aosarticle/Casalis-1996.pdf10.1016/j.ijar.2010.08.011article/DeCooman-etal-2010.pdfhttp://www.jstor.org/stable/2631294article/Kadane-Larkey-1982.pdf10.1287/mnsc.17.4.B141" "article/Bellman-Zadeh-1970.pdfhttp://www.sciencedirect.com/science/article/pii/S037837580100206310.1016/S0378-3758(01)00206-3article/Zaffalon-2002-missing.pdf10.1016/j.artint.2004.05.006article/DeCooman-Zaffalon-2004-incomplete.pdf10.1093/bioinformaticsarticle/Liu-Mueller-2003.pdf" "10.1006/game.1999.0717http://bcn.boulder.co.us/government/approvalvote/altvote.htmlhttp://www.worldscibooks.com/compsci/6747.html10.1016/S0377-2217(99)00473-7article/Dubois-Prade-Sabbadin-2001.pdf10.1016/j.ijar.2006.07.014article/Gillett-et-al-2007.pdf10.1093/nar" "http://www.people.cornell.edu/pages/df36/CONJINTRnewTEX.pdf10.1007/BF00485351article/Zabell-1992.pdf10.1016/S0165-0114(98)00449-7article/Inuiguchi-Ramik-2000.pdf10.1006/jeth.2000.2746article/Hart-MasColell-2001.pdf10.1017/S1357530900000156article/Couso-Moral-Walley-2000-independence.pdf" "10.1016/S0378-3758(01)00209-9article/DeCooman-2002.pdfhttp://www.jstor.org/stable/295857810.1214/aosarticle/Buehler-1976.pdfhttp://www.amsta.leeds.ac.uk/~charles/statloghttp://repository.cmu.edu/statistics/3810.1287/mnsc.28.2.124article/Kadane-Larkey-1982-reply.pdf" "10.1023/A:102582232174310.1007/s101070100286article/BenTal-Nemirovski-2002.pdf10.1214/aosarticle/Morris-1982.pdf10.1006/jmbi.1994.1104article/Krogh-etal-1994.pdfhttp://www.jstor.org/stable/224306310.1214/aoparticle/Diaconis-Freedman-1980-partial-xch.pdfhttp://people.cs.ubc.ca/~murphyk/Papers/intro_gm.pdf" "http://www.jstor.org/stable/2291741article/Kadane-Schervish-Seidenfeld-1996-foregone.pdf10.1007/s10472-005-9011-0article/Moral-2005-desir.pdfhttp://www.stat.cmu.edu/tr/tr660/tr660.html10.1016/0165-0114(91)90019-Marticle/Buckley-Qu-1991.pdfhttp://www.jstor.org/stable/3689308" "article/Dyer-1983.pdfhttp://www.jstor.org/stable/168933article/Soyster-1973.pdf10.1007/BF02564426article/GutierrezPena-Smith-1997-review.pdf10.1007/BF01448847article/vonNeumann-1928.pdf10.1007/978-3-540-85027-4_2910.1016/j.ijar.2008.02.005article/Antonucci-Zaffalon-2008.pdf" "10.1109/18.910572article/Kschischang-Frey-Loeliger-2001.pdfhttp://www.jstor.org/stable/187511article/Seidenfeld-1985.pdfhttp://www.digizeitschriften.de/dms/img/?PPN=GDZPPN00036554810.1007/BF02293050article/Avis-Fukuda-1992.pdf10.1016/0885-064X(88)90006-4article/Georgakopoulos-Kavvadias-Papadimitriou-1988.pdf" "10.1007/3-540-31182-3_66incollection/Jimenez-etal-2005.pdf10.1016/j.ijar.2007.09.003article/Ide-Cozman-2008.pdf10.1007/BF0104925910.1016/0304-4068(94)90033-7article/Dietzenbacher-1994-Perron-Frobenius.pdfhttp://decsai.ugr.es/~lci/journal-papers-pdf/ijuf94.pdf" "10.1142/S0218488594000146article/DeCampos-Huete-Moral-1994-intervals.pdf10.1016/j.artint.2008.03.001article/DeCooman-Hermans-2008-bridging.pdf10.3150/09-BEJ182http://www.jstor.org/stable/2237603article/Billingsley-1961.pdf10.1016/j.jspi.2003.07.003article/Augustin-Coolen-2004.pdf" "http://www.jstor.org/stable/1969529article/Nash-1951.pdfhttp://www.stat.uni-muenchen.de/~thomas/team/diplomathesis_GeroWalter.pdfmastersthesis/Walter-2006.pdf10.1016/0167-8396(95)00031-3article/Trump-Prautzsch-1996.pdf10.1007/s10472-011-9231-4article/Miranda-Zaffalon-2011.pdf" "http://www.sipta.org/isipta09/proceedings/063.htmlhttp://www.jstor.org/stable/2682880article/Mantel-1976-tails.pdfhttp://cm.bell-labs.com/cm/ms/what/shannonday/shannon1948.pdfarticle/Shannon-1948.pdfhttp://decsai.ugr.es/~smc/isipta99/proc/072.html10.1023/A:1020287225409" "article/Kunreuther-et-al-2002.pdfhttp://www.ams.org/journals/tran/1962-103-01/S0002-9947-1962-0147879-X/S0002-99\n47-1962-0147879-X.pdf10.1090/S0002-9947-1962-0147879-Xarticle/McKinney-1962.pdfhttp://www.jstor.org/stable/3214695article/Hartfiel-1991.pdf10.1016/j.ijar.2008.03.011" "article/Coolen-Augustin-2008-IDM-alternative.pdfhttp://www.jstor.org/stable/1969003article/Koopman-1940-axioms.pdfhttp://hdl.handle.net/10338.dmlcz/135726article/Inuiguchi-2006.pdfhttp://www.jstor.org/stable/184348article/Northrop-1936-prob-in-QM.pdf10.1016/S0925-7721(96)00023-5" "article/Avis-Bremner-Seidel-1997.pdf10.1046/j.1464-410x.1999.0830s1079.xarticle/OHara-OHara-1999.pdfhttp://www.jstor.org/stable/2684602article/Genest-MacKay-1986.pdf10.1016/0024-3795(94)00222-3article/Rudolph-1996-duality.pdfarticle/Benavoli-et-al-2010.pdfhttp://www.jstor.org/stable/2284229" "article/Savage-1971.pdf10.1007/BF01441156article/Lange-1995.pdfhttp://www.jstor.org/stable/2981696article/Goodhardt-Ehrenberg-Chatfield-1984.pdfhttp://iospress.metapress.com/content/22bh7djyjk86a55harticle/DeCooman-Troffaes-Miranda-2005-Kerre.pdf10.1007/978-3-642-14055-6_7" "10.1007/s10472-005-9009-7http://www.schneier.com/book-applied.html10.1287/mnsc.28.2.124aarticle/Harsanyi-1982-rejoinder.pdfhttp://www.m-hikari.com/imf-password2007/13-16-2007/mazaheriIMF13-16-2007-3.pdf\narticle/Mazaheri-Nasri-2007.pdf10.1016/j.ijar.2009.01.005" "article/Antonucci-etal-2009-milident.pdfhttp://www.gutenberg.org/ebooks/1511410.1214/aomsarticle/Bildikar-Patil-1968.pdfhttp://books.google.com/books?id=Ovo3AAAAMAAJhttp://www.ams.org/journals/tran/1936-039-03/S0002-9947-1936-1501854-3/S0002-99\n47-1936-1501854-3.pdf" "article/Koopman-1936.pdf10.1098/rspa.1934.0050article/Fisher-1934.pdf10.1016/S0165-0114(02)00248-8article/Neumaier-2003-surprise.pdf10.1142/S0218488503002156article/Pelessoni-Vicig-2003-risk.pdf10.1088/0957-0233article/Dose-2007-gravity.pdf10.1109/TPC.2002.805164" "article/Doumont-2002.pdf10.1016/j.geb.2009.03.013article/Halpern-2010.pdf10.1023/A:1018911830478article/Fishburn-LaValle-1998.pdfhttp://www.jstor.org/stable/2332299article/Haldane-1945.pdf10.1613/jair.1292article/Halpern-Koller-2004.pdfhttp://www.handleidinghtml.nl" "http://projecteuclid.org/euclid.kjm/1250521436article/Oshime-1983-Perron.pdf10.1007/978-3-540-68996-6_5inbook/VanderGaag-Renooij-Coupe-2007.pdfhttp://www.jstor.org/stable/2282931article/Johnson-1967.pdf10.1007/978-3-540-44792-4_2010.1016/S0020-0255(01)00090-1" "article/Walley-DeCooman-2001.pdfhttp://hdl.handle.net/1854/LU-1863955http://www.jstor.org/stable/224166810.1214/aosarticle/Schervish-1989-forecaster.pdfhttp://www.jstor.org/stable/2284038article/Hill-1968-An.pdf10.1016/S0888-613X(99)00007-9article/Walley-DeCooman-1999.pdf" "10.1016/S0933-3657(03)00046-010.1214/ssarticle/Fishburn-1986.pdfhttp://users.ugent.be/~equaeghe/content/EQ-2002-UCL-memoire-hyperlinked.pdfmastersthesis/Quaeghebeur-2002.pdf10.1142/S0218001401000836article/Ghahramani-2001-HMM+BN-intro.pdfhttp://frameindex.htm" "http://www.jstor.org/stable/25050417article/Basu-Pereira-1983a.pdf10.1006/game.1993.1021article/Fudenberg-Kreps-1993.pdf10.1016/0165-4896(89)90056-5article/Chateauneuf-Jaffray-1989.pdf10.1016/j.ijar.2006.07.017article/Wallner-2007-extremepoints.pdf10.1016/j.fss.2007.11.020" "article/Quaeghebeur-DeCooman-2008-ELP-FSS.pdfhttp://www.jstor.org/stable/2683760article/Heath-Sudderth-1976-exchangeability.pdfhttp://books.google.com/books?id=4UY-ucucWucC10.1016/0020-0255(85)90025-810.1023/A:1009778005914article/Friedman-1997.pdfhttp://uivtx.cs.cas.cz/~rohn/handbook" "10.1016/S0096-3003(97)10140-0article/Wong-1998.pdf10.1016/j.ress.2005.11.042article/Hall-2006-sensitivity-indices.pdf10.1007/BF00531932article/Rota-1964-moebius.pdf10.1016/j.jspi.2003.09.005article/Walley-Pelessoni-Vicig-2004.pdfhttp://www.jstor.org/stable/3689148" "article/Matheiss-Rubin-1980.pdf10.1126/science.1094068article/Friedman-2004.pdfhttp://www.cs.unb.ca/profs/bremner/pd10.1007/PL00009389http://www.jstor.org/stable/2288190article/Goldstein-1983.pdf10.1016/S1389-1286(00)00044-Xarticle/Sarukkai-2000-link-prediction.pdf" "10.1016/S0378-3758(01)00204-Xarticle/Walley-2002-reconciling.pdf10.1016/S0004-3702(00)00029-1article/Cozman-2000-cn.pdfhttp://www.tramy.us/numpybook.pdfarticle/Daboni-1953.pdf10.1016/j.ijar.2004.10.009article/Ferreira-Cozman-2005-AR+.pdfhttp://www.numdam.org/item?id=AIHP_1930__1_2_117_0" "article/Polya-1930.pdfhttp://www.jstor.org/stable/3009940article/Inuiguchi-Sakawa-1997.pdf10.1016/j.ijar.2006.07.019article/Williams-2007-notes.pdf10.1016/0022-247X(74)90133-4article/Delbaen-1974.pdf10.1016/0167-6377(89)90010-2article/Jaffray-1989.pdfhttp://www.jstor.org/stable/687182" "article/Williams-1980.pdf10.1214/aosarticle/Huber-Strassen-1973.pdf10.1111/j.1365-2362.2010.02272.xarticle/Ioannidis-et-al-2010-afraid.pdf10.1198/016214506000001437article/Gneiting-Raftery-2007.pdf10.1016/j.jsc.2003.08.007article/Fukuda-2004-Minkowski-addition.pdf" "10.1007/978-1-4020-8202-310.1016/j.ijar.2006.07.018article/Vicig-Zaffalon-Cozman-2007-notes.pdfhttp://www.jstor.org/stable/224236610.1214/aosarticle/Nau-1992.pdfhttp://links.jstor.org/sici?sici=0035-9246(1969)31:2%3C195:SBMISF%3E2.0.CO10.1016/0305-0548(83)90004-7" "10.1016/j.ijar.2004.10.002article/Bernard-2005.pdf10.1023/A:1007413511361article/Domingos-Pazzani-1997.pdf10.1016/0888-613X(92)90006-Lhttp://hdl.handle.net/1854/LU-18236510.1080/03081079708945160article/DeCooman-1997-postheo1.pdf10.1016/0377-2217(95)00008-9" "article/Rommelfanger-1996.pdfbook/Walley-1991-book.pdfbook/Walley-1991.pdf10.1016/j.ijar.2006.12.009article/Miranda-DeCooman-2007-margext.pdf10.1016/0004-3702(95)00009-7article/Walley-1996-expert.pdf10.1007/978-1-4020-8202-3http://portal.acm.org/citation.cfm?doid=1086642.1086647" "10.1145/1086642.1086647article/Boute-2005.pdf10.1007/s10472-005-9004-zarticle/Cozman-Walley-2005-graphoid.pdf10.1007/BF02213460article/Zabell-1995.pdfhttp://www.jstor.org/stable/1268384article/Miller-1980-gamma.pdf10.1016/0304-4068(94)90028-0article/Fujimoto-Oshime-1994-Perron-Frobenius.pdf" "10.1109/3468.833093article/DeCooman-Aeyels-2000.pdf10.1016/j.ijar.2010.01.007article/Antonucci-etal-2010-GL2U.pdfhttp://journal.sjdm.org/jdm7303b.pdfarticle/Krantz-Kunreuther-2007.pdf10.1093/biometarticle/Mardia-ElAtoum-1976.pdfhttp://www.jstor.org/stable/1969530" "article/Robinson-1951.pdfhttp://books.google.com/books?id=SsBPTDFwnpoChttp://www.cs.utexas.edu/~suvrit/work/research.html10.1023/B:SYNT.0000029944.99888.a7article/Gaifman-2004.pdfhttp://hdl.handle.net/1854/6279mastersthesis/Quaeghebeur-2001.pdfhttp://www.ams.org/journals/tran/2004-356-12/S0002-9947-04-03470-1" "article/Gaubert-Gunawardena-2004-Perron.pdf10.1016/j.ijar.2009.06.007article/Skulj-2009-impmarkov.pdfhttp://links.jstor.org/stable/2984416article/Aitchison-1964-tolerance.pdf10.1016/j.ijar.2005.03.001article/Baroni-Vicig-2005-interchange.pdf10.1007/978-1-4020-8202-3" "http://www.jstor.org/stable/2290285article/Wasserman-Kadane-1992.pdf10.1016/S0888-613X(00)00031-1article/Walley-2000-towards.pdfhttp://www.jstor.org/stable/2287313article/Diaconis-Zabell-1982.pdfhttp://www.jstor.org/stable/2250183article/Johnson-1932.pdfhttp://www.sipta.org/isipta07/proceedings/proceedings-optimised.pdf" "proceedings/ISIPTA-2007.pdf10.1016/j.ijar.2006.07.020article/Cano-etal-2007-cn.pdf10.1214/aosarticle/Lo-1986-finite-sampling.pdf10.1016/j.ress.2004.03.005article/Hall-Lawry-2004-approx.pdf10.1109/43.736573article/Xie-Beerel-1998-stateclassif.pdfhttp://www.jstor.org/stable/2332350" "article/Haldane-1948.pdfhttp://www.math.technion.ac.il/sat/papers/1article/Pinkus-2005-approx.pdfhttp://www.jstor.org/stable/2239146article/Dempster-1967.pdf10.1038/415530aarticle/VantVeer-etal-2002.pdf10.1016/S0165-0114(99)00082-2article/Jamison-Lodwick-2001.pdf" "http://www.jstor.org/stable/3689177article/Steuer-1981.pdfhttp://books.google.com/books?id=MuEFJR7Ek4EC10.1016/j.ejor.2005.08.016article/Haddad-Moreaux-2007.pdf10.1016/S0167-7152(97)00060-6article/Boratynska-1997.pdfhttp://repository.cmu.edu/statistics/29article/Schervish-Seidenfeld-Kadane-2002-incoherence.pdf" "http://www.jstor.org/stable/232272510.2307/2322725article/Roy-1987.pdf10.1214/aosarticle/Seidenfeld-Wasserman-1993.pdf10.1007/BF02888345article/Giron-Rios-1980.pdfhttp://www.ams.org/proc/1990-109-02/S0002-9939-1990-0948156-X/S0002-9939-1990-0\n948156-X.pdfarticle/Sine-1990-Perron-Frobenius.pdf" "http://www.jstor.org/stable/188357article/Skyrms-1993.pdf10.1016/0165-1889(94)00819-4article/Fudenberg-Levine-1995.pdfhttp://www.numdam.org/item?id=AIHP_1937__7_1_1_0article/DeFinetti-1937.pdf10.1080/02331889308802432article/Arnold-Castillo-Sarabia-1993.pdf" "http://www.jstor.org/stable/2025732article/Levi-1977.pdfhttp://www.jstor.org/stable/2333468article/Mosimann-1962.pdfhttp://www.jstor.org/stable/2242823article/Diaconis-Freedman-1982-exchangeability.pdf10.1016/0167-7152(93)90066-Rarticle/Coolen-1993.pdfhttp://www.sciencedirect.com/science/article/pii/S0888613X0600096X" "10.1016/j.ijar.2006.07.013article/Campos-Cozman-2007-epistemic.pdf10.1016/j.ijar.2005.12.001article/Kreinovich-Xiang-Ferson-2006.pdf10.1016/j.fss.2007.04.004article/Inuiguchi-2007.pdfhttp://hdl.handle.net/2115/30499article/Tanaka-1993.pdf10.1016/j.ijar.2008.03.010" "article/DeCooman-Miranda-Quaeghebeur-2009-RIP.pdfhttp://www.stanford.edu/~boyd/cvxbook10.1007/BF01753431article/Shapley-1971.pdfhttp://www.numdam.org/item?id=AIHP_1948__10_4_215_0article/Frechet-1948.pdf10.1016/j.ijar.2007.12.001article/Miranda-2008-survey.pdf" "10.1007/978-1-4020-8202-310.1017/S0269964809990039http://www.gutenberg.org/ebooks/32625article/Moslehian-2006.pdfhttp://www.jstor.org/stable/2988546article/Walley-Gurrin-Burton-1996.pdf10.1016/S0888-613X(02)00087-7article/Miranda-DeCooman-2003.pdf10.1093/bjps" "article/Dawid-1985-symmetry.pdfhttp://www.jstor.org/stable/2290650article/Consonni-Veronese-1992.pdf10.1016/S0378-3758(01)00281-6article/GutierrezPena-Rueda-2003.pdfarticle/Bernard-1997-specificity.pdf10.1007/PL00012529article/Kubis-2002.pdf10.1016/j.ijar.2004.10.007" "article/Pelessoni-Vicig-2005-convex.pdf10.1007/BF0256267610.1126/science.1115327article/Hsu-et-al-2005.pdfhttp://www.jstor.org/stable/2984087article/Good-1952.pdf10.1016/S0020-0255(99)00007-9article/DeCooman-Aeyels-1999.pdf10.1038/nrg1272article/Barabasi-Oltvai-2004.pdf" "10.1214/088342304000000026article/Jordan-2004-graphical.pdf10.1016/j.jmaa.2008.05.071article/DeCooman-Troffaes-Miranda-2008-exact.pdfhttp://www.ifor.math.ethz.ch/~fukuda/polyfaq/polyfaq.htmlhttp://www.jstor.org/stable/1967495article/Daniell-1918.pdfhttp://books.google.com/books?id=79wZAQAAIAAJ" "10.1214/aosarticle/Seidenfeld-Schervish-Kadane-1995-preference.pdf10.1371/journal.pgen.1001290article/Kaplan-etal-2011.pdf10.1214/aosarticle/Efron-1978-expfam.pdf10.1111/1467-9469.00243article/Consonni-Veronese-2001.pdf10.1007/s10700-005-3663-4article/Lodwick-Bachman-2005.pdf" "http://portal.acm.org/citation.cfm?doid=103162.10316310.1145/103162.103163article/Goldberg-1991-float.pdfhttp://www.jstor.org/stable/2372648article/Davis-1954.pdfarticle/Grabisch-1995.pdfhttp://www.jstor.org/stable/1427899article/Hartfiel-Seneta-1994.pdf10.1016/j.ijar.2008.07.003" "article/Destercke-etal-2008-unifying1.pdfhttp://fma2.math.uni-magdeburg.de/~henk/preprints/henkrichter-gebert ziegler&basic properties of convex polytopes.pdfhttp://www.jstor.org/stable/2025161article/Levi-1974.pdf10.1016/j.laa.2005.08.024article/Huang-Huang-Tsai-2006-Hilbert-metric.pdf" "http://hdl.handle.net/1854/LU-470245mastersthesis/Dhaenens-2007.pdf10.1214/009053606000000740article/Nau-2006-shape.pdf10.1016/j.ijar.2007.07.007article/Miranda-DeCooman-Quaeghebeur-2007-finitely.pdfhttp://www.ifor.math.ethz.ch/~fukuda/cdd_home10.1007/3-540-61576-8_77" "10.1023/A:1018985914065article/Mraz-1998.pdf10.1093/bioinformaticsarticle/Aach-Church-2001.pdfhttp://repub.eur.nl/res/pub/8510.1016/j.ress.2004.03.007article/DeCooman-Troffaes-2004.pdfhttp://www.numdam.org/item?id=AIF_1954__5__131_010.5802/aif.53article/Choquet-1954.pdf" "10.1214/aoparticle/Hartman-Watson-1974.pdf10.1112/blmsarticle/Grunbaum-Shepard-1969.pdfhttp://equaeghe.github.com/murasyphttp://www.cs.uu.nl/dazzle10.1145/1088348.108835110.1023/A:1016398407857inbook/deFinetti-1937-foresight.pdf10.1080/15598608.2009.10411920" "article/DeCampos-etal-2009.pdfarticle/DeFinetti-Jacob-1935.pdf10.1080/15598608.2009.10411908article/Hampel-2009.pdf10.1080/15598608.2009.10411909article/Kozine-Krymsky-2009.pdf10.1080/15598608.2009.10411923article/Stoye-2009.pdf10.1080/15598608.2009.10411907" "article/CoolenSchrijner-etal-2009.pdf10.1080/15598608.2009.10411913article/Pelessoni-Vicig-2009.pdf10.1080/15598608.2009.10411910article/Bose-2009-imposition.pdf10.1080/15598608.2009.10411921article/Wilson-Huzurbazar-Sentz-2009.pdfhttp://www.jstor.org/stable/687386" "10.1093/bjpsarticle/deFinetti-1981-BJPS.pdf10.1080/15598608.2009.10411922article/Fuchs-Neumaier-2009.pdf10.1080/15598608.2009.10411924article/Walter-Augustin-2009.pdf10.1080/15598608.2009.10411917article/Danielson-Ekenberg-Riabacke-2009.pdf10.1080/15598608.2009.10411915" "article/Strobl-Augustin-2009.pdf10.1080/15598608.2009.10411912article/Montgomery-Coolen-Hart-2009.pdf10.1080/15598608.2009.10411916article/Farrow-Goldstein-2009.pdf10.1080/15598608.2009.10411919article/Bickis-2009.pdf10.1007/BFb0086576inbook/Schempp-1977-Bernstein.pdf" "10.1080/15598608.2009.10411914article/Crossman-CoolenSchrijner-Coolen-2009.pdf10.1080/15598608.2009.10411918article/Smithson-Segale-2009.pdf10.1080/15598608.2009.10411925article/CoolenSchrijner-Maturi-Coolen-2009.pdf10.1080/15598608.2009.10411911article/Bose-2009-smoothness.pdf" "10.1016/j.artint.2008.04.00110.1016/j.ijar.2004.05.00910.1016/S0004-3702(02)00247-310.1016/0004-3702(90)90026-V10.3168/jds.2009-302010.1613/jair.337410.1016/S0933-3657(02)00012-X10.1109/21.384252http://www.bnatwork.orghttp://www.siks.nlhttp://www.auai.orghttp://www.eccai.org" "http://www.sipta.org10.1016/j.ijar.2005.10.00310.1007/978-3-642-03070-3_5910.1007/3-540-60112-0_14inbook/Chateauneuf-Jaffray-1995.pdfhttp://www.jstor.org/stable/262747610.1287/mnsc.6.1.73article/Charnes-Cooper-1959.pdfhttp://www.jstor.org/stable/262715910.1287/mnsc.1.3-4.197" "article/Dantzig-1955.pdf10.1016/0022-247X(75)90189-410.1007/BF0158011110.1007/b97283book/Dantzig-Thapa-2003.pdfhttp://bugseng.com/products/ppl/documentation/BagnaraRZH02.pdf10.1007/3-540-45789-5_17inproceedings/Bagnara-etal-2002.pdf"); static const char *bug19362file15701databaseLastAuthors("AbeAbeAlazzawiArakiArakiArakiArakiArakiArakiArakiArnoldArvesonArzanoAudretschBagarelloBahnsBahnsBalachandranBaumannBaumg\u00e4rtnerBerkowitzBernardBertrandBieliavskyBieliavskyBischoffBoasBollerBollerBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchers" "BorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBorchersBostelmannBostelmannBrandenbergerBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholzBuchholz" "BuchholzBuchholzBuchholzBuchholzBuchholzBuchholzB\u00f6ckenhauerCamassaCamassaCarpiCarpiCasiniCastro-AlvaredoChandrasekharChiconeClaessensClarkConnesConnesConnesConwayConwayCornwellCornwellCuntzD'AntoniDamekDappiaggiDavidsonDerezinskiDimockDimockDixmierDonoghue" "DoplicherDoplicherDoplicherDoreyDriesslerDriesslerDurenDybalskiDybalskiDybalskiDybalskiEbrahimi-FardEckmannEckmannEllisEllisEmchEmchEngli\u00c5{{{{{{{{{{{{{{{{{{{{\u00a1}}}}}}}}}}}}}}}}}}}}EpsteinEpsteinFaddeevFerrariFewsterFewsterFewsterFewsterFewsterFewsterFewster" "FewsterFewsterFidaleoFigueroaFilkFioreFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFleischhackFlorigFlorigFoitFolacciFollandFollandFrancoFredenhagenFredenhagenFredenhagenFredenhagen" "FredenhagenFredenhagenFredenhagenFringFr\u00f6hlichFr\u00f6hlichFr\u00f6hlichFr\u00f6hlichFr\u00f6hlichFr\u00f6hlichFr\u00f6hlichGallavottiGarberGarberGarnettGawedzkiGayralGeGerochGerochGerstenhaberGlaserGlaserGlaserGlaserGlimmGracia-BondiaGrosseGrundlingGrundlingGuichardetHaagHaagHaag" "HaagHaagHaagHalvorsonHauerHauerHegerfeldtHegerfeldtHelgasonHellerHeppHeppHerbstHertelHeuserHeuserHighamHillierHofmannHofmannHogeHollandsHollandsHollandsHollandsHollandsHollandsHuHurdH\u00f6lzlerH\u00f6rmanderH\u00f6rmanderH\u00f6rmanderH\u00f6rmanderH\u00f6rmanderH\u00f6rmanderIagolnitzer" "IagolnitzerIagolnitzerIagolnitzerInamiIshamIshamJacksonJacobiJaffeJaffeJaffeJaffeJaffeJarchowJohnsonJosephJosephJostJostJunglasJunglasJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4kelJ\u00e4nichJ\u00e4nichJ\u00e4nichJ\u00f6r\u00dfJ\u00f6r\u00dfJ\u00f6r\u00dfKadisonKaiblingerKarowski" "KarowskiKarowskiKarowskiKaschekKasprzakKasprzakKastlerKastlerKatoKauffmanKawahigashiKawahigashiKayKayKayKayKeeganKellerKeylKeylKirillovKishimotoKleinKniemeyerKnightKopperKosterKrantzKrantzKreimerKuckertKuckertKulishKunhardtK\u00f6hlerK\u00f6theK\u00f6theLachi\u00e8ze-ReyLance" "LandauLandauLandiLandsmanLangLangmannLarkinLashkevichLauridsen-RibeiroLechnerLechnerLechnerLechnerLechnerLechnerLechnerLechnerLechnerLechnerLehmannLesniewskiLesterLewandowskiLewkeeratiyutkulLichtLichtLledoLledoLled\u00f3Lled\u00f3LongoLongoLongoLongoLongoLongoLongo" "LongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLongoLorenzenLorenzenL\u00fcckeMackMackMaedaMaisonManchakMandelstamMandulaMartinMartinettiMasielloMassarMehenMeinrenkenMeistersMerkliMichelMichorMillingtoMintchevMintchevMorettiMorfa-Morales" "Morfa-MoralesMorfa-MoralesMorsellaMorsellaMorsellaMorsellaMoschellaMoschellaMoschellaMoschellaMotovilovMundMundMundMundMundMundMundMundMussardoM\u00fcgerM\u00fcgerM\u00fcgerM\u00fcgerNachbinNekrasovNelsonNestNestNewmanNiedermaierNowakNowakO'NeillOecklOecklOjimaOkolowOlafsson" "OlbermannOliveOsterwalderOsterwalderPaschkePaschkePascualPascualPedersenPfenningPf\u00e4fflePiacitelliPiacitelliPiacitelliPiacitelliPiacitelliPiacitelliPiacitelliPiacitelliPinamontiPinamontiPinamontiPinamontiPinamontiPizzoPohlmeyerPolitoPolkinghornePorrmannPorrmann" "PorrmannQuellaQureshiRadulescuRadzikowskiRadzikowskiRainerRamacherRaschhoferRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRehrenRennieRennieRieffelRieffelRieffelRieffelRieffelRieffelRieffel" "RieffelRieffelRingroseRingroseRingroseRitzRivasseauRivasseauRivasseauRivasseauRivasseauRivasseauRobertsRobertsRobertsRobertsRobertsRobertsRobertsRobertsRobertsRobertsRobertsRobinsonRobinsonRobinsonRobinsonRobinsonRobinsonRoepstorffRoosRossiRossiRotheRudinRudin" "RudinRuelleRuelleRuelleSaffarySahlmannSahlmannSahlmannSakaiSakaiSaleurSalvittiSandersSandersSandersSandersSandhasScharfSchenkelSchiffSchlemmerSchlemmerSchliederSchlingemannSchlingemannSchlingemannSchm\u00fcdgenSchomerusSchomerusSchomerusSchraderSchraderSchrader" "SchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchroerSchumannSchwartzSchweigertSchweitzer" "SchwingerSeilerSeilerSeilerSeilerSenSenSiboldSiboldSiboldSimonSimonSimonSimonSimonSimonettiSj\u00f6strandSmirnovSmirnovSmolinSolovievSolovievSpindelSpindelSteinackerSteinackerSteinmannSteinmannSternheimerSternheimerStichelStolerStraussStreaterStreaterStrichStrocchi" "StrohmaierStrohmaierSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSummersSunderSvegstrupSwiecaSwiecaSwiecaSymanzikSzaboSzaboSzaboSzaboSzaboS\u00e1nchezS\u00e1nchez" "S\u00e9n\u00e9chalTakesakiTakesakiTakesakiTanasaTanimotoTanimotoTanimotoTanimotoTanimotoTateoTaylorTeoTeotonio-SobrinhoTeotonio-SobrinhoTeschlTeschnerTestardTestardTestardThallerThiemannThiemannThiemannThiemannThiemannThiemannThirringThirringThirringThrelfallTitchmarsh" "TitchmarshTodorovTodorovTodorovTodorovTodorov.TomassiniTongTrevesTruongTruongTruongTruongTruongTureanuTureanuTureanuTureanuTureanuTuynmanUhlmannUhlmannUllrichUllrichVaidyaVaidyaVaidyaVaidyaVaidyaVaidyaVaradarajanVarillyVarillyVarillyVarillyVasselliVassilevich" "Vazquez-MozoVerbeureVerbeureVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVerchVernovVernovVernovVernovVernovVignes-TourneretVignes-TourneretVilenkinVitaleVoelkelVoganWaldWaldWaldWaldWaldmannWaldmannWaldmannWaldmannWaldmannWaldmannWaldmann" "WaldmannWaldmannWaldmannWaldmannWaldmannWallWallWallWalletWangWanzenbergWassermannWeaverWeinerWeinerWeinerWeissWeiszWeiszWeiszWeiszWeiszWernerWernerWernerWessWessWessWessWhiteWichmannWichmannWichmannWichmannWichmannWichmannWichmannWiesbrockWiesbrockWiesbrock" "WiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWiesbrockWightmanWignerWilanskyWildeWilliamsWinninkWittenWittenWittenWohlgenanntWohlgenanntWollenbergWollenbergWollenbergWollenbergWollenberg" "WollenbergWoodardWoodsWoronowiczWoronowiczWoronowiczWoronowiczWoronowiczWuWuWulkenhaarWulkenhaarWulkenhaarWulkenhaarWyssWyssXiaYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvasonYngvason" "YngvasonYngvasonZahabiZahnZahnZahnZakharovZamolodchikovZamolodchikovZamolodchikovZhangZhouZimmermannZinovievZsidoZsidode Goursact'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft t'Hooft" "van Suijlekomvan der Kallenvon Neumann\u00c5ks"); static const char *bug19362file15701databaseFilesUrlsDois("http://projecteuclid.org/euclid.cmp/1103757611http://projecteuclid.org/euclid.cmp/11038418191969 - Borchers - On the Implementability of Automorphism Groups.pdfhttp://projecteuclid.org/euclid.cmp/11038416271969 - Epstein, Glaser, Martin - Polynomial behaviour of scattering amplitudes at fixed momentum transfer in theories with local observables.pdf" "http://projecteuclid.org/euclid.cmp/11038574091971 - Glimm, Jaffe - The energy momentum spectrum and vacuum expectation values in quantum field theory II.pdfhttp://projecteuclid.org/euclid.cmp/11038584081972 - Borchers, Hegerfeldt - The Structure of Space-Time Transformations.pdf" "1972 - Woronowicz - On the Purification of Factor States.pdf1974 - Buchholz - Collision theory for massless Fermions.pdf1974 - Buchholz - Haag-Ruelle approximation of collision states.pdf1974 - Buchholz - Product states for local algebras.pdf1974 - Fannes, Verbeure - On the time evolution automorphisms of the CCR-algebra for quantum mechanics.pdf" "1975 - Borchers, Sen - Relativity groups in the presence of matter.pdf1975 - Borchers, Yngvason - Integral representations for Schwinger functionals and the moment problem over nuclear spaces.pdf1975 - Borchers, Yngvason - On the algebra of field operators. The weak commutant and integral decompositions of states.pdf" "1975 - Driessler - Comments on lightlike translations and applications in relativistic quantum field theory.pdf1976 - Borchers, Yngvason - Necessary and sufficient conditions for integral representations of Wightman functionals at Schwinger points.pdf1976 - Buchholz, Roberts - Bounded perturbations of dynamics.pdf" "1977 - Buchholz - Collision theory for massless bosons.pdf1977 - Buchholz, Fredenhagen - A note on the inverse scattering problem in quantum field theory.pdf1978 - Iagolnitzer - Factorization of the multiparticle S-matrix in two-dimensional space-time models.pdf" "1978 - Pusz, Woronowicz - Passive States and KMS States for General Quantum Systems.pdf1978 - Shankar, Witten - S-matrix of the supersymmetric nonlinear sigma model.pdf1979 - Longo - Notes on algebraic invariants for noncommutative dynamical systems.pdf1981 - Epstein, Glaser, Iagolnitzer - SOME ANALYTICITY PROPERTIES ARISING FROM ASYMPTOTIC COMPLETENESS IN QUANTUM FIELD THEORY.pdf" "1981 - Emch - Prequantization and KMS structures.pdf1982 - Buchholz - THE PHYSICAL STATE SPACE OF QUANTUM ELECTRODYNAMICS.pdf1982 - Hislop, Longo - Modular structure of the local algebras associated with the free massless scalar field theory.pdf1982 - Steinmann - A JOST-SCHROER THEOREM FOR STRING FIELDS.pdf" "1983 - Doplicher, Longo - LOCAL ASPECTS OF SUPERSELECTION RULES. II.pdf1983 - Wichmann - ON SYSTEMS OF LOCAL OPERATORS AND THE DUALITY CONDITION.pdf1984 - Baumg\\\"artel, Wollenberg - A class of nontrivial weakly local massive Wightman fields with interpolating properties.pdf" "1984 - Borchers - Translation Group and Spectrum Condition.pdf1985 - Borchers, Buchholz - The Energy-Momentum Spectrum in Local Field Theories with Broken Lorentz-Symmetry.pdf1985 - Buchholz, Epstein - Spin and Statistics of Quantum Topological Charges.pdf1986 - Buchholz, Junglas - LOCAL PROPERTIES OF EQUILIBRIUM STATES AND THE PARTICLE SPECTRUM IN QUANTUM FIELD THEORY.pdf" "10.1007/BF012123411986 - Driessler, Summers, Wichmann - On the connection between quantum fields and von Neumann algebras of local operators.pdf1986 - Pohlmeyer, Rehren - ALGEBRAIC PROPERTIES OF THE INVARIANT CHARGES OF THE NAMBU- GOTO THEORY.pdf1987 - Buchholz, D'Antoni, Fredenhagen - The universal structure of local algebras.pdf" "1987 - Buchholz, Jacobi - On the Nuclearity Condition for Massless Fields.pdf1988 - Pohlmeyer, Rehren - THE ALGEBRA FORMED BY THE INVARIANT CHARGES OF THE NAMBU- GOTO THEORY: IDENTIFICATION OF A MAXIMAL ABELIAN SUBALGEBRA.pdf1988 - Pohlmeyer, Rehren - THE INVARIANT CHARGES OF THE NAMBU-GOTO THEORY: THEIR GEOMETRIC ORIGIN AND THEIR COMPLETENESS.pdf" "1989 - Buchholz, Junglas - On the existence of equilibrium states in local quantum field theory.pdf1990 - Borchers - Translation group and modular automorphisms for local regions.pdfhttp://projecteuclid.org/euclid.cmp/110418022310.1007/BF021045051990 - Borchers, Yngvason - Positivity of Wightman functionals and the existence of local nets.pdf" "1990 - Rehren - SPACE-TIME FIELDS AND EXCHANGE FIELDS.pdf1991 - Borchers, Wollenberg - On the relation between types of local algebras in different global representations.pdf1991 - Kay, Wald - Theorems on the Uniqueness and Thermal Properties of Stationary, Nonsingular, Quasifree States on Space-Times with a Bifurcate Killing Horizon.pdf" "http://arxiv.org/abs/hep-th/92020531992 - Ashtekar, Isham - Representations of the holonomy algebras of gravity and non-Abelian gauge theories.pdf1992 - Buchholz, Wanzenberg - The realm of the vacuum.pdf1993 - Kay - Sufficient conditions for quasifree states and an improved uniqueness theorem for quantum fields on space-times with horizons.pdf" "1992 - Rehren - Field operators for anyons and plektons.pdf1992 - Thirring - Ergodic Properties in Quantum Systems.pdfhttp://arxiv.org/abs/funct-an/93020081993 - Brunetti, Guido, Longo - Modular Structure and Duality in Conformal Quantum Field Theory.pdf1993 - Buchholz, Doplicher, Longo, Roberts - Extensions of automorphisms and gauge symmetries.pdf" "http://arxiv.org/abs/hep-th/93031081993 - Fring, Mussardo, Simonetti - Form Factors of the Elementary Field in the Bullough-Dodd Model.pdfhttp://arxiv.org/abs/hep-th/94030271994 - Buchholz, Yngvason - There are no causality problems for Fermis Two Atom System.pdf" "http://arxiv.org/abs/hep-th/03030371994 - Doplicher, Fredenhagen, Roberts - The Quantum Structure of Spacetime at the Planck Scale and Quantum Fields.pdfhttp://arxiv.org/abs/hep-th/94061181994 - Lashkevich - Sectors of mutually local fields in integrable models of quantum field theory.pdf" "http://arxiv.org/abs/hep-th/93120391994 - Smirnov - A New set of exact form-factors.pdf1994 - Verch - Local definiteness, primarity and quasiequivalence of quasifree Hadamard quantum states in curved spacetime.pdf1995 - Borchers - On the use of modular groups in quantum field theory.pdf" "http://arxiv.org/abs/hep-th/94030391995 - Liguori, Mintchev - Fock representations of quantum fields with generalized statistics.pdf1995 - Liguori, Mintchev, Rossi - Unitary Group Representations in Fock Spaces with Generalized Exchange Properties.pdf1996 - Florig, Summers - On the statistical independence of algebras of observables.pdf" "http://arxiv.org/abs/hep-th/96090201996 - Jorss - From conformal Haag-Kastler nets to Wightman functions.pdf1996 - Rehren - Comments on a recent solution to Wightman's axioms.pdfhttp://arxiv.org/abs/hep-th/94091651995 - Rehren, Stanev, TodorovIvan T - Characterizing invariants for local extensions of current algebras.pdf" "http://arxiv.org/abs/hep-th/96080831997 - Schroer - Motivations and physical aims of algebraic QFT.pdf1996 - Schumann - Operator Ideals and the Statistical Independence in Quantum Field Theory.pdf1996 - Yngvason - Tomita Conjugations and Transitivity of Locality.pdf" "1997 - Liguori, Mintchev, Rossi - Fock representations of exchange algebras with involution.pdfhttp://arxiv.org/abs/hep-th/97061721997 - Niedermaier - A Derivation of the Cyclic Form Factor Equation.pdfhttp://arxiv.org/abs/hep-th/97110851998 - Rehren - Spin statistics and CPT for solitons.pdf" "10.1063/1.5319541997 - Thomas, Wichmann - On the Causal Structure of Minkowski Spacetime.pdfhttp://arxiv.org/abs/math-ph/98050261998 - Buchholz, Dreyer, Florig, Summers - Geometric modular action and spacetime symmetry groups.pdfhttp://arxiv.org/abs/math-ph/0006011" "2000 - Florig, Summers - Further representations of the canonical commutation relations.pdfhttp://arxiv.org/abs/hep-th/98122511998 - Schroer, Wiesbrock - Modular constructions of quantum field theories with interactions.pdf1998 - Thomas, Wichmann - Standard Forms of local nets in quantum field theory.pdf" "http://arxiv.org/abs/hep-th/99091531999 - Babujian, Karowski - The Exact Quantum Sine-Gordon Field Equation and Other Non-Perturbative Results.pdfhttp://arxiv.org/abs/gr-qc/99100602000 - Fewster - A general worldline quantum inequality.pdfhttp://arxiv.org/abs/gr-qc/9812032" "1999 - Fewster, Teo - Bounds on negative energy densities in static space-times.pdf1999 - Gaier, Yngvason - Geometric Modular Action, Wedge Duality and Lorentz Covariance are Equivalent for Generalized Free Fields.pdfhttp://arxiv.org/abs/math-ph/990601910.1142/S0129055X01000557" "1999 - Guido, Longo, Roberts, Verch - Charged sectors, spin and statistics in quantum field theory on curved spacetimes.pdfhttp://arxiv.org/abs/gr-qc/99120111999 - Rainer - Is loop quantum gravity a QFT?.pdf2000 - Borchers - On Revolutionizing Quantum Field Theory.pdf" "http://arxiv.org/abs/hep-th/00110152000 - Buchholz, Doplicher, Morchio, Roberts, Strocchi - Quantum Delocalization of the Electric Charge.pdfhttp://arxiv.org/abs/hep-th/00112372000 - Buchholz, Mund, Summers - Transplantation of Local Nets and Geometric Modular Action on Robertson-Walker Space-Times.pdf" "http://arxiv.org/abs/math-ph/00010062000 - Fleischhack - Gauge Orbit Types for Generalized Connections.pdfhttp://arxiv.org/abs/math-ph/00010072000 - Fleischhack - Hyphs and the Ashtekar-Lewandowski measure.pdfhttp://arxiv.org/abs/math-ph/00010082000 - Fleischhack - Stratification of the Generalized Gauge Orbit Space.pdf" "http://arxiv.org/abs/hep-th/00030182000 - Oeckl - Untwisting noncommutative R**d and the equivalence of quantum field theories.pdf2000 - Ramacher - Modular localization of elementary systems in the theory of Wigner.pdfhttp://arxiv.org/abs/hep-th/00011292001 - D\\\"utsch, Fedenhagen - Perturbative Algebraic Field Theory, and Deformation Quantization.pdf" "http://arxiv.org/abs/hep-th/01060642001 - Fassarella, Schroer - The fuzzy analog of chiral diffeomorphisms in higher dimensional quantum field theories.pdfhttp://arxiv.org/abs/math-ph/010502710.1007/s0022001005842001 - Fewster, Verch - A Quantum weak energy inequality for Dirac fields in curved space-time.pdf" "http://arxiv.org/abs/math-ph/01110012001 - Fleischhack, Lewandowski - Breakdown of the action method in gauge theories.pdfhttp://arxiv.org/abs/math-ph/00070012003 - Fleischhack - On the Gribov problem for generalized connections.pdfhttp://arxiv.org/abs/math-ph/0107022" "2001 - Fleischhack - On the structure of physical measures in gauge theories.pdfhttp://arxiv.org/abs/math-ph/01090302001 - Fleischhack - On the support of physical measures in gauge theories.pdfhttp://arxiv.org/abs/math-ph/01090012001 - Kunhardt - On Infravacua and the Superselection Structure of Theories with Massless Particles.pdf" "http://arxiv.org/abs/hep-th/01012272001 - Mund - The Bisognano Wichmann theorem for massive theories.pdfhttp://arxiv.org/abs/hep-th/01082032001 - Schroer - Lightfront Formalism versus Holography + Chiral Scanning.pdfhttp://arxiv.org/abs/hep-th/01060662001 - Schroer - Uniqueness of Inverse Scattering Problem in Local Quantum Physics.pdf" "http://arxiv.org/abs/math-ph/00080432000 - Strohmaier - On the local structure of the Klein-Gordon field on curved spacetimes.pdfhttp://arxiv.org/abs/gr-qc/01100342001 - Thiemann - Introduction to modern canonical quantum general relativity.pdfhttp://arxiv.org/abs/gr-qc/0211012" "2002 - Ashtekar, Lewandowski, Sahlmann - Polymer and Fock representations for a Scalar field.pdfhttp://arxiv.org/abs/hep-th/020122210.1016/S0370-2693(02)01563-02002 - Bahns, Doplicher, Fredenhagen, Piacitelli - On the unitarity problem in space-time noncommutative theories.pdf" "http://arxiv.org/abs/hep-th/02070572002 - Buchholz, Mund, Summers - Covariant and quasi-covariant quantum dynamics in Robertson-Walker space-times.pdfhttp://arxiv.org/abs/hep-th/02050762003 - Castro-Alvaredo, Fring - From integrability to conductance, impurity systems.pdf" "http://arxiv.org/abs/hep-th/01121682002 - Fassarella, Schroer - Wigner Particle Theory and Local Quantum Physics.pdf2003 - Fleischhack - Regular connections among generalized connections.pdfhttp://arxiv.org/abs/gr-qc/02071112002 - Sahlmann - Some comments on the representation theory of the algebra underlying loop quantum gravity.pdf" "http://arxiv.org/abs/gr-qc/02100942003 - Thiemann - Lectures on loop quantum gravity.pdfhttp://arxiv.org/abs/hep-th/03050932003 - Alvarez-Gaume, Vazquez-Mozo - General Properties of Noncommutative Field Theories.pdfhttp://arxiv.org/abs/hep-th/03010882003 - Babujian, Karowski - Towards the Construction of Wightman Functions of Integrable Quantum Field Theories.pdf" "http://arxiv.org/abs/hep-th/02090082003 - Chaichian, Nishijima, Tureanu - Spin-Statistics and CPT Theorems in Noncommutative Field Theory.pdfhttp://arxiv.org/abs/math-ph/03040012003 - Fleischhack - Parallel Transports in Webs.pdfhttp://arxiv.org/abs/math-ph/0304002" "2004 - Fleischhack - Proof of a Conjecture by Lewandowski and Thiemann.pdfhttp://arxiv.org/abs/hep-th/98032452004 - J\\\"akel -%20 The Relation between KMS states for different temperatures.pdfhttp://arxiv.org/abs/quant-ph/03021152003 - Redei, Summers - Remarks On Causality in Relativistic Quantum Field Theory.pdf" "http://arxiv.org/abs/hep-th/04080802003 - Wess - Deformed coordinate spaces: Derivatives.pdfhttp://arxiv.org/abs/math-ph/04090702004 - Bostelmann - Phase space properties and the short distance structure in quantum field theory.pdfhttp://arxiv.org/abs/math-ph/0402072" "10.1007/s00023-004-0190-82004 - Buchholz, Lechner - Modular nuclearity and localization.pdfhttp://arxiv.org/abs/hep-th/04022122004 - Chaichian, Mnatsakanova, Nishijima, Tureanu, Vernov - Towards an Axiomatic Formulation of Noncommutative Quantum Field Theory.pdf" "http://arxiv.org/abs/gr-qc/04090432004 - Fewster - Comments on 'Counter example to the quantum inequality'.pdfhttp://arxiv.org/abs/gr-qc/04111142004 - Fewster - Quantum energy inequalities in two dimensions.pdfhttp://arxiv.org/abs/math-ph/04050372004 - Kawahigashi, Longo - Noncommutative Spectral Invariants and Black Hole Entropy.pdf" "http://arxiv.org/abs/math-ph/040506210.1088/0305-44702005 - Lechner - On the existence of local observables in theories with a factorizing S-Matrix.pdfhttp://arxiv.org/abs/math-ph/040506710.1142/S0129055X040021632004 - Longo, Rehren - Local fields in boundary conformal QFT.pdf" "http://arxiv.org/abs/hep-th/04051052005 - Schroer - An anthology of non-local QFT and QFT on noncommutative spacetime.pdf2004 - Ullrich - On the restriction of quantum fields to a lightlike surface.pdfhttp://arxiv.org/abs/math-ph/04110582004 - Yngvason - The role of type III factors in quantum field theory.pdf" "http://arxiv.org/abs/hep-th/04082042005 - Bahns, Doplicher, Fredenhagen, Piacitelli - Field Theory on Noncommutative Spacetimes - Quasiplanar Wick Products.pdfhttp://arxiv.org/abs/hep-th/05080022005 - Balachandran, Mangano, Pinzul, Vaidya - Spin and Statistics on the Groenewold-Moyal Plane - Pauli-Forbidden Levels and Transitions.pdf" "http://arxiv.org/abs/math-ph/05090472005 - Buchholz, Summers - Scattering in Relativistic Quantum Field Theory - Fundamental Concepts and Tools.pdfhttp://arxiv.org/abs/math-ph/04120282005 - Fewster, Hollands - Quantum energy inequalities in two-dimensional conformal field theory.pdf" "http://arxiv.org/abs/hep-th/04011282005 - Grosse, Wulkenhaar - Renormalisation of phi**4 theory on noncommutative R**4 in the matrix base.pdfhttp://arxiv.org/abs/hep-th/05021842005 - Lechner - Towards the construction of quantum field theories from a factorizing S-matrix.pdf" "http://arxiv.org/abs/hep-th/04030332005 - Mnatsakanova, Vernov - Jost-Lehmann-Dyson representation, analyticity in angle variable and upper bounds in noncommutative quantum field theory.pdfhttp://arxiv.org/abs/math-ph/051104210.1007/s00220-006-0067-42005 - Mund, Schroer, Yngvason - String-localized quantum fields and modular localization.pdf" "http://arxiv.org/abs/math-ph/05120462005 - Saffary - Modular action on the massive algebra.pdfhttp://arxiv.org/abs/hep-th/05071072007 - Salvitti - Generalized particle statistics in two-dimensions: Examples from the theory of free massive Dirac field.pdfhttp://arxiv.org/abs/hep-th/0406016" "2005 - Schroer - Constructive proposals for QFT based on the crossing property and on lightfront holography.pdfhttp://arxiv.org/abs/math/06077452006 - Bahns, Waldmann - Locally Noncommutative Space-Times.pdfhttp://arxiv.org/abs/hep-th/06081792006 - Balachandran, Govindarajan, Mangano, Pinzul, Qureshi, Vaidya - Statistics and UV-IR Mixing with Twisted Poincare Invariance.pdf" "http://arxiv.org/abs/hep-th/06081382006 - Balachandran, Pinzul, Qureshi, Vaidya - Poincare Invariant Gauge and Gravity Theories on the Groenewold-Moyal Plane.pdfhttp://arxiv.org/abs/gr-qc/06081332006 - Buchholz, Schlemmer - Local Temperature in Curved Spacetime.pdf" "http://arxiv.org/abs/hep-th/06020932006 - Bytsko, Teschner - Quantization of models with non-compact quantum group symmetry: Modular XXZ magnet and lattice sinh-Gordon model.pdfhttp://arxiv.org/abs/math-ph/06020422006 - Fewster, Pfenning - Quantum energy inequalities and local covariance. I: Globally hyperbolic spacetimes.pdf" "http://arxiv.org/abs/math-ph/06010052005 - Fleischhack - Construction of generalized connections.pdfhttp://arxiv.org/abs/math-ph/04070062004 - Fleischhack - Representations of the Weyl algebra in quantum geometry.pdfhttp://arxiv.org/abs/math-ph/06090592006 - J\\\"akel, Wreszinski - Stability and related properties of vacua and ground states.pdf" "http://arxiv.org/abs/hep-th/06060562006 - Kulish - Twists of quantum groups and noncommutative field theory.pdfhttp://arxiv.org/abs/gr-qc/05041472005 - Lewandowski, Okolow, Sahlmann - Uniqueness of diffeomorphism invariant states on holonomy- flux algebras.pdf" "http://arxiv.org/abs/hep-th/06032312006 - Zahn - Remarks on twisted noncommutative quantum field theory.pdfhttp://arxiv.org/abs/0704.02322007 - Bergbauer, Kreimer - New Algebraic Aspects of Perturbative and Non-Perturbative Quantum Field Theory.pdfhttp://arxiv.org/abs/math-ph/0203021" "10.1142/S0129055X020013872002 - Brunetti, Guido, Longo - Modular localization and Wigner particles.pdfhttp://arxiv.org/abs/0705.19882007 - Buchholz, Grundling - The resolvent algebra: A new approach to canonical quantum systems.pdfhttp://arxiv.org/abs/hep-th/9905102" "2000 - Buchholz, Longo - Graded KMS Functionals and the Breakdown of Supersymmetry.pdfhttp://arxiv.org/abs/math-ph/06110582006 - Fewster - Quantum energy inequalities and local covariance. II: Categorical formulation.pdfhttp://arxiv.org/abs/0705.1120http://arxiv.org/abs/hep-th/0701078" "2007 - Fiore, Wess - On full twisted Poincare' symmetry and QFT on Moyal-Weyl spaces.pdfhttp://arxiv.org/abs/hep-th/97031291998 - Guido, Longo, Wiesbrock - Extensions of Conformal Nets and Superselection Structures.pdfhttp://arxiv.org/abs/0704.3392http://arxiv.org/abs/math-ph/0611050" "2006 - Lechner - On the Construction of Quantum Field Theories with Factorizing S-Matrices-PhD-Thesis.pdf2007 - Lorenzen - From Spin Groups and Modular P_1CT Symmetry to Covariant Representations and the Spin-Statistics Theorem.pdfhttp://arxiv.org/abs/0704.2986" "http://arxiv.org/abs/hep-th/07020962007 - Schlemmer - Local Thermal Equilibrium States and Unruh Detectors in Quantum Field Theory.pdfhttp://arxiv.org/abs/math/0703336http://arxiv.org/abs/math/04071902005 - Carpi, Weiner - On the uniqueness of diffeomorphism symmetry in conformal field theory.pdf" "http://arxiv.org/abs/0705.36092007 - Carpi, Kawahigashi, Longo - Structure and Classification of Superconformal Nets.pdfhttp://arxiv.org/abs/math-ph/06100702007 - Pinamonti - On localization and position operators in Moebius covariant theories.pdfhttp://arxiv.org/abs/0708.1379" "http://arxiv.org/abs/0708.1283http://arxiv.org/abs/math-ph/03110522003 - Bros, Moschella - Fourier analysis and holomorphic decomposition on the one- sheeted hyperboloid.pdfhttp://arxiv.org/abs/math-ph/06090802006 - Bertola, Corbetta, Moschella - Massless scalar field in two-dimensional de Sitter universe.pdf" "http://arxiv.org/abs/gr-qc/95110191996 - Bros, Moschella - Two-point Functions and Quantum Fields in de Sitter Universe.pdfhttp://arxiv.org/abs/0706.399210.1088/1126-67082007 - Grosse, Lechner - Wedge-Local Quantum Fields and Noncommutative Minkowski Space.pdf" "http://scitation.aip.org/getabs/servlet/GetabsServlet?prog=normal&id=JMAPAQ000002000004000459000001&idtype=cvips&gifs=yes10.1063/1.17037311961 - Knight - Strict Localization in Quantum Field Theory.pdfhttp://arxiv.org/abs/hep-ph/92092241993 - Chamseddine, Felder, Frohlich - Grand unification in noncommutative geometry.pdf" "http://arxiv.org/abs/math/04115072004 - Fr\\\"ohlich, Fuchs, Runkel - Picard groups in rational conformal field theory.pdfhttp://arxiv.org/abs/hep-th/02081952003 - Mund - Modular localization of massive particles with any spin in.pdfhttp://arxiv.org/abs/hep-th/9712119" "1997 - Mund - No-Go Theorem for Free Relativistic Anyons in d=2+1.pdfhttp://arxiv.org/abs/hep-th/05020142005 - Mund - String-localized covariant quantum fields.pdf10.2307/19685511939 - Wigner - On unitary representations of the inhomogeneous Lorentz group.pdf" "http://arxiv.org/abs/0708.17792007 - Balachandran, Pinzul, Qureshi - Twisted Poincar'e Invariant Quantum Field Theories.pdfhttp://arxiv.org/abs/0708.2426http://arxiv.org/abs/0705.3340http://arxiv.org/abs/gr-qc/06050722007 - Hollands - The operator product expansion for perturbative quantum field theory in curved spacetime.pdf" "http://arxiv.org/abs/gr-qc/02120282004 - Hollands - A general PCT theorem for the operator product expansion in curved spacetime.pdfhttp://arxiv.org/abs/math-ph/07030132006 - Gerard, J\\\"akel - On the relativistic KMS condition for the P(phi)(2) model.pdfhttp://arxiv.org/abs/math-ph/0609088" "2005 - Gerard, J\\\"akel - Thermal quantum fields without cut-offs in 1+1 space-time dimensions.pdfhttp://arxiv.org/abs/math-ph/03070532003 - Gerard, J\\\"akel - Thermal quantum fields with spatially cut-off interactions in 1+1 space-time dimensions.pdfhttp://arxiv.org/abs/math-ph/0507047" "2006 - Jaffe, J\\\"akel - An exchange identity for non-linear fields.pdfhttp://arxiv.org/abs/0709.101010.1016/0003-4916(79)90391-91979 - Zamolodchikov, Zamolodchikov - Factorized S-matrices in two dimensions as the exact solutions of certain relativistic quantum field theory models.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Glimm, Jaffe - Quantum Physics - A Functional Integral Point of View.djvu10.1007/BF020990111992 - Borchers - The CPT-theorem in two-dimensional theories of local observables.pdfhttp://arxiv.org/abs/math-ph/98090031998 - Schroer, Wiesbrock - Modular Theory and Geometry.pdf" "1997 - Wiesbrock - Symmetries and Modular Intersections of Von Neumann Algebras.pdf1998 - Wiesbrock - Modular Intersections of von Neumann Algebras in Quantum Field Theory.pdf1994 - Wiesbrock - A note on strongly additive conformal field theory and half-sided modular conormal standard inclusions.pdf" "1993 - Wiesbrock - Conformal quantum field theory and half-sided modular inclusions of von Neumann algebras.pdf1993 - Wiesbrock - Half-sided modular inclusions of von-Neumann-algebras.pdf1992 - Wiesbrock - A comment on a recent work of Borchers.pdfhttp://arxiv.org/abs/hep-th/0003243" "10.1007/s0022001004112000 - Borchers, Buchholz, Schroer - Polarization-free generators and the S-matrix.pdfhttp://projecteuclid.org/euclid.cmp/11038425351970 - Yngvason - Zero-mass infinite spin representations of the Poincare group and quantum field theory.pdf" "1990 - Buchholz, D'Antoni, Longo - Nuclear maps and modular structures. II. Applications to quantum field theory.pdf1990 - Buchholz, D'Antoni, Longo - Nuclear maps and modular structures 1 - general properties.pdfhttp://www.arxiv.org/abs/math-ph/040701110.1063/1.1804230" "2004 - Buchholz, Summers - Stable quantum systems in anti-de Sitter space: Causality, independence and spectral properties.pdfhttp://arxiv.org/abs/0705.07052007 - Rivasseau - Non-commutative renormalization.pdf10.1063/1.17043051965 - Aks - Proof that Scattering Implies Production in Quantum Field Theory.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Araki - Mathematical Theory of Quantum Fields.djvuhttp://arxiv.org/abs/hep-th/04080692004 - Chaichian, Kulish, Nishijima - On a Lorentz-invariant interpretation of noncommutative space-time and its implications on noncommutative QFT.pdf" "http://arxiv.org/abs/hep-th/01060482001 - Douglas, Nekrasov - Noncommutative field theory.pdfhttp://arxiv.org/abs/math-ph/051206010.1088/1751-81132007 - Buchholz, Summers - String- and Brane-Localized Causal Fields in a Strongly Nonlocal Model.pdf1979 - Grosse - On the construction of m\\\"oller operators for the nonlinear schr\\\"odinger equation.pdf" "10.1007/BF016464941965 - Hepp - On the connection between the LSZ and Wightman quantum field theory.pdfhttp://arxiv.org/abs/math-ph/05120682007 - Kuckert, Lorenzen - Spin, statistics, and reflections. II: Lorentz invariance.pdfhttp://arxiv.org/abs/hep-th/0303062" "10.1023/A:10257723048042003 - Lechner - Polarization-Free Quantum Fields and Interaction.pdfhttp://arxiv.org/abs/math-ph/060102210.1007/s00220-007-0381-52007 - Lechner - Construction of Quantum Field Theories with Factorizing S-matrices.pdfhttp://arxiv.org/abs/hep-th/9702145v1" "1997 - Schroer - Modular Localization and the Bootstrap-Formfactor Program.pdfhttp://arxiv.org/abs/hep-th/99081421999 - Seiberg, Witten - String theory and noncommutative geometry.pdfhttp://arxiv.org/abs/hep-th/01091622003 - Szabo - Quantum field theory on noncommutative spaces.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Streater R.F., Wightman A.S. PCT, spin and statistics and all that (Benjamin, 1964)(T)(189s)_PQft_.djvuhttp://arxiv.org/abs/0704.00972007 - Kawahigashi - Conformal Field Theory and Operator Algebras.pdfhttp://arxiv.org/abs/math-ph/0602036" "2006 - Halvorson, M\\\"uger - Algebraic Quantum Field Theory.pdfhttp://arxiv.org/abs/math/02111412002 - Kawahigashi - Classification of operator algebraic conformal field theories.pdfhttp://arxiv.org/abs/hep-th/94120941996 - Davidson - Endomorphism semigroups and lightlike translations.pdf" "http://arxiv.org/abs/math-ph/06100272007 - Svegstrup - Endomorphisms on Half-Sided Modular Inclusions.pdf1993 - Wiesbrock - Symmetries and half-sided modular inclusions of von Neumann algebras.pdfhttp://arxiv.org/abs/hep-th/01051782001 - Babujian, Karowski - Exact form factors in integrable quantum field theories: the sine-Gordon model (II).pdf" "http://arxiv.org/abs/hep-th/06091302006 - Babujian, Foerster, Karowski - The Form Factor Program: a Review and New Results - the Nested SU(N) Off-Shell Bethe Ansatz.pdfhttp://arxiv.org/abs/hep-th/03011002003 - Bahns, Doplicher, Fredenhagen, Piacitelli - Ultraviolet Finite Quantum Field Theory on Quantum Spacetime.pdf" "http://arxiv.org/abs/hep-th/06080812007 - Balachandran, Queiroz, Marques, Teotonio-Sobrinho - Deformed Kac-Moody and Virasoro Algebras.pdfhttp://arxiv.org/abs/0706.00212007 - Balachandran, Queiroz, Marques, Teotonio-Sobrinho - Quantum Fields with Noncommutative Target Spaces.pdf" "1976 - Bisognano, Wichmann - On the Duality Condition for Quantum Fields.pdf1974 - Bisognano, Wichmann - On the Duality Condition for a Hermitian Quantum Field.pdfhttp://arxiv.org/abs/0710.10831999 - Borchers - On the embedding of von Neumann subalgebras.pdf" "http://www.springerlink.com/content/un027304k4m253q7/?p=1a14bec3579d46e3a219897d6845164b&pi=51997 - Borchers - On the Lattice of Subalgebras Associated with the Principle of Half-sided Modular Inclusion.pdfhttp://www.springerlink.com/content/pn7wp853n1666537/?p=98c19fdbd87648f79f623d3d44e9bf70&pi=8" "1996 - Borchers - Half-sided modular inclusion and the construction of the Poincare group.pdf2005 - Araki, Zsido - Extension of the structure theorem of Borchers and its application to half-sided modular inclusions.pdfhttp://arxiv.org/abs/0709.24931993 - Fr\\\"ohlich, Gabbiani - Operator algebras and conformal field theory.pdf" "1999 - J\\\"akel - Two algebraic properties of thermal quantum field theories.pdf1963 - Araki - A Lattice of Von Neumann Algebras Associated with the Quantum Theory of a Free Bose Field.pdf1963 - Licht - Strict Localization.pdf1964 - Araki - Von Neumann Algebras of Local Observables for Free Scalar Field.pdf" "1965 - Borchers - Local rings and the connection of spin with statistics.pdf1965 - Borchers - On the structure of the algebra of field operators. II.pdf1965 - Borchers - On the vacuum state in quantum field theory II.pdf1965 - Bros, Epstein, Glaser - A proof of the crossing property for two-particle amplitudes in general quantum field theory.pdf" "2002 - Birke, Fr\\\"ohlich - KMS, etc.pdf1965 - Haag, Swieca - When does a quantum field theory describe particles.pdf1965 - Jaffe - Divergence of perturbation theory for bosons.pdf1965 - Kastler - The Cstar-algebras of a free Boson field. I. Discussion of the basic facts.pdf" "1965 - Langerholc, Schroer - On the structure of the von Neumann algebras generated by local functions of the free Bose field.pdf1965 - Robinson - A theorem concerning the positive metric.pdf1965 - Robinson - The ground state of the Bose gas.pdf1965 - Schlieder - Some remarks about the localization of states in a quantum field theory.pdf" "1966 - Borchers - Energy and momentum as observables in quantum field theory.pdf1966 - Dell'Antonio, Doplicher, Ruelle - A theorem on canonical commutation and anticommutation relations.pdf1966 - Doplicher, Kastler, Robinson - Covariance algebras in field theory and statistical mechanics.pdf" "1966 - Kadison, Ringrose - Derivations and automorphisms of operator algebras.pdf1966 - Kastler, Robinson, Swieca - Conserved currents and associated symmetries Goldstone's theorem.pdf1966 - Kupsch, Sandhas - Moeller operators for scattering on singular potentials.pdf" "1966 - Lehmann - Analytic properties of scattering amplitudes in two variables in general quantum field theory.pdf1966 - Licht - Local States.pdf1966 - Schroer, Stichel - Current commutation relations in the framework of general quantum field theory.pdf1966 - Streater - Canonical quantization.pdf" "1967 - Araki, Haag - Collision cross sections in terms of local observables.pdf1967 - Borchers - A remark on a theorem of B. Misra.pdf1967 - Bros, Epstein, Glaser - On the connection between analyticity and Lorentz covariance of Wightman functions.pdf1967 - Ezawa, Swieca - Spontaneous breakdown of symmetries and zero-mass states.pdf" "1967 - Glimm - Yukawa coupling of quantum fields in two dimensions. I.pdf1967 - Haag, Hugenholtz, Winnink - On the equilibrium states in quantum statistical mechanics.pdf1967 - Kadison - The energy momentum spectrum of quantum fields.pdf1968 - Borchers - On the converse of the Reeh-Schlieder theorem.pdf" "1968 - Borchers, Pohlmeyer - Eine scheinbare Abschw\\\"achung der Lokalit\\\"atsbedingung II.pdf1968 - Manuceau, Verbeure - Quasi-free states of the CCR-algebra and Bogoliubov transformations.pdf1970 - Steinmann - Scattering formalism for non-localizable fields.pdf" "1971 - Glimm, Jaffe - Positivity and self adjointness of the P(phi)_2 Hamiltonian.pdf1973 - Osterwalder, Schrader - Axioms for Euclidean Green's functions.pdf1973 - Woronowicz - On the Purification Map.pdf1974 - Buchholz - Threshold singularities of the S-matrix and convergence of Haag-Ruelle approximations.pdf" "1974 - Connes - Caract\\'erisation des espaces vectoriels ordonn\\'es sous-jacents aux alg\\`ebres de von Neumann.pdf1975 - Buchholz - Collision theory for waves in two dimensions and a characterization of models with trivial S-matrix.pdf1975 - Fr\\\"ohlich - Quantized Sine-Gordon Equation with a Nonvanishing Mass Term in Two Space-Time Dimensions.pdf" "1975 - Mandelstam - Soliton operators for the quantized sine-Gordon equation.pdf1976 - Bros, Buchholz, Glaser - Constants of motion in local field theory (Coleman's theorem revisited).pdf1976 - Dimock, Eckmann - On the bound state in weakly coupled lambda(phi6-ph4)_2.pdf" "1976 - Fr\\\"ohlich - New super-selection sectors (``soliton-states'') in two dimensional Bose quantum field models.pdf1977 - Perez, Wilde - Localization and causality in relativistic quantum mechanics.pdf1979 - Berg, Karowski, Weisz - Construction of Green's functions from an exact S matrix.pdf" "1979 - L\\\"ucke - PCT, Spin and Statistics, and All That for Nonlocal Wightman Fields.pdf1980 - Borchers, Garber - Local theory of solutions for the O(2k+1) sigma-model.pdf1980 - Borchers, Garber - Analyticity of solutions of the O(N) nonlinear sigma-model.pdf" "1980 - Dimock - Algebras of local observables on a manifold.pdf1982 - Buchholz, Fredenhagen - Locality and the structure of particle states.pdf1983 - Borchers - C-star-algebras and automorphism groups.pdf1983 - Driessler, Summers - Nonexistence of quantum fields associated with two-dimensional spacelike planes.pdf" "1984 - Doplicher, Longo - Standard and split inclusions of von Neumann algebras.pdf1984 - Longo - Solution of the Factorial Stone-Weierstrass conjecture.pdf1985 - Woronowicz - On the Existence of KMS states.pdf1986 - Buchholz, Wichmann - Causal independence and the energy-level density of states in local quantum field theory.pdf" "1987 - D'Antoni, Doplicher, Fredenhagen, Longo - Convergence of Local Charges and Continuity Properties of W-Inclusions.pdf1988 - Bros, Iagolnitzer - 2-particle asymptotic completeness and bound states in weakly coupled quantum field theories.pdf1988 - Rehren - Locality of conformal fields in two dimensions - exchange algebra on the light-cone.pdf" "1989 - Fredenhagen, Rehren, Schroer - Superselection Sectors with Braid Group Statistics and Exchange Algebras I General Theory.pdf1990 - Borchers, Sen - Theory of ordered spaces.pdf1990 - Buchholz - Harmonic analysis of local operators.pdf10.1063/1.5286801990 - Buchholz - On quantum fields that generate local algebras.pdf" "1992 - Babelon, Bernard - From Form Factors to Correlation Functions - The Ising Model.pdf1993 - Dimock, Hurd - Construction of the two-dimensional sine-Gordon model for beta less than 8 pi.pdf1994 - Balog, Hauer - Polynomial Form Factors in the O(3) nonlinear sigma-model.pdf" "1994 - Hegerfeldt - Causality Problems for Fermis Two Atom System.pdfhttp://projecteuclid.org/euclid.cmp/11038409821968 - Maison - Eine Bemerkung zu Clustereigenschaften.pdfhttp://arxiv.org/abs/hep-th/04122262004 - Dybalski - Haag-Ruelle scattering theory in presence of massless particles.pdf" "http://www.pubmedcentral.nih.gov/articlerender.fcgi?artid=5286741958 - Schwinger - On the Euclidian Structure of Relativistic Field Theory.pdfhttp://projecteuclid.org/euclid.cmp/11038991821975 - Baumann - When is a field theory a generalized free field.pdfhttp://arxiv.org/abs/hep-th/9501063" "1995 - Buchholz, Verch - Scaling Algebras and Renormalization Group in Algebraic Quantum Field Theory.pdfhttp://arxiv.org/abs/hep-th/97080951997 - Buchholz, Verch - Scaling Algebras and Renormalization Group in Algebraic Quantum Field Theory. II. Instructive Examples.pdf" "http://arxiv.org/abs/0705.42942007 - Strelchenko, Vassilevich - On space-time noncommutative theories at finite temperature.pdfhttp://arxiv.org/abs/0711.0371http://arxiv.org/abs/0711.1525http://www.lqp.uni-goettingen.de/papers/07/11/07111201.html2007 - Schroer - Localization and the interface between quantum mechanics, quantum field theory and quantum gravity.pdf" "http://www.lqp.uni-goettingen.de/papers/07/11/07111200.html2007 - Schroer - Constructive use of holographic projections.pdfhttp://arxiv.org/abs/hep-th/97050191997 - M\\\"uger - Superselection structure in massive quantum field theories in 1+1 dimensions.pdfhttp://arxiv.org/abs/0711.4237" "http://arxiv.org/abs/hep-th/06061832007 - Abe - Noncommutative quantization for noncommutative field theory.pdfhttp://arxiv.org/abs/0708.1561http://arxiv.org/abs/hep-th/05070302006 - Grosse, Wohlgenannt - On kappa-deformation and UV-IR-mixing.pdfhttp://arxiv.org/abs/hep-th/0612170" "2007 - Freidel, Kowalski-Glikman, Nowak - From noncommutative kappa-Minkowski to Minkowski space- time.pdfhttp://arxiv.org/abs/0706.3658http://www-library.desy.de/cgi-bin/showprep.pl?thesis04-0042003 - Bahns - Perturbative Methods on the Noncommutative Minkowski space.pdf" "http://arxiv.org/abs/hep-th/06121122006 - Chaichian, Mnatsakanova, Tureanu, Vernov - Classical Theorems in Noncommutative Quantum Field Theory.pdfhttp://arxiv.org/abs/hep-th/06110972006 - Chaichian, Mnatsakanova, Tureanu - Generalized Haag's theorem in SO(1,1) and SO(1,3) invariant quantum field theory.pdf" "http://arxiv.org/abs/0708.00692007 - Balachandran, Pinzul, Qureshi - Twisted Gauge and Gravity Theories on the Groenewold-Moyal Plane.pdfhttp://arxiv.org/abs/hep-ph/01050512002 - Buchholz, Ojima, Roos - Thermodynamic properties of non-equilibrium states in quantum field theory.pdf" "http://arxiv.org/abs/hep-th/03011152003 - Buchholz - On hot bangs and the arrow of time in relativistic quantum field theory.pdfhttp://arxiv.org/abs/math-ph/06070572006 - Camassa - Relative Haag duality for the free field in Fock representation.pdfhttp://arxiv.org/abs/0712.2140" "2007 - Longo, Rehren - How to remove the boundary.pdfhttp://arxiv.org/abs/hep-th/03120152003 - Seiler - The case against asymptotic freedom.pdfhttp://arxiv.org/abs/0712.44032007 - Schroer - Localization-Entropy from Holography on Null-Surfaces and the Split Property.pdf" "http://arxiv.org/abs/hep-th/93101871993 - Fr\\\"ohlich, Gawedzki - Conformal Field Theory and Geometry of Strings.pdfhttp://arxiv.org/abs/math-ph/01060282006 - D'Antoni, Hollands - Nuclearity, local quasiequivalence and split property for Dirac quantum fields in curved spacetime.pdf" "http://arxiv.org/abs/math/98100031998 - D'Antoni, Longo, Radulescu - Conformal Nets, Maximal Temperature and Models from Free Probability.pdfhttp://spaces.djvu/home/gandalf/Physik/Fachb\\\"ucher/Conway - Functions of One Complex Variable I.djvu/home/gandalf/Physik/Fachb\\\"ucher/Boas - Entire Functions.djvu" "1987 - Rehren, Schroer - Exchange algebra on the lightcone and order-disorder 2n-point functions in the Ising field theory.pdf1978 - Schroer, Truong - The Relativistic Quantum Fields of the d=2 Ising Model.pdf1977 - Schroer, Truong - Equivilance of the Sine-Gordon and Thirring models and cumulative mass effects.pdf" "1979 - Schroer, Truong - Z_2 Duality Algebra in d=2 Quantum Field Theory.pdf1979 - Schroer, Truong, Weisz - Supersymmetric Ising Field Theory.pdf1978 - Schroer, Truong - The Order-Disorder Quantum Field Operators associated with the tw-dimensional Ising Model in the Continuum Limit.pdf" "1976 - Schroer, Truong, Weisz - Towards an Explicit Construction of the Sine-Gordon Field Theory.pdf1976 - Schroer, Truong - Model Study of Nonleading Mass Singularities I.pdf1978 - Schroer, Truong - Direct Construction of the Quantum Field Operators of the d=2 Ising Model.pdf" "http://arxiv.org/abs/0801.352910.1063/1.28381552008 - Strich - Passive States for Essential Observers.pdfhttp://arxiv.org/abs/0801.3621http://arxiv.org/abs/math-ph/99060201999 - Ilieva, Thirring - Anyons and the Bose-Fermi duality in the finite-temperature Thirring model.pdf" "1977 - Cuntz - Simple Cstar-algebras generated by isometries.pdfhttp://arxiv.org/abs/gr-qc/9605073http://arxiv.org/abs/math-ph/05110342005 - Summers - Tomita-Takesaki Modular Theory.pdf1975 - Araki - Relative entropy of states of von Neumann algebras.pdf1977 - Araki - Relative entropy for states of von Neumann algebras II.pdf" "1974 - Eckmann, Fr\\\"ohlich - Unitary equivalence of local algebras in the quasifree representation.pdf1993 - Buchholz, Summers - An algebraic characterization of vacuum states in Minkowski space.pdf1994 - Langmann - Fermion current algebras and Schwinger terms in (3+1)-dimensions.pdf" "1994 - Longo, Rehren - Nets of Subfactors.pdf1994 - Mund, Schrader - Hilbert Spaces for Nonrelativistic and Relativistic Free Plektons (Particles with Braid Group Statistics).pdfhttp://arxiv.org/abs/hep-th/95060161995 - J\\\"or\\ss - The Construction of Pointlike Localized Charged Fields from Conformal Haag-Kastler Nets.pdf" "1995 - Liguori, Mintchev - Fock Spaces with Generalized Statistics.pdfhttp://arxiv.org/abs/hep-th/96041611996 - Balog, Niedermaier, Hauer - Perturbative versus Non-perturbative QFT Lessons from the O(3) NLS Model.pdf1996 - Filk - Divergenices of a field theory on quantum space.pdf" "http://arxiv.org/abs/hep-th/96092061996 - Grosse, Langmann, Raschhofer - The Luttinger--Schwinger Model.pdf1997 - Borchers - Half-sided Translations in Connection with Modular Groups as a Tool in Quantum Field Theory.pdf1997 - M\\\"uger - Superselection Structure of Quantum Field Theories in 1+1 Dimenions PhD.pdf" "http://arxiv.org/abs/hep-th/96080921997 - Schroer - Wigner Representation Theory of the Poincare Group, Localization, Statistics and the S-Matrix.pdf1997 - Wulkenhaar - Non-Associative Geometry - Unified Models Based on L-Cycles -- PhD Thesis.pdfhttp://arxiv.org/abs/hep-th/9810026" "1998 - Dorey - Exact S-matrices.pdf1998 - Eveson, Fewster - Bounds on negative energy densities in flat spacetime.pdf1998 - Schroer - Localization and Nonperturbative Local Quantum Physics.pdfhttp://arxiv.org/abs/hep-th/97121241998 - Schroer - Modular Wedge Localization and the d=1+1 Formfactor Program.pdf" "http://arxiv.org/abs/math/98060311998 - Wassermann - OPERATOR ALGEBRAS AND CONFORMAL FIELD THEORY III.pdf1999 - Florig - Geometric Modular Action -- PhD-Thesis.pdfhttp://arxiv.org/abs/hep-th/99062251999 - Oeckl - Braided Quantum Field Theory.pdfhttp://arxiv.org/abs/hep-th/9908021" "1999 - Schroer - New Concepts in Particle Physics from Solution of an Old Problem.pdf2000 - Bostelmann - Lokale Algebren und Operatorprodukte am Punkt.pdfhttp://arxiv.org/abs/0801.46052008 - Carey, Phillips, Rennie - Twisted cyclic theory and an index theory for the gauge invariant KMS state on Cuntz algebras.pdf" "http://arxiv.org/abs/0802.0317http://arxiv.org/abs/0802.18542008 - Summers - Yet More Ado About Nothing: The Remarkable Relativistic Vacuum State.pdfhttp://arxiv.org/abs/0802.20982008 - Schroer - Is inert matter from indecomposable positive energy infinite spin representations the much sought-after dark matter.pdf" "1993 - Verch - Antilocality and a Reeh-Schlieder Theorem on Manifolds.pdfhttp://arxiv.org/abs/0802.29352008 - Summers - ``On the Impossibility of a Poincare-Invariant Vacuum State with Unit Norm'' Refuted.pdfhttp://arxiv.org/abs/0802.02161989 - Longo - Index of subfactors and statistics of quantum fields I.pdf" "1990 - Mack, Schomerus - Conformal field algebras with quantum symmetry from the theory of superselection sectors.pdf2000 - Jaffe - Constructive Quantum Field Theory.pdf1999 - Schroer - New Concepts in Particle Physics from Solution of an Old Problem.pdfhttp://arxiv.org/abs/gr-qc/0001050" "2000 - Varadarajan - Fock representations from U(1) holonomy algebras.pdf1998 - Borchers - Half-sided Translations and the Type of von Neumann Algebras.pdf2001 - Fidaleo - On the split property for inclusions of W-algebras.pdf2002 - Ebrahimi-Fard - On the relation between modular theory and geometry.pdf" "1981 - Ojima - Gauge Fields at Finite Temperature - ``Thermo Field Dynamics'' and the KMS Condition and Their Extension to Gauge Theories.pdf2007 - Zahn - Dispersion relations in quantum electrodynamics on the noncommutative Minkowski space - PhD-Thesis.pdf" "2007 - Kopf, Paschke - Generally covariant quantum mechanics on noncommutative configuration spaces.pdf2007 - Dybalski - A sharpened nuclearity condition and the uniqueness of the vacuum in QFT.pdf2004 - Kuckert, Mund - Spin and Statistics in Nonrelativistic Quantum Mechanics II.pdf" "2007 - Tureanu - Twisted Poincare Symmetry and Some Implications on Noncommutative Quantum Field Theory.pdf2007 - t'Hooft - The Grand Views of Physics.pdfhttp://arxiv.org/abs/math-ph/011204110.1007/s00220-003-0815-72001 - Brunetti, Fredenhagen, Verch - The generally covariant locality principle - A new paradigm for local quantum physics.pdf" "2003 - Camassa - Quasi-Free States and KMS States of the Scalar Free Field.pdfhttp://www.staff.city.ac.uk/o.castro-alvaredo/heptese.pdf2001 - Castro-Alvaredo - Bootstrap Methods in 1+1-Dimensional Quantum Field Theories - the Homogeneous Sine-Gordon Models - PhD thesis.pdf" "2001 - Schroer - Lectures on Algebraic Quantum Field Theory and Operator Algebras.pdf2002 - Kniemeyer - Untersuchungen am erzeugenden Funktional der AdS-CFT-Korrespondenz.pdf2003 - Kawahigashi, Longo - Classification of Two-dimensional Local Conformal Nets with c smaller 1 and 2-cohomology Vanishing for Tensor Categories.pdf" "2004 - Buchholz, Summers - Quantum statistics and locality.pdf\u00a9 symmetry and its implications.pdf2004 - Fewster, Ojima, Porrmann - p-Nuclearity in a New Perspective.pdf2004 - Heslop, Sibold - Quantized equations of motion in non-commutative theories.pdfhttp://arxiv.org/abs/math-ph/0402043" "2004 - Mund, Schroer, Yngvason - String-Localized quantum fields from Wigner representations.pdf2004 - Ullrich - Uniqueness in the Characteristic Cauchy Problem of the Klein-Gordon Equation and Tame Restrictions of Generalized Functions.pdf2005 - Gallavotii - Constructive Quantum Field Theory.pdf" "2006 - D'Antoni, Morsella - Scaling algebras and superselection sectors: Study of a class of models.pdf2006 - Fleischhack - Kinematical Uniqueness of Loop Quantum Gravity.pdf2006 - Giesel, Thiemann - Algebraic Quantum Gravity (AQG) I. Conceptual Setup.pdf2006 - Kawahigashi, Longo, Pennig, Rehren - The classification of non-local chiral CFT with c less than 1.pdf" "2006 - Lewandowski, Kaminski, Okolow - Background independent quantizations: the scalar field II.pdf2006 - Redei, Summers - Quantum Probability Theory.pdf2006 - Sahlmann - Exploring the diffeomorphism invariant Hilbert space of a scalar field.pdf2006 - Thiemann - Ein Universum aus brodelnden Schleifen.pdf" "2006 - Thiemann - Loop Quantum Gravity - An Inside View.pdf2007 - Balog, Weisz - Construction and clustering properties of the 2-d non-linear sigma model form factors - O(3), O(4), large n examples.pdf2007 - Baumg\\\"artner - Thermodynamic Stability: A note on a footnote in Ruelle's book.pdf" "http://arxiv.org/abs/0803.1468http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6VN0-3YMWKX2-J&_user=162904&_rdoc=1&_fmt=&_orig=search&_sort=d&view=c&_acct=C000013078&_version=1&_urlVersion=0&_userid=162904&md5=eda241c67a6639fb4bd486d8ad51ecdc10.1016/0034-4877(96)83512-9" "1995 - Baumg\\\"artel, Jurke, Lled\\'o - On Free Nets Over Minkowski Space.pdfhttp://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6WJJ-4CRHYBM-4Y&_user=162904&_coverDate=05%2F31%2F1973&_alid=703919693&_rdoc=2&_fmt=full&_orig=search&_cdi=6880&_sort=d&_docanchor=&view=c&_ct=2&_acct=C000013078&_version=1&_urlVersion=0&_userid=162904&md5=1f33ae207b04b63eb9040ca7df0b088e" "10.1016/0022-1236(73)90062-11972 - Eckmann, Osterwalder - An application of Tomita's theory of modular Hilbert algebras: Duality for free Bose fields.pdfhttp://arxiv.org/abs/hep-th/05081432005 - Kopper - Renormalization Theory based on Flow Equations.pdfhttp://projecteuclid.org/euclid.cmp/1103922129" "1983 - Klein, Landau - From the Euclidean group to the Poincar\\'e group via Osterwalder-Schrader positivity.pdfhttp://projecteuclid.org/euclid.cmp/11038989091975 - L\\\"uscher, Mack - Global Conformal Invariance in Quantum Field Theory.pdf2001 - Paschke - Von Nichtkommutativen Geometrien, ihren Symmetrien und etwas Hochenergiephysik.pdf" "http://arxiv.org/abs/0804.35632008 - Schroer - A note on Infraparticles and Unparticles.pdf10.1007/BF020965481992 - Guido, Longo - Relativistic invariance and charge conjugation in quantum field theory.pdfhttp://arxiv.org/abs/hep-th/030724110.1007/s00220-004-1057-z" "2003 - Gayral, Gracia-Bondia, Iochum, Schucker, Varilly - Moyal planes are spectral triples.pdfhttp://projecteuclid.org/euclid.cmp/110385859010.1007/BF016461341973 - Swieca, V\\\"olkel - Remarks on Conformal Invariance.pdfhttp://arxiv.org/abs/0802.35262008 - Schroer - Do confinement and darkness have the same conceptual roots - The crucial role of localization.pdf" "http://arxiv.org/abs/0805.3500http://www.numdam.org/numdam-bin/fitem?id=AIHPA_1986__45_2_117_01986 - Yngvason - Invariant states on Borchers\\rq tensor algebra.pdfhttp://projecteuclid.org/euclid.cmp/110392032510.1007/BF012090751981 - Yngvason - Translationally invariant states and the spectrum ideal in the algebra of test functions for quantum fields.pdf" "http://projecteuclid.org/euclid.cmp/110385947610.1007/BF016464761973 - Yngvason - On the Algebra of Test Functions for Field Operators - Decomposition of Linear Functionals into Positive Ones.pdf10.1007/BF027456451962 - Borchers - On Structure of the Algebra of Field Operators.pdf" "10.1088/0305-44702005 - Franco - On the Borchers Class of a Non-Commutative Field.pdf2001 - Borchers, Yngvason - On the PCT--Theorem in the Theory of Local Observables.pdfhttp://arxiv.org/abs/0806.03492008 - Buchholz, Summers - Warped Convolutions: A Novel Tool in the Construction of Quantum Field Theories.pdf" "http://arxiv.org/abs/0707.38532007 - Carey, Phillips, Rennie - Semifinite spectral triples associated with graph Cstar-algebras.pdfhttp://arxiv.org/abs/0803.10352008 - Grosse, Vignes-Tourneret - Minimalist translation-invariant non-commutative scalar field theory.pdf" "http://arxiv.org/abs/0802.0791http://arxiv.org/abs/0806.1940http://arxiv.org/abs/0802.099710.1103/PhysRevD.77.1250132008 - Soloviev - On the failure of microcausality in noncommutative field theories.pdfhttp://arxiv.org/abs/0706.171210.1016/0370-2693(94)90940-7" "1994 - Doplicher, Fredenhagen, Roberts - Space-time quantization induced by classical gravity.pdfhttp://theory.djvuhttp://arxiv.org/abs/0803.4351http://arxiv.org/abs/0706.12592007 - Akofor, Balachandran, Jo, Joseph - Quantum Fields on the Groenwald-Moyal Plane: C, P, T and CPT.pdf" "10.1016/S0550-3213(02)00937-92002 - Aschieri, Jurco, Schupp, Wess - Noncommutative GUTs, standard model and C,P,T..pdfhttp://arxiv.org/abs/hep-th/06052492006 - Soloviev - Axiomatic formulations of nonlocal and noncommutative field theories.pdf2006 - Chu, Furuta, Inami - Locality, Causality and Noncommutative Geometry.pdf" "2004 - Franco , Polito - A New Derivation of the CPT and Spin-Statistics Theorems in Non-Commutative Field Theories.pdf10.1140/epjc2004 - Grosse, Wulkenhaar - The beta-function in duality-covariant noncommutative phi^4-theory.pdf10.1140/epjc2007 - Disertori, Rivasseau - Two and Three Loops Beta Function of Non Commutative Phi^4_4 Theory.pdf" "10.1016/j.physletb.2007.04.0072007 - Disertori, Gurau, Magnen, Rivasseau - Vanishing of Beta Function of Non Commutative Phi^4_4 Theory to all orders.pdf10.2977/prims1984 - Yngvason - On the Locality Ideal in the Algebra of Test Functions for Quantum Fields.pdf" "1968 - Lassner, Uhlmann - On positive functionals on algebras of test functions for quantum fields.pdf2008 - Hollands, Wald - Axiomatic quantum field theory in curved spacetime.pdf1978 - Leyland, Roberts, Testard - Duality for Quantum Free Fields.pdf2008 - Buchholz - Ein alternativer Zugang zur Teilchenphysik.pdf" "http://arxiv.org/abs/0808.345910.1088/1126-67082008 - Grosse, Lechner - Noncommutative Deformations of Wightman Quantum Field Theories.pdfhttp://arxiv.org/abs/0803.10352008 - Grosse, Vignes-Tourneret - Quantum field theory on the degenerate Moyal space.pdfhttp://arxiv.org/abs/0810.1195" "10.1088/1126-67082008 - Fischer, Szabo - Duality covariant quantum field theory on noncommutative Minkowski space.pdfhttp://arxiv.org/abs/hep-th/99102431999 - Buchholz, Haag - The Quest for Understanding in Relativistic Quantum Physics.pdf1966 - Symanzik - Euclidean Quantum Field Theory. I. Equations for a Scalar Model.pdf" "1999 - Schlingemann - Short-distance analysis for algebraic euclidean field theory.pdfhttp://arxiv.org/abs/hep-th/98020351999 - Schlingemann - From Euclidean Field Theory to Quantum Field Theory.pdfhttp://arxiv.org/abs/0810.52942008 - Redei, Summers - When are quantum systems operationally independent.pdf" "http://arxiv.org/abs/math-ph/98050131999 - Borchers, Yngvason - Modular groups of quantum fields in thermal states.pdf10.1016/0370-2693(79)90561-6http://arxiv.org/abs/hep-th/93100581993 - Fendley, Saleur - Massless integrable quantum field theories and massless scattering in 1+1 dimensions.pdf" "10.1007/BF020992491996 - Fredenhagen, J\\\"or\\ss - Conformal Haag-Kastler nets, pointlike localized fields and the existence of operator product expansions.pdf10.1103/PhysRevD.67.08500110.1023/B:MATH.0000035040.57943.7e10.1088/1751-8113http://arxiv.org/abs/math/0606333" "2008 - Kasprzak - Rieffel Deformations via Crossed Products.pdf1990 - Rieffel - Deformation Quantization and Operator Algebras.pdfhttp://arxiv.org/abs/math/04082172004 - Waldmann - States and representations in deformation quantization.pdfhttp://arxiv.org/abs/math/0609850" "2006 - Heller, Neumaier, Waldmann - A C-Algebraic Model for Locally Noncommutative Spacetimes.pdfhttp://arxiv.org/abs/math/99030531999 - Waldmann - Locality in GNS Representations of Deformation Quantization.pdfhttp://arxiv.org/abs/0901.10042009 - Lledo - Modular Theory by Example.pdf" "http://arxiv.org/abs/0812.47622008 - Bostelmann, D'Antoni, Morsella - On dilation symmetries arising from scaling limits.pdfhttp://arxiv.org/abs/0812.47602008 - Bostelmann, Fewster - Quantum Inequalities from Operator Product Expansions.pdfhttp://arxiv.org/abs/0809.2206" "10.4171/JNCG2008 - Kaschek, Neumaier, Waldmann - Complete Positivity of Rieffel's Deformation Quantization by Actions of Rd.pdf10.1007/BF016456931972 - Wyss - The Field algebra and its positive linear functionals.pdf10.1023/A:10075465073921998 - Florig - On Borchers' theorem.pdf" "2009 - Piacitelli - Twisted Covariance vs Weyl Quantisation.pdfhttp://arxiv.org/abs/math-ph/06040232006 - De Bievre, Merkli - The Unruh effect revisited.pdfhttp://arxiv.org/abs/0812.15172008 - Summers - Subsystems and Independence in Relativistic Microscopic Physics.pdf" "http://arxiv.org/abs/0901.31272008 - Dybalski - Spectral Theory of Automorphism Groups and Particle Structures in Quantum Field Theory.pdfhttp://analysis.djvu/home/gandalf/Physik/Fachb\\\"ucher/Kadison, Ringrose - Fundamentals of the Theory of Operator Algebras I - Elementary Theory.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Kadison, Ringrose - Fundamentals of the Theory of Operator Algebras II - Advanced Theory.pdf/home/gandalf/Physik/Lecture Notes/1997 - Landi - An Introduction to Noncommutative Spaces and their Geometry.pdfhttp://theory.djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Bratteli, Robinson - Operator Algebras and Quantum Statistical Mechanics. Vol. 1.djvu/home/gandalf/Physik/Fachb\\\"ucher/Bratteli, Robinson - Operator Algebras and Quantum Statistical Mechanics. Vol. 2.djvuhttp://algebras.djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Jost - General theory of quantized fields (AMS, 1964)(L)(T)(86s).djvu2002 - Boller - Spectral Theory of Modular Operators for von Neumann Algebras and Related Inverse Problems.pdfhttp://www.emis.de/journals/ZAA/1901/2.html2000 - Leitz-Martini, Wollenberg - Notes on Modular Conjugations of von Neumann Factors.pdf" "http://arxiv.org/abs/0902.05752009 - Piacitelli - Twisted Covariance as a Non Invariant Restriction of the Fully Covariant DFR Model.pdf/home/gandalf/Physik/Fachb\\\"ucher/Takesaki M. Theory of operator algebras 1 (Enc.Math.Sci.124, Springer, 2001)(ISBN 354042248X)(600dpi)(T)(435s)_MCf_.djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Takesaki M. Theory of operator algebras 2 (Enc.Math.Sci.125, Springer, 2003)(ISBN 354042914X)(600dpi)(T)(540s)_MCf_.djvu/home/gandalf/Physik/Fachb\\\"ucher/Takesaki M. Theory of operator algebras 3 (Enc.Math.Sci.127, Springer, 2003)(ISBN 3540429131)(600dpi)(T)(570s)_MCf_.djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Connes - Noncommutative Geometry.pdf/home/gandalf/Physik/Fachb\\\"ucher/Reed, Simon - Methods of Modern Mathematical Physics I - Functional Analysis.pdf/home/gandalf/Physik/Fachb\\\"ucher/Reed, Simon - Methods of Modern Mathematical Physics II - Fourier Analysis, Self-Adjointness.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Reed, Simon - Methods of Modern Mathematical Physics III - Scattering Theory.pdf/home/gandalf/Physik/Fachb\\\"ucher/Reed, Simon - Methods of Modern Mathematical Physics IV - Analysis of Operators.pdfhttp://i.djvu/home/gandalf/Physik/Fachb\\\"ucher/Neumann - Mathematische Grundlagen der Quantenmechanik.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Landsman - Mathematical topics between classical and quantum mechanics.djvu1962 - Uhlmann - \\\"Uber die Definition der Quantenfelder nach Wightman und Haag.pdf1972 - Borchers - Algebraic Aspects of Wightman Field Theory.pdfhttp://arxiv.org/abs/0812.0786" "10.1007/s00220-009-0905-22008 - Borris, Verch - Dirac field on Moyal-Minkowski spacetime and non-commutative potential scattering.pdf/home/gandalf/Physik/Fachb\\\"ucher/Rieffel - Deformation Quantization for Actions of Rd.pdf10.1023/A:10073680125571997 - Rehren - Bounded Bose fields.pdf" "1997 - Rehren - Konforme Quantenfeldtheorie.pdf/home/gandalf/Physik/Lecture Notes/1997 - Rehren - Konforme Quantenfeldtheorie.pdf/home/gandalf/Physik/Fachb\\\"ucher/Di Francesco P., Mathieu P., Senechal D. Conformal field theory (Springer 1997)(no preface)(K)(T)(908s)_PQft_.djvu" "http://arxiv.org/abs/hep-th/940707910.1007/BF021018941996 - B\\\"ockenhauer - Localized endomorphisms of the chiral Ising model.pdf2008 - Fewster - Lectures on quantum field theory in curved spacetime.pdf1988 - Furlan, Sotkov, Todorov - Two-dimensional conformal quantum field theory.pdf" "2004 - Kawahigashi, Longo - Classification of Local Conformal Nets. Case c < 1.pdf10.1103/PhysRevLett.38.7931977 - McCoy, Tracy, Wu - Two-Dimensional Ising Model as an Exactly Solvable Relativistic Quantum Field Theory: Explicit Formulas for n-Point Functions.pdf" "10.1023/A:10075171311431999 - Carpi - Classification of Subsystems for the Haag--Kastler Nets Generated by c = 1 Chiral Current Algebras.pdf10.1023/A:10074664201141998 - Carpi - Absence of Subsystems for the Haag--Kastler Net Generated by the Energy-Momentum Tensor in Two-Dimensional Conformal Field Theory.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Heuser H. Gewoehnliche Differentialgleichungen (Teubner, 1995)(de)(600dpi)(T)(628s)_MCde_.djvu2000 - Boller - Characterization of Cyclic and Separating Vectors and Application to an Inverse Problem in Modular Theory I. Finite Factors.pdf" "http://algebras.djvu2008 - Longo - Lectures on Conformal Nets - part1.pdf2008 - Longo - Lectures on Conformal Nets - part2.pdf2001 - D\\\"utsch, Fedenhagen - Perturbative Algebraic Field Theory, and Deformation Quantization.pdf2003 - Ritz - Normalit\\\"atseigenschaften lokaler Gleichgewichtszust\\\"ande in der relativistischen Quantenfeldtheorie.pdf" "1996 - Brunetti, Fredenhagen, K\\\"ohler - The microlocal spectrum condition and Wick polynomials of free fields on curved spacetimes.pdfhttp://arxiv.org/abs/0802.21982008 - Hollands - Quantum field theory in terms of consistency conditions I: General framework, and perturbation theory via Hochschild cohomology.pdf" "http://www.jstor.org/stable/19704841964 - Gerstenhaber - On the deformation of rings and algebras.pdfhttp://arxiv.org/abs/0905.37762009 - Nahm, Keegan - Integrable deformations of CFTs and the discrete Hirota equations.pdfhttp://arxiv.org/abs/hep-th/9411203" "10.1016/0370-2693(95)00125-51995 - Gliozzi, Tateo - ADE functional dilogarithm identities and integrable models.pdfhttp://geometry.djvu1996 - Weaver - Deformations of von Neumann algebras.pdf1981 - Rieffel - Von Neumann algebras associated with pairs of lattices in Lie groups.pdf" "1990 - Rieffel - Non-commutative tori - a case study of non-commutative differentiable manifolds.pdfhttp://arxiv.org/abs/0905.44352009 - Schroer - BMS symmetry, holography on null-surfaces and area proportionality of light-slice entropy.pdfhttp://link.aip.org/link/?JMP/25/113/1" "10.1063/1.5260051982 - Lester - The causal automorphism of de Sitter and Einstein cylinder spacetimes.pdfhttp://arxiv.org/abs/math-ph/03100092003 - Suijlekom - The noncommutative Lorentzian cylinder as an isospectral deformation.pdf10.1007/BF020995821995 - Coburn, Xia - Toeplitz Algebras and Rieffel Deformations.pdf" "http://arxiv.org/abs/math/02092952002 - Bieliavsky, Maeda - Convergent Star Product Algebras on 'ax+b'.pdfhttp://arxiv.org/abs/math/00100042000 - Bieliavsky - Strict Quantization of Solvable Symmetric Spaces.pdf2006 - Heller - Lokal nichtkommutative Raumzeiten und Strikte Deformationsquantisierung - Diplom.pdf" "2008 - Kaschek - Nichtperturbative Deformationstheorie physikalischer Zust\\\"ande - Diplomarbeit.pdf/home/gandalf/Physik/Fachb\\\"ucher/Lance E.C. Hilbert C-Modules.. a toolkit for operator algebraists (CUP, 1995)(600dpi)(T)(ISBN 052147910X)(138s).djvu10.1007/BF01941663" "1981 - Fredenhagen, Hertel - Local algebras of observables and pointlike localized fields.pdf/home/gandalf/Physik/Fachb\\\"ucher/Schiff J.L. Laplace Transformation.. Theory and Applications (UTM, Springer,1999)(ISBN 0387986987)(245s)_MCat_.pdfhttp://arxiv.org/abs/0906.3524" "2009 - Rivasseau - Constructive Field Theory in Zero Dimension.pdf10.1007/BF015651141992 - Bros, Buchholz - Particles and propagators in relativistic thermo field theory.pdfhttp://arxiv.org/abs/hep-th/980709910.1016/0550-3213(94)00298-31994 - Bros, Buchholz - Towards a Relativistic KMS Condition.pdf" "http://arxiv.org/abs/hep-th/95110221995 - Bros, Buchholz - Relativistic KMS-condition and Kaellen-Lehmann type representatios of thermal propagators.pdfhttp://arxiv.org/abs/hep-th/96060461996 - Bros, Buchholz - Axiomatic analyticity properties and representations of particles in thermal quantum field theory.pdf" "http://arxiv.org/abs/hep-th/960813910.1103/PhysRevD.58.1250121998 - Bros, Buchholz - The unmasking of thermal Goldstone bosons.pdfhttp://arxiv.org/abs/hep-ph/010913610.1016/S0550-3213(02)00059-72002 - Bros, Buchholz - Asymptotic dynamics of thermal quantum fields.pdf" "http://arxiv.org/abs/hep-th/98040171999 - J\\\"akel - Cluster Estimates for Modular Structures.pdfhttp://www.math.berkeley.edu/~rieffel/papers/compact.pdf1993 - Rieffel - Compact quantum groups associated with toral subgroups.pdf1995 - Rieffel - Non-compact quantum groups associated with abelian subgroups.pdf" "1974 - Rieffel - Induced Representations of C-Algebras.pdfhttp://arxiv.org/abs/0907.09052009 - Akofor, Balachandran - Finite Temperature Field Theory on the Moyal Plane.pdfhttp://arxiv.org/abs/physics/970802710.1063/1.5324841998 - Bertrand, Bertrand - Symbolic calculus on the time-frequency half-plane.pdf" "10.1016/0370-2693(79)90523-91978 - Karowski, Kurak, Schroer - Confinement in two-dimensional models with factorization.pdf1999 - Quella - Formfaktoren und Lokalit\\\"at in integrablen Modellen der Quantenfeldtheorie in 1+1 Dimensionen.pdfhttp://arxiv.org/abs/0907.3640" "2009 - Galluccio, Lizzi, Vitale - Translation Invariance, Commutation Relations and Ultraviolet-Infrared Mixing.pdf/home/gandalf/Physik/Fachb\\\"ucher/Arnold V.I. Ordinary differential equations (MIT, 1978)(no TOC)(400dpi)(T)(273s).djvu/home/gandalf/Physik/Fachb\\\"ucher/Teschl G. Ordinary differential equations (lecture notes, web draft, 2004)(243s).pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Chicone C. Ordinary Differential Equations with Applications(TAM 34,Springer,1999)(ISBN 0387985352)(571s)_MCde_.pdf10.1016/0003-4916(89)90262-51989 - Varilly, Gracia-Bondia - The Moyal Representation for Spin.pdf/home/gandalf/Physik/Fachb\\\"ucher/Williams - Crossed products of C-algebras.djvu" "http://arxiv.org/abs/0908.45372009 - Bahns - Schwinger functions in noncommutative quantum field theory.pdfhttp://arxiv.org/abs/0906.20672009 - Schroer - Geometry and Localization, a metaphorically related pair.pdf/home/gandalf/Physik/Fachb\\\"ucher/Jaenich K. Funktionentheorie (5ed., Springer, 1999)(de)(L)(T)(ISBN 3540661522)(66s).djvu" "http://arxiv.org/abs/0909.18992009 - Brunetti, Fredenhagen, Hoge - Time in quantum physics: From an external parameter to an intrinsic observable.pdfhttp://space.djvuhttp://arxiv.org/abs/0909.32152009 - Dabrowski, Piacitelli - The k-Minkowski Spacetime: Trace, Classical Limit and uncertainty Relations.pdf" "http://arxiv.org/abs/hep-th/060315510.1007/978-3-540-71117-9_42006 - Fredenhagen, Rehren, Seiler - Quantum Field Theory: Where We Are.pdf/home/gandalf/Physik/Fachb\\\"ucher/Connes A., Cuntz J., et al., Noncommutative geometry, CIME lectures, 2000, LNM1831, Springer, 2004, 359s.pdf" "1998 - M\\\"uger - Quantum Double Actions on Operator Algebras and Orbifold Quantum Field Theories.pdf2005 - Albeverio, Motovilov - Operator integrals with respect to a spectral measure and solutions to some operator equations.pdf/home/gandalf/Physik/Fachb\\\"ucher/Pedersen G.K. C-algebras and their authomorphism groups (AP, 1979)(600dpi)(T)(ISBN 0125494505)(426s).djvu" "2005 - Moschella - The de Sitter and anti-de Sitter sightseeing tour.pdfhttp://arxiv.org/abs/1005.265610.1007/s00220-010-1137-12010 - Buchholz, Lechner, Summers - Warped Convolutions, Rieffel Deformations and the Construction of Quantum Field Theories.pdfhttp://arxiv.org/abs/1006.3548" "10.1007/s00220-011-1210-42010 - Dappiaggi, Lechner, Morfa-Morales - Deformations of quantum field theories on spacetimes with Killing fields.pdf2009 - Lechner - Deformations of Operator Algebras and the Construction of Quantum Field Theories.pdfhttp://arxiv.org/abs/0911.5136" "2009 - Doplicher - The Principle of Locality. Effectiveness, fate and challenges.pdf/home/gandalf/Physik/Fachb\\\"ucher/Waldmann - Poisson-Geometrie und Deformationsquantisierung.pdfhttp://arxiv.org/abs/0712.17702007 - Dappiaggi, Moretti, Pinamonti - Cosmological horizons and reconstruction of quantum field theories.pdf" "2008 - Dappiaggi, Moretti, Pinamonti - Distinguished quantum states in a class of cosmological spacetimes and their Hadamard property.pdf2009 - Manchak - Is spacetime hole free.pdf2000 - Kuckert - Localization Regions of Local Observables.pdf1994 - Masiello - Convex regions of Lorentzian manifolds.pdf" "http://arxiv.org/abs/0912.09062009 - Cagnache, D'Andrea, Martinetti, Wallet - The spectral distance on the Moyal plane.pdfhttp://arxiv.org/abs/0912.11062009 - Longo, Martinetti, Rehren - Geometric modular action for disjoint intervals and boundary conformal field theory.pdf" "http://arxiv.org/abs/math-ph/00020212000 - Sahlmann, Verch - Passivity and microlocal spectrum condition.pdfhttp://arxiv.org/abs/gr-qc/98030361999 - Borchers, Buchholz - Global properties of vacuum states in de Sitter space.pdf/home/gandalf/Physik/Fachb\\\"ucher/Wald R.M. General relativity (1984)(T)(ISBN 0226870332)(494s).djvu" "http://www.lqp.uni-goe.de/papers/09/12/09120802.html2009 - Borchers - On the Net of von Neumann algebras associated with a Wedge and Wedge-causal Manifolds.pdf2009 - Claessens - Locally anti de Sitter spaces and deformation quantization.pdfhttp://arxiv.org/abs/0912.2252" "2009 - Ohl, Schenkel - Algebraic approach to quantum field theory on a class of noncommutative curved spacetimes.pdf/home/gandalf/Physik/Fachb\\\"ucher/Sachs R.K., Wu H. General relativity for mathematicians (Springer, 1977)(T)(ISBN 038790218X)(301s).djvuhttp://arxiv.org/abs/1001.1882" "2010 - Streater - A Scattering Theory based on Free Fields.pdf/home/gandalf/Physik/Fachb\\\"ucher/Sakai S. C-star-algebras and W-star-algebras (Springer, 1971)(600dpi)(T)(270s).djvu/home/gandalf/Physik/Fachb\\\"ucher/Arveson W. An invitation to C-algebras (Springer, 1976)(600dpi)(T)(116s).djvu" "1966 - Araki, Woods - Complete Boolean algebras of type I factors.pdf/home/gandalf/Physik/Fachb\\\"ucher/Guichardet. Symmetric Hilbert Spaces and Related Topics (LNM0261, Springer, 1972)(ISBN 3540058036)(T)(202s).djvuhttp://arxiv.org/abs/1002.09562010 - L\\aangvik, Zahabi - On Finite Noncommutativity in Quantum Field Theory.pdf" "http://arxiv.org/abs/hep-th/00050572000 - Porrmann - The Concept of Particle Weights in Local Quantum Field Theory - PhD-Thesis.pdfhttp://arxiv.org/abs/0809.48282008 - Sanders - Aspects of locally covariant quantum field theory - PhD-Thesis.pdfhttp://arxiv.org/abs/0903.1021" "2009 - Sanders - Equivalence of the (generalised) Hadamard and microlocal spectrum condition for (generalised) free fields in curved spacetime.pdfhttp://arxiv.org/abs/0801.46762008 - Sanders - On the Reeh-Schlieder Property in Curved Spacetime.pdfhttp://arxiv.org/abs/1001.0858" "2010 - Dappiaggi, Pinamonti, Porrmann - Local causal structures, Hadamard states and the principle of local covariance in quantum field theory.pdfhttp://arxiv.org/abs/0806.080310.1007/s00220-009-0780-x2008 - Pinamonti - Conformal generally covariant quantum field theory: The scalar field and its Wick products.pdf" "2009 - Waldmann - Geometric Wave Equations.pdfhttp://arxiv.org/abs/0712.04012007 - Lauridsen-Ribeiro - Structural and Dynamical Aspects of the AdS-CFT Correspondence - a Rigorous Approach - PhD-Thesis.pdf/home/gandalf/Physik/Fachb\\\"ucher/Jaenich K. Vektoranalysis (2ed., Springer, 1993)(de)(L)(T)(ISBN 3540571426)(143s).djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Isham C.J. Modern Differential Geometry for Physicists (WS, 2001)(T)(306s).djvu/home/gandalf/Physik/Fachb\\\"ucher/J\\\"anich - Topologie.djvu/home/gandalf/Physik/Fachb\\\"ucher/Rudin - Functional Analysis.djvuhttp://arxiv.org/abs/math-ph/0001034" "2000 - Longo - The Bisognano-Wichmann Theorem for Charged States and the Conformal Boundary of a Black Hole.pdf/home/gandalf/Physik/Fachb\\\"ucher/Galindo A., Pascual P. Quantum mechanics I (Springer, 1990)(ISBN 0387514066)(T) (431s).djvu/home/gandalf/Physik/Fachb\\\"ucher/Galindo A., Pascual P. Quantum mechanics II (Springer, 1991)(ISBN 038752309X)(T)(388s).djvu" "http://geometry.djvuhttp://analysis.djvuhttp://qft.djvuhttp://arxiv.org/abs/gr-qc/040111210.1007/s00220-005-1346-12005 - Bernal, Sanchez - Smoothness of time functions and the metric splitting of globally hyperbolic spacetimes.pdfhttp://arxiv.org/abs/gr-qc/0512095" "10.1007/s11005-006-0091-52006 - Bernal, Sanchez - Further results on the smoothability of Cauchy hypersurfaces and Cauchy time functions.pdfhttp://topology.djvuhttp://holes.djvu10.1007/s10714-006-0283-42006 - Ellis - The Bianchi Models - Then and Now.pdf10.1103/PhysRevD.10.3905" "http://thermodynamics.djvu10.1007/BF0210118010.1007/BF0210009610.1103/PhysRevD.35.377110.1063/1.166450710.1063/1.1665067http://spacetime.djvuhttp://sciences.djvuhttp://arxiv.org/abs/hep-th/99051791999 - Rehren - Algebraic Holography.pdf10.1142/S0129055X96000093" "2000 - Buchholz - Algebraic quantum field theory: A Status report.pdfhttp://projecteuclid.org/euclid.cmp/110394333710.1007/BF012126871985 - Kay - The double-wedge algebra for quantum fields on Schwarzschild and Minkowski spacetimes.pdfhttp://arxiv.org/abs/0709.1110" "2007 - Bieliavsky - Deformation quantization for actions of the affine group.pdfhttp://arxiv.org/abs/hep-th/04032572004 - Bieliavsky, Detournay, Rooman, Spindel - Star products on extended massive non-rotating BTZ black holes.pdfhttp://arxiv.org/abs/math/0011144" "2001 - Bieliavsky, Massar - Strict Deformation Quantization for Actions of a Class of Symplectic Lie Groups.pdfhttp://integral.djvuhttp://arxiv.org/abs/1004.06162010 - Longo, Witten - An Algebraic Construction of Boundary Quantum Field Theory.pdfhttp://www.ems-ph.org/journals/show_abstract.php?issn=0034-5318&vol=6&iss=3&rank=1&srch=searchterm%7COn+quasifree+states+of+CAR+and+Bogoliubov+automorphisms" "10.2977/prims1970 - Araki - On Quasifree States of CAR and Bogoliubov Automorphisms.pdf1968 - Araki - On the Diagonalization of a Bilinear Hamiltonian by a Bogoliubov Transformation.pdfhttp://arxiv.org/abs/0904.061210.1142/S0129055X090038642009 - Dappiaggi, Hack, Pinamonti - The extended algebra of observables for Dirac fields and the trace anomaly of their stress-energy tensor.pdf" "10.2307/19985971982 - Dimock - Dirac Quantum Fields on a Manifold.pdf10.1007/s0022000002992000 - Strohmaier - The Reeh--Schlieder Property for Quantum Fields on Stationary Spacetimes.pdfhttp://projecteuclid.org/euclid.cmp/11038414811969 - Doplicher, Haag, Roberts - Fields, observables and gauge transformations I.pdf" "http://www.ems-ph.org/journals/show_abstract.php?issn=0034-5318&vol=19&iss=2&rank=11&srch=searchterm%7CAbstract+Twisted+Duality+for+Quantum+Free+Fermi+Fields1983 - Foit - Abstract Twisted Duality for Quantum Free Fermi Fields.pdf10.1007/BF012056641981 - Summers - Normal product states for fermions and twisted duality for CCR- and CAR-type algebras with application to the Yukawa2 quantum field model.pdf" "10.1007/s0022001005262001 - Verch - A Spin-Statistics Theorem for Quantum Fields on Curved Spacetime Manifolds in a Generally Covariant Framework.pdf2000 - Verch - On Generalizations of the Spectrum Condition.pdfhttp://dx.doi.org/10.1142/S0129167X9300031510.1142/S0129167X93000315" "1993 - Schweitzer - Dense m-convex Frechet Subalgebras of Operator Algebra Crossed Products by Lie Groups.pdf/home/gandalf/Physik/Fachb\\\"ucher/Taylor - Noncommutative Harmonic Analysis.pdfhttp://arxiv.org/abs/quant-ph/02021222008 - Keyl - Fundamentals of Quantum Information Theory.pdf" "http://arxiv.org/abs/gr-qc/04050572004 - Paschke, Verch - Local covariant quantum field theory over spectral geometries.pdfhttp://arxiv.org/abs/1005.05412010 - Zahn - Divergences in quantum field theory on the noncommutative two-dimensional Minkowski space with Grosse-Wulkenhaar potential.pdf" "http://arxiv.org/abs/0907.55102009 - Aastrup, Grimstrup, Paschke, Nest - On Semi-Classical States of Quantum Gravity and Noncommutative Geometry.pdfhttp://arxiv.org/abs/0802.178310.1088/0264-93812008 - Aastrup, Grimstrup, Nest - On Spectral Triples in Quantum Gravity.pdf" "http://arxiv.org/abs/0804.191410.1088/1751-81132008 - Blaschke, Gieres, Kronberger, Schweda, Wohlgenannt - Translation-invariant models for non-commutative gauge fields.pdfhttp://arxiv.org/abs/hep-th/050418310.1088/0264-93812005 - Aschieri, Blohmann, Dimitrijevic, Meyer, Schupp, Wess - A Gravity Theory on Noncommutative Spaces.pdf" "http://projecteuclid.org/euclid.cmp/110389905010.1007/BF016089781975 - Osterwalder, Schrader - Axioms for Euclidean Green's functions II.pdfhttp://arxiv.org/abs/hep-th/94080091995 - Zinoviev - Equivalence of Euclidean and Wightman field theories.pdfhttp://arxiv.org/abs/1005.2130" "2010 - Bahns, Doplicher, Fredenhagen, Piacitelli - Quantum Geometry on Quantum Spacetime: Distance, Area and Volume Operators.pdf10.1063/1.5277331987 - Summers, Werner - Bell's Inequalities and quantum field theory I. General setting.pdfhttp://arxiv.org/abs/funct-an/9701011" "1997 - Rieffel - On the operator algebra for the space-time uncertainty relations.pdf/home/gandalf/Physik/Fachb\\\"ucher/Lang - SL(2,R).djvuhttp://arxiv.org/abs/math-ph/06030832006 - Buchholz, D'Antoni, Longo - Nuclearity and Thermal States in Conformal Field Theory.pdf" "http://c-algebras.djvuhttp://arxiv.org/abs/hep-th/99040491999 - J\\\"akel - The Reeh-Schlieder property for thermal field theories.pdfhttp://arxiv.org/abs/0911.130410.1142/S0129055X100039902010 - Sanders - The locally covariant Dirac field.pdf10.1016/0370-1573(92)90044-Z" "10.1063/1.5285141989 - Estrada, Gracia-Bondia, Varilly - On asymptotic expansions of twisted products.pdf/home/gandalf/Physik/Fachb\\\"ucher/Jackson J.D. Classical electrodynamics (Wiley, 1962)(T)(656s).djvuhttp://arxiv.org/abs/1006.34162010 - Kasprzak - Rieffel deformation of group coactions.pdf" "http://theory.djvuhttp://arxiv.org/abs/hep-th/01062052001 - Chu, Madore, Steinacker - Scaling Limits of the Fuzzy Sphere at one Loop.pdfhttp://arxiv.org/abs/math/01080052001 - Rieffel - Matrix algebras converge to the sphere for quantum Gromov-Hausdorff distance.pdf" "http://arxiv.org/abs/1006.54302010 - Dybalski, Tanimoto - Asymptotic completeness in a class of massless relativistic quantum field theories.pdfhttp://www.jstor.org/stable/20069791983 - Fr\\\"ohlich, Osterwalder, Seiler - On Virtual representations of symmetric spaces and their analytic continuation.pdf" "http://spaces.djvuhttp://mechanics.djvuhttp://arxiv.org/abs/1005.46662010 - Acharyya, Vaidya - Uniformly Accelerated Observer in Moyal Spacetime.pdf/home/gandalf/Physik/Fachb\\\"ucher/Kirillov - Lectures on the Orbit Method.pdfhttp://arxiv.org/abs/0806.42552008 - Bieliavsky, Gurau, Rivasseau - Non Commutative Field Theory on Rank One Symmetric Spaces.pdf" "http://arxiv.org/abs/math/03054422006 - Cushman, van der Kallen - Adjoint and Coadjoint Orbits of the Poincare Group.pdfVogan - Corrections to Lectures on the Orbit Methods by Kirillov.pdfhttp://equation.djvu1982 - Dimock, Kay - Classical wave operators and asymptotic quantum field operators on curved spacetimes.pdf" "1982 - Kay - Quantum Fields in Curved Spacetimes and Scattering Theory.pdf10.1063/1.5233701976 - Buchholz, Fredenhagen - Dilations and Interaction.pdfhttp://arxiv.org/abs/1006.47262010 - Weiner - An algebraic Haag's theorem.pdf2000 - D'Antoni, Zsido - The Flat Tube Theorem for Vector Valued Functions.pdf" "Hyperfunctions_and_theoretical_physics-Springer(1975).djvuhttp://arxiv.org/abs/0806.47412009 - Bieliavsky, Detournay, Spindel - The Deformation Quantizations of the Hyperbolic Plane.pdf1992 - Klimek, Lesniewski - Quantum Riemann Surfaces I, The Unit Disc.pdf" "http://arxiv.org/abs/1007.40942010 - Bertozzini, Conti, Lewkeeratiyutkul - Modular Theory, Non-commutative Geometry and Quantum Gravity.pdf1981 - Klein, Landau - Construction of a Unique Self-Adjoint Generator for a Symmetric Local Semigroup.pdf1976 - Klein - The semigroup characterization of Osterwalder-Schrader path spaces and the construction of Euclidean fields.pdf" "http://arxiv.org/abs/1009.38322010 - Casini - Wedge Reflection Positivity.pdf10.1007/BF028216771963 - Borchers, Zimmermann - On the Self-Adjointness of Field Operators.pdfhttp://electrodynamics.djvuhttp://i.djvuhttp://ii.djvuhttp://iii.djvuhttp://iv.djvuhttp://analysis.djvu" "http://i.djvu1971 - H\\\"ormander - Fourier Integral Operators I.pdfhttp://applications.djvu/home/gandalf/Physik/Fachb\\\"ucher/Jarchow - Locally Convex Spaces.djvuhttp://kernels.djvuhttp://arxiv.org/abs/1011.23702010 - Bieliavsky, de Goursac, Tuynman - Deformation Quantization for Heisenberg Supergroup.pdf" "10.1007/BF012134091985 - Fredenhagen - A remark on the cluster theorem.pdfhttp://arxiv.org/abs/quant-ph/00070602001 - Halvorson - Reeh-Schlieder Defeats Newton-Wigner: On Alternative Localization Schemes in Relativistic Quantum Field Theory.pdf2004 - J\\\"akel - Mathematical Foundations of Thermal Field Theory .pdf" "10.1063/1.17036881960 - Epstein - Generalization of the Edge-of-the-Wedge Theorem.pdf10.1007/BF007501471994 - Yngvason - A note on essential duality.pdfhttp://arxiv.org/abs/1012.14542010 - Mund - An Algebraic Jost-Schroer Theorem for Massive Theories.pdfhttp://arxiv.org/abs/1012.1417" "2010 - Bagarello - Modular Structures and Landau Levels.pdf2001 - Dubois-Violette, Kriegel, Maeda, Michor - Smooth Star-Algebras.pdfhttp://distributions.djvuhttp://introduction.djvu10.1142/S0129055X940002011994 - Borchers, Yngvason - Transitivity of locality and duality in quantum field theory - Some modular aspects.pdf" "http://arxiv.org/abs/math/04103502004 - Bursztyn, Waldmann - Hermitian star products are completely positive deformations.pdf10.1063/1.5282001988 - Gracia-Bondia, Varilly - Algebras of distributions suitable for phase space quantum mechanics. I.pdf10.1063/1.527984" "1988 - Gracia-Bondia, Varilly - Algebras of distributions suitable for phase-space quantum mechanics II. Topologies on the Moyal algebra.pdfhttp://arxiv.org/abs/1101.09312011 - Amelino-Camelia, Freidel, Kowalski-Glikman, Smolin - The principle of relative locality.pdf" "http://introduction.djvu1963 - Hepp - Kovariante analytische Funktionen - PhD-Thesis.pdfhttp://functions.djvu1992 - Zamolodchikov, Zamolodchikov - Massless factorized scattering and sigma models with topological terms.pdfhttp://spaces.djvu1960 - H\\\"ormander - Estimates for translation invariant operators in Lp spaces.pdf" "1989 - Meisters - Linear operators commuting with translations on D(R) are continuous.pdf1993 - Dales, Millington - Translation-invariant operators.pdf2006 - Feichtinger, F\\\"uhr, Gr\\\"ochenig, Kaiblinger - Operators commuting with a discrete subgroup of translations.pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Donoghue - Distributions and Fourier transforms.pdfhttp://analysis.djvuhttp://arxiv.org/abs/1102.5270http://s-matrix.djvuhttp://arxiv.org/abs/1103.11412011 - Longo, Rehren - Boundary Quantum Field Theory on the Interior of the Lorentz Hyperboloid.pdf" "http://arxiv.org/abs/hep-th/06102962006 - Gazeau, Lachieze-Rey - Quantum Field Theory in de Sitter space : A survey of recent approaches.pdf10.1016/0034-4877(96)87678-61996 - Hofmann - On the GNS representation of generalized free fields with indefinite metric.pdf" "10.1007/s0022000502701998 - Hofmann - On GNS representations on indefinite inner product spaces. 1. The Structure of the representation space.pdfhttp://relations.ps/home/gandalf/Physik/Fachb\\\"ucher/Kato - Perturbation theory for linear operators (1995).djvu" "/home/gandalf/Physik/Fachb\\\"ucher/Garnett - Bounded Analytic Functions (2006).pdf/home/gandalf/Physik/Fachb\\\"ucher/Titchmarsh - Introduction to the theory of Fourier integrals(1948).djvu2001 - Boller, Wollenerg - An inverse problem in Tomita-Takesaki modular theory.pdf" "1992 - Wollenberg - Notes on Perturbations of Causal Nets of Operator Algebras.pdfhttp://variables.djvuhttp://variable.djvuhttp://arxiv.org/abs/1104.19482011 - Lechner - Deformations of quantum field theories and integrable models.pdfhttp://physics.djvuhttp://mechanics.djvu" "1977 - Driessler, Fr\\\"ohlich - The reconstruction of local observable algebras from the Euclidean Green's functions of relativistic quantum field theory.pdf1959 - Nelson - Analytic Vectors.pdf10.1016/0370-1573(92)90047-41992 - Mussardo - Off-critical statistical models: Factorized scattering theories and bootstrap program.pdf" "1999 - Jorgensen, Olafsson - Unitary representations and Osterwalder-Schrader duality.pdfhttp://arxiv.org/abs/1105.2781http://www.worldscinet.com/rmp/23/2310/S0129055X11004539.html10.1142/S0129055X110045392011 - Bostelmann, Lechner, Morsella - Scaling Limits of Integrable Quantum Field Theories.pdf" "http://arxiv.org/abs/1105.29632011 - Kukhtina, Rehren - Local Commutators and Deformations in Conformal Chiral Quantum Field Theories.pdf1970 - Roberts - The structure of sectors reached by a field algebra.pdf2011 - Schroer - Causality and dispersion relations and the role of the S-matrix in the ongoing research.pdf" "1977 - Driessler - On the Structure of Fields and Algebras on Null Planes.pdf10.1063/1.14833762002 - Baumg\\\"artel, Jurke, Lled\\'o - Twisted duality of the CAR algebra.pdf10.1016/0034-4877(96)83512-91995 - Baumg\\\"artel, Jurke, Lled\\'o - On Free Nets Over Minkowski Space.pdf" "10.1142/S0217751X030122172003 - Schroer - Lightfront holography and area density of entropy associated with localization on wedge-horizons.pdfhttp://arxiv.org/abs/1105.48562011 - Morfa-Morales - Deformations of quantum field theories on de Sitter spacetime.pdf" "http://arxiv.org/abs/0901.38652009 - Wall - Ten Proofs of the Generalized Second Law.pdfhttp://arxiv.org/abs/1007.14932010 - Wall - A proof of the generalized second law for rapidly-evolving Rindler horizons.pdfhttp://arxiv.org/abs/1105.34452011 - Wall - A proof of the generalized second law for rapidly changing fields and arbitrary horizon slices.pdf" "http://arxiv.org/abs/hep-th/99122191999 - Schlingemann - Application of Tomita-Takesaki theory in algebraic euclidean field theories.pdfhttp://arxiv.org/abs/0908.04802009 - Doplicher - The Measurement Process in Local Quantum Theory and the EPR Paradox.pdfhttp://arxiv.org/abs/1101.5700" "2011 - Dybalski, Tanimoto - Infraparticles with superselected direction of motion in two-dimensional conformal field theory.pdfhttp://arxiv.org/abs/1105.6202http://arxiv.org/abs/1106.47852011 - Fewster, Verch - Dynamical locality and covariance - What makes a physical theory the same in all spacetimes.pdf" "10.1007/BF025063881996 - Connes - Gravity coupled with matter and the foundation of non-commutative geometry.pdf10.1007/BF016459411974 - Glaser - On the equivalence of the Euclidean and Wightman formulation of field theory.pdf10.1007/s00023-003-0141-92003 - D\\\"utsch, Rehren - Generalized Free Fields and the AdS-CFT Correspondence.pdf" "http://arxiv.org/abs/1107.26292011 - Tanimoto - Construction of wedge-local nets of observables through Longo-Witten endomorphisms.pdfhttp://arxiv.org/abs/1107.26622011 - Tanimoto - Noninteraction of waves in two-dimensional conformal field theory.pdfhttp://arxiv.org/abs/1009.4990" "2010 - Brunetti, Moretti - Modular dynamics in diamonds.pdfhttp://arxiv.org/abs/1108.20042011 - Beiser, Waldmann - Fr\\'echet algebraic deformation quantization of the Poincar\\'e disk.pdfhttp://spaces.djvuhttp://i.djvuhttp://ii.djvuhttp://arxiv.org/abs/1108.3947" "2011 - Goursac - Non-formal deformation quantization of abelian supergroups.pdfhttp://arxiv.org/abs/1108.48892011 - Bischoff - Models in Boundary Quantum Field Theory Associated with Lattices and Loop Group Models.pdf2011 - Bieliavsky, Gayral - Deformation Quantization for Actions of Kahlerian Lie Groups Part I - Frechet Algebras.pdf" "http://arxiv.org/abs/1109.4824http://arxiv.org/abs/1109.12122011 - Schroer - The foundational origin of integrability in quantum field theory.pdfhttp://arxiv.org/abs/1109.59502011 - Lechner, Waldmann - Strict deformation quantization of locally convex algebras and modules - arXiv version 1.pdf" "/home/gandalf/Physik/Lecture Notes/Meinrenken - Symplectic geometry.pdfhttp://arxiv.org/abs/hep-th/030417910.1007/s00220-003-0865-x2003 - Summers, White - On Deriving Space-Time From Quantum Observables and States.pdfhttp://arxiv.org/abs/gr-qc/02120252003 - Guido, Longo - A Converse Hawking-Unruh Effect and dS^2-CFT Correspondance.pdf" "2011 - Summers - A Perspective on Constructive Quantum Field Theory.pdf1972 - Flato, Simon, Snellman, Sternheimer - Simple facts about analytic vectors and integrability.pdfhttp://arxiv.org/abs/1111.1671v1http://arxiv.org/pdf/1111.1671v12011 - Bischoff, Tanimoto - Construction of wedge-local nets of observables through Longo-Witten endomorphisms II.pdf" "http://algebras.djvu1993 - Rehren - A new view of the Virasoro algebra.pdfhttp://renormalization.djvuhttp://arxiv.org/abs/1106.1138v1http://arxiv.org/pdf/1106.1138v12011 - Verch - Quantum Dirac Field on Moyal-Minkowski Spacetime - Illustrating Quantum Field Theory over Lorentzian Spectral Geometry.pdf" "http://arxiv.org/abs/hep-th/0202039v2http://arxiv.org/pdf/hep-th/0202039v210.1016/S0370-2693(02)01650-72002 - Langmann, Szabo - Duality in Scalar Field Theory on Noncommutative Phase Spaces.pdf/home/gandalf/Physik/Fachb\\\"ucher/Olver, Lozier, Boisvert, Clark - NIST handbook of mathematical functions.pdf" "http://arxiv.org/abs/1004.5261v3http://arxiv.org/pdf/1004.5261v310.3842/SIGMA.2010.073http://arxiv.org/abs/1106.6166v2http://arxiv.org/pdf/1106.6166v2http://arxiv.org/abs/hep-th/0005129v2http://arxiv.org/pdf/hep-th/0005129v210.1016/S0550-3213(00)00525-3http://arxiv.org/abs/hep-th/0206011v2" "http://arxiv.org/pdf/hep-th/0206011v210.1007/s10052-002-1018-7http://arxiv.org/abs/hep-th/0205269v2http://arxiv.org/pdf/hep-th/0205269v210.1007/s10052-002-1017-8http://arxiv.org/abs/0909.1389v1http://arxiv.org/pdf/0909.1389v1http://arxiv.org/abs/1104.3750v2" "http://arxiv.org/pdf/1104.3750v21971 - Herbst - One\u2010Particle Operators and Local Internal Symmetries.pdfhttp://arxiv.org/abs/1112.5785v1http://arxiv.org/pdf/1112.5785v12011 - Bros, Mund - Braid group statistics implies scattering in three-dimensional local quantum physics.pdf" "http://www.bibsonomy.org/bibtex/23f4ad4b7cec0eed95efd7a954c28dc0a/brouder1958 - Haag - Quantum field theories with composite particles and asymptotic conditions.pdf1961 - Ruelle - On the asymptotic condition in quantum field theory.pdf10.1016/0370-1573(84)90021-8" "1984 - Novikov, Shifman, Vainstein, Zakharov - Two-Dimensional Sigma Models: Modeling Nonperturbative Effects of Quantum Chromodynamics.pdfhttp://arxiv.org/abs/quant-ph/9601017v1http://arxiv.org/pdf/quant-ph/9601017v110.1007/BF02099630/home/gandalf/Physik/Fachb\\\"ucher/Roepstorff G. Path integral approach to quantum physics (Springer, 1994)(ISBN 0387552138)(K)(T)(399s)_PQft_.djvu" "1969 - Doplicher, Haag, Roberts - Fields, observables and gauge transformations II.pdf1971 - Doplicher, Haag, Roberst - Local observables and particle statistics I.pdf1974 - Doplicher, Haag, Roberts - Local observables and particle statistics II.pdfhttp://arxiv.org/abs/math-ph/0307048v1" "http://arxiv.org/pdf/math-ph/0307048v110.1007/s00023-004-0183-72004 - D'Antoni, Morsella, Verch - Scaling Algebras for Charged Fields and Short-Distance Analysis for Localizable and Topological Charges.pdf1968 - Doplicher, Kastler - Ergodic states in a non commutative ergodic theory.pdf" "1967 - Doplicher, Kadison, Kastler, Robinson - Asymptotically abelian systems.pdfhttp://groups.djvuhttp://theory.djvuhttp://dx.doi.org/10.1007/BF020976801990 - Doplicher, Roberts - Why there is a field algebra with a compact gauge group describing the superselection structure in particle physics.pdf" "http://link.aps.org/doi/10.1103/PhysRev.159.125110.1103/PhysRev.159.12511967 - Coleman, Mandula - All Possible Symmetries of the S-Matrix.pdfhttp://dx.doi.org/10.1007/BF0210180610.1007/BF021018061995 - Guido, Longo - An algebraic spin and statistics theorem.pdf" "2012 - Todorov - Quantization is a Mystery.pdfhttp://physics.djvu/home/gandalf/Physik/Fachb\\\"ucher/Cornwell - Group Theory in Physics Vol 3.pdfhttp://theory.djvu/home/gandalf/Physik/Fachb\\\"ucher/Thirring - A Course in Mathematical Physics 4: Quantum Mechanics of Large Systems.pdf" "http://arxiv.org/abs/1203.2058v1http://arxiv.org/pdf/1203.2058v12012 - Alazzawi - Deformations of Fermionic Quantum Field Theories and Integrable Models.pdf/home/gandalf/Physik/Artikelsammlung/2012 - Morfa-Morales - Deformations of Quantum Field Theories on Curved Spacetimes - PhD-Thesis.pdf" "http://arxiv.org/abs/1203.2705v1http://arxiv.org/pdf/1203.2705v12012 - Johnson - Algebras without Involution and Quantum Field Theories.pdf/home/gandalf/Physik/Lecture Notes/2009 - Waldmann - Vector-Valued Functions.pdfhttp://arxiv.org/abs/1203.3184v1http://arxiv.org/pdf/1203.3184v1" "http://arxiv.org/abs/1110.6164v3http://arxiv.org/pdf/1110.6164v3http://dx.doi.org/10.1007/BF0040097810.1007/BF004009781984 - Basart, Flato, Lichnerowicz, Sternheimer - Deformation theory applied to quantization and statistical mechanics.pdfhttp://dx.doi.org/10.1007/s002200050402" "10.1007/s0022000504021998 - Bordemann, Waldmann - Formal GNS Construction and States in Deformation Quantization.pdfhttp://arxiv.org/abs/math-ph/0405065v1http://arxiv.org/pdf/math-ph/0405065v110.1142/S0129055X050023762004 - Ali, Englis - Quantization Methods: A Guide for Physicists and Analysts.pdf" "http://www.sciencedirect.com/science/article/pii/037596017290240X10.1016/0375-9601(72)90240-X1971 - Stoler, Newman - Minimum Uncertainty and Density Matrices.pdfhttp://link.aps.org/doi/10.1103/PhysRevD.1.321710.1103/PhysRevD.1.32171970 - Stoler - Equivalence Classes of Minimum Uncertainty Packets.pdf" "1973 - Osterwalder - Euclidean Green's functions and Wightman distributions.pdfhttp://arxiv.org/abs/0905.4006v5http://arxiv.org/pdf/0905.4006v510.1007/s10701-010-9492-5http://arxiv.org/abs/math-ph/0504012v1http://arxiv.org/pdf/math-ph/0504012v12005 - Damek - Continuity of KMS states for quantum fields on manifolds.pdf" "http://arxiv.org/abs/quant-ph/0101061v1http://arxiv.org/pdf/quant-ph/0101061v12000 - Werner - Quantum Information Theory - an Invitation.pdf/home/gandalf/Physik/Fachb\\\"ucher/Audretsch - Verschr\\\"ankte Systeme.pdf1972 - Kastler, Mebkhout, Loupias, Michel - Central decomposition of invariant states applications to the groups of time translations and of Euclidean transformations in algebraic field theory.pdf" "1974 - Powers, Sakai - Existence of ground states and KMS states for approximately inner dynamics.pdf1977 - Araki, Kishimoto - Symmetry and equilibrium states.pdf/home/gandalf/Physik/Fachb\\\"ucher/Ruelle - Statistical mechanics.djvu1977 - Araki, Haag, Kastler, Takesaki - Extension of KMS States and Chemical Potential.pdf" "http://arxiv.org/abs/1204.5078v1http://arxiv.org/pdf/1204.5078v12012 - Hillier - On Super-KMS Functionals for Graded-Local Conformal Nets.pdfhttp://arxiv.org/abs/math-ph/0604044v2http://arxiv.org/pdf/math-ph/0604044v210.1007/s00220-006-0177-z2006 - Buchholz, Grundling - Algebraic Supersymmetry: A case study.pdf" "http://dx.doi.org/10.1007/BF0164541610.1007/BF016454161969 - Rocca, Sirugue, Testard - On a class of equilibrium states under the Kubo-Martin-Schwinger condition. I. Fermions .pdf1969 - Rocca, Sirugue, Testard - On a class of equilibrium states under the Kubo-Martin-Schwinger condition. II. Bosons .pdf" "/home/gandalf/Physik/Fachb\\\"ucher/Sunder - An Invitation to von Neumann Algebras.pdf"); static const char *digiplayLastAuthors("(ed)A.AarsethAarsethAarsethAarsethAarsethAarsethAarsethAarsethAarsethAarsethAbanesAbenhaimAbramsonAdamoAdamovichAdamsAdamsAdamsAdamsAdamsAdamsAedoAgababyanAgababyanAgahAhaAhaAhlersAhmadAhnAitkinAkaiAkessonAlbertAlbertAlbrechtslundAlbrechtslundAlexaAlexander" "AlinierAliyaAllansonAllansonAllenAllenAlmeidaAltAltmanAltmanAltunbasAlvaresAlvisiAmoryAnacletoAnandAndersAndersonAndersonAndersonAndersonAndersonAndersonAndersonAndersonAndersonAndrewsAndrewsAngAngelidesAnnaAnnettaAnsteyAntleAoyamaApperleyApperleyApperleyApperley" "ArbingerArbiserArchambaultArchambaultArendashArlenArmandAronssonAronssonArpanArsenaultArthurAsakuraAscioneAsgariAsgariAshtonAshtonAtkinsAtkinsAtkinsAtkinsAtkinsAtkinsAtkinsAtkinsAuAuberAugeraudAverchAveryAvetisovaAxelssonAylettBabaBabicBacklundBadiruBaerBaerg" "BagnallBaileyBainbridgeBainbridgeBaldwinBallanceBallanceBallanceBallardBalsamBaltraBalzeraniBanksBanseBanthorpeBar-onBaranowskiBarberBarellaBarendregtBarnesBarnesBarrowcliffBarryBarthesBartholowBartleBartonBatemanBauckhageBauckhageBaumgardnerBaurBavelierBavelier" "BavelierBayindir-UpmannBeanBeavisBebkoBechtoldtBeckerBeckerBeckerBeckerBeckerBeckerBehrenshausenBekebredeBekebredeBekkerBekkerBelavinaBellBenfordBenjaminBentonBenturBeresinBergerBergerBergmanBergmanBerkemeierBerlinerBernhardtBernsteinBerryBertrandBestBetzBevc" "BialystokBidarraBiddleBiddleBiddleBischofBissellBissettBiswasBittantiBittantiBizzocchiBizzocchiBizzocchiBizzocchiBizzocchiBizzochiBjornstadBj\u00f6rkBj\u00f6rkBlackBlackBlackBlahutaBlanchfieldBlascovichBlashkiBleeckerBlighBlockBlowBlumbergBlumbergBlumbergBluntBlunt" "BoalBodeBoehrerBoellstorffBoellstorffBogostBogostBogostBogostBogostBogostBojinBojinBojinBojinBoleskinaBonenfantBoningerBoningerBoonBoothBoothBoppBorderBorodziczBoronBossomaierBosworthBoudreauBousteadBouvardBovillBowersBowlesBowmanBoydBoydenBozionelosBozionelos" "BozionelosBozionelosBradleyBradleyBranchBrancoBrandBrathwaiteBrazBreglerBreidenbachBrennerBreretonBrissBristowBrockBrodyBromBrownBrownBrownBrownBrownBruderBruillardBrunerBryantBryceBryceBryceBryceBryceBryceBryceBryceBrysonBuchananBuchmanBuchmanBuckalewBuckingham" "BuckleyBuddBufanoBungayBurgessBurkBurkeBurkeBurkeBurnBurnsBuroBuroBurrillBurtBuschBuschBuseBushinskyBushmanBushmanBushmanBushmanBushnellButerButlandButlerButlerButlerBuusBuysByersByrneByronB\u00f6ttgerCaceresCagiltayCagiltayCagiltayCagiltayCaiCaldwellCallejaCalleja" "CalvertCalvertCameronCameronCameronCammaranoCampbellCampbellCampionCannon-BowersCannon-BowersCaplanCaplovitzCappelCarbonaroCardadorCareyCariniCarleyCarlsonCarrCarrCarrCarrCarrCarrCarrollCarrollCarsonCarverCaseCaseyCassellCastronovaCastronovaCastronovaCastronova" "CathcartCavanaughCavazzaCazenaveCerankoskyCeranogluChabayChadwickChaikaChaill\u00e9ChalabiChamberlainChambersChambersChampionChanChanChanChanChanChanChanChanChangChangChangChappellChappellChappellCharlesCharlesCharltonCharmanteCharskyChathamChaykaCheeCheeChenChen" "ChenChenChenChenChenChenChenChenChenChenChenChenChengChengChengCheokCheokChiChiangChienChiharaChildren NowChiouChiouChisholmChiuChiuChoChoiChoiChoiChoverChristenChristiansenChuChuangChuangClancyClarkClarkClarkClarkeClaypoolClaypoolClaypoolClaysonCleareClements" "ClippingerCloutierCoelhoCohenCohenCohenColditzColditzColditzColemanColleyCollinsColwellCombettoCompton-LillyConnollyConsalvoConsalvoConsalvoConsalvoConsalvoConsalvoConsalvoContractorContractorContractorContractorContractorContractorContractorContractorConway" "CookCookCookeCoopermanCooperstockCopierCoppolaCorlissCorlissCorlissCorreiaCorrubleCorrubleCorsiniCostaCostelloCostikyanCostikyanCourtyCoviCowanCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCrawfordCressyCrickCrissmanCroganCrogan" "CroganCrookallCruzCunninghamCunninghamCuretCurlewCutlerCzakDachseltDachseltDaleDancasterDanforthDantasDantasDantonDantonDarleyDavidsonDaviesDaviesDavisDavisDavisDavisDavisDavisDavisonDe FraineDe SchutterDeCostaDeFillippiDealDeckDekovenDelphinDelwicheDemartines" "DemersDemetriouDemirchoglyanDenegri-KnottDeneveDengDengeri-KnottDerevenskyDeshpandeDeussenDeussenDevlinDiamondDiasDiazDibbellDickeyDickeyDickeyDickeyDieckmannDietzDietzDietzDillDillDillDillenbourgDittlerDixDixitDoddDodgsonDodsworthDollmanDominickDonchinDonelan" "DonelanDonovanDoolittleDopfnerDormanDormansDourishDoveyDownesDownesDoyleDoyleDrachenDrakeDrettakisDriskellDrummondDryfhoutDuatoDuatoDucheneautDucrestDuffyDufnerDugganDuhDuretDurkinDurkinDuttonDu{\\textquoteright}MontDwyerDyer-WithefordDziabenkoELSPAELSPAEarnshaw" "EatonEbiEcclesEchtEddyEdelmannEdmondsEdmondsEdsonEdwardsEdwardsEffelsbergEffelsbergEgenfeldt-NielsenEgenfeldt-NielsenEggermontEhrenbergEikaasEisenackEkebladEklundEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEl-NasrEladhariEladhari" "ElangoEliasEllisEllisEllisonEllisonEmbreyEmesEngeliEnglandEnglandEnochssonEpsteinErikssonErlebenErmiErnkvistEspinozaEspositoEspositoEssEsselmanEstevesEtterEverettEvertsenEvstigneevaFASFASFaberFaganFakotakisFarmerFaure-PragierFazekasFederoffFedorovFeenbergFeingold" "FeixFeldmanFeldonFeldonFengFerdigFern\u00e1ndez-Manj\u00f3nFern\u00e1ndez-Manj\u00f3nFern\u00e1ndez-Manj\u00f3nFerrellFerrerFerriFerrisFeustelFicocelliFieldsFigaFinchFinkelsteinFinnFinnFinneyFirinciogullariFischerFischerFischettiFishFlaggFlahertyFlanaganFletcherFletcherFlyenFlynnFlynn" "FlynnFoleyFoleyFolmannFolmannForbisFordForemanForlinesFormentinForooshForrestForstenForteFosterFoutsFoutsFoxFoxFrancisFrascaFrascaFrascaFrascaFrascaFreemanFreemanFreyFreyFridayFriedmanFriedmanFriedmanFriesFrommeFrommeFronFukuiFullertonFullgrabeFungeFunkFunk" "FunkFunkFunkFunkFurgerFurlongFurnessFurnkranzFyfeFyfeGDCGabbardGabrielGackenbachGagnonGaileyGajicGalGalGalantucciGalarneauGalarneauGalarneauGallegoGalliniGallowayGallowayGaoGarciaMolinaGardenforsGardnerGarreltsGarreltsGeakeGeeGeeGeeGeeGeeGeeGeeGellersenGemino" "GenoveseGentileGentileGentileGenvoGermannGermannGestwickiGettmanGhellalGhersiniGibbsGiddingsGieselmannGilbertGilbertGilbertGilbertGillesGillisGingoldGiovanettoGirouxGlassGlassnerGlaubkeGleanGlissovGlithoGodwinGoebelsGoebelsGogginGoldbergerGoldsmithGoldstein" "GoldsteinGoldsteinGoldsteinGomesGonzalezGonzalezGoochGoodhewGoodithGoodmanGoodmanGoodmanGoodmanGorlatchGortmakerGorvitsGoslingGoslingGosneyGotestamGothGotsmanGottschalkGouadecGraceGraceGraceGraceGraceGrahamGrandclementGrandjeanGraner-RayGrangerGranthamGrasca" "GrazianoGrebnevaGreenGreenfieldGreenfieldGreenfieldGreenfieldGreenfieldGreenhalghGreenhalghGreenleafGreenspanGreggGregoryGriffeyGriffinGriffithGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffiths" "GriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriffithsGriggGrillGrimesGrimesGrimesGrimesGrimesGrimesGrimesGrimesGrimesGrimshawGrimshawGrimshawGrimshawGrimshawGrimshawGrimshawGrimshawGrimshawGrinterGrodalGroenGroenGrollmanGrondinGros" "GrosGrossGrossGrossGrossGrossmanGrossmanGrundyGrutzmacherGr\u00fcnvogelGuGuGuardiniGuerriniGuerriniGuinsGunkelGunkelGunterGunterGuoGuoGurrGurtnerGutwinG\u00f3mez-Mart\u00ednHackettHaddonHaddonHaddonHaddonHadfieldHaenniHagiuHagstr\u00f6mHagstr\u00f6mHainesHaineyHainleyHakkinenHakonen" "HakonenHalbrechtHalcombHallHallHallHallamHallamHallamHalloranHamalainenHamiltonHamilton-GiachritsisHanaire-BroutinHancockHanebeckHaningerHaningerHannaHanzlikHar-ElHaradaHardingHargreavesHarperHarperHarpoldHarriganHarrisHartHarteveldHarveyHasegawaHateckeHaussmann" "HawnHawthornHaydelHayesHayesHaylesHaylesHaynesHaynesHealdHeckerHeddenHeidenreichHeleHeli\u00f6Heli\u00f6HellisonHelmuthHemnesHendersonHendersonHendlerHennessyHermanHermkesHerreraHertzogHerzHerzHessHexmoorHianesHickeyHigginsHillHillHillingerHiltHiltonHirakiHiroseHjorth" "HoHoffmanHoffosHogleHoglundHolanHollandHollingsheadHolmquistHolmquistHolmstromHolzingerHoneyHooperHopsonHornHorneHorngHorrelHorshamHorswillHorswillHoshinoHoshinoHoskingHouHoutmanHoweHowellsHoweryHsiHsiaoHsiaoHsuHsuHsuHsuHsuHuHuHuangHuangHuangHuangHubbardHuber" "HuberHudiburgHuesmannHuesmannHuffHuhtamoHuizingaHumbleHumphreysHumphreysHumphreysHuntHuntHuntemannHurleyHussHutchinsonHwangHymanIDCIDSAIbrahimIbrahimIbrahimIbrahimIbrahimIbrahimIchiharaIddingsIjzermanInceInoueInteractive Digital Software AssociationIoergerIones" "Iowa InterventionIpIpIpIrvineIsbisterIsbisterIshiguroIshikawaItoItoItoIurgelIversenIvoryIvoryIvoryIwamuraIzmirliIzushiJJacksonJacksonJacobsJacobsJacobsenJacobsonJacobsonJahn-SudmannJahreJainJakobssonJamesJanszJanszJardinesJarzabekJayakanthanJayemanneJayemanne" "JehlenJellinekJenJenkinsJenkinsJenkinsJenkinsJenkinsJenkinsJenkinsJenkinsJenkinsJenkinsJenningsJensenJensonJeongJeppesenJeppesenJesselJohannessonJohanssonJohnJohnsJohnsonJohnsonJohnsonJohnsonJohnsonJohnsonJohnsonJohnssonJohnstonJoinerJoinerJolivaltJoltonJones" "JonesJonesJonesJonesJonesJonesJonesJonesJonesJordanJordanJorgensenJuhlinJuhlinJungJungJungJungJungJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJuulJ\u00e4rvinenJ\u00e4rvinenJ\u00e4rvinenJ\u00e4rvinenJ\u00e4rvinenJ\u00e4rvinenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensen" "J\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenJ\u00f8rgensenKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKafaiKahnKaipainenKaipainenKaiserKaiserKallinenKalyanaramanKalyanaramanKantorKanungoKaplanKaplanKappesKaptelininKaptelininKapuku" "KapukuKarlsson-BkarlssonKasperekKassisKataokaKatchabawKatoKaufmanKaufmanKavakliKavakliKavakliKaviKayKayamaKayeKayeKayeKayeKayeKayeKearneyKearneyKearneyKearneyKearneyKeeganKeekerKeepersKeepersKeirKeithKellyKellyKeltikangas-J\u00e4rvinenKempfKennedyKennedyKennedy" "KennedyKennedyKentKentKerbsKerrKerrKerrKerrKerrKerrKerrKerrKerrKerrKestnbaumKeumKeunekeKiernanKillenKillenKimKimKimKimKimKimKimKimKimKimKimKimKimKimKimKimataKinderKinderKinderKinderKingKingKingseppKinkleyKinnearKirklandKirkmanKirkpatrickKirks\u00e6therKirriemuir" "KirriemuirKirriemuirKirshKirshKitamotoKivikangasKizilkayaKlabbersKlabbersKlabbersKlabbersKlabbersKlassKlassKlassKlastrupKlastrupKlevjerKlevjerKlimmtKlimmtKlingemannKlionsKnaussKnightKnipphalsKnollKoKoch-MohrKohKolkoKolkoKolkoKomisarKonigsmannKonijnKonoKonrad" "KonradKonzackKooKortKorvaKoskinenKoufterosKozbeltKozmaKramerKratchmerKrautKrcmarKrcmarKreimeierKretchmerKroomanKrosnickKrugmanKrzywinskaKrzywinskaKrzywinskaKrzywinskaKrzywinskaKrzywinskaKrzywinskaKrzywinskaKuanKuhaneckKujanp\u00e4\u00e4KukafkaKullerKunichKuntscheKuo" "KuritaKurkovskyKushnerKustraKuwadaKyumaK\u00fccklichK\u00fccklichK\u00fccklichK\u00fccklichK\u00fccklichLaffLahiriLainemaLairdLairdLairdLambertLambertLamersLammesLammesLanderholmLaneyLangLangeLangeLange deLangloisLankfordLankoskiLankoskiLankoskiLapollaLarkinLarsenLarsonLarsson" "LastowkaLastowkaLastowkaLauLauLaurelLauterenLautonLauwaertLavenderLavrenkoLawsonLawtonLazzaroLeafLeanLebeltelLebramLebramLeeLeeLeeLeeLeeLeeLeeLeeLeeLeeLeeLeeLeeLeggatLehdonvirtaLehdonvirtaLehmannLeiLeighLeiteLennerforsLennonLeonardLepperLesgoldLeungLevinLevin" "LevineLevineLevineLevineLevinsonLevyLevyLewisLiLiLiLiLiangLichtiLichtmanLiebermanLiebermanLiebermanLiebermanLinLinLinLinLinLinLindbergLindbladLinderothLinderothLindleyLindleyLindleyLindleyLindleyLindleyLindleyLindleyLindleyLindleyLindleyLindlofLindmarkLindof" "LinebergerLintonenLinzieLitchinskyLittletonLiuLiuLiuLiuLivingLlauradoLoLoftusLohrLoiphaLondonLongLonguetLossadaLouckyLoviscachLowoodLowoodLowoodLowoodLowoodLowoodLowoodLuLucasLudvigsenLuepkerLundeLuritLynchLynchLytleL\u00f6ckeltL\u00f6ckeltL\u00f8vlieMacCallum-StewartMacDorman" "MacGregorMacInnesMacKenzieMacedoniaMackeyMackeyMackieMacleodMacredieMaddenMaddenMadillMadillMaedaMageeMagerkoMagnussenMagosMaherMaherMahmoodMahoneyMakinouchiMalabyMalabyMaldonadoMaldonadoMallietMaloneMaloneMaloufManciniManninenManninenManninenManninenMannisto" "ManosManovichManskeMansourMaragoudakisMarckmannMarcusMarcusMargaroneMargaroneMaria Cutumisu Matthew McNaughtonMarkMarksMarksMarksonMarriottMarshMartensMarteyMartiMartinMartinMartinMartisMart\u00edn C\u00e1ceresMaryMasendorfMastinMasuchMasuchMasuchMatarazzoMateasMateas" "MatherMathiakMatsuishiMattanMatthewsMattilaMauveMauveMawdesleyMayMayerMayerMayerkressMayhornMayoMayraMayraMazalekMazorMcAlisterMcAllisterMcAllisterMcBroomMcCabeMcCormacMcCrackenMcDonaldMcDonnellMcDougallMcDowellMcEachenMcFarlaneMcFedriesMcGonigalMcIlvaneMcKee" "McKennaMcKnightMcMurrayMcNameeMcNeeseMcShaffreyMcWilliamsMcowanMedia Analysis LaboratoryMedinaMedinaMeierMeisterMelloneMelotMemisogluMenacheMenchacaMendelsonMendizMennieMennieMergetMerolaMerrellMerzenichMeshefedjianMesserlyMetaxasMeyerMichaudMichodMiesenberger" "MiettinenMiikkulainenMike Klaas Tristram SoutheyMiklaucicMilamMilesMilesMillardMillerMillerMillerMillerMillerMillerMillerMillingtonMilnerMirrezaieMistreeMitchellMiyaokuMohanMokMollaMollerMollickMoll\u00e1Moll\u00e1MoltenbreyMonicaMonteiroMontfortMontolaMooreMooreMoore" "MooreMooreMooreMoosbruggerMorMoradMoranMordkoffMorelMorenaMorenoMoriMoriMorieMorilloMorphettMorrisMorrisMorrisMorrisonMorrowMortensenMortensenMosleyMosleyMossMoulthropMountsMountsMtenziMuellerMuijsMuirMuirMuktiMullerMulliganMulveyMumtazMurakiMurariMurphieMurphy" "MurphyMurrayMurrayMyersMyersMyersMyersMyersMyersMyllyahoM\u00e4yr\u00e4M\u00e4yr\u00e4M\u00e4yr\u00e4M\u00e4yr\u00e4M\u00fcllerNabiNackeNackeNackeNackeNackeNackrosNagenborgNahum-MoscovociNairNairNakamuraNamatameNandhakumarNapierNaquetNational School Board AssociationNattamNcubeNecessaryNecessary" "NeitzelNelsonNelsonNeoNettNeuringerNewcombeNewellNewmanNewmanNgNguyenNickellNickellNickellNickellNieborgNieborgNieborgNieborgNiedenthalNiedenthalNieuwdorpNikolovaNilsenNishitaNitscheNitscheNitscheNivensNiwaNolanNorcioNordliNordlingerNorrisNorthNortonNovakNowak" "NussbaumNussbaumNusserNymanNymanOConnorOakesOalcleyObataOblingerOchoaOffirOhOhashiOkitaOkuzumiOlczakOlczakOldsOlearyOlsenOlsonOlsonOmernickOndrejkaOoiOpalachOrtizOsakaOsborneOsofskyOstriaOstromOuhyoungOvermarsOvermarsOwenOwensO{\\textquoteright}BrienO{\\textquoteright}Donnell" "O{\\textquoteright}DonnellO{\\textquoteright}FarrellO{\\textquoteright}SullivanP. A.PacePaderewskiPagulayanPaivaPaivaPaivaPajarolaPalazziPalmerPanPanayiotopoulosPanelasPapastergiouPapastergiouParaskevaPargmanParisParisiParkParkParkerParkerParkerParkerParkinParra-Cabrera" "PasnikPastaPatePaternoPaulPaulPaulkPaunovPauschPavelPavlidisPaynePaynePearcePearcePearcePearcePearcePearcePearcePecchinendaPeinadoPeitzPellegriniPelletierPelletierPelletierPendryPengPengPepinPepplerPerezPerlinPerlinPerlinPerronPerronPerryPescePeterPetersPeterson" "PetrzelaPhillipsPiasPicardPicardPickensPicqPinchbeckPinchbeckPiringerPittsPivecPlattenPleussPlusquellecPoberPolichPollardPollardPollmullerPollockPollockPonserrePoolePopkinPopkinPopkinPopkinPopkinPorembaPorterPorterPostigoPostigoPostmaPostmaPostmaPotamianosPotts" "PowellPowerPradaPrattPreecePrendergastPrenskyPrenskyPrenskyPricePriceProbstProffittProvenzoProvenzoPrzybylskiPuertaPurushotmaPuschQuagliaraQuandtQuinnQu\u00e9auQu\u00e9retteRaessensRaessensRailtonRaisamoRaisamoRaiterRaittRajagopalanRamalhoRandellRansdellRaoRaoRaoRaschke" "RatyRatzonRauRaudenbushRavajaRayRaybournRaynauldReeley JrReeseReggiaRehakRehakReidReimannReinsteinReissRemagninoRenaudRenaudRenneckerRepenningReveillereRexfordReynoldsRhaitiRheingoldRhodesRhodyRhyneRhyneRiceRiceRichardRickardfigueroaRickwoodRiddochRiegerRimpela" "RinerRinerRitterRitterfeldRizoRobertsRobertsRobertsonRobertsonRobertsonRobertsonRobinsonRobinsonRobleyRoccettiRocheleauRockwellRockwellRodastaRodastaRodrigoRodriguezRodriguez-HenriquezRodriguez-VivesRoemmichRogersRonan Boulic Branislav UlicnyRooneyRoperRoque" "RoqueRoqueRosasRosasRosenbergRosenthalRossRossiRothermundRothkrantzRotterRouchierRoughgardenRouseRouseRouseRoussakisRuanRubinRuddRuddockRudolphRuedaRujanRuncoRushRushkoffRushkoffRushkoffRushkoffRussellRutterRutterRutterRutterRutterRutterRutterRutterRutterRutter" "RutterRutterRutterRutterRyanRyanRyanRyanRybkaR\u00f6berSaariSabouretSachdevSacherSafaeiSagererSagererSaitoSakamotoSakataSaklofskeSalazarSalenSalenSalinasSalisburySalminenSalonius-PasternakSaltzmanSalvendySalvendySalverdaSamuelSanchezSandfordSandfordSangerSangsupawanich" "SantorumSargentSastronSatohSattarSavolainenSawyerSaxeSayirScaranoScatteiaScattergoodSchaeferSchaefferSchaefferSchaefferSchaefferSchaefferScharrerSchenkSchererSchimmingSchirraSchlackSchlechtweg-JahnSchleinerSchleinerSchleinerSchlossSchlosserSchmierbachSchmoll" "SchneiderSchneiderSchottSchottSchottSchottSchottSchreierSchreinerSchulzkeSchulzrinneSchulzrinneSchusterSchutSchutSchutSchwaigerSchwartzSchwingelerScottScottScullicaSefton-GreenSegalSegalSegersSegersSeidnerSeilerSeinoSeiterSellersSelnowSelnowSeneffSeneffSengers" "SennerstenSennerstenSeoSerpanosSestirSethiSgarbossaShadeShafferShafferShafferShapiroShapkinSharpSharpSharrittSharrittSharrittSharrittSharrittSharrittSharrittShawShawSheffSheldonSheldonSheldonSheltonShenShenShenShepherdSheppardShererShererShererSheridanSherman" "ShernoffSherrySherryShewokisShewokisShifrinShihShihShihShimShinShinShinShinkleShintaniShiuShmelyovShortShumShybaSicartSicartSicartSicartSicartSicartSicartSiediSiegelSifuentesSigfusdottirSignerSiitonenSikoraSilcoxSillsSilvaSilvaSilvernSilverstoneSimonSimonSimon" "SimonSimonSimonSimonSimonsSimonsSimpsonSinclairSingerSislerSislerSislerSislerSislerSislerSislerSiuSkirrowSkoricSkrzypczykSkurzynskiSlaterSlavikSlavikSlimaneSlusallekSlusallekSmartSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmithSmith" "SmithSmithSmythSnowSoetersSokolSoldatovaSolowaySolowaySorensenSorensenSotamaaSotamaaSotamaaSotamaaSotamaaSotirchosSouvignierSpenceSpenceSpencerSpierlingSpittleSquireSquireSrivastavaSrivastavaSsuStablerStablesStahlStaldStallabrassStamatoudiStapletonStarbuckStarn" "SteeleSteimleSteinSteinbergSteinbergSteinbergSteinhardtSteinkuehlerSteinkuehlerSteinkuehlerSteinkuehlerSteinmullerStellmachStengerStephaniStephanidisSternSternSternSternSternSternStevensonStockbridgeStockburgerStockmannStoffregenStoneStoreyStorg\u00e5rdsStrangStrasburger" "StrattonStrehovecStringerStrothotteStrouseStruckStudtStumpfSuSuddendorfSuddendorfSudnowSugiyamaSuhSuhSullivanSullivanSullivanSulskySummersSunSunSunSunSuretteSuterSuthersSuthersSuttonSutton-SmithSuzorSwalwellSwalwellSwankSwannSwansonSweeneySwellerSykesSykesSykes" "SykesSzafronSzerSzulborskiTafallaTainioTakahashiTakahashiTakasakaTallalTamboriniTanTanTanakaTanenbaumTanenbaumTanenbaumTanisTantleff-DunnTapleyTashakkoriTavellaTavinorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTaylorTejadaTellermanTenhula" "TeoTerashimaTerranovaTettehThagardThaiThalemannThalmannThalmannTheintzTheodoropoulosTheodoropoulosThies-BrandnerThilmanyThissenThobenTholanderThomasThomasThomasThomasThomasThomasThomasThomasThompsonThompsonThompsonThompsonThompsonThorntonThottanTinwellTirrito" "TobiasTobiasTobiasToetToftsTolesTolinoTomesTomlinsonToriyamaTorresTorres CanteroToscaTracyTranTreiberTremblayTreniteTreniteTreniteTreniteTrentTrinkausTrivediTsaiTsaiTsai-FellanderTsunodaTsvetanovaTuckerTulupmanTurkleTurkleTurkleTurnerTurnerTurpeinenTurpeinen" "TuysuzTychsenTylerTylerTzengT\u00f6yliT\u00fcz\u00fcnUdokaUnderwoodUpitisUpitisUricchioV. KlotenVaculikVaculikVaculikVaculikValdezValentineValkyrieValkyrieVan EckVan EenwykVan LooyVan LooyVan den BulckVan den BulckVan den BulckVanEenwykVandewaterVaradyVaseekaranVasilevskii" "VasudevanVaupelVeltumVenousiouVenturiVerbraeckVerbruggeVerhoeffVerhoevenVeugenVeugenVexoVezinaVicenteVidaverVigevanoVigevanoVikVillaniVincentVitakVockingVogelVogelVoigtVorrasiVosmeerVossWaddingtonWadeWadleyWaelbroeckWaernWagnerWagnerWakefieldWakkaryWalkerWalkerdine" "WalkerdineWallerWallichWallinWallsWalshWalshWalshWaltherWaltherWalzWalzWangWangWangWangWangWardWardWardWardWardleWardrip-FruinWardynskiWarfWarkWarkWarnerWarnesWarrenWartellaWatersWatersWatersWatsonWatsonWattersWayWebbWebbWebbWebbWeberWeberWeberWeickerWeilWeiler" "WeimerWeinbrenWeinsteinWeirichWeisWeiseWeiseWeismanWeismanWeissWeissWeisscherWelburyWeldonWelsbyWengWenliWenningerWernerWerningWestermannWestmancottWhalenWhalenWhangWheatleyWhinstonWhitcombWhiteWhiteWhiteWhitfordWhitingWhitingWiederholdWiegmanWijersWiklundWilde" "WilesWilhelmssonWilkinsWillemsWillemseWillettWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsWilliamsonWilliamsonWilliamson" "WilloughbyWilsonWilsonWilsonWilsonWilsonWilsonWilsonWilsonWilsonWilsonWindischWingroveWinklerWinmanWinnicottWinogradWinterWinterWirenWitfeltWitherfordWixenWolfWolfWolfWolfWolfisWolflingWolfordWollmanWongWongWongWooWooWoodWoodsWoytiukWrightWrightWrightWuWuWu" "WuWuWyethWyethXiXiongXuXuYamadaYamaokaYanYanYanYanagiYangYangYangYeYeYeYeatesYeeYeeYeeYeeYeeYeeYehYenYokotaYoungYoungYoungYoungYoungYujiYulishZackariassonZackariassonZagalZamarianZammittoZarembaZeiglerZelinskyZengZhaiZhangZhangZhangZhaoZhengZhengZhouZhouZhou" "ZhouZhukovZieglerZieglerZielinskiZimmermanZimmermanZimmermanZimmermanZimmermanZimmermanZindalZivkovicZoiaZollZootaZubekZumbachZupkoZydaZydade Antoniode Araujode Cardalhode Castellde Castellde Castellde Freitasde Grootde Laetde Meyerde Mulde Mulde PeuterdeHaan" "deHaandeHaanvan Hornvan Lentvan Lentvan Mechelenvan Oostendorpvan Schievan de Wallevan den Herikvon Bulow-Faerbervon Salisch"); static const char *digiplayFilesUrlsDois("http://papers.ssrn.com/sol3/papers.cfm?abstract_id=1939241http://gac.sagepub.com/cgi/content/abstract/1555412010364983v110.1177/1555412010364983" "10.1177/155541201036498110.1177/155541201036497710.1177/155541201036498010.1177/1555412010364979http://gac.sagepub.com/cgi/content/abstract/1555412010364982v110.1177/155541201036497810.1177/1461444810370949http://gac.sagepub.com/content/6/1/61.abstracthttp://gac.sagepub.com/content/6/1/3.abstract" "http://gac.sagepub.com/content/6/1/17.abstracthttp://gac.sagepub.com/content/6/1/83.abstracthttp://gac.sagepub.com/content/6/1/38.abstracthttp://gac.sagepub.com/content/6/5/414.abstracthttp://gac.sagepub.com/content/6/5/453.abstracthttp://gac.sagepub.com/content/6/5/395.abstract" "10.1177/1555412011402675http://gac.sagepub.com/content/6/5/429.abstracthttp://eprints.ecs.soton.ac.uk/21567/http://www.uic.edu/htbin/cgiwrap/bin/ojs/index.php/fm/article/view/3624/3006http://www.uic.edu/htbin/cgiwrap/bin/ojs/index.php/fm/article/view/3517/3020" "10.1177/135485651039709610.1177/1354856510397111http://www.digitalcultureandeducation.com/volume-3/teaching-and-learning-english-through-digital-game-projects/http://arcticpenguin.files.wordpress.com/2011/01/pid1058556.pdfhttp://eprints.ecs.soton.ac.uk/21566/" "http://gac.sagepub.com/content/6/4/327.abstract10.1177/155541201039108910.1177/1555412010391091http://con.sagepub.com/content/17/3/287.abstract10.1177/1354856511407802http://www.vwobservatory.com/wp/?p=207http://con.sagepub.com/content/17/3/323.abstract10.1177/1354856511406472" "http://digitalcommons.bolton.ac.uk/gcct_journalspr/14/10.1016/j.chb.2010.10.018http://ecs.sagepub.com/content/14/3/299.abstract10.1177/1367549410393232http://www.amazon.co.uk/Game-Sound-Technology-Player-Interaction/dp/161692828X/ref=sr_1_1?ie=UTF8\\&qid=1294291419\\&sr=8-1" "http://con.sagepub.com/content/17/3/271.abstract10.1177/1354856511405766http://www.uapress.ua.edu/product/Gaming-Matters,5078.aspx10.1177/1555412010391090http://gac.sagepub.com/content/6/5/479.abstracthttp://gac.sagepub.com/content/6/4/291.abstract10.1177/1555412010391088" "http://gac.sagepub.com/content/6/4/373.abstract10.1177/1555412010391092http://triadicgamedesign.comhttp://www.vwobservatory.com/wp/?p=62http://con.sagepub.com/content/17/3/307.abstract10.1177/1354856511405758http://sri.sagepub.com/content/18/2/160.abstract10.1177/1553350610392064" "http://digitalcommons.bolton.ac.uk/cgi/viewcontent.cgi?article=1013\\&context=gcct_conferencepr10.1145/1859799.1859809http://con.sagepub.com/content/16/4/395.abstracthttp://gac.sagepub.com/cgi/content/abstract/1555412010361953v1http://gac.sagepub.com/cgi/content/abstract/1555412009359764v1" "http://gac.sagepub.com/cgi/content/abstract/1555412009360414v1http://gac.sagepub.com/cgi/content/abstract/1555412009359765v1http://gac.sagepub.com/cgi/content/abstract/1555412009360413v2http://gac.sagepub.com/cgi/content/abstract/1555412010364976v1http://sag.sagepub.com/cgi/content/abstract/41/3/316" "http://sag.sagepub.com/cgi/content/abstract/41/3/390http://sag.sagepub.com/cgi/content/abstract/41/3/341http://sag.sagepub.com/cgi/content/abstract/41/3/400http://sag.sagepub.com/cgi/content/abstract/41/3/360http://nms.sagepub.com/cgi/content/abstract/1461444809343563v1" "http://gac.sagepub.com/cgi/content/abstract/5/1/43http://gac.sagepub.com/cgi/content/abstract/5/1/116http://gac.sagepub.com/cgi/content/abstract/5/1/88http://gac.sagepub.com/cgi/content/abstract/5/1/64http://gac.sagepub.com/cgi/content/abstract/5/1/3http://gac.sagepub.com/cgi/content/abstract/5/1/23" "<Go to ISI>://000272728400001http://sag.sagepub.com/cgi/content/abstract/41/1/72http://sag.sagepub.com/cgi/content/abstract/41/1/51http://sag.sagepub.com/cgi/content/abstract/41/1/51http://sag.sagepub.com/cgi/content/abstract/41/1/94http://sag.sagepub.com/cgi/content/abstract/41/1/6" "http://sag.sagepub.com/cgi/content/abstract/41/1/20http://sag.sagepub.com/cgi/content/abstract/41/1/116http://pss.sagepub.com/content/21/4/463.full.pdf+htmlhttp://sag.sagepub.com/cgi/content/abstract/1046878110366070v1http://cpj.sagepub.com/cgi/content/abstract/49/4/337" "http://sag.sagepub.com/cgi/content/abstract/41/2/145http://sag.sagepub.com/cgi/content/abstract/41/2/238http://sag.sagepub.com/cgi/content/abstract/41/2/170http://sag.sagepub.com/cgi/content/abstract/41/2/260http://eprints.ecs.soton.ac.uk/21564/http://www.ludoscience.com/files/ressources/seriousgames_gaming20.pdf" "http://www.digra.org:8080/Plone/Members/malteelson/Too\\%20fast\\%20or\\%20too\\%20furious.pdf/viewhttp://sag.sagepub.com/content/41/5/743.abstracthttp://sag.sagepub.com/content/41/5/705.abstracthttp://sag.sagepub.com/content/41/5/724.abstracthttp://gac.sagepub.com/cgi/content/abstract/5/1/116" "http://gac.sagepub.com/cgi/content/abstract/5/1/88http://gac.sagepub.com/cgi/content/abstract/5/1/64http://gac.sagepub.com/cgi/content/abstract/5/1/3http://gac.sagepub.com/cgi/content/abstract/5/1/23http://eprints.ecs.soton.ac.uk/21669/http://portal.acm.org/ft_gateway.cfm?id=1753910\\&type=pdf\\&coll=GUIDE\\&dl=GUIDE\\&CFID=15151515\\&CFTOKEN=6184618" "10.1145/1753846.1753910http://eprints.ecs.soton.ac.uk/21606/http://eprints.ecs.soton.ac.uk/21563/http://eprints.ecs.soton.ac.uk/21565/http://www.professorgrace.com/documents/ACHI_paper_Music_Box2_IEEE.pdf10.1109/ACHI.2010.18http://langcom.u-shizuoka-ken.ac.jp/dehaan" "http://www.situatedresearch.com/CogTech14-2-15-1.pdfhttp://llt.msu.edu/vol14num2/abstracts.html$\\#$dehaanreedkuwadahttp://www.glsconference.org/2010/program/event/199http://www.glsconference.org/2010/program/event/12910.1177/1087054709347205http://www.springerlink.com/openurl.asp?genre=article\\&id=doi:10.1007/s00530-009-0174-0" "10.1007/s00530-009-0174-0http://www.thechineseroom.co.uk/pinchbeckbuild.pdfhttp://hci.usask.ca/publications/view.php?id=188http://portal.acm.org/citation.cfm?doid=1743666.174369310.1145/1743666.1743693http://www.informaworld.com/smpp/content~db=all~content=a922546769~frm=abslink" "10.1080/14626261003654509https://www.taik.fi/kirjakauppa/product_info.php?cPath=23\\&products_id=163http://www.vwobservatory.com/wp/?p=110http://www.vwobservatory.com/wp/?p=143http://www.vwobservatory.com/wp/?p=14510.1177/1555412009354727http://www.eludamos.org/index.php/eludamos/article/view/vol4no2-13" "http://www.business-and-management.org/paper.php?id=48http://ssrn.com/paper=158007910.1177/1555412009354728http://telearn.noe-kaleidoscope.org/open-archive/browse?resource=223210.1177/1555412010377322http://crx.sagepub.com/cgi/content/abstract/37/2/25610.1177/0093650209356394" "http://www.ludoliteracy.com/http://www.vwobservatory.com/wp?p=124http://dx.doi.org/10.1016/j.intcom.2010.04.00510.1016/j.intcom.2010.04.005http://hci.usask.ca/publications/view.php?id=181http://www.vwobservatory.com/wp/?p=138http://nms.sagepub.com/cgi/content/abstract/12/2/235" "10.1177/146144480934226710.1177/0267323110373456http://www.vwobservatory.com//wp/?p=14010.1145/1785455.1785474http://digitalcommons.bolton.ac.uk/gcct_journalspr/510.3916/C34-2010-02-07http://www.vwobservatory.com/wp/?p=126http://hdl.handle.net/1956/4287http://www.lulu.com/content/8042752" "http://digitalcommons.bolton.ac.uk/gcct_journalspr/13/http://langcom.u-shizuoka-ken.ac.jp/dehaan-games-language-learninghttp://bit.ly/virtualjustice10.1177/1555412009354729http://hci.usask.ca/publications/view.php?id=18210.1177/1476718X09345406http://digitalcommons.bolton.ac.uk/gcct_conferencepr/10/" "http://digitalcommons.bolton.ac.uk/gcct_conferencepr/9<Go to ISI>://000269646100060<Go to ISI>://000270242200004<Go to ISI>://000269941100011<Go to ISI>://000268927700003<Go to ISI>://000270656000017<Go to ISI>://000270656000006<Go to ISI>://000270336800006" "<Go to ISI>://000269092500016<Go to ISI>://000270627500013<Go to ISI>://000269069200039<Go to ISI>://000269069200033<Go to ISI>://000271490000012<Go to ISI>://000269069200006<Go to ISI>://000269069200040<Go to ISI>://000271910900005<Go to ISI>://000270829000002" "<Go to ISI>://000272073800015<Go to ISI>://000270643200003<Go to ISI>://000271447500002<Go to ISI>://000266418500018<Go to ISI>://000265774700013<Go to ISI>://000271090500003<Go to ISI>://000264505700006<Go to ISI>://000264057100001<Go to ISI>://000263825500034" "<Go to ISI>://000263779000039<Go to ISI>://000266763100009http://nms.sagepub.com/cgi/content/abstract/11/4/509http://nms.sagepub.com/cgi/content/abstract/11/4/621<Go to ISI>://000266632400019<Go to ISI>://000268143600001<Go to ISI>://000270221200006<Go to ISI>://000266069600003" "<Go to ISI>://000267622000007http://digitalcommons.bolton.ac.uk/gcct_conferencepr/12/10.1007/978-3-642-02774-1_67<Go to ISI>://000269443300005<Go to ISI>://000267628500008<Go to ISI>://000268361100001<Go to ISI>://000267720400006<Go to ISI>://000262859000016" "<Go to ISI>://000262105300002<Go to ISI>://000264354600009<Go to ISI>://000263701900001<Go to ISI>://000264182300011<Go to ISI>://000263701900007<Go to ISI>://000261636800035<Go to ISI>://000261931400003<Go to ISI>://000263225300002<Go to ISI>://000263251900021" "<Go to ISI>://000264084900012<Go to ISI>://000271397300006http://escholarship.org/uc/item/6f49r74nhttp://sag.sagepub.com/cgi/content/abstract/40/6/752http://sag.sagepub.com/cgi/content/abstract/40/6/802http://vcu.sagepub.com/cgi/content/abstract/8/3/279<Go to ISI>://000271414100005" "http://nms.sagepub.com/cgi/content/abstract/11/5/685http://nms.sagepub.com/cgi/content/abstract/11/5/815<Go to ISI>://000268468800003<Go to ISI>://000268812600010<Go to ISI>://000266928500007<Go to ISI>://000268377000013<Go to ISI>://000266187700017http://digitalcommons.bolton.ac.uk/gcct_conferencepr/11/" "<Go to ISI>://000265384800008<Go to ISI>://000265087100020http://www.bth.se/fou/forskinfo.nsf/8ea71836fbadac09c125733300214ab9/4771af1c725ee1f4c12575c500452fa2!OpenDocumenthttp://www.jesperjuul.net/text/easydifficult/10.1145/1536513.1536539http://www2.fcsh.unl.pt/docentes/hbarbas/Textos/instory_euromedia_hb_nc_2009.pdf" "http://www.idunn.no/file/ci/38198929/nmt_2009_04_pdf.pdfhttp://www.bth.se/fou/forskinfo.nsf/8ea71836fbadac09c125733300214ab9/55cdcbe9e175f256c12575c50057d7a0!OpenDocumenthttp://eprints.ecs.soton.ac.uk/21569/http://www.gamecareerguide.com/features/791/educational_.php" "http://www.liebertonline.com/doi/abs/10.1089/cpb.2009.001310.1089/cpb.2009.0013http://dmitriwilliams.com/Profanity.pdf10.1089/cpb.2008.0337http://www.gamecareerguide.com/features/776/truly_independent_game_.phphttp://underthemask.wdfiles.com/local--files/key-note/Garry\\%20Crawford.doc" "http://www.liebertonline.com/doi/abs/10.1089/cpb.2008.027910.1089/cpb.2008.0279http://www.humankinetics.com/SSJ/viewarticle.cfm?jid=XbPvtE4KXgVfhGMTXgAubr2cXaKymypVXeJnfe2rXcEkqkyzX\\&aid=16853\\&site=XbPvtE4KXgVfhGMTXgAubr2cXaKymypVXeJnfe2rXcEkqkyzXhttp://eprints.ecs.soton.ac.uk/21562/" "http://filebox.vt.edu/users/jivory/IvoryKalyanaraman2009CommReportsContentAbstractionPerceivedEffects.pdf10.1080/08934210902798536http://www.digra.org/dl/db/09287.20429.pdfhttp://www.bth.se/fou/forskinfo.nsf/17e96a0dab8ab6a1c1257457004d59ab/e0a8cdd8cfc0c7e6c125762c005557c0!OpenDocument" "http://www.eludamos.org/index.php/eludamos/article/view/71http://mitpress.mit.edu/catalog/item/default.asp?ttype=2\\&tid=11549<Go to ISI>://000266435000016http://facsrv.cs.depaul.edu/~jzagal/Papers/Zagal_et_al_GameReviews.pdfhttp://www.vwobservatory.com/wp/?p=203" "http://www.mellenpress.com/mellenpress.cfm?bookid=7897\\&pc=9http://www.vwobservatory.com/wp/?p=272http://www.jesperjuul.net/text/fearoffailing/http://www.vwobservatory.com/wp/?p=149http://www.vwobservatory.com/wp/?p=156http://www.vwobservatory.com/wp/?p=194" "http://www.vwobservatory.com/wp?p=161http://gamingmoms.wordpress.com/publications/http://www.digitalislam.eu/article.do?articleId=2515http://www.igi-global.com/Bookstore/TitleDetails.aspx?TitleId=448\\&DetailsType=Description10.4018/978-1-60566-352-4http://mitpress.mit.edu/catalog/item/default.asp?ttype=2\\&tid=11696" "http://www.informaworld.com/smpp/content~content=a909230753~db=all~jumptype=rss10.1145/1581073.1581093http://www.vwobservatory.com/wp/?p=153<Go to ISI>://000268061500012http://www.cyberchimp.co.uk/research/testoftime.htmhttp://www3.interscience.wiley.com/journal/122598460/abstract?CRETRY=1\\&SRETRY=0" "http://religion.info/english/interviews/article_413.shtmlhttp://www.digitalislam.eu/article.do?articleId=2550http://www.vwobservatory.com/wp/?p=151http://www.vwobservatory.com/wp/?p=201<Go to ISI>://000269212200012<Go to ISI>://000272798500001<Go to ISI>://000266634600053" "<Go to ISI>://000272675500019<Go to ISI>://000264269800004<Go to ISI>://000265992600006<Go to ISI>://000267262400038<Go to ISI>://000270315200005<Go to ISI>://000265769200046<Go to ISI>://000265299800005<Go to ISI>://000264525500006<Go to ISI>://000269762300005" "<Go to ISI>://000270735700003<Go to ISI>://000271971800004<Go to ISI>://000269930300045<Go to ISI>://000269934000015<Go to ISI>://000269191600002<Go to ISI>://000267757200037<Go to ISI>://000264525500002<Go to ISI>://000264099000003<Go to ISI>://000269034700041" "<Go to ISI>://000265013400005<Go to ISI>://000270937300024<Go to ISI>://000264525500005<Go to ISI>://000269930300024<Go to ISI>://000263926900004<Go to ISI>://000269961200028<Go to ISI>://000269934000019<Go to ISI>://000267512400008<Go to ISI>://000272798300002" "<Go to ISI>://000265530200001<Go to ISI>://000265542001617<Go to ISI>://000267731500002<Go to ISI>://000269934000033<Go to ISI>://000270531200024<Go to ISI>://000267755700030<Go to ISI>://000269034700045<Go to ISI>://000269934000036<Go to ISI>://000271451400025" "<Go to ISI>://000272569400001<Go to ISI>://000265103800064<Go to ISI>://000270543400017<Go to ISI>://000271485600015<Go to ISI>://000265786800035<Go to ISI>://000271509500004<Go to ISI>://000269034700036<Go to ISI>://000269934000055<Go to ISI>://000267137900044" "<Go to ISI>://000269934000001<Go to ISI>://000269304600068<Go to ISI>://000272585900086<Go to ISI>://000270899000038<Go to ISI>://000267137900047<Go to ISI>://000271545700064<Go to ISI>://000264744600040<Go to ISI>://000271451400051<Go to ISI>://000269972300036" "<Go to ISI>://000269304600065<Go to ISI>://000272165400045<Go to ISI>://000271485600009<Go to ISI>://000271485600017<Go to ISI>://000270597500078<Go to ISI>://000269934000020<Go to ISI>://000272138200006<Go to ISI>://000269212200136<Go to ISI>://000269934000002" "<Go to ISI>://000263872300001<Go to ISI>://000265740800001<Go to ISI>://000270884800008<Go to ISI>://000270543400092<Go to ISI>://000265736800050<Go to ISI>://000264525500011<Go to ISI>://000270434800002<Go to ISI>://000268998000029<Go to ISI>://000265679301121" "<Go to ISI>://000269034700034<Go to ISI>://000264137700002<Go to ISI>://000267475900003<Go to ISI>://000270204900055<Go to ISI>://000269024500055<Go to ISI>://000269034000069<Go to ISI>://000271799300069<Go to ISI>://000268378000005<Go to ISI>://000269934000026" "<Go to ISI>://000270315200002<Go to ISI>://000264525500001<Go to ISI>://000271922200001<Go to ISI>://000264878000024<Go to ISI>://000269212200025<Go to ISI>://000269869600013<Go to ISI>://000269034000025<Go to ISI>://000269934000034<Go to ISI>://000266594800003" "<Go to ISI>://000269934000024<Go to ISI>://000263788400008http://digitalcommons.bolton.ac.uk/gcct_conferencepr/7http://digitalcommons.bolton.ac.uk/gcct_conferencepr/1<Go to ISI>://000264047400007<Go to ISI>://000270196700009<Go to ISI>://000259264307693<Go to ISI>://000268325500003" "<Go to ISI>://000262311900005<Go to ISI>://000268949900002http://gamingmoms.wordpress.com/publications/https://bora.uib.no/bitstream/1956/3895/1/jorgensen-researching\\%20players.pdfhttp://gamescience.bth.se/download/16/https://bora.uib.no/bitstream/1956/3896/3/KJorgensen-digicult.pdf" "http://www.hindawi.com/GetArticle.aspx?doi=10.1155/2008/72028010.1155/2008/720280http://www.springerlink.com/content/f3560134p7017541/10.1007/978-3-540-88322-7http://gamestudies.org/0802/articles/tylerhttp://journals.sfu.ca/loading/index.php/loading/article/view/51" "http://journals.sfu.ca/loading/index.php/loading/article/view/40http://journals.sfu.ca/loading/index.php/loading/article/view/50http://journals.sfu.ca/loading/index.php/loading/article/view/41http://eprints.ecs.soton.ac.uk/21568/http://journals.sfu.ca/loading/index.php/loading/article/view/43" "http://journals.sfu.ca/loading/index.php/loading/article/view/52http://journals.sfu.ca/loading/index.php/loading/article/view/39http://journals.sfu.ca/loading/index.php/loading/article/view/44http://journals.sfu.ca/loading/index.php/loading/article/view/46http://www.pewinternet.org/PPF/r/263/report_display.asp" "http://www.eludamos.org/index.php/eludamos/article/view/50http://uisk.jinonice.cuni.cz/sisler/publications/ACM_MindTrek_Europe_2045.pdfhttp://www.digitalislam.eu/article.do?articleId=170410.1177/1367549407088333http://www.informaworld.com/smpp/content~content=a789782126~db=all~order=page" "10.1080/17430430701823380http://portal.acm.org/citation.cfm?id=1496984.149699810.1145/1496984.1496998http://www.eludamos.org/index.php/eludamos/article/view/38/66http://knol.google.com/k/ravi-purushotma/10-key-principles-for-designing-video/27mkxqba7b13d/2http://gamestudies.org/0802/articles/jorgensen" "http://journals.sfu.ca/loading/index.php/loading/article/view/42http://judyrobertson.typepad.com/judy_robertson/files/RobertsonHowellsComputersEducationInPress.dochttp://www.palgrave-usa.com/catalog/product.aspx?isbn=0230545440http://digiplay.info/files/CoC.pdf" "http://uisk.jinonice.cuni.cz/sisler/publications/SislerBromEdutainment2008.pdf10.1007/978-3-540-69744-2_1http://www.islp.uni-koeln.de/venus/Material/Gloor_Schoder.pdfhttp://io-noi-aldo.sonance.net/gaming-2-0/Gaming_2_0_Thesis_lowres.pdfhttp://spnl.stanford.edu/publications/pdfs/Hoeft_2008JPsychiatrRes.pdf" "http://www.minkhollow.ca/KB/PhD/Thesis07/doku.php?id=thesis:mainhttp://www.ijclp.net/files/ijclp_web-doc_8-12-2008.pdfhttp://www.eludamos.org/index.php/eludamos/article/view/21http://www.liebertonline.com/doi/abs/10.1089/cpb.2007.0014http://opus.kobv.de/ubp/volltexte/2008/2455/pdf/digarec01_03.pdf" "http://www.uq.edu.au/emsah/mia/issues/mia126.html$\\#$grimeshttp://ja.games.free.fr/ludoscience/PDF/EtudeIDATE08_UK.pdfhttp://www.psychology.iastate.edu/~dgentile/pdfs/G2_Exemplary_Teachers_2007.pdfhttp://www.vwobservatory.com/wp/?p=205<Go to ISI>://000262977300014" "<Go to ISI>://000264585800012<Go to ISI>://000264585800004<Go to ISI>://000264585800009<Go to ISI>://000264585800010<Go to ISI>://000264099100001<Go to ISI>://000270113900005<Go to ISI>://000261729700004<Go to ISI>://000264099100004<Go to ISI>://000264585800005" "<Go to ISI>://000272333000021<Go to ISI>://000264585800001http://gac.sagepub.com/content/vol2/issue4/http://gac.sagepub.com/content/vol2/issue4/http://gac.sagepub.com/content/vol2/issue4/http://gac.sagepub.com/content/vol2/issue4/http://gac.sagepub.com/content/vol2/issue4/" "http://www.aera.net/meetings/Default.aspx?menu_id=24\\&id=2116http://gamescience.bth.se/download/14/http://synlab.gatech.edu/workshops/tangibleplay2007/files/IUI-workshop_TangiblePlay.pdfhttp://www.iitsec.orghttp://www.editlib.org/index.cfm/files/paper_24920.pdf?fuseaction=Reader.DownloadFullText\\&paper_id=24920" "http://www.iitsec.org/http://www.danpinchbeck.co.uk/ludicreality.pdfhttp://www.jesperjuul.net/text/acertainlevel/http://www.digra.org/dl/db/07311.06195.pdfhttp://www.salt.org/dc/washingtonP.asphttp://pkearney.radical.ac.nz/page2/page2.htmlhttp://www.holymeatballs.org/pdfs/P4K_Year_2-Report.pdf" "http://www.hindawi.com/GetPDF.aspx?doi=10.1155/2008/21678410.1155/2008/216784http://www.atypon-link.com/INT/doi/pdf/10.1386/nl.5.1.105_1http://www.jesperjuul.net/text/swapadjacent/10.1080/17493460601173366http://portal.acm.org/citation.cfm?id=1272535http://www.nsba.org/site/docs/41400/41340.pdf" "http://portal.acm.org/citation.cfm?id=1272516.1272537http://portal.acm.org/citation.cfm?id=1272516.1272538http://www.e-ucm.es/publications/articles.html10.1016/j.scico.2006.07.003http://langcom.u-shizuoka-ken.ac.jp/dehaanhttp://journals.sfu.ca/loading/index.php/loading/article/view/6/11" "http://journals.sfu.ca/loading/index.php/loading/article/view/23/9http://journals.sfu.ca/loading/index.php/loading/article/view/5/2http://journals.sfu.ca/loading/index.php/loading/article/view/8/10http://journals.sfu.ca/loading/index.php/loading/article/view/12/15" "http://journals.sfu.ca/loading/index.php/loading/article/view/24/23http://journals.sfu.ca/loading/index.php/loading/article/view/2/14http://journals.sfu.ca/loading/index.php/loading/article/view/19/16http://journals.sfu.ca/loading/index.php/loading/article/view/4/7" "http://journals.sfu.ca/loading/index.php/loading/article/view/1/1http://journals.sfu.ca/loading/index.php/loading/article/view/13/17http://journals.sfu.ca/loading/index.php/loading/article/view/15/4http://journals.sfu.ca/loading/index.php/loading/article/view/18/18" "http://journals.sfu.ca/loading/index.php/loading/article/view/10/21http://journals.sfu.ca/loading/index.php/loading/article/view/7/13http://journals.sfu.ca/loading/index.php/loading/article/view/17/20http://journals.sfu.ca/loading/index.php/loading/article/view/21/6" "http://journals.sfu.ca/loading/index.php/loading/article/view/20/3http://journals.sfu.ca/loading/index.php/loading/article/view/16/8http://journals.sfu.ca/loading/index.php/loading/article/view/3/19http://journals.sfu.ca/loading/index.php/loading/article/view/14/12" "http://journals.sfu.ca/loading/index.php/loading/article/view/11/5http://www.his.se/upload/19354/HS-\\%20IKI\\%20-TR-07-001.pdfhttp://sirfragalot.com/mainsite/phd.htmlhttp://www.bcs.rochester.edu/people/daphne/csg_ps_07.pdfhttp://gac.sagepub.com/cgi/content/abstract/2/2/95" "http://gac.sagepub.com/cgi/content/abstract/2/1/59http://www.sussex.ac.uk/Units/spru/events/ocs/viewpaper.php?id=237http://portal.acm.org/ft_gateway.cfm?id=1228234\\&type=pdfhttp://gac.sagepub.com/cgi/content/abstract/2/3/194http://web.cs.wpi.edu/~gogo/hive/papers/Rueda_VR2007.pdf" "http://mitpress.mit.edu/catalog/item/default.asp?ttype=2\\&tid=11153http://pkearney.radical.ac.nz/page2/page2.htmlhttp://hci.yonsei.ac.kr/paper/eng_journal/2007-CPB-Collaborate\\%20and\\%20Share.pdfhttp://www.lit-verlag.de/isbn/3-8258-0332-2http://www2.parc.com/spl/members/bobmoore/bio/CHI2007-706-Moore-etal-FINAL.pdf" "http://gac.sagepub.com/cgi/content/abstract/2/3/236http://www.digitalislam.eu/http://gac.sagepub.com/cgi/content/abstract/2/2/114http://www2.parc.com/spl/members/bobmoore/research/DoingVirtuallyNothing.pdfhttp://www.cs.wpi.edu/~claypool/papers/rez/paper.pdf" "http://julian.togelius.com/Agapitos2007Evolving.pdfhttp://www.lingualgamers.com/thesis/http://web.cs.wpi.edu/~claypool/papers/fr/fulltext.pdfhttp://gac.sagepub.com/cgi/content/abstract/2/1/3http://www.futureofthebook.org/mckenziewark/gamertheory2.0/http://tampub.uta.fi/index.php?tiedot=202" "http://gac.sagepub.com/cgi/content/abstract/2/3/175http://gac.sagepub.com/cgi/content/abstract/2/1/23http://www.getrichgaming.com/http://www.techlearning.com/story/showArticle.php?articleID=196604665http://research.microsoft.com/users/kunzhou/publications/mesh-animation.pdf" "http://www.popsci.com/popsci/technology/d997f0209dd15110vgnvcm1000004eecbccdrcrd.htmlhttp://portal.acm.org/ft_gateway.cfm?id=1255106\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618http://www.psychology.iastate.edu/FACULTY/dgentile/pdfs/Rosser\\%20et\\%20al\\%20(2007).pdf" "http://www.futurelab.org.uk/resources/documents/external_publications/Teaching_with_Games_IJATL.pdfhttp://telearn.noe-kaleidoscope.org/open-archive/browse?resource=530http://www.eludamos.org/index.php/eludamos/article/view/4http://www.futurelab.org.uk/resources/publications_reports_articles/web_articles/Web_Article794" "http://www.1up.com/do/feature?cId=3163635http://portal.acm.org/ft_gateway.cfm?id=1255097\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618http://portal.acm.org/ft_gateway.cfm?id=1255073\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618http://www.merl.com/papers/docs/TR2006-009.pdf" "http://cmsprod.bgu.ac.il/NR/rdonlyres/34396BDB-6C0E-4931-A077-697451885123/38246/MicrosoftWordtom.pdfhttp://www.cigital.com/papers/download/attack-trends-EOG.pdfhttp://www.cs.unibo.it/~cpalazzi/papers/Palazzi-OOS.pdfhttp://portal.acm.org/ft_gateway.cfm?id=1255059\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618" "http://mitpress.mit.edu/catalog/item/default.asp?ttype=2\\&tid=11152http://www.digra.org/dl/db/07312.21221.pdfhttp://gac.sagepub.com/cgi/content/abstract/2/2/149http://jonassmith.dk/weblog/players-realm/http://portal.acm.org/ft_gateway.cfm?id=1255140\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618" "http://portal.acm.org/ft_gateway.cfm?id=1255051\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618http://gac.sagepub.com/cgi/content/abstract/2/1/49http://lisa.socialstudiesgames.com/productive_play.pdfhttp://www.cs.cmu.edu/~kraut/RKraut.site.files/articles/seay07-GamePlay\\&PsychologicalWellbeing.pdf" "http://ro.uow.edu.au/cgi/viewcontent.cgi?article=1500\\&context=infopapershttp://www.cs.cornell.edu/johannes/papers/2007/2007-SIGMOD-Games.pdfhttp://portal.acm.org/ft_gateway.cfm?id=1272399\\&type=pdf\\&coll=GUIDE\\&dl=ACM\\&CFID=15151515\\&CFTOKEN=6184618http://portal.acm.org/ft_gateway.cfm?id=1255057\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618" "http://www.cs.bath.ac.uk/~cspmaw/ieeesmcb.pdfhttp://www.spacetimeplay.org/http://uisk.jinonice.cuni.cz/sisler/publications/Story_Manager_Europe2045_Petri_Nets.pdf10.1007/978-3-540-77039-8http://gac.sagepub.com/cgi/content/abstract/2/3/213http://www.ee.surrey.ac.uk/CVSSP/VMRG/Publications/starck07cga.pdf" "http://gac.sagepub.com/cgi/content/abstract/2/3/261http://synlab.gatech.edu/papers/mazalek_ace2007_tui3d.pdfhttp://learningfromsocialworlds.wordpress.com/interview-teaching-machinima-at-schome-parkhttp://www.escapistmagazine.com/articles/view/issues/issue_121/2575-Ten-Myths-About-Serious-Games" "http://www.mcfarlandpub.com/book-2.php?isbn=0-7864-2832-5http://gac.sagepub.com/cgi/content/abstract/2/2/134http://ace2007.org/download/p307-bardzell.pdfhttp://portal.acm.org/ft_gateway.cfm?id=1255052\\&type=pdf\\&coll=GUIDE\\&dl=\\&CFID=15151515\\&CFTOKEN=6184618" "http://www.cs.uta.fi/~tarja/irisWG/cr1042165089399.pdfhttp://www.sk.tsukuba.ac.jp/SSM/libraries/pdf1051/1097.pdfhttp://www.sellmorevideogames.com/VideogameMarketingAndPR.pdfhttp://www.gamestyleguide.com/http://www.gamestyleguide.com/http://www.press.uchicago.edu/cgi-bin/hfs.cgi/00/226001.ctl" "http://www.youtube.com/view_play_list?p=77B70E50BFC0A98Chttp://www.jesperjuul.net/text/withoutagoal/http://www.eludamos.org/index.php/eludamos/article/view/7<Go to ISI>://000272330700011http://www.eludamos.org/index.php/eludamos/article/view/2/1http://www.eludamos.org/index.php/eludamos/article/view/9" "http://www.eludamos.org/index.php/eludamos/article/view/3<Go to ISI>://000272219300037http://www.eludamos.org/index.php/eludamos/article/view/8<Go to ISI>://00026712330009610.1177/104687810628794410.1177/1046878106287943http://ejov.org/Projects/408/ICE\\%202006/Training,\\%20Eductaion\\%20and\\%20Legal\\%20Issues/p49-47.pdf" "http://www.fas.org/gamesummit/www.comp.dit.ie/bduggan/Research/Using\\%20the\\%20Source\\%20engine\\%20for\\%20Serious\\%20Games.pdfhttp://journal.fibreculture.org/issue8/issue8_chan.htmlhttp://journal.fibreculture.org/issue8/issue8_andrews.htmlhttp://journal.fibreculture.org/issue8/issue8_hjorth.html" "http://www.fas.org/gamesummit/Resources/RD\\%20Games.pdfhttp://gac.sagepub.com/cgi/content/abstract/1/4/362http://www.educause.edu/apps/eq/eqm06/eqm0633.asphttp://www.futurelab.org.uk/projects/teaching_with_games/research/final_reporthttp://www.unaustralia.com/electronicpdf/Unapperley.pdf" "http://www.units.muohio.edu/codeconference/papers/papers/VG\\%20and\\%20project\\%20management\\%20\\%5BMcDaniel\\%20et\\%20al\\%5D.pdfhttp://www-cdn.educause.edu/ir/library/pdf/ELI3004.pdfhttp://www.zgdv.de/TIDSE06/10.1207/s15327825mcs0901_6http://www.uvka.de/univerlag/volltexte/2006/144/" "http://gac.sagepub.com/cgi/content/abstract/1/1/89http://www.cs.unimaas.nl/p.spronck/Pubs/DynamicScripting.pdfhttp://www.ofcom.org.uk/research/tv/reports/videoregulation/http://vrlab.epfl.ch/Publications/pdf/Salamin_Thalmann_Vexo_VRST_06.pdfhttp://gac.sagepub.com/cgi/content/abstract/1/1/62" "http://gac.sagepub.com/cgi/content/abstract/1/4/383http://gac.sagepub.com/cgi/content/abstract/1/4/281http://digiplay.ino/UDG/http://journal.fibreculture.org/issue8/issue8_taylor.htmlhttp://doi.ieeecomputersociety.org/10.1109/ICPR.2006.370http://www-static.cc.gatech.edu/~jp/Papers/Zagal\\%20et\\%20al\\%20-\\%20Collaborative\\%20Games\\%20-\\%20Lessons\\%20learned\\%20from\\%20boardgames.pdf" "http://digiplay.info/UDGhttp://gac.sagepub.com/cgi/content/abstract/1/1/41http://www.informaworld.com/smpp/content~content=a755296191~db=all~order=page10.1080/13691180600858721http://digiplay.info/UDGhttp://ajp.psychiatryonline.org/cgi/content/full/163/3/381" "http://connect.educause.edu/library/abstract/DigitalGameBasedLear/40614http://digiplay.info/UDGhttp://digiplay.ino/UDG/http://digiplay.info/UDGhttp://digiplay.info/UDGhttp://www.digitalislam.eu/article.do?articleId=1419http://www.peostri.army.mil/CTO/FILES/DisruptivePotential.pdf" "http://gac.sagepub.com/cgi/content/abstract/1/4/318http://www.nda.ac.jp/~nama/Top/Papers/research-namatame/07-01.pdfhttp://digiplay.info/UDGhttp://pediatrics.aappublications.org/cgi/content/full/118/6/e1831http://digiplay.info/UDGhttp://gac.sagepub.com/cgi/content/abstract/1/1/111" "http://gac.sagepub.com/cgi/content/abstract/1/4/338http://mcgraw-hill.co.uk/html/033521357X.htmlhttp://www.ctonet.org/documents/SmithR_GameImpactTheory.pdfhttp://gac.sagepub.com/cgi/content/abstract/1/1/116http://ihobo.com/WP/http://www.sfu.ca/cprost/docs/06Chee.pdf" "http://www.gamingcultures.comhttp://gac.sagepub.com/cgi/content/abstract/1/1/5http://www.culture-communication.unimelb.edu.au/research-students/tom-apperley.pdfhttp://gac.sagepub.comhttp://dare.ubvu.vu.nl/bitstream/1871/11014/2/HereBeDragonsbw.pdfhttp://www.atypon-link.com/INT/doi/abs/10.1386/jmpr.7.1.25/1" "http://digiplay.info/UDGhttp://gac.sagepub.com/cgi/content/abstract/1/3/231http://web.cs.wpi.edu/~claypool/iqp/fr-rez/paper.pdfhttp://booksonline.iospress.com/Content/View.aspx?piid=2408http://faculty-gsb.stanford.edu/nair/PDF-s/VGames_Dynamic_2006.pdfhttp://www.digitalislam.eu/article.do?articleId=1418" "http://userinnovation.mit.edu/papers/SIMS_R\\&D_final.pdfhttp://telearn.noe-kaleidoscope.org/open-archive/browse?resource=257http://digiplay.ino/UDG/http://gac.sagepub.com/cgi/content/abstract/1/1/29https://www.sensepublishers.com/product_info.php?products_id=202\\&osCsid=1a7" "http://www.lulu.com/content/376076http://doi.acm.org/10.1145/1142405.1142433http://gac.sagepub.com/cgi/content/abstract/1/1/103http://www1.umn.edu/umnnews/Feature_Stories/22Neverwinter_Nights22_in_the_classroom.htmlhttp://nms.sagepub.com/content/8/6/969.full.pdf" "http://papers.ssrn.com/sol3/papers.cfm?abstract_id=946987http://www.sciencedirect.com/science/article/B6V8J-4KWK0VK-1/2/29dd929f136a00e9c5cfefba1858d21chttp://jonassmith.dk/weblog/phd-plans-and-purposes/http://digiplay.info/UDGhttp://cee.nd.edu/news/documents/PracticingGoodnessReportFINAL.pdf" "http://doi.ieeecomputersociety.org/10.1109/ITNG.2006.110http://www.stockburger.co.uk/research/abstract.htmlhttp://www.digitalislam.eu/article.do?articleId=1423http://gac.sagepub.com/cgi/content/abstract/1/2/163http://www.charlesriver.com/Books/BookDetail.aspx?productID=124865" "http://eprints.nuim.ie/archive/00000436/01/GTAKerr_final06.pdfhttp://www.leaonline.com/doi/abs/10.1207/s15327825mcs0901_6http://www.rickblunt.com/phd/blunt_richard_dissertation_final.pdfhttp://www.ict.usc.edu/~leuski/publications/papers/fp674-leuski-cikm.pdf" "http://digiplay.info/UDGhttp://digiplay.ino/UDG/http://mitpress.mit.edu/catalog/item/default.asp?ttype=2\\&tid=10917http://www.uib.no/people/smkrk/docs/RuneKlevjer_What\\%20is\\%20the\\%20Avatar_finalprint.pdfhttp://gamestudies.org/0701/articles/malliethttp://gamestudies.org/0601/articles/montfort" "http://gamestudies.org/0701/articles/elnasr_niedenthal_knez_almeida_zupkohttp://gamestudies.org/0601/articles/consalvo_duttonhttp://gac.sagepub.com/cgi/content/abstract/1/1/78http://gamestudies.org/0601/articles/heide_smithhttp://gac.sagepub.com/cgi/content/abstract/1/1/68" "http://gac.sagepub.com/cgi/content/abstract/1/1/25http://gac.sagepub.com/cgi/content/abstract/1/3/252http://gac.sagepub.com/cgi/content/abstract/1/3/199http://journal.fibreculture.org/issue8/issue8_nieborg.htmlhttp://gamestudies.org/0701/articles/wallinhttp://gamestudies.org/0701/articles/simons" "http://gac.sagepub.com/cgi/content/abstract/1/1/83http://gac.sagepub.com/cgi/content/abstract/1/2/141http://journal.fibreculture.org/issue8/issue8_walther.htmlhttp://doi.acm.org/10.1145/1125451.1125774http://gamestudies.org/0601/articles/rodrigeshttp://gac.sagepub.com/cgi/content/abstract/1/1/52" "http://gac.sagepub.com/cgi/content/abstract/1/1/36http://gac.sagepub.com/cgi/content/abstract/1/1/119http://gac.sagepub.com/cgi/content/abstract/1/1/17http://gac.sagepub.com/cgi/content/abstract/1/1/72http://gac.sagepub.com/cgi/content/abstract/1/3/214http://gamestudies.org/0601/articles/dormans" "http://gamestudies.org/0701/articles/harpoldhttp://gamestudies.org/0601/articles/paulkhttp://gac.sagepub.com/cgi/content/abstract/1/1/47http://gamestudies.org/0601/articles/nghttp://gamestudies.org/0701/articles/smithhttp://gac.sagepub.com/cgi/content/abstract/1/2/127" "http://gac.sagepub.com/cgi/content/abstract/1/1/97http://gac.sagepub.com/cgi/content/abstract/1/1/13http://gac.sagepub.com/cgi/content/abstract/1/1/58http://gac.sagepub.com/cgi/content/abstract/1/1/107http://gac.sagepub.com/cgi/content/abstract/1/4/397http://www.oecd.org/dataoecd/19/5/34884414.pdf" "http://www.comp.dit.ie/bduggan/Research/games_0539.PDFhttp://homepage.mac.com/markdouglaswagner/.Public/Ibbitson.dochttp://www.digra.org/dl/db/06276.14516.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/db/06276.32151.pdfhttp://www.uta.fi/hyper/gamelab/creativegamers/" "www.metromagazine.com.auhttp://www.journal.fibreculture.org/issue5/kucklich.htmlhttp://portal.acm.org/citation.cfm?id=1073954http://csdl2.computer.org/persagen/DLAbsToc.jsp?resourcePath=/dl/proceedings/\\&toc=comp/proceedings/iv/2005/2397/00/2397toc.xml\\&DOI=10.1109/IV.2005.64" "http://www.ascilite.org.au/conferences/brisbane05/blogs/proceedings/25_Fladen.pdfhttp://www.uvka.de/univerlag/volltexte/2006/144/pdf/Digital_Game_Based_Learning.pdfhttp://www.uvka.de/univerlag/volltexte/2006/144/pdf/Digital_Game_Based_Learning.pdfhttp://ihobo.com/WP/" "http://www.digra.org/dl/http://www.digra.org/dl/db/06276.49210.pdfhttp://www.sapientia.pucsp.br//tde_busca/arquivo.php?codArquivo=783http://www.intelligentagent.com/http://www.digra.org/dl/db/06278.47142.pdfhttp://www.digra.org/dl/db/06276.47486.pdfhttp://www.digra.org/dl/db/06276.04067.pdf" "http://www.digra.org/dl/db/06276.52412.pdfhttp://www.digra.org/dl/db/06276.39174.pdfhttp://www.digra.org/dl/db/06276.00539.pdfhttp://www.digra.org/dl/db/06278.41489.pdfhttp://www.digra.org/dl/db/06278.03293.pdfhttp://csdl2.computer.org/comp/proceedings/hicss/2005/2268/07/22680191a.pdf" "http://www.digra.org/dl/db/06276.28131.pdfhttp://www.digra.org/dl/db/06276.50521.pdfhttp://www.digra.org/dl/db/06276.10020.pdfhttp://oak.cats.ohiou.edu/~consalvo/Cheating_good_for_you.pdfhttp://www.digra.org/dl/db/06276.58345.pdfhttp://www.digra.org/dl/db/06276.20328.pdf" "http://www.digra.org/dl/db/06278.50594.pdfhttp://www.digra.org/dl/db/06276.28330.pdfhttp://www.childrenyouthandmediacentre.co.uk/Pics/SimAndGameCarr.pdfhttp://www.cjc-online.ca/index.php/journal/article/view/1525/1654http://www.digra.org/dl/db/06276.21047.pdf" "http://www.digra.org/dl/db/06276.39565.pdfhttp://www.digra.org/dl/db/06278.11008.pdfhttp://www.digra.org/dl/db/06276.30561.pdfhttp://www.digra.org/dl/db/06278.02012.pdfhttp://www.psychology.iastate.edu/faculty/caa/abstracts/2005-2009/05CA.pdfhttp://www.digra.org/dl/db/06276.38324.pdf" "http://www.digra.org/dl/db/06276.55524.pdfhttp://eric.ed.gov/ERICWebPortal/custom/portlets/recordDetails/detailmini.jsp?_nfpb=true\\&_\\&ERICExtSearch_SearchValue_0=EJ737691\\&ERICExtSearch_SearchType_0=eric_accno\\&accno=EJ737691http://www.digra.org/dl/http://www.digra.org/dl/db/06278.05074.pdf" "http://www.digra.org/dl/db/06276.25259.pdfhttp://eprints.qut.edu.au/archive/00005010/http://www.digra.org/dl/db/06276.00216.pdfhttp://www.lcc.gatech.edu/~nitsche/download/Nitsche_machinima_DRAFT4.pdfhttp://www.gamestudies.org/0501/gruenvogel/http://www.digra.org/dl/db/06276.36533.pdf" "http://www.digra.org/dl/db/06276.41516.pdfhttp://www.digra.org/dl/db/06275.15203.pdfhttp://www.digra.org/dl/db/06278.34239.pdfhttp://www.digra.org/dl/db/06276.06108.pdfhttp://www.digra.org/dl/db/05150.48223http://www.digra.org/dl/db/06278.39122.pdfhttp://www.digra.org/dl/db/06276.18065.pdf" "http://www.darkshire.net/jhkim/rpg/theory/styles.htmlhttp://www.digra.org/dl/db/06276.44285.pdfhttp://www.digra.org/dl/db/06276.11074.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/db/06278.12199.pdfhttp://www.gamestudies.org/0501/nakamura_wirman/http://www.digra.org/dl/db/06276.04321.pdf" "http://www.digra.org/dl/db/06276.58368.pdfhttp://tesi.fabio.web.cs.unibo.it/Tesi/UsabilitaEVideoGiochihttp://www.psychnology.org/336.phphttp://www.fair-play.se/source.php/42930/Lancet\\%202005.pdfhttp://www.digra.org/dl/http://www.ltss.bristol.ac.uk/interact/31/INTERACT_31.pdf" "http://www.digra.org/dl/db/06276.35222.pdfhttp://www.i-r-i-e.net/inhalt/004/Buchanan-Ess.pdfhttp://www.digra.org/dl/http://mitpress.mit.edu/books/chapters/0262182408intro1.pdfhttp://www.digra.org/dl/db/06278.37511.pdfhttp://portal.acm.org/citation.cfm?id=1111293.1111301" "http://www.digra.org/dl/db/06276.47199.pdfhttp://www.digra.org/dl/db/06276.15163.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.libraryjournal.com/article/CA516033.htmlhttp://www.digra.org/dl/http://www.digra.org/dl/db/06276.13262.pdfhttp://www.digra.org/dl/" "http://www.digra.org/dl/db/06276.26370.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/db/06275.08442.pdfhttp://www.intellectbooks.co.uk/journals/view-Article,id=5081/http://www.digra.org/dl/http://www.digra.org/dl/db/06276.21027.pdfhttp://www.digra.org/dl/" "http://www.digra.org/dl/db/06276.11525.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/db/06276.30483.pdfhttp://www.digra.org/dl/db/06276.36443.pdfhttp://www.digra.org/dl/db/06276.19386.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/db/06276.06512.pdf" "http://www.digra.org/dl/db/06278.49263.pdfhttp://www.digra.org/dl/db/06276.54243.pdfhttp://www.digra.org/dl/db/06276.15565.pdfhttp://www.digra.org/dl/db/06276.30120.pdfhttp://www.digra.org/dl/db/06278.24323.pdfhttp://www.i-r-i-e.net/inhalt/004/Chan.pdfhttp://www.digra.org/dl/db/06276.24389.pdf" "http://www.digra.org/dl/db/06276.33335.pdfhttp://www.digra.org/dl/db/06278.00101.pdfhttp://www.digra.org/dl/db/06276.16354.pdfhttp://eprints.qut.edu.au/archive/00005232/http://www.law.unimelb.edu.au/cmcl/malr/10-4-4\\%20Humphreys\\%20formatted\\%20for\\%20web.pdf" "http://www.digra.org/dl/http://www.digra.org/dl/db/06276.19076.pdfhttp://www.cse.unr.edu/~bdbryant/papers/stanley.ieeetec05.pdfhttp://www.digra.org/dl/db/06278.40383.pdfhttp://www.i-r-i-e.net/inhalt/004/Consalvo.pdfhttp://gamestudies.org/0501/lindley/http://www.digra.org/dl/db/06276.54317.pdf" "http://www.digra.org/dl/db/06276.29242.pdfhttp://mitpress.mit.edu/books/chapters/0262182408chap1.pdfhttp://www.digra.org/dl/db/06276.45288.pdfhttp://www.digra.org/dl/db/06276.35072.pdfhttp://www.digra.org/dl/db/06276.22478.pdfhttp://www.digra.org/dl/db/06278.36260.pdf" "http://www.digra.org/dl/db/06276.43287.pdfhttp://www.digra.org/dl/db/06276.22378.pdfhttp://www.immersivegaming.com/http://www.digra.org/dl/db/06276.05114.pdfhttp://www.digra.org/dl/db/06276.09313.pdfhttp://www.digra.org/dl/db/06278.06445.pdfhttp://www.digra.org/dl/db/06278.09267.pdf" "http://www.socresonline.org.uk/10/1/crawford.htmlhttp://www.digra.org/dl/db/06278.14520.pdfhttp://www.digra.org/dl/db/06278.58570.pdfhttp://education.waikato.ac.nz/journal/english_journal/uploads/files/2005v4n1art3.pdfhttp://www.digra.org/dl/db/06276.11341.pdf" "http://www.bmj.com/cgi/content/full/bmj\\%3B331/7509/122http://www.digra.org/dl/db/06276.02460.pdfhttp://www.digra.org/dl/db/06278.08106.pdfhttp://www.digra.org/dl/db/06276.08169.pdfhttp://www.digra.org/dl/http://ir.lib.sfu.ca/handle/1892/1600?mode=fullhttp://www.digra.org/dl/db/06276.23429.pdf" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.maxwell.lambda.ele.puc-rio.br/cgi-bin/db2www/PRG_0651.D2W/SHOW?CdLinPrg=pt\\&Cont=7861:pt" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/burkehttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/pearcehttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Chen-Park.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Burk.pdf" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Kimppa-Bissett.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Larrson-Dodig-Crnkovic.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Sicart.pdfhttp://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/manninen_kujanpaa/http://www.digra.org/dl/http://www.digra.org/dl/http://ssrn.com/abstract=870634http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.cs.ubc.ca/~sulingy/540.pdfhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/ermi_mayra" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.i-r-i-e.net/inhalt/004/Warner-Raiter.pdf" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/davis_steury_pagulayan/" "http://ssrn.com/abstract=618982http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamesconference.org/digra2005/viewabstract.php?id=144" "http://www.digra.org/dl/http://www.digra.org/dl/http://www.gamestudies.org/0501/gingoldhttp://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.digra.org/dl/http://www.cvm.uiuc.edu/courses/path671/video\\%20game\\%20intro.pdf" "http://doi.acm.org/10.1145/985921.98606810.1145/985921.986068http://www.sisostds.org/index.php?tg=articles\\&idx=More\\&article=219\\&topics=72http://ieeexplore.ieee.org/iel5/9429/29917/01366208.pdfhttp://www.gamespace.nl/content/ISAGA_Nieborg.PDFhttp://www.clim.nl/personal/docs/final_presentation.ppt" "http://www.ye-brothers.com/documents/HCIGAMEDESIGN.pdfhttp://www.jesperjuul.net/text/timetoplay/http://www.techcomm-online.org/http://www.cric.ac.uk/cric/staff/Jason_Rutter/papers/ME1.pdfhttp://www.gamespot.com/features/6106009/p-1.htmlhttp://www.hollywoodreporter.com/hr/search/article_display.jsp?vnu_content_id=1000484956" "http://www.cs.mdx.ac.uk/research/PhDArea/j_salisbury/john_salisburys_game_design_research_symposium_and_workshop_submission.rtfhttp://doi.acm.org/10.1145/1028014.1028069http://doi.acm.org/10.1145/1028014.1028083http://citeseer.ist.psu.edu/675898.htmlhttp://informatica.uv.es/~pmorillo/papers/pmorillo_cgi04.pdf" "http://www.gamestudies.org/0401/rau/http://www.system.tstc.edu/forecasting/reports/dgames.asphttp://visinfo.zib.de/EVlib/Show?EVL-2004-72http://springerlink.metapress.com/openurl.asp?genre=article\\&ampissn=0302-9743\\&ampvolume=3166\\&ampspage=598http://dialnet.unirioja.es/servlet/oaiart?codigo=1335389" "http://www.gamestudies.org/0401/kolo/http://www.gamestudies.org/0401/woods/http://portal.acm.org/citation.cfm?id=1028078\\&dl=acm\\&coll=\\&CFID=15151515\\&CFTOKEN=6184618http://www.gamestudies.org/0401/jarvinen/http://www.gamestudies.org/0401/whalen/http://www.gamestudies.org/0401/galloway/" "http://doi.acm.org/10.1145/1067343.1067372http://www.digra.org/dl/db/display_html?chid=http://www.digra.org/dl/db/05150.01496http://www.digra.org/dl/db/05150.21522.pdfhttp://www.jesperjuul.net/text/gameplayerworld/http://old.imv.au.dk/eng/academic/pdf_files/Sotamaa.pdf" "http://www.nytimes.com/2003/12/04/technology/circuits/04modd.html?ex=1385874000\\&en=1bff37ae5c48d16b\\&ei=5007\\&partner=USERLANDhttp://www.cric.ac.uk/cric/staff/Jason_Rutter/papers/LSA.pdfhttp://www.digra.org/dl/display_html?chid=http://www.digra.org/dl/db/05150.07598" "http://www.psychologicalscience.org/pdf/pspi/pspi43.pdfhttp://www.igda.org/columns/ivorytower/ivory_Apr03.phphttp://www.cs.berkeley.edu/~daf/games/webpage/AIpapers/Bauckhage2003-LHL.pdfhttp://www.desq.co.uk/doomed/pdf/Making_the_case.pdfhttp://www.digra.org/dl/display_html?chid=http://www.digra.org/dl/db/05163.32071" "http://www.gamespace.nl/content/NieborgVanderGraaf_TogetherWeBrand_2003.pdfhttp://mcgraw-hill.co.uk/html/0072228997.htmlhttp://www.gamestudies.org/0302/castronova/http://www.digra.org/dl/display_html?chid=http://www.digra.org/dl/db/05150.01496http://www.gamestudies.org/0301/fromme/" "http://www.gamestudies.org/0301/fromme/http://doi.acm.org/10.1145/958720.958735http://www.gamestudies.org/0301/pearce/http://www.gamestudies.org/0302/lee/http://firstmonday.org/issues/issue8_7/gros/index.htmlhttp://www.gamestudies.org/0301/manninen/http://doi.acm.org/10.1145/950566.950575" "http://www.gamestudies.org/0301/kucklich/http://www.gamestudies.org/0301/carr/http://www.gamestudies.org/0301/walther/http://www.gamestudies.org/0302/frasca/http://www.gamestudies.org/0302/vanlooy/http://doi.acm.org/10.1145/950566.950583http://www.scit.wlv.ac.uk/~cm1822/ijkurt.pdf" "http://doi.acm.org/10.1145/950566.950595http://www.gamestudies.org/0302/taylor/http://sag.sagepub.com/cgi/reprint/33/4/441http://www.oss.net/dynamaster/file_archive/041017/96a13ea1954b4fa57ad78d790077637a/JC Herz\\%20on\\%20Harnessing\\%20the\\%20Hive\\%20Via\\%20Online Games.pdf" "http://www.gamesconference.org/digra2003/2003/index.php?Games+conferencehttp://portal.acm.org/http://portal.acm.org/http://portal.acm.org/http://mcgraw-hill.co.uk/html/0072226609.htmlhttp://www.gamestudies.org/0202/wright/http://citeseer.ist.psu.edu/612839.html" "http://gn.www.media.mit.edu/groups/gn/pubs/gender.hci.just.pdfhttp://gamepipe.usc.edu/~zyda/pubs/ShillingGameon2002.pdfhttp://digiplay.info/files/cgdc.pdfhttp://www.gamestudies.org/0202/lugo/http://www.arts.ulster.ac.uk/media/kerr/source\\%20files/text/executive\\%20summary_final\\%20report2.pdf" "http://www.futureofchildren.org/usr_doc/tfoc_12-2f.pdfhttp://www.rcgd.isr.umich.edu/garp/articles/durkin02.pdfwww.teem.org.uk/publications/teem_gamesined_full.pdfhttp://www.mediajournal.org/modules/pub/view.php/mediajournal-5http://dir.salon.com/story/tech/feature/2002/04/16/modding/index.html" "http://www.gamestudies.org/0202/smith/http://www.gamestudies.org/0102/squire/http://www.gamestudies.org/0102/editorial.htmlhttp://www.gamestudies.org/0202/editorial/http://www.gamestudies.org/0102/jarvinen/http://www.gamestudies.org/0202/kennedy/http://www.gamestudies.org/0102/newman/" "http://www.gamestudies.org/0202/pearce/http://www.gamestudies.org/0102/mortensen/http://www.gamestudies.org/0102/pearce/http://ntsa.metapress.com/app/home/contribution.asp?referrer=parent\\&backto=issue,6,151journal,6,7linkingpublicationresults,1:113340,1http://www.math-info.univ-paris5.fr/~bouzy/publications/CG-AISurvey.pdf" "http://digiplay.info/flowhttp://www.druid.dk/uploads/tx_picturedb/wp01-10.pdfhttp://www.computervisualistik.de/~schirra/Work/Papers/P01/P01-1/http://www.childrennow.org/media/video-games/2001/fair-play-2001.pdfhttp://www.technologyreview.com/Infotech/12189/" "http://psych-server.iastate.edu/faculty/caa/abstracts/2000-2004/00senate.pdfhttp://stevenpoole.net/blog/trigger-happier/http://www.jesperjuul.net/text/wcgcacd.htmlhttp://www.gamasutra.com/features/20000301/carson_01.htmhttp://www.gdconference.com/archives/proceedings/2000/game_papers.html" "http://www.childrennow.org/media/video-games/video-games-girls.pdfhttp://www.utoledo.edu/psychology/funktestimony.htmlhttp://www.mediaandthefamily.org/press/senateviolence-full.shtmlhttp://www.senate.gov/~commerce/hearings/0504hue.pdfhttp://www.senate.gov/~commerce/hearings/0504jen.pdf" "http://commerce.senate.gov/hearings/0321pro.pdfhttp://www.senate.gov/~commerce/hearings/0321gol.pdfhttp://www.geoffreyrockwell.com/publications/Gore.Galore.pdfhttp://www.ludology.org/articles/ludology.htmhttp://www.blackwell-synergy.com/doi/pdf/10.1111/j.1528-1157.1999.tb00903.x" "http://www.media-awareness.ca/english/resources/research_documents/studies/video_games/video_game_culture.cfmhttp://www.hf.uib.no/hi/espen/papers/spacehttp://www.jesperjuul.net/thesis/http://lingo.uib.no/dac98/papers/frasca.htmlhttp://lingo.uib.no/dac98/papers/kirksaether.html" "www.ed.ac.uk/rcss/SLIM/SLIMhome.htmlhttp://www.wired.com/wired/archive/5.01/esschilling.htmlhttp://twinpinefarm.com/pdfs/games.pdfhttp://portal.acm.org/ft_gateway.cfm?id=232852\\&type=pdf\\&coll=GUIDE\\&dl=ACM\\&CFID=15151515\\&CFTOKEN=6184618http://www.geekcomix.com/vgh/genracinequal.shtml" "http://portal.acm.org/citation.cfm?id=232025\\&jmp=cit\\&coll=GUIDE\\&dl=GUIDE\\&CFID=48113042\\&CFTOKEN=94606531$\\#$http://links.jstor.org/sici?sici=0024-094X(1995)28\\%3A5\\%3C403\\%3AMCGIIA\\%3E2.0.CO\\%3B2-3www.wired.com/wired/archive/2.05/tetris_pr.htmlhttp://web.archive.org/web/20000815110856/http://www.media-awareness.ca/eng/issues/violence/resource/reports/gamedoc.htm" "http://www.ullrich-dittler.de/Inhaltbuch1.pdfhttp://www.blackwell-synergy.com/doi/pdf/10.1111/j.0022-3840.1983.1702_61.x?cookieSet=1http://www.pubmedcentral.nih.gov/picrender.fcgi?artid=1498660\\&blobtype=pdf"); static const char *backslashLastAuthors("Doe"); static const char *backslashFilesUrlsDois("http://www.example.com/file\\_aaa1.bibhttp://www.example.com/file_aaa2.bib/tmp/file\\_bbb1.bib/tmp/file_bbb2.bib"); static const char *bug379443attachment105313IOPEXPORTBIBLastAuthors("Yuldashev"); static const char *bug379443attachment105313IOPEXPORTBIBFilesUrlsDois("http://stacks.iop.org/1748-0221/3/i=08/a=S08004"); static const char *bug21870politoLastAuthors("AlbrechtAllhoffAntosArducArendtBandhauerBassnettBeller-ReuseBergsdorfBergsdorfBergsdorfBertelsmann-StiftungBiedenkopfBiereBlommaertBlommaertBlommaertBockBockBockBockBockBockBockBockBockBohlenBohlenderBoventerBramstedtBresserBrosiusBr\u00e4uerBubenhoferBurgerBurger" "BurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardt" "BurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBurkhardtBuschBusseBusseBusseBusseBusseBusseBusseBusseBusseBusseBusseBusseBusse" "BusseB\u00f6ckelmannB\u00f6keB\u00f6keB\u00f6keB\u00f6keCariusCoenenCzerwickDieckmannDieckmannDieckmannDieckmannDieckmannDiekmannshenkeDiekmannshenkeDiekmannshenkeDiekmannshenkeDiekmannshenkeDongesDumontDuttD\u00f6rnerD\u00f6rnerD\u00fcrscheidD\u00fcrscheidEggsEichingerElsner-PetriElterEnglebretson" "EpplerEpplerEpplerEpplerEromsEromsFaircloughFaircloughFelderFischerFixFixForsterForsterForsterForsterFritzscheFrohningFuhseGanselGaugerGaugerGei\u00dflerGirnthGirnthGirnthGirnthGirnthGoodGreiffenhagenGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenig" "GrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrewenigGrieswelleGronkeGro\u00dfGrunerGrunerHausendorfHeringerHeringerHeringerHermannsHermannsHermannsHermannsHobergHoffmannHoinleHollyHollyHollyHollyHollyHollyHollyHollyIcklerJaffeJanuschek" "JungJ\u00e4ckelJ\u00e4ckelJ\u00e4gerJ\u00e4gerJ\u00e4gerJ\u00e4gerKarglKellerKepplingerKerstingKilianKilianKilianKilianKilianKilianKilianKilianKilianKilianKilianKilianKilianKilianKindelmannKindtKindtKindtKindtKindtKindtKindtKindtKindtKirstKleinKleinKleinKleinKleinKleinKleinKleinKlein" "KleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKlein" "KleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinKleinheyerKlemmKlemmKlingemannKnapeKnapeKopperschmidtKopperschmidtKopperschmidtKopperschmidtKrebsKressKrzy\u017canowskiKuhlmannKuhnK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mper" "K\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00e4mperK\u00fchnLangenbucherLangerLatniakLeyendeckerLiebertLiedtkeLinkeLucasLuginb\u00fchlL\u00e4zerMei\u00dfnerMei\u00dfnerMetzeltinMetzeltinMeyerMeyerMeyerMeyerMusahlM\u00fcnklerNiehrNiehrNiehrNiehrNiehr" "NiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNiehrNosOsterkampPanaglPapePapePapePappertPappertPappertPappertPappertPappertPappertPappertPappertPappertPappertPappertPatzeltPaulPetter-ZimmerPlatzPlettPollmannPorschP\u00f6rksenP\u00f6rksen" "P\u00f6rksenP\u00fcschelP\u00fcschelP\u00fcschelP\u00fcschelRaschkeReiherReissen-KoschReissen-KoschRickenbacherRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothRothenh\u00f6ferRuchtRybarczykR\u00fcttenSagerSagerSarcinelliSarcinelliSarcinelliSarcinelli" "SarcinelliSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSauerSaxerSchalkScharlothScharlothScharlothScharlothSchieweSchildSchildenSchlosser" "SchlosserSchmitt-BeckSchneiderSchoenSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchr\u00f6terSchultzeSchulzSchumannSchwerSch\u00e4ferSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffner" "Sch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ffnerSch\u00e4ubleSch\u00fctzScott" "SondereggerSpiegelSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpie\u00dfSpillnerSpitzm\u00fcllerSpitzm\u00fcllerSpitzm\u00fcllerStammenSteyerSteyerStickelStickelStra\u00dfnerSt\u00f6tzelSt\u00fcrmerSuplieTeubertTeubertTiittula" "TillmannTodenhagenTownsonUedingUedingUedingUedingUedingUedingVerschuerenVogtVoigtVolmertWarnkeWarnkeWarnkeWaschkuhnWeber-Sch\u00e4ferWeidacherWeidacherWeidacherWeidacherWeidacherWeidacherWei\u00dfenfelsWelanWellerWendenWengelerWengelerWengelerWengelerWengelerWengeler" "WengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengelerWengeler" "WengelerWengelerWiegandWienenWienenWimmerWinterhoff-SpurkWittk\u00e4mperWittk\u00e4mperWodakWodakWollingWongZiemZiemZiemZorbachvon Alemannvon Polenz"); static const char *bug21870politoFilesUrlsDois("http://othes.univie.ac.at/15622/1/2011-07-27_0609377.pdfhttp://www.sprichst-du-politik.de/downloads/sprichst-du-politik_Studie.pdf" "http://www.jostrans.org/issue17/issue17_toc.phphttp://www.bpb.de/politik/grundfragen/sprache-und-politik/42720/schlagwoerterhttp://www.gfl-journal.de/Issue_1_2011.phphttp://www.owid.de/wb/disk45/einleitung.htmlhttp://www.nhh.no/Default.aspx?ID=2242http://www.gfl-journal.de/22008/schroeter.pdf" "http://www.gespraechsforschung-ozs.dehttp://www.soz.uni-frankfurt.de/K.G/B5_2005_Coenen.pdfhttp://www.diss-duisburg.de/internetbibliothek/buecher/volltexte.htm"); static const char *cloudduplicatesLastAuthors("AhmedAhmedAhmedHuylebroeckHuylebroeckHuylebroeckKozirisKozirisKozirisKozirisLancellottiLancellottiLilienLilienReddyReddyReddyZhangZhangZhangZhang"); static const char *cloudduplicatesFilesUrlsDois("http://dl.acm.org/citation.cfm?id=1967425http://securlab.ing.unimo.it/papers/cloudcp2011.pdfhttp://doi.acm.org/10.1145/1967422.1967425" "10.1145/1967422.1967425http://dblp.uni-trier.de/db/conf/middleware/comp2009.html#CerbelaudGH09http://dl.acm.org/citation.cfm?id=1657011http://dl.acm.org/citation.cfm?id=1656980.1657011http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=562339010.1109/SRDS.2010.28" "http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=5623390http://www.cs.purdue.edu/homes/bb/SRDS.pdfhttp://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=612278210.1109/ISIAS.2011.6122782http://ieeexplore.ieee.org/xpls/abs_all.jsp?arnumber=6122782http://faculty.uoit.ca/sartipi/courses/SC/w13/5.Resources/3.Cloud/OpenID%20Authentication%20As%20A%20Service%20in%20OpenStack.pdf" "http://dblp.uni-trier.de/db/conf/IEEEias/IEEEias2011.html#KhanYA11http://dl.acm.org/citation.cfm?id=2063973http://www.cslab.ece.ntua.gr/~ikons/on_the_elasticity_of_nosql_databases_over_cloud_management_platforms.pdfhttp://doi.acm.org/10.1145/2063576.2063973" "10.1145/2063576.2063973http://www.cslab.ece.ntua.gr/~dtsouma/index_files/tira_cikm_ext.pdfhttp://dblp.uni-trier.de/db/conf/cikm/cikm2011.html#KonstantinouABTK11http://dblp.uni-trier.de/db/journals/corr/corr1208.html#abs-1208-4166http://dblp.uni-trier.de/db/journals/pvldb/pvldb5.html#FloratouTDPZ12" "http://dl.acm.org/citation.cfm?id=2367511http://arxiv.org/pdf/1208.4166http://dl.acm.org/citation.cfm?id=2367502.2367511http://dblp.uni-trier.de/db/journals/corr/corr1207.html#abs-1207-0780http://adsabs.harvard.edu/abs/2012arXiv1207.0780Thttp://arxiv.org/abs/1207.0780" "http://arxiv.org/pdf/1207.0780"); ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/kbibtexfilestest.cpp���������������������������������������������������������0000664�0000000�0000000�00000047643�13313000262�0021001�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * Copyright (C) 2014 by Pino Toscano <pino@kde.org> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include <QtTest/QtTest> #include <QCryptographicHash> #include <QTemporaryFile> #include <QDebug> #ifdef WRITE_RAWDATAFILE #include <QFile> #endif // WRITE_RAWDATAFILE #include "entry.h" #include "fileimporterbibtex.h" #include "fileexporterbibtex.h" #include "file.h" /// Provides definition of TESTSET_DIRECTORY #include "test-config.h" #include "kbibtexfilestest-rawdata.h" typedef struct { QString filename; int numElements, numEntries; QString lastEntryId, lastEntryLastAuthorLastName; QByteArray hashAuthors, hashFilesUrlsDoi; } TestFile; Q_DECLARE_METATYPE(TestFile) class KBibTeXFilesTest : public QObject { Q_OBJECT private slots: void initTestCase(); void testFiles_data(); void testFiles(); private: /** * Load a bibliography file and checks a number of known properties * such as number of elements/entries or the hash sum of authors' last names. * It is the caller's responsibility to pass a valid argument to @p outFile * and later delete the returned File object. * * @param absoluteFilename biblography file to laod * @param currentTestFile data structure holding the baseline values * @param outFile returns pointer to the opened file */ void loadFile(const QString &absoluteFilename, const TestFile &currentTestFile, File **outFile); /** * Save a bibliography in a temporary file. * It is the caller's responsibility to pass a valid argument to @p outFile, * which will hold the temporary file's name upon successful return. * * @param file bibliography data structure to be saved * @param currentTestFile baseline data structure used to determine temporary file's name * @param outFile returns the temporary file's name */ void saveFile(File *file, const TestFile &currentTestFile, QString *outFile); /** * Create and fill a TestFile data structure based on the provided values. * * @param filename Bibliography file's filename * @param numElements Number of elements to expect in bibliography * @param numEntries Number of entries to expect in bibliography * @param lastEntryId Identifier of last entry in bibliography * @param lastEntryLastAuthorLastName Last author's last name in bibliography * @param hashAuthors The hash sum over all authors/editors in bibliography * @param hashFilesUrlsDoi The hash sum over all URLs and DOIs in bibliography * @return An initialized TestFile data structure */ TestFile createTestFile(const QString &filename, int numElements, int numEntries, const QString &lastEntryId, const QString &lastEntryLastAuthorLastName, const QByteArray &hashAuthors, const QByteArray &hashFilesUrlsDoi); #ifdef WRITE_RAWDATAFILE static QString rewriteNonASCII(const QString &input); #endif // WRITE_RAWDATAFILE }; void KBibTeXFilesTest::initTestCase() { qRegisterMetaType<TestFile>("TestFile"); } void KBibTeXFilesTest::testFiles_data() { QTest::addColumn<TestFile>("testFile"); QTest::newRow("bug19489.bib") << createTestFile(QStringLiteral("bib/bug19489.bib"), 1, 1, QStringLiteral("bart:04:1242"), QStringLiteral("Ralph"), QCryptographicHash::hash(bug19489LastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(bug19489FilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("names-with-braces.bib") << createTestFile(QStringLiteral("bib/names-with-braces.bib"), 1, 1, QStringLiteral("names1"), QStringLiteral("{{{{{LastName3A LastName3B}}}}}"), QCryptographicHash::hash(nameswithbracesLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(nameswithbracesFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("duplicates.bib") << createTestFile(QStringLiteral("bib/duplicates.bib"), 23, 23, QStringLiteral("books/aw/Sedgewick88"), QStringLiteral("Sedgewick"), QCryptographicHash::hash(duplicatesLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(duplicatesFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("minix.bib") << createTestFile(QStringLiteral("bib/minix.bib"), 163, 123, QStringLiteral("Jesshope:2006:ACS"), QStringLiteral("Egan"), QCryptographicHash::hash(minixLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(minixFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("bug19484-refs.bib") << createTestFile(QStringLiteral("bib/bug19484-refs.bib"), 641, 641, QStringLiteral("Bagnara-etal-2002"), QStringLiteral("Hill"), QCryptographicHash::hash(bug19484refsLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(bug19484refsFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("bug19362-file15701-database.bib") << createTestFile(QStringLiteral("bib/bug19362-file15701-database.bib"), 911, 911, QStringLiteral("New1"), QStringLiteral("Sunder"), QCryptographicHash::hash(bug19362file15701databaseLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(bug19362file15701databaseFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("digiplay.bib") << createTestFile(QStringLiteral("bib/digiplay.bib"), 3074, 3074, QStringLiteral("1180"), QStringLiteral("Huizinga"), QCryptographicHash::hash(digiplayLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(digiplayFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("backslash.bib") << createTestFile(QStringLiteral("bib/backslash.bib"), 1, 1, QStringLiteral("backslash-test"), QStringLiteral("Doe"), QCryptographicHash::hash(backslashLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(backslashFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("bug379443-attachment105313-IOPEXPORT_BIB.bib") << createTestFile(QStringLiteral("bib/bug379443-attachment105313-IOPEXPORT_BIB.bib"), 1, 1, QStringLiteral("1748-0221-3-08-S08004"), QStringLiteral("Yuldashev"), QCryptographicHash::hash(bug379443attachment105313IOPEXPORTBIBLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(bug379443attachment105313IOPEXPORTBIBFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("bug21870-polito.bib") << createTestFile(QStringLiteral("bib/bug21870-polito.bib"), 736, 721, QStringLiteral("BusseNiehrWengeler:Brisante05"), QStringLiteral("Wengeler"), QCryptographicHash::hash(bug21870politoLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(bug21870politoFilesUrlsDois, QCryptographicHash::Md5)); QTest::newRow("cloud-duplicates.bib") << createTestFile(QStringLiteral("bib/cloud-duplicates.bib"), 21, 21, QStringLiteral("rao2012survey"), QStringLiteral("Reddy"), QCryptographicHash::hash(cloudduplicatesLastAuthors, QCryptographicHash::Md4), QCryptographicHash::hash(cloudduplicatesFilesUrlsDois, QCryptographicHash::Md5)); } void KBibTeXFilesTest::testFiles() { QFETCH(TestFile, testFile); const QString absoluteFilename = QLatin1String(TESTSET_DIRECTORY "/") + testFile.filename; QVERIFY(QFileInfo::exists(absoluteFilename)); /// First load the file ... File *file = nullptr; loadFile(absoluteFilename, testFile, &file); QVERIFY(file); #ifndef WRITE_RAWDATAFILE /// ... then save it again to file ... QString tempFileName; saveFile(file, testFile, &tempFileName); QVERIFY(!tempFileName.isEmpty()); /// ... and finally try to load again the newly saved version File *file2 = nullptr; loadFile(tempFileName, testFile, &file2); QVERIFY(file2); QFile::remove(tempFileName); #endif // WRITE_RAWDATAFILE delete file; #ifndef WRITE_RAWDATAFILE delete file2; #endif // WRITE_RAWDATAFILE } void KBibTeXFilesTest::loadFile(const QString &absoluteFilename, const TestFile &currentTestFile, File **outFile) { *outFile = nullptr; FileImporterBibTeX *importer = nullptr; if (currentTestFile.filename.endsWith(QStringLiteral(".bib"))) { importer = new FileImporterBibTeX(this); importer->setCommentHandling(FileImporterBibTeX::KeepComments); } else { QFAIL(qPrintable(QString::fromLatin1("Don't know format of '%1'").arg(currentTestFile.filename))); } QFile file(absoluteFilename); File *bibTeXFile = nullptr; QVERIFY(file.open(QFile::ReadOnly)); bibTeXFile = importer->load(&file); file.close(); QVERIFY(bibTeXFile); QVERIFY(!bibTeXFile->isEmpty()); QStringList lastAuthorsList, filesUrlsDoiList; lastAuthorsList.reserve(bibTeXFile->size()); int countElements = bibTeXFile->count(), countEntries = 0; QString lastEntryId, lastEntryLastAuthorLastName; for (const auto &element : const_cast<const File &>(*bibTeXFile)) { QSharedPointer<Entry> entry = element.dynamicCast<Entry>(); if (!entry.isNull()) { ++countEntries; lastEntryId = entry->id(); Value authors = entry->value(Entry::ftAuthor); if (!authors.isEmpty()) { ValueItem *vi = authors.last().data(); Person *p = dynamic_cast<Person *>(vi); if (p != nullptr) { lastEntryLastAuthorLastName = p->lastName(); } else lastEntryLastAuthorLastName.clear(); } else { Value editors = entry->value(Entry::ftEditor); if (!editors.isEmpty()) { ValueItem *vi = editors.last().data(); Person *p = dynamic_cast<Person *>(vi); if (p != nullptr) { lastEntryLastAuthorLastName = p->lastName(); } else lastEntryLastAuthorLastName.clear(); } else lastEntryLastAuthorLastName.clear(); } if (!lastEntryLastAuthorLastName.isEmpty()) { if (lastEntryLastAuthorLastName[0] == QLatin1Char('{') && lastEntryLastAuthorLastName[lastEntryLastAuthorLastName.length() - 1] == QLatin1Char('}')) lastEntryLastAuthorLastName = lastEntryLastAuthorLastName.mid(1, lastEntryLastAuthorLastName.length() - 2); lastAuthorsList << lastEntryLastAuthorLastName; } for (int index = 1; index < 100; ++index) { const QString field = index == 1 ? Entry::ftUrl : QString(QStringLiteral("%1%2")).arg(Entry::ftUrl).arg(index); const Value v = entry->value(field); for (const QSharedPointer<ValueItem> &vi : v) { filesUrlsDoiList << PlainTextValue::text(vi); } if (v.isEmpty() && index > 10) break; } for (int index = 1; index < 100; ++index) { const QString field = index == 1 ? Entry::ftDOI : QString(QStringLiteral("%1%2")).arg(Entry::ftDOI).arg(index); const Value v = entry->value(field); for (const QSharedPointer<ValueItem> &vi : v) { filesUrlsDoiList << PlainTextValue::text(vi); } if (v.isEmpty() && index > 10) break; } for (int index = 1; index < 100; ++index) { const QString field = index == 1 ? Entry::ftLocalFile : QString(QStringLiteral("%1%2")).arg(Entry::ftLocalFile).arg(index); const Value v = entry->value(field); for (const QSharedPointer<ValueItem> &vi : v) { filesUrlsDoiList << PlainTextValue::text(vi); } if (v.isEmpty() && index > 10) break; } } } QCOMPARE(countElements, currentTestFile.numElements); QCOMPARE(countEntries, currentTestFile.numEntries); QCOMPARE(lastEntryId, currentTestFile.lastEntryId); QCOMPARE(lastEntryLastAuthorLastName, currentTestFile.lastEntryLastAuthorLastName); #ifdef WRITE_RAWDATAFILE static const QRegularExpression filenameStemRegExp(QStringLiteral("/?([^/]+)[.]bib$")); const QString filenameStem = filenameStemRegExp.match(currentTestFile.filename).captured(1).remove(QChar('-')).remove(QChar('_')); QFile rawDataFile("kbibtexfilestest-rawdata.h"); if (!rawDataFile.exists() && rawDataFile.open(QFile::Append)) { QTextStream ts(&rawDataFile); ts << QStringLiteral("/********************************************************************************") << endl << endl; ts << QStringLiteral("Copyright ") << QDate::currentDate().year() << QStringLiteral(" Thomas Fischer <fischer@unix-ag.uni-kl.de> and others") << endl << endl; ts << QStringLiteral("Redistribution and use in source and binary forms, with or without") << endl << QStringLiteral("modification, are permitted provided that the following conditions") << endl << QStringLiteral("are met:") << endl << endl; ts << QStringLiteral("1. Redistributions of source code must retain the above copyright") << endl << QStringLiteral(" notice, this list of conditions and the following disclaimer.") << endl; ts << QStringLiteral("2. Redistributions in binary form must reproduce the above copyright") << endl << QStringLiteral(" notice, this list of conditions and the following disclaimer in the") << endl << QStringLiteral(" documentation and/or other materials provided with the distribution.") << endl << endl; ts << QStringLiteral("THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR") << endl << QStringLiteral("IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES") << endl << QStringLiteral("OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.") << endl << QStringLiteral("IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,") << endl << QStringLiteral("INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT") << endl << QStringLiteral("NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,") << endl << QStringLiteral("DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY") << endl << QStringLiteral("THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT") << endl << QStringLiteral("(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF") << endl << QStringLiteral("THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.") << endl << endl; ts << QStringLiteral("********************************************************************************/") << endl << endl; rawDataFile.close(); } static const size_t max_len = 256; size_t len; #endif // WRITE_RAWDATAFILE QCryptographicHash hashAuthors(QCryptographicHash::Md4); lastAuthorsList.sort(); #ifdef WRITE_RAWDATAFILE QString sourceCode = QStringLiteral("static const char *") + filenameStem + QStringLiteral("LastAuthors(\""); len = 0; #endif // WRITE_RAWDATAFILE for (const QString &lastAuthor : const_cast<const QStringList &>(lastAuthorsList)) { const QByteArray lastAuthorUtf8 = lastAuthor.toUtf8(); #ifdef WRITE_RAWDATAFILE sourceCode += rewriteNonASCII(QString(lastAuthor)); len += lastAuthorUtf8.length(); if (len > max_len) { sourceCode += QStringLiteral("\"\n \""); len = 0; } #endif // WRITE_RAWDATAFILE hashAuthors.addData(lastAuthorUtf8); } #ifdef WRITE_RAWDATAFILE sourceCode += QStringLiteral("\");\n"); if (rawDataFile.open(QFile::Append)) { QTextStream ts(&rawDataFile); ts << sourceCode; rawDataFile.close(); sourceCode.clear(); } #else // WRITE_RAWDATAFILE QCOMPARE(hashAuthors.result(), currentTestFile.hashAuthors); #endif // WRITE_RAWDATAFILE QCryptographicHash hashFilesUrlsDoi(QCryptographicHash::Md5); #ifdef WRITE_RAWDATAFILE sourceCode = QStringLiteral("static const char *") + filenameStem + QStringLiteral("FilesUrlsDois(\""); #endif // WRITE_RAWDATAFILE for (const QString &filesUrlsDoi : const_cast<const QStringList &>(filesUrlsDoiList)) { const QByteArray filesUrlsDoiUtf8 = filesUrlsDoi.toUtf8(); #ifdef WRITE_RAWDATAFILE sourceCode += rewriteNonASCII(QString(filesUrlsDoi)); len += filesUrlsDoiUtf8.length(); if (len > max_len) { sourceCode += QStringLiteral("\"\n \""); len = 0; } #endif // WRITE_RAWDATAFILE hashFilesUrlsDoi.addData(filesUrlsDoiUtf8); } #ifdef WRITE_RAWDATAFILE sourceCode += QStringLiteral("\");\n"); if (rawDataFile.open(QFile::Append)) { QTextStream ts(&rawDataFile); ts << sourceCode; rawDataFile.close(); sourceCode.clear(); } #else // WRITE_RAWDATAFILE QCOMPARE(hashFilesUrlsDoi.result(), currentTestFile.hashFilesUrlsDoi); #endif // WRITE_RAWDATAFILE delete importer; *outFile = bibTeXFile; } void KBibTeXFilesTest::saveFile(File *file, const TestFile &currentTestFile, QString *outFile) { *outFile = QString(); FileExporter *exporter = nullptr; if (currentTestFile.filename.endsWith(QStringLiteral(".bib"))) { FileExporterBibTeX *bibTeXExporter = new FileExporterBibTeX(this); bibTeXExporter->setEncoding(QStringLiteral("utf-8")); exporter = bibTeXExporter; } else { QFAIL(qPrintable(QString::fromLatin1("Don't know format of '%1'").arg(currentTestFile.filename))); } QTemporaryFile tempFile(QDir::tempPath() + "/XXXXXX." + QFileInfo(currentTestFile.filename).fileName()); /// It is the function caller's responsibility to remove the temporary file later tempFile.setAutoRemove(false); QVERIFY(tempFile.open()); QVERIFY(exporter->save(&tempFile, file)); *outFile = tempFile.fileName(); } TestFile KBibTeXFilesTest::createTestFile(const QString &filename, int numElements, int numEntries, const QString &lastEntryId, const QString &lastEntryLastAuthorLastName, const QByteArray &hashAuthors, const QByteArray &hashFilesUrlsDoi) { TestFile r; r.filename = filename; r.numElements = numElements; r.numEntries = numEntries; r.lastEntryId = lastEntryId; r.lastEntryLastAuthorLastName = lastEntryLastAuthorLastName; r.hashAuthors = hashAuthors; r.hashFilesUrlsDoi = hashFilesUrlsDoi; return r; } #ifdef WRITE_RAWDATAFILE QString KBibTeXFilesTest::rewriteNonASCII(const QString &input) { QString output; for (const QChar &c : input) { const auto &unicode = c.unicode(); if (unicode < 128) { if (c == QLatin1Char('\n')) output.append(QStringLiteral("\\n")); else if (c == QLatin1Char('\r')) output.append(QStringLiteral("\\r")); else if (c == QLatin1Char('\t')) output.append(QStringLiteral("\\t")); else { if (c == QLatin1Char('\\') || c == QLatin1Char('"')) output.append(QLatin1Char('\\')); output.append(c); } } else output.append(QString(QStringLiteral("\\u%1")).arg(unicode, 4, 16, QLatin1Char('0'))); } return output; } #endif // WRITE_RAWDATAFILE QTEST_MAIN(KBibTeXFilesTest) #include "kbibtexfilestest.moc" ���������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/kbibtextest.cpp��������������������������������������������������������������0000664�0000000�0000000�00000023273�13313000262�0017747�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2014 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "kbibtextest.h" #include <QProgressBar> #include <QTimer> #include <QLayout> #include <QMenu> #include <QIcon> #include <QDebug> #include <QPushButton> #include <QAction> #include <QListWidget> #include <QApplication> #include <KAboutData> #include <KIconEffect> #include <onlinesearchacmportal.h> #include <onlinesearcharxiv.h> #include <onlinesearchbibsonomy.h> #include <onlinesearchgooglescholar.h> #include <onlinesearchcernds.h> #include <onlinesearchieeexplore.h> #include <onlinesearchingentaconnect.h> #include <onlinesearchinspirehep.h> #include <onlinesearchideasrepec.h> #include <onlinesearchisbndb.h> #include <onlinesearchjstor.h> #include <onlinesearchmathscinet.h> #include <onlinesearchmrlookup.h> #include <onlinesearchpubmed.h> #include <onlinesearchsciencedirect.h> #include <onlinesearchspringerlink.h> #include <onlinesearchsoanasaads.h> #include <onlinesearchbiorxiv.h> int filenameCounter = 0; class TestWidget : public QWidget { Q_OBJECT private: KBibTeXTest *m_parent; QPushButton *buttonStartTest; QProgressBar *progressBar; QAction *actionStartOnlineSearchTests; public: QListWidget *messageList; TestWidget(KBibTeXTest *parent) : QWidget(parent), m_parent(parent) { QGridLayout *layout = new QGridLayout(this); buttonStartTest = new QPushButton(QIcon::fromTheme(QStringLiteral("application-x-executable")), QStringLiteral("Start Tests"), this); layout->addWidget(buttonStartTest, 0, 0, 1, 1); progressBar = new QProgressBar(this); layout->addWidget(progressBar, 0, 1, 1, 3); progressBar->setVisible(false); messageList = new QListWidget(this); layout->addWidget(messageList, 1, 0, 4, 4); setupMenus(); } void setProgress(int pos, int total) { if (pos < 0 || total < 0) { progressBar->setVisible(false); progressBar->setMaximum(1); progressBar->setValue(0); } else { progressBar->setVisible(true); progressBar->setMaximum(total); progressBar->setValue(pos); } } void setupMenus() { QMenu *menu = new QMenu(buttonStartTest); buttonStartTest->setMenu(menu); /// ** Online Search ** actionStartOnlineSearchTests = new QAction(QStringLiteral("Online Search"), m_parent); connect(actionStartOnlineSearchTests, &QAction::triggered, m_parent, &KBibTeXTest::startOnlineSearchTests); menu->addAction(actionStartOnlineSearchTests); } void setBusy(bool isBusy) { buttonStartTest->setEnabled(!isBusy); actionStartOnlineSearchTests->setEnabled(!isBusy); } }; KBibTeXTest::KBibTeXTest(QWidget *parent) : QDialog(parent), m_running(false), m_isBusy(false) { static const QIcon iconINFO = QIcon::fromTheme(QStringLiteral("dialog-information")); m_onlineSearchList << new OnlineSearchAcmPortal(this); m_onlineSearchList << new OnlineSearchArXiv(this); m_onlineSearchList << new OnlineSearchBibsonomy(this); m_onlineSearchList << new OnlineSearchCERNDS(this); m_onlineSearchList << new OnlineSearchGoogleScholar(this); m_onlineSearchList << new OnlineSearchIDEASRePEc(this); m_onlineSearchList << new OnlineSearchIEEEXplore(this); m_onlineSearchList << new OnlineSearchIngentaConnect(this); m_onlineSearchList << new OnlineSearchInspireHep(this); /// m_onlineSearchList << new OnlineSearchIsbnDB(this); /// disabled as provider switched to a paid model on 2017-12-26 m_onlineSearchList << new OnlineSearchJStor(this); m_onlineSearchList << new OnlineSearchMathSciNet(this); m_onlineSearchList << new OnlineSearchMRLookup(this); m_onlineSearchList << new OnlineSearchPubMed(this); m_onlineSearchList << new OnlineSearchScienceDirect(this); m_onlineSearchList << new OnlineSearchSOANASAADS(this); m_onlineSearchList << new OnlineSearchSpringerLink(this); m_onlineSearchList << new OnlineSearchBioRxiv(this); m_currentOnlineSearch = m_onlineSearchList.constBegin(); setWindowTitle(QStringLiteral("KBibTeX Test Suite")); m_testWidget = new TestWidget(this); const int fontSize = m_testWidget->fontMetrics().width(QLatin1Char('a')); m_testWidget->setMinimumSize(fontSize * 96, fontSize * 48); QBoxLayout *boxLayout = new QVBoxLayout(this); boxLayout->addWidget(m_testWidget); connect(this, &KBibTeXTest::rejected, this, &KBibTeXTest::aboutToQuit); addMessage(QString(QStringLiteral("Compiled for %1")).arg(KAboutData::applicationData().version()), iconINFO); } void KBibTeXTest::addMessage(const QString &message, const QIcon &icon) { QListWidgetItem *item = icon.isNull() ? new QListWidgetItem(message) : new QListWidgetItem(icon, message); item->setToolTip(item->text()); m_testWidget->messageList->addItem(item); m_testWidget->messageList->scrollToBottom(); qApp->processEvents(); } void KBibTeXTest::setBusy(bool isBusy) { m_testWidget->setBusy(isBusy); if (isBusy && !m_isBusy) { /// changing to busy state QApplication::setOverrideCursor(QCursor(Qt::WaitCursor)); } else if (!isBusy && m_isBusy) { /// changing to idle state QApplication::restoreOverrideCursor(); } m_isBusy = isBusy; } void KBibTeXTest::aboutToQuit() { m_running = false; QTimer::singleShot(500, qApp, &QApplication::quit); } void KBibTeXTest::startOnlineSearchTests() { m_running = true; setBusy(true); m_testWidget->messageList->clear(); qApp->processEvents(); processNextSearch(); } void KBibTeXTest::onlineSearchStoppedSearch(int searchResult) { static const QIcon iconOK = QIcon::fromTheme(QStringLiteral("dialog-ok-apply")); static const QIcon iconERROR = QIcon::fromTheme(QStringLiteral("dialog-cancel")); static const QIcon iconAUTH = QIcon::fromTheme(QStringLiteral("dialog-cancel")); // FIXME "dialog-cancel" should be overlay on "dialog-password" static const QIcon iconNETWORK = QIcon::fromTheme(QStringLiteral("dialog-cancel")); // FIXME "dialog-cancel" should be overlay on "network-wired" if (searchResult == OnlineSearchAbstract::resultNoError) { if (m_currentOnlineSearchNumFoundEntries == 0) addMessage(QString(QStringLiteral("Got no error message searching '%1', but found NO entries")).arg((*m_currentOnlineSearch)->label()), iconERROR); else addMessage(QString(QStringLiteral("No error searching '%1', found %2 entries")).arg((*m_currentOnlineSearch)->label()).arg(m_currentOnlineSearchNumFoundEntries), iconOK); } else if (searchResult == OnlineSearchAbstract::resultAuthorizationRequired) { addMessage(QString(QStringLiteral("Authorization required for '%1'")).arg((*m_currentOnlineSearch)->label()), iconAUTH); } else if (searchResult == OnlineSearchAbstract::resultNetworkError) { addMessage(QString(QStringLiteral("Network error for '%1'")).arg((*m_currentOnlineSearch)->label()), iconNETWORK); } else { addMessage(QString(QStringLiteral("Error searching '%1'")).arg((*m_currentOnlineSearch)->label()), iconERROR); } m_currentOnlineSearch++; progress(-1, -1); processNextSearch(); } void KBibTeXTest::onlineSearchFoundEntry() { ++m_currentOnlineSearchNumFoundEntries; } void KBibTeXTest::progress(int pos, int total) { m_testWidget->setProgress(pos, total); } void KBibTeXTest::resetProgress() { m_testWidget->setProgress(-1, -1); } void KBibTeXTest::processNextSearch() { static const QIcon iconINFO = QIcon::fromTheme(QStringLiteral("dialog-information")); if (m_running && m_currentOnlineSearch != m_onlineSearchList.constEnd()) { setBusy(true); m_currentOnlineSearchNumFoundEntries = 0; addMessage(QString(QStringLiteral("Searching '%1'")).arg((*m_currentOnlineSearch)->label()), iconINFO); QMap<QString, QString> query; query.insert(OnlineSearchAbstract::queryKeyAuthor, QStringLiteral("smith")); connect(*m_currentOnlineSearch, &OnlineSearchAbstract::stoppedSearch, this, &KBibTeXTest::onlineSearchStoppedSearch); connect(*m_currentOnlineSearch, &OnlineSearchAbstract::foundEntry, this, &KBibTeXTest::onlineSearchFoundEntry); connect(*m_currentOnlineSearch, &OnlineSearchAbstract::progress, this, &KBibTeXTest::progress); (*m_currentOnlineSearch)->startSearch(query, 3); } else { addMessage(QStringLiteral("Done testing"), iconINFO); setBusy(false); m_running = false; QTimer::singleShot(500, this, &KBibTeXTest::resetProgress); } } #include "kbibtextest.moc" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/kbibtextest.h����������������������������������������������������������������0000664�0000000�0000000�00000004122�13313000262�0017404�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2017 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEXTEST_H #define KBIBTEXTEST_H #include <QList> #include <QDialog> #include <QIcon> class OnlineSearchAbstract; class TestWidget; class KBibTeXTest : public QDialog { Q_OBJECT public: explicit KBibTeXTest(QWidget *parent = nullptr); public slots: void startOnlineSearchTests(); private slots: void aboutToQuit(); void onlineSearchStoppedSearch(int); void onlineSearchFoundEntry(); void progress(int, int); void resetProgress(); private: bool m_running; TestWidget *m_testWidget; bool m_isBusy; QList<OnlineSearchAbstract *> m_onlineSearchList; QList<OnlineSearchAbstract *>::ConstIterator m_currentOnlineSearch; int m_currentOnlineSearchNumFoundEntries; void addMessage(const QString &message, const QIcon &icon = QIcon()); void setBusy(bool isBusy); void processNextSearch(); }; #endif // KBIBTEXTEST_H ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/logging_test.cpp�������������������������������������������������������������0000664�0000000�0000000�00000002442�13313000262�0020077�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include "logging_test.h" Q_LOGGING_CATEGORY(LOG_KBIBTEX_TEST, "kbibtex.test") ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/logging_test.h���������������������������������������������������������������0000664�0000000�0000000�00000002614�13313000262�0017545�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2015 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #ifndef KBIBTEX_TEST_LOGGING_TEST_H #define KBIBTEX_TEST_LOGGING_TEST_H #include <QLoggingCategory> Q_DECLARE_LOGGING_CATEGORY(LOG_KBIBTEX_TEST) #endif // KBIBTEX_TEST_LOGGING_TEST_H ��������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/main.cpp���������������������������������������������������������������������0000664�0000000�0000000�00000004147�13313000262�0016342�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������/*************************************************************************** * Copyright (C) 2004-2018 by Thomas Fischer <fischer@unix-ag.uni-kl.de> * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, see <https://www.gnu.org/licenses/>. * ***************************************************************************/ #include <QPointer> #include <QApplication> #include <KAboutData> #include <KLocalizedString> #include "kbibtextest.h" #include "kbibtex-version.h" #include "kbibtex-git-info.h" int main(int argc, char *argv[]) { QApplication programCore(argc, argv); KAboutData aboutData(QStringLiteral("kbibtextest"), i18n("KBibTeX Test"), strlen(KBIBTEX_GIT_INFO_STRING) > 0 ? QLatin1String(KBIBTEX_GIT_INFO_STRING ", near " KBIBTEX_VERSION_STRING) : QLatin1String(KBIBTEX_VERSION_STRING), i18n("A BibTeX editor by KDE"), KAboutLicense::GPL_V2, i18n("Copyright 2004-2018 Thomas Fischer"), QString(), QStringLiteral("https://userbase.kde.org/KBibTeX")); aboutData.addAuthor(i18n("Thomas Fischer"), i18n("Maintainer"), QStringLiteral("fischer@unix-ag.uni-kl.de")); KAboutData::setApplicationData(aboutData); QPointer<KBibTeXTest> test = new KBibTeXTest(); test->exec(); return programCore.exec(); } �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/src/test/test-config.h.in�������������������������������������������������������������0000664�0000000�0000000�00000000061�13313000262�0017701�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������#define TESTSET_DIRECTORY "@TESTSET_DIRECTORY@" �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/testset/������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0014631�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/testset/README-testset.txt������������������������������������������������������������0000664�0000000�0000000�00000003135�13313000262�0020022�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������Dear user and developer, this directory used to contain example bibliography files such as files originally submitted in bug reports or specially crafted files to test border cases in the importer modules of KBibTeX. However, it turned out to be impractical to ship 40MB of bibliography files for a project where the source code weights only 3MB. Historically, tar balls for KBibTeX were created based on a Git checkout, of course, but before building the actual tar balls, the files in the checkout got modified (such as creating a 'version.h') or removed (said testset directory). This approach is deprecated now; tar balls should instead closely resemble the content of the Git checkout without any modification. Therefore, all teset files including their revision control history got migrated to a separate Git repository, also available at the KDE infrastructure: https://cgit.kde.org/kbibtex-testset.git git://anongit.kde.org/kbibtex-testset.git https://anongit.kde.org/kbibtex-testset.git Attempts have been made to integrate the testset repository as a Git submodule at the same location, however hooks at KDE's Git server block pushing such a solution. In src/test, executable kbibtexfilestest depends on knowing the correct location of the testset directory. The location is set by creating a cache entry when invoking cmake: cmake [...] -DTESTSET_DIRECTORY:PATH=/path/to/testset [...] For clarity, to have the kbibtex-testset repository locally available and setting above cache entry is only necessary if you want to run kbibtexfilestest. Normal compilation and usage of KBibTeX does not require it. �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/���������������������������������������������������������������������������������0000775�0000000�0000000�00000000000�13313000262�0014130�5����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/CMakeLists.txt�������������������������������������������������������������������0000664�0000000�0000000�00000000433�13313000262�0016670�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������install( FILES fancy.xsl standard.xsl abstractonly.xsl arxiv2bibtex.xsl pubmed2bibtex.xsl pam2bibtex.xsl isbndb2bibtex.xsl ieeexplore2bibtex.xsl wikipedia-cite.xsl worldcatdc2bibtex.xsl DESTINATION ${KDE_INSTALL_DATADIR}/kbibtex ) �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/abstractonly.xsl�����������������������������������������������������������������0000664�0000000�0000000�00000003014�13313000262�0017363�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as generated by KBibTeX into nice HTML code. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. --> <xsl:output omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <!-- ============================================================================== Maintain original HTML tags --> <xsl:template match="a|abbr|acronym|address|applet|b|big|blockquote|br|cite|code|del|dfn|div|em|hr|i|kbd|p|param|pre|q|quote|samp|script|span|small|strike|strong|sub|sup|tt|var|button|fieldset|form|input|label|legend|object|option|optgroup|select|caption|col|colgroup|table|tbody|td|tfoot|th|thead|tr|dl|dd|dt|ol|ul|li|img|quote|quotation" xmlns:html="http://www.w3.org/1999/XSL/some"> <xsl:copy> <xsl:copy-of select="@*" /> <xsl:apply-templates /> </xsl:copy> </xsl:template> <xsl:template match="abstract"> <xsl:apply-templates /> </xsl:template> <xsl:template match="entry"> <xsl:apply-templates select="abstract" /> </xsl:template> <xsl:template match="bibliography"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Bibliography</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body style="margin:0px; padding: 0px;"> <xsl:apply-templates select="entry" /> </body> </html> </xsl:template> </xsl:stylesheet> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/arxiv2bibtex.xsl�����������������������������������������������������������������0000664�0000000�0000000�00000010560�13313000262�0017273�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:arxiv="http://arxiv.org/schemas/atom"> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by arXiv into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - - To run test this transformation file, run e.g. - wget 'http://export.arxiv.org/api/query?search_query=all:gandalf+lechner' -O - | sed -e 's/xmlns="http:\/\/www.w3.org\/2005\/Atom"//' | xsltproc arxiv2bibtex.xsl - - Within KBibTeX, some post-processing on the resulting BibTeX file is done. --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="feed/entry" /> </xsl:template> <xsl:template match="entry"> <!-- Test if entry is a journal article (@article), otherwise @misc --> <xsl:choose> <xsl:when test="arxiv:journal_ref"> <xsl:text>@article</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>@misc</xsl:text> </xsl:otherwise> </xsl:choose> <xsl:text>{</xsl:text><xsl:value-of select='substring(id,22,100)' /> <!-- process authors by merging all names with "and" --> <xsl:text>, author = {</xsl:text> <xsl:for-each select="author/name" > <xsl:if test="position() > 1"><xsl:text> and </xsl:text></xsl:if> <xsl:value-of select="."/> </xsl:for-each> <xsl:text>}</xsl:text> <xsl:apply-templates select="title" /> <xsl:apply-templates select="updated" /> <xsl:apply-templates select="summary" /> <xsl:apply-templates select="link" /> <xsl:apply-templates select="arxiv:doi" /> <xsl:apply-templates select="arxiv:journal_ref" /> <xsl:text>, archivePrefix = {arXiv}, eprint = {</xsl:text> <xsl:value-of select='substring(id,22,100)' /> <xsl:text>}, primaryClass = {</xsl:text> <xsl:value-of select="arxiv:primary_category/@term" /> <xsl:text>}, comment = {published = </xsl:text> <xsl:value-of select="published" /> <xsl:if test="updated"> <xsl:text>, updated = </xsl:text> <xsl:value-of select="updated" /> </xsl:if> <xsl:if test="arxiv:comment"> <xsl:text>, </xsl:text> <xsl:value-of select="arxiv:comment" /> </xsl:if> <xsl:text>} } </xsl:text> </xsl:template> <xsl:template match="title"> <xsl:text>, title = {{</xsl:text><xsl:value-of select="." /><xsl:text>}}</xsl:text> </xsl:template> <xsl:template match="updated"> <xsl:text>, year = {</xsl:text><xsl:value-of select="substring(.,1,4)" /><xsl:text>}, month = </xsl:text> <xsl:choose> <xsl:when test="substring(.,6,2) = '01'"><xsl:text>jan</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '02'"><xsl:text>feb</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '03'"><xsl:text>mar</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '04'"><xsl:text>apr</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '05'"><xsl:text>may</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '06'"><xsl:text>jun</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '07'"><xsl:text>jul</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '08'"><xsl:text>aug</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '09'"><xsl:text>sep</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '10'"><xsl:text>oct</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '11'"><xsl:text>nov</xsl:text></xsl:when> <xsl:when test="substring(.,6,2) = '12'"><xsl:text>dec</xsl:text></xsl:when> <xsl:otherwise>{}</xsl:otherwise></xsl:choose> </xsl:template> <xsl:template match="summary"> <xsl:text>, abstract = {</xsl:text><xsl:value-of select="." /><xsl:text>}</xsl:text> </xsl:template> <xsl:template match="link"><xsl:choose> <xsl:when test="@title = 'doi'"> <!-- ignore for now --> </xsl:when> <xsl:otherwise> <!-- FIXME handle multiple URLs --> <xsl:text>, url = {</xsl:text><xsl:value-of select="@href" /><xsl:text>}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="arxiv:doi"> <xsl:text>, doi = {</xsl:text><xsl:value-of select="." /><xsl:text>}</xsl:text> </xsl:template> <xsl:template match="arxiv:journal_ref"> <!-- FIXME split journal_ref into journal name, volume, issue, year, ... --> <xsl:text>, journal = {</xsl:text><xsl:value-of select="." /><xsl:text>}</xsl:text> </xsl:template> </xsl:stylesheet> ������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/fancy.xsl������������������������������������������������������������������������0000664�0000000�0000000�00000015615�13313000262�0015770�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as generated by KBibTeX into nice HTML code. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. --> <xsl:output omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <!-- ============================================================================== Maintain original HTML tags --> <xsl:template match="a|abbr|acronym|address|applet|b|big|blockquote|br|cite|code|del|dfn|div|em|hr|i|kbd|p|param|pre|q|quote|samp|script|span|small|strike|strong|sub|sup|tt|var|button|fieldset|form|input|label|legend|object|option|optgroup|select|caption|col|colgroup|table|tbody|td|tfoot|th|thead|tr|dl|dd|dt|ol|ul|li|img|quote|quotation" xmlns:html="http://www.w3.org/1999/XSL/some"> <xsl:copy> <xsl:copy-of select="@*" /> <xsl:apply-templates /> </xsl:copy> </xsl:template> <xsl:template match="text"> <xsl:apply-templates /> </xsl:template> <xsl:template match="person"> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:author=</xsl:text><xsl:value-of select="lastname"/></xsl:attribute> <xsl:value-of select="lastname"/><xsl:if test="string-length(firstname)>0"><xsl:text>, </xsl:text> <xsl:value-of select="substring(firstname,1,1)"/><xsl:text>.</xsl:text></xsl:if> </a> </xsl:template> <xsl:template match="authors"> <xsl:if test="string-length(.)>0"> <xsl:for-each select="person"> <span style="font-weight:bold;"> <xsl:apply-templates select="."/> </span> <xsl:if test="position()!=last()"><xsl:text>, </xsl:text> </xsl:if> <xsl:if test="position()=last()-1 and @etal!='true'"> <xsl:text> and </xsl:text> </xsl:if> </xsl:for-each> <xsl:if test="@etal='true'"><xsl:text> </xsl:text><i>et&#160;al.</i></xsl:if> </xsl:if> </xsl:template> <xsl:template match="editors"> <xsl:for-each select="person"> <xsl:apply-templates /><xsl:if test="position()!=last()"><xsl:text>, </xsl:text> </xsl:if> <xsl:if test="position()=last()-1 and @etal!='true'"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:if test="@etal='true'"><xsl:text> </xsl:text><i>et&#160;al.</i></xsl:if> <xsl:text>, </xsl:text> </xsl:template> <xsl:template match="title"> <a style="text-decoration: none; color: #000;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:title=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="booktitle"> <i><a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:booktitle=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a></i> </xsl:template> <xsl:template match="journal"> <a style="text-decoration: none; color: white; font-style:italic;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:journal=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> <xsl:if test="string-length(../volume)>0"> <xsl:text> </xsl:text> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:volume=</xsl:text><xsl:value-of select="../volume"/></xsl:attribute><xsl:value-of select="../volume"/></a> <xsl:if test="string-length(../number)>0"> <xsl:text>(</xsl:text> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:number=</xsl:text><xsl:value-of select="../number"/></xsl:attribute><xsl:value-of select="../number"/></a> <xsl:text>)</xsl:text> </xsl:if> </xsl:if> </xsl:template> <xsl:template match="publisher"> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:publisher=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> <xsl:text>, </xsl:text> </xsl:template> <xsl:template match="volume"> <xsl:text>volume </xsl:text> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:volume=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> <xsl:text>, </xsl:text> </xsl:template> <xsl:template match="edition"> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:edition=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> <xsl:text> edition, </xsl:text> </xsl:template> <xsl:template match="pages"> <xsl:text>, </xsl:text> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:pages=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="year"> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:year=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="note"> <xsl:text>, </xsl:text> <a style="text-decoration: none; color: white;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:note=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="month"> <xsl:value-of select="."/> </xsl:template> <xsl:template match="abstract"> <i>Abstract</i><xsl:text>: </xsl:text><xsl:apply-templates /> </xsl:template> <xsl:template match="entry"> <div style="margin:0px; padding: 0.5ex; border-top: solid 0.25ex #c00;"><xsl:apply-templates select="authors" /></div> <div style="margin:0px; padding: 0.5ex; background: #ec6; font-size: 125%;"> <xsl:apply-templates select="title" /> </div> <xsl:if test="string-length(journal)>0 or string-length(booktitle)>0 or string-length(year)>0"> <div style="margin:0px; padding: 0.5ex; background: #900; color: white;"> <xsl:if test="string-length(journal)>0"><xsl:apply-templates select="journal" /></xsl:if> <xsl:if test="string-length(booktitle)>0"><xsl:apply-templates select="booktitle" /></xsl:if> <xsl:if test="( string-length(journal)>0 or string-length(booktitle)>0 ) and string-length(year)>0"><xsl:text>, </xsl:text></xsl:if> <xsl:if test="string-length(year)>0"> <xsl:if test="string-length(month)>0"><xsl:value-of select="month" /><xsl:text> </xsl:text></xsl:if> <xsl:apply-templates select="year" /> <xsl:apply-templates select="pages" /> </xsl:if> <xsl:apply-templates select="note" /> </div> </xsl:if> <xsl:if test="string-length(abstract)>0"> <div style="margin:0px; padding: 0.5ex; padding-top: 1ex; text-align: justify; font-size: 80%; color: #333;"> <xsl:apply-templates select="abstract" /> </div> </xsl:if> </xsl:template> <xsl:template match="bibliography"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Bibliography</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body style="margin:0px; padding: 0px;"> <xsl:apply-templates select="entry" /> </body> </html> </xsl:template> </xsl:stylesheet> �������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/ieeexplore2bibtex.xsl������������������������������������������������������������0000664�0000000�0000000�00000006341�13313000262�0020305�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by IEEE Xplore's XML gateway into BibTeX files. - http://ieeexplore.ieee.org/gateway/ - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="root/document" /> </xsl:template> <xsl:template match="document"> <!-- Determine publication type, use @misc as fallback --> <xsl:choose> <xsl:when test="pubtype='Conference Publications'"> <xsl:text>@inproceedings</xsl:text> </xsl:when> <xsl:when test="pubtype='Journals &#160; Magazines'"> <xsl:text>@article</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>@misc</xsl:text> </xsl:otherwise> </xsl:choose> <xsl:text>{ieee</xsl:text><xsl:value-of select="arnumber" /> <!-- Title --> <xsl:if test="title"><xsl:text>, title={{</xsl:text><xsl:value-of select="title" /><xsl:text>}}</xsl:text></xsl:if> <!-- Authors --> <xsl:if test="authors"><xsl:text>, author={</xsl:text><xsl:value-of select="replace(authors,'\s*;\s*',' and ')" /><xsl:text>}</xsl:text></xsl:if> <!-- Conference's Title --> <xsl:if test="pubtitle and pubtype='Conference Publications'"><xsl:text>, booktitle={{</xsl:text><xsl:value-of select="pubtitle" /><xsl:text>}}</xsl:text></xsl:if> <!-- Journal's Title --> <xsl:if test="pubtitle and pubtype='Journals &#160; Magazines'"><xsl:text>, journal={{</xsl:text><xsl:value-of select="pubtitle" /><xsl:text>}}</xsl:text></xsl:if> <!-- Publisher --> <xsl:if test="publisher"><xsl:text>, publisher={</xsl:text><xsl:value-of select="publisher" /><xsl:text>}</xsl:text></xsl:if> <!-- Abstract --> <xsl:if test="abstract"><xsl:text>, abstract={</xsl:text><xsl:value-of select="abstract" /><xsl:text>}</xsl:text></xsl:if> <!-- Year --> <xsl:if test="py"><xsl:text>, year={</xsl:text><xsl:value-of select="py" /><xsl:text>}</xsl:text></xsl:if> <!-- Pages --> <xsl:if test="spage"><xsl:text>, pages={</xsl:text><xsl:value-of select="spage" /> <xsl:if test="epage"><xsl:text>--</xsl:text><xsl:value-of select="epage" /></xsl:if> <xsl:text>}</xsl:text></xsl:if> <!-- ISSN --> <xsl:if test="issn"><xsl:text>, issn={</xsl:text><xsl:value-of select="issn" /><xsl:text>}</xsl:text></xsl:if> <!-- Number/Issue --> <xsl:if test="issue"><xsl:text>, number={</xsl:text><xsl:value-of select="issue" /><xsl:text>}</xsl:text></xsl:if> <!-- Volume --> <xsl:if test="volume"><xsl:text>, volume={</xsl:text><xsl:value-of select="volume" /><xsl:text>}</xsl:text></xsl:if> <!-- ISBN --> <xsl:if test="isbn"><xsl:text>, isbn={</xsl:text><xsl:value-of select="isbn" /><xsl:text>}</xsl:text></xsl:if> <!-- DOI --> <xsl:if test="doi"><xsl:text>, doi={</xsl:text><xsl:value-of select="doi" /><xsl:text>}</xsl:text></xsl:if> <!-- PDF --> <xsl:if test="pdf"><xsl:text>, url={</xsl:text><xsl:value-of select="pdf" /><xsl:text>}</xsl:text></xsl:if> <xsl:text> } </xsl:text> </xsl:template> </xsl:stylesheet> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/isbndb2bibtex.xsl����������������������������������������������������������������0000664�0000000�0000000�00000004543�13313000262�0017407�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:transform version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by ISBNdb.com into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="ISBNdb/BookList/BookData" /> </xsl:template> <xsl:template match="BookData"> <!-- opening entry --> <xsl:text>@book{</xsl:text> <xsl:value-of select="@book_id" /> <!-- title --> <xsl:choose> <xsl:when test="TitleLong and string-length(TitleLong)>2"> <xsl:text>, title = {{</xsl:text> <xsl:value-of select="TitleLong" /> <xsl:text>}}</xsl:text> </xsl:when> <xsl:when test="Title and string-length(Title)>2"> <xsl:text>, title = {{</xsl:text> <xsl:value-of select="Title" /> <xsl:text>}}</xsl:text> </xsl:when> </xsl:choose> <!-- summary/abstract --> <xsl:if test="Summary and string-length(Summary)>2"> <xsl:text>, abstract = {</xsl:text> <xsl:value-of select="Summary" /> <xsl:text>}</xsl:text> </xsl:if> <!-- publisher --> <xsl:if test="PublisherText and string-length(PublisherText)>2"> <xsl:text>, publisher = {</xsl:text> <xsl:value-of select="PublisherText" /> <xsl:text>}</xsl:text> </xsl:if> <!-- authors --> <xsl:choose> <xsl:when test="AuthorsText"> <xsl:text>, author = {{</xsl:text> <xsl:value-of select="AuthorsText" /> <xsl:text>}}</xsl:text> </xsl:when> <xsl:when test="Authors/Person"> <xsl:text>, author = {</xsl:text> <xsl:for-each select="Authors/Person"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:when> </xsl:choose> <!-- ISBN --> <xsl:choose> <xsl:when test="@isbn13 and string-length(@isbn13)>2"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="@isbn13" /> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="@isbn and string-length(@isbn)>2"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="@isbn" /> <xsl:text>}</xsl:text> </xsl:when> </xsl:choose> <!-- closing entry --> <xsl:text> } </xsl:text> </xsl:template> </xsl:transform> �������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/pam2bibtex.xsl�������������������������������������������������������������������0000664�0000000�0000000�00000010744�13313000262�0016723�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:transform version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:pam="http://prismstandard.org/namespaces/pam/2.0/" xmlns:prism="http://prismstandard.org/namespaces/basic/2.0/" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by Springer in the format PAM (PRISM Aggregator Message) - into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="response/records/pam:message" /> </xsl:template> <xsl:template match="pam:message"> <xsl:apply-templates select="xhtml:head/pam:article" /> <!-- abstract --> <xsl:if test="xhtml:body/p"> <xsl:text>, abstract = {</xsl:text> <xsl:for-each select="xhtml:body/p"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <!-- closing entry --> <xsl:text> } </xsl:text> </xsl:template> <xsl:template match="pam:article"> <!-- entry Type --> <xsl:choose> <xsl:when test="journalId"> <xsl:text>@article{</xsl:text> </xsl:when> <xsl:when test="dc:title and prism:publicationName and ( prism:isbn or printIsbn or electronicIsbn)"> <!-- an article in a book has a title and a book title and the book has an ISBN --> <xsl:text>@inbook{</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>@misc{</xsl:text> </xsl:otherwise> </xsl:choose> <!-- identifier --> <xsl:text>PAM_</xsl:text><xsl:value-of select="dc:identifier" /> <!-- title --> <xsl:if test="dc:title"> <xsl:text>, title = {{</xsl:text> <xsl:value-of select="dc:title" /> <xsl:text>}}</xsl:text> </xsl:if> <!-- author --> <xsl:if test="dc:creator"> <xsl:text>, author = {</xsl:text> <xsl:for-each select="dc:creator"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <!-- journal --> <xsl:if test="journalId and prism:publicationName"> <xsl:text>, journal = {{</xsl:text> <xsl:value-of select="prism:publicationName" /> <xsl:text>}}</xsl:text> </xsl:if> <!-- book title --> <xsl:if test="dc:title and prism:publicationName and ( prism:isbn or printIsbn or electronicIsbn)"> <xsl:text>, booktitle = {{</xsl:text> <xsl:value-of select="prism:publicationName" /> <xsl:text>}}</xsl:text> </xsl:if> <!-- ISSN --> <xsl:if test="prism:issn"> <xsl:text>, issn = {</xsl:text> <xsl:value-of select="prism:issn" /> <xsl:text>}</xsl:text> </xsl:if> <!-- ISBN --> <xsl:choose> <xsl:when test="prism:isbn"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="prism:isbn" /> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="printIsbn"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="printIsbn" /> <xsl:text>}</xsl:text> </xsl:when> <xsl:when test="electronicIsbn"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="electronicIsbn" /> <xsl:text>}</xsl:text> </xsl:when> </xsl:choose> <!-- DOI --> <xsl:if test="prism:doi"> <xsl:text>, doi = {</xsl:text> <xsl:value-of select="prism:doi" /> <xsl:text>}</xsl:text> </xsl:if> <!-- URL --> <xsl:if test="prism:url"> <xsl:text>, url = {</xsl:text> <xsl:value-of select="prism:url" /> <xsl:text>}</xsl:text> </xsl:if> <!-- publisher --> <xsl:if test="dc:publisher"> <xsl:text>, publisher = {</xsl:text> <xsl:value-of select="dc:publisher" /> <xsl:text>}</xsl:text> </xsl:if> <!-- volume --> <xsl:if test="prism:volume"> <xsl:text>, volume = {</xsl:text> <xsl:value-of select="prism:volume" /> <xsl:text>}</xsl:text> </xsl:if> <!-- number/issue --> <xsl:if test="prism:number"> <xsl:text>, number = {</xsl:text> <xsl:value-of select="prism:number" /> <xsl:text>}</xsl:text> </xsl:if> <!-- pages --> <xsl:if test="prism:startingPage"> <xsl:text>, pages = {</xsl:text> <xsl:value-of select="prism:startingPage" /> <xsl:if test="prism:endingPage"> <xsl:text>--</xsl:text> <xsl:value-of select="prism:endingPage" /> </xsl:if> <xsl:text>}</xsl:text> </xsl:if> <!-- year --> <xsl:if test="prism:publicationDate"> <xsl:text>, year = {</xsl:text> <xsl:value-of select="substring(prism:publicationDate,1,4)" /> <xsl:text>}</xsl:text> </xsl:if> </xsl:template> </xsl:transform> ����������������������������kbibtex-0.8.1/xslt/pubmed2bibtex.xsl����������������������������������������������������������������0000664�0000000�0000000�00000007152�13313000262�0017421�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by PubMed into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <xsl:variable name="smallcase" select="'abcdefghijklmnopqrstuvwxyz'" /> <xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" /> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="PubmedArticleSet/PubmedArticle" /> </xsl:template> <xsl:template match="PubmedArticle"> <!-- assuming that there are only journal references --> <xsl:text>@article{pmid</xsl:text> <xsl:value-of select="MedlineCitation/PMID" /> <xsl:apply-templates select="MedlineCitation/Article" /> <xsl:apply-templates select="PubmedData/ArticleIdList/ArticleId" /> <xsl:if test="MedlineCitation/MedlineJournalInfo/NlmUniqueID!=''"><xsl:text>, nlmuniqueid = {</xsl:text><xsl:value-of select="MedlineCitation/MedlineJournalInfo/NlmUniqueID" /><xsl:text>}</xsl:text></xsl:if> <xsl:text> } </xsl:text> </xsl:template> <xsl:template match="ArticleId"> <xsl:choose> <xsl:when test="@IdType='doi'"> <xsl:text>, doi = {</xsl:text><xsl:value-of select="." /><xsl:text>}</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>, </xsl:text><xsl:value-of select="@IdType" /><xsl:text> = {</xsl:text><xsl:value-of select="." /><xsl:text>}</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template match="Article"> <xsl:text>, title = {{</xsl:text><xsl:value-of select="ArticleTitle" /><xsl:text>}}</xsl:text> <xsl:apply-templates select="AuthorList" /> <xsl:apply-templates select="Journal" /> <xsl:text>, pages = {</xsl:text><xsl:value-of select="Pagination/MedlinePgn" /><xsl:text>}</xsl:text> <xsl:if test="Abstract/AbstractText!=''"><xsl:text>, abstract = {</xsl:text><xsl:value-of select="Abstract/AbstractText" /><xsl:text>}</xsl:text></xsl:if> </xsl:template> <xsl:template match="Journal"> <!-- going for the journal title's abbreviation, looks better --> <xsl:text>, journal = {{</xsl:text><xsl:value-of select="ISOAbbreviation" /><xsl:text>}}</xsl:text> <xsl:if test="JournalIssue/ISSN!=''"><xsl:text>, issn = {</xsl:text><xsl:value-of select="ISSN" /><xsl:text>}</xsl:text></xsl:if> <xsl:if test="JournalIssue/Volume!=''"><xsl:text>, volume = {</xsl:text><xsl:value-of select="JournalIssue/Volume" /><xsl:text>}</xsl:text></xsl:if> <xsl:if test="JournalIssue/Issue!=''"><xsl:text>, number = {</xsl:text><xsl:value-of select="JournalIssue/Issue" /><xsl:text>}</xsl:text></xsl:if> <xsl:if test="JournalIssue/PubDate/Year!=''"><xsl:text>, year = {</xsl:text><xsl:value-of select="JournalIssue/PubDate/Year" /><xsl:text>}</xsl:text></xsl:if> <xsl:if test="JournalIssue/PubDate/Month!=''"><xsl:text>, month = </xsl:text><xsl:value-of select="translate(JournalIssue/PubDate/Month, $uppercase, $smallcase)" /><xsl:text></xsl:text></xsl:if> </xsl:template> <xsl:template match="AuthorList"> <xsl:text>, author = {</xsl:text> <xsl:apply-templates select="Author"/> <xsl:if test="@CompleteYN = 'N'"><xsl:text> and others</xsl:text></xsl:if> <xsl:text>}</xsl:text> </xsl:template> <xsl:template match="Author"> <xsl:if test="position() > 1"><xsl:text> and </xsl:text></xsl:if> <xsl:apply-templates select="ForeName"/><xsl:text> </xsl:text> <xsl:apply-templates select="LastName"/> </xsl:template> </xsl:stylesheet> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/standard.xsl���������������������������������������������������������������������0000664�0000000�0000000�00000016640�13313000262�0016467�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as generated by KBibTeX into nice HTML code. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. --> <xsl:output omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <!-- ============================================================================== Maintain original HTML tags --> <xsl:template match="a|abbr|acronym|address|applet|b|big|blockquote|br|cite|code|del|dfn|div|em|hr|i|kbd|p|param|pre|q|quote|samp|script|span|small|strike|strong|sub|sup|tt|var|button|fieldset|form|input|label|legend|object|option|optgroup|select|caption|col|colgroup|table|tbody|td|tfoot|th|thead|tr|dl|dd|dt|ol|ul|li|img|quote|quotation" xmlns:html="http://www.w3.org/1999/XSL/some"> <xsl:copy> <xsl:copy-of select="@*" /> <xsl:apply-templates /> </xsl:copy> </xsl:template> <xsl:template match="text"> <xsl:apply-templates /> </xsl:template> <xsl:template match="person"> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:author=</xsl:text><xsl:value-of select="lastname"/></xsl:attribute> <xsl:value-of select="lastname"/><xsl:if test="string-length(firstname)>0"><xsl:text>, </xsl:text> <xsl:value-of select="firstname"/></xsl:if> </a> </xsl:template> <xsl:template match="authors"> <xsl:for-each select="person"> <xsl:apply-templates select="."/><xsl:if test="position()!=last()"><xsl:text>, </xsl:text> </xsl:if> <xsl:if test="position()=last()-1 and @etal!='true'"> <xsl:text> and </xsl:text> </xsl:if> </xsl:for-each> <xsl:if test="@etal='true'"><xsl:text> </xsl:text><i>et&#160;al.</i></xsl:if> <xsl:text>: </xsl:text> </xsl:template> <xsl:template match="editors"> <xsl:text>, Eds: </xsl:text> <xsl:for-each select="person"> <xsl:apply-templates select="."/><xsl:if test="position()!=last()"><xsl:text>, </xsl:text> </xsl:if> <xsl:if test="position()=last()-1 and @etal!='true'"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:if test="@etal='true'"><xsl:text> </xsl:text><i>et&#160;al.</i></xsl:if> </xsl:template> <xsl:template match="title"> <b><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:title=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a></b> </xsl:template> <xsl:template match="booktitle"> <xsl:text>, </xsl:text><i><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:booktitle=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a></i> </xsl:template> <xsl:template match="type"> <xsl:text>, </xsl:text><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:type=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="school"> <xsl:text>, </xsl:text><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:school=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="journal"> <xsl:text>, </xsl:text> <i><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:journal=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a></i> <xsl:if test="string-length(../volume)>0"> <xsl:text> </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:volume=</xsl:text><xsl:value-of select="../volume"/></xsl:attribute><xsl:value-of select="../volume"/></a> <xsl:if test="string-length(../number)>0"> <xsl:text>(</xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:number=</xsl:text><xsl:value-of select="../number"/></xsl:attribute><xsl:value-of select="../number"/></a> <xsl:text>)</xsl:text> </xsl:if> </xsl:if> </xsl:template> <xsl:template match="institution"> <xsl:text>, </xsl:text> <i><a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:institution=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a></i> <xsl:if test="string-length(../number)>0"> <xsl:text> No. </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:number=</xsl:text><xsl:value-of select="../number"/></xsl:attribute><xsl:value-of select="../number"/></a> </xsl:if> </xsl:template> <xsl:template match="publisher"> <xsl:text>, </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:publisher=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="volume"> <xsl:if test="string-length(../journal)=0"> <!-- do not print volume if there is "journal" field, which prints the volume, too. --> <xsl:text>, </xsl:text> <xsl:text>volume </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:volume=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:if> </xsl:template> <xsl:template match="edition"> <xsl:text>, </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:edition=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/> <xsl:text> edition</xsl:text></a> </xsl:template> <xsl:template match="pages"> <xsl:text>, </xsl:text> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:pages=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="year"> <xsl:text>, </xsl:text> <xsl:if test="string-length(../month)>0"> <xsl:value-of select="../month"/> <xsl:text> </xsl:text> </xsl:if> <a style="text-decoration: none; color: black;"><xsl:attribute name="href"><xsl:text>kbibtex:filter:year=</xsl:text><xsl:value-of select="."/></xsl:attribute><xsl:value-of select="."/></a> </xsl:template> <xsl:template match="note"> <xsl:text>, </xsl:text><xsl:apply-templates /> </xsl:template> <xsl:template match="abstract"> <br/><small><i>Abstract</i><xsl:text>: </xsl:text><xsl:apply-templates /></small> </xsl:template> <xsl:template match="entry"> <p> <xsl:apply-templates select="authors" /> <xsl:apply-templates select="title" /> <xsl:apply-templates select="booktitle" /> <xsl:apply-templates select="journal" /> <xsl:apply-templates select="type" /> <xsl:apply-templates select="school" /> <xsl:apply-templates select="volume" /> <xsl:apply-templates select="edition" /> <xsl:apply-templates select="publisher" /> <xsl:apply-templates select="institution" /> <xsl:apply-templates select="pages" /> <xsl:apply-templates select="editors" /> <xsl:apply-templates select="year" /> <xsl:apply-templates select="note" /> <xsl:apply-templates select="abstract" /> </p> <xsl:text> </xsl:text> </xsl:template> <xsl:template match="bibliography"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Bibliography</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> </head> <body> <xsl:apply-templates select="entry" /> </body> </html> </xsl:template> </xsl:stylesheet> ������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/wikipedia-cite.xsl���������������������������������������������������������������0000664�0000000�0000000�00000022441�13313000262�0017553�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:stylesheet version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as generated by KBibTeX into nice HTML code. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. --> <xsl:output method="text" standalone="yes" omit-xml-declaration="yes" encoding="UTF-8" media-type="text/plain" /> <xsl:template match="/entry"> <xsl:text>{{cite </xsl:text> <xsl:choose> <xsl:when test="doi/text"> <xsl:text>doi|</xsl:text> <xsl:value-of select="doi/text" /> </xsl:when> <xsl:when test="jstor_id/text"> <xsl:text>jstor|</xsl:text> <xsl:value-of select="jstor_id/text" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://www.jstor.org/stable/')"> <xsl:text>jstor|</xsl:text> <xsl:value-of select="substring(url/text, 29)" /> </xsl:when> <xsl:when test="starts-with(@id, 'jstor')"> <xsl:text>jstor|</xsl:text> <xsl:value-of select="substring(@id, 6)" /> </xsl:when> <xsl:when test="pubmed/text"> <xsl:text>pmid|</xsl:text> <xsl:value-of select="pubmed/text" /> </xsl:when> <xsl:when test="pmid/text"> <xsl:text>pmid|</xsl:text> <xsl:value-of select="pmid/text" /> </xsl:when> <xsl:when test="starts-with(@id, 'pmid')"> <xsl:text>pmid|</xsl:text> <xsl:value-of select="substring(@id, 5)" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://hdl.handle.net/')"> <xsl:text>hdl|</xsl:text> <xsl:value-of select="substring(url/text, 23)" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://www.jstor.org/stable/')"> <xsl:text>jstor|</xsl:text> <xsl:value-of select="substring(url/text, 28)" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://doi.acm.org/')"> <xsl:text>doi|</xsl:text> <xsl:value-of select="substring(url/text, 19)" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://doi.wiley.com/')"> <xsl:text>doi|</xsl:text> <xsl:value-of select="substring(url/text, 21)" /> </xsl:when> <xsl:when test="isbn/text"> <xsl:text>isbn|</xsl:text> <xsl:value-of select="isbn/text" /> </xsl:when> <xsl:when test="starts-with(eprint/text, 'arXiv:')"> <xsl:text>arXiv</xsl:text> <xsl:text>|eprint=</xsl:text><xsl:value-of select="substring(eprint/text, 7)" /> </xsl:when> <xsl:when test="starts-with(arxivId/text, 'arXiv:')"> <xsl:text>arXiv</xsl:text> <xsl:text>|eprint=</xsl:text><xsl:value-of select="substring(arxivId/text, 7)" /> </xsl:when> <xsl:when test="arxivid/text"> <xsl:text>arXiv</xsl:text> <xsl:text>|eprint=</xsl:text><xsl:value-of select="arxivid/text" /> </xsl:when> <xsl:when test="starts-with(url/text, 'http://arxiv.org/abs/') or starts-with(url/text, 'http://arxiv.org/pdf/')"> <xsl:text>arXiv</xsl:text> <xsl:text>|eprint=</xsl:text><xsl:value-of select="substring(url/text, 22)" /> </xsl:when> <xsl:when test="@type='article'"> <xsl:text>journal</xsl:text> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="url/text"><xsl:text>|url=</xsl:text><xsl:value-of select="url/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="journal/text"><xsl:text>|journal=</xsl:text><xsl:value-of select="journal/text" /></xsl:if> <xsl:if test="volume"><xsl:text>|volume=</xsl:text><xsl:value-of select="volume" /></xsl:if> <xsl:if test="pages/text"><xsl:text>|pages=</xsl:text><xsl:value-of select="pages/text" /></xsl:if> <xsl:if test="number"><xsl:text>|issue=</xsl:text><xsl:value-of select="number" /></xsl:if> <xsl:if test="publisher/text"><xsl:text>|publisher=</xsl:text><xsl:value-of select="publisher/text" /></xsl:if> <xsl:if test="month"><xsl:text>|month=</xsl:text><xsl:value-of select="month" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:when test="@type='book'"> <xsl:text>book</xsl:text> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="url/text"><xsl:text>|url=</xsl:text><xsl:value-of select="url/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="month"><xsl:text>|month=</xsl:text><xsl:value-of select="month" /></xsl:if> <xsl:if test="edition"><xsl:text>|edition=</xsl:text><xsl:value-of select="edition" /></xsl:if> <xsl:if test="publisher/text"><xsl:text>|publisher=</xsl:text><xsl:value-of select="publisher/text" /></xsl:if> <xsl:if test="series/text"><xsl:text>|series=</xsl:text><xsl:value-of select="series/text" /></xsl:if> <xsl:if test="volume"><xsl:text>|volume=</xsl:text><xsl:value-of select="volume" /></xsl:if> <xsl:if test="isbn"><xsl:text>|isbn=</xsl:text><xsl:value-of select="isbn" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:when test="@type='inproceedings' or @type='incollection'"> <xsl:text>conference</xsl:text> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="booktitle/text"><xsl:text>|booktitle=</xsl:text><xsl:value-of select="booktitle/text" /></xsl:if> <xsl:if test="url/text"><xsl:text>|conference=</xsl:text><xsl:value-of select="url/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="month"><xsl:text>|month=</xsl:text><xsl:value-of select="month" /></xsl:if> <xsl:if test="volume"><xsl:text>|volume=</xsl:text><xsl:value-of select="volume" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:when test="@type='techreport'"> <xsl:text>techreport</xsl:text> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="url/text"><xsl:text>|url=</xsl:text><xsl:value-of select="url/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="month"><xsl:text>|month=</xsl:text><xsl:value-of select="month" /></xsl:if> <xsl:if test="number"><xsl:text>|issue=</xsl:text><xsl:value-of select="number" /></xsl:if> <xsl:if test="institution/text"><xsl:text>|institution=</xsl:text><xsl:value-of select="institution/text" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:when test="@type='phdthesis' or @type='mastersthesis'"> <xsl:text>thesis</xsl:text> <xsl:choose> <xsl:when test="@type='phdthesis'"><xsl:text>|type=Ph.D.</xsl:text></xsl:when> <xsl:when test="@type='mastersthesis'"><xsl:text>|type=M.Sc.</xsl:text></xsl:when> </xsl:choose> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="school/text"><xsl:text>|publisher=</xsl:text><xsl:value-of select="school/text" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:when test="url/text"> <xsl:text>web</xsl:text> <xsl:text>|url=</xsl:text><xsl:value-of select="url/text" /> <xsl:if test="title/text"><xsl:text>|title=</xsl:text><xsl:value-of select="title/text" /></xsl:if> <xsl:if test="year/text"><xsl:text>|year=</xsl:text><xsl:value-of select="year/text" /></xsl:if> <xsl:if test="month"><xsl:text>|month=</xsl:text><xsl:value-of select="month" /></xsl:if> <xsl:if test="authors/person/lastname"> <xsl:for-each select="authors/person"> <xsl:text>|last</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="lastname" /> <xsl:text>|first</xsl:text><xsl:value-of select="position()"/><xsl:text>=</xsl:text><xsl:value-of select="firstname" /> </xsl:for-each> </xsl:if> </xsl:when> <xsl:otherwise><!-- BEGIN unknown type of citation --> <xsl:text>FIXME</xsl:text> </xsl:otherwise><!-- END unknown type of citation --> </xsl:choose> <xsl:text>}} </xsl:text> </xsl:template> <xsl:template match="bibliography"> <xsl:text>a</xsl:text><xsl:apply-templates select="entry" /> </xsl:template> </xsl:stylesheet> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/worldcatdc2bibtex.xsl������������������������������������������������������������0000664�0000000�0000000�00000007526�13313000262�0020300�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:transform version = '1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns="http://www.loc.gov/zing/srw/" xmlns:oclcterms="http://purl.org/oclc/terms/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- xmlns:diag="http://www.loc.gov/zing/srw/diagnostic/" --> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by xxxxxxx - into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - - To run test this transformation file, run e.g. - wget 'http://www.worldcat.org/webservices/catalog/search/worldcat/sru?wskey=YOURKEY&maximumRecords=10&query=srw.au+all+"smith"&recordSchema=info%3Asrw%2Fschema%2F1%2Fdc' -O - | sed -e 's/searchRetrieveResponse xmlns="http:\/\/www.loc.gov\/zing\/srw\/"/searchRetrieveResponse/' | xsltproc wordcatdc2bibtex.xsl - - --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="searchRetrieveResponse/records/record/recordData/oclcdcs" /> </xsl:template> <xsl:template match="oclcdcs"> <xsl:choose> <!-- at least identifier looks like a ISBN-13 number --> <xsl:when test="dc:identifier[starts-with(., '978')]"> <!-- ISBN means book --> <xsl:text>@book{</xsl:text> </xsl:when> <xsl:otherwise> <!-- fallback: some other/unknown type of publication --> <xsl:text>@misc{</xsl:text> </xsl:otherwise> </xsl:choose> <!-- identifier --> <!-- use (number) OCLC identifier for entry id --> <xsl:text>OCLC_</xsl:text><xsl:value-of select="oclcterms:recordIdentifier[not(@xsi:type)]" /> <!-- <xsl:text>OCLC_</xsl:text><xsl:value-of select="oclcterms:recordIdentifier" />--> <!-- title --> <xsl:if test="dc:title"> <xsl:text>, title = {{</xsl:text> <xsl:value-of select="dc:title" /> <xsl:text>}}</xsl:text> </xsl:if> <!-- author (a.k.a. creator) --> <xsl:if test="dc:creator"> <xsl:text>, author = {</xsl:text> <xsl:for-each select="dc:creator"> <xsl:apply-templates select="."/> <!-- separate multiple authors/creators by " and " --> <xsl:if test="position()!=last()"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <!-- ISBN --> <!-- if generic "identifier" tag's content starts with "978", assume ISBN --> <!-- TODO filter for duplicates, remove text and comments --> <xsl:for-each select="dc:identifier[starts-with(., '978')]"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="." /> <xsl:text>}</xsl:text> </xsl:for-each> <!-- URL --> <!-- if generic "identifier" tag's content starts with "http", assume URL --> <xsl:if test="dc:identifier[starts-with(., 'http')]"> <xsl:text>, url = {</xsl:text> <xsl:for-each select="dc:identifier[starts-with(., 'http')]"> <xsl:apply-templates select="."/> <!-- separate URLs by "; " --> <xsl:if test="position()!=last()"><xsl:text>; </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <!-- publisher --> <xsl:if test="dc:publisher"> <xsl:text>, publisher = {</xsl:text> <xsl:value-of select="dc:publisher" /> <xsl:text>}</xsl:text> </xsl:if> <!-- year --> <xsl:if test="dc:date"> <xsl:text>, year = {</xsl:text> <!-- TODO remove text and comments --> <xsl:value-of select="dc:date" /> <xsl:text>}</xsl:text> </xsl:if> <!-- keywords --> <!-- TODO difference keyword <-> subject? --> <xsl:if test="dc:subject"> <xsl:text>, keywords = {</xsl:text> <xsl:for-each select="dc:subject"> <xsl:apply-templates select="."/> <!-- separate keywords by "; " --> <!-- TODO some additional filtering? --> <xsl:if test="position()!=last()"><xsl:text>; </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <xsl:text> } </xsl:text> </xsl:template> </xsl:transform> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������kbibtex-0.8.1/xslt/zoteroitems2bibtex.xsl�����������������������������������������������������������0000664�0000000�0000000�00000013762�13313000262�0020535�0����������������������������������������������������������������������������������������������������ustar�00root����������������������������root����������������������������0000000�0000000������������������������������������������������������������������������������������������������������������������������������������������������������������������������<xsl:transform version='2.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform' xmlns:zapi="http://zotero.org/ns/api" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:xhtml="http://www.w3.org/1999/xhtml"> <!-- - This Extensible Stylesheet Language Transformation file translates XML files - as provided by Zotero (items, not collections) into BibTeX files. - - This file was written by Thomas Fischer <fischer@unix-ag.uni-kl.de> - It is released under the GNU Public License version 2 or later. - --> <xsl:output method="text" omit-xml-declaration="yes" indent="no" encoding="UTF-8"/> <xsl:strip-space elements="*"/> <!-- START HERE --> <xsl:template match="/"> <!-- process each entry --> <xsl:apply-templates select="atom:feed/atom:entry" /> </xsl:template> <xsl:template match="atom:entry"> <xsl:choose> <xsl:when test="zapi:itemType='book'"> <xsl:text>@book</xsl:text> </xsl:when> <xsl:when test="zapi:itemType='journalArticle'"> <xsl:text>@article</xsl:text> </xsl:when> <xsl:when test="zapi:itemType='conferencePaper'"> <xsl:text>@inproceedings</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>@misc</xsl:text> </xsl:otherwise> </xsl:choose> <xsl:text>{</xsl:text><xsl:value-of select="zapi:key" /> <xsl:if test="atom:title"> <xsl:text>, title = {{</xsl:text> <xsl:value-of select="atom:title" /> <xsl:text>}}</xsl:text> </xsl:if> <xsl:if test="zapi:year"> <xsl:text>, year = {</xsl:text> <xsl:value-of select="zapi:year" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='volume' and xhtml:th='Volume']/xhtml:td"> <xsl:text>, volume = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='volume' and xhtml:th='Volume']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='issue' and xhtml:th='Issue']/xhtml:td"> <xsl:text>, number = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='issue' and xhtml:th='Issue']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='pages' and xhtml:th='Pages']/xhtml:td"> <xsl:text>, pages = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='pages' and xhtml:th='Pages']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='series' and xhtml:th='Series']/xhtml:td"> <xsl:text>, series = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='series' and xhtml:th='Series']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='proceedingsTitle' and xhtml:th='Proceedings Title']/xhtml:td"> <xsl:text>, booktitle = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='proceedingsTitle' and xhtml:th='Proceedings Title']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='publicationTitle' and xhtml:th='Publication']/xhtml:td"> <xsl:text>, journal = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='publicationTitle' and xhtml:th='Publication']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='ISSN' and xhtml:th='ISSN']/xhtml:td"> <xsl:text>, issn = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='ISSN' and xhtml:th='ISSN']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='ISBN' and xhtml:th='ISBN']/xhtml:td"> <xsl:text>, isbn = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='ISBN' and xhtml:th='ISBN']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='abstractNote' and xhtml:th='Abstract']/xhtml:td"> <xsl:text>, abstract = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='abstractNote' and xhtml:th='Abstract']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='publisher' and xhtml:th='Publisher']/xhtml:td"> <xsl:text>, publisher = {</xsl:text> <xsl:value-of select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='publisher' and xhtml:th='Publisher']/xhtml:td" /> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='creator']/xhtml:th='Author'"> <xsl:text>, author = {</xsl:text> <xsl:for-each select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='creator' and xhtml:th='Author']/xhtml:td"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='creator']/xhtml:th='Editor'"> <xsl:text>, editor = {</xsl:text> <xsl:for-each select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='creator' and xhtml:th='Editor']/xhtml:td"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text> and </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='url']/xhtml:th='URL'"> <xsl:text>, url = {</xsl:text> <xsl:for-each select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='url' and xhtml:th='URL']/xhtml:td"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text>; </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <xsl:if test="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='DOI']/xhtml:th='DOI'"> <xsl:text>, doi = {</xsl:text> <xsl:for-each select="atom:content/xhtml:div/xhtml:table/xhtml:tr[@class='DOI' and xhtml:th='DOI']/xhtml:td"> <xsl:apply-templates select="."/> <xsl:if test="position()!=last()"><xsl:text>; </xsl:text></xsl:if> </xsl:for-each> <xsl:text>}</xsl:text> </xsl:if> <xsl:text> } </xsl:text> </xsl:template> </xsl:transform> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������